From e22b0edd4822ad5030d19d8fdb61511690e34239 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Fri, 23 Oct 2015 12:23:11 +0200 Subject: handwapper --- .gitignore | 1 - Makefile | 27 ++++++ _player_mcb.cpp | 73 +++++++++++++++ _player_mcmaxb.cpp | 77 ++++++++++++++++ common.h | 144 +++++++++++++++++++++++++++++ common.js | 43 --------- index.html | 213 ------------------------------------------- interactor.js | 96 ------------------- interactor/.gitignore | 1 + interactor/common.js | 43 +++++++++ interactor/index.html | 213 +++++++++++++++++++++++++++++++++++++++++++ interactor/interactor.js | 96 +++++++++++++++++++ interactor/package.json | 15 +++ jscalc/chainreaction.js | 108 ++++++++++++++++++++++ jscalc/chainreaction_4x4.txt | 1 + manager.cpp | 199 ++++++++++++++++++++++++++++++++++++++++ package.json | 15 --- player_d1.cpp | 46 ++++++++++ player_mcwin.cpp | 75 +++++++++++++++ player_mm | Bin 0 -> 20388 bytes player_mm.cpp | 112 +++++++++++++++++++++++ player_mmbias.cpp | 87 ++++++++++++++++++ player_rand.cpp | 31 +++++++ referee.cpp | 141 ++++++++++++++++++++++++++++ 24 files changed, 1489 insertions(+), 368 deletions(-) delete mode 100644 .gitignore create mode 100644 Makefile create mode 100644 _player_mcb.cpp create mode 100644 _player_mcmaxb.cpp create mode 100644 common.h delete mode 100644 common.js delete mode 100644 index.html delete mode 100755 interactor.js create mode 100644 interactor/.gitignore create mode 100644 interactor/common.js create mode 100644 interactor/index.html create mode 100755 interactor/interactor.js create mode 100644 interactor/package.json create mode 100644 jscalc/chainreaction.js create mode 100644 jscalc/chainreaction_4x4.txt create mode 100644 manager.cpp delete mode 100644 package.json create mode 100644 player_d1.cpp create mode 100644 player_mcwin.cpp create mode 100755 player_mm create mode 100644 player_mm.cpp create mode 100644 player_mmbias.cpp create mode 100644 player_rand.cpp create mode 100644 referee.cpp diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 3c3629e..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -node_modules diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8cbd306 --- /dev/null +++ b/Makefile @@ -0,0 +1,27 @@ +CXX := g++ +CXXFLAGS := -Wall -Wextra -O2 -std=c++11 + +SOURCES := $(wildcard *.cpp) +BINARIES := $(SOURCES:.cpp=) + +space := +space += #$(space) now contains a space +comma := , + +PLAYERLIST := $(subst $(space),$(comma),$(filter player_%,$(BINARIES))) + + + +all: $(BINARIES) + +clean: + rm -f $(BINARIES) + +cleanlogs: + find playerlogs/ -type f -delete + find refereelogs/ -type f -delete + +remake: clean all + +competition: all + ./caiaio -f $(PLAYERLIST) -m manager diff --git a/_player_mcb.cpp b/_player_mcb.cpp new file mode 100644 index 0000000..8e91eb3 --- /dev/null +++ b/_player_mcb.cpp @@ -0,0 +1,73 @@ +#include +#include +#include +#include "common.h" + +using namespace std; + +const int NPLAYOUTS=300,PLAYOUTLEN=20; + +//returns +turns if `me` wins, -turns if an opponent wins +int mcplayout(Board &bd,int me){ + bool lost[NPLAYERS]; + memset(lost,0,NPLAYERS*sizeof(bool)); + int nlost=0; + int win; + int turnidx; + for(turnidx=1;turnidx<=PLAYOUTLEN;turnidx++){ //turnidx=1: one after `me` + const int onturn=(me+turnidx)%NPLAYERS; + if(lost[onturn])continue; + if(bd.ballcount(onturn)==0){ + lost[onturn]=true; + nlost++; + if(nlost==NPLAYERS)break; //? someone would have won... + continue; + } + bd.put(randommove(bd,onturn).idx(),onturn); + win=bd.checkwin(); + if(win!=-1)break; + } + return bd.ballcount(me); +} + +Move calcmove(Board &bd,int me){ + int i,j; + int score,maxscore=INT_MIN,maxat=0; + for(i=0;imaxscore){ + maxscore=score; + maxat=i; + } + } + return Move(maxat%WID,maxat/WID); +} + +int main(void){ + struct timeval tv; + gettimeofday(&tv,NULL); + srand(tv.tv_sec*1000000+tv.tv_usec); + + Board bd; + char c; + Move mv; + cin>>c; cin.ignore(1024,'\n'); + int me=c-'A'; + int x,y,i; + while(true){ + c=cin.peek(); + if(c=='q'||c=='Q')break; + for(i=me+1;i%NPLAYERS!=me;i++){ + cin>>x>>y; + if(x!=-1&&y!=-1)bd.put(x,y,i%NPLAYERS); + } + cin.ignore(1024,'\n'); + mv=calcmove(bd,me); + cout< +#include +#include +#include "common.h" + +using namespace std; + +const int NPLAYOUTS=300,PLAYOUTLEN=20; + +//returns +turns if `me` wins, -turns if an opponent wins +int mcplayout(Board &bd,int me){ + bool lost[NPLAYERS]; + memset(lost,0,NPLAYERS*sizeof(bool)); + int nlost=0; + int win; + int turnidx; + int maxballs=-1; + int bc; + for(turnidx=1;turnidx<=PLAYOUTLEN;turnidx++){ //turnidx=1: one after `me` + const int onturn=(me+turnidx)%NPLAYERS; + if(lost[onturn])continue; + bc=bd.ballcount(onturn); + if(bc==0){ + lost[onturn]=true; + nlost++; + if(nlost==NPLAYERS)break; //? someone would have won... + continue; + } + if(onturn==me)maxballs=max(maxballs,bc); + bd.put(randommove(bd,onturn).idx(),onturn); + win=bd.checkwin(); + if(win!=-1)break; + } + return maxballs; +} + +Move calcmove(Board &bd,int me){ + int i,j; + int score,maxscore=INT_MIN,maxat=0; + for(i=0;imaxscore){ + maxscore=score; + maxat=i; + } + } + return Move(maxat%WID,maxat/WID); +} + +int main(void){ + struct timeval tv; + gettimeofday(&tv,NULL); + srand(tv.tv_sec*1000000+tv.tv_usec); + + Board bd; + char c; + Move mv; + cin>>c; cin.ignore(1024,'\n'); + int me=c-'A'; + int x,y,i; + while(true){ + c=cin.peek(); + if(c=='q'||c=='Q')break; + for(i=me+1;i%NPLAYERS!=me;i++){ + cin>>x>>y; + if(x!=-1&&y!=-1)bd.put(x,y,i%NPLAYERS); + } + cin.ignore(1024,'\n'); + mv=calcmove(bd,me); + cout< +#include +#include +#include +#include +#include + +using namespace std; + +const int NPLAYERS=2; +const int WID=7,HEI=8; + + +template +ostream& operator<<(ostream &os,const vector &v){ + const int sz=v.size(); + if(sz==0)return os; + os<0)+(x>0)+(y=nnei){ + const int quo=balls[idx]/nnei; + nballs[idx]-=nnei*quo; + if(y>0){nballs[idx-WID]+=quo;ncolour[idx-WID]=colour[idx];} + if(x>0){nballs[idx-1]+=quo;ncolour[idx-1]=colour[idx];} + if(y=0 for that colour + inline int checkwin(void) const{return wonby;} + + inline int ballcount(int c) const{ + int i,count=0; + for(i=0;i0)+(x>0)+(y=nnei){ - quo=~~(bd[y][x].n/nnei); - newbd[y][x].n-=quo*nnei; - if(y>0) {newbd[y-1][x].n+=quo;newbd[y-1][x].c=bd[y][x].c;} - if(x>0) {newbd[y][x-1].n+=quo;newbd[y][x-1].c=bd[y][x].c;} - if(y - - - -Interactor for Chain Reaction - - - - - -

Interactor for Chain Reaction

-
- - - \ No newline at end of file diff --git a/interactor.js b/interactor.js deleted file mode 100755 index 2d38cbb..0000000 --- a/interactor.js +++ /dev/null @@ -1,96 +0,0 @@ -#!/usr/bin/env node - -var aicmd; - -if(process.argv.length!=3){ - console.log("Give AI command to run as command line argument."); - process.exit(1); -} -aicmd=process.argv[2]; -console.log("Using AI command '"+aicmd+"'"); - - -var app=require("express")(), - http=require("http").Server(app), - io=require("socket.io")(http), - fs=require("fs"), - spawn=require("child_process").spawn; - -eval(String(fs.readFileSync("common.js"))); - - -var HTTPPORT=8080; - -var uniqid=(function(){ - var id=0; - return function(){return id++;}; -})(); - -app.get("/",function(req,res){ - res.sendFile(__dirname+"/index.html"); -}); - -["index.html","common.js"].forEach(function(fname){ - app.get("/"+fname,function(req,res){ - res.sendFile(__dirname+"/"+fname); - }); -}); - -io.on("connection",function(conn){ - var id=uniqid(); - console.log("New IO connection id "+id); - - var bd=emptyboard(); - var aiplayer=0; - - conn.on("disconnect",function(){ - console.log("Disconnect id "+id); - }); - conn.on("usermove",function(idx){ - idx=+idx; - if(idx<0||idx>=W*H){ - conn.emit("alert","You sent an invalid move, index "+idx); - conn.emit("getusermove"); - return; - } - var x=idx%W,y=~~(idx/W); - bd[y][x].c=1-aiplayer; - bd[y][x].n++; - bd=stabilise(bd); - proc.stdin.write(x+" "+y+"\n"); - }); - - - var proc=spawn("sh",["-c",aicmd],{ - stdio:["pipe","pipe","inherit"] - }); - var buffer=""; - proc.stdout.on("data",function(data){ - var idx,line,mv; - buffer+=data; - while((idx=buffer.indexOf("\n"))!=-1){ - line=buffer.slice(0,idx); - buffer=buffer.slice(idx+1); - mv=line.split(" ").map(function(s){return parseInt(s,10);}); - if(mv.length!=2||isNaN(mv[0])||isNaN(mv[1])){ - console.log("Invalid move written by AI: '"+line+"'"); - conn.emit("alert","Invalid move written by AI: '"+line+"'"); - mv[0]=0; - mv[1]=0; - } - bd[mv[1]][mv[0]].c=aiplayer; - bd[mv[1]][mv[0]].n++; - bd=stabilise(bd); - conn.emit("applymove",{index:W*mv[1]+mv[0],player:aiplayer}); - conn.emit("setonturn",1-aiplayer); - conn.emit("getusermove"); - } - }); - proc.stdin.write("A\n-1 -1\n"); - conn.emit("emptyboard"); - conn.emit("setonturn",0); -}); - -http.listen(HTTPPORT,function(){ - console.log("Listening on http://localhost:"+HTTPPORT); -}); diff --git a/interactor/.gitignore b/interactor/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/interactor/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/interactor/common.js b/interactor/common.js new file mode 100644 index 0000000..dbc3484 --- /dev/null +++ b/interactor/common.js @@ -0,0 +1,43 @@ +var W=7,H=8; + +function emptyboard(){ + return new Array(H).fill(0).map(function(){ + return new Array(W).fill(0).map(function(){ + return {n:0,c:0}; + }); + }); +} + +function bdcopy(bd){ + return bd.map(function(r){ + return r.map(function(c){ + return {n:c.n,c:c.c}; + }); + }); +} + +function stabilise(bd){ + var newbd; + var changes; + var x,y,nnei,quo; + do { + changes=false; + newbd=bdcopy(bd); + for(y=0;y0)+(x>0)+(y=nnei){ + quo=~~(bd[y][x].n/nnei); + newbd[y][x].n-=quo*nnei; + if(y>0) {newbd[y-1][x].n+=quo;newbd[y-1][x].c=bd[y][x].c;} + if(x>0) {newbd[y][x-1].n+=quo;newbd[y][x-1].c=bd[y][x].c;} + if(y + + + +Interactor for Chain Reaction + + + + + +

Interactor for Chain Reaction

+
+ + + \ No newline at end of file diff --git a/interactor/interactor.js b/interactor/interactor.js new file mode 100755 index 0000000..2d38cbb --- /dev/null +++ b/interactor/interactor.js @@ -0,0 +1,96 @@ +#!/usr/bin/env node + +var aicmd; + +if(process.argv.length!=3){ + console.log("Give AI command to run as command line argument."); + process.exit(1); +} +aicmd=process.argv[2]; +console.log("Using AI command '"+aicmd+"'"); + + +var app=require("express")(), + http=require("http").Server(app), + io=require("socket.io")(http), + fs=require("fs"), + spawn=require("child_process").spawn; + +eval(String(fs.readFileSync("common.js"))); + + +var HTTPPORT=8080; + +var uniqid=(function(){ + var id=0; + return function(){return id++;}; +})(); + +app.get("/",function(req,res){ + res.sendFile(__dirname+"/index.html"); +}); + +["index.html","common.js"].forEach(function(fname){ + app.get("/"+fname,function(req,res){ + res.sendFile(__dirname+"/"+fname); + }); +}); + +io.on("connection",function(conn){ + var id=uniqid(); + console.log("New IO connection id "+id); + + var bd=emptyboard(); + var aiplayer=0; + + conn.on("disconnect",function(){ + console.log("Disconnect id "+id); + }); + conn.on("usermove",function(idx){ + idx=+idx; + if(idx<0||idx>=W*H){ + conn.emit("alert","You sent an invalid move, index "+idx); + conn.emit("getusermove"); + return; + } + var x=idx%W,y=~~(idx/W); + bd[y][x].c=1-aiplayer; + bd[y][x].n++; + bd=stabilise(bd); + proc.stdin.write(x+" "+y+"\n"); + }); + + + var proc=spawn("sh",["-c",aicmd],{ + stdio:["pipe","pipe","inherit"] + }); + var buffer=""; + proc.stdout.on("data",function(data){ + var idx,line,mv; + buffer+=data; + while((idx=buffer.indexOf("\n"))!=-1){ + line=buffer.slice(0,idx); + buffer=buffer.slice(idx+1); + mv=line.split(" ").map(function(s){return parseInt(s,10);}); + if(mv.length!=2||isNaN(mv[0])||isNaN(mv[1])){ + console.log("Invalid move written by AI: '"+line+"'"); + conn.emit("alert","Invalid move written by AI: '"+line+"'"); + mv[0]=0; + mv[1]=0; + } + bd[mv[1]][mv[0]].c=aiplayer; + bd[mv[1]][mv[0]].n++; + bd=stabilise(bd); + conn.emit("applymove",{index:W*mv[1]+mv[0],player:aiplayer}); + conn.emit("setonturn",1-aiplayer); + conn.emit("getusermove"); + } + }); + proc.stdin.write("A\n-1 -1\n"); + conn.emit("emptyboard"); + conn.emit("setonturn",0); +}); + +http.listen(HTTPPORT,function(){ + console.log("Listening on http://localhost:"+HTTPPORT); +}); diff --git a/interactor/package.json b/interactor/package.json new file mode 100644 index 0000000..38f7446 --- /dev/null +++ b/interactor/package.json @@ -0,0 +1,15 @@ +{ + "name": "interactor", + "version": "1.0.0", + "description": "", + "main": "interactor.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "Tom Smeding (http://tomsmeding.com)", + "license": "MIT", + "dependencies": { + "express": "^4.13.3", + "socket.io": "^1.3.7" + } +} diff --git a/jscalc/chainreaction.js b/jscalc/chainreaction.js new file mode 100644 index 0000000..b1ffbbe --- /dev/null +++ b/jscalc/chainreaction.js @@ -0,0 +1,108 @@ +#!/usr/bin/env node +var b=[[1,2,1],[1,4,2],[1,2,1]]; + +S=JSON.stringify.bind(JSON); +Eq=function(a,b){return a.map(function(r,i){return r.map(function(v,j){return b[i][j]==v;}).reduce(function(a,b){return a&&b;});}).reduce(function(a,b){return a&&b;});}; + +printboard=function(b){ + if(!Array.isArray(b)){ + console.log(b); + return; + } + b.forEach(function(r){ + console.log(r.join(" ")); + }); +}; + +evolve=function(b){ + var w=b[0].length,h=b.length,x,y,nnei,dif; + var nb=b.map(function(r){return r.slice(0);}); + for(y=0;y0)+(x0)+(y=nnei){ + dif=~~(b[y][x]/nnei); + nb[y][x]-=dif*nnei; + if(x>0)nb[y][x-1]+=dif; + if(y>0)nb[y-1][x]+=dif; + if(x ",useGlobal:true}).context=this; diff --git a/jscalc/chainreaction_4x4.txt b/jscalc/chainreaction_4x4.txt new file mode 100644 index 0000000..0eb5b58 --- /dev/null +++ b/jscalc/chainreaction_4x4.txt @@ -0,0 +1 @@ +[[[1,2,2,0],[2,0,3,1],[0,3,1,2],[1,3,2,1]],[[0,0,0,1],[0,1,3,2],[2,3,3,3],[1,2,2,1]],[[0,0,0,1],[0,1,3,2],[2,3,3,2],[1,2,3,1]],[[0,0,0,1],[0,1,3,2],[2,3,3,2],[1,2,2,2]],[[0,0,0,1],[0,2,2,2],[2,3,3,3],[1,2,2,1]],[[0,0,0,1],[0,2,2,2],[2,3,3,2],[2,2,2,1]],[[0,0,0,1],[0,2,2,2],[2,3,3,2],[1,3,2,1]],[[0,0,0,1],[0,2,2,2],[2,3,3,2],[1,2,3,1]],[[0,0,0,1],[0,2,2,2],[2,3,3,2],[1,2,2,2]],[[0,0,0,1],[0,2,3,3],[2,3,2,2],[1,2,2,1]],[[0,0,0,1],[0,2,3,2],[2,3,2,3],[1,2,2,1]],[[0,0,0,1],[0,2,3,2],[2,3,2,2],[2,2,2,1]],[[0,0,0,1],[0,2,3,2],[2,3,2,2],[1,3,2,1]],[[0,0,0,1],[0,2,3,2],[2,3,2,2],[1,2,3,1]],[[0,0,0,1],[0,2,3,2],[2,3,2,2],[1,2,2,2]],[[0,0,0,1],[0,2,3,2],[2,3,4,1],[1,2,2,1]],[[0,0,0,1],[0,2,3,2],[2,3,3,1],[2,2,2,1]],[[0,0,0,1],[0,2,3,2],[2,3,3,1],[1,3,2,1]],[[0,0,0,1],[0,2,3,2],[2,3,3,1],[1,2,3,1]],[[0,0,0,1],[0,2,3,2],[2,3,3,1],[1,2,2,2]],[[0,0,0,1],[0,2,3,3],[2,3,3,2],[1,2,1,1]],[[0,0,0,1],[0,2,3,2],[2,3,4,2],[1,2,1,1]],[[0,0,0,1],[0,2,3,2],[2,3,3,3],[1,2,1,1]],[[0,0,0,1],[0,2,3,2],[2,3,3,2],[1,2,1,2]],[[0,0,0,1],[0,2,3,3],[2,3,3,2],[1,2,2,0]],[[0,0,0,1],[0,2,3,2],[2,3,4,2],[1,2,2,0]],[[0,0,0,1],[0,2,3,2],[2,3,3,3],[1,2,2,0]],[[0,0,0,1],[0,2,3,2],[2,3,3,2],[2,2,2,0]],[[0,0,0,1],[0,2,3,2],[2,3,3,2],[1,3,2,0]],[[0,0,0,1],[0,2,3,2],[2,3,3,2],[1,2,3,0]],[[0,0,0,1],[0,3,1,2],[2,3,3,3],[1,2,2,1]],[[0,0,0,1],[0,3,1,2],[2,3,3,2],[2,2,2,1]],[[0,0,0,1],[0,3,1,2],[2,3,3,2],[1,3,2,1]],[[0,0,0,1],[0,3,1,2],[2,3,3,2],[1,2,3,1]],[[0,0,0,1],[0,3,1,2],[2,3,3,2],[1,2,2,2]],[[0,0,0,1],[0,3,2,2],[2,2,3,3],[1,2,2,1]],[[0,0,0,1],[0,3,2,2],[2,2,3,2],[2,2,2,1]],[[0,0,0,1],[0,3,2,2],[2,2,3,2],[1,3,2,1]],[[0,0,0,1],[0,3,2,2],[2,2,3,2],[1,2,3,1]],[[0,0,0,1],[0,3,2,2],[2,2,3,2],[1,2,2,2]],[[0,0,0,1],[0,3,2,2],[2,3,3,3],[1,1,2,1]],[[0,0,0,1],[0,3,2,2],[2,3,3,2],[1,1,3,1]],[[0,0,0,1],[0,3,2,2],[2,3,3,2],[1,1,2,2]],[[0,0,0,1],[0,3,3,3],[2,1,3,2],[1,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,1,3,3],[1,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,1,3,2],[1,2,3,1]],[[0,0,0,1],[0,3,3,2],[2,1,3,2],[1,2,2,2]],[[0,0,0,1],[0,3,3,3],[2,2,2,2],[1,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,2,2,3],[1,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,2,2,2],[2,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,2,2,2],[1,3,2,1]],[[0,0,0,1],[0,3,3,2],[2,2,2,2],[1,2,3,1]],[[0,0,0,1],[0,3,3,2],[2,2,2,2],[1,2,2,2]],[[0,0,0,1],[0,3,3,2],[2,2,4,1],[1,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,2,3,1],[2,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,2,3,1],[1,3,2,1]],[[0,0,0,1],[0,3,3,2],[2,2,3,1],[1,2,3,1]],[[0,0,0,1],[0,3,3,2],[2,2,3,1],[1,2,2,2]],[[0,0,0,1],[0,3,3,3],[2,2,3,2],[1,2,1,1]],[[0,0,0,1],[0,3,3,2],[2,2,4,2],[1,2,1,1]],[[0,0,0,1],[0,3,3,2],[2,2,3,3],[1,2,1,1]],[[0,0,0,1],[0,3,3,2],[2,2,3,2],[1,2,1,2]],[[0,0,0,1],[0,3,3,3],[2,2,3,2],[1,2,2,0]],[[0,0,0,1],[0,3,3,2],[2,2,4,2],[1,2,2,0]],[[0,0,0,1],[0,3,3,2],[2,2,3,3],[1,2,2,0]],[[0,0,0,1],[0,3,3,2],[2,2,3,2],[2,2,2,0]],[[0,0,0,1],[0,3,3,2],[2,2,3,2],[1,3,2,0]],[[0,0,0,1],[0,3,3,2],[2,2,3,2],[1,2,3,0]],[[0,0,0,1],[0,3,3,3],[2,3,1,2],[1,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,4,1,2],[1,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,1,3],[1,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,1,2],[2,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,1,2],[1,3,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,1,2],[1,2,3,1]],[[0,0,0,1],[0,3,3,2],[2,3,1,2],[1,2,2,2]],[[0,0,0,1],[0,3,3,2],[2,4,2,1],[1,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,2,1],[2,2,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,2,1],[1,3,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,2,1],[1,2,3,1]],[[0,0,0,1],[0,3,3,2],[2,3,2,1],[1,2,2,2]],[[0,0,0,1],[0,3,3,3],[2,3,2,2],[1,1,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,2,3],[1,1,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,2,2],[1,1,3,1]],[[0,0,0,1],[0,3,3,2],[2,3,2,2],[1,1,2,2]],[[0,0,0,1],[0,3,3,2],[2,4,2,2],[1,2,2,0]],[[0,0,0,1],[0,3,3,2],[2,3,2,2],[2,2,2,0]],[[0,0,0,1],[0,3,3,2],[2,3,2,2],[1,3,2,0]],[[0,0,0,1],[0,3,3,2],[2,3,2,2],[1,2,3,0]],[[0,0,0,1],[0,3,3,2],[2,4,3,1],[1,1,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,4,1],[1,1,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,1],[1,1,3,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,1],[1,1,2,2]],[[0,0,0,1],[0,3,3,2],[2,4,3,1],[1,2,1,1]],[[0,0,0,1],[0,3,3,2],[2,3,4,1],[1,2,1,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,1],[2,2,1,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,1],[1,3,1,1]],[[0,0,0,1],[0,3,3,3],[2,3,3,2],[1,0,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,4,2],[1,0,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,3],[1,0,2,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,2],[1,0,2,2]],[[0,0,0,1],[0,3,3,3],[2,3,3,2],[1,1,1,1]],[[0,0,0,1],[0,3,3,2],[2,4,3,2],[1,1,1,1]],[[0,0,0,1],[0,3,3,2],[2,3,4,2],[1,1,1,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,3],[1,1,1,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,2],[1,1,1,2]],[[0,0,0,1],[0,3,3,3],[2,3,3,2],[1,1,2,0]],[[0,0,0,1],[0,3,3,2],[2,4,3,2],[1,1,2,0]],[[0,0,0,1],[0,3,3,2],[2,3,4,2],[1,1,2,0]],[[0,0,0,1],[0,3,3,2],[2,3,3,3],[1,1,2,0]],[[0,0,0,1],[0,3,3,2],[2,3,3,2],[1,1,3,0]],[[0,0,0,1],[0,3,3,3],[2,3,3,2],[1,2,0,1]],[[0,0,0,1],[0,3,3,2],[2,4,3,2],[1,2,0,1]],[[0,0,0,1],[0,3,3,2],[2,3,4,2],[1,2,0,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,3],[1,2,0,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,2],[2,2,0,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,2],[1,3,0,1]],[[0,0,0,1],[0,3,3,2],[2,3,3,2],[1,2,0,2]],[[0,0,0,1],[0,3,3,3],[2,3,3,2],[1,2,1,0]],[[0,0,0,1],[0,3,3,2],[2,4,3,2],[1,2,1,0]],[[0,0,0,1],[0,3,3,2],[2,3,4,2],[1,2,1,0]],[[0,0,0,1],[0,3,3,2],[2,3,3,3],[1,2,1,0]],[[0,0,0,1],[0,3,3,2],[2,3,3,2],[2,2,1,0]],[[0,0,0,1],[0,3,3,2],[2,3,3,2],[1,3,1,0]],[[0,0,0,1],[1,1,3,2],[1,3,3,3],[1,2,2,1]],[[0,0,0,1],[1,1,3,2],[1,3,3,2],[1,3,2,1]],[[0,0,0,1],[1,1,3,2],[1,3,3,2],[1,2,3,1]],[[0,0,0,1],[1,1,3,2],[1,3,3,2],[1,2,2,2]],[[0,0,0,1],[1,1,3,2],[2,3,3,3],[0,2,2,1]],[[0,0,0,1],[1,1,3,2],[2,3,3,2],[0,2,3,1]],[[0,0,0,1],[1,1,3,2],[2,3,3,2],[0,2,2,2]],[[0,0,0,1],[1,2,2,2],[1,3,3,3],[1,2,2,1]],[[0,0,0,1],[1,2,2,2],[1,3,3,2],[2,2,2,1]],[[0,0,0,1],[1,2,2,2],[1,3,3,2],[1,3,2,1]],[[0,0,0,1],[1,2,2,2],[1,3,3,2],[1,2,3,1]],[[0,0,0,1],[1,2,2,2],[1,3,3,2],[1,2,2,2]],[[0,0,0,1],[1,2,2,2],[2,3,3,3],[0,2,2,1]],[[0,0,0,1],[1,2,2,2],[2,3,3,2],[0,3,2,1]],[[0,0,0,1],[1,2,2,2],[2,3,3,2],[0,2,3,1]],[[0,0,0,1],[1,2,2,2],[2,3,3,2],[0,2,2,2]],[[0,0,0,1],[1,2,3,3],[1,3,2,2],[1,2,2,1]],[[0,0,0,1],[1,2,3,2],[1,3,2,3],[1,2,2,1]],[[0,0,0,1],[1,2,3,2],[1,3,2,2],[2,2,2,1]],[[0,0,0,1],[1,2,3,2],[1,3,2,2],[1,3,2,1]],[[0,0,0,1],[1,2,3,2],[1,3,2,2],[1,2,3,1]],[[0,0,0,1],[1,2,3,2],[1,3,2,2],[1,2,2,2]],[[0,0,0,1],[1,2,3,2],[1,3,4,1],[1,2,2,1]],[[0,0,0,1],[1,2,3,2],[1,3,3,1],[2,2,2,1]],[[0,0,0,1],[1,2,3,2],[1,3,3,1],[1,3,2,1]],[[0,0,0,1],[1,2,3,2],[1,3,3,1],[1,2,3,1]],[[0,0,0,1],[1,2,3,2],[1,3,3,1],[1,2,2,2]],[[0,0,0,1],[1,2,3,3],[1,3,3,2],[1,2,1,1]],[[0,0,0,1],[1,2,3,2],[1,3,4,2],[1,2,1,1]],[[0,0,0,1],[1,2,3,2],[1,3,3,3],[1,2,1,1]],[[0,0,0,1],[1,2,3,2],[1,3,3,2],[1,2,1,2]],[[0,0,0,1],[1,2,3,3],[1,3,3,2],[1,2,2,0]],[[0,0,0,1],[1,2,3,2],[1,3,4,2],[1,2,2,0]],[[0,0,0,1],[1,2,3,2],[1,3,3,3],[1,2,2,0]],[[0,0,0,1],[1,2,3,2],[1,3,3,2],[2,2,2,0]],[[0,0,0,1],[1,2,3,2],[1,3,3,2],[1,3,2,0]],[[0,0,0,1],[1,2,3,2],[1,3,3,2],[1,2,3,0]],[[0,0,0,1],[1,2,3,3],[2,3,2,2],[0,2,2,1]],[[0,0,0,1],[1,2,3,2],[2,3,2,3],[0,2,2,1]],[[0,0,0,1],[1,2,3,2],[2,3,2,2],[0,3,2,1]],[[0,0,0,1],[1,2,3,2],[2,3,2,2],[0,2,3,1]],[[0,0,0,1],[1,2,3,2],[2,3,2,2],[0,2,2,2]],[[0,0,0,1],[1,2,3,2],[2,3,4,1],[0,2,2,1]],[[0,0,0,1],[1,2,3,2],[2,3,3,1],[0,3,2,1]],[[0,0,0,1],[1,2,3,2],[2,3,3,1],[0,2,3,1]],[[0,0,0,1],[1,2,3,2],[2,3,3,1],[0,2,2,2]],[[0,0,0,1],[1,2,3,3],[2,3,3,2],[0,2,1,1]],[[0,0,0,1],[1,2,3,2],[2,3,4,2],[0,2,1,1]],[[0,0,0,1],[1,2,3,2],[2,3,3,3],[0,2,1,1]],[[0,0,0,1],[1,2,3,2],[2,3,3,2],[0,2,1,2]],[[0,0,0,1],[1,2,3,3],[2,3,3,2],[0,2,2,0]],[[0,0,0,1],[1,2,3,2],[2,3,4,2],[0,2,2,0]],[[0,0,0,1],[1,2,3,2],[2,3,3,3],[0,2,2,0]],[[0,0,0,1],[1,2,3,2],[2,3,3,2],[0,3,2,0]],[[0,0,0,1],[1,2,3,2],[2,3,3,2],[0,2,3,0]],[[0,0,0,1],[1,3,0,2],[2,3,3,3],[1,2,2,1]],[[0,0,0,1],[1,3,0,2],[2,3,3,2],[2,2,2,1]],[[0,0,0,1],[1,3,0,2],[2,3,3,2],[1,3,2,1]],[[0,0,0,1],[1,3,0,2],[2,3,3,2],[1,2,3,1]],[[0,0,0,1],[1,3,0,2],[2,3,3,2],[1,2,2,2]],[[0,0,0,1],[1,3,1,2],[1,3,3,3],[1,2,2,1]],[[0,0,0,1],[1,3,1,2],[1,3,3,2],[2,2,2,1]],[[0,0,0,1],[1,3,1,2],[1,3,3,2],[1,3,2,1]],[[0,0,0,1],[1,3,1,2],[1,3,3,2],[1,2,3,1]],[[0,0,0,1],[1,3,1,2],[1,3,3,2],[1,2,2,2]],[[0,0,0,1],[1,3,1,2],[2,3,3,3],[0,2,2,1]],[[0,0,0,1],[1,3,1,2],[2,3,3,2],[0,3,2,1]],[[0,0,0,1],[1,3,1,2],[2,3,3,2],[0,2,3,1]],[[0,0,0,1],[1,3,1,2],[2,3,3,2],[0,2,2,2]],[[0,0,0,1],[1,3,2,2],[0,3,3,3],[1,2,2,1]],[[0,0,0,1],[1,3,2,2],[0,3,3,2],[1,3,2,1]],[[0,0,0,1],[1,3,2,2],[0,3,3,2],[1,2,3,1]],[[0,0,0,1],[1,3,2,2],[0,3,3,2],[1,2,2,2]],[[0,0,0,1],[1,3,2,2],[1,2,3,3],[1,2,2,1]],[[0,0,0,1],[1,3,2,2],[1,2,3,2],[2,2,2,1]],[[0,0,0,1],[1,3,2,2],[1,2,3,2],[1,3,2,1]],[[0,0,0,1],[1,3,2,2],[1,2,3,2],[1,2,3,1]],[[0,0,0,1],[1,3,2,2],[1,2,3,2],[1,2,2,2]],[[0,0,0,1],[1,3,2,2],[1,3,3,3],[1,1,2,1]],[[0,0,0,1],[1,3,2,2],[1,3,3,2],[1,1,3,1]],[[0,0,0,1],[1,3,2,2],[1,3,3,2],[1,1,2,2]],[[0,0,0,1],[1,3,2,2],[2,1,3,3],[1,2,2,1]],[[0,0,0,1],[1,3,2,2],[2,1,3,2],[2,2,2,1]],[[0,0,0,1],[1,3,2,2],[2,1,3,2],[1,3,2,1]],[[0,0,0,1],[1,3,2,2],[2,1,3,2],[1,2,3,1]],[[0,0,0,1],[1,3,2,2],[2,1,3,2],[1,2,2,2]],[[0,0,0,1],[1,3,2,2],[2,2,3,3],[0,2,2,1]],[[0,0,0,1],[1,3,2,2],[2,2,3,2],[0,3,2,1]],[[0,0,0,1],[1,3,2,2],[2,2,3,2],[0,2,3,1]],[[0,0,0,1],[1,3,2,2],[2,2,3,2],[0,2,2,2]],[[0,0,0,1],[1,3,2,2],[2,3,3,3],[0,1,2,1]],[[0,0,0,1],[1,3,2,2],[2,3,3,2],[0,1,3,1]],[[0,0,0,1],[1,3,2,2],[2,3,3,2],[0,1,2,2]],[[0,0,0,1],[1,3,2,2],[2,3,3,3],[1,0,2,1]],[[0,0,0,1],[1,3,2,2],[2,3,3,2],[1,0,3,1]],[[0,0,0,1],[1,3,2,2],[2,3,3,2],[1,0,2,2]],[[0,0,0,1],[1,3,3,3],[0,2,3,2],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[0,2,3,3],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[0,2,3,2],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[0,2,3,2],[1,2,2,2]],[[0,0,0,1],[1,3,3,3],[0,3,2,2],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[0,3,2,3],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[0,3,2,2],[1,3,2,1]],[[0,0,0,1],[1,3,3,2],[0,3,2,2],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[0,3,2,2],[1,2,2,2]],[[0,0,0,1],[1,3,3,2],[0,3,4,1],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[0,3,3,1],[1,3,2,1]],[[0,0,0,1],[1,3,3,2],[0,3,3,1],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[0,3,3,1],[1,2,2,2]],[[0,0,0,1],[1,3,3,3],[0,3,3,2],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[0,3,4,2],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[0,3,3,3],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[0,3,3,2],[1,2,1,2]],[[0,0,0,1],[1,3,3,3],[0,3,3,2],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[0,3,4,2],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[0,3,3,3],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[0,3,3,2],[1,3,2,0]],[[0,0,0,1],[1,3,3,2],[0,3,3,2],[1,2,3,0]],[[0,0,0,1],[1,3,3,3],[1,1,3,2],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,1,3,3],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,1,3,2],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[1,1,3,2],[1,2,2,2]],[[0,0,0,1],[1,3,3,3],[1,2,2,2],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,2,2,3],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,2,2,2],[2,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,2,2,2],[1,3,2,1]],[[0,0,0,1],[1,3,3,2],[1,2,2,2],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[1,2,2,2],[1,2,2,2]],[[0,0,0,1],[1,3,3,2],[1,2,4,1],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,2,3,1],[2,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,2,3,1],[1,3,2,1]],[[0,0,0,1],[1,3,3,2],[1,2,3,1],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[1,2,3,1],[1,2,2,2]],[[0,0,0,1],[1,3,3,3],[1,2,3,2],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[1,2,4,2],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[1,2,3,3],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[1,2,3,2],[1,2,1,2]],[[0,0,0,1],[1,3,3,3],[1,2,3,2],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[1,2,4,2],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[1,2,3,3],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[1,2,3,2],[2,2,2,0]],[[0,0,0,1],[1,3,3,2],[1,2,3,2],[1,3,2,0]],[[0,0,0,1],[1,3,3,2],[1,2,3,2],[1,2,3,0]],[[0,0,0,1],[1,3,3,3],[1,3,1,2],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,4,1,2],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,1,3],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,1,2],[2,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,1,2],[1,3,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,1,2],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[1,3,1,2],[1,2,2,2]],[[0,0,0,1],[1,3,3,2],[1,4,2,1],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,2,1],[2,2,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,2,1],[1,3,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,2,1],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[1,3,2,1],[1,2,2,2]],[[0,0,0,1],[1,3,3,3],[1,3,2,2],[1,1,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,2,3],[1,1,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,2,2],[1,1,3,1]],[[0,0,0,1],[1,3,3,2],[1,3,2,2],[1,1,2,2]],[[0,0,0,1],[1,3,3,2],[1,4,2,2],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[1,3,2,2],[2,2,2,0]],[[0,0,0,1],[1,3,3,2],[1,3,2,2],[1,3,2,0]],[[0,0,0,1],[1,3,3,2],[1,3,2,2],[1,2,3,0]],[[0,0,0,1],[1,3,3,2],[1,4,3,1],[1,1,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,4,1],[1,1,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,1],[1,1,3,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,1],[1,1,2,2]],[[0,0,0,1],[1,3,3,2],[1,4,3,1],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[1,3,4,1],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,1],[2,2,1,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,1],[1,3,1,1]],[[0,0,0,1],[1,3,3,3],[1,3,3,2],[1,0,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,4,2],[1,0,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,3],[1,0,2,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,2],[1,0,2,2]],[[0,0,0,1],[1,3,3,3],[1,3,3,2],[1,1,1,1]],[[0,0,0,1],[1,3,3,2],[1,4,3,2],[1,1,1,1]],[[0,0,0,1],[1,3,3,2],[1,3,4,2],[1,1,1,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,3],[1,1,1,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,2],[1,1,1,2]],[[0,0,0,1],[1,3,3,3],[1,3,3,2],[1,1,2,0]],[[0,0,0,1],[1,3,3,2],[1,4,3,2],[1,1,2,0]],[[0,0,0,1],[1,3,3,2],[1,3,4,2],[1,1,2,0]],[[0,0,0,1],[1,3,3,2],[1,3,3,3],[1,1,2,0]],[[0,0,0,1],[1,3,3,2],[1,3,3,2],[1,1,3,0]],[[0,0,0,1],[1,3,3,3],[1,3,3,2],[1,2,0,1]],[[0,0,0,1],[1,3,3,2],[1,4,3,2],[1,2,0,1]],[[0,0,0,1],[1,3,3,2],[1,3,4,2],[1,2,0,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,3],[1,2,0,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,2],[2,2,0,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,2],[1,3,0,1]],[[0,0,0,1],[1,3,3,2],[1,3,3,2],[1,2,0,2]],[[0,0,0,1],[1,3,3,3],[1,3,3,2],[1,2,1,0]],[[0,0,0,1],[1,3,3,2],[1,4,3,2],[1,2,1,0]],[[0,0,0,1],[1,3,3,2],[1,3,4,2],[1,2,1,0]],[[0,0,0,1],[1,3,3,2],[1,3,3,3],[1,2,1,0]],[[0,0,0,1],[1,3,3,2],[1,3,3,2],[2,2,1,0]],[[0,0,0,1],[1,3,3,2],[1,3,3,2],[1,3,1,0]],[[0,0,0,1],[1,3,3,3],[2,0,3,2],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,0,3,3],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,0,3,2],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[2,0,3,2],[1,2,2,2]],[[0,0,0,1],[1,3,3,3],[2,1,2,2],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[3,1,2,2],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,1,2,3],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,1,2,2],[2,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,1,2,2],[1,3,2,1]],[[0,0,0,1],[1,3,3,2],[2,1,2,2],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[2,1,2,2],[1,2,2,2]],[[0,0,0,1],[1,3,3,2],[3,1,3,1],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,1,4,1],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,1,3,1],[2,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,1,3,1],[1,3,2,1]],[[0,0,0,1],[1,3,3,2],[2,1,3,1],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[2,1,3,1],[1,2,2,2]],[[0,0,0,1],[1,3,3,3],[2,1,3,2],[0,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,1,3,3],[0,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,1,3,2],[0,2,3,1]],[[0,0,0,1],[1,3,3,2],[2,1,3,2],[0,2,2,2]],[[0,0,0,1],[1,3,3,3],[2,1,3,2],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[2,1,4,2],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[2,1,3,3],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[2,1,3,2],[1,2,1,2]],[[0,0,0,1],[1,3,3,3],[2,1,3,2],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[3,1,3,2],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[2,1,4,2],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[2,1,3,3],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[2,1,3,2],[2,2,2,0]],[[0,0,0,1],[1,3,3,2],[2,1,3,2],[1,3,2,0]],[[0,0,0,1],[1,3,3,2],[2,1,3,2],[1,2,3,0]],[[0,0,0,1],[1,3,3,3],[2,2,1,2],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[3,2,1,2],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,1,3],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,1,2],[2,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,1,2],[1,3,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,1,2],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[2,2,1,2],[1,2,2,2]],[[0,0,0,1],[1,3,3,2],[3,2,2,1],[1,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,2,1],[2,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,2,1],[1,3,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,2,1],[1,2,3,1]],[[0,0,0,1],[1,3,3,2],[2,2,2,1],[1,2,2,2]],[[0,0,0,1],[1,3,3,3],[2,2,2,2],[0,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,2,3],[0,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,2,2],[0,3,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,2,2],[0,2,3,1]],[[0,0,0,1],[1,3,3,2],[2,2,2,2],[0,2,2,2]],[[0,0,0,1],[1,3,3,2],[3,2,2,2],[1,2,2,0]],[[0,0,0,1],[1,3,3,2],[2,2,2,2],[2,2,2,0]],[[0,0,0,1],[1,3,3,2],[2,2,2,2],[1,3,2,0]],[[0,0,0,1],[1,3,3,2],[2,2,2,2],[1,2,3,0]],[[0,0,0,1],[1,3,3,2],[2,2,4,1],[0,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,3,1],[0,3,2,1]],[[0,0,0,1],[1,3,3,2],[2,2,3,1],[0,2,3,1]],[[0,0,0,1],[1,3,3,2],[2,2,3,1],[0,2,2,2]],[[0,0,0,1],[1,3,3,2],[3,2,3,1],[1,2,1,1]],[[0,0,0,1],[1,3,3,2],[2,2,3,1],[2,2,1,1]],[[0,0,0,1],[1,3,3,2],[2,2,3,1],[1,3,1,1]],[[0,0,0,1],[1,3,3,3],[2,2,3,2],[0,2,1,1]],[[0,0,0,1],[1,3,3,2],[2,2,4,2],[0,2,1,1]],[[0,0,0,1],[1,3,3,2],[2,2,3,3],[0,2,1,1]],[[0,0,0,1],[1,3,3,2],[2,2,3,2],[0,2,1,2]],[[0,0,0,1],[1,3,3,3],[2,2,3,2],[0,2,2,0]],[[0,0,0,1],[1,3,3,2],[2,2,4,2],[0,2,2,0]],[[0,0,0,1],[1,3,3,2],[2,2,3,3],[0,2,2,0]],[[0,0,0,1],[1,3,3,2],[2,2,3,2],[0,3,2,0]],[[0,0,0,1],[1,3,3,2],[2,2,3,2],[0,2,3,0]],[[0,0,0,1],[1,3,3,2],[3,2,3,2],[1,2,0,1]],[[0,0,0,1],[1,3,3,2],[2,2,3,2],[2,2,0,1]],[[0,0,0,1],[1,3,3,2],[2,2,3,2],[1,3,0,1]],[[0,0,0,1],[1,3,3,2],[3,2,3,2],[1,2,1,0]],[[0,0,0,1],[1,3,3,2],[2,2,3,2],[2,2,1,0]],[[0,0,0,1],[1,3,3,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,3,2],[2,3,1,0],[1,0,0,0]],[[1,2,2,2],[2,3,3,2],[2,3,1,0],[1,0,0,0]],[[1,2,3,1],[2,3,3,2],[2,3,1,0],[1,0,0,0]],[[1,3,2,1],[2,3,3,2],[2,3,1,0],[1,0,0,0]],[[2,2,2,1],[2,3,3,2],[2,3,1,0],[1,0,0,0]],[[0,0,0,1],[1,3,3,3],[2,3,1,2],[0,2,2,1]],[[0,0,0,1],[1,3,3,2],[3,3,1,2],[0,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,4,1,2],[0,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,1,3],[0,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,1,2],[0,3,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,1,2],[0,2,3,1]],[[0,0,0,1],[1,3,3,2],[2,3,1,2],[0,2,2,2]],[[0,0,0,1],[1,3,3,2],[3,3,1,2],[1,1,2,1]],[[0,0,0,1],[1,3,3,2],[2,4,1,2],[1,1,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,1,2],[2,1,2,1]],[[0,0,0,1],[1,3,3,2],[3,3,2,1],[0,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,4,2,1],[0,2,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,2,1],[0,3,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,2,1],[0,2,3,1]],[[0,0,0,1],[1,3,3,2],[2,3,2,1],[0,2,2,2]],[[0,0,0,1],[1,3,3,2],[3,3,2,1],[1,1,2,1]],[[0,0,0,1],[1,3,3,2],[2,4,2,1],[1,1,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,2,1],[2,1,2,1]],[[0,0,0,1],[1,3,3,3],[2,3,2,2],[0,1,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,2,3],[0,1,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,2,2],[0,1,3,1]],[[0,0,0,1],[1,3,3,2],[2,3,2,2],[0,1,2,2]],[[0,0,0,1],[1,3,3,2],[3,3,2,2],[0,2,2,0]],[[0,0,0,1],[1,3,3,2],[2,4,2,2],[0,2,2,0]],[[0,0,0,1],[1,3,3,2],[2,3,2,2],[0,3,2,0]],[[0,0,0,1],[1,3,3,2],[2,3,2,2],[0,2,3,0]],[[0,0,0,1],[1,3,3,3],[2,3,2,2],[1,0,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,2,3],[1,0,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,2,2],[1,0,3,1]],[[0,0,0,1],[1,3,3,2],[2,3,2,2],[1,0,2,2]],[[0,0,0,1],[1,3,3,2],[3,3,2,2],[1,1,2,0]],[[0,0,0,1],[1,3,3,2],[2,4,2,2],[1,1,2,0]],[[0,0,0,1],[1,3,3,2],[2,3,2,2],[2,1,2,0]],[[0,0,0,1],[1,3,3,2],[3,3,3,1],[0,1,2,1]],[[0,0,0,1],[1,3,3,2],[2,4,3,1],[0,1,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,4,1],[0,1,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,1],[0,1,3,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,1],[0,1,2,2]],[[0,0,0,1],[1,3,3,2],[3,3,3,1],[0,2,1,1]],[[0,0,0,1],[1,3,3,2],[2,4,3,1],[0,2,1,1]],[[0,0,0,1],[1,3,3,2],[2,3,4,1],[0,2,1,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,1],[0,3,1,1]],[[0,0,0,1],[1,3,3,2],[3,3,3,1],[1,0,2,1]],[[0,0,0,1],[1,3,3,2],[2,4,3,1],[1,0,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,4,1],[1,0,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,1],[2,0,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,1],[1,0,3,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,1],[1,0,2,2]],[[0,0,0,1],[1,3,3,2],[3,3,3,1],[1,1,1,1]],[[0,0,0,1],[1,3,3,2],[2,4,3,1],[1,1,1,1]],[[0,0,0,1],[1,3,3,2],[2,3,4,1],[1,1,1,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,1],[2,1,1,1]],[[0,0,0,1],[1,3,3,3],[2,3,3,2],[0,0,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,4,2],[0,0,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,3],[0,0,2,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[0,0,2,2]],[[0,0,0,1],[1,3,3,3],[2,3,3,2],[0,1,1,1]],[[0,0,0,1],[1,3,3,2],[3,3,3,2],[0,1,1,1]],[[0,0,0,1],[1,3,3,2],[2,4,3,2],[0,1,1,1]],[[0,0,0,1],[1,3,3,2],[2,3,4,2],[0,1,1,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,3],[0,1,1,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[0,1,1,2]],[[0,0,0,1],[1,3,3,3],[2,3,3,2],[0,1,2,0]],[[0,0,0,1],[1,3,3,2],[3,3,3,2],[0,1,2,0]],[[0,0,0,1],[1,3,3,2],[2,4,3,2],[0,1,2,0]],[[0,0,0,1],[1,3,3,2],[2,3,4,2],[0,1,2,0]],[[0,0,0,1],[1,3,3,2],[2,3,3,3],[0,1,2,0]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[0,1,3,0]],[[0,0,0,1],[1,3,3,3],[2,3,3,2],[0,2,0,1]],[[0,0,0,1],[1,3,3,2],[3,3,3,2],[0,2,0,1]],[[0,0,0,1],[1,3,3,2],[2,4,3,2],[0,2,0,1]],[[0,0,0,1],[1,3,3,2],[2,3,4,2],[0,2,0,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,3],[0,2,0,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[0,3,0,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[0,2,0,2]],[[0,0,0,1],[1,3,3,3],[2,3,3,2],[0,2,1,0]],[[0,0,0,1],[1,3,3,2],[3,3,3,2],[0,2,1,0]],[[0,0,0,1],[1,3,3,2],[2,4,3,2],[0,2,1,0]],[[0,0,0,1],[1,3,3,2],[2,3,4,2],[0,2,1,0]],[[0,0,0,1],[1,3,3,2],[2,3,3,3],[0,2,1,0]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[0,3,1,0]],[[0,0,0,1],[1,3,3,3],[2,3,3,2],[1,0,1,1]],[[0,0,0,1],[1,3,3,2],[3,3,3,2],[1,0,1,1]],[[0,0,0,1],[1,3,3,2],[2,4,3,2],[1,0,1,1]],[[0,0,0,1],[1,3,3,2],[2,3,4,2],[1,0,1,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,3],[1,0,1,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[2,0,1,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[1,0,1,2]],[[0,0,0,1],[1,3,3,3],[2,3,3,2],[1,0,2,0]],[[0,0,0,1],[1,3,3,2],[3,3,3,2],[1,0,2,0]],[[0,0,0,1],[1,3,3,2],[2,4,3,2],[1,0,2,0]],[[0,0,0,1],[1,3,3,2],[2,3,4,2],[1,0,2,0]],[[0,0,0,1],[1,3,3,2],[2,3,3,3],[1,0,2,0]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[2,0,2,0]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[1,0,3,0]],[[0,0,0,1],[1,3,3,3],[2,3,3,2],[1,1,0,1]],[[0,0,0,1],[1,3,3,2],[3,3,3,2],[1,1,0,1]],[[0,0,0,1],[1,3,3,2],[2,4,3,2],[1,1,0,1]],[[0,0,0,1],[1,3,3,2],[2,3,4,2],[1,1,0,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,3],[1,1,0,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[2,1,0,1]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[1,1,0,2]],[[0,0,0,1],[1,3,3,3],[2,3,3,2],[1,1,1,0]],[[0,0,0,1],[1,3,3,2],[3,3,3,2],[1,1,1,0]],[[0,0,0,1],[1,3,3,2],[2,4,3,2],[1,1,1,0]],[[0,0,0,1],[1,3,3,2],[2,3,4,2],[1,1,1,0]],[[0,0,0,1],[1,3,3,2],[2,3,3,3],[1,1,1,0]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[2,1,1,0]],[[0,0,0,1],[1,3,3,2],[3,3,3,2],[1,2,0,0]],[[0,0,0,1],[1,3,3,2],[2,4,3,2],[1,2,0,0]],[[0,0,0,1],[1,3,3,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[3,3,3,2],[2,3,0,0],[1,1,0,0]],[[0,0,0,1],[2,0,2,2],[2,3,3,3],[1,2,2,1]],[[0,0,0,1],[2,0,2,2],[2,3,3,2],[2,2,2,1]],[[0,0,0,1],[2,0,2,2],[2,3,3,2],[1,3,2,1]],[[0,0,0,1],[2,0,2,2],[2,3,3,2],[1,2,3,1]],[[0,0,0,1],[2,0,2,2],[2,3,3,2],[1,2,2,2]],[[0,0,0,1],[2,0,3,3],[2,3,2,2],[1,2,2,1]],[[0,0,0,1],[2,0,3,2],[2,3,2,3],[1,2,2,1]],[[0,0,0,1],[2,0,3,2],[2,3,2,2],[2,2,2,1]],[[0,0,0,1],[2,0,3,2],[2,3,2,2],[1,3,2,1]],[[0,0,0,1],[2,0,3,2],[2,3,2,2],[1,2,3,1]],[[0,0,0,1],[2,0,3,2],[2,3,2,2],[1,2,2,2]],[[0,0,0,1],[2,0,3,2],[2,3,4,1],[1,2,2,1]],[[0,0,0,1],[2,0,3,2],[2,3,3,1],[2,2,2,1]],[[0,0,0,1],[2,0,3,2],[2,3,3,1],[1,3,2,1]],[[0,0,0,1],[2,0,3,2],[2,3,3,1],[1,2,3,1]],[[0,0,0,1],[2,0,3,2],[2,3,3,1],[1,2,2,2]],[[0,0,0,1],[2,0,3,3],[2,3,3,2],[1,2,1,1]],[[0,0,0,1],[2,0,3,2],[2,3,4,2],[1,2,1,1]],[[0,0,0,1],[2,0,3,2],[2,3,3,3],[1,2,1,1]],[[0,0,0,1],[2,0,3,2],[2,3,3,2],[1,2,1,2]],[[0,0,0,1],[2,0,3,3],[2,3,3,2],[1,2,2,0]],[[0,0,0,1],[2,0,3,2],[2,3,4,2],[1,2,2,0]],[[0,0,0,1],[2,0,3,2],[2,3,3,3],[1,2,2,0]],[[0,0,0,1],[2,0,3,2],[2,3,3,2],[2,2,2,0]],[[0,0,0,1],[2,0,3,2],[2,3,3,2],[1,3,2,0]],[[0,0,0,1],[2,0,3,2],[2,3,3,2],[1,2,3,0]],[[1,2,2,2],[2,3,3,2],[2,3,0,0],[1,1,0,0]],[[1,2,3,1],[2,3,3,2],[2,3,0,0],[1,1,0,0]],[[1,3,2,1],[2,3,3,2],[2,3,0,0],[1,1,0,0]],[[2,2,2,1],[2,3,3,2],[2,3,0,0],[1,1,0,0]],[[0,0,0,1],[2,2,0,2],[2,3,3,3],[1,2,2,1]],[[0,0,0,1],[2,2,0,2],[2,3,3,2],[2,2,2,1]],[[0,0,0,1],[2,2,0,2],[2,3,3,2],[1,3,2,1]],[[0,0,0,1],[2,2,0,2],[2,3,3,2],[1,2,3,1]],[[0,0,0,1],[2,2,0,2],[2,3,3,2],[1,2,2,2]],[[1,2,2,1],[3,3,3,2],[2,3,0,0],[1,0,1,0]],[[1,2,2,2],[2,3,3,2],[2,3,0,0],[1,0,1,0]],[[1,2,3,1],[2,3,3,2],[2,3,0,0],[1,0,1,0]],[[1,3,2,1],[2,3,3,2],[2,3,0,0],[1,0,1,0]],[[2,2,2,1],[2,3,3,2],[2,3,0,0],[1,0,1,0]],[[1,2,2,1],[3,3,3,2],[2,3,0,0],[1,0,0,1]],[[1,2,2,2],[2,3,3,2],[2,3,0,0],[1,0,0,1]],[[1,2,3,1],[2,3,3,2],[2,3,0,0],[1,0,0,1]],[[1,3,2,1],[2,3,3,2],[2,3,0,0],[1,0,0,1]],[[2,2,2,1],[2,3,3,2],[2,3,0,0],[1,0,0,1]],[[0,0,0,1],[2,3,0,2],[1,3,3,3],[1,2,2,1]],[[0,0,0,1],[2,3,0,2],[1,3,3,2],[2,2,2,1]],[[0,0,0,1],[2,3,0,2],[1,3,3,2],[1,3,2,1]],[[0,0,0,1],[2,3,0,2],[1,3,3,2],[1,2,3,1]],[[0,0,0,1],[2,3,0,2],[1,3,3,2],[1,2,2,2]],[[0,0,0,1],[2,3,0,2],[2,3,3,3],[0,2,2,1]],[[0,0,0,1],[2,3,0,2],[2,3,3,2],[0,3,2,1]],[[0,0,0,1],[2,3,0,2],[2,3,3,2],[0,2,3,1]],[[0,0,0,1],[2,3,0,2],[2,3,3,2],[0,2,2,2]],[[0,0,0,1],[2,3,2,2],[0,2,3,3],[1,2,2,1]],[[0,0,0,1],[2,3,2,2],[0,2,3,2],[1,3,2,1]],[[0,0,0,1],[2,3,2,2],[0,2,3,2],[1,2,3,1]],[[0,0,0,1],[2,3,2,2],[0,2,3,2],[1,2,2,2]],[[0,0,0,1],[2,3,2,2],[0,3,3,3],[1,1,2,1]],[[0,0,0,1],[2,3,2,2],[0,3,3,2],[1,1,3,1]],[[0,0,0,1],[2,3,2,2],[0,3,3,2],[1,1,2,2]],[[0,0,0,1],[2,3,2,2],[1,2,3,3],[0,2,2,1]],[[0,0,0,1],[2,3,2,2],[1,2,3,2],[0,2,3,1]],[[0,0,0,1],[2,3,2,2],[1,2,3,2],[0,2,2,2]],[[0,0,0,1],[2,3,2,2],[1,3,3,3],[0,1,2,1]],[[0,0,0,1],[2,3,2,2],[1,3,3,2],[0,1,3,1]],[[0,0,0,1],[2,3,2,2],[1,3,3,2],[0,1,2,2]],[[1,2,2,1],[3,3,3,2],[2,2,2,0],[1,0,0,0]],[[1,2,2,2],[2,3,3,2],[2,2,2,0],[1,0,0,0]],[[1,2,3,1],[2,3,3,2],[2,2,2,0],[1,0,0,0]],[[1,3,2,1],[2,3,3,2],[2,2,2,0],[1,0,0,0]],[[2,2,2,1],[2,3,3,2],[2,2,2,0],[1,0,0,0]],[[0,0,0,1],[2,3,3,3],[0,1,3,2],[1,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,1,3,3],[1,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,1,3,2],[1,2,3,1]],[[0,0,0,1],[2,3,3,2],[0,1,3,2],[1,2,2,2]],[[0,0,0,1],[2,3,3,3],[0,2,2,2],[1,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,2,2,3],[1,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,2,2,2],[2,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,2,2,2],[1,3,2,1]],[[0,0,0,1],[2,3,3,2],[0,2,2,2],[1,2,3,1]],[[0,0,0,1],[2,3,3,2],[0,2,2,2],[1,2,2,2]],[[0,0,0,1],[2,3,3,2],[0,2,4,1],[1,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,2,3,1],[2,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,2,3,1],[1,3,2,1]],[[0,0,0,1],[2,3,3,2],[0,2,3,1],[1,2,3,1]],[[0,0,0,1],[2,3,3,2],[0,2,3,1],[1,2,2,2]],[[0,0,0,1],[2,3,3,3],[0,2,3,2],[1,2,1,1]],[[0,0,0,1],[2,3,3,2],[0,2,4,2],[1,2,1,1]],[[0,0,0,1],[2,3,3,2],[0,2,3,3],[1,2,1,1]],[[0,0,0,1],[2,3,3,2],[0,2,3,2],[1,2,1,2]],[[0,0,0,1],[2,3,3,3],[0,2,3,2],[1,2,2,0]],[[0,0,0,1],[2,3,3,2],[0,2,4,2],[1,2,2,0]],[[0,0,0,1],[2,3,3,2],[0,2,3,3],[1,2,2,0]],[[0,0,0,1],[2,3,3,2],[0,2,3,2],[2,2,2,0]],[[0,0,0,1],[2,3,3,2],[0,2,3,2],[1,3,2,0]],[[0,0,0,1],[2,3,3,2],[0,2,3,2],[1,2,3,0]],[[0,0,0,1],[2,3,3,3],[0,3,1,2],[1,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,4,1,2],[1,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,1,3],[1,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,1,2],[2,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,1,2],[1,3,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,1,2],[1,2,3,1]],[[0,0,0,1],[2,3,3,2],[0,3,1,2],[1,2,2,2]],[[0,0,0,1],[2,3,3,2],[0,4,2,1],[1,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,2,1],[2,2,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,2,1],[1,3,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,2,1],[1,2,3,1]],[[0,0,0,1],[2,3,3,2],[0,3,2,1],[1,2,2,2]],[[0,0,0,1],[2,3,3,3],[0,3,2,2],[1,1,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,2,3],[1,1,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,2,2],[1,1,3,1]],[[0,0,0,1],[2,3,3,2],[0,3,2,2],[1,1,2,2]],[[0,0,0,1],[2,3,3,2],[0,4,2,2],[1,2,2,0]],[[0,0,0,1],[2,3,3,2],[0,3,2,2],[2,2,2,0]],[[0,0,0,1],[2,3,3,2],[0,3,2,2],[1,3,2,0]],[[0,0,0,1],[2,3,3,2],[0,3,2,2],[1,2,3,0]],[[0,0,0,1],[2,3,3,2],[0,4,3,1],[1,1,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,4,1],[1,1,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,1],[1,1,3,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,1],[1,1,2,2]],[[0,0,0,1],[2,3,3,2],[0,4,3,1],[1,2,1,1]],[[0,0,0,1],[2,3,3,2],[0,3,4,1],[1,2,1,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,1],[2,2,1,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,1],[1,3,1,1]],[[0,0,0,1],[2,3,3,3],[0,3,3,2],[1,0,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,4,2],[1,0,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,3],[1,0,2,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,2],[1,0,2,2]],[[0,0,0,1],[2,3,3,3],[0,3,3,2],[1,1,1,1]],[[0,0,0,1],[2,3,3,2],[0,4,3,2],[1,1,1,1]],[[0,0,0,1],[2,3,3,2],[0,3,4,2],[1,1,1,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,3],[1,1,1,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,2],[1,1,1,2]],[[0,0,0,1],[2,3,3,3],[0,3,3,2],[1,1,2,0]],[[0,0,0,1],[2,3,3,2],[0,4,3,2],[1,1,2,0]],[[0,0,0,1],[2,3,3,2],[0,3,4,2],[1,1,2,0]],[[0,0,0,1],[2,3,3,2],[0,3,3,3],[1,1,2,0]],[[0,0,0,1],[2,3,3,2],[0,3,3,2],[1,1,3,0]],[[0,0,0,1],[2,3,3,3],[0,3,3,2],[1,2,0,1]],[[0,0,0,1],[2,3,3,2],[0,4,3,2],[1,2,0,1]],[[0,0,0,1],[2,3,3,2],[0,3,4,2],[1,2,0,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,3],[1,2,0,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,2],[2,2,0,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,2],[1,3,0,1]],[[0,0,0,1],[2,3,3,2],[0,3,3,2],[1,2,0,2]],[[0,0,0,1],[2,3,3,3],[0,3,3,2],[1,2,1,0]],[[0,0,0,1],[2,3,3,2],[0,4,3,2],[1,2,1,0]],[[0,0,0,1],[2,3,3,2],[0,3,4,2],[1,2,1,0]],[[0,0,0,1],[2,3,3,2],[0,3,3,3],[1,2,1,0]],[[0,0,0,1],[2,3,3,2],[0,3,3,2],[2,2,1,0]],[[0,0,0,1],[2,3,3,2],[0,3,3,2],[1,3,1,0]],[[0,0,0,1],[2,3,3,3],[1,1,3,2],[0,2,2,1]],[[0,0,0,1],[2,3,3,2],[1,1,3,3],[0,2,2,1]],[[0,0,0,1],[2,3,3,2],[1,1,3,2],[0,2,3,1]],[[0,0,0,1],[2,3,3,2],[1,1,3,2],[0,2,2,2]],[[0,0,0,1],[2,3,3,3],[1,2,2,2],[0,2,2,1]],[[0,0,0,1],[2,3,3,2],[1,2,2,3],[0,2,2,1]],[[0,0,0,1],[2,3,3,2],[1,2,2,2],[0,3,2,1]],[[0,0,0,1],[2,3,3,2],[1,2,2,2],[0,2,3,1]],[[0,0,0,1],[2,3,3,2],[1,2,2,2],[0,2,2,2]],[[0,0,0,1],[2,3,3,2],[1,2,4,1],[0,2,2,1]],[[0,0,0,1],[2,3,3,2],[1,2,3,1],[0,3,2,1]],[[0,0,0,1],[2,3,3,2],[1,2,3,1],[0,2,3,1]],[[0,0,0,1],[2,3,3,2],[1,2,3,1],[0,2,2,2]],[[0,0,0,1],[2,3,3,3],[1,2,3,2],[0,2,1,1]],[[0,0,0,1],[2,3,3,2],[1,2,4,2],[0,2,1,1]],[[0,0,0,1],[2,3,3,2],[1,2,3,3],[0,2,1,1]],[[0,0,0,1],[2,3,3,2],[1,2,3,2],[0,2,1,2]],[[0,0,0,1],[2,3,3,3],[1,2,3,2],[0,2,2,0]],[[0,0,0,1],[2,3,3,2],[1,2,4,2],[0,2,2,0]],[[0,0,0,1],[2,3,3,2],[1,2,3,3],[0,2,2,0]],[[0,0,0,1],[2,3,3,2],[1,2,3,2],[0,3,2,0]],[[0,0,0,1],[2,3,3,2],[1,2,3,2],[0,2,3,0]],[[0,0,0,1],[2,3,3,3],[1,3,1,2],[0,2,2,1]],[[0,0,0,1],[2,3,3,2],[1,4,1,2],[0,2,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,1,3],[0,2,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,1,2],[0,3,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,1,2],[0,2,3,1]],[[0,0,0,1],[2,3,3,2],[1,3,1,2],[0,2,2,2]],[[0,0,0,1],[2,3,3,2],[1,4,2,1],[0,2,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,2,1],[0,3,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,2,1],[0,2,3,1]],[[0,0,0,1],[2,3,3,2],[1,3,2,1],[0,2,2,2]],[[0,0,0,1],[2,3,3,3],[1,3,2,2],[0,1,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,2,3],[0,1,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,2,2],[0,1,3,1]],[[0,0,0,1],[2,3,3,2],[1,3,2,2],[0,1,2,2]],[[0,0,0,1],[2,3,3,2],[1,4,2,2],[0,2,2,0]],[[0,0,0,1],[2,3,3,2],[1,3,2,2],[0,3,2,0]],[[0,0,0,1],[2,3,3,2],[1,3,2,2],[0,2,3,0]],[[0,0,0,1],[2,3,3,3],[1,3,2,2],[1,0,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,2,3],[1,0,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,2,2],[1,0,3,1]],[[0,0,0,1],[2,3,3,2],[1,3,2,2],[1,0,2,2]],[[0,0,0,1],[2,3,3,2],[1,4,3,1],[0,1,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,4,1],[0,1,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,1],[0,1,3,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,1],[0,1,2,2]],[[0,0,0,1],[2,3,3,2],[1,4,3,1],[0,2,1,1]],[[0,0,0,1],[2,3,3,2],[1,3,4,1],[0,2,1,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,1],[0,3,1,1]],[[0,0,0,1],[2,3,3,2],[1,4,3,1],[1,0,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,4,1],[1,0,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,1],[1,0,3,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,1],[1,0,2,2]],[[0,0,0,1],[2,3,3,3],[1,3,3,2],[0,0,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,4,2],[0,0,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,3],[0,0,2,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,2],[0,0,2,2]],[[0,0,0,1],[2,3,3,3],[1,3,3,2],[0,1,1,1]],[[0,0,0,1],[2,3,3,2],[1,4,3,2],[0,1,1,1]],[[0,0,0,1],[2,3,3,2],[1,3,4,2],[0,1,1,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,3],[0,1,1,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,2],[0,1,1,2]],[[0,0,0,1],[2,3,3,3],[1,3,3,2],[0,1,2,0]],[[0,0,0,1],[2,3,3,2],[1,4,3,2],[0,1,2,0]],[[0,0,0,1],[2,3,3,2],[1,3,4,2],[0,1,2,0]],[[0,0,0,1],[2,3,3,2],[1,3,3,3],[0,1,2,0]],[[0,0,0,1],[2,3,3,2],[1,3,3,2],[0,1,3,0]],[[0,0,0,1],[2,3,3,3],[1,3,3,2],[0,2,0,1]],[[0,0,0,1],[2,3,3,2],[1,4,3,2],[0,2,0,1]],[[0,0,0,1],[2,3,3,2],[1,3,4,2],[0,2,0,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,3],[0,2,0,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,2],[0,3,0,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,2],[0,2,0,2]],[[0,0,0,1],[2,3,3,3],[1,3,3,2],[0,2,1,0]],[[0,0,0,1],[2,3,3,2],[1,4,3,2],[0,2,1,0]],[[0,0,0,1],[2,3,3,2],[1,3,4,2],[0,2,1,0]],[[0,0,0,1],[2,3,3,2],[1,3,3,3],[0,2,1,0]],[[0,0,0,1],[2,3,3,2],[1,3,3,2],[0,3,1,0]],[[0,0,0,1],[2,3,3,3],[1,3,3,2],[1,0,1,1]],[[0,0,0,1],[2,3,3,2],[1,4,3,2],[1,0,1,1]],[[0,0,0,1],[2,3,3,2],[1,3,4,2],[1,0,1,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,3],[1,0,1,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,2],[1,0,1,2]],[[0,0,0,1],[2,3,3,3],[1,3,3,2],[1,0,2,0]],[[0,0,0,1],[2,3,3,2],[1,4,3,2],[1,0,2,0]],[[0,0,0,1],[2,3,3,2],[1,3,4,2],[1,0,2,0]],[[0,0,0,1],[2,3,3,2],[1,3,3,3],[1,0,2,0]],[[0,0,0,1],[2,3,3,2],[1,3,3,2],[1,0,3,0]],[[0,0,0,1],[2,3,3,3],[1,3,3,2],[1,1,0,1]],[[0,0,0,1],[2,3,3,2],[1,4,3,2],[1,1,0,1]],[[0,0,0,1],[2,3,3,2],[1,3,4,2],[1,1,0,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,3],[1,1,0,1]],[[0,0,0,1],[2,3,3,2],[1,3,3,2],[1,1,0,2]],[[0,0,0,1],[2,3,3,3],[1,3,3,2],[1,1,1,0]],[[0,0,0,1],[2,3,3,2],[1,4,3,2],[1,1,1,0]],[[0,0,0,1],[2,3,3,2],[1,3,4,2],[1,1,1,0]],[[0,0,0,1],[2,3,3,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,3,3,2],[2,2,1,0],[1,0,1,0]],[[1,2,2,2],[2,3,3,2],[2,2,1,0],[1,0,1,0]],[[1,2,3,1],[2,3,3,2],[2,2,1,0],[1,0,1,0]],[[1,3,2,1],[2,3,3,2],[2,2,1,0],[1,0,1,0]],[[2,2,2,1],[2,3,3,2],[2,2,1,0],[1,0,1,0]],[[1,2,2,1],[3,3,3,2],[2,2,1,0],[1,0,0,1]],[[1,2,2,2],[2,3,3,2],[2,2,1,0],[1,0,0,1]],[[1,2,3,1],[2,3,3,2],[2,2,1,0],[1,0,0,1]],[[1,3,2,1],[2,3,3,2],[2,2,1,0],[1,0,0,1]],[[2,2,2,1],[2,3,3,2],[2,2,1,0],[1,0,0,1]],[[1,2,2,1],[3,3,3,2],[2,2,0,2],[1,0,0,0]],[[1,2,2,2],[2,3,3,2],[2,2,0,2],[1,0,0,0]],[[1,2,3,1],[2,3,3,2],[2,2,0,2],[1,0,0,0]],[[1,3,2,1],[2,3,3,2],[2,2,0,2],[1,0,0,0]],[[2,2,2,1],[2,3,3,2],[2,2,0,2],[1,0,0,0]],[[1,2,2,1],[2,3,3,3],[2,2,0,2],[0,0,0,1]],[[1,2,2,2],[2,3,3,2],[2,2,0,2],[0,0,0,1]],[[1,2,3,1],[2,3,3,2],[2,2,0,2],[0,0,0,1]],[[1,3,2,1],[2,3,3,2],[2,2,0,2],[0,0,0,1]],[[2,2,2,1],[2,3,3,2],[2,2,0,2],[0,0,0,1]],[[1,2,2,1],[3,3,3,2],[2,2,0,1],[1,0,1,0]],[[1,2,2,2],[2,3,3,2],[2,2,0,1],[1,0,1,0]],[[1,2,3,1],[2,3,3,2],[2,2,0,1],[1,0,1,0]],[[1,3,2,1],[2,3,3,2],[2,2,0,1],[1,0,1,0]],[[2,2,2,1],[2,3,3,2],[2,2,0,1],[1,0,1,0]],[[1,2,2,1],[3,3,3,2],[2,2,0,1],[1,0,0,1]],[[1,2,2,2],[2,3,3,2],[2,2,0,1],[1,0,0,1]],[[1,2,3,1],[2,3,3,2],[2,2,0,1],[1,0,0,1]],[[1,3,2,1],[2,3,3,2],[2,2,0,1],[1,0,0,1]],[[2,2,2,1],[2,3,3,2],[2,2,0,1],[1,0,0,1]],[[1,2,2,1],[3,3,3,2],[2,2,0,0],[1,2,0,0]],[[1,2,2,2],[2,3,3,2],[2,2,0,0],[1,2,0,0]],[[1,2,3,1],[2,3,3,2],[2,2,0,0],[1,2,0,0]],[[1,3,2,1],[2,3,3,2],[2,2,0,0],[1,2,0,0]],[[2,2,2,1],[2,3,3,2],[2,2,0,0],[1,2,0,0]],[[1,2,2,1],[3,3,3,2],[2,2,0,0],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[2,2,0,0],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[2,2,0,0],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[2,2,0,0],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[2,2,0,0],[1,1,1,0]],[[1,2,2,1],[3,3,3,2],[2,2,0,0],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[2,2,0,0],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[2,2,0,0],[1,1,0,1]],[[1,3,2,1],[2,3,3,2],[2,2,0,0],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[2,2,0,0],[1,1,0,1]],[[1,2,2,1],[3,3,3,2],[2,2,0,0],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[2,2,0,0],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[2,2,0,0],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[2,2,0,0],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[2,2,0,0],[0,2,1,0]],[[1,2,2,1],[3,3,3,2],[2,2,0,0],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[2,2,0,0],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[2,2,0,0],[0,2,0,1]],[[1,3,2,1],[2,3,3,2],[2,2,0,0],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[2,2,0,0],[0,2,0,1]],[[0,0,1,1],[0,0,3,2],[2,3,3,3],[1,2,2,1]],[[0,0,1,1],[0,0,3,2],[2,3,3,2],[2,2,2,1]],[[0,0,1,1],[0,0,3,2],[2,3,3,2],[1,3,2,1]],[[0,0,1,1],[0,0,3,2],[2,3,3,2],[1,2,3,1]],[[0,0,1,1],[0,0,3,2],[2,3,3,2],[1,2,2,2]],[[0,0,1,1],[0,2,1,2],[2,3,3,3],[1,2,2,1]],[[0,0,1,1],[0,2,1,2],[2,3,3,2],[2,2,2,1]],[[0,0,1,1],[0,2,1,2],[2,3,3,2],[1,3,2,1]],[[0,0,1,1],[0,2,1,2],[2,3,3,2],[1,2,3,1]],[[0,0,1,1],[0,2,1,2],[2,3,3,2],[1,2,2,2]],[[0,0,1,1],[0,2,2,3],[2,3,2,2],[1,2,2,1]],[[0,0,1,1],[0,2,2,2],[2,3,2,3],[1,2,2,1]],[[0,0,1,1],[0,2,2,2],[2,3,2,2],[2,2,2,1]],[[0,0,1,1],[0,2,2,2],[2,3,2,2],[1,3,2,1]],[[0,0,1,1],[0,2,2,2],[2,3,2,2],[1,2,3,1]],[[0,0,1,1],[0,2,2,2],[2,3,2,2],[1,2,2,2]],[[0,0,1,1],[0,2,2,2],[2,3,4,1],[1,2,2,1]],[[0,0,1,1],[0,2,2,2],[2,3,3,1],[2,2,2,1]],[[0,0,1,1],[0,2,2,2],[2,3,3,1],[1,3,2,1]],[[0,0,1,1],[0,2,2,2],[2,3,3,1],[1,2,3,1]],[[0,0,1,1],[0,2,2,2],[2,3,3,1],[1,2,2,2]],[[0,0,1,1],[0,2,2,3],[2,3,3,2],[1,2,1,1]],[[0,0,1,1],[0,2,2,2],[2,3,4,2],[1,2,1,1]],[[0,0,1,1],[0,2,2,2],[2,3,3,3],[1,2,1,1]],[[0,0,1,1],[0,2,2,2],[2,3,3,2],[1,2,1,2]],[[0,0,1,1],[0,2,2,3],[2,3,3,2],[1,2,2,0]],[[0,0,1,1],[0,2,2,2],[2,3,4,2],[1,2,2,0]],[[0,0,1,1],[0,2,2,2],[2,3,3,3],[1,2,2,0]],[[0,0,1,1],[0,2,2,2],[2,3,3,2],[2,2,2,0]],[[0,0,1,1],[0,2,2,2],[2,3,3,2],[1,3,2,0]],[[0,0,1,1],[0,2,2,2],[2,3,3,2],[1,2,3,0]],[[0,0,1,1],[0,2,3,0],[2,3,4,2],[1,2,2,1]],[[0,0,1,1],[0,2,3,0],[2,3,3,2],[2,2,2,1]],[[0,0,1,1],[0,2,3,0],[2,3,3,2],[1,3,2,1]],[[0,0,1,1],[0,2,3,0],[2,3,3,2],[1,2,3,1]],[[0,0,1,1],[0,2,3,0],[2,3,3,2],[1,2,2,2]],[[0,0,1,1],[0,2,3,1],[2,3,2,3],[1,2,2,1]],[[0,0,1,1],[0,2,3,1],[2,3,2,2],[2,2,2,1]],[[0,0,1,1],[0,2,3,1],[2,3,2,2],[1,3,2,1]],[[0,0,1,1],[0,2,3,1],[2,3,2,2],[1,2,3,1]],[[0,0,1,1],[0,2,3,1],[2,3,2,2],[1,2,2,2]],[[0,0,1,1],[0,2,3,1],[2,3,4,1],[1,2,2,1]],[[0,0,1,1],[0,2,3,1],[2,3,3,1],[2,2,2,1]],[[0,0,1,1],[0,2,3,1],[2,3,3,1],[1,3,2,1]],[[0,0,1,1],[0,2,3,1],[2,3,3,1],[1,2,3,1]],[[0,0,1,1],[0,2,3,1],[2,3,3,1],[1,2,2,2]],[[0,0,1,1],[0,2,3,1],[2,3,4,2],[1,2,1,1]],[[0,0,1,1],[0,2,3,1],[2,3,3,3],[1,2,1,1]],[[0,0,1,1],[0,2,3,1],[2,3,3,2],[1,2,1,2]],[[0,0,1,1],[0,2,3,1],[2,3,4,2],[1,2,2,0]],[[0,0,1,1],[0,2,3,1],[2,3,3,3],[1,2,2,0]],[[0,0,1,1],[0,2,3,1],[2,3,3,2],[2,2,2,0]],[[0,0,1,1],[0,2,3,1],[2,3,3,2],[1,3,2,0]],[[0,0,1,1],[0,2,3,1],[2,3,3,2],[1,2,3,0]],[[0,0,1,1],[0,2,3,2],[2,3,4,0],[1,2,2,1]],[[0,0,1,1],[0,2,3,2],[2,3,3,0],[2,2,2,1]],[[0,0,1,1],[0,2,3,2],[2,3,3,0],[1,3,2,1]],[[0,0,1,1],[0,2,3,2],[2,3,3,0],[1,2,3,1]],[[0,0,1,1],[0,2,3,2],[2,3,3,0],[1,2,2,2]],[[0,0,1,1],[0,2,3,2],[2,3,4,1],[1,2,2,0]],[[0,0,1,1],[0,2,3,2],[2,3,3,1],[2,2,2,0]],[[0,0,1,1],[0,2,3,2],[2,3,3,1],[1,3,2,0]],[[0,0,1,1],[0,2,3,2],[2,3,3,1],[1,2,3,0]],[[0,0,1,1],[0,3,0,2],[2,3,3,3],[1,2,2,1]],[[0,0,1,1],[0,3,0,2],[2,3,3,2],[2,2,2,1]],[[0,0,1,1],[0,3,0,2],[2,3,3,2],[1,3,2,1]],[[0,0,1,1],[0,3,0,2],[2,3,3,2],[1,2,3,1]],[[0,0,1,1],[0,3,0,2],[2,3,3,2],[1,2,2,2]],[[0,0,1,1],[0,3,1,2],[2,2,3,3],[1,2,2,1]],[[0,0,1,1],[0,3,1,2],[2,2,3,2],[2,2,2,1]],[[0,0,1,1],[0,3,1,2],[2,2,3,2],[1,3,2,1]],[[0,0,1,1],[0,3,1,2],[2,2,3,2],[1,2,3,1]],[[0,0,1,1],[0,3,1,2],[2,2,3,2],[1,2,2,2]],[[0,0,1,1],[0,3,1,2],[2,3,3,3],[1,1,2,1]],[[0,0,1,1],[0,3,1,2],[2,3,3,2],[1,1,3,1]],[[0,0,1,1],[0,3,1,2],[2,3,3,2],[1,1,2,2]],[[0,0,1,1],[0,3,2,3],[2,1,3,2],[1,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,1,3,3],[1,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,1,3,2],[1,2,3,1]],[[0,0,1,1],[0,3,2,2],[2,1,3,2],[1,2,2,2]],[[0,0,1,2],[0,3,2,2],[2,2,2,2],[1,2,2,1]],[[0,0,1,1],[0,3,2,3],[2,2,2,2],[1,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,2,2,3],[1,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,2,2,2],[2,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,2,2,2],[1,3,2,1]],[[0,0,1,1],[0,3,2,2],[2,2,2,2],[1,2,3,1]],[[0,0,1,1],[0,3,2,2],[2,2,2,2],[1,2,2,2]],[[0,0,1,1],[0,3,2,2],[2,2,4,1],[1,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,2,3,1],[2,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,2,3,1],[1,3,2,1]],[[0,0,1,1],[0,3,2,2],[2,2,3,1],[1,2,3,1]],[[0,0,1,1],[0,3,2,2],[2,2,3,1],[1,2,2,2]],[[0,0,1,2],[0,3,2,2],[2,2,3,2],[1,2,1,1]],[[0,0,1,1],[0,3,2,3],[2,2,3,2],[1,2,1,1]],[[0,0,1,1],[0,3,2,2],[2,2,4,2],[1,2,1,1]],[[0,0,1,1],[0,3,2,2],[2,2,3,3],[1,2,1,1]],[[0,0,1,1],[0,3,2,2],[2,2,3,2],[1,2,1,2]],[[0,0,1,2],[0,3,2,2],[2,2,3,2],[1,2,2,0]],[[0,0,1,1],[0,3,2,3],[2,2,3,2],[1,2,2,0]],[[0,0,1,1],[0,3,2,2],[2,2,4,2],[1,2,2,0]],[[0,0,1,1],[0,3,2,2],[2,2,3,3],[1,2,2,0]],[[0,0,1,1],[0,3,2,2],[2,2,3,2],[2,2,2,0]],[[0,0,1,1],[0,3,2,2],[2,2,3,2],[1,3,2,0]],[[0,0,1,1],[0,3,2,2],[2,2,3,2],[1,2,3,0]],[[0,0,1,2],[0,3,2,2],[2,3,1,2],[1,2,2,1]],[[0,0,1,1],[0,3,2,3],[2,3,1,2],[1,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,4,1,2],[1,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,1,3],[1,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,1,2],[2,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,1,2],[1,3,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,1,2],[1,2,3,1]],[[0,0,1,1],[0,3,2,2],[2,3,1,2],[1,2,2,2]],[[0,0,1,1],[0,3,2,2],[2,4,2,1],[1,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,2,1],[2,2,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,2,1],[1,3,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,2,1],[1,2,3,1]],[[0,0,1,1],[0,3,2,2],[2,3,2,1],[1,2,2,2]],[[0,0,1,2],[0,3,2,2],[2,3,2,2],[1,1,2,1]],[[0,0,1,1],[0,3,2,3],[2,3,2,2],[1,1,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,2,3],[1,1,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,2,2],[1,1,3,1]],[[0,0,1,1],[0,3,2,2],[2,3,2,2],[1,1,2,2]],[[0,0,1,1],[0,3,2,2],[2,4,2,2],[1,2,2,0]],[[0,0,1,1],[0,3,2,2],[2,3,2,2],[2,2,2,0]],[[0,0,1,1],[0,3,2,2],[2,3,2,2],[1,3,2,0]],[[0,0,1,1],[0,3,2,2],[2,3,2,2],[1,2,3,0]],[[0,0,1,1],[0,3,2,2],[2,4,3,1],[1,1,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,4,1],[1,1,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,1],[1,1,3,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,1],[1,1,2,2]],[[0,0,1,1],[0,3,2,2],[2,4,3,1],[1,2,1,1]],[[0,0,1,1],[0,3,2,2],[2,3,4,1],[1,2,1,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,1],[2,2,1,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,1],[1,3,1,1]],[[0,0,1,1],[0,3,2,3],[2,3,3,2],[1,0,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,4,2],[1,0,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,3],[1,0,2,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,2],[1,0,2,2]],[[0,0,1,2],[0,3,2,2],[2,3,3,2],[1,1,1,1]],[[0,0,1,1],[0,3,2,3],[2,3,3,2],[1,1,1,1]],[[0,0,1,1],[0,3,2,2],[2,4,3,2],[1,1,1,1]],[[0,0,1,1],[0,3,2,2],[2,3,4,2],[1,1,1,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,3],[1,1,1,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,2],[1,1,1,2]],[[0,0,1,2],[0,3,2,2],[2,3,3,2],[1,1,2,0]],[[0,0,1,1],[0,3,2,3],[2,3,3,2],[1,1,2,0]],[[0,0,1,1],[0,3,2,2],[2,4,3,2],[1,1,2,0]],[[0,0,1,1],[0,3,2,2],[2,3,4,2],[1,1,2,0]],[[0,0,1,1],[0,3,2,2],[2,3,3,3],[1,1,2,0]],[[0,0,1,1],[0,3,2,2],[2,3,3,2],[1,1,3,0]],[[0,0,1,2],[0,3,2,2],[2,3,3,2],[1,2,0,1]],[[0,0,1,1],[0,3,2,3],[2,3,3,2],[1,2,0,1]],[[0,0,1,1],[0,3,2,2],[2,4,3,2],[1,2,0,1]],[[0,0,1,1],[0,3,2,2],[2,3,4,2],[1,2,0,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,3],[1,2,0,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,2],[2,2,0,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,2],[1,3,0,1]],[[0,0,1,1],[0,3,2,2],[2,3,3,2],[1,2,0,2]],[[0,0,1,2],[0,3,2,2],[2,3,3,2],[1,2,1,0]],[[0,0,1,1],[0,3,2,3],[2,3,3,2],[1,2,1,0]],[[0,0,1,1],[0,3,2,2],[2,4,3,2],[1,2,1,0]],[[0,0,1,1],[0,3,2,2],[2,3,4,2],[1,2,1,0]],[[0,0,1,1],[0,3,2,2],[2,3,3,3],[1,2,1,0]],[[0,0,1,1],[0,3,2,2],[2,3,3,2],[2,2,1,0]],[[0,0,1,1],[0,3,2,2],[2,3,3,2],[1,3,1,0]],[[0,0,1,1],[0,3,3,0],[2,2,4,2],[1,2,2,1]],[[0,0,1,1],[0,3,3,0],[2,2,3,2],[2,2,2,1]],[[0,0,1,1],[0,3,3,0],[2,2,3,2],[1,3,2,1]],[[0,0,1,1],[0,3,3,0],[2,2,3,2],[1,2,3,1]],[[0,0,1,1],[0,3,3,0],[2,2,3,2],[1,2,2,2]],[[0,0,1,1],[0,3,3,0],[2,4,2,2],[1,2,2,1]],[[0,0,1,1],[0,3,3,0],[2,3,2,2],[2,2,2,1]],[[0,0,1,1],[0,3,3,0],[2,3,2,2],[1,3,2,1]],[[0,0,1,1],[0,3,3,0],[2,3,2,2],[1,2,3,1]],[[0,0,1,1],[0,3,3,0],[2,3,2,2],[1,2,2,2]],[[0,0,1,1],[0,3,3,0],[2,4,3,2],[1,1,2,1]],[[0,0,1,1],[0,3,3,0],[2,3,4,2],[1,1,2,1]],[[0,0,1,1],[0,3,3,0],[2,3,3,2],[1,1,3,1]],[[0,0,1,1],[0,3,3,0],[2,3,3,2],[1,1,2,2]],[[0,0,1,1],[0,3,3,0],[2,4,3,2],[1,2,1,1]],[[0,0,1,1],[0,3,3,0],[2,3,4,2],[1,2,1,1]],[[0,0,1,1],[0,3,3,0],[2,3,3,2],[2,2,1,1]],[[0,0,1,1],[0,3,3,0],[2,3,3,2],[1,3,1,1]],[[0,0,1,1],[0,3,3,1],[2,1,3,3],[1,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,1,3,2],[1,2,3,1]],[[0,0,1,1],[0,3,3,1],[2,1,3,2],[1,2,2,2]],[[0,0,1,1],[0,3,3,1],[2,2,2,3],[1,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,2,2,2],[2,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,2,2,2],[1,3,2,1]],[[0,0,1,1],[0,3,3,1],[2,2,2,2],[1,2,3,1]],[[0,0,1,1],[0,3,3,1],[2,2,2,2],[1,2,2,2]],[[0,0,1,1],[0,3,4,1],[2,2,3,1],[1,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,2,4,1],[1,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,2,3,1],[2,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,2,3,1],[1,3,2,1]],[[0,0,1,1],[0,3,3,1],[2,2,3,1],[1,2,3,1]],[[0,0,1,1],[0,3,3,1],[2,2,3,1],[1,2,2,2]],[[0,0,1,1],[0,3,4,1],[2,2,3,2],[1,2,1,1]],[[0,0,1,1],[0,3,3,1],[2,2,4,2],[1,2,1,1]],[[0,0,1,1],[0,3,3,1],[2,2,3,3],[1,2,1,1]],[[0,0,1,1],[0,3,3,1],[2,2,3,2],[1,2,1,2]],[[0,0,1,1],[0,3,4,1],[2,2,3,2],[1,2,2,0]],[[0,0,1,1],[0,3,3,1],[2,2,4,2],[1,2,2,0]],[[0,0,1,1],[0,3,3,1],[2,2,3,3],[1,2,2,0]],[[0,0,1,1],[0,3,3,1],[2,2,3,2],[2,2,2,0]],[[0,0,1,1],[0,3,3,1],[2,2,3,2],[1,3,2,0]],[[0,0,1,1],[0,3,3,1],[2,2,3,2],[1,2,3,0]],[[0,0,1,1],[0,3,3,1],[2,4,1,2],[1,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,1,3],[1,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,1,2],[2,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,1,2],[1,3,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,1,2],[1,2,3,1]],[[0,0,1,1],[0,3,3,1],[2,3,1,2],[1,2,2,2]],[[0,0,1,1],[0,3,3,1],[2,4,2,1],[1,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,2,1],[2,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,2,1],[1,3,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,2,1],[1,2,3,1]],[[0,0,1,1],[0,3,3,1],[2,3,2,1],[1,2,2,2]],[[0,0,1,1],[0,3,3,1],[2,3,2,3],[1,1,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,2,2],[1,1,3,1]],[[0,0,1,1],[0,3,3,1],[2,3,2,2],[1,1,2,2]],[[0,0,1,1],[0,3,3,1],[2,4,2,2],[1,2,2,0]],[[0,0,1,1],[0,3,3,1],[2,3,2,2],[2,2,2,0]],[[0,0,1,1],[0,3,3,1],[2,3,2,2],[1,3,2,0]],[[0,0,1,1],[0,3,3,1],[2,3,2,2],[1,2,3,0]],[[0,0,1,1],[0,3,3,1],[2,4,3,0],[1,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,0],[2,2,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,0],[1,3,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,0],[1,2,3,1]],[[0,0,1,1],[0,3,4,1],[2,3,3,1],[1,1,2,1]],[[0,0,1,1],[0,3,3,1],[2,4,3,1],[1,1,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,4,1],[1,1,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,1],[1,1,3,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,1],[1,1,2,2]],[[0,0,1,1],[0,3,4,1],[2,3,3,1],[1,2,1,1]],[[0,0,1,1],[0,3,3,1],[2,4,3,1],[1,2,1,1]],[[0,0,1,1],[0,3,3,1],[2,3,4,1],[1,2,1,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,1],[2,2,1,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,1],[1,3,1,1]],[[0,0,1,1],[0,3,3,1],[2,3,4,2],[1,0,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,3],[1,0,2,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,2],[1,0,2,2]],[[0,0,1,1],[0,3,4,1],[2,3,3,2],[1,1,1,1]],[[0,0,1,1],[0,3,3,1],[2,4,3,2],[1,1,1,1]],[[0,0,1,1],[0,3,3,1],[2,3,4,2],[1,1,1,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,3],[1,1,1,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,2],[1,1,1,2]],[[0,0,1,1],[0,3,4,1],[2,3,3,2],[1,1,2,0]],[[0,0,1,1],[0,3,3,1],[2,4,3,2],[1,1,2,0]],[[0,0,1,1],[0,3,3,1],[2,3,4,2],[1,1,2,0]],[[0,0,1,1],[0,3,3,1],[2,3,3,3],[1,1,2,0]],[[0,0,1,1],[0,3,3,1],[2,3,3,2],[1,1,3,0]],[[0,0,1,1],[0,3,4,1],[2,3,3,2],[1,2,0,1]],[[0,0,1,1],[0,3,3,1],[2,4,3,2],[1,2,0,1]],[[0,0,1,1],[0,3,3,1],[2,3,4,2],[1,2,0,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,3],[1,2,0,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,2],[2,2,0,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,2],[1,3,0,1]],[[0,0,1,1],[0,3,3,1],[2,3,3,2],[1,2,0,2]],[[0,0,1,1],[0,3,4,1],[2,3,3,2],[1,2,1,0]],[[0,0,1,1],[0,3,3,1],[2,4,3,2],[1,2,1,0]],[[0,0,1,1],[0,3,3,1],[2,3,4,2],[1,2,1,0]],[[0,0,1,1],[0,3,3,1],[2,3,3,3],[1,2,1,0]],[[0,0,1,1],[0,3,3,1],[2,3,3,2],[2,2,1,0]],[[0,0,1,1],[0,3,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,3,2],[2,1,3,0],[1,0,0,0]],[[1,2,2,2],[2,3,3,2],[2,1,3,0],[1,0,0,0]],[[1,2,3,1],[2,3,3,2],[2,1,3,0],[1,0,0,0]],[[1,3,2,1],[2,3,3,2],[2,1,3,0],[1,0,0,0]],[[2,2,2,1],[2,3,3,2],[2,1,3,0],[1,0,0,0]],[[0,0,1,2],[0,3,3,2],[2,2,1,2],[1,2,2,1]],[[0,0,1,1],[0,3,4,2],[2,2,1,2],[1,2,2,1]],[[0,0,1,1],[0,3,3,3],[2,2,1,2],[1,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,2,1,3],[1,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,2,1,2],[2,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,2,1,2],[1,3,2,1]],[[0,0,1,1],[0,3,3,2],[2,2,1,2],[1,2,3,1]],[[0,0,1,1],[0,3,3,2],[2,2,1,2],[1,2,2,2]],[[0,0,1,2],[0,3,3,2],[2,2,2,2],[1,2,1,1]],[[0,0,1,1],[0,3,4,2],[2,2,2,2],[1,2,1,1]],[[0,0,1,1],[0,3,3,3],[2,2,2,2],[1,2,1,1]],[[0,0,1,1],[0,3,3,2],[2,2,2,3],[1,2,1,1]],[[0,0,1,1],[0,3,3,2],[2,2,2,2],[1,2,1,2]],[[0,0,1,2],[0,3,3,2],[2,2,2,2],[1,2,2,0]],[[0,0,1,1],[0,3,4,2],[2,2,2,2],[1,2,2,0]],[[0,0,1,1],[0,3,3,3],[2,2,2,2],[1,2,2,0]],[[0,0,1,1],[0,3,3,2],[2,2,2,3],[1,2,2,0]],[[0,0,1,2],[0,3,3,2],[2,2,3,0],[1,2,2,1]],[[0,0,1,1],[0,3,4,2],[2,2,3,0],[1,2,2,1]],[[0,0,1,1],[0,3,3,3],[2,2,3,0],[1,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,2,4,0],[1,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,2,3,0],[2,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,2,3,0],[1,3,2,1]],[[0,0,1,1],[0,3,3,2],[2,2,3,0],[1,2,3,1]],[[0,0,1,1],[0,3,3,2],[2,2,3,0],[1,2,2,2]],[[0,0,1,2],[0,3,3,2],[2,2,3,1],[1,2,1,1]],[[0,0,1,1],[0,3,4,2],[2,2,3,1],[1,2,1,1]],[[0,0,1,1],[0,3,3,3],[2,2,3,1],[1,2,1,1]],[[0,0,1,1],[0,3,3,2],[2,2,4,1],[1,2,1,1]],[[0,0,1,2],[0,3,3,2],[2,2,3,1],[1,2,2,0]],[[0,0,1,1],[0,3,4,2],[2,2,3,1],[1,2,2,0]],[[0,0,1,1],[0,3,3,3],[2,2,3,1],[1,2,2,0]],[[0,0,1,1],[0,3,3,2],[2,2,4,1],[1,2,2,0]],[[0,0,1,1],[0,3,3,2],[2,2,3,1],[2,2,2,0]],[[0,0,1,1],[0,3,3,2],[2,2,3,1],[1,3,2,0]],[[0,0,1,1],[0,3,3,2],[2,2,3,1],[1,2,3,0]],[[0,0,1,2],[0,3,3,2],[2,3,0,2],[1,2,2,1]],[[0,0,1,1],[0,3,4,2],[2,3,0,2],[1,2,2,1]],[[0,0,1,1],[0,3,3,3],[2,3,0,2],[1,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,4,0,2],[1,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,3,0,3],[1,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,3,0,2],[2,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,3,0,2],[1,3,2,1]],[[0,0,1,1],[0,3,3,2],[2,3,0,2],[1,2,3,1]],[[0,0,1,1],[0,3,3,2],[2,3,0,2],[1,2,2,2]],[[0,0,1,2],[0,3,3,2],[2,3,1,2],[1,1,2,1]],[[0,0,1,1],[0,3,4,2],[2,3,1,2],[1,1,2,1]],[[0,0,1,1],[0,3,3,3],[2,3,1,2],[1,1,2,1]],[[0,0,1,1],[0,3,3,2],[2,3,1,3],[1,1,2,1]],[[0,0,1,1],[0,3,3,2],[2,3,1,2],[1,1,3,1]],[[0,0,1,1],[0,3,3,2],[2,3,1,2],[1,1,2,2]],[[0,0,1,1],[0,3,3,2],[2,4,2,0],[1,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,3,2,0],[2,2,2,1]],[[0,0,1,1],[0,3,3,2],[2,3,2,0],[1,3,2,1]],[[0,0,1,1],[0,3,3,2],[2,3,2,0],[1,2,3,1]],[[0,0,1,1],[0,3,3,2],[2,3,2,0],[1,2,2,2]],[[0,0,1,1],[0,3,3,2],[2,4,2,1],[1,2,2,0]],[[0,0,1,1],[0,3,3,2],[2,3,2,1],[2,2,2,0]],[[0,0,1,1],[0,3,3,2],[2,3,2,1],[1,3,2,0]],[[0,0,1,1],[0,3,3,2],[2,3,2,1],[1,2,3,0]],[[0,0,1,2],[0,3,3,2],[2,3,2,2],[1,1,1,1]],[[0,0,1,1],[0,3,4,2],[2,3,2,2],[1,1,1,1]],[[0,0,1,1],[0,3,3,3],[2,3,2,2],[1,1,1,1]],[[0,0,1,1],[0,3,3,2],[2,3,2,3],[1,1,1,1]],[[0,0,1,1],[0,3,3,2],[2,3,2,2],[1,1,1,2]],[[0,0,1,2],[0,3,3,2],[2,3,2,2],[1,1,2,0]],[[0,0,1,1],[0,3,4,2],[2,3,2,2],[1,1,2,0]],[[0,0,1,1],[0,3,3,3],[2,3,2,2],[1,1,2,0]],[[0,0,1,1],[0,3,3,2],[2,3,2,3],[1,1,2,0]],[[0,0,1,2],[0,3,3,2],[2,3,2,2],[1,2,0,1]],[[0,0,1,1],[0,3,4,2],[2,3,2,2],[1,2,0,1]],[[0,0,1,1],[0,3,3,3],[2,3,2,2],[1,2,0,1]],[[0,0,1,1],[0,3,3,2],[2,3,2,3],[1,2,0,1]],[[0,0,1,1],[0,3,3,2],[2,3,2,2],[1,2,0,2]],[[0,0,1,2],[0,3,3,2],[2,3,2,2],[1,2,1,0]],[[0,0,1,1],[0,3,4,2],[2,3,2,2],[1,2,1,0]],[[0,0,1,1],[0,3,3,3],[2,3,2,2],[1,2,1,0]],[[0,0,1,1],[0,3,3,2],[2,3,2,3],[1,2,1,0]],[[0,0,1,2],[0,3,3,2],[2,3,3,0],[1,1,2,1]],[[0,0,1,1],[0,3,4,2],[2,3,3,0],[1,1,2,1]],[[0,0,1,1],[0,3,3,3],[2,3,3,0],[1,1,2,1]],[[0,0,1,1],[0,3,3,2],[2,4,3,0],[1,1,2,1]],[[0,0,1,1],[0,3,3,2],[2,3,4,0],[1,1,2,1]],[[0,0,1,1],[0,3,3,2],[2,3,3,0],[1,1,3,1]],[[0,0,1,1],[0,3,3,2],[2,3,3,0],[1,1,2,2]],[[0,0,1,2],[0,3,3,2],[2,3,3,0],[1,2,1,1]],[[0,0,1,1],[0,3,4,2],[2,3,3,0],[1,2,1,1]],[[0,0,1,1],[0,3,3,3],[2,3,3,0],[1,2,1,1]],[[0,0,1,1],[0,3,3,2],[2,4,3,0],[1,2,1,1]],[[0,0,1,1],[0,3,3,2],[2,3,4,0],[1,2,1,1]],[[0,0,1,1],[0,3,3,2],[2,3,3,0],[2,2,1,1]],[[0,0,1,1],[0,3,3,2],[2,3,3,0],[1,3,1,1]],[[0,0,1,2],[0,3,3,2],[2,3,3,1],[1,1,1,1]],[[0,0,1,1],[0,3,4,2],[2,3,3,1],[1,1,1,1]],[[0,0,1,1],[0,3,3,3],[2,3,3,1],[1,1,1,1]],[[0,0,1,1],[0,3,3,2],[2,4,3,1],[1,1,1,1]],[[0,0,1,1],[0,3,3,2],[2,3,4,1],[1,1,1,1]],[[0,0,1,2],[0,3,3,2],[2,3,3,1],[1,1,2,0]],[[0,0,1,1],[0,3,4,2],[2,3,3,1],[1,1,2,0]],[[0,0,1,1],[0,3,3,3],[2,3,3,1],[1,1,2,0]],[[0,0,1,1],[0,3,3,2],[2,4,3,1],[1,1,2,0]],[[0,0,1,1],[0,3,3,2],[2,3,4,1],[1,1,2,0]],[[0,0,1,1],[0,3,3,2],[2,3,3,1],[1,1,3,0]],[[0,0,1,2],[0,3,3,2],[2,3,3,1],[1,2,0,1]],[[0,0,1,1],[0,3,4,2],[2,3,3,1],[1,2,0,1]],[[0,0,1,1],[0,3,3,3],[2,3,3,1],[1,2,0,1]],[[0,0,1,1],[0,3,3,2],[2,4,3,1],[1,2,0,1]],[[0,0,1,1],[0,3,3,2],[2,3,4,1],[1,2,0,1]],[[0,0,1,1],[0,3,3,2],[2,3,3,1],[2,2,0,1]],[[0,0,1,1],[0,3,3,2],[2,3,3,1],[1,3,0,1]],[[0,0,1,2],[0,3,3,2],[2,3,3,1],[1,2,1,0]],[[0,0,1,1],[0,3,4,2],[2,3,3,1],[1,2,1,0]],[[0,0,1,1],[0,3,3,3],[2,3,3,1],[1,2,1,0]],[[0,0,1,1],[0,3,3,2],[2,4,3,1],[1,2,1,0]],[[0,0,1,1],[0,3,3,2],[2,3,4,1],[1,2,1,0]],[[0,0,1,1],[0,3,3,2],[2,3,3,1],[2,2,1,0]],[[0,0,1,1],[0,3,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[3,3,3,2],[2,1,2,0],[1,1,0,0]],[[1,2,2,2],[2,3,3,2],[2,1,2,0],[1,1,0,0]],[[1,2,3,1],[2,3,3,2],[2,1,2,0],[1,1,0,0]],[[1,3,2,1],[2,3,3,2],[2,1,2,0],[1,1,0,0]],[[2,2,2,1],[2,3,3,2],[2,1,2,0],[1,1,0,0]],[[0,0,1,1],[1,0,3,2],[1,3,3,3],[1,2,2,1]],[[0,0,1,1],[1,0,3,2],[1,3,3,2],[1,3,2,1]],[[0,0,1,1],[1,0,3,2],[1,3,3,2],[1,2,3,1]],[[0,0,1,1],[1,0,3,2],[1,3,3,2],[1,2,2,2]],[[0,0,1,1],[1,0,3,2],[2,3,3,3],[0,2,2,1]],[[0,0,1,1],[1,0,3,2],[2,3,3,2],[0,2,3,1]],[[0,0,1,1],[1,0,3,2],[2,3,3,2],[0,2,2,2]],[[0,0,1,1],[1,2,1,2],[1,3,3,3],[1,2,2,1]],[[0,0,1,1],[1,2,1,2],[1,3,3,2],[2,2,2,1]],[[0,0,1,1],[1,2,1,2],[1,3,3,2],[1,3,2,1]],[[0,0,1,1],[1,2,1,2],[1,3,3,2],[1,2,3,1]],[[0,0,1,1],[1,2,1,2],[1,3,3,2],[1,2,2,2]],[[0,0,1,1],[1,2,1,2],[2,3,3,3],[0,2,2,1]],[[0,0,1,1],[1,2,1,2],[2,3,3,2],[0,3,2,1]],[[0,0,1,1],[1,2,1,2],[2,3,3,2],[0,2,3,1]],[[0,0,1,1],[1,2,1,2],[2,3,3,2],[0,2,2,2]],[[0,0,1,1],[1,2,2,3],[1,3,2,2],[1,2,2,1]],[[0,0,1,1],[1,2,2,2],[1,3,2,3],[1,2,2,1]],[[0,0,1,1],[1,2,2,2],[1,3,2,2],[2,2,2,1]],[[0,0,1,1],[1,2,2,2],[1,3,2,2],[1,3,2,1]],[[0,0,1,1],[1,2,2,2],[1,3,2,2],[1,2,3,1]],[[0,0,1,1],[1,2,2,2],[1,3,2,2],[1,2,2,2]],[[0,0,1,1],[1,2,2,2],[1,3,4,1],[1,2,2,1]],[[0,0,1,1],[1,2,2,2],[1,3,3,1],[2,2,2,1]],[[0,0,1,1],[1,2,2,2],[1,3,3,1],[1,3,2,1]],[[0,0,1,1],[1,2,2,2],[1,3,3,1],[1,2,3,1]],[[0,0,1,1],[1,2,2,2],[1,3,3,1],[1,2,2,2]],[[0,0,1,1],[1,2,2,3],[1,3,3,2],[1,2,1,1]],[[0,0,1,1],[1,2,2,2],[1,3,4,2],[1,2,1,1]],[[0,0,1,1],[1,2,2,2],[1,3,3,3],[1,2,1,1]],[[0,0,1,1],[1,2,2,2],[1,3,3,2],[1,2,1,2]],[[0,0,1,1],[1,2,2,3],[1,3,3,2],[1,2,2,0]],[[0,0,1,1],[1,2,2,2],[1,3,4,2],[1,2,2,0]],[[0,0,1,1],[1,2,2,2],[1,3,3,3],[1,2,2,0]],[[0,0,1,1],[1,2,2,2],[1,3,3,2],[2,2,2,0]],[[0,0,1,1],[1,2,2,2],[1,3,3,2],[1,3,2,0]],[[0,0,1,1],[1,2,2,2],[1,3,3,2],[1,2,3,0]],[[0,0,1,1],[1,2,2,3],[2,3,2,2],[0,2,2,1]],[[0,0,1,1],[1,2,2,2],[2,3,2,3],[0,2,2,1]],[[0,0,1,1],[1,2,2,2],[2,3,2,2],[0,3,2,1]],[[0,0,1,1],[1,2,2,2],[2,3,2,2],[0,2,3,1]],[[0,0,1,1],[1,2,2,2],[2,3,2,2],[0,2,2,2]],[[0,0,1,1],[1,2,2,2],[2,3,4,1],[0,2,2,1]],[[0,0,1,1],[1,2,2,2],[2,3,3,1],[0,3,2,1]],[[0,0,1,1],[1,2,2,2],[2,3,3,1],[0,2,3,1]],[[0,0,1,1],[1,2,2,2],[2,3,3,1],[0,2,2,2]],[[0,0,1,1],[1,2,2,3],[2,3,3,2],[0,2,1,1]],[[0,0,1,1],[1,2,2,2],[2,3,4,2],[0,2,1,1]],[[0,0,1,1],[1,2,2,2],[2,3,3,3],[0,2,1,1]],[[0,0,1,1],[1,2,2,2],[2,3,3,2],[0,2,1,2]],[[0,0,1,1],[1,2,2,3],[2,3,3,2],[0,2,2,0]],[[0,0,1,1],[1,2,2,2],[2,3,4,2],[0,2,2,0]],[[0,0,1,1],[1,2,2,2],[2,3,3,3],[0,2,2,0]],[[0,0,1,1],[1,2,2,2],[2,3,3,2],[0,3,2,0]],[[0,0,1,1],[1,2,2,2],[2,3,3,2],[0,2,3,0]],[[0,0,1,1],[1,2,3,0],[1,3,4,2],[1,2,2,1]],[[0,0,1,1],[1,2,3,0],[1,3,3,2],[2,2,2,1]],[[0,0,1,1],[1,2,3,0],[1,3,3,2],[1,3,2,1]],[[0,0,1,1],[1,2,3,0],[1,3,3,2],[1,2,3,1]],[[0,0,1,1],[1,2,3,0],[1,3,3,2],[1,2,2,2]],[[0,0,1,1],[1,2,3,0],[2,3,4,2],[0,2,2,1]],[[0,0,1,1],[1,2,3,0],[2,3,3,2],[0,3,2,1]],[[0,0,1,1],[1,2,3,0],[2,3,3,2],[0,2,3,1]],[[0,0,1,1],[1,2,3,0],[2,3,3,2],[0,2,2,2]],[[0,0,1,1],[1,2,3,1],[1,3,2,3],[1,2,2,1]],[[0,0,1,1],[1,2,3,1],[1,3,2,2],[2,2,2,1]],[[0,0,1,1],[1,2,3,1],[1,3,2,2],[1,3,2,1]],[[0,0,1,1],[1,2,3,1],[1,3,2,2],[1,2,3,1]],[[0,0,1,1],[1,2,3,1],[1,3,2,2],[1,2,2,2]],[[0,0,1,1],[1,2,3,1],[1,3,4,1],[1,2,2,1]],[[0,0,1,1],[1,2,3,1],[1,3,3,1],[2,2,2,1]],[[0,0,1,1],[1,2,3,1],[1,3,3,1],[1,3,2,1]],[[0,0,1,1],[1,2,3,1],[1,3,3,1],[1,2,3,1]],[[0,0,1,1],[1,2,3,1],[1,3,3,1],[1,2,2,2]],[[0,0,1,1],[1,2,3,1],[1,3,4,2],[1,2,1,1]],[[0,0,1,1],[1,2,3,1],[1,3,3,3],[1,2,1,1]],[[0,0,1,1],[1,2,3,1],[1,3,3,2],[1,2,1,2]],[[0,0,1,1],[1,2,3,1],[1,3,4,2],[1,2,2,0]],[[0,0,1,1],[1,2,3,1],[1,3,3,3],[1,2,2,0]],[[0,0,1,1],[1,2,3,1],[1,3,3,2],[2,2,2,0]],[[0,0,1,1],[1,2,3,1],[1,3,3,2],[1,3,2,0]],[[0,0,1,1],[1,2,3,1],[1,3,3,2],[1,2,3,0]],[[0,0,1,1],[1,2,3,1],[2,3,2,3],[0,2,2,1]],[[0,0,1,1],[1,2,3,1],[2,3,2,2],[0,3,2,1]],[[0,0,1,1],[1,2,3,1],[2,3,2,2],[0,2,3,1]],[[0,0,1,1],[1,2,3,1],[2,3,2,2],[0,2,2,2]],[[0,0,1,1],[1,2,3,1],[2,3,4,1],[0,2,2,1]],[[0,0,1,1],[1,2,3,1],[2,3,3,1],[0,3,2,1]],[[0,0,1,1],[1,2,3,1],[2,3,3,1],[0,2,3,1]],[[0,0,1,1],[1,2,3,1],[2,3,3,1],[0,2,2,2]],[[0,0,1,1],[1,2,3,1],[2,3,4,2],[0,2,1,1]],[[0,0,1,1],[1,2,3,1],[2,3,3,3],[0,2,1,1]],[[0,0,1,1],[1,2,3,1],[2,3,3,2],[0,2,1,2]],[[0,0,1,1],[1,2,3,1],[2,3,4,2],[0,2,2,0]],[[0,0,1,1],[1,2,3,1],[2,3,3,3],[0,2,2,0]],[[0,0,1,1],[1,2,3,1],[2,3,3,2],[0,3,2,0]],[[0,0,1,1],[1,2,3,1],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[3,3,3,2],[2,1,2,0],[0,2,0,0]],[[1,2,2,2],[2,3,3,2],[2,1,2,0],[0,2,0,0]],[[1,2,3,1],[2,3,3,2],[2,1,2,0],[0,2,0,0]],[[0,0,1,1],[1,2,3,2],[1,3,4,0],[1,2,2,1]],[[0,0,1,1],[1,2,3,2],[1,3,3,0],[2,2,2,1]],[[0,0,1,1],[1,2,3,2],[1,3,3,0],[1,3,2,1]],[[0,0,1,1],[1,2,3,2],[1,3,3,0],[1,2,3,1]],[[0,0,1,1],[1,2,3,2],[1,3,3,0],[1,2,2,2]],[[0,0,1,1],[1,2,3,2],[1,3,4,1],[1,2,2,0]],[[0,0,1,1],[1,2,3,2],[1,3,3,1],[2,2,2,0]],[[0,0,1,1],[1,2,3,2],[1,3,3,1],[1,3,2,0]],[[0,0,1,1],[1,2,3,2],[1,3,3,1],[1,2,3,0]],[[1,3,2,1],[2,3,3,2],[2,1,2,0],[0,2,0,0]],[[2,2,2,1],[2,3,3,2],[2,1,2,0],[0,2,0,0]],[[0,0,1,1],[1,2,3,2],[2,3,4,0],[0,2,2,1]],[[0,0,1,1],[1,2,3,2],[2,3,3,0],[0,3,2,1]],[[0,0,1,1],[1,2,3,2],[2,3,3,0],[0,2,3,1]],[[0,0,1,1],[1,2,3,2],[2,3,3,0],[0,2,2,2]],[[0,0,1,1],[1,2,3,2],[2,3,4,1],[0,2,2,0]],[[0,0,1,1],[1,2,3,2],[2,3,3,1],[0,3,2,0]],[[0,0,1,1],[1,2,3,2],[2,3,3,1],[0,2,3,0]],[[0,0,1,1],[1,3,0,2],[1,3,3,3],[1,2,2,1]],[[0,0,1,1],[1,3,0,2],[1,3,3,2],[2,2,2,1]],[[0,0,1,1],[1,3,0,2],[1,3,3,2],[1,3,2,1]],[[0,0,1,1],[1,3,0,2],[1,3,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,0,2],[1,3,3,2],[1,2,2,2]],[[0,0,1,1],[1,3,0,2],[2,3,3,3],[0,2,2,1]],[[0,0,1,1],[1,3,0,2],[2,3,3,2],[0,3,2,1]],[[0,0,1,1],[1,3,0,2],[2,3,3,2],[0,2,3,1]],[[0,0,1,1],[1,3,0,2],[2,3,3,2],[0,2,2,2]],[[0,0,1,1],[1,3,1,2],[0,3,3,3],[1,2,2,1]],[[0,0,1,1],[1,3,1,2],[0,3,3,2],[1,3,2,1]],[[0,0,1,1],[1,3,1,2],[0,3,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,1,2],[0,3,3,2],[1,2,2,2]],[[0,0,1,1],[1,3,1,2],[1,2,3,3],[1,2,2,1]],[[0,0,1,1],[1,3,1,2],[1,2,3,2],[2,2,2,1]],[[0,0,1,1],[1,3,1,2],[1,2,3,2],[1,3,2,1]],[[0,0,1,1],[1,3,1,2],[1,2,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,1,2],[1,2,3,2],[1,2,2,2]],[[0,0,1,1],[1,3,1,2],[1,3,3,3],[1,1,2,1]],[[0,0,1,1],[1,3,1,2],[1,3,3,2],[1,1,3,1]],[[0,0,1,1],[1,3,1,2],[1,3,3,2],[1,1,2,2]],[[0,0,1,1],[1,3,1,2],[2,1,3,3],[1,2,2,1]],[[0,0,1,1],[1,3,1,2],[2,1,3,2],[2,2,2,1]],[[0,0,1,1],[1,3,1,2],[2,1,3,2],[1,3,2,1]],[[0,0,1,1],[1,3,1,2],[2,1,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,1,2],[2,1,3,2],[1,2,2,2]],[[0,0,1,1],[1,3,1,2],[2,2,3,3],[0,2,2,1]],[[0,0,1,1],[1,3,1,2],[2,2,3,2],[0,3,2,1]],[[0,0,1,1],[1,3,1,2],[2,2,3,2],[0,2,3,1]],[[0,0,1,1],[1,3,1,2],[2,2,3,2],[0,2,2,2]],[[0,0,1,1],[1,3,1,2],[2,3,3,3],[0,1,2,1]],[[0,0,1,1],[1,3,1,2],[2,3,3,2],[0,1,3,1]],[[0,0,1,1],[1,3,1,2],[2,3,3,2],[0,1,2,2]],[[0,0,1,1],[1,3,1,2],[2,3,3,3],[1,0,2,1]],[[0,0,1,1],[1,3,1,2],[2,3,3,2],[1,0,3,1]],[[0,0,1,1],[1,3,1,2],[2,3,3,2],[1,0,2,2]],[[0,0,1,1],[1,3,2,3],[0,2,3,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[0,2,3,3],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[0,2,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[0,2,3,2],[1,2,2,2]],[[0,0,1,2],[1,3,2,2],[0,3,2,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,3],[0,3,2,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[0,3,2,3],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[0,3,2,2],[1,3,2,1]],[[0,0,1,1],[1,3,2,2],[0,3,2,2],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[0,3,2,2],[1,2,2,2]],[[0,0,1,1],[1,3,2,2],[0,3,4,1],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[0,3,3,1],[1,3,2,1]],[[0,0,1,1],[1,3,2,2],[0,3,3,1],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[0,3,3,1],[1,2,2,2]],[[0,0,1,2],[1,3,2,2],[0,3,3,2],[1,2,1,1]],[[0,0,1,1],[1,3,2,3],[0,3,3,2],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[0,3,4,2],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[0,3,3,3],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[0,3,3,2],[1,2,1,2]],[[0,0,1,2],[1,3,2,2],[0,3,3,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,3],[0,3,3,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[0,3,4,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[0,3,3,3],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[0,3,3,2],[1,3,2,0]],[[0,0,1,1],[1,3,2,2],[0,3,3,2],[1,2,3,0]],[[0,0,1,1],[1,3,2,3],[1,1,3,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,1,3,3],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,1,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[1,1,3,2],[1,2,2,2]],[[0,0,1,2],[1,3,2,2],[1,2,2,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,3],[1,2,2,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,2,2,3],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,2,2,2],[2,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,2,2,2],[1,3,2,1]],[[0,0,1,1],[1,3,2,2],[1,2,2,2],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[1,2,2,2],[1,2,2,2]],[[0,0,1,1],[1,3,2,2],[1,2,4,1],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,2,3,1],[2,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,2,3,1],[1,3,2,1]],[[0,0,1,1],[1,3,2,2],[1,2,3,1],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[1,2,3,1],[1,2,2,2]],[[0,0,1,2],[1,3,2,2],[1,2,3,2],[1,2,1,1]],[[0,0,1,1],[1,3,2,3],[1,2,3,2],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[1,2,4,2],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[1,2,3,3],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[1,2,3,2],[1,2,1,2]],[[0,0,1,2],[1,3,2,2],[1,2,3,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,3],[1,2,3,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[1,2,4,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[1,2,3,3],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[1,2,3,2],[2,2,2,0]],[[0,0,1,1],[1,3,2,2],[1,2,3,2],[1,3,2,0]],[[0,0,1,1],[1,3,2,2],[1,2,3,2],[1,2,3,0]],[[0,0,1,2],[1,3,2,2],[1,3,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,3],[1,3,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,4,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,1,3],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,1,2],[2,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,1,2],[1,3,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,1,2],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[1,3,1,2],[1,2,2,2]],[[0,0,1,1],[1,3,2,2],[1,4,2,1],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,2,1],[2,2,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,2,1],[1,3,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,2,1],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[1,3,2,1],[1,2,2,2]],[[0,0,1,2],[1,3,2,2],[1,3,2,2],[1,1,2,1]],[[0,0,1,1],[1,3,2,3],[1,3,2,2],[1,1,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,2,3],[1,1,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,2,2],[1,1,3,1]],[[0,0,1,1],[1,3,2,2],[1,3,2,2],[1,1,2,2]],[[0,0,1,1],[1,3,2,2],[1,4,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[1,3,2,2],[2,2,2,0]],[[0,0,1,1],[1,3,2,2],[1,3,2,2],[1,3,2,0]],[[0,0,1,1],[1,3,2,2],[1,3,2,2],[1,2,3,0]],[[0,0,1,1],[1,3,2,2],[1,4,3,1],[1,1,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,4,1],[1,1,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,1],[1,1,3,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,1],[1,1,2,2]],[[0,0,1,1],[1,3,2,2],[1,4,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[1,3,4,1],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,1],[2,2,1,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,1],[1,3,1,1]],[[0,0,1,2],[1,3,2,2],[1,3,3,2],[1,0,2,1]],[[0,0,1,1],[1,3,2,3],[1,3,3,2],[1,0,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,4,2],[1,0,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,3],[1,0,2,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,2],[1,0,2,2]],[[0,0,1,2],[1,3,2,2],[1,3,3,2],[1,1,1,1]],[[0,0,1,1],[1,3,2,3],[1,3,3,2],[1,1,1,1]],[[0,0,1,1],[1,3,2,2],[1,4,3,2],[1,1,1,1]],[[0,0,1,1],[1,3,2,2],[1,3,4,2],[1,1,1,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,3],[1,1,1,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,2],[1,1,1,2]],[[0,0,1,2],[1,3,2,2],[1,3,3,2],[1,1,2,0]],[[0,0,1,1],[1,3,2,3],[1,3,3,2],[1,1,2,0]],[[0,0,1,1],[1,3,2,2],[1,4,3,2],[1,1,2,0]],[[0,0,1,1],[1,3,2,2],[1,3,4,2],[1,1,2,0]],[[0,0,1,1],[1,3,2,2],[1,3,3,3],[1,1,2,0]],[[0,0,1,1],[1,3,2,2],[1,3,3,2],[1,1,3,0]],[[0,0,1,2],[1,3,2,2],[1,3,3,2],[1,2,0,1]],[[0,0,1,1],[1,3,2,3],[1,3,3,2],[1,2,0,1]],[[0,0,1,1],[1,3,2,2],[1,4,3,2],[1,2,0,1]],[[0,0,1,1],[1,3,2,2],[1,3,4,2],[1,2,0,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,3],[1,2,0,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,2],[2,2,0,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,2],[1,3,0,1]],[[0,0,1,1],[1,3,2,2],[1,3,3,2],[1,2,0,2]],[[0,0,1,2],[1,3,2,2],[1,3,3,2],[1,2,1,0]],[[0,0,1,1],[1,3,2,3],[1,3,3,2],[1,2,1,0]],[[0,0,1,1],[1,3,2,2],[1,4,3,2],[1,2,1,0]],[[0,0,1,1],[1,3,2,2],[1,3,4,2],[1,2,1,0]],[[0,0,1,1],[1,3,2,2],[1,3,3,3],[1,2,1,0]],[[0,0,1,1],[1,3,2,2],[1,3,3,2],[2,2,1,0]],[[0,0,1,1],[1,3,2,2],[1,3,3,2],[1,3,1,0]],[[0,0,1,1],[1,3,2,3],[2,0,3,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,0,3,3],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,0,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[2,0,3,2],[1,2,2,2]],[[0,0,1,2],[1,3,2,2],[2,1,2,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,3],[2,1,2,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[3,1,2,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,1,2,3],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,1,2,2],[2,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,1,2,2],[1,3,2,1]],[[0,0,1,1],[1,3,2,2],[2,1,2,2],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[2,1,2,2],[1,2,2,2]],[[0,0,1,1],[1,3,2,2],[3,1,3,1],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,1,4,1],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,1,3,1],[2,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,1,3,1],[1,3,2,1]],[[0,0,1,1],[1,3,2,2],[2,1,3,1],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[2,1,3,1],[1,2,2,2]],[[0,0,1,1],[1,3,2,3],[2,1,3,2],[0,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,1,3,3],[0,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,1,3,2],[0,2,3,1]],[[0,0,1,1],[1,3,2,2],[2,1,3,2],[0,2,2,2]],[[0,0,1,2],[1,3,2,2],[2,1,3,2],[1,2,1,1]],[[0,0,1,1],[1,3,2,3],[2,1,3,2],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[2,1,4,2],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[2,1,3,3],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[2,1,3,2],[1,2,1,2]],[[0,0,1,2],[1,3,2,2],[2,1,3,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,3],[2,1,3,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[3,1,3,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[2,1,4,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[2,1,3,3],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[2,1,3,2],[2,2,2,0]],[[0,0,1,1],[1,3,2,2],[2,1,3,2],[1,3,2,0]],[[0,0,1,1],[1,3,2,2],[2,1,3,2],[1,2,3,0]],[[0,0,1,2],[1,3,2,2],[2,2,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,3],[2,2,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[3,2,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,1,3],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,1,2],[2,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,1,2],[1,3,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,1,2],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[2,2,1,2],[1,2,2,2]],[[0,0,1,1],[1,3,2,2],[3,2,2,1],[1,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,2,1],[2,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,2,1],[1,3,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,2,1],[1,2,3,1]],[[0,0,1,1],[1,3,2,2],[2,2,2,1],[1,2,2,2]],[[0,0,1,2],[1,3,2,2],[2,2,2,2],[0,2,2,1]],[[0,0,1,1],[1,3,2,3],[2,2,2,2],[0,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,2,3],[0,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,2,2],[0,3,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,2,2],[0,2,3,1]],[[0,0,1,1],[1,3,2,2],[2,2,2,2],[0,2,2,2]],[[0,0,1,1],[1,3,2,2],[3,2,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,2,2],[2,2,2,2],[2,2,2,0]],[[0,0,1,1],[1,3,2,2],[2,2,2,2],[1,3,2,0]],[[0,0,1,1],[1,3,2,2],[2,2,2,2],[1,2,3,0]],[[0,0,1,1],[1,3,2,2],[2,2,4,1],[0,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,3,1],[0,3,2,1]],[[0,0,1,1],[1,3,2,2],[2,2,3,1],[0,2,3,1]],[[0,0,1,1],[1,3,2,2],[2,2,3,1],[0,2,2,2]],[[0,0,1,1],[1,3,2,2],[3,2,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,2,2],[2,2,3,1],[2,2,1,1]],[[0,0,1,1],[1,3,2,2],[2,2,3,1],[1,3,1,1]],[[0,0,1,2],[1,3,2,2],[2,2,3,2],[0,2,1,1]],[[0,0,1,1],[1,3,2,3],[2,2,3,2],[0,2,1,1]],[[0,0,1,1],[1,3,2,2],[2,2,4,2],[0,2,1,1]],[[0,0,1,1],[1,3,2,2],[2,2,3,3],[0,2,1,1]],[[0,0,1,1],[1,3,2,2],[2,2,3,2],[0,2,1,2]],[[0,0,1,2],[1,3,2,2],[2,2,3,2],[0,2,2,0]],[[0,0,1,1],[1,3,2,3],[2,2,3,2],[0,2,2,0]],[[0,0,1,1],[1,3,2,2],[2,2,4,2],[0,2,2,0]],[[0,0,1,1],[1,3,2,2],[2,2,3,3],[0,2,2,0]],[[0,0,1,1],[1,3,2,2],[2,2,3,2],[0,3,2,0]],[[0,0,1,1],[1,3,2,2],[2,2,3,2],[0,2,3,0]],[[0,0,1,1],[1,3,2,2],[3,2,3,2],[1,2,0,1]],[[0,0,1,1],[1,3,2,2],[2,2,3,2],[2,2,0,1]],[[0,0,1,1],[1,3,2,2],[2,2,3,2],[1,3,0,1]],[[0,0,1,1],[1,3,2,2],[3,2,3,2],[1,2,1,0]],[[0,0,1,1],[1,3,2,2],[2,2,3,2],[2,2,1,0]],[[0,0,1,1],[1,3,2,2],[2,2,3,2],[1,3,1,0]],[[0,0,1,2],[1,3,2,2],[2,3,1,2],[0,2,2,1]],[[0,0,1,1],[1,3,2,3],[2,3,1,2],[0,2,2,1]],[[0,0,1,1],[1,3,2,2],[3,3,1,2],[0,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,4,1,2],[0,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,1,3],[0,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,1,2],[0,3,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,1,2],[0,2,3,1]],[[0,0,1,1],[1,3,2,2],[2,3,1,2],[0,2,2,2]],[[0,0,1,1],[1,3,2,2],[3,3,1,2],[1,1,2,1]],[[0,0,1,1],[1,3,2,2],[2,4,1,2],[1,1,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,1,2],[2,1,2,1]],[[0,0,1,1],[1,3,2,2],[3,3,2,1],[0,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,4,2,1],[0,2,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,2,1],[0,3,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,2,1],[0,2,3,1]],[[0,0,1,1],[1,3,2,2],[2,3,2,1],[0,2,2,2]],[[0,0,1,1],[1,3,2,2],[3,3,2,1],[1,1,2,1]],[[0,0,1,1],[1,3,2,2],[2,4,2,1],[1,1,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,2,1],[2,1,2,1]],[[0,0,1,2],[1,3,2,2],[2,3,2,2],[0,1,2,1]],[[0,0,1,1],[1,3,2,3],[2,3,2,2],[0,1,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,2,3],[0,1,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,2,2],[0,1,3,1]],[[0,0,1,1],[1,3,2,2],[2,3,2,2],[0,1,2,2]],[[0,0,1,1],[1,3,2,2],[3,3,2,2],[0,2,2,0]],[[0,0,1,1],[1,3,2,2],[2,4,2,2],[0,2,2,0]],[[0,0,1,1],[1,3,2,2],[2,3,2,2],[0,3,2,0]],[[0,0,1,1],[1,3,2,2],[2,3,2,2],[0,2,3,0]],[[0,0,1,2],[1,3,2,2],[2,3,2,2],[1,0,2,1]],[[0,0,1,1],[1,3,2,3],[2,3,2,2],[1,0,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,2,3],[1,0,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,2,2],[1,0,3,1]],[[0,0,1,1],[1,3,2,2],[2,3,2,2],[1,0,2,2]],[[0,0,1,1],[1,3,2,2],[3,3,2,2],[1,1,2,0]],[[0,0,1,1],[1,3,2,2],[2,4,2,2],[1,1,2,0]],[[0,0,1,1],[1,3,2,2],[2,3,2,2],[2,1,2,0]],[[0,0,1,1],[1,3,2,2],[3,3,3,1],[0,1,2,1]],[[0,0,1,1],[1,3,2,2],[2,4,3,1],[0,1,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,4,1],[0,1,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,1],[0,1,3,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,1],[0,1,2,2]],[[0,0,1,1],[1,3,2,2],[3,3,3,1],[0,2,1,1]],[[0,0,1,1],[1,3,2,2],[2,4,3,1],[0,2,1,1]],[[0,0,1,1],[1,3,2,2],[2,3,4,1],[0,2,1,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,1],[0,3,1,1]],[[0,0,1,1],[1,3,2,2],[3,3,3,1],[1,0,2,1]],[[0,0,1,1],[1,3,2,2],[2,4,3,1],[1,0,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,4,1],[1,0,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,1],[2,0,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,1],[1,0,3,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,1],[1,0,2,2]],[[0,0,1,1],[1,3,2,2],[3,3,3,1],[1,1,1,1]],[[0,0,1,1],[1,3,2,2],[2,4,3,1],[1,1,1,1]],[[0,0,1,1],[1,3,2,2],[2,3,4,1],[1,1,1,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,1],[2,1,1,1]],[[0,0,1,2],[1,3,2,2],[2,3,3,2],[0,0,2,1]],[[0,0,1,1],[1,3,2,3],[2,3,3,2],[0,0,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,4,2],[0,0,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,3],[0,0,2,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[0,0,2,2]],[[0,0,1,2],[1,3,2,2],[2,3,3,2],[0,1,1,1]],[[0,0,1,1],[1,3,2,3],[2,3,3,2],[0,1,1,1]],[[0,0,1,1],[1,3,2,2],[3,3,3,2],[0,1,1,1]],[[0,0,1,1],[1,3,2,2],[2,4,3,2],[0,1,1,1]],[[0,0,1,1],[1,3,2,2],[2,3,4,2],[0,1,1,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,3],[0,1,1,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[0,1,1,2]],[[0,0,1,2],[1,3,2,2],[2,3,3,2],[0,1,2,0]],[[0,0,1,1],[1,3,2,3],[2,3,3,2],[0,1,2,0]],[[0,0,1,1],[1,3,2,2],[3,3,3,2],[0,1,2,0]],[[0,0,1,1],[1,3,2,2],[2,4,3,2],[0,1,2,0]],[[0,0,1,1],[1,3,2,2],[2,3,4,2],[0,1,2,0]],[[0,0,1,1],[1,3,2,2],[2,3,3,3],[0,1,2,0]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[0,1,3,0]],[[0,0,1,2],[1,3,2,2],[2,3,3,2],[0,2,0,1]],[[0,0,1,1],[1,3,2,3],[2,3,3,2],[0,2,0,1]],[[0,0,1,1],[1,3,2,2],[3,3,3,2],[0,2,0,1]],[[0,0,1,1],[1,3,2,2],[2,4,3,2],[0,2,0,1]],[[0,0,1,1],[1,3,2,2],[2,3,4,2],[0,2,0,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,3],[0,2,0,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[0,3,0,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[0,2,0,2]],[[0,0,1,2],[1,3,2,2],[2,3,3,2],[0,2,1,0]],[[0,0,1,1],[1,3,2,3],[2,3,3,2],[0,2,1,0]],[[0,0,1,1],[1,3,2,2],[3,3,3,2],[0,2,1,0]],[[0,0,1,1],[1,3,2,2],[2,4,3,2],[0,2,1,0]],[[0,0,1,1],[1,3,2,2],[2,3,4,2],[0,2,1,0]],[[0,0,1,1],[1,3,2,2],[2,3,3,3],[0,2,1,0]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[0,3,1,0]],[[0,0,1,2],[1,3,2,2],[2,3,3,2],[1,0,1,1]],[[0,0,1,1],[1,3,2,3],[2,3,3,2],[1,0,1,1]],[[0,0,1,1],[1,3,2,2],[3,3,3,2],[1,0,1,1]],[[0,0,1,1],[1,3,2,2],[2,4,3,2],[1,0,1,1]],[[0,0,1,1],[1,3,2,2],[2,3,4,2],[1,0,1,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,3],[1,0,1,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[2,0,1,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[1,0,1,2]],[[0,0,1,2],[1,3,2,2],[2,3,3,2],[1,0,2,0]],[[0,0,1,1],[1,3,2,3],[2,3,3,2],[1,0,2,0]],[[0,0,1,1],[1,3,2,2],[3,3,3,2],[1,0,2,0]],[[0,0,1,1],[1,3,2,2],[2,4,3,2],[1,0,2,0]],[[0,0,1,1],[1,3,2,2],[2,3,4,2],[1,0,2,0]],[[0,0,1,1],[1,3,2,2],[2,3,3,3],[1,0,2,0]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[2,0,2,0]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[1,0,3,0]],[[0,0,1,2],[1,3,2,2],[2,3,3,2],[1,1,0,1]],[[0,0,1,1],[1,3,2,3],[2,3,3,2],[1,1,0,1]],[[0,0,1,1],[1,3,2,2],[3,3,3,2],[1,1,0,1]],[[0,0,1,1],[1,3,2,2],[2,4,3,2],[1,1,0,1]],[[0,0,1,1],[1,3,2,2],[2,3,4,2],[1,1,0,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,3],[1,1,0,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[2,1,0,1]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[1,1,0,2]],[[0,0,1,2],[1,3,2,2],[2,3,3,2],[1,1,1,0]],[[0,0,1,1],[1,3,2,3],[2,3,3,2],[1,1,1,0]],[[0,0,1,1],[1,3,2,2],[3,3,3,2],[1,1,1,0]],[[0,0,1,1],[1,3,2,2],[2,4,3,2],[1,1,1,0]],[[0,0,1,1],[1,3,2,2],[2,3,4,2],[1,1,1,0]],[[0,0,1,1],[1,3,2,2],[2,3,3,3],[1,1,1,0]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[2,1,1,0]],[[0,0,1,1],[1,3,2,2],[3,3,3,2],[1,2,0,0]],[[0,0,1,1],[1,3,2,2],[2,4,3,2],[1,2,0,0]],[[0,0,1,1],[1,3,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[3,3,3,2],[2,1,1,0],[1,2,0,0]],[[1,2,2,2],[2,3,3,2],[2,1,1,0],[1,2,0,0]],[[1,2,3,1],[2,3,3,2],[2,1,1,0],[1,2,0,0]],[[1,3,2,1],[2,3,3,2],[2,1,1,0],[1,2,0,0]],[[2,2,2,1],[2,3,3,2],[2,1,1,0],[1,2,0,0]],[[1,2,2,1],[3,3,3,2],[2,1,1,0],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[2,1,1,0],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[2,1,1,0],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[2,1,1,0],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[2,1,1,0],[1,1,1,0]],[[1,2,2,1],[3,3,3,2],[2,1,1,0],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[2,1,1,0],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[2,1,1,0],[1,1,0,1]],[[0,0,1,1],[1,3,3,0],[0,3,4,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,0],[0,3,3,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,0],[0,3,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,0],[0,3,3,2],[1,2,2,2]],[[0,0,1,1],[1,3,3,0],[1,2,4,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,0],[1,2,3,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,0],[1,2,3,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,0],[1,2,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,0],[1,2,3,2],[1,2,2,2]],[[0,0,1,1],[1,3,3,0],[1,4,2,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,0],[1,3,2,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,0],[1,3,2,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,0],[1,3,2,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,0],[1,3,2,2],[1,2,2,2]],[[0,0,1,1],[1,3,3,0],[1,4,3,2],[1,1,2,1]],[[0,0,1,1],[1,3,3,0],[1,3,4,2],[1,1,2,1]],[[0,0,1,1],[1,3,3,0],[1,3,3,2],[1,1,3,1]],[[0,0,1,1],[1,3,3,0],[1,3,3,2],[1,1,2,2]],[[0,0,1,1],[1,3,3,0],[1,4,3,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,0],[1,3,4,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,0],[1,3,3,2],[2,2,1,1]],[[0,0,1,1],[1,3,3,0],[1,3,3,2],[1,3,1,1]],[[0,0,1,1],[1,3,3,0],[3,1,3,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,0],[2,1,4,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,0],[2,1,3,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,0],[2,1,3,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,0],[2,1,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,0],[2,1,3,2],[1,2,2,2]],[[0,0,1,1],[1,3,3,0],[3,2,2,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,0],[2,2,2,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,0],[2,2,2,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,0],[2,2,2,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,0],[2,2,2,2],[1,2,2,2]],[[0,0,1,1],[1,3,3,0],[2,2,4,2],[0,2,2,1]],[[0,0,1,1],[1,3,3,0],[2,2,3,2],[0,3,2,1]],[[0,0,1,1],[1,3,3,0],[2,2,3,2],[0,2,3,1]],[[0,0,1,1],[1,3,3,0],[2,2,3,2],[0,2,2,2]],[[0,0,1,1],[1,3,3,0],[3,2,3,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,0],[2,2,3,2],[2,2,1,1]],[[0,0,1,1],[1,3,3,0],[2,2,3,2],[1,3,1,1]],[[0,0,1,1],[1,3,3,0],[3,3,2,2],[0,2,2,1]],[[0,0,1,1],[1,3,3,0],[2,4,2,2],[0,2,2,1]],[[0,0,1,1],[1,3,3,0],[2,3,2,2],[0,3,2,1]],[[0,0,1,1],[1,3,3,0],[2,3,2,2],[0,2,3,1]],[[0,0,1,1],[1,3,3,0],[2,3,2,2],[0,2,2,2]],[[0,0,1,1],[1,3,3,0],[3,3,2,2],[1,1,2,1]],[[0,0,1,1],[1,3,3,0],[2,4,2,2],[1,1,2,1]],[[0,0,1,1],[1,3,3,0],[2,3,2,2],[2,1,2,1]],[[0,0,1,1],[1,3,3,0],[3,3,3,2],[0,1,2,1]],[[0,0,1,1],[1,3,3,0],[2,4,3,2],[0,1,2,1]],[[0,0,1,1],[1,3,3,0],[2,3,4,2],[0,1,2,1]],[[0,0,1,1],[1,3,3,0],[2,3,3,2],[0,1,3,1]],[[0,0,1,1],[1,3,3,0],[2,3,3,2],[0,1,2,2]],[[0,0,1,1],[1,3,3,0],[3,3,3,2],[0,2,1,1]],[[0,0,1,1],[1,3,3,0],[2,4,3,2],[0,2,1,1]],[[0,0,1,1],[1,3,3,0],[2,3,4,2],[0,2,1,1]],[[0,0,1,1],[1,3,3,0],[2,3,3,2],[0,3,1,1]],[[0,0,1,1],[1,3,3,0],[3,3,3,2],[1,0,2,1]],[[0,0,1,1],[1,3,3,0],[2,4,3,2],[1,0,2,1]],[[0,0,1,1],[1,3,3,0],[2,3,4,2],[1,0,2,1]],[[0,0,1,1],[1,3,3,0],[2,3,3,2],[2,0,2,1]],[[0,0,1,1],[1,3,3,0],[2,3,3,2],[1,0,3,1]],[[0,0,1,1],[1,3,3,0],[2,3,3,2],[1,0,2,2]],[[0,0,1,1],[1,3,3,0],[3,3,3,2],[1,1,1,1]],[[0,0,1,1],[1,3,3,0],[2,4,3,2],[1,1,1,1]],[[0,0,1,1],[1,3,3,0],[2,3,4,2],[1,1,1,1]],[[0,0,1,1],[1,3,3,0],[2,3,3,2],[2,1,1,1]],[[1,3,2,1],[2,3,3,2],[2,1,1,0],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[2,1,1,0],[1,1,0,1]],[[0,0,1,1],[1,3,3,1],[0,2,3,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[0,2,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[0,2,3,2],[1,2,2,2]],[[0,0,1,1],[1,3,3,1],[0,3,2,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[0,3,2,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[0,3,2,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[0,3,2,2],[1,2,2,2]],[[0,0,1,1],[1,3,4,1],[0,3,3,1],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[0,3,4,1],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[0,3,3,1],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[0,3,3,1],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[0,3,3,1],[1,2,2,2]],[[0,0,1,1],[1,3,4,1],[0,3,3,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[0,3,4,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[0,3,3,3],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[0,3,3,2],[1,2,1,2]],[[0,0,1,1],[1,3,4,1],[0,3,3,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[0,3,4,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[0,3,3,3],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[0,3,3,2],[1,3,2,0]],[[0,0,1,1],[1,3,3,1],[0,3,3,2],[1,2,3,0]],[[0,0,1,1],[1,3,3,1],[1,1,3,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,1,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[1,1,3,2],[1,2,2,2]],[[0,0,1,1],[1,3,3,1],[1,2,2,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,2,2,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,2,2,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[1,2,2,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[1,2,2,2],[1,2,2,2]],[[0,0,1,1],[1,3,4,1],[1,2,3,1],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,2,4,1],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,2,3,1],[2,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,2,3,1],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[1,2,3,1],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[1,2,3,1],[1,2,2,2]],[[0,0,1,1],[1,3,4,1],[1,2,3,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[1,2,4,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[1,2,3,3],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[1,2,3,2],[1,2,1,2]],[[0,0,1,1],[1,3,4,1],[1,2,3,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[1,2,4,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[1,2,3,3],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[1,2,3,2],[2,2,2,0]],[[0,0,1,1],[1,3,3,1],[1,2,3,2],[1,3,2,0]],[[0,0,1,1],[1,3,3,1],[1,2,3,2],[1,2,3,0]],[[0,0,1,1],[1,3,3,1],[1,4,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,1,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,1,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,1,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,1,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[1,3,1,2],[1,2,2,2]],[[0,0,1,1],[1,3,3,1],[1,4,2,1],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,2,1],[2,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,2,1],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,2,1],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[1,3,2,1],[1,2,2,2]],[[0,0,1,1],[1,3,3,1],[1,3,2,3],[1,1,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,2,2],[1,1,3,1]],[[0,0,1,1],[1,3,3,1],[1,3,2,2],[1,1,2,2]],[[0,0,1,1],[1,3,3,1],[1,4,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[1,3,2,2],[2,2,2,0]],[[0,0,1,1],[1,3,3,1],[1,3,2,2],[1,3,2,0]],[[0,0,1,1],[1,3,3,1],[1,3,2,2],[1,2,3,0]],[[0,0,1,1],[1,3,3,1],[1,4,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,0],[2,2,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,0],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,0],[1,2,3,1]],[[0,0,1,1],[1,3,4,1],[1,3,3,1],[1,1,2,1]],[[0,0,1,1],[1,3,3,1],[1,4,3,1],[1,1,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,4,1],[1,1,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,1],[1,1,3,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,1],[1,1,2,2]],[[0,0,1,1],[1,3,4,1],[1,3,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[1,4,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[1,3,4,1],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,1],[2,2,1,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,1],[1,3,1,1]],[[0,0,1,1],[1,3,4,1],[1,3,3,2],[1,0,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,4,2],[1,0,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,3],[1,0,2,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,2],[1,0,2,2]],[[0,0,1,1],[1,3,4,1],[1,3,3,2],[1,1,1,1]],[[0,0,1,1],[1,3,3,1],[1,4,3,2],[1,1,1,1]],[[0,0,1,1],[1,3,3,1],[1,3,4,2],[1,1,1,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,3],[1,1,1,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,2],[1,1,1,2]],[[0,0,1,1],[1,3,4,1],[1,3,3,2],[1,1,2,0]],[[0,0,1,1],[1,3,3,1],[1,4,3,2],[1,1,2,0]],[[0,0,1,1],[1,3,3,1],[1,3,4,2],[1,1,2,0]],[[0,0,1,1],[1,3,3,1],[1,3,3,3],[1,1,2,0]],[[0,0,1,1],[1,3,3,1],[1,3,3,2],[1,1,3,0]],[[0,0,1,1],[1,3,4,1],[1,3,3,2],[1,2,0,1]],[[0,0,1,1],[1,3,3,1],[1,4,3,2],[1,2,0,1]],[[0,0,1,1],[1,3,3,1],[1,3,4,2],[1,2,0,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,3],[1,2,0,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,2],[2,2,0,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,2],[1,3,0,1]],[[0,0,1,1],[1,3,3,1],[1,3,3,2],[1,2,0,2]],[[0,0,1,1],[1,3,4,1],[1,3,3,2],[1,2,1,0]],[[0,0,1,1],[1,3,3,1],[1,4,3,2],[1,2,1,0]],[[0,0,1,1],[1,3,3,1],[1,3,4,2],[1,2,1,0]],[[0,0,1,1],[1,3,3,1],[1,3,3,3],[1,2,1,0]],[[0,0,1,1],[1,3,3,1],[1,3,3,2],[2,2,1,0]],[[0,0,1,1],[1,3,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,3,2],[2,1,1,0],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[2,1,1,0],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[2,1,1,0],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[2,1,1,0],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[2,1,1,0],[1,0,2,0]],[[1,2,2,1],[3,3,3,2],[2,1,1,0],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[2,1,1,0],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[2,1,1,0],[1,0,1,1]],[[0,0,1,1],[1,3,3,1],[2,0,3,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,0,3,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[2,0,3,2],[1,2,2,2]],[[0,0,1,1],[1,3,3,1],[3,1,2,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,1,2,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,1,2,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,1,2,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[2,1,2,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[2,1,2,2],[1,2,2,2]],[[0,0,1,1],[1,3,4,1],[2,1,3,1],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[3,1,3,1],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,1,4,1],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,1,3,1],[2,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,1,3,1],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[2,1,3,1],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[2,1,3,1],[1,2,2,2]],[[0,0,1,1],[1,3,3,1],[2,1,3,3],[0,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,1,3,2],[0,2,3,1]],[[0,0,1,1],[1,3,3,1],[2,1,3,2],[0,2,2,2]],[[0,0,1,1],[1,3,4,1],[2,1,3,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[2,1,4,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[2,1,3,3],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[2,1,3,2],[1,2,1,2]],[[0,0,1,1],[1,3,4,1],[2,1,3,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[3,1,3,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[2,1,4,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[2,1,3,3],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[2,1,3,2],[2,2,2,0]],[[0,0,1,1],[1,3,3,1],[2,1,3,2],[1,3,2,0]],[[0,0,1,1],[1,3,3,1],[2,1,3,2],[1,2,3,0]],[[0,0,1,1],[1,3,3,1],[3,2,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,1,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,1,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,1,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,1,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[2,2,1,2],[1,2,2,2]],[[0,0,1,1],[1,3,3,1],[3,2,2,1],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,2,1],[2,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,2,1],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,2,1],[1,2,3,1]],[[0,0,1,1],[1,3,3,1],[2,2,2,1],[1,2,2,2]],[[0,0,1,1],[1,3,3,1],[2,2,2,3],[0,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,2,2],[0,3,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,2,2],[0,2,3,1]],[[0,0,1,1],[1,3,3,1],[2,2,2,2],[0,2,2,2]],[[0,0,1,1],[1,3,3,1],[3,2,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,1],[2,2,2,2],[2,2,2,0]],[[0,0,1,1],[1,3,3,1],[2,2,2,2],[1,3,2,0]],[[0,0,1,1],[1,3,3,1],[2,2,2,2],[1,2,3,0]],[[0,0,1,1],[1,3,3,1],[3,2,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,0],[2,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,0],[1,3,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,0],[1,2,3,1]],[[0,0,1,1],[1,3,4,1],[2,2,3,1],[0,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,4,1],[0,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,1],[0,3,2,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,1],[0,2,3,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,1],[0,2,2,2]],[[0,0,1,1],[1,3,3,1],[3,2,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,1],[2,2,1,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,1],[1,3,1,1]],[[0,0,1,1],[1,3,4,1],[2,2,3,2],[0,2,1,1]],[[0,0,1,1],[1,3,3,1],[2,2,4,2],[0,2,1,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,3],[0,2,1,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,2],[0,2,1,2]],[[0,0,1,1],[1,3,4,1],[2,2,3,2],[0,2,2,0]],[[0,0,1,1],[1,3,3,1],[2,2,4,2],[0,2,2,0]],[[0,0,1,1],[1,3,3,1],[2,2,3,3],[0,2,2,0]],[[0,0,1,1],[1,3,3,1],[2,2,3,2],[0,3,2,0]],[[0,0,1,1],[1,3,3,1],[2,2,3,2],[0,2,3,0]],[[0,0,1,1],[1,3,3,1],[3,2,3,2],[1,2,0,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,2],[2,2,0,1]],[[0,0,1,1],[1,3,3,1],[2,2,3,2],[1,3,0,1]],[[0,0,1,1],[1,3,3,1],[3,2,3,2],[1,2,1,0]],[[0,0,1,1],[1,3,3,1],[2,2,3,2],[2,2,1,0]],[[0,0,1,1],[1,3,3,1],[2,2,3,2],[1,3,1,0]],[[1,3,2,1],[2,3,3,2],[2,1,1,0],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[2,1,1,0],[1,0,1,1]],[[0,0,1,1],[1,3,3,1],[3,3,1,2],[0,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,4,1,2],[0,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,1,3],[0,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,1,2],[0,3,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,1,2],[0,2,3,1]],[[0,0,1,1],[1,3,3,1],[2,3,1,2],[0,2,2,2]],[[0,0,1,1],[1,3,3,1],[3,3,1,2],[1,1,2,1]],[[0,0,1,1],[1,3,3,1],[2,4,1,2],[1,1,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,1,2],[2,1,2,1]],[[0,0,1,1],[1,3,3,1],[3,3,2,1],[0,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,4,2,1],[0,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,2,1],[0,3,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,2,1],[0,2,3,1]],[[0,0,1,1],[1,3,3,1],[2,3,2,1],[0,2,2,2]],[[0,0,1,1],[1,3,3,1],[3,3,2,1],[1,1,2,1]],[[0,0,1,1],[1,3,3,1],[2,4,2,1],[1,1,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,2,1],[2,1,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,2,3],[0,1,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,2,2],[0,1,3,1]],[[0,0,1,1],[1,3,3,1],[2,3,2,2],[0,1,2,2]],[[0,0,1,1],[1,3,3,1],[3,3,2,2],[0,2,2,0]],[[0,0,1,1],[1,3,3,1],[2,4,2,2],[0,2,2,0]],[[0,0,1,1],[1,3,3,1],[2,3,2,2],[0,3,2,0]],[[0,0,1,1],[1,3,3,1],[2,3,2,2],[0,2,3,0]],[[0,0,1,1],[1,3,3,1],[2,3,2,3],[1,0,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,2,2],[1,0,3,1]],[[0,0,1,1],[1,3,3,1],[2,3,2,2],[1,0,2,2]],[[0,0,1,1],[1,3,3,1],[3,3,2,2],[1,1,2,0]],[[0,0,1,1],[1,3,3,1],[2,4,2,2],[1,1,2,0]],[[0,0,1,1],[1,3,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[3,3,3,2],[2,1,1,0],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[2,1,1,0],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[2,1,1,0],[0,2,1,0]],[[0,0,1,1],[1,3,3,1],[3,3,3,0],[0,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,4,3,0],[0,2,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,0],[0,3,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,0],[0,2,3,1]],[[0,0,1,1],[1,3,3,1],[3,3,3,0],[1,1,2,1]],[[0,0,1,1],[1,3,3,1],[2,4,3,0],[1,1,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,0],[2,1,2,1]],[[0,0,1,1],[1,3,4,1],[2,3,3,1],[0,1,2,1]],[[0,0,1,1],[1,3,3,1],[3,3,3,1],[0,1,2,1]],[[0,0,1,1],[1,3,3,1],[2,4,3,1],[0,1,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,4,1],[0,1,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,1],[0,1,3,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,1],[0,1,2,2]],[[0,0,1,1],[1,3,4,1],[2,3,3,1],[0,2,1,1]],[[0,0,1,1],[1,3,3,1],[3,3,3,1],[0,2,1,1]],[[0,0,1,1],[1,3,3,1],[2,4,3,1],[0,2,1,1]],[[0,0,1,1],[1,3,3,1],[2,3,4,1],[0,2,1,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,1],[0,3,1,1]],[[0,0,1,1],[1,3,4,1],[2,3,3,1],[1,0,2,1]],[[0,0,1,1],[1,3,3,1],[3,3,3,1],[1,0,2,1]],[[0,0,1,1],[1,3,3,1],[2,4,3,1],[1,0,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,4,1],[1,0,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,1],[2,0,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,1],[1,0,3,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,1],[1,0,2,2]],[[0,0,1,1],[1,3,4,1],[2,3,3,1],[1,1,1,1]],[[0,0,1,1],[1,3,3,1],[3,3,3,1],[1,1,1,1]],[[0,0,1,1],[1,3,3,1],[2,4,3,1],[1,1,1,1]],[[0,0,1,1],[1,3,3,1],[2,3,4,1],[1,1,1,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,1],[2,1,1,1]],[[0,0,1,1],[1,3,3,1],[3,3,3,1],[1,2,0,1]],[[0,0,1,1],[1,3,3,1],[2,4,3,1],[1,2,0,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,1],[2,2,0,1]],[[1,3,2,1],[2,3,3,2],[2,1,1,0],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[2,1,1,0],[0,2,1,0]],[[1,2,2,1],[3,3,3,2],[2,1,1,0],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[2,1,1,0],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[2,1,1,0],[0,2,0,1]],[[1,3,2,1],[2,3,3,2],[2,1,1,0],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[2,1,1,0],[0,2,0,1]],[[0,0,1,1],[1,3,4,1],[2,3,3,2],[0,0,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,4,2],[0,0,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,3],[0,0,2,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[0,0,2,2]],[[0,0,1,1],[1,3,4,1],[2,3,3,2],[0,1,1,1]],[[0,0,1,1],[1,3,3,1],[3,3,3,2],[0,1,1,1]],[[0,0,1,1],[1,3,3,1],[2,4,3,2],[0,1,1,1]],[[0,0,1,1],[1,3,3,1],[2,3,4,2],[0,1,1,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,3],[0,1,1,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[0,1,1,2]],[[0,0,1,1],[1,3,4,1],[2,3,3,2],[0,1,2,0]],[[0,0,1,1],[1,3,3,1],[3,3,3,2],[0,1,2,0]],[[0,0,1,1],[1,3,3,1],[2,4,3,2],[0,1,2,0]],[[0,0,1,1],[1,3,3,1],[2,3,4,2],[0,1,2,0]],[[0,0,1,1],[1,3,3,1],[2,3,3,3],[0,1,2,0]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[0,1,3,0]],[[0,0,1,1],[1,3,4,1],[2,3,3,2],[0,2,0,1]],[[0,0,1,1],[1,3,3,1],[3,3,3,2],[0,2,0,1]],[[0,0,1,1],[1,3,3,1],[2,4,3,2],[0,2,0,1]],[[0,0,1,1],[1,3,3,1],[2,3,4,2],[0,2,0,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,3],[0,2,0,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[0,3,0,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[0,2,0,2]],[[0,0,1,1],[1,3,4,1],[2,3,3,2],[0,2,1,0]],[[0,0,1,1],[1,3,3,1],[3,3,3,2],[0,2,1,0]],[[0,0,1,1],[1,3,3,1],[2,4,3,2],[0,2,1,0]],[[0,0,1,1],[1,3,3,1],[2,3,4,2],[0,2,1,0]],[[0,0,1,1],[1,3,3,1],[2,3,3,3],[0,2,1,0]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,3,3,2],[2,1,1,0],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[2,1,1,0],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[2,1,1,0],[0,1,2,0]],[[1,3,2,1],[2,3,3,2],[2,1,1,0],[0,1,2,0]],[[0,0,1,1],[1,3,4,1],[2,3,3,2],[1,0,1,1]],[[0,0,1,1],[1,3,3,1],[3,3,3,2],[1,0,1,1]],[[0,0,1,1],[1,3,3,1],[2,4,3,2],[1,0,1,1]],[[0,0,1,1],[1,3,3,1],[2,3,4,2],[1,0,1,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,3],[1,0,1,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[2,0,1,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[1,0,1,2]],[[0,0,1,1],[1,3,4,1],[2,3,3,2],[1,0,2,0]],[[0,0,1,1],[1,3,3,1],[3,3,3,2],[1,0,2,0]],[[0,0,1,1],[1,3,3,1],[2,4,3,2],[1,0,2,0]],[[0,0,1,1],[1,3,3,1],[2,3,4,2],[1,0,2,0]],[[0,0,1,1],[1,3,3,1],[2,3,3,3],[1,0,2,0]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[2,0,2,0]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[1,0,3,0]],[[0,0,1,1],[1,3,4,1],[2,3,3,2],[1,1,0,1]],[[0,0,1,1],[1,3,3,1],[3,3,3,2],[1,1,0,1]],[[0,0,1,1],[1,3,3,1],[2,4,3,2],[1,1,0,1]],[[0,0,1,1],[1,3,3,1],[2,3,4,2],[1,1,0,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,3],[1,1,0,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[2,1,0,1]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[1,1,0,2]],[[0,0,1,1],[1,3,4,1],[2,3,3,2],[1,1,1,0]],[[0,0,1,1],[1,3,3,1],[3,3,3,2],[1,1,1,0]],[[0,0,1,1],[1,3,3,1],[2,4,3,2],[1,1,1,0]],[[0,0,1,1],[1,3,3,1],[2,3,4,2],[1,1,1,0]],[[0,0,1,1],[1,3,3,1],[2,3,3,3],[1,1,1,0]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[2,1,1,0]],[[2,2,2,1],[2,3,3,2],[2,1,1,0],[0,1,2,0]],[[1,2,2,1],[3,3,3,2],[2,1,1,0],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[2,1,1,0],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[2,1,1,0],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[2,1,1,0],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[2,1,1,0],[0,1,1,1]],[[0,0,1,1],[1,3,3,1],[3,3,3,2],[1,2,0,0]],[[0,0,1,1],[1,3,3,1],[2,4,3,2],[1,2,0,0]],[[0,0,1,1],[1,3,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[3,3,3,2],[2,1,0,2],[1,1,0,0]],[[1,2,2,2],[2,3,3,2],[2,1,0,2],[1,1,0,0]],[[1,2,3,1],[2,3,3,2],[2,1,0,2],[1,1,0,0]],[[1,3,2,1],[2,3,3,2],[2,1,0,2],[1,1,0,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,2],[1,1,0,0]],[[0,0,1,2],[1,3,3,2],[0,3,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,4,2],[0,3,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,3],[0,3,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[0,3,1,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[0,3,1,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,2],[0,3,1,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,2],[0,3,1,2],[1,2,2,2]],[[0,0,1,2],[1,3,3,2],[0,3,2,2],[1,2,1,1]],[[0,0,1,1],[1,3,4,2],[0,3,2,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,3],[0,3,2,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[0,3,2,3],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[0,3,2,2],[1,2,1,2]],[[0,0,1,2],[1,3,3,2],[0,3,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,4,2],[0,3,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,3],[0,3,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[0,3,2,3],[1,2,2,0]],[[0,0,1,2],[1,3,3,2],[0,3,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,4,2],[0,3,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,3],[0,3,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[0,3,4,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[0,3,3,0],[1,3,2,1]],[[0,0,1,1],[1,3,3,2],[0,3,3,0],[1,2,3,1]],[[0,0,1,1],[1,3,3,2],[0,3,3,0],[1,2,2,2]],[[0,0,1,2],[1,3,3,2],[0,3,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,4,2],[0,3,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,3,3],[0,3,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[0,3,4,1],[1,2,1,1]],[[0,0,1,2],[1,3,3,2],[0,3,3,1],[1,2,2,0]],[[0,0,1,1],[1,3,4,2],[0,3,3,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,3],[0,3,3,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[0,3,4,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[0,3,3,1],[1,3,2,0]],[[0,0,1,1],[1,3,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,1],[3,3,3,2],[2,1,0,2],[1,0,1,0]],[[0,0,1,2],[1,3,3,2],[1,2,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,4,2],[1,2,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,3],[1,2,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,2,1,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,2,1,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,2,1,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,2],[1,2,1,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,2],[1,2,1,2],[1,2,2,2]],[[0,0,1,2],[1,3,3,2],[1,2,2,2],[1,2,1,1]],[[0,0,1,1],[1,3,4,2],[1,2,2,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,3],[1,2,2,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[1,2,2,3],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[1,2,2,2],[1,2,1,2]],[[0,0,1,2],[1,3,3,2],[1,2,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,4,2],[1,2,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,3],[1,2,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[1,2,2,3],[1,2,2,0]],[[0,0,1,2],[1,3,3,2],[1,2,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,4,2],[1,2,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,3],[1,2,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,2,4,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,2,3,0],[2,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,2,3,0],[1,3,2,1]],[[0,0,1,1],[1,3,3,2],[1,2,3,0],[1,2,3,1]],[[0,0,1,1],[1,3,3,2],[1,2,3,0],[1,2,2,2]],[[0,0,1,2],[1,3,3,2],[1,2,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,4,2],[1,2,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,3,3],[1,2,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[1,2,4,1],[1,2,1,1]],[[0,0,1,2],[1,3,3,2],[1,2,3,1],[1,2,2,0]],[[0,0,1,1],[1,3,4,2],[1,2,3,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,3],[1,2,3,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[1,2,4,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[1,2,3,1],[2,2,2,0]],[[0,0,1,1],[1,3,3,2],[1,2,3,1],[1,3,2,0]],[[0,0,1,1],[1,3,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,2],[2,3,3,2],[2,1,0,2],[1,0,1,0]],[[1,2,3,1],[2,3,3,2],[2,1,0,2],[1,0,1,0]],[[1,3,2,1],[2,3,3,2],[2,1,0,2],[1,0,1,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,2],[1,0,1,0]],[[0,0,1,2],[1,3,3,2],[1,3,0,2],[1,2,2,1]],[[0,0,1,1],[1,3,4,2],[1,3,0,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,3],[1,3,0,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,4,0,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,0,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,0,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,0,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,0,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,2],[1,3,0,2],[1,2,2,2]],[[0,0,1,2],[1,3,3,2],[1,3,1,2],[1,1,2,1]],[[0,0,1,1],[1,3,4,2],[1,3,1,2],[1,1,2,1]],[[0,0,1,1],[1,3,3,3],[1,3,1,2],[1,1,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,1,3],[1,1,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,1,2],[1,1,3,1]],[[0,0,1,1],[1,3,3,2],[1,3,1,2],[1,1,2,2]],[[0,0,1,1],[1,3,3,2],[1,4,2,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,2,0],[2,2,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,2,0],[1,3,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,2,0],[1,2,3,1]],[[0,0,1,1],[1,3,3,2],[1,3,2,0],[1,2,2,2]],[[0,0,1,1],[1,3,3,2],[1,4,2,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[1,3,2,1],[2,2,2,0]],[[0,0,1,1],[1,3,3,2],[1,3,2,1],[1,3,2,0]],[[0,0,1,1],[1,3,3,2],[1,3,2,1],[1,2,3,0]],[[0,0,1,2],[1,3,3,2],[1,3,2,2],[1,0,2,1]],[[0,0,1,1],[1,3,4,2],[1,3,2,2],[1,0,2,1]],[[0,0,1,1],[1,3,3,3],[1,3,2,2],[1,0,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,2,3],[1,0,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,2,2],[1,0,2,2]],[[0,0,1,2],[1,3,3,2],[1,3,2,2],[1,1,1,1]],[[0,0,1,1],[1,3,4,2],[1,3,2,2],[1,1,1,1]],[[0,0,1,1],[1,3,3,3],[1,3,2,2],[1,1,1,1]],[[0,0,1,1],[1,3,3,2],[1,3,2,3],[1,1,1,1]],[[0,0,1,1],[1,3,3,2],[1,3,2,2],[1,1,1,2]],[[0,0,1,2],[1,3,3,2],[1,3,2,2],[1,1,2,0]],[[0,0,1,1],[1,3,4,2],[1,3,2,2],[1,1,2,0]],[[0,0,1,1],[1,3,3,3],[1,3,2,2],[1,1,2,0]],[[0,0,1,1],[1,3,3,2],[1,3,2,3],[1,1,2,0]],[[0,0,1,2],[1,3,3,2],[1,3,2,2],[1,2,0,1]],[[0,0,1,1],[1,3,4,2],[1,3,2,2],[1,2,0,1]],[[0,0,1,1],[1,3,3,3],[1,3,2,2],[1,2,0,1]],[[0,0,1,1],[1,3,3,2],[1,3,2,3],[1,2,0,1]],[[0,0,1,1],[1,3,3,2],[1,3,2,2],[1,2,0,2]],[[0,0,1,2],[1,3,3,2],[1,3,2,2],[1,2,1,0]],[[0,0,1,1],[1,3,4,2],[1,3,2,2],[1,2,1,0]],[[0,0,1,1],[1,3,3,3],[1,3,2,2],[1,2,1,0]],[[0,0,1,1],[1,3,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[3,3,3,2],[2,1,0,2],[0,2,0,0]],[[1,2,2,2],[2,3,3,2],[2,1,0,2],[0,2,0,0]],[[0,0,1,2],[1,3,3,2],[1,3,3,0],[1,1,2,1]],[[0,0,1,1],[1,3,4,2],[1,3,3,0],[1,1,2,1]],[[0,0,1,1],[1,3,3,3],[1,3,3,0],[1,1,2,1]],[[0,0,1,1],[1,3,3,2],[1,4,3,0],[1,1,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,4,0],[1,1,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,3,0],[1,1,3,1]],[[0,0,1,1],[1,3,3,2],[1,3,3,0],[1,1,2,2]],[[0,0,1,2],[1,3,3,2],[1,3,3,0],[1,2,1,1]],[[0,0,1,1],[1,3,4,2],[1,3,3,0],[1,2,1,1]],[[0,0,1,1],[1,3,3,3],[1,3,3,0],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[1,4,3,0],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[1,3,4,0],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[1,3,3,0],[2,2,1,1]],[[0,0,1,1],[1,3,3,2],[1,3,3,0],[1,3,1,1]],[[0,0,1,2],[1,3,3,2],[1,3,3,1],[1,0,2,1]],[[0,0,1,1],[1,3,4,2],[1,3,3,1],[1,0,2,1]],[[0,0,1,1],[1,3,3,3],[1,3,3,1],[1,0,2,1]],[[0,0,1,1],[1,3,3,2],[1,3,4,1],[1,0,2,1]],[[0,0,1,2],[1,3,3,2],[1,3,3,1],[1,1,1,1]],[[0,0,1,1],[1,3,4,2],[1,3,3,1],[1,1,1,1]],[[0,0,1,1],[1,3,3,3],[1,3,3,1],[1,1,1,1]],[[0,0,1,1],[1,3,3,2],[1,4,3,1],[1,1,1,1]],[[0,0,1,1],[1,3,3,2],[1,3,4,1],[1,1,1,1]],[[0,0,1,2],[1,3,3,2],[1,3,3,1],[1,1,2,0]],[[0,0,1,1],[1,3,4,2],[1,3,3,1],[1,1,2,0]],[[0,0,1,1],[1,3,3,3],[1,3,3,1],[1,1,2,0]],[[0,0,1,1],[1,3,3,2],[1,4,3,1],[1,1,2,0]],[[0,0,1,1],[1,3,3,2],[1,3,4,1],[1,1,2,0]],[[0,0,1,1],[1,3,3,2],[1,3,3,1],[1,1,3,0]],[[0,0,1,2],[1,3,3,2],[1,3,3,1],[1,2,0,1]],[[0,0,1,1],[1,3,4,2],[1,3,3,1],[1,2,0,1]],[[0,0,1,1],[1,3,3,3],[1,3,3,1],[1,2,0,1]],[[0,0,1,1],[1,3,3,2],[1,4,3,1],[1,2,0,1]],[[0,0,1,1],[1,3,3,2],[1,3,4,1],[1,2,0,1]],[[0,0,1,1],[1,3,3,2],[1,3,3,1],[2,2,0,1]],[[0,0,1,1],[1,3,3,2],[1,3,3,1],[1,3,0,1]],[[0,0,1,2],[1,3,3,2],[1,3,3,1],[1,2,1,0]],[[0,0,1,1],[1,3,4,2],[1,3,3,1],[1,2,1,0]],[[0,0,1,1],[1,3,3,3],[1,3,3,1],[1,2,1,0]],[[0,0,1,1],[1,3,3,2],[1,4,3,1],[1,2,1,0]],[[0,0,1,1],[1,3,3,2],[1,3,4,1],[1,2,1,0]],[[0,0,1,1],[1,3,3,2],[1,3,3,1],[2,2,1,0]],[[0,0,1,1],[1,3,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,3,1],[2,3,3,2],[2,1,0,2],[0,2,0,0]],[[1,3,2,1],[2,3,3,2],[2,1,0,2],[0,2,0,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,2],[0,2,0,0]],[[0,0,1,2],[1,3,3,2],[1,3,3,2],[1,1,0,1]],[[0,0,1,1],[1,3,4,2],[1,3,3,2],[1,1,0,1]],[[0,0,1,1],[1,3,3,3],[1,3,3,2],[1,1,0,1]],[[0,0,1,1],[1,3,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,3,3,3],[2,1,0,2],[0,1,0,1]],[[1,2,2,2],[2,3,3,2],[2,1,0,2],[0,1,0,1]],[[1,2,3,1],[2,3,3,2],[2,1,0,2],[0,1,0,1]],[[1,3,2,1],[2,3,3,2],[2,1,0,2],[0,1,0,1]],[[2,2,2,1],[2,3,3,2],[2,1,0,2],[0,1,0,1]],[[1,2,2,1],[2,3,3,3],[2,1,0,2],[0,0,2,0]],[[1,2,2,2],[2,3,3,2],[2,1,0,2],[0,0,2,0]],[[1,2,3,1],[2,3,3,2],[2,1,0,2],[0,0,2,0]],[[1,3,2,1],[2,3,3,2],[2,1,0,2],[0,0,2,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,2],[0,0,2,0]],[[1,2,2,1],[2,3,3,3],[2,1,0,2],[0,0,1,1]],[[1,2,2,2],[2,3,3,2],[2,1,0,2],[0,0,1,1]],[[1,2,3,1],[2,3,3,2],[2,1,0,2],[0,0,1,1]],[[1,3,2,1],[2,3,3,2],[2,1,0,2],[0,0,1,1]],[[2,2,2,1],[2,3,3,2],[2,1,0,2],[0,0,1,1]],[[0,0,1,2],[1,3,3,2],[2,1,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,4,2],[2,1,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,3],[2,1,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[3,1,1,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,1,1,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,1,1,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,1,1,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,2],[2,1,1,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,2],[2,1,1,2],[1,2,2,2]],[[0,0,1,2],[1,3,3,2],[2,1,2,2],[1,2,1,1]],[[0,0,1,1],[1,3,4,2],[2,1,2,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,3],[2,1,2,2],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[2,1,2,3],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[2,1,2,2],[1,2,1,2]],[[0,0,1,2],[1,3,3,2],[2,1,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,4,2],[2,1,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,3],[2,1,2,2],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[2,1,2,3],[1,2,2,0]],[[0,0,1,2],[1,3,3,2],[2,1,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,4,2],[2,1,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,3],[2,1,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[3,1,3,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,1,4,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,1,3,0],[2,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,1,3,0],[1,3,2,1]],[[0,0,1,1],[1,3,3,2],[2,1,3,0],[1,2,3,1]],[[0,0,1,1],[1,3,3,2],[2,1,3,0],[1,2,2,2]],[[0,0,1,2],[1,3,3,2],[2,1,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,4,2],[2,1,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,3,3],[2,1,3,1],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[2,1,4,1],[1,2,1,1]],[[0,0,1,2],[1,3,3,2],[2,1,3,1],[1,2,2,0]],[[0,0,1,1],[1,3,4,2],[2,1,3,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,3],[2,1,3,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[3,1,3,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[2,1,4,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[2,1,3,1],[2,2,2,0]],[[0,0,1,1],[1,3,3,2],[2,1,3,1],[1,3,2,0]],[[0,0,1,1],[1,3,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[3,3,3,2],[2,1,0,1],[1,2,0,0]],[[1,2,2,2],[2,3,3,2],[2,1,0,1],[1,2,0,0]],[[1,2,3,1],[2,3,3,2],[2,1,0,1],[1,2,0,0]],[[1,3,2,1],[2,3,3,2],[2,1,0,1],[1,2,0,0]],[[0,0,1,2],[1,3,3,2],[2,2,0,2],[1,2,2,1]],[[0,0,1,1],[1,3,4,2],[2,2,0,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,3],[2,2,0,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[3,2,0,2],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,0,3],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,0,2],[2,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,0,2],[1,3,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,0,2],[1,2,3,1]],[[0,0,1,1],[1,3,3,2],[2,2,0,2],[1,2,2,2]],[[0,0,1,2],[1,3,3,2],[2,2,1,2],[0,2,2,1]],[[0,0,1,1],[1,3,4,2],[2,2,1,2],[0,2,2,1]],[[0,0,1,1],[1,3,3,3],[2,2,1,2],[0,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,1,3],[0,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,1,2],[0,3,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,1,2],[0,2,3,1]],[[0,0,1,1],[1,3,3,2],[2,2,1,2],[0,2,2,2]],[[0,0,1,1],[1,3,3,2],[3,2,2,0],[1,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,2,0],[2,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,2,0],[1,3,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,2,0],[1,2,3,1]],[[0,0,1,1],[1,3,3,2],[2,2,2,0],[1,2,2,2]],[[0,0,1,1],[1,3,3,2],[3,2,2,1],[1,2,2,0]],[[0,0,1,1],[1,3,3,2],[2,2,2,1],[2,2,2,0]],[[0,0,1,1],[1,3,3,2],[2,2,2,1],[1,3,2,0]],[[0,0,1,1],[1,3,3,2],[2,2,2,1],[1,2,3,0]],[[0,0,1,2],[1,3,3,2],[2,2,2,2],[0,2,1,1]],[[0,0,1,1],[1,3,4,2],[2,2,2,2],[0,2,1,1]],[[0,0,1,1],[1,3,3,3],[2,2,2,2],[0,2,1,1]],[[0,0,1,1],[1,3,3,2],[2,2,2,3],[0,2,1,1]],[[0,0,1,1],[1,3,3,2],[2,2,2,2],[0,2,1,2]],[[0,0,1,2],[1,3,3,2],[2,2,2,2],[0,2,2,0]],[[0,0,1,1],[1,3,4,2],[2,2,2,2],[0,2,2,0]],[[0,0,1,1],[1,3,3,3],[2,2,2,2],[0,2,2,0]],[[0,0,1,1],[1,3,3,2],[2,2,2,3],[0,2,2,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,1],[1,2,0,0]],[[0,0,1,2],[1,3,3,2],[2,2,3,0],[0,2,2,1]],[[0,0,1,1],[1,3,4,2],[2,2,3,0],[0,2,2,1]],[[0,0,1,1],[1,3,3,3],[2,2,3,0],[0,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,4,0],[0,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,3,0],[0,3,2,1]],[[0,0,1,1],[1,3,3,2],[2,2,3,0],[0,2,3,1]],[[0,0,1,1],[1,3,3,2],[2,2,3,0],[0,2,2,2]],[[0,0,1,1],[1,3,3,2],[3,2,3,0],[1,2,1,1]],[[0,0,1,1],[1,3,3,2],[2,2,3,0],[2,2,1,1]],[[0,0,1,1],[1,3,3,2],[2,2,3,0],[1,3,1,1]],[[0,0,1,2],[1,3,3,2],[2,2,3,1],[0,2,1,1]],[[0,0,1,1],[1,3,4,2],[2,2,3,1],[0,2,1,1]],[[0,0,1,1],[1,3,3,3],[2,2,3,1],[0,2,1,1]],[[0,0,1,1],[1,3,3,2],[2,2,4,1],[0,2,1,1]],[[0,0,1,2],[1,3,3,2],[2,2,3,1],[0,2,2,0]],[[0,0,1,1],[1,3,4,2],[2,2,3,1],[0,2,2,0]],[[0,0,1,1],[1,3,3,3],[2,2,3,1],[0,2,2,0]],[[0,0,1,1],[1,3,3,2],[2,2,4,1],[0,2,2,0]],[[0,0,1,1],[1,3,3,2],[2,2,3,1],[0,3,2,0]],[[0,0,1,1],[1,3,3,2],[2,2,3,1],[0,2,3,0]],[[0,0,1,1],[1,3,3,2],[3,2,3,1],[1,2,0,1]],[[0,0,1,1],[1,3,3,2],[2,2,3,1],[2,2,0,1]],[[0,0,1,1],[1,3,3,2],[2,2,3,1],[1,3,0,1]],[[0,0,1,1],[1,3,3,2],[3,2,3,1],[1,2,1,0]],[[0,0,1,1],[1,3,3,2],[2,2,3,1],[2,2,1,0]],[[0,0,1,1],[1,3,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[3,3,3,2],[2,1,0,1],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[2,1,0,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[2,1,0,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[2,1,0,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,1],[1,1,1,0]],[[1,2,2,1],[3,3,3,2],[2,1,0,1],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[2,1,0,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[2,1,0,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,2],[2,1,0,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[2,1,0,1],[1,1,0,1]],[[1,2,2,1],[3,3,3,2],[2,1,0,1],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[2,1,0,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[2,1,0,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[2,1,0,1],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,1],[1,0,2,0]],[[1,2,2,1],[3,3,3,2],[2,1,0,1],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[2,1,0,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[2,1,0,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[2,1,0,1],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[2,1,0,1],[1,0,1,1]],[[1,2,2,1],[3,3,3,2],[2,1,0,1],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[2,1,0,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[2,1,0,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[2,1,0,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,1],[0,2,1,0]],[[1,2,2,1],[3,3,3,2],[2,1,0,1],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[2,1,0,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[2,1,0,1],[0,2,0,1]],[[0,0,1,2],[1,3,3,2],[2,3,0,2],[0,2,2,1]],[[0,0,1,1],[1,3,4,2],[2,3,0,2],[0,2,2,1]],[[0,0,1,1],[1,3,3,3],[2,3,0,2],[0,2,2,1]],[[0,0,1,1],[1,3,3,2],[3,3,0,2],[0,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,4,0,2],[0,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,0,3],[0,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,0,2],[0,3,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,0,2],[0,2,3,1]],[[0,0,1,1],[1,3,3,2],[2,3,0,2],[0,2,2,2]],[[0,0,1,1],[1,3,3,2],[3,3,0,2],[1,1,2,1]],[[0,0,1,1],[1,3,3,2],[2,4,0,2],[1,1,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,0,2],[2,1,2,1]],[[0,0,1,2],[1,3,3,2],[2,3,1,2],[0,1,2,1]],[[0,0,1,1],[1,3,4,2],[2,3,1,2],[0,1,2,1]],[[0,0,1,1],[1,3,3,3],[2,3,1,2],[0,1,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,1,3],[0,1,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,1,2],[0,1,3,1]],[[0,0,1,1],[1,3,3,2],[2,3,1,2],[0,1,2,2]],[[0,0,1,2],[1,3,3,2],[2,3,1,2],[1,0,2,1]],[[0,0,1,1],[1,3,4,2],[2,3,1,2],[1,0,2,1]],[[0,0,1,1],[1,3,3,3],[2,3,1,2],[1,0,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,1,3],[1,0,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,1,2],[1,0,3,1]],[[0,0,1,1],[1,3,3,2],[2,3,1,2],[1,0,2,2]],[[1,3,2,1],[2,3,3,2],[2,1,0,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[2,1,0,1],[0,2,0,1]],[[1,2,2,1],[3,3,3,2],[2,1,0,1],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[2,1,0,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[2,1,0,1],[0,1,2,0]],[[0,0,1,1],[1,3,3,2],[3,3,2,0],[0,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,4,2,0],[0,2,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,0],[0,3,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,0],[0,2,3,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,0],[0,2,2,2]],[[0,0,1,1],[1,3,3,2],[3,3,2,0],[1,1,2,1]],[[0,0,1,1],[1,3,3,2],[2,4,2,0],[1,1,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,0],[2,1,2,1]],[[0,0,1,1],[1,3,3,2],[3,3,2,1],[0,2,2,0]],[[0,0,1,1],[1,3,3,2],[2,4,2,1],[0,2,2,0]],[[0,0,1,1],[1,3,3,2],[2,3,2,1],[0,3,2,0]],[[0,0,1,1],[1,3,3,2],[2,3,2,1],[0,2,3,0]],[[0,0,1,1],[1,3,3,2],[3,3,2,1],[1,1,2,0]],[[0,0,1,1],[1,3,3,2],[2,4,2,1],[1,1,2,0]],[[0,0,1,1],[1,3,3,2],[2,3,2,1],[2,1,2,0]],[[1,3,2,1],[2,3,3,2],[2,1,0,1],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,1],[0,1,2,0]],[[1,2,2,1],[3,3,3,2],[2,1,0,1],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[2,1,0,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[2,1,0,1],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[2,1,0,1],[0,1,1,1]],[[0,0,1,2],[1,3,3,2],[2,3,2,2],[0,0,2,1]],[[0,0,1,1],[1,3,4,2],[2,3,2,2],[0,0,2,1]],[[0,0,1,1],[1,3,3,3],[2,3,2,2],[0,0,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,3],[0,0,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,2],[0,0,2,2]],[[0,0,1,2],[1,3,3,2],[2,3,2,2],[0,1,1,1]],[[0,0,1,1],[1,3,4,2],[2,3,2,2],[0,1,1,1]],[[0,0,1,1],[1,3,3,3],[2,3,2,2],[0,1,1,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,3],[0,1,1,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,2],[0,1,1,2]],[[0,0,1,2],[1,3,3,2],[2,3,2,2],[0,1,2,0]],[[0,0,1,1],[1,3,4,2],[2,3,2,2],[0,1,2,0]],[[0,0,1,1],[1,3,3,3],[2,3,2,2],[0,1,2,0]],[[0,0,1,1],[1,3,3,2],[2,3,2,3],[0,1,2,0]],[[0,0,1,2],[1,3,3,2],[2,3,2,2],[0,2,0,1]],[[0,0,1,1],[1,3,4,2],[2,3,2,2],[0,2,0,1]],[[0,0,1,1],[1,3,3,3],[2,3,2,2],[0,2,0,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,3],[0,2,0,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,2],[0,2,0,2]],[[0,0,1,2],[1,3,3,2],[2,3,2,2],[0,2,1,0]],[[0,0,1,1],[1,3,4,2],[2,3,2,2],[0,2,1,0]],[[0,0,1,1],[1,3,3,3],[2,3,2,2],[0,2,1,0]],[[0,0,1,1],[1,3,3,2],[2,3,2,3],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,1],[0,1,1,1]],[[0,0,1,2],[1,3,3,2],[2,3,2,2],[1,0,1,1]],[[0,0,1,1],[1,3,4,2],[2,3,2,2],[1,0,1,1]],[[0,0,1,1],[1,3,3,3],[2,3,2,2],[1,0,1,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,3],[1,0,1,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,2],[1,0,1,2]],[[0,0,1,2],[1,3,3,2],[2,3,2,2],[1,0,2,0]],[[0,0,1,1],[1,3,4,2],[2,3,2,2],[1,0,2,0]],[[0,0,1,1],[1,3,3,3],[2,3,2,2],[1,0,2,0]],[[0,0,1,1],[1,3,3,2],[2,3,2,3],[1,0,2,0]],[[0,0,1,2],[1,3,3,2],[2,3,2,2],[1,1,0,1]],[[0,0,1,1],[1,3,4,2],[2,3,2,2],[1,1,0,1]],[[0,0,1,1],[1,3,3,3],[2,3,2,2],[1,1,0,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,3],[1,1,0,1]],[[0,0,1,1],[1,3,3,2],[2,3,2,2],[1,1,0,2]],[[0,0,1,2],[1,3,3,2],[2,3,2,2],[1,1,1,0]],[[0,0,1,1],[1,3,4,2],[2,3,2,2],[1,1,1,0]],[[0,0,1,1],[1,3,3,3],[2,3,2,2],[1,1,1,0]],[[0,0,1,1],[1,3,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[3,3,3,2],[2,1,0,0],[1,1,2,0]],[[1,2,2,2],[2,3,3,2],[2,1,0,0],[1,1,2,0]],[[1,2,3,1],[2,3,3,2],[2,1,0,0],[1,1,2,0]],[[1,3,2,1],[2,3,3,2],[2,1,0,0],[1,1,2,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,0],[1,1,2,0]],[[1,2,2,1],[3,3,3,2],[2,1,0,0],[0,2,2,0]],[[1,2,2,2],[2,3,3,2],[2,1,0,0],[0,2,2,0]],[[1,2,3,1],[2,3,3,2],[2,1,0,0],[0,2,2,0]],[[1,3,2,1],[2,3,3,2],[2,1,0,0],[0,2,2,0]],[[2,2,2,1],[2,3,3,2],[2,1,0,0],[0,2,2,0]],[[0,0,1,2],[1,3,3,2],[2,3,3,0],[0,1,2,1]],[[0,0,1,1],[1,3,4,2],[2,3,3,0],[0,1,2,1]],[[0,0,1,1],[1,3,3,3],[2,3,3,0],[0,1,2,1]],[[0,0,1,1],[1,3,3,2],[3,3,3,0],[0,1,2,1]],[[0,0,1,1],[1,3,3,2],[2,4,3,0],[0,1,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,4,0],[0,1,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,0],[0,1,3,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,0],[0,1,2,2]],[[0,0,1,2],[1,3,3,2],[2,3,3,0],[0,2,1,1]],[[0,0,1,1],[1,3,4,2],[2,3,3,0],[0,2,1,1]],[[0,0,1,1],[1,3,3,3],[2,3,3,0],[0,2,1,1]],[[0,0,1,1],[1,3,3,2],[3,3,3,0],[0,2,1,1]],[[0,0,1,1],[1,3,3,2],[2,4,3,0],[0,2,1,1]],[[0,0,1,1],[1,3,3,2],[2,3,4,0],[0,2,1,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,0],[0,3,1,1]],[[0,0,1,2],[1,3,3,2],[2,3,3,0],[1,0,2,1]],[[0,0,1,1],[1,3,4,2],[2,3,3,0],[1,0,2,1]],[[0,0,1,1],[1,3,3,3],[2,3,3,0],[1,0,2,1]],[[0,0,1,1],[1,3,3,2],[3,3,3,0],[1,0,2,1]],[[0,0,1,1],[1,3,3,2],[2,4,3,0],[1,0,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,4,0],[1,0,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,0],[2,0,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,0],[1,0,3,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,0],[1,0,2,2]],[[0,0,1,2],[1,3,3,2],[2,3,3,0],[1,1,1,1]],[[0,0,1,1],[1,3,4,2],[2,3,3,0],[1,1,1,1]],[[0,0,1,1],[1,3,3,3],[2,3,3,0],[1,1,1,1]],[[0,0,1,1],[1,3,3,2],[3,3,3,0],[1,1,1,1]],[[0,0,1,1],[1,3,3,2],[2,4,3,0],[1,1,1,1]],[[0,0,1,1],[1,3,3,2],[2,3,4,0],[1,1,1,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,0],[2,1,1,1]],[[0,0,1,1],[1,3,3,2],[3,3,3,0],[1,2,0,1]],[[0,0,1,1],[1,3,3,2],[2,4,3,0],[1,2,0,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,0],[2,2,0,1]],[[0,0,1,2],[1,3,3,2],[2,3,3,1],[0,0,2,1]],[[0,0,1,1],[1,3,4,2],[2,3,3,1],[0,0,2,1]],[[0,0,1,1],[1,3,3,3],[2,3,3,1],[0,0,2,1]],[[0,0,1,1],[1,3,3,2],[2,3,4,1],[0,0,2,1]],[[0,0,1,2],[1,3,3,2],[2,3,3,1],[0,1,1,1]],[[0,0,1,1],[1,3,4,2],[2,3,3,1],[0,1,1,1]],[[0,0,1,1],[1,3,3,3],[2,3,3,1],[0,1,1,1]],[[0,0,1,1],[1,3,3,2],[3,3,3,1],[0,1,1,1]],[[0,0,1,1],[1,3,3,2],[2,4,3,1],[0,1,1,1]],[[0,0,1,1],[1,3,3,2],[2,3,4,1],[0,1,1,1]],[[0,0,1,2],[1,3,3,2],[2,3,3,1],[0,1,2,0]],[[0,0,1,1],[1,3,4,2],[2,3,3,1],[0,1,2,0]],[[0,0,1,1],[1,3,3,3],[2,3,3,1],[0,1,2,0]],[[0,0,1,1],[1,3,3,2],[3,3,3,1],[0,1,2,0]],[[0,0,1,1],[1,3,3,2],[2,4,3,1],[0,1,2,0]],[[0,0,1,1],[1,3,3,2],[2,3,4,1],[0,1,2,0]],[[0,0,1,1],[1,3,3,2],[2,3,3,1],[0,1,3,0]],[[0,0,1,2],[1,3,3,2],[2,3,3,1],[0,2,0,1]],[[0,0,1,1],[1,3,4,2],[2,3,3,1],[0,2,0,1]],[[0,0,1,1],[1,3,3,3],[2,3,3,1],[0,2,0,1]],[[0,0,1,1],[1,3,3,2],[3,3,3,1],[0,2,0,1]],[[0,0,1,1],[1,3,3,2],[2,4,3,1],[0,2,0,1]],[[0,0,1,1],[1,3,3,2],[2,3,4,1],[0,2,0,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,1],[0,3,0,1]],[[0,0,1,2],[1,3,3,2],[2,3,3,1],[0,2,1,0]],[[0,0,1,1],[1,3,4,2],[2,3,3,1],[0,2,1,0]],[[0,0,1,1],[1,3,3,3],[2,3,3,1],[0,2,1,0]],[[0,0,1,1],[1,3,3,2],[3,3,3,1],[0,2,1,0]],[[0,0,1,1],[1,3,3,2],[2,4,3,1],[0,2,1,0]],[[0,0,1,1],[1,3,3,2],[2,3,4,1],[0,2,1,0]],[[0,0,1,1],[1,3,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[3,3,3,2],[2,0,3,1],[1,0,0,0]],[[1,2,2,2],[2,3,3,2],[2,0,3,1],[1,0,0,0]],[[1,2,3,1],[2,3,3,2],[2,0,3,1],[1,0,0,0]],[[1,3,2,1],[2,3,3,2],[2,0,3,1],[1,0,0,0]],[[0,0,1,2],[1,3,3,2],[2,3,3,1],[1,0,1,1]],[[0,0,1,1],[1,3,4,2],[2,3,3,1],[1,0,1,1]],[[0,0,1,1],[1,3,3,3],[2,3,3,1],[1,0,1,1]],[[0,0,1,1],[1,3,3,2],[3,3,3,1],[1,0,1,1]],[[0,0,1,1],[1,3,3,2],[2,4,3,1],[1,0,1,1]],[[0,0,1,1],[1,3,3,2],[2,3,4,1],[1,0,1,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,1],[2,0,1,1]],[[0,0,1,2],[1,3,3,2],[2,3,3,1],[1,0,2,0]],[[0,0,1,1],[1,3,4,2],[2,3,3,1],[1,0,2,0]],[[0,0,1,1],[1,3,3,3],[2,3,3,1],[1,0,2,0]],[[0,0,1,1],[1,3,3,2],[3,3,3,1],[1,0,2,0]],[[0,0,1,1],[1,3,3,2],[2,4,3,1],[1,0,2,0]],[[0,0,1,1],[1,3,3,2],[2,3,4,1],[1,0,2,0]],[[0,0,1,1],[1,3,3,2],[2,3,3,1],[2,0,2,0]],[[0,0,1,1],[1,3,3,2],[2,3,3,1],[1,0,3,0]],[[0,0,1,2],[1,3,3,2],[2,3,3,1],[1,1,0,1]],[[0,0,1,1],[1,3,4,2],[2,3,3,1],[1,1,0,1]],[[0,0,1,1],[1,3,3,3],[2,3,3,1],[1,1,0,1]],[[0,0,1,1],[1,3,3,2],[3,3,3,1],[1,1,0,1]],[[0,0,1,1],[1,3,3,2],[2,4,3,1],[1,1,0,1]],[[0,0,1,1],[1,3,3,2],[2,3,4,1],[1,1,0,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,1],[2,1,0,1]],[[0,0,1,2],[1,3,3,2],[2,3,3,1],[1,1,1,0]],[[0,0,1,1],[1,3,4,2],[2,3,3,1],[1,1,1,0]],[[0,0,1,1],[1,3,3,3],[2,3,3,1],[1,1,1,0]],[[0,0,1,1],[1,3,3,2],[3,3,3,1],[1,1,1,0]],[[0,0,1,1],[1,3,3,2],[2,4,3,1],[1,1,1,0]],[[0,0,1,1],[1,3,3,2],[2,3,4,1],[1,1,1,0]],[[0,0,1,1],[1,3,3,2],[2,3,3,1],[2,1,1,0]],[[2,2,2,1],[2,3,3,2],[2,0,3,1],[1,0,0,0]],[[0,0,1,1],[1,3,3,2],[3,3,3,1],[1,2,0,0]],[[0,0,1,1],[1,3,3,2],[2,4,3,1],[1,2,0,0]],[[0,0,1,1],[1,3,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[3,3,3,2],[2,0,3,0],[1,1,0,0]],[[0,0,1,2],[1,3,3,2],[2,3,3,2],[0,1,0,1]],[[0,0,1,1],[1,3,4,2],[2,3,3,2],[0,1,0,1]],[[0,0,1,1],[1,3,3,3],[2,3,3,2],[0,1,0,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,2],[2,3,3,2],[2,0,3,0],[1,1,0,0]],[[1,2,3,1],[2,3,3,2],[2,0,3,0],[1,1,0,0]],[[1,3,2,1],[2,3,3,2],[2,0,3,0],[1,1,0,0]],[[2,2,2,1],[2,3,3,2],[2,0,3,0],[1,1,0,0]],[[1,2,2,1],[3,3,3,2],[2,0,3,0],[1,0,1,0]],[[1,2,2,2],[2,3,3,2],[2,0,3,0],[1,0,1,0]],[[1,2,3,1],[2,3,3,2],[2,0,3,0],[1,0,1,0]],[[1,3,2,1],[2,3,3,2],[2,0,3,0],[1,0,1,0]],[[2,2,2,1],[2,3,3,2],[2,0,3,0],[1,0,1,0]],[[1,2,2,1],[3,3,3,2],[2,0,3,0],[1,0,0,1]],[[1,2,2,2],[2,3,3,2],[2,0,3,0],[1,0,0,1]],[[1,2,3,1],[2,3,3,2],[2,0,3,0],[1,0,0,1]],[[1,3,2,1],[2,3,3,2],[2,0,3,0],[1,0,0,1]],[[2,2,2,1],[2,3,3,2],[2,0,3,0],[1,0,0,1]],[[0,0,1,2],[1,3,3,2],[2,3,3,2],[1,0,0,1]],[[0,0,1,1],[1,3,4,2],[2,3,3,2],[1,0,0,1]],[[0,0,1,1],[1,3,3,3],[2,3,3,2],[1,0,0,1]],[[0,0,1,1],[1,3,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[3,3,3,2],[2,0,3,0],[0,2,0,0]],[[1,2,2,2],[2,3,3,2],[2,0,3,0],[0,2,0,0]],[[1,2,3,1],[2,3,3,2],[2,0,3,0],[0,2,0,0]],[[1,3,2,1],[2,3,3,2],[2,0,3,0],[0,2,0,0]],[[2,2,2,1],[2,3,3,2],[2,0,3,0],[0,2,0,0]],[[1,2,2,1],[2,3,4,2],[2,0,3,0],[0,0,2,0]],[[1,2,2,2],[2,3,3,2],[2,0,3,0],[0,0,2,0]],[[1,2,3,1],[2,3,3,2],[2,0,3,0],[0,0,2,0]],[[1,3,2,1],[2,3,3,2],[2,0,3,0],[0,0,2,0]],[[2,2,2,1],[2,3,3,2],[2,0,3,0],[0,0,2,0]],[[1,2,2,1],[2,3,4,2],[2,0,3,0],[0,0,1,1]],[[1,2,2,2],[2,3,3,2],[2,0,3,0],[0,0,1,1]],[[1,2,3,1],[2,3,3,2],[2,0,3,0],[0,0,1,1]],[[1,3,2,1],[2,3,3,2],[2,0,3,0],[0,0,1,1]],[[2,2,2,1],[2,3,3,2],[2,0,3,0],[0,0,1,1]],[[1,2,2,1],[3,3,3,2],[2,0,2,2],[1,0,0,0]],[[1,2,2,2],[2,3,3,2],[2,0,2,2],[1,0,0,0]],[[1,2,3,1],[2,3,3,2],[2,0,2,2],[1,0,0,0]],[[1,3,2,1],[2,3,3,2],[2,0,2,2],[1,0,0,0]],[[2,2,2,1],[2,3,3,2],[2,0,2,2],[1,0,0,0]],[[1,2,2,1],[2,3,3,3],[2,0,2,2],[0,0,0,1]],[[1,2,2,2],[2,3,3,2],[2,0,2,2],[0,0,0,1]],[[1,2,3,1],[2,3,3,2],[2,0,2,2],[0,0,0,1]],[[1,3,2,1],[2,3,3,2],[2,0,2,2],[0,0,0,1]],[[2,2,2,1],[2,3,3,2],[2,0,2,2],[0,0,0,1]],[[0,0,1,1],[2,0,1,2],[2,3,3,3],[1,2,2,1]],[[0,0,1,1],[2,0,1,2],[2,3,3,2],[2,2,2,1]],[[0,0,1,1],[2,0,1,2],[2,3,3,2],[1,3,2,1]],[[0,0,1,1],[2,0,1,2],[2,3,3,2],[1,2,3,1]],[[0,0,1,1],[2,0,1,2],[2,3,3,2],[1,2,2,2]],[[0,0,1,1],[2,0,2,3],[2,3,2,2],[1,2,2,1]],[[0,0,1,1],[2,0,2,2],[2,3,2,3],[1,2,2,1]],[[0,0,1,1],[2,0,2,2],[2,3,2,2],[2,2,2,1]],[[0,0,1,1],[2,0,2,2],[2,3,2,2],[1,3,2,1]],[[0,0,1,1],[2,0,2,2],[2,3,2,2],[1,2,3,1]],[[0,0,1,1],[2,0,2,2],[2,3,2,2],[1,2,2,2]],[[0,0,1,1],[2,0,2,2],[2,3,4,1],[1,2,2,1]],[[0,0,1,1],[2,0,2,2],[2,3,3,1],[2,2,2,1]],[[0,0,1,1],[2,0,2,2],[2,3,3,1],[1,3,2,1]],[[0,0,1,1],[2,0,2,2],[2,3,3,1],[1,2,3,1]],[[0,0,1,1],[2,0,2,2],[2,3,3,1],[1,2,2,2]],[[0,0,1,1],[2,0,2,3],[2,3,3,2],[1,2,1,1]],[[0,0,1,1],[2,0,2,2],[2,3,4,2],[1,2,1,1]],[[0,0,1,1],[2,0,2,2],[2,3,3,3],[1,2,1,1]],[[0,0,1,1],[2,0,2,2],[2,3,3,2],[1,2,1,2]],[[0,0,1,1],[2,0,2,3],[2,3,3,2],[1,2,2,0]],[[0,0,1,1],[2,0,2,2],[2,3,4,2],[1,2,2,0]],[[0,0,1,1],[2,0,2,2],[2,3,3,3],[1,2,2,0]],[[0,0,1,1],[2,0,2,2],[2,3,3,2],[2,2,2,0]],[[0,0,1,1],[2,0,2,2],[2,3,3,2],[1,3,2,0]],[[0,0,1,1],[2,0,2,2],[2,3,3,2],[1,2,3,0]],[[0,0,1,1],[2,0,3,0],[2,3,4,2],[1,2,2,1]],[[0,0,1,1],[2,0,3,0],[2,3,3,2],[2,2,2,1]],[[0,0,1,1],[2,0,3,0],[2,3,3,2],[1,3,2,1]],[[0,0,1,1],[2,0,3,0],[2,3,3,2],[1,2,3,1]],[[0,0,1,1],[2,0,3,0],[2,3,3,2],[1,2,2,2]],[[0,0,1,1],[2,0,3,1],[2,3,2,3],[1,2,2,1]],[[0,0,1,1],[2,0,3,1],[2,3,2,2],[2,2,2,1]],[[0,0,1,1],[2,0,3,1],[2,3,2,2],[1,3,2,1]],[[0,0,1,1],[2,0,3,1],[2,3,2,2],[1,2,3,1]],[[0,0,1,1],[2,0,3,1],[2,3,2,2],[1,2,2,2]],[[0,0,1,1],[2,0,3,1],[2,3,4,1],[1,2,2,1]],[[0,0,1,1],[2,0,3,1],[2,3,3,1],[2,2,2,1]],[[0,0,1,1],[2,0,3,1],[2,3,3,1],[1,3,2,1]],[[0,0,1,1],[2,0,3,1],[2,3,3,1],[1,2,3,1]],[[0,0,1,1],[2,0,3,1],[2,3,3,1],[1,2,2,2]],[[0,0,1,1],[2,0,3,1],[2,3,4,2],[1,2,1,1]],[[0,0,1,1],[2,0,3,1],[2,3,3,3],[1,2,1,1]],[[0,0,1,1],[2,0,3,1],[2,3,3,2],[1,2,1,2]],[[0,0,1,1],[2,0,3,1],[2,3,4,2],[1,2,2,0]],[[0,0,1,1],[2,0,3,1],[2,3,3,3],[1,2,2,0]],[[0,0,1,1],[2,0,3,1],[2,3,3,2],[2,2,2,0]],[[0,0,1,1],[2,0,3,1],[2,3,3,2],[1,3,2,0]],[[0,0,1,1],[2,0,3,1],[2,3,3,2],[1,2,3,0]],[[0,0,1,1],[2,0,3,2],[2,3,4,0],[1,2,2,1]],[[0,0,1,1],[2,0,3,2],[2,3,3,0],[2,2,2,1]],[[0,0,1,1],[2,0,3,2],[2,3,3,0],[1,3,2,1]],[[0,0,1,1],[2,0,3,2],[2,3,3,0],[1,2,3,1]],[[0,0,1,1],[2,0,3,2],[2,3,3,0],[1,2,2,2]],[[0,0,1,1],[2,0,3,2],[2,3,4,1],[1,2,2,0]],[[0,0,1,1],[2,0,3,2],[2,3,3,1],[2,2,2,0]],[[0,0,1,1],[2,0,3,2],[2,3,3,1],[1,3,2,0]],[[0,0,1,1],[2,0,3,2],[2,3,3,1],[1,2,3,0]],[[0,0,1,1],[2,1,0,2],[2,3,3,3],[1,2,2,1]],[[0,0,1,1],[2,1,0,2],[2,3,3,2],[2,2,2,1]],[[0,0,1,1],[2,1,0,2],[2,3,3,2],[1,3,2,1]],[[0,0,1,1],[2,1,0,2],[2,3,3,2],[1,2,3,1]],[[0,0,1,1],[2,1,0,2],[2,3,3,2],[1,2,2,2]],[[1,2,2,1],[3,3,3,2],[2,0,2,1],[1,0,0,1]],[[1,2,2,2],[2,3,3,2],[2,0,2,1],[1,0,0,1]],[[1,2,3,1],[2,3,3,2],[2,0,2,1],[1,0,0,1]],[[1,3,2,1],[2,3,3,2],[2,0,2,1],[1,0,0,1]],[[2,2,2,1],[2,3,3,2],[2,0,2,1],[1,0,0,1]],[[1,2,2,1],[3,3,3,2],[2,0,2,0],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[2,0,2,0],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[2,0,2,0],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[2,0,2,0],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[2,0,2,0],[1,1,1,0]],[[1,2,2,1],[3,3,3,2],[2,0,2,0],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[2,0,2,0],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[2,0,2,0],[1,1,0,1]],[[1,3,2,1],[2,3,3,2],[2,0,2,0],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[2,0,2,0],[1,1,0,1]],[[1,2,2,1],[3,3,3,2],[2,0,2,0],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[2,0,2,0],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[2,0,2,0],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[2,0,2,0],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[2,0,2,0],[1,0,2,0]],[[1,2,2,1],[3,3,3,2],[2,0,2,0],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[2,0,2,0],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[2,0,2,0],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[2,0,2,0],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[2,0,2,0],[1,0,1,1]],[[1,2,2,1],[3,3,3,2],[2,0,2,0],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[2,0,2,0],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[2,0,2,0],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[2,0,2,0],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[2,0,2,0],[0,2,1,0]],[[1,2,2,1],[3,3,3,2],[2,0,2,0],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[2,0,2,0],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[2,0,2,0],[0,2,0,1]],[[1,3,2,1],[2,3,3,2],[2,0,2,0],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[2,0,2,0],[0,2,0,1]],[[1,2,2,1],[3,3,3,2],[2,0,2,0],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[2,0,2,0],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[2,0,2,0],[0,1,2,0]],[[1,3,2,1],[2,3,3,2],[2,0,2,0],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[2,0,2,0],[0,1,2,0]],[[1,2,2,1],[3,3,3,2],[2,0,2,0],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[2,0,2,0],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[2,0,2,0],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[2,0,2,0],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[2,0,2,0],[0,1,1,1]],[[1,2,2,1],[3,3,3,2],[2,0,1,2],[1,1,0,0]],[[1,2,2,2],[2,3,3,2],[2,0,1,2],[1,1,0,0]],[[1,2,3,1],[2,3,3,2],[2,0,1,2],[1,1,0,0]],[[1,3,2,1],[2,3,3,2],[2,0,1,2],[1,1,0,0]],[[2,2,2,1],[2,3,3,2],[2,0,1,2],[1,1,0,0]],[[1,2,2,1],[3,3,3,2],[2,0,1,2],[1,0,1,0]],[[1,2,2,2],[2,3,3,2],[2,0,1,2],[1,0,1,0]],[[1,2,3,1],[2,3,3,2],[2,0,1,2],[1,0,1,0]],[[1,3,2,1],[2,3,3,2],[2,0,1,2],[1,0,1,0]],[[2,2,2,1],[2,3,3,2],[2,0,1,2],[1,0,1,0]],[[1,2,2,1],[3,3,3,2],[2,0,1,2],[0,2,0,0]],[[1,2,2,2],[2,3,3,2],[2,0,1,2],[0,2,0,0]],[[1,2,3,1],[2,3,3,2],[2,0,1,2],[0,2,0,0]],[[1,3,2,1],[2,3,3,2],[2,0,1,2],[0,2,0,0]],[[2,2,2,1],[2,3,3,2],[2,0,1,2],[0,2,0,0]],[[1,2,2,1],[2,3,3,3],[2,0,1,2],[0,1,0,1]],[[1,2,2,2],[2,3,3,2],[2,0,1,2],[0,1,0,1]],[[1,2,3,1],[2,3,3,2],[2,0,1,2],[0,1,0,1]],[[1,3,2,1],[2,3,3,2],[2,0,1,2],[0,1,0,1]],[[2,2,2,1],[2,3,3,2],[2,0,1,2],[0,1,0,1]],[[1,2,2,1],[2,3,3,3],[2,0,1,2],[0,0,2,0]],[[1,2,2,2],[2,3,3,2],[2,0,1,2],[0,0,2,0]],[[1,2,3,1],[2,3,3,2],[2,0,1,2],[0,0,2,0]],[[1,3,2,1],[2,3,3,2],[2,0,1,2],[0,0,2,0]],[[2,2,2,1],[2,3,3,2],[2,0,1,2],[0,0,2,0]],[[1,2,2,1],[2,3,3,3],[2,0,1,2],[0,0,1,1]],[[1,2,2,2],[2,3,3,2],[2,0,1,2],[0,0,1,1]],[[1,2,3,1],[2,3,3,2],[2,0,1,2],[0,0,1,1]],[[1,3,2,1],[2,3,3,2],[2,0,1,2],[0,0,1,1]],[[2,2,2,1],[2,3,3,2],[2,0,1,2],[0,0,1,1]],[[1,2,2,1],[3,3,3,2],[2,0,1,1],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[2,0,1,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[2,0,1,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[2,0,1,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[2,0,1,1],[1,1,1,0]],[[1,2,2,1],[3,3,3,2],[2,0,1,1],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[2,0,1,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[2,0,1,1],[1,1,0,1]],[[0,0,1,1],[2,3,1,2],[0,2,3,3],[1,2,2,1]],[[0,0,1,1],[2,3,1,2],[0,2,3,2],[1,3,2,1]],[[0,0,1,1],[2,3,1,2],[0,2,3,2],[1,2,3,1]],[[0,0,1,1],[2,3,1,2],[0,2,3,2],[1,2,2,2]],[[0,0,1,1],[2,3,1,2],[0,3,3,3],[1,1,2,1]],[[0,0,1,1],[2,3,1,2],[0,3,3,2],[1,1,3,1]],[[0,0,1,1],[2,3,1,2],[0,3,3,2],[1,1,2,2]],[[0,0,1,1],[2,3,1,2],[1,2,3,3],[0,2,2,1]],[[0,0,1,1],[2,3,1,2],[1,2,3,2],[0,2,3,1]],[[0,0,1,1],[2,3,1,2],[1,2,3,2],[0,2,2,2]],[[0,0,1,1],[2,3,1,2],[1,3,3,3],[0,1,2,1]],[[0,0,1,1],[2,3,1,2],[1,3,3,2],[0,1,3,1]],[[0,0,1,1],[2,3,1,2],[1,3,3,2],[0,1,2,2]],[[1,3,2,1],[2,3,3,2],[2,0,1,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[2,0,1,1],[1,1,0,1]],[[1,2,2,1],[3,3,3,2],[2,0,1,1],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[2,0,1,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[2,0,1,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[2,0,1,1],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[2,0,1,1],[1,0,2,0]],[[1,2,2,1],[3,3,3,2],[2,0,1,1],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[2,0,1,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[2,0,1,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[2,0,1,1],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[2,0,1,1],[1,0,1,1]],[[0,0,1,1],[2,3,2,3],[0,1,3,2],[1,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,1,3,3],[1,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,1,3,2],[1,2,3,1]],[[0,0,1,1],[2,3,2,2],[0,1,3,2],[1,2,2,2]],[[0,0,1,2],[2,3,2,2],[0,2,2,2],[1,2,2,1]],[[0,0,1,1],[2,3,2,3],[0,2,2,2],[1,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,2,2,3],[1,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,2,2,2],[2,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,2,2,2],[1,3,2,1]],[[0,0,1,1],[2,3,2,2],[0,2,2,2],[1,2,3,1]],[[0,0,1,1],[2,3,2,2],[0,2,2,2],[1,2,2,2]],[[0,0,1,1],[2,3,2,2],[0,2,4,1],[1,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,2,3,1],[2,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,2,3,1],[1,3,2,1]],[[0,0,1,1],[2,3,2,2],[0,2,3,1],[1,2,3,1]],[[0,0,1,1],[2,3,2,2],[0,2,3,1],[1,2,2,2]],[[0,0,1,2],[2,3,2,2],[0,2,3,2],[1,2,1,1]],[[0,0,1,1],[2,3,2,3],[0,2,3,2],[1,2,1,1]],[[0,0,1,1],[2,3,2,2],[0,2,4,2],[1,2,1,1]],[[0,0,1,1],[2,3,2,2],[0,2,3,3],[1,2,1,1]],[[0,0,1,1],[2,3,2,2],[0,2,3,2],[1,2,1,2]],[[0,0,1,2],[2,3,2,2],[0,2,3,2],[1,2,2,0]],[[0,0,1,1],[2,3,2,3],[0,2,3,2],[1,2,2,0]],[[0,0,1,1],[2,3,2,2],[0,2,4,2],[1,2,2,0]],[[0,0,1,1],[2,3,2,2],[0,2,3,3],[1,2,2,0]],[[0,0,1,1],[2,3,2,2],[0,2,3,2],[2,2,2,0]],[[0,0,1,1],[2,3,2,2],[0,2,3,2],[1,3,2,0]],[[0,0,1,1],[2,3,2,2],[0,2,3,2],[1,2,3,0]],[[0,0,1,2],[2,3,2,2],[0,3,1,2],[1,2,2,1]],[[0,0,1,1],[2,3,2,3],[0,3,1,2],[1,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,4,1,2],[1,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,1,3],[1,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,1,2],[2,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,1,2],[1,3,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,1,2],[1,2,3,1]],[[0,0,1,1],[2,3,2,2],[0,3,1,2],[1,2,2,2]],[[0,0,1,1],[2,3,2,2],[0,4,2,1],[1,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,2,1],[2,2,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,2,1],[1,3,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,2,1],[1,2,3,1]],[[0,0,1,1],[2,3,2,2],[0,3,2,1],[1,2,2,2]],[[0,0,1,2],[2,3,2,2],[0,3,2,2],[1,1,2,1]],[[0,0,1,1],[2,3,2,3],[0,3,2,2],[1,1,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,2,3],[1,1,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,2,2],[1,1,3,1]],[[0,0,1,1],[2,3,2,2],[0,3,2,2],[1,1,2,2]],[[0,0,1,1],[2,3,2,2],[0,4,2,2],[1,2,2,0]],[[0,0,1,1],[2,3,2,2],[0,3,2,2],[2,2,2,0]],[[0,0,1,1],[2,3,2,2],[0,3,2,2],[1,3,2,0]],[[0,0,1,1],[2,3,2,2],[0,3,2,2],[1,2,3,0]],[[0,0,1,1],[2,3,2,2],[0,4,3,1],[1,1,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,4,1],[1,1,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,1],[1,1,3,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,1],[1,1,2,2]],[[0,0,1,1],[2,3,2,2],[0,4,3,1],[1,2,1,1]],[[0,0,1,1],[2,3,2,2],[0,3,4,1],[1,2,1,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,1],[2,2,1,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,1],[1,3,1,1]],[[0,0,1,2],[2,3,2,2],[0,3,3,2],[1,0,2,1]],[[0,0,1,1],[2,3,2,3],[0,3,3,2],[1,0,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,4,2],[1,0,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,3],[1,0,2,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,2],[1,0,2,2]],[[0,0,1,2],[2,3,2,2],[0,3,3,2],[1,1,1,1]],[[0,0,1,1],[2,3,2,3],[0,3,3,2],[1,1,1,1]],[[0,0,1,1],[2,3,2,2],[0,4,3,2],[1,1,1,1]],[[0,0,1,1],[2,3,2,2],[0,3,4,2],[1,1,1,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,3],[1,1,1,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,2],[1,1,1,2]],[[0,0,1,2],[2,3,2,2],[0,3,3,2],[1,1,2,0]],[[0,0,1,1],[2,3,2,3],[0,3,3,2],[1,1,2,0]],[[0,0,1,1],[2,3,2,2],[0,4,3,2],[1,1,2,0]],[[0,0,1,1],[2,3,2,2],[0,3,4,2],[1,1,2,0]],[[0,0,1,1],[2,3,2,2],[0,3,3,3],[1,1,2,0]],[[0,0,1,1],[2,3,2,2],[0,3,3,2],[1,1,3,0]],[[0,0,1,2],[2,3,2,2],[0,3,3,2],[1,2,0,1]],[[0,0,1,1],[2,3,2,3],[0,3,3,2],[1,2,0,1]],[[0,0,1,1],[2,3,2,2],[0,4,3,2],[1,2,0,1]],[[0,0,1,1],[2,3,2,2],[0,3,4,2],[1,2,0,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,3],[1,2,0,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,2],[2,2,0,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,2],[1,3,0,1]],[[0,0,1,1],[2,3,2,2],[0,3,3,2],[1,2,0,2]],[[0,0,1,2],[2,3,2,2],[0,3,3,2],[1,2,1,0]],[[0,0,1,1],[2,3,2,3],[0,3,3,2],[1,2,1,0]],[[0,0,1,1],[2,3,2,2],[0,4,3,2],[1,2,1,0]],[[0,0,1,1],[2,3,2,2],[0,3,4,2],[1,2,1,0]],[[0,0,1,1],[2,3,2,2],[0,3,3,3],[1,2,1,0]],[[0,0,1,1],[2,3,2,2],[0,3,3,2],[2,2,1,0]],[[0,0,1,1],[2,3,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,3,2],[2,0,1,1],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[2,0,1,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[2,0,1,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[2,0,1,1],[0,2,1,0]],[[0,0,1,1],[2,3,2,3],[1,1,3,2],[0,2,2,1]],[[0,0,1,1],[2,3,2,2],[1,1,3,3],[0,2,2,1]],[[0,0,1,1],[2,3,2,2],[1,1,3,2],[0,2,3,1]],[[0,0,1,1],[2,3,2,2],[1,1,3,2],[0,2,2,2]],[[0,0,1,2],[2,3,2,2],[1,2,2,2],[0,2,2,1]],[[0,0,1,1],[2,3,2,3],[1,2,2,2],[0,2,2,1]],[[0,0,1,1],[2,3,2,2],[1,2,2,3],[0,2,2,1]],[[0,0,1,1],[2,3,2,2],[1,2,2,2],[0,3,2,1]],[[0,0,1,1],[2,3,2,2],[1,2,2,2],[0,2,3,1]],[[0,0,1,1],[2,3,2,2],[1,2,2,2],[0,2,2,2]],[[0,0,1,1],[2,3,2,2],[1,2,4,1],[0,2,2,1]],[[0,0,1,1],[2,3,2,2],[1,2,3,1],[0,3,2,1]],[[0,0,1,1],[2,3,2,2],[1,2,3,1],[0,2,3,1]],[[0,0,1,1],[2,3,2,2],[1,2,3,1],[0,2,2,2]],[[0,0,1,2],[2,3,2,2],[1,2,3,2],[0,2,1,1]],[[0,0,1,1],[2,3,2,3],[1,2,3,2],[0,2,1,1]],[[0,0,1,1],[2,3,2,2],[1,2,4,2],[0,2,1,1]],[[0,0,1,1],[2,3,2,2],[1,2,3,3],[0,2,1,1]],[[0,0,1,1],[2,3,2,2],[1,2,3,2],[0,2,1,2]],[[0,0,1,2],[2,3,2,2],[1,2,3,2],[0,2,2,0]],[[0,0,1,1],[2,3,2,3],[1,2,3,2],[0,2,2,0]],[[0,0,1,1],[2,3,2,2],[1,2,4,2],[0,2,2,0]],[[0,0,1,1],[2,3,2,2],[1,2,3,3],[0,2,2,0]],[[0,0,1,1],[2,3,2,2],[1,2,3,2],[0,3,2,0]],[[0,0,1,1],[2,3,2,2],[1,2,3,2],[0,2,3,0]],[[2,2,2,1],[2,3,3,2],[2,0,1,1],[0,2,1,0]],[[1,2,2,1],[3,3,3,2],[2,0,1,1],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[2,0,1,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[2,0,1,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,2],[2,0,1,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[2,0,1,1],[0,2,0,1]],[[0,0,1,2],[2,3,2,2],[1,3,1,2],[0,2,2,1]],[[0,0,1,1],[2,3,2,3],[1,3,1,2],[0,2,2,1]],[[0,0,1,1],[2,3,2,2],[1,4,1,2],[0,2,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,1,3],[0,2,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,1,2],[0,3,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,1,2],[0,2,3,1]],[[0,0,1,1],[2,3,2,2],[1,3,1,2],[0,2,2,2]],[[0,0,1,1],[2,3,2,2],[1,4,2,1],[0,2,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,2,1],[0,3,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,2,1],[0,2,3,1]],[[0,0,1,1],[2,3,2,2],[1,3,2,1],[0,2,2,2]],[[0,0,1,2],[2,3,2,2],[1,3,2,2],[0,1,2,1]],[[0,0,1,1],[2,3,2,3],[1,3,2,2],[0,1,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,2,3],[0,1,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,2,2],[0,1,3,1]],[[0,0,1,1],[2,3,2,2],[1,3,2,2],[0,1,2,2]],[[0,0,1,1],[2,3,2,2],[1,4,2,2],[0,2,2,0]],[[0,0,1,1],[2,3,2,2],[1,3,2,2],[0,3,2,0]],[[0,0,1,1],[2,3,2,2],[1,3,2,2],[0,2,3,0]],[[0,0,1,2],[2,3,2,2],[1,3,2,2],[1,0,2,1]],[[0,0,1,1],[2,3,2,3],[1,3,2,2],[1,0,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,2,3],[1,0,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,2,2],[1,0,3,1]],[[0,0,1,1],[2,3,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[3,3,3,2],[2,0,1,1],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[2,0,1,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[2,0,1,1],[0,1,2,0]],[[1,3,2,1],[2,3,3,2],[2,0,1,1],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[2,0,1,1],[0,1,2,0]],[[0,0,1,1],[2,3,2,2],[1,4,3,1],[0,1,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,4,1],[0,1,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,1],[0,1,3,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,1],[0,1,2,2]],[[0,0,1,1],[2,3,2,2],[1,4,3,1],[0,2,1,1]],[[0,0,1,1],[2,3,2,2],[1,3,4,1],[0,2,1,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,1],[0,3,1,1]],[[0,0,1,1],[2,3,2,2],[1,4,3,1],[1,0,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,4,1],[1,0,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,1],[1,0,3,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,1],[3,3,3,2],[2,0,1,1],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[2,0,1,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[2,0,1,1],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[2,0,1,1],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[2,0,1,1],[0,1,1,1]],[[0,0,1,2],[2,3,2,2],[1,3,3,2],[0,0,2,1]],[[0,0,1,1],[2,3,2,3],[1,3,3,2],[0,0,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,4,2],[0,0,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,3],[0,0,2,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,2],[0,0,2,2]],[[0,0,1,2],[2,3,2,2],[1,3,3,2],[0,1,1,1]],[[0,0,1,1],[2,3,2,3],[1,3,3,2],[0,1,1,1]],[[0,0,1,1],[2,3,2,2],[1,4,3,2],[0,1,1,1]],[[0,0,1,1],[2,3,2,2],[1,3,4,2],[0,1,1,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,3],[0,1,1,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,2],[0,1,1,2]],[[0,0,1,2],[2,3,2,2],[1,3,3,2],[0,1,2,0]],[[0,0,1,1],[2,3,2,3],[1,3,3,2],[0,1,2,0]],[[0,0,1,1],[2,3,2,2],[1,4,3,2],[0,1,2,0]],[[0,0,1,1],[2,3,2,2],[1,3,4,2],[0,1,2,0]],[[0,0,1,1],[2,3,2,2],[1,3,3,3],[0,1,2,0]],[[0,0,1,1],[2,3,2,2],[1,3,3,2],[0,1,3,0]],[[0,0,1,2],[2,3,2,2],[1,3,3,2],[0,2,0,1]],[[0,0,1,1],[2,3,2,3],[1,3,3,2],[0,2,0,1]],[[0,0,1,1],[2,3,2,2],[1,4,3,2],[0,2,0,1]],[[0,0,1,1],[2,3,2,2],[1,3,4,2],[0,2,0,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,3],[0,2,0,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,2],[0,3,0,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,2],[0,2,0,2]],[[0,0,1,2],[2,3,2,2],[1,3,3,2],[0,2,1,0]],[[0,0,1,1],[2,3,2,3],[1,3,3,2],[0,2,1,0]],[[0,0,1,1],[2,3,2,2],[1,4,3,2],[0,2,1,0]],[[0,0,1,1],[2,3,2,2],[1,3,4,2],[0,2,1,0]],[[0,0,1,1],[2,3,2,2],[1,3,3,3],[0,2,1,0]],[[0,0,1,1],[2,3,2,2],[1,3,3,2],[0,3,1,0]],[[0,0,1,2],[2,3,2,2],[1,3,3,2],[1,0,1,1]],[[0,0,1,1],[2,3,2,3],[1,3,3,2],[1,0,1,1]],[[0,0,1,1],[2,3,2,2],[1,4,3,2],[1,0,1,1]],[[0,0,1,1],[2,3,2,2],[1,3,4,2],[1,0,1,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,3],[1,0,1,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,2],[1,0,1,2]],[[0,0,1,2],[2,3,2,2],[1,3,3,2],[1,0,2,0]],[[0,0,1,1],[2,3,2,3],[1,3,3,2],[1,0,2,0]],[[0,0,1,1],[2,3,2,2],[1,4,3,2],[1,0,2,0]],[[0,0,1,1],[2,3,2,2],[1,3,4,2],[1,0,2,0]],[[0,0,1,1],[2,3,2,2],[1,3,3,3],[1,0,2,0]],[[0,0,1,1],[2,3,2,2],[1,3,3,2],[1,0,3,0]],[[0,0,1,2],[2,3,2,2],[1,3,3,2],[1,1,0,1]],[[0,0,1,1],[2,3,2,3],[1,3,3,2],[1,1,0,1]],[[0,0,1,1],[2,3,2,2],[1,4,3,2],[1,1,0,1]],[[0,0,1,1],[2,3,2,2],[1,3,4,2],[1,1,0,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,3],[1,1,0,1]],[[0,0,1,1],[2,3,2,2],[1,3,3,2],[1,1,0,2]],[[0,0,1,2],[2,3,2,2],[1,3,3,2],[1,1,1,0]],[[0,0,1,1],[2,3,2,3],[1,3,3,2],[1,1,1,0]],[[0,0,1,1],[2,3,2,2],[1,4,3,2],[1,1,1,0]],[[0,0,1,1],[2,3,2,2],[1,3,4,2],[1,1,1,0]],[[0,0,1,1],[2,3,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,3,3,2],[2,0,1,0],[1,2,1,0]],[[1,2,2,2],[2,3,3,2],[2,0,1,0],[1,2,1,0]],[[1,2,3,1],[2,3,3,2],[2,0,1,0],[1,2,1,0]],[[1,3,2,1],[2,3,3,2],[2,0,1,0],[1,2,1,0]],[[2,2,2,1],[2,3,3,2],[2,0,1,0],[1,2,1,0]],[[1,2,2,1],[3,3,3,2],[2,0,1,0],[1,2,0,1]],[[1,2,2,2],[2,3,3,2],[2,0,1,0],[1,2,0,1]],[[1,2,3,1],[2,3,3,2],[2,0,1,0],[1,2,0,1]],[[1,3,2,1],[2,3,3,2],[2,0,1,0],[1,2,0,1]],[[2,2,2,1],[2,3,3,2],[2,0,1,0],[1,2,0,1]],[[1,2,2,1],[3,3,3,2],[2,0,0,2],[1,2,0,0]],[[1,2,2,2],[2,3,3,2],[2,0,0,2],[1,2,0,0]],[[1,2,3,1],[2,3,3,2],[2,0,0,2],[1,2,0,0]],[[1,3,2,1],[2,3,3,2],[2,0,0,2],[1,2,0,0]],[[2,2,2,1],[2,3,3,2],[2,0,0,2],[1,2,0,0]],[[1,2,2,1],[2,3,3,3],[2,0,0,2],[0,0,2,1]],[[1,2,2,2],[2,3,3,2],[2,0,0,2],[0,0,2,1]],[[1,2,3,1],[2,3,3,2],[2,0,0,2],[0,0,2,1]],[[1,3,2,1],[2,3,3,2],[2,0,0,2],[0,0,2,1]],[[2,2,2,1],[2,3,3,2],[2,0,0,2],[0,0,2,1]],[[1,2,2,1],[3,3,3,2],[2,0,0,1],[1,2,1,0]],[[1,2,2,2],[2,3,3,2],[2,0,0,1],[1,2,1,0]],[[1,2,3,1],[2,3,3,2],[2,0,0,1],[1,2,1,0]],[[1,3,2,1],[2,3,3,2],[2,0,0,1],[1,2,1,0]],[[2,2,2,1],[2,3,3,2],[2,0,0,1],[1,2,1,0]],[[1,2,2,1],[3,3,3,2],[2,0,0,1],[1,2,0,1]],[[1,2,2,2],[2,3,3,2],[2,0,0,1],[1,2,0,1]],[[1,2,3,1],[2,3,3,2],[2,0,0,1],[1,2,0,1]],[[1,3,2,1],[2,3,3,2],[2,0,0,1],[1,2,0,1]],[[2,2,2,1],[2,3,3,2],[2,0,0,1],[1,2,0,1]],[[1,2,2,1],[3,3,3,2],[2,0,0,1],[1,0,2,1]],[[1,2,2,2],[2,3,3,2],[2,0,0,1],[1,0,2,1]],[[1,2,3,1],[2,3,3,2],[2,0,0,1],[1,0,2,1]],[[1,3,2,1],[2,3,3,2],[2,0,0,1],[1,0,2,1]],[[2,2,2,1],[2,3,3,2],[2,0,0,1],[1,0,2,1]],[[1,2,2,1],[3,3,3,2],[2,0,0,1],[0,1,2,1]],[[1,2,2,2],[2,3,3,2],[2,0,0,1],[0,1,2,1]],[[1,2,3,1],[2,3,3,2],[2,0,0,1],[0,1,2,1]],[[1,3,2,1],[2,3,3,2],[2,0,0,1],[0,1,2,1]],[[2,2,2,1],[2,3,3,2],[2,0,0,1],[0,1,2,1]],[[1,2,2,1],[3,3,3,2],[2,0,0,0],[1,2,2,0]],[[1,2,2,2],[2,3,3,2],[2,0,0,0],[1,2,2,0]],[[1,2,3,1],[2,3,3,2],[2,0,0,0],[1,2,2,0]],[[1,3,2,1],[2,3,3,2],[2,0,0,0],[1,2,2,0]],[[2,2,2,1],[2,3,3,2],[2,0,0,0],[1,2,2,0]],[[1,2,2,1],[2,3,3,3],[1,3,0,2],[0,0,0,1]],[[1,2,2,2],[2,3,3,2],[1,3,0,2],[0,0,0,1]],[[1,2,3,1],[2,3,3,2],[1,3,0,2],[0,0,0,1]],[[1,3,2,1],[2,3,3,2],[1,3,0,2],[0,0,0,1]],[[2,2,2,1],[2,3,3,2],[1,3,0,2],[0,0,0,1]],[[0,0,1,1],[2,3,3,0],[0,2,4,2],[1,2,2,1]],[[0,0,1,1],[2,3,3,0],[0,2,3,2],[2,2,2,1]],[[0,0,1,1],[2,3,3,0],[0,2,3,2],[1,3,2,1]],[[0,0,1,1],[2,3,3,0],[0,2,3,2],[1,2,3,1]],[[0,0,1,1],[2,3,3,0],[0,2,3,2],[1,2,2,2]],[[0,0,1,1],[2,3,3,0],[0,4,2,2],[1,2,2,1]],[[0,0,1,1],[2,3,3,0],[0,3,2,2],[2,2,2,1]],[[0,0,1,1],[2,3,3,0],[0,3,2,2],[1,3,2,1]],[[0,0,1,1],[2,3,3,0],[0,3,2,2],[1,2,3,1]],[[0,0,1,1],[2,3,3,0],[0,3,2,2],[1,2,2,2]],[[0,0,1,1],[2,3,3,0],[0,4,3,2],[1,1,2,1]],[[0,0,1,1],[2,3,3,0],[0,3,4,2],[1,1,2,1]],[[0,0,1,1],[2,3,3,0],[0,3,3,2],[1,1,3,1]],[[0,0,1,1],[2,3,3,0],[0,3,3,2],[1,1,2,2]],[[0,0,1,1],[2,3,3,0],[0,4,3,2],[1,2,1,1]],[[0,0,1,1],[2,3,3,0],[0,3,4,2],[1,2,1,1]],[[0,0,1,1],[2,3,3,0],[0,3,3,2],[2,2,1,1]],[[0,0,1,1],[2,3,3,0],[0,3,3,2],[1,3,1,1]],[[0,0,1,1],[2,3,3,0],[1,2,4,2],[0,2,2,1]],[[0,0,1,1],[2,3,3,0],[1,2,3,2],[0,3,2,1]],[[0,0,1,1],[2,3,3,0],[1,2,3,2],[0,2,3,1]],[[0,0,1,1],[2,3,3,0],[1,2,3,2],[0,2,2,2]],[[0,0,1,1],[2,3,3,0],[1,4,2,2],[0,2,2,1]],[[0,0,1,1],[2,3,3,0],[1,3,2,2],[0,3,2,1]],[[0,0,1,1],[2,3,3,0],[1,3,2,2],[0,2,3,1]],[[0,0,1,1],[2,3,3,0],[1,3,2,2],[0,2,2,2]],[[0,0,1,1],[2,3,3,0],[1,4,3,2],[0,1,2,1]],[[0,0,1,1],[2,3,3,0],[1,3,4,2],[0,1,2,1]],[[0,0,1,1],[2,3,3,0],[1,3,3,2],[0,1,3,1]],[[0,0,1,1],[2,3,3,0],[1,3,3,2],[0,1,2,2]],[[0,0,1,1],[2,3,3,0],[1,4,3,2],[0,2,1,1]],[[0,0,1,1],[2,3,3,0],[1,3,4,2],[0,2,1,1]],[[0,0,1,1],[2,3,3,0],[1,3,3,2],[0,3,1,1]],[[0,0,1,1],[2,3,3,0],[1,4,3,2],[1,0,2,1]],[[0,0,1,1],[2,3,3,0],[1,3,4,2],[1,0,2,1]],[[0,0,1,1],[2,3,3,0],[1,3,3,2],[1,0,3,1]],[[0,0,1,1],[2,3,3,0],[1,3,3,2],[1,0,2,2]],[[0,0,1,1],[2,3,3,1],[0,1,3,3],[1,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,1,3,2],[1,2,3,1]],[[0,0,1,1],[2,3,3,1],[0,1,3,2],[1,2,2,2]],[[0,0,1,1],[2,3,3,1],[0,2,2,3],[1,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,2,2,2],[2,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,2,2,2],[1,3,2,1]],[[0,0,1,1],[2,3,3,1],[0,2,2,2],[1,2,3,1]],[[0,0,1,1],[2,3,3,1],[0,2,2,2],[1,2,2,2]],[[0,0,1,1],[2,3,4,1],[0,2,3,1],[1,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,2,4,1],[1,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,2,3,1],[2,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,2,3,1],[1,3,2,1]],[[0,0,1,1],[2,3,3,1],[0,2,3,1],[1,2,3,1]],[[0,0,1,1],[2,3,3,1],[0,2,3,1],[1,2,2,2]],[[0,0,1,1],[2,3,4,1],[0,2,3,2],[1,2,1,1]],[[0,0,1,1],[2,3,3,1],[0,2,4,2],[1,2,1,1]],[[0,0,1,1],[2,3,3,1],[0,2,3,3],[1,2,1,1]],[[0,0,1,1],[2,3,3,1],[0,2,3,2],[1,2,1,2]],[[0,0,1,1],[2,3,4,1],[0,2,3,2],[1,2,2,0]],[[0,0,1,1],[2,3,3,1],[0,2,4,2],[1,2,2,0]],[[0,0,1,1],[2,3,3,1],[0,2,3,3],[1,2,2,0]],[[0,0,1,1],[2,3,3,1],[0,2,3,2],[2,2,2,0]],[[0,0,1,1],[2,3,3,1],[0,2,3,2],[1,3,2,0]],[[0,0,1,1],[2,3,3,1],[0,2,3,2],[1,2,3,0]],[[0,0,1,1],[2,3,3,1],[0,4,1,2],[1,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,1,3],[1,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,1,2],[2,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,1,2],[1,3,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,1,2],[1,2,3,1]],[[0,0,1,1],[2,3,3,1],[0,3,1,2],[1,2,2,2]],[[0,0,1,1],[2,3,3,1],[0,4,2,1],[1,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,2,1],[2,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,2,1],[1,3,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,2,1],[1,2,3,1]],[[0,0,1,1],[2,3,3,1],[0,3,2,1],[1,2,2,2]],[[0,0,1,1],[2,3,3,1],[0,3,2,3],[1,1,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,2,2],[1,1,3,1]],[[0,0,1,1],[2,3,3,1],[0,3,2,2],[1,1,2,2]],[[0,0,1,1],[2,3,3,1],[0,4,2,2],[1,2,2,0]],[[0,0,1,1],[2,3,3,1],[0,3,2,2],[2,2,2,0]],[[0,0,1,1],[2,3,3,1],[0,3,2,2],[1,3,2,0]],[[0,0,1,1],[2,3,3,1],[0,3,2,2],[1,2,3,0]],[[0,0,1,1],[2,3,3,1],[0,4,3,0],[1,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,0],[2,2,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,0],[1,3,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,0],[1,2,3,1]],[[0,0,1,1],[2,3,4,1],[0,3,3,1],[1,1,2,1]],[[0,0,1,1],[2,3,3,1],[0,4,3,1],[1,1,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,4,1],[1,1,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,1],[1,1,3,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,1],[1,1,2,2]],[[0,0,1,1],[2,3,4,1],[0,3,3,1],[1,2,1,1]],[[0,0,1,1],[2,3,3,1],[0,4,3,1],[1,2,1,1]],[[0,0,1,1],[2,3,3,1],[0,3,4,1],[1,2,1,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,1],[2,2,1,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,1],[1,3,1,1]],[[0,0,1,1],[2,3,4,1],[0,3,3,2],[1,0,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,4,2],[1,0,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,3],[1,0,2,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,2],[1,0,2,2]],[[0,0,1,1],[2,3,4,1],[0,3,3,2],[1,1,1,1]],[[0,0,1,1],[2,3,3,1],[0,4,3,2],[1,1,1,1]],[[0,0,1,1],[2,3,3,1],[0,3,4,2],[1,1,1,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,3],[1,1,1,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,2],[1,1,1,2]],[[0,0,1,1],[2,3,4,1],[0,3,3,2],[1,1,2,0]],[[0,0,1,1],[2,3,3,1],[0,4,3,2],[1,1,2,0]],[[0,0,1,1],[2,3,3,1],[0,3,4,2],[1,1,2,0]],[[0,0,1,1],[2,3,3,1],[0,3,3,3],[1,1,2,0]],[[0,0,1,1],[2,3,3,1],[0,3,3,2],[1,1,3,0]],[[0,0,1,1],[2,3,4,1],[0,3,3,2],[1,2,0,1]],[[0,0,1,1],[2,3,3,1],[0,4,3,2],[1,2,0,1]],[[0,0,1,1],[2,3,3,1],[0,3,4,2],[1,2,0,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,3],[1,2,0,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,2],[2,2,0,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,2],[1,3,0,1]],[[0,0,1,1],[2,3,3,1],[0,3,3,2],[1,2,0,2]],[[0,0,1,1],[2,3,4,1],[0,3,3,2],[1,2,1,0]],[[0,0,1,1],[2,3,3,1],[0,4,3,2],[1,2,1,0]],[[0,0,1,1],[2,3,3,1],[0,3,4,2],[1,2,1,0]],[[0,0,1,1],[2,3,3,1],[0,3,3,3],[1,2,1,0]],[[0,0,1,1],[2,3,3,1],[0,3,3,2],[2,2,1,0]],[[0,0,1,1],[2,3,3,1],[0,3,3,2],[1,3,1,0]],[[0,0,1,1],[2,3,3,1],[1,1,3,3],[0,2,2,1]],[[0,0,1,1],[2,3,3,1],[1,1,3,2],[0,2,3,1]],[[0,0,1,1],[2,3,3,1],[1,1,3,2],[0,2,2,2]],[[0,0,1,1],[2,3,3,1],[1,2,2,3],[0,2,2,1]],[[0,0,1,1],[2,3,3,1],[1,2,2,2],[0,3,2,1]],[[0,0,1,1],[2,3,3,1],[1,2,2,2],[0,2,3,1]],[[0,0,1,1],[2,3,3,1],[1,2,2,2],[0,2,2,2]],[[0,0,1,1],[2,3,4,1],[1,2,3,1],[0,2,2,1]],[[0,0,1,1],[2,3,3,1],[1,2,4,1],[0,2,2,1]],[[0,0,1,1],[2,3,3,1],[1,2,3,1],[0,3,2,1]],[[0,0,1,1],[2,3,3,1],[1,2,3,1],[0,2,3,1]],[[0,0,1,1],[2,3,3,1],[1,2,3,1],[0,2,2,2]],[[0,0,1,1],[2,3,4,1],[1,2,3,2],[0,2,1,1]],[[0,0,1,1],[2,3,3,1],[1,2,4,2],[0,2,1,1]],[[0,0,1,1],[2,3,3,1],[1,2,3,3],[0,2,1,1]],[[0,0,1,1],[2,3,3,1],[1,2,3,2],[0,2,1,2]],[[0,0,1,1],[2,3,4,1],[1,2,3,2],[0,2,2,0]],[[0,0,1,1],[2,3,3,1],[1,2,4,2],[0,2,2,0]],[[0,0,1,1],[2,3,3,1],[1,2,3,3],[0,2,2,0]],[[0,0,1,1],[2,3,3,1],[1,2,3,2],[0,3,2,0]],[[0,0,1,1],[2,3,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,3,3,3],[1,2,0,2],[1,0,0,1]],[[1,2,2,2],[2,3,3,2],[1,2,0,2],[1,0,0,1]],[[1,2,3,1],[2,3,3,2],[1,2,0,2],[1,0,0,1]],[[1,3,2,1],[2,3,3,2],[1,2,0,2],[1,0,0,1]],[[2,2,2,1],[2,3,3,2],[1,2,0,2],[1,0,0,1]],[[0,0,1,1],[2,3,3,1],[1,4,1,2],[0,2,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,1,3],[0,2,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,1,2],[0,3,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,1,2],[0,2,3,1]],[[0,0,1,1],[2,3,3,1],[1,3,1,2],[0,2,2,2]],[[0,0,1,1],[2,3,3,1],[1,4,2,1],[0,2,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,2,1],[0,3,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,2,1],[0,2,3,1]],[[0,0,1,1],[2,3,3,1],[1,3,2,1],[0,2,2,2]],[[0,0,1,1],[2,3,3,1],[1,3,2,3],[0,1,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,2,2],[0,1,3,1]],[[0,0,1,1],[2,3,3,1],[1,3,2,2],[0,1,2,2]],[[0,0,1,1],[2,3,3,1],[1,4,2,2],[0,2,2,0]],[[0,0,1,1],[2,3,3,1],[1,3,2,2],[0,3,2,0]],[[0,0,1,1],[2,3,3,1],[1,3,2,2],[0,2,3,0]],[[0,0,1,1],[2,3,3,1],[1,3,2,3],[1,0,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,2,2],[1,0,3,1]],[[0,0,1,1],[2,3,3,1],[1,3,2,2],[1,0,2,2]],[[0,0,1,1],[2,3,3,1],[1,4,3,0],[0,2,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,0],[0,3,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,0],[0,2,3,1]],[[0,0,1,1],[2,3,4,1],[1,3,3,1],[0,1,2,1]],[[0,0,1,1],[2,3,3,1],[1,4,3,1],[0,1,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,4,1],[0,1,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,1],[0,1,3,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,1],[0,1,2,2]],[[0,0,1,1],[2,3,4,1],[1,3,3,1],[0,2,1,1]],[[0,0,1,1],[2,3,3,1],[1,4,3,1],[0,2,1,1]],[[0,0,1,1],[2,3,3,1],[1,3,4,1],[0,2,1,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,1],[0,3,1,1]],[[0,0,1,1],[2,3,4,1],[1,3,3,1],[1,0,2,1]],[[0,0,1,1],[2,3,3,1],[1,4,3,1],[1,0,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,4,1],[1,0,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,1],[1,0,3,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,1],[1,0,2,2]],[[0,0,1,1],[2,3,4,1],[1,3,3,1],[1,1,1,1]],[[0,0,1,1],[2,3,3,1],[1,4,3,1],[1,1,1,1]],[[0,0,1,1],[2,3,3,1],[1,3,4,1],[1,1,1,1]],[[0,0,1,1],[2,3,4,1],[1,3,3,2],[0,0,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,4,2],[0,0,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,3],[0,0,2,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,2],[0,0,2,2]],[[0,0,1,1],[2,3,4,1],[1,3,3,2],[0,1,1,1]],[[0,0,1,1],[2,3,3,1],[1,4,3,2],[0,1,1,1]],[[0,0,1,1],[2,3,3,1],[1,3,4,2],[0,1,1,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,3],[0,1,1,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,2],[0,1,1,2]],[[0,0,1,1],[2,3,4,1],[1,3,3,2],[0,1,2,0]],[[0,0,1,1],[2,3,3,1],[1,4,3,2],[0,1,2,0]],[[0,0,1,1],[2,3,3,1],[1,3,4,2],[0,1,2,0]],[[0,0,1,1],[2,3,3,1],[1,3,3,3],[0,1,2,0]],[[0,0,1,1],[2,3,3,1],[1,3,3,2],[0,1,3,0]],[[0,0,1,1],[2,3,4,1],[1,3,3,2],[0,2,0,1]],[[0,0,1,1],[2,3,3,1],[1,4,3,2],[0,2,0,1]],[[0,0,1,1],[2,3,3,1],[1,3,4,2],[0,2,0,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,3],[0,2,0,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,2],[0,3,0,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,2],[0,2,0,2]],[[0,0,1,1],[2,3,4,1],[1,3,3,2],[0,2,1,0]],[[0,0,1,1],[2,3,3,1],[1,4,3,2],[0,2,1,0]],[[0,0,1,1],[2,3,3,1],[1,3,4,2],[0,2,1,0]],[[0,0,1,1],[2,3,3,1],[1,3,3,3],[0,2,1,0]],[[0,0,1,1],[2,3,3,1],[1,3,3,2],[0,3,1,0]],[[0,0,1,1],[2,3,4,1],[1,3,3,2],[1,0,1,1]],[[0,0,1,1],[2,3,3,1],[1,4,3,2],[1,0,1,1]],[[0,0,1,1],[2,3,3,1],[1,3,4,2],[1,0,1,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,3],[1,0,1,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,2],[1,0,1,2]],[[0,0,1,1],[2,3,4,1],[1,3,3,2],[1,0,2,0]],[[0,0,1,1],[2,3,3,1],[1,4,3,2],[1,0,2,0]],[[0,0,1,1],[2,3,3,1],[1,3,4,2],[1,0,2,0]],[[0,0,1,1],[2,3,3,1],[1,3,3,3],[1,0,2,0]],[[0,0,1,1],[2,3,3,1],[1,3,3,2],[1,0,3,0]],[[0,0,1,1],[2,3,4,1],[1,3,3,2],[1,1,0,1]],[[0,0,1,1],[2,3,3,1],[1,4,3,2],[1,1,0,1]],[[0,0,1,1],[2,3,3,1],[1,3,4,2],[1,1,0,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,3],[1,1,0,1]],[[0,0,1,1],[2,3,3,1],[1,3,3,2],[1,1,0,2]],[[0,0,1,1],[2,3,4,1],[1,3,3,2],[1,1,1,0]],[[0,0,1,1],[2,3,3,1],[1,4,3,2],[1,1,1,0]],[[0,0,1,1],[2,3,3,1],[1,3,4,2],[1,1,1,0]],[[0,0,1,1],[2,3,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,3,3,3],[1,1,0,2],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[1,1,0,2],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[1,1,0,2],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[1,1,0,2],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[1,1,0,2],[1,1,1,0]],[[1,2,2,1],[2,3,3,3],[1,1,0,2],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[1,1,0,2],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[1,1,0,2],[1,1,0,1]],[[1,3,2,1],[2,3,3,2],[1,1,0,2],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[1,1,0,2],[1,1,0,1]],[[1,2,2,1],[2,3,3,3],[1,1,0,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[1,1,0,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[1,1,0,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[1,1,0,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[1,1,0,2],[1,0,2,0]],[[1,2,2,1],[2,3,3,3],[1,1,0,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[1,1,0,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[1,1,0,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[1,1,0,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[1,1,0,2],[1,0,1,1]],[[1,2,2,1],[2,3,3,3],[1,1,0,2],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[1,1,0,2],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[1,1,0,2],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[1,1,0,2],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[1,1,0,2],[0,2,1,0]],[[1,2,2,1],[2,3,3,3],[1,1,0,2],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[1,1,0,2],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[1,1,0,2],[0,2,0,1]],[[1,3,2,1],[2,3,3,2],[1,1,0,2],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[1,1,0,2],[0,2,0,1]],[[1,2,2,1],[2,3,3,3],[1,1,0,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[1,1,0,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[1,1,0,2],[0,1,2,0]],[[1,3,2,1],[2,3,3,2],[1,1,0,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[1,1,0,2],[0,1,2,0]],[[1,2,2,1],[2,3,3,3],[1,1,0,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[1,1,0,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[1,1,0,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[1,1,0,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[1,1,0,2],[0,1,1,1]],[[0,0,1,2],[2,3,3,2],[0,2,1,2],[1,2,2,1]],[[0,0,1,1],[2,3,4,2],[0,2,1,2],[1,2,2,1]],[[0,0,1,1],[2,3,3,3],[0,2,1,2],[1,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,2,1,3],[1,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,2,1,2],[2,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,2,1,2],[1,3,2,1]],[[0,0,1,1],[2,3,3,2],[0,2,1,2],[1,2,3,1]],[[0,0,1,1],[2,3,3,2],[0,2,1,2],[1,2,2,2]],[[0,0,1,2],[2,3,3,2],[0,2,2,2],[1,2,1,1]],[[0,0,1,1],[2,3,4,2],[0,2,2,2],[1,2,1,1]],[[0,0,1,1],[2,3,3,3],[0,2,2,2],[1,2,1,1]],[[0,0,1,1],[2,3,3,2],[0,2,2,3],[1,2,1,1]],[[0,0,1,1],[2,3,3,2],[0,2,2,2],[1,2,1,2]],[[0,0,1,2],[2,3,3,2],[0,2,2,2],[1,2,2,0]],[[0,0,1,1],[2,3,4,2],[0,2,2,2],[1,2,2,0]],[[0,0,1,1],[2,3,3,3],[0,2,2,2],[1,2,2,0]],[[0,0,1,1],[2,3,3,2],[0,2,2,3],[1,2,2,0]],[[0,0,1,2],[2,3,3,2],[0,2,3,0],[1,2,2,1]],[[0,0,1,1],[2,3,4,2],[0,2,3,0],[1,2,2,1]],[[0,0,1,1],[2,3,3,3],[0,2,3,0],[1,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,2,4,0],[1,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,2,3,0],[2,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,2,3,0],[1,3,2,1]],[[0,0,1,1],[2,3,3,2],[0,2,3,0],[1,2,3,1]],[[0,0,1,1],[2,3,3,2],[0,2,3,0],[1,2,2,2]],[[0,0,1,2],[2,3,3,2],[0,2,3,1],[1,2,1,1]],[[0,0,1,1],[2,3,4,2],[0,2,3,1],[1,2,1,1]],[[0,0,1,1],[2,3,3,3],[0,2,3,1],[1,2,1,1]],[[0,0,1,1],[2,3,3,2],[0,2,4,1],[1,2,1,1]],[[0,0,1,2],[2,3,3,2],[0,2,3,1],[1,2,2,0]],[[0,0,1,1],[2,3,4,2],[0,2,3,1],[1,2,2,0]],[[0,0,1,1],[2,3,3,3],[0,2,3,1],[1,2,2,0]],[[0,0,1,1],[2,3,3,2],[0,2,4,1],[1,2,2,0]],[[0,0,1,1],[2,3,3,2],[0,2,3,1],[2,2,2,0]],[[0,0,1,1],[2,3,3,2],[0,2,3,1],[1,3,2,0]],[[0,0,1,1],[2,3,3,2],[0,2,3,1],[1,2,3,0]],[[0,0,1,2],[2,3,3,2],[0,3,0,2],[1,2,2,1]],[[0,0,1,1],[2,3,4,2],[0,3,0,2],[1,2,2,1]],[[0,0,1,1],[2,3,3,3],[0,3,0,2],[1,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,4,0,2],[1,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,0,3],[1,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,0,2],[2,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,0,2],[1,3,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,0,2],[1,2,3,1]],[[0,0,1,1],[2,3,3,2],[0,3,0,2],[1,2,2,2]],[[0,0,1,2],[2,3,3,2],[0,3,1,2],[1,1,2,1]],[[0,0,1,1],[2,3,4,2],[0,3,1,2],[1,1,2,1]],[[0,0,1,1],[2,3,3,3],[0,3,1,2],[1,1,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,1,3],[1,1,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,1,2],[1,1,3,1]],[[0,0,1,1],[2,3,3,2],[0,3,1,2],[1,1,2,2]],[[0,0,1,1],[2,3,3,2],[0,4,2,0],[1,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,2,0],[2,2,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,2,0],[1,3,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,2,0],[1,2,3,1]],[[0,0,1,1],[2,3,3,2],[0,3,2,0],[1,2,2,2]],[[0,0,1,1],[2,3,3,2],[0,4,2,1],[1,2,2,0]],[[0,0,1,1],[2,3,3,2],[0,3,2,1],[2,2,2,0]],[[0,0,1,1],[2,3,3,2],[0,3,2,1],[1,3,2,0]],[[0,0,1,1],[2,3,3,2],[0,3,2,1],[1,2,3,0]],[[0,0,1,2],[2,3,3,2],[0,3,2,2],[1,0,2,1]],[[0,0,1,1],[2,3,4,2],[0,3,2,2],[1,0,2,1]],[[0,0,1,1],[2,3,3,3],[0,3,2,2],[1,0,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,2,3],[1,0,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,2,2],[1,0,2,2]],[[0,0,1,2],[2,3,3,2],[0,3,2,2],[1,1,1,1]],[[0,0,1,1],[2,3,4,2],[0,3,2,2],[1,1,1,1]],[[0,0,1,1],[2,3,3,3],[0,3,2,2],[1,1,1,1]],[[0,0,1,1],[2,3,3,2],[0,3,2,3],[1,1,1,1]],[[0,0,1,1],[2,3,3,2],[0,3,2,2],[1,1,1,2]],[[0,0,1,2],[2,3,3,2],[0,3,2,2],[1,1,2,0]],[[0,0,1,1],[2,3,4,2],[0,3,2,2],[1,1,2,0]],[[0,0,1,1],[2,3,3,3],[0,3,2,2],[1,1,2,0]],[[0,0,1,1],[2,3,3,2],[0,3,2,3],[1,1,2,0]],[[0,0,1,2],[2,3,3,2],[0,3,2,2],[1,2,0,1]],[[0,0,1,1],[2,3,4,2],[0,3,2,2],[1,2,0,1]],[[0,0,1,1],[2,3,3,3],[0,3,2,2],[1,2,0,1]],[[0,0,1,1],[2,3,3,2],[0,3,2,3],[1,2,0,1]],[[0,0,1,1],[2,3,3,2],[0,3,2,2],[1,2,0,2]],[[0,0,1,2],[2,3,3,2],[0,3,2,2],[1,2,1,0]],[[0,0,1,1],[2,3,4,2],[0,3,2,2],[1,2,1,0]],[[0,0,1,1],[2,3,3,3],[0,3,2,2],[1,2,1,0]],[[0,0,1,1],[2,3,3,2],[0,3,2,3],[1,2,1,0]],[[0,0,1,2],[2,3,3,2],[0,3,3,0],[1,1,2,1]],[[0,0,1,1],[2,3,4,2],[0,3,3,0],[1,1,2,1]],[[0,0,1,1],[2,3,3,3],[0,3,3,0],[1,1,2,1]],[[0,0,1,1],[2,3,3,2],[0,4,3,0],[1,1,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,4,0],[1,1,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,3,0],[1,1,3,1]],[[0,0,1,1],[2,3,3,2],[0,3,3,0],[1,1,2,2]],[[0,0,1,2],[2,3,3,2],[0,3,3,0],[1,2,1,1]],[[0,0,1,1],[2,3,4,2],[0,3,3,0],[1,2,1,1]],[[0,0,1,1],[2,3,3,3],[0,3,3,0],[1,2,1,1]],[[0,0,1,1],[2,3,3,2],[0,4,3,0],[1,2,1,1]],[[0,0,1,1],[2,3,3,2],[0,3,4,0],[1,2,1,1]],[[0,0,1,1],[2,3,3,2],[0,3,3,0],[2,2,1,1]],[[0,0,1,1],[2,3,3,2],[0,3,3,0],[1,3,1,1]],[[0,0,1,2],[2,3,3,2],[0,3,3,1],[1,0,2,1]],[[0,0,1,1],[2,3,4,2],[0,3,3,1],[1,0,2,1]],[[0,0,1,1],[2,3,3,3],[0,3,3,1],[1,0,2,1]],[[0,0,1,1],[2,3,3,2],[0,3,4,1],[1,0,2,1]],[[0,0,1,2],[2,3,3,2],[0,3,3,1],[1,1,1,1]],[[0,0,1,1],[2,3,4,2],[0,3,3,1],[1,1,1,1]],[[0,0,1,1],[2,3,3,3],[0,3,3,1],[1,1,1,1]],[[0,0,1,1],[2,3,3,2],[0,4,3,1],[1,1,1,1]],[[0,0,1,1],[2,3,3,2],[0,3,4,1],[1,1,1,1]],[[0,0,1,2],[2,3,3,2],[0,3,3,1],[1,1,2,0]],[[0,0,1,1],[2,3,4,2],[0,3,3,1],[1,1,2,0]],[[0,0,1,1],[2,3,3,3],[0,3,3,1],[1,1,2,0]],[[0,0,1,1],[2,3,3,2],[0,4,3,1],[1,1,2,0]],[[0,0,1,1],[2,3,3,2],[0,3,4,1],[1,1,2,0]],[[0,0,1,1],[2,3,3,2],[0,3,3,1],[1,1,3,0]],[[0,0,1,2],[2,3,3,2],[0,3,3,1],[1,2,0,1]],[[0,0,1,1],[2,3,4,2],[0,3,3,1],[1,2,0,1]],[[0,0,1,1],[2,3,3,3],[0,3,3,1],[1,2,0,1]],[[0,0,1,1],[2,3,3,2],[0,4,3,1],[1,2,0,1]],[[0,0,1,1],[2,3,3,2],[0,3,4,1],[1,2,0,1]],[[0,0,1,1],[2,3,3,2],[0,3,3,1],[2,2,0,1]],[[0,0,1,1],[2,3,3,2],[0,3,3,1],[1,3,0,1]],[[0,0,1,2],[2,3,3,2],[0,3,3,1],[1,2,1,0]],[[0,0,1,1],[2,3,4,2],[0,3,3,1],[1,2,1,0]],[[0,0,1,1],[2,3,3,3],[0,3,3,1],[1,2,1,0]],[[0,0,1,1],[2,3,3,2],[0,4,3,1],[1,2,1,0]],[[0,0,1,1],[2,3,3,2],[0,3,4,1],[1,2,1,0]],[[0,0,1,1],[2,3,3,2],[0,3,3,1],[2,2,1,0]],[[0,0,1,1],[2,3,3,2],[0,3,3,1],[1,3,1,0]],[[0,0,1,2],[2,3,3,2],[0,3,3,2],[1,1,0,1]],[[0,0,1,1],[2,3,4,2],[0,3,3,2],[1,1,0,1]],[[0,0,1,1],[2,3,3,3],[0,3,3,2],[1,1,0,1]],[[0,0,1,1],[2,3,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,3,4,2],[1,0,3,0],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[1,0,3,0],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[1,0,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[1,0,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[1,0,3,0],[1,1,1,0]],[[1,2,2,1],[2,3,4,2],[1,0,3,0],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[1,0,3,0],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[1,0,3,0],[1,1,0,1]],[[1,3,2,1],[2,3,3,2],[1,0,3,0],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[1,0,3,0],[1,1,0,1]],[[1,2,2,1],[2,3,4,2],[1,0,3,0],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[1,0,3,0],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[1,0,3,0],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[1,0,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[1,0,3,0],[1,0,2,0]],[[1,2,2,1],[2,3,4,2],[1,0,3,0],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[1,0,3,0],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[1,0,3,0],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[1,0,3,0],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[1,0,3,0],[1,0,1,1]],[[0,0,1,2],[2,3,3,2],[1,2,1,2],[0,2,2,1]],[[0,0,1,1],[2,3,4,2],[1,2,1,2],[0,2,2,1]],[[0,0,1,1],[2,3,3,3],[1,2,1,2],[0,2,2,1]],[[0,0,1,1],[2,3,3,2],[1,2,1,3],[0,2,2,1]],[[0,0,1,1],[2,3,3,2],[1,2,1,2],[0,3,2,1]],[[0,0,1,1],[2,3,3,2],[1,2,1,2],[0,2,3,1]],[[0,0,1,1],[2,3,3,2],[1,2,1,2],[0,2,2,2]],[[0,0,1,2],[2,3,3,2],[1,2,2,2],[0,2,1,1]],[[0,0,1,1],[2,3,4,2],[1,2,2,2],[0,2,1,1]],[[0,0,1,1],[2,3,3,3],[1,2,2,2],[0,2,1,1]],[[0,0,1,1],[2,3,3,2],[1,2,2,3],[0,2,1,1]],[[0,0,1,1],[2,3,3,2],[1,2,2,2],[0,2,1,2]],[[0,0,1,2],[2,3,3,2],[1,2,2,2],[0,2,2,0]],[[0,0,1,1],[2,3,4,2],[1,2,2,2],[0,2,2,0]],[[0,0,1,1],[2,3,3,3],[1,2,2,2],[0,2,2,0]],[[0,0,1,1],[2,3,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,2,1],[2,3,4,2],[1,0,3,0],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[1,0,3,0],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[1,0,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[1,0,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[1,0,3,0],[0,2,1,0]],[[1,2,2,1],[2,3,4,2],[1,0,3,0],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[1,0,3,0],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[1,0,3,0],[0,2,0,1]],[[0,0,1,2],[2,3,3,2],[1,2,3,0],[0,2,2,1]],[[0,0,1,1],[2,3,4,2],[1,2,3,0],[0,2,2,1]],[[0,0,1,1],[2,3,3,3],[1,2,3,0],[0,2,2,1]],[[0,0,1,1],[2,3,3,2],[1,2,4,0],[0,2,2,1]],[[0,0,1,1],[2,3,3,2],[1,2,3,0],[0,3,2,1]],[[0,0,1,1],[2,3,3,2],[1,2,3,0],[0,2,3,1]],[[0,0,1,1],[2,3,3,2],[1,2,3,0],[0,2,2,2]],[[0,0,1,2],[2,3,3,2],[1,2,3,1],[0,2,1,1]],[[0,0,1,1],[2,3,4,2],[1,2,3,1],[0,2,1,1]],[[0,0,1,1],[2,3,3,3],[1,2,3,1],[0,2,1,1]],[[0,0,1,1],[2,3,3,2],[1,2,4,1],[0,2,1,1]],[[0,0,1,2],[2,3,3,2],[1,2,3,1],[0,2,2,0]],[[0,0,1,1],[2,3,4,2],[1,2,3,1],[0,2,2,0]],[[0,0,1,1],[2,3,3,3],[1,2,3,1],[0,2,2,0]],[[0,0,1,1],[2,3,3,2],[1,2,4,1],[0,2,2,0]],[[0,0,1,1],[2,3,3,2],[1,2,3,1],[0,3,2,0]],[[0,0,1,1],[2,3,3,2],[1,2,3,1],[0,2,3,0]],[[1,3,2,1],[2,3,3,2],[1,0,3,0],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[1,0,3,0],[0,2,0,1]],[[1,2,2,1],[2,3,4,2],[1,0,3,0],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[1,0,3,0],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[1,0,3,0],[0,1,2,0]],[[1,3,2,1],[2,3,3,2],[1,0,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[1,0,3,0],[0,1,2,0]],[[1,2,2,1],[2,3,4,2],[1,0,3,0],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[1,0,3,0],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[1,0,3,0],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[1,0,3,0],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[1,0,3,0],[0,1,1,1]],[[1,2,2,1],[2,3,4,2],[1,0,3,0],[0,0,2,1]],[[1,2,2,2],[2,3,3,2],[1,0,3,0],[0,0,2,1]],[[1,2,3,1],[2,3,3,2],[1,0,3,0],[0,0,2,1]],[[1,3,2,1],[2,3,3,2],[1,0,3,0],[0,0,2,1]],[[2,2,2,1],[2,3,3,2],[1,0,3,0],[0,0,2,1]],[[0,0,1,2],[2,3,3,2],[1,3,0,2],[0,2,2,1]],[[0,0,1,1],[2,3,4,2],[1,3,0,2],[0,2,2,1]],[[0,0,1,1],[2,3,3,3],[1,3,0,2],[0,2,2,1]],[[0,0,1,1],[2,3,3,2],[1,4,0,2],[0,2,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,0,3],[0,2,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,0,2],[0,3,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,0,2],[0,2,3,1]],[[0,0,1,1],[2,3,3,2],[1,3,0,2],[0,2,2,2]],[[0,0,1,2],[2,3,3,2],[1,3,1,2],[0,1,2,1]],[[0,0,1,1],[2,3,4,2],[1,3,1,2],[0,1,2,1]],[[0,0,1,1],[2,3,3,3],[1,3,1,2],[0,1,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,1,3],[0,1,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,1,2],[0,1,3,1]],[[0,0,1,1],[2,3,3,2],[1,3,1,2],[0,1,2,2]],[[0,0,1,2],[2,3,3,2],[1,3,1,2],[1,0,2,1]],[[0,0,1,1],[2,3,4,2],[1,3,1,2],[1,0,2,1]],[[0,0,1,1],[2,3,3,3],[1,3,1,2],[1,0,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,1,3],[1,0,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,1,2],[1,0,3,1]],[[0,0,1,1],[2,3,3,2],[1,3,1,2],[1,0,2,2]],[[0,0,1,1],[2,3,3,2],[1,4,2,0],[0,2,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,0],[0,3,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,0],[0,2,3,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,0],[0,2,2,2]],[[0,0,1,1],[2,3,3,2],[1,4,2,1],[0,2,2,0]],[[0,0,1,1],[2,3,3,2],[1,3,2,1],[0,3,2,0]],[[0,0,1,1],[2,3,3,2],[1,3,2,1],[0,2,3,0]],[[1,2,2,1],[2,3,3,3],[1,0,2,2],[1,0,0,1]],[[1,2,2,2],[2,3,3,2],[1,0,2,2],[1,0,0,1]],[[0,0,1,2],[2,3,3,2],[1,3,2,2],[0,0,2,1]],[[0,0,1,1],[2,3,4,2],[1,3,2,2],[0,0,2,1]],[[0,0,1,1],[2,3,3,3],[1,3,2,2],[0,0,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,3],[0,0,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,2],[0,0,2,2]],[[0,0,1,2],[2,3,3,2],[1,3,2,2],[0,1,1,1]],[[0,0,1,1],[2,3,4,2],[1,3,2,2],[0,1,1,1]],[[0,0,1,1],[2,3,3,3],[1,3,2,2],[0,1,1,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,3],[0,1,1,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,2],[0,1,1,2]],[[0,0,1,2],[2,3,3,2],[1,3,2,2],[0,1,2,0]],[[0,0,1,1],[2,3,4,2],[1,3,2,2],[0,1,2,0]],[[0,0,1,1],[2,3,3,3],[1,3,2,2],[0,1,2,0]],[[0,0,1,1],[2,3,3,2],[1,3,2,3],[0,1,2,0]],[[0,0,1,2],[2,3,3,2],[1,3,2,2],[0,2,0,1]],[[0,0,1,1],[2,3,4,2],[1,3,2,2],[0,2,0,1]],[[0,0,1,1],[2,3,3,3],[1,3,2,2],[0,2,0,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,3],[0,2,0,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,2],[0,2,0,2]],[[0,0,1,2],[2,3,3,2],[1,3,2,2],[0,2,1,0]],[[0,0,1,1],[2,3,4,2],[1,3,2,2],[0,2,1,0]],[[0,0,1,1],[2,3,3,3],[1,3,2,2],[0,2,1,0]],[[0,0,1,1],[2,3,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[1,0,2,2],[1,0,0,1]],[[1,3,2,1],[2,3,3,2],[1,0,2,2],[1,0,0,1]],[[2,2,2,1],[2,3,3,2],[1,0,2,2],[1,0,0,1]],[[0,0,1,2],[2,3,3,2],[1,3,2,2],[1,0,1,1]],[[0,0,1,1],[2,3,4,2],[1,3,2,2],[1,0,1,1]],[[0,0,1,1],[2,3,3,3],[1,3,2,2],[1,0,1,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,3],[1,0,1,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,2],[1,0,1,2]],[[0,0,1,2],[2,3,3,2],[1,3,2,2],[1,0,2,0]],[[0,0,1,1],[2,3,4,2],[1,3,2,2],[1,0,2,0]],[[0,0,1,1],[2,3,3,3],[1,3,2,2],[1,0,2,0]],[[0,0,1,1],[2,3,3,2],[1,3,2,3],[1,0,2,0]],[[0,0,1,2],[2,3,3,2],[1,3,2,2],[1,1,0,1]],[[0,0,1,1],[2,3,4,2],[1,3,2,2],[1,1,0,1]],[[0,0,1,1],[2,3,3,3],[1,3,2,2],[1,1,0,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,3],[1,1,0,1]],[[0,0,1,1],[2,3,3,2],[1,3,2,2],[1,1,0,2]],[[0,0,1,2],[2,3,3,2],[1,3,2,2],[1,1,1,0]],[[0,0,1,1],[2,3,4,2],[1,3,2,2],[1,1,1,0]],[[0,0,1,1],[2,3,3,3],[1,3,2,2],[1,1,1,0]],[[0,0,1,1],[2,3,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,3,3,3],[1,0,2,2],[0,1,0,1]],[[1,2,2,2],[2,3,3,2],[1,0,2,2],[0,1,0,1]],[[1,2,3,1],[2,3,3,2],[1,0,2,2],[0,1,0,1]],[[1,3,2,1],[2,3,3,2],[1,0,2,2],[0,1,0,1]],[[2,2,2,1],[2,3,3,2],[1,0,2,2],[0,1,0,1]],[[0,0,1,2],[2,3,3,2],[1,3,3,0],[0,1,2,1]],[[0,0,1,1],[2,3,4,2],[1,3,3,0],[0,1,2,1]],[[0,0,1,1],[2,3,3,3],[1,3,3,0],[0,1,2,1]],[[0,0,1,1],[2,3,3,2],[1,4,3,0],[0,1,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,4,0],[0,1,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,3,0],[0,1,3,1]],[[0,0,1,1],[2,3,3,2],[1,3,3,0],[0,1,2,2]],[[0,0,1,2],[2,3,3,2],[1,3,3,0],[0,2,1,1]],[[0,0,1,1],[2,3,4,2],[1,3,3,0],[0,2,1,1]],[[0,0,1,1],[2,3,3,3],[1,3,3,0],[0,2,1,1]],[[0,0,1,1],[2,3,3,2],[1,4,3,0],[0,2,1,1]],[[0,0,1,1],[2,3,3,2],[1,3,4,0],[0,2,1,1]],[[0,0,1,1],[2,3,3,2],[1,3,3,0],[0,3,1,1]],[[0,0,1,2],[2,3,3,2],[1,3,3,0],[1,0,2,1]],[[0,0,1,1],[2,3,4,2],[1,3,3,0],[1,0,2,1]],[[0,0,1,1],[2,3,3,3],[1,3,3,0],[1,0,2,1]],[[0,0,1,1],[2,3,3,2],[1,4,3,0],[1,0,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,4,0],[1,0,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,3,0],[1,0,3,1]],[[0,0,1,1],[2,3,3,2],[1,3,3,0],[1,0,2,2]],[[0,0,1,2],[2,3,3,2],[1,3,3,0],[1,1,1,1]],[[0,0,1,1],[2,3,4,2],[1,3,3,0],[1,1,1,1]],[[0,0,1,1],[2,3,3,3],[1,3,3,0],[1,1,1,1]],[[0,0,1,1],[2,3,3,2],[1,4,3,0],[1,1,1,1]],[[0,0,1,1],[2,3,3,2],[1,3,4,0],[1,1,1,1]],[[0,0,1,2],[2,3,3,2],[1,3,3,1],[0,0,2,1]],[[0,0,1,1],[2,3,4,2],[1,3,3,1],[0,0,2,1]],[[0,0,1,1],[2,3,3,3],[1,3,3,1],[0,0,2,1]],[[0,0,1,1],[2,3,3,2],[1,3,4,1],[0,0,2,1]],[[0,0,1,2],[2,3,3,2],[1,3,3,1],[0,1,1,1]],[[0,0,1,1],[2,3,4,2],[1,3,3,1],[0,1,1,1]],[[0,0,1,1],[2,3,3,3],[1,3,3,1],[0,1,1,1]],[[0,0,1,1],[2,3,3,2],[1,4,3,1],[0,1,1,1]],[[0,0,1,1],[2,3,3,2],[1,3,4,1],[0,1,1,1]],[[0,0,1,2],[2,3,3,2],[1,3,3,1],[0,1,2,0]],[[0,0,1,1],[2,3,4,2],[1,3,3,1],[0,1,2,0]],[[0,0,1,1],[2,3,3,3],[1,3,3,1],[0,1,2,0]],[[0,0,1,1],[2,3,3,2],[1,4,3,1],[0,1,2,0]],[[0,0,1,1],[2,3,3,2],[1,3,4,1],[0,1,2,0]],[[0,0,1,1],[2,3,3,2],[1,3,3,1],[0,1,3,0]],[[0,0,1,2],[2,3,3,2],[1,3,3,1],[0,2,0,1]],[[0,0,1,1],[2,3,4,2],[1,3,3,1],[0,2,0,1]],[[0,0,1,1],[2,3,3,3],[1,3,3,1],[0,2,0,1]],[[0,0,1,1],[2,3,3,2],[1,4,3,1],[0,2,0,1]],[[0,0,1,1],[2,3,3,2],[1,3,4,1],[0,2,0,1]],[[0,0,1,1],[2,3,3,2],[1,3,3,1],[0,3,0,1]],[[0,0,1,2],[2,3,3,2],[1,3,3,1],[0,2,1,0]],[[0,0,1,1],[2,3,4,2],[1,3,3,1],[0,2,1,0]],[[0,0,1,1],[2,3,3,3],[1,3,3,1],[0,2,1,0]],[[0,0,1,1],[2,3,3,2],[1,4,3,1],[0,2,1,0]],[[0,0,1,1],[2,3,3,2],[1,3,4,1],[0,2,1,0]],[[0,0,1,1],[2,3,3,2],[1,3,3,1],[0,3,1,0]],[[0,0,1,2],[2,3,3,2],[1,3,3,1],[1,0,1,1]],[[0,0,1,1],[2,3,4,2],[1,3,3,1],[1,0,1,1]],[[0,0,1,1],[2,3,3,3],[1,3,3,1],[1,0,1,1]],[[0,0,1,1],[2,3,3,2],[1,4,3,1],[1,0,1,1]],[[0,0,1,1],[2,3,3,2],[1,3,4,1],[1,0,1,1]],[[0,0,1,2],[2,3,3,2],[1,3,3,1],[1,0,2,0]],[[0,0,1,1],[2,3,4,2],[1,3,3,1],[1,0,2,0]],[[0,0,1,1],[2,3,3,3],[1,3,3,1],[1,0,2,0]],[[0,0,1,1],[2,3,3,2],[1,4,3,1],[1,0,2,0]],[[0,0,1,1],[2,3,3,2],[1,3,4,1],[1,0,2,0]],[[0,0,1,1],[2,3,3,2],[1,3,3,1],[1,0,3,0]],[[0,0,1,2],[2,3,3,2],[1,3,3,1],[1,1,0,1]],[[0,0,1,1],[2,3,4,2],[1,3,3,1],[1,1,0,1]],[[0,0,1,1],[2,3,3,3],[1,3,3,1],[1,1,0,1]],[[0,0,1,1],[2,3,3,2],[1,4,3,1],[1,1,0,1]],[[0,0,1,1],[2,3,3,2],[1,3,4,1],[1,1,0,1]],[[0,0,1,2],[2,3,3,2],[1,3,3,1],[1,1,1,0]],[[0,0,1,1],[2,3,4,2],[1,3,3,1],[1,1,1,0]],[[0,0,1,1],[2,3,3,3],[1,3,3,1],[1,1,1,0]],[[0,0,1,1],[2,3,3,2],[1,4,3,1],[1,1,1,0]],[[0,0,1,1],[2,3,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,3,3,3],[1,0,1,2],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[1,0,1,2],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[1,0,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[1,0,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[1,0,1,2],[1,1,1,0]],[[1,2,2,1],[2,3,3,3],[1,0,1,2],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[1,0,1,2],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[1,0,1,2],[1,1,0,1]],[[1,3,2,1],[2,3,3,2],[1,0,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[1,0,1,2],[1,1,0,1]],[[1,2,2,1],[2,3,3,3],[1,0,1,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[1,0,1,2],[1,0,2,0]],[[0,0,1,2],[2,3,3,2],[1,3,3,2],[0,1,0,1]],[[0,0,1,1],[2,3,4,2],[1,3,3,2],[0,1,0,1]],[[0,0,1,1],[2,3,3,3],[1,3,3,2],[0,1,0,1]],[[0,0,1,1],[2,3,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,3,1],[2,3,3,2],[1,0,1,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[1,0,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[1,0,1,2],[1,0,2,0]],[[1,2,2,1],[2,3,3,3],[1,0,1,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[1,0,1,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[1,0,1,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[1,0,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[1,0,1,2],[1,0,1,1]],[[1,2,2,1],[2,3,3,3],[1,0,1,2],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[1,0,1,2],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[1,0,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[1,0,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[1,0,1,2],[0,2,1,0]],[[1,2,2,1],[2,3,3,3],[1,0,1,2],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[1,0,1,2],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[1,0,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,3,2],[1,0,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[1,0,1,2],[0,2,0,1]],[[0,0,1,2],[2,3,3,2],[1,3,3,2],[1,0,0,1]],[[0,0,1,1],[2,3,4,2],[1,3,3,2],[1,0,0,1]],[[0,0,1,1],[2,3,3,3],[1,3,3,2],[1,0,0,1]],[[0,0,1,1],[2,3,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,3,3,3],[1,0,1,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[1,0,1,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[1,0,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,3,2],[1,0,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[1,0,1,2],[0,1,2,0]],[[1,2,2,1],[2,3,3,3],[1,0,1,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[1,0,1,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[1,0,1,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[1,0,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[1,0,1,2],[0,1,1,1]],[[1,2,2,1],[2,3,3,3],[1,0,1,2],[0,0,2,1]],[[1,2,2,2],[2,3,3,2],[1,0,1,2],[0,0,2,1]],[[1,2,3,1],[2,3,3,2],[1,0,1,2],[0,0,2,1]],[[1,3,2,1],[2,3,3,2],[1,0,1,2],[0,0,2,1]],[[2,2,2,1],[2,3,3,2],[1,0,1,2],[0,0,2,1]],[[1,2,2,1],[2,3,3,3],[1,0,0,2],[1,2,1,0]],[[1,2,2,2],[2,3,3,2],[1,0,0,2],[1,2,1,0]],[[1,2,3,1],[2,3,3,2],[1,0,0,2],[1,2,1,0]],[[1,3,2,1],[2,3,3,2],[1,0,0,2],[1,2,1,0]],[[2,2,2,1],[2,3,3,2],[1,0,0,2],[1,2,1,0]],[[1,2,2,1],[2,3,3,3],[1,0,0,2],[1,2,0,1]],[[1,2,2,2],[2,3,3,2],[1,0,0,2],[1,2,0,1]],[[1,2,3,1],[2,3,3,2],[1,0,0,2],[1,2,0,1]],[[1,3,2,1],[2,3,3,2],[1,0,0,2],[1,2,0,1]],[[2,2,2,1],[2,3,3,2],[1,0,0,2],[1,2,0,1]],[[1,2,2,1],[2,3,3,3],[1,0,0,2],[1,0,2,1]],[[1,2,2,2],[2,3,3,2],[1,0,0,2],[1,0,2,1]],[[1,2,3,1],[2,3,3,2],[1,0,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,3,2],[1,0,0,2],[1,0,2,1]],[[2,2,2,1],[2,3,3,2],[1,0,0,2],[1,0,2,1]],[[1,2,2,1],[2,3,3,3],[1,0,0,2],[0,1,2,1]],[[1,2,2,2],[2,3,3,2],[1,0,0,2],[0,1,2,1]],[[1,2,3,1],[2,3,3,2],[1,0,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,3,2],[1,0,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,3,2],[1,0,0,2],[0,1,2,1]],[[1,2,2,1],[2,4,3,2],[0,3,2,0],[1,1,0,0]],[[1,2,2,2],[2,3,3,2],[0,3,2,0],[1,1,0,0]],[[1,2,3,1],[2,3,3,2],[0,3,2,0],[1,1,0,0]],[[1,3,2,1],[2,3,3,2],[0,3,2,0],[1,1,0,0]],[[2,2,2,1],[2,3,3,2],[0,3,2,0],[1,1,0,0]],[[1,2,2,1],[2,4,3,2],[0,3,2,0],[0,2,0,0]],[[1,2,2,2],[2,3,3,2],[0,3,2,0],[0,2,0,0]],[[1,2,3,1],[2,3,3,2],[0,3,2,0],[0,2,0,0]],[[1,3,2,1],[2,3,3,2],[0,3,2,0],[0,2,0,0]],[[2,2,2,1],[2,3,3,2],[0,3,2,0],[0,2,0,0]],[[1,2,2,1],[2,3,3,3],[0,3,1,2],[0,0,0,1]],[[1,2,2,2],[2,3,3,2],[0,3,1,2],[0,0,0,1]],[[1,2,3,1],[2,3,3,2],[0,3,1,2],[0,0,0,1]],[[1,3,2,1],[2,3,3,2],[0,3,1,2],[0,0,0,1]],[[2,2,2,1],[2,3,3,2],[0,3,1,2],[0,0,0,1]],[[1,2,2,1],[2,4,3,2],[0,3,1,0],[1,2,0,0]],[[1,2,2,2],[2,3,3,2],[0,3,1,0],[1,2,0,0]],[[1,2,3,1],[2,3,3,2],[0,3,1,0],[1,2,0,0]],[[1,3,2,1],[2,3,3,2],[0,3,1,0],[1,2,0,0]],[[2,2,2,1],[2,3,3,2],[0,3,1,0],[1,2,0,0]],[[1,2,2,1],[2,4,3,2],[0,3,1,0],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[0,3,1,0],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[0,3,1,0],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[0,3,1,0],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[0,3,1,0],[1,1,1,0]],[[1,2,2,1],[2,4,3,2],[0,3,1,0],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[0,3,1,0],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[0,3,1,0],[1,1,0,1]],[[1,3,2,1],[2,3,3,2],[0,3,1,0],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[0,3,1,0],[1,1,0,1]],[[1,2,2,1],[2,4,3,2],[0,3,1,0],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[0,3,1,0],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[0,3,1,0],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[0,3,1,0],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[0,3,1,0],[1,0,2,0]],[[1,2,2,1],[2,4,3,2],[0,3,1,0],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[0,3,1,0],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[0,3,1,0],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[0,3,1,0],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[0,3,1,0],[1,0,1,1]],[[1,2,2,1],[2,4,3,2],[0,3,1,0],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[0,3,1,0],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[0,3,1,0],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[0,3,1,0],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[0,3,1,0],[0,2,1,0]],[[1,2,2,1],[2,4,3,2],[0,3,1,0],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[0,3,1,0],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[0,3,1,0],[0,2,0,1]],[[1,3,2,1],[2,3,3,2],[0,3,1,0],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[0,3,1,0],[0,2,0,1]],[[1,2,2,1],[2,4,3,2],[0,3,1,0],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[0,3,1,0],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[0,3,1,0],[0,1,2,0]],[[1,3,2,1],[2,3,3,2],[0,3,1,0],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[0,3,1,0],[0,1,2,0]],[[1,2,2,1],[2,4,3,2],[0,3,1,0],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[0,3,1,0],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[0,3,1,0],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[0,3,1,0],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[0,3,1,0],[0,1,1,1]],[[1,2,2,1],[2,4,3,2],[0,3,0,2],[1,1,0,0]],[[1,2,2,2],[2,3,3,2],[0,3,0,2],[1,1,0,0]],[[1,2,3,1],[2,3,3,2],[0,3,0,2],[1,1,0,0]],[[1,3,2,1],[2,3,3,2],[0,3,0,2],[1,1,0,0]],[[2,2,2,1],[2,3,3,2],[0,3,0,2],[1,1,0,0]],[[1,2,2,1],[2,3,3,3],[0,3,0,2],[1,0,0,1]],[[1,2,2,2],[2,3,3,2],[0,3,0,2],[1,0,0,1]],[[1,2,3,1],[2,3,3,2],[0,3,0,2],[1,0,0,1]],[[1,3,2,1],[2,3,3,2],[0,3,0,2],[1,0,0,1]],[[2,2,2,1],[2,3,3,2],[0,3,0,2],[1,0,0,1]],[[1,2,2,1],[2,4,3,2],[0,3,0,2],[0,2,0,0]],[[1,2,2,2],[2,3,3,2],[0,3,0,2],[0,2,0,0]],[[1,2,3,1],[2,3,3,2],[0,3,0,2],[0,2,0,0]],[[1,3,2,1],[2,3,3,2],[0,3,0,2],[0,2,0,0]],[[2,2,2,1],[2,3,3,2],[0,3,0,2],[0,2,0,0]],[[1,2,2,1],[2,3,3,3],[0,3,0,2],[0,1,0,1]],[[1,2,2,2],[2,3,3,2],[0,3,0,2],[0,1,0,1]],[[1,2,3,1],[2,3,3,2],[0,3,0,2],[0,1,0,1]],[[1,3,2,1],[2,3,3,2],[0,3,0,2],[0,1,0,1]],[[2,2,2,1],[2,3,3,2],[0,3,0,2],[0,1,0,1]],[[1,2,2,1],[2,3,3,3],[0,3,0,2],[0,0,2,0]],[[1,2,2,2],[2,3,3,2],[0,3,0,2],[0,0,2,0]],[[1,2,3,1],[2,3,3,2],[0,3,0,2],[0,0,2,0]],[[1,3,2,1],[2,3,3,2],[0,3,0,2],[0,0,2,0]],[[2,2,2,1],[2,3,3,2],[0,3,0,2],[0,0,2,0]],[[1,2,2,1],[2,3,3,3],[0,3,0,2],[0,0,1,1]],[[1,2,2,2],[2,3,3,2],[0,3,0,2],[0,0,1,1]],[[1,2,3,1],[2,3,3,2],[0,3,0,2],[0,0,1,1]],[[1,3,2,1],[2,3,3,2],[0,3,0,2],[0,0,1,1]],[[2,2,2,1],[2,3,3,2],[0,3,0,2],[0,0,1,1]],[[1,2,2,1],[2,4,3,2],[0,3,0,1],[1,2,0,0]],[[1,2,2,2],[2,3,3,2],[0,3,0,1],[1,2,0,0]],[[1,2,3,1],[2,3,3,2],[0,3,0,1],[1,2,0,0]],[[1,3,2,1],[2,3,3,2],[0,3,0,1],[1,2,0,0]],[[2,2,2,1],[2,3,3,2],[0,3,0,1],[1,2,0,0]],[[1,2,2,1],[2,4,3,2],[0,3,0,1],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[0,3,0,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[0,3,0,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[0,3,0,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[0,3,0,1],[1,1,1,0]],[[1,2,2,1],[2,4,3,2],[0,3,0,1],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[0,3,0,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[0,3,0,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,2],[0,3,0,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[0,3,0,1],[1,1,0,1]],[[1,2,2,1],[2,4,3,2],[0,3,0,1],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[0,3,0,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[0,3,0,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[0,3,0,1],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[0,3,0,1],[1,0,2,0]],[[1,2,2,1],[2,4,3,2],[0,3,0,1],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[0,3,0,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[0,3,0,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[0,3,0,1],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[0,3,0,1],[1,0,1,1]],[[1,2,2,1],[2,4,3,2],[0,3,0,1],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[0,3,0,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[0,3,0,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[0,3,0,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[0,3,0,1],[0,2,1,0]],[[1,2,2,1],[2,4,3,2],[0,3,0,1],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[0,3,0,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[0,3,0,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,2],[0,3,0,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[0,3,0,1],[0,2,0,1]],[[1,2,2,1],[2,4,3,2],[0,3,0,1],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[0,3,0,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[0,3,0,1],[0,1,2,0]],[[1,3,2,1],[2,3,3,2],[0,3,0,1],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[0,3,0,1],[0,1,2,0]],[[1,2,2,1],[2,4,3,2],[0,3,0,1],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[0,3,0,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[0,3,0,1],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[0,3,0,1],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[0,3,0,1],[0,1,1,1]],[[1,2,2,1],[2,4,3,2],[0,3,0,0],[1,1,2,0]],[[1,2,2,2],[2,3,3,2],[0,3,0,0],[1,1,2,0]],[[1,2,3,1],[2,3,3,2],[0,3,0,0],[1,1,2,0]],[[1,3,2,1],[2,3,3,2],[0,3,0,0],[1,1,2,0]],[[2,2,2,1],[2,3,3,2],[0,3,0,0],[1,1,2,0]],[[1,2,2,1],[2,4,3,2],[0,3,0,0],[0,2,2,0]],[[1,2,2,2],[2,3,3,2],[0,3,0,0],[0,2,2,0]],[[1,2,3,1],[2,3,3,2],[0,3,0,0],[0,2,2,0]],[[1,3,2,1],[2,3,3,2],[0,3,0,0],[0,2,2,0]],[[2,2,2,1],[2,3,3,2],[0,3,0,0],[0,2,2,0]],[[1,2,2,1],[2,3,4,2],[0,2,3,0],[0,0,2,0]],[[1,2,2,2],[2,3,3,2],[0,2,3,0],[0,0,2,0]],[[1,2,3,1],[2,3,3,2],[0,2,3,0],[0,0,2,0]],[[1,3,2,1],[2,3,3,2],[0,2,3,0],[0,0,2,0]],[[2,2,2,1],[2,3,3,2],[0,2,3,0],[0,0,2,0]],[[1,2,2,1],[2,3,4,2],[0,2,3,0],[0,0,1,1]],[[1,2,2,2],[2,3,3,2],[0,2,3,0],[0,0,1,1]],[[1,2,3,1],[2,3,3,2],[0,2,3,0],[0,0,1,1]],[[1,3,2,1],[2,3,3,2],[0,2,3,0],[0,0,1,1]],[[2,2,2,1],[2,3,3,2],[0,2,3,0],[0,0,1,1]],[[1,2,2,1],[2,3,3,3],[0,2,2,2],[0,0,0,1]],[[1,2,2,2],[2,3,3,2],[0,2,2,2],[0,0,0,1]],[[1,2,3,1],[2,3,3,2],[0,2,2,2],[0,0,0,1]],[[1,3,2,1],[2,3,3,2],[0,2,2,2],[0,0,0,1]],[[2,2,2,1],[2,3,3,2],[0,2,2,2],[0,0,0,1]],[[1,2,2,1],[2,3,3,3],[0,2,1,2],[0,0,2,0]],[[1,2,2,2],[2,3,3,2],[0,2,1,2],[0,0,2,0]],[[1,2,3,1],[2,3,3,2],[0,2,1,2],[0,0,2,0]],[[1,3,2,1],[2,3,3,2],[0,2,1,2],[0,0,2,0]],[[2,2,2,1],[2,3,3,2],[0,2,1,2],[0,0,2,0]],[[1,2,2,1],[2,3,3,3],[0,2,1,2],[0,0,1,1]],[[1,2,2,2],[2,3,3,2],[0,2,1,2],[0,0,1,1]],[[1,2,3,1],[2,3,3,2],[0,2,1,2],[0,0,1,1]],[[1,3,2,1],[2,3,3,2],[0,2,1,2],[0,0,1,1]],[[2,2,2,1],[2,3,3,2],[0,2,1,2],[0,0,1,1]],[[1,2,2,1],[2,3,3,3],[0,2,0,2],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[0,2,0,2],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[0,2,0,2],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[0,2,0,2],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[0,2,0,2],[1,1,1,0]],[[1,2,2,1],[2,3,3,3],[0,2,0,2],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[0,2,0,2],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[0,2,0,2],[1,1,0,1]],[[1,3,2,1],[2,3,3,2],[0,2,0,2],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[0,2,0,2],[1,1,0,1]],[[1,2,2,1],[2,3,3,3],[0,2,0,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[0,2,0,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[0,2,0,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[0,2,0,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[0,2,0,2],[1,0,2,0]],[[1,2,2,1],[2,3,3,3],[0,2,0,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[0,2,0,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[0,2,0,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[0,2,0,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[0,2,0,2],[1,0,1,1]],[[1,2,2,1],[2,3,3,3],[0,2,0,2],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[0,2,0,2],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[0,2,0,2],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[0,2,0,2],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[0,2,0,2],[0,2,1,0]],[[1,2,2,1],[2,3,3,3],[0,2,0,2],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[0,2,0,2],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[0,2,0,2],[0,2,0,1]],[[1,3,2,1],[2,3,3,2],[0,2,0,2],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[0,2,0,2],[0,2,0,1]],[[0,0,2,0],[0,2,1,2],[2,3,3,3],[1,2,2,1]],[[0,0,2,0],[0,2,1,2],[2,3,3,2],[2,2,2,1]],[[0,0,2,0],[0,2,1,2],[2,3,3,2],[1,3,2,1]],[[0,0,2,0],[0,2,1,2],[2,3,3,2],[1,2,3,1]],[[0,0,2,0],[0,2,1,2],[2,3,3,2],[1,2,2,2]],[[0,0,2,0],[0,2,2,2],[2,3,2,3],[1,2,2,1]],[[0,0,2,0],[0,2,2,2],[2,3,2,2],[2,2,2,1]],[[0,0,2,0],[0,2,2,2],[2,3,2,2],[1,3,2,1]],[[0,0,2,0],[0,2,2,2],[2,3,2,2],[1,2,3,1]],[[0,0,2,0],[0,2,2,2],[2,3,2,2],[1,2,2,2]],[[0,0,2,0],[0,2,2,2],[2,3,4,1],[1,2,2,1]],[[0,0,2,0],[0,2,2,2],[2,3,3,1],[2,2,2,1]],[[0,0,2,0],[0,2,2,2],[2,3,3,1],[1,3,2,1]],[[0,0,2,0],[0,2,2,2],[2,3,3,1],[1,2,3,1]],[[0,0,2,0],[0,2,2,2],[2,3,3,1],[1,2,2,2]],[[0,0,2,0],[0,2,2,2],[2,3,4,2],[1,2,1,1]],[[0,0,2,0],[0,2,2,2],[2,3,3,3],[1,2,1,1]],[[0,0,2,0],[0,2,2,2],[2,3,3,2],[1,2,1,2]],[[0,0,2,0],[0,2,2,2],[2,3,4,2],[1,2,2,0]],[[0,0,2,0],[0,2,2,2],[2,3,3,3],[1,2,2,0]],[[0,0,2,0],[0,2,2,2],[2,3,3,2],[2,2,2,0]],[[0,0,2,0],[0,2,2,2],[2,3,3,2],[1,3,2,0]],[[0,0,2,0],[0,2,2,2],[2,3,3,2],[1,2,3,0]],[[0,0,2,0],[0,2,3,0],[2,3,4,2],[1,2,2,1]],[[0,0,2,0],[0,2,3,0],[2,3,3,2],[2,2,2,1]],[[0,0,2,0],[0,2,3,0],[2,3,3,2],[1,3,2,1]],[[0,0,2,0],[0,2,3,0],[2,3,3,2],[1,2,3,1]],[[0,0,2,0],[0,2,3,0],[2,3,3,2],[1,2,2,2]],[[0,0,2,0],[0,2,3,1],[2,3,2,3],[1,2,2,1]],[[0,0,2,0],[0,2,3,1],[2,3,2,2],[2,2,2,1]],[[0,0,2,0],[0,2,3,1],[2,3,2,2],[1,3,2,1]],[[0,0,2,0],[0,2,3,1],[2,3,2,2],[1,2,3,1]],[[0,0,2,0],[0,2,3,1],[2,3,2,2],[1,2,2,2]],[[0,0,2,0],[0,2,3,1],[2,3,4,1],[1,2,2,1]],[[0,0,2,0],[0,2,3,1],[2,3,3,1],[2,2,2,1]],[[0,0,2,0],[0,2,3,1],[2,3,3,1],[1,3,2,1]],[[0,0,2,0],[0,2,3,1],[2,3,3,1],[1,2,3,1]],[[0,0,2,0],[0,2,3,1],[2,3,3,1],[1,2,2,2]],[[0,0,2,0],[0,2,3,1],[2,3,4,2],[1,2,1,1]],[[0,0,2,0],[0,2,3,1],[2,3,3,3],[1,2,1,1]],[[0,0,2,0],[0,2,3,1],[2,3,3,2],[1,2,1,2]],[[0,0,2,0],[0,2,3,1],[2,3,4,2],[1,2,2,0]],[[0,0,2,0],[0,2,3,1],[2,3,3,3],[1,2,2,0]],[[0,0,2,0],[0,2,3,1],[2,3,3,2],[2,2,2,0]],[[0,0,2,0],[0,2,3,1],[2,3,3,2],[1,3,2,0]],[[0,0,2,0],[0,2,3,1],[2,3,3,2],[1,2,3,0]],[[0,0,2,0],[0,2,3,2],[2,3,4,0],[1,2,2,1]],[[0,0,2,0],[0,2,3,2],[2,3,3,0],[2,2,2,1]],[[0,0,2,0],[0,2,3,2],[2,3,3,0],[1,3,2,1]],[[0,0,2,0],[0,2,3,2],[2,3,3,0],[1,2,3,1]],[[0,0,2,0],[0,2,3,2],[2,3,3,0],[1,2,2,2]],[[0,0,2,0],[0,2,3,2],[2,3,4,1],[1,2,2,0]],[[0,0,2,0],[0,2,3,2],[2,3,3,1],[2,2,2,0]],[[0,0,2,0],[0,2,3,2],[2,3,3,1],[1,3,2,0]],[[0,0,2,0],[0,2,3,2],[2,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,3,3,3],[0,2,0,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[0,2,0,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[0,2,0,2],[0,1,2,0]],[[0,0,2,0],[0,3,0,2],[2,3,3,3],[1,2,2,1]],[[0,0,2,0],[0,3,0,2],[2,3,3,2],[2,2,2,1]],[[0,0,2,0],[0,3,0,2],[2,3,3,2],[1,3,2,1]],[[0,0,2,0],[0,3,0,2],[2,3,3,2],[1,2,3,1]],[[0,0,2,0],[0,3,0,2],[2,3,3,2],[1,2,2,2]],[[0,0,2,0],[0,3,1,2],[2,2,3,3],[1,2,2,1]],[[0,0,2,0],[0,3,1,2],[2,2,3,2],[2,2,2,1]],[[0,0,2,0],[0,3,1,2],[2,2,3,2],[1,3,2,1]],[[0,0,2,0],[0,3,1,2],[2,2,3,2],[1,2,3,1]],[[0,0,2,0],[0,3,1,2],[2,2,3,2],[1,2,2,2]],[[0,0,2,0],[0,3,1,2],[2,3,3,3],[1,1,2,1]],[[0,0,2,0],[0,3,1,2],[2,3,3,2],[1,1,3,1]],[[0,0,2,0],[0,3,1,2],[2,3,3,2],[1,1,2,2]],[[0,0,2,0],[0,3,2,2],[2,1,3,3],[1,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,1,3,2],[1,2,3,1]],[[0,0,2,0],[0,3,2,2],[2,1,3,2],[1,2,2,2]],[[0,0,2,0],[0,3,2,3],[2,2,2,2],[1,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,2,2,3],[1,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,2,2,2],[2,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,2,2,2],[1,3,2,1]],[[0,0,2,0],[0,3,2,2],[2,2,2,2],[1,2,3,1]],[[0,0,2,0],[0,3,2,2],[2,2,2,2],[1,2,2,2]],[[0,0,2,0],[0,3,2,2],[2,2,4,1],[1,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,2,3,1],[2,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,2,3,1],[1,3,2,1]],[[0,0,2,0],[0,3,2,2],[2,2,3,1],[1,2,3,1]],[[0,0,2,0],[0,3,2,2],[2,2,3,1],[1,2,2,2]],[[0,0,2,0],[0,3,2,3],[2,2,3,2],[1,2,1,1]],[[0,0,2,0],[0,3,2,2],[2,2,4,2],[1,2,1,1]],[[0,0,2,0],[0,3,2,2],[2,2,3,3],[1,2,1,1]],[[0,0,2,0],[0,3,2,2],[2,2,3,2],[1,2,1,2]],[[0,0,2,0],[0,3,2,3],[2,2,3,2],[1,2,2,0]],[[0,0,2,0],[0,3,2,2],[2,2,4,2],[1,2,2,0]],[[0,0,2,0],[0,3,2,2],[2,2,3,3],[1,2,2,0]],[[0,0,2,0],[0,3,2,2],[2,2,3,2],[2,2,2,0]],[[0,0,2,0],[0,3,2,2],[2,2,3,2],[1,3,2,0]],[[0,0,2,0],[0,3,2,2],[2,2,3,2],[1,2,3,0]],[[0,0,2,0],[0,3,2,3],[2,3,1,2],[1,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,4,1,2],[1,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,1,3],[1,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,1,2],[2,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,1,2],[1,3,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,1,2],[1,2,3,1]],[[0,0,2,0],[0,3,2,2],[2,3,1,2],[1,2,2,2]],[[0,0,2,0],[0,3,2,2],[2,4,2,1],[1,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,2,1],[2,2,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,2,1],[1,3,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,2,1],[1,2,3,1]],[[0,0,2,0],[0,3,2,2],[2,3,2,1],[1,2,2,2]],[[0,0,2,0],[0,3,2,3],[2,3,2,2],[1,1,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,2,3],[1,1,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,2,2],[1,1,3,1]],[[0,0,2,0],[0,3,2,2],[2,3,2,2],[1,1,2,2]],[[0,0,2,0],[0,3,2,2],[2,4,2,2],[1,2,2,0]],[[0,0,2,0],[0,3,2,2],[2,3,2,2],[2,2,2,0]],[[0,0,2,0],[0,3,2,2],[2,3,2,2],[1,3,2,0]],[[0,0,2,0],[0,3,2,2],[2,3,2,2],[1,2,3,0]],[[0,0,2,0],[0,3,2,2],[2,4,3,1],[1,1,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,4,1],[1,1,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,1],[1,1,3,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,1],[1,1,2,2]],[[0,0,2,0],[0,3,2,2],[2,4,3,1],[1,2,1,1]],[[0,0,2,0],[0,3,2,2],[2,3,4,1],[1,2,1,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,1],[2,2,1,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,1],[1,3,1,1]],[[0,0,2,0],[0,3,2,2],[2,3,4,2],[1,0,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,3],[1,0,2,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,2],[1,0,2,2]],[[0,0,2,0],[0,3,2,3],[2,3,3,2],[1,1,1,1]],[[0,0,2,0],[0,3,2,2],[2,4,3,2],[1,1,1,1]],[[0,0,2,0],[0,3,2,2],[2,3,4,2],[1,1,1,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,3],[1,1,1,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,2],[1,1,1,2]],[[0,0,2,0],[0,3,2,3],[2,3,3,2],[1,1,2,0]],[[0,0,2,0],[0,3,2,2],[2,4,3,2],[1,1,2,0]],[[0,0,2,0],[0,3,2,2],[2,3,4,2],[1,1,2,0]],[[0,0,2,0],[0,3,2,2],[2,3,3,3],[1,1,2,0]],[[0,0,2,0],[0,3,2,2],[2,3,3,2],[1,1,3,0]],[[0,0,2,0],[0,3,2,3],[2,3,3,2],[1,2,0,1]],[[0,0,2,0],[0,3,2,2],[2,4,3,2],[1,2,0,1]],[[0,0,2,0],[0,3,2,2],[2,3,4,2],[1,2,0,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,3],[1,2,0,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,2],[2,2,0,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,2],[1,3,0,1]],[[0,0,2,0],[0,3,2,2],[2,3,3,2],[1,2,0,2]],[[0,0,2,0],[0,3,2,3],[2,3,3,2],[1,2,1,0]],[[0,0,2,0],[0,3,2,2],[2,4,3,2],[1,2,1,0]],[[0,0,2,0],[0,3,2,2],[2,3,4,2],[1,2,1,0]],[[0,0,2,0],[0,3,2,2],[2,3,3,3],[1,2,1,0]],[[0,0,2,0],[0,3,2,2],[2,3,3,2],[2,2,1,0]],[[0,0,2,0],[0,3,2,2],[2,3,3,2],[1,3,1,0]],[[1,3,2,1],[2,3,3,2],[0,2,0,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[0,2,0,2],[0,1,2,0]],[[1,2,2,1],[2,3,3,3],[0,2,0,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[0,2,0,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[0,2,0,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[0,2,0,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[0,2,0,2],[0,1,1,1]],[[0,0,2,0],[0,3,3,0],[2,2,4,2],[1,2,2,1]],[[0,0,2,0],[0,3,3,0],[2,2,3,2],[2,2,2,1]],[[0,0,2,0],[0,3,3,0],[2,2,3,2],[1,3,2,1]],[[0,0,2,0],[0,3,3,0],[2,2,3,2],[1,2,3,1]],[[0,0,2,0],[0,3,3,0],[2,2,3,2],[1,2,2,2]],[[0,0,2,0],[0,3,3,0],[2,4,2,2],[1,2,2,1]],[[0,0,2,0],[0,3,3,0],[2,3,2,2],[2,2,2,1]],[[0,0,2,0],[0,3,3,0],[2,3,2,2],[1,3,2,1]],[[0,0,2,0],[0,3,3,0],[2,3,2,2],[1,2,3,1]],[[0,0,2,0],[0,3,3,0],[2,3,2,2],[1,2,2,2]],[[0,0,2,0],[0,3,3,0],[2,4,3,2],[1,1,2,1]],[[0,0,2,0],[0,3,3,0],[2,3,4,2],[1,1,2,1]],[[0,0,2,0],[0,3,3,0],[2,3,3,2],[1,1,3,1]],[[0,0,2,0],[0,3,3,0],[2,3,3,2],[1,1,2,2]],[[0,0,2,0],[0,3,3,0],[2,4,3,2],[1,2,1,1]],[[0,0,2,0],[0,3,3,0],[2,3,4,2],[1,2,1,1]],[[0,0,2,0],[0,3,3,0],[2,3,3,2],[2,2,1,1]],[[0,0,2,0],[0,3,3,0],[2,3,3,2],[1,3,1,1]],[[0,0,2,0],[0,3,3,1],[2,1,3,3],[1,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,1,3,2],[1,2,3,1]],[[0,0,2,0],[0,3,3,1],[2,1,3,2],[1,2,2,2]],[[0,0,2,0],[0,3,3,1],[2,2,2,3],[1,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,2,2,2],[2,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,2,2,2],[1,3,2,1]],[[0,0,2,0],[0,3,3,1],[2,2,2,2],[1,2,3,1]],[[0,0,2,0],[0,3,3,1],[2,2,2,2],[1,2,2,2]],[[0,0,2,0],[0,3,4,1],[2,2,3,1],[1,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,2,4,1],[1,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,2,3,1],[2,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,2,3,1],[1,3,2,1]],[[0,0,2,0],[0,3,3,1],[2,2,3,1],[1,2,3,1]],[[0,0,2,0],[0,3,3,1],[2,2,3,1],[1,2,2,2]],[[0,0,2,0],[0,3,4,1],[2,2,3,2],[1,2,1,1]],[[0,0,2,0],[0,3,3,1],[2,2,4,2],[1,2,1,1]],[[0,0,2,0],[0,3,3,1],[2,2,3,3],[1,2,1,1]],[[0,0,2,0],[0,3,3,1],[2,2,3,2],[1,2,1,2]],[[0,0,2,0],[0,3,4,1],[2,2,3,2],[1,2,2,0]],[[0,0,2,0],[0,3,3,1],[2,2,4,2],[1,2,2,0]],[[0,0,2,0],[0,3,3,1],[2,2,3,3],[1,2,2,0]],[[0,0,2,0],[0,3,3,1],[2,2,3,2],[2,2,2,0]],[[0,0,2,0],[0,3,3,1],[2,2,3,2],[1,3,2,0]],[[0,0,2,0],[0,3,3,1],[2,2,3,2],[1,2,3,0]],[[0,0,2,0],[0,3,3,1],[2,4,1,2],[1,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,1,3],[1,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,1,2],[2,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,1,2],[1,3,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,1,2],[1,2,3,1]],[[0,0,2,0],[0,3,3,1],[2,3,1,2],[1,2,2,2]],[[0,0,2,0],[0,3,3,1],[2,4,2,1],[1,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,2,1],[2,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,2,1],[1,3,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,2,1],[1,2,3,1]],[[0,0,2,0],[0,3,3,1],[2,3,2,1],[1,2,2,2]],[[0,0,2,0],[0,3,3,1],[2,3,2,3],[1,1,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,2,2],[1,1,3,1]],[[0,0,2,0],[0,3,3,1],[2,3,2,2],[1,1,2,2]],[[0,0,2,0],[0,3,3,1],[2,4,2,2],[1,2,2,0]],[[0,0,2,0],[0,3,3,1],[2,3,2,2],[2,2,2,0]],[[0,0,2,0],[0,3,3,1],[2,3,2,2],[1,3,2,0]],[[0,0,2,0],[0,3,3,1],[2,3,2,2],[1,2,3,0]],[[0,0,2,0],[0,3,3,1],[2,4,3,0],[1,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,0],[2,2,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,0],[1,3,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,0],[1,2,3,1]],[[0,0,2,0],[0,3,4,1],[2,3,3,1],[1,1,2,1]],[[0,0,2,0],[0,3,3,1],[2,4,3,1],[1,1,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,4,1],[1,1,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,1],[1,1,3,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,1],[1,1,2,2]],[[0,0,2,0],[0,3,4,1],[2,3,3,1],[1,2,1,1]],[[0,0,2,0],[0,3,3,1],[2,4,3,1],[1,2,1,1]],[[0,0,2,0],[0,3,3,1],[2,3,4,1],[1,2,1,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,1],[2,2,1,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,1],[1,3,1,1]],[[0,0,2,0],[0,3,3,1],[2,3,4,2],[1,0,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,3],[1,0,2,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,2],[1,0,2,2]],[[0,0,2,0],[0,3,4,1],[2,3,3,2],[1,1,1,1]],[[0,0,2,0],[0,3,3,1],[2,4,3,2],[1,1,1,1]],[[0,0,2,0],[0,3,3,1],[2,3,4,2],[1,1,1,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,3],[1,1,1,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,2],[1,1,1,2]],[[0,0,2,0],[0,3,4,1],[2,3,3,2],[1,1,2,0]],[[0,0,2,0],[0,3,3,1],[2,4,3,2],[1,1,2,0]],[[0,0,2,0],[0,3,3,1],[2,3,4,2],[1,1,2,0]],[[0,0,2,0],[0,3,3,1],[2,3,3,3],[1,1,2,0]],[[0,0,2,0],[0,3,3,1],[2,3,3,2],[1,1,3,0]],[[0,0,2,0],[0,3,4,1],[2,3,3,2],[1,2,0,1]],[[0,0,2,0],[0,3,3,1],[2,4,3,2],[1,2,0,1]],[[0,0,2,0],[0,3,3,1],[2,3,4,2],[1,2,0,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,3],[1,2,0,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,2],[2,2,0,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,2],[1,3,0,1]],[[0,0,2,0],[0,3,3,1],[2,3,3,2],[1,2,0,2]],[[0,0,2,0],[0,3,4,1],[2,3,3,2],[1,2,1,0]],[[0,0,2,0],[0,3,3,1],[2,4,3,2],[1,2,1,0]],[[0,0,2,0],[0,3,3,1],[2,3,4,2],[1,2,1,0]],[[0,0,2,0],[0,3,3,1],[2,3,3,3],[1,2,1,0]],[[0,0,2,0],[0,3,3,1],[2,3,3,2],[2,2,1,0]],[[0,0,2,0],[0,3,3,1],[2,3,3,2],[1,3,1,0]],[[0,0,2,0],[0,3,4,2],[2,2,1,2],[1,2,2,1]],[[0,0,2,0],[0,3,3,3],[2,2,1,2],[1,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,2,1,3],[1,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,2,1,2],[2,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,2,1,2],[1,3,2,1]],[[0,0,2,0],[0,3,3,2],[2,2,1,2],[1,2,3,1]],[[0,0,2,0],[0,3,3,2],[2,2,1,2],[1,2,2,2]],[[0,0,2,0],[0,3,4,2],[2,2,2,2],[1,2,1,1]],[[0,0,2,0],[0,3,3,3],[2,2,2,2],[1,2,1,1]],[[0,0,2,0],[0,3,3,2],[2,2,2,3],[1,2,1,1]],[[0,0,2,0],[0,3,3,2],[2,2,2,2],[1,2,1,2]],[[0,0,2,0],[0,3,4,2],[2,2,2,2],[1,2,2,0]],[[0,0,2,0],[0,3,3,3],[2,2,2,2],[1,2,2,0]],[[0,0,2,0],[0,3,3,2],[2,2,2,3],[1,2,2,0]],[[0,0,2,0],[0,3,4,2],[2,2,3,0],[1,2,2,1]],[[0,0,2,0],[0,3,3,3],[2,2,3,0],[1,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,2,4,0],[1,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,2,3,0],[2,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,2,3,0],[1,3,2,1]],[[0,0,2,0],[0,3,3,2],[2,2,3,0],[1,2,3,1]],[[0,0,2,0],[0,3,3,2],[2,2,3,0],[1,2,2,2]],[[0,0,2,0],[0,3,4,2],[2,2,3,1],[1,2,1,1]],[[0,0,2,0],[0,3,3,3],[2,2,3,1],[1,2,1,1]],[[0,0,2,0],[0,3,3,2],[2,2,4,1],[1,2,1,1]],[[0,0,2,0],[0,3,4,2],[2,2,3,1],[1,2,2,0]],[[0,0,2,0],[0,3,3,3],[2,2,3,1],[1,2,2,0]],[[0,0,2,0],[0,3,3,2],[2,2,4,1],[1,2,2,0]],[[0,0,2,0],[0,3,3,2],[2,2,3,1],[2,2,2,0]],[[0,0,2,0],[0,3,3,2],[2,2,3,1],[1,3,2,0]],[[0,0,2,0],[0,3,3,2],[2,2,3,1],[1,2,3,0]],[[0,0,2,0],[0,3,4,2],[2,3,0,2],[1,2,2,1]],[[0,0,2,0],[0,3,3,3],[2,3,0,2],[1,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,4,0,2],[1,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,3,0,3],[1,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,3,0,2],[2,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,3,0,2],[1,3,2,1]],[[0,0,2,0],[0,3,3,2],[2,3,0,2],[1,2,3,1]],[[0,0,2,0],[0,3,3,2],[2,3,0,2],[1,2,2,2]],[[0,0,2,0],[0,3,4,2],[2,3,1,2],[1,1,2,1]],[[0,0,2,0],[0,3,3,3],[2,3,1,2],[1,1,2,1]],[[0,0,2,0],[0,3,3,2],[2,3,1,3],[1,1,2,1]],[[0,0,2,0],[0,3,3,2],[2,3,1,2],[1,1,3,1]],[[0,0,2,0],[0,3,3,2],[2,3,1,2],[1,1,2,2]],[[0,0,2,0],[0,3,3,2],[2,4,2,0],[1,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,3,2,0],[2,2,2,1]],[[0,0,2,0],[0,3,3,2],[2,3,2,0],[1,3,2,1]],[[0,0,2,0],[0,3,3,2],[2,3,2,0],[1,2,3,1]],[[0,0,2,0],[0,3,3,2],[2,3,2,0],[1,2,2,2]],[[0,0,2,0],[0,3,3,2],[2,4,2,1],[1,2,2,0]],[[0,0,2,0],[0,3,3,2],[2,3,2,1],[2,2,2,0]],[[0,0,2,0],[0,3,3,2],[2,3,2,1],[1,3,2,0]],[[0,0,2,0],[0,3,3,2],[2,3,2,1],[1,2,3,0]],[[0,0,2,0],[0,3,4,2],[2,3,2,2],[1,1,1,1]],[[0,0,2,0],[0,3,3,3],[2,3,2,2],[1,1,1,1]],[[0,0,2,0],[0,3,3,2],[2,3,2,3],[1,1,1,1]],[[0,0,2,0],[0,3,3,2],[2,3,2,2],[1,1,1,2]],[[0,0,2,0],[0,3,4,2],[2,3,2,2],[1,1,2,0]],[[0,0,2,0],[0,3,3,3],[2,3,2,2],[1,1,2,0]],[[0,0,2,0],[0,3,3,2],[2,3,2,3],[1,1,2,0]],[[0,0,2,0],[0,3,4,2],[2,3,2,2],[1,2,0,1]],[[0,0,2,0],[0,3,3,3],[2,3,2,2],[1,2,0,1]],[[0,0,2,0],[0,3,3,2],[2,3,2,3],[1,2,0,1]],[[0,0,2,0],[0,3,3,2],[2,3,2,2],[1,2,0,2]],[[0,0,2,0],[0,3,4,2],[2,3,2,2],[1,2,1,0]],[[0,0,2,0],[0,3,3,3],[2,3,2,2],[1,2,1,0]],[[0,0,2,0],[0,3,3,2],[2,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,3,3,3],[0,1,3,2],[0,0,0,1]],[[1,2,2,2],[2,3,3,2],[0,1,3,2],[0,0,0,1]],[[1,2,3,1],[2,3,3,2],[0,1,3,2],[0,0,0,1]],[[1,3,2,1],[2,3,3,2],[0,1,3,2],[0,0,0,1]],[[2,2,2,1],[2,3,3,2],[0,1,3,2],[0,0,0,1]],[[0,0,2,0],[0,3,4,2],[2,3,3,0],[1,1,2,1]],[[0,0,2,0],[0,3,3,3],[2,3,3,0],[1,1,2,1]],[[0,0,2,0],[0,3,3,2],[2,4,3,0],[1,1,2,1]],[[0,0,2,0],[0,3,3,2],[2,3,4,0],[1,1,2,1]],[[0,0,2,0],[0,3,3,2],[2,3,3,0],[1,1,3,1]],[[0,0,2,0],[0,3,3,2],[2,3,3,0],[1,1,2,2]],[[0,0,2,0],[0,3,4,2],[2,3,3,0],[1,2,1,1]],[[0,0,2,0],[0,3,3,3],[2,3,3,0],[1,2,1,1]],[[0,0,2,0],[0,3,3,2],[2,4,3,0],[1,2,1,1]],[[0,0,2,0],[0,3,3,2],[2,3,4,0],[1,2,1,1]],[[0,0,2,0],[0,3,3,2],[2,3,3,0],[2,2,1,1]],[[0,0,2,0],[0,3,3,2],[2,3,3,0],[1,3,1,1]],[[0,0,2,0],[0,3,4,2],[2,3,3,1],[1,1,1,1]],[[0,0,2,0],[0,3,3,3],[2,3,3,1],[1,1,1,1]],[[0,0,2,0],[0,3,3,2],[2,4,3,1],[1,1,1,1]],[[0,0,2,0],[0,3,3,2],[2,3,4,1],[1,1,1,1]],[[0,0,2,0],[0,3,4,2],[2,3,3,1],[1,1,2,0]],[[0,0,2,0],[0,3,3,3],[2,3,3,1],[1,1,2,0]],[[0,0,2,0],[0,3,3,2],[2,4,3,1],[1,1,2,0]],[[0,0,2,0],[0,3,3,2],[2,3,4,1],[1,1,2,0]],[[0,0,2,0],[0,3,3,2],[2,3,3,1],[1,1,3,0]],[[0,0,2,0],[0,3,4,2],[2,3,3,1],[1,2,0,1]],[[0,0,2,0],[0,3,3,3],[2,3,3,1],[1,2,0,1]],[[0,0,2,0],[0,3,3,2],[2,4,3,1],[1,2,0,1]],[[0,0,2,0],[0,3,3,2],[2,3,4,1],[1,2,0,1]],[[0,0,2,0],[0,3,3,2],[2,3,3,1],[2,2,0,1]],[[0,0,2,0],[0,3,3,2],[2,3,3,1],[1,3,0,1]],[[0,0,2,0],[0,3,4,2],[2,3,3,1],[1,2,1,0]],[[0,0,2,0],[0,3,3,3],[2,3,3,1],[1,2,1,0]],[[0,0,2,0],[0,3,3,2],[2,4,3,1],[1,2,1,0]],[[0,0,2,0],[0,3,3,2],[2,3,4,1],[1,2,1,0]],[[0,0,2,0],[0,3,3,2],[2,3,3,1],[2,2,1,0]],[[0,0,2,0],[0,3,3,2],[2,3,3,1],[1,3,1,0]],[[0,0,2,0],[1,2,1,2],[1,3,3,3],[1,2,2,1]],[[0,0,2,0],[1,2,1,2],[1,3,3,2],[2,2,2,1]],[[0,0,2,0],[1,2,1,2],[1,3,3,2],[1,3,2,1]],[[0,0,2,0],[1,2,1,2],[1,3,3,2],[1,2,3,1]],[[0,0,2,0],[1,2,1,2],[1,3,3,2],[1,2,2,2]],[[0,0,2,0],[1,2,1,2],[2,3,3,3],[0,2,2,1]],[[0,0,2,0],[1,2,1,2],[2,3,3,2],[0,3,2,1]],[[0,0,2,0],[1,2,1,2],[2,3,3,2],[0,2,3,1]],[[0,0,2,0],[1,2,1,2],[2,3,3,2],[0,2,2,2]],[[0,0,2,0],[1,2,2,2],[1,3,2,3],[1,2,2,1]],[[0,0,2,0],[1,2,2,2],[1,3,2,2],[2,2,2,1]],[[0,0,2,0],[1,2,2,2],[1,3,2,2],[1,3,2,1]],[[0,0,2,0],[1,2,2,2],[1,3,2,2],[1,2,3,1]],[[0,0,2,0],[1,2,2,2],[1,3,2,2],[1,2,2,2]],[[0,0,2,0],[1,2,2,2],[1,3,4,1],[1,2,2,1]],[[0,0,2,0],[1,2,2,2],[1,3,3,1],[2,2,2,1]],[[0,0,2,0],[1,2,2,2],[1,3,3,1],[1,3,2,1]],[[0,0,2,0],[1,2,2,2],[1,3,3,1],[1,2,3,1]],[[0,0,2,0],[1,2,2,2],[1,3,3,1],[1,2,2,2]],[[0,0,2,0],[1,2,2,2],[1,3,4,2],[1,2,1,1]],[[0,0,2,0],[1,2,2,2],[1,3,3,3],[1,2,1,1]],[[0,0,2,0],[1,2,2,2],[1,3,3,2],[1,2,1,2]],[[0,0,2,0],[1,2,2,2],[1,3,4,2],[1,2,2,0]],[[0,0,2,0],[1,2,2,2],[1,3,3,3],[1,2,2,0]],[[0,0,2,0],[1,2,2,2],[1,3,3,2],[2,2,2,0]],[[0,0,2,0],[1,2,2,2],[1,3,3,2],[1,3,2,0]],[[0,0,2,0],[1,2,2,2],[1,3,3,2],[1,2,3,0]],[[0,0,2,0],[1,2,2,2],[2,3,2,3],[0,2,2,1]],[[0,0,2,0],[1,2,2,2],[2,3,2,2],[0,3,2,1]],[[0,0,2,0],[1,2,2,2],[2,3,2,2],[0,2,3,1]],[[0,0,2,0],[1,2,2,2],[2,3,2,2],[0,2,2,2]],[[0,0,2,0],[1,2,2,2],[2,3,4,1],[0,2,2,1]],[[0,0,2,0],[1,2,2,2],[2,3,3,1],[0,3,2,1]],[[0,0,2,0],[1,2,2,2],[2,3,3,1],[0,2,3,1]],[[0,0,2,0],[1,2,2,2],[2,3,3,1],[0,2,2,2]],[[0,0,2,0],[1,2,2,2],[2,3,4,2],[0,2,1,1]],[[0,0,2,0],[1,2,2,2],[2,3,3,3],[0,2,1,1]],[[0,0,2,0],[1,2,2,2],[2,3,3,2],[0,2,1,2]],[[0,0,2,0],[1,2,2,2],[2,3,4,2],[0,2,2,0]],[[0,0,2,0],[1,2,2,2],[2,3,3,3],[0,2,2,0]],[[0,0,2,0],[1,2,2,2],[2,3,3,2],[0,3,2,0]],[[0,0,2,0],[1,2,2,2],[2,3,3,2],[0,2,3,0]],[[0,0,2,0],[1,2,3,0],[1,3,4,2],[1,2,2,1]],[[0,0,2,0],[1,2,3,0],[1,3,3,2],[2,2,2,1]],[[0,0,2,0],[1,2,3,0],[1,3,3,2],[1,3,2,1]],[[0,0,2,0],[1,2,3,0],[1,3,3,2],[1,2,3,1]],[[0,0,2,0],[1,2,3,0],[1,3,3,2],[1,2,2,2]],[[0,0,2,0],[1,2,3,0],[2,3,4,2],[0,2,2,1]],[[0,0,2,0],[1,2,3,0],[2,3,3,2],[0,3,2,1]],[[0,0,2,0],[1,2,3,0],[2,3,3,2],[0,2,3,1]],[[0,0,2,0],[1,2,3,0],[2,3,3,2],[0,2,2,2]],[[0,0,2,0],[1,2,3,1],[1,3,2,3],[1,2,2,1]],[[0,0,2,0],[1,2,3,1],[1,3,2,2],[2,2,2,1]],[[0,0,2,0],[1,2,3,1],[1,3,2,2],[1,3,2,1]],[[0,0,2,0],[1,2,3,1],[1,3,2,2],[1,2,3,1]],[[0,0,2,0],[1,2,3,1],[1,3,2,2],[1,2,2,2]],[[0,0,2,0],[1,2,3,1],[1,3,4,1],[1,2,2,1]],[[0,0,2,0],[1,2,3,1],[1,3,3,1],[2,2,2,1]],[[0,0,2,0],[1,2,3,1],[1,3,3,1],[1,3,2,1]],[[0,0,2,0],[1,2,3,1],[1,3,3,1],[1,2,3,1]],[[0,0,2,0],[1,2,3,1],[1,3,3,1],[1,2,2,2]],[[0,0,2,0],[1,2,3,1],[1,3,4,2],[1,2,1,1]],[[0,0,2,0],[1,2,3,1],[1,3,3,3],[1,2,1,1]],[[0,0,2,0],[1,2,3,1],[1,3,3,2],[1,2,1,2]],[[0,0,2,0],[1,2,3,1],[1,3,4,2],[1,2,2,0]],[[0,0,2,0],[1,2,3,1],[1,3,3,3],[1,2,2,0]],[[0,0,2,0],[1,2,3,1],[1,3,3,2],[2,2,2,0]],[[0,0,2,0],[1,2,3,1],[1,3,3,2],[1,3,2,0]],[[0,0,2,0],[1,2,3,1],[1,3,3,2],[1,2,3,0]],[[0,0,2,0],[1,2,3,1],[2,3,2,3],[0,2,2,1]],[[0,0,2,0],[1,2,3,1],[2,3,2,2],[0,3,2,1]],[[0,0,2,0],[1,2,3,1],[2,3,2,2],[0,2,3,1]],[[0,0,2,0],[1,2,3,1],[2,3,2,2],[0,2,2,2]],[[0,0,2,0],[1,2,3,1],[2,3,4,1],[0,2,2,1]],[[0,0,2,0],[1,2,3,1],[2,3,3,1],[0,3,2,1]],[[0,0,2,0],[1,2,3,1],[2,3,3,1],[0,2,3,1]],[[0,0,2,0],[1,2,3,1],[2,3,3,1],[0,2,2,2]],[[0,0,2,0],[1,2,3,1],[2,3,4,2],[0,2,1,1]],[[0,0,2,0],[1,2,3,1],[2,3,3,3],[0,2,1,1]],[[0,0,2,0],[1,2,3,1],[2,3,3,2],[0,2,1,2]],[[0,0,2,0],[1,2,3,1],[2,3,4,2],[0,2,2,0]],[[0,0,2,0],[1,2,3,1],[2,3,3,3],[0,2,2,0]],[[0,0,2,0],[1,2,3,1],[2,3,3,2],[0,3,2,0]],[[0,0,2,0],[1,2,3,1],[2,3,3,2],[0,2,3,0]],[[0,0,2,0],[1,2,3,2],[1,3,4,0],[1,2,2,1]],[[0,0,2,0],[1,2,3,2],[1,3,3,0],[2,2,2,1]],[[0,0,2,0],[1,2,3,2],[1,3,3,0],[1,3,2,1]],[[0,0,2,0],[1,2,3,2],[1,3,3,0],[1,2,3,1]],[[0,0,2,0],[1,2,3,2],[1,3,3,0],[1,2,2,2]],[[0,0,2,0],[1,2,3,2],[1,3,4,1],[1,2,2,0]],[[0,0,2,0],[1,2,3,2],[1,3,3,1],[2,2,2,0]],[[0,0,2,0],[1,2,3,2],[1,3,3,1],[1,3,2,0]],[[0,0,2,0],[1,2,3,2],[1,3,3,1],[1,2,3,0]],[[0,0,2,0],[1,2,3,2],[2,3,4,0],[0,2,2,1]],[[0,0,2,0],[1,2,3,2],[2,3,3,0],[0,3,2,1]],[[0,0,2,0],[1,2,3,2],[2,3,3,0],[0,2,3,1]],[[0,0,2,0],[1,2,3,2],[2,3,3,0],[0,2,2,2]],[[0,0,2,0],[1,2,3,2],[2,3,4,1],[0,2,2,0]],[[0,0,2,0],[1,2,3,2],[2,3,3,1],[0,3,2,0]],[[0,0,2,0],[1,2,3,2],[2,3,3,1],[0,2,3,0]],[[1,2,2,1],[2,3,4,2],[0,1,3,0],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[0,1,3,0],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[0,1,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[0,1,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[0,1,3,0],[1,1,1,0]],[[1,2,2,1],[2,3,4,2],[0,1,3,0],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[0,1,3,0],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[0,1,3,0],[1,1,0,1]],[[1,3,2,1],[2,3,3,2],[0,1,3,0],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[0,1,3,0],[1,1,0,1]],[[0,0,2,0],[1,3,0,2],[1,3,3,3],[1,2,2,1]],[[0,0,2,0],[1,3,0,2],[1,3,3,2],[2,2,2,1]],[[0,0,2,0],[1,3,0,2],[1,3,3,2],[1,3,2,1]],[[0,0,2,0],[1,3,0,2],[1,3,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,0,2],[1,3,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,0,2],[2,3,3,3],[0,2,2,1]],[[0,0,2,0],[1,3,0,2],[2,3,3,2],[0,3,2,1]],[[0,0,2,0],[1,3,0,2],[2,3,3,2],[0,2,3,1]],[[0,0,2,0],[1,3,0,2],[2,3,3,2],[0,2,2,2]],[[0,0,2,0],[1,3,1,2],[0,3,3,3],[1,2,2,1]],[[0,0,2,0],[1,3,1,2],[0,3,3,2],[1,3,2,1]],[[0,0,2,0],[1,3,1,2],[0,3,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,1,2],[0,3,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,1,2],[1,2,3,3],[1,2,2,1]],[[0,0,2,0],[1,3,1,2],[1,2,3,2],[2,2,2,1]],[[0,0,2,0],[1,3,1,2],[1,2,3,2],[1,3,2,1]],[[0,0,2,0],[1,3,1,2],[1,2,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,1,2],[1,2,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,1,2],[1,3,3,3],[1,1,2,1]],[[0,0,2,0],[1,3,1,2],[1,3,3,2],[1,1,3,1]],[[0,0,2,0],[1,3,1,2],[1,3,3,2],[1,1,2,2]],[[0,0,2,0],[1,3,1,2],[2,1,3,3],[1,2,2,1]],[[0,0,2,0],[1,3,1,2],[2,1,3,2],[2,2,2,1]],[[0,0,2,0],[1,3,1,2],[2,1,3,2],[1,3,2,1]],[[0,0,2,0],[1,3,1,2],[2,1,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,1,2],[2,1,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,1,2],[2,2,3,3],[0,2,2,1]],[[0,0,2,0],[1,3,1,2],[2,2,3,2],[0,3,2,1]],[[0,0,2,0],[1,3,1,2],[2,2,3,2],[0,2,3,1]],[[0,0,2,0],[1,3,1,2],[2,2,3,2],[0,2,2,2]],[[0,0,2,0],[1,3,1,2],[2,3,3,3],[0,1,2,1]],[[0,0,2,0],[1,3,1,2],[2,3,3,2],[0,1,3,1]],[[0,0,2,0],[1,3,1,2],[2,3,3,2],[0,1,2,2]],[[0,0,2,0],[1,3,1,2],[2,3,3,3],[1,0,2,1]],[[0,0,2,0],[1,3,1,2],[2,3,3,2],[1,0,3,1]],[[0,0,2,0],[1,3,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,1],[2,3,4,2],[0,1,3,0],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[0,1,3,0],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[0,1,3,0],[1,0,2,0]],[[0,0,2,0],[1,3,2,2],[0,2,3,3],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[0,2,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[0,2,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,2,3],[0,3,2,2],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[0,3,2,3],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[0,3,2,2],[1,3,2,1]],[[0,0,2,0],[1,3,2,2],[0,3,2,2],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[0,3,2,2],[1,2,2,2]],[[0,0,2,0],[1,3,2,2],[0,3,4,1],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[0,3,3,1],[1,3,2,1]],[[0,0,2,0],[1,3,2,2],[0,3,3,1],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[0,3,3,1],[1,2,2,2]],[[0,0,2,0],[1,3,2,3],[0,3,3,2],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[0,3,4,2],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[0,3,3,3],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[0,3,3,2],[1,2,1,2]],[[0,0,2,0],[1,3,2,3],[0,3,3,2],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[0,3,4,2],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[0,3,3,3],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[0,3,3,2],[1,3,2,0]],[[0,0,2,0],[1,3,2,2],[0,3,3,2],[1,2,3,0]],[[0,0,2,0],[1,3,2,2],[1,1,3,3],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,1,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[1,1,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,2,3],[1,2,2,2],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,2,2,3],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,2,2,2],[2,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,2,2,2],[1,3,2,1]],[[0,0,2,0],[1,3,2,2],[1,2,2,2],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[1,2,2,2],[1,2,2,2]],[[0,0,2,0],[1,3,2,2],[1,2,4,1],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,2,3,1],[2,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,2,3,1],[1,3,2,1]],[[0,0,2,0],[1,3,2,2],[1,2,3,1],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[1,2,3,1],[1,2,2,2]],[[0,0,2,0],[1,3,2,3],[1,2,3,2],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[1,2,4,2],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[1,2,3,3],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[1,2,3,2],[1,2,1,2]],[[0,0,2,0],[1,3,2,3],[1,2,3,2],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[1,2,4,2],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[1,2,3,3],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[1,2,3,2],[2,2,2,0]],[[0,0,2,0],[1,3,2,2],[1,2,3,2],[1,3,2,0]],[[0,0,2,0],[1,3,2,2],[1,2,3,2],[1,2,3,0]],[[0,0,2,0],[1,3,2,3],[1,3,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,4,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,1,3],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,1,2],[2,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,1,2],[1,3,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,1,2],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[1,3,1,2],[1,2,2,2]],[[0,0,2,0],[1,3,2,2],[1,4,2,1],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,2,1],[2,2,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,2,1],[1,3,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,2,1],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[1,3,2,1],[1,2,2,2]],[[0,0,2,0],[1,3,2,3],[1,3,2,2],[1,1,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,2,3],[1,1,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,2,2],[1,1,3,1]],[[0,0,2,0],[1,3,2,2],[1,3,2,2],[1,1,2,2]],[[0,0,2,0],[1,3,2,2],[1,4,2,2],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[1,3,2,2],[2,2,2,0]],[[0,0,2,0],[1,3,2,2],[1,3,2,2],[1,3,2,0]],[[0,0,2,0],[1,3,2,2],[1,3,2,2],[1,2,3,0]],[[0,0,2,0],[1,3,2,2],[1,4,3,1],[1,1,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,4,1],[1,1,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,1],[1,1,3,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,1],[1,1,2,2]],[[0,0,2,0],[1,3,2,2],[1,4,3,1],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[1,3,4,1],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,1],[2,2,1,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,1],[1,3,1,1]],[[0,0,2,0],[1,3,2,3],[1,3,3,2],[1,0,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,4,2],[1,0,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,3],[1,0,2,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,2],[1,0,2,2]],[[0,0,2,0],[1,3,2,3],[1,3,3,2],[1,1,1,1]],[[0,0,2,0],[1,3,2,2],[1,4,3,2],[1,1,1,1]],[[0,0,2,0],[1,3,2,2],[1,3,4,2],[1,1,1,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,3],[1,1,1,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,2],[1,1,1,2]],[[0,0,2,0],[1,3,2,3],[1,3,3,2],[1,1,2,0]],[[0,0,2,0],[1,3,2,2],[1,4,3,2],[1,1,2,0]],[[0,0,2,0],[1,3,2,2],[1,3,4,2],[1,1,2,0]],[[0,0,2,0],[1,3,2,2],[1,3,3,3],[1,1,2,0]],[[0,0,2,0],[1,3,2,2],[1,3,3,2],[1,1,3,0]],[[0,0,2,0],[1,3,2,3],[1,3,3,2],[1,2,0,1]],[[0,0,2,0],[1,3,2,2],[1,4,3,2],[1,2,0,1]],[[0,0,2,0],[1,3,2,2],[1,3,4,2],[1,2,0,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,3],[1,2,0,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,2],[2,2,0,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,2],[1,3,0,1]],[[0,0,2,0],[1,3,2,2],[1,3,3,2],[1,2,0,2]],[[0,0,2,0],[1,3,2,3],[1,3,3,2],[1,2,1,0]],[[0,0,2,0],[1,3,2,2],[1,4,3,2],[1,2,1,0]],[[0,0,2,0],[1,3,2,2],[1,3,4,2],[1,2,1,0]],[[0,0,2,0],[1,3,2,2],[1,3,3,3],[1,2,1,0]],[[0,0,2,0],[1,3,2,2],[1,3,3,2],[2,2,1,0]],[[0,0,2,0],[1,3,2,2],[1,3,3,2],[1,3,1,0]],[[1,3,2,1],[2,3,3,2],[0,1,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[0,1,3,0],[1,0,2,0]],[[1,2,2,1],[2,3,4,2],[0,1,3,0],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[0,1,3,0],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[0,1,3,0],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[0,1,3,0],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[0,1,3,0],[1,0,1,1]],[[0,0,2,0],[1,3,2,2],[2,0,3,3],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,0,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[2,0,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,2,3],[2,1,2,2],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[3,1,2,2],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,1,2,3],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,1,2,2],[2,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,1,2,2],[1,3,2,1]],[[0,0,2,0],[1,3,2,2],[2,1,2,2],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[2,1,2,2],[1,2,2,2]],[[0,0,2,0],[1,3,2,2],[3,1,3,1],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,1,4,1],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,1,3,1],[2,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,1,3,1],[1,3,2,1]],[[0,0,2,0],[1,3,2,2],[2,1,3,1],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[2,1,3,1],[1,2,2,2]],[[0,0,2,0],[1,3,2,2],[2,1,3,3],[0,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,1,3,2],[0,2,3,1]],[[0,0,2,0],[1,3,2,2],[2,1,3,2],[0,2,2,2]],[[0,0,2,0],[1,3,2,3],[2,1,3,2],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[2,1,4,2],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[2,1,3,3],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[2,1,3,2],[1,2,1,2]],[[0,0,2,0],[1,3,2,3],[2,1,3,2],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[3,1,3,2],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[2,1,4,2],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[2,1,3,3],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[2,1,3,2],[2,2,2,0]],[[0,0,2,0],[1,3,2,2],[2,1,3,2],[1,3,2,0]],[[0,0,2,0],[1,3,2,2],[2,1,3,2],[1,2,3,0]],[[0,0,2,0],[1,3,2,3],[2,2,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[3,2,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,1,3],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,1,2],[2,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,1,2],[1,3,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,1,2],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[2,2,1,2],[1,2,2,2]],[[0,0,2,0],[1,3,2,2],[3,2,2,1],[1,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,2,1],[2,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,2,1],[1,3,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,2,1],[1,2,3,1]],[[0,0,2,0],[1,3,2,2],[2,2,2,1],[1,2,2,2]],[[0,0,2,0],[1,3,2,3],[2,2,2,2],[0,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,2,3],[0,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,2,2],[0,3,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,2,2],[0,2,3,1]],[[0,0,2,0],[1,3,2,2],[2,2,2,2],[0,2,2,2]],[[0,0,2,0],[1,3,2,2],[3,2,2,2],[1,2,2,0]],[[0,0,2,0],[1,3,2,2],[2,2,2,2],[2,2,2,0]],[[0,0,2,0],[1,3,2,2],[2,2,2,2],[1,3,2,0]],[[0,0,2,0],[1,3,2,2],[2,2,2,2],[1,2,3,0]],[[0,0,2,0],[1,3,2,2],[2,2,4,1],[0,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,3,1],[0,3,2,1]],[[0,0,2,0],[1,3,2,2],[2,2,3,1],[0,2,3,1]],[[0,0,2,0],[1,3,2,2],[2,2,3,1],[0,2,2,2]],[[0,0,2,0],[1,3,2,2],[3,2,3,1],[1,2,1,1]],[[0,0,2,0],[1,3,2,2],[2,2,3,1],[2,2,1,1]],[[0,0,2,0],[1,3,2,2],[2,2,3,1],[1,3,1,1]],[[0,0,2,0],[1,3,2,3],[2,2,3,2],[0,2,1,1]],[[0,0,2,0],[1,3,2,2],[2,2,4,2],[0,2,1,1]],[[0,0,2,0],[1,3,2,2],[2,2,3,3],[0,2,1,1]],[[0,0,2,0],[1,3,2,2],[2,2,3,2],[0,2,1,2]],[[0,0,2,0],[1,3,2,3],[2,2,3,2],[0,2,2,0]],[[0,0,2,0],[1,3,2,2],[2,2,4,2],[0,2,2,0]],[[0,0,2,0],[1,3,2,2],[2,2,3,3],[0,2,2,0]],[[0,0,2,0],[1,3,2,2],[2,2,3,2],[0,3,2,0]],[[0,0,2,0],[1,3,2,2],[2,2,3,2],[0,2,3,0]],[[0,0,2,0],[1,3,2,2],[3,2,3,2],[1,2,0,1]],[[0,0,2,0],[1,3,2,2],[2,2,3,2],[2,2,0,1]],[[0,0,2,0],[1,3,2,2],[2,2,3,2],[1,3,0,1]],[[0,0,2,0],[1,3,2,2],[3,2,3,2],[1,2,1,0]],[[0,0,2,0],[1,3,2,2],[2,2,3,2],[2,2,1,0]],[[0,0,2,0],[1,3,2,2],[2,2,3,2],[1,3,1,0]],[[0,0,2,0],[1,3,2,3],[2,3,1,2],[0,2,2,1]],[[0,0,2,0],[1,3,2,2],[3,3,1,2],[0,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,4,1,2],[0,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,1,3],[0,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,1,2],[0,3,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,1,2],[0,2,3,1]],[[0,0,2,0],[1,3,2,2],[2,3,1,2],[0,2,2,2]],[[0,0,2,0],[1,3,2,2],[3,3,1,2],[1,1,2,1]],[[0,0,2,0],[1,3,2,2],[2,4,1,2],[1,1,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,1,2],[2,1,2,1]],[[0,0,2,0],[1,3,2,2],[3,3,2,1],[0,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,4,2,1],[0,2,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,2,1],[0,3,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,2,1],[0,2,3,1]],[[0,0,2,0],[1,3,2,2],[2,3,2,1],[0,2,2,2]],[[0,0,2,0],[1,3,2,2],[3,3,2,1],[1,1,2,1]],[[0,0,2,0],[1,3,2,2],[2,4,2,1],[1,1,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,2,1],[2,1,2,1]],[[0,0,2,0],[1,3,2,3],[2,3,2,2],[0,1,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,2,3],[0,1,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,2,2],[0,1,3,1]],[[0,0,2,0],[1,3,2,2],[2,3,2,2],[0,1,2,2]],[[0,0,2,0],[1,3,2,2],[3,3,2,2],[0,2,2,0]],[[0,0,2,0],[1,3,2,2],[2,4,2,2],[0,2,2,0]],[[0,0,2,0],[1,3,2,2],[2,3,2,2],[0,3,2,0]],[[0,0,2,0],[1,3,2,2],[2,3,2,2],[0,2,3,0]],[[0,0,2,0],[1,3,2,3],[2,3,2,2],[1,0,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,2,3],[1,0,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,2,2],[1,0,3,1]],[[0,0,2,0],[1,3,2,2],[2,3,2,2],[1,0,2,2]],[[0,0,2,0],[1,3,2,2],[3,3,2,2],[1,1,2,0]],[[0,0,2,0],[1,3,2,2],[2,4,2,2],[1,1,2,0]],[[0,0,2,0],[1,3,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,3,4,2],[0,1,3,0],[0,2,1,0]],[[1,2,2,2],[2,3,3,2],[0,1,3,0],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[0,1,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[0,1,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[0,1,3,0],[0,2,1,0]],[[1,2,2,1],[2,3,4,2],[0,1,3,0],[0,2,0,1]],[[0,0,2,0],[1,3,2,2],[3,3,3,1],[0,1,2,1]],[[0,0,2,0],[1,3,2,2],[2,4,3,1],[0,1,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,4,1],[0,1,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,1],[0,1,3,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,1],[0,1,2,2]],[[0,0,2,0],[1,3,2,2],[3,3,3,1],[0,2,1,1]],[[0,0,2,0],[1,3,2,2],[2,4,3,1],[0,2,1,1]],[[0,0,2,0],[1,3,2,2],[2,3,4,1],[0,2,1,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,1],[0,3,1,1]],[[0,0,2,0],[1,3,2,2],[3,3,3,1],[1,0,2,1]],[[0,0,2,0],[1,3,2,2],[2,4,3,1],[1,0,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,4,1],[1,0,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,1],[2,0,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,1],[1,0,3,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,1],[1,0,2,2]],[[0,0,2,0],[1,3,2,2],[3,3,3,1],[1,1,1,1]],[[0,0,2,0],[1,3,2,2],[2,4,3,1],[1,1,1,1]],[[0,0,2,0],[1,3,2,2],[2,3,4,1],[1,1,1,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,2],[2,3,3,2],[0,1,3,0],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[0,1,3,0],[0,2,0,1]],[[1,3,2,1],[2,3,3,2],[0,1,3,0],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[0,1,3,0],[0,2,0,1]],[[0,0,2,0],[1,3,2,3],[2,3,3,2],[0,0,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,4,2],[0,0,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,3],[0,0,2,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[0,0,2,2]],[[0,0,2,0],[1,3,2,3],[2,3,3,2],[0,1,1,1]],[[0,0,2,0],[1,3,2,2],[3,3,3,2],[0,1,1,1]],[[0,0,2,0],[1,3,2,2],[2,4,3,2],[0,1,1,1]],[[0,0,2,0],[1,3,2,2],[2,3,4,2],[0,1,1,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,3],[0,1,1,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[0,1,1,2]],[[0,0,2,0],[1,3,2,3],[2,3,3,2],[0,1,2,0]],[[0,0,2,0],[1,3,2,2],[3,3,3,2],[0,1,2,0]],[[0,0,2,0],[1,3,2,2],[2,4,3,2],[0,1,2,0]],[[0,0,2,0],[1,3,2,2],[2,3,4,2],[0,1,2,0]],[[0,0,2,0],[1,3,2,2],[2,3,3,3],[0,1,2,0]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[0,1,3,0]],[[0,0,2,0],[1,3,2,3],[2,3,3,2],[0,2,0,1]],[[0,0,2,0],[1,3,2,2],[3,3,3,2],[0,2,0,1]],[[0,0,2,0],[1,3,2,2],[2,4,3,2],[0,2,0,1]],[[0,0,2,0],[1,3,2,2],[2,3,4,2],[0,2,0,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,3],[0,2,0,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[0,3,0,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[0,2,0,2]],[[0,0,2,0],[1,3,2,3],[2,3,3,2],[0,2,1,0]],[[0,0,2,0],[1,3,2,2],[3,3,3,2],[0,2,1,0]],[[0,0,2,0],[1,3,2,2],[2,4,3,2],[0,2,1,0]],[[0,0,2,0],[1,3,2,2],[2,3,4,2],[0,2,1,0]],[[0,0,2,0],[1,3,2,2],[2,3,3,3],[0,2,1,0]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,3,4,2],[0,1,3,0],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[0,1,3,0],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[0,1,3,0],[0,1,2,0]],[[1,3,2,1],[2,3,3,2],[0,1,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[0,1,3,0],[0,1,2,0]],[[0,0,2,0],[1,3,2,3],[2,3,3,2],[1,0,1,1]],[[0,0,2,0],[1,3,2,2],[3,3,3,2],[1,0,1,1]],[[0,0,2,0],[1,3,2,2],[2,4,3,2],[1,0,1,1]],[[0,0,2,0],[1,3,2,2],[2,3,4,2],[1,0,1,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,3],[1,0,1,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[2,0,1,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[1,0,1,2]],[[0,0,2,0],[1,3,2,3],[2,3,3,2],[1,0,2,0]],[[0,0,2,0],[1,3,2,2],[3,3,3,2],[1,0,2,0]],[[0,0,2,0],[1,3,2,2],[2,4,3,2],[1,0,2,0]],[[0,0,2,0],[1,3,2,2],[2,3,4,2],[1,0,2,0]],[[0,0,2,0],[1,3,2,2],[2,3,3,3],[1,0,2,0]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[2,0,2,0]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[1,0,3,0]],[[0,0,2,0],[1,3,2,3],[2,3,3,2],[1,1,0,1]],[[0,0,2,0],[1,3,2,2],[3,3,3,2],[1,1,0,1]],[[0,0,2,0],[1,3,2,2],[2,4,3,2],[1,1,0,1]],[[0,0,2,0],[1,3,2,2],[2,3,4,2],[1,1,0,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,3],[1,1,0,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[2,1,0,1]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[1,1,0,2]],[[0,0,2,0],[1,3,2,3],[2,3,3,2],[1,1,1,0]],[[0,0,2,0],[1,3,2,2],[3,3,3,2],[1,1,1,0]],[[0,0,2,0],[1,3,2,2],[2,4,3,2],[1,1,1,0]],[[0,0,2,0],[1,3,2,2],[2,3,4,2],[1,1,1,0]],[[0,0,2,0],[1,3,2,2],[2,3,3,3],[1,1,1,0]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,3,4,2],[0,1,3,0],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[0,1,3,0],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[0,1,3,0],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[0,1,3,0],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[0,1,3,0],[0,1,1,1]],[[1,2,2,1],[2,3,4,2],[0,1,3,0],[0,0,2,1]],[[1,2,2,2],[2,3,3,2],[0,1,3,0],[0,0,2,1]],[[1,2,3,1],[2,3,3,2],[0,1,3,0],[0,0,2,1]],[[0,0,2,0],[1,3,2,2],[3,3,3,2],[1,2,0,0]],[[0,0,2,0],[1,3,2,2],[2,4,3,2],[1,2,0,0]],[[0,0,2,0],[1,3,2,2],[2,3,3,2],[2,2,0,0]],[[1,3,2,1],[2,3,3,2],[0,1,3,0],[0,0,2,1]],[[2,2,2,1],[2,3,3,2],[0,1,3,0],[0,0,2,1]],[[0,0,2,0],[1,3,3,0],[0,3,4,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,0],[0,3,3,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,0],[0,3,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,0],[0,3,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,3,0],[1,2,4,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,0],[1,2,3,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,0],[1,2,3,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,0],[1,2,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,0],[1,2,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,3,0],[1,4,2,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,0],[1,3,2,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,0],[1,3,2,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,0],[1,3,2,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,0],[1,3,2,2],[1,2,2,2]],[[0,0,2,0],[1,3,3,0],[1,4,3,2],[1,1,2,1]],[[0,0,2,0],[1,3,3,0],[1,3,4,2],[1,1,2,1]],[[0,0,2,0],[1,3,3,0],[1,3,3,2],[1,1,3,1]],[[0,0,2,0],[1,3,3,0],[1,3,3,2],[1,1,2,2]],[[0,0,2,0],[1,3,3,0],[1,4,3,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,0],[1,3,4,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,0],[1,3,3,2],[2,2,1,1]],[[0,0,2,0],[1,3,3,0],[1,3,3,2],[1,3,1,1]],[[0,0,2,0],[1,3,3,0],[3,1,3,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,0],[2,1,4,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,0],[2,1,3,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,0],[2,1,3,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,0],[2,1,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,0],[2,1,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,3,0],[3,2,2,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,0],[2,2,2,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,0],[2,2,2,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,0],[2,2,2,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,0],[2,2,2,2],[1,2,2,2]],[[0,0,2,0],[1,3,3,0],[2,2,4,2],[0,2,2,1]],[[0,0,2,0],[1,3,3,0],[2,2,3,2],[0,3,2,1]],[[0,0,2,0],[1,3,3,0],[2,2,3,2],[0,2,3,1]],[[0,0,2,0],[1,3,3,0],[2,2,3,2],[0,2,2,2]],[[0,0,2,0],[1,3,3,0],[3,2,3,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,0],[2,2,3,2],[2,2,1,1]],[[0,0,2,0],[1,3,3,0],[2,2,3,2],[1,3,1,1]],[[0,0,2,0],[1,3,3,0],[3,3,2,2],[0,2,2,1]],[[0,0,2,0],[1,3,3,0],[2,4,2,2],[0,2,2,1]],[[0,0,2,0],[1,3,3,0],[2,3,2,2],[0,3,2,1]],[[0,0,2,0],[1,3,3,0],[2,3,2,2],[0,2,3,1]],[[0,0,2,0],[1,3,3,0],[2,3,2,2],[0,2,2,2]],[[0,0,2,0],[1,3,3,0],[3,3,2,2],[1,1,2,1]],[[0,0,2,0],[1,3,3,0],[2,4,2,2],[1,1,2,1]],[[0,0,2,0],[1,3,3,0],[2,3,2,2],[2,1,2,1]],[[0,0,2,0],[1,3,3,0],[3,3,3,2],[0,1,2,1]],[[0,0,2,0],[1,3,3,0],[2,4,3,2],[0,1,2,1]],[[0,0,2,0],[1,3,3,0],[2,3,4,2],[0,1,2,1]],[[0,0,2,0],[1,3,3,0],[2,3,3,2],[0,1,3,1]],[[0,0,2,0],[1,3,3,0],[2,3,3,2],[0,1,2,2]],[[0,0,2,0],[1,3,3,0],[3,3,3,2],[0,2,1,1]],[[0,0,2,0],[1,3,3,0],[2,4,3,2],[0,2,1,1]],[[0,0,2,0],[1,3,3,0],[2,3,4,2],[0,2,1,1]],[[0,0,2,0],[1,3,3,0],[2,3,3,2],[0,3,1,1]],[[0,0,2,0],[1,3,3,0],[3,3,3,2],[1,0,2,1]],[[0,0,2,0],[1,3,3,0],[2,4,3,2],[1,0,2,1]],[[0,0,2,0],[1,3,3,0],[2,3,4,2],[1,0,2,1]],[[0,0,2,0],[1,3,3,0],[2,3,3,2],[2,0,2,1]],[[0,0,2,0],[1,3,3,0],[2,3,3,2],[1,0,3,1]],[[0,0,2,0],[1,3,3,0],[2,3,3,2],[1,0,2,2]],[[0,0,2,0],[1,3,3,0],[3,3,3,2],[1,1,1,1]],[[0,0,2,0],[1,3,3,0],[2,4,3,2],[1,1,1,1]],[[0,0,2,0],[1,3,3,0],[2,3,4,2],[1,1,1,1]],[[0,0,2,0],[1,3,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,1],[2,3,3,3],[0,1,2,2],[1,0,0,1]],[[1,2,2,2],[2,3,3,2],[0,1,2,2],[1,0,0,1]],[[0,0,2,0],[1,3,3,1],[0,2,3,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[0,2,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[0,2,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,3,1],[0,3,2,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[0,3,2,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[0,3,2,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[0,3,2,2],[1,2,2,2]],[[0,0,2,0],[1,3,4,1],[0,3,3,1],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[0,3,4,1],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[0,3,3,1],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[0,3,3,1],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[0,3,3,1],[1,2,2,2]],[[0,0,2,0],[1,3,4,1],[0,3,3,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[0,3,4,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[0,3,3,3],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[0,3,3,2],[1,2,1,2]],[[0,0,2,0],[1,3,4,1],[0,3,3,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[0,3,4,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[0,3,3,3],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[0,3,3,2],[1,3,2,0]],[[0,0,2,0],[1,3,3,1],[0,3,3,2],[1,2,3,0]],[[0,0,2,0],[1,3,3,1],[1,1,3,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,1,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[1,1,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,3,1],[1,2,2,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,2,2,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,2,2,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[1,2,2,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[1,2,2,2],[1,2,2,2]],[[0,0,2,0],[1,3,4,1],[1,2,3,1],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,2,4,1],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,2,3,1],[2,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,2,3,1],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[1,2,3,1],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[1,2,3,1],[1,2,2,2]],[[0,0,2,0],[1,3,4,1],[1,2,3,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[1,2,4,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[1,2,3,3],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[1,2,3,2],[1,2,1,2]],[[0,0,2,0],[1,3,4,1],[1,2,3,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[1,2,4,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[1,2,3,3],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[1,2,3,2],[2,2,2,0]],[[0,0,2,0],[1,3,3,1],[1,2,3,2],[1,3,2,0]],[[0,0,2,0],[1,3,3,1],[1,2,3,2],[1,2,3,0]],[[0,0,2,0],[1,3,3,1],[1,4,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,1,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,1,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,1,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,1,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[1,3,1,2],[1,2,2,2]],[[0,0,2,0],[1,3,3,1],[1,4,2,1],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,2,1],[2,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,2,1],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,2,1],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[1,3,2,1],[1,2,2,2]],[[0,0,2,0],[1,3,3,1],[1,3,2,3],[1,1,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,2,2],[1,1,3,1]],[[0,0,2,0],[1,3,3,1],[1,3,2,2],[1,1,2,2]],[[0,0,2,0],[1,3,3,1],[1,4,2,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[1,3,2,2],[2,2,2,0]],[[0,0,2,0],[1,3,3,1],[1,3,2,2],[1,3,2,0]],[[0,0,2,0],[1,3,3,1],[1,3,2,2],[1,2,3,0]],[[0,0,2,0],[1,3,3,1],[1,4,3,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,0],[2,2,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,0],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,0],[1,2,3,1]],[[0,0,2,0],[1,3,4,1],[1,3,3,1],[1,1,2,1]],[[0,0,2,0],[1,3,3,1],[1,4,3,1],[1,1,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,4,1],[1,1,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,1],[1,1,3,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,1],[1,1,2,2]],[[0,0,2,0],[1,3,4,1],[1,3,3,1],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[1,4,3,1],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[1,3,4,1],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,1],[2,2,1,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,1],[1,3,1,1]],[[0,0,2,0],[1,3,4,1],[1,3,3,2],[1,0,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,4,2],[1,0,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,3],[1,0,2,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,2],[1,0,2,2]],[[0,0,2,0],[1,3,4,1],[1,3,3,2],[1,1,1,1]],[[0,0,2,0],[1,3,3,1],[1,4,3,2],[1,1,1,1]],[[0,0,2,0],[1,3,3,1],[1,3,4,2],[1,1,1,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,3],[1,1,1,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,2],[1,1,1,2]],[[0,0,2,0],[1,3,4,1],[1,3,3,2],[1,1,2,0]],[[0,0,2,0],[1,3,3,1],[1,4,3,2],[1,1,2,0]],[[0,0,2,0],[1,3,3,1],[1,3,4,2],[1,1,2,0]],[[0,0,2,0],[1,3,3,1],[1,3,3,3],[1,1,2,0]],[[0,0,2,0],[1,3,3,1],[1,3,3,2],[1,1,3,0]],[[0,0,2,0],[1,3,4,1],[1,3,3,2],[1,2,0,1]],[[0,0,2,0],[1,3,3,1],[1,4,3,2],[1,2,0,1]],[[0,0,2,0],[1,3,3,1],[1,3,4,2],[1,2,0,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,3],[1,2,0,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,2],[2,2,0,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,2],[1,3,0,1]],[[0,0,2,0],[1,3,3,1],[1,3,3,2],[1,2,0,2]],[[0,0,2,0],[1,3,4,1],[1,3,3,2],[1,2,1,0]],[[0,0,2,0],[1,3,3,1],[1,4,3,2],[1,2,1,0]],[[0,0,2,0],[1,3,3,1],[1,3,4,2],[1,2,1,0]],[[0,0,2,0],[1,3,3,1],[1,3,3,3],[1,2,1,0]],[[0,0,2,0],[1,3,3,1],[1,3,3,2],[2,2,1,0]],[[0,0,2,0],[1,3,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,3,1],[2,3,3,2],[0,1,2,2],[1,0,0,1]],[[1,3,2,1],[2,3,3,2],[0,1,2,2],[1,0,0,1]],[[2,2,2,1],[2,3,3,2],[0,1,2,2],[1,0,0,1]],[[0,0,2,0],[1,3,3,1],[2,0,3,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,0,3,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[2,0,3,2],[1,2,2,2]],[[0,0,2,0],[1,3,3,1],[3,1,2,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,1,2,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,1,2,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,1,2,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[2,1,2,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[2,1,2,2],[1,2,2,2]],[[0,0,2,0],[1,3,4,1],[2,1,3,1],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[3,1,3,1],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,1,4,1],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,1,3,1],[2,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,1,3,1],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[2,1,3,1],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[2,1,3,1],[1,2,2,2]],[[0,0,2,0],[1,3,3,1],[2,1,3,3],[0,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,1,3,2],[0,2,3,1]],[[0,0,2,0],[1,3,3,1],[2,1,3,2],[0,2,2,2]],[[0,0,2,0],[1,3,4,1],[2,1,3,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[2,1,4,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[2,1,3,3],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[2,1,3,2],[1,2,1,2]],[[0,0,2,0],[1,3,4,1],[2,1,3,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[3,1,3,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[2,1,4,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[2,1,3,3],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[2,1,3,2],[2,2,2,0]],[[0,0,2,0],[1,3,3,1],[2,1,3,2],[1,3,2,0]],[[0,0,2,0],[1,3,3,1],[2,1,3,2],[1,2,3,0]],[[0,0,2,0],[1,3,3,1],[3,2,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,1,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,1,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,1,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,1,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[2,2,1,2],[1,2,2,2]],[[0,0,2,0],[1,3,3,1],[3,2,2,1],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,2,1],[2,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,2,1],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,2,1],[1,2,3,1]],[[0,0,2,0],[1,3,3,1],[2,2,2,1],[1,2,2,2]],[[0,0,2,0],[1,3,3,1],[2,2,2,3],[0,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,2,2],[0,3,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,2,2],[0,2,3,1]],[[0,0,2,0],[1,3,3,1],[2,2,2,2],[0,2,2,2]],[[0,0,2,0],[1,3,3,1],[3,2,2,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,1],[2,2,2,2],[2,2,2,0]],[[0,0,2,0],[1,3,3,1],[2,2,2,2],[1,3,2,0]],[[0,0,2,0],[1,3,3,1],[2,2,2,2],[1,2,3,0]],[[0,0,2,0],[1,3,3,1],[3,2,3,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,0],[2,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,0],[1,3,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,0],[1,2,3,1]],[[0,0,2,0],[1,3,4,1],[2,2,3,1],[0,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,4,1],[0,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,1],[0,3,2,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,1],[0,2,3,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,1],[0,2,2,2]],[[0,0,2,0],[1,3,3,1],[3,2,3,1],[1,2,1,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,1],[2,2,1,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,1],[1,3,1,1]],[[0,0,2,0],[1,3,4,1],[2,2,3,2],[0,2,1,1]],[[0,0,2,0],[1,3,3,1],[2,2,4,2],[0,2,1,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,3],[0,2,1,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,2],[0,2,1,2]],[[0,0,2,0],[1,3,4,1],[2,2,3,2],[0,2,2,0]],[[0,0,2,0],[1,3,3,1],[2,2,4,2],[0,2,2,0]],[[0,0,2,0],[1,3,3,1],[2,2,3,3],[0,2,2,0]],[[0,0,2,0],[1,3,3,1],[2,2,3,2],[0,3,2,0]],[[0,0,2,0],[1,3,3,1],[2,2,3,2],[0,2,3,0]],[[0,0,2,0],[1,3,3,1],[3,2,3,2],[1,2,0,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,2],[2,2,0,1]],[[0,0,2,0],[1,3,3,1],[2,2,3,2],[1,3,0,1]],[[0,0,2,0],[1,3,3,1],[3,2,3,2],[1,2,1,0]],[[0,0,2,0],[1,3,3,1],[2,2,3,2],[2,2,1,0]],[[0,0,2,0],[1,3,3,1],[2,2,3,2],[1,3,1,0]],[[0,0,2,0],[1,3,3,1],[3,3,1,2],[0,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,4,1,2],[0,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,1,3],[0,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,1,2],[0,3,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,1,2],[0,2,3,1]],[[0,0,2,0],[1,3,3,1],[2,3,1,2],[0,2,2,2]],[[0,0,2,0],[1,3,3,1],[3,3,1,2],[1,1,2,1]],[[0,0,2,0],[1,3,3,1],[2,4,1,2],[1,1,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,1,2],[2,1,2,1]],[[0,0,2,0],[1,3,3,1],[3,3,2,1],[0,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,4,2,1],[0,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,2,1],[0,3,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,2,1],[0,2,3,1]],[[0,0,2,0],[1,3,3,1],[2,3,2,1],[0,2,2,2]],[[0,0,2,0],[1,3,3,1],[3,3,2,1],[1,1,2,1]],[[0,0,2,0],[1,3,3,1],[2,4,2,1],[1,1,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,2,1],[2,1,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,2,3],[0,1,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,2,2],[0,1,3,1]],[[0,0,2,0],[1,3,3,1],[2,3,2,2],[0,1,2,2]],[[0,0,2,0],[1,3,3,1],[3,3,2,2],[0,2,2,0]],[[0,0,2,0],[1,3,3,1],[2,4,2,2],[0,2,2,0]],[[0,0,2,0],[1,3,3,1],[2,3,2,2],[0,3,2,0]],[[0,0,2,0],[1,3,3,1],[2,3,2,2],[0,2,3,0]],[[0,0,2,0],[1,3,3,1],[2,3,2,3],[1,0,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,2,2],[1,0,3,1]],[[0,0,2,0],[1,3,3,1],[2,3,2,2],[1,0,2,2]],[[0,0,2,0],[1,3,3,1],[3,3,2,2],[1,1,2,0]],[[0,0,2,0],[1,3,3,1],[2,4,2,2],[1,1,2,0]],[[0,0,2,0],[1,3,3,1],[2,3,2,2],[2,1,2,0]],[[0,0,2,0],[1,3,3,1],[3,3,3,0],[0,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,4,3,0],[0,2,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,0],[0,3,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,0],[0,2,3,1]],[[0,0,2,0],[1,3,3,1],[3,3,3,0],[1,1,2,1]],[[0,0,2,0],[1,3,3,1],[2,4,3,0],[1,1,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,0],[2,1,2,1]],[[0,0,2,0],[1,3,4,1],[2,3,3,1],[0,1,2,1]],[[0,0,2,0],[1,3,3,1],[3,3,3,1],[0,1,2,1]],[[0,0,2,0],[1,3,3,1],[2,4,3,1],[0,1,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,4,1],[0,1,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,1],[0,1,3,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,1],[0,1,2,2]],[[0,0,2,0],[1,3,4,1],[2,3,3,1],[0,2,1,1]],[[0,0,2,0],[1,3,3,1],[3,3,3,1],[0,2,1,1]],[[0,0,2,0],[1,3,3,1],[2,4,3,1],[0,2,1,1]],[[0,0,2,0],[1,3,3,1],[2,3,4,1],[0,2,1,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,1],[0,3,1,1]],[[0,0,2,0],[1,3,4,1],[2,3,3,1],[1,0,2,1]],[[0,0,2,0],[1,3,3,1],[3,3,3,1],[1,0,2,1]],[[0,0,2,0],[1,3,3,1],[2,4,3,1],[1,0,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,4,1],[1,0,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,1],[2,0,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,1],[1,0,3,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,1],[1,0,2,2]],[[0,0,2,0],[1,3,4,1],[2,3,3,1],[1,1,1,1]],[[0,0,2,0],[1,3,3,1],[3,3,3,1],[1,1,1,1]],[[0,0,2,0],[1,3,3,1],[2,4,3,1],[1,1,1,1]],[[0,0,2,0],[1,3,3,1],[2,3,4,1],[1,1,1,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,1],[2,1,1,1]],[[0,0,2,0],[1,3,3,1],[3,3,3,1],[1,2,0,1]],[[0,0,2,0],[1,3,3,1],[2,4,3,1],[1,2,0,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,1],[2,2,0,1]],[[0,0,2,0],[1,3,4,1],[2,3,3,2],[0,0,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,4,2],[0,0,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,3],[0,0,2,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[0,0,2,2]],[[0,0,2,0],[1,3,4,1],[2,3,3,2],[0,1,1,1]],[[0,0,2,0],[1,3,3,1],[3,3,3,2],[0,1,1,1]],[[0,0,2,0],[1,3,3,1],[2,4,3,2],[0,1,1,1]],[[0,0,2,0],[1,3,3,1],[2,3,4,2],[0,1,1,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,3],[0,1,1,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[0,1,1,2]],[[0,0,2,0],[1,3,4,1],[2,3,3,2],[0,1,2,0]],[[0,0,2,0],[1,3,3,1],[3,3,3,2],[0,1,2,0]],[[0,0,2,0],[1,3,3,1],[2,4,3,2],[0,1,2,0]],[[0,0,2,0],[1,3,3,1],[2,3,4,2],[0,1,2,0]],[[0,0,2,0],[1,3,3,1],[2,3,3,3],[0,1,2,0]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[0,1,3,0]],[[0,0,2,0],[1,3,4,1],[2,3,3,2],[0,2,0,1]],[[0,0,2,0],[1,3,3,1],[3,3,3,2],[0,2,0,1]],[[0,0,2,0],[1,3,3,1],[2,4,3,2],[0,2,0,1]],[[0,0,2,0],[1,3,3,1],[2,3,4,2],[0,2,0,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,3],[0,2,0,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[0,3,0,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[0,2,0,2]],[[0,0,2,0],[1,3,4,1],[2,3,3,2],[0,2,1,0]],[[0,0,2,0],[1,3,3,1],[3,3,3,2],[0,2,1,0]],[[0,0,2,0],[1,3,3,1],[2,4,3,2],[0,2,1,0]],[[0,0,2,0],[1,3,3,1],[2,3,4,2],[0,2,1,0]],[[0,0,2,0],[1,3,3,1],[2,3,3,3],[0,2,1,0]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,3,3,3],[0,1,2,2],[0,1,0,1]],[[1,2,2,2],[2,3,3,2],[0,1,2,2],[0,1,0,1]],[[1,2,3,1],[2,3,3,2],[0,1,2,2],[0,1,0,1]],[[1,3,2,1],[2,3,3,2],[0,1,2,2],[0,1,0,1]],[[2,2,2,1],[2,3,3,2],[0,1,2,2],[0,1,0,1]],[[0,0,2,0],[1,3,4,1],[2,3,3,2],[1,0,1,1]],[[0,0,2,0],[1,3,3,1],[3,3,3,2],[1,0,1,1]],[[0,0,2,0],[1,3,3,1],[2,4,3,2],[1,0,1,1]],[[0,0,2,0],[1,3,3,1],[2,3,4,2],[1,0,1,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,3],[1,0,1,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[2,0,1,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[1,0,1,2]],[[0,0,2,0],[1,3,4,1],[2,3,3,2],[1,0,2,0]],[[0,0,2,0],[1,3,3,1],[3,3,3,2],[1,0,2,0]],[[0,0,2,0],[1,3,3,1],[2,4,3,2],[1,0,2,0]],[[0,0,2,0],[1,3,3,1],[2,3,4,2],[1,0,2,0]],[[0,0,2,0],[1,3,3,1],[2,3,3,3],[1,0,2,0]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[2,0,2,0]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[1,0,3,0]],[[0,0,2,0],[1,3,4,1],[2,3,3,2],[1,1,0,1]],[[0,0,2,0],[1,3,3,1],[3,3,3,2],[1,1,0,1]],[[0,0,2,0],[1,3,3,1],[2,4,3,2],[1,1,0,1]],[[0,0,2,0],[1,3,3,1],[2,3,4,2],[1,1,0,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,3],[1,1,0,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[2,1,0,1]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[1,1,0,2]],[[0,0,2,0],[1,3,4,1],[2,3,3,2],[1,1,1,0]],[[0,0,2,0],[1,3,3,1],[3,3,3,2],[1,1,1,0]],[[0,0,2,0],[1,3,3,1],[2,4,3,2],[1,1,1,0]],[[0,0,2,0],[1,3,3,1],[2,3,4,2],[1,1,1,0]],[[0,0,2,0],[1,3,3,1],[2,3,3,3],[1,1,1,0]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[2,1,1,0]],[[0,0,2,0],[1,3,3,1],[3,3,3,2],[1,2,0,0]],[[0,0,2,0],[1,3,3,1],[2,4,3,2],[1,2,0,0]],[[0,0,2,0],[1,3,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,3,3,3],[0,1,1,2],[1,1,1,0]],[[1,2,2,2],[2,3,3,2],[0,1,1,2],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[0,1,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,3,2],[0,1,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,3,2],[0,1,1,2],[1,1,1,0]],[[1,2,2,1],[2,3,3,3],[0,1,1,2],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[0,1,1,2],[1,1,0,1]],[[1,2,3,1],[2,3,3,2],[0,1,1,2],[1,1,0,1]],[[0,0,2,0],[1,3,4,2],[0,3,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,3],[0,3,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[0,3,1,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[0,3,1,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,2],[0,3,1,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,2],[0,3,1,2],[1,2,2,2]],[[0,0,2,0],[1,3,4,2],[0,3,2,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,3],[0,3,2,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[0,3,2,3],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[0,3,2,2],[1,2,1,2]],[[0,0,2,0],[1,3,4,2],[0,3,2,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,3],[0,3,2,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[0,3,2,3],[1,2,2,0]],[[0,0,2,0],[1,3,4,2],[0,3,3,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,3],[0,3,3,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[0,3,4,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[0,3,3,0],[1,3,2,1]],[[0,0,2,0],[1,3,3,2],[0,3,3,0],[1,2,3,1]],[[0,0,2,0],[1,3,3,2],[0,3,3,0],[1,2,2,2]],[[0,0,2,0],[1,3,4,2],[0,3,3,1],[1,2,1,1]],[[0,0,2,0],[1,3,3,3],[0,3,3,1],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[0,3,4,1],[1,2,1,1]],[[0,0,2,0],[1,3,4,2],[0,3,3,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,3],[0,3,3,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[0,3,4,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[0,3,3,1],[1,3,2,0]],[[0,0,2,0],[1,3,3,2],[0,3,3,1],[1,2,3,0]],[[1,3,2,1],[2,3,3,2],[0,1,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,3,2],[0,1,1,2],[1,1,0,1]],[[0,0,2,0],[1,3,4,2],[1,2,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,3],[1,2,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,2,1,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,2,1,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,2,1,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,2],[1,2,1,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,2],[1,2,1,2],[1,2,2,2]],[[0,0,2,0],[1,3,4,2],[1,2,2,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,3],[1,2,2,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[1,2,2,3],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[1,2,2,2],[1,2,1,2]],[[0,0,2,0],[1,3,4,2],[1,2,2,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,3],[1,2,2,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[1,2,2,3],[1,2,2,0]],[[0,0,2,0],[1,3,4,2],[1,2,3,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,3],[1,2,3,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,2,4,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,2,3,0],[2,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,2,3,0],[1,3,2,1]],[[0,0,2,0],[1,3,3,2],[1,2,3,0],[1,2,3,1]],[[0,0,2,0],[1,3,3,2],[1,2,3,0],[1,2,2,2]],[[0,0,2,0],[1,3,4,2],[1,2,3,1],[1,2,1,1]],[[0,0,2,0],[1,3,3,3],[1,2,3,1],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[1,2,4,1],[1,2,1,1]],[[0,0,2,0],[1,3,4,2],[1,2,3,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,3],[1,2,3,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[1,2,4,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[1,2,3,1],[2,2,2,0]],[[0,0,2,0],[1,3,3,2],[1,2,3,1],[1,3,2,0]],[[0,0,2,0],[1,3,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,3,3,3],[0,1,1,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[0,1,1,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[0,1,1,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[0,1,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[0,1,1,2],[1,0,2,0]],[[0,0,2,0],[1,3,4,2],[1,3,0,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,3],[1,3,0,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,4,0,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,0,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,0,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,0,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,0,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,2],[1,3,0,2],[1,2,2,2]],[[0,0,2,0],[1,3,4,2],[1,3,1,2],[1,1,2,1]],[[0,0,2,0],[1,3,3,3],[1,3,1,2],[1,1,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,1,3],[1,1,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,1,2],[1,1,3,1]],[[0,0,2,0],[1,3,3,2],[1,3,1,2],[1,1,2,2]],[[0,0,2,0],[1,3,3,2],[1,4,2,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,2,0],[2,2,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,2,0],[1,3,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,2,0],[1,2,3,1]],[[0,0,2,0],[1,3,3,2],[1,3,2,0],[1,2,2,2]],[[0,0,2,0],[1,3,3,2],[1,4,2,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[1,3,2,1],[2,2,2,0]],[[0,0,2,0],[1,3,3,2],[1,3,2,1],[1,3,2,0]],[[0,0,2,0],[1,3,3,2],[1,3,2,1],[1,2,3,0]],[[0,0,2,0],[1,3,4,2],[1,3,2,2],[1,0,2,1]],[[0,0,2,0],[1,3,3,3],[1,3,2,2],[1,0,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,2,3],[1,0,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,2,2],[1,0,2,2]],[[0,0,2,0],[1,3,4,2],[1,3,2,2],[1,1,1,1]],[[0,0,2,0],[1,3,3,3],[1,3,2,2],[1,1,1,1]],[[0,0,2,0],[1,3,3,2],[1,3,2,3],[1,1,1,1]],[[0,0,2,0],[1,3,3,2],[1,3,2,2],[1,1,1,2]],[[0,0,2,0],[1,3,4,2],[1,3,2,2],[1,1,2,0]],[[0,0,2,0],[1,3,3,3],[1,3,2,2],[1,1,2,0]],[[0,0,2,0],[1,3,3,2],[1,3,2,3],[1,1,2,0]],[[0,0,2,0],[1,3,4,2],[1,3,2,2],[1,2,0,1]],[[0,0,2,0],[1,3,3,3],[1,3,2,2],[1,2,0,1]],[[0,0,2,0],[1,3,3,2],[1,3,2,3],[1,2,0,1]],[[0,0,2,0],[1,3,3,2],[1,3,2,2],[1,2,0,2]],[[0,0,2,0],[1,3,4,2],[1,3,2,2],[1,2,1,0]],[[0,0,2,0],[1,3,3,3],[1,3,2,2],[1,2,1,0]],[[0,0,2,0],[1,3,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,3,3,3],[0,1,1,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[0,1,1,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[0,1,1,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[0,1,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[0,1,1,2],[1,0,1,1]],[[0,0,2,0],[1,3,4,2],[1,3,3,0],[1,1,2,1]],[[0,0,2,0],[1,3,3,3],[1,3,3,0],[1,1,2,1]],[[0,0,2,0],[1,3,3,2],[1,4,3,0],[1,1,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,4,0],[1,1,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,3,0],[1,1,3,1]],[[0,0,2,0],[1,3,3,2],[1,3,3,0],[1,1,2,2]],[[0,0,2,0],[1,3,4,2],[1,3,3,0],[1,2,1,1]],[[0,0,2,0],[1,3,3,3],[1,3,3,0],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[1,4,3,0],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[1,3,4,0],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[1,3,3,0],[2,2,1,1]],[[0,0,2,0],[1,3,3,2],[1,3,3,0],[1,3,1,1]],[[0,0,2,0],[1,3,4,2],[1,3,3,1],[1,0,2,1]],[[0,0,2,0],[1,3,3,3],[1,3,3,1],[1,0,2,1]],[[0,0,2,0],[1,3,3,2],[1,3,4,1],[1,0,2,1]],[[0,0,2,0],[1,3,4,2],[1,3,3,1],[1,1,1,1]],[[0,0,2,0],[1,3,3,3],[1,3,3,1],[1,1,1,1]],[[0,0,2,0],[1,3,3,2],[1,4,3,1],[1,1,1,1]],[[0,0,2,0],[1,3,3,2],[1,3,4,1],[1,1,1,1]],[[0,0,2,0],[1,3,4,2],[1,3,3,1],[1,1,2,0]],[[0,0,2,0],[1,3,3,3],[1,3,3,1],[1,1,2,0]],[[0,0,2,0],[1,3,3,2],[1,4,3,1],[1,1,2,0]],[[0,0,2,0],[1,3,3,2],[1,3,4,1],[1,1,2,0]],[[0,0,2,0],[1,3,3,2],[1,3,3,1],[1,1,3,0]],[[0,0,2,0],[1,3,4,2],[1,3,3,1],[1,2,0,1]],[[0,0,2,0],[1,3,3,3],[1,3,3,1],[1,2,0,1]],[[0,0,2,0],[1,3,3,2],[1,4,3,1],[1,2,0,1]],[[0,0,2,0],[1,3,3,2],[1,3,4,1],[1,2,0,1]],[[0,0,2,0],[1,3,3,2],[1,3,3,1],[2,2,0,1]],[[0,0,2,0],[1,3,3,2],[1,3,3,1],[1,3,0,1]],[[0,0,2,0],[1,3,4,2],[1,3,3,1],[1,2,1,0]],[[0,0,2,0],[1,3,3,3],[1,3,3,1],[1,2,1,0]],[[0,0,2,0],[1,3,3,2],[1,4,3,1],[1,2,1,0]],[[0,0,2,0],[1,3,3,2],[1,3,4,1],[1,2,1,0]],[[0,0,2,0],[1,3,3,2],[1,3,3,1],[2,2,1,0]],[[0,0,2,0],[1,3,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,3,3,3],[0,1,1,2],[0,2,1,0]],[[0,0,2,0],[1,3,4,2],[1,3,3,2],[1,1,0,1]],[[0,0,2,0],[1,3,3,3],[1,3,3,2],[1,1,0,1]],[[0,0,2,0],[1,3,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,2],[2,3,3,2],[0,1,1,2],[0,2,1,0]],[[1,2,3,1],[2,3,3,2],[0,1,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,3,2],[0,1,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,3,2],[0,1,1,2],[0,2,1,0]],[[1,2,2,1],[2,3,3,3],[0,1,1,2],[0,2,0,1]],[[1,2,2,2],[2,3,3,2],[0,1,1,2],[0,2,0,1]],[[1,2,3,1],[2,3,3,2],[0,1,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,3,2],[0,1,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,3,2],[0,1,1,2],[0,2,0,1]],[[1,2,2,1],[2,3,3,3],[0,1,1,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[0,1,1,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[0,1,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,3,2],[0,1,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[0,1,1,2],[0,1,2,0]],[[1,2,2,1],[2,3,3,3],[0,1,1,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[0,1,1,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[0,1,1,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[0,1,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[0,1,1,2],[0,1,1,1]],[[1,2,2,1],[2,3,3,3],[0,1,1,2],[0,0,2,1]],[[1,2,2,2],[2,3,3,2],[0,1,1,2],[0,0,2,1]],[[1,2,3,1],[2,3,3,2],[0,1,1,2],[0,0,2,1]],[[1,3,2,1],[2,3,3,2],[0,1,1,2],[0,0,2,1]],[[2,2,2,1],[2,3,3,2],[0,1,1,2],[0,0,2,1]],[[0,0,2,0],[1,3,4,2],[2,1,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,3],[2,1,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[3,1,1,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,1,1,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,1,1,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,1,1,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,2],[2,1,1,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,2],[2,1,1,2],[1,2,2,2]],[[0,0,2,0],[1,3,4,2],[2,1,2,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,3],[2,1,2,2],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[2,1,2,3],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[2,1,2,2],[1,2,1,2]],[[0,0,2,0],[1,3,4,2],[2,1,2,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,3],[2,1,2,2],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[2,1,2,3],[1,2,2,0]],[[0,0,2,0],[1,3,4,2],[2,1,3,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,3],[2,1,3,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[3,1,3,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,1,4,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,1,3,0],[2,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,1,3,0],[1,3,2,1]],[[0,0,2,0],[1,3,3,2],[2,1,3,0],[1,2,3,1]],[[0,0,2,0],[1,3,3,2],[2,1,3,0],[1,2,2,2]],[[0,0,2,0],[1,3,4,2],[2,1,3,1],[1,2,1,1]],[[0,0,2,0],[1,3,3,3],[2,1,3,1],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[2,1,4,1],[1,2,1,1]],[[0,0,2,0],[1,3,4,2],[2,1,3,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,3],[2,1,3,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[3,1,3,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[2,1,4,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[2,1,3,1],[2,2,2,0]],[[0,0,2,0],[1,3,3,2],[2,1,3,1],[1,3,2,0]],[[0,0,2,0],[1,3,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,3,3,3],[0,1,0,2],[1,0,2,1]],[[1,2,2,2],[2,3,3,2],[0,1,0,2],[1,0,2,1]],[[1,2,3,1],[2,3,3,2],[0,1,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,3,2],[0,1,0,2],[1,0,2,1]],[[0,0,2,0],[1,3,4,2],[2,2,0,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,3],[2,2,0,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[3,2,0,2],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,0,3],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,0,2],[2,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,0,2],[1,3,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,0,2],[1,2,3,1]],[[0,0,2,0],[1,3,3,2],[2,2,0,2],[1,2,2,2]],[[0,0,2,0],[1,3,4,2],[2,2,1,2],[0,2,2,1]],[[0,0,2,0],[1,3,3,3],[2,2,1,2],[0,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,1,3],[0,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,1,2],[0,3,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,1,2],[0,2,3,1]],[[0,0,2,0],[1,3,3,2],[2,2,1,2],[0,2,2,2]],[[0,0,2,0],[1,3,3,2],[3,2,2,0],[1,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,2,0],[2,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,2,0],[1,3,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,2,0],[1,2,3,1]],[[0,0,2,0],[1,3,3,2],[2,2,2,0],[1,2,2,2]],[[0,0,2,0],[1,3,3,2],[3,2,2,1],[1,2,2,0]],[[0,0,2,0],[1,3,3,2],[2,2,2,1],[2,2,2,0]],[[0,0,2,0],[1,3,3,2],[2,2,2,1],[1,3,2,0]],[[0,0,2,0],[1,3,3,2],[2,2,2,1],[1,2,3,0]],[[0,0,2,0],[1,3,4,2],[2,2,2,2],[0,2,1,1]],[[0,0,2,0],[1,3,3,3],[2,2,2,2],[0,2,1,1]],[[0,0,2,0],[1,3,3,2],[2,2,2,3],[0,2,1,1]],[[0,0,2,0],[1,3,3,2],[2,2,2,2],[0,2,1,2]],[[0,0,2,0],[1,3,4,2],[2,2,2,2],[0,2,2,0]],[[0,0,2,0],[1,3,3,3],[2,2,2,2],[0,2,2,0]],[[0,0,2,0],[1,3,3,2],[2,2,2,3],[0,2,2,0]],[[2,2,2,1],[2,3,3,2],[0,1,0,2],[1,0,2,1]],[[1,2,2,1],[2,3,3,3],[0,1,0,2],[0,1,2,1]],[[1,2,2,2],[2,3,3,2],[0,1,0,2],[0,1,2,1]],[[0,0,2,0],[1,3,4,2],[2,2,3,0],[0,2,2,1]],[[0,0,2,0],[1,3,3,3],[2,2,3,0],[0,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,4,0],[0,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,3,0],[0,3,2,1]],[[0,0,2,0],[1,3,3,2],[2,2,3,0],[0,2,3,1]],[[0,0,2,0],[1,3,3,2],[2,2,3,0],[0,2,2,2]],[[0,0,2,0],[1,3,3,2],[3,2,3,0],[1,2,1,1]],[[0,0,2,0],[1,3,3,2],[2,2,3,0],[2,2,1,1]],[[0,0,2,0],[1,3,3,2],[2,2,3,0],[1,3,1,1]],[[0,0,2,0],[1,3,4,2],[2,2,3,1],[0,2,1,1]],[[0,0,2,0],[1,3,3,3],[2,2,3,1],[0,2,1,1]],[[0,0,2,0],[1,3,3,2],[2,2,4,1],[0,2,1,1]],[[0,0,2,0],[1,3,4,2],[2,2,3,1],[0,2,2,0]],[[0,0,2,0],[1,3,3,3],[2,2,3,1],[0,2,2,0]],[[0,0,2,0],[1,3,3,2],[2,2,4,1],[0,2,2,0]],[[0,0,2,0],[1,3,3,2],[2,2,3,1],[0,3,2,0]],[[0,0,2,0],[1,3,3,2],[2,2,3,1],[0,2,3,0]],[[0,0,2,0],[1,3,3,2],[3,2,3,1],[1,2,0,1]],[[0,0,2,0],[1,3,3,2],[2,2,3,1],[2,2,0,1]],[[0,0,2,0],[1,3,3,2],[2,2,3,1],[1,3,0,1]],[[0,0,2,0],[1,3,3,2],[3,2,3,1],[1,2,1,0]],[[0,0,2,0],[1,3,3,2],[2,2,3,1],[2,2,1,0]],[[0,0,2,0],[1,3,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,3,1],[2,3,3,2],[0,1,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,3,2],[0,1,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,3,2],[0,1,0,2],[0,1,2,1]],[[1,2,2,1],[2,3,3,3],[0,0,3,2],[1,0,0,1]],[[1,2,2,2],[2,3,3,2],[0,0,3,2],[1,0,0,1]],[[1,2,3,1],[2,3,3,2],[0,0,3,2],[1,0,0,1]],[[1,3,2,1],[2,3,3,2],[0,0,3,2],[1,0,0,1]],[[2,2,2,1],[2,3,3,2],[0,0,3,2],[1,0,0,1]],[[0,0,2,0],[1,3,4,2],[2,3,0,2],[0,2,2,1]],[[0,0,2,0],[1,3,3,3],[2,3,0,2],[0,2,2,1]],[[0,0,2,0],[1,3,3,2],[3,3,0,2],[0,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,4,0,2],[0,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,0,3],[0,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,0,2],[0,3,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,0,2],[0,2,3,1]],[[0,0,2,0],[1,3,3,2],[2,3,0,2],[0,2,2,2]],[[0,0,2,0],[1,3,3,2],[3,3,0,2],[1,1,2,1]],[[0,0,2,0],[1,3,3,2],[2,4,0,2],[1,1,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,0,2],[2,1,2,1]],[[0,0,2,0],[1,3,4,2],[2,3,1,2],[0,1,2,1]],[[0,0,2,0],[1,3,3,3],[2,3,1,2],[0,1,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,1,3],[0,1,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,1,2],[0,1,3,1]],[[0,0,2,0],[1,3,3,2],[2,3,1,2],[0,1,2,2]],[[0,0,2,0],[1,3,4,2],[2,3,1,2],[1,0,2,1]],[[0,0,2,0],[1,3,3,3],[2,3,1,2],[1,0,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,1,3],[1,0,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,1,2],[1,0,3,1]],[[0,0,2,0],[1,3,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,3,3,3],[0,0,3,2],[0,1,0,1]],[[0,0,2,0],[1,3,3,2],[3,3,2,0],[0,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,4,2,0],[0,2,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,0],[0,3,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,0],[0,2,3,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,0],[0,2,2,2]],[[0,0,2,0],[1,3,3,2],[3,3,2,0],[1,1,2,1]],[[0,0,2,0],[1,3,3,2],[2,4,2,0],[1,1,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,0],[2,1,2,1]],[[0,0,2,0],[1,3,3,2],[3,3,2,1],[0,2,2,0]],[[0,0,2,0],[1,3,3,2],[2,4,2,1],[0,2,2,0]],[[0,0,2,0],[1,3,3,2],[2,3,2,1],[0,3,2,0]],[[0,0,2,0],[1,3,3,2],[2,3,2,1],[0,2,3,0]],[[0,0,2,0],[1,3,3,2],[3,3,2,1],[1,1,2,0]],[[0,0,2,0],[1,3,3,2],[2,4,2,1],[1,1,2,0]],[[0,0,2,0],[1,3,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,2],[2,3,3,2],[0,0,3,2],[0,1,0,1]],[[1,2,3,1],[2,3,3,2],[0,0,3,2],[0,1,0,1]],[[1,3,2,1],[2,3,3,2],[0,0,3,2],[0,1,0,1]],[[2,2,2,1],[2,3,3,2],[0,0,3,2],[0,1,0,1]],[[0,0,2,0],[1,3,4,2],[2,3,2,2],[0,0,2,1]],[[0,0,2,0],[1,3,3,3],[2,3,2,2],[0,0,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,3],[0,0,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,2],[0,0,2,2]],[[0,0,2,0],[1,3,4,2],[2,3,2,2],[0,1,1,1]],[[0,0,2,0],[1,3,3,3],[2,3,2,2],[0,1,1,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,3],[0,1,1,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,2],[0,1,1,2]],[[0,0,2,0],[1,3,4,2],[2,3,2,2],[0,1,2,0]],[[0,0,2,0],[1,3,3,3],[2,3,2,2],[0,1,2,0]],[[0,0,2,0],[1,3,3,2],[2,3,2,3],[0,1,2,0]],[[0,0,2,0],[1,3,4,2],[2,3,2,2],[0,2,0,1]],[[0,0,2,0],[1,3,3,3],[2,3,2,2],[0,2,0,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,3],[0,2,0,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,2],[0,2,0,2]],[[0,0,2,0],[1,3,4,2],[2,3,2,2],[0,2,1,0]],[[0,0,2,0],[1,3,3,3],[2,3,2,2],[0,2,1,0]],[[0,0,2,0],[1,3,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,3,3,3],[0,0,3,2],[0,0,1,1]],[[1,2,2,2],[2,3,3,2],[0,0,3,2],[0,0,1,1]],[[0,0,2,0],[1,3,4,2],[2,3,2,2],[1,0,1,1]],[[0,0,2,0],[1,3,3,3],[2,3,2,2],[1,0,1,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,3],[1,0,1,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,2],[1,0,1,2]],[[0,0,2,0],[1,3,4,2],[2,3,2,2],[1,0,2,0]],[[0,0,2,0],[1,3,3,3],[2,3,2,2],[1,0,2,0]],[[0,0,2,0],[1,3,3,2],[2,3,2,3],[1,0,2,0]],[[0,0,2,0],[1,3,4,2],[2,3,2,2],[1,1,0,1]],[[0,0,2,0],[1,3,3,3],[2,3,2,2],[1,1,0,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,3],[1,1,0,1]],[[0,0,2,0],[1,3,3,2],[2,3,2,2],[1,1,0,2]],[[0,0,2,0],[1,3,4,2],[2,3,2,2],[1,1,1,0]],[[0,0,2,0],[1,3,3,3],[2,3,2,2],[1,1,1,0]],[[0,0,2,0],[1,3,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,3,1],[2,3,3,2],[0,0,3,2],[0,0,1,1]],[[1,3,2,1],[2,3,3,2],[0,0,3,2],[0,0,1,1]],[[2,2,2,1],[2,3,3,2],[0,0,3,2],[0,0,1,1]],[[0,0,2,0],[1,3,4,2],[2,3,3,0],[0,1,2,1]],[[0,0,2,0],[1,3,3,3],[2,3,3,0],[0,1,2,1]],[[0,0,2,0],[1,3,3,2],[3,3,3,0],[0,1,2,1]],[[0,0,2,0],[1,3,3,2],[2,4,3,0],[0,1,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,4,0],[0,1,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,0],[0,1,3,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,0],[0,1,2,2]],[[0,0,2,0],[1,3,4,2],[2,3,3,0],[0,2,1,1]],[[0,0,2,0],[1,3,3,3],[2,3,3,0],[0,2,1,1]],[[0,0,2,0],[1,3,3,2],[3,3,3,0],[0,2,1,1]],[[0,0,2,0],[1,3,3,2],[2,4,3,0],[0,2,1,1]],[[0,0,2,0],[1,3,3,2],[2,3,4,0],[0,2,1,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,0],[0,3,1,1]],[[0,0,2,0],[1,3,4,2],[2,3,3,0],[1,0,2,1]],[[0,0,2,0],[1,3,3,3],[2,3,3,0],[1,0,2,1]],[[0,0,2,0],[1,3,3,2],[3,3,3,0],[1,0,2,1]],[[0,0,2,0],[1,3,3,2],[2,4,3,0],[1,0,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,4,0],[1,0,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,0],[2,0,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,0],[1,0,3,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,0],[1,0,2,2]],[[0,0,2,0],[1,3,4,2],[2,3,3,0],[1,1,1,1]],[[0,0,2,0],[1,3,3,3],[2,3,3,0],[1,1,1,1]],[[0,0,2,0],[1,3,3,2],[3,3,3,0],[1,1,1,1]],[[0,0,2,0],[1,3,3,2],[2,4,3,0],[1,1,1,1]],[[0,0,2,0],[1,3,3,2],[2,3,4,0],[1,1,1,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,0],[2,1,1,1]],[[0,0,2,0],[1,3,3,2],[3,3,3,0],[1,2,0,1]],[[0,0,2,0],[1,3,3,2],[2,4,3,0],[1,2,0,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,3,4,2],[0,0,3,0],[0,2,2,0]],[[1,2,2,2],[2,3,3,2],[0,0,3,0],[0,2,2,0]],[[1,2,3,1],[2,3,3,2],[0,0,3,0],[0,2,2,0]],[[1,3,2,1],[2,3,3,2],[0,0,3,0],[0,2,2,0]],[[2,2,2,1],[2,3,3,2],[0,0,3,0],[0,2,2,0]],[[1,2,2,1],[2,3,4,2],[0,0,3,0],[0,2,1,1]],[[1,2,2,2],[2,3,3,2],[0,0,3,0],[0,2,1,1]],[[0,0,2,0],[1,3,4,2],[2,3,3,1],[0,0,2,1]],[[0,0,2,0],[1,3,3,3],[2,3,3,1],[0,0,2,1]],[[0,0,2,0],[1,3,3,2],[2,3,4,1],[0,0,2,1]],[[0,0,2,0],[1,3,4,2],[2,3,3,1],[0,1,1,1]],[[0,0,2,0],[1,3,3,3],[2,3,3,1],[0,1,1,1]],[[0,0,2,0],[1,3,3,2],[3,3,3,1],[0,1,1,1]],[[0,0,2,0],[1,3,3,2],[2,4,3,1],[0,1,1,1]],[[0,0,2,0],[1,3,3,2],[2,3,4,1],[0,1,1,1]],[[0,0,2,0],[1,3,4,2],[2,3,3,1],[0,1,2,0]],[[0,0,2,0],[1,3,3,3],[2,3,3,1],[0,1,2,0]],[[0,0,2,0],[1,3,3,2],[3,3,3,1],[0,1,2,0]],[[0,0,2,0],[1,3,3,2],[2,4,3,1],[0,1,2,0]],[[0,0,2,0],[1,3,3,2],[2,3,4,1],[0,1,2,0]],[[0,0,2,0],[1,3,3,2],[2,3,3,1],[0,1,3,0]],[[0,0,2,0],[1,3,4,2],[2,3,3,1],[0,2,0,1]],[[0,0,2,0],[1,3,3,3],[2,3,3,1],[0,2,0,1]],[[0,0,2,0],[1,3,3,2],[3,3,3,1],[0,2,0,1]],[[0,0,2,0],[1,3,3,2],[2,4,3,1],[0,2,0,1]],[[0,0,2,0],[1,3,3,2],[2,3,4,1],[0,2,0,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,1],[0,3,0,1]],[[0,0,2,0],[1,3,4,2],[2,3,3,1],[0,2,1,0]],[[0,0,2,0],[1,3,3,3],[2,3,3,1],[0,2,1,0]],[[0,0,2,0],[1,3,3,2],[3,3,3,1],[0,2,1,0]],[[0,0,2,0],[1,3,3,2],[2,4,3,1],[0,2,1,0]],[[0,0,2,0],[1,3,3,2],[2,3,4,1],[0,2,1,0]],[[0,0,2,0],[1,3,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,3,1],[2,3,3,2],[0,0,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,2],[0,0,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,2],[0,0,3,0],[0,2,1,1]],[[0,0,2,0],[1,3,4,2],[2,3,3,1],[1,0,1,1]],[[0,0,2,0],[1,3,3,3],[2,3,3,1],[1,0,1,1]],[[0,0,2,0],[1,3,3,2],[3,3,3,1],[1,0,1,1]],[[0,0,2,0],[1,3,3,2],[2,4,3,1],[1,0,1,1]],[[0,0,2,0],[1,3,3,2],[2,3,4,1],[1,0,1,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,1],[2,0,1,1]],[[0,0,2,0],[1,3,4,2],[2,3,3,1],[1,0,2,0]],[[0,0,2,0],[1,3,3,3],[2,3,3,1],[1,0,2,0]],[[0,0,2,0],[1,3,3,2],[3,3,3,1],[1,0,2,0]],[[0,0,2,0],[1,3,3,2],[2,4,3,1],[1,0,2,0]],[[0,0,2,0],[1,3,3,2],[2,3,4,1],[1,0,2,0]],[[0,0,2,0],[1,3,3,2],[2,3,3,1],[2,0,2,0]],[[0,0,2,0],[1,3,3,2],[2,3,3,1],[1,0,3,0]],[[0,0,2,0],[1,3,4,2],[2,3,3,1],[1,1,0,1]],[[0,0,2,0],[1,3,3,3],[2,3,3,1],[1,1,0,1]],[[0,0,2,0],[1,3,3,2],[3,3,3,1],[1,1,0,1]],[[0,0,2,0],[1,3,3,2],[2,4,3,1],[1,1,0,1]],[[0,0,2,0],[1,3,3,2],[2,3,4,1],[1,1,0,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,1],[2,1,0,1]],[[0,0,2,0],[1,3,4,2],[2,3,3,1],[1,1,1,0]],[[0,0,2,0],[1,3,3,3],[2,3,3,1],[1,1,1,0]],[[0,0,2,0],[1,3,3,2],[3,3,3,1],[1,1,1,0]],[[0,0,2,0],[1,3,3,2],[2,4,3,1],[1,1,1,0]],[[0,0,2,0],[1,3,3,2],[2,3,4,1],[1,1,1,0]],[[0,0,2,0],[1,3,3,2],[2,3,3,1],[2,1,1,0]],[[0,0,2,0],[1,3,3,2],[3,3,3,1],[1,2,0,0]],[[0,0,2,0],[1,3,3,2],[2,4,3,1],[1,2,0,0]],[[0,0,2,0],[1,3,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,3,3,3],[0,0,2,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,2],[0,0,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,2],[0,0,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,2],[0,0,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,2],[0,0,2,2],[1,0,2,0]],[[1,2,2,1],[2,3,3,3],[0,0,2,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,2],[0,0,2,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,2],[0,0,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,2],[0,0,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,2],[0,0,2,2],[1,0,1,1]],[[0,0,2,0],[1,3,4,2],[2,3,3,2],[0,1,0,1]],[[0,0,2,0],[1,3,3,3],[2,3,3,2],[0,1,0,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,3,3,3],[0,0,2,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,2],[0,0,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,2],[0,0,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,3,2],[0,0,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,2],[0,0,2,2],[0,1,2,0]],[[1,2,2,1],[2,3,3,3],[0,0,2,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,2],[0,0,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,2],[0,0,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,2],[0,0,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,2],[0,0,2,2],[0,1,1,1]],[[1,2,2,1],[2,3,3,3],[0,0,2,2],[0,0,2,1]],[[1,2,2,2],[2,3,3,2],[0,0,2,2],[0,0,2,1]],[[1,2,3,1],[2,3,3,2],[0,0,2,2],[0,0,2,1]],[[1,3,2,1],[2,3,3,2],[0,0,2,2],[0,0,2,1]],[[2,2,2,1],[2,3,3,2],[0,0,2,2],[0,0,2,1]],[[0,0,2,0],[1,3,4,2],[2,3,3,2],[1,0,0,1]],[[0,0,2,0],[1,3,3,3],[2,3,3,2],[1,0,0,1]],[[0,0,2,0],[1,3,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,3,3,3],[0,0,1,2],[0,2,2,0]],[[1,2,2,2],[2,3,3,2],[0,0,1,2],[0,2,2,0]],[[1,2,3,1],[2,3,3,2],[0,0,1,2],[0,2,2,0]],[[1,3,2,1],[2,3,3,2],[0,0,1,2],[0,2,2,0]],[[2,2,2,1],[2,3,3,2],[0,0,1,2],[0,2,2,0]],[[1,2,2,1],[2,3,3,3],[0,0,1,2],[0,2,1,1]],[[1,2,2,2],[2,3,3,2],[0,0,1,2],[0,2,1,1]],[[1,2,3,1],[2,3,3,2],[0,0,1,2],[0,2,1,1]],[[1,3,2,1],[2,3,3,2],[0,0,1,2],[0,2,1,1]],[[2,2,2,1],[2,3,3,2],[0,0,1,2],[0,2,1,1]],[[1,2,2,1],[2,3,3,3],[0,0,0,2],[0,2,2,1]],[[1,2,2,2],[2,3,3,2],[0,0,0,2],[0,2,2,1]],[[1,2,3,1],[2,3,3,2],[0,0,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,3,2],[0,0,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,3,2],[0,0,0,2],[0,2,2,1]],[[1,2,2,1],[3,3,3,1],[2,3,1,1],[1,0,0,0]],[[1,2,3,1],[2,3,3,1],[2,3,1,1],[1,0,0,0]],[[1,3,2,1],[2,3,3,1],[2,3,1,1],[1,0,0,0]],[[2,2,2,1],[2,3,3,1],[2,3,1,1],[1,0,0,0]],[[0,0,2,0],[2,0,1,2],[2,3,3,3],[1,2,2,1]],[[0,0,2,0],[2,0,1,2],[2,3,3,2],[2,2,2,1]],[[0,0,2,0],[2,0,1,2],[2,3,3,2],[1,3,2,1]],[[0,0,2,0],[2,0,1,2],[2,3,3,2],[1,2,3,1]],[[0,0,2,0],[2,0,1,2],[2,3,3,2],[1,2,2,2]],[[0,0,2,0],[2,0,2,2],[2,3,2,3],[1,2,2,1]],[[0,0,2,0],[2,0,2,2],[2,3,2,2],[2,2,2,1]],[[0,0,2,0],[2,0,2,2],[2,3,2,2],[1,3,2,1]],[[0,0,2,0],[2,0,2,2],[2,3,2,2],[1,2,3,1]],[[0,0,2,0],[2,0,2,2],[2,3,2,2],[1,2,2,2]],[[0,0,2,0],[2,0,2,2],[2,3,4,1],[1,2,2,1]],[[0,0,2,0],[2,0,2,2],[2,3,3,1],[2,2,2,1]],[[0,0,2,0],[2,0,2,2],[2,3,3,1],[1,3,2,1]],[[0,0,2,0],[2,0,2,2],[2,3,3,1],[1,2,3,1]],[[0,0,2,0],[2,0,2,2],[2,3,3,1],[1,2,2,2]],[[0,0,2,0],[2,0,2,2],[2,3,4,2],[1,2,1,1]],[[0,0,2,0],[2,0,2,2],[2,3,3,3],[1,2,1,1]],[[0,0,2,0],[2,0,2,2],[2,3,3,2],[1,2,1,2]],[[0,0,2,0],[2,0,2,2],[2,3,4,2],[1,2,2,0]],[[0,0,2,0],[2,0,2,2],[2,3,3,3],[1,2,2,0]],[[0,0,2,0],[2,0,2,2],[2,3,3,2],[2,2,2,0]],[[0,0,2,0],[2,0,2,2],[2,3,3,2],[1,3,2,0]],[[0,0,2,0],[2,0,2,2],[2,3,3,2],[1,2,3,0]],[[0,0,2,0],[2,0,3,0],[2,3,4,2],[1,2,2,1]],[[0,0,2,0],[2,0,3,0],[2,3,3,2],[2,2,2,1]],[[0,0,2,0],[2,0,3,0],[2,3,3,2],[1,3,2,1]],[[0,0,2,0],[2,0,3,0],[2,3,3,2],[1,2,3,1]],[[0,0,2,0],[2,0,3,0],[2,3,3,2],[1,2,2,2]],[[0,0,2,0],[2,0,3,1],[2,3,2,3],[1,2,2,1]],[[0,0,2,0],[2,0,3,1],[2,3,2,2],[2,2,2,1]],[[0,0,2,0],[2,0,3,1],[2,3,2,2],[1,3,2,1]],[[0,0,2,0],[2,0,3,1],[2,3,2,2],[1,2,3,1]],[[0,0,2,0],[2,0,3,1],[2,3,2,2],[1,2,2,2]],[[0,0,2,0],[2,0,3,1],[2,3,4,1],[1,2,2,1]],[[0,0,2,0],[2,0,3,1],[2,3,3,1],[2,2,2,1]],[[0,0,2,0],[2,0,3,1],[2,3,3,1],[1,3,2,1]],[[0,0,2,0],[2,0,3,1],[2,3,3,1],[1,2,3,1]],[[0,0,2,0],[2,0,3,1],[2,3,3,1],[1,2,2,2]],[[0,0,2,0],[2,0,3,1],[2,3,4,2],[1,2,1,1]],[[0,0,2,0],[2,0,3,1],[2,3,3,3],[1,2,1,1]],[[0,0,2,0],[2,0,3,1],[2,3,3,2],[1,2,1,2]],[[0,0,2,0],[2,0,3,1],[2,3,4,2],[1,2,2,0]],[[0,0,2,0],[2,0,3,1],[2,3,3,3],[1,2,2,0]],[[0,0,2,0],[2,0,3,1],[2,3,3,2],[2,2,2,0]],[[0,0,2,0],[2,0,3,1],[2,3,3,2],[1,3,2,0]],[[0,0,2,0],[2,0,3,1],[2,3,3,2],[1,2,3,0]],[[0,0,2,0],[2,0,3,2],[2,3,4,0],[1,2,2,1]],[[0,0,2,0],[2,0,3,2],[2,3,3,0],[2,2,2,1]],[[0,0,2,0],[2,0,3,2],[2,3,3,0],[1,3,2,1]],[[0,0,2,0],[2,0,3,2],[2,3,3,0],[1,2,3,1]],[[0,0,2,0],[2,0,3,2],[2,3,3,0],[1,2,2,2]],[[0,0,2,0],[2,0,3,2],[2,3,4,1],[1,2,2,0]],[[0,0,2,0],[2,0,3,2],[2,3,3,1],[2,2,2,0]],[[0,0,2,0],[2,0,3,2],[2,3,3,1],[1,3,2,0]],[[0,0,2,0],[2,0,3,2],[2,3,3,1],[1,2,3,0]],[[0,0,2,0],[2,1,0,2],[2,3,3,3],[1,2,2,1]],[[0,0,2,0],[2,1,0,2],[2,3,3,2],[2,2,2,1]],[[0,0,2,0],[2,1,0,2],[2,3,3,2],[1,3,2,1]],[[0,0,2,0],[2,1,0,2],[2,3,3,2],[1,2,3,1]],[[0,0,2,0],[2,1,0,2],[2,3,3,2],[1,2,2,2]],[[1,2,2,1],[3,3,3,1],[2,3,0,1],[1,1,0,0]],[[1,2,3,1],[2,3,3,1],[2,3,0,1],[1,1,0,0]],[[1,3,2,1],[2,3,3,1],[2,3,0,1],[1,1,0,0]],[[2,2,2,1],[2,3,3,1],[2,3,0,1],[1,1,0,0]],[[1,2,2,1],[3,3,3,1],[2,3,0,1],[1,0,1,0]],[[1,2,3,1],[2,3,3,1],[2,3,0,1],[1,0,1,0]],[[1,3,2,1],[2,3,3,1],[2,3,0,1],[1,0,1,0]],[[2,2,2,1],[2,3,3,1],[2,3,0,1],[1,0,1,0]],[[1,2,2,1],[3,3,3,1],[2,3,0,1],[1,0,0,1]],[[1,2,3,1],[2,3,3,1],[2,3,0,1],[1,0,0,1]],[[1,3,2,1],[2,3,3,1],[2,3,0,1],[1,0,0,1]],[[2,2,2,1],[2,3,3,1],[2,3,0,1],[1,0,0,1]],[[1,2,2,1],[2,3,3,1],[2,3,0,0],[2,2,0,0]],[[1,2,2,1],[2,3,3,1],[3,3,0,0],[1,2,0,0]],[[1,2,2,1],[3,3,3,1],[2,3,0,0],[1,2,0,0]],[[1,3,2,1],[2,3,3,1],[2,3,0,0],[1,2,0,0]],[[2,2,2,1],[2,3,3,1],[2,3,0,0],[1,2,0,0]],[[1,2,2,1],[2,3,3,1],[3,3,0,0],[1,1,1,0]],[[1,2,2,1],[3,3,3,1],[2,3,0,0],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[2,3,0,0],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[2,3,0,0],[1,1,1,0]],[[1,2,2,1],[3,3,3,1],[2,3,0,0],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[2,3,0,0],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[2,3,0,0],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[2,3,0,0],[1,0,1,1]],[[1,2,2,1],[3,3,3,1],[2,3,0,0],[0,2,1,0]],[[1,3,2,1],[2,3,3,1],[2,3,0,0],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[2,3,0,0],[0,2,1,0]],[[1,2,2,1],[3,3,3,1],[2,2,2,1],[1,0,0,0]],[[1,2,2,2],[2,3,3,1],[2,2,2,1],[1,0,0,0]],[[1,2,3,1],[2,3,3,1],[2,2,2,1],[1,0,0,0]],[[1,3,2,1],[2,3,3,1],[2,2,2,1],[1,0,0,0]],[[2,2,2,1],[2,3,3,1],[2,2,2,1],[1,0,0,0]],[[0,0,2,0],[2,3,1,2],[0,2,3,3],[1,2,2,1]],[[0,0,2,0],[2,3,1,2],[0,2,3,2],[1,3,2,1]],[[0,0,2,0],[2,3,1,2],[0,2,3,2],[1,2,3,1]],[[0,0,2,0],[2,3,1,2],[0,2,3,2],[1,2,2,2]],[[0,0,2,0],[2,3,1,2],[0,3,3,3],[1,1,2,1]],[[0,0,2,0],[2,3,1,2],[0,3,3,2],[1,1,3,1]],[[0,0,2,0],[2,3,1,2],[0,3,3,2],[1,1,2,2]],[[0,0,2,0],[2,3,1,2],[1,2,3,3],[0,2,2,1]],[[0,0,2,0],[2,3,1,2],[1,2,3,2],[0,2,3,1]],[[0,0,2,0],[2,3,1,2],[1,2,3,2],[0,2,2,2]],[[0,0,2,0],[2,3,1,2],[1,3,3,3],[0,1,2,1]],[[0,0,2,0],[2,3,1,2],[1,3,3,2],[0,1,3,1]],[[0,0,2,0],[2,3,1,2],[1,3,3,2],[0,1,2,2]],[[0,0,2,0],[2,3,2,2],[0,1,3,3],[1,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,1,3,2],[1,2,3,1]],[[0,0,2,0],[2,3,2,2],[0,1,3,2],[1,2,2,2]],[[0,0,2,0],[2,3,2,3],[0,2,2,2],[1,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,2,2,3],[1,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,2,2,2],[2,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,2,2,2],[1,3,2,1]],[[0,0,2,0],[2,3,2,2],[0,2,2,2],[1,2,3,1]],[[0,0,2,0],[2,3,2,2],[0,2,2,2],[1,2,2,2]],[[0,0,2,0],[2,3,2,2],[0,2,4,1],[1,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,2,3,1],[2,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,2,3,1],[1,3,2,1]],[[0,0,2,0],[2,3,2,2],[0,2,3,1],[1,2,3,1]],[[0,0,2,0],[2,3,2,2],[0,2,3,1],[1,2,2,2]],[[0,0,2,0],[2,3,2,3],[0,2,3,2],[1,2,1,1]],[[0,0,2,0],[2,3,2,2],[0,2,4,2],[1,2,1,1]],[[0,0,2,0],[2,3,2,2],[0,2,3,3],[1,2,1,1]],[[0,0,2,0],[2,3,2,2],[0,2,3,2],[1,2,1,2]],[[0,0,2,0],[2,3,2,3],[0,2,3,2],[1,2,2,0]],[[0,0,2,0],[2,3,2,2],[0,2,4,2],[1,2,2,0]],[[0,0,2,0],[2,3,2,2],[0,2,3,3],[1,2,2,0]],[[0,0,2,0],[2,3,2,2],[0,2,3,2],[2,2,2,0]],[[0,0,2,0],[2,3,2,2],[0,2,3,2],[1,3,2,0]],[[0,0,2,0],[2,3,2,2],[0,2,3,2],[1,2,3,0]],[[0,0,2,0],[2,3,2,3],[0,3,1,2],[1,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,4,1,2],[1,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,1,3],[1,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,1,2],[2,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,1,2],[1,3,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,1,2],[1,2,3,1]],[[0,0,2,0],[2,3,2,2],[0,3,1,2],[1,2,2,2]],[[0,0,2,0],[2,3,2,2],[0,4,2,1],[1,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,2,1],[2,2,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,2,1],[1,3,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,2,1],[1,2,3,1]],[[0,0,2,0],[2,3,2,2],[0,3,2,1],[1,2,2,2]],[[0,0,2,0],[2,3,2,3],[0,3,2,2],[1,1,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,2,3],[1,1,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,2,2],[1,1,3,1]],[[0,0,2,0],[2,3,2,2],[0,3,2,2],[1,1,2,2]],[[0,0,2,0],[2,3,2,2],[0,4,2,2],[1,2,2,0]],[[0,0,2,0],[2,3,2,2],[0,3,2,2],[2,2,2,0]],[[0,0,2,0],[2,3,2,2],[0,3,2,2],[1,3,2,0]],[[0,0,2,0],[2,3,2,2],[0,3,2,2],[1,2,3,0]],[[0,0,2,0],[2,3,2,2],[0,4,3,1],[1,1,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,4,1],[1,1,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,1],[1,1,3,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,1],[1,1,2,2]],[[0,0,2,0],[2,3,2,2],[0,4,3,1],[1,2,1,1]],[[0,0,2,0],[2,3,2,2],[0,3,4,1],[1,2,1,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,1],[2,2,1,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,1],[1,3,1,1]],[[0,0,2,0],[2,3,2,3],[0,3,3,2],[1,0,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,4,2],[1,0,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,3],[1,0,2,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,2],[1,0,2,2]],[[0,0,2,0],[2,3,2,3],[0,3,3,2],[1,1,1,1]],[[0,0,2,0],[2,3,2,2],[0,4,3,2],[1,1,1,1]],[[0,0,2,0],[2,3,2,2],[0,3,4,2],[1,1,1,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,3],[1,1,1,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,2],[1,1,1,2]],[[0,0,2,0],[2,3,2,3],[0,3,3,2],[1,1,2,0]],[[0,0,2,0],[2,3,2,2],[0,4,3,2],[1,1,2,0]],[[0,0,2,0],[2,3,2,2],[0,3,4,2],[1,1,2,0]],[[0,0,2,0],[2,3,2,2],[0,3,3,3],[1,1,2,0]],[[0,0,2,0],[2,3,2,2],[0,3,3,2],[1,1,3,0]],[[0,0,2,0],[2,3,2,3],[0,3,3,2],[1,2,0,1]],[[0,0,2,0],[2,3,2,2],[0,4,3,2],[1,2,0,1]],[[0,0,2,0],[2,3,2,2],[0,3,4,2],[1,2,0,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,3],[1,2,0,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,2],[2,2,0,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,2],[1,3,0,1]],[[0,0,2,0],[2,3,2,2],[0,3,3,2],[1,2,0,2]],[[0,0,2,0],[2,3,2,3],[0,3,3,2],[1,2,1,0]],[[0,0,2,0],[2,3,2,2],[0,4,3,2],[1,2,1,0]],[[0,0,2,0],[2,3,2,2],[0,3,4,2],[1,2,1,0]],[[0,0,2,0],[2,3,2,2],[0,3,3,3],[1,2,1,0]],[[0,0,2,0],[2,3,2,2],[0,3,3,2],[2,2,1,0]],[[0,0,2,0],[2,3,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,3,1],[2,2,1,1],[1,0,1,0]],[[1,2,2,2],[2,3,3,1],[2,2,1,1],[1,0,1,0]],[[1,2,3,1],[2,3,3,1],[2,2,1,1],[1,0,1,0]],[[1,3,2,1],[2,3,3,1],[2,2,1,1],[1,0,1,0]],[[2,2,2,1],[2,3,3,1],[2,2,1,1],[1,0,1,0]],[[1,2,2,1],[3,3,3,1],[2,2,1,1],[1,0,0,1]],[[1,2,2,2],[2,3,3,1],[2,2,1,1],[1,0,0,1]],[[0,0,2,0],[2,3,2,2],[1,1,3,3],[0,2,2,1]],[[0,0,2,0],[2,3,2,2],[1,1,3,2],[0,2,3,1]],[[0,0,2,0],[2,3,2,2],[1,1,3,2],[0,2,2,2]],[[0,0,2,0],[2,3,2,3],[1,2,2,2],[0,2,2,1]],[[0,0,2,0],[2,3,2,2],[1,2,2,3],[0,2,2,1]],[[0,0,2,0],[2,3,2,2],[1,2,2,2],[0,3,2,1]],[[0,0,2,0],[2,3,2,2],[1,2,2,2],[0,2,3,1]],[[0,0,2,0],[2,3,2,2],[1,2,2,2],[0,2,2,2]],[[0,0,2,0],[2,3,2,2],[1,2,4,1],[0,2,2,1]],[[0,0,2,0],[2,3,2,2],[1,2,3,1],[0,3,2,1]],[[0,0,2,0],[2,3,2,2],[1,2,3,1],[0,2,3,1]],[[0,0,2,0],[2,3,2,2],[1,2,3,1],[0,2,2,2]],[[0,0,2,0],[2,3,2,3],[1,2,3,2],[0,2,1,1]],[[0,0,2,0],[2,3,2,2],[1,2,4,2],[0,2,1,1]],[[0,0,2,0],[2,3,2,2],[1,2,3,3],[0,2,1,1]],[[0,0,2,0],[2,3,2,2],[1,2,3,2],[0,2,1,2]],[[0,0,2,0],[2,3,2,3],[1,2,3,2],[0,2,2,0]],[[0,0,2,0],[2,3,2,2],[1,2,4,2],[0,2,2,0]],[[0,0,2,0],[2,3,2,2],[1,2,3,3],[0,2,2,0]],[[0,0,2,0],[2,3,2,2],[1,2,3,2],[0,3,2,0]],[[0,0,2,0],[2,3,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,3,1],[2,3,3,1],[2,2,1,1],[1,0,0,1]],[[1,3,2,1],[2,3,3,1],[2,2,1,1],[1,0,0,1]],[[2,2,2,1],[2,3,3,1],[2,2,1,1],[1,0,0,1]],[[0,0,2,0],[2,3,2,3],[1,3,1,2],[0,2,2,1]],[[0,0,2,0],[2,3,2,2],[1,4,1,2],[0,2,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,1,3],[0,2,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,1,2],[0,3,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,1,2],[0,2,3,1]],[[0,0,2,0],[2,3,2,2],[1,3,1,2],[0,2,2,2]],[[0,0,2,0],[2,3,2,2],[1,4,2,1],[0,2,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,2,1],[0,3,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,2,1],[0,2,3,1]],[[0,0,2,0],[2,3,2,2],[1,3,2,1],[0,2,2,2]],[[0,0,2,0],[2,3,2,3],[1,3,2,2],[0,1,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,2,3],[0,1,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,2,2],[0,1,3,1]],[[0,0,2,0],[2,3,2,2],[1,3,2,2],[0,1,2,2]],[[0,0,2,0],[2,3,2,2],[1,4,2,2],[0,2,2,0]],[[0,0,2,0],[2,3,2,2],[1,3,2,2],[0,3,2,0]],[[0,0,2,0],[2,3,2,2],[1,3,2,2],[0,2,3,0]],[[0,0,2,0],[2,3,2,3],[1,3,2,2],[1,0,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,2,3],[1,0,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,2,2],[1,0,3,1]],[[0,0,2,0],[2,3,2,2],[1,3,2,2],[1,0,2,2]],[[0,0,2,0],[2,3,2,2],[1,4,3,1],[0,1,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,4,1],[0,1,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,1],[0,1,3,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,1],[0,1,2,2]],[[0,0,2,0],[2,3,2,2],[1,4,3,1],[0,2,1,1]],[[0,0,2,0],[2,3,2,2],[1,3,4,1],[0,2,1,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,1],[0,3,1,1]],[[0,0,2,0],[2,3,2,2],[1,4,3,1],[1,0,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,4,1],[1,0,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,1],[1,0,3,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,1],[1,0,2,2]],[[0,0,2,0],[2,3,2,3],[1,3,3,2],[0,0,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,4,2],[0,0,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,3],[0,0,2,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,2],[0,0,2,2]],[[0,0,2,0],[2,3,2,3],[1,3,3,2],[0,1,1,1]],[[0,0,2,0],[2,3,2,2],[1,4,3,2],[0,1,1,1]],[[0,0,2,0],[2,3,2,2],[1,3,4,2],[0,1,1,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,3],[0,1,1,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,2],[0,1,1,2]],[[0,0,2,0],[2,3,2,3],[1,3,3,2],[0,1,2,0]],[[0,0,2,0],[2,3,2,2],[1,4,3,2],[0,1,2,0]],[[0,0,2,0],[2,3,2,2],[1,3,4,2],[0,1,2,0]],[[0,0,2,0],[2,3,2,2],[1,3,3,3],[0,1,2,0]],[[0,0,2,0],[2,3,2,2],[1,3,3,2],[0,1,3,0]],[[0,0,2,0],[2,3,2,3],[1,3,3,2],[0,2,0,1]],[[0,0,2,0],[2,3,2,2],[1,4,3,2],[0,2,0,1]],[[0,0,2,0],[2,3,2,2],[1,3,4,2],[0,2,0,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,3],[0,2,0,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,2],[0,3,0,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,2],[0,2,0,2]],[[0,0,2,0],[2,3,2,3],[1,3,3,2],[0,2,1,0]],[[0,0,2,0],[2,3,2,2],[1,4,3,2],[0,2,1,0]],[[0,0,2,0],[2,3,2,2],[1,3,4,2],[0,2,1,0]],[[0,0,2,0],[2,3,2,2],[1,3,3,3],[0,2,1,0]],[[0,0,2,0],[2,3,2,2],[1,3,3,2],[0,3,1,0]],[[0,0,2,0],[2,3,2,3],[1,3,3,2],[1,0,1,1]],[[0,0,2,0],[2,3,2,2],[1,4,3,2],[1,0,1,1]],[[0,0,2,0],[2,3,2,2],[1,3,4,2],[1,0,1,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,3],[1,0,1,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,2],[1,0,1,2]],[[0,0,2,0],[2,3,2,3],[1,3,3,2],[1,0,2,0]],[[0,0,2,0],[2,3,2,2],[1,4,3,2],[1,0,2,0]],[[0,0,2,0],[2,3,2,2],[1,3,4,2],[1,0,2,0]],[[0,0,2,0],[2,3,2,2],[1,3,3,3],[1,0,2,0]],[[0,0,2,0],[2,3,2,2],[1,3,3,2],[1,0,3,0]],[[0,0,2,0],[2,3,2,3],[1,3,3,2],[1,1,0,1]],[[0,0,2,0],[2,3,2,2],[1,4,3,2],[1,1,0,1]],[[0,0,2,0],[2,3,2,2],[1,3,4,2],[1,1,0,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,3],[1,1,0,1]],[[0,0,2,0],[2,3,2,2],[1,3,3,2],[1,1,0,2]],[[0,0,2,0],[2,3,2,3],[1,3,3,2],[1,1,1,0]],[[0,0,2,0],[2,3,2,2],[1,4,3,2],[1,1,1,0]],[[0,0,2,0],[2,3,2,2],[1,3,4,2],[1,1,1,0]],[[0,0,2,0],[2,3,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,3,3,1],[2,2,1,0],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[2,2,1,0],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[2,2,1,0],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[2,2,1,0],[1,0,1,1]],[[1,2,2,1],[3,3,3,1],[2,2,0,2],[1,0,1,0]],[[1,2,2,2],[2,3,3,1],[2,2,0,2],[1,0,1,0]],[[1,2,3,1],[2,3,3,1],[2,2,0,2],[1,0,1,0]],[[1,3,2,1],[2,3,3,1],[2,2,0,2],[1,0,1,0]],[[2,2,2,1],[2,3,3,1],[2,2,0,2],[1,0,1,0]],[[1,2,2,1],[3,3,3,1],[2,2,0,2],[1,0,0,1]],[[1,2,2,2],[2,3,3,1],[2,2,0,2],[1,0,0,1]],[[1,2,3,1],[2,3,3,1],[2,2,0,2],[1,0,0,1]],[[1,3,2,1],[2,3,3,1],[2,2,0,2],[1,0,0,1]],[[2,2,2,1],[2,3,3,1],[2,2,0,2],[1,0,0,1]],[[1,2,2,1],[3,3,3,1],[2,2,0,1],[1,2,0,0]],[[1,2,3,1],[2,3,3,1],[2,2,0,1],[1,2,0,0]],[[1,3,2,1],[2,3,3,1],[2,2,0,1],[1,2,0,0]],[[2,2,2,1],[2,3,3,1],[2,2,0,1],[1,2,0,0]],[[1,2,2,1],[3,3,3,1],[2,2,0,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[2,2,0,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[2,2,0,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[2,2,0,1],[1,1,1,0]],[[1,2,2,1],[3,3,3,1],[2,2,0,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,1],[2,2,0,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,1],[2,2,0,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,1],[2,2,0,1],[1,1,0,1]],[[1,2,2,1],[3,3,3,1],[2,2,0,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,1],[2,2,0,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,1],[2,2,0,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[2,2,0,1],[0,2,1,0]],[[1,2,2,1],[3,3,3,1],[2,2,0,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,1],[2,2,0,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,1],[2,2,0,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,1],[2,2,0,1],[0,2,0,1]],[[1,2,2,1],[3,3,3,1],[2,2,0,0],[1,2,0,1]],[[1,2,3,1],[2,3,3,1],[2,2,0,0],[1,2,0,1]],[[1,3,2,1],[2,3,3,1],[2,2,0,0],[1,2,0,1]],[[2,2,2,1],[2,3,3,1],[2,2,0,0],[1,2,0,1]],[[1,2,2,1],[3,3,3,1],[2,2,0,0],[1,1,1,1]],[[1,2,3,1],[2,3,3,1],[2,2,0,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,1],[2,2,0,0],[1,1,1,1]],[[2,2,2,1],[2,3,3,1],[2,2,0,0],[1,1,1,1]],[[1,2,2,1],[3,3,3,1],[2,2,0,0],[0,2,1,1]],[[1,2,3,1],[2,3,3,1],[2,2,0,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,1],[2,2,0,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,1],[2,2,0,0],[0,2,1,1]],[[1,2,2,1],[3,3,3,1],[2,1,3,1],[1,0,0,0]],[[1,2,2,2],[2,3,3,1],[2,1,3,1],[1,0,0,0]],[[1,2,3,1],[2,3,3,1],[2,1,3,1],[1,0,0,0]],[[1,3,2,1],[2,3,3,1],[2,1,3,1],[1,0,0,0]],[[2,2,2,1],[2,3,3,1],[2,1,3,1],[1,0,0,0]],[[0,0,2,0],[2,3,3,0],[0,2,4,2],[1,2,2,1]],[[0,0,2,0],[2,3,3,0],[0,2,3,2],[2,2,2,1]],[[0,0,2,0],[2,3,3,0],[0,2,3,2],[1,3,2,1]],[[0,0,2,0],[2,3,3,0],[0,2,3,2],[1,2,3,1]],[[0,0,2,0],[2,3,3,0],[0,2,3,2],[1,2,2,2]],[[0,0,2,0],[2,3,3,0],[0,4,2,2],[1,2,2,1]],[[0,0,2,0],[2,3,3,0],[0,3,2,2],[2,2,2,1]],[[0,0,2,0],[2,3,3,0],[0,3,2,2],[1,3,2,1]],[[0,0,2,0],[2,3,3,0],[0,3,2,2],[1,2,3,1]],[[0,0,2,0],[2,3,3,0],[0,3,2,2],[1,2,2,2]],[[0,0,2,0],[2,3,3,0],[0,4,3,2],[1,1,2,1]],[[0,0,2,0],[2,3,3,0],[0,3,4,2],[1,1,2,1]],[[0,0,2,0],[2,3,3,0],[0,3,3,2],[1,1,3,1]],[[0,0,2,0],[2,3,3,0],[0,3,3,2],[1,1,2,2]],[[0,0,2,0],[2,3,3,0],[0,4,3,2],[1,2,1,1]],[[0,0,2,0],[2,3,3,0],[0,3,4,2],[1,2,1,1]],[[0,0,2,0],[2,3,3,0],[0,3,3,2],[2,2,1,1]],[[0,0,2,0],[2,3,3,0],[0,3,3,2],[1,3,1,1]],[[0,0,2,0],[2,3,3,0],[1,2,4,2],[0,2,2,1]],[[0,0,2,0],[2,3,3,0],[1,2,3,2],[0,3,2,1]],[[0,0,2,0],[2,3,3,0],[1,2,3,2],[0,2,3,1]],[[0,0,2,0],[2,3,3,0],[1,2,3,2],[0,2,2,2]],[[0,0,2,0],[2,3,3,0],[1,4,2,2],[0,2,2,1]],[[0,0,2,0],[2,3,3,0],[1,3,2,2],[0,3,2,1]],[[0,0,2,0],[2,3,3,0],[1,3,2,2],[0,2,3,1]],[[0,0,2,0],[2,3,3,0],[1,3,2,2],[0,2,2,2]],[[0,0,2,0],[2,3,3,0],[1,4,3,2],[0,1,2,1]],[[0,0,2,0],[2,3,3,0],[1,3,4,2],[0,1,2,1]],[[0,0,2,0],[2,3,3,0],[1,3,3,2],[0,1,3,1]],[[0,0,2,0],[2,3,3,0],[1,3,3,2],[0,1,2,2]],[[0,0,2,0],[2,3,3,0],[1,4,3,2],[0,2,1,1]],[[0,0,2,0],[2,3,3,0],[1,3,4,2],[0,2,1,1]],[[0,0,2,0],[2,3,3,0],[1,3,3,2],[0,3,1,1]],[[0,0,2,0],[2,3,3,0],[1,4,3,2],[1,0,2,1]],[[0,0,2,0],[2,3,3,0],[1,3,4,2],[1,0,2,1]],[[0,0,2,0],[2,3,3,0],[1,3,3,2],[1,0,3,1]],[[0,0,2,0],[2,3,3,0],[1,3,3,2],[1,0,2,2]],[[0,0,2,0],[2,3,3,1],[0,1,3,3],[1,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,1,3,2],[1,2,3,1]],[[0,0,2,0],[2,3,3,1],[0,1,3,2],[1,2,2,2]],[[0,0,2,0],[2,3,3,1],[0,2,2,3],[1,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,2,2,2],[2,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,2,2,2],[1,3,2,1]],[[0,0,2,0],[2,3,3,1],[0,2,2,2],[1,2,3,1]],[[0,0,2,0],[2,3,3,1],[0,2,2,2],[1,2,2,2]],[[0,0,2,0],[2,3,4,1],[0,2,3,1],[1,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,2,4,1],[1,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,2,3,1],[2,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,2,3,1],[1,3,2,1]],[[0,0,2,0],[2,3,3,1],[0,2,3,1],[1,2,3,1]],[[0,0,2,0],[2,3,3,1],[0,2,3,1],[1,2,2,2]],[[0,0,2,0],[2,3,4,1],[0,2,3,2],[1,2,1,1]],[[0,0,2,0],[2,3,3,1],[0,2,4,2],[1,2,1,1]],[[0,0,2,0],[2,3,3,1],[0,2,3,3],[1,2,1,1]],[[0,0,2,0],[2,3,3,1],[0,2,3,2],[1,2,1,2]],[[0,0,2,0],[2,3,4,1],[0,2,3,2],[1,2,2,0]],[[0,0,2,0],[2,3,3,1],[0,2,4,2],[1,2,2,0]],[[0,0,2,0],[2,3,3,1],[0,2,3,3],[1,2,2,0]],[[0,0,2,0],[2,3,3,1],[0,2,3,2],[2,2,2,0]],[[0,0,2,0],[2,3,3,1],[0,2,3,2],[1,3,2,0]],[[0,0,2,0],[2,3,3,1],[0,2,3,2],[1,2,3,0]],[[0,0,2,0],[2,3,3,1],[0,4,1,2],[1,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,1,3],[1,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,1,2],[2,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,1,2],[1,3,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,1,2],[1,2,3,1]],[[0,0,2,0],[2,3,3,1],[0,3,1,2],[1,2,2,2]],[[0,0,2,0],[2,3,3,1],[0,4,2,1],[1,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,2,1],[2,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,2,1],[1,3,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,2,1],[1,2,3,1]],[[0,0,2,0],[2,3,3,1],[0,3,2,1],[1,2,2,2]],[[0,0,2,0],[2,3,3,1],[0,3,2,3],[1,1,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,2,2],[1,1,3,1]],[[0,0,2,0],[2,3,3,1],[0,3,2,2],[1,1,2,2]],[[0,0,2,0],[2,3,3,1],[0,4,2,2],[1,2,2,0]],[[0,0,2,0],[2,3,3,1],[0,3,2,2],[2,2,2,0]],[[0,0,2,0],[2,3,3,1],[0,3,2,2],[1,3,2,0]],[[0,0,2,0],[2,3,3,1],[0,3,2,2],[1,2,3,0]],[[0,0,2,0],[2,3,3,1],[0,4,3,0],[1,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,0],[2,2,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,0],[1,3,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,0],[1,2,3,1]],[[0,0,2,0],[2,3,4,1],[0,3,3,1],[1,1,2,1]],[[0,0,2,0],[2,3,3,1],[0,4,3,1],[1,1,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,4,1],[1,1,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,1],[1,1,3,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,1],[1,1,2,2]],[[0,0,2,0],[2,3,4,1],[0,3,3,1],[1,2,1,1]],[[0,0,2,0],[2,3,3,1],[0,4,3,1],[1,2,1,1]],[[0,0,2,0],[2,3,3,1],[0,3,4,1],[1,2,1,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,1],[2,2,1,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,1],[1,3,1,1]],[[0,0,2,0],[2,3,4,1],[0,3,3,2],[1,0,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,4,2],[1,0,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,3],[1,0,2,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,2],[1,0,2,2]],[[0,0,2,0],[2,3,4,1],[0,3,3,2],[1,1,1,1]],[[0,0,2,0],[2,3,3,1],[0,4,3,2],[1,1,1,1]],[[0,0,2,0],[2,3,3,1],[0,3,4,2],[1,1,1,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,3],[1,1,1,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,2],[1,1,1,2]],[[0,0,2,0],[2,3,4,1],[0,3,3,2],[1,1,2,0]],[[0,0,2,0],[2,3,3,1],[0,4,3,2],[1,1,2,0]],[[0,0,2,0],[2,3,3,1],[0,3,4,2],[1,1,2,0]],[[0,0,2,0],[2,3,3,1],[0,3,3,3],[1,1,2,0]],[[0,0,2,0],[2,3,3,1],[0,3,3,2],[1,1,3,0]],[[0,0,2,0],[2,3,4,1],[0,3,3,2],[1,2,0,1]],[[0,0,2,0],[2,3,3,1],[0,4,3,2],[1,2,0,1]],[[0,0,2,0],[2,3,3,1],[0,3,4,2],[1,2,0,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,3],[1,2,0,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,2],[2,2,0,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,2],[1,3,0,1]],[[0,0,2,0],[2,3,3,1],[0,3,3,2],[1,2,0,2]],[[0,0,2,0],[2,3,4,1],[0,3,3,2],[1,2,1,0]],[[0,0,2,0],[2,3,3,1],[0,4,3,2],[1,2,1,0]],[[0,0,2,0],[2,3,3,1],[0,3,4,2],[1,2,1,0]],[[0,0,2,0],[2,3,3,1],[0,3,3,3],[1,2,1,0]],[[0,0,2,0],[2,3,3,1],[0,3,3,2],[2,2,1,0]],[[0,0,2,0],[2,3,3,1],[0,3,3,2],[1,3,1,0]],[[0,0,2,0],[2,3,3,1],[1,1,3,3],[0,2,2,1]],[[0,0,2,0],[2,3,3,1],[1,1,3,2],[0,2,3,1]],[[0,0,2,0],[2,3,3,1],[1,1,3,2],[0,2,2,2]],[[0,0,2,0],[2,3,3,1],[1,2,2,3],[0,2,2,1]],[[0,0,2,0],[2,3,3,1],[1,2,2,2],[0,3,2,1]],[[0,0,2,0],[2,3,3,1],[1,2,2,2],[0,2,3,1]],[[0,0,2,0],[2,3,3,1],[1,2,2,2],[0,2,2,2]],[[0,0,2,0],[2,3,4,1],[1,2,3,1],[0,2,2,1]],[[0,0,2,0],[2,3,3,1],[1,2,4,1],[0,2,2,1]],[[0,0,2,0],[2,3,3,1],[1,2,3,1],[0,3,2,1]],[[0,0,2,0],[2,3,3,1],[1,2,3,1],[0,2,3,1]],[[0,0,2,0],[2,3,3,1],[1,2,3,1],[0,2,2,2]],[[0,0,2,0],[2,3,4,1],[1,2,3,2],[0,2,1,1]],[[0,0,2,0],[2,3,3,1],[1,2,4,2],[0,2,1,1]],[[0,0,2,0],[2,3,3,1],[1,2,3,3],[0,2,1,1]],[[0,0,2,0],[2,3,3,1],[1,2,3,2],[0,2,1,2]],[[0,0,2,0],[2,3,4,1],[1,2,3,2],[0,2,2,0]],[[0,0,2,0],[2,3,3,1],[1,2,4,2],[0,2,2,0]],[[0,0,2,0],[2,3,3,1],[1,2,3,3],[0,2,2,0]],[[0,0,2,0],[2,3,3,1],[1,2,3,2],[0,3,2,0]],[[0,0,2,0],[2,3,3,1],[1,2,3,2],[0,2,3,0]],[[0,0,2,0],[2,3,3,1],[1,4,1,2],[0,2,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,1,3],[0,2,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,1,2],[0,3,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,1,2],[0,2,3,1]],[[0,0,2,0],[2,3,3,1],[1,3,1,2],[0,2,2,2]],[[0,0,2,0],[2,3,3,1],[1,4,2,1],[0,2,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,2,1],[0,3,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,2,1],[0,2,3,1]],[[0,0,2,0],[2,3,3,1],[1,3,2,1],[0,2,2,2]],[[0,0,2,0],[2,3,3,1],[1,3,2,3],[0,1,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,2,2],[0,1,3,1]],[[0,0,2,0],[2,3,3,1],[1,3,2,2],[0,1,2,2]],[[0,0,2,0],[2,3,3,1],[1,4,2,2],[0,2,2,0]],[[0,0,2,0],[2,3,3,1],[1,3,2,2],[0,3,2,0]],[[0,0,2,0],[2,3,3,1],[1,3,2,2],[0,2,3,0]],[[0,0,2,0],[2,3,3,1],[1,3,2,3],[1,0,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,2,2],[1,0,3,1]],[[0,0,2,0],[2,3,3,1],[1,3,2,2],[1,0,2,2]],[[0,0,2,0],[2,3,3,1],[1,4,3,0],[0,2,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,0],[0,3,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,0],[0,2,3,1]],[[0,0,2,0],[2,3,4,1],[1,3,3,1],[0,1,2,1]],[[0,0,2,0],[2,3,3,1],[1,4,3,1],[0,1,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,4,1],[0,1,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,1],[0,1,3,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,1],[0,1,2,2]],[[0,0,2,0],[2,3,4,1],[1,3,3,1],[0,2,1,1]],[[0,0,2,0],[2,3,3,1],[1,4,3,1],[0,2,1,1]],[[0,0,2,0],[2,3,3,1],[1,3,4,1],[0,2,1,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,1],[0,3,1,1]],[[0,0,2,0],[2,3,4,1],[1,3,3,1],[1,0,2,1]],[[0,0,2,0],[2,3,3,1],[1,4,3,1],[1,0,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,4,1],[1,0,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,1],[1,0,3,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,1],[1,0,2,2]],[[0,0,2,0],[2,3,4,1],[1,3,3,1],[1,1,1,1]],[[0,0,2,0],[2,3,3,1],[1,4,3,1],[1,1,1,1]],[[0,0,2,0],[2,3,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[3,3,3,1],[2,1,2,1],[1,1,0,0]],[[1,2,2,2],[2,3,3,1],[2,1,2,1],[1,1,0,0]],[[1,2,3,1],[2,3,3,1],[2,1,2,1],[1,1,0,0]],[[0,0,2,0],[2,3,4,1],[1,3,3,2],[0,0,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,4,2],[0,0,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,3],[0,0,2,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,2],[0,0,2,2]],[[0,0,2,0],[2,3,4,1],[1,3,3,2],[0,1,1,1]],[[0,0,2,0],[2,3,3,1],[1,4,3,2],[0,1,1,1]],[[0,0,2,0],[2,3,3,1],[1,3,4,2],[0,1,1,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,3],[0,1,1,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,2],[0,1,1,2]],[[0,0,2,0],[2,3,4,1],[1,3,3,2],[0,1,2,0]],[[0,0,2,0],[2,3,3,1],[1,4,3,2],[0,1,2,0]],[[0,0,2,0],[2,3,3,1],[1,3,4,2],[0,1,2,0]],[[0,0,2,0],[2,3,3,1],[1,3,3,3],[0,1,2,0]],[[0,0,2,0],[2,3,3,1],[1,3,3,2],[0,1,3,0]],[[0,0,2,0],[2,3,4,1],[1,3,3,2],[0,2,0,1]],[[0,0,2,0],[2,3,3,1],[1,4,3,2],[0,2,0,1]],[[0,0,2,0],[2,3,3,1],[1,3,4,2],[0,2,0,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,3],[0,2,0,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,2],[0,3,0,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,2],[0,2,0,2]],[[0,0,2,0],[2,3,4,1],[1,3,3,2],[0,2,1,0]],[[0,0,2,0],[2,3,3,1],[1,4,3,2],[0,2,1,0]],[[0,0,2,0],[2,3,3,1],[1,3,4,2],[0,2,1,0]],[[0,0,2,0],[2,3,3,1],[1,3,3,3],[0,2,1,0]],[[0,0,2,0],[2,3,3,1],[1,3,3,2],[0,3,1,0]],[[1,3,2,1],[2,3,3,1],[2,1,2,1],[1,1,0,0]],[[2,2,2,1],[2,3,3,1],[2,1,2,1],[1,1,0,0]],[[0,0,2,0],[2,3,4,1],[1,3,3,2],[1,0,1,1]],[[0,0,2,0],[2,3,3,1],[1,4,3,2],[1,0,1,1]],[[0,0,2,0],[2,3,3,1],[1,3,4,2],[1,0,1,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,3],[1,0,1,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,2],[1,0,1,2]],[[0,0,2,0],[2,3,4,1],[1,3,3,2],[1,0,2,0]],[[0,0,2,0],[2,3,3,1],[1,4,3,2],[1,0,2,0]],[[0,0,2,0],[2,3,3,1],[1,3,4,2],[1,0,2,0]],[[0,0,2,0],[2,3,3,1],[1,3,3,3],[1,0,2,0]],[[0,0,2,0],[2,3,3,1],[1,3,3,2],[1,0,3,0]],[[0,0,2,0],[2,3,4,1],[1,3,3,2],[1,1,0,1]],[[0,0,2,0],[2,3,3,1],[1,4,3,2],[1,1,0,1]],[[0,0,2,0],[2,3,3,1],[1,3,4,2],[1,1,0,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,3],[1,1,0,1]],[[0,0,2,0],[2,3,3,1],[1,3,3,2],[1,1,0,2]],[[0,0,2,0],[2,3,4,1],[1,3,3,2],[1,1,1,0]],[[0,0,2,0],[2,3,3,1],[1,4,3,2],[1,1,1,0]],[[0,0,2,0],[2,3,3,1],[1,3,4,2],[1,1,1,0]],[[0,0,2,0],[2,3,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,3,3,1],[2,1,2,1],[0,2,0,0]],[[1,2,2,2],[2,3,3,1],[2,1,2,1],[0,2,0,0]],[[1,2,3,1],[2,3,3,1],[2,1,2,1],[0,2,0,0]],[[1,3,2,1],[2,3,3,1],[2,1,2,1],[0,2,0,0]],[[2,2,2,1],[2,3,3,1],[2,1,2,1],[0,2,0,0]],[[1,2,2,1],[3,3,3,1],[2,1,1,1],[1,2,0,0]],[[1,2,2,2],[2,3,3,1],[2,1,1,1],[1,2,0,0]],[[1,2,3,1],[2,3,3,1],[2,1,1,1],[1,2,0,0]],[[1,3,2,1],[2,3,3,1],[2,1,1,1],[1,2,0,0]],[[2,2,2,1],[2,3,3,1],[2,1,1,1],[1,2,0,0]],[[1,2,2,1],[3,3,3,1],[2,1,1,1],[1,1,1,0]],[[1,2,2,2],[2,3,3,1],[2,1,1,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[2,1,1,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[2,1,1,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[2,1,1,1],[1,1,1,0]],[[1,2,2,1],[3,3,3,1],[2,1,1,1],[1,1,0,1]],[[1,2,2,2],[2,3,3,1],[2,1,1,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,1],[2,1,1,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,1],[2,1,1,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,1],[2,1,1,1],[1,1,0,1]],[[1,2,2,1],[3,3,3,1],[2,1,1,1],[1,0,2,0]],[[1,2,2,2],[2,3,3,1],[2,1,1,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,1],[2,1,1,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,1],[2,1,1,1],[1,0,2,0]],[[2,2,2,1],[2,3,3,1],[2,1,1,1],[1,0,2,0]],[[1,2,2,1],[3,3,3,1],[2,1,1,1],[1,0,1,1]],[[1,2,2,2],[2,3,3,1],[2,1,1,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[2,1,1,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[2,1,1,1],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[2,1,1,1],[1,0,1,1]],[[1,2,2,1],[3,3,3,1],[2,1,1,1],[0,2,1,0]],[[1,2,2,2],[2,3,3,1],[2,1,1,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,1],[2,1,1,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,1],[2,1,1,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[2,1,1,1],[0,2,1,0]],[[1,2,2,1],[3,3,3,1],[2,1,1,1],[0,2,0,1]],[[1,2,2,2],[2,3,3,1],[2,1,1,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,1],[2,1,1,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,1],[2,1,1,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,1],[2,1,1,1],[0,2,0,1]],[[1,2,2,1],[3,3,3,1],[2,1,1,1],[0,1,2,0]],[[1,2,2,2],[2,3,3,1],[2,1,1,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,1],[2,1,1,1],[0,1,2,0]],[[1,3,2,1],[2,3,3,1],[2,1,1,1],[0,1,2,0]],[[2,2,2,1],[2,3,3,1],[2,1,1,1],[0,1,2,0]],[[1,2,2,1],[3,3,3,1],[2,1,1,1],[0,1,1,1]],[[1,2,2,2],[2,3,3,1],[2,1,1,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,1],[2,1,1,1],[0,1,1,1]],[[1,3,2,1],[2,3,3,1],[2,1,1,1],[0,1,1,1]],[[2,2,2,1],[2,3,3,1],[2,1,1,1],[0,1,1,1]],[[1,2,2,1],[3,3,3,1],[2,1,1,0],[1,2,0,1]],[[1,2,3,1],[2,3,3,1],[2,1,1,0],[1,2,0,1]],[[1,3,2,1],[2,3,3,1],[2,1,1,0],[1,2,0,1]],[[2,2,2,1],[2,3,3,1],[2,1,1,0],[1,2,0,1]],[[1,2,2,1],[3,3,3,1],[2,1,1,0],[1,1,1,1]],[[1,2,2,2],[2,3,3,1],[2,1,1,0],[1,1,1,1]],[[1,2,3,1],[2,3,3,1],[2,1,1,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,1],[2,1,1,0],[1,1,1,1]],[[2,2,2,1],[2,3,3,1],[2,1,1,0],[1,1,1,1]],[[1,2,2,1],[3,3,3,1],[2,1,1,0],[1,0,2,1]],[[1,2,2,2],[2,3,3,1],[2,1,1,0],[1,0,2,1]],[[1,2,3,1],[2,3,3,1],[2,1,1,0],[1,0,2,1]],[[1,3,2,1],[2,3,3,1],[2,1,1,0],[1,0,2,1]],[[2,2,2,1],[2,3,3,1],[2,1,1,0],[1,0,2,1]],[[1,2,2,1],[3,3,3,1],[2,1,1,0],[0,2,1,1]],[[1,2,2,2],[2,3,3,1],[2,1,1,0],[0,2,1,1]],[[1,2,3,1],[2,3,3,1],[2,1,1,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,1],[2,1,1,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,1],[2,1,1,0],[0,2,1,1]],[[1,2,2,1],[3,3,3,1],[2,1,1,0],[0,1,2,1]],[[1,2,2,2],[2,3,3,1],[2,1,1,0],[0,1,2,1]],[[1,2,3,1],[2,3,3,1],[2,1,1,0],[0,1,2,1]],[[1,3,2,1],[2,3,3,1],[2,1,1,0],[0,1,2,1]],[[2,2,2,1],[2,3,3,1],[2,1,1,0],[0,1,2,1]],[[0,0,2,0],[2,3,4,2],[0,2,1,2],[1,2,2,1]],[[0,0,2,0],[2,3,3,3],[0,2,1,2],[1,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,2,1,3],[1,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,2,1,2],[2,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,2,1,2],[1,3,2,1]],[[0,0,2,0],[2,3,3,2],[0,2,1,2],[1,2,3,1]],[[0,0,2,0],[2,3,3,2],[0,2,1,2],[1,2,2,2]],[[0,0,2,0],[2,3,4,2],[0,2,2,2],[1,2,1,1]],[[0,0,2,0],[2,3,3,3],[0,2,2,2],[1,2,1,1]],[[0,0,2,0],[2,3,3,2],[0,2,2,3],[1,2,1,1]],[[0,0,2,0],[2,3,3,2],[0,2,2,2],[1,2,1,2]],[[0,0,2,0],[2,3,4,2],[0,2,2,2],[1,2,2,0]],[[0,0,2,0],[2,3,3,3],[0,2,2,2],[1,2,2,0]],[[0,0,2,0],[2,3,3,2],[0,2,2,3],[1,2,2,0]],[[0,0,2,0],[2,3,4,2],[0,2,3,0],[1,2,2,1]],[[0,0,2,0],[2,3,3,3],[0,2,3,0],[1,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,2,4,0],[1,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,2,3,0],[2,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,2,3,0],[1,3,2,1]],[[0,0,2,0],[2,3,3,2],[0,2,3,0],[1,2,3,1]],[[0,0,2,0],[2,3,3,2],[0,2,3,0],[1,2,2,2]],[[0,0,2,0],[2,3,4,2],[0,2,3,1],[1,2,1,1]],[[0,0,2,0],[2,3,3,3],[0,2,3,1],[1,2,1,1]],[[0,0,2,0],[2,3,3,2],[0,2,4,1],[1,2,1,1]],[[0,0,2,0],[2,3,4,2],[0,2,3,1],[1,2,2,0]],[[0,0,2,0],[2,3,3,3],[0,2,3,1],[1,2,2,0]],[[0,0,2,0],[2,3,3,2],[0,2,4,1],[1,2,2,0]],[[0,0,2,0],[2,3,3,2],[0,2,3,1],[2,2,2,0]],[[0,0,2,0],[2,3,3,2],[0,2,3,1],[1,3,2,0]],[[0,0,2,0],[2,3,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[3,3,3,1],[2,1,0,2],[1,2,0,0]],[[1,2,2,2],[2,3,3,1],[2,1,0,2],[1,2,0,0]],[[1,2,3,1],[2,3,3,1],[2,1,0,2],[1,2,0,0]],[[1,3,2,1],[2,3,3,1],[2,1,0,2],[1,2,0,0]],[[2,2,2,1],[2,3,3,1],[2,1,0,2],[1,2,0,0]],[[0,0,2,0],[2,3,4,2],[0,3,0,2],[1,2,2,1]],[[0,0,2,0],[2,3,3,3],[0,3,0,2],[1,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,4,0,2],[1,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,0,3],[1,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,0,2],[2,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,0,2],[1,3,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,0,2],[1,2,3,1]],[[0,0,2,0],[2,3,3,2],[0,3,0,2],[1,2,2,2]],[[0,0,2,0],[2,3,4,2],[0,3,1,2],[1,1,2,1]],[[0,0,2,0],[2,3,3,3],[0,3,1,2],[1,1,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,1,3],[1,1,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,1,2],[1,1,3,1]],[[0,0,2,0],[2,3,3,2],[0,3,1,2],[1,1,2,2]],[[0,0,2,0],[2,3,3,2],[0,4,2,0],[1,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,2,0],[2,2,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,2,0],[1,3,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,2,0],[1,2,3,1]],[[0,0,2,0],[2,3,3,2],[0,3,2,0],[1,2,2,2]],[[0,0,2,0],[2,3,3,2],[0,4,2,1],[1,2,2,0]],[[0,0,2,0],[2,3,3,2],[0,3,2,1],[2,2,2,0]],[[0,0,2,0],[2,3,3,2],[0,3,2,1],[1,3,2,0]],[[0,0,2,0],[2,3,3,2],[0,3,2,1],[1,2,3,0]],[[0,0,2,0],[2,3,4,2],[0,3,2,2],[1,0,2,1]],[[0,0,2,0],[2,3,3,3],[0,3,2,2],[1,0,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,2,3],[1,0,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,2,2],[1,0,2,2]],[[0,0,2,0],[2,3,4,2],[0,3,2,2],[1,1,1,1]],[[0,0,2,0],[2,3,3,3],[0,3,2,2],[1,1,1,1]],[[0,0,2,0],[2,3,3,2],[0,3,2,3],[1,1,1,1]],[[0,0,2,0],[2,3,3,2],[0,3,2,2],[1,1,1,2]],[[0,0,2,0],[2,3,4,2],[0,3,2,2],[1,1,2,0]],[[0,0,2,0],[2,3,3,3],[0,3,2,2],[1,1,2,0]],[[0,0,2,0],[2,3,3,2],[0,3,2,3],[1,1,2,0]],[[0,0,2,0],[2,3,4,2],[0,3,2,2],[1,2,0,1]],[[0,0,2,0],[2,3,3,3],[0,3,2,2],[1,2,0,1]],[[0,0,2,0],[2,3,3,2],[0,3,2,3],[1,2,0,1]],[[0,0,2,0],[2,3,3,2],[0,3,2,2],[1,2,0,2]],[[0,0,2,0],[2,3,4,2],[0,3,2,2],[1,2,1,0]],[[0,0,2,0],[2,3,3,3],[0,3,2,2],[1,2,1,0]],[[0,0,2,0],[2,3,3,2],[0,3,2,3],[1,2,1,0]],[[0,0,2,0],[2,3,4,2],[0,3,3,0],[1,1,2,1]],[[0,0,2,0],[2,3,3,3],[0,3,3,0],[1,1,2,1]],[[0,0,2,0],[2,3,3,2],[0,4,3,0],[1,1,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,4,0],[1,1,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,3,0],[1,1,3,1]],[[0,0,2,0],[2,3,3,2],[0,3,3,0],[1,1,2,2]],[[0,0,2,0],[2,3,4,2],[0,3,3,0],[1,2,1,1]],[[0,0,2,0],[2,3,3,3],[0,3,3,0],[1,2,1,1]],[[0,0,2,0],[2,3,3,2],[0,4,3,0],[1,2,1,1]],[[0,0,2,0],[2,3,3,2],[0,3,4,0],[1,2,1,1]],[[0,0,2,0],[2,3,3,2],[0,3,3,0],[2,2,1,1]],[[0,0,2,0],[2,3,3,2],[0,3,3,0],[1,3,1,1]],[[0,0,2,0],[2,3,4,2],[0,3,3,1],[1,0,2,1]],[[0,0,2,0],[2,3,3,3],[0,3,3,1],[1,0,2,1]],[[0,0,2,0],[2,3,3,2],[0,3,4,1],[1,0,2,1]],[[0,0,2,0],[2,3,4,2],[0,3,3,1],[1,1,1,1]],[[0,0,2,0],[2,3,3,3],[0,3,3,1],[1,1,1,1]],[[0,0,2,0],[2,3,3,2],[0,4,3,1],[1,1,1,1]],[[0,0,2,0],[2,3,3,2],[0,3,4,1],[1,1,1,1]],[[0,0,2,0],[2,3,4,2],[0,3,3,1],[1,1,2,0]],[[0,0,2,0],[2,3,3,3],[0,3,3,1],[1,1,2,0]],[[0,0,2,0],[2,3,3,2],[0,4,3,1],[1,1,2,0]],[[0,0,2,0],[2,3,3,2],[0,3,4,1],[1,1,2,0]],[[0,0,2,0],[2,3,3,2],[0,3,3,1],[1,1,3,0]],[[0,0,2,0],[2,3,4,2],[0,3,3,1],[1,2,0,1]],[[0,0,2,0],[2,3,3,3],[0,3,3,1],[1,2,0,1]],[[0,0,2,0],[2,3,3,2],[0,4,3,1],[1,2,0,1]],[[0,0,2,0],[2,3,3,2],[0,3,4,1],[1,2,0,1]],[[0,0,2,0],[2,3,3,2],[0,3,3,1],[2,2,0,1]],[[0,0,2,0],[2,3,3,2],[0,3,3,1],[1,3,0,1]],[[0,0,2,0],[2,3,4,2],[0,3,3,1],[1,2,1,0]],[[0,0,2,0],[2,3,3,3],[0,3,3,1],[1,2,1,0]],[[0,0,2,0],[2,3,3,2],[0,4,3,1],[1,2,1,0]],[[0,0,2,0],[2,3,3,2],[0,3,4,1],[1,2,1,0]],[[0,0,2,0],[2,3,3,2],[0,3,3,1],[2,2,1,0]],[[0,0,2,0],[2,3,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,2,1],[3,3,3,1],[2,1,0,2],[1,1,1,0]],[[1,2,2,2],[2,3,3,1],[2,1,0,2],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[2,1,0,2],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[2,1,0,2],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[2,1,0,2],[1,1,1,0]],[[1,2,2,1],[3,3,3,1],[2,1,0,2],[1,1,0,1]],[[1,2,2,2],[2,3,3,1],[2,1,0,2],[1,1,0,1]],[[0,0,2,0],[2,3,4,2],[0,3,3,2],[1,1,0,1]],[[0,0,2,0],[2,3,3,3],[0,3,3,2],[1,1,0,1]],[[0,0,2,0],[2,3,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,3,1],[2,3,3,1],[2,1,0,2],[1,1,0,1]],[[1,3,2,1],[2,3,3,1],[2,1,0,2],[1,1,0,1]],[[2,2,2,1],[2,3,3,1],[2,1,0,2],[1,1,0,1]],[[1,2,2,1],[3,3,3,1],[2,1,0,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,1],[2,1,0,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,1],[2,1,0,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,1],[2,1,0,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,1],[2,1,0,2],[1,0,2,0]],[[1,2,2,1],[3,3,3,1],[2,1,0,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,1],[2,1,0,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[2,1,0,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[2,1,0,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[2,1,0,2],[1,0,1,1]],[[1,2,2,1],[3,3,3,1],[2,1,0,2],[0,2,1,0]],[[1,2,2,2],[2,3,3,1],[2,1,0,2],[0,2,1,0]],[[1,2,3,1],[2,3,3,1],[2,1,0,2],[0,2,1,0]],[[1,3,2,1],[2,3,3,1],[2,1,0,2],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[2,1,0,2],[0,2,1,0]],[[1,2,2,1],[3,3,3,1],[2,1,0,2],[0,2,0,1]],[[1,2,2,2],[2,3,3,1],[2,1,0,2],[0,2,0,1]],[[0,0,2,0],[2,3,4,2],[1,2,1,2],[0,2,2,1]],[[0,0,2,0],[2,3,3,3],[1,2,1,2],[0,2,2,1]],[[0,0,2,0],[2,3,3,2],[1,2,1,3],[0,2,2,1]],[[0,0,2,0],[2,3,3,2],[1,2,1,2],[0,3,2,1]],[[0,0,2,0],[2,3,3,2],[1,2,1,2],[0,2,3,1]],[[0,0,2,0],[2,3,3,2],[1,2,1,2],[0,2,2,2]],[[0,0,2,0],[2,3,4,2],[1,2,2,2],[0,2,1,1]],[[0,0,2,0],[2,3,3,3],[1,2,2,2],[0,2,1,1]],[[0,0,2,0],[2,3,3,2],[1,2,2,3],[0,2,1,1]],[[0,0,2,0],[2,3,3,2],[1,2,2,2],[0,2,1,2]],[[0,0,2,0],[2,3,4,2],[1,2,2,2],[0,2,2,0]],[[0,0,2,0],[2,3,3,3],[1,2,2,2],[0,2,2,0]],[[0,0,2,0],[2,3,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,3,1],[2,3,3,1],[2,1,0,2],[0,2,0,1]],[[1,3,2,1],[2,3,3,1],[2,1,0,2],[0,2,0,1]],[[2,2,2,1],[2,3,3,1],[2,1,0,2],[0,2,0,1]],[[0,0,2,0],[2,3,4,2],[1,2,3,0],[0,2,2,1]],[[0,0,2,0],[2,3,3,3],[1,2,3,0],[0,2,2,1]],[[0,0,2,0],[2,3,3,2],[1,2,4,0],[0,2,2,1]],[[0,0,2,0],[2,3,3,2],[1,2,3,0],[0,3,2,1]],[[0,0,2,0],[2,3,3,2],[1,2,3,0],[0,2,3,1]],[[0,0,2,0],[2,3,3,2],[1,2,3,0],[0,2,2,2]],[[0,0,2,0],[2,3,4,2],[1,2,3,1],[0,2,1,1]],[[0,0,2,0],[2,3,3,3],[1,2,3,1],[0,2,1,1]],[[0,0,2,0],[2,3,3,2],[1,2,4,1],[0,2,1,1]],[[0,0,2,0],[2,3,4,2],[1,2,3,1],[0,2,2,0]],[[0,0,2,0],[2,3,3,3],[1,2,3,1],[0,2,2,0]],[[0,0,2,0],[2,3,3,2],[1,2,4,1],[0,2,2,0]],[[0,0,2,0],[2,3,3,2],[1,2,3,1],[0,3,2,0]],[[0,0,2,0],[2,3,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[3,3,3,1],[2,1,0,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,1],[2,1,0,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,1],[2,1,0,2],[0,1,2,0]],[[1,3,2,1],[2,3,3,1],[2,1,0,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,1],[2,1,0,2],[0,1,2,0]],[[1,2,2,1],[3,3,3,1],[2,1,0,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,1],[2,1,0,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,1],[2,1,0,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,1],[2,1,0,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,1],[2,1,0,2],[0,1,1,1]],[[1,2,2,1],[3,3,3,1],[2,1,0,1],[1,1,2,0]],[[1,2,2,2],[2,3,3,1],[2,1,0,1],[1,1,2,0]],[[1,2,3,1],[2,3,3,1],[2,1,0,1],[1,1,2,0]],[[1,3,2,1],[2,3,3,1],[2,1,0,1],[1,1,2,0]],[[2,2,2,1],[2,3,3,1],[2,1,0,1],[1,1,2,0]],[[0,0,2,0],[2,3,4,2],[1,3,0,2],[0,2,2,1]],[[0,0,2,0],[2,3,3,3],[1,3,0,2],[0,2,2,1]],[[0,0,2,0],[2,3,3,2],[1,4,0,2],[0,2,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,0,3],[0,2,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,0,2],[0,3,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,0,2],[0,2,3,1]],[[0,0,2,0],[2,3,3,2],[1,3,0,2],[0,2,2,2]],[[0,0,2,0],[2,3,4,2],[1,3,1,2],[0,1,2,1]],[[0,0,2,0],[2,3,3,3],[1,3,1,2],[0,1,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,1,3],[0,1,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,1,2],[0,1,3,1]],[[0,0,2,0],[2,3,3,2],[1,3,1,2],[0,1,2,2]],[[0,0,2,0],[2,3,4,2],[1,3,1,2],[1,0,2,1]],[[0,0,2,0],[2,3,3,3],[1,3,1,2],[1,0,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,1,3],[1,0,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,1,2],[1,0,3,1]],[[0,0,2,0],[2,3,3,2],[1,3,1,2],[1,0,2,2]],[[1,2,2,1],[3,3,3,1],[2,1,0,1],[0,2,2,0]],[[1,2,2,2],[2,3,3,1],[2,1,0,1],[0,2,2,0]],[[1,2,3,1],[2,3,3,1],[2,1,0,1],[0,2,2,0]],[[1,3,2,1],[2,3,3,1],[2,1,0,1],[0,2,2,0]],[[2,2,2,1],[2,3,3,1],[2,1,0,1],[0,2,2,0]],[[0,0,2,0],[2,3,3,2],[1,4,2,0],[0,2,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,0],[0,3,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,0],[0,2,3,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,0],[0,2,2,2]],[[0,0,2,0],[2,3,3,2],[1,4,2,1],[0,2,2,0]],[[0,0,2,0],[2,3,3,2],[1,3,2,1],[0,3,2,0]],[[0,0,2,0],[2,3,3,2],[1,3,2,1],[0,2,3,0]],[[0,0,2,0],[2,3,4,2],[1,3,2,2],[0,0,2,1]],[[0,0,2,0],[2,3,3,3],[1,3,2,2],[0,0,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,3],[0,0,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,2],[0,0,2,2]],[[0,0,2,0],[2,3,4,2],[1,3,2,2],[0,1,1,1]],[[0,0,2,0],[2,3,3,3],[1,3,2,2],[0,1,1,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,3],[0,1,1,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,2],[0,1,1,2]],[[0,0,2,0],[2,3,4,2],[1,3,2,2],[0,1,2,0]],[[0,0,2,0],[2,3,3,3],[1,3,2,2],[0,1,2,0]],[[0,0,2,0],[2,3,3,2],[1,3,2,3],[0,1,2,0]],[[0,0,2,0],[2,3,4,2],[1,3,2,2],[0,2,0,1]],[[0,0,2,0],[2,3,3,3],[1,3,2,2],[0,2,0,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,3],[0,2,0,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,2],[0,2,0,2]],[[0,0,2,0],[2,3,4,2],[1,3,2,2],[0,2,1,0]],[[0,0,2,0],[2,3,3,3],[1,3,2,2],[0,2,1,0]],[[0,0,2,0],[2,3,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,2,1],[3,3,3,1],[2,1,0,0],[1,1,2,1]],[[1,2,2,2],[2,3,3,1],[2,1,0,0],[1,1,2,1]],[[1,2,3,1],[2,3,3,1],[2,1,0,0],[1,1,2,1]],[[1,3,2,1],[2,3,3,1],[2,1,0,0],[1,1,2,1]],[[2,2,2,1],[2,3,3,1],[2,1,0,0],[1,1,2,1]],[[0,0,2,0],[2,3,4,2],[1,3,2,2],[1,0,1,1]],[[0,0,2,0],[2,3,3,3],[1,3,2,2],[1,0,1,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,3],[1,0,1,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,2],[1,0,1,2]],[[0,0,2,0],[2,3,4,2],[1,3,2,2],[1,0,2,0]],[[0,0,2,0],[2,3,3,3],[1,3,2,2],[1,0,2,0]],[[0,0,2,0],[2,3,3,2],[1,3,2,3],[1,0,2,0]],[[0,0,2,0],[2,3,4,2],[1,3,2,2],[1,1,0,1]],[[0,0,2,0],[2,3,3,3],[1,3,2,2],[1,1,0,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,3],[1,1,0,1]],[[0,0,2,0],[2,3,3,2],[1,3,2,2],[1,1,0,2]],[[0,0,2,0],[2,3,4,2],[1,3,2,2],[1,1,1,0]],[[0,0,2,0],[2,3,3,3],[1,3,2,2],[1,1,1,0]],[[0,0,2,0],[2,3,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,1],[3,3,3,1],[2,1,0,0],[0,2,2,1]],[[1,2,2,2],[2,3,3,1],[2,1,0,0],[0,2,2,1]],[[1,2,3,1],[2,3,3,1],[2,1,0,0],[0,2,2,1]],[[1,3,2,1],[2,3,3,1],[2,1,0,0],[0,2,2,1]],[[2,2,2,1],[2,3,3,1],[2,1,0,0],[0,2,2,1]],[[1,2,2,1],[3,3,3,1],[2,0,3,2],[1,0,0,0]],[[1,2,2,2],[2,3,3,1],[2,0,3,2],[1,0,0,0]],[[1,2,3,1],[2,3,3,1],[2,0,3,2],[1,0,0,0]],[[0,0,2,0],[2,3,4,2],[1,3,3,0],[0,1,2,1]],[[0,0,2,0],[2,3,3,3],[1,3,3,0],[0,1,2,1]],[[0,0,2,0],[2,3,3,2],[1,4,3,0],[0,1,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,4,0],[0,1,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,3,0],[0,1,3,1]],[[0,0,2,0],[2,3,3,2],[1,3,3,0],[0,1,2,2]],[[0,0,2,0],[2,3,4,2],[1,3,3,0],[0,2,1,1]],[[0,0,2,0],[2,3,3,3],[1,3,3,0],[0,2,1,1]],[[0,0,2,0],[2,3,3,2],[1,4,3,0],[0,2,1,1]],[[0,0,2,0],[2,3,3,2],[1,3,4,0],[0,2,1,1]],[[0,0,2,0],[2,3,3,2],[1,3,3,0],[0,3,1,1]],[[0,0,2,0],[2,3,4,2],[1,3,3,0],[1,0,2,1]],[[0,0,2,0],[2,3,3,3],[1,3,3,0],[1,0,2,1]],[[0,0,2,0],[2,3,3,2],[1,4,3,0],[1,0,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,4,0],[1,0,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,3,0],[1,0,3,1]],[[0,0,2,0],[2,3,3,2],[1,3,3,0],[1,0,2,2]],[[0,0,2,0],[2,3,4,2],[1,3,3,0],[1,1,1,1]],[[0,0,2,0],[2,3,3,3],[1,3,3,0],[1,1,1,1]],[[0,0,2,0],[2,3,3,2],[1,4,3,0],[1,1,1,1]],[[0,0,2,0],[2,3,3,2],[1,3,4,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,1],[2,0,3,2],[1,0,0,0]],[[2,2,2,1],[2,3,3,1],[2,0,3,2],[1,0,0,0]],[[0,0,2,0],[2,3,4,2],[1,3,3,1],[0,0,2,1]],[[0,0,2,0],[2,3,3,3],[1,3,3,1],[0,0,2,1]],[[0,0,2,0],[2,3,3,2],[1,3,4,1],[0,0,2,1]],[[0,0,2,0],[2,3,4,2],[1,3,3,1],[0,1,1,1]],[[0,0,2,0],[2,3,3,3],[1,3,3,1],[0,1,1,1]],[[0,0,2,0],[2,3,3,2],[1,4,3,1],[0,1,1,1]],[[0,0,2,0],[2,3,3,2],[1,3,4,1],[0,1,1,1]],[[0,0,2,0],[2,3,4,2],[1,3,3,1],[0,1,2,0]],[[0,0,2,0],[2,3,3,3],[1,3,3,1],[0,1,2,0]],[[0,0,2,0],[2,3,3,2],[1,4,3,1],[0,1,2,0]],[[0,0,2,0],[2,3,3,2],[1,3,4,1],[0,1,2,0]],[[0,0,2,0],[2,3,3,2],[1,3,3,1],[0,1,3,0]],[[0,0,2,0],[2,3,4,2],[1,3,3,1],[0,2,0,1]],[[0,0,2,0],[2,3,3,3],[1,3,3,1],[0,2,0,1]],[[0,0,2,0],[2,3,3,2],[1,4,3,1],[0,2,0,1]],[[0,0,2,0],[2,3,3,2],[1,3,4,1],[0,2,0,1]],[[0,0,2,0],[2,3,3,2],[1,3,3,1],[0,3,0,1]],[[0,0,2,0],[2,3,4,2],[1,3,3,1],[0,2,1,0]],[[0,0,2,0],[2,3,3,3],[1,3,3,1],[0,2,1,0]],[[0,0,2,0],[2,3,3,2],[1,4,3,1],[0,2,1,0]],[[0,0,2,0],[2,3,3,2],[1,3,4,1],[0,2,1,0]],[[0,0,2,0],[2,3,3,2],[1,3,3,1],[0,3,1,0]],[[0,0,2,0],[2,3,4,2],[1,3,3,1],[1,0,1,1]],[[0,0,2,0],[2,3,3,3],[1,3,3,1],[1,0,1,1]],[[0,0,2,0],[2,3,3,2],[1,4,3,1],[1,0,1,1]],[[0,0,2,0],[2,3,3,2],[1,3,4,1],[1,0,1,1]],[[0,0,2,0],[2,3,4,2],[1,3,3,1],[1,0,2,0]],[[0,0,2,0],[2,3,3,3],[1,3,3,1],[1,0,2,0]],[[0,0,2,0],[2,3,3,2],[1,4,3,1],[1,0,2,0]],[[0,0,2,0],[2,3,3,2],[1,3,4,1],[1,0,2,0]],[[0,0,2,0],[2,3,3,2],[1,3,3,1],[1,0,3,0]],[[0,0,2,0],[2,3,4,2],[1,3,3,1],[1,1,0,1]],[[0,0,2,0],[2,3,3,3],[1,3,3,1],[1,1,0,1]],[[0,0,2,0],[2,3,3,2],[1,4,3,1],[1,1,0,1]],[[0,0,2,0],[2,3,3,2],[1,3,4,1],[1,1,0,1]],[[0,0,2,0],[2,3,4,2],[1,3,3,1],[1,1,1,0]],[[0,0,2,0],[2,3,3,3],[1,3,3,1],[1,1,1,0]],[[0,0,2,0],[2,3,3,2],[1,4,3,1],[1,1,1,0]],[[0,0,2,0],[2,3,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,3,4,1],[2,0,3,2],[0,0,0,1]],[[1,2,2,2],[2,3,3,1],[2,0,3,2],[0,0,0,1]],[[1,2,3,1],[2,3,3,1],[2,0,3,2],[0,0,0,1]],[[1,3,2,1],[2,3,3,1],[2,0,3,2],[0,0,0,1]],[[2,2,2,1],[2,3,3,1],[2,0,3,2],[0,0,0,1]],[[0,0,2,0],[2,3,4,2],[1,3,3,2],[0,1,0,1]],[[0,0,2,0],[2,3,3,3],[1,3,3,2],[0,1,0,1]],[[0,0,2,0],[2,3,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,1],[3,3,3,1],[2,0,3,1],[1,1,0,0]],[[1,2,2,2],[2,3,3,1],[2,0,3,1],[1,1,0,0]],[[1,2,3,1],[2,3,3,1],[2,0,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,3,1],[2,0,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,3,1],[2,0,3,1],[1,1,0,0]],[[1,2,2,1],[3,3,3,1],[2,0,3,1],[1,0,1,0]],[[1,2,2,2],[2,3,3,1],[2,0,3,1],[1,0,1,0]],[[1,2,3,1],[2,3,3,1],[2,0,3,1],[1,0,1,0]],[[1,3,2,1],[2,3,3,1],[2,0,3,1],[1,0,1,0]],[[2,2,2,1],[2,3,3,1],[2,0,3,1],[1,0,1,0]],[[1,2,2,1],[3,3,3,1],[2,0,3,1],[1,0,0,1]],[[1,2,2,2],[2,3,3,1],[2,0,3,1],[1,0,0,1]],[[1,2,3,1],[2,3,3,1],[2,0,3,1],[1,0,0,1]],[[1,3,2,1],[2,3,3,1],[2,0,3,1],[1,0,0,1]],[[0,0,2,0],[2,3,4,2],[1,3,3,2],[1,0,0,1]],[[0,0,2,0],[2,3,3,3],[1,3,3,2],[1,0,0,1]],[[0,0,2,0],[2,3,3,2],[1,3,3,3],[1,0,0,1]],[[2,2,2,1],[2,3,3,1],[2,0,3,1],[1,0,0,1]],[[1,2,2,1],[3,3,3,1],[2,0,3,1],[0,2,0,0]],[[1,2,2,2],[2,3,3,1],[2,0,3,1],[0,2,0,0]],[[1,2,3,1],[2,3,3,1],[2,0,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,3,1],[2,0,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,3,1],[2,0,3,1],[0,2,0,0]],[[1,2,2,1],[2,3,4,1],[2,0,3,1],[0,0,2,0]],[[1,2,2,2],[2,3,3,1],[2,0,3,1],[0,0,2,0]],[[1,2,3,1],[2,3,3,1],[2,0,3,1],[0,0,2,0]],[[1,3,2,1],[2,3,3,1],[2,0,3,1],[0,0,2,0]],[[2,2,2,1],[2,3,3,1],[2,0,3,1],[0,0,2,0]],[[1,2,2,1],[2,3,4,1],[2,0,3,1],[0,0,1,1]],[[1,2,2,2],[2,3,3,1],[2,0,3,1],[0,0,1,1]],[[1,2,3,1],[2,3,3,1],[2,0,3,1],[0,0,1,1]],[[1,3,2,1],[2,3,3,1],[2,0,3,1],[0,0,1,1]],[[2,2,2,1],[2,3,3,1],[2,0,3,1],[0,0,1,1]],[[1,2,2,1],[2,3,4,1],[2,0,3,0],[0,0,2,1]],[[1,2,2,2],[2,3,3,1],[2,0,3,0],[0,0,2,1]],[[1,2,3,1],[2,3,3,1],[2,0,3,0],[0,0,2,1]],[[1,3,2,1],[2,3,3,1],[2,0,3,0],[0,0,2,1]],[[2,2,2,1],[2,3,3,1],[2,0,3,0],[0,0,2,1]],[[1,2,2,1],[3,3,3,1],[2,0,2,2],[1,0,0,1]],[[1,2,2,2],[2,3,3,1],[2,0,2,2],[1,0,0,1]],[[1,2,3,1],[2,3,3,1],[2,0,2,2],[1,0,0,1]],[[1,3,2,1],[2,3,3,1],[2,0,2,2],[1,0,0,1]],[[2,2,2,1],[2,3,3,1],[2,0,2,2],[1,0,0,1]],[[1,2,2,1],[2,3,4,1],[2,0,2,2],[0,0,2,0]],[[1,2,2,2],[2,3,3,1],[2,0,2,2],[0,0,2,0]],[[1,2,3,1],[2,3,3,1],[2,0,2,2],[0,0,2,0]],[[1,3,2,1],[2,3,3,1],[2,0,2,2],[0,0,2,0]],[[2,2,2,1],[2,3,3,1],[2,0,2,2],[0,0,2,0]],[[1,2,2,1],[2,3,4,1],[2,0,2,2],[0,0,1,1]],[[1,2,2,2],[2,3,3,1],[2,0,2,2],[0,0,1,1]],[[1,2,3,1],[2,3,3,1],[2,0,2,2],[0,0,1,1]],[[1,3,2,1],[2,3,3,1],[2,0,2,2],[0,0,1,1]],[[2,2,2,1],[2,3,3,1],[2,0,2,2],[0,0,1,1]],[[1,2,2,1],[3,3,3,1],[2,0,2,1],[1,1,1,0]],[[1,2,2,2],[2,3,3,1],[2,0,2,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[2,0,2,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[2,0,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[2,0,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,3,1],[2,0,2,1],[1,1,0,1]],[[1,2,2,2],[2,3,3,1],[2,0,2,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,1],[2,0,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,1],[2,0,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,1],[2,0,2,1],[1,1,0,1]],[[1,2,2,1],[3,3,3,1],[2,0,2,1],[1,0,2,0]],[[1,2,2,2],[2,3,3,1],[2,0,2,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,1],[2,0,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,1],[2,0,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,3,1],[2,0,2,1],[1,0,2,0]],[[1,2,2,1],[3,3,3,1],[2,0,2,1],[1,0,1,1]],[[1,2,2,2],[2,3,3,1],[2,0,2,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[2,0,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[2,0,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[2,0,2,1],[1,0,1,1]],[[1,2,2,1],[3,3,3,1],[2,0,2,1],[0,2,1,0]],[[1,2,2,2],[2,3,3,1],[2,0,2,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,1],[2,0,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,1],[2,0,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[2,0,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,3,1],[2,0,2,1],[0,2,0,1]],[[1,2,2,2],[2,3,3,1],[2,0,2,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,1],[2,0,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,1],[2,0,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,1],[2,0,2,1],[0,2,0,1]],[[1,2,2,1],[3,3,3,1],[2,0,2,1],[0,1,2,0]],[[1,2,2,2],[2,3,3,1],[2,0,2,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,1],[2,0,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,3,1],[2,0,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,3,1],[2,0,2,1],[0,1,2,0]],[[1,2,2,1],[3,3,3,1],[2,0,2,1],[0,1,1,1]],[[1,2,2,2],[2,3,3,1],[2,0,2,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,1],[2,0,2,1],[0,1,1,1]],[[1,3,2,1],[2,3,3,1],[2,0,2,1],[0,1,1,1]],[[2,2,2,1],[2,3,3,1],[2,0,2,1],[0,1,1,1]],[[1,2,2,1],[3,3,3,1],[2,0,2,0],[1,1,1,1]],[[1,2,2,2],[2,3,3,1],[2,0,2,0],[1,1,1,1]],[[1,2,3,1],[2,3,3,1],[2,0,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,1],[2,0,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,3,1],[2,0,2,0],[1,1,1,1]],[[1,2,2,1],[3,3,3,1],[2,0,2,0],[1,0,2,1]],[[1,2,2,2],[2,3,3,1],[2,0,2,0],[1,0,2,1]],[[1,2,3,1],[2,3,3,1],[2,0,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,3,1],[2,0,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,3,1],[2,0,2,0],[1,0,2,1]],[[1,2,2,1],[3,3,3,1],[2,0,2,0],[0,2,1,1]],[[1,2,2,2],[2,3,3,1],[2,0,2,0],[0,2,1,1]],[[1,2,3,1],[2,3,3,1],[2,0,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,1],[2,0,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,1],[2,0,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,3,1],[2,0,2,0],[0,1,2,1]],[[1,2,2,2],[2,3,3,1],[2,0,2,0],[0,1,2,1]],[[1,2,3,1],[2,3,3,1],[2,0,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,3,1],[2,0,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,3,1],[2,0,2,0],[0,1,2,1]],[[1,2,2,1],[3,3,3,1],[2,0,1,2],[1,1,1,0]],[[1,2,2,2],[2,3,3,1],[2,0,1,2],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[2,0,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[2,0,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[2,0,1,2],[1,1,1,0]],[[1,2,2,1],[3,3,3,1],[2,0,1,2],[1,1,0,1]],[[1,2,2,2],[2,3,3,1],[2,0,1,2],[1,1,0,1]],[[1,2,3,1],[2,3,3,1],[2,0,1,2],[1,1,0,1]],[[1,3,2,1],[2,3,3,1],[2,0,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,3,1],[2,0,1,2],[1,1,0,1]],[[1,2,2,1],[3,3,3,1],[2,0,1,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,1],[2,0,1,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,1],[2,0,1,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,1],[2,0,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,1],[2,0,1,2],[1,0,2,0]],[[1,2,2,1],[3,3,3,1],[2,0,1,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,1],[2,0,1,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[2,0,1,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[2,0,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[2,0,1,2],[1,0,1,1]],[[1,2,2,1],[3,3,3,1],[2,0,1,2],[0,2,1,0]],[[1,2,2,2],[2,3,3,1],[2,0,1,2],[0,2,1,0]],[[1,2,3,1],[2,3,3,1],[2,0,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,3,1],[2,0,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[2,0,1,2],[0,2,1,0]],[[1,2,2,1],[3,3,3,1],[2,0,1,2],[0,2,0,1]],[[1,2,2,2],[2,3,3,1],[2,0,1,2],[0,2,0,1]],[[1,2,3,1],[2,3,3,1],[2,0,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,3,1],[2,0,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,3,1],[2,0,1,2],[0,2,0,1]],[[1,2,2,1],[3,3,3,1],[2,0,1,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,1],[2,0,1,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,1],[2,0,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,3,1],[2,0,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,1],[2,0,1,2],[0,1,2,0]],[[1,2,2,1],[3,3,3,1],[2,0,1,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,1],[2,0,1,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,1],[2,0,1,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,1],[2,0,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,1],[2,0,1,2],[0,1,1,1]],[[1,2,2,1],[3,3,3,1],[2,0,1,1],[1,2,1,0]],[[1,2,2,2],[2,3,3,1],[2,0,1,1],[1,2,1,0]],[[1,2,3,1],[2,3,3,1],[2,0,1,1],[1,2,1,0]],[[1,3,2,1],[2,3,3,1],[2,0,1,1],[1,2,1,0]],[[2,2,2,1],[2,3,3,1],[2,0,1,1],[1,2,1,0]],[[1,2,2,1],[3,3,3,1],[2,0,1,1],[1,2,0,1]],[[1,2,2,2],[2,3,3,1],[2,0,1,1],[1,2,0,1]],[[1,2,3,1],[2,3,3,1],[2,0,1,1],[1,2,0,1]],[[1,3,2,1],[2,3,3,1],[2,0,1,1],[1,2,0,1]],[[2,2,2,1],[2,3,3,1],[2,0,1,1],[1,2,0,1]],[[1,2,2,1],[3,3,3,1],[2,0,1,0],[1,2,1,1]],[[1,2,2,2],[2,3,3,1],[2,0,1,0],[1,2,1,1]],[[1,2,3,1],[2,3,3,1],[2,0,1,0],[1,2,1,1]],[[1,3,2,1],[2,3,3,1],[2,0,1,0],[1,2,1,1]],[[2,2,2,1],[2,3,3,1],[2,0,1,0],[1,2,1,1]],[[1,2,2,1],[3,3,3,1],[2,0,0,2],[1,2,1,0]],[[1,2,2,2],[2,3,3,1],[2,0,0,2],[1,2,1,0]],[[1,2,3,1],[2,3,3,1],[2,0,0,2],[1,2,1,0]],[[1,3,2,1],[2,3,3,1],[2,0,0,2],[1,2,1,0]],[[2,2,2,1],[2,3,3,1],[2,0,0,2],[1,2,1,0]],[[1,2,2,1],[3,3,3,1],[2,0,0,2],[1,2,0,1]],[[1,2,2,2],[2,3,3,1],[2,0,0,2],[1,2,0,1]],[[1,2,3,1],[2,3,3,1],[2,0,0,2],[1,2,0,1]],[[1,3,2,1],[2,3,3,1],[2,0,0,2],[1,2,0,1]],[[2,2,2,1],[2,3,3,1],[2,0,0,2],[1,2,0,1]],[[1,2,2,1],[3,3,3,1],[2,0,0,2],[1,0,2,1]],[[1,2,2,2],[2,3,3,1],[2,0,0,2],[1,0,2,1]],[[1,2,3,1],[2,3,3,1],[2,0,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,3,1],[2,0,0,2],[1,0,2,1]],[[2,2,2,1],[2,3,3,1],[2,0,0,2],[1,0,2,1]],[[1,2,2,1],[3,3,3,1],[2,0,0,2],[0,1,2,1]],[[1,2,2,2],[2,3,3,1],[2,0,0,2],[0,1,2,1]],[[1,2,3,1],[2,3,3,1],[2,0,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,3,1],[2,0,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,3,1],[2,0,0,2],[0,1,2,1]],[[1,2,2,1],[3,3,3,1],[2,0,0,1],[1,2,2,0]],[[1,2,2,2],[2,3,3,1],[2,0,0,1],[1,2,2,0]],[[1,2,3,1],[2,3,3,1],[2,0,0,1],[1,2,2,0]],[[1,3,2,1],[2,3,3,1],[2,0,0,1],[1,2,2,0]],[[2,2,2,1],[2,3,3,1],[2,0,0,1],[1,2,2,0]],[[1,2,2,1],[3,3,3,1],[2,0,0,0],[1,2,2,1]],[[1,2,2,2],[2,3,3,1],[2,0,0,0],[1,2,2,1]],[[1,2,3,1],[2,3,3,1],[2,0,0,0],[1,2,2,1]],[[1,3,2,1],[2,3,3,1],[2,0,0,0],[1,2,2,1]],[[2,2,2,1],[2,3,3,1],[2,0,0,0],[1,2,2,1]],[[0,0,2,1],[0,0,2,2],[2,3,3,3],[1,2,2,1]],[[0,0,2,1],[0,0,2,2],[2,3,3,2],[2,2,2,1]],[[0,0,2,1],[0,0,2,2],[2,3,3,2],[1,3,2,1]],[[0,0,2,1],[0,0,2,2],[2,3,3,2],[1,2,3,1]],[[0,0,2,1],[0,0,2,2],[2,3,3,2],[1,2,2,2]],[[0,0,2,2],[0,0,3,2],[1,3,3,2],[1,2,2,1]],[[0,0,2,1],[0,0,3,3],[1,3,3,2],[1,2,2,1]],[[0,0,2,1],[0,0,3,2],[1,3,3,3],[1,2,2,1]],[[0,0,2,1],[0,0,3,2],[1,3,3,2],[1,2,3,1]],[[0,0,2,1],[0,0,3,2],[1,3,3,2],[1,2,2,2]],[[0,0,2,2],[0,0,3,2],[2,2,3,2],[1,2,2,1]],[[0,0,2,1],[0,0,3,3],[2,2,3,2],[1,2,2,1]],[[0,0,2,1],[0,0,3,2],[2,2,3,3],[1,2,2,1]],[[0,0,2,1],[0,0,3,2],[2,2,3,2],[1,2,3,1]],[[0,0,2,1],[0,0,3,2],[2,2,3,2],[1,2,2,2]],[[0,0,2,2],[0,0,3,2],[2,3,2,2],[1,2,2,1]],[[0,0,2,1],[0,0,3,3],[2,3,2,2],[1,2,2,1]],[[0,0,2,1],[0,0,3,2],[2,3,2,3],[1,2,2,1]],[[0,0,2,1],[0,0,3,2],[2,3,2,2],[2,2,2,1]],[[0,0,2,1],[0,0,3,2],[2,3,2,2],[1,3,2,1]],[[0,0,2,1],[0,0,3,2],[2,3,2,2],[1,2,3,1]],[[0,0,2,1],[0,0,3,2],[2,3,2,2],[1,2,2,2]],[[0,0,2,1],[0,0,3,2],[2,3,4,1],[1,2,2,1]],[[0,0,2,1],[0,0,3,2],[2,3,3,1],[2,2,2,1]],[[0,0,2,1],[0,0,3,2],[2,3,3,1],[1,3,2,1]],[[0,0,2,1],[0,0,3,2],[2,3,3,1],[1,2,3,1]],[[0,0,2,1],[0,0,3,2],[2,3,3,1],[1,2,2,2]],[[0,0,2,2],[0,0,3,2],[2,3,3,2],[1,2,1,1]],[[0,0,2,1],[0,0,3,3],[2,3,3,2],[1,2,1,1]],[[0,0,2,1],[0,0,3,2],[2,3,4,2],[1,2,1,1]],[[0,0,2,1],[0,0,3,2],[2,3,3,3],[1,2,1,1]],[[0,0,2,1],[0,0,3,2],[2,3,3,2],[1,2,1,2]],[[0,0,2,2],[0,0,3,2],[2,3,3,2],[1,2,2,0]],[[0,0,2,1],[0,0,3,3],[2,3,3,2],[1,2,2,0]],[[0,0,2,1],[0,0,3,2],[2,3,4,2],[1,2,2,0]],[[0,0,2,1],[0,0,3,2],[2,3,3,3],[1,2,2,0]],[[0,0,2,1],[0,0,3,2],[2,3,3,2],[2,2,2,0]],[[0,0,2,1],[0,0,3,2],[2,3,3,2],[1,3,2,0]],[[0,0,2,1],[0,0,3,2],[2,3,3,2],[1,2,3,0]],[[0,0,2,1],[0,1,1,2],[2,3,3,3],[1,2,2,1]],[[0,0,2,1],[0,1,1,2],[2,3,3,2],[2,2,2,1]],[[0,0,2,1],[0,1,1,2],[2,3,3,2],[1,3,2,1]],[[0,0,2,1],[0,1,1,2],[2,3,3,2],[1,2,3,1]],[[0,0,2,1],[0,1,1,2],[2,3,3,2],[1,2,2,2]],[[0,0,2,2],[0,1,2,2],[2,3,2,2],[1,2,2,1]],[[0,0,2,1],[0,1,2,3],[2,3,2,2],[1,2,2,1]],[[0,0,2,1],[0,1,2,2],[2,3,2,3],[1,2,2,1]],[[0,0,2,1],[0,1,2,2],[2,3,2,2],[2,2,2,1]],[[0,0,2,1],[0,1,2,2],[2,3,2,2],[1,3,2,1]],[[0,0,2,1],[0,1,2,2],[2,3,2,2],[1,2,3,1]],[[0,0,2,1],[0,1,2,2],[2,3,2,2],[1,2,2,2]],[[0,0,2,1],[0,1,2,2],[2,3,4,1],[1,2,2,1]],[[0,0,2,1],[0,1,2,2],[2,3,3,1],[2,2,2,1]],[[0,0,2,1],[0,1,2,2],[2,3,3,1],[1,3,2,1]],[[0,0,2,1],[0,1,2,2],[2,3,3,1],[1,2,3,1]],[[0,0,2,1],[0,1,2,2],[2,3,3,1],[1,2,2,2]],[[0,0,2,2],[0,1,2,2],[2,3,3,2],[1,2,1,1]],[[0,0,2,1],[0,1,2,3],[2,3,3,2],[1,2,1,1]],[[0,0,2,1],[0,1,2,2],[2,3,4,2],[1,2,1,1]],[[0,0,2,1],[0,1,2,2],[2,3,3,3],[1,2,1,1]],[[0,0,2,1],[0,1,2,2],[2,3,3,2],[1,2,1,2]],[[0,0,2,2],[0,1,2,2],[2,3,3,2],[1,2,2,0]],[[0,0,2,1],[0,1,2,3],[2,3,3,2],[1,2,2,0]],[[0,0,2,1],[0,1,2,2],[2,3,4,2],[1,2,2,0]],[[0,0,2,1],[0,1,2,2],[2,3,3,3],[1,2,2,0]],[[0,0,2,1],[0,1,2,2],[2,3,3,2],[2,2,2,0]],[[0,0,2,1],[0,1,2,2],[2,3,3,2],[1,3,2,0]],[[0,0,2,1],[0,1,2,2],[2,3,3,2],[1,2,3,0]],[[0,0,2,1],[0,1,3,0],[2,3,4,2],[1,2,2,1]],[[0,0,2,1],[0,1,3,0],[2,3,3,2],[2,2,2,1]],[[0,0,2,1],[0,1,3,0],[2,3,3,2],[1,3,2,1]],[[0,0,2,1],[0,1,3,0],[2,3,3,2],[1,2,3,1]],[[0,0,2,1],[0,1,3,0],[2,3,3,2],[1,2,2,2]],[[0,0,2,1],[0,1,3,1],[2,3,2,3],[1,2,2,1]],[[0,0,2,1],[0,1,3,1],[2,3,2,2],[2,2,2,1]],[[0,0,2,1],[0,1,3,1],[2,3,2,2],[1,3,2,1]],[[0,0,2,1],[0,1,3,1],[2,3,2,2],[1,2,3,1]],[[0,0,2,1],[0,1,3,1],[2,3,2,2],[1,2,2,2]],[[0,0,2,1],[0,1,3,1],[2,3,4,1],[1,2,2,1]],[[0,0,2,1],[0,1,3,1],[2,3,3,1],[2,2,2,1]],[[0,0,2,1],[0,1,3,1],[2,3,3,1],[1,3,2,1]],[[0,0,2,1],[0,1,3,1],[2,3,3,1],[1,2,3,1]],[[0,0,2,1],[0,1,3,1],[2,3,3,1],[1,2,2,2]],[[0,0,2,1],[0,1,3,1],[2,3,4,2],[1,2,1,1]],[[0,0,2,1],[0,1,3,1],[2,3,3,3],[1,2,1,1]],[[0,0,2,1],[0,1,3,1],[2,3,3,2],[1,2,1,2]],[[0,0,2,1],[0,1,3,1],[2,3,4,2],[1,2,2,0]],[[0,0,2,1],[0,1,3,1],[2,3,3,3],[1,2,2,0]],[[0,0,2,1],[0,1,3,1],[2,3,3,2],[2,2,2,0]],[[0,0,2,1],[0,1,3,1],[2,3,3,2],[1,3,2,0]],[[0,0,2,1],[0,1,3,1],[2,3,3,2],[1,2,3,0]],[[0,0,2,2],[0,1,3,2],[0,3,3,2],[1,2,2,1]],[[0,0,2,1],[0,1,3,3],[0,3,3,2],[1,2,2,1]],[[0,0,2,1],[0,1,3,2],[0,3,3,3],[1,2,2,1]],[[0,0,2,1],[0,1,3,2],[0,3,3,2],[1,2,3,1]],[[0,0,2,1],[0,1,3,2],[0,3,3,2],[1,2,2,2]],[[0,0,2,2],[0,1,3,2],[2,1,3,2],[1,2,2,1]],[[0,0,2,1],[0,1,3,3],[2,1,3,2],[1,2,2,1]],[[0,0,2,1],[0,1,3,2],[2,1,3,3],[1,2,2,1]],[[0,0,2,1],[0,1,3,2],[2,1,3,2],[1,2,3,1]],[[0,0,2,1],[0,1,3,2],[2,1,3,2],[1,2,2,2]],[[0,0,2,2],[0,1,3,2],[2,2,2,2],[1,2,2,1]],[[0,0,2,1],[0,1,3,3],[2,2,2,2],[1,2,2,1]],[[0,0,2,1],[0,1,3,2],[2,2,2,3],[1,2,2,1]],[[0,0,2,1],[0,1,3,2],[2,2,2,2],[2,2,2,1]],[[0,0,2,1],[0,1,3,2],[2,2,2,2],[1,3,2,1]],[[0,0,2,1],[0,1,3,2],[2,2,2,2],[1,2,3,1]],[[0,0,2,1],[0,1,3,2],[2,2,2,2],[1,2,2,2]],[[0,0,2,1],[0,1,3,2],[2,2,4,1],[1,2,2,1]],[[0,0,2,1],[0,1,3,2],[2,2,3,1],[2,2,2,1]],[[0,0,2,1],[0,1,3,2],[2,2,3,1],[1,3,2,1]],[[0,0,2,1],[0,1,3,2],[2,2,3,1],[1,2,3,1]],[[0,0,2,1],[0,1,3,2],[2,2,3,1],[1,2,2,2]],[[0,0,2,2],[0,1,3,2],[2,2,3,2],[1,2,1,1]],[[0,0,2,1],[0,1,3,3],[2,2,3,2],[1,2,1,1]],[[0,0,2,1],[0,1,3,2],[2,2,4,2],[1,2,1,1]],[[0,0,2,1],[0,1,3,2],[2,2,3,3],[1,2,1,1]],[[0,0,2,1],[0,1,3,2],[2,2,3,2],[1,2,1,2]],[[0,0,2,2],[0,1,3,2],[2,2,3,2],[1,2,2,0]],[[0,0,2,1],[0,1,3,3],[2,2,3,2],[1,2,2,0]],[[0,0,2,1],[0,1,3,2],[2,2,4,2],[1,2,2,0]],[[0,0,2,1],[0,1,3,2],[2,2,3,3],[1,2,2,0]],[[0,0,2,1],[0,1,3,2],[2,2,3,2],[2,2,2,0]],[[0,0,2,1],[0,1,3,2],[2,2,3,2],[1,3,2,0]],[[0,0,2,1],[0,1,3,2],[2,2,3,2],[1,2,3,0]],[[0,0,2,2],[0,1,3,2],[2,3,2,2],[1,1,2,1]],[[0,0,2,1],[0,1,3,3],[2,3,2,2],[1,1,2,1]],[[0,0,2,1],[0,1,3,2],[2,3,2,3],[1,1,2,1]],[[0,0,2,1],[0,1,3,2],[2,3,2,2],[1,1,3,1]],[[0,0,2,1],[0,1,3,2],[2,3,2,2],[1,1,2,2]],[[0,0,2,1],[0,1,3,2],[2,3,4,0],[1,2,2,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,0],[2,2,2,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,0],[1,3,2,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,0],[1,2,3,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,0],[1,2,2,2]],[[0,0,2,1],[0,1,3,2],[2,3,4,1],[1,1,2,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,1],[1,1,3,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,1],[1,1,2,2]],[[0,0,2,1],[0,1,3,2],[2,3,4,1],[1,2,2,0]],[[0,0,2,1],[0,1,3,2],[2,3,3,1],[2,2,2,0]],[[0,0,2,1],[0,1,3,2],[2,3,3,1],[1,3,2,0]],[[0,0,2,1],[0,1,3,2],[2,3,3,1],[1,2,3,0]],[[0,0,2,2],[0,1,3,2],[2,3,3,2],[1,0,2,1]],[[0,0,2,1],[0,1,3,3],[2,3,3,2],[1,0,2,1]],[[0,0,2,1],[0,1,3,2],[2,3,4,2],[1,0,2,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,3],[1,0,2,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,2],[1,0,2,2]],[[0,0,2,2],[0,1,3,2],[2,3,3,2],[1,1,1,1]],[[0,0,2,1],[0,1,3,3],[2,3,3,2],[1,1,1,1]],[[0,0,2,1],[0,1,3,2],[2,3,4,2],[1,1,1,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,3],[1,1,1,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,2],[1,1,1,2]],[[0,0,2,2],[0,1,3,2],[2,3,3,2],[1,1,2,0]],[[0,0,2,1],[0,1,3,3],[2,3,3,2],[1,1,2,0]],[[0,0,2,1],[0,1,3,2],[2,3,4,2],[1,1,2,0]],[[0,0,2,1],[0,1,3,2],[2,3,3,3],[1,1,2,0]],[[0,0,2,1],[0,1,3,2],[2,3,3,2],[1,1,3,0]],[[0,0,2,2],[0,1,3,2],[2,3,3,2],[1,2,0,1]],[[0,0,2,1],[0,1,3,3],[2,3,3,2],[1,2,0,1]],[[0,0,2,1],[0,1,3,2],[2,3,4,2],[1,2,0,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,3],[1,2,0,1]],[[0,0,2,1],[0,1,3,2],[2,3,3,2],[1,2,0,2]],[[0,0,2,2],[0,1,3,2],[2,3,3,2],[1,2,1,0]],[[0,0,2,1],[0,1,3,3],[2,3,3,2],[1,2,1,0]],[[0,0,2,1],[0,1,3,2],[2,3,4,2],[1,2,1,0]],[[0,0,2,1],[0,1,3,2],[2,3,3,3],[1,2,1,0]],[[0,0,2,1],[0,2,1,2],[2,2,3,3],[1,2,2,1]],[[0,0,2,1],[0,2,1,2],[2,2,3,2],[2,2,2,1]],[[0,0,2,1],[0,2,1,2],[2,2,3,2],[1,3,2,1]],[[0,0,2,1],[0,2,1,2],[2,2,3,2],[1,2,3,1]],[[0,0,2,1],[0,2,1,2],[2,2,3,2],[1,2,2,2]],[[0,0,2,1],[0,2,1,2],[2,3,3,3],[1,1,2,1]],[[0,0,2,1],[0,2,1,2],[2,3,3,2],[1,1,3,1]],[[0,0,2,1],[0,2,1,2],[2,3,3,2],[1,1,2,2]],[[0,0,2,2],[0,2,2,2],[2,1,3,2],[1,2,2,1]],[[0,0,2,1],[0,2,2,3],[2,1,3,2],[1,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,1,3,3],[1,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,1,3,2],[1,2,3,1]],[[0,0,2,1],[0,2,2,2],[2,1,3,2],[1,2,2,2]],[[0,0,2,2],[0,2,2,2],[2,2,2,2],[1,2,2,1]],[[0,0,2,1],[0,2,2,3],[2,2,2,2],[1,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,2,2,3],[1,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,2,2,2],[2,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,2,2,2],[1,3,2,1]],[[0,0,2,1],[0,2,2,2],[2,2,2,2],[1,2,3,1]],[[0,0,2,1],[0,2,2,2],[2,2,2,2],[1,2,2,2]],[[0,0,2,1],[0,2,2,2],[2,2,4,1],[1,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,2,3,1],[2,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,2,3,1],[1,3,2,1]],[[0,0,2,1],[0,2,2,2],[2,2,3,1],[1,2,3,1]],[[0,0,2,1],[0,2,2,2],[2,2,3,1],[1,2,2,2]],[[0,0,2,2],[0,2,2,2],[2,2,3,2],[1,2,1,1]],[[0,0,2,1],[0,2,2,3],[2,2,3,2],[1,2,1,1]],[[0,0,2,1],[0,2,2,2],[2,2,4,2],[1,2,1,1]],[[0,0,2,1],[0,2,2,2],[2,2,3,3],[1,2,1,1]],[[0,0,2,1],[0,2,2,2],[2,2,3,2],[1,2,1,2]],[[0,0,2,2],[0,2,2,2],[2,2,3,2],[1,2,2,0]],[[0,0,2,1],[0,2,2,3],[2,2,3,2],[1,2,2,0]],[[0,0,2,1],[0,2,2,2],[2,2,4,2],[1,2,2,0]],[[0,0,2,1],[0,2,2,2],[2,2,3,3],[1,2,2,0]],[[0,0,2,1],[0,2,2,2],[2,2,3,2],[2,2,2,0]],[[0,0,2,1],[0,2,2,2],[2,2,3,2],[1,3,2,0]],[[0,0,2,1],[0,2,2,2],[2,2,3,2],[1,2,3,0]],[[0,0,2,2],[0,2,2,2],[2,3,1,2],[1,2,2,1]],[[0,0,2,1],[0,2,2,3],[2,3,1,2],[1,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,4,1,2],[1,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,1,3],[1,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,1,2],[2,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,1,2],[1,3,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,1,2],[1,2,3,1]],[[0,0,2,1],[0,2,2,2],[2,3,1,2],[1,2,2,2]],[[0,0,2,1],[0,2,2,2],[2,4,2,1],[1,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,2,1],[2,2,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,2,1],[1,3,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,2,1],[1,2,3,1]],[[0,0,2,1],[0,2,2,2],[2,3,2,1],[1,2,2,2]],[[0,0,2,2],[0,2,2,2],[2,3,2,2],[1,1,2,1]],[[0,0,2,1],[0,2,2,3],[2,3,2,2],[1,1,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,2,3],[1,1,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,2,2],[1,1,3,1]],[[0,0,2,1],[0,2,2,2],[2,3,2,2],[1,1,2,2]],[[0,0,2,1],[0,2,2,2],[2,4,2,2],[1,2,2,0]],[[0,0,2,1],[0,2,2,2],[2,3,2,2],[2,2,2,0]],[[0,0,2,1],[0,2,2,2],[2,3,2,2],[1,3,2,0]],[[0,0,2,1],[0,2,2,2],[2,3,2,2],[1,2,3,0]],[[0,0,2,1],[0,2,2,2],[2,4,3,1],[1,1,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,4,1],[1,1,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,1],[1,1,3,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,1],[1,1,2,2]],[[0,0,2,1],[0,2,2,2],[2,4,3,1],[1,2,1,1]],[[0,0,2,1],[0,2,2,2],[2,3,4,1],[1,2,1,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,1],[2,2,1,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,1],[1,3,1,1]],[[0,0,2,2],[0,2,2,2],[2,3,3,2],[1,0,2,1]],[[0,0,2,1],[0,2,2,3],[2,3,3,2],[1,0,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,4,2],[1,0,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,3],[1,0,2,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,2],[1,0,2,2]],[[0,0,2,2],[0,2,2,2],[2,3,3,2],[1,1,1,1]],[[0,0,2,1],[0,2,2,3],[2,3,3,2],[1,1,1,1]],[[0,0,2,1],[0,2,2,2],[2,4,3,2],[1,1,1,1]],[[0,0,2,1],[0,2,2,2],[2,3,4,2],[1,1,1,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,3],[1,1,1,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,2],[1,1,1,2]],[[0,0,2,2],[0,2,2,2],[2,3,3,2],[1,1,2,0]],[[0,0,2,1],[0,2,2,3],[2,3,3,2],[1,1,2,0]],[[0,0,2,1],[0,2,2,2],[2,4,3,2],[1,1,2,0]],[[0,0,2,1],[0,2,2,2],[2,3,4,2],[1,1,2,0]],[[0,0,2,1],[0,2,2,2],[2,3,3,3],[1,1,2,0]],[[0,0,2,1],[0,2,2,2],[2,3,3,2],[1,1,3,0]],[[0,0,2,2],[0,2,2,2],[2,3,3,2],[1,2,0,1]],[[0,0,2,1],[0,2,2,3],[2,3,3,2],[1,2,0,1]],[[0,0,2,1],[0,2,2,2],[2,4,3,2],[1,2,0,1]],[[0,0,2,1],[0,2,2,2],[2,3,4,2],[1,2,0,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,3],[1,2,0,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,2],[2,2,0,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,2],[1,3,0,1]],[[0,0,2,1],[0,2,2,2],[2,3,3,2],[1,2,0,2]],[[0,0,2,2],[0,2,2,2],[2,3,3,2],[1,2,1,0]],[[0,0,2,1],[0,2,2,3],[2,3,3,2],[1,2,1,0]],[[0,0,2,1],[0,2,2,2],[2,4,3,2],[1,2,1,0]],[[0,0,2,1],[0,2,2,2],[2,3,4,2],[1,2,1,0]],[[0,0,2,1],[0,2,2,2],[2,3,3,3],[1,2,1,0]],[[0,0,2,1],[0,2,2,2],[2,3,3,2],[2,2,1,0]],[[0,0,2,1],[0,2,2,2],[2,3,3,2],[1,3,1,0]],[[0,0,2,1],[0,2,3,0],[2,2,4,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,0],[2,2,3,2],[2,2,2,1]],[[0,0,2,1],[0,2,3,0],[2,2,3,2],[1,3,2,1]],[[0,0,2,1],[0,2,3,0],[2,2,3,2],[1,2,3,1]],[[0,0,2,1],[0,2,3,0],[2,2,3,2],[1,2,2,2]],[[0,0,2,1],[0,2,3,0],[2,3,4,1],[1,2,2,1]],[[0,0,2,1],[0,2,3,0],[2,3,3,1],[2,2,2,1]],[[0,0,2,1],[0,2,3,0],[2,3,3,1],[1,3,2,1]],[[0,0,2,1],[0,2,3,0],[2,3,3,1],[1,2,3,1]],[[0,0,2,1],[0,2,3,0],[2,3,3,1],[1,2,2,2]],[[0,0,2,1],[0,2,3,0],[2,3,4,2],[1,1,2,1]],[[0,0,2,1],[0,2,3,0],[2,3,3,2],[1,1,3,1]],[[0,0,2,1],[0,2,3,0],[2,3,3,2],[1,1,2,2]],[[0,0,2,1],[0,2,3,0],[2,3,4,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,0],[2,3,3,2],[2,2,2,0]],[[0,0,2,1],[0,2,3,0],[2,3,3,2],[1,3,2,0]],[[0,0,2,1],[0,2,3,0],[2,3,3,2],[1,2,3,0]],[[0,0,2,1],[0,2,3,1],[2,1,3,3],[1,2,2,1]],[[0,0,2,1],[0,2,3,1],[2,1,3,2],[1,2,3,1]],[[0,0,2,1],[0,2,3,1],[2,1,3,2],[1,2,2,2]],[[0,0,2,1],[0,2,3,1],[2,2,2,3],[1,2,2,1]],[[0,0,2,1],[0,2,3,1],[2,2,2,2],[2,2,2,1]],[[0,0,2,1],[0,2,3,1],[2,2,2,2],[1,3,2,1]],[[0,0,2,1],[0,2,3,1],[2,2,2,2],[1,2,3,1]],[[0,0,2,1],[0,2,3,1],[2,2,2,2],[1,2,2,2]],[[0,0,2,1],[0,2,4,1],[2,2,3,1],[1,2,2,1]],[[0,0,2,1],[0,2,3,1],[2,2,4,1],[1,2,2,1]],[[0,0,2,1],[0,2,3,1],[2,2,3,1],[2,2,2,1]],[[0,0,2,1],[0,2,3,1],[2,2,3,1],[1,3,2,1]],[[0,0,2,1],[0,2,3,1],[2,2,3,1],[1,2,3,1]],[[0,0,2,1],[0,2,3,1],[2,2,3,1],[1,2,2,2]],[[0,0,2,1],[0,2,4,1],[2,2,3,2],[1,2,1,1]],[[0,0,2,1],[0,2,3,1],[2,2,4,2],[1,2,1,1]],[[0,0,2,1],[0,2,3,1],[2,2,3,3],[1,2,1,1]],[[0,0,2,1],[0,2,3,1],[2,2,3,2],[1,2,1,2]],[[0,0,2,1],[0,2,4,1],[2,2,3,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,1],[2,2,4,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,1],[2,2,3,3],[1,2,2,0]],[[0,0,2,1],[0,2,3,1],[2,2,3,2],[2,2,2,0]],[[0,0,2,1],[0,2,3,1],[2,2,3,2],[1,3,2,0]],[[0,0,2,1],[0,2,3,1],[2,2,3,2],[1,2,3,0]],[[0,0,2,1],[0,2,3,1],[2,4,1,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,1,3],[1,2,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,1,2],[2,2,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,1,2],[1,3,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,1,2],[1,2,3,1]],[[0,0,2,1],[0,2,3,1],[2,3,1,2],[1,2,2,2]],[[0,0,2,1],[0,2,3,1],[2,4,2,1],[1,2,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,2,1],[2,2,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,2,1],[1,3,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,2,1],[1,2,3,1]],[[0,0,2,1],[0,2,3,1],[2,3,2,1],[1,2,2,2]],[[0,0,2,1],[0,2,3,1],[2,3,2,3],[1,1,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,2,2],[1,1,3,1]],[[0,0,2,1],[0,2,3,1],[2,3,2,2],[1,1,2,2]],[[0,0,2,1],[0,2,3,1],[2,4,2,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,1],[2,3,2,2],[2,2,2,0]],[[0,0,2,1],[0,2,3,1],[2,3,2,2],[1,3,2,0]],[[0,0,2,1],[0,2,3,1],[2,3,2,2],[1,2,3,0]],[[0,0,2,1],[0,2,4,1],[2,3,3,1],[1,1,2,1]],[[0,0,2,1],[0,2,3,1],[2,4,3,1],[1,1,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,4,1],[1,1,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,1],[1,1,3,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,1],[1,1,2,2]],[[0,0,2,1],[0,2,4,1],[2,3,3,1],[1,2,1,1]],[[0,0,2,1],[0,2,3,1],[2,4,3,1],[1,2,1,1]],[[0,0,2,1],[0,2,3,1],[2,3,4,1],[1,2,1,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,1],[2,2,1,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,1],[1,3,1,1]],[[0,0,2,1],[0,2,3,1],[2,3,4,2],[1,0,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,3],[1,0,2,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,2],[1,0,2,2]],[[0,0,2,1],[0,2,4,1],[2,3,3,2],[1,1,1,1]],[[0,0,2,1],[0,2,3,1],[2,4,3,2],[1,1,1,1]],[[0,0,2,1],[0,2,3,1],[2,3,4,2],[1,1,1,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,3],[1,1,1,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,2],[1,1,1,2]],[[0,0,2,1],[0,2,4,1],[2,3,3,2],[1,1,2,0]],[[0,0,2,1],[0,2,3,1],[2,4,3,2],[1,1,2,0]],[[0,0,2,1],[0,2,3,1],[2,3,4,2],[1,1,2,0]],[[0,0,2,1],[0,2,3,1],[2,3,3,3],[1,1,2,0]],[[0,0,2,1],[0,2,3,1],[2,3,3,2],[1,1,3,0]],[[0,0,2,1],[0,2,4,1],[2,3,3,2],[1,2,0,1]],[[0,0,2,1],[0,2,3,1],[2,4,3,2],[1,2,0,1]],[[0,0,2,1],[0,2,3,1],[2,3,4,2],[1,2,0,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,3],[1,2,0,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,2],[2,2,0,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,2],[1,3,0,1]],[[0,0,2,1],[0,2,3,1],[2,3,3,2],[1,2,0,2]],[[0,0,2,1],[0,2,4,1],[2,3,3,2],[1,2,1,0]],[[0,0,2,1],[0,2,3,1],[2,4,3,2],[1,2,1,0]],[[0,0,2,1],[0,2,3,1],[2,3,4,2],[1,2,1,0]],[[0,0,2,1],[0,2,3,1],[2,3,3,3],[1,2,1,0]],[[0,0,2,1],[0,2,3,1],[2,3,3,2],[2,2,1,0]],[[0,0,2,1],[0,2,3,1],[2,3,3,2],[1,3,1,0]],[[0,0,2,2],[0,2,3,2],[0,2,3,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,3],[0,2,3,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[0,2,3,3],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[0,2,3,2],[1,2,3,1]],[[0,0,2,1],[0,2,3,2],[0,2,3,2],[1,2,2,2]],[[0,0,2,2],[0,2,3,2],[0,3,2,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,3],[0,3,2,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[0,3,2,3],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[0,3,2,2],[1,3,2,1]],[[0,0,2,1],[0,2,3,2],[0,3,2,2],[1,2,3,1]],[[0,0,2,1],[0,2,3,2],[0,3,2,2],[1,2,2,2]],[[0,0,2,1],[0,2,3,2],[0,3,4,1],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[0,3,3,1],[1,3,2,1]],[[0,0,2,1],[0,2,3,2],[0,3,3,1],[1,2,3,1]],[[0,0,2,1],[0,2,3,2],[0,3,3,1],[1,2,2,2]],[[0,0,2,2],[0,2,3,2],[0,3,3,2],[1,2,1,1]],[[0,0,2,1],[0,2,3,3],[0,3,3,2],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[0,3,4,2],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[0,3,3,3],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[0,3,3,2],[1,2,1,2]],[[0,0,2,2],[0,2,3,2],[0,3,3,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,3],[0,3,3,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,2],[0,3,4,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,2],[0,3,3,3],[1,2,2,0]],[[0,0,2,1],[0,2,3,2],[0,3,3,2],[1,3,2,0]],[[0,0,2,1],[0,2,3,2],[0,3,3,2],[1,2,3,0]],[[0,0,2,2],[0,2,3,2],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,3],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[1,1,3,3],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[1,1,3,2],[1,2,3,1]],[[0,0,2,1],[0,2,3,2],[1,1,3,2],[1,2,2,2]],[[0,0,2,2],[0,2,3,2],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,3],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[1,2,2,3],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[1,2,2,2],[1,3,2,1]],[[0,0,2,1],[0,2,3,2],[1,2,2,2],[1,2,3,1]],[[0,0,2,1],[0,2,3,2],[1,2,2,2],[1,2,2,2]],[[0,0,2,1],[0,2,3,2],[1,2,4,1],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[1,2,3,1],[1,3,2,1]],[[0,0,2,1],[0,2,3,2],[1,2,3,1],[1,2,3,1]],[[0,0,2,1],[0,2,3,2],[1,2,3,1],[1,2,2,2]],[[0,0,2,2],[0,2,3,2],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[0,2,3,3],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[1,2,4,2],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[1,2,3,3],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[1,2,3,2],[1,2,1,2]],[[0,0,2,2],[0,2,3,2],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,3],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,2],[1,2,4,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,2],[1,2,3,3],[1,2,2,0]],[[0,0,2,1],[0,2,3,2],[1,2,3,2],[1,3,2,0]],[[0,0,2,1],[0,2,3,2],[1,2,3,2],[1,2,3,0]],[[0,0,2,2],[0,2,3,2],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[0,2,3,3],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[0,2,3,2],[1,3,2,3],[1,1,2,1]],[[0,0,2,1],[0,2,3,2],[1,3,2,2],[1,1,3,1]],[[0,0,2,1],[0,2,3,2],[1,3,2,2],[1,1,2,2]],[[0,0,2,1],[0,2,3,2],[1,3,4,1],[1,1,2,1]],[[0,0,2,1],[0,2,3,2],[1,3,3,1],[1,1,3,1]],[[0,0,2,1],[0,2,3,2],[1,3,3,1],[1,1,2,2]],[[0,0,2,2],[0,2,3,2],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[0,2,3,3],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[0,2,3,2],[1,3,4,2],[1,0,2,1]],[[0,0,2,1],[0,2,3,2],[1,3,3,3],[1,0,2,1]],[[0,0,2,1],[0,2,3,2],[1,3,3,2],[1,0,2,2]],[[0,0,2,2],[0,2,3,2],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[0,2,3,3],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[0,2,3,2],[1,3,4,2],[1,1,1,1]],[[0,0,2,1],[0,2,3,2],[1,3,3,3],[1,1,1,1]],[[0,0,2,1],[0,2,3,2],[1,3,3,2],[1,1,1,2]],[[0,0,2,2],[0,2,3,2],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[0,2,3,3],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[0,2,3,2],[1,3,4,2],[1,1,2,0]],[[0,0,2,1],[0,2,3,2],[1,3,3,3],[1,1,2,0]],[[0,0,2,1],[0,2,3,2],[1,3,3,2],[1,1,3,0]],[[0,0,2,2],[0,2,3,2],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[0,2,3,3],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[0,2,3,2],[1,3,4,2],[1,2,0,1]],[[0,0,2,1],[0,2,3,2],[1,3,3,3],[1,2,0,1]],[[0,0,2,1],[0,2,3,2],[1,3,3,2],[1,2,0,2]],[[0,0,2,2],[0,2,3,2],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[0,2,3,3],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[0,2,3,2],[1,3,4,2],[1,2,1,0]],[[0,0,2,1],[0,2,3,2],[1,3,3,3],[1,2,1,0]],[[0,0,2,2],[0,2,3,2],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[0,2,3,3],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,1,3,3],[0,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,1,3,2],[0,2,3,1]],[[0,0,2,1],[0,2,3,2],[2,1,3,2],[0,2,2,2]],[[0,0,2,2],[0,2,3,2],[2,2,1,2],[1,2,2,1]],[[0,0,2,1],[0,2,4,2],[2,2,1,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,3],[2,2,1,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,2,1,3],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,2,1,2],[2,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,2,1,2],[1,3,2,1]],[[0,0,2,1],[0,2,3,2],[2,2,1,2],[1,2,3,1]],[[0,0,2,1],[0,2,3,2],[2,2,1,2],[1,2,2,2]],[[0,0,2,2],[0,2,3,2],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[0,2,3,3],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,2,2,3],[0,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,2,2,2],[0,2,3,1]],[[0,0,2,1],[0,2,3,2],[2,2,2,2],[0,2,2,2]],[[0,0,2,2],[0,2,3,2],[2,2,2,2],[1,2,1,1]],[[0,0,2,1],[0,2,4,2],[2,2,2,2],[1,2,1,1]],[[0,0,2,1],[0,2,3,3],[2,2,2,2],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[2,2,2,3],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[2,2,2,2],[1,2,1,2]],[[0,0,2,2],[0,2,3,2],[2,2,2,2],[1,2,2,0]],[[0,0,2,1],[0,2,4,2],[2,2,2,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,3],[2,2,2,2],[1,2,2,0]],[[0,0,2,1],[0,2,3,2],[2,2,2,3],[1,2,2,0]],[[0,0,2,2],[0,2,3,2],[2,2,3,0],[1,2,2,1]],[[0,0,2,1],[0,2,4,2],[2,2,3,0],[1,2,2,1]],[[0,0,2,1],[0,2,3,3],[2,2,3,0],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,2,4,0],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,2,3,0],[2,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,2,3,0],[1,3,2,1]],[[0,0,2,1],[0,2,3,2],[2,2,3,0],[1,2,3,1]],[[0,0,2,1],[0,2,3,2],[2,2,3,0],[1,2,2,2]],[[0,0,2,1],[0,2,3,2],[2,2,4,1],[0,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,2,3,1],[0,2,3,1]],[[0,0,2,1],[0,2,3,2],[2,2,3,1],[0,2,2,2]],[[0,0,2,2],[0,2,3,2],[2,2,3,1],[1,2,1,1]],[[0,0,2,1],[0,2,4,2],[2,2,3,1],[1,2,1,1]],[[0,0,2,1],[0,2,3,3],[2,2,3,1],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[2,2,4,1],[1,2,1,1]],[[0,0,2,2],[0,2,3,2],[2,2,3,1],[1,2,2,0]],[[0,0,2,1],[0,2,4,2],[2,2,3,1],[1,2,2,0]],[[0,0,2,1],[0,2,3,3],[2,2,3,1],[1,2,2,0]],[[0,0,2,1],[0,2,3,2],[2,2,4,1],[1,2,2,0]],[[0,0,2,1],[0,2,3,2],[2,2,3,1],[2,2,2,0]],[[0,0,2,1],[0,2,3,2],[2,2,3,1],[1,3,2,0]],[[0,0,2,1],[0,2,3,2],[2,2,3,1],[1,2,3,0]],[[0,0,2,2],[0,2,3,2],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[0,2,3,3],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[0,2,3,2],[2,2,4,2],[0,2,1,1]],[[0,0,2,1],[0,2,3,2],[2,2,3,3],[0,2,1,1]],[[0,0,2,1],[0,2,3,2],[2,2,3,2],[0,2,1,2]],[[0,0,2,2],[0,2,3,2],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[0,2,3,3],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[0,2,3,2],[2,2,4,2],[0,2,2,0]],[[0,0,2,1],[0,2,3,2],[2,2,3,3],[0,2,2,0]],[[0,0,2,1],[0,2,3,2],[2,2,3,2],[0,2,3,0]],[[0,0,2,2],[0,2,3,2],[2,3,0,2],[1,2,2,1]],[[0,0,2,1],[0,2,4,2],[2,3,0,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,3],[2,3,0,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,4,0,2],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,0,3],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,0,2],[2,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,0,2],[1,3,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,0,2],[1,2,3,1]],[[0,0,2,1],[0,2,3,2],[2,3,0,2],[1,2,2,2]],[[0,0,2,2],[0,2,3,2],[2,3,1,2],[1,1,2,1]],[[0,0,2,1],[0,2,4,2],[2,3,1,2],[1,1,2,1]],[[0,0,2,1],[0,2,3,3],[2,3,1,2],[1,1,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,1,3],[1,1,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,1,2],[1,1,3,1]],[[0,0,2,1],[0,2,3,2],[2,3,1,2],[1,1,2,2]],[[0,0,2,1],[0,2,3,2],[2,4,2,0],[1,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,2,0],[2,2,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,2,0],[1,3,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,2,0],[1,2,3,1]],[[0,0,2,1],[0,2,3,2],[2,3,2,0],[1,2,2,2]],[[0,0,2,1],[0,2,3,2],[2,4,2,1],[1,2,2,0]],[[0,0,2,1],[0,2,3,2],[2,3,2,1],[2,2,2,0]],[[0,0,2,1],[0,2,3,2],[2,3,2,1],[1,3,2,0]],[[0,0,2,1],[0,2,3,2],[2,3,2,1],[1,2,3,0]],[[0,0,2,2],[0,2,3,2],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[0,2,3,3],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,2,3],[0,1,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,2,2],[0,1,3,1]],[[0,0,2,1],[0,2,3,2],[2,3,2,2],[0,1,2,2]],[[0,0,2,2],[0,2,3,2],[2,3,2,2],[1,1,1,1]],[[0,0,2,1],[0,2,4,2],[2,3,2,2],[1,1,1,1]],[[0,0,2,1],[0,2,3,3],[2,3,2,2],[1,1,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,2,3],[1,1,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,2,2],[1,1,1,2]],[[0,0,2,2],[0,2,3,2],[2,3,2,2],[1,1,2,0]],[[0,0,2,1],[0,2,4,2],[2,3,2,2],[1,1,2,0]],[[0,0,2,1],[0,2,3,3],[2,3,2,2],[1,1,2,0]],[[0,0,2,1],[0,2,3,2],[2,3,2,3],[1,1,2,0]],[[0,0,2,2],[0,2,3,2],[2,3,2,2],[1,2,0,1]],[[0,0,2,1],[0,2,4,2],[2,3,2,2],[1,2,0,1]],[[0,0,2,1],[0,2,3,3],[2,3,2,2],[1,2,0,1]],[[0,0,2,1],[0,2,3,2],[2,3,2,3],[1,2,0,1]],[[0,0,2,1],[0,2,3,2],[2,3,2,2],[1,2,0,2]],[[0,0,2,2],[0,2,3,2],[2,3,2,2],[1,2,1,0]],[[0,0,2,1],[0,2,4,2],[2,3,2,2],[1,2,1,0]],[[0,0,2,1],[0,2,3,3],[2,3,2,2],[1,2,1,0]],[[0,0,2,1],[0,2,3,2],[2,3,2,3],[1,2,1,0]],[[0,0,2,2],[0,2,3,2],[2,3,3,0],[1,1,2,1]],[[0,0,2,1],[0,2,4,2],[2,3,3,0],[1,1,2,1]],[[0,0,2,1],[0,2,3,3],[2,3,3,0],[1,1,2,1]],[[0,0,2,1],[0,2,3,2],[2,4,3,0],[1,1,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,4,0],[1,1,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,0],[1,1,3,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,0],[1,1,2,2]],[[0,0,2,2],[0,2,3,2],[2,3,3,0],[1,2,1,1]],[[0,0,2,1],[0,2,4,2],[2,3,3,0],[1,2,1,1]],[[0,0,2,1],[0,2,3,3],[2,3,3,0],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[2,4,3,0],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,4,0],[1,2,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,0],[2,2,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,0],[1,3,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,4,1],[0,1,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,1],[0,1,3,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,1],[0,1,2,2]],[[0,0,2,2],[0,2,3,2],[2,3,3,1],[1,1,1,1]],[[0,0,2,1],[0,2,4,2],[2,3,3,1],[1,1,1,1]],[[0,0,2,1],[0,2,3,3],[2,3,3,1],[1,1,1,1]],[[0,0,2,1],[0,2,3,2],[2,4,3,1],[1,1,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,4,1],[1,1,1,1]],[[0,0,2,2],[0,2,3,2],[2,3,3,1],[1,1,2,0]],[[0,0,2,1],[0,2,4,2],[2,3,3,1],[1,1,2,0]],[[0,0,2,1],[0,2,3,3],[2,3,3,1],[1,1,2,0]],[[0,0,2,1],[0,2,3,2],[2,4,3,1],[1,1,2,0]],[[0,0,2,1],[0,2,3,2],[2,3,4,1],[1,1,2,0]],[[0,0,2,1],[0,2,3,2],[2,3,3,1],[1,1,3,0]],[[0,0,2,2],[0,2,3,2],[2,3,3,1],[1,2,0,1]],[[0,0,2,1],[0,2,4,2],[2,3,3,1],[1,2,0,1]],[[0,0,2,1],[0,2,3,3],[2,3,3,1],[1,2,0,1]],[[0,0,2,1],[0,2,3,2],[2,4,3,1],[1,2,0,1]],[[0,0,2,1],[0,2,3,2],[2,3,4,1],[1,2,0,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,1],[2,2,0,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,1],[1,3,0,1]],[[0,0,2,2],[0,2,3,2],[2,3,3,1],[1,2,1,0]],[[0,0,2,1],[0,2,4,2],[2,3,3,1],[1,2,1,0]],[[0,0,2,1],[0,2,3,3],[2,3,3,1],[1,2,1,0]],[[0,0,2,1],[0,2,3,2],[2,4,3,1],[1,2,1,0]],[[0,0,2,1],[0,2,3,2],[2,3,4,1],[1,2,1,0]],[[0,0,2,1],[0,2,3,2],[2,3,3,1],[2,2,1,0]],[[0,0,2,1],[0,2,3,2],[2,3,3,1],[1,3,1,0]],[[0,0,2,2],[0,2,3,2],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[0,2,3,3],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,4,2],[0,0,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,3],[0,0,2,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,2],[0,0,2,2]],[[0,0,2,2],[0,2,3,2],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[0,2,3,3],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,4,2],[0,1,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,3],[0,1,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,2],[0,1,1,2]],[[0,0,2,2],[0,2,3,2],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[0,2,3,3],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[0,2,3,2],[2,3,4,2],[0,1,2,0]],[[0,0,2,1],[0,2,3,2],[2,3,3,3],[0,1,2,0]],[[0,0,2,1],[0,2,3,2],[2,3,3,2],[0,1,3,0]],[[0,0,2,2],[0,2,3,2],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[0,2,3,3],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[0,2,3,2],[2,3,4,2],[0,2,0,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,3],[0,2,0,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,2],[0,2,0,2]],[[0,0,2,2],[0,2,3,2],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[0,2,3,3],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[0,2,3,2],[2,3,4,2],[0,2,1,0]],[[0,0,2,1],[0,2,3,2],[2,3,3,3],[0,2,1,0]],[[0,0,2,2],[0,2,3,2],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[0,2,3,3],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,4,2],[1,0,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,3],[1,0,1,1]],[[0,0,2,1],[0,2,3,2],[2,3,3,2],[1,0,1,2]],[[0,0,2,2],[0,2,3,2],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[0,2,3,3],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[0,2,3,2],[2,3,4,2],[1,0,2,0]],[[0,0,2,1],[0,2,3,2],[2,3,3,3],[1,0,2,0]],[[0,0,2,1],[0,3,1,2],[0,3,3,3],[1,2,2,1]],[[0,0,2,1],[0,3,1,2],[0,3,3,2],[1,3,2,1]],[[0,0,2,1],[0,3,1,2],[0,3,3,2],[1,2,3,1]],[[0,0,2,1],[0,3,1,2],[0,3,3,2],[1,2,2,2]],[[0,0,2,1],[0,3,1,2],[1,2,3,3],[1,2,2,1]],[[0,0,2,1],[0,3,1,2],[1,2,3,2],[1,3,2,1]],[[0,0,2,1],[0,3,1,2],[1,2,3,2],[1,2,3,1]],[[0,0,2,1],[0,3,1,2],[1,2,3,2],[1,2,2,2]],[[0,0,2,1],[0,3,1,2],[1,3,3,3],[1,1,2,1]],[[0,0,2,1],[0,3,1,2],[1,3,3,2],[1,1,3,1]],[[0,0,2,1],[0,3,1,2],[1,3,3,2],[1,1,2,2]],[[0,0,2,1],[0,3,1,2],[2,2,3,3],[0,2,2,1]],[[0,0,2,1],[0,3,1,2],[2,2,3,2],[0,2,3,1]],[[0,0,2,1],[0,3,1,2],[2,2,3,2],[0,2,2,2]],[[0,0,2,1],[0,3,1,2],[2,3,3,3],[0,1,2,1]],[[0,0,2,1],[0,3,1,2],[2,3,3,2],[0,1,3,1]],[[0,0,2,1],[0,3,1,2],[2,3,3,2],[0,1,2,2]],[[0,0,2,2],[0,3,2,2],[0,2,3,2],[1,2,2,1]],[[0,0,2,1],[0,3,2,3],[0,2,3,2],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[0,2,3,3],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[0,2,3,2],[1,2,3,1]],[[0,0,2,1],[0,3,2,2],[0,2,3,2],[1,2,2,2]],[[0,0,2,2],[0,3,2,2],[0,3,2,2],[1,2,2,1]],[[0,0,2,1],[0,3,2,3],[0,3,2,2],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[0,3,2,3],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[0,3,2,2],[1,3,2,1]],[[0,0,2,1],[0,3,2,2],[0,3,2,2],[1,2,3,1]],[[0,0,2,1],[0,3,2,2],[0,3,2,2],[1,2,2,2]],[[0,0,2,1],[0,3,2,2],[0,3,4,1],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[0,3,3,1],[1,3,2,1]],[[0,0,2,1],[0,3,2,2],[0,3,3,1],[1,2,3,1]],[[0,0,2,1],[0,3,2,2],[0,3,3,1],[1,2,2,2]],[[0,0,2,2],[0,3,2,2],[0,3,3,2],[1,2,1,1]],[[0,0,2,1],[0,3,2,3],[0,3,3,2],[1,2,1,1]],[[0,0,2,1],[0,3,2,2],[0,3,4,2],[1,2,1,1]],[[0,0,2,1],[0,3,2,2],[0,3,3,3],[1,2,1,1]],[[0,0,2,1],[0,3,2,2],[0,3,3,2],[1,2,1,2]],[[0,0,2,2],[0,3,2,2],[0,3,3,2],[1,2,2,0]],[[0,0,2,1],[0,3,2,3],[0,3,3,2],[1,2,2,0]],[[0,0,2,1],[0,3,2,2],[0,3,4,2],[1,2,2,0]],[[0,0,2,1],[0,3,2,2],[0,3,3,3],[1,2,2,0]],[[0,0,2,1],[0,3,2,2],[0,3,3,2],[1,3,2,0]],[[0,0,2,1],[0,3,2,2],[0,3,3,2],[1,2,3,0]],[[0,0,2,2],[0,3,2,2],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[0,3,2,3],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,1,3,3],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,1,3,2],[1,2,3,1]],[[0,0,2,1],[0,3,2,2],[1,1,3,2],[1,2,2,2]],[[0,0,2,2],[0,3,2,2],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[0,3,2,3],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,2,2,3],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,2,2,2],[2,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,2,2,2],[1,3,2,1]],[[0,0,2,1],[0,3,2,2],[1,2,2,2],[1,2,3,1]],[[0,0,2,1],[0,3,2,2],[1,2,2,2],[1,2,2,2]],[[0,0,2,1],[0,3,2,2],[1,2,4,1],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,2,3,1],[2,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,2,3,1],[1,3,2,1]],[[0,0,2,1],[0,3,2,2],[1,2,3,1],[1,2,3,1]],[[0,0,2,1],[0,3,2,2],[1,2,3,1],[1,2,2,2]],[[0,0,2,2],[0,3,2,2],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[0,3,2,3],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[0,3,2,2],[1,2,4,2],[1,2,1,1]],[[0,0,2,1],[0,3,2,2],[1,2,3,3],[1,2,1,1]],[[0,0,2,1],[0,3,2,2],[1,2,3,2],[1,2,1,2]],[[0,0,2,2],[0,3,2,2],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[0,3,2,3],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[0,3,2,2],[1,2,4,2],[1,2,2,0]],[[0,0,2,1],[0,3,2,2],[1,2,3,3],[1,2,2,0]],[[0,0,2,1],[0,3,2,2],[1,2,3,2],[2,2,2,0]],[[0,0,2,1],[0,3,2,2],[1,2,3,2],[1,3,2,0]],[[0,0,2,1],[0,3,2,2],[1,2,3,2],[1,2,3,0]],[[0,0,2,2],[0,3,2,2],[1,3,1,2],[1,2,2,1]],[[0,0,2,1],[0,3,2,3],[1,3,1,2],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,4,1,2],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,1,3],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,1,2],[2,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,1,2],[1,3,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,1,2],[1,2,3,1]],[[0,0,2,1],[0,3,2,2],[1,3,1,2],[1,2,2,2]],[[0,0,2,1],[0,3,2,2],[1,4,2,1],[1,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,2,1],[2,2,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,2,1],[1,3,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,2,1],[1,2,3,1]],[[0,0,2,1],[0,3,2,2],[1,3,2,1],[1,2,2,2]],[[0,0,2,2],[0,3,2,2],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[0,3,2,3],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,2,3],[1,1,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,2,2],[1,1,3,1]],[[0,0,2,1],[0,3,2,2],[1,3,2,2],[1,1,2,2]],[[0,0,2,1],[0,3,2,2],[1,4,2,2],[1,2,2,0]],[[0,0,2,1],[0,3,2,2],[1,3,2,2],[2,2,2,0]],[[0,0,2,1],[0,3,2,2],[1,3,2,2],[1,3,2,0]],[[0,0,2,1],[0,3,2,2],[1,3,2,2],[1,2,3,0]],[[0,0,2,1],[0,3,2,2],[1,4,3,1],[1,1,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,4,1],[1,1,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,1],[1,1,3,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,1],[1,1,2,2]],[[0,0,2,1],[0,3,2,2],[1,4,3,1],[1,2,1,1]],[[0,0,2,1],[0,3,2,2],[1,3,4,1],[1,2,1,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,1],[2,2,1,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,1],[1,3,1,1]],[[0,0,2,2],[0,3,2,2],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[0,3,2,3],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,4,2],[1,0,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,3],[1,0,2,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,2],[1,0,2,2]],[[0,0,2,2],[0,3,2,2],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[0,3,2,3],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[0,3,2,2],[1,4,3,2],[1,1,1,1]],[[0,0,2,1],[0,3,2,2],[1,3,4,2],[1,1,1,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,3],[1,1,1,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,2],[1,1,1,2]],[[0,0,2,2],[0,3,2,2],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[0,3,2,3],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[0,3,2,2],[1,4,3,2],[1,1,2,0]],[[0,0,2,1],[0,3,2,2],[1,3,4,2],[1,1,2,0]],[[0,0,2,1],[0,3,2,2],[1,3,3,3],[1,1,2,0]],[[0,0,2,1],[0,3,2,2],[1,3,3,2],[1,1,3,0]],[[0,0,2,2],[0,3,2,2],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[0,3,2,3],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[0,3,2,2],[1,4,3,2],[1,2,0,1]],[[0,0,2,1],[0,3,2,2],[1,3,4,2],[1,2,0,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,3],[1,2,0,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,2],[2,2,0,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,2],[1,3,0,1]],[[0,0,2,1],[0,3,2,2],[1,3,3,2],[1,2,0,2]],[[0,0,2,2],[0,3,2,2],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[0,3,2,3],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[0,3,2,2],[1,4,3,2],[1,2,1,0]],[[0,0,2,1],[0,3,2,2],[1,3,4,2],[1,2,1,0]],[[0,0,2,1],[0,3,2,2],[1,3,3,3],[1,2,1,0]],[[0,0,2,1],[0,3,2,2],[1,3,3,2],[2,2,1,0]],[[0,0,2,1],[0,3,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,4,1],[1,0,3,2],[1,0,0,1]],[[1,2,2,2],[2,3,3,1],[1,0,3,2],[1,0,0,1]],[[1,2,3,1],[2,3,3,1],[1,0,3,2],[1,0,0,1]],[[1,3,2,1],[2,3,3,1],[1,0,3,2],[1,0,0,1]],[[0,0,2,2],[0,3,2,2],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[0,3,2,3],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[0,3,2,2],[2,1,3,3],[0,2,2,1]],[[0,0,2,1],[0,3,2,2],[2,1,3,2],[0,2,3,1]],[[0,0,2,1],[0,3,2,2],[2,1,3,2],[0,2,2,2]],[[0,0,2,2],[0,3,2,2],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[0,3,2,3],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[0,3,2,2],[2,2,2,3],[0,2,2,1]],[[0,0,2,1],[0,3,2,2],[2,2,2,2],[0,3,2,1]],[[0,0,2,1],[0,3,2,2],[2,2,2,2],[0,2,3,1]],[[0,0,2,1],[0,3,2,2],[2,2,2,2],[0,2,2,2]],[[0,0,2,1],[0,3,2,2],[2,2,4,1],[0,2,2,1]],[[0,0,2,1],[0,3,2,2],[2,2,3,1],[0,3,2,1]],[[0,0,2,1],[0,3,2,2],[2,2,3,1],[0,2,3,1]],[[0,0,2,1],[0,3,2,2],[2,2,3,1],[0,2,2,2]],[[0,0,2,2],[0,3,2,2],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[0,3,2,3],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[0,3,2,2],[2,2,4,2],[0,2,1,1]],[[0,0,2,1],[0,3,2,2],[2,2,3,3],[0,2,1,1]],[[0,0,2,1],[0,3,2,2],[2,2,3,2],[0,2,1,2]],[[0,0,2,2],[0,3,2,2],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[0,3,2,3],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[0,3,2,2],[2,2,4,2],[0,2,2,0]],[[0,0,2,1],[0,3,2,2],[2,2,3,3],[0,2,2,0]],[[0,0,2,1],[0,3,2,2],[2,2,3,2],[0,3,2,0]],[[0,0,2,1],[0,3,2,2],[2,2,3,2],[0,2,3,0]],[[2,2,2,1],[2,3,3,1],[1,0,3,2],[1,0,0,1]],[[0,0,2,2],[0,3,2,2],[2,3,1,2],[0,2,2,1]],[[0,0,2,1],[0,3,2,3],[2,3,1,2],[0,2,2,1]],[[0,0,2,1],[0,3,2,2],[2,4,1,2],[0,2,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,1,3],[0,2,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,1,2],[0,3,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,1,2],[0,2,3,1]],[[0,0,2,1],[0,3,2,2],[2,3,1,2],[0,2,2,2]],[[0,0,2,1],[0,3,2,2],[2,4,2,1],[0,2,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,2,1],[0,3,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,2,1],[0,2,3,1]],[[0,0,2,1],[0,3,2,2],[2,3,2,1],[0,2,2,2]],[[0,0,2,2],[0,3,2,2],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[0,3,2,3],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,2,3],[0,1,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,2,2],[0,1,3,1]],[[0,0,2,1],[0,3,2,2],[2,3,2,2],[0,1,2,2]],[[0,0,2,1],[0,3,2,2],[2,4,2,2],[0,2,2,0]],[[0,0,2,1],[0,3,2,2],[2,3,2,2],[0,3,2,0]],[[0,0,2,1],[0,3,2,2],[2,3,2,2],[0,2,3,0]],[[0,0,2,2],[0,3,2,2],[2,3,2,2],[1,0,2,1]],[[0,0,2,1],[0,3,2,3],[2,3,2,2],[1,0,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,2,3],[1,0,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,2,2],[1,0,3,1]],[[0,0,2,1],[0,3,2,2],[2,3,2,2],[1,0,2,2]],[[0,0,2,1],[0,3,2,2],[2,4,3,1],[0,1,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,4,1],[0,1,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,1],[0,1,3,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,1],[0,1,2,2]],[[0,0,2,1],[0,3,2,2],[2,4,3,1],[0,2,1,1]],[[0,0,2,1],[0,3,2,2],[2,3,4,1],[0,2,1,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,1],[0,3,1,1]],[[0,0,2,1],[0,3,2,2],[2,4,3,1],[1,0,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,4,1],[1,0,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,1],[1,0,3,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[2,3,4,1],[1,0,3,2],[0,1,0,1]],[[0,0,2,2],[0,3,2,2],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[0,3,2,3],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,4,2],[0,0,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,3],[0,0,2,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,2],[0,0,2,2]],[[0,0,2,2],[0,3,2,2],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[0,3,2,3],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[0,3,2,2],[2,4,3,2],[0,1,1,1]],[[0,0,2,1],[0,3,2,2],[2,3,4,2],[0,1,1,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,3],[0,1,1,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,2],[0,1,1,2]],[[0,0,2,2],[0,3,2,2],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[0,3,2,3],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[0,3,2,2],[2,4,3,2],[0,1,2,0]],[[0,0,2,1],[0,3,2,2],[2,3,4,2],[0,1,2,0]],[[0,0,2,1],[0,3,2,2],[2,3,3,3],[0,1,2,0]],[[0,0,2,1],[0,3,2,2],[2,3,3,2],[0,1,3,0]],[[0,0,2,2],[0,3,2,2],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[0,3,2,3],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[0,3,2,2],[2,4,3,2],[0,2,0,1]],[[0,0,2,1],[0,3,2,2],[2,3,4,2],[0,2,0,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,3],[0,2,0,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,2],[0,3,0,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,2],[0,2,0,2]],[[0,0,2,2],[0,3,2,2],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[0,3,2,3],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[0,3,2,2],[2,4,3,2],[0,2,1,0]],[[0,0,2,1],[0,3,2,2],[2,3,4,2],[0,2,1,0]],[[0,0,2,1],[0,3,2,2],[2,3,3,3],[0,2,1,0]],[[0,0,2,1],[0,3,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,2],[2,3,3,1],[1,0,3,2],[0,1,0,1]],[[1,2,3,1],[2,3,3,1],[1,0,3,2],[0,1,0,1]],[[1,3,2,1],[2,3,3,1],[1,0,3,2],[0,1,0,1]],[[2,2,2,1],[2,3,3,1],[1,0,3,2],[0,1,0,1]],[[0,0,2,2],[0,3,2,2],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[0,3,2,3],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[0,3,2,2],[2,4,3,2],[1,0,1,1]],[[0,0,2,1],[0,3,2,2],[2,3,4,2],[1,0,1,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,3],[1,0,1,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,2],[1,0,1,2]],[[0,0,2,2],[0,3,2,2],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[0,3,2,3],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[0,3,2,2],[2,4,3,2],[1,0,2,0]],[[0,0,2,1],[0,3,2,2],[2,3,4,2],[1,0,2,0]],[[0,0,2,1],[0,3,2,2],[2,3,3,3],[1,0,2,0]],[[0,0,2,1],[0,3,2,2],[2,3,3,2],[1,0,3,0]],[[0,0,2,2],[0,3,2,2],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[0,3,2,3],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[0,3,2,2],[2,4,3,2],[1,1,0,1]],[[0,0,2,1],[0,3,2,2],[2,3,4,2],[1,1,0,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,3],[1,1,0,1]],[[0,0,2,1],[0,3,2,2],[2,3,3,2],[1,1,0,2]],[[0,0,2,2],[0,3,2,2],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[0,3,2,3],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[0,3,2,2],[2,4,3,2],[1,1,1,0]],[[0,0,2,1],[0,3,2,2],[2,3,4,2],[1,1,1,0]],[[0,0,2,1],[0,3,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,3,4,1],[1,0,3,1],[1,1,1,0]],[[1,2,2,2],[2,3,3,1],[1,0,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[1,0,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[1,0,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[1,0,3,1],[1,1,1,0]],[[1,2,2,1],[2,3,4,1],[1,0,3,1],[1,1,0,1]],[[1,2,2,2],[2,3,3,1],[1,0,3,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,1],[1,0,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,1],[1,0,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,1],[1,0,3,1],[1,1,0,1]],[[0,0,2,1],[0,3,3,0],[0,3,4,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,0],[0,3,3,2],[1,3,2,1]],[[0,0,2,1],[0,3,3,0],[0,3,3,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,0],[0,3,3,2],[1,2,2,2]],[[0,0,2,1],[0,3,3,0],[1,2,4,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,0],[1,2,3,2],[1,3,2,1]],[[0,0,2,1],[0,3,3,0],[1,2,3,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,0],[1,2,3,2],[1,2,2,2]],[[0,0,2,1],[0,3,3,0],[1,3,4,2],[1,1,2,1]],[[0,0,2,1],[0,3,3,0],[1,3,3,2],[1,1,3,1]],[[0,0,2,1],[0,3,3,0],[1,3,3,2],[1,1,2,2]],[[0,0,2,1],[0,3,3,0],[2,2,2,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,2,2,2],[2,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,2,2,2],[1,3,2,1]],[[0,0,2,1],[0,3,3,0],[2,2,2,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,0],[2,2,2,2],[1,2,2,2]],[[0,0,2,1],[0,3,4,0],[2,2,3,1],[1,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,2,4,1],[1,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,2,3,1],[2,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,2,3,1],[1,3,2,1]],[[0,0,2,1],[0,3,3,0],[2,2,3,1],[1,2,3,1]],[[0,0,2,1],[0,3,3,0],[2,2,3,1],[1,2,2,2]],[[0,0,2,1],[0,3,3,0],[2,2,4,2],[0,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,2,3,2],[0,2,3,1]],[[0,0,2,1],[0,3,3,0],[2,2,3,2],[0,2,2,2]],[[0,0,2,1],[0,3,4,0],[2,2,3,2],[1,2,1,1]],[[0,0,2,1],[0,3,3,0],[2,2,4,2],[1,2,1,1]],[[0,0,2,1],[0,3,3,0],[2,2,3,3],[1,2,1,1]],[[0,0,2,1],[0,3,3,0],[2,2,3,2],[1,2,1,2]],[[0,0,2,1],[0,3,4,0],[2,2,3,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,0],[2,2,4,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,0],[2,2,3,3],[1,2,2,0]],[[0,0,2,1],[0,3,3,0],[2,2,3,2],[2,2,2,0]],[[0,0,2,1],[0,3,3,0],[2,2,3,2],[1,3,2,0]],[[0,0,2,1],[0,3,3,0],[2,2,3,2],[1,2,3,0]],[[0,0,2,1],[0,3,3,0],[2,4,1,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,1,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,1,2],[2,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,1,2],[1,3,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,1,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,0],[2,3,1,2],[1,2,2,2]],[[0,0,2,1],[0,3,3,0],[2,4,2,1],[1,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,2,1],[2,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,2,1],[1,3,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,2,1],[1,2,3,1]],[[0,0,2,1],[0,3,3,0],[2,3,2,1],[1,2,2,2]],[[0,0,2,1],[0,3,3,0],[2,3,2,3],[1,1,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,2,2],[1,1,3,1]],[[0,0,2,1],[0,3,3,0],[2,3,2,2],[1,1,2,2]],[[0,0,2,1],[0,3,3,0],[2,4,2,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,0],[2,3,2,2],[2,2,2,0]],[[0,0,2,1],[0,3,3,0],[2,3,2,2],[1,3,2,0]],[[0,0,2,1],[0,3,3,0],[2,3,2,2],[1,2,3,0]],[[0,0,2,1],[0,3,3,0],[2,4,3,0],[1,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,0],[2,2,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,0],[1,3,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,0],[1,2,3,1]],[[0,0,2,1],[0,3,4,0],[2,3,3,1],[1,1,2,1]],[[0,0,2,1],[0,3,3,0],[2,4,3,1],[1,1,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,4,1],[1,1,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,1],[1,1,3,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,1],[1,1,2,2]],[[0,0,2,1],[0,3,4,0],[2,3,3,1],[1,2,1,1]],[[0,0,2,1],[0,3,3,0],[2,4,3,1],[1,2,1,1]],[[0,0,2,1],[0,3,3,0],[2,3,4,1],[1,2,1,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,1],[2,2,1,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,1],[1,3,1,1]],[[0,0,2,1],[0,3,3,0],[2,3,4,2],[0,1,2,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,2],[0,1,3,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,2],[0,1,2,2]],[[0,0,2,1],[0,3,4,0],[2,3,3,2],[1,1,1,1]],[[0,0,2,1],[0,3,3,0],[2,4,3,2],[1,1,1,1]],[[0,0,2,1],[0,3,3,0],[2,3,4,2],[1,1,1,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,3],[1,1,1,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,2],[1,1,1,2]],[[0,0,2,1],[0,3,4,0],[2,3,3,2],[1,1,2,0]],[[0,0,2,1],[0,3,3,0],[2,4,3,2],[1,1,2,0]],[[0,0,2,1],[0,3,3,0],[2,3,4,2],[1,1,2,0]],[[0,0,2,1],[0,3,3,0],[2,3,3,3],[1,1,2,0]],[[0,0,2,1],[0,3,3,0],[2,3,3,2],[1,1,3,0]],[[0,0,2,1],[0,3,4,0],[2,3,3,2],[1,2,0,1]],[[0,0,2,1],[0,3,3,0],[2,4,3,2],[1,2,0,1]],[[0,0,2,1],[0,3,3,0],[2,3,4,2],[1,2,0,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,3],[1,2,0,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,2],[2,2,0,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,2],[1,3,0,1]],[[0,0,2,1],[0,3,3,0],[2,3,3,2],[1,2,0,2]],[[0,0,2,1],[0,3,4,0],[2,3,3,2],[1,2,1,0]],[[0,0,2,1],[0,3,3,0],[2,4,3,2],[1,2,1,0]],[[0,0,2,1],[0,3,3,0],[2,3,4,2],[1,2,1,0]],[[0,0,2,1],[0,3,3,0],[2,3,3,3],[1,2,1,0]],[[0,0,2,1],[0,3,3,0],[2,3,3,2],[2,2,1,0]],[[0,0,2,1],[0,3,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,4,1],[1,0,3,1],[1,0,2,0]],[[1,2,2,2],[2,3,3,1],[1,0,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,1],[1,0,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,1],[1,0,3,1],[1,0,2,0]],[[0,0,2,1],[0,3,3,1],[0,2,3,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[0,2,3,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,1],[0,2,3,2],[1,2,2,2]],[[0,0,2,1],[0,3,3,1],[0,3,2,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[0,3,2,2],[1,3,2,1]],[[0,0,2,1],[0,3,3,1],[0,3,2,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,1],[0,3,2,2],[1,2,2,2]],[[0,0,2,1],[0,3,4,1],[0,3,3,1],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[0,3,4,1],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[0,3,3,1],[1,3,2,1]],[[0,0,2,1],[0,3,3,1],[0,3,3,1],[1,2,3,1]],[[0,0,2,1],[0,3,3,1],[0,3,3,1],[1,2,2,2]],[[0,0,2,1],[0,3,4,1],[0,3,3,2],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[0,3,4,2],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[0,3,3,3],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[0,3,3,2],[1,2,1,2]],[[0,0,2,1],[0,3,4,1],[0,3,3,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,1],[0,3,4,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,1],[0,3,3,3],[1,2,2,0]],[[0,0,2,1],[0,3,3,1],[0,3,3,2],[1,3,2,0]],[[0,0,2,1],[0,3,3,1],[0,3,3,2],[1,2,3,0]],[[0,0,2,1],[0,3,3,1],[1,1,3,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[1,1,3,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,1],[1,1,3,2],[1,2,2,2]],[[0,0,2,1],[0,3,3,1],[1,2,2,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[1,2,2,2],[2,2,2,1]],[[0,0,2,1],[0,3,3,1],[1,2,2,2],[1,3,2,1]],[[0,0,2,1],[0,3,3,1],[1,2,2,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,1],[1,2,2,2],[1,2,2,2]],[[0,0,2,1],[0,3,4,1],[1,2,3,1],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[1,2,4,1],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[1,2,3,1],[2,2,2,1]],[[0,0,2,1],[0,3,3,1],[1,2,3,1],[1,3,2,1]],[[0,0,2,1],[0,3,3,1],[1,2,3,1],[1,2,3,1]],[[0,0,2,1],[0,3,3,1],[1,2,3,1],[1,2,2,2]],[[0,0,2,1],[0,3,4,1],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[1,2,4,2],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[1,2,3,3],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[1,2,3,2],[1,2,1,2]],[[0,0,2,1],[0,3,4,1],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,1],[1,2,4,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,1],[1,2,3,3],[1,2,2,0]],[[0,0,2,1],[0,3,3,1],[1,2,3,2],[2,2,2,0]],[[0,0,2,1],[0,3,3,1],[1,2,3,2],[1,3,2,0]],[[0,0,2,1],[0,3,3,1],[1,2,3,2],[1,2,3,0]],[[0,0,2,1],[0,3,3,1],[1,4,1,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,1,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,1,2],[2,2,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,1,2],[1,3,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,1,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,1],[1,3,1,2],[1,2,2,2]],[[0,0,2,1],[0,3,3,1],[1,4,2,1],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,2,1],[2,2,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,2,1],[1,3,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,2,1],[1,2,3,1]],[[0,0,2,1],[0,3,3,1],[1,3,2,1],[1,2,2,2]],[[0,0,2,1],[0,3,3,1],[1,3,2,3],[1,1,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,2,2],[1,1,3,1]],[[0,0,2,1],[0,3,3,1],[1,3,2,2],[1,1,2,2]],[[0,0,2,1],[0,3,3,1],[1,4,2,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,1],[1,3,2,2],[2,2,2,0]],[[0,0,2,1],[0,3,3,1],[1,3,2,2],[1,3,2,0]],[[0,0,2,1],[0,3,3,1],[1,3,2,2],[1,2,3,0]],[[0,0,2,1],[0,3,4,1],[1,3,3,1],[1,1,2,1]],[[0,0,2,1],[0,3,3,1],[1,4,3,1],[1,1,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,4,1],[1,1,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,1],[1,1,3,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,1],[1,1,2,2]],[[0,0,2,1],[0,3,4,1],[1,3,3,1],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[1,4,3,1],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[1,3,4,1],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,1],[2,2,1,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,1],[1,3,1,1]],[[0,0,2,1],[0,3,4,1],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,4,2],[1,0,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,3],[1,0,2,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,2],[1,0,2,2]],[[0,0,2,1],[0,3,4,1],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[0,3,3,1],[1,4,3,2],[1,1,1,1]],[[0,0,2,1],[0,3,3,1],[1,3,4,2],[1,1,1,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,3],[1,1,1,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,2],[1,1,1,2]],[[0,0,2,1],[0,3,4,1],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[0,3,3,1],[1,4,3,2],[1,1,2,0]],[[0,0,2,1],[0,3,3,1],[1,3,4,2],[1,1,2,0]],[[0,0,2,1],[0,3,3,1],[1,3,3,3],[1,1,2,0]],[[0,0,2,1],[0,3,3,1],[1,3,3,2],[1,1,3,0]],[[0,0,2,1],[0,3,4,1],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[0,3,3,1],[1,4,3,2],[1,2,0,1]],[[0,0,2,1],[0,3,3,1],[1,3,4,2],[1,2,0,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,3],[1,2,0,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,2],[2,2,0,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,2],[1,3,0,1]],[[0,0,2,1],[0,3,3,1],[1,3,3,2],[1,2,0,2]],[[0,0,2,1],[0,3,4,1],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[0,3,3,1],[1,4,3,2],[1,2,1,0]],[[0,0,2,1],[0,3,3,1],[1,3,4,2],[1,2,1,0]],[[0,0,2,1],[0,3,3,1],[1,3,3,3],[1,2,1,0]],[[0,0,2,1],[0,3,3,1],[1,3,3,2],[2,2,1,0]],[[0,0,2,1],[0,3,3,1],[1,3,3,2],[1,3,1,0]],[[2,2,2,1],[2,3,3,1],[1,0,3,1],[1,0,2,0]],[[1,2,2,1],[2,3,4,1],[1,0,3,1],[1,0,1,1]],[[1,2,2,2],[2,3,3,1],[1,0,3,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[1,0,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[1,0,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[1,0,3,1],[1,0,1,1]],[[0,0,2,1],[0,3,3,1],[2,1,3,3],[0,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,1,3,2],[0,2,3,1]],[[0,0,2,1],[0,3,3,1],[2,1,3,2],[0,2,2,2]],[[0,0,2,1],[0,3,3,1],[2,2,2,3],[0,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,2,2,2],[0,3,2,1]],[[0,0,2,1],[0,3,3,1],[2,2,2,2],[0,2,3,1]],[[0,0,2,1],[0,3,3,1],[2,2,2,2],[0,2,2,2]],[[0,0,2,1],[0,3,4,1],[2,2,3,0],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,2,4,0],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,2,3,0],[2,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,2,3,0],[1,3,2,1]],[[0,0,2,1],[0,3,3,1],[2,2,3,0],[1,2,3,1]],[[0,0,2,1],[0,3,3,1],[2,2,3,0],[1,2,2,2]],[[0,0,2,1],[0,3,4,1],[2,2,3,1],[0,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,2,4,1],[0,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,2,3,1],[0,3,2,1]],[[0,0,2,1],[0,3,3,1],[2,2,3,1],[0,2,3,1]],[[0,0,2,1],[0,3,3,1],[2,2,3,1],[0,2,2,2]],[[0,0,2,1],[0,3,4,1],[2,2,3,1],[1,2,2,0]],[[0,0,2,1],[0,3,3,1],[2,2,4,1],[1,2,2,0]],[[0,0,2,1],[0,3,3,1],[2,2,3,1],[2,2,2,0]],[[0,0,2,1],[0,3,3,1],[2,2,3,1],[1,3,2,0]],[[0,0,2,1],[0,3,3,1],[2,2,3,1],[1,2,3,0]],[[0,0,2,1],[0,3,4,1],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[0,3,3,1],[2,2,4,2],[0,2,1,1]],[[0,0,2,1],[0,3,3,1],[2,2,3,3],[0,2,1,1]],[[0,0,2,1],[0,3,3,1],[2,2,3,2],[0,2,1,2]],[[0,0,2,1],[0,3,4,1],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[0,3,3,1],[2,2,4,2],[0,2,2,0]],[[0,0,2,1],[0,3,3,1],[2,2,3,3],[0,2,2,0]],[[0,0,2,1],[0,3,3,1],[2,2,3,2],[0,3,2,0]],[[0,0,2,1],[0,3,3,1],[2,2,3,2],[0,2,3,0]],[[0,0,2,1],[0,3,3,1],[2,4,1,2],[0,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,1,3],[0,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,1,2],[0,3,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,1,2],[0,2,3,1]],[[0,0,2,1],[0,3,3,1],[2,3,1,2],[0,2,2,2]],[[0,0,2,1],[0,3,3,1],[2,4,2,0],[1,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,2,0],[2,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,2,0],[1,3,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,2,0],[1,2,3,1]],[[0,0,2,1],[0,3,3,1],[2,3,2,0],[1,2,2,2]],[[0,0,2,1],[0,3,3,1],[2,4,2,1],[0,2,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,2,1],[0,3,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,2,1],[0,2,3,1]],[[0,0,2,1],[0,3,3,1],[2,3,2,1],[0,2,2,2]],[[0,0,2,1],[0,3,3,1],[2,4,2,1],[1,2,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,2,1],[2,2,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,2,1],[1,3,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,2,1],[1,2,3,0]],[[0,0,2,1],[0,3,3,1],[2,3,2,3],[0,1,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,2,2],[0,1,3,1]],[[0,0,2,1],[0,3,3,1],[2,3,2,2],[0,1,2,2]],[[0,0,2,1],[0,3,3,1],[2,4,2,2],[0,2,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,2,2],[0,3,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,2,2],[0,2,3,0]],[[0,0,2,1],[0,3,3,1],[2,3,2,3],[1,0,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,2,2],[1,0,3,1]],[[0,0,2,1],[0,3,3,1],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,3,4,1],[1,0,3,1],[0,2,1,0]],[[1,2,2,2],[2,3,3,1],[1,0,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,1],[1,0,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,1],[1,0,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[1,0,3,1],[0,2,1,0]],[[0,0,2,1],[0,3,4,1],[2,3,3,0],[1,1,2,1]],[[0,0,2,1],[0,3,3,1],[2,4,3,0],[1,1,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,4,0],[1,1,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,0],[1,1,3,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,0],[1,1,2,2]],[[0,0,2,1],[0,3,4,1],[2,3,3,0],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[2,4,3,0],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[2,3,4,0],[1,2,1,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,0],[2,2,1,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,0],[1,3,1,1]],[[0,0,2,1],[0,3,4,1],[2,3,3,1],[0,1,2,1]],[[0,0,2,1],[0,3,3,1],[2,4,3,1],[0,1,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,4,1],[0,1,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,1],[0,1,3,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,1],[0,1,2,2]],[[0,0,2,1],[0,3,4,1],[2,3,3,1],[0,2,1,1]],[[0,0,2,1],[0,3,3,1],[2,4,3,1],[0,2,1,1]],[[0,0,2,1],[0,3,3,1],[2,3,4,1],[0,2,1,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,1],[0,3,1,1]],[[0,0,2,1],[0,3,4,1],[2,3,3,1],[1,0,2,1]],[[0,0,2,1],[0,3,3,1],[2,4,3,1],[1,0,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,4,1],[1,0,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,1],[1,0,3,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,1],[1,0,2,2]],[[0,0,2,1],[0,3,4,1],[2,3,3,1],[1,1,2,0]],[[0,0,2,1],[0,3,3,1],[2,4,3,1],[1,1,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,4,1],[1,1,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,3,1],[1,1,3,0]],[[0,0,2,1],[0,3,4,1],[2,3,3,1],[1,2,0,1]],[[0,0,2,1],[0,3,3,1],[2,4,3,1],[1,2,0,1]],[[0,0,2,1],[0,3,3,1],[2,3,4,1],[1,2,0,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,1],[2,2,0,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,1],[1,3,0,1]],[[0,0,2,1],[0,3,4,1],[2,3,3,1],[1,2,1,0]],[[0,0,2,1],[0,3,3,1],[2,4,3,1],[1,2,1,0]],[[0,0,2,1],[0,3,3,1],[2,3,4,1],[1,2,1,0]],[[0,0,2,1],[0,3,3,1],[2,3,3,1],[2,2,1,0]],[[0,0,2,1],[0,3,3,1],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,3,4,1],[1,0,3,1],[0,2,0,1]],[[1,2,2,2],[2,3,3,1],[1,0,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,1],[1,0,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,1],[1,0,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,1],[1,0,3,1],[0,2,0,1]],[[0,0,2,1],[0,3,4,1],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,4,2],[0,0,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,3],[0,0,2,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,2],[0,0,2,2]],[[0,0,2,1],[0,3,4,1],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[0,3,3,1],[2,4,3,2],[0,1,1,1]],[[0,0,2,1],[0,3,3,1],[2,3,4,2],[0,1,1,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,3],[0,1,1,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,2],[0,1,1,2]],[[0,0,2,1],[0,3,4,1],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[0,3,3,1],[2,4,3,2],[0,1,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,4,2],[0,1,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,3,3],[0,1,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,3,2],[0,1,3,0]],[[0,0,2,1],[0,3,4,1],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[0,3,3,1],[2,4,3,2],[0,2,0,1]],[[0,0,2,1],[0,3,3,1],[2,3,4,2],[0,2,0,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,3],[0,2,0,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,2],[0,3,0,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,2],[0,2,0,2]],[[0,0,2,1],[0,3,4,1],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[0,3,3,1],[2,4,3,2],[0,2,1,0]],[[0,0,2,1],[0,3,3,1],[2,3,4,2],[0,2,1,0]],[[0,0,2,1],[0,3,3,1],[2,3,3,3],[0,2,1,0]],[[0,0,2,1],[0,3,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,3,4,1],[1,0,3,1],[0,1,2,0]],[[1,2,2,2],[2,3,3,1],[1,0,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,1],[1,0,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,3,1],[1,0,3,1],[0,1,2,0]],[[0,0,2,1],[0,3,4,1],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[0,3,3,1],[2,4,3,2],[1,0,1,1]],[[0,0,2,1],[0,3,3,1],[2,3,4,2],[1,0,1,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,3],[1,0,1,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,2],[1,0,1,2]],[[0,0,2,1],[0,3,4,1],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[0,3,3,1],[2,4,3,2],[1,0,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,4,2],[1,0,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,3,3],[1,0,2,0]],[[0,0,2,1],[0,3,3,1],[2,3,3,2],[1,0,3,0]],[[0,0,2,1],[0,3,4,1],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[0,3,3,1],[2,4,3,2],[1,1,0,1]],[[0,0,2,1],[0,3,3,1],[2,3,4,2],[1,1,0,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,3],[1,1,0,1]],[[0,0,2,1],[0,3,3,1],[2,3,3,2],[1,1,0,2]],[[0,0,2,1],[0,3,4,1],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[0,3,3,1],[2,4,3,2],[1,1,1,0]],[[0,0,2,1],[0,3,3,1],[2,3,4,2],[1,1,1,0]],[[0,0,2,1],[0,3,3,1],[2,3,3,3],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[1,0,3,1],[0,1,2,0]],[[1,2,2,1],[2,3,4,1],[1,0,3,1],[0,1,1,1]],[[1,2,2,2],[2,3,3,1],[1,0,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,1],[1,0,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,3,1],[1,0,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,3,1],[1,0,3,1],[0,1,1,1]],[[1,2,2,1],[2,3,4,1],[1,0,3,1],[0,0,2,1]],[[1,2,2,2],[2,3,3,1],[1,0,3,1],[0,0,2,1]],[[1,2,3,1],[2,3,3,1],[1,0,3,1],[0,0,2,1]],[[1,3,2,1],[2,3,3,1],[1,0,3,1],[0,0,2,1]],[[2,2,2,1],[2,3,3,1],[1,0,3,1],[0,0,2,1]],[[1,2,2,1],[2,3,4,1],[1,0,3,0],[1,1,1,1]],[[1,2,2,2],[2,3,3,1],[1,0,3,0],[1,1,1,1]],[[1,2,3,1],[2,3,3,1],[1,0,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,1],[1,0,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,3,1],[1,0,3,0],[1,1,1,1]],[[1,2,2,1],[2,3,4,1],[1,0,3,0],[1,0,2,1]],[[1,2,2,2],[2,3,3,1],[1,0,3,0],[1,0,2,1]],[[0,0,2,2],[0,3,3,2],[0,1,3,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,3],[0,1,3,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[0,1,3,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[0,1,3,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,2],[0,1,3,2],[1,2,2,2]],[[0,0,2,2],[0,3,3,2],[0,3,1,2],[1,2,2,1]],[[0,0,2,1],[0,3,4,2],[0,3,1,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,3],[0,3,1,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[0,3,1,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[0,3,1,2],[1,3,2,1]],[[0,0,2,1],[0,3,3,2],[0,3,1,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,2],[0,3,1,2],[1,2,2,2]],[[0,0,2,2],[0,3,3,2],[0,3,2,2],[1,2,1,1]],[[0,0,2,1],[0,3,4,2],[0,3,2,2],[1,2,1,1]],[[0,0,2,1],[0,3,3,3],[0,3,2,2],[1,2,1,1]],[[0,0,2,1],[0,3,3,2],[0,3,2,3],[1,2,1,1]],[[0,0,2,1],[0,3,3,2],[0,3,2,2],[1,2,1,2]],[[0,0,2,2],[0,3,3,2],[0,3,2,2],[1,2,2,0]],[[0,0,2,1],[0,3,4,2],[0,3,2,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,3],[0,3,2,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,2],[0,3,2,3],[1,2,2,0]],[[0,0,2,2],[0,3,3,2],[0,3,3,0],[1,2,2,1]],[[0,0,2,1],[0,3,4,2],[0,3,3,0],[1,2,2,1]],[[0,0,2,1],[0,3,3,3],[0,3,3,0],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[0,3,4,0],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[0,3,3,0],[1,3,2,1]],[[0,0,2,1],[0,3,3,2],[0,3,3,0],[1,2,3,1]],[[0,0,2,1],[0,3,3,2],[0,3,3,0],[1,2,2,2]],[[0,0,2,2],[0,3,3,2],[0,3,3,1],[1,2,1,1]],[[0,0,2,1],[0,3,4,2],[0,3,3,1],[1,2,1,1]],[[0,0,2,1],[0,3,3,3],[0,3,3,1],[1,2,1,1]],[[0,0,2,1],[0,3,3,2],[0,3,4,1],[1,2,1,1]],[[0,0,2,2],[0,3,3,2],[0,3,3,1],[1,2,2,0]],[[0,0,2,1],[0,3,4,2],[0,3,3,1],[1,2,2,0]],[[0,0,2,1],[0,3,3,3],[0,3,3,1],[1,2,2,0]],[[0,0,2,1],[0,3,3,2],[0,3,4,1],[1,2,2,0]],[[0,0,2,1],[0,3,3,2],[0,3,3,1],[1,3,2,0]],[[0,0,2,1],[0,3,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,3,1],[2,3,3,1],[1,0,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,3,1],[1,0,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,3,1],[1,0,3,0],[1,0,2,1]],[[0,0,2,2],[0,3,3,2],[1,0,3,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,3],[1,0,3,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,0,3,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,0,3,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,2],[1,0,3,2],[1,2,2,2]],[[0,0,2,2],[0,3,3,2],[1,2,1,2],[1,2,2,1]],[[0,0,2,1],[0,3,4,2],[1,2,1,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,3],[1,2,1,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,2,1,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,2,1,2],[2,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,2,1,2],[1,3,2,1]],[[0,0,2,1],[0,3,3,2],[1,2,1,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,2],[1,2,1,2],[1,2,2,2]],[[0,0,2,2],[0,3,3,2],[1,2,2,2],[1,2,1,1]],[[0,0,2,1],[0,3,4,2],[1,2,2,2],[1,2,1,1]],[[0,0,2,1],[0,3,3,3],[1,2,2,2],[1,2,1,1]],[[0,0,2,1],[0,3,3,2],[1,2,2,3],[1,2,1,1]],[[0,0,2,1],[0,3,3,2],[1,2,2,2],[1,2,1,2]],[[0,0,2,2],[0,3,3,2],[1,2,2,2],[1,2,2,0]],[[0,0,2,1],[0,3,4,2],[1,2,2,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,3],[1,2,2,2],[1,2,2,0]],[[0,0,2,1],[0,3,3,2],[1,2,2,3],[1,2,2,0]],[[0,0,2,2],[0,3,3,2],[1,2,3,0],[1,2,2,1]],[[0,0,2,1],[0,3,4,2],[1,2,3,0],[1,2,2,1]],[[0,0,2,1],[0,3,3,3],[1,2,3,0],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,2,4,0],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,2,3,0],[2,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,2,3,0],[1,3,2,1]],[[0,0,2,1],[0,3,3,2],[1,2,3,0],[1,2,3,1]],[[0,0,2,1],[0,3,3,2],[1,2,3,0],[1,2,2,2]],[[0,0,2,2],[0,3,3,2],[1,2,3,1],[1,2,1,1]],[[0,0,2,1],[0,3,4,2],[1,2,3,1],[1,2,1,1]],[[0,0,2,1],[0,3,3,3],[1,2,3,1],[1,2,1,1]],[[0,0,2,1],[0,3,3,2],[1,2,4,1],[1,2,1,1]],[[0,0,2,2],[0,3,3,2],[1,2,3,1],[1,2,2,0]],[[0,0,2,1],[0,3,4,2],[1,2,3,1],[1,2,2,0]],[[0,0,2,1],[0,3,3,3],[1,2,3,1],[1,2,2,0]],[[0,0,2,1],[0,3,3,2],[1,2,4,1],[1,2,2,0]],[[0,0,2,1],[0,3,3,2],[1,2,3,1],[2,2,2,0]],[[0,0,2,1],[0,3,3,2],[1,2,3,1],[1,3,2,0]],[[0,0,2,1],[0,3,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,3,4,1],[1,0,3,0],[0,2,1,1]],[[1,2,2,2],[2,3,3,1],[1,0,3,0],[0,2,1,1]],[[1,2,3,1],[2,3,3,1],[1,0,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,1],[1,0,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,1],[1,0,3,0],[0,2,1,1]],[[1,2,2,1],[2,3,4,1],[1,0,3,0],[0,1,2,1]],[[1,2,2,2],[2,3,3,1],[1,0,3,0],[0,1,2,1]],[[1,2,3,1],[2,3,3,1],[1,0,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,3,1],[1,0,3,0],[0,1,2,1]],[[0,0,2,2],[0,3,3,2],[1,3,0,2],[1,2,2,1]],[[0,0,2,1],[0,3,4,2],[1,3,0,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,3],[1,3,0,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,4,0,2],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,0,3],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,0,2],[2,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,0,2],[1,3,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,0,2],[1,2,3,1]],[[0,0,2,1],[0,3,3,2],[1,3,0,2],[1,2,2,2]],[[0,0,2,2],[0,3,3,2],[1,3,1,2],[1,1,2,1]],[[0,0,2,1],[0,3,4,2],[1,3,1,2],[1,1,2,1]],[[0,0,2,1],[0,3,3,3],[1,3,1,2],[1,1,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,1,3],[1,1,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,1,2],[1,1,3,1]],[[0,0,2,1],[0,3,3,2],[1,3,1,2],[1,1,2,2]],[[0,0,2,1],[0,3,3,2],[1,4,2,0],[1,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,2,0],[2,2,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,2,0],[1,3,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,2,0],[1,2,3,1]],[[0,0,2,1],[0,3,3,2],[1,3,2,0],[1,2,2,2]],[[0,0,2,1],[0,3,3,2],[1,4,2,1],[1,2,2,0]],[[0,0,2,1],[0,3,3,2],[1,3,2,1],[2,2,2,0]],[[0,0,2,1],[0,3,3,2],[1,3,2,1],[1,3,2,0]],[[0,0,2,1],[0,3,3,2],[1,3,2,1],[1,2,3,0]],[[0,0,2,2],[0,3,3,2],[1,3,2,2],[1,0,2,1]],[[0,0,2,1],[0,3,4,2],[1,3,2,2],[1,0,2,1]],[[0,0,2,1],[0,3,3,3],[1,3,2,2],[1,0,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,2,3],[1,0,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,2,2],[1,0,2,2]],[[0,0,2,2],[0,3,3,2],[1,3,2,2],[1,1,1,1]],[[0,0,2,1],[0,3,4,2],[1,3,2,2],[1,1,1,1]],[[0,0,2,1],[0,3,3,3],[1,3,2,2],[1,1,1,1]],[[0,0,2,1],[0,3,3,2],[1,3,2,3],[1,1,1,1]],[[0,0,2,1],[0,3,3,2],[1,3,2,2],[1,1,1,2]],[[0,0,2,2],[0,3,3,2],[1,3,2,2],[1,1,2,0]],[[0,0,2,1],[0,3,4,2],[1,3,2,2],[1,1,2,0]],[[0,0,2,1],[0,3,3,3],[1,3,2,2],[1,1,2,0]],[[0,0,2,1],[0,3,3,2],[1,3,2,3],[1,1,2,0]],[[0,0,2,2],[0,3,3,2],[1,3,2,2],[1,2,0,1]],[[0,0,2,1],[0,3,4,2],[1,3,2,2],[1,2,0,1]],[[0,0,2,1],[0,3,3,3],[1,3,2,2],[1,2,0,1]],[[0,0,2,1],[0,3,3,2],[1,3,2,3],[1,2,0,1]],[[0,0,2,1],[0,3,3,2],[1,3,2,2],[1,2,0,2]],[[0,0,2,2],[0,3,3,2],[1,3,2,2],[1,2,1,0]],[[0,0,2,1],[0,3,4,2],[1,3,2,2],[1,2,1,0]],[[0,0,2,1],[0,3,3,3],[1,3,2,2],[1,2,1,0]],[[0,0,2,1],[0,3,3,2],[1,3,2,3],[1,2,1,0]],[[2,2,2,1],[2,3,3,1],[1,0,3,0],[0,1,2,1]],[[0,0,2,2],[0,3,3,2],[1,3,3,0],[1,1,2,1]],[[0,0,2,1],[0,3,4,2],[1,3,3,0],[1,1,2,1]],[[0,0,2,1],[0,3,3,3],[1,3,3,0],[1,1,2,1]],[[0,0,2,1],[0,3,3,2],[1,4,3,0],[1,1,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,4,0],[1,1,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,3,0],[1,1,3,1]],[[0,0,2,1],[0,3,3,2],[1,3,3,0],[1,1,2,2]],[[0,0,2,2],[0,3,3,2],[1,3,3,0],[1,2,1,1]],[[0,0,2,1],[0,3,4,2],[1,3,3,0],[1,2,1,1]],[[0,0,2,1],[0,3,3,3],[1,3,3,0],[1,2,1,1]],[[0,0,2,1],[0,3,3,2],[1,4,3,0],[1,2,1,1]],[[0,0,2,1],[0,3,3,2],[1,3,4,0],[1,2,1,1]],[[0,0,2,1],[0,3,3,2],[1,3,3,0],[2,2,1,1]],[[0,0,2,1],[0,3,3,2],[1,3,3,0],[1,3,1,1]],[[0,0,2,2],[0,3,3,2],[1,3,3,1],[1,0,2,1]],[[0,0,2,1],[0,3,4,2],[1,3,3,1],[1,0,2,1]],[[0,0,2,1],[0,3,3,3],[1,3,3,1],[1,0,2,1]],[[0,0,2,1],[0,3,3,2],[1,3,4,1],[1,0,2,1]],[[0,0,2,2],[0,3,3,2],[1,3,3,1],[1,1,1,1]],[[0,0,2,1],[0,3,4,2],[1,3,3,1],[1,1,1,1]],[[0,0,2,1],[0,3,3,3],[1,3,3,1],[1,1,1,1]],[[0,0,2,1],[0,3,3,2],[1,4,3,1],[1,1,1,1]],[[0,0,2,1],[0,3,3,2],[1,3,4,1],[1,1,1,1]],[[0,0,2,2],[0,3,3,2],[1,3,3,1],[1,1,2,0]],[[0,0,2,1],[0,3,4,2],[1,3,3,1],[1,1,2,0]],[[0,0,2,1],[0,3,3,3],[1,3,3,1],[1,1,2,0]],[[0,0,2,1],[0,3,3,2],[1,4,3,1],[1,1,2,0]],[[0,0,2,1],[0,3,3,2],[1,3,4,1],[1,1,2,0]],[[0,0,2,1],[0,3,3,2],[1,3,3,1],[1,1,3,0]],[[0,0,2,2],[0,3,3,2],[1,3,3,1],[1,2,0,1]],[[0,0,2,1],[0,3,4,2],[1,3,3,1],[1,2,0,1]],[[0,0,2,1],[0,3,3,3],[1,3,3,1],[1,2,0,1]],[[0,0,2,1],[0,3,3,2],[1,4,3,1],[1,2,0,1]],[[0,0,2,1],[0,3,3,2],[1,3,4,1],[1,2,0,1]],[[0,0,2,1],[0,3,3,2],[1,3,3,1],[2,2,0,1]],[[0,0,2,1],[0,3,3,2],[1,3,3,1],[1,3,0,1]],[[0,0,2,2],[0,3,3,2],[1,3,3,1],[1,2,1,0]],[[0,0,2,1],[0,3,4,2],[1,3,3,1],[1,2,1,0]],[[0,0,2,1],[0,3,3,3],[1,3,3,1],[1,2,1,0]],[[0,0,2,1],[0,3,3,2],[1,4,3,1],[1,2,1,0]],[[0,0,2,1],[0,3,3,2],[1,3,4,1],[1,2,1,0]],[[0,0,2,1],[0,3,3,2],[1,3,3,1],[2,2,1,0]],[[0,0,2,1],[0,3,3,2],[1,3,3,1],[1,3,1,0]],[[0,0,2,2],[0,3,3,2],[1,3,3,2],[1,1,0,1]],[[0,0,2,1],[0,3,4,2],[1,3,3,2],[1,1,0,1]],[[0,0,2,1],[0,3,3,3],[1,3,3,2],[1,1,0,1]],[[0,0,2,1],[0,3,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,3,4,1],[1,0,2,2],[1,1,1,0]],[[1,2,2,2],[2,3,3,1],[1,0,2,2],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[1,0,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[1,0,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[1,0,2,2],[1,1,1,0]],[[1,2,2,1],[2,3,4,1],[1,0,2,2],[1,1,0,1]],[[1,2,2,2],[2,3,3,1],[1,0,2,2],[1,1,0,1]],[[1,2,3,1],[2,3,3,1],[1,0,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,3,1],[1,0,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,3,1],[1,0,2,2],[1,1,0,1]],[[1,2,2,1],[2,3,4,1],[1,0,2,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,1],[1,0,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,1],[1,0,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,1],[1,0,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,1],[1,0,2,2],[1,0,2,0]],[[1,2,2,1],[2,3,4,1],[1,0,2,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,1],[1,0,2,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[1,0,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[1,0,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[1,0,2,2],[1,0,1,1]],[[0,0,2,2],[0,3,3,2],[2,0,3,2],[0,2,2,1]],[[0,0,2,1],[0,3,3,3],[2,0,3,2],[0,2,2,1]],[[0,0,2,1],[0,3,3,2],[2,0,3,3],[0,2,2,1]],[[0,0,2,1],[0,3,3,2],[2,0,3,2],[0,2,3,1]],[[0,0,2,1],[0,3,3,2],[2,0,3,2],[0,2,2,2]],[[1,2,2,1],[2,3,4,1],[1,0,2,2],[0,2,1,0]],[[1,2,2,2],[2,3,3,1],[1,0,2,2],[0,2,1,0]],[[1,2,3,1],[2,3,3,1],[1,0,2,2],[0,2,1,0]],[[0,0,2,2],[0,3,3,2],[2,2,1,2],[0,2,2,1]],[[0,0,2,1],[0,3,4,2],[2,2,1,2],[0,2,2,1]],[[0,0,2,1],[0,3,3,3],[2,2,1,2],[0,2,2,1]],[[0,0,2,1],[0,3,3,2],[2,2,1,3],[0,2,2,1]],[[0,0,2,1],[0,3,3,2],[2,2,1,2],[0,3,2,1]],[[0,0,2,1],[0,3,3,2],[2,2,1,2],[0,2,3,1]],[[0,0,2,1],[0,3,3,2],[2,2,1,2],[0,2,2,2]],[[0,0,2,2],[0,3,3,2],[2,2,2,2],[0,2,1,1]],[[0,0,2,1],[0,3,4,2],[2,2,2,2],[0,2,1,1]],[[0,0,2,1],[0,3,3,3],[2,2,2,2],[0,2,1,1]],[[0,0,2,1],[0,3,3,2],[2,2,2,3],[0,2,1,1]],[[0,0,2,1],[0,3,3,2],[2,2,2,2],[0,2,1,2]],[[0,0,2,2],[0,3,3,2],[2,2,2,2],[0,2,2,0]],[[0,0,2,1],[0,3,4,2],[2,2,2,2],[0,2,2,0]],[[0,0,2,1],[0,3,3,3],[2,2,2,2],[0,2,2,0]],[[0,0,2,1],[0,3,3,2],[2,2,2,3],[0,2,2,0]],[[1,3,2,1],[2,3,3,1],[1,0,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[1,0,2,2],[0,2,1,0]],[[1,2,2,1],[2,3,4,1],[1,0,2,2],[0,2,0,1]],[[1,2,2,2],[2,3,3,1],[1,0,2,2],[0,2,0,1]],[[1,2,3,1],[2,3,3,1],[1,0,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,3,1],[1,0,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,3,1],[1,0,2,2],[0,2,0,1]],[[0,0,2,2],[0,3,3,2],[2,2,3,0],[0,2,2,1]],[[0,0,2,1],[0,3,4,2],[2,2,3,0],[0,2,2,1]],[[0,0,2,1],[0,3,3,3],[2,2,3,0],[0,2,2,1]],[[0,0,2,1],[0,3,3,2],[2,2,4,0],[0,2,2,1]],[[0,0,2,1],[0,3,3,2],[2,2,3,0],[0,3,2,1]],[[0,0,2,1],[0,3,3,2],[2,2,3,0],[0,2,3,1]],[[0,0,2,1],[0,3,3,2],[2,2,3,0],[0,2,2,2]],[[0,0,2,2],[0,3,3,2],[2,2,3,1],[0,2,1,1]],[[0,0,2,1],[0,3,4,2],[2,2,3,1],[0,2,1,1]],[[0,0,2,1],[0,3,3,3],[2,2,3,1],[0,2,1,1]],[[0,0,2,1],[0,3,3,2],[2,2,4,1],[0,2,1,1]],[[0,0,2,2],[0,3,3,2],[2,2,3,1],[0,2,2,0]],[[0,0,2,1],[0,3,4,2],[2,2,3,1],[0,2,2,0]],[[0,0,2,1],[0,3,3,3],[2,2,3,1],[0,2,2,0]],[[0,0,2,1],[0,3,3,2],[2,2,4,1],[0,2,2,0]],[[0,0,2,1],[0,3,3,2],[2,2,3,1],[0,3,2,0]],[[0,0,2,1],[0,3,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,3,4,1],[1,0,2,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,1],[1,0,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,1],[1,0,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,3,1],[1,0,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,1],[1,0,2,2],[0,1,2,0]],[[1,2,2,1],[2,3,4,1],[1,0,2,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,1],[1,0,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,1],[1,0,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,1],[1,0,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,1],[1,0,2,2],[0,1,1,1]],[[1,2,2,1],[2,3,4,1],[1,0,2,2],[0,0,2,1]],[[1,2,2,2],[2,3,3,1],[1,0,2,2],[0,0,2,1]],[[1,2,3,1],[2,3,3,1],[1,0,2,2],[0,0,2,1]],[[1,3,2,1],[2,3,3,1],[1,0,2,2],[0,0,2,1]],[[2,2,2,1],[2,3,3,1],[1,0,2,2],[0,0,2,1]],[[1,2,2,1],[2,3,4,1],[1,0,1,2],[1,0,2,1]],[[1,2,2,2],[2,3,3,1],[1,0,1,2],[1,0,2,1]],[[1,2,3,1],[2,3,3,1],[1,0,1,2],[1,0,2,1]],[[1,3,2,1],[2,3,3,1],[1,0,1,2],[1,0,2,1]],[[2,2,2,1],[2,3,3,1],[1,0,1,2],[1,0,2,1]],[[1,2,2,1],[2,3,4,1],[1,0,1,2],[0,1,2,1]],[[1,2,2,2],[2,3,3,1],[1,0,1,2],[0,1,2,1]],[[1,2,3,1],[2,3,3,1],[1,0,1,2],[0,1,2,1]],[[1,3,2,1],[2,3,3,1],[1,0,1,2],[0,1,2,1]],[[2,2,2,1],[2,3,3,1],[1,0,1,2],[0,1,2,1]],[[0,0,2,2],[0,3,3,2],[2,3,0,2],[0,2,2,1]],[[0,0,2,1],[0,3,4,2],[2,3,0,2],[0,2,2,1]],[[0,0,2,1],[0,3,3,3],[2,3,0,2],[0,2,2,1]],[[0,0,2,1],[0,3,3,2],[2,4,0,2],[0,2,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,0,3],[0,2,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,0,2],[0,3,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,0,2],[0,2,3,1]],[[0,0,2,1],[0,3,3,2],[2,3,0,2],[0,2,2,2]],[[0,0,2,2],[0,3,3,2],[2,3,1,2],[0,1,2,1]],[[0,0,2,1],[0,3,4,2],[2,3,1,2],[0,1,2,1]],[[0,0,2,1],[0,3,3,3],[2,3,1,2],[0,1,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,1,3],[0,1,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,1,2],[0,1,3,1]],[[0,0,2,1],[0,3,3,2],[2,3,1,2],[0,1,2,2]],[[0,0,2,2],[0,3,3,2],[2,3,1,2],[1,0,2,1]],[[0,0,2,1],[0,3,4,2],[2,3,1,2],[1,0,2,1]],[[0,0,2,1],[0,3,3,3],[2,3,1,2],[1,0,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,1,3],[1,0,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,1,2],[1,0,3,1]],[[0,0,2,1],[0,3,3,2],[2,3,1,2],[1,0,2,2]],[[0,0,2,1],[0,3,3,2],[2,4,2,0],[0,2,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,0],[0,3,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,0],[0,2,3,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,0],[0,2,2,2]],[[0,0,2,1],[0,3,3,2],[2,4,2,1],[0,2,2,0]],[[0,0,2,1],[0,3,3,2],[2,3,2,1],[0,3,2,0]],[[0,0,2,1],[0,3,3,2],[2,3,2,1],[0,2,3,0]],[[0,0,2,2],[0,3,3,2],[2,3,2,2],[0,0,2,1]],[[0,0,2,1],[0,3,4,2],[2,3,2,2],[0,0,2,1]],[[0,0,2,1],[0,3,3,3],[2,3,2,2],[0,0,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,3],[0,0,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,2],[0,0,2,2]],[[0,0,2,2],[0,3,3,2],[2,3,2,2],[0,1,1,1]],[[0,0,2,1],[0,3,4,2],[2,3,2,2],[0,1,1,1]],[[0,0,2,1],[0,3,3,3],[2,3,2,2],[0,1,1,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,3],[0,1,1,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,2],[0,1,1,2]],[[0,0,2,2],[0,3,3,2],[2,3,2,2],[0,1,2,0]],[[0,0,2,1],[0,3,4,2],[2,3,2,2],[0,1,2,0]],[[0,0,2,1],[0,3,3,3],[2,3,2,2],[0,1,2,0]],[[0,0,2,1],[0,3,3,2],[2,3,2,3],[0,1,2,0]],[[0,0,2,2],[0,3,3,2],[2,3,2,2],[0,2,0,1]],[[0,0,2,1],[0,3,4,2],[2,3,2,2],[0,2,0,1]],[[0,0,2,1],[0,3,3,3],[2,3,2,2],[0,2,0,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,3],[0,2,0,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,2],[0,2,0,2]],[[0,0,2,2],[0,3,3,2],[2,3,2,2],[0,2,1,0]],[[0,0,2,1],[0,3,4,2],[2,3,2,2],[0,2,1,0]],[[0,0,2,1],[0,3,3,3],[2,3,2,2],[0,2,1,0]],[[0,0,2,1],[0,3,3,2],[2,3,2,3],[0,2,1,0]],[[0,0,2,2],[0,3,3,2],[2,3,2,2],[1,0,1,1]],[[0,0,2,1],[0,3,4,2],[2,3,2,2],[1,0,1,1]],[[0,0,2,1],[0,3,3,3],[2,3,2,2],[1,0,1,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,3],[1,0,1,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,2],[1,0,1,2]],[[0,0,2,2],[0,3,3,2],[2,3,2,2],[1,0,2,0]],[[0,0,2,1],[0,3,4,2],[2,3,2,2],[1,0,2,0]],[[0,0,2,1],[0,3,3,3],[2,3,2,2],[1,0,2,0]],[[0,0,2,1],[0,3,3,2],[2,3,2,3],[1,0,2,0]],[[0,0,2,2],[0,3,3,2],[2,3,2,2],[1,1,0,1]],[[0,0,2,1],[0,3,4,2],[2,3,2,2],[1,1,0,1]],[[0,0,2,1],[0,3,3,3],[2,3,2,2],[1,1,0,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,3],[1,1,0,1]],[[0,0,2,1],[0,3,3,2],[2,3,2,2],[1,1,0,2]],[[0,0,2,2],[0,3,3,2],[2,3,2,2],[1,1,1,0]],[[0,0,2,1],[0,3,4,2],[2,3,2,2],[1,1,1,0]],[[0,0,2,1],[0,3,3,3],[2,3,2,2],[1,1,1,0]],[[0,0,2,1],[0,3,3,2],[2,3,2,3],[1,1,1,0]],[[0,0,2,2],[0,3,3,2],[2,3,3,0],[0,1,2,1]],[[0,0,2,1],[0,3,4,2],[2,3,3,0],[0,1,2,1]],[[0,0,2,1],[0,3,3,3],[2,3,3,0],[0,1,2,1]],[[0,0,2,1],[0,3,3,2],[2,4,3,0],[0,1,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,4,0],[0,1,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,3,0],[0,1,3,1]],[[0,0,2,1],[0,3,3,2],[2,3,3,0],[0,1,2,2]],[[0,0,2,2],[0,3,3,2],[2,3,3,0],[0,2,1,1]],[[0,0,2,1],[0,3,4,2],[2,3,3,0],[0,2,1,1]],[[0,0,2,1],[0,3,3,3],[2,3,3,0],[0,2,1,1]],[[0,0,2,1],[0,3,3,2],[2,4,3,0],[0,2,1,1]],[[0,0,2,1],[0,3,3,2],[2,3,4,0],[0,2,1,1]],[[0,0,2,1],[0,3,3,2],[2,3,3,0],[0,3,1,1]],[[0,0,2,2],[0,3,3,2],[2,3,3,0],[1,0,2,1]],[[0,0,2,1],[0,3,4,2],[2,3,3,0],[1,0,2,1]],[[0,0,2,1],[0,3,3,3],[2,3,3,0],[1,0,2,1]],[[0,0,2,1],[0,3,3,2],[2,4,3,0],[1,0,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,4,0],[1,0,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,3,0],[1,0,3,1]],[[0,0,2,1],[0,3,3,2],[2,3,3,0],[1,0,2,2]],[[0,0,2,2],[0,3,3,2],[2,3,3,0],[1,1,1,1]],[[0,0,2,1],[0,3,4,2],[2,3,3,0],[1,1,1,1]],[[0,0,2,1],[0,3,3,3],[2,3,3,0],[1,1,1,1]],[[0,0,2,1],[0,3,3,2],[2,4,3,0],[1,1,1,1]],[[0,0,2,1],[0,3,3,2],[2,3,4,0],[1,1,1,1]],[[0,0,2,2],[0,3,3,2],[2,3,3,1],[0,0,2,1]],[[0,0,2,1],[0,3,4,2],[2,3,3,1],[0,0,2,1]],[[0,0,2,1],[0,3,3,3],[2,3,3,1],[0,0,2,1]],[[0,0,2,1],[0,3,3,2],[2,3,4,1],[0,0,2,1]],[[0,0,2,2],[0,3,3,2],[2,3,3,1],[0,1,1,1]],[[0,0,2,1],[0,3,4,2],[2,3,3,1],[0,1,1,1]],[[0,0,2,1],[0,3,3,3],[2,3,3,1],[0,1,1,1]],[[0,0,2,1],[0,3,3,2],[2,4,3,1],[0,1,1,1]],[[0,0,2,1],[0,3,3,2],[2,3,4,1],[0,1,1,1]],[[0,0,2,2],[0,3,3,2],[2,3,3,1],[0,1,2,0]],[[0,0,2,1],[0,3,4,2],[2,3,3,1],[0,1,2,0]],[[0,0,2,1],[0,3,3,3],[2,3,3,1],[0,1,2,0]],[[0,0,2,1],[0,3,3,2],[2,4,3,1],[0,1,2,0]],[[0,0,2,1],[0,3,3,2],[2,3,4,1],[0,1,2,0]],[[0,0,2,1],[0,3,3,2],[2,3,3,1],[0,1,3,0]],[[0,0,2,2],[0,3,3,2],[2,3,3,1],[0,2,0,1]],[[0,0,2,1],[0,3,4,2],[2,3,3,1],[0,2,0,1]],[[0,0,2,1],[0,3,3,3],[2,3,3,1],[0,2,0,1]],[[0,0,2,1],[0,3,3,2],[2,4,3,1],[0,2,0,1]],[[0,0,2,1],[0,3,3,2],[2,3,4,1],[0,2,0,1]],[[0,0,2,1],[0,3,3,2],[2,3,3,1],[0,3,0,1]],[[0,0,2,2],[0,3,3,2],[2,3,3,1],[0,2,1,0]],[[0,0,2,1],[0,3,4,2],[2,3,3,1],[0,2,1,0]],[[0,0,2,1],[0,3,3,3],[2,3,3,1],[0,2,1,0]],[[0,0,2,1],[0,3,3,2],[2,4,3,1],[0,2,1,0]],[[0,0,2,1],[0,3,3,2],[2,3,4,1],[0,2,1,0]],[[0,0,2,1],[0,3,3,2],[2,3,3,1],[0,3,1,0]],[[0,0,2,2],[0,3,3,2],[2,3,3,1],[1,0,1,1]],[[0,0,2,1],[0,3,4,2],[2,3,3,1],[1,0,1,1]],[[0,0,2,1],[0,3,3,3],[2,3,3,1],[1,0,1,1]],[[0,0,2,1],[0,3,3,2],[2,4,3,1],[1,0,1,1]],[[0,0,2,1],[0,3,3,2],[2,3,4,1],[1,0,1,1]],[[0,0,2,2],[0,3,3,2],[2,3,3,1],[1,0,2,0]],[[0,0,2,1],[0,3,4,2],[2,3,3,1],[1,0,2,0]],[[0,0,2,1],[0,3,3,3],[2,3,3,1],[1,0,2,0]],[[0,0,2,1],[0,3,3,2],[2,4,3,1],[1,0,2,0]],[[0,0,2,1],[0,3,3,2],[2,3,4,1],[1,0,2,0]],[[0,0,2,1],[0,3,3,2],[2,3,3,1],[1,0,3,0]],[[0,0,2,2],[0,3,3,2],[2,3,3,1],[1,1,0,1]],[[0,0,2,1],[0,3,4,2],[2,3,3,1],[1,1,0,1]],[[0,0,2,1],[0,3,3,3],[2,3,3,1],[1,1,0,1]],[[0,0,2,1],[0,3,3,2],[2,4,3,1],[1,1,0,1]],[[0,0,2,1],[0,3,3,2],[2,3,4,1],[1,1,0,1]],[[0,0,2,2],[0,3,3,2],[2,3,3,1],[1,1,1,0]],[[0,0,2,1],[0,3,4,2],[2,3,3,1],[1,1,1,0]],[[0,0,2,1],[0,3,3,3],[2,3,3,1],[1,1,1,0]],[[0,0,2,1],[0,3,3,2],[2,4,3,1],[1,1,1,0]],[[0,0,2,1],[0,3,3,2],[2,3,4,1],[1,1,1,0]],[[0,0,2,2],[0,3,3,2],[2,3,3,2],[0,1,0,1]],[[0,0,2,1],[0,3,4,2],[2,3,3,2],[0,1,0,1]],[[0,0,2,1],[0,3,3,3],[2,3,3,2],[0,1,0,1]],[[0,0,2,1],[0,3,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,4,3,1],[0,3,2,1],[1,1,0,0]],[[1,2,2,2],[2,3,3,1],[0,3,2,1],[1,1,0,0]],[[1,2,3,1],[2,3,3,1],[0,3,2,1],[1,1,0,0]],[[1,3,2,1],[2,3,3,1],[0,3,2,1],[1,1,0,0]],[[2,2,2,1],[2,3,3,1],[0,3,2,1],[1,1,0,0]],[[0,0,2,2],[0,3,3,2],[2,3,3,2],[1,0,0,1]],[[0,0,2,1],[0,3,4,2],[2,3,3,2],[1,0,0,1]],[[0,0,2,1],[0,3,3,3],[2,3,3,2],[1,0,0,1]],[[0,0,2,1],[0,3,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,4,3,1],[0,3,2,1],[0,2,0,0]],[[1,2,2,2],[2,3,3,1],[0,3,2,1],[0,2,0,0]],[[1,2,3,1],[2,3,3,1],[0,3,2,1],[0,2,0,0]],[[1,3,2,1],[2,3,3,1],[0,3,2,1],[0,2,0,0]],[[2,2,2,1],[2,3,3,1],[0,3,2,1],[0,2,0,0]],[[0,0,2,1],[1,0,1,2],[2,3,3,3],[1,2,2,1]],[[0,0,2,1],[1,0,1,2],[2,3,3,2],[2,2,2,1]],[[0,0,2,1],[1,0,1,2],[2,3,3,2],[1,3,2,1]],[[0,0,2,1],[1,0,1,2],[2,3,3,2],[1,2,3,1]],[[0,0,2,1],[1,0,1,2],[2,3,3,2],[1,2,2,2]],[[0,0,2,1],[1,0,2,2],[1,3,3,3],[1,2,2,1]],[[0,0,2,1],[1,0,2,2],[1,3,3,2],[1,3,2,1]],[[0,0,2,1],[1,0,2,2],[1,3,3,2],[1,2,3,1]],[[0,0,2,1],[1,0,2,2],[1,3,3,2],[1,2,2,2]],[[0,0,2,2],[1,0,2,2],[2,3,2,2],[1,2,2,1]],[[0,0,2,1],[1,0,2,3],[2,3,2,2],[1,2,2,1]],[[0,0,2,1],[1,0,2,2],[2,3,2,3],[1,2,2,1]],[[0,0,2,1],[1,0,2,2],[2,3,2,2],[2,2,2,1]],[[0,0,2,1],[1,0,2,2],[2,3,2,2],[1,3,2,1]],[[0,0,2,1],[1,0,2,2],[2,3,2,2],[1,2,3,1]],[[0,0,2,1],[1,0,2,2],[2,3,2,2],[1,2,2,2]],[[0,0,2,1],[1,0,2,2],[2,3,4,1],[1,2,2,1]],[[0,0,2,1],[1,0,2,2],[2,3,3,1],[2,2,2,1]],[[0,0,2,1],[1,0,2,2],[2,3,3,1],[1,3,2,1]],[[0,0,2,1],[1,0,2,2],[2,3,3,1],[1,2,3,1]],[[0,0,2,1],[1,0,2,2],[2,3,3,1],[1,2,2,2]],[[0,0,2,1],[1,0,2,2],[2,3,3,3],[0,2,2,1]],[[0,0,2,1],[1,0,2,2],[2,3,3,2],[0,2,3,1]],[[0,0,2,1],[1,0,2,2],[2,3,3,2],[0,2,2,2]],[[0,0,2,2],[1,0,2,2],[2,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,0,2,3],[2,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,0,2,2],[2,3,4,2],[1,2,1,1]],[[0,0,2,1],[1,0,2,2],[2,3,3,3],[1,2,1,1]],[[0,0,2,1],[1,0,2,2],[2,3,3,2],[1,2,1,2]],[[0,0,2,2],[1,0,2,2],[2,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,0,2,3],[2,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,0,2,2],[2,3,4,2],[1,2,2,0]],[[0,0,2,1],[1,0,2,2],[2,3,3,3],[1,2,2,0]],[[0,0,2,1],[1,0,2,2],[2,3,3,2],[2,2,2,0]],[[0,0,2,1],[1,0,2,2],[2,3,3,2],[1,3,2,0]],[[0,0,2,1],[1,0,2,2],[2,3,3,2],[1,2,3,0]],[[0,0,2,1],[1,0,3,0],[2,3,4,2],[1,2,2,1]],[[0,0,2,1],[1,0,3,0],[2,3,3,2],[2,2,2,1]],[[0,0,2,1],[1,0,3,0],[2,3,3,2],[1,3,2,1]],[[0,0,2,1],[1,0,3,0],[2,3,3,2],[1,2,3,1]],[[0,0,2,1],[1,0,3,0],[2,3,3,2],[1,2,2,2]],[[0,0,2,1],[1,0,3,1],[2,3,2,3],[1,2,2,1]],[[0,0,2,1],[1,0,3,1],[2,3,2,2],[2,2,2,1]],[[0,0,2,1],[1,0,3,1],[2,3,2,2],[1,3,2,1]],[[0,0,2,1],[1,0,3,1],[2,3,2,2],[1,2,3,1]],[[0,0,2,1],[1,0,3,1],[2,3,2,2],[1,2,2,2]],[[0,0,2,1],[1,0,3,1],[2,3,4,1],[1,2,2,1]],[[0,0,2,1],[1,0,3,1],[2,3,3,1],[2,2,2,1]],[[0,0,2,1],[1,0,3,1],[2,3,3,1],[1,3,2,1]],[[0,0,2,1],[1,0,3,1],[2,3,3,1],[1,2,3,1]],[[0,0,2,1],[1,0,3,1],[2,3,3,1],[1,2,2,2]],[[0,0,2,1],[1,0,3,1],[2,3,4,2],[1,2,1,1]],[[0,0,2,1],[1,0,3,1],[2,3,3,3],[1,2,1,1]],[[0,0,2,1],[1,0,3,1],[2,3,3,2],[1,2,1,2]],[[0,0,2,1],[1,0,3,1],[2,3,4,2],[1,2,2,0]],[[0,0,2,1],[1,0,3,1],[2,3,3,3],[1,2,2,0]],[[0,0,2,1],[1,0,3,1],[2,3,3,2],[2,2,2,0]],[[0,0,2,1],[1,0,3,1],[2,3,3,2],[1,3,2,0]],[[0,0,2,1],[1,0,3,1],[2,3,3,2],[1,2,3,0]],[[0,0,2,2],[1,0,3,2],[0,3,3,2],[1,2,2,1]],[[0,0,2,1],[1,0,3,3],[0,3,3,2],[1,2,2,1]],[[0,0,2,1],[1,0,3,2],[0,3,3,3],[1,2,2,1]],[[0,0,2,1],[1,0,3,2],[0,3,3,2],[1,2,3,1]],[[0,0,2,1],[1,0,3,2],[0,3,3,2],[1,2,2,2]],[[0,0,2,2],[1,0,3,2],[1,2,3,2],[1,2,2,1]],[[0,0,2,1],[1,0,3,3],[1,2,3,2],[1,2,2,1]],[[0,0,2,1],[1,0,3,2],[1,2,3,3],[1,2,2,1]],[[0,0,2,1],[1,0,3,2],[1,2,3,2],[1,2,3,1]],[[0,0,2,1],[1,0,3,2],[1,2,3,2],[1,2,2,2]],[[0,0,2,2],[1,0,3,2],[1,3,2,2],[1,2,2,1]],[[0,0,2,1],[1,0,3,3],[1,3,2,2],[1,2,2,1]],[[0,0,2,1],[1,0,3,2],[1,3,2,3],[1,2,2,1]],[[0,0,2,1],[1,0,3,2],[1,3,2,2],[2,2,2,1]],[[0,0,2,1],[1,0,3,2],[1,3,2,2],[1,3,2,1]],[[0,0,2,1],[1,0,3,2],[1,3,2,2],[1,2,3,1]],[[0,0,2,1],[1,0,3,2],[1,3,2,2],[1,2,2,2]],[[0,0,2,1],[1,0,3,2],[1,3,4,1],[1,2,2,1]],[[0,0,2,1],[1,0,3,2],[1,3,3,1],[2,2,2,1]],[[0,0,2,1],[1,0,3,2],[1,3,3,1],[1,3,2,1]],[[0,0,2,1],[1,0,3,2],[1,3,3,1],[1,2,3,1]],[[0,0,2,1],[1,0,3,2],[1,3,3,1],[1,2,2,2]],[[0,0,2,2],[1,0,3,2],[1,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,0,3,3],[1,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,0,3,2],[1,3,4,2],[1,2,1,1]],[[0,0,2,1],[1,0,3,2],[1,3,3,3],[1,2,1,1]],[[0,0,2,1],[1,0,3,2],[1,3,3,2],[1,2,1,2]],[[0,0,2,2],[1,0,3,2],[1,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,0,3,3],[1,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,0,3,2],[1,3,4,2],[1,2,2,0]],[[0,0,2,1],[1,0,3,2],[1,3,3,3],[1,2,2,0]],[[0,0,2,1],[1,0,3,2],[1,3,3,2],[2,2,2,0]],[[0,0,2,1],[1,0,3,2],[1,3,3,2],[1,3,2,0]],[[0,0,2,1],[1,0,3,2],[1,3,3,2],[1,2,3,0]],[[0,0,2,2],[1,0,3,2],[2,2,3,2],[0,2,2,1]],[[0,0,2,1],[1,0,3,3],[2,2,3,2],[0,2,2,1]],[[0,0,2,1],[1,0,3,2],[2,2,3,3],[0,2,2,1]],[[0,0,2,1],[1,0,3,2],[2,2,3,2],[0,2,3,1]],[[0,0,2,1],[1,0,3,2],[2,2,3,2],[0,2,2,2]],[[0,0,2,2],[1,0,3,2],[2,3,2,2],[0,2,2,1]],[[0,0,2,1],[1,0,3,3],[2,3,2,2],[0,2,2,1]],[[0,0,2,1],[1,0,3,2],[2,3,2,3],[0,2,2,1]],[[0,0,2,1],[1,0,3,2],[2,3,2,2],[0,3,2,1]],[[0,0,2,1],[1,0,3,2],[2,3,2,2],[0,2,3,1]],[[0,0,2,1],[1,0,3,2],[2,3,2,2],[0,2,2,2]],[[0,0,2,1],[1,0,3,2],[2,3,4,0],[1,2,2,1]],[[0,0,2,1],[1,0,3,2],[2,3,3,0],[2,2,2,1]],[[0,0,2,1],[1,0,3,2],[2,3,3,0],[1,3,2,1]],[[0,0,2,1],[1,0,3,2],[2,3,3,0],[1,2,3,1]],[[0,0,2,1],[1,0,3,2],[2,3,3,0],[1,2,2,2]],[[0,0,2,1],[1,0,3,2],[2,3,4,1],[0,2,2,1]],[[0,0,2,1],[1,0,3,2],[2,3,3,1],[0,3,2,1]],[[0,0,2,1],[1,0,3,2],[2,3,3,1],[0,2,3,1]],[[0,0,2,1],[1,0,3,2],[2,3,3,1],[0,2,2,2]],[[0,0,2,1],[1,0,3,2],[2,3,4,1],[1,2,2,0]],[[0,0,2,1],[1,0,3,2],[2,3,3,1],[2,2,2,0]],[[0,0,2,1],[1,0,3,2],[2,3,3,1],[1,3,2,0]],[[0,0,2,1],[1,0,3,2],[2,3,3,1],[1,2,3,0]],[[0,0,2,2],[1,0,3,2],[2,3,3,2],[0,2,1,1]],[[0,0,2,1],[1,0,3,3],[2,3,3,2],[0,2,1,1]],[[0,0,2,1],[1,0,3,2],[2,3,4,2],[0,2,1,1]],[[0,0,2,1],[1,0,3,2],[2,3,3,3],[0,2,1,1]],[[0,0,2,1],[1,0,3,2],[2,3,3,2],[0,2,1,2]],[[0,0,2,2],[1,0,3,2],[2,3,3,2],[0,2,2,0]],[[0,0,2,1],[1,0,3,3],[2,3,3,2],[0,2,2,0]],[[0,0,2,1],[1,0,3,2],[2,3,4,2],[0,2,2,0]],[[0,0,2,1],[1,0,3,2],[2,3,3,3],[0,2,2,0]],[[0,0,2,1],[1,0,3,2],[2,3,3,2],[0,3,2,0]],[[0,0,2,1],[1,0,3,2],[2,3,3,2],[0,2,3,0]],[[0,0,2,1],[1,1,1,2],[1,3,3,3],[1,2,2,1]],[[0,0,2,1],[1,1,1,2],[1,3,3,2],[2,2,2,1]],[[0,0,2,1],[1,1,1,2],[1,3,3,2],[1,3,2,1]],[[0,0,2,1],[1,1,1,2],[1,3,3,2],[1,2,3,1]],[[0,0,2,1],[1,1,1,2],[1,3,3,2],[1,2,2,2]],[[0,0,2,1],[1,1,1,2],[2,3,3,3],[0,2,2,1]],[[0,0,2,1],[1,1,1,2],[2,3,3,2],[0,3,2,1]],[[0,0,2,1],[1,1,1,2],[2,3,3,2],[0,2,3,1]],[[0,0,2,1],[1,1,1,2],[2,3,3,2],[0,2,2,2]],[[0,0,2,2],[1,1,2,2],[1,3,2,2],[1,2,2,1]],[[0,0,2,1],[1,1,2,3],[1,3,2,2],[1,2,2,1]],[[0,0,2,1],[1,1,2,2],[1,3,2,3],[1,2,2,1]],[[0,0,2,1],[1,1,2,2],[1,3,2,2],[2,2,2,1]],[[0,0,2,1],[1,1,2,2],[1,3,2,2],[1,3,2,1]],[[0,0,2,1],[1,1,2,2],[1,3,2,2],[1,2,3,1]],[[0,0,2,1],[1,1,2,2],[1,3,2,2],[1,2,2,2]],[[0,0,2,1],[1,1,2,2],[1,3,4,1],[1,2,2,1]],[[0,0,2,1],[1,1,2,2],[1,3,3,1],[2,2,2,1]],[[0,0,2,1],[1,1,2,2],[1,3,3,1],[1,3,2,1]],[[0,0,2,1],[1,1,2,2],[1,3,3,1],[1,2,3,1]],[[0,0,2,1],[1,1,2,2],[1,3,3,1],[1,2,2,2]],[[0,0,2,2],[1,1,2,2],[1,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,1,2,3],[1,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,1,2,2],[1,3,4,2],[1,2,1,1]],[[0,0,2,1],[1,1,2,2],[1,3,3,3],[1,2,1,1]],[[0,0,2,1],[1,1,2,2],[1,3,3,2],[1,2,1,2]],[[0,0,2,2],[1,1,2,2],[1,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,1,2,3],[1,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,1,2,2],[1,3,4,2],[1,2,2,0]],[[0,0,2,1],[1,1,2,2],[1,3,3,3],[1,2,2,0]],[[0,0,2,1],[1,1,2,2],[1,3,3,2],[2,2,2,0]],[[0,0,2,1],[1,1,2,2],[1,3,3,2],[1,3,2,0]],[[0,0,2,1],[1,1,2,2],[1,3,3,2],[1,2,3,0]],[[0,0,2,2],[1,1,2,2],[2,3,2,2],[0,2,2,1]],[[0,0,2,1],[1,1,2,3],[2,3,2,2],[0,2,2,1]],[[0,0,2,1],[1,1,2,2],[2,3,2,3],[0,2,2,1]],[[0,0,2,1],[1,1,2,2],[2,3,2,2],[0,3,2,1]],[[0,0,2,1],[1,1,2,2],[2,3,2,2],[0,2,3,1]],[[0,0,2,1],[1,1,2,2],[2,3,2,2],[0,2,2,2]],[[0,0,2,1],[1,1,2,2],[2,3,4,1],[0,2,2,1]],[[0,0,2,1],[1,1,2,2],[2,3,3,1],[0,3,2,1]],[[0,0,2,1],[1,1,2,2],[2,3,3,1],[0,2,3,1]],[[0,0,2,1],[1,1,2,2],[2,3,3,1],[0,2,2,2]],[[0,0,2,2],[1,1,2,2],[2,3,3,2],[0,2,1,1]],[[0,0,2,1],[1,1,2,3],[2,3,3,2],[0,2,1,1]],[[0,0,2,1],[1,1,2,2],[2,3,4,2],[0,2,1,1]],[[0,0,2,1],[1,1,2,2],[2,3,3,3],[0,2,1,1]],[[0,0,2,1],[1,1,2,2],[2,3,3,2],[0,2,1,2]],[[0,0,2,2],[1,1,2,2],[2,3,3,2],[0,2,2,0]],[[0,0,2,1],[1,1,2,3],[2,3,3,2],[0,2,2,0]],[[0,0,2,1],[1,1,2,2],[2,3,4,2],[0,2,2,0]],[[0,0,2,1],[1,1,2,2],[2,3,3,3],[0,2,2,0]],[[0,0,2,1],[1,1,2,2],[2,3,3,2],[0,3,2,0]],[[0,0,2,1],[1,1,2,2],[2,3,3,2],[0,2,3,0]],[[0,0,2,1],[1,1,3,0],[1,3,4,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,0],[1,3,3,2],[2,2,2,1]],[[0,0,2,1],[1,1,3,0],[1,3,3,2],[1,3,2,1]],[[0,0,2,1],[1,1,3,0],[1,3,3,2],[1,2,3,1]],[[0,0,2,1],[1,1,3,0],[1,3,3,2],[1,2,2,2]],[[0,0,2,1],[1,1,3,0],[2,3,4,2],[0,2,2,1]],[[0,0,2,1],[1,1,3,0],[2,3,3,2],[0,3,2,1]],[[0,0,2,1],[1,1,3,0],[2,3,3,2],[0,2,3,1]],[[0,0,2,1],[1,1,3,0],[2,3,3,2],[0,2,2,2]],[[0,0,2,1],[1,1,3,1],[1,3,2,3],[1,2,2,1]],[[0,0,2,1],[1,1,3,1],[1,3,2,2],[2,2,2,1]],[[0,0,2,1],[1,1,3,1],[1,3,2,2],[1,3,2,1]],[[0,0,2,1],[1,1,3,1],[1,3,2,2],[1,2,3,1]],[[0,0,2,1],[1,1,3,1],[1,3,2,2],[1,2,2,2]],[[0,0,2,1],[1,1,3,1],[1,3,4,1],[1,2,2,1]],[[0,0,2,1],[1,1,3,1],[1,3,3,1],[2,2,2,1]],[[0,0,2,1],[1,1,3,1],[1,3,3,1],[1,3,2,1]],[[0,0,2,1],[1,1,3,1],[1,3,3,1],[1,2,3,1]],[[0,0,2,1],[1,1,3,1],[1,3,3,1],[1,2,2,2]],[[0,0,2,1],[1,1,3,1],[1,3,4,2],[1,2,1,1]],[[0,0,2,1],[1,1,3,1],[1,3,3,3],[1,2,1,1]],[[0,0,2,1],[1,1,3,1],[1,3,3,2],[1,2,1,2]],[[0,0,2,1],[1,1,3,1],[1,3,4,2],[1,2,2,0]],[[0,0,2,1],[1,1,3,1],[1,3,3,3],[1,2,2,0]],[[0,0,2,1],[1,1,3,1],[1,3,3,2],[2,2,2,0]],[[0,0,2,1],[1,1,3,1],[1,3,3,2],[1,3,2,0]],[[0,0,2,1],[1,1,3,1],[1,3,3,2],[1,2,3,0]],[[0,0,2,1],[1,1,3,1],[2,3,2,3],[0,2,2,1]],[[0,0,2,1],[1,1,3,1],[2,3,2,2],[0,3,2,1]],[[0,0,2,1],[1,1,3,1],[2,3,2,2],[0,2,3,1]],[[0,0,2,1],[1,1,3,1],[2,3,2,2],[0,2,2,2]],[[0,0,2,1],[1,1,3,1],[2,3,4,1],[0,2,2,1]],[[0,0,2,1],[1,1,3,1],[2,3,3,1],[0,3,2,1]],[[0,0,2,1],[1,1,3,1],[2,3,3,1],[0,2,3,1]],[[0,0,2,1],[1,1,3,1],[2,3,3,1],[0,2,2,2]],[[0,0,2,1],[1,1,3,1],[2,3,4,2],[0,2,1,1]],[[0,0,2,1],[1,1,3,1],[2,3,3,3],[0,2,1,1]],[[0,0,2,1],[1,1,3,1],[2,3,3,2],[0,2,1,2]],[[0,0,2,1],[1,1,3,1],[2,3,4,2],[0,2,2,0]],[[0,0,2,1],[1,1,3,1],[2,3,3,3],[0,2,2,0]],[[0,0,2,1],[1,1,3,1],[2,3,3,2],[0,3,2,0]],[[0,0,2,1],[1,1,3,1],[2,3,3,2],[0,2,3,0]],[[0,0,2,2],[1,1,3,2],[0,2,3,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,3],[0,2,3,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[0,2,3,3],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[0,2,3,2],[1,2,3,1]],[[0,0,2,1],[1,1,3,2],[0,2,3,2],[1,2,2,2]],[[0,0,2,2],[1,1,3,2],[0,3,2,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,3],[0,3,2,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[0,3,2,3],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[0,3,2,2],[1,3,2,1]],[[0,0,2,1],[1,1,3,2],[0,3,2,2],[1,2,3,1]],[[0,0,2,1],[1,1,3,2],[0,3,2,2],[1,2,2,2]],[[0,0,2,1],[1,1,3,2],[0,3,4,1],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[0,3,3,1],[1,3,2,1]],[[0,0,2,1],[1,1,3,2],[0,3,3,1],[1,2,3,1]],[[0,0,2,1],[1,1,3,2],[0,3,3,1],[1,2,2,2]],[[0,0,2,2],[1,1,3,2],[0,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,1,3,3],[0,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,1,3,2],[0,3,4,2],[1,2,1,1]],[[0,0,2,1],[1,1,3,2],[0,3,3,3],[1,2,1,1]],[[0,0,2,1],[1,1,3,2],[0,3,3,2],[1,2,1,2]],[[0,0,2,2],[1,1,3,2],[0,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,1,3,3],[0,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,1,3,2],[0,3,4,2],[1,2,2,0]],[[0,0,2,1],[1,1,3,2],[0,3,3,3],[1,2,2,0]],[[0,0,2,1],[1,1,3,2],[0,3,3,2],[1,3,2,0]],[[0,0,2,1],[1,1,3,2],[0,3,3,2],[1,2,3,0]],[[0,0,2,2],[1,1,3,2],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,3],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[1,1,3,3],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[1,1,3,2],[1,2,3,1]],[[0,0,2,1],[1,1,3,2],[1,1,3,2],[1,2,2,2]],[[0,0,2,2],[1,1,3,2],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,3],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[1,2,2,3],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[1,2,2,2],[2,2,2,1]],[[0,0,2,1],[1,1,3,2],[1,2,2,2],[1,3,2,1]],[[0,0,2,1],[1,1,3,2],[1,2,2,2],[1,2,3,1]],[[0,0,2,1],[1,1,3,2],[1,2,2,2],[1,2,2,2]],[[0,0,2,1],[1,1,3,2],[1,2,4,1],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[1,2,3,1],[2,2,2,1]],[[0,0,2,1],[1,1,3,2],[1,2,3,1],[1,3,2,1]],[[0,0,2,1],[1,1,3,2],[1,2,3,1],[1,2,3,1]],[[0,0,2,1],[1,1,3,2],[1,2,3,1],[1,2,2,2]],[[0,0,2,2],[1,1,3,2],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[1,1,3,3],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[1,1,3,2],[1,2,4,2],[1,2,1,1]],[[0,0,2,1],[1,1,3,2],[1,2,3,3],[1,2,1,1]],[[0,0,2,1],[1,1,3,2],[1,2,3,2],[1,2,1,2]],[[0,0,2,2],[1,1,3,2],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[1,1,3,3],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[1,1,3,2],[1,2,4,2],[1,2,2,0]],[[0,0,2,1],[1,1,3,2],[1,2,3,3],[1,2,2,0]],[[0,0,2,1],[1,1,3,2],[1,2,3,2],[2,2,2,0]],[[0,0,2,1],[1,1,3,2],[1,2,3,2],[1,3,2,0]],[[0,0,2,1],[1,1,3,2],[1,2,3,2],[1,2,3,0]],[[0,0,2,2],[1,1,3,2],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[1,1,3,3],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[1,1,3,2],[1,3,2,3],[1,1,2,1]],[[0,0,2,1],[1,1,3,2],[1,3,2,2],[1,1,3,1]],[[0,0,2,1],[1,1,3,2],[1,3,2,2],[1,1,2,2]],[[0,0,2,1],[1,1,3,2],[1,3,4,0],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,0],[2,2,2,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,0],[1,3,2,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,0],[1,2,3,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,0],[1,2,2,2]],[[0,0,2,1],[1,1,3,2],[1,3,4,1],[1,1,2,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,1],[1,1,3,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,1],[1,1,2,2]],[[0,0,2,1],[1,1,3,2],[1,3,4,1],[1,2,2,0]],[[0,0,2,1],[1,1,3,2],[1,3,3,1],[2,2,2,0]],[[0,0,2,1],[1,1,3,2],[1,3,3,1],[1,3,2,0]],[[0,0,2,1],[1,1,3,2],[1,3,3,1],[1,2,3,0]],[[0,0,2,2],[1,1,3,2],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[1,1,3,3],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[1,1,3,2],[1,3,4,2],[1,0,2,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,3],[1,0,2,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,2],[1,0,2,2]],[[0,0,2,2],[1,1,3,2],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[1,1,3,3],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[1,1,3,2],[1,3,4,2],[1,1,1,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,3],[1,1,1,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,2],[1,1,1,2]],[[0,0,2,2],[1,1,3,2],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[1,1,3,3],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[1,1,3,2],[1,3,4,2],[1,1,2,0]],[[0,0,2,1],[1,1,3,2],[1,3,3,3],[1,1,2,0]],[[0,0,2,1],[1,1,3,2],[1,3,3,2],[1,1,3,0]],[[0,0,2,2],[1,1,3,2],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[1,1,3,3],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[1,1,3,2],[1,3,4,2],[1,2,0,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,3],[1,2,0,1]],[[0,0,2,1],[1,1,3,2],[1,3,3,2],[1,2,0,2]],[[0,0,2,2],[1,1,3,2],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[1,1,3,3],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[1,1,3,2],[1,3,4,2],[1,2,1,0]],[[0,0,2,1],[1,1,3,2],[1,3,3,3],[1,2,1,0]],[[0,0,2,2],[1,1,3,2],[2,0,3,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,3],[2,0,3,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,0,3,3],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,0,3,2],[1,2,3,1]],[[0,0,2,1],[1,1,3,2],[2,0,3,2],[1,2,2,2]],[[0,0,2,2],[1,1,3,2],[2,1,2,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,3],[2,1,2,2],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,1,2,3],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,1,2,2],[2,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,1,2,2],[1,3,2,1]],[[0,0,2,1],[1,1,3,2],[2,1,2,2],[1,2,3,1]],[[0,0,2,1],[1,1,3,2],[2,1,2,2],[1,2,2,2]],[[0,0,2,1],[1,1,3,2],[2,1,4,1],[1,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,1,3,1],[2,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,1,3,1],[1,3,2,1]],[[0,0,2,1],[1,1,3,2],[2,1,3,1],[1,2,3,1]],[[0,0,2,1],[1,1,3,2],[2,1,3,1],[1,2,2,2]],[[0,0,2,2],[1,1,3,2],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[1,1,3,3],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,1,3,3],[0,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,1,3,2],[0,2,3,1]],[[0,0,2,1],[1,1,3,2],[2,1,3,2],[0,2,2,2]],[[0,0,2,2],[1,1,3,2],[2,1,3,2],[1,2,1,1]],[[0,0,2,1],[1,1,3,3],[2,1,3,2],[1,2,1,1]],[[0,0,2,1],[1,1,3,2],[2,1,4,2],[1,2,1,1]],[[0,0,2,1],[1,1,3,2],[2,1,3,3],[1,2,1,1]],[[0,0,2,1],[1,1,3,2],[2,1,3,2],[1,2,1,2]],[[0,0,2,2],[1,1,3,2],[2,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,1,3,3],[2,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,1,3,2],[2,1,4,2],[1,2,2,0]],[[0,0,2,1],[1,1,3,2],[2,1,3,3],[1,2,2,0]],[[0,0,2,1],[1,1,3,2],[2,1,3,2],[2,2,2,0]],[[0,0,2,1],[1,1,3,2],[2,1,3,2],[1,3,2,0]],[[0,0,2,1],[1,1,3,2],[2,1,3,2],[1,2,3,0]],[[0,0,2,2],[1,1,3,2],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[1,1,3,3],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,2,2,3],[0,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,2,2,2],[0,3,2,1]],[[0,0,2,1],[1,1,3,2],[2,2,2,2],[0,2,3,1]],[[0,0,2,1],[1,1,3,2],[2,2,2,2],[0,2,2,2]],[[0,0,2,1],[1,1,3,2],[2,2,4,1],[0,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,2,3,1],[0,3,2,1]],[[0,0,2,1],[1,1,3,2],[2,2,3,1],[0,2,3,1]],[[0,0,2,1],[1,1,3,2],[2,2,3,1],[0,2,2,2]],[[0,0,2,2],[1,1,3,2],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[1,1,3,3],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[1,1,3,2],[2,2,4,2],[0,2,1,1]],[[0,0,2,1],[1,1,3,2],[2,2,3,3],[0,2,1,1]],[[0,0,2,1],[1,1,3,2],[2,2,3,2],[0,2,1,2]],[[0,0,2,2],[1,1,3,2],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[1,1,3,3],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[1,1,3,2],[2,2,4,2],[0,2,2,0]],[[0,0,2,1],[1,1,3,2],[2,2,3,3],[0,2,2,0]],[[0,0,2,1],[1,1,3,2],[2,2,3,2],[0,3,2,0]],[[0,0,2,1],[1,1,3,2],[2,2,3,2],[0,2,3,0]],[[0,0,2,2],[1,1,3,2],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[1,1,3,3],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[1,1,3,2],[2,3,2,3],[0,1,2,1]],[[0,0,2,1],[1,1,3,2],[2,3,2,2],[0,1,3,1]],[[0,0,2,1],[1,1,3,2],[2,3,2,2],[0,1,2,2]],[[0,0,2,2],[1,1,3,2],[2,3,2,2],[1,0,2,1]],[[0,0,2,1],[1,1,3,3],[2,3,2,2],[1,0,2,1]],[[0,0,2,1],[1,1,3,2],[2,3,2,3],[1,0,2,1]],[[0,0,2,1],[1,1,3,2],[2,3,2,2],[1,0,3,1]],[[0,0,2,1],[1,1,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,4,3,1],[0,3,1,1],[1,2,0,0]],[[0,0,2,1],[1,1,3,2],[2,3,4,0],[0,2,2,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,0],[0,3,2,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,0],[0,2,3,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,0],[0,2,2,2]],[[0,0,2,1],[1,1,3,2],[2,3,4,1],[0,1,2,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,1],[0,1,3,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,1],[0,1,2,2]],[[0,0,2,1],[1,1,3,2],[2,3,4,1],[0,2,2,0]],[[0,0,2,1],[1,1,3,2],[2,3,3,1],[0,3,2,0]],[[0,0,2,1],[1,1,3,2],[2,3,3,1],[0,2,3,0]],[[0,0,2,1],[1,1,3,2],[2,3,4,1],[1,0,2,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,1],[1,0,3,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,2],[2,3,3,1],[0,3,1,1],[1,2,0,0]],[[1,2,3,1],[2,3,3,1],[0,3,1,1],[1,2,0,0]],[[1,3,2,1],[2,3,3,1],[0,3,1,1],[1,2,0,0]],[[2,2,2,1],[2,3,3,1],[0,3,1,1],[1,2,0,0]],[[0,0,2,2],[1,1,3,2],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[1,1,3,3],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[1,1,3,2],[2,3,4,2],[0,0,2,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,3],[0,0,2,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,2],[0,0,2,2]],[[0,0,2,2],[1,1,3,2],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[1,1,3,3],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[1,1,3,2],[2,3,4,2],[0,1,1,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,3],[0,1,1,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,2],[0,1,1,2]],[[0,0,2,2],[1,1,3,2],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[1,1,3,3],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[1,1,3,2],[2,3,4,2],[0,1,2,0]],[[0,0,2,1],[1,1,3,2],[2,3,3,3],[0,1,2,0]],[[0,0,2,1],[1,1,3,2],[2,3,3,2],[0,1,3,0]],[[0,0,2,2],[1,1,3,2],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[1,1,3,3],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[1,1,3,2],[2,3,4,2],[0,2,0,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,3],[0,2,0,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,2],[0,2,0,2]],[[0,0,2,2],[1,1,3,2],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[1,1,3,3],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[1,1,3,2],[2,3,4,2],[0,2,1,0]],[[0,0,2,1],[1,1,3,2],[2,3,3,3],[0,2,1,0]],[[0,0,2,2],[1,1,3,2],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[1,1,3,3],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[1,1,3,2],[2,3,4,2],[1,0,1,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,3],[1,0,1,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,2],[1,0,1,2]],[[0,0,2,2],[1,1,3,2],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[1,1,3,3],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[1,1,3,2],[2,3,4,2],[1,0,2,0]],[[0,0,2,1],[1,1,3,2],[2,3,3,3],[1,0,2,0]],[[0,0,2,1],[1,1,3,2],[2,3,3,2],[1,0,3,0]],[[0,0,2,2],[1,1,3,2],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,1,3,3],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,1,3,2],[2,3,4,2],[1,1,0,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,3],[1,1,0,1]],[[0,0,2,1],[1,1,3,2],[2,3,3,2],[1,1,0,2]],[[0,0,2,2],[1,1,3,2],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[1,1,3,3],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[1,1,3,2],[2,3,4,2],[1,1,1,0]],[[0,0,2,1],[1,1,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,1,1],[1,1,1,0]],[[1,2,2,2],[2,3,3,1],[0,3,1,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[0,3,1,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[0,3,1,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[0,3,1,1],[1,1,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,1,1],[1,1,0,1]],[[1,2,2,2],[2,3,3,1],[0,3,1,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,1],[0,3,1,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,1],[0,3,1,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,1],[0,3,1,1],[1,1,0,1]],[[1,2,2,1],[2,4,3,1],[0,3,1,1],[1,0,2,0]],[[1,2,2,2],[2,3,3,1],[0,3,1,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,1],[0,3,1,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,1],[0,3,1,1],[1,0,2,0]],[[2,2,2,1],[2,3,3,1],[0,3,1,1],[1,0,2,0]],[[1,2,2,1],[2,4,3,1],[0,3,1,1],[1,0,1,1]],[[1,2,2,2],[2,3,3,1],[0,3,1,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[0,3,1,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[0,3,1,1],[1,0,1,1]],[[0,0,2,1],[1,2,1,2],[0,3,3,3],[1,2,2,1]],[[0,0,2,1],[1,2,1,2],[0,3,3,2],[1,3,2,1]],[[0,0,2,1],[1,2,1,2],[0,3,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,1,2],[0,3,3,2],[1,2,2,2]],[[0,0,2,1],[1,2,1,2],[1,2,3,3],[1,2,2,1]],[[0,0,2,1],[1,2,1,2],[1,2,3,2],[2,2,2,1]],[[0,0,2,1],[1,2,1,2],[1,2,3,2],[1,3,2,1]],[[0,0,2,1],[1,2,1,2],[1,2,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,1,2],[1,2,3,2],[1,2,2,2]],[[0,0,2,1],[1,2,1,2],[1,3,3,3],[1,1,2,1]],[[0,0,2,1],[1,2,1,2],[1,3,3,2],[1,1,3,1]],[[0,0,2,1],[1,2,1,2],[1,3,3,2],[1,1,2,2]],[[0,0,2,1],[1,2,1,2],[2,1,3,3],[1,2,2,1]],[[0,0,2,1],[1,2,1,2],[2,1,3,2],[2,2,2,1]],[[0,0,2,1],[1,2,1,2],[2,1,3,2],[1,3,2,1]],[[0,0,2,1],[1,2,1,2],[2,1,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,1,2],[2,1,3,2],[1,2,2,2]],[[0,0,2,1],[1,2,1,2],[2,2,3,3],[0,2,2,1]],[[0,0,2,1],[1,2,1,2],[2,2,3,2],[0,3,2,1]],[[0,0,2,1],[1,2,1,2],[2,2,3,2],[0,2,3,1]],[[0,0,2,1],[1,2,1,2],[2,2,3,2],[0,2,2,2]],[[0,0,2,1],[1,2,1,2],[2,3,3,3],[0,1,2,1]],[[0,0,2,1],[1,2,1,2],[2,3,3,2],[0,1,3,1]],[[0,0,2,1],[1,2,1,2],[2,3,3,2],[0,1,2,2]],[[0,0,2,1],[1,2,1,2],[2,3,3,3],[1,0,2,1]],[[0,0,2,1],[1,2,1,2],[2,3,3,2],[1,0,3,1]],[[0,0,2,1],[1,2,1,2],[2,3,3,2],[1,0,2,2]],[[2,2,2,1],[2,3,3,1],[0,3,1,1],[1,0,1,1]],[[0,0,2,2],[1,2,2,2],[0,2,3,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,3],[0,2,3,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[0,2,3,3],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[0,2,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[0,2,3,2],[1,2,2,2]],[[0,0,2,2],[1,2,2,2],[0,3,2,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,3],[0,3,2,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[0,3,2,3],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[0,3,2,2],[1,3,2,1]],[[0,0,2,1],[1,2,2,2],[0,3,2,2],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[0,3,2,2],[1,2,2,2]],[[0,0,2,1],[1,2,2,2],[0,3,4,1],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[0,3,3,1],[1,3,2,1]],[[0,0,2,1],[1,2,2,2],[0,3,3,1],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[0,3,3,1],[1,2,2,2]],[[0,0,2,2],[1,2,2,2],[0,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,2,2,3],[0,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[0,3,4,2],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[0,3,3,3],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[0,3,3,2],[1,2,1,2]],[[0,0,2,2],[1,2,2,2],[0,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,3],[0,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[0,3,4,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[0,3,3,3],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[0,3,3,2],[1,3,2,0]],[[0,0,2,1],[1,2,2,2],[0,3,3,2],[1,2,3,0]],[[0,0,2,2],[1,2,2,2],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,3],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,1,3,3],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,1,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[1,1,3,2],[1,2,2,2]],[[0,0,2,2],[1,2,2,2],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,3],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,2,2,3],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,2,2,2],[2,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,2,2,2],[1,3,2,1]],[[0,0,2,1],[1,2,2,2],[1,2,2,2],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[1,2,2,2],[1,2,2,2]],[[0,0,2,1],[1,2,2,2],[1,2,4,1],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,2,3,1],[2,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,2,3,1],[1,3,2,1]],[[0,0,2,1],[1,2,2,2],[1,2,3,1],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[1,2,3,1],[1,2,2,2]],[[0,0,2,2],[1,2,2,2],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[1,2,2,3],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[1,2,4,2],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[1,2,3,3],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[1,2,3,2],[1,2,1,2]],[[0,0,2,2],[1,2,2,2],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,3],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[1,2,4,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[1,2,3,3],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[1,2,3,2],[2,2,2,0]],[[0,0,2,1],[1,2,2,2],[1,2,3,2],[1,3,2,0]],[[0,0,2,1],[1,2,2,2],[1,2,3,2],[1,2,3,0]],[[0,0,2,2],[1,2,2,2],[1,3,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,3],[1,3,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,4,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,1,3],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,1,2],[2,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,1,2],[1,3,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,1,2],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[1,3,1,2],[1,2,2,2]],[[0,0,2,1],[1,2,2,2],[1,4,2,1],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,2,1],[2,2,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,2,1],[1,3,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,2,1],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[1,3,2,1],[1,2,2,2]],[[0,0,2,2],[1,2,2,2],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[1,2,2,3],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,2,3],[1,1,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,2,2],[1,1,3,1]],[[0,0,2,1],[1,2,2,2],[1,3,2,2],[1,1,2,2]],[[0,0,2,1],[1,2,2,2],[1,4,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[1,3,2,2],[2,2,2,0]],[[0,0,2,1],[1,2,2,2],[1,3,2,2],[1,3,2,0]],[[0,0,2,1],[1,2,2,2],[1,3,2,2],[1,2,3,0]],[[0,0,2,1],[1,2,2,2],[1,4,3,1],[1,1,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,4,1],[1,1,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,1],[1,1,3,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,1],[1,1,2,2]],[[0,0,2,1],[1,2,2,2],[1,4,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[1,3,4,1],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,1],[2,2,1,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,1],[1,3,1,1]],[[0,0,2,2],[1,2,2,2],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[1,2,2,3],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,4,2],[1,0,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,3],[1,0,2,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,2],[1,0,2,2]],[[0,0,2,2],[1,2,2,2],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[1,2,2,3],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[1,2,2,2],[1,4,3,2],[1,1,1,1]],[[0,0,2,1],[1,2,2,2],[1,3,4,2],[1,1,1,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,3],[1,1,1,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,2],[1,1,1,2]],[[0,0,2,2],[1,2,2,2],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[1,2,2,3],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[1,2,2,2],[1,4,3,2],[1,1,2,0]],[[0,0,2,1],[1,2,2,2],[1,3,4,2],[1,1,2,0]],[[0,0,2,1],[1,2,2,2],[1,3,3,3],[1,1,2,0]],[[0,0,2,1],[1,2,2,2],[1,3,3,2],[1,1,3,0]],[[0,0,2,2],[1,2,2,2],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[1,2,2,3],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[1,2,2,2],[1,4,3,2],[1,2,0,1]],[[0,0,2,1],[1,2,2,2],[1,3,4,2],[1,2,0,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,3],[1,2,0,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,2],[2,2,0,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,2],[1,3,0,1]],[[0,0,2,1],[1,2,2,2],[1,3,3,2],[1,2,0,2]],[[0,0,2,2],[1,2,2,2],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[1,2,2,3],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[1,2,2,2],[1,4,3,2],[1,2,1,0]],[[0,0,2,1],[1,2,2,2],[1,3,4,2],[1,2,1,0]],[[0,0,2,1],[1,2,2,2],[1,3,3,3],[1,2,1,0]],[[0,0,2,1],[1,2,2,2],[1,3,3,2],[2,2,1,0]],[[0,0,2,1],[1,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,1,1],[0,2,1,0]],[[1,2,2,2],[2,3,3,1],[0,3,1,1],[0,2,1,0]],[[0,0,2,2],[1,2,2,2],[2,0,3,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,3],[2,0,3,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,0,3,3],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,0,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[2,0,3,2],[1,2,2,2]],[[0,0,2,2],[1,2,2,2],[2,1,2,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,3],[2,1,2,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[3,1,2,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,1,2,3],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,1,2,2],[2,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,1,2,2],[1,3,2,1]],[[0,0,2,1],[1,2,2,2],[2,1,2,2],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[2,1,2,2],[1,2,2,2]],[[0,0,2,1],[1,2,2,2],[3,1,3,1],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,1,4,1],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,1,3,1],[2,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,1,3,1],[1,3,2,1]],[[0,0,2,1],[1,2,2,2],[2,1,3,1],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[2,1,3,1],[1,2,2,2]],[[0,0,2,2],[1,2,2,2],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[1,2,2,3],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,1,3,3],[0,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,1,3,2],[0,2,3,1]],[[0,0,2,1],[1,2,2,2],[2,1,3,2],[0,2,2,2]],[[0,0,2,2],[1,2,2,2],[2,1,3,2],[1,2,1,1]],[[0,0,2,1],[1,2,2,3],[2,1,3,2],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[2,1,4,2],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[2,1,3,3],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[2,1,3,2],[1,2,1,2]],[[0,0,2,2],[1,2,2,2],[2,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,3],[2,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[3,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[2,1,4,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[2,1,3,3],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[2,1,3,2],[2,2,2,0]],[[0,0,2,1],[1,2,2,2],[2,1,3,2],[1,3,2,0]],[[0,0,2,1],[1,2,2,2],[2,1,3,2],[1,2,3,0]],[[0,0,2,2],[1,2,2,2],[2,2,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,3],[2,2,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[3,2,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,1,3],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,1,2],[2,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,1,2],[1,3,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,1,2],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[2,2,1,2],[1,2,2,2]],[[0,0,2,1],[1,2,2,2],[3,2,2,1],[1,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,2,1],[2,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,2,1],[1,3,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,2,1],[1,2,3,1]],[[0,0,2,1],[1,2,2,2],[2,2,2,1],[1,2,2,2]],[[0,0,2,2],[1,2,2,2],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[1,2,2,3],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,2,3],[0,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,2,2],[0,3,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,2,2],[0,2,3,1]],[[0,0,2,1],[1,2,2,2],[2,2,2,2],[0,2,2,2]],[[0,0,2,1],[1,2,2,2],[3,2,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,2,2],[2,2,2,2],[2,2,2,0]],[[0,0,2,1],[1,2,2,2],[2,2,2,2],[1,3,2,0]],[[0,0,2,1],[1,2,2,2],[2,2,2,2],[1,2,3,0]],[[0,0,2,1],[1,2,2,2],[2,2,4,1],[0,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,3,1],[0,3,2,1]],[[0,0,2,1],[1,2,2,2],[2,2,3,1],[0,2,3,1]],[[0,0,2,1],[1,2,2,2],[2,2,3,1],[0,2,2,2]],[[0,0,2,1],[1,2,2,2],[3,2,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,2,2],[2,2,3,1],[2,2,1,1]],[[0,0,2,1],[1,2,2,2],[2,2,3,1],[1,3,1,1]],[[0,0,2,2],[1,2,2,2],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[1,2,2,3],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[1,2,2,2],[2,2,4,2],[0,2,1,1]],[[0,0,2,1],[1,2,2,2],[2,2,3,3],[0,2,1,1]],[[0,0,2,1],[1,2,2,2],[2,2,3,2],[0,2,1,2]],[[0,0,2,2],[1,2,2,2],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[1,2,2,3],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[1,2,2,2],[2,2,4,2],[0,2,2,0]],[[0,0,2,1],[1,2,2,2],[2,2,3,3],[0,2,2,0]],[[0,0,2,1],[1,2,2,2],[2,2,3,2],[0,3,2,0]],[[0,0,2,1],[1,2,2,2],[2,2,3,2],[0,2,3,0]],[[0,0,2,1],[1,2,2,2],[3,2,3,2],[1,2,0,1]],[[0,0,2,1],[1,2,2,2],[2,2,3,2],[2,2,0,1]],[[0,0,2,1],[1,2,2,2],[2,2,3,2],[1,3,0,1]],[[0,0,2,1],[1,2,2,2],[3,2,3,2],[1,2,1,0]],[[0,0,2,1],[1,2,2,2],[2,2,3,2],[2,2,1,0]],[[0,0,2,1],[1,2,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,3,1],[2,3,3,1],[0,3,1,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,1],[0,3,1,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[0,3,1,1],[0,2,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,1,1],[0,2,0,1]],[[1,2,2,2],[2,3,3,1],[0,3,1,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,1],[0,3,1,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,1],[0,3,1,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,1],[0,3,1,1],[0,2,0,1]],[[0,0,2,2],[1,2,2,2],[2,3,1,2],[0,2,2,1]],[[0,0,2,1],[1,2,2,3],[2,3,1,2],[0,2,2,1]],[[0,0,2,1],[1,2,2,2],[3,3,1,2],[0,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,4,1,2],[0,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,1,3],[0,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,1,2],[0,3,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,1,2],[0,2,3,1]],[[0,0,2,1],[1,2,2,2],[2,3,1,2],[0,2,2,2]],[[0,0,2,1],[1,2,2,2],[3,3,1,2],[1,1,2,1]],[[0,0,2,1],[1,2,2,2],[2,4,1,2],[1,1,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,1,2],[2,1,2,1]],[[0,0,2,1],[1,2,2,2],[3,3,2,1],[0,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,4,2,1],[0,2,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,2,1],[0,3,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,2,1],[0,2,3,1]],[[0,0,2,1],[1,2,2,2],[2,3,2,1],[0,2,2,2]],[[0,0,2,1],[1,2,2,2],[3,3,2,1],[1,1,2,1]],[[0,0,2,1],[1,2,2,2],[2,4,2,1],[1,1,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,2,1],[2,1,2,1]],[[0,0,2,2],[1,2,2,2],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[1,2,2,3],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,2,3],[0,1,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,2,2],[0,1,3,1]],[[0,0,2,1],[1,2,2,2],[2,3,2,2],[0,1,2,2]],[[0,0,2,1],[1,2,2,2],[3,3,2,2],[0,2,2,0]],[[0,0,2,1],[1,2,2,2],[2,4,2,2],[0,2,2,0]],[[0,0,2,1],[1,2,2,2],[2,3,2,2],[0,3,2,0]],[[0,0,2,1],[1,2,2,2],[2,3,2,2],[0,2,3,0]],[[0,0,2,2],[1,2,2,2],[2,3,2,2],[1,0,2,1]],[[0,0,2,1],[1,2,2,3],[2,3,2,2],[1,0,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,2,3],[1,0,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,2,2],[1,0,3,1]],[[0,0,2,1],[1,2,2,2],[2,3,2,2],[1,0,2,2]],[[0,0,2,1],[1,2,2,2],[3,3,2,2],[1,1,2,0]],[[0,0,2,1],[1,2,2,2],[2,4,2,2],[1,1,2,0]],[[0,0,2,1],[1,2,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,4,3,1],[0,3,1,1],[0,1,2,0]],[[1,2,2,2],[2,3,3,1],[0,3,1,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,1],[0,3,1,1],[0,1,2,0]],[[1,3,2,1],[2,3,3,1],[0,3,1,1],[0,1,2,0]],[[2,2,2,1],[2,3,3,1],[0,3,1,1],[0,1,2,0]],[[0,0,2,1],[1,2,2,2],[3,3,3,1],[0,1,2,1]],[[0,0,2,1],[1,2,2,2],[2,4,3,1],[0,1,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,4,1],[0,1,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,1],[0,1,3,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,1],[0,1,2,2]],[[0,0,2,1],[1,2,2,2],[3,3,3,1],[0,2,1,1]],[[0,0,2,1],[1,2,2,2],[2,4,3,1],[0,2,1,1]],[[0,0,2,1],[1,2,2,2],[2,3,4,1],[0,2,1,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,1],[0,3,1,1]],[[0,0,2,1],[1,2,2,2],[3,3,3,1],[1,0,2,1]],[[0,0,2,1],[1,2,2,2],[2,4,3,1],[1,0,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,4,1],[1,0,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,1],[2,0,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,1],[1,0,3,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,1],[1,0,2,2]],[[0,0,2,1],[1,2,2,2],[3,3,3,1],[1,1,1,1]],[[0,0,2,1],[1,2,2,2],[2,4,3,1],[1,1,1,1]],[[0,0,2,1],[1,2,2,2],[2,3,4,1],[1,1,1,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[2,4,3,1],[0,3,1,1],[0,1,1,1]],[[1,2,2,2],[2,3,3,1],[0,3,1,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,1],[0,3,1,1],[0,1,1,1]],[[1,3,2,1],[2,3,3,1],[0,3,1,1],[0,1,1,1]],[[2,2,2,1],[2,3,3,1],[0,3,1,1],[0,1,1,1]],[[0,0,2,2],[1,2,2,2],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[1,2,2,3],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,4,2],[0,0,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,3],[0,0,2,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[0,0,2,2]],[[0,0,2,2],[1,2,2,2],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[1,2,2,3],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[1,2,2,2],[3,3,3,2],[0,1,1,1]],[[0,0,2,1],[1,2,2,2],[2,4,3,2],[0,1,1,1]],[[0,0,2,1],[1,2,2,2],[2,3,4,2],[0,1,1,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,3],[0,1,1,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[0,1,1,2]],[[0,0,2,2],[1,2,2,2],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[1,2,2,3],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[1,2,2,2],[3,3,3,2],[0,1,2,0]],[[0,0,2,1],[1,2,2,2],[2,4,3,2],[0,1,2,0]],[[0,0,2,1],[1,2,2,2],[2,3,4,2],[0,1,2,0]],[[0,0,2,1],[1,2,2,2],[2,3,3,3],[0,1,2,0]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[0,1,3,0]],[[0,0,2,2],[1,2,2,2],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[1,2,2,3],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[1,2,2,2],[3,3,3,2],[0,2,0,1]],[[0,0,2,1],[1,2,2,2],[2,4,3,2],[0,2,0,1]],[[0,0,2,1],[1,2,2,2],[2,3,4,2],[0,2,0,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,3],[0,2,0,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[0,3,0,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[0,2,0,2]],[[0,0,2,2],[1,2,2,2],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[1,2,2,3],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[1,2,2,2],[3,3,3,2],[0,2,1,0]],[[0,0,2,1],[1,2,2,2],[2,4,3,2],[0,2,1,0]],[[0,0,2,1],[1,2,2,2],[2,3,4,2],[0,2,1,0]],[[0,0,2,1],[1,2,2,2],[2,3,3,3],[0,2,1,0]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,1,0],[1,2,0,1]],[[1,2,3,1],[2,3,3,1],[0,3,1,0],[1,2,0,1]],[[1,3,2,1],[2,3,3,1],[0,3,1,0],[1,2,0,1]],[[2,2,2,1],[2,3,3,1],[0,3,1,0],[1,2,0,1]],[[0,0,2,2],[1,2,2,2],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[1,2,2,3],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[1,2,2,2],[3,3,3,2],[1,0,1,1]],[[0,0,2,1],[1,2,2,2],[2,4,3,2],[1,0,1,1]],[[0,0,2,1],[1,2,2,2],[2,3,4,2],[1,0,1,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,3],[1,0,1,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[2,0,1,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[1,0,1,2]],[[0,0,2,2],[1,2,2,2],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[1,2,2,3],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[1,2,2,2],[3,3,3,2],[1,0,2,0]],[[0,0,2,1],[1,2,2,2],[2,4,3,2],[1,0,2,0]],[[0,0,2,1],[1,2,2,2],[2,3,4,2],[1,0,2,0]],[[0,0,2,1],[1,2,2,2],[2,3,3,3],[1,0,2,0]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[2,0,2,0]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[1,0,3,0]],[[0,0,2,2],[1,2,2,2],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,2,2,3],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,2,2,2],[3,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,2,2,2],[2,4,3,2],[1,1,0,1]],[[0,0,2,1],[1,2,2,2],[2,3,4,2],[1,1,0,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,3],[1,1,0,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[2,1,0,1]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[1,1,0,2]],[[0,0,2,2],[1,2,2,2],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[1,2,2,3],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[1,2,2,2],[3,3,3,2],[1,1,1,0]],[[0,0,2,1],[1,2,2,2],[2,4,3,2],[1,1,1,0]],[[0,0,2,1],[1,2,2,2],[2,3,4,2],[1,1,1,0]],[[0,0,2,1],[1,2,2,2],[2,3,3,3],[1,1,1,0]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,1,0],[1,1,1,1]],[[1,2,2,2],[2,3,3,1],[0,3,1,0],[1,1,1,1]],[[1,2,3,1],[2,3,3,1],[0,3,1,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,1],[0,3,1,0],[1,1,1,1]],[[2,2,2,1],[2,3,3,1],[0,3,1,0],[1,1,1,1]],[[0,0,2,1],[1,2,2,2],[3,3,3,2],[1,2,0,0]],[[0,0,2,1],[1,2,2,2],[2,4,3,2],[1,2,0,0]],[[0,0,2,1],[1,2,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,4,3,1],[0,3,1,0],[1,0,2,1]],[[1,2,2,2],[2,3,3,1],[0,3,1,0],[1,0,2,1]],[[1,2,3,1],[2,3,3,1],[0,3,1,0],[1,0,2,1]],[[1,3,2,1],[2,3,3,1],[0,3,1,0],[1,0,2,1]],[[2,2,2,1],[2,3,3,1],[0,3,1,0],[1,0,2,1]],[[1,2,2,1],[2,4,3,1],[0,3,1,0],[0,2,1,1]],[[1,2,2,2],[2,3,3,1],[0,3,1,0],[0,2,1,1]],[[1,2,3,1],[2,3,3,1],[0,3,1,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,1],[0,3,1,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,1],[0,3,1,0],[0,2,1,1]],[[1,2,2,1],[2,4,3,1],[0,3,1,0],[0,1,2,1]],[[1,2,2,2],[2,3,3,1],[0,3,1,0],[0,1,2,1]],[[1,2,3,1],[2,3,3,1],[0,3,1,0],[0,1,2,1]],[[1,3,2,1],[2,3,3,1],[0,3,1,0],[0,1,2,1]],[[2,2,2,1],[2,3,3,1],[0,3,1,0],[0,1,2,1]],[[0,0,2,1],[1,2,3,0],[0,3,4,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,0],[0,3,3,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,0],[0,3,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,0],[0,3,3,2],[1,2,2,2]],[[0,0,2,1],[1,2,3,0],[1,2,4,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,0],[1,2,3,2],[2,2,2,1]],[[0,0,2,1],[1,2,3,0],[1,2,3,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,0],[1,2,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,0],[1,2,3,2],[1,2,2,2]],[[0,0,2,1],[1,2,3,0],[1,3,4,1],[1,2,2,1]],[[0,0,2,1],[1,2,3,0],[1,3,3,1],[2,2,2,1]],[[0,0,2,1],[1,2,3,0],[1,3,3,1],[1,3,2,1]],[[0,0,2,1],[1,2,3,0],[1,3,3,1],[1,2,3,1]],[[0,0,2,1],[1,2,3,0],[1,3,3,1],[1,2,2,2]],[[0,0,2,1],[1,2,3,0],[1,3,4,2],[1,1,2,1]],[[0,0,2,1],[1,2,3,0],[1,3,3,2],[1,1,3,1]],[[0,0,2,1],[1,2,3,0],[1,3,3,2],[1,1,2,2]],[[0,0,2,1],[1,2,3,0],[1,3,4,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,0],[1,3,3,2],[2,2,2,0]],[[0,0,2,1],[1,2,3,0],[1,3,3,2],[1,3,2,0]],[[0,0,2,1],[1,2,3,0],[1,3,3,2],[1,2,3,0]],[[0,0,2,1],[1,2,3,0],[2,1,4,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,0],[2,1,3,2],[2,2,2,1]],[[0,0,2,1],[1,2,3,0],[2,1,3,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,0],[2,1,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,0],[2,1,3,2],[1,2,2,2]],[[0,0,2,1],[1,2,3,0],[2,2,4,2],[0,2,2,1]],[[0,0,2,1],[1,2,3,0],[2,2,3,2],[0,3,2,1]],[[0,0,2,1],[1,2,3,0],[2,2,3,2],[0,2,3,1]],[[0,0,2,1],[1,2,3,0],[2,2,3,2],[0,2,2,2]],[[0,0,2,1],[1,2,3,0],[2,3,4,1],[0,2,2,1]],[[0,0,2,1],[1,2,3,0],[2,3,3,1],[0,3,2,1]],[[0,0,2,1],[1,2,3,0],[2,3,3,1],[0,2,3,1]],[[0,0,2,1],[1,2,3,0],[2,3,3,1],[0,2,2,2]],[[0,0,2,1],[1,2,3,0],[2,3,4,2],[0,1,2,1]],[[0,0,2,1],[1,2,3,0],[2,3,3,2],[0,1,3,1]],[[0,0,2,1],[1,2,3,0],[2,3,3,2],[0,1,2,2]],[[0,0,2,1],[1,2,3,0],[2,3,4,2],[0,2,2,0]],[[0,0,2,1],[1,2,3,0],[2,3,3,2],[0,3,2,0]],[[0,0,2,1],[1,2,3,0],[2,3,3,2],[0,2,3,0]],[[0,0,2,1],[1,2,3,0],[2,3,4,2],[1,0,2,1]],[[0,0,2,1],[1,2,3,0],[2,3,3,2],[1,0,3,1]],[[0,0,2,1],[1,2,3,0],[2,3,3,2],[1,0,2,2]],[[0,0,2,1],[1,2,3,1],[0,2,3,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[0,2,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[0,2,3,2],[1,2,2,2]],[[0,0,2,1],[1,2,3,1],[0,3,2,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[0,3,2,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,1],[0,3,2,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[0,3,2,2],[1,2,2,2]],[[0,0,2,1],[1,2,4,1],[0,3,3,1],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[0,3,4,1],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[0,3,3,1],[1,3,2,1]],[[0,0,2,1],[1,2,3,1],[0,3,3,1],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[0,3,3,1],[1,2,2,2]],[[0,0,2,1],[1,2,4,1],[0,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[0,3,4,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[0,3,3,3],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[0,3,3,2],[1,2,1,2]],[[0,0,2,1],[1,2,4,1],[0,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[0,3,4,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[0,3,3,3],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[0,3,3,2],[1,3,2,0]],[[0,0,2,1],[1,2,3,1],[0,3,3,2],[1,2,3,0]],[[0,0,2,1],[1,2,3,1],[1,1,3,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[1,1,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[1,1,3,2],[1,2,2,2]],[[0,0,2,1],[1,2,3,1],[1,2,2,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[1,2,2,2],[2,2,2,1]],[[0,0,2,1],[1,2,3,1],[1,2,2,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,1],[1,2,2,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[1,2,2,2],[1,2,2,2]],[[0,0,2,1],[1,2,4,1],[1,2,3,1],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[1,2,4,1],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[1,2,3,1],[2,2,2,1]],[[0,0,2,1],[1,2,3,1],[1,2,3,1],[1,3,2,1]],[[0,0,2,1],[1,2,3,1],[1,2,3,1],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[1,2,3,1],[1,2,2,2]],[[0,0,2,1],[1,2,4,1],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[1,2,4,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[1,2,3,3],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[1,2,3,2],[1,2,1,2]],[[0,0,2,1],[1,2,4,1],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[1,2,4,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[1,2,3,3],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[1,2,3,2],[2,2,2,0]],[[0,0,2,1],[1,2,3,1],[1,2,3,2],[1,3,2,0]],[[0,0,2,1],[1,2,3,1],[1,2,3,2],[1,2,3,0]],[[0,0,2,1],[1,2,3,1],[1,4,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,1,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,1,2],[2,2,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,1,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,1,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[1,3,1,2],[1,2,2,2]],[[0,0,2,1],[1,2,3,1],[1,4,2,1],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,2,1],[2,2,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,2,1],[1,3,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,2,1],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[1,3,2,1],[1,2,2,2]],[[0,0,2,1],[1,2,3,1],[1,3,2,3],[1,1,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,2,2],[1,1,3,1]],[[0,0,2,1],[1,2,3,1],[1,3,2,2],[1,1,2,2]],[[0,0,2,1],[1,2,3,1],[1,4,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[1,3,2,2],[2,2,2,0]],[[0,0,2,1],[1,2,3,1],[1,3,2,2],[1,3,2,0]],[[0,0,2,1],[1,2,3,1],[1,3,2,2],[1,2,3,0]],[[0,0,2,1],[1,2,4,1],[1,3,3,1],[1,1,2,1]],[[0,0,2,1],[1,2,3,1],[1,4,3,1],[1,1,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,4,1],[1,1,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,1],[1,1,3,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,1],[1,1,2,2]],[[0,0,2,1],[1,2,4,1],[1,3,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[1,4,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[1,3,4,1],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,1],[2,2,1,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,1],[1,3,1,1]],[[0,0,2,1],[1,2,4,1],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,4,2],[1,0,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,3],[1,0,2,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,2],[1,0,2,2]],[[0,0,2,1],[1,2,4,1],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[1,2,3,1],[1,4,3,2],[1,1,1,1]],[[0,0,2,1],[1,2,3,1],[1,3,4,2],[1,1,1,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,3],[1,1,1,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,2],[1,1,1,2]],[[0,0,2,1],[1,2,4,1],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[1,2,3,1],[1,4,3,2],[1,1,2,0]],[[0,0,2,1],[1,2,3,1],[1,3,4,2],[1,1,2,0]],[[0,0,2,1],[1,2,3,1],[1,3,3,3],[1,1,2,0]],[[0,0,2,1],[1,2,3,1],[1,3,3,2],[1,1,3,0]],[[0,0,2,1],[1,2,4,1],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[1,2,3,1],[1,4,3,2],[1,2,0,1]],[[0,0,2,1],[1,2,3,1],[1,3,4,2],[1,2,0,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,3],[1,2,0,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,2],[2,2,0,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,2],[1,3,0,1]],[[0,0,2,1],[1,2,3,1],[1,3,3,2],[1,2,0,2]],[[0,0,2,1],[1,2,4,1],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[1,2,3,1],[1,4,3,2],[1,2,1,0]],[[0,0,2,1],[1,2,3,1],[1,3,4,2],[1,2,1,0]],[[0,0,2,1],[1,2,3,1],[1,3,3,3],[1,2,1,0]],[[0,0,2,1],[1,2,3,1],[1,3,3,2],[2,2,1,0]],[[0,0,2,1],[1,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,0,2],[1,2,0,0]],[[1,2,2,2],[2,3,3,1],[0,3,0,2],[1,2,0,0]],[[1,2,3,1],[2,3,3,1],[0,3,0,2],[1,2,0,0]],[[1,3,2,1],[2,3,3,1],[0,3,0,2],[1,2,0,0]],[[2,2,2,1],[2,3,3,1],[0,3,0,2],[1,2,0,0]],[[0,0,2,1],[1,2,3,1],[2,0,3,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,0,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[2,0,3,2],[1,2,2,2]],[[0,0,2,1],[1,2,3,1],[3,1,2,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,1,2,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,1,2,2],[2,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,1,2,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,1],[2,1,2,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[2,1,2,2],[1,2,2,2]],[[0,0,2,1],[1,2,4,1],[2,1,3,1],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[3,1,3,1],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,1,4,1],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,1,3,1],[2,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,1,3,1],[1,3,2,1]],[[0,0,2,1],[1,2,3,1],[2,1,3,1],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[2,1,3,1],[1,2,2,2]],[[0,0,2,1],[1,2,3,1],[2,1,3,3],[0,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,1,3,2],[0,2,3,1]],[[0,0,2,1],[1,2,3,1],[2,1,3,2],[0,2,2,2]],[[0,0,2,1],[1,2,4,1],[2,1,3,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[2,1,4,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[2,1,3,3],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[2,1,3,2],[1,2,1,2]],[[0,0,2,1],[1,2,4,1],[2,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[3,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[2,1,4,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[2,1,3,3],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[2,1,3,2],[2,2,2,0]],[[0,0,2,1],[1,2,3,1],[2,1,3,2],[1,3,2,0]],[[0,0,2,1],[1,2,3,1],[2,1,3,2],[1,2,3,0]],[[0,0,2,1],[1,2,3,1],[3,2,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,1,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,1,2],[2,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,1,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,1,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[2,2,1,2],[1,2,2,2]],[[0,0,2,1],[1,2,3,1],[3,2,2,1],[1,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,2,1],[2,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,2,1],[1,3,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,2,1],[1,2,3,1]],[[0,0,2,1],[1,2,3,1],[2,2,2,1],[1,2,2,2]],[[0,0,2,1],[1,2,3,1],[2,2,2,3],[0,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,2,2],[0,3,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,2,2],[0,2,3,1]],[[0,0,2,1],[1,2,3,1],[2,2,2,2],[0,2,2,2]],[[0,0,2,1],[1,2,3,1],[3,2,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,1],[2,2,2,2],[2,2,2,0]],[[0,0,2,1],[1,2,3,1],[2,2,2,2],[1,3,2,0]],[[0,0,2,1],[1,2,3,1],[2,2,2,2],[1,2,3,0]],[[0,0,2,1],[1,2,4,1],[2,2,3,1],[0,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,4,1],[0,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,3,1],[0,3,2,1]],[[0,0,2,1],[1,2,3,1],[2,2,3,1],[0,2,3,1]],[[0,0,2,1],[1,2,3,1],[2,2,3,1],[0,2,2,2]],[[0,0,2,1],[1,2,3,1],[3,2,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,3,1],[2,2,3,1],[2,2,1,1]],[[0,0,2,1],[1,2,3,1],[2,2,3,1],[1,3,1,1]],[[0,0,2,1],[1,2,4,1],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[1,2,3,1],[2,2,4,2],[0,2,1,1]],[[0,0,2,1],[1,2,3,1],[2,2,3,3],[0,2,1,1]],[[0,0,2,1],[1,2,3,1],[2,2,3,2],[0,2,1,2]],[[0,0,2,1],[1,2,4,1],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[1,2,3,1],[2,2,4,2],[0,2,2,0]],[[0,0,2,1],[1,2,3,1],[2,2,3,3],[0,2,2,0]],[[0,0,2,1],[1,2,3,1],[2,2,3,2],[0,3,2,0]],[[0,0,2,1],[1,2,3,1],[2,2,3,2],[0,2,3,0]],[[0,0,2,1],[1,2,3,1],[3,2,3,2],[1,2,0,1]],[[0,0,2,1],[1,2,3,1],[2,2,3,2],[2,2,0,1]],[[0,0,2,1],[1,2,3,1],[2,2,3,2],[1,3,0,1]],[[0,0,2,1],[1,2,3,1],[3,2,3,2],[1,2,1,0]],[[0,0,2,1],[1,2,3,1],[2,2,3,2],[2,2,1,0]],[[0,0,2,1],[1,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,0,2],[1,1,1,0]],[[0,0,2,1],[1,2,3,1],[3,3,1,2],[0,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,4,1,2],[0,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,1,3],[0,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,1,2],[0,3,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,1,2],[0,2,3,1]],[[0,0,2,1],[1,2,3,1],[2,3,1,2],[0,2,2,2]],[[0,0,2,1],[1,2,3,1],[3,3,1,2],[1,1,2,1]],[[0,0,2,1],[1,2,3,1],[2,4,1,2],[1,1,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,1,2],[2,1,2,1]],[[0,0,2,1],[1,2,3,1],[3,3,2,1],[0,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,4,2,1],[0,2,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,2,1],[0,3,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,2,1],[0,2,3,1]],[[0,0,2,1],[1,2,3,1],[2,3,2,1],[0,2,2,2]],[[0,0,2,1],[1,2,3,1],[3,3,2,1],[1,1,2,1]],[[0,0,2,1],[1,2,3,1],[2,4,2,1],[1,1,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,2,1],[2,1,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,2,3],[0,1,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,2,2],[0,1,3,1]],[[0,0,2,1],[1,2,3,1],[2,3,2,2],[0,1,2,2]],[[0,0,2,1],[1,2,3,1],[3,3,2,2],[0,2,2,0]],[[0,0,2,1],[1,2,3,1],[2,4,2,2],[0,2,2,0]],[[0,0,2,1],[1,2,3,1],[2,3,2,2],[0,3,2,0]],[[0,0,2,1],[1,2,3,1],[2,3,2,2],[0,2,3,0]],[[0,0,2,1],[1,2,3,1],[2,3,2,3],[1,0,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,2,2],[1,0,3,1]],[[0,0,2,1],[1,2,3,1],[2,3,2,2],[1,0,2,2]],[[0,0,2,1],[1,2,3,1],[3,3,2,2],[1,1,2,0]],[[0,0,2,1],[1,2,3,1],[2,4,2,2],[1,1,2,0]],[[0,0,2,1],[1,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,2],[2,3,3,1],[0,3,0,2],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[0,3,0,2],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[0,3,0,2],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[0,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,0,2],[1,1,0,1]],[[1,2,2,2],[2,3,3,1],[0,3,0,2],[1,1,0,1]],[[1,2,3,1],[2,3,3,1],[0,3,0,2],[1,1,0,1]],[[0,0,2,1],[1,2,4,1],[2,3,3,1],[0,1,2,1]],[[0,0,2,1],[1,2,3,1],[3,3,3,1],[0,1,2,1]],[[0,0,2,1],[1,2,3,1],[2,4,3,1],[0,1,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,4,1],[0,1,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,1],[0,1,3,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,1],[0,1,2,2]],[[0,0,2,1],[1,2,4,1],[2,3,3,1],[0,2,1,1]],[[0,0,2,1],[1,2,3,1],[3,3,3,1],[0,2,1,1]],[[0,0,2,1],[1,2,3,1],[2,4,3,1],[0,2,1,1]],[[0,0,2,1],[1,2,3,1],[2,3,4,1],[0,2,1,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,1],[0,3,1,1]],[[0,0,2,1],[1,2,4,1],[2,3,3,1],[1,0,2,1]],[[0,0,2,1],[1,2,3,1],[3,3,3,1],[1,0,2,1]],[[0,0,2,1],[1,2,3,1],[2,4,3,1],[1,0,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,4,1],[1,0,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,1],[2,0,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,1],[1,0,3,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,1],[1,0,2,2]],[[0,0,2,1],[1,2,4,1],[2,3,3,1],[1,1,1,1]],[[0,0,2,1],[1,2,3,1],[3,3,3,1],[1,1,1,1]],[[0,0,2,1],[1,2,3,1],[2,4,3,1],[1,1,1,1]],[[0,0,2,1],[1,2,3,1],[2,3,4,1],[1,1,1,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,1],[2,1,1,1]],[[1,3,2,1],[2,3,3,1],[0,3,0,2],[1,1,0,1]],[[2,2,2,1],[2,3,3,1],[0,3,0,2],[1,1,0,1]],[[0,0,2,1],[1,2,4,1],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,4,2],[0,0,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,3],[0,0,2,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[0,0,2,2]],[[0,0,2,1],[1,2,4,1],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[1,2,3,1],[3,3,3,2],[0,1,1,1]],[[0,0,2,1],[1,2,3,1],[2,4,3,2],[0,1,1,1]],[[0,0,2,1],[1,2,3,1],[2,3,4,2],[0,1,1,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,3],[0,1,1,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[0,1,1,2]],[[0,0,2,1],[1,2,4,1],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[1,2,3,1],[3,3,3,2],[0,1,2,0]],[[0,0,2,1],[1,2,3,1],[2,4,3,2],[0,1,2,0]],[[0,0,2,1],[1,2,3,1],[2,3,4,2],[0,1,2,0]],[[0,0,2,1],[1,2,3,1],[2,3,3,3],[0,1,2,0]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[0,1,3,0]],[[0,0,2,1],[1,2,4,1],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[1,2,3,1],[3,3,3,2],[0,2,0,1]],[[0,0,2,1],[1,2,3,1],[2,4,3,2],[0,2,0,1]],[[0,0,2,1],[1,2,3,1],[2,3,4,2],[0,2,0,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,3],[0,2,0,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[0,3,0,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[0,2,0,2]],[[0,0,2,1],[1,2,4,1],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[1,2,3,1],[3,3,3,2],[0,2,1,0]],[[0,0,2,1],[1,2,3,1],[2,4,3,2],[0,2,1,0]],[[0,0,2,1],[1,2,3,1],[2,3,4,2],[0,2,1,0]],[[0,0,2,1],[1,2,3,1],[2,3,3,3],[0,2,1,0]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,0,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,1],[0,3,0,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,1],[0,3,0,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,1],[0,3,0,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,1],[0,3,0,2],[1,0,2,0]],[[1,2,2,1],[2,4,3,1],[0,3,0,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,1],[0,3,0,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[0,3,0,2],[1,0,1,1]],[[0,0,2,1],[1,2,4,1],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[1,2,3,1],[3,3,3,2],[1,0,1,1]],[[0,0,2,1],[1,2,3,1],[2,4,3,2],[1,0,1,1]],[[0,0,2,1],[1,2,3,1],[2,3,4,2],[1,0,1,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,3],[1,0,1,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[2,0,1,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[1,0,1,2]],[[0,0,2,1],[1,2,4,1],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[1,2,3,1],[3,3,3,2],[1,0,2,0]],[[0,0,2,1],[1,2,3,1],[2,4,3,2],[1,0,2,0]],[[0,0,2,1],[1,2,3,1],[2,3,4,2],[1,0,2,0]],[[0,0,2,1],[1,2,3,1],[2,3,3,3],[1,0,2,0]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[2,0,2,0]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[1,0,3,0]],[[0,0,2,1],[1,2,4,1],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,2,3,1],[3,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,2,3,1],[2,4,3,2],[1,1,0,1]],[[0,0,2,1],[1,2,3,1],[2,3,4,2],[1,1,0,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,3],[1,1,0,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[2,1,0,1]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[1,1,0,2]],[[0,0,2,1],[1,2,4,1],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[1,2,3,1],[3,3,3,2],[1,1,1,0]],[[0,0,2,1],[1,2,3,1],[2,4,3,2],[1,1,1,0]],[[0,0,2,1],[1,2,3,1],[2,3,4,2],[1,1,1,0]],[[0,0,2,1],[1,2,3,1],[2,3,3,3],[1,1,1,0]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[2,1,1,0]],[[1,3,2,1],[2,3,3,1],[0,3,0,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[0,3,0,2],[1,0,1,1]],[[0,0,2,1],[1,2,3,1],[3,3,3,2],[1,2,0,0]],[[0,0,2,1],[1,2,3,1],[2,4,3,2],[1,2,0,0]],[[0,0,2,1],[1,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,4,3,1],[0,3,0,2],[0,2,1,0]],[[1,2,2,2],[2,3,3,1],[0,3,0,2],[0,2,1,0]],[[1,2,3,1],[2,3,3,1],[0,3,0,2],[0,2,1,0]],[[1,3,2,1],[2,3,3,1],[0,3,0,2],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[0,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,0,2],[0,2,0,1]],[[1,2,2,2],[2,3,3,1],[0,3,0,2],[0,2,0,1]],[[1,2,3,1],[2,3,3,1],[0,3,0,2],[0,2,0,1]],[[1,3,2,1],[2,3,3,1],[0,3,0,2],[0,2,0,1]],[[2,2,2,1],[2,3,3,1],[0,3,0,2],[0,2,0,1]],[[1,2,2,1],[2,4,3,1],[0,3,0,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,1],[0,3,0,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,1],[0,3,0,2],[0,1,2,0]],[[0,0,2,2],[1,2,3,2],[0,3,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,4,2],[0,3,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,3],[0,3,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[0,3,1,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[0,3,1,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,2],[0,3,1,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,2],[0,3,1,2],[1,2,2,2]],[[0,0,2,2],[1,2,3,2],[0,3,2,2],[1,2,1,1]],[[0,0,2,1],[1,2,4,2],[0,3,2,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,3],[0,3,2,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[0,3,2,3],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[0,3,2,2],[1,2,1,2]],[[0,0,2,2],[1,2,3,2],[0,3,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,4,2],[0,3,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,3],[0,3,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[0,3,2,3],[1,2,2,0]],[[0,0,2,2],[1,2,3,2],[0,3,3,0],[1,2,2,1]],[[0,0,2,1],[1,2,4,2],[0,3,3,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,3],[0,3,3,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[0,3,4,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[0,3,3,0],[1,3,2,1]],[[0,0,2,1],[1,2,3,2],[0,3,3,0],[1,2,3,1]],[[0,0,2,1],[1,2,3,2],[0,3,3,0],[1,2,2,2]],[[0,0,2,2],[1,2,3,2],[0,3,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,4,2],[0,3,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,3,3],[0,3,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[0,3,4,1],[1,2,1,1]],[[0,0,2,2],[1,2,3,2],[0,3,3,1],[1,2,2,0]],[[0,0,2,1],[1,2,4,2],[0,3,3,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,3],[0,3,3,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[0,3,4,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[0,3,3,1],[1,3,2,0]],[[0,0,2,1],[1,2,3,2],[0,3,3,1],[1,2,3,0]],[[1,3,2,1],[2,3,3,1],[0,3,0,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,1],[0,3,0,2],[0,1,2,0]],[[1,2,2,1],[2,4,3,1],[0,3,0,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,1],[0,3,0,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,1],[0,3,0,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,1],[0,3,0,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,1],[0,3,0,2],[0,1,1,1]],[[0,0,2,2],[1,2,3,2],[1,0,3,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,3],[1,0,3,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,0,3,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,0,3,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,2],[1,0,3,2],[1,2,2,2]],[[0,0,2,2],[1,2,3,2],[1,2,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,4,2],[1,2,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,3],[1,2,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,2,1,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,2,1,2],[2,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,2,1,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,2],[1,2,1,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,2],[1,2,1,2],[1,2,2,2]],[[0,0,2,2],[1,2,3,2],[1,2,2,2],[1,2,1,1]],[[0,0,2,1],[1,2,4,2],[1,2,2,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,3],[1,2,2,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[1,2,2,3],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[1,2,2,2],[1,2,1,2]],[[0,0,2,2],[1,2,3,2],[1,2,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,4,2],[1,2,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,3],[1,2,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[1,2,2,3],[1,2,2,0]],[[0,0,2,2],[1,2,3,2],[1,2,3,0],[1,2,2,1]],[[0,0,2,1],[1,2,4,2],[1,2,3,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,3],[1,2,3,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,2,4,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,2,3,0],[2,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,2,3,0],[1,3,2,1]],[[0,0,2,1],[1,2,3,2],[1,2,3,0],[1,2,3,1]],[[0,0,2,1],[1,2,3,2],[1,2,3,0],[1,2,2,2]],[[0,0,2,2],[1,2,3,2],[1,2,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,4,2],[1,2,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,3,3],[1,2,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[1,2,4,1],[1,2,1,1]],[[0,0,2,2],[1,2,3,2],[1,2,3,1],[1,2,2,0]],[[0,0,2,1],[1,2,4,2],[1,2,3,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,3],[1,2,3,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[1,2,4,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[1,2,3,1],[2,2,2,0]],[[0,0,2,1],[1,2,3,2],[1,2,3,1],[1,3,2,0]],[[0,0,2,1],[1,2,3,2],[1,2,3,1],[1,2,3,0]],[[0,0,2,2],[1,2,3,2],[1,3,0,2],[1,2,2,1]],[[0,0,2,1],[1,2,4,2],[1,3,0,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,3],[1,3,0,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,4,0,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,0,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,0,2],[2,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,0,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,0,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,2],[1,3,0,2],[1,2,2,2]],[[0,0,2,2],[1,2,3,2],[1,3,1,2],[1,1,2,1]],[[0,0,2,1],[1,2,4,2],[1,3,1,2],[1,1,2,1]],[[0,0,2,1],[1,2,3,3],[1,3,1,2],[1,1,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,1,3],[1,1,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,1,2],[1,1,3,1]],[[0,0,2,1],[1,2,3,2],[1,3,1,2],[1,1,2,2]],[[0,0,2,1],[1,2,3,2],[1,4,2,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,2,0],[2,2,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,2,0],[1,3,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,2,0],[1,2,3,1]],[[0,0,2,1],[1,2,3,2],[1,3,2,0],[1,2,2,2]],[[0,0,2,1],[1,2,3,2],[1,4,2,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[1,3,2,1],[2,2,2,0]],[[0,0,2,1],[1,2,3,2],[1,3,2,1],[1,3,2,0]],[[0,0,2,1],[1,2,3,2],[1,3,2,1],[1,2,3,0]],[[0,0,2,2],[1,2,3,2],[1,3,2,2],[1,0,2,1]],[[0,0,2,1],[1,2,4,2],[1,3,2,2],[1,0,2,1]],[[0,0,2,1],[1,2,3,3],[1,3,2,2],[1,0,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,2,3],[1,0,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,2,2],[1,0,2,2]],[[0,0,2,2],[1,2,3,2],[1,3,2,2],[1,1,1,1]],[[0,0,2,1],[1,2,4,2],[1,3,2,2],[1,1,1,1]],[[0,0,2,1],[1,2,3,3],[1,3,2,2],[1,1,1,1]],[[0,0,2,1],[1,2,3,2],[1,3,2,3],[1,1,1,1]],[[0,0,2,1],[1,2,3,2],[1,3,2,2],[1,1,1,2]],[[0,0,2,2],[1,2,3,2],[1,3,2,2],[1,1,2,0]],[[0,0,2,1],[1,2,4,2],[1,3,2,2],[1,1,2,0]],[[0,0,2,1],[1,2,3,3],[1,3,2,2],[1,1,2,0]],[[0,0,2,1],[1,2,3,2],[1,3,2,3],[1,1,2,0]],[[0,0,2,2],[1,2,3,2],[1,3,2,2],[1,2,0,1]],[[0,0,2,1],[1,2,4,2],[1,3,2,2],[1,2,0,1]],[[0,0,2,1],[1,2,3,3],[1,3,2,2],[1,2,0,1]],[[0,0,2,1],[1,2,3,2],[1,3,2,3],[1,2,0,1]],[[0,0,2,1],[1,2,3,2],[1,3,2,2],[1,2,0,2]],[[0,0,2,2],[1,2,3,2],[1,3,2,2],[1,2,1,0]],[[0,0,2,1],[1,2,4,2],[1,3,2,2],[1,2,1,0]],[[0,0,2,1],[1,2,3,3],[1,3,2,2],[1,2,1,0]],[[0,0,2,1],[1,2,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,0,1],[1,1,2,0]],[[1,2,2,2],[2,3,3,1],[0,3,0,1],[1,1,2,0]],[[1,2,3,1],[2,3,3,1],[0,3,0,1],[1,1,2,0]],[[1,3,2,1],[2,3,3,1],[0,3,0,1],[1,1,2,0]],[[2,2,2,1],[2,3,3,1],[0,3,0,1],[1,1,2,0]],[[0,0,2,2],[1,2,3,2],[1,3,3,0],[1,1,2,1]],[[0,0,2,1],[1,2,4,2],[1,3,3,0],[1,1,2,1]],[[0,0,2,1],[1,2,3,3],[1,3,3,0],[1,1,2,1]],[[0,0,2,1],[1,2,3,2],[1,4,3,0],[1,1,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,4,0],[1,1,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,3,0],[1,1,3,1]],[[0,0,2,1],[1,2,3,2],[1,3,3,0],[1,1,2,2]],[[0,0,2,2],[1,2,3,2],[1,3,3,0],[1,2,1,1]],[[0,0,2,1],[1,2,4,2],[1,3,3,0],[1,2,1,1]],[[0,0,2,1],[1,2,3,3],[1,3,3,0],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[1,4,3,0],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[1,3,4,0],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[1,3,3,0],[2,2,1,1]],[[0,0,2,1],[1,2,3,2],[1,3,3,0],[1,3,1,1]],[[0,0,2,2],[1,2,3,2],[1,3,3,1],[1,0,2,1]],[[0,0,2,1],[1,2,4,2],[1,3,3,1],[1,0,2,1]],[[0,0,2,1],[1,2,3,3],[1,3,3,1],[1,0,2,1]],[[0,0,2,1],[1,2,3,2],[1,3,4,1],[1,0,2,1]],[[0,0,2,2],[1,2,3,2],[1,3,3,1],[1,1,1,1]],[[0,0,2,1],[1,2,4,2],[1,3,3,1],[1,1,1,1]],[[0,0,2,1],[1,2,3,3],[1,3,3,1],[1,1,1,1]],[[0,0,2,1],[1,2,3,2],[1,4,3,1],[1,1,1,1]],[[0,0,2,1],[1,2,3,2],[1,3,4,1],[1,1,1,1]],[[0,0,2,2],[1,2,3,2],[1,3,3,1],[1,1,2,0]],[[0,0,2,1],[1,2,4,2],[1,3,3,1],[1,1,2,0]],[[0,0,2,1],[1,2,3,3],[1,3,3,1],[1,1,2,0]],[[0,0,2,1],[1,2,3,2],[1,4,3,1],[1,1,2,0]],[[0,0,2,1],[1,2,3,2],[1,3,4,1],[1,1,2,0]],[[0,0,2,1],[1,2,3,2],[1,3,3,1],[1,1,3,0]],[[0,0,2,2],[1,2,3,2],[1,3,3,1],[1,2,0,1]],[[0,0,2,1],[1,2,4,2],[1,3,3,1],[1,2,0,1]],[[0,0,2,1],[1,2,3,3],[1,3,3,1],[1,2,0,1]],[[0,0,2,1],[1,2,3,2],[1,4,3,1],[1,2,0,1]],[[0,0,2,1],[1,2,3,2],[1,3,4,1],[1,2,0,1]],[[0,0,2,1],[1,2,3,2],[1,3,3,1],[2,2,0,1]],[[0,0,2,1],[1,2,3,2],[1,3,3,1],[1,3,0,1]],[[0,0,2,2],[1,2,3,2],[1,3,3,1],[1,2,1,0]],[[0,0,2,1],[1,2,4,2],[1,3,3,1],[1,2,1,0]],[[0,0,2,1],[1,2,3,3],[1,3,3,1],[1,2,1,0]],[[0,0,2,1],[1,2,3,2],[1,4,3,1],[1,2,1,0]],[[0,0,2,1],[1,2,3,2],[1,3,4,1],[1,2,1,0]],[[0,0,2,1],[1,2,3,2],[1,3,3,1],[2,2,1,0]],[[0,0,2,1],[1,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,4,3,1],[0,3,0,1],[0,2,2,0]],[[1,2,2,2],[2,3,3,1],[0,3,0,1],[0,2,2,0]],[[1,2,3,1],[2,3,3,1],[0,3,0,1],[0,2,2,0]],[[1,3,2,1],[2,3,3,1],[0,3,0,1],[0,2,2,0]],[[2,2,2,1],[2,3,3,1],[0,3,0,1],[0,2,2,0]],[[0,0,2,2],[1,2,3,2],[1,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,2,4,2],[1,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,2,3,3],[1,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,2,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,4,3,1],[0,3,0,0],[1,1,2,1]],[[1,2,2,2],[2,3,3,1],[0,3,0,0],[1,1,2,1]],[[1,2,3,1],[2,3,3,1],[0,3,0,0],[1,1,2,1]],[[1,3,2,1],[2,3,3,1],[0,3,0,0],[1,1,2,1]],[[2,2,2,1],[2,3,3,1],[0,3,0,0],[1,1,2,1]],[[1,2,2,1],[2,4,3,1],[0,3,0,0],[0,2,2,1]],[[1,2,2,2],[2,3,3,1],[0,3,0,0],[0,2,2,1]],[[1,2,3,1],[2,3,3,1],[0,3,0,0],[0,2,2,1]],[[1,3,2,1],[2,3,3,1],[0,3,0,0],[0,2,2,1]],[[2,2,2,1],[2,3,3,1],[0,3,0,0],[0,2,2,1]],[[0,0,2,2],[1,2,3,2],[2,0,3,2],[0,2,2,1]],[[0,0,2,1],[1,2,3,3],[2,0,3,2],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,0,3,3],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,0,3,2],[0,2,3,1]],[[0,0,2,1],[1,2,3,2],[2,0,3,2],[0,2,2,2]],[[0,0,2,2],[1,2,3,2],[2,1,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,4,2],[2,1,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,3],[2,1,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[3,1,1,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,1,1,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,1,1,2],[2,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,1,1,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,2],[2,1,1,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,2],[2,1,1,2],[1,2,2,2]],[[0,0,2,2],[1,2,3,2],[2,1,2,2],[1,2,1,1]],[[0,0,2,1],[1,2,4,2],[2,1,2,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,3],[2,1,2,2],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[2,1,2,3],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[2,1,2,2],[1,2,1,2]],[[0,0,2,2],[1,2,3,2],[2,1,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,4,2],[2,1,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,3],[2,1,2,2],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[2,1,2,3],[1,2,2,0]],[[0,0,2,2],[1,2,3,2],[2,1,3,0],[1,2,2,1]],[[0,0,2,1],[1,2,4,2],[2,1,3,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,3],[2,1,3,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[3,1,3,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,1,4,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,1,3,0],[2,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,1,3,0],[1,3,2,1]],[[0,0,2,1],[1,2,3,2],[2,1,3,0],[1,2,3,1]],[[0,0,2,1],[1,2,3,2],[2,1,3,0],[1,2,2,2]],[[0,0,2,2],[1,2,3,2],[2,1,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,4,2],[2,1,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,3,3],[2,1,3,1],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[2,1,4,1],[1,2,1,1]],[[0,0,2,2],[1,2,3,2],[2,1,3,1],[1,2,2,0]],[[0,0,2,1],[1,2,4,2],[2,1,3,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,3],[2,1,3,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[3,1,3,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[2,1,4,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[2,1,3,1],[2,2,2,0]],[[0,0,2,1],[1,2,3,2],[2,1,3,1],[1,3,2,0]],[[0,0,2,1],[1,2,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,3,4,1],[0,2,3,2],[0,0,0,1]],[[1,2,2,2],[2,3,3,1],[0,2,3,2],[0,0,0,1]],[[1,2,3,1],[2,3,3,1],[0,2,3,2],[0,0,0,1]],[[1,3,2,1],[2,3,3,1],[0,2,3,2],[0,0,0,1]],[[2,2,2,1],[2,3,3,1],[0,2,3,2],[0,0,0,1]],[[0,0,2,2],[1,2,3,2],[2,2,0,2],[1,2,2,1]],[[0,0,2,1],[1,2,4,2],[2,2,0,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,3],[2,2,0,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[3,2,0,2],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,0,3],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,0,2],[2,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,0,2],[1,3,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,0,2],[1,2,3,1]],[[0,0,2,1],[1,2,3,2],[2,2,0,2],[1,2,2,2]],[[0,0,2,2],[1,2,3,2],[2,2,1,2],[0,2,2,1]],[[0,0,2,1],[1,2,4,2],[2,2,1,2],[0,2,2,1]],[[0,0,2,1],[1,2,3,3],[2,2,1,2],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,1,3],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,1,2],[0,3,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,1,2],[0,2,3,1]],[[0,0,2,1],[1,2,3,2],[2,2,1,2],[0,2,2,2]],[[0,0,2,1],[1,2,3,2],[3,2,2,0],[1,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,2,0],[2,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,2,0],[1,3,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,2,0],[1,2,3,1]],[[0,0,2,1],[1,2,3,2],[2,2,2,0],[1,2,2,2]],[[0,0,2,1],[1,2,3,2],[3,2,2,1],[1,2,2,0]],[[0,0,2,1],[1,2,3,2],[2,2,2,1],[2,2,2,0]],[[0,0,2,1],[1,2,3,2],[2,2,2,1],[1,3,2,0]],[[0,0,2,1],[1,2,3,2],[2,2,2,1],[1,2,3,0]],[[0,0,2,2],[1,2,3,2],[2,2,2,2],[0,2,1,1]],[[0,0,2,1],[1,2,4,2],[2,2,2,2],[0,2,1,1]],[[0,0,2,1],[1,2,3,3],[2,2,2,2],[0,2,1,1]],[[0,0,2,1],[1,2,3,2],[2,2,2,3],[0,2,1,1]],[[0,0,2,1],[1,2,3,2],[2,2,2,2],[0,2,1,2]],[[0,0,2,2],[1,2,3,2],[2,2,2,2],[0,2,2,0]],[[0,0,2,1],[1,2,4,2],[2,2,2,2],[0,2,2,0]],[[0,0,2,1],[1,2,3,3],[2,2,2,2],[0,2,2,0]],[[0,0,2,1],[1,2,3,2],[2,2,2,3],[0,2,2,0]],[[0,0,2,2],[1,2,3,2],[2,2,3,0],[0,2,2,1]],[[0,0,2,1],[1,2,4,2],[2,2,3,0],[0,2,2,1]],[[0,0,2,1],[1,2,3,3],[2,2,3,0],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,4,0],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,3,0],[0,3,2,1]],[[0,0,2,1],[1,2,3,2],[2,2,3,0],[0,2,3,1]],[[0,0,2,1],[1,2,3,2],[2,2,3,0],[0,2,2,2]],[[0,0,2,1],[1,2,3,2],[3,2,3,0],[1,2,1,1]],[[0,0,2,1],[1,2,3,2],[2,2,3,0],[2,2,1,1]],[[0,0,2,1],[1,2,3,2],[2,2,3,0],[1,3,1,1]],[[0,0,2,2],[1,2,3,2],[2,2,3,1],[0,2,1,1]],[[0,0,2,1],[1,2,4,2],[2,2,3,1],[0,2,1,1]],[[0,0,2,1],[1,2,3,3],[2,2,3,1],[0,2,1,1]],[[0,0,2,1],[1,2,3,2],[2,2,4,1],[0,2,1,1]],[[0,0,2,2],[1,2,3,2],[2,2,3,1],[0,2,2,0]],[[0,0,2,1],[1,2,4,2],[2,2,3,1],[0,2,2,0]],[[0,0,2,1],[1,2,3,3],[2,2,3,1],[0,2,2,0]],[[0,0,2,1],[1,2,3,2],[2,2,4,1],[0,2,2,0]],[[0,0,2,1],[1,2,3,2],[2,2,3,1],[0,3,2,0]],[[0,0,2,1],[1,2,3,2],[2,2,3,1],[0,2,3,0]],[[0,0,2,1],[1,2,3,2],[3,2,3,1],[1,2,0,1]],[[0,0,2,1],[1,2,3,2],[2,2,3,1],[2,2,0,1]],[[0,0,2,1],[1,2,3,2],[2,2,3,1],[1,3,0,1]],[[0,0,2,1],[1,2,3,2],[3,2,3,1],[1,2,1,0]],[[0,0,2,1],[1,2,3,2],[2,2,3,1],[2,2,1,0]],[[0,0,2,1],[1,2,3,2],[2,2,3,1],[1,3,1,0]],[[0,0,2,2],[1,2,3,2],[2,3,0,2],[0,2,2,1]],[[0,0,2,1],[1,2,4,2],[2,3,0,2],[0,2,2,1]],[[0,0,2,1],[1,2,3,3],[2,3,0,2],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[3,3,0,2],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,4,0,2],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,0,3],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,0,2],[0,3,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,0,2],[0,2,3,1]],[[0,0,2,1],[1,2,3,2],[2,3,0,2],[0,2,2,2]],[[0,0,2,1],[1,2,3,2],[3,3,0,2],[1,1,2,1]],[[0,0,2,1],[1,2,3,2],[2,4,0,2],[1,1,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,0,2],[2,1,2,1]],[[0,0,2,2],[1,2,3,2],[2,3,1,2],[0,1,2,1]],[[0,0,2,1],[1,2,4,2],[2,3,1,2],[0,1,2,1]],[[0,0,2,1],[1,2,3,3],[2,3,1,2],[0,1,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,1,3],[0,1,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,1,2],[0,1,3,1]],[[0,0,2,1],[1,2,3,2],[2,3,1,2],[0,1,2,2]],[[0,0,2,2],[1,2,3,2],[2,3,1,2],[1,0,2,1]],[[0,0,2,1],[1,2,4,2],[2,3,1,2],[1,0,2,1]],[[0,0,2,1],[1,2,3,3],[2,3,1,2],[1,0,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,1,3],[1,0,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,1,2],[1,0,3,1]],[[0,0,2,1],[1,2,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,3,4,1],[0,2,3,1],[0,0,2,0]],[[1,2,2,2],[2,3,3,1],[0,2,3,1],[0,0,2,0]],[[1,2,3,1],[2,3,3,1],[0,2,3,1],[0,0,2,0]],[[1,3,2,1],[2,3,3,1],[0,2,3,1],[0,0,2,0]],[[2,2,2,1],[2,3,3,1],[0,2,3,1],[0,0,2,0]],[[1,2,2,1],[2,3,4,1],[0,2,3,1],[0,0,1,1]],[[0,0,2,1],[1,2,3,2],[3,3,2,0],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,4,2,0],[0,2,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,0],[0,3,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,0],[0,2,3,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,0],[0,2,2,2]],[[0,0,2,1],[1,2,3,2],[3,3,2,0],[1,1,2,1]],[[0,0,2,1],[1,2,3,2],[2,4,2,0],[1,1,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,0],[2,1,2,1]],[[0,0,2,1],[1,2,3,2],[3,3,2,1],[0,2,2,0]],[[0,0,2,1],[1,2,3,2],[2,4,2,1],[0,2,2,0]],[[0,0,2,1],[1,2,3,2],[2,3,2,1],[0,3,2,0]],[[0,0,2,1],[1,2,3,2],[2,3,2,1],[0,2,3,0]],[[0,0,2,1],[1,2,3,2],[3,3,2,1],[1,1,2,0]],[[0,0,2,1],[1,2,3,2],[2,4,2,1],[1,1,2,0]],[[0,0,2,1],[1,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,2],[2,3,3,1],[0,2,3,1],[0,0,1,1]],[[1,2,3,1],[2,3,3,1],[0,2,3,1],[0,0,1,1]],[[1,3,2,1],[2,3,3,1],[0,2,3,1],[0,0,1,1]],[[2,2,2,1],[2,3,3,1],[0,2,3,1],[0,0,1,1]],[[0,0,2,2],[1,2,3,2],[2,3,2,2],[0,0,2,1]],[[0,0,2,1],[1,2,4,2],[2,3,2,2],[0,0,2,1]],[[0,0,2,1],[1,2,3,3],[2,3,2,2],[0,0,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,3],[0,0,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,2],[0,0,2,2]],[[0,0,2,2],[1,2,3,2],[2,3,2,2],[0,1,1,1]],[[0,0,2,1],[1,2,4,2],[2,3,2,2],[0,1,1,1]],[[0,0,2,1],[1,2,3,3],[2,3,2,2],[0,1,1,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,3],[0,1,1,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,2],[0,1,1,2]],[[0,0,2,2],[1,2,3,2],[2,3,2,2],[0,1,2,0]],[[0,0,2,1],[1,2,4,2],[2,3,2,2],[0,1,2,0]],[[0,0,2,1],[1,2,3,3],[2,3,2,2],[0,1,2,0]],[[0,0,2,1],[1,2,3,2],[2,3,2,3],[0,1,2,0]],[[0,0,2,2],[1,2,3,2],[2,3,2,2],[0,2,0,1]],[[0,0,2,1],[1,2,4,2],[2,3,2,2],[0,2,0,1]],[[0,0,2,1],[1,2,3,3],[2,3,2,2],[0,2,0,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,3],[0,2,0,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,2],[0,2,0,2]],[[0,0,2,2],[1,2,3,2],[2,3,2,2],[0,2,1,0]],[[0,0,2,1],[1,2,4,2],[2,3,2,2],[0,2,1,0]],[[0,0,2,1],[1,2,3,3],[2,3,2,2],[0,2,1,0]],[[0,0,2,1],[1,2,3,2],[2,3,2,3],[0,2,1,0]],[[0,0,2,2],[1,2,3,2],[2,3,2,2],[1,0,1,1]],[[0,0,2,1],[1,2,4,2],[2,3,2,2],[1,0,1,1]],[[0,0,2,1],[1,2,3,3],[2,3,2,2],[1,0,1,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,3],[1,0,1,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,2],[1,0,1,2]],[[0,0,2,2],[1,2,3,2],[2,3,2,2],[1,0,2,0]],[[0,0,2,1],[1,2,4,2],[2,3,2,2],[1,0,2,0]],[[0,0,2,1],[1,2,3,3],[2,3,2,2],[1,0,2,0]],[[0,0,2,1],[1,2,3,2],[2,3,2,3],[1,0,2,0]],[[0,0,2,2],[1,2,3,2],[2,3,2,2],[1,1,0,1]],[[0,0,2,1],[1,2,4,2],[2,3,2,2],[1,1,0,1]],[[0,0,2,1],[1,2,3,3],[2,3,2,2],[1,1,0,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,3],[1,1,0,1]],[[0,0,2,1],[1,2,3,2],[2,3,2,2],[1,1,0,2]],[[0,0,2,2],[1,2,3,2],[2,3,2,2],[1,1,1,0]],[[0,0,2,1],[1,2,4,2],[2,3,2,2],[1,1,1,0]],[[0,0,2,1],[1,2,3,3],[2,3,2,2],[1,1,1,0]],[[0,0,2,1],[1,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,3,4,1],[0,2,3,0],[0,0,2,1]],[[1,2,2,2],[2,3,3,1],[0,2,3,0],[0,0,2,1]],[[1,2,3,1],[2,3,3,1],[0,2,3,0],[0,0,2,1]],[[1,3,2,1],[2,3,3,1],[0,2,3,0],[0,0,2,1]],[[2,2,2,1],[2,3,3,1],[0,2,3,0],[0,0,2,1]],[[0,0,2,2],[1,2,3,2],[2,3,3,0],[0,1,2,1]],[[0,0,2,1],[1,2,4,2],[2,3,3,0],[0,1,2,1]],[[0,0,2,1],[1,2,3,3],[2,3,3,0],[0,1,2,1]],[[0,0,2,1],[1,2,3,2],[3,3,3,0],[0,1,2,1]],[[0,0,2,1],[1,2,3,2],[2,4,3,0],[0,1,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,4,0],[0,1,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,0],[0,1,3,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,0],[0,1,2,2]],[[0,0,2,2],[1,2,3,2],[2,3,3,0],[0,2,1,1]],[[0,0,2,1],[1,2,4,2],[2,3,3,0],[0,2,1,1]],[[0,0,2,1],[1,2,3,3],[2,3,3,0],[0,2,1,1]],[[0,0,2,1],[1,2,3,2],[3,3,3,0],[0,2,1,1]],[[0,0,2,1],[1,2,3,2],[2,4,3,0],[0,2,1,1]],[[0,0,2,1],[1,2,3,2],[2,3,4,0],[0,2,1,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,0],[0,3,1,1]],[[0,0,2,2],[1,2,3,2],[2,3,3,0],[1,0,2,1]],[[0,0,2,1],[1,2,4,2],[2,3,3,0],[1,0,2,1]],[[0,0,2,1],[1,2,3,3],[2,3,3,0],[1,0,2,1]],[[0,0,2,1],[1,2,3,2],[3,3,3,0],[1,0,2,1]],[[0,0,2,1],[1,2,3,2],[2,4,3,0],[1,0,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,4,0],[1,0,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,0],[2,0,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,0],[1,0,3,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,0],[1,0,2,2]],[[0,0,2,2],[1,2,3,2],[2,3,3,0],[1,1,1,1]],[[0,0,2,1],[1,2,4,2],[2,3,3,0],[1,1,1,1]],[[0,0,2,1],[1,2,3,3],[2,3,3,0],[1,1,1,1]],[[0,0,2,1],[1,2,3,2],[3,3,3,0],[1,1,1,1]],[[0,0,2,1],[1,2,3,2],[2,4,3,0],[1,1,1,1]],[[0,0,2,1],[1,2,3,2],[2,3,4,0],[1,1,1,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,0],[2,1,1,1]],[[0,0,2,1],[1,2,3,2],[3,3,3,0],[1,2,0,1]],[[0,0,2,1],[1,2,3,2],[2,4,3,0],[1,2,0,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,0],[2,2,0,1]],[[0,0,2,2],[1,2,3,2],[2,3,3,1],[0,0,2,1]],[[0,0,2,1],[1,2,4,2],[2,3,3,1],[0,0,2,1]],[[0,0,2,1],[1,2,3,3],[2,3,3,1],[0,0,2,1]],[[0,0,2,1],[1,2,3,2],[2,3,4,1],[0,0,2,1]],[[0,0,2,2],[1,2,3,2],[2,3,3,1],[0,1,1,1]],[[0,0,2,1],[1,2,4,2],[2,3,3,1],[0,1,1,1]],[[0,0,2,1],[1,2,3,3],[2,3,3,1],[0,1,1,1]],[[0,0,2,1],[1,2,3,2],[3,3,3,1],[0,1,1,1]],[[0,0,2,1],[1,2,3,2],[2,4,3,1],[0,1,1,1]],[[0,0,2,1],[1,2,3,2],[2,3,4,1],[0,1,1,1]],[[0,0,2,2],[1,2,3,2],[2,3,3,1],[0,1,2,0]],[[0,0,2,1],[1,2,4,2],[2,3,3,1],[0,1,2,0]],[[0,0,2,1],[1,2,3,3],[2,3,3,1],[0,1,2,0]],[[0,0,2,1],[1,2,3,2],[3,3,3,1],[0,1,2,0]],[[0,0,2,1],[1,2,3,2],[2,4,3,1],[0,1,2,0]],[[0,0,2,1],[1,2,3,2],[2,3,4,1],[0,1,2,0]],[[0,0,2,1],[1,2,3,2],[2,3,3,1],[0,1,3,0]],[[0,0,2,2],[1,2,3,2],[2,3,3,1],[0,2,0,1]],[[0,0,2,1],[1,2,4,2],[2,3,3,1],[0,2,0,1]],[[0,0,2,1],[1,2,3,3],[2,3,3,1],[0,2,0,1]],[[0,0,2,1],[1,2,3,2],[3,3,3,1],[0,2,0,1]],[[0,0,2,1],[1,2,3,2],[2,4,3,1],[0,2,0,1]],[[0,0,2,1],[1,2,3,2],[2,3,4,1],[0,2,0,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,1],[0,3,0,1]],[[0,0,2,2],[1,2,3,2],[2,3,3,1],[0,2,1,0]],[[0,0,2,1],[1,2,4,2],[2,3,3,1],[0,2,1,0]],[[0,0,2,1],[1,2,3,3],[2,3,3,1],[0,2,1,0]],[[0,0,2,1],[1,2,3,2],[3,3,3,1],[0,2,1,0]],[[0,0,2,1],[1,2,3,2],[2,4,3,1],[0,2,1,0]],[[0,0,2,1],[1,2,3,2],[2,3,4,1],[0,2,1,0]],[[0,0,2,1],[1,2,3,2],[2,3,3,1],[0,3,1,0]],[[0,0,2,2],[1,2,3,2],[2,3,3,1],[1,0,1,1]],[[0,0,2,1],[1,2,4,2],[2,3,3,1],[1,0,1,1]],[[0,0,2,1],[1,2,3,3],[2,3,3,1],[1,0,1,1]],[[0,0,2,1],[1,2,3,2],[3,3,3,1],[1,0,1,1]],[[0,0,2,1],[1,2,3,2],[2,4,3,1],[1,0,1,1]],[[0,0,2,1],[1,2,3,2],[2,3,4,1],[1,0,1,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,1],[2,0,1,1]],[[0,0,2,2],[1,2,3,2],[2,3,3,1],[1,0,2,0]],[[0,0,2,1],[1,2,4,2],[2,3,3,1],[1,0,2,0]],[[0,0,2,1],[1,2,3,3],[2,3,3,1],[1,0,2,0]],[[0,0,2,1],[1,2,3,2],[3,3,3,1],[1,0,2,0]],[[0,0,2,1],[1,2,3,2],[2,4,3,1],[1,0,2,0]],[[0,0,2,1],[1,2,3,2],[2,3,4,1],[1,0,2,0]],[[0,0,2,1],[1,2,3,2],[2,3,3,1],[2,0,2,0]],[[0,0,2,1],[1,2,3,2],[2,3,3,1],[1,0,3,0]],[[0,0,2,2],[1,2,3,2],[2,3,3,1],[1,1,0,1]],[[0,0,2,1],[1,2,4,2],[2,3,3,1],[1,1,0,1]],[[0,0,2,1],[1,2,3,3],[2,3,3,1],[1,1,0,1]],[[0,0,2,1],[1,2,3,2],[3,3,3,1],[1,1,0,1]],[[0,0,2,1],[1,2,3,2],[2,4,3,1],[1,1,0,1]],[[0,0,2,1],[1,2,3,2],[2,3,4,1],[1,1,0,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,1],[2,1,0,1]],[[0,0,2,2],[1,2,3,2],[2,3,3,1],[1,1,1,0]],[[0,0,2,1],[1,2,4,2],[2,3,3,1],[1,1,1,0]],[[0,0,2,1],[1,2,3,3],[2,3,3,1],[1,1,1,0]],[[0,0,2,1],[1,2,3,2],[3,3,3,1],[1,1,1,0]],[[0,0,2,1],[1,2,3,2],[2,4,3,1],[1,1,1,0]],[[0,0,2,1],[1,2,3,2],[2,3,4,1],[1,1,1,0]],[[0,0,2,1],[1,2,3,2],[2,3,3,1],[2,1,1,0]],[[0,0,2,1],[1,2,3,2],[3,3,3,1],[1,2,0,0]],[[0,0,2,1],[1,2,3,2],[2,4,3,1],[1,2,0,0]],[[0,0,2,1],[1,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,3,4,1],[0,2,2,2],[0,0,2,0]],[[1,2,2,2],[2,3,3,1],[0,2,2,2],[0,0,2,0]],[[1,2,3,1],[2,3,3,1],[0,2,2,2],[0,0,2,0]],[[1,3,2,1],[2,3,3,1],[0,2,2,2],[0,0,2,0]],[[2,2,2,1],[2,3,3,1],[0,2,2,2],[0,0,2,0]],[[1,2,2,1],[2,3,4,1],[0,2,2,2],[0,0,1,1]],[[1,2,2,2],[2,3,3,1],[0,2,2,2],[0,0,1,1]],[[1,2,3,1],[2,3,3,1],[0,2,2,2],[0,0,1,1]],[[1,3,2,1],[2,3,3,1],[0,2,2,2],[0,0,1,1]],[[2,2,2,1],[2,3,3,1],[0,2,2,2],[0,0,1,1]],[[0,0,2,2],[1,2,3,2],[2,3,3,2],[0,1,0,1]],[[0,0,2,1],[1,2,4,2],[2,3,3,2],[0,1,0,1]],[[0,0,2,1],[1,2,3,3],[2,3,3,2],[0,1,0,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,3],[0,1,0,1]],[[0,0,2,2],[1,2,3,2],[2,3,3,2],[1,0,0,1]],[[0,0,2,1],[1,2,4,2],[2,3,3,2],[1,0,0,1]],[[0,0,2,1],[1,2,3,3],[2,3,3,2],[1,0,0,1]],[[0,0,2,1],[1,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,3,4,1],[0,1,3,2],[1,0,0,1]],[[1,2,2,2],[2,3,3,1],[0,1,3,2],[1,0,0,1]],[[1,2,3,1],[2,3,3,1],[0,1,3,2],[1,0,0,1]],[[1,3,2,1],[2,3,3,1],[0,1,3,2],[1,0,0,1]],[[2,2,2,1],[2,3,3,1],[0,1,3,2],[1,0,0,1]],[[1,2,2,1],[2,3,4,1],[0,1,3,2],[0,1,0,1]],[[1,2,2,2],[2,3,3,1],[0,1,3,2],[0,1,0,1]],[[1,2,3,1],[2,3,3,1],[0,1,3,2],[0,1,0,1]],[[1,3,2,1],[2,3,3,1],[0,1,3,2],[0,1,0,1]],[[2,2,2,1],[2,3,3,1],[0,1,3,2],[0,1,0,1]],[[1,2,2,1],[2,3,4,1],[0,1,3,1],[1,1,1,0]],[[1,2,2,2],[2,3,3,1],[0,1,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[0,1,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[0,1,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[0,1,3,1],[1,1,1,0]],[[1,2,2,1],[2,3,4,1],[0,1,3,1],[1,1,0,1]],[[1,2,2,2],[2,3,3,1],[0,1,3,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,1],[0,1,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,1],[0,1,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,1],[0,1,3,1],[1,1,0,1]],[[1,2,2,1],[2,3,4,1],[0,1,3,1],[1,0,2,0]],[[1,2,2,2],[2,3,3,1],[0,1,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,1],[0,1,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,1],[0,1,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,3,1],[0,1,3,1],[1,0,2,0]],[[1,2,2,1],[2,3,4,1],[0,1,3,1],[1,0,1,1]],[[1,2,2,2],[2,3,3,1],[0,1,3,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[0,1,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[0,1,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[0,1,3,1],[1,0,1,1]],[[1,2,2,1],[2,3,4,1],[0,1,3,1],[0,2,1,0]],[[1,2,2,2],[2,3,3,1],[0,1,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,1],[0,1,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,1],[0,1,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[0,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,3,4,1],[0,1,3,1],[0,2,0,1]],[[1,2,2,2],[2,3,3,1],[0,1,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,1],[0,1,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,1],[0,1,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,1],[0,1,3,1],[0,2,0,1]],[[1,2,2,1],[2,3,4,1],[0,1,3,1],[0,1,2,0]],[[1,2,2,2],[2,3,3,1],[0,1,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,1],[0,1,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,3,1],[0,1,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,3,1],[0,1,3,1],[0,1,2,0]],[[1,2,2,1],[2,3,4,1],[0,1,3,1],[0,1,1,1]],[[1,2,2,2],[2,3,3,1],[0,1,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,1],[0,1,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,3,1],[0,1,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,3,1],[0,1,3,1],[0,1,1,1]],[[1,2,2,1],[2,3,4,1],[0,1,3,1],[0,0,2,1]],[[1,2,2,2],[2,3,3,1],[0,1,3,1],[0,0,2,1]],[[0,0,2,2],[1,3,2,2],[1,0,3,2],[1,2,2,1]],[[0,0,2,1],[1,3,2,3],[1,0,3,2],[1,2,2,1]],[[0,0,2,1],[1,3,2,2],[1,0,3,3],[1,2,2,1]],[[0,0,2,1],[1,3,2,2],[1,0,3,2],[1,2,3,1]],[[0,0,2,1],[1,3,2,2],[1,0,3,2],[1,2,2,2]],[[0,0,2,2],[1,3,2,2],[1,1,2,2],[1,2,2,1]],[[0,0,2,1],[1,3,2,3],[1,1,2,2],[1,2,2,1]],[[0,0,2,1],[1,3,2,2],[1,1,2,3],[1,2,2,1]],[[0,0,2,1],[1,3,2,2],[1,1,2,2],[2,2,2,1]],[[0,0,2,1],[1,3,2,2],[1,1,2,2],[1,3,2,1]],[[0,0,2,1],[1,3,2,2],[1,1,2,2],[1,2,3,1]],[[0,0,2,1],[1,3,2,2],[1,1,2,2],[1,2,2,2]],[[0,0,2,1],[1,3,2,2],[1,1,4,1],[1,2,2,1]],[[0,0,2,1],[1,3,2,2],[1,1,3,1],[2,2,2,1]],[[0,0,2,1],[1,3,2,2],[1,1,3,1],[1,3,2,1]],[[0,0,2,1],[1,3,2,2],[1,1,3,1],[1,2,3,1]],[[0,0,2,1],[1,3,2,2],[1,1,3,1],[1,2,2,2]],[[0,0,2,2],[1,3,2,2],[1,1,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,2,3],[1,1,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,2,2],[1,1,4,2],[1,2,1,1]],[[0,0,2,1],[1,3,2,2],[1,1,3,3],[1,2,1,1]],[[0,0,2,1],[1,3,2,2],[1,1,3,2],[1,2,1,2]],[[0,0,2,2],[1,3,2,2],[1,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,2,3],[1,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,2,2],[1,1,4,2],[1,2,2,0]],[[0,0,2,1],[1,3,2,2],[1,1,3,3],[1,2,2,0]],[[0,0,2,1],[1,3,2,2],[1,1,3,2],[2,2,2,0]],[[0,0,2,1],[1,3,2,2],[1,1,3,2],[1,3,2,0]],[[0,0,2,1],[1,3,2,2],[1,1,3,2],[1,2,3,0]],[[0,0,2,2],[1,3,2,2],[1,2,2,2],[1,1,2,1]],[[0,0,2,1],[1,3,2,3],[1,2,2,2],[1,1,2,1]],[[0,0,2,1],[1,3,2,2],[1,2,2,3],[1,1,2,1]],[[0,0,2,1],[1,3,2,2],[1,2,2,2],[1,1,3,1]],[[0,0,2,1],[1,3,2,2],[1,2,2,2],[1,1,2,2]],[[0,0,2,1],[1,3,2,2],[1,2,4,1],[1,1,2,1]],[[0,0,2,1],[1,3,2,2],[1,2,3,1],[1,1,3,1]],[[0,0,2,1],[1,3,2,2],[1,2,3,1],[1,1,2,2]],[[0,0,2,2],[1,3,2,2],[1,2,3,2],[1,0,2,1]],[[0,0,2,1],[1,3,2,3],[1,2,3,2],[1,0,2,1]],[[0,0,2,1],[1,3,2,2],[1,2,4,2],[1,0,2,1]],[[0,0,2,1],[1,3,2,2],[1,2,3,3],[1,0,2,1]],[[0,0,2,1],[1,3,2,2],[1,2,3,2],[1,0,2,2]],[[0,0,2,2],[1,3,2,2],[1,2,3,2],[1,1,1,1]],[[0,0,2,1],[1,3,2,3],[1,2,3,2],[1,1,1,1]],[[0,0,2,1],[1,3,2,2],[1,2,4,2],[1,1,1,1]],[[0,0,2,1],[1,3,2,2],[1,2,3,3],[1,1,1,1]],[[0,0,2,1],[1,3,2,2],[1,2,3,2],[1,1,1,2]],[[0,0,2,2],[1,3,2,2],[1,2,3,2],[1,1,2,0]],[[0,0,2,1],[1,3,2,3],[1,2,3,2],[1,1,2,0]],[[0,0,2,1],[1,3,2,2],[1,2,4,2],[1,1,2,0]],[[0,0,2,1],[1,3,2,2],[1,2,3,3],[1,1,2,0]],[[0,0,2,1],[1,3,2,2],[1,2,3,2],[1,1,3,0]],[[0,0,2,2],[1,3,2,2],[1,2,3,2],[1,2,0,1]],[[0,0,2,1],[1,3,2,3],[1,2,3,2],[1,2,0,1]],[[0,0,2,1],[1,3,2,2],[1,2,4,2],[1,2,0,1]],[[0,0,2,1],[1,3,2,2],[1,2,3,3],[1,2,0,1]],[[0,0,2,1],[1,3,2,2],[1,2,3,2],[1,2,0,2]],[[0,0,2,2],[1,3,2,2],[1,2,3,2],[1,2,1,0]],[[0,0,2,1],[1,3,2,3],[1,2,3,2],[1,2,1,0]],[[0,0,2,1],[1,3,2,2],[1,2,4,2],[1,2,1,0]],[[0,0,2,1],[1,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,3,1],[2,3,3,1],[0,1,3,1],[0,0,2,1]],[[1,3,2,1],[2,3,3,1],[0,1,3,1],[0,0,2,1]],[[2,2,2,1],[2,3,3,1],[0,1,3,1],[0,0,2,1]],[[1,2,2,1],[2,3,4,1],[0,1,3,0],[1,1,1,1]],[[1,2,2,2],[2,3,3,1],[0,1,3,0],[1,1,1,1]],[[1,2,3,1],[2,3,3,1],[0,1,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,1],[0,1,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,3,1],[0,1,3,0],[1,1,1,1]],[[1,2,2,1],[2,3,4,1],[0,1,3,0],[1,0,2,1]],[[1,2,2,2],[2,3,3,1],[0,1,3,0],[1,0,2,1]],[[1,2,3,1],[2,3,3,1],[0,1,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,3,1],[0,1,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,3,1],[0,1,3,0],[1,0,2,1]],[[1,2,2,1],[2,3,4,1],[0,1,3,0],[0,2,1,1]],[[1,2,2,2],[2,3,3,1],[0,1,3,0],[0,2,1,1]],[[1,2,3,1],[2,3,3,1],[0,1,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,1],[0,1,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,1],[0,1,3,0],[0,2,1,1]],[[1,2,2,1],[2,3,4,1],[0,1,3,0],[0,1,2,1]],[[1,2,2,2],[2,3,3,1],[0,1,3,0],[0,1,2,1]],[[1,2,3,1],[2,3,3,1],[0,1,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,3,1],[0,1,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,3,1],[0,1,3,0],[0,1,2,1]],[[0,0,2,2],[1,3,2,2],[2,0,2,2],[1,2,2,1]],[[0,0,2,1],[1,3,2,3],[2,0,2,2],[1,2,2,1]],[[0,0,2,1],[1,3,2,2],[3,0,2,2],[1,2,2,1]],[[0,0,2,1],[1,3,2,2],[2,0,2,3],[1,2,2,1]],[[0,0,2,1],[1,3,2,2],[2,0,2,2],[2,2,2,1]],[[0,0,2,1],[1,3,2,2],[2,0,2,2],[1,3,2,1]],[[0,0,2,1],[1,3,2,2],[2,0,2,2],[1,2,3,1]],[[0,0,2,1],[1,3,2,2],[2,0,2,2],[1,2,2,2]],[[0,0,2,1],[1,3,2,2],[3,0,3,1],[1,2,2,1]],[[0,0,2,1],[1,3,2,2],[2,0,4,1],[1,2,2,1]],[[0,0,2,1],[1,3,2,2],[2,0,3,1],[2,2,2,1]],[[0,0,2,1],[1,3,2,2],[2,0,3,1],[1,3,2,1]],[[0,0,2,1],[1,3,2,2],[2,0,3,1],[1,2,3,1]],[[0,0,2,1],[1,3,2,2],[2,0,3,1],[1,2,2,2]],[[0,0,2,2],[1,3,2,2],[2,0,3,2],[0,2,2,1]],[[0,0,2,1],[1,3,2,3],[2,0,3,2],[0,2,2,1]],[[0,0,2,1],[1,3,2,2],[2,0,3,3],[0,2,2,1]],[[0,0,2,1],[1,3,2,2],[2,0,3,2],[0,2,3,1]],[[0,0,2,1],[1,3,2,2],[2,0,3,2],[0,2,2,2]],[[0,0,2,2],[1,3,2,2],[2,0,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,2,3],[2,0,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,2,2],[2,0,4,2],[1,2,1,1]],[[0,0,2,1],[1,3,2,2],[2,0,3,3],[1,2,1,1]],[[0,0,2,1],[1,3,2,2],[2,0,3,2],[1,2,1,2]],[[0,0,2,2],[1,3,2,2],[2,0,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,2,3],[2,0,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,2,2],[3,0,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,2,2],[2,0,4,2],[1,2,2,0]],[[0,0,2,1],[1,3,2,2],[2,0,3,3],[1,2,2,0]],[[0,0,2,1],[1,3,2,2],[2,0,3,2],[2,2,2,0]],[[0,0,2,1],[1,3,2,2],[2,0,3,2],[1,3,2,0]],[[0,0,2,1],[1,3,2,2],[2,0,3,2],[1,2,3,0]],[[0,0,2,2],[1,3,2,2],[2,1,2,2],[0,2,2,1]],[[0,0,2,1],[1,3,2,3],[2,1,2,2],[0,2,2,1]],[[0,0,2,1],[1,3,2,2],[2,1,2,3],[0,2,2,1]],[[0,0,2,1],[1,3,2,2],[2,1,2,2],[0,3,2,1]],[[0,0,2,1],[1,3,2,2],[2,1,2,2],[0,2,3,1]],[[0,0,2,1],[1,3,2,2],[2,1,2,2],[0,2,2,2]],[[0,0,2,1],[1,3,2,2],[2,1,4,1],[0,2,2,1]],[[0,0,2,1],[1,3,2,2],[2,1,3,1],[0,3,2,1]],[[0,0,2,1],[1,3,2,2],[2,1,3,1],[0,2,3,1]],[[0,0,2,1],[1,3,2,2],[2,1,3,1],[0,2,2,2]],[[0,0,2,2],[1,3,2,2],[2,1,3,2],[0,2,1,1]],[[0,0,2,1],[1,3,2,3],[2,1,3,2],[0,2,1,1]],[[0,0,2,1],[1,3,2,2],[2,1,4,2],[0,2,1,1]],[[0,0,2,1],[1,3,2,2],[2,1,3,3],[0,2,1,1]],[[0,0,2,1],[1,3,2,2],[2,1,3,2],[0,2,1,2]],[[0,0,2,2],[1,3,2,2],[2,1,3,2],[0,2,2,0]],[[0,0,2,1],[1,3,2,3],[2,1,3,2],[0,2,2,0]],[[0,0,2,1],[1,3,2,2],[2,1,4,2],[0,2,2,0]],[[0,0,2,1],[1,3,2,2],[2,1,3,3],[0,2,2,0]],[[0,0,2,1],[1,3,2,2],[2,1,3,2],[0,3,2,0]],[[0,0,2,1],[1,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,3,4,1],[0,1,2,2],[1,1,1,0]],[[0,0,2,2],[1,3,2,2],[2,2,2,2],[0,1,2,1]],[[0,0,2,1],[1,3,2,3],[2,2,2,2],[0,1,2,1]],[[0,0,2,1],[1,3,2,2],[2,2,2,3],[0,1,2,1]],[[0,0,2,1],[1,3,2,2],[2,2,2,2],[0,1,3,1]],[[0,0,2,1],[1,3,2,2],[2,2,2,2],[0,1,2,2]],[[0,0,2,2],[1,3,2,2],[2,2,2,2],[1,0,2,1]],[[0,0,2,1],[1,3,2,3],[2,2,2,2],[1,0,2,1]],[[0,0,2,1],[1,3,2,2],[2,2,2,3],[1,0,2,1]],[[0,0,2,1],[1,3,2,2],[2,2,2,2],[1,0,3,1]],[[0,0,2,1],[1,3,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,2],[2,3,3,1],[0,1,2,2],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[0,1,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,3,1],[0,1,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,3,1],[0,1,2,2],[1,1,1,0]],[[1,2,2,1],[2,3,4,1],[0,1,2,2],[1,1,0,1]],[[1,2,2,2],[2,3,3,1],[0,1,2,2],[1,1,0,1]],[[1,2,3,1],[2,3,3,1],[0,1,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,3,1],[0,1,2,2],[1,1,0,1]],[[0,0,2,1],[1,3,2,2],[2,2,4,1],[0,1,2,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,1],[0,1,3,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,1],[0,1,2,2]],[[0,0,2,1],[1,3,2,2],[2,2,4,1],[1,0,2,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,1],[1,0,3,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,1],[1,0,2,2]],[[2,2,2,1],[2,3,3,1],[0,1,2,2],[1,1,0,1]],[[0,0,2,2],[1,3,2,2],[2,2,3,2],[0,0,2,1]],[[0,0,2,1],[1,3,2,3],[2,2,3,2],[0,0,2,1]],[[0,0,2,1],[1,3,2,2],[2,2,4,2],[0,0,2,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,3],[0,0,2,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,2],[0,0,2,2]],[[0,0,2,2],[1,3,2,2],[2,2,3,2],[0,1,1,1]],[[0,0,2,1],[1,3,2,3],[2,2,3,2],[0,1,1,1]],[[0,0,2,1],[1,3,2,2],[2,2,4,2],[0,1,1,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,3],[0,1,1,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,2],[0,1,1,2]],[[0,0,2,2],[1,3,2,2],[2,2,3,2],[0,1,2,0]],[[0,0,2,1],[1,3,2,3],[2,2,3,2],[0,1,2,0]],[[0,0,2,1],[1,3,2,2],[2,2,4,2],[0,1,2,0]],[[0,0,2,1],[1,3,2,2],[2,2,3,3],[0,1,2,0]],[[0,0,2,1],[1,3,2,2],[2,2,3,2],[0,1,3,0]],[[0,0,2,2],[1,3,2,2],[2,2,3,2],[0,2,0,1]],[[0,0,2,1],[1,3,2,3],[2,2,3,2],[0,2,0,1]],[[0,0,2,1],[1,3,2,2],[2,2,4,2],[0,2,0,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,3],[0,2,0,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,2],[0,2,0,2]],[[0,0,2,2],[1,3,2,2],[2,2,3,2],[0,2,1,0]],[[0,0,2,1],[1,3,2,3],[2,2,3,2],[0,2,1,0]],[[0,0,2,1],[1,3,2,2],[2,2,4,2],[0,2,1,0]],[[0,0,2,1],[1,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,3,4,1],[0,1,2,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,1],[0,1,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,1],[0,1,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,1],[0,1,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,1],[0,1,2,2],[1,0,2,0]],[[1,2,2,1],[2,3,4,1],[0,1,2,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,1],[0,1,2,2],[1,0,1,1]],[[0,0,2,2],[1,3,2,2],[2,2,3,2],[1,0,1,1]],[[0,0,2,1],[1,3,2,3],[2,2,3,2],[1,0,1,1]],[[0,0,2,1],[1,3,2,2],[2,2,4,2],[1,0,1,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,3],[1,0,1,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,2],[1,0,1,2]],[[0,0,2,2],[1,3,2,2],[2,2,3,2],[1,0,2,0]],[[0,0,2,1],[1,3,2,3],[2,2,3,2],[1,0,2,0]],[[0,0,2,1],[1,3,2,2],[2,2,4,2],[1,0,2,0]],[[0,0,2,1],[1,3,2,2],[2,2,3,3],[1,0,2,0]],[[0,0,2,1],[1,3,2,2],[2,2,3,2],[1,0,3,0]],[[0,0,2,2],[1,3,2,2],[2,2,3,2],[1,1,0,1]],[[0,0,2,1],[1,3,2,3],[2,2,3,2],[1,1,0,1]],[[0,0,2,1],[1,3,2,2],[2,2,4,2],[1,1,0,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,3],[1,1,0,1]],[[0,0,2,1],[1,3,2,2],[2,2,3,2],[1,1,0,2]],[[0,0,2,2],[1,3,2,2],[2,2,3,2],[1,1,1,0]],[[0,0,2,1],[1,3,2,3],[2,2,3,2],[1,1,1,0]],[[0,0,2,1],[1,3,2,2],[2,2,4,2],[1,1,1,0]],[[0,0,2,1],[1,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,3,1],[2,3,3,1],[0,1,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[0,1,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[0,1,2,2],[1,0,1,1]],[[1,2,2,1],[2,3,4,1],[0,1,2,2],[0,2,1,0]],[[1,2,2,2],[2,3,3,1],[0,1,2,2],[0,2,1,0]],[[1,2,3,1],[2,3,3,1],[0,1,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,3,1],[0,1,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,3,1],[0,1,2,2],[0,2,1,0]],[[1,2,2,1],[2,3,4,1],[0,1,2,2],[0,2,0,1]],[[1,2,2,2],[2,3,3,1],[0,1,2,2],[0,2,0,1]],[[1,2,3,1],[2,3,3,1],[0,1,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,3,1],[0,1,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,3,1],[0,1,2,2],[0,2,0,1]],[[1,2,2,1],[2,3,4,1],[0,1,2,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,1],[0,1,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,1],[0,1,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,3,1],[0,1,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,1],[0,1,2,2],[0,1,2,0]],[[1,2,2,1],[2,3,4,1],[0,1,2,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,1],[0,1,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,1],[0,1,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,1],[0,1,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,1],[0,1,2,2],[0,1,1,1]],[[1,2,2,1],[2,3,4,1],[0,1,2,2],[0,0,2,1]],[[1,2,2,2],[2,3,3,1],[0,1,2,2],[0,0,2,1]],[[1,2,3,1],[2,3,3,1],[0,1,2,2],[0,0,2,1]],[[1,3,2,1],[2,3,3,1],[0,1,2,2],[0,0,2,1]],[[2,2,2,1],[2,3,3,1],[0,1,2,2],[0,0,2,1]],[[1,2,2,1],[2,3,4,1],[0,1,1,2],[1,0,2,1]],[[1,2,2,2],[2,3,3,1],[0,1,1,2],[1,0,2,1]],[[1,2,3,1],[2,3,3,1],[0,1,1,2],[1,0,2,1]],[[1,3,2,1],[2,3,3,1],[0,1,1,2],[1,0,2,1]],[[2,2,2,1],[2,3,3,1],[0,1,1,2],[1,0,2,1]],[[1,2,2,1],[2,3,4,1],[0,1,1,2],[0,1,2,1]],[[1,2,2,2],[2,3,3,1],[0,1,1,2],[0,1,2,1]],[[1,2,3,1],[2,3,3,1],[0,1,1,2],[0,1,2,1]],[[1,3,2,1],[2,3,3,1],[0,1,1,2],[0,1,2,1]],[[2,2,2,1],[2,3,3,1],[0,1,1,2],[0,1,2,1]],[[1,2,2,1],[2,3,4,1],[0,0,3,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,1],[0,0,3,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,1],[0,0,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,1],[0,0,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,1],[0,0,3,2],[1,0,2,0]],[[1,2,2,1],[2,3,4,1],[0,0,3,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,1],[0,0,3,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,1],[0,0,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,1],[0,0,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,1],[0,0,3,2],[1,0,1,1]],[[0,0,2,2],[1,3,2,2],[2,3,3,2],[0,0,1,1]],[[0,0,2,1],[1,3,2,3],[2,3,3,2],[0,0,1,1]],[[0,0,2,1],[1,3,2,2],[2,3,4,2],[0,0,1,1]],[[0,0,2,1],[1,3,2,2],[2,3,3,3],[0,0,1,1]],[[0,0,2,1],[1,3,2,2],[2,3,3,2],[0,0,1,2]],[[0,0,2,2],[1,3,2,2],[2,3,3,2],[0,0,2,0]],[[0,0,2,1],[1,3,2,3],[2,3,3,2],[0,0,2,0]],[[0,0,2,1],[1,3,2,2],[2,3,4,2],[0,0,2,0]],[[0,0,2,1],[1,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,3,4,1],[0,0,3,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,1],[0,0,3,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,1],[0,0,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,3,1],[0,0,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,1],[0,0,3,2],[0,1,2,0]],[[1,2,2,1],[2,3,4,1],[0,0,3,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,1],[0,0,3,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,1],[0,0,3,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,1],[0,0,3,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,1],[0,0,3,2],[0,1,1,1]],[[1,2,2,1],[2,3,4,1],[0,0,3,2],[0,0,2,1]],[[1,2,2,2],[2,3,3,1],[0,0,3,2],[0,0,2,1]],[[1,2,3,1],[2,3,3,1],[0,0,3,2],[0,0,2,1]],[[1,3,2,1],[2,3,3,1],[0,0,3,2],[0,0,2,1]],[[2,2,2,1],[2,3,3,1],[0,0,3,2],[0,0,2,1]],[[1,2,2,1],[2,3,4,1],[0,0,3,1],[0,2,2,0]],[[1,2,2,2],[2,3,3,1],[0,0,3,1],[0,2,2,0]],[[1,2,3,1],[2,3,3,1],[0,0,3,1],[0,2,2,0]],[[1,3,2,1],[2,3,3,1],[0,0,3,1],[0,2,2,0]],[[2,2,2,1],[2,3,3,1],[0,0,3,1],[0,2,2,0]],[[1,2,2,1],[2,3,4,1],[0,0,3,1],[0,2,1,1]],[[1,2,2,2],[2,3,3,1],[0,0,3,1],[0,2,1,1]],[[1,2,3,1],[2,3,3,1],[0,0,3,1],[0,2,1,1]],[[1,3,2,1],[2,3,3,1],[0,0,3,1],[0,2,1,1]],[[2,2,2,1],[2,3,3,1],[0,0,3,1],[0,2,1,1]],[[1,2,2,1],[2,3,4,1],[0,0,3,0],[0,2,2,1]],[[1,2,2,2],[2,3,3,1],[0,0,3,0],[0,2,2,1]],[[1,2,3,1],[2,3,3,1],[0,0,3,0],[0,2,2,1]],[[1,3,2,1],[2,3,3,1],[0,0,3,0],[0,2,2,1]],[[2,2,2,1],[2,3,3,1],[0,0,3,0],[0,2,2,1]],[[1,2,2,1],[2,3,4,1],[0,0,2,2],[0,2,2,0]],[[1,2,2,2],[2,3,3,1],[0,0,2,2],[0,2,2,0]],[[1,2,3,1],[2,3,3,1],[0,0,2,2],[0,2,2,0]],[[1,3,2,1],[2,3,3,1],[0,0,2,2],[0,2,2,0]],[[2,2,2,1],[2,3,3,1],[0,0,2,2],[0,2,2,0]],[[1,2,2,1],[2,3,4,1],[0,0,2,2],[0,2,1,1]],[[1,2,2,2],[2,3,3,1],[0,0,2,2],[0,2,1,1]],[[1,2,3,1],[2,3,3,1],[0,0,2,2],[0,2,1,1]],[[1,3,2,1],[2,3,3,1],[0,0,2,2],[0,2,1,1]],[[2,2,2,1],[2,3,3,1],[0,0,2,2],[0,2,1,1]],[[1,2,2,1],[2,3,4,1],[0,0,1,2],[0,2,2,1]],[[1,2,2,2],[2,3,3,1],[0,0,1,2],[0,2,2,1]],[[1,2,3,1],[2,3,3,1],[0,0,1,2],[0,2,2,1]],[[1,3,2,1],[2,3,3,1],[0,0,1,2],[0,2,2,1]],[[2,2,2,1],[2,3,3,1],[0,0,1,2],[0,2,2,1]],[[0,0,2,1],[1,3,3,0],[0,3,2,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[0,3,2,2],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[0,3,2,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,0],[0,3,2,2],[1,2,2,2]],[[0,0,2,1],[1,3,4,0],[0,3,3,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[0,3,4,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[0,3,3,1],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[0,3,3,1],[1,2,3,1]],[[0,0,2,1],[1,3,3,0],[0,3,3,1],[1,2,2,2]],[[0,0,2,1],[1,3,4,0],[0,3,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[0,3,4,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[0,3,3,3],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[0,3,3,2],[1,2,1,2]],[[0,0,2,1],[1,3,4,0],[0,3,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[0,3,4,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[0,3,3,3],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[0,3,3,2],[1,3,2,0]],[[0,0,2,1],[1,3,3,0],[0,3,3,2],[1,2,3,0]],[[0,0,2,1],[1,3,3,0],[1,2,2,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,2,2,2],[2,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,2,2,2],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[1,2,2,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,0],[1,2,2,2],[1,2,2,2]],[[0,0,2,1],[1,3,4,0],[1,2,3,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,2,4,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,2,3,1],[2,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,2,3,1],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[1,2,3,1],[1,2,3,1]],[[0,0,2,1],[1,3,3,0],[1,2,3,1],[1,2,2,2]],[[0,0,2,1],[1,3,4,0],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[1,2,4,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[1,2,3,3],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[1,2,3,2],[1,2,1,2]],[[0,0,2,1],[1,3,4,0],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[1,2,4,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[1,2,3,3],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[1,2,3,2],[2,2,2,0]],[[0,0,2,1],[1,3,3,0],[1,2,3,2],[1,3,2,0]],[[0,0,2,1],[1,3,3,0],[1,2,3,2],[1,2,3,0]],[[0,0,2,1],[1,3,3,0],[1,4,1,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,1,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,1,2],[2,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,1,2],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,1,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,0],[1,3,1,2],[1,2,2,2]],[[0,0,2,1],[1,3,3,0],[1,4,2,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,2,1],[2,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,2,1],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,2,1],[1,2,3,1]],[[0,0,2,1],[1,3,3,0],[1,3,2,1],[1,2,2,2]],[[0,0,2,1],[1,3,3,0],[1,3,2,3],[1,1,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,2,2],[1,1,3,1]],[[0,0,2,1],[1,3,3,0],[1,3,2,2],[1,1,2,2]],[[0,0,2,1],[1,3,3,0],[1,4,2,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[1,3,2,2],[2,2,2,0]],[[0,0,2,1],[1,3,3,0],[1,3,2,2],[1,3,2,0]],[[0,0,2,1],[1,3,3,0],[1,3,2,2],[1,2,3,0]],[[0,0,2,1],[1,3,3,0],[1,4,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,0],[2,2,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,0],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,0],[1,2,3,1]],[[0,0,2,1],[1,3,4,0],[1,3,3,1],[1,1,2,1]],[[0,0,2,1],[1,3,3,0],[1,4,3,1],[1,1,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,4,1],[1,1,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,1],[1,1,3,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,1],[1,1,2,2]],[[0,0,2,1],[1,3,4,0],[1,3,3,1],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[1,4,3,1],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[1,3,4,1],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,1],[2,2,1,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,1],[1,3,1,1]],[[0,0,2,1],[1,3,4,0],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,4,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,3],[1,0,2,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,2],[1,0,2,2]],[[0,0,2,1],[1,3,4,0],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,0],[1,4,3,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,0],[1,3,4,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,3],[1,1,1,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,2],[1,1,1,2]],[[0,0,2,1],[1,3,4,0],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,0],[1,4,3,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,0],[1,3,4,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,0],[1,3,3,3],[1,1,2,0]],[[0,0,2,1],[1,3,3,0],[1,3,3,2],[1,1,3,0]],[[0,0,2,1],[1,3,4,0],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[1,3,3,0],[1,4,3,2],[1,2,0,1]],[[0,0,2,1],[1,3,3,0],[1,3,4,2],[1,2,0,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,3],[1,2,0,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,2],[2,2,0,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,2],[1,3,0,1]],[[0,0,2,1],[1,3,3,0],[1,3,3,2],[1,2,0,2]],[[0,0,2,1],[1,3,4,0],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[1,3,3,0],[1,4,3,2],[1,2,1,0]],[[0,0,2,1],[1,3,3,0],[1,3,4,2],[1,2,1,0]],[[0,0,2,1],[1,3,3,0],[1,3,3,3],[1,2,1,0]],[[0,0,2,1],[1,3,3,0],[1,3,3,2],[2,2,1,0]],[[0,0,2,1],[1,3,3,0],[1,3,3,2],[1,3,1,0]],[[0,0,2,1],[1,3,3,0],[3,1,2,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,1,2,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,1,2,2],[2,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,1,2,2],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[2,1,2,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,0],[2,1,2,2],[1,2,2,2]],[[0,0,2,1],[1,3,4,0],[2,1,3,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[3,1,3,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,1,4,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,1,3,1],[2,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,1,3,1],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[2,1,3,1],[1,2,3,1]],[[0,0,2,1],[1,3,3,0],[2,1,3,1],[1,2,2,2]],[[0,0,2,1],[1,3,4,0],[2,1,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[2,1,4,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[2,1,3,3],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[2,1,3,2],[1,2,1,2]],[[0,0,2,1],[1,3,4,0],[2,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[3,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[2,1,4,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[2,1,3,3],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[2,1,3,2],[2,2,2,0]],[[0,0,2,1],[1,3,3,0],[2,1,3,2],[1,3,2,0]],[[0,0,2,1],[1,3,3,0],[2,1,3,2],[1,2,3,0]],[[0,0,2,1],[1,3,3,0],[3,2,1,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,1,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,1,2],[2,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,1,2],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,1,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,0],[2,2,1,2],[1,2,2,2]],[[0,0,2,1],[1,3,3,0],[3,2,2,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,2,1],[2,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,2,1],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,2,1],[1,2,3,1]],[[0,0,2,1],[1,3,3,0],[2,2,2,1],[1,2,2,2]],[[0,0,2,1],[1,3,3,0],[2,2,2,3],[0,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,2,2],[0,3,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,2,2],[0,2,3,1]],[[0,0,2,1],[1,3,3,0],[2,2,2,2],[0,2,2,2]],[[0,0,2,1],[1,3,3,0],[3,2,2,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,0],[2,2,2,2],[2,2,2,0]],[[0,0,2,1],[1,3,3,0],[2,2,2,2],[1,3,2,0]],[[0,0,2,1],[1,3,3,0],[2,2,2,2],[1,2,3,0]],[[0,0,2,1],[1,3,3,0],[3,2,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,0],[2,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,0],[1,3,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,0],[1,2,3,1]],[[0,0,2,1],[1,3,4,0],[2,2,3,1],[0,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,4,1],[0,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,1],[0,3,2,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,1],[0,2,3,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,1],[0,2,2,2]],[[0,0,2,1],[1,3,3,0],[3,2,3,1],[1,2,1,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,1],[2,2,1,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,1],[1,3,1,1]],[[0,0,2,1],[1,3,4,0],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[1,3,3,0],[2,2,4,2],[0,2,1,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,3],[0,2,1,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,2],[0,2,1,2]],[[0,0,2,1],[1,3,4,0],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,0],[2,2,4,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,0],[2,2,3,3],[0,2,2,0]],[[0,0,2,1],[1,3,3,0],[2,2,3,2],[0,3,2,0]],[[0,0,2,1],[1,3,3,0],[2,2,3,2],[0,2,3,0]],[[0,0,2,1],[1,3,3,0],[3,2,3,2],[1,2,0,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,2],[2,2,0,1]],[[0,0,2,1],[1,3,3,0],[2,2,3,2],[1,3,0,1]],[[0,0,2,1],[1,3,3,0],[3,2,3,2],[1,2,1,0]],[[0,0,2,1],[1,3,3,0],[2,2,3,2],[2,2,1,0]],[[0,0,2,1],[1,3,3,0],[2,2,3,2],[1,3,1,0]],[[0,0,2,1],[1,3,3,0],[3,3,1,2],[0,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,4,1,2],[0,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,1,3],[0,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,1,2],[0,3,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,1,2],[0,2,3,1]],[[0,0,2,1],[1,3,3,0],[2,3,1,2],[0,2,2,2]],[[0,0,2,1],[1,3,3,0],[3,3,1,2],[1,1,2,1]],[[0,0,2,1],[1,3,3,0],[2,4,1,2],[1,1,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,1,2],[2,1,2,1]],[[0,0,2,1],[1,3,3,0],[3,3,2,1],[0,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,4,2,1],[0,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,2,1],[0,3,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,2,1],[0,2,3,1]],[[0,0,2,1],[1,3,3,0],[2,3,2,1],[0,2,2,2]],[[0,0,2,1],[1,3,3,0],[3,3,2,1],[1,1,2,1]],[[0,0,2,1],[1,3,3,0],[2,4,2,1],[1,1,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,2,1],[2,1,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,2,3],[0,1,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,2,2],[0,1,3,1]],[[0,0,2,1],[1,3,3,0],[2,3,2,2],[0,1,2,2]],[[0,0,2,1],[1,3,3,0],[3,3,2,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,0],[2,4,2,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,0],[2,3,2,2],[0,3,2,0]],[[0,0,2,1],[1,3,3,0],[2,3,2,2],[0,2,3,0]],[[0,0,2,1],[1,3,3,0],[2,3,2,3],[1,0,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,2,2],[1,0,3,1]],[[0,0,2,1],[1,3,3,0],[2,3,2,2],[1,0,2,2]],[[0,0,2,1],[1,3,3,0],[3,3,2,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,0],[2,4,2,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,0],[2,3,2,2],[2,1,2,0]],[[0,0,2,1],[1,3,3,0],[3,3,3,0],[0,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,4,3,0],[0,2,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,0],[0,3,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,0],[0,2,3,1]],[[0,0,2,1],[1,3,3,0],[3,3,3,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,0],[2,4,3,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,0],[2,1,2,1]],[[0,0,2,1],[1,3,4,0],[2,3,3,1],[0,1,2,1]],[[0,0,2,1],[1,3,3,0],[3,3,3,1],[0,1,2,1]],[[0,0,2,1],[1,3,3,0],[2,4,3,1],[0,1,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,4,1],[0,1,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,1],[0,1,3,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,1],[0,1,2,2]],[[0,0,2,1],[1,3,4,0],[2,3,3,1],[0,2,1,1]],[[0,0,2,1],[1,3,3,0],[3,3,3,1],[0,2,1,1]],[[0,0,2,1],[1,3,3,0],[2,4,3,1],[0,2,1,1]],[[0,0,2,1],[1,3,3,0],[2,3,4,1],[0,2,1,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,1],[0,3,1,1]],[[0,0,2,1],[1,3,4,0],[2,3,3,1],[1,0,2,1]],[[0,0,2,1],[1,3,3,0],[3,3,3,1],[1,0,2,1]],[[0,0,2,1],[1,3,3,0],[2,4,3,1],[1,0,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,4,1],[1,0,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,1],[2,0,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,1],[1,0,3,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,1],[1,0,2,2]],[[0,0,2,1],[1,3,4,0],[2,3,3,1],[1,1,1,1]],[[0,0,2,1],[1,3,3,0],[3,3,3,1],[1,1,1,1]],[[0,0,2,1],[1,3,3,0],[2,4,3,1],[1,1,1,1]],[[0,0,2,1],[1,3,3,0],[2,3,4,1],[1,1,1,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,1],[2,1,1,1]],[[0,0,2,1],[1,3,3,0],[3,3,3,1],[1,2,0,1]],[[0,0,2,1],[1,3,3,0],[2,4,3,1],[1,2,0,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,1],[2,2,0,1]],[[0,0,2,1],[1,3,4,0],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,4,2],[0,0,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,3],[0,0,2,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[0,0,2,2]],[[0,0,2,1],[1,3,4,0],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,0],[3,3,3,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,0],[2,4,3,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,0],[2,3,4,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,3],[0,1,1,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[0,1,1,2]],[[0,0,2,1],[1,3,4,0],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,0],[3,3,3,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,0],[2,4,3,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,0],[2,3,4,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,0],[2,3,3,3],[0,1,2,0]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[0,1,3,0]],[[0,0,2,1],[1,3,4,0],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[1,3,3,0],[3,3,3,2],[0,2,0,1]],[[0,0,2,1],[1,3,3,0],[2,4,3,2],[0,2,0,1]],[[0,0,2,1],[1,3,3,0],[2,3,4,2],[0,2,0,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,3],[0,2,0,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[0,3,0,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[0,2,0,2]],[[0,0,2,1],[1,3,4,0],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[1,3,3,0],[3,3,3,2],[0,2,1,0]],[[0,0,2,1],[1,3,3,0],[2,4,3,2],[0,2,1,0]],[[0,0,2,1],[1,3,3,0],[2,3,4,2],[0,2,1,0]],[[0,0,2,1],[1,3,3,0],[2,3,3,3],[0,2,1,0]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[0,3,1,0]],[[0,0,2,1],[1,3,4,0],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,0],[3,3,3,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,0],[2,4,3,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,0],[2,3,4,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,3],[1,0,1,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[2,0,1,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[1,0,1,2]],[[0,0,2,1],[1,3,4,0],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,0],[3,3,3,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,0],[2,4,3,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,0],[2,3,4,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,0],[2,3,3,3],[1,0,2,0]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[2,0,2,0]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[1,0,3,0]],[[0,0,2,1],[1,3,4,0],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,0],[3,3,3,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,0],[2,4,3,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,0],[2,3,4,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,3],[1,1,0,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[2,1,0,1]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[1,1,0,2]],[[0,0,2,1],[1,3,4,0],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[1,3,3,0],[3,3,3,2],[1,1,1,0]],[[0,0,2,1],[1,3,3,0],[2,4,3,2],[1,1,1,0]],[[0,0,2,1],[1,3,3,0],[2,3,4,2],[1,1,1,0]],[[0,0,2,1],[1,3,3,0],[2,3,3,3],[1,1,1,0]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[2,1,1,0]],[[0,0,2,1],[1,3,3,0],[3,3,3,2],[1,2,0,0]],[[0,0,2,1],[1,3,3,0],[2,4,3,2],[1,2,0,0]],[[0,0,2,1],[1,3,3,0],[2,3,3,2],[2,2,0,0]],[[0,0,2,1],[1,3,4,1],[0,3,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[0,3,4,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[0,3,3,0],[1,3,2,1]],[[0,0,2,1],[1,3,3,1],[0,3,3,0],[1,2,3,1]],[[0,0,2,1],[1,3,3,1],[0,3,3,0],[1,2,2,2]],[[0,0,2,1],[1,3,4,1],[0,3,3,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[0,3,4,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[0,3,3,1],[1,3,2,0]],[[0,0,2,1],[1,3,3,1],[0,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,3,3,0],[2,3,1,0],[2,2,0,0]],[[1,2,2,1],[2,3,3,0],[3,3,1,0],[1,2,0,0]],[[1,2,2,1],[3,3,3,0],[2,3,1,0],[1,2,0,0]],[[1,3,2,1],[2,3,3,0],[2,3,1,0],[1,2,0,0]],[[0,0,2,1],[1,3,3,1],[1,0,3,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[1,0,3,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,1],[1,0,3,2],[1,2,2,2]],[[0,0,2,1],[1,3,3,1],[1,1,2,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[1,1,2,2],[2,2,2,1]],[[0,0,2,1],[1,3,3,1],[1,1,2,2],[1,3,2,1]],[[0,0,2,1],[1,3,3,1],[1,1,2,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,1],[1,1,2,2],[1,2,2,2]],[[0,0,2,1],[1,3,4,1],[1,1,3,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[1,1,4,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[1,1,3,1],[2,2,2,1]],[[0,0,2,1],[1,3,3,1],[1,1,3,1],[1,3,2,1]],[[0,0,2,1],[1,3,3,1],[1,1,3,1],[1,2,3,1]],[[0,0,2,1],[1,3,3,1],[1,1,3,1],[1,2,2,2]],[[0,0,2,1],[1,3,4,1],[1,1,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,1],[1,1,4,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,1],[1,1,3,3],[1,2,1,1]],[[0,0,2,1],[1,3,3,1],[1,1,3,2],[1,2,1,2]],[[0,0,2,1],[1,3,4,1],[1,1,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[1,1,4,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[1,1,3,3],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[1,1,3,2],[2,2,2,0]],[[0,0,2,1],[1,3,3,1],[1,1,3,2],[1,3,2,0]],[[0,0,2,1],[1,3,3,1],[1,1,3,2],[1,2,3,0]],[[0,0,2,1],[1,3,3,1],[1,2,2,3],[1,1,2,1]],[[0,0,2,1],[1,3,3,1],[1,2,2,2],[1,1,3,1]],[[0,0,2,1],[1,3,3,1],[1,2,2,2],[1,1,2,2]],[[0,0,2,1],[1,3,4,1],[1,2,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[1,2,4,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,0],[2,2,2,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,0],[1,3,2,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,0],[1,2,3,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,0],[1,2,2,2]],[[0,0,2,1],[1,3,4,1],[1,2,3,1],[1,1,2,1]],[[0,0,2,1],[1,3,3,1],[1,2,4,1],[1,1,2,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,1],[1,1,3,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,1],[1,1,2,2]],[[0,0,2,1],[1,3,4,1],[1,2,3,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[1,2,4,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[1,2,3,1],[2,2,2,0]],[[0,0,2,1],[1,3,3,1],[1,2,3,1],[1,3,2,0]],[[0,0,2,1],[1,3,3,1],[1,2,3,1],[1,2,3,0]],[[0,0,2,1],[1,3,4,1],[1,2,3,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,1],[1,2,4,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,3],[1,0,2,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,2],[1,0,2,2]],[[0,0,2,1],[1,3,4,1],[1,2,3,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,1],[1,2,4,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,3],[1,1,1,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,2],[1,1,1,2]],[[0,0,2,1],[1,3,4,1],[1,2,3,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,1],[1,2,4,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,1],[1,2,3,3],[1,1,2,0]],[[0,0,2,1],[1,3,3,1],[1,2,3,2],[1,1,3,0]],[[0,0,2,1],[1,3,4,1],[1,2,3,2],[1,2,0,1]],[[0,0,2,1],[1,3,3,1],[1,2,4,2],[1,2,0,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,3],[1,2,0,1]],[[0,0,2,1],[1,3,3,1],[1,2,3,2],[1,2,0,2]],[[0,0,2,1],[1,3,4,1],[1,2,3,2],[1,2,1,0]],[[0,0,2,1],[1,3,3,1],[1,2,4,2],[1,2,1,0]],[[0,0,2,1],[1,3,3,1],[1,2,3,3],[1,2,1,0]],[[2,2,2,1],[2,3,3,0],[2,3,1,0],[1,2,0,0]],[[0,0,2,1],[1,3,3,1],[1,4,2,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[1,3,2,0],[2,2,2,1]],[[0,0,2,1],[1,3,3,1],[1,3,2,0],[1,3,2,1]],[[0,0,2,1],[1,3,3,1],[1,3,2,0],[1,2,3,1]],[[0,0,2,1],[1,3,3,1],[1,3,2,0],[1,2,2,2]],[[0,0,2,1],[1,3,3,1],[1,4,2,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[1,3,2,1],[2,2,2,0]],[[0,0,2,1],[1,3,3,1],[1,3,2,1],[1,3,2,0]],[[0,0,2,1],[1,3,3,1],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[2,3,3,0],[3,3,1,0],[1,1,1,0]],[[0,0,2,1],[1,3,4,1],[1,3,3,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,1],[1,4,3,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,1],[1,3,4,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,1],[1,3,3,0],[1,1,3,1]],[[0,0,2,1],[1,3,3,1],[1,3,3,0],[1,1,2,2]],[[0,0,2,1],[1,3,4,1],[1,3,3,0],[1,2,1,1]],[[0,0,2,1],[1,3,3,1],[1,4,3,0],[1,2,1,1]],[[0,0,2,1],[1,3,3,1],[1,3,4,0],[1,2,1,1]],[[0,0,2,1],[1,3,3,1],[1,3,3,0],[2,2,1,1]],[[0,0,2,1],[1,3,3,1],[1,3,3,0],[1,3,1,1]],[[0,0,2,1],[1,3,4,1],[1,3,3,1],[1,1,1,1]],[[0,0,2,1],[1,3,3,1],[1,4,3,1],[1,1,1,1]],[[0,0,2,1],[1,3,3,1],[1,3,4,1],[1,1,1,1]],[[0,0,2,1],[1,3,4,1],[1,3,3,1],[1,1,2,0]],[[0,0,2,1],[1,3,3,1],[1,4,3,1],[1,1,2,0]],[[0,0,2,1],[1,3,3,1],[1,3,4,1],[1,1,2,0]],[[0,0,2,1],[1,3,3,1],[1,3,3,1],[1,1,3,0]],[[0,0,2,1],[1,3,4,1],[1,3,3,1],[1,2,0,1]],[[0,0,2,1],[1,3,3,1],[1,4,3,1],[1,2,0,1]],[[0,0,2,1],[1,3,3,1],[1,3,4,1],[1,2,0,1]],[[0,0,2,1],[1,3,3,1],[1,3,3,1],[2,2,0,1]],[[0,0,2,1],[1,3,3,1],[1,3,3,1],[1,3,0,1]],[[0,0,2,1],[1,3,4,1],[1,3,3,1],[1,2,1,0]],[[0,0,2,1],[1,3,3,1],[1,4,3,1],[1,2,1,0]],[[0,0,2,1],[1,3,3,1],[1,3,4,1],[1,2,1,0]],[[0,0,2,1],[1,3,3,1],[1,3,3,1],[2,2,1,0]],[[0,0,2,1],[1,3,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[3,3,3,0],[2,3,1,0],[1,1,1,0]],[[1,3,2,1],[2,3,3,0],[2,3,1,0],[1,1,1,0]],[[2,2,2,1],[2,3,3,0],[2,3,1,0],[1,1,1,0]],[[1,2,2,1],[3,3,3,0],[2,3,1,0],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[2,3,1,0],[0,2,1,0]],[[2,2,2,1],[2,3,3,0],[2,3,1,0],[0,2,1,0]],[[0,0,2,1],[1,3,3,1],[3,0,2,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,0,2,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,0,2,2],[2,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,0,2,2],[1,3,2,1]],[[0,0,2,1],[1,3,3,1],[2,0,2,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,1],[2,0,2,2],[1,2,2,2]],[[0,0,2,1],[1,3,4,1],[2,0,3,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[3,0,3,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,0,4,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,0,3,1],[2,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,0,3,1],[1,3,2,1]],[[0,0,2,1],[1,3,3,1],[2,0,3,1],[1,2,3,1]],[[0,0,2,1],[1,3,3,1],[2,0,3,1],[1,2,2,2]],[[0,0,2,1],[1,3,3,1],[2,0,3,3],[0,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,0,3,2],[0,2,3,1]],[[0,0,2,1],[1,3,3,1],[2,0,3,2],[0,2,2,2]],[[0,0,2,1],[1,3,4,1],[2,0,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,1],[2,0,4,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,1],[2,0,3,3],[1,2,1,1]],[[0,0,2,1],[1,3,3,1],[2,0,3,2],[1,2,1,2]],[[0,0,2,1],[1,3,4,1],[2,0,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[3,0,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,0,4,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,0,3,3],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,0,3,2],[2,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,0,3,2],[1,3,2,0]],[[0,0,2,1],[1,3,3,1],[2,0,3,2],[1,2,3,0]],[[0,0,2,1],[1,3,3,1],[2,1,2,3],[0,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,1,2,2],[0,3,2,1]],[[0,0,2,1],[1,3,3,1],[2,1,2,2],[0,2,3,1]],[[0,0,2,1],[1,3,3,1],[2,1,2,2],[0,2,2,2]],[[0,0,2,1],[1,3,4,1],[2,1,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[3,1,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,1,4,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,1,3,0],[2,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,1,3,0],[1,3,2,1]],[[0,0,2,1],[1,3,3,1],[2,1,3,0],[1,2,3,1]],[[0,0,2,1],[1,3,3,1],[2,1,3,0],[1,2,2,2]],[[0,0,2,1],[1,3,4,1],[2,1,3,1],[0,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,1,4,1],[0,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,1,3,1],[0,3,2,1]],[[0,0,2,1],[1,3,3,1],[2,1,3,1],[0,2,3,1]],[[0,0,2,1],[1,3,3,1],[2,1,3,1],[0,2,2,2]],[[0,0,2,1],[1,3,4,1],[2,1,3,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[3,1,3,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,1,4,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,1,3,1],[2,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,1,3,1],[1,3,2,0]],[[0,0,2,1],[1,3,3,1],[2,1,3,1],[1,2,3,0]],[[0,0,2,1],[1,3,4,1],[2,1,3,2],[0,2,1,1]],[[0,0,2,1],[1,3,3,1],[2,1,4,2],[0,2,1,1]],[[0,0,2,1],[1,3,3,1],[2,1,3,3],[0,2,1,1]],[[0,0,2,1],[1,3,3,1],[2,1,3,2],[0,2,1,2]],[[0,0,2,1],[1,3,4,1],[2,1,3,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,1,4,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,1,3,3],[0,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,1,3,2],[0,3,2,0]],[[0,0,2,1],[1,3,3,1],[2,1,3,2],[0,2,3,0]],[[0,0,2,1],[1,3,3,1],[3,2,2,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,2,0],[2,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,2,0],[1,3,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,2,0],[1,2,3,1]],[[0,0,2,1],[1,3,3,1],[2,2,2,0],[1,2,2,2]],[[0,0,2,1],[1,3,3,1],[3,2,2,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,2,1],[2,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,2,1],[1,3,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,2,1],[1,2,3,0]],[[0,0,2,1],[1,3,3,1],[2,2,2,3],[0,1,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,2,2],[0,1,3,1]],[[0,0,2,1],[1,3,3,1],[2,2,2,2],[0,1,2,2]],[[0,0,2,1],[1,3,3,1],[2,2,2,3],[1,0,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,2,2],[1,0,3,1]],[[0,0,2,1],[1,3,3,1],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,3,3,0],[2,3,0,1],[2,2,0,0]],[[1,2,2,1],[2,3,3,0],[3,3,0,1],[1,2,0,0]],[[1,2,2,1],[3,3,3,0],[2,3,0,1],[1,2,0,0]],[[0,0,2,1],[1,3,4,1],[2,2,3,0],[0,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,4,0],[0,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,0],[0,3,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,0],[0,2,3,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,0],[0,2,2,2]],[[0,0,2,1],[1,3,3,1],[3,2,3,0],[1,2,1,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,0],[2,2,1,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,0],[1,3,1,1]],[[0,0,2,1],[1,3,4,1],[2,2,3,1],[0,1,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,4,1],[0,1,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,1],[0,1,3,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,1],[0,1,2,2]],[[0,0,2,1],[1,3,4,1],[2,2,3,1],[0,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,4,1],[0,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,3,1],[0,3,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,3,1],[0,2,3,0]],[[0,0,2,1],[1,3,4,1],[2,2,3,1],[1,0,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,4,1],[1,0,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,1],[1,0,3,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,1],[1,0,2,2]],[[0,0,2,1],[1,3,3,1],[3,2,3,1],[1,2,0,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,1],[2,2,0,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,1],[1,3,0,1]],[[0,0,2,1],[1,3,3,1],[3,2,3,1],[1,2,1,0]],[[0,0,2,1],[1,3,3,1],[2,2,3,1],[2,2,1,0]],[[0,0,2,1],[1,3,3,1],[2,2,3,1],[1,3,1,0]],[[1,3,2,1],[2,3,3,0],[2,3,0,1],[1,2,0,0]],[[2,2,2,1],[2,3,3,0],[2,3,0,1],[1,2,0,0]],[[0,0,2,1],[1,3,4,1],[2,2,3,2],[0,0,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,4,2],[0,0,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,3],[0,0,2,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,2],[0,0,2,2]],[[0,0,2,1],[1,3,4,1],[2,2,3,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,1],[2,2,4,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,3],[0,1,1,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,2],[0,1,1,2]],[[0,0,2,1],[1,3,4,1],[2,2,3,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,4,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,3,3],[0,1,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,3,2],[0,1,3,0]],[[0,0,2,1],[1,3,4,1],[2,2,3,2],[0,2,0,1]],[[0,0,2,1],[1,3,3,1],[2,2,4,2],[0,2,0,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,3],[0,2,0,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,2],[0,2,0,2]],[[0,0,2,1],[1,3,4,1],[2,2,3,2],[0,2,1,0]],[[0,0,2,1],[1,3,3,1],[2,2,4,2],[0,2,1,0]],[[0,0,2,1],[1,3,3,1],[2,2,3,3],[0,2,1,0]],[[0,0,2,1],[1,3,4,1],[2,2,3,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,1],[2,2,4,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,3],[1,0,1,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,2],[1,0,1,2]],[[0,0,2,1],[1,3,4,1],[2,2,3,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,4,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,3,3],[1,0,2,0]],[[0,0,2,1],[1,3,3,1],[2,2,3,2],[1,0,3,0]],[[0,0,2,1],[1,3,4,1],[2,2,3,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,1],[2,2,4,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,3],[1,1,0,1]],[[0,0,2,1],[1,3,3,1],[2,2,3,2],[1,1,0,2]],[[0,0,2,1],[1,3,4,1],[2,2,3,2],[1,1,1,0]],[[0,0,2,1],[1,3,3,1],[2,2,4,2],[1,1,1,0]],[[0,0,2,1],[1,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,3,3,0],[3,3,0,1],[1,1,1,0]],[[1,2,2,1],[3,3,3,0],[2,3,0,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,0],[2,3,0,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,0],[2,3,0,1],[1,1,1,0]],[[1,2,2,1],[2,3,3,0],[3,3,0,1],[1,1,0,1]],[[1,2,2,1],[3,3,3,0],[2,3,0,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,0],[2,3,0,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,0],[2,3,0,1],[1,1,0,1]],[[1,2,2,1],[3,3,3,0],[2,3,0,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[2,3,0,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,0],[2,3,0,1],[0,2,1,0]],[[1,2,2,1],[3,3,3,0],[2,3,0,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,0],[2,3,0,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,0],[2,3,0,1],[0,2,0,1]],[[0,0,2,1],[1,3,3,1],[3,3,2,0],[0,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,4,2,0],[0,2,2,1]],[[0,0,2,1],[1,3,3,1],[2,3,2,0],[0,3,2,1]],[[0,0,2,1],[1,3,3,1],[2,3,2,0],[0,2,3,1]],[[0,0,2,1],[1,3,3,1],[2,3,2,0],[0,2,2,2]],[[0,0,2,1],[1,3,3,1],[3,3,2,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,1],[2,4,2,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,1],[2,3,2,0],[2,1,2,1]],[[0,0,2,1],[1,3,3,1],[3,3,2,1],[0,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,4,2,1],[0,2,2,0]],[[0,0,2,1],[1,3,3,1],[2,3,2,1],[0,3,2,0]],[[0,0,2,1],[1,3,3,1],[2,3,2,1],[0,2,3,0]],[[0,0,2,1],[1,3,3,1],[3,3,2,1],[1,1,2,0]],[[0,0,2,1],[1,3,3,1],[2,4,2,1],[1,1,2,0]],[[0,0,2,1],[1,3,3,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,3,3,0],[2,3,0,0],[2,2,0,1]],[[1,2,2,1],[2,3,3,0],[3,3,0,0],[1,2,0,1]],[[1,2,2,1],[3,3,3,0],[2,3,0,0],[1,2,0,1]],[[1,3,2,1],[2,3,3,0],[2,3,0,0],[1,2,0,1]],[[2,2,2,1],[2,3,3,0],[2,3,0,0],[1,2,0,1]],[[1,2,2,1],[2,3,3,0],[3,3,0,0],[1,1,1,1]],[[1,2,2,1],[3,3,3,0],[2,3,0,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,0],[2,3,0,0],[1,1,1,1]],[[2,2,2,1],[2,3,3,0],[2,3,0,0],[1,1,1,1]],[[1,2,2,1],[3,3,3,0],[2,3,0,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,0],[2,3,0,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,0],[2,3,0,0],[0,2,1,1]],[[0,0,2,1],[1,3,4,1],[2,3,3,0],[0,1,2,1]],[[0,0,2,1],[1,3,3,1],[3,3,3,0],[0,1,2,1]],[[0,0,2,1],[1,3,3,1],[2,4,3,0],[0,1,2,1]],[[0,0,2,1],[1,3,3,1],[2,3,4,0],[0,1,2,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,0],[0,1,3,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,0],[0,1,2,2]],[[0,0,2,1],[1,3,4,1],[2,3,3,0],[0,2,1,1]],[[0,0,2,1],[1,3,3,1],[3,3,3,0],[0,2,1,1]],[[0,0,2,1],[1,3,3,1],[2,4,3,0],[0,2,1,1]],[[0,0,2,1],[1,3,3,1],[2,3,4,0],[0,2,1,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,0],[0,3,1,1]],[[0,0,2,1],[1,3,4,1],[2,3,3,0],[1,0,2,1]],[[0,0,2,1],[1,3,3,1],[3,3,3,0],[1,0,2,1]],[[0,0,2,1],[1,3,3,1],[2,4,3,0],[1,0,2,1]],[[0,0,2,1],[1,3,3,1],[2,3,4,0],[1,0,2,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,0],[2,0,2,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,0],[1,0,3,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,0],[1,0,2,2]],[[0,0,2,1],[1,3,4,1],[2,3,3,0],[1,1,1,1]],[[0,0,2,1],[1,3,3,1],[3,3,3,0],[1,1,1,1]],[[0,0,2,1],[1,3,3,1],[2,4,3,0],[1,1,1,1]],[[0,0,2,1],[1,3,3,1],[2,3,4,0],[1,1,1,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,0],[2,1,1,1]],[[0,0,2,1],[1,3,3,1],[3,3,3,0],[1,2,0,1]],[[0,0,2,1],[1,3,3,1],[2,4,3,0],[1,2,0,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,0],[2,2,0,1]],[[0,0,2,1],[1,3,4,1],[2,3,3,1],[0,1,1,1]],[[0,0,2,1],[1,3,3,1],[3,3,3,1],[0,1,1,1]],[[0,0,2,1],[1,3,3,1],[2,4,3,1],[0,1,1,1]],[[0,0,2,1],[1,3,3,1],[2,3,4,1],[0,1,1,1]],[[0,0,2,1],[1,3,4,1],[2,3,3,1],[0,1,2,0]],[[0,0,2,1],[1,3,3,1],[3,3,3,1],[0,1,2,0]],[[0,0,2,1],[1,3,3,1],[2,4,3,1],[0,1,2,0]],[[0,0,2,1],[1,3,3,1],[2,3,4,1],[0,1,2,0]],[[0,0,2,1],[1,3,3,1],[2,3,3,1],[0,1,3,0]],[[0,0,2,1],[1,3,4,1],[2,3,3,1],[0,2,0,1]],[[0,0,2,1],[1,3,3,1],[3,3,3,1],[0,2,0,1]],[[0,0,2,1],[1,3,3,1],[2,4,3,1],[0,2,0,1]],[[0,0,2,1],[1,3,3,1],[2,3,4,1],[0,2,0,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,1],[0,3,0,1]],[[0,0,2,1],[1,3,4,1],[2,3,3,1],[0,2,1,0]],[[0,0,2,1],[1,3,3,1],[3,3,3,1],[0,2,1,0]],[[0,0,2,1],[1,3,3,1],[2,4,3,1],[0,2,1,0]],[[0,0,2,1],[1,3,3,1],[2,3,4,1],[0,2,1,0]],[[0,0,2,1],[1,3,3,1],[2,3,3,1],[0,3,1,0]],[[0,0,2,1],[1,3,4,1],[2,3,3,1],[1,0,1,1]],[[0,0,2,1],[1,3,3,1],[3,3,3,1],[1,0,1,1]],[[0,0,2,1],[1,3,3,1],[2,4,3,1],[1,0,1,1]],[[0,0,2,1],[1,3,3,1],[2,3,4,1],[1,0,1,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,1],[2,0,1,1]],[[0,0,2,1],[1,3,4,1],[2,3,3,1],[1,0,2,0]],[[0,0,2,1],[1,3,3,1],[3,3,3,1],[1,0,2,0]],[[0,0,2,1],[1,3,3,1],[2,4,3,1],[1,0,2,0]],[[0,0,2,1],[1,3,3,1],[2,3,4,1],[1,0,2,0]],[[0,0,2,1],[1,3,3,1],[2,3,3,1],[2,0,2,0]],[[0,0,2,1],[1,3,3,1],[2,3,3,1],[1,0,3,0]],[[0,0,2,1],[1,3,4,1],[2,3,3,1],[1,1,0,1]],[[0,0,2,1],[1,3,3,1],[3,3,3,1],[1,1,0,1]],[[0,0,2,1],[1,3,3,1],[2,4,3,1],[1,1,0,1]],[[0,0,2,1],[1,3,3,1],[2,3,4,1],[1,1,0,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,1],[2,1,0,1]],[[0,0,2,1],[1,3,4,1],[2,3,3,1],[1,1,1,0]],[[0,0,2,1],[1,3,3,1],[3,3,3,1],[1,1,1,0]],[[0,0,2,1],[1,3,3,1],[2,4,3,1],[1,1,1,0]],[[0,0,2,1],[1,3,3,1],[2,3,4,1],[1,1,1,0]],[[0,0,2,1],[1,3,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[3,3,3,0],[2,2,3,1],[1,0,0,0]],[[1,2,3,1],[2,3,3,0],[2,2,3,1],[1,0,0,0]],[[1,3,2,1],[2,3,3,0],[2,2,3,1],[1,0,0,0]],[[2,2,2,1],[2,3,3,0],[2,2,3,1],[1,0,0,0]],[[0,0,2,1],[1,3,3,1],[3,3,3,1],[1,2,0,0]],[[0,0,2,1],[1,3,3,1],[2,4,3,1],[1,2,0,0]],[[0,0,2,1],[1,3,3,1],[2,3,3,1],[2,2,0,0]],[[0,0,2,1],[1,3,4,1],[2,3,3,2],[0,0,1,1]],[[0,0,2,1],[1,3,3,1],[2,3,4,2],[0,0,1,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,3],[0,0,1,1]],[[0,0,2,1],[1,3,3,1],[2,3,3,2],[0,0,1,2]],[[0,0,2,1],[1,3,4,1],[2,3,3,2],[0,0,2,0]],[[0,0,2,1],[1,3,3,1],[2,3,4,2],[0,0,2,0]],[[0,0,2,1],[1,3,3,1],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[3,3,3,0],[2,2,3,0],[1,0,1,0]],[[1,2,3,1],[2,3,3,0],[2,2,3,0],[1,0,1,0]],[[1,3,2,1],[2,3,3,0],[2,2,3,0],[1,0,1,0]],[[2,2,2,1],[2,3,3,0],[2,2,3,0],[1,0,1,0]],[[1,2,2,1],[3,3,3,0],[2,2,2,1],[1,0,1,0]],[[1,2,3,1],[2,3,3,0],[2,2,2,1],[1,0,1,0]],[[1,3,2,1],[2,3,3,0],[2,2,2,1],[1,0,1,0]],[[2,2,2,1],[2,3,3,0],[2,2,2,1],[1,0,1,0]],[[1,2,2,1],[3,3,3,0],[2,2,2,1],[1,0,0,1]],[[1,2,3,1],[2,3,3,0],[2,2,2,1],[1,0,0,1]],[[1,3,2,1],[2,3,3,0],[2,2,2,1],[1,0,0,1]],[[2,2,2,1],[2,3,3,0],[2,2,2,1],[1,0,0,1]],[[0,0,2,2],[1,3,3,2],[0,0,3,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,3],[0,0,3,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[0,0,3,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[0,0,3,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[3,3,3,0],[2,2,2,0],[1,0,1,1]],[[1,2,3,1],[2,3,3,0],[2,2,2,0],[1,0,1,1]],[[1,3,2,1],[2,3,3,0],[2,2,2,0],[1,0,1,1]],[[2,2,2,1],[2,3,3,0],[2,2,2,0],[1,0,1,1]],[[0,0,2,2],[1,3,3,2],[1,0,2,2],[1,2,2,1]],[[0,0,2,1],[1,3,4,2],[1,0,2,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,3],[1,0,2,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[1,0,2,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[1,0,2,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,2],[1,0,2,2],[1,2,2,2]],[[0,0,2,2],[1,3,3,2],[1,0,3,2],[1,1,2,1]],[[0,0,2,1],[1,3,4,2],[1,0,3,2],[1,1,2,1]],[[0,0,2,1],[1,3,3,3],[1,0,3,2],[1,1,2,1]],[[0,0,2,1],[1,3,3,2],[1,0,3,3],[1,1,2,1]],[[0,0,2,1],[1,3,3,2],[1,0,3,2],[1,1,2,2]],[[0,0,2,2],[1,3,3,2],[1,0,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,4,2],[1,0,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,3],[1,0,3,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,2],[1,0,3,3],[1,2,1,1]],[[0,0,2,1],[1,3,3,2],[1,0,3,2],[1,2,1,2]],[[0,0,2,2],[1,3,3,2],[1,0,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,4,2],[1,0,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,3],[1,0,3,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,2],[1,0,3,3],[1,2,2,0]],[[0,0,2,2],[1,3,3,2],[1,1,1,2],[1,2,2,1]],[[0,0,2,1],[1,3,4,2],[1,1,1,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,3],[1,1,1,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[1,1,1,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[1,1,1,2],[2,2,2,1]],[[0,0,2,1],[1,3,3,2],[1,1,1,2],[1,3,2,1]],[[0,0,2,1],[1,3,3,2],[1,1,1,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,2],[1,1,1,2],[1,2,2,2]],[[0,0,2,2],[1,3,3,2],[1,1,2,2],[1,2,1,1]],[[0,0,2,1],[1,3,4,2],[1,1,2,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,3],[1,1,2,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,2],[1,1,2,3],[1,2,1,1]],[[0,0,2,1],[1,3,3,2],[1,1,2,2],[1,2,1,2]],[[0,0,2,2],[1,3,3,2],[1,1,2,2],[1,2,2,0]],[[0,0,2,1],[1,3,4,2],[1,1,2,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,3],[1,1,2,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,2],[1,1,2,3],[1,2,2,0]],[[0,0,2,2],[1,3,3,2],[1,1,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,4,2],[1,1,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,3],[1,1,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[1,1,4,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[1,1,3,0],[2,2,2,1]],[[0,0,2,1],[1,3,3,2],[1,1,3,0],[1,3,2,1]],[[0,0,2,1],[1,3,3,2],[1,1,3,0],[1,2,3,1]],[[0,0,2,1],[1,3,3,2],[1,1,3,0],[1,2,2,2]],[[0,0,2,2],[1,3,3,2],[1,1,3,1],[1,2,1,1]],[[0,0,2,1],[1,3,4,2],[1,1,3,1],[1,2,1,1]],[[0,0,2,1],[1,3,3,3],[1,1,3,1],[1,2,1,1]],[[0,0,2,1],[1,3,3,2],[1,1,4,1],[1,2,1,1]],[[0,0,2,2],[1,3,3,2],[1,1,3,1],[1,2,2,0]],[[0,0,2,1],[1,3,4,2],[1,1,3,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,3],[1,1,3,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,2],[1,1,4,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,2],[1,1,3,1],[2,2,2,0]],[[0,0,2,1],[1,3,3,2],[1,1,3,1],[1,3,2,0]],[[0,0,2,1],[1,3,3,2],[1,1,3,1],[1,2,3,0]],[[0,0,2,2],[1,3,3,2],[1,1,3,2],[1,0,2,1]],[[0,0,2,1],[1,3,4,2],[1,1,3,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,3],[1,1,3,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,2],[1,1,3,3],[1,0,2,1]],[[0,0,2,1],[1,3,3,2],[1,1,3,2],[1,0,2,2]],[[0,0,2,2],[1,3,3,2],[1,1,3,2],[1,1,1,1]],[[0,0,2,1],[1,3,4,2],[1,1,3,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,3],[1,1,3,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,2],[1,1,3,3],[1,1,1,1]],[[0,0,2,1],[1,3,3,2],[1,1,3,2],[1,1,1,2]],[[0,0,2,2],[1,3,3,2],[1,1,3,2],[1,1,2,0]],[[0,0,2,1],[1,3,4,2],[1,1,3,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,3],[1,1,3,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,2],[1,1,3,3],[1,1,2,0]],[[0,0,2,2],[1,3,3,2],[1,2,0,2],[1,2,2,1]],[[0,0,2,1],[1,3,4,2],[1,2,0,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,3],[1,2,0,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[1,2,0,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[1,2,0,2],[2,2,2,1]],[[0,0,2,1],[1,3,3,2],[1,2,0,2],[1,3,2,1]],[[0,0,2,1],[1,3,3,2],[1,2,0,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,2],[1,2,0,2],[1,2,2,2]],[[0,0,2,2],[1,3,3,2],[1,2,1,2],[1,1,2,1]],[[0,0,2,1],[1,3,4,2],[1,2,1,2],[1,1,2,1]],[[0,0,2,1],[1,3,3,3],[1,2,1,2],[1,1,2,1]],[[0,0,2,1],[1,3,3,2],[1,2,1,3],[1,1,2,1]],[[0,0,2,1],[1,3,3,2],[1,2,1,2],[1,1,3,1]],[[0,0,2,1],[1,3,3,2],[1,2,1,2],[1,1,2,2]],[[0,0,2,2],[1,3,3,2],[1,2,2,2],[1,0,2,1]],[[0,0,2,1],[1,3,4,2],[1,2,2,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,3],[1,2,2,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,2],[1,2,2,3],[1,0,2,1]],[[0,0,2,1],[1,3,3,2],[1,2,2,2],[1,0,2,2]],[[0,0,2,2],[1,3,3,2],[1,2,2,2],[1,1,1,1]],[[0,0,2,1],[1,3,4,2],[1,2,2,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,3],[1,2,2,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,2],[1,2,2,3],[1,1,1,1]],[[0,0,2,1],[1,3,3,2],[1,2,2,2],[1,1,1,2]],[[0,0,2,2],[1,3,3,2],[1,2,2,2],[1,1,2,0]],[[0,0,2,1],[1,3,4,2],[1,2,2,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,3],[1,2,2,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,2],[1,2,2,3],[1,1,2,0]],[[0,0,2,2],[1,3,3,2],[1,2,2,2],[1,2,0,1]],[[0,0,2,1],[1,3,4,2],[1,2,2,2],[1,2,0,1]],[[0,0,2,1],[1,3,3,3],[1,2,2,2],[1,2,0,1]],[[0,0,2,1],[1,3,3,2],[1,2,2,3],[1,2,0,1]],[[0,0,2,1],[1,3,3,2],[1,2,2,2],[1,2,0,2]],[[0,0,2,2],[1,3,3,2],[1,2,2,2],[1,2,1,0]],[[0,0,2,1],[1,3,4,2],[1,2,2,2],[1,2,1,0]],[[0,0,2,1],[1,3,3,3],[1,2,2,2],[1,2,1,0]],[[0,0,2,1],[1,3,3,2],[1,2,2,3],[1,2,1,0]],[[0,0,2,2],[1,3,3,2],[1,2,3,0],[1,1,2,1]],[[0,0,2,1],[1,3,4,2],[1,2,3,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,3],[1,2,3,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,2],[1,2,4,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,2],[1,2,3,0],[1,1,3,1]],[[0,0,2,1],[1,3,3,2],[1,2,3,0],[1,1,2,2]],[[0,0,2,2],[1,3,3,2],[1,2,3,0],[1,2,1,1]],[[0,0,2,1],[1,3,4,2],[1,2,3,0],[1,2,1,1]],[[0,0,2,1],[1,3,3,3],[1,2,3,0],[1,2,1,1]],[[0,0,2,1],[1,3,3,2],[1,2,4,0],[1,2,1,1]],[[0,0,2,2],[1,3,3,2],[1,2,3,1],[1,0,2,1]],[[0,0,2,1],[1,3,4,2],[1,2,3,1],[1,0,2,1]],[[0,0,2,1],[1,3,3,3],[1,2,3,1],[1,0,2,1]],[[0,0,2,1],[1,3,3,2],[1,2,4,1],[1,0,2,1]],[[0,0,2,2],[1,3,3,2],[1,2,3,1],[1,1,1,1]],[[0,0,2,1],[1,3,4,2],[1,2,3,1],[1,1,1,1]],[[0,0,2,1],[1,3,3,3],[1,2,3,1],[1,1,1,1]],[[0,0,2,1],[1,3,3,2],[1,2,4,1],[1,1,1,1]],[[0,0,2,2],[1,3,3,2],[1,2,3,1],[1,1,2,0]],[[0,0,2,1],[1,3,4,2],[1,2,3,1],[1,1,2,0]],[[0,0,2,1],[1,3,3,3],[1,2,3,1],[1,1,2,0]],[[0,0,2,1],[1,3,3,2],[1,2,4,1],[1,1,2,0]],[[0,0,2,1],[1,3,3,2],[1,2,3,1],[1,1,3,0]],[[0,0,2,2],[1,3,3,2],[1,2,3,1],[1,2,0,1]],[[0,0,2,1],[1,3,4,2],[1,2,3,1],[1,2,0,1]],[[0,0,2,1],[1,3,3,3],[1,2,3,1],[1,2,0,1]],[[0,0,2,1],[1,3,3,2],[1,2,4,1],[1,2,0,1]],[[0,0,2,2],[1,3,3,2],[1,2,3,1],[1,2,1,0]],[[0,0,2,1],[1,3,4,2],[1,2,3,1],[1,2,1,0]],[[0,0,2,1],[1,3,3,3],[1,2,3,1],[1,2,1,0]],[[0,0,2,1],[1,3,3,2],[1,2,4,1],[1,2,1,0]],[[0,0,2,2],[1,3,3,2],[1,2,3,2],[1,1,0,1]],[[0,0,2,1],[1,3,4,2],[1,2,3,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,3],[1,2,3,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,2],[1,2,3,3],[1,1,0,1]],[[0,0,2,2],[1,3,3,2],[1,3,0,1],[1,2,2,1]],[[0,0,2,1],[1,3,4,2],[1,3,0,1],[1,2,2,1]],[[0,0,2,1],[1,3,3,3],[1,3,0,1],[1,2,2,1]],[[0,0,2,2],[1,3,3,2],[1,3,0,2],[1,1,2,1]],[[0,0,2,1],[1,3,4,2],[1,3,0,2],[1,1,2,1]],[[0,0,2,1],[1,3,3,3],[1,3,0,2],[1,1,2,1]],[[0,0,2,1],[1,3,3,2],[1,3,0,3],[1,1,2,1]],[[0,0,2,1],[1,3,3,2],[1,3,0,2],[1,1,3,1]],[[0,0,2,1],[1,3,3,2],[1,3,0,2],[1,1,2,2]],[[0,0,2,2],[1,3,3,2],[1,3,0,2],[1,2,1,1]],[[0,0,2,1],[1,3,4,2],[1,3,0,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,3],[1,3,0,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,2],[1,3,0,3],[1,2,1,1]],[[0,0,2,1],[1,3,3,2],[1,3,0,2],[1,2,1,2]],[[0,0,2,2],[1,3,3,2],[1,3,0,2],[1,2,2,0]],[[0,0,2,1],[1,3,4,2],[1,3,0,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,3],[1,3,0,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,2],[1,3,0,3],[1,2,2,0]],[[0,0,2,2],[1,3,3,2],[1,3,1,0],[1,2,2,1]],[[0,0,2,1],[1,3,4,2],[1,3,1,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,3],[1,3,1,0],[1,2,2,1]],[[0,0,2,2],[1,3,3,2],[1,3,1,1],[1,2,2,0]],[[0,0,2,1],[1,3,4,2],[1,3,1,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,3],[1,3,1,1],[1,2,2,0]],[[0,0,2,2],[1,3,3,2],[1,3,1,2],[1,1,1,1]],[[0,0,2,1],[1,3,4,2],[1,3,1,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,3],[1,3,1,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,2],[1,3,1,3],[1,1,1,1]],[[0,0,2,1],[1,3,3,2],[1,3,1,2],[1,1,1,2]],[[0,0,2,2],[1,3,3,2],[1,3,1,2],[1,1,2,0]],[[0,0,2,1],[1,3,4,2],[1,3,1,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,3],[1,3,1,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,2],[1,3,1,3],[1,1,2,0]],[[0,0,2,2],[1,3,3,2],[1,3,1,2],[1,2,0,1]],[[0,0,2,1],[1,3,4,2],[1,3,1,2],[1,2,0,1]],[[0,0,2,1],[1,3,3,3],[1,3,1,2],[1,2,0,1]],[[0,0,2,1],[1,3,3,2],[1,3,1,3],[1,2,0,1]],[[0,0,2,1],[1,3,3,2],[1,3,1,2],[1,2,0,2]],[[0,0,2,2],[1,3,3,2],[1,3,1,2],[1,2,1,0]],[[0,0,2,1],[1,3,4,2],[1,3,1,2],[1,2,1,0]],[[0,0,2,1],[1,3,3,3],[1,3,1,2],[1,2,1,0]],[[0,0,2,1],[1,3,3,2],[1,3,1,3],[1,2,1,0]],[[0,0,2,2],[1,3,3,2],[1,3,2,0],[1,1,2,1]],[[0,0,2,1],[1,3,4,2],[1,3,2,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,3],[1,3,2,0],[1,1,2,1]],[[0,0,2,2],[1,3,3,2],[1,3,2,0],[1,2,1,1]],[[0,0,2,1],[1,3,4,2],[1,3,2,0],[1,2,1,1]],[[0,0,2,1],[1,3,3,3],[1,3,2,0],[1,2,1,1]],[[0,0,2,2],[1,3,3,2],[1,3,2,1],[1,1,1,1]],[[0,0,2,1],[1,3,4,2],[1,3,2,1],[1,1,1,1]],[[0,0,2,1],[1,3,3,3],[1,3,2,1],[1,1,1,1]],[[0,0,2,2],[1,3,3,2],[1,3,2,1],[1,1,2,0]],[[0,0,2,1],[1,3,4,2],[1,3,2,1],[1,1,2,0]],[[0,0,2,1],[1,3,3,3],[1,3,2,1],[1,1,2,0]],[[0,0,2,2],[1,3,3,2],[1,3,2,1],[1,2,0,1]],[[0,0,2,1],[1,3,4,2],[1,3,2,1],[1,2,0,1]],[[0,0,2,1],[1,3,3,3],[1,3,2,1],[1,2,0,1]],[[0,0,2,2],[1,3,3,2],[1,3,2,1],[1,2,1,0]],[[0,0,2,1],[1,3,4,2],[1,3,2,1],[1,2,1,0]],[[0,0,2,1],[1,3,3,3],[1,3,2,1],[1,2,1,0]],[[1,2,2,1],[3,3,3,0],[2,1,3,1],[1,1,0,0]],[[1,2,3,1],[2,3,3,0],[2,1,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,3,0],[2,1,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,3,0],[2,1,3,1],[1,1,0,0]],[[1,2,2,1],[3,3,3,0],[2,1,3,1],[0,2,0,0]],[[1,2,3,1],[2,3,3,0],[2,1,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,3,0],[2,1,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,3,0],[2,1,3,1],[0,2,0,0]],[[0,0,2,2],[1,3,3,2],[1,3,3,1],[1,2,0,0]],[[0,0,2,1],[1,3,4,2],[1,3,3,1],[1,2,0,0]],[[0,0,2,1],[1,3,3,3],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,3,3,0],[2,1,3,0],[1,2,0,0]],[[1,2,3,1],[2,3,3,0],[2,1,3,0],[1,2,0,0]],[[1,3,2,1],[2,3,3,0],[2,1,3,0],[1,2,0,0]],[[2,2,2,1],[2,3,3,0],[2,1,3,0],[1,2,0,0]],[[1,2,2,1],[3,3,3,0],[2,1,3,0],[1,1,1,0]],[[1,2,3,1],[2,3,3,0],[2,1,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,3,0],[2,1,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,3,0],[2,1,3,0],[1,1,1,0]],[[1,2,2,1],[3,3,3,0],[2,1,3,0],[1,0,2,0]],[[1,2,3,1],[2,3,3,0],[2,1,3,0],[1,0,2,0]],[[1,3,2,1],[2,3,3,0],[2,1,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,3,0],[2,1,3,0],[1,0,2,0]],[[1,2,2,1],[3,3,3,0],[2,1,3,0],[0,2,1,0]],[[1,2,3,1],[2,3,3,0],[2,1,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[2,1,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,3,0],[2,1,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,3,0],[2,1,3,0],[0,1,2,0]],[[1,2,3,1],[2,3,3,0],[2,1,3,0],[0,1,2,0]],[[1,3,2,1],[2,3,3,0],[2,1,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,3,0],[2,1,3,0],[0,1,2,0]],[[0,0,2,2],[1,3,3,2],[2,0,1,2],[1,2,2,1]],[[0,0,2,1],[1,3,4,2],[2,0,1,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,3],[2,0,1,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[3,0,1,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,1,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,1,2],[2,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,1,2],[1,3,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,1,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,2],[2,0,1,2],[1,2,2,2]],[[0,0,2,2],[1,3,3,2],[2,0,2,2],[0,2,2,1]],[[0,0,2,1],[1,3,4,2],[2,0,2,2],[0,2,2,1]],[[0,0,2,1],[1,3,3,3],[2,0,2,2],[0,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,2,3],[0,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,2,2],[0,2,3,1]],[[0,0,2,1],[1,3,3,2],[2,0,2,2],[0,2,2,2]],[[0,0,2,2],[1,3,3,2],[2,0,2,2],[1,2,1,1]],[[0,0,2,1],[1,3,4,2],[2,0,2,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,3],[2,0,2,2],[1,2,1,1]],[[0,0,2,1],[1,3,3,2],[2,0,2,3],[1,2,1,1]],[[0,0,2,1],[1,3,3,2],[2,0,2,2],[1,2,1,2]],[[0,0,2,2],[1,3,3,2],[2,0,2,2],[1,2,2,0]],[[0,0,2,1],[1,3,4,2],[2,0,2,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,3],[2,0,2,2],[1,2,2,0]],[[0,0,2,1],[1,3,3,2],[2,0,2,3],[1,2,2,0]],[[0,0,2,2],[1,3,3,2],[2,0,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,4,2],[2,0,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,3],[2,0,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[3,0,3,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,4,0],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,3,0],[2,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,3,0],[1,3,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,3,0],[1,2,3,1]],[[0,0,2,1],[1,3,3,2],[2,0,3,0],[1,2,2,2]],[[0,0,2,2],[1,3,3,2],[2,0,3,1],[1,2,1,1]],[[0,0,2,1],[1,3,4,2],[2,0,3,1],[1,2,1,1]],[[0,0,2,1],[1,3,3,3],[2,0,3,1],[1,2,1,1]],[[0,0,2,1],[1,3,3,2],[2,0,4,1],[1,2,1,1]],[[0,0,2,2],[1,3,3,2],[2,0,3,1],[1,2,2,0]],[[0,0,2,1],[1,3,4,2],[2,0,3,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,3],[2,0,3,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,2],[3,0,3,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,2],[2,0,4,1],[1,2,2,0]],[[0,0,2,1],[1,3,3,2],[2,0,3,1],[2,2,2,0]],[[0,0,2,1],[1,3,3,2],[2,0,3,1],[1,3,2,0]],[[0,0,2,1],[1,3,3,2],[2,0,3,1],[1,2,3,0]],[[0,0,2,2],[1,3,3,2],[2,0,3,2],[0,1,2,1]],[[0,0,2,1],[1,3,4,2],[2,0,3,2],[0,1,2,1]],[[0,0,2,1],[1,3,3,3],[2,0,3,2],[0,1,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,3,3],[0,1,2,1]],[[0,0,2,1],[1,3,3,2],[2,0,3,2],[0,1,2,2]],[[0,0,2,2],[1,3,3,2],[2,0,3,2],[0,2,1,1]],[[0,0,2,1],[1,3,4,2],[2,0,3,2],[0,2,1,1]],[[0,0,2,1],[1,3,3,3],[2,0,3,2],[0,2,1,1]],[[0,0,2,1],[1,3,3,2],[2,0,3,3],[0,2,1,1]],[[0,0,2,1],[1,3,3,2],[2,0,3,2],[0,2,1,2]],[[0,0,2,2],[1,3,3,2],[2,0,3,2],[0,2,2,0]],[[0,0,2,1],[1,3,4,2],[2,0,3,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,3],[2,0,3,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,2],[2,0,3,3],[0,2,2,0]],[[0,0,2,2],[1,3,3,2],[2,1,0,2],[1,2,2,1]],[[0,0,2,1],[1,3,4,2],[2,1,0,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,3],[2,1,0,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[3,1,0,2],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,0,3],[1,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,0,2],[2,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,0,2],[1,3,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,0,2],[1,2,3,1]],[[0,0,2,1],[1,3,3,2],[2,1,0,2],[1,2,2,2]],[[0,0,2,2],[1,3,3,2],[2,1,1,2],[0,2,2,1]],[[0,0,2,1],[1,3,4,2],[2,1,1,2],[0,2,2,1]],[[0,0,2,1],[1,3,3,3],[2,1,1,2],[0,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,1,3],[0,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,1,2],[0,3,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,1,2],[0,2,3,1]],[[0,0,2,1],[1,3,3,2],[2,1,1,2],[0,2,2,2]],[[0,0,2,2],[1,3,3,2],[2,1,2,2],[0,2,1,1]],[[0,0,2,1],[1,3,4,2],[2,1,2,2],[0,2,1,1]],[[0,0,2,1],[1,3,3,3],[2,1,2,2],[0,2,1,1]],[[0,0,2,1],[1,3,3,2],[2,1,2,3],[0,2,1,1]],[[0,0,2,1],[1,3,3,2],[2,1,2,2],[0,2,1,2]],[[0,0,2,2],[1,3,3,2],[2,1,2,2],[0,2,2,0]],[[0,0,2,1],[1,3,4,2],[2,1,2,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,3],[2,1,2,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,2],[2,1,2,3],[0,2,2,0]],[[0,0,2,2],[1,3,3,2],[2,1,3,0],[0,2,2,1]],[[0,0,2,1],[1,3,4,2],[2,1,3,0],[0,2,2,1]],[[0,0,2,1],[1,3,3,3],[2,1,3,0],[0,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,4,0],[0,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,3,0],[0,3,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,3,0],[0,2,3,1]],[[0,0,2,1],[1,3,3,2],[2,1,3,0],[0,2,2,2]],[[0,0,2,2],[1,3,3,2],[2,1,3,1],[0,2,1,1]],[[0,0,2,1],[1,3,4,2],[2,1,3,1],[0,2,1,1]],[[0,0,2,1],[1,3,3,3],[2,1,3,1],[0,2,1,1]],[[0,0,2,1],[1,3,3,2],[2,1,4,1],[0,2,1,1]],[[0,0,2,2],[1,3,3,2],[2,1,3,1],[0,2,2,0]],[[0,0,2,1],[1,3,4,2],[2,1,3,1],[0,2,2,0]],[[0,0,2,1],[1,3,3,3],[2,1,3,1],[0,2,2,0]],[[0,0,2,1],[1,3,3,2],[2,1,4,1],[0,2,2,0]],[[0,0,2,1],[1,3,3,2],[2,1,3,1],[0,3,2,0]],[[0,0,2,1],[1,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,2,1],[3,3,3,0],[2,1,2,1],[1,2,0,0]],[[1,2,3,1],[2,3,3,0],[2,1,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,3,0],[2,1,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,3,0],[2,1,2,1],[1,2,0,0]],[[0,0,2,2],[1,3,3,2],[2,1,3,2],[0,0,2,1]],[[0,0,2,1],[1,3,4,2],[2,1,3,2],[0,0,2,1]],[[0,0,2,1],[1,3,3,3],[2,1,3,2],[0,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,3,3],[0,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,1,3,2],[0,0,2,2]],[[0,0,2,2],[1,3,3,2],[2,1,3,2],[0,1,1,1]],[[0,0,2,1],[1,3,4,2],[2,1,3,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,3],[2,1,3,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,2],[2,1,3,3],[0,1,1,1]],[[0,0,2,1],[1,3,3,2],[2,1,3,2],[0,1,1,2]],[[0,0,2,2],[1,3,3,2],[2,1,3,2],[0,1,2,0]],[[0,0,2,1],[1,3,4,2],[2,1,3,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,3],[2,1,3,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[3,3,3,0],[2,1,2,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,0],[2,1,2,1],[1,1,1,0]],[[0,0,2,2],[1,3,3,2],[2,1,3,2],[1,0,1,1]],[[0,0,2,1],[1,3,4,2],[2,1,3,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,3],[2,1,3,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,2],[2,1,3,3],[1,0,1,1]],[[0,0,2,1],[1,3,3,2],[2,1,3,2],[1,0,1,2]],[[0,0,2,2],[1,3,3,2],[2,1,3,2],[1,0,2,0]],[[0,0,2,1],[1,3,4,2],[2,1,3,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,3],[2,1,3,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,2],[2,1,3,3],[1,0,2,0]],[[1,3,2,1],[2,3,3,0],[2,1,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,0],[2,1,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,3,0],[2,1,2,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,0],[2,1,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,0],[2,1,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,0],[2,1,2,1],[1,1,0,1]],[[1,2,2,1],[3,3,3,0],[2,1,2,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,0],[2,1,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,0],[2,1,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,3,0],[2,1,2,1],[1,0,2,0]],[[1,2,2,1],[3,3,3,0],[2,1,2,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,0],[2,1,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,0],[2,1,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,3,0],[2,1,2,1],[1,0,1,1]],[[1,2,2,1],[3,3,3,0],[2,1,2,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,0],[2,1,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[2,1,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,0],[2,1,2,1],[0,2,1,0]],[[0,0,2,2],[1,3,3,2],[2,2,0,2],[0,2,2,1]],[[0,0,2,1],[1,3,4,2],[2,2,0,2],[0,2,2,1]],[[0,0,2,1],[1,3,3,3],[2,2,0,2],[0,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,0,3],[0,2,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,0,2],[0,3,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,0,2],[0,2,3,1]],[[0,0,2,1],[1,3,3,2],[2,2,0,2],[0,2,2,2]],[[0,0,2,2],[1,3,3,2],[2,2,1,2],[0,1,2,1]],[[0,0,2,1],[1,3,4,2],[2,2,1,2],[0,1,2,1]],[[0,0,2,1],[1,3,3,3],[2,2,1,2],[0,1,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,1,3],[0,1,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,1,2],[0,1,3,1]],[[0,0,2,1],[1,3,3,2],[2,2,1,2],[0,1,2,2]],[[0,0,2,2],[1,3,3,2],[2,2,1,2],[1,0,2,1]],[[0,0,2,1],[1,3,4,2],[2,2,1,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,3],[2,2,1,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,1,3],[1,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,1,2],[1,0,3,1]],[[0,0,2,1],[1,3,3,2],[2,2,1,2],[1,0,2,2]],[[1,2,2,1],[3,3,3,0],[2,1,2,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,0],[2,1,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,0],[2,1,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,0],[2,1,2,1],[0,2,0,1]],[[1,2,2,1],[3,3,3,0],[2,1,2,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,0],[2,1,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,3,0],[2,1,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,3,0],[2,1,2,1],[0,1,2,0]],[[1,2,2,1],[3,3,3,0],[2,1,2,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,0],[2,1,2,1],[0,1,1,1]],[[0,0,2,2],[1,3,3,2],[2,2,2,2],[0,0,2,1]],[[0,0,2,1],[1,3,4,2],[2,2,2,2],[0,0,2,1]],[[0,0,2,1],[1,3,3,3],[2,2,2,2],[0,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,2,3],[0,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,2,2],[0,0,2,2]],[[0,0,2,2],[1,3,3,2],[2,2,2,2],[0,1,1,1]],[[0,0,2,1],[1,3,4,2],[2,2,2,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,3],[2,2,2,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,2],[2,2,2,3],[0,1,1,1]],[[0,0,2,1],[1,3,3,2],[2,2,2,2],[0,1,1,2]],[[0,0,2,2],[1,3,3,2],[2,2,2,2],[0,1,2,0]],[[0,0,2,1],[1,3,4,2],[2,2,2,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,3],[2,2,2,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,2],[2,2,2,3],[0,1,2,0]],[[0,0,2,2],[1,3,3,2],[2,2,2,2],[0,2,0,1]],[[0,0,2,1],[1,3,4,2],[2,2,2,2],[0,2,0,1]],[[0,0,2,1],[1,3,3,3],[2,2,2,2],[0,2,0,1]],[[0,0,2,1],[1,3,3,2],[2,2,2,3],[0,2,0,1]],[[0,0,2,1],[1,3,3,2],[2,2,2,2],[0,2,0,2]],[[0,0,2,2],[1,3,3,2],[2,2,2,2],[0,2,1,0]],[[0,0,2,1],[1,3,4,2],[2,2,2,2],[0,2,1,0]],[[0,0,2,1],[1,3,3,3],[2,2,2,2],[0,2,1,0]],[[0,0,2,1],[1,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[2,1,2,1],[0,1,1,1]],[[2,2,2,1],[2,3,3,0],[2,1,2,1],[0,1,1,1]],[[0,0,2,2],[1,3,3,2],[2,2,2,2],[1,0,1,1]],[[0,0,2,1],[1,3,4,2],[2,2,2,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,3],[2,2,2,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,2],[2,2,2,3],[1,0,1,1]],[[0,0,2,1],[1,3,3,2],[2,2,2,2],[1,0,1,2]],[[0,0,2,2],[1,3,3,2],[2,2,2,2],[1,0,2,0]],[[0,0,2,1],[1,3,4,2],[2,2,2,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,3],[2,2,2,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,2],[2,2,2,3],[1,0,2,0]],[[0,0,2,2],[1,3,3,2],[2,2,2,2],[1,1,0,1]],[[0,0,2,1],[1,3,4,2],[2,2,2,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,3],[2,2,2,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,2],[2,2,2,3],[1,1,0,1]],[[0,0,2,1],[1,3,3,2],[2,2,2,2],[1,1,0,2]],[[0,0,2,2],[1,3,3,2],[2,2,2,2],[1,1,1,0]],[[0,0,2,1],[1,3,4,2],[2,2,2,2],[1,1,1,0]],[[0,0,2,1],[1,3,3,3],[2,2,2,2],[1,1,1,0]],[[0,0,2,1],[1,3,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,1],[3,3,3,0],[2,1,2,0],[1,2,0,1]],[[1,2,3,1],[2,3,3,0],[2,1,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,3,0],[2,1,2,0],[1,2,0,1]],[[2,2,2,1],[2,3,3,0],[2,1,2,0],[1,2,0,1]],[[1,2,2,1],[3,3,3,0],[2,1,2,0],[1,1,1,1]],[[1,2,3,1],[2,3,3,0],[2,1,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,0],[2,1,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,3,0],[2,1,2,0],[1,1,1,1]],[[1,2,2,1],[3,3,3,0],[2,1,2,0],[1,0,2,1]],[[1,2,3,1],[2,3,3,0],[2,1,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,3,0],[2,1,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,3,0],[2,1,2,0],[1,0,2,1]],[[1,2,2,1],[3,3,3,0],[2,1,2,0],[0,2,1,1]],[[1,2,3,1],[2,3,3,0],[2,1,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,0],[2,1,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,0],[2,1,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,3,0],[2,1,2,0],[0,1,2,1]],[[0,0,2,2],[1,3,3,2],[2,2,3,0],[0,1,2,1]],[[0,0,2,1],[1,3,4,2],[2,2,3,0],[0,1,2,1]],[[0,0,2,1],[1,3,3,3],[2,2,3,0],[0,1,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,4,0],[0,1,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,3,0],[0,1,3,1]],[[0,0,2,1],[1,3,3,2],[2,2,3,0],[0,1,2,2]],[[0,0,2,2],[1,3,3,2],[2,2,3,0],[0,2,1,1]],[[0,0,2,1],[1,3,4,2],[2,2,3,0],[0,2,1,1]],[[0,0,2,1],[1,3,3,3],[2,2,3,0],[0,2,1,1]],[[0,0,2,1],[1,3,3,2],[2,2,4,0],[0,2,1,1]],[[0,0,2,2],[1,3,3,2],[2,2,3,0],[1,0,2,1]],[[0,0,2,1],[1,3,4,2],[2,2,3,0],[1,0,2,1]],[[0,0,2,1],[1,3,3,3],[2,2,3,0],[1,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,4,0],[1,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,3,0],[1,0,3,1]],[[0,0,2,1],[1,3,3,2],[2,2,3,0],[1,0,2,2]],[[0,0,2,2],[1,3,3,2],[2,2,3,0],[1,1,1,1]],[[0,0,2,1],[1,3,4,2],[2,2,3,0],[1,1,1,1]],[[0,0,2,1],[1,3,3,3],[2,2,3,0],[1,1,1,1]],[[0,0,2,1],[1,3,3,2],[2,2,4,0],[1,1,1,1]],[[1,2,3,1],[2,3,3,0],[2,1,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,3,0],[2,1,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,3,0],[2,1,2,0],[0,1,2,1]],[[0,0,2,2],[1,3,3,2],[2,2,3,1],[0,0,2,1]],[[0,0,2,1],[1,3,4,2],[2,2,3,1],[0,0,2,1]],[[0,0,2,1],[1,3,3,3],[2,2,3,1],[0,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,2,4,1],[0,0,2,1]],[[0,0,2,2],[1,3,3,2],[2,2,3,1],[0,1,1,1]],[[0,0,2,1],[1,3,4,2],[2,2,3,1],[0,1,1,1]],[[0,0,2,1],[1,3,3,3],[2,2,3,1],[0,1,1,1]],[[0,0,2,1],[1,3,3,2],[2,2,4,1],[0,1,1,1]],[[0,0,2,2],[1,3,3,2],[2,2,3,1],[0,1,2,0]],[[0,0,2,1],[1,3,4,2],[2,2,3,1],[0,1,2,0]],[[0,0,2,1],[1,3,3,3],[2,2,3,1],[0,1,2,0]],[[0,0,2,1],[1,3,3,2],[2,2,4,1],[0,1,2,0]],[[0,0,2,1],[1,3,3,2],[2,2,3,1],[0,1,3,0]],[[0,0,2,2],[1,3,3,2],[2,2,3,1],[0,2,0,1]],[[0,0,2,1],[1,3,4,2],[2,2,3,1],[0,2,0,1]],[[0,0,2,1],[1,3,3,3],[2,2,3,1],[0,2,0,1]],[[0,0,2,1],[1,3,3,2],[2,2,4,1],[0,2,0,1]],[[0,0,2,2],[1,3,3,2],[2,2,3,1],[0,2,1,0]],[[0,0,2,1],[1,3,4,2],[2,2,3,1],[0,2,1,0]],[[0,0,2,1],[1,3,3,3],[2,2,3,1],[0,2,1,0]],[[0,0,2,1],[1,3,3,2],[2,2,4,1],[0,2,1,0]],[[0,0,2,2],[1,3,3,2],[2,2,3,1],[1,0,1,1]],[[0,0,2,1],[1,3,4,2],[2,2,3,1],[1,0,1,1]],[[0,0,2,1],[1,3,3,3],[2,2,3,1],[1,0,1,1]],[[0,0,2,1],[1,3,3,2],[2,2,4,1],[1,0,1,1]],[[0,0,2,2],[1,3,3,2],[2,2,3,1],[1,0,2,0]],[[0,0,2,1],[1,3,4,2],[2,2,3,1],[1,0,2,0]],[[0,0,2,1],[1,3,3,3],[2,2,3,1],[1,0,2,0]],[[0,0,2,1],[1,3,3,2],[2,2,4,1],[1,0,2,0]],[[0,0,2,1],[1,3,3,2],[2,2,3,1],[1,0,3,0]],[[0,0,2,2],[1,3,3,2],[2,2,3,1],[1,1,0,1]],[[0,0,2,1],[1,3,4,2],[2,2,3,1],[1,1,0,1]],[[0,0,2,1],[1,3,3,3],[2,2,3,1],[1,1,0,1]],[[0,0,2,1],[1,3,3,2],[2,2,4,1],[1,1,0,1]],[[0,0,2,2],[1,3,3,2],[2,2,3,1],[1,1,1,0]],[[0,0,2,1],[1,3,4,2],[2,2,3,1],[1,1,1,0]],[[0,0,2,1],[1,3,3,3],[2,2,3,1],[1,1,1,0]],[[0,0,2,1],[1,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,2,1],[3,3,3,0],[2,1,1,1],[1,1,2,0]],[[1,2,3,1],[2,3,3,0],[2,1,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,3,0],[2,1,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,3,0],[2,1,1,1],[1,1,2,0]],[[1,2,2,1],[3,3,3,0],[2,1,1,1],[0,2,2,0]],[[1,2,3,1],[2,3,3,0],[2,1,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,3,0],[2,1,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,3,0],[2,1,1,1],[0,2,2,0]],[[1,2,2,1],[3,3,3,0],[2,1,1,0],[1,1,2,1]],[[1,2,3,1],[2,3,3,0],[2,1,1,0],[1,1,2,1]],[[0,0,2,2],[1,3,3,2],[2,2,3,2],[0,1,0,1]],[[0,0,2,1],[1,3,4,2],[2,2,3,2],[0,1,0,1]],[[0,0,2,1],[1,3,3,3],[2,2,3,2],[0,1,0,1]],[[0,0,2,1],[1,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,3,2,1],[2,3,3,0],[2,1,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,3,0],[2,1,1,0],[1,1,2,1]],[[1,2,2,1],[3,3,3,0],[2,1,1,0],[0,2,2,1]],[[1,2,3,1],[2,3,3,0],[2,1,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,3,0],[2,1,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,3,0],[2,1,1,0],[0,2,2,1]],[[0,0,2,2],[1,3,3,2],[2,2,3,2],[1,0,0,1]],[[0,0,2,1],[1,3,4,2],[2,2,3,2],[1,0,0,1]],[[0,0,2,1],[1,3,3,3],[2,2,3,2],[1,0,0,1]],[[0,0,2,1],[1,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[2,3,4,0],[2,0,3,2],[0,0,2,0]],[[1,2,2,2],[2,3,3,0],[2,0,3,2],[0,0,2,0]],[[1,2,3,1],[2,3,3,0],[2,0,3,2],[0,0,2,0]],[[1,3,2,1],[2,3,3,0],[2,0,3,2],[0,0,2,0]],[[2,2,2,1],[2,3,3,0],[2,0,3,2],[0,0,2,0]],[[1,2,2,1],[2,3,4,0],[2,0,3,2],[0,0,1,1]],[[1,2,2,2],[2,3,3,0],[2,0,3,2],[0,0,1,1]],[[1,2,3,1],[2,3,3,0],[2,0,3,2],[0,0,1,1]],[[1,3,2,1],[2,3,3,0],[2,0,3,2],[0,0,1,1]],[[2,2,2,1],[2,3,3,0],[2,0,3,2],[0,0,1,1]],[[0,0,2,2],[1,3,3,2],[2,3,0,1],[0,2,2,1]],[[0,0,2,1],[1,3,4,2],[2,3,0,1],[0,2,2,1]],[[0,0,2,1],[1,3,3,3],[2,3,0,1],[0,2,2,1]],[[0,0,2,2],[1,3,3,2],[2,3,0,1],[1,1,2,1]],[[0,0,2,1],[1,3,4,2],[2,3,0,1],[1,1,2,1]],[[0,0,2,1],[1,3,3,3],[2,3,0,1],[1,1,2,1]],[[0,0,2,2],[1,3,3,2],[2,3,0,2],[0,1,2,1]],[[0,0,2,1],[1,3,4,2],[2,3,0,2],[0,1,2,1]],[[0,0,2,1],[1,3,3,3],[2,3,0,2],[0,1,2,1]],[[0,0,2,1],[1,3,3,2],[2,3,0,3],[0,1,2,1]],[[0,0,2,1],[1,3,3,2],[2,3,0,2],[0,1,3,1]],[[0,0,2,1],[1,3,3,2],[2,3,0,2],[0,1,2,2]],[[0,0,2,2],[1,3,3,2],[2,3,0,2],[0,2,1,1]],[[0,0,2,1],[1,3,4,2],[2,3,0,2],[0,2,1,1]],[[0,0,2,1],[1,3,3,3],[2,3,0,2],[0,2,1,1]],[[0,0,2,1],[1,3,3,2],[2,3,0,3],[0,2,1,1]],[[0,0,2,1],[1,3,3,2],[2,3,0,2],[0,2,1,2]],[[0,0,2,2],[1,3,3,2],[2,3,0,2],[0,2,2,0]],[[0,0,2,1],[1,3,4,2],[2,3,0,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,3],[2,3,0,2],[0,2,2,0]],[[0,0,2,1],[1,3,3,2],[2,3,0,3],[0,2,2,0]],[[0,0,2,2],[1,3,3,2],[2,3,0,2],[1,0,2,1]],[[0,0,2,1],[1,3,4,2],[2,3,0,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,3],[2,3,0,2],[1,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,3,0,3],[1,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,3,0,2],[1,0,3,1]],[[0,0,2,1],[1,3,3,2],[2,3,0,2],[1,0,2,2]],[[0,0,2,2],[1,3,3,2],[2,3,0,2],[1,1,1,1]],[[0,0,2,1],[1,3,4,2],[2,3,0,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,3],[2,3,0,2],[1,1,1,1]],[[0,0,2,1],[1,3,3,2],[2,3,0,3],[1,1,1,1]],[[0,0,2,1],[1,3,3,2],[2,3,0,2],[1,1,1,2]],[[0,0,2,2],[1,3,3,2],[2,3,0,2],[1,1,2,0]],[[0,0,2,1],[1,3,4,2],[2,3,0,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,3],[2,3,0,2],[1,1,2,0]],[[0,0,2,1],[1,3,3,2],[2,3,0,3],[1,1,2,0]],[[1,2,2,1],[3,3,3,0],[2,0,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,0],[2,0,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,0],[2,0,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,0],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[3,3,3,0],[2,0,3,1],[1,1,0,1]],[[0,0,2,2],[1,3,3,2],[2,3,1,0],[0,2,2,1]],[[0,0,2,1],[1,3,4,2],[2,3,1,0],[0,2,2,1]],[[0,0,2,1],[1,3,3,3],[2,3,1,0],[0,2,2,1]],[[0,0,2,2],[1,3,3,2],[2,3,1,0],[1,1,2,1]],[[0,0,2,1],[1,3,4,2],[2,3,1,0],[1,1,2,1]],[[0,0,2,1],[1,3,3,3],[2,3,1,0],[1,1,2,1]],[[0,0,2,2],[1,3,3,2],[2,3,1,1],[0,2,2,0]],[[0,0,2,1],[1,3,4,2],[2,3,1,1],[0,2,2,0]],[[0,0,2,1],[1,3,3,3],[2,3,1,1],[0,2,2,0]],[[0,0,2,2],[1,3,3,2],[2,3,1,1],[1,1,2,0]],[[0,0,2,1],[1,3,4,2],[2,3,1,1],[1,1,2,0]],[[0,0,2,1],[1,3,3,3],[2,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,3,3,0],[2,0,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,0],[2,0,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,0],[2,0,3,1],[1,1,0,1]],[[0,0,2,2],[1,3,3,2],[2,3,1,2],[0,1,1,1]],[[0,0,2,1],[1,3,4,2],[2,3,1,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,3],[2,3,1,2],[0,1,1,1]],[[0,0,2,1],[1,3,3,2],[2,3,1,3],[0,1,1,1]],[[0,0,2,1],[1,3,3,2],[2,3,1,2],[0,1,1,2]],[[0,0,2,2],[1,3,3,2],[2,3,1,2],[0,1,2,0]],[[0,0,2,1],[1,3,4,2],[2,3,1,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,3],[2,3,1,2],[0,1,2,0]],[[0,0,2,1],[1,3,3,2],[2,3,1,3],[0,1,2,0]],[[0,0,2,2],[1,3,3,2],[2,3,1,2],[0,2,0,1]],[[0,0,2,1],[1,3,4,2],[2,3,1,2],[0,2,0,1]],[[0,0,2,1],[1,3,3,3],[2,3,1,2],[0,2,0,1]],[[0,0,2,1],[1,3,3,2],[2,3,1,3],[0,2,0,1]],[[0,0,2,1],[1,3,3,2],[2,3,1,2],[0,2,0,2]],[[0,0,2,2],[1,3,3,2],[2,3,1,2],[0,2,1,0]],[[0,0,2,1],[1,3,4,2],[2,3,1,2],[0,2,1,0]],[[0,0,2,1],[1,3,3,3],[2,3,1,2],[0,2,1,0]],[[0,0,2,1],[1,3,3,2],[2,3,1,3],[0,2,1,0]],[[1,2,2,1],[3,3,3,0],[2,0,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,0],[2,0,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,0],[2,0,3,1],[1,0,2,0]],[[0,0,2,2],[1,3,3,2],[2,3,1,2],[1,0,1,1]],[[0,0,2,1],[1,3,4,2],[2,3,1,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,3],[2,3,1,2],[1,0,1,1]],[[0,0,2,1],[1,3,3,2],[2,3,1,3],[1,0,1,1]],[[0,0,2,1],[1,3,3,2],[2,3,1,2],[1,0,1,2]],[[0,0,2,2],[1,3,3,2],[2,3,1,2],[1,0,2,0]],[[0,0,2,1],[1,3,4,2],[2,3,1,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,3],[2,3,1,2],[1,0,2,0]],[[0,0,2,1],[1,3,3,2],[2,3,1,3],[1,0,2,0]],[[0,0,2,2],[1,3,3,2],[2,3,1,2],[1,1,0,1]],[[0,0,2,1],[1,3,4,2],[2,3,1,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,3],[2,3,1,2],[1,1,0,1]],[[0,0,2,1],[1,3,3,2],[2,3,1,3],[1,1,0,1]],[[0,0,2,1],[1,3,3,2],[2,3,1,2],[1,1,0,2]],[[0,0,2,2],[1,3,3,2],[2,3,1,2],[1,1,1,0]],[[0,0,2,1],[1,3,4,2],[2,3,1,2],[1,1,1,0]],[[0,0,2,1],[1,3,3,3],[2,3,1,2],[1,1,1,0]],[[0,0,2,1],[1,3,3,2],[2,3,1,3],[1,1,1,0]],[[2,2,2,1],[2,3,3,0],[2,0,3,1],[1,0,2,0]],[[1,2,2,1],[3,3,3,0],[2,0,3,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,0],[2,0,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,0],[2,0,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,3,0],[2,0,3,1],[1,0,1,1]],[[0,0,2,2],[1,3,3,2],[2,3,1,2],[1,2,0,0]],[[0,0,2,1],[1,3,4,2],[2,3,1,2],[1,2,0,0]],[[0,0,2,1],[1,3,3,3],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[3,3,3,0],[2,0,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,0],[2,0,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[2,0,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,0],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[3,3,3,0],[2,0,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,0],[2,0,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,0],[2,0,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,0],[2,0,3,1],[0,2,0,1]],[[0,0,2,2],[1,3,3,2],[2,3,2,0],[0,1,2,1]],[[0,0,2,1],[1,3,4,2],[2,3,2,0],[0,1,2,1]],[[0,0,2,1],[1,3,3,3],[2,3,2,0],[0,1,2,1]],[[0,0,2,2],[1,3,3,2],[2,3,2,0],[0,2,1,1]],[[0,0,2,1],[1,3,4,2],[2,3,2,0],[0,2,1,1]],[[0,0,2,1],[1,3,3,3],[2,3,2,0],[0,2,1,1]],[[0,0,2,2],[1,3,3,2],[2,3,2,0],[1,0,2,1]],[[0,0,2,1],[1,3,4,2],[2,3,2,0],[1,0,2,1]],[[0,0,2,1],[1,3,3,3],[2,3,2,0],[1,0,2,1]],[[0,0,2,2],[1,3,3,2],[2,3,2,0],[1,1,1,1]],[[0,0,2,1],[1,3,4,2],[2,3,2,0],[1,1,1,1]],[[0,0,2,1],[1,3,3,3],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,3,3,0],[2,0,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,0],[2,0,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,3,0],[2,0,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,3,0],[2,0,3,1],[0,1,2,0]],[[1,2,2,1],[3,3,3,0],[2,0,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,0],[2,0,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,3,0],[2,0,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,3,0],[2,0,3,1],[0,1,1,1]],[[0,0,2,2],[1,3,3,2],[2,3,2,1],[0,1,1,1]],[[0,0,2,1],[1,3,4,2],[2,3,2,1],[0,1,1,1]],[[0,0,2,1],[1,3,3,3],[2,3,2,1],[0,1,1,1]],[[0,0,2,2],[1,3,3,2],[2,3,2,1],[0,1,2,0]],[[0,0,2,1],[1,3,4,2],[2,3,2,1],[0,1,2,0]],[[0,0,2,1],[1,3,3,3],[2,3,2,1],[0,1,2,0]],[[0,0,2,2],[1,3,3,2],[2,3,2,1],[0,2,0,1]],[[0,0,2,1],[1,3,4,2],[2,3,2,1],[0,2,0,1]],[[0,0,2,1],[1,3,3,3],[2,3,2,1],[0,2,0,1]],[[0,0,2,2],[1,3,3,2],[2,3,2,1],[0,2,1,0]],[[0,0,2,1],[1,3,4,2],[2,3,2,1],[0,2,1,0]],[[0,0,2,1],[1,3,3,3],[2,3,2,1],[0,2,1,0]],[[0,0,2,2],[1,3,3,2],[2,3,2,1],[1,0,1,1]],[[0,0,2,1],[1,3,4,2],[2,3,2,1],[1,0,1,1]],[[0,0,2,1],[1,3,3,3],[2,3,2,1],[1,0,1,1]],[[0,0,2,2],[1,3,3,2],[2,3,2,1],[1,0,2,0]],[[0,0,2,1],[1,3,4,2],[2,3,2,1],[1,0,2,0]],[[0,0,2,1],[1,3,3,3],[2,3,2,1],[1,0,2,0]],[[0,0,2,2],[1,3,3,2],[2,3,2,1],[1,1,0,1]],[[0,0,2,1],[1,3,4,2],[2,3,2,1],[1,1,0,1]],[[0,0,2,1],[1,3,3,3],[2,3,2,1],[1,1,0,1]],[[0,0,2,2],[1,3,3,2],[2,3,2,1],[1,1,1,0]],[[0,0,2,1],[1,3,4,2],[2,3,2,1],[1,1,1,0]],[[0,0,2,1],[1,3,3,3],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,3,0],[2,0,3,0],[1,2,1,0]],[[1,2,3,1],[2,3,3,0],[2,0,3,0],[1,2,1,0]],[[0,0,2,2],[1,3,3,2],[2,3,2,1],[1,2,0,0]],[[0,0,2,1],[1,3,4,2],[2,3,2,1],[1,2,0,0]],[[0,0,2,1],[1,3,3,3],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,3,0],[2,0,3,0],[1,2,1,0]],[[2,2,2,1],[2,3,3,0],[2,0,3,0],[1,2,1,0]],[[1,2,2,1],[3,3,3,0],[2,0,3,0],[1,1,1,1]],[[1,2,3,1],[2,3,3,0],[2,0,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,0],[2,0,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,3,0],[2,0,3,0],[1,1,1,1]],[[1,2,2,1],[3,3,3,0],[2,0,3,0],[1,0,2,1]],[[1,2,3,1],[2,3,3,0],[2,0,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,3,0],[2,0,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,3,0],[2,0,3,0],[1,0,2,1]],[[0,0,2,2],[1,3,3,2],[2,3,2,2],[0,0,1,1]],[[0,0,2,1],[1,3,4,2],[2,3,2,2],[0,0,1,1]],[[0,0,2,1],[1,3,3,3],[2,3,2,2],[0,0,1,1]],[[0,0,2,1],[1,3,3,2],[2,3,2,3],[0,0,1,1]],[[0,0,2,1],[1,3,3,2],[2,3,2,2],[0,0,1,2]],[[0,0,2,2],[1,3,3,2],[2,3,2,2],[0,0,2,0]],[[0,0,2,1],[1,3,4,2],[2,3,2,2],[0,0,2,0]],[[0,0,2,1],[1,3,3,3],[2,3,2,2],[0,0,2,0]],[[0,0,2,1],[1,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,1],[3,3,3,0],[2,0,3,0],[0,2,1,1]],[[1,2,3,1],[2,3,3,0],[2,0,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,0],[2,0,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,0],[2,0,3,0],[0,2,1,1]],[[1,2,2,1],[3,3,3,0],[2,0,3,0],[0,1,2,1]],[[1,2,3,1],[2,3,3,0],[2,0,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,3,0],[2,0,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,3,0],[2,0,3,0],[0,1,2,1]],[[1,2,2,1],[3,3,3,0],[2,0,2,1],[1,2,1,0]],[[1,2,3,1],[2,3,3,0],[2,0,2,1],[1,2,1,0]],[[1,3,2,1],[2,3,3,0],[2,0,2,1],[1,2,1,0]],[[2,2,2,1],[2,3,3,0],[2,0,2,1],[1,2,1,0]],[[1,2,2,1],[3,3,3,0],[2,0,2,1],[1,2,0,1]],[[1,2,3,1],[2,3,3,0],[2,0,2,1],[1,2,0,1]],[[1,3,2,1],[2,3,3,0],[2,0,2,1],[1,2,0,1]],[[2,2,2,1],[2,3,3,0],[2,0,2,1],[1,2,0,1]],[[1,2,2,1],[3,3,3,0],[2,0,2,0],[1,2,1,1]],[[1,2,3,1],[2,3,3,0],[2,0,2,0],[1,2,1,1]],[[1,3,2,1],[2,3,3,0],[2,0,2,0],[1,2,1,1]],[[2,2,2,1],[2,3,3,0],[2,0,2,0],[1,2,1,1]],[[1,2,2,1],[3,3,3,0],[2,0,1,1],[1,2,2,0]],[[1,2,3,1],[2,3,3,0],[2,0,1,1],[1,2,2,0]],[[1,3,2,1],[2,3,3,0],[2,0,1,1],[1,2,2,0]],[[2,2,2,1],[2,3,3,0],[2,0,1,1],[1,2,2,0]],[[1,2,2,1],[3,3,3,0],[2,0,1,0],[1,2,2,1]],[[1,2,3,1],[2,3,3,0],[2,0,1,0],[1,2,2,1]],[[1,3,2,1],[2,3,3,0],[2,0,1,0],[1,2,2,1]],[[2,2,2,1],[2,3,3,0],[2,0,1,0],[1,2,2,1]],[[0,0,2,2],[1,3,3,2],[2,3,3,0],[0,0,2,1]],[[0,0,2,1],[1,3,4,2],[2,3,3,0],[0,0,2,1]],[[0,0,2,1],[1,3,3,3],[2,3,3,0],[0,0,2,1]],[[0,0,2,1],[1,3,3,2],[2,3,4,0],[0,0,2,1]],[[0,0,2,2],[1,3,3,2],[2,3,3,1],[0,0,1,1]],[[0,0,2,1],[1,3,4,2],[2,3,3,1],[0,0,1,1]],[[0,0,2,1],[1,3,3,3],[2,3,3,1],[0,0,1,1]],[[0,0,2,1],[1,3,3,2],[2,3,4,1],[0,0,1,1]],[[0,0,2,2],[1,3,3,2],[2,3,3,1],[0,0,2,0]],[[0,0,2,1],[1,3,4,2],[2,3,3,1],[0,0,2,0]],[[0,0,2,1],[1,3,3,3],[2,3,3,1],[0,0,2,0]],[[0,0,2,1],[1,3,3,2],[2,3,4,1],[0,0,2,0]],[[0,0,2,2],[1,3,3,2],[2,3,3,1],[0,2,0,0]],[[0,0,2,1],[1,3,4,2],[2,3,3,1],[0,2,0,0]],[[0,0,2,1],[1,3,3,3],[2,3,3,1],[0,2,0,0]],[[0,0,2,2],[1,3,3,2],[2,3,3,1],[1,1,0,0]],[[0,0,2,1],[1,3,4,2],[2,3,3,1],[1,1,0,0]],[[0,0,2,1],[1,3,3,3],[2,3,3,1],[1,1,0,0]],[[0,0,2,2],[1,3,3,2],[2,3,3,2],[0,0,0,1]],[[0,0,2,1],[1,3,4,2],[2,3,3,2],[0,0,0,1]],[[0,0,2,1],[1,3,3,3],[2,3,3,2],[0,0,0,1]],[[0,0,2,1],[1,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,3,4,0],[1,0,3,2],[1,1,1,0]],[[1,2,2,2],[2,3,3,0],[1,0,3,2],[1,1,1,0]],[[1,2,3,1],[2,3,3,0],[1,0,3,2],[1,1,1,0]],[[1,3,2,1],[2,3,3,0],[1,0,3,2],[1,1,1,0]],[[2,2,2,1],[2,3,3,0],[1,0,3,2],[1,1,1,0]],[[1,2,2,1],[2,3,4,0],[1,0,3,2],[1,1,0,1]],[[1,2,2,2],[2,3,3,0],[1,0,3,2],[1,1,0,1]],[[1,2,3,1],[2,3,3,0],[1,0,3,2],[1,1,0,1]],[[1,3,2,1],[2,3,3,0],[1,0,3,2],[1,1,0,1]],[[2,2,2,1],[2,3,3,0],[1,0,3,2],[1,1,0,1]],[[1,2,2,1],[2,3,4,0],[1,0,3,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,0],[1,0,3,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,0],[1,0,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,0],[1,0,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,0],[1,0,3,2],[1,0,2,0]],[[1,2,2,1],[2,3,4,0],[1,0,3,2],[1,0,1,1]],[[1,2,2,2],[2,3,3,0],[1,0,3,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,0],[1,0,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,0],[1,0,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,0],[1,0,3,2],[1,0,1,1]],[[1,2,2,1],[2,3,4,0],[1,0,3,2],[0,2,1,0]],[[1,2,2,2],[2,3,3,0],[1,0,3,2],[0,2,1,0]],[[1,2,3,1],[2,3,3,0],[1,0,3,2],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[1,0,3,2],[0,2,1,0]],[[2,2,2,1],[2,3,3,0],[1,0,3,2],[0,2,1,0]],[[0,0,2,1],[2,0,0,2],[2,3,3,3],[1,2,2,1]],[[0,0,2,1],[2,0,0,2],[2,3,3,2],[2,2,2,1]],[[0,0,2,1],[2,0,0,2],[2,3,3,2],[1,3,2,1]],[[0,0,2,1],[2,0,0,2],[2,3,3,2],[1,2,3,1]],[[0,0,2,1],[2,0,0,2],[2,3,3,2],[1,2,2,2]],[[0,0,2,1],[2,0,1,2],[1,3,3,3],[1,2,2,1]],[[0,0,2,1],[2,0,1,2],[1,3,3,2],[2,2,2,1]],[[0,0,2,1],[2,0,1,2],[1,3,3,2],[1,3,2,1]],[[0,0,2,1],[2,0,1,2],[1,3,3,2],[1,2,3,1]],[[0,0,2,1],[2,0,1,2],[1,3,3,2],[1,2,2,2]],[[0,0,2,1],[2,0,1,2],[2,2,3,3],[1,2,2,1]],[[0,0,2,1],[2,0,1,2],[2,2,3,2],[2,2,2,1]],[[0,0,2,1],[2,0,1,2],[2,2,3,2],[1,3,2,1]],[[0,0,2,1],[2,0,1,2],[2,2,3,2],[1,2,3,1]],[[0,0,2,1],[2,0,1,2],[2,2,3,2],[1,2,2,2]],[[0,0,2,1],[2,0,1,2],[2,3,3,3],[0,2,2,1]],[[0,0,2,1],[2,0,1,2],[2,3,3,2],[0,3,2,1]],[[0,0,2,1],[2,0,1,2],[2,3,3,2],[0,2,3,1]],[[0,0,2,1],[2,0,1,2],[2,3,3,2],[0,2,2,2]],[[0,0,2,2],[2,0,2,2],[1,3,2,2],[1,2,2,1]],[[0,0,2,1],[2,0,2,3],[1,3,2,2],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[1,3,2,3],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[1,3,2,2],[2,2,2,1]],[[0,0,2,1],[2,0,2,2],[1,3,2,2],[1,3,2,1]],[[0,0,2,1],[2,0,2,2],[1,3,2,2],[1,2,3,1]],[[0,0,2,1],[2,0,2,2],[1,3,2,2],[1,2,2,2]],[[0,0,2,1],[2,0,2,2],[1,3,4,1],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[1,3,3,1],[2,2,2,1]],[[0,0,2,1],[2,0,2,2],[1,3,3,1],[1,3,2,1]],[[0,0,2,1],[2,0,2,2],[1,3,3,1],[1,2,3,1]],[[0,0,2,1],[2,0,2,2],[1,3,3,1],[1,2,2,2]],[[0,0,2,2],[2,0,2,2],[1,3,3,2],[1,2,1,1]],[[0,0,2,1],[2,0,2,3],[1,3,3,2],[1,2,1,1]],[[0,0,2,1],[2,0,2,2],[1,3,4,2],[1,2,1,1]],[[0,0,2,1],[2,0,2,2],[1,3,3,3],[1,2,1,1]],[[0,0,2,1],[2,0,2,2],[1,3,3,2],[1,2,1,2]],[[0,0,2,2],[2,0,2,2],[1,3,3,2],[1,2,2,0]],[[0,0,2,1],[2,0,2,3],[1,3,3,2],[1,2,2,0]],[[0,0,2,1],[2,0,2,2],[1,3,4,2],[1,2,2,0]],[[0,0,2,1],[2,0,2,2],[1,3,3,3],[1,2,2,0]],[[0,0,2,1],[2,0,2,2],[1,3,3,2],[2,2,2,0]],[[0,0,2,1],[2,0,2,2],[1,3,3,2],[1,3,2,0]],[[0,0,2,1],[2,0,2,2],[1,3,3,2],[1,2,3,0]],[[0,0,2,2],[2,0,2,2],[2,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,0,2,3],[2,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[3,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,2,2,3],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,2,2,2],[2,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,2,2,2],[1,3,2,1]],[[0,0,2,1],[2,0,2,2],[2,2,2,2],[1,2,3,1]],[[0,0,2,1],[2,0,2,2],[2,2,2,2],[1,2,2,2]],[[0,0,2,1],[2,0,2,2],[3,2,3,1],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,2,4,1],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,2,3,1],[2,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,2,3,1],[1,3,2,1]],[[0,0,2,1],[2,0,2,2],[2,2,3,1],[1,2,3,1]],[[0,0,2,1],[2,0,2,2],[2,2,3,1],[1,2,2,2]],[[0,0,2,2],[2,0,2,2],[2,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,0,2,3],[2,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,0,2,2],[2,2,4,2],[1,2,1,1]],[[0,0,2,1],[2,0,2,2],[2,2,3,3],[1,2,1,1]],[[0,0,2,1],[2,0,2,2],[2,2,3,2],[1,2,1,2]],[[0,0,2,2],[2,0,2,2],[2,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,0,2,3],[2,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,0,2,2],[3,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,0,2,2],[2,2,4,2],[1,2,2,0]],[[0,0,2,1],[2,0,2,2],[2,2,3,3],[1,2,2,0]],[[0,0,2,1],[2,0,2,2],[2,2,3,2],[2,2,2,0]],[[0,0,2,1],[2,0,2,2],[2,2,3,2],[1,3,2,0]],[[0,0,2,1],[2,0,2,2],[2,2,3,2],[1,2,3,0]],[[0,0,2,2],[2,0,2,2],[2,3,1,2],[1,2,2,1]],[[0,0,2,1],[2,0,2,3],[2,3,1,2],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[3,3,1,2],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,1,3],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,1,2],[2,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,1,2],[1,3,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,1,2],[1,2,3,1]],[[0,0,2,1],[2,0,2,2],[2,3,1,2],[1,2,2,2]],[[0,0,2,1],[2,0,2,2],[3,3,2,1],[1,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,2,1],[2,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,2,1],[1,3,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,2,1],[1,2,3,1]],[[0,0,2,1],[2,0,2,2],[2,3,2,1],[1,2,2,2]],[[0,0,2,2],[2,0,2,2],[2,3,2,2],[0,2,2,1]],[[0,0,2,1],[2,0,2,3],[2,3,2,2],[0,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,2,3],[0,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,2,2],[0,3,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,2,2],[0,2,3,1]],[[0,0,2,1],[2,0,2,2],[2,3,2,2],[0,2,2,2]],[[0,0,2,1],[2,0,2,2],[3,3,2,2],[1,2,2,0]],[[0,0,2,1],[2,0,2,2],[2,3,2,2],[2,2,2,0]],[[0,0,2,1],[2,0,2,2],[2,3,2,2],[1,3,2,0]],[[0,0,2,1],[2,0,2,2],[2,3,2,2],[1,2,3,0]],[[0,0,2,1],[2,0,2,2],[2,3,4,1],[0,2,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,3,1],[0,3,2,1]],[[0,0,2,1],[2,0,2,2],[2,3,3,1],[0,2,3,1]],[[0,0,2,1],[2,0,2,2],[2,3,3,1],[0,2,2,2]],[[0,0,2,1],[2,0,2,2],[3,3,3,1],[1,2,1,1]],[[0,0,2,1],[2,0,2,2],[2,3,3,1],[2,2,1,1]],[[0,0,2,1],[2,0,2,2],[2,3,3,1],[1,3,1,1]],[[0,0,2,2],[2,0,2,2],[2,3,3,2],[0,2,1,1]],[[0,0,2,1],[2,0,2,3],[2,3,3,2],[0,2,1,1]],[[0,0,2,1],[2,0,2,2],[2,3,4,2],[0,2,1,1]],[[0,0,2,1],[2,0,2,2],[2,3,3,3],[0,2,1,1]],[[0,0,2,1],[2,0,2,2],[2,3,3,2],[0,2,1,2]],[[0,0,2,2],[2,0,2,2],[2,3,3,2],[0,2,2,0]],[[0,0,2,1],[2,0,2,3],[2,3,3,2],[0,2,2,0]],[[0,0,2,1],[2,0,2,2],[2,3,4,2],[0,2,2,0]],[[0,0,2,1],[2,0,2,2],[2,3,3,3],[0,2,2,0]],[[0,0,2,1],[2,0,2,2],[2,3,3,2],[0,3,2,0]],[[0,0,2,1],[2,0,2,2],[2,3,3,2],[0,2,3,0]],[[0,0,2,1],[2,0,2,2],[3,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,0,2,2],[2,3,3,2],[2,2,0,1]],[[0,0,2,1],[2,0,2,2],[2,3,3,2],[1,3,0,1]],[[0,0,2,1],[2,0,2,2],[3,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,0,2,2],[2,3,3,2],[2,2,1,0]],[[0,0,2,1],[2,0,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,4,0],[1,0,3,2],[0,2,0,1]],[[1,2,2,2],[2,3,3,0],[1,0,3,2],[0,2,0,1]],[[1,2,3,1],[2,3,3,0],[1,0,3,2],[0,2,0,1]],[[1,3,2,1],[2,3,3,0],[1,0,3,2],[0,2,0,1]],[[2,2,2,1],[2,3,3,0],[1,0,3,2],[0,2,0,1]],[[0,0,2,1],[2,0,3,0],[1,3,4,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,0],[1,3,3,2],[2,2,2,1]],[[0,0,2,1],[2,0,3,0],[1,3,3,2],[1,3,2,1]],[[0,0,2,1],[2,0,3,0],[1,3,3,2],[1,2,3,1]],[[0,0,2,1],[2,0,3,0],[1,3,3,2],[1,2,2,2]],[[0,0,2,1],[2,0,3,0],[2,2,4,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,0],[2,2,3,2],[2,2,2,1]],[[0,0,2,1],[2,0,3,0],[2,2,3,2],[1,3,2,1]],[[0,0,2,1],[2,0,3,0],[2,2,3,2],[1,2,3,1]],[[0,0,2,1],[2,0,3,0],[2,2,3,2],[1,2,2,2]],[[0,0,2,1],[2,0,3,0],[2,3,4,1],[1,2,2,1]],[[0,0,2,1],[2,0,3,0],[2,3,3,1],[2,2,2,1]],[[0,0,2,1],[2,0,3,0],[2,3,3,1],[1,3,2,1]],[[0,0,2,1],[2,0,3,0],[2,3,3,1],[1,2,3,1]],[[0,0,2,1],[2,0,3,0],[2,3,3,1],[1,2,2,2]],[[0,0,2,1],[2,0,3,0],[2,3,4,2],[0,2,2,1]],[[0,0,2,1],[2,0,3,0],[2,3,3,2],[0,3,2,1]],[[0,0,2,1],[2,0,3,0],[2,3,3,2],[0,2,3,1]],[[0,0,2,1],[2,0,3,0],[2,3,3,2],[0,2,2,2]],[[0,0,2,1],[2,0,3,0],[2,3,4,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,0],[2,3,3,2],[2,2,2,0]],[[0,0,2,1],[2,0,3,0],[2,3,3,2],[1,3,2,0]],[[0,0,2,1],[2,0,3,0],[2,3,3,2],[1,2,3,0]],[[0,0,2,1],[2,0,3,1],[1,3,2,3],[1,2,2,1]],[[0,0,2,1],[2,0,3,1],[1,3,2,2],[2,2,2,1]],[[0,0,2,1],[2,0,3,1],[1,3,2,2],[1,3,2,1]],[[0,0,2,1],[2,0,3,1],[1,3,2,2],[1,2,3,1]],[[0,0,2,1],[2,0,3,1],[1,3,2,2],[1,2,2,2]],[[0,0,2,1],[2,0,3,1],[1,3,4,1],[1,2,2,1]],[[0,0,2,1],[2,0,3,1],[1,3,3,1],[2,2,2,1]],[[0,0,2,1],[2,0,3,1],[1,3,3,1],[1,3,2,1]],[[0,0,2,1],[2,0,3,1],[1,3,3,1],[1,2,3,1]],[[0,0,2,1],[2,0,3,1],[1,3,3,1],[1,2,2,2]],[[0,0,2,1],[2,0,3,1],[1,3,4,2],[1,2,1,1]],[[0,0,2,1],[2,0,3,1],[1,3,3,3],[1,2,1,1]],[[0,0,2,1],[2,0,3,1],[1,3,3,2],[1,2,1,2]],[[0,0,2,1],[2,0,3,1],[1,3,4,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,1],[1,3,3,3],[1,2,2,0]],[[0,0,2,1],[2,0,3,1],[1,3,3,2],[2,2,2,0]],[[0,0,2,1],[2,0,3,1],[1,3,3,2],[1,3,2,0]],[[0,0,2,1],[2,0,3,1],[1,3,3,2],[1,2,3,0]],[[0,0,2,1],[2,0,3,1],[3,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,2,2,3],[1,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,2,2,2],[2,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,2,2,2],[1,3,2,1]],[[0,0,2,1],[2,0,3,1],[2,2,2,2],[1,2,3,1]],[[0,0,2,1],[2,0,3,1],[2,2,2,2],[1,2,2,2]],[[0,0,2,1],[2,0,3,1],[3,2,3,1],[1,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,2,4,1],[1,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,2,3,1],[2,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,2,3,1],[1,3,2,1]],[[0,0,2,1],[2,0,3,1],[2,2,3,1],[1,2,3,1]],[[0,0,2,1],[2,0,3,1],[2,2,3,1],[1,2,2,2]],[[0,0,2,1],[2,0,3,1],[2,2,4,2],[1,2,1,1]],[[0,0,2,1],[2,0,3,1],[2,2,3,3],[1,2,1,1]],[[0,0,2,1],[2,0,3,1],[2,2,3,2],[1,2,1,2]],[[0,0,2,1],[2,0,3,1],[3,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,1],[2,2,4,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,1],[2,2,3,3],[1,2,2,0]],[[0,0,2,1],[2,0,3,1],[2,2,3,2],[2,2,2,0]],[[0,0,2,1],[2,0,3,1],[2,2,3,2],[1,3,2,0]],[[0,0,2,1],[2,0,3,1],[2,2,3,2],[1,2,3,0]],[[0,0,2,1],[2,0,3,1],[3,3,1,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,3,1,3],[1,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,3,1,2],[2,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,3,1,2],[1,3,2,1]],[[0,0,2,1],[2,0,3,1],[2,3,1,2],[1,2,3,1]],[[0,0,2,1],[2,0,3,1],[2,3,1,2],[1,2,2,2]],[[0,0,2,1],[2,0,3,1],[3,3,2,1],[1,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,3,2,1],[2,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,3,2,1],[1,3,2,1]],[[0,0,2,1],[2,0,3,1],[2,3,2,1],[1,2,3,1]],[[0,0,2,1],[2,0,3,1],[2,3,2,1],[1,2,2,2]],[[0,0,2,1],[2,0,3,1],[2,3,2,3],[0,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,3,2,2],[0,3,2,1]],[[0,0,2,1],[2,0,3,1],[2,3,2,2],[0,2,3,1]],[[0,0,2,1],[2,0,3,1],[2,3,2,2],[0,2,2,2]],[[0,0,2,1],[2,0,3,1],[3,3,2,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,1],[2,3,2,2],[2,2,2,0]],[[0,0,2,1],[2,0,3,1],[2,3,2,2],[1,3,2,0]],[[0,0,2,1],[2,0,3,1],[2,3,2,2],[1,2,3,0]],[[0,0,2,1],[2,0,3,1],[2,3,4,1],[0,2,2,1]],[[0,0,2,1],[2,0,3,1],[2,3,3,1],[0,3,2,1]],[[0,0,2,1],[2,0,3,1],[2,3,3,1],[0,2,3,1]],[[0,0,2,1],[2,0,3,1],[2,3,3,1],[0,2,2,2]],[[0,0,2,1],[2,0,3,1],[3,3,3,1],[1,2,1,1]],[[0,0,2,1],[2,0,3,1],[2,3,3,1],[2,2,1,1]],[[0,0,2,1],[2,0,3,1],[2,3,3,1],[1,3,1,1]],[[0,0,2,1],[2,0,3,1],[2,3,4,2],[0,2,1,1]],[[0,0,2,1],[2,0,3,1],[2,3,3,3],[0,2,1,1]],[[0,0,2,1],[2,0,3,1],[2,3,3,2],[0,2,1,2]],[[0,0,2,1],[2,0,3,1],[2,3,4,2],[0,2,2,0]],[[0,0,2,1],[2,0,3,1],[2,3,3,3],[0,2,2,0]],[[0,0,2,1],[2,0,3,1],[2,3,3,2],[0,3,2,0]],[[0,0,2,1],[2,0,3,1],[2,3,3,2],[0,2,3,0]],[[0,0,2,1],[2,0,3,1],[3,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,0,3,1],[2,3,3,2],[2,2,0,1]],[[0,0,2,1],[2,0,3,1],[2,3,3,2],[1,3,0,1]],[[0,0,2,1],[2,0,3,1],[3,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,0,3,1],[2,3,3,2],[2,2,1,0]],[[0,0,2,1],[2,0,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,4,0],[1,0,3,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,0],[1,0,3,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,0],[1,0,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,3,0],[1,0,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,0],[1,0,3,2],[0,1,2,0]],[[1,2,2,1],[2,3,4,0],[1,0,3,2],[0,1,1,1]],[[0,0,2,2],[2,0,3,2],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,3],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[1,1,3,3],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[1,1,3,2],[1,2,3,1]],[[0,0,2,1],[2,0,3,2],[1,1,3,2],[1,2,2,2]],[[0,0,2,2],[2,0,3,2],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,3],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[1,2,2,3],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[1,2,2,2],[2,2,2,1]],[[0,0,2,1],[2,0,3,2],[1,2,2,2],[1,3,2,1]],[[0,0,2,1],[2,0,3,2],[1,2,2,2],[1,2,3,1]],[[0,0,2,1],[2,0,3,2],[1,2,2,2],[1,2,2,2]],[[0,0,2,1],[2,0,3,2],[1,2,4,1],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[1,2,3,1],[2,2,2,1]],[[0,0,2,1],[2,0,3,2],[1,2,3,1],[1,3,2,1]],[[0,0,2,1],[2,0,3,2],[1,2,3,1],[1,2,3,1]],[[0,0,2,1],[2,0,3,2],[1,2,3,1],[1,2,2,2]],[[0,0,2,2],[2,0,3,2],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,0,3,3],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,0,3,2],[1,2,4,2],[1,2,1,1]],[[0,0,2,1],[2,0,3,2],[1,2,3,3],[1,2,1,1]],[[0,0,2,1],[2,0,3,2],[1,2,3,2],[1,2,1,2]],[[0,0,2,2],[2,0,3,2],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,3],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,2],[1,2,4,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,2],[1,2,3,3],[1,2,2,0]],[[0,0,2,1],[2,0,3,2],[1,2,3,2],[2,2,2,0]],[[0,0,2,1],[2,0,3,2],[1,2,3,2],[1,3,2,0]],[[0,0,2,1],[2,0,3,2],[1,2,3,2],[1,2,3,0]],[[0,0,2,2],[2,0,3,2],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[2,0,3,3],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[2,0,3,2],[1,3,2,3],[1,1,2,1]],[[0,0,2,1],[2,0,3,2],[1,3,2,2],[1,1,3,1]],[[0,0,2,1],[2,0,3,2],[1,3,2,2],[1,1,2,2]],[[0,0,2,1],[2,0,3,2],[1,3,4,0],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,0],[2,2,2,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,0],[1,3,2,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,0],[1,2,3,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,0],[1,2,2,2]],[[0,0,2,1],[2,0,3,2],[1,3,4,1],[1,1,2,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,1],[1,1,3,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,1],[1,1,2,2]],[[0,0,2,1],[2,0,3,2],[1,3,4,1],[1,2,2,0]],[[0,0,2,1],[2,0,3,2],[1,3,3,1],[2,2,2,0]],[[0,0,2,1],[2,0,3,2],[1,3,3,1],[1,3,2,0]],[[0,0,2,1],[2,0,3,2],[1,3,3,1],[1,2,3,0]],[[0,0,2,2],[2,0,3,2],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[2,0,3,3],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[2,0,3,2],[1,3,4,2],[1,0,2,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,3],[1,0,2,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,2],[1,0,2,2]],[[0,0,2,2],[2,0,3,2],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[2,0,3,3],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[2,0,3,2],[1,3,4,2],[1,1,1,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,3],[1,1,1,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,2],[1,1,1,2]],[[0,0,2,2],[2,0,3,2],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[2,0,3,3],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[2,0,3,2],[1,3,4,2],[1,1,2,0]],[[0,0,2,1],[2,0,3,2],[1,3,3,3],[1,1,2,0]],[[0,0,2,1],[2,0,3,2],[1,3,3,2],[1,1,3,0]],[[0,0,2,2],[2,0,3,2],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,0,3,3],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,0,3,2],[1,3,4,2],[1,2,0,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,3],[1,2,0,1]],[[0,0,2,1],[2,0,3,2],[1,3,3,2],[1,2,0,2]],[[0,0,2,2],[2,0,3,2],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,0,3,3],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,0,3,2],[1,3,4,2],[1,2,1,0]],[[0,0,2,1],[2,0,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,2],[2,3,3,0],[1,0,3,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,0],[1,0,3,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,0],[1,0,3,2],[0,1,1,1]],[[2,2,2,1],[2,3,3,0],[1,0,3,2],[0,1,1,1]],[[1,2,2,1],[2,3,4,0],[1,0,3,2],[0,0,2,1]],[[1,2,2,2],[2,3,3,0],[1,0,3,2],[0,0,2,1]],[[1,2,3,1],[2,3,3,0],[1,0,3,2],[0,0,2,1]],[[1,3,2,1],[2,3,3,0],[1,0,3,2],[0,0,2,1]],[[0,0,2,2],[2,0,3,2],[2,0,3,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,3],[2,0,3,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,0,3,3],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,0,3,2],[1,2,3,1]],[[0,0,2,1],[2,0,3,2],[2,0,3,2],[1,2,2,2]],[[0,0,2,2],[2,0,3,2],[2,1,2,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,3],[2,1,2,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[3,1,2,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,1,2,3],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,1,2,2],[2,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,1,2,2],[1,3,2,1]],[[0,0,2,1],[2,0,3,2],[2,1,2,2],[1,2,3,1]],[[0,0,2,1],[2,0,3,2],[2,1,2,2],[1,2,2,2]],[[0,0,2,1],[2,0,3,2],[3,1,3,1],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,1,4,1],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,1,3,1],[2,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,1,3,1],[1,3,2,1]],[[0,0,2,1],[2,0,3,2],[2,1,3,1],[1,2,3,1]],[[0,0,2,1],[2,0,3,2],[2,1,3,1],[1,2,2,2]],[[0,0,2,2],[2,0,3,2],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[2,0,3,3],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,1,3,3],[0,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,1,3,2],[0,2,3,1]],[[0,0,2,1],[2,0,3,2],[2,1,3,2],[0,2,2,2]],[[0,0,2,2],[2,0,3,2],[2,1,3,2],[1,2,1,1]],[[0,0,2,1],[2,0,3,3],[2,1,3,2],[1,2,1,1]],[[0,0,2,1],[2,0,3,2],[2,1,4,2],[1,2,1,1]],[[0,0,2,1],[2,0,3,2],[2,1,3,3],[1,2,1,1]],[[0,0,2,1],[2,0,3,2],[2,1,3,2],[1,2,1,2]],[[0,0,2,2],[2,0,3,2],[2,1,3,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,3],[2,1,3,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,2],[3,1,3,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,1,4,2],[1,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,1,3,3],[1,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,1,3,2],[2,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,1,3,2],[1,3,2,0]],[[0,0,2,1],[2,0,3,2],[2,1,3,2],[1,2,3,0]],[[0,0,2,2],[2,0,3,2],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[2,0,3,3],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,2,2,3],[0,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,2,2,2],[0,3,2,1]],[[0,0,2,1],[2,0,3,2],[2,2,2,2],[0,2,3,1]],[[0,0,2,1],[2,0,3,2],[2,2,2,2],[0,2,2,2]],[[0,0,2,1],[2,0,3,2],[3,2,3,0],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,2,4,0],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,2,3,0],[2,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,2,3,0],[1,3,2,1]],[[0,0,2,1],[2,0,3,2],[2,2,3,0],[1,2,3,1]],[[0,0,2,1],[2,0,3,2],[2,2,3,0],[1,2,2,2]],[[0,0,2,1],[2,0,3,2],[2,2,4,1],[0,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,2,3,1],[0,3,2,1]],[[0,0,2,1],[2,0,3,2],[2,2,3,1],[0,2,3,1]],[[0,0,2,1],[2,0,3,2],[2,2,3,1],[0,2,2,2]],[[0,0,2,1],[2,0,3,2],[3,2,3,1],[1,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,2,4,1],[1,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,2,3,1],[2,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,2,3,1],[1,3,2,0]],[[0,0,2,1],[2,0,3,2],[2,2,3,1],[1,2,3,0]],[[0,0,2,2],[2,0,3,2],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[2,0,3,3],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[2,0,3,2],[2,2,4,2],[0,2,1,1]],[[0,0,2,1],[2,0,3,2],[2,2,3,3],[0,2,1,1]],[[0,0,2,1],[2,0,3,2],[2,2,3,2],[0,2,1,2]],[[0,0,2,2],[2,0,3,2],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[2,0,3,3],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,2,4,2],[0,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,2,3,3],[0,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,2,3,2],[0,3,2,0]],[[0,0,2,1],[2,0,3,2],[2,2,3,2],[0,2,3,0]],[[2,2,2,1],[2,3,3,0],[1,0,3,2],[0,0,2,1]],[[0,0,2,2],[2,0,3,2],[2,3,0,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,3],[2,3,0,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[3,3,0,2],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,0,3],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,0,2],[2,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,0,2],[1,3,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,0,2],[1,2,3,1]],[[0,0,2,1],[2,0,3,2],[2,3,0,2],[1,2,2,2]],[[0,0,2,1],[2,0,3,2],[3,3,2,0],[1,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,2,0],[2,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,2,0],[1,3,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,2,0],[1,2,3,1]],[[0,0,2,1],[2,0,3,2],[2,3,2,0],[1,2,2,2]],[[0,0,2,1],[2,0,3,2],[3,3,2,1],[1,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,3,2,1],[2,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,3,2,1],[1,3,2,0]],[[0,0,2,1],[2,0,3,2],[2,3,2,1],[1,2,3,0]],[[0,0,2,2],[2,0,3,2],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[2,0,3,3],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,2,3],[0,1,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,2,2],[0,1,3,1]],[[0,0,2,1],[2,0,3,2],[2,3,2,2],[0,1,2,2]],[[0,0,2,2],[2,0,3,2],[2,3,2,2],[1,0,2,1]],[[0,0,2,1],[2,0,3,3],[2,3,2,2],[1,0,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,2,3],[1,0,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,2,2],[1,0,3,1]],[[0,0,2,1],[2,0,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,3,4,0],[1,0,3,1],[1,0,2,1]],[[1,2,2,2],[2,3,3,0],[1,0,3,1],[1,0,2,1]],[[1,2,3,1],[2,3,3,0],[1,0,3,1],[1,0,2,1]],[[1,3,2,1],[2,3,3,0],[1,0,3,1],[1,0,2,1]],[[2,2,2,1],[2,3,3,0],[1,0,3,1],[1,0,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,4,0],[0,2,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,0],[0,3,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,0],[0,2,3,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,0],[0,2,2,2]],[[0,0,2,1],[2,0,3,2],[3,3,3,0],[1,2,1,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,0],[2,2,1,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,0],[1,3,1,1]],[[0,0,2,1],[2,0,3,2],[2,3,4,1],[0,1,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,1],[0,1,3,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,1],[0,1,2,2]],[[0,0,2,1],[2,0,3,2],[2,3,4,1],[0,2,2,0]],[[0,0,2,1],[2,0,3,2],[2,3,3,1],[0,3,2,0]],[[0,0,2,1],[2,0,3,2],[2,3,3,1],[0,2,3,0]],[[0,0,2,1],[2,0,3,2],[2,3,4,1],[1,0,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,1],[1,0,3,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,1],[1,0,2,2]],[[0,0,2,1],[2,0,3,2],[3,3,3,1],[1,2,0,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,1],[2,2,0,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,1],[1,3,0,1]],[[0,0,2,1],[2,0,3,2],[3,3,3,1],[1,2,1,0]],[[0,0,2,1],[2,0,3,2],[2,3,3,1],[2,2,1,0]],[[0,0,2,1],[2,0,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,3,4,0],[1,0,3,1],[0,1,2,1]],[[1,2,2,2],[2,3,3,0],[1,0,3,1],[0,1,2,1]],[[0,0,2,2],[2,0,3,2],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,0,3,3],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,4,2],[0,0,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,3],[0,0,2,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,2],[0,0,2,2]],[[0,0,2,2],[2,0,3,2],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,0,3,3],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,0,3,2],[2,3,4,2],[0,1,1,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,3],[0,1,1,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,2],[0,1,1,2]],[[0,0,2,2],[2,0,3,2],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,0,3,3],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,0,3,2],[2,3,4,2],[0,1,2,0]],[[0,0,2,1],[2,0,3,2],[2,3,3,3],[0,1,2,0]],[[0,0,2,1],[2,0,3,2],[2,3,3,2],[0,1,3,0]],[[0,0,2,2],[2,0,3,2],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,0,3,3],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,0,3,2],[2,3,4,2],[0,2,0,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,3],[0,2,0,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,2],[0,2,0,2]],[[0,0,2,2],[2,0,3,2],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,0,3,3],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,0,3,2],[2,3,4,2],[0,2,1,0]],[[0,0,2,1],[2,0,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,3,1],[2,3,3,0],[1,0,3,1],[0,1,2,1]],[[1,3,2,1],[2,3,3,0],[1,0,3,1],[0,1,2,1]],[[2,2,2,1],[2,3,3,0],[1,0,3,1],[0,1,2,1]],[[0,0,2,2],[2,0,3,2],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,0,3,3],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,0,3,2],[2,3,4,2],[1,0,1,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,3],[1,0,1,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,2],[1,0,1,2]],[[0,0,2,2],[2,0,3,2],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,0,3,3],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,0,3,2],[2,3,4,2],[1,0,2,0]],[[0,0,2,1],[2,0,3,2],[2,3,3,3],[1,0,2,0]],[[0,0,2,1],[2,0,3,2],[2,3,3,2],[1,0,3,0]],[[0,0,2,2],[2,0,3,2],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,0,3,3],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,0,3,2],[2,3,4,2],[1,1,0,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,3],[1,1,0,1]],[[0,0,2,1],[2,0,3,2],[2,3,3,2],[1,1,0,2]],[[0,0,2,2],[2,0,3,2],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[2,0,3,3],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[2,0,3,2],[2,3,4,2],[1,1,1,0]],[[0,0,2,1],[2,0,3,2],[2,3,3,3],[1,1,1,0]],[[0,0,2,1],[2,1,1,2],[1,2,3,3],[1,2,2,1]],[[0,0,2,1],[2,1,1,2],[1,2,3,2],[2,2,2,1]],[[0,0,2,1],[2,1,1,2],[1,2,3,2],[1,3,2,1]],[[0,0,2,1],[2,1,1,2],[1,2,3,2],[1,2,3,1]],[[0,0,2,1],[2,1,1,2],[1,2,3,2],[1,2,2,2]],[[0,0,2,1],[2,1,1,2],[1,3,3,3],[1,1,2,1]],[[0,0,2,1],[2,1,1,2],[1,3,3,2],[1,1,3,1]],[[0,0,2,1],[2,1,1,2],[1,3,3,2],[1,1,2,2]],[[0,0,2,1],[2,1,1,2],[2,1,3,3],[1,2,2,1]],[[0,0,2,1],[2,1,1,2],[2,1,3,2],[2,2,2,1]],[[0,0,2,1],[2,1,1,2],[2,1,3,2],[1,3,2,1]],[[0,0,2,1],[2,1,1,2],[2,1,3,2],[1,2,3,1]],[[0,0,2,1],[2,1,1,2],[2,1,3,2],[1,2,2,2]],[[0,0,2,1],[2,1,1,2],[2,2,3,3],[0,2,2,1]],[[0,0,2,1],[2,1,1,2],[2,2,3,2],[0,3,2,1]],[[0,0,2,1],[2,1,1,2],[2,2,3,2],[0,2,3,1]],[[0,0,2,1],[2,1,1,2],[2,2,3,2],[0,2,2,2]],[[0,0,2,1],[2,1,1,2],[2,3,3,3],[0,1,2,1]],[[0,0,2,1],[2,1,1,2],[2,3,3,2],[0,1,3,1]],[[0,0,2,1],[2,1,1,2],[2,3,3,2],[0,1,2,2]],[[0,0,2,1],[2,1,1,2],[2,3,3,3],[1,0,2,1]],[[0,0,2,1],[2,1,1,2],[2,3,3,2],[1,0,3,1]],[[0,0,2,1],[2,1,1,2],[2,3,3,2],[1,0,2,2]],[[0,0,2,2],[2,1,2,2],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,3],[1,1,3,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,1,3,3],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,1,3,2],[1,2,3,1]],[[0,0,2,1],[2,1,2,2],[1,1,3,2],[1,2,2,2]],[[0,0,2,2],[2,1,2,2],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,3],[1,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,2,2,3],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,2,2,2],[2,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,2,2,2],[1,3,2,1]],[[0,0,2,1],[2,1,2,2],[1,2,2,2],[1,2,3,1]],[[0,0,2,1],[2,1,2,2],[1,2,2,2],[1,2,2,2]],[[0,0,2,1],[2,1,2,2],[1,2,4,1],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,2,3,1],[2,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,2,3,1],[1,3,2,1]],[[0,0,2,1],[2,1,2,2],[1,2,3,1],[1,2,3,1]],[[0,0,2,1],[2,1,2,2],[1,2,3,1],[1,2,2,2]],[[0,0,2,2],[2,1,2,2],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,1,2,3],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,1,2,2],[1,2,4,2],[1,2,1,1]],[[0,0,2,1],[2,1,2,2],[1,2,3,3],[1,2,1,1]],[[0,0,2,1],[2,1,2,2],[1,2,3,2],[1,2,1,2]],[[0,0,2,2],[2,1,2,2],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,1,2,3],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,1,2,2],[1,2,4,2],[1,2,2,0]],[[0,0,2,1],[2,1,2,2],[1,2,3,3],[1,2,2,0]],[[0,0,2,1],[2,1,2,2],[1,2,3,2],[2,2,2,0]],[[0,0,2,1],[2,1,2,2],[1,2,3,2],[1,3,2,0]],[[0,0,2,1],[2,1,2,2],[1,2,3,2],[1,2,3,0]],[[0,0,2,2],[2,1,2,2],[1,3,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,3],[1,3,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,4,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,1,3],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,1,2],[2,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,1,2],[1,3,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,1,2],[1,2,3,1]],[[0,0,2,1],[2,1,2,2],[1,3,1,2],[1,2,2,2]],[[0,0,2,1],[2,1,2,2],[1,4,2,1],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,2,1],[2,2,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,2,1],[1,3,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,2,1],[1,2,3,1]],[[0,0,2,1],[2,1,2,2],[1,3,2,1],[1,2,2,2]],[[0,0,2,2],[2,1,2,2],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[2,1,2,3],[1,3,2,2],[1,1,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,2,3],[1,1,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,2,2],[1,1,3,1]],[[0,0,2,1],[2,1,2,2],[1,3,2,2],[1,1,2,2]],[[0,0,2,1],[2,1,2,2],[1,4,2,2],[1,2,2,0]],[[0,0,2,1],[2,1,2,2],[1,3,2,2],[2,2,2,0]],[[0,0,2,1],[2,1,2,2],[1,3,2,2],[1,3,2,0]],[[0,0,2,1],[2,1,2,2],[1,3,2,2],[1,2,3,0]],[[0,0,2,1],[2,1,2,2],[1,4,3,1],[1,1,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,4,1],[1,1,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,1],[1,1,3,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,1],[1,1,2,2]],[[0,0,2,1],[2,1,2,2],[1,4,3,1],[1,2,1,1]],[[0,0,2,1],[2,1,2,2],[1,3,4,1],[1,2,1,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,1],[2,2,1,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,1],[1,3,1,1]],[[0,0,2,2],[2,1,2,2],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[2,1,2,3],[1,3,3,2],[1,0,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,4,2],[1,0,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,3],[1,0,2,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,2],[1,0,2,2]],[[0,0,2,2],[2,1,2,2],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[2,1,2,3],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[2,1,2,2],[1,4,3,2],[1,1,1,1]],[[0,0,2,1],[2,1,2,2],[1,3,4,2],[1,1,1,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,3],[1,1,1,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,2],[1,1,1,2]],[[0,0,2,2],[2,1,2,2],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[2,1,2,3],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[2,1,2,2],[1,4,3,2],[1,1,2,0]],[[0,0,2,1],[2,1,2,2],[1,3,4,2],[1,1,2,0]],[[0,0,2,1],[2,1,2,2],[1,3,3,3],[1,1,2,0]],[[0,0,2,1],[2,1,2,2],[1,3,3,2],[1,1,3,0]],[[0,0,2,2],[2,1,2,2],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,1,2,3],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,1,2,2],[1,4,3,2],[1,2,0,1]],[[0,0,2,1],[2,1,2,2],[1,3,4,2],[1,2,0,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,3],[1,2,0,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,2],[2,2,0,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,2],[1,3,0,1]],[[0,0,2,1],[2,1,2,2],[1,3,3,2],[1,2,0,2]],[[0,0,2,2],[2,1,2,2],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,1,2,3],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,1,2,2],[1,4,3,2],[1,2,1,0]],[[0,0,2,1],[2,1,2,2],[1,3,4,2],[1,2,1,0]],[[0,0,2,1],[2,1,2,2],[1,3,3,3],[1,2,1,0]],[[0,0,2,1],[2,1,2,2],[1,3,3,2],[2,2,1,0]],[[0,0,2,1],[2,1,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,4,3,0],[0,3,3,1],[1,1,0,0]],[[0,0,2,2],[2,1,2,2],[2,0,3,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,3],[2,0,3,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,0,3,3],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,0,3,2],[1,2,3,1]],[[0,0,2,1],[2,1,2,2],[2,0,3,2],[1,2,2,2]],[[0,0,2,2],[2,1,2,2],[2,1,2,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,3],[2,1,2,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[3,1,2,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,1,2,3],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,1,2,2],[2,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,1,2,2],[1,3,2,1]],[[0,0,2,1],[2,1,2,2],[2,1,2,2],[1,2,3,1]],[[0,0,2,1],[2,1,2,2],[2,1,2,2],[1,2,2,2]],[[0,0,2,1],[2,1,2,2],[3,1,3,1],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,1,4,1],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,1,3,1],[2,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,1,3,1],[1,3,2,1]],[[0,0,2,1],[2,1,2,2],[2,1,3,1],[1,2,3,1]],[[0,0,2,1],[2,1,2,2],[2,1,3,1],[1,2,2,2]],[[0,0,2,2],[2,1,2,2],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[2,1,2,3],[2,1,3,2],[0,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,1,3,3],[0,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,1,3,2],[0,2,3,1]],[[0,0,2,1],[2,1,2,2],[2,1,3,2],[0,2,2,2]],[[0,0,2,2],[2,1,2,2],[2,1,3,2],[1,2,1,1]],[[0,0,2,1],[2,1,2,3],[2,1,3,2],[1,2,1,1]],[[0,0,2,1],[2,1,2,2],[2,1,4,2],[1,2,1,1]],[[0,0,2,1],[2,1,2,2],[2,1,3,3],[1,2,1,1]],[[0,0,2,1],[2,1,2,2],[2,1,3,2],[1,2,1,2]],[[0,0,2,2],[2,1,2,2],[2,1,3,2],[1,2,2,0]],[[0,0,2,1],[2,1,2,3],[2,1,3,2],[1,2,2,0]],[[0,0,2,1],[2,1,2,2],[3,1,3,2],[1,2,2,0]],[[0,0,2,1],[2,1,2,2],[2,1,4,2],[1,2,2,0]],[[0,0,2,1],[2,1,2,2],[2,1,3,3],[1,2,2,0]],[[0,0,2,1],[2,1,2,2],[2,1,3,2],[2,2,2,0]],[[0,0,2,1],[2,1,2,2],[2,1,3,2],[1,3,2,0]],[[0,0,2,1],[2,1,2,2],[2,1,3,2],[1,2,3,0]],[[0,0,2,2],[2,1,2,2],[2,2,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,3],[2,2,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[3,2,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,1,3],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,1,2],[2,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,1,2],[1,3,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,1,2],[1,2,3,1]],[[0,0,2,1],[2,1,2,2],[2,2,1,2],[1,2,2,2]],[[0,0,2,1],[2,1,2,2],[3,2,2,1],[1,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,2,1],[2,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,2,1],[1,3,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,2,1],[1,2,3,1]],[[0,0,2,1],[2,1,2,2],[2,2,2,1],[1,2,2,2]],[[0,0,2,2],[2,1,2,2],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[2,1,2,3],[2,2,2,2],[0,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,2,3],[0,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,2,2],[0,3,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,2,2],[0,2,3,1]],[[0,0,2,1],[2,1,2,2],[2,2,2,2],[0,2,2,2]],[[0,0,2,1],[2,1,2,2],[3,2,2,2],[1,2,2,0]],[[0,0,2,1],[2,1,2,2],[2,2,2,2],[2,2,2,0]],[[0,0,2,1],[2,1,2,2],[2,2,2,2],[1,3,2,0]],[[0,0,2,1],[2,1,2,2],[2,2,2,2],[1,2,3,0]],[[0,0,2,1],[2,1,2,2],[2,2,4,1],[0,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,3,1],[0,3,2,1]],[[0,0,2,1],[2,1,2,2],[2,2,3,1],[0,2,3,1]],[[0,0,2,1],[2,1,2,2],[2,2,3,1],[0,2,2,2]],[[0,0,2,1],[2,1,2,2],[3,2,3,1],[1,2,1,1]],[[0,0,2,1],[2,1,2,2],[2,2,3,1],[2,2,1,1]],[[0,0,2,1],[2,1,2,2],[2,2,3,1],[1,3,1,1]],[[0,0,2,2],[2,1,2,2],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[2,1,2,3],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[2,1,2,2],[2,2,4,2],[0,2,1,1]],[[0,0,2,1],[2,1,2,2],[2,2,3,3],[0,2,1,1]],[[0,0,2,1],[2,1,2,2],[2,2,3,2],[0,2,1,2]],[[0,0,2,2],[2,1,2,2],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[2,1,2,3],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[2,1,2,2],[2,2,4,2],[0,2,2,0]],[[0,0,2,1],[2,1,2,2],[2,2,3,3],[0,2,2,0]],[[0,0,2,1],[2,1,2,2],[2,2,3,2],[0,3,2,0]],[[0,0,2,1],[2,1,2,2],[2,2,3,2],[0,2,3,0]],[[0,0,2,1],[2,1,2,2],[3,2,3,2],[1,2,0,1]],[[0,0,2,1],[2,1,2,2],[2,2,3,2],[2,2,0,1]],[[0,0,2,1],[2,1,2,2],[2,2,3,2],[1,3,0,1]],[[0,0,2,1],[2,1,2,2],[3,2,3,2],[1,2,1,0]],[[0,0,2,1],[2,1,2,2],[2,2,3,2],[2,2,1,0]],[[0,0,2,1],[2,1,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,3,1],[2,3,3,0],[0,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,3,0],[0,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,3,0],[0,3,3,1],[1,1,0,0]],[[0,0,2,2],[2,1,2,2],[2,3,1,2],[0,2,2,1]],[[0,0,2,1],[2,1,2,3],[2,3,1,2],[0,2,2,1]],[[0,0,2,1],[2,1,2,2],[3,3,1,2],[0,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,4,1,2],[0,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,1,3],[0,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,1,2],[0,3,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,1,2],[0,2,3,1]],[[0,0,2,1],[2,1,2,2],[2,3,1,2],[0,2,2,2]],[[0,0,2,1],[2,1,2,2],[3,3,1,2],[1,1,2,1]],[[0,0,2,1],[2,1,2,2],[2,4,1,2],[1,1,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,1,2],[2,1,2,1]],[[0,0,2,1],[2,1,2,2],[3,3,2,1],[0,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,4,2,1],[0,2,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,2,1],[0,3,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,2,1],[0,2,3,1]],[[0,0,2,1],[2,1,2,2],[2,3,2,1],[0,2,2,2]],[[0,0,2,1],[2,1,2,2],[3,3,2,1],[1,1,2,1]],[[0,0,2,1],[2,1,2,2],[2,4,2,1],[1,1,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,2,1],[2,1,2,1]],[[0,0,2,2],[2,1,2,2],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[2,1,2,3],[2,3,2,2],[0,1,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,2,3],[0,1,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,2,2],[0,1,3,1]],[[0,0,2,1],[2,1,2,2],[2,3,2,2],[0,1,2,2]],[[0,0,2,1],[2,1,2,2],[3,3,2,2],[0,2,2,0]],[[0,0,2,1],[2,1,2,2],[2,4,2,2],[0,2,2,0]],[[0,0,2,1],[2,1,2,2],[2,3,2,2],[0,3,2,0]],[[0,0,2,1],[2,1,2,2],[2,3,2,2],[0,2,3,0]],[[0,0,2,2],[2,1,2,2],[2,3,2,2],[1,0,2,1]],[[0,0,2,1],[2,1,2,3],[2,3,2,2],[1,0,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,2,3],[1,0,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,2,2],[1,0,3,1]],[[0,0,2,1],[2,1,2,2],[2,3,2,2],[1,0,2,2]],[[0,0,2,1],[2,1,2,2],[3,3,2,2],[1,1,2,0]],[[0,0,2,1],[2,1,2,2],[2,4,2,2],[1,1,2,0]],[[0,0,2,1],[2,1,2,2],[2,3,2,2],[2,1,2,0]],[[0,0,2,1],[2,1,2,2],[3,3,3,1],[0,1,2,1]],[[0,0,2,1],[2,1,2,2],[2,4,3,1],[0,1,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,4,1],[0,1,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,1],[0,1,3,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,1],[0,1,2,2]],[[0,0,2,1],[2,1,2,2],[3,3,3,1],[0,2,1,1]],[[0,0,2,1],[2,1,2,2],[2,4,3,1],[0,2,1,1]],[[0,0,2,1],[2,1,2,2],[2,3,4,1],[0,2,1,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,1],[0,3,1,1]],[[0,0,2,1],[2,1,2,2],[3,3,3,1],[1,0,2,1]],[[0,0,2,1],[2,1,2,2],[2,4,3,1],[1,0,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,4,1],[1,0,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,1],[2,0,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,1],[1,0,3,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,1],[1,0,2,2]],[[0,0,2,1],[2,1,2,2],[3,3,3,1],[1,1,1,1]],[[0,0,2,1],[2,1,2,2],[2,4,3,1],[1,1,1,1]],[[0,0,2,1],[2,1,2,2],[2,3,4,1],[1,1,1,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[2,4,3,0],[0,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,3,3,0],[0,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,3,0],[0,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,3,0],[0,3,3,1],[0,2,0,0]],[[0,0,2,2],[2,1,2,2],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,1,2,3],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,4,2],[0,0,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,3],[0,0,2,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[0,0,2,2]],[[0,0,2,2],[2,1,2,2],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,1,2,3],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,1,2,2],[3,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,1,2,2],[2,4,3,2],[0,1,1,1]],[[0,0,2,1],[2,1,2,2],[2,3,4,2],[0,1,1,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,3],[0,1,1,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[0,1,1,2]],[[0,0,2,2],[2,1,2,2],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,1,2,3],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,1,2,2],[3,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,1,2,2],[2,4,3,2],[0,1,2,0]],[[0,0,2,1],[2,1,2,2],[2,3,4,2],[0,1,2,0]],[[0,0,2,1],[2,1,2,2],[2,3,3,3],[0,1,2,0]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[0,1,3,0]],[[0,0,2,2],[2,1,2,2],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,1,2,3],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,1,2,2],[3,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,1,2,2],[2,4,3,2],[0,2,0,1]],[[0,0,2,1],[2,1,2,2],[2,3,4,2],[0,2,0,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,3],[0,2,0,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[0,3,0,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[0,2,0,2]],[[0,0,2,2],[2,1,2,2],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,1,2,3],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,1,2,2],[3,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,1,2,2],[2,4,3,2],[0,2,1,0]],[[0,0,2,1],[2,1,2,2],[2,3,4,2],[0,2,1,0]],[[0,0,2,1],[2,1,2,2],[2,3,3,3],[0,2,1,0]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[0,3,1,0]],[[0,0,2,2],[2,1,2,2],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,1,2,3],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,1,2,2],[3,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,1,2,2],[2,4,3,2],[1,0,1,1]],[[0,0,2,1],[2,1,2,2],[2,3,4,2],[1,0,1,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,3],[1,0,1,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[2,0,1,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[1,0,1,2]],[[0,0,2,2],[2,1,2,2],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,1,2,3],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,1,2,2],[3,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,1,2,2],[2,4,3,2],[1,0,2,0]],[[0,0,2,1],[2,1,2,2],[2,3,4,2],[1,0,2,0]],[[0,0,2,1],[2,1,2,2],[2,3,3,3],[1,0,2,0]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[2,0,2,0]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[1,0,3,0]],[[0,0,2,2],[2,1,2,2],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,1,2,3],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,1,2,2],[3,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,1,2,2],[2,4,3,2],[1,1,0,1]],[[0,0,2,1],[2,1,2,2],[2,3,4,2],[1,1,0,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,3],[1,1,0,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[2,1,0,1]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[1,1,0,2]],[[0,0,2,2],[2,1,2,2],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[2,1,2,3],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[2,1,2,2],[3,3,3,2],[1,1,1,0]],[[0,0,2,1],[2,1,2,2],[2,4,3,2],[1,1,1,0]],[[0,0,2,1],[2,1,2,2],[2,3,4,2],[1,1,1,0]],[[0,0,2,1],[2,1,2,2],[2,3,3,3],[1,1,1,0]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,4,3,0],[0,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,3,3,0],[0,3,3,1],[0,0,2,0]],[[1,3,2,1],[2,3,3,0],[0,3,3,1],[0,0,2,0]],[[2,2,2,1],[2,3,3,0],[0,3,3,1],[0,0,2,0]],[[1,2,2,1],[2,4,3,0],[0,3,3,1],[0,0,1,1]],[[0,0,2,1],[2,1,2,2],[3,3,3,2],[1,2,0,0]],[[0,0,2,1],[2,1,2,2],[2,4,3,2],[1,2,0,0]],[[0,0,2,1],[2,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,3,1],[2,3,3,0],[0,3,3,1],[0,0,1,1]],[[1,3,2,1],[2,3,3,0],[0,3,3,1],[0,0,1,1]],[[2,2,2,1],[2,3,3,0],[0,3,3,1],[0,0,1,1]],[[1,2,2,1],[2,4,3,0],[0,3,3,0],[1,2,0,0]],[[1,2,3,1],[2,3,3,0],[0,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,3,3,0],[0,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,3,3,0],[0,3,3,0],[1,2,0,0]],[[0,0,2,1],[2,1,3,0],[1,2,4,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,0],[1,2,3,2],[2,2,2,1]],[[0,0,2,1],[2,1,3,0],[1,2,3,2],[1,3,2,1]],[[0,0,2,1],[2,1,3,0],[1,2,3,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,0],[1,2,3,2],[1,2,2,2]],[[0,0,2,1],[2,1,3,0],[1,3,4,2],[1,1,2,1]],[[0,0,2,1],[2,1,3,0],[1,3,3,2],[1,1,3,1]],[[0,0,2,1],[2,1,3,0],[1,3,3,2],[1,1,2,2]],[[0,0,2,1],[2,1,3,0],[2,1,4,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,0],[2,1,3,2],[2,2,2,1]],[[0,0,2,1],[2,1,3,0],[2,1,3,2],[1,3,2,1]],[[0,0,2,1],[2,1,3,0],[2,1,3,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,0],[2,1,3,2],[1,2,2,2]],[[0,0,2,1],[2,1,3,0],[2,2,4,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,0],[2,2,3,2],[0,3,2,1]],[[0,0,2,1],[2,1,3,0],[2,2,3,2],[0,2,3,1]],[[0,0,2,1],[2,1,3,0],[2,2,3,2],[0,2,2,2]],[[0,0,2,1],[2,1,3,0],[2,3,4,2],[0,1,2,1]],[[0,0,2,1],[2,1,3,0],[2,3,3,2],[0,1,3,1]],[[0,0,2,1],[2,1,3,0],[2,3,3,2],[0,1,2,2]],[[0,0,2,1],[2,1,3,0],[2,3,4,2],[1,0,2,1]],[[0,0,2,1],[2,1,3,0],[2,3,3,2],[1,0,3,1]],[[0,0,2,1],[2,1,3,0],[2,3,3,2],[1,0,2,2]],[[1,2,2,1],[2,4,3,0],[0,3,3,0],[1,1,1,0]],[[1,2,3,1],[2,3,3,0],[0,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,3,0],[0,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,3,0],[0,3,3,0],[1,1,1,0]],[[0,0,2,1],[2,1,3,1],[1,1,3,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[1,1,3,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,1],[1,1,3,2],[1,2,2,2]],[[0,0,2,1],[2,1,3,1],[1,2,2,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[1,2,2,2],[2,2,2,1]],[[0,0,2,1],[2,1,3,1],[1,2,2,2],[1,3,2,1]],[[0,0,2,1],[2,1,3,1],[1,2,2,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,1],[1,2,2,2],[1,2,2,2]],[[0,0,2,1],[2,1,4,1],[1,2,3,1],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[1,2,4,1],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[1,2,3,1],[2,2,2,1]],[[0,0,2,1],[2,1,3,1],[1,2,3,1],[1,3,2,1]],[[0,0,2,1],[2,1,3,1],[1,2,3,1],[1,2,3,1]],[[0,0,2,1],[2,1,3,1],[1,2,3,1],[1,2,2,2]],[[0,0,2,1],[2,1,4,1],[1,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,1,3,1],[1,2,4,2],[1,2,1,1]],[[0,0,2,1],[2,1,3,1],[1,2,3,3],[1,2,1,1]],[[0,0,2,1],[2,1,3,1],[1,2,3,2],[1,2,1,2]],[[0,0,2,1],[2,1,4,1],[1,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,1],[1,2,4,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,1],[1,2,3,3],[1,2,2,0]],[[0,0,2,1],[2,1,3,1],[1,2,3,2],[2,2,2,0]],[[0,0,2,1],[2,1,3,1],[1,2,3,2],[1,3,2,0]],[[0,0,2,1],[2,1,3,1],[1,2,3,2],[1,2,3,0]],[[0,0,2,1],[2,1,3,1],[1,4,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,1,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,1,2],[2,2,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,1,2],[1,3,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,1,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,1],[1,3,1,2],[1,2,2,2]],[[0,0,2,1],[2,1,3,1],[1,4,2,1],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,2,1],[2,2,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,2,1],[1,3,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,2,1],[1,2,3,1]],[[0,0,2,1],[2,1,3,1],[1,3,2,1],[1,2,2,2]],[[0,0,2,1],[2,1,3,1],[1,3,2,3],[1,1,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,2,2],[1,1,3,1]],[[0,0,2,1],[2,1,3,1],[1,3,2,2],[1,1,2,2]],[[0,0,2,1],[2,1,3,1],[1,4,2,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,1],[1,3,2,2],[2,2,2,0]],[[0,0,2,1],[2,1,3,1],[1,3,2,2],[1,3,2,0]],[[0,0,2,1],[2,1,3,1],[1,3,2,2],[1,2,3,0]],[[0,0,2,1],[2,1,4,1],[1,3,3,1],[1,1,2,1]],[[0,0,2,1],[2,1,3,1],[1,4,3,1],[1,1,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,4,1],[1,1,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,1],[1,1,3,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,1],[1,1,2,2]],[[0,0,2,1],[2,1,4,1],[1,3,3,1],[1,2,1,1]],[[0,0,2,1],[2,1,3,1],[1,4,3,1],[1,2,1,1]],[[0,0,2,1],[2,1,3,1],[1,3,4,1],[1,2,1,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,1],[2,2,1,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,1],[1,3,1,1]],[[0,0,2,1],[2,1,3,1],[1,3,4,2],[1,0,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,3],[1,0,2,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,2],[1,0,2,2]],[[0,0,2,1],[2,1,4,1],[1,3,3,2],[1,1,1,1]],[[0,0,2,1],[2,1,3,1],[1,4,3,2],[1,1,1,1]],[[0,0,2,1],[2,1,3,1],[1,3,4,2],[1,1,1,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,3],[1,1,1,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,2],[1,1,1,2]],[[0,0,2,1],[2,1,4,1],[1,3,3,2],[1,1,2,0]],[[0,0,2,1],[2,1,3,1],[1,4,3,2],[1,1,2,0]],[[0,0,2,1],[2,1,3,1],[1,3,4,2],[1,1,2,0]],[[0,0,2,1],[2,1,3,1],[1,3,3,3],[1,1,2,0]],[[0,0,2,1],[2,1,3,1],[1,3,3,2],[1,1,3,0]],[[0,0,2,1],[2,1,4,1],[1,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,1,3,1],[1,4,3,2],[1,2,0,1]],[[0,0,2,1],[2,1,3,1],[1,3,4,2],[1,2,0,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,3],[1,2,0,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,2],[2,2,0,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,2],[1,3,0,1]],[[0,0,2,1],[2,1,3,1],[1,3,3,2],[1,2,0,2]],[[0,0,2,1],[2,1,4,1],[1,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,1,3,1],[1,4,3,2],[1,2,1,0]],[[0,0,2,1],[2,1,3,1],[1,3,4,2],[1,2,1,0]],[[0,0,2,1],[2,1,3,1],[1,3,3,3],[1,2,1,0]],[[0,0,2,1],[2,1,3,1],[1,3,3,2],[2,2,1,0]],[[0,0,2,1],[2,1,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,4,3,0],[0,3,3,0],[1,0,2,0]],[[1,2,3,1],[2,3,3,0],[0,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,3,3,0],[0,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,3,0],[0,3,3,0],[1,0,2,0]],[[0,0,2,1],[2,1,3,1],[2,0,3,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,0,3,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,1],[2,0,3,2],[1,2,2,2]],[[0,0,2,1],[2,1,3,1],[3,1,2,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,1,2,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,1,2,2],[2,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,1,2,2],[1,3,2,1]],[[0,0,2,1],[2,1,3,1],[2,1,2,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,1],[2,1,2,2],[1,2,2,2]],[[0,0,2,1],[2,1,4,1],[2,1,3,1],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[3,1,3,1],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,1,4,1],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,1,3,1],[2,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,1,3,1],[1,3,2,1]],[[0,0,2,1],[2,1,3,1],[2,1,3,1],[1,2,3,1]],[[0,0,2,1],[2,1,3,1],[2,1,3,1],[1,2,2,2]],[[0,0,2,1],[2,1,3,1],[2,1,3,3],[0,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,1,3,2],[0,2,3,1]],[[0,0,2,1],[2,1,3,1],[2,1,3,2],[0,2,2,2]],[[0,0,2,1],[2,1,4,1],[2,1,3,2],[1,2,1,1]],[[0,0,2,1],[2,1,3,1],[2,1,4,2],[1,2,1,1]],[[0,0,2,1],[2,1,3,1],[2,1,3,3],[1,2,1,1]],[[0,0,2,1],[2,1,3,1],[2,1,3,2],[1,2,1,2]],[[0,0,2,1],[2,1,4,1],[2,1,3,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,1],[3,1,3,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,1],[2,1,4,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,1],[2,1,3,3],[1,2,2,0]],[[0,0,2,1],[2,1,3,1],[2,1,3,2],[2,2,2,0]],[[0,0,2,1],[2,1,3,1],[2,1,3,2],[1,3,2,0]],[[0,0,2,1],[2,1,3,1],[2,1,3,2],[1,2,3,0]],[[0,0,2,1],[2,1,3,1],[3,2,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,1,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,1,2],[2,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,1,2],[1,3,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,1,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,1],[2,2,1,2],[1,2,2,2]],[[0,0,2,1],[2,1,3,1],[3,2,2,1],[1,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,2,1],[2,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,2,1],[1,3,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,2,1],[1,2,3,1]],[[0,0,2,1],[2,1,3,1],[2,2,2,1],[1,2,2,2]],[[0,0,2,1],[2,1,3,1],[2,2,2,3],[0,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,2,2],[0,3,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,2,2],[0,2,3,1]],[[0,0,2,1],[2,1,3,1],[2,2,2,2],[0,2,2,2]],[[0,0,2,1],[2,1,3,1],[3,2,2,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,1],[2,2,2,2],[2,2,2,0]],[[0,0,2,1],[2,1,3,1],[2,2,2,2],[1,3,2,0]],[[0,0,2,1],[2,1,3,1],[2,2,2,2],[1,2,3,0]],[[0,0,2,1],[2,1,4,1],[2,2,3,1],[0,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,4,1],[0,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,3,1],[0,3,2,1]],[[0,0,2,1],[2,1,3,1],[2,2,3,1],[0,2,3,1]],[[0,0,2,1],[2,1,3,1],[2,2,3,1],[0,2,2,2]],[[0,0,2,1],[2,1,3,1],[3,2,3,1],[1,2,1,1]],[[0,0,2,1],[2,1,3,1],[2,2,3,1],[2,2,1,1]],[[0,0,2,1],[2,1,3,1],[2,2,3,1],[1,3,1,1]],[[0,0,2,1],[2,1,4,1],[2,2,3,2],[0,2,1,1]],[[0,0,2,1],[2,1,3,1],[2,2,4,2],[0,2,1,1]],[[0,0,2,1],[2,1,3,1],[2,2,3,3],[0,2,1,1]],[[0,0,2,1],[2,1,3,1],[2,2,3,2],[0,2,1,2]],[[0,0,2,1],[2,1,4,1],[2,2,3,2],[0,2,2,0]],[[0,0,2,1],[2,1,3,1],[2,2,4,2],[0,2,2,0]],[[0,0,2,1],[2,1,3,1],[2,2,3,3],[0,2,2,0]],[[0,0,2,1],[2,1,3,1],[2,2,3,2],[0,3,2,0]],[[0,0,2,1],[2,1,3,1],[2,2,3,2],[0,2,3,0]],[[0,0,2,1],[2,1,3,1],[3,2,3,2],[1,2,0,1]],[[0,0,2,1],[2,1,3,1],[2,2,3,2],[2,2,0,1]],[[0,0,2,1],[2,1,3,1],[2,2,3,2],[1,3,0,1]],[[0,0,2,1],[2,1,3,1],[3,2,3,2],[1,2,1,0]],[[0,0,2,1],[2,1,3,1],[2,2,3,2],[2,2,1,0]],[[0,0,2,1],[2,1,3,1],[2,2,3,2],[1,3,1,0]],[[0,0,2,1],[2,1,3,1],[3,3,1,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,4,1,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,1,3],[0,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,1,2],[0,3,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,1,2],[0,2,3,1]],[[0,0,2,1],[2,1,3,1],[2,3,1,2],[0,2,2,2]],[[0,0,2,1],[2,1,3,1],[3,3,1,2],[1,1,2,1]],[[0,0,2,1],[2,1,3,1],[2,4,1,2],[1,1,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,1,2],[2,1,2,1]],[[0,0,2,1],[2,1,3,1],[3,3,2,1],[0,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,4,2,1],[0,2,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,2,1],[0,3,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,2,1],[0,2,3,1]],[[0,0,2,1],[2,1,3,1],[2,3,2,1],[0,2,2,2]],[[0,0,2,1],[2,1,3,1],[3,3,2,1],[1,1,2,1]],[[0,0,2,1],[2,1,3,1],[2,4,2,1],[1,1,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,2,1],[2,1,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,2,3],[0,1,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,2,2],[0,1,3,1]],[[0,0,2,1],[2,1,3,1],[2,3,2,2],[0,1,2,2]],[[0,0,2,1],[2,1,3,1],[3,3,2,2],[0,2,2,0]],[[0,0,2,1],[2,1,3,1],[2,4,2,2],[0,2,2,0]],[[0,0,2,1],[2,1,3,1],[2,3,2,2],[0,3,2,0]],[[0,0,2,1],[2,1,3,1],[2,3,2,2],[0,2,3,0]],[[0,0,2,1],[2,1,3,1],[2,3,2,3],[1,0,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,2,2],[1,0,3,1]],[[0,0,2,1],[2,1,3,1],[2,3,2,2],[1,0,2,2]],[[0,0,2,1],[2,1,3,1],[3,3,2,2],[1,1,2,0]],[[0,0,2,1],[2,1,3,1],[2,4,2,2],[1,1,2,0]],[[0,0,2,1],[2,1,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,4,3,0],[0,3,3,0],[0,2,1,0]],[[1,2,3,1],[2,3,3,0],[0,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[0,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,3,0],[0,3,3,0],[0,2,1,0]],[[0,0,2,1],[2,1,4,1],[2,3,3,1],[0,1,2,1]],[[0,0,2,1],[2,1,3,1],[3,3,3,1],[0,1,2,1]],[[0,0,2,1],[2,1,3,1],[2,4,3,1],[0,1,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,4,1],[0,1,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,1],[0,1,3,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,1],[0,1,2,2]],[[0,0,2,1],[2,1,4,1],[2,3,3,1],[0,2,1,1]],[[0,0,2,1],[2,1,3,1],[3,3,3,1],[0,2,1,1]],[[0,0,2,1],[2,1,3,1],[2,4,3,1],[0,2,1,1]],[[0,0,2,1],[2,1,3,1],[2,3,4,1],[0,2,1,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,1],[0,3,1,1]],[[0,0,2,1],[2,1,4,1],[2,3,3,1],[1,0,2,1]],[[0,0,2,1],[2,1,3,1],[3,3,3,1],[1,0,2,1]],[[0,0,2,1],[2,1,3,1],[2,4,3,1],[1,0,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,4,1],[1,0,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,1],[2,0,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,1],[1,0,3,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,1],[1,0,2,2]],[[0,0,2,1],[2,1,4,1],[2,3,3,1],[1,1,1,1]],[[0,0,2,1],[2,1,3,1],[3,3,3,1],[1,1,1,1]],[[0,0,2,1],[2,1,3,1],[2,4,3,1],[1,1,1,1]],[[0,0,2,1],[2,1,3,1],[2,3,4,1],[1,1,1,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[2,4,3,0],[0,3,3,0],[0,1,2,0]],[[1,2,3,1],[2,3,3,0],[0,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,3,3,0],[0,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,3,0],[0,3,3,0],[0,1,2,0]],[[1,2,2,1],[2,4,3,0],[0,3,3,0],[0,0,2,1]],[[1,2,3,1],[2,3,3,0],[0,3,3,0],[0,0,2,1]],[[1,3,2,1],[2,3,3,0],[0,3,3,0],[0,0,2,1]],[[0,0,2,1],[2,1,4,1],[2,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,4,2],[0,0,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,3],[0,0,2,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[0,0,2,2]],[[0,0,2,1],[2,1,4,1],[2,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,1,3,1],[3,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,1,3,1],[2,4,3,2],[0,1,1,1]],[[0,0,2,1],[2,1,3,1],[2,3,4,2],[0,1,1,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,3],[0,1,1,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[0,1,1,2]],[[0,0,2,1],[2,1,4,1],[2,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,1,3,1],[3,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,1,3,1],[2,4,3,2],[0,1,2,0]],[[0,0,2,1],[2,1,3,1],[2,3,4,2],[0,1,2,0]],[[0,0,2,1],[2,1,3,1],[2,3,3,3],[0,1,2,0]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[0,1,3,0]],[[0,0,2,1],[2,1,4,1],[2,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,1,3,1],[3,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,1,3,1],[2,4,3,2],[0,2,0,1]],[[0,0,2,1],[2,1,3,1],[2,3,4,2],[0,2,0,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,3],[0,2,0,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[0,3,0,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[0,2,0,2]],[[0,0,2,1],[2,1,4,1],[2,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,1,3,1],[3,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,1,3,1],[2,4,3,2],[0,2,1,0]],[[0,0,2,1],[2,1,3,1],[2,3,4,2],[0,2,1,0]],[[0,0,2,1],[2,1,3,1],[2,3,3,3],[0,2,1,0]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[0,3,1,0]],[[2,2,2,1],[2,3,3,0],[0,3,3,0],[0,0,2,1]],[[0,0,2,1],[2,1,4,1],[2,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,1,3,1],[3,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,1,3,1],[2,4,3,2],[1,0,1,1]],[[0,0,2,1],[2,1,3,1],[2,3,4,2],[1,0,1,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,3],[1,0,1,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[2,0,1,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[1,0,1,2]],[[0,0,2,1],[2,1,4,1],[2,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,1,3,1],[3,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,1,3,1],[2,4,3,2],[1,0,2,0]],[[0,0,2,1],[2,1,3,1],[2,3,4,2],[1,0,2,0]],[[0,0,2,1],[2,1,3,1],[2,3,3,3],[1,0,2,0]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[2,0,2,0]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[1,0,3,0]],[[0,0,2,1],[2,1,4,1],[2,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,1,3,1],[3,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,1,3,1],[2,4,3,2],[1,1,0,1]],[[0,0,2,1],[2,1,3,1],[2,3,4,2],[1,1,0,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,3],[1,1,0,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[2,1,0,1]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[1,1,0,2]],[[0,0,2,1],[2,1,4,1],[2,3,3,2],[1,1,1,0]],[[0,0,2,1],[2,1,3,1],[3,3,3,2],[1,1,1,0]],[[0,0,2,1],[2,1,3,1],[2,4,3,2],[1,1,1,0]],[[0,0,2,1],[2,1,3,1],[2,3,4,2],[1,1,1,0]],[[0,0,2,1],[2,1,3,1],[2,3,3,3],[1,1,1,0]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[2,1,1,0]],[[0,0,2,1],[2,1,3,1],[3,3,3,2],[1,2,0,0]],[[0,0,2,1],[2,1,3,1],[2,4,3,2],[1,2,0,0]],[[0,0,2,1],[2,1,3,1],[2,3,3,2],[2,2,0,0]],[[0,0,2,2],[2,1,3,2],[0,1,3,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,3],[0,1,3,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[0,1,3,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[0,1,3,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,2],[0,1,3,2],[1,2,2,2]],[[0,0,2,2],[2,1,3,2],[0,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,3],[0,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[0,2,2,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[0,2,2,2],[1,3,2,1]],[[0,0,2,1],[2,1,3,2],[0,2,2,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,2],[0,2,2,2],[1,2,2,2]],[[0,0,2,1],[2,1,3,2],[0,2,4,1],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[0,2,3,1],[1,3,2,1]],[[0,0,2,1],[2,1,3,2],[0,2,3,1],[1,2,3,1]],[[0,0,2,1],[2,1,3,2],[0,2,3,1],[1,2,2,2]],[[0,0,2,2],[2,1,3,2],[0,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,1,3,3],[0,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[0,2,4,2],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[0,2,3,3],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[0,2,3,2],[1,2,1,2]],[[0,0,2,2],[2,1,3,2],[0,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,3],[0,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[0,2,4,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[0,2,3,3],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[0,2,3,2],[1,3,2,0]],[[0,0,2,1],[2,1,3,2],[0,2,3,2],[1,2,3,0]],[[0,0,2,2],[2,1,3,2],[0,3,2,2],[1,1,2,1]],[[0,0,2,1],[2,1,3,3],[0,3,2,2],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[0,3,2,3],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[0,3,2,2],[1,1,3,1]],[[0,0,2,1],[2,1,3,2],[0,3,2,2],[1,1,2,2]],[[0,0,2,1],[2,1,3,2],[0,3,4,1],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[0,3,3,1],[1,1,3,1]],[[0,0,2,1],[2,1,3,2],[0,3,3,1],[1,1,2,2]],[[0,0,2,2],[2,1,3,2],[0,3,3,2],[1,0,2,1]],[[0,0,2,1],[2,1,3,3],[0,3,3,2],[1,0,2,1]],[[0,0,2,1],[2,1,3,2],[0,3,4,2],[1,0,2,1]],[[0,0,2,1],[2,1,3,2],[0,3,3,3],[1,0,2,1]],[[0,0,2,1],[2,1,3,2],[0,3,3,2],[1,0,2,2]],[[0,0,2,2],[2,1,3,2],[0,3,3,2],[1,1,1,1]],[[0,0,2,1],[2,1,3,3],[0,3,3,2],[1,1,1,1]],[[0,0,2,1],[2,1,3,2],[0,3,4,2],[1,1,1,1]],[[0,0,2,1],[2,1,3,2],[0,3,3,3],[1,1,1,1]],[[0,0,2,1],[2,1,3,2],[0,3,3,2],[1,1,1,2]],[[0,0,2,2],[2,1,3,2],[0,3,3,2],[1,1,2,0]],[[0,0,2,1],[2,1,3,3],[0,3,3,2],[1,1,2,0]],[[0,0,2,1],[2,1,3,2],[0,3,4,2],[1,1,2,0]],[[0,0,2,1],[2,1,3,2],[0,3,3,3],[1,1,2,0]],[[0,0,2,1],[2,1,3,2],[0,3,3,2],[1,1,3,0]],[[0,0,2,2],[2,1,3,2],[0,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,1,3,3],[0,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,1,3,2],[0,3,4,2],[1,2,0,1]],[[0,0,2,1],[2,1,3,2],[0,3,3,3],[1,2,0,1]],[[0,0,2,1],[2,1,3,2],[0,3,3,2],[1,2,0,2]],[[0,0,2,2],[2,1,3,2],[0,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,1,3,3],[0,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,1,3,2],[0,3,4,2],[1,2,1,0]],[[0,0,2,1],[2,1,3,2],[0,3,3,3],[1,2,1,0]],[[0,0,2,2],[2,1,3,2],[1,1,3,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,3],[1,1,3,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,1,3,3],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,1,3,2],[0,2,3,1]],[[0,0,2,1],[2,1,3,2],[1,1,3,2],[0,2,2,2]],[[0,0,2,2],[2,1,3,2],[1,2,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,4,2],[1,2,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,3],[1,2,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,2,1,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,2,1,2],[2,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,2,1,2],[1,3,2,1]],[[0,0,2,1],[2,1,3,2],[1,2,1,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,2],[1,2,1,2],[1,2,2,2]],[[0,0,2,2],[2,1,3,2],[1,2,2,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,3],[1,2,2,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,2,2,3],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,2,2,2],[0,2,3,1]],[[0,0,2,1],[2,1,3,2],[1,2,2,2],[0,2,2,2]],[[0,0,2,2],[2,1,3,2],[1,2,2,2],[1,2,1,1]],[[0,0,2,1],[2,1,4,2],[1,2,2,2],[1,2,1,1]],[[0,0,2,1],[2,1,3,3],[1,2,2,2],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[1,2,2,3],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[1,2,2,2],[1,2,1,2]],[[0,0,2,2],[2,1,3,2],[1,2,2,2],[1,2,2,0]],[[0,0,2,1],[2,1,4,2],[1,2,2,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,3],[1,2,2,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[1,2,2,3],[1,2,2,0]],[[0,0,2,2],[2,1,3,2],[1,2,3,0],[1,2,2,1]],[[0,0,2,1],[2,1,4,2],[1,2,3,0],[1,2,2,1]],[[0,0,2,1],[2,1,3,3],[1,2,3,0],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,2,4,0],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,2,3,0],[2,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,2,3,0],[1,3,2,1]],[[0,0,2,1],[2,1,3,2],[1,2,3,0],[1,2,3,1]],[[0,0,2,1],[2,1,3,2],[1,2,3,0],[1,2,2,2]],[[0,0,2,1],[2,1,3,2],[1,2,4,1],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,2,3,1],[0,2,3,1]],[[0,0,2,1],[2,1,3,2],[1,2,3,1],[0,2,2,2]],[[0,0,2,2],[2,1,3,2],[1,2,3,1],[1,2,1,1]],[[0,0,2,1],[2,1,4,2],[1,2,3,1],[1,2,1,1]],[[0,0,2,1],[2,1,3,3],[1,2,3,1],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[1,2,4,1],[1,2,1,1]],[[0,0,2,2],[2,1,3,2],[1,2,3,1],[1,2,2,0]],[[0,0,2,1],[2,1,4,2],[1,2,3,1],[1,2,2,0]],[[0,0,2,1],[2,1,3,3],[1,2,3,1],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[1,2,4,1],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[1,2,3,1],[2,2,2,0]],[[0,0,2,1],[2,1,3,2],[1,2,3,1],[1,3,2,0]],[[0,0,2,1],[2,1,3,2],[1,2,3,1],[1,2,3,0]],[[0,0,2,2],[2,1,3,2],[1,2,3,2],[0,2,1,1]],[[0,0,2,1],[2,1,3,3],[1,2,3,2],[0,2,1,1]],[[0,0,2,1],[2,1,3,2],[1,2,4,2],[0,2,1,1]],[[0,0,2,1],[2,1,3,2],[1,2,3,3],[0,2,1,1]],[[0,0,2,1],[2,1,3,2],[1,2,3,2],[0,2,1,2]],[[0,0,2,2],[2,1,3,2],[1,2,3,2],[0,2,2,0]],[[0,0,2,1],[2,1,3,3],[1,2,3,2],[0,2,2,0]],[[0,0,2,1],[2,1,3,2],[1,2,4,2],[0,2,2,0]],[[0,0,2,1],[2,1,3,2],[1,2,3,3],[0,2,2,0]],[[0,0,2,1],[2,1,3,2],[1,2,3,2],[0,2,3,0]],[[0,0,2,2],[2,1,3,2],[1,3,0,2],[1,2,2,1]],[[0,0,2,1],[2,1,4,2],[1,3,0,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,3],[1,3,0,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,4,0,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,0,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,0,2],[2,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,0,2],[1,3,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,0,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,2],[1,3,0,2],[1,2,2,2]],[[0,0,2,2],[2,1,3,2],[1,3,1,2],[1,1,2,1]],[[0,0,2,1],[2,1,4,2],[1,3,1,2],[1,1,2,1]],[[0,0,2,1],[2,1,3,3],[1,3,1,2],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,1,3],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,1,2],[1,1,3,1]],[[0,0,2,1],[2,1,3,2],[1,3,1,2],[1,1,2,2]],[[0,0,2,1],[2,1,3,2],[1,4,2,0],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,2,0],[2,2,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,2,0],[1,3,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,2,0],[1,2,3,1]],[[0,0,2,1],[2,1,3,2],[1,3,2,0],[1,2,2,2]],[[0,0,2,1],[2,1,3,2],[1,4,2,1],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[1,3,2,1],[2,2,2,0]],[[0,0,2,1],[2,1,3,2],[1,3,2,1],[1,3,2,0]],[[0,0,2,1],[2,1,3,2],[1,3,2,1],[1,2,3,0]],[[0,0,2,2],[2,1,3,2],[1,3,2,2],[0,1,2,1]],[[0,0,2,1],[2,1,3,3],[1,3,2,2],[0,1,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,2,3],[0,1,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,2,2],[0,1,3,1]],[[0,0,2,1],[2,1,3,2],[1,3,2,2],[0,1,2,2]],[[0,0,2,2],[2,1,3,2],[1,3,2,2],[1,1,1,1]],[[0,0,2,1],[2,1,4,2],[1,3,2,2],[1,1,1,1]],[[0,0,2,1],[2,1,3,3],[1,3,2,2],[1,1,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,2,3],[1,1,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,2,2],[1,1,1,2]],[[0,0,2,2],[2,1,3,2],[1,3,2,2],[1,1,2,0]],[[0,0,2,1],[2,1,4,2],[1,3,2,2],[1,1,2,0]],[[0,0,2,1],[2,1,3,3],[1,3,2,2],[1,1,2,0]],[[0,0,2,1],[2,1,3,2],[1,3,2,3],[1,1,2,0]],[[0,0,2,2],[2,1,3,2],[1,3,2,2],[1,2,0,1]],[[0,0,2,1],[2,1,4,2],[1,3,2,2],[1,2,0,1]],[[0,0,2,1],[2,1,3,3],[1,3,2,2],[1,2,0,1]],[[0,0,2,1],[2,1,3,2],[1,3,2,3],[1,2,0,1]],[[0,0,2,1],[2,1,3,2],[1,3,2,2],[1,2,0,2]],[[0,0,2,2],[2,1,3,2],[1,3,2,2],[1,2,1,0]],[[0,0,2,1],[2,1,4,2],[1,3,2,2],[1,2,1,0]],[[0,0,2,1],[2,1,3,3],[1,3,2,2],[1,2,1,0]],[[0,0,2,1],[2,1,3,2],[1,3,2,3],[1,2,1,0]],[[0,0,2,2],[2,1,3,2],[1,3,3,0],[1,1,2,1]],[[0,0,2,1],[2,1,4,2],[1,3,3,0],[1,1,2,1]],[[0,0,2,1],[2,1,3,3],[1,3,3,0],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[1,4,3,0],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,4,0],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,0],[1,1,3,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,0],[1,1,2,2]],[[0,0,2,2],[2,1,3,2],[1,3,3,0],[1,2,1,1]],[[0,0,2,1],[2,1,4,2],[1,3,3,0],[1,2,1,1]],[[0,0,2,1],[2,1,3,3],[1,3,3,0],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[1,4,3,0],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,4,0],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,0],[2,2,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,0],[1,3,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,4,1],[0,1,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,1],[0,1,3,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,1],[0,1,2,2]],[[0,0,2,2],[2,1,3,2],[1,3,3,1],[1,1,1,1]],[[0,0,2,1],[2,1,4,2],[1,3,3,1],[1,1,1,1]],[[0,0,2,1],[2,1,3,3],[1,3,3,1],[1,1,1,1]],[[0,0,2,1],[2,1,3,2],[1,4,3,1],[1,1,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,4,1],[1,1,1,1]],[[0,0,2,2],[2,1,3,2],[1,3,3,1],[1,1,2,0]],[[0,0,2,1],[2,1,4,2],[1,3,3,1],[1,1,2,0]],[[0,0,2,1],[2,1,3,3],[1,3,3,1],[1,1,2,0]],[[0,0,2,1],[2,1,3,2],[1,4,3,1],[1,1,2,0]],[[0,0,2,1],[2,1,3,2],[1,3,4,1],[1,1,2,0]],[[0,0,2,1],[2,1,3,2],[1,3,3,1],[1,1,3,0]],[[0,0,2,2],[2,1,3,2],[1,3,3,1],[1,2,0,1]],[[0,0,2,1],[2,1,4,2],[1,3,3,1],[1,2,0,1]],[[0,0,2,1],[2,1,3,3],[1,3,3,1],[1,2,0,1]],[[0,0,2,1],[2,1,3,2],[1,4,3,1],[1,2,0,1]],[[0,0,2,1],[2,1,3,2],[1,3,4,1],[1,2,0,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,1],[2,2,0,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,1],[1,3,0,1]],[[0,0,2,2],[2,1,3,2],[1,3,3,1],[1,2,1,0]],[[0,0,2,1],[2,1,4,2],[1,3,3,1],[1,2,1,0]],[[0,0,2,1],[2,1,3,3],[1,3,3,1],[1,2,1,0]],[[0,0,2,1],[2,1,3,2],[1,4,3,1],[1,2,1,0]],[[0,0,2,1],[2,1,3,2],[1,3,4,1],[1,2,1,0]],[[0,0,2,1],[2,1,3,2],[1,3,3,1],[2,2,1,0]],[[0,0,2,1],[2,1,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,4,3,0],[0,3,2,1],[1,2,0,0]],[[1,2,3,1],[2,3,3,0],[0,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,3,0],[0,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,3,0],[0,3,2,1],[1,2,0,0]],[[0,0,2,2],[2,1,3,2],[1,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,1,3,3],[1,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,4,2],[0,0,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,3],[0,0,2,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,2],[0,0,2,2]],[[0,0,2,2],[2,1,3,2],[1,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,1,3,3],[1,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,4,2],[0,1,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,3],[0,1,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,2],[0,1,1,2]],[[0,0,2,2],[2,1,3,2],[1,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,1,3,3],[1,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,1,3,2],[1,3,4,2],[0,1,2,0]],[[0,0,2,1],[2,1,3,2],[1,3,3,3],[0,1,2,0]],[[0,0,2,1],[2,1,3,2],[1,3,3,2],[0,1,3,0]],[[0,0,2,2],[2,1,3,2],[1,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,1,3,3],[1,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,1,3,2],[1,3,4,2],[0,2,0,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,3],[0,2,0,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,2],[0,2,0,2]],[[0,0,2,2],[2,1,3,2],[1,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,1,3,3],[1,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,1,3,2],[1,3,4,2],[0,2,1,0]],[[0,0,2,1],[2,1,3,2],[1,3,3,3],[0,2,1,0]],[[0,0,2,2],[2,1,3,2],[1,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,1,3,3],[1,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,4,2],[1,0,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,3],[1,0,1,1]],[[0,0,2,1],[2,1,3,2],[1,3,3,2],[1,0,1,2]],[[0,0,2,2],[2,1,3,2],[1,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,1,3,3],[1,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,1,3,2],[1,3,4,2],[1,0,2,0]],[[0,0,2,1],[2,1,3,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,1],[2,4,3,0],[0,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,0],[0,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,0],[0,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,0],[0,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,4,3,0],[0,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,0],[0,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,0],[0,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,0],[0,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,4,3,0],[0,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,0],[0,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,0],[0,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,3,0],[0,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,4,3,0],[0,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,0],[0,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,0],[0,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,3,0],[0,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,4,3,0],[0,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,0],[0,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[0,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,0],[0,3,2,1],[0,2,1,0]],[[0,0,2,2],[2,1,3,2],[2,1,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,4,2],[2,1,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,3],[2,1,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[3,1,1,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,1,1,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,1,1,2],[2,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,1,1,2],[1,3,2,1]],[[0,0,2,1],[2,1,3,2],[2,1,1,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,2],[2,1,1,2],[1,2,2,2]],[[0,0,2,2],[2,1,3,2],[2,1,2,2],[1,2,1,1]],[[0,0,2,1],[2,1,4,2],[2,1,2,2],[1,2,1,1]],[[0,0,2,1],[2,1,3,3],[2,1,2,2],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[2,1,2,3],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[2,1,2,2],[1,2,1,2]],[[0,0,2,2],[2,1,3,2],[2,1,2,2],[1,2,2,0]],[[0,0,2,1],[2,1,4,2],[2,1,2,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,3],[2,1,2,2],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[2,1,2,3],[1,2,2,0]],[[0,0,2,2],[2,1,3,2],[2,1,3,0],[1,2,2,1]],[[0,0,2,1],[2,1,4,2],[2,1,3,0],[1,2,2,1]],[[0,0,2,1],[2,1,3,3],[2,1,3,0],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[3,1,3,0],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,1,4,0],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,1,3,0],[2,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,1,3,0],[1,3,2,1]],[[0,0,2,1],[2,1,3,2],[2,1,3,0],[1,2,3,1]],[[0,0,2,1],[2,1,3,2],[2,1,3,0],[1,2,2,2]],[[0,0,2,2],[2,1,3,2],[2,1,3,1],[1,2,1,1]],[[0,0,2,1],[2,1,4,2],[2,1,3,1],[1,2,1,1]],[[0,0,2,1],[2,1,3,3],[2,1,3,1],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[2,1,4,1],[1,2,1,1]],[[0,0,2,2],[2,1,3,2],[2,1,3,1],[1,2,2,0]],[[0,0,2,1],[2,1,4,2],[2,1,3,1],[1,2,2,0]],[[0,0,2,1],[2,1,3,3],[2,1,3,1],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[3,1,3,1],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[2,1,4,1],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[2,1,3,1],[2,2,2,0]],[[0,0,2,1],[2,1,3,2],[2,1,3,1],[1,3,2,0]],[[0,0,2,1],[2,1,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,4,3,0],[0,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,0],[0,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,0],[0,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,0],[0,3,2,1],[0,2,0,1]],[[0,0,2,2],[2,1,3,2],[2,2,0,2],[1,2,2,1]],[[0,0,2,1],[2,1,4,2],[2,2,0,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,3],[2,2,0,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[3,2,0,2],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,0,3],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,0,2],[2,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,0,2],[1,3,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,0,2],[1,2,3,1]],[[0,0,2,1],[2,1,3,2],[2,2,0,2],[1,2,2,2]],[[0,0,2,2],[2,1,3,2],[2,2,1,2],[0,2,2,1]],[[0,0,2,1],[2,1,4,2],[2,2,1,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,3],[2,2,1,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,1,3],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,1,2],[0,3,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,1,2],[0,2,3,1]],[[0,0,2,1],[2,1,3,2],[2,2,1,2],[0,2,2,2]],[[0,0,2,1],[2,1,3,2],[3,2,2,0],[1,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,2,0],[2,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,2,0],[1,3,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,2,0],[1,2,3,1]],[[0,0,2,1],[2,1,3,2],[2,2,2,0],[1,2,2,2]],[[0,0,2,1],[2,1,3,2],[3,2,2,1],[1,2,2,0]],[[0,0,2,1],[2,1,3,2],[2,2,2,1],[2,2,2,0]],[[0,0,2,1],[2,1,3,2],[2,2,2,1],[1,3,2,0]],[[0,0,2,1],[2,1,3,2],[2,2,2,1],[1,2,3,0]],[[0,0,2,2],[2,1,3,2],[2,2,2,2],[0,2,1,1]],[[0,0,2,1],[2,1,4,2],[2,2,2,2],[0,2,1,1]],[[0,0,2,1],[2,1,3,3],[2,2,2,2],[0,2,1,1]],[[0,0,2,1],[2,1,3,2],[2,2,2,3],[0,2,1,1]],[[0,0,2,1],[2,1,3,2],[2,2,2,2],[0,2,1,2]],[[0,0,2,2],[2,1,3,2],[2,2,2,2],[0,2,2,0]],[[0,0,2,1],[2,1,4,2],[2,2,2,2],[0,2,2,0]],[[0,0,2,1],[2,1,3,3],[2,2,2,2],[0,2,2,0]],[[0,0,2,1],[2,1,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,1],[2,4,3,0],[0,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,0],[0,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,3,0],[0,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,3,0],[0,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,4,3,0],[0,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,0],[0,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,3,3,0],[0,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,3,3,0],[0,3,2,1],[0,1,1,1]],[[0,0,2,2],[2,1,3,2],[2,2,3,0],[0,2,2,1]],[[0,0,2,1],[2,1,4,2],[2,2,3,0],[0,2,2,1]],[[0,0,2,1],[2,1,3,3],[2,2,3,0],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,4,0],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,3,0],[0,3,2,1]],[[0,0,2,1],[2,1,3,2],[2,2,3,0],[0,2,3,1]],[[0,0,2,1],[2,1,3,2],[2,2,3,0],[0,2,2,2]],[[0,0,2,1],[2,1,3,2],[3,2,3,0],[1,2,1,1]],[[0,0,2,1],[2,1,3,2],[2,2,3,0],[2,2,1,1]],[[0,0,2,1],[2,1,3,2],[2,2,3,0],[1,3,1,1]],[[0,0,2,2],[2,1,3,2],[2,2,3,1],[0,2,1,1]],[[0,0,2,1],[2,1,4,2],[2,2,3,1],[0,2,1,1]],[[0,0,2,1],[2,1,3,3],[2,2,3,1],[0,2,1,1]],[[0,0,2,1],[2,1,3,2],[2,2,4,1],[0,2,1,1]],[[0,0,2,2],[2,1,3,2],[2,2,3,1],[0,2,2,0]],[[0,0,2,1],[2,1,4,2],[2,2,3,1],[0,2,2,0]],[[0,0,2,1],[2,1,3,3],[2,2,3,1],[0,2,2,0]],[[0,0,2,1],[2,1,3,2],[2,2,4,1],[0,2,2,0]],[[0,0,2,1],[2,1,3,2],[2,2,3,1],[0,3,2,0]],[[0,0,2,1],[2,1,3,2],[2,2,3,1],[0,2,3,0]],[[0,0,2,1],[2,1,3,2],[3,2,3,1],[1,2,0,1]],[[0,0,2,1],[2,1,3,2],[2,2,3,1],[2,2,0,1]],[[0,0,2,1],[2,1,3,2],[2,2,3,1],[1,3,0,1]],[[0,0,2,1],[2,1,3,2],[3,2,3,1],[1,2,1,0]],[[0,0,2,1],[2,1,3,2],[2,2,3,1],[2,2,1,0]],[[0,0,2,1],[2,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,4,3,0],[0,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,3,3,0],[0,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,3,0],[0,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,3,3,0],[0,3,2,0],[1,2,0,1]],[[1,2,2,1],[2,4,3,0],[0,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,3,3,0],[0,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,0],[0,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,3,0],[0,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,4,3,0],[0,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,3,3,0],[0,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,3,0],[0,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,3,0],[0,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,4,3,0],[0,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,3,3,0],[0,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,0],[0,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,0],[0,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,4,3,0],[0,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,3,3,0],[0,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,3,0],[0,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,3,0],[0,3,2,0],[0,1,2,1]],[[0,0,2,2],[2,1,3,2],[2,3,0,2],[0,2,2,1]],[[0,0,2,1],[2,1,4,2],[2,3,0,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,3],[2,3,0,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[3,3,0,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,4,0,2],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,0,3],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,0,2],[0,3,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,0,2],[0,2,3,1]],[[0,0,2,1],[2,1,3,2],[2,3,0,2],[0,2,2,2]],[[0,0,2,1],[2,1,3,2],[3,3,0,2],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[2,4,0,2],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,0,2],[2,1,2,1]],[[0,0,2,2],[2,1,3,2],[2,3,1,2],[0,1,2,1]],[[0,0,2,1],[2,1,4,2],[2,3,1,2],[0,1,2,1]],[[0,0,2,1],[2,1,3,3],[2,3,1,2],[0,1,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,1,3],[0,1,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,1,2],[0,1,3,1]],[[0,0,2,1],[2,1,3,2],[2,3,1,2],[0,1,2,2]],[[0,0,2,2],[2,1,3,2],[2,3,1,2],[1,0,2,1]],[[0,0,2,1],[2,1,4,2],[2,3,1,2],[1,0,2,1]],[[0,0,2,1],[2,1,3,3],[2,3,1,2],[1,0,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,1,3],[1,0,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,1,2],[1,0,3,1]],[[0,0,2,1],[2,1,3,2],[2,3,1,2],[1,0,2,2]],[[0,0,2,1],[2,1,3,2],[3,3,2,0],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,4,2,0],[0,2,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,0],[0,3,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,0],[0,2,3,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,0],[0,2,2,2]],[[0,0,2,1],[2,1,3,2],[3,3,2,0],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[2,4,2,0],[1,1,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,0],[2,1,2,1]],[[0,0,2,1],[2,1,3,2],[3,3,2,1],[0,2,2,0]],[[0,0,2,1],[2,1,3,2],[2,4,2,1],[0,2,2,0]],[[0,0,2,1],[2,1,3,2],[2,3,2,1],[0,3,2,0]],[[0,0,2,1],[2,1,3,2],[2,3,2,1],[0,2,3,0]],[[0,0,2,1],[2,1,3,2],[3,3,2,1],[1,1,2,0]],[[0,0,2,1],[2,1,3,2],[2,4,2,1],[1,1,2,0]],[[0,0,2,1],[2,1,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,4,3,0],[0,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,3,3,0],[0,3,1,1],[1,1,2,0]],[[0,0,2,2],[2,1,3,2],[2,3,2,2],[0,0,2,1]],[[0,0,2,1],[2,1,4,2],[2,3,2,2],[0,0,2,1]],[[0,0,2,1],[2,1,3,3],[2,3,2,2],[0,0,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,3],[0,0,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,2],[0,0,2,2]],[[0,0,2,2],[2,1,3,2],[2,3,2,2],[0,1,1,1]],[[0,0,2,1],[2,1,4,2],[2,3,2,2],[0,1,1,1]],[[0,0,2,1],[2,1,3,3],[2,3,2,2],[0,1,1,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,3],[0,1,1,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,2],[0,1,1,2]],[[0,0,2,2],[2,1,3,2],[2,3,2,2],[0,1,2,0]],[[0,0,2,1],[2,1,4,2],[2,3,2,2],[0,1,2,0]],[[0,0,2,1],[2,1,3,3],[2,3,2,2],[0,1,2,0]],[[0,0,2,1],[2,1,3,2],[2,3,2,3],[0,1,2,0]],[[0,0,2,2],[2,1,3,2],[2,3,2,2],[0,2,0,1]],[[0,0,2,1],[2,1,4,2],[2,3,2,2],[0,2,0,1]],[[0,0,2,1],[2,1,3,3],[2,3,2,2],[0,2,0,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,3],[0,2,0,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,2],[0,2,0,2]],[[0,0,2,2],[2,1,3,2],[2,3,2,2],[0,2,1,0]],[[0,0,2,1],[2,1,4,2],[2,3,2,2],[0,2,1,0]],[[0,0,2,1],[2,1,3,3],[2,3,2,2],[0,2,1,0]],[[0,0,2,1],[2,1,3,2],[2,3,2,3],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[0,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,3,0],[0,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,4,3,0],[0,3,1,1],[0,2,2,0]],[[0,0,2,2],[2,1,3,2],[2,3,2,2],[1,0,1,1]],[[0,0,2,1],[2,1,4,2],[2,3,2,2],[1,0,1,1]],[[0,0,2,1],[2,1,3,3],[2,3,2,2],[1,0,1,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,3],[1,0,1,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,2],[1,0,1,2]],[[0,0,2,2],[2,1,3,2],[2,3,2,2],[1,0,2,0]],[[0,0,2,1],[2,1,4,2],[2,3,2,2],[1,0,2,0]],[[0,0,2,1],[2,1,3,3],[2,3,2,2],[1,0,2,0]],[[0,0,2,1],[2,1,3,2],[2,3,2,3],[1,0,2,0]],[[0,0,2,2],[2,1,3,2],[2,3,2,2],[1,1,0,1]],[[0,0,2,1],[2,1,4,2],[2,3,2,2],[1,1,0,1]],[[0,0,2,1],[2,1,3,3],[2,3,2,2],[1,1,0,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,3],[1,1,0,1]],[[0,0,2,1],[2,1,3,2],[2,3,2,2],[1,1,0,2]],[[0,0,2,2],[2,1,3,2],[2,3,2,2],[1,1,1,0]],[[0,0,2,1],[2,1,4,2],[2,3,2,2],[1,1,1,0]],[[0,0,2,1],[2,1,3,3],[2,3,2,2],[1,1,1,0]],[[0,0,2,1],[2,1,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,3,1],[2,3,3,0],[0,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,3,0],[0,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,3,0],[0,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,4,3,0],[0,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,3,3,0],[0,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,3,0],[0,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,3,0],[0,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,4,3,0],[0,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,3,3,0],[0,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,3,0],[0,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,3,0],[0,3,1,0],[0,2,2,1]],[[0,0,2,2],[2,1,3,2],[2,3,3,0],[0,1,2,1]],[[0,0,2,1],[2,1,4,2],[2,3,3,0],[0,1,2,1]],[[0,0,2,1],[2,1,3,3],[2,3,3,0],[0,1,2,1]],[[0,0,2,1],[2,1,3,2],[3,3,3,0],[0,1,2,1]],[[0,0,2,1],[2,1,3,2],[2,4,3,0],[0,1,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,4,0],[0,1,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,0],[0,1,3,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,0],[0,1,2,2]],[[0,0,2,2],[2,1,3,2],[2,3,3,0],[0,2,1,1]],[[0,0,2,1],[2,1,4,2],[2,3,3,0],[0,2,1,1]],[[0,0,2,1],[2,1,3,3],[2,3,3,0],[0,2,1,1]],[[0,0,2,1],[2,1,3,2],[3,3,3,0],[0,2,1,1]],[[0,0,2,1],[2,1,3,2],[2,4,3,0],[0,2,1,1]],[[0,0,2,1],[2,1,3,2],[2,3,4,0],[0,2,1,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,0],[0,3,1,1]],[[0,0,2,2],[2,1,3,2],[2,3,3,0],[1,0,2,1]],[[0,0,2,1],[2,1,4,2],[2,3,3,0],[1,0,2,1]],[[0,0,2,1],[2,1,3,3],[2,3,3,0],[1,0,2,1]],[[0,0,2,1],[2,1,3,2],[3,3,3,0],[1,0,2,1]],[[0,0,2,1],[2,1,3,2],[2,4,3,0],[1,0,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,4,0],[1,0,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,0],[2,0,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,0],[1,0,3,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,0],[1,0,2,2]],[[0,0,2,2],[2,1,3,2],[2,3,3,0],[1,1,1,1]],[[0,0,2,1],[2,1,4,2],[2,3,3,0],[1,1,1,1]],[[0,0,2,1],[2,1,3,3],[2,3,3,0],[1,1,1,1]],[[0,0,2,1],[2,1,3,2],[3,3,3,0],[1,1,1,1]],[[0,0,2,1],[2,1,3,2],[2,4,3,0],[1,1,1,1]],[[0,0,2,1],[2,1,3,2],[2,3,4,0],[1,1,1,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,0],[2,1,1,1]],[[0,0,2,1],[2,1,3,2],[3,3,3,0],[1,2,0,1]],[[0,0,2,1],[2,1,3,2],[2,4,3,0],[1,2,0,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,0],[2,2,0,1]],[[0,0,2,2],[2,1,3,2],[2,3,3,1],[0,0,2,1]],[[0,0,2,1],[2,1,4,2],[2,3,3,1],[0,0,2,1]],[[0,0,2,1],[2,1,3,3],[2,3,3,1],[0,0,2,1]],[[0,0,2,1],[2,1,3,2],[2,3,4,1],[0,0,2,1]],[[0,0,2,2],[2,1,3,2],[2,3,3,1],[0,1,1,1]],[[0,0,2,1],[2,1,4,2],[2,3,3,1],[0,1,1,1]],[[0,0,2,1],[2,1,3,3],[2,3,3,1],[0,1,1,1]],[[0,0,2,1],[2,1,3,2],[3,3,3,1],[0,1,1,1]],[[0,0,2,1],[2,1,3,2],[2,4,3,1],[0,1,1,1]],[[0,0,2,1],[2,1,3,2],[2,3,4,1],[0,1,1,1]],[[0,0,2,2],[2,1,3,2],[2,3,3,1],[0,1,2,0]],[[0,0,2,1],[2,1,4,2],[2,3,3,1],[0,1,2,0]],[[0,0,2,1],[2,1,3,3],[2,3,3,1],[0,1,2,0]],[[0,0,2,1],[2,1,3,2],[3,3,3,1],[0,1,2,0]],[[0,0,2,1],[2,1,3,2],[2,4,3,1],[0,1,2,0]],[[0,0,2,1],[2,1,3,2],[2,3,4,1],[0,1,2,0]],[[0,0,2,1],[2,1,3,2],[2,3,3,1],[0,1,3,0]],[[0,0,2,2],[2,1,3,2],[2,3,3,1],[0,2,0,1]],[[0,0,2,1],[2,1,4,2],[2,3,3,1],[0,2,0,1]],[[0,0,2,1],[2,1,3,3],[2,3,3,1],[0,2,0,1]],[[0,0,2,1],[2,1,3,2],[3,3,3,1],[0,2,0,1]],[[0,0,2,1],[2,1,3,2],[2,4,3,1],[0,2,0,1]],[[0,0,2,1],[2,1,3,2],[2,3,4,1],[0,2,0,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,1],[0,3,0,1]],[[0,0,2,2],[2,1,3,2],[2,3,3,1],[0,2,1,0]],[[0,0,2,1],[2,1,4,2],[2,3,3,1],[0,2,1,0]],[[0,0,2,1],[2,1,3,3],[2,3,3,1],[0,2,1,0]],[[0,0,2,1],[2,1,3,2],[3,3,3,1],[0,2,1,0]],[[0,0,2,1],[2,1,3,2],[2,4,3,1],[0,2,1,0]],[[0,0,2,1],[2,1,3,2],[2,3,4,1],[0,2,1,0]],[[0,0,2,1],[2,1,3,2],[2,3,3,1],[0,3,1,0]],[[0,0,2,2],[2,1,3,2],[2,3,3,1],[1,0,1,1]],[[0,0,2,1],[2,1,4,2],[2,3,3,1],[1,0,1,1]],[[0,0,2,1],[2,1,3,3],[2,3,3,1],[1,0,1,1]],[[0,0,2,1],[2,1,3,2],[3,3,3,1],[1,0,1,1]],[[0,0,2,1],[2,1,3,2],[2,4,3,1],[1,0,1,1]],[[0,0,2,1],[2,1,3,2],[2,3,4,1],[1,0,1,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,1],[2,0,1,1]],[[0,0,2,2],[2,1,3,2],[2,3,3,1],[1,0,2,0]],[[0,0,2,1],[2,1,4,2],[2,3,3,1],[1,0,2,0]],[[0,0,2,1],[2,1,3,3],[2,3,3,1],[1,0,2,0]],[[0,0,2,1],[2,1,3,2],[3,3,3,1],[1,0,2,0]],[[0,0,2,1],[2,1,3,2],[2,4,3,1],[1,0,2,0]],[[0,0,2,1],[2,1,3,2],[2,3,4,1],[1,0,2,0]],[[0,0,2,1],[2,1,3,2],[2,3,3,1],[2,0,2,0]],[[0,0,2,1],[2,1,3,2],[2,3,3,1],[1,0,3,0]],[[0,0,2,2],[2,1,3,2],[2,3,3,1],[1,1,0,1]],[[0,0,2,1],[2,1,4,2],[2,3,3,1],[1,1,0,1]],[[0,0,2,1],[2,1,3,3],[2,3,3,1],[1,1,0,1]],[[0,0,2,1],[2,1,3,2],[3,3,3,1],[1,1,0,1]],[[0,0,2,1],[2,1,3,2],[2,4,3,1],[1,1,0,1]],[[0,0,2,1],[2,1,3,2],[2,3,4,1],[1,1,0,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,1],[2,1,0,1]],[[0,0,2,2],[2,1,3,2],[2,3,3,1],[1,1,1,0]],[[0,0,2,1],[2,1,4,2],[2,3,3,1],[1,1,1,0]],[[0,0,2,1],[2,1,3,3],[2,3,3,1],[1,1,1,0]],[[0,0,2,1],[2,1,3,2],[3,3,3,1],[1,1,1,0]],[[0,0,2,1],[2,1,3,2],[2,4,3,1],[1,1,1,0]],[[0,0,2,1],[2,1,3,2],[2,3,4,1],[1,1,1,0]],[[0,0,2,1],[2,1,3,2],[2,3,3,1],[2,1,1,0]],[[0,0,2,1],[2,1,3,2],[3,3,3,1],[1,2,0,0]],[[0,0,2,1],[2,1,3,2],[2,4,3,1],[1,2,0,0]],[[0,0,2,1],[2,1,3,2],[2,3,3,1],[2,2,0,0]],[[0,0,2,2],[2,1,3,2],[2,3,3,2],[0,1,0,1]],[[0,0,2,1],[2,1,4,2],[2,3,3,2],[0,1,0,1]],[[0,0,2,1],[2,1,3,3],[2,3,3,2],[0,1,0,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,3,4,0],[0,2,3,2],[0,0,2,0]],[[1,2,2,2],[2,3,3,0],[0,2,3,2],[0,0,2,0]],[[1,2,3,1],[2,3,3,0],[0,2,3,2],[0,0,2,0]],[[1,3,2,1],[2,3,3,0],[0,2,3,2],[0,0,2,0]],[[2,2,2,1],[2,3,3,0],[0,2,3,2],[0,0,2,0]],[[1,2,2,1],[2,3,4,0],[0,2,3,2],[0,0,1,1]],[[1,2,2,2],[2,3,3,0],[0,2,3,2],[0,0,1,1]],[[1,2,3,1],[2,3,3,0],[0,2,3,2],[0,0,1,1]],[[1,3,2,1],[2,3,3,0],[0,2,3,2],[0,0,1,1]],[[2,2,2,1],[2,3,3,0],[0,2,3,2],[0,0,1,1]],[[0,0,2,2],[2,1,3,2],[2,3,3,2],[1,0,0,1]],[[0,0,2,1],[2,1,4,2],[2,3,3,2],[1,0,0,1]],[[0,0,2,1],[2,1,3,3],[2,3,3,2],[1,0,0,1]],[[0,0,2,1],[2,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,4,3,0],[0,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,3,0],[0,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,3,0],[0,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,3,0],[0,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,4,3,0],[0,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,3,3,0],[0,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,3,0],[0,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,3,0],[0,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,4,3,0],[0,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,3,0],[0,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,3,0],[0,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,3,0],[0,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,4,3,0],[0,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,3,3,0],[0,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,3,0],[0,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,3,0],[0,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,4,3,0],[0,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,3,0],[0,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[0,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,3,0],[0,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,4,3,0],[0,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,3,0],[0,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,3,0],[0,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,3,0],[0,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,4,3,0],[0,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,3,0],[0,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,3,0],[0,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,3,0],[0,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,4,3,0],[0,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,3,0],[0,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,3,0],[0,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,3,0],[0,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,4,3,0],[0,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,3,3,0],[0,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,3,0],[0,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,3,0],[0,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,4,3,0],[0,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,3,3,0],[0,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,3,0],[0,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,3,0],[0,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,4,3,0],[0,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,3,3,0],[0,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,3,0],[0,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,3,0],[0,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,4,3,0],[0,2,3,0],[0,1,2,1]],[[0,0,2,1],[2,2,1,2],[0,2,3,3],[1,2,2,1]],[[0,0,2,1],[2,2,1,2],[0,2,3,2],[1,3,2,1]],[[0,0,2,1],[2,2,1,2],[0,2,3,2],[1,2,3,1]],[[0,0,2,1],[2,2,1,2],[0,2,3,2],[1,2,2,2]],[[0,0,2,1],[2,2,1,2],[0,3,3,3],[1,1,2,1]],[[0,0,2,1],[2,2,1,2],[0,3,3,2],[1,1,3,1]],[[0,0,2,1],[2,2,1,2],[0,3,3,2],[1,1,2,2]],[[0,0,2,1],[2,2,1,2],[1,2,3,3],[0,2,2,1]],[[0,0,2,1],[2,2,1,2],[1,2,3,2],[0,2,3,1]],[[0,0,2,1],[2,2,1,2],[1,2,3,2],[0,2,2,2]],[[0,0,2,1],[2,2,1,2],[1,3,3,3],[0,1,2,1]],[[0,0,2,1],[2,2,1,2],[1,3,3,2],[0,1,3,1]],[[0,0,2,1],[2,2,1,2],[1,3,3,2],[0,1,2,2]],[[1,2,3,1],[2,3,3,0],[0,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,3,0],[0,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,3,0],[0,2,3,0],[0,1,2,1]],[[0,0,2,2],[2,2,2,2],[0,1,3,2],[1,2,2,1]],[[0,0,2,1],[2,2,2,3],[0,1,3,2],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,1,3,3],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,1,3,2],[1,2,3,1]],[[0,0,2,1],[2,2,2,2],[0,1,3,2],[1,2,2,2]],[[0,0,2,2],[2,2,2,2],[0,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,2,2,3],[0,2,2,2],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,2,2,3],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,2,2,2],[2,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,2,2,2],[1,3,2,1]],[[0,0,2,1],[2,2,2,2],[0,2,2,2],[1,2,3,1]],[[0,0,2,1],[2,2,2,2],[0,2,2,2],[1,2,2,2]],[[0,0,2,1],[2,2,2,2],[0,2,4,1],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,2,3,1],[2,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,2,3,1],[1,3,2,1]],[[0,0,2,1],[2,2,2,2],[0,2,3,1],[1,2,3,1]],[[0,0,2,1],[2,2,2,2],[0,2,3,1],[1,2,2,2]],[[0,0,2,2],[2,2,2,2],[0,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,2,2,3],[0,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,2,2,2],[0,2,4,2],[1,2,1,1]],[[0,0,2,1],[2,2,2,2],[0,2,3,3],[1,2,1,1]],[[0,0,2,1],[2,2,2,2],[0,2,3,2],[1,2,1,2]],[[0,0,2,2],[2,2,2,2],[0,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,2,2,3],[0,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,2,2,2],[0,2,4,2],[1,2,2,0]],[[0,0,2,1],[2,2,2,2],[0,2,3,3],[1,2,2,0]],[[0,0,2,1],[2,2,2,2],[0,2,3,2],[2,2,2,0]],[[0,0,2,1],[2,2,2,2],[0,2,3,2],[1,3,2,0]],[[0,0,2,1],[2,2,2,2],[0,2,3,2],[1,2,3,0]],[[0,0,2,2],[2,2,2,2],[0,3,1,2],[1,2,2,1]],[[0,0,2,1],[2,2,2,3],[0,3,1,2],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,4,1,2],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,1,3],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,1,2],[2,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,1,2],[1,3,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,1,2],[1,2,3,1]],[[0,0,2,1],[2,2,2,2],[0,3,1,2],[1,2,2,2]],[[0,0,2,1],[2,2,2,2],[0,4,2,1],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,2,1],[2,2,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,2,1],[1,3,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,2,1],[1,2,3,1]],[[0,0,2,1],[2,2,2,2],[0,3,2,1],[1,2,2,2]],[[0,0,2,2],[2,2,2,2],[0,3,2,2],[1,1,2,1]],[[0,0,2,1],[2,2,2,3],[0,3,2,2],[1,1,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,2,3],[1,1,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,2,2],[1,1,3,1]],[[0,0,2,1],[2,2,2,2],[0,3,2,2],[1,1,2,2]],[[0,0,2,1],[2,2,2,2],[0,4,2,2],[1,2,2,0]],[[0,0,2,1],[2,2,2,2],[0,3,2,2],[2,2,2,0]],[[0,0,2,1],[2,2,2,2],[0,3,2,2],[1,3,2,0]],[[0,0,2,1],[2,2,2,2],[0,3,2,2],[1,2,3,0]],[[0,0,2,1],[2,2,2,2],[0,4,3,1],[1,1,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,4,1],[1,1,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,1],[1,1,3,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,1],[1,1,2,2]],[[0,0,2,1],[2,2,2,2],[0,4,3,1],[1,2,1,1]],[[0,0,2,1],[2,2,2,2],[0,3,4,1],[1,2,1,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,1],[2,2,1,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,1],[1,3,1,1]],[[0,0,2,2],[2,2,2,2],[0,3,3,2],[1,0,2,1]],[[0,0,2,1],[2,2,2,3],[0,3,3,2],[1,0,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,4,2],[1,0,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,3],[1,0,2,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,2],[1,0,2,2]],[[0,0,2,2],[2,2,2,2],[0,3,3,2],[1,1,1,1]],[[0,0,2,1],[2,2,2,3],[0,3,3,2],[1,1,1,1]],[[0,0,2,1],[2,2,2,2],[0,4,3,2],[1,1,1,1]],[[0,0,2,1],[2,2,2,2],[0,3,4,2],[1,1,1,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,3],[1,1,1,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,2],[1,1,1,2]],[[0,0,2,2],[2,2,2,2],[0,3,3,2],[1,1,2,0]],[[0,0,2,1],[2,2,2,3],[0,3,3,2],[1,1,2,0]],[[0,0,2,1],[2,2,2,2],[0,4,3,2],[1,1,2,0]],[[0,0,2,1],[2,2,2,2],[0,3,4,2],[1,1,2,0]],[[0,0,2,1],[2,2,2,2],[0,3,3,3],[1,1,2,0]],[[0,0,2,1],[2,2,2,2],[0,3,3,2],[1,1,3,0]],[[0,0,2,2],[2,2,2,2],[0,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,2,2,3],[0,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,2,2,2],[0,4,3,2],[1,2,0,1]],[[0,0,2,1],[2,2,2,2],[0,3,4,2],[1,2,0,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,3],[1,2,0,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,2],[2,2,0,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,2],[1,3,0,1]],[[0,0,2,1],[2,2,2,2],[0,3,3,2],[1,2,0,2]],[[0,0,2,2],[2,2,2,2],[0,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,2,2,3],[0,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,2,2,2],[0,4,3,2],[1,2,1,0]],[[0,0,2,1],[2,2,2,2],[0,3,4,2],[1,2,1,0]],[[0,0,2,1],[2,2,2,2],[0,3,3,3],[1,2,1,0]],[[0,0,2,1],[2,2,2,2],[0,3,3,2],[2,2,1,0]],[[0,0,2,1],[2,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,4,0],[0,1,3,2],[1,1,1,0]],[[1,2,2,2],[2,3,3,0],[0,1,3,2],[1,1,1,0]],[[1,2,3,1],[2,3,3,0],[0,1,3,2],[1,1,1,0]],[[1,3,2,1],[2,3,3,0],[0,1,3,2],[1,1,1,0]],[[2,2,2,1],[2,3,3,0],[0,1,3,2],[1,1,1,0]],[[0,0,2,2],[2,2,2,2],[1,1,3,2],[0,2,2,1]],[[0,0,2,1],[2,2,2,3],[1,1,3,2],[0,2,2,1]],[[0,0,2,1],[2,2,2,2],[1,1,3,3],[0,2,2,1]],[[0,0,2,1],[2,2,2,2],[1,1,3,2],[0,2,3,1]],[[0,0,2,1],[2,2,2,2],[1,1,3,2],[0,2,2,2]],[[0,0,2,2],[2,2,2,2],[1,2,2,2],[0,2,2,1]],[[0,0,2,1],[2,2,2,3],[1,2,2,2],[0,2,2,1]],[[0,0,2,1],[2,2,2,2],[1,2,2,3],[0,2,2,1]],[[0,0,2,1],[2,2,2,2],[1,2,2,2],[0,3,2,1]],[[0,0,2,1],[2,2,2,2],[1,2,2,2],[0,2,3,1]],[[0,0,2,1],[2,2,2,2],[1,2,2,2],[0,2,2,2]],[[0,0,2,1],[2,2,2,2],[1,2,4,1],[0,2,2,1]],[[0,0,2,1],[2,2,2,2],[1,2,3,1],[0,3,2,1]],[[0,0,2,1],[2,2,2,2],[1,2,3,1],[0,2,3,1]],[[0,0,2,1],[2,2,2,2],[1,2,3,1],[0,2,2,2]],[[0,0,2,2],[2,2,2,2],[1,2,3,2],[0,2,1,1]],[[0,0,2,1],[2,2,2,3],[1,2,3,2],[0,2,1,1]],[[0,0,2,1],[2,2,2,2],[1,2,4,2],[0,2,1,1]],[[0,0,2,1],[2,2,2,2],[1,2,3,3],[0,2,1,1]],[[0,0,2,1],[2,2,2,2],[1,2,3,2],[0,2,1,2]],[[0,0,2,2],[2,2,2,2],[1,2,3,2],[0,2,2,0]],[[0,0,2,1],[2,2,2,3],[1,2,3,2],[0,2,2,0]],[[0,0,2,1],[2,2,2,2],[1,2,4,2],[0,2,2,0]],[[0,0,2,1],[2,2,2,2],[1,2,3,3],[0,2,2,0]],[[0,0,2,1],[2,2,2,2],[1,2,3,2],[0,3,2,0]],[[0,0,2,1],[2,2,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,3,4,0],[0,1,3,2],[1,1,0,1]],[[1,2,2,2],[2,3,3,0],[0,1,3,2],[1,1,0,1]],[[1,2,3,1],[2,3,3,0],[0,1,3,2],[1,1,0,1]],[[1,3,2,1],[2,3,3,0],[0,1,3,2],[1,1,0,1]],[[2,2,2,1],[2,3,3,0],[0,1,3,2],[1,1,0,1]],[[0,0,2,2],[2,2,2,2],[1,3,1,2],[0,2,2,1]],[[0,0,2,1],[2,2,2,3],[1,3,1,2],[0,2,2,1]],[[0,0,2,1],[2,2,2,2],[1,4,1,2],[0,2,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,1,3],[0,2,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,1,2],[0,3,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,1,2],[0,2,3,1]],[[0,0,2,1],[2,2,2,2],[1,3,1,2],[0,2,2,2]],[[0,0,2,1],[2,2,2,2],[1,4,2,1],[0,2,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,2,1],[0,3,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,2,1],[0,2,3,1]],[[0,0,2,1],[2,2,2,2],[1,3,2,1],[0,2,2,2]],[[0,0,2,2],[2,2,2,2],[1,3,2,2],[0,1,2,1]],[[0,0,2,1],[2,2,2,3],[1,3,2,2],[0,1,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,2,3],[0,1,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,2,2],[0,1,3,1]],[[0,0,2,1],[2,2,2,2],[1,3,2,2],[0,1,2,2]],[[0,0,2,1],[2,2,2,2],[1,4,2,2],[0,2,2,0]],[[0,0,2,1],[2,2,2,2],[1,3,2,2],[0,3,2,0]],[[0,0,2,1],[2,2,2,2],[1,3,2,2],[0,2,3,0]],[[0,0,2,2],[2,2,2,2],[1,3,2,2],[1,0,2,1]],[[0,0,2,1],[2,2,2,3],[1,3,2,2],[1,0,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,2,3],[1,0,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,2,2],[1,0,3,1]],[[0,0,2,1],[2,2,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,3,4,0],[0,1,3,2],[1,0,2,0]],[[1,2,2,2],[2,3,3,0],[0,1,3,2],[1,0,2,0]],[[1,2,3,1],[2,3,3,0],[0,1,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,3,0],[0,1,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,3,0],[0,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,3,4,0],[0,1,3,2],[1,0,1,1]],[[0,0,2,1],[2,2,2,2],[1,4,3,1],[0,1,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,4,1],[0,1,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,1],[0,1,3,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,1],[0,1,2,2]],[[0,0,2,1],[2,2,2,2],[1,4,3,1],[0,2,1,1]],[[0,0,2,1],[2,2,2,2],[1,3,4,1],[0,2,1,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,1],[0,3,1,1]],[[0,0,2,1],[2,2,2,2],[1,4,3,1],[1,0,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,4,1],[1,0,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,1],[1,0,3,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,2],[2,3,3,0],[0,1,3,2],[1,0,1,1]],[[1,2,3,1],[2,3,3,0],[0,1,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,3,0],[0,1,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,3,0],[0,1,3,2],[1,0,1,1]],[[0,0,2,2],[2,2,2,2],[1,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,2,2,3],[1,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,4,2],[0,0,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,3],[0,0,2,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,2],[0,0,2,2]],[[0,0,2,2],[2,2,2,2],[1,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,2,2,3],[1,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,2,2,2],[1,4,3,2],[0,1,1,1]],[[0,0,2,1],[2,2,2,2],[1,3,4,2],[0,1,1,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,3],[0,1,1,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,2],[0,1,1,2]],[[0,0,2,2],[2,2,2,2],[1,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,2,2,3],[1,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,2,2,2],[1,4,3,2],[0,1,2,0]],[[0,0,2,1],[2,2,2,2],[1,3,4,2],[0,1,2,0]],[[0,0,2,1],[2,2,2,2],[1,3,3,3],[0,1,2,0]],[[0,0,2,1],[2,2,2,2],[1,3,3,2],[0,1,3,0]],[[0,0,2,2],[2,2,2,2],[1,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,2,2,3],[1,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,2,2,2],[1,4,3,2],[0,2,0,1]],[[0,0,2,1],[2,2,2,2],[1,3,4,2],[0,2,0,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,3],[0,2,0,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,2],[0,3,0,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,2],[0,2,0,2]],[[0,0,2,2],[2,2,2,2],[1,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,2,2,3],[1,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,2,2,2],[1,4,3,2],[0,2,1,0]],[[0,0,2,1],[2,2,2,2],[1,3,4,2],[0,2,1,0]],[[0,0,2,1],[2,2,2,2],[1,3,3,3],[0,2,1,0]],[[0,0,2,1],[2,2,2,2],[1,3,3,2],[0,3,1,0]],[[0,0,2,2],[2,2,2,2],[1,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,2,2,3],[1,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,2,2,2],[1,4,3,2],[1,0,1,1]],[[0,0,2,1],[2,2,2,2],[1,3,4,2],[1,0,1,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,3],[1,0,1,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,2],[1,0,1,2]],[[0,0,2,2],[2,2,2,2],[1,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,2,2,3],[1,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,2,2,2],[1,4,3,2],[1,0,2,0]],[[0,0,2,1],[2,2,2,2],[1,3,4,2],[1,0,2,0]],[[0,0,2,1],[2,2,2,2],[1,3,3,3],[1,0,2,0]],[[0,0,2,1],[2,2,2,2],[1,3,3,2],[1,0,3,0]],[[0,0,2,2],[2,2,2,2],[1,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,2,2,3],[1,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,2,2,2],[1,4,3,2],[1,1,0,1]],[[0,0,2,1],[2,2,2,2],[1,3,4,2],[1,1,0,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,3],[1,1,0,1]],[[0,0,2,1],[2,2,2,2],[1,3,3,2],[1,1,0,2]],[[0,0,2,2],[2,2,2,2],[1,3,3,2],[1,1,1,0]],[[0,0,2,1],[2,2,2,3],[1,3,3,2],[1,1,1,0]],[[0,0,2,1],[2,2,2,2],[1,4,3,2],[1,1,1,0]],[[0,0,2,1],[2,2,2,2],[1,3,4,2],[1,1,1,0]],[[0,0,2,1],[2,2,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,3,4,0],[0,1,3,2],[0,2,1,0]],[[1,2,2,2],[2,3,3,0],[0,1,3,2],[0,2,1,0]],[[1,2,3,1],[2,3,3,0],[0,1,3,2],[0,2,1,0]],[[1,3,2,1],[2,3,3,0],[0,1,3,2],[0,2,1,0]],[[2,2,2,1],[2,3,3,0],[0,1,3,2],[0,2,1,0]],[[1,2,2,1],[2,3,4,0],[0,1,3,2],[0,2,0,1]],[[1,2,2,2],[2,3,3,0],[0,1,3,2],[0,2,0,1]],[[1,2,3,1],[2,3,3,0],[0,1,3,2],[0,2,0,1]],[[1,3,2,1],[2,3,3,0],[0,1,3,2],[0,2,0,1]],[[2,2,2,1],[2,3,3,0],[0,1,3,2],[0,2,0,1]],[[1,2,2,1],[2,3,4,0],[0,1,3,2],[0,1,2,0]],[[1,2,2,2],[2,3,3,0],[0,1,3,2],[0,1,2,0]],[[1,2,3,1],[2,3,3,0],[0,1,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,3,0],[0,1,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,3,0],[0,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,3,4,0],[0,1,3,2],[0,1,1,1]],[[1,2,2,2],[2,3,3,0],[0,1,3,2],[0,1,1,1]],[[1,2,3,1],[2,3,3,0],[0,1,3,2],[0,1,1,1]],[[1,3,2,1],[2,3,3,0],[0,1,3,2],[0,1,1,1]],[[0,0,2,2],[2,2,2,2],[2,0,2,2],[1,2,2,1]],[[0,0,2,1],[2,2,2,3],[2,0,2,2],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[3,0,2,2],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[2,0,2,3],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[2,0,2,2],[2,2,2,1]],[[0,0,2,1],[2,2,2,2],[2,0,2,2],[1,3,2,1]],[[0,0,2,1],[2,2,2,2],[2,0,2,2],[1,2,3,1]],[[0,0,2,1],[2,2,2,2],[2,0,2,2],[1,2,2,2]],[[0,0,2,1],[2,2,2,2],[3,0,3,1],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[2,0,4,1],[1,2,2,1]],[[0,0,2,1],[2,2,2,2],[2,0,3,1],[2,2,2,1]],[[0,0,2,1],[2,2,2,2],[2,0,3,1],[1,3,2,1]],[[0,0,2,1],[2,2,2,2],[2,0,3,1],[1,2,3,1]],[[0,0,2,1],[2,2,2,2],[2,0,3,1],[1,2,2,2]],[[0,0,2,2],[2,2,2,2],[2,0,3,2],[1,2,1,1]],[[0,0,2,1],[2,2,2,3],[2,0,3,2],[1,2,1,1]],[[0,0,2,1],[2,2,2,2],[2,0,4,2],[1,2,1,1]],[[0,0,2,1],[2,2,2,2],[2,0,3,3],[1,2,1,1]],[[0,0,2,1],[2,2,2,2],[2,0,3,2],[1,2,1,2]],[[0,0,2,2],[2,2,2,2],[2,0,3,2],[1,2,2,0]],[[0,0,2,1],[2,2,2,3],[2,0,3,2],[1,2,2,0]],[[0,0,2,1],[2,2,2,2],[3,0,3,2],[1,2,2,0]],[[0,0,2,1],[2,2,2,2],[2,0,4,2],[1,2,2,0]],[[0,0,2,1],[2,2,2,2],[2,0,3,3],[1,2,2,0]],[[0,0,2,1],[2,2,2,2],[2,0,3,2],[2,2,2,0]],[[0,0,2,1],[2,2,2,2],[2,0,3,2],[1,3,2,0]],[[0,0,2,1],[2,2,2,2],[2,0,3,2],[1,2,3,0]],[[2,2,2,1],[2,3,3,0],[0,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,3,4,0],[0,1,3,2],[0,0,2,1]],[[1,2,2,2],[2,3,3,0],[0,1,3,2],[0,0,2,1]],[[1,2,3,1],[2,3,3,0],[0,1,3,2],[0,0,2,1]],[[1,3,2,1],[2,3,3,0],[0,1,3,2],[0,0,2,1]],[[2,2,2,1],[2,3,3,0],[0,1,3,2],[0,0,2,1]],[[1,2,2,1],[2,3,4,0],[0,1,3,1],[1,0,2,1]],[[1,2,2,2],[2,3,3,0],[0,1,3,1],[1,0,2,1]],[[1,2,3,1],[2,3,3,0],[0,1,3,1],[1,0,2,1]],[[1,3,2,1],[2,3,3,0],[0,1,3,1],[1,0,2,1]],[[2,2,2,1],[2,3,3,0],[0,1,3,1],[1,0,2,1]],[[1,2,2,1],[2,4,3,0],[0,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,3,3,0],[0,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,3,3,0],[0,1,3,1],[0,2,2,0]],[[2,2,2,1],[2,3,3,0],[0,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,3,4,0],[0,1,3,1],[0,1,2,1]],[[1,2,2,2],[2,3,3,0],[0,1,3,1],[0,1,2,1]],[[1,2,3,1],[2,3,3,0],[0,1,3,1],[0,1,2,1]],[[1,3,2,1],[2,3,3,0],[0,1,3,1],[0,1,2,1]],[[2,2,2,1],[2,3,3,0],[0,1,3,1],[0,1,2,1]],[[1,2,2,1],[2,4,3,0],[0,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,3,3,0],[0,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,3,3,0],[0,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,3,3,0],[0,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,3,4,0],[0,0,3,2],[0,2,2,0]],[[1,2,2,2],[2,3,3,0],[0,0,3,2],[0,2,2,0]],[[1,2,3,1],[2,3,3,0],[0,0,3,2],[0,2,2,0]],[[1,3,2,1],[2,3,3,0],[0,0,3,2],[0,2,2,0]],[[2,2,2,1],[2,3,3,0],[0,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,3,4,0],[0,0,3,2],[0,2,1,1]],[[1,2,2,2],[2,3,3,0],[0,0,3,2],[0,2,1,1]],[[1,2,3,1],[2,3,3,0],[0,0,3,2],[0,2,1,1]],[[1,3,2,1],[2,3,3,0],[0,0,3,2],[0,2,1,1]],[[2,2,2,1],[2,3,3,0],[0,0,3,2],[0,2,1,1]],[[1,2,2,1],[2,3,4,0],[0,0,3,1],[0,2,2,1]],[[1,2,2,2],[2,3,3,0],[0,0,3,1],[0,2,2,1]],[[1,2,3,1],[2,3,3,0],[0,0,3,1],[0,2,2,1]],[[1,3,2,1],[2,3,3,0],[0,0,3,1],[0,2,2,1]],[[2,2,2,1],[2,3,3,0],[0,0,3,1],[0,2,2,1]],[[1,2,2,1],[2,3,2,2],[2,3,0,0],[2,2,0,0]],[[1,2,2,1],[2,3,2,2],[3,3,0,0],[1,2,0,0]],[[1,2,2,1],[3,3,2,2],[2,3,0,0],[1,2,0,0]],[[1,3,2,1],[2,3,2,2],[2,3,0,0],[1,2,0,0]],[[2,2,2,1],[2,3,2,2],[2,3,0,0],[1,2,0,0]],[[1,2,2,1],[2,3,2,2],[3,3,0,0],[1,1,1,0]],[[1,2,2,1],[3,3,2,2],[2,3,0,0],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[2,3,0,0],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[2,3,0,0],[1,1,1,0]],[[1,2,2,1],[2,3,2,2],[3,3,0,0],[1,1,0,1]],[[1,2,2,1],[3,3,2,2],[2,3,0,0],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[2,3,0,0],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[2,3,0,0],[1,1,0,1]],[[1,2,2,1],[3,3,2,2],[2,3,0,0],[0,2,1,0]],[[1,3,2,1],[2,3,2,2],[2,3,0,0],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[2,3,0,0],[0,2,1,0]],[[1,2,2,1],[3,3,2,2],[2,3,0,0],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[2,3,0,0],[0,2,0,1]],[[0,0,2,1],[2,2,3,0],[0,2,4,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,0],[0,2,3,2],[1,3,2,1]],[[0,0,2,1],[2,2,3,0],[0,2,3,2],[1,2,3,1]],[[0,0,2,1],[2,2,3,0],[0,2,3,2],[1,2,2,2]],[[0,0,2,1],[2,2,3,0],[0,3,4,2],[1,1,2,1]],[[0,0,2,1],[2,2,3,0],[0,3,3,2],[1,1,3,1]],[[0,0,2,1],[2,2,3,0],[0,3,3,2],[1,1,2,2]],[[0,0,2,1],[2,2,3,0],[1,2,4,2],[0,2,2,1]],[[0,0,2,1],[2,2,3,0],[1,2,3,2],[0,2,3,1]],[[0,0,2,1],[2,2,3,0],[1,2,3,2],[0,2,2,2]],[[0,0,2,1],[2,2,3,0],[1,3,4,2],[0,1,2,1]],[[0,0,2,1],[2,2,3,0],[1,3,3,2],[0,1,3,1]],[[0,0,2,1],[2,2,3,0],[1,3,3,2],[0,1,2,2]],[[2,2,2,1],[2,3,2,2],[2,3,0,0],[0,2,0,1]],[[1,2,2,1],[3,3,2,2],[2,2,3,0],[1,0,0,0]],[[1,2,2,2],[2,3,2,2],[2,2,3,0],[1,0,0,0]],[[1,2,3,1],[2,3,2,2],[2,2,3,0],[1,0,0,0]],[[1,3,2,1],[2,3,2,2],[2,2,3,0],[1,0,0,0]],[[2,2,2,1],[2,3,2,2],[2,2,3,0],[1,0,0,0]],[[0,0,2,1],[2,2,3,1],[0,1,3,3],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[0,1,3,2],[1,2,3,1]],[[0,0,2,1],[2,2,3,1],[0,1,3,2],[1,2,2,2]],[[0,0,2,1],[2,2,3,1],[0,2,2,3],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[0,2,2,2],[2,2,2,1]],[[0,0,2,1],[2,2,3,1],[0,2,2,2],[1,3,2,1]],[[0,0,2,1],[2,2,3,1],[0,2,2,2],[1,2,3,1]],[[0,0,2,1],[2,2,3,1],[0,2,2,2],[1,2,2,2]],[[0,0,2,1],[2,2,4,1],[0,2,3,1],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[0,2,4,1],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[0,2,3,1],[2,2,2,1]],[[0,0,2,1],[2,2,3,1],[0,2,3,1],[1,3,2,1]],[[0,0,2,1],[2,2,3,1],[0,2,3,1],[1,2,3,1]],[[0,0,2,1],[2,2,3,1],[0,2,3,1],[1,2,2,2]],[[0,0,2,1],[2,2,4,1],[0,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,2,3,1],[0,2,4,2],[1,2,1,1]],[[0,0,2,1],[2,2,3,1],[0,2,3,3],[1,2,1,1]],[[0,0,2,1],[2,2,3,1],[0,2,3,2],[1,2,1,2]],[[0,0,2,1],[2,2,4,1],[0,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,2,3,1],[0,2,4,2],[1,2,2,0]],[[0,0,2,1],[2,2,3,1],[0,2,3,3],[1,2,2,0]],[[0,0,2,1],[2,2,3,1],[0,2,3,2],[2,2,2,0]],[[0,0,2,1],[2,2,3,1],[0,2,3,2],[1,3,2,0]],[[0,0,2,1],[2,2,3,1],[0,2,3,2],[1,2,3,0]],[[0,0,2,1],[2,2,3,1],[0,4,1,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,1,3],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,1,2],[2,2,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,1,2],[1,3,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,1,2],[1,2,3,1]],[[0,0,2,1],[2,2,3,1],[0,3,1,2],[1,2,2,2]],[[0,0,2,1],[2,2,3,1],[0,4,2,1],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,2,1],[2,2,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,2,1],[1,3,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,2,1],[1,2,3,1]],[[0,0,2,1],[2,2,3,1],[0,3,2,1],[1,2,2,2]],[[0,0,2,1],[2,2,3,1],[0,3,2,3],[1,1,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,2,2],[1,1,3,1]],[[0,0,2,1],[2,2,3,1],[0,3,2,2],[1,1,2,2]],[[0,0,2,1],[2,2,3,1],[0,4,2,2],[1,2,2,0]],[[0,0,2,1],[2,2,3,1],[0,3,2,2],[2,2,2,0]],[[0,0,2,1],[2,2,3,1],[0,3,2,2],[1,3,2,0]],[[0,0,2,1],[2,2,3,1],[0,3,2,2],[1,2,3,0]],[[0,0,2,1],[2,2,4,1],[0,3,3,1],[1,1,2,1]],[[0,0,2,1],[2,2,3,1],[0,4,3,1],[1,1,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,4,1],[1,1,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,1],[1,1,3,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,1],[1,1,2,2]],[[0,0,2,1],[2,2,4,1],[0,3,3,1],[1,2,1,1]],[[0,0,2,1],[2,2,3,1],[0,4,3,1],[1,2,1,1]],[[0,0,2,1],[2,2,3,1],[0,3,4,1],[1,2,1,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,1],[2,2,1,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,1],[1,3,1,1]],[[0,0,2,1],[2,2,4,1],[0,3,3,2],[1,0,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,4,2],[1,0,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,3],[1,0,2,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,2],[1,0,2,2]],[[0,0,2,1],[2,2,4,1],[0,3,3,2],[1,1,1,1]],[[0,0,2,1],[2,2,3,1],[0,4,3,2],[1,1,1,1]],[[0,0,2,1],[2,2,3,1],[0,3,4,2],[1,1,1,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,3],[1,1,1,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,2],[1,1,1,2]],[[0,0,2,1],[2,2,4,1],[0,3,3,2],[1,1,2,0]],[[0,0,2,1],[2,2,3,1],[0,4,3,2],[1,1,2,0]],[[0,0,2,1],[2,2,3,1],[0,3,4,2],[1,1,2,0]],[[0,0,2,1],[2,2,3,1],[0,3,3,3],[1,1,2,0]],[[0,0,2,1],[2,2,3,1],[0,3,3,2],[1,1,3,0]],[[0,0,2,1],[2,2,4,1],[0,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,2,3,1],[0,4,3,2],[1,2,0,1]],[[0,0,2,1],[2,2,3,1],[0,3,4,2],[1,2,0,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,3],[1,2,0,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,2],[2,2,0,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,2],[1,3,0,1]],[[0,0,2,1],[2,2,3,1],[0,3,3,2],[1,2,0,2]],[[0,0,2,1],[2,2,4,1],[0,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,2,3,1],[0,4,3,2],[1,2,1,0]],[[0,0,2,1],[2,2,3,1],[0,3,4,2],[1,2,1,0]],[[0,0,2,1],[2,2,3,1],[0,3,3,3],[1,2,1,0]],[[0,0,2,1],[2,2,3,1],[0,3,3,2],[2,2,1,0]],[[0,0,2,1],[2,2,3,1],[0,3,3,2],[1,3,1,0]],[[0,0,2,1],[2,2,3,1],[1,1,3,3],[0,2,2,1]],[[0,0,2,1],[2,2,3,1],[1,1,3,2],[0,2,3,1]],[[0,0,2,1],[2,2,3,1],[1,1,3,2],[0,2,2,2]],[[0,0,2,1],[2,2,3,1],[1,2,2,3],[0,2,2,1]],[[0,0,2,1],[2,2,3,1],[1,2,2,2],[0,3,2,1]],[[0,0,2,1],[2,2,3,1],[1,2,2,2],[0,2,3,1]],[[0,0,2,1],[2,2,3,1],[1,2,2,2],[0,2,2,2]],[[0,0,2,1],[2,2,4,1],[1,2,3,1],[0,2,2,1]],[[0,0,2,1],[2,2,3,1],[1,2,4,1],[0,2,2,1]],[[0,0,2,1],[2,2,3,1],[1,2,3,1],[0,3,2,1]],[[0,0,2,1],[2,2,3,1],[1,2,3,1],[0,2,3,1]],[[0,0,2,1],[2,2,3,1],[1,2,3,1],[0,2,2,2]],[[0,0,2,1],[2,2,4,1],[1,2,3,2],[0,2,1,1]],[[0,0,2,1],[2,2,3,1],[1,2,4,2],[0,2,1,1]],[[0,0,2,1],[2,2,3,1],[1,2,3,3],[0,2,1,1]],[[0,0,2,1],[2,2,3,1],[1,2,3,2],[0,2,1,2]],[[0,0,2,1],[2,2,4,1],[1,2,3,2],[0,2,2,0]],[[0,0,2,1],[2,2,3,1],[1,2,4,2],[0,2,2,0]],[[0,0,2,1],[2,2,3,1],[1,2,3,3],[0,2,2,0]],[[0,0,2,1],[2,2,3,1],[1,2,3,2],[0,3,2,0]],[[0,0,2,1],[2,2,3,1],[1,2,3,2],[0,2,3,0]],[[0,0,2,1],[2,2,3,1],[1,4,1,2],[0,2,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,1,3],[0,2,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,1,2],[0,3,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,1,2],[0,2,3,1]],[[0,0,2,1],[2,2,3,1],[1,3,1,2],[0,2,2,2]],[[0,0,2,1],[2,2,3,1],[1,4,2,1],[0,2,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,2,1],[0,3,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,2,1],[0,2,3,1]],[[0,0,2,1],[2,2,3,1],[1,3,2,1],[0,2,2,2]],[[0,0,2,1],[2,2,3,1],[1,3,2,3],[0,1,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,2,2],[0,1,3,1]],[[0,0,2,1],[2,2,3,1],[1,3,2,2],[0,1,2,2]],[[0,0,2,1],[2,2,3,1],[1,4,2,2],[0,2,2,0]],[[0,0,2,1],[2,2,3,1],[1,3,2,2],[0,3,2,0]],[[0,0,2,1],[2,2,3,1],[1,3,2,2],[0,2,3,0]],[[0,0,2,1],[2,2,3,1],[1,3,2,3],[1,0,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,2,2],[1,0,3,1]],[[0,0,2,1],[2,2,3,1],[1,3,2,2],[1,0,2,2]],[[0,0,2,1],[2,2,4,1],[1,3,3,1],[0,1,2,1]],[[0,0,2,1],[2,2,3,1],[1,4,3,1],[0,1,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,4,1],[0,1,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,1],[0,1,3,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,1],[0,1,2,2]],[[0,0,2,1],[2,2,4,1],[1,3,3,1],[0,2,1,1]],[[0,0,2,1],[2,2,3,1],[1,4,3,1],[0,2,1,1]],[[0,0,2,1],[2,2,3,1],[1,3,4,1],[0,2,1,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,1],[0,3,1,1]],[[0,0,2,1],[2,2,4,1],[1,3,3,1],[1,0,2,1]],[[0,0,2,1],[2,2,3,1],[1,4,3,1],[1,0,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,4,1],[1,0,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,1],[1,0,3,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,1],[1,0,2,2]],[[0,0,2,1],[2,2,4,1],[1,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,4,2],[0,0,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,3],[0,0,2,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,2],[0,0,2,2]],[[0,0,2,1],[2,2,4,1],[1,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,2,3,1],[1,4,3,2],[0,1,1,1]],[[0,0,2,1],[2,2,3,1],[1,3,4,2],[0,1,1,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,3],[0,1,1,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,2],[0,1,1,2]],[[0,0,2,1],[2,2,4,1],[1,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,2,3,1],[1,4,3,2],[0,1,2,0]],[[0,0,2,1],[2,2,3,1],[1,3,4,2],[0,1,2,0]],[[0,0,2,1],[2,2,3,1],[1,3,3,3],[0,1,2,0]],[[0,0,2,1],[2,2,3,1],[1,3,3,2],[0,1,3,0]],[[0,0,2,1],[2,2,4,1],[1,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,2,3,1],[1,4,3,2],[0,2,0,1]],[[0,0,2,1],[2,2,3,1],[1,3,4,2],[0,2,0,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,3],[0,2,0,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,2],[0,3,0,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,2],[0,2,0,2]],[[0,0,2,1],[2,2,4,1],[1,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,2,3,1],[1,4,3,2],[0,2,1,0]],[[0,0,2,1],[2,2,3,1],[1,3,4,2],[0,2,1,0]],[[0,0,2,1],[2,2,3,1],[1,3,3,3],[0,2,1,0]],[[0,0,2,1],[2,2,3,1],[1,3,3,2],[0,3,1,0]],[[0,0,2,1],[2,2,4,1],[1,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,2,3,1],[1,4,3,2],[1,0,1,1]],[[0,0,2,1],[2,2,3,1],[1,3,4,2],[1,0,1,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,3],[1,0,1,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,2],[1,0,1,2]],[[0,0,2,1],[2,2,4,1],[1,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,2,3,1],[1,4,3,2],[1,0,2,0]],[[0,0,2,1],[2,2,3,1],[1,3,4,2],[1,0,2,0]],[[0,0,2,1],[2,2,3,1],[1,3,3,3],[1,0,2,0]],[[0,0,2,1],[2,2,3,1],[1,3,3,2],[1,0,3,0]],[[0,0,2,1],[2,2,4,1],[1,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,2,3,1],[1,4,3,2],[1,1,0,1]],[[0,0,2,1],[2,2,3,1],[1,3,4,2],[1,1,0,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,3],[1,1,0,1]],[[0,0,2,1],[2,2,3,1],[1,3,3,2],[1,1,0,2]],[[0,0,2,1],[2,2,4,1],[1,3,3,2],[1,1,1,0]],[[0,0,2,1],[2,2,3,1],[1,4,3,2],[1,1,1,0]],[[0,0,2,1],[2,2,3,1],[1,3,4,2],[1,1,1,0]],[[0,0,2,1],[2,2,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,3,2,2],[2,2,2,0],[1,0,1,0]],[[1,2,2,2],[2,3,2,2],[2,2,2,0],[1,0,1,0]],[[1,2,3,1],[2,3,2,2],[2,2,2,0],[1,0,1,0]],[[1,3,2,1],[2,3,2,2],[2,2,2,0],[1,0,1,0]],[[2,2,2,1],[2,3,2,2],[2,2,2,0],[1,0,1,0]],[[1,2,2,1],[3,3,2,2],[2,2,2,0],[1,0,0,1]],[[1,2,2,2],[2,3,2,2],[2,2,2,0],[1,0,0,1]],[[1,2,3,1],[2,3,2,2],[2,2,2,0],[1,0,0,1]],[[1,3,2,1],[2,3,2,2],[2,2,2,0],[1,0,0,1]],[[0,0,2,1],[2,2,3,1],[3,0,2,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[2,0,2,3],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[2,0,2,2],[2,2,2,1]],[[0,0,2,1],[2,2,3,1],[2,0,2,2],[1,3,2,1]],[[0,0,2,1],[2,2,3,1],[2,0,2,2],[1,2,3,1]],[[0,0,2,1],[2,2,3,1],[2,0,2,2],[1,2,2,2]],[[0,0,2,1],[2,2,4,1],[2,0,3,1],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[3,0,3,1],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[2,0,4,1],[1,2,2,1]],[[0,0,2,1],[2,2,3,1],[2,0,3,1],[2,2,2,1]],[[0,0,2,1],[2,2,3,1],[2,0,3,1],[1,3,2,1]],[[0,0,2,1],[2,2,3,1],[2,0,3,1],[1,2,3,1]],[[0,0,2,1],[2,2,3,1],[2,0,3,1],[1,2,2,2]],[[0,0,2,1],[2,2,4,1],[2,0,3,2],[1,2,1,1]],[[0,0,2,1],[2,2,3,1],[2,0,4,2],[1,2,1,1]],[[0,0,2,1],[2,2,3,1],[2,0,3,3],[1,2,1,1]],[[0,0,2,1],[2,2,3,1],[2,0,3,2],[1,2,1,2]],[[0,0,2,1],[2,2,4,1],[2,0,3,2],[1,2,2,0]],[[0,0,2,1],[2,2,3,1],[3,0,3,2],[1,2,2,0]],[[0,0,2,1],[2,2,3,1],[2,0,4,2],[1,2,2,0]],[[0,0,2,1],[2,2,3,1],[2,0,3,3],[1,2,2,0]],[[0,0,2,1],[2,2,3,1],[2,0,3,2],[2,2,2,0]],[[0,0,2,1],[2,2,3,1],[2,0,3,2],[1,3,2,0]],[[0,0,2,1],[2,2,3,1],[2,0,3,2],[1,2,3,0]],[[2,2,2,1],[2,3,2,2],[2,2,2,0],[1,0,0,1]],[[1,2,2,1],[3,3,2,2],[2,2,0,2],[1,0,1,0]],[[1,2,2,2],[2,3,2,2],[2,2,0,2],[1,0,1,0]],[[1,2,3,1],[2,3,2,2],[2,2,0,2],[1,0,1,0]],[[1,3,2,1],[2,3,2,2],[2,2,0,2],[1,0,1,0]],[[2,2,2,1],[2,3,2,2],[2,2,0,2],[1,0,1,0]],[[1,2,2,1],[2,3,2,3],[2,2,0,2],[1,0,0,1]],[[1,2,2,1],[3,3,2,2],[2,2,0,2],[1,0,0,1]],[[1,2,2,2],[2,3,2,2],[2,2,0,2],[1,0,0,1]],[[1,2,3,1],[2,3,2,2],[2,2,0,2],[1,0,0,1]],[[1,3,2,1],[2,3,2,2],[2,2,0,2],[1,0,0,1]],[[2,2,2,1],[2,3,2,2],[2,2,0,2],[1,0,0,1]],[[1,2,2,1],[3,3,2,2],[2,1,3,0],[1,1,0,0]],[[1,2,2,2],[2,3,2,2],[2,1,3,0],[1,1,0,0]],[[1,2,3,1],[2,3,2,2],[2,1,3,0],[1,1,0,0]],[[1,3,2,1],[2,3,2,2],[2,1,3,0],[1,1,0,0]],[[2,2,2,1],[2,3,2,2],[2,1,3,0],[1,1,0,0]],[[0,0,2,2],[2,2,3,2],[0,0,3,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,3],[0,0,3,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,0,3,3],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,0,3,2],[1,2,3,1]],[[0,0,2,1],[2,2,3,2],[0,0,3,2],[1,2,2,2]],[[0,0,2,2],[2,2,3,2],[0,2,1,2],[1,2,2,1]],[[0,0,2,1],[2,2,4,2],[0,2,1,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,3],[0,2,1,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,2,1,3],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,2,1,2],[2,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,2,1,2],[1,3,2,1]],[[0,0,2,1],[2,2,3,2],[0,2,1,2],[1,2,3,1]],[[0,0,2,1],[2,2,3,2],[0,2,1,2],[1,2,2,2]],[[0,0,2,2],[2,2,3,2],[0,2,2,2],[1,2,1,1]],[[0,0,2,1],[2,2,4,2],[0,2,2,2],[1,2,1,1]],[[0,0,2,1],[2,2,3,3],[0,2,2,2],[1,2,1,1]],[[0,0,2,1],[2,2,3,2],[0,2,2,3],[1,2,1,1]],[[0,0,2,1],[2,2,3,2],[0,2,2,2],[1,2,1,2]],[[0,0,2,2],[2,2,3,2],[0,2,2,2],[1,2,2,0]],[[0,0,2,1],[2,2,4,2],[0,2,2,2],[1,2,2,0]],[[0,0,2,1],[2,2,3,3],[0,2,2,2],[1,2,2,0]],[[0,0,2,1],[2,2,3,2],[0,2,2,3],[1,2,2,0]],[[0,0,2,2],[2,2,3,2],[0,2,3,0],[1,2,2,1]],[[0,0,2,1],[2,2,4,2],[0,2,3,0],[1,2,2,1]],[[0,0,2,1],[2,2,3,3],[0,2,3,0],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,2,4,0],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,2,3,0],[2,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,2,3,0],[1,3,2,1]],[[0,0,2,1],[2,2,3,2],[0,2,3,0],[1,2,3,1]],[[0,0,2,1],[2,2,3,2],[0,2,3,0],[1,2,2,2]],[[0,0,2,2],[2,2,3,2],[0,2,3,1],[1,2,1,1]],[[0,0,2,1],[2,2,4,2],[0,2,3,1],[1,2,1,1]],[[0,0,2,1],[2,2,3,3],[0,2,3,1],[1,2,1,1]],[[0,0,2,1],[2,2,3,2],[0,2,4,1],[1,2,1,1]],[[0,0,2,2],[2,2,3,2],[0,2,3,1],[1,2,2,0]],[[0,0,2,1],[2,2,4,2],[0,2,3,1],[1,2,2,0]],[[0,0,2,1],[2,2,3,3],[0,2,3,1],[1,2,2,0]],[[0,0,2,1],[2,2,3,2],[0,2,4,1],[1,2,2,0]],[[0,0,2,1],[2,2,3,2],[0,2,3,1],[2,2,2,0]],[[0,0,2,1],[2,2,3,2],[0,2,3,1],[1,3,2,0]],[[0,0,2,1],[2,2,3,2],[0,2,3,1],[1,2,3,0]],[[0,0,2,2],[2,2,3,2],[0,3,0,2],[1,2,2,1]],[[0,0,2,1],[2,2,4,2],[0,3,0,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,3],[0,3,0,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,4,0,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,0,3],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,0,2],[2,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,0,2],[1,3,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,0,2],[1,2,3,1]],[[0,0,2,1],[2,2,3,2],[0,3,0,2],[1,2,2,2]],[[0,0,2,2],[2,2,3,2],[0,3,1,2],[1,1,2,1]],[[0,0,2,1],[2,2,4,2],[0,3,1,2],[1,1,2,1]],[[0,0,2,1],[2,2,3,3],[0,3,1,2],[1,1,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,1,3],[1,1,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,1,2],[1,1,3,1]],[[0,0,2,1],[2,2,3,2],[0,3,1,2],[1,1,2,2]],[[0,0,2,1],[2,2,3,2],[0,4,2,0],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,2,0],[2,2,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,2,0],[1,3,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,2,0],[1,2,3,1]],[[0,0,2,1],[2,2,3,2],[0,3,2,0],[1,2,2,2]],[[0,0,2,1],[2,2,3,2],[0,4,2,1],[1,2,2,0]],[[0,0,2,1],[2,2,3,2],[0,3,2,1],[2,2,2,0]],[[0,0,2,1],[2,2,3,2],[0,3,2,1],[1,3,2,0]],[[0,0,2,1],[2,2,3,2],[0,3,2,1],[1,2,3,0]],[[0,0,2,2],[2,2,3,2],[0,3,2,2],[1,0,2,1]],[[0,0,2,1],[2,2,4,2],[0,3,2,2],[1,0,2,1]],[[0,0,2,1],[2,2,3,3],[0,3,2,2],[1,0,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,2,3],[1,0,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,2,2],[1,0,2,2]],[[0,0,2,2],[2,2,3,2],[0,3,2,2],[1,1,1,1]],[[0,0,2,1],[2,2,4,2],[0,3,2,2],[1,1,1,1]],[[0,0,2,1],[2,2,3,3],[0,3,2,2],[1,1,1,1]],[[0,0,2,1],[2,2,3,2],[0,3,2,3],[1,1,1,1]],[[0,0,2,1],[2,2,3,2],[0,3,2,2],[1,1,1,2]],[[0,0,2,2],[2,2,3,2],[0,3,2,2],[1,1,2,0]],[[0,0,2,1],[2,2,4,2],[0,3,2,2],[1,1,2,0]],[[0,0,2,1],[2,2,3,3],[0,3,2,2],[1,1,2,0]],[[0,0,2,1],[2,2,3,2],[0,3,2,3],[1,1,2,0]],[[0,0,2,2],[2,2,3,2],[0,3,2,2],[1,2,0,1]],[[0,0,2,1],[2,2,4,2],[0,3,2,2],[1,2,0,1]],[[0,0,2,1],[2,2,3,3],[0,3,2,2],[1,2,0,1]],[[0,0,2,1],[2,2,3,2],[0,3,2,3],[1,2,0,1]],[[0,0,2,1],[2,2,3,2],[0,3,2,2],[1,2,0,2]],[[0,0,2,2],[2,2,3,2],[0,3,2,2],[1,2,1,0]],[[0,0,2,1],[2,2,4,2],[0,3,2,2],[1,2,1,0]],[[0,0,2,1],[2,2,3,3],[0,3,2,2],[1,2,1,0]],[[0,0,2,1],[2,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,1],[3,3,2,2],[2,1,3,0],[0,2,0,0]],[[1,2,2,2],[2,3,2,2],[2,1,3,0],[0,2,0,0]],[[1,2,3,1],[2,3,2,2],[2,1,3,0],[0,2,0,0]],[[0,0,2,2],[2,2,3,2],[0,3,3,0],[1,1,2,1]],[[0,0,2,1],[2,2,4,2],[0,3,3,0],[1,1,2,1]],[[0,0,2,1],[2,2,3,3],[0,3,3,0],[1,1,2,1]],[[0,0,2,1],[2,2,3,2],[0,4,3,0],[1,1,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,4,0],[1,1,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,3,0],[1,1,3,1]],[[0,0,2,1],[2,2,3,2],[0,3,3,0],[1,1,2,2]],[[0,0,2,2],[2,2,3,2],[0,3,3,0],[1,2,1,1]],[[0,0,2,1],[2,2,4,2],[0,3,3,0],[1,2,1,1]],[[0,0,2,1],[2,2,3,3],[0,3,3,0],[1,2,1,1]],[[0,0,2,1],[2,2,3,2],[0,4,3,0],[1,2,1,1]],[[0,0,2,1],[2,2,3,2],[0,3,4,0],[1,2,1,1]],[[0,0,2,1],[2,2,3,2],[0,3,3,0],[2,2,1,1]],[[0,0,2,1],[2,2,3,2],[0,3,3,0],[1,3,1,1]],[[0,0,2,2],[2,2,3,2],[0,3,3,1],[1,0,2,1]],[[0,0,2,1],[2,2,4,2],[0,3,3,1],[1,0,2,1]],[[0,0,2,1],[2,2,3,3],[0,3,3,1],[1,0,2,1]],[[0,0,2,1],[2,2,3,2],[0,3,4,1],[1,0,2,1]],[[0,0,2,2],[2,2,3,2],[0,3,3,1],[1,1,1,1]],[[0,0,2,1],[2,2,4,2],[0,3,3,1],[1,1,1,1]],[[0,0,2,1],[2,2,3,3],[0,3,3,1],[1,1,1,1]],[[0,0,2,1],[2,2,3,2],[0,4,3,1],[1,1,1,1]],[[0,0,2,1],[2,2,3,2],[0,3,4,1],[1,1,1,1]],[[0,0,2,2],[2,2,3,2],[0,3,3,1],[1,1,2,0]],[[0,0,2,1],[2,2,4,2],[0,3,3,1],[1,1,2,0]],[[0,0,2,1],[2,2,3,3],[0,3,3,1],[1,1,2,0]],[[0,0,2,1],[2,2,3,2],[0,4,3,1],[1,1,2,0]],[[0,0,2,1],[2,2,3,2],[0,3,4,1],[1,1,2,0]],[[0,0,2,1],[2,2,3,2],[0,3,3,1],[1,1,3,0]],[[0,0,2,2],[2,2,3,2],[0,3,3,1],[1,2,0,1]],[[0,0,2,1],[2,2,4,2],[0,3,3,1],[1,2,0,1]],[[0,0,2,1],[2,2,3,3],[0,3,3,1],[1,2,0,1]],[[0,0,2,1],[2,2,3,2],[0,4,3,1],[1,2,0,1]],[[0,0,2,1],[2,2,3,2],[0,3,4,1],[1,2,0,1]],[[0,0,2,1],[2,2,3,2],[0,3,3,1],[2,2,0,1]],[[0,0,2,1],[2,2,3,2],[0,3,3,1],[1,3,0,1]],[[0,0,2,2],[2,2,3,2],[0,3,3,1],[1,2,1,0]],[[0,0,2,1],[2,2,4,2],[0,3,3,1],[1,2,1,0]],[[0,0,2,1],[2,2,3,3],[0,3,3,1],[1,2,1,0]],[[0,0,2,1],[2,2,3,2],[0,4,3,1],[1,2,1,0]],[[0,0,2,1],[2,2,3,2],[0,3,4,1],[1,2,1,0]],[[0,0,2,1],[2,2,3,2],[0,3,3,1],[2,2,1,0]],[[0,0,2,1],[2,2,3,2],[0,3,3,1],[1,3,1,0]],[[1,3,2,1],[2,3,2,2],[2,1,3,0],[0,2,0,0]],[[2,2,2,1],[2,3,2,2],[2,1,3,0],[0,2,0,0]],[[0,0,2,2],[2,2,3,2],[0,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,2,4,2],[0,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,2,3,3],[0,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,2,3,2],[0,3,3,3],[1,1,0,1]],[[0,0,2,2],[2,2,3,2],[1,0,3,2],[0,2,2,1]],[[0,0,2,1],[2,2,3,3],[1,0,3,2],[0,2,2,1]],[[0,0,2,1],[2,2,3,2],[1,0,3,3],[0,2,2,1]],[[0,0,2,1],[2,2,3,2],[1,0,3,2],[0,2,3,1]],[[0,0,2,1],[2,2,3,2],[1,0,3,2],[0,2,2,2]],[[0,0,2,2],[2,2,3,2],[1,2,1,2],[0,2,2,1]],[[0,0,2,1],[2,2,4,2],[1,2,1,2],[0,2,2,1]],[[0,0,2,1],[2,2,3,3],[1,2,1,2],[0,2,2,1]],[[0,0,2,1],[2,2,3,2],[1,2,1,3],[0,2,2,1]],[[0,0,2,1],[2,2,3,2],[1,2,1,2],[0,3,2,1]],[[0,0,2,1],[2,2,3,2],[1,2,1,2],[0,2,3,1]],[[0,0,2,1],[2,2,3,2],[1,2,1,2],[0,2,2,2]],[[0,0,2,2],[2,2,3,2],[1,2,2,2],[0,2,1,1]],[[0,0,2,1],[2,2,4,2],[1,2,2,2],[0,2,1,1]],[[0,0,2,1],[2,2,3,3],[1,2,2,2],[0,2,1,1]],[[0,0,2,1],[2,2,3,2],[1,2,2,3],[0,2,1,1]],[[0,0,2,1],[2,2,3,2],[1,2,2,2],[0,2,1,2]],[[0,0,2,2],[2,2,3,2],[1,2,2,2],[0,2,2,0]],[[0,0,2,1],[2,2,4,2],[1,2,2,2],[0,2,2,0]],[[0,0,2,1],[2,2,3,3],[1,2,2,2],[0,2,2,0]],[[0,0,2,1],[2,2,3,2],[1,2,2,3],[0,2,2,0]],[[0,0,2,2],[2,2,3,2],[1,2,3,0],[0,2,2,1]],[[0,0,2,1],[2,2,4,2],[1,2,3,0],[0,2,2,1]],[[0,0,2,1],[2,2,3,3],[1,2,3,0],[0,2,2,1]],[[0,0,2,1],[2,2,3,2],[1,2,4,0],[0,2,2,1]],[[0,0,2,1],[2,2,3,2],[1,2,3,0],[0,3,2,1]],[[0,0,2,1],[2,2,3,2],[1,2,3,0],[0,2,3,1]],[[0,0,2,1],[2,2,3,2],[1,2,3,0],[0,2,2,2]],[[0,0,2,2],[2,2,3,2],[1,2,3,1],[0,2,1,1]],[[0,0,2,1],[2,2,4,2],[1,2,3,1],[0,2,1,1]],[[0,0,2,1],[2,2,3,3],[1,2,3,1],[0,2,1,1]],[[0,0,2,1],[2,2,3,2],[1,2,4,1],[0,2,1,1]],[[0,0,2,2],[2,2,3,2],[1,2,3,1],[0,2,2,0]],[[0,0,2,1],[2,2,4,2],[1,2,3,1],[0,2,2,0]],[[0,0,2,1],[2,2,3,3],[1,2,3,1],[0,2,2,0]],[[0,0,2,1],[2,2,3,2],[1,2,4,1],[0,2,2,0]],[[0,0,2,1],[2,2,3,2],[1,2,3,1],[0,3,2,0]],[[0,0,2,1],[2,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[3,3,2,2],[2,1,2,0],[1,2,0,0]],[[1,2,2,2],[2,3,2,2],[2,1,2,0],[1,2,0,0]],[[1,2,3,1],[2,3,2,2],[2,1,2,0],[1,2,0,0]],[[0,0,2,2],[2,2,3,2],[1,3,0,2],[0,2,2,1]],[[0,0,2,1],[2,2,4,2],[1,3,0,2],[0,2,2,1]],[[0,0,2,1],[2,2,3,3],[1,3,0,2],[0,2,2,1]],[[0,0,2,1],[2,2,3,2],[1,4,0,2],[0,2,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,0,3],[0,2,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,0,2],[0,3,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,0,2],[0,2,3,1]],[[0,0,2,1],[2,2,3,2],[1,3,0,2],[0,2,2,2]],[[0,0,2,2],[2,2,3,2],[1,3,1,2],[0,1,2,1]],[[0,0,2,1],[2,2,4,2],[1,3,1,2],[0,1,2,1]],[[0,0,2,1],[2,2,3,3],[1,3,1,2],[0,1,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,1,3],[0,1,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,1,2],[0,1,3,1]],[[0,0,2,1],[2,2,3,2],[1,3,1,2],[0,1,2,2]],[[0,0,2,2],[2,2,3,2],[1,3,1,2],[1,0,2,1]],[[0,0,2,1],[2,2,4,2],[1,3,1,2],[1,0,2,1]],[[0,0,2,1],[2,2,3,3],[1,3,1,2],[1,0,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,1,3],[1,0,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,1,2],[1,0,3,1]],[[0,0,2,1],[2,2,3,2],[1,3,1,2],[1,0,2,2]],[[1,3,2,1],[2,3,2,2],[2,1,2,0],[1,2,0,0]],[[2,2,2,1],[2,3,2,2],[2,1,2,0],[1,2,0,0]],[[0,0,2,1],[2,2,3,2],[1,4,2,0],[0,2,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,0],[0,3,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,0],[0,2,3,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,0],[0,2,2,2]],[[0,0,2,1],[2,2,3,2],[1,4,2,1],[0,2,2,0]],[[0,0,2,1],[2,2,3,2],[1,3,2,1],[0,3,2,0]],[[0,0,2,1],[2,2,3,2],[1,3,2,1],[0,2,3,0]],[[1,2,2,1],[3,3,2,2],[2,1,2,0],[1,1,1,0]],[[1,2,2,2],[2,3,2,2],[2,1,2,0],[1,1,1,0]],[[0,0,2,2],[2,2,3,2],[1,3,2,2],[0,0,2,1]],[[0,0,2,1],[2,2,4,2],[1,3,2,2],[0,0,2,1]],[[0,0,2,1],[2,2,3,3],[1,3,2,2],[0,0,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,3],[0,0,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,2],[0,0,2,2]],[[0,0,2,2],[2,2,3,2],[1,3,2,2],[0,1,1,1]],[[0,0,2,1],[2,2,4,2],[1,3,2,2],[0,1,1,1]],[[0,0,2,1],[2,2,3,3],[1,3,2,2],[0,1,1,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,3],[0,1,1,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,2],[0,1,1,2]],[[0,0,2,2],[2,2,3,2],[1,3,2,2],[0,1,2,0]],[[0,0,2,1],[2,2,4,2],[1,3,2,2],[0,1,2,0]],[[0,0,2,1],[2,2,3,3],[1,3,2,2],[0,1,2,0]],[[0,0,2,1],[2,2,3,2],[1,3,2,3],[0,1,2,0]],[[0,0,2,2],[2,2,3,2],[1,3,2,2],[0,2,0,1]],[[0,0,2,1],[2,2,4,2],[1,3,2,2],[0,2,0,1]],[[0,0,2,1],[2,2,3,3],[1,3,2,2],[0,2,0,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,3],[0,2,0,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,2],[0,2,0,2]],[[0,0,2,2],[2,2,3,2],[1,3,2,2],[0,2,1,0]],[[0,0,2,1],[2,2,4,2],[1,3,2,2],[0,2,1,0]],[[0,0,2,1],[2,2,3,3],[1,3,2,2],[0,2,1,0]],[[0,0,2,1],[2,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[2,1,2,0],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[2,1,2,0],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[2,1,2,0],[1,1,1,0]],[[1,2,2,1],[3,3,2,2],[2,1,2,0],[1,1,0,1]],[[1,2,2,2],[2,3,2,2],[2,1,2,0],[1,1,0,1]],[[1,2,3,1],[2,3,2,2],[2,1,2,0],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[2,1,2,0],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[2,1,2,0],[1,1,0,1]],[[0,0,2,2],[2,2,3,2],[1,3,2,2],[1,0,1,1]],[[0,0,2,1],[2,2,4,2],[1,3,2,2],[1,0,1,1]],[[0,0,2,1],[2,2,3,3],[1,3,2,2],[1,0,1,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,3],[1,0,1,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,2],[1,0,1,2]],[[0,0,2,2],[2,2,3,2],[1,3,2,2],[1,0,2,0]],[[0,0,2,1],[2,2,4,2],[1,3,2,2],[1,0,2,0]],[[0,0,2,1],[2,2,3,3],[1,3,2,2],[1,0,2,0]],[[0,0,2,1],[2,2,3,2],[1,3,2,3],[1,0,2,0]],[[0,0,2,2],[2,2,3,2],[1,3,2,2],[1,1,0,1]],[[0,0,2,1],[2,2,4,2],[1,3,2,2],[1,1,0,1]],[[0,0,2,1],[2,2,3,3],[1,3,2,2],[1,1,0,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,3],[1,1,0,1]],[[0,0,2,1],[2,2,3,2],[1,3,2,2],[1,1,0,2]],[[0,0,2,2],[2,2,3,2],[1,3,2,2],[1,1,1,0]],[[0,0,2,1],[2,2,4,2],[1,3,2,2],[1,1,1,0]],[[0,0,2,1],[2,2,3,3],[1,3,2,2],[1,1,1,0]],[[0,0,2,1],[2,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,1],[3,3,2,2],[2,1,2,0],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[2,1,2,0],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[2,1,2,0],[1,0,2,0]],[[1,3,2,1],[2,3,2,2],[2,1,2,0],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[2,1,2,0],[1,0,2,0]],[[1,2,2,1],[3,3,2,2],[2,1,2,0],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[2,1,2,0],[1,0,1,1]],[[1,2,3,1],[2,3,2,2],[2,1,2,0],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[2,1,2,0],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[2,1,2,0],[1,0,1,1]],[[1,2,2,1],[3,3,2,2],[2,1,2,0],[0,2,1,0]],[[1,2,2,2],[2,3,2,2],[2,1,2,0],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[2,1,2,0],[0,2,1,0]],[[0,0,2,2],[2,2,3,2],[1,3,3,0],[0,1,2,1]],[[0,0,2,1],[2,2,4,2],[1,3,3,0],[0,1,2,1]],[[0,0,2,1],[2,2,3,3],[1,3,3,0],[0,1,2,1]],[[0,0,2,1],[2,2,3,2],[1,4,3,0],[0,1,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,4,0],[0,1,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,3,0],[0,1,3,1]],[[0,0,2,1],[2,2,3,2],[1,3,3,0],[0,1,2,2]],[[0,0,2,2],[2,2,3,2],[1,3,3,0],[0,2,1,1]],[[0,0,2,1],[2,2,4,2],[1,3,3,0],[0,2,1,1]],[[0,0,2,1],[2,2,3,3],[1,3,3,0],[0,2,1,1]],[[0,0,2,1],[2,2,3,2],[1,4,3,0],[0,2,1,1]],[[0,0,2,1],[2,2,3,2],[1,3,4,0],[0,2,1,1]],[[0,0,2,1],[2,2,3,2],[1,3,3,0],[0,3,1,1]],[[0,0,2,2],[2,2,3,2],[1,3,3,0],[1,0,2,1]],[[0,0,2,1],[2,2,4,2],[1,3,3,0],[1,0,2,1]],[[0,0,2,1],[2,2,3,3],[1,3,3,0],[1,0,2,1]],[[0,0,2,1],[2,2,3,2],[1,4,3,0],[1,0,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,4,0],[1,0,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,3,0],[1,0,3,1]],[[0,0,2,1],[2,2,3,2],[1,3,3,0],[1,0,2,2]],[[0,0,2,2],[2,2,3,2],[1,3,3,0],[1,1,1,1]],[[0,0,2,1],[2,2,4,2],[1,3,3,0],[1,1,1,1]],[[0,0,2,1],[2,2,3,3],[1,3,3,0],[1,1,1,1]],[[0,0,2,1],[2,2,3,2],[1,4,3,0],[1,1,1,1]],[[0,0,2,1],[2,2,3,2],[1,3,4,0],[1,1,1,1]],[[1,3,2,1],[2,3,2,2],[2,1,2,0],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[2,1,2,0],[0,2,1,0]],[[1,2,2,1],[3,3,2,2],[2,1,2,0],[0,2,0,1]],[[1,2,2,2],[2,3,2,2],[2,1,2,0],[0,2,0,1]],[[1,2,3,1],[2,3,2,2],[2,1,2,0],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[2,1,2,0],[0,2,0,1]],[[2,2,2,1],[2,3,2,2],[2,1,2,0],[0,2,0,1]],[[0,0,2,2],[2,2,3,2],[1,3,3,1],[0,0,2,1]],[[0,0,2,1],[2,2,4,2],[1,3,3,1],[0,0,2,1]],[[0,0,2,1],[2,2,3,3],[1,3,3,1],[0,0,2,1]],[[0,0,2,1],[2,2,3,2],[1,3,4,1],[0,0,2,1]],[[0,0,2,2],[2,2,3,2],[1,3,3,1],[0,1,1,1]],[[0,0,2,1],[2,2,4,2],[1,3,3,1],[0,1,1,1]],[[0,0,2,1],[2,2,3,3],[1,3,3,1],[0,1,1,1]],[[0,0,2,1],[2,2,3,2],[1,4,3,1],[0,1,1,1]],[[0,0,2,1],[2,2,3,2],[1,3,4,1],[0,1,1,1]],[[0,0,2,2],[2,2,3,2],[1,3,3,1],[0,1,2,0]],[[0,0,2,1],[2,2,4,2],[1,3,3,1],[0,1,2,0]],[[0,0,2,1],[2,2,3,3],[1,3,3,1],[0,1,2,0]],[[0,0,2,1],[2,2,3,2],[1,4,3,1],[0,1,2,0]],[[0,0,2,1],[2,2,3,2],[1,3,4,1],[0,1,2,0]],[[0,0,2,1],[2,2,3,2],[1,3,3,1],[0,1,3,0]],[[0,0,2,2],[2,2,3,2],[1,3,3,1],[0,2,0,1]],[[0,0,2,1],[2,2,4,2],[1,3,3,1],[0,2,0,1]],[[0,0,2,1],[2,2,3,3],[1,3,3,1],[0,2,0,1]],[[0,0,2,1],[2,2,3,2],[1,4,3,1],[0,2,0,1]],[[0,0,2,1],[2,2,3,2],[1,3,4,1],[0,2,0,1]],[[0,0,2,1],[2,2,3,2],[1,3,3,1],[0,3,0,1]],[[0,0,2,2],[2,2,3,2],[1,3,3,1],[0,2,1,0]],[[0,0,2,1],[2,2,4,2],[1,3,3,1],[0,2,1,0]],[[0,0,2,1],[2,2,3,3],[1,3,3,1],[0,2,1,0]],[[0,0,2,1],[2,2,3,2],[1,4,3,1],[0,2,1,0]],[[0,0,2,1],[2,2,3,2],[1,3,4,1],[0,2,1,0]],[[0,0,2,1],[2,2,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[3,3,2,2],[2,1,2,0],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[2,1,2,0],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[2,1,2,0],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[2,1,2,0],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[2,1,2,0],[0,1,2,0]],[[0,0,2,2],[2,2,3,2],[1,3,3,1],[1,0,1,1]],[[0,0,2,1],[2,2,4,2],[1,3,3,1],[1,0,1,1]],[[0,0,2,1],[2,2,3,3],[1,3,3,1],[1,0,1,1]],[[0,0,2,1],[2,2,3,2],[1,4,3,1],[1,0,1,1]],[[0,0,2,1],[2,2,3,2],[1,3,4,1],[1,0,1,1]],[[0,0,2,2],[2,2,3,2],[1,3,3,1],[1,0,2,0]],[[0,0,2,1],[2,2,4,2],[1,3,3,1],[1,0,2,0]],[[0,0,2,1],[2,2,3,3],[1,3,3,1],[1,0,2,0]],[[0,0,2,1],[2,2,3,2],[1,4,3,1],[1,0,2,0]],[[0,0,2,1],[2,2,3,2],[1,3,4,1],[1,0,2,0]],[[0,0,2,1],[2,2,3,2],[1,3,3,1],[1,0,3,0]],[[0,0,2,2],[2,2,3,2],[1,3,3,1],[1,1,0,1]],[[0,0,2,1],[2,2,4,2],[1,3,3,1],[1,1,0,1]],[[0,0,2,1],[2,2,3,3],[1,3,3,1],[1,1,0,1]],[[0,0,2,1],[2,2,3,2],[1,4,3,1],[1,1,0,1]],[[0,0,2,1],[2,2,3,2],[1,3,4,1],[1,1,0,1]],[[0,0,2,2],[2,2,3,2],[1,3,3,1],[1,1,1,0]],[[0,0,2,1],[2,2,4,2],[1,3,3,1],[1,1,1,0]],[[0,0,2,1],[2,2,3,3],[1,3,3,1],[1,1,1,0]],[[0,0,2,1],[2,2,3,2],[1,4,3,1],[1,1,1,0]],[[0,0,2,1],[2,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[3,3,2,2],[2,1,2,0],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[2,1,2,0],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[2,1,2,0],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[2,1,2,0],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[2,1,2,0],[0,1,1,1]],[[0,0,2,2],[2,2,3,2],[1,3,3,2],[0,1,0,1]],[[0,0,2,1],[2,2,4,2],[1,3,3,2],[0,1,0,1]],[[0,0,2,1],[2,2,3,3],[1,3,3,2],[0,1,0,1]],[[0,0,2,1],[2,2,3,2],[1,3,3,3],[0,1,0,1]],[[0,0,2,2],[2,2,3,2],[1,3,3,2],[1,0,0,1]],[[0,0,2,1],[2,2,4,2],[1,3,3,2],[1,0,0,1]],[[0,0,2,1],[2,2,3,3],[1,3,3,2],[1,0,0,1]],[[0,0,2,1],[2,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,1],[3,3,2,2],[2,1,1,0],[1,1,2,0]],[[1,2,2,2],[2,3,2,2],[2,1,1,0],[1,1,2,0]],[[1,2,3,1],[2,3,2,2],[2,1,1,0],[1,1,2,0]],[[1,3,2,1],[2,3,2,2],[2,1,1,0],[1,1,2,0]],[[2,2,2,1],[2,3,2,2],[2,1,1,0],[1,1,2,0]],[[1,2,2,1],[3,3,2,2],[2,1,1,0],[0,2,2,0]],[[1,2,2,2],[2,3,2,2],[2,1,1,0],[0,2,2,0]],[[1,2,3,1],[2,3,2,2],[2,1,1,0],[0,2,2,0]],[[1,3,2,1],[2,3,2,2],[2,1,1,0],[0,2,2,0]],[[2,2,2,1],[2,3,2,2],[2,1,1,0],[0,2,2,0]],[[1,2,2,1],[3,3,2,2],[2,1,0,2],[1,2,0,0]],[[1,2,2,2],[2,3,2,2],[2,1,0,2],[1,2,0,0]],[[1,2,3,1],[2,3,2,2],[2,1,0,2],[1,2,0,0]],[[1,3,2,1],[2,3,2,2],[2,1,0,2],[1,2,0,0]],[[2,2,2,1],[2,3,2,2],[2,1,0,2],[1,2,0,0]],[[1,2,2,1],[2,3,2,3],[2,1,0,2],[1,1,1,0]],[[1,2,2,1],[3,3,2,2],[2,1,0,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,2],[2,1,0,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,2],[2,1,0,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[2,1,0,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[2,1,0,2],[1,1,1,0]],[[1,2,2,1],[2,3,2,3],[2,1,0,2],[1,1,0,1]],[[0,0,2,2],[2,2,3,2],[2,0,1,2],[1,2,2,1]],[[0,0,2,1],[2,2,4,2],[2,0,1,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,3],[2,0,1,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[3,0,1,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[2,0,1,3],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[2,0,1,2],[2,2,2,1]],[[0,0,2,1],[2,2,3,2],[2,0,1,2],[1,3,2,1]],[[0,0,2,1],[2,2,3,2],[2,0,1,2],[1,2,3,1]],[[0,0,2,1],[2,2,3,2],[2,0,1,2],[1,2,2,2]],[[0,0,2,2],[2,2,3,2],[2,0,2,2],[1,2,1,1]],[[0,0,2,1],[2,2,4,2],[2,0,2,2],[1,2,1,1]],[[0,0,2,1],[2,2,3,3],[2,0,2,2],[1,2,1,1]],[[0,0,2,1],[2,2,3,2],[2,0,2,3],[1,2,1,1]],[[0,0,2,1],[2,2,3,2],[2,0,2,2],[1,2,1,2]],[[0,0,2,2],[2,2,3,2],[2,0,2,2],[1,2,2,0]],[[0,0,2,1],[2,2,4,2],[2,0,2,2],[1,2,2,0]],[[0,0,2,1],[2,2,3,3],[2,0,2,2],[1,2,2,0]],[[0,0,2,1],[2,2,3,2],[2,0,2,3],[1,2,2,0]],[[0,0,2,2],[2,2,3,2],[2,0,3,0],[1,2,2,1]],[[0,0,2,1],[2,2,4,2],[2,0,3,0],[1,2,2,1]],[[0,0,2,1],[2,2,3,3],[2,0,3,0],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[3,0,3,0],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[2,0,4,0],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[2,0,3,0],[2,2,2,1]],[[0,0,2,1],[2,2,3,2],[2,0,3,0],[1,3,2,1]],[[0,0,2,1],[2,2,3,2],[2,0,3,0],[1,2,3,1]],[[0,0,2,1],[2,2,3,2],[2,0,3,0],[1,2,2,2]],[[0,0,2,2],[2,2,3,2],[2,0,3,1],[1,2,1,1]],[[0,0,2,1],[2,2,4,2],[2,0,3,1],[1,2,1,1]],[[0,0,2,1],[2,2,3,3],[2,0,3,1],[1,2,1,1]],[[0,0,2,1],[2,2,3,2],[2,0,4,1],[1,2,1,1]],[[0,0,2,2],[2,2,3,2],[2,0,3,1],[1,2,2,0]],[[0,0,2,1],[2,2,4,2],[2,0,3,1],[1,2,2,0]],[[0,0,2,1],[2,2,3,3],[2,0,3,1],[1,2,2,0]],[[0,0,2,1],[2,2,3,2],[3,0,3,1],[1,2,2,0]],[[0,0,2,1],[2,2,3,2],[2,0,4,1],[1,2,2,0]],[[0,0,2,1],[2,2,3,2],[2,0,3,1],[2,2,2,0]],[[0,0,2,1],[2,2,3,2],[2,0,3,1],[1,3,2,0]],[[0,0,2,1],[2,2,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[3,3,2,2],[2,1,0,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,2],[2,1,0,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,2],[2,1,0,2],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[2,1,0,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[2,1,0,2],[1,1,0,1]],[[0,0,2,2],[2,2,3,2],[2,1,0,2],[1,2,2,1]],[[0,0,2,1],[2,2,4,2],[2,1,0,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,3],[2,1,0,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[3,1,0,2],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[2,1,0,3],[1,2,2,1]],[[0,0,2,1],[2,2,3,2],[2,1,0,2],[2,2,2,1]],[[0,0,2,1],[2,2,3,2],[2,1,0,2],[1,3,2,1]],[[0,0,2,1],[2,2,3,2],[2,1,0,2],[1,2,3,1]],[[0,0,2,1],[2,2,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[2,3,2,3],[2,1,0,2],[1,0,2,0]],[[1,2,2,1],[3,3,2,2],[2,1,0,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[2,1,0,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[2,1,0,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,2],[2,1,0,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[2,1,0,2],[1,0,2,0]],[[1,2,2,1],[2,3,2,3],[2,1,0,2],[1,0,1,1]],[[1,2,2,1],[3,3,2,2],[2,1,0,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[2,1,0,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,2],[2,1,0,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[2,1,0,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[2,1,0,2],[1,0,1,1]],[[1,2,2,1],[2,3,2,3],[2,1,0,2],[0,2,1,0]],[[1,2,2,1],[3,3,2,2],[2,1,0,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,2],[2,1,0,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[2,1,0,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,2],[2,1,0,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[2,1,0,2],[0,2,1,0]],[[1,2,2,1],[2,3,2,3],[2,1,0,2],[0,2,0,1]],[[1,2,2,1],[3,3,2,2],[2,1,0,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,2],[2,1,0,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,2],[2,1,0,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[2,1,0,2],[0,2,0,1]],[[2,2,2,1],[2,3,2,2],[2,1,0,2],[0,2,0,1]],[[1,2,2,1],[2,3,2,3],[2,1,0,2],[0,1,2,0]],[[1,2,2,1],[3,3,2,2],[2,1,0,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[2,1,0,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[2,1,0,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[2,1,0,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[2,1,0,2],[0,1,2,0]],[[1,2,2,1],[2,3,2,3],[2,1,0,2],[0,1,1,1]],[[1,2,2,1],[3,3,2,2],[2,1,0,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[2,1,0,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[2,1,0,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[2,1,0,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[2,1,0,2],[0,1,1,1]],[[1,2,2,1],[2,3,2,2],[2,0,3,3],[0,0,0,1]],[[1,2,2,1],[2,3,2,3],[2,0,3,2],[0,0,0,1]],[[1,2,2,2],[2,3,2,2],[2,0,3,2],[0,0,0,1]],[[1,2,3,1],[2,3,2,2],[2,0,3,2],[0,0,0,1]],[[1,3,2,1],[2,3,2,2],[2,0,3,2],[0,0,0,1]],[[2,2,2,1],[2,3,2,2],[2,0,3,2],[0,0,0,1]],[[1,2,2,1],[2,3,2,3],[2,0,3,1],[0,0,2,0]],[[1,2,2,2],[2,3,2,2],[2,0,3,1],[0,0,2,0]],[[1,2,3,1],[2,3,2,2],[2,0,3,1],[0,0,2,0]],[[1,3,2,1],[2,3,2,2],[2,0,3,1],[0,0,2,0]],[[2,2,2,1],[2,3,2,2],[2,0,3,1],[0,0,2,0]],[[1,2,2,1],[2,3,2,3],[2,0,3,1],[0,0,1,1]],[[1,2,2,2],[2,3,2,2],[2,0,3,1],[0,0,1,1]],[[1,2,3,1],[2,3,2,2],[2,0,3,1],[0,0,1,1]],[[1,3,2,1],[2,3,2,2],[2,0,3,1],[0,0,1,1]],[[2,2,2,1],[2,3,2,2],[2,0,3,1],[0,0,1,1]],[[1,2,2,1],[3,3,2,2],[2,0,3,0],[1,1,1,0]],[[1,2,2,2],[2,3,2,2],[2,0,3,0],[1,1,1,0]],[[1,2,3,1],[2,3,2,2],[2,0,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[2,0,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[2,0,3,0],[1,1,1,0]],[[1,2,2,1],[3,3,2,2],[2,0,3,0],[1,1,0,1]],[[1,2,2,2],[2,3,2,2],[2,0,3,0],[1,1,0,1]],[[1,2,3,1],[2,3,2,2],[2,0,3,0],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[2,0,3,0],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[2,0,3,0],[1,1,0,1]],[[1,2,2,1],[3,3,2,2],[2,0,3,0],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[2,0,3,0],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[2,0,3,0],[1,0,2,0]],[[1,3,2,1],[2,3,2,2],[2,0,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[2,0,3,0],[1,0,2,0]],[[1,2,2,1],[3,3,2,2],[2,0,3,0],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[2,0,3,0],[1,0,1,1]],[[1,2,3,1],[2,3,2,2],[2,0,3,0],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[2,0,3,0],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[2,0,3,0],[1,0,1,1]],[[1,2,2,1],[3,3,2,2],[2,0,3,0],[0,2,1,0]],[[1,2,2,2],[2,3,2,2],[2,0,3,0],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[2,0,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,2,2],[2,0,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[2,0,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,2,2],[2,0,3,0],[0,2,0,1]],[[1,2,2,2],[2,3,2,2],[2,0,3,0],[0,2,0,1]],[[1,2,3,1],[2,3,2,2],[2,0,3,0],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[2,0,3,0],[0,2,0,1]],[[2,2,2,1],[2,3,2,2],[2,0,3,0],[0,2,0,1]],[[1,2,2,1],[3,3,2,2],[2,0,3,0],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[2,0,3,0],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[2,0,3,0],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[2,0,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[2,0,3,0],[0,1,2,0]],[[1,2,2,1],[3,3,2,2],[2,0,3,0],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[2,0,3,0],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[2,0,3,0],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[2,0,3,0],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[2,0,3,0],[0,1,1,1]],[[1,2,2,1],[2,3,2,3],[2,0,2,2],[1,0,0,1]],[[1,2,2,1],[3,3,2,2],[2,0,2,2],[1,0,0,1]],[[1,2,2,2],[2,3,2,2],[2,0,2,2],[1,0,0,1]],[[1,2,3,1],[2,3,2,2],[2,0,2,2],[1,0,0,1]],[[1,3,2,1],[2,3,2,2],[2,0,2,2],[1,0,0,1]],[[2,2,2,1],[2,3,2,2],[2,0,2,2],[1,0,0,1]],[[1,2,2,1],[2,3,2,3],[2,0,2,2],[0,0,2,0]],[[1,2,2,2],[2,3,2,2],[2,0,2,2],[0,0,2,0]],[[1,2,3,1],[2,3,2,2],[2,0,2,2],[0,0,2,0]],[[1,3,2,1],[2,3,2,2],[2,0,2,2],[0,0,2,0]],[[2,2,2,1],[2,3,2,2],[2,0,2,2],[0,0,2,0]],[[1,2,2,1],[2,3,2,2],[2,0,2,3],[0,0,1,1]],[[1,2,2,1],[2,3,2,3],[2,0,2,2],[0,0,1,1]],[[1,2,2,2],[2,3,2,2],[2,0,2,2],[0,0,1,1]],[[1,2,3,1],[2,3,2,2],[2,0,2,2],[0,0,1,1]],[[1,3,2,1],[2,3,2,2],[2,0,2,2],[0,0,1,1]],[[2,2,2,1],[2,3,2,2],[2,0,2,2],[0,0,1,1]],[[1,2,2,1],[3,3,2,2],[2,0,2,0],[1,2,1,0]],[[1,2,2,2],[2,3,2,2],[2,0,2,0],[1,2,1,0]],[[1,2,3,1],[2,3,2,2],[2,0,2,0],[1,2,1,0]],[[1,3,2,1],[2,3,2,2],[2,0,2,0],[1,2,1,0]],[[2,2,2,1],[2,3,2,2],[2,0,2,0],[1,2,1,0]],[[1,2,2,1],[3,3,2,2],[2,0,2,0],[1,2,0,1]],[[1,2,2,2],[2,3,2,2],[2,0,2,0],[1,2,0,1]],[[1,2,3,1],[2,3,2,2],[2,0,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,2,2],[2,0,2,0],[1,2,0,1]],[[2,2,2,1],[2,3,2,2],[2,0,2,0],[1,2,0,1]],[[1,2,2,1],[2,3,2,3],[2,0,1,2],[1,1,1,0]],[[1,2,2,1],[3,3,2,2],[2,0,1,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,2],[2,0,1,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,2],[2,0,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[2,0,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[2,0,1,2],[1,1,1,0]],[[1,2,2,1],[2,3,2,3],[2,0,1,2],[1,1,0,1]],[[1,2,2,1],[3,3,2,2],[2,0,1,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,2],[2,0,1,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,2],[2,0,1,2],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[2,0,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[2,0,1,2],[1,1,0,1]],[[1,2,2,1],[2,3,2,3],[2,0,1,2],[1,0,2,0]],[[1,2,2,1],[3,3,2,2],[2,0,1,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[2,0,1,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[2,0,1,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,2],[2,0,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[2,0,1,2],[1,0,2,0]],[[1,2,2,1],[2,3,2,3],[2,0,1,2],[1,0,1,1]],[[1,2,2,1],[3,3,2,2],[2,0,1,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[2,0,1,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,2],[2,0,1,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[2,0,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[2,0,1,2],[1,0,1,1]],[[1,2,2,1],[2,3,2,3],[2,0,1,2],[0,2,1,0]],[[1,2,2,1],[3,3,2,2],[2,0,1,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,2],[2,0,1,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[2,0,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,2],[2,0,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[2,0,1,2],[0,2,1,0]],[[1,2,2,1],[2,3,2,3],[2,0,1,2],[0,2,0,1]],[[1,2,2,1],[3,3,2,2],[2,0,1,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,2],[2,0,1,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,2],[2,0,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[2,0,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,2,2],[2,0,1,2],[0,2,0,1]],[[1,2,2,1],[2,3,2,3],[2,0,1,2],[0,1,2,0]],[[1,2,2,1],[3,3,2,2],[2,0,1,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[2,0,1,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[2,0,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[2,0,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[2,0,1,2],[0,1,2,0]],[[1,2,2,1],[2,3,2,3],[2,0,1,2],[0,1,1,1]],[[1,2,2,1],[3,3,2,2],[2,0,1,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[2,0,1,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[2,0,1,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[2,0,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[2,0,1,2],[0,1,1,1]],[[1,2,2,1],[3,3,2,2],[2,0,1,0],[1,2,2,0]],[[1,2,2,2],[2,3,2,2],[2,0,1,0],[1,2,2,0]],[[1,2,3,1],[2,3,2,2],[2,0,1,0],[1,2,2,0]],[[1,3,2,1],[2,3,2,2],[2,0,1,0],[1,2,2,0]],[[2,2,2,1],[2,3,2,2],[2,0,1,0],[1,2,2,0]],[[1,2,2,1],[2,3,2,3],[2,0,0,2],[1,2,1,0]],[[1,2,2,1],[3,3,2,2],[2,0,0,2],[1,2,1,0]],[[1,2,2,2],[2,3,2,2],[2,0,0,2],[1,2,1,0]],[[1,2,3,1],[2,3,2,2],[2,0,0,2],[1,2,1,0]],[[1,3,2,1],[2,3,2,2],[2,0,0,2],[1,2,1,0]],[[2,2,2,1],[2,3,2,2],[2,0,0,2],[1,2,1,0]],[[1,2,2,1],[2,3,2,3],[2,0,0,2],[1,2,0,1]],[[1,2,2,1],[3,3,2,2],[2,0,0,2],[1,2,0,1]],[[1,2,2,2],[2,3,2,2],[2,0,0,2],[1,2,0,1]],[[1,2,3,1],[2,3,2,2],[2,0,0,2],[1,2,0,1]],[[1,3,2,1],[2,3,2,2],[2,0,0,2],[1,2,0,1]],[[2,2,2,1],[2,3,2,2],[2,0,0,2],[1,2,0,1]],[[1,2,2,1],[2,3,2,3],[2,0,0,2],[1,0,2,1]],[[1,2,2,1],[3,3,2,2],[2,0,0,2],[1,0,2,1]],[[1,2,2,2],[2,3,2,2],[2,0,0,2],[1,0,2,1]],[[1,2,3,1],[2,3,2,2],[2,0,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,2,2],[2,0,0,2],[1,0,2,1]],[[2,2,2,1],[2,3,2,2],[2,0,0,2],[1,0,2,1]],[[1,2,2,1],[2,3,2,3],[2,0,0,2],[0,1,2,1]],[[1,2,2,1],[3,3,2,2],[2,0,0,2],[0,1,2,1]],[[1,2,2,2],[2,3,2,2],[2,0,0,2],[0,1,2,1]],[[1,2,3,1],[2,3,2,2],[2,0,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,2,2],[2,0,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,2,2],[2,0,0,2],[0,1,2,1]],[[0,0,2,2],[2,3,2,2],[0,0,3,2],[1,2,2,1]],[[0,0,2,1],[2,3,2,3],[0,0,3,2],[1,2,2,1]],[[0,0,2,1],[2,3,2,2],[0,0,3,3],[1,2,2,1]],[[0,0,2,1],[2,3,2,2],[0,0,3,2],[1,2,3,1]],[[0,0,2,1],[2,3,2,2],[0,0,3,2],[1,2,2,2]],[[0,0,2,2],[2,3,2,2],[0,1,2,2],[1,2,2,1]],[[0,0,2,1],[2,3,2,3],[0,1,2,2],[1,2,2,1]],[[0,0,2,1],[2,3,2,2],[0,1,2,3],[1,2,2,1]],[[0,0,2,1],[2,3,2,2],[0,1,2,2],[2,2,2,1]],[[0,0,2,1],[2,3,2,2],[0,1,2,2],[1,3,2,1]],[[0,0,2,1],[2,3,2,2],[0,1,2,2],[1,2,3,1]],[[0,0,2,1],[2,3,2,2],[0,1,2,2],[1,2,2,2]],[[0,0,2,1],[2,3,2,2],[0,1,4,1],[1,2,2,1]],[[0,0,2,1],[2,3,2,2],[0,1,3,1],[2,2,2,1]],[[0,0,2,1],[2,3,2,2],[0,1,3,1],[1,3,2,1]],[[0,0,2,1],[2,3,2,2],[0,1,3,1],[1,2,3,1]],[[0,0,2,1],[2,3,2,2],[0,1,3,1],[1,2,2,2]],[[0,0,2,2],[2,3,2,2],[0,1,3,2],[1,2,1,1]],[[0,0,2,1],[2,3,2,3],[0,1,3,2],[1,2,1,1]],[[0,0,2,1],[2,3,2,2],[0,1,4,2],[1,2,1,1]],[[0,0,2,1],[2,3,2,2],[0,1,3,3],[1,2,1,1]],[[0,0,2,1],[2,3,2,2],[0,1,3,2],[1,2,1,2]],[[0,0,2,2],[2,3,2,2],[0,1,3,2],[1,2,2,0]],[[0,0,2,1],[2,3,2,3],[0,1,3,2],[1,2,2,0]],[[0,0,2,1],[2,3,2,2],[0,1,4,2],[1,2,2,0]],[[0,0,2,1],[2,3,2,2],[0,1,3,3],[1,2,2,0]],[[0,0,2,1],[2,3,2,2],[0,1,3,2],[2,2,2,0]],[[0,0,2,1],[2,3,2,2],[0,1,3,2],[1,3,2,0]],[[0,0,2,1],[2,3,2,2],[0,1,3,2],[1,2,3,0]],[[0,0,2,2],[2,3,2,2],[0,2,2,2],[1,1,2,1]],[[0,0,2,1],[2,3,2,3],[0,2,2,2],[1,1,2,1]],[[0,0,2,1],[2,3,2,2],[0,2,2,3],[1,1,2,1]],[[0,0,2,1],[2,3,2,2],[0,2,2,2],[1,1,3,1]],[[0,0,2,1],[2,3,2,2],[0,2,2,2],[1,1,2,2]],[[0,0,2,1],[2,3,2,2],[0,2,4,1],[1,1,2,1]],[[0,0,2,1],[2,3,2,2],[0,2,3,1],[1,1,3,1]],[[0,0,2,1],[2,3,2,2],[0,2,3,1],[1,1,2,2]],[[0,0,2,2],[2,3,2,2],[0,2,3,2],[1,0,2,1]],[[0,0,2,1],[2,3,2,3],[0,2,3,2],[1,0,2,1]],[[0,0,2,1],[2,3,2,2],[0,2,4,2],[1,0,2,1]],[[0,0,2,1],[2,3,2,2],[0,2,3,3],[1,0,2,1]],[[0,0,2,1],[2,3,2,2],[0,2,3,2],[1,0,2,2]],[[0,0,2,2],[2,3,2,2],[0,2,3,2],[1,1,1,1]],[[0,0,2,1],[2,3,2,3],[0,2,3,2],[1,1,1,1]],[[0,0,2,1],[2,3,2,2],[0,2,4,2],[1,1,1,1]],[[0,0,2,1],[2,3,2,2],[0,2,3,3],[1,1,1,1]],[[0,0,2,1],[2,3,2,2],[0,2,3,2],[1,1,1,2]],[[0,0,2,2],[2,3,2,2],[0,2,3,2],[1,1,2,0]],[[0,0,2,1],[2,3,2,3],[0,2,3,2],[1,1,2,0]],[[0,0,2,1],[2,3,2,2],[0,2,4,2],[1,1,2,0]],[[0,0,2,1],[2,3,2,2],[0,2,3,3],[1,1,2,0]],[[0,0,2,1],[2,3,2,2],[0,2,3,2],[1,1,3,0]],[[0,0,2,2],[2,3,2,2],[0,2,3,2],[1,2,0,1]],[[0,0,2,1],[2,3,2,3],[0,2,3,2],[1,2,0,1]],[[0,0,2,1],[2,3,2,2],[0,2,4,2],[1,2,0,1]],[[0,0,2,1],[2,3,2,2],[0,2,3,3],[1,2,0,1]],[[0,0,2,1],[2,3,2,2],[0,2,3,2],[1,2,0,2]],[[0,0,2,2],[2,3,2,2],[0,2,3,2],[1,2,1,0]],[[0,0,2,1],[2,3,2,3],[0,2,3,2],[1,2,1,0]],[[0,0,2,1],[2,3,2,2],[0,2,4,2],[1,2,1,0]],[[0,0,2,1],[2,3,2,2],[0,2,3,3],[1,2,1,0]],[[0,0,2,2],[2,3,2,2],[0,3,2,2],[0,1,2,1]],[[0,0,2,1],[2,3,2,3],[0,3,2,2],[0,1,2,1]],[[0,0,2,1],[2,3,2,2],[0,3,2,3],[0,1,2,1]],[[0,0,2,1],[2,3,2,2],[0,3,2,2],[0,1,3,1]],[[0,0,2,1],[2,3,2,2],[0,3,2,2],[0,1,2,2]],[[0,0,2,1],[2,3,2,2],[0,3,4,1],[0,1,2,1]],[[0,0,2,1],[2,3,2,2],[0,3,3,1],[0,1,3,1]],[[0,0,2,1],[2,3,2,2],[0,3,3,1],[0,1,2,2]],[[0,0,2,2],[2,3,2,2],[0,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,2,3],[0,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,2,2],[0,3,4,2],[0,0,2,1]],[[0,0,2,1],[2,3,2,2],[0,3,3,3],[0,0,2,1]],[[0,0,2,1],[2,3,2,2],[0,3,3,2],[0,0,2,2]],[[0,0,2,2],[2,3,2,2],[0,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,2,3],[0,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,2,2],[0,3,4,2],[0,1,1,1]],[[0,0,2,1],[2,3,2,2],[0,3,3,3],[0,1,1,1]],[[0,0,2,1],[2,3,2,2],[0,3,3,2],[0,1,1,2]],[[0,0,2,2],[2,3,2,2],[0,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,2,3],[0,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,2,2],[0,3,4,2],[0,1,2,0]],[[0,0,2,1],[2,3,2,2],[0,3,3,3],[0,1,2,0]],[[0,0,2,1],[2,3,2,2],[0,3,3,2],[0,1,3,0]],[[0,0,2,2],[2,3,2,2],[0,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,3,2,3],[0,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,3,2,2],[0,3,4,2],[0,2,0,1]],[[0,0,2,1],[2,3,2,2],[0,3,3,3],[0,2,0,1]],[[0,0,2,1],[2,3,2,2],[0,3,3,2],[0,2,0,2]],[[0,0,2,2],[2,3,2,2],[0,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,3,2,3],[0,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,3,2,2],[0,3,4,2],[0,2,1,0]],[[0,0,2,1],[2,3,2,2],[0,3,3,3],[0,2,1,0]],[[0,0,2,2],[2,3,2,2],[1,0,2,2],[1,2,2,1]],[[0,0,2,1],[2,3,2,3],[1,0,2,2],[1,2,2,1]],[[0,0,2,1],[2,3,2,2],[1,0,2,3],[1,2,2,1]],[[0,0,2,1],[2,3,2,2],[1,0,2,2],[2,2,2,1]],[[0,0,2,1],[2,3,2,2],[1,0,2,2],[1,3,2,1]],[[0,0,2,1],[2,3,2,2],[1,0,2,2],[1,2,3,1]],[[0,0,2,1],[2,3,2,2],[1,0,2,2],[1,2,2,2]],[[0,0,2,1],[2,3,2,2],[1,0,4,1],[1,2,2,1]],[[0,0,2,1],[2,3,2,2],[1,0,3,1],[2,2,2,1]],[[0,0,2,1],[2,3,2,2],[1,0,3,1],[1,3,2,1]],[[0,0,2,1],[2,3,2,2],[1,0,3,1],[1,2,3,1]],[[0,0,2,1],[2,3,2,2],[1,0,3,1],[1,2,2,2]],[[0,0,2,2],[2,3,2,2],[1,0,3,2],[0,2,2,1]],[[0,0,2,1],[2,3,2,3],[1,0,3,2],[0,2,2,1]],[[0,0,2,1],[2,3,2,2],[1,0,3,3],[0,2,2,1]],[[0,0,2,1],[2,3,2,2],[1,0,3,2],[0,2,3,1]],[[0,0,2,1],[2,3,2,2],[1,0,3,2],[0,2,2,2]],[[0,0,2,2],[2,3,2,2],[1,0,3,2],[1,2,1,1]],[[0,0,2,1],[2,3,2,3],[1,0,3,2],[1,2,1,1]],[[0,0,2,1],[2,3,2,2],[1,0,4,2],[1,2,1,1]],[[0,0,2,1],[2,3,2,2],[1,0,3,3],[1,2,1,1]],[[0,0,2,1],[2,3,2,2],[1,0,3,2],[1,2,1,2]],[[0,0,2,2],[2,3,2,2],[1,0,3,2],[1,2,2,0]],[[0,0,2,1],[2,3,2,3],[1,0,3,2],[1,2,2,0]],[[0,0,2,1],[2,3,2,2],[1,0,4,2],[1,2,2,0]],[[0,0,2,1],[2,3,2,2],[1,0,3,3],[1,2,2,0]],[[0,0,2,1],[2,3,2,2],[1,0,3,2],[2,2,2,0]],[[0,0,2,1],[2,3,2,2],[1,0,3,2],[1,3,2,0]],[[0,0,2,1],[2,3,2,2],[1,0,3,2],[1,2,3,0]],[[0,0,2,2],[2,3,2,2],[1,1,2,2],[0,2,2,1]],[[0,0,2,1],[2,3,2,3],[1,1,2,2],[0,2,2,1]],[[0,0,2,1],[2,3,2,2],[1,1,2,3],[0,2,2,1]],[[0,0,2,1],[2,3,2,2],[1,1,2,2],[0,3,2,1]],[[0,0,2,1],[2,3,2,2],[1,1,2,2],[0,2,3,1]],[[0,0,2,1],[2,3,2,2],[1,1,2,2],[0,2,2,2]],[[0,0,2,1],[2,3,2,2],[1,1,4,1],[0,2,2,1]],[[0,0,2,1],[2,3,2,2],[1,1,3,1],[0,3,2,1]],[[0,0,2,1],[2,3,2,2],[1,1,3,1],[0,2,3,1]],[[0,0,2,1],[2,3,2,2],[1,1,3,1],[0,2,2,2]],[[0,0,2,2],[2,3,2,2],[1,1,3,2],[0,2,1,1]],[[0,0,2,1],[2,3,2,3],[1,1,3,2],[0,2,1,1]],[[0,0,2,1],[2,3,2,2],[1,1,4,2],[0,2,1,1]],[[0,0,2,1],[2,3,2,2],[1,1,3,3],[0,2,1,1]],[[0,0,2,1],[2,3,2,2],[1,1,3,2],[0,2,1,2]],[[0,0,2,2],[2,3,2,2],[1,1,3,2],[0,2,2,0]],[[0,0,2,1],[2,3,2,3],[1,1,3,2],[0,2,2,0]],[[0,0,2,1],[2,3,2,2],[1,1,4,2],[0,2,2,0]],[[0,0,2,1],[2,3,2,2],[1,1,3,3],[0,2,2,0]],[[0,0,2,1],[2,3,2,2],[1,1,3,2],[0,3,2,0]],[[0,0,2,1],[2,3,2,2],[1,1,3,2],[0,2,3,0]],[[0,0,2,2],[2,3,2,2],[1,2,2,2],[0,1,2,1]],[[0,0,2,1],[2,3,2,3],[1,2,2,2],[0,1,2,1]],[[0,0,2,1],[2,3,2,2],[1,2,2,3],[0,1,2,1]],[[0,0,2,1],[2,3,2,2],[1,2,2,2],[0,1,3,1]],[[0,0,2,1],[2,3,2,2],[1,2,2,2],[0,1,2,2]],[[0,0,2,2],[2,3,2,2],[1,2,2,2],[1,0,2,1]],[[0,0,2,1],[2,3,2,3],[1,2,2,2],[1,0,2,1]],[[0,0,2,1],[2,3,2,2],[1,2,2,3],[1,0,2,1]],[[0,0,2,1],[2,3,2,2],[1,2,2,2],[1,0,3,1]],[[0,0,2,1],[2,3,2,2],[1,2,2,2],[1,0,2,2]],[[0,0,2,1],[2,3,2,2],[1,2,4,1],[0,1,2,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,1],[0,1,3,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,1],[0,1,2,2]],[[0,0,2,1],[2,3,2,2],[1,2,4,1],[1,0,2,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,1],[1,0,3,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,1],[1,0,2,2]],[[0,0,2,2],[2,3,2,2],[1,2,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,2,3],[1,2,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,2,2],[1,2,4,2],[0,0,2,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,3],[0,0,2,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,2],[0,0,2,2]],[[0,0,2,2],[2,3,2,2],[1,2,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,2,3],[1,2,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,2,2],[1,2,4,2],[0,1,1,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,3],[0,1,1,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,2],[0,1,1,2]],[[0,0,2,2],[2,3,2,2],[1,2,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,2,3],[1,2,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,2,2],[1,2,4,2],[0,1,2,0]],[[0,0,2,1],[2,3,2,2],[1,2,3,3],[0,1,2,0]],[[0,0,2,1],[2,3,2,2],[1,2,3,2],[0,1,3,0]],[[0,0,2,2],[2,3,2,2],[1,2,3,2],[0,2,0,1]],[[0,0,2,1],[2,3,2,3],[1,2,3,2],[0,2,0,1]],[[0,0,2,1],[2,3,2,2],[1,2,4,2],[0,2,0,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,3],[0,2,0,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,2],[0,2,0,2]],[[0,0,2,2],[2,3,2,2],[1,2,3,2],[0,2,1,0]],[[0,0,2,1],[2,3,2,3],[1,2,3,2],[0,2,1,0]],[[0,0,2,1],[2,3,2,2],[1,2,4,2],[0,2,1,0]],[[0,0,2,1],[2,3,2,2],[1,2,3,3],[0,2,1,0]],[[0,0,2,2],[2,3,2,2],[1,2,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,2,3],[1,2,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,2,2],[1,2,4,2],[1,0,1,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,3],[1,0,1,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,2],[1,0,1,2]],[[0,0,2,2],[2,3,2,2],[1,2,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,2,3],[1,2,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,2,2],[1,2,4,2],[1,0,2,0]],[[0,0,2,1],[2,3,2,2],[1,2,3,3],[1,0,2,0]],[[0,0,2,1],[2,3,2,2],[1,2,3,2],[1,0,3,0]],[[0,0,2,2],[2,3,2,2],[1,2,3,2],[1,1,0,1]],[[0,0,2,1],[2,3,2,3],[1,2,3,2],[1,1,0,1]],[[0,0,2,1],[2,3,2,2],[1,2,4,2],[1,1,0,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,3],[1,1,0,1]],[[0,0,2,1],[2,3,2,2],[1,2,3,2],[1,1,0,2]],[[0,0,2,2],[2,3,2,2],[1,2,3,2],[1,1,1,0]],[[0,0,2,1],[2,3,2,3],[1,2,3,2],[1,1,1,0]],[[0,0,2,1],[2,3,2,2],[1,2,4,2],[1,1,1,0]],[[0,0,2,1],[2,3,2,2],[1,2,3,3],[1,1,1,0]],[[0,0,2,2],[2,3,2,2],[1,3,3,2],[0,0,1,1]],[[0,0,2,1],[2,3,2,3],[1,3,3,2],[0,0,1,1]],[[0,0,2,1],[2,3,2,2],[1,3,4,2],[0,0,1,1]],[[0,0,2,1],[2,3,2,2],[1,3,3,3],[0,0,1,1]],[[0,0,2,1],[2,3,2,2],[1,3,3,2],[0,0,1,2]],[[0,0,2,2],[2,3,2,2],[1,3,3,2],[0,0,2,0]],[[0,0,2,1],[2,3,2,3],[1,3,3,2],[0,0,2,0]],[[0,0,2,1],[2,3,2,2],[1,3,4,2],[0,0,2,0]],[[0,0,2,1],[2,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,3,2,2],[1,0,3,3],[1,0,0,1]],[[1,2,2,1],[2,3,2,3],[1,0,3,2],[1,0,0,1]],[[1,2,2,2],[2,3,2,2],[1,0,3,2],[1,0,0,1]],[[1,2,3,1],[2,3,2,2],[1,0,3,2],[1,0,0,1]],[[1,3,2,1],[2,3,2,2],[1,0,3,2],[1,0,0,1]],[[2,2,2,1],[2,3,2,2],[1,0,3,2],[1,0,0,1]],[[1,2,2,1],[2,3,2,2],[1,0,3,3],[0,1,0,1]],[[1,2,2,1],[2,3,2,3],[1,0,3,2],[0,1,0,1]],[[1,2,2,2],[2,3,2,2],[1,0,3,2],[0,1,0,1]],[[1,2,3,1],[2,3,2,2],[1,0,3,2],[0,1,0,1]],[[1,3,2,1],[2,3,2,2],[1,0,3,2],[0,1,0,1]],[[2,2,2,1],[2,3,2,2],[1,0,3,2],[0,1,0,1]],[[1,2,2,1],[2,3,2,3],[1,0,3,1],[1,1,1,0]],[[1,2,2,2],[2,3,2,2],[1,0,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,2,2],[1,0,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[1,0,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[1,0,3,1],[1,1,1,0]],[[0,0,2,2],[2,3,2,2],[2,0,2,2],[0,2,2,1]],[[0,0,2,1],[2,3,2,3],[2,0,2,2],[0,2,2,1]],[[0,0,2,1],[2,3,2,2],[2,0,2,3],[0,2,2,1]],[[0,0,2,1],[2,3,2,2],[2,0,2,2],[0,3,2,1]],[[0,0,2,1],[2,3,2,2],[2,0,2,2],[0,2,3,1]],[[0,0,2,1],[2,3,2,2],[2,0,2,2],[0,2,2,2]],[[0,0,2,2],[2,3,2,2],[2,0,2,2],[1,1,2,1]],[[0,0,2,1],[2,3,2,3],[2,0,2,2],[1,1,2,1]],[[0,0,2,1],[2,3,2,2],[2,0,2,3],[1,1,2,1]],[[0,0,2,1],[2,3,2,2],[2,0,2,2],[1,1,3,1]],[[0,0,2,1],[2,3,2,2],[2,0,2,2],[1,1,2,2]],[[0,0,2,1],[2,3,2,2],[2,0,4,1],[0,2,2,1]],[[0,0,2,1],[2,3,2,2],[2,0,3,1],[0,3,2,1]],[[0,0,2,1],[2,3,2,2],[2,0,3,1],[0,2,3,1]],[[0,0,2,1],[2,3,2,2],[2,0,3,1],[0,2,2,2]],[[0,0,2,1],[2,3,2,2],[2,0,4,1],[1,1,2,1]],[[0,0,2,1],[2,3,2,2],[2,0,3,1],[1,1,3,1]],[[0,0,2,1],[2,3,2,2],[2,0,3,1],[1,1,2,2]],[[0,0,2,2],[2,3,2,2],[2,0,3,2],[0,2,1,1]],[[0,0,2,1],[2,3,2,3],[2,0,3,2],[0,2,1,1]],[[0,0,2,1],[2,3,2,2],[2,0,4,2],[0,2,1,1]],[[0,0,2,1],[2,3,2,2],[2,0,3,3],[0,2,1,1]],[[0,0,2,1],[2,3,2,2],[2,0,3,2],[0,2,1,2]],[[0,0,2,2],[2,3,2,2],[2,0,3,2],[0,2,2,0]],[[0,0,2,1],[2,3,2,3],[2,0,3,2],[0,2,2,0]],[[0,0,2,1],[2,3,2,2],[2,0,4,2],[0,2,2,0]],[[0,0,2,1],[2,3,2,2],[2,0,3,3],[0,2,2,0]],[[0,0,2,1],[2,3,2,2],[2,0,3,2],[0,3,2,0]],[[0,0,2,1],[2,3,2,2],[2,0,3,2],[0,2,3,0]],[[0,0,2,2],[2,3,2,2],[2,0,3,2],[1,1,1,1]],[[0,0,2,1],[2,3,2,3],[2,0,3,2],[1,1,1,1]],[[0,0,2,1],[2,3,2,2],[2,0,4,2],[1,1,1,1]],[[0,0,2,1],[2,3,2,2],[2,0,3,3],[1,1,1,1]],[[0,0,2,1],[2,3,2,2],[2,0,3,2],[1,1,1,2]],[[0,0,2,2],[2,3,2,2],[2,0,3,2],[1,1,2,0]],[[0,0,2,1],[2,3,2,3],[2,0,3,2],[1,1,2,0]],[[0,0,2,1],[2,3,2,2],[2,0,4,2],[1,1,2,0]],[[0,0,2,1],[2,3,2,2],[2,0,3,3],[1,1,2,0]],[[0,0,2,1],[2,3,2,2],[2,0,3,2],[1,1,3,0]],[[0,0,2,2],[2,3,2,2],[2,0,3,2],[1,2,0,1]],[[0,0,2,1],[2,3,2,3],[2,0,3,2],[1,2,0,1]],[[0,0,2,1],[2,3,2,2],[2,0,4,2],[1,2,0,1]],[[0,0,2,1],[2,3,2,2],[2,0,3,3],[1,2,0,1]],[[0,0,2,1],[2,3,2,2],[2,0,3,2],[1,2,0,2]],[[0,0,2,2],[2,3,2,2],[2,0,3,2],[1,2,1,0]],[[0,0,2,1],[2,3,2,3],[2,0,3,2],[1,2,1,0]],[[0,0,2,1],[2,3,2,2],[2,0,4,2],[1,2,1,0]],[[0,0,2,1],[2,3,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[2,3,2,3],[1,0,3,1],[1,1,0,1]],[[1,2,2,2],[2,3,2,2],[1,0,3,1],[1,1,0,1]],[[1,2,3,1],[2,3,2,2],[1,0,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[1,0,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[1,0,3,1],[1,1,0,1]],[[0,0,2,2],[2,3,2,2],[2,1,2,2],[0,1,2,1]],[[0,0,2,1],[2,3,2,3],[2,1,2,2],[0,1,2,1]],[[0,0,2,1],[2,3,2,2],[2,1,2,3],[0,1,2,1]],[[0,0,2,1],[2,3,2,2],[2,1,2,2],[0,1,3,1]],[[0,0,2,1],[2,3,2,2],[2,1,2,2],[0,1,2,2]],[[0,0,2,2],[2,3,2,2],[2,1,2,2],[1,0,2,1]],[[0,0,2,1],[2,3,2,3],[2,1,2,2],[1,0,2,1]],[[0,0,2,1],[2,3,2,2],[2,1,2,3],[1,0,2,1]],[[0,0,2,1],[2,3,2,2],[2,1,2,2],[1,0,3,1]],[[0,0,2,1],[2,3,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[2,3,2,3],[1,0,3,1],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[1,0,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[1,0,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,2,2],[1,0,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[1,0,3,1],[1,0,2,0]],[[1,2,2,1],[2,3,2,3],[1,0,3,1],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[1,0,3,1],[1,0,1,1]],[[0,0,2,1],[2,3,2,2],[2,1,4,1],[0,1,2,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,1],[0,1,3,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,1],[0,1,2,2]],[[0,0,2,1],[2,3,2,2],[2,1,4,1],[1,0,2,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,1],[1,0,3,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,1],[1,0,2,2]],[[1,2,3,1],[2,3,2,2],[1,0,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[1,0,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[1,0,3,1],[1,0,1,1]],[[0,0,2,2],[2,3,2,2],[2,1,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,2,3],[2,1,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,2,2],[2,1,4,2],[0,0,2,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,3],[0,0,2,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,2],[0,0,2,2]],[[0,0,2,2],[2,3,2,2],[2,1,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,2,3],[2,1,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,2,2],[2,1,4,2],[0,1,1,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,3],[0,1,1,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,2],[0,1,1,2]],[[0,0,2,2],[2,3,2,2],[2,1,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,2,3],[2,1,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,2,2],[2,1,4,2],[0,1,2,0]],[[0,0,2,1],[2,3,2,2],[2,1,3,3],[0,1,2,0]],[[0,0,2,1],[2,3,2,2],[2,1,3,2],[0,1,3,0]],[[0,0,2,2],[2,3,2,2],[2,1,3,2],[0,2,0,1]],[[0,0,2,1],[2,3,2,3],[2,1,3,2],[0,2,0,1]],[[0,0,2,1],[2,3,2,2],[2,1,4,2],[0,2,0,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,3],[0,2,0,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,2],[0,2,0,2]],[[0,0,2,2],[2,3,2,2],[2,1,3,2],[0,2,1,0]],[[0,0,2,1],[2,3,2,3],[2,1,3,2],[0,2,1,0]],[[0,0,2,1],[2,3,2,2],[2,1,4,2],[0,2,1,0]],[[0,0,2,1],[2,3,2,2],[2,1,3,3],[0,2,1,0]],[[0,0,2,2],[2,3,2,2],[2,1,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,2,3],[2,1,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,2,2],[2,1,4,2],[1,0,1,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,3],[1,0,1,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,2],[1,0,1,2]],[[0,0,2,2],[2,3,2,2],[2,1,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,2,3],[2,1,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,2,2],[2,1,4,2],[1,0,2,0]],[[0,0,2,1],[2,3,2,2],[2,1,3,3],[1,0,2,0]],[[0,0,2,1],[2,3,2,2],[2,1,3,2],[1,0,3,0]],[[0,0,2,2],[2,3,2,2],[2,1,3,2],[1,1,0,1]],[[0,0,2,1],[2,3,2,3],[2,1,3,2],[1,1,0,1]],[[0,0,2,1],[2,3,2,2],[2,1,4,2],[1,1,0,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,3],[1,1,0,1]],[[0,0,2,1],[2,3,2,2],[2,1,3,2],[1,1,0,2]],[[0,0,2,2],[2,3,2,2],[2,1,3,2],[1,1,1,0]],[[0,0,2,1],[2,3,2,3],[2,1,3,2],[1,1,1,0]],[[0,0,2,1],[2,3,2,2],[2,1,4,2],[1,1,1,0]],[[0,0,2,1],[2,3,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[2,3,2,3],[1,0,3,1],[0,2,1,0]],[[1,2,2,2],[2,3,2,2],[1,0,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[1,0,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,2,2],[1,0,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[1,0,3,1],[0,2,1,0]],[[1,2,2,1],[2,3,2,3],[1,0,3,1],[0,2,0,1]],[[1,2,2,2],[2,3,2,2],[1,0,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,2,2],[1,0,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[1,0,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,2,2],[1,0,3,1],[0,2,0,1]],[[1,2,2,1],[2,3,2,3],[1,0,3,1],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[1,0,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[1,0,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[1,0,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[1,0,3,1],[0,1,2,0]],[[1,2,2,1],[2,3,2,3],[1,0,3,1],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[1,0,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[1,0,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[1,0,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[1,0,3,1],[0,1,1,1]],[[1,2,2,1],[2,3,2,3],[1,0,3,1],[0,0,2,1]],[[1,2,2,2],[2,3,2,2],[1,0,3,1],[0,0,2,1]],[[1,2,3,1],[2,3,2,2],[1,0,3,1],[0,0,2,1]],[[1,3,2,1],[2,3,2,2],[1,0,3,1],[0,0,2,1]],[[2,2,2,1],[2,3,2,2],[1,0,3,1],[0,0,2,1]],[[1,2,2,1],[2,3,2,3],[1,0,3,0],[1,0,2,1]],[[1,2,2,2],[2,3,2,2],[1,0,3,0],[1,0,2,1]],[[1,2,3,1],[2,3,2,2],[1,0,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,2,2],[1,0,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,2,2],[1,0,3,0],[1,0,2,1]],[[1,2,2,1],[2,3,2,3],[1,0,3,0],[0,1,2,1]],[[1,2,2,2],[2,3,2,2],[1,0,3,0],[0,1,2,1]],[[1,2,3,1],[2,3,2,2],[1,0,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,2,2],[1,0,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,2,2],[1,0,3,0],[0,1,2,1]],[[1,2,2,1],[2,3,2,3],[1,0,2,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,2],[1,0,2,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,2],[1,0,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[1,0,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[1,0,2,2],[1,1,1,0]],[[1,2,2,1],[2,3,2,2],[1,0,2,3],[1,1,0,1]],[[1,2,2,1],[2,3,2,3],[1,0,2,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,2],[1,0,2,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,2],[1,0,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[1,0,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[1,0,2,2],[1,1,0,1]],[[1,2,2,1],[2,3,2,2],[1,0,2,3],[1,0,2,0]],[[1,2,2,1],[2,3,2,3],[1,0,2,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[1,0,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[1,0,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,2],[1,0,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[1,0,2,2],[1,0,2,0]],[[1,2,2,1],[2,3,2,2],[1,0,2,2],[1,0,1,2]],[[1,2,2,1],[2,3,2,2],[1,0,2,3],[1,0,1,1]],[[1,2,2,1],[2,3,2,3],[1,0,2,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[1,0,2,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,2],[1,0,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[1,0,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[1,0,2,2],[1,0,1,1]],[[1,2,2,1],[2,3,2,3],[1,0,2,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,2],[1,0,2,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[1,0,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,2],[1,0,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[1,0,2,2],[0,2,1,0]],[[1,2,2,1],[2,3,2,2],[1,0,2,3],[0,2,0,1]],[[1,2,2,1],[2,3,2,3],[1,0,2,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,2],[1,0,2,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,2],[1,0,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[1,0,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,2,2],[1,0,2,2],[0,2,0,1]],[[1,2,2,1],[2,3,2,2],[1,0,2,3],[0,1,2,0]],[[1,2,2,1],[2,3,2,3],[1,0,2,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[1,0,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[1,0,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[1,0,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[1,0,2,2],[0,1,2,0]],[[1,2,2,1],[2,3,2,2],[1,0,2,2],[0,1,1,2]],[[1,2,2,1],[2,3,2,2],[1,0,2,3],[0,1,1,1]],[[1,2,2,1],[2,3,2,3],[1,0,2,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[1,0,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[1,0,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[1,0,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[1,0,2,2],[0,1,1,1]],[[1,2,2,1],[2,3,2,2],[1,0,2,2],[0,0,2,2]],[[1,2,2,1],[2,3,2,2],[1,0,2,3],[0,0,2,1]],[[1,2,2,1],[2,3,2,3],[1,0,2,2],[0,0,2,1]],[[1,2,2,2],[2,3,2,2],[1,0,2,2],[0,0,2,1]],[[1,2,3,1],[2,3,2,2],[1,0,2,2],[0,0,2,1]],[[1,3,2,1],[2,3,2,2],[1,0,2,2],[0,0,2,1]],[[2,2,2,1],[2,3,2,2],[1,0,2,2],[0,0,2,1]],[[1,2,2,1],[2,3,2,2],[1,0,1,2],[1,0,2,2]],[[1,2,2,1],[2,3,2,2],[1,0,1,3],[1,0,2,1]],[[1,2,2,1],[2,3,2,3],[1,0,1,2],[1,0,2,1]],[[1,2,2,2],[2,3,2,2],[1,0,1,2],[1,0,2,1]],[[1,2,3,1],[2,3,2,2],[1,0,1,2],[1,0,2,1]],[[1,3,2,1],[2,3,2,2],[1,0,1,2],[1,0,2,1]],[[2,2,2,1],[2,3,2,2],[1,0,1,2],[1,0,2,1]],[[1,2,2,1],[2,3,2,2],[1,0,1,2],[0,1,2,2]],[[1,2,2,1],[2,3,2,2],[1,0,1,3],[0,1,2,1]],[[1,2,2,1],[2,3,2,3],[1,0,1,2],[0,1,2,1]],[[1,2,2,2],[2,3,2,2],[1,0,1,2],[0,1,2,1]],[[1,2,3,1],[2,3,2,2],[1,0,1,2],[0,1,2,1]],[[1,3,2,1],[2,3,2,2],[1,0,1,2],[0,1,2,1]],[[2,2,2,1],[2,3,2,2],[1,0,1,2],[0,1,2,1]],[[1,2,2,1],[2,4,2,2],[0,3,3,0],[1,1,0,0]],[[1,2,2,2],[2,3,2,2],[0,3,3,0],[1,1,0,0]],[[1,2,3,1],[2,3,2,2],[0,3,3,0],[1,1,0,0]],[[1,3,2,1],[2,3,2,2],[0,3,3,0],[1,1,0,0]],[[2,2,2,1],[2,3,2,2],[0,3,3,0],[1,1,0,0]],[[1,2,2,1],[2,4,2,2],[0,3,3,0],[0,2,0,0]],[[1,2,2,2],[2,3,2,2],[0,3,3,0],[0,2,0,0]],[[1,2,3,1],[2,3,2,2],[0,3,3,0],[0,2,0,0]],[[1,3,2,1],[2,3,2,2],[0,3,3,0],[0,2,0,0]],[[2,2,2,1],[2,3,2,2],[0,3,3,0],[0,2,0,0]],[[1,2,2,1],[2,4,2,2],[0,3,3,0],[0,0,2,0]],[[1,2,2,2],[2,3,2,2],[0,3,3,0],[0,0,2,0]],[[1,2,3,1],[2,3,2,2],[0,3,3,0],[0,0,2,0]],[[1,3,2,1],[2,3,2,2],[0,3,3,0],[0,0,2,0]],[[2,2,2,1],[2,3,2,2],[0,3,3,0],[0,0,2,0]],[[1,2,2,1],[2,4,2,2],[0,3,3,0],[0,0,1,1]],[[1,2,2,2],[2,3,2,2],[0,3,3,0],[0,0,1,1]],[[1,2,3,1],[2,3,2,2],[0,3,3,0],[0,0,1,1]],[[1,3,2,1],[2,3,2,2],[0,3,3,0],[0,0,1,1]],[[2,2,2,1],[2,3,2,2],[0,3,3,0],[0,0,1,1]],[[1,2,2,1],[2,4,2,2],[0,3,2,0],[1,2,0,0]],[[1,2,2,2],[2,3,2,2],[0,3,2,0],[1,2,0,0]],[[1,2,3,1],[2,3,2,2],[0,3,2,0],[1,2,0,0]],[[1,3,2,1],[2,3,2,2],[0,3,2,0],[1,2,0,0]],[[2,2,2,1],[2,3,2,2],[0,3,2,0],[1,2,0,0]],[[1,2,2,1],[2,4,2,2],[0,3,2,0],[1,1,1,0]],[[1,2,2,2],[2,3,2,2],[0,3,2,0],[1,1,1,0]],[[1,2,3,1],[2,3,2,2],[0,3,2,0],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[0,3,2,0],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[0,3,2,0],[1,1,1,0]],[[1,2,2,1],[2,4,2,2],[0,3,2,0],[1,1,0,1]],[[1,2,2,2],[2,3,2,2],[0,3,2,0],[1,1,0,1]],[[1,2,3,1],[2,3,2,2],[0,3,2,0],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[0,3,2,0],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[0,3,2,0],[1,1,0,1]],[[1,2,2,1],[2,4,2,2],[0,3,2,0],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[0,3,2,0],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[0,3,2,0],[1,0,2,0]],[[1,3,2,1],[2,3,2,2],[0,3,2,0],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[0,3,2,0],[1,0,2,0]],[[1,2,2,1],[2,4,2,2],[0,3,2,0],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[0,3,2,0],[1,0,1,1]],[[1,2,3,1],[2,3,2,2],[0,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[0,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[0,3,2,0],[1,0,1,1]],[[1,2,2,1],[2,4,2,2],[0,3,2,0],[0,2,1,0]],[[1,2,2,2],[2,3,2,2],[0,3,2,0],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[0,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,3,2,2],[0,3,2,0],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[0,3,2,0],[0,2,1,0]],[[1,2,2,1],[2,4,2,2],[0,3,2,0],[0,2,0,1]],[[1,2,2,2],[2,3,2,2],[0,3,2,0],[0,2,0,1]],[[1,2,3,1],[2,3,2,2],[0,3,2,0],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[0,3,2,0],[0,2,0,1]],[[2,2,2,1],[2,3,2,2],[0,3,2,0],[0,2,0,1]],[[1,2,2,1],[2,4,2,2],[0,3,2,0],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[0,3,2,0],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[0,3,2,0],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[0,3,2,0],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[0,3,2,0],[0,1,2,0]],[[1,2,2,1],[2,4,2,2],[0,3,2,0],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[0,3,2,0],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[0,3,2,0],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[0,3,2,0],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[0,3,2,0],[0,1,1,1]],[[0,0,2,1],[2,3,3,0],[0,2,2,3],[1,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,2,2,2],[2,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,2,2,2],[1,3,2,1]],[[0,0,2,1],[2,3,3,0],[0,2,2,2],[1,2,3,1]],[[0,0,2,1],[2,3,3,0],[0,2,2,2],[1,2,2,2]],[[0,0,2,1],[2,3,4,0],[0,2,3,1],[1,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,2,4,1],[1,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,2,3,1],[2,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,2,3,1],[1,3,2,1]],[[0,0,2,1],[2,3,3,0],[0,2,3,1],[1,2,3,1]],[[0,0,2,1],[2,3,3,0],[0,2,3,1],[1,2,2,2]],[[0,0,2,1],[2,3,4,0],[0,2,3,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,0],[0,2,4,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,0],[0,2,3,3],[1,2,1,1]],[[0,0,2,1],[2,3,3,0],[0,2,3,2],[1,2,1,2]],[[0,0,2,1],[2,3,4,0],[0,2,3,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,0],[0,2,4,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,0],[0,2,3,3],[1,2,2,0]],[[0,0,2,1],[2,3,3,0],[0,2,3,2],[2,2,2,0]],[[0,0,2,1],[2,3,3,0],[0,2,3,2],[1,3,2,0]],[[0,0,2,1],[2,3,3,0],[0,2,3,2],[1,2,3,0]],[[0,0,2,1],[2,3,3,0],[0,4,1,2],[1,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,1,3],[1,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,1,2],[2,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,1,2],[1,3,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,1,2],[1,2,3,1]],[[0,0,2,1],[2,3,3,0],[0,3,1,2],[1,2,2,2]],[[0,0,2,1],[2,3,3,0],[0,4,2,1],[1,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,2,1],[2,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,2,1],[1,3,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,2,1],[1,2,3,1]],[[0,0,2,1],[2,3,3,0],[0,3,2,1],[1,2,2,2]],[[0,0,2,1],[2,3,3,0],[0,3,2,3],[1,1,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,2,2],[1,1,3,1]],[[0,0,2,1],[2,3,3,0],[0,3,2,2],[1,1,2,2]],[[0,0,2,1],[2,3,3,0],[0,4,2,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,0],[0,3,2,2],[2,2,2,0]],[[0,0,2,1],[2,3,3,0],[0,3,2,2],[1,3,2,0]],[[0,0,2,1],[2,3,3,0],[0,3,2,2],[1,2,3,0]],[[0,0,2,1],[2,3,3,0],[0,4,3,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,0],[2,2,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,0],[1,3,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,0],[1,2,3,1]],[[0,0,2,1],[2,3,4,0],[0,3,3,1],[1,1,2,1]],[[0,0,2,1],[2,3,3,0],[0,4,3,1],[1,1,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,4,1],[1,1,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,1],[1,1,3,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,1],[1,1,2,2]],[[0,0,2,1],[2,3,4,0],[0,3,3,1],[1,2,1,1]],[[0,0,2,1],[2,3,3,0],[0,4,3,1],[1,2,1,1]],[[0,0,2,1],[2,3,3,0],[0,3,4,1],[1,2,1,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,1],[2,2,1,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,1],[1,3,1,1]],[[0,0,2,1],[2,3,4,0],[0,3,3,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,4,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,3],[1,0,2,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,2],[1,0,2,2]],[[0,0,2,1],[2,3,4,0],[0,3,3,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,0],[0,4,3,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,0],[0,3,4,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,3],[1,1,1,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,2],[1,1,1,2]],[[0,0,2,1],[2,3,4,0],[0,3,3,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,0],[0,4,3,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,0],[0,3,4,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,0],[0,3,3,3],[1,1,2,0]],[[0,0,2,1],[2,3,3,0],[0,3,3,2],[1,1,3,0]],[[0,0,2,1],[2,3,4,0],[0,3,3,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,0],[0,4,3,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,0],[0,3,4,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,3],[1,2,0,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,2],[2,2,0,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,2],[1,3,0,1]],[[0,0,2,1],[2,3,3,0],[0,3,3,2],[1,2,0,2]],[[0,0,2,1],[2,3,4,0],[0,3,3,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,0],[0,4,3,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,0],[0,3,4,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,0],[0,3,3,3],[1,2,1,0]],[[0,0,2,1],[2,3,3,0],[0,3,3,2],[2,2,1,0]],[[0,0,2,1],[2,3,3,0],[0,3,3,2],[1,3,1,0]],[[0,0,2,1],[2,3,3,0],[1,2,2,3],[0,2,2,1]],[[0,0,2,1],[2,3,3,0],[1,2,2,2],[0,3,2,1]],[[0,0,2,1],[2,3,3,0],[1,2,2,2],[0,2,3,1]],[[0,0,2,1],[2,3,3,0],[1,2,2,2],[0,2,2,2]],[[0,0,2,1],[2,3,4,0],[1,2,3,1],[0,2,2,1]],[[0,0,2,1],[2,3,3,0],[1,2,4,1],[0,2,2,1]],[[0,0,2,1],[2,3,3,0],[1,2,3,1],[0,3,2,1]],[[0,0,2,1],[2,3,3,0],[1,2,3,1],[0,2,3,1]],[[0,0,2,1],[2,3,3,0],[1,2,3,1],[0,2,2,2]],[[0,0,2,1],[2,3,4,0],[1,2,3,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,0],[1,2,4,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,0],[1,2,3,3],[0,2,1,1]],[[0,0,2,1],[2,3,3,0],[1,2,3,2],[0,2,1,2]],[[0,0,2,1],[2,3,4,0],[1,2,3,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,0],[1,2,4,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,0],[1,2,3,3],[0,2,2,0]],[[0,0,2,1],[2,3,3,0],[1,2,3,2],[0,3,2,0]],[[0,0,2,1],[2,3,3,0],[1,2,3,2],[0,2,3,0]],[[0,0,2,1],[2,3,3,0],[1,4,1,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,1,3],[0,2,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,1,2],[0,3,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,1,2],[0,2,3,1]],[[0,0,2,1],[2,3,3,0],[1,3,1,2],[0,2,2,2]],[[0,0,2,1],[2,3,3,0],[1,4,2,1],[0,2,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,2,1],[0,3,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,2,1],[0,2,3,1]],[[0,0,2,1],[2,3,3,0],[1,3,2,1],[0,2,2,2]],[[0,0,2,1],[2,3,3,0],[1,3,2,3],[0,1,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,2,2],[0,1,3,1]],[[0,0,2,1],[2,3,3,0],[1,3,2,2],[0,1,2,2]],[[0,0,2,1],[2,3,3,0],[1,4,2,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,0],[1,3,2,2],[0,3,2,0]],[[0,0,2,1],[2,3,3,0],[1,3,2,2],[0,2,3,0]],[[0,0,2,1],[2,3,3,0],[1,3,2,3],[1,0,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,2,2],[1,0,3,1]],[[0,0,2,1],[2,3,3,0],[1,3,2,2],[1,0,2,2]],[[0,0,2,1],[2,3,3,0],[1,4,3,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,0],[0,3,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,0],[0,2,3,1]],[[0,0,2,1],[2,3,4,0],[1,3,3,1],[0,1,2,1]],[[0,0,2,1],[2,3,3,0],[1,4,3,1],[0,1,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,4,1],[0,1,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,1],[0,1,3,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,1],[0,1,2,2]],[[0,0,2,1],[2,3,4,0],[1,3,3,1],[0,2,1,1]],[[0,0,2,1],[2,3,3,0],[1,4,3,1],[0,2,1,1]],[[0,0,2,1],[2,3,3,0],[1,3,4,1],[0,2,1,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,1],[0,3,1,1]],[[0,0,2,1],[2,3,4,0],[1,3,3,1],[1,0,2,1]],[[0,0,2,1],[2,3,3,0],[1,4,3,1],[1,0,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,4,1],[1,0,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,1],[1,0,3,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,1],[1,0,2,2]],[[0,0,2,1],[2,3,4,0],[1,3,3,1],[1,1,1,1]],[[0,0,2,1],[2,3,3,0],[1,4,3,1],[1,1,1,1]],[[0,0,2,1],[2,3,3,0],[1,3,4,1],[1,1,1,1]],[[0,0,2,1],[2,3,4,0],[1,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,4,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,3],[0,0,2,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,2],[0,0,2,2]],[[0,0,2,1],[2,3,4,0],[1,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,0],[1,4,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,0],[1,3,4,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,2],[0,1,1,2]],[[0,0,2,1],[2,3,4,0],[1,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,0],[1,4,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,0],[1,3,4,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,0],[1,3,3,3],[0,1,2,0]],[[0,0,2,1],[2,3,3,0],[1,3,3,2],[0,1,3,0]],[[0,0,2,1],[2,3,4,0],[1,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,0],[1,4,3,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,0],[1,3,4,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,3],[0,2,0,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,2],[0,3,0,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,2],[0,2,0,2]],[[0,0,2,1],[2,3,4,0],[1,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,0],[1,4,3,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,0],[1,3,4,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,0],[1,3,3,3],[0,2,1,0]],[[0,0,2,1],[2,3,3,0],[1,3,3,2],[0,3,1,0]],[[0,0,2,1],[2,3,4,0],[1,3,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,0],[1,4,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,0],[1,3,4,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,3],[1,0,1,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,2],[1,0,1,2]],[[0,0,2,1],[2,3,4,0],[1,3,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,0],[1,4,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,0],[1,3,4,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,0],[1,3,3,3],[1,0,2,0]],[[0,0,2,1],[2,3,3,0],[1,3,3,2],[1,0,3,0]],[[0,0,2,1],[2,3,4,0],[1,3,3,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,0],[1,4,3,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,0],[1,3,4,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,3],[1,1,0,1]],[[0,0,2,1],[2,3,3,0],[1,3,3,2],[1,1,0,2]],[[0,0,2,1],[2,3,4,0],[1,3,3,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,0],[1,4,3,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,0],[1,3,4,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,0],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,4,2,2],[0,3,1,0],[1,1,2,0]],[[1,2,2,2],[2,3,2,2],[0,3,1,0],[1,1,2,0]],[[1,2,3,1],[2,3,2,2],[0,3,1,0],[1,1,2,0]],[[1,3,2,1],[2,3,2,2],[0,3,1,0],[1,1,2,0]],[[2,2,2,1],[2,3,2,2],[0,3,1,0],[1,1,2,0]],[[1,2,2,1],[2,4,2,2],[0,3,1,0],[0,2,2,0]],[[1,2,2,2],[2,3,2,2],[0,3,1,0],[0,2,2,0]],[[1,2,3,1],[2,3,2,2],[0,3,1,0],[0,2,2,0]],[[1,3,2,1],[2,3,2,2],[0,3,1,0],[0,2,2,0]],[[2,2,2,1],[2,3,2,2],[0,3,1,0],[0,2,2,0]],[[1,2,2,1],[2,4,2,2],[0,3,0,2],[1,2,0,0]],[[1,2,2,2],[2,3,2,2],[0,3,0,2],[1,2,0,0]],[[1,2,3,1],[2,3,2,2],[0,3,0,2],[1,2,0,0]],[[1,3,2,1],[2,3,2,2],[0,3,0,2],[1,2,0,0]],[[2,2,2,1],[2,3,2,2],[0,3,0,2],[1,2,0,0]],[[1,2,2,1],[2,3,2,3],[0,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,4,2,2],[0,3,0,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,2],[0,3,0,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,2],[0,3,0,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[0,3,0,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[0,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,3,2,3],[0,3,0,2],[1,1,0,1]],[[1,2,2,1],[2,4,2,2],[0,3,0,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,2],[0,3,0,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,2],[0,3,0,2],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[0,3,0,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[0,3,0,2],[1,1,0,1]],[[1,2,2,1],[2,3,2,3],[0,3,0,2],[1,0,2,0]],[[1,2,2,1],[2,4,2,2],[0,3,0,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[0,3,0,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[0,3,0,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,2],[0,3,0,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[0,3,0,2],[1,0,2,0]],[[1,2,2,1],[2,3,2,3],[0,3,0,2],[1,0,1,1]],[[1,2,2,1],[2,4,2,2],[0,3,0,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[0,3,0,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,2],[0,3,0,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[0,3,0,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[0,3,0,2],[1,0,1,1]],[[1,2,2,1],[2,3,2,3],[0,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,4,2,2],[0,3,0,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,2],[0,3,0,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[0,3,0,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,2],[0,3,0,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[0,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,3,2,3],[0,3,0,2],[0,2,0,1]],[[1,2,2,1],[2,4,2,2],[0,3,0,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,2],[0,3,0,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,2],[0,3,0,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[0,3,0,2],[0,2,0,1]],[[2,2,2,1],[2,3,2,2],[0,3,0,2],[0,2,0,1]],[[1,2,2,1],[2,3,2,3],[0,3,0,2],[0,1,2,0]],[[1,2,2,1],[2,4,2,2],[0,3,0,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[0,3,0,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[0,3,0,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[0,3,0,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[0,3,0,2],[0,1,2,0]],[[1,2,2,1],[2,3,2,3],[0,3,0,2],[0,1,1,1]],[[1,2,2,1],[2,4,2,2],[0,3,0,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[0,3,0,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[0,3,0,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[0,3,0,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[0,3,0,2],[0,1,1,1]],[[1,2,2,1],[2,3,2,2],[0,2,3,3],[0,0,0,1]],[[1,2,2,1],[2,3,2,3],[0,2,3,2],[0,0,0,1]],[[1,2,2,2],[2,3,2,2],[0,2,3,2],[0,0,0,1]],[[1,2,3,1],[2,3,2,2],[0,2,3,2],[0,0,0,1]],[[1,3,2,1],[2,3,2,2],[0,2,3,2],[0,0,0,1]],[[2,2,2,1],[2,3,2,2],[0,2,3,2],[0,0,0,1]],[[0,0,2,1],[2,3,3,1],[0,0,3,3],[1,2,2,1]],[[0,0,2,1],[2,3,3,1],[0,0,3,2],[1,2,3,1]],[[0,0,2,1],[2,3,3,1],[0,0,3,2],[1,2,2,2]],[[0,0,2,1],[2,3,3,1],[0,1,2,3],[1,2,2,1]],[[0,0,2,1],[2,3,3,1],[0,1,2,2],[2,2,2,1]],[[0,0,2,1],[2,3,3,1],[0,1,2,2],[1,3,2,1]],[[0,0,2,1],[2,3,3,1],[0,1,2,2],[1,2,3,1]],[[0,0,2,1],[2,3,3,1],[0,1,2,2],[1,2,2,2]],[[0,0,2,1],[2,3,4,1],[0,1,3,1],[1,2,2,1]],[[0,0,2,1],[2,3,3,1],[0,1,4,1],[1,2,2,1]],[[0,0,2,1],[2,3,3,1],[0,1,3,1],[2,2,2,1]],[[0,0,2,1],[2,3,3,1],[0,1,3,1],[1,3,2,1]],[[0,0,2,1],[2,3,3,1],[0,1,3,1],[1,2,3,1]],[[0,0,2,1],[2,3,3,1],[0,1,3,1],[1,2,2,2]],[[0,0,2,1],[2,3,4,1],[0,1,3,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,1],[0,1,4,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,1],[0,1,3,3],[1,2,1,1]],[[0,0,2,1],[2,3,3,1],[0,1,3,2],[1,2,1,2]],[[0,0,2,1],[2,3,4,1],[0,1,3,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,1],[0,1,4,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,1],[0,1,3,3],[1,2,2,0]],[[0,0,2,1],[2,3,3,1],[0,1,3,2],[2,2,2,0]],[[0,0,2,1],[2,3,3,1],[0,1,3,2],[1,3,2,0]],[[0,0,2,1],[2,3,3,1],[0,1,3,2],[1,2,3,0]],[[0,0,2,1],[2,3,3,1],[0,2,2,3],[1,1,2,1]],[[0,0,2,1],[2,3,3,1],[0,2,2,2],[1,1,3,1]],[[0,0,2,1],[2,3,3,1],[0,2,2,2],[1,1,2,2]],[[0,0,2,1],[2,3,4,1],[0,2,3,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,1],[0,2,4,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,0],[2,2,2,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,0],[1,3,2,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,0],[1,2,3,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,0],[1,2,2,2]],[[0,0,2,1],[2,3,4,1],[0,2,3,1],[1,1,2,1]],[[0,0,2,1],[2,3,3,1],[0,2,4,1],[1,1,2,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,1],[1,1,3,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,1],[1,1,2,2]],[[0,0,2,1],[2,3,4,1],[0,2,3,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,1],[0,2,4,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,1],[0,2,3,1],[2,2,2,0]],[[0,0,2,1],[2,3,3,1],[0,2,3,1],[1,3,2,0]],[[0,0,2,1],[2,3,3,1],[0,2,3,1],[1,2,3,0]],[[0,0,2,1],[2,3,4,1],[0,2,3,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[0,2,4,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,3],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,2],[1,0,2,2]],[[0,0,2,1],[2,3,4,1],[0,2,3,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,1],[0,2,4,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,3],[1,1,1,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,2],[1,1,1,2]],[[0,0,2,1],[2,3,4,1],[0,2,3,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,1],[0,2,4,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,1],[0,2,3,3],[1,1,2,0]],[[0,0,2,1],[2,3,3,1],[0,2,3,2],[1,1,3,0]],[[0,0,2,1],[2,3,4,1],[0,2,3,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,1],[0,2,4,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,3],[1,2,0,1]],[[0,0,2,1],[2,3,3,1],[0,2,3,2],[1,2,0,2]],[[0,0,2,1],[2,3,4,1],[0,2,3,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,1],[0,2,4,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,1],[0,2,3,3],[1,2,1,0]],[[0,0,2,1],[2,3,3,1],[0,4,2,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,1],[0,3,2,0],[2,2,2,1]],[[0,0,2,1],[2,3,3,1],[0,3,2,0],[1,3,2,1]],[[0,0,2,1],[2,3,3,1],[0,3,2,0],[1,2,3,1]],[[0,0,2,1],[2,3,3,1],[0,3,2,0],[1,2,2,2]],[[0,0,2,1],[2,3,3,1],[0,4,2,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,1],[0,3,2,1],[2,2,2,0]],[[0,0,2,1],[2,3,3,1],[0,3,2,1],[1,3,2,0]],[[0,0,2,1],[2,3,3,1],[0,3,2,1],[1,2,3,0]],[[0,0,2,1],[2,3,3,1],[0,3,2,3],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[0,3,2,2],[0,1,3,1]],[[0,0,2,1],[2,3,3,1],[0,3,2,2],[0,1,2,2]],[[0,0,2,1],[2,3,4,1],[0,3,3,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,1],[0,4,3,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,1],[0,3,4,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,0],[1,1,3,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,0],[1,1,2,2]],[[0,0,2,1],[2,3,4,1],[0,3,3,0],[1,2,1,1]],[[0,0,2,1],[2,3,3,1],[0,4,3,0],[1,2,1,1]],[[0,0,2,1],[2,3,3,1],[0,3,4,0],[1,2,1,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,0],[2,2,1,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,0],[1,3,1,1]],[[0,0,2,1],[2,3,4,1],[0,3,3,1],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[0,3,4,1],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,1],[0,1,3,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,1],[0,1,2,2]],[[0,0,2,1],[2,3,4,1],[0,3,3,1],[1,1,1,1]],[[0,0,2,1],[2,3,3,1],[0,4,3,1],[1,1,1,1]],[[0,0,2,1],[2,3,3,1],[0,3,4,1],[1,1,1,1]],[[0,0,2,1],[2,3,4,1],[0,3,3,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,1],[0,4,3,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,1],[0,3,4,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,1],[0,3,3,1],[1,1,3,0]],[[0,0,2,1],[2,3,4,1],[0,3,3,1],[1,2,0,1]],[[0,0,2,1],[2,3,3,1],[0,4,3,1],[1,2,0,1]],[[0,0,2,1],[2,3,3,1],[0,3,4,1],[1,2,0,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,1],[2,2,0,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,1],[1,3,0,1]],[[0,0,2,1],[2,3,4,1],[0,3,3,1],[1,2,1,0]],[[0,0,2,1],[2,3,3,1],[0,4,3,1],[1,2,1,0]],[[0,0,2,1],[2,3,3,1],[0,3,4,1],[1,2,1,0]],[[0,0,2,1],[2,3,3,1],[0,3,3,1],[2,2,1,0]],[[0,0,2,1],[2,3,3,1],[0,3,3,1],[1,3,1,0]],[[0,0,2,1],[2,3,4,1],[0,3,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,1],[0,3,4,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,3],[0,0,2,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,2],[0,0,2,2]],[[0,0,2,1],[2,3,4,1],[0,3,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,1],[0,3,4,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,2],[0,1,1,2]],[[0,0,2,1],[2,3,4,1],[0,3,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[0,3,4,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[0,3,3,3],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[0,3,3,2],[0,1,3,0]],[[0,0,2,1],[2,3,4,1],[0,3,3,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[0,3,4,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,3],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[0,3,3,2],[0,2,0,2]],[[0,0,2,1],[2,3,4,1],[0,3,3,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,1],[0,3,4,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,3,2,3],[0,2,3,1],[0,0,2,0]],[[1,2,2,2],[2,3,2,2],[0,2,3,1],[0,0,2,0]],[[1,2,3,1],[2,3,2,2],[0,2,3,1],[0,0,2,0]],[[1,3,2,1],[2,3,2,2],[0,2,3,1],[0,0,2,0]],[[2,2,2,1],[2,3,2,2],[0,2,3,1],[0,0,2,0]],[[1,2,2,1],[2,3,2,3],[0,2,3,1],[0,0,1,1]],[[1,2,2,2],[2,3,2,2],[0,2,3,1],[0,0,1,1]],[[1,2,3,1],[2,3,2,2],[0,2,3,1],[0,0,1,1]],[[1,3,2,1],[2,3,2,2],[0,2,3,1],[0,0,1,1]],[[2,2,2,1],[2,3,2,2],[0,2,3,1],[0,0,1,1]],[[0,0,2,1],[2,3,3,1],[1,0,2,3],[1,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,0,2,2],[2,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,0,2,2],[1,3,2,1]],[[0,0,2,1],[2,3,3,1],[1,0,2,2],[1,2,3,1]],[[0,0,2,1],[2,3,3,1],[1,0,2,2],[1,2,2,2]],[[0,0,2,1],[2,3,4,1],[1,0,3,1],[1,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,0,4,1],[1,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,0,3,1],[2,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,0,3,1],[1,3,2,1]],[[0,0,2,1],[2,3,3,1],[1,0,3,1],[1,2,3,1]],[[0,0,2,1],[2,3,3,1],[1,0,3,1],[1,2,2,2]],[[0,0,2,1],[2,3,3,1],[1,0,3,3],[0,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,0,3,2],[0,2,3,1]],[[0,0,2,1],[2,3,3,1],[1,0,3,2],[0,2,2,2]],[[0,0,2,1],[2,3,4,1],[1,0,3,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,1],[1,0,4,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,1],[1,0,3,3],[1,2,1,1]],[[0,0,2,1],[2,3,3,1],[1,0,3,2],[1,2,1,2]],[[0,0,2,1],[2,3,4,1],[1,0,3,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,1],[1,0,4,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,1],[1,0,3,3],[1,2,2,0]],[[0,0,2,1],[2,3,3,1],[1,0,3,2],[2,2,2,0]],[[0,0,2,1],[2,3,3,1],[1,0,3,2],[1,3,2,0]],[[0,0,2,1],[2,3,3,1],[1,0,3,2],[1,2,3,0]],[[0,0,2,1],[2,3,3,1],[1,1,2,3],[0,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,1,2,2],[0,3,2,1]],[[0,0,2,1],[2,3,3,1],[1,1,2,2],[0,2,3,1]],[[0,0,2,1],[2,3,3,1],[1,1,2,2],[0,2,2,2]],[[0,0,2,1],[2,3,4,1],[1,1,3,1],[0,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,1,4,1],[0,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,1,3,1],[0,3,2,1]],[[0,0,2,1],[2,3,3,1],[1,1,3,1],[0,2,3,1]],[[0,0,2,1],[2,3,3,1],[1,1,3,1],[0,2,2,2]],[[0,0,2,1],[2,3,4,1],[1,1,3,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,1],[1,1,4,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,1],[1,1,3,3],[0,2,1,1]],[[0,0,2,1],[2,3,3,1],[1,1,3,2],[0,2,1,2]],[[0,0,2,1],[2,3,4,1],[1,1,3,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,1],[1,1,4,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,1],[1,1,3,3],[0,2,2,0]],[[0,0,2,1],[2,3,3,1],[1,1,3,2],[0,3,2,0]],[[0,0,2,1],[2,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,4,2,2],[0,2,3,0],[1,1,1,0]],[[1,2,2,2],[2,3,2,2],[0,2,3,0],[1,1,1,0]],[[0,0,2,1],[2,3,3,1],[1,2,2,3],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,2,2],[0,1,3,1]],[[0,0,2,1],[2,3,3,1],[1,2,2,2],[0,1,2,2]],[[0,0,2,1],[2,3,3,1],[1,2,2,3],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,2,2],[1,0,3,1]],[[0,0,2,1],[2,3,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,3,1],[2,3,2,2],[0,2,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[0,2,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[0,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,4,2,2],[0,2,3,0],[1,1,0,1]],[[1,2,2,2],[2,3,2,2],[0,2,3,0],[1,1,0,1]],[[0,0,2,1],[2,3,4,1],[1,2,3,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,4,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,0],[0,3,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,0],[0,2,3,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,0],[0,2,2,2]],[[0,0,2,1],[2,3,4,1],[1,2,3,1],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,4,1],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,1],[0,1,3,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,1],[0,1,2,2]],[[0,0,2,1],[2,3,4,1],[1,2,3,1],[0,2,2,0]],[[0,0,2,1],[2,3,3,1],[1,2,4,1],[0,2,2,0]],[[0,0,2,1],[2,3,3,1],[1,2,3,1],[0,3,2,0]],[[0,0,2,1],[2,3,3,1],[1,2,3,1],[0,2,3,0]],[[0,0,2,1],[2,3,4,1],[1,2,3,1],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,4,1],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,1],[1,0,3,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,1],[1,0,2,2]],[[1,2,3,1],[2,3,2,2],[0,2,3,0],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[0,2,3,0],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[0,2,3,0],[1,1,0,1]],[[0,0,2,1],[2,3,4,1],[1,2,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,4,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,3],[0,0,2,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,2],[0,0,2,2]],[[0,0,2,1],[2,3,4,1],[1,2,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,1],[1,2,4,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,2],[0,1,1,2]],[[0,0,2,1],[2,3,4,1],[1,2,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[1,2,4,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[1,2,3,3],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[1,2,3,2],[0,1,3,0]],[[0,0,2,1],[2,3,4,1],[1,2,3,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[1,2,4,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,3],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,2],[0,2,0,2]],[[0,0,2,1],[2,3,4,1],[1,2,3,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,1],[1,2,4,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,4,2,2],[0,2,3,0],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[0,2,3,0],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[0,2,3,0],[1,0,2,0]],[[0,0,2,1],[2,3,4,1],[1,2,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,1],[1,2,4,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,3],[1,0,1,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,2],[1,0,1,2]],[[0,0,2,1],[2,3,4,1],[1,2,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,1],[1,2,4,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,1],[1,2,3,3],[1,0,2,0]],[[0,0,2,1],[2,3,3,1],[1,2,3,2],[1,0,3,0]],[[0,0,2,1],[2,3,4,1],[1,2,3,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,1],[1,2,4,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,3],[1,1,0,1]],[[0,0,2,1],[2,3,3,1],[1,2,3,2],[1,1,0,2]],[[0,0,2,1],[2,3,4,1],[1,2,3,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,1],[1,2,4,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,1],[1,2,3,3],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[0,2,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[0,2,3,0],[1,0,2,0]],[[1,2,2,1],[2,4,2,2],[0,2,3,0],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[0,2,3,0],[1,0,1,1]],[[1,2,3,1],[2,3,2,2],[0,2,3,0],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[0,2,3,0],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[0,2,3,0],[1,0,1,1]],[[1,2,2,1],[2,4,2,2],[0,2,3,0],[0,2,1,0]],[[1,2,2,2],[2,3,2,2],[0,2,3,0],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[0,2,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,2,2],[0,2,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[0,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,4,2,2],[0,2,3,0],[0,2,0,1]],[[1,2,2,2],[2,3,2,2],[0,2,3,0],[0,2,0,1]],[[1,2,3,1],[2,3,2,2],[0,2,3,0],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[0,2,3,0],[0,2,0,1]],[[2,2,2,1],[2,3,2,2],[0,2,3,0],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[1,4,2,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,1],[1,3,2,0],[0,3,2,1]],[[0,0,2,1],[2,3,3,1],[1,3,2,0],[0,2,3,1]],[[0,0,2,1],[2,3,3,1],[1,3,2,0],[0,2,2,2]],[[0,0,2,1],[2,3,3,1],[1,4,2,1],[0,2,2,0]],[[0,0,2,1],[2,3,3,1],[1,3,2,1],[0,3,2,0]],[[0,0,2,1],[2,3,3,1],[1,3,2,1],[0,2,3,0]],[[1,2,2,1],[2,4,2,2],[0,2,3,0],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[0,2,3,0],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[0,2,3,0],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[0,2,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[0,2,3,0],[0,1,2,0]],[[1,2,2,1],[2,4,2,2],[0,2,3,0],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[0,2,3,0],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[0,2,3,0],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[0,2,3,0],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[0,2,3,0],[0,1,1,1]],[[0,0,2,1],[2,3,4,1],[1,3,3,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[1,4,3,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[1,3,4,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[1,3,3,0],[0,1,3,1]],[[0,0,2,1],[2,3,3,1],[1,3,3,0],[0,1,2,2]],[[0,0,2,1],[2,3,4,1],[1,3,3,0],[0,2,1,1]],[[0,0,2,1],[2,3,3,1],[1,4,3,0],[0,2,1,1]],[[0,0,2,1],[2,3,3,1],[1,3,4,0],[0,2,1,1]],[[0,0,2,1],[2,3,3,1],[1,3,3,0],[0,3,1,1]],[[0,0,2,1],[2,3,4,1],[1,3,3,0],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[1,4,3,0],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[1,3,4,0],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[1,3,3,0],[1,0,3,1]],[[0,0,2,1],[2,3,3,1],[1,3,3,0],[1,0,2,2]],[[0,0,2,1],[2,3,4,1],[1,3,3,0],[1,1,1,1]],[[0,0,2,1],[2,3,3,1],[1,4,3,0],[1,1,1,1]],[[0,0,2,1],[2,3,3,1],[1,3,4,0],[1,1,1,1]],[[0,0,2,1],[2,3,4,1],[1,3,3,1],[0,1,1,1]],[[0,0,2,1],[2,3,3,1],[1,4,3,1],[0,1,1,1]],[[0,0,2,1],[2,3,3,1],[1,3,4,1],[0,1,1,1]],[[0,0,2,1],[2,3,4,1],[1,3,3,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[1,4,3,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[1,3,4,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[1,3,3,1],[0,1,3,0]],[[0,0,2,1],[2,3,4,1],[1,3,3,1],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[1,4,3,1],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[1,3,4,1],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[1,3,3,1],[0,3,0,1]],[[0,0,2,1],[2,3,4,1],[1,3,3,1],[0,2,1,0]],[[0,0,2,1],[2,3,3,1],[1,4,3,1],[0,2,1,0]],[[0,0,2,1],[2,3,3,1],[1,3,4,1],[0,2,1,0]],[[0,0,2,1],[2,3,3,1],[1,3,3,1],[0,3,1,0]],[[0,0,2,1],[2,3,4,1],[1,3,3,1],[1,0,1,1]],[[0,0,2,1],[2,3,3,1],[1,4,3,1],[1,0,1,1]],[[0,0,2,1],[2,3,3,1],[1,3,4,1],[1,0,1,1]],[[0,0,2,1],[2,3,4,1],[1,3,3,1],[1,0,2,0]],[[0,0,2,1],[2,3,3,1],[1,4,3,1],[1,0,2,0]],[[0,0,2,1],[2,3,3,1],[1,3,4,1],[1,0,2,0]],[[0,0,2,1],[2,3,3,1],[1,3,3,1],[1,0,3,0]],[[0,0,2,1],[2,3,4,1],[1,3,3,1],[1,1,0,1]],[[0,0,2,1],[2,3,3,1],[1,4,3,1],[1,1,0,1]],[[0,0,2,1],[2,3,3,1],[1,3,4,1],[1,1,0,1]],[[0,0,2,1],[2,3,4,1],[1,3,3,1],[1,1,1,0]],[[0,0,2,1],[2,3,3,1],[1,4,3,1],[1,1,1,0]],[[0,0,2,1],[2,3,3,1],[1,3,4,1],[1,1,1,0]],[[0,0,2,1],[2,3,4,1],[1,3,3,2],[0,0,1,1]],[[0,0,2,1],[2,3,3,1],[1,3,4,2],[0,0,1,1]],[[0,0,2,1],[2,3,3,1],[1,3,3,3],[0,0,1,1]],[[0,0,2,1],[2,3,3,1],[1,3,3,2],[0,0,1,2]],[[0,0,2,1],[2,3,4,1],[1,3,3,2],[0,0,2,0]],[[0,0,2,1],[2,3,3,1],[1,3,4,2],[0,0,2,0]],[[0,0,2,1],[2,3,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,3,2,3],[0,2,2,2],[0,0,2,0]],[[1,2,2,2],[2,3,2,2],[0,2,2,2],[0,0,2,0]],[[1,2,3,1],[2,3,2,2],[0,2,2,2],[0,0,2,0]],[[1,3,2,1],[2,3,2,2],[0,2,2,2],[0,0,2,0]],[[2,2,2,1],[2,3,2,2],[0,2,2,2],[0,0,2,0]],[[1,2,2,1],[2,3,2,2],[0,2,2,3],[0,0,1,1]],[[1,2,2,1],[2,3,2,3],[0,2,2,2],[0,0,1,1]],[[1,2,2,2],[2,3,2,2],[0,2,2,2],[0,0,1,1]],[[1,2,3,1],[2,3,2,2],[0,2,2,2],[0,0,1,1]],[[1,3,2,1],[2,3,2,2],[0,2,2,2],[0,0,1,1]],[[2,2,2,1],[2,3,2,2],[0,2,2,2],[0,0,1,1]],[[0,0,2,1],[2,3,3,1],[2,0,2,3],[0,2,2,1]],[[0,0,2,1],[2,3,3,1],[2,0,2,2],[0,3,2,1]],[[0,0,2,1],[2,3,3,1],[2,0,2,2],[0,2,3,1]],[[0,0,2,1],[2,3,3,1],[2,0,2,2],[0,2,2,2]],[[0,0,2,1],[2,3,3,1],[2,0,2,3],[1,1,2,1]],[[0,0,2,1],[2,3,3,1],[2,0,2,2],[1,1,3,1]],[[0,0,2,1],[2,3,3,1],[2,0,2,2],[1,1,2,2]],[[0,0,2,1],[2,3,4,1],[2,0,3,1],[0,2,2,1]],[[0,0,2,1],[2,3,3,1],[2,0,4,1],[0,2,2,1]],[[0,0,2,1],[2,3,3,1],[2,0,3,1],[0,3,2,1]],[[0,0,2,1],[2,3,3,1],[2,0,3,1],[0,2,3,1]],[[0,0,2,1],[2,3,3,1],[2,0,3,1],[0,2,2,2]],[[0,0,2,1],[2,3,4,1],[2,0,3,1],[1,1,2,1]],[[0,0,2,1],[2,3,3,1],[2,0,4,1],[1,1,2,1]],[[0,0,2,1],[2,3,3,1],[2,0,3,1],[1,1,3,1]],[[0,0,2,1],[2,3,3,1],[2,0,3,1],[1,1,2,2]],[[0,0,2,1],[2,3,4,1],[2,0,3,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,1],[2,0,4,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,1],[2,0,3,3],[0,2,1,1]],[[0,0,2,1],[2,3,3,1],[2,0,3,2],[0,2,1,2]],[[0,0,2,1],[2,3,4,1],[2,0,3,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,1],[2,0,4,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,1],[2,0,3,3],[0,2,2,0]],[[0,0,2,1],[2,3,3,1],[2,0,3,2],[0,3,2,0]],[[0,0,2,1],[2,3,3,1],[2,0,3,2],[0,2,3,0]],[[0,0,2,1],[2,3,4,1],[2,0,3,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,1],[2,0,4,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,1],[2,0,3,3],[1,1,1,1]],[[0,0,2,1],[2,3,3,1],[2,0,3,2],[1,1,1,2]],[[0,0,2,1],[2,3,4,1],[2,0,3,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,1],[2,0,4,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,1],[2,0,3,3],[1,1,2,0]],[[0,0,2,1],[2,3,3,1],[2,0,3,2],[1,1,3,0]],[[0,0,2,1],[2,3,4,1],[2,0,3,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,1],[2,0,4,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,1],[2,0,3,3],[1,2,0,1]],[[0,0,2,1],[2,3,3,1],[2,0,3,2],[1,2,0,2]],[[0,0,2,1],[2,3,4,1],[2,0,3,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,1],[2,0,4,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,1],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[2,3,2,2],[0,1,3,3],[1,0,0,1]],[[1,2,2,1],[2,3,2,3],[0,1,3,2],[1,0,0,1]],[[1,2,2,2],[2,3,2,2],[0,1,3,2],[1,0,0,1]],[[1,2,3,1],[2,3,2,2],[0,1,3,2],[1,0,0,1]],[[1,3,2,1],[2,3,2,2],[0,1,3,2],[1,0,0,1]],[[2,2,2,1],[2,3,2,2],[0,1,3,2],[1,0,0,1]],[[0,0,2,1],[2,3,3,1],[2,1,2,3],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[2,1,2,2],[0,1,3,1]],[[0,0,2,1],[2,3,3,1],[2,1,2,2],[0,1,2,2]],[[0,0,2,1],[2,3,3,1],[2,1,2,3],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[2,1,2,2],[1,0,3,1]],[[0,0,2,1],[2,3,3,1],[2,1,2,2],[1,0,2,2]],[[0,0,2,1],[2,3,4,1],[2,1,3,1],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[2,1,4,1],[0,1,2,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,1],[0,1,3,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,1],[0,1,2,2]],[[0,0,2,1],[2,3,4,1],[2,1,3,1],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[2,1,4,1],[1,0,2,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,1],[1,0,3,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,1],[1,0,2,2]],[[0,0,2,1],[2,3,4,1],[2,1,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,1],[2,1,4,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,3],[0,0,2,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,2],[0,0,2,2]],[[0,0,2,1],[2,3,4,1],[2,1,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,1],[2,1,4,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,2],[0,1,1,2]],[[0,0,2,1],[2,3,4,1],[2,1,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[2,1,4,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[2,1,3,3],[0,1,2,0]],[[0,0,2,1],[2,3,3,1],[2,1,3,2],[0,1,3,0]],[[0,0,2,1],[2,3,4,1],[2,1,3,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[2,1,4,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,3],[0,2,0,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,2],[0,2,0,2]],[[0,0,2,1],[2,3,4,1],[2,1,3,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,1],[2,1,4,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,1],[2,1,3,3],[0,2,1,0]],[[0,0,2,1],[2,3,4,1],[2,1,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,1],[2,1,4,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,3],[1,0,1,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,2],[1,0,1,2]],[[0,0,2,1],[2,3,4,1],[2,1,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,1],[2,1,4,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,1],[2,1,3,3],[1,0,2,0]],[[0,0,2,1],[2,3,3,1],[2,1,3,2],[1,0,3,0]],[[0,0,2,1],[2,3,4,1],[2,1,3,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,1],[2,1,4,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,3],[1,1,0,1]],[[0,0,2,1],[2,3,3,1],[2,1,3,2],[1,1,0,2]],[[0,0,2,1],[2,3,4,1],[2,1,3,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,1],[2,1,4,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,1],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[2,3,2,2],[0,1,3,3],[0,1,0,1]],[[1,2,2,1],[2,3,2,3],[0,1,3,2],[0,1,0,1]],[[1,2,2,2],[2,3,2,2],[0,1,3,2],[0,1,0,1]],[[1,2,3,1],[2,3,2,2],[0,1,3,2],[0,1,0,1]],[[1,3,2,1],[2,3,2,2],[0,1,3,2],[0,1,0,1]],[[2,2,2,1],[2,3,2,2],[0,1,3,2],[0,1,0,1]],[[1,2,2,1],[2,3,2,3],[0,1,3,1],[1,1,1,0]],[[1,2,2,2],[2,3,2,2],[0,1,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,2,2],[0,1,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[0,1,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[0,1,3,1],[1,1,1,0]],[[1,2,2,1],[2,3,2,3],[0,1,3,1],[1,1,0,1]],[[1,2,2,2],[2,3,2,2],[0,1,3,1],[1,1,0,1]],[[1,2,3,1],[2,3,2,2],[0,1,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[0,1,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[0,1,3,1],[1,1,0,1]],[[1,2,2,1],[2,3,2,3],[0,1,3,1],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[0,1,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[0,1,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,2,2],[0,1,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[0,1,3,1],[1,0,2,0]],[[1,2,2,1],[2,3,2,3],[0,1,3,1],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[0,1,3,1],[1,0,1,1]],[[1,2,3,1],[2,3,2,2],[0,1,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[0,1,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[0,1,3,1],[1,0,1,1]],[[1,2,2,1],[2,3,2,3],[0,1,3,1],[0,2,1,0]],[[1,2,2,2],[2,3,2,2],[0,1,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[0,1,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,2,2],[0,1,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[0,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,3,2,3],[0,1,3,1],[0,2,0,1]],[[1,2,2,2],[2,3,2,2],[0,1,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,2,2],[0,1,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[0,1,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,2,2],[0,1,3,1],[0,2,0,1]],[[1,2,2,1],[2,3,2,3],[0,1,3,1],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[0,1,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[0,1,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[0,1,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[0,1,3,1],[0,1,2,0]],[[1,2,2,1],[2,3,2,3],[0,1,3,1],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[0,1,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[0,1,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[0,1,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[0,1,3,1],[0,1,1,1]],[[1,2,2,1],[2,3,2,3],[0,1,3,1],[0,0,2,1]],[[1,2,2,2],[2,3,2,2],[0,1,3,1],[0,0,2,1]],[[1,2,3,1],[2,3,2,2],[0,1,3,1],[0,0,2,1]],[[1,3,2,1],[2,3,2,2],[0,1,3,1],[0,0,2,1]],[[2,2,2,1],[2,3,2,2],[0,1,3,1],[0,0,2,1]],[[1,2,2,1],[2,3,2,3],[0,1,3,0],[1,0,2,1]],[[1,2,2,2],[2,3,2,2],[0,1,3,0],[1,0,2,1]],[[1,2,3,1],[2,3,2,2],[0,1,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,2,2],[0,1,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,2,2],[0,1,3,0],[1,0,2,1]],[[1,2,2,1],[2,4,2,2],[0,1,3,0],[0,2,2,0]],[[1,2,2,2],[2,3,2,2],[0,1,3,0],[0,2,2,0]],[[1,2,3,1],[2,3,2,2],[0,1,3,0],[0,2,2,0]],[[1,3,2,1],[2,3,2,2],[0,1,3,0],[0,2,2,0]],[[2,2,2,1],[2,3,2,2],[0,1,3,0],[0,2,2,0]],[[1,2,2,1],[2,3,2,3],[0,1,3,0],[0,1,2,1]],[[1,2,2,2],[2,3,2,2],[0,1,3,0],[0,1,2,1]],[[1,2,3,1],[2,3,2,2],[0,1,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,2,2],[0,1,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,2,2],[0,1,3,0],[0,1,2,1]],[[1,2,2,1],[2,3,2,3],[0,1,2,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,2],[0,1,2,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,2],[0,1,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,2],[0,1,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,2],[0,1,2,2],[1,1,1,0]],[[1,2,2,1],[2,3,2,2],[0,1,2,3],[1,1,0,1]],[[1,2,2,1],[2,3,2,3],[0,1,2,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,2],[0,1,2,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,2],[0,1,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,2,2],[0,1,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,2],[0,1,2,2],[1,1,0,1]],[[1,2,2,1],[2,3,2,2],[0,1,2,3],[1,0,2,0]],[[1,2,2,1],[2,3,2,3],[0,1,2,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[0,1,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[0,1,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,2],[0,1,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[0,1,2,2],[1,0,2,0]],[[1,2,2,1],[2,3,2,2],[0,1,2,2],[1,0,1,2]],[[1,2,2,1],[2,3,2,2],[0,1,2,3],[1,0,1,1]],[[1,2,2,1],[2,3,2,3],[0,1,2,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[0,1,2,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,2],[0,1,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[0,1,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[0,1,2,2],[1,0,1,1]],[[1,2,2,1],[2,3,2,3],[0,1,2,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,2],[0,1,2,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,2],[0,1,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,2],[0,1,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,2],[0,1,2,2],[0,2,1,0]],[[1,2,2,1],[2,3,2,2],[0,1,2,3],[0,2,0,1]],[[1,2,2,1],[2,3,2,3],[0,1,2,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,2],[0,1,2,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,2],[0,1,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,2],[0,1,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,2,2],[0,1,2,2],[0,2,0,1]],[[1,2,2,1],[2,3,2,2],[0,1,2,3],[0,1,2,0]],[[1,2,2,1],[2,3,2,3],[0,1,2,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[0,1,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[0,1,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[0,1,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[0,1,2,2],[0,1,2,0]],[[1,2,2,1],[2,3,2,2],[0,1,2,2],[0,1,1,2]],[[1,2,2,1],[2,3,2,2],[0,1,2,3],[0,1,1,1]],[[1,2,2,1],[2,3,2,3],[0,1,2,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[0,1,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[0,1,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[0,1,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[0,1,2,2],[0,1,1,1]],[[1,2,2,1],[2,3,2,2],[0,1,2,2],[0,0,2,2]],[[1,2,2,1],[2,3,2,2],[0,1,2,3],[0,0,2,1]],[[1,2,2,1],[2,3,2,3],[0,1,2,2],[0,0,2,1]],[[1,2,2,2],[2,3,2,2],[0,1,2,2],[0,0,2,1]],[[1,2,3,1],[2,3,2,2],[0,1,2,2],[0,0,2,1]],[[1,3,2,1],[2,3,2,2],[0,1,2,2],[0,0,2,1]],[[2,2,2,1],[2,3,2,2],[0,1,2,2],[0,0,2,1]],[[1,2,2,1],[2,3,2,2],[0,1,1,2],[1,0,2,2]],[[1,2,2,1],[2,3,2,2],[0,1,1,3],[1,0,2,1]],[[1,2,2,1],[2,3,2,3],[0,1,1,2],[1,0,2,1]],[[1,2,2,2],[2,3,2,2],[0,1,1,2],[1,0,2,1]],[[1,2,3,1],[2,3,2,2],[0,1,1,2],[1,0,2,1]],[[1,3,2,1],[2,3,2,2],[0,1,1,2],[1,0,2,1]],[[2,2,2,1],[2,3,2,2],[0,1,1,2],[1,0,2,1]],[[1,2,2,1],[2,3,2,2],[0,1,1,2],[0,1,2,2]],[[1,2,2,1],[2,3,2,2],[0,1,1,3],[0,1,2,1]],[[1,2,2,1],[2,3,2,3],[0,1,1,2],[0,1,2,1]],[[1,2,2,2],[2,3,2,2],[0,1,1,2],[0,1,2,1]],[[1,2,3,1],[2,3,2,2],[0,1,1,2],[0,1,2,1]],[[1,3,2,1],[2,3,2,2],[0,1,1,2],[0,1,2,1]],[[2,2,2,1],[2,3,2,2],[0,1,1,2],[0,1,2,1]],[[1,2,2,1],[2,3,2,2],[0,0,3,3],[1,0,2,0]],[[1,2,2,1],[2,3,2,3],[0,0,3,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,2],[0,0,3,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,2],[0,0,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,2],[0,0,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,2],[0,0,3,2],[1,0,2,0]],[[1,2,2,1],[2,3,2,2],[0,0,3,2],[1,0,1,2]],[[1,2,2,1],[2,3,2,2],[0,0,3,3],[1,0,1,1]],[[1,2,2,1],[2,3,2,3],[0,0,3,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,2],[0,0,3,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,2],[0,0,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,2],[0,0,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,2],[0,0,3,2],[1,0,1,1]],[[1,2,2,1],[2,3,2,2],[0,0,3,3],[0,1,2,0]],[[1,2,2,1],[2,3,2,3],[0,0,3,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,2],[0,0,3,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,2],[0,0,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,2],[0,0,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,2],[0,0,3,2],[0,1,2,0]],[[1,2,2,1],[2,3,2,2],[0,0,3,2],[0,1,1,2]],[[1,2,2,1],[2,3,2,2],[0,0,3,3],[0,1,1,1]],[[1,2,2,1],[2,3,2,3],[0,0,3,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,2],[0,0,3,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,2],[0,0,3,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,2],[0,0,3,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,2],[0,0,3,2],[0,1,1,1]],[[1,2,2,1],[2,3,2,2],[0,0,3,2],[0,0,2,2]],[[1,2,2,1],[2,3,2,2],[0,0,3,3],[0,0,2,1]],[[1,2,2,1],[2,3,2,3],[0,0,3,2],[0,0,2,1]],[[1,2,2,2],[2,3,2,2],[0,0,3,2],[0,0,2,1]],[[1,2,3,1],[2,3,2,2],[0,0,3,2],[0,0,2,1]],[[1,3,2,1],[2,3,2,2],[0,0,3,2],[0,0,2,1]],[[2,2,2,1],[2,3,2,2],[0,0,3,2],[0,0,2,1]],[[1,2,2,1],[2,3,2,3],[0,0,3,1],[0,2,2,0]],[[1,2,2,2],[2,3,2,2],[0,0,3,1],[0,2,2,0]],[[1,2,3,1],[2,3,2,2],[0,0,3,1],[0,2,2,0]],[[1,3,2,1],[2,3,2,2],[0,0,3,1],[0,2,2,0]],[[2,2,2,1],[2,3,2,2],[0,0,3,1],[0,2,2,0]],[[1,2,2,1],[2,3,2,3],[0,0,3,1],[0,2,1,1]],[[1,2,2,2],[2,3,2,2],[0,0,3,1],[0,2,1,1]],[[1,2,3,1],[2,3,2,2],[0,0,3,1],[0,2,1,1]],[[1,3,2,1],[2,3,2,2],[0,0,3,1],[0,2,1,1]],[[2,2,2,1],[2,3,2,2],[0,0,3,1],[0,2,1,1]],[[1,2,2,1],[2,3,2,3],[0,0,3,0],[0,2,2,1]],[[1,2,2,2],[2,3,2,2],[0,0,3,0],[0,2,2,1]],[[1,2,3,1],[2,3,2,2],[0,0,3,0],[0,2,2,1]],[[1,3,2,1],[2,3,2,2],[0,0,3,0],[0,2,2,1]],[[2,2,2,1],[2,3,2,2],[0,0,3,0],[0,2,2,1]],[[1,2,2,1],[2,3,2,2],[0,0,2,3],[0,2,2,0]],[[1,2,2,1],[2,3,2,3],[0,0,2,2],[0,2,2,0]],[[1,2,2,2],[2,3,2,2],[0,0,2,2],[0,2,2,0]],[[1,2,3,1],[2,3,2,2],[0,0,2,2],[0,2,2,0]],[[1,3,2,1],[2,3,2,2],[0,0,2,2],[0,2,2,0]],[[2,2,2,1],[2,3,2,2],[0,0,2,2],[0,2,2,0]],[[1,2,2,1],[2,3,2,2],[0,0,2,2],[0,2,1,2]],[[1,2,2,1],[2,3,2,2],[0,0,2,3],[0,2,1,1]],[[1,2,2,1],[2,3,2,3],[0,0,2,2],[0,2,1,1]],[[1,2,2,2],[2,3,2,2],[0,0,2,2],[0,2,1,1]],[[1,2,3,1],[2,3,2,2],[0,0,2,2],[0,2,1,1]],[[1,3,2,1],[2,3,2,2],[0,0,2,2],[0,2,1,1]],[[2,2,2,1],[2,3,2,2],[0,0,2,2],[0,2,1,1]],[[1,2,2,1],[2,3,2,2],[0,0,1,2],[0,2,2,2]],[[1,2,2,1],[2,3,2,2],[0,0,1,2],[0,2,3,1]],[[1,2,2,1],[2,3,2,2],[0,0,1,3],[0,2,2,1]],[[1,2,2,1],[2,3,2,3],[0,0,1,2],[0,2,2,1]],[[1,2,2,2],[2,3,2,2],[0,0,1,2],[0,2,2,1]],[[1,2,3,1],[2,3,2,2],[0,0,1,2],[0,2,2,1]],[[1,3,2,1],[2,3,2,2],[0,0,1,2],[0,2,2,1]],[[2,2,2,1],[2,3,2,2],[0,0,1,2],[0,2,2,1]],[[0,0,2,2],[2,3,3,2],[0,0,2,2],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[0,0,2,2],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[0,0,2,2],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,0,2,3],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,0,2,2],[1,2,3,1]],[[0,0,2,1],[2,3,3,2],[0,0,2,2],[1,2,2,2]],[[0,0,2,2],[2,3,3,2],[0,0,3,2],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[0,0,3,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[0,0,3,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,0,3,3],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,0,3,2],[0,2,2,2]],[[0,0,2,2],[2,3,3,2],[0,0,3,2],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[0,0,3,2],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[0,0,3,2],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,0,3,3],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,0,3,2],[1,1,2,2]],[[0,0,2,2],[2,3,3,2],[0,0,3,2],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[0,0,3,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[0,0,3,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[0,0,3,3],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[0,0,3,2],[1,2,1,2]],[[0,0,2,2],[2,3,3,2],[0,0,3,2],[1,2,2,0]],[[0,0,2,1],[2,3,4,2],[0,0,3,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,3],[0,0,3,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,2],[0,0,3,3],[1,2,2,0]],[[0,0,2,2],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[0,1,1,2],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[0,1,1,2],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,1,1,3],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,1,1,2],[2,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,1,1,2],[1,3,2,1]],[[0,0,2,1],[2,3,3,2],[0,1,1,2],[1,2,3,1]],[[0,0,2,1],[2,3,3,2],[0,1,1,2],[1,2,2,2]],[[0,0,2,2],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[0,1,2,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[0,1,2,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[0,1,2,3],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[0,1,2,2],[1,2,1,2]],[[0,0,2,2],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[0,0,2,1],[2,3,4,2],[0,1,2,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,3],[0,1,2,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,2],[0,1,2,3],[1,2,2,0]],[[0,0,2,2],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[0,1,3,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[0,1,3,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,1,4,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,1,3,0],[2,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,1,3,0],[1,3,2,1]],[[0,0,2,1],[2,3,3,2],[0,1,3,0],[1,2,3,1]],[[0,0,2,1],[2,3,3,2],[0,1,3,0],[1,2,2,2]],[[0,0,2,2],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[0,1,3,1],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[0,1,3,1],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[0,1,4,1],[1,2,1,1]],[[0,0,2,2],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[0,0,2,1],[2,3,4,2],[0,1,3,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,3],[0,1,3,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,2],[0,1,4,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,2],[0,1,3,1],[2,2,2,0]],[[0,0,2,1],[2,3,3,2],[0,1,3,1],[1,3,2,0]],[[0,0,2,1],[2,3,3,2],[0,1,3,1],[1,2,3,0]],[[0,0,2,2],[2,3,3,2],[0,1,3,2],[1,0,2,1]],[[0,0,2,1],[2,3,4,2],[0,1,3,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,3],[0,1,3,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[0,1,3,3],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[0,1,3,2],[1,0,2,2]],[[0,0,2,2],[2,3,3,2],[0,1,3,2],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[0,1,3,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[0,1,3,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,1,3,3],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,1,3,2],[1,1,1,2]],[[0,0,2,2],[2,3,3,2],[0,1,3,2],[1,1,2,0]],[[0,0,2,1],[2,3,4,2],[0,1,3,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,3],[0,1,3,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,2],[0,1,3,3],[1,1,2,0]],[[0,0,2,2],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[0,2,0,2],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[0,2,0,2],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,0,3],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,0,2],[2,2,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,0,2],[1,3,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,0,2],[1,2,3,1]],[[0,0,2,1],[2,3,3,2],[0,2,0,2],[1,2,2,2]],[[0,0,2,2],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[0,2,1,2],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[0,2,1,2],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,1,3],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,1,2],[1,1,3,1]],[[0,0,2,1],[2,3,3,2],[0,2,1,2],[1,1,2,2]],[[0,0,2,2],[2,3,3,2],[0,2,2,2],[1,0,2,1]],[[0,0,2,1],[2,3,4,2],[0,2,2,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,3],[0,2,2,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,2,3],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,2,2],[1,0,2,2]],[[0,0,2,2],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[0,2,2,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[0,2,2,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,2,2,3],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,2,2,2],[1,1,1,2]],[[0,0,2,2],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[0,0,2,1],[2,3,4,2],[0,2,2,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,3],[0,2,2,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,2],[0,2,2,3],[1,1,2,0]],[[0,0,2,2],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[0,0,2,1],[2,3,4,2],[0,2,2,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,3],[0,2,2,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,2],[0,2,2,3],[1,2,0,1]],[[0,0,2,1],[2,3,3,2],[0,2,2,2],[1,2,0,2]],[[0,0,2,2],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[0,0,2,1],[2,3,4,2],[0,2,2,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,3],[0,2,2,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,2],[0,2,2,3],[1,2,1,0]],[[0,0,2,2],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[0,2,3,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[0,2,3,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,4,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,3,0],[1,1,3,1]],[[0,0,2,1],[2,3,3,2],[0,2,3,0],[1,1,2,2]],[[0,0,2,2],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[0,2,3,0],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[0,2,3,0],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[0,2,4,0],[1,2,1,1]],[[0,0,2,2],[2,3,3,2],[0,2,3,1],[1,0,2,1]],[[0,0,2,1],[2,3,4,2],[0,2,3,1],[1,0,2,1]],[[0,0,2,1],[2,3,3,3],[0,2,3,1],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,4,1],[1,0,2,1]],[[0,0,2,2],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[0,2,3,1],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[0,2,3,1],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,2,4,1],[1,1,1,1]],[[0,0,2,2],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[0,0,2,1],[2,3,4,2],[0,2,3,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,3],[0,2,3,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,2],[0,2,4,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,2],[0,2,3,1],[1,1,3,0]],[[0,0,2,2],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[0,0,2,1],[2,3,4,2],[0,2,3,1],[1,2,0,1]],[[0,0,2,1],[2,3,3,3],[0,2,3,1],[1,2,0,1]],[[0,0,2,1],[2,3,3,2],[0,2,4,1],[1,2,0,1]],[[0,0,2,2],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[0,0,2,1],[2,3,4,2],[0,2,3,1],[1,2,1,0]],[[0,0,2,1],[2,3,3,3],[0,2,3,1],[1,2,1,0]],[[0,0,2,1],[2,3,3,2],[0,2,4,1],[1,2,1,0]],[[0,0,2,2],[2,3,3,2],[0,2,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,4,2],[0,2,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,3],[0,2,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,3,3],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[0,2,3,2],[0,0,2,2]],[[0,0,2,2],[2,3,3,2],[0,2,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[0,2,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[0,2,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,2,3,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,2,3,2],[0,1,1,2]],[[0,0,2,2],[2,3,3,2],[0,2,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[0,2,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[0,2,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[0,2,3,3],[0,1,2,0]],[[0,0,2,2],[2,3,3,2],[0,2,3,2],[1,1,0,1]],[[0,0,2,1],[2,3,4,2],[0,2,3,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,3],[0,2,3,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,2],[0,2,3,3],[1,1,0,1]],[[0,0,2,2],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[0,3,0,1],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[0,3,0,1],[1,2,2,1]],[[0,0,2,2],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[0,3,0,2],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[0,3,0,2],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,3,0,3],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,3,0,2],[1,1,3,1]],[[0,0,2,1],[2,3,3,2],[0,3,0,2],[1,1,2,2]],[[0,0,2,2],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[0,3,0,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[0,3,0,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[0,3,0,3],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[0,3,0,2],[1,2,1,2]],[[0,0,2,2],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[0,0,2,1],[2,3,4,2],[0,3,0,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,3],[0,3,0,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,2],[0,3,0,3],[1,2,2,0]],[[0,0,2,2],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[0,3,1,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[0,3,1,0],[1,2,2,1]],[[0,0,2,2],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[0,0,2,1],[2,3,4,2],[0,3,1,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,3],[0,3,1,1],[1,2,2,0]],[[0,0,2,2],[2,3,3,2],[0,3,1,2],[0,1,2,1]],[[0,0,2,1],[2,3,4,2],[0,3,1,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,3],[0,3,1,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,3,1,3],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,3,1,2],[0,1,3,1]],[[0,0,2,1],[2,3,3,2],[0,3,1,2],[0,1,2,2]],[[0,0,2,2],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[0,3,1,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[0,3,1,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,3,1,3],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,3,1,2],[1,1,1,2]],[[0,0,2,2],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[0,0,2,1],[2,3,4,2],[0,3,1,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,3],[0,3,1,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,2],[0,3,1,3],[1,1,2,0]],[[0,0,2,2],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[0,0,2,1],[2,3,4,2],[0,3,1,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,3],[0,3,1,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,2],[0,3,1,3],[1,2,0,1]],[[0,0,2,1],[2,3,3,2],[0,3,1,2],[1,2,0,2]],[[0,0,2,2],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[0,0,2,1],[2,3,4,2],[0,3,1,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,3],[0,3,1,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,2],[0,3,1,3],[1,2,1,0]],[[0,0,2,2],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[0,3,2,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[0,3,2,0],[1,1,2,1]],[[0,0,2,2],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[0,3,2,0],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[0,3,2,0],[1,2,1,1]],[[0,0,2,2],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[0,3,2,1],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[0,3,2,1],[1,1,1,1]],[[0,0,2,2],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[0,0,2,1],[2,3,4,2],[0,3,2,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,3],[0,3,2,1],[1,1,2,0]],[[0,0,2,2],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[0,0,2,1],[2,3,4,2],[0,3,2,1],[1,2,0,1]],[[0,0,2,1],[2,3,3,3],[0,3,2,1],[1,2,0,1]],[[0,0,2,2],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[0,0,2,1],[2,3,4,2],[0,3,2,1],[1,2,1,0]],[[0,0,2,1],[2,3,3,3],[0,3,2,1],[1,2,1,0]],[[0,0,2,2],[2,3,3,2],[0,3,2,2],[0,0,2,1]],[[0,0,2,1],[2,3,4,2],[0,3,2,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,3],[0,3,2,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[0,3,2,3],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[0,3,2,2],[0,0,2,2]],[[0,0,2,2],[2,3,3,2],[0,3,2,2],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[0,3,2,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[0,3,2,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,3,2,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,3,2,2],[0,1,1,2]],[[0,0,2,2],[2,3,3,2],[0,3,2,2],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[0,3,2,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[0,3,2,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[0,3,2,3],[0,1,2,0]],[[0,0,2,2],[2,3,3,2],[0,3,2,2],[0,2,0,1]],[[0,0,2,1],[2,3,4,2],[0,3,2,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,3],[0,3,2,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[0,3,2,3],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[0,3,2,2],[0,2,0,2]],[[0,0,2,2],[2,3,3,2],[0,3,2,2],[0,2,1,0]],[[0,0,2,1],[2,3,4,2],[0,3,2,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,3],[0,3,2,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,2],[0,3,2,3],[0,2,1,0]],[[0,0,2,2],[2,3,3,2],[0,3,3,0],[0,1,2,1]],[[0,0,2,1],[2,3,4,2],[0,3,3,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,3],[0,3,3,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,3,4,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[0,3,3,0],[0,1,3,1]],[[0,0,2,1],[2,3,3,2],[0,3,3,0],[0,1,2,2]],[[0,0,2,2],[2,3,3,2],[0,3,3,0],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[0,3,3,0],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[0,3,3,0],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[0,3,4,0],[0,2,1,1]],[[1,2,2,1],[2,3,2,1],[2,3,0,1],[2,2,0,0]],[[1,2,2,1],[2,3,2,1],[3,3,0,1],[1,2,0,0]],[[1,2,2,1],[3,3,2,1],[2,3,0,1],[1,2,0,0]],[[1,3,2,1],[2,3,2,1],[2,3,0,1],[1,2,0,0]],[[2,2,2,1],[2,3,2,1],[2,3,0,1],[1,2,0,0]],[[0,0,2,2],[2,3,3,2],[0,3,3,1],[0,0,2,1]],[[0,0,2,1],[2,3,4,2],[0,3,3,1],[0,0,2,1]],[[0,0,2,1],[2,3,3,3],[0,3,3,1],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[0,3,4,1],[0,0,2,1]],[[0,0,2,2],[2,3,3,2],[0,3,3,1],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[0,3,3,1],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[0,3,3,1],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[0,3,4,1],[0,1,1,1]],[[0,0,2,2],[2,3,3,2],[0,3,3,1],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[0,3,3,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[0,3,3,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[0,3,4,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[0,3,3,1],[0,1,3,0]],[[0,0,2,2],[2,3,3,2],[0,3,3,1],[0,2,0,1]],[[0,0,2,1],[2,3,4,2],[0,3,3,1],[0,2,0,1]],[[0,0,2,1],[2,3,3,3],[0,3,3,1],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[0,3,4,1],[0,2,0,1]],[[0,0,2,2],[2,3,3,2],[0,3,3,1],[0,2,1,0]],[[0,0,2,1],[2,3,4,2],[0,3,3,1],[0,2,1,0]],[[0,0,2,1],[2,3,3,3],[0,3,3,1],[0,2,1,0]],[[0,0,2,1],[2,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,2,1],[2,3,2,1],[3,3,0,1],[1,1,1,0]],[[1,2,2,1],[3,3,2,1],[2,3,0,1],[1,1,1,0]],[[1,3,2,1],[2,3,2,1],[2,3,0,1],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[2,3,0,1],[1,1,1,0]],[[1,2,2,1],[2,3,2,1],[3,3,0,1],[1,1,0,1]],[[0,0,2,2],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[0,0,2,1],[2,3,4,2],[0,3,3,1],[1,2,0,0]],[[0,0,2,1],[2,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,3,2,1],[2,3,0,1],[1,1,0,1]],[[1,3,2,1],[2,3,2,1],[2,3,0,1],[1,1,0,1]],[[2,2,2,1],[2,3,2,1],[2,3,0,1],[1,1,0,1]],[[1,2,2,1],[3,3,2,1],[2,3,0,1],[0,2,1,0]],[[1,3,2,1],[2,3,2,1],[2,3,0,1],[0,2,1,0]],[[2,2,2,1],[2,3,2,1],[2,3,0,1],[0,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,3,0,1],[0,2,0,1]],[[1,3,2,1],[2,3,2,1],[2,3,0,1],[0,2,0,1]],[[2,2,2,1],[2,3,2,1],[2,3,0,1],[0,2,0,1]],[[0,0,2,2],[2,3,3,2],[0,3,3,2],[0,1,0,1]],[[0,0,2,1],[2,3,4,2],[0,3,3,2],[0,1,0,1]],[[0,0,2,1],[2,3,3,3],[0,3,3,2],[0,1,0,1]],[[0,0,2,1],[2,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,3,2,1],[2,3,0,0],[2,2,0,1]],[[1,2,2,1],[2,3,2,1],[3,3,0,0],[1,2,0,1]],[[1,2,2,1],[3,3,2,1],[2,3,0,0],[1,2,0,1]],[[1,3,2,1],[2,3,2,1],[2,3,0,0],[1,2,0,1]],[[2,2,2,1],[2,3,2,1],[2,3,0,0],[1,2,0,1]],[[1,2,2,1],[2,3,2,1],[3,3,0,0],[1,1,1,1]],[[1,2,2,1],[3,3,2,1],[2,3,0,0],[1,1,1,1]],[[1,3,2,1],[2,3,2,1],[2,3,0,0],[1,1,1,1]],[[2,2,2,1],[2,3,2,1],[2,3,0,0],[1,1,1,1]],[[1,2,2,1],[3,3,2,1],[2,3,0,0],[0,2,1,1]],[[1,3,2,1],[2,3,2,1],[2,3,0,0],[0,2,1,1]],[[2,2,2,1],[2,3,2,1],[2,3,0,0],[0,2,1,1]],[[1,2,2,1],[3,3,2,1],[2,2,3,1],[1,0,0,0]],[[1,2,2,2],[2,3,2,1],[2,2,3,1],[1,0,0,0]],[[1,2,3,1],[2,3,2,1],[2,2,3,1],[1,0,0,0]],[[1,3,2,1],[2,3,2,1],[2,2,3,1],[1,0,0,0]],[[2,2,2,1],[2,3,2,1],[2,2,3,1],[1,0,0,0]],[[0,0,2,2],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[1,0,1,2],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[1,0,1,2],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,1,3],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,1,2],[2,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,1,2],[1,3,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,1,2],[1,2,3,1]],[[0,0,2,1],[2,3,3,2],[1,0,1,2],[1,2,2,2]],[[0,0,2,2],[2,3,3,2],[1,0,2,2],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[1,0,2,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[1,0,2,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,2,3],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,2,2],[0,2,3,1]],[[0,0,2,1],[2,3,3,2],[1,0,2,2],[0,2,2,2]],[[0,0,2,2],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[1,0,2,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[1,0,2,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[1,0,2,3],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[1,0,2,2],[1,2,1,2]],[[0,0,2,2],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[0,0,2,1],[2,3,4,2],[1,0,2,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,3],[1,0,2,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,2],[1,0,2,3],[1,2,2,0]],[[0,0,2,2],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[1,0,3,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[1,0,3,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,4,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,3,0],[2,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,3,0],[1,3,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,3,0],[1,2,3,1]],[[0,0,2,1],[2,3,3,2],[1,0,3,0],[1,2,2,2]],[[0,0,2,2],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[1,0,3,1],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[1,0,3,1],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[1,0,4,1],[1,2,1,1]],[[0,0,2,2],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[0,0,2,1],[2,3,4,2],[1,0,3,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,3],[1,0,3,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,2],[1,0,4,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,2],[1,0,3,1],[2,2,2,0]],[[0,0,2,1],[2,3,3,2],[1,0,3,1],[1,3,2,0]],[[0,0,2,1],[2,3,3,2],[1,0,3,1],[1,2,3,0]],[[0,0,2,2],[2,3,3,2],[1,0,3,2],[0,1,2,1]],[[0,0,2,1],[2,3,4,2],[1,0,3,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,3],[1,0,3,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,3,3],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[1,0,3,2],[0,1,2,2]],[[0,0,2,2],[2,3,3,2],[1,0,3,2],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[1,0,3,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[1,0,3,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[1,0,3,3],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[1,0,3,2],[0,2,1,2]],[[0,0,2,2],[2,3,3,2],[1,0,3,2],[0,2,2,0]],[[0,0,2,1],[2,3,4,2],[1,0,3,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,3],[1,0,3,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[3,3,2,1],[2,2,3,0],[1,0,1,0]],[[1,2,3,1],[2,3,2,1],[2,2,3,0],[1,0,1,0]],[[1,3,2,1],[2,3,2,1],[2,2,3,0],[1,0,1,0]],[[2,2,2,1],[2,3,2,1],[2,2,3,0],[1,0,1,0]],[[0,0,2,2],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[1,1,0,2],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[1,1,0,2],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,0,3],[1,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,0,2],[2,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,0,2],[1,3,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,0,2],[1,2,3,1]],[[0,0,2,1],[2,3,3,2],[1,1,0,2],[1,2,2,2]],[[0,0,2,2],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[1,1,1,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[1,1,1,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,1,3],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,1,2],[0,3,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,1,2],[0,2,3,1]],[[0,0,2,1],[2,3,3,2],[1,1,1,2],[0,2,2,2]],[[0,0,2,2],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[1,1,2,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[1,1,2,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[1,1,2,3],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[1,1,2,2],[0,2,1,2]],[[0,0,2,2],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[0,0,2,1],[2,3,4,2],[1,1,2,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,3],[1,1,2,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,2],[1,1,2,3],[0,2,2,0]],[[0,0,2,2],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[1,1,3,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[1,1,3,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,4,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,3,0],[0,3,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,3,0],[0,2,3,1]],[[0,0,2,1],[2,3,3,2],[1,1,3,0],[0,2,2,2]],[[0,0,2,2],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[1,1,3,1],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[1,1,3,1],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[1,1,4,1],[0,2,1,1]],[[0,0,2,2],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[0,0,2,1],[2,3,4,2],[1,1,3,1],[0,2,2,0]],[[0,0,2,1],[2,3,3,3],[1,1,3,1],[0,2,2,0]],[[0,0,2,1],[2,3,3,2],[1,1,4,1],[0,2,2,0]],[[0,0,2,1],[2,3,3,2],[1,1,3,1],[0,3,2,0]],[[0,0,2,1],[2,3,3,2],[1,1,3,1],[0,2,3,0]],[[0,0,2,2],[2,3,3,2],[1,1,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,4,2],[1,1,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,3],[1,1,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,3,3],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,1,3,2],[0,0,2,2]],[[0,0,2,2],[2,3,3,2],[1,1,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[1,1,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[1,1,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[1,1,3,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[1,1,3,2],[0,1,1,2]],[[0,0,2,2],[2,3,3,2],[1,1,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[1,1,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[1,1,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[1,1,3,3],[0,1,2,0]],[[0,0,2,2],[2,3,3,2],[1,1,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,4,2],[1,1,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,3],[1,1,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[1,1,3,3],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[1,1,3,2],[1,0,1,2]],[[0,0,2,2],[2,3,3,2],[1,1,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,4,2],[1,1,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,3],[1,1,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,2],[1,1,3,3],[1,0,2,0]],[[0,0,2,2],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[1,2,0,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[1,2,0,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,0,3],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,0,2],[0,3,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,0,2],[0,2,3,1]],[[0,0,2,1],[2,3,3,2],[1,2,0,2],[0,2,2,2]],[[0,0,2,2],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[0,0,2,1],[2,3,4,2],[1,2,1,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,3],[1,2,1,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,1,3],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,1,2],[0,1,3,1]],[[0,0,2,1],[2,3,3,2],[1,2,1,2],[0,1,2,2]],[[0,0,2,2],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[0,0,2,1],[2,3,4,2],[1,2,1,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,3],[1,2,1,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,1,3],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,1,2],[1,0,3,1]],[[0,0,2,1],[2,3,3,2],[1,2,1,2],[1,0,2,2]],[[0,0,2,2],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[0,0,2,1],[2,3,4,2],[1,2,2,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,3],[1,2,2,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,2,3],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,2,2],[0,0,2,2]],[[0,0,2,2],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[1,2,2,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[1,2,2,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[1,2,2,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[1,2,2,2],[0,1,1,2]],[[0,0,2,2],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[1,2,2,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[1,2,2,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[1,2,2,3],[0,1,2,0]],[[0,0,2,2],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[0,0,2,1],[2,3,4,2],[1,2,2,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,3],[1,2,2,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[1,2,2,3],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[1,2,2,2],[0,2,0,2]],[[0,0,2,2],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[0,0,2,1],[2,3,4,2],[1,2,2,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,3],[1,2,2,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,2,2,1],[1,0,1,0]],[[1,2,2,2],[2,3,2,1],[2,2,2,1],[1,0,1,0]],[[1,2,3,1],[2,3,2,1],[2,2,2,1],[1,0,1,0]],[[1,3,2,1],[2,3,2,1],[2,2,2,1],[1,0,1,0]],[[2,2,2,1],[2,3,2,1],[2,2,2,1],[1,0,1,0]],[[1,2,2,1],[3,3,2,1],[2,2,2,1],[1,0,0,1]],[[1,2,2,2],[2,3,2,1],[2,2,2,1],[1,0,0,1]],[[0,0,2,2],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[0,0,2,1],[2,3,4,2],[1,2,2,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,3],[1,2,2,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[1,2,2,3],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[1,2,2,2],[1,0,1,2]],[[0,0,2,2],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[0,0,2,1],[2,3,4,2],[1,2,2,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,3],[1,2,2,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,2],[1,2,2,3],[1,0,2,0]],[[0,0,2,2],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[0,0,2,1],[2,3,4,2],[1,2,2,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,3],[1,2,2,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,2],[1,2,2,3],[1,1,0,1]],[[0,0,2,1],[2,3,3,2],[1,2,2,2],[1,1,0,2]],[[0,0,2,2],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[0,0,2,1],[2,3,4,2],[1,2,2,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,3],[1,2,2,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[2,2,2,1],[1,0,0,1]],[[1,3,2,1],[2,3,2,1],[2,2,2,1],[1,0,0,1]],[[2,2,2,1],[2,3,2,1],[2,2,2,1],[1,0,0,1]],[[0,0,2,2],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[0,0,2,1],[2,3,4,2],[1,2,3,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,3],[1,2,3,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,4,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,3,0],[0,1,3,1]],[[0,0,2,1],[2,3,3,2],[1,2,3,0],[0,1,2,2]],[[0,0,2,2],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[1,2,3,0],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[1,2,3,0],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[1,2,4,0],[0,2,1,1]],[[0,0,2,2],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[0,0,2,1],[2,3,4,2],[1,2,3,0],[1,0,2,1]],[[0,0,2,1],[2,3,3,3],[1,2,3,0],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,4,0],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,3,0],[1,0,3,1]],[[0,0,2,1],[2,3,3,2],[1,2,3,0],[1,0,2,2]],[[0,0,2,2],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[1,2,3,0],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[1,2,3,0],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[1,2,4,0],[1,1,1,1]],[[0,0,2,2],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[0,0,2,1],[2,3,4,2],[1,2,3,1],[0,0,2,1]],[[0,0,2,1],[2,3,3,3],[1,2,3,1],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,2,4,1],[0,0,2,1]],[[0,0,2,2],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[1,2,3,1],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[1,2,3,1],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[1,2,4,1],[0,1,1,1]],[[0,0,2,2],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[1,2,3,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[1,2,3,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[1,2,4,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[1,2,3,1],[0,1,3,0]],[[0,0,2,2],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[0,0,2,1],[2,3,4,2],[1,2,3,1],[0,2,0,1]],[[0,0,2,1],[2,3,3,3],[1,2,3,1],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[1,2,4,1],[0,2,0,1]],[[0,0,2,2],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[0,0,2,1],[2,3,4,2],[1,2,3,1],[0,2,1,0]],[[0,0,2,1],[2,3,3,3],[1,2,3,1],[0,2,1,0]],[[0,0,2,1],[2,3,3,2],[1,2,4,1],[0,2,1,0]],[[0,0,2,2],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[0,0,2,1],[2,3,4,2],[1,2,3,1],[1,0,1,1]],[[0,0,2,1],[2,3,3,3],[1,2,3,1],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[1,2,4,1],[1,0,1,1]],[[0,0,2,2],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[0,0,2,1],[2,3,4,2],[1,2,3,1],[1,0,2,0]],[[0,0,2,1],[2,3,3,3],[1,2,3,1],[1,0,2,0]],[[0,0,2,1],[2,3,3,2],[1,2,4,1],[1,0,2,0]],[[0,0,2,1],[2,3,3,2],[1,2,3,1],[1,0,3,0]],[[0,0,2,2],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[0,0,2,1],[2,3,4,2],[1,2,3,1],[1,1,0,1]],[[0,0,2,1],[2,3,3,3],[1,2,3,1],[1,1,0,1]],[[0,0,2,1],[2,3,3,2],[1,2,4,1],[1,1,0,1]],[[0,0,2,2],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[0,0,2,1],[2,3,4,2],[1,2,3,1],[1,1,1,0]],[[0,0,2,1],[2,3,3,3],[1,2,3,1],[1,1,1,0]],[[0,0,2,1],[2,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,2,1],[3,3,2,1],[2,2,2,0],[1,0,1,1]],[[1,2,3,1],[2,3,2,1],[2,2,2,0],[1,0,1,1]],[[1,3,2,1],[2,3,2,1],[2,2,2,0],[1,0,1,1]],[[2,2,2,1],[2,3,2,1],[2,2,2,0],[1,0,1,1]],[[0,0,2,2],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[0,0,2,1],[2,3,4,2],[1,2,3,2],[0,1,0,1]],[[0,0,2,1],[2,3,3,3],[1,2,3,2],[0,1,0,1]],[[0,0,2,1],[2,3,3,2],[1,2,3,3],[0,1,0,1]],[[0,0,2,2],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[0,0,2,1],[2,3,4,2],[1,2,3,2],[1,0,0,1]],[[0,0,2,1],[2,3,3,3],[1,2,3,2],[1,0,0,1]],[[0,0,2,1],[2,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[3,3,2,1],[2,2,1,2],[1,0,1,0]],[[1,2,2,2],[2,3,2,1],[2,2,1,2],[1,0,1,0]],[[1,2,3,1],[2,3,2,1],[2,2,1,2],[1,0,1,0]],[[1,3,2,1],[2,3,2,1],[2,2,1,2],[1,0,1,0]],[[2,2,2,1],[2,3,2,1],[2,2,1,2],[1,0,1,0]],[[1,2,2,1],[3,3,2,1],[2,2,1,2],[1,0,0,1]],[[1,2,2,2],[2,3,2,1],[2,2,1,2],[1,0,0,1]],[[1,2,3,1],[2,3,2,1],[2,2,1,2],[1,0,0,1]],[[1,3,2,1],[2,3,2,1],[2,2,1,2],[1,0,0,1]],[[2,2,2,1],[2,3,2,1],[2,2,1,2],[1,0,0,1]],[[0,0,2,2],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[1,3,0,1],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[1,3,0,1],[0,2,2,1]],[[0,0,2,2],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[1,3,0,1],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[1,3,0,1],[1,1,2,1]],[[0,0,2,2],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[0,0,2,1],[2,3,4,2],[1,3,0,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,3],[1,3,0,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[1,3,0,3],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[1,3,0,2],[0,1,3,1]],[[0,0,2,1],[2,3,3,2],[1,3,0,2],[0,1,2,2]],[[0,0,2,2],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[1,3,0,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[1,3,0,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[1,3,0,3],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[1,3,0,2],[0,2,1,2]],[[0,0,2,2],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[0,0,2,1],[2,3,4,2],[1,3,0,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,3],[1,3,0,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,2],[1,3,0,3],[0,2,2,0]],[[0,0,2,2],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[0,0,2,1],[2,3,4,2],[1,3,0,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,3],[1,3,0,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,3,0,3],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,3,0,2],[1,0,3,1]],[[0,0,2,1],[2,3,3,2],[1,3,0,2],[1,0,2,2]],[[0,0,2,2],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[1,3,0,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[1,3,0,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[1,3,0,3],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[1,3,0,2],[1,1,1,2]],[[0,0,2,2],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,0,2,1],[2,3,4,2],[1,3,0,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,3],[1,3,0,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,2],[1,3,0,3],[1,1,2,0]],[[0,0,2,2],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[1,3,1,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[1,3,1,0],[0,2,2,1]],[[0,0,2,2],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[1,3,1,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[1,3,1,0],[1,1,2,1]],[[0,0,2,2],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[0,0,2,1],[2,3,4,2],[1,3,1,1],[0,2,2,0]],[[0,0,2,1],[2,3,3,3],[1,3,1,1],[0,2,2,0]],[[0,0,2,2],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[0,0,2,1],[2,3,4,2],[1,3,1,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,3],[1,3,1,1],[1,1,2,0]],[[0,0,2,2],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[1,3,1,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[1,3,1,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[1,3,1,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[1,3,1,2],[0,1,1,2]],[[0,0,2,2],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[1,3,1,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[1,3,1,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[1,3,1,3],[0,1,2,0]],[[0,0,2,2],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[0,0,2,1],[2,3,4,2],[1,3,1,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,3],[1,3,1,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[1,3,1,3],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[1,3,1,2],[0,2,0,2]],[[0,0,2,2],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[0,0,2,1],[2,3,4,2],[1,3,1,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,3],[1,3,1,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,2],[1,3,1,3],[0,2,1,0]],[[0,0,2,2],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[0,0,2,1],[2,3,4,2],[1,3,1,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,3],[1,3,1,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[1,3,1,3],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[1,3,1,2],[1,0,1,2]],[[0,0,2,2],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[0,0,2,1],[2,3,4,2],[1,3,1,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,3],[1,3,1,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,2],[1,3,1,3],[1,0,2,0]],[[0,0,2,2],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[0,0,2,1],[2,3,4,2],[1,3,1,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,3],[1,3,1,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,2],[1,3,1,3],[1,1,0,1]],[[0,0,2,1],[2,3,3,2],[1,3,1,2],[1,1,0,2]],[[0,0,2,2],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[0,0,2,1],[2,3,4,2],[1,3,1,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,3],[1,3,1,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,2],[1,3,1,3],[1,1,1,0]],[[0,0,2,2],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[0,0,2,1],[2,3,4,2],[1,3,1,2],[1,2,0,0]],[[0,0,2,1],[2,3,3,3],[1,3,1,2],[1,2,0,0]],[[0,0,2,2],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[0,0,2,1],[2,3,4,2],[1,3,2,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,3],[1,3,2,0],[0,1,2,1]],[[0,0,2,2],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[1,3,2,0],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[1,3,2,0],[0,2,1,1]],[[0,0,2,2],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[0,0,2,1],[2,3,4,2],[1,3,2,0],[1,0,2,1]],[[0,0,2,1],[2,3,3,3],[1,3,2,0],[1,0,2,1]],[[0,0,2,2],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[1,3,2,0],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[1,3,2,0],[1,1,1,1]],[[0,0,2,2],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[1,3,2,1],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[1,3,2,1],[0,1,1,1]],[[0,0,2,2],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[1,3,2,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[1,3,2,1],[0,1,2,0]],[[0,0,2,2],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[0,0,2,1],[2,3,4,2],[1,3,2,1],[0,2,0,1]],[[0,0,2,1],[2,3,3,3],[1,3,2,1],[0,2,0,1]],[[0,0,2,2],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[0,0,2,1],[2,3,4,2],[1,3,2,1],[0,2,1,0]],[[0,0,2,1],[2,3,3,3],[1,3,2,1],[0,2,1,0]],[[0,0,2,2],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[0,0,2,1],[2,3,4,2],[1,3,2,1],[1,0,1,1]],[[0,0,2,1],[2,3,3,3],[1,3,2,1],[1,0,1,1]],[[0,0,2,2],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[0,0,2,1],[2,3,4,2],[1,3,2,1],[1,0,2,0]],[[0,0,2,1],[2,3,3,3],[1,3,2,1],[1,0,2,0]],[[0,0,2,2],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[0,0,2,1],[2,3,4,2],[1,3,2,1],[1,1,0,1]],[[0,0,2,1],[2,3,3,3],[1,3,2,1],[1,1,0,1]],[[0,0,2,2],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[0,0,2,1],[2,3,4,2],[1,3,2,1],[1,1,1,0]],[[0,0,2,1],[2,3,3,3],[1,3,2,1],[1,1,1,0]],[[0,0,2,2],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[0,0,2,1],[2,3,4,2],[1,3,2,1],[1,2,0,0]],[[0,0,2,1],[2,3,3,3],[1,3,2,1],[1,2,0,0]],[[0,0,2,2],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[0,0,2,1],[2,3,4,2],[1,3,2,2],[0,0,1,1]],[[0,0,2,1],[2,3,3,3],[1,3,2,2],[0,0,1,1]],[[0,0,2,1],[2,3,3,2],[1,3,2,3],[0,0,1,1]],[[0,0,2,1],[2,3,3,2],[1,3,2,2],[0,0,1,2]],[[0,0,2,2],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[0,0,2,1],[2,3,4,2],[1,3,2,2],[0,0,2,0]],[[0,0,2,1],[2,3,3,3],[1,3,2,2],[0,0,2,0]],[[0,0,2,1],[2,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,3,1],[1,1,0,0]],[[1,2,2,2],[2,3,2,1],[2,1,3,1],[1,1,0,0]],[[1,2,3,1],[2,3,2,1],[2,1,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,2,1],[2,1,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,2,1],[2,1,3,1],[1,1,0,0]],[[0,0,2,2],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[0,0,2,1],[2,3,4,2],[1,3,3,0],[0,0,2,1]],[[0,0,2,1],[2,3,3,3],[1,3,3,0],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[1,3,4,0],[0,0,2,1]],[[1,2,2,1],[3,3,2,1],[2,1,3,1],[0,2,0,0]],[[1,2,2,2],[2,3,2,1],[2,1,3,1],[0,2,0,0]],[[0,0,2,2],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[0,0,2,1],[2,3,4,2],[1,3,3,1],[0,0,1,1]],[[0,0,2,1],[2,3,3,3],[1,3,3,1],[0,0,1,1]],[[0,0,2,1],[2,3,3,2],[1,3,4,1],[0,0,1,1]],[[0,0,2,2],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[0,0,2,1],[2,3,4,2],[1,3,3,1],[0,0,2,0]],[[0,0,2,1],[2,3,3,3],[1,3,3,1],[0,0,2,0]],[[0,0,2,1],[2,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,3,1],[2,3,2,1],[2,1,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,2,1],[2,1,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,2,1],[2,1,3,1],[0,2,0,0]],[[0,0,2,2],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[0,0,2,1],[2,3,4,2],[1,3,3,1],[0,2,0,0]],[[0,0,2,1],[2,3,3,3],[1,3,3,1],[0,2,0,0]],[[0,0,2,2],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[0,0,2,1],[2,3,4,2],[1,3,3,1],[1,1,0,0]],[[0,0,2,1],[2,3,3,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[3,3,2,1],[2,1,3,0],[1,2,0,0]],[[1,2,3,1],[2,3,2,1],[2,1,3,0],[1,2,0,0]],[[1,3,2,1],[2,3,2,1],[2,1,3,0],[1,2,0,0]],[[2,2,2,1],[2,3,2,1],[2,1,3,0],[1,2,0,0]],[[1,2,2,1],[3,3,2,1],[2,1,3,0],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[2,1,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,2,1],[2,1,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[2,1,3,0],[1,1,1,0]],[[1,2,2,1],[3,3,2,1],[2,1,3,0],[1,0,2,0]],[[1,2,3,1],[2,3,2,1],[2,1,3,0],[1,0,2,0]],[[1,3,2,1],[2,3,2,1],[2,1,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,2,1],[2,1,3,0],[1,0,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,3,0],[0,2,1,0]],[[1,2,3,1],[2,3,2,1],[2,1,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,2,1],[2,1,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,2,1],[2,1,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,1,3,0],[0,1,2,0]],[[0,0,2,2],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[0,0,2,1],[2,3,4,2],[1,3,3,2],[0,0,0,1]],[[0,0,2,1],[2,3,3,3],[1,3,3,2],[0,0,0,1]],[[0,0,2,1],[2,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,3,1],[2,3,2,1],[2,1,3,0],[0,1,2,0]],[[1,3,2,1],[2,3,2,1],[2,1,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,2,1],[2,1,3,0],[0,1,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,2,1],[1,2,0,0]],[[1,2,2,2],[2,3,2,1],[2,1,2,1],[1,2,0,0]],[[1,2,3,1],[2,3,2,1],[2,1,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,2,1],[2,1,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,2,1],[2,1,2,1],[1,2,0,0]],[[1,2,2,1],[3,3,2,1],[2,1,2,1],[1,1,1,0]],[[1,2,2,2],[2,3,2,1],[2,1,2,1],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[2,1,2,1],[1,1,1,0]],[[1,3,2,1],[2,3,2,1],[2,1,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[2,1,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,2,1],[2,1,2,1],[1,1,0,1]],[[1,2,2,2],[2,3,2,1],[2,1,2,1],[1,1,0,1]],[[1,2,3,1],[2,3,2,1],[2,1,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,2,1],[2,1,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,2,1],[2,1,2,1],[1,1,0,1]],[[1,2,2,1],[3,3,2,1],[2,1,2,1],[1,0,2,0]],[[1,2,2,2],[2,3,2,1],[2,1,2,1],[1,0,2,0]],[[1,2,3,1],[2,3,2,1],[2,1,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,2,1],[2,1,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,2,1],[2,1,2,1],[1,0,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,2,1],[1,0,1,1]],[[1,2,2,2],[2,3,2,1],[2,1,2,1],[1,0,1,1]],[[1,2,3,1],[2,3,2,1],[2,1,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,2,1],[2,1,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,2,1],[2,1,2,1],[1,0,1,1]],[[1,2,2,1],[3,3,2,1],[2,1,2,1],[0,2,1,0]],[[1,2,2,2],[2,3,2,1],[2,1,2,1],[0,2,1,0]],[[1,2,3,1],[2,3,2,1],[2,1,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,2,1],[2,1,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,2,1],[2,1,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,1,2,1],[0,2,0,1]],[[1,2,2,2],[2,3,2,1],[2,1,2,1],[0,2,0,1]],[[1,2,3,1],[2,3,2,1],[2,1,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,2,1],[2,1,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,2,1],[2,1,2,1],[0,2,0,1]],[[1,2,2,1],[3,3,2,1],[2,1,2,1],[0,1,2,0]],[[1,2,2,2],[2,3,2,1],[2,1,2,1],[0,1,2,0]],[[1,2,3,1],[2,3,2,1],[2,1,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,2,1],[2,1,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,2,1],[2,1,2,1],[0,1,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,2,1],[0,1,1,1]],[[1,2,2,2],[2,3,2,1],[2,1,2,1],[0,1,1,1]],[[1,2,3,1],[2,3,2,1],[2,1,2,1],[0,1,1,1]],[[1,3,2,1],[2,3,2,1],[2,1,2,1],[0,1,1,1]],[[2,2,2,1],[2,3,2,1],[2,1,2,1],[0,1,1,1]],[[0,0,2,2],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[2,0,1,1],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[2,0,1,1],[1,2,2,1]],[[0,0,2,2],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[2,0,1,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[2,0,1,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,1,3],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,1,2],[0,3,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,1,2],[0,2,3,1]],[[0,0,2,1],[2,3,3,2],[2,0,1,2],[0,2,2,2]],[[0,0,2,2],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[2,0,1,2],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[2,0,1,2],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,1,3],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,1,2],[1,1,3,1]],[[0,0,2,1],[2,3,3,2],[2,0,1,2],[1,1,2,2]],[[0,0,2,2],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[2,0,1,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[2,0,1,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,1,3],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,1,2],[1,2,1,2]],[[0,0,2,2],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,0,2,1],[2,3,4,2],[2,0,1,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,3],[2,0,1,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,2],[2,0,1,3],[1,2,2,0]],[[0,0,2,2],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[2,0,2,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[2,0,2,0],[1,2,2,1]],[[0,0,2,2],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[0,0,2,1],[2,3,4,2],[2,0,2,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,3],[2,0,2,1],[1,2,2,0]],[[0,0,2,2],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[2,0,2,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[2,0,2,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,2,3],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,2,2],[0,2,1,2]],[[0,0,2,2],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[0,0,2,1],[2,3,4,2],[2,0,2,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,3],[2,0,2,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,2],[2,0,2,3],[0,2,2,0]],[[0,0,2,2],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[2,0,2,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[2,0,2,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,2,3],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,2,2],[1,1,1,2]],[[0,0,2,2],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[0,0,2,1],[2,3,4,2],[2,0,2,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,3],[2,0,2,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,2],[2,0,2,3],[1,1,2,0]],[[0,0,2,2],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[0,0,2,1],[2,3,4,2],[2,0,2,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,3],[2,0,2,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,2],[2,0,2,3],[1,2,0,1]],[[0,0,2,1],[2,3,3,2],[2,0,2,2],[1,2,0,2]],[[0,0,2,2],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[0,0,2,1],[2,3,4,2],[2,0,2,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,3],[2,0,2,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,2],[2,0,2,3],[1,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,1,2,0],[1,2,0,1]],[[1,2,3,1],[2,3,2,1],[2,1,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,2,1],[2,1,2,0],[1,2,0,1]],[[2,2,2,1],[2,3,2,1],[2,1,2,0],[1,2,0,1]],[[0,0,2,2],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[2,0,3,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[2,0,3,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,4,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,3,0],[0,3,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,3,0],[0,2,3,1]],[[0,0,2,1],[2,3,3,2],[2,0,3,0],[0,2,2,2]],[[0,0,2,2],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[2,0,3,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[2,0,3,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,4,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,3,0],[1,1,3,1]],[[0,0,2,1],[2,3,3,2],[2,0,3,0],[1,1,2,2]],[[0,0,2,2],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[2,0,3,0],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[2,0,3,0],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,4,0],[1,2,1,1]],[[0,0,2,2],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[2,0,3,1],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[2,0,3,1],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,4,1],[0,2,1,1]],[[0,0,2,2],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[0,0,2,1],[2,3,4,2],[2,0,3,1],[0,2,2,0]],[[0,0,2,1],[2,3,3,3],[2,0,3,1],[0,2,2,0]],[[0,0,2,1],[2,3,3,2],[2,0,4,1],[0,2,2,0]],[[0,0,2,1],[2,3,3,2],[2,0,3,1],[0,3,2,0]],[[0,0,2,1],[2,3,3,2],[2,0,3,1],[0,2,3,0]],[[0,0,2,2],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[2,0,3,1],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[2,0,3,1],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,4,1],[1,1,1,1]],[[0,0,2,2],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[0,0,2,1],[2,3,4,2],[2,0,3,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,3],[2,0,3,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,2],[2,0,4,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,2],[2,0,3,1],[1,1,3,0]],[[0,0,2,2],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[0,0,2,1],[2,3,4,2],[2,0,3,1],[1,2,0,1]],[[0,0,2,1],[2,3,3,3],[2,0,3,1],[1,2,0,1]],[[0,0,2,1],[2,3,3,2],[2,0,4,1],[1,2,0,1]],[[0,0,2,2],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[0,0,2,1],[2,3,4,2],[2,0,3,1],[1,2,1,0]],[[0,0,2,1],[2,3,3,3],[2,0,3,1],[1,2,1,0]],[[0,0,2,1],[2,3,3,2],[2,0,4,1],[1,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,1,2,0],[1,1,1,1]],[[1,2,2,2],[2,3,2,1],[2,1,2,0],[1,1,1,1]],[[1,2,3,1],[2,3,2,1],[2,1,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,2,1],[2,1,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,2,1],[2,1,2,0],[1,1,1,1]],[[1,2,2,1],[3,3,2,1],[2,1,2,0],[1,0,2,1]],[[0,0,2,2],[2,3,3,2],[2,0,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,4,2],[2,0,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,3],[2,0,3,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,3,3],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[2,0,3,2],[0,0,2,2]],[[0,0,2,2],[2,3,3,2],[2,0,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[2,0,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[2,0,3,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,3,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,3,2],[0,1,1,2]],[[0,0,2,2],[2,3,3,2],[2,0,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[2,0,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[2,0,3,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,2,2],[2,3,2,1],[2,1,2,0],[1,0,2,1]],[[1,2,3,1],[2,3,2,1],[2,1,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,2,1],[2,1,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,2,1],[2,1,2,0],[1,0,2,1]],[[0,0,2,2],[2,3,3,2],[2,0,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,4,2],[2,0,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,3],[2,0,3,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,3,3],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[2,0,3,2],[1,0,1,2]],[[0,0,2,2],[2,3,3,2],[2,0,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,4,2],[2,0,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,3],[2,0,3,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,2,0],[0,2,1,1]],[[1,2,2,2],[2,3,2,1],[2,1,2,0],[0,2,1,1]],[[1,2,3,1],[2,3,2,1],[2,1,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,2,1],[2,1,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,2,1],[2,1,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,2,1],[2,1,2,0],[0,1,2,1]],[[1,2,2,2],[2,3,2,1],[2,1,2,0],[0,1,2,1]],[[1,2,3,1],[2,3,2,1],[2,1,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,2,1],[2,1,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,2,1],[2,1,2,0],[0,1,2,1]],[[1,2,2,1],[3,3,2,1],[2,1,1,2],[1,2,0,0]],[[1,2,2,2],[2,3,2,1],[2,1,1,2],[1,2,0,0]],[[1,2,3,1],[2,3,2,1],[2,1,1,2],[1,2,0,0]],[[0,0,2,2],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[2,1,0,1],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[2,1,0,1],[1,2,2,1]],[[0,0,2,2],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[2,1,0,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[2,1,0,2],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,0,3],[0,2,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,0,2],[0,3,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,0,2],[0,2,3,1]],[[0,0,2,1],[2,3,3,2],[2,1,0,2],[0,2,2,2]],[[0,0,2,2],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[2,1,0,2],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[2,1,0,2],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,0,3],[1,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,0,2],[1,1,3,1]],[[0,0,2,1],[2,3,3,2],[2,1,0,2],[1,1,2,2]],[[0,0,2,2],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[2,1,0,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[2,1,0,2],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[2,1,0,3],[1,2,1,1]],[[0,0,2,1],[2,3,3,2],[2,1,0,2],[1,2,1,2]],[[0,0,2,2],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[0,0,2,1],[2,3,4,2],[2,1,0,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,3],[2,1,0,2],[1,2,2,0]],[[0,0,2,1],[2,3,3,2],[2,1,0,3],[1,2,2,0]],[[0,0,2,2],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[0,0,2,1],[2,3,4,2],[2,1,1,0],[1,2,2,1]],[[0,0,2,1],[2,3,3,3],[2,1,1,0],[1,2,2,1]],[[0,0,2,2],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[0,0,2,1],[2,3,4,2],[2,1,1,1],[1,2,2,0]],[[0,0,2,1],[2,3,3,3],[2,1,1,1],[1,2,2,0]],[[0,0,2,2],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[0,0,2,1],[2,3,4,2],[2,1,1,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,3],[2,1,1,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,1,3],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,1,2],[0,1,3,1]],[[0,0,2,1],[2,3,3,2],[2,1,1,2],[0,1,2,2]],[[0,0,2,2],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[0,0,2,1],[2,3,4,2],[2,1,1,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,3],[2,1,1,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,1,3],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,1,2],[1,0,3,1]],[[0,0,2,1],[2,3,3,2],[2,1,1,2],[1,0,2,2]],[[0,0,2,2],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[0,0,2,1],[2,3,4,2],[2,1,1,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,3],[2,1,1,2],[1,2,0,1]],[[0,0,2,1],[2,3,3,2],[2,1,1,3],[1,2,0,1]],[[0,0,2,1],[2,3,3,2],[2,1,1,2],[1,2,0,2]],[[0,0,2,2],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[0,0,2,1],[2,3,4,2],[2,1,1,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,3],[2,1,1,2],[1,2,1,0]],[[0,0,2,1],[2,3,3,2],[2,1,1,3],[1,2,1,0]],[[1,3,2,1],[2,3,2,1],[2,1,1,2],[1,2,0,0]],[[2,2,2,1],[2,3,2,1],[2,1,1,2],[1,2,0,0]],[[0,0,2,2],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[0,0,2,1],[2,3,4,2],[2,1,2,0],[1,2,1,1]],[[0,0,2,1],[2,3,3,3],[2,1,2,0],[1,2,1,1]],[[0,0,2,2],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[0,0,2,1],[2,3,4,2],[2,1,2,1],[1,2,0,1]],[[0,0,2,1],[2,3,3,3],[2,1,2,1],[1,2,0,1]],[[0,0,2,2],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[0,0,2,1],[2,3,4,2],[2,1,2,1],[1,2,1,0]],[[0,0,2,1],[2,3,3,3],[2,1,2,1],[1,2,1,0]],[[0,0,2,2],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[0,0,2,1],[2,3,4,2],[2,1,2,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,3],[2,1,2,2],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,2,3],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,2,2],[0,0,2,2]],[[0,0,2,2],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[2,1,2,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[2,1,2,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,1,2,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,1,2,2],[0,1,1,2]],[[0,0,2,2],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[2,1,2,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[2,1,2,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[2,1,2,3],[0,1,2,0]],[[0,0,2,2],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[0,0,2,1],[2,3,4,2],[2,1,2,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,3],[2,1,2,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[2,1,2,3],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[2,1,2,2],[0,2,0,2]],[[0,0,2,2],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[0,0,2,1],[2,3,4,2],[2,1,2,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,3],[2,1,2,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,2],[2,1,2,3],[0,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,1,1,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,1],[2,1,1,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[2,1,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,1],[2,1,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[2,1,1,2],[1,1,1,0]],[[1,2,2,1],[3,3,2,1],[2,1,1,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,1],[2,1,1,2],[1,1,0,1]],[[0,0,2,2],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[0,0,2,1],[2,3,4,2],[2,1,2,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,3],[2,1,2,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[2,1,2,3],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[2,1,2,2],[1,0,1,2]],[[0,0,2,2],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[0,0,2,1],[2,3,4,2],[2,1,2,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,3],[2,1,2,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,2],[2,1,2,3],[1,0,2,0]],[[0,0,2,2],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[0,0,2,1],[2,3,4,2],[2,1,2,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,3],[2,1,2,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,2],[2,1,2,3],[1,1,0,1]],[[0,0,2,1],[2,3,3,2],[2,1,2,2],[1,1,0,2]],[[0,0,2,2],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[0,0,2,1],[2,3,4,2],[2,1,2,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,3],[2,1,2,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,2],[2,1,2,3],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[2,1,1,2],[1,1,0,1]],[[1,3,2,1],[2,3,2,1],[2,1,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,1],[2,1,1,2],[1,1,0,1]],[[1,2,2,1],[3,3,2,1],[2,1,1,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,1],[2,1,1,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,1],[2,1,1,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,1],[2,1,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,1],[2,1,1,2],[1,0,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,1,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,1],[2,1,1,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,1],[2,1,1,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,1],[2,1,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,1],[2,1,1,2],[1,0,1,1]],[[0,0,2,2],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[0,0,2,1],[2,3,4,2],[2,1,3,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,3],[2,1,3,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,4,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,3,0],[0,1,3,1]],[[0,0,2,1],[2,3,3,2],[2,1,3,0],[0,1,2,2]],[[0,0,2,2],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[2,1,3,0],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[2,1,3,0],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[2,1,4,0],[0,2,1,1]],[[0,0,2,2],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[0,0,2,1],[2,3,4,2],[2,1,3,0],[1,0,2,1]],[[0,0,2,1],[2,3,3,3],[2,1,3,0],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,4,0],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,3,0],[1,0,3,1]],[[0,0,2,1],[2,3,3,2],[2,1,3,0],[1,0,2,2]],[[0,0,2,2],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[2,1,3,0],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[2,1,3,0],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,1,4,0],[1,1,1,1]],[[1,2,2,1],[3,3,2,1],[2,1,1,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,1],[2,1,1,2],[0,2,1,0]],[[0,0,2,2],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[0,0,2,1],[2,3,4,2],[2,1,3,1],[0,0,2,1]],[[0,0,2,1],[2,3,3,3],[2,1,3,1],[0,0,2,1]],[[0,0,2,1],[2,3,3,2],[2,1,4,1],[0,0,2,1]],[[0,0,2,2],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[2,1,3,1],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[2,1,3,1],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,1,4,1],[0,1,1,1]],[[0,0,2,2],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[2,1,3,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[2,1,3,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[2,1,4,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[2,1,3,1],[0,1,3,0]],[[0,0,2,2],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[0,0,2,1],[2,3,4,2],[2,1,3,1],[0,2,0,1]],[[0,0,2,1],[2,3,3,3],[2,1,3,1],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[2,1,4,1],[0,2,0,1]],[[0,0,2,2],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[0,0,2,1],[2,3,4,2],[2,1,3,1],[0,2,1,0]],[[0,0,2,1],[2,3,3,3],[2,1,3,1],[0,2,1,0]],[[0,0,2,1],[2,3,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,3,1],[2,3,2,1],[2,1,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,1],[2,1,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,1],[2,1,1,2],[0,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,1,1,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,1],[2,1,1,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,1],[2,1,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,1],[2,1,1,2],[0,2,0,1]],[[0,0,2,2],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[0,0,2,1],[2,3,4,2],[2,1,3,1],[1,0,1,1]],[[0,0,2,1],[2,3,3,3],[2,1,3,1],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[2,1,4,1],[1,0,1,1]],[[0,0,2,2],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[0,0,2,1],[2,3,4,2],[2,1,3,1],[1,0,2,0]],[[0,0,2,1],[2,3,3,3],[2,1,3,1],[1,0,2,0]],[[0,0,2,1],[2,3,3,2],[2,1,4,1],[1,0,2,0]],[[0,0,2,1],[2,3,3,2],[2,1,3,1],[1,0,3,0]],[[0,0,2,2],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[0,0,2,1],[2,3,4,2],[2,1,3,1],[1,1,0,1]],[[0,0,2,1],[2,3,3,3],[2,1,3,1],[1,1,0,1]],[[0,0,2,1],[2,3,3,2],[2,1,4,1],[1,1,0,1]],[[0,0,2,2],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[0,0,2,1],[2,3,4,2],[2,1,3,1],[1,1,1,0]],[[0,0,2,1],[2,3,3,3],[2,1,3,1],[1,1,1,0]],[[0,0,2,1],[2,3,3,2],[2,1,4,1],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[2,1,1,2],[0,2,0,1]],[[1,2,2,1],[3,3,2,1],[2,1,1,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,1],[2,1,1,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,1],[2,1,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,1],[2,1,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,1],[2,1,1,2],[0,1,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,1,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,1],[2,1,1,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,1],[2,1,1,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,1],[2,1,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,1],[2,1,1,2],[0,1,1,1]],[[0,0,2,2],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[0,0,2,1],[2,3,4,2],[2,1,3,2],[0,1,0,1]],[[0,0,2,1],[2,3,3,3],[2,1,3,2],[0,1,0,1]],[[0,0,2,1],[2,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,1],[3,3,2,1],[2,1,1,1],[1,1,2,0]],[[1,2,2,2],[2,3,2,1],[2,1,1,1],[1,1,2,0]],[[1,2,3,1],[2,3,2,1],[2,1,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,2,1],[2,1,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,2,1],[2,1,1,1],[1,1,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,1,1],[0,2,2,0]],[[1,2,2,2],[2,3,2,1],[2,1,1,1],[0,2,2,0]],[[1,2,3,1],[2,3,2,1],[2,1,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,2,1],[2,1,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,2,1],[2,1,1,1],[0,2,2,0]],[[0,0,2,2],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[0,0,2,1],[2,3,4,2],[2,1,3,2],[1,0,0,1]],[[0,0,2,1],[2,3,3,3],[2,1,3,2],[1,0,0,1]],[[0,0,2,1],[2,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,1],[3,3,2,1],[2,1,1,0],[1,1,2,1]],[[1,2,2,2],[2,3,2,1],[2,1,1,0],[1,1,2,1]],[[1,2,3,1],[2,3,2,1],[2,1,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,2,1],[2,1,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,2,1],[2,1,1,0],[1,1,2,1]],[[1,2,2,1],[3,3,2,1],[2,1,1,0],[0,2,2,1]],[[1,2,2,2],[2,3,2,1],[2,1,1,0],[0,2,2,1]],[[1,2,3,1],[2,3,2,1],[2,1,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,2,1],[2,1,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,2,1],[2,1,1,0],[0,2,2,1]],[[1,2,2,1],[3,3,2,1],[2,1,0,2],[1,1,2,0]],[[1,2,2,2],[2,3,2,1],[2,1,0,2],[1,1,2,0]],[[1,2,3,1],[2,3,2,1],[2,1,0,2],[1,1,2,0]],[[1,3,2,1],[2,3,2,1],[2,1,0,2],[1,1,2,0]],[[2,2,2,1],[2,3,2,1],[2,1,0,2],[1,1,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,0,2],[1,1,1,1]],[[1,2,2,2],[2,3,2,1],[2,1,0,2],[1,1,1,1]],[[1,2,3,1],[2,3,2,1],[2,1,0,2],[1,1,1,1]],[[1,3,2,1],[2,3,2,1],[2,1,0,2],[1,1,1,1]],[[2,2,2,1],[2,3,2,1],[2,1,0,2],[1,1,1,1]],[[1,2,2,1],[3,3,2,1],[2,1,0,2],[1,0,2,1]],[[1,2,2,2],[2,3,2,1],[2,1,0,2],[1,0,2,1]],[[1,2,3,1],[2,3,2,1],[2,1,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,2,1],[2,1,0,2],[1,0,2,1]],[[2,2,2,1],[2,3,2,1],[2,1,0,2],[1,0,2,1]],[[0,0,2,2],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[2,2,0,1],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[2,2,0,1],[0,2,2,1]],[[0,0,2,2],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[2,2,0,1],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[2,2,0,1],[1,1,2,1]],[[0,0,2,2],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,0,2,1],[2,3,4,2],[2,2,0,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,3],[2,2,0,2],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,2,0,3],[0,1,2,1]],[[0,0,2,1],[2,3,3,2],[2,2,0,2],[0,1,3,1]],[[0,0,2,1],[2,3,3,2],[2,2,0,2],[0,1,2,2]],[[0,0,2,2],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[2,2,0,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[2,2,0,2],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[2,2,0,3],[0,2,1,1]],[[0,0,2,1],[2,3,3,2],[2,2,0,2],[0,2,1,2]],[[0,0,2,2],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[0,0,2,1],[2,3,4,2],[2,2,0,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,3],[2,2,0,2],[0,2,2,0]],[[0,0,2,1],[2,3,3,2],[2,2,0,3],[0,2,2,0]],[[0,0,2,2],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,0,2,1],[2,3,4,2],[2,2,0,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,3],[2,2,0,2],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[2,2,0,3],[1,0,2,1]],[[0,0,2,1],[2,3,3,2],[2,2,0,2],[1,0,3,1]],[[0,0,2,1],[2,3,3,2],[2,2,0,2],[1,0,2,2]],[[0,0,2,2],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[2,2,0,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[2,2,0,2],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,2,0,3],[1,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,2,0,2],[1,1,1,2]],[[0,0,2,2],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[0,0,2,1],[2,3,4,2],[2,2,0,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,3],[2,2,0,2],[1,1,2,0]],[[0,0,2,1],[2,3,3,2],[2,2,0,3],[1,1,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,0,2],[0,2,2,0]],[[1,2,2,2],[2,3,2,1],[2,1,0,2],[0,2,2,0]],[[1,2,3,1],[2,3,2,1],[2,1,0,2],[0,2,2,0]],[[1,3,2,1],[2,3,2,1],[2,1,0,2],[0,2,2,0]],[[2,2,2,1],[2,3,2,1],[2,1,0,2],[0,2,2,0]],[[1,2,2,1],[3,3,2,1],[2,1,0,2],[0,2,1,1]],[[1,2,2,2],[2,3,2,1],[2,1,0,2],[0,2,1,1]],[[1,2,3,1],[2,3,2,1],[2,1,0,2],[0,2,1,1]],[[0,0,2,2],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[0,0,2,1],[2,3,4,2],[2,2,1,0],[0,2,2,1]],[[0,0,2,1],[2,3,3,3],[2,2,1,0],[0,2,2,1]],[[0,0,2,2],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[0,0,2,1],[2,3,4,2],[2,2,1,0],[1,1,2,1]],[[0,0,2,1],[2,3,3,3],[2,2,1,0],[1,1,2,1]],[[0,0,2,2],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[0,0,2,1],[2,3,4,2],[2,2,1,1],[0,2,2,0]],[[0,0,2,1],[2,3,3,3],[2,2,1,1],[0,2,2,0]],[[0,0,2,2],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[0,0,2,1],[2,3,4,2],[2,2,1,1],[1,1,2,0]],[[0,0,2,1],[2,3,3,3],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,2,1],[2,1,0,2],[0,2,1,1]],[[2,2,2,1],[2,3,2,1],[2,1,0,2],[0,2,1,1]],[[1,2,2,1],[3,3,2,1],[2,1,0,2],[0,1,2,1]],[[0,0,2,2],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[2,2,1,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[2,2,1,2],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,2,1,3],[0,1,1,1]],[[0,0,2,1],[2,3,3,2],[2,2,1,2],[0,1,1,2]],[[0,0,2,2],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[2,2,1,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[2,2,1,2],[0,1,2,0]],[[0,0,2,1],[2,3,3,2],[2,2,1,3],[0,1,2,0]],[[0,0,2,2],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,0,2,1],[2,3,4,2],[2,2,1,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,3],[2,2,1,2],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[2,2,1,3],[0,2,0,1]],[[0,0,2,1],[2,3,3,2],[2,2,1,2],[0,2,0,2]],[[0,0,2,2],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,0,2,1],[2,3,4,2],[2,2,1,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,3],[2,2,1,2],[0,2,1,0]],[[0,0,2,1],[2,3,3,2],[2,2,1,3],[0,2,1,0]],[[1,2,2,2],[2,3,2,1],[2,1,0,2],[0,1,2,1]],[[1,2,3,1],[2,3,2,1],[2,1,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,2,1],[2,1,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,2,1],[2,1,0,2],[0,1,2,1]],[[0,0,2,2],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,0,2,1],[2,3,4,2],[2,2,1,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,3],[2,2,1,2],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[2,2,1,3],[1,0,1,1]],[[0,0,2,1],[2,3,3,2],[2,2,1,2],[1,0,1,2]],[[0,0,2,2],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,0,2,1],[2,3,4,2],[2,2,1,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,3],[2,2,1,2],[1,0,2,0]],[[0,0,2,1],[2,3,3,2],[2,2,1,3],[1,0,2,0]],[[0,0,2,2],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,0,2,1],[2,3,4,2],[2,2,1,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,3],[2,2,1,2],[1,1,0,1]],[[0,0,2,1],[2,3,3,2],[2,2,1,3],[1,1,0,1]],[[0,0,2,1],[2,3,3,2],[2,2,1,2],[1,1,0,2]],[[0,0,2,2],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,0,2,1],[2,3,4,2],[2,2,1,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,3],[2,2,1,2],[1,1,1,0]],[[0,0,2,1],[2,3,3,2],[2,2,1,3],[1,1,1,0]],[[0,0,2,2],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[0,0,2,1],[2,3,4,2],[2,2,1,2],[1,2,0,0]],[[0,0,2,1],[2,3,3,3],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[3,3,2,1],[2,1,0,1],[1,1,2,1]],[[1,2,2,2],[2,3,2,1],[2,1,0,1],[1,1,2,1]],[[1,2,3,1],[2,3,2,1],[2,1,0,1],[1,1,2,1]],[[1,3,2,1],[2,3,2,1],[2,1,0,1],[1,1,2,1]],[[2,2,2,1],[2,3,2,1],[2,1,0,1],[1,1,2,1]],[[1,2,2,1],[3,3,2,1],[2,1,0,1],[0,2,2,1]],[[1,2,2,2],[2,3,2,1],[2,1,0,1],[0,2,2,1]],[[1,2,3,1],[2,3,2,1],[2,1,0,1],[0,2,2,1]],[[1,3,2,1],[2,3,2,1],[2,1,0,1],[0,2,2,1]],[[2,2,2,1],[2,3,2,1],[2,1,0,1],[0,2,2,1]],[[0,0,2,2],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[0,0,2,1],[2,3,4,2],[2,2,2,0],[0,1,2,1]],[[0,0,2,1],[2,3,3,3],[2,2,2,0],[0,1,2,1]],[[0,0,2,2],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[0,0,2,1],[2,3,4,2],[2,2,2,0],[0,2,1,1]],[[0,0,2,1],[2,3,3,3],[2,2,2,0],[0,2,1,1]],[[0,0,2,2],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[0,0,2,1],[2,3,4,2],[2,2,2,0],[1,0,2,1]],[[0,0,2,1],[2,3,3,3],[2,2,2,0],[1,0,2,1]],[[0,0,2,2],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[0,0,2,1],[2,3,4,2],[2,2,2,0],[1,1,1,1]],[[0,0,2,1],[2,3,3,3],[2,2,2,0],[1,1,1,1]],[[0,0,2,2],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[0,0,2,1],[2,3,4,2],[2,2,2,1],[0,1,1,1]],[[0,0,2,1],[2,3,3,3],[2,2,2,1],[0,1,1,1]],[[0,0,2,2],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[0,0,2,1],[2,3,4,2],[2,2,2,1],[0,1,2,0]],[[0,0,2,1],[2,3,3,3],[2,2,2,1],[0,1,2,0]],[[0,0,2,2],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[0,0,2,1],[2,3,4,2],[2,2,2,1],[0,2,0,1]],[[0,0,2,1],[2,3,3,3],[2,2,2,1],[0,2,0,1]],[[0,0,2,2],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[0,0,2,1],[2,3,4,2],[2,2,2,1],[0,2,1,0]],[[0,0,2,1],[2,3,3,3],[2,2,2,1],[0,2,1,0]],[[0,0,2,2],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[0,0,2,1],[2,3,4,2],[2,2,2,1],[1,0,1,1]],[[0,0,2,1],[2,3,3,3],[2,2,2,1],[1,0,1,1]],[[0,0,2,2],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[0,0,2,1],[2,3,4,2],[2,2,2,1],[1,0,2,0]],[[0,0,2,1],[2,3,3,3],[2,2,2,1],[1,0,2,0]],[[0,0,2,2],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[0,0,2,1],[2,3,4,2],[2,2,2,1],[1,1,0,1]],[[0,0,2,1],[2,3,3,3],[2,2,2,1],[1,1,0,1]],[[0,0,2,2],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[0,0,2,1],[2,3,4,2],[2,2,2,1],[1,1,1,0]],[[0,0,2,1],[2,3,3,3],[2,2,2,1],[1,1,1,0]],[[0,0,2,2],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[0,0,2,1],[2,3,4,2],[2,2,2,1],[1,2,0,0]],[[0,0,2,1],[2,3,3,3],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[3,3,2,1],[2,0,3,2],[1,0,0,1]],[[1,2,2,2],[2,3,2,1],[2,0,3,2],[1,0,0,1]],[[1,2,3,1],[2,3,2,1],[2,0,3,2],[1,0,0,1]],[[1,3,2,1],[2,3,2,1],[2,0,3,2],[1,0,0,1]],[[2,2,2,1],[2,3,2,1],[2,0,3,2],[1,0,0,1]],[[1,2,2,1],[3,3,2,1],[2,0,3,2],[0,1,0,1]],[[1,2,2,2],[2,3,2,1],[2,0,3,2],[0,1,0,1]],[[1,2,3,1],[2,3,2,1],[2,0,3,2],[0,1,0,1]],[[1,3,2,1],[2,3,2,1],[2,0,3,2],[0,1,0,1]],[[2,2,2,1],[2,3,2,1],[2,0,3,2],[0,1,0,1]],[[1,2,2,1],[3,3,2,1],[2,0,3,1],[1,1,1,0]],[[1,2,2,2],[2,3,2,1],[2,0,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[2,0,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,2,1],[2,0,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[3,3,2,1],[2,0,3,1],[1,1,0,1]],[[1,2,2,2],[2,3,2,1],[2,0,3,1],[1,1,0,1]],[[1,2,3,1],[2,3,2,1],[2,0,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,2,1],[2,0,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,2,1],[2,0,3,1],[1,1,0,1]],[[1,2,2,1],[3,3,2,1],[2,0,3,1],[1,0,2,0]],[[1,2,2,2],[2,3,2,1],[2,0,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,2,1],[2,0,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,2,1],[2,0,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,2,1],[2,0,3,1],[1,0,2,0]],[[1,2,2,1],[3,3,2,1],[2,0,3,1],[1,0,1,1]],[[1,2,2,2],[2,3,2,1],[2,0,3,1],[1,0,1,1]],[[1,2,3,1],[2,3,2,1],[2,0,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,2,1],[2,0,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,2,1],[2,0,3,1],[1,0,1,1]],[[1,2,2,1],[3,3,2,1],[2,0,3,1],[0,2,1,0]],[[1,2,2,2],[2,3,2,1],[2,0,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,2,1],[2,0,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,2,1],[2,0,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,2,1],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,0,3,1],[0,2,0,1]],[[1,2,2,2],[2,3,2,1],[2,0,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,2,1],[2,0,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,2,1],[2,0,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,2,1],[2,0,3,1],[0,2,0,1]],[[1,2,2,1],[3,3,2,1],[2,0,3,1],[0,1,2,0]],[[1,2,2,2],[2,3,2,1],[2,0,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,2,1],[2,0,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,2,1],[2,0,3,1],[0,1,2,0]],[[0,0,2,2],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[0,0,2,1],[2,3,4,2],[2,2,3,1],[0,2,0,0]],[[0,0,2,1],[2,3,3,3],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,2,1],[2,0,3,1],[0,1,2,0]],[[1,2,2,1],[3,3,2,1],[2,0,3,1],[0,1,1,1]],[[1,2,2,2],[2,3,2,1],[2,0,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,2,1],[2,0,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,2,1],[2,0,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,2,1],[2,0,3,1],[0,1,1,1]],[[1,2,2,1],[3,3,2,1],[2,0,3,1],[0,0,2,1]],[[1,2,2,2],[2,3,2,1],[2,0,3,1],[0,0,2,1]],[[1,2,3,1],[2,3,2,1],[2,0,3,1],[0,0,2,1]],[[1,3,2,1],[2,3,2,1],[2,0,3,1],[0,0,2,1]],[[2,2,2,1],[2,3,2,1],[2,0,3,1],[0,0,2,1]],[[0,0,2,2],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[0,0,2,1],[2,3,4,2],[2,2,3,1],[1,1,0,0]],[[0,0,2,1],[2,3,3,3],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[3,3,2,1],[2,0,3,0],[1,2,1,0]],[[1,2,3,1],[2,3,2,1],[2,0,3,0],[1,2,1,0]],[[1,3,2,1],[2,3,2,1],[2,0,3,0],[1,2,1,0]],[[2,2,2,1],[2,3,2,1],[2,0,3,0],[1,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,0,3,0],[1,1,1,1]],[[1,2,2,2],[2,3,2,1],[2,0,3,0],[1,1,1,1]],[[1,2,3,1],[2,3,2,1],[2,0,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,2,1],[2,0,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,2,1],[2,0,3,0],[1,1,1,1]],[[1,2,2,1],[3,3,2,1],[2,0,3,0],[1,0,2,1]],[[1,2,2,2],[2,3,2,1],[2,0,3,0],[1,0,2,1]],[[1,2,3,1],[2,3,2,1],[2,0,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,2,1],[2,0,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,2,1],[2,0,3,0],[1,0,2,1]],[[1,2,2,1],[3,3,2,1],[2,0,3,0],[0,2,1,1]],[[1,2,2,2],[2,3,2,1],[2,0,3,0],[0,2,1,1]],[[1,2,3,1],[2,3,2,1],[2,0,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,2,1],[2,0,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,2,1],[2,0,3,0],[0,2,1,1]],[[1,2,2,1],[3,3,2,1],[2,0,3,0],[0,1,2,1]],[[1,2,2,2],[2,3,2,1],[2,0,3,0],[0,1,2,1]],[[1,2,3,1],[2,3,2,1],[2,0,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,2,1],[2,0,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,2,1],[2,0,3,0],[0,1,2,1]],[[1,2,2,1],[3,3,2,1],[2,0,2,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,1],[2,0,2,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[2,0,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,1],[2,0,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[2,0,2,2],[1,1,1,0]],[[1,2,2,1],[3,3,2,1],[2,0,2,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,1],[2,0,2,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,1],[2,0,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,2,1],[2,0,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,1],[2,0,2,2],[1,1,0,1]],[[1,2,2,1],[3,3,2,1],[2,0,2,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,1],[2,0,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,1],[2,0,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,1],[2,0,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,1],[2,0,2,2],[1,0,2,0]],[[1,2,2,1],[3,3,2,1],[2,0,2,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,1],[2,0,2,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,1],[2,0,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,1],[2,0,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,1],[2,0,2,2],[1,0,1,1]],[[1,2,2,1],[3,3,2,1],[2,0,2,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,1],[2,0,2,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,1],[2,0,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,1],[2,0,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,1],[2,0,2,2],[0,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,0,2,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,1],[2,0,2,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,1],[2,0,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,1],[2,0,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,2,1],[2,0,2,2],[0,2,0,1]],[[1,2,2,1],[3,3,2,1],[2,0,2,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,1],[2,0,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,1],[2,0,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,1],[2,0,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,1],[2,0,2,2],[0,1,2,0]],[[1,2,2,1],[3,3,2,1],[2,0,2,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,1],[2,0,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,1],[2,0,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,1],[2,0,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,1],[2,0,2,2],[0,1,1,1]],[[1,2,2,1],[3,3,2,1],[2,0,2,2],[0,0,2,1]],[[1,2,2,2],[2,3,2,1],[2,0,2,2],[0,0,2,1]],[[1,2,3,1],[2,3,2,1],[2,0,2,2],[0,0,2,1]],[[1,3,2,1],[2,3,2,1],[2,0,2,2],[0,0,2,1]],[[2,2,2,1],[2,3,2,1],[2,0,2,2],[0,0,2,1]],[[1,2,2,1],[3,3,2,1],[2,0,2,1],[1,2,1,0]],[[1,2,2,2],[2,3,2,1],[2,0,2,1],[1,2,1,0]],[[1,2,3,1],[2,3,2,1],[2,0,2,1],[1,2,1,0]],[[1,3,2,1],[2,3,2,1],[2,0,2,1],[1,2,1,0]],[[2,2,2,1],[2,3,2,1],[2,0,2,1],[1,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,0,2,1],[1,2,0,1]],[[1,2,2,2],[2,3,2,1],[2,0,2,1],[1,2,0,1]],[[1,2,3,1],[2,3,2,1],[2,0,2,1],[1,2,0,1]],[[1,3,2,1],[2,3,2,1],[2,0,2,1],[1,2,0,1]],[[2,2,2,1],[2,3,2,1],[2,0,2,1],[1,2,0,1]],[[1,2,2,1],[3,3,2,1],[2,0,2,0],[1,2,1,1]],[[1,2,2,2],[2,3,2,1],[2,0,2,0],[1,2,1,1]],[[1,2,3,1],[2,3,2,1],[2,0,2,0],[1,2,1,1]],[[1,3,2,1],[2,3,2,1],[2,0,2,0],[1,2,1,1]],[[2,2,2,1],[2,3,2,1],[2,0,2,0],[1,2,1,1]],[[1,2,2,1],[3,3,2,1],[2,0,1,2],[1,2,1,0]],[[1,2,2,2],[2,3,2,1],[2,0,1,2],[1,2,1,0]],[[1,2,3,1],[2,3,2,1],[2,0,1,2],[1,2,1,0]],[[1,3,2,1],[2,3,2,1],[2,0,1,2],[1,2,1,0]],[[2,2,2,1],[2,3,2,1],[2,0,1,2],[1,2,1,0]],[[1,2,2,1],[3,3,2,1],[2,0,1,2],[1,2,0,1]],[[1,2,2,2],[2,3,2,1],[2,0,1,2],[1,2,0,1]],[[1,2,3,1],[2,3,2,1],[2,0,1,2],[1,2,0,1]],[[1,3,2,1],[2,3,2,1],[2,0,1,2],[1,2,0,1]],[[2,2,2,1],[2,3,2,1],[2,0,1,2],[1,2,0,1]],[[1,2,2,1],[3,3,2,1],[2,0,1,2],[1,0,2,1]],[[1,2,2,2],[2,3,2,1],[2,0,1,2],[1,0,2,1]],[[1,2,3,1],[2,3,2,1],[2,0,1,2],[1,0,2,1]],[[1,3,2,1],[2,3,2,1],[2,0,1,2],[1,0,2,1]],[[2,2,2,1],[2,3,2,1],[2,0,1,2],[1,0,2,1]],[[1,2,2,1],[3,3,2,1],[2,0,1,2],[0,1,2,1]],[[1,2,2,2],[2,3,2,1],[2,0,1,2],[0,1,2,1]],[[1,2,3,1],[2,3,2,1],[2,0,1,2],[0,1,2,1]],[[1,3,2,1],[2,3,2,1],[2,0,1,2],[0,1,2,1]],[[2,2,2,1],[2,3,2,1],[2,0,1,2],[0,1,2,1]],[[1,2,2,1],[3,3,2,1],[2,0,1,1],[1,2,2,0]],[[1,2,2,2],[2,3,2,1],[2,0,1,1],[1,2,2,0]],[[1,2,3,1],[2,3,2,1],[2,0,1,1],[1,2,2,0]],[[1,3,2,1],[2,3,2,1],[2,0,1,1],[1,2,2,0]],[[2,2,2,1],[2,3,2,1],[2,0,1,1],[1,2,2,0]],[[1,2,2,1],[3,3,2,1],[2,0,1,0],[1,2,2,1]],[[1,2,2,2],[2,3,2,1],[2,0,1,0],[1,2,2,1]],[[1,2,3,1],[2,3,2,1],[2,0,1,0],[1,2,2,1]],[[1,3,2,1],[2,3,2,1],[2,0,1,0],[1,2,2,1]],[[2,2,2,1],[2,3,2,1],[2,0,1,0],[1,2,2,1]],[[1,2,2,1],[3,3,2,1],[2,0,0,2],[1,2,2,0]],[[1,2,2,2],[2,3,2,1],[2,0,0,2],[1,2,2,0]],[[1,2,3,1],[2,3,2,1],[2,0,0,2],[1,2,2,0]],[[1,3,2,1],[2,3,2,1],[2,0,0,2],[1,2,2,0]],[[2,2,2,1],[2,3,2,1],[2,0,0,2],[1,2,2,0]],[[1,2,2,1],[3,3,2,1],[2,0,0,2],[1,2,1,1]],[[1,2,2,2],[2,3,2,1],[2,0,0,2],[1,2,1,1]],[[1,2,3,1],[2,3,2,1],[2,0,0,2],[1,2,1,1]],[[1,3,2,1],[2,3,2,1],[2,0,0,2],[1,2,1,1]],[[2,2,2,1],[2,3,2,1],[2,0,0,2],[1,2,1,1]],[[1,2,2,1],[3,3,2,1],[2,0,0,2],[1,1,2,1]],[[1,2,2,2],[2,3,2,1],[2,0,0,2],[1,1,2,1]],[[1,2,3,1],[2,3,2,1],[2,0,0,2],[1,1,2,1]],[[1,3,2,1],[2,3,2,1],[2,0,0,2],[1,1,2,1]],[[2,2,2,1],[2,3,2,1],[2,0,0,2],[1,1,2,1]],[[1,2,2,1],[3,3,2,1],[2,0,0,2],[0,2,2,1]],[[1,2,2,2],[2,3,2,1],[2,0,0,2],[0,2,2,1]],[[1,2,3,1],[2,3,2,1],[2,0,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,2,1],[2,0,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,2,1],[2,0,0,2],[0,2,2,1]],[[1,2,2,1],[3,3,2,1],[2,0,0,1],[1,2,2,1]],[[1,2,2,2],[2,3,2,1],[2,0,0,1],[1,2,2,1]],[[0,0,2,2],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[0,0,2,1],[2,3,4,2],[2,3,1,2],[1,0,0,1]],[[0,0,2,1],[2,3,3,3],[2,3,1,2],[1,0,0,1]],[[0,0,2,1],[2,3,3,2],[2,3,1,3],[1,0,0,1]],[[0,0,2,2],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[0,0,2,1],[2,3,4,2],[2,3,1,2],[1,0,1,0]],[[0,0,2,1],[2,3,3,3],[2,3,1,2],[1,0,1,0]],[[1,2,3,1],[2,3,2,1],[2,0,0,1],[1,2,2,1]],[[1,3,2,1],[2,3,2,1],[2,0,0,1],[1,2,2,1]],[[2,2,2,1],[2,3,2,1],[2,0,0,1],[1,2,2,1]],[[0,0,2,2],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[0,0,2,1],[2,3,4,2],[2,3,2,1],[1,0,0,1]],[[0,0,2,1],[2,3,3,3],[2,3,2,1],[1,0,0,1]],[[0,0,2,2],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[0,0,2,1],[2,3,4,2],[2,3,2,1],[1,0,1,0]],[[0,0,2,1],[2,3,3,3],[2,3,2,1],[1,0,1,0]],[[0,0,2,2],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[0,0,2,1],[2,3,4,2],[2,3,3,1],[1,0,0,0]],[[0,0,2,1],[2,3,3,3],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[3,3,2,1],[1,0,0,2],[1,2,2,1]],[[1,2,2,2],[2,3,2,1],[1,0,0,2],[1,2,2,1]],[[1,2,3,1],[2,3,2,1],[1,0,0,2],[1,2,2,1]],[[1,3,2,1],[2,3,2,1],[1,0,0,2],[1,2,2,1]],[[2,2,2,1],[2,3,2,1],[1,0,0,2],[1,2,2,1]],[[1,2,2,1],[2,4,2,1],[0,3,3,2],[0,0,0,1]],[[1,2,2,2],[2,3,2,1],[0,3,3,2],[0,0,0,1]],[[1,2,3,1],[2,3,2,1],[0,3,3,2],[0,0,0,1]],[[1,3,2,1],[2,3,2,1],[0,3,3,2],[0,0,0,1]],[[2,2,2,1],[2,3,2,1],[0,3,3,2],[0,0,0,1]],[[1,2,2,1],[2,4,2,1],[0,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,3,2,1],[0,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,3,2,1],[0,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,2,1],[0,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,2,1],[0,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,4,2,1],[0,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,3,2,1],[0,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,3,2,1],[0,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,2,1],[0,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,2,1],[0,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,4,2,1],[0,3,3,1],[0,0,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,3,1],[0,0,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,3,1],[0,0,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,3,1],[0,0,2,0]],[[1,2,2,1],[2,4,2,1],[0,3,3,1],[0,0,1,1]],[[1,2,2,2],[2,3,2,1],[0,3,3,1],[0,0,1,1]],[[1,2,3,1],[2,3,2,1],[0,3,3,1],[0,0,1,1]],[[1,3,2,1],[2,3,2,1],[0,3,3,1],[0,0,1,1]],[[2,2,2,1],[2,3,2,1],[0,3,3,1],[0,0,1,1]],[[1,2,2,1],[2,4,2,1],[0,3,3,0],[1,2,0,0]],[[1,2,3,1],[2,3,2,1],[0,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,3,2,1],[0,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,3,2,1],[0,3,3,0],[1,2,0,0]],[[1,2,2,1],[2,4,2,1],[0,3,3,0],[1,1,1,0]],[[1,2,2,2],[2,3,2,1],[0,3,3,0],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[0,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,2,1],[0,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[0,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,4,2,1],[0,3,3,0],[1,0,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,3,0],[1,0,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,3,0],[1,0,2,0]],[[0,1,0,1],[0,0,3,2],[2,3,3,3],[1,2,2,1]],[[0,1,0,1],[0,0,3,2],[2,3,3,2],[2,2,2,1]],[[0,1,0,1],[0,0,3,2],[2,3,3,2],[1,3,2,1]],[[0,1,0,1],[0,0,3,2],[2,3,3,2],[1,2,3,1]],[[0,1,0,1],[0,0,3,2],[2,3,3,2],[1,2,2,2]],[[0,1,0,1],[0,1,2,2],[2,3,3,3],[1,2,2,1]],[[0,1,0,1],[0,1,2,2],[2,3,3,2],[2,2,2,1]],[[0,1,0,1],[0,1,2,2],[2,3,3,2],[1,3,2,1]],[[0,1,0,1],[0,1,2,2],[2,3,3,2],[1,2,3,1]],[[0,1,0,1],[0,1,2,2],[2,3,3,2],[1,2,2,2]],[[0,1,0,1],[0,1,3,3],[2,3,2,2],[1,2,2,1]],[[0,1,0,1],[0,1,3,2],[2,3,2,3],[1,2,2,1]],[[0,1,0,1],[0,1,3,2],[2,3,2,2],[2,2,2,1]],[[0,1,0,1],[0,1,3,2],[2,3,2,2],[1,3,2,1]],[[0,1,0,1],[0,1,3,2],[2,3,2,2],[1,2,3,1]],[[0,1,0,1],[0,1,3,2],[2,3,2,2],[1,2,2,2]],[[0,1,0,1],[0,1,3,2],[2,3,4,1],[1,2,2,1]],[[0,1,0,1],[0,1,3,2],[2,3,3,1],[2,2,2,1]],[[0,1,0,1],[0,1,3,2],[2,3,3,1],[1,3,2,1]],[[0,1,0,1],[0,1,3,2],[2,3,3,1],[1,2,3,1]],[[0,1,0,1],[0,1,3,2],[2,3,3,1],[1,2,2,2]],[[0,1,0,1],[0,1,3,3],[2,3,3,2],[1,2,1,1]],[[0,1,0,1],[0,1,3,2],[2,3,4,2],[1,2,1,1]],[[0,1,0,1],[0,1,3,2],[2,3,3,3],[1,2,1,1]],[[0,1,0,1],[0,1,3,2],[2,3,3,2],[1,2,1,2]],[[0,1,0,1],[0,1,3,3],[2,3,3,2],[1,2,2,0]],[[0,1,0,1],[0,1,3,2],[2,3,4,2],[1,2,2,0]],[[0,1,0,1],[0,1,3,2],[2,3,3,3],[1,2,2,0]],[[0,1,0,1],[0,1,3,2],[2,3,3,2],[2,2,2,0]],[[0,1,0,1],[0,1,3,2],[2,3,3,2],[1,3,2,0]],[[0,1,0,1],[0,1,3,2],[2,3,3,2],[1,2,3,0]],[[0,1,0,1],[0,2,2,2],[2,2,3,3],[1,2,2,1]],[[0,1,0,1],[0,2,2,2],[2,2,3,2],[2,2,2,1]],[[0,1,0,1],[0,2,2,2],[2,2,3,2],[1,3,2,1]],[[0,1,0,1],[0,2,2,2],[2,2,3,2],[1,2,3,1]],[[0,1,0,1],[0,2,2,2],[2,2,3,2],[1,2,2,2]],[[0,1,0,1],[0,2,2,2],[2,3,3,3],[1,1,2,1]],[[0,1,0,1],[0,2,2,2],[2,3,3,2],[1,1,3,1]],[[0,1,0,1],[0,2,2,2],[2,3,3,2],[1,1,2,2]],[[0,1,0,1],[0,2,3,3],[2,1,3,2],[1,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,1,3,3],[1,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,1,3,2],[1,2,3,1]],[[0,1,0,1],[0,2,3,2],[2,1,3,2],[1,2,2,2]],[[0,1,0,1],[0,2,3,3],[2,2,2,2],[1,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,2,2,3],[1,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,2,2,2],[2,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,2,2,2],[1,3,2,1]],[[0,1,0,1],[0,2,3,2],[2,2,2,2],[1,2,3,1]],[[0,1,0,1],[0,2,3,2],[2,2,2,2],[1,2,2,2]],[[0,1,0,1],[0,2,3,2],[2,2,4,1],[1,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,2,3,1],[2,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,2,3,1],[1,3,2,1]],[[0,1,0,1],[0,2,3,2],[2,2,3,1],[1,2,3,1]],[[0,1,0,1],[0,2,3,2],[2,2,3,1],[1,2,2,2]],[[0,1,0,1],[0,2,3,3],[2,2,3,2],[1,2,1,1]],[[0,1,0,1],[0,2,3,2],[2,2,4,2],[1,2,1,1]],[[0,1,0,1],[0,2,3,2],[2,2,3,3],[1,2,1,1]],[[0,1,0,1],[0,2,3,2],[2,2,3,2],[1,2,1,2]],[[0,1,0,1],[0,2,3,3],[2,2,3,2],[1,2,2,0]],[[0,1,0,1],[0,2,3,2],[2,2,4,2],[1,2,2,0]],[[0,1,0,1],[0,2,3,2],[2,2,3,3],[1,2,2,0]],[[0,1,0,1],[0,2,3,2],[2,2,3,2],[2,2,2,0]],[[0,1,0,1],[0,2,3,2],[2,2,3,2],[1,3,2,0]],[[0,1,0,1],[0,2,3,2],[2,2,3,2],[1,2,3,0]],[[0,1,0,1],[0,2,3,3],[2,3,1,2],[1,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,4,1,2],[1,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,1,3],[1,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,1,2],[2,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,1,2],[1,3,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,1,2],[1,2,3,1]],[[0,1,0,1],[0,2,3,2],[2,3,1,2],[1,2,2,2]],[[0,1,0,1],[0,2,3,2],[2,4,2,1],[1,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,2,1],[2,2,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,2,1],[1,3,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,2,1],[1,2,3,1]],[[0,1,0,1],[0,2,3,2],[2,3,2,1],[1,2,2,2]],[[0,1,0,1],[0,2,3,3],[2,3,2,2],[1,1,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,2,3],[1,1,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,2,2],[1,1,3,1]],[[0,1,0,1],[0,2,3,2],[2,3,2,2],[1,1,2,2]],[[0,1,0,1],[0,2,3,2],[2,4,2,2],[1,2,2,0]],[[0,1,0,1],[0,2,3,2],[2,3,2,2],[2,2,2,0]],[[0,1,0,1],[0,2,3,2],[2,3,2,2],[1,3,2,0]],[[0,1,0,1],[0,2,3,2],[2,3,2,2],[1,2,3,0]],[[0,1,0,1],[0,2,3,2],[2,4,3,1],[1,1,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,4,1],[1,1,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,1],[1,1,3,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,1],[1,1,2,2]],[[0,1,0,1],[0,2,3,2],[2,4,3,1],[1,2,1,1]],[[0,1,0,1],[0,2,3,2],[2,3,4,1],[1,2,1,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,1],[2,2,1,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,1],[1,3,1,1]],[[0,1,0,1],[0,2,3,3],[2,3,3,2],[1,0,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,4,2],[1,0,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,3],[1,0,2,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,2],[1,0,2,2]],[[0,1,0,1],[0,2,3,3],[2,3,3,2],[1,1,1,1]],[[0,1,0,1],[0,2,3,2],[2,4,3,2],[1,1,1,1]],[[0,1,0,1],[0,2,3,2],[2,3,4,2],[1,1,1,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,3],[1,1,1,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,2],[1,1,1,2]],[[0,1,0,1],[0,2,3,3],[2,3,3,2],[1,1,2,0]],[[0,1,0,1],[0,2,3,2],[2,4,3,2],[1,1,2,0]],[[0,1,0,1],[0,2,3,2],[2,3,4,2],[1,1,2,0]],[[0,1,0,1],[0,2,3,2],[2,3,3,3],[1,1,2,0]],[[0,1,0,1],[0,2,3,2],[2,3,3,2],[1,1,3,0]],[[0,1,0,1],[0,2,3,3],[2,3,3,2],[1,2,0,1]],[[0,1,0,1],[0,2,3,2],[2,4,3,2],[1,2,0,1]],[[0,1,0,1],[0,2,3,2],[2,3,4,2],[1,2,0,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,3],[1,2,0,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,2],[2,2,0,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,2],[1,3,0,1]],[[0,1,0,1],[0,2,3,2],[2,3,3,2],[1,2,0,2]],[[0,1,0,1],[0,2,3,3],[2,3,3,2],[1,2,1,0]],[[0,1,0,1],[0,2,3,2],[2,4,3,2],[1,2,1,0]],[[0,1,0,1],[0,2,3,2],[2,3,4,2],[1,2,1,0]],[[0,1,0,1],[0,2,3,2],[2,3,3,3],[1,2,1,0]],[[0,1,0,1],[0,2,3,2],[2,3,3,2],[2,2,1,0]],[[0,1,0,1],[0,2,3,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,4,2,1],[0,3,3,0],[0,2,1,0]],[[1,2,2,2],[2,3,2,1],[0,3,3,0],[0,2,1,0]],[[1,2,3,1],[2,3,2,1],[0,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,2,1],[0,3,3,0],[0,2,1,0]],[[0,1,0,1],[0,3,0,2],[2,3,3,3],[1,2,2,1]],[[0,1,0,1],[0,3,0,2],[2,3,3,2],[2,2,2,1]],[[0,1,0,1],[0,3,0,2],[2,3,3,2],[1,3,2,1]],[[0,1,0,1],[0,3,0,2],[2,3,3,2],[1,2,3,1]],[[0,1,0,1],[0,3,0,2],[2,3,3,2],[1,2,2,2]],[[0,1,0,1],[0,3,2,2],[0,3,3,3],[1,2,2,1]],[[0,1,0,1],[0,3,2,2],[0,3,3,2],[1,3,2,1]],[[0,1,0,1],[0,3,2,2],[0,3,3,2],[1,2,3,1]],[[0,1,0,1],[0,3,2,2],[0,3,3,2],[1,2,2,2]],[[0,1,0,1],[0,3,2,2],[1,2,3,3],[1,2,2,1]],[[0,1,0,1],[0,3,2,2],[1,2,3,2],[1,3,2,1]],[[0,1,0,1],[0,3,2,2],[1,2,3,2],[1,2,3,1]],[[0,1,0,1],[0,3,2,2],[1,2,3,2],[1,2,2,2]],[[0,1,0,1],[0,3,2,2],[1,3,3,3],[1,1,2,1]],[[0,1,0,1],[0,3,2,2],[1,3,3,2],[1,1,3,1]],[[0,1,0,1],[0,3,2,2],[1,3,3,2],[1,1,2,2]],[[0,1,0,1],[0,3,2,2],[2,2,3,3],[0,2,2,1]],[[0,1,0,1],[0,3,2,2],[2,2,3,2],[0,2,3,1]],[[0,1,0,1],[0,3,2,2],[2,2,3,2],[0,2,2,2]],[[0,1,0,1],[0,3,2,2],[2,3,3,3],[0,1,2,1]],[[0,1,0,1],[0,3,2,2],[2,3,3,2],[0,1,3,1]],[[0,1,0,1],[0,3,2,2],[2,3,3,2],[0,1,2,2]],[[2,2,2,1],[2,3,2,1],[0,3,3,0],[0,2,1,0]],[[0,1,0,1],[0,3,3,3],[0,2,3,2],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[0,2,3,3],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[0,2,3,2],[1,2,3,1]],[[0,1,0,1],[0,3,3,2],[0,2,3,2],[1,2,2,2]],[[0,1,0,1],[0,3,3,3],[0,3,2,2],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[0,3,2,3],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[0,3,2,2],[1,3,2,1]],[[0,1,0,1],[0,3,3,2],[0,3,2,2],[1,2,3,1]],[[0,1,0,1],[0,3,3,2],[0,3,2,2],[1,2,2,2]],[[0,1,0,1],[0,3,3,2],[0,3,4,1],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[0,3,3,1],[1,3,2,1]],[[0,1,0,1],[0,3,3,2],[0,3,3,1],[1,2,3,1]],[[0,1,0,1],[0,3,3,2],[0,3,3,1],[1,2,2,2]],[[0,1,0,1],[0,3,3,3],[0,3,3,2],[1,2,1,1]],[[0,1,0,1],[0,3,3,2],[0,3,4,2],[1,2,1,1]],[[0,1,0,1],[0,3,3,2],[0,3,3,3],[1,2,1,1]],[[0,1,0,1],[0,3,3,2],[0,3,3,2],[1,2,1,2]],[[0,1,0,1],[0,3,3,3],[0,3,3,2],[1,2,2,0]],[[0,1,0,1],[0,3,3,2],[0,3,4,2],[1,2,2,0]],[[0,1,0,1],[0,3,3,2],[0,3,3,3],[1,2,2,0]],[[0,1,0,1],[0,3,3,2],[0,3,3,2],[1,3,2,0]],[[0,1,0,1],[0,3,3,2],[0,3,3,2],[1,2,3,0]],[[0,1,0,1],[0,3,3,3],[1,1,3,2],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,1,3,3],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,1,3,2],[1,2,3,1]],[[0,1,0,1],[0,3,3,2],[1,1,3,2],[1,2,2,2]],[[0,1,0,1],[0,3,3,3],[1,2,2,2],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,2,2,3],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,2,2,2],[2,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,2,2,2],[1,3,2,1]],[[0,1,0,1],[0,3,3,2],[1,2,2,2],[1,2,3,1]],[[0,1,0,1],[0,3,3,2],[1,2,2,2],[1,2,2,2]],[[0,1,0,1],[0,3,3,2],[1,2,4,1],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,2,3,1],[2,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,2,3,1],[1,3,2,1]],[[0,1,0,1],[0,3,3,2],[1,2,3,1],[1,2,3,1]],[[0,1,0,1],[0,3,3,2],[1,2,3,1],[1,2,2,2]],[[0,1,0,1],[0,3,3,3],[1,2,3,2],[1,2,1,1]],[[0,1,0,1],[0,3,3,2],[1,2,4,2],[1,2,1,1]],[[0,1,0,1],[0,3,3,2],[1,2,3,3],[1,2,1,1]],[[0,1,0,1],[0,3,3,2],[1,2,3,2],[1,2,1,2]],[[0,1,0,1],[0,3,3,3],[1,2,3,2],[1,2,2,0]],[[0,1,0,1],[0,3,3,2],[1,2,4,2],[1,2,2,0]],[[0,1,0,1],[0,3,3,2],[1,2,3,3],[1,2,2,0]],[[0,1,0,1],[0,3,3,2],[1,2,3,2],[2,2,2,0]],[[0,1,0,1],[0,3,3,2],[1,2,3,2],[1,3,2,0]],[[0,1,0,1],[0,3,3,2],[1,2,3,2],[1,2,3,0]],[[0,1,0,1],[0,3,3,3],[1,3,1,2],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,4,1,2],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,1,3],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,1,2],[2,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,1,2],[1,3,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,1,2],[1,2,3,1]],[[0,1,0,1],[0,3,3,2],[1,3,1,2],[1,2,2,2]],[[0,1,0,1],[0,3,3,2],[1,4,2,1],[1,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,2,1],[2,2,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,2,1],[1,3,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,2,1],[1,2,3,1]],[[0,1,0,1],[0,3,3,2],[1,3,2,1],[1,2,2,2]],[[0,1,0,1],[0,3,3,3],[1,3,2,2],[1,1,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,2,3],[1,1,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,2,2],[1,1,3,1]],[[0,1,0,1],[0,3,3,2],[1,3,2,2],[1,1,2,2]],[[0,1,0,1],[0,3,3,2],[1,4,2,2],[1,2,2,0]],[[0,1,0,1],[0,3,3,2],[1,3,2,2],[2,2,2,0]],[[0,1,0,1],[0,3,3,2],[1,3,2,2],[1,3,2,0]],[[0,1,0,1],[0,3,3,2],[1,3,2,2],[1,2,3,0]],[[0,1,0,1],[0,3,3,2],[1,4,3,1],[1,1,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,4,1],[1,1,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,1],[1,1,3,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,1],[1,1,2,2]],[[0,1,0,1],[0,3,3,2],[1,4,3,1],[1,2,1,1]],[[0,1,0,1],[0,3,3,2],[1,3,4,1],[1,2,1,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,1],[2,2,1,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,1],[1,3,1,1]],[[0,1,0,1],[0,3,3,3],[1,3,3,2],[1,0,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,4,2],[1,0,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,3],[1,0,2,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,2],[1,0,2,2]],[[0,1,0,1],[0,3,3,3],[1,3,3,2],[1,1,1,1]],[[0,1,0,1],[0,3,3,2],[1,4,3,2],[1,1,1,1]],[[0,1,0,1],[0,3,3,2],[1,3,4,2],[1,1,1,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,3],[1,1,1,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,2],[1,1,1,2]],[[0,1,0,1],[0,3,3,3],[1,3,3,2],[1,1,2,0]],[[0,1,0,1],[0,3,3,2],[1,4,3,2],[1,1,2,0]],[[0,1,0,1],[0,3,3,2],[1,3,4,2],[1,1,2,0]],[[0,1,0,1],[0,3,3,2],[1,3,3,3],[1,1,2,0]],[[0,1,0,1],[0,3,3,2],[1,3,3,2],[1,1,3,0]],[[0,1,0,1],[0,3,3,3],[1,3,3,2],[1,2,0,1]],[[0,1,0,1],[0,3,3,2],[1,4,3,2],[1,2,0,1]],[[0,1,0,1],[0,3,3,2],[1,3,4,2],[1,2,0,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,3],[1,2,0,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,2],[2,2,0,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,2],[1,3,0,1]],[[0,1,0,1],[0,3,3,2],[1,3,3,2],[1,2,0,2]],[[0,1,0,1],[0,3,3,3],[1,3,3,2],[1,2,1,0]],[[0,1,0,1],[0,3,3,2],[1,4,3,2],[1,2,1,0]],[[0,1,0,1],[0,3,3,2],[1,3,4,2],[1,2,1,0]],[[0,1,0,1],[0,3,3,2],[1,3,3,3],[1,2,1,0]],[[0,1,0,1],[0,3,3,2],[1,3,3,2],[2,2,1,0]],[[0,1,0,1],[0,3,3,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,4,2,1],[0,3,3,0],[0,1,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,3,0],[0,1,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,3,0],[0,1,2,0]],[[1,2,2,1],[2,4,2,1],[0,3,3,0],[0,0,2,1]],[[1,2,2,2],[2,3,2,1],[0,3,3,0],[0,0,2,1]],[[0,1,0,1],[0,3,3,3],[2,1,3,2],[0,2,2,1]],[[0,1,0,1],[0,3,3,2],[2,1,3,3],[0,2,2,1]],[[0,1,0,1],[0,3,3,2],[2,1,3,2],[0,2,3,1]],[[0,1,0,1],[0,3,3,2],[2,1,3,2],[0,2,2,2]],[[0,1,0,1],[0,3,3,3],[2,2,2,2],[0,2,2,1]],[[0,1,0,1],[0,3,3,2],[2,2,2,3],[0,2,2,1]],[[0,1,0,1],[0,3,3,2],[2,2,2,2],[0,3,2,1]],[[0,1,0,1],[0,3,3,2],[2,2,2,2],[0,2,3,1]],[[0,1,0,1],[0,3,3,2],[2,2,2,2],[0,2,2,2]],[[0,1,0,1],[0,3,3,2],[2,2,4,1],[0,2,2,1]],[[0,1,0,1],[0,3,3,2],[2,2,3,1],[0,3,2,1]],[[0,1,0,1],[0,3,3,2],[2,2,3,1],[0,2,3,1]],[[0,1,0,1],[0,3,3,2],[2,2,3,1],[0,2,2,2]],[[0,1,0,1],[0,3,3,3],[2,2,3,2],[0,2,1,1]],[[0,1,0,1],[0,3,3,2],[2,2,4,2],[0,2,1,1]],[[0,1,0,1],[0,3,3,2],[2,2,3,3],[0,2,1,1]],[[0,1,0,1],[0,3,3,2],[2,2,3,2],[0,2,1,2]],[[0,1,0,1],[0,3,3,3],[2,2,3,2],[0,2,2,0]],[[0,1,0,1],[0,3,3,2],[2,2,4,2],[0,2,2,0]],[[0,1,0,1],[0,3,3,2],[2,2,3,3],[0,2,2,0]],[[0,1,0,1],[0,3,3,2],[2,2,3,2],[0,3,2,0]],[[0,1,0,1],[0,3,3,2],[2,2,3,2],[0,2,3,0]],[[1,2,3,1],[2,3,2,1],[0,3,3,0],[0,0,2,1]],[[1,3,2,1],[2,3,2,1],[0,3,3,0],[0,0,2,1]],[[2,2,2,1],[2,3,2,1],[0,3,3,0],[0,0,2,1]],[[0,1,0,1],[0,3,3,3],[2,3,1,2],[0,2,2,1]],[[0,1,0,1],[0,3,3,2],[2,4,1,2],[0,2,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,1,3],[0,2,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,1,2],[0,3,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,1,2],[0,2,3,1]],[[0,1,0,1],[0,3,3,2],[2,3,1,2],[0,2,2,2]],[[0,1,0,1],[0,3,3,2],[2,4,2,1],[0,2,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,2,1],[0,3,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,2,1],[0,2,3,1]],[[0,1,0,1],[0,3,3,2],[2,3,2,1],[0,2,2,2]],[[0,1,0,1],[0,3,3,3],[2,3,2,2],[0,1,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,2,3],[0,1,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,2,2],[0,1,3,1]],[[0,1,0,1],[0,3,3,2],[2,3,2,2],[0,1,2,2]],[[0,1,0,1],[0,3,3,2],[2,4,2,2],[0,2,2,0]],[[0,1,0,1],[0,3,3,2],[2,3,2,2],[0,3,2,0]],[[0,1,0,1],[0,3,3,2],[2,3,2,2],[0,2,3,0]],[[0,1,0,1],[0,3,3,3],[2,3,2,2],[1,0,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,2,3],[1,0,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,2,2],[1,0,3,1]],[[0,1,0,1],[0,3,3,2],[2,3,2,2],[1,0,2,2]],[[0,1,0,1],[0,3,3,2],[2,4,3,1],[0,1,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,4,1],[0,1,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,1],[0,1,3,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,1],[0,1,2,2]],[[0,1,0,1],[0,3,3,2],[2,4,3,1],[0,2,1,1]],[[0,1,0,1],[0,3,3,2],[2,3,4,1],[0,2,1,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,1],[0,3,1,1]],[[0,1,0,1],[0,3,3,2],[2,4,3,1],[1,0,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,4,1],[1,0,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,1],[1,0,3,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,1],[1,0,2,2]],[[0,1,0,1],[0,3,3,3],[2,3,3,2],[0,0,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,4,2],[0,0,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,3],[0,0,2,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,2],[0,0,2,2]],[[0,1,0,1],[0,3,3,3],[2,3,3,2],[0,1,1,1]],[[0,1,0,1],[0,3,3,2],[2,4,3,2],[0,1,1,1]],[[0,1,0,1],[0,3,3,2],[2,3,4,2],[0,1,1,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,3],[0,1,1,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,2],[0,1,1,2]],[[0,1,0,1],[0,3,3,3],[2,3,3,2],[0,1,2,0]],[[0,1,0,1],[0,3,3,2],[2,4,3,2],[0,1,2,0]],[[0,1,0,1],[0,3,3,2],[2,3,4,2],[0,1,2,0]],[[0,1,0,1],[0,3,3,2],[2,3,3,3],[0,1,2,0]],[[0,1,0,1],[0,3,3,2],[2,3,3,2],[0,1,3,0]],[[0,1,0,1],[0,3,3,3],[2,3,3,2],[0,2,0,1]],[[0,1,0,1],[0,3,3,2],[2,4,3,2],[0,2,0,1]],[[0,1,0,1],[0,3,3,2],[2,3,4,2],[0,2,0,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,3],[0,2,0,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,2],[0,3,0,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,2],[0,2,0,2]],[[0,1,0,1],[0,3,3,3],[2,3,3,2],[0,2,1,0]],[[0,1,0,1],[0,3,3,2],[2,4,3,2],[0,2,1,0]],[[0,1,0,1],[0,3,3,2],[2,3,4,2],[0,2,1,0]],[[0,1,0,1],[0,3,3,2],[2,3,3,3],[0,2,1,0]],[[0,1,0,1],[0,3,3,2],[2,3,3,2],[0,3,1,0]],[[0,1,0,1],[0,3,3,3],[2,3,3,2],[1,0,1,1]],[[0,1,0,1],[0,3,3,2],[2,4,3,2],[1,0,1,1]],[[0,1,0,1],[0,3,3,2],[2,3,4,2],[1,0,1,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,3],[1,0,1,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,2],[1,0,1,2]],[[0,1,0,1],[0,3,3,3],[2,3,3,2],[1,0,2,0]],[[0,1,0,1],[0,3,3,2],[2,4,3,2],[1,0,2,0]],[[0,1,0,1],[0,3,3,2],[2,3,4,2],[1,0,2,0]],[[0,1,0,1],[0,3,3,2],[2,3,3,3],[1,0,2,0]],[[0,1,0,1],[0,3,3,2],[2,3,3,2],[1,0,3,0]],[[0,1,0,1],[0,3,3,3],[2,3,3,2],[1,1,0,1]],[[0,1,0,1],[0,3,3,2],[2,4,3,2],[1,1,0,1]],[[0,1,0,1],[0,3,3,2],[2,3,4,2],[1,1,0,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,3],[1,1,0,1]],[[0,1,0,1],[0,3,3,2],[2,3,3,2],[1,1,0,2]],[[0,1,0,1],[0,3,3,3],[2,3,3,2],[1,1,1,0]],[[0,1,0,1],[0,3,3,2],[2,4,3,2],[1,1,1,0]],[[0,1,0,1],[0,3,3,2],[2,3,4,2],[1,1,1,0]],[[0,1,0,1],[0,3,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,4,2,1],[0,3,2,2],[0,0,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,2,2],[0,0,2,0]],[[0,1,0,1],[1,0,2,2],[2,3,3,3],[1,2,2,1]],[[0,1,0,1],[1,0,2,2],[2,3,3,2],[2,2,2,1]],[[0,1,0,1],[1,0,2,2],[2,3,3,2],[1,3,2,1]],[[0,1,0,1],[1,0,2,2],[2,3,3,2],[1,2,3,1]],[[0,1,0,1],[1,0,2,2],[2,3,3,2],[1,2,2,2]],[[0,1,0,1],[1,0,3,2],[1,3,3,3],[1,2,2,1]],[[0,1,0,1],[1,0,3,2],[1,3,3,2],[1,3,2,1]],[[0,1,0,1],[1,0,3,2],[1,3,3,2],[1,2,3,1]],[[0,1,0,1],[1,0,3,2],[1,3,3,2],[1,2,2,2]],[[0,1,0,1],[1,0,3,3],[2,3,2,2],[1,2,2,1]],[[0,1,0,1],[1,0,3,2],[2,3,2,3],[1,2,2,1]],[[0,1,0,1],[1,0,3,2],[2,3,2,2],[2,2,2,1]],[[0,1,0,1],[1,0,3,2],[2,3,2,2],[1,3,2,1]],[[0,1,0,1],[1,0,3,2],[2,3,2,2],[1,2,3,1]],[[0,1,0,1],[1,0,3,2],[2,3,2,2],[1,2,2,2]],[[0,1,0,1],[1,0,3,2],[2,3,4,1],[1,2,2,1]],[[0,1,0,1],[1,0,3,2],[2,3,3,1],[2,2,2,1]],[[0,1,0,1],[1,0,3,2],[2,3,3,1],[1,3,2,1]],[[0,1,0,1],[1,0,3,2],[2,3,3,1],[1,2,3,1]],[[0,1,0,1],[1,0,3,2],[2,3,3,1],[1,2,2,2]],[[0,1,0,1],[1,0,3,2],[2,3,3,3],[0,2,2,1]],[[0,1,0,1],[1,0,3,2],[2,3,3,2],[0,2,3,1]],[[0,1,0,1],[1,0,3,2],[2,3,3,2],[0,2,2,2]],[[0,1,0,1],[1,0,3,3],[2,3,3,2],[1,2,1,1]],[[0,1,0,1],[1,0,3,2],[2,3,4,2],[1,2,1,1]],[[0,1,0,1],[1,0,3,2],[2,3,3,3],[1,2,1,1]],[[0,1,0,1],[1,0,3,2],[2,3,3,2],[1,2,1,2]],[[0,1,0,1],[1,0,3,3],[2,3,3,2],[1,2,2,0]],[[0,1,0,1],[1,0,3,2],[2,3,4,2],[1,2,2,0]],[[0,1,0,1],[1,0,3,2],[2,3,3,3],[1,2,2,0]],[[0,1,0,1],[1,0,3,2],[2,3,3,2],[2,2,2,0]],[[0,1,0,1],[1,0,3,2],[2,3,3,2],[1,3,2,0]],[[0,1,0,1],[1,0,3,2],[2,3,3,2],[1,2,3,0]],[[0,1,0,1],[1,1,2,2],[1,3,3,3],[1,2,2,1]],[[0,1,0,1],[1,1,2,2],[1,3,3,2],[2,2,2,1]],[[0,1,0,1],[1,1,2,2],[1,3,3,2],[1,3,2,1]],[[0,1,0,1],[1,1,2,2],[1,3,3,2],[1,2,3,1]],[[0,1,0,1],[1,1,2,2],[1,3,3,2],[1,2,2,2]],[[0,1,0,1],[1,1,2,2],[2,3,3,3],[0,2,2,1]],[[0,1,0,1],[1,1,2,2],[2,3,3,2],[0,3,2,1]],[[0,1,0,1],[1,1,2,2],[2,3,3,2],[0,2,3,1]],[[0,1,0,1],[1,1,2,2],[2,3,3,2],[0,2,2,2]],[[0,1,0,1],[1,1,3,3],[1,3,2,2],[1,2,2,1]],[[0,1,0,1],[1,1,3,2],[1,3,2,3],[1,2,2,1]],[[0,1,0,1],[1,1,3,2],[1,3,2,2],[2,2,2,1]],[[0,1,0,1],[1,1,3,2],[1,3,2,2],[1,3,2,1]],[[0,1,0,1],[1,1,3,2],[1,3,2,2],[1,2,3,1]],[[0,1,0,1],[1,1,3,2],[1,3,2,2],[1,2,2,2]],[[0,1,0,1],[1,1,3,2],[1,3,4,1],[1,2,2,1]],[[0,1,0,1],[1,1,3,2],[1,3,3,1],[2,2,2,1]],[[0,1,0,1],[1,1,3,2],[1,3,3,1],[1,3,2,1]],[[0,1,0,1],[1,1,3,2],[1,3,3,1],[1,2,3,1]],[[0,1,0,1],[1,1,3,2],[1,3,3,1],[1,2,2,2]],[[0,1,0,1],[1,1,3,3],[1,3,3,2],[1,2,1,1]],[[0,1,0,1],[1,1,3,2],[1,3,4,2],[1,2,1,1]],[[0,1,0,1],[1,1,3,2],[1,3,3,3],[1,2,1,1]],[[0,1,0,1],[1,1,3,2],[1,3,3,2],[1,2,1,2]],[[0,1,0,1],[1,1,3,3],[1,3,3,2],[1,2,2,0]],[[0,1,0,1],[1,1,3,2],[1,3,4,2],[1,2,2,0]],[[0,1,0,1],[1,1,3,2],[1,3,3,3],[1,2,2,0]],[[0,1,0,1],[1,1,3,2],[1,3,3,2],[2,2,2,0]],[[0,1,0,1],[1,1,3,2],[1,3,3,2],[1,3,2,0]],[[0,1,0,1],[1,1,3,2],[1,3,3,2],[1,2,3,0]],[[0,1,0,1],[1,1,3,3],[2,3,2,2],[0,2,2,1]],[[0,1,0,1],[1,1,3,2],[2,3,2,3],[0,2,2,1]],[[0,1,0,1],[1,1,3,2],[2,3,2,2],[0,3,2,1]],[[0,1,0,1],[1,1,3,2],[2,3,2,2],[0,2,3,1]],[[0,1,0,1],[1,1,3,2],[2,3,2,2],[0,2,2,2]],[[0,1,0,1],[1,1,3,2],[2,3,4,1],[0,2,2,1]],[[0,1,0,1],[1,1,3,2],[2,3,3,1],[0,3,2,1]],[[0,1,0,1],[1,1,3,2],[2,3,3,1],[0,2,3,1]],[[0,1,0,1],[1,1,3,2],[2,3,3,1],[0,2,2,2]],[[0,1,0,1],[1,1,3,3],[2,3,3,2],[0,2,1,1]],[[0,1,0,1],[1,1,3,2],[2,3,4,2],[0,2,1,1]],[[0,1,0,1],[1,1,3,2],[2,3,3,3],[0,2,1,1]],[[0,1,0,1],[1,1,3,2],[2,3,3,2],[0,2,1,2]],[[0,1,0,1],[1,1,3,3],[2,3,3,2],[0,2,2,0]],[[0,1,0,1],[1,1,3,2],[2,3,4,2],[0,2,2,0]],[[0,1,0,1],[1,1,3,2],[2,3,3,3],[0,2,2,0]],[[0,1,0,1],[1,1,3,2],[2,3,3,2],[0,3,2,0]],[[0,1,0,1],[1,1,3,2],[2,3,3,2],[0,2,3,0]],[[1,2,3,1],[2,3,2,1],[0,3,2,2],[0,0,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,2,2],[0,0,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,2,2],[0,0,2,0]],[[1,2,2,1],[2,4,2,1],[0,3,2,2],[0,0,1,1]],[[1,2,2,2],[2,3,2,1],[0,3,2,2],[0,0,1,1]],[[1,2,3,1],[2,3,2,1],[0,3,2,2],[0,0,1,1]],[[1,3,2,1],[2,3,2,1],[0,3,2,2],[0,0,1,1]],[[0,1,0,1],[1,2,2,2],[0,3,3,3],[1,2,2,1]],[[0,1,0,1],[1,2,2,2],[0,3,3,2],[1,3,2,1]],[[0,1,0,1],[1,2,2,2],[0,3,3,2],[1,2,3,1]],[[0,1,0,1],[1,2,2,2],[0,3,3,2],[1,2,2,2]],[[0,1,0,1],[1,2,2,2],[1,2,3,3],[1,2,2,1]],[[0,1,0,1],[1,2,2,2],[1,2,3,2],[2,2,2,1]],[[0,1,0,1],[1,2,2,2],[1,2,3,2],[1,3,2,1]],[[0,1,0,1],[1,2,2,2],[1,2,3,2],[1,2,3,1]],[[0,1,0,1],[1,2,2,2],[1,2,3,2],[1,2,2,2]],[[0,1,0,1],[1,2,2,2],[1,3,3,3],[1,1,2,1]],[[0,1,0,1],[1,2,2,2],[1,3,3,2],[1,1,3,1]],[[0,1,0,1],[1,2,2,2],[1,3,3,2],[1,1,2,2]],[[0,1,0,1],[1,2,2,2],[2,1,3,3],[1,2,2,1]],[[0,1,0,1],[1,2,2,2],[2,1,3,2],[2,2,2,1]],[[0,1,0,1],[1,2,2,2],[2,1,3,2],[1,3,2,1]],[[0,1,0,1],[1,2,2,2],[2,1,3,2],[1,2,3,1]],[[0,1,0,1],[1,2,2,2],[2,1,3,2],[1,2,2,2]],[[0,1,0,1],[1,2,2,2],[2,2,3,3],[0,2,2,1]],[[0,1,0,1],[1,2,2,2],[2,2,3,2],[0,3,2,1]],[[0,1,0,1],[1,2,2,2],[2,2,3,2],[0,2,3,1]],[[0,1,0,1],[1,2,2,2],[2,2,3,2],[0,2,2,2]],[[0,1,0,1],[1,2,2,2],[2,3,3,3],[0,1,2,1]],[[0,1,0,1],[1,2,2,2],[2,3,3,2],[0,1,3,1]],[[0,1,0,1],[1,2,2,2],[2,3,3,2],[0,1,2,2]],[[0,1,0,1],[1,2,2,2],[2,3,3,3],[1,0,2,1]],[[0,1,0,1],[1,2,2,2],[2,3,3,2],[1,0,3,1]],[[0,1,0,1],[1,2,2,2],[2,3,3,2],[1,0,2,2]],[[2,2,2,1],[2,3,2,1],[0,3,2,2],[0,0,1,1]],[[0,1,0,1],[1,2,3,3],[0,2,3,2],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[0,2,3,3],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[0,2,3,2],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[0,2,3,2],[1,2,2,2]],[[0,1,0,1],[1,2,3,3],[0,3,2,2],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[0,3,2,3],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[0,3,2,2],[1,3,2,1]],[[0,1,0,1],[1,2,3,2],[0,3,2,2],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[0,3,2,2],[1,2,2,2]],[[0,1,0,1],[1,2,3,2],[0,3,4,1],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[0,3,3,1],[1,3,2,1]],[[0,1,0,1],[1,2,3,2],[0,3,3,1],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[0,3,3,1],[1,2,2,2]],[[0,1,0,1],[1,2,3,3],[0,3,3,2],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[0,3,4,2],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[0,3,3,3],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[0,3,3,2],[1,2,1,2]],[[0,1,0,1],[1,2,3,3],[0,3,3,2],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[0,3,4,2],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[0,3,3,3],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[0,3,3,2],[1,3,2,0]],[[0,1,0,1],[1,2,3,2],[0,3,3,2],[1,2,3,0]],[[0,1,0,1],[1,2,3,3],[1,1,3,2],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,1,3,3],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,1,3,2],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[1,1,3,2],[1,2,2,2]],[[0,1,0,1],[1,2,3,3],[1,2,2,2],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,2,2,3],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,2,2,2],[2,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,2,2,2],[1,3,2,1]],[[0,1,0,1],[1,2,3,2],[1,2,2,2],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[1,2,2,2],[1,2,2,2]],[[0,1,0,1],[1,2,3,2],[1,2,4,1],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,2,3,1],[2,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,2,3,1],[1,3,2,1]],[[0,1,0,1],[1,2,3,2],[1,2,3,1],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[1,2,3,1],[1,2,2,2]],[[0,1,0,1],[1,2,3,3],[1,2,3,2],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[1,2,4,2],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[1,2,3,3],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[1,2,3,2],[1,2,1,2]],[[0,1,0,1],[1,2,3,3],[1,2,3,2],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[1,2,4,2],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[1,2,3,3],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[1,2,3,2],[2,2,2,0]],[[0,1,0,1],[1,2,3,2],[1,2,3,2],[1,3,2,0]],[[0,1,0,1],[1,2,3,2],[1,2,3,2],[1,2,3,0]],[[0,1,0,1],[1,2,3,3],[1,3,1,2],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,4,1,2],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,1,3],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,1,2],[2,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,1,2],[1,3,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,1,2],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[1,3,1,2],[1,2,2,2]],[[0,1,0,1],[1,2,3,2],[1,4,2,1],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,2,1],[2,2,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,2,1],[1,3,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,2,1],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[1,3,2,1],[1,2,2,2]],[[0,1,0,1],[1,2,3,3],[1,3,2,2],[1,1,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,2,3],[1,1,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,2,2],[1,1,3,1]],[[0,1,0,1],[1,2,3,2],[1,3,2,2],[1,1,2,2]],[[0,1,0,1],[1,2,3,2],[1,4,2,2],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[1,3,2,2],[2,2,2,0]],[[0,1,0,1],[1,2,3,2],[1,3,2,2],[1,3,2,0]],[[0,1,0,1],[1,2,3,2],[1,3,2,2],[1,2,3,0]],[[0,1,0,1],[1,2,3,2],[1,4,3,1],[1,1,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,4,1],[1,1,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,1],[1,1,3,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,1],[1,1,2,2]],[[0,1,0,1],[1,2,3,2],[1,4,3,1],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[1,3,4,1],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,1],[2,2,1,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,1],[1,3,1,1]],[[0,1,0,1],[1,2,3,3],[1,3,3,2],[1,0,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,4,2],[1,0,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,3],[1,0,2,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,2],[1,0,2,2]],[[0,1,0,1],[1,2,3,3],[1,3,3,2],[1,1,1,1]],[[0,1,0,1],[1,2,3,2],[1,4,3,2],[1,1,1,1]],[[0,1,0,1],[1,2,3,2],[1,3,4,2],[1,1,1,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,3],[1,1,1,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,2],[1,1,1,2]],[[0,1,0,1],[1,2,3,3],[1,3,3,2],[1,1,2,0]],[[0,1,0,1],[1,2,3,2],[1,4,3,2],[1,1,2,0]],[[0,1,0,1],[1,2,3,2],[1,3,4,2],[1,1,2,0]],[[0,1,0,1],[1,2,3,2],[1,3,3,3],[1,1,2,0]],[[0,1,0,1],[1,2,3,2],[1,3,3,2],[1,1,3,0]],[[0,1,0,1],[1,2,3,3],[1,3,3,2],[1,2,0,1]],[[0,1,0,1],[1,2,3,2],[1,4,3,2],[1,2,0,1]],[[0,1,0,1],[1,2,3,2],[1,3,4,2],[1,2,0,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,3],[1,2,0,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,2],[2,2,0,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,2],[1,3,0,1]],[[0,1,0,1],[1,2,3,2],[1,3,3,2],[1,2,0,2]],[[0,1,0,1],[1,2,3,3],[1,3,3,2],[1,2,1,0]],[[0,1,0,1],[1,2,3,2],[1,4,3,2],[1,2,1,0]],[[0,1,0,1],[1,2,3,2],[1,3,4,2],[1,2,1,0]],[[0,1,0,1],[1,2,3,2],[1,3,3,3],[1,2,1,0]],[[0,1,0,1],[1,2,3,2],[1,3,3,2],[2,2,1,0]],[[0,1,0,1],[1,2,3,2],[1,3,3,2],[1,3,1,0]],[[0,1,0,1],[1,2,3,3],[2,0,3,2],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,0,3,3],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,0,3,2],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[2,0,3,2],[1,2,2,2]],[[0,1,0,1],[1,2,3,3],[2,1,2,2],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[3,1,2,2],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,1,2,3],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,1,2,2],[2,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,1,2,2],[1,3,2,1]],[[0,1,0,1],[1,2,3,2],[2,1,2,2],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[2,1,2,2],[1,2,2,2]],[[0,1,0,1],[1,2,3,2],[3,1,3,1],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,1,4,1],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,1,3,1],[2,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,1,3,1],[1,3,2,1]],[[0,1,0,1],[1,2,3,2],[2,1,3,1],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[2,1,3,1],[1,2,2,2]],[[0,1,0,1],[1,2,3,3],[2,1,3,2],[0,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,1,3,3],[0,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,1,3,2],[0,2,3,1]],[[0,1,0,1],[1,2,3,2],[2,1,3,2],[0,2,2,2]],[[0,1,0,1],[1,2,3,3],[2,1,3,2],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[2,1,4,2],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[2,1,3,3],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[2,1,3,2],[1,2,1,2]],[[0,1,0,1],[1,2,3,3],[2,1,3,2],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[3,1,3,2],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[2,1,4,2],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[2,1,3,3],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[2,1,3,2],[2,2,2,0]],[[0,1,0,1],[1,2,3,2],[2,1,3,2],[1,3,2,0]],[[0,1,0,1],[1,2,3,2],[2,1,3,2],[1,2,3,0]],[[0,1,0,1],[1,2,3,3],[2,2,1,2],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[3,2,1,2],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,1,3],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,1,2],[2,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,1,2],[1,3,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,1,2],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[2,2,1,2],[1,2,2,2]],[[0,1,0,1],[1,2,3,2],[3,2,2,1],[1,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,2,1],[2,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,2,1],[1,3,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,2,1],[1,2,3,1]],[[0,1,0,1],[1,2,3,2],[2,2,2,1],[1,2,2,2]],[[0,1,0,1],[1,2,3,3],[2,2,2,2],[0,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,2,3],[0,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,2,2],[0,3,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,2,2],[0,2,3,1]],[[0,1,0,1],[1,2,3,2],[2,2,2,2],[0,2,2,2]],[[0,1,0,1],[1,2,3,2],[3,2,2,2],[1,2,2,0]],[[0,1,0,1],[1,2,3,2],[2,2,2,2],[2,2,2,0]],[[0,1,0,1],[1,2,3,2],[2,2,2,2],[1,3,2,0]],[[0,1,0,1],[1,2,3,2],[2,2,2,2],[1,2,3,0]],[[0,1,0,1],[1,2,3,2],[2,2,4,1],[0,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,3,1],[0,3,2,1]],[[0,1,0,1],[1,2,3,2],[2,2,3,1],[0,2,3,1]],[[0,1,0,1],[1,2,3,2],[2,2,3,1],[0,2,2,2]],[[0,1,0,1],[1,2,3,2],[3,2,3,1],[1,2,1,1]],[[0,1,0,1],[1,2,3,2],[2,2,3,1],[2,2,1,1]],[[0,1,0,1],[1,2,3,2],[2,2,3,1],[1,3,1,1]],[[0,1,0,1],[1,2,3,3],[2,2,3,2],[0,2,1,1]],[[0,1,0,1],[1,2,3,2],[2,2,4,2],[0,2,1,1]],[[0,1,0,1],[1,2,3,2],[2,2,3,3],[0,2,1,1]],[[0,1,0,1],[1,2,3,2],[2,2,3,2],[0,2,1,2]],[[0,1,0,1],[1,2,3,3],[2,2,3,2],[0,2,2,0]],[[0,1,0,1],[1,2,3,2],[2,2,4,2],[0,2,2,0]],[[0,1,0,1],[1,2,3,2],[2,2,3,3],[0,2,2,0]],[[0,1,0,1],[1,2,3,2],[2,2,3,2],[0,3,2,0]],[[0,1,0,1],[1,2,3,2],[2,2,3,2],[0,2,3,0]],[[0,1,0,1],[1,2,3,2],[3,2,3,2],[1,2,0,1]],[[0,1,0,1],[1,2,3,2],[2,2,3,2],[2,2,0,1]],[[0,1,0,1],[1,2,3,2],[2,2,3,2],[1,3,0,1]],[[0,1,0,1],[1,2,3,2],[3,2,3,2],[1,2,1,0]],[[0,1,0,1],[1,2,3,2],[2,2,3,2],[2,2,1,0]],[[0,1,0,1],[1,2,3,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,4,2,1],[0,3,2,1],[1,2,0,0]],[[1,2,2,2],[2,3,2,1],[0,3,2,1],[1,2,0,0]],[[0,1,0,1],[1,2,3,3],[2,3,1,2],[0,2,2,1]],[[0,1,0,1],[1,2,3,2],[3,3,1,2],[0,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,4,1,2],[0,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,1,3],[0,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,1,2],[0,3,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,1,2],[0,2,3,1]],[[0,1,0,1],[1,2,3,2],[2,3,1,2],[0,2,2,2]],[[0,1,0,1],[1,2,3,2],[3,3,1,2],[1,1,2,1]],[[0,1,0,1],[1,2,3,2],[2,4,1,2],[1,1,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,1,2],[2,1,2,1]],[[0,1,0,1],[1,2,3,2],[3,3,2,1],[0,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,4,2,1],[0,2,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,2,1],[0,3,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,2,1],[0,2,3,1]],[[0,1,0,1],[1,2,3,2],[2,3,2,1],[0,2,2,2]],[[0,1,0,1],[1,2,3,2],[3,3,2,1],[1,1,2,1]],[[0,1,0,1],[1,2,3,2],[2,4,2,1],[1,1,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,2,1],[2,1,2,1]],[[0,1,0,1],[1,2,3,3],[2,3,2,2],[0,1,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,2,3],[0,1,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,2,2],[0,1,3,1]],[[0,1,0,1],[1,2,3,2],[2,3,2,2],[0,1,2,2]],[[0,1,0,1],[1,2,3,2],[3,3,2,2],[0,2,2,0]],[[0,1,0,1],[1,2,3,2],[2,4,2,2],[0,2,2,0]],[[0,1,0,1],[1,2,3,2],[2,3,2,2],[0,3,2,0]],[[0,1,0,1],[1,2,3,2],[2,3,2,2],[0,2,3,0]],[[0,1,0,1],[1,2,3,3],[2,3,2,2],[1,0,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,2,3],[1,0,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,2,2],[1,0,3,1]],[[0,1,0,1],[1,2,3,2],[2,3,2,2],[1,0,2,2]],[[0,1,0,1],[1,2,3,2],[3,3,2,2],[1,1,2,0]],[[0,1,0,1],[1,2,3,2],[2,4,2,2],[1,1,2,0]],[[0,1,0,1],[1,2,3,2],[2,3,2,2],[2,1,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,2,1],[0,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,2,1],[0,3,2,1],[1,2,0,0]],[[0,1,0,1],[1,2,3,2],[3,3,3,1],[0,1,2,1]],[[0,1,0,1],[1,2,3,2],[2,4,3,1],[0,1,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,4,1],[0,1,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,1],[0,1,3,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,1],[0,1,2,2]],[[0,1,0,1],[1,2,3,2],[3,3,3,1],[0,2,1,1]],[[0,1,0,1],[1,2,3,2],[2,4,3,1],[0,2,1,1]],[[0,1,0,1],[1,2,3,2],[2,3,4,1],[0,2,1,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,1],[0,3,1,1]],[[0,1,0,1],[1,2,3,2],[3,3,3,1],[1,0,2,1]],[[0,1,0,1],[1,2,3,2],[2,4,3,1],[1,0,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,4,1],[1,0,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,1],[2,0,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,1],[1,0,3,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,1],[1,0,2,2]],[[0,1,0,1],[1,2,3,2],[3,3,3,1],[1,1,1,1]],[[0,1,0,1],[1,2,3,2],[2,4,3,1],[1,1,1,1]],[[0,1,0,1],[1,2,3,2],[2,3,4,1],[1,1,1,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,1],[2,1,1,1]],[[0,1,0,1],[1,2,3,3],[2,3,3,2],[0,0,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,4,2],[0,0,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,3],[0,0,2,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[0,0,2,2]],[[0,1,0,1],[1,2,3,3],[2,3,3,2],[0,1,1,1]],[[0,1,0,1],[1,2,3,2],[3,3,3,2],[0,1,1,1]],[[0,1,0,1],[1,2,3,2],[2,4,3,2],[0,1,1,1]],[[0,1,0,1],[1,2,3,2],[2,3,4,2],[0,1,1,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,3],[0,1,1,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[0,1,1,2]],[[0,1,0,1],[1,2,3,3],[2,3,3,2],[0,1,2,0]],[[0,1,0,1],[1,2,3,2],[3,3,3,2],[0,1,2,0]],[[0,1,0,1],[1,2,3,2],[2,4,3,2],[0,1,2,0]],[[0,1,0,1],[1,2,3,2],[2,3,4,2],[0,1,2,0]],[[0,1,0,1],[1,2,3,2],[2,3,3,3],[0,1,2,0]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[0,1,3,0]],[[0,1,0,1],[1,2,3,3],[2,3,3,2],[0,2,0,1]],[[0,1,0,1],[1,2,3,2],[3,3,3,2],[0,2,0,1]],[[0,1,0,1],[1,2,3,2],[2,4,3,2],[0,2,0,1]],[[0,1,0,1],[1,2,3,2],[2,3,4,2],[0,2,0,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,3],[0,2,0,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[0,3,0,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[0,2,0,2]],[[0,1,0,1],[1,2,3,3],[2,3,3,2],[0,2,1,0]],[[0,1,0,1],[1,2,3,2],[3,3,3,2],[0,2,1,0]],[[0,1,0,1],[1,2,3,2],[2,4,3,2],[0,2,1,0]],[[0,1,0,1],[1,2,3,2],[2,3,4,2],[0,2,1,0]],[[0,1,0,1],[1,2,3,2],[2,3,3,3],[0,2,1,0]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,4,2,1],[0,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,3,2,1],[0,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[0,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,3,2,1],[0,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[0,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,4,2,1],[0,3,2,1],[1,1,0,1]],[[0,1,0,1],[1,2,3,3],[2,3,3,2],[1,0,1,1]],[[0,1,0,1],[1,2,3,2],[3,3,3,2],[1,0,1,1]],[[0,1,0,1],[1,2,3,2],[2,4,3,2],[1,0,1,1]],[[0,1,0,1],[1,2,3,2],[2,3,4,2],[1,0,1,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,3],[1,0,1,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[2,0,1,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[1,0,1,2]],[[0,1,0,1],[1,2,3,3],[2,3,3,2],[1,0,2,0]],[[0,1,0,1],[1,2,3,2],[3,3,3,2],[1,0,2,0]],[[0,1,0,1],[1,2,3,2],[2,4,3,2],[1,0,2,0]],[[0,1,0,1],[1,2,3,2],[2,3,4,2],[1,0,2,0]],[[0,1,0,1],[1,2,3,2],[2,3,3,3],[1,0,2,0]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[2,0,2,0]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[1,0,3,0]],[[0,1,0,1],[1,2,3,3],[2,3,3,2],[1,1,0,1]],[[0,1,0,1],[1,2,3,2],[3,3,3,2],[1,1,0,1]],[[0,1,0,1],[1,2,3,2],[2,4,3,2],[1,1,0,1]],[[0,1,0,1],[1,2,3,2],[2,3,4,2],[1,1,0,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,3],[1,1,0,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[2,1,0,1]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[1,1,0,2]],[[0,1,0,1],[1,2,3,3],[2,3,3,2],[1,1,1,0]],[[0,1,0,1],[1,2,3,2],[3,3,3,2],[1,1,1,0]],[[0,1,0,1],[1,2,3,2],[2,4,3,2],[1,1,1,0]],[[0,1,0,1],[1,2,3,2],[2,3,4,2],[1,1,1,0]],[[0,1,0,1],[1,2,3,2],[2,3,3,3],[1,1,1,0]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,2],[2,3,2,1],[0,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,3,2,1],[0,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,2,1],[0,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,2,1],[0,3,2,1],[1,1,0,1]],[[0,1,0,1],[1,2,3,2],[3,3,3,2],[1,2,0,0]],[[0,1,0,1],[1,2,3,2],[2,4,3,2],[1,2,0,0]],[[0,1,0,1],[1,2,3,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,4,2,1],[0,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,4,2,1],[0,3,2,1],[1,0,1,1]],[[1,2,2,2],[2,3,2,1],[0,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,3,2,1],[0,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,2,1],[0,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,2,1],[0,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,4,2,1],[0,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,3,2,1],[0,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,3,2,1],[0,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,2,1],[0,3,2,1],[0,2,1,0]],[[0,1,0,1],[1,3,0,2],[1,3,3,3],[1,2,2,1]],[[0,1,0,1],[1,3,0,2],[1,3,3,2],[2,2,2,1]],[[0,1,0,1],[1,3,0,2],[1,3,3,2],[1,3,2,1]],[[0,1,0,1],[1,3,0,2],[1,3,3,2],[1,2,3,1]],[[0,1,0,1],[1,3,0,2],[1,3,3,2],[1,2,2,2]],[[0,1,0,1],[1,3,0,2],[2,3,3,3],[0,2,2,1]],[[0,1,0,1],[1,3,0,2],[2,3,3,2],[0,3,2,1]],[[0,1,0,1],[1,3,0,2],[2,3,3,2],[0,2,3,1]],[[0,1,0,1],[1,3,0,2],[2,3,3,2],[0,2,2,2]],[[2,2,2,1],[2,3,2,1],[0,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,4,2,1],[0,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,3,2,1],[0,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,3,2,1],[0,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,2,1],[0,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,2,1],[0,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,4,2,1],[0,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,4,2,1],[0,3,2,1],[0,1,1,1]],[[1,2,2,2],[2,3,2,1],[0,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,3,2,1],[0,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,3,2,1],[0,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,3,2,1],[0,3,2,1],[0,1,1,1]],[[1,2,2,1],[2,4,2,1],[0,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,3,2,1],[0,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,2,1],[0,3,2,0],[1,2,0,1]],[[0,1,0,1],[1,3,3,3],[1,0,3,2],[1,2,2,1]],[[0,1,0,1],[1,3,3,2],[1,0,3,3],[1,2,2,1]],[[0,1,0,1],[1,3,3,2],[1,0,3,2],[1,2,3,1]],[[0,1,0,1],[1,3,3,2],[1,0,3,2],[1,2,2,2]],[[0,1,0,1],[1,3,3,3],[1,1,2,2],[1,2,2,1]],[[0,1,0,1],[1,3,3,2],[1,1,2,3],[1,2,2,1]],[[0,1,0,1],[1,3,3,2],[1,1,2,2],[2,2,2,1]],[[0,1,0,1],[1,3,3,2],[1,1,2,2],[1,3,2,1]],[[0,1,0,1],[1,3,3,2],[1,1,2,2],[1,2,3,1]],[[0,1,0,1],[1,3,3,2],[1,1,2,2],[1,2,2,2]],[[0,1,0,1],[1,3,3,2],[1,1,4,1],[1,2,2,1]],[[0,1,0,1],[1,3,3,2],[1,1,3,1],[2,2,2,1]],[[0,1,0,1],[1,3,3,2],[1,1,3,1],[1,3,2,1]],[[0,1,0,1],[1,3,3,2],[1,1,3,1],[1,2,3,1]],[[0,1,0,1],[1,3,3,2],[1,1,3,1],[1,2,2,2]],[[0,1,0,1],[1,3,3,3],[1,1,3,2],[1,2,1,1]],[[0,1,0,1],[1,3,3,2],[1,1,4,2],[1,2,1,1]],[[0,1,0,1],[1,3,3,2],[1,1,3,3],[1,2,1,1]],[[0,1,0,1],[1,3,3,2],[1,1,3,2],[1,2,1,2]],[[0,1,0,1],[1,3,3,3],[1,1,3,2],[1,2,2,0]],[[0,1,0,1],[1,3,3,2],[1,1,4,2],[1,2,2,0]],[[0,1,0,1],[1,3,3,2],[1,1,3,3],[1,2,2,0]],[[0,1,0,1],[1,3,3,2],[1,1,3,2],[2,2,2,0]],[[0,1,0,1],[1,3,3,2],[1,1,3,2],[1,3,2,0]],[[0,1,0,1],[1,3,3,2],[1,1,3,2],[1,2,3,0]],[[0,1,0,1],[1,3,3,3],[1,2,2,2],[1,1,2,1]],[[0,1,0,1],[1,3,3,2],[1,2,2,3],[1,1,2,1]],[[0,1,0,1],[1,3,3,2],[1,2,2,2],[1,1,3,1]],[[0,1,0,1],[1,3,3,2],[1,2,2,2],[1,1,2,2]],[[0,1,0,1],[1,3,3,2],[1,2,4,1],[1,1,2,1]],[[0,1,0,1],[1,3,3,2],[1,2,3,1],[1,1,3,1]],[[0,1,0,1],[1,3,3,2],[1,2,3,1],[1,1,2,2]],[[0,1,0,1],[1,3,3,3],[1,2,3,2],[1,0,2,1]],[[0,1,0,1],[1,3,3,2],[1,2,4,2],[1,0,2,1]],[[0,1,0,1],[1,3,3,2],[1,2,3,3],[1,0,2,1]],[[0,1,0,1],[1,3,3,2],[1,2,3,2],[1,0,2,2]],[[0,1,0,1],[1,3,3,3],[1,2,3,2],[1,1,1,1]],[[0,1,0,1],[1,3,3,2],[1,2,4,2],[1,1,1,1]],[[0,1,0,1],[1,3,3,2],[1,2,3,3],[1,1,1,1]],[[0,1,0,1],[1,3,3,2],[1,2,3,2],[1,1,1,2]],[[0,1,0,1],[1,3,3,3],[1,2,3,2],[1,1,2,0]],[[0,1,0,1],[1,3,3,2],[1,2,4,2],[1,1,2,0]],[[0,1,0,1],[1,3,3,2],[1,2,3,3],[1,1,2,0]],[[0,1,0,1],[1,3,3,2],[1,2,3,2],[1,1,3,0]],[[0,1,0,1],[1,3,3,3],[1,2,3,2],[1,2,0,1]],[[0,1,0,1],[1,3,3,2],[1,2,4,2],[1,2,0,1]],[[0,1,0,1],[1,3,3,2],[1,2,3,3],[1,2,0,1]],[[0,1,0,1],[1,3,3,2],[1,2,3,2],[1,2,0,2]],[[0,1,0,1],[1,3,3,3],[1,2,3,2],[1,2,1,0]],[[0,1,0,1],[1,3,3,2],[1,2,4,2],[1,2,1,0]],[[0,1,0,1],[1,3,3,2],[1,2,3,3],[1,2,1,0]],[[2,2,2,1],[2,3,2,1],[0,3,2,0],[1,2,0,1]],[[1,2,2,1],[2,4,2,1],[0,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,3,2,1],[0,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,3,2,1],[0,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,2,1],[0,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,2,1],[0,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,4,2,1],[0,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,3,2,1],[0,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,3,2,1],[0,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,2,1],[0,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,2,1],[0,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,4,2,1],[0,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,3,2,1],[0,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,3,2,1],[0,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,2,1],[0,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,2,1],[0,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,4,2,1],[0,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,3,2,1],[0,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,3,2,1],[0,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,2,1],[0,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,2,1],[0,3,2,0],[0,1,2,1]],[[0,1,0,1],[1,3,3,3],[2,0,2,2],[1,2,2,1]],[[0,1,0,1],[1,3,3,2],[3,0,2,2],[1,2,2,1]],[[0,1,0,1],[1,3,3,2],[2,0,2,3],[1,2,2,1]],[[0,1,0,1],[1,3,3,2],[2,0,2,2],[2,2,2,1]],[[0,1,0,1],[1,3,3,2],[2,0,2,2],[1,3,2,1]],[[0,1,0,1],[1,3,3,2],[2,0,2,2],[1,2,3,1]],[[0,1,0,1],[1,3,3,2],[2,0,2,2],[1,2,2,2]],[[0,1,0,1],[1,3,3,2],[3,0,3,1],[1,2,2,1]],[[0,1,0,1],[1,3,3,2],[2,0,4,1],[1,2,2,1]],[[0,1,0,1],[1,3,3,2],[2,0,3,1],[2,2,2,1]],[[0,1,0,1],[1,3,3,2],[2,0,3,1],[1,3,2,1]],[[0,1,0,1],[1,3,3,2],[2,0,3,1],[1,2,3,1]],[[0,1,0,1],[1,3,3,2],[2,0,3,1],[1,2,2,2]],[[0,1,0,1],[1,3,3,3],[2,0,3,2],[0,2,2,1]],[[0,1,0,1],[1,3,3,2],[2,0,3,3],[0,2,2,1]],[[0,1,0,1],[1,3,3,2],[2,0,3,2],[0,2,3,1]],[[0,1,0,1],[1,3,3,2],[2,0,3,2],[0,2,2,2]],[[0,1,0,1],[1,3,3,3],[2,0,3,2],[1,2,1,1]],[[0,1,0,1],[1,3,3,2],[2,0,4,2],[1,2,1,1]],[[0,1,0,1],[1,3,3,2],[2,0,3,3],[1,2,1,1]],[[0,1,0,1],[1,3,3,2],[2,0,3,2],[1,2,1,2]],[[0,1,0,1],[1,3,3,3],[2,0,3,2],[1,2,2,0]],[[0,1,0,1],[1,3,3,2],[3,0,3,2],[1,2,2,0]],[[0,1,0,1],[1,3,3,2],[2,0,4,2],[1,2,2,0]],[[0,1,0,1],[1,3,3,2],[2,0,3,3],[1,2,2,0]],[[0,1,0,1],[1,3,3,2],[2,0,3,2],[2,2,2,0]],[[0,1,0,1],[1,3,3,2],[2,0,3,2],[1,3,2,0]],[[0,1,0,1],[1,3,3,2],[2,0,3,2],[1,2,3,0]],[[0,1,0,1],[1,3,3,3],[2,1,2,2],[0,2,2,1]],[[0,1,0,1],[1,3,3,2],[2,1,2,3],[0,2,2,1]],[[0,1,0,1],[1,3,3,2],[2,1,2,2],[0,3,2,1]],[[0,1,0,1],[1,3,3,2],[2,1,2,2],[0,2,3,1]],[[0,1,0,1],[1,3,3,2],[2,1,2,2],[0,2,2,2]],[[0,1,0,1],[1,3,3,2],[2,1,4,1],[0,2,2,1]],[[0,1,0,1],[1,3,3,2],[2,1,3,1],[0,3,2,1]],[[0,1,0,1],[1,3,3,2],[2,1,3,1],[0,2,3,1]],[[0,1,0,1],[1,3,3,2],[2,1,3,1],[0,2,2,2]],[[0,1,0,1],[1,3,3,3],[2,1,3,2],[0,2,1,1]],[[0,1,0,1],[1,3,3,2],[2,1,4,2],[0,2,1,1]],[[0,1,0,1],[1,3,3,2],[2,1,3,3],[0,2,1,1]],[[0,1,0,1],[1,3,3,2],[2,1,3,2],[0,2,1,2]],[[0,1,0,1],[1,3,3,3],[2,1,3,2],[0,2,2,0]],[[0,1,0,1],[1,3,3,2],[2,1,4,2],[0,2,2,0]],[[0,1,0,1],[1,3,3,2],[2,1,3,3],[0,2,2,0]],[[0,1,0,1],[1,3,3,2],[2,1,3,2],[0,3,2,0]],[[0,1,0,1],[1,3,3,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,4,2,1],[0,3,1,2],[1,2,0,0]],[[1,2,2,2],[2,3,2,1],[0,3,1,2],[1,2,0,0]],[[1,2,3,1],[2,3,2,1],[0,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,3,2,1],[0,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,3,2,1],[0,3,1,2],[1,2,0,0]],[[0,1,0,1],[1,3,3,3],[2,2,2,2],[0,1,2,1]],[[0,1,0,1],[1,3,3,2],[2,2,2,3],[0,1,2,1]],[[0,1,0,1],[1,3,3,2],[2,2,2,2],[0,1,3,1]],[[0,1,0,1],[1,3,3,2],[2,2,2,2],[0,1,2,2]],[[0,1,0,1],[1,3,3,3],[2,2,2,2],[1,0,2,1]],[[0,1,0,1],[1,3,3,2],[2,2,2,3],[1,0,2,1]],[[0,1,0,1],[1,3,3,2],[2,2,2,2],[1,0,3,1]],[[0,1,0,1],[1,3,3,2],[2,2,2,2],[1,0,2,2]],[[0,1,0,1],[1,3,3,2],[2,2,4,1],[0,1,2,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,1],[0,1,3,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,1],[0,1,2,2]],[[0,1,0,1],[1,3,3,2],[2,2,4,1],[1,0,2,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,1],[1,0,3,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,1],[1,0,2,2]],[[0,1,0,1],[1,3,3,3],[2,2,3,2],[0,0,2,1]],[[0,1,0,1],[1,3,3,2],[2,2,4,2],[0,0,2,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,3],[0,0,2,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,2],[0,0,2,2]],[[0,1,0,1],[1,3,3,3],[2,2,3,2],[0,1,1,1]],[[0,1,0,1],[1,3,3,2],[2,2,4,2],[0,1,1,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,3],[0,1,1,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,2],[0,1,1,2]],[[0,1,0,1],[1,3,3,3],[2,2,3,2],[0,1,2,0]],[[0,1,0,1],[1,3,3,2],[2,2,4,2],[0,1,2,0]],[[0,1,0,1],[1,3,3,2],[2,2,3,3],[0,1,2,0]],[[0,1,0,1],[1,3,3,2],[2,2,3,2],[0,1,3,0]],[[0,1,0,1],[1,3,3,3],[2,2,3,2],[0,2,0,1]],[[0,1,0,1],[1,3,3,2],[2,2,4,2],[0,2,0,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,3],[0,2,0,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,2],[0,2,0,2]],[[0,1,0,1],[1,3,3,3],[2,2,3,2],[0,2,1,0]],[[0,1,0,1],[1,3,3,2],[2,2,4,2],[0,2,1,0]],[[0,1,0,1],[1,3,3,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,4,2,1],[0,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,1],[0,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[0,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,1],[0,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[0,3,1,2],[1,1,1,0]],[[0,1,0,1],[1,3,3,3],[2,2,3,2],[1,0,1,1]],[[0,1,0,1],[1,3,3,2],[2,2,4,2],[1,0,1,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,3],[1,0,1,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,2],[1,0,1,2]],[[0,1,0,1],[1,3,3,3],[2,2,3,2],[1,0,2,0]],[[0,1,0,1],[1,3,3,2],[2,2,4,2],[1,0,2,0]],[[0,1,0,1],[1,3,3,2],[2,2,3,3],[1,0,2,0]],[[0,1,0,1],[1,3,3,2],[2,2,3,2],[1,0,3,0]],[[0,1,0,1],[1,3,3,3],[2,2,3,2],[1,1,0,1]],[[0,1,0,1],[1,3,3,2],[2,2,4,2],[1,1,0,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,3],[1,1,0,1]],[[0,1,0,1],[1,3,3,2],[2,2,3,2],[1,1,0,2]],[[0,1,0,1],[1,3,3,3],[2,2,3,2],[1,1,1,0]],[[0,1,0,1],[1,3,3,2],[2,2,4,2],[1,1,1,0]],[[0,1,0,1],[1,3,3,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,4,2,1],[0,3,1,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,1],[0,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,1],[0,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,3,2,1],[0,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,1],[0,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,4,2,1],[0,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,1,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,4,2,1],[0,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,1],[0,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,1],[0,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,1],[0,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,1],[0,3,1,2],[1,0,1,1]],[[1,2,2,1],[2,4,2,1],[0,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,1],[0,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,1],[0,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,1],[0,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,1],[0,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,4,2,1],[0,3,1,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,1],[0,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,1],[0,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,1],[0,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,2,1],[0,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,4,2,1],[0,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,4,2,1],[0,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,1],[0,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,1],[0,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,1],[0,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,1],[0,3,1,2],[0,1,1,1]],[[1,2,2,1],[2,4,2,1],[0,3,1,1],[1,1,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,4,2,1],[0,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,1,1],[0,2,2,0]],[[0,1,0,1],[1,3,3,3],[2,3,3,2],[0,0,1,1]],[[0,1,0,1],[1,3,3,2],[2,3,4,2],[0,0,1,1]],[[0,1,0,1],[1,3,3,2],[2,3,3,3],[0,0,1,1]],[[0,1,0,1],[1,3,3,2],[2,3,3,2],[0,0,1,2]],[[0,1,0,1],[1,3,3,3],[2,3,3,2],[0,0,2,0]],[[0,1,0,1],[1,3,3,2],[2,3,4,2],[0,0,2,0]],[[0,1,0,1],[1,3,3,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,4,2,1],[0,3,1,0],[1,1,2,1]],[[1,2,2,2],[2,3,2,1],[0,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,3,2,1],[0,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,2,1],[0,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,2,1],[0,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,4,2,1],[0,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,3,2,1],[0,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,3,2,1],[0,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,2,1],[0,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,2,1],[0,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,4,2,1],[0,3,0,2],[1,1,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,4,2,1],[0,3,0,2],[1,1,1,1]],[[1,2,2,2],[2,3,2,1],[0,3,0,2],[1,1,1,1]],[[1,2,3,1],[2,3,2,1],[0,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,3,2,1],[0,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,3,2,1],[0,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,4,2,1],[0,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,3,2,1],[0,3,0,2],[1,0,2,1]],[[1,2,3,1],[2,3,2,1],[0,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,2,1],[0,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,3,2,1],[0,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,4,2,1],[0,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,3,2,1],[0,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,3,2,1],[0,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,3,2,1],[0,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,3,2,1],[0,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,4,2,1],[0,3,0,2],[0,2,1,1]],[[1,2,2,2],[2,3,2,1],[0,3,0,2],[0,2,1,1]],[[1,2,3,1],[2,3,2,1],[0,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,3,2,1],[0,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,3,2,1],[0,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,4,2,1],[0,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,3,2,1],[0,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,3,2,1],[0,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,2,1],[0,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,2,1],[0,3,0,2],[0,1,2,1]],[[1,2,2,1],[2,4,2,1],[0,3,0,1],[1,1,2,1]],[[1,2,2,2],[2,3,2,1],[0,3,0,1],[1,1,2,1]],[[1,2,3,1],[2,3,2,1],[0,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,3,2,1],[0,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,3,2,1],[0,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,4,2,1],[0,3,0,1],[0,2,2,1]],[[1,2,2,2],[2,3,2,1],[0,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,3,2,1],[0,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,3,2,1],[0,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,3,2,1],[0,3,0,1],[0,2,2,1]],[[0,1,0,1],[2,0,1,2],[2,3,3,3],[1,2,2,1]],[[0,1,0,1],[2,0,1,2],[2,3,3,2],[2,2,2,1]],[[0,1,0,1],[2,0,1,2],[2,3,3,2],[1,3,2,1]],[[0,1,0,1],[2,0,1,2],[2,3,3,2],[1,2,3,1]],[[0,1,0,1],[2,0,1,2],[2,3,3,2],[1,2,2,2]],[[0,1,0,1],[2,0,2,2],[1,3,3,3],[1,2,2,1]],[[0,1,0,1],[2,0,2,2],[1,3,3,2],[2,2,2,1]],[[0,1,0,1],[2,0,2,2],[1,3,3,2],[1,3,2,1]],[[0,1,0,1],[2,0,2,2],[1,3,3,2],[1,2,3,1]],[[0,1,0,1],[2,0,2,2],[1,3,3,2],[1,2,2,2]],[[0,1,0,1],[2,0,2,2],[2,2,3,3],[1,2,2,1]],[[0,1,0,1],[2,0,2,2],[2,2,3,2],[2,2,2,1]],[[0,1,0,1],[2,0,2,2],[2,2,3,2],[1,3,2,1]],[[0,1,0,1],[2,0,2,2],[2,2,3,2],[1,2,3,1]],[[0,1,0,1],[2,0,2,2],[2,2,3,2],[1,2,2,2]],[[0,1,0,1],[2,0,2,2],[2,3,3,3],[0,2,2,1]],[[0,1,0,1],[2,0,2,2],[2,3,3,2],[0,3,2,1]],[[0,1,0,1],[2,0,2,2],[2,3,3,2],[0,2,3,1]],[[0,1,0,1],[2,0,2,2],[2,3,3,2],[0,2,2,2]],[[0,1,0,1],[2,0,3,3],[1,3,2,2],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[1,3,2,3],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[1,3,2,2],[2,2,2,1]],[[0,1,0,1],[2,0,3,2],[1,3,2,2],[1,3,2,1]],[[0,1,0,1],[2,0,3,2],[1,3,2,2],[1,2,3,1]],[[0,1,0,1],[2,0,3,2],[1,3,2,2],[1,2,2,2]],[[0,1,0,1],[2,0,3,2],[1,3,4,1],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[1,3,3,1],[2,2,2,1]],[[0,1,0,1],[2,0,3,2],[1,3,3,1],[1,3,2,1]],[[0,1,0,1],[2,0,3,2],[1,3,3,1],[1,2,3,1]],[[0,1,0,1],[2,0,3,2],[1,3,3,1],[1,2,2,2]],[[0,1,0,1],[2,0,3,3],[1,3,3,2],[1,2,1,1]],[[0,1,0,1],[2,0,3,2],[1,3,4,2],[1,2,1,1]],[[0,1,0,1],[2,0,3,2],[1,3,3,3],[1,2,1,1]],[[0,1,0,1],[2,0,3,2],[1,3,3,2],[1,2,1,2]],[[0,1,0,1],[2,0,3,3],[1,3,3,2],[1,2,2,0]],[[0,1,0,1],[2,0,3,2],[1,3,4,2],[1,2,2,0]],[[0,1,0,1],[2,0,3,2],[1,3,3,3],[1,2,2,0]],[[0,1,0,1],[2,0,3,2],[1,3,3,2],[2,2,2,0]],[[0,1,0,1],[2,0,3,2],[1,3,3,2],[1,3,2,0]],[[0,1,0,1],[2,0,3,2],[1,3,3,2],[1,2,3,0]],[[0,1,0,1],[2,0,3,3],[2,2,2,2],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[3,2,2,2],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,2,2,3],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,2,2,2],[2,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,2,2,2],[1,3,2,1]],[[0,1,0,1],[2,0,3,2],[2,2,2,2],[1,2,3,1]],[[0,1,0,1],[2,0,3,2],[2,2,2,2],[1,2,2,2]],[[0,1,0,1],[2,0,3,2],[3,2,3,1],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,2,4,1],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,2,3,1],[2,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,2,3,1],[1,3,2,1]],[[0,1,0,1],[2,0,3,2],[2,2,3,1],[1,2,3,1]],[[0,1,0,1],[2,0,3,2],[2,2,3,1],[1,2,2,2]],[[0,1,0,1],[2,0,3,3],[2,2,3,2],[1,2,1,1]],[[0,1,0,1],[2,0,3,2],[2,2,4,2],[1,2,1,1]],[[0,1,0,1],[2,0,3,2],[2,2,3,3],[1,2,1,1]],[[0,1,0,1],[2,0,3,2],[2,2,3,2],[1,2,1,2]],[[0,1,0,1],[2,0,3,3],[2,2,3,2],[1,2,2,0]],[[0,1,0,1],[2,0,3,2],[3,2,3,2],[1,2,2,0]],[[0,1,0,1],[2,0,3,2],[2,2,4,2],[1,2,2,0]],[[0,1,0,1],[2,0,3,2],[2,2,3,3],[1,2,2,0]],[[0,1,0,1],[2,0,3,2],[2,2,3,2],[2,2,2,0]],[[0,1,0,1],[2,0,3,2],[2,2,3,2],[1,3,2,0]],[[0,1,0,1],[2,0,3,2],[2,2,3,2],[1,2,3,0]],[[0,1,0,1],[2,0,3,3],[2,3,1,2],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[3,3,1,2],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,1,3],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,1,2],[2,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,1,2],[1,3,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,1,2],[1,2,3,1]],[[0,1,0,1],[2,0,3,2],[2,3,1,2],[1,2,2,2]],[[0,1,0,1],[2,0,3,2],[3,3,2,1],[1,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,2,1],[2,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,2,1],[1,3,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,2,1],[1,2,3,1]],[[0,1,0,1],[2,0,3,2],[2,3,2,1],[1,2,2,2]],[[0,1,0,1],[2,0,3,3],[2,3,2,2],[0,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,2,3],[0,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,2,2],[0,3,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,2,2],[0,2,3,1]],[[0,1,0,1],[2,0,3,2],[2,3,2,2],[0,2,2,2]],[[0,1,0,1],[2,0,3,2],[3,3,2,2],[1,2,2,0]],[[0,1,0,1],[2,0,3,2],[2,3,2,2],[2,2,2,0]],[[0,1,0,1],[2,0,3,2],[2,3,2,2],[1,3,2,0]],[[0,1,0,1],[2,0,3,2],[2,3,2,2],[1,2,3,0]],[[0,1,0,1],[2,0,3,2],[2,3,4,1],[0,2,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,3,1],[0,3,2,1]],[[0,1,0,1],[2,0,3,2],[2,3,3,1],[0,2,3,1]],[[0,1,0,1],[2,0,3,2],[2,3,3,1],[0,2,2,2]],[[0,1,0,1],[2,0,3,2],[3,3,3,1],[1,2,1,1]],[[0,1,0,1],[2,0,3,2],[2,3,3,1],[2,2,1,1]],[[0,1,0,1],[2,0,3,2],[2,3,3,1],[1,3,1,1]],[[0,1,0,1],[2,0,3,3],[2,3,3,2],[0,2,1,1]],[[0,1,0,1],[2,0,3,2],[2,3,4,2],[0,2,1,1]],[[0,1,0,1],[2,0,3,2],[2,3,3,3],[0,2,1,1]],[[0,1,0,1],[2,0,3,2],[2,3,3,2],[0,2,1,2]],[[0,1,0,1],[2,0,3,3],[2,3,3,2],[0,2,2,0]],[[0,1,0,1],[2,0,3,2],[2,3,4,2],[0,2,2,0]],[[0,1,0,1],[2,0,3,2],[2,3,3,3],[0,2,2,0]],[[0,1,0,1],[2,0,3,2],[2,3,3,2],[0,3,2,0]],[[0,1,0,1],[2,0,3,2],[2,3,3,2],[0,2,3,0]],[[0,1,0,1],[2,0,3,2],[3,3,3,2],[1,2,0,1]],[[0,1,0,1],[2,0,3,2],[2,3,3,2],[2,2,0,1]],[[0,1,0,1],[2,0,3,2],[2,3,3,2],[1,3,0,1]],[[0,1,0,1],[2,0,3,2],[3,3,3,2],[1,2,1,0]],[[0,1,0,1],[2,0,3,2],[2,3,3,2],[2,2,1,0]],[[0,1,0,1],[2,0,3,2],[2,3,3,2],[1,3,1,0]],[[0,1,0,1],[2,1,0,2],[2,3,3,3],[1,2,2,1]],[[0,1,0,1],[2,1,0,2],[2,3,3,2],[2,2,2,1]],[[0,1,0,1],[2,1,0,2],[2,3,3,2],[1,3,2,1]],[[0,1,0,1],[2,1,0,2],[2,3,3,2],[1,2,3,1]],[[0,1,0,1],[2,1,0,2],[2,3,3,2],[1,2,2,2]],[[0,1,0,1],[2,1,2,2],[1,2,3,3],[1,2,2,1]],[[0,1,0,1],[2,1,2,2],[1,2,3,2],[2,2,2,1]],[[0,1,0,1],[2,1,2,2],[1,2,3,2],[1,3,2,1]],[[0,1,0,1],[2,1,2,2],[1,2,3,2],[1,2,3,1]],[[0,1,0,1],[2,1,2,2],[1,2,3,2],[1,2,2,2]],[[0,1,0,1],[2,1,2,2],[1,3,3,3],[1,1,2,1]],[[0,1,0,1],[2,1,2,2],[1,3,3,2],[1,1,3,1]],[[0,1,0,1],[2,1,2,2],[1,3,3,2],[1,1,2,2]],[[0,1,0,1],[2,1,2,2],[2,1,3,3],[1,2,2,1]],[[0,1,0,1],[2,1,2,2],[2,1,3,2],[2,2,2,1]],[[0,1,0,1],[2,1,2,2],[2,1,3,2],[1,3,2,1]],[[0,1,0,1],[2,1,2,2],[2,1,3,2],[1,2,3,1]],[[0,1,0,1],[2,1,2,2],[2,1,3,2],[1,2,2,2]],[[0,1,0,1],[2,1,2,2],[2,2,3,3],[0,2,2,1]],[[0,1,0,1],[2,1,2,2],[2,2,3,2],[0,3,2,1]],[[0,1,0,1],[2,1,2,2],[2,2,3,2],[0,2,3,1]],[[0,1,0,1],[2,1,2,2],[2,2,3,2],[0,2,2,2]],[[0,1,0,1],[2,1,2,2],[2,3,3,3],[0,1,2,1]],[[0,1,0,1],[2,1,2,2],[2,3,3,2],[0,1,3,1]],[[0,1,0,1],[2,1,2,2],[2,3,3,2],[0,1,2,2]],[[0,1,0,1],[2,1,2,2],[2,3,3,3],[1,0,2,1]],[[0,1,0,1],[2,1,2,2],[2,3,3,2],[1,0,3,1]],[[0,1,0,1],[2,1,2,2],[2,3,3,2],[1,0,2,2]],[[0,1,0,1],[2,1,3,3],[1,1,3,2],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,1,3,3],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,1,3,2],[1,2,3,1]],[[0,1,0,1],[2,1,3,2],[1,1,3,2],[1,2,2,2]],[[0,1,0,1],[2,1,3,3],[1,2,2,2],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,2,2,3],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,2,2,2],[2,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,2,2,2],[1,3,2,1]],[[0,1,0,1],[2,1,3,2],[1,2,2,2],[1,2,3,1]],[[0,1,0,1],[2,1,3,2],[1,2,2,2],[1,2,2,2]],[[0,1,0,1],[2,1,3,2],[1,2,4,1],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,2,3,1],[2,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,2,3,1],[1,3,2,1]],[[0,1,0,1],[2,1,3,2],[1,2,3,1],[1,2,3,1]],[[0,1,0,1],[2,1,3,2],[1,2,3,1],[1,2,2,2]],[[0,1,0,1],[2,1,3,3],[1,2,3,2],[1,2,1,1]],[[0,1,0,1],[2,1,3,2],[1,2,4,2],[1,2,1,1]],[[0,1,0,1],[2,1,3,2],[1,2,3,3],[1,2,1,1]],[[0,1,0,1],[2,1,3,2],[1,2,3,2],[1,2,1,2]],[[0,1,0,1],[2,1,3,3],[1,2,3,2],[1,2,2,0]],[[0,1,0,1],[2,1,3,2],[1,2,4,2],[1,2,2,0]],[[0,1,0,1],[2,1,3,2],[1,2,3,3],[1,2,2,0]],[[0,1,0,1],[2,1,3,2],[1,2,3,2],[2,2,2,0]],[[0,1,0,1],[2,1,3,2],[1,2,3,2],[1,3,2,0]],[[0,1,0,1],[2,1,3,2],[1,2,3,2],[1,2,3,0]],[[0,1,0,1],[2,1,3,3],[1,3,1,2],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,4,1,2],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,1,3],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,1,2],[2,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,1,2],[1,3,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,1,2],[1,2,3,1]],[[0,1,0,1],[2,1,3,2],[1,3,1,2],[1,2,2,2]],[[0,1,0,1],[2,1,3,2],[1,4,2,1],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,2,1],[2,2,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,2,1],[1,3,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,2,1],[1,2,3,1]],[[0,1,0,1],[2,1,3,2],[1,3,2,1],[1,2,2,2]],[[0,1,0,1],[2,1,3,3],[1,3,2,2],[1,1,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,2,3],[1,1,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,2,2],[1,1,3,1]],[[0,1,0,1],[2,1,3,2],[1,3,2,2],[1,1,2,2]],[[0,1,0,1],[2,1,3,2],[1,4,2,2],[1,2,2,0]],[[0,1,0,1],[2,1,3,2],[1,3,2,2],[2,2,2,0]],[[0,1,0,1],[2,1,3,2],[1,3,2,2],[1,3,2,0]],[[0,1,0,1],[2,1,3,2],[1,3,2,2],[1,2,3,0]],[[0,1,0,1],[2,1,3,2],[1,4,3,1],[1,1,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,4,1],[1,1,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,1],[1,1,3,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,1],[1,1,2,2]],[[0,1,0,1],[2,1,3,2],[1,4,3,1],[1,2,1,1]],[[0,1,0,1],[2,1,3,2],[1,3,4,1],[1,2,1,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,1],[2,2,1,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,1],[1,3,1,1]],[[0,1,0,1],[2,1,3,3],[1,3,3,2],[1,0,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,4,2],[1,0,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,3],[1,0,2,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,2],[1,0,2,2]],[[0,1,0,1],[2,1,3,3],[1,3,3,2],[1,1,1,1]],[[0,1,0,1],[2,1,3,2],[1,4,3,2],[1,1,1,1]],[[0,1,0,1],[2,1,3,2],[1,3,4,2],[1,1,1,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,3],[1,1,1,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,2],[1,1,1,2]],[[0,1,0,1],[2,1,3,3],[1,3,3,2],[1,1,2,0]],[[0,1,0,1],[2,1,3,2],[1,4,3,2],[1,1,2,0]],[[0,1,0,1],[2,1,3,2],[1,3,4,2],[1,1,2,0]],[[0,1,0,1],[2,1,3,2],[1,3,3,3],[1,1,2,0]],[[0,1,0,1],[2,1,3,2],[1,3,3,2],[1,1,3,0]],[[0,1,0,1],[2,1,3,3],[1,3,3,2],[1,2,0,1]],[[0,1,0,1],[2,1,3,2],[1,4,3,2],[1,2,0,1]],[[0,1,0,1],[2,1,3,2],[1,3,4,2],[1,2,0,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,3],[1,2,0,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,2],[2,2,0,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,2],[1,3,0,1]],[[0,1,0,1],[2,1,3,2],[1,3,3,2],[1,2,0,2]],[[0,1,0,1],[2,1,3,3],[1,3,3,2],[1,2,1,0]],[[0,1,0,1],[2,1,3,2],[1,4,3,2],[1,2,1,0]],[[0,1,0,1],[2,1,3,2],[1,3,4,2],[1,2,1,0]],[[0,1,0,1],[2,1,3,2],[1,3,3,3],[1,2,1,0]],[[0,1,0,1],[2,1,3,2],[1,3,3,2],[2,2,1,0]],[[0,1,0,1],[2,1,3,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,4,2,1],[0,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,3,2,1],[0,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,3,2,1],[0,2,3,2],[1,0,0,1]],[[1,3,2,1],[2,3,2,1],[0,2,3,2],[1,0,0,1]],[[0,1,0,1],[2,1,3,3],[2,0,3,2],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,0,3,3],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,0,3,2],[1,2,3,1]],[[0,1,0,1],[2,1,3,2],[2,0,3,2],[1,2,2,2]],[[0,1,0,1],[2,1,3,3],[2,1,2,2],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[3,1,2,2],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,1,2,3],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,1,2,2],[2,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,1,2,2],[1,3,2,1]],[[0,1,0,1],[2,1,3,2],[2,1,2,2],[1,2,3,1]],[[0,1,0,1],[2,1,3,2],[2,1,2,2],[1,2,2,2]],[[0,1,0,1],[2,1,3,2],[3,1,3,1],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,1,4,1],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,1,3,1],[2,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,1,3,1],[1,3,2,1]],[[0,1,0,1],[2,1,3,2],[2,1,3,1],[1,2,3,1]],[[0,1,0,1],[2,1,3,2],[2,1,3,1],[1,2,2,2]],[[0,1,0,1],[2,1,3,3],[2,1,3,2],[0,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,1,3,3],[0,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,1,3,2],[0,2,3,1]],[[0,1,0,1],[2,1,3,2],[2,1,3,2],[0,2,2,2]],[[0,1,0,1],[2,1,3,3],[2,1,3,2],[1,2,1,1]],[[0,1,0,1],[2,1,3,2],[2,1,4,2],[1,2,1,1]],[[0,1,0,1],[2,1,3,2],[2,1,3,3],[1,2,1,1]],[[0,1,0,1],[2,1,3,2],[2,1,3,2],[1,2,1,2]],[[0,1,0,1],[2,1,3,3],[2,1,3,2],[1,2,2,0]],[[0,1,0,1],[2,1,3,2],[3,1,3,2],[1,2,2,0]],[[0,1,0,1],[2,1,3,2],[2,1,4,2],[1,2,2,0]],[[0,1,0,1],[2,1,3,2],[2,1,3,3],[1,2,2,0]],[[0,1,0,1],[2,1,3,2],[2,1,3,2],[2,2,2,0]],[[0,1,0,1],[2,1,3,2],[2,1,3,2],[1,3,2,0]],[[0,1,0,1],[2,1,3,2],[2,1,3,2],[1,2,3,0]],[[0,1,0,1],[2,1,3,3],[2,2,1,2],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[3,2,1,2],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,1,3],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,1,2],[2,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,1,2],[1,3,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,1,2],[1,2,3,1]],[[0,1,0,1],[2,1,3,2],[2,2,1,2],[1,2,2,2]],[[0,1,0,1],[2,1,3,2],[3,2,2,1],[1,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,2,1],[2,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,2,1],[1,3,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,2,1],[1,2,3,1]],[[0,1,0,1],[2,1,3,2],[2,2,2,1],[1,2,2,2]],[[0,1,0,1],[2,1,3,3],[2,2,2,2],[0,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,2,3],[0,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,2,2],[0,3,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,2,2],[0,2,3,1]],[[0,1,0,1],[2,1,3,2],[2,2,2,2],[0,2,2,2]],[[0,1,0,1],[2,1,3,2],[3,2,2,2],[1,2,2,0]],[[0,1,0,1],[2,1,3,2],[2,2,2,2],[2,2,2,0]],[[0,1,0,1],[2,1,3,2],[2,2,2,2],[1,3,2,0]],[[0,1,0,1],[2,1,3,2],[2,2,2,2],[1,2,3,0]],[[0,1,0,1],[2,1,3,2],[2,2,4,1],[0,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,3,1],[0,3,2,1]],[[0,1,0,1],[2,1,3,2],[2,2,3,1],[0,2,3,1]],[[0,1,0,1],[2,1,3,2],[2,2,3,1],[0,2,2,2]],[[0,1,0,1],[2,1,3,2],[3,2,3,1],[1,2,1,1]],[[0,1,0,1],[2,1,3,2],[2,2,3,1],[2,2,1,1]],[[0,1,0,1],[2,1,3,2],[2,2,3,1],[1,3,1,1]],[[0,1,0,1],[2,1,3,3],[2,2,3,2],[0,2,1,1]],[[0,1,0,1],[2,1,3,2],[2,2,4,2],[0,2,1,1]],[[0,1,0,1],[2,1,3,2],[2,2,3,3],[0,2,1,1]],[[0,1,0,1],[2,1,3,2],[2,2,3,2],[0,2,1,2]],[[0,1,0,1],[2,1,3,3],[2,2,3,2],[0,2,2,0]],[[0,1,0,1],[2,1,3,2],[2,2,4,2],[0,2,2,0]],[[0,1,0,1],[2,1,3,2],[2,2,3,3],[0,2,2,0]],[[0,1,0,1],[2,1,3,2],[2,2,3,2],[0,3,2,0]],[[0,1,0,1],[2,1,3,2],[2,2,3,2],[0,2,3,0]],[[0,1,0,1],[2,1,3,2],[3,2,3,2],[1,2,0,1]],[[0,1,0,1],[2,1,3,2],[2,2,3,2],[2,2,0,1]],[[0,1,0,1],[2,1,3,2],[2,2,3,2],[1,3,0,1]],[[0,1,0,1],[2,1,3,2],[3,2,3,2],[1,2,1,0]],[[0,1,0,1],[2,1,3,2],[2,2,3,2],[2,2,1,0]],[[0,1,0,1],[2,1,3,2],[2,2,3,2],[1,3,1,0]],[[2,2,2,1],[2,3,2,1],[0,2,3,2],[1,0,0,1]],[[0,1,0,1],[2,1,3,3],[2,3,1,2],[0,2,2,1]],[[0,1,0,1],[2,1,3,2],[3,3,1,2],[0,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,4,1,2],[0,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,1,3],[0,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,1,2],[0,3,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,1,2],[0,2,3,1]],[[0,1,0,1],[2,1,3,2],[2,3,1,2],[0,2,2,2]],[[0,1,0,1],[2,1,3,2],[3,3,1,2],[1,1,2,1]],[[0,1,0,1],[2,1,3,2],[2,4,1,2],[1,1,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,1,2],[2,1,2,1]],[[0,1,0,1],[2,1,3,2],[3,3,2,1],[0,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,4,2,1],[0,2,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,2,1],[0,3,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,2,1],[0,2,3,1]],[[0,1,0,1],[2,1,3,2],[2,3,2,1],[0,2,2,2]],[[0,1,0,1],[2,1,3,2],[3,3,2,1],[1,1,2,1]],[[0,1,0,1],[2,1,3,2],[2,4,2,1],[1,1,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,2,1],[2,1,2,1]],[[0,1,0,1],[2,1,3,3],[2,3,2,2],[0,1,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,2,3],[0,1,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,2,2],[0,1,3,1]],[[0,1,0,1],[2,1,3,2],[2,3,2,2],[0,1,2,2]],[[0,1,0,1],[2,1,3,2],[3,3,2,2],[0,2,2,0]],[[0,1,0,1],[2,1,3,2],[2,4,2,2],[0,2,2,0]],[[0,1,0,1],[2,1,3,2],[2,3,2,2],[0,3,2,0]],[[0,1,0,1],[2,1,3,2],[2,3,2,2],[0,2,3,0]],[[0,1,0,1],[2,1,3,3],[2,3,2,2],[1,0,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,2,3],[1,0,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,2,2],[1,0,3,1]],[[0,1,0,1],[2,1,3,2],[2,3,2,2],[1,0,2,2]],[[0,1,0,1],[2,1,3,2],[3,3,2,2],[1,1,2,0]],[[0,1,0,1],[2,1,3,2],[2,4,2,2],[1,1,2,0]],[[0,1,0,1],[2,1,3,2],[2,3,2,2],[2,1,2,0]],[[0,1,0,1],[2,1,3,2],[3,3,3,1],[0,1,2,1]],[[0,1,0,1],[2,1,3,2],[2,4,3,1],[0,1,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,4,1],[0,1,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,1],[0,1,3,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,1],[0,1,2,2]],[[0,1,0,1],[2,1,3,2],[3,3,3,1],[0,2,1,1]],[[0,1,0,1],[2,1,3,2],[2,4,3,1],[0,2,1,1]],[[0,1,0,1],[2,1,3,2],[2,3,4,1],[0,2,1,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,1],[0,3,1,1]],[[0,1,0,1],[2,1,3,2],[3,3,3,1],[1,0,2,1]],[[0,1,0,1],[2,1,3,2],[2,4,3,1],[1,0,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,4,1],[1,0,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,1],[2,0,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,1],[1,0,3,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,1],[1,0,2,2]],[[0,1,0,1],[2,1,3,2],[3,3,3,1],[1,1,1,1]],[[0,1,0,1],[2,1,3,2],[2,4,3,1],[1,1,1,1]],[[0,1,0,1],[2,1,3,2],[2,3,4,1],[1,1,1,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[2,4,2,1],[0,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,3,2,1],[0,2,3,2],[0,1,0,1]],[[0,1,0,1],[2,1,3,3],[2,3,3,2],[0,0,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,4,2],[0,0,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,3],[0,0,2,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[0,0,2,2]],[[0,1,0,1],[2,1,3,3],[2,3,3,2],[0,1,1,1]],[[0,1,0,1],[2,1,3,2],[3,3,3,2],[0,1,1,1]],[[0,1,0,1],[2,1,3,2],[2,4,3,2],[0,1,1,1]],[[0,1,0,1],[2,1,3,2],[2,3,4,2],[0,1,1,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,3],[0,1,1,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[0,1,1,2]],[[0,1,0,1],[2,1,3,3],[2,3,3,2],[0,1,2,0]],[[0,1,0,1],[2,1,3,2],[3,3,3,2],[0,1,2,0]],[[0,1,0,1],[2,1,3,2],[2,4,3,2],[0,1,2,0]],[[0,1,0,1],[2,1,3,2],[2,3,4,2],[0,1,2,0]],[[0,1,0,1],[2,1,3,2],[2,3,3,3],[0,1,2,0]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[0,1,3,0]],[[0,1,0,1],[2,1,3,3],[2,3,3,2],[0,2,0,1]],[[0,1,0,1],[2,1,3,2],[3,3,3,2],[0,2,0,1]],[[0,1,0,1],[2,1,3,2],[2,4,3,2],[0,2,0,1]],[[0,1,0,1],[2,1,3,2],[2,3,4,2],[0,2,0,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,3],[0,2,0,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[0,3,0,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[0,2,0,2]],[[0,1,0,1],[2,1,3,3],[2,3,3,2],[0,2,1,0]],[[0,1,0,1],[2,1,3,2],[3,3,3,2],[0,2,1,0]],[[0,1,0,1],[2,1,3,2],[2,4,3,2],[0,2,1,0]],[[0,1,0,1],[2,1,3,2],[2,3,4,2],[0,2,1,0]],[[0,1,0,1],[2,1,3,2],[2,3,3,3],[0,2,1,0]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[0,3,1,0]],[[1,2,3,1],[2,3,2,1],[0,2,3,2],[0,1,0,1]],[[1,3,2,1],[2,3,2,1],[0,2,3,2],[0,1,0,1]],[[2,2,2,1],[2,3,2,1],[0,2,3,2],[0,1,0,1]],[[0,1,0,1],[2,1,3,3],[2,3,3,2],[1,0,1,1]],[[0,1,0,1],[2,1,3,2],[3,3,3,2],[1,0,1,1]],[[0,1,0,1],[2,1,3,2],[2,4,3,2],[1,0,1,1]],[[0,1,0,1],[2,1,3,2],[2,3,4,2],[1,0,1,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,3],[1,0,1,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[2,0,1,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[1,0,1,2]],[[0,1,0,1],[2,1,3,3],[2,3,3,2],[1,0,2,0]],[[0,1,0,1],[2,1,3,2],[3,3,3,2],[1,0,2,0]],[[0,1,0,1],[2,1,3,2],[2,4,3,2],[1,0,2,0]],[[0,1,0,1],[2,1,3,2],[2,3,4,2],[1,0,2,0]],[[0,1,0,1],[2,1,3,2],[2,3,3,3],[1,0,2,0]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[2,0,2,0]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[1,0,3,0]],[[0,1,0,1],[2,1,3,3],[2,3,3,2],[1,1,0,1]],[[0,1,0,1],[2,1,3,2],[3,3,3,2],[1,1,0,1]],[[0,1,0,1],[2,1,3,2],[2,4,3,2],[1,1,0,1]],[[0,1,0,1],[2,1,3,2],[2,3,4,2],[1,1,0,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,3],[1,1,0,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[2,1,0,1]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[1,1,0,2]],[[0,1,0,1],[2,1,3,3],[2,3,3,2],[1,1,1,0]],[[0,1,0,1],[2,1,3,2],[3,3,3,2],[1,1,1,0]],[[0,1,0,1],[2,1,3,2],[2,4,3,2],[1,1,1,0]],[[0,1,0,1],[2,1,3,2],[2,3,4,2],[1,1,1,0]],[[0,1,0,1],[2,1,3,2],[2,3,3,3],[1,1,1,0]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[2,1,1,0]],[[0,1,0,1],[2,1,3,2],[3,3,3,2],[1,2,0,0]],[[0,1,0,1],[2,1,3,2],[2,4,3,2],[1,2,0,0]],[[0,1,0,1],[2,1,3,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,4,2,1],[0,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,3,2,1],[0,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[0,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,2,1],[0,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[0,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,4,2,1],[0,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,3,2,1],[0,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,3,2,1],[0,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,2,1],[0,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,2,1],[0,2,3,1],[1,1,0,1]],[[0,1,0,1],[2,2,2,2],[0,2,3,3],[1,2,2,1]],[[0,1,0,1],[2,2,2,2],[0,2,3,2],[1,3,2,1]],[[0,1,0,1],[2,2,2,2],[0,2,3,2],[1,2,3,1]],[[0,1,0,1],[2,2,2,2],[0,2,3,2],[1,2,2,2]],[[0,1,0,1],[2,2,2,2],[0,3,3,3],[1,1,2,1]],[[0,1,0,1],[2,2,2,2],[0,3,3,2],[1,1,3,1]],[[0,1,0,1],[2,2,2,2],[0,3,3,2],[1,1,2,2]],[[0,1,0,1],[2,2,2,2],[1,2,3,3],[0,2,2,1]],[[0,1,0,1],[2,2,2,2],[1,2,3,2],[0,2,3,1]],[[0,1,0,1],[2,2,2,2],[1,2,3,2],[0,2,2,2]],[[0,1,0,1],[2,2,2,2],[1,3,3,3],[0,1,2,1]],[[0,1,0,1],[2,2,2,2],[1,3,3,2],[0,1,3,1]],[[0,1,0,1],[2,2,2,2],[1,3,3,2],[0,1,2,2]],[[1,2,2,1],[2,4,2,1],[0,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,3,2,1],[0,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,2,1],[0,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,2,1],[0,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,2,1],[0,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,4,2,1],[0,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,3,2,1],[0,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,3,2,1],[0,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,2,1],[0,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,2,1],[0,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,4,2,1],[0,2,3,1],[0,2,1,0]],[[0,1,0,1],[2,2,3,3],[0,1,3,2],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,1,3,3],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,1,3,2],[1,2,3,1]],[[0,1,0,1],[2,2,3,2],[0,1,3,2],[1,2,2,2]],[[0,1,0,1],[2,2,3,3],[0,2,2,2],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,2,2,3],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,2,2,2],[2,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,2,2,2],[1,3,2,1]],[[0,1,0,1],[2,2,3,2],[0,2,2,2],[1,2,3,1]],[[0,1,0,1],[2,2,3,2],[0,2,2,2],[1,2,2,2]],[[0,1,0,1],[2,2,3,2],[0,2,4,1],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,2,3,1],[2,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,2,3,1],[1,3,2,1]],[[0,1,0,1],[2,2,3,2],[0,2,3,1],[1,2,3,1]],[[0,1,0,1],[2,2,3,2],[0,2,3,1],[1,2,2,2]],[[0,1,0,1],[2,2,3,3],[0,2,3,2],[1,2,1,1]],[[0,1,0,1],[2,2,3,2],[0,2,4,2],[1,2,1,1]],[[0,1,0,1],[2,2,3,2],[0,2,3,3],[1,2,1,1]],[[0,1,0,1],[2,2,3,2],[0,2,3,2],[1,2,1,2]],[[0,1,0,1],[2,2,3,3],[0,2,3,2],[1,2,2,0]],[[0,1,0,1],[2,2,3,2],[0,2,4,2],[1,2,2,0]],[[0,1,0,1],[2,2,3,2],[0,2,3,3],[1,2,2,0]],[[0,1,0,1],[2,2,3,2],[0,2,3,2],[2,2,2,0]],[[0,1,0,1],[2,2,3,2],[0,2,3,2],[1,3,2,0]],[[0,1,0,1],[2,2,3,2],[0,2,3,2],[1,2,3,0]],[[0,1,0,1],[2,2,3,3],[0,3,1,2],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,4,1,2],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,1,3],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,1,2],[2,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,1,2],[1,3,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,1,2],[1,2,3,1]],[[0,1,0,1],[2,2,3,2],[0,3,1,2],[1,2,2,2]],[[0,1,0,1],[2,2,3,2],[0,4,2,1],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,2,1],[2,2,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,2,1],[1,3,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,2,1],[1,2,3,1]],[[0,1,0,1],[2,2,3,2],[0,3,2,1],[1,2,2,2]],[[0,1,0,1],[2,2,3,3],[0,3,2,2],[1,1,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,2,3],[1,1,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,2,2],[1,1,3,1]],[[0,1,0,1],[2,2,3,2],[0,3,2,2],[1,1,2,2]],[[0,1,0,1],[2,2,3,2],[0,4,2,2],[1,2,2,0]],[[0,1,0,1],[2,2,3,2],[0,3,2,2],[2,2,2,0]],[[0,1,0,1],[2,2,3,2],[0,3,2,2],[1,3,2,0]],[[0,1,0,1],[2,2,3,2],[0,3,2,2],[1,2,3,0]],[[0,1,0,1],[2,2,3,2],[0,4,3,1],[1,1,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,4,1],[1,1,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,1],[1,1,3,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,1],[1,1,2,2]],[[0,1,0,1],[2,2,3,2],[0,4,3,1],[1,2,1,1]],[[0,1,0,1],[2,2,3,2],[0,3,4,1],[1,2,1,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,1],[2,2,1,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,1],[1,3,1,1]],[[0,1,0,1],[2,2,3,3],[0,3,3,2],[1,0,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,4,2],[1,0,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,3],[1,0,2,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,2],[1,0,2,2]],[[0,1,0,1],[2,2,3,3],[0,3,3,2],[1,1,1,1]],[[0,1,0,1],[2,2,3,2],[0,4,3,2],[1,1,1,1]],[[0,1,0,1],[2,2,3,2],[0,3,4,2],[1,1,1,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,3],[1,1,1,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,2],[1,1,1,2]],[[0,1,0,1],[2,2,3,3],[0,3,3,2],[1,1,2,0]],[[0,1,0,1],[2,2,3,2],[0,4,3,2],[1,1,2,0]],[[0,1,0,1],[2,2,3,2],[0,3,4,2],[1,1,2,0]],[[0,1,0,1],[2,2,3,2],[0,3,3,3],[1,1,2,0]],[[0,1,0,1],[2,2,3,2],[0,3,3,2],[1,1,3,0]],[[0,1,0,1],[2,2,3,3],[0,3,3,2],[1,2,0,1]],[[0,1,0,1],[2,2,3,2],[0,4,3,2],[1,2,0,1]],[[0,1,0,1],[2,2,3,2],[0,3,4,2],[1,2,0,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,3],[1,2,0,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,2],[2,2,0,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,2],[1,3,0,1]],[[0,1,0,1],[2,2,3,2],[0,3,3,2],[1,2,0,2]],[[0,1,0,1],[2,2,3,3],[0,3,3,2],[1,2,1,0]],[[0,1,0,1],[2,2,3,2],[0,4,3,2],[1,2,1,0]],[[0,1,0,1],[2,2,3,2],[0,3,4,2],[1,2,1,0]],[[0,1,0,1],[2,2,3,2],[0,3,3,3],[1,2,1,0]],[[0,1,0,1],[2,2,3,2],[0,3,3,2],[2,2,1,0]],[[0,1,0,1],[2,2,3,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,2],[2,3,2,1],[0,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,2,1],[0,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,2,1],[0,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,2,1],[0,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,4,2,1],[0,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,3,2,1],[0,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,2,1],[0,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,2,1],[0,2,3,1],[0,2,0,1]],[[0,1,0,1],[2,2,3,3],[1,1,3,2],[0,2,2,1]],[[0,1,0,1],[2,2,3,2],[1,1,3,3],[0,2,2,1]],[[0,1,0,1],[2,2,3,2],[1,1,3,2],[0,2,3,1]],[[0,1,0,1],[2,2,3,2],[1,1,3,2],[0,2,2,2]],[[0,1,0,1],[2,2,3,3],[1,2,2,2],[0,2,2,1]],[[0,1,0,1],[2,2,3,2],[1,2,2,3],[0,2,2,1]],[[0,1,0,1],[2,2,3,2],[1,2,2,2],[0,3,2,1]],[[0,1,0,1],[2,2,3,2],[1,2,2,2],[0,2,3,1]],[[0,1,0,1],[2,2,3,2],[1,2,2,2],[0,2,2,2]],[[0,1,0,1],[2,2,3,2],[1,2,4,1],[0,2,2,1]],[[0,1,0,1],[2,2,3,2],[1,2,3,1],[0,3,2,1]],[[0,1,0,1],[2,2,3,2],[1,2,3,1],[0,2,3,1]],[[0,1,0,1],[2,2,3,2],[1,2,3,1],[0,2,2,2]],[[0,1,0,1],[2,2,3,3],[1,2,3,2],[0,2,1,1]],[[0,1,0,1],[2,2,3,2],[1,2,4,2],[0,2,1,1]],[[0,1,0,1],[2,2,3,2],[1,2,3,3],[0,2,1,1]],[[0,1,0,1],[2,2,3,2],[1,2,3,2],[0,2,1,2]],[[0,1,0,1],[2,2,3,3],[1,2,3,2],[0,2,2,0]],[[0,1,0,1],[2,2,3,2],[1,2,4,2],[0,2,2,0]],[[0,1,0,1],[2,2,3,2],[1,2,3,3],[0,2,2,0]],[[0,1,0,1],[2,2,3,2],[1,2,3,2],[0,3,2,0]],[[0,1,0,1],[2,2,3,2],[1,2,3,2],[0,2,3,0]],[[2,2,2,1],[2,3,2,1],[0,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,4,2,1],[0,2,3,1],[0,1,2,0]],[[0,1,0,1],[2,2,3,3],[1,3,1,2],[0,2,2,1]],[[0,1,0,1],[2,2,3,2],[1,4,1,2],[0,2,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,1,3],[0,2,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,1,2],[0,3,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,1,2],[0,2,3,1]],[[0,1,0,1],[2,2,3,2],[1,3,1,2],[0,2,2,2]],[[0,1,0,1],[2,2,3,2],[1,4,2,1],[0,2,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,2,1],[0,3,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,2,1],[0,2,3,1]],[[0,1,0,1],[2,2,3,2],[1,3,2,1],[0,2,2,2]],[[0,1,0,1],[2,2,3,3],[1,3,2,2],[0,1,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,2,3],[0,1,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,2,2],[0,1,3,1]],[[0,1,0,1],[2,2,3,2],[1,3,2,2],[0,1,2,2]],[[0,1,0,1],[2,2,3,2],[1,4,2,2],[0,2,2,0]],[[0,1,0,1],[2,2,3,2],[1,3,2,2],[0,3,2,0]],[[0,1,0,1],[2,2,3,2],[1,3,2,2],[0,2,3,0]],[[0,1,0,1],[2,2,3,3],[1,3,2,2],[1,0,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,2,3],[1,0,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,2,2],[1,0,3,1]],[[0,1,0,1],[2,2,3,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,2],[2,3,2,1],[0,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,2,1],[0,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,2,1],[0,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,2,1],[0,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,4,2,1],[0,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,3,2,1],[0,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,2,1],[0,2,3,1],[0,1,1,1]],[[0,1,0,1],[2,2,3,2],[1,4,3,1],[0,1,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,4,1],[0,1,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,1],[0,1,3,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,1],[0,1,2,2]],[[0,1,0,1],[2,2,3,2],[1,4,3,1],[0,2,1,1]],[[0,1,0,1],[2,2,3,2],[1,3,4,1],[0,2,1,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,1],[0,3,1,1]],[[0,1,0,1],[2,2,3,2],[1,4,3,1],[1,0,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,4,1],[1,0,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,1],[1,0,3,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,1],[1,0,2,2]],[[1,3,2,1],[2,3,2,1],[0,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,2,1],[0,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,4,2,1],[0,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,3,2,1],[0,2,3,1],[0,0,2,1]],[[1,2,3,1],[2,3,2,1],[0,2,3,1],[0,0,2,1]],[[1,3,2,1],[2,3,2,1],[0,2,3,1],[0,0,2,1]],[[0,1,0,1],[2,2,3,3],[1,3,3,2],[0,0,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,4,2],[0,0,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,3],[0,0,2,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,2],[0,0,2,2]],[[0,1,0,1],[2,2,3,3],[1,3,3,2],[0,1,1,1]],[[0,1,0,1],[2,2,3,2],[1,4,3,2],[0,1,1,1]],[[0,1,0,1],[2,2,3,2],[1,3,4,2],[0,1,1,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,3],[0,1,1,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,2],[0,1,1,2]],[[0,1,0,1],[2,2,3,3],[1,3,3,2],[0,1,2,0]],[[0,1,0,1],[2,2,3,2],[1,4,3,2],[0,1,2,0]],[[0,1,0,1],[2,2,3,2],[1,3,4,2],[0,1,2,0]],[[0,1,0,1],[2,2,3,2],[1,3,3,3],[0,1,2,0]],[[0,1,0,1],[2,2,3,2],[1,3,3,2],[0,1,3,0]],[[0,1,0,1],[2,2,3,3],[1,3,3,2],[0,2,0,1]],[[0,1,0,1],[2,2,3,2],[1,4,3,2],[0,2,0,1]],[[0,1,0,1],[2,2,3,2],[1,3,4,2],[0,2,0,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,3],[0,2,0,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,2],[0,3,0,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,2],[0,2,0,2]],[[0,1,0,1],[2,2,3,3],[1,3,3,2],[0,2,1,0]],[[0,1,0,1],[2,2,3,2],[1,4,3,2],[0,2,1,0]],[[0,1,0,1],[2,2,3,2],[1,3,4,2],[0,2,1,0]],[[0,1,0,1],[2,2,3,2],[1,3,3,3],[0,2,1,0]],[[0,1,0,1],[2,2,3,2],[1,3,3,2],[0,3,1,0]],[[2,2,2,1],[2,3,2,1],[0,2,3,1],[0,0,2,1]],[[0,1,0,1],[2,2,3,3],[1,3,3,2],[1,0,1,1]],[[0,1,0,1],[2,2,3,2],[1,4,3,2],[1,0,1,1]],[[0,1,0,1],[2,2,3,2],[1,3,4,2],[1,0,1,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,3],[1,0,1,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,2],[1,0,1,2]],[[0,1,0,1],[2,2,3,3],[1,3,3,2],[1,0,2,0]],[[0,1,0,1],[2,2,3,2],[1,4,3,2],[1,0,2,0]],[[0,1,0,1],[2,2,3,2],[1,3,4,2],[1,0,2,0]],[[0,1,0,1],[2,2,3,2],[1,3,3,3],[1,0,2,0]],[[0,1,0,1],[2,2,3,2],[1,3,3,2],[1,0,3,0]],[[0,1,0,1],[2,2,3,3],[1,3,3,2],[1,1,0,1]],[[0,1,0,1],[2,2,3,2],[1,4,3,2],[1,1,0,1]],[[0,1,0,1],[2,2,3,2],[1,3,4,2],[1,1,0,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,3],[1,1,0,1]],[[0,1,0,1],[2,2,3,2],[1,3,3,2],[1,1,0,2]],[[0,1,0,1],[2,2,3,3],[1,3,3,2],[1,1,1,0]],[[0,1,0,1],[2,2,3,2],[1,4,3,2],[1,1,1,0]],[[0,1,0,1],[2,2,3,2],[1,3,4,2],[1,1,1,0]],[[0,1,0,1],[2,2,3,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,4,2,1],[0,2,3,0],[1,1,1,1]],[[1,2,2,2],[2,3,2,1],[0,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,3,2,1],[0,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,2,1],[0,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,2,1],[0,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,4,2,1],[0,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,3,2,1],[0,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,3,2,1],[0,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,2,1],[0,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,2,1],[0,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,4,2,1],[0,2,3,0],[0,2,1,1]],[[1,2,2,2],[2,3,2,1],[0,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,3,2,1],[0,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,2,1],[0,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,2,1],[0,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,4,2,1],[0,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,3,2,1],[0,2,3,0],[0,1,2,1]],[[0,1,0,1],[2,2,3,3],[2,0,2,2],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[3,0,2,2],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[2,0,2,3],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[2,0,2,2],[2,2,2,1]],[[0,1,0,1],[2,2,3,2],[2,0,2,2],[1,3,2,1]],[[0,1,0,1],[2,2,3,2],[2,0,2,2],[1,2,3,1]],[[0,1,0,1],[2,2,3,2],[2,0,2,2],[1,2,2,2]],[[0,1,0,1],[2,2,3,2],[3,0,3,1],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[2,0,4,1],[1,2,2,1]],[[0,1,0,1],[2,2,3,2],[2,0,3,1],[2,2,2,1]],[[0,1,0,1],[2,2,3,2],[2,0,3,1],[1,3,2,1]],[[0,1,0,1],[2,2,3,2],[2,0,3,1],[1,2,3,1]],[[0,1,0,1],[2,2,3,2],[2,0,3,1],[1,2,2,2]],[[0,1,0,1],[2,2,3,3],[2,0,3,2],[1,2,1,1]],[[0,1,0,1],[2,2,3,2],[2,0,4,2],[1,2,1,1]],[[0,1,0,1],[2,2,3,2],[2,0,3,3],[1,2,1,1]],[[0,1,0,1],[2,2,3,2],[2,0,3,2],[1,2,1,2]],[[0,1,0,1],[2,2,3,3],[2,0,3,2],[1,2,2,0]],[[0,1,0,1],[2,2,3,2],[3,0,3,2],[1,2,2,0]],[[0,1,0,1],[2,2,3,2],[2,0,4,2],[1,2,2,0]],[[0,1,0,1],[2,2,3,2],[2,0,3,3],[1,2,2,0]],[[0,1,0,1],[2,2,3,2],[2,0,3,2],[2,2,2,0]],[[0,1,0,1],[2,2,3,2],[2,0,3,2],[1,3,2,0]],[[0,1,0,1],[2,2,3,2],[2,0,3,2],[1,2,3,0]],[[1,2,3,1],[2,3,2,1],[0,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,2,1],[0,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,2,1],[0,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,4,2,1],[0,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,1],[0,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,1],[0,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,1],[0,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,1],[0,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,4,2,1],[0,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,1],[0,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,1],[0,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,2,1],[0,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,1],[0,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,4,2,1],[0,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,1],[0,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,1],[0,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,1],[0,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,1],[0,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,4,2,1],[0,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,1],[0,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,1],[0,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,1],[0,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,1],[0,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,4,2,1],[0,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,1],[0,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,1],[0,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,1],[0,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,1],[0,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,4,2,1],[0,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,1],[0,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,1],[0,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,1],[0,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,2,1],[0,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,4,2,1],[0,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,1],[0,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,1],[0,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,1],[0,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,1],[0,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,4,2,1],[0,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,1],[0,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,1],[0,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,1],[0,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,1],[0,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,4,2,1],[0,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,3,2,1],[0,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,3,2,1],[0,2,2,2],[0,0,2,1]],[[1,3,2,1],[2,3,2,1],[0,2,2,2],[0,0,2,1]],[[2,2,2,1],[2,3,2,1],[0,2,2,2],[0,0,2,1]],[[1,2,2,1],[2,4,2,1],[0,2,1,2],[1,0,2,1]],[[1,2,2,2],[2,3,2,1],[0,2,1,2],[1,0,2,1]],[[1,2,3,1],[2,3,2,1],[0,2,1,2],[1,0,2,1]],[[1,3,2,1],[2,3,2,1],[0,2,1,2],[1,0,2,1]],[[2,2,2,1],[2,3,2,1],[0,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,4,2,1],[0,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,3,2,1],[0,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,3,2,1],[0,2,1,2],[0,1,2,1]],[[1,3,2,1],[2,3,2,1],[0,2,1,2],[0,1,2,1]],[[2,2,2,1],[2,3,2,1],[0,2,1,2],[0,1,2,1]],[[1,2,2,1],[2,4,2,1],[0,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,3,2,1],[0,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,3,2,1],[0,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,2,1],[0,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,2,1],[0,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,4,2,1],[0,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,3,2,1],[0,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,3,2,1],[0,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,3,2,1],[0,1,3,1],[0,2,2,0]],[[2,2,2,1],[2,3,2,1],[0,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,4,2,1],[0,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,3,2,1],[0,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,3,2,1],[0,1,3,1],[0,2,1,1]],[[1,3,2,1],[2,3,2,1],[0,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,3,2,1],[0,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,4,2,1],[0,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,3,2,1],[0,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,3,2,1],[0,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,3,2,1],[0,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,3,2,1],[0,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,4,2,1],[0,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,3,2,1],[0,1,2,2],[0,2,2,0]],[[1,2,3,1],[2,3,2,1],[0,1,2,2],[0,2,2,0]],[[1,3,2,1],[2,3,2,1],[0,1,2,2],[0,2,2,0]],[[2,2,2,1],[2,3,2,1],[0,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,4,2,1],[0,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,3,2,1],[0,1,2,2],[0,2,1,1]],[[1,2,3,1],[2,3,2,1],[0,1,2,2],[0,2,1,1]],[[1,3,2,1],[2,3,2,1],[0,1,2,2],[0,2,1,1]],[[2,2,2,1],[2,3,2,1],[0,1,2,2],[0,2,1,1]],[[1,2,2,1],[2,4,2,1],[0,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,3,2,1],[0,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,3,2,1],[0,1,1,2],[0,2,2,1]],[[1,3,2,1],[2,3,2,1],[0,1,1,2],[0,2,2,1]],[[2,2,2,1],[2,3,2,1],[0,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,3,2,0],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[3,3,2,0],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[2,3,2,0],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[2,3,2,0],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[2,3,2,0],[3,3,3,0],[1,0,1,0]],[[1,2,2,1],[3,3,2,0],[2,3,3,0],[1,0,1,0]],[[1,3,2,1],[2,3,2,0],[2,3,3,0],[1,0,1,0]],[[2,2,2,1],[2,3,2,0],[2,3,3,0],[1,0,1,0]],[[0,1,0,1],[2,3,3,3],[0,0,3,2],[1,2,2,1]],[[0,1,0,1],[2,3,3,2],[0,0,3,3],[1,2,2,1]],[[0,1,0,1],[2,3,3,2],[0,0,3,2],[1,2,3,1]],[[0,1,0,1],[2,3,3,2],[0,0,3,2],[1,2,2,2]],[[0,1,0,1],[2,3,3,3],[0,1,2,2],[1,2,2,1]],[[0,1,0,1],[2,3,3,2],[0,1,2,3],[1,2,2,1]],[[0,1,0,1],[2,3,3,2],[0,1,2,2],[2,2,2,1]],[[0,1,0,1],[2,3,3,2],[0,1,2,2],[1,3,2,1]],[[0,1,0,1],[2,3,3,2],[0,1,2,2],[1,2,3,1]],[[0,1,0,1],[2,3,3,2],[0,1,2,2],[1,2,2,2]],[[0,1,0,1],[2,3,3,2],[0,1,4,1],[1,2,2,1]],[[0,1,0,1],[2,3,3,2],[0,1,3,1],[2,2,2,1]],[[0,1,0,1],[2,3,3,2],[0,1,3,1],[1,3,2,1]],[[0,1,0,1],[2,3,3,2],[0,1,3,1],[1,2,3,1]],[[0,1,0,1],[2,3,3,2],[0,1,3,1],[1,2,2,2]],[[0,1,0,1],[2,3,3,3],[0,1,3,2],[1,2,1,1]],[[0,1,0,1],[2,3,3,2],[0,1,4,2],[1,2,1,1]],[[0,1,0,1],[2,3,3,2],[0,1,3,3],[1,2,1,1]],[[0,1,0,1],[2,3,3,2],[0,1,3,2],[1,2,1,2]],[[0,1,0,1],[2,3,3,3],[0,1,3,2],[1,2,2,0]],[[0,1,0,1],[2,3,3,2],[0,1,4,2],[1,2,2,0]],[[0,1,0,1],[2,3,3,2],[0,1,3,3],[1,2,2,0]],[[0,1,0,1],[2,3,3,2],[0,1,3,2],[2,2,2,0]],[[0,1,0,1],[2,3,3,2],[0,1,3,2],[1,3,2,0]],[[0,1,0,1],[2,3,3,2],[0,1,3,2],[1,2,3,0]],[[0,1,0,1],[2,3,3,3],[0,2,2,2],[1,1,2,1]],[[0,1,0,1],[2,3,3,2],[0,2,2,3],[1,1,2,1]],[[0,1,0,1],[2,3,3,2],[0,2,2,2],[1,1,3,1]],[[0,1,0,1],[2,3,3,2],[0,2,2,2],[1,1,2,2]],[[0,1,0,1],[2,3,3,2],[0,2,4,1],[1,1,2,1]],[[0,1,0,1],[2,3,3,2],[0,2,3,1],[1,1,3,1]],[[0,1,0,1],[2,3,3,2],[0,2,3,1],[1,1,2,2]],[[0,1,0,1],[2,3,3,3],[0,2,3,2],[1,0,2,1]],[[0,1,0,1],[2,3,3,2],[0,2,4,2],[1,0,2,1]],[[0,1,0,1],[2,3,3,2],[0,2,3,3],[1,0,2,1]],[[0,1,0,1],[2,3,3,2],[0,2,3,2],[1,0,2,2]],[[0,1,0,1],[2,3,3,3],[0,2,3,2],[1,1,1,1]],[[0,1,0,1],[2,3,3,2],[0,2,4,2],[1,1,1,1]],[[0,1,0,1],[2,3,3,2],[0,2,3,3],[1,1,1,1]],[[0,1,0,1],[2,3,3,2],[0,2,3,2],[1,1,1,2]],[[0,1,0,1],[2,3,3,3],[0,2,3,2],[1,1,2,0]],[[0,1,0,1],[2,3,3,2],[0,2,4,2],[1,1,2,0]],[[0,1,0,1],[2,3,3,2],[0,2,3,3],[1,1,2,0]],[[0,1,0,1],[2,3,3,2],[0,2,3,2],[1,1,3,0]],[[0,1,0,1],[2,3,3,3],[0,2,3,2],[1,2,0,1]],[[0,1,0,1],[2,3,3,2],[0,2,4,2],[1,2,0,1]],[[0,1,0,1],[2,3,3,2],[0,2,3,3],[1,2,0,1]],[[0,1,0,1],[2,3,3,2],[0,2,3,2],[1,2,0,2]],[[0,1,0,1],[2,3,3,3],[0,2,3,2],[1,2,1,0]],[[0,1,0,1],[2,3,3,2],[0,2,4,2],[1,2,1,0]],[[0,1,0,1],[2,3,3,2],[0,2,3,3],[1,2,1,0]],[[0,1,0,1],[2,3,3,3],[0,3,2,2],[0,1,2,1]],[[0,1,0,1],[2,3,3,2],[0,3,2,3],[0,1,2,1]],[[0,1,0,1],[2,3,3,2],[0,3,2,2],[0,1,3,1]],[[0,1,0,1],[2,3,3,2],[0,3,2,2],[0,1,2,2]],[[0,1,0,1],[2,3,3,2],[0,3,4,1],[0,1,2,1]],[[0,1,0,1],[2,3,3,2],[0,3,3,1],[0,1,3,1]],[[0,1,0,1],[2,3,3,2],[0,3,3,1],[0,1,2,2]],[[1,2,2,1],[2,3,2,0],[3,3,2,1],[1,0,1,0]],[[0,1,0,1],[2,3,3,3],[0,3,3,2],[0,0,2,1]],[[0,1,0,1],[2,3,3,2],[0,3,4,2],[0,0,2,1]],[[0,1,0,1],[2,3,3,2],[0,3,3,3],[0,0,2,1]],[[0,1,0,1],[2,3,3,2],[0,3,3,2],[0,0,2,2]],[[0,1,0,1],[2,3,3,3],[0,3,3,2],[0,1,1,1]],[[0,1,0,1],[2,3,3,2],[0,3,4,2],[0,1,1,1]],[[0,1,0,1],[2,3,3,2],[0,3,3,3],[0,1,1,1]],[[0,1,0,1],[2,3,3,2],[0,3,3,2],[0,1,1,2]],[[0,1,0,1],[2,3,3,3],[0,3,3,2],[0,1,2,0]],[[0,1,0,1],[2,3,3,2],[0,3,4,2],[0,1,2,0]],[[0,1,0,1],[2,3,3,2],[0,3,3,3],[0,1,2,0]],[[0,1,0,1],[2,3,3,2],[0,3,3,2],[0,1,3,0]],[[0,1,0,1],[2,3,3,3],[0,3,3,2],[0,2,0,1]],[[0,1,0,1],[2,3,3,2],[0,3,4,2],[0,2,0,1]],[[0,1,0,1],[2,3,3,2],[0,3,3,3],[0,2,0,1]],[[0,1,0,1],[2,3,3,2],[0,3,3,2],[0,2,0,2]],[[0,1,0,1],[2,3,3,3],[0,3,3,2],[0,2,1,0]],[[0,1,0,1],[2,3,3,2],[0,3,4,2],[0,2,1,0]],[[0,1,0,1],[2,3,3,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[2,3,2,0],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[2,3,2,0],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,3,2,0],[3,3,2,1],[1,0,0,1]],[[1,2,2,1],[3,3,2,0],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[2,3,2,0],[2,3,2,1],[1,0,0,1]],[[2,2,2,1],[2,3,2,0],[2,3,2,1],[1,0,0,1]],[[1,2,2,1],[2,3,2,0],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[2,3,2,0],[3,3,2,0],[1,2,0,0]],[[1,2,2,1],[3,3,2,0],[2,3,2,0],[1,2,0,0]],[[1,3,2,1],[2,3,2,0],[2,3,2,0],[1,2,0,0]],[[2,2,2,1],[2,3,2,0],[2,3,2,0],[1,2,0,0]],[[0,1,0,1],[2,3,3,3],[1,0,2,2],[1,2,2,1]],[[0,1,0,1],[2,3,3,2],[1,0,2,3],[1,2,2,1]],[[0,1,0,1],[2,3,3,2],[1,0,2,2],[2,2,2,1]],[[0,1,0,1],[2,3,3,2],[1,0,2,2],[1,3,2,1]],[[0,1,0,1],[2,3,3,2],[1,0,2,2],[1,2,3,1]],[[0,1,0,1],[2,3,3,2],[1,0,2,2],[1,2,2,2]],[[0,1,0,1],[2,3,3,2],[1,0,4,1],[1,2,2,1]],[[0,1,0,1],[2,3,3,2],[1,0,3,1],[2,2,2,1]],[[0,1,0,1],[2,3,3,2],[1,0,3,1],[1,3,2,1]],[[0,1,0,1],[2,3,3,2],[1,0,3,1],[1,2,3,1]],[[0,1,0,1],[2,3,3,2],[1,0,3,1],[1,2,2,2]],[[0,1,0,1],[2,3,3,3],[1,0,3,2],[0,2,2,1]],[[0,1,0,1],[2,3,3,2],[1,0,3,3],[0,2,2,1]],[[0,1,0,1],[2,3,3,2],[1,0,3,2],[0,2,3,1]],[[0,1,0,1],[2,3,3,2],[1,0,3,2],[0,2,2,2]],[[0,1,0,1],[2,3,3,3],[1,0,3,2],[1,2,1,1]],[[0,1,0,1],[2,3,3,2],[1,0,4,2],[1,2,1,1]],[[0,1,0,1],[2,3,3,2],[1,0,3,3],[1,2,1,1]],[[0,1,0,1],[2,3,3,2],[1,0,3,2],[1,2,1,2]],[[0,1,0,1],[2,3,3,3],[1,0,3,2],[1,2,2,0]],[[0,1,0,1],[2,3,3,2],[1,0,4,2],[1,2,2,0]],[[0,1,0,1],[2,3,3,2],[1,0,3,3],[1,2,2,0]],[[0,1,0,1],[2,3,3,2],[1,0,3,2],[2,2,2,0]],[[0,1,0,1],[2,3,3,2],[1,0,3,2],[1,3,2,0]],[[0,1,0,1],[2,3,3,2],[1,0,3,2],[1,2,3,0]],[[0,1,0,1],[2,3,3,3],[1,1,2,2],[0,2,2,1]],[[0,1,0,1],[2,3,3,2],[1,1,2,3],[0,2,2,1]],[[0,1,0,1],[2,3,3,2],[1,1,2,2],[0,3,2,1]],[[0,1,0,1],[2,3,3,2],[1,1,2,2],[0,2,3,1]],[[0,1,0,1],[2,3,3,2],[1,1,2,2],[0,2,2,2]],[[0,1,0,1],[2,3,3,2],[1,1,4,1],[0,2,2,1]],[[0,1,0,1],[2,3,3,2],[1,1,3,1],[0,3,2,1]],[[0,1,0,1],[2,3,3,2],[1,1,3,1],[0,2,3,1]],[[0,1,0,1],[2,3,3,2],[1,1,3,1],[0,2,2,2]],[[0,1,0,1],[2,3,3,3],[1,1,3,2],[0,2,1,1]],[[0,1,0,1],[2,3,3,2],[1,1,4,2],[0,2,1,1]],[[0,1,0,1],[2,3,3,2],[1,1,3,3],[0,2,1,1]],[[0,1,0,1],[2,3,3,2],[1,1,3,2],[0,2,1,2]],[[0,1,0,1],[2,3,3,3],[1,1,3,2],[0,2,2,0]],[[0,1,0,1],[2,3,3,2],[1,1,4,2],[0,2,2,0]],[[0,1,0,1],[2,3,3,2],[1,1,3,3],[0,2,2,0]],[[0,1,0,1],[2,3,3,2],[1,1,3,2],[0,3,2,0]],[[0,1,0,1],[2,3,3,2],[1,1,3,2],[0,2,3,0]],[[0,1,0,1],[2,3,3,3],[1,2,2,2],[0,1,2,1]],[[0,1,0,1],[2,3,3,2],[1,2,2,3],[0,1,2,1]],[[0,1,0,1],[2,3,3,2],[1,2,2,2],[0,1,3,1]],[[0,1,0,1],[2,3,3,2],[1,2,2,2],[0,1,2,2]],[[0,1,0,1],[2,3,3,3],[1,2,2,2],[1,0,2,1]],[[0,1,0,1],[2,3,3,2],[1,2,2,3],[1,0,2,1]],[[0,1,0,1],[2,3,3,2],[1,2,2,2],[1,0,3,1]],[[0,1,0,1],[2,3,3,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,3,2,0],[2,3,2,0],[2,1,1,0]],[[1,2,2,1],[2,3,2,0],[3,3,2,0],[1,1,1,0]],[[1,2,2,1],[3,3,2,0],[2,3,2,0],[1,1,1,0]],[[1,3,2,1],[2,3,2,0],[2,3,2,0],[1,1,1,0]],[[0,1,0,1],[2,3,3,2],[1,2,4,1],[0,1,2,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,1],[0,1,3,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,1],[0,1,2,2]],[[0,1,0,1],[2,3,3,2],[1,2,4,1],[1,0,2,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,1],[1,0,3,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,1],[1,0,2,2]],[[2,2,2,1],[2,3,2,0],[2,3,2,0],[1,1,1,0]],[[0,1,0,1],[2,3,3,3],[1,2,3,2],[0,0,2,1]],[[0,1,0,1],[2,3,3,2],[1,2,4,2],[0,0,2,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,3],[0,0,2,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,2],[0,0,2,2]],[[0,1,0,1],[2,3,3,3],[1,2,3,2],[0,1,1,1]],[[0,1,0,1],[2,3,3,2],[1,2,4,2],[0,1,1,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,3],[0,1,1,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,2],[0,1,1,2]],[[0,1,0,1],[2,3,3,3],[1,2,3,2],[0,1,2,0]],[[0,1,0,1],[2,3,3,2],[1,2,4,2],[0,1,2,0]],[[0,1,0,1],[2,3,3,2],[1,2,3,3],[0,1,2,0]],[[0,1,0,1],[2,3,3,2],[1,2,3,2],[0,1,3,0]],[[0,1,0,1],[2,3,3,3],[1,2,3,2],[0,2,0,1]],[[0,1,0,1],[2,3,3,2],[1,2,4,2],[0,2,0,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,3],[0,2,0,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,2],[0,2,0,2]],[[0,1,0,1],[2,3,3,3],[1,2,3,2],[0,2,1,0]],[[0,1,0,1],[2,3,3,2],[1,2,4,2],[0,2,1,0]],[[0,1,0,1],[2,3,3,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,3,2,0],[3,3,2,0],[1,0,1,1]],[[1,2,2,1],[3,3,2,0],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,3,2,0],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,3,2,0],[2,3,2,0],[1,0,1,1]],[[0,1,0,1],[2,3,3,3],[1,2,3,2],[1,0,1,1]],[[0,1,0,1],[2,3,3,2],[1,2,4,2],[1,0,1,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,3],[1,0,1,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,2],[1,0,1,2]],[[0,1,0,1],[2,3,3,3],[1,2,3,2],[1,0,2,0]],[[0,1,0,1],[2,3,3,2],[1,2,4,2],[1,0,2,0]],[[0,1,0,1],[2,3,3,2],[1,2,3,3],[1,0,2,0]],[[0,1,0,1],[2,3,3,2],[1,2,3,2],[1,0,3,0]],[[0,1,0,1],[2,3,3,3],[1,2,3,2],[1,1,0,1]],[[0,1,0,1],[2,3,3,2],[1,2,4,2],[1,1,0,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,3],[1,1,0,1]],[[0,1,0,1],[2,3,3,2],[1,2,3,2],[1,1,0,2]],[[0,1,0,1],[2,3,3,3],[1,2,3,2],[1,1,1,0]],[[0,1,0,1],[2,3,3,2],[1,2,4,2],[1,1,1,0]],[[0,1,0,1],[2,3,3,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,3,2,0],[3,3,2,0],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,3,2,0],[2,3,2,0],[0,2,1,0]],[[2,2,2,1],[2,3,2,0],[2,3,2,0],[0,2,1,0]],[[1,2,2,1],[2,3,2,0],[2,3,1,1],[2,2,0,0]],[[1,2,2,1],[2,3,2,0],[3,3,1,1],[1,2,0,0]],[[1,2,2,1],[3,3,2,0],[2,3,1,1],[1,2,0,0]],[[1,3,2,1],[2,3,2,0],[2,3,1,1],[1,2,0,0]],[[2,2,2,1],[2,3,2,0],[2,3,1,1],[1,2,0,0]],[[0,1,0,1],[2,3,3,3],[1,3,3,2],[0,0,1,1]],[[0,1,0,1],[2,3,3,2],[1,3,4,2],[0,0,1,1]],[[0,1,0,1],[2,3,3,2],[1,3,3,3],[0,0,1,1]],[[0,1,0,1],[2,3,3,2],[1,3,3,2],[0,0,1,2]],[[0,1,0,1],[2,3,3,3],[1,3,3,2],[0,0,2,0]],[[0,1,0,1],[2,3,3,2],[1,3,4,2],[0,0,2,0]],[[0,1,0,1],[2,3,3,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,3,2,0],[2,3,1,1],[2,1,1,0]],[[1,2,2,1],[2,3,2,0],[3,3,1,1],[1,1,1,0]],[[1,2,2,1],[3,3,2,0],[2,3,1,1],[1,1,1,0]],[[1,3,2,1],[2,3,2,0],[2,3,1,1],[1,1,1,0]],[[2,2,2,1],[2,3,2,0],[2,3,1,1],[1,1,1,0]],[[1,2,2,1],[2,3,2,0],[3,3,1,1],[1,1,0,1]],[[1,2,2,1],[3,3,2,0],[2,3,1,1],[1,1,0,1]],[[1,3,2,1],[2,3,2,0],[2,3,1,1],[1,1,0,1]],[[2,2,2,1],[2,3,2,0],[2,3,1,1],[1,1,0,1]],[[1,2,2,1],[2,3,2,0],[3,3,1,1],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,3,1,1],[0,2,1,0]],[[1,3,2,1],[2,3,2,0],[2,3,1,1],[0,2,1,0]],[[2,2,2,1],[2,3,2,0],[2,3,1,1],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,3,1,1],[0,2,0,1]],[[1,3,2,1],[2,3,2,0],[2,3,1,1],[0,2,0,1]],[[2,2,2,1],[2,3,2,0],[2,3,1,1],[0,2,0,1]],[[1,2,2,1],[2,3,2,0],[2,3,1,0],[2,2,0,1]],[[1,2,2,1],[2,3,2,0],[3,3,1,0],[1,2,0,1]],[[1,2,2,1],[3,3,2,0],[2,3,1,0],[1,2,0,1]],[[1,3,2,1],[2,3,2,0],[2,3,1,0],[1,2,0,1]],[[2,2,2,1],[2,3,2,0],[2,3,1,0],[1,2,0,1]],[[1,2,2,1],[2,3,2,0],[2,3,1,0],[2,1,1,1]],[[1,2,2,1],[2,3,2,0],[3,3,1,0],[1,1,1,1]],[[1,2,2,1],[3,3,2,0],[2,3,1,0],[1,1,1,1]],[[1,3,2,1],[2,3,2,0],[2,3,1,0],[1,1,1,1]],[[2,2,2,1],[2,3,2,0],[2,3,1,0],[1,1,1,1]],[[1,2,2,1],[2,3,2,0],[3,3,1,0],[0,2,1,1]],[[1,2,2,1],[3,3,2,0],[2,3,1,0],[0,2,1,1]],[[1,3,2,1],[2,3,2,0],[2,3,1,0],[0,2,1,1]],[[2,2,2,1],[2,3,2,0],[2,3,1,0],[0,2,1,1]],[[0,1,0,1],[2,3,3,3],[2,0,2,2],[0,2,2,1]],[[0,1,0,1],[2,3,3,2],[2,0,2,3],[0,2,2,1]],[[0,1,0,1],[2,3,3,2],[2,0,2,2],[0,3,2,1]],[[0,1,0,1],[2,3,3,2],[2,0,2,2],[0,2,3,1]],[[0,1,0,1],[2,3,3,2],[2,0,2,2],[0,2,2,2]],[[0,1,0,1],[2,3,3,3],[2,0,2,2],[1,1,2,1]],[[0,1,0,1],[2,3,3,2],[2,0,2,3],[1,1,2,1]],[[0,1,0,1],[2,3,3,2],[2,0,2,2],[1,1,3,1]],[[0,1,0,1],[2,3,3,2],[2,0,2,2],[1,1,2,2]],[[0,1,0,1],[2,3,3,2],[2,0,4,1],[0,2,2,1]],[[0,1,0,1],[2,3,3,2],[2,0,3,1],[0,3,2,1]],[[0,1,0,1],[2,3,3,2],[2,0,3,1],[0,2,3,1]],[[0,1,0,1],[2,3,3,2],[2,0,3,1],[0,2,2,2]],[[0,1,0,1],[2,3,3,2],[2,0,4,1],[1,1,2,1]],[[0,1,0,1],[2,3,3,2],[2,0,3,1],[1,1,3,1]],[[0,1,0,1],[2,3,3,2],[2,0,3,1],[1,1,2,2]],[[0,1,0,1],[2,3,3,3],[2,0,3,2],[0,2,1,1]],[[0,1,0,1],[2,3,3,2],[2,0,4,2],[0,2,1,1]],[[0,1,0,1],[2,3,3,2],[2,0,3,3],[0,2,1,1]],[[0,1,0,1],[2,3,3,2],[2,0,3,2],[0,2,1,2]],[[0,1,0,1],[2,3,3,3],[2,0,3,2],[0,2,2,0]],[[0,1,0,1],[2,3,3,2],[2,0,4,2],[0,2,2,0]],[[0,1,0,1],[2,3,3,2],[2,0,3,3],[0,2,2,0]],[[0,1,0,1],[2,3,3,2],[2,0,3,2],[0,3,2,0]],[[0,1,0,1],[2,3,3,2],[2,0,3,2],[0,2,3,0]],[[0,1,0,1],[2,3,3,3],[2,0,3,2],[1,1,1,1]],[[0,1,0,1],[2,3,3,2],[2,0,4,2],[1,1,1,1]],[[0,1,0,1],[2,3,3,2],[2,0,3,3],[1,1,1,1]],[[0,1,0,1],[2,3,3,2],[2,0,3,2],[1,1,1,2]],[[0,1,0,1],[2,3,3,3],[2,0,3,2],[1,1,2,0]],[[0,1,0,1],[2,3,3,2],[2,0,4,2],[1,1,2,0]],[[0,1,0,1],[2,3,3,2],[2,0,3,3],[1,1,2,0]],[[0,1,0,1],[2,3,3,2],[2,0,3,2],[1,1,3,0]],[[0,1,0,1],[2,3,3,3],[2,0,3,2],[1,2,0,1]],[[0,1,0,1],[2,3,3,2],[2,0,4,2],[1,2,0,1]],[[0,1,0,1],[2,3,3,2],[2,0,3,3],[1,2,0,1]],[[0,1,0,1],[2,3,3,2],[2,0,3,2],[1,2,0,2]],[[0,1,0,1],[2,3,3,3],[2,0,3,2],[1,2,1,0]],[[0,1,0,1],[2,3,3,2],[2,0,4,2],[1,2,1,0]],[[0,1,0,1],[2,3,3,2],[2,0,3,3],[1,2,1,0]],[[0,1,0,1],[2,3,3,3],[2,1,2,2],[0,1,2,1]],[[0,1,0,1],[2,3,3,2],[2,1,2,3],[0,1,2,1]],[[0,1,0,1],[2,3,3,2],[2,1,2,2],[0,1,3,1]],[[0,1,0,1],[2,3,3,2],[2,1,2,2],[0,1,2,2]],[[0,1,0,1],[2,3,3,3],[2,1,2,2],[1,0,2,1]],[[0,1,0,1],[2,3,3,2],[2,1,2,3],[1,0,2,1]],[[0,1,0,1],[2,3,3,2],[2,1,2,2],[1,0,3,1]],[[0,1,0,1],[2,3,3,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[2,3,2,0],[2,3,0,1],[2,2,1,0]],[[1,2,2,1],[2,3,2,0],[3,3,0,1],[1,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,3,0,1],[1,2,1,0]],[[1,3,2,1],[2,3,2,0],[2,3,0,1],[1,2,1,0]],[[2,2,2,1],[2,3,2,0],[2,3,0,1],[1,2,1,0]],[[0,1,0,1],[2,3,3,2],[2,1,4,1],[0,1,2,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,1],[0,1,3,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,1],[0,1,2,2]],[[0,1,0,1],[2,3,3,2],[2,1,4,1],[1,0,2,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,1],[1,0,3,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,1],[1,0,2,2]],[[0,1,0,1],[2,3,3,3],[2,1,3,2],[0,0,2,1]],[[0,1,0,1],[2,3,3,2],[2,1,4,2],[0,0,2,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,3],[0,0,2,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,2],[0,0,2,2]],[[0,1,0,1],[2,3,3,3],[2,1,3,2],[0,1,1,1]],[[0,1,0,1],[2,3,3,2],[2,1,4,2],[0,1,1,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,3],[0,1,1,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,2],[0,1,1,2]],[[0,1,0,1],[2,3,3,3],[2,1,3,2],[0,1,2,0]],[[0,1,0,1],[2,3,3,2],[2,1,4,2],[0,1,2,0]],[[0,1,0,1],[2,3,3,2],[2,1,3,3],[0,1,2,0]],[[0,1,0,1],[2,3,3,2],[2,1,3,2],[0,1,3,0]],[[0,1,0,1],[2,3,3,3],[2,1,3,2],[0,2,0,1]],[[0,1,0,1],[2,3,3,2],[2,1,4,2],[0,2,0,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,3],[0,2,0,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,2],[0,2,0,2]],[[0,1,0,1],[2,3,3,3],[2,1,3,2],[0,2,1,0]],[[0,1,0,1],[2,3,3,2],[2,1,4,2],[0,2,1,0]],[[0,1,0,1],[2,3,3,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[2,3,2,0],[2,3,0,1],[2,1,2,0]],[[1,2,2,1],[2,3,2,0],[3,3,0,1],[1,1,2,0]],[[1,2,2,1],[3,3,2,0],[2,3,0,1],[1,1,2,0]],[[1,3,2,1],[2,3,2,0],[2,3,0,1],[1,1,2,0]],[[2,2,2,1],[2,3,2,0],[2,3,0,1],[1,1,2,0]],[[0,1,0,1],[2,3,3,3],[2,1,3,2],[1,0,1,1]],[[0,1,0,1],[2,3,3,2],[2,1,4,2],[1,0,1,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,3],[1,0,1,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,2],[1,0,1,2]],[[0,1,0,1],[2,3,3,3],[2,1,3,2],[1,0,2,0]],[[0,1,0,1],[2,3,3,2],[2,1,4,2],[1,0,2,0]],[[0,1,0,1],[2,3,3,2],[2,1,3,3],[1,0,2,0]],[[0,1,0,1],[2,3,3,2],[2,1,3,2],[1,0,3,0]],[[0,1,0,1],[2,3,3,3],[2,1,3,2],[1,1,0,1]],[[0,1,0,1],[2,3,3,2],[2,1,4,2],[1,1,0,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,3],[1,1,0,1]],[[0,1,0,1],[2,3,3,2],[2,1,3,2],[1,1,0,2]],[[0,1,0,1],[2,3,3,3],[2,1,3,2],[1,1,1,0]],[[0,1,0,1],[2,3,3,2],[2,1,4,2],[1,1,1,0]],[[0,1,0,1],[2,3,3,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[2,3,2,0],[3,3,0,1],[0,2,2,0]],[[1,2,2,1],[3,3,2,0],[2,3,0,1],[0,2,2,0]],[[1,3,2,1],[2,3,2,0],[2,3,0,1],[0,2,2,0]],[[2,2,2,1],[2,3,2,0],[2,3,0,1],[0,2,2,0]],[[1,2,2,1],[2,3,2,0],[2,3,0,0],[2,2,2,0]],[[1,2,2,1],[2,3,2,0],[3,3,0,0],[1,2,2,0]],[[1,2,2,1],[3,3,2,0],[2,3,0,0],[1,2,2,0]],[[1,3,2,1],[2,3,2,0],[2,3,0,0],[1,2,2,0]],[[2,2,2,1],[2,3,2,0],[2,3,0,0],[1,2,2,0]],[[1,2,2,1],[2,3,2,0],[2,3,0,0],[2,2,1,1]],[[1,2,2,1],[2,3,2,0],[3,3,0,0],[1,2,1,1]],[[1,2,2,1],[3,3,2,0],[2,3,0,0],[1,2,1,1]],[[1,3,2,1],[2,3,2,0],[2,3,0,0],[1,2,1,1]],[[2,2,2,1],[2,3,2,0],[2,3,0,0],[1,2,1,1]],[[1,2,2,1],[2,3,2,0],[2,3,0,0],[2,1,2,1]],[[1,2,2,1],[2,3,2,0],[3,3,0,0],[1,1,2,1]],[[1,2,2,1],[3,3,2,0],[2,3,0,0],[1,1,2,1]],[[1,3,2,1],[2,3,2,0],[2,3,0,0],[1,1,2,1]],[[2,2,2,1],[2,3,2,0],[2,3,0,0],[1,1,2,1]],[[1,2,2,1],[2,3,2,0],[3,3,0,0],[0,2,2,1]],[[1,2,2,1],[3,3,2,0],[2,3,0,0],[0,2,2,1]],[[1,3,2,1],[2,3,2,0],[2,3,0,0],[0,2,2,1]],[[2,2,2,1],[2,3,2,0],[2,3,0,0],[0,2,2,1]],[[1,2,2,1],[3,3,2,0],[2,2,3,2],[1,0,0,0]],[[1,2,3,1],[2,3,2,0],[2,2,3,2],[1,0,0,0]],[[1,3,2,1],[2,3,2,0],[2,2,3,2],[1,0,0,0]],[[2,2,2,1],[2,3,2,0],[2,2,3,2],[1,0,0,0]],[[1,2,2,1],[2,3,2,0],[3,2,3,1],[1,1,0,0]],[[1,2,2,1],[3,3,2,0],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,2,0],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,2,0],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[3,3,2,0],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,2,0],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,2,0],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[2,3,2,0],[2,2,3,0],[2,2,0,0]],[[1,2,2,1],[2,3,2,0],[3,2,3,0],[1,2,0,0]],[[1,2,2,1],[3,3,2,0],[2,2,3,0],[1,2,0,0]],[[1,3,2,1],[2,3,2,0],[2,2,3,0],[1,2,0,0]],[[2,2,2,1],[2,3,2,0],[2,2,3,0],[1,2,0,0]],[[1,2,2,1],[2,3,2,0],[2,2,3,0],[2,1,1,0]],[[1,2,2,1],[2,3,2,0],[3,2,3,0],[1,1,1,0]],[[1,2,2,1],[3,3,2,0],[2,2,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,2,0],[2,2,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,2,0],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,3,2,0],[3,2,3,0],[1,0,2,0]],[[1,2,2,1],[3,3,2,0],[2,2,3,0],[1,0,2,0]],[[1,3,2,1],[2,3,2,0],[2,2,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,2,0],[2,2,3,0],[1,0,2,0]],[[1,2,2,1],[2,3,2,0],[3,2,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,2,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,2,0],[2,2,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,2,0],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,2,3,0],[0,1,2,0]],[[1,3,2,1],[2,3,2,0],[2,2,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,2,0],[2,2,3,0],[0,1,2,0]],[[1,2,2,1],[3,3,2,0],[2,2,2,2],[1,0,1,0]],[[1,2,3,1],[2,3,2,0],[2,2,2,2],[1,0,1,0]],[[1,3,2,1],[2,3,2,0],[2,2,2,2],[1,0,1,0]],[[2,2,2,1],[2,3,2,0],[2,2,2,2],[1,0,1,0]],[[1,2,2,1],[3,3,2,0],[2,2,2,2],[1,0,0,1]],[[1,2,3,1],[2,3,2,0],[2,2,2,2],[1,0,0,1]],[[1,3,2,1],[2,3,2,0],[2,2,2,2],[1,0,0,1]],[[2,2,2,1],[2,3,2,0],[2,2,2,2],[1,0,0,1]],[[1,2,2,1],[2,3,2,0],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[2,3,2,0],[3,2,2,1],[1,2,0,0]],[[1,2,2,1],[3,3,2,0],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,2,0],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,2,0],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[2,3,2,0],[2,2,2,1],[2,1,1,0]],[[1,2,2,1],[2,3,2,0],[3,2,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,2,0],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[2,3,2,0],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,2,0],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,3,2,0],[3,2,2,1],[1,1,0,1]],[[1,2,2,1],[3,3,2,0],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,2,0],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,2,0],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[2,3,2,0],[3,2,2,1],[1,0,2,0]],[[1,2,2,1],[3,3,2,0],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,2,0],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,2,0],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[2,3,2,0],[3,2,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,2,0],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,2,0],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,2,0],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,2,0],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[3,3,2,0],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,2,0],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,2,0],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[2,3,2,0],[2,2,2,0],[2,2,0,1]],[[1,2,2,1],[2,3,2,0],[3,2,2,0],[1,2,0,1]],[[1,2,2,1],[3,3,2,0],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,2,0],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[2,3,2,0],[2,2,2,0],[1,2,0,1]],[[1,2,2,1],[2,3,2,0],[2,2,2,0],[2,1,1,1]],[[1,2,2,1],[2,3,2,0],[3,2,2,0],[1,1,1,1]],[[1,2,2,1],[3,3,2,0],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,2,0],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,2,0],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[2,3,2,0],[3,2,2,0],[1,0,2,1]],[[1,2,2,1],[3,3,2,0],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,2,0],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,2,0],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[2,3,2,0],[3,2,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,2,0],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,2,0],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,2,0],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,2,0],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,2,0],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,2,0],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[2,3,2,0],[2,2,1,1],[2,1,2,0]],[[1,2,2,1],[2,3,2,0],[3,2,1,1],[1,1,2,0]],[[1,2,2,1],[3,3,2,0],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,2,0],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,2,0],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[2,3,2,0],[3,2,1,1],[0,2,2,0]],[[1,2,2,1],[3,3,2,0],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,2,0],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,2,0],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[2,3,2,0],[2,2,1,0],[2,1,2,1]],[[1,2,2,1],[2,3,2,0],[3,2,1,0],[1,1,2,1]],[[1,2,2,1],[3,3,2,0],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,2,0],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,2,0],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[2,3,2,0],[3,2,1,0],[0,2,2,1]],[[1,2,2,1],[3,3,2,0],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,2,0],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,2,0],[2,2,1,0],[0,2,2,1]],[[0,1,1,1],[0,0,2,2],[2,3,3,3],[1,2,2,1]],[[0,1,1,1],[0,0,2,2],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[0,0,2,2],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[0,0,2,2],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[0,0,2,2],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[0,0,3,3],[1,3,3,2],[1,2,2,1]],[[0,1,1,1],[0,0,3,2],[1,3,3,3],[1,2,2,1]],[[0,1,1,1],[0,0,3,2],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[0,0,3,2],[1,3,3,2],[1,2,2,2]],[[0,1,1,1],[0,0,3,3],[2,2,3,2],[1,2,2,1]],[[0,1,1,1],[0,0,3,2],[2,2,3,3],[1,2,2,1]],[[0,1,1,1],[0,0,3,2],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[0,0,3,2],[2,2,3,2],[1,2,2,2]],[[0,1,1,2],[0,0,3,2],[2,3,2,2],[1,2,2,1]],[[0,1,1,1],[0,0,3,3],[2,3,2,2],[1,2,2,1]],[[0,1,1,1],[0,0,3,2],[2,3,2,3],[1,2,2,1]],[[0,1,1,1],[0,0,3,2],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[0,0,3,2],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[0,0,3,2],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[0,0,3,2],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[0,0,3,2],[2,3,4,1],[1,2,2,1]],[[0,1,1,1],[0,0,3,2],[2,3,3,1],[2,2,2,1]],[[0,1,1,1],[0,0,3,2],[2,3,3,1],[1,3,2,1]],[[0,1,1,1],[0,0,3,2],[2,3,3,1],[1,2,3,1]],[[0,1,1,1],[0,0,3,2],[2,3,3,1],[1,2,2,2]],[[0,1,1,2],[0,0,3,2],[2,3,3,2],[1,2,1,1]],[[0,1,1,1],[0,0,3,3],[2,3,3,2],[1,2,1,1]],[[0,1,1,1],[0,0,3,2],[2,3,4,2],[1,2,1,1]],[[0,1,1,1],[0,0,3,2],[2,3,3,3],[1,2,1,1]],[[0,1,1,1],[0,0,3,2],[2,3,3,2],[1,2,1,2]],[[0,1,1,2],[0,0,3,2],[2,3,3,2],[1,2,2,0]],[[0,1,1,1],[0,0,3,3],[2,3,3,2],[1,2,2,0]],[[0,1,1,1],[0,0,3,2],[2,3,4,2],[1,2,2,0]],[[0,1,1,1],[0,0,3,2],[2,3,3,3],[1,2,2,0]],[[0,1,1,1],[0,0,3,2],[2,3,3,2],[2,2,2,0]],[[0,1,1,1],[0,0,3,2],[2,3,3,2],[1,3,2,0]],[[0,1,1,1],[0,0,3,2],[2,3,3,2],[1,2,3,0]],[[0,1,1,1],[0,1,1,2],[2,3,3,3],[1,2,2,1]],[[0,1,1,1],[0,1,1,2],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[0,1,1,2],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[0,1,1,2],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[0,1,1,2],[2,3,3,2],[1,2,2,2]],[[0,1,1,2],[0,1,2,2],[2,3,2,2],[1,2,2,1]],[[0,1,1,1],[0,1,2,3],[2,3,2,2],[1,2,2,1]],[[0,1,1,1],[0,1,2,2],[2,3,2,3],[1,2,2,1]],[[0,1,1,1],[0,1,2,2],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[0,1,2,2],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[0,1,2,2],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[0,1,2,2],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[0,1,2,2],[2,3,4,1],[1,2,2,1]],[[0,1,1,1],[0,1,2,2],[2,3,3,1],[2,2,2,1]],[[0,1,1,1],[0,1,2,2],[2,3,3,1],[1,3,2,1]],[[0,1,1,1],[0,1,2,2],[2,3,3,1],[1,2,3,1]],[[0,1,1,1],[0,1,2,2],[2,3,3,1],[1,2,2,2]],[[0,1,1,2],[0,1,2,2],[2,3,3,2],[1,2,1,1]],[[0,1,1,1],[0,1,2,3],[2,3,3,2],[1,2,1,1]],[[0,1,1,1],[0,1,2,2],[2,3,4,2],[1,2,1,1]],[[0,1,1,1],[0,1,2,2],[2,3,3,3],[1,2,1,1]],[[0,1,1,1],[0,1,2,2],[2,3,3,2],[1,2,1,2]],[[0,1,1,2],[0,1,2,2],[2,3,3,2],[1,2,2,0]],[[0,1,1,1],[0,1,2,3],[2,3,3,2],[1,2,2,0]],[[0,1,1,1],[0,1,2,2],[2,3,4,2],[1,2,2,0]],[[0,1,1,1],[0,1,2,2],[2,3,3,3],[1,2,2,0]],[[0,1,1,1],[0,1,2,2],[2,3,3,2],[2,2,2,0]],[[0,1,1,1],[0,1,2,2],[2,3,3,2],[1,3,2,0]],[[0,1,1,1],[0,1,2,2],[2,3,3,2],[1,2,3,0]],[[0,1,1,1],[0,1,3,0],[2,3,4,2],[1,2,2,1]],[[0,1,1,1],[0,1,3,0],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[0,1,3,0],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[0,1,3,0],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[0,1,3,0],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[0,1,3,1],[2,3,2,3],[1,2,2,1]],[[0,1,1,1],[0,1,3,1],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[0,1,3,1],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[0,1,3,1],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[0,1,3,1],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[0,1,3,1],[2,3,4,1],[1,2,2,1]],[[0,1,1,1],[0,1,3,1],[2,3,3,1],[2,2,2,1]],[[0,1,1,1],[0,1,3,1],[2,3,3,1],[1,3,2,1]],[[0,1,1,1],[0,1,3,1],[2,3,3,1],[1,2,3,1]],[[0,1,1,1],[0,1,3,1],[2,3,3,1],[1,2,2,2]],[[0,1,1,1],[0,1,3,1],[2,3,4,2],[1,2,1,1]],[[0,1,1,1],[0,1,3,1],[2,3,3,3],[1,2,1,1]],[[0,1,1,1],[0,1,3,1],[2,3,3,2],[1,2,1,2]],[[0,1,1,1],[0,1,3,1],[2,3,4,2],[1,2,2,0]],[[0,1,1,1],[0,1,3,1],[2,3,3,3],[1,2,2,0]],[[0,1,1,1],[0,1,3,1],[2,3,3,2],[2,2,2,0]],[[0,1,1,1],[0,1,3,1],[2,3,3,2],[1,3,2,0]],[[0,1,1,1],[0,1,3,1],[2,3,3,2],[1,2,3,0]],[[0,1,1,1],[0,1,3,3],[0,3,3,2],[1,2,2,1]],[[0,1,1,1],[0,1,3,2],[0,3,3,3],[1,2,2,1]],[[0,1,1,1],[0,1,3,2],[0,3,3,2],[1,2,3,1]],[[0,1,1,1],[0,1,3,2],[0,3,3,2],[1,2,2,2]],[[0,1,1,2],[0,1,3,2],[2,1,3,2],[1,2,2,1]],[[0,1,1,1],[0,1,3,3],[2,1,3,2],[1,2,2,1]],[[0,1,1,1],[0,1,3,2],[2,1,3,3],[1,2,2,1]],[[0,1,1,1],[0,1,3,2],[2,1,3,2],[1,2,3,1]],[[0,1,1,1],[0,1,3,2],[2,1,3,2],[1,2,2,2]],[[0,1,1,2],[0,1,3,2],[2,2,2,2],[1,2,2,1]],[[0,1,1,1],[0,1,3,3],[2,2,2,2],[1,2,2,1]],[[0,1,1,1],[0,1,3,2],[2,2,2,3],[1,2,2,1]],[[0,1,1,1],[0,1,3,2],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[0,1,3,2],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[0,1,3,2],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[0,1,3,2],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[0,1,3,2],[2,2,4,1],[1,2,2,1]],[[0,1,1,1],[0,1,3,2],[2,2,3,1],[2,2,2,1]],[[0,1,1,1],[0,1,3,2],[2,2,3,1],[1,3,2,1]],[[0,1,1,1],[0,1,3,2],[2,2,3,1],[1,2,3,1]],[[0,1,1,1],[0,1,3,2],[2,2,3,1],[1,2,2,2]],[[0,1,1,2],[0,1,3,2],[2,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,1,3,3],[2,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,1,3,2],[2,2,4,2],[1,2,1,1]],[[0,1,1,1],[0,1,3,2],[2,2,3,3],[1,2,1,1]],[[0,1,1,1],[0,1,3,2],[2,2,3,2],[1,2,1,2]],[[0,1,1,2],[0,1,3,2],[2,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,1,3,3],[2,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,1,3,2],[2,2,4,2],[1,2,2,0]],[[0,1,1,1],[0,1,3,2],[2,2,3,3],[1,2,2,0]],[[0,1,1,1],[0,1,3,2],[2,2,3,2],[2,2,2,0]],[[0,1,1,1],[0,1,3,2],[2,2,3,2],[1,3,2,0]],[[0,1,1,1],[0,1,3,2],[2,2,3,2],[1,2,3,0]],[[0,1,1,2],[0,1,3,2],[2,3,2,2],[1,1,2,1]],[[0,1,1,1],[0,1,3,3],[2,3,2,2],[1,1,2,1]],[[0,1,1,1],[0,1,3,2],[2,3,2,3],[1,1,2,1]],[[0,1,1,1],[0,1,3,2],[2,3,2,2],[1,1,3,1]],[[0,1,1,1],[0,1,3,2],[2,3,2,2],[1,1,2,2]],[[0,1,1,1],[0,1,3,2],[2,3,4,0],[1,2,2,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,0],[2,2,2,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,0],[1,3,2,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,0],[1,2,3,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,0],[1,2,2,2]],[[0,1,1,1],[0,1,3,2],[2,3,4,1],[1,1,2,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,1],[1,1,3,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,1],[1,1,2,2]],[[0,1,1,1],[0,1,3,2],[2,3,4,1],[1,2,2,0]],[[0,1,1,1],[0,1,3,2],[2,3,3,1],[2,2,2,0]],[[0,1,1,1],[0,1,3,2],[2,3,3,1],[1,3,2,0]],[[0,1,1,1],[0,1,3,2],[2,3,3,1],[1,2,3,0]],[[0,1,1,2],[0,1,3,2],[2,3,3,2],[1,0,2,1]],[[0,1,1,1],[0,1,3,3],[2,3,3,2],[1,0,2,1]],[[0,1,1,1],[0,1,3,2],[2,3,4,2],[1,0,2,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,3],[1,0,2,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,2],[1,0,2,2]],[[0,1,1,2],[0,1,3,2],[2,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,1,3,3],[2,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,1,3,2],[2,3,4,2],[1,1,1,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,3],[1,1,1,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,2],[1,1,1,2]],[[0,1,1,2],[0,1,3,2],[2,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,1,3,3],[2,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,1,3,2],[2,3,4,2],[1,1,2,0]],[[0,1,1,1],[0,1,3,2],[2,3,3,3],[1,1,2,0]],[[0,1,1,1],[0,1,3,2],[2,3,3,2],[1,1,3,0]],[[0,1,1,2],[0,1,3,2],[2,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,1,3,3],[2,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,1,3,2],[2,3,4,2],[1,2,0,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,3],[1,2,0,1]],[[0,1,1,1],[0,1,3,2],[2,3,3,2],[1,2,0,2]],[[0,1,1,2],[0,1,3,2],[2,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,1,3,3],[2,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,1,3,2],[2,3,4,2],[1,2,1,0]],[[0,1,1,1],[0,1,3,2],[2,3,3,3],[1,2,1,0]],[[0,1,1,1],[0,2,0,2],[2,3,3,3],[1,2,2,1]],[[0,1,1,1],[0,2,0,2],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[0,2,0,2],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[0,2,0,2],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[0,2,0,2],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[0,2,1,2],[2,2,3,3],[1,2,2,1]],[[0,1,1,1],[0,2,1,2],[2,2,3,2],[2,2,2,1]],[[0,1,1,1],[0,2,1,2],[2,2,3,2],[1,3,2,1]],[[0,1,1,1],[0,2,1,2],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[0,2,1,2],[2,2,3,2],[1,2,2,2]],[[0,1,1,1],[0,2,1,2],[2,3,3,3],[1,1,2,1]],[[0,1,1,1],[0,2,1,2],[2,3,3,2],[1,1,3,1]],[[0,1,1,1],[0,2,1,2],[2,3,3,2],[1,1,2,2]],[[0,1,1,2],[0,2,2,2],[2,1,3,2],[1,2,2,1]],[[0,1,1,1],[0,2,2,3],[2,1,3,2],[1,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,1,3,3],[1,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,1,3,2],[1,2,3,1]],[[0,1,1,1],[0,2,2,2],[2,1,3,2],[1,2,2,2]],[[0,1,1,2],[0,2,2,2],[2,2,2,2],[1,2,2,1]],[[0,1,1,1],[0,2,2,3],[2,2,2,2],[1,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,2,2,3],[1,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[0,2,2,2],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[0,2,2,2],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[0,2,2,2],[2,2,4,1],[1,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,2,3,1],[2,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,2,3,1],[1,3,2,1]],[[0,1,1,1],[0,2,2,2],[2,2,3,1],[1,2,3,1]],[[0,1,1,1],[0,2,2,2],[2,2,3,1],[1,2,2,2]],[[0,1,1,2],[0,2,2,2],[2,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,2,2,3],[2,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,2,2,2],[2,2,4,2],[1,2,1,1]],[[0,1,1,1],[0,2,2,2],[2,2,3,3],[1,2,1,1]],[[0,1,1,1],[0,2,2,2],[2,2,3,2],[1,2,1,2]],[[0,1,1,2],[0,2,2,2],[2,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,2,2,3],[2,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,2,2,2],[2,2,4,2],[1,2,2,0]],[[0,1,1,1],[0,2,2,2],[2,2,3,3],[1,2,2,0]],[[0,1,1,1],[0,2,2,2],[2,2,3,2],[2,2,2,0]],[[0,1,1,1],[0,2,2,2],[2,2,3,2],[1,3,2,0]],[[0,1,1,1],[0,2,2,2],[2,2,3,2],[1,2,3,0]],[[0,1,1,2],[0,2,2,2],[2,3,1,2],[1,2,2,1]],[[0,1,1,1],[0,2,2,3],[2,3,1,2],[1,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,4,1,2],[1,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,1,3],[1,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,1,2],[2,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,1,2],[1,3,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,1,2],[1,2,3,1]],[[0,1,1,1],[0,2,2,2],[2,3,1,2],[1,2,2,2]],[[0,1,1,1],[0,2,2,2],[2,4,2,1],[1,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,2,1],[2,2,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,2,1],[1,3,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,2,1],[1,2,3,1]],[[0,1,1,1],[0,2,2,2],[2,3,2,1],[1,2,2,2]],[[0,1,1,2],[0,2,2,2],[2,3,2,2],[1,1,2,1]],[[0,1,1,1],[0,2,2,3],[2,3,2,2],[1,1,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,2,3],[1,1,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,2,2],[1,1,3,1]],[[0,1,1,1],[0,2,2,2],[2,3,2,2],[1,1,2,2]],[[0,1,1,1],[0,2,2,2],[2,4,2,2],[1,2,2,0]],[[0,1,1,1],[0,2,2,2],[2,3,2,2],[2,2,2,0]],[[0,1,1,1],[0,2,2,2],[2,3,2,2],[1,3,2,0]],[[0,1,1,1],[0,2,2,2],[2,3,2,2],[1,2,3,0]],[[0,1,1,1],[0,2,2,2],[2,4,3,1],[1,1,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,4,1],[1,1,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,1],[1,1,3,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,1],[1,1,2,2]],[[0,1,1,1],[0,2,2,2],[2,4,3,1],[1,2,1,1]],[[0,1,1,1],[0,2,2,2],[2,3,4,1],[1,2,1,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,1],[2,2,1,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,1],[1,3,1,1]],[[0,1,1,2],[0,2,2,2],[2,3,3,2],[1,0,2,1]],[[0,1,1,1],[0,2,2,3],[2,3,3,2],[1,0,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,4,2],[1,0,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,3],[1,0,2,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,2],[1,0,2,2]],[[0,1,1,2],[0,2,2,2],[2,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,2,2,3],[2,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,2,2,2],[2,4,3,2],[1,1,1,1]],[[0,1,1,1],[0,2,2,2],[2,3,4,2],[1,1,1,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,3],[1,1,1,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,2],[1,1,1,2]],[[0,1,1,2],[0,2,2,2],[2,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,2,2,3],[2,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,2,2,2],[2,4,3,2],[1,1,2,0]],[[0,1,1,1],[0,2,2,2],[2,3,4,2],[1,1,2,0]],[[0,1,1,1],[0,2,2,2],[2,3,3,3],[1,1,2,0]],[[0,1,1,1],[0,2,2,2],[2,3,3,2],[1,1,3,0]],[[0,1,1,2],[0,2,2,2],[2,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,2,2,3],[2,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,2,2,2],[2,4,3,2],[1,2,0,1]],[[0,1,1,1],[0,2,2,2],[2,3,4,2],[1,2,0,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,3],[1,2,0,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,2],[2,2,0,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,2],[1,3,0,1]],[[0,1,1,1],[0,2,2,2],[2,3,3,2],[1,2,0,2]],[[0,1,1,2],[0,2,2,2],[2,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,2,2,3],[2,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,2,2,2],[2,4,3,2],[1,2,1,0]],[[0,1,1,1],[0,2,2,2],[2,3,4,2],[1,2,1,0]],[[0,1,1,1],[0,2,2,2],[2,3,3,3],[1,2,1,0]],[[0,1,1,1],[0,2,2,2],[2,3,3,2],[2,2,1,0]],[[0,1,1,1],[0,2,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,2,0],[2,2,0,1],[2,2,2,0]],[[1,2,2,1],[2,3,2,0],[3,2,0,1],[1,2,2,0]],[[1,2,2,1],[3,3,2,0],[2,2,0,1],[1,2,2,0]],[[1,3,2,1],[2,3,2,0],[2,2,0,1],[1,2,2,0]],[[0,1,1,1],[0,2,3,0],[2,2,4,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,0],[2,2,3,2],[2,2,2,1]],[[0,1,1,1],[0,2,3,0],[2,2,3,2],[1,3,2,1]],[[0,1,1,1],[0,2,3,0],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[0,2,3,0],[2,2,3,2],[1,2,2,2]],[[0,1,1,1],[0,2,3,0],[2,4,2,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,0],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[0,2,3,0],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[0,2,3,0],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[0,2,3,0],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[0,2,3,0],[2,4,3,2],[1,1,2,1]],[[0,1,1,1],[0,2,3,0],[2,3,4,2],[1,1,2,1]],[[0,1,1,1],[0,2,3,0],[2,3,3,2],[1,1,3,1]],[[0,1,1,1],[0,2,3,0],[2,3,3,2],[1,1,2,2]],[[0,1,1,1],[0,2,3,0],[2,4,3,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,0],[2,3,4,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,0],[2,3,3,2],[2,2,1,1]],[[0,1,1,1],[0,2,3,0],[2,3,3,2],[1,3,1,1]],[[0,1,1,1],[0,2,3,1],[2,1,3,3],[1,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,1,3,2],[1,2,3,1]],[[0,1,1,1],[0,2,3,1],[2,1,3,2],[1,2,2,2]],[[0,1,1,1],[0,2,3,1],[2,2,2,3],[1,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[0,2,3,1],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[0,2,3,1],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[0,2,4,1],[2,2,3,1],[1,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,2,4,1],[1,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,2,3,1],[2,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,2,3,1],[1,3,2,1]],[[0,1,1,1],[0,2,3,1],[2,2,3,1],[1,2,3,1]],[[0,1,1,1],[0,2,3,1],[2,2,3,1],[1,2,2,2]],[[0,1,1,1],[0,2,4,1],[2,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,1],[2,2,4,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,1],[2,2,3,3],[1,2,1,1]],[[0,1,1,1],[0,2,3,1],[2,2,3,2],[1,2,1,2]],[[0,1,1,1],[0,2,4,1],[2,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,2,3,1],[2,2,4,2],[1,2,2,0]],[[0,1,1,1],[0,2,3,1],[2,2,3,3],[1,2,2,0]],[[0,1,1,1],[0,2,3,1],[2,2,3,2],[2,2,2,0]],[[0,1,1,1],[0,2,3,1],[2,2,3,2],[1,3,2,0]],[[0,1,1,1],[0,2,3,1],[2,2,3,2],[1,2,3,0]],[[0,1,1,1],[0,2,3,1],[2,4,1,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,1,3],[1,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,1,2],[2,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,1,2],[1,3,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,1,2],[1,2,3,1]],[[0,1,1,1],[0,2,3,1],[2,3,1,2],[1,2,2,2]],[[0,1,1,1],[0,2,3,1],[2,4,2,1],[1,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,2,1],[2,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,2,1],[1,3,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,2,1],[1,2,3,1]],[[0,1,1,1],[0,2,3,1],[2,3,2,1],[1,2,2,2]],[[0,1,1,1],[0,2,3,1],[2,3,2,3],[1,1,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,2,2],[1,1,3,1]],[[0,1,1,1],[0,2,3,1],[2,3,2,2],[1,1,2,2]],[[0,1,1,1],[0,2,3,1],[2,4,2,2],[1,2,2,0]],[[0,1,1,1],[0,2,3,1],[2,3,2,2],[2,2,2,0]],[[0,1,1,1],[0,2,3,1],[2,3,2,2],[1,3,2,0]],[[0,1,1,1],[0,2,3,1],[2,3,2,2],[1,2,3,0]],[[0,1,1,1],[0,2,3,1],[2,4,3,0],[1,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,0],[2,2,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,0],[1,3,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,0],[1,2,3,1]],[[0,1,1,1],[0,2,4,1],[2,3,3,1],[1,1,2,1]],[[0,1,1,1],[0,2,3,1],[2,4,3,1],[1,1,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,4,1],[1,1,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,1],[1,1,3,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,1],[1,1,2,2]],[[0,1,1,1],[0,2,4,1],[2,3,3,1],[1,2,1,1]],[[0,1,1,1],[0,2,3,1],[2,4,3,1],[1,2,1,1]],[[0,1,1,1],[0,2,3,1],[2,3,4,1],[1,2,1,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,1],[2,2,1,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,1],[1,3,1,1]],[[0,1,1,1],[0,2,3,1],[2,3,4,2],[1,0,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,3],[1,0,2,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,2],[1,0,2,2]],[[0,1,1,1],[0,2,4,1],[2,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,2,3,1],[2,4,3,2],[1,1,1,1]],[[0,1,1,1],[0,2,3,1],[2,3,4,2],[1,1,1,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,3],[1,1,1,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,2],[1,1,1,2]],[[0,1,1,1],[0,2,4,1],[2,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,2,3,1],[2,4,3,2],[1,1,2,0]],[[0,1,1,1],[0,2,3,1],[2,3,4,2],[1,1,2,0]],[[0,1,1,1],[0,2,3,1],[2,3,3,3],[1,1,2,0]],[[0,1,1,1],[0,2,3,1],[2,3,3,2],[1,1,3,0]],[[0,1,1,1],[0,2,4,1],[2,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,2,3,1],[2,4,3,2],[1,2,0,1]],[[0,1,1,1],[0,2,3,1],[2,3,4,2],[1,2,0,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,3],[1,2,0,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,2],[2,2,0,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,2],[1,3,0,1]],[[0,1,1,1],[0,2,3,1],[2,3,3,2],[1,2,0,2]],[[0,1,1,1],[0,2,4,1],[2,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,2,3,1],[2,4,3,2],[1,2,1,0]],[[0,1,1,1],[0,2,3,1],[2,3,4,2],[1,2,1,0]],[[0,1,1,1],[0,2,3,1],[2,3,3,3],[1,2,1,0]],[[0,1,1,1],[0,2,3,1],[2,3,3,2],[2,2,1,0]],[[0,1,1,1],[0,2,3,1],[2,3,3,2],[1,3,1,0]],[[2,2,2,1],[2,3,2,0],[2,2,0,1],[1,2,2,0]],[[1,2,2,1],[2,3,2,0],[2,2,0,0],[1,3,2,1]],[[1,2,2,1],[2,3,2,0],[2,2,0,0],[2,2,2,1]],[[1,2,2,1],[2,3,2,0],[3,2,0,0],[1,2,2,1]],[[1,2,2,1],[3,3,2,0],[2,2,0,0],[1,2,2,1]],[[1,3,2,1],[2,3,2,0],[2,2,0,0],[1,2,2,1]],[[2,2,2,1],[2,3,2,0],[2,2,0,0],[1,2,2,1]],[[0,1,1,2],[0,2,3,2],[0,2,3,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,3],[0,2,3,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[0,2,3,3],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[0,2,3,2],[1,2,3,1]],[[0,1,1,1],[0,2,3,2],[0,2,3,2],[1,2,2,2]],[[0,1,1,2],[0,2,3,2],[0,3,2,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,3],[0,3,2,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[0,3,2,3],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[0,3,2,2],[1,3,2,1]],[[0,1,1,1],[0,2,3,2],[0,3,2,2],[1,2,3,1]],[[0,1,1,1],[0,2,3,2],[0,3,2,2],[1,2,2,2]],[[0,1,1,1],[0,2,3,2],[0,3,4,1],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[0,3,3,1],[1,3,2,1]],[[0,1,1,1],[0,2,3,2],[0,3,3,1],[1,2,3,1]],[[0,1,1,1],[0,2,3,2],[0,3,3,1],[1,2,2,2]],[[0,1,1,2],[0,2,3,2],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,3],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[0,3,4,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[0,3,3,3],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[0,3,3,2],[1,2,1,2]],[[0,1,1,2],[0,2,3,2],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[0,2,3,3],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[0,2,3,2],[0,3,4,2],[1,2,2,0]],[[0,1,1,1],[0,2,3,2],[0,3,3,3],[1,2,2,0]],[[0,1,1,1],[0,2,3,2],[0,3,3,2],[1,3,2,0]],[[0,1,1,1],[0,2,3,2],[0,3,3,2],[1,2,3,0]],[[0,1,1,2],[0,2,3,2],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,3],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[1,1,3,3],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[1,1,3,2],[1,2,3,1]],[[0,1,1,1],[0,2,3,2],[1,1,3,2],[1,2,2,2]],[[0,1,1,2],[0,2,3,2],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,3],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[0,2,3,2],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[0,2,3,2],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[0,2,3,2],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[0,2,3,2],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[0,2,3,2],[1,2,3,1],[1,2,2,2]],[[0,1,1,2],[0,2,3,2],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,3],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[1,2,3,2],[1,2,1,2]],[[0,1,1,2],[0,2,3,2],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,2,3,3],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,2,3,2],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[0,2,3,2],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[0,2,3,2],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[0,2,3,2],[1,2,3,2],[1,2,3,0]],[[0,1,1,2],[0,2,3,2],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[0,2,3,3],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[0,2,3,2],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[0,2,3,2],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[0,2,3,2],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[0,2,3,2],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[0,2,3,2],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[0,2,3,2],[1,3,3,1],[1,1,2,2]],[[0,1,1,2],[0,2,3,2],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[0,2,3,3],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[0,2,3,2],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[0,2,3,2],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[0,2,3,2],[1,3,3,2],[1,0,2,2]],[[0,1,1,2],[0,2,3,2],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,2,3,3],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,2,3,2],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[0,2,3,2],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[0,2,3,2],[1,3,3,2],[1,1,1,2]],[[0,1,1,2],[0,2,3,2],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,2,3,3],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,2,3,2],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[0,2,3,2],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[0,2,3,2],[1,3,3,2],[1,1,3,0]],[[0,1,1,2],[0,2,3,2],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,2,3,3],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,2,3,2],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[0,2,3,2],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[0,2,3,2],[1,3,3,2],[1,2,0,2]],[[0,1,1,2],[0,2,3,2],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,2,3,3],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,2,3,2],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[0,2,3,2],[1,3,3,3],[1,2,1,0]],[[0,1,1,2],[0,2,3,2],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[0,2,3,3],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,1,3,3],[0,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,1,3,2],[0,2,3,1]],[[0,1,1,1],[0,2,3,2],[2,1,3,2],[0,2,2,2]],[[0,1,1,2],[0,2,3,2],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[0,2,4,2],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,3],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,2,1,3],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,2,1,2],[2,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,2,1,2],[1,3,2,1]],[[0,1,1,1],[0,2,3,2],[2,2,1,2],[1,2,3,1]],[[0,1,1,1],[0,2,3,2],[2,2,1,2],[1,2,2,2]],[[0,1,1,2],[0,2,3,2],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[0,2,3,3],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[0,2,3,2],[2,2,2,2],[0,2,2,2]],[[0,1,1,2],[0,2,3,2],[2,2,2,2],[1,2,1,1]],[[0,1,1,1],[0,2,4,2],[2,2,2,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,3],[2,2,2,2],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[2,2,2,3],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[2,2,2,2],[1,2,1,2]],[[0,1,1,2],[0,2,3,2],[2,2,2,2],[1,2,2,0]],[[0,1,1,1],[0,2,4,2],[2,2,2,2],[1,2,2,0]],[[0,1,1,1],[0,2,3,3],[2,2,2,2],[1,2,2,0]],[[0,1,1,1],[0,2,3,2],[2,2,2,3],[1,2,2,0]],[[0,1,1,2],[0,2,3,2],[2,2,3,0],[1,2,2,1]],[[0,1,1,1],[0,2,4,2],[2,2,3,0],[1,2,2,1]],[[0,1,1,1],[0,2,3,3],[2,2,3,0],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,2,4,0],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,2,3,0],[2,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,2,3,0],[1,3,2,1]],[[0,1,1,1],[0,2,3,2],[2,2,3,0],[1,2,3,1]],[[0,1,1,1],[0,2,3,2],[2,2,3,0],[1,2,2,2]],[[0,1,1,1],[0,2,3,2],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[0,2,3,2],[2,2,3,1],[0,2,2,2]],[[0,1,1,2],[0,2,3,2],[2,2,3,1],[1,2,1,1]],[[0,1,1,1],[0,2,4,2],[2,2,3,1],[1,2,1,1]],[[0,1,1,1],[0,2,3,3],[2,2,3,1],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[2,2,4,1],[1,2,1,1]],[[0,1,1,2],[0,2,3,2],[2,2,3,1],[1,2,2,0]],[[0,1,1,1],[0,2,4,2],[2,2,3,1],[1,2,2,0]],[[0,1,1,1],[0,2,3,3],[2,2,3,1],[1,2,2,0]],[[0,1,1,1],[0,2,3,2],[2,2,4,1],[1,2,2,0]],[[0,1,1,1],[0,2,3,2],[2,2,3,1],[2,2,2,0]],[[0,1,1,1],[0,2,3,2],[2,2,3,1],[1,3,2,0]],[[0,1,1,1],[0,2,3,2],[2,2,3,1],[1,2,3,0]],[[0,1,1,2],[0,2,3,2],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[0,2,3,3],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[0,2,3,2],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[0,2,3,2],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[0,2,3,2],[2,2,3,2],[0,2,1,2]],[[0,1,1,2],[0,2,3,2],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[0,2,3,3],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[0,2,3,2],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[0,2,3,2],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[0,2,3,2],[2,2,3,2],[0,2,3,0]],[[0,1,1,2],[0,2,3,2],[2,3,0,2],[1,2,2,1]],[[0,1,1,1],[0,2,4,2],[2,3,0,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,3],[2,3,0,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,4,0,2],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,0,3],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,0,2],[2,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,0,2],[1,3,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,0,2],[1,2,3,1]],[[0,1,1,1],[0,2,3,2],[2,3,0,2],[1,2,2,2]],[[0,1,1,2],[0,2,3,2],[2,3,1,2],[1,1,2,1]],[[0,1,1,1],[0,2,4,2],[2,3,1,2],[1,1,2,1]],[[0,1,1,1],[0,2,3,3],[2,3,1,2],[1,1,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,1,3],[1,1,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,1,2],[1,1,3,1]],[[0,1,1,1],[0,2,3,2],[2,3,1,2],[1,1,2,2]],[[0,1,1,1],[0,2,3,2],[2,4,2,0],[1,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,2,0],[2,2,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,2,0],[1,3,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,2,0],[1,2,3,1]],[[0,1,1,1],[0,2,3,2],[2,3,2,0],[1,2,2,2]],[[0,1,1,1],[0,2,3,2],[2,4,2,1],[1,2,2,0]],[[0,1,1,1],[0,2,3,2],[2,3,2,1],[2,2,2,0]],[[0,1,1,1],[0,2,3,2],[2,3,2,1],[1,3,2,0]],[[0,1,1,1],[0,2,3,2],[2,3,2,1],[1,2,3,0]],[[0,1,1,2],[0,2,3,2],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[0,2,3,3],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[0,2,3,2],[2,3,2,2],[0,1,2,2]],[[0,1,1,2],[0,2,3,2],[2,3,2,2],[1,1,1,1]],[[0,1,1,1],[0,2,4,2],[2,3,2,2],[1,1,1,1]],[[0,1,1,1],[0,2,3,3],[2,3,2,2],[1,1,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,2,3],[1,1,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,2,2],[1,1,1,2]],[[0,1,1,2],[0,2,3,2],[2,3,2,2],[1,1,2,0]],[[0,1,1,1],[0,2,4,2],[2,3,2,2],[1,1,2,0]],[[0,1,1,1],[0,2,3,3],[2,3,2,2],[1,1,2,0]],[[0,1,1,1],[0,2,3,2],[2,3,2,3],[1,1,2,0]],[[0,1,1,2],[0,2,3,2],[2,3,2,2],[1,2,0,1]],[[0,1,1,1],[0,2,4,2],[2,3,2,2],[1,2,0,1]],[[0,1,1,1],[0,2,3,3],[2,3,2,2],[1,2,0,1]],[[0,1,1,1],[0,2,3,2],[2,3,2,3],[1,2,0,1]],[[0,1,1,1],[0,2,3,2],[2,3,2,2],[1,2,0,2]],[[0,1,1,2],[0,2,3,2],[2,3,2,2],[1,2,1,0]],[[0,1,1,1],[0,2,4,2],[2,3,2,2],[1,2,1,0]],[[0,1,1,1],[0,2,3,3],[2,3,2,2],[1,2,1,0]],[[0,1,1,1],[0,2,3,2],[2,3,2,3],[1,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,1,3,2],[1,1,0,0]],[[1,2,3,1],[2,3,2,0],[2,1,3,2],[1,1,0,0]],[[1,3,2,1],[2,3,2,0],[2,1,3,2],[1,1,0,0]],[[2,2,2,1],[2,3,2,0],[2,1,3,2],[1,1,0,0]],[[0,1,1,2],[0,2,3,2],[2,3,3,0],[1,1,2,1]],[[0,1,1,1],[0,2,4,2],[2,3,3,0],[1,1,2,1]],[[0,1,1,1],[0,2,3,3],[2,3,3,0],[1,1,2,1]],[[0,1,1,1],[0,2,3,2],[2,4,3,0],[1,1,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,4,0],[1,1,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,0],[1,1,3,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,0],[1,1,2,2]],[[0,1,1,2],[0,2,3,2],[2,3,3,0],[1,2,1,1]],[[0,1,1,1],[0,2,4,2],[2,3,3,0],[1,2,1,1]],[[0,1,1,1],[0,2,3,3],[2,3,3,0],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[2,4,3,0],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,4,0],[1,2,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,0],[2,2,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,0],[1,3,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,1],[0,1,2,2]],[[0,1,1,2],[0,2,3,2],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[0,2,4,2],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[0,2,3,3],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[0,2,3,2],[2,4,3,1],[1,1,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,4,1],[1,1,1,1]],[[0,1,1,2],[0,2,3,2],[2,3,3,1],[1,1,2,0]],[[0,1,1,1],[0,2,4,2],[2,3,3,1],[1,1,2,0]],[[0,1,1,1],[0,2,3,3],[2,3,3,1],[1,1,2,0]],[[0,1,1,1],[0,2,3,2],[2,4,3,1],[1,1,2,0]],[[0,1,1,1],[0,2,3,2],[2,3,4,1],[1,1,2,0]],[[0,1,1,1],[0,2,3,2],[2,3,3,1],[1,1,3,0]],[[0,1,1,2],[0,2,3,2],[2,3,3,1],[1,2,0,1]],[[0,1,1,1],[0,2,4,2],[2,3,3,1],[1,2,0,1]],[[0,1,1,1],[0,2,3,3],[2,3,3,1],[1,2,0,1]],[[0,1,1,1],[0,2,3,2],[2,4,3,1],[1,2,0,1]],[[0,1,1,1],[0,2,3,2],[2,3,4,1],[1,2,0,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,1],[2,2,0,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,1],[1,3,0,1]],[[0,1,1,2],[0,2,3,2],[2,3,3,1],[1,2,1,0]],[[0,1,1,1],[0,2,4,2],[2,3,3,1],[1,2,1,0]],[[0,1,1,1],[0,2,3,3],[2,3,3,1],[1,2,1,0]],[[0,1,1,1],[0,2,3,2],[2,4,3,1],[1,2,1,0]],[[0,1,1,1],[0,2,3,2],[2,3,4,1],[1,2,1,0]],[[0,1,1,1],[0,2,3,2],[2,3,3,1],[2,2,1,0]],[[0,1,1,1],[0,2,3,2],[2,3,3,1],[1,3,1,0]],[[0,1,1,2],[0,2,3,2],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[0,2,3,3],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,2],[0,0,2,2]],[[0,1,1,2],[0,2,3,2],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[0,2,3,3],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,2],[0,1,1,2]],[[0,1,1,2],[0,2,3,2],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[0,2,3,3],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[0,2,3,2],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[0,2,3,2],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[0,2,3,2],[2,3,3,2],[0,1,3,0]],[[0,1,1,2],[0,2,3,2],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[0,2,3,3],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[0,2,3,2],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,2],[0,2,0,2]],[[0,1,1,2],[0,2,3,2],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[0,2,3,3],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[0,2,3,2],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[0,2,3,2],[2,3,3,3],[0,2,1,0]],[[0,1,1,2],[0,2,3,2],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[0,2,3,3],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[0,2,3,2],[2,3,3,2],[1,0,1,2]],[[0,1,1,2],[0,2,3,2],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[0,2,3,3],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[0,2,3,2],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[0,2,3,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[3,3,2,0],[2,1,3,2],[0,2,0,0]],[[1,2,3,1],[2,3,2,0],[2,1,3,2],[0,2,0,0]],[[1,3,2,1],[2,3,2,0],[2,1,3,2],[0,2,0,0]],[[2,2,2,1],[2,3,2,0],[2,1,3,2],[0,2,0,0]],[[0,1,1,1],[0,3,0,1],[2,4,3,2],[1,2,2,1]],[[0,1,1,1],[0,3,0,1],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[0,3,0,1],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[0,3,0,1],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,0,1],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[0,3,0,2],[2,2,3,3],[1,2,2,1]],[[0,1,1,1],[0,3,0,2],[2,2,3,2],[2,2,2,1]],[[0,1,1,1],[0,3,0,2],[2,2,3,2],[1,3,2,1]],[[0,1,1,1],[0,3,0,2],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,0,2],[2,2,3,2],[1,2,2,2]],[[0,1,1,1],[0,3,0,2],[2,4,2,2],[1,2,2,1]],[[0,1,1,1],[0,3,0,2],[2,3,2,3],[1,2,2,1]],[[0,1,1,1],[0,3,0,2],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[0,3,0,2],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[0,3,0,2],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[0,3,0,2],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[0,3,0,2],[2,4,3,1],[1,2,2,1]],[[0,1,1,1],[0,3,0,2],[2,3,3,1],[2,2,2,1]],[[0,1,1,1],[0,3,0,2],[2,3,3,1],[1,3,2,1]],[[0,1,1,1],[0,3,0,2],[2,3,3,1],[1,2,3,1]],[[0,1,1,1],[0,3,0,2],[2,3,3,1],[1,2,2,2]],[[0,1,1,1],[0,3,0,2],[2,3,3,3],[1,1,2,1]],[[0,1,1,1],[0,3,0,2],[2,3,3,2],[1,1,3,1]],[[0,1,1,1],[0,3,0,2],[2,3,3,2],[1,1,2,2]],[[0,1,1,1],[0,3,0,2],[2,4,3,2],[1,2,2,0]],[[0,1,1,1],[0,3,0,2],[2,3,3,2],[2,2,2,0]],[[0,1,1,1],[0,3,0,2],[2,3,3,2],[1,3,2,0]],[[0,1,1,1],[0,3,0,2],[2,3,3,2],[1,2,3,0]],[[0,1,1,1],[0,3,1,0],[2,4,3,2],[1,2,2,1]],[[0,1,1,1],[0,3,1,0],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[0,3,1,0],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[0,3,1,0],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,1,0],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[0,3,1,1],[2,4,3,1],[1,2,2,1]],[[0,1,1,1],[0,3,1,1],[2,3,3,1],[2,2,2,1]],[[0,1,1,1],[0,3,1,1],[2,3,3,1],[1,3,2,1]],[[0,1,1,1],[0,3,1,1],[2,3,3,1],[1,2,3,1]],[[0,1,1,1],[0,3,1,1],[2,3,3,1],[1,2,2,2]],[[0,1,1,1],[0,3,1,1],[2,4,3,2],[1,2,2,0]],[[0,1,1,1],[0,3,1,1],[2,3,3,2],[2,2,2,0]],[[0,1,1,1],[0,3,1,1],[2,3,3,2],[1,3,2,0]],[[0,1,1,1],[0,3,1,1],[2,3,3,2],[1,2,3,0]],[[0,1,1,1],[0,3,1,2],[0,3,3,3],[1,2,2,1]],[[0,1,1,1],[0,3,1,2],[0,3,3,2],[1,3,2,1]],[[0,1,1,1],[0,3,1,2],[0,3,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,1,2],[0,3,3,2],[1,2,2,2]],[[0,1,1,1],[0,3,1,2],[1,2,3,3],[1,2,2,1]],[[0,1,1,1],[0,3,1,2],[1,2,3,2],[1,3,2,1]],[[0,1,1,1],[0,3,1,2],[1,2,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,1,2],[1,2,3,2],[1,2,2,2]],[[0,1,1,1],[0,3,1,2],[1,3,3,3],[1,1,2,1]],[[0,1,1,1],[0,3,1,2],[1,3,3,2],[1,1,3,1]],[[0,1,1,1],[0,3,1,2],[1,3,3,2],[1,1,2,2]],[[0,1,1,2],[0,3,1,2],[2,2,2,2],[1,2,2,1]],[[0,1,1,1],[0,3,1,3],[2,2,2,2],[1,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,2,2,3],[1,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[0,3,1,2],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[0,3,1,2],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[0,3,1,2],[2,2,4,1],[1,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,2,3,1],[2,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,2,3,1],[1,3,2,1]],[[0,1,1,1],[0,3,1,2],[2,2,3,1],[1,2,3,1]],[[0,1,1,1],[0,3,1,2],[2,2,3,1],[1,2,2,2]],[[0,1,1,1],[0,3,1,2],[2,2,3,3],[0,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,2,3,2],[0,2,3,1]],[[0,1,1,1],[0,3,1,2],[2,2,3,2],[0,2,2,2]],[[0,1,1,2],[0,3,1,2],[2,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,3,1,3],[2,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,3,1,2],[2,2,4,2],[1,2,1,1]],[[0,1,1,1],[0,3,1,2],[2,2,3,3],[1,2,1,1]],[[0,1,1,1],[0,3,1,2],[2,2,3,2],[1,2,1,2]],[[0,1,1,2],[0,3,1,2],[2,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,3,1,3],[2,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,3,1,2],[2,2,4,2],[1,2,2,0]],[[0,1,1,1],[0,3,1,2],[2,2,3,3],[1,2,2,0]],[[0,1,1,1],[0,3,1,2],[2,2,3,2],[2,2,2,0]],[[0,1,1,1],[0,3,1,2],[2,2,3,2],[1,3,2,0]],[[0,1,1,1],[0,3,1,2],[2,2,3,2],[1,2,3,0]],[[0,1,1,2],[0,3,1,2],[2,3,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,1,3],[2,3,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,4,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,1,3],[1,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,1,2],[2,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,1,2],[1,3,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,1,2],[1,2,3,1]],[[0,1,1,1],[0,3,1,2],[2,3,1,2],[1,2,2,2]],[[0,1,1,1],[0,3,1,2],[2,4,2,1],[1,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,2,1],[2,2,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,2,1],[1,3,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,2,1],[1,2,3,1]],[[0,1,1,1],[0,3,1,2],[2,3,2,1],[1,2,2,2]],[[0,1,1,2],[0,3,1,2],[2,3,2,2],[1,1,2,1]],[[0,1,1,1],[0,3,1,3],[2,3,2,2],[1,1,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,2,3],[1,1,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,2,2],[1,1,3,1]],[[0,1,1,1],[0,3,1,2],[2,3,2,2],[1,1,2,2]],[[0,1,1,1],[0,3,1,2],[2,4,2,2],[1,2,2,0]],[[0,1,1,1],[0,3,1,2],[2,3,2,2],[2,2,2,0]],[[0,1,1,1],[0,3,1,2],[2,3,2,2],[1,3,2,0]],[[0,1,1,1],[0,3,1,2],[2,3,2,2],[1,2,3,0]],[[0,1,1,1],[0,3,1,2],[2,4,3,1],[1,1,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,4,1],[1,1,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,1],[1,1,3,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,1],[1,1,2,2]],[[0,1,1,1],[0,3,1,2],[2,4,3,1],[1,2,1,1]],[[0,1,1,1],[0,3,1,2],[2,3,4,1],[1,2,1,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,1],[2,2,1,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,1],[1,3,1,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,3],[0,1,2,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,2],[0,1,3,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,2],[0,1,2,2]],[[0,1,1,2],[0,3,1,2],[2,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,3,1,3],[2,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,3,1,2],[2,4,3,2],[1,1,1,1]],[[0,1,1,1],[0,3,1,2],[2,3,4,2],[1,1,1,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,3],[1,1,1,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,2],[1,1,1,2]],[[0,1,1,2],[0,3,1,2],[2,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,3,1,3],[2,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,3,1,2],[2,4,3,2],[1,1,2,0]],[[0,1,1,1],[0,3,1,2],[2,3,4,2],[1,1,2,0]],[[0,1,1,1],[0,3,1,2],[2,3,3,3],[1,1,2,0]],[[0,1,1,1],[0,3,1,2],[2,3,3,2],[1,1,3,0]],[[0,1,1,2],[0,3,1,2],[2,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,3,1,3],[2,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,3,1,2],[2,4,3,2],[1,2,0,1]],[[0,1,1,1],[0,3,1,2],[2,3,4,2],[1,2,0,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,3],[1,2,0,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,2],[2,2,0,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,2],[1,3,0,1]],[[0,1,1,1],[0,3,1,2],[2,3,3,2],[1,2,0,2]],[[0,1,1,2],[0,3,1,2],[2,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,3,1,3],[2,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,3,1,2],[2,4,3,2],[1,2,1,0]],[[0,1,1,1],[0,3,1,2],[2,3,4,2],[1,2,1,0]],[[0,1,1,1],[0,3,1,2],[2,3,3,3],[1,2,1,0]],[[0,1,1,1],[0,3,1,2],[2,3,3,2],[2,2,1,0]],[[0,1,1,1],[0,3,1,2],[2,3,3,2],[1,3,1,0]],[[0,1,1,1],[0,3,2,0],[2,2,4,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,0],[2,2,3,2],[2,2,2,1]],[[0,1,1,1],[0,3,2,0],[2,2,3,2],[1,3,2,1]],[[0,1,1,1],[0,3,2,0],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,2,0],[2,2,3,2],[1,2,2,2]],[[0,1,1,1],[0,3,2,0],[2,4,2,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,0],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[0,3,2,0],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[0,3,2,0],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[0,3,2,0],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[0,3,2,0],[2,4,3,2],[1,1,2,1]],[[0,1,1,1],[0,3,2,0],[2,3,4,2],[1,1,2,1]],[[0,1,1,1],[0,3,2,0],[2,3,3,2],[1,1,3,1]],[[0,1,1,1],[0,3,2,0],[2,3,3,2],[1,1,2,2]],[[0,1,1,1],[0,3,2,0],[2,4,3,2],[1,2,1,1]],[[0,1,1,1],[0,3,2,0],[2,3,4,2],[1,2,1,1]],[[0,1,1,1],[0,3,2,0],[2,3,3,2],[2,2,1,1]],[[0,1,1,1],[0,3,2,0],[2,3,3,2],[1,3,1,1]],[[0,1,1,1],[0,3,2,1],[2,2,2,3],[1,2,2,1]],[[0,1,1,1],[0,3,2,1],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[0,3,2,1],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[0,3,2,1],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[0,3,2,1],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[0,3,2,1],[2,2,4,1],[1,2,2,1]],[[0,1,1,1],[0,3,2,1],[2,2,3,1],[2,2,2,1]],[[0,1,1,1],[0,3,2,1],[2,2,3,1],[1,3,2,1]],[[0,1,1,1],[0,3,2,1],[2,2,3,1],[1,2,3,1]],[[0,1,1,1],[0,3,2,1],[2,2,3,1],[1,2,2,2]],[[0,1,1,1],[0,3,2,1],[2,2,4,2],[1,2,1,1]],[[0,1,1,1],[0,3,2,1],[2,2,3,3],[1,2,1,1]],[[0,1,1,1],[0,3,2,1],[2,2,3,2],[1,2,1,2]],[[0,1,1,1],[0,3,2,1],[2,2,4,2],[1,2,2,0]],[[0,1,1,1],[0,3,2,1],[2,2,3,3],[1,2,2,0]],[[0,1,1,1],[0,3,2,1],[2,2,3,2],[2,2,2,0]],[[0,1,1,1],[0,3,2,1],[2,2,3,2],[1,3,2,0]],[[0,1,1,1],[0,3,2,1],[2,2,3,2],[1,2,3,0]],[[0,1,1,1],[0,3,2,1],[2,4,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,1,3],[1,2,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,1,2],[2,2,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,1,2],[1,3,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,1,2],[1,2,3,1]],[[0,1,1,1],[0,3,2,1],[2,3,1,2],[1,2,2,2]],[[0,1,1,1],[0,3,2,1],[2,4,2,1],[1,2,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,2,1],[2,2,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,2,1],[1,3,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,2,1],[1,2,3,1]],[[0,1,1,1],[0,3,2,1],[2,3,2,1],[1,2,2,2]],[[0,1,1,1],[0,3,2,1],[2,3,2,3],[1,1,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,2,2],[1,1,3,1]],[[0,1,1,1],[0,3,2,1],[2,3,2,2],[1,1,2,2]],[[0,1,1,1],[0,3,2,1],[2,4,2,2],[1,2,2,0]],[[0,1,1,1],[0,3,2,1],[2,3,2,2],[2,2,2,0]],[[0,1,1,1],[0,3,2,1],[2,3,2,2],[1,3,2,0]],[[0,1,1,1],[0,3,2,1],[2,3,2,2],[1,2,3,0]],[[0,1,1,1],[0,3,2,1],[2,4,3,0],[1,2,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,0],[2,2,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,0],[1,3,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,0],[1,2,3,1]],[[0,1,1,1],[0,3,2,1],[2,4,3,1],[1,1,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,4,1],[1,1,2,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,1],[1,1,3,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,1],[1,1,2,2]],[[0,1,1,1],[0,3,2,1],[2,4,3,1],[1,2,1,1]],[[0,1,1,1],[0,3,2,1],[2,3,4,1],[1,2,1,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,1],[2,2,1,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,1],[1,3,1,1]],[[0,1,1,1],[0,3,2,1],[2,4,3,2],[1,1,1,1]],[[0,1,1,1],[0,3,2,1],[2,3,4,2],[1,1,1,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,3],[1,1,1,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,2],[1,1,1,2]],[[0,1,1,1],[0,3,2,1],[2,4,3,2],[1,1,2,0]],[[0,1,1,1],[0,3,2,1],[2,3,4,2],[1,1,2,0]],[[0,1,1,1],[0,3,2,1],[2,3,3,3],[1,1,2,0]],[[0,1,1,1],[0,3,2,1],[2,3,3,2],[1,1,3,0]],[[0,1,1,1],[0,3,2,1],[2,4,3,2],[1,2,0,1]],[[0,1,1,1],[0,3,2,1],[2,3,4,2],[1,2,0,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,3],[1,2,0,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,2],[2,2,0,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,2],[1,3,0,1]],[[0,1,1,1],[0,3,2,1],[2,3,3,2],[1,2,0,2]],[[0,1,1,1],[0,3,2,1],[2,4,3,2],[1,2,1,0]],[[0,1,1,1],[0,3,2,1],[2,3,4,2],[1,2,1,0]],[[0,1,1,1],[0,3,2,1],[2,3,3,3],[1,2,1,0]],[[0,1,1,1],[0,3,2,1],[2,3,3,2],[2,2,1,0]],[[0,1,1,1],[0,3,2,1],[2,3,3,2],[1,3,1,0]],[[0,1,1,2],[0,3,2,2],[0,2,3,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,3],[0,2,3,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[0,2,3,3],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[0,2,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,2,2],[0,2,3,2],[1,2,2,2]],[[0,1,1,2],[0,3,2,2],[0,3,2,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,3],[0,3,2,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[0,3,2,3],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[0,3,2,2],[1,3,2,1]],[[0,1,1,1],[0,3,2,2],[0,3,2,2],[1,2,3,1]],[[0,1,1,1],[0,3,2,2],[0,3,2,2],[1,2,2,2]],[[0,1,1,1],[0,3,2,2],[0,3,4,1],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[0,3,3,1],[1,3,2,1]],[[0,1,1,1],[0,3,2,2],[0,3,3,1],[1,2,3,1]],[[0,1,1,1],[0,3,2,2],[0,3,3,1],[1,2,2,2]],[[0,1,1,2],[0,3,2,2],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[0,3,2,3],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[0,3,2,2],[0,3,4,2],[1,2,1,1]],[[0,1,1,1],[0,3,2,2],[0,3,3,3],[1,2,1,1]],[[0,1,1,1],[0,3,2,2],[0,3,3,2],[1,2,1,2]],[[0,1,1,2],[0,3,2,2],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[0,3,2,3],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[0,3,2,2],[0,3,4,2],[1,2,2,0]],[[0,1,1,1],[0,3,2,2],[0,3,3,3],[1,2,2,0]],[[0,1,1,1],[0,3,2,2],[0,3,3,2],[1,3,2,0]],[[0,1,1,1],[0,3,2,2],[0,3,3,2],[1,2,3,0]],[[0,1,1,2],[0,3,2,2],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,3],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,1,3,3],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,1,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,2,2],[1,1,3,2],[1,2,2,2]],[[0,1,1,2],[0,3,2,2],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,3],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[0,3,2,2],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[0,3,2,2],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[0,3,2,2],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[0,3,2,2],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[0,3,2,2],[1,2,3,1],[1,2,2,2]],[[0,1,1,2],[0,3,2,2],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,3,2,3],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,3,2,2],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[0,3,2,2],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[0,3,2,2],[1,2,3,2],[1,2,1,2]],[[0,1,1,2],[0,3,2,2],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,3,2,3],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,3,2,2],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[0,3,2,2],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[0,3,2,2],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[0,3,2,2],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[0,3,2,2],[1,2,3,2],[1,2,3,0]],[[0,1,1,2],[0,3,2,2],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,3],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,4,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,1,3],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,1,2],[2,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,1,2],[1,3,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,1,2],[1,2,3,1]],[[0,1,1,1],[0,3,2,2],[1,3,1,2],[1,2,2,2]],[[0,1,1,1],[0,3,2,2],[1,4,2,1],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,2,1],[2,2,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,2,1],[1,3,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,2,1],[1,2,3,1]],[[0,1,1,1],[0,3,2,2],[1,3,2,1],[1,2,2,2]],[[0,1,1,2],[0,3,2,2],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[0,3,2,3],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[0,3,2,2],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[0,3,2,2],[1,4,2,2],[1,2,2,0]],[[0,1,1,1],[0,3,2,2],[1,3,2,2],[2,2,2,0]],[[0,1,1,1],[0,3,2,2],[1,3,2,2],[1,3,2,0]],[[0,1,1,1],[0,3,2,2],[1,3,2,2],[1,2,3,0]],[[0,1,1,1],[0,3,2,2],[1,4,3,1],[1,1,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[0,3,2,2],[1,4,3,1],[1,2,1,1]],[[0,1,1,1],[0,3,2,2],[1,3,4,1],[1,2,1,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,1],[2,2,1,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,1],[1,3,1,1]],[[0,1,1,2],[0,3,2,2],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[0,3,2,3],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,2],[1,0,2,2]],[[0,1,1,2],[0,3,2,2],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,3,2,3],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,3,2,2],[1,4,3,2],[1,1,1,1]],[[0,1,1,1],[0,3,2,2],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,2],[1,1,1,2]],[[0,1,1,2],[0,3,2,2],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,3,2,3],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,3,2,2],[1,4,3,2],[1,1,2,0]],[[0,1,1,1],[0,3,2,2],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[0,3,2,2],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[0,3,2,2],[1,3,3,2],[1,1,3,0]],[[0,1,1,2],[0,3,2,2],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,3,2,3],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,3,2,2],[1,4,3,2],[1,2,0,1]],[[0,1,1,1],[0,3,2,2],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,2],[2,2,0,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,2],[1,3,0,1]],[[0,1,1,1],[0,3,2,2],[1,3,3,2],[1,2,0,2]],[[0,1,1,2],[0,3,2,2],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,3,2,3],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,3,2,2],[1,4,3,2],[1,2,1,0]],[[0,1,1,1],[0,3,2,2],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[0,3,2,2],[1,3,3,3],[1,2,1,0]],[[0,1,1,1],[0,3,2,2],[1,3,3,2],[2,2,1,0]],[[0,1,1,1],[0,3,2,2],[1,3,3,2],[1,3,1,0]],[[0,1,1,2],[0,3,2,2],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[0,3,2,3],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,1,3,3],[0,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,1,3,2],[0,2,3,1]],[[0,1,1,1],[0,3,2,2],[2,1,3,2],[0,2,2,2]],[[0,1,1,2],[0,3,2,2],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[0,3,2,3],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[0,3,2,2],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[0,3,2,2],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[0,3,2,2],[2,2,4,0],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,2,3,0],[2,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,2,3,0],[1,3,2,1]],[[0,1,1,1],[0,3,2,2],[2,2,3,0],[1,2,3,1]],[[0,1,1,1],[0,3,2,2],[2,2,3,0],[1,2,2,2]],[[0,1,1,1],[0,3,2,2],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[0,3,2,2],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[0,3,2,2],[2,2,3,1],[0,2,2,2]],[[0,1,1,1],[0,3,2,2],[2,2,4,1],[1,2,2,0]],[[0,1,1,1],[0,3,2,2],[2,2,3,1],[2,2,2,0]],[[0,1,1,1],[0,3,2,2],[2,2,3,1],[1,3,2,0]],[[0,1,1,1],[0,3,2,2],[2,2,3,1],[1,2,3,0]],[[0,1,1,2],[0,3,2,2],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[0,3,2,3],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[0,3,2,2],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[0,3,2,2],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[0,3,2,2],[2,2,3,2],[0,2,1,2]],[[0,1,1,2],[0,3,2,2],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[0,3,2,3],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[0,3,2,2],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[0,3,2,2],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[0,3,2,2],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[0,3,2,2],[2,2,3,2],[0,2,3,0]],[[0,1,1,2],[0,3,2,2],[2,3,0,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,3],[2,3,0,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,4,0,2],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,0,3],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,0,2],[2,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,0,2],[1,3,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,0,2],[1,2,3,1]],[[0,1,1,1],[0,3,2,2],[2,3,0,2],[1,2,2,2]],[[0,1,1,2],[0,3,2,2],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[0,3,2,3],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,4,1,2],[0,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,1,3],[0,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,1,2],[0,3,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,1,2],[0,2,3,1]],[[0,1,1,1],[0,3,2,2],[2,3,1,2],[0,2,2,2]],[[0,1,1,1],[0,3,2,2],[2,4,2,0],[1,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,0],[2,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,0],[1,3,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,0],[1,2,3,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,0],[1,2,2,2]],[[0,1,1,1],[0,3,2,2],[2,4,2,1],[0,2,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,1],[0,3,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,1],[0,2,3,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,1],[0,2,2,2]],[[0,1,1,1],[0,3,2,2],[2,4,2,1],[1,2,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,2,1],[2,2,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,2,1],[1,3,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,2,1],[1,2,3,0]],[[0,1,1,2],[0,3,2,2],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[0,3,2,3],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,2],[0,1,2,2]],[[0,1,1,1],[0,3,2,2],[2,4,2,2],[0,2,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,2,2],[0,3,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,2,2],[0,2,3,0]],[[0,1,1,2],[0,3,2,2],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[0,3,2,3],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[0,3,2,2],[2,3,2,2],[1,0,2,2]],[[0,1,1,1],[0,3,2,2],[2,4,3,0],[1,1,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,4,0],[1,1,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,0],[1,1,3,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,0],[1,1,2,2]],[[0,1,1,1],[0,3,2,2],[2,4,3,0],[1,2,1,1]],[[0,1,1,1],[0,3,2,2],[2,3,4,0],[1,2,1,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,0],[2,2,1,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,0],[1,3,1,1]],[[0,1,1,1],[0,3,2,2],[2,4,3,1],[0,1,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[0,3,2,2],[2,4,3,1],[0,2,1,1]],[[0,1,1,1],[0,3,2,2],[2,3,4,1],[0,2,1,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,1],[0,3,1,1]],[[0,1,1,1],[0,3,2,2],[2,4,3,1],[1,0,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,1],[1,0,2,2]],[[0,1,1,1],[0,3,2,2],[2,4,3,1],[1,1,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,4,1],[1,1,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,3,1],[1,1,3,0]],[[0,1,1,1],[0,3,2,2],[2,4,3,1],[1,2,0,1]],[[0,1,1,1],[0,3,2,2],[2,3,4,1],[1,2,0,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,1],[2,2,0,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,1],[1,3,0,1]],[[0,1,1,1],[0,3,2,2],[2,4,3,1],[1,2,1,0]],[[0,1,1,1],[0,3,2,2],[2,3,4,1],[1,2,1,0]],[[0,1,1,1],[0,3,2,2],[2,3,3,1],[2,2,1,0]],[[0,1,1,1],[0,3,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,3,2,0],[2,1,3,0],[2,2,1,0]],[[0,1,1,2],[0,3,2,2],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[0,3,2,3],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,2],[0,0,2,2]],[[0,1,1,2],[0,3,2,2],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[0,3,2,3],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[0,3,2,2],[2,4,3,2],[0,1,1,1]],[[0,1,1,1],[0,3,2,2],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,2],[0,1,1,2]],[[0,1,1,2],[0,3,2,2],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[0,3,2,3],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[0,3,2,2],[2,4,3,2],[0,1,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,3,2],[0,1,3,0]],[[0,1,1,2],[0,3,2,2],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[0,3,2,3],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[0,3,2,2],[2,4,3,2],[0,2,0,1]],[[0,1,1,1],[0,3,2,2],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,2],[0,3,0,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,2],[0,2,0,2]],[[0,1,1,2],[0,3,2,2],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[0,3,2,3],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[0,3,2,2],[2,4,3,2],[0,2,1,0]],[[0,1,1,1],[0,3,2,2],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[0,3,2,2],[2,3,3,3],[0,2,1,0]],[[0,1,1,1],[0,3,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,3,2,0],[3,1,3,0],[1,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,1,3,0],[1,2,1,0]],[[1,3,2,1],[2,3,2,0],[2,1,3,0],[1,2,1,0]],[[2,2,2,1],[2,3,2,0],[2,1,3,0],[1,2,1,0]],[[0,1,1,2],[0,3,2,2],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[0,3,2,3],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[0,3,2,2],[2,4,3,2],[1,0,1,1]],[[0,1,1,1],[0,3,2,2],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,2],[1,0,1,2]],[[0,1,1,2],[0,3,2,2],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[0,3,2,3],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[0,3,2,2],[2,4,3,2],[1,0,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[0,3,2,2],[2,3,3,2],[1,0,3,0]],[[0,1,1,2],[0,3,2,2],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[0,3,2,3],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[0,3,2,2],[2,4,3,2],[1,1,0,1]],[[0,1,1,1],[0,3,2,2],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[0,3,2,2],[2,3,3,2],[1,1,0,2]],[[0,1,1,2],[0,3,2,2],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[0,3,2,3],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[0,3,2,2],[2,4,3,2],[1,1,1,0]],[[0,1,1,1],[0,3,2,2],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[0,3,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,2],[1,2,0,0]],[[1,2,3,1],[2,3,2,0],[2,1,2,2],[1,2,0,0]],[[1,3,2,1],[2,3,2,0],[2,1,2,2],[1,2,0,0]],[[2,2,2,1],[2,3,2,0],[2,1,2,2],[1,2,0,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,0],[2,1,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,0],[2,1,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,0],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,0],[2,1,2,2],[1,1,0,1]],[[0,1,1,1],[0,3,3,0],[0,3,4,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,0],[0,3,3,2],[1,3,2,1]],[[0,1,1,1],[0,3,3,0],[0,3,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,0],[0,3,3,2],[1,2,2,2]],[[0,1,1,1],[0,3,3,0],[1,2,4,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,0],[1,2,3,2],[2,2,2,1]],[[0,1,1,1],[0,3,3,0],[1,2,3,2],[1,3,2,1]],[[0,1,1,1],[0,3,3,0],[1,2,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,0],[1,2,3,2],[1,2,2,2]],[[0,1,1,1],[0,3,3,0],[1,4,2,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,0],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[0,3,3,0],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[0,3,3,0],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,0],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[0,3,3,0],[1,4,3,2],[1,1,2,1]],[[0,1,1,1],[0,3,3,0],[1,3,4,2],[1,1,2,1]],[[0,1,1,1],[0,3,3,0],[1,3,3,2],[1,1,3,1]],[[0,1,1,1],[0,3,3,0],[1,3,3,2],[1,1,2,2]],[[0,1,1,1],[0,3,3,0],[1,4,3,2],[1,2,1,1]],[[0,1,1,1],[0,3,3,0],[1,3,4,2],[1,2,1,1]],[[0,1,1,1],[0,3,3,0],[1,3,3,2],[2,2,1,1]],[[0,1,1,1],[0,3,3,0],[1,3,3,2],[1,3,1,1]],[[0,1,1,1],[0,3,3,0],[2,2,4,2],[0,2,2,1]],[[0,1,1,1],[0,3,3,0],[2,2,3,2],[0,3,2,1]],[[0,1,1,1],[0,3,3,0],[2,2,3,2],[0,2,3,1]],[[0,1,1,1],[0,3,3,0],[2,2,3,2],[0,2,2,2]],[[0,1,1,1],[0,3,3,0],[2,4,2,2],[0,2,2,1]],[[0,1,1,1],[0,3,3,0],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[0,3,3,0],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[0,3,3,0],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[0,3,3,0],[2,4,3,2],[0,1,2,1]],[[0,1,1,1],[0,3,3,0],[2,3,4,2],[0,1,2,1]],[[0,1,1,1],[0,3,3,0],[2,3,3,2],[0,1,3,1]],[[0,1,1,1],[0,3,3,0],[2,3,3,2],[0,1,2,2]],[[0,1,1,1],[0,3,3,0],[2,4,3,2],[0,2,1,1]],[[0,1,1,1],[0,3,3,0],[2,3,4,2],[0,2,1,1]],[[0,1,1,1],[0,3,3,0],[2,3,3,2],[0,3,1,1]],[[0,1,1,1],[0,3,3,0],[2,4,3,2],[1,0,2,1]],[[0,1,1,1],[0,3,3,0],[2,3,4,2],[1,0,2,1]],[[0,1,1,1],[0,3,3,0],[2,3,3,2],[1,0,3,1]],[[0,1,1,1],[0,3,3,0],[2,3,3,2],[1,0,2,2]],[[1,3,2,1],[2,3,2,0],[2,1,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,0],[2,1,2,2],[1,1,0,1]],[[0,1,1,1],[0,3,3,1],[0,2,3,3],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[0,2,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,1],[0,2,3,2],[1,2,2,2]],[[0,1,1,1],[0,3,3,1],[0,3,2,3],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[0,3,2,2],[1,3,2,1]],[[0,1,1,1],[0,3,3,1],[0,3,2,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,1],[0,3,2,2],[1,2,2,2]],[[0,1,1,1],[0,3,4,1],[0,3,3,1],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[0,3,4,1],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[0,3,3,1],[1,3,2,1]],[[0,1,1,1],[0,3,3,1],[0,3,3,1],[1,2,3,1]],[[0,1,1,1],[0,3,3,1],[0,3,3,1],[1,2,2,2]],[[0,1,1,1],[0,3,4,1],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[0,3,3,1],[0,3,4,2],[1,2,1,1]],[[0,1,1,1],[0,3,3,1],[0,3,3,3],[1,2,1,1]],[[0,1,1,1],[0,3,3,1],[0,3,3,2],[1,2,1,2]],[[0,1,1,1],[0,3,4,1],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[0,3,3,1],[0,3,4,2],[1,2,2,0]],[[0,1,1,1],[0,3,3,1],[0,3,3,3],[1,2,2,0]],[[0,1,1,1],[0,3,3,1],[0,3,3,2],[1,3,2,0]],[[0,1,1,1],[0,3,3,1],[0,3,3,2],[1,2,3,0]],[[0,1,1,1],[0,3,3,1],[1,1,3,3],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,1,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,1],[1,1,3,2],[1,2,2,2]],[[0,1,1,1],[0,3,3,1],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[0,3,3,1],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,1],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[0,3,4,1],[1,2,3,1],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[0,3,3,1],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[0,3,3,1],[1,2,3,1],[1,2,2,2]],[[0,1,1,1],[0,3,4,1],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[0,3,3,1],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[0,3,3,1],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[0,3,3,1],[1,2,3,2],[1,2,1,2]],[[0,1,1,1],[0,3,4,1],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[0,3,3,1],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[0,3,3,1],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[0,3,3,1],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[0,3,3,1],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[0,3,3,1],[1,2,3,2],[1,2,3,0]],[[0,1,1,1],[0,3,3,1],[1,4,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,1,3],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,1,2],[2,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,1,2],[1,3,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,1,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,1],[1,3,1,2],[1,2,2,2]],[[0,1,1,1],[0,3,3,1],[1,4,2,1],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,2,1],[2,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,2,1],[1,3,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,2,1],[1,2,3,1]],[[0,1,1,1],[0,3,3,1],[1,3,2,1],[1,2,2,2]],[[0,1,1,1],[0,3,3,1],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[0,3,3,1],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[0,3,3,1],[1,4,2,2],[1,2,2,0]],[[0,1,1,1],[0,3,3,1],[1,3,2,2],[2,2,2,0]],[[0,1,1,1],[0,3,3,1],[1,3,2,2],[1,3,2,0]],[[0,1,1,1],[0,3,3,1],[1,3,2,2],[1,2,3,0]],[[0,1,1,1],[0,3,3,1],[1,4,3,0],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,0],[2,2,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,0],[1,3,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,0],[1,2,3,1]],[[0,1,1,1],[0,3,4,1],[1,3,3,1],[1,1,2,1]],[[0,1,1,1],[0,3,3,1],[1,4,3,1],[1,1,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[0,3,4,1],[1,3,3,1],[1,2,1,1]],[[0,1,1,1],[0,3,3,1],[1,4,3,1],[1,2,1,1]],[[0,1,1,1],[0,3,3,1],[1,3,4,1],[1,2,1,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,1],[2,2,1,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,1],[1,3,1,1]],[[0,1,1,1],[0,3,4,1],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,2],[1,0,2,2]],[[0,1,1,1],[0,3,4,1],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[0,3,3,1],[1,4,3,2],[1,1,1,1]],[[0,1,1,1],[0,3,3,1],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,2],[1,1,1,2]],[[0,1,1,1],[0,3,4,1],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[0,3,3,1],[1,4,3,2],[1,1,2,0]],[[0,1,1,1],[0,3,3,1],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[0,3,3,1],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[0,3,3,1],[1,3,3,2],[1,1,3,0]],[[0,1,1,1],[0,3,4,1],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[0,3,3,1],[1,4,3,2],[1,2,0,1]],[[0,1,1,1],[0,3,3,1],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,2],[2,2,0,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,2],[1,3,0,1]],[[0,1,1,1],[0,3,3,1],[1,3,3,2],[1,2,0,2]],[[0,1,1,1],[0,3,4,1],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[0,3,3,1],[1,4,3,2],[1,2,1,0]],[[0,1,1,1],[0,3,3,1],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[0,3,3,1],[1,3,3,3],[1,2,1,0]],[[0,1,1,1],[0,3,3,1],[1,3,3,2],[2,2,1,0]],[[0,1,1,1],[0,3,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,0],[2,1,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,0],[2,1,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,0],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,0],[2,1,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,0],[2,1,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,0],[2,1,2,2],[1,0,1,1]],[[0,1,1,1],[0,3,3,1],[2,1,3,3],[0,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,1,3,2],[0,2,3,1]],[[0,1,1,1],[0,3,3,1],[2,1,3,2],[0,2,2,2]],[[0,1,1,1],[0,3,3,1],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[0,3,3,1],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[0,3,3,1],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[0,3,4,1],[2,2,3,1],[0,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[0,3,3,1],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[0,3,3,1],[2,2,3,1],[0,2,2,2]],[[0,1,1,1],[0,3,4,1],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[0,3,3,1],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[0,3,3,1],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[0,3,3,1],[2,2,3,2],[0,2,1,2]],[[0,1,1,1],[0,3,4,1],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[0,3,3,1],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[0,3,3,1],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[0,3,3,1],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[0,3,3,1],[2,2,3,2],[0,2,3,0]],[[0,1,1,1],[0,3,3,1],[2,4,0,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,0,3],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,0,2],[2,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,0,2],[1,3,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,0,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,1],[2,3,0,2],[1,2,2,2]],[[0,1,1,1],[0,3,3,1],[2,4,1,1],[1,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,1,1],[2,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,1,1],[1,3,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,1,1],[1,2,3,1]],[[0,1,1,1],[0,3,3,1],[2,3,1,1],[1,2,2,2]],[[0,1,1,1],[0,3,3,1],[2,4,1,2],[0,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,1,3],[0,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,1,2],[0,3,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,1,2],[0,2,3,1]],[[0,1,1,1],[0,3,3,1],[2,3,1,2],[0,2,2,2]],[[0,1,1,1],[0,3,3,1],[2,4,1,2],[1,2,2,0]],[[0,1,1,1],[0,3,3,1],[2,3,1,2],[2,2,2,0]],[[0,1,1,1],[0,3,3,1],[2,3,1,2],[1,3,2,0]],[[0,1,1,1],[0,3,3,1],[2,3,1,2],[1,2,3,0]],[[0,1,1,1],[0,3,3,1],[2,4,2,1],[0,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,1],[0,3,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,1],[0,2,3,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,1],[0,2,2,2]],[[0,1,1,1],[0,3,3,1],[2,4,2,1],[1,2,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,1],[2,2,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,1],[1,3,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,2],[0,1,2,2]],[[0,1,1,1],[0,3,3,1],[2,4,2,2],[0,2,2,0]],[[0,1,1,1],[0,3,3,1],[2,3,2,2],[0,3,2,0]],[[0,1,1,1],[0,3,3,1],[2,3,2,2],[0,2,3,0]],[[0,1,1,1],[0,3,3,1],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,2],[1,0,2,2]],[[0,1,1,1],[0,3,3,1],[2,4,2,2],[1,2,0,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,2],[2,2,0,1]],[[0,1,1,1],[0,3,3,1],[2,3,2,2],[1,3,0,1]],[[0,1,1,1],[0,3,3,1],[2,4,2,2],[1,2,1,0]],[[0,1,1,1],[0,3,3,1],[2,3,2,2],[2,2,1,0]],[[0,1,1,1],[0,3,3,1],[2,3,2,2],[1,3,1,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,0],[2,1,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,0],[2,1,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,0],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,2],[0,2,0,1]],[[0,1,1,1],[0,3,3,1],[2,4,3,0],[0,2,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,0],[0,3,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,0],[0,2,3,1]],[[0,1,1,1],[0,3,4,1],[2,3,3,1],[0,1,2,1]],[[0,1,1,1],[0,3,3,1],[2,4,3,1],[0,1,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[0,3,4,1],[2,3,3,1],[0,2,1,1]],[[0,1,1,1],[0,3,3,1],[2,4,3,1],[0,2,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,4,1],[0,2,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,1],[0,3,1,1]],[[0,1,1,1],[0,3,4,1],[2,3,3,1],[1,0,2,1]],[[0,1,1,1],[0,3,3,1],[2,4,3,1],[1,0,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,1],[1,0,2,2]],[[0,1,1,1],[0,3,4,1],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[0,3,3,1],[2,4,3,1],[1,1,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,3,1],[2,3,2,0],[2,1,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,0],[2,1,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,2,0],[2,1,2,2],[0,2,0,1]],[[0,1,1,1],[0,3,4,1],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,2],[0,0,2,2]],[[0,1,1,1],[0,3,4,1],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[0,3,3,1],[2,4,3,2],[0,1,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,2],[0,1,1,2]],[[0,1,1,1],[0,3,4,1],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[0,3,3,1],[2,4,3,2],[0,1,2,0]],[[0,1,1,1],[0,3,3,1],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[0,3,3,1],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[0,3,3,1],[2,3,3,2],[0,1,3,0]],[[0,1,1,1],[0,3,4,1],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[0,3,3,1],[2,4,3,2],[0,2,0,1]],[[0,1,1,1],[0,3,3,1],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,2],[0,3,0,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,2],[0,2,0,2]],[[0,1,1,1],[0,3,4,1],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[0,3,3,1],[2,4,3,2],[0,2,1,0]],[[0,1,1,1],[0,3,3,1],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[0,3,3,1],[2,3,3,3],[0,2,1,0]],[[0,1,1,1],[0,3,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,0],[2,1,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,0],[2,1,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,0],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,0],[2,1,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,0],[2,1,2,2],[0,1,1,1]],[[0,1,1,1],[0,3,4,1],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[0,3,3,1],[2,4,3,2],[1,0,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,2],[1,0,1,2]],[[0,1,1,1],[0,3,4,1],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[0,3,3,1],[2,4,3,2],[1,0,2,0]],[[0,1,1,1],[0,3,3,1],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[0,3,3,1],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[0,3,3,1],[2,3,3,2],[1,0,3,0]],[[0,1,1,1],[0,3,4,1],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[0,3,3,1],[2,4,3,2],[1,1,0,1]],[[0,1,1,1],[0,3,3,1],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[0,3,3,1],[2,3,3,2],[1,1,0,2]],[[0,1,1,1],[0,3,4,1],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[0,3,3,1],[2,4,3,2],[1,1,1,0]],[[0,1,1,1],[0,3,3,1],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[0,3,3,1],[2,3,3,3],[1,1,1,0]],[[2,2,2,1],[2,3,2,0],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[2,3,2,0],[2,1,2,1],[2,2,1,0]],[[1,2,2,1],[2,3,2,0],[3,1,2,1],[1,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[2,3,2,0],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[2,3,2,0],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,1],[1,1,1,1]],[[1,2,3,1],[2,3,2,0],[2,1,2,1],[1,1,1,1]],[[1,3,2,1],[2,3,2,0],[2,1,2,1],[1,1,1,1]],[[2,2,2,1],[2,3,2,0],[2,1,2,1],[1,1,1,1]],[[0,1,1,2],[0,3,3,2],[0,1,3,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,3],[0,1,3,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[0,1,3,3],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[0,1,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,2],[0,1,3,2],[1,2,2,2]],[[0,1,1,2],[0,3,3,2],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,4,2],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,3],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[0,3,1,3],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[0,3,1,2],[1,3,2,1]],[[0,1,1,1],[0,3,3,2],[0,3,1,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,2],[0,3,1,2],[1,2,2,2]],[[0,1,1,2],[0,3,3,2],[0,3,2,2],[1,2,1,1]],[[0,1,1,1],[0,3,4,2],[0,3,2,2],[1,2,1,1]],[[0,1,1,1],[0,3,3,3],[0,3,2,2],[1,2,1,1]],[[0,1,1,1],[0,3,3,2],[0,3,2,3],[1,2,1,1]],[[0,1,1,1],[0,3,3,2],[0,3,2,2],[1,2,1,2]],[[0,1,1,2],[0,3,3,2],[0,3,2,2],[1,2,2,0]],[[0,1,1,1],[0,3,4,2],[0,3,2,2],[1,2,2,0]],[[0,1,1,1],[0,3,3,3],[0,3,2,2],[1,2,2,0]],[[0,1,1,1],[0,3,3,2],[0,3,2,3],[1,2,2,0]],[[0,1,1,2],[0,3,3,2],[0,3,3,0],[1,2,2,1]],[[0,1,1,1],[0,3,4,2],[0,3,3,0],[1,2,2,1]],[[0,1,1,1],[0,3,3,3],[0,3,3,0],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[0,3,4,0],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[0,3,3,0],[1,3,2,1]],[[0,1,1,1],[0,3,3,2],[0,3,3,0],[1,2,3,1]],[[0,1,1,1],[0,3,3,2],[0,3,3,0],[1,2,2,2]],[[0,1,1,2],[0,3,3,2],[0,3,3,1],[1,2,1,1]],[[0,1,1,1],[0,3,4,2],[0,3,3,1],[1,2,1,1]],[[0,1,1,1],[0,3,3,3],[0,3,3,1],[1,2,1,1]],[[0,1,1,1],[0,3,3,2],[0,3,4,1],[1,2,1,1]],[[0,1,1,2],[0,3,3,2],[0,3,3,1],[1,2,2,0]],[[0,1,1,1],[0,3,4,2],[0,3,3,1],[1,2,2,0]],[[0,1,1,1],[0,3,3,3],[0,3,3,1],[1,2,2,0]],[[0,1,1,1],[0,3,3,2],[0,3,4,1],[1,2,2,0]],[[0,1,1,1],[0,3,3,2],[0,3,3,1],[1,3,2,0]],[[0,1,1,1],[0,3,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,1],[1,0,2,1]],[[1,2,3,1],[2,3,2,0],[2,1,2,1],[1,0,2,1]],[[1,3,2,1],[2,3,2,0],[2,1,2,1],[1,0,2,1]],[[2,2,2,1],[2,3,2,0],[2,1,2,1],[1,0,2,1]],[[0,1,1,2],[0,3,3,2],[1,0,3,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,3],[1,0,3,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,0,3,3],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,0,3,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,2],[1,0,3,2],[1,2,2,2]],[[0,1,1,2],[0,3,3,2],[1,2,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,4,2],[1,2,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,3],[1,2,1,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,2,1,3],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,2,1,2],[2,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,2,1,2],[1,3,2,1]],[[0,1,1,1],[0,3,3,2],[1,2,1,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,2],[1,2,1,2],[1,2,2,2]],[[0,1,1,2],[0,3,3,2],[1,2,2,2],[1,2,1,1]],[[0,1,1,1],[0,3,4,2],[1,2,2,2],[1,2,1,1]],[[0,1,1,1],[0,3,3,3],[1,2,2,2],[1,2,1,1]],[[0,1,1,1],[0,3,3,2],[1,2,2,3],[1,2,1,1]],[[0,1,1,1],[0,3,3,2],[1,2,2,2],[1,2,1,2]],[[0,1,1,2],[0,3,3,2],[1,2,2,2],[1,2,2,0]],[[0,1,1,1],[0,3,4,2],[1,2,2,2],[1,2,2,0]],[[0,1,1,1],[0,3,3,3],[1,2,2,2],[1,2,2,0]],[[0,1,1,1],[0,3,3,2],[1,2,2,3],[1,2,2,0]],[[0,1,1,2],[0,3,3,2],[1,2,3,0],[1,2,2,1]],[[0,1,1,1],[0,3,4,2],[1,2,3,0],[1,2,2,1]],[[0,1,1,1],[0,3,3,3],[1,2,3,0],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,2,4,0],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,2,3,0],[2,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,2,3,0],[1,3,2,1]],[[0,1,1,1],[0,3,3,2],[1,2,3,0],[1,2,3,1]],[[0,1,1,1],[0,3,3,2],[1,2,3,0],[1,2,2,2]],[[0,1,1,2],[0,3,3,2],[1,2,3,1],[1,2,1,1]],[[0,1,1,1],[0,3,4,2],[1,2,3,1],[1,2,1,1]],[[0,1,1,1],[0,3,3,3],[1,2,3,1],[1,2,1,1]],[[0,1,1,1],[0,3,3,2],[1,2,4,1],[1,2,1,1]],[[0,1,1,2],[0,3,3,2],[1,2,3,1],[1,2,2,0]],[[0,1,1,1],[0,3,4,2],[1,2,3,1],[1,2,2,0]],[[0,1,1,1],[0,3,3,3],[1,2,3,1],[1,2,2,0]],[[0,1,1,1],[0,3,3,2],[1,2,4,1],[1,2,2,0]],[[0,1,1,1],[0,3,3,2],[1,2,3,1],[2,2,2,0]],[[0,1,1,1],[0,3,3,2],[1,2,3,1],[1,3,2,0]],[[0,1,1,1],[0,3,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[3,3,2,0],[2,1,2,1],[0,2,1,1]],[[1,2,3,1],[2,3,2,0],[2,1,2,1],[0,2,1,1]],[[1,3,2,1],[2,3,2,0],[2,1,2,1],[0,2,1,1]],[[2,2,2,1],[2,3,2,0],[2,1,2,1],[0,2,1,1]],[[1,2,2,1],[3,3,2,0],[2,1,2,1],[0,1,2,1]],[[1,2,3,1],[2,3,2,0],[2,1,2,1],[0,1,2,1]],[[1,3,2,1],[2,3,2,0],[2,1,2,1],[0,1,2,1]],[[2,2,2,1],[2,3,2,0],[2,1,2,1],[0,1,2,1]],[[0,1,1,2],[0,3,3,2],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[0,3,4,2],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,3],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,4,0,2],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,0,3],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,0,2],[2,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,0,2],[1,3,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,0,2],[1,2,3,1]],[[0,1,1,1],[0,3,3,2],[1,3,0,2],[1,2,2,2]],[[0,1,1,2],[0,3,3,2],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[0,3,4,2],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[0,3,3,3],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,1,3],[1,1,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,1,2],[1,1,3,1]],[[0,1,1,1],[0,3,3,2],[1,3,1,2],[1,1,2,2]],[[0,1,1,1],[0,3,3,2],[1,4,2,0],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,2,0],[2,2,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,2,0],[1,3,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,2,0],[1,2,3,1]],[[0,1,1,1],[0,3,3,2],[1,3,2,0],[1,2,2,2]],[[0,1,1,1],[0,3,3,2],[1,4,2,1],[1,2,2,0]],[[0,1,1,1],[0,3,3,2],[1,3,2,1],[2,2,2,0]],[[0,1,1,1],[0,3,3,2],[1,3,2,1],[1,3,2,0]],[[0,1,1,1],[0,3,3,2],[1,3,2,1],[1,2,3,0]],[[0,1,1,2],[0,3,3,2],[1,3,2,2],[1,0,2,1]],[[0,1,1,1],[0,3,4,2],[1,3,2,2],[1,0,2,1]],[[0,1,1,1],[0,3,3,3],[1,3,2,2],[1,0,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,2,3],[1,0,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,2,2],[1,0,2,2]],[[0,1,1,2],[0,3,3,2],[1,3,2,2],[1,1,1,1]],[[0,1,1,1],[0,3,4,2],[1,3,2,2],[1,1,1,1]],[[0,1,1,1],[0,3,3,3],[1,3,2,2],[1,1,1,1]],[[0,1,1,1],[0,3,3,2],[1,3,2,3],[1,1,1,1]],[[0,1,1,1],[0,3,3,2],[1,3,2,2],[1,1,1,2]],[[0,1,1,2],[0,3,3,2],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[0,3,4,2],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[0,3,3,3],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[0,3,3,2],[1,3,2,3],[1,1,2,0]],[[0,1,1,2],[0,3,3,2],[1,3,2,2],[1,2,0,1]],[[0,1,1,1],[0,3,4,2],[1,3,2,2],[1,2,0,1]],[[0,1,1,1],[0,3,3,3],[1,3,2,2],[1,2,0,1]],[[0,1,1,1],[0,3,3,2],[1,3,2,3],[1,2,0,1]],[[0,1,1,1],[0,3,3,2],[1,3,2,2],[1,2,0,2]],[[0,1,1,2],[0,3,3,2],[1,3,2,2],[1,2,1,0]],[[0,1,1,1],[0,3,4,2],[1,3,2,2],[1,2,1,0]],[[0,1,1,1],[0,3,3,3],[1,3,2,2],[1,2,1,0]],[[0,1,1,1],[0,3,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,3,2,0],[2,1,2,0],[2,2,1,1]],[[1,2,2,1],[2,3,2,0],[3,1,2,0],[1,2,1,1]],[[1,2,2,1],[3,3,2,0],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[2,3,2,0],[2,1,2,0],[1,2,1,1]],[[0,1,1,2],[0,3,3,2],[1,3,3,0],[1,1,2,1]],[[0,1,1,1],[0,3,4,2],[1,3,3,0],[1,1,2,1]],[[0,1,1,1],[0,3,3,3],[1,3,3,0],[1,1,2,1]],[[0,1,1,1],[0,3,3,2],[1,4,3,0],[1,1,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,4,0],[1,1,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,3,0],[1,1,3,1]],[[0,1,1,1],[0,3,3,2],[1,3,3,0],[1,1,2,2]],[[0,1,1,2],[0,3,3,2],[1,3,3,0],[1,2,1,1]],[[0,1,1,1],[0,3,4,2],[1,3,3,0],[1,2,1,1]],[[0,1,1,1],[0,3,3,3],[1,3,3,0],[1,2,1,1]],[[0,1,1,1],[0,3,3,2],[1,4,3,0],[1,2,1,1]],[[0,1,1,1],[0,3,3,2],[1,3,4,0],[1,2,1,1]],[[0,1,1,1],[0,3,3,2],[1,3,3,0],[2,2,1,1]],[[0,1,1,1],[0,3,3,2],[1,3,3,0],[1,3,1,1]],[[0,1,1,2],[0,3,3,2],[1,3,3,1],[1,0,2,1]],[[0,1,1,1],[0,3,4,2],[1,3,3,1],[1,0,2,1]],[[0,1,1,1],[0,3,3,3],[1,3,3,1],[1,0,2,1]],[[0,1,1,1],[0,3,3,2],[1,3,4,1],[1,0,2,1]],[[0,1,1,2],[0,3,3,2],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[0,3,4,2],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[0,3,3,3],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[0,3,3,2],[1,4,3,1],[1,1,1,1]],[[0,1,1,1],[0,3,3,2],[1,3,4,1],[1,1,1,1]],[[0,1,1,2],[0,3,3,2],[1,3,3,1],[1,1,2,0]],[[0,1,1,1],[0,3,4,2],[1,3,3,1],[1,1,2,0]],[[0,1,1,1],[0,3,3,3],[1,3,3,1],[1,1,2,0]],[[0,1,1,1],[0,3,3,2],[1,4,3,1],[1,1,2,0]],[[0,1,1,1],[0,3,3,2],[1,3,4,1],[1,1,2,0]],[[0,1,1,1],[0,3,3,2],[1,3,3,1],[1,1,3,0]],[[0,1,1,2],[0,3,3,2],[1,3,3,1],[1,2,0,1]],[[0,1,1,1],[0,3,4,2],[1,3,3,1],[1,2,0,1]],[[0,1,1,1],[0,3,3,3],[1,3,3,1],[1,2,0,1]],[[0,1,1,1],[0,3,3,2],[1,4,3,1],[1,2,0,1]],[[0,1,1,1],[0,3,3,2],[1,3,4,1],[1,2,0,1]],[[0,1,1,1],[0,3,3,2],[1,3,3,1],[2,2,0,1]],[[0,1,1,1],[0,3,3,2],[1,3,3,1],[1,3,0,1]],[[0,1,1,2],[0,3,3,2],[1,3,3,1],[1,2,1,0]],[[0,1,1,1],[0,3,4,2],[1,3,3,1],[1,2,1,0]],[[0,1,1,1],[0,3,3,3],[1,3,3,1],[1,2,1,0]],[[0,1,1,1],[0,3,3,2],[1,4,3,1],[1,2,1,0]],[[0,1,1,1],[0,3,3,2],[1,3,4,1],[1,2,1,0]],[[0,1,1,1],[0,3,3,2],[1,3,3,1],[2,2,1,0]],[[0,1,1,1],[0,3,3,2],[1,3,3,1],[1,3,1,0]],[[2,2,2,1],[2,3,2,0],[2,1,2,0],[1,2,1,1]],[[0,1,1,2],[0,3,3,2],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[0,3,4,2],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[0,3,3,3],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[0,3,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[3,3,2,0],[2,1,1,2],[1,1,2,0]],[[1,2,3,1],[2,3,2,0],[2,1,1,2],[1,1,2,0]],[[1,3,2,1],[2,3,2,0],[2,1,1,2],[1,1,2,0]],[[2,2,2,1],[2,3,2,0],[2,1,1,2],[1,1,2,0]],[[1,2,2,1],[3,3,2,0],[2,1,1,2],[0,2,2,0]],[[1,2,3,1],[2,3,2,0],[2,1,1,2],[0,2,2,0]],[[1,3,2,1],[2,3,2,0],[2,1,1,2],[0,2,2,0]],[[2,2,2,1],[2,3,2,0],[2,1,1,2],[0,2,2,0]],[[1,2,2,1],[2,3,2,0],[2,1,1,1],[2,2,2,0]],[[1,2,2,1],[2,3,2,0],[3,1,1,1],[1,2,2,0]],[[1,2,2,1],[3,3,2,0],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[2,3,2,0],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[2,3,2,0],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[3,3,2,0],[2,1,1,1],[1,1,2,1]],[[1,2,3,1],[2,3,2,0],[2,1,1,1],[1,1,2,1]],[[0,1,1,2],[0,3,3,2],[2,0,3,2],[0,2,2,1]],[[0,1,1,1],[0,3,3,3],[2,0,3,2],[0,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,0,3,3],[0,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,0,3,2],[0,2,3,1]],[[0,1,1,1],[0,3,3,2],[2,0,3,2],[0,2,2,2]],[[1,3,2,1],[2,3,2,0],[2,1,1,1],[1,1,2,1]],[[2,2,2,1],[2,3,2,0],[2,1,1,1],[1,1,2,1]],[[1,2,2,1],[3,3,2,0],[2,1,1,1],[0,2,2,1]],[[1,2,3,1],[2,3,2,0],[2,1,1,1],[0,2,2,1]],[[1,3,2,1],[2,3,2,0],[2,1,1,1],[0,2,2,1]],[[0,1,1,2],[0,3,3,2],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[0,3,4,2],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[0,3,3,3],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,2,1,3],[0,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,2,1,2],[0,3,2,1]],[[0,1,1,1],[0,3,3,2],[2,2,1,2],[0,2,3,1]],[[0,1,1,1],[0,3,3,2],[2,2,1,2],[0,2,2,2]],[[0,1,1,2],[0,3,3,2],[2,2,2,2],[0,2,1,1]],[[0,1,1,1],[0,3,4,2],[2,2,2,2],[0,2,1,1]],[[0,1,1,1],[0,3,3,3],[2,2,2,2],[0,2,1,1]],[[0,1,1,1],[0,3,3,2],[2,2,2,3],[0,2,1,1]],[[0,1,1,1],[0,3,3,2],[2,2,2,2],[0,2,1,2]],[[0,1,1,2],[0,3,3,2],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[0,3,4,2],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[0,3,3,3],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[0,3,3,2],[2,2,2,3],[0,2,2,0]],[[2,2,2,1],[2,3,2,0],[2,1,1,1],[0,2,2,1]],[[1,2,2,1],[2,3,2,0],[2,1,1,0],[1,3,2,1]],[[1,2,2,1],[2,3,2,0],[2,1,1,0],[2,2,2,1]],[[1,2,2,1],[2,3,2,0],[3,1,1,0],[1,2,2,1]],[[1,2,2,1],[3,3,2,0],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[2,3,2,0],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[2,3,2,0],[2,1,1,0],[1,2,2,1]],[[0,1,1,2],[0,3,3,2],[2,2,3,0],[0,2,2,1]],[[0,1,1,1],[0,3,4,2],[2,2,3,0],[0,2,2,1]],[[0,1,1,1],[0,3,3,3],[2,2,3,0],[0,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,2,4,0],[0,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,2,3,0],[0,3,2,1]],[[0,1,1,1],[0,3,3,2],[2,2,3,0],[0,2,3,1]],[[0,1,1,1],[0,3,3,2],[2,2,3,0],[0,2,2,2]],[[0,1,1,2],[0,3,3,2],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[0,3,4,2],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[0,3,3,3],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[0,3,3,2],[2,2,4,1],[0,2,1,1]],[[0,1,1,2],[0,3,3,2],[2,2,3,1],[0,2,2,0]],[[0,1,1,1],[0,3,4,2],[2,2,3,1],[0,2,2,0]],[[0,1,1,1],[0,3,3,3],[2,2,3,1],[0,2,2,0]],[[0,1,1,1],[0,3,3,2],[2,2,4,1],[0,2,2,0]],[[0,1,1,1],[0,3,3,2],[2,2,3,1],[0,3,2,0]],[[0,1,1,1],[0,3,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[3,3,2,0],[2,1,0,2],[1,1,2,1]],[[1,2,3,1],[2,3,2,0],[2,1,0,2],[1,1,2,1]],[[1,3,2,1],[2,3,2,0],[2,1,0,2],[1,1,2,1]],[[2,2,2,1],[2,3,2,0],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[3,3,2,0],[2,1,0,2],[0,2,2,1]],[[1,2,3,1],[2,3,2,0],[2,1,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,2,0],[2,1,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,2,0],[2,1,0,2],[0,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,4,0,1],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,0,1],[2,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,0,1],[1,3,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,0,1],[1,2,3,1]],[[0,1,1,1],[0,3,3,2],[2,3,0,1],[1,2,2,2]],[[0,1,1,2],[0,3,3,2],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[0,3,4,2],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[0,3,3,3],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,4,0,2],[0,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,0,3],[0,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,0,2],[0,3,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,0,2],[0,2,3,1]],[[0,1,1,1],[0,3,3,2],[2,3,0,2],[0,2,2,2]],[[0,1,1,1],[0,3,3,2],[2,4,0,2],[1,2,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,0,2],[2,2,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,0,2],[1,3,1,1]],[[0,1,1,1],[0,3,3,2],[2,4,0,2],[1,2,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,0,2],[2,2,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,0,2],[1,3,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,0,2],[1,2,3,0]],[[0,1,1,1],[0,3,3,2],[2,4,1,0],[1,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,0],[2,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,0],[1,3,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,0],[1,2,3,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,0],[1,2,2,2]],[[0,1,1,1],[0,3,3,2],[2,4,1,1],[1,2,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,1,1],[2,2,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,1,1],[1,3,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,1,1],[1,2,3,0]],[[0,1,1,2],[0,3,3,2],[2,3,1,2],[0,1,2,1]],[[0,1,1,1],[0,3,4,2],[2,3,1,2],[0,1,2,1]],[[0,1,1,1],[0,3,3,3],[2,3,1,2],[0,1,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,3],[0,1,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,2],[0,1,3,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,2],[0,1,2,2]],[[0,1,1,2],[0,3,3,2],[2,3,1,2],[1,0,2,1]],[[0,1,1,1],[0,3,4,2],[2,3,1,2],[1,0,2,1]],[[0,1,1,1],[0,3,3,3],[2,3,1,2],[1,0,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,3],[1,0,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,2],[1,0,3,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,2],[1,0,2,2]],[[0,1,1,1],[0,3,3,2],[2,4,1,2],[1,2,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,2],[2,2,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,1,2],[1,3,0,1]],[[0,1,1,1],[0,3,3,2],[2,4,1,2],[1,2,1,0]],[[0,1,1,1],[0,3,3,2],[2,3,1,2],[2,2,1,0]],[[0,1,1,1],[0,3,3,2],[2,3,1,2],[1,3,1,0]],[[0,1,1,1],[0,3,3,2],[2,4,2,0],[0,2,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,0],[0,3,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,0],[0,2,3,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,0],[0,2,2,2]],[[0,1,1,1],[0,3,3,2],[2,4,2,0],[1,2,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,0],[2,2,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,0],[1,3,1,1]],[[0,1,1,1],[0,3,3,2],[2,4,2,1],[0,2,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,2,1],[0,3,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,2,1],[0,2,3,0]],[[0,1,1,1],[0,3,3,2],[2,4,2,1],[1,2,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,1],[2,2,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,1],[1,3,0,1]],[[0,1,1,1],[0,3,3,2],[2,4,2,1],[1,2,1,0]],[[0,1,1,1],[0,3,3,2],[2,3,2,1],[2,2,1,0]],[[0,1,1,1],[0,3,3,2],[2,3,2,1],[1,3,1,0]],[[0,1,1,2],[0,3,3,2],[2,3,2,2],[0,0,2,1]],[[0,1,1,1],[0,3,4,2],[2,3,2,2],[0,0,2,1]],[[0,1,1,1],[0,3,3,3],[2,3,2,2],[0,0,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,3],[0,0,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,2],[0,0,2,2]],[[0,1,1,2],[0,3,3,2],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[0,3,4,2],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[0,3,3,3],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,3],[0,1,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,2],[0,1,1,2]],[[0,1,1,2],[0,3,3,2],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[0,3,4,2],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[0,3,3,3],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,2,3],[0,1,2,0]],[[0,1,1,2],[0,3,3,2],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[0,3,4,2],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[0,3,3,3],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,3],[0,2,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,2],[0,2,0,2]],[[0,1,1,2],[0,3,3,2],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[0,3,4,2],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[0,3,3,3],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[0,3,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,0,3,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,0],[2,0,3,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,0],[2,0,3,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,0],[2,0,3,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,0],[2,0,3,2],[1,1,1,0]],[[1,2,2,1],[3,3,2,0],[2,0,3,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,0],[2,0,3,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,0],[2,0,3,2],[1,1,0,1]],[[0,1,1,2],[0,3,3,2],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[0,3,4,2],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[0,3,3,3],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,3],[1,0,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,2],[1,0,1,2]],[[0,1,1,2],[0,3,3,2],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[0,3,4,2],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[0,3,3,3],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,2,3],[1,0,2,0]],[[0,1,1,2],[0,3,3,2],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[0,3,4,2],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[0,3,3,3],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,3],[1,1,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,2,2],[1,1,0,2]],[[0,1,1,2],[0,3,3,2],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[0,3,4,2],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[0,3,3,3],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[0,3,3,2],[2,3,2,3],[1,1,1,0]],[[1,3,2,1],[2,3,2,0],[2,0,3,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,0],[2,0,3,2],[1,1,0,1]],[[1,2,2,1],[3,3,2,0],[2,0,3,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,0],[2,0,3,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,0],[2,0,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,0],[2,0,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,0],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[3,3,2,0],[2,0,3,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,0],[2,0,3,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,0],[2,0,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,0],[2,0,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,0],[2,0,3,2],[1,0,1,1]],[[0,1,1,2],[0,3,3,2],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[0,3,4,2],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[0,3,3,3],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[0,3,3,2],[2,4,3,0],[0,1,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,4,0],[0,1,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,3,0],[0,1,3,1]],[[0,1,1,1],[0,3,3,2],[2,3,3,0],[0,1,2,2]],[[0,1,1,2],[0,3,3,2],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[0,3,4,2],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[0,3,3,3],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[0,3,3,2],[2,4,3,0],[0,2,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,4,0],[0,2,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,3,0],[0,3,1,1]],[[0,1,1,2],[0,3,3,2],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[0,3,4,2],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[0,3,3,3],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[0,3,3,2],[2,4,3,0],[1,0,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,4,0],[1,0,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,3,0],[1,0,3,1]],[[0,1,1,1],[0,3,3,2],[2,3,3,0],[1,0,2,2]],[[0,1,1,2],[0,3,3,2],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[0,3,4,2],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[0,3,3,3],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[0,3,3,2],[2,4,3,0],[1,1,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,4,0],[1,1,1,1]],[[0,1,1,1],[0,3,3,2],[2,4,3,0],[1,2,1,0]],[[0,1,1,1],[0,3,3,2],[2,3,3,0],[2,2,1,0]],[[0,1,1,1],[0,3,3,2],[2,3,3,0],[1,3,1,0]],[[1,2,2,1],[3,3,2,0],[2,0,3,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,0],[2,0,3,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,0],[2,0,3,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,0],[2,0,3,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,0],[2,0,3,2],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,0,3,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,0],[2,0,3,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,0],[2,0,3,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,0],[2,0,3,2],[0,2,0,1]],[[0,1,1,2],[0,3,3,2],[2,3,3,1],[0,0,2,1]],[[0,1,1,1],[0,3,4,2],[2,3,3,1],[0,0,2,1]],[[0,1,1,1],[0,3,3,3],[2,3,3,1],[0,0,2,1]],[[0,1,1,1],[0,3,3,2],[2,3,4,1],[0,0,2,1]],[[0,1,1,2],[0,3,3,2],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[0,3,4,2],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[0,3,3,3],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[0,3,3,2],[2,4,3,1],[0,1,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,4,1],[0,1,1,1]],[[0,1,1,2],[0,3,3,2],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[0,3,4,2],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[0,3,3,3],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[0,3,3,2],[2,4,3,1],[0,1,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,4,1],[0,1,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,3,1],[0,1,3,0]],[[0,1,1,2],[0,3,3,2],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[0,3,4,2],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[0,3,3,3],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[0,3,3,2],[2,4,3,1],[0,2,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,4,1],[0,2,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,3,1],[0,3,0,1]],[[0,1,1,2],[0,3,3,2],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[0,3,4,2],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[0,3,3,3],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[0,3,3,2],[2,4,3,1],[0,2,1,0]],[[0,1,1,1],[0,3,3,2],[2,3,4,1],[0,2,1,0]],[[0,1,1,1],[0,3,3,2],[2,3,3,1],[0,3,1,0]],[[2,2,2,1],[2,3,2,0],[2,0,3,2],[0,2,0,1]],[[1,2,2,1],[3,3,2,0],[2,0,3,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,0],[2,0,3,2],[0,1,2,0]],[[0,1,1,2],[0,3,3,2],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[0,3,4,2],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[0,3,3,3],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[0,3,3,2],[2,4,3,1],[1,0,1,1]],[[0,1,1,1],[0,3,3,2],[2,3,4,1],[1,0,1,1]],[[0,1,1,2],[0,3,3,2],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[0,3,4,2],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[0,3,3,3],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[0,3,3,2],[2,4,3,1],[1,0,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,4,1],[1,0,2,0]],[[0,1,1,1],[0,3,3,2],[2,3,3,1],[1,0,3,0]],[[0,1,1,2],[0,3,3,2],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[0,3,4,2],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[0,3,3,3],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[0,3,3,2],[2,4,3,1],[1,1,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,4,1],[1,1,0,1]],[[0,1,1,2],[0,3,3,2],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[0,3,4,2],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[0,3,3,3],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[0,3,3,2],[2,4,3,1],[1,1,1,0]],[[0,1,1,1],[0,3,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,3,1],[2,3,2,0],[2,0,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,0],[2,0,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,0],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[3,3,2,0],[2,0,3,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,0],[2,0,3,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,0],[2,0,3,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,0],[2,0,3,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,0],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[3,3,2,0],[2,0,3,2],[0,0,2,1]],[[1,2,2,2],[2,3,2,0],[2,0,3,2],[0,0,2,1]],[[1,2,3,1],[2,3,2,0],[2,0,3,2],[0,0,2,1]],[[1,3,2,1],[2,3,2,0],[2,0,3,2],[0,0,2,1]],[[2,2,2,1],[2,3,2,0],[2,0,3,2],[0,0,2,1]],[[1,2,2,1],[3,3,2,0],[2,0,3,1],[1,1,1,1]],[[0,1,1,2],[0,3,3,2],[2,3,3,2],[0,1,0,1]],[[0,1,1,1],[0,3,4,2],[2,3,3,2],[0,1,0,1]],[[0,1,1,1],[0,3,3,3],[2,3,3,2],[0,1,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,3,1],[2,3,2,0],[2,0,3,1],[1,1,1,1]],[[1,3,2,1],[2,3,2,0],[2,0,3,1],[1,1,1,1]],[[2,2,2,1],[2,3,2,0],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[3,3,2,0],[2,0,3,1],[1,0,2,1]],[[1,2,2,2],[2,3,2,0],[2,0,3,1],[1,0,2,1]],[[1,2,3,1],[2,3,2,0],[2,0,3,1],[1,0,2,1]],[[1,3,2,1],[2,3,2,0],[2,0,3,1],[1,0,2,1]],[[2,2,2,1],[2,3,2,0],[2,0,3,1],[1,0,2,1]],[[1,2,2,1],[3,3,2,0],[2,0,3,1],[0,2,1,1]],[[1,2,3,1],[2,3,2,0],[2,0,3,1],[0,2,1,1]],[[1,3,2,1],[2,3,2,0],[2,0,3,1],[0,2,1,1]],[[2,2,2,1],[2,3,2,0],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[3,3,2,0],[2,0,3,1],[0,1,2,1]],[[1,2,2,2],[2,3,2,0],[2,0,3,1],[0,1,2,1]],[[1,2,3,1],[2,3,2,0],[2,0,3,1],[0,1,2,1]],[[1,3,2,1],[2,3,2,0],[2,0,3,1],[0,1,2,1]],[[2,2,2,1],[2,3,2,0],[2,0,3,1],[0,1,2,1]],[[0,1,1,2],[0,3,3,2],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[0,3,4,2],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[0,3,3,3],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[0,3,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[3,3,2,0],[2,0,2,2],[1,2,1,0]],[[1,2,3,1],[2,3,2,0],[2,0,2,2],[1,2,1,0]],[[1,3,2,1],[2,3,2,0],[2,0,2,2],[1,2,1,0]],[[2,2,2,1],[2,3,2,0],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[3,3,2,0],[2,0,2,2],[1,2,0,1]],[[1,2,3,1],[2,3,2,0],[2,0,2,2],[1,2,0,1]],[[1,3,2,1],[2,3,2,0],[2,0,2,2],[1,2,0,1]],[[2,2,2,1],[2,3,2,0],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[3,3,2,0],[2,0,2,1],[1,2,1,1]],[[1,2,3,1],[2,3,2,0],[2,0,2,1],[1,2,1,1]],[[1,3,2,1],[2,3,2,0],[2,0,2,1],[1,2,1,1]],[[2,2,2,1],[2,3,2,0],[2,0,2,1],[1,2,1,1]],[[1,2,2,1],[3,3,2,0],[2,0,1,2],[1,2,2,0]],[[1,2,3,1],[2,3,2,0],[2,0,1,2],[1,2,2,0]],[[1,3,2,1],[2,3,2,0],[2,0,1,2],[1,2,2,0]],[[2,2,2,1],[2,3,2,0],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[3,3,2,0],[2,0,1,1],[1,2,2,1]],[[1,2,3,1],[2,3,2,0],[2,0,1,1],[1,2,2,1]],[[1,3,2,1],[2,3,2,0],[2,0,1,1],[1,2,2,1]],[[2,2,2,1],[2,3,2,0],[2,0,1,1],[1,2,2,1]],[[1,2,2,1],[3,3,2,0],[2,0,0,2],[1,2,2,1]],[[1,2,2,2],[2,3,2,0],[2,0,0,2],[1,2,2,1]],[[1,2,3,1],[2,3,2,0],[2,0,0,2],[1,2,2,1]],[[1,3,2,1],[2,3,2,0],[2,0,0,2],[1,2,2,1]],[[2,2,2,1],[2,3,2,0],[2,0,0,2],[1,2,2,1]],[[0,1,1,1],[1,0,1,2],[2,3,3,3],[1,2,2,1]],[[0,1,1,1],[1,0,1,2],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[1,0,1,2],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,0,1,2],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,0,1,2],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,0,2,2],[1,3,3,3],[1,2,2,1]],[[0,1,1,1],[1,0,2,2],[1,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,0,2,2],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,0,2,2],[1,3,3,2],[1,2,2,2]],[[0,1,1,2],[1,0,2,2],[2,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,0,2,3],[2,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,0,2,2],[2,3,2,3],[1,2,2,1]],[[0,1,1,1],[1,0,2,2],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[1,0,2,2],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,0,2,2],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,0,2,2],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,0,2,2],[2,3,4,1],[1,2,2,1]],[[0,1,1,1],[1,0,2,2],[2,3,3,1],[2,2,2,1]],[[0,1,1,1],[1,0,2,2],[2,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,0,2,2],[2,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,0,2,2],[2,3,3,1],[1,2,2,2]],[[0,1,1,1],[1,0,2,2],[2,3,3,3],[0,2,2,1]],[[0,1,1,1],[1,0,2,2],[2,3,3,2],[0,2,3,1]],[[0,1,1,1],[1,0,2,2],[2,3,3,2],[0,2,2,2]],[[0,1,1,2],[1,0,2,2],[2,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,0,2,3],[2,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,0,2,2],[2,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,0,2,2],[2,3,3,3],[1,2,1,1]],[[0,1,1,1],[1,0,2,2],[2,3,3,2],[1,2,1,2]],[[0,1,1,2],[1,0,2,2],[2,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,0,2,3],[2,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,0,2,2],[2,3,4,2],[1,2,2,0]],[[0,1,1,1],[1,0,2,2],[2,3,3,3],[1,2,2,0]],[[0,1,1,1],[1,0,2,2],[2,3,3,2],[2,2,2,0]],[[0,1,1,1],[1,0,2,2],[2,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,0,2,2],[2,3,3,2],[1,2,3,0]],[[0,1,1,1],[1,0,3,0],[2,3,4,2],[1,2,2,1]],[[0,1,1,1],[1,0,3,0],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[1,0,3,0],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,0,3,0],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,0,3,0],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,0,3,1],[2,3,2,3],[1,2,2,1]],[[0,1,1,1],[1,0,3,1],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[1,0,3,1],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,0,3,1],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,0,3,1],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,0,3,1],[2,3,4,1],[1,2,2,1]],[[0,1,1,1],[1,0,3,1],[2,3,3,1],[2,2,2,1]],[[0,1,1,1],[1,0,3,1],[2,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,0,3,1],[2,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,0,3,1],[2,3,3,1],[1,2,2,2]],[[0,1,1,1],[1,0,3,1],[2,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,0,3,1],[2,3,3,3],[1,2,1,1]],[[0,1,1,1],[1,0,3,1],[2,3,3,2],[1,2,1,2]],[[0,1,1,1],[1,0,3,1],[2,3,4,2],[1,2,2,0]],[[0,1,1,1],[1,0,3,1],[2,3,3,3],[1,2,2,0]],[[0,1,1,1],[1,0,3,1],[2,3,3,2],[2,2,2,0]],[[0,1,1,1],[1,0,3,1],[2,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,0,3,1],[2,3,3,2],[1,2,3,0]],[[0,1,1,1],[1,0,3,3],[0,3,3,2],[1,2,2,1]],[[0,1,1,1],[1,0,3,2],[0,3,3,3],[1,2,2,1]],[[0,1,1,1],[1,0,3,2],[0,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,0,3,2],[0,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,0,3,3],[1,2,3,2],[1,2,2,1]],[[0,1,1,1],[1,0,3,2],[1,2,3,3],[1,2,2,1]],[[0,1,1,1],[1,0,3,2],[1,2,3,2],[1,2,3,1]],[[0,1,1,1],[1,0,3,2],[1,2,3,2],[1,2,2,2]],[[0,1,1,2],[1,0,3,2],[1,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,0,3,3],[1,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,0,3,2],[1,3,2,3],[1,2,2,1]],[[0,1,1,1],[1,0,3,2],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[1,0,3,2],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,0,3,2],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,0,3,2],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,0,3,2],[1,3,4,1],[1,2,2,1]],[[0,1,1,1],[1,0,3,2],[1,3,3,1],[2,2,2,1]],[[0,1,1,1],[1,0,3,2],[1,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,0,3,2],[1,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,0,3,2],[1,3,3,1],[1,2,2,2]],[[0,1,1,2],[1,0,3,2],[1,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,0,3,3],[1,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,0,3,2],[1,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,0,3,2],[1,3,3,3],[1,2,1,1]],[[0,1,1,1],[1,0,3,2],[1,3,3,2],[1,2,1,2]],[[0,1,1,2],[1,0,3,2],[1,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,0,3,3],[1,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,0,3,2],[1,3,4,2],[1,2,2,0]],[[0,1,1,1],[1,0,3,2],[1,3,3,3],[1,2,2,0]],[[0,1,1,1],[1,0,3,2],[1,3,3,2],[2,2,2,0]],[[0,1,1,1],[1,0,3,2],[1,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,0,3,2],[1,3,3,2],[1,2,3,0]],[[0,1,1,1],[1,0,3,3],[2,2,3,2],[0,2,2,1]],[[0,1,1,1],[1,0,3,2],[2,2,3,3],[0,2,2,1]],[[0,1,1,1],[1,0,3,2],[2,2,3,2],[0,2,3,1]],[[0,1,1,1],[1,0,3,2],[2,2,3,2],[0,2,2,2]],[[0,1,1,2],[1,0,3,2],[2,3,2,2],[0,2,2,1]],[[0,1,1,1],[1,0,3,3],[2,3,2,2],[0,2,2,1]],[[0,1,1,1],[1,0,3,2],[2,3,2,3],[0,2,2,1]],[[0,1,1,1],[1,0,3,2],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[1,0,3,2],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[1,0,3,2],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[1,0,3,2],[2,3,4,0],[1,2,2,1]],[[0,1,1,1],[1,0,3,2],[2,3,3,0],[2,2,2,1]],[[0,1,1,1],[1,0,3,2],[2,3,3,0],[1,3,2,1]],[[0,1,1,1],[1,0,3,2],[2,3,3,0],[1,2,3,1]],[[0,1,1,1],[1,0,3,2],[2,3,3,0],[1,2,2,2]],[[0,1,1,1],[1,0,3,2],[2,3,4,1],[0,2,2,1]],[[0,1,1,1],[1,0,3,2],[2,3,3,1],[0,3,2,1]],[[0,1,1,1],[1,0,3,2],[2,3,3,1],[0,2,3,1]],[[0,1,1,1],[1,0,3,2],[2,3,3,1],[0,2,2,2]],[[0,1,1,1],[1,0,3,2],[2,3,4,1],[1,2,2,0]],[[0,1,1,1],[1,0,3,2],[2,3,3,1],[2,2,2,0]],[[0,1,1,1],[1,0,3,2],[2,3,3,1],[1,3,2,0]],[[0,1,1,1],[1,0,3,2],[2,3,3,1],[1,2,3,0]],[[0,1,1,2],[1,0,3,2],[2,3,3,2],[0,2,1,1]],[[0,1,1,1],[1,0,3,3],[2,3,3,2],[0,2,1,1]],[[0,1,1,1],[1,0,3,2],[2,3,4,2],[0,2,1,1]],[[0,1,1,1],[1,0,3,2],[2,3,3,3],[0,2,1,1]],[[0,1,1,1],[1,0,3,2],[2,3,3,2],[0,2,1,2]],[[0,1,1,2],[1,0,3,2],[2,3,3,2],[0,2,2,0]],[[0,1,1,1],[1,0,3,3],[2,3,3,2],[0,2,2,0]],[[0,1,1,1],[1,0,3,2],[2,3,4,2],[0,2,2,0]],[[0,1,1,1],[1,0,3,2],[2,3,3,3],[0,2,2,0]],[[0,1,1,1],[1,0,3,2],[2,3,3,2],[0,3,2,0]],[[0,1,1,1],[1,0,3,2],[2,3,3,2],[0,2,3,0]],[[0,1,1,1],[1,1,0,2],[2,3,3,3],[1,2,2,1]],[[0,1,1,1],[1,1,0,2],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[1,1,0,2],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,1,0,2],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,1,0,2],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,1,1,2],[1,3,3,3],[1,2,2,1]],[[0,1,1,1],[1,1,1,2],[1,3,3,2],[2,2,2,1]],[[0,1,1,1],[1,1,1,2],[1,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,1,1,2],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,1,1,2],[1,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,1,1,2],[2,3,3,3],[0,2,2,1]],[[0,1,1,1],[1,1,1,2],[2,3,3,2],[0,3,2,1]],[[0,1,1,1],[1,1,1,2],[2,3,3,2],[0,2,3,1]],[[0,1,1,1],[1,1,1,2],[2,3,3,2],[0,2,2,2]],[[0,1,1,2],[1,1,2,2],[1,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,1,2,3],[1,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,1,2,2],[1,3,2,3],[1,2,2,1]],[[0,1,1,1],[1,1,2,2],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[1,1,2,2],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,1,2,2],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,1,2,2],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,1,2,2],[1,3,4,1],[1,2,2,1]],[[0,1,1,1],[1,1,2,2],[1,3,3,1],[2,2,2,1]],[[0,1,1,1],[1,1,2,2],[1,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,1,2,2],[1,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,1,2,2],[1,3,3,1],[1,2,2,2]],[[0,1,1,2],[1,1,2,2],[1,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,1,2,3],[1,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,1,2,2],[1,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,1,2,2],[1,3,3,3],[1,2,1,1]],[[0,1,1,1],[1,1,2,2],[1,3,3,2],[1,2,1,2]],[[0,1,1,2],[1,1,2,2],[1,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,1,2,3],[1,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,1,2,2],[1,3,4,2],[1,2,2,0]],[[0,1,1,1],[1,1,2,2],[1,3,3,3],[1,2,2,0]],[[0,1,1,1],[1,1,2,2],[1,3,3,2],[2,2,2,0]],[[0,1,1,1],[1,1,2,2],[1,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,1,2,2],[1,3,3,2],[1,2,3,0]],[[0,1,1,2],[1,1,2,2],[2,3,2,2],[0,2,2,1]],[[0,1,1,1],[1,1,2,3],[2,3,2,2],[0,2,2,1]],[[0,1,1,1],[1,1,2,2],[2,3,2,3],[0,2,2,1]],[[0,1,1,1],[1,1,2,2],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[1,1,2,2],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[1,1,2,2],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[1,1,2,2],[2,3,4,1],[0,2,2,1]],[[0,1,1,1],[1,1,2,2],[2,3,3,1],[0,3,2,1]],[[0,1,1,1],[1,1,2,2],[2,3,3,1],[0,2,3,1]],[[0,1,1,1],[1,1,2,2],[2,3,3,1],[0,2,2,2]],[[0,1,1,2],[1,1,2,2],[2,3,3,2],[0,2,1,1]],[[0,1,1,1],[1,1,2,3],[2,3,3,2],[0,2,1,1]],[[0,1,1,1],[1,1,2,2],[2,3,4,2],[0,2,1,1]],[[0,1,1,1],[1,1,2,2],[2,3,3,3],[0,2,1,1]],[[0,1,1,1],[1,1,2,2],[2,3,3,2],[0,2,1,2]],[[0,1,1,2],[1,1,2,2],[2,3,3,2],[0,2,2,0]],[[0,1,1,1],[1,1,2,3],[2,3,3,2],[0,2,2,0]],[[0,1,1,1],[1,1,2,2],[2,3,4,2],[0,2,2,0]],[[0,1,1,1],[1,1,2,2],[2,3,3,3],[0,2,2,0]],[[0,1,1,1],[1,1,2,2],[2,3,3,2],[0,3,2,0]],[[0,1,1,1],[1,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[3,3,2,0],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,2,0],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,2,0],[1,3,3,1],[1,1,0,0]],[[0,1,1,1],[1,1,3,0],[1,3,4,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,0],[1,3,3,2],[2,2,2,1]],[[0,1,1,1],[1,1,3,0],[1,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,1,3,0],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,1,3,0],[1,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,1,3,0],[2,3,4,2],[0,2,2,1]],[[0,1,1,1],[1,1,3,0],[2,3,3,2],[0,3,2,1]],[[0,1,1,1],[1,1,3,0],[2,3,3,2],[0,2,3,1]],[[0,1,1,1],[1,1,3,0],[2,3,3,2],[0,2,2,2]],[[0,1,1,1],[1,1,3,1],[1,3,2,3],[1,2,2,1]],[[0,1,1,1],[1,1,3,1],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[1,1,3,1],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,1,3,1],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,1,3,1],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,1,3,1],[1,3,4,1],[1,2,2,1]],[[0,1,1,1],[1,1,3,1],[1,3,3,1],[2,2,2,1]],[[0,1,1,1],[1,1,3,1],[1,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,1,3,1],[1,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,1,3,1],[1,3,3,1],[1,2,2,2]],[[0,1,1,1],[1,1,3,1],[1,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,1,3,1],[1,3,3,3],[1,2,1,1]],[[0,1,1,1],[1,1,3,1],[1,3,3,2],[1,2,1,2]],[[0,1,1,1],[1,1,3,1],[1,3,4,2],[1,2,2,0]],[[0,1,1,1],[1,1,3,1],[1,3,3,3],[1,2,2,0]],[[0,1,1,1],[1,1,3,1],[1,3,3,2],[2,2,2,0]],[[0,1,1,1],[1,1,3,1],[1,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,1,3,1],[1,3,3,2],[1,2,3,0]],[[0,1,1,1],[1,1,3,1],[2,3,2,3],[0,2,2,1]],[[0,1,1,1],[1,1,3,1],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[1,1,3,1],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[1,1,3,1],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[1,1,3,1],[2,3,4,1],[0,2,2,1]],[[0,1,1,1],[1,1,3,1],[2,3,3,1],[0,3,2,1]],[[0,1,1,1],[1,1,3,1],[2,3,3,1],[0,2,3,1]],[[0,1,1,1],[1,1,3,1],[2,3,3,1],[0,2,2,2]],[[0,1,1,1],[1,1,3,1],[2,3,4,2],[0,2,1,1]],[[0,1,1,1],[1,1,3,1],[2,3,3,3],[0,2,1,1]],[[0,1,1,1],[1,1,3,1],[2,3,3,2],[0,2,1,2]],[[0,1,1,1],[1,1,3,1],[2,3,4,2],[0,2,2,0]],[[0,1,1,1],[1,1,3,1],[2,3,3,3],[0,2,2,0]],[[0,1,1,1],[1,1,3,1],[2,3,3,2],[0,3,2,0]],[[0,1,1,1],[1,1,3,1],[2,3,3,2],[0,2,3,0]],[[0,1,1,2],[1,1,3,2],[0,2,3,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,3],[0,2,3,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[0,2,3,3],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[0,2,3,2],[1,2,3,1]],[[0,1,1,1],[1,1,3,2],[0,2,3,2],[1,2,2,2]],[[0,1,1,2],[1,1,3,2],[0,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,3],[0,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[0,3,2,3],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[0,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,1,3,2],[0,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,1,3,2],[0,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,1,3,2],[0,3,4,1],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[0,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,1,3,2],[0,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,1,3,2],[0,3,3,1],[1,2,2,2]],[[0,1,1,2],[1,1,3,2],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,1,3,3],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,1,3,2],[0,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,1,3,2],[0,3,3,3],[1,2,1,1]],[[0,1,1,1],[1,1,3,2],[0,3,3,2],[1,2,1,2]],[[0,1,1,2],[1,1,3,2],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,1,3,3],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,1,3,2],[0,3,4,2],[1,2,2,0]],[[0,1,1,1],[1,1,3,2],[0,3,3,3],[1,2,2,0]],[[0,1,1,1],[1,1,3,2],[0,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,1,3,2],[0,3,3,2],[1,2,3,0]],[[0,1,1,2],[1,1,3,2],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,3],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[1,1,3,3],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[1,1,3,2],[1,2,3,1]],[[0,1,1,1],[1,1,3,2],[1,1,3,2],[1,2,2,2]],[[0,1,1,2],[1,1,3,2],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,3],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[1,1,3,2],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[1,1,3,2],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[1,1,3,2],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[1,1,3,2],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[1,1,3,2],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[1,1,3,2],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[1,1,3,2],[1,2,3,1],[1,2,2,2]],[[0,1,1,2],[1,1,3,2],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[1,1,3,3],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[1,1,3,2],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[1,1,3,2],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[1,1,3,2],[1,2,3,2],[1,2,1,2]],[[0,1,1,2],[1,1,3,2],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[1,1,3,3],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[1,1,3,2],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[1,1,3,2],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[1,1,3,2],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[1,1,3,2],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[1,1,3,2],[1,2,3,2],[1,2,3,0]],[[0,1,1,2],[1,1,3,2],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[1,1,3,3],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[1,1,3,2],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[1,1,3,2],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[1,1,3,2],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[1,1,3,2],[1,3,4,0],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,0],[2,2,2,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,0],[1,3,2,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,0],[1,2,3,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,0],[1,2,2,2]],[[0,1,1,1],[1,1,3,2],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[1,1,3,2],[1,3,4,1],[1,2,2,0]],[[0,1,1,1],[1,1,3,2],[1,3,3,1],[2,2,2,0]],[[0,1,1,1],[1,1,3,2],[1,3,3,1],[1,3,2,0]],[[0,1,1,1],[1,1,3,2],[1,3,3,1],[1,2,3,0]],[[0,1,1,2],[1,1,3,2],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[1,1,3,3],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[1,1,3,2],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,2],[1,0,2,2]],[[0,1,1,2],[1,1,3,2],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[1,1,3,3],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[1,1,3,2],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,2],[1,1,1,2]],[[0,1,1,2],[1,1,3,2],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[1,1,3,3],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[1,1,3,2],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[1,1,3,2],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[1,1,3,2],[1,3,3,2],[1,1,3,0]],[[0,1,1,2],[1,1,3,2],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[1,1,3,3],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[1,1,3,2],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[1,1,3,2],[1,3,3,2],[1,2,0,2]],[[0,1,1,2],[1,1,3,2],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[1,1,3,3],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[1,1,3,2],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[1,1,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,2,0],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,2,0],[1,3,3,1],[0,2,0,0]],[[0,1,1,2],[1,1,3,2],[2,0,3,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,3],[2,0,3,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,0,3,3],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,0,3,2],[1,2,3,1]],[[0,1,1,1],[1,1,3,2],[2,0,3,2],[1,2,2,2]],[[0,1,1,2],[1,1,3,2],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,3],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,1,2,3],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,1,2,2],[2,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,1,2,2],[1,3,2,1]],[[0,1,1,1],[1,1,3,2],[2,1,2,2],[1,2,3,1]],[[0,1,1,1],[1,1,3,2],[2,1,2,2],[1,2,2,2]],[[0,1,1,1],[1,1,3,2],[2,1,4,1],[1,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,1,3,1],[2,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,1,3,1],[1,3,2,1]],[[0,1,1,1],[1,1,3,2],[2,1,3,1],[1,2,3,1]],[[0,1,1,1],[1,1,3,2],[2,1,3,1],[1,2,2,2]],[[0,1,1,2],[1,1,3,2],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[1,1,3,3],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,1,3,3],[0,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,1,3,2],[0,2,3,1]],[[0,1,1,1],[1,1,3,2],[2,1,3,2],[0,2,2,2]],[[0,1,1,2],[1,1,3,2],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[1,1,3,3],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[1,1,3,2],[2,1,4,2],[1,2,1,1]],[[0,1,1,1],[1,1,3,2],[2,1,3,3],[1,2,1,1]],[[0,1,1,1],[1,1,3,2],[2,1,3,2],[1,2,1,2]],[[0,1,1,2],[1,1,3,2],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,1,3,3],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,1,3,2],[2,1,4,2],[1,2,2,0]],[[0,1,1,1],[1,1,3,2],[2,1,3,3],[1,2,2,0]],[[0,1,1,1],[1,1,3,2],[2,1,3,2],[2,2,2,0]],[[0,1,1,1],[1,1,3,2],[2,1,3,2],[1,3,2,0]],[[0,1,1,1],[1,1,3,2],[2,1,3,2],[1,2,3,0]],[[0,1,1,2],[1,1,3,2],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[1,1,3,3],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[1,1,3,2],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[1,1,3,2],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[1,1,3,2],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[1,1,3,2],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[1,1,3,2],[2,2,3,1],[0,2,2,2]],[[0,1,1,2],[1,1,3,2],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[1,1,3,3],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[1,1,3,2],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[1,1,3,2],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[1,1,3,2],[2,2,3,2],[0,2,1,2]],[[0,1,1,2],[1,1,3,2],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[1,1,3,3],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[1,1,3,2],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[1,1,3,2],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[1,1,3,2],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[1,1,3,2],[2,2,3,2],[0,2,3,0]],[[0,1,1,2],[1,1,3,2],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[1,1,3,3],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[1,1,3,2],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[1,1,3,2],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[1,1,3,2],[2,3,2,2],[0,1,2,2]],[[0,1,1,2],[1,1,3,2],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[1,1,3,3],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[1,1,3,2],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[1,1,3,2],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[1,1,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[3,3,2,0],[1,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,3,2,0],[1,3,3,0],[1,2,0,0]],[[0,1,1,1],[1,1,3,2],[2,3,4,0],[0,2,2,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,0],[0,3,2,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,0],[0,2,3,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,0],[0,2,2,2]],[[0,1,1,1],[1,1,3,2],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[1,1,3,2],[2,3,4,1],[0,2,2,0]],[[0,1,1,1],[1,1,3,2],[2,3,3,1],[0,3,2,0]],[[0,1,1,1],[1,1,3,2],[2,3,3,1],[0,2,3,0]],[[0,1,1,1],[1,1,3,2],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,1],[1,0,2,2]],[[2,2,2,1],[2,3,2,0],[1,3,3,0],[1,2,0,0]],[[0,1,1,2],[1,1,3,2],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[1,1,3,3],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[1,1,3,2],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,2],[0,0,2,2]],[[0,1,1,2],[1,1,3,2],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,1,3,3],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,1,3,2],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,2],[0,1,1,2]],[[0,1,1,2],[1,1,3,2],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,1,3,3],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,1,3,2],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[1,1,3,2],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[1,1,3,2],[2,3,3,2],[0,1,3,0]],[[0,1,1,2],[1,1,3,2],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,1,3,3],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,1,3,2],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,2],[0,2,0,2]],[[0,1,1,2],[1,1,3,2],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,1,3,3],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,1,3,2],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[1,1,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,2,0],[1,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,2,0],[1,3,3,0],[1,1,1,0]],[[0,1,1,2],[1,1,3,2],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,1,3,3],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,1,3,2],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,2],[1,0,1,2]],[[0,1,1,2],[1,1,3,2],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,1,3,3],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,1,3,2],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[1,1,3,2],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[1,1,3,2],[2,3,3,2],[1,0,3,0]],[[0,1,1,2],[1,1,3,2],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,1,3,3],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,1,3,2],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[1,1,3,2],[2,3,3,2],[1,1,0,2]],[[0,1,1,2],[1,1,3,2],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,1,3,3],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,1,3,2],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[1,1,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,3,2,0],[1,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,2,0],[1,3,3,0],[1,0,2,0]],[[1,2,2,1],[3,3,2,0],[1,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,2,0],[1,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,2,0],[1,3,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,3,2,0],[1,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,2,0],[1,3,3,0],[0,1,2,0]],[[0,1,1,1],[1,2,0,2],[1,3,3,3],[1,2,2,1]],[[0,1,1,1],[1,2,0,2],[1,3,3,2],[2,2,2,1]],[[0,1,1,1],[1,2,0,2],[1,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,2,0,2],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,0,2],[1,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,2,0,2],[2,3,3,3],[0,2,2,1]],[[0,1,1,1],[1,2,0,2],[2,3,3,2],[0,3,2,1]],[[0,1,1,1],[1,2,0,2],[2,3,3,2],[0,2,3,1]],[[0,1,1,1],[1,2,0,2],[2,3,3,2],[0,2,2,2]],[[0,1,1,1],[1,2,1,2],[0,3,3,3],[1,2,2,1]],[[0,1,1,1],[1,2,1,2],[0,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,2,1,2],[0,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,1,2],[0,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,2,1,2],[1,2,3,3],[1,2,2,1]],[[0,1,1,1],[1,2,1,2],[1,2,3,2],[2,2,2,1]],[[0,1,1,1],[1,2,1,2],[1,2,3,2],[1,3,2,1]],[[0,1,1,1],[1,2,1,2],[1,2,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,1,2],[1,2,3,2],[1,2,2,2]],[[0,1,1,1],[1,2,1,2],[1,3,3,3],[1,1,2,1]],[[0,1,1,1],[1,2,1,2],[1,3,3,2],[1,1,3,1]],[[0,1,1,1],[1,2,1,2],[1,3,3,2],[1,1,2,2]],[[0,1,1,1],[1,2,1,2],[2,1,3,3],[1,2,2,1]],[[0,1,1,1],[1,2,1,2],[2,1,3,2],[2,2,2,1]],[[0,1,1,1],[1,2,1,2],[2,1,3,2],[1,3,2,1]],[[0,1,1,1],[1,2,1,2],[2,1,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,1,2],[2,1,3,2],[1,2,2,2]],[[0,1,1,1],[1,2,1,2],[2,2,3,3],[0,2,2,1]],[[0,1,1,1],[1,2,1,2],[2,2,3,2],[0,3,2,1]],[[0,1,1,1],[1,2,1,2],[2,2,3,2],[0,2,3,1]],[[0,1,1,1],[1,2,1,2],[2,2,3,2],[0,2,2,2]],[[0,1,1,1],[1,2,1,2],[2,3,3,3],[0,1,2,1]],[[0,1,1,1],[1,2,1,2],[2,3,3,2],[0,1,3,1]],[[0,1,1,1],[1,2,1,2],[2,3,3,2],[0,1,2,2]],[[0,1,1,1],[1,2,1,2],[2,3,3,3],[1,0,2,1]],[[0,1,1,1],[1,2,1,2],[2,3,3,2],[1,0,3,1]],[[0,1,1,1],[1,2,1,2],[2,3,3,2],[1,0,2,2]],[[0,1,1,2],[1,2,2,2],[0,2,3,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,3],[0,2,3,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[0,2,3,3],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[0,2,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[0,2,3,2],[1,2,2,2]],[[0,1,1,2],[1,2,2,2],[0,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,3],[0,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[0,3,2,3],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[0,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,2,2,2],[0,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[0,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,2,2,2],[0,3,4,1],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[0,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,2,2,2],[0,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[0,3,3,1],[1,2,2,2]],[[0,1,1,2],[1,2,2,2],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,2,2,3],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[0,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[0,3,3,3],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[0,3,3,2],[1,2,1,2]],[[0,1,1,2],[1,2,2,2],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,3],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[0,3,4,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[0,3,3,3],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[0,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,2,2,2],[0,3,3,2],[1,2,3,0]],[[0,1,1,2],[1,2,2,2],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,3],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,1,3,3],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,1,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[1,1,3,2],[1,2,2,2]],[[0,1,1,2],[1,2,2,2],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,3],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[1,2,2,2],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[1,2,2,2],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[1,2,2,2],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[1,2,3,1],[1,2,2,2]],[[0,1,1,2],[1,2,2,2],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[1,2,2,3],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[1,2,3,2],[1,2,1,2]],[[0,1,1,2],[1,2,2,2],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,3],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[1,2,2,2],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[1,2,2,2],[1,2,3,2],[1,2,3,0]],[[0,1,1,2],[1,2,2,2],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,3],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,4,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,1,3],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,1,2],[2,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,1,2],[1,3,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,1,2],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[1,3,1,2],[1,2,2,2]],[[0,1,1,1],[1,2,2,2],[1,4,2,1],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,2,1],[2,2,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,2,1],[1,3,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,2,1],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[1,3,2,1],[1,2,2,2]],[[0,1,1,2],[1,2,2,2],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[1,2,2,3],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[1,2,2,2],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[1,2,2,2],[1,4,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[1,3,2,2],[2,2,2,0]],[[0,1,1,1],[1,2,2,2],[1,3,2,2],[1,3,2,0]],[[0,1,1,1],[1,2,2,2],[1,3,2,2],[1,2,3,0]],[[0,1,1,1],[1,2,2,2],[1,4,3,1],[1,1,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[1,2,2,2],[1,4,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[1,3,4,1],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,1],[2,2,1,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,1],[1,3,1,1]],[[0,1,1,2],[1,2,2,2],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[1,2,2,3],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,2],[1,0,2,2]],[[0,1,1,2],[1,2,2,2],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[1,2,2,3],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[1,2,2,2],[1,4,3,2],[1,1,1,1]],[[0,1,1,1],[1,2,2,2],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,2],[1,1,1,2]],[[0,1,1,2],[1,2,2,2],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[1,2,2,3],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[1,2,2,2],[1,4,3,2],[1,1,2,0]],[[0,1,1,1],[1,2,2,2],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[1,2,2,2],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[1,2,2,2],[1,3,3,2],[1,1,3,0]],[[0,1,1,2],[1,2,2,2],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[1,2,2,3],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[1,2,2,2],[1,4,3,2],[1,2,0,1]],[[0,1,1,1],[1,2,2,2],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,2],[2,2,0,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,2],[1,3,0,1]],[[0,1,1,1],[1,2,2,2],[1,3,3,2],[1,2,0,2]],[[0,1,1,2],[1,2,2,2],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[1,2,2,3],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[1,2,2,2],[1,4,3,2],[1,2,1,0]],[[0,1,1,1],[1,2,2,2],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[1,2,2,2],[1,3,3,3],[1,2,1,0]],[[0,1,1,1],[1,2,2,2],[1,3,3,2],[2,2,1,0]],[[0,1,1,1],[1,2,2,2],[1,3,3,2],[1,3,1,0]],[[0,1,1,2],[1,2,2,2],[2,0,3,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,3],[2,0,3,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,0,3,3],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,0,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[2,0,3,2],[1,2,2,2]],[[0,1,1,2],[1,2,2,2],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,3],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[3,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,1,2,3],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,1,2,2],[2,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,1,2,2],[1,3,2,1]],[[0,1,1,1],[1,2,2,2],[2,1,2,2],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[2,1,2,2],[1,2,2,2]],[[0,1,1,1],[1,2,2,2],[3,1,3,1],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,1,4,1],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,1,3,1],[2,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,1,3,1],[1,3,2,1]],[[0,1,1,1],[1,2,2,2],[2,1,3,1],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[2,1,3,1],[1,2,2,2]],[[0,1,1,2],[1,2,2,2],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[1,2,2,3],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,1,3,3],[0,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,1,3,2],[0,2,3,1]],[[0,1,1,1],[1,2,2,2],[2,1,3,2],[0,2,2,2]],[[0,1,1,2],[1,2,2,2],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[1,2,2,3],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[2,1,4,2],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[2,1,3,3],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[2,1,3,2],[1,2,1,2]],[[0,1,1,2],[1,2,2,2],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,3],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[3,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[2,1,4,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[2,1,3,3],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[2,1,3,2],[2,2,2,0]],[[0,1,1,1],[1,2,2,2],[2,1,3,2],[1,3,2,0]],[[0,1,1,1],[1,2,2,2],[2,1,3,2],[1,2,3,0]],[[0,1,1,2],[1,2,2,2],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,3],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[3,2,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,1,3],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,1,2],[2,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,1,2],[1,3,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,1,2],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[2,2,1,2],[1,2,2,2]],[[0,1,1,1],[1,2,2,2],[3,2,2,1],[1,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,2,1],[2,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,2,1],[1,3,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,2,1],[1,2,3,1]],[[0,1,1,1],[1,2,2,2],[2,2,2,1],[1,2,2,2]],[[0,1,1,2],[1,2,2,2],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[1,2,2,3],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[1,2,2,2],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[1,2,2,2],[3,2,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,2,2],[2,2,2,2],[2,2,2,0]],[[0,1,1,1],[1,2,2,2],[2,2,2,2],[1,3,2,0]],[[0,1,1,1],[1,2,2,2],[2,2,2,2],[1,2,3,0]],[[0,1,1,1],[1,2,2,2],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[1,2,2,2],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[1,2,2,2],[2,2,3,1],[0,2,2,2]],[[0,1,1,1],[1,2,2,2],[3,2,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,2,2],[2,2,3,1],[2,2,1,1]],[[0,1,1,1],[1,2,2,2],[2,2,3,1],[1,3,1,1]],[[0,1,1,2],[1,2,2,2],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[1,2,2,3],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[1,2,2,2],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[1,2,2,2],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[1,2,2,2],[2,2,3,2],[0,2,1,2]],[[0,1,1,2],[1,2,2,2],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[1,2,2,3],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[1,2,2,2],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[1,2,2,2],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[1,2,2,2],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[1,2,2,2],[2,2,3,2],[0,2,3,0]],[[0,1,1,1],[1,2,2,2],[3,2,3,2],[1,2,0,1]],[[0,1,1,1],[1,2,2,2],[2,2,3,2],[2,2,0,1]],[[0,1,1,1],[1,2,2,2],[2,2,3,2],[1,3,0,1]],[[0,1,1,1],[1,2,2,2],[3,2,3,2],[1,2,1,0]],[[0,1,1,1],[1,2,2,2],[2,2,3,2],[2,2,1,0]],[[0,1,1,1],[1,2,2,2],[2,2,3,2],[1,3,1,0]],[[0,1,1,2],[1,2,2,2],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[1,2,2,3],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[1,2,2,2],[3,3,1,2],[0,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,4,1,2],[0,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,1,3],[0,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,1,2],[0,3,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,1,2],[0,2,3,1]],[[0,1,1,1],[1,2,2,2],[2,3,1,2],[0,2,2,2]],[[0,1,1,1],[1,2,2,2],[3,3,1,2],[1,1,2,1]],[[0,1,1,1],[1,2,2,2],[2,4,1,2],[1,1,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,1,2],[2,1,2,1]],[[0,1,1,1],[1,2,2,2],[3,3,2,1],[0,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,4,2,1],[0,2,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,2,1],[0,3,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,2,1],[0,2,3,1]],[[0,1,1,1],[1,2,2,2],[2,3,2,1],[0,2,2,2]],[[0,1,1,1],[1,2,2,2],[3,3,2,1],[1,1,2,1]],[[0,1,1,1],[1,2,2,2],[2,4,2,1],[1,1,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,2,1],[2,1,2,1]],[[0,1,1,2],[1,2,2,2],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[1,2,2,3],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[1,2,2,2],[2,3,2,2],[0,1,2,2]],[[0,1,1,1],[1,2,2,2],[3,3,2,2],[0,2,2,0]],[[0,1,1,1],[1,2,2,2],[2,4,2,2],[0,2,2,0]],[[0,1,1,1],[1,2,2,2],[2,3,2,2],[0,3,2,0]],[[0,1,1,1],[1,2,2,2],[2,3,2,2],[0,2,3,0]],[[0,1,1,2],[1,2,2,2],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[1,2,2,3],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[1,2,2,2],[2,3,2,2],[1,0,2,2]],[[0,1,1,1],[1,2,2,2],[3,3,2,2],[1,1,2,0]],[[0,1,1,1],[1,2,2,2],[2,4,2,2],[1,1,2,0]],[[0,1,1,1],[1,2,2,2],[2,3,2,2],[2,1,2,0]],[[0,1,1,1],[1,2,2,2],[3,3,3,1],[0,1,2,1]],[[0,1,1,1],[1,2,2,2],[2,4,3,1],[0,1,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[1,2,2,2],[3,3,3,1],[0,2,1,1]],[[0,1,1,1],[1,2,2,2],[2,4,3,1],[0,2,1,1]],[[0,1,1,1],[1,2,2,2],[2,3,4,1],[0,2,1,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,1],[0,3,1,1]],[[0,1,1,1],[1,2,2,2],[3,3,3,1],[1,0,2,1]],[[0,1,1,1],[1,2,2,2],[2,4,3,1],[1,0,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,1],[2,0,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,1],[1,0,2,2]],[[0,1,1,1],[1,2,2,2],[3,3,3,1],[1,1,1,1]],[[0,1,1,1],[1,2,2,2],[2,4,3,1],[1,1,1,1]],[[0,1,1,1],[1,2,2,2],[2,3,4,1],[1,1,1,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,1],[2,1,1,1]],[[0,1,1,2],[1,2,2,2],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[1,2,2,3],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[0,0,2,2]],[[0,1,1,2],[1,2,2,2],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,2,2,3],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,2,2,2],[3,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,2,2,2],[2,4,3,2],[0,1,1,1]],[[0,1,1,1],[1,2,2,2],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[0,1,1,2]],[[0,1,1,2],[1,2,2,2],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,2,2,3],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,2,2,2],[3,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,2,2,2],[2,4,3,2],[0,1,2,0]],[[0,1,1,1],[1,2,2,2],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[1,2,2,2],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[0,1,3,0]],[[0,1,1,2],[1,2,2,2],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,2,2,3],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,2,2,2],[3,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,2,2,2],[2,4,3,2],[0,2,0,1]],[[0,1,1,1],[1,2,2,2],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[0,3,0,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[0,2,0,2]],[[0,1,1,2],[1,2,2,2],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,2,2,3],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,2,2,2],[3,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,2,2,2],[2,4,3,2],[0,2,1,0]],[[0,1,1,1],[1,2,2,2],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[1,2,2,2],[2,3,3,3],[0,2,1,0]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[0,3,1,0]],[[0,1,1,2],[1,2,2,2],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,2,2,3],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,2,2,2],[3,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,2,2,2],[2,4,3,2],[1,0,1,1]],[[0,1,1,1],[1,2,2,2],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[2,0,1,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[1,0,1,2]],[[0,1,1,2],[1,2,2,2],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,2,2,3],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,2,2,2],[3,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,2,2,2],[2,4,3,2],[1,0,2,0]],[[0,1,1,1],[1,2,2,2],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[1,2,2,2],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[2,0,2,0]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[1,0,3,0]],[[0,1,1,2],[1,2,2,2],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,2,2,3],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,2,2,2],[3,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,2,2,2],[2,4,3,2],[1,1,0,1]],[[0,1,1,1],[1,2,2,2],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[2,1,0,1]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[1,1,0,2]],[[0,1,1,2],[1,2,2,2],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,2,2,3],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,2,2,2],[3,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,2,2,2],[2,4,3,2],[1,1,1,0]],[[0,1,1,1],[1,2,2,2],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[1,2,2,2],[2,3,3,3],[1,1,1,0]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[2,1,1,0]],[[0,1,1,1],[1,2,2,2],[3,3,3,2],[1,2,0,0]],[[0,1,1,1],[1,2,2,2],[2,4,3,2],[1,2,0,0]],[[0,1,1,1],[1,2,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[3,3,2,0],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,2,0],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,2,0],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,3,2,0],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,3,2,0],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,2,0],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,2,0],[1,3,2,1],[1,1,0,1]],[[0,1,1,1],[1,2,3,0],[0,3,4,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,0],[0,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,0],[0,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,0],[0,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,2,3,0],[1,2,4,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,0],[1,2,3,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,0],[1,2,3,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,0],[1,2,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,0],[1,2,3,2],[1,2,2,2]],[[0,1,1,1],[1,2,3,0],[1,4,2,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,0],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,0],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,0],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,0],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,2,3,0],[1,4,3,2],[1,1,2,1]],[[0,1,1,1],[1,2,3,0],[1,3,4,2],[1,1,2,1]],[[0,1,1,1],[1,2,3,0],[1,3,3,2],[1,1,3,1]],[[0,1,1,1],[1,2,3,0],[1,3,3,2],[1,1,2,2]],[[0,1,1,1],[1,2,3,0],[1,4,3,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,0],[1,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,0],[1,3,3,2],[2,2,1,1]],[[0,1,1,1],[1,2,3,0],[1,3,3,2],[1,3,1,1]],[[0,1,1,1],[1,2,3,0],[3,1,3,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,0],[2,1,4,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,0],[2,1,3,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,0],[2,1,3,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,0],[2,1,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,0],[2,1,3,2],[1,2,2,2]],[[0,1,1,1],[1,2,3,0],[3,2,2,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,0],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,0],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,0],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,0],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[1,2,3,0],[2,2,4,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,0],[2,2,3,2],[0,3,2,1]],[[0,1,1,1],[1,2,3,0],[2,2,3,2],[0,2,3,1]],[[0,1,1,1],[1,2,3,0],[2,2,3,2],[0,2,2,2]],[[0,1,1,1],[1,2,3,0],[3,2,3,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,0],[2,2,3,2],[2,2,1,1]],[[0,1,1,1],[1,2,3,0],[2,2,3,2],[1,3,1,1]],[[0,1,1,1],[1,2,3,0],[3,3,2,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,0],[2,4,2,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,0],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[1,2,3,0],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[1,2,3,0],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[1,2,3,0],[3,3,2,2],[1,1,2,1]],[[0,1,1,1],[1,2,3,0],[2,4,2,2],[1,1,2,1]],[[0,1,1,1],[1,2,3,0],[2,3,2,2],[2,1,2,1]],[[0,1,1,1],[1,2,3,0],[3,3,3,2],[0,1,2,1]],[[0,1,1,1],[1,2,3,0],[2,4,3,2],[0,1,2,1]],[[0,1,1,1],[1,2,3,0],[2,3,4,2],[0,1,2,1]],[[0,1,1,1],[1,2,3,0],[2,3,3,2],[0,1,3,1]],[[0,1,1,1],[1,2,3,0],[2,3,3,2],[0,1,2,2]],[[0,1,1,1],[1,2,3,0],[3,3,3,2],[0,2,1,1]],[[0,1,1,1],[1,2,3,0],[2,4,3,2],[0,2,1,1]],[[0,1,1,1],[1,2,3,0],[2,3,4,2],[0,2,1,1]],[[0,1,1,1],[1,2,3,0],[2,3,3,2],[0,3,1,1]],[[0,1,1,1],[1,2,3,0],[3,3,3,2],[1,0,2,1]],[[0,1,1,1],[1,2,3,0],[2,4,3,2],[1,0,2,1]],[[0,1,1,1],[1,2,3,0],[2,3,4,2],[1,0,2,1]],[[0,1,1,1],[1,2,3,0],[2,3,3,2],[2,0,2,1]],[[0,1,1,1],[1,2,3,0],[2,3,3,2],[1,0,3,1]],[[0,1,1,1],[1,2,3,0],[2,3,3,2],[1,0,2,2]],[[0,1,1,1],[1,2,3,0],[3,3,3,2],[1,1,1,1]],[[0,1,1,1],[1,2,3,0],[2,4,3,2],[1,1,1,1]],[[0,1,1,1],[1,2,3,0],[2,3,4,2],[1,1,1,1]],[[0,1,1,1],[1,2,3,0],[2,3,3,2],[2,1,1,1]],[[2,2,2,1],[2,3,2,0],[1,3,2,1],[1,1,0,1]],[[0,1,1,1],[1,2,3,1],[0,2,3,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[0,2,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[0,2,3,2],[1,2,2,2]],[[0,1,1,1],[1,2,3,1],[0,3,2,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[0,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[0,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[0,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,2,4,1],[0,3,3,1],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[0,3,4,1],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[0,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[0,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[0,3,3,1],[1,2,2,2]],[[0,1,1,1],[1,2,4,1],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[0,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[0,3,3,3],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[0,3,3,2],[1,2,1,2]],[[0,1,1,1],[1,2,4,1],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[0,3,4,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[0,3,3,3],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[0,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,2,3,1],[0,3,3,2],[1,2,3,0]],[[0,1,1,1],[1,2,3,1],[1,1,3,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,1,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[1,1,3,2],[1,2,2,2]],[[0,1,1,1],[1,2,3,1],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[1,2,4,1],[1,2,3,1],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[1,2,3,1],[1,2,2,2]],[[0,1,1,1],[1,2,4,1],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[1,2,3,2],[1,2,1,2]],[[0,1,1,1],[1,2,4,1],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[1,2,3,1],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[1,2,3,1],[1,2,3,2],[1,2,3,0]],[[0,1,1,1],[1,2,3,1],[1,4,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,1,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,1,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,1,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,1,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[1,3,1,2],[1,2,2,2]],[[0,1,1,1],[1,2,3,1],[1,4,2,1],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,2,1],[2,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,2,1],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,2,1],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[1,3,2,1],[1,2,2,2]],[[0,1,1,1],[1,2,3,1],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[1,2,3,1],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[1,2,3,1],[1,4,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[1,3,2,2],[2,2,2,0]],[[0,1,1,1],[1,2,3,1],[1,3,2,2],[1,3,2,0]],[[0,1,1,1],[1,2,3,1],[1,3,2,2],[1,2,3,0]],[[0,1,1,1],[1,2,3,1],[1,4,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,0],[2,2,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,0],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,0],[1,2,3,1]],[[0,1,1,1],[1,2,4,1],[1,3,3,1],[1,1,2,1]],[[0,1,1,1],[1,2,3,1],[1,4,3,1],[1,1,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[1,2,4,1],[1,3,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[1,4,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[1,3,4,1],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,1],[2,2,1,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,1],[1,3,1,1]],[[0,1,1,1],[1,2,4,1],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,2],[1,0,2,2]],[[0,1,1,1],[1,2,4,1],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[1,2,3,1],[1,4,3,2],[1,1,1,1]],[[0,1,1,1],[1,2,3,1],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,2],[1,1,1,2]],[[0,1,1,1],[1,2,4,1],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[1,2,3,1],[1,4,3,2],[1,1,2,0]],[[0,1,1,1],[1,2,3,1],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[1,2,3,1],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[1,2,3,1],[1,3,3,2],[1,1,3,0]],[[0,1,1,1],[1,2,4,1],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[1,2,3,1],[1,4,3,2],[1,2,0,1]],[[0,1,1,1],[1,2,3,1],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,2],[2,2,0,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,2],[1,3,0,1]],[[0,1,1,1],[1,2,3,1],[1,3,3,2],[1,2,0,2]],[[0,1,1,1],[1,2,4,1],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[1,2,3,1],[1,4,3,2],[1,2,1,0]],[[0,1,1,1],[1,2,3,1],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[1,2,3,1],[1,3,3,3],[1,2,1,0]],[[0,1,1,1],[1,2,3,1],[1,3,3,2],[2,2,1,0]],[[0,1,1,1],[1,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,2,0],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,2,0],[1,3,2,1],[1,0,2,0]],[[0,1,1,1],[1,2,3,1],[2,0,3,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,0,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[2,0,3,2],[1,2,2,2]],[[0,1,1,1],[1,2,3,1],[3,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,1,2,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,1,2,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,1,2,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[2,1,2,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[2,1,2,2],[1,2,2,2]],[[0,1,1,1],[1,2,4,1],[2,1,3,1],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[3,1,3,1],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,1,4,1],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,1,3,1],[2,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,1,3,1],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[2,1,3,1],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[2,1,3,1],[1,2,2,2]],[[0,1,1,1],[1,2,3,1],[2,1,3,3],[0,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,1,3,2],[0,2,3,1]],[[0,1,1,1],[1,2,3,1],[2,1,3,2],[0,2,2,2]],[[0,1,1,1],[1,2,4,1],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[2,1,4,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[2,1,3,3],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[2,1,3,2],[1,2,1,2]],[[0,1,1,1],[1,2,4,1],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[3,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[2,1,4,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[2,1,3,3],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[2,1,3,2],[2,2,2,0]],[[0,1,1,1],[1,2,3,1],[2,1,3,2],[1,3,2,0]],[[0,1,1,1],[1,2,3,1],[2,1,3,2],[1,2,3,0]],[[0,1,1,1],[1,2,3,1],[3,2,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,1,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,1,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,1,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,1,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[2,2,1,2],[1,2,2,2]],[[0,1,1,1],[1,2,3,1],[3,2,2,1],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,2,1],[2,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,2,1],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,2,1],[1,2,3,1]],[[0,1,1,1],[1,2,3,1],[2,2,2,1],[1,2,2,2]],[[0,1,1,1],[1,2,3,1],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[1,2,3,1],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[1,2,3,1],[3,2,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,1],[2,2,2,2],[2,2,2,0]],[[0,1,1,1],[1,2,3,1],[2,2,2,2],[1,3,2,0]],[[0,1,1,1],[1,2,3,1],[2,2,2,2],[1,2,3,0]],[[0,1,1,1],[1,2,3,1],[3,2,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,0],[2,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,0],[1,3,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,0],[1,2,3,1]],[[0,1,1,1],[1,2,4,1],[2,2,3,1],[0,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,1],[0,2,2,2]],[[0,1,1,1],[1,2,3,1],[3,2,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,1],[2,2,1,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,1],[1,3,1,1]],[[0,1,1,1],[1,2,4,1],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[1,2,3,1],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,2],[0,2,1,2]],[[0,1,1,1],[1,2,4,1],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[1,2,3,1],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[1,2,3,1],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[1,2,3,1],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[1,2,3,1],[2,2,3,2],[0,2,3,0]],[[0,1,1,1],[1,2,3,1],[3,2,3,2],[1,2,0,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,2],[2,2,0,1]],[[0,1,1,1],[1,2,3,1],[2,2,3,2],[1,3,0,1]],[[0,1,1,1],[1,2,3,1],[3,2,3,2],[1,2,1,0]],[[0,1,1,1],[1,2,3,1],[2,2,3,2],[2,2,1,0]],[[0,1,1,1],[1,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,2,1],[0,2,1,0]],[[0,1,1,1],[1,2,3,1],[3,3,1,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,4,1,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,1,3],[0,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,1,2],[0,3,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,1,2],[0,2,3,1]],[[0,1,1,1],[1,2,3,1],[2,3,1,2],[0,2,2,2]],[[0,1,1,1],[1,2,3,1],[3,3,1,2],[1,1,2,1]],[[0,1,1,1],[1,2,3,1],[2,4,1,2],[1,1,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,1,2],[2,1,2,1]],[[0,1,1,1],[1,2,3,1],[3,3,2,1],[0,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,4,2,1],[0,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,2,1],[0,3,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,2,1],[0,2,3,1]],[[0,1,1,1],[1,2,3,1],[2,3,2,1],[0,2,2,2]],[[0,1,1,1],[1,2,3,1],[3,3,2,1],[1,1,2,1]],[[0,1,1,1],[1,2,3,1],[2,4,2,1],[1,1,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,2,1],[2,1,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[1,2,3,1],[2,3,2,2],[0,1,2,2]],[[0,1,1,1],[1,2,3,1],[3,3,2,2],[0,2,2,0]],[[0,1,1,1],[1,2,3,1],[2,4,2,2],[0,2,2,0]],[[0,1,1,1],[1,2,3,1],[2,3,2,2],[0,3,2,0]],[[0,1,1,1],[1,2,3,1],[2,3,2,2],[0,2,3,0]],[[0,1,1,1],[1,2,3,1],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[1,2,3,1],[2,3,2,2],[1,0,2,2]],[[0,1,1,1],[1,2,3,1],[3,3,2,2],[1,1,2,0]],[[0,1,1,1],[1,2,3,1],[2,4,2,2],[1,1,2,0]],[[0,1,1,1],[1,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,3,2,1],[2,3,2,0],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,2,0],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,2,0],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,2,0],[1,3,2,1],[0,2,0,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,0],[0,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,4,3,0],[0,2,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,0],[0,3,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,0],[0,2,3,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,0],[1,1,2,1]],[[0,1,1,1],[1,2,3,1],[2,4,3,0],[1,1,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,0],[2,1,2,1]],[[0,1,1,1],[1,2,4,1],[2,3,3,1],[0,1,2,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,1],[0,1,2,1]],[[0,1,1,1],[1,2,3,1],[2,4,3,1],[0,1,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[1,2,4,1],[2,3,3,1],[0,2,1,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,1],[0,2,1,1]],[[0,1,1,1],[1,2,3,1],[2,4,3,1],[0,2,1,1]],[[0,1,1,1],[1,2,3,1],[2,3,4,1],[0,2,1,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,1],[0,3,1,1]],[[0,1,1,1],[1,2,4,1],[2,3,3,1],[1,0,2,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,1],[1,0,2,1]],[[0,1,1,1],[1,2,3,1],[2,4,3,1],[1,0,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,1],[2,0,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,1],[1,0,2,2]],[[0,1,1,1],[1,2,4,1],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,1],[1,1,1,1]],[[0,1,1,1],[1,2,3,1],[2,4,3,1],[1,1,1,1]],[[0,1,1,1],[1,2,3,1],[2,3,4,1],[1,1,1,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,1],[2,1,1,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,1],[1,2,0,1]],[[0,1,1,1],[1,2,3,1],[2,4,3,1],[1,2,0,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[3,3,2,0],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,2,0],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,2,0],[1,3,2,1],[0,1,2,0]],[[0,1,1,1],[1,2,4,1],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[0,0,2,2]],[[0,1,1,1],[1,2,4,1],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,2,3,1],[2,4,3,2],[0,1,1,1]],[[0,1,1,1],[1,2,3,1],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[0,1,1,2]],[[0,1,1,1],[1,2,4,1],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,2,3,1],[3,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,2,3,1],[2,4,3,2],[0,1,2,0]],[[0,1,1,1],[1,2,3,1],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[1,2,3,1],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[0,1,3,0]],[[0,1,1,1],[1,2,4,1],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,2,3,1],[2,4,3,2],[0,2,0,1]],[[0,1,1,1],[1,2,3,1],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[0,3,0,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[0,2,0,2]],[[0,1,1,1],[1,2,4,1],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,2,3,1],[3,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,2,3,1],[2,4,3,2],[0,2,1,0]],[[0,1,1,1],[1,2,3,1],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[1,2,3,1],[2,3,3,3],[0,2,1,0]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,2,0],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,3,2,0],[1,3,2,0],[1,2,0,1]],[[0,1,1,1],[1,2,4,1],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,2,3,1],[2,4,3,2],[1,0,1,1]],[[0,1,1,1],[1,2,3,1],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[2,0,1,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[1,0,1,2]],[[0,1,1,1],[1,2,4,1],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,2,3,1],[3,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,2,3,1],[2,4,3,2],[1,0,2,0]],[[0,1,1,1],[1,2,3,1],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[1,2,3,1],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[2,0,2,0]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[1,0,3,0]],[[0,1,1,1],[1,2,4,1],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,2,3,1],[2,4,3,2],[1,1,0,1]],[[0,1,1,1],[1,2,3,1],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[2,1,0,1]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[1,1,0,2]],[[0,1,1,1],[1,2,4,1],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,2,3,1],[3,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,2,3,1],[2,4,3,2],[1,1,1,0]],[[0,1,1,1],[1,2,3,1],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[1,2,3,1],[2,3,3,3],[1,1,1,0]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,2,0],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,2,0],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,3,2,0],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,2,0],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,2,0],[1,3,2,0],[1,0,2,1]],[[0,1,1,1],[1,2,3,1],[3,3,3,2],[1,2,0,0]],[[0,1,1,1],[1,2,3,1],[2,4,3,2],[1,2,0,0]],[[0,1,1,1],[1,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[3,3,2,0],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,2,0],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,2,0],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,2,0],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,2,0],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,2,0],[1,3,2,0],[0,1,2,1]],[[0,1,1,2],[1,2,3,2],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,4,2],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,3],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[0,3,1,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[0,3,1,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,2],[0,3,1,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,2],[0,3,1,2],[1,2,2,2]],[[0,1,1,2],[1,2,3,2],[0,3,2,2],[1,2,1,1]],[[0,1,1,1],[1,2,4,2],[0,3,2,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,3],[0,3,2,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[0,3,2,3],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[0,3,2,2],[1,2,1,2]],[[0,1,1,2],[1,2,3,2],[0,3,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,4,2],[0,3,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,3],[0,3,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[0,3,2,3],[1,2,2,0]],[[0,1,1,2],[1,2,3,2],[0,3,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,4,2],[0,3,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,3],[0,3,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[0,3,4,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[0,3,3,0],[1,3,2,1]],[[0,1,1,1],[1,2,3,2],[0,3,3,0],[1,2,3,1]],[[0,1,1,1],[1,2,3,2],[0,3,3,0],[1,2,2,2]],[[0,1,1,2],[1,2,3,2],[0,3,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,4,2],[0,3,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,3,3],[0,3,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[0,3,4,1],[1,2,1,1]],[[0,1,1,2],[1,2,3,2],[0,3,3,1],[1,2,2,0]],[[0,1,1,1],[1,2,4,2],[0,3,3,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,3],[0,3,3,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[0,3,4,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[0,3,3,1],[1,3,2,0]],[[0,1,1,1],[1,2,3,2],[0,3,3,1],[1,2,3,0]],[[0,1,1,2],[1,2,3,2],[1,0,3,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,3],[1,0,3,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,0,3,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,0,3,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,2],[1,0,3,2],[1,2,2,2]],[[0,1,1,2],[1,2,3,2],[1,2,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,4,2],[1,2,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,3],[1,2,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,2,1,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,2,1,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,2,1,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,2],[1,2,1,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,2],[1,2,1,2],[1,2,2,2]],[[0,1,1,2],[1,2,3,2],[1,2,2,2],[1,2,1,1]],[[0,1,1,1],[1,2,4,2],[1,2,2,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,3],[1,2,2,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[1,2,2,3],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[1,2,2,2],[1,2,1,2]],[[0,1,1,2],[1,2,3,2],[1,2,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,4,2],[1,2,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,3],[1,2,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[1,2,2,3],[1,2,2,0]],[[0,1,1,2],[1,2,3,2],[1,2,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,4,2],[1,2,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,3],[1,2,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,2,4,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,2,3,0],[2,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,2,3,0],[1,3,2,1]],[[0,1,1,1],[1,2,3,2],[1,2,3,0],[1,2,3,1]],[[0,1,1,1],[1,2,3,2],[1,2,3,0],[1,2,2,2]],[[0,1,1,2],[1,2,3,2],[1,2,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,4,2],[1,2,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,3,3],[1,2,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[1,2,4,1],[1,2,1,1]],[[0,1,1,2],[1,2,3,2],[1,2,3,1],[1,2,2,0]],[[0,1,1,1],[1,2,4,2],[1,2,3,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,3],[1,2,3,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[1,2,4,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[1,2,3,1],[2,2,2,0]],[[0,1,1,1],[1,2,3,2],[1,2,3,1],[1,3,2,0]],[[0,1,1,1],[1,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[3,3,2,0],[1,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,2,0],[1,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,2,0],[1,3,1,1],[1,1,2,0]],[[0,1,1,2],[1,2,3,2],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[1,2,4,2],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,3],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,4,0,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,0,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,0,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,0,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,0,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,2],[1,3,0,2],[1,2,2,2]],[[0,1,1,2],[1,2,3,2],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[1,2,4,2],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[1,2,3,3],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,1,3],[1,1,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,1,2],[1,1,3,1]],[[0,1,1,1],[1,2,3,2],[1,3,1,2],[1,1,2,2]],[[0,1,1,1],[1,2,3,2],[1,4,2,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,2,0],[2,2,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,2,0],[1,3,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,2,0],[1,2,3,1]],[[0,1,1,1],[1,2,3,2],[1,3,2,0],[1,2,2,2]],[[0,1,1,1],[1,2,3,2],[1,4,2,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[1,3,2,1],[2,2,2,0]],[[0,1,1,1],[1,2,3,2],[1,3,2,1],[1,3,2,0]],[[0,1,1,1],[1,2,3,2],[1,3,2,1],[1,2,3,0]],[[0,1,1,2],[1,2,3,2],[1,3,2,2],[1,0,2,1]],[[0,1,1,1],[1,2,4,2],[1,3,2,2],[1,0,2,1]],[[0,1,1,1],[1,2,3,3],[1,3,2,2],[1,0,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,2,3],[1,0,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,2,2],[1,0,2,2]],[[0,1,1,2],[1,2,3,2],[1,3,2,2],[1,1,1,1]],[[0,1,1,1],[1,2,4,2],[1,3,2,2],[1,1,1,1]],[[0,1,1,1],[1,2,3,3],[1,3,2,2],[1,1,1,1]],[[0,1,1,1],[1,2,3,2],[1,3,2,3],[1,1,1,1]],[[0,1,1,1],[1,2,3,2],[1,3,2,2],[1,1,1,2]],[[0,1,1,2],[1,2,3,2],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[1,2,4,2],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[1,2,3,3],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[1,2,3,2],[1,3,2,3],[1,1,2,0]],[[0,1,1,2],[1,2,3,2],[1,3,2,2],[1,2,0,1]],[[0,1,1,1],[1,2,4,2],[1,3,2,2],[1,2,0,1]],[[0,1,1,1],[1,2,3,3],[1,3,2,2],[1,2,0,1]],[[0,1,1,1],[1,2,3,2],[1,3,2,3],[1,2,0,1]],[[0,1,1,1],[1,2,3,2],[1,3,2,2],[1,2,0,2]],[[0,1,1,2],[1,2,3,2],[1,3,2,2],[1,2,1,0]],[[0,1,1,1],[1,2,4,2],[1,3,2,2],[1,2,1,0]],[[0,1,1,1],[1,2,3,3],[1,3,2,2],[1,2,1,0]],[[0,1,1,1],[1,2,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,2,0],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,2,0],[1,3,1,1],[0,2,2,0]],[[0,1,1,2],[1,2,3,2],[1,3,3,0],[1,1,2,1]],[[0,1,1,1],[1,2,4,2],[1,3,3,0],[1,1,2,1]],[[0,1,1,1],[1,2,3,3],[1,3,3,0],[1,1,2,1]],[[0,1,1,1],[1,2,3,2],[1,4,3,0],[1,1,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,4,0],[1,1,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,3,0],[1,1,3,1]],[[0,1,1,1],[1,2,3,2],[1,3,3,0],[1,1,2,2]],[[0,1,1,2],[1,2,3,2],[1,3,3,0],[1,2,1,1]],[[0,1,1,1],[1,2,4,2],[1,3,3,0],[1,2,1,1]],[[0,1,1,1],[1,2,3,3],[1,3,3,0],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[1,4,3,0],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[1,3,4,0],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[1,3,3,0],[2,2,1,1]],[[0,1,1,1],[1,2,3,2],[1,3,3,0],[1,3,1,1]],[[0,1,1,2],[1,2,3,2],[1,3,3,1],[1,0,2,1]],[[0,1,1,1],[1,2,4,2],[1,3,3,1],[1,0,2,1]],[[0,1,1,1],[1,2,3,3],[1,3,3,1],[1,0,2,1]],[[0,1,1,1],[1,2,3,2],[1,3,4,1],[1,0,2,1]],[[0,1,1,2],[1,2,3,2],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[1,2,4,2],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[1,2,3,3],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[1,2,3,2],[1,4,3,1],[1,1,1,1]],[[0,1,1,1],[1,2,3,2],[1,3,4,1],[1,1,1,1]],[[0,1,1,2],[1,2,3,2],[1,3,3,1],[1,1,2,0]],[[0,1,1,1],[1,2,4,2],[1,3,3,1],[1,1,2,0]],[[0,1,1,1],[1,2,3,3],[1,3,3,1],[1,1,2,0]],[[0,1,1,1],[1,2,3,2],[1,4,3,1],[1,1,2,0]],[[0,1,1,1],[1,2,3,2],[1,3,4,1],[1,1,2,0]],[[0,1,1,1],[1,2,3,2],[1,3,3,1],[1,1,3,0]],[[0,1,1,2],[1,2,3,2],[1,3,3,1],[1,2,0,1]],[[0,1,1,1],[1,2,4,2],[1,3,3,1],[1,2,0,1]],[[0,1,1,1],[1,2,3,3],[1,3,3,1],[1,2,0,1]],[[0,1,1,1],[1,2,3,2],[1,4,3,1],[1,2,0,1]],[[0,1,1,1],[1,2,3,2],[1,3,4,1],[1,2,0,1]],[[0,1,1,1],[1,2,3,2],[1,3,3,1],[2,2,0,1]],[[0,1,1,1],[1,2,3,2],[1,3,3,1],[1,3,0,1]],[[0,1,1,2],[1,2,3,2],[1,3,3,1],[1,2,1,0]],[[0,1,1,1],[1,2,4,2],[1,3,3,1],[1,2,1,0]],[[0,1,1,1],[1,2,3,3],[1,3,3,1],[1,2,1,0]],[[0,1,1,1],[1,2,3,2],[1,4,3,1],[1,2,1,0]],[[0,1,1,1],[1,2,3,2],[1,3,4,1],[1,2,1,0]],[[0,1,1,1],[1,2,3,2],[1,3,3,1],[2,2,1,0]],[[0,1,1,1],[1,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[3,3,2,0],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,2,0],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,2,0],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,3,2,0],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,2,0],[1,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,2,0],[1,3,1,0],[0,2,2,1]],[[0,1,1,2],[1,2,3,2],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,2,4,2],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,2,3,3],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,2,3,2],[1,3,3,3],[1,1,0,1]],[[0,1,1,2],[1,2,3,2],[2,0,3,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,3],[2,0,3,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,0,3,3],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,0,3,2],[0,2,3,1]],[[0,1,1,1],[1,2,3,2],[2,0,3,2],[0,2,2,2]],[[0,1,1,2],[1,2,3,2],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,4,2],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,3],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[3,1,1,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,1,1,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,1,1,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,1,1,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,2],[2,1,1,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,2],[2,1,1,2],[1,2,2,2]],[[0,1,1,2],[1,2,3,2],[2,1,2,2],[1,2,1,1]],[[0,1,1,1],[1,2,4,2],[2,1,2,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,3],[2,1,2,2],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[2,1,2,3],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[2,1,2,2],[1,2,1,2]],[[0,1,1,2],[1,2,3,2],[2,1,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,4,2],[2,1,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,3],[2,1,2,2],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[2,1,2,3],[1,2,2,0]],[[0,1,1,2],[1,2,3,2],[2,1,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,4,2],[2,1,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,3],[2,1,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[3,1,3,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,1,4,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,1,3,0],[2,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,1,3,0],[1,3,2,1]],[[0,1,1,1],[1,2,3,2],[2,1,3,0],[1,2,3,1]],[[0,1,1,1],[1,2,3,2],[2,1,3,0],[1,2,2,2]],[[0,1,1,2],[1,2,3,2],[2,1,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,4,2],[2,1,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,3,3],[2,1,3,1],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[2,1,4,1],[1,2,1,1]],[[0,1,1,2],[1,2,3,2],[2,1,3,1],[1,2,2,0]],[[0,1,1,1],[1,2,4,2],[2,1,3,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,3],[2,1,3,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[3,1,3,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[2,1,4,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[2,1,3,1],[2,2,2,0]],[[0,1,1,1],[1,2,3,2],[2,1,3,1],[1,3,2,0]],[[0,1,1,1],[1,2,3,2],[2,1,3,1],[1,2,3,0]],[[0,1,1,2],[1,2,3,2],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,2,4,2],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,3],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[3,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,0,3],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,0,2],[2,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,0,2],[1,3,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,0,2],[1,2,3,1]],[[0,1,1,1],[1,2,3,2],[2,2,0,2],[1,2,2,2]],[[0,1,1,2],[1,2,3,2],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[1,2,4,2],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,3],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,1,3],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,1,2],[0,3,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,1,2],[0,2,3,1]],[[0,1,1,1],[1,2,3,2],[2,2,1,2],[0,2,2,2]],[[0,1,1,1],[1,2,3,2],[3,2,2,0],[1,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,2,0],[2,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,2,0],[1,3,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,2,0],[1,2,3,1]],[[0,1,1,1],[1,2,3,2],[2,2,2,0],[1,2,2,2]],[[0,1,1,1],[1,2,3,2],[3,2,2,1],[1,2,2,0]],[[0,1,1,1],[1,2,3,2],[2,2,2,1],[2,2,2,0]],[[0,1,1,1],[1,2,3,2],[2,2,2,1],[1,3,2,0]],[[0,1,1,1],[1,2,3,2],[2,2,2,1],[1,2,3,0]],[[0,1,1,2],[1,2,3,2],[2,2,2,2],[0,2,1,1]],[[0,1,1,1],[1,2,4,2],[2,2,2,2],[0,2,1,1]],[[0,1,1,1],[1,2,3,3],[2,2,2,2],[0,2,1,1]],[[0,1,1,1],[1,2,3,2],[2,2,2,3],[0,2,1,1]],[[0,1,1,1],[1,2,3,2],[2,2,2,2],[0,2,1,2]],[[0,1,1,2],[1,2,3,2],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[1,2,4,2],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[1,2,3,3],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[1,2,3,2],[2,2,2,3],[0,2,2,0]],[[0,1,1,2],[1,2,3,2],[2,2,3,0],[0,2,2,1]],[[0,1,1,1],[1,2,4,2],[2,2,3,0],[0,2,2,1]],[[0,1,1,1],[1,2,3,3],[2,2,3,0],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,4,0],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,3,0],[0,3,2,1]],[[0,1,1,1],[1,2,3,2],[2,2,3,0],[0,2,3,1]],[[0,1,1,1],[1,2,3,2],[2,2,3,0],[0,2,2,2]],[[0,1,1,1],[1,2,3,2],[3,2,3,0],[1,2,1,1]],[[0,1,1,1],[1,2,3,2],[2,2,3,0],[2,2,1,1]],[[0,1,1,1],[1,2,3,2],[2,2,3,0],[1,3,1,1]],[[0,1,1,2],[1,2,3,2],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[1,2,4,2],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[1,2,3,3],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[1,2,3,2],[2,2,4,1],[0,2,1,1]],[[0,1,1,2],[1,2,3,2],[2,2,3,1],[0,2,2,0]],[[0,1,1,1],[1,2,4,2],[2,2,3,1],[0,2,2,0]],[[0,1,1,1],[1,2,3,3],[2,2,3,1],[0,2,2,0]],[[0,1,1,1],[1,2,3,2],[2,2,4,1],[0,2,2,0]],[[0,1,1,1],[1,2,3,2],[2,2,3,1],[0,3,2,0]],[[0,1,1,1],[1,2,3,2],[2,2,3,1],[0,2,3,0]],[[0,1,1,1],[1,2,3,2],[3,2,3,1],[1,2,0,1]],[[0,1,1,1],[1,2,3,2],[2,2,3,1],[2,2,0,1]],[[0,1,1,1],[1,2,3,2],[2,2,3,1],[1,3,0,1]],[[0,1,1,1],[1,2,3,2],[3,2,3,1],[1,2,1,0]],[[0,1,1,1],[1,2,3,2],[2,2,3,1],[2,2,1,0]],[[0,1,1,1],[1,2,3,2],[2,2,3,1],[1,3,1,0]],[[0,1,1,2],[1,2,3,2],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,2,4,2],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,3],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[3,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,4,0,2],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,0,3],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,0,2],[0,3,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,0,2],[0,2,3,1]],[[0,1,1,1],[1,2,3,2],[2,3,0,2],[0,2,2,2]],[[0,1,1,1],[1,2,3,2],[3,3,0,2],[1,1,2,1]],[[0,1,1,1],[1,2,3,2],[2,4,0,2],[1,1,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,0,2],[2,1,2,1]],[[0,1,1,2],[1,2,3,2],[2,3,1,2],[0,1,2,1]],[[0,1,1,1],[1,2,4,2],[2,3,1,2],[0,1,2,1]],[[0,1,1,1],[1,2,3,3],[2,3,1,2],[0,1,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,1,3],[0,1,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,1,2],[0,1,3,1]],[[0,1,1,1],[1,2,3,2],[2,3,1,2],[0,1,2,2]],[[0,1,1,2],[1,2,3,2],[2,3,1,2],[1,0,2,1]],[[0,1,1,1],[1,2,4,2],[2,3,1,2],[1,0,2,1]],[[0,1,1,1],[1,2,3,3],[2,3,1,2],[1,0,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,1,3],[1,0,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,1,2],[1,0,3,1]],[[0,1,1,1],[1,2,3,2],[2,3,1,2],[1,0,2,2]],[[0,1,1,1],[1,2,3,2],[3,3,2,0],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,4,2,0],[0,2,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,0],[0,3,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,0],[0,2,3,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,0],[0,2,2,2]],[[0,1,1,1],[1,2,3,2],[3,3,2,0],[1,1,2,1]],[[0,1,1,1],[1,2,3,2],[2,4,2,0],[1,1,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,0],[2,1,2,1]],[[0,1,1,1],[1,2,3,2],[3,3,2,1],[0,2,2,0]],[[0,1,1,1],[1,2,3,2],[2,4,2,1],[0,2,2,0]],[[0,1,1,1],[1,2,3,2],[2,3,2,1],[0,3,2,0]],[[0,1,1,1],[1,2,3,2],[2,3,2,1],[0,2,3,0]],[[0,1,1,1],[1,2,3,2],[3,3,2,1],[1,1,2,0]],[[0,1,1,1],[1,2,3,2],[2,4,2,1],[1,1,2,0]],[[0,1,1,1],[1,2,3,2],[2,3,2,1],[2,1,2,0]],[[0,1,1,2],[1,2,3,2],[2,3,2,2],[0,0,2,1]],[[0,1,1,1],[1,2,4,2],[2,3,2,2],[0,0,2,1]],[[0,1,1,1],[1,2,3,3],[2,3,2,2],[0,0,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,3],[0,0,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,2],[0,0,2,2]],[[0,1,1,2],[1,2,3,2],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[1,2,4,2],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[1,2,3,3],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,3],[0,1,1,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,2],[0,1,1,2]],[[0,1,1,2],[1,2,3,2],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[1,2,4,2],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[1,2,3,3],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[1,2,3,2],[2,3,2,3],[0,1,2,0]],[[0,1,1,2],[1,2,3,2],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[1,2,4,2],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[1,2,3,3],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,3],[0,2,0,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,2],[0,2,0,2]],[[0,1,1,2],[1,2,3,2],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[1,2,4,2],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[1,2,3,3],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[1,2,3,2],[2,3,2,3],[0,2,1,0]],[[0,1,1,2],[1,2,3,2],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[1,2,4,2],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[1,2,3,3],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,3],[1,0,1,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,2],[1,0,1,2]],[[0,1,1,2],[1,2,3,2],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[1,2,4,2],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[1,2,3,3],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[1,2,3,2],[2,3,2,3],[1,0,2,0]],[[0,1,1,2],[1,2,3,2],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[1,2,4,2],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[1,2,3,3],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,3],[1,1,0,1]],[[0,1,1,1],[1,2,3,2],[2,3,2,2],[1,1,0,2]],[[0,1,1,2],[1,2,3,2],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[1,2,4,2],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[1,2,3,3],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[1,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,4,2,0],[0,3,3,2],[1,1,0,0]],[[1,2,2,2],[2,3,2,0],[0,3,3,2],[1,1,0,0]],[[1,2,3,1],[2,3,2,0],[0,3,3,2],[1,1,0,0]],[[1,3,2,1],[2,3,2,0],[0,3,3,2],[1,1,0,0]],[[2,2,2,1],[2,3,2,0],[0,3,3,2],[1,1,0,0]],[[0,1,1,2],[1,2,3,2],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[1,2,4,2],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[1,2,3,3],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[1,2,3,2],[3,3,3,0],[0,1,2,1]],[[0,1,1,1],[1,2,3,2],[2,4,3,0],[0,1,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,4,0],[0,1,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,0],[0,1,3,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,0],[0,1,2,2]],[[0,1,1,2],[1,2,3,2],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[1,2,4,2],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[1,2,3,3],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[1,2,3,2],[3,3,3,0],[0,2,1,1]],[[0,1,1,1],[1,2,3,2],[2,4,3,0],[0,2,1,1]],[[0,1,1,1],[1,2,3,2],[2,3,4,0],[0,2,1,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,0],[0,3,1,1]],[[0,1,1,2],[1,2,3,2],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[1,2,4,2],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[1,2,3,3],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[1,2,3,2],[3,3,3,0],[1,0,2,1]],[[0,1,1,1],[1,2,3,2],[2,4,3,0],[1,0,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,4,0],[1,0,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,0],[2,0,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,0],[1,0,3,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,0],[1,0,2,2]],[[0,1,1,2],[1,2,3,2],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[1,2,4,2],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[1,2,3,3],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[1,2,3,2],[3,3,3,0],[1,1,1,1]],[[0,1,1,1],[1,2,3,2],[2,4,3,0],[1,1,1,1]],[[0,1,1,1],[1,2,3,2],[2,3,4,0],[1,1,1,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,0],[2,1,1,1]],[[0,1,1,1],[1,2,3,2],[3,3,3,0],[1,2,0,1]],[[0,1,1,1],[1,2,3,2],[2,4,3,0],[1,2,0,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,0],[2,2,0,1]],[[0,1,1,2],[1,2,3,2],[2,3,3,1],[0,0,2,1]],[[0,1,1,1],[1,2,4,2],[2,3,3,1],[0,0,2,1]],[[0,1,1,1],[1,2,3,3],[2,3,3,1],[0,0,2,1]],[[0,1,1,1],[1,2,3,2],[2,3,4,1],[0,0,2,1]],[[0,1,1,2],[1,2,3,2],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[1,2,4,2],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[1,2,3,3],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[1,2,3,2],[3,3,3,1],[0,1,1,1]],[[0,1,1,1],[1,2,3,2],[2,4,3,1],[0,1,1,1]],[[0,1,1,1],[1,2,3,2],[2,3,4,1],[0,1,1,1]],[[0,1,1,2],[1,2,3,2],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[1,2,4,2],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[1,2,3,3],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[1,2,3,2],[3,3,3,1],[0,1,2,0]],[[0,1,1,1],[1,2,3,2],[2,4,3,1],[0,1,2,0]],[[0,1,1,1],[1,2,3,2],[2,3,4,1],[0,1,2,0]],[[0,1,1,1],[1,2,3,2],[2,3,3,1],[0,1,3,0]],[[0,1,1,2],[1,2,3,2],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[1,2,4,2],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[1,2,3,3],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[1,2,3,2],[3,3,3,1],[0,2,0,1]],[[0,1,1,1],[1,2,3,2],[2,4,3,1],[0,2,0,1]],[[0,1,1,1],[1,2,3,2],[2,3,4,1],[0,2,0,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,1],[0,3,0,1]],[[0,1,1,2],[1,2,3,2],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[1,2,4,2],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[1,2,3,3],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[1,2,3,2],[3,3,3,1],[0,2,1,0]],[[0,1,1,1],[1,2,3,2],[2,4,3,1],[0,2,1,0]],[[0,1,1,1],[1,2,3,2],[2,3,4,1],[0,2,1,0]],[[0,1,1,1],[1,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,4,2,0],[0,3,3,2],[0,2,0,0]],[[1,2,2,2],[2,3,2,0],[0,3,3,2],[0,2,0,0]],[[1,2,3,1],[2,3,2,0],[0,3,3,2],[0,2,0,0]],[[1,3,2,1],[2,3,2,0],[0,3,3,2],[0,2,0,0]],[[0,1,1,2],[1,2,3,2],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[1,2,4,2],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[1,2,3,3],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[1,2,3,2],[3,3,3,1],[1,0,1,1]],[[0,1,1,1],[1,2,3,2],[2,4,3,1],[1,0,1,1]],[[0,1,1,1],[1,2,3,2],[2,3,4,1],[1,0,1,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,1],[2,0,1,1]],[[0,1,1,2],[1,2,3,2],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[1,2,4,2],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[1,2,3,3],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[1,2,3,2],[3,3,3,1],[1,0,2,0]],[[0,1,1,1],[1,2,3,2],[2,4,3,1],[1,0,2,0]],[[0,1,1,1],[1,2,3,2],[2,3,4,1],[1,0,2,0]],[[0,1,1,1],[1,2,3,2],[2,3,3,1],[2,0,2,0]],[[0,1,1,1],[1,2,3,2],[2,3,3,1],[1,0,3,0]],[[0,1,1,2],[1,2,3,2],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[1,2,4,2],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[1,2,3,3],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[1,2,3,2],[3,3,3,1],[1,1,0,1]],[[0,1,1,1],[1,2,3,2],[2,4,3,1],[1,1,0,1]],[[0,1,1,1],[1,2,3,2],[2,3,4,1],[1,1,0,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,1],[2,1,0,1]],[[0,1,1,2],[1,2,3,2],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[1,2,4,2],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[1,2,3,3],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[1,2,3,2],[3,3,3,1],[1,1,1,0]],[[0,1,1,1],[1,2,3,2],[2,4,3,1],[1,1,1,0]],[[0,1,1,1],[1,2,3,2],[2,3,4,1],[1,1,1,0]],[[0,1,1,1],[1,2,3,2],[2,3,3,1],[2,1,1,0]],[[2,2,2,1],[2,3,2,0],[0,3,3,2],[0,2,0,0]],[[0,1,1,1],[1,2,3,2],[3,3,3,1],[1,2,0,0]],[[0,1,1,1],[1,2,3,2],[2,4,3,1],[1,2,0,0]],[[0,1,1,1],[1,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,4,2,0],[0,3,3,2],[0,0,2,0]],[[1,2,2,2],[2,3,2,0],[0,3,3,2],[0,0,2,0]],[[1,2,3,1],[2,3,2,0],[0,3,3,2],[0,0,2,0]],[[1,3,2,1],[2,3,2,0],[0,3,3,2],[0,0,2,0]],[[2,2,2,1],[2,3,2,0],[0,3,3,2],[0,0,2,0]],[[1,2,2,1],[2,4,2,0],[0,3,3,2],[0,0,1,1]],[[1,2,2,2],[2,3,2,0],[0,3,3,2],[0,0,1,1]],[[1,2,3,1],[2,3,2,0],[0,3,3,2],[0,0,1,1]],[[1,3,2,1],[2,3,2,0],[0,3,3,2],[0,0,1,1]],[[2,2,2,1],[2,3,2,0],[0,3,3,2],[0,0,1,1]],[[0,1,1,2],[1,2,3,2],[2,3,3,2],[0,1,0,1]],[[0,1,1,1],[1,2,4,2],[2,3,3,2],[0,1,0,1]],[[0,1,1,1],[1,2,3,3],[2,3,3,2],[0,1,0,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,4,2,0],[0,3,3,1],[0,0,2,1]],[[1,2,2,2],[2,3,2,0],[0,3,3,1],[0,0,2,1]],[[1,2,3,1],[2,3,2,0],[0,3,3,1],[0,0,2,1]],[[1,3,2,1],[2,3,2,0],[0,3,3,1],[0,0,2,1]],[[2,2,2,1],[2,3,2,0],[0,3,3,1],[0,0,2,1]],[[1,2,2,1],[3,3,2,0],[0,3,3,0],[1,2,1,0]],[[1,3,2,1],[2,3,2,0],[0,3,3,0],[1,2,1,0]],[[2,2,2,1],[2,3,2,0],[0,3,3,0],[1,2,1,0]],[[0,1,1,2],[1,2,3,2],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[1,2,4,2],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[1,2,3,3],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[1,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,4,2,0],[0,3,2,2],[1,2,0,0]],[[1,2,3,1],[2,3,2,0],[0,3,2,2],[1,2,0,0]],[[1,3,2,1],[2,3,2,0],[0,3,2,2],[1,2,0,0]],[[2,2,2,1],[2,3,2,0],[0,3,2,2],[1,2,0,0]],[[1,2,2,1],[2,4,2,0],[0,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,0],[0,3,2,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,0],[0,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,2,0],[0,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,0],[0,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,4,2,0],[0,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,0],[0,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,0],[0,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,2,0],[0,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,0],[0,3,2,2],[1,1,0,1]],[[1,2,2,1],[2,4,2,0],[0,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,0],[0,3,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,0],[0,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,0],[0,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,0],[0,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,4,2,0],[0,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,0],[0,3,2,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,0],[0,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,0],[0,3,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,0],[0,3,2,2],[1,0,1,1]],[[1,2,2,1],[2,4,2,0],[0,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,0],[0,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,0],[0,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,0],[0,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,0],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,4,2,0],[0,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,0],[0,3,2,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,0],[0,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,2,0],[0,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,2,0],[0,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,4,2,0],[0,3,2,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,0],[0,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,2,0],[0,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,0],[0,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,0],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,4,2,0],[0,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,0],[0,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,0],[0,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,0],[0,3,2,2],[0,1,1,1]],[[0,1,1,1],[1,3,0,1],[1,4,3,2],[1,2,2,1]],[[0,1,1,1],[1,3,0,1],[1,3,3,2],[2,2,2,1]],[[0,1,1,1],[1,3,0,1],[1,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,0,1],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,0,1],[1,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,0,1],[3,2,3,2],[1,2,2,1]],[[0,1,1,1],[1,3,0,1],[2,2,3,2],[2,2,2,1]],[[0,1,1,1],[1,3,0,1],[2,2,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,0,1],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,0,1],[2,2,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,0,1],[3,3,3,2],[0,2,2,1]],[[0,1,1,1],[1,3,0,1],[2,4,3,2],[0,2,2,1]],[[0,1,1,1],[1,3,0,1],[2,3,3,2],[0,3,2,1]],[[0,1,1,1],[1,3,0,1],[2,3,3,2],[0,2,3,1]],[[0,1,1,1],[1,3,0,1],[2,3,3,2],[0,2,2,2]],[[0,1,1,1],[1,3,0,1],[3,3,3,2],[1,1,2,1]],[[0,1,1,1],[1,3,0,1],[2,4,3,2],[1,1,2,1]],[[0,1,1,1],[1,3,0,1],[2,3,3,2],[2,1,2,1]],[[0,1,1,1],[1,3,0,2],[0,3,3,3],[1,2,2,1]],[[0,1,1,1],[1,3,0,2],[0,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,0,2],[0,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,0,2],[0,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,0,2],[1,2,3,3],[1,2,2,1]],[[0,1,1,1],[1,3,0,2],[1,2,3,2],[2,2,2,1]],[[0,1,1,1],[1,3,0,2],[1,2,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,0,2],[1,2,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,0,2],[1,2,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,0,2],[1,4,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,0,2],[1,3,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,0,2],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,0,2],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,0,2],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,0,2],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,0,2],[1,4,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,0,2],[1,3,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,0,2],[1,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,0,2],[1,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,0,2],[1,3,3,1],[1,2,2,2]],[[0,1,1,1],[1,3,0,2],[1,3,3,3],[1,1,2,1]],[[0,1,1,1],[1,3,0,2],[1,3,3,2],[1,1,3,1]],[[0,1,1,1],[1,3,0,2],[1,3,3,2],[1,1,2,2]],[[0,1,1,1],[1,3,0,2],[1,4,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,0,2],[1,3,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,0,2],[1,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,0,2],[1,3,3,2],[1,2,3,0]],[[0,1,1,1],[1,3,0,2],[3,1,3,2],[1,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,1,3,3],[1,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,1,3,2],[2,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,1,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,0,2],[2,1,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,0,2],[2,1,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,0,2],[3,2,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,2,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,0,2],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,0,2],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,0,2],[3,2,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,2,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,2,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,0,2],[2,2,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,0,2],[2,2,3,1],[1,2,2,2]],[[0,1,1,1],[1,3,0,2],[2,2,3,3],[0,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,2,3,2],[0,3,2,1]],[[0,1,1,1],[1,3,0,2],[2,2,3,2],[0,2,3,1]],[[0,1,1,1],[1,3,0,2],[2,2,3,2],[0,2,2,2]],[[0,1,1,1],[1,3,0,2],[3,2,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,0,2],[2,2,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,0,2],[2,2,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,0,2],[2,2,3,2],[1,2,3,0]],[[0,1,1,1],[1,3,0,2],[3,3,2,2],[0,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,4,2,2],[0,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,3,2,3],[0,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[1,3,0,2],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[1,3,0,2],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[1,3,0,2],[3,3,2,2],[1,1,2,1]],[[0,1,1,1],[1,3,0,2],[2,4,2,2],[1,1,2,1]],[[0,1,1,1],[1,3,0,2],[2,3,2,2],[2,1,2,1]],[[0,1,1,1],[1,3,0,2],[3,3,3,1],[0,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,4,3,1],[0,2,2,1]],[[0,1,1,1],[1,3,0,2],[2,3,3,1],[0,3,2,1]],[[0,1,1,1],[1,3,0,2],[2,3,3,1],[0,2,3,1]],[[0,1,1,1],[1,3,0,2],[2,3,3,1],[0,2,2,2]],[[0,1,1,1],[1,3,0,2],[3,3,3,1],[1,1,2,1]],[[0,1,1,1],[1,3,0,2],[2,4,3,1],[1,1,2,1]],[[0,1,1,1],[1,3,0,2],[2,3,3,1],[2,1,2,1]],[[0,1,1,1],[1,3,0,2],[2,3,3,3],[0,1,2,1]],[[0,1,1,1],[1,3,0,2],[2,3,3,2],[0,1,3,1]],[[0,1,1,1],[1,3,0,2],[2,3,3,2],[0,1,2,2]],[[0,1,1,1],[1,3,0,2],[3,3,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,0,2],[2,4,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,0,2],[2,3,3,2],[0,3,2,0]],[[0,1,1,1],[1,3,0,2],[2,3,3,2],[0,2,3,0]],[[0,1,1,1],[1,3,0,2],[2,3,3,3],[1,0,2,1]],[[0,1,1,1],[1,3,0,2],[2,3,3,2],[1,0,3,1]],[[0,1,1,1],[1,3,0,2],[2,3,3,2],[1,0,2,2]],[[0,1,1,1],[1,3,0,2],[3,3,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,0,2],[2,4,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,0,2],[2,3,3,2],[2,1,2,0]],[[2,2,2,1],[2,3,2,0],[0,3,2,2],[0,1,1,1]],[[0,1,1,1],[1,3,1,0],[1,4,3,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,0],[1,3,3,2],[2,2,2,1]],[[0,1,1,1],[1,3,1,0],[1,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,1,0],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,1,0],[1,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,1,0],[3,2,3,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,0],[2,2,3,2],[2,2,2,1]],[[0,1,1,1],[1,3,1,0],[2,2,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,1,0],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,1,0],[2,2,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,1,0],[3,3,3,2],[0,2,2,1]],[[0,1,1,1],[1,3,1,0],[2,4,3,2],[0,2,2,1]],[[0,1,1,1],[1,3,1,0],[2,3,3,2],[0,3,2,1]],[[0,1,1,1],[1,3,1,0],[2,3,3,2],[0,2,3,1]],[[0,1,1,1],[1,3,1,0],[2,3,3,2],[0,2,2,2]],[[0,1,1,1],[1,3,1,0],[3,3,3,2],[1,1,2,1]],[[0,1,1,1],[1,3,1,0],[2,4,3,2],[1,1,2,1]],[[0,1,1,1],[1,3,1,0],[2,3,3,2],[2,1,2,1]],[[0,1,1,1],[1,3,1,1],[1,4,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,1,1],[1,3,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,1,1],[1,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,1,1],[1,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,1,1],[1,3,3,1],[1,2,2,2]],[[0,1,1,1],[1,3,1,1],[1,4,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,1],[1,3,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,1,1],[1,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,1,1],[1,3,3,2],[1,2,3,0]],[[0,1,1,1],[1,3,1,1],[3,2,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,1,1],[2,2,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,1,1],[2,2,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,1,1],[2,2,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,1,1],[2,2,3,1],[1,2,2,2]],[[0,1,1,1],[1,3,1,1],[3,2,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,1],[2,2,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,1,1],[2,2,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,1,1],[2,2,3,2],[1,2,3,0]],[[0,1,1,1],[1,3,1,1],[3,3,3,1],[0,2,2,1]],[[0,1,1,1],[1,3,1,1],[2,4,3,1],[0,2,2,1]],[[0,1,1,1],[1,3,1,1],[2,3,3,1],[0,3,2,1]],[[0,1,1,1],[1,3,1,1],[2,3,3,1],[0,2,3,1]],[[0,1,1,1],[1,3,1,1],[2,3,3,1],[0,2,2,2]],[[0,1,1,1],[1,3,1,1],[3,3,3,1],[1,1,2,1]],[[0,1,1,1],[1,3,1,1],[2,4,3,1],[1,1,2,1]],[[0,1,1,1],[1,3,1,1],[2,3,3,1],[2,1,2,1]],[[0,1,1,1],[1,3,1,1],[3,3,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,1,1],[2,4,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,1,1],[2,3,3,2],[0,3,2,0]],[[0,1,1,1],[1,3,1,1],[2,3,3,2],[0,2,3,0]],[[0,1,1,1],[1,3,1,1],[3,3,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,1,1],[2,4,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,1,1],[2,3,3,2],[2,1,2,0]],[[0,1,1,2],[1,3,1,2],[0,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,3],[0,3,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[0,3,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[0,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,1,2],[0,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,1,2],[0,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,1,2],[0,3,4,1],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[0,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,1,2],[0,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,1,2],[0,3,3,1],[1,2,2,2]],[[0,1,1,2],[1,3,1,2],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,1,3],[0,3,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[0,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[0,3,3,3],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[0,3,3,2],[1,2,1,2]],[[0,1,1,2],[1,3,1,2],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,3],[0,3,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[0,3,4,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[0,3,3,3],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[0,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,1,2],[0,3,3,2],[1,2,3,0]],[[0,1,1,2],[1,3,1,2],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,3],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,1,2],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,1,2],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,1,2],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,1,2],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,1,2],[1,2,3,1],[1,2,2,2]],[[0,1,1,2],[1,3,1,2],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,1,3],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[1,2,3,2],[1,2,1,2]],[[0,1,1,2],[1,3,1,2],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,3],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,1,2],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,1,2],[1,2,3,2],[1,2,3,0]],[[0,1,1,2],[1,3,1,2],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[1,4,1,2],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,3],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,4,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,1,3],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,1,2],[2,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,1,2],[1,3,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,1,2],[1,2,3,1]],[[0,1,1,1],[1,3,1,2],[1,3,1,2],[1,2,2,2]],[[0,1,1,1],[1,4,1,2],[1,3,2,1],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,4,2,1],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,2,1],[2,2,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,2,1],[1,3,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,2,1],[1,2,3,1]],[[0,1,1,1],[1,3,1,2],[1,3,2,1],[1,2,2,2]],[[0,1,1,2],[1,3,1,2],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[1,3,1,3],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[1,3,1,2],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[1,4,1,2],[1,3,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[1,4,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[1,3,2,2],[2,2,2,0]],[[0,1,1,1],[1,3,1,2],[1,3,2,2],[1,3,2,0]],[[0,1,1,1],[1,3,1,2],[1,3,2,2],[1,2,3,0]],[[0,1,1,1],[1,4,1,2],[1,3,3,1],[1,1,2,1]],[[0,1,1,1],[1,3,1,2],[1,4,3,1],[1,1,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[1,4,1,2],[1,3,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[1,4,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[1,3,4,1],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,1],[2,2,1,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,1],[1,3,1,1]],[[0,1,1,2],[1,3,1,2],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[1,3,1,3],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,2],[1,0,2,2]],[[0,1,1,2],[1,3,1,2],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[1,4,1,2],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,1,3],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,1,2],[1,4,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,1,2],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,2],[1,1,1,2]],[[0,1,1,2],[1,3,1,2],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[1,4,1,2],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,1,3],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,1,2],[1,4,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,1,2],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[1,3,1,2],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[1,3,1,2],[1,3,3,2],[1,1,3,0]],[[0,1,1,2],[1,3,1,2],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[1,4,1,2],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[1,3,1,3],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[1,3,1,2],[1,4,3,2],[1,2,0,1]],[[0,1,1,1],[1,3,1,2],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,2],[2,2,0,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,2],[1,3,0,1]],[[0,1,1,1],[1,3,1,2],[1,3,3,2],[1,2,0,2]],[[0,1,1,2],[1,3,1,2],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[1,4,1,2],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[1,3,1,3],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[1,3,1,2],[1,4,3,2],[1,2,1,0]],[[0,1,1,1],[1,3,1,2],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[1,3,1,2],[1,3,3,3],[1,2,1,0]],[[0,1,1,1],[1,3,1,2],[1,3,3,2],[2,2,1,0]],[[0,1,1,1],[1,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,2,0],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[2,3,2,0],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[2,3,2,0],[0,3,2,1],[1,2,1,0]],[[0,1,1,2],[1,3,1,2],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,3],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[3,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,1,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,1,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,1,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,1,2],[2,1,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,1,2],[2,1,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,1,2],[3,1,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,1,4,1],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,1,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,1,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,1,2],[2,1,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,1,2],[2,1,3,1],[1,2,2,2]],[[0,1,1,2],[1,3,1,2],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,1,3],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[2,1,4,2],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[2,1,3,3],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[2,1,3,2],[1,2,1,2]],[[0,1,1,2],[1,3,1,2],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,3],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[3,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,1,4,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,1,3,3],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,1,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,1,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,1,2],[2,1,3,2],[1,2,3,0]],[[0,1,1,2],[1,3,1,2],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,3],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[3,2,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,1,3],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,1,2],[2,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,1,2],[1,3,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,1,2],[1,2,3,1]],[[0,1,1,1],[1,3,1,2],[2,2,1,2],[1,2,2,2]],[[0,1,1,1],[1,3,1,2],[3,2,2,1],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,2,1],[2,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,2,1],[1,3,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,2,1],[1,2,3,1]],[[0,1,1,1],[1,3,1,2],[2,2,2,1],[1,2,2,2]],[[0,1,1,2],[1,3,1,2],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[1,3,1,3],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[1,3,1,2],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[1,3,1,2],[3,2,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,2,2,2],[2,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,2,2,2],[1,3,2,0]],[[0,1,1,1],[1,3,1,2],[2,2,2,2],[1,2,3,0]],[[0,1,1,1],[1,3,1,2],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[1,3,1,2],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[1,3,1,2],[2,2,3,1],[0,2,2,2]],[[0,1,1,1],[1,3,1,2],[3,2,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,1,2],[2,2,3,1],[2,2,1,1]],[[0,1,1,1],[1,3,1,2],[2,2,3,1],[1,3,1,1]],[[0,1,1,2],[1,3,1,2],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[1,3,1,3],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[1,3,1,2],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[1,3,1,2],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[1,3,1,2],[2,2,3,2],[0,2,1,2]],[[0,1,1,2],[1,3,1,2],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,1,3],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[1,3,1,2],[2,2,3,2],[0,2,3,0]],[[0,1,1,1],[1,3,1,2],[3,2,3,2],[1,2,0,1]],[[0,1,1,1],[1,3,1,2],[2,2,3,2],[2,2,0,1]],[[0,1,1,1],[1,3,1,2],[2,2,3,2],[1,3,0,1]],[[0,1,1,1],[1,3,1,2],[3,2,3,2],[1,2,1,0]],[[0,1,1,1],[1,3,1,2],[2,2,3,2],[2,2,1,0]],[[0,1,1,1],[1,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,4,2,0],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[2,3,2,0],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[2,3,2,0],[0,3,2,1],[1,1,1,1]],[[2,2,2,1],[2,3,2,0],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[2,4,2,0],[0,3,2,1],[1,0,2,1]],[[1,2,2,2],[2,3,2,0],[0,3,2,1],[1,0,2,1]],[[1,2,3,1],[2,3,2,0],[0,3,2,1],[1,0,2,1]],[[1,3,2,1],[2,3,2,0],[0,3,2,1],[1,0,2,1]],[[2,2,2,1],[2,3,2,0],[0,3,2,1],[1,0,2,1]],[[0,1,1,1],[1,3,1,2],[3,3,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,0,2],[2,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,0,2],[1,3,2,1]],[[0,1,1,1],[1,3,1,2],[3,3,1,1],[1,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,1,1],[2,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,1,1],[1,3,2,1]],[[0,1,1,2],[1,3,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[1,4,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[1,3,1,3],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[1,3,1,2],[3,3,1,2],[0,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,4,1,2],[0,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,1,3],[0,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,1,2],[0,3,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,1,2],[0,2,3,1]],[[0,1,1,1],[1,3,1,2],[2,3,1,2],[0,2,2,2]],[[0,1,1,1],[1,4,1,2],[2,3,1,2],[1,1,2,1]],[[0,1,1,1],[1,3,1,2],[3,3,1,2],[1,1,2,1]],[[0,1,1,1],[1,3,1,2],[2,4,1,2],[1,1,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,1,2],[2,1,2,1]],[[0,1,1,1],[1,3,1,2],[3,3,1,2],[1,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,1,2],[2,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,1,2],[1,3,2,0]],[[0,1,1,1],[1,4,1,2],[2,3,2,1],[0,2,2,1]],[[0,1,1,1],[1,3,1,2],[3,3,2,1],[0,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,4,2,1],[0,2,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,2,1],[0,3,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,2,1],[0,2,3,1]],[[0,1,1,1],[1,3,1,2],[2,3,2,1],[0,2,2,2]],[[0,1,1,1],[1,4,1,2],[2,3,2,1],[1,1,2,1]],[[0,1,1,1],[1,3,1,2],[3,3,2,1],[1,1,2,1]],[[0,1,1,1],[1,3,1,2],[2,4,2,1],[1,1,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,2,1],[2,1,2,1]],[[0,1,1,2],[1,3,1,2],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[1,3,1,3],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[1,3,1,2],[2,3,2,2],[0,1,2,2]],[[0,1,1,1],[1,4,1,2],[2,3,2,2],[0,2,2,0]],[[0,1,1,1],[1,3,1,2],[3,3,2,2],[0,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,4,2,2],[0,2,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,2,2],[0,3,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,2,2],[0,2,3,0]],[[0,1,1,2],[1,3,1,2],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[1,3,1,3],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[1,3,1,2],[2,3,2,2],[1,0,2,2]],[[0,1,1,1],[1,4,1,2],[2,3,2,2],[1,1,2,0]],[[0,1,1,1],[1,3,1,2],[3,3,2,2],[1,1,2,0]],[[0,1,1,1],[1,3,1,2],[2,4,2,2],[1,1,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,4,2,0],[0,3,2,1],[0,2,1,1]],[[1,2,2,2],[2,3,2,0],[0,3,2,1],[0,2,1,1]],[[1,2,3,1],[2,3,2,0],[0,3,2,1],[0,2,1,1]],[[1,3,2,1],[2,3,2,0],[0,3,2,1],[0,2,1,1]],[[2,2,2,1],[2,3,2,0],[0,3,2,1],[0,2,1,1]],[[0,1,1,1],[1,4,1,2],[2,3,3,1],[0,1,2,1]],[[0,1,1,1],[1,3,1,2],[3,3,3,1],[0,1,2,1]],[[0,1,1,1],[1,3,1,2],[2,4,3,1],[0,1,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[1,4,1,2],[2,3,3,1],[0,2,1,1]],[[0,1,1,1],[1,3,1,2],[3,3,3,1],[0,2,1,1]],[[0,1,1,1],[1,3,1,2],[2,4,3,1],[0,2,1,1]],[[0,1,1,1],[1,3,1,2],[2,3,4,1],[0,2,1,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,1],[0,3,1,1]],[[0,1,1,1],[1,4,1,2],[2,3,3,1],[1,0,2,1]],[[0,1,1,1],[1,3,1,2],[3,3,3,1],[1,0,2,1]],[[0,1,1,1],[1,3,1,2],[2,4,3,1],[1,0,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,1],[2,0,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,1],[1,0,2,2]],[[0,1,1,1],[1,4,1,2],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,1,2],[3,3,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,1,2],[2,4,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,1,2],[2,3,4,1],[1,1,1,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,1],[2,1,1,1]],[[0,1,1,1],[1,3,1,2],[3,3,3,1],[1,2,0,1]],[[0,1,1,1],[1,3,1,2],[2,4,3,1],[1,2,0,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,4,2,0],[0,3,2,1],[0,1,2,1]],[[1,2,2,2],[2,3,2,0],[0,3,2,1],[0,1,2,1]],[[1,2,3,1],[2,3,2,0],[0,3,2,1],[0,1,2,1]],[[1,3,2,1],[2,3,2,0],[0,3,2,1],[0,1,2,1]],[[2,2,2,1],[2,3,2,0],[0,3,2,1],[0,1,2,1]],[[0,1,1,2],[1,3,1,2],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[1,3,1,3],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[0,0,2,2]],[[0,1,1,2],[1,3,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,4,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,1,3],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,1,2],[3,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,1,2],[2,4,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,1,2],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[0,1,1,2]],[[0,1,1,2],[1,3,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,4,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,1,3],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,1,2],[3,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,1,2],[2,4,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[0,1,3,0]],[[0,1,1,2],[1,3,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,4,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,3,1,3],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,3,1,2],[3,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,3,1,2],[2,4,3,2],[0,2,0,1]],[[0,1,1,1],[1,3,1,2],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[0,3,0,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[0,2,0,2]],[[0,1,1,2],[1,3,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,4,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,3,1,3],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,3,1,2],[3,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,3,1,2],[2,4,3,2],[0,2,1,0]],[[0,1,1,1],[1,3,1,2],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[1,3,1,2],[2,3,3,3],[0,2,1,0]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,3,2,0],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[2,3,2,0],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[2,3,2,0],[0,3,2,0],[1,2,1,1]],[[0,1,1,2],[1,3,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,4,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,1,3],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,1,2],[3,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,1,2],[2,4,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,1,2],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[2,0,1,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[1,0,1,2]],[[0,1,1,2],[1,3,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,4,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,1,3],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,1,2],[3,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,1,2],[2,4,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[2,0,2,0]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[1,0,3,0]],[[0,1,1,2],[1,3,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,4,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,1,3],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,1,2],[3,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,1,2],[2,4,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,1,2],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[2,1,0,1]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[1,1,0,2]],[[0,1,1,2],[1,3,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,4,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,3,1,3],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,3,1,2],[3,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,3,1,2],[2,4,3,2],[1,1,1,0]],[[0,1,1,1],[1,3,1,2],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[1,3,1,2],[2,3,3,3],[1,1,1,0]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,4,2,0],[0,3,1,2],[1,1,2,0]],[[1,2,3,1],[2,3,2,0],[0,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,3,2,0],[0,3,1,2],[1,1,2,0]],[[0,1,1,1],[1,4,1,2],[2,3,3,2],[1,2,0,0]],[[0,1,1,1],[1,3,1,2],[3,3,3,2],[1,2,0,0]],[[0,1,1,1],[1,3,1,2],[2,4,3,2],[1,2,0,0]],[[0,1,1,1],[1,3,1,2],[2,3,3,2],[2,2,0,0]],[[2,2,2,1],[2,3,2,0],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,4,2,0],[0,3,1,2],[0,2,2,0]],[[1,2,2,2],[2,3,2,0],[0,3,1,2],[0,2,2,0]],[[1,2,3,1],[2,3,2,0],[0,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,3,2,0],[0,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,3,2,0],[0,3,1,2],[0,2,2,0]],[[1,2,2,1],[3,3,2,0],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,3,2,0],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[2,3,2,0],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[2,4,2,0],[0,3,1,1],[1,1,2,1]],[[1,2,3,1],[2,3,2,0],[0,3,1,1],[1,1,2,1]],[[1,3,2,1],[2,3,2,0],[0,3,1,1],[1,1,2,1]],[[2,2,2,1],[2,3,2,0],[0,3,1,1],[1,1,2,1]],[[1,2,2,1],[2,4,2,0],[0,3,1,1],[0,2,2,1]],[[1,2,2,2],[2,3,2,0],[0,3,1,1],[0,2,2,1]],[[0,1,1,1],[1,3,2,0],[0,3,4,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,0],[0,3,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,0],[0,3,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,0],[0,3,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,0],[1,2,4,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,0],[1,2,3,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,0],[1,2,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,0],[1,2,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,0],[1,2,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,0],[1,4,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,0],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,0],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,0],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,0],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,0],[1,4,3,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,0],[1,3,4,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,0],[1,3,3,2],[1,1,3,1]],[[0,1,1,1],[1,3,2,0],[1,3,3,2],[1,1,2,2]],[[0,1,1,1],[1,3,2,0],[1,4,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,0],[1,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,0],[1,3,3,2],[2,2,1,1]],[[0,1,1,1],[1,3,2,0],[1,3,3,2],[1,3,1,1]],[[0,1,1,1],[1,3,2,0],[3,1,3,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,0],[2,1,4,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,0],[2,1,3,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,0],[2,1,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,0],[2,1,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,0],[2,1,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,0],[3,2,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,0],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,0],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,0],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,0],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,0],[2,2,4,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,0],[2,2,3,2],[0,3,2,1]],[[0,1,1,1],[1,3,2,0],[2,2,3,2],[0,2,3,1]],[[0,1,1,1],[1,3,2,0],[2,2,3,2],[0,2,2,2]],[[0,1,1,1],[1,3,2,0],[3,2,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,0],[2,2,3,2],[2,2,1,1]],[[0,1,1,1],[1,3,2,0],[2,2,3,2],[1,3,1,1]],[[0,1,1,1],[1,3,2,0],[3,3,2,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,0],[2,4,2,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,0],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[1,3,2,0],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[1,3,2,0],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[1,3,2,0],[3,3,2,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,0],[2,4,2,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,0],[2,3,2,2],[2,1,2,1]],[[0,1,1,1],[1,3,2,0],[3,3,3,2],[0,1,2,1]],[[0,1,1,1],[1,3,2,0],[2,4,3,2],[0,1,2,1]],[[0,1,1,1],[1,3,2,0],[2,3,4,2],[0,1,2,1]],[[0,1,1,1],[1,3,2,0],[2,3,3,2],[0,1,3,1]],[[0,1,1,1],[1,3,2,0],[2,3,3,2],[0,1,2,2]],[[0,1,1,1],[1,3,2,0],[3,3,3,2],[0,2,1,1]],[[0,1,1,1],[1,3,2,0],[2,4,3,2],[0,2,1,1]],[[0,1,1,1],[1,3,2,0],[2,3,4,2],[0,2,1,1]],[[0,1,1,1],[1,3,2,0],[2,3,3,2],[0,3,1,1]],[[0,1,1,1],[1,3,2,0],[3,3,3,2],[1,0,2,1]],[[0,1,1,1],[1,3,2,0],[2,4,3,2],[1,0,2,1]],[[0,1,1,1],[1,3,2,0],[2,3,4,2],[1,0,2,1]],[[0,1,1,1],[1,3,2,0],[2,3,3,2],[2,0,2,1]],[[0,1,1,1],[1,3,2,0],[2,3,3,2],[1,0,3,1]],[[0,1,1,1],[1,3,2,0],[2,3,3,2],[1,0,2,2]],[[0,1,1,1],[1,3,2,0],[3,3,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,2,0],[2,4,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,2,0],[2,3,4,2],[1,1,1,1]],[[0,1,1,1],[1,3,2,0],[2,3,3,2],[2,1,1,1]],[[1,2,3,1],[2,3,2,0],[0,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,3,2,0],[0,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,3,2,0],[0,3,1,1],[0,2,2,1]],[[1,2,2,1],[3,3,2,0],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[2,3,2,0],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[2,3,2,0],[0,3,1,0],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[0,3,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[0,3,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[0,3,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,1],[0,3,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,1],[0,3,4,1],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[0,3,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[0,3,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,2,1],[0,3,3,1],[1,2,2,2]],[[0,1,1,1],[1,3,2,1],[0,3,4,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,1],[0,3,3,3],[1,2,1,1]],[[0,1,1,1],[1,3,2,1],[0,3,3,2],[1,2,1,2]],[[0,1,1,1],[1,3,2,1],[0,3,4,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,1],[0,3,3,3],[1,2,2,0]],[[0,1,1,1],[1,3,2,1],[0,3,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,2,1],[0,3,3,2],[1,2,3,0]],[[0,1,1,1],[1,3,2,1],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,1],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,1],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,2,1],[1,2,3,1],[1,2,2,2]],[[0,1,1,1],[1,3,2,1],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,1],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[1,3,2,1],[1,2,3,2],[1,2,1,2]],[[0,1,1,1],[1,3,2,1],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,1],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[1,3,2,1],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,2,1],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,2,1],[1,2,3,2],[1,2,3,0]],[[0,1,1,1],[1,4,2,1],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,4,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,1,3],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,1,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,1,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,1,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,1],[1,3,1,2],[1,2,2,2]],[[0,1,1,1],[1,4,2,1],[1,3,2,1],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,4,2,1],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,2,1],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,2,1],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,2,1],[1,2,3,1]],[[0,1,1,1],[1,3,2,1],[1,3,2,1],[1,2,2,2]],[[0,1,1,1],[1,3,2,1],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[1,3,2,1],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[1,4,2,1],[1,3,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,1],[1,4,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,1],[1,3,2,2],[2,2,2,0]],[[0,1,1,1],[1,3,2,1],[1,3,2,2],[1,3,2,0]],[[0,1,1,1],[1,3,2,1],[1,3,2,2],[1,2,3,0]],[[0,1,1,1],[1,3,2,1],[1,4,3,0],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,0],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,0],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,0],[1,2,3,1]],[[0,1,1,1],[1,4,2,1],[1,3,3,1],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[1,4,3,1],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[1,4,2,1],[1,3,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,2,1],[1,4,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,2,1],[1,3,4,1],[1,2,1,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,1],[2,2,1,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,1],[1,3,1,1]],[[0,1,1,1],[1,3,2,1],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,2],[1,0,2,2]],[[0,1,1,1],[1,4,2,1],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,2,1],[1,4,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,2,1],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,2],[1,1,1,2]],[[0,1,1,1],[1,4,2,1],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,2,1],[1,4,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,2,1],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[1,3,2,1],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[1,3,2,1],[1,3,3,2],[1,1,3,0]],[[0,1,1,1],[1,4,2,1],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[1,3,2,1],[1,4,3,2],[1,2,0,1]],[[0,1,1,1],[1,3,2,1],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,2],[2,2,0,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,2],[1,3,0,1]],[[0,1,1,1],[1,3,2,1],[1,3,3,2],[1,2,0,2]],[[0,1,1,1],[1,4,2,1],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[1,3,2,1],[1,4,3,2],[1,2,1,0]],[[0,1,1,1],[1,3,2,1],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[1,3,2,1],[1,3,3,3],[1,2,1,0]],[[0,1,1,1],[1,3,2,1],[1,3,3,2],[2,2,1,0]],[[0,1,1,1],[1,3,2,1],[1,3,3,2],[1,3,1,0]],[[0,1,1,1],[1,3,2,1],[3,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,1,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,1,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,1,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[2,1,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,1],[2,1,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,1],[3,1,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,1,4,1],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,1,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,1,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[2,1,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,2,1],[2,1,3,1],[1,2,2,2]],[[0,1,1,1],[1,3,2,1],[2,1,4,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,1],[2,1,3,3],[1,2,1,1]],[[0,1,1,1],[1,3,2,1],[2,1,3,2],[1,2,1,2]],[[0,1,1,1],[1,3,2,1],[3,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,1,4,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,1,3,3],[1,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,1,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,1,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,2,1],[2,1,3,2],[1,2,3,0]],[[0,1,1,1],[1,3,2,1],[3,2,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,1,3],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,1,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,1,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,1,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,1],[2,2,1,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,1],[3,2,2,1],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,2,1],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,2,1],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,2,1],[1,2,3,1]],[[0,1,1,1],[1,3,2,1],[2,2,2,1],[1,2,2,2]],[[0,1,1,1],[1,3,2,1],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[1,3,2,1],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[1,3,2,1],[3,2,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,2,2,2],[2,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,2,2,2],[1,3,2,0]],[[0,1,1,1],[1,3,2,1],[2,2,2,2],[1,2,3,0]],[[0,1,1,1],[1,3,2,1],[3,2,3,0],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,0],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,0],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,0],[1,2,3,1]],[[0,1,1,1],[1,3,2,1],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,1],[0,2,2,2]],[[0,1,1,1],[1,3,2,1],[3,2,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,1],[2,2,1,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,1],[1,3,1,1]],[[0,1,1,1],[1,3,2,1],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,2],[0,2,1,2]],[[0,1,1,1],[1,3,2,1],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[1,3,2,1],[2,2,3,2],[0,2,3,0]],[[0,1,1,1],[1,3,2,1],[3,2,3,2],[1,2,0,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,2],[2,2,0,1]],[[0,1,1,1],[1,3,2,1],[2,2,3,2],[1,3,0,1]],[[0,1,1,1],[1,3,2,1],[3,2,3,2],[1,2,1,0]],[[0,1,1,1],[1,3,2,1],[2,2,3,2],[2,2,1,0]],[[0,1,1,1],[1,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,4,2,0],[0,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,3,2,0],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,3,2,0],[0,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,3,2,0],[0,3,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[3,3,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,0,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,0,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,1],[3,3,1,1],[1,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,1,1],[2,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,1,1],[1,3,2,1]],[[0,1,1,1],[1,4,2,1],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[3,3,1,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,4,1,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,1,3],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,1,2],[0,3,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,1,2],[0,2,3,1]],[[0,1,1,1],[1,3,2,1],[2,3,1,2],[0,2,2,2]],[[0,1,1,1],[1,4,2,1],[2,3,1,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[3,3,1,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[2,4,1,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,1,2],[2,1,2,1]],[[0,1,1,1],[1,3,2,1],[3,3,1,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,1,2],[2,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,1,2],[1,3,2,0]],[[0,1,1,1],[1,4,2,1],[2,3,2,1],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[3,3,2,1],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,4,2,1],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,2,1],[0,3,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,2,1],[0,2,3,1]],[[0,1,1,1],[1,3,2,1],[2,3,2,1],[0,2,2,2]],[[0,1,1,1],[1,4,2,1],[2,3,2,1],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[3,3,2,1],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[2,4,2,1],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,2,1],[2,1,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[1,3,2,1],[2,3,2,2],[0,1,2,2]],[[0,1,1,1],[1,4,2,1],[2,3,2,2],[0,2,2,0]],[[0,1,1,1],[1,3,2,1],[3,3,2,2],[0,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,4,2,2],[0,2,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,2,2],[0,3,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,2,2],[0,2,3,0]],[[0,1,1,1],[1,3,2,1],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[1,3,2,1],[2,3,2,2],[1,0,2,2]],[[0,1,1,1],[1,4,2,1],[2,3,2,2],[1,1,2,0]],[[0,1,1,1],[1,3,2,1],[3,3,2,2],[1,1,2,0]],[[0,1,1,1],[1,3,2,1],[2,4,2,2],[1,1,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,4,2,0],[0,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,3,2,0],[0,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,3,2,0],[0,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,2,0],[0,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,2,0],[0,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[3,3,3,0],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,4,3,0],[0,2,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,0],[0,3,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,0],[0,2,3,1]],[[0,1,1,1],[1,3,2,1],[3,3,3,0],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[2,4,3,0],[1,1,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,0],[2,1,2,1]],[[0,1,1,1],[1,4,2,1],[2,3,3,1],[0,1,2,1]],[[0,1,1,1],[1,3,2,1],[3,3,3,1],[0,1,2,1]],[[0,1,1,1],[1,3,2,1],[2,4,3,1],[0,1,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[1,4,2,1],[2,3,3,1],[0,2,1,1]],[[0,1,1,1],[1,3,2,1],[3,3,3,1],[0,2,1,1]],[[0,1,1,1],[1,3,2,1],[2,4,3,1],[0,2,1,1]],[[0,1,1,1],[1,3,2,1],[2,3,4,1],[0,2,1,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,1],[0,3,1,1]],[[0,1,1,1],[1,4,2,1],[2,3,3,1],[1,0,2,1]],[[0,1,1,1],[1,3,2,1],[3,3,3,1],[1,0,2,1]],[[0,1,1,1],[1,3,2,1],[2,4,3,1],[1,0,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,1],[2,0,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,1],[1,0,2,2]],[[0,1,1,1],[1,4,2,1],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,2,1],[3,3,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,2,1],[2,4,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,2,1],[2,3,4,1],[1,1,1,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,1],[2,1,1,1]],[[0,1,1,1],[1,3,2,1],[3,3,3,1],[1,2,0,1]],[[0,1,1,1],[1,3,2,1],[2,4,3,1],[1,2,0,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,1],[2,2,0,1]],[[0,1,1,1],[1,3,2,1],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[0,0,2,2]],[[0,1,1,1],[1,4,2,1],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,2,1],[3,3,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,2,1],[2,4,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,2,1],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[0,1,1,2]],[[0,1,1,1],[1,4,2,1],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,2,1],[3,3,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,2,1],[2,4,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[0,1,3,0]],[[0,1,1,1],[1,4,2,1],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,3,2,1],[3,3,3,2],[0,2,0,1]],[[0,1,1,1],[1,3,2,1],[2,4,3,2],[0,2,0,1]],[[0,1,1,1],[1,3,2,1],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[0,3,0,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[0,2,0,2]],[[0,1,1,1],[1,4,2,1],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,3,2,1],[3,3,3,2],[0,2,1,0]],[[0,1,1,1],[1,3,2,1],[2,4,3,2],[0,2,1,0]],[[0,1,1,1],[1,3,2,1],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[1,3,2,1],[2,3,3,3],[0,2,1,0]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[0,3,1,0]],[[0,1,1,1],[1,4,2,1],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,2,1],[3,3,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,2,1],[2,4,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,2,1],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[2,0,1,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[1,0,1,2]],[[0,1,1,1],[1,4,2,1],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,2,1],[3,3,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,2,1],[2,4,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[2,0,2,0]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[1,0,3,0]],[[0,1,1,1],[1,4,2,1],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,2,1],[3,3,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,2,1],[2,4,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,2,1],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[2,1,0,1]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[1,1,0,2]],[[0,1,1,1],[1,4,2,1],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,3,2,1],[3,3,3,2],[1,1,1,0]],[[0,1,1,1],[1,3,2,1],[2,4,3,2],[1,1,1,0]],[[0,1,1,1],[1,3,2,1],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[1,3,2,1],[2,3,3,3],[1,1,1,0]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,4,2,0],[0,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,3,2,0],[0,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,3,2,0],[0,2,3,2],[1,1,1,0]],[[0,1,1,1],[1,4,2,1],[2,3,3,2],[1,2,0,0]],[[0,1,1,1],[1,3,2,1],[3,3,3,2],[1,2,0,0]],[[0,1,1,1],[1,3,2,1],[2,4,3,2],[1,2,0,0]],[[0,1,1,1],[1,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,3,2,1],[2,3,2,0],[0,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,3,2,0],[0,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,4,2,0],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,3,2,0],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,3,2,0],[0,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,3,2,0],[0,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,3,2,0],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,4,2,0],[0,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,3,2,0],[0,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,3,2,0],[0,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,2,0],[0,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,2,0],[0,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,4,2,0],[0,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,3,2,0],[0,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,3,2,0],[0,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,2,0],[0,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,2,0],[0,2,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,2,2],[0,3,4,0],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[0,3,3,0],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[0,3,3,0],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[0,3,3,0],[1,2,2,2]],[[0,1,1,1],[1,3,2,2],[0,3,4,1],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[0,3,3,1],[1,3,2,0]],[[0,1,1,1],[1,3,2,2],[0,3,3,1],[1,2,3,0]],[[0,1,1,2],[1,3,2,2],[1,0,3,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,3],[1,0,3,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,0,3,3],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,0,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[1,0,3,2],[1,2,2,2]],[[0,1,1,2],[1,3,2,2],[1,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,3],[1,1,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,1,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,1,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,1,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[1,1,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[1,1,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,2],[1,1,4,1],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,1,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,1,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[1,1,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[1,1,3,1],[1,2,2,2]],[[0,1,1,2],[1,3,2,2],[1,1,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,3],[1,1,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,2],[1,1,4,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,2],[1,1,3,3],[1,2,1,1]],[[0,1,1,1],[1,3,2,2],[1,1,3,2],[1,2,1,2]],[[0,1,1,2],[1,3,2,2],[1,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,3],[1,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[1,1,4,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[1,1,3,3],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[1,1,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,2,2],[1,1,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,2,2],[1,1,3,2],[1,2,3,0]],[[0,1,1,2],[1,3,2,2],[1,2,2,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,3],[1,2,2,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[1,2,2,3],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[1,2,2,2],[1,1,3,1]],[[0,1,1,1],[1,3,2,2],[1,2,2,2],[1,1,2,2]],[[0,1,1,1],[1,3,2,2],[1,2,4,0],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,0],[2,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,0],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,0],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,0],[1,2,2,2]],[[0,1,1,1],[1,3,2,2],[1,2,4,1],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,1],[1,1,3,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,1],[1,1,2,2]],[[0,1,1,1],[1,3,2,2],[1,2,4,1],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[1,2,3,1],[2,2,2,0]],[[0,1,1,1],[1,3,2,2],[1,2,3,1],[1,3,2,0]],[[0,1,1,1],[1,3,2,2],[1,2,3,1],[1,2,3,0]],[[0,1,1,2],[1,3,2,2],[1,2,3,2],[1,0,2,1]],[[0,1,1,1],[1,3,2,3],[1,2,3,2],[1,0,2,1]],[[0,1,1,1],[1,3,2,2],[1,2,4,2],[1,0,2,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,3],[1,0,2,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,2],[1,0,2,2]],[[0,1,1,2],[1,3,2,2],[1,2,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,2,3],[1,2,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,2,2],[1,2,4,2],[1,1,1,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,3],[1,1,1,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,2],[1,1,1,2]],[[0,1,1,2],[1,3,2,2],[1,2,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,2,3],[1,2,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,2,2],[1,2,4,2],[1,1,2,0]],[[0,1,1,1],[1,3,2,2],[1,2,3,3],[1,1,2,0]],[[0,1,1,1],[1,3,2,2],[1,2,3,2],[1,1,3,0]],[[0,1,1,2],[1,3,2,2],[1,2,3,2],[1,2,0,1]],[[0,1,1,1],[1,3,2,3],[1,2,3,2],[1,2,0,1]],[[0,1,1,1],[1,3,2,2],[1,2,4,2],[1,2,0,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,3],[1,2,0,1]],[[0,1,1,1],[1,3,2,2],[1,2,3,2],[1,2,0,2]],[[0,1,1,2],[1,3,2,2],[1,2,3,2],[1,2,1,0]],[[0,1,1,1],[1,3,2,3],[1,2,3,2],[1,2,1,0]],[[0,1,1,1],[1,3,2,2],[1,2,4,2],[1,2,1,0]],[[0,1,1,1],[1,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[2,4,2,0],[0,2,3,2],[0,2,1,0]],[[1,2,2,2],[2,3,2,0],[0,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,3,2,0],[0,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,3,2,0],[0,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,3,2,0],[0,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,4,2,0],[0,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,3,2,0],[0,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,3,2,0],[0,2,3,2],[0,2,0,1]],[[0,1,1,2],[1,3,2,2],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[1,4,2,2],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,3],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,4,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,3,0,3],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,3,0,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,3,0,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[1,3,0,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[1,3,0,2],[1,2,2,2]],[[0,1,1,1],[1,4,2,2],[1,3,2,0],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,4,2,0],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,3,2,0],[2,2,2,1]],[[0,1,1,1],[1,3,2,2],[1,3,2,0],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[1,3,2,0],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[1,3,2,0],[1,2,2,2]],[[0,1,1,1],[1,4,2,2],[1,3,2,1],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[1,4,2,1],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[1,3,2,1],[2,2,2,0]],[[0,1,1,1],[1,3,2,2],[1,3,2,1],[1,3,2,0]],[[0,1,1,1],[1,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,3,2,1],[2,3,2,0],[0,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,3,2,0],[0,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,4,2,0],[0,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,3,2,0],[0,2,3,2],[0,1,2,0]],[[0,1,1,1],[1,4,2,2],[1,3,3,0],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[1,4,3,0],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[1,3,4,0],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[1,3,3,0],[1,1,3,1]],[[0,1,1,1],[1,3,2,2],[1,3,3,0],[1,1,2,2]],[[0,1,1,1],[1,4,2,2],[1,3,3,0],[1,2,1,1]],[[0,1,1,1],[1,3,2,2],[1,4,3,0],[1,2,1,1]],[[0,1,1,1],[1,3,2,2],[1,3,4,0],[1,2,1,1]],[[0,1,1,1],[1,3,2,2],[1,3,3,0],[2,2,1,1]],[[0,1,1,1],[1,3,2,2],[1,3,3,0],[1,3,1,1]],[[0,1,1,1],[1,4,2,2],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,2,2],[1,4,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,2,2],[1,3,4,1],[1,1,1,1]],[[0,1,1,1],[1,4,2,2],[1,3,3,1],[1,1,2,0]],[[0,1,1,1],[1,3,2,2],[1,4,3,1],[1,1,2,0]],[[0,1,1,1],[1,3,2,2],[1,3,4,1],[1,1,2,0]],[[0,1,1,1],[1,3,2,2],[1,3,3,1],[1,1,3,0]],[[0,1,1,1],[1,4,2,2],[1,3,3,1],[1,2,0,1]],[[0,1,1,1],[1,3,2,2],[1,4,3,1],[1,2,0,1]],[[0,1,1,1],[1,3,2,2],[1,3,4,1],[1,2,0,1]],[[0,1,1,1],[1,3,2,2],[1,3,3,1],[2,2,0,1]],[[0,1,1,1],[1,3,2,2],[1,3,3,1],[1,3,0,1]],[[0,1,1,1],[1,4,2,2],[1,3,3,1],[1,2,1,0]],[[0,1,1,1],[1,3,2,2],[1,4,3,1],[1,2,1,0]],[[0,1,1,1],[1,3,2,2],[1,3,4,1],[1,2,1,0]],[[0,1,1,1],[1,3,2,2],[1,3,3,1],[2,2,1,0]],[[0,1,1,1],[1,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,3,1],[2,3,2,0],[0,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,2,0],[0,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,2,0],[0,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,4,2,0],[0,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,3,2,0],[0,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,3,2,0],[0,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,3,2,0],[0,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,3,2,0],[0,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,4,2,0],[0,2,3,2],[0,0,2,1]],[[1,2,2,2],[2,3,2,0],[0,2,3,2],[0,0,2,1]],[[1,2,3,1],[2,3,2,0],[0,2,3,2],[0,0,2,1]],[[1,3,2,1],[2,3,2,0],[0,2,3,2],[0,0,2,1]],[[2,2,2,1],[2,3,2,0],[0,2,3,2],[0,0,2,1]],[[1,2,2,1],[2,4,2,0],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[2,3,2,0],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[2,3,2,0],[0,2,3,1],[1,1,1,1]],[[2,2,2,1],[2,3,2,0],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[2,4,2,0],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[2,3,2,0],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[2,3,2,0],[0,2,3,1],[1,0,2,1]],[[1,3,2,1],[2,3,2,0],[0,2,3,1],[1,0,2,1]],[[2,2,2,1],[2,3,2,0],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[2,4,2,0],[0,2,3,1],[0,2,1,1]],[[1,2,2,2],[2,3,2,0],[0,2,3,1],[0,2,1,1]],[[1,2,3,1],[2,3,2,0],[0,2,3,1],[0,2,1,1]],[[1,3,2,1],[2,3,2,0],[0,2,3,1],[0,2,1,1]],[[0,1,1,2],[1,3,2,2],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,3],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[3,0,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,0,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,0,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,0,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[2,0,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[2,0,2,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,2],[3,0,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,0,4,1],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,0,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,0,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[2,0,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[2,0,3,1],[1,2,2,2]],[[0,1,1,2],[1,3,2,2],[2,0,3,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,3],[2,0,3,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,0,3,3],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,0,3,2],[0,2,3,1]],[[0,1,1,1],[1,3,2,2],[2,0,3,2],[0,2,2,2]],[[0,1,1,2],[1,3,2,2],[2,0,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,3],[2,0,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,2],[2,0,4,2],[1,2,1,1]],[[0,1,1,1],[1,3,2,2],[2,0,3,3],[1,2,1,1]],[[0,1,1,1],[1,3,2,2],[2,0,3,2],[1,2,1,2]],[[0,1,1,2],[1,3,2,2],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,3],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[3,0,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,0,4,2],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,0,3,3],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,0,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,0,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,2,2],[2,0,3,2],[1,2,3,0]],[[0,1,1,2],[1,3,2,2],[2,1,2,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,3],[2,1,2,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,1,2,3],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,1,2,2],[0,3,2,1]],[[0,1,1,1],[1,3,2,2],[2,1,2,2],[0,2,3,1]],[[0,1,1,1],[1,3,2,2],[2,1,2,2],[0,2,2,2]],[[0,1,1,1],[1,3,2,2],[3,1,3,0],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,1,4,0],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,1,3,0],[2,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,1,3,0],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[2,1,3,0],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[2,1,3,0],[1,2,2,2]],[[0,1,1,1],[1,3,2,2],[2,1,4,1],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,1,3,1],[0,3,2,1]],[[0,1,1,1],[1,3,2,2],[2,1,3,1],[0,2,3,1]],[[0,1,1,1],[1,3,2,2],[2,1,3,1],[0,2,2,2]],[[0,1,1,1],[1,3,2,2],[3,1,3,1],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,1,4,1],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,1,3,1],[2,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,1,3,1],[1,3,2,0]],[[0,1,1,1],[1,3,2,2],[2,1,3,1],[1,2,3,0]],[[0,1,1,2],[1,3,2,2],[2,1,3,2],[0,2,1,1]],[[0,1,1,1],[1,3,2,3],[2,1,3,2],[0,2,1,1]],[[0,1,1,1],[1,3,2,2],[2,1,4,2],[0,2,1,1]],[[0,1,1,1],[1,3,2,2],[2,1,3,3],[0,2,1,1]],[[0,1,1,1],[1,3,2,2],[2,1,3,2],[0,2,1,2]],[[0,1,1,2],[1,3,2,2],[2,1,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,2,3],[2,1,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,1,4,2],[0,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,1,3,3],[0,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,1,3,2],[0,3,2,0]],[[0,1,1,1],[1,3,2,2],[2,1,3,2],[0,2,3,0]],[[2,2,2,1],[2,3,2,0],[0,2,3,1],[0,2,1,1]],[[1,2,2,1],[2,4,2,0],[0,2,3,1],[0,1,2,1]],[[1,2,2,2],[2,3,2,0],[0,2,3,1],[0,1,2,1]],[[1,2,3,1],[2,3,2,0],[0,2,3,1],[0,1,2,1]],[[1,3,2,1],[2,3,2,0],[0,2,3,1],[0,1,2,1]],[[2,2,2,1],[2,3,2,0],[0,2,3,1],[0,1,2,1]],[[0,1,1,2],[1,3,2,2],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,3],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[3,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,0,3],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,0,2],[2,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,0,2],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,0,2],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[2,2,0,2],[1,2,2,2]],[[0,1,1,1],[1,3,2,2],[3,2,2,0],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,2,0],[2,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,2,0],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,2,0],[1,2,3,1]],[[0,1,1,1],[1,3,2,2],[2,2,2,0],[1,2,2,2]],[[0,1,1,1],[1,3,2,2],[3,2,2,1],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,2,2,1],[2,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,2,2,1],[1,3,2,0]],[[0,1,1,1],[1,3,2,2],[2,2,2,1],[1,2,3,0]],[[0,1,1,2],[1,3,2,2],[2,2,2,2],[0,1,2,1]],[[0,1,1,1],[1,3,2,3],[2,2,2,2],[0,1,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,2,3],[0,1,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,2,2],[0,1,3,1]],[[0,1,1,1],[1,3,2,2],[2,2,2,2],[0,1,2,2]],[[0,1,1,2],[1,3,2,2],[2,2,2,2],[1,0,2,1]],[[0,1,1,1],[1,3,2,3],[2,2,2,2],[1,0,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,2,3],[1,0,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,2,2],[1,0,3,1]],[[0,1,1,1],[1,3,2,2],[2,2,2,2],[1,0,2,2]],[[0,1,1,1],[1,3,2,2],[2,2,4,0],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,0],[0,3,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,0],[0,2,3,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,0],[0,2,2,2]],[[0,1,1,1],[1,3,2,2],[3,2,3,0],[1,2,1,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,0],[2,2,1,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,0],[1,3,1,1]],[[0,1,1,1],[1,3,2,2],[2,2,4,1],[0,1,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,1],[0,1,3,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,1],[0,1,2,2]],[[0,1,1,1],[1,3,2,2],[2,2,4,1],[0,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,2,3,1],[0,3,2,0]],[[0,1,1,1],[1,3,2,2],[2,2,3,1],[0,2,3,0]],[[0,1,1,1],[1,3,2,2],[2,2,4,1],[1,0,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,1],[1,0,3,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,1],[1,0,2,2]],[[0,1,1,1],[1,3,2,2],[3,2,3,1],[1,2,0,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,1],[2,2,0,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,1],[1,3,0,1]],[[0,1,1,1],[1,3,2,2],[3,2,3,1],[1,2,1,0]],[[0,1,1,1],[1,3,2,2],[2,2,3,1],[2,2,1,0]],[[0,1,1,1],[1,3,2,2],[2,2,3,1],[1,3,1,0]],[[0,1,1,2],[1,3,2,2],[2,2,3,2],[0,0,2,1]],[[0,1,1,1],[1,3,2,3],[2,2,3,2],[0,0,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,4,2],[0,0,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,3],[0,0,2,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,2],[0,0,2,2]],[[0,1,1,2],[1,3,2,2],[2,2,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,2,3],[2,2,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,2,2],[2,2,4,2],[0,1,1,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,3],[0,1,1,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,2],[0,1,1,2]],[[0,1,1,2],[1,3,2,2],[2,2,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,2,3],[2,2,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,2,2],[2,2,4,2],[0,1,2,0]],[[0,1,1,1],[1,3,2,2],[2,2,3,3],[0,1,2,0]],[[0,1,1,1],[1,3,2,2],[2,2,3,2],[0,1,3,0]],[[0,1,1,2],[1,3,2,2],[2,2,3,2],[0,2,0,1]],[[0,1,1,1],[1,3,2,3],[2,2,3,2],[0,2,0,1]],[[0,1,1,1],[1,3,2,2],[2,2,4,2],[0,2,0,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,3],[0,2,0,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,2],[0,2,0,2]],[[0,1,1,2],[1,3,2,2],[2,2,3,2],[0,2,1,0]],[[0,1,1,1],[1,3,2,3],[2,2,3,2],[0,2,1,0]],[[0,1,1,1],[1,3,2,2],[2,2,4,2],[0,2,1,0]],[[0,1,1,1],[1,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,4,2,0],[0,1,3,2],[0,2,2,0]],[[1,2,2,2],[2,3,2,0],[0,1,3,2],[0,2,2,0]],[[1,2,3,1],[2,3,2,0],[0,1,3,2],[0,2,2,0]],[[1,3,2,1],[2,3,2,0],[0,1,3,2],[0,2,2,0]],[[2,2,2,1],[2,3,2,0],[0,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,4,2,0],[0,1,3,2],[0,2,1,1]],[[1,2,2,2],[2,3,2,0],[0,1,3,2],[0,2,1,1]],[[0,1,1,2],[1,3,2,2],[2,2,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,2,3],[2,2,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,2,2],[2,2,4,2],[1,0,1,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,3],[1,0,1,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,2],[1,0,1,2]],[[0,1,1,2],[1,3,2,2],[2,2,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,2,3],[2,2,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,2,2],[2,2,4,2],[1,0,2,0]],[[0,1,1,1],[1,3,2,2],[2,2,3,3],[1,0,2,0]],[[0,1,1,1],[1,3,2,2],[2,2,3,2],[1,0,3,0]],[[0,1,1,2],[1,3,2,2],[2,2,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,2,3],[2,2,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,2,2],[2,2,4,2],[1,1,0,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,3],[1,1,0,1]],[[0,1,1,1],[1,3,2,2],[2,2,3,2],[1,1,0,2]],[[0,1,1,2],[1,3,2,2],[2,2,3,2],[1,1,1,0]],[[0,1,1,1],[1,3,2,3],[2,2,3,2],[1,1,1,0]],[[0,1,1,1],[1,3,2,2],[2,2,4,2],[1,1,1,0]],[[0,1,1,1],[1,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,3,1],[2,3,2,0],[0,1,3,2],[0,2,1,1]],[[1,3,2,1],[2,3,2,0],[0,1,3,2],[0,2,1,1]],[[2,2,2,1],[2,3,2,0],[0,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,4,2,0],[0,1,3,1],[0,2,2,1]],[[1,2,2,2],[2,3,2,0],[0,1,3,1],[0,2,2,1]],[[1,2,3,1],[2,3,2,0],[0,1,3,1],[0,2,2,1]],[[1,3,2,1],[2,3,2,0],[0,1,3,1],[0,2,2,1]],[[2,2,2,1],[2,3,2,0],[0,1,3,1],[0,2,2,1]],[[0,1,1,2],[1,3,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,4,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,3],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[3,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,4,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,0,3],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,0,2],[0,3,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,0,2],[0,2,3,1]],[[0,1,1,1],[1,3,2,2],[2,3,0,2],[0,2,2,2]],[[0,1,1,1],[1,4,2,2],[2,3,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[3,3,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[2,4,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,0,2],[2,1,2,1]],[[0,1,1,1],[1,3,2,2],[3,3,1,0],[1,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,1,0],[2,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,1,0],[1,3,2,1]],[[0,1,1,1],[1,3,2,2],[3,3,1,1],[1,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,1,1],[2,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,3,1,2],[3,3,3,0],[1,0,0,0]],[[1,2,2,1],[3,3,1,2],[2,3,3,0],[1,0,0,0]],[[1,3,2,1],[2,3,1,2],[2,3,3,0],[1,0,0,0]],[[2,2,2,1],[2,3,1,2],[2,3,3,0],[1,0,0,0]],[[0,1,1,1],[1,4,2,2],[2,3,2,0],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[3,3,2,0],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,4,2,0],[0,2,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,2,0],[0,3,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,2,0],[0,2,3,1]],[[0,1,1,1],[1,3,2,2],[2,3,2,0],[0,2,2,2]],[[0,1,1,1],[1,4,2,2],[2,3,2,0],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[3,3,2,0],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[2,4,2,0],[1,1,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,2,0],[2,1,2,1]],[[0,1,1,1],[1,4,2,2],[2,3,2,1],[0,2,2,0]],[[0,1,1,1],[1,3,2,2],[3,3,2,1],[0,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,4,2,1],[0,2,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,2,1],[0,3,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,2,1],[0,2,3,0]],[[0,1,1,1],[1,4,2,2],[2,3,2,1],[1,1,2,0]],[[0,1,1,1],[1,3,2,2],[3,3,2,1],[1,1,2,0]],[[0,1,1,1],[1,3,2,2],[2,4,2,1],[1,1,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,2,1],[2,1,2,0]],[[0,1,1,1],[1,4,2,2],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[1,3,2,2],[3,3,3,0],[0,1,2,1]],[[0,1,1,1],[1,3,2,2],[2,4,3,0],[0,1,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,4,0],[0,1,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,0],[0,1,3,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,0],[0,1,2,2]],[[0,1,1,1],[1,4,2,2],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[1,3,2,2],[3,3,3,0],[0,2,1,1]],[[0,1,1,1],[1,3,2,2],[2,4,3,0],[0,2,1,1]],[[0,1,1,1],[1,3,2,2],[2,3,4,0],[0,2,1,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,0],[0,3,1,1]],[[0,1,1,1],[1,4,2,2],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[1,3,2,2],[3,3,3,0],[1,0,2,1]],[[0,1,1,1],[1,3,2,2],[2,4,3,0],[1,0,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,4,0],[1,0,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,0],[2,0,2,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,0],[1,0,3,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,0],[1,0,2,2]],[[0,1,1,1],[1,4,2,2],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[1,3,2,2],[3,3,3,0],[1,1,1,1]],[[0,1,1,1],[1,3,2,2],[2,4,3,0],[1,1,1,1]],[[0,1,1,1],[1,3,2,2],[2,3,4,0],[1,1,1,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,0],[2,1,1,1]],[[0,1,1,1],[1,4,2,2],[2,3,3,0],[1,2,0,1]],[[0,1,1,1],[1,3,2,2],[3,3,3,0],[1,2,0,1]],[[0,1,1,1],[1,3,2,2],[2,4,3,0],[1,2,0,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,3,1,2],[3,3,2,0],[1,0,1,0]],[[1,2,2,1],[3,3,1,2],[2,3,2,0],[1,0,1,0]],[[1,3,2,1],[2,3,1,2],[2,3,2,0],[1,0,1,0]],[[2,2,2,1],[2,3,1,2],[2,3,2,0],[1,0,1,0]],[[1,2,2,1],[2,3,1,2],[3,3,2,0],[1,0,0,1]],[[1,2,2,1],[3,3,1,2],[2,3,2,0],[1,0,0,1]],[[1,3,2,1],[2,3,1,2],[2,3,2,0],[1,0,0,1]],[[2,2,2,1],[2,3,1,2],[2,3,2,0],[1,0,0,1]],[[0,1,1,1],[1,4,2,2],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[1,3,2,2],[3,3,3,1],[0,1,1,1]],[[0,1,1,1],[1,3,2,2],[2,4,3,1],[0,1,1,1]],[[0,1,1,1],[1,3,2,2],[2,3,4,1],[0,1,1,1]],[[0,1,1,1],[1,4,2,2],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[1,3,2,2],[3,3,3,1],[0,1,2,0]],[[0,1,1,1],[1,3,2,2],[2,4,3,1],[0,1,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,4,1],[0,1,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,3,1],[0,1,3,0]],[[0,1,1,1],[1,4,2,2],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[1,3,2,2],[3,3,3,1],[0,2,0,1]],[[0,1,1,1],[1,3,2,2],[2,4,3,1],[0,2,0,1]],[[0,1,1,1],[1,3,2,2],[2,3,4,1],[0,2,0,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,1],[0,3,0,1]],[[0,1,1,1],[1,4,2,2],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[1,3,2,2],[3,3,3,1],[0,2,1,0]],[[0,1,1,1],[1,3,2,2],[2,4,3,1],[0,2,1,0]],[[0,1,1,1],[1,3,2,2],[2,3,4,1],[0,2,1,0]],[[0,1,1,1],[1,3,2,2],[2,3,3,1],[0,3,1,0]],[[0,1,1,1],[1,4,2,2],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[1,3,2,2],[3,3,3,1],[1,0,1,1]],[[0,1,1,1],[1,3,2,2],[2,4,3,1],[1,0,1,1]],[[0,1,1,1],[1,3,2,2],[2,3,4,1],[1,0,1,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,1],[2,0,1,1]],[[0,1,1,1],[1,4,2,2],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[1,3,2,2],[3,3,3,1],[1,0,2,0]],[[0,1,1,1],[1,3,2,2],[2,4,3,1],[1,0,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,4,1],[1,0,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,3,1],[2,0,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,3,1],[1,0,3,0]],[[0,1,1,1],[1,4,2,2],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[1,3,2,2],[3,3,3,1],[1,1,0,1]],[[0,1,1,1],[1,3,2,2],[2,4,3,1],[1,1,0,1]],[[0,1,1,1],[1,3,2,2],[2,3,4,1],[1,1,0,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,1],[2,1,0,1]],[[0,1,1,1],[1,4,2,2],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[1,3,2,2],[3,3,3,1],[1,1,1,0]],[[0,1,1,1],[1,3,2,2],[2,4,3,1],[1,1,1,0]],[[0,1,1,1],[1,3,2,2],[2,3,4,1],[1,1,1,0]],[[0,1,1,1],[1,3,2,2],[2,3,3,1],[2,1,1,0]],[[0,1,1,1],[1,4,2,2],[2,3,3,1],[1,2,0,0]],[[0,1,1,1],[1,3,2,2],[3,3,3,1],[1,2,0,0]],[[0,1,1,1],[1,3,2,2],[2,4,3,1],[1,2,0,0]],[[0,1,1,1],[1,3,2,2],[2,3,3,1],[2,2,0,0]],[[0,1,1,2],[1,3,2,2],[2,3,3,2],[0,0,1,1]],[[0,1,1,1],[1,3,2,3],[2,3,3,2],[0,0,1,1]],[[0,1,1,1],[1,3,2,2],[2,3,4,2],[0,0,1,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,3],[0,0,1,1]],[[0,1,1,1],[1,3,2,2],[2,3,3,2],[0,0,1,2]],[[0,1,1,2],[1,3,2,2],[2,3,3,2],[0,0,2,0]],[[0,1,1,1],[1,3,2,3],[2,3,3,2],[0,0,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,4,2],[0,0,2,0]],[[0,1,1,1],[1,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,3,1,2],[2,3,1,0],[2,2,0,0]],[[1,2,2,1],[2,3,1,2],[3,3,1,0],[1,2,0,0]],[[1,2,2,1],[3,3,1,2],[2,3,1,0],[1,2,0,0]],[[1,3,2,1],[2,3,1,2],[2,3,1,0],[1,2,0,0]],[[2,2,2,1],[2,3,1,2],[2,3,1,0],[1,2,0,0]],[[1,2,2,1],[2,3,1,2],[2,3,1,0],[2,1,1,0]],[[1,2,2,1],[2,3,1,2],[3,3,1,0],[1,1,1,0]],[[1,2,2,1],[3,3,1,2],[2,3,1,0],[1,1,1,0]],[[1,3,2,1],[2,3,1,2],[2,3,1,0],[1,1,1,0]],[[2,2,2,1],[2,3,1,2],[2,3,1,0],[1,1,1,0]],[[1,2,2,1],[2,3,1,2],[3,3,1,0],[1,1,0,1]],[[1,2,2,1],[3,3,1,2],[2,3,1,0],[1,1,0,1]],[[1,3,2,1],[2,3,1,2],[2,3,1,0],[1,1,0,1]],[[2,2,2,1],[2,3,1,2],[2,3,1,0],[1,1,0,1]],[[1,2,2,1],[2,3,1,2],[3,3,1,0],[0,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,3,1,0],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[2,3,1,0],[0,2,1,0]],[[2,2,2,1],[2,3,1,2],[2,3,1,0],[0,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,3,1,0],[0,2,0,1]],[[1,3,2,1],[2,3,1,2],[2,3,1,0],[0,2,0,1]],[[2,2,2,1],[2,3,1,2],[2,3,1,0],[0,2,0,1]],[[0,1,1,1],[1,3,3,0],[1,1,4,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,0],[1,1,3,2],[2,2,2,1]],[[0,1,1,1],[1,3,3,0],[1,1,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,3,0],[1,1,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,0],[1,1,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,3,0],[1,2,4,2],[1,1,2,1]],[[0,1,1,1],[1,3,3,0],[1,2,3,2],[1,1,3,1]],[[0,1,1,1],[1,3,3,0],[1,2,3,2],[1,1,2,2]],[[0,1,1,1],[1,3,3,0],[3,0,3,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,0],[2,0,4,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,0],[2,0,3,2],[2,2,2,1]],[[0,1,1,1],[1,3,3,0],[2,0,3,2],[1,3,2,1]],[[0,1,1,1],[1,3,3,0],[2,0,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,0],[2,0,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,3,0],[2,1,4,2],[0,2,2,1]],[[0,1,1,1],[1,3,3,0],[2,1,3,2],[0,3,2,1]],[[0,1,1,1],[1,3,3,0],[2,1,3,2],[0,2,3,1]],[[0,1,1,1],[1,3,3,0],[2,1,3,2],[0,2,2,2]],[[0,1,1,1],[1,3,3,0],[2,2,4,2],[0,1,2,1]],[[0,1,1,1],[1,3,3,0],[2,2,3,2],[0,1,3,1]],[[0,1,1,1],[1,3,3,0],[2,2,3,2],[0,1,2,2]],[[0,1,1,1],[1,3,3,0],[2,2,4,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,0],[2,2,3,2],[1,0,3,1]],[[0,1,1,1],[1,3,3,0],[2,2,3,2],[1,0,2,2]],[[1,2,2,1],[2,3,1,2],[2,3,0,0],[2,2,1,0]],[[1,2,2,1],[2,3,1,2],[3,3,0,0],[1,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,3,0,0],[1,2,1,0]],[[1,3,2,1],[2,3,1,2],[2,3,0,0],[1,2,1,0]],[[2,2,2,1],[2,3,1,2],[2,3,0,0],[1,2,1,0]],[[0,1,1,1],[1,3,3,1],[1,0,3,3],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,0,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,1],[1,0,3,2],[1,2,2,2]],[[0,1,1,1],[1,3,3,1],[1,1,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,1,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,1,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,3,1],[1,1,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,1],[1,1,2,2],[1,2,2,2]],[[0,1,1,1],[1,4,3,1],[1,1,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,4,1],[1,1,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,1,4,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,1,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,1,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,3,1],[1,1,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,3,1],[1,1,3,1],[1,2,2,2]],[[0,1,1,1],[1,4,3,1],[1,1,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,4,1],[1,1,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,1],[1,1,4,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,1],[1,1,3,3],[1,2,1,1]],[[0,1,1,1],[1,3,3,1],[1,1,3,2],[1,2,1,2]],[[0,1,1,1],[1,4,3,1],[1,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,4,1],[1,1,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,1],[1,1,4,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,1],[1,1,3,3],[1,2,2,0]],[[0,1,1,1],[1,3,3,1],[1,1,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,3,1],[1,1,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,3,1],[1,1,3,2],[1,2,3,0]],[[0,1,1,1],[1,3,3,1],[1,2,2,3],[1,1,2,1]],[[0,1,1,1],[1,3,3,1],[1,2,2,2],[1,1,3,1]],[[0,1,1,1],[1,3,3,1],[1,2,2,2],[1,1,2,2]],[[0,1,1,1],[1,4,3,1],[1,2,3,1],[1,1,2,1]],[[0,1,1,1],[1,3,4,1],[1,2,3,1],[1,1,2,1]],[[0,1,1,1],[1,3,3,1],[1,2,4,1],[1,1,2,1]],[[0,1,1,1],[1,3,3,1],[1,2,3,1],[1,1,3,1]],[[0,1,1,1],[1,3,3,1],[1,2,3,1],[1,1,2,2]],[[0,1,1,1],[1,4,3,1],[1,2,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,4,1],[1,2,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,3,1],[1,2,4,1],[1,2,1,1]],[[0,1,1,1],[1,3,4,1],[1,2,3,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,1],[1,2,4,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,1],[1,2,3,3],[1,0,2,1]],[[0,1,1,1],[1,3,3,1],[1,2,3,2],[1,0,2,2]],[[0,1,1,1],[1,4,3,1],[1,2,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,4,1],[1,2,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,1],[1,2,4,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,1],[1,2,3,3],[1,1,1,1]],[[0,1,1,1],[1,3,3,1],[1,2,3,2],[1,1,1,2]],[[0,1,1,1],[1,4,3,1],[1,2,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,4,1],[1,2,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,1],[1,2,4,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,1],[1,2,3,3],[1,1,2,0]],[[0,1,1,1],[1,3,3,1],[1,2,3,2],[1,1,3,0]],[[0,1,1,1],[1,4,3,1],[1,2,3,2],[1,2,0,1]],[[0,1,1,1],[1,3,4,1],[1,2,3,2],[1,2,0,1]],[[0,1,1,1],[1,3,3,1],[1,2,4,2],[1,2,0,1]],[[0,1,1,1],[1,3,3,1],[1,2,3,3],[1,2,0,1]],[[0,1,1,1],[1,3,3,1],[1,2,3,2],[1,2,0,2]],[[0,1,1,1],[1,4,3,1],[1,2,3,2],[1,2,1,0]],[[0,1,1,1],[1,3,4,1],[1,2,3,2],[1,2,1,0]],[[0,1,1,1],[1,3,3,1],[1,2,4,2],[1,2,1,0]],[[0,1,1,1],[1,3,3,1],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[2,3,1,2],[2,3,0,0],[2,1,2,0]],[[0,1,1,1],[1,4,3,1],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,4,1],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,4,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,3,0,3],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,3,0,2],[2,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,3,0,2],[1,3,2,1]],[[0,1,1,1],[1,3,3,1],[1,3,0,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,1],[1,3,0,2],[1,2,2,2]],[[0,1,1,1],[1,4,3,1],[1,3,1,1],[1,2,2,1]],[[0,1,1,1],[1,3,4,1],[1,3,1,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,4,1,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,3,1,1],[2,2,2,1]],[[0,1,1,1],[1,3,3,1],[1,3,1,1],[1,3,2,1]],[[0,1,1,1],[1,3,3,1],[1,3,1,1],[1,2,3,1]],[[0,1,1,1],[1,3,3,1],[1,3,1,1],[1,2,2,2]],[[0,1,1,1],[1,4,3,1],[1,3,1,2],[1,2,2,0]],[[0,1,1,1],[1,3,4,1],[1,3,1,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,1],[1,4,1,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,1],[1,3,1,2],[2,2,2,0]],[[0,1,1,1],[1,3,3,1],[1,3,1,2],[1,3,2,0]],[[0,1,1,1],[1,3,3,1],[1,3,1,2],[1,2,3,0]],[[0,1,1,1],[1,4,3,1],[1,3,2,1],[1,1,2,1]],[[0,1,1,1],[1,3,4,1],[1,3,2,1],[1,1,2,1]],[[0,1,1,1],[1,3,3,1],[1,4,2,1],[1,1,2,1]],[[0,1,1,1],[1,4,3,1],[1,3,2,1],[1,2,1,1]],[[0,1,1,1],[1,3,4,1],[1,3,2,1],[1,2,1,1]],[[0,1,1,1],[1,3,3,1],[1,4,2,1],[1,2,1,1]],[[0,1,1,1],[1,3,3,1],[1,3,2,1],[2,2,1,1]],[[0,1,1,1],[1,3,3,1],[1,3,2,1],[1,3,1,1]],[[0,1,1,1],[1,4,3,1],[1,3,2,2],[1,1,1,1]],[[0,1,1,1],[1,3,4,1],[1,3,2,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,1],[1,4,2,2],[1,1,1,1]],[[0,1,1,1],[1,4,3,1],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[1,3,4,1],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,1],[1,4,2,2],[1,1,2,0]],[[0,1,1,1],[1,4,3,1],[1,3,2,2],[1,2,0,1]],[[0,1,1,1],[1,3,4,1],[1,3,2,2],[1,2,0,1]],[[0,1,1,1],[1,3,3,1],[1,4,2,2],[1,2,0,1]],[[0,1,1,1],[1,3,3,1],[1,3,2,2],[2,2,0,1]],[[0,1,1,1],[1,3,3,1],[1,3,2,2],[1,3,0,1]],[[0,1,1,1],[1,4,3,1],[1,3,2,2],[1,2,1,0]],[[0,1,1,1],[1,3,4,1],[1,3,2,2],[1,2,1,0]],[[0,1,1,1],[1,3,3,1],[1,4,2,2],[1,2,1,0]],[[0,1,1,1],[1,3,3,1],[1,3,2,2],[2,2,1,0]],[[0,1,1,1],[1,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,3,1,2],[3,3,0,0],[1,1,2,0]],[[1,2,2,1],[3,3,1,2],[2,3,0,0],[1,1,2,0]],[[1,3,2,1],[2,3,1,2],[2,3,0,0],[1,1,2,0]],[[2,2,2,1],[2,3,1,2],[2,3,0,0],[1,1,2,0]],[[1,2,2,1],[2,3,1,2],[3,3,0,0],[0,2,2,0]],[[1,2,2,1],[3,3,1,2],[2,3,0,0],[0,2,2,0]],[[1,3,2,1],[2,3,1,2],[2,3,0,0],[0,2,2,0]],[[2,2,2,1],[2,3,1,2],[2,3,0,0],[0,2,2,0]],[[0,1,1,1],[1,4,3,1],[1,3,3,2],[1,2,0,0]],[[0,1,1,1],[1,3,4,1],[1,3,3,2],[1,2,0,0]],[[0,1,1,1],[1,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[3,3,1,2],[2,2,3,1],[1,0,0,0]],[[1,2,2,2],[2,3,1,2],[2,2,3,1],[1,0,0,0]],[[1,2,3,1],[2,3,1,2],[2,2,3,1],[1,0,0,0]],[[1,3,2,1],[2,3,1,2],[2,2,3,1],[1,0,0,0]],[[2,2,2,1],[2,3,1,2],[2,2,3,1],[1,0,0,0]],[[0,1,1,1],[1,3,3,1],[3,0,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,0,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,0,2,2],[2,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,0,2,2],[1,3,2,1]],[[0,1,1,1],[1,3,3,1],[2,0,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,1],[2,0,2,2],[1,2,2,2]],[[0,1,1,1],[1,4,3,1],[2,0,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,4,1],[2,0,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[3,0,3,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,0,4,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,0,3,1],[2,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,0,3,1],[1,3,2,1]],[[0,1,1,1],[1,3,3,1],[2,0,3,1],[1,2,3,1]],[[0,1,1,1],[1,3,3,1],[2,0,3,1],[1,2,2,2]],[[0,1,1,1],[1,3,3,1],[2,0,3,3],[0,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,0,3,2],[0,2,3,1]],[[0,1,1,1],[1,3,3,1],[2,0,3,2],[0,2,2,2]],[[0,1,1,1],[1,4,3,1],[2,0,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,4,1],[2,0,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,1],[2,0,4,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,1],[2,0,3,3],[1,2,1,1]],[[0,1,1,1],[1,3,3,1],[2,0,3,2],[1,2,1,2]],[[0,1,1,1],[1,4,3,1],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,4,1],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,1],[3,0,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,0,4,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,0,3,3],[1,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,0,3,2],[2,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,0,3,2],[1,3,2,0]],[[0,1,1,1],[1,3,3,1],[2,0,3,2],[1,2,3,0]],[[0,1,1,1],[1,3,3,1],[2,1,2,3],[0,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,1,2,2],[0,3,2,1]],[[0,1,1,1],[1,3,3,1],[2,1,2,2],[0,2,3,1]],[[0,1,1,1],[1,3,3,1],[2,1,2,2],[0,2,2,2]],[[0,1,1,1],[1,4,3,1],[2,1,3,1],[0,2,2,1]],[[0,1,1,1],[1,3,4,1],[2,1,3,1],[0,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,1,4,1],[0,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,1,3,1],[0,3,2,1]],[[0,1,1,1],[1,3,3,1],[2,1,3,1],[0,2,3,1]],[[0,1,1,1],[1,3,3,1],[2,1,3,1],[0,2,2,2]],[[0,1,1,1],[1,4,3,1],[2,1,3,2],[0,2,1,1]],[[0,1,1,1],[1,3,4,1],[2,1,3,2],[0,2,1,1]],[[0,1,1,1],[1,3,3,1],[2,1,4,2],[0,2,1,1]],[[0,1,1,1],[1,3,3,1],[2,1,3,3],[0,2,1,1]],[[0,1,1,1],[1,3,3,1],[2,1,3,2],[0,2,1,2]],[[0,1,1,1],[1,4,3,1],[2,1,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,4,1],[2,1,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,1,4,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,1,3,3],[0,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,1,3,2],[0,3,2,0]],[[0,1,1,1],[1,3,3,1],[2,1,3,2],[0,2,3,0]],[[0,1,1,1],[1,3,3,1],[3,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,0,3],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,0,2],[2,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,0,2],[1,3,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,0,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,1],[2,2,0,2],[1,2,2,2]],[[0,1,1,1],[1,3,3,1],[3,2,1,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,1,1],[2,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,1,1],[1,3,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,1,1],[1,2,3,1]],[[0,1,1,1],[1,3,3,1],[2,2,1,1],[1,2,2,2]],[[0,1,1,1],[1,3,3,1],[3,2,1,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,2,1,2],[2,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,2,1,2],[1,3,2,0]],[[0,1,1,1],[1,3,3,1],[2,2,1,2],[1,2,3,0]],[[0,1,1,1],[1,3,3,1],[3,2,2,1],[1,2,1,1]],[[0,1,1,1],[1,3,3,1],[2,2,2,1],[2,2,1,1]],[[0,1,1,1],[1,3,3,1],[2,2,2,1],[1,3,1,1]],[[0,1,1,1],[1,3,3,1],[2,2,2,3],[0,1,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,2,2],[0,1,3,1]],[[0,1,1,1],[1,3,3,1],[2,2,2,2],[0,1,2,2]],[[0,1,1,1],[1,3,3,1],[2,2,2,3],[1,0,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,2,2],[1,0,3,1]],[[0,1,1,1],[1,3,3,1],[2,2,2,2],[1,0,2,2]],[[0,1,1,1],[1,3,3,1],[3,2,2,2],[1,2,0,1]],[[0,1,1,1],[1,3,3,1],[2,2,2,2],[2,2,0,1]],[[0,1,1,1],[1,3,3,1],[2,2,2,2],[1,3,0,1]],[[0,1,1,1],[1,3,3,1],[3,2,2,2],[1,2,1,0]],[[0,1,1,1],[1,3,3,1],[2,2,2,2],[2,2,1,0]],[[0,1,1,1],[1,3,3,1],[2,2,2,2],[1,3,1,0]],[[0,1,1,1],[1,4,3,1],[2,2,3,1],[0,1,2,1]],[[0,1,1,1],[1,3,4,1],[2,2,3,1],[0,1,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,4,1],[0,1,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,1],[0,1,3,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,1],[0,1,2,2]],[[0,1,1,1],[1,4,3,1],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[1,3,4,1],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[1,3,3,1],[2,2,4,1],[0,2,1,1]],[[0,1,1,1],[1,4,3,1],[2,2,3,1],[1,0,2,1]],[[0,1,1,1],[1,3,4,1],[2,2,3,1],[1,0,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,4,1],[1,0,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,1],[1,0,3,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,1],[1,0,2,2]],[[0,1,1,1],[1,4,3,1],[2,2,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,4,1],[2,2,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,3,1],[2,2,4,1],[1,1,1,1]],[[1,2,2,1],[2,3,1,2],[3,2,3,0],[1,1,0,0]],[[1,2,2,1],[3,3,1,2],[2,2,3,0],[1,1,0,0]],[[1,3,2,1],[2,3,1,2],[2,2,3,0],[1,1,0,0]],[[2,2,2,1],[2,3,1,2],[2,2,3,0],[1,1,0,0]],[[0,1,1,1],[1,4,3,1],[2,2,3,2],[0,0,2,1]],[[0,1,1,1],[1,3,4,1],[2,2,3,2],[0,0,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,4,2],[0,0,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,3],[0,0,2,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,2],[0,0,2,2]],[[0,1,1,1],[1,4,3,1],[2,2,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,4,1],[2,2,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,1],[2,2,4,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,3],[0,1,1,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,2],[0,1,1,2]],[[0,1,1,1],[1,4,3,1],[2,2,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,4,1],[2,2,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,1],[2,2,4,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,1],[2,2,3,3],[0,1,2,0]],[[0,1,1,1],[1,3,3,1],[2,2,3,2],[0,1,3,0]],[[0,1,1,1],[1,4,3,1],[2,2,3,2],[0,2,0,1]],[[0,1,1,1],[1,3,4,1],[2,2,3,2],[0,2,0,1]],[[0,1,1,1],[1,3,3,1],[2,2,4,2],[0,2,0,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,3],[0,2,0,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,2],[0,2,0,2]],[[0,1,1,1],[1,4,3,1],[2,2,3,2],[0,2,1,0]],[[0,1,1,1],[1,3,4,1],[2,2,3,2],[0,2,1,0]],[[0,1,1,1],[1,3,3,1],[2,2,4,2],[0,2,1,0]],[[0,1,1,1],[1,3,3,1],[2,2,3,3],[0,2,1,0]],[[0,1,1,1],[1,4,3,1],[2,2,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,4,1],[2,2,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,1],[2,2,4,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,3],[1,0,1,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,2],[1,0,1,2]],[[0,1,1,1],[1,4,3,1],[2,2,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,4,1],[2,2,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,1],[2,2,4,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,1],[2,2,3,3],[1,0,2,0]],[[0,1,1,1],[1,3,3,1],[2,2,3,2],[1,0,3,0]],[[0,1,1,1],[1,4,3,1],[2,2,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,4,1],[2,2,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,1],[2,2,4,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,3],[1,1,0,1]],[[0,1,1,1],[1,3,3,1],[2,2,3,2],[1,1,0,2]],[[0,1,1,1],[1,4,3,1],[2,2,3,2],[1,1,1,0]],[[0,1,1,1],[1,3,4,1],[2,2,3,2],[1,1,1,0]],[[0,1,1,1],[1,3,3,1],[2,2,4,2],[1,1,1,0]],[[0,1,1,1],[1,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[3,3,1,2],[2,2,3,0],[0,2,0,0]],[[1,3,2,1],[2,3,1,2],[2,2,3,0],[0,2,0,0]],[[2,2,2,1],[2,3,1,2],[2,2,3,0],[0,2,0,0]],[[0,1,1,1],[1,3,3,1],[3,3,0,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,3,0,1],[2,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,3,0,1],[1,3,2,1]],[[0,1,1,1],[1,4,3,1],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,4,1],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,3,1],[3,3,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,4,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,3,0,3],[0,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,3,0,2],[0,3,2,1]],[[0,1,1,1],[1,3,3,1],[2,3,0,2],[0,2,3,1]],[[0,1,1,1],[1,3,3,1],[2,3,0,2],[0,2,2,2]],[[0,1,1,1],[1,4,3,1],[2,3,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,4,1],[2,3,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,3,1],[3,3,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,3,1],[2,4,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,3,1],[2,3,0,2],[2,1,2,1]],[[0,1,1,1],[1,3,3,1],[3,3,0,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,3,0,2],[2,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,3,0,2],[1,3,2,0]],[[0,1,1,1],[1,4,3,1],[2,3,1,1],[0,2,2,1]],[[0,1,1,1],[1,3,4,1],[2,3,1,1],[0,2,2,1]],[[0,1,1,1],[1,3,3,1],[3,3,1,1],[0,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,4,1,1],[0,2,2,1]],[[0,1,1,1],[1,3,3,1],[2,3,1,1],[0,3,2,1]],[[0,1,1,1],[1,3,3,1],[2,3,1,1],[0,2,3,1]],[[0,1,1,1],[1,3,3,1],[2,3,1,1],[0,2,2,2]],[[0,1,1,1],[1,4,3,1],[2,3,1,1],[1,1,2,1]],[[0,1,1,1],[1,3,4,1],[2,3,1,1],[1,1,2,1]],[[0,1,1,1],[1,3,3,1],[3,3,1,1],[1,1,2,1]],[[0,1,1,1],[1,3,3,1],[2,4,1,1],[1,1,2,1]],[[0,1,1,1],[1,3,3,1],[2,3,1,1],[2,1,2,1]],[[0,1,1,1],[1,4,3,1],[2,3,1,2],[0,2,2,0]],[[0,1,1,1],[1,3,4,1],[2,3,1,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,1],[3,3,1,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,4,1,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,1],[2,3,1,2],[0,3,2,0]],[[0,1,1,1],[1,3,3,1],[2,3,1,2],[0,2,3,0]],[[0,1,1,1],[1,4,3,1],[2,3,1,2],[1,1,2,0]],[[0,1,1,1],[1,3,4,1],[2,3,1,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,1],[3,3,1,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,1],[2,4,1,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,1],[2,3,1,2],[2,1,2,0]],[[0,1,1,1],[1,4,3,1],[2,3,2,1],[0,1,2,1]],[[0,1,1,1],[1,3,4,1],[2,3,2,1],[0,1,2,1]],[[0,1,1,1],[1,3,3,1],[3,3,2,1],[0,1,2,1]],[[0,1,1,1],[1,3,3,1],[2,4,2,1],[0,1,2,1]],[[0,1,1,1],[1,4,3,1],[2,3,2,1],[0,2,1,1]],[[0,1,1,1],[1,3,4,1],[2,3,2,1],[0,2,1,1]],[[0,1,1,1],[1,3,3,1],[3,3,2,1],[0,2,1,1]],[[0,1,1,1],[1,3,3,1],[2,4,2,1],[0,2,1,1]],[[0,1,1,1],[1,3,3,1],[2,3,2,1],[0,3,1,1]],[[0,1,1,1],[1,4,3,1],[2,3,2,1],[1,0,2,1]],[[0,1,1,1],[1,3,4,1],[2,3,2,1],[1,0,2,1]],[[0,1,1,1],[1,3,3,1],[3,3,2,1],[1,0,2,1]],[[0,1,1,1],[1,3,3,1],[2,4,2,1],[1,0,2,1]],[[0,1,1,1],[1,3,3,1],[2,3,2,1],[2,0,2,1]],[[0,1,1,1],[1,4,3,1],[2,3,2,1],[1,1,1,1]],[[0,1,1,1],[1,3,4,1],[2,3,2,1],[1,1,1,1]],[[0,1,1,1],[1,3,3,1],[3,3,2,1],[1,1,1,1]],[[0,1,1,1],[1,3,3,1],[2,4,2,1],[1,1,1,1]],[[0,1,1,1],[1,3,3,1],[2,3,2,1],[2,1,1,1]],[[0,1,1,1],[1,3,3,1],[3,3,2,1],[1,2,0,1]],[[0,1,1,1],[1,3,3,1],[2,4,2,1],[1,2,0,1]],[[0,1,1,1],[1,3,3,1],[2,3,2,1],[2,2,0,1]],[[0,1,1,1],[1,4,3,1],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[1,3,4,1],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,1],[3,3,2,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,1],[2,4,2,2],[0,1,1,1]],[[0,1,1,1],[1,4,3,1],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[1,3,4,1],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,1],[3,3,2,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,1],[2,4,2,2],[0,1,2,0]],[[0,1,1,1],[1,4,3,1],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[1,3,4,1],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[1,3,3,1],[3,3,2,2],[0,2,0,1]],[[0,1,1,1],[1,3,3,1],[2,4,2,2],[0,2,0,1]],[[0,1,1,1],[1,3,3,1],[2,3,2,2],[0,3,0,1]],[[0,1,1,1],[1,4,3,1],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[1,3,4,1],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[1,3,3,1],[3,3,2,2],[0,2,1,0]],[[0,1,1,1],[1,3,3,1],[2,4,2,2],[0,2,1,0]],[[0,1,1,1],[1,3,3,1],[2,3,2,2],[0,3,1,0]],[[0,1,1,1],[1,4,3,1],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[1,3,4,1],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,1],[3,3,2,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,1],[2,4,2,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,1],[2,3,2,2],[2,0,1,1]],[[0,1,1,1],[1,4,3,1],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[1,3,4,1],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,1],[3,3,2,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,1],[2,4,2,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,1],[2,3,2,2],[2,0,2,0]],[[0,1,1,1],[1,4,3,1],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[1,3,4,1],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,1],[3,3,2,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,1],[2,4,2,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,1],[2,3,2,2],[2,1,0,1]],[[0,1,1,1],[1,4,3,1],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[1,3,4,1],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[1,3,3,1],[3,3,2,2],[1,1,1,0]],[[0,1,1,1],[1,3,3,1],[2,4,2,2],[1,1,1,0]],[[0,1,1,1],[1,3,3,1],[2,3,2,2],[2,1,1,0]],[[0,1,1,1],[1,4,3,1],[2,3,2,2],[1,2,0,0]],[[0,1,1,1],[1,3,4,1],[2,3,2,2],[1,2,0,0]],[[0,1,1,1],[1,3,3,1],[3,3,2,2],[1,2,0,0]],[[0,1,1,1],[1,3,3,1],[2,4,2,2],[1,2,0,0]],[[0,1,1,1],[1,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[3,3,1,2],[2,2,2,1],[1,0,1,0]],[[1,2,2,2],[2,3,1,2],[2,2,2,1],[1,0,1,0]],[[1,2,3,1],[2,3,1,2],[2,2,2,1],[1,0,1,0]],[[1,3,2,1],[2,3,1,2],[2,2,2,1],[1,0,1,0]],[[2,2,2,1],[2,3,1,2],[2,2,2,1],[1,0,1,0]],[[1,2,2,1],[3,3,1,2],[2,2,2,1],[1,0,0,1]],[[1,2,2,2],[2,3,1,2],[2,2,2,1],[1,0,0,1]],[[1,2,3,1],[2,3,1,2],[2,2,2,1],[1,0,0,1]],[[1,3,2,1],[2,3,1,2],[2,2,2,1],[1,0,0,1]],[[2,2,2,1],[2,3,1,2],[2,2,2,1],[1,0,0,1]],[[0,1,1,1],[1,4,3,1],[2,3,3,1],[0,0,2,1]],[[0,1,1,1],[1,3,4,1],[2,3,3,1],[0,0,2,1]],[[0,1,1,1],[1,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,2,1],[2,3,1,2],[2,2,2,0],[2,2,0,0]],[[1,2,2,1],[2,3,1,2],[3,2,2,0],[1,2,0,0]],[[1,2,2,1],[3,3,1,2],[2,2,2,0],[1,2,0,0]],[[0,1,1,1],[1,4,3,1],[2,3,3,2],[0,0,1,1]],[[0,1,1,1],[1,3,4,1],[2,3,3,2],[0,0,1,1]],[[0,1,1,1],[1,3,3,1],[2,3,4,2],[0,0,1,1]],[[0,1,1,1],[1,3,3,1],[2,3,3,3],[0,0,1,1]],[[0,1,1,1],[1,3,3,1],[2,3,3,2],[0,0,1,2]],[[0,1,1,1],[1,4,3,1],[2,3,3,2],[0,0,2,0]],[[0,1,1,1],[1,3,4,1],[2,3,3,2],[0,0,2,0]],[[0,1,1,1],[1,3,3,1],[2,3,4,2],[0,0,2,0]],[[0,1,1,1],[1,3,3,1],[2,3,3,3],[0,0,2,0]],[[1,3,2,1],[2,3,1,2],[2,2,2,0],[1,2,0,0]],[[2,2,2,1],[2,3,1,2],[2,2,2,0],[1,2,0,0]],[[0,1,1,1],[1,4,3,1],[2,3,3,2],[0,2,0,0]],[[0,1,1,1],[1,3,4,1],[2,3,3,2],[0,2,0,0]],[[0,1,1,1],[1,3,3,1],[3,3,3,2],[0,2,0,0]],[[0,1,1,1],[1,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[2,3,1,2],[2,2,2,0],[2,1,1,0]],[[1,2,2,1],[2,3,1,2],[3,2,2,0],[1,1,1,0]],[[1,2,2,1],[3,3,1,2],[2,2,2,0],[1,1,1,0]],[[1,3,2,1],[2,3,1,2],[2,2,2,0],[1,1,1,0]],[[2,2,2,1],[2,3,1,2],[2,2,2,0],[1,1,1,0]],[[1,2,2,1],[2,3,1,2],[3,2,2,0],[1,1,0,1]],[[1,2,2,1],[3,3,1,2],[2,2,2,0],[1,1,0,1]],[[1,3,2,1],[2,3,1,2],[2,2,2,0],[1,1,0,1]],[[2,2,2,1],[2,3,1,2],[2,2,2,0],[1,1,0,1]],[[1,2,2,1],[2,3,1,2],[3,2,2,0],[1,0,2,0]],[[1,2,2,1],[3,3,1,2],[2,2,2,0],[1,0,2,0]],[[1,3,2,1],[2,3,1,2],[2,2,2,0],[1,0,2,0]],[[2,2,2,1],[2,3,1,2],[2,2,2,0],[1,0,2,0]],[[0,1,1,1],[1,4,3,1],[2,3,3,2],[1,1,0,0]],[[0,1,1,1],[1,3,4,1],[2,3,3,2],[1,1,0,0]],[[0,1,1,1],[1,3,3,1],[3,3,3,2],[1,1,0,0]],[[0,1,1,1],[1,3,3,1],[2,4,3,2],[1,1,0,0]],[[0,1,1,1],[1,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[2,3,1,2],[3,2,2,0],[0,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,2,2,0],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[2,2,2,0],[0,2,1,0]],[[2,2,2,1],[2,3,1,2],[2,2,2,0],[0,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,2,2,0],[0,2,0,1]],[[1,3,2,1],[2,3,1,2],[2,2,2,0],[0,2,0,1]],[[2,2,2,1],[2,3,1,2],[2,2,2,0],[0,2,0,1]],[[1,2,2,1],[3,3,1,2],[2,2,2,0],[0,1,2,0]],[[1,3,2,1],[2,3,1,2],[2,2,2,0],[0,1,2,0]],[[2,2,2,1],[2,3,1,2],[2,2,2,0],[0,1,2,0]],[[0,1,1,2],[1,3,3,2],[0,0,3,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,3],[0,0,3,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[0,0,3,3],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[0,0,3,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[3,3,1,2],[2,2,1,2],[1,0,1,0]],[[1,2,2,2],[2,3,1,2],[2,2,1,2],[1,0,1,0]],[[1,2,3,1],[2,3,1,2],[2,2,1,2],[1,0,1,0]],[[1,3,2,1],[2,3,1,2],[2,2,1,2],[1,0,1,0]],[[2,2,2,1],[2,3,1,2],[2,2,1,2],[1,0,1,0]],[[1,2,2,1],[2,3,1,3],[2,2,1,2],[1,0,0,1]],[[1,2,2,1],[3,3,1,2],[2,2,1,2],[1,0,0,1]],[[1,2,2,2],[2,3,1,2],[2,2,1,2],[1,0,0,1]],[[1,2,3,1],[2,3,1,2],[2,2,1,2],[1,0,0,1]],[[1,3,2,1],[2,3,1,2],[2,2,1,2],[1,0,0,1]],[[2,2,2,1],[2,3,1,2],[2,2,1,2],[1,0,0,1]],[[0,1,1,2],[1,3,3,2],[1,0,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,4,2],[1,0,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,3],[1,0,2,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,0,2,3],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,0,2,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[1,0,2,2],[1,2,2,2]],[[0,1,1,2],[1,3,3,2],[1,0,3,2],[1,1,2,1]],[[0,1,1,1],[1,3,4,2],[1,0,3,2],[1,1,2,1]],[[0,1,1,1],[1,3,3,3],[1,0,3,2],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[1,0,3,3],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[1,0,3,2],[1,1,2,2]],[[0,1,1,2],[1,3,3,2],[1,0,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,4,2],[1,0,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,3],[1,0,3,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,0,3,3],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,0,3,2],[1,2,1,2]],[[0,1,1,2],[1,3,3,2],[1,0,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,4,2],[1,0,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,3],[1,0,3,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,0,3,3],[1,2,2,0]],[[0,1,1,2],[1,3,3,2],[1,1,1,2],[1,2,2,1]],[[0,1,1,1],[1,4,3,2],[1,1,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,4,2],[1,1,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,3],[1,1,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,1,1,3],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,1,1,2],[2,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,1,1,2],[1,3,2,1]],[[0,1,1,1],[1,3,3,2],[1,1,1,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[1,1,1,2],[1,2,2,2]],[[0,1,1,2],[1,3,3,2],[1,1,2,2],[1,2,1,1]],[[0,1,1,1],[1,4,3,2],[1,1,2,2],[1,2,1,1]],[[0,1,1,1],[1,3,4,2],[1,1,2,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,3],[1,1,2,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,1,2,3],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,1,2,2],[1,2,1,2]],[[0,1,1,2],[1,3,3,2],[1,1,2,2],[1,2,2,0]],[[0,1,1,1],[1,4,3,2],[1,1,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,4,2],[1,1,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,3],[1,1,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,1,2,3],[1,2,2,0]],[[0,1,1,2],[1,3,3,2],[1,1,3,0],[1,2,2,1]],[[0,1,1,1],[1,4,3,2],[1,1,3,0],[1,2,2,1]],[[0,1,1,1],[1,3,4,2],[1,1,3,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,3],[1,1,3,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,1,4,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,1,3,0],[2,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,1,3,0],[1,3,2,1]],[[0,1,1,1],[1,3,3,2],[1,1,3,0],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[1,1,3,0],[1,2,2,2]],[[0,1,1,2],[1,3,3,2],[1,1,3,1],[1,2,1,1]],[[0,1,1,1],[1,4,3,2],[1,1,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,4,2],[1,1,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,3,3],[1,1,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,1,4,1],[1,2,1,1]],[[0,1,1,2],[1,3,3,2],[1,1,3,1],[1,2,2,0]],[[0,1,1,1],[1,4,3,2],[1,1,3,1],[1,2,2,0]],[[0,1,1,1],[1,3,4,2],[1,1,3,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,3],[1,1,3,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,1,4,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,1,3,1],[2,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,1,3,1],[1,3,2,0]],[[0,1,1,1],[1,3,3,2],[1,1,3,1],[1,2,3,0]],[[0,1,1,2],[1,3,3,2],[1,1,3,2],[1,0,2,1]],[[0,1,1,1],[1,3,4,2],[1,1,3,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,3],[1,1,3,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[1,1,3,3],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[1,1,3,2],[1,0,2,2]],[[0,1,1,2],[1,3,3,2],[1,1,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,4,2],[1,1,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,3],[1,1,3,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[1,1,3,3],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[1,1,3,2],[1,1,1,2]],[[0,1,1,2],[1,3,3,2],[1,1,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,4,2],[1,1,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,3],[1,1,3,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[1,1,3,3],[1,1,2,0]],[[0,1,1,2],[1,3,3,2],[1,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,4,3,2],[1,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,4,2],[1,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,3],[1,2,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,2,0,3],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,2,0,2],[2,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,2,0,2],[1,3,2,1]],[[0,1,1,1],[1,3,3,2],[1,2,0,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[1,2,0,2],[1,2,2,2]],[[0,1,1,2],[1,3,3,2],[1,2,1,2],[1,1,2,1]],[[0,1,1,1],[1,4,3,2],[1,2,1,2],[1,1,2,1]],[[0,1,1,1],[1,3,4,2],[1,2,1,2],[1,1,2,1]],[[0,1,1,1],[1,3,3,3],[1,2,1,2],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[1,2,1,3],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[1,2,1,2],[1,1,3,1]],[[0,1,1,1],[1,3,3,2],[1,2,1,2],[1,1,2,2]],[[0,1,1,2],[1,3,3,2],[1,2,2,2],[1,0,2,1]],[[0,1,1,1],[1,3,4,2],[1,2,2,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,3],[1,2,2,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[1,2,2,3],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[1,2,2,2],[1,0,2,2]],[[0,1,1,2],[1,3,3,2],[1,2,2,2],[1,1,1,1]],[[0,1,1,1],[1,4,3,2],[1,2,2,2],[1,1,1,1]],[[0,1,1,1],[1,3,4,2],[1,2,2,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,3],[1,2,2,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[1,2,2,3],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[1,2,2,2],[1,1,1,2]],[[0,1,1,2],[1,3,3,2],[1,2,2,2],[1,1,2,0]],[[0,1,1,1],[1,4,3,2],[1,2,2,2],[1,1,2,0]],[[0,1,1,1],[1,3,4,2],[1,2,2,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,3],[1,2,2,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[1,2,2,3],[1,1,2,0]],[[0,1,1,2],[1,3,3,2],[1,2,2,2],[1,2,0,1]],[[0,1,1,1],[1,4,3,2],[1,2,2,2],[1,2,0,1]],[[0,1,1,1],[1,3,4,2],[1,2,2,2],[1,2,0,1]],[[0,1,1,1],[1,3,3,3],[1,2,2,2],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[1,2,2,3],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[1,2,2,2],[1,2,0,2]],[[0,1,1,2],[1,3,3,2],[1,2,2,2],[1,2,1,0]],[[0,1,1,1],[1,4,3,2],[1,2,2,2],[1,2,1,0]],[[0,1,1,1],[1,3,4,2],[1,2,2,2],[1,2,1,0]],[[0,1,1,1],[1,3,3,3],[1,2,2,2],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,2,2,3],[1,2,1,0]],[[0,1,1,2],[1,3,3,2],[1,2,3,0],[1,1,2,1]],[[0,1,1,1],[1,4,3,2],[1,2,3,0],[1,1,2,1]],[[0,1,1,1],[1,3,4,2],[1,2,3,0],[1,1,2,1]],[[0,1,1,1],[1,3,3,3],[1,2,3,0],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[1,2,4,0],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[1,2,3,0],[1,1,3,1]],[[0,1,1,1],[1,3,3,2],[1,2,3,0],[1,1,2,2]],[[0,1,1,2],[1,3,3,2],[1,2,3,0],[1,2,1,1]],[[0,1,1,1],[1,4,3,2],[1,2,3,0],[1,2,1,1]],[[0,1,1,1],[1,3,4,2],[1,2,3,0],[1,2,1,1]],[[0,1,1,1],[1,3,3,3],[1,2,3,0],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,2,4,0],[1,2,1,1]],[[0,1,1,2],[1,3,3,2],[1,2,3,1],[1,0,2,1]],[[0,1,1,1],[1,3,4,2],[1,2,3,1],[1,0,2,1]],[[0,1,1,1],[1,3,3,3],[1,2,3,1],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[1,2,4,1],[1,0,2,1]],[[0,1,1,2],[1,3,3,2],[1,2,3,1],[1,1,1,1]],[[0,1,1,1],[1,4,3,2],[1,2,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,4,2],[1,2,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,3,3],[1,2,3,1],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[1,2,4,1],[1,1,1,1]],[[0,1,1,2],[1,3,3,2],[1,2,3,1],[1,1,2,0]],[[0,1,1,1],[1,4,3,2],[1,2,3,1],[1,1,2,0]],[[0,1,1,1],[1,3,4,2],[1,2,3,1],[1,1,2,0]],[[0,1,1,1],[1,3,3,3],[1,2,3,1],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[1,2,4,1],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[1,2,3,1],[1,1,3,0]],[[0,1,1,2],[1,3,3,2],[1,2,3,1],[1,2,0,1]],[[0,1,1,1],[1,4,3,2],[1,2,3,1],[1,2,0,1]],[[0,1,1,1],[1,3,4,2],[1,2,3,1],[1,2,0,1]],[[0,1,1,1],[1,3,3,3],[1,2,3,1],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[1,2,4,1],[1,2,0,1]],[[0,1,1,2],[1,3,3,2],[1,2,3,1],[1,2,1,0]],[[0,1,1,1],[1,4,3,2],[1,2,3,1],[1,2,1,0]],[[0,1,1,1],[1,3,4,2],[1,2,3,1],[1,2,1,0]],[[0,1,1,1],[1,3,3,3],[1,2,3,1],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,2,4,1],[1,2,1,0]],[[0,1,1,2],[1,3,3,2],[1,2,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,4,2],[1,2,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,3],[1,2,3,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,3,1,2],[2,2,1,0],[2,1,2,0]],[[1,2,2,1],[2,3,1,2],[3,2,1,0],[1,1,2,0]],[[1,2,2,1],[3,3,1,2],[2,2,1,0],[1,1,2,0]],[[1,3,2,1],[2,3,1,2],[2,2,1,0],[1,1,2,0]],[[2,2,2,1],[2,3,1,2],[2,2,1,0],[1,1,2,0]],[[1,2,2,1],[2,3,1,2],[3,2,1,0],[0,2,2,0]],[[1,2,2,1],[3,3,1,2],[2,2,1,0],[0,2,2,0]],[[0,1,1,2],[1,3,3,2],[1,3,0,1],[1,2,2,1]],[[0,1,1,1],[1,4,3,2],[1,3,0,1],[1,2,2,1]],[[0,1,1,1],[1,3,4,2],[1,3,0,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,3],[1,3,0,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,4,0,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,3,0,1],[2,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,3,0,1],[1,3,2,1]],[[0,1,1,1],[1,3,3,2],[1,3,0,1],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[1,3,0,1],[1,2,2,2]],[[0,1,1,2],[1,3,3,2],[1,3,0,2],[1,1,2,1]],[[0,1,1,1],[1,4,3,2],[1,3,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,4,2],[1,3,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,3,3],[1,3,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[1,4,0,2],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[1,3,0,3],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[1,3,0,2],[1,1,3,1]],[[0,1,1,1],[1,3,3,2],[1,3,0,2],[1,1,2,2]],[[0,1,1,2],[1,3,3,2],[1,3,0,2],[1,2,1,1]],[[0,1,1,1],[1,4,3,2],[1,3,0,2],[1,2,1,1]],[[0,1,1,1],[1,3,4,2],[1,3,0,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,3],[1,3,0,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,4,0,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,3,0,3],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,3,0,2],[2,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,3,0,2],[1,3,1,1]],[[0,1,1,1],[1,3,3,2],[1,3,0,2],[1,2,1,2]],[[0,1,1,2],[1,3,3,2],[1,3,0,2],[1,2,2,0]],[[0,1,1,1],[1,4,3,2],[1,3,0,2],[1,2,2,0]],[[0,1,1,1],[1,3,4,2],[1,3,0,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,3],[1,3,0,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,4,0,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,3,0,3],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,3,0,2],[2,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,3,0,2],[1,3,2,0]],[[0,1,1,1],[1,3,3,2],[1,3,0,2],[1,2,3,0]],[[0,1,1,2],[1,3,3,2],[1,3,1,0],[1,2,2,1]],[[0,1,1,1],[1,4,3,2],[1,3,1,0],[1,2,2,1]],[[0,1,1,1],[1,3,4,2],[1,3,1,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,3],[1,3,1,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,4,1,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,3,1,0],[2,2,2,1]],[[0,1,1,1],[1,3,3,2],[1,3,1,0],[1,3,2,1]],[[0,1,1,1],[1,3,3,2],[1,3,1,0],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[1,3,1,0],[1,2,2,2]],[[0,1,1,2],[1,3,3,2],[1,3,1,1],[1,2,2,0]],[[0,1,1,1],[1,4,3,2],[1,3,1,1],[1,2,2,0]],[[0,1,1,1],[1,3,4,2],[1,3,1,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,3],[1,3,1,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,4,1,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,3,1,1],[2,2,2,0]],[[0,1,1,1],[1,3,3,2],[1,3,1,1],[1,3,2,0]],[[0,1,1,1],[1,3,3,2],[1,3,1,1],[1,2,3,0]],[[0,1,1,2],[1,3,3,2],[1,3,1,2],[1,1,1,1]],[[0,1,1,1],[1,4,3,2],[1,3,1,2],[1,1,1,1]],[[0,1,1,1],[1,3,4,2],[1,3,1,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,3],[1,3,1,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[1,4,1,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[1,3,1,3],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[1,3,1,2],[1,1,1,2]],[[0,1,1,2],[1,3,3,2],[1,3,1,2],[1,1,2,0]],[[0,1,1,1],[1,4,3,2],[1,3,1,2],[1,1,2,0]],[[0,1,1,1],[1,3,4,2],[1,3,1,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,3],[1,3,1,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[1,4,1,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[1,3,1,3],[1,1,2,0]],[[0,1,1,2],[1,3,3,2],[1,3,1,2],[1,2,0,1]],[[0,1,1,1],[1,4,3,2],[1,3,1,2],[1,2,0,1]],[[0,1,1,1],[1,3,4,2],[1,3,1,2],[1,2,0,1]],[[0,1,1,1],[1,3,3,3],[1,3,1,2],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[1,4,1,2],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[1,3,1,3],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[1,3,1,2],[2,2,0,1]],[[0,1,1,1],[1,3,3,2],[1,3,1,2],[1,3,0,1]],[[0,1,1,1],[1,3,3,2],[1,3,1,2],[1,2,0,2]],[[0,1,1,2],[1,3,3,2],[1,3,1,2],[1,2,1,0]],[[0,1,1,1],[1,4,3,2],[1,3,1,2],[1,2,1,0]],[[0,1,1,1],[1,3,4,2],[1,3,1,2],[1,2,1,0]],[[0,1,1,1],[1,3,3,3],[1,3,1,2],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,4,1,2],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,3,1,3],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,3,1,2],[2,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,3,2,1],[2,3,1,2],[2,2,1,0],[0,2,2,0]],[[2,2,2,1],[2,3,1,2],[2,2,1,0],[0,2,2,0]],[[0,1,1,2],[1,3,3,2],[1,3,2,0],[1,1,2,1]],[[0,1,1,1],[1,4,3,2],[1,3,2,0],[1,1,2,1]],[[0,1,1,1],[1,3,4,2],[1,3,2,0],[1,1,2,1]],[[0,1,1,1],[1,3,3,3],[1,3,2,0],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[1,4,2,0],[1,1,2,1]],[[0,1,1,2],[1,3,3,2],[1,3,2,0],[1,2,1,1]],[[0,1,1,1],[1,4,3,2],[1,3,2,0],[1,2,1,1]],[[0,1,1,1],[1,3,4,2],[1,3,2,0],[1,2,1,1]],[[0,1,1,1],[1,3,3,3],[1,3,2,0],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,4,2,0],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,3,2,0],[2,2,1,1]],[[0,1,1,1],[1,3,3,2],[1,3,2,0],[1,3,1,1]],[[0,1,1,2],[1,3,3,2],[1,3,2,1],[1,1,1,1]],[[0,1,1,1],[1,4,3,2],[1,3,2,1],[1,1,1,1]],[[0,1,1,1],[1,3,4,2],[1,3,2,1],[1,1,1,1]],[[0,1,1,1],[1,3,3,3],[1,3,2,1],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[1,4,2,1],[1,1,1,1]],[[0,1,1,2],[1,3,3,2],[1,3,2,1],[1,1,2,0]],[[0,1,1,1],[1,4,3,2],[1,3,2,1],[1,1,2,0]],[[0,1,1,1],[1,3,4,2],[1,3,2,1],[1,1,2,0]],[[0,1,1,1],[1,3,3,3],[1,3,2,1],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[1,4,2,1],[1,1,2,0]],[[0,1,1,2],[1,3,3,2],[1,3,2,1],[1,2,0,1]],[[0,1,1,1],[1,4,3,2],[1,3,2,1],[1,2,0,1]],[[0,1,1,1],[1,3,4,2],[1,3,2,1],[1,2,0,1]],[[0,1,1,1],[1,3,3,3],[1,3,2,1],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[1,4,2,1],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[1,3,2,1],[2,2,0,1]],[[0,1,1,1],[1,3,3,2],[1,3,2,1],[1,3,0,1]],[[0,1,1,2],[1,3,3,2],[1,3,2,1],[1,2,1,0]],[[0,1,1,1],[1,4,3,2],[1,3,2,1],[1,2,1,0]],[[0,1,1,1],[1,3,4,2],[1,3,2,1],[1,2,1,0]],[[0,1,1,1],[1,3,3,3],[1,3,2,1],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,4,2,1],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,3,2,1],[2,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,3,2,1],[1,3,1,0]],[[0,1,1,1],[1,4,3,2],[1,3,3,0],[1,1,2,0]],[[0,1,1,1],[1,3,4,2],[1,3,3,0],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[1,4,3,0],[1,1,2,0]],[[0,1,1,1],[1,4,3,2],[1,3,3,0],[1,2,1,0]],[[0,1,1,1],[1,3,4,2],[1,3,3,0],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,4,3,0],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,3,3,0],[2,2,1,0]],[[0,1,1,1],[1,3,3,2],[1,3,3,0],[1,3,1,0]],[[0,1,1,2],[1,3,3,2],[1,3,3,1],[1,2,0,0]],[[0,1,1,1],[1,4,3,2],[1,3,3,1],[1,2,0,0]],[[0,1,1,1],[1,3,4,2],[1,3,3,1],[1,2,0,0]],[[0,1,1,1],[1,3,3,3],[1,3,3,1],[1,2,0,0]],[[0,1,1,1],[1,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,3,1,2],[2,2,0,0],[2,2,2,0]],[[1,2,2,1],[2,3,1,2],[3,2,0,0],[1,2,2,0]],[[1,2,2,1],[3,3,1,2],[2,2,0,0],[1,2,2,0]],[[1,3,2,1],[2,3,1,2],[2,2,0,0],[1,2,2,0]],[[2,2,2,1],[2,3,1,2],[2,2,0,0],[1,2,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,3,1],[1,1,0,0]],[[1,2,2,2],[2,3,1,2],[2,1,3,1],[1,1,0,0]],[[1,2,3,1],[2,3,1,2],[2,1,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,1,2],[2,1,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,1,2],[2,1,3,1],[1,1,0,0]],[[0,1,1,2],[1,3,3,2],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[1,4,3,2],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,4,2],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,3],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[3,0,1,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,1,3],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,1,2],[2,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,1,2],[1,3,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,1,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[2,0,1,2],[1,2,2,2]],[[0,1,1,2],[1,3,3,2],[2,0,2,2],[0,2,2,1]],[[0,1,1,1],[1,3,4,2],[2,0,2,2],[0,2,2,1]],[[0,1,1,1],[1,3,3,3],[2,0,2,2],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,2,3],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,2,2],[0,2,3,1]],[[0,1,1,1],[1,3,3,2],[2,0,2,2],[0,2,2,2]],[[0,1,1,2],[1,3,3,2],[2,0,2,2],[1,2,1,1]],[[0,1,1,1],[1,4,3,2],[2,0,2,2],[1,2,1,1]],[[0,1,1,1],[1,3,4,2],[2,0,2,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,3],[2,0,2,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,0,2,3],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,0,2,2],[1,2,1,2]],[[0,1,1,2],[1,3,3,2],[2,0,2,2],[1,2,2,0]],[[0,1,1,1],[1,4,3,2],[2,0,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,4,2],[2,0,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,3],[2,0,2,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,0,2,3],[1,2,2,0]],[[0,1,1,2],[1,3,3,2],[2,0,3,0],[1,2,2,1]],[[0,1,1,1],[1,4,3,2],[2,0,3,0],[1,2,2,1]],[[0,1,1,1],[1,3,4,2],[2,0,3,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,3],[2,0,3,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[3,0,3,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,4,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,3,0],[2,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,3,0],[1,3,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,3,0],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[2,0,3,0],[1,2,2,2]],[[0,1,1,2],[1,3,3,2],[2,0,3,1],[1,2,1,1]],[[0,1,1,1],[1,4,3,2],[2,0,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,4,2],[2,0,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,3,3],[2,0,3,1],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,0,4,1],[1,2,1,1]],[[0,1,1,2],[1,3,3,2],[2,0,3,1],[1,2,2,0]],[[0,1,1,1],[1,4,3,2],[2,0,3,1],[1,2,2,0]],[[0,1,1,1],[1,3,4,2],[2,0,3,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,3],[2,0,3,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[3,0,3,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,0,4,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,0,3,1],[2,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,0,3,1],[1,3,2,0]],[[0,1,1,1],[1,3,3,2],[2,0,3,1],[1,2,3,0]],[[0,1,1,2],[1,3,3,2],[2,0,3,2],[0,1,2,1]],[[0,1,1,1],[1,3,4,2],[2,0,3,2],[0,1,2,1]],[[0,1,1,1],[1,3,3,3],[2,0,3,2],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,3,3],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,0,3,2],[0,1,2,2]],[[0,1,1,2],[1,3,3,2],[2,0,3,2],[0,2,1,1]],[[0,1,1,1],[1,3,4,2],[2,0,3,2],[0,2,1,1]],[[0,1,1,1],[1,3,3,3],[2,0,3,2],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,0,3,3],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,0,3,2],[0,2,1,2]],[[0,1,1,2],[1,3,3,2],[2,0,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,4,2],[2,0,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,3],[2,0,3,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,0,3,3],[0,2,2,0]],[[0,1,1,2],[1,3,3,2],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[1,4,3,2],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,4,2],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,3],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[3,1,0,2],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,0,3],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,0,2],[2,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,0,2],[1,3,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,0,2],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[2,1,0,2],[1,2,2,2]],[[0,1,1,2],[1,3,3,2],[2,1,1,2],[0,2,2,1]],[[0,1,1,1],[1,4,3,2],[2,1,1,2],[0,2,2,1]],[[0,1,1,1],[1,3,4,2],[2,1,1,2],[0,2,2,1]],[[0,1,1,1],[1,3,3,3],[2,1,1,2],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,1,3],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,1,2],[0,3,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,1,2],[0,2,3,1]],[[0,1,1,1],[1,3,3,2],[2,1,1,2],[0,2,2,2]],[[0,1,1,2],[1,3,3,2],[2,1,2,2],[0,2,1,1]],[[0,1,1,1],[1,4,3,2],[2,1,2,2],[0,2,1,1]],[[0,1,1,1],[1,3,4,2],[2,1,2,2],[0,2,1,1]],[[0,1,1,1],[1,3,3,3],[2,1,2,2],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,1,2,3],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,1,2,2],[0,2,1,2]],[[0,1,1,2],[1,3,3,2],[2,1,2,2],[0,2,2,0]],[[0,1,1,1],[1,4,3,2],[2,1,2,2],[0,2,2,0]],[[0,1,1,1],[1,3,4,2],[2,1,2,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,3],[2,1,2,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,3,1],[0,2,0,0]],[[1,2,2,2],[2,3,1,2],[2,1,3,1],[0,2,0,0]],[[1,2,3,1],[2,3,1,2],[2,1,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,1,2],[2,1,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,1,2],[2,1,3,1],[0,2,0,0]],[[0,1,1,2],[1,3,3,2],[2,1,3,0],[0,2,2,1]],[[0,1,1,1],[1,4,3,2],[2,1,3,0],[0,2,2,1]],[[0,1,1,1],[1,3,4,2],[2,1,3,0],[0,2,2,1]],[[0,1,1,1],[1,3,3,3],[2,1,3,0],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,4,0],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,3,0],[0,3,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,3,0],[0,2,3,1]],[[0,1,1,1],[1,3,3,2],[2,1,3,0],[0,2,2,2]],[[0,1,1,2],[1,3,3,2],[2,1,3,1],[0,2,1,1]],[[0,1,1,1],[1,4,3,2],[2,1,3,1],[0,2,1,1]],[[0,1,1,1],[1,3,4,2],[2,1,3,1],[0,2,1,1]],[[0,1,1,1],[1,3,3,3],[2,1,3,1],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,1,4,1],[0,2,1,1]],[[0,1,1,2],[1,3,3,2],[2,1,3,1],[0,2,2,0]],[[0,1,1,1],[1,4,3,2],[2,1,3,1],[0,2,2,0]],[[0,1,1,1],[1,3,4,2],[2,1,3,1],[0,2,2,0]],[[0,1,1,1],[1,3,3,3],[2,1,3,1],[0,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,1,4,1],[0,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,1,3,1],[0,3,2,0]],[[0,1,1,1],[1,3,3,2],[2,1,3,1],[0,2,3,0]],[[0,1,1,2],[1,3,3,2],[2,1,3,2],[0,0,2,1]],[[0,1,1,1],[1,3,4,2],[2,1,3,2],[0,0,2,1]],[[0,1,1,1],[1,3,3,3],[2,1,3,2],[0,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,3,3],[0,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,1,3,2],[0,0,2,2]],[[0,1,1,2],[1,3,3,2],[2,1,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,4,2],[2,1,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,3],[2,1,3,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,1,3,3],[0,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,1,3,2],[0,1,1,2]],[[0,1,1,2],[1,3,3,2],[2,1,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,4,2],[2,1,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,3],[2,1,3,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,1,3,3],[0,1,2,0]],[[0,1,1,2],[1,3,3,2],[2,1,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,4,2],[2,1,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,3],[2,1,3,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,1,3,3],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,1,3,2],[1,0,1,2]],[[0,1,1,2],[1,3,3,2],[2,1,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,4,2],[2,1,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,3],[2,1,3,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,1,3,3],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[3,2,0,1],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,0,1],[2,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,0,1],[1,3,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,0,1],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[2,2,0,1],[1,2,2,2]],[[0,1,1,2],[1,3,3,2],[2,2,0,2],[0,2,2,1]],[[0,1,1,1],[1,4,3,2],[2,2,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,4,2],[2,2,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,3,3],[2,2,0,2],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,0,3],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,0,2],[0,3,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,0,2],[0,2,3,1]],[[0,1,1,1],[1,3,3,2],[2,2,0,2],[0,2,2,2]],[[0,1,1,1],[1,3,3,2],[3,2,0,2],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,0,2],[2,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,0,2],[1,3,1,1]],[[0,1,1,1],[1,3,3,2],[3,2,0,2],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,0,2],[2,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,0,2],[1,3,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,0,2],[1,2,3,0]],[[0,1,1,1],[1,3,3,2],[3,2,1,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,0],[2,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,0],[1,3,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,0],[1,2,3,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,0],[1,2,2,2]],[[0,1,1,1],[1,3,3,2],[3,2,1,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,1,1],[2,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,1,1],[1,3,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,1,1],[1,2,3,0]],[[0,1,1,2],[1,3,3,2],[2,2,1,2],[0,1,2,1]],[[0,1,1,1],[1,4,3,2],[2,2,1,2],[0,1,2,1]],[[0,1,1,1],[1,3,4,2],[2,2,1,2],[0,1,2,1]],[[0,1,1,1],[1,3,3,3],[2,2,1,2],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,3],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,2],[0,1,3,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,2],[0,1,2,2]],[[0,1,1,2],[1,3,3,2],[2,2,1,2],[1,0,2,1]],[[0,1,1,1],[1,4,3,2],[2,2,1,2],[1,0,2,1]],[[0,1,1,1],[1,3,4,2],[2,2,1,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,3],[2,2,1,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,3],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,2],[1,0,3,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,2],[1,0,2,2]],[[0,1,1,1],[1,3,3,2],[3,2,1,2],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,2],[2,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,1,2],[1,3,0,1]],[[0,1,1,1],[1,3,3,2],[3,2,1,2],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,2,1,2],[2,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,2,1,2],[1,3,1,0]],[[0,1,1,1],[1,3,3,2],[3,2,2,0],[1,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,0],[2,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,0],[1,3,1,1]],[[0,1,1,1],[1,3,3,2],[3,2,2,1],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,1],[2,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,1],[1,3,0,1]],[[0,1,1,1],[1,3,3,2],[3,2,2,1],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,2,2,1],[2,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,2,2,1],[1,3,1,0]],[[0,1,1,2],[1,3,3,2],[2,2,2,2],[0,0,2,1]],[[0,1,1,1],[1,4,3,2],[2,2,2,2],[0,0,2,1]],[[0,1,1,1],[1,3,4,2],[2,2,2,2],[0,0,2,1]],[[0,1,1,1],[1,3,3,3],[2,2,2,2],[0,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,3],[0,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,2],[0,0,2,2]],[[0,1,1,2],[1,3,3,2],[2,2,2,2],[0,1,1,1]],[[0,1,1,1],[1,4,3,2],[2,2,2,2],[0,1,1,1]],[[0,1,1,1],[1,3,4,2],[2,2,2,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,3],[2,2,2,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,3],[0,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,2],[0,1,1,2]],[[0,1,1,2],[1,3,3,2],[2,2,2,2],[0,1,2,0]],[[0,1,1,1],[1,4,3,2],[2,2,2,2],[0,1,2,0]],[[0,1,1,1],[1,3,4,2],[2,2,2,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,3],[2,2,2,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,2,3],[0,1,2,0]],[[0,1,1,2],[1,3,3,2],[2,2,2,2],[0,2,0,1]],[[0,1,1,1],[1,4,3,2],[2,2,2,2],[0,2,0,1]],[[0,1,1,1],[1,3,4,2],[2,2,2,2],[0,2,0,1]],[[0,1,1,1],[1,3,3,3],[2,2,2,2],[0,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,3],[0,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,2],[0,2,0,2]],[[0,1,1,2],[1,3,3,2],[2,2,2,2],[0,2,1,0]],[[0,1,1,1],[1,4,3,2],[2,2,2,2],[0,2,1,0]],[[0,1,1,1],[1,3,4,2],[2,2,2,2],[0,2,1,0]],[[0,1,1,1],[1,3,3,3],[2,2,2,2],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,2,2,3],[0,2,1,0]],[[0,1,1,2],[1,3,3,2],[2,2,2,2],[1,0,1,1]],[[0,1,1,1],[1,4,3,2],[2,2,2,2],[1,0,1,1]],[[0,1,1,1],[1,3,4,2],[2,2,2,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,3],[2,2,2,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,3],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,2],[1,0,1,2]],[[0,1,1,2],[1,3,3,2],[2,2,2,2],[1,0,2,0]],[[0,1,1,1],[1,4,3,2],[2,2,2,2],[1,0,2,0]],[[0,1,1,1],[1,3,4,2],[2,2,2,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,3],[2,2,2,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,2,3],[1,0,2,0]],[[0,1,1,2],[1,3,3,2],[2,2,2,2],[1,1,0,1]],[[0,1,1,1],[1,4,3,2],[2,2,2,2],[1,1,0,1]],[[0,1,1,1],[1,3,4,2],[2,2,2,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,3],[2,2,2,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,3],[1,1,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,2,2],[1,1,0,2]],[[0,1,1,2],[1,3,3,2],[2,2,2,2],[1,1,1,0]],[[0,1,1,1],[1,4,3,2],[2,2,2,2],[1,1,1,0]],[[0,1,1,1],[1,3,4,2],[2,2,2,2],[1,1,1,0]],[[0,1,1,1],[1,3,3,3],[2,2,2,2],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[2,2,2,3],[1,1,1,0]],[[0,1,1,2],[1,3,3,2],[2,2,3,0],[0,1,2,1]],[[0,1,1,1],[1,4,3,2],[2,2,3,0],[0,1,2,1]],[[0,1,1,1],[1,3,4,2],[2,2,3,0],[0,1,2,1]],[[0,1,1,1],[1,3,3,3],[2,2,3,0],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,4,0],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,3,0],[0,1,3,1]],[[0,1,1,1],[1,3,3,2],[2,2,3,0],[0,1,2,2]],[[0,1,1,2],[1,3,3,2],[2,2,3,0],[0,2,1,1]],[[0,1,1,1],[1,4,3,2],[2,2,3,0],[0,2,1,1]],[[0,1,1,1],[1,3,4,2],[2,2,3,0],[0,2,1,1]],[[0,1,1,1],[1,3,3,3],[2,2,3,0],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,4,0],[0,2,1,1]],[[0,1,1,2],[1,3,3,2],[2,2,3,0],[1,0,2,1]],[[0,1,1,1],[1,4,3,2],[2,2,3,0],[1,0,2,1]],[[0,1,1,1],[1,3,4,2],[2,2,3,0],[1,0,2,1]],[[0,1,1,1],[1,3,3,3],[2,2,3,0],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,4,0],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,3,0],[1,0,3,1]],[[0,1,1,1],[1,3,3,2],[2,2,3,0],[1,0,2,2]],[[0,1,1,2],[1,3,3,2],[2,2,3,0],[1,1,1,1]],[[0,1,1,1],[1,4,3,2],[2,2,3,0],[1,1,1,1]],[[0,1,1,1],[1,3,4,2],[2,2,3,0],[1,1,1,1]],[[0,1,1,1],[1,3,3,3],[2,2,3,0],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,4,0],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[3,2,3,0],[1,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,2,3,0],[2,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,2,3,0],[1,3,1,0]],[[0,1,1,2],[1,3,3,2],[2,2,3,1],[0,0,2,1]],[[0,1,1,1],[1,4,3,2],[2,2,3,1],[0,0,2,1]],[[0,1,1,1],[1,3,4,2],[2,2,3,1],[0,0,2,1]],[[0,1,1,1],[1,3,3,3],[2,2,3,1],[0,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,2,4,1],[0,0,2,1]],[[0,1,1,2],[1,3,3,2],[2,2,3,1],[0,1,1,1]],[[0,1,1,1],[1,4,3,2],[2,2,3,1],[0,1,1,1]],[[0,1,1,1],[1,3,4,2],[2,2,3,1],[0,1,1,1]],[[0,1,1,1],[1,3,3,3],[2,2,3,1],[0,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,4,1],[0,1,1,1]],[[0,1,1,2],[1,3,3,2],[2,2,3,1],[0,1,2,0]],[[0,1,1,1],[1,4,3,2],[2,2,3,1],[0,1,2,0]],[[0,1,1,1],[1,3,4,2],[2,2,3,1],[0,1,2,0]],[[0,1,1,1],[1,3,3,3],[2,2,3,1],[0,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,4,1],[0,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,3,1],[0,1,3,0]],[[0,1,1,2],[1,3,3,2],[2,2,3,1],[0,2,0,1]],[[0,1,1,1],[1,4,3,2],[2,2,3,1],[0,2,0,1]],[[0,1,1,1],[1,3,4,2],[2,2,3,1],[0,2,0,1]],[[0,1,1,1],[1,3,3,3],[2,2,3,1],[0,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,4,1],[0,2,0,1]],[[0,1,1,2],[1,3,3,2],[2,2,3,1],[0,2,1,0]],[[0,1,1,1],[1,4,3,2],[2,2,3,1],[0,2,1,0]],[[0,1,1,1],[1,3,4,2],[2,2,3,1],[0,2,1,0]],[[0,1,1,1],[1,3,3,3],[2,2,3,1],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,2,4,1],[0,2,1,0]],[[0,1,1,2],[1,3,3,2],[2,2,3,1],[1,0,1,1]],[[0,1,1,1],[1,4,3,2],[2,2,3,1],[1,0,1,1]],[[0,1,1,1],[1,3,4,2],[2,2,3,1],[1,0,1,1]],[[0,1,1,1],[1,3,3,3],[2,2,3,1],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,2,4,1],[1,0,1,1]],[[0,1,1,2],[1,3,3,2],[2,2,3,1],[1,0,2,0]],[[0,1,1,1],[1,4,3,2],[2,2,3,1],[1,0,2,0]],[[0,1,1,1],[1,3,4,2],[2,2,3,1],[1,0,2,0]],[[0,1,1,1],[1,3,3,3],[2,2,3,1],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,4,1],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,2,3,1],[1,0,3,0]],[[0,1,1,2],[1,3,3,2],[2,2,3,1],[1,1,0,1]],[[0,1,1,1],[1,4,3,2],[2,2,3,1],[1,1,0,1]],[[0,1,1,1],[1,3,4,2],[2,2,3,1],[1,1,0,1]],[[0,1,1,1],[1,3,3,3],[2,2,3,1],[1,1,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,4,1],[1,1,0,1]],[[0,1,1,2],[1,3,3,2],[2,2,3,1],[1,1,1,0]],[[0,1,1,1],[1,4,3,2],[2,2,3,1],[1,1,1,0]],[[0,1,1,1],[1,3,4,2],[2,2,3,1],[1,1,1,0]],[[0,1,1,1],[1,3,3,3],[2,2,3,1],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[2,2,4,1],[1,1,1,0]],[[0,1,1,2],[1,3,3,2],[2,2,3,2],[0,1,0,1]],[[0,1,1,1],[1,4,3,2],[2,2,3,2],[0,1,0,1]],[[0,1,1,1],[1,3,4,2],[2,2,3,2],[0,1,0,1]],[[0,1,1,1],[1,3,3,3],[2,2,3,2],[0,1,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,2,1],[3,3,1,2],[2,1,2,1],[1,2,0,0]],[[1,2,2,2],[2,3,1,2],[2,1,2,1],[1,2,0,0]],[[1,2,3,1],[2,3,1,2],[2,1,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,1,2],[2,1,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,1,2],[2,1,2,1],[1,2,0,0]],[[1,2,2,1],[3,3,1,2],[2,1,2,1],[1,1,1,0]],[[1,2,2,2],[2,3,1,2],[2,1,2,1],[1,1,1,0]],[[1,2,3,1],[2,3,1,2],[2,1,2,1],[1,1,1,0]],[[1,3,2,1],[2,3,1,2],[2,1,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,1,2],[2,1,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,1,2],[2,1,2,1],[1,1,0,1]],[[0,1,1,2],[1,3,3,2],[2,2,3,2],[1,0,0,1]],[[0,1,1,1],[1,4,3,2],[2,2,3,2],[1,0,0,1]],[[0,1,1,1],[1,3,4,2],[2,2,3,2],[1,0,0,1]],[[0,1,1,1],[1,3,3,3],[2,2,3,2],[1,0,0,1]],[[0,1,1,1],[1,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,2],[2,3,1,2],[2,1,2,1],[1,1,0,1]],[[1,2,3,1],[2,3,1,2],[2,1,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,1,2],[2,1,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,1,2],[2,1,2,1],[1,1,0,1]],[[1,2,2,1],[3,3,1,2],[2,1,2,1],[1,0,2,0]],[[1,2,2,2],[2,3,1,2],[2,1,2,1],[1,0,2,0]],[[1,2,3,1],[2,3,1,2],[2,1,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,1,2],[2,1,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,1,2],[2,1,2,1],[1,0,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,2,1],[1,0,1,1]],[[1,2,2,2],[2,3,1,2],[2,1,2,1],[1,0,1,1]],[[1,2,3,1],[2,3,1,2],[2,1,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,1,2],[2,1,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,1,2],[2,1,2,1],[1,0,1,1]],[[1,2,2,1],[3,3,1,2],[2,1,2,1],[0,2,1,0]],[[1,2,2,2],[2,3,1,2],[2,1,2,1],[0,2,1,0]],[[1,2,3,1],[2,3,1,2],[2,1,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[2,1,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,1,2],[2,1,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,1,2,1],[0,2,0,1]],[[1,2,2,2],[2,3,1,2],[2,1,2,1],[0,2,0,1]],[[1,2,3,1],[2,3,1,2],[2,1,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,1,2],[2,1,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,1,2],[2,1,2,1],[0,2,0,1]],[[1,2,2,1],[3,3,1,2],[2,1,2,1],[0,1,2,0]],[[1,2,2,2],[2,3,1,2],[2,1,2,1],[0,1,2,0]],[[1,2,3,1],[2,3,1,2],[2,1,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,1,2],[2,1,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,1,2],[2,1,2,1],[0,1,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,2,1],[0,1,1,1]],[[1,2,2,2],[2,3,1,2],[2,1,2,1],[0,1,1,1]],[[1,2,3,1],[2,3,1,2],[2,1,2,1],[0,1,1,1]],[[1,3,2,1],[2,3,1,2],[2,1,2,1],[0,1,1,1]],[[2,2,2,1],[2,3,1,2],[2,1,2,1],[0,1,1,1]],[[1,2,2,1],[2,3,1,2],[2,1,2,0],[2,2,1,0]],[[1,2,2,1],[2,3,1,2],[3,1,2,0],[1,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,1,2,0],[1,2,1,0]],[[1,3,2,1],[2,3,1,2],[2,1,2,0],[1,2,1,0]],[[2,2,2,1],[2,3,1,2],[2,1,2,0],[1,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,1,2,0],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[3,3,0,0],[1,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,0],[2,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,0],[1,3,2,1]],[[0,1,1,2],[1,3,3,2],[2,3,0,1],[0,2,2,1]],[[0,1,1,1],[1,4,3,2],[2,3,0,1],[0,2,2,1]],[[0,1,1,1],[1,3,4,2],[2,3,0,1],[0,2,2,1]],[[0,1,1,1],[1,3,3,3],[2,3,0,1],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[3,3,0,1],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,4,0,1],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,1],[0,3,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,1],[0,2,3,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,1],[0,2,2,2]],[[0,1,1,2],[1,3,3,2],[2,3,0,1],[1,1,2,1]],[[0,1,1,1],[1,4,3,2],[2,3,0,1],[1,1,2,1]],[[0,1,1,1],[1,3,4,2],[2,3,0,1],[1,1,2,1]],[[0,1,1,1],[1,3,3,3],[2,3,0,1],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[3,3,0,1],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,4,0,1],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,1],[2,1,2,1]],[[0,1,1,1],[1,3,3,2],[3,3,0,1],[1,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,0,1],[2,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,0,1],[1,3,2,0]],[[0,1,1,2],[1,3,3,2],[2,3,0,2],[0,1,2,1]],[[0,1,1,1],[1,4,3,2],[2,3,0,2],[0,1,2,1]],[[0,1,1,1],[1,3,4,2],[2,3,0,2],[0,1,2,1]],[[0,1,1,1],[1,3,3,3],[2,3,0,2],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[3,3,0,2],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,4,0,2],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,3],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[0,1,3,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[0,1,2,2]],[[0,1,1,2],[1,3,3,2],[2,3,0,2],[0,2,1,1]],[[0,1,1,1],[1,4,3,2],[2,3,0,2],[0,2,1,1]],[[0,1,1,1],[1,3,4,2],[2,3,0,2],[0,2,1,1]],[[0,1,1,1],[1,3,3,3],[2,3,0,2],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[3,3,0,2],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,4,0,2],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,3],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[0,3,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[0,2,1,2]],[[0,1,1,2],[1,3,3,2],[2,3,0,2],[0,2,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,0,2],[0,2,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,0,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,3],[2,3,0,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,2],[3,3,0,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,4,0,2],[0,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,0,3],[0,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[0,3,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[0,2,3,0]],[[0,1,1,2],[1,3,3,2],[2,3,0,2],[1,0,2,1]],[[0,1,1,1],[1,4,3,2],[2,3,0,2],[1,0,2,1]],[[0,1,1,1],[1,3,4,2],[2,3,0,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,3],[2,3,0,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[3,3,0,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,4,0,2],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,3],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[2,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[1,0,3,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[1,0,2,2]],[[0,1,1,2],[1,3,3,2],[2,3,0,2],[1,1,1,1]],[[0,1,1,1],[1,4,3,2],[2,3,0,2],[1,1,1,1]],[[0,1,1,1],[1,3,4,2],[2,3,0,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,3],[2,3,0,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[3,3,0,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,4,0,2],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,3],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[2,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[1,1,1,2]],[[0,1,1,2],[1,3,3,2],[2,3,0,2],[1,1,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,0,2],[1,1,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,0,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,3],[2,3,0,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[3,3,0,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,4,0,2],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,0,3],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,2],[2,3,1,2],[2,1,2,0],[1,1,1,1]],[[1,2,3,1],[2,3,1,2],[2,1,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,1,2],[2,1,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,1,2],[2,1,2,0],[1,1,1,1]],[[1,2,2,1],[3,3,1,2],[2,1,2,0],[1,0,2,1]],[[1,2,2,2],[2,3,1,2],[2,1,2,0],[1,0,2,1]],[[1,2,3,1],[2,3,1,2],[2,1,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,1,2],[2,1,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,1,2],[2,1,2,0],[1,0,2,1]],[[0,1,1,2],[1,3,3,2],[2,3,1,0],[0,2,2,1]],[[0,1,1,1],[1,4,3,2],[2,3,1,0],[0,2,2,1]],[[0,1,1,1],[1,3,4,2],[2,3,1,0],[0,2,2,1]],[[0,1,1,1],[1,3,3,3],[2,3,1,0],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[3,3,1,0],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,4,1,0],[0,2,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,0],[0,3,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,0],[0,2,3,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,0],[0,2,2,2]],[[0,1,1,2],[1,3,3,2],[2,3,1,0],[1,1,2,1]],[[0,1,1,1],[1,4,3,2],[2,3,1,0],[1,1,2,1]],[[0,1,1,1],[1,3,4,2],[2,3,1,0],[1,1,2,1]],[[0,1,1,1],[1,3,3,3],[2,3,1,0],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[3,3,1,0],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,4,1,0],[1,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,0],[2,1,2,1]],[[0,1,1,2],[1,3,3,2],[2,3,1,1],[0,2,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,1,1],[0,2,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,1,1],[0,2,2,0]],[[0,1,1,1],[1,3,3,3],[2,3,1,1],[0,2,2,0]],[[0,1,1,1],[1,3,3,2],[3,3,1,1],[0,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,4,1,1],[0,2,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,1,1],[0,3,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,1,1],[0,2,3,0]],[[0,1,1,2],[1,3,3,2],[2,3,1,1],[1,1,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,1,1],[1,1,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,1,1],[1,1,2,0]],[[0,1,1,1],[1,3,3,3],[2,3,1,1],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[3,3,1,1],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,4,1,1],[1,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,2,0],[0,2,1,1]],[[1,2,2,2],[2,3,1,2],[2,1,2,0],[0,2,1,1]],[[1,2,3,1],[2,3,1,2],[2,1,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,1,2],[2,1,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,1,2],[2,1,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,1,2],[2,1,2,0],[0,1,2,1]],[[1,2,2,2],[2,3,1,2],[2,1,2,0],[0,1,2,1]],[[0,1,1,2],[1,3,3,2],[2,3,1,2],[0,1,1,1]],[[0,1,1,1],[1,4,3,2],[2,3,1,2],[0,1,1,1]],[[0,1,1,1],[1,3,4,2],[2,3,1,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,3],[2,3,1,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,2],[3,3,1,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,4,1,2],[0,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,3],[0,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,2],[0,1,1,2]],[[0,1,1,2],[1,3,3,2],[2,3,1,2],[0,1,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,1,2],[0,1,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,1,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,3],[2,3,1,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,2],[3,3,1,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,4,1,2],[0,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,1,3],[0,1,2,0]],[[0,1,1,2],[1,3,3,2],[2,3,1,2],[0,2,0,1]],[[0,1,1,1],[1,4,3,2],[2,3,1,2],[0,2,0,1]],[[0,1,1,1],[1,3,4,2],[2,3,1,2],[0,2,0,1]],[[0,1,1,1],[1,3,3,3],[2,3,1,2],[0,2,0,1]],[[0,1,1,1],[1,3,3,2],[3,3,1,2],[0,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,4,1,2],[0,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,3],[0,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,2],[0,3,0,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,2],[0,2,0,2]],[[0,1,1,2],[1,3,3,2],[2,3,1,2],[0,2,1,0]],[[0,1,1,1],[1,4,3,2],[2,3,1,2],[0,2,1,0]],[[0,1,1,1],[1,3,4,2],[2,3,1,2],[0,2,1,0]],[[0,1,1,1],[1,3,3,3],[2,3,1,2],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[3,3,1,2],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,4,1,2],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,3,1,3],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,3,1],[2,3,1,2],[2,1,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,1,2],[2,1,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,1,2],[2,1,2,0],[0,1,2,1]],[[0,1,1,2],[1,3,3,2],[2,3,1,2],[1,0,1,1]],[[0,1,1,1],[1,4,3,2],[2,3,1,2],[1,0,1,1]],[[0,1,1,1],[1,3,4,2],[2,3,1,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,3],[2,3,1,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[3,3,1,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,4,1,2],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,3],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,2],[2,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,2],[1,0,1,2]],[[0,1,1,2],[1,3,3,2],[2,3,1,2],[1,0,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,1,2],[1,0,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,1,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,3],[2,3,1,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[3,3,1,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,4,1,2],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,1,3],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,1,2],[2,0,2,0]],[[0,1,1,2],[1,3,3,2],[2,3,1,2],[1,1,0,1]],[[0,1,1,1],[1,4,3,2],[2,3,1,2],[1,1,0,1]],[[0,1,1,1],[1,3,4,2],[2,3,1,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,3],[2,3,1,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,2],[3,3,1,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,2],[2,4,1,2],[1,1,0,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,3],[1,1,0,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,2],[2,1,0,1]],[[0,1,1,1],[1,3,3,2],[2,3,1,2],[1,1,0,2]],[[0,1,1,2],[1,3,3,2],[2,3,1,2],[1,1,1,0]],[[0,1,1,1],[1,4,3,2],[2,3,1,2],[1,1,1,0]],[[0,1,1,1],[1,3,4,2],[2,3,1,2],[1,1,1,0]],[[0,1,1,1],[1,3,3,3],[2,3,1,2],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[3,3,1,2],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[2,4,1,2],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[2,3,1,3],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[2,3,1,2],[2,1,1,0]],[[0,1,1,2],[1,3,3,2],[2,3,1,2],[1,2,0,0]],[[0,1,1,1],[1,4,3,2],[2,3,1,2],[1,2,0,0]],[[0,1,1,1],[1,3,4,2],[2,3,1,2],[1,2,0,0]],[[0,1,1,1],[1,3,3,3],[2,3,1,2],[1,2,0,0]],[[0,1,1,1],[1,3,3,2],[3,3,1,2],[1,2,0,0]],[[0,1,1,1],[1,3,3,2],[2,4,1,2],[1,2,0,0]],[[0,1,1,1],[1,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[3,3,1,2],[2,1,1,2],[1,2,0,0]],[[1,2,2,2],[2,3,1,2],[2,1,1,2],[1,2,0,0]],[[1,2,3,1],[2,3,1,2],[2,1,1,2],[1,2,0,0]],[[1,3,2,1],[2,3,1,2],[2,1,1,2],[1,2,0,0]],[[2,2,2,1],[2,3,1,2],[2,1,1,2],[1,2,0,0]],[[1,2,2,1],[2,3,1,3],[2,1,1,2],[1,1,1,0]],[[1,2,2,1],[3,3,1,2],[2,1,1,2],[1,1,1,0]],[[1,2,2,2],[2,3,1,2],[2,1,1,2],[1,1,1,0]],[[1,2,3,1],[2,3,1,2],[2,1,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,1,2],[2,1,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,1,2],[2,1,1,2],[1,1,1,0]],[[1,2,2,1],[2,3,1,3],[2,1,1,2],[1,1,0,1]],[[1,2,2,1],[3,3,1,2],[2,1,1,2],[1,1,0,1]],[[0,1,1,2],[1,3,3,2],[2,3,2,0],[0,1,2,1]],[[0,1,1,1],[1,4,3,2],[2,3,2,0],[0,1,2,1]],[[0,1,1,1],[1,3,4,2],[2,3,2,0],[0,1,2,1]],[[0,1,1,1],[1,3,3,3],[2,3,2,0],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[3,3,2,0],[0,1,2,1]],[[0,1,1,1],[1,3,3,2],[2,4,2,0],[0,1,2,1]],[[0,1,1,2],[1,3,3,2],[2,3,2,0],[0,2,1,1]],[[0,1,1,1],[1,4,3,2],[2,3,2,0],[0,2,1,1]],[[0,1,1,1],[1,3,4,2],[2,3,2,0],[0,2,1,1]],[[0,1,1,1],[1,3,3,3],[2,3,2,0],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[3,3,2,0],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,4,2,0],[0,2,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,2,0],[0,3,1,1]],[[0,1,1,2],[1,3,3,2],[2,3,2,0],[1,0,2,1]],[[0,1,1,1],[1,4,3,2],[2,3,2,0],[1,0,2,1]],[[0,1,1,1],[1,3,4,2],[2,3,2,0],[1,0,2,1]],[[0,1,1,1],[1,3,3,3],[2,3,2,0],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[3,3,2,0],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,4,2,0],[1,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,2,0],[2,0,2,1]],[[0,1,1,2],[1,3,3,2],[2,3,2,0],[1,1,1,1]],[[0,1,1,1],[1,4,3,2],[2,3,2,0],[1,1,1,1]],[[0,1,1,1],[1,3,4,2],[2,3,2,0],[1,1,1,1]],[[0,1,1,1],[1,3,3,3],[2,3,2,0],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[3,3,2,0],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,4,2,0],[1,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,2,0],[2,1,1,1]],[[0,1,1,1],[1,4,3,2],[2,3,2,0],[1,2,0,1]],[[0,1,1,1],[1,3,4,2],[2,3,2,0],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[3,3,2,0],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,4,2,0],[1,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,2],[2,3,1,2],[2,1,1,2],[1,1,0,1]],[[1,2,3,1],[2,3,1,2],[2,1,1,2],[1,1,0,1]],[[1,3,2,1],[2,3,1,2],[2,1,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,1,2],[2,1,1,2],[1,1,0,1]],[[0,1,1,2],[1,3,3,2],[2,3,2,1],[0,1,1,1]],[[0,1,1,1],[1,4,3,2],[2,3,2,1],[0,1,1,1]],[[0,1,1,1],[1,3,4,2],[2,3,2,1],[0,1,1,1]],[[0,1,1,1],[1,3,3,3],[2,3,2,1],[0,1,1,1]],[[0,1,1,1],[1,3,3,2],[3,3,2,1],[0,1,1,1]],[[0,1,1,1],[1,3,3,2],[2,4,2,1],[0,1,1,1]],[[0,1,1,2],[1,3,3,2],[2,3,2,1],[0,1,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,2,1],[0,1,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,2,1],[0,1,2,0]],[[0,1,1,1],[1,3,3,3],[2,3,2,1],[0,1,2,0]],[[0,1,1,1],[1,3,3,2],[3,3,2,1],[0,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,4,2,1],[0,1,2,0]],[[0,1,1,2],[1,3,3,2],[2,3,2,1],[0,2,0,1]],[[0,1,1,1],[1,4,3,2],[2,3,2,1],[0,2,0,1]],[[0,1,1,1],[1,3,4,2],[2,3,2,1],[0,2,0,1]],[[0,1,1,1],[1,3,3,3],[2,3,2,1],[0,2,0,1]],[[0,1,1,1],[1,3,3,2],[3,3,2,1],[0,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,4,2,1],[0,2,0,1]],[[0,1,1,1],[1,3,3,2],[2,3,2,1],[0,3,0,1]],[[0,1,1,2],[1,3,3,2],[2,3,2,1],[0,2,1,0]],[[0,1,1,1],[1,4,3,2],[2,3,2,1],[0,2,1,0]],[[0,1,1,1],[1,3,4,2],[2,3,2,1],[0,2,1,0]],[[0,1,1,1],[1,3,3,3],[2,3,2,1],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[3,3,2,1],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,4,2,1],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[2,3,1,3],[2,1,1,2],[1,0,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,1,2],[1,0,2,0]],[[1,2,2,2],[2,3,1,2],[2,1,1,2],[1,0,2,0]],[[0,1,1,2],[1,3,3,2],[2,3,2,1],[1,0,1,1]],[[0,1,1,1],[1,4,3,2],[2,3,2,1],[1,0,1,1]],[[0,1,1,1],[1,3,4,2],[2,3,2,1],[1,0,1,1]],[[0,1,1,1],[1,3,3,3],[2,3,2,1],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[3,3,2,1],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,4,2,1],[1,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,2,1],[2,0,1,1]],[[0,1,1,2],[1,3,3,2],[2,3,2,1],[1,0,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,2,1],[1,0,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,2,1],[1,0,2,0]],[[0,1,1,1],[1,3,3,3],[2,3,2,1],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[3,3,2,1],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,4,2,1],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,2,1],[2,0,2,0]],[[0,1,1,2],[1,3,3,2],[2,3,2,1],[1,1,0,1]],[[0,1,1,1],[1,4,3,2],[2,3,2,1],[1,1,0,1]],[[0,1,1,1],[1,3,4,2],[2,3,2,1],[1,1,0,1]],[[0,1,1,1],[1,3,3,3],[2,3,2,1],[1,1,0,1]],[[0,1,1,1],[1,3,3,2],[3,3,2,1],[1,1,0,1]],[[0,1,1,1],[1,3,3,2],[2,4,2,1],[1,1,0,1]],[[0,1,1,1],[1,3,3,2],[2,3,2,1],[2,1,0,1]],[[0,1,1,2],[1,3,3,2],[2,3,2,1],[1,1,1,0]],[[0,1,1,1],[1,4,3,2],[2,3,2,1],[1,1,1,0]],[[0,1,1,1],[1,3,4,2],[2,3,2,1],[1,1,1,0]],[[0,1,1,1],[1,3,3,3],[2,3,2,1],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[3,3,2,1],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[2,4,2,1],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,3,1],[2,3,1,2],[2,1,1,2],[1,0,2,0]],[[1,3,2,1],[2,3,1,2],[2,1,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,1,2],[2,1,1,2],[1,0,2,0]],[[1,2,2,1],[2,3,1,3],[2,1,1,2],[1,0,1,1]],[[1,2,2,1],[3,3,1,2],[2,1,1,2],[1,0,1,1]],[[1,2,2,2],[2,3,1,2],[2,1,1,2],[1,0,1,1]],[[1,2,3,1],[2,3,1,2],[2,1,1,2],[1,0,1,1]],[[0,1,1,2],[1,3,3,2],[2,3,2,1],[1,2,0,0]],[[0,1,1,1],[1,4,3,2],[2,3,2,1],[1,2,0,0]],[[0,1,1,1],[1,3,4,2],[2,3,2,1],[1,2,0,0]],[[0,1,1,1],[1,3,3,3],[2,3,2,1],[1,2,0,0]],[[0,1,1,1],[1,3,3,2],[3,3,2,1],[1,2,0,0]],[[0,1,1,1],[1,3,3,2],[2,4,2,1],[1,2,0,0]],[[0,1,1,1],[1,3,3,2],[2,3,2,1],[2,2,0,0]],[[1,3,2,1],[2,3,1,2],[2,1,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,1,2],[2,1,1,2],[1,0,1,1]],[[1,2,2,1],[2,3,1,3],[2,1,1,2],[0,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,1,1,2],[0,2,1,0]],[[1,2,2,2],[2,3,1,2],[2,1,1,2],[0,2,1,0]],[[1,2,3,1],[2,3,1,2],[2,1,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[2,1,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,1,2],[2,1,1,2],[0,2,1,0]],[[1,2,2,1],[2,3,1,3],[2,1,1,2],[0,2,0,1]],[[1,2,2,1],[3,3,1,2],[2,1,1,2],[0,2,0,1]],[[1,2,2,2],[2,3,1,2],[2,1,1,2],[0,2,0,1]],[[1,2,3,1],[2,3,1,2],[2,1,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,1,2],[2,1,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,1,2],[2,1,1,2],[0,2,0,1]],[[0,1,1,2],[1,3,3,2],[2,3,2,2],[0,0,1,1]],[[0,1,1,1],[1,4,3,2],[2,3,2,2],[0,0,1,1]],[[0,1,1,1],[1,3,4,2],[2,3,2,2],[0,0,1,1]],[[0,1,1,1],[1,3,3,3],[2,3,2,2],[0,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,2,3],[0,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,2,2],[0,0,1,2]],[[0,1,1,2],[1,3,3,2],[2,3,2,2],[0,0,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,2,2],[0,0,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,2,2],[0,0,2,0]],[[0,1,1,1],[1,3,3,3],[2,3,2,2],[0,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,1],[2,3,1,3],[2,1,1,2],[0,1,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,1,2],[0,1,2,0]],[[1,2,2,2],[2,3,1,2],[2,1,1,2],[0,1,2,0]],[[1,2,3,1],[2,3,1,2],[2,1,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,1,2],[2,1,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,1,2],[2,1,1,2],[0,1,2,0]],[[1,2,2,1],[2,3,1,3],[2,1,1,2],[0,1,1,1]],[[1,2,2,1],[3,3,1,2],[2,1,1,2],[0,1,1,1]],[[1,2,2,2],[2,3,1,2],[2,1,1,2],[0,1,1,1]],[[1,2,3,1],[2,3,1,2],[2,1,1,2],[0,1,1,1]],[[1,3,2,1],[2,3,1,2],[2,1,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,1,2],[2,1,1,2],[0,1,1,1]],[[1,2,2,1],[3,3,1,2],[2,1,1,1],[1,1,2,0]],[[1,2,2,2],[2,3,1,2],[2,1,1,1],[1,1,2,0]],[[1,2,3,1],[2,3,1,2],[2,1,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,1,2],[2,1,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,1,2],[2,1,1,1],[1,1,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,1,1],[0,2,2,0]],[[1,2,2,2],[2,3,1,2],[2,1,1,1],[0,2,2,0]],[[1,2,3,1],[2,3,1,2],[2,1,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,1,2],[2,1,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,1,2],[2,1,1,1],[0,2,2,0]],[[1,2,2,1],[2,3,1,2],[2,1,1,0],[2,2,2,0]],[[1,2,2,1],[2,3,1,2],[3,1,1,0],[1,2,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,1,0],[1,2,2,0]],[[1,3,2,1],[2,3,1,2],[2,1,1,0],[1,2,2,0]],[[2,2,2,1],[2,3,1,2],[2,1,1,0],[1,2,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,1,0],[1,1,2,1]],[[1,2,2,2],[2,3,1,2],[2,1,1,0],[1,1,2,1]],[[1,2,3,1],[2,3,1,2],[2,1,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,1,2],[2,1,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,1,2],[2,1,1,0],[1,1,2,1]],[[1,2,2,1],[3,3,1,2],[2,1,1,0],[0,2,2,1]],[[1,2,2,2],[2,3,1,2],[2,1,1,0],[0,2,2,1]],[[1,2,3,1],[2,3,1,2],[2,1,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,1,2],[2,1,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,1,2],[2,1,1,0],[0,2,2,1]],[[1,2,2,1],[2,3,1,3],[2,1,0,2],[1,1,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,0,2],[1,1,2,0]],[[1,2,2,2],[2,3,1,2],[2,1,0,2],[1,1,2,0]],[[1,2,3,1],[2,3,1,2],[2,1,0,2],[1,1,2,0]],[[1,3,2,1],[2,3,1,2],[2,1,0,2],[1,1,2,0]],[[2,2,2,1],[2,3,1,2],[2,1,0,2],[1,1,2,0]],[[1,2,2,1],[2,3,1,3],[2,1,0,2],[1,1,1,1]],[[1,2,2,1],[3,3,1,2],[2,1,0,2],[1,1,1,1]],[[0,1,1,2],[1,3,3,2],[2,3,3,0],[0,0,2,1]],[[0,1,1,1],[1,4,3,2],[2,3,3,0],[0,0,2,1]],[[0,1,1,1],[1,3,4,2],[2,3,3,0],[0,0,2,1]],[[0,1,1,1],[1,3,3,3],[2,3,3,0],[0,0,2,1]],[[0,1,1,1],[1,3,3,2],[2,3,4,0],[0,0,2,1]],[[0,1,1,1],[1,4,3,2],[2,3,3,0],[0,1,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,3,0],[0,1,2,0]],[[0,1,1,1],[1,3,3,2],[3,3,3,0],[0,1,2,0]],[[0,1,1,1],[1,3,3,2],[2,4,3,0],[0,1,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,3,0],[0,2,1,0]],[[0,1,1,1],[1,3,4,2],[2,3,3,0],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[3,3,3,0],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,4,3,0],[0,2,1,0]],[[0,1,1,1],[1,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,2],[2,3,1,2],[2,1,0,2],[1,1,1,1]],[[1,2,3,1],[2,3,1,2],[2,1,0,2],[1,1,1,1]],[[1,3,2,1],[2,3,1,2],[2,1,0,2],[1,1,1,1]],[[2,2,2,1],[2,3,1,2],[2,1,0,2],[1,1,1,1]],[[1,2,2,1],[2,3,1,3],[2,1,0,2],[1,0,2,1]],[[1,2,2,1],[3,3,1,2],[2,1,0,2],[1,0,2,1]],[[1,2,2,2],[2,3,1,2],[2,1,0,2],[1,0,2,1]],[[1,2,3,1],[2,3,1,2],[2,1,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,1,2],[2,1,0,2],[1,0,2,1]],[[2,2,2,1],[2,3,1,2],[2,1,0,2],[1,0,2,1]],[[0,1,1,1],[1,4,3,2],[2,3,3,0],[1,0,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,3,0],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[3,3,3,0],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,4,3,0],[1,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,3,0],[2,0,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,3,0],[1,1,1,0]],[[0,1,1,1],[1,3,4,2],[2,3,3,0],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[3,3,3,0],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[2,4,3,0],[1,1,1,0]],[[0,1,1,1],[1,3,3,2],[2,3,3,0],[2,1,1,0]],[[0,1,1,1],[1,4,3,2],[2,3,3,0],[1,2,0,0]],[[0,1,1,1],[1,3,4,2],[2,3,3,0],[1,2,0,0]],[[0,1,1,1],[1,3,3,2],[3,3,3,0],[1,2,0,0]],[[0,1,1,1],[1,3,3,2],[2,4,3,0],[1,2,0,0]],[[0,1,1,1],[1,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[2,3,1,3],[2,1,0,2],[0,2,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,0,2],[0,2,2,0]],[[1,2,2,2],[2,3,1,2],[2,1,0,2],[0,2,2,0]],[[1,2,3,1],[2,3,1,2],[2,1,0,2],[0,2,2,0]],[[1,3,2,1],[2,3,1,2],[2,1,0,2],[0,2,2,0]],[[2,2,2,1],[2,3,1,2],[2,1,0,2],[0,2,2,0]],[[1,2,2,1],[2,3,1,3],[2,1,0,2],[0,2,1,1]],[[1,2,2,1],[3,3,1,2],[2,1,0,2],[0,2,1,1]],[[1,2,2,2],[2,3,1,2],[2,1,0,2],[0,2,1,1]],[[1,2,3,1],[2,3,1,2],[2,1,0,2],[0,2,1,1]],[[1,3,2,1],[2,3,1,2],[2,1,0,2],[0,2,1,1]],[[2,2,2,1],[2,3,1,2],[2,1,0,2],[0,2,1,1]],[[1,2,2,1],[2,3,1,3],[2,1,0,2],[0,1,2,1]],[[1,2,2,1],[3,3,1,2],[2,1,0,2],[0,1,2,1]],[[1,2,2,2],[2,3,1,2],[2,1,0,2],[0,1,2,1]],[[1,2,3,1],[2,3,1,2],[2,1,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,1,2],[2,1,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,1,2],[2,1,0,2],[0,1,2,1]],[[0,1,1,2],[1,3,3,2],[2,3,3,1],[0,0,1,1]],[[0,1,1,1],[1,4,3,2],[2,3,3,1],[0,0,1,1]],[[0,1,1,1],[1,3,4,2],[2,3,3,1],[0,0,1,1]],[[0,1,1,1],[1,3,3,3],[2,3,3,1],[0,0,1,1]],[[0,1,1,1],[1,3,3,2],[2,3,4,1],[0,0,1,1]],[[0,1,1,2],[1,3,3,2],[2,3,3,1],[0,0,2,0]],[[0,1,1,1],[1,4,3,2],[2,3,3,1],[0,0,2,0]],[[0,1,1,1],[1,3,4,2],[2,3,3,1],[0,0,2,0]],[[0,1,1,1],[1,3,3,3],[2,3,3,1],[0,0,2,0]],[[0,1,1,1],[1,3,3,2],[2,3,4,1],[0,0,2,0]],[[1,2,2,1],[3,3,1,2],[2,1,0,1],[1,1,2,1]],[[1,2,2,2],[2,3,1,2],[2,1,0,1],[1,1,2,1]],[[1,2,3,1],[2,3,1,2],[2,1,0,1],[1,1,2,1]],[[0,1,1,2],[1,3,3,2],[2,3,3,1],[0,2,0,0]],[[0,1,1,1],[1,4,3,2],[2,3,3,1],[0,2,0,0]],[[0,1,1,1],[1,3,4,2],[2,3,3,1],[0,2,0,0]],[[0,1,1,1],[1,3,3,3],[2,3,3,1],[0,2,0,0]],[[0,1,1,1],[1,3,3,2],[3,3,3,1],[0,2,0,0]],[[0,1,1,1],[1,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,1,2],[2,1,0,1],[1,1,2,1]],[[2,2,2,1],[2,3,1,2],[2,1,0,1],[1,1,2,1]],[[1,2,2,1],[3,3,1,2],[2,1,0,1],[0,2,2,1]],[[1,2,2,2],[2,3,1,2],[2,1,0,1],[0,2,2,1]],[[1,2,3,1],[2,3,1,2],[2,1,0,1],[0,2,2,1]],[[1,3,2,1],[2,3,1,2],[2,1,0,1],[0,2,2,1]],[[2,2,2,1],[2,3,1,2],[2,1,0,1],[0,2,2,1]],[[1,2,2,1],[2,3,1,2],[2,0,3,3],[1,0,0,1]],[[1,2,2,1],[2,3,1,3],[2,0,3,2],[1,0,0,1]],[[0,1,1,2],[1,3,3,2],[2,3,3,1],[1,1,0,0]],[[0,1,1,1],[1,4,3,2],[2,3,3,1],[1,1,0,0]],[[0,1,1,1],[1,3,4,2],[2,3,3,1],[1,1,0,0]],[[0,1,1,1],[1,3,3,3],[2,3,3,1],[1,1,0,0]],[[0,1,1,1],[1,3,3,2],[3,3,3,1],[1,1,0,0]],[[0,1,1,1],[1,3,3,2],[2,4,3,1],[1,1,0,0]],[[0,1,1,1],[1,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[3,3,1,2],[2,0,3,2],[1,0,0,1]],[[1,2,2,2],[2,3,1,2],[2,0,3,2],[1,0,0,1]],[[1,2,3,1],[2,3,1,2],[2,0,3,2],[1,0,0,1]],[[1,3,2,1],[2,3,1,2],[2,0,3,2],[1,0,0,1]],[[2,2,2,1],[2,3,1,2],[2,0,3,2],[1,0,0,1]],[[1,2,2,1],[2,3,1,2],[2,0,3,3],[0,1,0,1]],[[1,2,2,1],[2,3,1,3],[2,0,3,2],[0,1,0,1]],[[1,2,2,1],[3,3,1,2],[2,0,3,2],[0,1,0,1]],[[1,2,2,2],[2,3,1,2],[2,0,3,2],[0,1,0,1]],[[1,2,3,1],[2,3,1,2],[2,0,3,2],[0,1,0,1]],[[1,3,2,1],[2,3,1,2],[2,0,3,2],[0,1,0,1]],[[2,2,2,1],[2,3,1,2],[2,0,3,2],[0,1,0,1]],[[0,1,1,2],[1,3,3,2],[2,3,3,2],[0,0,0,1]],[[0,1,1,1],[1,4,3,2],[2,3,3,2],[0,0,0,1]],[[0,1,1,1],[1,3,4,2],[2,3,3,2],[0,0,0,1]],[[0,1,1,1],[1,3,3,3],[2,3,3,2],[0,0,0,1]],[[0,1,1,1],[1,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,3,1,3],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[3,3,1,2],[2,0,3,1],[1,1,1,0]],[[1,2,2,2],[2,3,1,2],[2,0,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,1,2],[2,0,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,1,2],[2,0,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,1,2],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[2,3,1,3],[2,0,3,1],[1,1,0,1]],[[1,2,2,1],[3,3,1,2],[2,0,3,1],[1,1,0,1]],[[1,2,2,2],[2,3,1,2],[2,0,3,1],[1,1,0,1]],[[1,2,3,1],[2,3,1,2],[2,0,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,1,2],[2,0,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,1,2],[2,0,3,1],[1,1,0,1]],[[1,2,2,1],[2,3,1,3],[2,0,3,1],[1,0,2,0]],[[1,2,2,1],[3,3,1,2],[2,0,3,1],[1,0,2,0]],[[1,2,2,2],[2,3,1,2],[2,0,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,1,2],[2,0,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,1,2],[2,0,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,1,2],[2,0,3,1],[1,0,2,0]],[[1,2,2,1],[2,3,1,3],[2,0,3,1],[1,0,1,1]],[[1,2,2,1],[3,3,1,2],[2,0,3,1],[1,0,1,1]],[[1,2,2,2],[2,3,1,2],[2,0,3,1],[1,0,1,1]],[[1,2,3,1],[2,3,1,2],[2,0,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,1,2],[2,0,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,1,2],[2,0,3,1],[1,0,1,1]],[[1,2,2,1],[2,3,1,3],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,0,3,1],[0,2,1,0]],[[1,2,2,2],[2,3,1,2],[2,0,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,1,2],[2,0,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[2,0,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,1,2],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[2,3,1,3],[2,0,3,1],[0,2,0,1]],[[1,2,2,1],[3,3,1,2],[2,0,3,1],[0,2,0,1]],[[1,2,2,2],[2,3,1,2],[2,0,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,1,2],[2,0,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,1,2],[2,0,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,1,2],[2,0,3,1],[0,2,0,1]],[[1,2,2,1],[2,3,1,3],[2,0,3,1],[0,1,2,0]],[[1,2,2,1],[3,3,1,2],[2,0,3,1],[0,1,2,0]],[[1,2,2,2],[2,3,1,2],[2,0,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,1,2],[2,0,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,1,2],[2,0,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,1,2],[2,0,3,1],[0,1,2,0]],[[1,2,2,1],[2,3,1,3],[2,0,3,1],[0,1,1,1]],[[1,2,2,1],[3,3,1,2],[2,0,3,1],[0,1,1,1]],[[1,2,2,2],[2,3,1,2],[2,0,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,1,2],[2,0,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,1,2],[2,0,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,1,2],[2,0,3,1],[0,1,1,1]],[[1,2,2,1],[2,3,1,3],[2,0,3,1],[0,0,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,3,1],[0,0,2,1]],[[1,2,2,2],[2,3,1,2],[2,0,3,1],[0,0,2,1]],[[1,2,3,1],[2,3,1,2],[2,0,3,1],[0,0,2,1]],[[1,3,2,1],[2,3,1,2],[2,0,3,1],[0,0,2,1]],[[2,2,2,1],[2,3,1,2],[2,0,3,1],[0,0,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,2],[2,3,1,2],[2,0,3,0],[1,1,1,1]],[[1,2,3,1],[2,3,1,2],[2,0,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,1,2],[2,0,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,1,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,1],[2,3,1,3],[2,0,3,0],[1,0,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,3,0],[1,0,2,1]],[[1,2,2,2],[2,3,1,2],[2,0,3,0],[1,0,2,1]],[[1,2,3,1],[2,3,1,2],[2,0,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,1,2],[2,0,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,1,2],[2,0,3,0],[1,0,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,3,0],[0,2,1,1]],[[1,2,2,2],[2,3,1,2],[2,0,3,0],[0,2,1,1]],[[1,2,3,1],[2,3,1,2],[2,0,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,1,2],[2,0,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,1,2],[2,0,3,0],[0,2,1,1]],[[1,2,2,1],[2,3,1,3],[2,0,3,0],[0,1,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,3,0],[0,1,2,1]],[[1,2,2,2],[2,3,1,2],[2,0,3,0],[0,1,2,1]],[[1,2,3,1],[2,3,1,2],[2,0,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,1,2],[2,0,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,1,2],[2,0,3,0],[0,1,2,1]],[[1,2,2,1],[2,3,1,3],[2,0,2,2],[1,1,1,0]],[[1,2,2,1],[3,3,1,2],[2,0,2,2],[1,1,1,0]],[[1,2,2,2],[2,3,1,2],[2,0,2,2],[1,1,1,0]],[[1,2,3,1],[2,3,1,2],[2,0,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,1,2],[2,0,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,1,2],[2,0,2,2],[1,1,1,0]],[[1,2,2,1],[2,3,1,2],[2,0,2,3],[1,1,0,1]],[[1,2,2,1],[2,3,1,3],[2,0,2,2],[1,1,0,1]],[[1,2,2,1],[3,3,1,2],[2,0,2,2],[1,1,0,1]],[[1,2,2,2],[2,3,1,2],[2,0,2,2],[1,1,0,1]],[[1,2,3,1],[2,3,1,2],[2,0,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,1,2],[2,0,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,1,2],[2,0,2,2],[1,1,0,1]],[[1,2,2,1],[2,3,1,2],[2,0,2,3],[1,0,2,0]],[[1,2,2,1],[2,3,1,3],[2,0,2,2],[1,0,2,0]],[[1,2,2,1],[3,3,1,2],[2,0,2,2],[1,0,2,0]],[[1,2,2,2],[2,3,1,2],[2,0,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,1,2],[2,0,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,1,2],[2,0,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,1,2],[2,0,2,2],[1,0,2,0]],[[1,2,2,1],[2,3,1,2],[2,0,2,2],[1,0,1,2]],[[1,2,2,1],[2,3,1,2],[2,0,2,3],[1,0,1,1]],[[1,2,2,1],[2,3,1,3],[2,0,2,2],[1,0,1,1]],[[1,2,2,1],[3,3,1,2],[2,0,2,2],[1,0,1,1]],[[1,2,2,2],[2,3,1,2],[2,0,2,2],[1,0,1,1]],[[1,2,3,1],[2,3,1,2],[2,0,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,1,2],[2,0,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,1,2],[2,0,2,2],[1,0,1,1]],[[0,1,1,1],[2,0,1,1],[3,3,3,2],[1,2,2,1]],[[0,1,1,1],[2,0,1,1],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[2,0,1,1],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[2,0,1,1],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[2,0,1,1],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[2,0,1,2],[1,3,3,3],[1,2,2,1]],[[0,1,1,1],[2,0,1,2],[1,3,3,2],[2,2,2,1]],[[0,1,1,1],[2,0,1,2],[1,3,3,2],[1,3,2,1]],[[0,1,1,1],[2,0,1,2],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[2,0,1,2],[1,3,3,2],[1,2,2,2]],[[0,1,1,1],[2,0,1,2],[3,2,3,2],[1,2,2,1]],[[0,1,1,1],[2,0,1,2],[2,2,3,3],[1,2,2,1]],[[0,1,1,1],[2,0,1,2],[2,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,0,1,2],[2,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,0,1,2],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,0,1,2],[2,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,0,1,2],[3,3,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,1,2],[2,3,2,3],[1,2,2,1]],[[0,1,1,1],[2,0,1,2],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,0,1,2],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,0,1,2],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,0,1,2],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,0,1,2],[3,3,3,1],[1,2,2,1]],[[0,1,1,1],[2,0,1,2],[2,3,3,1],[2,2,2,1]],[[0,1,1,1],[2,0,1,2],[2,3,3,1],[1,3,2,1]],[[0,1,1,1],[2,0,1,2],[2,3,3,1],[1,2,3,1]],[[0,1,1,1],[2,0,1,2],[2,3,3,1],[1,2,2,2]],[[0,1,1,1],[2,0,1,2],[2,3,3,3],[0,2,2,1]],[[0,1,1,1],[2,0,1,2],[2,3,3,2],[0,3,2,1]],[[0,1,1,1],[2,0,1,2],[2,3,3,2],[0,2,3,1]],[[0,1,1,1],[2,0,1,2],[2,3,3,2],[0,2,2,2]],[[0,1,1,1],[2,0,1,2],[3,3,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,1,2],[2,3,3,2],[2,2,2,0]],[[0,1,1,1],[2,0,1,2],[2,3,3,2],[1,3,2,0]],[[0,1,1,1],[2,0,1,2],[2,3,3,2],[1,2,3,0]],[[0,1,1,1],[2,0,2,0],[3,3,3,2],[1,2,2,1]],[[0,1,1,1],[2,0,2,0],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[2,0,2,0],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[2,0,2,0],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[2,0,2,0],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[2,0,2,1],[3,3,3,1],[1,2,2,1]],[[0,1,1,1],[2,0,2,1],[2,3,3,1],[2,2,2,1]],[[0,1,1,1],[2,0,2,1],[2,3,3,1],[1,3,2,1]],[[0,1,1,1],[2,0,2,1],[2,3,3,1],[1,2,3,1]],[[0,1,1,1],[2,0,2,1],[2,3,3,1],[1,2,2,2]],[[0,1,1,1],[2,0,2,1],[3,3,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,2,1],[2,3,3,2],[2,2,2,0]],[[0,1,1,1],[2,0,2,1],[2,3,3,2],[1,3,2,0]],[[0,1,1,1],[2,0,2,1],[2,3,3,2],[1,2,3,0]],[[0,1,1,2],[2,0,2,2],[1,3,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,2,3],[1,3,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[1,3,2,3],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,0,2,2],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,0,2,2],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,0,2,2],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,0,2,2],[1,3,4,1],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[1,3,3,1],[2,2,2,1]],[[0,1,1,1],[2,0,2,2],[1,3,3,1],[1,3,2,1]],[[0,1,1,1],[2,0,2,2],[1,3,3,1],[1,2,3,1]],[[0,1,1,1],[2,0,2,2],[1,3,3,1],[1,2,2,2]],[[0,1,1,2],[2,0,2,2],[1,3,3,2],[1,2,1,1]],[[0,1,1,1],[2,0,2,3],[1,3,3,2],[1,2,1,1]],[[0,1,1,1],[2,0,2,2],[1,3,4,2],[1,2,1,1]],[[0,1,1,1],[2,0,2,2],[1,3,3,3],[1,2,1,1]],[[0,1,1,1],[2,0,2,2],[1,3,3,2],[1,2,1,2]],[[0,1,1,2],[2,0,2,2],[1,3,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,2,3],[1,3,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,2,2],[1,3,4,2],[1,2,2,0]],[[0,1,1,1],[2,0,2,2],[1,3,3,3],[1,2,2,0]],[[0,1,1,1],[2,0,2,2],[1,3,3,2],[2,2,2,0]],[[0,1,1,1],[2,0,2,2],[1,3,3,2],[1,3,2,0]],[[0,1,1,1],[2,0,2,2],[1,3,3,2],[1,2,3,0]],[[0,1,1,2],[2,0,2,2],[2,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,2,3],[2,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[3,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,0,2,2],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,0,2,2],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,0,2,2],[3,2,3,1],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,0,2,2],[2,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,0,2,2],[2,2,3,1],[1,2,2,2]],[[0,1,1,2],[2,0,2,2],[2,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,0,2,3],[2,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,0,2,2],[2,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,0,2,2],[2,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,0,2,2],[2,2,3,2],[1,2,1,2]],[[0,1,1,2],[2,0,2,2],[2,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,2,3],[2,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,2,2],[3,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,2,2],[2,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,0,2,2],[2,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,0,2,2],[2,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,0,2,2],[2,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,0,2,2],[2,2,3,2],[1,2,3,0]],[[0,1,1,2],[2,0,2,2],[2,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,0,2,3],[2,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[3,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,1,3],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,0,2,2],[2,3,1,2],[1,2,2,2]],[[0,1,1,1],[2,0,2,2],[3,3,2,1],[1,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,0,2,2],[2,3,2,1],[1,2,2,2]],[[0,1,1,2],[2,0,2,2],[2,3,2,2],[0,2,2,1]],[[0,1,1,1],[2,0,2,3],[2,3,2,2],[0,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,2,3],[0,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[2,0,2,2],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[2,0,2,2],[3,3,2,2],[1,2,2,0]],[[0,1,1,1],[2,0,2,2],[2,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,0,2,2],[2,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,0,2,2],[2,3,2,2],[1,2,3,0]],[[0,1,1,1],[2,0,2,2],[2,3,4,1],[0,2,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,3,1],[0,3,2,1]],[[0,1,1,1],[2,0,2,2],[2,3,3,1],[0,2,3,1]],[[0,1,1,1],[2,0,2,2],[2,3,3,1],[0,2,2,2]],[[0,1,1,1],[2,0,2,2],[3,3,3,1],[1,2,1,1]],[[0,1,1,1],[2,0,2,2],[2,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,0,2,2],[2,3,3,1],[1,3,1,1]],[[0,1,1,2],[2,0,2,2],[2,3,3,2],[0,2,1,1]],[[0,1,1,1],[2,0,2,3],[2,3,3,2],[0,2,1,1]],[[0,1,1,1],[2,0,2,2],[2,3,4,2],[0,2,1,1]],[[0,1,1,1],[2,0,2,2],[2,3,3,3],[0,2,1,1]],[[0,1,1,1],[2,0,2,2],[2,3,3,2],[0,2,1,2]],[[0,1,1,2],[2,0,2,2],[2,3,3,2],[0,2,2,0]],[[0,1,1,1],[2,0,2,3],[2,3,3,2],[0,2,2,0]],[[0,1,1,1],[2,0,2,2],[2,3,4,2],[0,2,2,0]],[[0,1,1,1],[2,0,2,2],[2,3,3,3],[0,2,2,0]],[[0,1,1,1],[2,0,2,2],[2,3,3,2],[0,3,2,0]],[[0,1,1,1],[2,0,2,2],[2,3,3,2],[0,2,3,0]],[[0,1,1,1],[2,0,2,2],[3,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,0,2,2],[2,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,0,2,2],[2,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,0,2,2],[3,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,0,2,2],[2,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,0,2,2],[2,3,3,2],[1,3,1,0]],[[0,1,1,1],[2,0,3,0],[1,3,4,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,0],[1,3,3,2],[2,2,2,1]],[[0,1,1,1],[2,0,3,0],[1,3,3,2],[1,3,2,1]],[[0,1,1,1],[2,0,3,0],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[2,0,3,0],[1,3,3,2],[1,2,2,2]],[[0,1,1,1],[2,0,3,0],[3,2,3,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,0],[2,2,4,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,0],[2,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,0,3,0],[2,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,0,3,0],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,0,3,0],[2,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,0,3,0],[3,3,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,0],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,0,3,0],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,0,3,0],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,0,3,0],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,0,3,0],[2,3,4,2],[0,2,2,1]],[[0,1,1,1],[2,0,3,0],[2,3,3,2],[0,3,2,1]],[[0,1,1,1],[2,0,3,0],[2,3,3,2],[0,2,3,1]],[[0,1,1,1],[2,0,3,0],[2,3,3,2],[0,2,2,2]],[[0,1,1,1],[2,0,3,0],[3,3,3,2],[1,2,1,1]],[[0,1,1,1],[2,0,3,0],[2,3,3,2],[2,2,1,1]],[[0,1,1,1],[2,0,3,0],[2,3,3,2],[1,3,1,1]],[[0,1,1,1],[2,0,3,1],[1,3,2,3],[1,2,2,1]],[[0,1,1,1],[2,0,3,1],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,0,3,1],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,0,3,1],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,0,3,1],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,0,3,1],[1,3,4,1],[1,2,2,1]],[[0,1,1,1],[2,0,3,1],[1,3,3,1],[2,2,2,1]],[[0,1,1,1],[2,0,3,1],[1,3,3,1],[1,3,2,1]],[[0,1,1,1],[2,0,3,1],[1,3,3,1],[1,2,3,1]],[[0,1,1,1],[2,0,3,1],[1,3,3,1],[1,2,2,2]],[[0,1,1,1],[2,0,3,1],[1,3,4,2],[1,2,1,1]],[[0,1,1,1],[2,0,3,1],[1,3,3,3],[1,2,1,1]],[[0,1,1,1],[2,0,3,1],[1,3,3,2],[1,2,1,2]],[[0,1,1,1],[2,0,3,1],[1,3,4,2],[1,2,2,0]],[[0,1,1,1],[2,0,3,1],[1,3,3,3],[1,2,2,0]],[[0,1,1,1],[2,0,3,1],[1,3,3,2],[2,2,2,0]],[[0,1,1,1],[2,0,3,1],[1,3,3,2],[1,3,2,0]],[[0,1,1,1],[2,0,3,1],[1,3,3,2],[1,2,3,0]],[[0,1,1,1],[2,0,3,1],[3,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,0,3,1],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,0,3,1],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,0,3,1],[3,2,3,1],[1,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,0,3,1],[2,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,0,3,1],[2,2,3,1],[1,2,2,2]],[[0,1,1,1],[2,0,3,1],[2,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,0,3,1],[2,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,0,3,1],[2,2,3,2],[1,2,1,2]],[[0,1,1,1],[2,0,3,1],[3,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,3,1],[2,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,0,3,1],[2,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,0,3,1],[2,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,0,3,1],[2,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,0,3,1],[2,2,3,2],[1,2,3,0]],[[0,1,1,1],[2,0,3,1],[3,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,1,3],[1,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,0,3,1],[2,3,1,2],[1,2,2,2]],[[0,1,1,1],[2,0,3,1],[3,3,2,1],[1,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,0,3,1],[2,3,2,1],[1,2,2,2]],[[0,1,1,1],[2,0,3,1],[2,3,2,3],[0,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[2,0,3,1],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[2,0,3,1],[3,3,2,2],[1,2,2,0]],[[0,1,1,1],[2,0,3,1],[2,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,0,3,1],[2,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,0,3,1],[2,3,2,2],[1,2,3,0]],[[0,1,1,1],[2,0,3,1],[3,3,3,0],[1,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,0],[2,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,0],[1,3,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,0],[1,2,3,1]],[[0,1,1,1],[2,0,3,1],[2,3,4,1],[0,2,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,1],[0,3,2,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,1],[0,2,3,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,1],[0,2,2,2]],[[0,1,1,1],[2,0,3,1],[3,3,3,1],[1,2,1,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,1],[1,3,1,1]],[[0,1,1,1],[2,0,3,1],[2,3,4,2],[0,2,1,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,3],[0,2,1,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,2],[0,2,1,2]],[[0,1,1,1],[2,0,3,1],[2,3,4,2],[0,2,2,0]],[[0,1,1,1],[2,0,3,1],[2,3,3,3],[0,2,2,0]],[[0,1,1,1],[2,0,3,1],[2,3,3,2],[0,3,2,0]],[[0,1,1,1],[2,0,3,1],[2,3,3,2],[0,2,3,0]],[[0,1,1,1],[2,0,3,1],[3,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,0,3,1],[2,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,0,3,1],[3,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,0,3,1],[2,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,0,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,1,3],[2,0,2,2],[0,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,0,2,2],[0,2,1,0]],[[1,2,2,2],[2,3,1,2],[2,0,2,2],[0,2,1,0]],[[0,1,1,2],[2,0,3,2],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,3],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[1,1,3,3],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[1,1,3,2],[1,2,3,1]],[[0,1,1,1],[2,0,3,2],[1,1,3,2],[1,2,2,2]],[[0,1,1,2],[2,0,3,2],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,3],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,0,3,2],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,0,3,2],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,0,3,2],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,0,3,2],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,0,3,2],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,0,3,2],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,0,3,2],[1,2,3,1],[1,2,2,2]],[[0,1,1,2],[2,0,3,2],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,0,3,3],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,0,3,2],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,0,3,2],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,0,3,2],[1,2,3,2],[1,2,1,2]],[[0,1,1,2],[2,0,3,2],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,3,3],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,3,2],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,0,3,2],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,0,3,2],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,0,3,2],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,0,3,2],[1,2,3,2],[1,2,3,0]],[[0,1,1,2],[2,0,3,2],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,0,3,3],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,0,3,2],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[2,0,3,2],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[2,0,3,2],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[2,0,3,2],[1,3,4,0],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,0],[2,2,2,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,0],[1,3,2,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,0],[1,2,3,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,0],[1,2,2,2]],[[0,1,1,1],[2,0,3,2],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[2,0,3,2],[1,3,4,1],[1,2,2,0]],[[0,1,1,1],[2,0,3,2],[1,3,3,1],[2,2,2,0]],[[0,1,1,1],[2,0,3,2],[1,3,3,1],[1,3,2,0]],[[0,1,1,1],[2,0,3,2],[1,3,3,1],[1,2,3,0]],[[0,1,1,2],[2,0,3,2],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,0,3,3],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,0,3,2],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,2],[1,0,2,2]],[[0,1,1,2],[2,0,3,2],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,0,3,3],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,0,3,2],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,2],[1,1,1,2]],[[0,1,1,2],[2,0,3,2],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,0,3,3],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,0,3,2],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[2,0,3,2],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[2,0,3,2],[1,3,3,2],[1,1,3,0]],[[0,1,1,2],[2,0,3,2],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,0,3,3],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,0,3,2],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[2,0,3,2],[1,3,3,2],[1,2,0,2]],[[0,1,1,2],[2,0,3,2],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,0,3,3],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,0,3,2],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[2,0,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,3,1],[2,3,1,2],[2,0,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[2,0,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,1,2],[2,0,2,2],[0,2,1,0]],[[1,2,2,1],[2,3,1,2],[2,0,2,3],[0,2,0,1]],[[1,2,2,1],[2,3,1,3],[2,0,2,2],[0,2,0,1]],[[1,2,2,1],[3,3,1,2],[2,0,2,2],[0,2,0,1]],[[1,2,2,2],[2,3,1,2],[2,0,2,2],[0,2,0,1]],[[1,2,3,1],[2,3,1,2],[2,0,2,2],[0,2,0,1]],[[0,1,1,2],[2,0,3,2],[2,0,3,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,3],[2,0,3,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,0,3,3],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,0,3,2],[1,2,3,1]],[[0,1,1,1],[2,0,3,2],[2,0,3,2],[1,2,2,2]],[[0,1,1,2],[2,0,3,2],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,3],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[3,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,1,2,3],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,1,2,2],[2,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,1,2,2],[1,3,2,1]],[[0,1,1,1],[2,0,3,2],[2,1,2,2],[1,2,3,1]],[[0,1,1,1],[2,0,3,2],[2,1,2,2],[1,2,2,2]],[[0,1,1,1],[2,0,3,2],[3,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,1,4,1],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,1,3,1],[2,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,1,3,1],[1,3,2,1]],[[0,1,1,1],[2,0,3,2],[2,1,3,1],[1,2,3,1]],[[0,1,1,1],[2,0,3,2],[2,1,3,1],[1,2,2,2]],[[0,1,1,2],[2,0,3,2],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[2,0,3,3],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,1,3,3],[0,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,1,3,2],[0,2,3,1]],[[0,1,1,1],[2,0,3,2],[2,1,3,2],[0,2,2,2]],[[0,1,1,2],[2,0,3,2],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,0,3,3],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,0,3,2],[2,1,4,2],[1,2,1,1]],[[0,1,1,1],[2,0,3,2],[2,1,3,3],[1,2,1,1]],[[0,1,1,1],[2,0,3,2],[2,1,3,2],[1,2,1,2]],[[0,1,1,2],[2,0,3,2],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,3,3],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,3,2],[3,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,1,4,2],[1,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,1,3,3],[1,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,1,3,2],[2,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,1,3,2],[1,3,2,0]],[[0,1,1,1],[2,0,3,2],[2,1,3,2],[1,2,3,0]],[[0,1,1,2],[2,0,3,2],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,0,3,3],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[2,0,3,2],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[2,0,3,2],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[2,0,3,2],[3,2,3,0],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,2,4,0],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,2,3,0],[2,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,2,3,0],[1,3,2,1]],[[0,1,1,1],[2,0,3,2],[2,2,3,0],[1,2,3,1]],[[0,1,1,1],[2,0,3,2],[2,2,3,0],[1,2,2,2]],[[0,1,1,1],[2,0,3,2],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[2,0,3,2],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[2,0,3,2],[2,2,3,1],[0,2,2,2]],[[0,1,1,1],[2,0,3,2],[3,2,3,1],[1,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,2,4,1],[1,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,2,3,1],[2,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,2,3,1],[1,3,2,0]],[[0,1,1,1],[2,0,3,2],[2,2,3,1],[1,2,3,0]],[[0,1,1,2],[2,0,3,2],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,0,3,3],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,0,3,2],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[2,0,3,2],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[2,0,3,2],[2,2,3,2],[0,2,1,2]],[[0,1,1,2],[2,0,3,2],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,0,3,3],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[2,0,3,2],[2,2,3,2],[0,2,3,0]],[[1,3,2,1],[2,3,1,2],[2,0,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,1,2],[2,0,2,2],[0,2,0,1]],[[0,1,1,2],[2,0,3,2],[2,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,3],[2,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[3,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,0,3],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,0,2],[2,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,0,2],[1,3,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,0,2],[1,2,3,1]],[[0,1,1,1],[2,0,3,2],[2,3,0,2],[1,2,2,2]],[[0,1,1,1],[2,0,3,2],[3,3,2,0],[1,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,2,0],[2,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,2,0],[1,3,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,2,0],[1,2,3,1]],[[0,1,1,1],[2,0,3,2],[2,3,2,0],[1,2,2,2]],[[0,1,1,1],[2,0,3,2],[3,3,2,1],[1,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,2,1],[2,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,2,1],[1,3,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,2,1],[1,2,3,0]],[[0,1,1,2],[2,0,3,2],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,0,3,3],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,0,3,2],[2,3,2,2],[0,1,2,2]],[[0,1,1,2],[2,0,3,2],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,0,3,3],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[2,0,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,3,1,2],[2,0,2,3],[0,1,2,0]],[[1,2,2,1],[2,3,1,3],[2,0,2,2],[0,1,2,0]],[[1,2,2,1],[3,3,1,2],[2,0,2,2],[0,1,2,0]],[[1,2,2,2],[2,3,1,2],[2,0,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,1,2],[2,0,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,1,2],[2,0,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,1,2],[2,0,2,2],[0,1,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,4,0],[0,2,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,0],[0,3,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,0],[0,2,3,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,0],[0,2,2,2]],[[0,1,1,1],[2,0,3,2],[3,3,3,0],[1,2,1,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,0],[2,2,1,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,0],[1,3,1,1]],[[0,1,1,1],[2,0,3,2],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[2,0,3,2],[2,3,4,1],[0,2,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,3,1],[0,3,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,3,1],[0,2,3,0]],[[0,1,1,1],[2,0,3,2],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,1],[1,0,2,2]],[[0,1,1,1],[2,0,3,2],[3,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,1],[2,2,0,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,1],[1,3,0,1]],[[0,1,1,1],[2,0,3,2],[3,3,3,1],[1,2,1,0]],[[0,1,1,1],[2,0,3,2],[2,3,3,1],[2,2,1,0]],[[0,1,1,1],[2,0,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,3,1,2],[2,0,2,2],[0,1,1,2]],[[1,2,2,1],[2,3,1,2],[2,0,2,3],[0,1,1,1]],[[1,2,2,1],[2,3,1,3],[2,0,2,2],[0,1,1,1]],[[1,2,2,1],[3,3,1,2],[2,0,2,2],[0,1,1,1]],[[1,2,2,2],[2,3,1,2],[2,0,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,1,2],[2,0,2,2],[0,1,1,1]],[[0,1,1,2],[2,0,3,2],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,0,3,3],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,2],[0,0,2,2]],[[0,1,1,2],[2,0,3,2],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,0,3,3],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,0,3,2],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,2],[0,1,1,2]],[[0,1,1,2],[2,0,3,2],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,0,3,3],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,3,2],[0,1,3,0]],[[0,1,1,2],[2,0,3,2],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,0,3,3],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,0,3,2],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,2],[0,2,0,2]],[[0,1,1,2],[2,0,3,2],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,0,3,3],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,0,3,2],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,0,3,2],[2,3,3,3],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[2,0,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,1,2],[2,0,2,2],[0,1,1,1]],[[1,2,2,1],[2,3,1,2],[2,0,2,2],[0,0,2,2]],[[1,2,2,1],[2,3,1,2],[2,0,2,3],[0,0,2,1]],[[1,2,2,1],[2,3,1,3],[2,0,2,2],[0,0,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,2,2],[0,0,2,1]],[[1,2,2,2],[2,3,1,2],[2,0,2,2],[0,0,2,1]],[[0,1,1,2],[2,0,3,2],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,0,3,3],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,0,3,2],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,2],[1,0,1,2]],[[0,1,1,2],[2,0,3,2],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,0,3,3],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[2,0,3,2],[2,3,3,2],[1,0,3,0]],[[0,1,1,2],[2,0,3,2],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,0,3,3],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,0,3,2],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[2,0,3,2],[2,3,3,2],[1,1,0,2]],[[0,1,1,2],[2,0,3,2],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,0,3,3],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,0,3,2],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[2,0,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,3,1],[2,3,1,2],[2,0,2,2],[0,0,2,1]],[[1,3,2,1],[2,3,1,2],[2,0,2,2],[0,0,2,1]],[[2,2,2,1],[2,3,1,2],[2,0,2,2],[0,0,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,2,1],[1,2,1,0]],[[1,2,2,2],[2,3,1,2],[2,0,2,1],[1,2,1,0]],[[1,2,3,1],[2,3,1,2],[2,0,2,1],[1,2,1,0]],[[1,3,2,1],[2,3,1,2],[2,0,2,1],[1,2,1,0]],[[2,2,2,1],[2,3,1,2],[2,0,2,1],[1,2,1,0]],[[1,2,2,1],[3,3,1,2],[2,0,2,1],[1,2,0,1]],[[1,2,2,2],[2,3,1,2],[2,0,2,1],[1,2,0,1]],[[1,2,3,1],[2,3,1,2],[2,0,2,1],[1,2,0,1]],[[1,3,2,1],[2,3,1,2],[2,0,2,1],[1,2,0,1]],[[2,2,2,1],[2,3,1,2],[2,0,2,1],[1,2,0,1]],[[0,1,1,1],[2,1,0,1],[3,3,3,2],[1,2,2,1]],[[0,1,1,1],[2,1,0,1],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[2,1,0,1],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[2,1,0,1],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,0,1],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[2,1,0,2],[1,3,3,3],[1,2,2,1]],[[0,1,1,1],[2,1,0,2],[1,3,3,2],[2,2,2,1]],[[0,1,1,1],[2,1,0,2],[1,3,3,2],[1,3,2,1]],[[0,1,1,1],[2,1,0,2],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,0,2],[1,3,3,2],[1,2,2,2]],[[0,1,1,1],[2,1,0,2],[3,2,3,2],[1,2,2,1]],[[0,1,1,1],[2,1,0,2],[2,2,3,3],[1,2,2,1]],[[0,1,1,1],[2,1,0,2],[2,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,1,0,2],[2,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,1,0,2],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,0,2],[2,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,1,0,2],[3,3,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,0,2],[2,3,2,3],[1,2,2,1]],[[0,1,1,1],[2,1,0,2],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,1,0,2],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,1,0,2],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,1,0,2],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,1,0,2],[3,3,3,1],[1,2,2,1]],[[0,1,1,1],[2,1,0,2],[2,3,3,1],[2,2,2,1]],[[0,1,1,1],[2,1,0,2],[2,3,3,1],[1,3,2,1]],[[0,1,1,1],[2,1,0,2],[2,3,3,1],[1,2,3,1]],[[0,1,1,1],[2,1,0,2],[2,3,3,1],[1,2,2,2]],[[0,1,1,1],[2,1,0,2],[2,3,3,3],[0,2,2,1]],[[0,1,1,1],[2,1,0,2],[2,3,3,2],[0,3,2,1]],[[0,1,1,1],[2,1,0,2],[2,3,3,2],[0,2,3,1]],[[0,1,1,1],[2,1,0,2],[2,3,3,2],[0,2,2,2]],[[0,1,1,1],[2,1,0,2],[3,3,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,0,2],[2,3,3,2],[2,2,2,0]],[[0,1,1,1],[2,1,0,2],[2,3,3,2],[1,3,2,0]],[[0,1,1,1],[2,1,0,2],[2,3,3,2],[1,2,3,0]],[[0,1,1,1],[2,1,1,0],[3,3,3,2],[1,2,2,1]],[[0,1,1,1],[2,1,1,0],[2,3,3,2],[2,2,2,1]],[[0,1,1,1],[2,1,1,0],[2,3,3,2],[1,3,2,1]],[[0,1,1,1],[2,1,1,0],[2,3,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,1,0],[2,3,3,2],[1,2,2,2]],[[0,1,1,1],[2,1,1,1],[3,3,3,1],[1,2,2,1]],[[0,1,1,1],[2,1,1,1],[2,3,3,1],[2,2,2,1]],[[0,1,1,1],[2,1,1,1],[2,3,3,1],[1,3,2,1]],[[0,1,1,1],[2,1,1,1],[2,3,3,1],[1,2,3,1]],[[0,1,1,1],[2,1,1,1],[2,3,3,1],[1,2,2,2]],[[0,1,1,1],[2,1,1,1],[3,3,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,1,1],[2,3,3,2],[2,2,2,0]],[[0,1,1,1],[2,1,1,1],[2,3,3,2],[1,3,2,0]],[[0,1,1,1],[2,1,1,1],[2,3,3,2],[1,2,3,0]],[[0,1,1,1],[2,1,1,2],[1,2,3,3],[1,2,2,1]],[[0,1,1,1],[2,1,1,2],[1,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,1,1,2],[1,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,1,1,2],[1,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,1,2],[1,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,1,1,2],[1,3,3,3],[1,1,2,1]],[[0,1,1,1],[2,1,1,2],[1,3,3,2],[1,1,3,1]],[[0,1,1,1],[2,1,1,2],[1,3,3,2],[1,1,2,2]],[[0,1,1,1],[2,1,1,2],[3,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,1,1,2],[2,1,3,3],[1,2,2,1]],[[0,1,1,1],[2,1,1,2],[2,1,3,2],[2,2,2,1]],[[0,1,1,1],[2,1,1,2],[2,1,3,2],[1,3,2,1]],[[0,1,1,1],[2,1,1,2],[2,1,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,1,2],[2,1,3,2],[1,2,2,2]],[[0,1,1,1],[2,1,1,2],[2,2,3,3],[0,2,2,1]],[[0,1,1,1],[2,1,1,2],[2,2,3,2],[0,3,2,1]],[[0,1,1,1],[2,1,1,2],[2,2,3,2],[0,2,3,1]],[[0,1,1,1],[2,1,1,2],[2,2,3,2],[0,2,2,2]],[[0,1,1,1],[2,1,1,2],[3,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,1,2],[2,3,1,3],[1,2,2,1]],[[0,1,1,1],[2,1,1,2],[2,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,1,1,2],[2,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,1,1,2],[2,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,1,1,2],[2,3,1,2],[1,2,2,2]],[[0,1,1,1],[2,1,1,2],[3,3,2,1],[1,2,2,1]],[[0,1,1,1],[2,1,1,2],[2,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,1,1,2],[2,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,1,1,2],[2,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,1,1,2],[2,3,2,1],[1,2,2,2]],[[0,1,1,1],[2,1,1,2],[3,3,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,1,2],[2,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,1,1,2],[2,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,1,1,2],[2,3,2,2],[1,2,3,0]],[[0,1,1,1],[2,1,1,2],[3,3,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,1,2],[2,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,1,1,2],[2,3,3,1],[1,3,1,1]],[[0,1,1,1],[2,1,1,2],[2,3,3,3],[0,1,2,1]],[[0,1,1,1],[2,1,1,2],[2,3,3,2],[0,1,3,1]],[[0,1,1,1],[2,1,1,2],[2,3,3,2],[0,1,2,2]],[[0,1,1,1],[2,1,1,2],[2,3,3,3],[1,0,2,1]],[[0,1,1,1],[2,1,1,2],[2,3,3,2],[1,0,3,1]],[[0,1,1,1],[2,1,1,2],[2,3,3,2],[1,0,2,2]],[[0,1,1,1],[2,1,1,2],[3,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,1,2],[2,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,1,1,2],[2,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,1,1,2],[3,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,1,2],[2,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,1,1,2],[2,3,3,2],[1,3,1,0]],[[0,1,1,1],[2,1,2,0],[3,3,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,0],[2,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,1,2,0],[2,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,1,2,0],[2,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,1,2,0],[2,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,1,2,0],[3,3,3,2],[1,2,1,1]],[[0,1,1,1],[2,1,2,0],[2,3,3,2],[2,2,1,1]],[[0,1,1,1],[2,1,2,0],[2,3,3,2],[1,3,1,1]],[[0,1,1,1],[2,1,2,1],[3,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,1],[2,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,1,2,1],[2,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,1,2,1],[2,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,1,2,1],[2,3,1,2],[1,2,2,2]],[[0,1,1,1],[2,1,2,1],[3,3,2,1],[1,2,2,1]],[[0,1,1,1],[2,1,2,1],[2,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,1,2,1],[2,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,1,2,1],[2,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,1,2,1],[2,3,2,1],[1,2,2,2]],[[0,1,1,1],[2,1,2,1],[3,3,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,2,1],[2,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,1,2,1],[2,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,1,2,1],[2,3,2,2],[1,2,3,0]],[[0,1,1,1],[2,1,2,1],[3,3,3,0],[1,2,2,1]],[[0,1,1,1],[2,1,2,1],[2,3,3,0],[2,2,2,1]],[[0,1,1,1],[2,1,2,1],[2,3,3,0],[1,3,2,1]],[[0,1,1,1],[2,1,2,1],[2,3,3,0],[1,2,3,1]],[[0,1,1,1],[2,1,2,1],[3,3,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,2,1],[2,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,1,2,1],[2,3,3,1],[1,3,1,1]],[[0,1,1,1],[2,1,2,1],[3,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,2,1],[2,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,1,2,1],[2,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,1,2,1],[3,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,2,1],[2,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,1,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,1,2],[2,0,2,0],[1,2,1,1]],[[0,1,1,2],[2,1,2,2],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,3],[1,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,1,3,3],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,1,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,2,2],[1,1,3,2],[1,2,2,2]],[[0,1,1,2],[2,1,2,2],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,3],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,1,2,2],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,1,2,2],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,1,2,2],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,1,2,2],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,1,2,2],[1,2,3,1],[1,2,2,2]],[[0,1,1,2],[2,1,2,2],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,1,2,3],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,1,2,2],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,1,2,2],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,1,2,2],[1,2,3,2],[1,2,1,2]],[[0,1,1,2],[2,1,2,2],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,2,3],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,2,2],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,1,2,2],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,1,2,2],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,1,2,2],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,1,2,2],[1,2,3,2],[1,2,3,0]],[[0,1,1,2],[2,1,2,2],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,3],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,4,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,1,3],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,1,2,2],[1,3,1,2],[1,2,2,2]],[[0,1,1,1],[2,1,2,2],[1,4,2,1],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,1,2,2],[1,3,2,1],[1,2,2,2]],[[0,1,1,2],[2,1,2,2],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,1,2,3],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[2,1,2,2],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[2,1,2,2],[1,4,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,2,2],[1,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,1,2,2],[1,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,1,2,2],[1,3,2,2],[1,2,3,0]],[[0,1,1,1],[2,1,2,2],[1,4,3,1],[1,1,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[2,1,2,2],[1,4,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,2,2],[1,3,4,1],[1,2,1,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,1],[1,3,1,1]],[[0,1,1,2],[2,1,2,2],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,1,2,3],[1,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,2],[1,0,2,2]],[[0,1,1,2],[2,1,2,2],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,1,2,3],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,1,2,2],[1,4,3,2],[1,1,1,1]],[[0,1,1,1],[2,1,2,2],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,2],[1,1,1,2]],[[0,1,1,2],[2,1,2,2],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,1,2,3],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,1,2,2],[1,4,3,2],[1,1,2,0]],[[0,1,1,1],[2,1,2,2],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[2,1,2,2],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[2,1,2,2],[1,3,3,2],[1,1,3,0]],[[0,1,1,2],[2,1,2,2],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,2,3],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,2,2],[1,4,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,2,2],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,1,2,2],[1,3,3,2],[1,2,0,2]],[[0,1,1,2],[2,1,2,2],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,2,3],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,2,2],[1,4,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,2,2],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[2,1,2,2],[1,3,3,3],[1,2,1,0]],[[0,1,1,1],[2,1,2,2],[1,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,1,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,2],[2,3,1,2],[2,0,2,0],[1,2,1,1]],[[1,2,3,1],[2,3,1,2],[2,0,2,0],[1,2,1,1]],[[1,3,2,1],[2,3,1,2],[2,0,2,0],[1,2,1,1]],[[2,2,2,1],[2,3,1,2],[2,0,2,0],[1,2,1,1]],[[0,1,1,2],[2,1,2,2],[2,0,3,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,3],[2,0,3,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,0,3,3],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,0,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,2,2],[2,0,3,2],[1,2,2,2]],[[0,1,1,2],[2,1,2,2],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[3,1,2,2],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,3],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[3,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,1,2,3],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,1,2,2],[2,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,1,2,2],[1,3,2,1]],[[0,1,1,1],[2,1,2,2],[2,1,2,2],[1,2,3,1]],[[0,1,1,1],[2,1,2,2],[2,1,2,2],[1,2,2,2]],[[0,1,1,1],[3,1,2,2],[2,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[3,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,1,4,1],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,1,3,1],[2,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,1,3,1],[1,3,2,1]],[[0,1,1,1],[2,1,2,2],[2,1,3,1],[1,2,3,1]],[[0,1,1,1],[2,1,2,2],[2,1,3,1],[1,2,2,2]],[[0,1,1,2],[2,1,2,2],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[2,1,2,3],[2,1,3,2],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,1,3,3],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,1,3,2],[0,2,3,1]],[[0,1,1,1],[2,1,2,2],[2,1,3,2],[0,2,2,2]],[[0,1,1,2],[2,1,2,2],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,1,2,3],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,1,4,2],[1,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,1,3,3],[1,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,1,3,2],[1,2,1,2]],[[0,1,1,2],[2,1,2,2],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[3,1,2,2],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,2,3],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,2,2],[3,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,1,4,2],[1,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,1,3,3],[1,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,1,3,2],[2,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,1,3,2],[1,3,2,0]],[[0,1,1,1],[2,1,2,2],[2,1,3,2],[1,2,3,0]],[[0,1,1,2],[2,1,2,2],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[3,1,2,2],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,3],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[3,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,1,3],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,1,2],[2,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,1,2],[1,3,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,1,2],[1,2,3,1]],[[0,1,1,1],[2,1,2,2],[2,2,1,2],[1,2,2,2]],[[0,1,1,1],[3,1,2,2],[2,2,2,1],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[3,2,2,1],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,2,1],[2,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,2,1],[1,3,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,2,1],[1,2,3,1]],[[0,1,1,1],[2,1,2,2],[2,2,2,1],[1,2,2,2]],[[0,1,1,2],[2,1,2,2],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,1,2,3],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[2,1,2,2],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[3,1,2,2],[2,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,2,2],[3,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,2,2,2],[2,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,2,2,2],[1,3,2,0]],[[0,1,1,1],[2,1,2,2],[2,2,2,2],[1,2,3,0]],[[0,1,1,1],[2,1,2,2],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[2,1,2,2],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[2,1,2,2],[2,2,3,1],[0,2,2,2]],[[0,1,1,1],[3,1,2,2],[2,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,2,2],[3,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,2,3,1],[2,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,2,3,1],[1,3,1,1]],[[0,1,1,2],[2,1,2,2],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,1,2,3],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,2,3,2],[0,2,1,2]],[[0,1,1,2],[2,1,2,2],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,1,2,3],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[2,1,2,2],[2,2,3,2],[0,2,3,0]],[[0,1,1,1],[3,1,2,2],[2,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,2,2],[3,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,2,2],[2,2,3,2],[2,2,0,1]],[[0,1,1,1],[2,1,2,2],[2,2,3,2],[1,3,0,1]],[[0,1,1,1],[3,1,2,2],[2,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,2,2],[3,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,2,2],[2,2,3,2],[2,2,1,0]],[[0,1,1,1],[2,1,2,2],[2,2,3,2],[1,3,1,0]],[[0,1,1,2],[2,1,2,2],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[3,1,2,2],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,1,2,3],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[3,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,4,1,2],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,1,3],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,1,2],[0,3,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,1,2],[0,2,3,1]],[[0,1,1,1],[2,1,2,2],[2,3,1,2],[0,2,2,2]],[[0,1,1,1],[3,1,2,2],[2,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,1,2,2],[3,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,1,2,2],[2,4,1,2],[1,1,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,1,2],[2,1,2,1]],[[0,1,1,1],[2,1,2,2],[3,3,2,0],[1,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,0],[2,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,0],[1,3,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,0],[1,2,3,1]],[[0,1,1,1],[3,1,2,2],[2,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[3,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,4,2,1],[0,2,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,1],[0,3,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,1],[0,2,3,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,1],[0,2,2,2]],[[0,1,1,1],[3,1,2,2],[2,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,1,2,2],[3,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,1,2,2],[2,4,2,1],[1,1,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,1],[2,1,2,1]],[[0,1,1,1],[2,1,2,2],[3,3,2,1],[1,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,2,1],[2,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,2,1],[1,3,2,0]],[[0,1,1,2],[2,1,2,2],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,1,2,3],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,2],[0,1,2,2]],[[0,1,1,1],[3,1,2,2],[2,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,1,2,2],[3,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,4,2,2],[0,2,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,2,2],[0,3,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,2,2],[0,2,3,0]],[[0,1,1,2],[2,1,2,2],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,1,2,3],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[2,1,2,2],[2,3,2,2],[1,0,2,2]],[[0,1,1,1],[3,1,2,2],[2,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,1,2,2],[3,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,1,2,2],[2,4,2,2],[1,1,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,3,1,3],[2,0,1,2],[1,2,1,0]],[[0,1,1,1],[2,1,2,2],[3,3,3,0],[1,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,0],[2,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,0],[1,3,1,1]],[[0,1,1,1],[3,1,2,2],[2,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,1,2,2],[3,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,1,2,2],[2,4,3,1],[0,1,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[3,1,2,2],[2,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,1,2,2],[3,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,4,3,1],[0,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,4,1],[0,2,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,1],[0,3,1,1]],[[0,1,1,1],[3,1,2,2],[2,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,1,2,2],[3,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,1,2,2],[2,4,3,1],[1,0,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,1],[2,0,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,1],[1,0,2,2]],[[0,1,1,1],[3,1,2,2],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,1,2,2],[3,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,1,2,2],[2,4,3,1],[1,1,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,4,1],[1,1,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,1],[2,1,1,1]],[[0,1,1,1],[2,1,2,2],[3,3,3,1],[1,2,1,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,1],[2,2,1,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[3,3,1,2],[2,0,1,2],[1,2,1,0]],[[1,2,2,2],[2,3,1,2],[2,0,1,2],[1,2,1,0]],[[1,2,3,1],[2,3,1,2],[2,0,1,2],[1,2,1,0]],[[1,3,2,1],[2,3,1,2],[2,0,1,2],[1,2,1,0]],[[2,2,2,1],[2,3,1,2],[2,0,1,2],[1,2,1,0]],[[1,2,2,1],[2,3,1,3],[2,0,1,2],[1,2,0,1]],[[1,2,2,1],[3,3,1,2],[2,0,1,2],[1,2,0,1]],[[1,2,2,2],[2,3,1,2],[2,0,1,2],[1,2,0,1]],[[0,1,1,2],[2,1,2,2],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,1,2,3],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[0,0,2,2]],[[0,1,1,2],[2,1,2,2],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[3,1,2,2],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,1,2,3],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,1,2,2],[3,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,1,2,2],[2,4,3,2],[0,1,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[0,1,1,2]],[[0,1,1,2],[2,1,2,2],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[3,1,2,2],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,1,2,3],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,1,2,2],[3,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,1,2,2],[2,4,3,2],[0,1,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[0,1,3,0]],[[0,1,1,2],[2,1,2,2],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[3,1,2,2],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,1,2,3],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,1,2,2],[3,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,1,2,2],[2,4,3,2],[0,2,0,1]],[[0,1,1,1],[2,1,2,2],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[0,3,0,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[0,2,0,2]],[[0,1,1,2],[2,1,2,2],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[3,1,2,2],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,1,2,3],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,1,2,2],[3,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,1,2,2],[2,4,3,2],[0,2,1,0]],[[0,1,1,1],[2,1,2,2],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,3],[0,2,1,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,3,1],[2,3,1,2],[2,0,1,2],[1,2,0,1]],[[1,3,2,1],[2,3,1,2],[2,0,1,2],[1,2,0,1]],[[2,2,2,1],[2,3,1,2],[2,0,1,2],[1,2,0,1]],[[0,1,1,2],[2,1,2,2],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[3,1,2,2],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,1,2,3],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,1,2,2],[3,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,1,2,2],[2,4,3,2],[1,0,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[2,0,1,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[1,0,1,2]],[[0,1,1,2],[2,1,2,2],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[3,1,2,2],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,1,2,3],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,1,2,2],[3,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,1,2,2],[2,4,3,2],[1,0,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[2,0,2,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[1,0,3,0]],[[0,1,1,2],[2,1,2,2],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[3,1,2,2],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,1,2,3],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,1,2,2],[3,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,1,2,2],[2,4,3,2],[1,1,0,1]],[[0,1,1,1],[2,1,2,2],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[2,1,0,1]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[1,1,0,2]],[[0,1,1,2],[2,1,2,2],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[3,1,2,2],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,1,2,3],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,1,2,2],[3,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,1,2,2],[2,4,3,2],[1,1,1,0]],[[0,1,1,1],[2,1,2,2],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,3],[1,1,1,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,3,1,2],[2,0,1,2],[1,0,2,2]],[[1,2,2,1],[2,3,1,2],[2,0,1,3],[1,0,2,1]],[[1,2,2,1],[2,3,1,3],[2,0,1,2],[1,0,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,1,2],[1,0,2,1]],[[1,2,2,2],[2,3,1,2],[2,0,1,2],[1,0,2,1]],[[0,1,1,1],[3,1,2,2],[2,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,1,2,2],[3,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,1,2,2],[2,4,3,2],[1,2,0,0]],[[0,1,1,1],[2,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,3,1],[2,3,1,2],[2,0,1,2],[1,0,2,1]],[[1,3,2,1],[2,3,1,2],[2,0,1,2],[1,0,2,1]],[[2,2,2,1],[2,3,1,2],[2,0,1,2],[1,0,2,1]],[[1,2,2,1],[2,3,1,2],[2,0,1,2],[0,1,2,2]],[[1,2,2,1],[2,3,1,2],[2,0,1,3],[0,1,2,1]],[[1,2,2,1],[2,3,1,3],[2,0,1,2],[0,1,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,1,2],[0,1,2,1]],[[1,2,2,2],[2,3,1,2],[2,0,1,2],[0,1,2,1]],[[1,2,3,1],[2,3,1,2],[2,0,1,2],[0,1,2,1]],[[1,3,2,1],[2,3,1,2],[2,0,1,2],[0,1,2,1]],[[2,2,2,1],[2,3,1,2],[2,0,1,2],[0,1,2,1]],[[0,1,1,1],[2,1,3,0],[1,2,4,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,0],[1,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,0],[1,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,0],[1,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,0],[1,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,1,3,0],[1,4,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,0],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,0],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,0],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,0],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,1,3,0],[1,4,3,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,0],[1,3,4,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,0],[1,3,3,2],[1,1,3,1]],[[0,1,1,1],[2,1,3,0],[1,3,3,2],[1,1,2,2]],[[0,1,1,1],[2,1,3,0],[1,4,3,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,0],[1,3,4,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,0],[1,3,3,2],[2,2,1,1]],[[0,1,1,1],[2,1,3,0],[1,3,3,2],[1,3,1,1]],[[0,1,1,1],[2,1,3,0],[3,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,0],[2,1,4,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,0],[2,1,3,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,0],[2,1,3,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,0],[2,1,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,0],[2,1,3,2],[1,2,2,2]],[[0,1,1,1],[2,1,3,0],[3,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,0],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,0],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,0],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,0],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,1,3,0],[2,2,4,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,0],[2,2,3,2],[0,3,2,1]],[[0,1,1,1],[2,1,3,0],[2,2,3,2],[0,2,3,1]],[[0,1,1,1],[2,1,3,0],[2,2,3,2],[0,2,2,2]],[[0,1,1,1],[2,1,3,0],[3,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,0],[2,2,3,2],[2,2,1,1]],[[0,1,1,1],[2,1,3,0],[2,2,3,2],[1,3,1,1]],[[0,1,1,1],[2,1,3,0],[3,3,2,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,0],[2,4,2,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,0],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[2,1,3,0],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[2,1,3,0],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[2,1,3,0],[3,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,0],[2,4,2,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,0],[2,3,2,2],[2,1,2,1]],[[0,1,1,1],[2,1,3,0],[3,3,3,2],[0,1,2,1]],[[0,1,1,1],[2,1,3,0],[2,4,3,2],[0,1,2,1]],[[0,1,1,1],[2,1,3,0],[2,3,4,2],[0,1,2,1]],[[0,1,1,1],[2,1,3,0],[2,3,3,2],[0,1,3,1]],[[0,1,1,1],[2,1,3,0],[2,3,3,2],[0,1,2,2]],[[0,1,1,1],[2,1,3,0],[3,3,3,2],[0,2,1,1]],[[0,1,1,1],[2,1,3,0],[2,4,3,2],[0,2,1,1]],[[0,1,1,1],[2,1,3,0],[2,3,4,2],[0,2,1,1]],[[0,1,1,1],[2,1,3,0],[2,3,3,2],[0,3,1,1]],[[0,1,1,1],[2,1,3,0],[3,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,1,3,0],[2,4,3,2],[1,0,2,1]],[[0,1,1,1],[2,1,3,0],[2,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,1,3,0],[2,3,3,2],[2,0,2,1]],[[0,1,1,1],[2,1,3,0],[2,3,3,2],[1,0,3,1]],[[0,1,1,1],[2,1,3,0],[2,3,3,2],[1,0,2,2]],[[0,1,1,1],[2,1,3,0],[3,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,1,3,0],[2,4,3,2],[1,1,1,1]],[[0,1,1,1],[2,1,3,0],[2,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,1,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,1],[3,3,1,2],[2,0,1,1],[1,2,2,0]],[[1,2,2,2],[2,3,1,2],[2,0,1,1],[1,2,2,0]],[[1,2,3,1],[2,3,1,2],[2,0,1,1],[1,2,2,0]],[[0,1,1,1],[2,1,3,1],[1,1,3,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,1,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,1],[1,1,3,2],[1,2,2,2]],[[0,1,1,1],[2,1,3,1],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,1],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,1],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,1,4,1],[1,2,3,1],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,1,3,1],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,1,3,1],[1,2,3,1],[1,2,2,2]],[[0,1,1,1],[2,1,4,1],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[1,2,3,2],[1,2,1,2]],[[0,1,1,1],[2,1,4,1],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,1],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,1],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,1,3,1],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,1,3,1],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,1,3,1],[1,2,3,2],[1,2,3,0]],[[0,1,1,1],[2,1,3,1],[1,4,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,1,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,1],[1,3,1,2],[1,2,2,2]],[[0,1,1,1],[2,1,3,1],[1,4,2,1],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,1,3,1],[1,3,2,1],[1,2,2,2]],[[0,1,1,1],[2,1,3,1],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[2,1,3,1],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[2,1,3,1],[1,4,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,1],[1,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,1,3,1],[1,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,1,3,1],[1,3,2,2],[1,2,3,0]],[[0,1,1,1],[2,1,3,1],[1,4,3,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,0],[2,2,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,0],[1,3,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,0],[1,2,3,1]],[[0,1,1,1],[2,1,4,1],[1,3,3,1],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[1,4,3,1],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[2,1,4,1],[1,3,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[1,4,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[1,3,4,1],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,1],[1,3,1,1]],[[0,1,1,1],[2,1,3,1],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,2],[1,0,2,2]],[[0,1,1,1],[2,1,4,1],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,1,3,1],[1,4,3,2],[1,1,1,1]],[[0,1,1,1],[2,1,3,1],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,2],[1,1,1,2]],[[0,1,1,1],[2,1,4,1],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,1,3,1],[1,4,3,2],[1,1,2,0]],[[0,1,1,1],[2,1,3,1],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[2,1,3,1],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[2,1,3,1],[1,3,3,2],[1,1,3,0]],[[0,1,1,1],[2,1,4,1],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,3,1],[1,4,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,3,1],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,1,3,1],[1,3,3,2],[1,2,0,2]],[[0,1,1,1],[2,1,4,1],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,3,1],[1,4,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,3,1],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[2,1,3,1],[1,3,3,3],[1,2,1,0]],[[0,1,1,1],[2,1,3,1],[1,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,1,3,1],[1,3,3,2],[1,3,1,0]],[[1,3,2,1],[2,3,1,2],[2,0,1,1],[1,2,2,0]],[[2,2,2,1],[2,3,1,2],[2,0,1,1],[1,2,2,0]],[[1,2,2,1],[3,3,1,2],[2,0,1,0],[1,2,2,1]],[[1,2,2,2],[2,3,1,2],[2,0,1,0],[1,2,2,1]],[[1,2,3,1],[2,3,1,2],[2,0,1,0],[1,2,2,1]],[[1,3,2,1],[2,3,1,2],[2,0,1,0],[1,2,2,1]],[[2,2,2,1],[2,3,1,2],[2,0,1,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,0,3,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,0,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,1],[2,0,3,2],[1,2,2,2]],[[0,1,1,1],[3,1,3,1],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[3,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,1,2,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,1,2,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,1,2,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,1],[2,1,2,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,1],[2,1,2,2],[1,2,2,2]],[[0,1,1,1],[3,1,3,1],[2,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,1,4,1],[2,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[3,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,1,4,1],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,1,3,1],[2,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,1,3,1],[1,3,2,1]],[[0,1,1,1],[2,1,3,1],[2,1,3,1],[1,2,3,1]],[[0,1,1,1],[2,1,3,1],[2,1,3,1],[1,2,2,2]],[[0,1,1,1],[2,1,3,1],[2,1,3,3],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,1,3,2],[0,2,3,1]],[[0,1,1,1],[2,1,3,1],[2,1,3,2],[0,2,2,2]],[[0,1,1,1],[2,1,4,1],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[2,1,4,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[2,1,3,3],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[2,1,3,2],[1,2,1,2]],[[0,1,1,1],[3,1,3,1],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,4,1],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,1],[3,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,1],[2,1,4,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,1],[2,1,3,3],[1,2,2,0]],[[0,1,1,1],[2,1,3,1],[2,1,3,2],[2,2,2,0]],[[0,1,1,1],[2,1,3,1],[2,1,3,2],[1,3,2,0]],[[0,1,1,1],[2,1,3,1],[2,1,3,2],[1,2,3,0]],[[0,1,1,1],[3,1,3,1],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[3,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,1,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,1,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,1,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,1,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,1],[2,2,1,2],[1,2,2,2]],[[0,1,1,1],[3,1,3,1],[2,2,2,1],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[3,2,2,1],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,2,1],[2,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,2,1],[1,3,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,2,1],[1,2,3,1]],[[0,1,1,1],[2,1,3,1],[2,2,2,1],[1,2,2,2]],[[0,1,1,1],[2,1,3,1],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[2,1,3,1],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[3,1,3,1],[2,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,1],[3,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,1],[2,2,2,2],[2,2,2,0]],[[0,1,1,1],[2,1,3,1],[2,2,2,2],[1,3,2,0]],[[0,1,1,1],[2,1,3,1],[2,2,2,2],[1,2,3,0]],[[0,1,1,1],[2,1,3,1],[3,2,3,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,0],[2,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,0],[1,3,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,0],[1,2,3,1]],[[0,1,1,1],[2,1,4,1],[2,2,3,1],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,1],[0,2,2,2]],[[0,1,1,1],[3,1,3,1],[2,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[3,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,1],[2,2,1,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,1],[1,3,1,1]],[[0,1,1,1],[2,1,4,1],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,1,3,1],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,2],[0,2,1,2]],[[0,1,1,1],[2,1,4,1],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,1,3,1],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[2,1,3,1],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[2,1,3,1],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[2,1,3,1],[2,2,3,2],[0,2,3,0]],[[0,1,1,1],[3,1,3,1],[2,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,3,1],[3,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,2],[2,2,0,1]],[[0,1,1,1],[2,1,3,1],[2,2,3,2],[1,3,0,1]],[[0,1,1,1],[3,1,3,1],[2,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,3,1],[3,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,3,1],[2,2,3,2],[2,2,1,0]],[[0,1,1,1],[2,1,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,1,3],[2,0,0,2],[1,2,2,0]],[[1,2,2,1],[3,3,1,2],[2,0,0,2],[1,2,2,0]],[[1,2,2,2],[2,3,1,2],[2,0,0,2],[1,2,2,0]],[[1,2,3,1],[2,3,1,2],[2,0,0,2],[1,2,2,0]],[[0,1,1,1],[3,1,3,1],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[3,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,4,1,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,1,3],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,1,2],[0,3,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,1,2],[0,2,3,1]],[[0,1,1,1],[2,1,3,1],[2,3,1,2],[0,2,2,2]],[[0,1,1,1],[3,1,3,1],[2,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[3,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[2,4,1,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,1,2],[2,1,2,1]],[[0,1,1,1],[3,1,3,1],[2,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[3,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,4,2,1],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,2,1],[0,3,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,2,1],[0,2,3,1]],[[0,1,1,1],[2,1,3,1],[2,3,2,1],[0,2,2,2]],[[0,1,1,1],[3,1,3,1],[2,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[3,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[2,4,2,1],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,2,1],[2,1,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,1,3,1],[2,3,2,2],[0,1,2,2]],[[0,1,1,1],[3,1,3,1],[2,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,1,3,1],[3,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,1,3,1],[2,4,2,2],[0,2,2,0]],[[0,1,1,1],[2,1,3,1],[2,3,2,2],[0,3,2,0]],[[0,1,1,1],[2,1,3,1],[2,3,2,2],[0,2,3,0]],[[0,1,1,1],[2,1,3,1],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[2,1,3,1],[2,3,2,2],[1,0,2,2]],[[0,1,1,1],[3,1,3,1],[2,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,1,3,1],[3,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,1,3,1],[2,4,2,2],[1,1,2,0]],[[0,1,1,1],[2,1,3,1],[2,3,2,2],[2,1,2,0]],[[1,3,2,1],[2,3,1,2],[2,0,0,2],[1,2,2,0]],[[2,2,2,1],[2,3,1,2],[2,0,0,2],[1,2,2,0]],[[1,2,2,1],[2,3,1,3],[2,0,0,2],[1,2,1,1]],[[1,2,2,1],[3,3,1,2],[2,0,0,2],[1,2,1,1]],[[1,2,2,2],[2,3,1,2],[2,0,0,2],[1,2,1,1]],[[1,2,3,1],[2,3,1,2],[2,0,0,2],[1,2,1,1]],[[1,3,2,1],[2,3,1,2],[2,0,0,2],[1,2,1,1]],[[2,2,2,1],[2,3,1,2],[2,0,0,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,1],[3,3,3,0],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,4,3,0],[0,2,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,0],[0,3,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,0],[0,2,3,1]],[[0,1,1,1],[2,1,3,1],[3,3,3,0],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[2,4,3,0],[1,1,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,0],[2,1,2,1]],[[0,1,1,1],[3,1,3,1],[2,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,1,4,1],[2,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,1,3,1],[3,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,1,3,1],[2,4,3,1],[0,1,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[3,1,3,1],[2,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,1,4,1],[2,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,1,3,1],[3,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,1,3,1],[2,4,3,1],[0,2,1,1]],[[0,1,1,1],[2,1,3,1],[2,3,4,1],[0,2,1,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,1],[0,3,1,1]],[[0,1,1,1],[3,1,3,1],[2,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,1,4,1],[2,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,1,3,1],[3,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,1,3,1],[2,4,3,1],[1,0,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,1],[2,0,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,1],[1,0,2,2]],[[0,1,1,1],[3,1,3,1],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,1,4,1],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,1,3,1],[3,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,1,3,1],[2,4,3,1],[1,1,1,1]],[[0,1,1,1],[2,1,3,1],[2,3,4,1],[1,1,1,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,1],[2,1,1,1]],[[0,1,1,1],[2,1,3,1],[3,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,1,3,1],[2,4,3,1],[1,2,0,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,3,1,3],[2,0,0,2],[1,1,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,0,2],[1,1,2,1]],[[1,2,2,2],[2,3,1,2],[2,0,0,2],[1,1,2,1]],[[1,2,3,1],[2,3,1,2],[2,0,0,2],[1,1,2,1]],[[1,3,2,1],[2,3,1,2],[2,0,0,2],[1,1,2,1]],[[2,2,2,1],[2,3,1,2],[2,0,0,2],[1,1,2,1]],[[1,2,2,1],[2,3,1,3],[2,0,0,2],[0,2,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,0,2],[0,2,2,1]],[[1,2,2,2],[2,3,1,2],[2,0,0,2],[0,2,2,1]],[[0,1,1,1],[2,1,4,1],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[0,0,2,2]],[[0,1,1,1],[3,1,3,1],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,1,4,1],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,1,3,1],[3,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,1,3,1],[2,4,3,2],[0,1,1,1]],[[0,1,1,1],[2,1,3,1],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[0,1,1,2]],[[0,1,1,1],[3,1,3,1],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,1,4,1],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,1,3,1],[3,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,1,3,1],[2,4,3,2],[0,1,2,0]],[[0,1,1,1],[2,1,3,1],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,1,3,1],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[0,1,3,0]],[[0,1,1,1],[3,1,3,1],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,1,4,1],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,1,3,1],[3,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,1,3,1],[2,4,3,2],[0,2,0,1]],[[0,1,1,1],[2,1,3,1],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[0,3,0,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[0,2,0,2]],[[0,1,1,1],[3,1,3,1],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,1,4,1],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,1,3,1],[3,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,1,3,1],[2,4,3,2],[0,2,1,0]],[[0,1,1,1],[2,1,3,1],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,1,3,1],[2,3,3,3],[0,2,1,0]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,3,1],[2,3,1,2],[2,0,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,1,2],[2,0,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,1,2],[2,0,0,2],[0,2,2,1]],[[1,2,2,1],[2,3,1,3],[2,0,0,1],[1,2,2,1]],[[1,2,2,1],[3,3,1,2],[2,0,0,1],[1,2,2,1]],[[1,2,2,2],[2,3,1,2],[2,0,0,1],[1,2,2,1]],[[1,2,3,1],[2,3,1,2],[2,0,0,1],[1,2,2,1]],[[1,3,2,1],[2,3,1,2],[2,0,0,1],[1,2,2,1]],[[2,2,2,1],[2,3,1,2],[2,0,0,1],[1,2,2,1]],[[0,1,1,1],[3,1,3,1],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,1,4,1],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,1,3,1],[3,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,1,3,1],[2,4,3,2],[1,0,1,1]],[[0,1,1,1],[2,1,3,1],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[2,0,1,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[1,0,1,2]],[[0,1,1,1],[3,1,3,1],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,1,4,1],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,1,3,1],[3,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,1,3,1],[2,4,3,2],[1,0,2,0]],[[0,1,1,1],[2,1,3,1],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[2,1,3,1],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[2,0,2,0]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[1,0,3,0]],[[0,1,1,1],[3,1,3,1],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,1,4,1],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,1,3,1],[3,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,1,3,1],[2,4,3,2],[1,1,0,1]],[[0,1,1,1],[2,1,3,1],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[2,1,0,1]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[1,1,0,2]],[[0,1,1,1],[3,1,3,1],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,1,4,1],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,1,3,1],[3,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,1,3,1],[2,4,3,2],[1,1,1,0]],[[0,1,1,1],[2,1,3,1],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[2,1,3,1],[2,3,3,3],[1,1,1,0]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[2,1,1,0]],[[0,1,1,1],[3,1,3,1],[2,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,1,3,1],[3,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,1,3,1],[2,4,3,2],[1,2,0,0]],[[0,1,1,1],[2,1,3,1],[2,3,3,2],[2,2,0,0]],[[0,1,1,2],[2,1,3,2],[0,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,3],[0,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[0,1,3,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[0,1,3,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,2],[0,1,3,2],[1,2,2,2]],[[0,1,1,2],[2,1,3,2],[0,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,3],[0,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[0,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[0,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,2],[0,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,2],[0,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,1,3,2],[0,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[0,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,1,3,2],[0,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,1,3,2],[0,2,3,1],[1,2,2,2]],[[0,1,1,2],[2,1,3,2],[0,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,3],[0,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[0,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[0,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[0,2,3,2],[1,2,1,2]],[[0,1,1,2],[2,1,3,2],[0,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,3],[0,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[0,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[0,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[0,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,1,3,2],[0,2,3,2],[1,2,3,0]],[[0,1,1,2],[2,1,3,2],[0,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,3],[0,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[0,3,2,3],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[0,3,2,2],[1,1,3,1]],[[0,1,1,1],[2,1,3,2],[0,3,2,2],[1,1,2,2]],[[0,1,1,1],[2,1,3,2],[0,3,4,1],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[0,3,3,1],[1,1,3,1]],[[0,1,1,1],[2,1,3,2],[0,3,3,1],[1,1,2,2]],[[0,1,1,2],[2,1,3,2],[0,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,1,3,3],[0,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,1,3,2],[0,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,1,3,2],[0,3,3,3],[1,0,2,1]],[[0,1,1,1],[2,1,3,2],[0,3,3,2],[1,0,2,2]],[[0,1,1,2],[2,1,3,2],[0,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,1,3,3],[0,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,1,3,2],[0,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,1,3,2],[0,3,3,3],[1,1,1,1]],[[0,1,1,1],[2,1,3,2],[0,3,3,2],[1,1,1,2]],[[0,1,1,2],[2,1,3,2],[0,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,1,3,3],[0,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,1,3,2],[0,3,4,2],[1,1,2,0]],[[0,1,1,1],[2,1,3,2],[0,3,3,3],[1,1,2,0]],[[0,1,1,1],[2,1,3,2],[0,3,3,2],[1,1,3,0]],[[0,1,1,2],[2,1,3,2],[0,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,3,3],[0,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[0,3,4,2],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[0,3,3,3],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[0,3,3,2],[1,2,0,2]],[[0,1,1,2],[2,1,3,2],[0,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,3,3],[0,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,1,3,2],[0,3,4,2],[1,2,1,0]],[[0,1,1,1],[2,1,3,2],[0,3,3,3],[1,2,1,0]],[[0,1,1,2],[2,1,3,2],[1,1,3,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,3],[1,1,3,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,1,3,3],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,1,3,2],[0,2,3,1]],[[0,1,1,1],[2,1,3,2],[1,1,3,2],[0,2,2,2]],[[0,1,1,2],[2,1,3,2],[1,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,4,2],[1,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,3],[1,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,2,1,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,2,1,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,2,1,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,2],[1,2,1,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,2],[1,2,1,2],[1,2,2,2]],[[0,1,1,2],[2,1,3,2],[1,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,3],[1,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,2,2,3],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,2,2,2],[0,2,3,1]],[[0,1,1,1],[2,1,3,2],[1,2,2,2],[0,2,2,2]],[[0,1,1,2],[2,1,3,2],[1,2,2,2],[1,2,1,1]],[[0,1,1,1],[2,1,4,2],[1,2,2,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,3],[1,2,2,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[1,2,2,3],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[1,2,2,2],[1,2,1,2]],[[0,1,1,2],[2,1,3,2],[1,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,4,2],[1,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,3],[1,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[1,2,2,3],[1,2,2,0]],[[0,1,1,2],[2,1,3,2],[1,2,3,0],[1,2,2,1]],[[0,1,1,1],[2,1,4,2],[1,2,3,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,3],[1,2,3,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,2,4,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,2,3,0],[2,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,2,3,0],[1,3,2,1]],[[0,1,1,1],[2,1,3,2],[1,2,3,0],[1,2,3,1]],[[0,1,1,1],[2,1,3,2],[1,2,3,0],[1,2,2,2]],[[0,1,1,1],[2,1,3,2],[1,2,4,1],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,2,3,1],[0,2,3,1]],[[0,1,1,1],[2,1,3,2],[1,2,3,1],[0,2,2,2]],[[0,1,1,2],[2,1,3,2],[1,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,4,2],[1,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,3,3],[1,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[1,2,4,1],[1,2,1,1]],[[0,1,1,2],[2,1,3,2],[1,2,3,1],[1,2,2,0]],[[0,1,1,1],[2,1,4,2],[1,2,3,1],[1,2,2,0]],[[0,1,1,1],[2,1,3,3],[1,2,3,1],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[1,2,4,1],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[1,2,3,1],[2,2,2,0]],[[0,1,1,1],[2,1,3,2],[1,2,3,1],[1,3,2,0]],[[0,1,1,1],[2,1,3,2],[1,2,3,1],[1,2,3,0]],[[0,1,1,2],[2,1,3,2],[1,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,1,3,3],[1,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,1,3,2],[1,2,4,2],[0,2,1,1]],[[0,1,1,1],[2,1,3,2],[1,2,3,3],[0,2,1,1]],[[0,1,1,1],[2,1,3,2],[1,2,3,2],[0,2,1,2]],[[0,1,1,2],[2,1,3,2],[1,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,1,3,3],[1,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,1,3,2],[1,2,4,2],[0,2,2,0]],[[0,1,1,1],[2,1,3,2],[1,2,3,3],[0,2,2,0]],[[0,1,1,1],[2,1,3,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[3,3,1,2],[1,3,3,0],[1,1,0,0]],[[1,3,2,1],[2,3,1,2],[1,3,3,0],[1,1,0,0]],[[2,2,2,1],[2,3,1,2],[1,3,3,0],[1,1,0,0]],[[0,1,1,2],[2,1,3,2],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,1,4,2],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,3],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,4,0,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,0,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,0,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,0,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,0,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,2],[1,3,0,2],[1,2,2,2]],[[0,1,1,2],[2,1,3,2],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,1,4,2],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,3],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,1,3],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,1,2],[1,1,3,1]],[[0,1,1,1],[2,1,3,2],[1,3,1,2],[1,1,2,2]],[[0,1,1,1],[2,1,3,2],[1,4,2,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,2,0],[2,2,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,2,0],[1,3,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,2,0],[1,2,3,1]],[[0,1,1,1],[2,1,3,2],[1,3,2,0],[1,2,2,2]],[[0,1,1,1],[2,1,3,2],[1,4,2,1],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[1,3,2,1],[2,2,2,0]],[[0,1,1,1],[2,1,3,2],[1,3,2,1],[1,3,2,0]],[[0,1,1,1],[2,1,3,2],[1,3,2,1],[1,2,3,0]],[[0,1,1,2],[2,1,3,2],[1,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,1,3,3],[1,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,1,3,2],[1,3,2,2],[0,1,2,2]],[[0,1,1,2],[2,1,3,2],[1,3,2,2],[1,1,1,1]],[[0,1,1,1],[2,1,4,2],[1,3,2,2],[1,1,1,1]],[[0,1,1,1],[2,1,3,3],[1,3,2,2],[1,1,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,2,3],[1,1,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,2,2],[1,1,1,2]],[[0,1,1,2],[2,1,3,2],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,1,4,2],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,1,3,3],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,1,3,2],[1,3,2,3],[1,1,2,0]],[[0,1,1,2],[2,1,3,2],[1,3,2,2],[1,2,0,1]],[[0,1,1,1],[2,1,4,2],[1,3,2,2],[1,2,0,1]],[[0,1,1,1],[2,1,3,3],[1,3,2,2],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[1,3,2,3],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[1,3,2,2],[1,2,0,2]],[[0,1,1,2],[2,1,3,2],[1,3,2,2],[1,2,1,0]],[[0,1,1,1],[2,1,4,2],[1,3,2,2],[1,2,1,0]],[[0,1,1,1],[2,1,3,3],[1,3,2,2],[1,2,1,0]],[[0,1,1,1],[2,1,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[3,3,1,2],[1,3,3,0],[0,2,0,0]],[[1,3,2,1],[2,3,1,2],[1,3,3,0],[0,2,0,0]],[[2,2,2,1],[2,3,1,2],[1,3,3,0],[0,2,0,0]],[[0,1,1,2],[2,1,3,2],[1,3,3,0],[1,1,2,1]],[[0,1,1,1],[2,1,4,2],[1,3,3,0],[1,1,2,1]],[[0,1,1,1],[2,1,3,3],[1,3,3,0],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[1,4,3,0],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,4,0],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,0],[1,1,3,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,0],[1,1,2,2]],[[0,1,1,2],[2,1,3,2],[1,3,3,0],[1,2,1,1]],[[0,1,1,1],[2,1,4,2],[1,3,3,0],[1,2,1,1]],[[0,1,1,1],[2,1,3,3],[1,3,3,0],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[1,4,3,0],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,4,0],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,0],[2,2,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,0],[1,3,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,1],[0,1,2,2]],[[0,1,1,2],[2,1,3,2],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,1,4,2],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,1,3,3],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,1,3,2],[1,4,3,1],[1,1,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,4,1],[1,1,1,1]],[[0,1,1,2],[2,1,3,2],[1,3,3,1],[1,1,2,0]],[[0,1,1,1],[2,1,4,2],[1,3,3,1],[1,1,2,0]],[[0,1,1,1],[2,1,3,3],[1,3,3,1],[1,1,2,0]],[[0,1,1,1],[2,1,3,2],[1,4,3,1],[1,1,2,0]],[[0,1,1,1],[2,1,3,2],[1,3,4,1],[1,1,2,0]],[[0,1,1,1],[2,1,3,2],[1,3,3,1],[1,1,3,0]],[[0,1,1,2],[2,1,3,2],[1,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,1,4,2],[1,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,1,3,3],[1,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[1,4,3,1],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[1,3,4,1],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,1],[2,2,0,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,1],[1,3,0,1]],[[0,1,1,2],[2,1,3,2],[1,3,3,1],[1,2,1,0]],[[0,1,1,1],[2,1,4,2],[1,3,3,1],[1,2,1,0]],[[0,1,1,1],[2,1,3,3],[1,3,3,1],[1,2,1,0]],[[0,1,1,1],[2,1,3,2],[1,4,3,1],[1,2,1,0]],[[0,1,1,1],[2,1,3,2],[1,3,4,1],[1,2,1,0]],[[0,1,1,1],[2,1,3,2],[1,3,3,1],[2,2,1,0]],[[0,1,1,1],[2,1,3,2],[1,3,3,1],[1,3,1,0]],[[0,1,1,2],[2,1,3,2],[1,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,1,3,3],[1,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,2],[0,0,2,2]],[[0,1,1,2],[2,1,3,2],[1,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,1,3,3],[1,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,2],[0,1,1,2]],[[0,1,1,2],[2,1,3,2],[1,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,1,3,3],[1,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,1,3,2],[1,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,1,3,2],[1,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,1,3,2],[1,3,3,2],[0,1,3,0]],[[0,1,1,2],[2,1,3,2],[1,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,1,3,3],[1,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,1,3,2],[1,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,2],[0,2,0,2]],[[0,1,1,2],[2,1,3,2],[1,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,1,3,3],[1,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,1,3,2],[1,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,1,3,2],[1,3,3,3],[0,2,1,0]],[[0,1,1,2],[2,1,3,2],[1,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,1,3,3],[1,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,4,2],[1,0,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,3],[1,0,1,1]],[[0,1,1,1],[2,1,3,2],[1,3,3,2],[1,0,1,2]],[[0,1,1,2],[2,1,3,2],[1,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,1,3,3],[1,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,1,3,2],[1,3,4,2],[1,0,2,0]],[[0,1,1,1],[2,1,3,2],[1,3,3,3],[1,0,2,0]],[[0,1,1,2],[2,1,3,2],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[3,1,3,2],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,4,2],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,3],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[3,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,1,1,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,1,1,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,1,1,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,2],[2,1,1,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,2],[2,1,1,2],[1,2,2,2]],[[0,1,1,2],[2,1,3,2],[2,1,2,2],[1,2,1,1]],[[0,1,1,1],[2,1,4,2],[2,1,2,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,3],[2,1,2,2],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[2,1,2,3],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[2,1,2,2],[1,2,1,2]],[[0,1,1,2],[2,1,3,2],[2,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,4,2],[2,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,3],[2,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[2,1,2,3],[1,2,2,0]],[[0,1,1,2],[2,1,3,2],[2,1,3,0],[1,2,2,1]],[[0,1,1,1],[3,1,3,2],[2,1,3,0],[1,2,2,1]],[[0,1,1,1],[2,1,4,2],[2,1,3,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,3],[2,1,3,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[3,1,3,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,1,4,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,1,3,0],[2,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,1,3,0],[1,3,2,1]],[[0,1,1,1],[2,1,3,2],[2,1,3,0],[1,2,3,1]],[[0,1,1,1],[2,1,3,2],[2,1,3,0],[1,2,2,2]],[[0,1,1,2],[2,1,3,2],[2,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,4,2],[2,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,3,3],[2,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[2,1,4,1],[1,2,1,1]],[[0,1,1,2],[2,1,3,2],[2,1,3,1],[1,2,2,0]],[[0,1,1,1],[3,1,3,2],[2,1,3,1],[1,2,2,0]],[[0,1,1,1],[2,1,4,2],[2,1,3,1],[1,2,2,0]],[[0,1,1,1],[2,1,3,3],[2,1,3,1],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[3,1,3,1],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[2,1,4,1],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[2,1,3,1],[2,2,2,0]],[[0,1,1,1],[2,1,3,2],[2,1,3,1],[1,3,2,0]],[[0,1,1,1],[2,1,3,2],[2,1,3,1],[1,2,3,0]],[[0,1,1,2],[2,1,3,2],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[3,1,3,2],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,1,4,2],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,3],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[3,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,0,3],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,0,2],[2,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,0,2],[1,3,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,0,2],[1,2,3,1]],[[0,1,1,1],[2,1,3,2],[2,2,0,2],[1,2,2,2]],[[0,1,1,2],[2,1,3,2],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[2,1,4,2],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,3],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,1,3],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,1,2],[0,3,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,1,2],[0,2,3,1]],[[0,1,1,1],[2,1,3,2],[2,2,1,2],[0,2,2,2]],[[0,1,1,1],[3,1,3,2],[2,2,2,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[3,2,2,0],[1,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,2,0],[2,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,2,0],[1,3,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,2,0],[1,2,3,1]],[[0,1,1,1],[2,1,3,2],[2,2,2,0],[1,2,2,2]],[[0,1,1,1],[3,1,3,2],[2,2,2,1],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[3,2,2,1],[1,2,2,0]],[[0,1,1,1],[2,1,3,2],[2,2,2,1],[2,2,2,0]],[[0,1,1,1],[2,1,3,2],[2,2,2,1],[1,3,2,0]],[[0,1,1,1],[2,1,3,2],[2,2,2,1],[1,2,3,0]],[[0,1,1,2],[2,1,3,2],[2,2,2,2],[0,2,1,1]],[[0,1,1,1],[2,1,4,2],[2,2,2,2],[0,2,1,1]],[[0,1,1,1],[2,1,3,3],[2,2,2,2],[0,2,1,1]],[[0,1,1,1],[2,1,3,2],[2,2,2,3],[0,2,1,1]],[[0,1,1,1],[2,1,3,2],[2,2,2,2],[0,2,1,2]],[[0,1,1,2],[2,1,3,2],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[2,1,4,2],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[2,1,3,3],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[2,1,3,2],[2,2,2,3],[0,2,2,0]],[[0,1,1,2],[2,1,3,2],[2,2,3,0],[0,2,2,1]],[[0,1,1,1],[2,1,4,2],[2,2,3,0],[0,2,2,1]],[[0,1,1,1],[2,1,3,3],[2,2,3,0],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,4,0],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,3,0],[0,3,2,1]],[[0,1,1,1],[2,1,3,2],[2,2,3,0],[0,2,3,1]],[[0,1,1,1],[2,1,3,2],[2,2,3,0],[0,2,2,2]],[[0,1,1,1],[3,1,3,2],[2,2,3,0],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[3,2,3,0],[1,2,1,1]],[[0,1,1,1],[2,1,3,2],[2,2,3,0],[2,2,1,1]],[[0,1,1,1],[2,1,3,2],[2,2,3,0],[1,3,1,1]],[[0,1,1,2],[2,1,3,2],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,1,4,2],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,1,3,3],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,1,3,2],[2,2,4,1],[0,2,1,1]],[[0,1,1,2],[2,1,3,2],[2,2,3,1],[0,2,2,0]],[[0,1,1,1],[2,1,4,2],[2,2,3,1],[0,2,2,0]],[[0,1,1,1],[2,1,3,3],[2,2,3,1],[0,2,2,0]],[[0,1,1,1],[2,1,3,2],[2,2,4,1],[0,2,2,0]],[[0,1,1,1],[2,1,3,2],[2,2,3,1],[0,3,2,0]],[[0,1,1,1],[2,1,3,2],[2,2,3,1],[0,2,3,0]],[[0,1,1,1],[3,1,3,2],[2,2,3,1],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[3,2,3,1],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[2,2,3,1],[2,2,0,1]],[[0,1,1,1],[2,1,3,2],[2,2,3,1],[1,3,0,1]],[[0,1,1,1],[3,1,3,2],[2,2,3,1],[1,2,1,0]],[[0,1,1,1],[2,1,3,2],[3,2,3,1],[1,2,1,0]],[[0,1,1,1],[2,1,3,2],[2,2,3,1],[2,2,1,0]],[[0,1,1,1],[2,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[3,3,1,2],[1,3,2,0],[1,2,0,0]],[[1,3,2,1],[2,3,1,2],[1,3,2,0],[1,2,0,0]],[[2,2,2,1],[2,3,1,2],[1,3,2,0],[1,2,0,0]],[[0,1,1,2],[2,1,3,2],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[3,1,3,2],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,1,4,2],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,3],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[3,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,4,0,2],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,0,3],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,0,2],[0,3,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,0,2],[0,2,3,1]],[[0,1,1,1],[2,1,3,2],[2,3,0,2],[0,2,2,2]],[[0,1,1,1],[3,1,3,2],[2,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[3,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[2,4,0,2],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,0,2],[2,1,2,1]],[[0,1,1,2],[2,1,3,2],[2,3,1,2],[0,1,2,1]],[[0,1,1,1],[2,1,4,2],[2,3,1,2],[0,1,2,1]],[[0,1,1,1],[2,1,3,3],[2,3,1,2],[0,1,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,1,3],[0,1,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,1,2],[0,1,3,1]],[[0,1,1,1],[2,1,3,2],[2,3,1,2],[0,1,2,2]],[[0,1,1,2],[2,1,3,2],[2,3,1,2],[1,0,2,1]],[[0,1,1,1],[2,1,4,2],[2,3,1,2],[1,0,2,1]],[[0,1,1,1],[2,1,3,3],[2,3,1,2],[1,0,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,1,3],[1,0,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,1,2],[1,0,3,1]],[[0,1,1,1],[2,1,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[3,3,1,2],[1,3,2,0],[1,1,1,0]],[[1,3,2,1],[2,3,1,2],[1,3,2,0],[1,1,1,0]],[[2,2,2,1],[2,3,1,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,1],[3,3,1,2],[1,3,2,0],[1,1,0,1]],[[1,3,2,1],[2,3,1,2],[1,3,2,0],[1,1,0,1]],[[2,2,2,1],[2,3,1,2],[1,3,2,0],[1,1,0,1]],[[0,1,1,1],[3,1,3,2],[2,3,2,0],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[3,3,2,0],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,4,2,0],[0,2,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,0],[0,3,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,0],[0,2,3,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,0],[0,2,2,2]],[[0,1,1,1],[3,1,3,2],[2,3,2,0],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[3,3,2,0],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[2,4,2,0],[1,1,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,0],[2,1,2,1]],[[0,1,1,1],[3,1,3,2],[2,3,2,1],[0,2,2,0]],[[0,1,1,1],[2,1,3,2],[3,3,2,1],[0,2,2,0]],[[0,1,1,1],[2,1,3,2],[2,4,2,1],[0,2,2,0]],[[0,1,1,1],[2,1,3,2],[2,3,2,1],[0,3,2,0]],[[0,1,1,1],[2,1,3,2],[2,3,2,1],[0,2,3,0]],[[0,1,1,1],[3,1,3,2],[2,3,2,1],[1,1,2,0]],[[0,1,1,1],[2,1,3,2],[3,3,2,1],[1,1,2,0]],[[0,1,1,1],[2,1,3,2],[2,4,2,1],[1,1,2,0]],[[0,1,1,1],[2,1,3,2],[2,3,2,1],[2,1,2,0]],[[0,1,1,2],[2,1,3,2],[2,3,2,2],[0,0,2,1]],[[0,1,1,1],[2,1,4,2],[2,3,2,2],[0,0,2,1]],[[0,1,1,1],[2,1,3,3],[2,3,2,2],[0,0,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,3],[0,0,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,2],[0,0,2,2]],[[0,1,1,2],[2,1,3,2],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,1,4,2],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,1,3,3],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,3],[0,1,1,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,2],[0,1,1,2]],[[0,1,1,2],[2,1,3,2],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,1,4,2],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,1,3,3],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,1,3,2],[2,3,2,3],[0,1,2,0]],[[0,1,1,2],[2,1,3,2],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,1,4,2],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,1,3,3],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,3],[0,2,0,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,2],[0,2,0,2]],[[0,1,1,2],[2,1,3,2],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,1,4,2],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,1,3,3],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,1,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[3,3,1,2],[1,3,2,0],[1,0,2,0]],[[1,3,2,1],[2,3,1,2],[1,3,2,0],[1,0,2,0]],[[2,2,2,1],[2,3,1,2],[1,3,2,0],[1,0,2,0]],[[0,1,1,2],[2,1,3,2],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[2,1,4,2],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[2,1,3,3],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,3],[1,0,1,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,2],[1,0,1,2]],[[0,1,1,2],[2,1,3,2],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[2,1,4,2],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[2,1,3,3],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[2,1,3,2],[2,3,2,3],[1,0,2,0]],[[0,1,1,2],[2,1,3,2],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[2,1,4,2],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[2,1,3,3],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,3],[1,1,0,1]],[[0,1,1,1],[2,1,3,2],[2,3,2,2],[1,1,0,2]],[[0,1,1,2],[2,1,3,2],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[2,1,4,2],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[2,1,3,3],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[2,1,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[3,3,1,2],[1,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[1,3,2,0],[0,2,1,0]],[[2,2,2,1],[2,3,1,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,1],[3,3,1,2],[1,3,2,0],[0,2,0,1]],[[1,3,2,1],[2,3,1,2],[1,3,2,0],[0,2,0,1]],[[2,2,2,1],[2,3,1,2],[1,3,2,0],[0,2,0,1]],[[1,2,2,1],[3,3,1,2],[1,3,2,0],[0,1,2,0]],[[1,3,2,1],[2,3,1,2],[1,3,2,0],[0,1,2,0]],[[2,2,2,1],[2,3,1,2],[1,3,2,0],[0,1,2,0]],[[0,1,1,2],[2,1,3,2],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[3,1,3,2],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,1,4,2],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,1,3,3],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,1,3,2],[3,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,1,3,2],[2,4,3,0],[0,1,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,4,0],[0,1,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,0],[0,1,3,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,0],[0,1,2,2]],[[0,1,1,2],[2,1,3,2],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[3,1,3,2],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,1,4,2],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,1,3,3],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,1,3,2],[3,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,1,3,2],[2,4,3,0],[0,2,1,1]],[[0,1,1,1],[2,1,3,2],[2,3,4,0],[0,2,1,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,0],[0,3,1,1]],[[0,1,1,2],[2,1,3,2],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[3,1,3,2],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[2,1,4,2],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[2,1,3,3],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[2,1,3,2],[3,3,3,0],[1,0,2,1]],[[0,1,1,1],[2,1,3,2],[2,4,3,0],[1,0,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,4,0],[1,0,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,0],[2,0,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,0],[1,0,3,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,0],[1,0,2,2]],[[0,1,1,2],[2,1,3,2],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[3,1,3,2],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[2,1,4,2],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[2,1,3,3],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[2,1,3,2],[3,3,3,0],[1,1,1,1]],[[0,1,1,1],[2,1,3,2],[2,4,3,0],[1,1,1,1]],[[0,1,1,1],[2,1,3,2],[2,3,4,0],[1,1,1,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,0],[2,1,1,1]],[[0,1,1,1],[3,1,3,2],[2,3,3,0],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[3,3,3,0],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[2,4,3,0],[1,2,0,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,0],[2,2,0,1]],[[0,1,1,2],[2,1,3,2],[2,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,1,4,2],[2,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,1,3,3],[2,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,1,3,2],[2,3,4,1],[0,0,2,1]],[[0,1,1,2],[2,1,3,2],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[3,1,3,2],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,1,4,2],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,1,3,3],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,1,3,2],[3,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,1,3,2],[2,4,3,1],[0,1,1,1]],[[0,1,1,1],[2,1,3,2],[2,3,4,1],[0,1,1,1]],[[0,1,1,2],[2,1,3,2],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[3,1,3,2],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,1,4,2],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,1,3,3],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,1,3,2],[3,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,1,3,2],[2,4,3,1],[0,1,2,0]],[[0,1,1,1],[2,1,3,2],[2,3,4,1],[0,1,2,0]],[[0,1,1,1],[2,1,3,2],[2,3,3,1],[0,1,3,0]],[[0,1,1,2],[2,1,3,2],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[3,1,3,2],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,1,4,2],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,1,3,3],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,1,3,2],[3,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,1,3,2],[2,4,3,1],[0,2,0,1]],[[0,1,1,1],[2,1,3,2],[2,3,4,1],[0,2,0,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,1],[0,3,0,1]],[[0,1,1,2],[2,1,3,2],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[3,1,3,2],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,1,4,2],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,1,3,3],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,1,3,2],[3,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,1,3,2],[2,4,3,1],[0,2,1,0]],[[0,1,1,1],[2,1,3,2],[2,3,4,1],[0,2,1,0]],[[0,1,1,1],[2,1,3,2],[2,3,3,1],[0,3,1,0]],[[0,1,1,2],[2,1,3,2],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[3,1,3,2],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[2,1,4,2],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[2,1,3,3],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[2,1,3,2],[3,3,3,1],[1,0,1,1]],[[0,1,1,1],[2,1,3,2],[2,4,3,1],[1,0,1,1]],[[0,1,1,1],[2,1,3,2],[2,3,4,1],[1,0,1,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,1],[2,0,1,1]],[[0,1,1,2],[2,1,3,2],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[3,1,3,2],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[2,1,4,2],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[2,1,3,3],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[2,1,3,2],[3,3,3,1],[1,0,2,0]],[[0,1,1,1],[2,1,3,2],[2,4,3,1],[1,0,2,0]],[[0,1,1,1],[2,1,3,2],[2,3,4,1],[1,0,2,0]],[[0,1,1,1],[2,1,3,2],[2,3,3,1],[2,0,2,0]],[[0,1,1,1],[2,1,3,2],[2,3,3,1],[1,0,3,0]],[[0,1,1,2],[2,1,3,2],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[3,1,3,2],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[2,1,4,2],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[2,1,3,3],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[2,1,3,2],[3,3,3,1],[1,1,0,1]],[[0,1,1,1],[2,1,3,2],[2,4,3,1],[1,1,0,1]],[[0,1,1,1],[2,1,3,2],[2,3,4,1],[1,1,0,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,1],[2,1,0,1]],[[0,1,1,2],[2,1,3,2],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[3,1,3,2],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[2,1,4,2],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[2,1,3,3],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[2,1,3,2],[3,3,3,1],[1,1,1,0]],[[0,1,1,1],[2,1,3,2],[2,4,3,1],[1,1,1,0]],[[0,1,1,1],[2,1,3,2],[2,3,4,1],[1,1,1,0]],[[0,1,1,1],[2,1,3,2],[2,3,3,1],[2,1,1,0]],[[0,1,1,1],[3,1,3,2],[2,3,3,1],[1,2,0,0]],[[0,1,1,1],[2,1,3,2],[3,3,3,1],[1,2,0,0]],[[0,1,1,1],[2,1,3,2],[2,4,3,1],[1,2,0,0]],[[0,1,1,1],[2,1,3,2],[2,3,3,1],[2,2,0,0]],[[0,1,1,2],[2,1,3,2],[2,3,3,2],[0,1,0,1]],[[0,1,1,1],[2,1,4,2],[2,3,3,2],[0,1,0,1]],[[0,1,1,1],[2,1,3,3],[2,3,3,2],[0,1,0,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[3,3,1,2],[1,3,1,0],[1,1,2,0]],[[0,1,1,2],[2,1,3,2],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[2,1,4,2],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[2,1,3,3],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[2,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,3,2,1],[2,3,1,2],[1,3,1,0],[1,1,2,0]],[[2,2,2,1],[2,3,1,2],[1,3,1,0],[1,1,2,0]],[[1,2,2,1],[3,3,1,2],[1,3,1,0],[0,2,2,0]],[[1,3,2,1],[2,3,1,2],[1,3,1,0],[0,2,2,0]],[[2,2,2,1],[2,3,1,2],[1,3,1,0],[0,2,2,0]],[[0,1,1,1],[2,2,0,1],[1,4,3,2],[1,2,2,1]],[[0,1,1,1],[2,2,0,1],[1,3,3,2],[2,2,2,1]],[[0,1,1,1],[2,2,0,1],[1,3,3,2],[1,3,2,1]],[[0,1,1,1],[2,2,0,1],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,0,1],[1,3,3,2],[1,2,2,2]],[[0,1,1,1],[2,2,0,1],[3,2,3,2],[1,2,2,1]],[[0,1,1,1],[2,2,0,1],[2,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,2,0,1],[2,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,2,0,1],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,0,1],[2,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,2,0,1],[3,3,3,2],[0,2,2,1]],[[0,1,1,1],[2,2,0,1],[2,4,3,2],[0,2,2,1]],[[0,1,1,1],[2,2,0,1],[2,3,3,2],[0,3,2,1]],[[0,1,1,1],[2,2,0,1],[2,3,3,2],[0,2,3,1]],[[0,1,1,1],[2,2,0,1],[2,3,3,2],[0,2,2,2]],[[0,1,1,1],[2,2,0,1],[3,3,3,2],[1,1,2,1]],[[0,1,1,1],[2,2,0,1],[2,4,3,2],[1,1,2,1]],[[0,1,1,1],[2,2,0,1],[2,3,3,2],[2,1,2,1]],[[0,1,1,1],[2,2,0,2],[1,2,3,3],[1,2,2,1]],[[0,1,1,1],[2,2,0,2],[1,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,2,0,2],[1,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,2,0,2],[1,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,0,2],[1,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,2,0,2],[1,4,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,0,2],[1,3,2,3],[1,2,2,1]],[[0,1,1,1],[2,2,0,2],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,0,2],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,0,2],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,0,2],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,2,0,2],[1,4,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,0,2],[1,3,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,0,2],[1,3,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,0,2],[1,3,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,0,2],[1,3,3,1],[1,2,2,2]],[[0,1,1,1],[2,2,0,2],[1,3,3,3],[1,1,2,1]],[[0,1,1,1],[2,2,0,2],[1,3,3,2],[1,1,3,1]],[[0,1,1,1],[2,2,0,2],[1,3,3,2],[1,1,2,2]],[[0,1,1,1],[2,2,0,2],[1,4,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,0,2],[1,3,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,0,2],[1,3,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,0,2],[1,3,3,2],[1,2,3,0]],[[0,1,1,1],[2,2,0,2],[3,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,1,3,3],[1,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,1,3,2],[2,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,1,3,2],[1,3,2,1]],[[0,1,1,1],[2,2,0,2],[2,1,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,0,2],[2,1,3,2],[1,2,2,2]],[[0,1,1,1],[2,2,0,2],[3,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,0,2],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,0,2],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,2,0,2],[3,2,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,0,2],[2,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,0,2],[2,2,3,1],[1,2,2,2]],[[0,1,1,1],[2,2,0,2],[2,2,3,3],[0,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,2,3,2],[0,3,2,1]],[[0,1,1,1],[2,2,0,2],[2,2,3,2],[0,2,3,1]],[[0,1,1,1],[2,2,0,2],[2,2,3,2],[0,2,2,2]],[[0,1,1,1],[2,2,0,2],[3,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,0,2],[2,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,0,2],[2,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,0,2],[2,2,3,2],[1,2,3,0]],[[0,1,1,1],[2,2,0,2],[3,3,2,2],[0,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,4,2,2],[0,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,3,2,3],[0,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[2,2,0,2],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[2,2,0,2],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[2,2,0,2],[3,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,2,0,2],[2,4,2,2],[1,1,2,1]],[[0,1,1,1],[2,2,0,2],[2,3,2,2],[2,1,2,1]],[[0,1,1,1],[2,2,0,2],[3,3,3,1],[0,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,4,3,1],[0,2,2,1]],[[0,1,1,1],[2,2,0,2],[2,3,3,1],[0,3,2,1]],[[0,1,1,1],[2,2,0,2],[2,3,3,1],[0,2,3,1]],[[0,1,1,1],[2,2,0,2],[2,3,3,1],[0,2,2,2]],[[0,1,1,1],[2,2,0,2],[3,3,3,1],[1,1,2,1]],[[0,1,1,1],[2,2,0,2],[2,4,3,1],[1,1,2,1]],[[0,1,1,1],[2,2,0,2],[2,3,3,1],[2,1,2,1]],[[0,1,1,1],[2,2,0,2],[2,3,3,3],[0,1,2,1]],[[0,1,1,1],[2,2,0,2],[2,3,3,2],[0,1,3,1]],[[0,1,1,1],[2,2,0,2],[2,3,3,2],[0,1,2,2]],[[0,1,1,1],[2,2,0,2],[3,3,3,2],[0,2,2,0]],[[0,1,1,1],[2,2,0,2],[2,4,3,2],[0,2,2,0]],[[0,1,1,1],[2,2,0,2],[2,3,3,2],[0,3,2,0]],[[0,1,1,1],[2,2,0,2],[2,3,3,2],[0,2,3,0]],[[0,1,1,1],[2,2,0,2],[2,3,3,3],[1,0,2,1]],[[0,1,1,1],[2,2,0,2],[2,3,3,2],[1,0,3,1]],[[0,1,1,1],[2,2,0,2],[2,3,3,2],[1,0,2,2]],[[0,1,1,1],[2,2,0,2],[3,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,0,2],[2,4,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,0,2],[2,3,3,2],[2,1,2,0]],[[0,1,1,1],[2,2,1,0],[1,4,3,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,0],[1,3,3,2],[2,2,2,1]],[[0,1,1,1],[2,2,1,0],[1,3,3,2],[1,3,2,1]],[[0,1,1,1],[2,2,1,0],[1,3,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,1,0],[1,3,3,2],[1,2,2,2]],[[0,1,1,1],[2,2,1,0],[3,2,3,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,0],[2,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,2,1,0],[2,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,2,1,0],[2,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,1,0],[2,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,2,1,0],[3,3,3,2],[0,2,2,1]],[[0,1,1,1],[2,2,1,0],[2,4,3,2],[0,2,2,1]],[[0,1,1,1],[2,2,1,0],[2,3,3,2],[0,3,2,1]],[[0,1,1,1],[2,2,1,0],[2,3,3,2],[0,2,3,1]],[[0,1,1,1],[2,2,1,0],[2,3,3,2],[0,2,2,2]],[[0,1,1,1],[2,2,1,0],[3,3,3,2],[1,1,2,1]],[[0,1,1,1],[2,2,1,0],[2,4,3,2],[1,1,2,1]],[[0,1,1,1],[2,2,1,0],[2,3,3,2],[2,1,2,1]],[[0,1,1,1],[2,2,1,1],[1,4,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,1,1],[1,3,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,1,1],[1,3,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,1,1],[1,3,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,1,1],[1,3,3,1],[1,2,2,2]],[[0,1,1,1],[2,2,1,1],[1,4,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,1],[1,3,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,1,1],[1,3,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,1,1],[1,3,3,2],[1,2,3,0]],[[0,1,1,1],[2,2,1,1],[3,2,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,1,1],[2,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,1,1],[2,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,1,1],[2,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,1,1],[2,2,3,1],[1,2,2,2]],[[0,1,1,1],[2,2,1,1],[3,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,1],[2,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,1,1],[2,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,1,1],[2,2,3,2],[1,2,3,0]],[[0,1,1,1],[2,2,1,1],[3,3,3,1],[0,2,2,1]],[[0,1,1,1],[2,2,1,1],[2,4,3,1],[0,2,2,1]],[[0,1,1,1],[2,2,1,1],[2,3,3,1],[0,3,2,1]],[[0,1,1,1],[2,2,1,1],[2,3,3,1],[0,2,3,1]],[[0,1,1,1],[2,2,1,1],[2,3,3,1],[0,2,2,2]],[[0,1,1,1],[2,2,1,1],[3,3,3,1],[1,1,2,1]],[[0,1,1,1],[2,2,1,1],[2,4,3,1],[1,1,2,1]],[[0,1,1,1],[2,2,1,1],[2,3,3,1],[2,1,2,1]],[[0,1,1,1],[2,2,1,1],[3,3,3,2],[0,2,2,0]],[[0,1,1,1],[2,2,1,1],[2,4,3,2],[0,2,2,0]],[[0,1,1,1],[2,2,1,1],[2,3,3,2],[0,3,2,0]],[[0,1,1,1],[2,2,1,1],[2,3,3,2],[0,2,3,0]],[[0,1,1,1],[2,2,1,1],[3,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,1,1],[2,4,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,1,1],[2,3,3,2],[2,1,2,0]],[[0,1,1,1],[2,2,1,2],[0,2,3,3],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[0,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,2,1,2],[0,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,1,2],[0,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,2,1,2],[0,3,3,3],[1,1,2,1]],[[0,1,1,1],[2,2,1,2],[0,3,3,2],[1,1,3,1]],[[0,1,1,1],[2,2,1,2],[0,3,3,2],[1,1,2,2]],[[0,1,1,2],[2,2,1,2],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,3],[1,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,1,2],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,1,2],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,2,1,2],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,1,2],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,1,2],[1,2,3,1],[1,2,2,2]],[[0,1,1,1],[2,2,1,2],[1,2,3,3],[0,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,2,3,2],[0,2,3,1]],[[0,1,1,1],[2,2,1,2],[1,2,3,2],[0,2,2,2]],[[0,1,1,2],[2,2,1,2],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,1,3],[1,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,1,2],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,2,1,2],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,2,1,2],[1,2,3,2],[1,2,1,2]],[[0,1,1,2],[2,2,1,2],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,3],[1,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,2],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,2],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,2,1,2],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,1,2],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,1,2],[1,2,3,2],[1,2,3,0]],[[0,1,1,2],[2,2,1,2],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,3],[1,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,4,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,1,3],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,2,1,2],[1,3,1,2],[1,2,2,2]],[[0,1,1,1],[2,2,1,2],[1,4,2,1],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,2,1,2],[1,3,2,1],[1,2,2,2]],[[0,1,1,2],[2,2,1,2],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,2,1,3],[1,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[2,2,1,2],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[2,2,1,2],[1,4,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,2],[1,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,2,1,2],[1,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,2,1,2],[1,3,2,2],[1,2,3,0]],[[0,1,1,1],[2,2,1,2],[1,4,3,1],[1,1,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[2,2,1,2],[1,4,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,1,2],[1,3,4,1],[1,2,1,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,1],[1,3,1,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,3],[0,1,2,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,2],[0,1,3,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,2],[0,1,2,2]],[[0,1,1,2],[2,2,1,2],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,2,1,3],[1,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,2,1,2],[1,4,3,2],[1,1,1,1]],[[0,1,1,1],[2,2,1,2],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,2],[1,1,1,2]],[[0,1,1,2],[2,2,1,2],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,1,3],[1,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,1,2],[1,4,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,1,2],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[2,2,1,2],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[2,2,1,2],[1,3,3,2],[1,1,3,0]],[[0,1,1,2],[2,2,1,2],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,1,3],[1,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,1,2],[1,4,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,1,2],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,2,1,2],[1,3,3,2],[1,2,0,2]],[[0,1,1,2],[2,2,1,2],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,1,3],[1,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,1,2],[1,4,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,1,2],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[2,2,1,2],[1,3,3,3],[1,2,1,0]],[[0,1,1,1],[2,2,1,2],[1,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,2,1,2],[1,3,3,2],[1,3,1,0]],[[0,1,1,2],[2,2,1,2],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[3,2,1,2],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,3],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[3,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,1,2,3],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,1,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,1,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,1,2],[2,1,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,1,2],[2,1,2,2],[1,2,2,2]],[[0,1,1,1],[3,2,1,2],[2,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[3,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,1,4,1],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,1,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,1,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,1,2],[2,1,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,1,2],[2,1,3,1],[1,2,2,2]],[[0,1,1,2],[2,2,1,2],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,1,3],[2,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,1,2],[2,1,4,2],[1,2,1,1]],[[0,1,1,1],[2,2,1,2],[2,1,3,3],[1,2,1,1]],[[0,1,1,1],[2,2,1,2],[2,1,3,2],[1,2,1,2]],[[0,1,1,2],[2,2,1,2],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[3,2,1,2],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,3],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,2],[3,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,1,4,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,1,3,3],[1,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,1,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,1,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,1,2],[2,1,3,2],[1,2,3,0]],[[0,1,1,2],[2,2,1,2],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[3,2,1,2],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,3],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[3,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,1,3],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,1,2],[2,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,1,2],[1,3,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,1,2],[1,2,3,1]],[[0,1,1,1],[2,2,1,2],[2,2,1,2],[1,2,2,2]],[[0,1,1,1],[3,2,1,2],[2,2,2,1],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[3,2,2,1],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,2,1],[2,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,2,1],[1,3,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,2,1],[1,2,3,1]],[[0,1,1,1],[2,2,1,2],[2,2,2,1],[1,2,2,2]],[[0,1,1,2],[2,2,1,2],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,2,1,3],[2,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[2,2,1,2],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[3,2,1,2],[2,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,2],[3,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,2,2,2],[2,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,2,2,2],[1,3,2,0]],[[0,1,1,1],[2,2,1,2],[2,2,2,2],[1,2,3,0]],[[0,1,1,1],[2,2,1,2],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[2,2,1,2],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[2,2,1,2],[2,2,3,1],[0,2,2,2]],[[0,1,1,1],[3,2,1,2],[2,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,1,2],[3,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,1,2],[2,2,3,1],[2,2,1,1]],[[0,1,1,1],[2,2,1,2],[2,2,3,1],[1,3,1,1]],[[0,1,1,2],[2,2,1,2],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,2,1,3],[2,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,2,1,2],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[2,2,1,2],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[2,2,1,2],[2,2,3,2],[0,2,1,2]],[[0,1,1,2],[2,2,1,2],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,2,1,3],[2,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[2,2,1,2],[2,2,3,2],[0,2,3,0]],[[0,1,1,1],[3,2,1,2],[2,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,1,2],[3,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,1,2],[2,2,3,2],[2,2,0,1]],[[0,1,1,1],[2,2,1,2],[2,2,3,2],[1,3,0,1]],[[0,1,1,1],[3,2,1,2],[2,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,1,2],[3,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,1,2],[2,2,3,2],[2,2,1,0]],[[0,1,1,1],[2,2,1,2],[2,2,3,2],[1,3,1,0]],[[0,1,1,1],[2,2,1,2],[3,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,0,2],[2,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,0,2],[1,3,2,1]],[[0,1,1,1],[2,2,1,2],[3,3,1,1],[1,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,1,1],[2,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,1,1],[1,3,2,1]],[[0,1,1,2],[2,2,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[3,2,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,1,3],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,1,2],[3,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,4,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,1,3],[0,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,1,2],[0,3,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,1,2],[0,2,3,1]],[[0,1,1,1],[2,2,1,2],[2,3,1,2],[0,2,2,2]],[[0,1,1,1],[3,2,1,2],[2,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,2,1,2],[3,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,2,1,2],[2,4,1,2],[1,1,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,1,2],[2,1,2,1]],[[0,1,1,1],[2,2,1,2],[3,3,1,2],[1,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,1,2],[2,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,1,2],[1,3,2,0]],[[0,1,1,1],[3,2,1,2],[2,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,2,1,2],[3,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,4,2,1],[0,2,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,2,1],[0,3,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,2,1],[0,2,3,1]],[[0,1,1,1],[2,2,1,2],[2,3,2,1],[0,2,2,2]],[[0,1,1,1],[3,2,1,2],[2,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,2,1,2],[3,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,2,1,2],[2,4,2,1],[1,1,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,2,1],[2,1,2,1]],[[0,1,1,2],[2,2,1,2],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,2,1,3],[2,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,2,1,2],[2,3,2,2],[0,1,2,2]],[[0,1,1,1],[3,2,1,2],[2,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,2,1,2],[3,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,4,2,2],[0,2,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,2,2],[0,3,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,2,2],[0,2,3,0]],[[0,1,1,2],[2,2,1,2],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,2,1,3],[2,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[2,2,1,2],[2,3,2,2],[1,0,2,2]],[[0,1,1,1],[3,2,1,2],[2,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,2,1,2],[3,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,2,1,2],[2,4,2,2],[1,1,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,2,2],[2,1,2,0]],[[0,1,1,1],[3,2,1,2],[2,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,2,1,2],[3,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,2,1,2],[2,4,3,1],[0,1,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[3,2,1,2],[2,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,1,2],[3,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,1,2],[2,4,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,1,2],[2,3,4,1],[0,2,1,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,1],[0,3,1,1]],[[0,1,1,1],[3,2,1,2],[2,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,1,2],[3,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,1,2],[2,4,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,1],[2,0,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,1],[1,0,2,2]],[[0,1,1,1],[3,2,1,2],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,1,2],[3,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,1,2],[2,4,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,1,2],[2,3,4,1],[1,1,1,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,1],[2,1,1,1]],[[0,1,1,1],[2,2,1,2],[3,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,2,1,2],[2,4,3,1],[1,2,0,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,1],[2,2,0,1]],[[0,1,1,2],[2,2,1,2],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,2,1,3],[2,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[0,0,2,2]],[[0,1,1,2],[2,2,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[3,2,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,1,3],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,1,2],[3,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,1,2],[2,4,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,1,2],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[0,1,1,2]],[[0,1,1,2],[2,2,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[3,2,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,1,3],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,1,2],[3,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,1,2],[2,4,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[0,1,3,0]],[[0,1,1,2],[2,2,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[3,2,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,1,3],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,1,2],[3,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,1,2],[2,4,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,1,2],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[0,3,0,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[0,2,0,2]],[[0,1,1,2],[2,2,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[3,2,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,1,3],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,1,2],[3,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,1,2],[2,4,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,1,2],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,2,1,2],[2,3,3,3],[0,2,1,0]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[0,3,1,0]],[[0,1,1,2],[2,2,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[3,2,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,1,3],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,1,2],[3,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,1,2],[2,4,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,1,2],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[2,0,1,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[1,0,1,2]],[[0,1,1,2],[2,2,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[3,2,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,1,3],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,1,2],[3,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,1,2],[2,4,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[2,0,2,0]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[1,0,3,0]],[[0,1,1,2],[2,2,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[3,2,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,1,3],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,1,2],[3,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,1,2],[2,4,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,1,2],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[2,1,0,1]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[1,1,0,2]],[[0,1,1,2],[2,2,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[3,2,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,1,3],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,1,2],[3,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,1,2],[2,4,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,1,2],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[2,2,1,2],[2,3,3,3],[1,1,1,0]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[2,1,1,0]],[[0,1,1,1],[3,2,1,2],[2,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,2,1,2],[3,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,2,1,2],[2,4,3,2],[1,2,0,0]],[[0,1,1,1],[2,2,1,2],[2,3,3,2],[2,2,0,0]],[[0,1,1,1],[2,2,2,0],[1,2,4,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,0],[1,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,0],[1,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,0],[1,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,0],[1,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,2,2,0],[1,4,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,0],[1,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,0],[1,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,0],[1,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,0],[1,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,2,2,0],[1,4,3,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,0],[1,3,4,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,0],[1,3,3,2],[1,1,3,1]],[[0,1,1,1],[2,2,2,0],[1,3,3,2],[1,1,2,2]],[[0,1,1,1],[2,2,2,0],[1,4,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,2,0],[1,3,4,2],[1,2,1,1]],[[0,1,1,1],[2,2,2,0],[1,3,3,2],[2,2,1,1]],[[0,1,1,1],[2,2,2,0],[1,3,3,2],[1,3,1,1]],[[0,1,1,1],[2,2,2,0],[3,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,0],[2,1,4,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,0],[2,1,3,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,0],[2,1,3,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,0],[2,1,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,0],[2,1,3,2],[1,2,2,2]],[[0,1,1,1],[2,2,2,0],[3,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,0],[2,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,0],[2,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,0],[2,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,0],[2,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,2,2,0],[2,2,4,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,0],[2,2,3,2],[0,3,2,1]],[[0,1,1,1],[2,2,2,0],[2,2,3,2],[0,2,3,1]],[[0,1,1,1],[2,2,2,0],[2,2,3,2],[0,2,2,2]],[[0,1,1,1],[2,2,2,0],[3,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,2,0],[2,2,3,2],[2,2,1,1]],[[0,1,1,1],[2,2,2,0],[2,2,3,2],[1,3,1,1]],[[0,1,1,1],[2,2,2,0],[3,3,2,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,0],[2,4,2,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,0],[2,3,2,2],[0,3,2,1]],[[0,1,1,1],[2,2,2,0],[2,3,2,2],[0,2,3,1]],[[0,1,1,1],[2,2,2,0],[2,3,2,2],[0,2,2,2]],[[0,1,1,1],[2,2,2,0],[3,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,0],[2,4,2,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,0],[2,3,2,2],[2,1,2,1]],[[0,1,1,1],[2,2,2,0],[3,3,3,2],[0,1,2,1]],[[0,1,1,1],[2,2,2,0],[2,4,3,2],[0,1,2,1]],[[0,1,1,1],[2,2,2,0],[2,3,4,2],[0,1,2,1]],[[0,1,1,1],[2,2,2,0],[2,3,3,2],[0,1,3,1]],[[0,1,1,1],[2,2,2,0],[2,3,3,2],[0,1,2,2]],[[0,1,1,1],[2,2,2,0],[3,3,3,2],[0,2,1,1]],[[0,1,1,1],[2,2,2,0],[2,4,3,2],[0,2,1,1]],[[0,1,1,1],[2,2,2,0],[2,3,4,2],[0,2,1,1]],[[0,1,1,1],[2,2,2,0],[2,3,3,2],[0,3,1,1]],[[0,1,1,1],[2,2,2,0],[3,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,2,2,0],[2,4,3,2],[1,0,2,1]],[[0,1,1,1],[2,2,2,0],[2,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,2,2,0],[2,3,3,2],[2,0,2,1]],[[0,1,1,1],[2,2,2,0],[2,3,3,2],[1,0,3,1]],[[0,1,1,1],[2,2,2,0],[2,3,3,2],[1,0,2,2]],[[0,1,1,1],[2,2,2,0],[3,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,2,2,0],[2,4,3,2],[1,1,1,1]],[[0,1,1,1],[2,2,2,0],[2,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,2,2,0],[2,3,3,2],[2,1,1,1]],[[0,1,1,1],[2,2,2,1],[1,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[1,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[1,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,1],[1,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,1],[1,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,2,2,1],[1,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[1,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[1,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,2,1],[1,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,2,1],[1,2,3,1],[1,2,2,2]],[[0,1,1,1],[2,2,2,1],[1,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,2,2,1],[1,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,2,2,1],[1,2,3,2],[1,2,1,2]],[[0,1,1,1],[2,2,2,1],[1,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,1],[1,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,2,2,1],[1,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,2,1],[1,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,2,1],[1,2,3,2],[1,2,3,0]],[[0,1,1,1],[2,2,2,1],[1,4,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,1,3],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,1],[1,3,1,2],[1,2,2,2]],[[0,1,1,1],[2,2,2,1],[1,4,2,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,2,2,1],[1,3,2,1],[1,2,2,2]],[[0,1,1,1],[2,2,2,1],[1,3,2,3],[1,1,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,2,2],[1,1,3,1]],[[0,1,1,1],[2,2,2,1],[1,3,2,2],[1,1,2,2]],[[0,1,1,1],[2,2,2,1],[1,4,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,1],[1,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,2,2,1],[1,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,2,2,1],[1,3,2,2],[1,2,3,0]],[[0,1,1,1],[2,2,2,1],[1,4,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,0],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,0],[1,3,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,0],[1,2,3,1]],[[0,1,1,1],[2,2,2,1],[1,4,3,1],[1,1,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,4,1],[1,1,2,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,1],[1,1,3,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,1],[1,1,2,2]],[[0,1,1,1],[2,2,2,1],[1,4,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,2,1],[1,3,4,1],[1,2,1,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,1],[1,3,1,1]],[[0,1,1,1],[2,2,2,1],[1,4,3,2],[1,1,1,1]],[[0,1,1,1],[2,2,2,1],[1,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,3],[1,1,1,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,2],[1,1,1,2]],[[0,1,1,1],[2,2,2,1],[1,4,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,2,1],[1,3,4,2],[1,1,2,0]],[[0,1,1,1],[2,2,2,1],[1,3,3,3],[1,1,2,0]],[[0,1,1,1],[2,2,2,1],[1,3,3,2],[1,1,3,0]],[[0,1,1,1],[2,2,2,1],[1,4,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,2,1],[1,3,4,2],[1,2,0,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,3],[1,2,0,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,2,2,1],[1,3,3,2],[1,2,0,2]],[[0,1,1,1],[2,2,2,1],[1,4,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,2,1],[1,3,4,2],[1,2,1,0]],[[0,1,1,1],[2,2,2,1],[1,3,3,3],[1,2,1,0]],[[0,1,1,1],[2,2,2,1],[1,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,2,2,1],[1,3,3,2],[1,3,1,0]],[[0,1,1,1],[3,2,2,1],[2,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[3,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,1,2,3],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,1,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,1,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,1],[2,1,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,1],[2,1,2,2],[1,2,2,2]],[[0,1,1,1],[3,2,2,1],[2,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[3,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,1,4,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,1,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,1,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,2,1],[2,1,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,2,1],[2,1,3,1],[1,2,2,2]],[[0,1,1,1],[2,2,2,1],[2,1,4,2],[1,2,1,1]],[[0,1,1,1],[2,2,2,1],[2,1,3,3],[1,2,1,1]],[[0,1,1,1],[2,2,2,1],[2,1,3,2],[1,2,1,2]],[[0,1,1,1],[3,2,2,1],[2,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,1],[3,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,1,4,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,1,3,3],[1,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,1,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,1,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,2,1],[2,1,3,2],[1,2,3,0]],[[0,1,1,1],[3,2,2,1],[2,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[3,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,1,3],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,1,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,1,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,1,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,1],[2,2,1,2],[1,2,2,2]],[[0,1,1,1],[3,2,2,1],[2,2,2,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[3,2,2,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,2,1],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,2,1],[1,3,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,2,1],[1,2,3,1]],[[0,1,1,1],[2,2,2,1],[2,2,2,1],[1,2,2,2]],[[0,1,1,1],[2,2,2,1],[2,2,2,3],[0,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,2,2],[0,3,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,2,2],[0,2,3,1]],[[0,1,1,1],[2,2,2,1],[2,2,2,2],[0,2,2,2]],[[0,1,1,1],[3,2,2,1],[2,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,1],[3,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,2,2,2],[2,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,2,2,2],[1,3,2,0]],[[0,1,1,1],[2,2,2,1],[2,2,2,2],[1,2,3,0]],[[0,1,1,1],[2,2,2,1],[3,2,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,0],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,0],[1,3,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,0],[1,2,3,1]],[[0,1,1,1],[2,2,2,1],[2,2,4,1],[0,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,1],[0,3,2,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,1],[0,2,3,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,1],[0,2,2,2]],[[0,1,1,1],[3,2,2,1],[2,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,2,1],[3,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,1],[2,2,1,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,1],[1,3,1,1]],[[0,1,1,1],[2,2,2,1],[2,2,4,2],[0,2,1,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,3],[0,2,1,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,2],[0,2,1,2]],[[0,1,1,1],[2,2,2,1],[2,2,4,2],[0,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,2,3,3],[0,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,2,3,2],[0,3,2,0]],[[0,1,1,1],[2,2,2,1],[2,2,3,2],[0,2,3,0]],[[0,1,1,1],[3,2,2,1],[2,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,2,1],[3,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,2],[2,2,0,1]],[[0,1,1,1],[2,2,2,1],[2,2,3,2],[1,3,0,1]],[[0,1,1,1],[3,2,2,1],[2,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,2,1],[3,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,2,1],[2,2,3,2],[2,2,1,0]],[[0,1,1,1],[2,2,2,1],[2,2,3,2],[1,3,1,0]],[[0,1,1,1],[2,2,2,1],[3,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,0,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,0,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,1],[3,3,1,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,1,1],[2,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,1,1],[1,3,2,1]],[[0,1,1,1],[3,2,2,1],[2,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,1],[3,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,4,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,1,3],[0,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,1,2],[0,3,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,1,2],[0,2,3,1]],[[0,1,1,1],[2,2,2,1],[2,3,1,2],[0,2,2,2]],[[0,1,1,1],[3,2,2,1],[2,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,1],[3,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,1],[2,4,1,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,1,2],[2,1,2,1]],[[0,1,1,1],[2,2,2,1],[3,3,1,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,1,2],[2,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,1,2],[1,3,2,0]],[[0,1,1,1],[3,2,2,1],[2,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,2,2,1],[3,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,4,2,1],[0,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,2,1],[0,3,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,2,1],[0,2,3,1]],[[0,1,1,1],[2,2,2,1],[2,3,2,1],[0,2,2,2]],[[0,1,1,1],[3,2,2,1],[2,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,2,2,1],[3,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,2,2,1],[2,4,2,1],[1,1,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,2,1],[2,1,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,2,2,1],[2,3,2,2],[0,1,2,2]],[[0,1,1,1],[3,2,2,1],[2,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,2,2,1],[3,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,4,2,2],[0,2,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,2,2],[0,3,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,2,2],[0,2,3,0]],[[0,1,1,1],[2,2,2,1],[2,3,2,3],[1,0,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,2,2],[1,0,3,1]],[[0,1,1,1],[2,2,2,1],[2,3,2,2],[1,0,2,2]],[[0,1,1,1],[3,2,2,1],[2,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,2,2,1],[3,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,2,2,1],[2,4,2,2],[1,1,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,2,2],[2,1,2,0]],[[0,1,1,1],[2,2,2,1],[3,3,3,0],[0,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,4,3,0],[0,2,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,0],[0,3,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,0],[0,2,3,1]],[[0,1,1,1],[2,2,2,1],[3,3,3,0],[1,1,2,1]],[[0,1,1,1],[2,2,2,1],[2,4,3,0],[1,1,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,0],[2,1,2,1]],[[0,1,1,1],[3,2,2,1],[2,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,2,2,1],[3,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,2,2,1],[2,4,3,1],[0,1,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,1],[0,1,2,2]],[[0,1,1,1],[3,2,2,1],[2,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,2,1],[3,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,2,1],[2,4,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,2,1],[2,3,4,1],[0,2,1,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,1],[0,3,1,1]],[[0,1,1,1],[3,2,2,1],[2,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,2,1],[3,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,2,1],[2,4,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,4,1],[1,0,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,1],[2,0,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,1],[1,0,3,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,1],[1,0,2,2]],[[0,1,1,1],[3,2,2,1],[2,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,2,1],[3,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,2,1],[2,4,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,2,1],[2,3,4,1],[1,1,1,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,1],[2,1,1,1]],[[0,1,1,1],[2,2,2,1],[3,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,2,2,1],[2,4,3,1],[1,2,0,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,1],[2,2,0,1]],[[0,1,1,1],[2,2,2,1],[2,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[0,0,2,2]],[[0,1,1,1],[3,2,2,1],[2,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,2,1],[3,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,2,1],[2,4,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,2,1],[2,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[0,1,1,2]],[[0,1,1,1],[3,2,2,1],[2,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,2,1],[3,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,2,1],[2,4,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[0,1,3,0]],[[0,1,1,1],[3,2,2,1],[2,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,2,1],[3,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,2,1],[2,4,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,2,1],[2,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[0,3,0,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[0,2,0,2]],[[0,1,1,1],[3,2,2,1],[2,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,2,1],[3,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,2,1],[2,4,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,2,1],[2,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,2,2,1],[2,3,3,3],[0,2,1,0]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[0,3,1,0]],[[0,1,1,1],[3,2,2,1],[2,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,2,1],[3,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,2,1],[2,4,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,2,1],[2,3,4,2],[1,0,1,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,3],[1,0,1,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[2,0,1,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[1,0,1,2]],[[0,1,1,1],[3,2,2,1],[2,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,2,1],[3,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,2,1],[2,4,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,4,2],[1,0,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,3,3],[1,0,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[2,0,2,0]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[1,0,3,0]],[[0,1,1,1],[3,2,2,1],[2,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,2,1],[3,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,2,1],[2,4,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,2,1],[2,3,4,2],[1,1,0,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,3],[1,1,0,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[2,1,0,1]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[1,1,0,2]],[[0,1,1,1],[3,2,2,1],[2,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,2,1],[3,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,2,1],[2,4,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,2,1],[2,3,4,2],[1,1,1,0]],[[0,1,1,1],[2,2,2,1],[2,3,3,3],[1,1,1,0]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[2,1,1,0]],[[0,1,1,1],[3,2,2,1],[2,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,2,2,1],[3,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,2,2,1],[2,4,3,2],[1,2,0,0]],[[0,1,1,1],[2,2,2,1],[2,3,3,2],[2,2,0,0]],[[0,1,1,2],[2,2,2,2],[0,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,3],[0,1,3,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,1,3,3],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,1,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[0,1,3,2],[1,2,2,2]],[[0,1,1,2],[2,2,2,2],[0,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,3],[0,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[0,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[0,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,2,2,2],[0,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[0,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[0,2,3,1],[1,2,2,2]],[[0,1,1,2],[2,2,2,2],[0,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,2,3],[0,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[0,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[0,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[0,2,3,2],[1,2,1,2]],[[0,1,1,2],[2,2,2,2],[0,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,3],[0,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[0,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[0,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[0,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,2,2],[0,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,2,2],[0,2,3,2],[1,2,3,0]],[[0,1,1,2],[2,2,2,2],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,3],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,4,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,1,3],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[0,3,1,2],[1,2,2,2]],[[0,1,1,1],[2,2,2,2],[0,4,2,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[0,3,2,1],[1,2,2,2]],[[0,1,1,2],[2,2,2,2],[0,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,3],[0,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,2,3],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,2,2],[1,1,3,1]],[[0,1,1,1],[2,2,2,2],[0,3,2,2],[1,1,2,2]],[[0,1,1,1],[2,2,2,2],[0,4,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[0,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,2,2,2],[0,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,2,2,2],[0,3,2,2],[1,2,3,0]],[[0,1,1,1],[2,2,2,2],[0,4,3,1],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,4,1],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,1],[1,1,3,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,1],[1,1,2,2]],[[0,1,1,1],[2,2,2,2],[0,4,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[0,3,4,1],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,1],[1,3,1,1]],[[0,1,1,2],[2,2,2,2],[0,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,2,2,3],[0,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,3],[1,0,2,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,2],[1,0,2,2]],[[0,1,1,2],[2,2,2,2],[0,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,2,2,3],[0,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,2,2,2],[0,4,3,2],[1,1,1,1]],[[0,1,1,1],[2,2,2,2],[0,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,3],[1,1,1,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,2],[1,1,1,2]],[[0,1,1,2],[2,2,2,2],[0,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,2,3],[0,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,2,2],[0,4,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,2,2],[0,3,4,2],[1,1,2,0]],[[0,1,1,1],[2,2,2,2],[0,3,3,3],[1,1,2,0]],[[0,1,1,1],[2,2,2,2],[0,3,3,2],[1,1,3,0]],[[0,1,1,2],[2,2,2,2],[0,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,2,3],[0,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,2,2],[0,4,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,2,2],[0,3,4,2],[1,2,0,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,3],[1,2,0,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,2,2,2],[0,3,3,2],[1,2,0,2]],[[0,1,1,2],[2,2,2,2],[0,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,2,3],[0,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,2,2],[0,4,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,2,2],[0,3,4,2],[1,2,1,0]],[[0,1,1,1],[2,2,2,2],[0,3,3,3],[1,2,1,0]],[[0,1,1,1],[2,2,2,2],[0,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,2,2,2],[0,3,3,2],[1,3,1,0]],[[0,1,1,2],[2,2,2,2],[1,1,3,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,3],[1,1,3,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,1,3,3],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,1,3,2],[0,2,3,1]],[[0,1,1,1],[2,2,2,2],[1,1,3,2],[0,2,2,2]],[[0,1,1,2],[2,2,2,2],[1,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,3],[1,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,2,2,3],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,2,2,2],[0,3,2,1]],[[0,1,1,1],[2,2,2,2],[1,2,2,2],[0,2,3,1]],[[0,1,1,1],[2,2,2,2],[1,2,2,2],[0,2,2,2]],[[0,1,1,1],[2,2,2,2],[1,2,4,0],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,2,3,0],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,2,3,0],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[1,2,3,0],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[1,2,3,0],[1,2,2,2]],[[0,1,1,1],[2,2,2,2],[1,2,4,1],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,2,3,1],[0,3,2,1]],[[0,1,1,1],[2,2,2,2],[1,2,3,1],[0,2,3,1]],[[0,1,1,1],[2,2,2,2],[1,2,3,1],[0,2,2,2]],[[0,1,1,1],[2,2,2,2],[1,2,4,1],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[1,2,3,1],[2,2,2,0]],[[0,1,1,1],[2,2,2,2],[1,2,3,1],[1,3,2,0]],[[0,1,1,1],[2,2,2,2],[1,2,3,1],[1,2,3,0]],[[0,1,1,2],[2,2,2,2],[1,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,2,2,3],[1,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,2,2,2],[1,2,4,2],[0,2,1,1]],[[0,1,1,1],[2,2,2,2],[1,2,3,3],[0,2,1,1]],[[0,1,1,1],[2,2,2,2],[1,2,3,2],[0,2,1,2]],[[0,1,1,2],[2,2,2,2],[1,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,2,2,3],[1,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,2,2,2],[1,2,4,2],[0,2,2,0]],[[0,1,1,1],[2,2,2,2],[1,2,3,3],[0,2,2,0]],[[0,1,1,1],[2,2,2,2],[1,2,3,2],[0,3,2,0]],[[0,1,1,1],[2,2,2,2],[1,2,3,2],[0,2,3,0]],[[0,1,1,2],[2,2,2,2],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,3],[1,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,4,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,0,3],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,0,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,0,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,0,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[1,3,0,2],[1,2,2,2]],[[0,1,1,2],[2,2,2,2],[1,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,3],[1,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,4,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,1,3],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,1,2],[0,3,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,1,2],[0,2,3,1]],[[0,1,1,1],[2,2,2,2],[1,3,1,2],[0,2,2,2]],[[0,1,1,1],[2,2,2,2],[1,4,2,0],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,0],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,0],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,0],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,0],[1,2,2,2]],[[0,1,1,1],[2,2,2,2],[1,4,2,1],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,1],[0,3,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,1],[0,2,3,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,1],[0,2,2,2]],[[0,1,1,1],[2,2,2,2],[1,4,2,1],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,2,1],[2,2,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,2,1],[1,3,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,2,1],[1,2,3,0]],[[0,1,1,2],[2,2,2,2],[1,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,2,2,3],[1,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,2],[0,1,2,2]],[[0,1,1,1],[2,2,2,2],[1,4,2,2],[0,2,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,2,2],[0,3,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,2,2],[0,2,3,0]],[[0,1,1,2],[2,2,2,2],[1,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,2,2,3],[1,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,3],[1,0,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,2],[1,0,3,1]],[[0,1,1,1],[2,2,2,2],[1,3,2,2],[1,0,2,2]],[[0,1,1,1],[2,2,2,2],[1,4,3,0],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,4,0],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,0],[1,1,3,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,0],[1,1,2,2]],[[0,1,1,1],[2,2,2,2],[1,4,3,0],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[1,3,4,0],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,0],[2,2,1,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,0],[1,3,1,1]],[[0,1,1,1],[2,2,2,2],[1,4,3,1],[0,1,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,1],[0,1,2,2]],[[0,1,1,1],[2,2,2,2],[1,4,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,2,2],[1,3,4,1],[0,2,1,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,1],[0,3,1,1]],[[0,1,1,1],[2,2,2,2],[1,4,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,4,1],[1,0,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,1],[1,0,3,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,1],[1,0,2,2]],[[0,1,1,1],[2,2,2,2],[1,4,3,1],[1,1,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,4,1],[1,1,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,3,1],[1,1,3,0]],[[0,1,1,1],[2,2,2,2],[1,4,3,1],[1,2,0,1]],[[0,1,1,1],[2,2,2,2],[1,3,4,1],[1,2,0,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,1],[2,2,0,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,1],[1,3,0,1]],[[0,1,1,1],[2,2,2,2],[1,4,3,1],[1,2,1,0]],[[0,1,1,1],[2,2,2,2],[1,3,4,1],[1,2,1,0]],[[0,1,1,1],[2,2,2,2],[1,3,3,1],[2,2,1,0]],[[0,1,1,1],[2,2,2,2],[1,3,3,1],[1,3,1,0]],[[0,1,1,2],[2,2,2,2],[1,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,2,2,3],[1,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,2],[0,0,2,2]],[[0,1,1,2],[2,2,2,2],[1,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,2,3],[1,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,2,2],[1,4,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,2,2],[1,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,2],[0,1,1,2]],[[0,1,1,2],[2,2,2,2],[1,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,2,3],[1,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,2,2],[1,4,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,3,2],[0,1,3,0]],[[0,1,1,2],[2,2,2,2],[1,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,2,3],[1,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,2,2],[1,4,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,2,2],[1,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,2],[0,3,0,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,2],[0,2,0,2]],[[0,1,1,2],[2,2,2,2],[1,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,2,3],[1,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,2,2],[1,4,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,2,2],[1,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,2,2,2],[1,3,3,3],[0,2,1,0]],[[0,1,1,1],[2,2,2,2],[1,3,3,2],[0,3,1,0]],[[0,1,1,2],[2,2,2,2],[1,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,2,3],[1,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,2,2],[1,4,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,2,2],[1,3,4,2],[1,0,1,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,3],[1,0,1,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,2],[1,0,1,2]],[[0,1,1,2],[2,2,2,2],[1,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,2,3],[1,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,2,2],[1,4,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,4,2],[1,0,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,3,3],[1,0,2,0]],[[0,1,1,1],[2,2,2,2],[1,3,3,2],[1,0,3,0]],[[0,1,1,2],[2,2,2,2],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,2,3],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,2,2],[1,4,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,2,2],[1,3,4,2],[1,1,0,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,3],[1,1,0,1]],[[0,1,1,1],[2,2,2,2],[1,3,3,2],[1,1,0,2]],[[0,1,1,2],[2,2,2,2],[1,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,2,3],[1,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,2,2],[1,4,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,2,2],[1,3,4,2],[1,1,1,0]],[[0,1,1,1],[2,2,2,2],[1,3,3,3],[1,1,1,0]],[[0,1,1,2],[2,2,2,2],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[3,2,2,2],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,3],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[3,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,0,2,3],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,0,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,0,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[2,0,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[2,0,2,2],[1,2,2,2]],[[0,1,1,1],[3,2,2,2],[2,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[3,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,0,4,1],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,0,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,0,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[2,0,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[2,0,3,1],[1,2,2,2]],[[0,1,1,2],[2,2,2,2],[2,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,2,3],[2,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[2,0,4,2],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[2,0,3,3],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[2,0,3,2],[1,2,1,2]],[[0,1,1,2],[2,2,2,2],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[3,2,2,2],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,3],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[3,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,0,4,2],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,0,3,3],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,0,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,0,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,2,2],[2,0,3,2],[1,2,3,0]],[[0,1,1,1],[3,2,2,2],[2,1,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[3,1,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,1,4,0],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,1,3,0],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,1,3,0],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[2,1,3,0],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[2,1,3,0],[1,2,2,2]],[[0,1,1,1],[3,2,2,2],[2,1,3,1],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[3,1,3,1],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,1,4,1],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,1,3,1],[2,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,1,3,1],[1,3,2,0]],[[0,1,1,1],[2,2,2,2],[2,1,3,1],[1,2,3,0]],[[0,1,1,2],[2,2,2,2],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[3,2,2,2],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,3],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[3,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,2,0,3],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,2,0,2],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,2,0,2],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[2,2,0,2],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[2,2,0,2],[1,2,2,2]],[[0,1,1,1],[3,2,2,2],[2,2,2,0],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[3,2,2,0],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,2,2,0],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,2,2,0],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[2,2,2,0],[1,2,3,1]],[[0,1,1,1],[2,2,2,2],[2,2,2,0],[1,2,2,2]],[[0,1,1,1],[3,2,2,2],[2,2,2,1],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[3,2,2,1],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,2,2,1],[2,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,2,2,1],[1,3,2,0]],[[0,1,1,1],[2,2,2,2],[2,2,2,1],[1,2,3,0]],[[0,1,1,1],[2,2,2,2],[2,2,4,0],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,2,3,0],[0,3,2,1]],[[0,1,1,1],[2,2,2,2],[2,2,3,0],[0,2,3,1]],[[0,1,1,1],[2,2,2,2],[2,2,3,0],[0,2,2,2]],[[0,1,1,1],[3,2,2,2],[2,2,3,0],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[3,2,3,0],[1,2,1,1]],[[0,1,1,1],[2,2,2,2],[2,2,3,0],[2,2,1,1]],[[0,1,1,1],[2,2,2,2],[2,2,3,0],[1,3,1,1]],[[0,1,1,1],[2,2,2,2],[2,2,4,1],[0,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,2,3,1],[0,3,2,0]],[[0,1,1,1],[2,2,2,2],[2,2,3,1],[0,2,3,0]],[[0,1,1,1],[3,2,2,2],[2,2,3,1],[1,2,0,1]],[[0,1,1,1],[2,2,2,2],[3,2,3,1],[1,2,0,1]],[[0,1,1,1],[2,2,2,2],[2,2,3,1],[2,2,0,1]],[[0,1,1,1],[2,2,2,2],[2,2,3,1],[1,3,0,1]],[[0,1,1,1],[3,2,2,2],[2,2,3,1],[1,2,1,0]],[[0,1,1,1],[2,2,2,2],[3,2,3,1],[1,2,1,0]],[[0,1,1,1],[2,2,2,2],[2,2,3,1],[2,2,1,0]],[[0,1,1,1],[2,2,2,2],[2,2,3,1],[1,3,1,0]],[[0,1,1,2],[2,2,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[3,2,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,3],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[3,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,4,0,2],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,0,3],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,0,2],[0,3,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,0,2],[0,2,3,1]],[[0,1,1,1],[2,2,2,2],[2,3,0,2],[0,2,2,2]],[[0,1,1,1],[3,2,2,2],[2,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[3,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[2,4,0,2],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,0,2],[2,1,2,1]],[[0,1,1,1],[2,2,2,2],[3,3,1,0],[1,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,1,0],[2,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,1,0],[1,3,2,1]],[[0,1,1,1],[2,2,2,2],[3,3,1,1],[1,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,3,1,1],[2,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,3,1,1],[1,3,2,0]],[[0,1,1,1],[3,2,2,2],[2,3,2,0],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[3,3,2,0],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,4,2,0],[0,2,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,2,0],[0,3,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,2,0],[0,2,3,1]],[[0,1,1,1],[2,2,2,2],[2,3,2,0],[0,2,2,2]],[[0,1,1,1],[3,2,2,2],[2,3,2,0],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[3,3,2,0],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[2,4,2,0],[1,1,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,2,0],[2,1,2,1]],[[0,1,1,1],[3,2,2,2],[2,3,2,1],[0,2,2,0]],[[0,1,1,1],[2,2,2,2],[3,3,2,1],[0,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,4,2,1],[0,2,2,0]],[[0,1,1,1],[2,2,2,2],[2,3,2,1],[0,3,2,0]],[[0,1,1,1],[2,2,2,2],[2,3,2,1],[0,2,3,0]],[[0,1,1,1],[3,2,2,2],[2,3,2,1],[1,1,2,0]],[[0,1,1,1],[2,2,2,2],[3,3,2,1],[1,1,2,0]],[[0,1,1,1],[2,2,2,2],[2,4,2,1],[1,1,2,0]],[[0,1,1,1],[2,2,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,3,1,3],[1,0,0,2],[1,2,2,1]],[[1,2,2,1],[3,3,1,2],[1,0,0,2],[1,2,2,1]],[[1,2,2,2],[2,3,1,2],[1,0,0,2],[1,2,2,1]],[[1,2,3,1],[2,3,1,2],[1,0,0,2],[1,2,2,1]],[[1,3,2,1],[2,3,1,2],[1,0,0,2],[1,2,2,1]],[[2,2,2,1],[2,3,1,2],[1,0,0,2],[1,2,2,1]],[[0,1,1,1],[3,2,2,2],[2,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,2,2,2],[3,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,2,2,2],[2,4,3,0],[0,1,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,4,0],[0,1,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,3,0],[0,1,3,1]],[[0,1,1,1],[2,2,2,2],[2,3,3,0],[0,1,2,2]],[[0,1,1,1],[3,2,2,2],[2,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,2,2,2],[3,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,2,2,2],[2,4,3,0],[0,2,1,1]],[[0,1,1,1],[2,2,2,2],[2,3,4,0],[0,2,1,1]],[[0,1,1,1],[2,2,2,2],[2,3,3,0],[0,3,1,1]],[[0,1,1,1],[3,2,2,2],[2,3,3,0],[1,0,2,1]],[[0,1,1,1],[2,2,2,2],[3,3,3,0],[1,0,2,1]],[[0,1,1,1],[2,2,2,2],[2,4,3,0],[1,0,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,4,0],[1,0,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,3,0],[2,0,2,1]],[[0,1,1,1],[2,2,2,2],[2,3,3,0],[1,0,3,1]],[[0,1,1,1],[2,2,2,2],[2,3,3,0],[1,0,2,2]],[[0,1,1,1],[3,2,2,2],[2,3,3,0],[1,1,1,1]],[[0,1,1,1],[2,2,2,2],[3,3,3,0],[1,1,1,1]],[[0,1,1,1],[2,2,2,2],[2,4,3,0],[1,1,1,1]],[[0,1,1,1],[2,2,2,2],[2,3,4,0],[1,1,1,1]],[[0,1,1,1],[2,2,2,2],[2,3,3,0],[2,1,1,1]],[[0,1,1,1],[3,2,2,2],[2,3,3,0],[1,2,0,1]],[[0,1,1,1],[2,2,2,2],[3,3,3,0],[1,2,0,1]],[[0,1,1,1],[2,2,2,2],[2,4,3,0],[1,2,0,1]],[[0,1,1,1],[2,2,2,2],[2,3,3,0],[2,2,0,1]],[[0,1,1,1],[3,2,2,2],[2,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,2,2,2],[3,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,2,2,2],[2,4,3,1],[0,1,1,1]],[[0,1,1,1],[2,2,2,2],[2,3,4,1],[0,1,1,1]],[[0,1,1,1],[3,2,2,2],[2,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,2,2,2],[3,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,2,2,2],[2,4,3,1],[0,1,2,0]],[[0,1,1,1],[2,2,2,2],[2,3,4,1],[0,1,2,0]],[[0,1,1,1],[2,2,2,2],[2,3,3,1],[0,1,3,0]],[[0,1,1,1],[3,2,2,2],[2,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,2,2,2],[3,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,2,2,2],[2,4,3,1],[0,2,0,1]],[[0,1,1,1],[2,2,2,2],[2,3,4,1],[0,2,0,1]],[[0,1,1,1],[2,2,2,2],[2,3,3,1],[0,3,0,1]],[[0,1,1,1],[3,2,2,2],[2,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,2,2,2],[3,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,2,2,2],[2,4,3,1],[0,2,1,0]],[[0,1,1,1],[2,2,2,2],[2,3,4,1],[0,2,1,0]],[[0,1,1,1],[2,2,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,3,1,2],[0,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,3,1,3],[0,3,3,2],[0,0,0,1]],[[0,1,1,1],[3,2,2,2],[2,3,3,1],[1,0,1,1]],[[0,1,1,1],[2,2,2,2],[3,3,3,1],[1,0,1,1]],[[0,1,1,1],[2,2,2,2],[2,4,3,1],[1,0,1,1]],[[0,1,1,1],[2,2,2,2],[2,3,4,1],[1,0,1,1]],[[0,1,1,1],[2,2,2,2],[2,3,3,1],[2,0,1,1]],[[0,1,1,1],[3,2,2,2],[2,3,3,1],[1,0,2,0]],[[0,1,1,1],[2,2,2,2],[3,3,3,1],[1,0,2,0]],[[0,1,1,1],[2,2,2,2],[2,4,3,1],[1,0,2,0]],[[0,1,1,1],[2,2,2,2],[2,3,4,1],[1,0,2,0]],[[0,1,1,1],[2,2,2,2],[2,3,3,1],[2,0,2,0]],[[0,1,1,1],[2,2,2,2],[2,3,3,1],[1,0,3,0]],[[0,1,1,1],[3,2,2,2],[2,3,3,1],[1,1,0,1]],[[0,1,1,1],[2,2,2,2],[3,3,3,1],[1,1,0,1]],[[0,1,1,1],[2,2,2,2],[2,4,3,1],[1,1,0,1]],[[0,1,1,1],[2,2,2,2],[2,3,4,1],[1,1,0,1]],[[0,1,1,1],[2,2,2,2],[2,3,3,1],[2,1,0,1]],[[0,1,1,1],[3,2,2,2],[2,3,3,1],[1,1,1,0]],[[0,1,1,1],[2,2,2,2],[3,3,3,1],[1,1,1,0]],[[0,1,1,1],[2,2,2,2],[2,4,3,1],[1,1,1,0]],[[0,1,1,1],[2,2,2,2],[2,3,4,1],[1,1,1,0]],[[0,1,1,1],[2,2,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[2,4,1,2],[0,3,3,2],[0,0,0,1]],[[1,2,2,2],[2,3,1,2],[0,3,3,2],[0,0,0,1]],[[1,2,3,1],[2,3,1,2],[0,3,3,2],[0,0,0,1]],[[1,3,2,1],[2,3,1,2],[0,3,3,2],[0,0,0,1]],[[2,2,2,1],[2,3,1,2],[0,3,3,2],[0,0,0,1]],[[0,1,1,1],[3,2,2,2],[2,3,3,1],[1,2,0,0]],[[0,1,1,1],[2,2,2,2],[3,3,3,1],[1,2,0,0]],[[0,1,1,1],[2,2,2,2],[2,4,3,1],[1,2,0,0]],[[0,1,1,1],[2,2,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,3,1,3],[0,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,4,1,2],[0,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,3,1,2],[0,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,3,1,2],[0,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,1,2],[0,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,1,2],[0,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,3,1,3],[0,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,4,1,2],[0,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,3,1,2],[0,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,3,1,2],[0,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,1,2],[0,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,1,2],[0,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,3,1,3],[0,3,3,1],[0,0,2,0]],[[1,2,2,1],[2,4,1,2],[0,3,3,1],[0,0,2,0]],[[1,2,2,2],[2,3,1,2],[0,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,3,1,2],[0,3,3,1],[0,0,2,0]],[[1,3,2,1],[2,3,1,2],[0,3,3,1],[0,0,2,0]],[[2,2,2,1],[2,3,1,2],[0,3,3,1],[0,0,2,0]],[[1,2,2,1],[2,3,1,3],[0,3,3,1],[0,0,1,1]],[[1,2,2,1],[2,4,1,2],[0,3,3,1],[0,0,1,1]],[[1,2,2,2],[2,3,1,2],[0,3,3,1],[0,0,1,1]],[[1,2,3,1],[2,3,1,2],[0,3,3,1],[0,0,1,1]],[[1,3,2,1],[2,3,1,2],[0,3,3,1],[0,0,1,1]],[[2,2,2,1],[2,3,1,2],[0,3,3,1],[0,0,1,1]],[[1,2,2,1],[2,3,1,3],[0,3,3,0],[0,0,2,1]],[[1,2,2,1],[2,4,1,2],[0,3,3,0],[0,0,2,1]],[[1,2,2,2],[2,3,1,2],[0,3,3,0],[0,0,2,1]],[[1,2,3,1],[2,3,1,2],[0,3,3,0],[0,0,2,1]],[[1,3,2,1],[2,3,1,2],[0,3,3,0],[0,0,2,1]],[[2,2,2,1],[2,3,1,2],[0,3,3,0],[0,0,2,1]],[[0,1,1,1],[2,2,3,0],[0,2,4,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,0],[0,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,0],[0,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,0],[0,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,0],[0,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,2,3,0],[0,4,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,0],[0,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,0],[0,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,0],[0,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,0],[0,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,2,3,0],[0,4,3,2],[1,1,2,1]],[[0,1,1,1],[2,2,3,0],[0,3,4,2],[1,1,2,1]],[[0,1,1,1],[2,2,3,0],[0,3,3,2],[1,1,3,1]],[[0,1,1,1],[2,2,3,0],[0,3,3,2],[1,1,2,2]],[[0,1,1,1],[2,2,3,0],[0,4,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,0],[0,3,4,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,0],[0,3,3,2],[2,2,1,1]],[[0,1,1,1],[2,2,3,0],[0,3,3,2],[1,3,1,1]],[[0,1,1,1],[2,2,3,0],[1,2,4,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,0],[1,2,3,2],[0,3,2,1]],[[0,1,1,1],[2,2,3,0],[1,2,3,2],[0,2,3,1]],[[0,1,1,1],[2,2,3,0],[1,2,3,2],[0,2,2,2]],[[0,1,1,1],[2,2,3,0],[1,4,2,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,0],[1,3,2,2],[0,3,2,1]],[[0,1,1,1],[2,2,3,0],[1,3,2,2],[0,2,3,1]],[[0,1,1,1],[2,2,3,0],[1,3,2,2],[0,2,2,2]],[[0,1,1,1],[2,2,3,0],[1,4,3,2],[0,1,2,1]],[[0,1,1,1],[2,2,3,0],[1,3,4,2],[0,1,2,1]],[[0,1,1,1],[2,2,3,0],[1,3,3,2],[0,1,3,1]],[[0,1,1,1],[2,2,3,0],[1,3,3,2],[0,1,2,2]],[[0,1,1,1],[2,2,3,0],[1,4,3,2],[0,2,1,1]],[[0,1,1,1],[2,2,3,0],[1,3,4,2],[0,2,1,1]],[[0,1,1,1],[2,2,3,0],[1,3,3,2],[0,3,1,1]],[[0,1,1,1],[2,2,3,0],[1,4,3,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,0],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,0],[1,3,3,2],[1,0,3,1]],[[0,1,1,1],[2,2,3,0],[1,3,3,2],[1,0,2,2]],[[0,1,1,1],[2,2,3,0],[3,0,3,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,0],[2,0,4,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,0],[2,0,3,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,0],[2,0,3,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,0],[2,0,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,3,1,2],[0,3,2,3],[0,0,2,0]],[[0,1,1,1],[2,2,3,1],[0,1,3,3],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,1,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,1],[0,1,3,2],[1,2,2,2]],[[0,1,1,1],[2,2,3,1],[0,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,1],[0,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,1],[0,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,2,4,1],[0,2,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,3,1],[0,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,3,1],[0,2,3,1],[1,2,2,2]],[[0,1,1,1],[2,2,4,1],[0,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[0,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[0,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[0,2,3,2],[1,2,1,2]],[[0,1,1,1],[2,2,4,1],[0,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[0,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[0,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[0,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,3,1],[0,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,3,1],[0,2,3,2],[1,2,3,0]],[[0,1,1,1],[2,2,3,1],[0,4,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,1,3],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,1],[0,3,1,2],[1,2,2,2]],[[0,1,1,1],[2,2,3,1],[0,4,2,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,2,3,1],[0,3,2,1],[1,2,2,2]],[[0,1,1,1],[2,2,3,1],[0,3,2,3],[1,1,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,2,2],[1,1,3,1]],[[0,1,1,1],[2,2,3,1],[0,3,2,2],[1,1,2,2]],[[0,1,1,1],[2,2,3,1],[0,4,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[0,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,2,3,1],[0,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,2,3,1],[0,3,2,2],[1,2,3,0]],[[0,1,1,1],[2,2,3,1],[0,4,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,0],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,0],[1,3,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,0],[1,2,3,1]],[[0,1,1,1],[2,2,4,1],[0,3,3,1],[1,1,2,1]],[[0,1,1,1],[2,2,3,1],[0,4,3,1],[1,1,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,4,1],[1,1,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,1],[1,1,3,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,1],[1,1,2,2]],[[0,1,1,1],[2,2,4,1],[0,3,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[0,4,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[0,3,4,1],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,1],[1,3,1,1]],[[0,1,1,1],[2,2,4,1],[0,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,3],[1,0,2,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,2],[1,0,2,2]],[[0,1,1,1],[2,2,4,1],[0,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,2,3,1],[0,4,3,2],[1,1,1,1]],[[0,1,1,1],[2,2,3,1],[0,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,3],[1,1,1,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,2],[1,1,1,2]],[[0,1,1,1],[2,2,4,1],[0,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,3,1],[0,4,3,2],[1,1,2,0]],[[0,1,1,1],[2,2,3,1],[0,3,4,2],[1,1,2,0]],[[0,1,1,1],[2,2,3,1],[0,3,3,3],[1,1,2,0]],[[0,1,1,1],[2,2,3,1],[0,3,3,2],[1,1,3,0]],[[0,1,1,1],[2,2,4,1],[0,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,3,1],[0,4,3,2],[1,2,0,1]],[[0,1,1,1],[2,2,3,1],[0,3,4,2],[1,2,0,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,3],[1,2,0,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,2,3,1],[0,3,3,2],[1,2,0,2]],[[0,1,1,1],[2,2,4,1],[0,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,3,1],[0,4,3,2],[1,2,1,0]],[[0,1,1,1],[2,2,3,1],[0,3,4,2],[1,2,1,0]],[[0,1,1,1],[2,2,3,1],[0,3,3,3],[1,2,1,0]],[[0,1,1,1],[2,2,3,1],[0,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,2,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,1,3],[0,3,2,2],[0,0,2,0]],[[1,2,2,1],[2,4,1,2],[0,3,2,2],[0,0,2,0]],[[1,2,2,2],[2,3,1,2],[0,3,2,2],[0,0,2,0]],[[1,2,3,1],[2,3,1,2],[0,3,2,2],[0,0,2,0]],[[1,3,2,1],[2,3,1,2],[0,3,2,2],[0,0,2,0]],[[2,2,2,1],[2,3,1,2],[0,3,2,2],[0,0,2,0]],[[1,2,2,1],[2,3,1,2],[0,3,2,2],[0,0,1,2]],[[1,2,2,1],[2,3,1,2],[0,3,2,3],[0,0,1,1]],[[0,1,1,1],[2,2,3,1],[1,1,3,3],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,1,3,2],[0,2,3,1]],[[0,1,1,1],[2,2,3,1],[1,1,3,2],[0,2,2,2]],[[0,1,1,1],[2,2,3,1],[1,2,2,3],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,2,2,2],[0,3,2,1]],[[0,1,1,1],[2,2,3,1],[1,2,2,2],[0,2,3,1]],[[0,1,1,1],[2,2,3,1],[1,2,2,2],[0,2,2,2]],[[0,1,1,1],[2,2,4,1],[1,2,3,1],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,2,4,1],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,2,3,1],[0,3,2,1]],[[0,1,1,1],[2,2,3,1],[1,2,3,1],[0,2,3,1]],[[0,1,1,1],[2,2,3,1],[1,2,3,1],[0,2,2,2]],[[0,1,1,1],[2,2,4,1],[1,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,2,3,1],[1,2,4,2],[0,2,1,1]],[[0,1,1,1],[2,2,3,1],[1,2,3,3],[0,2,1,1]],[[0,1,1,1],[2,2,3,1],[1,2,3,2],[0,2,1,2]],[[0,1,1,1],[2,2,4,1],[1,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,2,3,1],[1,2,4,2],[0,2,2,0]],[[0,1,1,1],[2,2,3,1],[1,2,3,3],[0,2,2,0]],[[0,1,1,1],[2,2,3,1],[1,2,3,2],[0,3,2,0]],[[0,1,1,1],[2,2,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,3,1,3],[0,3,2,2],[0,0,1,1]],[[1,2,2,1],[2,4,1,2],[0,3,2,2],[0,0,1,1]],[[1,2,2,2],[2,3,1,2],[0,3,2,2],[0,0,1,1]],[[1,2,3,1],[2,3,1,2],[0,3,2,2],[0,0,1,1]],[[1,3,2,1],[2,3,1,2],[0,3,2,2],[0,0,1,1]],[[2,2,2,1],[2,3,1,2],[0,3,2,2],[0,0,1,1]],[[0,1,1,1],[2,2,3,1],[1,4,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,0,3],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,0,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,0,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,0,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,1],[1,3,0,2],[1,2,2,2]],[[0,1,1,1],[2,2,3,1],[1,4,1,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,1,1],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,1,1],[1,3,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,1,1],[1,2,3,1]],[[0,1,1,1],[2,2,3,1],[1,3,1,1],[1,2,2,2]],[[0,1,1,1],[2,2,3,1],[1,4,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,1,3],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,1,2],[0,3,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,1,2],[0,2,3,1]],[[0,1,1,1],[2,2,3,1],[1,3,1,2],[0,2,2,2]],[[0,1,1,1],[2,2,3,1],[1,4,1,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[1,3,1,2],[2,2,2,0]],[[0,1,1,1],[2,2,3,1],[1,3,1,2],[1,3,2,0]],[[0,1,1,1],[2,2,3,1],[1,3,1,2],[1,2,3,0]],[[0,1,1,1],[2,2,3,1],[1,4,2,1],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,1],[0,3,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,1],[0,2,3,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,1],[0,2,2,2]],[[0,1,1,1],[2,2,3,1],[1,4,2,1],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,1],[2,2,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,1],[1,3,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,2],[0,1,2,2]],[[0,1,1,1],[2,2,3,1],[1,4,2,2],[0,2,2,0]],[[0,1,1,1],[2,2,3,1],[1,3,2,2],[0,3,2,0]],[[0,1,1,1],[2,2,3,1],[1,3,2,2],[0,2,3,0]],[[0,1,1,1],[2,2,3,1],[1,3,2,3],[1,0,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,2],[1,0,3,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,2],[1,0,2,2]],[[0,1,1,1],[2,2,3,1],[1,4,2,2],[1,2,0,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,2],[2,2,0,1]],[[0,1,1,1],[2,2,3,1],[1,3,2,2],[1,3,0,1]],[[0,1,1,1],[2,2,3,1],[1,4,2,2],[1,2,1,0]],[[0,1,1,1],[2,2,3,1],[1,3,2,2],[2,2,1,0]],[[0,1,1,1],[2,2,3,1],[1,3,2,2],[1,3,1,0]],[[0,1,1,1],[2,2,3,1],[1,4,3,0],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,0],[0,3,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,0],[0,2,3,1]],[[0,1,1,1],[2,2,4,1],[1,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,2,3,1],[1,4,3,1],[0,1,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,1],[0,1,2,2]],[[0,1,1,1],[2,2,4,1],[1,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,3,1],[1,4,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,4,1],[0,2,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,1],[0,3,1,1]],[[0,1,1,1],[2,2,4,1],[1,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,3,1],[1,4,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,4,1],[1,0,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,1],[1,0,3,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,1],[1,0,2,2]],[[0,1,1,1],[2,2,4,1],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,3,1],[1,4,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,4,1],[1,1,1,1]],[[0,1,1,1],[2,2,4,1],[1,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,2],[0,0,2,2]],[[0,1,1,1],[2,2,4,1],[1,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,3,1],[1,4,3,2],[0,1,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,2],[0,1,1,2]],[[0,1,1,1],[2,2,4,1],[1,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,3,1],[1,4,3,2],[0,1,2,0]],[[0,1,1,1],[2,2,3,1],[1,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,2,3,1],[1,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,2,3,1],[1,3,3,2],[0,1,3,0]],[[0,1,1,1],[2,2,4,1],[1,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,3,1],[1,4,3,2],[0,2,0,1]],[[0,1,1,1],[2,2,3,1],[1,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,2],[0,3,0,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,2],[0,2,0,2]],[[0,1,1,1],[2,2,4,1],[1,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,3,1],[1,4,3,2],[0,2,1,0]],[[0,1,1,1],[2,2,3,1],[1,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,2,3,1],[1,3,3,3],[0,2,1,0]],[[0,1,1,1],[2,2,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,4,1,2],[0,3,2,1],[1,2,0,0]],[[0,1,1,1],[2,2,4,1],[1,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,3,1],[1,4,3,2],[1,0,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,4,2],[1,0,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,3],[1,0,1,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,2],[1,0,1,2]],[[0,1,1,1],[2,2,4,1],[1,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,3,1],[1,4,3,2],[1,0,2,0]],[[0,1,1,1],[2,2,3,1],[1,3,4,2],[1,0,2,0]],[[0,1,1,1],[2,2,3,1],[1,3,3,3],[1,0,2,0]],[[0,1,1,1],[2,2,3,1],[1,3,3,2],[1,0,3,0]],[[0,1,1,1],[2,2,4,1],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,1],[1,4,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,1],[1,3,4,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,3],[1,1,0,1]],[[0,1,1,1],[2,2,3,1],[1,3,3,2],[1,1,0,2]],[[0,1,1,1],[2,2,4,1],[1,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,3,1],[1,4,3,2],[1,1,1,0]],[[0,1,1,1],[2,2,3,1],[1,3,4,2],[1,1,1,0]],[[0,1,1,1],[2,2,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,2],[2,3,1,2],[0,3,2,1],[1,2,0,0]],[[1,2,3,1],[2,3,1,2],[0,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,1,2],[0,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,1,2],[0,3,2,1],[1,2,0,0]],[[1,2,2,1],[2,3,1,3],[0,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,4,1,2],[0,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,3,1,2],[0,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,3,1,2],[0,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,3,1,2],[0,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,1,2],[0,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,3,1,3],[0,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,4,1,2],[0,3,2,1],[1,1,0,1]],[[0,1,1,1],[3,2,3,1],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[3,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,0,2,3],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,0,2,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,0,2,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,1],[2,0,2,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,1],[2,0,2,2],[1,2,2,2]],[[0,1,1,1],[3,2,3,1],[2,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,4,1],[2,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[3,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,0,4,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,0,3,1],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,0,3,1],[1,3,2,1]],[[0,1,1,1],[2,2,3,1],[2,0,3,1],[1,2,3,1]],[[0,1,1,1],[2,2,3,1],[2,0,3,1],[1,2,2,2]],[[0,1,1,1],[2,2,4,1],[2,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[2,0,4,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[2,0,3,3],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[2,0,3,2],[1,2,1,2]],[[0,1,1,1],[3,2,3,1],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,4,1],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[3,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[2,0,4,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[2,0,3,3],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[2,0,3,2],[2,2,2,0]],[[0,1,1,1],[2,2,3,1],[2,0,3,2],[1,3,2,0]],[[0,1,1,1],[2,2,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,2],[2,3,1,2],[0,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,3,1,2],[0,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,1,2],[0,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,1,2],[0,3,2,1],[1,1,0,1]],[[0,1,1,1],[3,2,3,1],[2,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[3,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,2,0,3],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,2,0,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,2,0,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,1],[2,2,0,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,1],[2,2,0,2],[1,2,2,2]],[[0,1,1,1],[3,2,3,1],[2,2,1,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[3,2,1,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,2,1,1],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,2,1,1],[1,3,2,1]],[[0,1,1,1],[2,2,3,1],[2,2,1,1],[1,2,3,1]],[[0,1,1,1],[2,2,3,1],[2,2,1,1],[1,2,2,2]],[[0,1,1,1],[3,2,3,1],[2,2,1,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[3,2,1,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[2,2,1,2],[2,2,2,0]],[[0,1,1,1],[2,2,3,1],[2,2,1,2],[1,3,2,0]],[[0,1,1,1],[2,2,3,1],[2,2,1,2],[1,2,3,0]],[[0,1,1,1],[3,2,3,1],[2,2,2,1],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[3,2,2,1],[1,2,1,1]],[[0,1,1,1],[2,2,3,1],[2,2,2,1],[2,2,1,1]],[[0,1,1,1],[2,2,3,1],[2,2,2,1],[1,3,1,1]],[[0,1,1,1],[3,2,3,1],[2,2,2,2],[1,2,0,1]],[[0,1,1,1],[2,2,3,1],[3,2,2,2],[1,2,0,1]],[[0,1,1,1],[2,2,3,1],[2,2,2,2],[2,2,0,1]],[[0,1,1,1],[2,2,3,1],[2,2,2,2],[1,3,0,1]],[[0,1,1,1],[3,2,3,1],[2,2,2,2],[1,2,1,0]],[[0,1,1,1],[2,2,3,1],[3,2,2,2],[1,2,1,0]],[[0,1,1,1],[2,2,3,1],[2,2,2,2],[2,2,1,0]],[[0,1,1,1],[2,2,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[2,3,1,3],[0,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,4,1,2],[0,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,3,1,2],[0,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,3,1,2],[0,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,1,2],[0,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,1,2],[0,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,3,1,3],[0,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,4,1,2],[0,3,2,1],[1,0,1,1]],[[1,2,2,2],[2,3,1,2],[0,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,3,1,2],[0,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,1,2],[0,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,1,2],[0,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,3,1,3],[0,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,4,1,2],[0,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,3,1,2],[0,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,3,1,2],[0,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[0,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,1,2],[0,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,3,1,3],[0,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,4,1,2],[0,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,3,1,2],[0,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,3,1,2],[0,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,1,2],[0,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,1,2],[0,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,3,1,3],[0,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,4,1,2],[0,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,3,1,2],[0,3,2,1],[0,1,2,0]],[[0,1,1,1],[2,2,3,1],[3,3,0,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,3,0,1],[2,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,3,0,1],[1,3,2,1]],[[0,1,1,1],[3,2,3,1],[2,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[3,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,4,0,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,3,0,3],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,3,0,2],[0,3,2,1]],[[0,1,1,1],[2,2,3,1],[2,3,0,2],[0,2,3,1]],[[0,1,1,1],[2,2,3,1],[2,3,0,2],[0,2,2,2]],[[0,1,1,1],[3,2,3,1],[2,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,2,3,1],[3,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,2,3,1],[2,4,0,2],[1,1,2,1]],[[0,1,1,1],[2,2,3,1],[2,3,0,2],[2,1,2,1]],[[0,1,1,1],[2,2,3,1],[3,3,0,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,1],[2,3,0,2],[2,2,2,0]],[[0,1,1,1],[2,2,3,1],[2,3,0,2],[1,3,2,0]],[[0,1,1,1],[3,2,3,1],[2,3,1,1],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[3,3,1,1],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,4,1,1],[0,2,2,1]],[[0,1,1,1],[2,2,3,1],[2,3,1,1],[0,3,2,1]],[[0,1,1,1],[2,2,3,1],[2,3,1,1],[0,2,3,1]],[[0,1,1,1],[2,2,3,1],[2,3,1,1],[0,2,2,2]],[[0,1,1,1],[3,2,3,1],[2,3,1,1],[1,1,2,1]],[[0,1,1,1],[2,2,3,1],[3,3,1,1],[1,1,2,1]],[[0,1,1,1],[2,2,3,1],[2,4,1,1],[1,1,2,1]],[[0,1,1,1],[2,2,3,1],[2,3,1,1],[2,1,2,1]],[[0,1,1,1],[3,2,3,1],[2,3,1,2],[0,2,2,0]],[[0,1,1,1],[2,2,3,1],[3,3,1,2],[0,2,2,0]],[[0,1,1,1],[2,2,3,1],[2,4,1,2],[0,2,2,0]],[[0,1,1,1],[2,2,3,1],[2,3,1,2],[0,3,2,0]],[[0,1,1,1],[2,2,3,1],[2,3,1,2],[0,2,3,0]],[[0,1,1,1],[3,2,3,1],[2,3,1,2],[1,1,2,0]],[[0,1,1,1],[2,2,3,1],[3,3,1,2],[1,1,2,0]],[[0,1,1,1],[2,2,3,1],[2,4,1,2],[1,1,2,0]],[[0,1,1,1],[2,2,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,3,1],[2,3,1,2],[0,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,1,2],[0,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,1,2],[0,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,3,1,3],[0,3,2,1],[0,1,1,1]],[[1,2,2,1],[2,4,1,2],[0,3,2,1],[0,1,1,1]],[[1,2,2,2],[2,3,1,2],[0,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,3,1,2],[0,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,3,1,2],[0,3,2,1],[0,1,1,1]],[[0,1,1,1],[3,2,3,1],[2,3,2,1],[0,1,2,1]],[[0,1,1,1],[2,2,3,1],[3,3,2,1],[0,1,2,1]],[[0,1,1,1],[2,2,3,1],[2,4,2,1],[0,1,2,1]],[[0,1,1,1],[3,2,3,1],[2,3,2,1],[0,2,1,1]],[[0,1,1,1],[2,2,3,1],[3,3,2,1],[0,2,1,1]],[[0,1,1,1],[2,2,3,1],[2,4,2,1],[0,2,1,1]],[[0,1,1,1],[2,2,3,1],[2,3,2,1],[0,3,1,1]],[[0,1,1,1],[3,2,3,1],[2,3,2,1],[1,0,2,1]],[[0,1,1,1],[2,2,3,1],[3,3,2,1],[1,0,2,1]],[[0,1,1,1],[2,2,3,1],[2,4,2,1],[1,0,2,1]],[[0,1,1,1],[2,2,3,1],[2,3,2,1],[2,0,2,1]],[[0,1,1,1],[3,2,3,1],[2,3,2,1],[1,1,1,1]],[[0,1,1,1],[2,2,3,1],[3,3,2,1],[1,1,1,1]],[[0,1,1,1],[2,2,3,1],[2,4,2,1],[1,1,1,1]],[[0,1,1,1],[2,2,3,1],[2,3,2,1],[2,1,1,1]],[[0,1,1,1],[2,2,3,1],[3,3,2,1],[1,2,0,1]],[[0,1,1,1],[2,2,3,1],[2,4,2,1],[1,2,0,1]],[[0,1,1,1],[2,2,3,1],[2,3,2,1],[2,2,0,1]],[[2,2,2,1],[2,3,1,2],[0,3,2,1],[0,1,1,1]],[[0,1,1,1],[3,2,3,1],[2,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,2,3,1],[3,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,2,3,1],[2,4,2,2],[0,1,1,1]],[[0,1,1,1],[3,2,3,1],[2,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,2,3,1],[3,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,2,3,1],[2,4,2,2],[0,1,2,0]],[[0,1,1,1],[3,2,3,1],[2,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,2,3,1],[3,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,2,3,1],[2,4,2,2],[0,2,0,1]],[[0,1,1,1],[2,2,3,1],[2,3,2,2],[0,3,0,1]],[[0,1,1,1],[3,2,3,1],[2,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,2,3,1],[3,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,2,3,1],[2,4,2,2],[0,2,1,0]],[[0,1,1,1],[2,2,3,1],[2,3,2,2],[0,3,1,0]],[[0,1,1,1],[3,2,3,1],[2,3,2,2],[1,0,1,1]],[[0,1,1,1],[2,2,3,1],[3,3,2,2],[1,0,1,1]],[[0,1,1,1],[2,2,3,1],[2,4,2,2],[1,0,1,1]],[[0,1,1,1],[2,2,3,1],[2,3,2,2],[2,0,1,1]],[[0,1,1,1],[3,2,3,1],[2,3,2,2],[1,0,2,0]],[[0,1,1,1],[2,2,3,1],[3,3,2,2],[1,0,2,0]],[[0,1,1,1],[2,2,3,1],[2,4,2,2],[1,0,2,0]],[[0,1,1,1],[2,2,3,1],[2,3,2,2],[2,0,2,0]],[[0,1,1,1],[3,2,3,1],[2,3,2,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,1],[3,3,2,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,1],[2,4,2,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,1],[2,3,2,2],[2,1,0,1]],[[0,1,1,1],[3,2,3,1],[2,3,2,2],[1,1,1,0]],[[0,1,1,1],[2,2,3,1],[3,3,2,2],[1,1,1,0]],[[0,1,1,1],[2,2,3,1],[2,4,2,2],[1,1,1,0]],[[0,1,1,1],[2,2,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,2,1],[3,3,1,2],[0,3,2,0],[1,2,1,0]],[[1,3,2,1],[2,3,1,2],[0,3,2,0],[1,2,1,0]],[[2,2,2,1],[2,3,1,2],[0,3,2,0],[1,2,1,0]],[[0,1,1,1],[3,2,3,1],[2,3,2,2],[1,2,0,0]],[[0,1,1,1],[2,2,3,1],[3,3,2,2],[1,2,0,0]],[[0,1,1,1],[2,2,3,1],[2,4,2,2],[1,2,0,0]],[[0,1,1,1],[2,2,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[2,4,1,2],[0,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,3,1,2],[0,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,3,1,2],[0,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,1,2],[0,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,1,2],[0,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,3,1,3],[0,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,4,1,2],[0,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,3,1,2],[0,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,3,1,2],[0,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,1,2],[0,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,1,2],[0,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,3,1,3],[0,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,4,1,2],[0,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,3,1,2],[0,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,3,1,2],[0,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,1,2],[0,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,1,2],[0,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,3,1,3],[0,3,2,0],[0,1,2,1]],[[1,2,2,1],[2,4,1,2],[0,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,3,1,2],[0,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,3,1,2],[0,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,1,2],[0,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,1,2],[0,3,2,0],[0,1,2,1]],[[1,2,2,1],[2,4,1,2],[0,3,1,2],[1,2,0,0]],[[1,2,2,2],[2,3,1,2],[0,3,1,2],[1,2,0,0]],[[1,2,3,1],[2,3,1,2],[0,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,3,1,2],[0,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,3,1,2],[0,3,1,2],[1,2,0,0]],[[0,1,1,1],[3,2,3,1],[2,3,3,2],[0,2,0,0]],[[0,1,1,1],[2,2,3,1],[3,3,3,2],[0,2,0,0]],[[0,1,1,1],[2,2,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[2,3,1,3],[0,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,4,1,2],[0,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,3,1,2],[0,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,3,1,2],[0,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,1,2],[0,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,1,2],[0,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,3,1,2],[0,3,1,3],[1,1,0,1]],[[1,2,2,1],[2,3,1,3],[0,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,4,1,2],[0,3,1,2],[1,1,0,1]],[[1,2,2,2],[2,3,1,2],[0,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,3,1,2],[0,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,3,1,2],[0,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,1,2],[0,3,1,2],[1,1,0,1]],[[0,1,1,1],[3,2,3,1],[2,3,3,2],[1,1,0,0]],[[0,1,1,1],[2,2,3,1],[3,3,3,2],[1,1,0,0]],[[0,1,1,1],[2,2,3,1],[2,4,3,2],[1,1,0,0]],[[0,1,1,1],[2,2,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[2,3,1,2],[0,3,1,3],[1,0,2,0]],[[1,2,2,1],[2,3,1,3],[0,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,4,1,2],[0,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,3,1,2],[0,3,1,2],[1,0,2,0]],[[1,2,3,1],[2,3,1,2],[0,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,3,1,2],[0,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,1,2],[0,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,3,1,2],[0,3,1,2],[1,0,1,2]],[[1,2,2,1],[2,3,1,2],[0,3,1,3],[1,0,1,1]],[[1,2,2,1],[2,3,1,3],[0,3,1,2],[1,0,1,1]],[[1,2,2,1],[2,4,1,2],[0,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,3,1,2],[0,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,3,1,2],[0,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,3,1,2],[0,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,1,2],[0,3,1,2],[1,0,1,1]],[[1,2,2,1],[2,3,1,2],[0,3,1,3],[0,2,1,0]],[[1,2,2,1],[2,3,1,3],[0,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,4,1,2],[0,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,3,1,2],[0,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,3,1,2],[0,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[0,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,1,2],[0,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,3,1,2],[0,3,1,2],[0,2,0,2]],[[1,2,2,1],[2,3,1,2],[0,3,1,3],[0,2,0,1]],[[1,2,2,1],[2,3,1,3],[0,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,4,1,2],[0,3,1,2],[0,2,0,1]],[[1,2,2,2],[2,3,1,2],[0,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,3,1,2],[0,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,1,2],[0,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,1,2],[0,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,3,1,2],[0,3,1,3],[0,1,2,0]],[[1,2,2,1],[2,3,1,3],[0,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,4,1,2],[0,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,3,1,2],[0,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,3,1,2],[0,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,1,2],[0,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,1,2],[0,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,3,1,2],[0,3,1,2],[0,1,1,2]],[[1,2,2,1],[2,3,1,2],[0,3,1,3],[0,1,1,1]],[[1,2,2,1],[2,3,1,3],[0,3,1,2],[0,1,1,1]],[[1,2,2,1],[2,4,1,2],[0,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,3,1,2],[0,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,3,1,2],[0,3,1,2],[0,1,1,1]],[[0,1,1,2],[2,2,3,2],[0,0,3,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,3],[0,0,3,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,0,3,3],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,0,3,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[0,0,3,2],[1,2,2,2]],[[0,1,1,2],[2,2,3,2],[0,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,4,2],[0,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,3],[0,2,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,2,1,3],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,2,1,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,2,1,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,2],[0,2,1,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[0,2,1,2],[1,2,2,2]],[[0,1,1,2],[2,2,3,2],[0,2,2,2],[1,2,1,1]],[[0,1,1,1],[2,2,4,2],[0,2,2,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,3],[0,2,2,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[0,2,2,3],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[0,2,2,2],[1,2,1,2]],[[0,1,1,2],[2,2,3,2],[0,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,4,2],[0,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,3],[0,2,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[0,2,2,3],[1,2,2,0]],[[0,1,1,2],[2,2,3,2],[0,2,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,4,2],[0,2,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,3],[0,2,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,2,4,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,2,3,0],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,2,3,0],[1,3,2,1]],[[0,1,1,1],[2,2,3,2],[0,2,3,0],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[0,2,3,0],[1,2,2,2]],[[0,1,1,2],[2,2,3,2],[0,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,4,2],[0,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,3,3],[0,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[0,2,4,1],[1,2,1,1]],[[0,1,1,2],[2,2,3,2],[0,2,3,1],[1,2,2,0]],[[0,1,1,1],[2,2,4,2],[0,2,3,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,3],[0,2,3,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[0,2,4,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[0,2,3,1],[2,2,2,0]],[[0,1,1,1],[2,2,3,2],[0,2,3,1],[1,3,2,0]],[[0,1,1,1],[2,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,3,2,1],[2,3,1,2],[0,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,1,2],[0,3,1,2],[0,1,1,1]],[[0,1,1,2],[2,2,3,2],[0,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,4,2],[0,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,3],[0,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,4,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,0,3],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,0,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,0,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,0,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[0,3,0,2],[1,2,2,2]],[[0,1,1,2],[2,2,3,2],[0,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,2,4,2],[0,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,2,3,3],[0,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,1,3],[1,1,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,1,2],[1,1,3,1]],[[0,1,1,1],[2,2,3,2],[0,3,1,2],[1,1,2,2]],[[0,1,1,1],[2,2,3,2],[0,4,2,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,2,0],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,2,0],[1,3,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,2,0],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[0,3,2,0],[1,2,2,2]],[[0,1,1,1],[2,2,3,2],[0,4,2,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[0,3,2,1],[2,2,2,0]],[[0,1,1,1],[2,2,3,2],[0,3,2,1],[1,3,2,0]],[[0,1,1,1],[2,2,3,2],[0,3,2,1],[1,2,3,0]],[[0,1,1,2],[2,2,3,2],[0,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,2,4,2],[0,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,3],[0,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,2,3],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,2,2],[1,0,2,2]],[[0,1,1,2],[2,2,3,2],[0,3,2,2],[1,1,1,1]],[[0,1,1,1],[2,2,4,2],[0,3,2,2],[1,1,1,1]],[[0,1,1,1],[2,2,3,3],[0,3,2,2],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[0,3,2,3],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[0,3,2,2],[1,1,1,2]],[[0,1,1,2],[2,2,3,2],[0,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,2,4,2],[0,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,2,3,3],[0,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,2,3,2],[0,3,2,3],[1,1,2,0]],[[0,1,1,2],[2,2,3,2],[0,3,2,2],[1,2,0,1]],[[0,1,1,1],[2,2,4,2],[0,3,2,2],[1,2,0,1]],[[0,1,1,1],[2,2,3,3],[0,3,2,2],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[0,3,2,3],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[0,3,2,2],[1,2,0,2]],[[0,1,1,2],[2,2,3,2],[0,3,2,2],[1,2,1,0]],[[0,1,1,1],[2,2,4,2],[0,3,2,2],[1,2,1,0]],[[0,1,1,1],[2,2,3,3],[0,3,2,2],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[0,3,2,3],[1,2,1,0]],[[0,1,1,2],[2,2,3,2],[0,3,3,0],[1,1,2,1]],[[0,1,1,1],[2,2,4,2],[0,3,3,0],[1,1,2,1]],[[0,1,1,1],[2,2,3,3],[0,3,3,0],[1,1,2,1]],[[0,1,1,1],[2,2,3,2],[0,4,3,0],[1,1,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,4,0],[1,1,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,3,0],[1,1,3,1]],[[0,1,1,1],[2,2,3,2],[0,3,3,0],[1,1,2,2]],[[0,1,1,2],[2,2,3,2],[0,3,3,0],[1,2,1,1]],[[0,1,1,1],[2,2,4,2],[0,3,3,0],[1,2,1,1]],[[0,1,1,1],[2,2,3,3],[0,3,3,0],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[0,4,3,0],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[0,3,4,0],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[0,3,3,0],[2,2,1,1]],[[0,1,1,1],[2,2,3,2],[0,3,3,0],[1,3,1,1]],[[0,1,1,2],[2,2,3,2],[0,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,4,2],[0,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,3,3],[0,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[0,3,4,1],[1,0,2,1]],[[0,1,1,2],[2,2,3,2],[0,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,4,2],[0,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,3,3],[0,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[0,4,3,1],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[0,3,4,1],[1,1,1,1]],[[0,1,1,2],[2,2,3,2],[0,3,3,1],[1,1,2,0]],[[0,1,1,1],[2,2,4,2],[0,3,3,1],[1,1,2,0]],[[0,1,1,1],[2,2,3,3],[0,3,3,1],[1,1,2,0]],[[0,1,1,1],[2,2,3,2],[0,4,3,1],[1,1,2,0]],[[0,1,1,1],[2,2,3,2],[0,3,4,1],[1,1,2,0]],[[0,1,1,1],[2,2,3,2],[0,3,3,1],[1,1,3,0]],[[0,1,1,2],[2,2,3,2],[0,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,2,4,2],[0,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,2,3,3],[0,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[0,4,3,1],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[0,3,4,1],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[0,3,3,1],[2,2,0,1]],[[0,1,1,1],[2,2,3,2],[0,3,3,1],[1,3,0,1]],[[0,1,1,2],[2,2,3,2],[0,3,3,1],[1,2,1,0]],[[0,1,1,1],[2,2,4,2],[0,3,3,1],[1,2,1,0]],[[0,1,1,1],[2,2,3,3],[0,3,3,1],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[0,4,3,1],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[0,3,4,1],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[0,3,3,1],[2,2,1,0]],[[0,1,1,1],[2,2,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,4,1,2],[0,3,1,1],[1,1,2,0]],[[1,2,2,2],[2,3,1,2],[0,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,3,1,2],[0,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,1,2],[0,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,1,2],[0,3,1,1],[1,1,2,0]],[[0,1,1,2],[2,2,3,2],[0,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,4,2],[0,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,3],[0,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,3,1,3],[0,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,4,1,2],[0,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,3,1,2],[0,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,3,1,2],[0,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,1,2],[0,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,1,2],[0,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,3,1,2],[0,3,1,0],[1,2,2,0]],[[1,3,2,1],[2,3,1,2],[0,3,1,0],[1,2,2,0]],[[2,2,2,1],[2,3,1,2],[0,3,1,0],[1,2,2,0]],[[1,2,2,1],[2,4,1,2],[0,3,1,0],[1,1,2,1]],[[1,2,2,2],[2,3,1,2],[0,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,3,1,2],[0,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,1,2],[0,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,1,2],[0,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,3,1,3],[0,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,4,1,2],[0,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,3,1,2],[0,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,3,1,2],[0,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,1,2],[0,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,1,2],[0,3,1,0],[0,2,2,1]],[[0,1,1,2],[2,2,3,2],[1,0,3,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,3],[1,0,3,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,0,3,3],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,0,3,2],[0,2,3,1]],[[0,1,1,1],[2,2,3,2],[1,0,3,2],[0,2,2,2]],[[0,1,1,2],[2,2,3,2],[1,2,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,4,2],[1,2,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,3],[1,2,1,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,2,1,3],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,2,1,2],[0,3,2,1]],[[0,1,1,1],[2,2,3,2],[1,2,1,2],[0,2,3,1]],[[0,1,1,1],[2,2,3,2],[1,2,1,2],[0,2,2,2]],[[0,1,1,2],[2,2,3,2],[1,2,2,2],[0,2,1,1]],[[0,1,1,1],[2,2,4,2],[1,2,2,2],[0,2,1,1]],[[0,1,1,1],[2,2,3,3],[1,2,2,2],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[1,2,2,3],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[1,2,2,2],[0,2,1,2]],[[0,1,1,2],[2,2,3,2],[1,2,2,2],[0,2,2,0]],[[0,1,1,1],[2,2,4,2],[1,2,2,2],[0,2,2,0]],[[0,1,1,1],[2,2,3,3],[1,2,2,2],[0,2,2,0]],[[0,1,1,1],[2,2,3,2],[1,2,2,3],[0,2,2,0]],[[0,1,1,2],[2,2,3,2],[1,2,3,0],[0,2,2,1]],[[0,1,1,1],[2,2,4,2],[1,2,3,0],[0,2,2,1]],[[0,1,1,1],[2,2,3,3],[1,2,3,0],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,2,4,0],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,2,3,0],[0,3,2,1]],[[0,1,1,1],[2,2,3,2],[1,2,3,0],[0,2,3,1]],[[0,1,1,1],[2,2,3,2],[1,2,3,0],[0,2,2,2]],[[0,1,1,2],[2,2,3,2],[1,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,4,2],[1,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,3,3],[1,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[1,2,4,1],[0,2,1,1]],[[0,1,1,2],[2,2,3,2],[1,2,3,1],[0,2,2,0]],[[0,1,1,1],[2,2,4,2],[1,2,3,1],[0,2,2,0]],[[0,1,1,1],[2,2,3,3],[1,2,3,1],[0,2,2,0]],[[0,1,1,1],[2,2,3,2],[1,2,4,1],[0,2,2,0]],[[0,1,1,1],[2,2,3,2],[1,2,3,1],[0,3,2,0]],[[0,1,1,1],[2,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,3,1,3],[0,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,4,1,2],[0,3,0,2],[1,1,2,0]],[[1,2,2,2],[2,3,1,2],[0,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,3,1,2],[0,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,3,1,2],[0,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,3,1,2],[0,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,3,1,3],[0,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,4,1,2],[0,3,0,2],[1,1,1,1]],[[1,2,2,2],[2,3,1,2],[0,3,0,2],[1,1,1,1]],[[1,2,3,1],[2,3,1,2],[0,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,3,1,2],[0,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,3,1,2],[0,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,3,1,2],[0,3,0,2],[1,0,2,2]],[[1,2,2,1],[2,3,1,2],[0,3,0,3],[1,0,2,1]],[[1,2,2,1],[2,3,1,3],[0,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,4,1,2],[0,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,3,1,2],[0,3,0,2],[1,0,2,1]],[[1,2,3,1],[2,3,1,2],[0,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,1,2],[0,3,0,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[1,4,0,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,0,1],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,0,1],[1,3,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,0,1],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[1,3,0,1],[1,2,2,2]],[[0,1,1,2],[2,2,3,2],[1,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,2,4,2],[1,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,3],[1,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,4,0,2],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,0,3],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,0,2],[0,3,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,0,2],[0,2,3,1]],[[0,1,1,1],[2,2,3,2],[1,3,0,2],[0,2,2,2]],[[0,1,1,1],[2,2,3,2],[1,4,0,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,0,2],[2,2,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,0,2],[1,3,1,1]],[[0,1,1,1],[2,2,3,2],[1,4,0,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,0,2],[2,2,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,0,2],[1,3,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,0,2],[1,2,3,0]],[[0,1,1,1],[2,2,3,2],[1,4,1,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,0],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,0],[1,3,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,0],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,0],[1,2,2,2]],[[0,1,1,1],[2,2,3,2],[1,4,1,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,1,1],[2,2,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,1,1],[1,3,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,1,1],[1,2,3,0]],[[0,1,1,2],[2,2,3,2],[1,3,1,2],[0,1,2,1]],[[0,1,1,1],[2,2,4,2],[1,3,1,2],[0,1,2,1]],[[0,1,1,1],[2,2,3,3],[1,3,1,2],[0,1,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,3],[0,1,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,2],[0,1,3,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,2],[0,1,2,2]],[[0,1,1,2],[2,2,3,2],[1,3,1,2],[1,0,2,1]],[[0,1,1,1],[2,2,4,2],[1,3,1,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,3],[1,3,1,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,3],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,2],[1,0,3,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,2],[1,0,2,2]],[[0,1,1,1],[2,2,3,2],[1,4,1,2],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,2],[2,2,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,1,2],[1,3,0,1]],[[0,1,1,1],[2,2,3,2],[1,4,1,2],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[1,3,1,2],[2,2,1,0]],[[0,1,1,1],[2,2,3,2],[1,3,1,2],[1,3,1,0]],[[2,2,2,1],[2,3,1,2],[0,3,0,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[1,4,2,0],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,0],[0,3,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,0],[0,2,3,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,0],[0,2,2,2]],[[0,1,1,1],[2,2,3,2],[1,4,2,0],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,0],[2,2,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,0],[1,3,1,1]],[[0,1,1,1],[2,2,3,2],[1,4,2,1],[0,2,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,2,1],[0,3,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,2,1],[0,2,3,0]],[[0,1,1,1],[2,2,3,2],[1,4,2,1],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,1],[2,2,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,1],[1,3,0,1]],[[0,1,1,1],[2,2,3,2],[1,4,2,1],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[1,3,2,1],[2,2,1,0]],[[0,1,1,1],[2,2,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[2,3,1,2],[0,3,0,3],[0,2,2,0]],[[1,2,2,1],[2,3,1,3],[0,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,4,1,2],[0,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,3,1,2],[0,3,0,2],[0,2,2,0]],[[0,1,1,2],[2,2,3,2],[1,3,2,2],[0,0,2,1]],[[0,1,1,1],[2,2,4,2],[1,3,2,2],[0,0,2,1]],[[0,1,1,1],[2,2,3,3],[1,3,2,2],[0,0,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,3],[0,0,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,2],[0,0,2,2]],[[0,1,1,2],[2,2,3,2],[1,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,2,4,2],[1,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,2,3,3],[1,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,3],[0,1,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,2],[0,1,1,2]],[[0,1,1,2],[2,2,3,2],[1,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,2,4,2],[1,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,2,3,3],[1,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,2,3],[0,1,2,0]],[[0,1,1,2],[2,2,3,2],[1,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,2,4,2],[1,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,2,3,3],[1,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,3],[0,2,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,2],[0,2,0,2]],[[0,1,1,2],[2,2,3,2],[1,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,2,4,2],[1,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,2,3,3],[1,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,3,1],[2,3,1,2],[0,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,3,1,2],[0,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,3,1,2],[0,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,3,1,2],[0,3,0,2],[0,2,1,2]],[[1,2,2,1],[2,3,1,2],[0,3,0,3],[0,2,1,1]],[[1,2,2,1],[2,3,1,3],[0,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,4,1,2],[0,3,0,2],[0,2,1,1]],[[1,2,2,2],[2,3,1,2],[0,3,0,2],[0,2,1,1]],[[0,1,1,2],[2,2,3,2],[1,3,2,2],[1,0,1,1]],[[0,1,1,1],[2,2,4,2],[1,3,2,2],[1,0,1,1]],[[0,1,1,1],[2,2,3,3],[1,3,2,2],[1,0,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,3],[1,0,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,2],[1,0,1,2]],[[0,1,1,2],[2,2,3,2],[1,3,2,2],[1,0,2,0]],[[0,1,1,1],[2,2,4,2],[1,3,2,2],[1,0,2,0]],[[0,1,1,1],[2,2,3,3],[1,3,2,2],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,2,3],[1,0,2,0]],[[0,1,1,2],[2,2,3,2],[1,3,2,2],[1,1,0,1]],[[0,1,1,1],[2,2,4,2],[1,3,2,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,3],[1,3,2,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,3],[1,1,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,2,2],[1,1,0,2]],[[0,1,1,2],[2,2,3,2],[1,3,2,2],[1,1,1,0]],[[0,1,1,1],[2,2,4,2],[1,3,2,2],[1,1,1,0]],[[0,1,1,1],[2,2,3,3],[1,3,2,2],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,3,1],[2,3,1,2],[0,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,3,1,2],[0,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,3,1,2],[0,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,3,1,2],[0,3,0,2],[0,1,2,2]],[[1,2,2,1],[2,3,1,2],[0,3,0,2],[0,1,3,1]],[[1,2,2,1],[2,3,1,2],[0,3,0,3],[0,1,2,1]],[[1,2,2,1],[2,3,1,3],[0,3,0,2],[0,1,2,1]],[[1,2,2,1],[2,4,1,2],[0,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,3,1,2],[0,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,3,1,2],[0,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,1,2],[0,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,1,2],[0,3,0,2],[0,1,2,1]],[[1,2,2,1],[2,4,1,2],[0,3,0,1],[1,1,2,1]],[[1,2,2,2],[2,3,1,2],[0,3,0,1],[1,1,2,1]],[[1,2,3,1],[2,3,1,2],[0,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,3,1,2],[0,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,3,1,2],[0,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,3,1,3],[0,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,4,1,2],[0,3,0,1],[0,2,2,1]],[[0,1,1,2],[2,2,3,2],[1,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,2,4,2],[1,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,2,3,3],[1,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,2,3,2],[1,4,3,0],[0,1,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,4,0],[0,1,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,3,0],[0,1,3,1]],[[0,1,1,1],[2,2,3,2],[1,3,3,0],[0,1,2,2]],[[0,1,1,2],[2,2,3,2],[1,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,2,4,2],[1,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,2,3,3],[1,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[1,4,3,0],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,4,0],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,3,0],[0,3,1,1]],[[0,1,1,2],[2,2,3,2],[1,3,3,0],[1,0,2,1]],[[0,1,1,1],[2,2,4,2],[1,3,3,0],[1,0,2,1]],[[0,1,1,1],[2,2,3,3],[1,3,3,0],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[1,4,3,0],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,4,0],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,3,0],[1,0,3,1]],[[0,1,1,1],[2,2,3,2],[1,3,3,0],[1,0,2,2]],[[0,1,1,2],[2,2,3,2],[1,3,3,0],[1,1,1,1]],[[0,1,1,1],[2,2,4,2],[1,3,3,0],[1,1,1,1]],[[0,1,1,1],[2,2,3,3],[1,3,3,0],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[1,4,3,0],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,4,0],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[1,4,3,0],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[1,3,3,0],[2,2,1,0]],[[0,1,1,1],[2,2,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,2],[2,3,1,2],[0,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,3,1,2],[0,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,3,1,2],[0,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,3,1,2],[0,3,0,1],[0,2,2,1]],[[0,1,1,2],[2,2,3,2],[1,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,2,4,2],[1,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,2,3,3],[1,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,2,3,2],[1,3,4,1],[0,0,2,1]],[[0,1,1,2],[2,2,3,2],[1,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,2,4,2],[1,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,2,3,3],[1,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,2,3,2],[1,4,3,1],[0,1,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,4,1],[0,1,1,1]],[[0,1,1,2],[2,2,3,2],[1,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,2,4,2],[1,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,2,3,3],[1,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,2,3,2],[1,4,3,1],[0,1,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,4,1],[0,1,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,3,1],[0,1,3,0]],[[0,1,1,2],[2,2,3,2],[1,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,2,4,2],[1,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,2,3,3],[1,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,2,3,2],[1,4,3,1],[0,2,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,4,1],[0,2,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,3,1],[0,3,0,1]],[[0,1,1,2],[2,2,3,2],[1,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,2,4,2],[1,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,2,3,3],[1,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[1,4,3,1],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[1,3,4,1],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[1,3,3,1],[0,3,1,0]],[[0,1,1,2],[2,2,3,2],[1,3,3,1],[1,0,1,1]],[[0,1,1,1],[2,2,4,2],[1,3,3,1],[1,0,1,1]],[[0,1,1,1],[2,2,3,3],[1,3,3,1],[1,0,1,1]],[[0,1,1,1],[2,2,3,2],[1,4,3,1],[1,0,1,1]],[[0,1,1,1],[2,2,3,2],[1,3,4,1],[1,0,1,1]],[[0,1,1,2],[2,2,3,2],[1,3,3,1],[1,0,2,0]],[[0,1,1,1],[2,2,4,2],[1,3,3,1],[1,0,2,0]],[[0,1,1,1],[2,2,3,3],[1,3,3,1],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[1,4,3,1],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,4,1],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[1,3,3,1],[1,0,3,0]],[[0,1,1,2],[2,2,3,2],[1,3,3,1],[1,1,0,1]],[[0,1,1,1],[2,2,4,2],[1,3,3,1],[1,1,0,1]],[[0,1,1,1],[2,2,3,3],[1,3,3,1],[1,1,0,1]],[[0,1,1,1],[2,2,3,2],[1,4,3,1],[1,1,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,4,1],[1,1,0,1]],[[0,1,1,2],[2,2,3,2],[1,3,3,1],[1,1,1,0]],[[0,1,1,1],[2,2,4,2],[1,3,3,1],[1,1,1,0]],[[0,1,1,1],[2,2,3,3],[1,3,3,1],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[1,4,3,1],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,3,1,2],[0,2,3,3],[1,0,0,1]],[[1,2,2,1],[2,3,1,3],[0,2,3,2],[1,0,0,1]],[[1,2,2,1],[2,4,1,2],[0,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,3,1,2],[0,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,3,1,2],[0,2,3,2],[1,0,0,1]],[[1,3,2,1],[2,3,1,2],[0,2,3,2],[1,0,0,1]],[[2,2,2,1],[2,3,1,2],[0,2,3,2],[1,0,0,1]],[[0,1,1,2],[2,2,3,2],[1,3,3,2],[0,1,0,1]],[[0,1,1,1],[2,2,4,2],[1,3,3,2],[0,1,0,1]],[[0,1,1,1],[2,2,3,3],[1,3,3,2],[0,1,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,3,1,2],[0,2,3,3],[0,1,0,1]],[[1,2,2,1],[2,3,1,3],[0,2,3,2],[0,1,0,1]],[[1,2,2,1],[2,4,1,2],[0,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,3,1,2],[0,2,3,2],[0,1,0,1]],[[1,2,3,1],[2,3,1,2],[0,2,3,2],[0,1,0,1]],[[0,1,1,2],[2,2,3,2],[1,3,3,2],[1,0,0,1]],[[0,1,1,1],[2,2,4,2],[1,3,3,2],[1,0,0,1]],[[0,1,1,1],[2,2,3,3],[1,3,3,2],[1,0,0,1]],[[0,1,1,1],[2,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,3,2,1],[2,3,1,2],[0,2,3,2],[0,1,0,1]],[[2,2,2,1],[2,3,1,2],[0,2,3,2],[0,1,0,1]],[[1,2,2,1],[2,3,1,3],[0,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,4,1,2],[0,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,3,1,2],[0,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,1,2],[0,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,1,2],[0,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,1,2],[0,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,3,1,3],[0,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,4,1,2],[0,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,3,1,2],[0,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,3,1,2],[0,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,1,2],[0,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,1,2],[0,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,3,1,3],[0,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,4,1,2],[0,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,3,1,2],[0,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,1,2],[0,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,1,2],[0,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,1,2],[0,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,3,1,3],[0,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,4,1,2],[0,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,3,1,2],[0,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,3,1,2],[0,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,1,2],[0,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,1,2],[0,2,3,1],[1,0,1,1]],[[0,1,1,2],[2,2,3,2],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[3,2,3,2],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,4,2],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,3],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[3,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,0,1,3],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,0,1,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,0,1,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,2],[2,0,1,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[2,0,1,2],[1,2,2,2]],[[0,1,1,2],[2,2,3,2],[2,0,2,2],[1,2,1,1]],[[0,1,1,1],[2,2,4,2],[2,0,2,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,3],[2,0,2,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[2,0,2,3],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[2,0,2,2],[1,2,1,2]],[[0,1,1,2],[2,2,3,2],[2,0,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,4,2],[2,0,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,3],[2,0,2,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,0,2,3],[1,2,2,0]],[[0,1,1,2],[2,2,3,2],[2,0,3,0],[1,2,2,1]],[[0,1,1,1],[3,2,3,2],[2,0,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,4,2],[2,0,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,3],[2,0,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[3,0,3,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,0,4,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,0,3,0],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,0,3,0],[1,3,2,1]],[[0,1,1,1],[2,2,3,2],[2,0,3,0],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[2,0,3,0],[1,2,2,2]],[[0,1,1,2],[2,2,3,2],[2,0,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,4,2],[2,0,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,3,3],[2,0,3,1],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[2,0,4,1],[1,2,1,1]],[[0,1,1,2],[2,2,3,2],[2,0,3,1],[1,2,2,0]],[[0,1,1,1],[3,2,3,2],[2,0,3,1],[1,2,2,0]],[[0,1,1,1],[2,2,4,2],[2,0,3,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,3],[2,0,3,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[3,0,3,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,0,4,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,0,3,1],[2,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,0,3,1],[1,3,2,0]],[[0,1,1,1],[2,2,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[2,3,1,3],[0,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,4,1,2],[0,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,3,1,2],[0,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,1,2],[0,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[0,2,3,1],[0,2,1,0]],[[0,1,1,2],[2,2,3,2],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[3,2,3,2],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,4,2],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,3],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[3,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,1,0,3],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,1,0,2],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,1,0,2],[1,3,2,1]],[[0,1,1,1],[2,2,3,2],[2,1,0,2],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[2,1,0,2],[1,2,2,2]],[[2,2,2,1],[2,3,1,2],[0,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,3,1,3],[0,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,4,1,2],[0,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,3,1,2],[0,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,1,2],[0,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,1,2],[0,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,1,2],[0,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,3,1,3],[0,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,4,1,2],[0,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,3,1,2],[0,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,1,2],[0,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,1,2],[0,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,1,2],[0,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,3,1,3],[0,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,4,1,2],[0,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,3,1,2],[0,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,1,2],[0,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,1,2],[0,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,1,2],[0,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,3,1,3],[0,2,3,1],[0,0,2,1]],[[1,2,2,1],[2,4,1,2],[0,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,3,1,2],[0,2,3,1],[0,0,2,1]],[[1,2,3,1],[2,3,1,2],[0,2,3,1],[0,0,2,1]],[[1,3,2,1],[2,3,1,2],[0,2,3,1],[0,0,2,1]],[[2,2,2,1],[2,3,1,2],[0,2,3,1],[0,0,2,1]],[[1,2,2,1],[2,4,1,2],[0,2,3,0],[1,1,1,1]],[[1,2,2,2],[2,3,1,2],[0,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,3,1,2],[0,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,1,2],[0,2,3,0],[1,1,1,1]],[[0,1,1,1],[3,2,3,2],[2,2,0,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[3,2,0,1],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,2,0,1],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,2,0,1],[1,3,2,1]],[[0,1,1,1],[2,2,3,2],[2,2,0,1],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[2,2,0,1],[1,2,2,2]],[[0,1,1,1],[3,2,3,2],[2,2,0,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[3,2,0,2],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[2,2,0,2],[2,2,1,1]],[[0,1,1,1],[2,2,3,2],[2,2,0,2],[1,3,1,1]],[[0,1,1,1],[3,2,3,2],[2,2,0,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[3,2,0,2],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,2,0,2],[2,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,2,0,2],[1,3,2,0]],[[0,1,1,1],[2,2,3,2],[2,2,0,2],[1,2,3,0]],[[0,1,1,1],[3,2,3,2],[2,2,1,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[3,2,1,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,2,1,0],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,2,1,0],[1,3,2,1]],[[0,1,1,1],[2,2,3,2],[2,2,1,0],[1,2,3,1]],[[0,1,1,1],[2,2,3,2],[2,2,1,0],[1,2,2,2]],[[0,1,1,1],[3,2,3,2],[2,2,1,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[3,2,1,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,2,1,1],[2,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,2,1,1],[1,3,2,0]],[[0,1,1,1],[2,2,3,2],[2,2,1,1],[1,2,3,0]],[[0,1,1,1],[3,2,3,2],[2,2,1,2],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[3,2,1,2],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[2,2,1,2],[2,2,0,1]],[[0,1,1,1],[2,2,3,2],[2,2,1,2],[1,3,0,1]],[[0,1,1,1],[3,2,3,2],[2,2,1,2],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[3,2,1,2],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,2,1,2],[2,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,2,1,2],[1,3,1,0]],[[2,2,2,1],[2,3,1,2],[0,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,3,1,3],[0,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,4,1,2],[0,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,3,1,2],[0,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,3,1,2],[0,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,1,2],[0,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,1,2],[0,2,3,0],[1,0,2,1]],[[0,1,1,1],[3,2,3,2],[2,2,2,0],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[3,2,2,0],[1,2,1,1]],[[0,1,1,1],[2,2,3,2],[2,2,2,0],[2,2,1,1]],[[0,1,1,1],[2,2,3,2],[2,2,2,0],[1,3,1,1]],[[0,1,1,1],[3,2,3,2],[2,2,2,1],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[3,2,2,1],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[2,2,2,1],[2,2,0,1]],[[0,1,1,1],[2,2,3,2],[2,2,2,1],[1,3,0,1]],[[0,1,1,1],[3,2,3,2],[2,2,2,1],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[3,2,2,1],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,2,2,1],[2,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[2,3,1,3],[0,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,4,1,2],[0,2,3,0],[0,2,1,1]],[[1,2,2,2],[2,3,1,2],[0,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,3,1,2],[0,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,1,2],[0,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,1,2],[0,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,3,1,3],[0,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,4,1,2],[0,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,3,1,2],[0,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,3,1,2],[0,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,1,2],[0,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,1,2],[0,2,3,0],[0,1,2,1]],[[0,1,1,1],[3,2,3,2],[2,2,3,0],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[3,2,3,0],[1,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,2,3,0],[2,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,2,1],[2,3,1,3],[0,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,4,1,2],[0,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,3,1,2],[0,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,3,1,2],[0,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,1,2],[0,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,1,2],[0,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,3,1,2],[0,2,2,3],[1,1,0,1]],[[1,2,2,1],[2,3,1,3],[0,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,4,1,2],[0,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,3,1,2],[0,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,3,1,2],[0,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,1,2],[0,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,1,2],[0,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,3,1,2],[0,2,2,3],[1,0,2,0]],[[1,2,2,1],[2,3,1,3],[0,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,4,1,2],[0,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,3,1,2],[0,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,1,2],[0,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,1,2],[0,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,1,2],[0,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,3,1,2],[0,2,2,2],[1,0,1,2]],[[1,2,2,1],[2,3,1,2],[0,2,2,3],[1,0,1,1]],[[1,2,2,1],[2,3,1,3],[0,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,4,1,2],[0,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,3,1,2],[0,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,3,1,2],[0,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,1,2],[0,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,1,2],[0,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,3,1,2],[0,2,2,3],[0,2,1,0]],[[1,2,2,1],[2,3,1,3],[0,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,4,1,2],[0,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,3,1,2],[0,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,3,1,2],[0,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,1,2],[0,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,1,2],[0,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,3,1,2],[0,2,2,2],[0,2,0,2]],[[1,2,2,1],[2,3,1,2],[0,2,2,3],[0,2,0,1]],[[1,2,2,1],[2,3,1,3],[0,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,4,1,2],[0,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,3,1,2],[0,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,3,1,2],[0,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,1,2],[0,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,1,2],[0,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,3,1,2],[0,2,2,3],[0,1,2,0]],[[1,2,2,1],[2,3,1,3],[0,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,4,1,2],[0,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,3,1,2],[0,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,1,2],[0,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,1,2],[0,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,1,2],[0,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,3,1,2],[0,2,2,2],[0,1,1,2]],[[1,2,2,1],[2,3,1,2],[0,2,2,3],[0,1,1,1]],[[1,2,2,1],[2,3,1,3],[0,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,4,1,2],[0,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,3,1,2],[0,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,1,2],[0,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,1,2],[0,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,1,2],[0,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,3,1,2],[0,2,2,2],[0,0,2,2]],[[1,2,2,1],[2,3,1,2],[0,2,2,3],[0,0,2,1]],[[1,2,2,1],[2,3,1,3],[0,2,2,2],[0,0,2,1]],[[1,2,2,1],[2,4,1,2],[0,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,3,1,2],[0,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,3,1,2],[0,2,2,2],[0,0,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,0,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[3,3,0,0],[1,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,3,0,0],[2,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,3,0,0],[1,3,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,0,1],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[3,3,0,1],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,4,0,1],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,3,0,1],[0,3,2,1]],[[0,1,1,1],[2,2,3,2],[2,3,0,1],[0,2,3,1]],[[0,1,1,1],[2,2,3,2],[2,3,0,1],[0,2,2,2]],[[0,1,1,1],[3,2,3,2],[2,3,0,1],[1,1,2,1]],[[0,1,1,1],[2,2,3,2],[3,3,0,1],[1,1,2,1]],[[0,1,1,1],[2,2,3,2],[2,4,0,1],[1,1,2,1]],[[0,1,1,1],[2,2,3,2],[2,3,0,1],[2,1,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,0,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[3,3,0,1],[1,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,3,0,1],[2,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,3,0,1],[1,3,2,0]],[[0,1,1,1],[3,2,3,2],[2,3,0,2],[0,1,2,1]],[[0,1,1,1],[2,2,3,2],[3,3,0,2],[0,1,2,1]],[[0,1,1,1],[2,2,3,2],[2,4,0,2],[0,1,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,0,2],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[3,3,0,2],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[2,4,0,2],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[2,3,0,2],[0,3,1,1]],[[0,1,1,1],[3,2,3,2],[2,3,0,2],[0,2,2,0]],[[0,1,1,1],[2,2,3,2],[3,3,0,2],[0,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,4,0,2],[0,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,3,0,2],[0,3,2,0]],[[0,1,1,1],[2,2,3,2],[2,3,0,2],[0,2,3,0]],[[0,1,1,1],[3,2,3,2],[2,3,0,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[3,3,0,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[2,4,0,2],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[2,3,0,2],[2,0,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,0,2],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[3,3,0,2],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[2,4,0,2],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[2,3,0,2],[2,1,1,1]],[[0,1,1,1],[3,2,3,2],[2,3,0,2],[1,1,2,0]],[[0,1,1,1],[2,2,3,2],[3,3,0,2],[1,1,2,0]],[[0,1,1,1],[2,2,3,2],[2,4,0,2],[1,1,2,0]],[[0,1,1,1],[2,2,3,2],[2,3,0,2],[2,1,2,0]],[[1,3,2,1],[2,3,1,2],[0,2,2,2],[0,0,2,1]],[[2,2,2,1],[2,3,1,2],[0,2,2,2],[0,0,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,1,0],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[3,3,1,0],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,4,1,0],[0,2,2,1]],[[0,1,1,1],[2,2,3,2],[2,3,1,0],[0,3,2,1]],[[0,1,1,1],[2,2,3,2],[2,3,1,0],[0,2,3,1]],[[0,1,1,1],[2,2,3,2],[2,3,1,0],[0,2,2,2]],[[0,1,1,1],[3,2,3,2],[2,3,1,0],[1,1,2,1]],[[0,1,1,1],[2,2,3,2],[3,3,1,0],[1,1,2,1]],[[0,1,1,1],[2,2,3,2],[2,4,1,0],[1,1,2,1]],[[0,1,1,1],[2,2,3,2],[2,3,1,0],[2,1,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,1,1],[0,2,2,0]],[[0,1,1,1],[2,2,3,2],[3,3,1,1],[0,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,4,1,1],[0,2,2,0]],[[0,1,1,1],[2,2,3,2],[2,3,1,1],[0,3,2,0]],[[0,1,1,1],[2,2,3,2],[2,3,1,1],[0,2,3,0]],[[0,1,1,1],[3,2,3,2],[2,3,1,1],[1,1,2,0]],[[0,1,1,1],[2,2,3,2],[3,3,1,1],[1,1,2,0]],[[0,1,1,1],[2,2,3,2],[2,4,1,1],[1,1,2,0]],[[0,1,1,1],[2,2,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[2,3,1,2],[0,2,1,2],[1,0,2,2]],[[1,2,2,1],[2,3,1,2],[0,2,1,3],[1,0,2,1]],[[1,2,2,1],[2,3,1,3],[0,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,4,1,2],[0,2,1,2],[1,0,2,1]],[[1,2,2,2],[2,3,1,2],[0,2,1,2],[1,0,2,1]],[[1,2,3,1],[2,3,1,2],[0,2,1,2],[1,0,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,1,2],[0,1,1,1]],[[0,1,1,1],[2,2,3,2],[3,3,1,2],[0,1,1,1]],[[0,1,1,1],[2,2,3,2],[2,4,1,2],[0,1,1,1]],[[0,1,1,1],[3,2,3,2],[2,3,1,2],[0,1,2,0]],[[0,1,1,1],[2,2,3,2],[3,3,1,2],[0,1,2,0]],[[0,1,1,1],[2,2,3,2],[2,4,1,2],[0,1,2,0]],[[0,1,1,1],[3,2,3,2],[2,3,1,2],[0,2,0,1]],[[0,1,1,1],[2,2,3,2],[3,3,1,2],[0,2,0,1]],[[0,1,1,1],[2,2,3,2],[2,4,1,2],[0,2,0,1]],[[0,1,1,1],[2,2,3,2],[2,3,1,2],[0,3,0,1]],[[0,1,1,1],[3,2,3,2],[2,3,1,2],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[3,3,1,2],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,4,1,2],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,3,1,2],[0,3,1,0]],[[1,3,2,1],[2,3,1,2],[0,2,1,2],[1,0,2,1]],[[2,2,2,1],[2,3,1,2],[0,2,1,2],[1,0,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,1,2],[1,0,1,1]],[[0,1,1,1],[2,2,3,2],[3,3,1,2],[1,0,1,1]],[[0,1,1,1],[2,2,3,2],[2,4,1,2],[1,0,1,1]],[[0,1,1,1],[2,2,3,2],[2,3,1,2],[2,0,1,1]],[[0,1,1,1],[3,2,3,2],[2,3,1,2],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[3,3,1,2],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[2,4,1,2],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[2,3,1,2],[2,0,2,0]],[[0,1,1,1],[3,2,3,2],[2,3,1,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,2],[3,3,1,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,2],[2,4,1,2],[1,1,0,1]],[[0,1,1,1],[2,2,3,2],[2,3,1,2],[2,1,0,1]],[[0,1,1,1],[3,2,3,2],[2,3,1,2],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[3,3,1,2],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[2,4,1,2],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,1],[2,3,1,2],[0,2,1,2],[0,1,2,2]],[[1,2,2,1],[2,3,1,2],[0,2,1,2],[0,1,3,1]],[[1,2,2,1],[2,3,1,2],[0,2,1,3],[0,1,2,1]],[[1,2,2,1],[2,3,1,3],[0,2,1,2],[0,1,2,1]],[[1,2,2,1],[2,4,1,2],[0,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,3,1,2],[0,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,3,1,2],[0,2,1,2],[0,1,2,1]],[[1,3,2,1],[2,3,1,2],[0,2,1,2],[0,1,2,1]],[[2,2,2,1],[2,3,1,2],[0,2,1,2],[0,1,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,1,2],[1,2,0,0]],[[0,1,1,1],[2,2,3,2],[3,3,1,2],[1,2,0,0]],[[0,1,1,1],[2,2,3,2],[2,4,1,2],[1,2,0,0]],[[0,1,1,1],[2,2,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,3,1,2],[0,2,0,2],[0,2,2,2]],[[1,2,2,1],[2,3,1,2],[0,2,0,2],[0,2,3,1]],[[1,2,2,1],[2,3,1,2],[0,2,0,3],[0,2,2,1]],[[1,2,2,1],[2,3,1,3],[0,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,4,1,2],[0,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,3,1,2],[0,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,3,1,2],[0,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,1,2],[0,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,1,2],[0,2,0,2],[0,2,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,2,0],[0,1,2,1]],[[0,1,1,1],[2,2,3,2],[3,3,2,0],[0,1,2,1]],[[0,1,1,1],[2,2,3,2],[2,4,2,0],[0,1,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,2,0],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[3,3,2,0],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[2,4,2,0],[0,2,1,1]],[[0,1,1,1],[2,2,3,2],[2,3,2,0],[0,3,1,1]],[[0,1,1,1],[3,2,3,2],[2,3,2,0],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[3,3,2,0],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[2,4,2,0],[1,0,2,1]],[[0,1,1,1],[2,2,3,2],[2,3,2,0],[2,0,2,1]],[[0,1,1,1],[3,2,3,2],[2,3,2,0],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[3,3,2,0],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[2,4,2,0],[1,1,1,1]],[[0,1,1,1],[2,2,3,2],[2,3,2,0],[2,1,1,1]],[[0,1,1,1],[3,2,3,2],[2,3,2,0],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[3,3,2,0],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[2,4,2,0],[1,2,0,1]],[[0,1,1,1],[2,2,3,2],[2,3,2,0],[2,2,0,1]],[[0,1,1,1],[3,2,3,2],[2,3,2,1],[0,1,1,1]],[[0,1,1,1],[2,2,3,2],[3,3,2,1],[0,1,1,1]],[[0,1,1,1],[2,2,3,2],[2,4,2,1],[0,1,1,1]],[[0,1,1,1],[3,2,3,2],[2,3,2,1],[0,1,2,0]],[[0,1,1,1],[2,2,3,2],[3,3,2,1],[0,1,2,0]],[[0,1,1,1],[2,2,3,2],[2,4,2,1],[0,1,2,0]],[[0,1,1,1],[3,2,3,2],[2,3,2,1],[0,2,0,1]],[[0,1,1,1],[2,2,3,2],[3,3,2,1],[0,2,0,1]],[[0,1,1,1],[2,2,3,2],[2,4,2,1],[0,2,0,1]],[[0,1,1,1],[2,2,3,2],[2,3,2,1],[0,3,0,1]],[[0,1,1,1],[3,2,3,2],[2,3,2,1],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[3,3,2,1],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,4,2,1],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,3,2,1],[0,3,1,0]],[[0,1,1,1],[3,2,3,2],[2,3,2,1],[1,0,1,1]],[[0,1,1,1],[2,2,3,2],[3,3,2,1],[1,0,1,1]],[[0,1,1,1],[2,2,3,2],[2,4,2,1],[1,0,1,1]],[[0,1,1,1],[2,2,3,2],[2,3,2,1],[2,0,1,1]],[[0,1,1,1],[3,2,3,2],[2,3,2,1],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[3,3,2,1],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[2,4,2,1],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[2,3,2,1],[2,0,2,0]],[[0,1,1,1],[3,2,3,2],[2,3,2,1],[1,1,0,1]],[[0,1,1,1],[2,2,3,2],[3,3,2,1],[1,1,0,1]],[[0,1,1,1],[2,2,3,2],[2,4,2,1],[1,1,0,1]],[[0,1,1,1],[2,2,3,2],[2,3,2,1],[2,1,0,1]],[[0,1,1,1],[3,2,3,2],[2,3,2,1],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[3,3,2,1],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[2,4,2,1],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[2,3,2,1],[2,1,1,0]],[[0,1,1,1],[3,2,3,2],[2,3,2,1],[1,2,0,0]],[[0,1,1,1],[2,2,3,2],[3,3,2,1],[1,2,0,0]],[[0,1,1,1],[2,2,3,2],[2,4,2,1],[1,2,0,0]],[[0,1,1,1],[2,2,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[2,3,1,3],[0,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,4,1,2],[0,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,3,1,2],[0,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,3,1,2],[0,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,3,1,2],[0,1,3,1],[0,2,2,0]],[[2,2,2,1],[2,3,1,2],[0,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,3,1,3],[0,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,4,1,2],[0,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,3,1,2],[0,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,3,1,2],[0,1,3,1],[0,2,1,1]],[[1,3,2,1],[2,3,1,2],[0,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,3,1,2],[0,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,3,1,3],[0,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,4,1,2],[0,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,3,1,2],[0,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,3,1,2],[0,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,3,1,2],[0,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,3,1,2],[0,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,3,1,2],[0,1,2,3],[0,2,2,0]],[[1,2,2,1],[2,3,1,3],[0,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,4,1,2],[0,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,3,1,2],[0,1,2,2],[0,2,2,0]],[[1,2,3,1],[2,3,1,2],[0,1,2,2],[0,2,2,0]],[[1,3,2,1],[2,3,1,2],[0,1,2,2],[0,2,2,0]],[[2,2,2,1],[2,3,1,2],[0,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,3,1,2],[0,1,2,2],[0,2,1,2]],[[1,2,2,1],[2,3,1,2],[0,1,2,3],[0,2,1,1]],[[1,2,2,1],[2,3,1,3],[0,1,2,2],[0,2,1,1]],[[1,2,2,1],[2,4,1,2],[0,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,3,1,2],[0,1,2,2],[0,2,1,1]],[[1,2,3,1],[2,3,1,2],[0,1,2,2],[0,2,1,1]],[[1,3,2,1],[2,3,1,2],[0,1,2,2],[0,2,1,1]],[[2,2,2,1],[2,3,1,2],[0,1,2,2],[0,2,1,1]],[[1,2,2,1],[2,3,1,2],[0,1,1,2],[0,2,2,2]],[[1,2,2,1],[2,3,1,2],[0,1,1,2],[0,2,3,1]],[[1,2,2,1],[2,3,1,2],[0,1,1,3],[0,2,2,1]],[[1,2,2,1],[2,3,1,3],[0,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,4,1,2],[0,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,3,1,2],[0,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,3,1,2],[0,1,1,2],[0,2,2,1]],[[1,3,2,1],[2,3,1,2],[0,1,1,2],[0,2,2,1]],[[2,2,2,1],[2,3,1,2],[0,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,3,1,1],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[3,3,1,1],[2,3,3,1],[1,0,0,0]],[[0,1,1,1],[3,2,3,2],[2,3,3,0],[0,1,2,0]],[[0,1,1,1],[2,2,3,2],[3,3,3,0],[0,1,2,0]],[[0,1,1,1],[2,2,3,2],[2,4,3,0],[0,1,2,0]],[[0,1,1,1],[3,2,3,2],[2,3,3,0],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[3,3,3,0],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,4,3,0],[0,2,1,0]],[[0,1,1,1],[2,2,3,2],[2,3,3,0],[0,3,1,0]],[[1,3,2,1],[2,3,1,1],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[2,3,1,1],[2,3,3,1],[1,0,0,0]],[[0,1,1,1],[3,2,3,2],[2,3,3,0],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[3,3,3,0],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[2,4,3,0],[1,0,2,0]],[[0,1,1,1],[2,2,3,2],[2,3,3,0],[2,0,2,0]],[[0,1,1,1],[3,2,3,2],[2,3,3,0],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[3,3,3,0],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[2,4,3,0],[1,1,1,0]],[[0,1,1,1],[2,2,3,2],[2,3,3,0],[2,1,1,0]],[[0,1,1,1],[3,2,3,2],[2,3,3,0],[1,2,0,0]],[[0,1,1,1],[2,2,3,2],[3,3,3,0],[1,2,0,0]],[[0,1,1,1],[2,2,3,2],[2,4,3,0],[1,2,0,0]],[[0,1,1,1],[2,2,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[2,3,1,1],[3,3,3,0],[1,0,1,0]],[[1,2,2,1],[3,3,1,1],[2,3,3,0],[1,0,1,0]],[[1,3,2,1],[2,3,1,1],[2,3,3,0],[1,0,1,0]],[[2,2,2,1],[2,3,1,1],[2,3,3,0],[1,0,1,0]],[[0,1,1,1],[3,2,3,2],[2,3,3,1],[0,2,0,0]],[[0,1,1,1],[2,2,3,2],[3,3,3,1],[0,2,0,0]],[[0,1,1,1],[2,2,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,3,1,1],[3,3,2,1],[1,0,1,0]],[[1,2,2,1],[3,3,1,1],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[2,3,1,1],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[2,3,1,1],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,3,1,1],[3,3,2,1],[1,0,0,1]],[[1,2,2,1],[3,3,1,1],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[2,3,1,1],[2,3,2,1],[1,0,0,1]],[[2,2,2,1],[2,3,1,1],[2,3,2,1],[1,0,0,1]],[[0,1,1,1],[3,2,3,2],[2,3,3,1],[1,1,0,0]],[[0,1,1,1],[2,2,3,2],[3,3,3,1],[1,1,0,0]],[[0,1,1,1],[2,2,3,2],[2,4,3,1],[1,1,0,0]],[[0,1,1,1],[2,2,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[2,3,1,1],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[2,3,1,1],[3,3,2,0],[1,2,0,0]],[[1,2,2,1],[3,3,1,1],[2,3,2,0],[1,2,0,0]],[[1,3,2,1],[2,3,1,1],[2,3,2,0],[1,2,0,0]],[[2,2,2,1],[2,3,1,1],[2,3,2,0],[1,2,0,0]],[[1,2,2,1],[2,3,1,1],[2,3,2,0],[2,1,1,0]],[[1,2,2,1],[2,3,1,1],[3,3,2,0],[1,1,1,0]],[[1,2,2,1],[3,3,1,1],[2,3,2,0],[1,1,1,0]],[[1,3,2,1],[2,3,1,1],[2,3,2,0],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[2,3,2,0],[1,1,1,0]],[[1,2,2,1],[2,3,1,1],[3,3,2,0],[1,0,1,1]],[[1,2,2,1],[3,3,1,1],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,3,1,1],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,3,1,1],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[2,3,1,1],[3,3,2,0],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[2,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,3,1,1],[2,3,2,0],[0,2,1,0]],[[2,2,2,1],[2,3,1,1],[2,3,2,0],[0,2,1,0]],[[1,2,2,1],[2,3,1,1],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[3,3,1,1],[2,3,1,2],[1,0,1,0]],[[1,3,2,1],[2,3,1,1],[2,3,1,2],[1,0,1,0]],[[2,2,2,1],[2,3,1,1],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,3,1,1],[3,3,1,2],[1,0,0,1]],[[1,2,2,1],[3,3,1,1],[2,3,1,2],[1,0,0,1]],[[1,3,2,1],[2,3,1,1],[2,3,1,2],[1,0,0,1]],[[2,2,2,1],[2,3,1,1],[2,3,1,2],[1,0,0,1]],[[1,2,2,1],[2,3,1,1],[2,3,1,1],[2,2,0,0]],[[1,2,2,1],[2,3,1,1],[3,3,1,1],[1,2,0,0]],[[1,2,2,1],[3,3,1,1],[2,3,1,1],[1,2,0,0]],[[1,3,2,1],[2,3,1,1],[2,3,1,1],[1,2,0,0]],[[2,2,2,1],[2,3,1,1],[2,3,1,1],[1,2,0,0]],[[1,2,2,1],[2,3,1,1],[2,3,1,1],[2,1,1,0]],[[1,2,2,1],[2,3,1,1],[3,3,1,1],[1,1,1,0]],[[1,2,2,1],[3,3,1,1],[2,3,1,1],[1,1,1,0]],[[1,3,2,1],[2,3,1,1],[2,3,1,1],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[2,3,1,1],[1,1,1,0]],[[1,2,2,1],[2,3,1,1],[2,3,1,1],[2,1,0,1]],[[1,2,2,1],[2,3,1,1],[3,3,1,1],[1,1,0,1]],[[1,2,2,1],[3,3,1,1],[2,3,1,1],[1,1,0,1]],[[1,3,2,1],[2,3,1,1],[2,3,1,1],[1,1,0,1]],[[2,2,2,1],[2,3,1,1],[2,3,1,1],[1,1,0,1]],[[1,2,2,1],[2,3,1,1],[3,3,1,1],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[2,3,1,1],[0,2,1,0]],[[1,3,2,1],[2,3,1,1],[2,3,1,1],[0,2,1,0]],[[2,2,2,1],[2,3,1,1],[2,3,1,1],[0,2,1,0]],[[1,2,2,1],[2,3,1,1],[3,3,1,1],[0,2,0,1]],[[1,2,2,1],[3,3,1,1],[2,3,1,1],[0,2,0,1]],[[1,3,2,1],[2,3,1,1],[2,3,1,1],[0,2,0,1]],[[2,2,2,1],[2,3,1,1],[2,3,1,1],[0,2,0,1]],[[1,2,2,1],[2,3,1,1],[2,3,1,0],[2,2,0,1]],[[1,2,2,1],[2,3,1,1],[3,3,1,0],[1,2,0,1]],[[1,2,2,1],[3,3,1,1],[2,3,1,0],[1,2,0,1]],[[1,3,2,1],[2,3,1,1],[2,3,1,0],[1,2,0,1]],[[2,2,2,1],[2,3,1,1],[2,3,1,0],[1,2,0,1]],[[1,2,2,1],[2,3,1,1],[2,3,1,0],[2,1,1,1]],[[1,2,2,1],[2,3,1,1],[3,3,1,0],[1,1,1,1]],[[1,2,2,1],[3,3,1,1],[2,3,1,0],[1,1,1,1]],[[1,3,2,1],[2,3,1,1],[2,3,1,0],[1,1,1,1]],[[2,2,2,1],[2,3,1,1],[2,3,1,0],[1,1,1,1]],[[1,2,2,1],[2,3,1,1],[3,3,1,0],[0,2,1,1]],[[1,2,2,1],[3,3,1,1],[2,3,1,0],[0,2,1,1]],[[1,3,2,1],[2,3,1,1],[2,3,1,0],[0,2,1,1]],[[2,2,2,1],[2,3,1,1],[2,3,1,0],[0,2,1,1]],[[1,2,2,1],[2,3,1,1],[2,3,0,2],[2,2,0,0]],[[1,2,2,1],[2,3,1,1],[3,3,0,2],[1,2,0,0]],[[1,2,2,1],[3,3,1,1],[2,3,0,2],[1,2,0,0]],[[1,3,2,1],[2,3,1,1],[2,3,0,2],[1,2,0,0]],[[2,2,2,1],[2,3,1,1],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[2,3,1,1],[2,3,0,2],[2,1,1,0]],[[1,2,2,1],[2,3,1,1],[3,3,0,2],[1,1,1,0]],[[1,2,2,1],[3,3,1,1],[2,3,0,2],[1,1,1,0]],[[1,3,2,1],[2,3,1,1],[2,3,0,2],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,3,1,1],[2,3,0,2],[2,1,0,1]],[[1,2,2,1],[2,3,1,1],[3,3,0,2],[1,1,0,1]],[[1,2,2,1],[3,3,1,1],[2,3,0,2],[1,1,0,1]],[[1,3,2,1],[2,3,1,1],[2,3,0,2],[1,1,0,1]],[[2,2,2,1],[2,3,1,1],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[2,3,1,1],[3,3,0,2],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[2,3,0,2],[0,2,1,0]],[[1,3,2,1],[2,3,1,1],[2,3,0,2],[0,2,1,0]],[[2,2,2,1],[2,3,1,1],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,3,1,1],[3,3,0,2],[0,2,0,1]],[[1,2,2,1],[3,3,1,1],[2,3,0,2],[0,2,0,1]],[[1,3,2,1],[2,3,1,1],[2,3,0,2],[0,2,0,1]],[[2,2,2,1],[2,3,1,1],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[2,3,1,1],[2,3,0,1],[2,2,1,0]],[[1,2,2,1],[2,3,1,1],[3,3,0,1],[1,2,1,0]],[[1,2,2,1],[3,3,1,1],[2,3,0,1],[1,2,1,0]],[[1,3,2,1],[2,3,1,1],[2,3,0,1],[1,2,1,0]],[[2,2,2,1],[2,3,1,1],[2,3,0,1],[1,2,1,0]],[[1,2,2,1],[2,3,1,1],[2,3,0,1],[2,1,2,0]],[[1,2,2,1],[2,3,1,1],[3,3,0,1],[1,1,2,0]],[[1,2,2,1],[3,3,1,1],[2,3,0,1],[1,1,2,0]],[[1,3,2,1],[2,3,1,1],[2,3,0,1],[1,1,2,0]],[[2,2,2,1],[2,3,1,1],[2,3,0,1],[1,1,2,0]],[[1,2,2,1],[2,3,1,1],[3,3,0,1],[0,2,2,0]],[[1,2,2,1],[3,3,1,1],[2,3,0,1],[0,2,2,0]],[[1,3,2,1],[2,3,1,1],[2,3,0,1],[0,2,2,0]],[[2,2,2,1],[2,3,1,1],[2,3,0,1],[0,2,2,0]],[[1,2,2,1],[2,3,1,1],[2,3,0,0],[2,2,2,0]],[[1,2,2,1],[2,3,1,1],[3,3,0,0],[1,2,2,0]],[[1,2,2,1],[3,3,1,1],[2,3,0,0],[1,2,2,0]],[[1,3,2,1],[2,3,1,1],[2,3,0,0],[1,2,2,0]],[[2,2,2,1],[2,3,1,1],[2,3,0,0],[1,2,2,0]],[[1,2,2,1],[2,3,1,1],[2,3,0,0],[2,2,1,1]],[[1,2,2,1],[2,3,1,1],[3,3,0,0],[1,2,1,1]],[[1,2,2,1],[3,3,1,1],[2,3,0,0],[1,2,1,1]],[[1,3,2,1],[2,3,1,1],[2,3,0,0],[1,2,1,1]],[[2,2,2,1],[2,3,1,1],[2,3,0,0],[1,2,1,1]],[[1,2,2,1],[2,3,1,1],[2,3,0,0],[2,1,2,1]],[[1,2,2,1],[2,3,1,1],[3,3,0,0],[1,1,2,1]],[[1,2,2,1],[3,3,1,1],[2,3,0,0],[1,1,2,1]],[[1,3,2,1],[2,3,1,1],[2,3,0,0],[1,1,2,1]],[[2,2,2,1],[2,3,1,1],[2,3,0,0],[1,1,2,1]],[[1,2,2,1],[2,3,1,1],[3,3,0,0],[0,2,2,1]],[[1,2,2,1],[3,3,1,1],[2,3,0,0],[0,2,2,1]],[[1,3,2,1],[2,3,1,1],[2,3,0,0],[0,2,2,1]],[[2,2,2,1],[2,3,1,1],[2,3,0,0],[0,2,2,1]],[[0,1,1,1],[2,3,0,1],[0,4,3,2],[1,2,2,1]],[[0,1,1,1],[2,3,0,1],[0,3,3,2],[2,2,2,1]],[[0,1,1,1],[2,3,0,1],[0,3,3,2],[1,3,2,1]],[[0,1,1,1],[2,3,0,1],[0,3,3,2],[1,2,3,1]],[[0,1,1,1],[2,3,0,1],[0,3,3,2],[1,2,2,2]],[[0,1,1,1],[2,3,0,1],[1,4,3,2],[0,2,2,1]],[[0,1,1,1],[2,3,0,1],[1,3,3,2],[0,3,2,1]],[[0,1,1,1],[2,3,0,1],[1,3,3,2],[0,2,3,1]],[[0,1,1,1],[2,3,0,1],[1,3,3,2],[0,2,2,2]],[[0,1,1,1],[2,3,0,2],[0,2,3,3],[1,2,2,1]],[[0,1,1,1],[2,3,0,2],[0,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,3,0,2],[0,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,3,0,2],[0,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,3,0,2],[0,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,3,0,2],[0,4,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,0,2],[0,3,2,3],[1,2,2,1]],[[0,1,1,1],[2,3,0,2],[0,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,3,0,2],[0,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,3,0,2],[0,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,3,0,2],[0,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,3,0,2],[0,4,3,1],[1,2,2,1]],[[0,1,1,1],[2,3,0,2],[0,3,3,1],[2,2,2,1]],[[0,1,1,1],[2,3,0,2],[0,3,3,1],[1,3,2,1]],[[0,1,1,1],[2,3,0,2],[0,3,3,1],[1,2,3,1]],[[0,1,1,1],[2,3,0,2],[0,3,3,1],[1,2,2,2]],[[0,1,1,1],[2,3,0,2],[0,3,3,3],[1,1,2,1]],[[0,1,1,1],[2,3,0,2],[0,3,3,2],[1,1,3,1]],[[0,1,1,1],[2,3,0,2],[0,3,3,2],[1,1,2,2]],[[0,1,1,1],[2,3,0,2],[0,4,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,0,2],[0,3,3,2],[2,2,2,0]],[[0,1,1,1],[2,3,0,2],[0,3,3,2],[1,3,2,0]],[[0,1,1,1],[2,3,0,2],[0,3,3,2],[1,2,3,0]],[[0,1,1,1],[2,3,0,2],[1,2,3,3],[0,2,2,1]],[[0,1,1,1],[2,3,0,2],[1,2,3,2],[0,3,2,1]],[[0,1,1,1],[2,3,0,2],[1,2,3,2],[0,2,3,1]],[[0,1,1,1],[2,3,0,2],[1,2,3,2],[0,2,2,2]],[[0,1,1,1],[2,3,0,2],[1,4,2,2],[0,2,2,1]],[[0,1,1,1],[2,3,0,2],[1,3,2,3],[0,2,2,1]],[[0,1,1,1],[2,3,0,2],[1,3,2,2],[0,3,2,1]],[[0,1,1,1],[2,3,0,2],[1,3,2,2],[0,2,3,1]],[[0,1,1,1],[2,3,0,2],[1,3,2,2],[0,2,2,2]],[[0,1,1,1],[2,3,0,2],[1,4,3,1],[0,2,2,1]],[[0,1,1,1],[2,3,0,2],[1,3,3,1],[0,3,2,1]],[[0,1,1,1],[2,3,0,2],[1,3,3,1],[0,2,3,1]],[[0,1,1,1],[2,3,0,2],[1,3,3,1],[0,2,2,2]],[[0,1,1,1],[2,3,0,2],[1,3,3,3],[0,1,2,1]],[[0,1,1,1],[2,3,0,2],[1,3,3,2],[0,1,3,1]],[[0,1,1,1],[2,3,0,2],[1,3,3,2],[0,1,2,2]],[[0,1,1,1],[2,3,0,2],[1,4,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,0,2],[1,3,3,2],[0,3,2,0]],[[0,1,1,1],[2,3,0,2],[1,3,3,2],[0,2,3,0]],[[0,1,1,1],[2,3,0,2],[1,3,3,3],[1,0,2,1]],[[0,1,1,1],[2,3,0,2],[1,3,3,2],[1,0,3,1]],[[0,1,1,1],[2,3,0,2],[1,3,3,2],[1,0,2,2]],[[0,1,1,1],[2,3,0,2],[3,0,3,2],[1,2,2,1]],[[0,1,1,1],[2,3,0,2],[2,0,3,3],[1,2,2,1]],[[0,1,1,1],[2,3,0,2],[2,0,3,2],[2,2,2,1]],[[0,1,1,1],[2,3,0,2],[2,0,3,2],[1,3,2,1]],[[0,1,1,1],[2,3,0,2],[2,0,3,2],[1,2,3,1]],[[0,1,1,1],[2,3,0,2],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,3,1,1],[3,2,3,1],[1,1,0,0]],[[1,2,2,1],[3,3,1,1],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,1,1],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,1,1],[2,2,3,1],[1,1,0,0]],[[0,1,1,1],[2,3,1,0],[0,4,3,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,0],[0,3,3,2],[2,2,2,1]],[[0,1,1,1],[2,3,1,0],[0,3,3,2],[1,3,2,1]],[[0,1,1,1],[2,3,1,0],[0,3,3,2],[1,2,3,1]],[[0,1,1,1],[2,3,1,0],[0,3,3,2],[1,2,2,2]],[[0,1,1,1],[2,3,1,0],[1,4,3,2],[0,2,2,1]],[[0,1,1,1],[2,3,1,0],[1,3,3,2],[0,3,2,1]],[[0,1,1,1],[2,3,1,0],[1,3,3,2],[0,2,3,1]],[[0,1,1,1],[2,3,1,0],[1,3,3,2],[0,2,2,2]],[[0,1,1,1],[2,3,1,1],[0,4,3,1],[1,2,2,1]],[[0,1,1,1],[2,3,1,1],[0,3,3,1],[2,2,2,1]],[[0,1,1,1],[2,3,1,1],[0,3,3,1],[1,3,2,1]],[[0,1,1,1],[2,3,1,1],[0,3,3,1],[1,2,3,1]],[[0,1,1,1],[2,3,1,1],[0,3,3,1],[1,2,2,2]],[[0,1,1,1],[2,3,1,1],[0,4,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,1],[0,3,3,2],[2,2,2,0]],[[0,1,1,1],[2,3,1,1],[0,3,3,2],[1,3,2,0]],[[0,1,1,1],[2,3,1,1],[0,3,3,2],[1,2,3,0]],[[0,1,1,1],[2,3,1,1],[1,4,3,1],[0,2,2,1]],[[0,1,1,1],[2,3,1,1],[1,3,3,1],[0,3,2,1]],[[0,1,1,1],[2,3,1,1],[1,3,3,1],[0,2,3,1]],[[0,1,1,1],[2,3,1,1],[1,3,3,1],[0,2,2,2]],[[0,1,1,1],[2,3,1,1],[1,4,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,1,1],[1,3,3,2],[0,3,2,0]],[[0,1,1,1],[2,3,1,1],[1,3,3,2],[0,2,3,0]],[[1,2,2,1],[3,3,1,1],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,1,1],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,1,1],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[2,3,1,1],[2,2,3,0],[2,2,0,0]],[[1,2,2,1],[2,3,1,1],[3,2,3,0],[1,2,0,0]],[[0,1,1,2],[2,3,1,2],[0,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,3],[0,2,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,3,1,2],[0,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,3,1,2],[0,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,3,1,2],[0,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,3,1,2],[0,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,3,1,2],[0,2,3,1],[1,2,2,2]],[[0,1,1,2],[2,3,1,2],[0,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,1,3],[0,2,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,1,2],[0,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,3,1,2],[0,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,3,1,2],[0,2,3,2],[1,2,1,2]],[[0,1,1,2],[2,3,1,2],[0,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,3],[0,2,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,2],[0,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,2],[0,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,3,1,2],[0,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,3,1,2],[0,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,3,1,2],[0,2,3,2],[1,2,3,0]],[[0,1,1,2],[2,3,1,2],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[3,3,1,2],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,4,1,2],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,3],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,4,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,1,3],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,3,1,2],[0,3,1,2],[1,2,2,2]],[[0,1,1,1],[3,3,1,2],[0,3,2,1],[1,2,2,1]],[[0,1,1,1],[2,4,1,2],[0,3,2,1],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,4,2,1],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,3,1,2],[0,3,2,1],[1,2,2,2]],[[0,1,1,2],[2,3,1,2],[0,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,3,1,3],[0,3,2,2],[1,1,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,2,3],[1,1,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,2,2],[1,1,3,1]],[[0,1,1,1],[2,3,1,2],[0,3,2,2],[1,1,2,2]],[[0,1,1,1],[3,3,1,2],[0,3,2,2],[1,2,2,0]],[[0,1,1,1],[2,4,1,2],[0,3,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,2],[0,4,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,2],[0,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,3,1,2],[0,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,3,1,2],[0,3,2,2],[1,2,3,0]],[[0,1,1,1],[3,3,1,2],[0,3,3,1],[1,1,2,1]],[[0,1,1,1],[2,4,1,2],[0,3,3,1],[1,1,2,1]],[[0,1,1,1],[2,3,1,2],[0,4,3,1],[1,1,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,4,1],[1,1,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,1],[1,1,3,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,1],[1,1,2,2]],[[0,1,1,1],[3,3,1,2],[0,3,3,1],[1,2,1,1]],[[0,1,1,1],[2,4,1,2],[0,3,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,1,2],[0,4,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,1,2],[0,3,4,1],[1,2,1,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,1],[1,3,1,1]],[[0,1,1,2],[2,3,1,2],[0,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,3,1,3],[0,3,3,2],[1,0,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,3],[1,0,2,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,2],[1,0,2,2]],[[0,1,1,2],[2,3,1,2],[0,3,3,2],[1,1,1,1]],[[0,1,1,1],[3,3,1,2],[0,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,4,1,2],[0,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,1,3],[0,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,1,2],[0,4,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,1,2],[0,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,3],[1,1,1,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,2],[1,1,1,2]],[[0,1,1,2],[2,3,1,2],[0,3,3,2],[1,1,2,0]],[[0,1,1,1],[3,3,1,2],[0,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,4,1,2],[0,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,1,3],[0,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,1,2],[0,4,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,1,2],[0,3,4,2],[1,1,2,0]],[[0,1,1,1],[2,3,1,2],[0,3,3,3],[1,1,2,0]],[[0,1,1,1],[2,3,1,2],[0,3,3,2],[1,1,3,0]],[[0,1,1,2],[2,3,1,2],[0,3,3,2],[1,2,0,1]],[[0,1,1,1],[3,3,1,2],[0,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,4,1,2],[0,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,1,3],[0,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,1,2],[0,4,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,1,2],[0,3,4,2],[1,2,0,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,3],[1,2,0,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,3,1,2],[0,3,3,2],[1,2,0,2]],[[0,1,1,2],[2,3,1,2],[0,3,3,2],[1,2,1,0]],[[0,1,1,1],[3,3,1,2],[0,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,4,1,2],[0,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,1,3],[0,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,1,2],[0,4,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,1,2],[0,3,4,2],[1,2,1,0]],[[0,1,1,1],[2,3,1,2],[0,3,3,3],[1,2,1,0]],[[0,1,1,1],[2,3,1,2],[0,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,1,1],[2,2,3,0],[1,2,0,0]],[[1,3,2,1],[2,3,1,1],[2,2,3,0],[1,2,0,0]],[[2,2,2,1],[2,3,1,1],[2,2,3,0],[1,2,0,0]],[[0,1,1,2],[2,3,1,2],[1,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,3,1,3],[1,2,2,2],[0,2,2,1]],[[0,1,1,1],[2,3,1,2],[1,2,2,3],[0,2,2,1]],[[0,1,1,1],[2,3,1,2],[1,2,2,2],[0,3,2,1]],[[0,1,1,1],[2,3,1,2],[1,2,2,2],[0,2,3,1]],[[0,1,1,1],[2,3,1,2],[1,2,2,2],[0,2,2,2]],[[0,1,1,1],[2,3,1,2],[1,2,4,1],[0,2,2,1]],[[0,1,1,1],[2,3,1,2],[1,2,3,1],[0,3,2,1]],[[0,1,1,1],[2,3,1,2],[1,2,3,1],[0,2,3,1]],[[0,1,1,1],[2,3,1,2],[1,2,3,1],[0,2,2,2]],[[0,1,1,2],[2,3,1,2],[1,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,1,3],[1,2,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,1,2],[1,2,4,2],[0,2,1,1]],[[0,1,1,1],[2,3,1,2],[1,2,3,3],[0,2,1,1]],[[0,1,1,1],[2,3,1,2],[1,2,3,2],[0,2,1,2]],[[0,1,1,2],[2,3,1,2],[1,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,1,3],[1,2,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,1,2],[1,2,4,2],[0,2,2,0]],[[0,1,1,1],[2,3,1,2],[1,2,3,3],[0,2,2,0]],[[0,1,1,1],[2,3,1,2],[1,2,3,2],[0,3,2,0]],[[0,1,1,1],[2,3,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,3,1,1],[2,2,3,0],[2,1,1,0]],[[1,2,2,1],[2,3,1,1],[3,2,3,0],[1,1,1,0]],[[1,2,2,1],[3,3,1,1],[2,2,3,0],[1,1,1,0]],[[0,1,1,2],[2,3,1,2],[1,3,1,2],[0,2,2,1]],[[0,1,1,1],[3,3,1,2],[1,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,4,1,2],[1,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,1,3],[1,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,1,2],[1,4,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,1,3],[0,2,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,1,2],[0,3,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,1,2],[0,2,3,1]],[[0,1,1,1],[2,3,1,2],[1,3,1,2],[0,2,2,2]],[[0,1,1,1],[3,3,1,2],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,4,1,2],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,1,2],[1,4,1,2],[1,1,2,1]],[[0,1,1,1],[3,3,1,2],[1,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,4,1,2],[1,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,3,1,2],[1,4,2,1],[0,2,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,2,1],[0,3,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,2,1],[0,2,3,1]],[[0,1,1,1],[2,3,1,2],[1,3,2,1],[0,2,2,2]],[[0,1,1,1],[3,3,1,2],[1,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,4,1,2],[1,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,3,1,2],[1,4,2,1],[1,1,2,1]],[[0,1,1,2],[2,3,1,2],[1,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,3,1,3],[1,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,3,1,2],[1,3,2,2],[0,1,2,2]],[[0,1,1,1],[3,3,1,2],[1,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,4,1,2],[1,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,1,2],[1,4,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,1,2],[1,3,2,2],[0,3,2,0]],[[0,1,1,1],[2,3,1,2],[1,3,2,2],[0,2,3,0]],[[0,1,1,2],[2,3,1,2],[1,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,3,1,3],[1,3,2,2],[1,0,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,2,3],[1,0,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,2,2],[1,0,3,1]],[[0,1,1,1],[2,3,1,2],[1,3,2,2],[1,0,2,2]],[[0,1,1,1],[3,3,1,2],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,4,1,2],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,1,2],[1,4,2,2],[1,1,2,0]],[[1,3,2,1],[2,3,1,1],[2,2,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[2,2,3,0],[1,1,1,0]],[[0,1,1,1],[3,3,1,2],[1,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,4,1,2],[1,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,1,2],[1,4,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,1],[0,1,2,2]],[[0,1,1,1],[3,3,1,2],[1,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,4,1,2],[1,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,1,2],[1,4,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,1,2],[1,3,4,1],[0,2,1,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,1],[0,3,1,1]],[[0,1,1,1],[3,3,1,2],[1,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,4,1,2],[1,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,1,2],[1,4,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,4,1],[1,0,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,1],[1,0,3,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,1],[1,0,2,2]],[[0,1,1,1],[3,3,1,2],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,4,1,2],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,1,2],[1,4,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,1,2],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[2,3,1,1],[3,2,3,0],[1,0,2,0]],[[1,2,2,1],[3,3,1,1],[2,2,3,0],[1,0,2,0]],[[1,3,2,1],[2,3,1,1],[2,2,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,1,1],[2,2,3,0],[1,0,2,0]],[[0,1,1,2],[2,3,1,2],[1,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,1,3],[1,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,2],[0,0,2,2]],[[0,1,1,2],[2,3,1,2],[1,3,3,2],[0,1,1,1]],[[0,1,1,1],[3,3,1,2],[1,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,4,1,2],[1,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,1,3],[1,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,1,2],[1,4,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,1,2],[1,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,2],[0,1,1,2]],[[0,1,1,2],[2,3,1,2],[1,3,3,2],[0,1,2,0]],[[0,1,1,1],[3,3,1,2],[1,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,4,1,2],[1,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,1,3],[1,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,1,2],[1,4,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,1,2],[1,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,3,1,2],[1,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,3,1,2],[1,3,3,2],[0,1,3,0]],[[0,1,1,2],[2,3,1,2],[1,3,3,2],[0,2,0,1]],[[0,1,1,1],[3,3,1,2],[1,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,4,1,2],[1,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,1,3],[1,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,1,2],[1,4,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,1,2],[1,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,2],[0,3,0,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,2],[0,2,0,2]],[[0,1,1,2],[2,3,1,2],[1,3,3,2],[0,2,1,0]],[[0,1,1,1],[3,3,1,2],[1,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,4,1,2],[1,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,1,3],[1,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,1,2],[1,4,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,1,2],[1,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,3,1,2],[1,3,3,3],[0,2,1,0]],[[0,1,1,1],[2,3,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,3,1,1],[3,2,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[2,2,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,1,1],[2,2,3,0],[0,2,1,0]],[[0,1,1,2],[2,3,1,2],[1,3,3,2],[1,0,1,1]],[[0,1,1,1],[3,3,1,2],[1,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,4,1,2],[1,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,1,3],[1,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,1,2],[1,4,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,1,2],[1,3,4,2],[1,0,1,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,3],[1,0,1,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,2],[1,0,1,2]],[[0,1,1,2],[2,3,1,2],[1,3,3,2],[1,0,2,0]],[[0,1,1,1],[3,3,1,2],[1,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,4,1,2],[1,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,1,3],[1,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,1,2],[1,4,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,1,2],[1,3,4,2],[1,0,2,0]],[[0,1,1,1],[2,3,1,2],[1,3,3,3],[1,0,2,0]],[[0,1,1,1],[2,3,1,2],[1,3,3,2],[1,0,3,0]],[[0,1,1,2],[2,3,1,2],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[3,3,1,2],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,4,1,2],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,1,3],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,1,2],[1,4,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,1,2],[1,3,4,2],[1,1,0,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,3],[1,1,0,1]],[[0,1,1,1],[2,3,1,2],[1,3,3,2],[1,1,0,2]],[[0,1,1,2],[2,3,1,2],[1,3,3,2],[1,1,1,0]],[[0,1,1,1],[3,3,1,2],[1,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,4,1,2],[1,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,1,3],[1,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,1,2],[1,4,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,1,2],[1,3,4,2],[1,1,1,0]],[[0,1,1,1],[2,3,1,2],[1,3,3,3],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[2,2,3,0],[0,1,2,0]],[[0,1,1,1],[3,3,1,2],[1,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,4,1,2],[1,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,3,1,2],[1,4,3,2],[1,2,0,0]],[[1,3,2,1],[2,3,1,1],[2,2,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,1,1],[2,2,3,0],[0,1,2,0]],[[0,1,1,2],[2,3,1,2],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[3,3,1,2],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,4,1,2],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,3],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[3,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[2,0,2,3],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[2,0,2,2],[2,2,2,1]],[[0,1,1,1],[2,3,1,2],[2,0,2,2],[1,3,2,1]],[[0,1,1,1],[2,3,1,2],[2,0,2,2],[1,2,3,1]],[[0,1,1,1],[2,3,1,2],[2,0,2,2],[1,2,2,2]],[[0,1,1,1],[3,3,1,2],[2,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,4,1,2],[2,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[3,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[2,0,4,1],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[2,0,3,1],[2,2,2,1]],[[0,1,1,1],[2,3,1,2],[2,0,3,1],[1,3,2,1]],[[0,1,1,1],[2,3,1,2],[2,0,3,1],[1,2,3,1]],[[0,1,1,1],[2,3,1,2],[2,0,3,1],[1,2,2,2]],[[0,1,1,2],[2,3,1,2],[2,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,1,3],[2,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,1,2],[2,0,4,2],[1,2,1,1]],[[0,1,1,1],[2,3,1,2],[2,0,3,3],[1,2,1,1]],[[0,1,1,1],[2,3,1,2],[2,0,3,2],[1,2,1,2]],[[0,1,1,2],[2,3,1,2],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[3,3,1,2],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,4,1,2],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,3],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,2],[3,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,2],[2,0,4,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,2],[2,0,3,3],[1,2,2,0]],[[0,1,1,1],[2,3,1,2],[2,0,3,2],[2,2,2,0]],[[0,1,1,1],[2,3,1,2],[2,0,3,2],[1,3,2,0]],[[0,1,1,1],[2,3,1,2],[2,0,3,2],[1,2,3,0]],[[0,1,1,2],[2,3,1,2],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[3,3,1,2],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,4,1,2],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,3],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[3,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[2,1,1,3],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[2,1,1,2],[2,2,2,1]],[[0,1,1,1],[2,3,1,2],[2,1,1,2],[1,3,2,1]],[[0,1,1,1],[2,3,1,2],[2,1,1,2],[1,2,3,1]],[[0,1,1,1],[2,3,1,2],[2,1,1,2],[1,2,2,2]],[[0,1,1,1],[3,3,1,2],[2,1,2,1],[1,2,2,1]],[[0,1,1,1],[2,4,1,2],[2,1,2,1],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[3,1,2,1],[1,2,2,1]],[[0,1,1,1],[2,3,1,2],[2,1,2,1],[2,2,2,1]],[[0,1,1,1],[2,3,1,2],[2,1,2,1],[1,3,2,1]],[[0,1,1,1],[2,3,1,2],[2,1,2,1],[1,2,3,1]],[[0,1,1,1],[2,3,1,2],[2,1,2,1],[1,2,2,2]],[[0,1,1,1],[3,3,1,2],[2,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,4,1,2],[2,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,2],[3,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,1,2],[2,1,2,2],[2,2,2,0]],[[0,1,1,1],[2,3,1,2],[2,1,2,2],[1,3,2,0]],[[0,1,1,1],[2,3,1,2],[2,1,2,2],[1,2,3,0]],[[0,1,1,1],[3,3,1,2],[2,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,4,1,2],[2,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,1,2],[3,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,1,2],[2,1,3,1],[2,2,1,1]],[[0,1,1,1],[2,3,1,2],[2,1,3,1],[1,3,1,1]],[[0,1,1,1],[3,3,1,2],[2,1,3,2],[1,2,0,1]],[[0,1,1,1],[2,4,1,2],[2,1,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,1,2],[3,1,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,1,2],[2,1,3,2],[2,2,0,1]],[[0,1,1,1],[2,3,1,2],[2,1,3,2],[1,3,0,1]],[[0,1,1,1],[3,3,1,2],[2,1,3,2],[1,2,1,0]],[[0,1,1,1],[2,4,1,2],[2,1,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,1,2],[3,1,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,1,2],[2,1,3,2],[2,2,1,0]],[[0,1,1,1],[2,3,1,2],[2,1,3,2],[1,3,1,0]],[[0,1,1,1],[3,3,1,2],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[2,4,1,2],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,1,2],[3,2,1,2],[0,2,2,1]],[[0,1,1,1],[3,3,1,2],[2,2,1,2],[1,1,2,1]],[[0,1,1,1],[2,4,1,2],[2,2,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,1,2],[3,2,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,1,2],[2,2,1,2],[2,1,2,1]],[[0,1,1,1],[3,3,1,2],[2,2,2,1],[0,2,2,1]],[[0,1,1,1],[2,4,1,2],[2,2,2,1],[0,2,2,1]],[[0,1,1,1],[2,3,1,2],[3,2,2,1],[0,2,2,1]],[[0,1,1,1],[3,3,1,2],[2,2,2,1],[1,1,2,1]],[[0,1,1,1],[2,4,1,2],[2,2,2,1],[1,1,2,1]],[[0,1,1,1],[2,3,1,2],[3,2,2,1],[1,1,2,1]],[[0,1,1,1],[2,3,1,2],[2,2,2,1],[2,1,2,1]],[[0,1,1,1],[3,3,1,2],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[2,4,1,2],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,1,2],[3,2,2,2],[0,2,2,0]],[[0,1,1,1],[3,3,1,2],[2,2,2,2],[1,1,2,0]],[[0,1,1,1],[2,4,1,2],[2,2,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,1,2],[3,2,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,1,2],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[2,3,1,1],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[2,3,1,1],[3,2,2,1],[1,2,0,0]],[[1,2,2,1],[3,3,1,1],[2,2,2,1],[1,2,0,0]],[[0,1,1,1],[3,3,1,2],[2,2,3,1],[0,1,2,1]],[[0,1,1,1],[2,4,1,2],[2,2,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,1,2],[3,2,3,1],[0,1,2,1]],[[0,1,1,1],[3,3,1,2],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,4,1,2],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,1,2],[3,2,3,1],[0,2,1,1]],[[0,1,1,1],[3,3,1,2],[2,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,4,1,2],[2,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,1,2],[3,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,1,2],[2,2,3,1],[2,0,2,1]],[[0,1,1,1],[3,3,1,2],[2,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,4,1,2],[2,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,1,2],[3,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,1,2],[2,2,3,1],[2,1,1,1]],[[1,3,2,1],[2,3,1,1],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,1,1],[2,2,2,1],[1,2,0,0]],[[0,1,1,1],[3,3,1,2],[2,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,4,1,2],[2,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,1,2],[3,2,3,2],[0,1,1,1]],[[0,1,1,1],[3,3,1,2],[2,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,4,1,2],[2,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,1,2],[3,2,3,2],[0,1,2,0]],[[0,1,1,1],[3,3,1,2],[2,2,3,2],[0,2,0,1]],[[0,1,1,1],[2,4,1,2],[2,2,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,1,2],[3,2,3,2],[0,2,0,1]],[[0,1,1,1],[3,3,1,2],[2,2,3,2],[0,2,1,0]],[[0,1,1,1],[2,4,1,2],[2,2,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,1,2],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,3,1,1],[2,2,2,1],[2,1,1,0]],[[1,2,2,1],[2,3,1,1],[3,2,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,1,1],[2,2,2,1],[1,1,1,0]],[[0,1,1,1],[3,3,1,2],[2,2,3,2],[1,0,1,1]],[[0,1,1,1],[2,4,1,2],[2,2,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,1,2],[3,2,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,1,2],[2,2,3,2],[2,0,1,1]],[[0,1,1,1],[3,3,1,2],[2,2,3,2],[1,0,2,0]],[[0,1,1,1],[2,4,1,2],[2,2,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,1,2],[3,2,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,1,2],[2,2,3,2],[2,0,2,0]],[[0,1,1,1],[3,3,1,2],[2,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,4,1,2],[2,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,1,2],[3,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,1,2],[2,2,3,2],[2,1,0,1]],[[0,1,1,1],[3,3,1,2],[2,2,3,2],[1,1,1,0]],[[0,1,1,1],[2,4,1,2],[2,2,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,1,2],[3,2,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,1,2],[2,2,3,2],[2,1,1,0]],[[1,3,2,1],[2,3,1,1],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,3,1,1],[2,2,2,1],[2,1,0,1]],[[1,2,2,1],[2,3,1,1],[3,2,2,1],[1,1,0,1]],[[0,1,1,1],[3,3,1,2],[2,2,3,2],[1,2,0,0]],[[0,1,1,1],[2,4,1,2],[2,2,3,2],[1,2,0,0]],[[0,1,1,1],[2,3,1,2],[3,2,3,2],[1,2,0,0]],[[0,1,1,1],[2,3,1,2],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[3,3,1,1],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,1,1],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,1,1],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[2,3,1,1],[3,2,2,1],[1,0,2,0]],[[1,2,2,1],[3,3,1,1],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,1,1],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,1,1],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[2,3,1,1],[3,2,2,1],[1,0,1,1]],[[1,2,2,1],[3,3,1,1],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,1,1],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,1,1],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[2,3,1,1],[3,2,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,1,1],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,1,1],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[2,3,1,1],[3,2,2,1],[0,2,0,1]],[[1,2,2,1],[3,3,1,1],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,1,1],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,1,1],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[3,3,1,1],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,1,1],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,1,1],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[3,3,1,1],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[2,3,1,1],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[2,3,1,1],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[2,3,1,1],[2,2,2,0],[2,2,0,1]],[[1,2,2,1],[2,3,1,1],[3,2,2,0],[1,2,0,1]],[[1,2,2,1],[3,3,1,1],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,1,1],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[2,3,1,1],[2,2,2,0],[1,2,0,1]],[[1,2,2,1],[2,3,1,1],[2,2,2,0],[2,1,1,1]],[[1,2,2,1],[2,3,1,1],[3,2,2,0],[1,1,1,1]],[[1,2,2,1],[3,3,1,1],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,1,1],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,1,1],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[2,3,1,1],[3,2,2,0],[1,0,2,1]],[[1,2,2,1],[3,3,1,1],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,1,1],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,1,1],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[2,3,1,1],[3,2,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,1,1],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,1,1],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,1,1],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,1,1],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,1,1],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,1,1],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[2,3,1,1],[2,2,1,2],[2,2,0,0]],[[1,2,2,1],[2,3,1,1],[3,2,1,2],[1,2,0,0]],[[1,2,2,1],[3,3,1,1],[2,2,1,2],[1,2,0,0]],[[1,3,2,1],[2,3,1,1],[2,2,1,2],[1,2,0,0]],[[2,2,2,1],[2,3,1,1],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[2,3,1,1],[2,2,1,2],[2,1,1,0]],[[1,2,2,1],[2,3,1,1],[3,2,1,2],[1,1,1,0]],[[1,2,2,1],[3,3,1,1],[2,2,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,1,1],[2,2,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,3,1,1],[2,2,1,2],[2,1,0,1]],[[1,2,2,1],[2,3,1,1],[3,2,1,2],[1,1,0,1]],[[1,2,2,1],[3,3,1,1],[2,2,1,2],[1,1,0,1]],[[1,3,2,1],[2,3,1,1],[2,2,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,1,1],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[2,3,1,1],[3,2,1,2],[1,0,2,0]],[[1,2,2,1],[3,3,1,1],[2,2,1,2],[1,0,2,0]],[[1,3,2,1],[2,3,1,1],[2,2,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,1,1],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[2,3,1,1],[3,2,1,2],[1,0,1,1]],[[1,2,2,1],[3,3,1,1],[2,2,1,2],[1,0,1,1]],[[1,3,2,1],[2,3,1,1],[2,2,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,1,1],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[2,3,1,1],[3,2,1,2],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[2,2,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,1,1],[2,2,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,1,1],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,3,1,1],[3,2,1,2],[0,2,0,1]],[[1,2,2,1],[3,3,1,1],[2,2,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,1,1],[2,2,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,1,1],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[3,3,1,1],[2,2,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,1,1],[2,2,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,1,1],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[3,3,1,1],[2,2,1,2],[0,1,1,1]],[[1,3,2,1],[2,3,1,1],[2,2,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,1,1],[2,2,1,2],[0,1,1,1]],[[0,1,1,1],[3,3,1,2],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[2,4,1,2],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[2,3,1,2],[3,3,3,2],[1,0,0,1]],[[0,1,1,1],[3,3,1,2],[2,3,3,2],[1,0,1,0]],[[0,1,1,1],[2,4,1,2],[2,3,3,2],[1,0,1,0]],[[0,1,1,1],[2,3,1,2],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,3,1,1],[2,2,1,1],[2,1,2,0]],[[1,2,2,1],[2,3,1,1],[3,2,1,1],[1,1,2,0]],[[1,2,2,1],[3,3,1,1],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,1,1],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,1,1],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[2,3,1,1],[3,2,1,1],[0,2,2,0]],[[1,2,2,1],[3,3,1,1],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,1,1],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,1,1],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[2,3,1,1],[2,2,1,0],[2,1,2,1]],[[1,2,2,1],[2,3,1,1],[3,2,1,0],[1,1,2,1]],[[1,2,2,1],[3,3,1,1],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,1,1],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,1,1],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[2,3,1,1],[3,2,1,0],[0,2,2,1]],[[1,2,2,1],[3,3,1,1],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,1,1],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,1,1],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[2,3,1,1],[2,2,0,2],[2,1,2,0]],[[1,2,2,1],[2,3,1,1],[3,2,0,2],[1,1,2,0]],[[1,2,2,1],[3,3,1,1],[2,2,0,2],[1,1,2,0]],[[1,3,2,1],[2,3,1,1],[2,2,0,2],[1,1,2,0]],[[2,2,2,1],[2,3,1,1],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[2,3,1,1],[2,2,0,2],[2,1,1,1]],[[1,2,2,1],[2,3,1,1],[3,2,0,2],[1,1,1,1]],[[1,2,2,1],[3,3,1,1],[2,2,0,2],[1,1,1,1]],[[1,3,2,1],[2,3,1,1],[2,2,0,2],[1,1,1,1]],[[2,2,2,1],[2,3,1,1],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[2,3,1,1],[3,2,0,2],[1,0,2,1]],[[1,2,2,1],[3,3,1,1],[2,2,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,1,1],[2,2,0,2],[1,0,2,1]],[[2,2,2,1],[2,3,1,1],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[2,3,1,1],[3,2,0,2],[0,2,2,0]],[[1,2,2,1],[3,3,1,1],[2,2,0,2],[0,2,2,0]],[[1,3,2,1],[2,3,1,1],[2,2,0,2],[0,2,2,0]],[[2,2,2,1],[2,3,1,1],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[2,3,1,1],[3,2,0,2],[0,2,1,1]],[[1,2,2,1],[3,3,1,1],[2,2,0,2],[0,2,1,1]],[[1,3,2,1],[2,3,1,1],[2,2,0,2],[0,2,1,1]],[[2,2,2,1],[2,3,1,1],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[3,3,1,1],[2,2,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,1,1],[2,2,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,1,1],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[2,3,1,1],[2,2,0,1],[1,3,2,0]],[[1,2,2,1],[2,3,1,1],[2,2,0,1],[2,2,2,0]],[[1,2,2,1],[2,3,1,1],[3,2,0,1],[1,2,2,0]],[[1,2,2,1],[3,3,1,1],[2,2,0,1],[1,2,2,0]],[[1,3,2,1],[2,3,1,1],[2,2,0,1],[1,2,2,0]],[[2,2,2,1],[2,3,1,1],[2,2,0,1],[1,2,2,0]],[[0,1,1,1],[2,3,2,0],[0,2,4,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,0],[0,2,3,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,0],[0,2,3,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,0],[0,2,3,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,0],[0,2,3,2],[1,2,2,2]],[[0,1,1,1],[2,3,2,0],[0,4,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,0],[0,3,2,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,0],[0,3,2,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,0],[0,3,2,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,0],[0,3,2,2],[1,2,2,2]],[[0,1,1,1],[2,3,2,0],[0,4,3,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,0],[0,3,4,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,0],[0,3,3,2],[1,1,3,1]],[[0,1,1,1],[2,3,2,0],[0,3,3,2],[1,1,2,2]],[[0,1,1,1],[2,3,2,0],[0,4,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,2,0],[0,3,4,2],[1,2,1,1]],[[0,1,1,1],[2,3,2,0],[0,3,3,2],[2,2,1,1]],[[0,1,1,1],[2,3,2,0],[0,3,3,2],[1,3,1,1]],[[0,1,1,1],[2,3,2,0],[1,2,4,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,0],[1,2,3,2],[0,3,2,1]],[[0,1,1,1],[2,3,2,0],[1,2,3,2],[0,2,3,1]],[[0,1,1,1],[2,3,2,0],[1,2,3,2],[0,2,2,2]],[[0,1,1,1],[2,3,2,0],[1,4,2,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,0],[1,3,2,2],[0,3,2,1]],[[0,1,1,1],[2,3,2,0],[1,3,2,2],[0,2,3,1]],[[0,1,1,1],[2,3,2,0],[1,3,2,2],[0,2,2,2]],[[0,1,1,1],[2,3,2,0],[1,4,3,2],[0,1,2,1]],[[0,1,1,1],[2,3,2,0],[1,3,4,2],[0,1,2,1]],[[0,1,1,1],[2,3,2,0],[1,3,3,2],[0,1,3,1]],[[0,1,1,1],[2,3,2,0],[1,3,3,2],[0,1,2,2]],[[0,1,1,1],[2,3,2,0],[1,4,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,2,0],[1,3,4,2],[0,2,1,1]],[[0,1,1,1],[2,3,2,0],[1,3,3,2],[0,3,1,1]],[[0,1,1,1],[2,3,2,0],[1,4,3,2],[1,0,2,1]],[[0,1,1,1],[2,3,2,0],[1,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,3,2,0],[1,3,3,2],[1,0,3,1]],[[0,1,1,1],[2,3,2,0],[1,3,3,2],[1,0,2,2]],[[1,2,2,1],[2,3,1,1],[2,2,0,1],[2,1,2,1]],[[1,2,2,1],[2,3,1,1],[3,2,0,1],[1,1,2,1]],[[1,2,2,1],[3,3,1,1],[2,2,0,1],[1,1,2,1]],[[1,3,2,1],[2,3,1,1],[2,2,0,1],[1,1,2,1]],[[2,2,2,1],[2,3,1,1],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[2,3,1,1],[3,2,0,1],[0,2,2,1]],[[0,1,1,1],[2,3,2,0],[3,0,3,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,0],[2,0,4,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,0],[2,0,3,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,0],[2,0,3,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,0],[2,0,3,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[3,3,1,1],[2,2,0,1],[0,2,2,1]],[[1,3,2,1],[2,3,1,1],[2,2,0,1],[0,2,2,1]],[[2,2,2,1],[2,3,1,1],[2,2,0,1],[0,2,2,1]],[[1,2,2,1],[2,3,1,1],[2,2,0,0],[1,3,2,1]],[[1,2,2,1],[2,3,1,1],[2,2,0,0],[2,2,2,1]],[[1,2,2,1],[2,3,1,1],[3,2,0,0],[1,2,2,1]],[[1,2,2,1],[3,3,1,1],[2,2,0,0],[1,2,2,1]],[[1,3,2,1],[2,3,1,1],[2,2,0,0],[1,2,2,1]],[[2,2,2,1],[2,3,1,1],[2,2,0,0],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,2,2,3],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,2,2,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,2,2,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,1],[0,2,2,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,1],[0,2,2,2],[1,2,2,2]],[[0,1,1,1],[2,3,2,1],[0,2,4,1],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,2,3,1],[2,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,2,3,1],[1,3,2,1]],[[0,1,1,1],[2,3,2,1],[0,2,3,1],[1,2,3,1]],[[0,1,1,1],[2,3,2,1],[0,2,3,1],[1,2,2,2]],[[0,1,1,1],[2,3,2,1],[0,2,4,2],[1,2,1,1]],[[0,1,1,1],[2,3,2,1],[0,2,3,3],[1,2,1,1]],[[0,1,1,1],[2,3,2,1],[0,2,3,2],[1,2,1,2]],[[0,1,1,1],[2,3,2,1],[0,2,4,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,1],[0,2,3,3],[1,2,2,0]],[[0,1,1,1],[2,3,2,1],[0,2,3,2],[2,2,2,0]],[[0,1,1,1],[2,3,2,1],[0,2,3,2],[1,3,2,0]],[[0,1,1,1],[2,3,2,1],[0,2,3,2],[1,2,3,0]],[[0,1,1,1],[3,3,2,1],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,4,2,1],[0,3,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,4,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,1,3],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,1,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,1,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,1,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,1],[0,3,1,2],[1,2,2,2]],[[0,1,1,1],[3,3,2,1],[0,3,2,1],[1,2,2,1]],[[0,1,1,1],[2,4,2,1],[0,3,2,1],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,4,2,1],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,2,1],[2,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,2,1],[1,3,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,2,1],[1,2,3,1]],[[0,1,1,1],[2,3,2,1],[0,3,2,1],[1,2,2,2]],[[0,1,1,1],[2,3,2,1],[0,3,2,3],[1,1,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,2,2],[1,1,3,1]],[[0,1,1,1],[2,3,2,1],[0,3,2,2],[1,1,2,2]],[[0,1,1,1],[3,3,2,1],[0,3,2,2],[1,2,2,0]],[[0,1,1,1],[2,4,2,1],[0,3,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,1],[0,4,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,1],[0,3,2,2],[2,2,2,0]],[[0,1,1,1],[2,3,2,1],[0,3,2,2],[1,3,2,0]],[[0,1,1,1],[2,3,2,1],[0,3,2,2],[1,2,3,0]],[[0,1,1,1],[2,3,2,1],[0,4,3,0],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,0],[2,2,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,0],[1,3,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,0],[1,2,3,1]],[[0,1,1,1],[3,3,2,1],[0,3,3,1],[1,1,2,1]],[[0,1,1,1],[2,4,2,1],[0,3,3,1],[1,1,2,1]],[[0,1,1,1],[2,3,2,1],[0,4,3,1],[1,1,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,4,1],[1,1,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,1],[1,1,3,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,1],[1,1,2,2]],[[0,1,1,1],[3,3,2,1],[0,3,3,1],[1,2,1,1]],[[0,1,1,1],[2,4,2,1],[0,3,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,2,1],[0,4,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,2,1],[0,3,4,1],[1,2,1,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,1],[2,2,1,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,1],[1,3,1,1]],[[0,1,1,1],[2,3,2,1],[0,3,4,2],[1,0,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,3],[1,0,2,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,2],[1,0,2,2]],[[0,1,1,1],[3,3,2,1],[0,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,4,2,1],[0,3,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,2,1],[0,4,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,2,1],[0,3,4,2],[1,1,1,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,3],[1,1,1,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,2],[1,1,1,2]],[[0,1,1,1],[3,3,2,1],[0,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,4,2,1],[0,3,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,1],[0,4,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,1],[0,3,4,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,1],[0,3,3,3],[1,1,2,0]],[[0,1,1,1],[2,3,2,1],[0,3,3,2],[1,1,3,0]],[[0,1,1,1],[3,3,2,1],[0,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,4,2,1],[0,3,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,2,1],[0,4,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,2,1],[0,3,4,2],[1,2,0,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,3],[1,2,0,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,2],[2,2,0,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,2],[1,3,0,1]],[[0,1,1,1],[2,3,2,1],[0,3,3,2],[1,2,0,2]],[[0,1,1,1],[3,3,2,1],[0,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,4,2,1],[0,3,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,2,1],[0,4,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,2,1],[0,3,4,2],[1,2,1,0]],[[0,1,1,1],[2,3,2,1],[0,3,3,3],[1,2,1,0]],[[0,1,1,1],[2,3,2,1],[0,3,3,2],[2,2,1,0]],[[0,1,1,1],[2,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,1,1],[2,1,3,0],[2,2,1,0]],[[1,2,2,1],[2,3,1,1],[3,1,3,0],[1,2,1,0]],[[1,2,2,1],[3,3,1,1],[2,1,3,0],[1,2,1,0]],[[1,3,2,1],[2,3,1,1],[2,1,3,0],[1,2,1,0]],[[0,1,1,1],[2,3,2,1],[1,2,2,3],[0,2,2,1]],[[0,1,1,1],[2,3,2,1],[1,2,2,2],[0,3,2,1]],[[0,1,1,1],[2,3,2,1],[1,2,2,2],[0,2,3,1]],[[0,1,1,1],[2,3,2,1],[1,2,2,2],[0,2,2,2]],[[0,1,1,1],[2,3,2,1],[1,2,4,1],[0,2,2,1]],[[0,1,1,1],[2,3,2,1],[1,2,3,1],[0,3,2,1]],[[0,1,1,1],[2,3,2,1],[1,2,3,1],[0,2,3,1]],[[0,1,1,1],[2,3,2,1],[1,2,3,1],[0,2,2,2]],[[0,1,1,1],[2,3,2,1],[1,2,4,2],[0,2,1,1]],[[0,1,1,1],[2,3,2,1],[1,2,3,3],[0,2,1,1]],[[0,1,1,1],[2,3,2,1],[1,2,3,2],[0,2,1,2]],[[0,1,1,1],[2,3,2,1],[1,2,4,2],[0,2,2,0]],[[0,1,1,1],[2,3,2,1],[1,2,3,3],[0,2,2,0]],[[0,1,1,1],[2,3,2,1],[1,2,3,2],[0,3,2,0]],[[0,1,1,1],[2,3,2,1],[1,2,3,2],[0,2,3,0]],[[2,2,2,1],[2,3,1,1],[2,1,3,0],[1,2,1,0]],[[0,1,1,1],[3,3,2,1],[1,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,4,2,1],[1,3,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,1],[1,4,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,1,3],[0,2,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,1,2],[0,3,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,1,2],[0,2,3,1]],[[0,1,1,1],[2,3,2,1],[1,3,1,2],[0,2,2,2]],[[0,1,1,1],[3,3,2,1],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,4,2,1],[1,3,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,1],[1,4,1,2],[1,1,2,1]],[[0,1,1,1],[3,3,2,1],[1,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,4,2,1],[1,3,2,1],[0,2,2,1]],[[0,1,1,1],[2,3,2,1],[1,4,2,1],[0,2,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,2,1],[0,3,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,2,1],[0,2,3,1]],[[0,1,1,1],[2,3,2,1],[1,3,2,1],[0,2,2,2]],[[0,1,1,1],[3,3,2,1],[1,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,4,2,1],[1,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,3,2,1],[1,4,2,1],[1,1,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,3,2,1],[1,3,2,2],[0,1,2,2]],[[0,1,1,1],[3,3,2,1],[1,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,4,2,1],[1,3,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,2,1],[1,4,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,2,1],[1,3,2,2],[0,3,2,0]],[[0,1,1,1],[2,3,2,1],[1,3,2,2],[0,2,3,0]],[[0,1,1,1],[2,3,2,1],[1,3,2,3],[1,0,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,2,2],[1,0,3,1]],[[0,1,1,1],[2,3,2,1],[1,3,2,2],[1,0,2,2]],[[0,1,1,1],[3,3,2,1],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,4,2,1],[1,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,1],[1,4,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,1],[1,4,3,0],[0,2,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,0],[0,3,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,0],[0,2,3,1]],[[0,1,1,1],[3,3,2,1],[1,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,4,2,1],[1,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,2,1],[1,4,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,1],[0,1,2,2]],[[0,1,1,1],[3,3,2,1],[1,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,4,2,1],[1,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,2,1],[1,4,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,2,1],[1,3,4,1],[0,2,1,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,1],[0,3,1,1]],[[0,1,1,1],[3,3,2,1],[1,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,4,2,1],[1,3,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,2,1],[1,4,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,4,1],[1,0,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,1],[1,0,3,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,1],[1,0,2,2]],[[0,1,1,1],[3,3,2,1],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,4,2,1],[1,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,2,1],[1,4,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,2,1],[1,3,4,1],[1,1,1,1]],[[0,1,1,1],[2,3,2,1],[1,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,2],[0,0,2,2]],[[0,1,1,1],[3,3,2,1],[1,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,4,2,1],[1,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,1],[1,4,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,1],[1,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,2],[0,1,1,2]],[[0,1,1,1],[3,3,2,1],[1,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,4,2,1],[1,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,1],[1,4,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,1],[1,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,1],[1,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,3,2,1],[1,3,3,2],[0,1,3,0]],[[0,1,1,1],[3,3,2,1],[1,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,4,2,1],[1,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,1],[1,4,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,1],[1,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,2],[0,3,0,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,2],[0,2,0,2]],[[0,1,1,1],[3,3,2,1],[1,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,4,2,1],[1,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,1],[1,4,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,1],[1,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,1],[1,3,3,3],[0,2,1,0]],[[0,1,1,1],[2,3,2,1],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,3,1,1],[2,1,2,1],[2,2,1,0]],[[1,2,2,1],[2,3,1,1],[3,1,2,1],[1,2,1,0]],[[1,2,2,1],[3,3,1,1],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[2,3,1,1],[2,1,2,1],[1,2,1,0]],[[0,1,1,1],[3,3,2,1],[1,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,4,2,1],[1,3,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,2,1],[1,4,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,2,1],[1,3,4,2],[1,0,1,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,3],[1,0,1,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,2],[1,0,1,2]],[[0,1,1,1],[3,3,2,1],[1,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,4,2,1],[1,3,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,2,1],[1,4,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,2,1],[1,3,4,2],[1,0,2,0]],[[0,1,1,1],[2,3,2,1],[1,3,3,3],[1,0,2,0]],[[0,1,1,1],[2,3,2,1],[1,3,3,2],[1,0,3,0]],[[0,1,1,1],[3,3,2,1],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,4,2,1],[1,3,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,2,1],[1,4,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,2,1],[1,3,4,2],[1,1,0,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,3],[1,1,0,1]],[[0,1,1,1],[2,3,2,1],[1,3,3,2],[1,1,0,2]],[[0,1,1,1],[3,3,2,1],[1,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,4,2,1],[1,3,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,2,1],[1,4,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,2,1],[1,3,4,2],[1,1,1,0]],[[0,1,1,1],[2,3,2,1],[1,3,3,3],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[2,3,1,1],[2,1,2,1],[2,2,0,1]],[[1,2,2,1],[2,3,1,1],[3,1,2,1],[1,2,0,1]],[[1,2,2,1],[3,3,1,1],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[2,3,1,1],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[2,3,1,1],[2,1,2,1],[1,2,0,1]],[[0,1,1,1],[3,3,2,1],[1,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,4,2,1],[1,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,3,1,1],[2,1,2,0],[2,2,1,1]],[[1,2,2,1],[2,3,1,1],[3,1,2,0],[1,2,1,1]],[[1,2,2,1],[3,3,1,1],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[2,3,1,1],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[2,3,1,1],[2,1,2,0],[1,2,1,1]],[[0,1,1,1],[3,3,2,1],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,4,2,1],[2,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[3,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[2,0,2,3],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[2,0,2,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,1],[2,0,2,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,1],[2,0,2,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,1],[2,0,2,2],[1,2,2,2]],[[0,1,1,1],[3,3,2,1],[2,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,4,2,1],[2,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[3,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[2,0,4,1],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[2,0,3,1],[2,2,2,1]],[[0,1,1,1],[2,3,2,1],[2,0,3,1],[1,3,2,1]],[[0,1,1,1],[2,3,2,1],[2,0,3,1],[1,2,3,1]],[[0,1,1,1],[2,3,2,1],[2,0,3,1],[1,2,2,2]],[[0,1,1,1],[2,3,2,1],[2,0,4,2],[1,2,1,1]],[[0,1,1,1],[2,3,2,1],[2,0,3,3],[1,2,1,1]],[[0,1,1,1],[2,3,2,1],[2,0,3,2],[1,2,1,2]],[[0,1,1,1],[3,3,2,1],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,4,2,1],[2,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,1],[3,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,1],[2,0,4,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,1],[2,0,3,3],[1,2,2,0]],[[0,1,1,1],[2,3,2,1],[2,0,3,2],[2,2,2,0]],[[0,1,1,1],[2,3,2,1],[2,0,3,2],[1,3,2,0]],[[0,1,1,1],[2,3,2,1],[2,0,3,2],[1,2,3,0]],[[0,1,1,1],[3,3,2,1],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,4,2,1],[2,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[3,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[2,1,1,3],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[2,1,1,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,1],[2,1,1,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,1],[2,1,1,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,1],[2,1,1,2],[1,2,2,2]],[[0,1,1,1],[3,3,2,1],[2,1,2,1],[1,2,2,1]],[[0,1,1,1],[2,4,2,1],[2,1,2,1],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[3,1,2,1],[1,2,2,1]],[[0,1,1,1],[2,3,2,1],[2,1,2,1],[2,2,2,1]],[[0,1,1,1],[2,3,2,1],[2,1,2,1],[1,3,2,1]],[[0,1,1,1],[2,3,2,1],[2,1,2,1],[1,2,3,1]],[[0,1,1,1],[2,3,2,1],[2,1,2,1],[1,2,2,2]],[[0,1,1,1],[3,3,2,1],[2,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,4,2,1],[2,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,1],[3,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,1],[2,1,2,2],[2,2,2,0]],[[0,1,1,1],[2,3,2,1],[2,1,2,2],[1,3,2,0]],[[0,1,1,1],[2,3,2,1],[2,1,2,2],[1,2,3,0]],[[0,1,1,1],[3,3,2,1],[2,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,4,2,1],[2,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,2,1],[3,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,2,1],[2,1,3,1],[2,2,1,1]],[[0,1,1,1],[2,3,2,1],[2,1,3,1],[1,3,1,1]],[[0,1,1,1],[3,3,2,1],[2,1,3,2],[1,2,0,1]],[[0,1,1,1],[2,4,2,1],[2,1,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,2,1],[3,1,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,2,1],[2,1,3,2],[2,2,0,1]],[[0,1,1,1],[2,3,2,1],[2,1,3,2],[1,3,0,1]],[[0,1,1,1],[3,3,2,1],[2,1,3,2],[1,2,1,0]],[[0,1,1,1],[2,4,2,1],[2,1,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,2,1],[3,1,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,2,1],[2,1,3,2],[2,2,1,0]],[[0,1,1,1],[2,3,2,1],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,1,1],[2,1,1,2],[2,2,1,0]],[[1,2,2,1],[2,3,1,1],[3,1,1,2],[1,2,1,0]],[[1,2,2,1],[3,3,1,1],[2,1,1,2],[1,2,1,0]],[[1,3,2,1],[2,3,1,1],[2,1,1,2],[1,2,1,0]],[[2,2,2,1],[2,3,1,1],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[2,3,1,1],[2,1,1,2],[2,2,0,1]],[[1,2,2,1],[2,3,1,1],[3,1,1,2],[1,2,0,1]],[[1,2,2,1],[3,3,1,1],[2,1,1,2],[1,2,0,1]],[[0,1,1,1],[3,3,2,1],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[2,4,2,1],[2,2,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,1],[3,2,1,2],[0,2,2,1]],[[0,1,1,1],[3,3,2,1],[2,2,1,2],[1,1,2,1]],[[0,1,1,1],[2,4,2,1],[2,2,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,1],[3,2,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,1],[2,2,1,2],[2,1,2,1]],[[0,1,1,1],[3,3,2,1],[2,2,2,1],[0,2,2,1]],[[0,1,1,1],[2,4,2,1],[2,2,2,1],[0,2,2,1]],[[0,1,1,1],[2,3,2,1],[3,2,2,1],[0,2,2,1]],[[0,1,1,1],[3,3,2,1],[2,2,2,1],[1,1,2,1]],[[0,1,1,1],[2,4,2,1],[2,2,2,1],[1,1,2,1]],[[0,1,1,1],[2,3,2,1],[3,2,2,1],[1,1,2,1]],[[0,1,1,1],[2,3,2,1],[2,2,2,1],[2,1,2,1]],[[0,1,1,1],[3,3,2,1],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[2,4,2,1],[2,2,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,2,1],[3,2,2,2],[0,2,2,0]],[[0,1,1,1],[3,3,2,1],[2,2,2,2],[1,1,2,0]],[[0,1,1,1],[2,4,2,1],[2,2,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,1],[3,2,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,1],[2,2,2,2],[2,1,2,0]],[[1,3,2,1],[2,3,1,1],[2,1,1,2],[1,2,0,1]],[[2,2,2,1],[2,3,1,1],[2,1,1,2],[1,2,0,1]],[[0,1,1,1],[3,3,2,1],[2,2,3,1],[0,1,2,1]],[[0,1,1,1],[2,4,2,1],[2,2,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,2,1],[3,2,3,1],[0,1,2,1]],[[0,1,1,1],[3,3,2,1],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,4,2,1],[2,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,2,1],[3,2,3,1],[0,2,1,1]],[[0,1,1,1],[3,3,2,1],[2,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,4,2,1],[2,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,2,1],[3,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,2,1],[2,2,3,1],[2,0,2,1]],[[0,1,1,1],[3,3,2,1],[2,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,4,2,1],[2,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,2,1],[3,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,2,1],[2,2,3,1],[2,1,1,1]],[[1,2,2,1],[2,3,1,1],[2,1,1,1],[1,3,2,0]],[[1,2,2,1],[2,3,1,1],[2,1,1,1],[2,2,2,0]],[[1,2,2,1],[2,3,1,1],[3,1,1,1],[1,2,2,0]],[[1,2,2,1],[3,3,1,1],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[2,3,1,1],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[2,3,1,1],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[2,3,1,1],[2,1,1,0],[1,3,2,1]],[[1,2,2,1],[2,3,1,1],[2,1,1,0],[2,2,2,1]],[[0,1,1,1],[3,3,2,1],[2,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,4,2,1],[2,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,1],[3,2,3,2],[0,1,1,1]],[[0,1,1,1],[3,3,2,1],[2,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,4,2,1],[2,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,1],[3,2,3,2],[0,1,2,0]],[[0,1,1,1],[3,3,2,1],[2,2,3,2],[0,2,0,1]],[[0,1,1,1],[2,4,2,1],[2,2,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,1],[3,2,3,2],[0,2,0,1]],[[0,1,1,1],[3,3,2,1],[2,2,3,2],[0,2,1,0]],[[0,1,1,1],[2,4,2,1],[2,2,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,1],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,3,1,1],[3,1,1,0],[1,2,2,1]],[[1,2,2,1],[3,3,1,1],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[2,3,1,1],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[2,3,1,1],[2,1,1,0],[1,2,2,1]],[[0,1,1,1],[3,3,2,1],[2,2,3,2],[1,0,1,1]],[[0,1,1,1],[2,4,2,1],[2,2,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,2,1],[3,2,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,2,1],[2,2,3,2],[2,0,1,1]],[[0,1,1,1],[3,3,2,1],[2,2,3,2],[1,0,2,0]],[[0,1,1,1],[2,4,2,1],[2,2,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,2,1],[3,2,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,2,1],[2,2,3,2],[2,0,2,0]],[[0,1,1,1],[3,3,2,1],[2,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,4,2,1],[2,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,2,1],[3,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,2,1],[2,2,3,2],[2,1,0,1]],[[0,1,1,1],[3,3,2,1],[2,2,3,2],[1,1,1,0]],[[0,1,1,1],[2,4,2,1],[2,2,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,2,1],[3,2,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,2,1],[2,2,3,2],[2,1,1,0]],[[0,1,1,1],[3,3,2,1],[2,2,3,2],[1,2,0,0]],[[0,1,1,1],[2,4,2,1],[2,2,3,2],[1,2,0,0]],[[0,1,1,1],[2,3,2,1],[3,2,3,2],[1,2,0,0]],[[0,1,1,1],[2,3,2,1],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[2,3,1,1],[2,1,0,2],[1,3,2,0]],[[1,2,2,1],[2,3,1,1],[2,1,0,2],[2,2,2,0]],[[1,2,2,1],[2,3,1,1],[3,1,0,2],[1,2,2,0]],[[1,2,2,1],[3,3,1,1],[2,1,0,2],[1,2,2,0]],[[1,3,2,1],[2,3,1,1],[2,1,0,2],[1,2,2,0]],[[2,2,2,1],[2,3,1,1],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[2,3,1,1],[2,1,0,2],[2,2,1,1]],[[1,2,2,1],[2,3,1,1],[3,1,0,2],[1,2,1,1]],[[1,2,2,1],[3,3,1,1],[2,1,0,2],[1,2,1,1]],[[1,3,2,1],[2,3,1,1],[2,1,0,2],[1,2,1,1]],[[2,2,2,1],[2,3,1,1],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[2,3,1,1],[2,1,0,1],[1,3,2,1]],[[1,2,2,1],[2,3,1,1],[2,1,0,1],[2,2,2,1]],[[1,2,2,1],[2,3,1,1],[3,1,0,1],[1,2,2,1]],[[1,2,2,1],[3,3,1,1],[2,1,0,1],[1,2,2,1]],[[1,3,2,1],[2,3,1,1],[2,1,0,1],[1,2,2,1]],[[2,2,2,1],[2,3,1,1],[2,1,0,1],[1,2,2,1]],[[1,2,2,1],[3,3,1,1],[2,0,0,2],[1,2,2,1]],[[1,2,2,2],[2,3,1,1],[2,0,0,2],[1,2,2,1]],[[1,2,3,1],[2,3,1,1],[2,0,0,2],[1,2,2,1]],[[1,3,2,1],[2,3,1,1],[2,0,0,2],[1,2,2,1]],[[2,2,2,1],[2,3,1,1],[2,0,0,2],[1,2,2,1]],[[1,2,2,1],[3,3,1,1],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,1,1],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,1,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[3,3,1,1],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,1,1],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,1,1],[1,3,3,1],[0,2,0,0]],[[0,1,1,1],[3,3,2,1],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[2,4,2,1],[2,3,3,2],[1,0,0,1]],[[0,1,1,1],[2,3,2,1],[3,3,3,2],[1,0,0,1]],[[0,1,1,1],[3,3,2,1],[2,3,3,2],[1,0,1,0]],[[0,1,1,1],[2,4,2,1],[2,3,3,2],[1,0,1,0]],[[0,1,1,1],[2,3,2,1],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[3,3,1,1],[1,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,3,1,1],[1,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,3,1,1],[1,3,3,0],[1,2,0,0]],[[1,2,2,1],[3,3,1,1],[1,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,1,1],[1,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[3,3,1,1],[1,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,3,1,1],[1,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,3,1,1],[1,3,3,0],[1,0,2,0]],[[1,2,2,1],[3,3,1,1],[1,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,1,1],[1,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,1,1],[1,3,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[1,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,3,1,1],[1,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,3,1,1],[1,3,3,0],[0,1,2,0]],[[0,1,1,2],[2,3,2,2],[0,0,3,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,3],[0,0,3,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,0,3,3],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,0,3,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[0,0,3,2],[1,2,2,2]],[[0,1,1,2],[2,3,2,2],[0,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,3],[0,1,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,1,2,3],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,1,2,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,1,2,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,2],[0,1,2,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[0,1,2,2],[1,2,2,2]],[[0,1,1,1],[2,3,2,2],[0,1,4,1],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,1,3,1],[2,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,1,3,1],[1,3,2,1]],[[0,1,1,1],[2,3,2,2],[0,1,3,1],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[0,1,3,1],[1,2,2,2]],[[0,1,1,2],[2,3,2,2],[0,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,2,3],[0,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,2,2],[0,1,4,2],[1,2,1,1]],[[0,1,1,1],[2,3,2,2],[0,1,3,3],[1,2,1,1]],[[0,1,1,1],[2,3,2,2],[0,1,3,2],[1,2,1,2]],[[0,1,1,2],[2,3,2,2],[0,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,3],[0,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[0,1,4,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[0,1,3,3],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[0,1,3,2],[2,2,2,0]],[[0,1,1,1],[2,3,2,2],[0,1,3,2],[1,3,2,0]],[[0,1,1,1],[2,3,2,2],[0,1,3,2],[1,2,3,0]],[[0,1,1,2],[2,3,2,2],[0,2,2,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,3],[0,2,2,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[0,2,2,3],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[0,2,2,2],[1,1,3,1]],[[0,1,1,1],[2,3,2,2],[0,2,2,2],[1,1,2,2]],[[0,1,1,1],[2,3,2,2],[0,2,4,0],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,0],[2,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,0],[1,3,2,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,0],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,0],[1,2,2,2]],[[0,1,1,1],[2,3,2,2],[0,2,4,1],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,1],[1,1,3,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,1],[1,1,2,2]],[[0,1,1,1],[2,3,2,2],[0,2,4,1],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[0,2,3,1],[2,2,2,0]],[[0,1,1,1],[2,3,2,2],[0,2,3,1],[1,3,2,0]],[[0,1,1,1],[2,3,2,2],[0,2,3,1],[1,2,3,0]],[[0,1,1,2],[2,3,2,2],[0,2,3,2],[1,0,2,1]],[[0,1,1,1],[2,3,2,3],[0,2,3,2],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[0,2,4,2],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,3],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,2],[1,0,2,2]],[[0,1,1,2],[2,3,2,2],[0,2,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,2,3],[0,2,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[0,2,4,2],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,3],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,2],[1,1,1,2]],[[0,1,1,2],[2,3,2,2],[0,2,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,3],[0,2,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[0,2,4,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[0,2,3,3],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[0,2,3,2],[1,1,3,0]],[[0,1,1,2],[2,3,2,2],[0,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,2,3],[0,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[0,2,4,2],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,3],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[0,2,3,2],[1,2,0,2]],[[0,1,1,2],[2,3,2,2],[0,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,2,3],[0,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,2,2],[0,2,4,2],[1,2,1,0]],[[0,1,1,1],[2,3,2,2],[0,2,3,3],[1,2,1,0]],[[0,1,1,2],[2,3,2,2],[0,3,0,2],[1,2,2,1]],[[0,1,1,1],[3,3,2,2],[0,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,4,2,2],[0,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,3],[0,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,4,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,0,3],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,0,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,0,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,0,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[0,3,0,2],[1,2,2,2]],[[0,1,1,1],[3,3,2,2],[0,3,2,0],[1,2,2,1]],[[0,1,1,1],[2,4,2,2],[0,3,2,0],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,4,2,0],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,2,0],[2,2,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,2,0],[1,3,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,2,0],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[0,3,2,0],[1,2,2,2]],[[0,1,1,1],[3,3,2,2],[0,3,2,1],[1,2,2,0]],[[0,1,1,1],[2,4,2,2],[0,3,2,1],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[0,4,2,1],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[0,3,2,1],[2,2,2,0]],[[0,1,1,1],[2,3,2,2],[0,3,2,1],[1,3,2,0]],[[0,1,1,1],[2,3,2,2],[0,3,2,1],[1,2,3,0]],[[0,1,1,2],[2,3,2,2],[0,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,3,2,3],[0,3,2,2],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,3,2,2],[0,3,2,2],[0,1,2,2]],[[0,1,1,1],[3,3,2,2],[0,3,3,0],[1,1,2,1]],[[0,1,1,1],[2,4,2,2],[0,3,3,0],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[0,4,3,0],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,4,0],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,0],[1,1,3,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,0],[1,1,2,2]],[[0,1,1,1],[3,3,2,2],[0,3,3,0],[1,2,1,1]],[[0,1,1,1],[2,4,2,2],[0,3,3,0],[1,2,1,1]],[[0,1,1,1],[2,3,2,2],[0,4,3,0],[1,2,1,1]],[[0,1,1,1],[2,3,2,2],[0,3,4,0],[1,2,1,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,0],[2,2,1,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,0],[1,3,1,1]],[[0,1,1,1],[2,3,2,2],[0,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,1],[0,1,2,2]],[[0,1,1,1],[3,3,2,2],[0,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,4,2,2],[0,3,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[0,4,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[0,3,4,1],[1,1,1,1]],[[0,1,1,1],[3,3,2,2],[0,3,3,1],[1,1,2,0]],[[0,1,1,1],[2,4,2,2],[0,3,3,1],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[0,4,3,1],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[0,3,4,1],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[0,3,3,1],[1,1,3,0]],[[0,1,1,1],[3,3,2,2],[0,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,4,2,2],[0,3,3,1],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[0,4,3,1],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[0,3,4,1],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,1],[2,2,0,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,1],[1,3,0,1]],[[0,1,1,1],[3,3,2,2],[0,3,3,1],[1,2,1,0]],[[0,1,1,1],[2,4,2,2],[0,3,3,1],[1,2,1,0]],[[0,1,1,1],[2,3,2,2],[0,4,3,1],[1,2,1,0]],[[0,1,1,1],[2,3,2,2],[0,3,4,1],[1,2,1,0]],[[0,1,1,1],[2,3,2,2],[0,3,3,1],[2,2,1,0]],[[0,1,1,1],[2,3,2,2],[0,3,3,1],[1,3,1,0]],[[0,1,1,2],[2,3,2,2],[0,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,2,3],[0,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,2],[0,0,2,2]],[[0,1,1,2],[2,3,2,2],[0,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,3],[0,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[0,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,2],[0,1,1,2]],[[0,1,1,2],[2,3,2,2],[0,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,3],[0,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[0,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[0,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[0,3,3,2],[0,1,3,0]],[[0,1,1,2],[2,3,2,2],[0,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,3],[0,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[0,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[0,3,3,2],[0,2,0,2]],[[0,1,1,2],[2,3,2,2],[0,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,3],[0,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,2],[0,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,1,1],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,1,1],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,3,1,1],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,3,1,1],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,1,1],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,1,1],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,1,1],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,3,1,1],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,1,1],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,1,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,3,1,1],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,1,1],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,1,1],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[3,3,1,1],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,1,1],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,1,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,1,1],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,1,1],[1,3,2,1],[0,2,0,1]],[[0,1,1,2],[2,3,2,2],[1,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,3],[1,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,0,2,3],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,0,2,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,0,2,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,2],[1,0,2,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[1,0,2,2],[1,2,2,2]],[[0,1,1,1],[2,3,2,2],[1,0,4,1],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,0,3,1],[2,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,0,3,1],[1,3,2,1]],[[0,1,1,1],[2,3,2,2],[1,0,3,1],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[1,0,3,1],[1,2,2,2]],[[0,1,1,2],[2,3,2,2],[1,0,3,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,3],[1,0,3,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,0,3,3],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,0,3,2],[0,2,3,1]],[[0,1,1,1],[2,3,2,2],[1,0,3,2],[0,2,2,2]],[[0,1,1,2],[2,3,2,2],[1,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,2,3],[1,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,2,2],[1,0,4,2],[1,2,1,1]],[[0,1,1,1],[2,3,2,2],[1,0,3,3],[1,2,1,1]],[[0,1,1,1],[2,3,2,2],[1,0,3,2],[1,2,1,2]],[[0,1,1,2],[2,3,2,2],[1,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,3],[1,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[1,0,4,2],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[1,0,3,3],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[1,0,3,2],[2,2,2,0]],[[0,1,1,1],[2,3,2,2],[1,0,3,2],[1,3,2,0]],[[0,1,1,1],[2,3,2,2],[1,0,3,2],[1,2,3,0]],[[0,1,1,2],[2,3,2,2],[1,1,2,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,3],[1,1,2,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,1,2,3],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,1,2,2],[0,3,2,1]],[[0,1,1,1],[2,3,2,2],[1,1,2,2],[0,2,3,1]],[[0,1,1,1],[2,3,2,2],[1,1,2,2],[0,2,2,2]],[[0,1,1,1],[2,3,2,2],[1,1,4,1],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,1,3,1],[0,3,2,1]],[[0,1,1,1],[2,3,2,2],[1,1,3,1],[0,2,3,1]],[[0,1,1,1],[2,3,2,2],[1,1,3,1],[0,2,2,2]],[[0,1,1,2],[2,3,2,2],[1,1,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,2,3],[1,1,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,2,2],[1,1,4,2],[0,2,1,1]],[[0,1,1,1],[2,3,2,2],[1,1,3,3],[0,2,1,1]],[[0,1,1,1],[2,3,2,2],[1,1,3,2],[0,2,1,2]],[[0,1,1,2],[2,3,2,2],[1,1,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,2,3],[1,1,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,2,2],[1,1,4,2],[0,2,2,0]],[[0,1,1,1],[2,3,2,2],[1,1,3,3],[0,2,2,0]],[[0,1,1,1],[2,3,2,2],[1,1,3,2],[0,3,2,0]],[[0,1,1,1],[2,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[3,3,1,1],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,1,1],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,1,1],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,3,1,1],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,3,1,1],[1,3,2,1],[0,1,1,1]],[[0,1,1,2],[2,3,2,2],[1,2,2,2],[0,1,2,1]],[[0,1,1,1],[2,3,2,3],[1,2,2,2],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[1,2,2,3],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[1,2,2,2],[0,1,3,1]],[[0,1,1,1],[2,3,2,2],[1,2,2,2],[0,1,2,2]],[[0,1,1,2],[2,3,2,2],[1,2,2,2],[1,0,2,1]],[[0,1,1,1],[2,3,2,3],[1,2,2,2],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[1,2,2,3],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[1,2,2,2],[1,0,3,1]],[[0,1,1,1],[2,3,2,2],[1,2,2,2],[1,0,2,2]],[[2,2,2,1],[2,3,1,1],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[3,3,1,1],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,1,1],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,3,1,1],[1,3,2,0],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[1,2,4,0],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,0],[0,3,2,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,0],[0,2,3,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,0],[0,2,2,2]],[[0,1,1,1],[2,3,2,2],[1,2,4,1],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,1],[0,1,3,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,1],[0,1,2,2]],[[0,1,1,1],[2,3,2,2],[1,2,4,1],[0,2,2,0]],[[0,1,1,1],[2,3,2,2],[1,2,3,1],[0,3,2,0]],[[0,1,1,1],[2,3,2,2],[1,2,3,1],[0,2,3,0]],[[0,1,1,1],[2,3,2,2],[1,2,4,1],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,1],[1,0,3,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,1],[1,0,2,2]],[[0,1,1,2],[2,3,2,2],[1,2,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,2,3],[1,2,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,2,2],[1,2,4,2],[0,0,2,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,3],[0,0,2,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,2],[0,0,2,2]],[[0,1,1,2],[2,3,2,2],[1,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,3],[1,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[1,2,4,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,3],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,2],[0,1,1,2]],[[0,1,1,2],[2,3,2,2],[1,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,3],[1,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[1,2,4,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[1,2,3,3],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[1,2,3,2],[0,1,3,0]],[[0,1,1,2],[2,3,2,2],[1,2,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,3],[1,2,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[1,2,4,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,3],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,2],[0,2,0,2]],[[0,1,1,2],[2,3,2,2],[1,2,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,3],[1,2,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,2],[1,2,4,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,1,1],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,1,1],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,3,1,1],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,1,1],[1,3,2,0],[1,0,2,1]],[[0,1,1,2],[2,3,2,2],[1,2,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,2,3],[1,2,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,2,2],[1,2,4,2],[1,0,1,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,3],[1,0,1,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,2],[1,0,1,2]],[[0,1,1,2],[2,3,2,2],[1,2,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,2,3],[1,2,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,2,2],[1,2,4,2],[1,0,2,0]],[[0,1,1,1],[2,3,2,2],[1,2,3,3],[1,0,2,0]],[[0,1,1,1],[2,3,2,2],[1,2,3,2],[1,0,3,0]],[[0,1,1,2],[2,3,2,2],[1,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,2,3],[1,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,2,2],[1,2,4,2],[1,1,0,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,3],[1,1,0,1]],[[0,1,1,1],[2,3,2,2],[1,2,3,2],[1,1,0,2]],[[0,1,1,2],[2,3,2,2],[1,2,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,2,3],[1,2,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,2,2],[1,2,4,2],[1,1,1,0]],[[0,1,1,1],[2,3,2,2],[1,2,3,3],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,3,1,1],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,1,1],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,1,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,1,1],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,1,1],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,1,1],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[3,3,1,1],[1,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,3,1,1],[1,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,3,1,1],[1,3,1,2],[1,2,0,0]],[[0,1,1,2],[2,3,2,2],[1,3,0,2],[0,2,2,1]],[[0,1,1,1],[3,3,2,2],[1,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,4,2,2],[1,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,3],[1,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,4,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,3,0,3],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,3,0,2],[0,3,2,1]],[[0,1,1,1],[2,3,2,2],[1,3,0,2],[0,2,3,1]],[[0,1,1,1],[2,3,2,2],[1,3,0,2],[0,2,2,2]],[[0,1,1,1],[3,3,2,2],[1,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,4,2,2],[1,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[1,4,0,2],[1,1,2,1]],[[1,2,2,1],[3,3,1,1],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,1,1],[1,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[3,3,1,1],[1,3,1,2],[1,1,0,1]],[[0,1,1,1],[3,3,2,2],[1,3,2,0],[0,2,2,1]],[[0,1,1,1],[2,4,2,2],[1,3,2,0],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,4,2,0],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[1,3,2,0],[0,3,2,1]],[[0,1,1,1],[2,3,2,2],[1,3,2,0],[0,2,3,1]],[[0,1,1,1],[2,3,2,2],[1,3,2,0],[0,2,2,2]],[[0,1,1,1],[3,3,2,2],[1,3,2,0],[1,1,2,1]],[[0,1,1,1],[2,4,2,2],[1,3,2,0],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[1,4,2,0],[1,1,2,1]],[[0,1,1,1],[3,3,2,2],[1,3,2,1],[0,2,2,0]],[[0,1,1,1],[2,4,2,2],[1,3,2,1],[0,2,2,0]],[[0,1,1,1],[2,3,2,2],[1,4,2,1],[0,2,2,0]],[[0,1,1,1],[2,3,2,2],[1,3,2,1],[0,3,2,0]],[[0,1,1,1],[2,3,2,2],[1,3,2,1],[0,2,3,0]],[[0,1,1,1],[3,3,2,2],[1,3,2,1],[1,1,2,0]],[[0,1,1,1],[2,4,2,2],[1,3,2,1],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[1,4,2,1],[1,1,2,0]],[[1,3,2,1],[2,3,1,1],[1,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,1,1],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,3,1,1],[1,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,3,1,1],[1,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,1,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[3,3,1,1],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,3,1,1],[1,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,1,1],[1,3,1,2],[1,0,1,1]],[[1,2,2,1],[3,3,1,1],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,1,1],[1,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,1,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,3,1,1],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,1,1],[1,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,1,1],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[3,3,1,1],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,1,1],[1,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,1,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[3,3,1,1],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,3,1,1],[1,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,1,1],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[3,3,1,1],[1,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,1,1],[1,3,1,1],[1,1,2,0]],[[0,1,1,1],[3,3,2,2],[1,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,4,2,2],[1,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[1,4,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[1,3,4,0],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[1,3,3,0],[0,1,3,1]],[[0,1,1,1],[2,3,2,2],[1,3,3,0],[0,1,2,2]],[[0,1,1,1],[3,3,2,2],[1,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,4,2,2],[1,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,2,2],[1,4,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,2,2],[1,3,4,0],[0,2,1,1]],[[0,1,1,1],[2,3,2,2],[1,3,3,0],[0,3,1,1]],[[0,1,1,1],[3,3,2,2],[1,3,3,0],[1,0,2,1]],[[0,1,1,1],[2,4,2,2],[1,3,3,0],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[1,4,3,0],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[1,3,4,0],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[1,3,3,0],[1,0,3,1]],[[0,1,1,1],[2,3,2,2],[1,3,3,0],[1,0,2,2]],[[0,1,1,1],[3,3,2,2],[1,3,3,0],[1,1,1,1]],[[0,1,1,1],[2,4,2,2],[1,3,3,0],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[1,4,3,0],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[1,3,4,0],[1,1,1,1]],[[0,1,1,1],[3,3,2,2],[1,3,3,0],[1,2,0,1]],[[0,1,1,1],[2,4,2,2],[1,3,3,0],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[1,4,3,0],[1,2,0,1]],[[2,2,2,1],[2,3,1,1],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,3,1,1],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,1,1],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,1,1],[1,3,1,1],[0,2,2,0]],[[0,1,1,1],[3,3,2,2],[1,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,4,2,2],[1,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[1,4,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[1,3,4,1],[0,1,1,1]],[[0,1,1,1],[3,3,2,2],[1,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,4,2,2],[1,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[1,4,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[1,3,4,1],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[1,3,3,1],[0,1,3,0]],[[0,1,1,1],[3,3,2,2],[1,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,4,2,2],[1,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[1,4,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[1,3,4,1],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[1,3,3,1],[0,3,0,1]],[[0,1,1,1],[3,3,2,2],[1,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,4,2,2],[1,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,2,2],[1,4,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,2,2],[1,3,4,1],[0,2,1,0]],[[0,1,1,1],[2,3,2,2],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[3,3,1,1],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,1,1],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,1,1],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,3,1,1],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,1,1],[1,3,1,0],[0,2,2,1]],[[0,1,1,1],[3,3,2,2],[1,3,3,1],[1,0,1,1]],[[0,1,1,1],[2,4,2,2],[1,3,3,1],[1,0,1,1]],[[0,1,1,1],[2,3,2,2],[1,4,3,1],[1,0,1,1]],[[0,1,1,1],[2,3,2,2],[1,3,4,1],[1,0,1,1]],[[0,1,1,1],[3,3,2,2],[1,3,3,1],[1,0,2,0]],[[0,1,1,1],[2,4,2,2],[1,3,3,1],[1,0,2,0]],[[0,1,1,1],[2,3,2,2],[1,4,3,1],[1,0,2,0]],[[0,1,1,1],[2,3,2,2],[1,3,4,1],[1,0,2,0]],[[0,1,1,1],[2,3,2,2],[1,3,3,1],[1,0,3,0]],[[0,1,1,1],[3,3,2,2],[1,3,3,1],[1,1,0,1]],[[0,1,1,1],[2,4,2,2],[1,3,3,1],[1,1,0,1]],[[0,1,1,1],[2,3,2,2],[1,4,3,1],[1,1,0,1]],[[0,1,1,1],[2,3,2,2],[1,3,4,1],[1,1,0,1]],[[0,1,1,1],[3,3,2,2],[1,3,3,1],[1,1,1,0]],[[0,1,1,1],[2,4,2,2],[1,3,3,1],[1,1,1,0]],[[0,1,1,1],[2,3,2,2],[1,4,3,1],[1,1,1,0]],[[0,1,1,1],[2,3,2,2],[1,3,4,1],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[1,3,1,0],[0,2,2,1]],[[0,1,1,1],[3,3,2,2],[1,3,3,1],[1,2,0,0]],[[0,1,1,1],[2,4,2,2],[1,3,3,1],[1,2,0,0]],[[0,1,1,1],[2,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[3,3,1,1],[1,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,3,1,1],[1,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,3,1,1],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,3,1,1],[1,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,3,1,1],[1,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,3,1,1],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[3,3,1,1],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,1,1],[1,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,3,1,1],[1,3,0,2],[1,0,2,1]],[[0,1,1,2],[2,3,2,2],[1,3,3,2],[0,0,1,1]],[[0,1,1,1],[2,3,2,3],[1,3,3,2],[0,0,1,1]],[[0,1,1,1],[2,3,2,2],[1,3,4,2],[0,0,1,1]],[[0,1,1,1],[2,3,2,2],[1,3,3,3],[0,0,1,1]],[[0,1,1,1],[2,3,2,2],[1,3,3,2],[0,0,1,2]],[[0,1,1,2],[2,3,2,2],[1,3,3,2],[0,0,2,0]],[[0,1,1,1],[2,3,2,3],[1,3,3,2],[0,0,2,0]],[[0,1,1,1],[2,3,2,2],[1,3,4,2],[0,0,2,0]],[[0,1,1,1],[2,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[3,3,1,1],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,3,1,1],[1,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,3,1,1],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,3,1,1],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,3,1,1],[1,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,3,1,1],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[3,3,1,1],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,1,1],[1,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,1,1],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[3,3,1,1],[1,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,3,1,1],[1,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,3,1,1],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[3,3,1,1],[1,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,3,1,1],[1,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,3,1,1],[1,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,4,1,1],[0,3,3,1],[1,1,1,0]],[[1,2,2,2],[2,3,1,1],[0,3,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,1,1],[0,3,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,1,1],[0,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,1,1],[0,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,4,1,1],[0,3,3,1],[1,1,0,1]],[[1,2,2,2],[2,3,1,1],[0,3,3,1],[1,1,0,1]],[[1,2,3,1],[2,3,1,1],[0,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,1,1],[0,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,1,1],[0,3,3,1],[1,1,0,1]],[[0,1,1,2],[2,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[3,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,4,2,2],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,3],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[3,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,1,3],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,1,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,1,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,1,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[2,0,1,2],[1,2,2,2]],[[0,1,1,2],[2,3,2,2],[2,0,2,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,3],[2,0,2,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,2,3],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,2,2],[0,3,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,2,2],[0,2,3,1]],[[0,1,1,1],[2,3,2,2],[2,0,2,2],[0,2,2,2]],[[0,1,1,2],[2,3,2,2],[2,0,2,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,3],[2,0,2,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,2,3],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,2,2],[1,1,3,1]],[[0,1,1,1],[2,3,2,2],[2,0,2,2],[1,1,2,2]],[[0,1,1,1],[3,3,2,2],[2,0,3,0],[1,2,2,1]],[[0,1,1,1],[2,4,2,2],[2,0,3,0],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[3,0,3,0],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,4,0],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,0],[2,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,0],[1,3,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,0],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,0],[1,2,2,2]],[[0,1,1,1],[2,3,2,2],[2,0,4,1],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,1],[0,3,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,1],[0,2,3,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,1],[0,2,2,2]],[[0,1,1,1],[2,3,2,2],[2,0,4,1],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,1],[1,1,3,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,1],[1,1,2,2]],[[0,1,1,1],[3,3,2,2],[2,0,3,1],[1,2,2,0]],[[0,1,1,1],[2,4,2,2],[2,0,3,1],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[3,0,3,1],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[2,0,4,1],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[2,0,3,1],[2,2,2,0]],[[0,1,1,1],[2,3,2,2],[2,0,3,1],[1,3,2,0]],[[0,1,1,1],[2,3,2,2],[2,0,3,1],[1,2,3,0]],[[0,1,1,2],[2,3,2,2],[2,0,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,2,3],[2,0,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,2,2],[2,0,4,2],[0,2,1,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,3],[0,2,1,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,2],[0,2,1,2]],[[0,1,1,2],[2,3,2,2],[2,0,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,2,3],[2,0,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,2,2],[2,0,4,2],[0,2,2,0]],[[0,1,1,1],[2,3,2,2],[2,0,3,3],[0,2,2,0]],[[0,1,1,1],[2,3,2,2],[2,0,3,2],[0,3,2,0]],[[0,1,1,1],[2,3,2,2],[2,0,3,2],[0,2,3,0]],[[0,1,1,2],[2,3,2,2],[2,0,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,2,3],[2,0,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[2,0,4,2],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,3],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,2],[1,1,1,2]],[[0,1,1,2],[2,3,2,2],[2,0,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,3],[2,0,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[2,0,4,2],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[2,0,3,3],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[2,0,3,2],[1,1,3,0]],[[0,1,1,2],[2,3,2,2],[2,0,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,2,3],[2,0,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[2,0,4,2],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,3],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[2,0,3,2],[1,2,0,2]],[[0,1,1,2],[2,3,2,2],[2,0,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,2,3],[2,0,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,2,2],[2,0,4,2],[1,2,1,0]],[[0,1,1,1],[2,3,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[2,4,1,1],[0,3,3,1],[1,0,2,0]],[[1,2,2,2],[2,3,1,1],[0,3,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,1,1],[0,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,1,1],[0,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,1,1],[0,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,4,1,1],[0,3,3,1],[1,0,1,1]],[[1,2,2,2],[2,3,1,1],[0,3,3,1],[1,0,1,1]],[[1,2,3,1],[2,3,1,1],[0,3,3,1],[1,0,1,1]],[[0,1,1,2],[2,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[3,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,4,2,2],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,3],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[3,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,0,3],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,0,2],[2,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,0,2],[1,3,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,0,2],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[2,1,0,2],[1,2,2,2]],[[0,1,1,1],[3,3,2,2],[2,1,2,0],[1,2,2,1]],[[0,1,1,1],[2,4,2,2],[2,1,2,0],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[3,1,2,0],[1,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,2,0],[2,2,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,2,0],[1,3,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,2,0],[1,2,3,1]],[[0,1,1,1],[2,3,2,2],[2,1,2,0],[1,2,2,2]],[[0,1,1,1],[3,3,2,2],[2,1,2,1],[1,2,2,0]],[[0,1,1,1],[2,4,2,2],[2,1,2,1],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[3,1,2,1],[1,2,2,0]],[[0,1,1,1],[2,3,2,2],[2,1,2,1],[2,2,2,0]],[[0,1,1,1],[2,3,2,2],[2,1,2,1],[1,3,2,0]],[[0,1,1,1],[2,3,2,2],[2,1,2,1],[1,2,3,0]],[[0,1,1,2],[2,3,2,2],[2,1,2,2],[0,1,2,1]],[[0,1,1,1],[2,3,2,3],[2,1,2,2],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,2,3],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,2,2],[0,1,3,1]],[[0,1,1,1],[2,3,2,2],[2,1,2,2],[0,1,2,2]],[[0,1,1,2],[2,3,2,2],[2,1,2,2],[1,0,2,1]],[[0,1,1,1],[2,3,2,3],[2,1,2,2],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,2,3],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,2,2],[1,0,3,1]],[[0,1,1,1],[2,3,2,2],[2,1,2,2],[1,0,2,2]],[[1,3,2,1],[2,3,1,1],[0,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,1,1],[0,3,3,1],[1,0,1,1]],[[0,1,1,1],[3,3,2,2],[2,1,3,0],[1,2,1,1]],[[0,1,1,1],[2,4,2,2],[2,1,3,0],[1,2,1,1]],[[0,1,1,1],[2,3,2,2],[3,1,3,0],[1,2,1,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,0],[2,2,1,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,0],[1,3,1,1]],[[0,1,1,1],[2,3,2,2],[2,1,4,1],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,1],[0,1,3,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,1],[0,1,2,2]],[[0,1,1,1],[2,3,2,2],[2,1,4,1],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,1],[1,0,3,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,1],[1,0,2,2]],[[0,1,1,1],[3,3,2,2],[2,1,3,1],[1,2,0,1]],[[0,1,1,1],[2,4,2,2],[2,1,3,1],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[3,1,3,1],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,1],[2,2,0,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,1],[1,3,0,1]],[[0,1,1,1],[3,3,2,2],[2,1,3,1],[1,2,1,0]],[[0,1,1,1],[2,4,2,2],[2,1,3,1],[1,2,1,0]],[[0,1,1,1],[2,3,2,2],[3,1,3,1],[1,2,1,0]],[[0,1,1,1],[2,3,2,2],[2,1,3,1],[2,2,1,0]],[[0,1,1,1],[2,3,2,2],[2,1,3,1],[1,3,1,0]],[[1,2,2,1],[2,4,1,1],[0,3,3,1],[0,2,1,0]],[[1,2,2,2],[2,3,1,1],[0,3,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,1,1],[0,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,1,1],[0,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,1,1],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,4,1,1],[0,3,3,1],[0,2,0,1]],[[0,1,1,2],[2,3,2,2],[2,1,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,2,3],[2,1,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,4,2],[0,0,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,3],[0,0,2,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,2],[0,0,2,2]],[[0,1,1,2],[2,3,2,2],[2,1,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,3],[2,1,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[2,1,4,2],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,3],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,2],[0,1,1,2]],[[0,1,1,2],[2,3,2,2],[2,1,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,3],[2,1,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[2,1,4,2],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[2,1,3,3],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[2,1,3,2],[0,1,3,0]],[[0,1,1,2],[2,3,2,2],[2,1,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,3],[2,1,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[2,1,4,2],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,3],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,2],[0,2,0,2]],[[0,1,1,2],[2,3,2,2],[2,1,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,3],[2,1,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,2],[2,1,4,2],[0,2,1,0]],[[0,1,1,1],[2,3,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,2],[2,3,1,1],[0,3,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,1,1],[0,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,1,1],[0,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,1,1],[0,3,3,1],[0,2,0,1]],[[0,1,1,2],[2,3,2,2],[2,1,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,2,3],[2,1,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,2,2],[2,1,4,2],[1,0,1,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,3],[1,0,1,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,2],[1,0,1,2]],[[0,1,1,2],[2,3,2,2],[2,1,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,2,3],[2,1,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,2,2],[2,1,4,2],[1,0,2,0]],[[0,1,1,1],[2,3,2,2],[2,1,3,3],[1,0,2,0]],[[0,1,1,1],[2,3,2,2],[2,1,3,2],[1,0,3,0]],[[0,1,1,2],[2,3,2,2],[2,1,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,2,3],[2,1,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,2,2],[2,1,4,2],[1,1,0,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,3],[1,1,0,1]],[[0,1,1,1],[2,3,2,2],[2,1,3,2],[1,1,0,2]],[[0,1,1,2],[2,3,2,2],[2,1,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,2,3],[2,1,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,2,2],[2,1,4,2],[1,1,1,0]],[[0,1,1,1],[2,3,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[2,4,1,1],[0,3,3,1],[0,1,2,0]],[[1,2,2,2],[2,3,1,1],[0,3,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,1,1],[0,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,1,1],[0,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,1,1],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,4,1,1],[0,3,3,1],[0,1,1,1]],[[1,2,2,2],[2,3,1,1],[0,3,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,1,1],[0,3,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,1,1],[0,3,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,1,1],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[3,3,1,1],[0,3,3,0],[1,2,1,0]],[[1,3,2,1],[2,3,1,1],[0,3,3,0],[1,2,1,0]],[[2,2,2,1],[2,3,1,1],[0,3,3,0],[1,2,1,0]],[[0,1,1,1],[3,3,2,2],[2,2,0,2],[0,2,2,1]],[[0,1,1,1],[2,4,2,2],[2,2,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[3,2,0,2],[0,2,2,1]],[[0,1,1,1],[3,3,2,2],[2,2,0,2],[1,1,2,1]],[[0,1,1,1],[2,4,2,2],[2,2,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[3,2,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[2,4,1,1],[0,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,3,1,1],[0,3,3,0],[1,1,1,1]],[[1,2,3,1],[2,3,1,1],[0,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,1,1],[0,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,1,1],[0,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,4,1,1],[0,3,3,0],[1,0,2,1]],[[1,2,2,2],[2,3,1,1],[0,3,3,0],[1,0,2,1]],[[1,2,3,1],[2,3,1,1],[0,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,1,1],[0,3,3,0],[1,0,2,1]],[[0,1,1,1],[3,3,2,2],[2,2,2,0],[0,2,2,1]],[[0,1,1,1],[2,4,2,2],[2,2,2,0],[0,2,2,1]],[[0,1,1,1],[2,3,2,2],[3,2,2,0],[0,2,2,1]],[[0,1,1,1],[3,3,2,2],[2,2,2,0],[1,1,2,1]],[[0,1,1,1],[2,4,2,2],[2,2,2,0],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[3,2,2,0],[1,1,2,1]],[[0,1,1,1],[2,3,2,2],[2,2,2,0],[2,1,2,1]],[[0,1,1,1],[3,3,2,2],[2,2,2,1],[0,2,2,0]],[[0,1,1,1],[2,4,2,2],[2,2,2,1],[0,2,2,0]],[[0,1,1,1],[2,3,2,2],[3,2,2,1],[0,2,2,0]],[[0,1,1,1],[3,3,2,2],[2,2,2,1],[1,1,2,0]],[[0,1,1,1],[2,4,2,2],[2,2,2,1],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[3,2,2,1],[1,1,2,0]],[[0,1,1,1],[2,3,2,2],[2,2,2,1],[2,1,2,0]],[[2,2,2,1],[2,3,1,1],[0,3,3,0],[1,0,2,1]],[[1,2,2,1],[2,4,1,1],[0,3,3,0],[0,2,1,1]],[[1,2,2,2],[2,3,1,1],[0,3,3,0],[0,2,1,1]],[[1,2,3,1],[2,3,1,1],[0,3,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,1,1],[0,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,1,1],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,4,1,1],[0,3,3,0],[0,1,2,1]],[[1,2,2,2],[2,3,1,1],[0,3,3,0],[0,1,2,1]],[[1,2,3,1],[2,3,1,1],[0,3,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,1,1],[0,3,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,1,1],[0,3,3,0],[0,1,2,1]],[[1,2,2,1],[3,3,1,1],[0,3,2,1],[1,2,1,0]],[[0,1,1,1],[3,3,2,2],[2,2,3,0],[0,1,2,1]],[[0,1,1,1],[2,4,2,2],[2,2,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,2,2],[3,2,3,0],[0,1,2,1]],[[0,1,1,1],[3,3,2,2],[2,2,3,0],[0,2,1,1]],[[0,1,1,1],[2,4,2,2],[2,2,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,2,2],[3,2,3,0],[0,2,1,1]],[[0,1,1,1],[3,3,2,2],[2,2,3,0],[1,0,2,1]],[[0,1,1,1],[2,4,2,2],[2,2,3,0],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[3,2,3,0],[1,0,2,1]],[[0,1,1,1],[2,3,2,2],[2,2,3,0],[2,0,2,1]],[[0,1,1,1],[3,3,2,2],[2,2,3,0],[1,1,1,1]],[[0,1,1,1],[2,4,2,2],[2,2,3,0],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[3,2,3,0],[1,1,1,1]],[[0,1,1,1],[2,3,2,2],[2,2,3,0],[2,1,1,1]],[[0,1,1,1],[3,3,2,2],[2,2,3,0],[1,2,0,1]],[[0,1,1,1],[2,4,2,2],[2,2,3,0],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[3,2,3,0],[1,2,0,1]],[[0,1,1,1],[2,3,2,2],[2,2,3,0],[2,2,0,1]],[[1,3,2,1],[2,3,1,1],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[2,3,1,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[3,3,1,1],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[2,3,1,1],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,3,1,1],[0,3,2,1],[1,2,0,1]],[[0,1,1,1],[3,3,2,2],[2,2,3,1],[0,1,1,1]],[[0,1,1,1],[2,4,2,2],[2,2,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,2,2],[3,2,3,1],[0,1,1,1]],[[0,1,1,1],[3,3,2,2],[2,2,3,1],[0,1,2,0]],[[0,1,1,1],[2,4,2,2],[2,2,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,2,2],[3,2,3,1],[0,1,2,0]],[[0,1,1,1],[3,3,2,2],[2,2,3,1],[0,2,0,1]],[[0,1,1,1],[2,4,2,2],[2,2,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,2,2],[3,2,3,1],[0,2,0,1]],[[0,1,1,1],[3,3,2,2],[2,2,3,1],[0,2,1,0]],[[0,1,1,1],[2,4,2,2],[2,2,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,2,2],[3,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,4,1,1],[0,3,2,1],[0,2,2,0]],[[1,2,2,2],[2,3,1,1],[0,3,2,1],[0,2,2,0]],[[1,2,3,1],[2,3,1,1],[0,3,2,1],[0,2,2,0]],[[1,3,2,1],[2,3,1,1],[0,3,2,1],[0,2,2,0]],[[2,2,2,1],[2,3,1,1],[0,3,2,1],[0,2,2,0]],[[0,1,1,1],[3,3,2,2],[2,2,3,1],[1,0,1,1]],[[0,1,1,1],[2,4,2,2],[2,2,3,1],[1,0,1,1]],[[0,1,1,1],[2,3,2,2],[3,2,3,1],[1,0,1,1]],[[0,1,1,1],[2,3,2,2],[2,2,3,1],[2,0,1,1]],[[0,1,1,1],[3,3,2,2],[2,2,3,1],[1,0,2,0]],[[0,1,1,1],[2,4,2,2],[2,2,3,1],[1,0,2,0]],[[0,1,1,1],[2,3,2,2],[3,2,3,1],[1,0,2,0]],[[0,1,1,1],[2,3,2,2],[2,2,3,1],[2,0,2,0]],[[0,1,1,1],[3,3,2,2],[2,2,3,1],[1,1,0,1]],[[0,1,1,1],[2,4,2,2],[2,2,3,1],[1,1,0,1]],[[0,1,1,1],[2,3,2,2],[3,2,3,1],[1,1,0,1]],[[0,1,1,1],[2,3,2,2],[2,2,3,1],[2,1,0,1]],[[0,1,1,1],[3,3,2,2],[2,2,3,1],[1,1,1,0]],[[0,1,1,1],[2,4,2,2],[2,2,3,1],[1,1,1,0]],[[0,1,1,1],[2,3,2,2],[3,2,3,1],[1,1,1,0]],[[0,1,1,1],[2,3,2,2],[2,2,3,1],[2,1,1,0]],[[0,1,1,1],[3,3,2,2],[2,2,3,1],[1,2,0,0]],[[0,1,1,1],[2,4,2,2],[2,2,3,1],[1,2,0,0]],[[0,1,1,1],[2,3,2,2],[3,2,3,1],[1,2,0,0]],[[0,1,1,1],[2,3,2,2],[2,2,3,1],[2,2,0,0]],[[1,2,2,1],[3,3,1,1],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[2,3,1,1],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[2,3,1,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[2,4,1,1],[0,3,2,0],[0,2,2,1]],[[1,2,2,2],[2,3,1,1],[0,3,2,0],[0,2,2,1]],[[1,2,3,1],[2,3,1,1],[0,3,2,0],[0,2,2,1]],[[1,3,2,1],[2,3,1,1],[0,3,2,0],[0,2,2,1]],[[2,2,2,1],[2,3,1,1],[0,3,2,0],[0,2,2,1]],[[1,2,2,1],[3,3,1,1],[0,3,1,2],[1,2,1,0]],[[1,3,2,1],[2,3,1,1],[0,3,1,2],[1,2,1,0]],[[2,2,2,1],[2,3,1,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[3,3,1,1],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[2,3,1,1],[0,3,1,2],[1,2,0,1]],[[2,2,2,1],[2,3,1,1],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[3,3,1,1],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,3,1,1],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[2,3,1,1],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[3,3,1,1],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[2,3,1,1],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[2,3,1,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[3,3,1,1],[0,3,0,2],[1,2,2,0]],[[1,3,2,1],[2,3,1,1],[0,3,0,2],[1,2,2,0]],[[2,2,2,1],[2,3,1,1],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[3,3,1,1],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[2,3,1,1],[0,3,0,2],[1,2,1,1]],[[2,2,2,1],[2,3,1,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[2,4,1,1],[0,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,3,1,1],[0,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,3,1,1],[0,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,1,1],[0,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,1,1],[0,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,3,1,1],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[2,3,1,1],[0,3,0,1],[1,2,2,1]],[[2,2,2,1],[2,3,1,1],[0,3,0,1],[1,2,2,1]],[[1,2,2,1],[2,3,1,0],[3,3,3,2],[1,0,0,0]],[[1,2,2,1],[3,3,1,0],[2,3,3,2],[1,0,0,0]],[[1,3,2,1],[2,3,1,0],[2,3,3,2],[1,0,0,0]],[[2,2,2,1],[2,3,1,0],[2,3,3,2],[1,0,0,0]],[[1,2,2,1],[2,3,1,0],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[2,3,1,0],[3,3,3,0],[1,2,0,0]],[[1,2,2,1],[3,3,1,0],[2,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,3,1,0],[2,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,3,1,0],[2,3,3,0],[1,2,0,0]],[[1,2,2,1],[2,3,1,0],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[2,3,1,0],[3,3,3,0],[1,1,1,0]],[[1,2,2,1],[3,3,1,0],[2,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,1,0],[2,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,1,0],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,3,1,0],[3,3,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,1,0],[2,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,1,0],[2,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,1,0],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[2,3,1,0],[3,3,2,2],[1,0,1,0]],[[1,2,2,1],[3,3,1,0],[2,3,2,2],[1,0,1,0]],[[1,3,2,1],[2,3,1,0],[2,3,2,2],[1,0,1,0]],[[2,2,2,1],[2,3,1,0],[2,3,2,2],[1,0,1,0]],[[1,2,2,1],[2,3,1,0],[3,3,2,2],[1,0,0,1]],[[1,2,2,1],[3,3,1,0],[2,3,2,2],[1,0,0,1]],[[1,3,2,1],[2,3,1,0],[2,3,2,2],[1,0,0,1]],[[2,2,2,1],[2,3,1,0],[2,3,2,2],[1,0,0,1]],[[1,2,2,1],[2,3,1,0],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[3,3,1,0],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,1,0],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,1,0],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,3,1,0],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,3,1,0],[3,3,1,2],[1,2,0,0]],[[1,2,2,1],[3,3,1,0],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,3,1,0],[2,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,3,1,0],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[2,3,1,0],[2,3,1,2],[2,1,1,0]],[[1,2,2,1],[2,3,1,0],[3,3,1,2],[1,1,1,0]],[[1,2,2,1],[3,3,1,0],[2,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,1,0],[2,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,1,0],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,3,1,0],[2,3,1,2],[2,1,0,1]],[[1,2,2,1],[2,3,1,0],[3,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,3,1,0],[2,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,3,1,0],[2,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,1,0],[2,3,1,2],[1,1,0,1]],[[0,1,1,1],[3,3,2,2],[2,3,3,0],[1,0,1,1]],[[0,1,1,1],[2,4,2,2],[2,3,3,0],[1,0,1,1]],[[0,1,1,1],[2,3,2,2],[3,3,3,0],[1,0,1,1]],[[1,2,2,1],[2,3,1,0],[3,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,3,1,0],[2,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,1,0],[2,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,1,0],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,3,1,0],[3,3,1,2],[0,2,0,1]],[[1,2,2,1],[3,3,1,0],[2,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,1,0],[2,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,1,0],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,3,1,0],[2,3,1,1],[2,2,0,1]],[[1,2,2,1],[2,3,1,0],[3,3,1,1],[1,2,0,1]],[[1,2,2,1],[3,3,1,0],[2,3,1,1],[1,2,0,1]],[[1,3,2,1],[2,3,1,0],[2,3,1,1],[1,2,0,1]],[[2,2,2,1],[2,3,1,0],[2,3,1,1],[1,2,0,1]],[[1,2,2,1],[2,3,1,0],[2,3,1,1],[2,1,1,1]],[[1,2,2,1],[2,3,1,0],[3,3,1,1],[1,1,1,1]],[[1,2,2,1],[3,3,1,0],[2,3,1,1],[1,1,1,1]],[[1,3,2,1],[2,3,1,0],[2,3,1,1],[1,1,1,1]],[[2,2,2,1],[2,3,1,0],[2,3,1,1],[1,1,1,1]],[[1,2,2,1],[2,3,1,0],[3,3,1,1],[0,2,1,1]],[[1,2,2,1],[3,3,1,0],[2,3,1,1],[0,2,1,1]],[[1,3,2,1],[2,3,1,0],[2,3,1,1],[0,2,1,1]],[[2,2,2,1],[2,3,1,0],[2,3,1,1],[0,2,1,1]],[[0,1,1,1],[3,3,2,2],[2,3,3,1],[1,0,0,1]],[[0,1,1,1],[2,4,2,2],[2,3,3,1],[1,0,0,1]],[[0,1,1,1],[2,3,2,2],[3,3,3,1],[1,0,0,1]],[[0,1,1,1],[3,3,2,2],[2,3,3,1],[1,0,1,0]],[[0,1,1,1],[2,4,2,2],[2,3,3,1],[1,0,1,0]],[[0,1,1,1],[2,3,2,2],[3,3,3,1],[1,0,1,0]],[[1,2,2,1],[2,3,1,0],[2,3,0,2],[2,2,1,0]],[[1,2,2,1],[2,3,1,0],[3,3,0,2],[1,2,1,0]],[[1,2,2,1],[3,3,1,0],[2,3,0,2],[1,2,1,0]],[[1,3,2,1],[2,3,1,0],[2,3,0,2],[1,2,1,0]],[[2,2,2,1],[2,3,1,0],[2,3,0,2],[1,2,1,0]],[[1,2,2,1],[2,3,1,0],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[2,3,1,0],[3,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,3,1,0],[2,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,3,1,0],[2,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,3,1,0],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,3,1,0],[3,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,3,1,0],[2,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,3,1,0],[2,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,3,1,0],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,3,1,0],[2,3,0,1],[2,2,2,0]],[[1,2,2,1],[2,3,1,0],[3,3,0,1],[1,2,2,0]],[[1,2,2,1],[3,3,1,0],[2,3,0,1],[1,2,2,0]],[[1,3,2,1],[2,3,1,0],[2,3,0,1],[1,2,2,0]],[[2,2,2,1],[2,3,1,0],[2,3,0,1],[1,2,2,0]],[[1,2,2,1],[2,3,1,0],[2,3,0,1],[2,2,1,1]],[[1,2,2,1],[2,3,1,0],[3,3,0,1],[1,2,1,1]],[[1,2,2,1],[3,3,1,0],[2,3,0,1],[1,2,1,1]],[[1,3,2,1],[2,3,1,0],[2,3,0,1],[1,2,1,1]],[[2,2,2,1],[2,3,1,0],[2,3,0,1],[1,2,1,1]],[[1,2,2,1],[2,3,1,0],[2,3,0,1],[2,1,2,1]],[[1,2,2,1],[2,3,1,0],[3,3,0,1],[1,1,2,1]],[[1,2,2,1],[3,3,1,0],[2,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,3,1,0],[2,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,3,1,0],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,3,1,0],[3,3,0,1],[0,2,2,1]],[[1,2,2,1],[3,3,1,0],[2,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,3,1,0],[2,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,3,1,0],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,3,1,0],[3,2,3,2],[1,1,0,0]],[[1,2,2,1],[3,3,1,0],[2,2,3,2],[1,1,0,0]],[[1,3,2,1],[2,3,1,0],[2,2,3,2],[1,1,0,0]],[[2,2,2,1],[2,3,1,0],[2,2,3,2],[1,1,0,0]],[[1,2,2,1],[3,3,1,0],[2,2,3,2],[0,2,0,0]],[[1,3,2,1],[2,3,1,0],[2,2,3,2],[0,2,0,0]],[[2,2,2,1],[2,3,1,0],[2,2,3,2],[0,2,0,0]],[[1,2,2,1],[2,3,1,0],[2,2,2,2],[2,2,0,0]],[[1,2,2,1],[2,3,1,0],[3,2,2,2],[1,2,0,0]],[[1,2,2,1],[3,3,1,0],[2,2,2,2],[1,2,0,0]],[[1,3,2,1],[2,3,1,0],[2,2,2,2],[1,2,0,0]],[[2,2,2,1],[2,3,1,0],[2,2,2,2],[1,2,0,0]],[[1,2,2,1],[2,3,1,0],[2,2,2,2],[2,1,1,0]],[[1,2,2,1],[2,3,1,0],[3,2,2,2],[1,1,1,0]],[[1,2,2,1],[3,3,1,0],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,1,0],[2,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,1,0],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,3,1,0],[2,2,2,2],[2,1,0,1]],[[1,2,2,1],[2,3,1,0],[3,2,2,2],[1,1,0,1]],[[1,2,2,1],[3,3,1,0],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,1,0],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,1,0],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,3,1,0],[3,2,2,2],[1,0,2,0]],[[1,2,2,1],[3,3,1,0],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,1,0],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,1,0],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,3,1,0],[3,2,2,2],[1,0,1,1]],[[1,2,2,1],[3,3,1,0],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,1,0],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,1,0],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,3,1,0],[3,2,2,2],[0,2,1,0]],[[1,2,2,1],[3,3,1,0],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,1,0],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,1,0],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,3,1,0],[3,2,2,2],[0,2,0,1]],[[1,2,2,1],[3,3,1,0],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,1,0],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,1,0],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[3,3,1,0],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,1,0],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,1,0],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[3,3,1,0],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,1,0],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,1,0],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,3,1,0],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[2,3,1,0],[3,2,2,1],[1,2,0,1]],[[1,2,2,1],[3,3,1,0],[2,2,2,1],[1,2,0,1]],[[1,3,2,1],[2,3,1,0],[2,2,2,1],[1,2,0,1]],[[2,2,2,1],[2,3,1,0],[2,2,2,1],[1,2,0,1]],[[1,2,2,1],[2,3,1,0],[2,2,2,1],[2,1,1,1]],[[1,2,2,1],[2,3,1,0],[3,2,2,1],[1,1,1,1]],[[1,2,2,1],[3,3,1,0],[2,2,2,1],[1,1,1,1]],[[1,3,2,1],[2,3,1,0],[2,2,2,1],[1,1,1,1]],[[2,2,2,1],[2,3,1,0],[2,2,2,1],[1,1,1,1]],[[1,2,2,1],[2,3,1,0],[3,2,2,1],[1,0,2,1]],[[1,2,2,1],[3,3,1,0],[2,2,2,1],[1,0,2,1]],[[1,3,2,1],[2,3,1,0],[2,2,2,1],[1,0,2,1]],[[2,2,2,1],[2,3,1,0],[2,2,2,1],[1,0,2,1]],[[1,2,2,1],[2,3,1,0],[3,2,2,1],[0,2,1,1]],[[1,2,2,1],[3,3,1,0],[2,2,2,1],[0,2,1,1]],[[1,3,2,1],[2,3,1,0],[2,2,2,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,0],[0,1,4,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,0],[0,1,3,2],[2,2,2,1]],[[0,1,1,1],[2,3,3,0],[0,1,3,2],[1,3,2,1]],[[0,1,1,1],[2,3,3,0],[0,1,3,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,0],[0,1,3,2],[1,2,2,2]],[[0,1,1,1],[2,3,3,0],[0,2,4,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,0],[0,2,3,2],[1,1,3,1]],[[0,1,1,1],[2,3,3,0],[0,2,3,2],[1,1,2,2]],[[0,1,1,1],[2,3,3,0],[0,3,4,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,0],[0,3,3,2],[0,1,3,1]],[[0,1,1,1],[2,3,3,0],[0,3,3,2],[0,1,2,2]],[[2,2,2,1],[2,3,1,0],[2,2,2,1],[0,2,1,1]],[[1,2,2,1],[3,3,1,0],[2,2,2,1],[0,1,2,1]],[[1,3,2,1],[2,3,1,0],[2,2,2,1],[0,1,2,1]],[[2,2,2,1],[2,3,1,0],[2,2,2,1],[0,1,2,1]],[[0,1,1,1],[2,3,3,0],[1,0,4,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,0],[1,0,3,2],[2,2,2,1]],[[0,1,1,1],[2,3,3,0],[1,0,3,2],[1,3,2,1]],[[0,1,1,1],[2,3,3,0],[1,0,3,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,0],[1,0,3,2],[1,2,2,2]],[[0,1,1,1],[2,3,3,0],[1,1,4,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,0],[1,1,3,2],[0,3,2,1]],[[0,1,1,1],[2,3,3,0],[1,1,3,2],[0,2,3,1]],[[0,1,1,1],[2,3,3,0],[1,1,3,2],[0,2,2,2]],[[0,1,1,1],[2,3,3,0],[1,2,4,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,0],[1,2,3,2],[0,1,3,1]],[[0,1,1,1],[2,3,3,0],[1,2,3,2],[0,1,2,2]],[[0,1,1,1],[2,3,3,0],[1,2,4,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,0],[1,2,3,2],[1,0,3,1]],[[0,1,1,1],[2,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,2,1],[2,3,1,0],[2,2,1,2],[2,1,2,0]],[[1,2,2,1],[2,3,1,0],[3,2,1,2],[1,1,2,0]],[[1,2,2,1],[3,3,1,0],[2,2,1,2],[1,1,2,0]],[[1,3,2,1],[2,3,1,0],[2,2,1,2],[1,1,2,0]],[[2,2,2,1],[2,3,1,0],[2,2,1,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,0],[2,0,4,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,0],[2,0,3,2],[0,3,2,1]],[[0,1,1,1],[2,3,3,0],[2,0,3,2],[0,2,3,1]],[[0,1,1,1],[2,3,3,0],[2,0,3,2],[0,2,2,2]],[[0,1,1,1],[2,3,3,0],[2,0,4,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,0],[2,0,3,2],[1,1,3,1]],[[0,1,1,1],[2,3,3,0],[2,0,3,2],[1,1,2,2]],[[0,1,1,1],[2,3,3,0],[2,1,4,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,0],[2,1,3,2],[0,1,3,1]],[[0,1,1,1],[2,3,3,0],[2,1,3,2],[0,1,2,2]],[[0,1,1,1],[2,3,3,0],[2,1,4,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,0],[2,1,3,2],[1,0,3,1]],[[0,1,1,1],[2,3,3,0],[2,1,3,2],[1,0,2,2]],[[1,2,2,1],[2,3,1,0],[3,2,1,2],[0,2,2,0]],[[1,2,2,1],[3,3,1,0],[2,2,1,2],[0,2,2,0]],[[1,3,2,1],[2,3,1,0],[2,2,1,2],[0,2,2,0]],[[2,2,2,1],[2,3,1,0],[2,2,1,2],[0,2,2,0]],[[1,2,2,1],[2,3,1,0],[2,2,1,1],[2,1,2,1]],[[1,2,2,1],[2,3,1,0],[3,2,1,1],[1,1,2,1]],[[1,2,2,1],[3,3,1,0],[2,2,1,1],[1,1,2,1]],[[1,3,2,1],[2,3,1,0],[2,2,1,1],[1,1,2,1]],[[2,2,2,1],[2,3,1,0],[2,2,1,1],[1,1,2,1]],[[1,2,2,1],[2,3,1,0],[3,2,1,1],[0,2,2,1]],[[1,2,2,1],[3,3,1,0],[2,2,1,1],[0,2,2,1]],[[1,3,2,1],[2,3,1,0],[2,2,1,1],[0,2,2,1]],[[2,2,2,1],[2,3,1,0],[2,2,1,1],[0,2,2,1]],[[1,2,2,1],[2,3,1,0],[2,2,0,2],[1,3,2,0]],[[1,2,2,1],[2,3,1,0],[2,2,0,2],[2,2,2,0]],[[1,2,2,1],[2,3,1,0],[3,2,0,2],[1,2,2,0]],[[1,2,2,1],[3,3,1,0],[2,2,0,2],[1,2,2,0]],[[1,3,2,1],[2,3,1,0],[2,2,0,2],[1,2,2,0]],[[2,2,2,1],[2,3,1,0],[2,2,0,2],[1,2,2,0]],[[1,2,2,1],[2,3,1,0],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[2,3,1,0],[3,2,0,2],[1,1,2,1]],[[1,2,2,1],[3,3,1,0],[2,2,0,2],[1,1,2,1]],[[1,3,2,1],[2,3,1,0],[2,2,0,2],[1,1,2,1]],[[2,2,2,1],[2,3,1,0],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,3,1,0],[3,2,0,2],[0,2,2,1]],[[1,2,2,1],[3,3,1,0],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,1,0],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,1,0],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,3,1,0],[2,2,0,1],[1,3,2,1]],[[1,2,2,1],[2,3,1,0],[2,2,0,1],[2,2,2,1]],[[1,2,2,1],[2,3,1,0],[3,2,0,1],[1,2,2,1]],[[1,2,2,1],[3,3,1,0],[2,2,0,1],[1,2,2,1]],[[1,3,2,1],[2,3,1,0],[2,2,0,1],[1,2,2,1]],[[2,2,2,1],[2,3,1,0],[2,2,0,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,0,3,3],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,0,3,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,1],[0,0,3,2],[1,2,2,2]],[[0,1,1,1],[2,3,3,1],[0,1,2,3],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,1,2,2],[2,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,1,2,2],[1,3,2,1]],[[0,1,1,1],[2,3,3,1],[0,1,2,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,1],[0,1,2,2],[1,2,2,2]],[[0,1,1,1],[3,3,3,1],[0,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,4,3,1],[0,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,3,4,1],[0,1,3,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,1,4,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,1,3,1],[2,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,1,3,1],[1,3,2,1]],[[0,1,1,1],[2,3,3,1],[0,1,3,1],[1,2,3,1]],[[0,1,1,1],[2,3,3,1],[0,1,3,1],[1,2,2,2]],[[0,1,1,1],[3,3,3,1],[0,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,4,3,1],[0,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,4,1],[0,1,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[0,1,4,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[0,1,3,3],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[0,1,3,2],[1,2,1,2]],[[0,1,1,1],[3,3,3,1],[0,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,4,3,1],[0,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,4,1],[0,1,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[0,1,4,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[0,1,3,3],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[0,1,3,2],[2,2,2,0]],[[0,1,1,1],[2,3,3,1],[0,1,3,2],[1,3,2,0]],[[0,1,1,1],[2,3,3,1],[0,1,3,2],[1,2,3,0]],[[0,1,1,1],[2,3,3,1],[0,2,2,3],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[0,2,2,2],[1,1,3,1]],[[0,1,1,1],[2,3,3,1],[0,2,2,2],[1,1,2,2]],[[0,1,1,1],[3,3,3,1],[0,2,3,1],[1,1,2,1]],[[0,1,1,1],[2,4,3,1],[0,2,3,1],[1,1,2,1]],[[0,1,1,1],[2,3,4,1],[0,2,3,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[0,2,4,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[0,2,3,1],[1,1,3,1]],[[0,1,1,1],[2,3,3,1],[0,2,3,1],[1,1,2,2]],[[0,1,1,1],[3,3,3,1],[0,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,4,3,1],[0,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,4,1],[0,2,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[0,2,4,1],[1,2,1,1]],[[0,1,1,1],[2,4,3,1],[0,2,3,2],[1,0,2,1]],[[0,1,1,1],[2,3,4,1],[0,2,3,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[0,2,4,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[0,2,3,3],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[0,2,3,2],[1,0,2,2]],[[0,1,1,1],[3,3,3,1],[0,2,3,2],[1,1,1,1]],[[0,1,1,1],[2,4,3,1],[0,2,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,4,1],[0,2,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[0,2,4,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[0,2,3,3],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[0,2,3,2],[1,1,1,2]],[[0,1,1,1],[3,3,3,1],[0,2,3,2],[1,1,2,0]],[[0,1,1,1],[2,4,3,1],[0,2,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,4,1],[0,2,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,1],[0,2,4,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,1],[0,2,3,3],[1,1,2,0]],[[0,1,1,1],[2,3,3,1],[0,2,3,2],[1,1,3,0]],[[0,1,1,1],[3,3,3,1],[0,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,4,3,1],[0,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,4,1],[0,2,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,1],[0,2,4,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,1],[0,2,3,3],[1,2,0,1]],[[0,1,1,1],[2,3,3,1],[0,2,3,2],[1,2,0,2]],[[0,1,1,1],[3,3,3,1],[0,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,4,3,1],[0,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,4,1],[0,2,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,1],[0,2,4,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,1],[0,2,3,3],[1,2,1,0]],[[0,1,1,1],[3,3,3,1],[0,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,4,3,1],[0,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,4,1],[0,3,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,4,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,0,3],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,0,2],[2,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,0,2],[1,3,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,0,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,1],[0,3,0,2],[1,2,2,2]],[[0,1,1,1],[3,3,3,1],[0,3,1,1],[1,2,2,1]],[[0,1,1,1],[2,4,3,1],[0,3,1,1],[1,2,2,1]],[[0,1,1,1],[2,3,4,1],[0,3,1,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,4,1,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,1,1],[2,2,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,1,1],[1,3,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,1,1],[1,2,3,1]],[[0,1,1,1],[2,3,3,1],[0,3,1,1],[1,2,2,2]],[[0,1,1,1],[3,3,3,1],[0,3,1,2],[1,2,2,0]],[[0,1,1,1],[2,4,3,1],[0,3,1,2],[1,2,2,0]],[[0,1,1,1],[2,3,4,1],[0,3,1,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[0,4,1,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[0,3,1,2],[2,2,2,0]],[[0,1,1,1],[2,3,3,1],[0,3,1,2],[1,3,2,0]],[[0,1,1,1],[2,3,3,1],[0,3,1,2],[1,2,3,0]],[[0,1,1,1],[3,3,3,1],[0,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,4,3,1],[0,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,3,4,1],[0,3,2,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[0,4,2,1],[1,1,2,1]],[[0,1,1,1],[3,3,3,1],[0,3,2,1],[1,2,1,1]],[[0,1,1,1],[2,4,3,1],[0,3,2,1],[1,2,1,1]],[[0,1,1,1],[2,3,4,1],[0,3,2,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[0,4,2,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[0,3,2,1],[2,2,1,1]],[[0,1,1,1],[2,3,3,1],[0,3,2,1],[1,3,1,1]],[[0,1,1,1],[2,3,3,1],[0,3,2,3],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,2,2],[0,1,3,1]],[[0,1,1,1],[2,3,3,1],[0,3,2,2],[0,1,2,2]],[[0,1,1,1],[3,3,3,1],[0,3,2,2],[1,1,1,1]],[[0,1,1,1],[2,4,3,1],[0,3,2,2],[1,1,1,1]],[[0,1,1,1],[2,3,4,1],[0,3,2,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[0,4,2,2],[1,1,1,1]],[[0,1,1,1],[3,3,3,1],[0,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,4,3,1],[0,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,4,1],[0,3,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,1],[0,4,2,2],[1,1,2,0]],[[0,1,1,1],[3,3,3,1],[0,3,2,2],[1,2,0,1]],[[0,1,1,1],[2,4,3,1],[0,3,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,4,1],[0,3,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,1],[0,4,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,1],[0,3,2,2],[2,2,0,1]],[[0,1,1,1],[2,3,3,1],[0,3,2,2],[1,3,0,1]],[[0,1,1,1],[3,3,3,1],[0,3,2,2],[1,2,1,0]],[[0,1,1,1],[2,4,3,1],[0,3,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,4,1],[0,3,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,1],[0,4,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,1],[0,3,2,2],[2,2,1,0]],[[0,1,1,1],[2,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,3,1,0],[2,1,2,2],[2,2,1,0]],[[1,2,2,1],[2,3,1,0],[3,1,2,2],[1,2,1,0]],[[1,2,2,1],[3,3,1,0],[2,1,2,2],[1,2,1,0]],[[1,3,2,1],[2,3,1,0],[2,1,2,2],[1,2,1,0]],[[0,1,1,1],[2,4,3,1],[0,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,4,1],[0,3,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,4,1],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,3,1],[0,1,3,1]],[[0,1,1,1],[2,3,3,1],[0,3,3,1],[0,1,2,2]],[[0,1,1,1],[2,4,3,1],[0,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,4,1],[0,3,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[0,3,4,1],[0,2,1,1]],[[2,2,2,1],[2,3,1,0],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[2,3,1,0],[2,1,2,2],[2,2,0,1]],[[1,2,2,1],[2,3,1,0],[3,1,2,2],[1,2,0,1]],[[1,2,2,1],[3,3,1,0],[2,1,2,2],[1,2,0,1]],[[1,3,2,1],[2,3,1,0],[2,1,2,2],[1,2,0,1]],[[2,2,2,1],[2,3,1,0],[2,1,2,2],[1,2,0,1]],[[0,1,1,1],[2,4,3,1],[0,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,4,1],[0,3,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,4,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,3,3],[0,0,2,1]],[[0,1,1,1],[2,3,3,1],[0,3,3,2],[0,0,2,2]],[[0,1,1,1],[2,4,3,1],[0,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,1],[0,3,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[0,3,4,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[0,3,3,3],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[0,3,3,2],[0,1,1,2]],[[0,1,1,1],[2,4,3,1],[0,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,1],[0,3,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[0,3,4,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[0,3,3,3],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[0,3,3,2],[0,1,3,0]],[[0,1,1,1],[2,4,3,1],[0,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,4,1],[0,3,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[0,3,4,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[0,3,3,3],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[0,3,3,2],[0,2,0,2]],[[0,1,1,1],[2,4,3,1],[0,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,4,1],[0,3,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,1],[0,3,4,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,3,1,0],[2,1,2,1],[2,2,1,1]],[[1,2,2,1],[2,3,1,0],[3,1,2,1],[1,2,1,1]],[[1,2,2,1],[3,3,1,0],[2,1,2,1],[1,2,1,1]],[[1,3,2,1],[2,3,1,0],[2,1,2,1],[1,2,1,1]],[[2,2,2,1],[2,3,1,0],[2,1,2,1],[1,2,1,1]],[[0,1,1,1],[3,3,3,1],[0,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,4,3,1],[0,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,3,4,1],[0,3,3,2],[1,2,0,0]],[[0,1,1,1],[2,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,3,1,0],[2,1,1,2],[1,3,2,0]],[[1,2,2,1],[2,3,1,0],[2,1,1,2],[2,2,2,0]],[[1,2,2,1],[2,3,1,0],[3,1,1,2],[1,2,2,0]],[[1,2,2,1],[3,3,1,0],[2,1,1,2],[1,2,2,0]],[[1,3,2,1],[2,3,1,0],[2,1,1,2],[1,2,2,0]],[[2,2,2,1],[2,3,1,0],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[2,3,1,0],[2,1,1,1],[1,3,2,1]],[[1,2,2,1],[2,3,1,0],[2,1,1,1],[2,2,2,1]],[[1,2,2,1],[2,3,1,0],[3,1,1,1],[1,2,2,1]],[[1,2,2,1],[3,3,1,0],[2,1,1,1],[1,2,2,1]],[[1,3,2,1],[2,3,1,0],[2,1,1,1],[1,2,2,1]],[[2,2,2,1],[2,3,1,0],[2,1,1,1],[1,2,2,1]],[[1,2,2,1],[2,3,1,0],[2,1,0,2],[1,3,2,1]],[[1,2,2,1],[2,3,1,0],[2,1,0,2],[2,2,2,1]],[[1,2,2,1],[2,3,1,0],[3,1,0,2],[1,2,2,1]],[[1,2,2,1],[3,3,1,0],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,3,1,0],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,0,2,3],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,0,2,2],[2,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,0,2,2],[1,3,2,1]],[[0,1,1,1],[2,3,3,1],[1,0,2,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,1],[1,0,2,2],[1,2,2,2]],[[0,1,1,1],[3,3,3,1],[1,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,4,3,1],[1,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,3,4,1],[1,0,3,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,0,4,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,0,3,1],[2,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,0,3,1],[1,3,2,1]],[[0,1,1,1],[2,3,3,1],[1,0,3,1],[1,2,3,1]],[[0,1,1,1],[2,3,3,1],[1,0,3,1],[1,2,2,2]],[[0,1,1,1],[2,3,3,1],[1,0,3,3],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,0,3,2],[0,2,3,1]],[[0,1,1,1],[2,3,3,1],[1,0,3,2],[0,2,2,2]],[[0,1,1,1],[3,3,3,1],[1,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,4,3,1],[1,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,4,1],[1,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[1,0,4,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[1,0,3,3],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[1,0,3,2],[1,2,1,2]],[[0,1,1,1],[3,3,3,1],[1,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,4,3,1],[1,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,4,1],[1,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[1,0,4,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[1,0,3,3],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[1,0,3,2],[2,2,2,0]],[[0,1,1,1],[2,3,3,1],[1,0,3,2],[1,3,2,0]],[[0,1,1,1],[2,3,3,1],[1,0,3,2],[1,2,3,0]],[[0,1,1,1],[2,3,3,1],[1,1,2,3],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,1,2,2],[0,3,2,1]],[[0,1,1,1],[2,3,3,1],[1,1,2,2],[0,2,3,1]],[[0,1,1,1],[2,3,3,1],[1,1,2,2],[0,2,2,2]],[[0,1,1,1],[3,3,3,1],[1,1,3,1],[0,2,2,1]],[[0,1,1,1],[2,4,3,1],[1,1,3,1],[0,2,2,1]],[[0,1,1,1],[2,3,4,1],[1,1,3,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,1,4,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,1,3,1],[0,3,2,1]],[[0,1,1,1],[2,3,3,1],[1,1,3,1],[0,2,3,1]],[[0,1,1,1],[2,3,3,1],[1,1,3,1],[0,2,2,2]],[[0,1,1,1],[3,3,3,1],[1,1,3,2],[0,2,1,1]],[[0,1,1,1],[2,4,3,1],[1,1,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,4,1],[1,1,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[1,1,4,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[1,1,3,3],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[1,1,3,2],[0,2,1,2]],[[0,1,1,1],[3,3,3,1],[1,1,3,2],[0,2,2,0]],[[0,1,1,1],[2,4,3,1],[1,1,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,4,1],[1,1,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,1],[1,1,4,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,1],[1,1,3,3],[0,2,2,0]],[[0,1,1,1],[2,3,3,1],[1,1,3,2],[0,3,2,0]],[[0,1,1,1],[2,3,3,1],[1,1,3,2],[0,2,3,0]],[[2,2,2,1],[2,3,1,0],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,2,2,3],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[1,2,2,2],[0,1,3,1]],[[0,1,1,1],[2,3,3,1],[1,2,2,2],[0,1,2,2]],[[0,1,1,1],[2,3,3,1],[1,2,2,3],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[1,2,2,2],[1,0,3,1]],[[0,1,1,1],[2,3,3,1],[1,2,2,2],[1,0,2,2]],[[0,1,1,1],[3,3,3,1],[1,2,3,1],[0,1,2,1]],[[0,1,1,1],[2,4,3,1],[1,2,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,4,1],[1,2,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[1,2,4,1],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,1],[0,1,3,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,1],[0,1,2,2]],[[0,1,1,1],[3,3,3,1],[1,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,4,3,1],[1,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,4,1],[1,2,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[1,2,4,1],[0,2,1,1]],[[0,1,1,1],[3,3,3,1],[1,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,4,3,1],[1,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,4,1],[1,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[1,2,4,1],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,1],[1,0,3,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,1],[1,0,2,2]],[[0,1,1,1],[3,3,3,1],[1,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,4,3,1],[1,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,4,1],[1,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[1,2,4,1],[1,1,1,1]],[[0,1,1,1],[3,3,3,1],[1,2,3,2],[0,0,2,1]],[[0,1,1,1],[2,4,3,1],[1,2,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,4,1],[1,2,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,1],[1,2,4,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,3],[0,0,2,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,2],[0,0,2,2]],[[0,1,1,1],[3,3,3,1],[1,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,4,3,1],[1,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,1],[1,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[1,2,4,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,3],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,2],[0,1,1,2]],[[0,1,1,1],[3,3,3,1],[1,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,4,3,1],[1,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,1],[1,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[1,2,4,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[1,2,3,3],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[1,2,3,2],[0,1,3,0]],[[0,1,1,1],[3,3,3,1],[1,2,3,2],[0,2,0,1]],[[0,1,1,1],[2,4,3,1],[1,2,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,4,1],[1,2,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[1,2,4,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,3],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,2],[0,2,0,2]],[[0,1,1,1],[3,3,3,1],[1,2,3,2],[0,2,1,0]],[[0,1,1,1],[2,4,3,1],[1,2,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,4,1],[1,2,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,1],[1,2,4,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,1],[1,2,3,3],[0,2,1,0]],[[0,1,1,1],[3,3,3,1],[1,2,3,2],[1,0,1,1]],[[0,1,1,1],[2,4,3,1],[1,2,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,4,1],[1,2,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,1],[1,2,4,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,3],[1,0,1,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,2],[1,0,1,2]],[[0,1,1,1],[3,3,3,1],[1,2,3,2],[1,0,2,0]],[[0,1,1,1],[2,4,3,1],[1,2,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,4,1],[1,2,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,1],[1,2,4,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,1],[1,2,3,3],[1,0,2,0]],[[0,1,1,1],[2,3,3,1],[1,2,3,2],[1,0,3,0]],[[0,1,1,1],[3,3,3,1],[1,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,4,3,1],[1,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,4,1],[1,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,1],[1,2,4,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,3],[1,1,0,1]],[[0,1,1,1],[2,3,3,1],[1,2,3,2],[1,1,0,2]],[[0,1,1,1],[3,3,3,1],[1,2,3,2],[1,1,1,0]],[[0,1,1,1],[2,4,3,1],[1,2,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,4,1],[1,2,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,1],[1,2,4,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,1],[1,2,3,3],[1,1,1,0]],[[0,1,1,1],[3,3,3,1],[1,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,4,3,1],[1,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,4,1],[1,3,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,4,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,3,0,3],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,3,0,2],[0,3,2,1]],[[0,1,1,1],[2,3,3,1],[1,3,0,2],[0,2,3,1]],[[0,1,1,1],[2,3,3,1],[1,3,0,2],[0,2,2,2]],[[0,1,1,1],[3,3,3,1],[1,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,4,3,1],[1,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,4,1],[1,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[1,4,0,2],[1,1,2,1]],[[0,1,1,1],[3,3,3,1],[1,3,1,1],[0,2,2,1]],[[0,1,1,1],[2,4,3,1],[1,3,1,1],[0,2,2,1]],[[0,1,1,1],[2,3,4,1],[1,3,1,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,4,1,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[1,3,1,1],[0,3,2,1]],[[0,1,1,1],[2,3,3,1],[1,3,1,1],[0,2,3,1]],[[0,1,1,1],[2,3,3,1],[1,3,1,1],[0,2,2,2]],[[0,1,1,1],[3,3,3,1],[1,3,1,1],[1,1,2,1]],[[0,1,1,1],[2,4,3,1],[1,3,1,1],[1,1,2,1]],[[0,1,1,1],[2,3,4,1],[1,3,1,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[1,4,1,1],[1,1,2,1]],[[0,1,1,1],[3,3,3,1],[1,3,1,2],[0,2,2,0]],[[0,1,1,1],[2,4,3,1],[1,3,1,2],[0,2,2,0]],[[0,1,1,1],[2,3,4,1],[1,3,1,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,1],[1,4,1,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,1],[1,3,1,2],[0,3,2,0]],[[0,1,1,1],[2,3,3,1],[1,3,1,2],[0,2,3,0]],[[0,1,1,1],[3,3,3,1],[1,3,1,2],[1,1,2,0]],[[0,1,1,1],[2,4,3,1],[1,3,1,2],[1,1,2,0]],[[0,1,1,1],[2,3,4,1],[1,3,1,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,2,2,1],[3,3,1,0],[1,3,3,2],[1,1,0,0]],[[1,3,2,1],[2,3,1,0],[1,3,3,2],[1,1,0,0]],[[2,2,2,1],[2,3,1,0],[1,3,3,2],[1,1,0,0]],[[0,1,1,1],[3,3,3,1],[1,3,2,1],[0,1,2,1]],[[0,1,1,1],[2,4,3,1],[1,3,2,1],[0,1,2,1]],[[0,1,1,1],[2,3,4,1],[1,3,2,1],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[1,4,2,1],[0,1,2,1]],[[0,1,1,1],[3,3,3,1],[1,3,2,1],[0,2,1,1]],[[0,1,1,1],[2,4,3,1],[1,3,2,1],[0,2,1,1]],[[0,1,1,1],[2,3,4,1],[1,3,2,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[1,4,2,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[1,3,2,1],[0,3,1,1]],[[0,1,1,1],[3,3,3,1],[1,3,2,1],[1,0,2,1]],[[0,1,1,1],[2,4,3,1],[1,3,2,1],[1,0,2,1]],[[0,1,1,1],[2,3,4,1],[1,3,2,1],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[1,4,2,1],[1,0,2,1]],[[0,1,1,1],[3,3,3,1],[1,3,2,1],[1,1,1,1]],[[0,1,1,1],[2,4,3,1],[1,3,2,1],[1,1,1,1]],[[0,1,1,1],[2,3,4,1],[1,3,2,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[1,4,2,1],[1,1,1,1]],[[0,1,1,1],[3,3,3,1],[1,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,4,3,1],[1,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,1],[1,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[1,4,2,2],[0,1,1,1]],[[0,1,1,1],[3,3,3,1],[1,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,4,3,1],[1,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,1],[1,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[1,4,2,2],[0,1,2,0]],[[0,1,1,1],[3,3,3,1],[1,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,4,3,1],[1,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,4,1],[1,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[1,4,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[1,3,2,2],[0,3,0,1]],[[0,1,1,1],[3,3,3,1],[1,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,4,3,1],[1,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,4,1],[1,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,1],[1,4,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,1],[1,3,2,2],[0,3,1,0]],[[0,1,1,1],[3,3,3,1],[1,3,2,2],[1,0,1,1]],[[0,1,1,1],[2,4,3,1],[1,3,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,4,1],[1,3,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,1],[1,4,2,2],[1,0,1,1]],[[0,1,1,1],[3,3,3,1],[1,3,2,2],[1,0,2,0]],[[0,1,1,1],[2,4,3,1],[1,3,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,4,1],[1,3,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,1],[1,4,2,2],[1,0,2,0]],[[0,1,1,1],[3,3,3,1],[1,3,2,2],[1,1,0,1]],[[0,1,1,1],[2,4,3,1],[1,3,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,4,1],[1,3,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,1],[1,4,2,2],[1,1,0,1]],[[0,1,1,1],[3,3,3,1],[1,3,2,2],[1,1,1,0]],[[0,1,1,1],[2,4,3,1],[1,3,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,4,1],[1,3,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,1],[1,4,2,2],[1,1,1,0]],[[0,1,1,1],[3,3,3,1],[1,3,2,2],[1,2,0,0]],[[0,1,1,1],[2,4,3,1],[1,3,2,2],[1,2,0,0]],[[0,1,1,1],[2,3,4,1],[1,3,2,2],[1,2,0,0]],[[0,1,1,1],[2,3,3,1],[1,4,2,2],[1,2,0,0]],[[1,2,2,1],[3,3,1,0],[1,3,3,2],[0,2,0,0]],[[1,3,2,1],[2,3,1,0],[1,3,3,2],[0,2,0,0]],[[2,2,2,1],[2,3,1,0],[1,3,3,2],[0,2,0,0]],[[0,1,1,1],[3,3,3,1],[1,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,4,3,1],[1,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,3,4,1],[1,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,3,3,1],[1,3,4,1],[0,0,2,1]],[[0,1,1,1],[3,3,3,1],[1,3,3,2],[0,0,1,1]],[[0,1,1,1],[2,4,3,1],[1,3,3,2],[0,0,1,1]],[[0,1,1,1],[2,3,4,1],[1,3,3,2],[0,0,1,1]],[[0,1,1,1],[2,3,3,1],[1,3,4,2],[0,0,1,1]],[[0,1,1,1],[2,3,3,1],[1,3,3,3],[0,0,1,1]],[[0,1,1,1],[2,3,3,1],[1,3,3,2],[0,0,1,2]],[[0,1,1,1],[3,3,3,1],[1,3,3,2],[0,0,2,0]],[[0,1,1,1],[2,4,3,1],[1,3,3,2],[0,0,2,0]],[[0,1,1,1],[2,3,4,1],[1,3,3,2],[0,0,2,0]],[[0,1,1,1],[2,3,3,1],[1,3,4,2],[0,0,2,0]],[[0,1,1,1],[2,3,3,1],[1,3,3,3],[0,0,2,0]],[[0,1,1,1],[3,3,3,1],[1,3,3,2],[0,2,0,0]],[[0,1,1,1],[2,4,3,1],[1,3,3,2],[0,2,0,0]],[[0,1,1,1],[2,3,4,1],[1,3,3,2],[0,2,0,0]],[[0,1,1,1],[2,3,3,1],[1,4,3,2],[0,2,0,0]],[[0,1,1,1],[3,3,3,1],[1,3,3,2],[1,1,0,0]],[[0,1,1,1],[2,4,3,1],[1,3,3,2],[1,1,0,0]],[[0,1,1,1],[2,3,4,1],[1,3,3,2],[1,1,0,0]],[[0,1,1,1],[2,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,2,1],[3,3,1,0],[1,3,2,2],[1,2,0,0]],[[1,3,2,1],[2,3,1,0],[1,3,2,2],[1,2,0,0]],[[2,2,2,1],[2,3,1,0],[1,3,2,2],[1,2,0,0]],[[1,2,2,1],[3,3,1,0],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,1,0],[1,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,1,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[3,3,1,0],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,1,0],[1,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,1,0],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[3,3,1,0],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,1,0],[1,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,1,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[3,3,1,0],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,1,0],[1,3,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,1,0],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[3,3,1,0],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,1,0],[1,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,1,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[3,3,1,0],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,1,0],[1,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,1,0],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[3,3,1,0],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,1,0],[1,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,3,1,0],[1,3,2,2],[0,1,2,0]],[[0,1,1,1],[3,3,3,1],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,4,3,1],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,4,1],[2,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[3,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,1,3],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,1,2],[2,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,1,2],[1,3,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,1,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,1],[2,0,1,2],[1,2,2,2]],[[0,1,1,1],[3,3,3,1],[2,0,2,1],[1,2,2,1]],[[0,1,1,1],[2,4,3,1],[2,0,2,1],[1,2,2,1]],[[0,1,1,1],[2,3,4,1],[2,0,2,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[3,0,2,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,2,1],[2,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,2,1],[1,3,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,2,1],[1,2,3,1]],[[0,1,1,1],[2,3,3,1],[2,0,2,1],[1,2,2,2]],[[0,1,1,1],[2,3,3,1],[2,0,2,3],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,2,2],[0,3,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,2,2],[0,2,3,1]],[[0,1,1,1],[2,3,3,1],[2,0,2,2],[0,2,2,2]],[[0,1,1,1],[2,3,3,1],[2,0,2,3],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,2,2],[1,1,3,1]],[[0,1,1,1],[2,3,3,1],[2,0,2,2],[1,1,2,2]],[[0,1,1,1],[3,3,3,1],[2,0,2,2],[1,2,2,0]],[[0,1,1,1],[2,4,3,1],[2,0,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,4,1],[2,0,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[3,0,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[2,0,2,2],[2,2,2,0]],[[0,1,1,1],[2,3,3,1],[2,0,2,2],[1,3,2,0]],[[0,1,1,1],[2,3,3,1],[2,0,2,2],[1,2,3,0]],[[0,1,1,1],[3,3,3,1],[2,0,3,1],[0,2,2,1]],[[0,1,1,1],[2,4,3,1],[2,0,3,1],[0,2,2,1]],[[0,1,1,1],[2,3,4,1],[2,0,3,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[3,0,3,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,4,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,1],[0,3,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,1],[0,2,3,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,1],[0,2,2,2]],[[0,1,1,1],[3,3,3,1],[2,0,3,1],[1,1,2,1]],[[0,1,1,1],[2,4,3,1],[2,0,3,1],[1,1,2,1]],[[0,1,1,1],[2,3,4,1],[2,0,3,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[3,0,3,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,4,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,1],[2,1,2,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,1],[1,1,3,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,1],[1,1,2,2]],[[0,1,1,1],[3,3,3,1],[2,0,3,1],[1,2,1,1]],[[0,1,1,1],[2,4,3,1],[2,0,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,4,1],[2,0,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[3,0,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[2,0,4,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,1],[2,2,1,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,1],[1,3,1,1]],[[0,1,1,1],[3,3,3,1],[2,0,3,2],[0,2,1,1]],[[0,1,1,1],[2,4,3,1],[2,0,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,4,1],[2,0,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[3,0,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[2,0,4,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,3],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[0,2,1,2]],[[0,1,1,1],[3,3,3,1],[2,0,3,2],[0,2,2,0]],[[0,1,1,1],[2,4,3,1],[2,0,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,4,1],[2,0,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,1],[3,0,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,1],[2,0,4,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,1],[2,0,3,3],[0,2,2,0]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[0,3,2,0]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[0,2,3,0]],[[0,1,1,1],[3,3,3,1],[2,0,3,2],[1,1,1,1]],[[0,1,1,1],[2,4,3,1],[2,0,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,4,1],[2,0,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[3,0,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[2,0,4,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,3],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[2,1,1,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[1,1,1,2]],[[0,1,1,1],[3,3,3,1],[2,0,3,2],[1,1,2,0]],[[0,1,1,1],[2,4,3,1],[2,0,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,4,1],[2,0,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,1],[3,0,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,1],[2,0,4,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,1],[2,0,3,3],[1,1,2,0]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[2,1,2,0]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[1,1,3,0]],[[0,1,1,1],[3,3,3,1],[2,0,3,2],[1,2,0,1]],[[0,1,1,1],[2,4,3,1],[2,0,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,4,1],[2,0,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,1],[3,0,3,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,1],[2,0,4,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,3],[1,2,0,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[2,2,0,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[1,3,0,1]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[1,2,0,2]],[[0,1,1,1],[3,3,3,1],[2,0,3,2],[1,2,1,0]],[[0,1,1,1],[2,4,3,1],[2,0,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,4,1],[2,0,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,1],[3,0,3,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,1],[2,0,4,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,1],[2,0,3,3],[1,2,1,0]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[2,2,1,0]],[[0,1,1,1],[2,3,3,1],[2,0,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,1,0],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,1,0],[1,3,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,1,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,3,1,0],[1,3,2,1],[1,2,0,1]],[[1,3,2,1],[2,3,1,0],[1,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,3,1,0],[1,3,2,1],[1,2,0,1]],[[0,1,1,1],[3,3,3,1],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,4,3,1],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,4,1],[2,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[3,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,0,3],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,0,2],[2,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,0,2],[1,3,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,0,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,1],[2,1,0,2],[1,2,2,2]],[[0,1,1,1],[3,3,3,1],[2,1,1,1],[1,2,2,1]],[[0,1,1,1],[2,4,3,1],[2,1,1,1],[1,2,2,1]],[[0,1,1,1],[2,3,4,1],[2,1,1,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[3,1,1,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,1,1],[2,2,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,1,1],[1,3,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,1,1],[1,2,3,1]],[[0,1,1,1],[2,3,3,1],[2,1,1,1],[1,2,2,2]],[[0,1,1,1],[3,3,3,1],[2,1,1,2],[1,2,2,0]],[[0,1,1,1],[2,4,3,1],[2,1,1,2],[1,2,2,0]],[[0,1,1,1],[2,3,4,1],[2,1,1,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[3,1,1,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,1],[2,1,1,2],[2,2,2,0]],[[0,1,1,1],[2,3,3,1],[2,1,1,2],[1,3,2,0]],[[0,1,1,1],[2,3,3,1],[2,1,1,2],[1,2,3,0]],[[0,1,1,1],[3,3,3,1],[2,1,2,1],[1,2,1,1]],[[0,1,1,1],[2,4,3,1],[2,1,2,1],[1,2,1,1]],[[0,1,1,1],[2,3,4,1],[2,1,2,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[3,1,2,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,2,1],[2,2,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,2,1],[1,3,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,2,3],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,2,2],[0,1,3,1]],[[0,1,1,1],[2,3,3,1],[2,1,2,2],[0,1,2,2]],[[0,1,1,1],[2,3,3,1],[2,1,2,3],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,2,2],[1,0,3,1]],[[0,1,1,1],[2,3,3,1],[2,1,2,2],[1,0,2,2]],[[0,1,1,1],[3,3,3,1],[2,1,2,2],[1,2,0,1]],[[0,1,1,1],[2,4,3,1],[2,1,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,4,1],[2,1,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,1],[3,1,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,1],[2,1,2,2],[2,2,0,1]],[[0,1,1,1],[2,3,3,1],[2,1,2,2],[1,3,0,1]],[[0,1,1,1],[3,3,3,1],[2,1,2,2],[1,2,1,0]],[[0,1,1,1],[2,4,3,1],[2,1,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,4,1],[2,1,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,1],[3,1,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,1],[2,1,2,2],[2,2,1,0]],[[0,1,1,1],[2,3,3,1],[2,1,2,2],[1,3,1,0]],[[1,2,2,1],[3,3,1,0],[1,3,2,1],[1,1,1,1]],[[1,3,2,1],[2,3,1,0],[1,3,2,1],[1,1,1,1]],[[2,2,2,1],[2,3,1,0],[1,3,2,1],[1,1,1,1]],[[0,1,1,1],[3,3,3,1],[2,1,3,1],[0,1,2,1]],[[0,1,1,1],[2,4,3,1],[2,1,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,4,1],[2,1,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[3,1,3,1],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,4,1],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,1],[0,1,3,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,1],[0,1,2,2]],[[0,1,1,1],[3,3,3,1],[2,1,3,1],[0,2,1,1]],[[0,1,1,1],[2,4,3,1],[2,1,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,4,1],[2,1,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[3,1,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,4,1],[0,2,1,1]],[[0,1,1,1],[3,3,3,1],[2,1,3,1],[1,0,2,1]],[[0,1,1,1],[2,4,3,1],[2,1,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,4,1],[2,1,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[3,1,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,4,1],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,1],[2,0,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,1],[1,0,3,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,1],[1,0,2,2]],[[0,1,1,1],[3,3,3,1],[2,1,3,1],[1,1,1,1]],[[0,1,1,1],[2,4,3,1],[2,1,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,4,1],[2,1,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[3,1,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,4,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,1],[2,1,1,1]],[[1,2,2,1],[3,3,1,0],[1,3,2,1],[1,0,2,1]],[[1,3,2,1],[2,3,1,0],[1,3,2,1],[1,0,2,1]],[[2,2,2,1],[2,3,1,0],[1,3,2,1],[1,0,2,1]],[[0,1,1,1],[3,3,3,1],[2,1,3,2],[0,0,2,1]],[[0,1,1,1],[2,4,3,1],[2,1,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,4,1],[2,1,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,4,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,3],[0,0,2,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,2],[0,0,2,2]],[[0,1,1,1],[3,3,3,1],[2,1,3,2],[0,1,1,1]],[[0,1,1,1],[2,4,3,1],[2,1,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,1],[2,1,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[3,1,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,4,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,3],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,2],[0,1,1,2]],[[0,1,1,1],[3,3,3,1],[2,1,3,2],[0,1,2,0]],[[0,1,1,1],[2,4,3,1],[2,1,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,1],[2,1,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[3,1,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[2,1,4,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[2,1,3,3],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[2,1,3,2],[0,1,3,0]],[[0,1,1,1],[3,3,3,1],[2,1,3,2],[0,2,0,1]],[[0,1,1,1],[2,4,3,1],[2,1,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,4,1],[2,1,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[3,1,3,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[2,1,4,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,3],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,2],[0,2,0,2]],[[0,1,1,1],[3,3,3,1],[2,1,3,2],[0,2,1,0]],[[0,1,1,1],[2,4,3,1],[2,1,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,4,1],[2,1,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,1],[3,1,3,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,1],[2,1,4,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,1],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[3,3,1,0],[1,3,2,1],[0,2,1,1]],[[1,3,2,1],[2,3,1,0],[1,3,2,1],[0,2,1,1]],[[2,2,2,1],[2,3,1,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,1],[3,3,1,0],[1,3,2,1],[0,1,2,1]],[[1,3,2,1],[2,3,1,0],[1,3,2,1],[0,1,2,1]],[[0,1,1,1],[3,3,3,1],[2,1,3,2],[1,0,1,1]],[[0,1,1,1],[2,4,3,1],[2,1,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,4,1],[2,1,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,1],[3,1,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,4,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,3],[1,0,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,2],[2,0,1,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,2],[1,0,1,2]],[[0,1,1,1],[3,3,3,1],[2,1,3,2],[1,0,2,0]],[[0,1,1,1],[2,4,3,1],[2,1,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,4,1],[2,1,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,1],[3,1,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,1],[2,1,4,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,1],[2,1,3,3],[1,0,2,0]],[[0,1,1,1],[2,3,3,1],[2,1,3,2],[2,0,2,0]],[[0,1,1,1],[2,3,3,1],[2,1,3,2],[1,0,3,0]],[[0,1,1,1],[3,3,3,1],[2,1,3,2],[1,1,0,1]],[[0,1,1,1],[2,4,3,1],[2,1,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,4,1],[2,1,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,1],[3,1,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,1],[2,1,4,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,3],[1,1,0,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,2],[2,1,0,1]],[[0,1,1,1],[2,3,3,1],[2,1,3,2],[1,1,0,2]],[[0,1,1,1],[3,3,3,1],[2,1,3,2],[1,1,1,0]],[[0,1,1,1],[2,4,3,1],[2,1,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,4,1],[2,1,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,1],[3,1,3,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,1],[2,1,4,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,1],[2,1,3,3],[1,1,1,0]],[[0,1,1,1],[2,3,3,1],[2,1,3,2],[2,1,1,0]],[[2,2,2,1],[2,3,1,0],[1,3,2,1],[0,1,2,1]],[[1,2,2,1],[3,3,1,0],[1,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,3,1,0],[1,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,3,1,0],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,3,1,0],[1,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,3,1,0],[1,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,3,1,0],[1,3,1,2],[0,2,2,0]],[[1,2,2,1],[3,3,1,0],[1,3,1,1],[1,1,2,1]],[[1,3,2,1],[2,3,1,0],[1,3,1,1],[1,1,2,1]],[[2,2,2,1],[2,3,1,0],[1,3,1,1],[1,1,2,1]],[[1,2,2,1],[3,3,1,0],[1,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,3,1,0],[1,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,3,1,0],[1,3,1,1],[0,2,2,1]],[[0,1,1,1],[3,3,3,1],[2,2,0,2],[0,2,2,1]],[[0,1,1,1],[2,4,3,1],[2,2,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,4,1],[2,2,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[3,2,0,2],[0,2,2,1]],[[0,1,1,1],[3,3,3,1],[2,2,0,2],[1,1,2,1]],[[0,1,1,1],[2,4,3,1],[2,2,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,4,1],[2,2,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[3,2,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[2,2,0,2],[2,1,2,1]],[[0,1,1,1],[3,3,3,1],[2,2,1,1],[0,2,2,1]],[[0,1,1,1],[2,4,3,1],[2,2,1,1],[0,2,2,1]],[[0,1,1,1],[2,3,4,1],[2,2,1,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,1],[3,2,1,1],[0,2,2,1]],[[0,1,1,1],[3,3,3,1],[2,2,1,1],[1,1,2,1]],[[0,1,1,1],[2,4,3,1],[2,2,1,1],[1,1,2,1]],[[0,1,1,1],[2,3,4,1],[2,2,1,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[3,2,1,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,1],[2,2,1,1],[2,1,2,1]],[[0,1,1,1],[3,3,3,1],[2,2,1,2],[0,2,2,0]],[[0,1,1,1],[2,4,3,1],[2,2,1,2],[0,2,2,0]],[[0,1,1,1],[2,3,4,1],[2,2,1,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,1],[3,2,1,2],[0,2,2,0]],[[0,1,1,1],[3,3,3,1],[2,2,1,2],[1,1,2,0]],[[0,1,1,1],[2,4,3,1],[2,2,1,2],[1,1,2,0]],[[0,1,1,1],[2,3,4,1],[2,2,1,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,1],[3,2,1,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,1],[2,2,1,2],[2,1,2,0]],[[1,2,2,1],[3,3,1,0],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,3,1,0],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,3,1,0],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,3,1,0],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,1,0],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,1,0],[1,3,0,2],[0,2,2,1]],[[0,1,1,1],[3,3,3,1],[2,2,2,1],[0,1,2,1]],[[0,1,1,1],[2,4,3,1],[2,2,2,1],[0,1,2,1]],[[0,1,1,1],[2,3,4,1],[2,2,2,1],[0,1,2,1]],[[0,1,1,1],[2,3,3,1],[3,2,2,1],[0,1,2,1]],[[0,1,1,1],[3,3,3,1],[2,2,2,1],[0,2,1,1]],[[0,1,1,1],[2,4,3,1],[2,2,2,1],[0,2,1,1]],[[0,1,1,1],[2,3,4,1],[2,2,2,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,1],[3,2,2,1],[0,2,1,1]],[[0,1,1,1],[3,3,3,1],[2,2,2,1],[1,0,2,1]],[[0,1,1,1],[2,4,3,1],[2,2,2,1],[1,0,2,1]],[[0,1,1,1],[2,3,4,1],[2,2,2,1],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[3,2,2,1],[1,0,2,1]],[[0,1,1,1],[2,3,3,1],[2,2,2,1],[2,0,2,1]],[[0,1,1,1],[3,3,3,1],[2,2,2,1],[1,1,1,1]],[[0,1,1,1],[2,4,3,1],[2,2,2,1],[1,1,1,1]],[[0,1,1,1],[2,3,4,1],[2,2,2,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[3,2,2,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,1],[2,2,2,1],[2,1,1,1]],[[0,1,1,1],[3,3,3,1],[2,2,2,2],[0,1,1,1]],[[0,1,1,1],[2,4,3,1],[2,2,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,1],[2,2,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,1],[3,2,2,2],[0,1,1,1]],[[0,1,1,1],[3,3,3,1],[2,2,2,2],[0,1,2,0]],[[0,1,1,1],[2,4,3,1],[2,2,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,1],[2,2,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,1],[3,2,2,2],[0,1,2,0]],[[0,1,1,1],[3,3,3,1],[2,2,2,2],[0,2,0,1]],[[0,1,1,1],[2,4,3,1],[2,2,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,4,1],[2,2,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,1],[3,2,2,2],[0,2,0,1]],[[0,1,1,1],[3,3,3,1],[2,2,2,2],[0,2,1,0]],[[0,1,1,1],[2,4,3,1],[2,2,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,4,1],[2,2,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,1],[3,2,2,2],[0,2,1,0]],[[0,1,1,1],[3,3,3,1],[2,2,2,2],[1,0,1,1]],[[0,1,1,1],[2,4,3,1],[2,2,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,4,1],[2,2,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,1],[3,2,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,1],[2,2,2,2],[2,0,1,1]],[[0,1,1,1],[3,3,3,1],[2,2,2,2],[1,0,2,0]],[[0,1,1,1],[2,4,3,1],[2,2,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,4,1],[2,2,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,1],[3,2,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,1],[2,2,2,2],[2,0,2,0]],[[0,1,1,1],[3,3,3,1],[2,2,2,2],[1,1,0,1]],[[0,1,1,1],[2,4,3,1],[2,2,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,4,1],[2,2,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,1],[3,2,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,1],[2,2,2,2],[2,1,0,1]],[[0,1,1,1],[3,3,3,1],[2,2,2,2],[1,1,1,0]],[[0,1,1,1],[2,4,3,1],[2,2,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,4,1],[2,2,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,1],[3,2,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,1],[2,2,2,2],[2,1,1,0]],[[0,1,1,1],[3,3,3,1],[2,2,2,2],[1,2,0,0]],[[0,1,1,1],[2,4,3,1],[2,2,2,2],[1,2,0,0]],[[0,1,1,1],[2,3,4,1],[2,2,2,2],[1,2,0,0]],[[0,1,1,1],[2,3,3,1],[3,2,2,2],[1,2,0,0]],[[0,1,1,1],[2,3,3,1],[2,2,2,2],[2,2,0,0]],[[1,2,2,1],[2,4,1,0],[0,3,3,2],[1,1,1,0]],[[1,2,2,2],[2,3,1,0],[0,3,3,2],[1,1,1,0]],[[1,2,3,1],[2,3,1,0],[0,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,3,1,0],[0,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,3,1,0],[0,3,3,2],[1,1,1,0]],[[1,2,2,1],[2,4,1,0],[0,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,3,1,0],[0,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,3,1,0],[0,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,3,1,0],[0,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,3,1,0],[0,3,3,2],[1,1,0,1]],[[1,2,2,1],[2,4,1,0],[0,3,3,2],[1,0,2,0]],[[1,2,2,2],[2,3,1,0],[0,3,3,2],[1,0,2,0]],[[1,2,3,1],[2,3,1,0],[0,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,1,0],[0,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,1,0],[0,3,3,2],[1,0,2,0]],[[1,2,2,1],[2,4,1,0],[0,3,3,2],[1,0,1,1]],[[1,2,2,2],[2,3,1,0],[0,3,3,2],[1,0,1,1]],[[1,2,3,1],[2,3,1,0],[0,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,1,0],[0,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,1,0],[0,3,3,2],[1,0,1,1]],[[0,1,1,1],[3,3,3,1],[2,2,3,2],[0,2,0,0]],[[0,1,1,1],[2,4,3,1],[2,2,3,2],[0,2,0,0]],[[0,1,1,1],[2,3,4,1],[2,2,3,2],[0,2,0,0]],[[0,1,1,1],[2,3,3,1],[3,2,3,2],[0,2,0,0]],[[1,2,2,1],[2,4,1,0],[0,3,3,2],[0,2,1,0]],[[1,2,2,2],[2,3,1,0],[0,3,3,2],[0,2,1,0]],[[1,2,3,1],[2,3,1,0],[0,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,3,1,0],[0,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,3,1,0],[0,3,3,2],[0,2,1,0]],[[1,2,2,1],[2,4,1,0],[0,3,3,2],[0,2,0,1]],[[1,2,2,2],[2,3,1,0],[0,3,3,2],[0,2,0,1]],[[1,2,3,1],[2,3,1,0],[0,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,3,1,0],[0,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,3,1,0],[0,3,3,2],[0,2,0,1]],[[1,2,2,1],[2,4,1,0],[0,3,3,2],[0,1,2,0]],[[1,2,2,2],[2,3,1,0],[0,3,3,2],[0,1,2,0]],[[1,2,3,1],[2,3,1,0],[0,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,1,0],[0,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,1,0],[0,3,3,2],[0,1,2,0]],[[1,2,2,1],[2,4,1,0],[0,3,3,2],[0,1,1,1]],[[1,2,2,2],[2,3,1,0],[0,3,3,2],[0,1,1,1]],[[1,2,3,1],[2,3,1,0],[0,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,3,1,0],[0,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,3,1,0],[0,3,3,2],[0,1,1,1]],[[0,1,1,1],[3,3,3,1],[2,2,3,2],[1,1,0,0]],[[0,1,1,1],[2,4,3,1],[2,2,3,2],[1,1,0,0]],[[0,1,1,1],[2,3,4,1],[2,2,3,2],[1,1,0,0]],[[0,1,1,1],[2,3,3,1],[3,2,3,2],[1,1,0,0]],[[0,1,1,1],[2,3,3,1],[2,2,3,2],[2,1,0,0]],[[1,2,2,1],[2,4,1,0],[0,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,3,1,0],[0,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,3,1,0],[0,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,3,1,0],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[2,4,1,0],[0,3,3,1],[1,0,2,1]],[[1,2,2,2],[2,3,1,0],[0,3,3,1],[1,0,2,1]],[[1,2,3,1],[2,3,1,0],[0,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,3,1,0],[0,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,3,1,0],[0,3,3,1],[1,0,2,1]],[[1,2,2,1],[2,4,1,0],[0,3,3,1],[0,2,1,1]],[[1,2,2,2],[2,3,1,0],[0,3,3,1],[0,2,1,1]],[[1,2,3,1],[2,3,1,0],[0,3,3,1],[0,2,1,1]],[[1,3,2,1],[2,3,1,0],[0,3,3,1],[0,2,1,1]],[[2,2,2,1],[2,3,1,0],[0,3,3,1],[0,2,1,1]],[[1,2,2,1],[2,4,1,0],[0,3,3,1],[0,1,2,1]],[[1,2,2,2],[2,3,1,0],[0,3,3,1],[0,1,2,1]],[[1,2,3,1],[2,3,1,0],[0,3,3,1],[0,1,2,1]],[[1,3,2,1],[2,3,1,0],[0,3,3,1],[0,1,2,1]],[[2,2,2,1],[2,3,1,0],[0,3,3,1],[0,1,2,1]],[[1,2,2,1],[2,4,1,0],[0,3,3,0],[0,2,2,1]],[[1,2,3,1],[2,3,1,0],[0,3,3,0],[0,2,2,1]],[[1,3,2,1],[2,3,1,0],[0,3,3,0],[0,2,2,1]],[[2,2,2,1],[2,3,1,0],[0,3,3,0],[0,2,2,1]],[[1,2,2,1],[3,3,1,0],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[2,3,1,0],[0,3,2,2],[1,2,1,0]],[[2,2,2,1],[2,3,1,0],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[3,3,1,0],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[2,3,1,0],[0,3,2,2],[1,2,0,1]],[[2,2,2,1],[2,3,1,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[2,4,1,0],[0,3,2,2],[0,2,2,0]],[[1,2,2,2],[2,3,1,0],[0,3,2,2],[0,2,2,0]],[[1,2,3,1],[2,3,1,0],[0,3,2,2],[0,2,2,0]],[[1,3,2,1],[2,3,1,0],[0,3,2,2],[0,2,2,0]],[[2,2,2,1],[2,3,1,0],[0,3,2,2],[0,2,2,0]],[[1,2,2,1],[3,3,1,0],[0,3,2,1],[1,2,1,1]],[[1,3,2,1],[2,3,1,0],[0,3,2,1],[1,2,1,1]],[[2,2,2,1],[2,3,1,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,1],[2,4,1,0],[0,3,2,1],[0,2,2,1]],[[1,2,2,2],[2,3,1,0],[0,3,2,1],[0,2,2,1]],[[1,2,3,1],[2,3,1,0],[0,3,2,1],[0,2,2,1]],[[1,3,2,1],[2,3,1,0],[0,3,2,1],[0,2,2,1]],[[2,2,2,1],[2,3,1,0],[0,3,2,1],[0,2,2,1]],[[1,2,2,1],[3,3,1,0],[0,3,1,2],[1,2,2,0]],[[1,3,2,1],[2,3,1,0],[0,3,1,2],[1,2,2,0]],[[2,2,2,1],[2,3,1,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,1],[2,4,1,0],[0,3,1,2],[0,2,2,1]],[[1,2,2,2],[2,3,1,0],[0,3,1,2],[0,2,2,1]],[[1,2,3,1],[2,3,1,0],[0,3,1,2],[0,2,2,1]],[[1,3,2,1],[2,3,1,0],[0,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,3,1,0],[0,3,1,2],[0,2,2,1]],[[1,2,2,1],[3,3,1,0],[0,3,1,1],[1,2,2,1]],[[1,3,2,1],[2,3,1,0],[0,3,1,1],[1,2,2,1]],[[2,2,2,1],[2,3,1,0],[0,3,1,1],[1,2,2,1]],[[1,2,2,1],[3,3,1,0],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[2,3,1,0],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[2,3,1,0],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[2,3,0,2],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[3,3,0,2],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[2,3,0,2],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[2,3,0,2],[2,3,3,1],[1,0,0,0]],[[0,1,1,1],[3,3,3,1],[2,3,2,2],[1,0,0,1]],[[0,1,1,1],[2,4,3,1],[2,3,2,2],[1,0,0,1]],[[0,1,1,1],[2,3,4,1],[2,3,2,2],[1,0,0,1]],[[0,1,1,1],[2,3,3,1],[3,3,2,2],[1,0,0,1]],[[0,1,1,1],[3,3,3,1],[2,3,2,2],[1,0,1,0]],[[0,1,1,1],[2,4,3,1],[2,3,2,2],[1,0,1,0]],[[0,1,1,1],[2,3,4,1],[2,3,2,2],[1,0,1,0]],[[0,1,1,1],[2,3,3,1],[3,3,2,2],[1,0,1,0]],[[1,2,2,1],[2,3,0,2],[3,3,2,1],[1,0,1,0]],[[1,2,2,1],[3,3,0,2],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[2,3,0,2],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[2,3,0,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,3,0,2],[3,3,2,1],[1,0,0,1]],[[1,2,2,1],[3,3,0,2],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[2,3,0,2],[2,3,2,1],[1,0,0,1]],[[2,2,2,1],[2,3,0,2],[2,3,2,1],[1,0,0,1]],[[1,2,2,1],[2,3,0,2],[3,3,2,0],[1,0,1,1]],[[1,2,2,1],[3,3,0,2],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,3,0,2],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,3,0,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[2,3,0,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[3,3,0,2],[2,3,1,2],[1,0,1,0]],[[1,3,2,1],[2,3,0,2],[2,3,1,2],[1,0,1,0]],[[2,2,2,1],[2,3,0,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,3,0,2],[3,3,1,2],[1,0,0,1]],[[1,2,2,1],[3,3,0,2],[2,3,1,2],[1,0,0,1]],[[1,3,2,1],[2,3,0,2],[2,3,1,2],[1,0,0,1]],[[2,2,2,1],[2,3,0,2],[2,3,1,2],[1,0,0,1]],[[1,2,2,1],[2,3,0,2],[2,3,1,1],[2,2,0,0]],[[1,2,2,1],[2,3,0,2],[3,3,1,1],[1,2,0,0]],[[1,2,2,1],[3,3,0,2],[2,3,1,1],[1,2,0,0]],[[1,3,2,1],[2,3,0,2],[2,3,1,1],[1,2,0,0]],[[2,2,2,1],[2,3,0,2],[2,3,1,1],[1,2,0,0]],[[1,2,2,1],[2,3,0,2],[2,3,1,1],[2,1,1,0]],[[1,2,2,1],[2,3,0,2],[3,3,1,1],[1,1,1,0]],[[1,2,2,1],[3,3,0,2],[2,3,1,1],[1,1,1,0]],[[1,3,2,1],[2,3,0,2],[2,3,1,1],[1,1,1,0]],[[2,2,2,1],[2,3,0,2],[2,3,1,1],[1,1,1,0]],[[1,2,2,1],[2,3,0,2],[2,3,1,1],[2,1,0,1]],[[1,2,2,1],[2,3,0,2],[3,3,1,1],[1,1,0,1]],[[1,2,2,1],[3,3,0,2],[2,3,1,1],[1,1,0,1]],[[1,3,2,1],[2,3,0,2],[2,3,1,1],[1,1,0,1]],[[2,2,2,1],[2,3,0,2],[2,3,1,1],[1,1,0,1]],[[1,2,2,1],[2,3,0,2],[3,3,1,1],[0,2,1,0]],[[1,2,2,1],[3,3,0,2],[2,3,1,1],[0,2,1,0]],[[1,3,2,1],[2,3,0,2],[2,3,1,1],[0,2,1,0]],[[2,2,2,1],[2,3,0,2],[2,3,1,1],[0,2,1,0]],[[1,2,2,1],[2,3,0,2],[3,3,1,1],[0,2,0,1]],[[1,2,2,1],[3,3,0,2],[2,3,1,1],[0,2,0,1]],[[1,3,2,1],[2,3,0,2],[2,3,1,1],[0,2,0,1]],[[2,2,2,1],[2,3,0,2],[2,3,1,1],[0,2,0,1]],[[1,2,2,1],[2,3,0,2],[2,3,1,0],[2,2,0,1]],[[1,2,2,1],[2,3,0,2],[3,3,1,0],[1,2,0,1]],[[1,2,2,1],[3,3,0,2],[2,3,1,0],[1,2,0,1]],[[1,3,2,1],[2,3,0,2],[2,3,1,0],[1,2,0,1]],[[2,2,2,1],[2,3,0,2],[2,3,1,0],[1,2,0,1]],[[1,2,2,1],[2,3,0,2],[2,3,1,0],[2,1,1,1]],[[1,2,2,1],[2,3,0,2],[3,3,1,0],[1,1,1,1]],[[1,2,2,1],[3,3,0,2],[2,3,1,0],[1,1,1,1]],[[1,3,2,1],[2,3,0,2],[2,3,1,0],[1,1,1,1]],[[0,1,1,1],[3,3,3,1],[2,3,3,2],[1,0,0,0]],[[0,1,1,1],[2,4,3,1],[2,3,3,2],[1,0,0,0]],[[0,1,1,1],[2,3,4,1],[2,3,3,2],[1,0,0,0]],[[0,1,1,1],[2,3,3,1],[3,3,3,2],[1,0,0,0]],[[2,2,2,1],[2,3,0,2],[2,3,1,0],[1,1,1,1]],[[1,2,2,1],[2,3,0,2],[3,3,1,0],[0,2,1,1]],[[1,2,2,1],[3,3,0,2],[2,3,1,0],[0,2,1,1]],[[1,3,2,1],[2,3,0,2],[2,3,1,0],[0,2,1,1]],[[2,2,2,1],[2,3,0,2],[2,3,1,0],[0,2,1,1]],[[1,2,2,1],[2,3,0,2],[2,3,0,2],[2,2,0,0]],[[1,2,2,1],[2,3,0,2],[3,3,0,2],[1,2,0,0]],[[1,2,2,1],[3,3,0,2],[2,3,0,2],[1,2,0,0]],[[1,3,2,1],[2,3,0,2],[2,3,0,2],[1,2,0,0]],[[2,2,2,1],[2,3,0,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[2,3,0,2],[2,3,0,2],[2,1,1,0]],[[1,2,2,1],[2,3,0,2],[3,3,0,2],[1,1,1,0]],[[1,2,2,1],[3,3,0,2],[2,3,0,2],[1,1,1,0]],[[1,3,2,1],[2,3,0,2],[2,3,0,2],[1,1,1,0]],[[2,2,2,1],[2,3,0,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,3,0,2],[2,3,0,2],[2,1,0,1]],[[1,2,2,1],[2,3,0,2],[3,3,0,2],[1,1,0,1]],[[1,2,2,1],[3,3,0,2],[2,3,0,2],[1,1,0,1]],[[1,3,2,1],[2,3,0,2],[2,3,0,2],[1,1,0,1]],[[2,2,2,1],[2,3,0,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[2,3,0,2],[3,3,0,2],[0,2,1,0]],[[1,2,2,1],[3,3,0,2],[2,3,0,2],[0,2,1,0]],[[1,3,2,1],[2,3,0,2],[2,3,0,2],[0,2,1,0]],[[2,2,2,1],[2,3,0,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,3,0,2],[3,3,0,2],[0,2,0,1]],[[1,2,2,1],[3,3,0,2],[2,3,0,2],[0,2,0,1]],[[1,3,2,1],[2,3,0,2],[2,3,0,2],[0,2,0,1]],[[2,2,2,1],[2,3,0,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[2,3,0,2],[2,3,0,1],[2,2,1,0]],[[1,2,2,1],[2,3,0,2],[3,3,0,1],[1,2,1,0]],[[1,2,2,1],[3,3,0,2],[2,3,0,1],[1,2,1,0]],[[1,3,2,1],[2,3,0,2],[2,3,0,1],[1,2,1,0]],[[2,2,2,1],[2,3,0,2],[2,3,0,1],[1,2,1,0]],[[1,2,2,1],[2,3,0,2],[2,3,0,1],[2,1,2,0]],[[1,2,2,1],[2,3,0,2],[3,3,0,1],[1,1,2,0]],[[1,2,2,1],[3,3,0,2],[2,3,0,1],[1,1,2,0]],[[1,3,2,1],[2,3,0,2],[2,3,0,1],[1,1,2,0]],[[2,2,2,1],[2,3,0,2],[2,3,0,1],[1,1,2,0]],[[1,2,2,1],[2,3,0,2],[3,3,0,1],[0,2,2,0]],[[1,2,2,1],[3,3,0,2],[2,3,0,1],[0,2,2,0]],[[1,3,2,1],[2,3,0,2],[2,3,0,1],[0,2,2,0]],[[2,2,2,1],[2,3,0,2],[2,3,0,1],[0,2,2,0]],[[1,2,2,1],[2,3,0,2],[2,3,0,0],[2,2,2,0]],[[1,2,2,1],[2,3,0,2],[3,3,0,0],[1,2,2,0]],[[1,2,2,1],[3,3,0,2],[2,3,0,0],[1,2,2,0]],[[1,3,2,1],[2,3,0,2],[2,3,0,0],[1,2,2,0]],[[2,2,2,1],[2,3,0,2],[2,3,0,0],[1,2,2,0]],[[1,2,2,1],[2,3,0,2],[2,3,0,0],[2,2,1,1]],[[1,2,2,1],[2,3,0,2],[3,3,0,0],[1,2,1,1]],[[1,2,2,1],[3,3,0,2],[2,3,0,0],[1,2,1,1]],[[1,3,2,1],[2,3,0,2],[2,3,0,0],[1,2,1,1]],[[2,2,2,1],[2,3,0,2],[2,3,0,0],[1,2,1,1]],[[1,2,2,1],[2,3,0,2],[2,3,0,0],[2,1,2,1]],[[1,2,2,1],[2,3,0,2],[3,3,0,0],[1,1,2,1]],[[1,2,2,1],[3,3,0,2],[2,3,0,0],[1,1,2,1]],[[1,3,2,1],[2,3,0,2],[2,3,0,0],[1,1,2,1]],[[2,2,2,1],[2,3,0,2],[2,3,0,0],[1,1,2,1]],[[1,2,2,1],[2,3,0,2],[3,3,0,0],[0,2,2,1]],[[1,2,2,1],[3,3,0,2],[2,3,0,0],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[2,3,0,0],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[2,3,0,0],[0,2,2,1]],[[0,1,1,2],[2,3,3,2],[0,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[0,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[0,0,2,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,0,2,3],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,0,2,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[0,0,2,2],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[0,0,3,2],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[0,0,3,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[0,0,3,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,0,3,3],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,0,3,2],[0,2,2,2]],[[0,1,1,2],[2,3,3,2],[0,0,3,2],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[0,0,3,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[0,0,3,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,0,3,3],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,0,3,2],[1,1,2,2]],[[0,1,1,2],[2,3,3,2],[0,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[0,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[0,0,3,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,0,3,3],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,0,3,2],[1,2,1,2]],[[0,1,1,2],[2,3,3,2],[0,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,4,2],[0,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,3],[0,0,3,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,0,3,3],[1,2,2,0]],[[0,1,1,2],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[0,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[0,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[0,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[0,1,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,1,1,3],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,1,1,2],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,1,1,2],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[0,1,1,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[0,1,1,2],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[0,1,1,1],[3,3,3,2],[0,1,2,2],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[0,1,2,2],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[0,1,2,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[0,1,2,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,1,2,3],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,1,2,2],[1,2,1,2]],[[0,1,1,2],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[0,1,1,1],[3,3,3,2],[0,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,4,3,2],[0,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,4,2],[0,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,3],[0,1,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,1,2,3],[1,2,2,0]],[[0,1,1,2],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[0,1,3,0],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[0,1,3,0],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[0,1,3,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[0,1,3,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,1,4,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,1,3,0],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,1,3,0],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[0,1,3,0],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[0,1,3,0],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[0,1,1,1],[3,3,3,2],[0,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[0,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[0,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[0,1,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,1,4,1],[1,2,1,1]],[[0,1,1,2],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[0,1,1,1],[3,3,3,2],[0,1,3,1],[1,2,2,0]],[[0,1,1,1],[2,4,3,2],[0,1,3,1],[1,2,2,0]],[[0,1,1,1],[2,3,4,2],[0,1,3,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,3],[0,1,3,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,1,4,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,1,3,1],[2,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,1,3,1],[1,3,2,0]],[[0,1,1,1],[2,3,3,2],[0,1,3,1],[1,2,3,0]],[[0,1,1,2],[2,3,3,2],[0,1,3,2],[1,0,2,1]],[[0,1,1,1],[2,3,4,2],[0,1,3,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,3],[0,1,3,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[0,1,3,3],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[0,1,3,2],[1,0,2,2]],[[0,1,1,2],[2,3,3,2],[0,1,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[0,1,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[0,1,3,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,1,3,3],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,1,3,2],[1,1,1,2]],[[0,1,1,2],[2,3,3,2],[0,1,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[0,1,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,3],[0,1,3,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,1,3,3],[1,1,2,0]],[[0,1,1,2],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[0,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[0,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[0,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[0,2,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,0,3],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,0,2],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,0,2],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,0,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[0,2,0,2],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[0,1,1,1],[3,3,3,2],[0,2,1,2],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[0,2,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[0,2,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[0,2,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,1,3],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,1,2],[1,1,3,1]],[[0,1,1,1],[2,3,3,2],[0,2,1,2],[1,1,2,2]],[[0,1,1,2],[2,3,3,2],[0,2,2,2],[1,0,2,1]],[[0,1,1,1],[2,4,3,2],[0,2,2,2],[1,0,2,1]],[[0,1,1,1],[2,3,4,2],[0,2,2,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,3],[0,2,2,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,2,3],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,2,2],[1,0,2,2]],[[0,1,1,2],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[0,2,2,2],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[0,2,2,2],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[0,2,2,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[0,2,2,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,2,2,3],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,2,2,2],[1,1,1,2]],[[0,1,1,2],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[0,1,1,1],[3,3,3,2],[0,2,2,2],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[0,2,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[0,2,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,3],[0,2,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,2,2,3],[1,1,2,0]],[[0,1,1,2],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[0,1,1,1],[3,3,3,2],[0,2,2,2],[1,2,0,1]],[[0,1,1,1],[2,4,3,2],[0,2,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,4,2],[0,2,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,3],[0,2,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,2,2,3],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,2,2,2],[1,2,0,2]],[[0,1,1,2],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[0,1,1,1],[3,3,3,2],[0,2,2,2],[1,2,1,0]],[[0,1,1,1],[2,4,3,2],[0,2,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,4,2],[0,2,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,3],[0,2,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,2,2,3],[1,2,1,0]],[[0,1,1,2],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[0,1,1,1],[3,3,3,2],[0,2,3,0],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[0,2,3,0],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[0,2,3,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[0,2,3,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,4,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,3,0],[1,1,3,1]],[[0,1,1,1],[2,3,3,2],[0,2,3,0],[1,1,2,2]],[[0,1,1,2],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[0,1,1,1],[3,3,3,2],[0,2,3,0],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[0,2,3,0],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[0,2,3,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[0,2,3,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,2,4,0],[1,2,1,1]],[[0,1,1,2],[2,3,3,2],[0,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,4,3,2],[0,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,4,2],[0,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,3,3],[0,2,3,1],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,4,1],[1,0,2,1]],[[0,1,1,2],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[0,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[0,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[0,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[0,2,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,2,4,1],[1,1,1,1]],[[0,1,1,2],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[0,1,1,1],[3,3,3,2],[0,2,3,1],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[0,2,3,1],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[0,2,3,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,3],[0,2,3,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,2,4,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,2,3,1],[1,1,3,0]],[[0,1,1,2],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[0,1,1,1],[3,3,3,2],[0,2,3,1],[1,2,0,1]],[[0,1,1,1],[2,4,3,2],[0,2,3,1],[1,2,0,1]],[[0,1,1,1],[2,3,4,2],[0,2,3,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,3],[0,2,3,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,2,4,1],[1,2,0,1]],[[0,1,1,2],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[0,1,1,1],[3,3,3,2],[0,2,3,1],[1,2,1,0]],[[0,1,1,1],[2,4,3,2],[0,2,3,1],[1,2,1,0]],[[0,1,1,1],[2,3,4,2],[0,2,3,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,3],[0,2,3,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,2,4,1],[1,2,1,0]],[[0,1,1,2],[2,3,3,2],[0,2,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,4,2],[0,2,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,3],[0,2,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,3,3],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[0,2,3,2],[0,0,2,2]],[[0,1,1,2],[2,3,3,2],[0,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[0,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[0,2,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,2,3,3],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,2,3,2],[0,1,1,2]],[[0,1,1,2],[2,3,3,2],[0,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[0,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[0,2,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,2,3,3],[0,1,2,0]],[[1,2,2,1],[2,3,0,2],[3,2,3,1],[1,1,0,0]],[[1,2,2,1],[3,3,0,2],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,0,2],[2,2,3,1],[1,1,0,0]],[[0,1,1,2],[2,3,3,2],[0,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,4,3,2],[0,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,4,2],[0,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,3],[0,2,3,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[0,2,3,3],[1,1,0,1]],[[2,2,2,1],[2,3,0,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[3,3,0,2],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,0,2],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,0,2],[2,2,3,1],[0,2,0,0]],[[0,1,1,2],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[0,3,0,1],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[0,3,0,1],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[0,3,0,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[0,3,0,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,4,0,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,0,1],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,0,1],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,0,1],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[0,3,0,1],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[0,1,1,1],[3,3,3,2],[0,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[0,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[0,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[0,3,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,4,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,0,3],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,0,2],[1,1,3,1]],[[0,1,1,1],[2,3,3,2],[0,3,0,2],[1,1,2,2]],[[0,1,1,2],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[0,1,1,1],[3,3,3,2],[0,3,0,2],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[0,3,0,2],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[0,3,0,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[0,3,0,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,4,0,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,0,3],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,0,2],[2,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,0,2],[1,3,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,0,2],[1,2,1,2]],[[0,1,1,2],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[0,1,1,1],[3,3,3,2],[0,3,0,2],[1,2,2,0]],[[0,1,1,1],[2,4,3,2],[0,3,0,2],[1,2,2,0]],[[0,1,1,1],[2,3,4,2],[0,3,0,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,3],[0,3,0,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,4,0,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,3,0,3],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,3,0,2],[2,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,3,0,2],[1,3,2,0]],[[0,1,1,1],[2,3,3,2],[0,3,0,2],[1,2,3,0]],[[0,1,1,2],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[0,3,1,0],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[0,3,1,0],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[0,3,1,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[0,3,1,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,4,1,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,0],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,0],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,0],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,0],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[0,1,1,1],[3,3,3,2],[0,3,1,1],[1,2,2,0]],[[0,1,1,1],[2,4,3,2],[0,3,1,1],[1,2,2,0]],[[0,1,1,1],[2,3,4,2],[0,3,1,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,3],[0,3,1,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,4,1,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,3,1,1],[2,2,2,0]],[[0,1,1,1],[2,3,3,2],[0,3,1,1],[1,3,2,0]],[[0,1,1,1],[2,3,3,2],[0,3,1,1],[1,2,3,0]],[[0,1,1,2],[2,3,3,2],[0,3,1,2],[0,1,2,1]],[[0,1,1,1],[2,4,3,2],[0,3,1,2],[0,1,2,1]],[[0,1,1,1],[2,3,4,2],[0,3,1,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,3],[0,3,1,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,3],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,2],[0,1,3,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,2],[0,1,2,2]],[[0,1,1,2],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[0,3,1,2],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[0,3,1,2],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[0,3,1,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[0,3,1,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,4,1,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,3],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,2],[1,1,1,2]],[[0,1,1,2],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[0,1,1,1],[3,3,3,2],[0,3,1,2],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[0,3,1,2],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[0,3,1,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,3],[0,3,1,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,4,1,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,3,1,3],[1,1,2,0]],[[0,1,1,2],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[0,1,1,1],[3,3,3,2],[0,3,1,2],[1,2,0,1]],[[0,1,1,1],[2,4,3,2],[0,3,1,2],[1,2,0,1]],[[0,1,1,1],[2,3,4,2],[0,3,1,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,3],[0,3,1,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,4,1,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,3],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,2],[2,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,2],[1,3,0,1]],[[0,1,1,1],[2,3,3,2],[0,3,1,2],[1,2,0,2]],[[0,1,1,2],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[0,1,1,1],[3,3,3,2],[0,3,1,2],[1,2,1,0]],[[0,1,1,1],[2,4,3,2],[0,3,1,2],[1,2,1,0]],[[0,1,1,1],[2,3,4,2],[0,3,1,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,3],[0,3,1,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,4,1,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,3,1,3],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,3,1,2],[2,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,3,1,2],[1,3,1,0]],[[0,1,1,2],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[0,1,1,1],[3,3,3,2],[0,3,2,0],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[0,3,2,0],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[0,3,2,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[0,3,2,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,4,2,0],[1,1,2,1]],[[0,1,1,2],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[0,1,1,1],[3,3,3,2],[0,3,2,0],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[0,3,2,0],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[0,3,2,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[0,3,2,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,4,2,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,2,0],[2,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,2,0],[1,3,1,1]],[[0,1,1,2],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[0,3,2,1],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[0,3,2,1],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[0,3,2,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[0,3,2,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,4,2,1],[1,1,1,1]],[[0,1,1,2],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[0,1,1,1],[3,3,3,2],[0,3,2,1],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[0,3,2,1],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[0,3,2,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,3],[0,3,2,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,4,2,1],[1,1,2,0]],[[0,1,1,2],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[0,1,1,1],[3,3,3,2],[0,3,2,1],[1,2,0,1]],[[0,1,1,1],[2,4,3,2],[0,3,2,1],[1,2,0,1]],[[0,1,1,1],[2,3,4,2],[0,3,2,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,3],[0,3,2,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,4,2,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,3,2,1],[2,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,3,2,1],[1,3,0,1]],[[0,1,1,2],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[0,1,1,1],[3,3,3,2],[0,3,2,1],[1,2,1,0]],[[0,1,1,1],[2,4,3,2],[0,3,2,1],[1,2,1,0]],[[0,1,1,1],[2,3,4,2],[0,3,2,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,3],[0,3,2,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,4,2,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,3,2,1],[2,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,3,2,1],[1,3,1,0]],[[0,1,1,2],[2,3,3,2],[0,3,2,2],[0,0,2,1]],[[0,1,1,1],[2,4,3,2],[0,3,2,2],[0,0,2,1]],[[0,1,1,1],[2,3,4,2],[0,3,2,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,3],[0,3,2,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,2,3],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,2,2],[0,0,2,2]],[[0,1,1,2],[2,3,3,2],[0,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,4,3,2],[0,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[0,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[0,3,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,2,3],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,2,2],[0,1,1,2]],[[0,1,1,2],[2,3,3,2],[0,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[0,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[0,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[0,3,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,3,2,3],[0,1,2,0]],[[0,1,1,2],[2,3,3,2],[0,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[0,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,4,2],[0,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,3],[0,3,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,3,2,3],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,3,2,2],[0,2,0,2]],[[0,1,1,2],[2,3,3,2],[0,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[0,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[0,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,3],[0,3,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,3,2,3],[0,2,1,0]],[[0,1,1,2],[2,3,3,2],[0,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,4,3,2],[0,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,4,2],[0,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,3],[0,3,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,4,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,3,0],[0,1,3,1]],[[0,1,1,1],[2,3,3,2],[0,3,3,0],[0,1,2,2]],[[0,1,1,2],[2,3,3,2],[0,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[0,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[0,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[0,3,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,4,0],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[0,3,3,0],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[0,3,3,0],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[0,3,3,0],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,4,3,0],[1,1,2,0]],[[0,1,1,1],[3,3,3,2],[0,3,3,0],[1,2,1,0]],[[0,1,1,1],[2,4,3,2],[0,3,3,0],[1,2,1,0]],[[0,1,1,1],[2,3,4,2],[0,3,3,0],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,4,3,0],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,3,3,0],[2,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,3,3,0],[1,3,1,0]],[[0,1,1,2],[2,3,3,2],[0,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,4,3,2],[0,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,3,4,2],[0,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,3,3,3],[0,3,3,1],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[0,3,4,1],[0,0,2,1]],[[0,1,1,2],[2,3,3,2],[0,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,4,3,2],[0,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[0,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[0,3,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[0,3,4,1],[0,1,1,1]],[[0,1,1,2],[2,3,3,2],[0,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[0,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[0,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[0,3,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,3,4,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[0,3,3,1],[0,1,3,0]],[[0,1,1,2],[2,3,3,2],[0,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[0,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,4,2],[0,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,3],[0,3,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[0,3,4,1],[0,2,0,1]],[[0,1,1,2],[2,3,3,2],[0,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[0,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[0,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,3],[0,3,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[0,3,4,1],[0,2,1,0]],[[0,1,1,2],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[0,1,1,1],[3,3,3,2],[0,3,3,1],[1,2,0,0]],[[0,1,1,1],[2,4,3,2],[0,3,3,1],[1,2,0,0]],[[0,1,1,1],[2,3,4,2],[0,3,3,1],[1,2,0,0]],[[0,1,1,1],[2,3,3,3],[0,3,3,1],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[0,4,3,1],[1,2,0,0]],[[0,1,1,2],[2,3,3,2],[0,3,3,2],[0,1,0,1]],[[0,1,1,1],[2,4,3,2],[0,3,3,2],[0,1,0,1]],[[0,1,1,1],[2,3,4,2],[0,3,3,2],[0,1,0,1]],[[0,1,1,1],[2,3,3,3],[0,3,3,2],[0,1,0,1]],[[0,1,1,1],[2,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,3,0,2],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[2,3,0,2],[3,2,2,1],[1,2,0,0]],[[1,2,2,1],[3,3,0,2],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,0,2],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,0,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[2,3,0,2],[2,2,2,1],[2,1,1,0]],[[1,2,2,1],[2,3,0,2],[3,2,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,0,2],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[2,3,0,2],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,0,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,3,0,2],[2,2,2,1],[2,1,0,1]],[[1,2,2,1],[2,3,0,2],[3,2,2,1],[1,1,0,1]],[[1,2,2,1],[3,3,0,2],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,0,2],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,0,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[2,3,0,2],[3,2,2,1],[1,0,2,0]],[[1,2,2,1],[3,3,0,2],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,0,2],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,0,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[2,3,0,2],[3,2,2,1],[1,0,1,1]],[[1,2,2,1],[3,3,0,2],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,0,2],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,0,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[2,3,0,2],[3,2,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,0,2],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,0,2],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,0,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[2,3,0,2],[3,2,2,1],[0,2,0,1]],[[1,2,2,1],[3,3,0,2],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,0,2],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,0,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[3,3,0,2],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,0,2],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,0,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[3,3,0,2],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[2,3,0,2],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[2,3,0,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[2,3,0,2],[2,2,2,0],[2,2,0,1]],[[1,2,2,1],[2,3,0,2],[3,2,2,0],[1,2,0,1]],[[1,2,2,1],[3,3,0,2],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,0,2],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[2,3,0,2],[2,2,2,0],[1,2,0,1]],[[0,1,1,2],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[1,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[1,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[1,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[1,0,1,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,1,3],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,1,2],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,1,2],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,1,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[1,0,1,2],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[1,0,2,2],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[1,0,2,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[1,0,2,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,2,3],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,2,2],[0,2,3,1]],[[0,1,1,1],[2,3,3,2],[1,0,2,2],[0,2,2,2]],[[0,1,1,2],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[0,1,1,1],[3,3,3,2],[1,0,2,2],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[1,0,2,2],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[1,0,2,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[1,0,2,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,0,2,3],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,0,2,2],[1,2,1,2]],[[0,1,1,2],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[0,1,1,1],[3,3,3,2],[1,0,2,2],[1,2,2,0]],[[0,1,1,1],[2,4,3,2],[1,0,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,4,2],[1,0,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,3],[1,0,2,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,0,2,3],[1,2,2,0]],[[0,1,1,2],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[1,0,3,0],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[1,0,3,0],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[1,0,3,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[1,0,3,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,4,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,3,0],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,3,0],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,3,0],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[1,0,3,0],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[0,1,1,1],[3,3,3,2],[1,0,3,1],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[1,0,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[1,0,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[1,0,3,1],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,0,4,1],[1,2,1,1]],[[0,1,1,2],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[0,1,1,1],[3,3,3,2],[1,0,3,1],[1,2,2,0]],[[0,1,1,1],[2,4,3,2],[1,0,3,1],[1,2,2,0]],[[0,1,1,1],[2,3,4,2],[1,0,3,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,3],[1,0,3,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,0,4,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,0,3,1],[2,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,0,3,1],[1,3,2,0]],[[0,1,1,1],[2,3,3,2],[1,0,3,1],[1,2,3,0]],[[0,1,1,2],[2,3,3,2],[1,0,3,2],[0,1,2,1]],[[0,1,1,1],[2,3,4,2],[1,0,3,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,3],[1,0,3,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,3,3],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,0,3,2],[0,1,2,2]],[[0,1,1,2],[2,3,3,2],[1,0,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[1,0,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[1,0,3,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,0,3,3],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,0,3,2],[0,2,1,2]],[[0,1,1,2],[2,3,3,2],[1,0,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,4,2],[1,0,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,3],[1,0,3,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[2,3,0,2],[2,2,2,0],[2,1,1,1]],[[1,2,2,1],[2,3,0,2],[3,2,2,0],[1,1,1,1]],[[1,2,2,1],[3,3,0,2],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,0,2],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,0,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[2,3,0,2],[3,2,2,0],[1,0,2,1]],[[1,2,2,1],[3,3,0,2],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,0,2],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,0,2],[2,2,2,0],[1,0,2,1]],[[0,1,1,2],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[1,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[1,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[1,1,0,2],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,0,3],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,0,2],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,0,2],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,0,2],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[1,1,0,2],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[1,1,1,2],[0,2,2,1]],[[0,1,1,1],[2,4,3,2],[1,1,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[1,1,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[1,1,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,1,3],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,1,2],[0,3,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,1,2],[0,2,3,1]],[[0,1,1,1],[2,3,3,2],[1,1,1,2],[0,2,2,2]],[[0,1,1,2],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[1,1,2,2],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[1,1,2,2],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[1,1,2,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[1,1,2,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,1,2,3],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,1,2,2],[0,2,1,2]],[[0,1,1,2],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[0,1,1,1],[3,3,3,2],[1,1,2,2],[0,2,2,0]],[[0,1,1,1],[2,4,3,2],[1,1,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,4,2],[1,1,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,3],[1,1,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,1],[2,3,0,2],[3,2,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,0,2],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,0,2],[2,2,2,0],[0,2,1,1]],[[0,1,1,2],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[1,1,3,0],[0,2,2,1]],[[0,1,1,1],[2,4,3,2],[1,1,3,0],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[1,1,3,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[1,1,3,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,4,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,3,0],[0,3,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,3,0],[0,2,3,1]],[[0,1,1,1],[2,3,3,2],[1,1,3,0],[0,2,2,2]],[[0,1,1,2],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[1,1,3,1],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[1,1,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[1,1,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[1,1,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,1,4,1],[0,2,1,1]],[[0,1,1,2],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[0,1,1,1],[3,3,3,2],[1,1,3,1],[0,2,2,0]],[[0,1,1,1],[2,4,3,2],[1,1,3,1],[0,2,2,0]],[[0,1,1,1],[2,3,4,2],[1,1,3,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,3],[1,1,3,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,1,4,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,1,3,1],[0,3,2,0]],[[0,1,1,1],[2,3,3,2],[1,1,3,1],[0,2,3,0]],[[2,2,2,1],[2,3,0,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,0,2],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,0,2],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,0,2],[2,2,2,0],[0,1,2,1]],[[0,1,1,2],[2,3,3,2],[1,1,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,4,2],[1,1,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,3],[1,1,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,3,3],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,1,3,2],[0,0,2,2]],[[0,1,1,2],[2,3,3,2],[1,1,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[1,1,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[1,1,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,1,3,3],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,1,3,2],[0,1,1,2]],[[0,1,1,2],[2,3,3,2],[1,1,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[1,1,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[1,1,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,1],[2,3,0,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,1],[2,3,0,2],[3,2,1,2],[1,2,0,0]],[[1,2,2,1],[3,3,0,2],[2,2,1,2],[1,2,0,0]],[[1,3,2,1],[2,3,0,2],[2,2,1,2],[1,2,0,0]],[[2,2,2,1],[2,3,0,2],[2,2,1,2],[1,2,0,0]],[[0,1,1,2],[2,3,3,2],[1,1,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,4,2],[1,1,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,3],[1,1,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,1,3,3],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,1,3,2],[1,0,1,2]],[[0,1,1,2],[2,3,3,2],[1,1,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[1,1,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,3],[1,1,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,1],[2,3,0,2],[2,2,1,2],[2,1,1,0]],[[1,2,2,1],[2,3,0,2],[3,2,1,2],[1,1,1,0]],[[1,2,2,1],[3,3,0,2],[2,2,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,0,2],[2,2,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,0,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,3,0,2],[2,2,1,2],[2,1,0,1]],[[1,2,2,1],[2,3,0,2],[3,2,1,2],[1,1,0,1]],[[1,2,2,1],[3,3,0,2],[2,2,1,2],[1,1,0,1]],[[1,3,2,1],[2,3,0,2],[2,2,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,0,2],[2,2,1,2],[1,1,0,1]],[[0,1,1,2],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[1,2,0,2],[0,2,2,1]],[[0,1,1,1],[2,4,3,2],[1,2,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[1,2,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[1,2,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,0,3],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,0,2],[0,3,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,0,2],[0,2,3,1]],[[0,1,1,1],[2,3,3,2],[1,2,0,2],[0,2,2,2]],[[0,1,1,2],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[0,1,1,1],[3,3,3,2],[1,2,1,2],[0,1,2,1]],[[0,1,1,1],[2,4,3,2],[1,2,1,2],[0,1,2,1]],[[0,1,1,1],[2,3,4,2],[1,2,1,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,3],[1,2,1,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,1,3],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,1,2],[0,1,3,1]],[[0,1,1,1],[2,3,3,2],[1,2,1,2],[0,1,2,2]],[[0,1,1,2],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[0,1,1,1],[3,3,3,2],[1,2,1,2],[1,0,2,1]],[[0,1,1,1],[2,4,3,2],[1,2,1,2],[1,0,2,1]],[[0,1,1,1],[2,3,4,2],[1,2,1,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,3],[1,2,1,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,1,3],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,1,2],[1,0,3,1]],[[0,1,1,1],[2,3,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,1],[2,3,0,2],[3,2,1,2],[1,0,2,0]],[[1,2,2,1],[3,3,0,2],[2,2,1,2],[1,0,2,0]],[[0,1,1,2],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[0,1,1,1],[3,3,3,2],[1,2,2,2],[0,0,2,1]],[[0,1,1,1],[2,4,3,2],[1,2,2,2],[0,0,2,1]],[[0,1,1,1],[2,3,4,2],[1,2,2,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,3],[1,2,2,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,2,3],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,2,2],[0,0,2,2]],[[0,1,1,2],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[0,1,1,1],[3,3,3,2],[1,2,2,2],[0,1,1,1]],[[0,1,1,1],[2,4,3,2],[1,2,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[1,2,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[1,2,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,2,2,3],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,2,2,2],[0,1,1,2]],[[0,1,1,2],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[0,1,1,1],[3,3,3,2],[1,2,2,2],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[1,2,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[1,2,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[1,2,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[1,2,2,3],[0,1,2,0]],[[0,1,1,2],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[1,2,2,2],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[1,2,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,4,2],[1,2,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,3],[1,2,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[1,2,2,3],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[1,2,2,2],[0,2,0,2]],[[0,1,1,2],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[0,1,1,1],[3,3,3,2],[1,2,2,2],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[1,2,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[1,2,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,3],[1,2,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[1,2,2,3],[0,2,1,0]],[[1,3,2,1],[2,3,0,2],[2,2,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,0,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[2,3,0,2],[3,2,1,2],[1,0,1,1]],[[1,2,2,1],[3,3,0,2],[2,2,1,2],[1,0,1,1]],[[1,3,2,1],[2,3,0,2],[2,2,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,0,2],[2,2,1,2],[1,0,1,1]],[[0,1,1,2],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[0,1,1,1],[3,3,3,2],[1,2,2,2],[1,0,1,1]],[[0,1,1,1],[2,4,3,2],[1,2,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,4,2],[1,2,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,3],[1,2,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,2,2,3],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,2,2,2],[1,0,1,2]],[[0,1,1,2],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[0,1,1,1],[3,3,3,2],[1,2,2,2],[1,0,2,0]],[[0,1,1,1],[2,4,3,2],[1,2,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[1,2,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,3],[1,2,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[1,2,2,3],[1,0,2,0]],[[0,1,1,2],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[0,1,1,1],[3,3,3,2],[1,2,2,2],[1,1,0,1]],[[0,1,1,1],[2,4,3,2],[1,2,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,4,2],[1,2,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,3],[1,2,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[1,2,2,3],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[1,2,2,2],[1,1,0,2]],[[0,1,1,2],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[0,1,1,1],[3,3,3,2],[1,2,2,2],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[1,2,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,4,2],[1,2,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,3],[1,2,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,1],[2,3,0,2],[3,2,1,2],[0,2,1,0]],[[1,2,2,1],[3,3,0,2],[2,2,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,0,2],[2,2,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,0,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,3,0,2],[3,2,1,2],[0,2,0,1]],[[1,2,2,1],[3,3,0,2],[2,2,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,0,2],[2,2,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,0,2],[2,2,1,2],[0,2,0,1]],[[0,1,1,2],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[0,1,1,1],[3,3,3,2],[1,2,3,0],[0,1,2,1]],[[0,1,1,1],[2,4,3,2],[1,2,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,4,2],[1,2,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,3],[1,2,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,4,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,3,0],[0,1,3,1]],[[0,1,1,1],[2,3,3,2],[1,2,3,0],[0,1,2,2]],[[0,1,1,2],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[1,2,3,0],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[1,2,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[1,2,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[1,2,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,2,4,0],[0,2,1,1]],[[0,1,1,2],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[0,1,1,1],[3,3,3,2],[1,2,3,0],[1,0,2,1]],[[0,1,1,1],[2,4,3,2],[1,2,3,0],[1,0,2,1]],[[0,1,1,1],[2,3,4,2],[1,2,3,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,3],[1,2,3,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,4,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,3,0],[1,0,3,1]],[[0,1,1,1],[2,3,3,2],[1,2,3,0],[1,0,2,2]],[[0,1,1,2],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[1,2,3,0],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[1,2,3,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[1,2,3,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,2,4,0],[1,1,1,1]],[[1,2,2,1],[3,3,0,2],[2,2,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,0,2],[2,2,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,0,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[3,3,0,2],[2,2,1,2],[0,1,1,1]],[[1,3,2,1],[2,3,0,2],[2,2,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,0,2],[2,2,1,2],[0,1,1,1]],[[0,1,1,2],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[0,1,1,1],[3,3,3,2],[1,2,3,1],[0,0,2,1]],[[0,1,1,1],[2,4,3,2],[1,2,3,1],[0,0,2,1]],[[0,1,1,1],[2,3,4,2],[1,2,3,1],[0,0,2,1]],[[0,1,1,1],[2,3,3,3],[1,2,3,1],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,2,4,1],[0,0,2,1]],[[0,1,1,2],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[0,1,1,1],[3,3,3,2],[1,2,3,1],[0,1,1,1]],[[0,1,1,1],[2,4,3,2],[1,2,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[1,2,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[1,2,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,2,4,1],[0,1,1,1]],[[0,1,1,2],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[0,1,1,1],[3,3,3,2],[1,2,3,1],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[1,2,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[1,2,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[1,2,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[1,2,4,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[1,2,3,1],[0,1,3,0]],[[0,1,1,2],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[1,2,3,1],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[1,2,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,4,2],[1,2,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,3],[1,2,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[1,2,4,1],[0,2,0,1]],[[0,1,1,2],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[0,1,1,1],[3,3,3,2],[1,2,3,1],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[1,2,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[1,2,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,3],[1,2,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[1,2,4,1],[0,2,1,0]],[[0,1,1,2],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[0,1,1,1],[3,3,3,2],[1,2,3,1],[1,0,1,1]],[[0,1,1,1],[2,4,3,2],[1,2,3,1],[1,0,1,1]],[[0,1,1,1],[2,3,4,2],[1,2,3,1],[1,0,1,1]],[[0,1,1,1],[2,3,3,3],[1,2,3,1],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,2,4,1],[1,0,1,1]],[[0,1,1,2],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[0,1,1,1],[3,3,3,2],[1,2,3,1],[1,0,2,0]],[[0,1,1,1],[2,4,3,2],[1,2,3,1],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[1,2,3,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,3],[1,2,3,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[1,2,4,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[1,2,3,1],[1,0,3,0]],[[0,1,1,2],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[0,1,1,1],[3,3,3,2],[1,2,3,1],[1,1,0,1]],[[0,1,1,1],[2,4,3,2],[1,2,3,1],[1,1,0,1]],[[0,1,1,1],[2,3,4,2],[1,2,3,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,3],[1,2,3,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[1,2,4,1],[1,1,0,1]],[[0,1,1,2],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[0,1,1,1],[3,3,3,2],[1,2,3,1],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[1,2,3,1],[1,1,1,0]],[[0,1,1,1],[2,3,4,2],[1,2,3,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,3],[1,2,3,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,2,1],[2,3,0,2],[2,2,1,1],[2,1,2,0]],[[1,2,2,1],[2,3,0,2],[3,2,1,1],[1,1,2,0]],[[1,2,2,1],[3,3,0,2],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,0,2],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,0,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[2,3,0,2],[3,2,1,1],[0,2,2,0]],[[1,2,2,1],[3,3,0,2],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,0,2],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,0,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[2,3,0,2],[2,2,1,0],[2,1,2,1]],[[1,2,2,1],[2,3,0,2],[3,2,1,0],[1,1,2,1]],[[1,2,2,1],[3,3,0,2],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,0,2],[2,2,1,0],[1,1,2,1]],[[0,1,1,2],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[0,1,1,1],[3,3,3,2],[1,2,3,2],[0,1,0,1]],[[0,1,1,1],[2,4,3,2],[1,2,3,2],[0,1,0,1]],[[0,1,1,1],[2,3,4,2],[1,2,3,2],[0,1,0,1]],[[0,1,1,1],[2,3,3,3],[1,2,3,2],[0,1,0,1]],[[0,1,1,1],[2,3,3,2],[1,2,3,3],[0,1,0,1]],[[2,2,2,1],[2,3,0,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[2,3,0,2],[3,2,1,0],[0,2,2,1]],[[1,2,2,1],[3,3,0,2],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[2,3,0,2],[2,2,0,2],[2,1,2,0]],[[1,2,2,1],[2,3,0,2],[3,2,0,2],[1,1,2,0]],[[1,2,2,1],[3,3,0,2],[2,2,0,2],[1,1,2,0]],[[1,3,2,1],[2,3,0,2],[2,2,0,2],[1,1,2,0]],[[2,2,2,1],[2,3,0,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[2,3,0,2],[2,2,0,2],[2,1,1,1]],[[1,2,2,1],[2,3,0,2],[3,2,0,2],[1,1,1,1]],[[1,2,2,1],[3,3,0,2],[2,2,0,2],[1,1,1,1]],[[1,3,2,1],[2,3,0,2],[2,2,0,2],[1,1,1,1]],[[2,2,2,1],[2,3,0,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[2,3,0,2],[2,2,0,2],[2,0,2,1]],[[1,2,2,1],[2,3,0,2],[3,2,0,2],[1,0,2,1]],[[1,2,2,1],[3,3,0,2],[2,2,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,0,2],[2,2,0,2],[1,0,2,1]],[[0,1,1,2],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[0,1,1,1],[3,3,3,2],[1,2,3,2],[1,0,0,1]],[[0,1,1,1],[2,4,3,2],[1,2,3,2],[1,0,0,1]],[[0,1,1,1],[2,3,4,2],[1,2,3,2],[1,0,0,1]],[[0,1,1,1],[2,3,3,3],[1,2,3,2],[1,0,0,1]],[[0,1,1,1],[2,3,3,2],[1,2,3,3],[1,0,0,1]],[[2,2,2,1],[2,3,0,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[2,3,0,2],[3,2,0,2],[0,2,2,0]],[[1,2,2,1],[3,3,0,2],[2,2,0,2],[0,2,2,0]],[[1,3,2,1],[2,3,0,2],[2,2,0,2],[0,2,2,0]],[[2,2,2,1],[2,3,0,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[2,3,0,2],[3,2,0,2],[0,2,1,1]],[[1,2,2,1],[3,3,0,2],[2,2,0,2],[0,2,1,1]],[[1,3,2,1],[2,3,0,2],[2,2,0,2],[0,2,1,1]],[[2,2,2,1],[2,3,0,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[2,3,0,2],[3,2,0,2],[0,1,2,1]],[[1,2,2,1],[3,3,0,2],[2,2,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,0,2],[2,2,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,0,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[2,3,0,2],[2,2,0,1],[1,3,2,0]],[[1,2,2,1],[2,3,0,2],[2,2,0,1],[2,2,2,0]],[[1,2,2,1],[2,3,0,2],[3,2,0,1],[1,2,2,0]],[[1,2,2,1],[3,3,0,2],[2,2,0,1],[1,2,2,0]],[[1,3,2,1],[2,3,0,2],[2,2,0,1],[1,2,2,0]],[[2,2,2,1],[2,3,0,2],[2,2,0,1],[1,2,2,0]],[[1,2,2,1],[2,3,0,2],[2,2,0,1],[2,1,2,1]],[[1,2,2,1],[2,3,0,2],[3,2,0,1],[1,1,2,1]],[[1,2,2,1],[3,3,0,2],[2,2,0,1],[1,1,2,1]],[[1,3,2,1],[2,3,0,2],[2,2,0,1],[1,1,2,1]],[[2,2,2,1],[2,3,0,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[2,3,0,2],[3,2,0,1],[0,2,2,1]],[[1,2,2,1],[3,3,0,2],[2,2,0,1],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[2,2,0,1],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[2,2,0,1],[0,2,2,1]],[[1,2,2,1],[2,3,0,2],[2,2,0,0],[1,3,2,1]],[[1,2,2,1],[2,3,0,2],[2,2,0,0],[2,2,2,1]],[[1,2,2,1],[2,3,0,2],[3,2,0,0],[1,2,2,1]],[[1,2,2,1],[3,3,0,2],[2,2,0,0],[1,2,2,1]],[[1,3,2,1],[2,3,0,2],[2,2,0,0],[1,2,2,1]],[[2,2,2,1],[2,3,0,2],[2,2,0,0],[1,2,2,1]],[[0,1,1,2],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[1,3,0,1],[0,2,2,1]],[[0,1,1,1],[2,4,3,2],[1,3,0,1],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[1,3,0,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[1,3,0,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,4,0,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,1],[0,3,2,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,1],[0,2,3,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,1],[0,2,2,2]],[[0,1,1,2],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[0,1,1,1],[3,3,3,2],[1,3,0,1],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[1,3,0,1],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[1,3,0,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[1,3,0,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,4,0,1],[1,1,2,1]],[[0,1,1,2],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[0,1,1,1],[3,3,3,2],[1,3,0,2],[0,1,2,1]],[[0,1,1,1],[2,4,3,2],[1,3,0,2],[0,1,2,1]],[[0,1,1,1],[2,3,4,2],[1,3,0,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,3],[1,3,0,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,4,0,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,3],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,2],[0,1,3,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,2],[0,1,2,2]],[[0,1,1,2],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[1,3,0,2],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[1,3,0,2],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[1,3,0,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[1,3,0,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,4,0,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,3],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,2],[0,3,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,2],[0,2,1,2]],[[0,1,1,2],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,0,2],[0,2,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,0,2],[0,2,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,0,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,3],[1,3,0,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,4,0,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,3,0,3],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,3,0,2],[0,3,2,0]],[[0,1,1,1],[2,3,3,2],[1,3,0,2],[0,2,3,0]],[[0,1,1,2],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[0,1,1,1],[3,3,3,2],[1,3,0,2],[1,0,2,1]],[[0,1,1,1],[2,4,3,2],[1,3,0,2],[1,0,2,1]],[[0,1,1,1],[2,3,4,2],[1,3,0,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,3],[1,3,0,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,4,0,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,3],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,2],[1,0,3,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,2],[1,0,2,2]],[[0,1,1,2],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[1,3,0,2],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[1,3,0,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[1,3,0,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,4,0,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,3],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,0,2],[1,1,1,2]],[[0,1,1,2],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,0,2],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,0,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,3],[1,3,0,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[1,4,0,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[1,3,0,3],[1,1,2,0]],[[0,1,1,2],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[1,3,1,0],[0,2,2,1]],[[0,1,1,1],[2,4,3,2],[1,3,1,0],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[1,3,1,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[1,3,1,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,4,1,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,0],[0,3,2,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,0],[0,2,3,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,0],[0,2,2,2]],[[0,1,1,2],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[0,1,1,1],[3,3,3,2],[1,3,1,0],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[1,3,1,0],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[1,3,1,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[1,3,1,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,4,1,0],[1,1,2,1]],[[0,1,1,2],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,1,1],[0,2,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,1,1],[0,2,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,1,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,3],[1,3,1,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,4,1,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[1,3,1,1],[0,3,2,0]],[[0,1,1,1],[2,3,3,2],[1,3,1,1],[0,2,3,0]],[[0,1,1,2],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,1,1],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,1,1],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,1,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,3],[1,3,1,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[1,4,1,1],[1,1,2,0]],[[0,1,1,2],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[0,1,1,1],[3,3,3,2],[1,3,1,2],[0,1,1,1]],[[0,1,1,1],[2,4,3,2],[1,3,1,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[1,3,1,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[1,3,1,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,4,1,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,3],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,2],[0,1,1,2]],[[0,1,1,2],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,1,2],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,1,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,1,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[1,3,1,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[1,4,1,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[1,3,1,3],[0,1,2,0]],[[0,1,1,2],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[1,3,1,2],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[1,3,1,2],[0,2,0,1]],[[0,1,1,1],[2,3,4,2],[1,3,1,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,3],[1,3,1,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[1,4,1,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,3],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,2],[0,3,0,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,2],[0,2,0,2]],[[0,1,1,2],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[0,1,1,1],[3,3,3,2],[1,3,1,2],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[1,3,1,2],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[1,3,1,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,3],[1,3,1,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[1,4,1,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[1,3,1,3],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[1,3,1,2],[0,3,1,0]],[[0,1,1,2],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[0,1,1,1],[3,3,3,2],[1,3,1,2],[1,0,1,1]],[[0,1,1,1],[2,4,3,2],[1,3,1,2],[1,0,1,1]],[[0,1,1,1],[2,3,4,2],[1,3,1,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,3],[1,3,1,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,4,1,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,3],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,2],[1,0,1,2]],[[0,1,1,2],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,1,2],[1,0,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,1,2],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,1,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,3],[1,3,1,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[1,4,1,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[1,3,1,3],[1,0,2,0]],[[0,1,1,2],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[0,1,1,1],[3,3,3,2],[1,3,1,2],[1,1,0,1]],[[0,1,1,1],[2,4,3,2],[1,3,1,2],[1,1,0,1]],[[0,1,1,1],[2,3,4,2],[1,3,1,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,3],[1,3,1,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[1,4,1,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,3],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[1,3,1,2],[1,1,0,2]],[[0,1,1,2],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[0,1,1,1],[3,3,3,2],[1,3,1,2],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[1,3,1,2],[1,1,1,0]],[[0,1,1,1],[2,3,4,2],[1,3,1,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,3],[1,3,1,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[1,4,1,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[1,3,1,3],[1,1,1,0]],[[0,1,1,2],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[0,1,1,1],[3,3,3,2],[1,3,1,2],[1,2,0,0]],[[0,1,1,1],[2,4,3,2],[1,3,1,2],[1,2,0,0]],[[0,1,1,1],[2,3,4,2],[1,3,1,2],[1,2,0,0]],[[0,1,1,1],[2,3,3,3],[1,3,1,2],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[1,4,1,2],[1,2,0,0]],[[0,1,1,2],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[0,1,1,1],[3,3,3,2],[1,3,2,0],[0,1,2,1]],[[0,1,1,1],[2,4,3,2],[1,3,2,0],[0,1,2,1]],[[0,1,1,1],[2,3,4,2],[1,3,2,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,3],[1,3,2,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[1,4,2,0],[0,1,2,1]],[[0,1,1,2],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[1,3,2,0],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[1,3,2,0],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[1,3,2,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[1,3,2,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,4,2,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,2,0],[0,3,1,1]],[[0,1,1,2],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[0,1,1,1],[3,3,3,2],[1,3,2,0],[1,0,2,1]],[[0,1,1,1],[2,4,3,2],[1,3,2,0],[1,0,2,1]],[[0,1,1,1],[2,3,4,2],[1,3,2,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,3],[1,3,2,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,4,2,0],[1,0,2,1]],[[0,1,1,2],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[1,3,2,0],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[1,3,2,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[1,3,2,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,4,2,0],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[1,3,2,0],[1,2,0,1]],[[0,1,1,1],[2,4,3,2],[1,3,2,0],[1,2,0,1]],[[0,1,1,1],[2,3,4,2],[1,3,2,0],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[1,4,2,0],[1,2,0,1]],[[0,1,1,2],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[0,1,1,1],[3,3,3,2],[1,3,2,1],[0,1,1,1]],[[0,1,1,1],[2,4,3,2],[1,3,2,1],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[1,3,2,1],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[1,3,2,1],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[1,4,2,1],[0,1,1,1]],[[0,1,1,2],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,2,1],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,2,1],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,2,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[1,3,2,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[1,4,2,1],[0,1,2,0]],[[0,1,1,2],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[1,3,2,1],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[1,3,2,1],[0,2,0,1]],[[0,1,1,1],[2,3,4,2],[1,3,2,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,3],[1,3,2,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[1,4,2,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[1,3,2,1],[0,3,0,1]],[[0,1,1,2],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[0,1,1,1],[3,3,3,2],[1,3,2,1],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[1,3,2,1],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[1,3,2,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,3],[1,3,2,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[1,4,2,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[1,3,2,1],[0,3,1,0]],[[0,1,1,2],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[0,1,1,1],[3,3,3,2],[1,3,2,1],[1,0,1,1]],[[0,1,1,1],[2,4,3,2],[1,3,2,1],[1,0,1,1]],[[0,1,1,1],[2,3,4,2],[1,3,2,1],[1,0,1,1]],[[0,1,1,1],[2,3,3,3],[1,3,2,1],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,4,2,1],[1,0,1,1]],[[0,1,1,2],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,2,1],[1,0,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,2,1],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,2,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,3],[1,3,2,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[1,4,2,1],[1,0,2,0]],[[0,1,1,2],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[0,1,1,1],[3,3,3,2],[1,3,2,1],[1,1,0,1]],[[0,1,1,1],[2,4,3,2],[1,3,2,1],[1,1,0,1]],[[0,1,1,1],[2,3,4,2],[1,3,2,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,3],[1,3,2,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[1,4,2,1],[1,1,0,1]],[[0,1,1,2],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[0,1,1,1],[3,3,3,2],[1,3,2,1],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[1,3,2,1],[1,1,1,0]],[[0,1,1,1],[2,3,4,2],[1,3,2,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,3],[1,3,2,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[1,4,2,1],[1,1,1,0]],[[0,1,1,2],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[0,1,1,1],[3,3,3,2],[1,3,2,1],[1,2,0,0]],[[0,1,1,1],[2,4,3,2],[1,3,2,1],[1,2,0,0]],[[0,1,1,1],[2,3,4,2],[1,3,2,1],[1,2,0,0]],[[0,1,1,1],[2,3,3,3],[1,3,2,1],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[1,4,2,1],[1,2,0,0]],[[0,1,1,2],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[0,1,1,1],[3,3,3,2],[1,3,2,2],[0,0,1,1]],[[0,1,1,1],[2,4,3,2],[1,3,2,2],[0,0,1,1]],[[0,1,1,1],[2,3,4,2],[1,3,2,2],[0,0,1,1]],[[0,1,1,1],[2,3,3,3],[1,3,2,2],[0,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,2,3],[0,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,2,2],[0,0,1,2]],[[0,1,1,2],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,2,2],[0,0,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,2,2],[0,0,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,2,2],[0,0,2,0]],[[0,1,1,1],[2,3,3,3],[1,3,2,2],[0,0,2,0]],[[0,1,1,1],[2,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[2,3,0,2],[2,1,2,1],[2,2,1,0]],[[1,2,2,1],[2,3,0,2],[3,1,2,1],[1,2,1,0]],[[1,2,2,1],[3,3,0,2],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[2,3,0,2],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[2,3,0,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[2,3,0,2],[2,1,2,1],[2,2,0,1]],[[1,2,2,1],[2,3,0,2],[3,1,2,1],[1,2,0,1]],[[1,2,2,1],[3,3,0,2],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[2,3,0,2],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[2,3,0,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[2,3,0,2],[2,1,2,0],[2,2,1,1]],[[1,2,2,1],[2,3,0,2],[3,1,2,0],[1,2,1,1]],[[1,2,2,1],[3,3,0,2],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[2,3,0,2],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[2,3,0,2],[2,1,2,0],[1,2,1,1]],[[1,2,2,1],[2,3,0,2],[2,1,1,2],[2,2,1,0]],[[1,2,2,1],[2,3,0,2],[3,1,1,2],[1,2,1,0]],[[1,2,2,1],[3,3,0,2],[2,1,1,2],[1,2,1,0]],[[1,3,2,1],[2,3,0,2],[2,1,1,2],[1,2,1,0]],[[2,2,2,1],[2,3,0,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[2,3,0,2],[2,1,1,2],[2,2,0,1]],[[1,2,2,1],[2,3,0,2],[3,1,1,2],[1,2,0,1]],[[1,2,2,1],[3,3,0,2],[2,1,1,2],[1,2,0,1]],[[1,3,2,1],[2,3,0,2],[2,1,1,2],[1,2,0,1]],[[2,2,2,1],[2,3,0,2],[2,1,1,2],[1,2,0,1]],[[0,1,1,2],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[0,1,1,1],[3,3,3,2],[1,3,3,0],[0,0,2,1]],[[0,1,1,1],[2,4,3,2],[1,3,3,0],[0,0,2,1]],[[0,1,1,1],[2,3,4,2],[1,3,3,0],[0,0,2,1]],[[0,1,1,1],[2,3,3,3],[1,3,3,0],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[1,3,4,0],[0,0,2,1]],[[0,1,1,1],[3,3,3,2],[1,3,3,0],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,3,0],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,3,0],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[1,4,3,0],[0,1,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,3,0],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[1,3,3,0],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[1,3,3,0],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[1,4,3,0],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[1,3,3,0],[0,3,1,0]],[[0,1,1,1],[3,3,3,2],[1,3,3,0],[1,0,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,3,0],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,3,0],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[1,4,3,0],[1,0,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,3,0],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[1,3,3,0],[1,1,1,0]],[[0,1,1,1],[2,3,4,2],[1,3,3,0],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[1,4,3,0],[1,1,1,0]],[[1,2,2,1],[2,3,0,2],[2,1,1,1],[1,3,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,3,0],[1,2,0,0]],[[0,1,1,1],[2,4,3,2],[1,3,3,0],[1,2,0,0]],[[0,1,1,1],[2,3,4,2],[1,3,3,0],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,2,1],[2,3,0,2],[2,1,1,1],[2,2,2,0]],[[1,2,2,1],[2,3,0,2],[3,1,1,1],[1,2,2,0]],[[1,2,2,1],[3,3,0,2],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[2,3,0,2],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[2,3,0,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[2,3,0,2],[2,1,1,0],[1,3,2,1]],[[1,2,2,1],[2,3,0,2],[2,1,1,0],[2,2,2,1]],[[1,2,2,1],[2,3,0,2],[3,1,1,0],[1,2,2,1]],[[1,2,2,1],[3,3,0,2],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[2,3,0,2],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[2,3,0,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[2,3,0,2],[2,1,0,2],[1,3,2,0]],[[1,2,2,1],[2,3,0,2],[2,1,0,2],[2,2,2,0]],[[1,2,2,1],[2,3,0,2],[3,1,0,2],[1,2,2,0]],[[1,2,2,1],[3,3,0,2],[2,1,0,2],[1,2,2,0]],[[1,3,2,1],[2,3,0,2],[2,1,0,2],[1,2,2,0]],[[2,2,2,1],[2,3,0,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[2,3,0,2],[2,1,0,2],[1,3,1,1]],[[1,2,2,1],[2,3,0,2],[2,1,0,2],[2,2,1,1]],[[1,2,2,1],[2,3,0,2],[3,1,0,2],[1,2,1,1]],[[0,1,1,2],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[0,1,1,1],[3,3,3,2],[1,3,3,1],[0,0,1,1]],[[0,1,1,1],[2,4,3,2],[1,3,3,1],[0,0,1,1]],[[0,1,1,1],[2,3,4,2],[1,3,3,1],[0,0,1,1]],[[0,1,1,1],[2,3,3,3],[1,3,3,1],[0,0,1,1]],[[0,1,1,1],[2,3,3,2],[1,3,4,1],[0,0,1,1]],[[0,1,1,2],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[0,1,1,1],[3,3,3,2],[1,3,3,1],[0,0,2,0]],[[0,1,1,1],[2,4,3,2],[1,3,3,1],[0,0,2,0]],[[0,1,1,1],[2,3,4,2],[1,3,3,1],[0,0,2,0]],[[0,1,1,1],[2,3,3,3],[1,3,3,1],[0,0,2,0]],[[0,1,1,1],[2,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,2,1],[3,3,0,2],[2,1,0,2],[1,2,1,1]],[[1,3,2,1],[2,3,0,2],[2,1,0,2],[1,2,1,1]],[[2,2,2,1],[2,3,0,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[2,3,0,2],[2,1,0,2],[2,1,2,1]],[[1,2,2,1],[2,3,0,2],[3,1,0,2],[1,1,2,1]],[[1,2,2,1],[3,3,0,2],[2,1,0,2],[1,1,2,1]],[[1,3,2,1],[2,3,0,2],[2,1,0,2],[1,1,2,1]],[[2,2,2,1],[2,3,0,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[2,3,0,2],[3,1,0,2],[0,2,2,1]],[[0,1,1,2],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[0,1,1,1],[3,3,3,2],[1,3,3,1],[0,2,0,0]],[[0,1,1,1],[2,4,3,2],[1,3,3,1],[0,2,0,0]],[[0,1,1,1],[2,3,4,2],[1,3,3,1],[0,2,0,0]],[[0,1,1,1],[2,3,3,3],[1,3,3,1],[0,2,0,0]],[[0,1,1,1],[2,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,2,2,1],[3,3,0,2],[2,1,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[2,1,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[2,3,0,2],[2,1,0,1],[1,3,2,1]],[[1,2,2,1],[2,3,0,2],[2,1,0,1],[2,2,2,1]],[[1,2,2,1],[2,3,0,2],[3,1,0,1],[1,2,2,1]],[[1,2,2,1],[3,3,0,2],[2,1,0,1],[1,2,2,1]],[[1,3,2,1],[2,3,0,2],[2,1,0,1],[1,2,2,1]],[[2,2,2,1],[2,3,0,2],[2,1,0,1],[1,2,2,1]],[[0,1,1,2],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[0,1,1,1],[3,3,3,2],[1,3,3,1],[1,1,0,0]],[[0,1,1,1],[2,4,3,2],[1,3,3,1],[1,1,0,0]],[[0,1,1,1],[2,3,4,2],[1,3,3,1],[1,1,0,0]],[[0,1,1,1],[2,3,3,3],[1,3,3,1],[1,1,0,0]],[[0,1,1,1],[2,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,2,1],[2,3,0,3],[2,0,3,2],[1,1,1,0]],[[1,2,2,1],[3,3,0,2],[2,0,3,2],[1,1,1,0]],[[1,2,2,2],[2,3,0,2],[2,0,3,2],[1,1,1,0]],[[1,2,3,1],[2,3,0,2],[2,0,3,2],[1,1,1,0]],[[1,3,2,1],[2,3,0,2],[2,0,3,2],[1,1,1,0]],[[2,2,2,1],[2,3,0,2],[2,0,3,2],[1,1,1,0]],[[1,2,2,1],[2,3,0,2],[2,0,3,3],[1,1,0,1]],[[1,2,2,1],[2,3,0,3],[2,0,3,2],[1,1,0,1]],[[1,2,2,1],[3,3,0,2],[2,0,3,2],[1,1,0,1]],[[1,2,2,2],[2,3,0,2],[2,0,3,2],[1,1,0,1]],[[1,2,3,1],[2,3,0,2],[2,0,3,2],[1,1,0,1]],[[1,3,2,1],[2,3,0,2],[2,0,3,2],[1,1,0,1]],[[2,2,2,1],[2,3,0,2],[2,0,3,2],[1,1,0,1]],[[1,2,2,1],[2,3,0,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[2,3,0,3],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[3,3,0,2],[2,0,3,2],[1,0,2,0]],[[1,2,2,2],[2,3,0,2],[2,0,3,2],[1,0,2,0]],[[1,2,3,1],[2,3,0,2],[2,0,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,0,2],[2,0,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,0,2],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[2,3,0,2],[2,0,3,2],[1,0,1,2]],[[1,2,2,1],[2,3,0,2],[2,0,3,3],[1,0,1,1]],[[1,2,2,1],[2,3,0,3],[2,0,3,2],[1,0,1,1]],[[1,2,2,1],[3,3,0,2],[2,0,3,2],[1,0,1,1]],[[1,2,2,2],[2,3,0,2],[2,0,3,2],[1,0,1,1]],[[1,2,3,1],[2,3,0,2],[2,0,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,0,2],[2,0,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,0,2],[2,0,3,2],[1,0,1,1]],[[0,1,1,2],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[0,1,1,1],[3,3,3,2],[1,3,3,2],[0,0,0,1]],[[0,1,1,1],[2,4,3,2],[1,3,3,2],[0,0,0,1]],[[0,1,1,1],[2,3,4,2],[1,3,3,2],[0,0,0,1]],[[0,1,1,1],[2,3,3,3],[1,3,3,2],[0,0,0,1]],[[0,1,1,1],[2,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,3,0,3],[2,0,3,2],[0,2,1,0]],[[1,2,2,1],[3,3,0,2],[2,0,3,2],[0,2,1,0]],[[1,2,2,2],[2,3,0,2],[2,0,3,2],[0,2,1,0]],[[1,2,3,1],[2,3,0,2],[2,0,3,2],[0,2,1,0]],[[1,3,2,1],[2,3,0,2],[2,0,3,2],[0,2,1,0]],[[2,2,2,1],[2,3,0,2],[2,0,3,2],[0,2,1,0]],[[1,2,2,1],[2,3,0,2],[2,0,3,3],[0,2,0,1]],[[1,2,2,1],[2,3,0,3],[2,0,3,2],[0,2,0,1]],[[1,2,2,1],[3,3,0,2],[2,0,3,2],[0,2,0,1]],[[1,2,2,2],[2,3,0,2],[2,0,3,2],[0,2,0,1]],[[1,2,3,1],[2,3,0,2],[2,0,3,2],[0,2,0,1]],[[1,3,2,1],[2,3,0,2],[2,0,3,2],[0,2,0,1]],[[2,2,2,1],[2,3,0,2],[2,0,3,2],[0,2,0,1]],[[1,2,2,1],[2,3,0,2],[2,0,3,3],[0,1,2,0]],[[1,2,2,1],[2,3,0,3],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[3,3,0,2],[2,0,3,2],[0,1,2,0]],[[1,2,2,2],[2,3,0,2],[2,0,3,2],[0,1,2,0]],[[1,2,3,1],[2,3,0,2],[2,0,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,0,2],[2,0,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,0,2],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[2,3,0,2],[2,0,3,2],[0,1,1,2]],[[1,2,2,1],[2,3,0,2],[2,0,3,3],[0,1,1,1]],[[1,2,2,1],[2,3,0,3],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[3,3,0,2],[2,0,3,2],[0,1,1,1]],[[1,2,2,2],[2,3,0,2],[2,0,3,2],[0,1,1,1]],[[1,2,3,1],[2,3,0,2],[2,0,3,2],[0,1,1,1]],[[1,3,2,1],[2,3,0,2],[2,0,3,2],[0,1,1,1]],[[2,2,2,1],[2,3,0,2],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[2,3,0,2],[2,0,3,2],[0,0,2,2]],[[1,2,2,1],[2,3,0,2],[2,0,3,3],[0,0,2,1]],[[1,2,2,1],[2,3,0,3],[2,0,3,2],[0,0,2,1]],[[1,2,2,1],[3,3,0,2],[2,0,3,2],[0,0,2,1]],[[1,2,2,2],[2,3,0,2],[2,0,3,2],[0,0,2,1]],[[1,2,3,1],[2,3,0,2],[2,0,3,2],[0,0,2,1]],[[1,3,2,1],[2,3,0,2],[2,0,3,2],[0,0,2,1]],[[2,2,2,1],[2,3,0,2],[2,0,3,2],[0,0,2,1]],[[1,2,2,1],[2,3,0,2],[2,0,2,2],[1,0,2,2]],[[1,2,2,1],[2,3,0,2],[2,0,2,3],[1,0,2,1]],[[1,2,2,1],[2,3,0,3],[2,0,2,2],[1,0,2,1]],[[1,2,2,1],[3,3,0,2],[2,0,2,2],[1,0,2,1]],[[1,2,2,2],[2,3,0,2],[2,0,2,2],[1,0,2,1]],[[1,2,3,1],[2,3,0,2],[2,0,2,2],[1,0,2,1]],[[1,3,2,1],[2,3,0,2],[2,0,2,2],[1,0,2,1]],[[2,2,2,1],[2,3,0,2],[2,0,2,2],[1,0,2,1]],[[1,2,2,1],[2,3,0,2],[2,0,2,2],[0,1,2,2]],[[1,2,2,1],[2,3,0,2],[2,0,2,3],[0,1,2,1]],[[1,2,2,1],[2,3,0,3],[2,0,2,2],[0,1,2,1]],[[1,2,2,1],[3,3,0,2],[2,0,2,2],[0,1,2,1]],[[1,2,2,2],[2,3,0,2],[2,0,2,2],[0,1,2,1]],[[1,2,3,1],[2,3,0,2],[2,0,2,2],[0,1,2,1]],[[1,3,2,1],[2,3,0,2],[2,0,2,2],[0,1,2,1]],[[2,2,2,1],[2,3,0,2],[2,0,2,2],[0,1,2,1]],[[1,2,2,1],[3,3,0,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,3,0,2],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,3,0,2],[1,3,3,1],[1,1,0,0]],[[0,1,1,2],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,0,1,1],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[2,0,1,1],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[2,0,1,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[2,0,1,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[3,0,1,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,1],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,1],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,1],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,1],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,0,1,2],[0,2,2,1]],[[0,1,1,1],[2,4,3,2],[2,0,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[2,0,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[2,0,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[3,0,1,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,3],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[0,3,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[0,2,3,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[0,2,2,2]],[[0,1,1,2],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,0,1,2],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[2,0,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[2,0,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[2,0,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[3,0,1,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,3],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[2,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[1,1,3,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[1,1,2,2]],[[0,1,1,2],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,1,1,1],[3,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[2,0,1,2],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[2,0,1,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[2,0,1,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[3,0,1,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,3],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[2,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[1,3,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[1,2,1,2]],[[0,1,1,2],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,1,1,1],[3,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,1,1,1],[2,4,3,2],[2,0,1,2],[1,2,2,0]],[[0,1,1,1],[2,3,4,2],[2,0,1,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,3],[2,0,1,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[3,0,1,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,1,3],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[2,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[1,3,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,1,2],[1,2,3,0]],[[0,1,1,2],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,0,2,0],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[2,0,2,0],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[2,0,2,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[2,0,2,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[3,0,2,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,0],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,0],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,0],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,0],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[0,1,1,1],[3,3,3,2],[2,0,2,1],[1,2,2,0]],[[0,1,1,1],[2,4,3,2],[2,0,2,1],[1,2,2,0]],[[0,1,1,1],[2,3,4,2],[2,0,2,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,3],[2,0,2,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[3,0,2,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,2,1],[2,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,2,1],[1,3,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,2,1],[1,2,3,0]],[[0,1,1,2],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[2,0,2,2],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[2,0,2,2],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[2,0,2,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[2,0,2,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[3,0,2,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,3],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,2],[0,2,1,2]],[[0,1,1,2],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[0,1,1,1],[3,3,3,2],[2,0,2,2],[0,2,2,0]],[[0,1,1,1],[2,4,3,2],[2,0,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,4,2],[2,0,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,3],[2,0,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[3,0,2,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,2,3],[0,2,2,0]],[[0,1,1,2],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,0,2,2],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[2,0,2,2],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[2,0,2,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[2,0,2,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[3,0,2,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,3],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,2],[2,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,2],[1,1,1,2]],[[0,1,1,2],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[0,1,1,1],[3,3,3,2],[2,0,2,2],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[2,0,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[2,0,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,3],[2,0,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[3,0,2,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,2,3],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,2,2],[2,1,2,0]],[[0,1,1,2],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,0,2,2],[1,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,0,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,4,2],[2,0,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,3],[2,0,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,0,2,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,3],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,2],[2,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,2],[1,3,0,1]],[[0,1,1,1],[2,3,3,2],[2,0,2,2],[1,2,0,2]],[[0,1,1,2],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[0,1,1,1],[3,3,3,2],[2,0,2,2],[1,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,0,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,4,2],[2,0,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,3],[2,0,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,0,2,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,0,2,3],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,0,2,2],[2,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,0,2,2],[1,3,1,0]],[[0,1,1,2],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,0,3,0],[0,2,2,1]],[[0,1,1,1],[2,4,3,2],[2,0,3,0],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[2,0,3,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[2,0,3,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[3,0,3,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,4,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,0],[0,3,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,0],[0,2,3,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,0],[0,2,2,2]],[[0,1,1,2],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,0,3,0],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[2,0,3,0],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[2,0,3,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[2,0,3,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[3,0,3,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,4,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,0],[2,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,0],[1,1,3,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,0],[1,1,2,2]],[[0,1,1,2],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,1,1,1],[3,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[2,0,3,0],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[2,0,3,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[2,0,3,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[3,0,3,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,4,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,0],[2,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,0],[1,3,1,1]],[[0,1,1,2],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[2,0,3,1],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[2,0,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[2,0,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[2,0,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[3,0,3,1],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,4,1],[0,2,1,1]],[[0,1,1,2],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[0,1,1,1],[3,3,3,2],[2,0,3,1],[0,2,2,0]],[[0,1,1,1],[2,4,3,2],[2,0,3,1],[0,2,2,0]],[[0,1,1,1],[2,3,4,2],[2,0,3,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,3],[2,0,3,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[3,0,3,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,4,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,3,1],[0,3,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,3,1],[0,2,3,0]],[[0,1,1,2],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,0,3,1],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[2,0,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[2,0,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[2,0,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[3,0,3,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,4,1],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,1],[2,1,1,1]],[[0,1,1,2],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[0,1,1,1],[3,3,3,2],[2,0,3,1],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[2,0,3,1],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[2,0,3,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,3],[2,0,3,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[3,0,3,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,4,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,3,1],[2,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,3,1],[1,1,3,0]],[[0,1,1,2],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,0,3,1],[1,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,0,3,1],[1,2,0,1]],[[0,1,1,1],[2,3,4,2],[2,0,3,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,3],[2,0,3,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,0,3,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,0,4,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,1],[2,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,1],[1,3,0,1]],[[0,1,1,2],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[0,1,1,1],[3,3,3,2],[2,0,3,1],[1,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,0,3,1],[1,2,1,0]],[[0,1,1,1],[2,3,4,2],[2,0,3,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,3],[2,0,3,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,0,3,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,0,4,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,0,3,1],[2,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,0,3,1],[1,3,1,0]],[[0,1,1,2],[2,3,3,2],[2,0,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,4,2],[2,0,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,3],[2,0,3,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,3],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,2],[0,0,2,2]],[[0,1,1,2],[2,3,3,2],[2,0,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[2,0,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[2,0,3,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,3],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,2],[0,1,1,2]],[[0,1,1,2],[2,3,3,2],[2,0,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[2,0,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[2,0,3,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,3,3],[0,1,2,0]],[[0,1,1,2],[2,3,3,2],[2,0,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,4,2],[2,0,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,3],[2,0,3,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,3],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[2,0,3,2],[1,0,1,2]],[[0,1,1,2],[2,3,3,2],[2,0,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[2,0,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,3],[2,0,3,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[3,3,0,2],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,3,0,2],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,3,0,2],[1,3,3,1],[0,2,0,0]],[[0,1,1,2],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,1,0,1],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[2,1,0,1],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[2,1,0,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[2,1,0,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[3,1,0,1],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,1],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,1],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,1],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,1],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,1,1,1],[2,4,3,2],[2,1,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[2,1,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[2,1,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[3,1,0,2],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,3],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[0,3,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[0,2,3,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[0,2,2,2]],[[0,1,1,2],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,1,0,2],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[2,1,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[2,1,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[2,1,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[3,1,0,2],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,3],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[2,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[1,1,3,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[1,1,2,2]],[[0,1,1,2],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[0,1,1,1],[3,3,3,2],[2,1,0,2],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[2,1,0,2],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[2,1,0,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[2,1,0,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[3,1,0,2],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,3],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[2,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[1,3,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[1,2,1,2]],[[0,1,1,2],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[0,1,1,1],[3,3,3,2],[2,1,0,2],[1,2,2,0]],[[0,1,1,1],[2,4,3,2],[2,1,0,2],[1,2,2,0]],[[0,1,1,1],[2,3,4,2],[2,1,0,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,3],[2,1,0,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[3,1,0,2],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,0,3],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[2,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[1,3,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,0,2],[1,2,3,0]],[[0,1,1,2],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,1,1,0],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[2,1,1,0],[1,2,2,1]],[[0,1,1,1],[2,3,4,2],[2,1,1,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,3],[2,1,1,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[3,1,1,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,0],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,0],[1,3,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,0],[1,2,3,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,0],[1,2,2,2]],[[0,1,1,2],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[0,1,1,1],[3,3,3,2],[2,1,1,1],[1,2,2,0]],[[0,1,1,1],[2,4,3,2],[2,1,1,1],[1,2,2,0]],[[0,1,1,1],[2,3,4,2],[2,1,1,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,3],[2,1,1,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[3,1,1,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,1,1],[2,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,1,1],[1,3,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,1,1],[1,2,3,0]],[[0,1,1,2],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,1,1,2],[0,1,2,1]],[[0,1,1,1],[2,4,3,2],[2,1,1,2],[0,1,2,1]],[[0,1,1,1],[2,3,4,2],[2,1,1,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,3],[2,1,1,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[3,1,1,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,3],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,2],[0,1,3,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,2],[0,1,2,2]],[[0,1,1,2],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[0,1,1,1],[3,3,3,2],[2,1,1,2],[1,0,2,1]],[[0,1,1,1],[2,4,3,2],[2,1,1,2],[1,0,2,1]],[[0,1,1,1],[2,3,4,2],[2,1,1,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,3],[2,1,1,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[3,1,1,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,3],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,2],[2,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,2],[1,0,3,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,2],[1,0,2,2]],[[0,1,1,2],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,1,1,2],[1,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,1,1,2],[1,2,0,1]],[[0,1,1,1],[2,3,4,2],[2,1,1,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,3],[2,1,1,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,1,1,2],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,3],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,2],[2,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,2],[1,3,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,1,2],[1,2,0,2]],[[0,1,1,2],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[0,1,1,1],[3,3,3,2],[2,1,1,2],[1,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,1,1,2],[1,2,1,0]],[[0,1,1,1],[2,3,4,2],[2,1,1,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,3],[2,1,1,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,1,1,2],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,1,3],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,1,2],[2,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,1,2],[1,3,1,0]],[[0,1,1,2],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[0,1,1,1],[3,3,3,2],[2,1,2,0],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[2,1,2,0],[1,2,1,1]],[[0,1,1,1],[2,3,4,2],[2,1,2,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,3],[2,1,2,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[3,1,2,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,0],[2,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,0],[1,3,1,1]],[[0,1,1,2],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,1,2,1],[1,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,1,2,1],[1,2,0,1]],[[0,1,1,1],[2,3,4,2],[2,1,2,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,3],[2,1,2,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,1,2,1],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,1],[2,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,1],[1,3,0,1]],[[0,1,1,2],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[0,1,1,1],[3,3,3,2],[2,1,2,1],[1,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,1,2,1],[1,2,1,0]],[[0,1,1,1],[2,3,4,2],[2,1,2,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,3],[2,1,2,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,1,2,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,2,1],[2,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,2,1],[1,3,1,0]],[[0,1,1,2],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[0,1,1,1],[3,3,3,2],[2,1,2,2],[0,0,2,1]],[[0,1,1,1],[2,4,3,2],[2,1,2,2],[0,0,2,1]],[[0,1,1,1],[2,3,4,2],[2,1,2,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,3],[2,1,2,2],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,3],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,2],[0,0,2,2]],[[0,1,1,2],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,1,2,2],[0,1,1,1]],[[0,1,1,1],[2,4,3,2],[2,1,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[2,1,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[2,1,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[3,1,2,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,3],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,2],[0,1,1,2]],[[0,1,1,2],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[0,1,1,1],[3,3,3,2],[2,1,2,2],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[2,1,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[2,1,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[2,1,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[3,1,2,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,2,3],[0,1,2,0]],[[0,1,1,2],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,1,2,2],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,1,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,4,2],[2,1,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,3],[2,1,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,1,2,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,3],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,2],[0,2,0,2]],[[0,1,1,2],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[0,1,1,1],[3,3,3,2],[2,1,2,2],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,1,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[2,1,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,3],[2,1,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,1,2,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,2,3],[0,2,1,0]],[[0,1,1,2],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[0,1,1,1],[3,3,3,2],[2,1,2,2],[1,0,1,1]],[[0,1,1,1],[2,4,3,2],[2,1,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,4,2],[2,1,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,3],[2,1,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[3,1,2,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,3],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,2],[2,0,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,2],[1,0,1,2]],[[0,1,1,2],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[0,1,1,1],[3,3,3,2],[2,1,2,2],[1,0,2,0]],[[0,1,1,1],[2,4,3,2],[2,1,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[2,1,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,3],[2,1,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[3,1,2,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,2,3],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,2,2],[2,0,2,0]],[[0,1,1,2],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[0,1,1,1],[3,3,3,2],[2,1,2,2],[1,1,0,1]],[[0,1,1,1],[2,4,3,2],[2,1,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,4,2],[2,1,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,3],[2,1,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[3,1,2,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,3],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,2],[2,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,2,2],[1,1,0,2]],[[0,1,1,2],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[0,1,1,1],[3,3,3,2],[2,1,2,2],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[2,1,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,4,2],[2,1,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,3],[2,1,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[3,1,2,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,2,3],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,2,2],[2,1,1,0]],[[0,1,1,2],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,0],[0,1,2,1]],[[0,1,1,1],[2,4,3,2],[2,1,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,4,2],[2,1,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,3],[2,1,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[3,1,3,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,4,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,3,0],[0,1,3,1]],[[0,1,1,1],[2,3,3,2],[2,1,3,0],[0,1,2,2]],[[0,1,1,2],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[2,1,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[2,1,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[2,1,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[3,1,3,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,4,0],[0,2,1,1]],[[0,1,1,2],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,0],[1,0,2,1]],[[0,1,1,1],[2,4,3,2],[2,1,3,0],[1,0,2,1]],[[0,1,1,1],[2,3,4,2],[2,1,3,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,3],[2,1,3,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[3,1,3,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,4,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,3,0],[2,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,3,0],[1,0,3,1]],[[0,1,1,1],[2,3,3,2],[2,1,3,0],[1,0,2,2]],[[0,1,1,2],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,0],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[2,1,3,0],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[2,1,3,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[2,1,3,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[3,1,3,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,4,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,3,0],[2,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,0],[1,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,1,3,0],[1,2,1,0]],[[0,1,1,1],[2,3,4,2],[2,1,3,0],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,1,3,0],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,3,0],[2,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,3,0],[1,3,1,0]],[[0,1,1,2],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,1],[0,0,2,1]],[[0,1,1,1],[2,4,3,2],[2,1,3,1],[0,0,2,1]],[[0,1,1,1],[2,3,4,2],[2,1,3,1],[0,0,2,1]],[[0,1,1,1],[2,3,3,3],[2,1,3,1],[0,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,1,4,1],[0,0,2,1]],[[0,1,1,2],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,1],[0,1,1,1]],[[0,1,1,1],[2,4,3,2],[2,1,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[2,1,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[2,1,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[3,1,3,1],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,4,1],[0,1,1,1]],[[0,1,1,2],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[0,1,1,1],[3,3,3,2],[2,1,3,1],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[2,1,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[2,1,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[2,1,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[3,1,3,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,4,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,3,1],[0,1,3,0]],[[0,1,1,2],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,1],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,1,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,4,2],[2,1,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,3],[2,1,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,1,3,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,4,1],[0,2,0,1]],[[0,1,1,2],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[0,1,1,1],[3,3,3,2],[2,1,3,1],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,1,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[2,1,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,3],[2,1,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,1,3,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,4,1],[0,2,1,0]],[[0,1,1,2],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,1],[1,0,1,1]],[[0,1,1,1],[2,4,3,2],[2,1,3,1],[1,0,1,1]],[[0,1,1,1],[2,3,4,2],[2,1,3,1],[1,0,1,1]],[[0,1,1,1],[2,3,3,3],[2,1,3,1],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[3,1,3,1],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,4,1],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[2,1,3,1],[2,0,1,1]],[[0,1,1,2],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[0,1,1,1],[3,3,3,2],[2,1,3,1],[1,0,2,0]],[[0,1,1,1],[2,4,3,2],[2,1,3,1],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[2,1,3,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,3],[2,1,3,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[3,1,3,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,4,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,3,1],[2,0,2,0]],[[0,1,1,1],[2,3,3,2],[2,1,3,1],[1,0,3,0]],[[0,1,1,2],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,1],[1,1,0,1]],[[0,1,1,1],[2,4,3,2],[2,1,3,1],[1,1,0,1]],[[0,1,1,1],[2,3,4,2],[2,1,3,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,3],[2,1,3,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[3,1,3,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,4,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,3,1],[2,1,0,1]],[[0,1,1,2],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[0,1,1,1],[3,3,3,2],[2,1,3,1],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[2,1,3,1],[1,1,1,0]],[[0,1,1,1],[2,3,4,2],[2,1,3,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,3],[2,1,3,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[3,1,3,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,4,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[2,1,3,1],[2,1,1,0]],[[1,2,2,1],[3,3,0,2],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,0,2],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,0,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,3,0,2],[1,3,2,1],[1,1,1,0]],[[0,1,1,2],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,2],[0,1,0,1]],[[0,1,1,1],[2,4,3,2],[2,1,3,2],[0,1,0,1]],[[0,1,1,1],[2,3,4,2],[2,1,3,2],[0,1,0,1]],[[0,1,1,1],[2,3,3,3],[2,1,3,2],[0,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,3,2,1],[2,3,0,2],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,0,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,0,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,0,2],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,0,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,3,0,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,3,0,2],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,3,0,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,3,0,2],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,3,0,2],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,3,0,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[3,3,0,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,0,2],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,0,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,0,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,0,2],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,0,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,3,0,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,3,0,2],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,3,0,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,3,0,2],[1,3,2,1],[0,1,1,1]],[[0,1,1,2],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[0,1,1,1],[3,3,3,2],[2,1,3,2],[1,0,0,1]],[[0,1,1,1],[2,4,3,2],[2,1,3,2],[1,0,0,1]],[[0,1,1,1],[2,3,4,2],[2,1,3,2],[1,0,0,1]],[[0,1,1,1],[2,3,3,3],[2,1,3,2],[1,0,0,1]],[[0,1,1,1],[2,3,3,2],[3,1,3,2],[1,0,0,1]],[[0,1,1,1],[2,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,3,2,1],[2,3,0,2],[1,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,3,0,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[3,3,0,2],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,0,2],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,3,0,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,1],[3,3,0,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,0,2],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,0,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,3,0,2],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,3,0,2],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,3,0,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,3,0,2],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,0,2],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,0,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,0,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,3,0,2],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,3,0,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[3,3,0,2],[1,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,3,0,2],[1,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,3,0,2],[1,3,1,2],[1,2,0,0]],[[1,2,2,1],[3,3,0,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,3,0,2],[1,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,3,0,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[3,3,0,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,3,0,2],[1,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,3,0,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,3,0,2],[1,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,3,0,2],[1,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,3,0,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[3,3,0,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,3,0,2],[1,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,3,0,2],[1,3,1,2],[1,0,1,1]],[[0,1,1,1],[3,3,3,2],[2,2,0,0],[1,2,2,1]],[[0,1,1,1],[2,4,3,2],[2,2,0,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[3,2,0,0],[1,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,0],[2,2,2,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,0],[1,3,2,1]],[[0,1,1,2],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,2,0,1],[0,2,2,1]],[[0,1,1,1],[2,4,3,2],[2,2,0,1],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[2,2,0,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[2,2,0,1],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[3,2,0,1],[0,2,2,1]],[[0,1,1,2],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,2,0,1],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[2,2,0,1],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[2,2,0,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[2,2,0,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[3,2,0,1],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,1],[2,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,2,0,1],[1,2,2,0]],[[0,1,1,1],[2,4,3,2],[2,2,0,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[3,2,0,1],[1,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,2,0,1],[2,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,2,0,1],[1,3,2,0]],[[0,1,1,2],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,1,1,1],[2,4,3,2],[2,2,0,2],[0,1,2,1]],[[0,1,1,1],[2,3,4,2],[2,2,0,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,3],[2,2,0,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[3,2,0,2],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,3],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,2],[0,1,3,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,2],[0,1,2,2]],[[0,1,1,2],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[2,2,0,2],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[2,2,0,2],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[2,2,0,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[2,2,0,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[3,2,0,2],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,3],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,2],[0,2,1,2]],[[0,1,1,2],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[0,1,1,1],[3,3,3,2],[2,2,0,2],[0,2,2,0]],[[0,1,1,1],[2,4,3,2],[2,2,0,2],[0,2,2,0]],[[0,1,1,1],[2,3,4,2],[2,2,0,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,3],[2,2,0,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[3,2,0,2],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[2,2,0,3],[0,2,2,0]],[[0,1,1,2],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,1,1,1],[3,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,1,1,1],[2,4,3,2],[2,2,0,2],[1,0,2,1]],[[0,1,1,1],[2,3,4,2],[2,2,0,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,3],[2,2,0,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[3,2,0,2],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,3],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,2],[2,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,2],[1,0,3,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,2],[1,0,2,2]],[[0,1,1,2],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,2,0,2],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[2,2,0,2],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[2,2,0,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[2,2,0,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[3,2,0,2],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,3],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,2],[2,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,0,2],[1,1,1,2]],[[0,1,1,2],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[0,1,1,1],[3,3,3,2],[2,2,0,2],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[2,2,0,2],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[2,2,0,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,3],[2,2,0,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[3,2,0,2],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,2,0,3],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,2,0,2],[2,1,2,0]],[[0,1,1,2],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,2,1,0],[0,2,2,1]],[[0,1,1,1],[2,4,3,2],[2,2,1,0],[0,2,2,1]],[[0,1,1,1],[2,3,4,2],[2,2,1,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,3],[2,2,1,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[3,2,1,0],[0,2,2,1]],[[0,1,1,2],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,2,1,0],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[2,2,1,0],[1,1,2,1]],[[0,1,1,1],[2,3,4,2],[2,2,1,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,3],[2,2,1,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[3,2,1,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,2,1,0],[2,1,2,1]],[[0,1,1,2],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[0,1,1,1],[3,3,3,2],[2,2,1,1],[0,2,2,0]],[[0,1,1,1],[2,4,3,2],[2,2,1,1],[0,2,2,0]],[[0,1,1,1],[2,3,4,2],[2,2,1,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,3],[2,2,1,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[3,2,1,1],[0,2,2,0]],[[0,1,1,2],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[0,1,1,1],[3,3,3,2],[2,2,1,1],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[2,2,1,1],[1,1,2,0]],[[0,1,1,1],[2,3,4,2],[2,2,1,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,3],[2,2,1,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[3,2,1,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,2,1,1],[2,1,2,0]],[[1,2,2,1],[3,3,0,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,3,0,2],[1,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,3,0,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,3,0,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,3,0,2],[1,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,3,0,2],[1,3,1,2],[0,2,0,1]],[[0,1,1,2],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,1,1,1],[2,4,3,2],[2,2,1,2],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[2,2,1,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[2,2,1,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[3,2,1,2],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,1,3],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,1,2],[0,1,1,2]],[[0,1,1,2],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,1,1,1],[3,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[2,2,1,2],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[2,2,1,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[2,2,1,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[3,2,1,2],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,2,1,3],[0,1,2,0]],[[0,1,1,2],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,2,1,2],[0,2,0,1]],[[0,1,1,1],[2,3,4,2],[2,2,1,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,3],[2,2,1,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,2,1,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,2,1,3],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,2,1,2],[0,2,0,2]],[[0,1,1,2],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,1,1,1],[3,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,2,1,2],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[2,2,1,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,3],[2,2,1,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,2,1,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,2,1,3],[0,2,1,0]],[[0,1,1,2],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,1,1,1],[3,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,1,1,1],[2,4,3,2],[2,2,1,2],[1,0,1,1]],[[0,1,1,1],[2,3,4,2],[2,2,1,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,3],[2,2,1,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[3,2,1,2],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,1,3],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,1,2],[2,0,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,1,2],[1,0,1,2]],[[0,1,1,2],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,1,1,1],[3,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,1,1,1],[2,4,3,2],[2,2,1,2],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[2,2,1,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,3],[2,2,1,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[3,2,1,2],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[2,2,1,3],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[2,2,1,2],[2,0,2,0]],[[0,1,1,2],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,1,1,1],[3,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,1,1,1],[2,4,3,2],[2,2,1,2],[1,1,0,1]],[[0,1,1,1],[2,3,4,2],[2,2,1,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,3],[2,2,1,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[3,2,1,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,2,1,3],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,2,1,2],[2,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,2,1,2],[1,1,0,2]],[[0,1,1,2],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,1,1,1],[3,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[2,2,1,2],[1,1,1,0]],[[0,1,1,1],[2,3,4,2],[2,2,1,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,3],[2,2,1,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[3,2,1,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[2,2,1,3],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[2,2,1,2],[2,1,1,0]],[[1,2,2,1],[3,3,0,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,3,0,2],[1,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,3,0,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[3,3,0,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,3,0,2],[1,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,3,0,2],[1,3,1,2],[0,1,1,1]],[[0,1,1,2],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[0,1,1,1],[3,3,3,2],[2,2,1,2],[1,2,0,0]],[[0,1,1,1],[2,4,3,2],[2,2,1,2],[1,2,0,0]],[[0,1,1,1],[2,3,4,2],[2,2,1,2],[1,2,0,0]],[[0,1,1,1],[2,3,3,3],[2,2,1,2],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[3,2,1,2],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,1],[3,3,0,2],[1,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,0,2],[1,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,0,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,3,0,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,0,2],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,0,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,3,0,2],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,0,2],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,0,2],[1,3,1,0],[1,1,2,1]],[[0,1,1,2],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,2,2,0],[0,1,2,1]],[[0,1,1,1],[2,4,3,2],[2,2,2,0],[0,1,2,1]],[[0,1,1,1],[2,3,4,2],[2,2,2,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,3],[2,2,2,0],[0,1,2,1]],[[0,1,1,1],[2,3,3,2],[3,2,2,0],[0,1,2,1]],[[0,1,1,2],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[2,2,2,0],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[2,2,2,0],[0,2,1,1]],[[0,1,1,1],[2,3,4,2],[2,2,2,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,3],[2,2,2,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[3,2,2,0],[0,2,1,1]],[[0,1,1,2],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[0,1,1,1],[3,3,3,2],[2,2,2,0],[1,0,2,1]],[[0,1,1,1],[2,4,3,2],[2,2,2,0],[1,0,2,1]],[[0,1,1,1],[2,3,4,2],[2,2,2,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,3],[2,2,2,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[3,2,2,0],[1,0,2,1]],[[0,1,1,1],[2,3,3,2],[2,2,2,0],[2,0,2,1]],[[0,1,1,2],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,2,2,0],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[2,2,2,0],[1,1,1,1]],[[0,1,1,1],[2,3,4,2],[2,2,2,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,3],[2,2,2,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[3,2,2,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,2,0],[2,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,2,2,0],[1,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,2,2,0],[1,2,0,1]],[[0,1,1,1],[2,3,4,2],[2,2,2,0],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,2,2,0],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,2,2,0],[2,2,0,1]],[[1,2,2,1],[3,3,0,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[1,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[1,3,1,0],[0,2,2,1]],[[0,1,1,2],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,2,2,1],[0,1,1,1]],[[0,1,1,1],[2,4,3,2],[2,2,2,1],[0,1,1,1]],[[0,1,1,1],[2,3,4,2],[2,2,2,1],[0,1,1,1]],[[0,1,1,1],[2,3,3,3],[2,2,2,1],[0,1,1,1]],[[0,1,1,1],[2,3,3,2],[3,2,2,1],[0,1,1,1]],[[0,1,1,2],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[0,1,1,1],[3,3,3,2],[2,2,2,1],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[2,2,2,1],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[2,2,2,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,3],[2,2,2,1],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[3,2,2,1],[0,1,2,0]],[[0,1,1,2],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,2,2,1],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,2,2,1],[0,2,0,1]],[[0,1,1,1],[2,3,4,2],[2,2,2,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,3],[2,2,2,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,2,2,1],[0,2,0,1]],[[0,1,1,2],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[0,1,1,1],[3,3,3,2],[2,2,2,1],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,2,2,1],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[2,2,2,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,3],[2,2,2,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,2,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,0,2],[1,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,3,0,2],[1,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,3,0,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,3,0,2],[1,3,0,2],[1,1,1,1]],[[0,1,1,2],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[0,1,1,1],[3,3,3,2],[2,2,2,1],[1,0,1,1]],[[0,1,1,1],[2,4,3,2],[2,2,2,1],[1,0,1,1]],[[0,1,1,1],[2,3,4,2],[2,2,2,1],[1,0,1,1]],[[0,1,1,1],[2,3,3,3],[2,2,2,1],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[3,2,2,1],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[2,2,2,1],[2,0,1,1]],[[0,1,1,2],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[0,1,1,1],[3,3,3,2],[2,2,2,1],[1,0,2,0]],[[0,1,1,1],[2,4,3,2],[2,2,2,1],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[2,2,2,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,3],[2,2,2,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[3,2,2,1],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[2,2,2,1],[2,0,2,0]],[[0,1,1,2],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[0,1,1,1],[3,3,3,2],[2,2,2,1],[1,1,0,1]],[[0,1,1,1],[2,4,3,2],[2,2,2,1],[1,1,0,1]],[[0,1,1,1],[2,3,4,2],[2,2,2,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,3],[2,2,2,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[3,2,2,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,2,2,1],[2,1,0,1]],[[0,1,1,2],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[0,1,1,1],[3,3,3,2],[2,2,2,1],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[2,2,2,1],[1,1,1,0]],[[0,1,1,1],[2,3,4,2],[2,2,2,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,3],[2,2,2,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[3,2,2,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[2,2,2,1],[2,1,1,0]],[[1,3,2,1],[2,3,0,2],[1,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,3,0,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[3,3,0,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,3,0,2],[1,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,3,0,2],[1,3,0,2],[1,0,2,1]],[[0,1,1,2],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[0,1,1,1],[3,3,3,2],[2,2,2,1],[1,2,0,0]],[[0,1,1,1],[2,4,3,2],[2,2,2,1],[1,2,0,0]],[[0,1,1,1],[2,3,4,2],[2,2,2,1],[1,2,0,0]],[[0,1,1,1],[2,3,3,3],[2,2,2,1],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[3,2,2,1],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[3,3,0,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,3,0,2],[1,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,3,0,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,3,0,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,3,0,2],[1,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,3,0,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[3,3,0,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,3,0,2],[1,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,3,0,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[3,3,0,2],[1,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,3,0,2],[1,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,3,0,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[3,3,0,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[1,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[1,3,0,1],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,2,3,0],[0,1,2,0]],[[0,1,1,1],[2,4,3,2],[2,2,3,0],[0,1,2,0]],[[0,1,1,1],[2,3,4,2],[2,2,3,0],[0,1,2,0]],[[0,1,1,1],[2,3,3,2],[3,2,3,0],[0,1,2,0]],[[0,1,1,1],[3,3,3,2],[2,2,3,0],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,2,3,0],[0,2,1,0]],[[0,1,1,1],[2,3,4,2],[2,2,3,0],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,2,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,0,2],[1,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[1,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[1,2,0,2],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,2,3,0],[1,0,2,0]],[[0,1,1,1],[2,4,3,2],[2,2,3,0],[1,0,2,0]],[[0,1,1,1],[2,3,4,2],[2,2,3,0],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[3,2,3,0],[1,0,2,0]],[[0,1,1,1],[2,3,3,2],[2,2,3,0],[2,0,2,0]],[[0,1,1,1],[3,3,3,2],[2,2,3,0],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[2,2,3,0],[1,1,1,0]],[[0,1,1,1],[2,3,4,2],[2,2,3,0],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[3,2,3,0],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[2,2,3,0],[2,1,1,0]],[[0,1,1,1],[3,3,3,2],[2,2,3,0],[1,2,0,0]],[[0,1,1,1],[2,4,3,2],[2,2,3,0],[1,2,0,0]],[[0,1,1,1],[2,3,4,2],[2,2,3,0],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[3,2,3,0],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[2,2,3,0],[2,2,0,0]],[[0,1,1,2],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[0,1,1,1],[3,3,3,2],[2,2,3,1],[0,2,0,0]],[[0,1,1,1],[2,4,3,2],[2,2,3,1],[0,2,0,0]],[[0,1,1,1],[2,3,4,2],[2,2,3,1],[0,2,0,0]],[[0,1,1,1],[2,3,3,3],[2,2,3,1],[0,2,0,0]],[[0,1,1,1],[2,3,3,2],[3,2,3,1],[0,2,0,0]],[[1,2,2,1],[3,3,0,2],[1,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,3,0,2],[1,1,0,2],[1,2,2,1]],[[2,2,2,1],[2,3,0,2],[1,1,0,2],[1,2,2,1]],[[0,1,1,2],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[0,1,1,1],[3,3,3,2],[2,2,3,1],[1,1,0,0]],[[0,1,1,1],[2,4,3,2],[2,2,3,1],[1,1,0,0]],[[0,1,1,1],[2,3,4,2],[2,2,3,1],[1,1,0,0]],[[0,1,1,1],[2,3,3,3],[2,2,3,1],[1,1,0,0]],[[0,1,1,1],[2,3,3,2],[3,2,3,1],[1,1,0,0]],[[0,1,1,1],[2,3,3,2],[2,2,3,1],[2,1,0,0]],[[1,2,2,1],[2,3,0,2],[0,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,3,0,2],[0,3,4,2],[0,0,2,0]],[[1,2,2,1],[2,3,0,3],[0,3,3,2],[0,0,2,0]],[[1,2,2,1],[2,4,0,2],[0,3,3,2],[0,0,2,0]],[[1,2,2,2],[2,3,0,2],[0,3,3,2],[0,0,2,0]],[[1,2,3,1],[2,3,0,2],[0,3,3,2],[0,0,2,0]],[[1,3,2,1],[2,3,0,2],[0,3,3,2],[0,0,2,0]],[[2,2,2,1],[2,3,0,2],[0,3,3,2],[0,0,2,0]],[[1,2,2,1],[2,3,0,2],[0,3,3,2],[0,0,1,2]],[[1,2,2,1],[2,3,0,2],[0,3,3,3],[0,0,1,1]],[[1,2,2,1],[2,3,0,2],[0,3,4,2],[0,0,1,1]],[[1,2,2,1],[2,3,0,3],[0,3,3,2],[0,0,1,1]],[[1,2,2,1],[2,4,0,2],[0,3,3,2],[0,0,1,1]],[[1,2,2,2],[2,3,0,2],[0,3,3,2],[0,0,1,1]],[[1,2,3,1],[2,3,0,2],[0,3,3,2],[0,0,1,1]],[[1,3,2,1],[2,3,0,2],[0,3,3,2],[0,0,1,1]],[[2,2,2,1],[2,3,0,2],[0,3,3,2],[0,0,1,1]],[[1,2,2,1],[2,3,0,3],[0,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,4,0,2],[0,3,3,1],[1,1,1,0]],[[1,2,2,2],[2,3,0,2],[0,3,3,1],[1,1,1,0]],[[1,2,3,1],[2,3,0,2],[0,3,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,0,2],[0,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,0,2],[0,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,3,0,3],[0,3,3,1],[1,1,0,1]],[[1,2,2,1],[2,4,0,2],[0,3,3,1],[1,1,0,1]],[[1,2,2,2],[2,3,0,2],[0,3,3,1],[1,1,0,1]],[[1,2,3,1],[2,3,0,2],[0,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,0,2],[0,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,0,2],[0,3,3,1],[1,1,0,1]],[[1,2,2,1],[2,3,0,3],[0,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,4,0,2],[0,3,3,1],[1,0,2,0]],[[1,2,2,2],[2,3,0,2],[0,3,3,1],[1,0,2,0]],[[1,2,3,1],[2,3,0,2],[0,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,0,2],[0,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,0,2],[0,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,3,0,3],[0,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,4,0,2],[0,3,3,1],[1,0,1,1]],[[1,2,2,2],[2,3,0,2],[0,3,3,1],[1,0,1,1]],[[1,2,3,1],[2,3,0,2],[0,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,0,2],[0,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,0,2],[0,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,3,0,3],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,4,0,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,2],[2,3,0,2],[0,3,3,1],[0,2,1,0]],[[1,2,3,1],[2,3,0,2],[0,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,0,2],[0,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,0,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,3,0,3],[0,3,3,1],[0,2,0,1]],[[1,2,2,1],[2,4,0,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,2],[2,3,0,2],[0,3,3,1],[0,2,0,1]],[[1,2,3,1],[2,3,0,2],[0,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,0,2],[0,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,0,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,1],[2,3,0,3],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,4,0,2],[0,3,3,1],[0,1,2,0]],[[1,2,2,2],[2,3,0,2],[0,3,3,1],[0,1,2,0]],[[1,2,3,1],[2,3,0,2],[0,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,0,2],[0,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,0,2],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,3,0,3],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[2,4,0,2],[0,3,3,1],[0,1,1,1]],[[1,2,2,2],[2,3,0,2],[0,3,3,1],[0,1,1,1]],[[1,2,3,1],[2,3,0,2],[0,3,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,0,2],[0,3,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,0,2],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[2,4,0,2],[0,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,3,0,2],[0,3,3,0],[1,1,1,1]],[[1,2,3,1],[2,3,0,2],[0,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,0,2],[0,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,0,2],[0,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,3,0,3],[0,3,3,0],[1,0,2,1]],[[1,2,2,1],[2,4,0,2],[0,3,3,0],[1,0,2,1]],[[1,2,2,2],[2,3,0,2],[0,3,3,0],[1,0,2,1]],[[1,2,3,1],[2,3,0,2],[0,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,0,2],[0,3,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,0,2],[0,3,3,0],[1,0,2,1]],[[1,2,2,1],[2,3,0,3],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,4,0,2],[0,3,3,0],[0,2,1,1]],[[1,2,2,2],[2,3,0,2],[0,3,3,0],[0,2,1,1]],[[1,2,3,1],[2,3,0,2],[0,3,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,0,2],[0,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,0,2],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,3,0,3],[0,3,3,0],[0,1,2,1]],[[1,2,2,1],[2,4,0,2],[0,3,3,0],[0,1,2,1]],[[1,2,2,2],[2,3,0,2],[0,3,3,0],[0,1,2,1]],[[1,2,3,1],[2,3,0,2],[0,3,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,0,2],[0,3,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,0,2],[0,3,3,0],[0,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,3,0,0],[0,2,2,1]],[[0,1,1,1],[2,4,3,2],[2,3,0,0],[0,2,2,1]],[[0,1,1,1],[2,3,3,2],[3,3,0,0],[0,2,2,1]],[[0,1,1,1],[3,3,3,2],[2,3,0,0],[1,1,2,1]],[[0,1,1,1],[2,4,3,2],[2,3,0,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[3,3,0,0],[1,1,2,1]],[[0,1,1,1],[2,3,3,2],[2,3,0,0],[2,1,2,1]],[[0,1,1,1],[3,3,3,2],[2,3,0,0],[1,2,1,1]],[[0,1,1,1],[2,4,3,2],[2,3,0,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[3,3,0,0],[1,2,1,1]],[[0,1,1,1],[2,3,3,2],[2,3,0,0],[2,2,1,1]],[[0,1,1,1],[3,3,3,2],[2,3,0,1],[0,2,2,0]],[[0,1,1,1],[2,4,3,2],[2,3,0,1],[0,2,2,0]],[[0,1,1,1],[2,3,3,2],[3,3,0,1],[0,2,2,0]],[[0,1,1,1],[3,3,3,2],[2,3,0,1],[1,1,2,0]],[[0,1,1,1],[2,4,3,2],[2,3,0,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[3,3,0,1],[1,1,2,0]],[[0,1,1,1],[2,3,3,2],[2,3,0,1],[2,1,2,0]],[[0,1,1,1],[3,3,3,2],[2,3,0,1],[1,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,3,0,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,3,0,1],[1,2,1,0]],[[0,1,1,1],[2,3,3,2],[2,3,0,1],[2,2,1,0]],[[0,1,1,1],[3,3,3,2],[2,3,0,2],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,3,0,2],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,3,0,2],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,3,0,2],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,3,0,2],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,3,0,3],[0,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,4,0,2],[0,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,3,0,2],[0,3,2,2],[1,1,1,0]],[[1,2,3,1],[2,3,0,2],[0,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,0,2],[0,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,0,2],[0,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,3,0,2],[0,3,2,3],[1,1,0,1]],[[0,1,1,1],[3,3,3,2],[2,3,0,2],[1,1,0,1]],[[0,1,1,1],[2,4,3,2],[2,3,0,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[3,3,0,2],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,3,0,2],[2,1,0,1]],[[0,1,1,1],[3,3,3,2],[2,3,0,2],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[2,3,0,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[3,3,0,2],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[2,3,0,2],[2,1,1,0]],[[1,2,2,1],[2,3,0,3],[0,3,2,2],[1,1,0,1]],[[1,2,2,1],[2,4,0,2],[0,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,3,0,2],[0,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,3,0,2],[0,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,0,2],[0,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,3,0,2],[0,3,2,2],[1,1,0,1]],[[0,1,1,1],[3,3,3,2],[2,3,0,2],[1,2,0,0]],[[0,1,1,1],[2,4,3,2],[2,3,0,2],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[3,3,0,2],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[2,3,0,2],[2,2,0,0]],[[1,2,2,1],[2,3,0,2],[0,3,2,3],[1,0,2,0]],[[1,2,2,1],[2,3,0,3],[0,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,4,0,2],[0,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,3,0,2],[0,3,2,2],[1,0,2,0]],[[1,2,3,1],[2,3,0,2],[0,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,3,0,2],[0,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,3,0,2],[0,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,3,0,2],[0,3,2,2],[1,0,1,2]],[[1,2,2,1],[2,3,0,2],[0,3,2,3],[1,0,1,1]],[[1,2,2,1],[2,3,0,3],[0,3,2,2],[1,0,1,1]],[[1,2,2,1],[2,4,0,2],[0,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,3,0,2],[0,3,2,2],[1,0,1,1]],[[1,2,3,1],[2,3,0,2],[0,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,3,0,2],[0,3,2,2],[1,0,1,1]],[[2,2,2,1],[2,3,0,2],[0,3,2,2],[1,0,1,1]],[[1,2,2,1],[2,3,0,2],[0,3,2,3],[0,2,1,0]],[[0,1,1,1],[3,3,3,2],[2,3,1,0],[0,2,1,1]],[[0,1,1,1],[2,4,3,2],[2,3,1,0],[0,2,1,1]],[[0,1,1,1],[2,3,3,2],[3,3,1,0],[0,2,1,1]],[[0,1,1,1],[3,3,3,2],[2,3,1,0],[1,1,1,1]],[[0,1,1,1],[2,4,3,2],[2,3,1,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[3,3,1,0],[1,1,1,1]],[[0,1,1,1],[2,3,3,2],[2,3,1,0],[2,1,1,1]],[[0,1,1,1],[3,3,3,2],[2,3,1,0],[1,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,3,1,0],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,3,1,0],[1,2,0,1]],[[0,1,1,1],[2,3,3,2],[2,3,1,0],[2,2,0,1]],[[1,2,2,1],[2,3,0,3],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,4,0,2],[0,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,3,0,2],[0,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,3,0,2],[0,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,0,2],[0,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,0,2],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,3,0,2],[0,3,2,2],[0,2,0,2]],[[1,2,2,1],[2,3,0,2],[0,3,2,3],[0,2,0,1]],[[1,2,2,1],[2,3,0,3],[0,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,4,0,2],[0,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,3,0,2],[0,3,2,2],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,3,1,1],[0,2,0,1]],[[0,1,1,1],[2,4,3,2],[2,3,1,1],[0,2,0,1]],[[0,1,1,1],[2,3,3,2],[3,3,1,1],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,3,1,1],[0,2,1,0]],[[0,1,1,1],[2,4,3,2],[2,3,1,1],[0,2,1,0]],[[0,1,1,1],[2,3,3,2],[3,3,1,1],[0,2,1,0]],[[1,2,3,1],[2,3,0,2],[0,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,0,2],[0,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,3,0,2],[0,3,2,2],[0,2,0,1]],[[0,1,1,1],[3,3,3,2],[2,3,1,1],[1,1,0,1]],[[0,1,1,1],[2,4,3,2],[2,3,1,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[3,3,1,1],[1,1,0,1]],[[0,1,1,1],[2,3,3,2],[2,3,1,1],[2,1,0,1]],[[0,1,1,1],[3,3,3,2],[2,3,1,1],[1,1,1,0]],[[0,1,1,1],[2,4,3,2],[2,3,1,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[3,3,1,1],[1,1,1,0]],[[0,1,1,1],[2,3,3,2],[2,3,1,1],[2,1,1,0]],[[1,2,2,1],[2,3,0,2],[0,3,2,3],[0,1,2,0]],[[1,2,2,1],[2,3,0,3],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,4,0,2],[0,3,2,2],[0,1,2,0]],[[1,2,2,2],[2,3,0,2],[0,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,3,0,2],[0,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,3,0,2],[0,3,2,2],[0,1,2,0]],[[0,1,1,1],[3,3,3,2],[2,3,1,1],[1,2,0,0]],[[0,1,1,1],[2,4,3,2],[2,3,1,1],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[3,3,1,1],[1,2,0,0]],[[0,1,1,1],[2,3,3,2],[2,3,1,1],[2,2,0,0]],[[2,2,2,1],[2,3,0,2],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,3,0,2],[0,3,2,2],[0,1,1,2]],[[1,2,2,1],[2,3,0,2],[0,3,2,3],[0,1,1,1]],[[1,2,2,1],[2,3,0,3],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[2,4,0,2],[0,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,3,0,2],[0,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,3,0,2],[0,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,3,0,2],[0,3,2,2],[0,1,1,1]],[[2,2,2,1],[2,3,0,2],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,3,0,2],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[2,3,0,2],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[2,3,0,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[3,3,0,2],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[2,3,0,2],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,3,0,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[2,3,0,3],[0,3,2,1],[0,2,2,0]],[[1,2,2,1],[2,4,0,2],[0,3,2,1],[0,2,2,0]],[[1,2,2,2],[2,3,0,2],[0,3,2,1],[0,2,2,0]],[[1,2,3,1],[2,3,0,2],[0,3,2,1],[0,2,2,0]],[[1,3,2,1],[2,3,0,2],[0,3,2,1],[0,2,2,0]],[[2,2,2,1],[2,3,0,2],[0,3,2,1],[0,2,2,0]],[[1,2,2,1],[3,3,0,2],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[2,3,0,2],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[2,3,0,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[2,3,0,3],[0,3,2,0],[0,2,2,1]],[[1,2,2,1],[2,4,0,2],[0,3,2,0],[0,2,2,1]],[[1,2,2,2],[2,3,0,2],[0,3,2,0],[0,2,2,1]],[[1,2,3,1],[2,3,0,2],[0,3,2,0],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[0,3,2,0],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[0,3,2,0],[0,2,2,1]],[[0,1,1,2],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[0,1,1,1],[3,3,3,2],[2,3,1,2],[1,0,0,1]],[[0,1,1,1],[2,4,3,2],[2,3,1,2],[1,0,0,1]],[[0,1,1,1],[2,3,4,2],[2,3,1,2],[1,0,0,1]],[[0,1,1,1],[2,3,3,3],[2,3,1,2],[1,0,0,1]],[[0,1,1,1],[2,3,3,2],[3,3,1,2],[1,0,0,1]],[[0,1,1,1],[2,3,3,2],[2,3,1,3],[1,0,0,1]],[[0,1,1,2],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[0,1,1,1],[3,3,3,2],[2,3,1,2],[1,0,1,0]],[[0,1,1,1],[2,4,3,2],[2,3,1,2],[1,0,1,0]],[[0,1,1,1],[2,3,4,2],[2,3,1,2],[1,0,1,0]],[[0,1,1,1],[2,3,3,3],[2,3,1,2],[1,0,1,0]],[[0,1,1,1],[2,3,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[3,3,0,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,1],[2,3,0,2],[0,3,1,2],[1,2,1,0]],[[2,2,2,1],[2,3,0,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[3,3,0,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[2,3,0,2],[0,3,1,2],[1,2,0,1]],[[2,2,2,1],[2,3,0,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[2,3,0,2],[0,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,3,0,2],[0,3,1,3],[1,0,2,1]],[[1,2,2,1],[2,3,0,3],[0,3,1,2],[1,0,2,1]],[[1,2,2,1],[2,4,0,2],[0,3,1,2],[1,0,2,1]],[[1,2,2,2],[2,3,0,2],[0,3,1,2],[1,0,2,1]],[[1,2,3,1],[2,3,0,2],[0,3,1,2],[1,0,2,1]],[[1,3,2,1],[2,3,0,2],[0,3,1,2],[1,0,2,1]],[[2,2,2,1],[2,3,0,2],[0,3,1,2],[1,0,2,1]],[[1,2,2,1],[2,3,0,2],[0,3,1,3],[0,2,2,0]],[[1,2,2,1],[2,3,0,3],[0,3,1,2],[0,2,2,0]],[[1,2,2,1],[2,4,0,2],[0,3,1,2],[0,2,2,0]],[[1,2,2,2],[2,3,0,2],[0,3,1,2],[0,2,2,0]],[[1,2,3,1],[2,3,0,2],[0,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,3,0,2],[0,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,3,0,2],[0,3,1,2],[0,2,2,0]],[[1,2,2,1],[2,3,0,2],[0,3,1,2],[0,2,1,2]],[[1,2,2,1],[2,3,0,2],[0,3,1,3],[0,2,1,1]],[[1,2,2,1],[2,3,0,3],[0,3,1,2],[0,2,1,1]],[[1,2,2,1],[2,4,0,2],[0,3,1,2],[0,2,1,1]],[[1,2,2,2],[2,3,0,2],[0,3,1,2],[0,2,1,1]],[[1,2,3,1],[2,3,0,2],[0,3,1,2],[0,2,1,1]],[[1,3,2,1],[2,3,0,2],[0,3,1,2],[0,2,1,1]],[[2,2,2,1],[2,3,0,2],[0,3,1,2],[0,2,1,1]],[[1,2,2,1],[2,3,0,2],[0,3,1,2],[0,1,2,2]],[[1,2,2,1],[2,3,0,2],[0,3,1,2],[0,1,3,1]],[[1,2,2,1],[2,3,0,2],[0,3,1,3],[0,1,2,1]],[[1,2,2,1],[2,3,0,3],[0,3,1,2],[0,1,2,1]],[[1,2,2,1],[2,4,0,2],[0,3,1,2],[0,1,2,1]],[[1,2,2,2],[2,3,0,2],[0,3,1,2],[0,1,2,1]],[[1,2,3,1],[2,3,0,2],[0,3,1,2],[0,1,2,1]],[[1,3,2,1],[2,3,0,2],[0,3,1,2],[0,1,2,1]],[[2,2,2,1],[2,3,0,2],[0,3,1,2],[0,1,2,1]],[[1,2,2,1],[3,3,0,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,3,0,2],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[2,3,0,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[2,3,0,3],[0,3,1,1],[0,2,2,1]],[[1,2,2,1],[2,4,0,2],[0,3,1,1],[0,2,2,1]],[[1,2,2,2],[2,3,0,2],[0,3,1,1],[0,2,2,1]],[[1,2,3,1],[2,3,0,2],[0,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[0,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[0,3,1,1],[0,2,2,1]],[[1,2,2,1],[3,3,0,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[2,3,0,2],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[2,3,0,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[3,3,0,2],[0,3,0,2],[1,2,2,0]],[[0,1,1,1],[3,3,3,2],[2,3,2,0],[1,0,1,1]],[[0,1,1,1],[2,4,3,2],[2,3,2,0],[1,0,1,1]],[[0,1,1,1],[2,3,4,2],[2,3,2,0],[1,0,1,1]],[[0,1,1,1],[2,3,3,2],[3,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,3,0,2],[0,3,0,2],[1,2,2,0]],[[2,2,2,1],[2,3,0,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[3,3,0,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[2,3,0,2],[0,3,0,2],[1,2,1,1]],[[2,2,2,1],[2,3,0,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[3,3,0,2],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,3,0,2],[0,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,3,0,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,3,0,2],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[2,3,0,2],[0,3,0,1],[1,2,2,1]],[[2,2,2,1],[2,3,0,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,1],[2,3,0,3],[0,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,4,0,2],[0,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,3,0,2],[0,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,3,0,2],[0,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,3,0,2],[0,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,3,0,2],[0,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,3,0,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,3,0,3],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,4,0,2],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,3,0,2],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,3,0,2],[0,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,3,0,2],[0,2,3,2],[1,1,0,1]],[[0,1,1,2],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[0,1,1,1],[3,3,3,2],[2,3,2,1],[1,0,0,1]],[[0,1,1,1],[2,4,3,2],[2,3,2,1],[1,0,0,1]],[[0,1,1,1],[2,3,4,2],[2,3,2,1],[1,0,0,1]],[[0,1,1,1],[2,3,3,3],[2,3,2,1],[1,0,0,1]],[[0,1,1,1],[2,3,3,2],[3,3,2,1],[1,0,0,1]],[[0,1,1,2],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[0,1,1,1],[3,3,3,2],[2,3,2,1],[1,0,1,0]],[[0,1,1,1],[2,4,3,2],[2,3,2,1],[1,0,1,0]],[[0,1,1,1],[2,3,4,2],[2,3,2,1],[1,0,1,0]],[[0,1,1,1],[2,3,3,3],[2,3,2,1],[1,0,1,0]],[[0,1,1,1],[2,3,3,2],[3,3,2,1],[1,0,1,0]],[[2,2,2,1],[2,3,0,2],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,3,0,2],[0,2,3,3],[1,0,2,0]],[[1,2,2,1],[2,3,0,2],[0,2,4,2],[1,0,2,0]],[[1,2,2,1],[2,3,0,3],[0,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,4,0,2],[0,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,3,0,2],[0,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,3,0,2],[0,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,0,2],[0,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,0,2],[0,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,3,0,2],[0,2,3,2],[1,0,1,2]],[[1,2,2,1],[2,3,0,2],[0,2,3,3],[1,0,1,1]],[[1,2,2,1],[2,3,0,2],[0,2,4,2],[1,0,1,1]],[[1,2,2,1],[2,3,0,3],[0,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,4,0,2],[0,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,3,0,2],[0,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,3,0,2],[0,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,0,2],[0,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,0,2],[0,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,3,0,2],[0,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,3,0,2],[0,2,4,2],[0,2,1,0]],[[1,2,2,1],[2,3,0,3],[0,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,4,0,2],[0,2,3,2],[0,2,1,0]],[[1,2,2,2],[2,3,0,2],[0,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,3,0,2],[0,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,3,0,2],[0,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,3,0,2],[0,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,3,0,2],[0,2,3,2],[0,2,0,2]],[[1,2,2,1],[2,3,0,2],[0,2,3,3],[0,2,0,1]],[[1,2,2,1],[2,3,0,2],[0,2,4,2],[0,2,0,1]],[[1,2,2,1],[2,3,0,3],[0,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,4,0,2],[0,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,3,0,2],[0,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,3,0,2],[0,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,3,0,2],[0,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,3,0,2],[0,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,3,0,2],[0,2,3,2],[0,1,3,0]],[[1,2,2,1],[2,3,0,2],[0,2,3,3],[0,1,2,0]],[[1,2,2,1],[2,3,0,2],[0,2,4,2],[0,1,2,0]],[[1,2,2,1],[2,3,0,3],[0,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,4,0,2],[0,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,3,0,2],[0,2,3,2],[0,1,2,0]],[[1,2,3,1],[2,3,0,2],[0,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,0,2],[0,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,0,2],[0,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,3,0,2],[0,2,3,2],[0,1,1,2]],[[1,2,2,1],[2,3,0,2],[0,2,3,3],[0,1,1,1]],[[1,2,2,1],[2,3,0,2],[0,2,4,2],[0,1,1,1]],[[1,2,2,1],[2,3,0,3],[0,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,4,0,2],[0,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,3,0,2],[0,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,3,0,2],[0,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,3,0,2],[0,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,3,0,2],[0,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,3,0,2],[0,2,3,2],[0,0,2,2]],[[1,2,2,1],[2,3,0,2],[0,2,3,3],[0,0,2,1]],[[1,2,2,1],[2,3,0,2],[0,2,4,2],[0,0,2,1]],[[1,2,2,1],[2,3,0,3],[0,2,3,2],[0,0,2,1]],[[1,2,2,1],[2,4,0,2],[0,2,3,2],[0,0,2,1]],[[1,2,2,2],[2,3,0,2],[0,2,3,2],[0,0,2,1]],[[1,2,3,1],[2,3,0,2],[0,2,3,2],[0,0,2,1]],[[1,3,2,1],[2,3,0,2],[0,2,3,2],[0,0,2,1]],[[2,2,2,1],[2,3,0,2],[0,2,3,2],[0,0,2,1]],[[1,2,2,1],[2,3,0,2],[0,2,3,1],[0,1,2,2]],[[1,2,2,1],[2,3,0,2],[0,2,3,1],[0,1,3,1]],[[1,2,2,1],[2,3,0,2],[0,2,4,1],[0,1,2,1]],[[1,2,2,1],[2,3,0,2],[0,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,3,0,2],[0,2,2,3],[1,0,2,1]],[[1,2,2,1],[2,3,0,3],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[2,4,0,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,2],[2,3,0,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[2,3,0,2],[0,2,2,2],[1,0,2,1]],[[1,3,2,1],[2,3,0,2],[0,2,2,2],[1,0,2,1]],[[2,2,2,1],[2,3,0,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[2,3,0,2],[0,2,2,2],[0,1,2,2]],[[1,2,2,1],[2,3,0,2],[0,2,2,2],[0,1,3,1]],[[1,2,2,1],[2,3,0,2],[0,2,2,3],[0,1,2,1]],[[1,2,2,1],[2,3,0,3],[0,2,2,2],[0,1,2,1]],[[1,2,2,1],[2,4,0,2],[0,2,2,2],[0,1,2,1]],[[1,2,2,2],[2,3,0,2],[0,2,2,2],[0,1,2,1]],[[1,2,3,1],[2,3,0,2],[0,2,2,2],[0,1,2,1]],[[1,3,2,1],[2,3,0,2],[0,2,2,2],[0,1,2,1]],[[2,2,2,1],[2,3,0,2],[0,2,2,2],[0,1,2,1]],[[1,2,2,1],[2,3,0,2],[0,2,1,2],[0,2,2,2]],[[1,2,2,1],[2,3,0,2],[0,2,1,2],[0,2,3,1]],[[1,2,2,1],[2,3,0,2],[0,2,1,3],[0,2,2,1]],[[1,2,2,1],[2,3,0,3],[0,2,1,2],[0,2,2,1]],[[1,2,2,1],[2,4,0,2],[0,2,1,2],[0,2,2,1]],[[1,2,2,2],[2,3,0,2],[0,2,1,2],[0,2,2,1]],[[1,2,3,1],[2,3,0,2],[0,2,1,2],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[0,2,1,2],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[0,2,1,2],[0,2,2,1]],[[1,2,2,1],[3,3,0,2],[0,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,3,0,2],[0,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,3,0,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,1],[2,3,0,2],[0,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,3,0,2],[0,1,3,3],[0,2,2,0]],[[1,2,2,1],[2,3,0,2],[0,1,4,2],[0,2,2,0]],[[1,2,2,1],[2,3,0,3],[0,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,4,0,2],[0,1,3,2],[0,2,2,0]],[[1,2,2,2],[2,3,0,2],[0,1,3,2],[0,2,2,0]],[[1,2,3,1],[2,3,0,2],[0,1,3,2],[0,2,2,0]],[[1,3,2,1],[2,3,0,2],[0,1,3,2],[0,2,2,0]],[[2,2,2,1],[2,3,0,2],[0,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,3,0,2],[0,1,3,2],[0,2,1,2]],[[1,2,2,1],[2,3,0,2],[0,1,3,3],[0,2,1,1]],[[1,2,2,1],[2,3,0,2],[0,1,4,2],[0,2,1,1]],[[1,2,2,1],[2,3,0,3],[0,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,4,0,2],[0,1,3,2],[0,2,1,1]],[[1,2,2,2],[2,3,0,2],[0,1,3,2],[0,2,1,1]],[[1,2,3,1],[2,3,0,2],[0,1,3,2],[0,2,1,1]],[[1,3,2,1],[2,3,0,2],[0,1,3,2],[0,2,1,1]],[[2,2,2,1],[2,3,0,2],[0,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,3,0,2],[0,1,3,1],[0,2,2,2]],[[1,2,2,1],[2,3,0,2],[0,1,3,1],[0,2,3,1]],[[1,2,2,1],[2,3,0,2],[0,1,4,1],[0,2,2,1]],[[1,2,2,1],[2,3,0,2],[0,1,2,2],[0,2,2,2]],[[1,2,2,1],[2,3,0,2],[0,1,2,2],[0,2,3,1]],[[1,2,2,1],[2,3,0,2],[0,1,2,3],[0,2,2,1]],[[1,2,2,1],[2,3,0,3],[0,1,2,2],[0,2,2,1]],[[1,2,2,1],[2,4,0,2],[0,1,2,2],[0,2,2,1]],[[1,2,2,2],[2,3,0,2],[0,1,2,2],[0,2,2,1]],[[1,2,3,1],[2,3,0,2],[0,1,2,2],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[0,1,2,2],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[0,1,2,2],[0,2,2,1]],[[1,2,2,1],[2,3,0,2],[0,0,3,2],[0,2,2,2]],[[1,2,2,1],[2,3,0,2],[0,0,3,2],[0,2,3,1]],[[1,2,2,1],[2,3,0,2],[0,0,3,3],[0,2,2,1]],[[1,2,2,1],[2,3,0,3],[0,0,3,2],[0,2,2,1]],[[1,2,2,2],[2,3,0,2],[0,0,3,2],[0,2,2,1]],[[1,2,3,1],[2,3,0,2],[0,0,3,2],[0,2,2,1]],[[1,3,2,1],[2,3,0,2],[0,0,3,2],[0,2,2,1]],[[2,2,2,1],[2,3,0,2],[0,0,3,2],[0,2,2,1]],[[1,2,2,1],[2,3,0,1],[3,3,3,1],[1,0,1,0]],[[1,2,2,1],[3,3,0,1],[2,3,3,1],[1,0,1,0]],[[1,3,2,1],[2,3,0,1],[2,3,3,1],[1,0,1,0]],[[2,2,2,1],[2,3,0,1],[2,3,3,1],[1,0,1,0]],[[1,2,2,1],[2,3,0,1],[3,3,3,1],[1,0,0,1]],[[1,2,2,1],[3,3,0,1],[2,3,3,1],[1,0,0,1]],[[1,3,2,1],[2,3,0,1],[2,3,3,1],[1,0,0,1]],[[2,2,2,1],[2,3,0,1],[2,3,3,1],[1,0,0,1]],[[0,1,1,1],[3,3,3,2],[2,3,3,0],[1,0,1,0]],[[0,1,1,1],[2,4,3,2],[2,3,3,0],[1,0,1,0]],[[0,1,1,1],[2,3,4,2],[2,3,3,0],[1,0,1,0]],[[0,1,1,1],[2,3,3,2],[3,3,3,0],[1,0,1,0]],[[1,2,2,1],[2,3,0,1],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[2,3,0,1],[3,3,3,0],[1,2,0,0]],[[1,2,2,1],[3,3,0,1],[2,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,3,0,1],[2,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,3,0,1],[2,3,3,0],[1,2,0,0]],[[1,2,2,1],[2,3,0,1],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[2,3,0,1],[3,3,3,0],[1,1,1,0]],[[1,2,2,1],[3,3,0,1],[2,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,3,0,1],[2,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,3,0,1],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,3,0,1],[3,3,3,0],[1,0,1,1]],[[1,2,2,1],[3,3,0,1],[2,3,3,0],[1,0,1,1]],[[1,3,2,1],[2,3,0,1],[2,3,3,0],[1,0,1,1]],[[2,2,2,1],[2,3,0,1],[2,3,3,0],[1,0,1,1]],[[1,2,2,1],[2,3,0,1],[3,3,3,0],[0,2,1,0]],[[1,2,2,1],[3,3,0,1],[2,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,3,0,1],[2,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,3,0,1],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[2,3,0,1],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[2,3,0,1],[3,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,3,0,1],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,3,0,1],[2,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,3,0,1],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[2,3,0,1],[2,3,2,1],[2,1,1,0]],[[1,2,2,1],[2,3,0,1],[3,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,3,0,1],[2,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,3,0,1],[2,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,3,0,1],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,3,0,1],[2,3,2,1],[2,1,0,1]],[[1,2,2,1],[2,3,0,1],[3,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,3,0,1],[2,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,3,0,1],[2,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,3,0,1],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,3,0,1],[3,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,3,0,1],[2,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,3,0,1],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,3,0,1],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,3,0,1],[3,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,3,0,1],[2,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,3,0,1],[2,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,3,0,1],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,3,0,1],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[2,3,0,1],[3,3,2,0],[1,2,0,1]],[[1,2,2,1],[3,3,0,1],[2,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,3,0,1],[2,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,3,0,1],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[2,3,0,1],[2,3,2,0],[2,1,1,1]],[[1,2,2,1],[2,3,0,1],[3,3,2,0],[1,1,1,1]],[[0,1,1,2],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[0,1,1,1],[3,3,3,2],[2,3,3,1],[1,0,0,0]],[[0,1,1,1],[2,4,3,2],[2,3,3,1],[1,0,0,0]],[[0,1,1,1],[2,3,4,2],[2,3,3,1],[1,0,0,0]],[[0,1,1,1],[2,3,3,3],[2,3,3,1],[1,0,0,0]],[[0,1,1,1],[2,3,3,2],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[3,3,0,1],[2,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,3,0,1],[2,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,3,0,1],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,3,0,1],[3,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,3,0,1],[2,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,3,0,1],[2,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,3,0,1],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,3,0,1],[2,3,1,1],[2,2,1,0]],[[1,2,2,1],[2,3,0,1],[3,3,1,1],[1,2,1,0]],[[1,2,2,1],[3,3,0,1],[2,3,1,1],[1,2,1,0]],[[1,3,2,1],[2,3,0,1],[2,3,1,1],[1,2,1,0]],[[2,2,2,1],[2,3,0,1],[2,3,1,1],[1,2,1,0]],[[1,2,2,1],[2,3,0,1],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[2,3,0,1],[3,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,3,0,1],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,3,0,1],[2,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,3,0,1],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,3,0,1],[3,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,3,0,1],[2,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,3,0,1],[2,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,3,0,1],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,3,0,1],[2,3,1,0],[2,2,2,0]],[[1,2,2,1],[2,3,0,1],[3,3,1,0],[1,2,2,0]],[[1,2,2,1],[3,3,0,1],[2,3,1,0],[1,2,2,0]],[[1,3,2,1],[2,3,0,1],[2,3,1,0],[1,2,2,0]],[[2,2,2,1],[2,3,0,1],[2,3,1,0],[1,2,2,0]],[[1,2,2,1],[2,3,0,1],[2,3,1,0],[2,2,1,1]],[[1,2,2,1],[2,3,0,1],[3,3,1,0],[1,2,1,1]],[[1,2,2,1],[3,3,0,1],[2,3,1,0],[1,2,1,1]],[[1,3,2,1],[2,3,0,1],[2,3,1,0],[1,2,1,1]],[[2,2,2,1],[2,3,0,1],[2,3,1,0],[1,2,1,1]],[[1,2,2,1],[2,3,0,1],[2,3,1,0],[2,1,2,1]],[[1,2,2,1],[2,3,0,1],[3,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,3,0,1],[2,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,3,0,1],[2,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,3,0,1],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,3,0,1],[3,3,1,0],[0,2,2,1]],[[1,2,2,1],[3,3,0,1],[2,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,3,0,1],[2,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,3,0,1],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,3,0,1],[2,2,3,1],[2,2,0,0]],[[1,2,2,1],[2,3,0,1],[3,2,3,1],[1,2,0,0]],[[1,2,2,1],[3,3,0,1],[2,2,3,1],[1,2,0,0]],[[1,3,2,1],[2,3,0,1],[2,2,3,1],[1,2,0,0]],[[2,2,2,1],[2,3,0,1],[2,2,3,1],[1,2,0,0]],[[1,2,2,1],[2,3,0,1],[2,2,3,1],[2,1,1,0]],[[1,2,2,1],[2,3,0,1],[3,2,3,1],[1,1,1,0]],[[1,2,2,1],[3,3,0,1],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,0,1],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,0,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,3,0,1],[2,2,3,1],[2,1,0,1]],[[1,2,2,1],[2,3,0,1],[3,2,3,1],[1,1,0,1]],[[1,2,2,1],[3,3,0,1],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,0,1],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,0,1],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,3,0,1],[2,2,3,1],[2,0,2,0]],[[1,2,2,1],[2,3,0,1],[3,2,3,1],[1,0,2,0]],[[1,2,2,1],[3,3,0,1],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,0,1],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,0,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,3,0,1],[3,2,3,1],[1,0,1,1]],[[1,2,2,1],[3,3,0,1],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,0,1],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,0,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,3,0,1],[3,2,3,1],[0,2,1,0]],[[1,2,2,1],[3,3,0,1],[2,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,0,1],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,0,1],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,3,0,1],[3,2,3,1],[0,2,0,1]],[[1,2,2,1],[3,3,0,1],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,0,1],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,0,1],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,3,0,1],[3,2,3,1],[0,1,2,0]],[[1,2,2,1],[3,3,0,1],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,0,1],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,0,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[3,3,0,1],[2,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,0,1],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,0,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,3,0,1],[2,2,3,0],[2,2,0,1]],[[1,2,2,1],[2,3,0,1],[3,2,3,0],[1,2,0,1]],[[1,2,2,1],[3,3,0,1],[2,2,3,0],[1,2,0,1]],[[1,3,2,1],[2,3,0,1],[2,2,3,0],[1,2,0,1]],[[2,2,2,1],[2,3,0,1],[2,2,3,0],[1,2,0,1]],[[1,2,2,1],[2,3,0,1],[2,2,3,0],[2,1,1,1]],[[1,2,2,1],[2,3,0,1],[3,2,3,0],[1,1,1,1]],[[1,2,2,1],[3,3,0,1],[2,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,0,1],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,0,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,3,0,1],[2,2,3,0],[2,0,2,1]],[[1,2,2,1],[2,3,0,1],[3,2,3,0],[1,0,2,1]],[[1,2,2,1],[3,3,0,1],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,0,1],[2,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,0,1],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,3,0,1],[3,2,3,0],[0,2,1,1]],[[1,2,2,1],[3,3,0,1],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,0,1],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,0,1],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,3,0,1],[3,2,3,0],[0,1,2,1]],[[1,2,2,1],[3,3,0,1],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,0,1],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,3,0,1],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,3,0,1],[2,2,2,1],[2,1,2,0]],[[1,2,2,1],[2,3,0,1],[3,2,2,1],[1,1,2,0]],[[1,2,2,1],[3,3,0,1],[2,2,2,1],[1,1,2,0]],[[1,3,2,1],[2,3,0,1],[2,2,2,1],[1,1,2,0]],[[2,2,2,1],[2,3,0,1],[2,2,2,1],[1,1,2,0]],[[1,2,2,1],[2,3,0,1],[3,2,2,1],[0,2,2,0]],[[1,2,2,1],[3,3,0,1],[2,2,2,1],[0,2,2,0]],[[1,3,2,1],[2,3,0,1],[2,2,2,1],[0,2,2,0]],[[2,2,2,1],[2,3,0,1],[2,2,2,1],[0,2,2,0]],[[1,2,2,1],[2,3,0,1],[2,2,2,0],[2,1,2,1]],[[1,2,2,1],[2,3,0,1],[3,2,2,0],[1,1,2,1]],[[1,2,2,1],[3,3,0,1],[2,2,2,0],[1,1,2,1]],[[1,3,2,1],[2,3,0,1],[2,2,2,0],[1,1,2,1]],[[2,2,2,1],[2,3,0,1],[2,2,2,0],[1,1,2,1]],[[1,2,2,1],[2,3,0,1],[3,2,2,0],[0,2,2,1]],[[1,2,2,1],[3,3,0,1],[2,2,2,0],[0,2,2,1]],[[1,3,2,1],[2,3,0,1],[2,2,2,0],[0,2,2,1]],[[2,2,2,1],[2,3,0,1],[2,2,2,0],[0,2,2,1]],[[1,2,2,1],[2,3,0,1],[2,2,1,1],[1,3,2,0]],[[1,2,2,1],[2,3,0,1],[2,2,1,1],[2,2,2,0]],[[1,2,2,1],[2,3,0,1],[3,2,1,1],[1,2,2,0]],[[1,2,2,1],[3,3,0,1],[2,2,1,1],[1,2,2,0]],[[1,3,2,1],[2,3,0,1],[2,2,1,1],[1,2,2,0]],[[2,2,2,1],[2,3,0,1],[2,2,1,1],[1,2,2,0]],[[1,2,2,1],[2,3,0,1],[2,2,1,0],[1,3,2,1]],[[1,2,2,1],[2,3,0,1],[2,2,1,0],[2,2,2,1]],[[1,2,2,1],[2,3,0,1],[3,2,1,0],[1,2,2,1]],[[1,2,2,1],[3,3,0,1],[2,2,1,0],[1,2,2,1]],[[1,3,2,1],[2,3,0,1],[2,2,1,0],[1,2,2,1]],[[2,2,2,1],[2,3,0,1],[2,2,1,0],[1,2,2,1]],[[1,2,2,1],[2,3,0,1],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[2,3,0,1],[3,2,0,2],[1,1,2,1]],[[1,2,2,1],[3,3,0,1],[2,2,0,2],[1,1,2,1]],[[1,3,2,1],[2,3,0,1],[2,2,0,2],[1,1,2,1]],[[2,2,2,1],[2,3,0,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,3,0,1],[3,2,0,2],[0,2,2,1]],[[1,2,2,1],[3,3,0,1],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,0,1],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,0,1],[2,2,0,2],[0,2,2,1]],[[0,1,2,0],[0,0,2,2],[2,3,3,3],[1,2,2,1]],[[0,1,2,0],[0,0,2,2],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[0,0,2,2],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[0,0,2,2],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[0,0,2,2],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[0,0,3,2],[1,3,3,3],[1,2,2,1]],[[0,1,2,0],[0,0,3,2],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[0,0,3,2],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[0,0,3,2],[2,2,3,3],[1,2,2,1]],[[0,1,2,0],[0,0,3,2],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[0,0,3,2],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[0,0,3,3],[2,3,2,2],[1,2,2,1]],[[0,1,2,0],[0,0,3,2],[2,3,2,3],[1,2,2,1]],[[0,1,2,0],[0,0,3,2],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[0,0,3,2],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[0,0,3,2],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[0,0,3,2],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[0,0,3,2],[2,3,4,1],[1,2,2,1]],[[0,1,2,0],[0,0,3,2],[2,3,3,1],[2,2,2,1]],[[0,1,2,0],[0,0,3,2],[2,3,3,1],[1,3,2,1]],[[0,1,2,0],[0,0,3,2],[2,3,3,1],[1,2,3,1]],[[0,1,2,0],[0,0,3,2],[2,3,3,1],[1,2,2,2]],[[0,1,2,0],[0,0,3,3],[2,3,3,2],[1,2,1,1]],[[0,1,2,0],[0,0,3,2],[2,3,4,2],[1,2,1,1]],[[0,1,2,0],[0,0,3,2],[2,3,3,3],[1,2,1,1]],[[0,1,2,0],[0,0,3,2],[2,3,3,2],[1,2,1,2]],[[0,1,2,0],[0,0,3,3],[2,3,3,2],[1,2,2,0]],[[0,1,2,0],[0,0,3,2],[2,3,4,2],[1,2,2,0]],[[0,1,2,0],[0,0,3,2],[2,3,3,3],[1,2,2,0]],[[0,1,2,0],[0,0,3,2],[2,3,3,2],[2,2,2,0]],[[0,1,2,0],[0,0,3,2],[2,3,3,2],[1,3,2,0]],[[0,1,2,0],[0,0,3,2],[2,3,3,2],[1,2,3,0]],[[0,1,2,0],[0,1,1,2],[2,3,3,3],[1,2,2,1]],[[0,1,2,0],[0,1,1,2],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[0,1,1,2],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[0,1,1,2],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[0,1,1,2],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[0,1,2,3],[2,3,2,2],[1,2,2,1]],[[0,1,2,0],[0,1,2,2],[2,3,2,3],[1,2,2,1]],[[0,1,2,0],[0,1,2,2],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[0,1,2,2],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[0,1,2,2],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[0,1,2,2],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[0,1,2,2],[2,3,4,1],[1,2,2,1]],[[0,1,2,0],[0,1,2,2],[2,3,3,1],[2,2,2,1]],[[0,1,2,0],[0,1,2,2],[2,3,3,1],[1,3,2,1]],[[0,1,2,0],[0,1,2,2],[2,3,3,1],[1,2,3,1]],[[0,1,2,0],[0,1,2,2],[2,3,3,1],[1,2,2,2]],[[0,1,2,0],[0,1,2,3],[2,3,3,2],[1,2,1,1]],[[0,1,2,0],[0,1,2,2],[2,3,4,2],[1,2,1,1]],[[0,1,2,0],[0,1,2,2],[2,3,3,3],[1,2,1,1]],[[0,1,2,0],[0,1,2,2],[2,3,3,2],[1,2,1,2]],[[0,1,2,0],[0,1,2,3],[2,3,3,2],[1,2,2,0]],[[0,1,2,0],[0,1,2,2],[2,3,4,2],[1,2,2,0]],[[0,1,2,0],[0,1,2,2],[2,3,3,3],[1,2,2,0]],[[0,1,2,0],[0,1,2,2],[2,3,3,2],[2,2,2,0]],[[0,1,2,0],[0,1,2,2],[2,3,3,2],[1,3,2,0]],[[0,1,2,0],[0,1,2,2],[2,3,3,2],[1,2,3,0]],[[0,1,2,0],[0,1,3,0],[2,3,4,2],[1,2,2,1]],[[0,1,2,0],[0,1,3,0],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[0,1,3,0],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[0,1,3,0],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[0,1,3,0],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[0,1,3,1],[2,3,2,3],[1,2,2,1]],[[0,1,2,0],[0,1,3,1],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[0,1,3,1],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[0,1,3,1],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[0,1,3,1],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[0,1,3,1],[2,3,4,1],[1,2,2,1]],[[0,1,2,0],[0,1,3,1],[2,3,3,1],[2,2,2,1]],[[0,1,2,0],[0,1,3,1],[2,3,3,1],[1,3,2,1]],[[0,1,2,0],[0,1,3,1],[2,3,3,1],[1,2,3,1]],[[0,1,2,0],[0,1,3,1],[2,3,3,1],[1,2,2,2]],[[0,1,2,0],[0,1,3,1],[2,3,4,2],[1,2,1,1]],[[0,1,2,0],[0,1,3,1],[2,3,3,3],[1,2,1,1]],[[0,1,2,0],[0,1,3,1],[2,3,3,2],[1,2,1,2]],[[0,1,2,0],[0,1,3,1],[2,3,4,2],[1,2,2,0]],[[0,1,2,0],[0,1,3,1],[2,3,3,3],[1,2,2,0]],[[0,1,2,0],[0,1,3,1],[2,3,3,2],[2,2,2,0]],[[0,1,2,0],[0,1,3,1],[2,3,3,2],[1,3,2,0]],[[0,1,2,0],[0,1,3,1],[2,3,3,2],[1,2,3,0]],[[0,1,2,0],[0,1,3,2],[0,3,3,3],[1,2,2,1]],[[0,1,2,0],[0,1,3,2],[0,3,3,2],[1,2,3,1]],[[0,1,2,0],[0,1,3,2],[0,3,3,2],[1,2,2,2]],[[0,1,2,0],[0,1,3,3],[2,1,3,2],[1,2,2,1]],[[0,1,2,0],[0,1,3,2],[2,1,3,3],[1,2,2,1]],[[0,1,2,0],[0,1,3,2],[2,1,3,2],[1,2,3,1]],[[0,1,2,0],[0,1,3,2],[2,1,3,2],[1,2,2,2]],[[0,1,2,0],[0,1,3,3],[2,2,2,2],[1,2,2,1]],[[0,1,2,0],[0,1,3,2],[2,2,2,3],[1,2,2,1]],[[0,1,2,0],[0,1,3,2],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[0,1,3,2],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[0,1,3,2],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[0,1,3,2],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[0,1,3,2],[2,2,4,1],[1,2,2,1]],[[0,1,2,0],[0,1,3,2],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[0,1,3,2],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[0,1,3,2],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[0,1,3,2],[2,2,3,1],[1,2,2,2]],[[0,1,2,0],[0,1,3,3],[2,2,3,2],[1,2,1,1]],[[0,1,2,0],[0,1,3,2],[2,2,4,2],[1,2,1,1]],[[0,1,2,0],[0,1,3,2],[2,2,3,3],[1,2,1,1]],[[0,1,2,0],[0,1,3,2],[2,2,3,2],[1,2,1,2]],[[0,1,2,0],[0,1,3,3],[2,2,3,2],[1,2,2,0]],[[0,1,2,0],[0,1,3,2],[2,2,4,2],[1,2,2,0]],[[0,1,2,0],[0,1,3,2],[2,2,3,3],[1,2,2,0]],[[0,1,2,0],[0,1,3,2],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[0,1,3,2],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[0,1,3,2],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[0,1,3,3],[2,3,2,2],[1,1,2,1]],[[0,1,2,0],[0,1,3,2],[2,3,2,3],[1,1,2,1]],[[0,1,2,0],[0,1,3,2],[2,3,2,2],[1,1,3,1]],[[0,1,2,0],[0,1,3,2],[2,3,2,2],[1,1,2,2]],[[0,1,2,0],[0,1,3,2],[2,3,4,0],[1,2,2,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,0],[2,2,2,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,0],[1,3,2,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,0],[1,2,3,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,0],[1,2,2,2]],[[0,1,2,0],[0,1,3,2],[2,3,4,1],[1,1,2,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,1],[1,1,3,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,1],[1,1,2,2]],[[0,1,2,0],[0,1,3,2],[2,3,4,1],[1,2,2,0]],[[0,1,2,0],[0,1,3,2],[2,3,3,1],[2,2,2,0]],[[0,1,2,0],[0,1,3,2],[2,3,3,1],[1,3,2,0]],[[0,1,2,0],[0,1,3,2],[2,3,3,1],[1,2,3,0]],[[0,1,2,0],[0,1,3,3],[2,3,3,2],[1,0,2,1]],[[0,1,2,0],[0,1,3,2],[2,3,4,2],[1,0,2,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,3],[1,0,2,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,2],[1,0,2,2]],[[0,1,2,0],[0,1,3,3],[2,3,3,2],[1,1,1,1]],[[0,1,2,0],[0,1,3,2],[2,3,4,2],[1,1,1,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,3],[1,1,1,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,2],[1,1,1,2]],[[0,1,2,0],[0,1,3,3],[2,3,3,2],[1,1,2,0]],[[0,1,2,0],[0,1,3,2],[2,3,4,2],[1,1,2,0]],[[0,1,2,0],[0,1,3,2],[2,3,3,3],[1,1,2,0]],[[0,1,2,0],[0,1,3,2],[2,3,3,2],[1,1,3,0]],[[0,1,2,0],[0,1,3,3],[2,3,3,2],[1,2,0,1]],[[0,1,2,0],[0,1,3,2],[2,3,4,2],[1,2,0,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,3],[1,2,0,1]],[[0,1,2,0],[0,1,3,2],[2,3,3,2],[1,2,0,2]],[[0,1,2,0],[0,1,3,3],[2,3,3,2],[1,2,1,0]],[[0,1,2,0],[0,1,3,2],[2,3,4,2],[1,2,1,0]],[[0,1,2,0],[0,1,3,2],[2,3,3,3],[1,2,1,0]],[[1,2,2,1],[2,3,0,1],[2,1,3,1],[1,3,1,0]],[[1,2,2,1],[2,3,0,1],[2,1,3,1],[2,2,1,0]],[[0,1,2,0],[0,2,0,2],[2,3,3,3],[1,2,2,1]],[[0,1,2,0],[0,2,0,2],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[0,2,0,2],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[0,2,0,2],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[0,2,0,2],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[0,2,1,2],[2,2,3,3],[1,2,2,1]],[[0,1,2,0],[0,2,1,2],[2,2,3,2],[2,2,2,1]],[[0,1,2,0],[0,2,1,2],[2,2,3,2],[1,3,2,1]],[[0,1,2,0],[0,2,1,2],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[0,2,1,2],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[0,2,1,2],[2,3,3,3],[1,1,2,1]],[[0,1,2,0],[0,2,1,2],[2,3,3,2],[1,1,3,1]],[[0,1,2,0],[0,2,1,2],[2,3,3,2],[1,1,2,2]],[[0,1,2,0],[0,2,2,3],[2,1,3,2],[1,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,1,3,3],[1,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,1,3,2],[1,2,3,1]],[[0,1,2,0],[0,2,2,2],[2,1,3,2],[1,2,2,2]],[[0,1,2,0],[0,2,2,3],[2,2,2,2],[1,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,2,2,3],[1,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[0,2,2,2],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[0,2,2,2],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[0,2,2,2],[2,2,4,1],[1,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[0,2,2,2],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[0,2,2,2],[2,2,3,1],[1,2,2,2]],[[0,1,2,0],[0,2,2,3],[2,2,3,2],[1,2,1,1]],[[0,1,2,0],[0,2,2,2],[2,2,4,2],[1,2,1,1]],[[0,1,2,0],[0,2,2,2],[2,2,3,3],[1,2,1,1]],[[0,1,2,0],[0,2,2,2],[2,2,3,2],[1,2,1,2]],[[0,1,2,0],[0,2,2,3],[2,2,3,2],[1,2,2,0]],[[0,1,2,0],[0,2,2,2],[2,2,4,2],[1,2,2,0]],[[0,1,2,0],[0,2,2,2],[2,2,3,3],[1,2,2,0]],[[0,1,2,0],[0,2,2,2],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[0,2,2,2],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[0,2,2,2],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[0,2,2,3],[2,3,1,2],[1,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,4,1,2],[1,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,1,3],[1,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,1,2],[2,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,1,2],[1,3,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,1,2],[1,2,3,1]],[[0,1,2,0],[0,2,2,2],[2,3,1,2],[1,2,2,2]],[[0,1,2,0],[0,2,2,2],[2,4,2,1],[1,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,2,1],[2,2,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,2,1],[1,3,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,2,1],[1,2,3,1]],[[0,1,2,0],[0,2,2,2],[2,3,2,1],[1,2,2,2]],[[0,1,2,0],[0,2,2,3],[2,3,2,2],[1,1,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,2,3],[1,1,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,2,2],[1,1,3,1]],[[0,1,2,0],[0,2,2,2],[2,3,2,2],[1,1,2,2]],[[0,1,2,0],[0,2,2,2],[2,4,2,2],[1,2,2,0]],[[0,1,2,0],[0,2,2,2],[2,3,2,2],[2,2,2,0]],[[0,1,2,0],[0,2,2,2],[2,3,2,2],[1,3,2,0]],[[0,1,2,0],[0,2,2,2],[2,3,2,2],[1,2,3,0]],[[0,1,2,0],[0,2,2,2],[2,4,3,1],[1,1,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,4,1],[1,1,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,1],[1,1,3,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,1],[1,1,2,2]],[[0,1,2,0],[0,2,2,2],[2,4,3,1],[1,2,1,1]],[[0,1,2,0],[0,2,2,2],[2,3,4,1],[1,2,1,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,1],[2,2,1,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,1],[1,3,1,1]],[[0,1,2,0],[0,2,2,3],[2,3,3,2],[1,0,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,4,2],[1,0,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,3],[1,0,2,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,2],[1,0,2,2]],[[0,1,2,0],[0,2,2,3],[2,3,3,2],[1,1,1,1]],[[0,1,2,0],[0,2,2,2],[2,4,3,2],[1,1,1,1]],[[0,1,2,0],[0,2,2,2],[2,3,4,2],[1,1,1,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,3],[1,1,1,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,2],[1,1,1,2]],[[0,1,2,0],[0,2,2,3],[2,3,3,2],[1,1,2,0]],[[0,1,2,0],[0,2,2,2],[2,4,3,2],[1,1,2,0]],[[0,1,2,0],[0,2,2,2],[2,3,4,2],[1,1,2,0]],[[0,1,2,0],[0,2,2,2],[2,3,3,3],[1,1,2,0]],[[0,1,2,0],[0,2,2,2],[2,3,3,2],[1,1,3,0]],[[0,1,2,0],[0,2,2,3],[2,3,3,2],[1,2,0,1]],[[0,1,2,0],[0,2,2,2],[2,4,3,2],[1,2,0,1]],[[0,1,2,0],[0,2,2,2],[2,3,4,2],[1,2,0,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,3],[1,2,0,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,2],[2,2,0,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,2],[1,3,0,1]],[[0,1,2,0],[0,2,2,2],[2,3,3,2],[1,2,0,2]],[[0,1,2,0],[0,2,2,3],[2,3,3,2],[1,2,1,0]],[[0,1,2,0],[0,2,2,2],[2,4,3,2],[1,2,1,0]],[[0,1,2,0],[0,2,2,2],[2,3,4,2],[1,2,1,0]],[[0,1,2,0],[0,2,2,2],[2,3,3,3],[1,2,1,0]],[[0,1,2,0],[0,2,2,2],[2,3,3,2],[2,2,1,0]],[[0,1,2,0],[0,2,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,0,1],[3,1,3,1],[1,2,1,0]],[[1,2,2,1],[3,3,0,1],[2,1,3,1],[1,2,1,0]],[[1,3,2,1],[2,3,0,1],[2,1,3,1],[1,2,1,0]],[[2,2,2,1],[2,3,0,1],[2,1,3,1],[1,2,1,0]],[[1,2,2,1],[2,3,0,1],[2,1,3,1],[2,2,0,1]],[[1,2,2,1],[2,3,0,1],[3,1,3,1],[1,2,0,1]],[[1,2,2,1],[3,3,0,1],[2,1,3,1],[1,2,0,1]],[[1,3,2,1],[2,3,0,1],[2,1,3,1],[1,2,0,1]],[[0,1,2,0],[0,2,3,0],[2,2,4,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,0],[2,2,3,2],[2,2,2,1]],[[0,1,2,0],[0,2,3,0],[2,2,3,2],[1,3,2,1]],[[0,1,2,0],[0,2,3,0],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[0,2,3,0],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[0,2,3,0],[2,4,2,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,0],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[0,2,3,0],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[0,2,3,0],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[0,2,3,0],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[0,2,3,0],[2,4,3,2],[1,1,2,1]],[[0,1,2,0],[0,2,3,0],[2,3,4,2],[1,1,2,1]],[[0,1,2,0],[0,2,3,0],[2,3,3,2],[1,1,3,1]],[[0,1,2,0],[0,2,3,0],[2,3,3,2],[1,1,2,2]],[[0,1,2,0],[0,2,3,0],[2,4,3,2],[1,2,1,1]],[[0,1,2,0],[0,2,3,0],[2,3,4,2],[1,2,1,1]],[[0,1,2,0],[0,2,3,0],[2,3,3,2],[2,2,1,1]],[[0,1,2,0],[0,2,3,0],[2,3,3,2],[1,3,1,1]],[[0,1,2,0],[0,2,3,1],[2,1,3,3],[1,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,1,3,2],[1,2,3,1]],[[0,1,2,0],[0,2,3,1],[2,1,3,2],[1,2,2,2]],[[0,1,2,0],[0,2,3,1],[2,2,2,3],[1,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[0,2,3,1],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[0,2,3,1],[2,2,2,2],[1,2,2,2]],[[0,1,3,0],[0,2,3,1],[2,2,3,1],[1,2,2,1]],[[0,1,2,0],[0,2,4,1],[2,2,3,1],[1,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,2,4,1],[1,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[0,2,3,1],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[0,2,3,1],[2,2,3,1],[1,2,2,2]],[[0,1,3,0],[0,2,3,1],[2,2,3,2],[1,2,1,1]],[[0,1,2,0],[0,2,4,1],[2,2,3,2],[1,2,1,1]],[[0,1,2,0],[0,2,3,1],[2,2,4,2],[1,2,1,1]],[[0,1,2,0],[0,2,3,1],[2,2,3,3],[1,2,1,1]],[[0,1,2,0],[0,2,3,1],[2,2,3,2],[1,2,1,2]],[[0,1,3,0],[0,2,3,1],[2,2,3,2],[1,2,2,0]],[[0,1,2,0],[0,2,4,1],[2,2,3,2],[1,2,2,0]],[[0,1,2,0],[0,2,3,1],[2,2,4,2],[1,2,2,0]],[[0,1,2,0],[0,2,3,1],[2,2,3,3],[1,2,2,0]],[[0,1,2,0],[0,2,3,1],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[0,2,3,1],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[0,2,3,1],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[0,2,3,1],[2,4,1,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,1,3],[1,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,1,2],[2,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,1,2],[1,3,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,1,2],[1,2,3,1]],[[0,1,2,0],[0,2,3,1],[2,3,1,2],[1,2,2,2]],[[0,1,2,0],[0,2,3,1],[2,4,2,1],[1,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,2,1],[2,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,2,1],[1,3,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,2,1],[1,2,3,1]],[[0,1,2,0],[0,2,3,1],[2,3,2,1],[1,2,2,2]],[[0,1,2,0],[0,2,3,1],[2,3,2,3],[1,1,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,2,2],[1,1,3,1]],[[0,1,2,0],[0,2,3,1],[2,3,2,2],[1,1,2,2]],[[0,1,2,0],[0,2,3,1],[2,4,2,2],[1,2,2,0]],[[0,1,2,0],[0,2,3,1],[2,3,2,2],[2,2,2,0]],[[0,1,2,0],[0,2,3,1],[2,3,2,2],[1,3,2,0]],[[0,1,2,0],[0,2,3,1],[2,3,2,2],[1,2,3,0]],[[0,1,2,0],[0,2,3,1],[2,4,3,0],[1,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,0],[2,2,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,0],[1,3,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,0],[1,2,3,1]],[[0,1,3,0],[0,2,3,1],[2,3,3,1],[1,1,2,1]],[[0,1,2,0],[0,2,4,1],[2,3,3,1],[1,1,2,1]],[[0,1,2,0],[0,2,3,1],[2,4,3,1],[1,1,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,4,1],[1,1,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,1],[1,1,3,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,1],[1,1,2,2]],[[0,1,3,0],[0,2,3,1],[2,3,3,1],[1,2,1,1]],[[0,1,2,0],[0,2,4,1],[2,3,3,1],[1,2,1,1]],[[0,1,2,0],[0,2,3,1],[2,4,3,1],[1,2,1,1]],[[0,1,2,0],[0,2,3,1],[2,3,4,1],[1,2,1,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,1],[2,2,1,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,1],[1,3,1,1]],[[0,1,2,0],[0,2,3,1],[2,3,4,2],[1,0,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,3],[1,0,2,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,2],[1,0,2,2]],[[0,1,3,0],[0,2,3,1],[2,3,3,2],[1,1,1,1]],[[0,1,2,0],[0,2,4,1],[2,3,3,2],[1,1,1,1]],[[0,1,2,0],[0,2,3,1],[2,4,3,2],[1,1,1,1]],[[0,1,2,0],[0,2,3,1],[2,3,4,2],[1,1,1,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,3],[1,1,1,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,2],[1,1,1,2]],[[0,1,3,0],[0,2,3,1],[2,3,3,2],[1,1,2,0]],[[0,1,2,0],[0,2,4,1],[2,3,3,2],[1,1,2,0]],[[0,1,2,0],[0,2,3,1],[2,4,3,2],[1,1,2,0]],[[0,1,2,0],[0,2,3,1],[2,3,4,2],[1,1,2,0]],[[0,1,2,0],[0,2,3,1],[2,3,3,3],[1,1,2,0]],[[0,1,2,0],[0,2,3,1],[2,3,3,2],[1,1,3,0]],[[0,1,3,0],[0,2,3,1],[2,3,3,2],[1,2,0,1]],[[0,1,2,0],[0,2,4,1],[2,3,3,2],[1,2,0,1]],[[0,1,2,0],[0,2,3,1],[2,4,3,2],[1,2,0,1]],[[0,1,2,0],[0,2,3,1],[2,3,4,2],[1,2,0,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,3],[1,2,0,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,2],[2,2,0,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,2],[1,3,0,1]],[[0,1,2,0],[0,2,3,1],[2,3,3,2],[1,2,0,2]],[[0,1,3,0],[0,2,3,1],[2,3,3,2],[1,2,1,0]],[[0,1,2,0],[0,2,4,1],[2,3,3,2],[1,2,1,0]],[[0,1,2,0],[0,2,3,1],[2,4,3,2],[1,2,1,0]],[[0,1,2,0],[0,2,3,1],[2,3,4,2],[1,2,1,0]],[[0,1,2,0],[0,2,3,1],[2,3,3,3],[1,2,1,0]],[[0,1,2,0],[0,2,3,1],[2,3,3,2],[2,2,1,0]],[[0,1,2,0],[0,2,3,1],[2,3,3,2],[1,3,1,0]],[[2,2,2,1],[2,3,0,1],[2,1,3,1],[1,2,0,1]],[[1,2,2,1],[2,3,0,1],[2,1,3,0],[1,3,1,1]],[[0,1,2,0],[0,2,3,3],[0,2,3,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[0,2,3,3],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[0,2,3,2],[1,2,3,1]],[[0,1,2,0],[0,2,3,2],[0,2,3,2],[1,2,2,2]],[[0,1,2,0],[0,2,3,3],[0,3,2,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[0,3,2,3],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[0,3,2,2],[1,3,2,1]],[[0,1,2,0],[0,2,3,2],[0,3,2,2],[1,2,3,1]],[[0,1,2,0],[0,2,3,2],[0,3,2,2],[1,2,2,2]],[[0,1,2,0],[0,2,3,2],[0,3,4,1],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[0,3,3,1],[1,3,2,1]],[[0,1,2,0],[0,2,3,2],[0,3,3,1],[1,2,3,1]],[[0,1,2,0],[0,2,3,2],[0,3,3,1],[1,2,2,2]],[[0,1,2,0],[0,2,3,3],[0,3,3,2],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[0,3,4,2],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[0,3,3,3],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[0,3,3,2],[1,2,1,2]],[[0,1,2,0],[0,2,3,3],[0,3,3,2],[1,2,2,0]],[[0,1,2,0],[0,2,3,2],[0,3,4,2],[1,2,2,0]],[[0,1,2,0],[0,2,3,2],[0,3,3,3],[1,2,2,0]],[[0,1,2,0],[0,2,3,2],[0,3,3,2],[1,3,2,0]],[[0,1,2,0],[0,2,3,2],[0,3,3,2],[1,2,3,0]],[[0,1,2,0],[0,2,3,3],[1,1,3,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[1,1,3,3],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[1,1,3,2],[1,2,3,1]],[[0,1,2,0],[0,2,3,2],[1,1,3,2],[1,2,2,2]],[[0,1,2,0],[0,2,3,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[0,2,3,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[0,2,3,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,0],[0,2,3,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[0,2,3,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[0,2,3,2],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[0,2,3,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[1,2,3,2],[1,2,1,2]],[[0,1,2,0],[0,2,3,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[0,2,3,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[0,2,3,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[0,2,3,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[0,2,3,2],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[0,2,3,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,0],[0,2,3,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[0,2,3,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[0,2,3,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[0,2,3,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[0,2,3,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[0,2,3,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[0,2,3,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[0,2,3,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[0,2,3,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[0,2,3,2],[1,3,3,2],[1,0,2,2]],[[0,1,2,0],[0,2,3,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[0,2,3,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[0,2,3,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[0,2,3,2],[1,3,3,2],[1,1,1,2]],[[0,1,2,0],[0,2,3,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[0,2,3,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[0,2,3,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[0,2,3,2],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[0,2,3,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[0,2,3,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[0,2,3,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[0,2,3,2],[1,3,3,2],[1,2,0,2]],[[0,1,2,0],[0,2,3,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[0,2,3,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[0,2,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[2,3,0,1],[2,1,3,0],[2,2,1,1]],[[1,2,2,1],[2,3,0,1],[3,1,3,0],[1,2,1,1]],[[1,2,2,1],[3,3,0,1],[2,1,3,0],[1,2,1,1]],[[1,3,2,1],[2,3,0,1],[2,1,3,0],[1,2,1,1]],[[2,2,2,1],[2,3,0,1],[2,1,3,0],[1,2,1,1]],[[0,1,2,0],[0,2,3,3],[2,1,3,2],[0,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,1,3,3],[0,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,1,3,2],[0,2,3,1]],[[0,1,2,0],[0,2,3,2],[2,1,3,2],[0,2,2,2]],[[0,1,3,0],[0,2,3,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,0],[0,2,4,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,3],[2,2,1,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,2,1,3],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,2,1,2],[2,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,2,1,2],[1,3,2,1]],[[0,1,2,0],[0,2,3,2],[2,2,1,2],[1,2,3,1]],[[0,1,2,0],[0,2,3,2],[2,2,1,2],[1,2,2,2]],[[0,1,2,0],[0,2,3,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[0,2,3,2],[2,2,2,2],[0,2,2,2]],[[0,1,3,0],[0,2,3,2],[2,2,2,2],[1,2,1,1]],[[0,1,2,0],[0,2,4,2],[2,2,2,2],[1,2,1,1]],[[0,1,2,0],[0,2,3,3],[2,2,2,2],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[2,2,2,3],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[2,2,2,2],[1,2,1,2]],[[0,1,3,0],[0,2,3,2],[2,2,2,2],[1,2,2,0]],[[0,1,2,0],[0,2,4,2],[2,2,2,2],[1,2,2,0]],[[0,1,2,0],[0,2,3,3],[2,2,2,2],[1,2,2,0]],[[0,1,2,0],[0,2,3,2],[2,2,2,3],[1,2,2,0]],[[0,1,3,0],[0,2,3,2],[2,2,3,0],[1,2,2,1]],[[0,1,2,0],[0,2,4,2],[2,2,3,0],[1,2,2,1]],[[0,1,2,0],[0,2,3,3],[2,2,3,0],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,2,4,0],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,2,3,0],[2,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,2,3,0],[1,3,2,1]],[[0,1,2,0],[0,2,3,2],[2,2,3,0],[1,2,3,1]],[[0,1,2,0],[0,2,3,2],[2,2,3,0],[1,2,2,2]],[[0,1,2,0],[0,2,3,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[0,2,3,2],[2,2,3,1],[0,2,2,2]],[[0,1,3,0],[0,2,3,2],[2,2,3,1],[1,2,1,1]],[[0,1,2,0],[0,2,4,2],[2,2,3,1],[1,2,1,1]],[[0,1,2,0],[0,2,3,3],[2,2,3,1],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[2,2,4,1],[1,2,1,1]],[[0,1,3,0],[0,2,3,2],[2,2,3,1],[1,2,2,0]],[[0,1,2,0],[0,2,4,2],[2,2,3,1],[1,2,2,0]],[[0,1,2,0],[0,2,3,3],[2,2,3,1],[1,2,2,0]],[[0,1,2,0],[0,2,3,2],[2,2,4,1],[1,2,2,0]],[[0,1,2,0],[0,2,3,2],[2,2,3,1],[2,2,2,0]],[[0,1,2,0],[0,2,3,2],[2,2,3,1],[1,3,2,0]],[[0,1,2,0],[0,2,3,2],[2,2,3,1],[1,2,3,0]],[[0,1,2,0],[0,2,3,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[0,2,3,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[0,2,3,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[0,2,3,2],[2,2,3,2],[0,2,1,2]],[[0,1,2,0],[0,2,3,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[0,2,3,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[0,2,3,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[0,2,3,2],[2,2,3,2],[0,2,3,0]],[[0,1,3,0],[0,2,3,2],[2,3,0,2],[1,2,2,1]],[[0,1,2,0],[0,2,4,2],[2,3,0,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,3],[2,3,0,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,4,0,2],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,0,3],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,0,2],[2,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,0,2],[1,3,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,0,2],[1,2,3,1]],[[0,1,2,0],[0,2,3,2],[2,3,0,2],[1,2,2,2]],[[0,1,3,0],[0,2,3,2],[2,3,1,2],[1,1,2,1]],[[0,1,2,0],[0,2,4,2],[2,3,1,2],[1,1,2,1]],[[0,1,2,0],[0,2,3,3],[2,3,1,2],[1,1,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,1,3],[1,1,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,1,2],[1,1,3,1]],[[0,1,2,0],[0,2,3,2],[2,3,1,2],[1,1,2,2]],[[0,1,2,0],[0,2,3,2],[2,4,2,0],[1,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,2,0],[2,2,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,2,0],[1,3,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,2,0],[1,2,3,1]],[[0,1,2,0],[0,2,3,2],[2,3,2,0],[1,2,2,2]],[[0,1,2,0],[0,2,3,2],[2,4,2,1],[1,2,2,0]],[[0,1,2,0],[0,2,3,2],[2,3,2,1],[2,2,2,0]],[[0,1,2,0],[0,2,3,2],[2,3,2,1],[1,3,2,0]],[[0,1,2,0],[0,2,3,2],[2,3,2,1],[1,2,3,0]],[[0,1,2,0],[0,2,3,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[0,2,3,2],[2,3,2,2],[0,1,2,2]],[[0,1,3,0],[0,2,3,2],[2,3,2,2],[1,1,1,1]],[[0,1,2,0],[0,2,4,2],[2,3,2,2],[1,1,1,1]],[[0,1,2,0],[0,2,3,3],[2,3,2,2],[1,1,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,2,3],[1,1,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,2,2],[1,1,1,2]],[[0,1,3,0],[0,2,3,2],[2,3,2,2],[1,1,2,0]],[[0,1,2,0],[0,2,4,2],[2,3,2,2],[1,1,2,0]],[[0,1,2,0],[0,2,3,3],[2,3,2,2],[1,1,2,0]],[[0,1,2,0],[0,2,3,2],[2,3,2,3],[1,1,2,0]],[[0,1,3,0],[0,2,3,2],[2,3,2,2],[1,2,0,1]],[[0,1,2,0],[0,2,4,2],[2,3,2,2],[1,2,0,1]],[[0,1,2,0],[0,2,3,3],[2,3,2,2],[1,2,0,1]],[[0,1,2,0],[0,2,3,2],[2,3,2,3],[1,2,0,1]],[[0,1,2,0],[0,2,3,2],[2,3,2,2],[1,2,0,2]],[[0,1,3,0],[0,2,3,2],[2,3,2,2],[1,2,1,0]],[[0,1,2,0],[0,2,4,2],[2,3,2,2],[1,2,1,0]],[[0,1,2,0],[0,2,3,3],[2,3,2,2],[1,2,1,0]],[[0,1,2,0],[0,2,3,2],[2,3,2,3],[1,2,1,0]],[[0,1,3,0],[0,2,3,2],[2,3,3,0],[1,1,2,1]],[[0,1,2,0],[0,2,4,2],[2,3,3,0],[1,1,2,1]],[[0,1,2,0],[0,2,3,3],[2,3,3,0],[1,1,2,1]],[[0,1,2,0],[0,2,3,2],[2,4,3,0],[1,1,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,4,0],[1,1,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,0],[1,1,3,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,0],[1,1,2,2]],[[0,1,3,0],[0,2,3,2],[2,3,3,0],[1,2,1,1]],[[0,1,2,0],[0,2,4,2],[2,3,3,0],[1,2,1,1]],[[0,1,2,0],[0,2,3,3],[2,3,3,0],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[2,4,3,0],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,4,0],[1,2,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,0],[2,2,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,0],[1,3,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,1],[0,1,2,2]],[[0,1,3,0],[0,2,3,2],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[0,2,4,2],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[0,2,3,3],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[0,2,3,2],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,4,1],[1,1,1,1]],[[0,1,3,0],[0,2,3,2],[2,3,3,1],[1,1,2,0]],[[0,1,2,0],[0,2,4,2],[2,3,3,1],[1,1,2,0]],[[0,1,2,0],[0,2,3,3],[2,3,3,1],[1,1,2,0]],[[0,1,2,0],[0,2,3,2],[2,4,3,1],[1,1,2,0]],[[0,1,2,0],[0,2,3,2],[2,3,4,1],[1,1,2,0]],[[0,1,2,0],[0,2,3,2],[2,3,3,1],[1,1,3,0]],[[0,1,3,0],[0,2,3,2],[2,3,3,1],[1,2,0,1]],[[0,1,2,0],[0,2,4,2],[2,3,3,1],[1,2,0,1]],[[0,1,2,0],[0,2,3,3],[2,3,3,1],[1,2,0,1]],[[0,1,2,0],[0,2,3,2],[2,4,3,1],[1,2,0,1]],[[0,1,2,0],[0,2,3,2],[2,3,4,1],[1,2,0,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,1],[2,2,0,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,1],[1,3,0,1]],[[0,1,3,0],[0,2,3,2],[2,3,3,1],[1,2,1,0]],[[0,1,2,0],[0,2,4,2],[2,3,3,1],[1,2,1,0]],[[0,1,2,0],[0,2,3,3],[2,3,3,1],[1,2,1,0]],[[0,1,2,0],[0,2,3,2],[2,4,3,1],[1,2,1,0]],[[0,1,2,0],[0,2,3,2],[2,3,4,1],[1,2,1,0]],[[0,1,2,0],[0,2,3,2],[2,3,3,1],[2,2,1,0]],[[0,1,2,0],[0,2,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,3,0,1],[2,1,2,1],[1,3,2,0]],[[1,2,2,1],[2,3,0,1],[2,1,2,1],[2,2,2,0]],[[1,2,2,1],[2,3,0,1],[3,1,2,1],[1,2,2,0]],[[1,2,2,1],[3,3,0,1],[2,1,2,1],[1,2,2,0]],[[1,3,2,1],[2,3,0,1],[2,1,2,1],[1,2,2,0]],[[2,2,2,1],[2,3,0,1],[2,1,2,1],[1,2,2,0]],[[1,2,2,1],[2,3,0,1],[2,1,2,0],[1,2,3,1]],[[0,1,2,0],[0,2,3,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,2],[0,0,2,2]],[[0,1,2,0],[0,2,3,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,2],[0,1,1,2]],[[0,1,2,0],[0,2,3,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[0,2,3,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[0,2,3,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[0,2,3,2],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[0,2,3,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[0,2,3,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,2],[0,2,0,2]],[[0,1,2,0],[0,2,3,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[0,2,3,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[0,2,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,3,0,1],[2,1,2,0],[1,3,2,1]],[[1,2,2,1],[2,3,0,1],[2,1,2,0],[2,2,2,1]],[[1,2,2,1],[2,3,0,1],[3,1,2,0],[1,2,2,1]],[[1,2,2,1],[3,3,0,1],[2,1,2,0],[1,2,2,1]],[[1,3,2,1],[2,3,0,1],[2,1,2,0],[1,2,2,1]],[[0,1,2,0],[0,2,3,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[0,2,3,2],[2,3,3,2],[1,0,1,2]],[[0,1,2,0],[0,2,3,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[0,2,3,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[0,2,3,2],[2,3,3,3],[1,0,2,0]],[[2,2,2,1],[2,3,0,1],[2,1,2,0],[1,2,2,1]],[[1,2,2,1],[2,3,0,1],[2,1,0,2],[1,3,2,1]],[[1,2,2,1],[2,3,0,1],[2,1,0,2],[2,2,2,1]],[[1,2,2,1],[2,3,0,1],[3,1,0,2],[1,2,2,1]],[[1,2,2,1],[3,3,0,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,3,0,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[2,3,0,1],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[0,3,0,1],[2,4,3,2],[1,2,2,1]],[[0,1,2,0],[0,3,0,1],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[0,3,0,1],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[0,3,0,1],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,0,1],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,0,2],[2,2,3,3],[1,2,2,1]],[[0,1,2,0],[0,3,0,2],[2,2,3,2],[2,2,2,1]],[[0,1,2,0],[0,3,0,2],[2,2,3,2],[1,3,2,1]],[[0,1,2,0],[0,3,0,2],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,0,2],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,0,2],[2,4,2,2],[1,2,2,1]],[[0,1,2,0],[0,3,0,2],[2,3,2,3],[1,2,2,1]],[[0,1,2,0],[0,3,0,2],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[0,3,0,2],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[0,3,0,2],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[0,3,0,2],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[0,3,0,2],[2,4,3,1],[1,2,2,1]],[[0,1,2,0],[0,3,0,2],[2,3,3,1],[2,2,2,1]],[[0,1,2,0],[0,3,0,2],[2,3,3,1],[1,3,2,1]],[[0,1,2,0],[0,3,0,2],[2,3,3,1],[1,2,3,1]],[[0,1,2,0],[0,3,0,2],[2,3,3,1],[1,2,2,2]],[[0,1,2,0],[0,3,0,2],[2,3,3,3],[1,1,2,1]],[[0,1,2,0],[0,3,0,2],[2,3,3,2],[1,1,3,1]],[[0,1,2,0],[0,3,0,2],[2,3,3,2],[1,1,2,2]],[[0,1,2,0],[0,3,0,2],[2,4,3,2],[1,2,2,0]],[[0,1,2,0],[0,3,0,2],[2,3,3,2],[2,2,2,0]],[[0,1,2,0],[0,3,0,2],[2,3,3,2],[1,3,2,0]],[[0,1,2,0],[0,3,0,2],[2,3,3,2],[1,2,3,0]],[[0,1,2,0],[0,3,1,0],[2,4,3,2],[1,2,2,1]],[[0,1,2,0],[0,3,1,0],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[0,3,1,0],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[0,3,1,0],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,1,0],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,1,1],[2,4,3,1],[1,2,2,1]],[[0,1,2,0],[0,3,1,1],[2,3,3,1],[2,2,2,1]],[[0,1,2,0],[0,3,1,1],[2,3,3,1],[1,3,2,1]],[[0,1,2,0],[0,3,1,1],[2,3,3,1],[1,2,3,1]],[[0,1,2,0],[0,3,1,1],[2,3,3,1],[1,2,2,2]],[[0,1,2,0],[0,3,1,1],[2,4,3,2],[1,2,2,0]],[[0,1,2,0],[0,3,1,1],[2,3,3,2],[2,2,2,0]],[[0,1,2,0],[0,3,1,1],[2,3,3,2],[1,3,2,0]],[[0,1,2,0],[0,3,1,1],[2,3,3,2],[1,2,3,0]],[[0,1,2,0],[0,3,1,2],[0,3,3,3],[1,2,2,1]],[[0,1,2,0],[0,3,1,2],[0,3,3,2],[1,3,2,1]],[[0,1,2,0],[0,3,1,2],[0,3,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,1,2],[0,3,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,1,2],[1,2,3,3],[1,2,2,1]],[[0,1,2,0],[0,3,1,2],[1,2,3,2],[1,3,2,1]],[[0,1,2,0],[0,3,1,2],[1,2,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,1,2],[1,2,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,1,2],[1,3,3,3],[1,1,2,1]],[[0,1,2,0],[0,3,1,2],[1,3,3,2],[1,1,3,1]],[[0,1,2,0],[0,3,1,2],[1,3,3,2],[1,1,2,2]],[[0,1,2,0],[0,3,1,3],[2,2,2,2],[1,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,2,2,3],[1,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[0,3,1,2],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[0,3,1,2],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[0,3,1,2],[2,2,4,1],[1,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[0,3,1,2],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[0,3,1,2],[2,2,3,1],[1,2,2,2]],[[0,1,2,0],[0,3,1,2],[2,2,3,3],[0,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,2,3,2],[0,2,3,1]],[[0,1,2,0],[0,3,1,2],[2,2,3,2],[0,2,2,2]],[[0,1,2,0],[0,3,1,3],[2,2,3,2],[1,2,1,1]],[[0,1,2,0],[0,3,1,2],[2,2,4,2],[1,2,1,1]],[[0,1,2,0],[0,3,1,2],[2,2,3,3],[1,2,1,1]],[[0,1,2,0],[0,3,1,2],[2,2,3,2],[1,2,1,2]],[[0,1,2,0],[0,3,1,3],[2,2,3,2],[1,2,2,0]],[[0,1,2,0],[0,3,1,2],[2,2,4,2],[1,2,2,0]],[[0,1,2,0],[0,3,1,2],[2,2,3,3],[1,2,2,0]],[[0,1,2,0],[0,3,1,2],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[0,3,1,2],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[0,3,1,2],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[0,3,1,3],[2,3,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,4,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,1,3],[1,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,1,2],[2,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,1,2],[1,3,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,1,2],[1,2,3,1]],[[0,1,2,0],[0,3,1,2],[2,3,1,2],[1,2,2,2]],[[0,1,2,0],[0,3,1,2],[2,4,2,1],[1,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,2,1],[2,2,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,2,1],[1,3,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,2,1],[1,2,3,1]],[[0,1,2,0],[0,3,1,2],[2,3,2,1],[1,2,2,2]],[[0,1,2,0],[0,3,1,3],[2,3,2,2],[1,1,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,2,3],[1,1,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,2,2],[1,1,3,1]],[[0,1,2,0],[0,3,1,2],[2,3,2,2],[1,1,2,2]],[[0,1,2,0],[0,3,1,2],[2,4,2,2],[1,2,2,0]],[[0,1,2,0],[0,3,1,2],[2,3,2,2],[2,2,2,0]],[[0,1,2,0],[0,3,1,2],[2,3,2,2],[1,3,2,0]],[[0,1,2,0],[0,3,1,2],[2,3,2,2],[1,2,3,0]],[[0,1,2,0],[0,3,1,2],[2,4,3,1],[1,1,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,4,1],[1,1,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,1],[1,1,3,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,1],[1,1,2,2]],[[0,1,2,0],[0,3,1,2],[2,4,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,1,2],[2,3,4,1],[1,2,1,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,1],[2,2,1,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,1],[1,3,1,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,3],[0,1,2,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,2],[0,1,3,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,2],[0,1,2,2]],[[0,1,2,0],[0,3,1,3],[2,3,3,2],[1,1,1,1]],[[0,1,2,0],[0,3,1,2],[2,4,3,2],[1,1,1,1]],[[0,1,2,0],[0,3,1,2],[2,3,4,2],[1,1,1,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,3],[1,1,1,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,2],[1,1,1,2]],[[0,1,2,0],[0,3,1,3],[2,3,3,2],[1,1,2,0]],[[0,1,2,0],[0,3,1,2],[2,4,3,2],[1,1,2,0]],[[0,1,2,0],[0,3,1,2],[2,3,4,2],[1,1,2,0]],[[0,1,2,0],[0,3,1,2],[2,3,3,3],[1,1,2,0]],[[0,1,2,0],[0,3,1,2],[2,3,3,2],[1,1,3,0]],[[0,1,2,0],[0,3,1,3],[2,3,3,2],[1,2,0,1]],[[0,1,2,0],[0,3,1,2],[2,4,3,2],[1,2,0,1]],[[0,1,2,0],[0,3,1,2],[2,3,4,2],[1,2,0,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,3],[1,2,0,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,2],[2,2,0,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,2],[1,3,0,1]],[[0,1,2,0],[0,3,1,2],[2,3,3,2],[1,2,0,2]],[[0,1,2,0],[0,3,1,3],[2,3,3,2],[1,2,1,0]],[[0,1,2,0],[0,3,1,2],[2,4,3,2],[1,2,1,0]],[[0,1,2,0],[0,3,1,2],[2,3,4,2],[1,2,1,0]],[[0,1,2,0],[0,3,1,2],[2,3,3,3],[1,2,1,0]],[[0,1,2,0],[0,3,1,2],[2,3,3,2],[2,2,1,0]],[[0,1,2,0],[0,3,1,2],[2,3,3,2],[1,3,1,0]],[[0,1,2,0],[0,3,2,0],[2,2,4,2],[1,2,2,1]],[[0,1,2,0],[0,3,2,0],[2,2,3,2],[2,2,2,1]],[[0,1,2,0],[0,3,2,0],[2,2,3,2],[1,3,2,1]],[[0,1,2,0],[0,3,2,0],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,2,0],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,2,0],[2,4,2,2],[1,2,2,1]],[[0,1,2,0],[0,3,2,0],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[0,3,2,0],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[0,3,2,0],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[0,3,2,0],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[0,3,2,0],[2,4,3,2],[1,1,2,1]],[[0,1,2,0],[0,3,2,0],[2,3,4,2],[1,1,2,1]],[[0,1,2,0],[0,3,2,0],[2,3,3,2],[1,1,3,1]],[[0,1,2,0],[0,3,2,0],[2,3,3,2],[1,1,2,2]],[[0,1,2,0],[0,3,2,0],[2,4,3,2],[1,2,1,1]],[[0,1,2,0],[0,3,2,0],[2,3,4,2],[1,2,1,1]],[[0,1,2,0],[0,3,2,0],[2,3,3,2],[2,2,1,1]],[[0,1,2,0],[0,3,2,0],[2,3,3,2],[1,3,1,1]],[[0,1,2,0],[0,3,2,1],[2,2,2,3],[1,2,2,1]],[[0,1,2,0],[0,3,2,1],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[0,3,2,1],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[0,3,2,1],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[0,3,2,1],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[0,3,2,1],[2,2,4,1],[1,2,2,1]],[[0,1,2,0],[0,3,2,1],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[0,3,2,1],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[0,3,2,1],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[0,3,2,1],[2,2,3,1],[1,2,2,2]],[[0,1,2,0],[0,3,2,1],[2,2,4,2],[1,2,1,1]],[[0,1,2,0],[0,3,2,1],[2,2,3,3],[1,2,1,1]],[[0,1,2,0],[0,3,2,1],[2,2,3,2],[1,2,1,2]],[[0,1,2,0],[0,3,2,1],[2,2,4,2],[1,2,2,0]],[[0,1,2,0],[0,3,2,1],[2,2,3,3],[1,2,2,0]],[[0,1,2,0],[0,3,2,1],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[0,3,2,1],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[0,3,2,1],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[0,3,2,1],[2,4,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,1,3],[1,2,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,1,2],[2,2,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,1,2],[1,3,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,1,2],[1,2,3,1]],[[0,1,2,0],[0,3,2,1],[2,3,1,2],[1,2,2,2]],[[0,1,2,0],[0,3,2,1],[2,4,2,1],[1,2,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,2,1],[2,2,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,2,1],[1,3,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,2,1],[1,2,3,1]],[[0,1,2,0],[0,3,2,1],[2,3,2,1],[1,2,2,2]],[[0,1,2,0],[0,3,2,1],[2,3,2,3],[1,1,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,2,2],[1,1,3,1]],[[0,1,2,0],[0,3,2,1],[2,3,2,2],[1,1,2,2]],[[0,1,2,0],[0,3,2,1],[2,4,2,2],[1,2,2,0]],[[0,1,2,0],[0,3,2,1],[2,3,2,2],[2,2,2,0]],[[0,1,2,0],[0,3,2,1],[2,3,2,2],[1,3,2,0]],[[0,1,2,0],[0,3,2,1],[2,3,2,2],[1,2,3,0]],[[0,1,2,0],[0,3,2,1],[2,4,3,0],[1,2,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,0],[2,2,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,0],[1,3,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,0],[1,2,3,1]],[[0,1,2,0],[0,3,2,1],[2,4,3,1],[1,1,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,4,1],[1,1,2,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,1],[1,1,3,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,1],[1,1,2,2]],[[0,1,2,0],[0,3,2,1],[2,4,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,2,1],[2,3,4,1],[1,2,1,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,1],[2,2,1,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,1],[1,3,1,1]],[[0,1,2,0],[0,3,2,1],[2,4,3,2],[1,1,1,1]],[[0,1,2,0],[0,3,2,1],[2,3,4,2],[1,1,1,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,3],[1,1,1,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,2],[1,1,1,2]],[[0,1,2,0],[0,3,2,1],[2,4,3,2],[1,1,2,0]],[[0,1,2,0],[0,3,2,1],[2,3,4,2],[1,1,2,0]],[[0,1,2,0],[0,3,2,1],[2,3,3,3],[1,1,2,0]],[[0,1,2,0],[0,3,2,1],[2,3,3,2],[1,1,3,0]],[[0,1,2,0],[0,3,2,1],[2,4,3,2],[1,2,0,1]],[[0,1,2,0],[0,3,2,1],[2,3,4,2],[1,2,0,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,3],[1,2,0,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,2],[2,2,0,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,2],[1,3,0,1]],[[0,1,2,0],[0,3,2,1],[2,3,3,2],[1,2,0,2]],[[0,1,2,0],[0,3,2,1],[2,4,3,2],[1,2,1,0]],[[0,1,2,0],[0,3,2,1],[2,3,4,2],[1,2,1,0]],[[0,1,2,0],[0,3,2,1],[2,3,3,3],[1,2,1,0]],[[0,1,2,0],[0,3,2,1],[2,3,3,2],[2,2,1,0]],[[0,1,2,0],[0,3,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,0,1],[2,0,3,1],[1,3,2,0]],[[1,2,2,1],[2,3,0,1],[2,0,3,1],[2,2,2,0]],[[1,2,2,1],[2,3,0,1],[3,0,3,1],[1,2,2,0]],[[1,2,2,1],[3,3,0,1],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[2,3,0,1],[2,0,3,1],[1,2,2,0]],[[0,1,2,0],[0,3,2,3],[0,2,3,2],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[0,2,3,3],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[0,2,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,2,2],[0,2,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,2,3],[0,3,2,2],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[0,3,2,3],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[0,3,2,2],[1,3,2,1]],[[0,1,2,0],[0,3,2,2],[0,3,2,2],[1,2,3,1]],[[0,1,2,0],[0,3,2,2],[0,3,2,2],[1,2,2,2]],[[0,1,2,0],[0,3,2,2],[0,3,4,1],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[0,3,3,1],[1,3,2,1]],[[0,1,2,0],[0,3,2,2],[0,3,3,1],[1,2,3,1]],[[0,1,2,0],[0,3,2,2],[0,3,3,1],[1,2,2,2]],[[0,1,2,0],[0,3,2,3],[0,3,3,2],[1,2,1,1]],[[0,1,2,0],[0,3,2,2],[0,3,4,2],[1,2,1,1]],[[0,1,2,0],[0,3,2,2],[0,3,3,3],[1,2,1,1]],[[0,1,2,0],[0,3,2,2],[0,3,3,2],[1,2,1,2]],[[0,1,2,0],[0,3,2,3],[0,3,3,2],[1,2,2,0]],[[0,1,2,0],[0,3,2,2],[0,3,4,2],[1,2,2,0]],[[0,1,2,0],[0,3,2,2],[0,3,3,3],[1,2,2,0]],[[0,1,2,0],[0,3,2,2],[0,3,3,2],[1,3,2,0]],[[0,1,2,0],[0,3,2,2],[0,3,3,2],[1,2,3,0]],[[0,1,2,0],[0,3,2,3],[1,1,3,2],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,1,3,3],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,1,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,2,2],[1,1,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,2,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[0,3,2,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[0,3,2,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,0],[0,3,2,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[0,3,2,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[0,3,2,2],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[0,3,2,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[0,3,2,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[0,3,2,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[0,3,2,2],[1,2,3,2],[1,2,1,2]],[[0,1,2,0],[0,3,2,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[0,3,2,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[0,3,2,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[0,3,2,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[0,3,2,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[0,3,2,2],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[0,3,2,3],[1,3,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,4,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,1,3],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,1,2],[2,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,1,2],[1,3,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,1,2],[1,2,3,1]],[[0,1,2,0],[0,3,2,2],[1,3,1,2],[1,2,2,2]],[[0,1,2,0],[0,3,2,2],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[0,3,2,2],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[0,3,2,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[0,3,2,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[0,3,2,2],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[0,3,2,2],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[0,3,2,2],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[0,3,2,2],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[0,3,2,2],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[0,3,2,2],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,2,2],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,1],[1,3,1,1]],[[0,1,2,0],[0,3,2,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,2],[1,0,2,2]],[[0,1,2,0],[0,3,2,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[0,3,2,2],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[0,3,2,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,2],[1,1,1,2]],[[0,1,2,0],[0,3,2,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[0,3,2,2],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[0,3,2,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[0,3,2,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[0,3,2,2],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[0,3,2,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[0,3,2,2],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[0,3,2,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[0,3,2,2],[1,3,3,2],[1,2,0,2]],[[0,1,2,0],[0,3,2,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[0,3,2,2],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[0,3,2,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[0,3,2,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,0],[0,3,2,2],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[0,3,2,2],[1,3,3,2],[1,3,1,0]],[[2,2,2,1],[2,3,0,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,3,0,1],[2,0,3,0],[1,2,3,1]],[[1,2,2,1],[2,3,0,1],[2,0,3,0],[1,3,2,1]],[[1,2,2,1],[2,3,0,1],[2,0,3,0],[2,2,2,1]],[[1,2,2,1],[2,3,0,1],[3,0,3,0],[1,2,2,1]],[[1,2,2,1],[3,3,0,1],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[2,3,0,1],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[2,3,0,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,0],[0,3,2,3],[2,1,3,2],[0,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,1,3,3],[0,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,1,3,2],[0,2,3,1]],[[0,1,2,0],[0,3,2,2],[2,1,3,2],[0,2,2,2]],[[0,1,2,0],[0,3,2,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[0,3,2,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[0,3,2,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,0],[0,3,2,2],[2,2,4,0],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,2,3,0],[2,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,2,3,0],[1,3,2,1]],[[0,1,2,0],[0,3,2,2],[2,2,3,0],[1,2,3,1]],[[0,1,2,0],[0,3,2,2],[2,2,3,0],[1,2,2,2]],[[0,1,2,0],[0,3,2,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[0,3,2,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[0,3,2,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[0,3,2,2],[2,2,4,1],[1,2,2,0]],[[0,1,2,0],[0,3,2,2],[2,2,3,1],[2,2,2,0]],[[0,1,2,0],[0,3,2,2],[2,2,3,1],[1,3,2,0]],[[0,1,2,0],[0,3,2,2],[2,2,3,1],[1,2,3,0]],[[0,1,2,0],[0,3,2,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[0,3,2,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[0,3,2,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[0,3,2,2],[2,2,3,2],[0,2,1,2]],[[0,1,2,0],[0,3,2,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[0,3,2,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[0,3,2,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[0,3,2,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[0,3,2,2],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[0,3,2,3],[2,3,0,2],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,4,0,2],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,0,3],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,0,2],[2,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,0,2],[1,3,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,0,2],[1,2,3,1]],[[0,1,2,0],[0,3,2,2],[2,3,0,2],[1,2,2,2]],[[0,1,2,0],[0,3,2,3],[2,3,1,2],[0,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,4,1,2],[0,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,1,3],[0,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,1,2],[0,3,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,1,2],[0,2,3,1]],[[0,1,2,0],[0,3,2,2],[2,3,1,2],[0,2,2,2]],[[0,1,2,0],[0,3,2,2],[2,4,2,0],[1,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,0],[2,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,0],[1,3,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,0],[1,2,3,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,0],[1,2,2,2]],[[0,1,2,0],[0,3,2,2],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[0,3,2,2],[2,4,2,1],[1,2,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,2,1],[2,2,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,2,1],[1,3,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,2,1],[1,2,3,0]],[[0,1,2,0],[0,3,2,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[0,3,2,2],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[0,3,2,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[0,3,2,2],[2,3,2,2],[1,0,2,2]],[[0,1,2,0],[0,3,2,2],[2,4,3,0],[1,1,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,4,0],[1,1,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,0],[1,1,3,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,0],[1,1,2,2]],[[0,1,2,0],[0,3,2,2],[2,4,3,0],[1,2,1,1]],[[0,1,2,0],[0,3,2,2],[2,3,4,0],[1,2,1,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,0],[2,2,1,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,0],[1,3,1,1]],[[0,1,2,0],[0,3,2,2],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,0],[0,3,2,2],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[0,3,2,2],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,1],[0,3,1,1]],[[0,1,2,0],[0,3,2,2],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,1],[1,0,2,2]],[[0,1,2,0],[0,3,2,2],[2,4,3,1],[1,1,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,4,1],[1,1,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,3,1],[1,1,3,0]],[[0,1,2,0],[0,3,2,2],[2,4,3,1],[1,2,0,1]],[[0,1,2,0],[0,3,2,2],[2,3,4,1],[1,2,0,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,1],[2,2,0,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,1],[1,3,0,1]],[[0,1,2,0],[0,3,2,2],[2,4,3,1],[1,2,1,0]],[[0,1,2,0],[0,3,2,2],[2,3,4,1],[1,2,1,0]],[[0,1,2,0],[0,3,2,2],[2,3,3,1],[2,2,1,0]],[[0,1,2,0],[0,3,2,2],[2,3,3,1],[1,3,1,0]],[[0,1,2,0],[0,3,2,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,2],[0,0,2,2]],[[0,1,2,0],[0,3,2,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[0,3,2,2],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[0,3,2,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,2],[0,1,1,2]],[[0,1,2,0],[0,3,2,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[0,3,2,2],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[0,3,2,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[0,3,2,2],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[0,3,2,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,2],[0,2,0,2]],[[0,1,2,0],[0,3,2,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[0,3,2,2],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[0,3,2,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[0,3,2,2],[2,3,3,3],[0,2,1,0]],[[0,1,2,0],[0,3,2,2],[2,3,3,2],[0,3,1,0]],[[0,1,2,0],[0,3,2,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[0,3,2,2],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[0,3,2,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,2],[1,0,1,2]],[[0,1,2,0],[0,3,2,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[0,3,2,2],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[0,3,2,2],[2,3,3,2],[1,0,3,0]],[[0,1,2,0],[0,3,2,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[0,3,2,2],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[0,3,2,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[0,3,2,2],[2,3,3,2],[1,1,0,2]],[[0,1,2,0],[0,3,2,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[0,3,2,2],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[0,3,2,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[0,3,2,2],[2,3,3,3],[1,1,1,0]],[[0,1,2,0],[0,3,3,0],[0,3,4,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,0],[0,3,3,2],[1,3,2,1]],[[0,1,2,0],[0,3,3,0],[0,3,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,0],[0,3,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,3,0],[1,2,4,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,0],[1,2,3,2],[2,2,2,1]],[[0,1,2,0],[0,3,3,0],[1,2,3,2],[1,3,2,1]],[[0,1,2,0],[0,3,3,0],[1,2,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,0],[1,2,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,3,0],[1,4,2,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,0],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[0,3,3,0],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[0,3,3,0],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,0],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[0,3,3,0],[1,4,3,2],[1,1,2,1]],[[0,1,2,0],[0,3,3,0],[1,3,4,2],[1,1,2,1]],[[0,1,2,0],[0,3,3,0],[1,3,3,2],[1,1,3,1]],[[0,1,2,0],[0,3,3,0],[1,3,3,2],[1,1,2,2]],[[0,1,2,0],[0,3,3,0],[1,4,3,2],[1,2,1,1]],[[0,1,2,0],[0,3,3,0],[1,3,4,2],[1,2,1,1]],[[0,1,2,0],[0,3,3,0],[1,3,3,2],[2,2,1,1]],[[0,1,2,0],[0,3,3,0],[1,3,3,2],[1,3,1,1]],[[0,1,2,0],[0,3,3,0],[2,2,4,1],[1,2,2,1]],[[0,1,2,0],[0,3,3,0],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[0,3,3,0],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[0,3,3,0],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[0,3,3,0],[2,2,3,1],[1,2,2,2]],[[0,1,2,0],[0,3,3,0],[2,2,4,2],[0,2,2,1]],[[0,1,2,0],[0,3,3,0],[2,2,3,2],[0,3,2,1]],[[0,1,2,0],[0,3,3,0],[2,2,3,2],[0,2,3,1]],[[0,1,2,0],[0,3,3,0],[2,2,3,2],[0,2,2,2]],[[0,1,2,0],[0,3,3,0],[2,2,4,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,0],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[0,3,3,0],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[0,3,3,0],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[0,3,3,0],[2,4,2,1],[1,2,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,2,1],[2,2,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,2,1],[1,3,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,2,1],[1,2,3,1]],[[0,1,2,0],[0,3,3,0],[2,3,2,1],[1,2,2,2]],[[0,1,2,0],[0,3,3,0],[2,4,2,2],[0,2,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[0,3,3,0],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[0,3,3,0],[2,4,2,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,0],[2,3,2,2],[2,2,2,0]],[[0,1,2,0],[0,3,3,0],[2,3,2,2],[1,3,2,0]],[[0,1,2,0],[0,3,3,0],[2,3,2,2],[1,2,3,0]],[[0,1,2,0],[0,3,3,0],[2,4,3,0],[1,2,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,0],[2,2,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,0],[1,3,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,0],[1,2,3,1]],[[0,1,2,0],[0,3,3,0],[2,4,3,1],[1,1,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,4,1],[1,1,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,1],[1,1,3,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,1],[1,1,2,2]],[[0,1,2,0],[0,3,3,0],[2,4,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,3,0],[2,3,4,1],[1,2,1,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,1],[2,2,1,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,1],[1,3,1,1]],[[0,1,2,0],[0,3,3,0],[2,4,3,2],[0,1,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,4,2],[0,1,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,2],[0,1,3,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,2],[0,1,2,2]],[[0,1,2,0],[0,3,3,0],[2,4,3,2],[0,2,1,1]],[[0,1,2,0],[0,3,3,0],[2,3,4,2],[0,2,1,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,2],[0,3,1,1]],[[0,1,2,0],[0,3,3,0],[2,4,3,2],[1,0,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,4,2],[1,0,2,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,2],[1,0,3,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,2],[1,0,2,2]],[[0,1,2,0],[0,3,3,0],[2,4,3,2],[1,1,2,0]],[[0,1,2,0],[0,3,3,0],[2,3,4,2],[1,1,2,0]],[[0,1,2,0],[0,3,3,0],[2,3,3,2],[1,1,3,0]],[[0,1,2,0],[0,3,3,0],[2,4,3,2],[1,2,0,1]],[[0,1,2,0],[0,3,3,0],[2,3,4,2],[1,2,0,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,2],[2,2,0,1]],[[0,1,2,0],[0,3,3,0],[2,3,3,2],[1,3,0,1]],[[0,1,2,0],[0,3,3,0],[2,4,3,2],[1,2,1,0]],[[0,1,2,0],[0,3,3,0],[2,3,4,2],[1,2,1,0]],[[0,1,2,0],[0,3,3,0],[2,3,3,2],[2,2,1,0]],[[0,1,2,0],[0,3,3,0],[2,3,3,2],[1,3,1,0]],[[0,1,2,0],[0,3,3,1],[0,2,3,3],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[0,2,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,1],[0,2,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,3,1],[0,3,2,3],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[0,3,2,2],[1,3,2,1]],[[0,1,2,0],[0,3,3,1],[0,3,2,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,1],[0,3,2,2],[1,2,2,2]],[[0,1,3,0],[0,3,3,1],[0,3,3,1],[1,2,2,1]],[[0,1,2,0],[0,3,4,1],[0,3,3,1],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[0,3,4,1],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[0,3,3,1],[1,3,2,1]],[[0,1,2,0],[0,3,3,1],[0,3,3,1],[1,2,3,1]],[[0,1,2,0],[0,3,3,1],[0,3,3,1],[1,2,2,2]],[[0,1,3,0],[0,3,3,1],[0,3,3,2],[1,2,1,1]],[[0,1,2,0],[0,3,4,1],[0,3,3,2],[1,2,1,1]],[[0,1,2,0],[0,3,3,1],[0,3,4,2],[1,2,1,1]],[[0,1,2,0],[0,3,3,1],[0,3,3,3],[1,2,1,1]],[[0,1,2,0],[0,3,3,1],[0,3,3,2],[1,2,1,2]],[[0,1,3,0],[0,3,3,1],[0,3,3,2],[1,2,2,0]],[[0,1,2,0],[0,3,4,1],[0,3,3,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,1],[0,3,4,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,1],[0,3,3,3],[1,2,2,0]],[[0,1,2,0],[0,3,3,1],[0,3,3,2],[1,3,2,0]],[[0,1,2,0],[0,3,3,1],[0,3,3,2],[1,2,3,0]],[[0,1,2,0],[0,3,3,1],[1,1,3,3],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,1,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,1],[1,1,3,2],[1,2,2,2]],[[0,1,2,0],[0,3,3,1],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[0,3,3,1],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,1],[1,2,2,2],[1,2,2,2]],[[0,1,3,0],[0,3,3,1],[1,2,3,1],[1,2,2,1]],[[0,1,2,0],[0,3,4,1],[1,2,3,1],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[0,3,3,1],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[0,3,3,1],[1,2,3,1],[1,2,2,2]],[[0,1,3,0],[0,3,3,1],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[0,3,4,1],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[0,3,3,1],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[0,3,3,1],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[0,3,3,1],[1,2,3,2],[1,2,1,2]],[[0,1,3,0],[0,3,3,1],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[0,3,4,1],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,1],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,1],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[0,3,3,1],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[0,3,3,1],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[0,3,3,1],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[0,3,3,1],[1,4,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,1,3],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,1,2],[2,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,1,2],[1,3,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,1,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,1],[1,3,1,2],[1,2,2,2]],[[0,1,2,0],[0,3,3,1],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[0,3,3,1],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[0,3,3,1],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[0,3,3,1],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[0,3,3,1],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,1],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[0,3,3,1],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[0,3,3,1],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[0,3,3,1],[1,4,3,0],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,0],[2,2,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,0],[1,3,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,0],[1,2,3,1]],[[0,1,3,0],[0,3,3,1],[1,3,3,1],[1,1,2,1]],[[0,1,2,0],[0,3,4,1],[1,3,3,1],[1,1,2,1]],[[0,1,2,0],[0,3,3,1],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,1],[1,1,2,2]],[[0,1,3,0],[0,3,3,1],[1,3,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,4,1],[1,3,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,3,1],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,3,1],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,1],[1,3,1,1]],[[0,1,3,0],[0,3,3,1],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[0,3,4,1],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,2],[1,0,2,2]],[[0,1,3,0],[0,3,3,1],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[0,3,4,1],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[0,3,3,1],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[0,3,3,1],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,2],[1,1,1,2]],[[0,1,3,0],[0,3,3,1],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[0,3,4,1],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[0,3,3,1],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[0,3,3,1],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[0,3,3,1],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[0,3,3,1],[1,3,3,2],[1,1,3,0]],[[0,1,3,0],[0,3,3,1],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[0,3,4,1],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[0,3,3,1],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[0,3,3,1],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[0,3,3,1],[1,3,3,2],[1,2,0,2]],[[0,1,3,0],[0,3,3,1],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[0,3,4,1],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[0,3,3,1],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[0,3,3,1],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[0,3,3,1],[1,3,3,3],[1,2,1,0]],[[0,1,2,0],[0,3,3,1],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[0,3,3,1],[1,3,3,2],[1,3,1,0]],[[0,1,2,0],[0,3,3,1],[2,1,3,3],[0,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,1,3,2],[0,2,3,1]],[[0,1,2,0],[0,3,3,1],[2,1,3,2],[0,2,2,2]],[[0,1,2,0],[0,3,3,1],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[0,3,3,1],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[0,3,3,1],[2,2,2,2],[0,2,2,2]],[[0,1,3,0],[0,3,3,1],[2,2,3,1],[0,2,2,1]],[[0,1,2,0],[0,3,4,1],[2,2,3,1],[0,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[0,3,3,1],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[0,3,3,1],[2,2,3,1],[0,2,2,2]],[[0,1,3,0],[0,3,3,1],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[0,3,4,1],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[0,3,3,1],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[0,3,3,1],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[0,3,3,1],[2,2,3,2],[0,2,1,2]],[[0,1,3,0],[0,3,3,1],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[0,3,4,1],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[0,3,3,1],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[0,3,3,1],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[0,3,3,1],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[0,3,3,1],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[0,3,3,1],[2,4,0,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,0,3],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,0,2],[2,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,0,2],[1,3,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,0,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,1],[2,3,0,2],[1,2,2,2]],[[0,1,2,0],[0,3,3,1],[2,4,1,1],[1,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,1,1],[2,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,1,1],[1,3,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,1,1],[1,2,3,1]],[[0,1,2,0],[0,3,3,1],[2,3,1,1],[1,2,2,2]],[[0,1,2,0],[0,3,3,1],[2,4,1,2],[0,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,1,3],[0,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,1,2],[0,3,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,1,2],[0,2,3,1]],[[0,1,2,0],[0,3,3,1],[2,3,1,2],[0,2,2,2]],[[0,1,2,0],[0,3,3,1],[2,4,1,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,1],[2,3,1,2],[2,2,2,0]],[[0,1,2,0],[0,3,3,1],[2,3,1,2],[1,3,2,0]],[[0,1,2,0],[0,3,3,1],[2,3,1,2],[1,2,3,0]],[[0,1,2,0],[0,3,3,1],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[0,3,3,1],[2,4,2,1],[1,2,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,1],[2,2,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,1],[1,3,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[0,3,3,1],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[0,3,3,1],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[0,3,3,1],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[0,3,3,1],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,2],[1,0,2,2]],[[0,1,2,0],[0,3,3,1],[2,4,2,2],[1,2,0,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,2],[2,2,0,1]],[[0,1,2,0],[0,3,3,1],[2,3,2,2],[1,3,0,1]],[[0,1,2,0],[0,3,3,1],[2,4,2,2],[1,2,1,0]],[[0,1,2,0],[0,3,3,1],[2,3,2,2],[2,2,1,0]],[[0,1,2,0],[0,3,3,1],[2,3,2,2],[1,3,1,0]],[[0,1,2,0],[0,3,3,1],[2,4,3,0],[0,2,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,0],[0,3,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,0],[0,2,3,1]],[[0,1,3,0],[0,3,3,1],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[0,3,4,1],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[0,3,3,1],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,1],[0,1,2,2]],[[0,1,3,0],[0,3,3,1],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[0,3,4,1],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[0,3,3,1],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,1],[0,3,1,1]],[[0,1,3,0],[0,3,3,1],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[0,3,4,1],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[0,3,3,1],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,1],[1,0,2,2]],[[0,1,3,0],[0,3,3,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[0,3,4,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[0,3,3,1],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,4,1],[1,1,1,1]],[[0,1,3,0],[0,3,3,1],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[0,3,4,1],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,2],[0,0,2,2]],[[0,1,3,0],[0,3,3,1],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[0,3,4,1],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[0,3,3,1],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,2],[0,1,1,2]],[[0,1,3,0],[0,3,3,1],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[0,3,4,1],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[0,3,3,1],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[0,3,3,1],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[0,3,3,1],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[0,3,3,1],[2,3,3,2],[0,1,3,0]],[[0,1,3,0],[0,3,3,1],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[0,3,4,1],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[0,3,3,1],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[0,3,3,1],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,2],[0,2,0,2]],[[0,1,3,0],[0,3,3,1],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[0,3,4,1],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[0,3,3,1],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[0,3,3,1],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[0,3,3,1],[2,3,3,3],[0,2,1,0]],[[0,1,2,0],[0,3,3,1],[2,3,3,2],[0,3,1,0]],[[0,1,3,0],[0,3,3,1],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[0,3,4,1],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[0,3,3,1],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,2],[1,0,1,2]],[[0,1,3,0],[0,3,3,1],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[0,3,4,1],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[0,3,3,1],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[0,3,3,1],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[0,3,3,1],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[0,3,3,1],[2,3,3,2],[1,0,3,0]],[[0,1,3,0],[0,3,3,1],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[0,3,4,1],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[0,3,3,1],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[0,3,3,1],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[0,3,3,1],[2,3,3,2],[1,1,0,2]],[[0,1,3,0],[0,3,3,1],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[0,3,4,1],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[0,3,3,1],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[0,3,3,1],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[0,3,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,3,0,1],[1,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,3,0,1],[1,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,3,0,1],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,3,0,1],[1,3,3,1],[1,1,1,0]],[[1,3,2,1],[2,3,0,1],[1,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,0,1],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[3,3,0,1],[1,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,3,0,1],[1,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,3,0,1],[1,3,3,1],[1,1,0,1]],[[0,1,2,0],[0,3,3,3],[0,1,3,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[0,1,3,3],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[0,1,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,2],[0,1,3,2],[1,2,2,2]],[[0,1,3,0],[0,3,3,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,4,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,3],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[0,3,1,3],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[0,3,1,2],[1,3,2,1]],[[0,1,2,0],[0,3,3,2],[0,3,1,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,2],[0,3,1,2],[1,2,2,2]],[[0,1,3,0],[0,3,3,2],[0,3,2,2],[1,2,1,1]],[[0,1,2,0],[0,3,4,2],[0,3,2,2],[1,2,1,1]],[[0,1,2,0],[0,3,3,3],[0,3,2,2],[1,2,1,1]],[[0,1,2,0],[0,3,3,2],[0,3,2,3],[1,2,1,1]],[[0,1,2,0],[0,3,3,2],[0,3,2,2],[1,2,1,2]],[[0,1,3,0],[0,3,3,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[0,3,4,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,3],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,2],[0,3,2,3],[1,2,2,0]],[[0,1,3,0],[0,3,3,2],[0,3,3,0],[1,2,2,1]],[[0,1,2,0],[0,3,4,2],[0,3,3,0],[1,2,2,1]],[[0,1,2,0],[0,3,3,3],[0,3,3,0],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[0,3,4,0],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[0,3,3,0],[1,3,2,1]],[[0,1,2,0],[0,3,3,2],[0,3,3,0],[1,2,3,1]],[[0,1,2,0],[0,3,3,2],[0,3,3,0],[1,2,2,2]],[[0,1,3,0],[0,3,3,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,4,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,3,3],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,3,2],[0,3,4,1],[1,2,1,1]],[[0,1,3,0],[0,3,3,2],[0,3,3,1],[1,2,2,0]],[[0,1,2,0],[0,3,4,2],[0,3,3,1],[1,2,2,0]],[[0,1,2,0],[0,3,3,3],[0,3,3,1],[1,2,2,0]],[[0,1,2,0],[0,3,3,2],[0,3,4,1],[1,2,2,0]],[[0,1,2,0],[0,3,3,2],[0,3,3,1],[1,3,2,0]],[[0,1,2,0],[0,3,3,2],[0,3,3,1],[1,2,3,0]],[[0,1,2,0],[0,3,3,3],[1,0,3,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,0,3,3],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,0,3,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,2],[1,0,3,2],[1,2,2,2]],[[0,1,3,0],[0,3,3,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,4,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,3],[1,2,1,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,2,1,3],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,2,1,2],[2,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,2,1,2],[1,3,2,1]],[[0,1,2,0],[0,3,3,2],[1,2,1,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,2],[1,2,1,2],[1,2,2,2]],[[0,1,3,0],[0,3,3,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,0],[0,3,4,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,0],[0,3,3,3],[1,2,2,2],[1,2,1,1]],[[0,1,2,0],[0,3,3,2],[1,2,2,3],[1,2,1,1]],[[0,1,2,0],[0,3,3,2],[1,2,2,2],[1,2,1,2]],[[0,1,3,0],[0,3,3,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,0],[0,3,4,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,3],[1,2,2,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,2],[1,2,2,3],[1,2,2,0]],[[0,1,3,0],[0,3,3,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,0],[0,3,4,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,0],[0,3,3,3],[1,2,3,0],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,2,4,0],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,2,3,0],[2,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,2,3,0],[1,3,2,1]],[[0,1,2,0],[0,3,3,2],[1,2,3,0],[1,2,3,1]],[[0,1,2,0],[0,3,3,2],[1,2,3,0],[1,2,2,2]],[[0,1,3,0],[0,3,3,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,4,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,3,3],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[0,3,3,2],[1,2,4,1],[1,2,1,1]],[[0,1,3,0],[0,3,3,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,0],[0,3,4,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,0],[0,3,3,3],[1,2,3,1],[1,2,2,0]],[[0,1,2,0],[0,3,3,2],[1,2,4,1],[1,2,2,0]],[[0,1,2,0],[0,3,3,2],[1,2,3,1],[2,2,2,0]],[[0,1,2,0],[0,3,3,2],[1,2,3,1],[1,3,2,0]],[[0,1,2,0],[0,3,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[3,3,0,1],[1,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,3,0,1],[1,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,3,0,1],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[3,3,0,1],[1,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,0,1],[1,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,0,1],[1,3,3,1],[1,0,1,1]],[[0,1,3,0],[0,3,3,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[0,3,4,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,3],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,4,0,2],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,0,3],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,0,2],[2,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,0,2],[1,3,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,0,2],[1,2,3,1]],[[0,1,2,0],[0,3,3,2],[1,3,0,2],[1,2,2,2]],[[0,1,3,0],[0,3,3,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[0,3,4,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[0,3,3,3],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,1,3],[1,1,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,1,2],[1,1,3,1]],[[0,1,2,0],[0,3,3,2],[1,3,1,2],[1,1,2,2]],[[0,1,2,0],[0,3,3,2],[1,4,2,0],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,2,0],[2,2,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,2,0],[1,3,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,2,0],[1,2,3,1]],[[0,1,2,0],[0,3,3,2],[1,3,2,0],[1,2,2,2]],[[0,1,2,0],[0,3,3,2],[1,4,2,1],[1,2,2,0]],[[0,1,2,0],[0,3,3,2],[1,3,2,1],[2,2,2,0]],[[0,1,2,0],[0,3,3,2],[1,3,2,1],[1,3,2,0]],[[0,1,2,0],[0,3,3,2],[1,3,2,1],[1,2,3,0]],[[0,1,3,0],[0,3,3,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,0],[0,3,4,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,0],[0,3,3,3],[1,3,2,2],[1,0,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,2,3],[1,0,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,2,2],[1,0,2,2]],[[0,1,3,0],[0,3,3,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[0,3,4,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[0,3,3,3],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[0,3,3,2],[1,3,2,3],[1,1,1,1]],[[0,1,2,0],[0,3,3,2],[1,3,2,2],[1,1,1,2]],[[0,1,3,0],[0,3,3,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[0,3,4,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[0,3,3,3],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[0,3,3,2],[1,3,2,3],[1,1,2,0]],[[0,1,3,0],[0,3,3,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[0,3,4,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[0,3,3,3],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[0,3,3,2],[1,3,2,3],[1,2,0,1]],[[0,1,2,0],[0,3,3,2],[1,3,2,2],[1,2,0,2]],[[0,1,3,0],[0,3,3,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[0,3,4,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[0,3,3,3],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[0,3,3,2],[1,3,2,3],[1,2,1,0]],[[0,1,3,0],[0,3,3,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[0,3,4,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[0,3,3,3],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[0,3,3,2],[1,4,3,0],[1,1,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,4,0],[1,1,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,3,0],[1,1,3,1]],[[0,1,2,0],[0,3,3,2],[1,3,3,0],[1,1,2,2]],[[0,1,3,0],[0,3,3,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,0],[0,3,4,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,0],[0,3,3,3],[1,3,3,0],[1,2,1,1]],[[0,1,2,0],[0,3,3,2],[1,4,3,0],[1,2,1,1]],[[0,1,2,0],[0,3,3,2],[1,3,4,0],[1,2,1,1]],[[0,1,2,0],[0,3,3,2],[1,3,3,0],[2,2,1,1]],[[0,1,2,0],[0,3,3,2],[1,3,3,0],[1,3,1,1]],[[0,1,3,0],[0,3,3,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[0,3,4,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[0,3,3,3],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[0,3,3,2],[1,3,4,1],[1,0,2,1]],[[0,1,3,0],[0,3,3,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[0,3,4,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[0,3,3,3],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[0,3,3,2],[1,4,3,1],[1,1,1,1]],[[0,1,2,0],[0,3,3,2],[1,3,4,1],[1,1,1,1]],[[0,1,3,0],[0,3,3,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,0],[0,3,4,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,0],[0,3,3,3],[1,3,3,1],[1,1,2,0]],[[0,1,2,0],[0,3,3,2],[1,4,3,1],[1,1,2,0]],[[0,1,2,0],[0,3,3,2],[1,3,4,1],[1,1,2,0]],[[0,1,2,0],[0,3,3,2],[1,3,3,1],[1,1,3,0]],[[0,1,3,0],[0,3,3,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[0,3,4,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[0,3,3,3],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[0,3,3,2],[1,4,3,1],[1,2,0,1]],[[0,1,2,0],[0,3,3,2],[1,3,4,1],[1,2,0,1]],[[0,1,2,0],[0,3,3,2],[1,3,3,1],[2,2,0,1]],[[0,1,2,0],[0,3,3,2],[1,3,3,1],[1,3,0,1]],[[0,1,3,0],[0,3,3,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,0],[0,3,4,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,0],[0,3,3,3],[1,3,3,1],[1,2,1,0]],[[0,1,2,0],[0,3,3,2],[1,4,3,1],[1,2,1,0]],[[0,1,2,0],[0,3,3,2],[1,3,4,1],[1,2,1,0]],[[0,1,2,0],[0,3,3,2],[1,3,3,1],[2,2,1,0]],[[0,1,2,0],[0,3,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[3,3,0,1],[1,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,0,1],[1,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,0,1],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[3,3,0,1],[1,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,3,0,1],[1,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,3,0,1],[1,3,3,1],[0,2,0,1]],[[0,1,3,0],[0,3,3,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[0,3,4,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[0,3,3,3],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[0,3,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[3,3,0,1],[1,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,3,0,1],[1,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,3,0,1],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[3,3,0,1],[1,3,3,1],[0,1,1,1]],[[1,3,2,1],[2,3,0,1],[1,3,3,1],[0,1,1,1]],[[2,2,2,1],[2,3,0,1],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[3,3,0,1],[1,3,3,0],[1,2,0,1]],[[1,3,2,1],[2,3,0,1],[1,3,3,0],[1,2,0,1]],[[2,2,2,1],[2,3,0,1],[1,3,3,0],[1,2,0,1]],[[1,2,2,1],[3,3,0,1],[1,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,0,1],[1,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,0,1],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[3,3,0,1],[1,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,3,0,1],[1,3,3,0],[1,0,2,1]],[[2,2,2,1],[2,3,0,1],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[3,3,0,1],[1,3,3,0],[0,2,1,1]],[[0,1,2,0],[0,3,3,3],[2,0,3,2],[0,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,0,3,3],[0,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,0,3,2],[0,2,3,1]],[[0,1,2,0],[0,3,3,2],[2,0,3,2],[0,2,2,2]],[[1,3,2,1],[2,3,0,1],[1,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,3,0,1],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[3,3,0,1],[1,3,3,0],[0,1,2,1]],[[1,3,2,1],[2,3,0,1],[1,3,3,0],[0,1,2,1]],[[0,1,3,0],[0,3,3,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[0,3,4,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[0,3,3,3],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,2,1,3],[0,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,2,1,2],[0,3,2,1]],[[0,1,2,0],[0,3,3,2],[2,2,1,2],[0,2,3,1]],[[0,1,2,0],[0,3,3,2],[2,2,1,2],[0,2,2,2]],[[0,1,3,0],[0,3,3,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,0],[0,3,4,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,0],[0,3,3,3],[2,2,2,2],[0,2,1,1]],[[0,1,2,0],[0,3,3,2],[2,2,2,3],[0,2,1,1]],[[0,1,2,0],[0,3,3,2],[2,2,2,2],[0,2,1,2]],[[0,1,3,0],[0,3,3,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[0,3,4,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[0,3,3,3],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[0,3,3,2],[2,2,2,3],[0,2,2,0]],[[2,2,2,1],[2,3,0,1],[1,3,3,0],[0,1,2,1]],[[0,1,3,0],[0,3,3,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[0,3,4,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[0,3,3,3],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,2,4,0],[0,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,2,3,0],[0,3,2,1]],[[0,1,2,0],[0,3,3,2],[2,2,3,0],[0,2,3,1]],[[0,1,2,0],[0,3,3,2],[2,2,3,0],[0,2,2,2]],[[0,1,3,0],[0,3,3,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[0,3,4,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[0,3,3,3],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[0,3,3,2],[2,2,4,1],[0,2,1,1]],[[0,1,3,0],[0,3,3,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,0],[0,3,4,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,0],[0,3,3,3],[2,2,3,1],[0,2,2,0]],[[0,1,2,0],[0,3,3,2],[2,2,4,1],[0,2,2,0]],[[0,1,2,0],[0,3,3,2],[2,2,3,1],[0,3,2,0]],[[0,1,2,0],[0,3,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[3,3,0,1],[1,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,3,0,1],[1,3,2,1],[1,1,2,0]],[[2,2,2,1],[2,3,0,1],[1,3,2,1],[1,1,2,0]],[[0,1,2,0],[0,3,3,2],[2,4,0,1],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,0,1],[2,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,0,1],[1,3,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,0,1],[1,2,3,1]],[[0,1,2,0],[0,3,3,2],[2,3,0,1],[1,2,2,2]],[[0,1,3,0],[0,3,3,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[0,3,4,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[0,3,3,3],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,4,0,2],[0,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,0,3],[0,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,0,2],[0,3,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,0,2],[0,2,3,1]],[[0,1,2,0],[0,3,3,2],[2,3,0,2],[0,2,2,2]],[[0,1,2,0],[0,3,3,2],[2,4,0,2],[1,2,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,0,2],[2,2,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,0,2],[1,3,1,1]],[[0,1,2,0],[0,3,3,2],[2,4,0,2],[1,2,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,0,2],[2,2,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,0,2],[1,3,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,0,2],[1,2,3,0]],[[0,1,2,0],[0,3,3,2],[2,4,1,0],[1,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,0],[2,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,0],[1,3,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,0],[1,2,3,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,0],[1,2,2,2]],[[0,1,2,0],[0,3,3,2],[2,4,1,1],[1,2,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,1,1],[2,2,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,1,1],[1,3,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,1,1],[1,2,3,0]],[[0,1,3,0],[0,3,3,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,0],[0,3,4,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,0],[0,3,3,3],[2,3,1,2],[0,1,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,3],[0,1,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,2],[0,1,3,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,2],[0,1,2,2]],[[0,1,3,0],[0,3,3,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,0],[0,3,4,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,0],[0,3,3,3],[2,3,1,2],[1,0,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,3],[1,0,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,2],[1,0,3,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,2],[1,0,2,2]],[[0,1,2,0],[0,3,3,2],[2,4,1,2],[1,2,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,2],[2,2,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,1,2],[1,3,0,1]],[[0,1,2,0],[0,3,3,2],[2,4,1,2],[1,2,1,0]],[[0,1,2,0],[0,3,3,2],[2,3,1,2],[2,2,1,0]],[[0,1,2,0],[0,3,3,2],[2,3,1,2],[1,3,1,0]],[[1,2,2,1],[3,3,0,1],[1,3,2,1],[0,2,2,0]],[[1,3,2,1],[2,3,0,1],[1,3,2,1],[0,2,2,0]],[[2,2,2,1],[2,3,0,1],[1,3,2,1],[0,2,2,0]],[[0,1,2,0],[0,3,3,2],[2,4,2,0],[0,2,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,0],[0,3,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,0],[0,2,3,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,0],[0,2,2,2]],[[0,1,2,0],[0,3,3,2],[2,4,2,0],[1,2,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,0],[2,2,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,0],[1,3,1,1]],[[0,1,2,0],[0,3,3,2],[2,4,2,1],[0,2,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,2,1],[0,3,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,2,1],[0,2,3,0]],[[0,1,2,0],[0,3,3,2],[2,4,2,1],[1,2,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,1],[2,2,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,1],[1,3,0,1]],[[0,1,2,0],[0,3,3,2],[2,4,2,1],[1,2,1,0]],[[0,1,2,0],[0,3,3,2],[2,3,2,1],[2,2,1,0]],[[0,1,2,0],[0,3,3,2],[2,3,2,1],[1,3,1,0]],[[1,2,2,1],[3,3,0,1],[1,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,3,0,1],[1,3,2,0],[1,1,2,1]],[[0,1,3,0],[0,3,3,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,0],[0,3,4,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,0],[0,3,3,3],[2,3,2,2],[0,0,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,3],[0,0,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,2],[0,0,2,2]],[[0,1,3,0],[0,3,3,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[0,3,4,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[0,3,3,3],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,3],[0,1,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,2],[0,1,1,2]],[[0,1,3,0],[0,3,3,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[0,3,4,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[0,3,3,3],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,2,3],[0,1,2,0]],[[0,1,3,0],[0,3,3,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[0,3,4,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[0,3,3,3],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,3],[0,2,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,2],[0,2,0,2]],[[0,1,3,0],[0,3,3,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[0,3,4,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[0,3,3,3],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[0,3,3,2],[2,3,2,3],[0,2,1,0]],[[2,2,2,1],[2,3,0,1],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[3,3,0,1],[1,3,2,0],[0,2,2,1]],[[1,3,2,1],[2,3,0,1],[1,3,2,0],[0,2,2,1]],[[2,2,2,1],[2,3,0,1],[1,3,2,0],[0,2,2,1]],[[0,1,3,0],[0,3,3,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[0,3,4,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[0,3,3,3],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,3],[1,0,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,2],[1,0,1,2]],[[0,1,3,0],[0,3,3,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[0,3,4,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[0,3,3,3],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,2,3],[1,0,2,0]],[[0,1,3,0],[0,3,3,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[0,3,4,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[0,3,3,3],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,3],[1,1,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,2,2],[1,1,0,2]],[[0,1,3,0],[0,3,3,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[0,3,4,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[0,3,3,3],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[0,3,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[3,3,0,1],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,3,0,1],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,3,0,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,3,0,1],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,0,1],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,0,1],[1,3,0,2],[0,2,2,1]],[[0,1,3,0],[0,3,3,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[0,3,4,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[0,3,3,3],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[0,3,3,2],[2,4,3,0],[0,1,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,4,0],[0,1,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,3,0],[0,1,3,1]],[[0,1,2,0],[0,3,3,2],[2,3,3,0],[0,1,2,2]],[[0,1,3,0],[0,3,3,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[0,3,4,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[0,3,3,3],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[0,3,3,2],[2,4,3,0],[0,2,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,4,0],[0,2,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,3,0],[0,3,1,1]],[[0,1,3,0],[0,3,3,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[0,3,4,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[0,3,3,3],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[0,3,3,2],[2,4,3,0],[1,0,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,4,0],[1,0,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,3,0],[1,0,3,1]],[[0,1,2,0],[0,3,3,2],[2,3,3,0],[1,0,2,2]],[[0,1,3,0],[0,3,3,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[0,3,4,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[0,3,3,3],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[0,3,3,2],[2,4,3,0],[1,1,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,4,0],[1,1,1,1]],[[0,1,2,0],[0,3,3,2],[2,4,3,0],[1,2,1,0]],[[0,1,2,0],[0,3,3,2],[2,3,3,0],[2,2,1,0]],[[0,1,2,0],[0,3,3,2],[2,3,3,0],[1,3,1,0]],[[0,1,3,0],[0,3,3,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[0,3,4,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[0,3,3,3],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[0,3,3,2],[2,3,4,1],[0,0,2,1]],[[0,1,3,0],[0,3,3,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[0,3,4,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[0,3,3,3],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[0,3,3,2],[2,4,3,1],[0,1,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,4,1],[0,1,1,1]],[[0,1,3,0],[0,3,3,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[0,3,4,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[0,3,3,3],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[0,3,3,2],[2,4,3,1],[0,1,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,4,1],[0,1,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,3,1],[0,1,3,0]],[[0,1,3,0],[0,3,3,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[0,3,4,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[0,3,3,3],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[0,3,3,2],[2,4,3,1],[0,2,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,4,1],[0,2,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,3,1],[0,3,0,1]],[[0,1,3,0],[0,3,3,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[0,3,4,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[0,3,3,3],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[0,3,3,2],[2,4,3,1],[0,2,1,0]],[[0,1,2,0],[0,3,3,2],[2,3,4,1],[0,2,1,0]],[[0,1,2,0],[0,3,3,2],[2,3,3,1],[0,3,1,0]],[[0,1,3,0],[0,3,3,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[0,3,4,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[0,3,3,3],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[0,3,3,2],[2,4,3,1],[1,0,1,1]],[[0,1,2,0],[0,3,3,2],[2,3,4,1],[1,0,1,1]],[[0,1,3,0],[0,3,3,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[0,3,4,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[0,3,3,3],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[0,3,3,2],[2,4,3,1],[1,0,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,4,1],[1,0,2,0]],[[0,1,2,0],[0,3,3,2],[2,3,3,1],[1,0,3,0]],[[0,1,3,0],[0,3,3,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[0,3,4,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[0,3,3,3],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[0,3,3,2],[2,4,3,1],[1,1,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,4,1],[1,1,0,1]],[[0,1,3,0],[0,3,3,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[0,3,4,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[0,3,3,3],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[0,3,3,2],[2,4,3,1],[1,1,1,0]],[[0,1,2,0],[0,3,3,2],[2,3,4,1],[1,1,1,0]],[[0,1,3,0],[0,3,3,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,0],[0,3,4,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,0],[0,3,3,3],[2,3,3,2],[0,1,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,4,0,1],[0,3,3,2],[1,1,1,0]],[[1,2,2,2],[2,3,0,1],[0,3,3,2],[1,1,1,0]],[[1,2,3,1],[2,3,0,1],[0,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,3,0,1],[0,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,3,0,1],[0,3,3,2],[1,1,1,0]],[[1,2,2,1],[2,4,0,1],[0,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,3,0,1],[0,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,3,0,1],[0,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,3,0,1],[0,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,3,0,1],[0,3,3,2],[1,1,0,1]],[[1,2,2,1],[2,4,0,1],[0,3,3,2],[1,0,2,0]],[[1,2,2,2],[2,3,0,1],[0,3,3,2],[1,0,2,0]],[[1,2,3,1],[2,3,0,1],[0,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,0,1],[0,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,0,1],[0,3,3,2],[1,0,2,0]],[[1,2,2,1],[2,4,0,1],[0,3,3,2],[1,0,1,1]],[[1,2,2,2],[2,3,0,1],[0,3,3,2],[1,0,1,1]],[[1,2,3,1],[2,3,0,1],[0,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,0,1],[0,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,0,1],[0,3,3,2],[1,0,1,1]],[[0,1,3,0],[0,3,3,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[0,3,4,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[0,3,3,3],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[0,3,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,4,0,1],[0,3,3,2],[0,2,1,0]],[[1,2,2,2],[2,3,0,1],[0,3,3,2],[0,2,1,0]],[[1,2,3,1],[2,3,0,1],[0,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,3,0,1],[0,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,3,0,1],[0,3,3,2],[0,2,1,0]],[[1,2,2,1],[2,4,0,1],[0,3,3,2],[0,2,0,1]],[[1,2,2,2],[2,3,0,1],[0,3,3,2],[0,2,0,1]],[[1,2,3,1],[2,3,0,1],[0,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,3,0,1],[0,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,3,0,1],[0,3,3,2],[0,2,0,1]],[[1,2,2,1],[2,4,0,1],[0,3,3,2],[0,1,2,0]],[[1,2,2,2],[2,3,0,1],[0,3,3,2],[0,1,2,0]],[[1,2,3,1],[2,3,0,1],[0,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,0,1],[0,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,0,1],[0,3,3,2],[0,1,2,0]],[[1,2,2,1],[2,4,0,1],[0,3,3,2],[0,1,1,1]],[[1,2,2,2],[2,3,0,1],[0,3,3,2],[0,1,1,1]],[[1,2,3,1],[2,3,0,1],[0,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,3,0,1],[0,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,3,0,1],[0,3,3,2],[0,1,1,1]],[[1,2,2,1],[3,3,0,1],[0,3,3,1],[1,2,1,0]],[[1,3,2,1],[2,3,0,1],[0,3,3,1],[1,2,1,0]],[[2,2,2,1],[2,3,0,1],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[3,3,0,1],[0,3,3,1],[1,2,0,1]],[[1,3,2,1],[2,3,0,1],[0,3,3,1],[1,2,0,1]],[[2,2,2,1],[2,3,0,1],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[3,3,0,1],[0,3,3,1],[1,1,2,0]],[[1,3,2,1],[2,3,0,1],[0,3,3,1],[1,1,2,0]],[[2,2,2,1],[2,3,0,1],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[2,4,0,1],[0,3,3,1],[1,0,2,1]],[[1,2,2,2],[2,3,0,1],[0,3,3,1],[1,0,2,1]],[[1,2,3,1],[2,3,0,1],[0,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,3,0,1],[0,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,3,0,1],[0,3,3,1],[1,0,2,1]],[[1,2,2,1],[2,4,0,1],[0,3,3,1],[0,2,1,1]],[[0,1,2,0],[1,0,1,2],[2,3,3,3],[1,2,2,1]],[[0,1,2,0],[1,0,1,2],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[1,0,1,2],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,0,1,2],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,0,1,2],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,0,2,2],[1,3,3,3],[1,2,2,1]],[[0,1,2,0],[1,0,2,2],[1,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,0,2,2],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,0,2,2],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,0,2,3],[2,3,2,2],[1,2,2,1]],[[0,1,2,0],[1,0,2,2],[2,3,2,3],[1,2,2,1]],[[0,1,2,0],[1,0,2,2],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[1,0,2,2],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,0,2,2],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,0,2,2],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,0,2,2],[2,3,4,1],[1,2,2,1]],[[0,1,2,0],[1,0,2,2],[2,3,3,1],[2,2,2,1]],[[0,1,2,0],[1,0,2,2],[2,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,0,2,2],[2,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,0,2,2],[2,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,0,2,2],[2,3,3,3],[0,2,2,1]],[[0,1,2,0],[1,0,2,2],[2,3,3,2],[0,2,3,1]],[[0,1,2,0],[1,0,2,2],[2,3,3,2],[0,2,2,2]],[[0,1,2,0],[1,0,2,3],[2,3,3,2],[1,2,1,1]],[[0,1,2,0],[1,0,2,2],[2,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,0,2,2],[2,3,3,3],[1,2,1,1]],[[0,1,2,0],[1,0,2,2],[2,3,3,2],[1,2,1,2]],[[0,1,2,0],[1,0,2,3],[2,3,3,2],[1,2,2,0]],[[0,1,2,0],[1,0,2,2],[2,3,4,2],[1,2,2,0]],[[0,1,2,0],[1,0,2,2],[2,3,3,3],[1,2,2,0]],[[0,1,2,0],[1,0,2,2],[2,3,3,2],[2,2,2,0]],[[0,1,2,0],[1,0,2,2],[2,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,0,2,2],[2,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,0,3,0],[2,3,4,2],[1,2,2,1]],[[0,1,2,0],[1,0,3,0],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[1,0,3,0],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,0,3,0],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,0,3,0],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,0,3,1],[2,3,2,3],[1,2,2,1]],[[0,1,2,0],[1,0,3,1],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[1,0,3,1],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,0,3,1],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,0,3,1],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,0,3,1],[2,3,4,1],[1,2,2,1]],[[0,1,2,0],[1,0,3,1],[2,3,3,1],[2,2,2,1]],[[0,1,2,0],[1,0,3,1],[2,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,0,3,1],[2,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,0,3,1],[2,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,0,3,1],[2,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,0,3,1],[2,3,3,3],[1,2,1,1]],[[0,1,2,0],[1,0,3,1],[2,3,3,2],[1,2,1,2]],[[0,1,2,0],[1,0,3,1],[2,3,4,2],[1,2,2,0]],[[0,1,2,0],[1,0,3,1],[2,3,3,3],[1,2,2,0]],[[0,1,2,0],[1,0,3,1],[2,3,3,2],[2,2,2,0]],[[0,1,2,0],[1,0,3,1],[2,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,0,3,1],[2,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,0,3,2],[0,3,3,3],[1,2,2,1]],[[0,1,2,0],[1,0,3,2],[0,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,0,3,2],[0,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,0,3,2],[1,2,3,3],[1,2,2,1]],[[0,1,2,0],[1,0,3,2],[1,2,3,2],[1,2,3,1]],[[0,1,2,0],[1,0,3,2],[1,2,3,2],[1,2,2,2]],[[0,1,2,0],[1,0,3,3],[1,3,2,2],[1,2,2,1]],[[0,1,2,0],[1,0,3,2],[1,3,2,3],[1,2,2,1]],[[0,1,2,0],[1,0,3,2],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[1,0,3,2],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,0,3,2],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,0,3,2],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,0,3,2],[1,3,4,1],[1,2,2,1]],[[0,1,2,0],[1,0,3,2],[1,3,3,1],[2,2,2,1]],[[0,1,2,0],[1,0,3,2],[1,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,0,3,2],[1,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,0,3,2],[1,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,0,3,3],[1,3,3,2],[1,2,1,1]],[[0,1,2,0],[1,0,3,2],[1,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,0,3,2],[1,3,3,3],[1,2,1,1]],[[0,1,2,0],[1,0,3,2],[1,3,3,2],[1,2,1,2]],[[0,1,2,0],[1,0,3,3],[1,3,3,2],[1,2,2,0]],[[0,1,2,0],[1,0,3,2],[1,3,4,2],[1,2,2,0]],[[0,1,2,0],[1,0,3,2],[1,3,3,3],[1,2,2,0]],[[0,1,2,0],[1,0,3,2],[1,3,3,2],[2,2,2,0]],[[0,1,2,0],[1,0,3,2],[1,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,0,3,2],[1,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,0,3,2],[2,2,3,3],[0,2,2,1]],[[0,1,2,0],[1,0,3,2],[2,2,3,2],[0,2,3,1]],[[0,1,2,0],[1,0,3,2],[2,2,3,2],[0,2,2,2]],[[0,1,2,0],[1,0,3,3],[2,3,2,2],[0,2,2,1]],[[0,1,2,0],[1,0,3,2],[2,3,2,3],[0,2,2,1]],[[0,1,2,0],[1,0,3,2],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[1,0,3,2],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[1,0,3,2],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[1,0,3,2],[2,3,4,0],[1,2,2,1]],[[0,1,2,0],[1,0,3,2],[2,3,3,0],[2,2,2,1]],[[0,1,2,0],[1,0,3,2],[2,3,3,0],[1,3,2,1]],[[0,1,2,0],[1,0,3,2],[2,3,3,0],[1,2,3,1]],[[0,1,2,0],[1,0,3,2],[2,3,3,0],[1,2,2,2]],[[0,1,2,0],[1,0,3,2],[2,3,4,1],[0,2,2,1]],[[0,1,2,0],[1,0,3,2],[2,3,3,1],[0,3,2,1]],[[0,1,2,0],[1,0,3,2],[2,3,3,1],[0,2,3,1]],[[0,1,2,0],[1,0,3,2],[2,3,3,1],[0,2,2,2]],[[0,1,2,0],[1,0,3,2],[2,3,4,1],[1,2,2,0]],[[0,1,2,0],[1,0,3,2],[2,3,3,1],[2,2,2,0]],[[0,1,2,0],[1,0,3,2],[2,3,3,1],[1,3,2,0]],[[0,1,2,0],[1,0,3,2],[2,3,3,1],[1,2,3,0]],[[0,1,2,0],[1,0,3,3],[2,3,3,2],[0,2,1,1]],[[0,1,2,0],[1,0,3,2],[2,3,4,2],[0,2,1,1]],[[0,1,2,0],[1,0,3,2],[2,3,3,3],[0,2,1,1]],[[0,1,2,0],[1,0,3,2],[2,3,3,2],[0,2,1,2]],[[0,1,2,0],[1,0,3,3],[2,3,3,2],[0,2,2,0]],[[0,1,2,0],[1,0,3,2],[2,3,4,2],[0,2,2,0]],[[0,1,2,0],[1,0,3,2],[2,3,3,3],[0,2,2,0]],[[0,1,2,0],[1,0,3,2],[2,3,3,2],[0,3,2,0]],[[0,1,2,0],[1,0,3,2],[2,3,3,2],[0,2,3,0]],[[1,2,2,2],[2,3,0,1],[0,3,3,1],[0,2,1,1]],[[1,2,3,1],[2,3,0,1],[0,3,3,1],[0,2,1,1]],[[1,3,2,1],[2,3,0,1],[0,3,3,1],[0,2,1,1]],[[2,2,2,1],[2,3,0,1],[0,3,3,1],[0,2,1,1]],[[1,2,2,1],[2,4,0,1],[0,3,3,1],[0,1,2,1]],[[1,2,2,2],[2,3,0,1],[0,3,3,1],[0,1,2,1]],[[1,2,3,1],[2,3,0,1],[0,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,1,0,2],[2,3,3,3],[1,2,2,1]],[[0,1,2,0],[1,1,0,2],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[1,1,0,2],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,1,0,2],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,1,0,2],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,1,1,2],[1,3,3,3],[1,2,2,1]],[[0,1,2,0],[1,1,1,2],[1,3,3,2],[2,2,2,1]],[[0,1,2,0],[1,1,1,2],[1,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,1,1,2],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,1,1,2],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,1,1,2],[2,3,3,3],[0,2,2,1]],[[0,1,2,0],[1,1,1,2],[2,3,3,2],[0,3,2,1]],[[0,1,2,0],[1,1,1,2],[2,3,3,2],[0,2,3,1]],[[0,1,2,0],[1,1,1,2],[2,3,3,2],[0,2,2,2]],[[0,1,2,0],[1,1,2,3],[1,3,2,2],[1,2,2,1]],[[0,1,2,0],[1,1,2,2],[1,3,2,3],[1,2,2,1]],[[0,1,2,0],[1,1,2,2],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[1,1,2,2],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,1,2,2],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,1,2,2],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,1,2,2],[1,3,4,1],[1,2,2,1]],[[0,1,2,0],[1,1,2,2],[1,3,3,1],[2,2,2,1]],[[0,1,2,0],[1,1,2,2],[1,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,1,2,2],[1,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,1,2,2],[1,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,1,2,3],[1,3,3,2],[1,2,1,1]],[[0,1,2,0],[1,1,2,2],[1,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,1,2,2],[1,3,3,3],[1,2,1,1]],[[0,1,2,0],[1,1,2,2],[1,3,3,2],[1,2,1,2]],[[0,1,2,0],[1,1,2,3],[1,3,3,2],[1,2,2,0]],[[0,1,2,0],[1,1,2,2],[1,3,4,2],[1,2,2,0]],[[0,1,2,0],[1,1,2,2],[1,3,3,3],[1,2,2,0]],[[0,1,2,0],[1,1,2,2],[1,3,3,2],[2,2,2,0]],[[0,1,2,0],[1,1,2,2],[1,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,1,2,2],[1,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,1,2,3],[2,3,2,2],[0,2,2,1]],[[0,1,2,0],[1,1,2,2],[2,3,2,3],[0,2,2,1]],[[0,1,2,0],[1,1,2,2],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[1,1,2,2],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[1,1,2,2],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[1,1,2,2],[2,3,4,1],[0,2,2,1]],[[0,1,2,0],[1,1,2,2],[2,3,3,1],[0,3,2,1]],[[0,1,2,0],[1,1,2,2],[2,3,3,1],[0,2,3,1]],[[0,1,2,0],[1,1,2,2],[2,3,3,1],[0,2,2,2]],[[0,1,2,0],[1,1,2,3],[2,3,3,2],[0,2,1,1]],[[0,1,2,0],[1,1,2,2],[2,3,4,2],[0,2,1,1]],[[0,1,2,0],[1,1,2,2],[2,3,3,3],[0,2,1,1]],[[0,1,2,0],[1,1,2,2],[2,3,3,2],[0,2,1,2]],[[0,1,2,0],[1,1,2,3],[2,3,3,2],[0,2,2,0]],[[0,1,2,0],[1,1,2,2],[2,3,4,2],[0,2,2,0]],[[0,1,2,0],[1,1,2,2],[2,3,3,3],[0,2,2,0]],[[0,1,2,0],[1,1,2,2],[2,3,3,2],[0,3,2,0]],[[0,1,2,0],[1,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,3,2,1],[2,3,0,1],[0,3,3,1],[0,1,2,1]],[[2,2,2,1],[2,3,0,1],[0,3,3,1],[0,1,2,1]],[[1,2,2,1],[3,3,0,1],[0,3,3,0],[1,2,1,1]],[[1,3,2,1],[2,3,0,1],[0,3,3,0],[1,2,1,1]],[[0,1,2,0],[1,1,3,0],[1,3,4,2],[1,2,2,1]],[[0,1,2,0],[1,1,3,0],[1,3,3,2],[2,2,2,1]],[[0,1,2,0],[1,1,3,0],[1,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,1,3,0],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,1,3,0],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,1,3,0],[2,3,4,2],[0,2,2,1]],[[0,1,2,0],[1,1,3,0],[2,3,3,2],[0,3,2,1]],[[0,1,2,0],[1,1,3,0],[2,3,3,2],[0,2,3,1]],[[0,1,2,0],[1,1,3,0],[2,3,3,2],[0,2,2,2]],[[0,1,2,0],[1,1,3,1],[1,3,2,3],[1,2,2,1]],[[0,1,2,0],[1,1,3,1],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[1,1,3,1],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,1,3,1],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,1,3,1],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,1,3,1],[1,3,4,1],[1,2,2,1]],[[0,1,2,0],[1,1,3,1],[1,3,3,1],[2,2,2,1]],[[0,1,2,0],[1,1,3,1],[1,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,1,3,1],[1,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,1,3,1],[1,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,1,3,1],[1,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,1,3,1],[1,3,3,3],[1,2,1,1]],[[0,1,2,0],[1,1,3,1],[1,3,3,2],[1,2,1,2]],[[0,1,2,0],[1,1,3,1],[1,3,4,2],[1,2,2,0]],[[0,1,2,0],[1,1,3,1],[1,3,3,3],[1,2,2,0]],[[0,1,2,0],[1,1,3,1],[1,3,3,2],[2,2,2,0]],[[0,1,2,0],[1,1,3,1],[1,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,1,3,1],[1,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,1,3,1],[2,3,2,3],[0,2,2,1]],[[0,1,2,0],[1,1,3,1],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[1,1,3,1],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[1,1,3,1],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[1,1,3,1],[2,3,4,1],[0,2,2,1]],[[0,1,2,0],[1,1,3,1],[2,3,3,1],[0,3,2,1]],[[0,1,2,0],[1,1,3,1],[2,3,3,1],[0,2,3,1]],[[0,1,2,0],[1,1,3,1],[2,3,3,1],[0,2,2,2]],[[0,1,2,0],[1,1,3,1],[2,3,4,2],[0,2,1,1]],[[0,1,2,0],[1,1,3,1],[2,3,3,3],[0,2,1,1]],[[0,1,2,0],[1,1,3,1],[2,3,3,2],[0,2,1,2]],[[0,1,2,0],[1,1,3,1],[2,3,4,2],[0,2,2,0]],[[0,1,2,0],[1,1,3,1],[2,3,3,3],[0,2,2,0]],[[0,1,2,0],[1,1,3,1],[2,3,3,2],[0,3,2,0]],[[0,1,2,0],[1,1,3,1],[2,3,3,2],[0,2,3,0]],[[2,2,2,1],[2,3,0,1],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[3,3,0,1],[0,3,3,0],[1,1,2,1]],[[1,3,2,1],[2,3,0,1],[0,3,3,0],[1,1,2,1]],[[2,2,2,1],[2,3,0,1],[0,3,3,0],[1,1,2,1]],[[0,1,2,0],[1,1,3,3],[0,2,3,2],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[0,2,3,3],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[0,2,3,2],[1,2,3,1]],[[0,1,2,0],[1,1,3,2],[0,2,3,2],[1,2,2,2]],[[0,1,2,0],[1,1,3,3],[0,3,2,2],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[0,3,2,3],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[0,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,1,3,2],[0,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,1,3,2],[0,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,1,3,2],[0,3,4,1],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[0,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,1,3,2],[0,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,1,3,2],[0,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,1,3,3],[0,3,3,2],[1,2,1,1]],[[0,1,2,0],[1,1,3,2],[0,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,1,3,2],[0,3,3,3],[1,2,1,1]],[[0,1,2,0],[1,1,3,2],[0,3,3,2],[1,2,1,2]],[[0,1,2,0],[1,1,3,3],[0,3,3,2],[1,2,2,0]],[[0,1,2,0],[1,1,3,2],[0,3,4,2],[1,2,2,0]],[[0,1,2,0],[1,1,3,2],[0,3,3,3],[1,2,2,0]],[[0,1,2,0],[1,1,3,2],[0,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,1,3,2],[0,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,1,3,3],[1,1,3,2],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[1,1,3,3],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[1,1,3,2],[1,2,3,1]],[[0,1,2,0],[1,1,3,2],[1,1,3,2],[1,2,2,2]],[[0,1,2,0],[1,1,3,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[1,1,3,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[1,1,3,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[1,1,3,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,0],[1,1,3,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[1,1,3,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[1,1,3,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[1,1,3,2],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[1,1,3,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[1,1,3,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[1,1,3,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[1,1,3,2],[1,2,3,2],[1,2,1,2]],[[0,1,2,0],[1,1,3,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[1,1,3,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[1,1,3,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[1,1,3,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[1,1,3,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[1,1,3,2],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[1,1,3,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,0],[1,1,3,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[1,1,3,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[1,1,3,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[1,1,3,2],[1,3,4,0],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,0],[2,2,2,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,0],[1,3,2,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,0],[1,2,3,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,0],[1,2,2,2]],[[0,1,2,0],[1,1,3,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[1,1,3,2],[1,3,4,1],[1,2,2,0]],[[0,1,2,0],[1,1,3,2],[1,3,3,1],[2,2,2,0]],[[0,1,2,0],[1,1,3,2],[1,3,3,1],[1,3,2,0]],[[0,1,2,0],[1,1,3,2],[1,3,3,1],[1,2,3,0]],[[0,1,2,0],[1,1,3,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[1,1,3,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,2],[1,0,2,2]],[[0,1,2,0],[1,1,3,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[1,1,3,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,2],[1,1,1,2]],[[0,1,2,0],[1,1,3,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[1,1,3,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[1,1,3,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[1,1,3,2],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[1,1,3,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[1,1,3,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[1,1,3,2],[1,3,3,2],[1,2,0,2]],[[0,1,2,0],[1,1,3,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[1,1,3,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[1,1,3,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,0],[1,1,3,3],[2,0,3,2],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,0,3,3],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,0,3,2],[1,2,3,1]],[[0,1,2,0],[1,1,3,2],[2,0,3,2],[1,2,2,2]],[[0,1,2,0],[1,1,3,3],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,1,2,3],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,1,2,2],[2,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,1,2,2],[1,3,2,1]],[[0,1,2,0],[1,1,3,2],[2,1,2,2],[1,2,3,1]],[[0,1,2,0],[1,1,3,2],[2,1,2,2],[1,2,2,2]],[[0,1,2,0],[1,1,3,2],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[1,1,3,2],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[1,1,3,2],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[1,1,3,3],[2,1,3,2],[0,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,1,3,3],[0,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,1,3,2],[0,2,3,1]],[[0,1,2,0],[1,1,3,2],[2,1,3,2],[0,2,2,2]],[[0,1,2,0],[1,1,3,3],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[1,1,3,2],[2,1,4,2],[1,2,1,1]],[[0,1,2,0],[1,1,3,2],[2,1,3,3],[1,2,1,1]],[[0,1,2,0],[1,1,3,2],[2,1,3,2],[1,2,1,2]],[[0,1,2,0],[1,1,3,3],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,1,3,2],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[1,1,3,2],[2,1,3,3],[1,2,2,0]],[[0,1,2,0],[1,1,3,2],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[1,1,3,2],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[1,1,3,2],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[1,1,3,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[1,1,3,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[1,1,3,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,0],[1,1,3,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[1,1,3,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[1,1,3,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[1,1,3,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[1,1,3,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[1,1,3,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[1,1,3,2],[2,2,3,2],[0,2,1,2]],[[0,1,2,0],[1,1,3,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[1,1,3,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[1,1,3,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[1,1,3,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[1,1,3,2],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[1,1,3,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,0],[1,1,3,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[1,1,3,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[1,1,3,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[1,1,3,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,0],[1,1,3,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[1,1,3,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[1,1,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,4,0,1],[0,3,2,2],[0,2,2,0]],[[1,2,2,2],[2,3,0,1],[0,3,2,2],[0,2,2,0]],[[1,2,3,1],[2,3,0,1],[0,3,2,2],[0,2,2,0]],[[1,3,2,1],[2,3,0,1],[0,3,2,2],[0,2,2,0]],[[0,1,2,0],[1,1,3,2],[2,3,4,0],[0,2,2,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,0],[0,3,2,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,0],[0,2,3,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,0],[0,2,2,2]],[[0,1,2,0],[1,1,3,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,0],[1,1,3,2],[2,3,4,1],[0,2,2,0]],[[0,1,2,0],[1,1,3,2],[2,3,3,1],[0,3,2,0]],[[0,1,2,0],[1,1,3,2],[2,3,3,1],[0,2,3,0]],[[0,1,2,0],[1,1,3,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,1],[1,0,2,2]],[[2,2,2,1],[2,3,0,1],[0,3,2,2],[0,2,2,0]],[[0,1,2,0],[1,1,3,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[1,1,3,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,2],[0,0,2,2]],[[0,1,2,0],[1,1,3,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,1,3,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,2],[0,1,1,2]],[[0,1,2,0],[1,1,3,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,1,3,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[1,1,3,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[1,1,3,2],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[1,1,3,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,1,3,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,2],[0,2,0,2]],[[0,1,2,0],[1,1,3,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,1,3,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[1,1,3,2],[2,3,3,3],[0,2,1,0]],[[0,1,2,0],[1,1,3,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,1,3,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,2],[1,0,1,2]],[[0,1,2,0],[1,1,3,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,1,3,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[1,1,3,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[1,1,3,2],[2,3,3,2],[1,0,3,0]],[[0,1,2,0],[1,1,3,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,1,3,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[1,1,3,2],[2,3,3,2],[1,1,0,2]],[[0,1,2,0],[1,1,3,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,1,3,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[1,1,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,3,0,1],[0,3,2,1],[1,2,2,0]],[[1,3,2,1],[2,3,0,1],[0,3,2,1],[1,2,2,0]],[[2,2,2,1],[2,3,0,1],[0,3,2,1],[1,2,2,0]],[[1,2,2,1],[2,4,0,1],[0,3,2,1],[0,2,2,1]],[[1,2,2,2],[2,3,0,1],[0,3,2,1],[0,2,2,1]],[[1,2,3,1],[2,3,0,1],[0,3,2,1],[0,2,2,1]],[[1,3,2,1],[2,3,0,1],[0,3,2,1],[0,2,2,1]],[[2,2,2,1],[2,3,0,1],[0,3,2,1],[0,2,2,1]],[[1,2,2,1],[3,3,0,1],[0,3,2,0],[1,2,2,1]],[[1,3,2,1],[2,3,0,1],[0,3,2,0],[1,2,2,1]],[[2,2,2,1],[2,3,0,1],[0,3,2,0],[1,2,2,1]],[[0,1,2,0],[1,2,0,2],[1,3,3,3],[1,2,2,1]],[[0,1,2,0],[1,2,0,2],[1,3,3,2],[2,2,2,1]],[[0,1,2,0],[1,2,0,2],[1,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,2,0,2],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,0,2],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,0,2],[2,3,3,3],[0,2,2,1]],[[0,1,2,0],[1,2,0,2],[2,3,3,2],[0,3,2,1]],[[0,1,2,0],[1,2,0,2],[2,3,3,2],[0,2,3,1]],[[0,1,2,0],[1,2,0,2],[2,3,3,2],[0,2,2,2]],[[0,1,2,0],[1,2,1,2],[0,3,3,3],[1,2,2,1]],[[0,1,2,0],[1,2,1,2],[0,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,2,1,2],[0,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,1,2],[0,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,1,2],[1,2,3,3],[1,2,2,1]],[[0,1,2,0],[1,2,1,2],[1,2,3,2],[2,2,2,1]],[[0,1,2,0],[1,2,1,2],[1,2,3,2],[1,3,2,1]],[[0,1,2,0],[1,2,1,2],[1,2,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,1,2],[1,2,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,1,2],[1,3,3,3],[1,1,2,1]],[[0,1,2,0],[1,2,1,2],[1,3,3,2],[1,1,3,1]],[[0,1,2,0],[1,2,1,2],[1,3,3,2],[1,1,2,2]],[[0,1,2,0],[1,2,1,2],[2,1,3,3],[1,2,2,1]],[[0,1,2,0],[1,2,1,2],[2,1,3,2],[2,2,2,1]],[[0,1,2,0],[1,2,1,2],[2,1,3,2],[1,3,2,1]],[[0,1,2,0],[1,2,1,2],[2,1,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,1,2],[2,1,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,1,2],[2,2,3,3],[0,2,2,1]],[[0,1,2,0],[1,2,1,2],[2,2,3,2],[0,3,2,1]],[[0,1,2,0],[1,2,1,2],[2,2,3,2],[0,2,3,1]],[[0,1,2,0],[1,2,1,2],[2,2,3,2],[0,2,2,2]],[[0,1,2,0],[1,2,1,2],[2,3,3,3],[0,1,2,1]],[[0,1,2,0],[1,2,1,2],[2,3,3,2],[0,1,3,1]],[[0,1,2,0],[1,2,1,2],[2,3,3,2],[0,1,2,2]],[[0,1,2,0],[1,2,1,2],[2,3,3,3],[1,0,2,1]],[[0,1,2,0],[1,2,1,2],[2,3,3,2],[1,0,3,1]],[[0,1,2,0],[1,2,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,1],[2,4,0,1],[0,3,1,2],[0,2,2,1]],[[1,2,2,2],[2,3,0,1],[0,3,1,2],[0,2,2,1]],[[1,2,3,1],[2,3,0,1],[0,3,1,2],[0,2,2,1]],[[0,1,2,0],[1,2,2,3],[0,2,3,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[0,2,3,3],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[0,2,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[0,2,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,2,3],[0,3,2,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[0,3,2,3],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[0,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,2,2,2],[0,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[0,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,2,2,2],[0,3,4,1],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[0,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,2,2,2],[0,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[0,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,2,2,3],[0,3,3,2],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[0,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[0,3,3,3],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[0,3,3,2],[1,2,1,2]],[[0,1,2,0],[1,2,2,3],[0,3,3,2],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[0,3,4,2],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[0,3,3,3],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[0,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,2,2,2],[0,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,2,2,3],[1,1,3,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,1,3,3],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,1,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[1,1,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,2,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[1,2,2,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,0],[1,2,2,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[1,2,2,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[1,2,2,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[1,2,3,2],[1,2,1,2]],[[0,1,2,0],[1,2,2,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[1,2,2,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[1,2,2,2],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[1,2,2,3],[1,3,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,4,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,1,3],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,1,2],[2,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,1,2],[1,3,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,1,2],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[1,3,1,2],[1,2,2,2]],[[0,1,2,0],[1,2,2,2],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[1,2,2,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[1,2,2,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[1,2,2,2],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[1,2,2,2],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[1,2,2,2],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[1,2,2,2],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[1,2,2,2],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,1],[1,3,1,1]],[[0,1,2,0],[1,2,2,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,2],[1,0,2,2]],[[0,1,2,0],[1,2,2,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[1,2,2,2],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[1,2,2,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,2],[1,1,1,2]],[[0,1,2,0],[1,2,2,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[1,2,2,2],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[1,2,2,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[1,2,2,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[1,2,2,2],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[1,2,2,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[1,2,2,2],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[1,2,2,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[1,2,2,2],[1,3,3,2],[1,2,0,2]],[[0,1,2,0],[1,2,2,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[1,2,2,2],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[1,2,2,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[1,2,2,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,0],[1,2,2,2],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[1,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,3,2,1],[2,3,0,1],[0,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,3,0,1],[0,3,1,2],[0,2,2,1]],[[1,2,2,1],[3,3,0,1],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[2,3,0,1],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[2,3,0,1],[0,3,0,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,3],[2,0,3,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,0,3,3],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,0,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[2,0,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,2,3],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[3,1,2,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,1,2,3],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,1,2,2],[2,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,1,2,2],[1,3,2,1]],[[0,1,2,0],[1,2,2,2],[2,1,2,2],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[2,1,2,2],[1,2,2,2]],[[0,1,2,0],[1,2,2,2],[3,1,3,1],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[1,2,2,2],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[1,2,2,3],[2,1,3,2],[0,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,1,3,3],[0,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,1,3,2],[0,2,3,1]],[[0,1,2,0],[1,2,2,2],[2,1,3,2],[0,2,2,2]],[[0,1,2,0],[1,2,2,3],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[2,1,4,2],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[2,1,3,3],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[2,1,3,2],[1,2,1,2]],[[0,1,2,0],[1,2,2,3],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[3,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[2,1,3,3],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[1,2,2,2],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[1,2,2,2],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[1,2,2,3],[2,2,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[3,2,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,1,3],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,1,2],[2,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,1,2],[1,3,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,1,2],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[2,2,1,2],[1,2,2,2]],[[0,1,2,0],[1,2,2,2],[3,2,2,1],[1,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,2,1],[2,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,2,1],[1,3,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,2,1],[1,2,3,1]],[[0,1,2,0],[1,2,2,2],[2,2,2,1],[1,2,2,2]],[[0,1,2,0],[1,2,2,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[1,2,2,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,0],[1,2,2,2],[3,2,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,2,2],[2,2,2,2],[2,2,2,0]],[[0,1,2,0],[1,2,2,2],[2,2,2,2],[1,3,2,0]],[[0,1,2,0],[1,2,2,2],[2,2,2,2],[1,2,3,0]],[[0,1,2,0],[1,2,2,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[1,2,2,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[1,2,2,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[1,2,2,2],[3,2,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,2,2],[2,2,3,1],[2,2,1,1]],[[0,1,2,0],[1,2,2,2],[2,2,3,1],[1,3,1,1]],[[0,1,2,0],[1,2,2,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[1,2,2,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[1,2,2,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[1,2,2,2],[2,2,3,2],[0,2,1,2]],[[0,1,2,0],[1,2,2,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[1,2,2,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[1,2,2,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[1,2,2,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[1,2,2,2],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[1,2,2,2],[3,2,3,2],[1,2,0,1]],[[0,1,2,0],[1,2,2,2],[2,2,3,2],[2,2,0,1]],[[0,1,2,0],[1,2,2,2],[2,2,3,2],[1,3,0,1]],[[0,1,2,0],[1,2,2,2],[3,2,3,2],[1,2,1,0]],[[0,1,2,0],[1,2,2,2],[2,2,3,2],[2,2,1,0]],[[0,1,2,0],[1,2,2,2],[2,2,3,2],[1,3,1,0]],[[0,1,2,0],[1,2,2,3],[2,3,1,2],[0,2,2,1]],[[0,1,2,0],[1,2,2,2],[3,3,1,2],[0,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,4,1,2],[0,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,1,3],[0,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,1,2],[0,3,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,1,2],[0,2,3,1]],[[0,1,2,0],[1,2,2,2],[2,3,1,2],[0,2,2,2]],[[0,1,2,0],[1,2,2,2],[3,3,1,2],[1,1,2,1]],[[0,1,2,0],[1,2,2,2],[2,4,1,2],[1,1,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,1,2],[2,1,2,1]],[[0,1,2,0],[1,2,2,2],[3,3,2,1],[0,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[1,2,2,2],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[1,2,2,2],[3,3,2,1],[1,1,2,1]],[[0,1,2,0],[1,2,2,2],[2,4,2,1],[1,1,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,2,1],[2,1,2,1]],[[0,1,2,0],[1,2,2,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[1,2,2,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[1,2,2,2],[3,3,2,2],[0,2,2,0]],[[0,1,2,0],[1,2,2,2],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[1,2,2,2],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[1,2,2,2],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[1,2,2,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[1,2,2,2],[2,3,2,2],[1,0,2,2]],[[0,1,2,0],[1,2,2,2],[3,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,2,2,2],[2,4,2,2],[1,1,2,0]],[[0,1,2,0],[1,2,2,2],[2,3,2,2],[2,1,2,0]],[[0,1,2,0],[1,2,2,2],[3,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,2,2,2],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,0],[1,2,2,2],[3,3,3,1],[0,2,1,1]],[[0,1,2,0],[1,2,2,2],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[1,2,2,2],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,1],[0,3,1,1]],[[0,1,2,0],[1,2,2,2],[3,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,2,2,2],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,1],[2,0,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,1],[1,0,2,2]],[[0,1,2,0],[1,2,2,2],[3,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,2,2,2],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[1,2,2,2],[2,3,4,1],[1,1,1,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,1],[2,1,1,1]],[[0,1,2,0],[1,2,2,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[0,0,2,2]],[[0,1,2,0],[1,2,2,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,2,2,2],[3,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,2,2,2],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[1,2,2,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[0,1,1,2]],[[0,1,2,0],[1,2,2,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,2,2,2],[3,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,2,2,2],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[1,2,2,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[1,2,2,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[1,2,2,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,2,2,2],[3,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,2,2,2],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[1,2,2,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[0,2,0,2]],[[0,1,2,0],[1,2,2,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,2,2,2],[3,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,2,2,2],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[1,2,2,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[1,2,2,2],[2,3,3,3],[0,2,1,0]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[0,3,1,0]],[[0,1,2,0],[1,2,2,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,2,2,2],[3,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,2,2,2],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[1,2,2,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[2,0,1,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[1,0,1,2]],[[0,1,2,0],[1,2,2,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,2,2,2],[3,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,2,2,2],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[1,2,2,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[1,2,2,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[2,0,2,0]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[1,0,3,0]],[[0,1,2,0],[1,2,2,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,2,2,2],[3,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,2,2,2],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[1,2,2,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[2,1,0,1]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[1,1,0,2]],[[0,1,2,0],[1,2,2,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,2,2,2],[3,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,2,2,2],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[1,2,2,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[1,2,2,2],[2,3,3,3],[1,1,1,0]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[2,1,1,0]],[[0,1,2,0],[1,2,2,2],[3,3,3,2],[1,2,0,0]],[[0,1,2,0],[1,2,2,2],[2,4,3,2],[1,2,0,0]],[[0,1,2,0],[1,2,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,3,0,0],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[3,3,0,0],[2,3,3,2],[1,0,1,0]],[[1,3,2,1],[2,3,0,0],[2,3,3,2],[1,0,1,0]],[[2,2,2,1],[2,3,0,0],[2,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,3,0,0],[3,3,3,2],[1,0,0,1]],[[1,2,2,1],[3,3,0,0],[2,3,3,2],[1,0,0,1]],[[1,3,2,1],[2,3,0,0],[2,3,3,2],[1,0,0,1]],[[2,2,2,1],[2,3,0,0],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[1,2,3,0],[0,3,4,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,0],[0,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,0],[0,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,0],[0,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,3,0],[1,2,4,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,0],[1,2,3,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,0],[1,2,3,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,0],[1,2,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,0],[1,2,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,3,0],[1,4,2,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,0],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,0],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,0],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,0],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,2,3,0],[1,4,3,2],[1,1,2,1]],[[0,1,2,0],[1,2,3,0],[1,3,4,2],[1,1,2,1]],[[0,1,2,0],[1,2,3,0],[1,3,3,2],[1,1,3,1]],[[0,1,2,0],[1,2,3,0],[1,3,3,2],[1,1,2,2]],[[0,1,2,0],[1,2,3,0],[1,4,3,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,0],[1,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,0],[1,3,3,2],[2,2,1,1]],[[0,1,2,0],[1,2,3,0],[1,3,3,2],[1,3,1,1]],[[0,1,2,0],[1,2,3,0],[3,1,3,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,0],[2,1,4,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,0],[2,1,3,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,0],[2,1,3,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,0],[2,1,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,0],[2,1,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,3,0],[3,2,2,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,0],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,0],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,0],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,0],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[1,2,3,0],[2,2,4,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,0],[2,2,3,2],[0,3,2,1]],[[0,1,2,0],[1,2,3,0],[2,2,3,2],[0,2,3,1]],[[0,1,2,0],[1,2,3,0],[2,2,3,2],[0,2,2,2]],[[0,1,2,0],[1,2,3,0],[3,2,3,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,0],[2,2,3,2],[2,2,1,1]],[[0,1,2,0],[1,2,3,0],[2,2,3,2],[1,3,1,1]],[[0,1,2,0],[1,2,3,0],[3,3,2,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,0],[2,4,2,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,0],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[1,2,3,0],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[1,2,3,0],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[1,2,3,0],[3,3,2,2],[1,1,2,1]],[[0,1,2,0],[1,2,3,0],[2,4,2,2],[1,1,2,1]],[[0,1,2,0],[1,2,3,0],[2,3,2,2],[2,1,2,1]],[[0,1,2,0],[1,2,3,0],[3,3,3,2],[0,1,2,1]],[[0,1,2,0],[1,2,3,0],[2,4,3,2],[0,1,2,1]],[[0,1,2,0],[1,2,3,0],[2,3,4,2],[0,1,2,1]],[[0,1,2,0],[1,2,3,0],[2,3,3,2],[0,1,3,1]],[[0,1,2,0],[1,2,3,0],[2,3,3,2],[0,1,2,2]],[[0,1,2,0],[1,2,3,0],[3,3,3,2],[0,2,1,1]],[[0,1,2,0],[1,2,3,0],[2,4,3,2],[0,2,1,1]],[[0,1,2,0],[1,2,3,0],[2,3,4,2],[0,2,1,1]],[[0,1,2,0],[1,2,3,0],[2,3,3,2],[0,3,1,1]],[[0,1,2,0],[1,2,3,0],[3,3,3,2],[1,0,2,1]],[[0,1,2,0],[1,2,3,0],[2,4,3,2],[1,0,2,1]],[[0,1,2,0],[1,2,3,0],[2,3,4,2],[1,0,2,1]],[[0,1,2,0],[1,2,3,0],[2,3,3,2],[2,0,2,1]],[[0,1,2,0],[1,2,3,0],[2,3,3,2],[1,0,3,1]],[[0,1,2,0],[1,2,3,0],[2,3,3,2],[1,0,2,2]],[[0,1,2,0],[1,2,3,0],[3,3,3,2],[1,1,1,1]],[[0,1,2,0],[1,2,3,0],[2,4,3,2],[1,1,1,1]],[[0,1,2,0],[1,2,3,0],[2,3,4,2],[1,1,1,1]],[[0,1,2,0],[1,2,3,0],[2,3,3,2],[2,1,1,1]],[[0,1,2,0],[1,2,3,1],[0,2,3,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[0,2,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[0,2,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,3,1],[0,3,2,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[0,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[0,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[0,3,2,2],[1,2,2,2]],[[0,1,3,0],[1,2,3,1],[0,3,3,1],[1,2,2,1]],[[0,1,2,0],[1,2,4,1],[0,3,3,1],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[0,3,4,1],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[0,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[0,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[0,3,3,1],[1,2,2,2]],[[0,1,3,0],[1,2,3,1],[0,3,3,2],[1,2,1,1]],[[0,1,2,0],[1,2,4,1],[0,3,3,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[0,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[0,3,3,3],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[0,3,3,2],[1,2,1,2]],[[0,1,3,0],[1,2,3,1],[0,3,3,2],[1,2,2,0]],[[0,1,2,0],[1,2,4,1],[0,3,3,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[0,3,4,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[0,3,3,3],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[0,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,2,3,1],[0,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,2,3,1],[1,1,3,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,1,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[1,1,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,3,1],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[1,2,2,2],[1,2,2,2]],[[0,1,3,0],[1,2,3,1],[1,2,3,1],[1,2,2,1]],[[0,1,2,0],[1,2,4,1],[1,2,3,1],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[1,2,3,1],[1,2,2,2]],[[0,1,3,0],[1,2,3,1],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[1,2,4,1],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[1,2,3,2],[1,2,1,2]],[[0,1,3,0],[1,2,3,1],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[1,2,4,1],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[1,2,3,1],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[1,2,3,1],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[1,2,3,1],[1,4,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,1,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,1,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,1,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,1,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[1,3,1,2],[1,2,2,2]],[[0,1,2,0],[1,2,3,1],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[1,2,3,1],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[1,2,3,1],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[1,2,3,1],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[1,2,3,1],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[1,2,3,1],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[1,2,3,1],[1,4,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,0],[2,2,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,0],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,0],[1,2,3,1]],[[0,1,3,0],[1,2,3,1],[1,3,3,1],[1,1,2,1]],[[0,1,2,0],[1,2,4,1],[1,3,3,1],[1,1,2,1]],[[0,1,2,0],[1,2,3,1],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,1],[1,1,2,2]],[[0,1,3,0],[1,2,3,1],[1,3,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,4,1],[1,3,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,1],[1,3,1,1]],[[0,1,3,0],[1,2,3,1],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[1,2,4,1],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,2],[1,0,2,2]],[[0,1,3,0],[1,2,3,1],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[1,2,4,1],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[1,2,3,1],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[1,2,3,1],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,2],[1,1,1,2]],[[0,1,3,0],[1,2,3,1],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[1,2,4,1],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[1,2,3,1],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[1,2,3,1],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[1,2,3,1],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[1,2,3,1],[1,3,3,2],[1,1,3,0]],[[0,1,3,0],[1,2,3,1],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[1,2,4,1],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[1,2,3,1],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[1,2,3,1],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[1,2,3,1],[1,3,3,2],[1,2,0,2]],[[0,1,3,0],[1,2,3,1],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[1,2,4,1],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[1,2,3,1],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[1,2,3,1],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[1,2,3,1],[1,3,3,3],[1,2,1,0]],[[0,1,2,0],[1,2,3,1],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[1,2,3,1],[1,3,3,2],[1,3,1,0]],[[0,1,2,0],[1,2,3,1],[2,0,3,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,0,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[2,0,3,2],[1,2,2,2]],[[0,1,2,0],[1,2,3,1],[3,1,2,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,1,2,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,1,2,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,1,2,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[2,1,2,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[2,1,2,2],[1,2,2,2]],[[0,1,3,0],[1,2,3,1],[2,1,3,1],[1,2,2,1]],[[0,1,2,0],[1,2,4,1],[2,1,3,1],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[3,1,3,1],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[1,2,3,1],[2,1,3,3],[0,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,1,3,2],[0,2,3,1]],[[0,1,2,0],[1,2,3,1],[2,1,3,2],[0,2,2,2]],[[0,1,3,0],[1,2,3,1],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[1,2,4,1],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[2,1,4,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[2,1,3,3],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[2,1,3,2],[1,2,1,2]],[[0,1,3,0],[1,2,3,1],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,2,4,1],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[3,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[2,1,3,3],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[1,2,3,1],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[1,2,3,1],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[1,2,3,1],[3,2,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,1,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,1,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,1,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,1,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[2,2,1,2],[1,2,2,2]],[[0,1,2,0],[1,2,3,1],[3,2,2,1],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,2,1],[2,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,2,1],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,2,1],[1,2,3,1]],[[0,1,2,0],[1,2,3,1],[2,2,2,1],[1,2,2,2]],[[0,1,2,0],[1,2,3,1],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[1,2,3,1],[2,2,2,2],[0,2,2,2]],[[0,1,2,0],[1,2,3,1],[3,2,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,1],[2,2,2,2],[2,2,2,0]],[[0,1,2,0],[1,2,3,1],[2,2,2,2],[1,3,2,0]],[[0,1,2,0],[1,2,3,1],[2,2,2,2],[1,2,3,0]],[[0,1,2,0],[1,2,3,1],[3,2,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,0],[2,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,0],[1,3,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,0],[1,2,3,1]],[[0,1,3,0],[1,2,3,1],[2,2,3,1],[0,2,2,1]],[[0,1,2,0],[1,2,4,1],[2,2,3,1],[0,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[1,2,3,1],[3,2,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,1],[2,2,1,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,1],[1,3,1,1]],[[0,1,3,0],[1,2,3,1],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[1,2,4,1],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[1,2,3,1],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,2],[0,2,1,2]],[[0,1,3,0],[1,2,3,1],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[1,2,4,1],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[1,2,3,1],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[1,2,3,1],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[1,2,3,1],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[1,2,3,1],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[1,2,3,1],[3,2,3,2],[1,2,0,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,2],[2,2,0,1]],[[0,1,2,0],[1,2,3,1],[2,2,3,2],[1,3,0,1]],[[0,1,2,0],[1,2,3,1],[3,2,3,2],[1,2,1,0]],[[0,1,2,0],[1,2,3,1],[2,2,3,2],[2,2,1,0]],[[0,1,2,0],[1,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,0,0],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,3,0,0],[3,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,3,0,0],[2,3,3,1],[1,2,0,0]],[[0,1,2,0],[1,2,3,1],[3,3,1,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,4,1,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,1,3],[0,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,1,2],[0,3,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,1,2],[0,2,3,1]],[[0,1,2,0],[1,2,3,1],[2,3,1,2],[0,2,2,2]],[[0,1,2,0],[1,2,3,1],[3,3,1,2],[1,1,2,1]],[[0,1,2,0],[1,2,3,1],[2,4,1,2],[1,1,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,1,2],[2,1,2,1]],[[0,1,2,0],[1,2,3,1],[3,3,2,1],[0,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[1,2,3,1],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[1,2,3,1],[3,3,2,1],[1,1,2,1]],[[0,1,2,0],[1,2,3,1],[2,4,2,1],[1,1,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,2,1],[2,1,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[1,2,3,1],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[1,2,3,1],[3,3,2,2],[0,2,2,0]],[[0,1,2,0],[1,2,3,1],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[1,2,3,1],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[1,2,3,1],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[1,2,3,1],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[1,2,3,1],[2,3,2,2],[1,0,2,2]],[[0,1,2,0],[1,2,3,1],[3,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,2,3,1],[2,4,2,2],[1,1,2,0]],[[0,1,2,0],[1,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,3,2,1],[2,3,0,0],[2,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,3,0,0],[2,3,3,1],[1,2,0,0]],[[0,1,2,0],[1,2,3,1],[3,3,3,0],[0,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,4,3,0],[0,2,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,0],[0,3,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,0],[0,2,3,1]],[[0,1,2,0],[1,2,3,1],[3,3,3,0],[1,1,2,1]],[[0,1,2,0],[1,2,3,1],[2,4,3,0],[1,1,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,0],[2,1,2,1]],[[0,1,3,0],[1,2,3,1],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,2,4,1],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,2,3,1],[3,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,2,3,1],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,1],[0,1,2,2]],[[0,1,3,0],[1,2,3,1],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[1,2,4,1],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[1,2,3,1],[3,3,3,1],[0,2,1,1]],[[0,1,2,0],[1,2,3,1],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[1,2,3,1],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,1],[0,3,1,1]],[[0,1,3,0],[1,2,3,1],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,2,4,1],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,2,3,1],[3,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,2,3,1],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,1],[2,0,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,1],[1,0,2,2]],[[0,1,3,0],[1,2,3,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,2,4,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,2,3,1],[3,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,2,3,1],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[1,2,3,1],[2,3,4,1],[1,1,1,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,1],[2,1,1,1]],[[0,1,2,0],[1,2,3,1],[3,3,3,1],[1,2,0,1]],[[0,1,2,0],[1,2,3,1],[2,4,3,1],[1,2,0,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,3,0,0],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[2,3,0,0],[3,3,3,1],[1,1,1,0]],[[1,2,2,1],[3,3,0,0],[2,3,3,1],[1,1,1,0]],[[0,1,3,0],[1,2,3,1],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[1,2,4,1],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[0,0,2,2]],[[0,1,3,0],[1,2,3,1],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,2,4,1],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,2,3,1],[3,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,2,3,1],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[1,2,3,1],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[0,1,1,2]],[[0,1,3,0],[1,2,3,1],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,2,4,1],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,2,3,1],[3,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,2,3,1],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[1,2,3,1],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[1,2,3,1],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[0,1,3,0]],[[0,1,3,0],[1,2,3,1],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,2,4,1],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,2,3,1],[3,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,2,3,1],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[1,2,3,1],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[0,2,0,2]],[[0,1,3,0],[1,2,3,1],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,2,4,1],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,2,3,1],[3,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,2,3,1],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[1,2,3,1],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[1,2,3,1],[2,3,3,3],[0,2,1,0]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,3,2,1],[2,3,0,0],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,3,0,0],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,3,0,0],[3,3,3,1],[1,0,1,1]],[[0,1,3,0],[1,2,3,1],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,2,4,1],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,2,3,1],[3,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,2,3,1],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[1,2,3,1],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[2,0,1,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[1,0,1,2]],[[0,1,3,0],[1,2,3,1],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,2,4,1],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,2,3,1],[3,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,2,3,1],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[1,2,3,1],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[1,2,3,1],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[2,0,2,0]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[1,0,3,0]],[[0,1,3,0],[1,2,3,1],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,2,4,1],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,2,3,1],[3,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,2,3,1],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[1,2,3,1],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[2,1,0,1]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[1,1,0,2]],[[0,1,3,0],[1,2,3,1],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,2,4,1],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,2,3,1],[3,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,2,3,1],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[1,2,3,1],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[1,2,3,1],[2,3,3,3],[1,1,1,0]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[3,3,0,0],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,3,0,0],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,3,0,0],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[1,2,3,1],[3,3,3,2],[1,2,0,0]],[[0,1,2,0],[1,2,3,1],[2,4,3,2],[1,2,0,0]],[[0,1,2,0],[1,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,3,0,0],[3,3,3,1],[0,2,1,0]],[[1,2,2,1],[3,3,0,0],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,3,0,0],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,3,0,0],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,3,0,0],[2,3,3,0],[2,2,1,0]],[[1,2,2,1],[2,3,0,0],[3,3,3,0],[1,2,1,0]],[[1,2,2,1],[3,3,0,0],[2,3,3,0],[1,2,1,0]],[[1,3,2,1],[2,3,0,0],[2,3,3,0],[1,2,1,0]],[[2,2,2,1],[2,3,0,0],[2,3,3,0],[1,2,1,0]],[[0,1,3,0],[1,2,3,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,4,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,3],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[0,3,1,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[0,3,1,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,2],[0,3,1,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,2],[0,3,1,2],[1,2,2,2]],[[0,1,3,0],[1,2,3,2],[0,3,2,2],[1,2,1,1]],[[0,1,2,0],[1,2,4,2],[0,3,2,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,3],[0,3,2,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[0,3,2,3],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[0,3,2,2],[1,2,1,2]],[[0,1,3,0],[1,2,3,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,4,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,3],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[0,3,2,3],[1,2,2,0]],[[0,1,3,0],[1,2,3,2],[0,3,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,4,2],[0,3,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,3],[0,3,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[0,3,4,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[0,3,3,0],[1,3,2,1]],[[0,1,2,0],[1,2,3,2],[0,3,3,0],[1,2,3,1]],[[0,1,2,0],[1,2,3,2],[0,3,3,0],[1,2,2,2]],[[0,1,3,0],[1,2,3,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,4,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,3,3],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[0,3,4,1],[1,2,1,1]],[[0,1,3,0],[1,2,3,2],[0,3,3,1],[1,2,2,0]],[[0,1,2,0],[1,2,4,2],[0,3,3,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,3],[0,3,3,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[0,3,4,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[0,3,3,1],[1,3,2,0]],[[0,1,2,0],[1,2,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,3,0,0],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,3,0,0],[3,3,3,0],[1,2,0,1]],[[1,2,2,1],[3,3,0,0],[2,3,3,0],[1,2,0,1]],[[1,3,2,1],[2,3,0,0],[2,3,3,0],[1,2,0,1]],[[2,2,2,1],[2,3,0,0],[2,3,3,0],[1,2,0,1]],[[0,1,2,0],[1,2,3,3],[1,0,3,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,0,3,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,0,3,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,2],[1,0,3,2],[1,2,2,2]],[[0,1,3,0],[1,2,3,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,4,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,3],[1,2,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,2,1,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,2,1,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,2,1,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,2],[1,2,1,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,2],[1,2,1,2],[1,2,2,2]],[[0,1,3,0],[1,2,3,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,0],[1,2,4,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,3],[1,2,2,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[1,2,2,3],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[1,2,2,2],[1,2,1,2]],[[0,1,3,0],[1,2,3,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,4,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,3],[1,2,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[1,2,2,3],[1,2,2,0]],[[0,1,3,0],[1,2,3,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,4,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,3],[1,2,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,2,4,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,2,3,0],[2,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,2,3,0],[1,3,2,1]],[[0,1,2,0],[1,2,3,2],[1,2,3,0],[1,2,3,1]],[[0,1,2,0],[1,2,3,2],[1,2,3,0],[1,2,2,2]],[[0,1,3,0],[1,2,3,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,4,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,3,3],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[1,2,4,1],[1,2,1,1]],[[0,1,3,0],[1,2,3,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,0],[1,2,4,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,3],[1,2,3,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[1,2,4,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[1,2,3,1],[2,2,2,0]],[[0,1,2,0],[1,2,3,2],[1,2,3,1],[1,3,2,0]],[[0,1,2,0],[1,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,3,0,0],[2,3,3,0],[2,1,2,0]],[[1,2,2,1],[2,3,0,0],[3,3,3,0],[1,1,2,0]],[[1,2,2,1],[3,3,0,0],[2,3,3,0],[1,1,2,0]],[[1,3,2,1],[2,3,0,0],[2,3,3,0],[1,1,2,0]],[[2,2,2,1],[2,3,0,0],[2,3,3,0],[1,1,2,0]],[[1,2,2,1],[2,3,0,0],[2,3,3,0],[2,1,1,1]],[[0,1,3,0],[1,2,3,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[1,2,4,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,3],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,4,0,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,0,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,0,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,0,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,0,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,2],[1,3,0,2],[1,2,2,2]],[[0,1,3,0],[1,2,3,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[1,2,4,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[1,2,3,3],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,1,3],[1,1,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,1,2],[1,1,3,1]],[[0,1,2,0],[1,2,3,2],[1,3,1,2],[1,1,2,2]],[[0,1,2,0],[1,2,3,2],[1,4,2,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,2,0],[2,2,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,2,0],[1,3,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,2,0],[1,2,3,1]],[[0,1,2,0],[1,2,3,2],[1,3,2,0],[1,2,2,2]],[[0,1,2,0],[1,2,3,2],[1,4,2,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[1,3,2,1],[2,2,2,0]],[[0,1,2,0],[1,2,3,2],[1,3,2,1],[1,3,2,0]],[[0,1,2,0],[1,2,3,2],[1,3,2,1],[1,2,3,0]],[[0,1,3,0],[1,2,3,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,0],[1,2,4,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,0],[1,2,3,3],[1,3,2,2],[1,0,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,2,3],[1,0,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,2,2],[1,0,2,2]],[[0,1,3,0],[1,2,3,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[1,2,4,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[1,2,3,3],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[1,2,3,2],[1,3,2,3],[1,1,1,1]],[[0,1,2,0],[1,2,3,2],[1,3,2,2],[1,1,1,2]],[[0,1,3,0],[1,2,3,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,2,4,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,2,3,3],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,2,3,2],[1,3,2,3],[1,1,2,0]],[[0,1,3,0],[1,2,3,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[1,2,4,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[1,2,3,3],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[1,2,3,2],[1,3,2,3],[1,2,0,1]],[[0,1,2,0],[1,2,3,2],[1,3,2,2],[1,2,0,2]],[[0,1,3,0],[1,2,3,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[1,2,4,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[1,2,3,3],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[1,2,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,3,0,0],[3,3,3,0],[1,1,1,1]],[[1,2,2,1],[3,3,0,0],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,3,0,0],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,3,0,0],[2,3,3,0],[1,1,1,1]],[[0,1,3,0],[1,2,3,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[1,2,4,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[1,2,3,3],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[1,2,3,2],[1,4,3,0],[1,1,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,4,0],[1,1,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,3,0],[1,1,3,1]],[[0,1,2,0],[1,2,3,2],[1,3,3,0],[1,1,2,2]],[[0,1,3,0],[1,2,3,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,0],[1,2,4,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,0],[1,2,3,3],[1,3,3,0],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[1,4,3,0],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[1,3,4,0],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[1,3,3,0],[2,2,1,1]],[[0,1,2,0],[1,2,3,2],[1,3,3,0],[1,3,1,1]],[[0,1,3,0],[1,2,3,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,2,4,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,2,3,3],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,2,3,2],[1,3,4,1],[1,0,2,1]],[[0,1,3,0],[1,2,3,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,2,4,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,2,3,3],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,2,3,2],[1,4,3,1],[1,1,1,1]],[[0,1,2,0],[1,2,3,2],[1,3,4,1],[1,1,1,1]],[[0,1,3,0],[1,2,3,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,0],[1,2,4,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,0],[1,2,3,3],[1,3,3,1],[1,1,2,0]],[[0,1,2,0],[1,2,3,2],[1,4,3,1],[1,1,2,0]],[[0,1,2,0],[1,2,3,2],[1,3,4,1],[1,1,2,0]],[[0,1,2,0],[1,2,3,2],[1,3,3,1],[1,1,3,0]],[[0,1,3,0],[1,2,3,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[1,2,4,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[1,2,3,3],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[1,2,3,2],[1,4,3,1],[1,2,0,1]],[[0,1,2,0],[1,2,3,2],[1,3,4,1],[1,2,0,1]],[[0,1,2,0],[1,2,3,2],[1,3,3,1],[2,2,0,1]],[[0,1,2,0],[1,2,3,2],[1,3,3,1],[1,3,0,1]],[[0,1,3,0],[1,2,3,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,0],[1,2,4,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,0],[1,2,3,3],[1,3,3,1],[1,2,1,0]],[[0,1,2,0],[1,2,3,2],[1,4,3,1],[1,2,1,0]],[[0,1,2,0],[1,2,3,2],[1,3,4,1],[1,2,1,0]],[[0,1,2,0],[1,2,3,2],[1,3,3,1],[2,2,1,0]],[[0,1,2,0],[1,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,3,0,0],[3,3,3,0],[0,2,2,0]],[[1,2,2,1],[3,3,0,0],[2,3,3,0],[0,2,2,0]],[[1,3,2,1],[2,3,0,0],[2,3,3,0],[0,2,2,0]],[[2,2,2,1],[2,3,0,0],[2,3,3,0],[0,2,2,0]],[[1,2,2,1],[2,3,0,0],[3,3,3,0],[0,2,1,1]],[[1,2,2,1],[3,3,0,0],[2,3,3,0],[0,2,1,1]],[[1,3,2,1],[2,3,0,0],[2,3,3,0],[0,2,1,1]],[[0,1,3,0],[1,2,3,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,2,4,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,2,3,3],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,2,3,2],[1,3,3,3],[1,1,0,1]],[[2,2,2,1],[2,3,0,0],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,3,0,0],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[2,3,0,0],[3,3,2,2],[1,2,0,0]],[[1,2,2,1],[3,3,0,0],[2,3,2,2],[1,2,0,0]],[[1,3,2,1],[2,3,0,0],[2,3,2,2],[1,2,0,0]],[[2,2,2,1],[2,3,0,0],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[2,3,0,0],[2,3,2,2],[2,1,1,0]],[[1,2,2,1],[2,3,0,0],[3,3,2,2],[1,1,1,0]],[[1,2,2,1],[3,3,0,0],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,3,0,0],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,3,0,0],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,3,0,0],[2,3,2,2],[2,1,0,1]],[[1,2,2,1],[2,3,0,0],[3,3,2,2],[1,1,0,1]],[[1,2,2,1],[3,3,0,0],[2,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,3,0,0],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[1,2,3,3],[2,0,3,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,0,3,3],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,0,3,2],[0,2,3,1]],[[0,1,2,0],[1,2,3,2],[2,0,3,2],[0,2,2,2]],[[0,1,3,0],[1,2,3,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,4,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,3],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[3,1,1,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,1,1,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,1,1,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,1,1,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,2],[2,1,1,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,2],[2,1,1,2],[1,2,2,2]],[[0,1,3,0],[1,2,3,2],[2,1,2,2],[1,2,1,1]],[[0,1,2,0],[1,2,4,2],[2,1,2,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,3],[2,1,2,2],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[2,1,2,3],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[2,1,2,2],[1,2,1,2]],[[0,1,3,0],[1,2,3,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,4,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,3],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[2,1,2,3],[1,2,2,0]],[[0,1,3,0],[1,2,3,2],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,4,2],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,3],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[3,1,3,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,1,4,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,1,3,0],[2,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,1,3,0],[1,3,2,1]],[[0,1,2,0],[1,2,3,2],[2,1,3,0],[1,2,3,1]],[[0,1,2,0],[1,2,3,2],[2,1,3,0],[1,2,2,2]],[[0,1,3,0],[1,2,3,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,4,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,3,3],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[2,1,4,1],[1,2,1,1]],[[0,1,3,0],[1,2,3,2],[2,1,3,1],[1,2,2,0]],[[0,1,2,0],[1,2,4,2],[2,1,3,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,3],[2,1,3,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[3,1,3,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[2,1,4,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[2,1,3,1],[2,2,2,0]],[[0,1,2,0],[1,2,3,2],[2,1,3,1],[1,3,2,0]],[[0,1,2,0],[1,2,3,2],[2,1,3,1],[1,2,3,0]],[[2,2,2,1],[2,3,0,0],[2,3,2,2],[1,1,0,1]],[[0,1,3,0],[1,2,3,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,2,4,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,3],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[3,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,0,3],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,0,2],[2,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,0,2],[1,3,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,0,2],[1,2,3,1]],[[0,1,2,0],[1,2,3,2],[2,2,0,2],[1,2,2,2]],[[0,1,3,0],[1,2,3,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[1,2,4,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,3],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,1,3],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,1,2],[0,3,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,1,2],[0,2,3,1]],[[0,1,2,0],[1,2,3,2],[2,2,1,2],[0,2,2,2]],[[0,1,2,0],[1,2,3,2],[3,2,2,0],[1,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,2,0],[2,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,2,0],[1,3,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,2,0],[1,2,3,1]],[[0,1,2,0],[1,2,3,2],[2,2,2,0],[1,2,2,2]],[[0,1,2,0],[1,2,3,2],[3,2,2,1],[1,2,2,0]],[[0,1,2,0],[1,2,3,2],[2,2,2,1],[2,2,2,0]],[[0,1,2,0],[1,2,3,2],[2,2,2,1],[1,3,2,0]],[[0,1,2,0],[1,2,3,2],[2,2,2,1],[1,2,3,0]],[[0,1,3,0],[1,2,3,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,0],[1,2,4,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,0],[1,2,3,3],[2,2,2,2],[0,2,1,1]],[[0,1,2,0],[1,2,3,2],[2,2,2,3],[0,2,1,1]],[[0,1,2,0],[1,2,3,2],[2,2,2,2],[0,2,1,2]],[[0,1,3,0],[1,2,3,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[1,2,4,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[1,2,3,3],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[1,2,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,1],[2,3,0,0],[3,3,2,2],[0,2,1,0]],[[1,2,2,1],[3,3,0,0],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,3,0,0],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,3,0,0],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,3,0,0],[3,3,2,2],[0,2,0,1]],[[1,2,2,1],[3,3,0,0],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,3,0,0],[2,3,2,2],[0,2,0,1]],[[0,1,3,0],[1,2,3,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[1,2,4,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[1,2,3,3],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,4,0],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,3,0],[0,3,2,1]],[[0,1,2,0],[1,2,3,2],[2,2,3,0],[0,2,3,1]],[[0,1,2,0],[1,2,3,2],[2,2,3,0],[0,2,2,2]],[[0,1,2,0],[1,2,3,2],[3,2,3,0],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[2,2,3,0],[2,2,1,1]],[[0,1,2,0],[1,2,3,2],[2,2,3,0],[1,3,1,1]],[[0,1,3,0],[1,2,3,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[1,2,4,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[1,2,3,3],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[1,2,3,2],[2,2,4,1],[0,2,1,1]],[[0,1,3,0],[1,2,3,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,0],[1,2,4,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,0],[1,2,3,3],[2,2,3,1],[0,2,2,0]],[[0,1,2,0],[1,2,3,2],[2,2,4,1],[0,2,2,0]],[[0,1,2,0],[1,2,3,2],[2,2,3,1],[0,3,2,0]],[[0,1,2,0],[1,2,3,2],[2,2,3,1],[0,2,3,0]],[[0,1,2,0],[1,2,3,2],[3,2,3,1],[1,2,0,1]],[[0,1,2,0],[1,2,3,2],[2,2,3,1],[2,2,0,1]],[[0,1,2,0],[1,2,3,2],[2,2,3,1],[1,3,0,1]],[[0,1,2,0],[1,2,3,2],[3,2,3,1],[1,2,1,0]],[[0,1,2,0],[1,2,3,2],[2,2,3,1],[2,2,1,0]],[[0,1,2,0],[1,2,3,2],[2,2,3,1],[1,3,1,0]],[[2,2,2,1],[2,3,0,0],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,3,0,0],[2,3,2,1],[2,2,0,1]],[[1,2,2,1],[2,3,0,0],[3,3,2,1],[1,2,0,1]],[[1,2,2,1],[3,3,0,0],[2,3,2,1],[1,2,0,1]],[[1,3,2,1],[2,3,0,0],[2,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,3,0,0],[2,3,2,1],[1,2,0,1]],[[1,2,2,1],[2,3,0,0],[2,3,2,1],[2,1,1,1]],[[1,2,2,1],[2,3,0,0],[3,3,2,1],[1,1,1,1]],[[1,2,2,1],[3,3,0,0],[2,3,2,1],[1,1,1,1]],[[1,3,2,1],[2,3,0,0],[2,3,2,1],[1,1,1,1]],[[2,2,2,1],[2,3,0,0],[2,3,2,1],[1,1,1,1]],[[1,2,2,1],[2,3,0,0],[3,3,2,1],[0,2,1,1]],[[1,2,2,1],[3,3,0,0],[2,3,2,1],[0,2,1,1]],[[1,3,2,1],[2,3,0,0],[2,3,2,1],[0,2,1,1]],[[2,2,2,1],[2,3,0,0],[2,3,2,1],[0,2,1,1]],[[0,1,3,0],[1,2,3,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[1,2,4,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,3],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[3,3,0,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,4,0,2],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,0,3],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,0,2],[0,3,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,0,2],[0,2,3,1]],[[0,1,2,0],[1,2,3,2],[2,3,0,2],[0,2,2,2]],[[0,1,2,0],[1,2,3,2],[3,3,0,2],[1,1,2,1]],[[0,1,2,0],[1,2,3,2],[2,4,0,2],[1,1,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,0,2],[2,1,2,1]],[[0,1,3,0],[1,2,3,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,0],[1,2,4,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,0],[1,2,3,3],[2,3,1,2],[0,1,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,1,3],[0,1,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,1,2],[0,1,3,1]],[[0,1,2,0],[1,2,3,2],[2,3,1,2],[0,1,2,2]],[[0,1,3,0],[1,2,3,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,0],[1,2,4,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,0],[1,2,3,3],[2,3,1,2],[1,0,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,1,3],[1,0,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,1,2],[1,0,3,1]],[[0,1,2,0],[1,2,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,3,0,0],[2,3,2,0],[2,2,2,0]],[[1,2,2,1],[2,3,0,0],[3,3,2,0],[1,2,2,0]],[[1,2,2,1],[3,3,0,0],[2,3,2,0],[1,2,2,0]],[[1,3,2,1],[2,3,0,0],[2,3,2,0],[1,2,2,0]],[[2,2,2,1],[2,3,0,0],[2,3,2,0],[1,2,2,0]],[[1,2,2,1],[2,3,0,0],[2,3,2,0],[2,2,1,1]],[[1,2,2,1],[2,3,0,0],[3,3,2,0],[1,2,1,1]],[[1,2,2,1],[3,3,0,0],[2,3,2,0],[1,2,1,1]],[[1,3,2,1],[2,3,0,0],[2,3,2,0],[1,2,1,1]],[[2,2,2,1],[2,3,0,0],[2,3,2,0],[1,2,1,1]],[[0,1,2,0],[1,2,3,2],[3,3,2,0],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,4,2,0],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,0],[0,3,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,0],[0,2,3,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,0],[0,2,2,2]],[[0,1,2,0],[1,2,3,2],[3,3,2,0],[1,1,2,1]],[[0,1,2,0],[1,2,3,2],[2,4,2,0],[1,1,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,0],[2,1,2,1]],[[0,1,2,0],[1,2,3,2],[3,3,2,1],[0,2,2,0]],[[0,1,2,0],[1,2,3,2],[2,4,2,1],[0,2,2,0]],[[0,1,2,0],[1,2,3,2],[2,3,2,1],[0,3,2,0]],[[0,1,2,0],[1,2,3,2],[2,3,2,1],[0,2,3,0]],[[0,1,2,0],[1,2,3,2],[3,3,2,1],[1,1,2,0]],[[0,1,2,0],[1,2,3,2],[2,4,2,1],[1,1,2,0]],[[0,1,2,0],[1,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,3,0,0],[2,3,2,0],[2,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,3,2,0],[1,1,2,1]],[[1,2,2,1],[3,3,0,0],[2,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,3,0,0],[2,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,3,0,0],[2,3,2,0],[1,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,3,2,0],[0,2,2,1]],[[0,1,3,0],[1,2,3,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,0],[1,2,4,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,0],[1,2,3,3],[2,3,2,2],[0,0,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,3],[0,0,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,2],[0,0,2,2]],[[0,1,3,0],[1,2,3,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[1,2,4,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[1,2,3,3],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,3],[0,1,1,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,2],[0,1,1,2]],[[0,1,3,0],[1,2,3,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[1,2,4,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[1,2,3,3],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[1,2,3,2],[2,3,2,3],[0,1,2,0]],[[0,1,3,0],[1,2,3,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[1,2,4,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[1,2,3,3],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,3],[0,2,0,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,2],[0,2,0,2]],[[0,1,3,0],[1,2,3,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[1,2,4,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[1,2,3,3],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[1,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[3,3,0,0],[2,3,2,0],[0,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,3,2,0],[0,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,3,2,0],[0,2,2,1]],[[0,1,3,0],[1,2,3,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[1,2,4,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[1,2,3,3],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,3],[1,0,1,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,2],[1,0,1,2]],[[0,1,3,0],[1,2,3,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[1,2,4,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[1,2,3,3],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[1,2,3,2],[2,3,2,3],[1,0,2,0]],[[0,1,3,0],[1,2,3,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[1,2,4,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[1,2,3,3],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,3],[1,1,0,1]],[[0,1,2,0],[1,2,3,2],[2,3,2,2],[1,1,0,2]],[[0,1,3,0],[1,2,3,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[1,2,4,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[1,2,3,3],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[1,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,3,0,0],[2,3,1,2],[2,2,1,0]],[[1,2,2,1],[2,3,0,0],[3,3,1,2],[1,2,1,0]],[[1,2,2,1],[3,3,0,0],[2,3,1,2],[1,2,1,0]],[[1,3,2,1],[2,3,0,0],[2,3,1,2],[1,2,1,0]],[[2,2,2,1],[2,3,0,0],[2,3,1,2],[1,2,1,0]],[[1,2,2,1],[2,3,0,0],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[2,3,0,0],[3,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,3,0,0],[2,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,3,0,0],[2,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,3,0,0],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,3,0,0],[3,3,1,2],[0,2,2,0]],[[1,2,2,1],[3,3,0,0],[2,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,3,0,0],[2,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,3,0,0],[2,3,1,2],[0,2,2,0]],[[0,1,3,0],[1,2,3,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[1,2,4,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[1,2,3,3],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[1,2,3,2],[3,3,3,0],[0,1,2,1]],[[0,1,2,0],[1,2,3,2],[2,4,3,0],[0,1,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,4,0],[0,1,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,0],[0,1,3,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,0],[0,1,2,2]],[[0,1,3,0],[1,2,3,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[1,2,4,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[1,2,3,3],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[1,2,3,2],[3,3,3,0],[0,2,1,1]],[[0,1,2,0],[1,2,3,2],[2,4,3,0],[0,2,1,1]],[[0,1,2,0],[1,2,3,2],[2,3,4,0],[0,2,1,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,0],[0,3,1,1]],[[0,1,3,0],[1,2,3,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[1,2,4,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[1,2,3,3],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[1,2,3,2],[3,3,3,0],[1,0,2,1]],[[0,1,2,0],[1,2,3,2],[2,4,3,0],[1,0,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,4,0],[1,0,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,0],[2,0,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,0],[1,0,3,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,0],[1,0,2,2]],[[0,1,3,0],[1,2,3,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[1,2,4,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[1,2,3,3],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[1,2,3,2],[3,3,3,0],[1,1,1,1]],[[0,1,2,0],[1,2,3,2],[2,4,3,0],[1,1,1,1]],[[0,1,2,0],[1,2,3,2],[2,3,4,0],[1,1,1,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,0],[2,1,1,1]],[[0,1,2,0],[1,2,3,2],[3,3,3,0],[1,2,0,1]],[[0,1,2,0],[1,2,3,2],[2,4,3,0],[1,2,0,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,3,0,0],[2,3,1,1],[2,2,2,0]],[[1,2,2,1],[2,3,0,0],[3,3,1,1],[1,2,2,0]],[[1,2,2,1],[3,3,0,0],[2,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,3,0,0],[2,3,1,1],[1,2,2,0]],[[0,1,3,0],[1,2,3,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[1,2,4,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[1,2,3,3],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[1,2,3,2],[2,3,4,1],[0,0,2,1]],[[0,1,3,0],[1,2,3,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[1,2,4,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[1,2,3,3],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[1,2,3,2],[3,3,3,1],[0,1,1,1]],[[0,1,2,0],[1,2,3,2],[2,4,3,1],[0,1,1,1]],[[0,1,2,0],[1,2,3,2],[2,3,4,1],[0,1,1,1]],[[0,1,3,0],[1,2,3,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[1,2,4,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[1,2,3,3],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[1,2,3,2],[3,3,3,1],[0,1,2,0]],[[0,1,2,0],[1,2,3,2],[2,4,3,1],[0,1,2,0]],[[0,1,2,0],[1,2,3,2],[2,3,4,1],[0,1,2,0]],[[0,1,2,0],[1,2,3,2],[2,3,3,1],[0,1,3,0]],[[0,1,3,0],[1,2,3,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[1,2,4,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[1,2,3,3],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[1,2,3,2],[3,3,3,1],[0,2,0,1]],[[0,1,2,0],[1,2,3,2],[2,4,3,1],[0,2,0,1]],[[0,1,2,0],[1,2,3,2],[2,3,4,1],[0,2,0,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,1],[0,3,0,1]],[[0,1,3,0],[1,2,3,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[1,2,4,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[1,2,3,3],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[1,2,3,2],[3,3,3,1],[0,2,1,0]],[[0,1,2,0],[1,2,3,2],[2,4,3,1],[0,2,1,0]],[[0,1,2,0],[1,2,3,2],[2,3,4,1],[0,2,1,0]],[[0,1,2,0],[1,2,3,2],[2,3,3,1],[0,3,1,0]],[[2,2,2,1],[2,3,0,0],[2,3,1,1],[1,2,2,0]],[[1,2,2,1],[2,3,0,0],[2,3,1,1],[2,2,1,1]],[[1,2,2,1],[2,3,0,0],[3,3,1,1],[1,2,1,1]],[[1,2,2,1],[3,3,0,0],[2,3,1,1],[1,2,1,1]],[[1,3,2,1],[2,3,0,0],[2,3,1,1],[1,2,1,1]],[[2,2,2,1],[2,3,0,0],[2,3,1,1],[1,2,1,1]],[[1,2,2,1],[2,3,0,0],[2,3,1,1],[2,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,3,1,1],[1,1,2,1]],[[1,2,2,1],[3,3,0,0],[2,3,1,1],[1,1,2,1]],[[0,1,3,0],[1,2,3,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[1,2,4,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[1,2,3,3],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[1,2,3,2],[3,3,3,1],[1,0,1,1]],[[0,1,2,0],[1,2,3,2],[2,4,3,1],[1,0,1,1]],[[0,1,2,0],[1,2,3,2],[2,3,4,1],[1,0,1,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,1],[2,0,1,1]],[[0,1,3,0],[1,2,3,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[1,2,4,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[1,2,3,3],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[1,2,3,2],[3,3,3,1],[1,0,2,0]],[[0,1,2,0],[1,2,3,2],[2,4,3,1],[1,0,2,0]],[[0,1,2,0],[1,2,3,2],[2,3,4,1],[1,0,2,0]],[[0,1,2,0],[1,2,3,2],[2,3,3,1],[2,0,2,0]],[[0,1,2,0],[1,2,3,2],[2,3,3,1],[1,0,3,0]],[[0,1,3,0],[1,2,3,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[1,2,4,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[1,2,3,3],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[1,2,3,2],[3,3,3,1],[1,1,0,1]],[[0,1,2,0],[1,2,3,2],[2,4,3,1],[1,1,0,1]],[[0,1,2,0],[1,2,3,2],[2,3,4,1],[1,1,0,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,1],[2,1,0,1]],[[0,1,3,0],[1,2,3,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[1,2,4,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[1,2,3,3],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[1,2,3,2],[3,3,3,1],[1,1,1,0]],[[0,1,2,0],[1,2,3,2],[2,4,3,1],[1,1,1,0]],[[0,1,2,0],[1,2,3,2],[2,3,4,1],[1,1,1,0]],[[0,1,2,0],[1,2,3,2],[2,3,3,1],[2,1,1,0]],[[1,3,2,1],[2,3,0,0],[2,3,1,1],[1,1,2,1]],[[2,2,2,1],[2,3,0,0],[2,3,1,1],[1,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,3,1,1],[0,2,2,1]],[[1,2,2,1],[3,3,0,0],[2,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,3,1,1],[0,2,2,1]],[[0,1,2,0],[1,2,3,2],[3,3,3,1],[1,2,0,0]],[[0,1,2,0],[1,2,3,2],[2,4,3,1],[1,2,0,0]],[[0,1,2,0],[1,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,3,0,0],[2,3,0,2],[2,2,1,1]],[[1,2,2,1],[2,3,0,0],[3,3,0,2],[1,2,1,1]],[[1,2,2,1],[3,3,0,0],[2,3,0,2],[1,2,1,1]],[[1,3,2,1],[2,3,0,0],[2,3,0,2],[1,2,1,1]],[[2,2,2,1],[2,3,0,0],[2,3,0,2],[1,2,1,1]],[[1,2,2,1],[2,3,0,0],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,3,0,0],[2,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,3,0,0],[2,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,3,0,0],[2,3,0,2],[1,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,3,0,0],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,3,0,2],[0,2,2,1]],[[0,1,3,0],[1,2,3,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,0],[1,2,4,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,0],[1,2,3,3],[2,3,3,2],[0,1,0,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,3,0,0],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[2,3,0,0],[3,2,3,2],[1,2,0,0]],[[1,2,2,1],[3,3,0,0],[2,2,3,2],[1,2,0,0]],[[1,3,2,1],[2,3,0,0],[2,2,3,2],[1,2,0,0]],[[2,2,2,1],[2,3,0,0],[2,2,3,2],[1,2,0,0]],[[1,2,2,1],[2,3,0,0],[2,2,3,2],[2,1,1,0]],[[1,2,2,1],[2,3,0,0],[3,2,3,2],[1,1,1,0]],[[1,2,2,1],[3,3,0,0],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,3,0,0],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,3,0,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,3,0,0],[2,2,3,2],[2,1,0,1]],[[1,2,2,1],[2,3,0,0],[3,2,3,2],[1,1,0,1]],[[1,2,2,1],[3,3,0,0],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,3,0,0],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,3,0,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,3,0,0],[2,2,3,2],[2,0,2,0]],[[1,2,2,1],[2,3,0,0],[3,2,3,2],[1,0,2,0]],[[1,2,2,1],[3,3,0,0],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,0,0],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,0,0],[2,2,3,2],[1,0,2,0]],[[0,1,3,0],[1,2,3,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[1,2,4,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[1,2,3,3],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[1,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,3,0,0],[2,2,3,2],[2,0,1,1]],[[1,2,2,1],[2,3,0,0],[3,2,3,2],[1,0,1,1]],[[1,2,2,1],[3,3,0,0],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,0,0],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,0,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,3,0,0],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,3,0,0],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,3,0,0],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,3,0,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,3,0,0],[3,2,3,2],[0,2,0,1]],[[1,2,2,1],[3,3,0,0],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,3,0,0],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,3,0,0],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,3,0,0],[3,2,3,2],[0,1,2,0]],[[1,2,2,1],[3,3,0,0],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,0,0],[2,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,0,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,3,0,0],[3,2,3,2],[0,1,1,1]],[[1,2,2,1],[3,3,0,0],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,3,0,0],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,3,0,0],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,3,0,0],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[2,3,0,0],[3,2,3,1],[1,2,0,1]],[[1,2,2,1],[3,3,0,0],[2,2,3,1],[1,2,0,1]],[[1,3,2,1],[2,3,0,0],[2,2,3,1],[1,2,0,1]],[[2,2,2,1],[2,3,0,0],[2,2,3,1],[1,2,0,1]],[[1,2,2,1],[2,3,0,0],[2,2,3,1],[2,1,1,1]],[[1,2,2,1],[2,3,0,0],[3,2,3,1],[1,1,1,1]],[[1,2,2,1],[3,3,0,0],[2,2,3,1],[1,1,1,1]],[[1,3,2,1],[2,3,0,0],[2,2,3,1],[1,1,1,1]],[[2,2,2,1],[2,3,0,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,1],[2,3,0,0],[2,2,3,1],[2,0,2,1]],[[1,2,2,1],[2,3,0,0],[3,2,3,1],[1,0,2,1]],[[1,2,2,1],[3,3,0,0],[2,2,3,1],[1,0,2,1]],[[1,3,2,1],[2,3,0,0],[2,2,3,1],[1,0,2,1]],[[2,2,2,1],[2,3,0,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,1],[2,3,0,0],[3,2,3,1],[0,2,1,1]],[[1,2,2,1],[3,3,0,0],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[2,3,0,0],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[2,3,0,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[2,3,0,0],[3,2,3,1],[0,1,2,1]],[[1,2,2,1],[3,3,0,0],[2,2,3,1],[0,1,2,1]],[[1,3,2,1],[2,3,0,0],[2,2,3,1],[0,1,2,1]],[[2,2,2,1],[2,3,0,0],[2,2,3,1],[0,1,2,1]],[[1,2,2,1],[2,3,0,0],[2,2,3,0],[2,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,2,3,0],[1,1,2,1]],[[1,2,2,1],[3,3,0,0],[2,2,3,0],[1,1,2,1]],[[1,3,2,1],[2,3,0,0],[2,2,3,0],[1,1,2,1]],[[2,2,2,1],[2,3,0,0],[2,2,3,0],[1,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,2,3,0],[0,2,2,1]],[[1,2,2,1],[3,3,0,0],[2,2,3,0],[0,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,2,3,0],[0,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[1,3,0,1],[1,4,3,2],[1,2,2,1]],[[0,1,2,0],[1,3,0,1],[1,3,3,2],[2,2,2,1]],[[0,1,2,0],[1,3,0,1],[1,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,0,1],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,0,1],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,0,1],[3,2,3,2],[1,2,2,1]],[[0,1,2,0],[1,3,0,1],[2,2,3,2],[2,2,2,1]],[[0,1,2,0],[1,3,0,1],[2,2,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,0,1],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,0,1],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,0,1],[3,3,3,2],[0,2,2,1]],[[0,1,2,0],[1,3,0,1],[2,4,3,2],[0,2,2,1]],[[0,1,2,0],[1,3,0,1],[2,3,3,2],[0,3,2,1]],[[0,1,2,0],[1,3,0,1],[2,3,3,2],[0,2,3,1]],[[0,1,2,0],[1,3,0,1],[2,3,3,2],[0,2,2,2]],[[0,1,2,0],[1,3,0,1],[3,3,3,2],[1,1,2,1]],[[0,1,2,0],[1,3,0,1],[2,4,3,2],[1,1,2,1]],[[0,1,2,0],[1,3,0,1],[2,3,3,2],[2,1,2,1]],[[0,1,2,0],[1,3,0,2],[0,3,3,3],[1,2,2,1]],[[0,1,2,0],[1,3,0,2],[0,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,0,2],[0,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,0,2],[0,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,0,2],[1,2,3,3],[1,2,2,1]],[[0,1,2,0],[1,3,0,2],[1,2,3,2],[2,2,2,1]],[[0,1,2,0],[1,3,0,2],[1,2,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,0,2],[1,2,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,0,2],[1,2,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,0,2],[1,4,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,0,2],[1,3,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,0,2],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,0,2],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,0,2],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,0,2],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,3,0,2],[1,4,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,0,2],[1,3,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,0,2],[1,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,0,2],[1,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,0,2],[1,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,0,2],[1,3,3,3],[1,1,2,1]],[[0,1,2,0],[1,3,0,2],[1,3,3,2],[1,1,3,1]],[[0,1,2,0],[1,3,0,2],[1,3,3,2],[1,1,2,2]],[[0,1,2,0],[1,3,0,2],[1,4,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,0,2],[1,3,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,0,2],[1,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,0,2],[1,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,0,2],[3,1,3,2],[1,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,1,3,3],[1,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,1,3,2],[2,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,1,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,0,2],[2,1,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,0,2],[2,1,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,0,2],[3,2,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,2,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,0,2],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,0,2],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[1,3,0,2],[3,2,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,0,2],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,0,2],[2,2,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,0,2],[2,2,3,3],[0,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,2,3,2],[0,3,2,1]],[[0,1,2,0],[1,3,0,2],[2,2,3,2],[0,2,3,1]],[[0,1,2,0],[1,3,0,2],[2,2,3,2],[0,2,2,2]],[[0,1,2,0],[1,3,0,2],[3,2,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,0,2],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,0,2],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,0,2],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,0,2],[3,3,2,2],[0,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,4,2,2],[0,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,3,2,3],[0,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[1,3,0,2],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[1,3,0,2],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[1,3,0,2],[3,3,2,2],[1,1,2,1]],[[0,1,2,0],[1,3,0,2],[2,4,2,2],[1,1,2,1]],[[0,1,2,0],[1,3,0,2],[2,3,2,2],[2,1,2,1]],[[0,1,2,0],[1,3,0,2],[3,3,3,1],[0,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,4,3,1],[0,2,2,1]],[[0,1,2,0],[1,3,0,2],[2,3,3,1],[0,3,2,1]],[[0,1,2,0],[1,3,0,2],[2,3,3,1],[0,2,3,1]],[[0,1,2,0],[1,3,0,2],[2,3,3,1],[0,2,2,2]],[[0,1,2,0],[1,3,0,2],[3,3,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,0,2],[2,4,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,0,2],[2,3,3,1],[2,1,2,1]],[[0,1,2,0],[1,3,0,2],[2,3,3,3],[0,1,2,1]],[[0,1,2,0],[1,3,0,2],[2,3,3,2],[0,1,3,1]],[[0,1,2,0],[1,3,0,2],[2,3,3,2],[0,1,2,2]],[[0,1,2,0],[1,3,0,2],[3,3,3,2],[0,2,2,0]],[[0,1,2,0],[1,3,0,2],[2,4,3,2],[0,2,2,0]],[[0,1,2,0],[1,3,0,2],[2,3,3,2],[0,3,2,0]],[[0,1,2,0],[1,3,0,2],[2,3,3,2],[0,2,3,0]],[[0,1,2,0],[1,3,0,2],[2,3,3,3],[1,0,2,1]],[[0,1,2,0],[1,3,0,2],[2,3,3,2],[1,0,3,1]],[[0,1,2,0],[1,3,0,2],[2,3,3,2],[1,0,2,2]],[[0,1,2,0],[1,3,0,2],[3,3,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,0,2],[2,4,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,0,2],[2,3,3,2],[2,1,2,0]],[[0,1,2,0],[1,3,1,0],[1,4,3,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,0],[1,3,3,2],[2,2,2,1]],[[0,1,2,0],[1,3,1,0],[1,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,1,0],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,1,0],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,1,0],[3,2,3,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,0],[2,2,3,2],[2,2,2,1]],[[0,1,2,0],[1,3,1,0],[2,2,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,1,0],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,1,0],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,1,0],[3,3,3,2],[0,2,2,1]],[[0,1,2,0],[1,3,1,0],[2,4,3,2],[0,2,2,1]],[[0,1,2,0],[1,3,1,0],[2,3,3,2],[0,3,2,1]],[[0,1,2,0],[1,3,1,0],[2,3,3,2],[0,2,3,1]],[[0,1,2,0],[1,3,1,0],[2,3,3,2],[0,2,2,2]],[[0,1,2,0],[1,3,1,0],[3,3,3,2],[1,1,2,1]],[[0,1,2,0],[1,3,1,0],[2,4,3,2],[1,1,2,1]],[[0,1,2,0],[1,3,1,0],[2,3,3,2],[2,1,2,1]],[[0,1,2,0],[1,3,1,1],[1,4,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,1,1],[1,3,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,1,1],[1,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,1,1],[1,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,1,1],[1,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,1,1],[1,4,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,1],[1,3,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,1,1],[1,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,1,1],[1,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,1,1],[3,2,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,1,1],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,1,1],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,1,1],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,1,1],[2,2,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,1,1],[3,2,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,1],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,1,1],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,1,1],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,1,1],[3,3,3,1],[0,2,2,1]],[[0,1,2,0],[1,3,1,1],[2,4,3,1],[0,2,2,1]],[[0,1,2,0],[1,3,1,1],[2,3,3,1],[0,3,2,1]],[[0,1,2,0],[1,3,1,1],[2,3,3,1],[0,2,3,1]],[[0,1,2,0],[1,3,1,1],[2,3,3,1],[0,2,2,2]],[[0,1,2,0],[1,3,1,1],[3,3,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,1,1],[2,4,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,1,1],[2,3,3,1],[2,1,2,1]],[[0,1,2,0],[1,3,1,1],[3,3,3,2],[0,2,2,0]],[[0,1,2,0],[1,3,1,1],[2,4,3,2],[0,2,2,0]],[[0,1,2,0],[1,3,1,1],[2,3,3,2],[0,3,2,0]],[[0,1,2,0],[1,3,1,1],[2,3,3,2],[0,2,3,0]],[[0,1,2,0],[1,3,1,1],[3,3,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,1,1],[2,4,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[2,3,0,0],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[2,3,0,0],[3,2,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,1,3],[0,3,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[0,3,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[0,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,1,2],[0,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,1,2],[0,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,3,1,2],[0,3,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[0,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,1,2],[0,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,1,2],[0,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,1,3],[0,3,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[0,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[0,3,3,3],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[0,3,3,2],[1,2,1,2]],[[0,1,2,0],[1,3,1,3],[0,3,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[0,3,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[0,3,3,3],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[0,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,1,2],[0,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,1,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,1,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,1,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,0],[1,3,1,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,1,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,1,2],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,1,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[1,2,3,2],[1,2,1,2]],[[0,1,2,0],[1,3,1,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,1,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,1,2],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[1,4,1,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,3],[1,3,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,4,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,1,3],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,1,2],[2,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,1,2],[1,3,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,1,2],[1,2,3,1]],[[0,1,2,0],[1,3,1,2],[1,3,1,2],[1,2,2,2]],[[0,1,2,0],[1,4,1,2],[1,3,2,1],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[1,3,1,2],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[1,3,1,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[1,3,1,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[1,4,1,2],[1,3,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[1,3,1,2],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[1,3,1,2],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[1,4,1,2],[1,3,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,1,2],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[1,4,1,2],[1,3,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,1],[1,3,1,1]],[[0,1,2,0],[1,3,1,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,2],[1,0,2,2]],[[0,1,2,0],[1,4,1,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,1,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,1,2],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,1,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,2],[1,1,1,2]],[[0,1,2,0],[1,4,1,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,1,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,1,2],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,1,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[1,3,1,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[1,3,1,2],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[1,4,1,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,1,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,1,2],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,1,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[1,3,1,2],[1,3,3,2],[1,2,0,2]],[[0,1,2,0],[1,4,1,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,1,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,1,2],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,1,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[1,3,1,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,0],[1,3,1,2],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[1,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,3,0,0],[2,2,2,2],[1,1,2,0]],[[1,3,2,1],[2,3,0,0],[2,2,2,2],[1,1,2,0]],[[2,2,2,1],[2,3,0,0],[2,2,2,2],[1,1,2,0]],[[1,2,2,1],[2,3,0,0],[3,2,2,2],[0,2,2,0]],[[1,2,2,1],[3,3,0,0],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,1,3],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[3,1,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,1,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,1,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,1,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,1,2],[2,1,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,1,2],[2,1,2,2],[1,2,2,2]],[[0,1,2,0],[1,3,1,2],[3,1,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,1,2],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,1,2],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,1,3],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[2,1,4,2],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[2,1,3,3],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[2,1,3,2],[1,2,1,2]],[[0,1,2,0],[1,3,1,3],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[3,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,1,3,3],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,1,2],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,1,3],[2,2,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[3,2,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,1,3],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,1,2],[2,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,1,2],[1,3,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,1,2],[1,2,3,1]],[[0,1,2,0],[1,3,1,2],[2,2,1,2],[1,2,2,2]],[[0,1,2,0],[1,3,1,2],[3,2,2,1],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,2,1],[2,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,2,1],[1,3,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,2,1],[1,2,3,1]],[[0,1,2,0],[1,3,1,2],[2,2,2,1],[1,2,2,2]],[[0,1,2,0],[1,3,1,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[1,3,1,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,0],[1,3,1,2],[3,2,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,2,2,2],[2,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,2,2,2],[1,3,2,0]],[[0,1,2,0],[1,3,1,2],[2,2,2,2],[1,2,3,0]],[[0,1,2,0],[1,3,1,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[1,3,1,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[1,3,1,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[1,3,1,2],[3,2,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,1,2],[2,2,3,1],[2,2,1,1]],[[0,1,2,0],[1,3,1,2],[2,2,3,1],[1,3,1,1]],[[0,1,2,0],[1,3,1,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[1,3,1,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[1,3,1,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[1,3,1,2],[2,2,3,2],[0,2,1,2]],[[0,1,2,0],[1,3,1,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[1,3,1,2],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[1,3,1,2],[3,2,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,1,2],[2,2,3,2],[2,2,0,1]],[[0,1,2,0],[1,3,1,2],[2,2,3,2],[1,3,0,1]],[[0,1,2,0],[1,3,1,2],[3,2,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,1,2],[2,2,3,2],[2,2,1,0]],[[0,1,2,0],[1,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,3,2,1],[2,3,0,0],[2,2,2,2],[0,2,2,0]],[[2,2,2,1],[2,3,0,0],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,1,2],[3,3,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,0,2],[2,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,0,2],[1,3,2,1]],[[0,1,2,0],[1,3,1,2],[3,3,1,1],[1,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,1,1],[2,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,1,1],[1,3,2,1]],[[0,1,2,0],[1,4,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,0],[1,3,1,3],[2,3,1,2],[0,2,2,1]],[[0,1,2,0],[1,3,1,2],[3,3,1,2],[0,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,4,1,2],[0,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,1,3],[0,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,1,2],[0,3,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,1,2],[0,2,3,1]],[[0,1,2,0],[1,3,1,2],[2,3,1,2],[0,2,2,2]],[[0,1,2,0],[1,4,1,2],[2,3,1,2],[1,1,2,1]],[[0,1,2,0],[1,3,1,2],[3,3,1,2],[1,1,2,1]],[[0,1,2,0],[1,3,1,2],[2,4,1,2],[1,1,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,1,2],[2,1,2,1]],[[0,1,2,0],[1,3,1,2],[3,3,1,2],[1,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,1,2],[2,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,1,2],[1,3,2,0]],[[0,1,2,0],[1,4,1,2],[2,3,2,1],[0,2,2,1]],[[0,1,2,0],[1,3,1,2],[3,3,2,1],[0,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[1,3,1,2],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[1,4,1,2],[2,3,2,1],[1,1,2,1]],[[0,1,2,0],[1,3,1,2],[3,3,2,1],[1,1,2,1]],[[0,1,2,0],[1,3,1,2],[2,4,2,1],[1,1,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,2,1],[2,1,2,1]],[[0,1,2,0],[1,3,1,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[1,3,1,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[1,4,1,2],[2,3,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,1,2],[3,3,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[1,3,1,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[1,3,1,2],[2,3,2,2],[1,0,2,2]],[[0,1,2,0],[1,4,1,2],[2,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,1,2],[3,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,1,2],[2,4,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,3,0,0],[2,2,2,1],[2,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,2,2,1],[1,1,2,1]],[[1,2,2,1],[3,3,0,0],[2,2,2,1],[1,1,2,1]],[[1,3,2,1],[2,3,0,0],[2,2,2,1],[1,1,2,1]],[[2,2,2,1],[2,3,0,0],[2,2,2,1],[1,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,2,2,1],[0,2,2,1]],[[1,2,2,1],[3,3,0,0],[2,2,2,1],[0,2,2,1]],[[0,1,2,0],[1,4,1,2],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,3,1,2],[3,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,3,1,2],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,0],[1,4,1,2],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,1,2],[3,3,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,1,2],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,1,2],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,1],[0,3,1,1]],[[0,1,2,0],[1,4,1,2],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,1,2],[3,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,1,2],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,1],[2,0,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,1],[1,0,2,2]],[[0,1,2,0],[1,4,1,2],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,1,2],[3,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,1,2],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,1,2],[2,3,4,1],[1,1,1,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,1],[2,1,1,1]],[[0,1,2,0],[1,3,1,2],[3,3,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,1,2],[2,4,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,3,2,1],[2,3,0,0],[2,2,2,1],[0,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,2,2,1],[0,2,2,1]],[[1,2,2,1],[2,3,0,0],[2,2,2,0],[1,3,2,1]],[[1,2,2,1],[2,3,0,0],[2,2,2,0],[2,2,2,1]],[[1,2,2,1],[2,3,0,0],[3,2,2,0],[1,2,2,1]],[[1,2,2,1],[3,3,0,0],[2,2,2,0],[1,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,2,2,0],[1,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,2,2,0],[1,2,2,1]],[[0,1,2,0],[1,3,1,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[0,0,2,2]],[[0,1,2,0],[1,4,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,1,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,1,2],[3,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,1,2],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,1,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[0,1,1,2]],[[0,1,2,0],[1,4,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,1,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,1,2],[3,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,1,2],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[1,4,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,1,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,1,2],[3,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,1,2],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,1,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[0,2,0,2]],[[0,1,2,0],[1,4,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,1,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,1,2],[3,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,1,2],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,1,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[1,3,1,2],[2,3,3,3],[0,2,1,0]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,3,0,0],[2,2,1,2],[1,3,2,0]],[[0,1,2,0],[1,4,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,1,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,1,2],[3,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,1,2],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,1,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[2,0,1,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[1,0,1,2]],[[0,1,2,0],[1,4,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,1,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,1,2],[3,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,1,2],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[2,0,2,0]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[1,0,3,0]],[[0,1,2,0],[1,4,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,1,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,1,2],[3,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,1,2],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,1,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[2,1,0,1]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[1,1,0,2]],[[0,1,2,0],[1,4,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,1,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,1,2],[3,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,1,2],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,1,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[1,3,1,2],[2,3,3,3],[1,1,1,0]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,3,0,0],[2,2,1,2],[2,2,2,0]],[[1,2,2,1],[2,3,0,0],[3,2,1,2],[1,2,2,0]],[[1,2,2,1],[3,3,0,0],[2,2,1,2],[1,2,2,0]],[[1,3,2,1],[2,3,0,0],[2,2,1,2],[1,2,2,0]],[[2,2,2,1],[2,3,0,0],[2,2,1,2],[1,2,2,0]],[[1,2,2,1],[2,3,0,0],[2,2,1,2],[2,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,2,1,2],[1,1,2,1]],[[1,2,2,1],[3,3,0,0],[2,2,1,2],[1,1,2,1]],[[1,3,2,1],[2,3,0,0],[2,2,1,2],[1,1,2,1]],[[0,1,2,0],[1,4,1,2],[2,3,3,2],[1,2,0,0]],[[0,1,2,0],[1,3,1,2],[3,3,3,2],[1,2,0,0]],[[0,1,2,0],[1,3,1,2],[2,4,3,2],[1,2,0,0]],[[0,1,2,0],[1,3,1,2],[2,3,3,2],[2,2,0,0]],[[2,2,2,1],[2,3,0,0],[2,2,1,2],[1,1,2,1]],[[1,2,2,1],[2,3,0,0],[3,2,1,2],[0,2,2,1]],[[1,2,2,1],[3,3,0,0],[2,2,1,2],[0,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,2,1,2],[0,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[2,3,0,0],[2,2,1,1],[1,3,2,1]],[[1,2,2,1],[2,3,0,0],[2,2,1,1],[2,2,2,1]],[[1,2,2,1],[2,3,0,0],[3,2,1,1],[1,2,2,1]],[[1,2,2,1],[3,3,0,0],[2,2,1,1],[1,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,2,1,1],[1,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,2,1,1],[1,2,2,1]],[[1,2,2,1],[2,3,0,0],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[2,3,0,0],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[2,3,0,0],[3,2,0,2],[1,2,2,1]],[[1,2,2,1],[3,3,0,0],[2,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,0],[0,3,4,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,0],[0,3,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,0],[0,3,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,0],[0,3,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,2,0],[1,2,4,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,0],[1,2,3,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,0],[1,2,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,0],[1,2,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,0],[1,2,3,2],[1,2,2,2]],[[0,1,2,0],[1,4,2,0],[1,3,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,0],[1,4,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,0],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,0],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,0],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,0],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,4,2,0],[1,3,3,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,0],[1,4,3,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,0],[1,3,4,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,0],[1,3,3,2],[1,1,3,1]],[[0,1,2,0],[1,3,2,0],[1,3,3,2],[1,1,2,2]],[[0,1,2,0],[1,4,2,0],[1,3,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,2,0],[1,4,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,2,0],[1,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,3,2,0],[1,3,3,2],[2,2,1,1]],[[0,1,2,0],[1,3,2,0],[1,3,3,2],[1,3,1,1]],[[0,1,2,0],[1,3,2,0],[3,1,3,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,0],[2,1,4,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,0],[2,1,3,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,0],[2,1,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,0],[2,1,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,0],[2,1,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,2,0],[3,2,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,0],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,0],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,0],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,0],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[1,3,2,0],[2,2,4,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,0],[2,2,3,2],[0,3,2,1]],[[0,1,2,0],[1,3,2,0],[2,2,3,2],[0,2,3,1]],[[0,1,2,0],[1,3,2,0],[2,2,3,2],[0,2,2,2]],[[0,1,2,0],[1,3,2,0],[3,2,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,2,0],[2,2,3,2],[2,2,1,1]],[[0,1,2,0],[1,3,2,0],[2,2,3,2],[1,3,1,1]],[[0,1,2,0],[1,3,2,0],[3,3,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,0],[2,3,1,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,0],[2,3,1,2],[1,3,2,1]],[[0,1,2,0],[1,4,2,0],[2,3,2,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,0],[3,3,2,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,0],[2,4,2,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,0],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[1,3,2,0],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[1,3,2,0],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[1,4,2,0],[2,3,2,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,0],[3,3,2,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,0],[2,4,2,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,0],[2,3,2,2],[2,1,2,1]],[[0,1,2,0],[1,4,2,0],[2,3,3,2],[0,1,2,1]],[[0,1,2,0],[1,3,2,0],[3,3,3,2],[0,1,2,1]],[[0,1,2,0],[1,3,2,0],[2,4,3,2],[0,1,2,1]],[[0,1,2,0],[1,3,2,0],[2,3,4,2],[0,1,2,1]],[[0,1,2,0],[1,3,2,0],[2,3,3,2],[0,1,3,1]],[[0,1,2,0],[1,3,2,0],[2,3,3,2],[0,1,2,2]],[[0,1,2,0],[1,4,2,0],[2,3,3,2],[0,2,1,1]],[[0,1,2,0],[1,3,2,0],[3,3,3,2],[0,2,1,1]],[[0,1,2,0],[1,3,2,0],[2,4,3,2],[0,2,1,1]],[[0,1,2,0],[1,3,2,0],[2,3,4,2],[0,2,1,1]],[[0,1,2,0],[1,3,2,0],[2,3,3,2],[0,3,1,1]],[[0,1,2,0],[1,4,2,0],[2,3,3,2],[1,0,2,1]],[[0,1,2,0],[1,3,2,0],[3,3,3,2],[1,0,2,1]],[[0,1,2,0],[1,3,2,0],[2,4,3,2],[1,0,2,1]],[[0,1,2,0],[1,3,2,0],[2,3,4,2],[1,0,2,1]],[[0,1,2,0],[1,3,2,0],[2,3,3,2],[2,0,2,1]],[[0,1,2,0],[1,3,2,0],[2,3,3,2],[1,0,3,1]],[[0,1,2,0],[1,3,2,0],[2,3,3,2],[1,0,2,2]],[[0,1,2,0],[1,4,2,0],[2,3,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,2,0],[3,3,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,2,0],[2,4,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,2,0],[2,3,4,2],[1,1,1,1]],[[0,1,2,0],[1,3,2,0],[2,3,3,2],[2,1,1,1]],[[0,1,2,0],[1,3,2,0],[3,3,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,2,0],[2,4,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,1],[2,3,0,0],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,0,0],[2,1,3,2],[2,2,1,0]],[[1,2,2,1],[2,3,0,0],[3,1,3,2],[1,2,1,0]],[[1,2,2,1],[3,3,0,0],[2,1,3,2],[1,2,1,0]],[[1,3,2,1],[2,3,0,0],[2,1,3,2],[1,2,1,0]],[[2,2,2,1],[2,3,0,0],[2,1,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,2,1],[0,3,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[0,3,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[0,3,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,1],[0,3,2,2],[1,2,2,2]],[[0,1,2,0],[1,3,2,1],[0,3,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[0,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[0,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,2,1],[0,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,2,1],[0,3,4,2],[1,2,1,1]],[[0,1,2,0],[1,3,2,1],[0,3,3,3],[1,2,1,1]],[[0,1,2,0],[1,3,2,1],[0,3,3,2],[1,2,1,2]],[[0,1,2,0],[1,3,2,1],[0,3,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,1],[0,3,3,3],[1,2,2,0]],[[0,1,2,0],[1,3,2,1],[0,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,2,1],[0,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,2,1],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,1],[1,2,2,2],[1,2,2,2]],[[0,1,2,0],[1,3,2,1],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,2,1],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,2,1],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[1,3,2,1],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[1,3,2,1],[1,2,3,2],[1,2,1,2]],[[0,1,2,0],[1,3,2,1],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,1],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[1,3,2,1],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,2,1],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,2,1],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[1,4,2,1],[1,3,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,4,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,1,3],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,1,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,1,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,1,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,1],[1,3,1,2],[1,2,2,2]],[[0,1,2,0],[1,4,2,1],[1,3,2,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[1,3,2,1],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[1,3,2,1],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[1,3,2,1],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[1,4,2,1],[1,3,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,1],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,1],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[1,3,2,1],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[1,3,2,1],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[1,4,2,1],[1,3,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,4,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,0],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,0],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,0],[1,2,3,1]],[[0,1,2,0],[1,4,2,1],[1,3,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[1,4,2,1],[1,3,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,2,1],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,2,1],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,1],[1,3,1,1]],[[0,1,2,0],[1,3,2,1],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,2],[1,0,2,2]],[[0,1,2,0],[1,4,2,1],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,2,1],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,2,1],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,2],[1,1,1,2]],[[0,1,2,0],[1,4,2,1],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,2,1],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,2,1],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[1,3,2,1],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[1,3,2,1],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[1,4,2,1],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,2,1],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,2,1],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[1,3,2,1],[1,3,3,2],[1,2,0,2]],[[0,1,2,0],[1,4,2,1],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,2,1],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,2,1],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[1,3,2,1],[1,3,3,3],[1,2,1,0]],[[0,1,2,0],[1,3,2,1],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[1,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,0,0],[2,1,3,2],[1,3,0,1]],[[1,2,2,1],[2,3,0,0],[2,1,3,2],[2,2,0,1]],[[1,2,2,1],[2,3,0,0],[3,1,3,2],[1,2,0,1]],[[1,2,2,1],[3,3,0,0],[2,1,3,2],[1,2,0,1]],[[1,3,2,1],[2,3,0,0],[2,1,3,2],[1,2,0,1]],[[2,2,2,1],[2,3,0,0],[2,1,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,2,1],[3,1,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,1,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,1,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,1,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[2,1,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,1],[2,1,2,2],[1,2,2,2]],[[0,1,2,0],[1,3,2,1],[3,1,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,2,1],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,2,1],[2,1,4,2],[1,2,1,1]],[[0,1,2,0],[1,3,2,1],[2,1,3,3],[1,2,1,1]],[[0,1,2,0],[1,3,2,1],[2,1,3,2],[1,2,1,2]],[[0,1,2,0],[1,3,2,1],[3,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,1,3,3],[1,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,2,1],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,2,1],[3,2,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,1,3],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,1,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,1,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,1,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,1],[2,2,1,2],[1,2,2,2]],[[0,1,2,0],[1,3,2,1],[3,2,2,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,2,1],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,2,1],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,2,1],[1,2,3,1]],[[0,1,2,0],[1,3,2,1],[2,2,2,1],[1,2,2,2]],[[0,1,2,0],[1,3,2,1],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[1,3,2,1],[2,2,2,2],[0,2,2,2]],[[0,1,2,0],[1,3,2,1],[3,2,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,2,2,2],[2,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,2,2,2],[1,3,2,0]],[[0,1,2,0],[1,3,2,1],[2,2,2,2],[1,2,3,0]],[[0,1,2,0],[1,3,2,1],[3,2,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,0],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,0],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,0],[1,2,3,1]],[[0,1,2,0],[1,3,2,1],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[1,3,2,1],[3,2,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,1],[2,2,1,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,1],[1,3,1,1]],[[0,1,2,0],[1,3,2,1],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,2],[0,2,1,2]],[[0,1,2,0],[1,3,2,1],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[1,3,2,1],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[1,3,2,1],[3,2,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,2],[2,2,0,1]],[[0,1,2,0],[1,3,2,1],[2,2,3,2],[1,3,0,1]],[[0,1,2,0],[1,3,2,1],[3,2,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,2,1],[2,2,3,2],[2,2,1,0]],[[0,1,2,0],[1,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,3,0,0],[2,1,3,1],[1,3,1,1]],[[0,1,2,0],[1,3,2,1],[3,3,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,0,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,0,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,1],[3,3,1,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,1,1],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,1,1],[1,3,2,1]],[[0,1,2,0],[1,4,2,1],[2,3,1,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[3,3,1,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,4,1,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,1,3],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,1,2],[0,3,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,1,2],[0,2,3,1]],[[0,1,2,0],[1,3,2,1],[2,3,1,2],[0,2,2,2]],[[0,1,2,0],[1,4,2,1],[2,3,1,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[3,3,1,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[2,4,1,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,1,2],[2,1,2,1]],[[0,1,2,0],[1,3,2,1],[3,3,1,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,1,2],[2,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,1,2],[1,3,2,0]],[[0,1,2,0],[1,3,2,1],[3,3,2,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,2,0],[2,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,2,0],[1,3,2,1]],[[0,1,2,0],[1,4,2,1],[2,3,2,1],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[3,3,2,1],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[1,3,2,1],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[1,4,2,1],[2,3,2,1],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[3,3,2,1],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[2,4,2,1],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,2,1],[2,1,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[1,3,2,1],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[1,4,2,1],[2,3,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,2,1],[3,3,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[1,3,2,1],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[1,3,2,1],[2,3,2,2],[1,0,2,2]],[[0,1,2,0],[1,4,2,1],[2,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,2,1],[3,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,2,1],[2,4,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,3,0,0],[2,1,3,1],[2,2,1,1]],[[1,2,2,1],[2,3,0,0],[3,1,3,1],[1,2,1,1]],[[1,2,2,1],[3,3,0,0],[2,1,3,1],[1,2,1,1]],[[1,3,2,1],[2,3,0,0],[2,1,3,1],[1,2,1,1]],[[2,2,2,1],[2,3,0,0],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[2,3,0,0],[2,1,3,0],[1,2,3,1]],[[1,2,2,1],[2,3,0,0],[2,1,3,0],[1,3,2,1]],[[1,2,2,1],[2,3,0,0],[2,1,3,0],[2,2,2,1]],[[0,1,2,0],[1,4,2,1],[2,3,3,0],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[3,3,3,0],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,4,3,0],[0,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,0],[0,3,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,0],[0,2,3,1]],[[0,1,2,0],[1,4,2,1],[2,3,3,0],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[3,3,3,0],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[2,4,3,0],[1,1,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,0],[2,1,2,1]],[[0,1,2,0],[1,4,2,1],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,3,2,1],[3,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,3,2,1],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,1],[0,1,2,2]],[[0,1,2,0],[1,4,2,1],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,2,1],[3,3,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,2,1],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,2,1],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,1],[0,3,1,1]],[[0,1,2,0],[1,4,2,1],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,2,1],[3,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,2,1],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,1],[2,0,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,1],[1,0,2,2]],[[0,1,2,0],[1,4,2,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,2,1],[3,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,2,1],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,2,1],[2,3,4,1],[1,1,1,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,1],[2,1,1,1]],[[0,1,2,0],[1,4,2,1],[2,3,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,2,1],[3,3,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,2,1],[2,4,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,3,0,0],[3,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,3,0,0],[2,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[0,0,2,2]],[[0,1,2,0],[1,4,2,1],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,2,1],[3,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,2,1],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,2,1],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[0,1,1,2]],[[0,1,2,0],[1,4,2,1],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,2,1],[3,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,2,1],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[1,4,2,1],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,2,1],[3,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,2,1],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,2,1],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[0,2,0,2]],[[0,1,2,0],[1,4,2,1],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,2,1],[3,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,2,1],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,2,1],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[1,3,2,1],[2,3,3,3],[0,2,1,0]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,3,0,0],[2,1,2,2],[1,2,3,0]],[[1,2,2,1],[2,3,0,0],[2,1,2,2],[1,3,2,0]],[[1,2,2,1],[2,3,0,0],[2,1,2,2],[2,2,2,0]],[[1,2,2,1],[2,3,0,0],[3,1,2,2],[1,2,2,0]],[[0,1,2,0],[1,4,2,1],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,2,1],[3,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,2,1],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,2,1],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[2,0,1,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[1,0,1,2]],[[0,1,2,0],[1,4,2,1],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,2,1],[3,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,2,1],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[2,0,2,0]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[1,0,3,0]],[[0,1,2,0],[1,4,2,1],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,2,1],[3,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,2,1],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,2,1],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[2,1,0,1]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[1,1,0,2]],[[0,1,2,0],[1,4,2,1],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,2,1],[3,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,2,1],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,2,1],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[1,3,2,1],[2,3,3,3],[1,1,1,0]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[3,3,0,0],[2,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,3,0,0],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,3,0,0],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,3,0,0],[2,1,2,1],[1,2,2,2]],[[1,2,2,1],[2,3,0,0],[2,1,2,1],[1,2,3,1]],[[1,2,2,1],[2,3,0,0],[2,1,2,1],[1,3,2,1]],[[1,2,2,1],[2,3,0,0],[2,1,2,1],[2,2,2,1]],[[1,2,2,1],[2,3,0,0],[3,1,2,1],[1,2,2,1]],[[0,1,2,0],[1,4,2,1],[2,3,3,2],[1,2,0,0]],[[0,1,2,0],[1,3,2,1],[3,3,3,2],[1,2,0,0]],[[0,1,2,0],[1,3,2,1],[2,4,3,2],[1,2,0,0]],[[0,1,2,0],[1,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[3,3,0,0],[2,1,2,1],[1,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,1,2,1],[1,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,1,2,1],[1,2,2,1]],[[1,2,2,1],[2,3,0,0],[2,1,1,2],[1,2,2,2]],[[1,2,2,1],[2,3,0,0],[2,1,1,2],[1,2,3,1]],[[1,2,2,1],[2,3,0,0],[2,1,1,2],[1,3,2,1]],[[1,2,2,1],[2,3,0,0],[2,1,1,2],[2,2,2,1]],[[1,2,2,1],[2,3,0,0],[3,1,1,2],[1,2,2,1]],[[1,2,2,1],[3,3,0,0],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[2,3,0,0],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[2,3,0,0],[2,0,3,2],[1,3,2,0]],[[1,2,2,1],[2,3,0,0],[2,0,3,2],[2,2,2,0]],[[1,2,2,1],[2,3,0,0],[3,0,3,2],[1,2,2,0]],[[1,2,2,1],[3,3,0,0],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[2,3,0,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[0,3,4,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[0,3,3,0],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[0,3,3,0],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[0,3,3,0],[1,2,2,2]],[[0,1,2,0],[1,3,2,2],[0,3,4,1],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[0,3,3,1],[1,3,2,0]],[[0,1,2,0],[1,3,2,2],[0,3,3,1],[1,2,3,0]],[[2,2,2,1],[2,3,0,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[2,3,0,0],[2,0,3,1],[1,2,2,2]],[[1,2,2,1],[2,3,0,0],[2,0,3,1],[1,2,3,1]],[[1,2,2,1],[2,3,0,0],[2,0,3,1],[1,3,2,1]],[[1,2,2,1],[2,3,0,0],[2,0,3,1],[2,2,2,1]],[[1,2,2,1],[2,3,0,0],[3,0,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,3],[1,0,3,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,0,3,3],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,0,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[1,0,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,2,3],[1,1,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,1,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,1,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,1,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[1,1,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[1,1,2,2],[1,2,2,2]],[[0,1,2,0],[1,3,2,2],[1,1,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,1,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,1,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[1,1,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[1,1,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,2,3],[1,1,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,2,2],[1,1,4,2],[1,2,1,1]],[[0,1,2,0],[1,3,2,2],[1,1,3,3],[1,2,1,1]],[[0,1,2,0],[1,3,2,2],[1,1,3,2],[1,2,1,2]],[[0,1,2,0],[1,3,2,3],[1,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[1,1,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[1,1,3,3],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[1,1,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,2,2],[1,1,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,2,2],[1,1,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,2,3],[1,2,2,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[1,2,2,3],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[1,2,2,2],[1,1,3,1]],[[0,1,2,0],[1,3,2,2],[1,2,2,2],[1,1,2,2]],[[0,1,2,0],[1,3,2,2],[1,2,4,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,0],[2,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,0],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,0],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,0],[1,2,2,2]],[[0,1,2,0],[1,3,2,2],[1,2,4,1],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,1],[1,1,3,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,1],[1,1,2,2]],[[0,1,2,0],[1,3,2,2],[1,2,4,1],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[1,2,3,1],[2,2,2,0]],[[0,1,2,0],[1,3,2,2],[1,2,3,1],[1,3,2,0]],[[0,1,2,0],[1,3,2,2],[1,2,3,1],[1,2,3,0]],[[0,1,2,0],[1,3,2,3],[1,2,3,2],[1,0,2,1]],[[0,1,2,0],[1,3,2,2],[1,2,4,2],[1,0,2,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,3],[1,0,2,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,2],[1,0,2,2]],[[0,1,2,0],[1,3,2,3],[1,2,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,2,2],[1,2,4,2],[1,1,1,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,3],[1,1,1,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,2],[1,1,1,2]],[[0,1,2,0],[1,3,2,3],[1,2,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,2,2],[1,2,4,2],[1,1,2,0]],[[0,1,2,0],[1,3,2,2],[1,2,3,3],[1,1,2,0]],[[0,1,2,0],[1,3,2,2],[1,2,3,2],[1,1,3,0]],[[0,1,2,0],[1,3,2,3],[1,2,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,2,2],[1,2,4,2],[1,2,0,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,3],[1,2,0,1]],[[0,1,2,0],[1,3,2,2],[1,2,3,2],[1,2,0,2]],[[0,1,2,0],[1,3,2,3],[1,2,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,2,2],[1,2,4,2],[1,2,1,0]],[[0,1,2,0],[1,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[3,3,0,0],[2,0,3,1],[1,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,0,3,1],[1,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,1],[2,3,0,0],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[2,3,0,0],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[2,3,0,0],[2,0,2,2],[1,3,2,1]],[[1,2,2,1],[2,3,0,0],[2,0,2,2],[2,2,2,1]],[[0,1,2,0],[1,4,2,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,3],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,4,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,3,0,3],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,3,0,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,3,0,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[1,3,0,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[1,3,0,2],[1,2,2,2]],[[0,1,2,0],[1,4,2,2],[1,3,2,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,4,2,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,3,2,0],[2,2,2,1]],[[0,1,2,0],[1,3,2,2],[1,3,2,0],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[1,3,2,0],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[1,3,2,0],[1,2,2,2]],[[0,1,2,0],[1,4,2,2],[1,3,2,1],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[1,4,2,1],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[1,3,2,1],[2,2,2,0]],[[0,1,2,0],[1,3,2,2],[1,3,2,1],[1,3,2,0]],[[0,1,2,0],[1,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[2,3,0,0],[3,0,2,2],[1,2,2,1]],[[1,2,2,1],[3,3,0,0],[2,0,2,2],[1,2,2,1]],[[1,3,2,1],[2,3,0,0],[2,0,2,2],[1,2,2,1]],[[2,2,2,1],[2,3,0,0],[2,0,2,2],[1,2,2,1]],[[0,1,2,0],[1,4,2,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[1,4,3,0],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[1,3,4,0],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[1,3,3,0],[1,1,3,1]],[[0,1,2,0],[1,3,2,2],[1,3,3,0],[1,1,2,2]],[[0,1,2,0],[1,4,2,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,0],[1,3,2,2],[1,4,3,0],[1,2,1,1]],[[0,1,2,0],[1,3,2,2],[1,3,4,0],[1,2,1,1]],[[0,1,2,0],[1,3,2,2],[1,3,3,0],[2,2,1,1]],[[0,1,2,0],[1,3,2,2],[1,3,3,0],[1,3,1,1]],[[0,1,2,0],[1,4,2,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,2,2],[1,4,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,2,2],[1,3,4,1],[1,1,1,1]],[[0,1,2,0],[1,4,2,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,0],[1,3,2,2],[1,4,3,1],[1,1,2,0]],[[0,1,2,0],[1,3,2,2],[1,3,4,1],[1,1,2,0]],[[0,1,2,0],[1,3,2,2],[1,3,3,1],[1,1,3,0]],[[0,1,2,0],[1,4,2,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,2,2],[1,4,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,2,2],[1,3,4,1],[1,2,0,1]],[[0,1,2,0],[1,3,2,2],[1,3,3,1],[2,2,0,1]],[[0,1,2,0],[1,3,2,2],[1,3,3,1],[1,3,0,1]],[[0,1,2,0],[1,4,2,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,0],[1,3,2,2],[1,4,3,1],[1,2,1,0]],[[0,1,2,0],[1,3,2,2],[1,3,4,1],[1,2,1,0]],[[0,1,2,0],[1,3,2,2],[1,3,3,1],[2,2,1,0]],[[0,1,2,0],[1,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[3,3,0,0],[1,3,3,2],[1,2,0,0]],[[1,3,2,1],[2,3,0,0],[1,3,3,2],[1,2,0,0]],[[2,2,2,1],[2,3,0,0],[1,3,3,2],[1,2,0,0]],[[1,2,2,1],[3,3,0,0],[1,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,3,0,0],[1,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,3,0,0],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[3,3,0,0],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,3,0,0],[1,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,3,0,0],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,3,0,0],[1,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,3,0,0],[1,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,3,0,0],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[3,3,0,0],[1,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,3,0,0],[1,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,3,0,0],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,2,3],[2,0,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[3,0,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,0,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,0,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,0,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[2,0,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[2,0,2,2],[1,2,2,2]],[[0,1,2,0],[1,3,2,2],[3,0,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,0,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,0,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,0,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[2,0,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[2,0,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,2,3],[2,0,3,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,0,3,3],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,0,3,2],[0,2,3,1]],[[0,1,2,0],[1,3,2,2],[2,0,3,2],[0,2,2,2]],[[0,1,2,0],[1,3,2,3],[2,0,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,2,2],[2,0,4,2],[1,2,1,1]],[[0,1,2,0],[1,3,2,2],[2,0,3,3],[1,2,1,1]],[[0,1,2,0],[1,3,2,2],[2,0,3,2],[1,2,1,2]],[[0,1,2,0],[1,3,2,3],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[3,0,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,0,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,0,3,3],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,0,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,0,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,2,2],[2,0,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,2,3],[2,1,2,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,1,2,3],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,1,2,2],[0,3,2,1]],[[0,1,2,0],[1,3,2,2],[2,1,2,2],[0,2,3,1]],[[0,1,2,0],[1,3,2,2],[2,1,2,2],[0,2,2,2]],[[0,1,2,0],[1,3,2,2],[3,1,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,1,4,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,1,3,0],[2,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,1,3,0],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[2,1,3,0],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[2,1,3,0],[1,2,2,2]],[[0,1,2,0],[1,3,2,2],[2,1,4,1],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,1,3,1],[0,3,2,1]],[[0,1,2,0],[1,3,2,2],[2,1,3,1],[0,2,3,1]],[[0,1,2,0],[1,3,2,2],[2,1,3,1],[0,2,2,2]],[[0,1,2,0],[1,3,2,2],[3,1,3,1],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,1,4,1],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,1,3,1],[2,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,1,3,1],[1,3,2,0]],[[0,1,2,0],[1,3,2,2],[2,1,3,1],[1,2,3,0]],[[0,1,2,0],[1,3,2,3],[2,1,3,2],[0,2,1,1]],[[0,1,2,0],[1,3,2,2],[2,1,4,2],[0,2,1,1]],[[0,1,2,0],[1,3,2,2],[2,1,3,3],[0,2,1,1]],[[0,1,2,0],[1,3,2,2],[2,1,3,2],[0,2,1,2]],[[0,1,2,0],[1,3,2,3],[2,1,3,2],[0,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,1,4,2],[0,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,1,3,3],[0,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,1,3,2],[0,3,2,0]],[[0,1,2,0],[1,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[3,3,0,0],[1,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,3,0,0],[1,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,3,0,0],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[3,3,0,0],[1,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,3,0,0],[1,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,3,0,0],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,2,3],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[3,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,0,3],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,0,2],[2,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,0,2],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,0,2],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[2,2,0,2],[1,2,2,2]],[[0,1,2,0],[1,3,2,2],[3,2,2,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,2,0],[2,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,2,0],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,2,0],[1,2,3,1]],[[0,1,2,0],[1,3,2,2],[2,2,2,0],[1,2,2,2]],[[0,1,2,0],[1,3,2,2],[3,2,2,1],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,2,2,1],[2,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,2,2,1],[1,3,2,0]],[[0,1,2,0],[1,3,2,2],[2,2,2,1],[1,2,3,0]],[[0,1,2,0],[1,3,2,3],[2,2,2,2],[0,1,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,2,3],[0,1,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,2,2],[0,1,3,1]],[[0,1,2,0],[1,3,2,2],[2,2,2,2],[0,1,2,2]],[[0,1,2,0],[1,3,2,3],[2,2,2,2],[1,0,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,2,3],[1,0,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,2,2],[1,0,3,1]],[[0,1,2,0],[1,3,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[3,3,0,0],[1,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,3,0,0],[1,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,3,0,0],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[3,3,0,0],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,2,2],[2,2,4,0],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,0],[0,3,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,0],[0,2,3,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,0],[0,2,2,2]],[[0,1,2,0],[1,3,2,2],[3,2,3,0],[1,2,1,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,0],[2,2,1,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,0],[1,3,1,1]],[[0,1,2,0],[1,3,2,2],[2,2,4,1],[0,1,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,1],[0,1,3,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,1],[0,1,2,2]],[[0,1,2,0],[1,3,2,2],[2,2,4,1],[0,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,2,3,1],[0,3,2,0]],[[0,1,2,0],[1,3,2,2],[2,2,3,1],[0,2,3,0]],[[0,1,2,0],[1,3,2,2],[2,2,4,1],[1,0,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,1],[1,0,3,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,1],[1,0,2,2]],[[0,1,2,0],[1,3,2,2],[3,2,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,1],[2,2,0,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,1],[1,3,0,1]],[[0,1,2,0],[1,3,2,2],[3,2,3,1],[1,2,1,0]],[[0,1,2,0],[1,3,2,2],[2,2,3,1],[2,2,1,0]],[[0,1,2,0],[1,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,3,2,1],[2,3,0,0],[1,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,3,0,0],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,2,3],[2,2,3,2],[0,0,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,4,2],[0,0,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,3],[0,0,2,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,2],[0,0,2,2]],[[0,1,2,0],[1,3,2,3],[2,2,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,2,2],[2,2,4,2],[0,1,1,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,3],[0,1,1,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,2],[0,1,1,2]],[[0,1,2,0],[1,3,2,3],[2,2,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,2,2],[2,2,4,2],[0,1,2,0]],[[0,1,2,0],[1,3,2,2],[2,2,3,3],[0,1,2,0]],[[0,1,2,0],[1,3,2,2],[2,2,3,2],[0,1,3,0]],[[0,1,2,0],[1,3,2,3],[2,2,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,2,2],[2,2,4,2],[0,2,0,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,3],[0,2,0,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,2],[0,2,0,2]],[[0,1,2,0],[1,3,2,3],[2,2,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,2,2],[2,2,4,2],[0,2,1,0]],[[0,1,2,0],[1,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[3,3,0,0],[1,3,3,1],[1,2,0,1]],[[1,3,2,1],[2,3,0,0],[1,3,3,1],[1,2,0,1]],[[2,2,2,1],[2,3,0,0],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,2,3],[2,2,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,2,2],[2,2,4,2],[1,0,1,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,3],[1,0,1,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,2],[1,0,1,2]],[[0,1,2,0],[1,3,2,3],[2,2,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,2,2],[2,2,4,2],[1,0,2,0]],[[0,1,2,0],[1,3,2,2],[2,2,3,3],[1,0,2,0]],[[0,1,2,0],[1,3,2,2],[2,2,3,2],[1,0,3,0]],[[0,1,2,0],[1,3,2,3],[2,2,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,2,2],[2,2,4,2],[1,1,0,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,3],[1,1,0,1]],[[0,1,2,0],[1,3,2,2],[2,2,3,2],[1,1,0,2]],[[0,1,2,0],[1,3,2,3],[2,2,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,2,2],[2,2,4,2],[1,1,1,0]],[[0,1,2,0],[1,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[3,3,0,0],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,3,0,0],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,3,0,0],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,3,0,0],[1,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,3,0,0],[1,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,3,0,0],[1,3,3,1],[1,0,2,1]],[[1,2,2,1],[3,3,0,0],[1,3,3,1],[0,2,1,1]],[[1,3,2,1],[2,3,0,0],[1,3,3,1],[0,2,1,1]],[[2,2,2,1],[2,3,0,0],[1,3,3,1],[0,2,1,1]],[[1,2,2,1],[3,3,0,0],[1,3,3,1],[0,1,2,1]],[[1,3,2,1],[2,3,0,0],[1,3,3,1],[0,1,2,1]],[[2,2,2,1],[2,3,0,0],[1,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,4,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,3],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[3,3,0,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,4,0,2],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,0,3],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,0,2],[0,3,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,0,2],[0,2,3,1]],[[0,1,2,0],[1,3,2,2],[2,3,0,2],[0,2,2,2]],[[0,1,2,0],[1,4,2,2],[2,3,0,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[3,3,0,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[2,4,0,2],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,0,2],[2,1,2,1]],[[0,1,2,0],[1,3,2,2],[3,3,1,0],[1,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,1,0],[2,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,1,0],[1,3,2,1]],[[0,1,2,0],[1,3,2,2],[3,3,1,1],[1,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,1,1],[2,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[3,3,0,0],[1,3,3,0],[1,1,2,1]],[[1,3,2,1],[2,3,0,0],[1,3,3,0],[1,1,2,1]],[[2,2,2,1],[2,3,0,0],[1,3,3,0],[1,1,2,1]],[[1,2,2,1],[3,3,0,0],[1,3,3,0],[0,2,2,1]],[[1,3,2,1],[2,3,0,0],[1,3,3,0],[0,2,2,1]],[[2,2,2,1],[2,3,0,0],[1,3,3,0],[0,2,2,1]],[[0,1,2,0],[1,4,2,2],[2,3,2,0],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[3,3,2,0],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,4,2,0],[0,2,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,2,0],[0,3,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,2,0],[0,2,3,1]],[[0,1,2,0],[1,3,2,2],[2,3,2,0],[0,2,2,2]],[[0,1,2,0],[1,4,2,2],[2,3,2,0],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[3,3,2,0],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[2,4,2,0],[1,1,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,2,0],[2,1,2,1]],[[0,1,2,0],[1,4,2,2],[2,3,2,1],[0,2,2,0]],[[0,1,2,0],[1,3,2,2],[3,3,2,1],[0,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,4,2,1],[0,2,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,2,1],[0,3,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,2,1],[0,2,3,0]],[[0,1,2,0],[1,4,2,2],[2,3,2,1],[1,1,2,0]],[[0,1,2,0],[1,3,2,2],[3,3,2,1],[1,1,2,0]],[[0,1,2,0],[1,3,2,2],[2,4,2,1],[1,1,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[3,3,0,0],[1,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,3,0,0],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,3,0,0],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,3,0,0],[1,3,2,2],[0,2,2,0]],[[1,3,2,1],[2,3,0,0],[1,3,2,2],[0,2,2,0]],[[2,2,2,1],[2,3,0,0],[1,3,2,2],[0,2,2,0]],[[1,2,2,1],[3,3,0,0],[1,3,2,1],[1,1,2,1]],[[1,3,2,1],[2,3,0,0],[1,3,2,1],[1,1,2,1]],[[2,2,2,1],[2,3,0,0],[1,3,2,1],[1,1,2,1]],[[1,2,2,1],[3,3,0,0],[1,3,2,1],[0,2,2,1]],[[1,3,2,1],[2,3,0,0],[1,3,2,1],[0,2,2,1]],[[2,2,2,1],[2,3,0,0],[1,3,2,1],[0,2,2,1]],[[0,1,2,0],[1,4,2,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[1,3,2,2],[3,3,3,0],[0,1,2,1]],[[0,1,2,0],[1,3,2,2],[2,4,3,0],[0,1,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,4,0],[0,1,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,0],[0,1,3,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,0],[0,1,2,2]],[[0,1,2,0],[1,4,2,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[1,3,2,2],[3,3,3,0],[0,2,1,1]],[[0,1,2,0],[1,3,2,2],[2,4,3,0],[0,2,1,1]],[[0,1,2,0],[1,3,2,2],[2,3,4,0],[0,2,1,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,0],[0,3,1,1]],[[0,1,2,0],[1,4,2,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[1,3,2,2],[3,3,3,0],[1,0,2,1]],[[0,1,2,0],[1,3,2,2],[2,4,3,0],[1,0,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,4,0],[1,0,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,0],[2,0,2,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,0],[1,0,3,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,0],[1,0,2,2]],[[0,1,2,0],[1,4,2,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[1,3,2,2],[3,3,3,0],[1,1,1,1]],[[0,1,2,0],[1,3,2,2],[2,4,3,0],[1,1,1,1]],[[0,1,2,0],[1,3,2,2],[2,3,4,0],[1,1,1,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,0],[2,1,1,1]],[[0,1,2,0],[1,4,2,2],[2,3,3,0],[1,2,0,1]],[[0,1,2,0],[1,3,2,2],[3,3,3,0],[1,2,0,1]],[[0,1,2,0],[1,3,2,2],[2,4,3,0],[1,2,0,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[3,3,0,0],[1,3,1,2],[1,1,2,1]],[[1,3,2,1],[2,3,0,0],[1,3,1,2],[1,1,2,1]],[[2,2,2,1],[2,3,0,0],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[3,3,0,0],[1,3,1,2],[0,2,2,1]],[[1,3,2,1],[2,3,0,0],[1,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,3,0,0],[1,3,1,2],[0,2,2,1]],[[0,1,2,0],[1,4,2,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[1,3,2,2],[3,3,3,1],[0,1,1,1]],[[0,1,2,0],[1,3,2,2],[2,4,3,1],[0,1,1,1]],[[0,1,2,0],[1,3,2,2],[2,3,4,1],[0,1,1,1]],[[0,1,2,0],[1,4,2,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[1,3,2,2],[3,3,3,1],[0,1,2,0]],[[0,1,2,0],[1,3,2,2],[2,4,3,1],[0,1,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,4,1],[0,1,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,3,1],[0,1,3,0]],[[0,1,2,0],[1,4,2,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[1,3,2,2],[3,3,3,1],[0,2,0,1]],[[0,1,2,0],[1,3,2,2],[2,4,3,1],[0,2,0,1]],[[0,1,2,0],[1,3,2,2],[2,3,4,1],[0,2,0,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,1],[0,3,0,1]],[[0,1,2,0],[1,4,2,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[1,3,2,2],[3,3,3,1],[0,2,1,0]],[[0,1,2,0],[1,3,2,2],[2,4,3,1],[0,2,1,0]],[[0,1,2,0],[1,3,2,2],[2,3,4,1],[0,2,1,0]],[[0,1,2,0],[1,3,2,2],[2,3,3,1],[0,3,1,0]],[[0,1,2,0],[1,4,2,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[1,3,2,2],[3,3,3,1],[1,0,1,1]],[[0,1,2,0],[1,3,2,2],[2,4,3,1],[1,0,1,1]],[[0,1,2,0],[1,3,2,2],[2,3,4,1],[1,0,1,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,1],[2,0,1,1]],[[0,1,2,0],[1,4,2,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[1,3,2,2],[3,3,3,1],[1,0,2,0]],[[0,1,2,0],[1,3,2,2],[2,4,3,1],[1,0,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,4,1],[1,0,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,3,1],[2,0,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,3,1],[1,0,3,0]],[[0,1,2,0],[1,4,2,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[1,3,2,2],[3,3,3,1],[1,1,0,1]],[[0,1,2,0],[1,3,2,2],[2,4,3,1],[1,1,0,1]],[[0,1,2,0],[1,3,2,2],[2,3,4,1],[1,1,0,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,1],[2,1,0,1]],[[0,1,2,0],[1,4,2,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[1,3,2,2],[3,3,3,1],[1,1,1,0]],[[0,1,2,0],[1,3,2,2],[2,4,3,1],[1,1,1,0]],[[0,1,2,0],[1,3,2,2],[2,3,4,1],[1,1,1,0]],[[0,1,2,0],[1,3,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[3,3,0,0],[0,3,3,2],[1,2,1,0]],[[1,3,2,1],[2,3,0,0],[0,3,3,2],[1,2,1,0]],[[2,2,2,1],[2,3,0,0],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[3,3,0,0],[0,3,3,2],[1,2,0,1]],[[1,3,2,1],[2,3,0,0],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[1,4,2,2],[2,3,3,1],[1,2,0,0]],[[0,1,2,0],[1,3,2,2],[3,3,3,1],[1,2,0,0]],[[0,1,2,0],[1,3,2,2],[2,4,3,1],[1,2,0,0]],[[0,1,2,0],[1,3,2,2],[2,3,3,1],[2,2,0,0]],[[2,2,2,1],[2,3,0,0],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[3,3,0,0],[0,3,3,2],[1,1,2,0]],[[1,3,2,1],[2,3,0,0],[0,3,3,2],[1,1,2,0]],[[2,2,2,1],[2,3,0,0],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[3,3,0,0],[0,3,3,2],[1,1,1,1]],[[1,3,2,1],[2,3,0,0],[0,3,3,2],[1,1,1,1]],[[2,2,2,1],[2,3,0,0],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[3,3,0,0],[0,3,3,1],[1,2,1,1]],[[1,3,2,1],[2,3,0,0],[0,3,3,1],[1,2,1,1]],[[2,2,2,1],[2,3,0,0],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,2,3],[2,3,3,2],[0,0,1,1]],[[0,1,2,0],[1,3,2,2],[2,3,4,2],[0,0,1,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,3],[0,0,1,1]],[[0,1,2,0],[1,3,2,2],[2,3,3,2],[0,0,1,2]],[[0,1,2,0],[1,3,2,3],[2,3,3,2],[0,0,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,4,2],[0,0,2,0]],[[0,1,2,0],[1,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[3,3,0,0],[0,3,3,1],[1,1,2,1]],[[1,3,2,1],[2,3,0,0],[0,3,3,1],[1,1,2,1]],[[2,2,2,1],[2,3,0,0],[0,3,3,1],[1,1,2,1]],[[1,2,2,1],[3,3,0,0],[0,3,3,0],[1,2,2,1]],[[1,3,2,1],[2,3,0,0],[0,3,3,0],[1,2,2,1]],[[2,2,2,1],[2,3,0,0],[0,3,3,0],[1,2,2,1]],[[1,2,2,1],[3,3,0,0],[0,3,2,2],[1,2,2,0]],[[1,3,2,1],[2,3,0,0],[0,3,2,2],[1,2,2,0]],[[2,2,2,1],[2,3,0,0],[0,3,2,2],[1,2,2,0]],[[1,2,2,1],[3,3,0,0],[0,3,2,1],[1,2,2,1]],[[1,3,2,1],[2,3,0,0],[0,3,2,1],[1,2,2,1]],[[2,2,2,1],[2,3,0,0],[0,3,2,1],[1,2,2,1]],[[1,2,2,1],[3,3,0,0],[0,3,1,2],[1,2,2,1]],[[1,3,2,1],[2,3,0,0],[0,3,1,2],[1,2,2,1]],[[2,2,2,1],[2,3,0,0],[0,3,1,2],[1,2,2,1]],[[1,2,2,1],[2,2,3,2],[3,3,2,0],[1,0,0,0]],[[1,2,2,1],[3,2,3,2],[2,3,2,0],[1,0,0,0]],[[1,2,2,2],[2,2,3,2],[2,3,2,0],[1,0,0,0]],[[1,2,3,1],[2,2,3,2],[2,3,2,0],[1,0,0,0]],[[1,3,2,1],[2,2,3,2],[2,3,2,0],[1,0,0,0]],[[2,2,2,1],[2,2,3,2],[2,3,2,0],[1,0,0,0]],[[0,1,2,0],[1,3,3,0],[0,3,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[0,3,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,0],[0,3,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,3,0],[0,3,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,3,0],[0,3,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,0],[0,3,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,0],[0,3,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,3,0],[1,1,4,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[1,1,3,2],[2,2,2,1]],[[0,1,2,0],[1,3,3,0],[1,1,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,3,0],[1,1,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,0],[1,1,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,3,0],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,0],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,0],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,3,0],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,3,0],[1,2,4,2],[1,1,2,1]],[[0,1,2,0],[1,3,3,0],[1,2,3,2],[1,1,3,1]],[[0,1,2,0],[1,3,3,0],[1,2,3,2],[1,1,2,2]],[[0,1,2,0],[1,3,3,0],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,0],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,0],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,0],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[1,4,3,0],[1,3,2,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,0],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,0],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[1,3,3,0],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[1,4,3,0],[1,3,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,0],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,0],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,0],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,0],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[1,4,3,0],[1,3,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[1,4,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[1,3,3,0],[2,2,2,1]],[[0,1,2,0],[1,3,3,0],[1,3,3,0],[1,3,2,1]],[[0,1,2,0],[1,3,3,0],[1,3,3,0],[1,2,3,1]],[[0,1,2,0],[1,4,3,0],[1,3,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,0],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,0],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,0],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[1,3,3,0],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[1,4,3,0],[1,3,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,0],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,0],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,0],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[1,3,3,0],[1,3,3,1],[1,3,1,1]],[[0,1,2,0],[1,4,3,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,0],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,0],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[1,4,3,0],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,0],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,0],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,0],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[1,4,3,0],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,0],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,0],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,0],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[1,3,3,0],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[1,4,3,0],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,0],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,0],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,0],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[1,3,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,3,2],[3,3,1,0],[1,0,1,0]],[[1,2,2,1],[3,2,3,2],[2,3,1,0],[1,0,1,0]],[[1,2,2,2],[2,2,3,2],[2,3,1,0],[1,0,1,0]],[[1,2,3,1],[2,2,3,2],[2,3,1,0],[1,0,1,0]],[[1,3,2,1],[2,2,3,2],[2,3,1,0],[1,0,1,0]],[[2,2,2,1],[2,2,3,2],[2,3,1,0],[1,0,1,0]],[[0,1,2,0],[1,3,3,0],[3,0,3,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,0,4,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,0,3,2],[2,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,0,3,2],[1,3,2,1]],[[0,1,2,0],[1,3,3,0],[2,0,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,0],[2,0,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,3,0],[3,1,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,0],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,3,0],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,3,0],[2,1,4,2],[0,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,1,3,2],[0,3,2,1]],[[0,1,2,0],[1,3,3,0],[2,1,3,2],[0,2,3,1]],[[0,1,2,0],[1,3,3,0],[2,1,3,2],[0,2,2,2]],[[0,1,2,0],[1,3,3,0],[3,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,0],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,0],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,0],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,0],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,3,0],[3,2,2,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,2,2,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,2,2,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,0],[2,2,2,1],[1,2,3,1]],[[0,1,2,0],[1,3,3,0],[2,2,2,1],[1,2,2,2]],[[0,1,2,0],[1,3,3,0],[3,2,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,0],[2,2,2,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,0],[2,2,2,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,0],[2,2,2,2],[1,2,3,0]],[[0,1,2,0],[1,3,3,0],[3,2,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,0],[2,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,0],[1,3,2,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,0],[1,2,3,1]],[[0,1,2,0],[1,3,3,0],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[1,3,3,0],[3,2,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,1],[2,2,1,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,1],[1,3,1,1]],[[0,1,2,0],[1,3,3,0],[2,2,4,2],[0,1,2,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,2],[0,1,3,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,2],[0,1,2,2]],[[0,1,2,0],[1,3,3,0],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,0],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[1,3,3,0],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[1,3,3,0],[2,2,4,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,2],[1,0,3,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,2],[1,0,2,2]],[[0,1,2,0],[1,3,3,0],[3,2,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,2],[2,2,0,1]],[[0,1,2,0],[1,3,3,0],[2,2,3,2],[1,3,0,1]],[[0,1,2,0],[1,3,3,0],[3,2,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,0],[2,2,3,2],[2,2,1,0]],[[0,1,2,0],[1,3,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,3,2],[3,3,1,0],[1,0,0,1]],[[1,2,2,1],[3,2,3,2],[2,3,1,0],[1,0,0,1]],[[1,2,2,2],[2,2,3,2],[2,3,1,0],[1,0,0,1]],[[1,2,3,1],[2,2,3,2],[2,3,1,0],[1,0,0,1]],[[1,3,2,1],[2,2,3,2],[2,3,1,0],[1,0,0,1]],[[2,2,2,1],[2,2,3,2],[2,3,1,0],[1,0,0,1]],[[0,1,2,0],[1,3,3,0],[3,3,1,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,1,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,1,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,0],[3,3,1,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,0],[2,3,1,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,0],[2,3,1,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,0],[3,3,2,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,2,0],[2,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,2,0],[1,3,2,1]],[[0,1,2,0],[1,4,3,0],[2,3,2,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,0],[3,3,2,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[1,3,3,0],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[1,4,3,0],[2,3,2,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,0],[3,3,2,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,0],[2,4,2,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,2,1],[2,1,2,1]],[[0,1,2,0],[1,4,3,0],[2,3,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,0],[3,3,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,0],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,0],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[1,3,3,0],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[1,4,3,0],[2,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,0],[3,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,0],[2,4,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,0],[2,3,2,2],[2,1,2,0]],[[0,1,2,0],[1,4,3,0],[2,3,3,0],[0,2,2,1]],[[0,1,2,0],[1,3,3,0],[3,3,3,0],[0,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,4,3,0],[0,2,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,0],[0,3,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,0],[0,2,3,1]],[[0,1,2,0],[1,4,3,0],[2,3,3,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,0],[3,3,3,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,0],[2,4,3,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,0],[2,1,2,1]],[[0,1,2,0],[1,4,3,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,3,3,0],[3,3,3,1],[0,1,2,1]],[[0,1,2,0],[1,3,3,0],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,1],[0,1,2,2]],[[0,1,2,0],[1,4,3,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,3,0],[3,3,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,3,0],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,3,0],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,1],[0,3,1,1]],[[0,1,2,0],[1,4,3,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,3,0],[3,3,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,3,0],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,1],[2,0,2,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,1],[1,0,2,2]],[[0,1,2,0],[1,4,3,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,0],[3,3,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,0],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,0],[2,3,4,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,1],[2,1,1,1]],[[0,1,2,0],[1,4,3,0],[2,3,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,0],[3,3,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,0],[2,4,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,1],[2,2,0,1]],[[0,1,2,0],[1,4,3,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,0],[3,3,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,0],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,0],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[1,4,3,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,0],[3,3,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,0],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,0],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,0],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[1,4,3,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,0],[3,3,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,0],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,0],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[1,4,3,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,0],[3,3,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,0],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,0],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,0],[2,3,3,2],[0,3,1,0]],[[0,1,2,0],[1,4,3,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,0],[3,3,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,0],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,0],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,2],[2,0,1,1]],[[0,1,2,0],[1,4,3,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,0],[3,3,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,0],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,0],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,0],[2,3,3,2],[2,0,2,0]],[[0,1,2,0],[1,3,3,0],[2,3,3,2],[1,0,3,0]],[[0,1,2,0],[1,4,3,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,0],[3,3,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,0],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,0],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,0],[2,3,3,2],[2,1,0,1]],[[0,1,2,0],[1,4,3,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,0],[3,3,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,0],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,0],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,0],[2,3,3,2],[2,1,1,0]],[[0,1,2,0],[1,4,3,0],[2,3,3,2],[1,2,0,0]],[[0,1,2,0],[1,3,3,0],[3,3,3,2],[1,2,0,0]],[[0,1,2,0],[1,3,3,0],[2,4,3,2],[1,2,0,0]],[[0,1,2,0],[1,3,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,2,3,2],[3,3,0,2],[1,0,0,0]],[[1,2,2,1],[3,2,3,2],[2,3,0,2],[1,0,0,0]],[[1,2,2,2],[2,2,3,2],[2,3,0,2],[1,0,0,0]],[[1,2,3,1],[2,2,3,2],[2,3,0,2],[1,0,0,0]],[[1,3,2,1],[2,2,3,2],[2,3,0,2],[1,0,0,0]],[[2,2,2,1],[2,2,3,2],[2,3,0,2],[1,0,0,0]],[[0,1,2,0],[1,3,3,1],[1,0,3,3],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,0,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,1],[1,0,3,2],[1,2,2,2]],[[0,1,2,0],[1,3,3,1],[1,1,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,1,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,1,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,3,1],[1,1,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,1],[1,1,2,2],[1,2,2,2]],[[0,1,3,0],[1,3,3,1],[1,1,3,1],[1,2,2,1]],[[0,1,2,0],[1,4,3,1],[1,1,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,4,1],[1,1,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,1,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,1,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,1,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,1],[1,1,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,3,1],[1,1,3,1],[1,2,2,2]],[[0,1,3,0],[1,3,3,1],[1,1,3,2],[1,2,1,1]],[[0,1,2,0],[1,4,3,1],[1,1,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,4,1],[1,1,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,1],[1,1,4,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,1],[1,1,3,3],[1,2,1,1]],[[0,1,2,0],[1,3,3,1],[1,1,3,2],[1,2,1,2]],[[0,1,3,0],[1,3,3,1],[1,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,4,3,1],[1,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,4,1],[1,1,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,1],[1,1,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,1],[1,1,3,3],[1,2,2,0]],[[0,1,2,0],[1,3,3,1],[1,1,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,1],[1,1,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,1],[1,1,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,3,1],[1,2,2,3],[1,1,2,1]],[[0,1,2,0],[1,3,3,1],[1,2,2,2],[1,1,3,1]],[[0,1,2,0],[1,3,3,1],[1,2,2,2],[1,1,2,2]],[[0,1,3,0],[1,3,3,1],[1,2,3,1],[1,1,2,1]],[[0,1,2,0],[1,4,3,1],[1,2,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,4,1],[1,2,3,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,1],[1,2,4,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,1],[1,2,3,1],[1,1,3,1]],[[0,1,2,0],[1,3,3,1],[1,2,3,1],[1,1,2,2]],[[0,1,3,0],[1,3,3,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[1,4,3,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,4,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,1],[1,2,4,1],[1,2,1,1]],[[0,1,3,0],[1,3,3,1],[1,2,3,2],[1,0,2,1]],[[0,1,2,0],[1,3,4,1],[1,2,3,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,1],[1,2,4,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,1],[1,2,3,3],[1,0,2,1]],[[0,1,2,0],[1,3,3,1],[1,2,3,2],[1,0,2,2]],[[0,1,3,0],[1,3,3,1],[1,2,3,2],[1,1,1,1]],[[0,1,2,0],[1,4,3,1],[1,2,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,4,1],[1,2,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,1],[1,2,4,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,1],[1,2,3,3],[1,1,1,1]],[[0,1,2,0],[1,3,3,1],[1,2,3,2],[1,1,1,2]],[[0,1,3,0],[1,3,3,1],[1,2,3,2],[1,1,2,0]],[[0,1,2,0],[1,4,3,1],[1,2,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,4,1],[1,2,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,1],[1,2,4,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,1],[1,2,3,3],[1,1,2,0]],[[0,1,2,0],[1,3,3,1],[1,2,3,2],[1,1,3,0]],[[0,1,3,0],[1,3,3,1],[1,2,3,2],[1,2,0,1]],[[0,1,2,0],[1,4,3,1],[1,2,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,4,1],[1,2,3,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,1],[1,2,4,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,1],[1,2,3,3],[1,2,0,1]],[[0,1,2,0],[1,3,3,1],[1,2,3,2],[1,2,0,2]],[[0,1,3,0],[1,3,3,1],[1,2,3,2],[1,2,1,0]],[[0,1,2,0],[1,4,3,1],[1,2,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,4,1],[1,2,3,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,1],[1,2,4,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,1],[1,2,3,3],[1,2,1,0]],[[0,1,3,0],[1,3,3,1],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[1,4,3,1],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,4,1],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,4,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,3,0,3],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,3,0,2],[2,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,3,0,2],[1,3,2,1]],[[0,1,2,0],[1,3,3,1],[1,3,0,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,1],[1,3,0,2],[1,2,2,2]],[[0,1,3,0],[1,3,3,1],[1,3,1,1],[1,2,2,1]],[[0,1,2,0],[1,4,3,1],[1,3,1,1],[1,2,2,1]],[[0,1,2,0],[1,3,4,1],[1,3,1,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,4,1,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,3,1,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,1],[1,3,1,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,1],[1,3,1,1],[1,2,3,1]],[[0,1,2,0],[1,3,3,1],[1,3,1,1],[1,2,2,2]],[[0,1,3,0],[1,3,3,1],[1,3,1,2],[1,2,2,0]],[[0,1,2,0],[1,4,3,1],[1,3,1,2],[1,2,2,0]],[[0,1,2,0],[1,3,4,1],[1,3,1,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,1],[1,4,1,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,1],[1,3,1,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,1],[1,3,1,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,1],[1,3,1,2],[1,2,3,0]],[[0,1,3,0],[1,3,3,1],[1,3,2,1],[1,1,2,1]],[[0,1,2,0],[1,4,3,1],[1,3,2,1],[1,1,2,1]],[[0,1,2,0],[1,3,4,1],[1,3,2,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,1],[1,4,2,1],[1,1,2,1]],[[0,1,3,0],[1,3,3,1],[1,3,2,1],[1,2,1,1]],[[0,1,2,0],[1,4,3,1],[1,3,2,1],[1,2,1,1]],[[0,1,2,0],[1,3,4,1],[1,3,2,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,1],[1,4,2,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,1],[1,3,2,1],[2,2,1,1]],[[0,1,2,0],[1,3,3,1],[1,3,2,1],[1,3,1,1]],[[0,1,3,0],[1,3,3,1],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[1,4,3,1],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[1,3,4,1],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,1],[1,4,2,2],[1,1,1,1]],[[0,1,3,0],[1,3,3,1],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,4,3,1],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,4,1],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,1],[1,4,2,2],[1,1,2,0]],[[0,1,3,0],[1,3,3,1],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[1,4,3,1],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[1,3,4,1],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,1],[1,4,2,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,1],[1,3,2,2],[2,2,0,1]],[[0,1,2,0],[1,3,3,1],[1,3,2,2],[1,3,0,1]],[[0,1,3,0],[1,3,3,1],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[1,4,3,1],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[1,3,4,1],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,1],[1,4,2,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,1],[1,3,2,2],[2,2,1,0]],[[0,1,2,0],[1,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,2,3,2],[3,3,0,1],[1,0,1,0]],[[1,2,2,1],[3,2,3,2],[2,3,0,1],[1,0,1,0]],[[1,2,2,2],[2,2,3,2],[2,3,0,1],[1,0,1,0]],[[1,2,3,1],[2,2,3,2],[2,3,0,1],[1,0,1,0]],[[1,3,2,1],[2,2,3,2],[2,3,0,1],[1,0,1,0]],[[2,2,2,1],[2,2,3,2],[2,3,0,1],[1,0,1,0]],[[0,1,3,0],[1,3,3,1],[1,3,3,2],[1,2,0,0]],[[0,1,2,0],[1,4,3,1],[1,3,3,2],[1,2,0,0]],[[0,1,2,0],[1,3,4,1],[1,3,3,2],[1,2,0,0]],[[0,1,2,0],[1,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,2,3,2],[3,3,0,1],[1,0,0,1]],[[1,2,2,1],[3,2,3,2],[2,3,0,1],[1,0,0,1]],[[1,2,2,2],[2,2,3,2],[2,3,0,1],[1,0,0,1]],[[1,2,3,1],[2,2,3,2],[2,3,0,1],[1,0,0,1]],[[1,3,2,1],[2,2,3,2],[2,3,0,1],[1,0,0,1]],[[2,2,2,1],[2,2,3,2],[2,3,0,1],[1,0,0,1]],[[0,1,2,0],[1,3,3,1],[3,0,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,0,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,0,2,2],[2,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,0,2,2],[1,3,2,1]],[[0,1,2,0],[1,3,3,1],[2,0,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,1],[2,0,2,2],[1,2,2,2]],[[0,1,3,0],[1,3,3,1],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[1,4,3,1],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,4,1],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[3,0,3,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,0,4,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,0,3,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,0,3,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,1],[2,0,3,1],[1,2,3,1]],[[0,1,2,0],[1,3,3,1],[2,0,3,1],[1,2,2,2]],[[0,1,2,0],[1,3,3,1],[2,0,3,3],[0,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,0,3,2],[0,2,3,1]],[[0,1,2,0],[1,3,3,1],[2,0,3,2],[0,2,2,2]],[[0,1,3,0],[1,3,3,1],[2,0,3,2],[1,2,1,1]],[[0,1,2,0],[1,4,3,1],[2,0,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,4,1],[2,0,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,1],[2,0,4,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,1],[2,0,3,3],[1,2,1,1]],[[0,1,2,0],[1,3,3,1],[2,0,3,2],[1,2,1,2]],[[0,1,3,0],[1,3,3,1],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[1,4,3,1],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,4,1],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,1],[3,0,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,0,4,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,0,3,3],[1,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,0,3,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,0,3,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,1],[2,0,3,2],[1,2,3,0]],[[0,1,2,0],[1,3,3,1],[2,1,2,3],[0,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,1,2,2],[0,3,2,1]],[[0,1,2,0],[1,3,3,1],[2,1,2,2],[0,2,3,1]],[[0,1,2,0],[1,3,3,1],[2,1,2,2],[0,2,2,2]],[[0,1,3,0],[1,3,3,1],[2,1,3,1],[0,2,2,1]],[[0,1,2,0],[1,4,3,1],[2,1,3,1],[0,2,2,1]],[[0,1,2,0],[1,3,4,1],[2,1,3,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,1,4,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,1,3,1],[0,3,2,1]],[[0,1,2,0],[1,3,3,1],[2,1,3,1],[0,2,3,1]],[[0,1,2,0],[1,3,3,1],[2,1,3,1],[0,2,2,2]],[[0,1,3,0],[1,3,3,1],[2,1,3,2],[0,2,1,1]],[[0,1,2,0],[1,4,3,1],[2,1,3,2],[0,2,1,1]],[[0,1,2,0],[1,3,4,1],[2,1,3,2],[0,2,1,1]],[[0,1,2,0],[1,3,3,1],[2,1,4,2],[0,2,1,1]],[[0,1,2,0],[1,3,3,1],[2,1,3,3],[0,2,1,1]],[[0,1,2,0],[1,3,3,1],[2,1,3,2],[0,2,1,2]],[[0,1,3,0],[1,3,3,1],[2,1,3,2],[0,2,2,0]],[[0,1,2,0],[1,4,3,1],[2,1,3,2],[0,2,2,0]],[[0,1,2,0],[1,3,4,1],[2,1,3,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,1,4,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,1,3,3],[0,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,1,3,2],[0,3,2,0]],[[0,1,2,0],[1,3,3,1],[2,1,3,2],[0,2,3,0]],[[0,1,2,0],[1,3,3,1],[3,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,0,3],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,0,2],[2,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,0,2],[1,3,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,0,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,1],[2,2,0,2],[1,2,2,2]],[[0,1,2,0],[1,3,3,1],[3,2,1,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,1,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,1,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,1,1],[1,2,3,1]],[[0,1,2,0],[1,3,3,1],[2,2,1,1],[1,2,2,2]],[[0,1,2,0],[1,3,3,1],[3,2,1,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,2,1,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,2,1,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,1],[2,2,1,2],[1,2,3,0]],[[0,1,2,0],[1,3,3,1],[3,2,2,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,1],[2,2,2,1],[2,2,1,1]],[[0,1,2,0],[1,3,3,1],[2,2,2,1],[1,3,1,1]],[[0,1,2,0],[1,3,3,1],[2,2,2,3],[0,1,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,2,2],[0,1,3,1]],[[0,1,2,0],[1,3,3,1],[2,2,2,2],[0,1,2,2]],[[0,1,2,0],[1,3,3,1],[2,2,2,3],[1,0,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,2,2],[1,0,3,1]],[[0,1,2,0],[1,3,3,1],[2,2,2,2],[1,0,2,2]],[[0,1,2,0],[1,3,3,1],[3,2,2,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,1],[2,2,2,2],[2,2,0,1]],[[0,1,2,0],[1,3,3,1],[2,2,2,2],[1,3,0,1]],[[0,1,2,0],[1,3,3,1],[3,2,2,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,1],[2,2,2,2],[2,2,1,0]],[[0,1,2,0],[1,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[2,2,3,2],[2,3,0,0],[2,2,0,0]],[[1,2,2,1],[2,2,3,2],[3,3,0,0],[1,2,0,0]],[[0,1,3,0],[1,3,3,1],[2,2,3,1],[0,1,2,1]],[[0,1,2,0],[1,4,3,1],[2,2,3,1],[0,1,2,1]],[[0,1,2,0],[1,3,4,1],[2,2,3,1],[0,1,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,4,1],[0,1,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,1],[0,1,3,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,1],[0,1,2,2]],[[0,1,3,0],[1,3,3,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[1,4,3,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,4,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,3,1],[2,2,4,1],[0,2,1,1]],[[0,1,3,0],[1,3,3,1],[2,2,3,1],[1,0,2,1]],[[0,1,2,0],[1,4,3,1],[2,2,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,4,1],[2,2,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,4,1],[1,0,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,1],[1,0,3,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,1],[1,0,2,2]],[[0,1,3,0],[1,3,3,1],[2,2,3,1],[1,1,1,1]],[[0,1,2,0],[1,4,3,1],[2,2,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,4,1],[2,2,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,1],[2,2,4,1],[1,1,1,1]],[[1,2,2,1],[3,2,3,2],[2,3,0,0],[1,2,0,0]],[[1,2,2,2],[2,2,3,2],[2,3,0,0],[1,2,0,0]],[[1,2,3,1],[2,2,3,2],[2,3,0,0],[1,2,0,0]],[[1,3,2,1],[2,2,3,2],[2,3,0,0],[1,2,0,0]],[[2,2,2,1],[2,2,3,2],[2,3,0,0],[1,2,0,0]],[[0,1,3,0],[1,3,3,1],[2,2,3,2],[0,0,2,1]],[[0,1,2,0],[1,4,3,1],[2,2,3,2],[0,0,2,1]],[[0,1,2,0],[1,3,4,1],[2,2,3,2],[0,0,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,4,2],[0,0,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,3],[0,0,2,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,2],[0,0,2,2]],[[0,1,3,0],[1,3,3,1],[2,2,3,2],[0,1,1,1]],[[0,1,2,0],[1,4,3,1],[2,2,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,4,1],[2,2,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,1],[2,2,4,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,3],[0,1,1,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,2],[0,1,1,2]],[[0,1,3,0],[1,3,3,1],[2,2,3,2],[0,1,2,0]],[[0,1,2,0],[1,4,3,1],[2,2,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,4,1],[2,2,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,1],[2,2,4,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,1],[2,2,3,3],[0,1,2,0]],[[0,1,2,0],[1,3,3,1],[2,2,3,2],[0,1,3,0]],[[0,1,3,0],[1,3,3,1],[2,2,3,2],[0,2,0,1]],[[0,1,2,0],[1,4,3,1],[2,2,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,4,1],[2,2,3,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,1],[2,2,4,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,3],[0,2,0,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,2],[0,2,0,2]],[[0,1,3,0],[1,3,3,1],[2,2,3,2],[0,2,1,0]],[[0,1,2,0],[1,4,3,1],[2,2,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,4,1],[2,2,3,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,1],[2,2,4,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,1],[2,2,3,3],[0,2,1,0]],[[0,1,3,0],[1,3,3,1],[2,2,3,2],[1,0,1,1]],[[0,1,2,0],[1,4,3,1],[2,2,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,4,1],[2,2,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,1],[2,2,4,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,3],[1,0,1,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,2],[1,0,1,2]],[[0,1,3,0],[1,3,3,1],[2,2,3,2],[1,0,2,0]],[[0,1,2,0],[1,4,3,1],[2,2,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,4,1],[2,2,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,1],[2,2,4,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,1],[2,2,3,3],[1,0,2,0]],[[0,1,2,0],[1,3,3,1],[2,2,3,2],[1,0,3,0]],[[0,1,3,0],[1,3,3,1],[2,2,3,2],[1,1,0,1]],[[0,1,2,0],[1,4,3,1],[2,2,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,4,1],[2,2,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,1],[2,2,4,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,3],[1,1,0,1]],[[0,1,2,0],[1,3,3,1],[2,2,3,2],[1,1,0,2]],[[0,1,3,0],[1,3,3,1],[2,2,3,2],[1,1,1,0]],[[0,1,2,0],[1,4,3,1],[2,2,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,4,1],[2,2,3,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,1],[2,2,4,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,2,3,2],[2,3,0,0],[2,1,1,0]],[[1,2,2,1],[2,2,3,2],[3,3,0,0],[1,1,1,0]],[[1,2,2,1],[3,2,3,2],[2,3,0,0],[1,1,1,0]],[[1,2,2,2],[2,2,3,2],[2,3,0,0],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[2,3,0,0],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[2,3,0,0],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[2,3,0,0],[1,1,1,0]],[[1,2,2,1],[2,2,3,2],[2,3,0,0],[2,1,0,1]],[[1,2,2,1],[2,2,3,2],[3,3,0,0],[1,1,0,1]],[[1,2,2,1],[3,2,3,2],[2,3,0,0],[1,1,0,1]],[[1,2,2,2],[2,2,3,2],[2,3,0,0],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[2,3,0,0],[1,1,0,1]],[[1,3,2,1],[2,2,3,2],[2,3,0,0],[1,1,0,1]],[[2,2,2,1],[2,2,3,2],[2,3,0,0],[1,1,0,1]],[[1,2,2,1],[2,2,3,2],[3,3,0,0],[0,2,1,0]],[[1,2,2,1],[3,2,3,2],[2,3,0,0],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[2,3,0,0],[0,2,1,0]],[[1,2,3,1],[2,2,3,2],[2,3,0,0],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[2,3,0,0],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[2,3,0,0],[0,2,1,0]],[[1,2,2,1],[2,2,3,2],[3,3,0,0],[0,2,0,1]],[[0,1,2,0],[1,3,3,1],[3,3,0,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,3,0,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,3,0,1],[1,3,2,1]],[[0,1,3,0],[1,3,3,1],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[1,4,3,1],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[1,3,4,1],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[1,3,3,1],[3,3,0,2],[0,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,4,0,2],[0,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,3,0,3],[0,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,3,0,2],[0,3,2,1]],[[0,1,2,0],[1,3,3,1],[2,3,0,2],[0,2,3,1]],[[0,1,2,0],[1,3,3,1],[2,3,0,2],[0,2,2,2]],[[0,1,3,0],[1,3,3,1],[2,3,0,2],[1,1,2,1]],[[0,1,2,0],[1,4,3,1],[2,3,0,2],[1,1,2,1]],[[0,1,2,0],[1,3,4,1],[2,3,0,2],[1,1,2,1]],[[0,1,2,0],[1,3,3,1],[3,3,0,2],[1,1,2,1]],[[0,1,2,0],[1,3,3,1],[2,4,0,2],[1,1,2,1]],[[0,1,2,0],[1,3,3,1],[2,3,0,2],[2,1,2,1]],[[0,1,2,0],[1,3,3,1],[3,3,0,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,3,0,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,3,0,2],[1,3,2,0]],[[0,1,3,0],[1,3,3,1],[2,3,1,1],[0,2,2,1]],[[0,1,2,0],[1,4,3,1],[2,3,1,1],[0,2,2,1]],[[0,1,2,0],[1,3,4,1],[2,3,1,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,1],[3,3,1,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,4,1,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,1],[2,3,1,1],[0,3,2,1]],[[0,1,2,0],[1,3,3,1],[2,3,1,1],[0,2,3,1]],[[0,1,2,0],[1,3,3,1],[2,3,1,1],[0,2,2,2]],[[0,1,3,0],[1,3,3,1],[2,3,1,1],[1,1,2,1]],[[0,1,2,0],[1,4,3,1],[2,3,1,1],[1,1,2,1]],[[0,1,2,0],[1,3,4,1],[2,3,1,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,1],[3,3,1,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,1],[2,4,1,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,1],[2,3,1,1],[2,1,2,1]],[[0,1,3,0],[1,3,3,1],[2,3,1,2],[0,2,2,0]],[[0,1,2,0],[1,4,3,1],[2,3,1,2],[0,2,2,0]],[[0,1,2,0],[1,3,4,1],[2,3,1,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,1],[3,3,1,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,4,1,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,1],[2,3,1,2],[0,3,2,0]],[[0,1,2,0],[1,3,3,1],[2,3,1,2],[0,2,3,0]],[[0,1,3,0],[1,3,3,1],[2,3,1,2],[1,1,2,0]],[[0,1,2,0],[1,4,3,1],[2,3,1,2],[1,1,2,0]],[[0,1,2,0],[1,3,4,1],[2,3,1,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,1],[3,3,1,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,1],[2,4,1,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[3,2,3,2],[2,3,0,0],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[2,3,0,0],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[2,3,0,0],[0,2,0,1]],[[1,3,2,1],[2,2,3,2],[2,3,0,0],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[2,3,0,0],[0,2,0,1]],[[0,1,3,0],[1,3,3,1],[2,3,2,1],[0,1,2,1]],[[0,1,2,0],[1,4,3,1],[2,3,2,1],[0,1,2,1]],[[0,1,2,0],[1,3,4,1],[2,3,2,1],[0,1,2,1]],[[0,1,2,0],[1,3,3,1],[3,3,2,1],[0,1,2,1]],[[0,1,2,0],[1,3,3,1],[2,4,2,1],[0,1,2,1]],[[0,1,3,0],[1,3,3,1],[2,3,2,1],[0,2,1,1]],[[0,1,2,0],[1,4,3,1],[2,3,2,1],[0,2,1,1]],[[0,1,2,0],[1,3,4,1],[2,3,2,1],[0,2,1,1]],[[0,1,2,0],[1,3,3,1],[3,3,2,1],[0,2,1,1]],[[0,1,2,0],[1,3,3,1],[2,4,2,1],[0,2,1,1]],[[0,1,2,0],[1,3,3,1],[2,3,2,1],[0,3,1,1]],[[0,1,3,0],[1,3,3,1],[2,3,2,1],[1,0,2,1]],[[0,1,2,0],[1,4,3,1],[2,3,2,1],[1,0,2,1]],[[0,1,2,0],[1,3,4,1],[2,3,2,1],[1,0,2,1]],[[0,1,2,0],[1,3,3,1],[3,3,2,1],[1,0,2,1]],[[0,1,2,0],[1,3,3,1],[2,4,2,1],[1,0,2,1]],[[0,1,2,0],[1,3,3,1],[2,3,2,1],[2,0,2,1]],[[0,1,3,0],[1,3,3,1],[2,3,2,1],[1,1,1,1]],[[0,1,2,0],[1,4,3,1],[2,3,2,1],[1,1,1,1]],[[0,1,2,0],[1,3,4,1],[2,3,2,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,1],[3,3,2,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,1],[2,4,2,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,1],[2,3,2,1],[2,1,1,1]],[[0,1,2,0],[1,4,3,1],[2,3,2,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,1],[3,3,2,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,1],[2,4,2,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,1],[2,3,2,1],[2,2,0,1]],[[0,1,3,0],[1,3,3,1],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[1,4,3,1],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[1,3,4,1],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,1],[3,3,2,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,1],[2,4,2,2],[0,1,1,1]],[[0,1,3,0],[1,3,3,1],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[1,4,3,1],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[1,3,4,1],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,1],[3,3,2,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,1],[2,4,2,2],[0,1,2,0]],[[0,1,3,0],[1,3,3,1],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[1,4,3,1],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[1,3,4,1],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,1],[3,3,2,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,1],[2,4,2,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,1],[2,3,2,2],[0,3,0,1]],[[0,1,3,0],[1,3,3,1],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[1,4,3,1],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[1,3,4,1],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,1],[3,3,2,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,1],[2,4,2,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,1],[2,3,2,2],[0,3,1,0]],[[0,1,3,0],[1,3,3,1],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[1,4,3,1],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[1,3,4,1],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,1],[3,3,2,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,1],[2,4,2,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,1],[2,3,2,2],[2,0,1,1]],[[0,1,3,0],[1,3,3,1],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[1,4,3,1],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[1,3,4,1],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,1],[3,3,2,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,1],[2,4,2,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,1],[2,3,2,2],[2,0,2,0]],[[0,1,3,0],[1,3,3,1],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[1,4,3,1],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[1,3,4,1],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,1],[3,3,2,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,1],[2,4,2,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,1],[2,3,2,2],[2,1,0,1]],[[0,1,3,0],[1,3,3,1],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[1,4,3,1],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[1,3,4,1],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,1],[3,3,2,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,1],[2,4,2,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,1],[2,3,2,2],[2,1,1,0]],[[0,1,3,0],[1,3,3,1],[2,3,2,2],[1,2,0,0]],[[0,1,2,0],[1,4,3,1],[2,3,2,2],[1,2,0,0]],[[0,1,2,0],[1,3,4,1],[2,3,2,2],[1,2,0,0]],[[0,1,2,0],[1,3,3,1],[3,3,2,2],[1,2,0,0]],[[0,1,2,0],[1,3,3,1],[2,4,2,2],[1,2,0,0]],[[0,1,2,0],[1,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[2,2,3,2],[3,2,2,0],[1,1,0,0]],[[1,2,2,1],[3,2,3,2],[2,2,2,0],[1,1,0,0]],[[1,2,2,2],[2,2,3,2],[2,2,2,0],[1,1,0,0]],[[1,2,3,1],[2,2,3,2],[2,2,2,0],[1,1,0,0]],[[1,3,2,1],[2,2,3,2],[2,2,2,0],[1,1,0,0]],[[2,2,2,1],[2,2,3,2],[2,2,2,0],[1,1,0,0]],[[0,1,3,0],[1,3,3,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[1,4,3,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[1,3,4,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[1,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,2,1],[3,2,3,2],[2,2,2,0],[0,2,0,0]],[[1,2,2,2],[2,2,3,2],[2,2,2,0],[0,2,0,0]],[[1,2,3,1],[2,2,3,2],[2,2,2,0],[0,2,0,0]],[[1,3,2,1],[2,2,3,2],[2,2,2,0],[0,2,0,0]],[[2,2,2,1],[2,2,3,2],[2,2,2,0],[0,2,0,0]],[[0,1,3,0],[1,3,3,1],[2,3,3,2],[0,0,1,1]],[[0,1,2,0],[1,4,3,1],[2,3,3,2],[0,0,1,1]],[[0,1,2,0],[1,3,4,1],[2,3,3,2],[0,0,1,1]],[[0,1,2,0],[1,3,3,1],[2,3,4,2],[0,0,1,1]],[[0,1,2,0],[1,3,3,1],[2,3,3,3],[0,0,1,1]],[[0,1,2,0],[1,3,3,1],[2,3,3,2],[0,0,1,2]],[[0,1,3,0],[1,3,3,1],[2,3,3,2],[0,0,2,0]],[[0,1,2,0],[1,4,3,1],[2,3,3,2],[0,0,2,0]],[[0,1,2,0],[1,3,4,1],[2,3,3,2],[0,0,2,0]],[[0,1,2,0],[1,3,3,1],[2,3,4,2],[0,0,2,0]],[[0,1,2,0],[1,3,3,1],[2,3,3,3],[0,0,2,0]],[[0,1,3,0],[1,3,3,1],[2,3,3,2],[0,2,0,0]],[[0,1,2,0],[1,4,3,1],[2,3,3,2],[0,2,0,0]],[[0,1,2,0],[1,3,4,1],[2,3,3,2],[0,2,0,0]],[[0,1,2,0],[1,3,3,1],[3,3,3,2],[0,2,0,0]],[[0,1,2,0],[1,3,3,1],[2,4,3,2],[0,2,0,0]],[[0,1,3,0],[1,3,3,1],[2,3,3,2],[1,1,0,0]],[[0,1,2,0],[1,4,3,1],[2,3,3,2],[1,1,0,0]],[[0,1,2,0],[1,3,4,1],[2,3,3,2],[1,1,0,0]],[[0,1,2,0],[1,3,3,1],[3,3,3,2],[1,1,0,0]],[[0,1,2,0],[1,3,3,1],[2,4,3,2],[1,1,0,0]],[[0,1,2,0],[1,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[2,2,3,2],[2,2,1,0],[2,2,0,0]],[[1,2,2,1],[2,2,3,2],[3,2,1,0],[1,2,0,0]],[[1,2,2,1],[3,2,3,2],[2,2,1,0],[1,2,0,0]],[[1,2,2,2],[2,2,3,2],[2,2,1,0],[1,2,0,0]],[[1,2,3,1],[2,2,3,2],[2,2,1,0],[1,2,0,0]],[[1,3,2,1],[2,2,3,2],[2,2,1,0],[1,2,0,0]],[[2,2,2,1],[2,2,3,2],[2,2,1,0],[1,2,0,0]],[[1,2,2,1],[2,2,3,2],[2,2,1,0],[2,1,1,0]],[[1,2,2,1],[2,2,3,2],[3,2,1,0],[1,1,1,0]],[[1,2,2,1],[3,2,3,2],[2,2,1,0],[1,1,1,0]],[[1,2,2,2],[2,2,3,2],[2,2,1,0],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[2,2,1,0],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[2,2,1,0],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[2,2,1,0],[1,1,1,0]],[[1,2,2,1],[2,2,3,2],[2,2,1,0],[2,1,0,1]],[[1,2,2,1],[2,2,3,2],[3,2,1,0],[1,1,0,1]],[[1,2,2,1],[3,2,3,2],[2,2,1,0],[1,1,0,1]],[[1,2,2,2],[2,2,3,2],[2,2,1,0],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[2,2,1,0],[1,1,0,1]],[[1,3,2,1],[2,2,3,2],[2,2,1,0],[1,1,0,1]],[[0,1,2,0],[1,3,3,3],[0,0,3,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[0,0,3,3],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[0,0,3,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[0,0,3,2],[1,2,2,2]],[[2,2,2,1],[2,2,3,2],[2,2,1,0],[1,1,0,1]],[[1,2,2,1],[2,2,3,2],[3,2,1,0],[1,0,2,0]],[[1,2,2,1],[3,2,3,2],[2,2,1,0],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[2,2,1,0],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[2,2,1,0],[1,0,2,0]],[[1,3,2,1],[2,2,3,2],[2,2,1,0],[1,0,2,0]],[[2,2,2,1],[2,2,3,2],[2,2,1,0],[1,0,2,0]],[[1,2,2,1],[2,2,3,2],[3,2,1,0],[1,0,1,1]],[[1,2,2,1],[3,2,3,2],[2,2,1,0],[1,0,1,1]],[[1,2,2,2],[2,2,3,2],[2,2,1,0],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[2,2,1,0],[1,0,1,1]],[[1,3,2,1],[2,2,3,2],[2,2,1,0],[1,0,1,1]],[[2,2,2,1],[2,2,3,2],[2,2,1,0],[1,0,1,1]],[[1,2,2,1],[2,2,3,2],[3,2,1,0],[0,2,1,0]],[[1,2,2,1],[3,2,3,2],[2,2,1,0],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[2,2,1,0],[0,2,1,0]],[[1,2,3,1],[2,2,3,2],[2,2,1,0],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[2,2,1,0],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[2,2,1,0],[0,2,1,0]],[[1,2,2,1],[2,2,3,2],[3,2,1,0],[0,2,0,1]],[[0,1,3,0],[1,3,3,2],[1,0,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,4,2],[1,0,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,3],[1,0,2,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,0,2,3],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,0,2,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[1,0,2,2],[1,2,2,2]],[[0,1,3,0],[1,3,3,2],[1,0,3,2],[1,1,2,1]],[[0,1,2,0],[1,3,4,2],[1,0,3,2],[1,1,2,1]],[[0,1,2,0],[1,3,3,3],[1,0,3,2],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[1,0,3,3],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[1,0,3,2],[1,1,2,2]],[[0,1,3,0],[1,3,3,2],[1,0,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,4,2],[1,0,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,3],[1,0,3,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,0,3,3],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,0,3,2],[1,2,1,2]],[[0,1,3,0],[1,3,3,2],[1,0,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,4,2],[1,0,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,3],[1,0,3,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,0,3,3],[1,2,2,0]],[[0,1,3,0],[1,3,3,2],[1,1,1,2],[1,2,2,1]],[[0,1,2,0],[1,4,3,2],[1,1,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,4,2],[1,1,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,3],[1,1,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,1,1,3],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,1,1,2],[2,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,1,1,2],[1,3,2,1]],[[0,1,2,0],[1,3,3,2],[1,1,1,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[1,1,1,2],[1,2,2,2]],[[0,1,3,0],[1,3,3,2],[1,1,2,2],[1,2,1,1]],[[0,1,2,0],[1,4,3,2],[1,1,2,2],[1,2,1,1]],[[0,1,2,0],[1,3,4,2],[1,1,2,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,3],[1,1,2,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,1,2,3],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,1,2,2],[1,2,1,2]],[[0,1,3,0],[1,3,3,2],[1,1,2,2],[1,2,2,0]],[[0,1,2,0],[1,4,3,2],[1,1,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,4,2],[1,1,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,3],[1,1,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,1,2,3],[1,2,2,0]],[[0,1,3,0],[1,3,3,2],[1,1,3,0],[1,2,2,1]],[[0,1,2,0],[1,4,3,2],[1,1,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,4,2],[1,1,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,3],[1,1,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,1,4,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,1,3,0],[2,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,1,3,0],[1,3,2,1]],[[0,1,2,0],[1,3,3,2],[1,1,3,0],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[1,1,3,0],[1,2,2,2]],[[0,1,3,0],[1,3,3,2],[1,1,3,1],[1,2,1,1]],[[0,1,2,0],[1,4,3,2],[1,1,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,4,2],[1,1,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,3],[1,1,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,1,4,1],[1,2,1,1]],[[0,1,3,0],[1,3,3,2],[1,1,3,1],[1,2,2,0]],[[0,1,2,0],[1,4,3,2],[1,1,3,1],[1,2,2,0]],[[0,1,2,0],[1,3,4,2],[1,1,3,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,3],[1,1,3,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,1,4,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,1,3,1],[2,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,1,3,1],[1,3,2,0]],[[0,1,2,0],[1,3,3,2],[1,1,3,1],[1,2,3,0]],[[0,1,3,0],[1,3,3,2],[1,1,3,2],[1,0,2,1]],[[0,1,2,0],[1,3,4,2],[1,1,3,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,3],[1,1,3,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[1,1,3,3],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[1,1,3,2],[1,0,2,2]],[[0,1,3,0],[1,3,3,2],[1,1,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,4,2],[1,1,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,3],[1,1,3,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[1,1,3,3],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[1,1,3,2],[1,1,1,2]],[[0,1,3,0],[1,3,3,2],[1,1,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,4,2],[1,1,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,3],[1,1,3,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[1,1,3,3],[1,1,2,0]],[[1,2,2,1],[3,2,3,2],[2,2,1,0],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[2,2,1,0],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[2,2,1,0],[0,2,0,1]],[[1,3,2,1],[2,2,3,2],[2,2,1,0],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[2,2,1,0],[0,2,0,1]],[[0,1,3,0],[1,3,3,2],[1,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,4,3,2],[1,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,4,2],[1,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,3],[1,2,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,2,0,3],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,2,0,2],[2,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,2,0,2],[1,3,2,1]],[[0,1,2,0],[1,3,3,2],[1,2,0,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[1,2,0,2],[1,2,2,2]],[[0,1,3,0],[1,3,3,2],[1,2,1,2],[1,1,2,1]],[[0,1,2,0],[1,4,3,2],[1,2,1,2],[1,1,2,1]],[[0,1,2,0],[1,3,4,2],[1,2,1,2],[1,1,2,1]],[[0,1,2,0],[1,3,3,3],[1,2,1,2],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[1,2,1,3],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[1,2,1,2],[1,1,3,1]],[[0,1,2,0],[1,3,3,2],[1,2,1,2],[1,1,2,2]],[[0,1,3,0],[1,3,3,2],[1,2,2,2],[1,0,2,1]],[[0,1,2,0],[1,3,4,2],[1,2,2,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,3],[1,2,2,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[1,2,2,3],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[1,2,2,2],[1,0,2,2]],[[0,1,3,0],[1,3,3,2],[1,2,2,2],[1,1,1,1]],[[0,1,2,0],[1,4,3,2],[1,2,2,2],[1,1,1,1]],[[0,1,2,0],[1,3,4,2],[1,2,2,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,3],[1,2,2,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[1,2,2,3],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[1,2,2,2],[1,1,1,2]],[[0,1,3,0],[1,3,3,2],[1,2,2,2],[1,1,2,0]],[[0,1,2,0],[1,4,3,2],[1,2,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,4,2],[1,2,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,3],[1,2,2,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[1,2,2,3],[1,1,2,0]],[[0,1,3,0],[1,3,3,2],[1,2,2,2],[1,2,0,1]],[[0,1,2,0],[1,4,3,2],[1,2,2,2],[1,2,0,1]],[[0,1,2,0],[1,3,4,2],[1,2,2,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,3],[1,2,2,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[1,2,2,3],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[1,2,2,2],[1,2,0,2]],[[0,1,3,0],[1,3,3,2],[1,2,2,2],[1,2,1,0]],[[0,1,2,0],[1,4,3,2],[1,2,2,2],[1,2,1,0]],[[0,1,2,0],[1,3,4,2],[1,2,2,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,3],[1,2,2,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,2,2,3],[1,2,1,0]],[[1,2,2,1],[3,2,3,2],[2,2,1,0],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[2,2,1,0],[0,1,2,0]],[[1,2,3,1],[2,2,3,2],[2,2,1,0],[0,1,2,0]],[[1,3,2,1],[2,2,3,2],[2,2,1,0],[0,1,2,0]],[[2,2,2,1],[2,2,3,2],[2,2,1,0],[0,1,2,0]],[[1,2,2,1],[3,2,3,2],[2,2,1,0],[0,1,1,1]],[[1,2,2,2],[2,2,3,2],[2,2,1,0],[0,1,1,1]],[[1,2,3,1],[2,2,3,2],[2,2,1,0],[0,1,1,1]],[[1,3,2,1],[2,2,3,2],[2,2,1,0],[0,1,1,1]],[[0,1,3,0],[1,3,3,2],[1,2,3,0],[1,1,2,1]],[[0,1,2,0],[1,4,3,2],[1,2,3,0],[1,1,2,1]],[[0,1,2,0],[1,3,4,2],[1,2,3,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,3],[1,2,3,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[1,2,4,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[1,2,3,0],[1,1,3,1]],[[0,1,2,0],[1,3,3,2],[1,2,3,0],[1,1,2,2]],[[0,1,3,0],[1,3,3,2],[1,2,3,0],[1,2,1,1]],[[0,1,2,0],[1,4,3,2],[1,2,3,0],[1,2,1,1]],[[0,1,2,0],[1,3,4,2],[1,2,3,0],[1,2,1,1]],[[0,1,2,0],[1,3,3,3],[1,2,3,0],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,2,4,0],[1,2,1,1]],[[0,1,3,0],[1,3,3,2],[1,2,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,4,2],[1,2,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,3,3],[1,2,3,1],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[1,2,4,1],[1,0,2,1]],[[0,1,3,0],[1,3,3,2],[1,2,3,1],[1,1,1,1]],[[0,1,2,0],[1,4,3,2],[1,2,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,4,2],[1,2,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,3],[1,2,3,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[1,2,4,1],[1,1,1,1]],[[0,1,3,0],[1,3,3,2],[1,2,3,1],[1,1,2,0]],[[0,1,2,0],[1,4,3,2],[1,2,3,1],[1,1,2,0]],[[0,1,2,0],[1,3,4,2],[1,2,3,1],[1,1,2,0]],[[0,1,2,0],[1,3,3,3],[1,2,3,1],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[1,2,4,1],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[1,2,3,1],[1,1,3,0]],[[0,1,3,0],[1,3,3,2],[1,2,3,1],[1,2,0,1]],[[0,1,2,0],[1,4,3,2],[1,2,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,4,2],[1,2,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,3],[1,2,3,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[1,2,4,1],[1,2,0,1]],[[0,1,3,0],[1,3,3,2],[1,2,3,1],[1,2,1,0]],[[0,1,2,0],[1,4,3,2],[1,2,3,1],[1,2,1,0]],[[0,1,2,0],[1,3,4,2],[1,2,3,1],[1,2,1,0]],[[0,1,2,0],[1,3,3,3],[1,2,3,1],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,2,4,1],[1,2,1,0]],[[2,2,2,1],[2,2,3,2],[2,2,1,0],[0,1,1,1]],[[0,1,3,0],[1,3,3,2],[1,2,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,4,2],[1,2,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,3],[1,2,3,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,2,3,2],[3,2,0,2],[1,1,0,0]],[[1,2,2,1],[3,2,3,2],[2,2,0,2],[1,1,0,0]],[[1,2,2,2],[2,2,3,2],[2,2,0,2],[1,1,0,0]],[[1,2,3,1],[2,2,3,2],[2,2,0,2],[1,1,0,0]],[[1,3,2,1],[2,2,3,2],[2,2,0,2],[1,1,0,0]],[[2,2,2,1],[2,2,3,2],[2,2,0,2],[1,1,0,0]],[[0,1,3,0],[1,3,3,2],[1,3,0,1],[1,2,2,1]],[[0,1,2,0],[1,4,3,2],[1,3,0,1],[1,2,2,1]],[[0,1,2,0],[1,3,4,2],[1,3,0,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,3],[1,3,0,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,4,0,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,3,0,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,3,0,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,2],[1,3,0,1],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[1,3,0,1],[1,2,2,2]],[[0,1,3,0],[1,3,3,2],[1,3,0,2],[1,1,2,1]],[[0,1,2,0],[1,4,3,2],[1,3,0,2],[1,1,2,1]],[[0,1,2,0],[1,3,4,2],[1,3,0,2],[1,1,2,1]],[[0,1,2,0],[1,3,3,3],[1,3,0,2],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[1,4,0,2],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[1,3,0,3],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[1,3,0,2],[1,1,3,1]],[[0,1,2,0],[1,3,3,2],[1,3,0,2],[1,1,2,2]],[[0,1,3,0],[1,3,3,2],[1,3,0,2],[1,2,1,1]],[[0,1,2,0],[1,4,3,2],[1,3,0,2],[1,2,1,1]],[[0,1,2,0],[1,3,4,2],[1,3,0,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,3],[1,3,0,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,4,0,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,3,0,3],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,3,0,2],[2,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,3,0,2],[1,3,1,1]],[[0,1,2,0],[1,3,3,2],[1,3,0,2],[1,2,1,2]],[[0,1,3,0],[1,3,3,2],[1,3,0,2],[1,2,2,0]],[[0,1,2,0],[1,4,3,2],[1,3,0,2],[1,2,2,0]],[[0,1,2,0],[1,3,4,2],[1,3,0,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,3],[1,3,0,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,4,0,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,3,0,3],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,3,0,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,3,0,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,2],[1,3,0,2],[1,2,3,0]],[[0,1,3,0],[1,3,3,2],[1,3,1,0],[1,2,2,1]],[[0,1,2,0],[1,4,3,2],[1,3,1,0],[1,2,2,1]],[[0,1,2,0],[1,3,4,2],[1,3,1,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,3],[1,3,1,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,4,1,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,3,1,0],[2,2,2,1]],[[0,1,2,0],[1,3,3,2],[1,3,1,0],[1,3,2,1]],[[0,1,2,0],[1,3,3,2],[1,3,1,0],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[1,3,1,0],[1,2,2,2]],[[0,1,3,0],[1,3,3,2],[1,3,1,1],[1,2,2,0]],[[0,1,2,0],[1,4,3,2],[1,3,1,1],[1,2,2,0]],[[0,1,2,0],[1,3,4,2],[1,3,1,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,3],[1,3,1,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,4,1,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,3,1,1],[2,2,2,0]],[[0,1,2,0],[1,3,3,2],[1,3,1,1],[1,3,2,0]],[[0,1,2,0],[1,3,3,2],[1,3,1,1],[1,2,3,0]],[[0,1,3,0],[1,3,3,2],[1,3,1,2],[1,1,1,1]],[[0,1,2,0],[1,4,3,2],[1,3,1,2],[1,1,1,1]],[[0,1,2,0],[1,3,4,2],[1,3,1,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,3],[1,3,1,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[1,4,1,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[1,3,1,3],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[1,3,1,2],[1,1,1,2]],[[0,1,3,0],[1,3,3,2],[1,3,1,2],[1,1,2,0]],[[0,1,2,0],[1,4,3,2],[1,3,1,2],[1,1,2,0]],[[0,1,2,0],[1,3,4,2],[1,3,1,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,3],[1,3,1,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[1,4,1,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[1,3,1,3],[1,1,2,0]],[[0,1,3,0],[1,3,3,2],[1,3,1,2],[1,2,0,1]],[[0,1,2,0],[1,4,3,2],[1,3,1,2],[1,2,0,1]],[[0,1,2,0],[1,3,4,2],[1,3,1,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,3],[1,3,1,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[1,4,1,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[1,3,1,3],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[1,3,1,2],[2,2,0,1]],[[0,1,2,0],[1,3,3,2],[1,3,1,2],[1,3,0,1]],[[0,1,2,0],[1,3,3,2],[1,3,1,2],[1,2,0,2]],[[0,1,3,0],[1,3,3,2],[1,3,1,2],[1,2,1,0]],[[0,1,2,0],[1,4,3,2],[1,3,1,2],[1,2,1,0]],[[0,1,2,0],[1,3,4,2],[1,3,1,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,3],[1,3,1,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,4,1,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,3,1,3],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,3,1,2],[2,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[2,2,3,3],[2,2,0,2],[1,0,0,1]],[[1,2,2,1],[3,2,3,2],[2,2,0,2],[1,0,0,1]],[[1,2,2,2],[2,2,3,2],[2,2,0,2],[1,0,0,1]],[[1,2,3,1],[2,2,3,2],[2,2,0,2],[1,0,0,1]],[[1,3,2,1],[2,2,3,2],[2,2,0,2],[1,0,0,1]],[[2,2,2,1],[2,2,3,2],[2,2,0,2],[1,0,0,1]],[[0,1,3,0],[1,3,3,2],[1,3,2,0],[1,1,2,1]],[[0,1,2,0],[1,4,3,2],[1,3,2,0],[1,1,2,1]],[[0,1,2,0],[1,3,4,2],[1,3,2,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,3],[1,3,2,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[1,4,2,0],[1,1,2,1]],[[0,1,3,0],[1,3,3,2],[1,3,2,0],[1,2,1,1]],[[0,1,2,0],[1,4,3,2],[1,3,2,0],[1,2,1,1]],[[0,1,2,0],[1,3,4,2],[1,3,2,0],[1,2,1,1]],[[0,1,2,0],[1,3,3,3],[1,3,2,0],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,4,2,0],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,3,2,0],[2,2,1,1]],[[0,1,2,0],[1,3,3,2],[1,3,2,0],[1,3,1,1]],[[0,1,3,0],[1,3,3,2],[1,3,2,1],[1,1,1,1]],[[0,1,2,0],[1,4,3,2],[1,3,2,1],[1,1,1,1]],[[0,1,2,0],[1,3,4,2],[1,3,2,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,3],[1,3,2,1],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[1,4,2,1],[1,1,1,1]],[[0,1,3,0],[1,3,3,2],[1,3,2,1],[1,1,2,0]],[[0,1,2,0],[1,4,3,2],[1,3,2,1],[1,1,2,0]],[[0,1,2,0],[1,3,4,2],[1,3,2,1],[1,1,2,0]],[[0,1,2,0],[1,3,3,3],[1,3,2,1],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[1,4,2,1],[1,1,2,0]],[[0,1,3,0],[1,3,3,2],[1,3,2,1],[1,2,0,1]],[[0,1,2,0],[1,4,3,2],[1,3,2,1],[1,2,0,1]],[[0,1,2,0],[1,3,4,2],[1,3,2,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,3],[1,3,2,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[1,4,2,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[1,3,2,1],[2,2,0,1]],[[0,1,2,0],[1,3,3,2],[1,3,2,1],[1,3,0,1]],[[0,1,3,0],[1,3,3,2],[1,3,2,1],[1,2,1,0]],[[0,1,2,0],[1,4,3,2],[1,3,2,1],[1,2,1,0]],[[0,1,2,0],[1,3,4,2],[1,3,2,1],[1,2,1,0]],[[0,1,2,0],[1,3,3,3],[1,3,2,1],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,4,2,1],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,3,2,1],[2,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[3,2,3,2],[2,2,0,2],[0,2,0,0]],[[1,2,2,2],[2,2,3,2],[2,2,0,2],[0,2,0,0]],[[1,2,3,1],[2,2,3,2],[2,2,0,2],[0,2,0,0]],[[1,3,2,1],[2,2,3,2],[2,2,0,2],[0,2,0,0]],[[2,2,2,1],[2,2,3,2],[2,2,0,2],[0,2,0,0]],[[1,2,2,1],[2,2,3,2],[2,2,0,1],[2,2,0,0]],[[1,2,2,1],[2,2,3,2],[3,2,0,1],[1,2,0,0]],[[0,1,3,0],[1,3,3,2],[1,3,3,0],[1,1,2,0]],[[0,1,2,0],[1,4,3,2],[1,3,3,0],[1,1,2,0]],[[0,1,2,0],[1,3,4,2],[1,3,3,0],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[1,4,3,0],[1,1,2,0]],[[0,1,3,0],[1,3,3,2],[1,3,3,0],[1,2,1,0]],[[0,1,2,0],[1,4,3,2],[1,3,3,0],[1,2,1,0]],[[0,1,2,0],[1,3,4,2],[1,3,3,0],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,4,3,0],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,3,3,0],[2,2,1,0]],[[0,1,2,0],[1,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[3,2,3,2],[2,2,0,1],[1,2,0,0]],[[1,2,2,2],[2,2,3,2],[2,2,0,1],[1,2,0,0]],[[1,2,3,1],[2,2,3,2],[2,2,0,1],[1,2,0,0]],[[1,3,2,1],[2,2,3,2],[2,2,0,1],[1,2,0,0]],[[2,2,2,1],[2,2,3,2],[2,2,0,1],[1,2,0,0]],[[0,1,3,0],[1,3,3,2],[1,3,3,1],[1,2,0,0]],[[0,1,2,0],[1,4,3,2],[1,3,3,1],[1,2,0,0]],[[0,1,2,0],[1,3,4,2],[1,3,3,1],[1,2,0,0]],[[0,1,2,0],[1,3,3,3],[1,3,3,1],[1,2,0,0]],[[0,1,2,0],[1,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,2,3,2],[2,2,0,1],[2,1,1,0]],[[1,2,2,1],[2,2,3,2],[3,2,0,1],[1,1,1,0]],[[1,2,2,1],[3,2,3,2],[2,2,0,1],[1,1,1,0]],[[1,2,2,2],[2,2,3,2],[2,2,0,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[2,2,0,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[2,2,0,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[2,2,0,1],[1,1,1,0]],[[1,2,2,1],[2,2,3,2],[2,2,0,1],[2,1,0,1]],[[1,2,2,1],[2,2,3,2],[3,2,0,1],[1,1,0,1]],[[1,2,2,1],[3,2,3,2],[2,2,0,1],[1,1,0,1]],[[1,2,2,2],[2,2,3,2],[2,2,0,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[2,2,0,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,2],[2,2,0,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,2],[2,2,0,1],[1,1,0,1]],[[1,2,2,1],[2,2,3,2],[3,2,0,1],[1,0,2,0]],[[1,2,2,1],[3,2,3,2],[2,2,0,1],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[2,2,0,1],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[2,2,0,1],[1,0,2,0]],[[1,3,2,1],[2,2,3,2],[2,2,0,1],[1,0,2,0]],[[2,2,2,1],[2,2,3,2],[2,2,0,1],[1,0,2,0]],[[1,2,2,1],[2,2,3,2],[3,2,0,1],[1,0,1,1]],[[1,2,2,1],[3,2,3,2],[2,2,0,1],[1,0,1,1]],[[1,2,2,2],[2,2,3,2],[2,2,0,1],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[2,2,0,1],[1,0,1,1]],[[1,3,2,1],[2,2,3,2],[2,2,0,1],[1,0,1,1]],[[2,2,2,1],[2,2,3,2],[2,2,0,1],[1,0,1,1]],[[1,2,2,1],[2,2,3,2],[3,2,0,1],[0,2,1,0]],[[1,2,2,1],[3,2,3,2],[2,2,0,1],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[2,2,0,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,2],[2,2,0,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[2,2,0,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[2,2,0,1],[0,2,1,0]],[[1,2,2,1],[2,2,3,2],[3,2,0,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,2],[2,2,0,1],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[2,2,0,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[2,2,0,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,2],[2,2,0,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[2,2,0,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,2],[2,2,0,1],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[2,2,0,1],[0,1,2,0]],[[1,2,3,1],[2,2,3,2],[2,2,0,1],[0,1,2,0]],[[1,3,2,1],[2,2,3,2],[2,2,0,1],[0,1,2,0]],[[2,2,2,1],[2,2,3,2],[2,2,0,1],[0,1,2,0]],[[1,2,2,1],[3,2,3,2],[2,2,0,1],[0,1,1,1]],[[1,2,2,2],[2,2,3,2],[2,2,0,1],[0,1,1,1]],[[1,2,3,1],[2,2,3,2],[2,2,0,1],[0,1,1,1]],[[1,3,2,1],[2,2,3,2],[2,2,0,1],[0,1,1,1]],[[2,2,2,1],[2,2,3,2],[2,2,0,1],[0,1,1,1]],[[1,2,2,1],[2,2,3,2],[2,2,0,0],[2,1,2,0]],[[1,2,2,1],[2,2,3,2],[3,2,0,0],[1,1,2,0]],[[1,2,2,1],[3,2,3,2],[2,2,0,0],[1,1,2,0]],[[1,2,2,2],[2,2,3,2],[2,2,0,0],[1,1,2,0]],[[1,2,3,1],[2,2,3,2],[2,2,0,0],[1,1,2,0]],[[1,3,2,1],[2,2,3,2],[2,2,0,0],[1,1,2,0]],[[2,2,2,1],[2,2,3,2],[2,2,0,0],[1,1,2,0]],[[1,2,2,1],[2,2,3,2],[3,2,0,0],[0,2,2,0]],[[1,2,2,1],[3,2,3,2],[2,2,0,0],[0,2,2,0]],[[1,2,2,2],[2,2,3,2],[2,2,0,0],[0,2,2,0]],[[1,2,3,1],[2,2,3,2],[2,2,0,0],[0,2,2,0]],[[1,3,2,1],[2,2,3,2],[2,2,0,0],[0,2,2,0]],[[2,2,2,1],[2,2,3,2],[2,2,0,0],[0,2,2,0]],[[0,1,3,0],[1,3,3,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[1,4,3,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,4,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,3],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[3,0,1,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,1,3],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,1,2],[2,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,1,2],[1,3,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,1,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[2,0,1,2],[1,2,2,2]],[[0,1,3,0],[1,3,3,2],[2,0,2,2],[0,2,2,1]],[[0,1,2,0],[1,3,4,2],[2,0,2,2],[0,2,2,1]],[[0,1,2,0],[1,3,3,3],[2,0,2,2],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,2,3],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,2,2],[0,2,3,1]],[[0,1,2,0],[1,3,3,2],[2,0,2,2],[0,2,2,2]],[[0,1,3,0],[1,3,3,2],[2,0,2,2],[1,2,1,1]],[[0,1,2,0],[1,4,3,2],[2,0,2,2],[1,2,1,1]],[[0,1,2,0],[1,3,4,2],[2,0,2,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,3],[2,0,2,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,0,2,3],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,0,2,2],[1,2,1,2]],[[0,1,3,0],[1,3,3,2],[2,0,2,2],[1,2,2,0]],[[0,1,2,0],[1,4,3,2],[2,0,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,4,2],[2,0,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,3],[2,0,2,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,0,2,3],[1,2,2,0]],[[0,1,3,0],[1,3,3,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,0],[1,4,3,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,4,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,3],[2,0,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[3,0,3,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,4,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,3,0],[2,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,3,0],[1,3,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,3,0],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[2,0,3,0],[1,2,2,2]],[[0,1,3,0],[1,3,3,2],[2,0,3,1],[1,2,1,1]],[[0,1,2,0],[1,4,3,2],[2,0,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,4,2],[2,0,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,3],[2,0,3,1],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,0,4,1],[1,2,1,1]],[[0,1,3,0],[1,3,3,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,0],[1,4,3,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,0],[1,3,4,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,3],[2,0,3,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[3,0,3,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,0,4,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,0,3,1],[2,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,0,3,1],[1,3,2,0]],[[0,1,2,0],[1,3,3,2],[2,0,3,1],[1,2,3,0]],[[0,1,3,0],[1,3,3,2],[2,0,3,2],[0,1,2,1]],[[0,1,2,0],[1,3,4,2],[2,0,3,2],[0,1,2,1]],[[0,1,2,0],[1,3,3,3],[2,0,3,2],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,3,3],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,0,3,2],[0,1,2,2]],[[0,1,3,0],[1,3,3,2],[2,0,3,2],[0,2,1,1]],[[0,1,2,0],[1,3,4,2],[2,0,3,2],[0,2,1,1]],[[0,1,2,0],[1,3,3,3],[2,0,3,2],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,0,3,3],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,0,3,2],[0,2,1,2]],[[0,1,3,0],[1,3,3,2],[2,0,3,2],[0,2,2,0]],[[0,1,2,0],[1,3,4,2],[2,0,3,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,3],[2,0,3,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,0,3,3],[0,2,2,0]],[[0,1,3,0],[1,3,3,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[1,4,3,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,4,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,3],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[3,1,0,2],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,0,3],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,0,2],[2,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,0,2],[1,3,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,0,2],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[2,1,0,2],[1,2,2,2]],[[0,1,3,0],[1,3,3,2],[2,1,1,2],[0,2,2,1]],[[0,1,2,0],[1,4,3,2],[2,1,1,2],[0,2,2,1]],[[0,1,2,0],[1,3,4,2],[2,1,1,2],[0,2,2,1]],[[0,1,2,0],[1,3,3,3],[2,1,1,2],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,1,3],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,1,2],[0,3,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,1,2],[0,2,3,1]],[[0,1,2,0],[1,3,3,2],[2,1,1,2],[0,2,2,2]],[[0,1,3,0],[1,3,3,2],[2,1,2,2],[0,2,1,1]],[[0,1,2,0],[1,4,3,2],[2,1,2,2],[0,2,1,1]],[[0,1,2,0],[1,3,4,2],[2,1,2,2],[0,2,1,1]],[[0,1,2,0],[1,3,3,3],[2,1,2,2],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,1,2,3],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,1,2,2],[0,2,1,2]],[[0,1,3,0],[1,3,3,2],[2,1,2,2],[0,2,2,0]],[[0,1,2,0],[1,4,3,2],[2,1,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,4,2],[2,1,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,3],[2,1,2,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,1,2,3],[0,2,2,0]],[[0,1,3,0],[1,3,3,2],[2,1,3,0],[0,2,2,1]],[[0,1,2,0],[1,4,3,2],[2,1,3,0],[0,2,2,1]],[[0,1,2,0],[1,3,4,2],[2,1,3,0],[0,2,2,1]],[[0,1,2,0],[1,3,3,3],[2,1,3,0],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,4,0],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,3,0],[0,3,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,3,0],[0,2,3,1]],[[0,1,2,0],[1,3,3,2],[2,1,3,0],[0,2,2,2]],[[0,1,3,0],[1,3,3,2],[2,1,3,1],[0,2,1,1]],[[0,1,2,0],[1,4,3,2],[2,1,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,4,2],[2,1,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,3,3],[2,1,3,1],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,1,4,1],[0,2,1,1]],[[0,1,3,0],[1,3,3,2],[2,1,3,1],[0,2,2,0]],[[0,1,2,0],[1,4,3,2],[2,1,3,1],[0,2,2,0]],[[0,1,2,0],[1,3,4,2],[2,1,3,1],[0,2,2,0]],[[0,1,2,0],[1,3,3,3],[2,1,3,1],[0,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,1,4,1],[0,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,1,3,1],[0,3,2,0]],[[0,1,2,0],[1,3,3,2],[2,1,3,1],[0,2,3,0]],[[0,1,3,0],[1,3,3,2],[2,1,3,2],[0,0,2,1]],[[0,1,2,0],[1,3,4,2],[2,1,3,2],[0,0,2,1]],[[0,1,2,0],[1,3,3,3],[2,1,3,2],[0,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,3,3],[0,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,1,3,2],[0,0,2,2]],[[0,1,3,0],[1,3,3,2],[2,1,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,4,2],[2,1,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,3],[2,1,3,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,1,3,3],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,1,3,2],[0,1,1,2]],[[0,1,3,0],[1,3,3,2],[2,1,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,4,2],[2,1,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,3],[2,1,3,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,1,3,3],[0,1,2,0]],[[0,1,3,0],[1,3,3,2],[2,1,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,4,2],[2,1,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,3],[2,1,3,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,1,3,3],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,1,3,2],[1,0,1,2]],[[0,1,3,0],[1,3,3,2],[2,1,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,4,2],[2,1,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,3],[2,1,3,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,1,3,3],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[3,2,0,1],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,0,1],[2,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,0,1],[1,3,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,0,1],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[2,2,0,1],[1,2,2,2]],[[0,1,3,0],[1,3,3,2],[2,2,0,2],[0,2,2,1]],[[0,1,2,0],[1,4,3,2],[2,2,0,2],[0,2,2,1]],[[0,1,2,0],[1,3,4,2],[2,2,0,2],[0,2,2,1]],[[0,1,2,0],[1,3,3,3],[2,2,0,2],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,0,3],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,0,2],[0,3,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,0,2],[0,2,3,1]],[[0,1,2,0],[1,3,3,2],[2,2,0,2],[0,2,2,2]],[[0,1,2,0],[1,3,3,2],[3,2,0,2],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,0,2],[2,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,0,2],[1,3,1,1]],[[0,1,2,0],[1,3,3,2],[3,2,0,2],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,0,2],[2,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,0,2],[1,3,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,0,2],[1,2,3,0]],[[0,1,2,0],[1,3,3,2],[3,2,1,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,0],[2,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,0],[1,3,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,0],[1,2,3,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,0],[1,2,2,2]],[[0,1,2,0],[1,3,3,2],[3,2,1,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,1,1],[2,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,1,1],[1,3,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,1,1],[1,2,3,0]],[[0,1,3,0],[1,3,3,2],[2,2,1,2],[0,1,2,1]],[[0,1,2,0],[1,4,3,2],[2,2,1,2],[0,1,2,1]],[[0,1,2,0],[1,3,4,2],[2,2,1,2],[0,1,2,1]],[[0,1,2,0],[1,3,3,3],[2,2,1,2],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,3],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,2],[0,1,3,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,2],[0,1,2,2]],[[0,1,3,0],[1,3,3,2],[2,2,1,2],[1,0,2,1]],[[0,1,2,0],[1,4,3,2],[2,2,1,2],[1,0,2,1]],[[0,1,2,0],[1,3,4,2],[2,2,1,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,3],[2,2,1,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,3],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,2],[1,0,3,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,2],[1,0,2,2]],[[0,1,2,0],[1,3,3,2],[3,2,1,2],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,2],[2,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,1,2],[1,3,0,1]],[[0,1,2,0],[1,3,3,2],[3,2,1,2],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,2,1,2],[2,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,2,1,2],[1,3,1,0]],[[0,1,2,0],[1,3,3,2],[3,2,2,0],[1,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,0],[2,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,0],[1,3,1,1]],[[0,1,2,0],[1,3,3,2],[3,2,2,1],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,1],[2,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,1],[1,3,0,1]],[[0,1,2,0],[1,3,3,2],[3,2,2,1],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,2,2,1],[2,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,2,2,1],[1,3,1,0]],[[0,1,3,0],[1,3,3,2],[2,2,2,2],[0,0,2,1]],[[0,1,2,0],[1,4,3,2],[2,2,2,2],[0,0,2,1]],[[0,1,2,0],[1,3,4,2],[2,2,2,2],[0,0,2,1]],[[0,1,2,0],[1,3,3,3],[2,2,2,2],[0,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,3],[0,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,2],[0,0,2,2]],[[0,1,3,0],[1,3,3,2],[2,2,2,2],[0,1,1,1]],[[0,1,2,0],[1,4,3,2],[2,2,2,2],[0,1,1,1]],[[0,1,2,0],[1,3,4,2],[2,2,2,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,3],[2,2,2,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,3],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,2],[0,1,1,2]],[[0,1,3,0],[1,3,3,2],[2,2,2,2],[0,1,2,0]],[[0,1,2,0],[1,4,3,2],[2,2,2,2],[0,1,2,0]],[[0,1,2,0],[1,3,4,2],[2,2,2,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,3],[2,2,2,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,2,3],[0,1,2,0]],[[0,1,3,0],[1,3,3,2],[2,2,2,2],[0,2,0,1]],[[0,1,2,0],[1,4,3,2],[2,2,2,2],[0,2,0,1]],[[0,1,2,0],[1,3,4,2],[2,2,2,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,3],[2,2,2,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,3],[0,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,2],[0,2,0,2]],[[0,1,3,0],[1,3,3,2],[2,2,2,2],[0,2,1,0]],[[0,1,2,0],[1,4,3,2],[2,2,2,2],[0,2,1,0]],[[0,1,2,0],[1,3,4,2],[2,2,2,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,3],[2,2,2,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,2,2,3],[0,2,1,0]],[[0,1,3,0],[1,3,3,2],[2,2,2,2],[1,0,1,1]],[[0,1,2,0],[1,4,3,2],[2,2,2,2],[1,0,1,1]],[[0,1,2,0],[1,3,4,2],[2,2,2,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,3],[2,2,2,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,3],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,2],[1,0,1,2]],[[0,1,3,0],[1,3,3,2],[2,2,2,2],[1,0,2,0]],[[0,1,2,0],[1,4,3,2],[2,2,2,2],[1,0,2,0]],[[0,1,2,0],[1,3,4,2],[2,2,2,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,3],[2,2,2,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,2,3],[1,0,2,0]],[[0,1,3,0],[1,3,3,2],[2,2,2,2],[1,1,0,1]],[[0,1,2,0],[1,4,3,2],[2,2,2,2],[1,1,0,1]],[[0,1,2,0],[1,3,4,2],[2,2,2,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,3],[2,2,2,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,3],[1,1,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,2,2],[1,1,0,2]],[[0,1,3,0],[1,3,3,2],[2,2,2,2],[1,1,1,0]],[[0,1,2,0],[1,4,3,2],[2,2,2,2],[1,1,1,0]],[[0,1,2,0],[1,3,4,2],[2,2,2,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,3],[2,2,2,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[2,2,2,3],[1,1,1,0]],[[0,1,3,0],[1,3,3,2],[2,2,3,0],[0,1,2,1]],[[0,1,2,0],[1,4,3,2],[2,2,3,0],[0,1,2,1]],[[0,1,2,0],[1,3,4,2],[2,2,3,0],[0,1,2,1]],[[0,1,2,0],[1,3,3,3],[2,2,3,0],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,4,0],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,3,0],[0,1,3,1]],[[0,1,2,0],[1,3,3,2],[2,2,3,0],[0,1,2,2]],[[0,1,3,0],[1,3,3,2],[2,2,3,0],[0,2,1,1]],[[0,1,2,0],[1,4,3,2],[2,2,3,0],[0,2,1,1]],[[0,1,2,0],[1,3,4,2],[2,2,3,0],[0,2,1,1]],[[0,1,2,0],[1,3,3,3],[2,2,3,0],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,4,0],[0,2,1,1]],[[0,1,3,0],[1,3,3,2],[2,2,3,0],[1,0,2,1]],[[0,1,2,0],[1,4,3,2],[2,2,3,0],[1,0,2,1]],[[0,1,2,0],[1,3,4,2],[2,2,3,0],[1,0,2,1]],[[0,1,2,0],[1,3,3,3],[2,2,3,0],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,4,0],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,3,0],[1,0,3,1]],[[0,1,2,0],[1,3,3,2],[2,2,3,0],[1,0,2,2]],[[0,1,3,0],[1,3,3,2],[2,2,3,0],[1,1,1,1]],[[0,1,2,0],[1,4,3,2],[2,2,3,0],[1,1,1,1]],[[0,1,2,0],[1,3,4,2],[2,2,3,0],[1,1,1,1]],[[0,1,2,0],[1,3,3,3],[2,2,3,0],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,4,0],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[3,2,3,0],[1,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,2,3,0],[2,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,2,3,0],[1,3,1,0]],[[0,1,3,0],[1,3,3,2],[2,2,3,1],[0,0,2,1]],[[0,1,2,0],[1,4,3,2],[2,2,3,1],[0,0,2,1]],[[0,1,2,0],[1,3,4,2],[2,2,3,1],[0,0,2,1]],[[0,1,2,0],[1,3,3,3],[2,2,3,1],[0,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,2,4,1],[0,0,2,1]],[[0,1,3,0],[1,3,3,2],[2,2,3,1],[0,1,1,1]],[[0,1,2,0],[1,4,3,2],[2,2,3,1],[0,1,1,1]],[[0,1,2,0],[1,3,4,2],[2,2,3,1],[0,1,1,1]],[[0,1,2,0],[1,3,3,3],[2,2,3,1],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,4,1],[0,1,1,1]],[[0,1,3,0],[1,3,3,2],[2,2,3,1],[0,1,2,0]],[[0,1,2,0],[1,4,3,2],[2,2,3,1],[0,1,2,0]],[[0,1,2,0],[1,3,4,2],[2,2,3,1],[0,1,2,0]],[[0,1,2,0],[1,3,3,3],[2,2,3,1],[0,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,4,1],[0,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,3,1],[0,1,3,0]],[[0,1,3,0],[1,3,3,2],[2,2,3,1],[0,2,0,1]],[[0,1,2,0],[1,4,3,2],[2,2,3,1],[0,2,0,1]],[[0,1,2,0],[1,3,4,2],[2,2,3,1],[0,2,0,1]],[[0,1,2,0],[1,3,3,3],[2,2,3,1],[0,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,4,1],[0,2,0,1]],[[0,1,3,0],[1,3,3,2],[2,2,3,1],[0,2,1,0]],[[0,1,2,0],[1,4,3,2],[2,2,3,1],[0,2,1,0]],[[0,1,2,0],[1,3,4,2],[2,2,3,1],[0,2,1,0]],[[0,1,2,0],[1,3,3,3],[2,2,3,1],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,2,4,1],[0,2,1,0]],[[0,1,3,0],[1,3,3,2],[2,2,3,1],[1,0,1,1]],[[0,1,2,0],[1,4,3,2],[2,2,3,1],[1,0,1,1]],[[0,1,2,0],[1,3,4,2],[2,2,3,1],[1,0,1,1]],[[0,1,2,0],[1,3,3,3],[2,2,3,1],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,2,4,1],[1,0,1,1]],[[0,1,3,0],[1,3,3,2],[2,2,3,1],[1,0,2,0]],[[0,1,2,0],[1,4,3,2],[2,2,3,1],[1,0,2,0]],[[0,1,2,0],[1,3,4,2],[2,2,3,1],[1,0,2,0]],[[0,1,2,0],[1,3,3,3],[2,2,3,1],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,4,1],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,2,3,1],[1,0,3,0]],[[0,1,3,0],[1,3,3,2],[2,2,3,1],[1,1,0,1]],[[0,1,2,0],[1,4,3,2],[2,2,3,1],[1,1,0,1]],[[0,1,2,0],[1,3,4,2],[2,2,3,1],[1,1,0,1]],[[0,1,2,0],[1,3,3,3],[2,2,3,1],[1,1,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,4,1],[1,1,0,1]],[[0,1,3,0],[1,3,3,2],[2,2,3,1],[1,1,1,0]],[[0,1,2,0],[1,4,3,2],[2,2,3,1],[1,1,1,0]],[[0,1,2,0],[1,3,4,2],[2,2,3,1],[1,1,1,0]],[[0,1,2,0],[1,3,3,3],[2,2,3,1],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,2,1],[2,2,3,2],[2,1,1,0],[2,2,1,0]],[[1,2,2,1],[2,2,3,2],[3,1,1,0],[1,2,1,0]],[[1,2,2,1],[3,2,3,2],[2,1,1,0],[1,2,1,0]],[[1,2,2,2],[2,2,3,2],[2,1,1,0],[1,2,1,0]],[[1,2,3,1],[2,2,3,2],[2,1,1,0],[1,2,1,0]],[[1,3,2,1],[2,2,3,2],[2,1,1,0],[1,2,1,0]],[[2,2,2,1],[2,2,3,2],[2,1,1,0],[1,2,1,0]],[[1,2,2,1],[2,2,3,2],[2,1,1,0],[2,2,0,1]],[[1,2,2,1],[2,2,3,2],[3,1,1,0],[1,2,0,1]],[[1,2,2,1],[3,2,3,2],[2,1,1,0],[1,2,0,1]],[[1,2,2,2],[2,2,3,2],[2,1,1,0],[1,2,0,1]],[[0,1,3,0],[1,3,3,2],[2,2,3,2],[0,1,0,1]],[[0,1,2,0],[1,4,3,2],[2,2,3,2],[0,1,0,1]],[[0,1,2,0],[1,3,4,2],[2,2,3,2],[0,1,0,1]],[[0,1,2,0],[1,3,3,3],[2,2,3,2],[0,1,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,3,1],[2,2,3,2],[2,1,1,0],[1,2,0,1]],[[1,3,2,1],[2,2,3,2],[2,1,1,0],[1,2,0,1]],[[2,2,2,1],[2,2,3,2],[2,1,1,0],[1,2,0,1]],[[1,2,2,1],[2,2,3,3],[2,1,0,2],[1,1,1,0]],[[0,1,3,0],[1,3,3,2],[2,2,3,2],[1,0,0,1]],[[0,1,2,0],[1,4,3,2],[2,2,3,2],[1,0,0,1]],[[0,1,2,0],[1,3,4,2],[2,2,3,2],[1,0,0,1]],[[0,1,2,0],[1,3,3,3],[2,2,3,2],[1,0,0,1]],[[0,1,2,0],[1,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[3,2,3,2],[2,1,0,2],[1,1,1,0]],[[1,2,2,2],[2,2,3,2],[2,1,0,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[2,1,0,2],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[2,1,0,2],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[2,1,0,2],[1,1,1,0]],[[1,2,2,1],[2,2,3,3],[2,1,0,2],[1,1,0,1]],[[1,2,2,1],[3,2,3,2],[2,1,0,2],[1,1,0,1]],[[1,2,2,2],[2,2,3,2],[2,1,0,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[2,1,0,2],[1,1,0,1]],[[1,3,2,1],[2,2,3,2],[2,1,0,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,2],[2,1,0,2],[1,1,0,1]],[[1,2,2,1],[2,2,3,3],[2,1,0,2],[1,0,2,0]],[[1,2,2,1],[3,2,3,2],[2,1,0,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[2,1,0,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[2,1,0,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,2],[2,1,0,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,2],[2,1,0,2],[1,0,2,0]],[[1,2,2,1],[2,2,3,3],[2,1,0,2],[1,0,1,1]],[[1,2,2,1],[3,2,3,2],[2,1,0,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,2],[2,1,0,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[2,1,0,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,2],[2,1,0,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,2],[2,1,0,2],[1,0,1,1]],[[1,2,2,1],[2,2,3,3],[2,1,0,2],[0,2,1,0]],[[1,2,2,1],[3,2,3,2],[2,1,0,2],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[2,1,0,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,2],[2,1,0,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[2,1,0,2],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[2,1,0,2],[0,2,1,0]],[[1,2,2,1],[2,2,3,3],[2,1,0,2],[0,2,0,1]],[[1,2,2,1],[3,2,3,2],[2,1,0,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[2,1,0,2],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[2,1,0,2],[0,2,0,1]],[[1,3,2,1],[2,2,3,2],[2,1,0,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[2,1,0,2],[0,2,0,1]],[[1,2,2,1],[2,2,3,3],[2,1,0,2],[0,1,2,0]],[[1,2,2,1],[3,2,3,2],[2,1,0,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[2,1,0,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,2],[2,1,0,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,2],[2,1,0,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,2],[2,1,0,2],[0,1,2,0]],[[1,2,2,1],[2,2,3,3],[2,1,0,2],[0,1,1,1]],[[1,2,2,1],[3,2,3,2],[2,1,0,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,2],[2,1,0,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,2],[2,1,0,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,2],[2,1,0,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,2],[2,1,0,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[3,3,0,0],[1,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,0],[2,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,0],[1,3,2,1]],[[0,1,3,0],[1,3,3,2],[2,3,0,1],[0,2,2,1]],[[0,1,2,0],[1,4,3,2],[2,3,0,1],[0,2,2,1]],[[0,1,2,0],[1,3,4,2],[2,3,0,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,3],[2,3,0,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[3,3,0,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,4,0,1],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,1],[0,3,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,1],[0,2,3,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,1],[0,2,2,2]],[[0,1,3,0],[1,3,3,2],[2,3,0,1],[1,1,2,1]],[[0,1,2,0],[1,4,3,2],[2,3,0,1],[1,1,2,1]],[[0,1,2,0],[1,3,4,2],[2,3,0,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,3],[2,3,0,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[3,3,0,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,4,0,1],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,1],[2,1,2,1]],[[0,1,2,0],[1,3,3,2],[3,3,0,1],[1,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,0,1],[2,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,0,1],[1,3,2,0]],[[0,1,3,0],[1,3,3,2],[2,3,0,2],[0,1,2,1]],[[0,1,2,0],[1,4,3,2],[2,3,0,2],[0,1,2,1]],[[0,1,2,0],[1,3,4,2],[2,3,0,2],[0,1,2,1]],[[0,1,2,0],[1,3,3,3],[2,3,0,2],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[3,3,0,2],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,4,0,2],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,3],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[0,1,3,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[0,1,2,2]],[[0,1,3,0],[1,3,3,2],[2,3,0,2],[0,2,1,1]],[[0,1,2,0],[1,4,3,2],[2,3,0,2],[0,2,1,1]],[[0,1,2,0],[1,3,4,2],[2,3,0,2],[0,2,1,1]],[[0,1,2,0],[1,3,3,3],[2,3,0,2],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[3,3,0,2],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,4,0,2],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,3],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[0,3,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[0,2,1,2]],[[0,1,3,0],[1,3,3,2],[2,3,0,2],[0,2,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,0,2],[0,2,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,0,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,3],[2,3,0,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,2],[3,3,0,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,4,0,2],[0,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,0,3],[0,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[0,3,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[0,2,3,0]],[[0,1,3,0],[1,3,3,2],[2,3,0,2],[1,0,2,1]],[[0,1,2,0],[1,4,3,2],[2,3,0,2],[1,0,2,1]],[[0,1,2,0],[1,3,4,2],[2,3,0,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,3],[2,3,0,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[3,3,0,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,4,0,2],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,3],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[2,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[1,0,3,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[1,0,2,2]],[[0,1,3,0],[1,3,3,2],[2,3,0,2],[1,1,1,1]],[[0,1,2,0],[1,4,3,2],[2,3,0,2],[1,1,1,1]],[[0,1,2,0],[1,3,4,2],[2,3,0,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,3],[2,3,0,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[3,3,0,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,4,0,2],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,3],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[2,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[1,1,1,2]],[[0,1,3,0],[1,3,3,2],[2,3,0,2],[1,1,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,0,2],[1,1,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,0,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,3],[2,3,0,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[3,3,0,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,4,0,2],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,0,3],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[2,2,3,2],[2,1,0,1],[2,2,1,0]],[[1,2,2,1],[2,2,3,2],[3,1,0,1],[1,2,1,0]],[[1,2,2,1],[3,2,3,2],[2,1,0,1],[1,2,1,0]],[[1,2,2,2],[2,2,3,2],[2,1,0,1],[1,2,1,0]],[[1,2,3,1],[2,2,3,2],[2,1,0,1],[1,2,1,0]],[[0,1,3,0],[1,3,3,2],[2,3,1,0],[0,2,2,1]],[[0,1,2,0],[1,4,3,2],[2,3,1,0],[0,2,2,1]],[[0,1,2,0],[1,3,4,2],[2,3,1,0],[0,2,2,1]],[[0,1,2,0],[1,3,3,3],[2,3,1,0],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[3,3,1,0],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,4,1,0],[0,2,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,0],[0,3,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,0],[0,2,3,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,0],[0,2,2,2]],[[0,1,3,0],[1,3,3,2],[2,3,1,0],[1,1,2,1]],[[0,1,2,0],[1,4,3,2],[2,3,1,0],[1,1,2,1]],[[0,1,2,0],[1,3,4,2],[2,3,1,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,3],[2,3,1,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[3,3,1,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,4,1,0],[1,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,0],[2,1,2,1]],[[0,1,3,0],[1,3,3,2],[2,3,1,1],[0,2,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,1,1],[0,2,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,1,1],[0,2,2,0]],[[0,1,2,0],[1,3,3,3],[2,3,1,1],[0,2,2,0]],[[0,1,2,0],[1,3,3,2],[3,3,1,1],[0,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,4,1,1],[0,2,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,1,1],[0,3,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,1,1],[0,2,3,0]],[[0,1,3,0],[1,3,3,2],[2,3,1,1],[1,1,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,1,1],[1,1,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,1,1],[1,1,2,0]],[[0,1,2,0],[1,3,3,3],[2,3,1,1],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[3,3,1,1],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,4,1,1],[1,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,3,2,1],[2,2,3,2],[2,1,0,1],[1,2,1,0]],[[2,2,2,1],[2,2,3,2],[2,1,0,1],[1,2,1,0]],[[1,2,2,1],[2,2,3,2],[2,1,0,1],[2,2,0,1]],[[1,2,2,1],[2,2,3,2],[3,1,0,1],[1,2,0,1]],[[1,2,2,1],[3,2,3,2],[2,1,0,1],[1,2,0,1]],[[1,2,2,2],[2,2,3,2],[2,1,0,1],[1,2,0,1]],[[1,2,3,1],[2,2,3,2],[2,1,0,1],[1,2,0,1]],[[1,3,2,1],[2,2,3,2],[2,1,0,1],[1,2,0,1]],[[2,2,2,1],[2,2,3,2],[2,1,0,1],[1,2,0,1]],[[0,1,3,0],[1,3,3,2],[2,3,1,2],[0,1,1,1]],[[0,1,2,0],[1,4,3,2],[2,3,1,2],[0,1,1,1]],[[0,1,2,0],[1,3,4,2],[2,3,1,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,3],[2,3,1,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[3,3,1,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,4,1,2],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,3],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,2],[0,1,1,2]],[[0,1,3,0],[1,3,3,2],[2,3,1,2],[0,1,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,1,2],[0,1,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,1,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,3],[2,3,1,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,2],[3,3,1,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,4,1,2],[0,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,1,3],[0,1,2,0]],[[0,1,3,0],[1,3,3,2],[2,3,1,2],[0,2,0,1]],[[0,1,2,0],[1,4,3,2],[2,3,1,2],[0,2,0,1]],[[0,1,2,0],[1,3,4,2],[2,3,1,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,3],[2,3,1,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,2],[3,3,1,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,4,1,2],[0,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,3],[0,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,2],[0,3,0,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,2],[0,2,0,2]],[[0,1,3,0],[1,3,3,2],[2,3,1,2],[0,2,1,0]],[[0,1,2,0],[1,4,3,2],[2,3,1,2],[0,2,1,0]],[[0,1,2,0],[1,3,4,2],[2,3,1,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,3],[2,3,1,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[3,3,1,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,4,1,2],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,3,1,3],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[2,2,3,2],[2,1,0,0],[1,3,2,0]],[[1,2,2,1],[2,2,3,2],[2,1,0,0],[2,2,2,0]],[[1,2,2,1],[2,2,3,2],[3,1,0,0],[1,2,2,0]],[[0,1,3,0],[1,3,3,2],[2,3,1,2],[1,0,1,1]],[[0,1,2,0],[1,4,3,2],[2,3,1,2],[1,0,1,1]],[[0,1,2,0],[1,3,4,2],[2,3,1,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,3],[2,3,1,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[3,3,1,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,4,1,2],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,3],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,2],[2,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,2],[1,0,1,2]],[[0,1,3,0],[1,3,3,2],[2,3,1,2],[1,0,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,1,2],[1,0,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,1,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,3],[2,3,1,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[3,3,1,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,4,1,2],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,1,3],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,1,2],[2,0,2,0]],[[0,1,3,0],[1,3,3,2],[2,3,1,2],[1,1,0,1]],[[0,1,2,0],[1,4,3,2],[2,3,1,2],[1,1,0,1]],[[0,1,2,0],[1,3,4,2],[2,3,1,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,3],[2,3,1,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,2],[3,3,1,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,2],[2,4,1,2],[1,1,0,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,3],[1,1,0,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,2],[2,1,0,1]],[[0,1,2,0],[1,3,3,2],[2,3,1,2],[1,1,0,2]],[[0,1,3,0],[1,3,3,2],[2,3,1,2],[1,1,1,0]],[[0,1,2,0],[1,4,3,2],[2,3,1,2],[1,1,1,0]],[[0,1,2,0],[1,3,4,2],[2,3,1,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,3],[2,3,1,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[3,3,1,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[2,4,1,2],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[2,3,1,3],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,1],[3,2,3,2],[2,1,0,0],[1,2,2,0]],[[1,2,2,2],[2,2,3,2],[2,1,0,0],[1,2,2,0]],[[1,2,3,1],[2,2,3,2],[2,1,0,0],[1,2,2,0]],[[1,3,2,1],[2,2,3,2],[2,1,0,0],[1,2,2,0]],[[2,2,2,1],[2,2,3,2],[2,1,0,0],[1,2,2,0]],[[0,1,3,0],[1,3,3,2],[2,3,1,2],[1,2,0,0]],[[0,1,2,0],[1,4,3,2],[2,3,1,2],[1,2,0,0]],[[0,1,2,0],[1,3,4,2],[2,3,1,2],[1,2,0,0]],[[0,1,2,0],[1,3,3,3],[2,3,1,2],[1,2,0,0]],[[0,1,2,0],[1,3,3,2],[3,3,1,2],[1,2,0,0]],[[0,1,2,0],[1,3,3,2],[2,4,1,2],[1,2,0,0]],[[0,1,2,0],[1,3,3,2],[2,3,1,2],[2,2,0,0]],[[0,1,3,0],[1,3,3,2],[2,3,2,0],[0,1,2,1]],[[0,1,2,0],[1,4,3,2],[2,3,2,0],[0,1,2,1]],[[0,1,2,0],[1,3,4,2],[2,3,2,0],[0,1,2,1]],[[0,1,2,0],[1,3,3,3],[2,3,2,0],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[3,3,2,0],[0,1,2,1]],[[0,1,2,0],[1,3,3,2],[2,4,2,0],[0,1,2,1]],[[0,1,3,0],[1,3,3,2],[2,3,2,0],[0,2,1,1]],[[0,1,2,0],[1,4,3,2],[2,3,2,0],[0,2,1,1]],[[0,1,2,0],[1,3,4,2],[2,3,2,0],[0,2,1,1]],[[0,1,2,0],[1,3,3,3],[2,3,2,0],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[3,3,2,0],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,4,2,0],[0,2,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,2,0],[0,3,1,1]],[[0,1,3,0],[1,3,3,2],[2,3,2,0],[1,0,2,1]],[[0,1,2,0],[1,4,3,2],[2,3,2,0],[1,0,2,1]],[[0,1,2,0],[1,3,4,2],[2,3,2,0],[1,0,2,1]],[[0,1,2,0],[1,3,3,3],[2,3,2,0],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[3,3,2,0],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,4,2,0],[1,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,2,0],[2,0,2,1]],[[0,1,3,0],[1,3,3,2],[2,3,2,0],[1,1,1,1]],[[0,1,2,0],[1,4,3,2],[2,3,2,0],[1,1,1,1]],[[0,1,2,0],[1,3,4,2],[2,3,2,0],[1,1,1,1]],[[0,1,2,0],[1,3,3,3],[2,3,2,0],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[3,3,2,0],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,4,2,0],[1,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,2,0],[2,1,1,1]],[[0,1,3,0],[1,3,3,2],[2,3,2,0],[1,2,0,1]],[[0,1,2,0],[1,4,3,2],[2,3,2,0],[1,2,0,1]],[[0,1,2,0],[1,3,4,2],[2,3,2,0],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[3,3,2,0],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,4,2,0],[1,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,3,2,0],[2,2,0,1]],[[0,1,3,0],[1,3,3,2],[2,3,2,1],[0,1,1,1]],[[0,1,2,0],[1,4,3,2],[2,3,2,1],[0,1,1,1]],[[0,1,2,0],[1,3,4,2],[2,3,2,1],[0,1,1,1]],[[0,1,2,0],[1,3,3,3],[2,3,2,1],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[3,3,2,1],[0,1,1,1]],[[0,1,2,0],[1,3,3,2],[2,4,2,1],[0,1,1,1]],[[0,1,3,0],[1,3,3,2],[2,3,2,1],[0,1,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,2,1],[0,1,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,2,1],[0,1,2,0]],[[0,1,2,0],[1,3,3,3],[2,3,2,1],[0,1,2,0]],[[0,1,2,0],[1,3,3,2],[3,3,2,1],[0,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,4,2,1],[0,1,2,0]],[[0,1,3,0],[1,3,3,2],[2,3,2,1],[0,2,0,1]],[[0,1,2,0],[1,4,3,2],[2,3,2,1],[0,2,0,1]],[[0,1,2,0],[1,3,4,2],[2,3,2,1],[0,2,0,1]],[[0,1,2,0],[1,3,3,3],[2,3,2,1],[0,2,0,1]],[[0,1,2,0],[1,3,3,2],[3,3,2,1],[0,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,4,2,1],[0,2,0,1]],[[0,1,2,0],[1,3,3,2],[2,3,2,1],[0,3,0,1]],[[0,1,3,0],[1,3,3,2],[2,3,2,1],[0,2,1,0]],[[0,1,2,0],[1,4,3,2],[2,3,2,1],[0,2,1,0]],[[0,1,2,0],[1,3,4,2],[2,3,2,1],[0,2,1,0]],[[0,1,2,0],[1,3,3,3],[2,3,2,1],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[3,3,2,1],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,4,2,1],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,3,2,1],[0,3,1,0]],[[0,1,3,0],[1,3,3,2],[2,3,2,1],[1,0,1,1]],[[0,1,2,0],[1,4,3,2],[2,3,2,1],[1,0,1,1]],[[0,1,2,0],[1,3,4,2],[2,3,2,1],[1,0,1,1]],[[0,1,2,0],[1,3,3,3],[2,3,2,1],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[3,3,2,1],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,4,2,1],[1,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,2,1],[2,0,1,1]],[[0,1,3,0],[1,3,3,2],[2,3,2,1],[1,0,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,2,1],[1,0,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,2,1],[1,0,2,0]],[[0,1,2,0],[1,3,3,3],[2,3,2,1],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[3,3,2,1],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,4,2,1],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,2,1],[2,0,2,0]],[[0,1,3,0],[1,3,3,2],[2,3,2,1],[1,1,0,1]],[[0,1,2,0],[1,4,3,2],[2,3,2,1],[1,1,0,1]],[[0,1,2,0],[1,3,4,2],[2,3,2,1],[1,1,0,1]],[[0,1,2,0],[1,3,3,3],[2,3,2,1],[1,1,0,1]],[[0,1,2,0],[1,3,3,2],[3,3,2,1],[1,1,0,1]],[[0,1,2,0],[1,3,3,2],[2,4,2,1],[1,1,0,1]],[[0,1,2,0],[1,3,3,2],[2,3,2,1],[2,1,0,1]],[[0,1,3,0],[1,3,3,2],[2,3,2,1],[1,1,1,0]],[[0,1,2,0],[1,4,3,2],[2,3,2,1],[1,1,1,0]],[[0,1,2,0],[1,3,4,2],[2,3,2,1],[1,1,1,0]],[[0,1,2,0],[1,3,3,3],[2,3,2,1],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[3,3,2,1],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[2,4,2,1],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[2,3,2,1],[2,1,1,0]],[[0,1,3,0],[1,3,3,2],[2,3,2,1],[1,2,0,0]],[[0,1,2,0],[1,4,3,2],[2,3,2,1],[1,2,0,0]],[[0,1,2,0],[1,3,4,2],[2,3,2,1],[1,2,0,0]],[[0,1,2,0],[1,3,3,3],[2,3,2,1],[1,2,0,0]],[[0,1,2,0],[1,3,3,2],[3,3,2,1],[1,2,0,0]],[[0,1,2,0],[1,3,3,2],[2,4,2,1],[1,2,0,0]],[[0,1,2,0],[1,3,3,2],[2,3,2,1],[2,2,0,0]],[[0,1,3,0],[1,3,3,2],[2,3,2,2],[0,0,1,1]],[[0,1,2,0],[1,4,3,2],[2,3,2,2],[0,0,1,1]],[[0,1,2,0],[1,3,4,2],[2,3,2,2],[0,0,1,1]],[[0,1,2,0],[1,3,3,3],[2,3,2,2],[0,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,2,3],[0,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,2,2],[0,0,1,2]],[[0,1,3,0],[1,3,3,2],[2,3,2,2],[0,0,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,2,2],[0,0,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,2,2],[0,0,2,0]],[[0,1,2,0],[1,3,3,3],[2,3,2,2],[0,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,1],[2,2,4,2],[2,0,3,0],[1,1,1,0]],[[1,2,2,1],[3,2,3,2],[2,0,3,0],[1,1,1,0]],[[1,2,2,2],[2,2,3,2],[2,0,3,0],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[2,0,3,0],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[2,0,3,0],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[2,0,3,0],[1,1,1,0]],[[1,2,2,1],[2,2,4,2],[2,0,3,0],[1,1,0,1]],[[1,2,2,1],[3,2,3,2],[2,0,3,0],[1,1,0,1]],[[1,2,2,2],[2,2,3,2],[2,0,3,0],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[2,0,3,0],[1,1,0,1]],[[1,3,2,1],[2,2,3,2],[2,0,3,0],[1,1,0,1]],[[2,2,2,1],[2,2,3,2],[2,0,3,0],[1,1,0,1]],[[1,2,2,1],[2,2,4,2],[2,0,3,0],[1,0,2,0]],[[1,2,2,1],[3,2,3,2],[2,0,3,0],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[2,0,3,0],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[2,0,3,0],[1,0,2,0]],[[1,3,2,1],[2,2,3,2],[2,0,3,0],[1,0,2,0]],[[2,2,2,1],[2,2,3,2],[2,0,3,0],[1,0,2,0]],[[1,2,2,1],[2,2,4,2],[2,0,3,0],[1,0,1,1]],[[1,2,2,1],[3,2,3,2],[2,0,3,0],[1,0,1,1]],[[1,2,2,2],[2,2,3,2],[2,0,3,0],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[2,0,3,0],[1,0,1,1]],[[1,3,2,1],[2,2,3,2],[2,0,3,0],[1,0,1,1]],[[2,2,2,1],[2,2,3,2],[2,0,3,0],[1,0,1,1]],[[1,2,2,1],[2,2,4,2],[2,0,3,0],[0,2,1,0]],[[1,2,2,1],[3,2,3,2],[2,0,3,0],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[2,0,3,0],[0,2,1,0]],[[1,2,3,1],[2,2,3,2],[2,0,3,0],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[2,0,3,0],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[2,0,3,0],[0,2,1,0]],[[1,2,2,1],[2,2,4,2],[2,0,3,0],[0,2,0,1]],[[1,2,2,1],[3,2,3,2],[2,0,3,0],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[2,0,3,0],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[2,0,3,0],[0,2,0,1]],[[1,3,2,1],[2,2,3,2],[2,0,3,0],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[2,0,3,0],[0,2,0,1]],[[1,2,2,1],[2,2,4,2],[2,0,3,0],[0,1,2,0]],[[1,2,2,1],[3,2,3,2],[2,0,3,0],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[2,0,3,0],[0,1,2,0]],[[1,2,3,1],[2,2,3,2],[2,0,3,0],[0,1,2,0]],[[1,3,2,1],[2,2,3,2],[2,0,3,0],[0,1,2,0]],[[2,2,2,1],[2,2,3,2],[2,0,3,0],[0,1,2,0]],[[1,2,2,1],[2,2,4,2],[2,0,3,0],[0,1,1,1]],[[1,2,2,1],[3,2,3,2],[2,0,3,0],[0,1,1,1]],[[1,2,2,2],[2,2,3,2],[2,0,3,0],[0,1,1,1]],[[1,2,3,1],[2,2,3,2],[2,0,3,0],[0,1,1,1]],[[1,3,2,1],[2,2,3,2],[2,0,3,0],[0,1,1,1]],[[2,2,2,1],[2,2,3,2],[2,0,3,0],[0,1,1,1]],[[1,2,2,1],[2,2,4,2],[2,0,3,0],[0,0,2,1]],[[1,2,2,2],[2,2,3,2],[2,0,3,0],[0,0,2,1]],[[1,2,3,1],[2,2,3,2],[2,0,3,0],[0,0,2,1]],[[1,3,2,1],[2,2,3,2],[2,0,3,0],[0,0,2,1]],[[2,2,2,1],[2,2,3,2],[2,0,3,0],[0,0,2,1]],[[0,1,3,0],[1,3,3,2],[2,3,3,0],[0,0,2,1]],[[0,1,2,0],[1,4,3,2],[2,3,3,0],[0,0,2,1]],[[0,1,2,0],[1,3,4,2],[2,3,3,0],[0,0,2,1]],[[0,1,2,0],[1,3,3,3],[2,3,3,0],[0,0,2,1]],[[0,1,2,0],[1,3,3,2],[2,3,4,0],[0,0,2,1]],[[0,1,3,0],[1,3,3,2],[2,3,3,0],[0,1,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,3,0],[0,1,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,3,0],[0,1,2,0]],[[0,1,2,0],[1,3,3,2],[3,3,3,0],[0,1,2,0]],[[0,1,2,0],[1,3,3,2],[2,4,3,0],[0,1,2,0]],[[0,1,3,0],[1,3,3,2],[2,3,3,0],[0,2,1,0]],[[0,1,2,0],[1,4,3,2],[2,3,3,0],[0,2,1,0]],[[0,1,2,0],[1,3,4,2],[2,3,3,0],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[3,3,3,0],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,4,3,0],[0,2,1,0]],[[0,1,2,0],[1,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,1],[2,2,3,3],[2,0,2,2],[1,0,0,1]],[[0,1,3,0],[1,3,3,2],[2,3,3,0],[1,0,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,3,0],[1,0,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,3,0],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[3,3,3,0],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,4,3,0],[1,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,3,0],[2,0,2,0]],[[0,1,3,0],[1,3,3,2],[2,3,3,0],[1,1,1,0]],[[0,1,2,0],[1,4,3,2],[2,3,3,0],[1,1,1,0]],[[0,1,2,0],[1,3,4,2],[2,3,3,0],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[3,3,3,0],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[2,4,3,0],[1,1,1,0]],[[0,1,2,0],[1,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[3,2,3,2],[2,0,2,2],[1,0,0,1]],[[1,2,2,2],[2,2,3,2],[2,0,2,2],[1,0,0,1]],[[1,2,3,1],[2,2,3,2],[2,0,2,2],[1,0,0,1]],[[1,3,2,1],[2,2,3,2],[2,0,2,2],[1,0,0,1]],[[2,2,2,1],[2,2,3,2],[2,0,2,2],[1,0,0,1]],[[0,1,3,0],[1,3,3,2],[2,3,3,0],[1,2,0,0]],[[0,1,2,0],[1,4,3,2],[2,3,3,0],[1,2,0,0]],[[0,1,2,0],[1,3,4,2],[2,3,3,0],[1,2,0,0]],[[0,1,2,0],[1,3,3,2],[3,3,3,0],[1,2,0,0]],[[0,1,2,0],[1,3,3,2],[2,4,3,0],[1,2,0,0]],[[0,1,2,0],[1,3,3,2],[2,3,3,0],[2,2,0,0]],[[0,1,3,0],[1,3,3,2],[2,3,3,1],[0,0,1,1]],[[0,1,2,0],[1,4,3,2],[2,3,3,1],[0,0,1,1]],[[0,1,2,0],[1,3,4,2],[2,3,3,1],[0,0,1,1]],[[0,1,2,0],[1,3,3,3],[2,3,3,1],[0,0,1,1]],[[0,1,2,0],[1,3,3,2],[2,3,4,1],[0,0,1,1]],[[0,1,3,0],[1,3,3,2],[2,3,3,1],[0,0,2,0]],[[0,1,2,0],[1,4,3,2],[2,3,3,1],[0,0,2,0]],[[0,1,2,0],[1,3,4,2],[2,3,3,1],[0,0,2,0]],[[0,1,2,0],[1,3,3,3],[2,3,3,1],[0,0,2,0]],[[0,1,2,0],[1,3,3,2],[2,3,4,1],[0,0,2,0]],[[1,2,2,1],[2,2,3,3],[2,0,2,2],[0,1,0,1]],[[1,2,2,2],[2,2,3,2],[2,0,2,2],[0,1,0,1]],[[1,2,3,1],[2,2,3,2],[2,0,2,2],[0,1,0,1]],[[1,3,2,1],[2,2,3,2],[2,0,2,2],[0,1,0,1]],[[2,2,2,1],[2,2,3,2],[2,0,2,2],[0,1,0,1]],[[0,1,3,0],[1,3,3,2],[2,3,3,1],[0,2,0,0]],[[0,1,2,0],[1,4,3,2],[2,3,3,1],[0,2,0,0]],[[0,1,2,0],[1,3,4,2],[2,3,3,1],[0,2,0,0]],[[0,1,2,0],[1,3,3,3],[2,3,3,1],[0,2,0,0]],[[0,1,2,0],[1,3,3,2],[3,3,3,1],[0,2,0,0]],[[0,1,2,0],[1,3,3,2],[2,4,3,1],[0,2,0,0]],[[0,1,3,0],[1,3,3,2],[2,3,3,1],[1,1,0,0]],[[0,1,2,0],[1,4,3,2],[2,3,3,1],[1,1,0,0]],[[0,1,2,0],[1,3,4,2],[2,3,3,1],[1,1,0,0]],[[0,1,2,0],[1,3,3,3],[2,3,3,1],[1,1,0,0]],[[0,1,2,0],[1,3,3,2],[3,3,3,1],[1,1,0,0]],[[0,1,2,0],[1,3,3,2],[2,4,3,1],[1,1,0,0]],[[0,1,2,0],[1,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[2,2,3,3],[2,0,1,2],[1,1,1,0]],[[1,2,2,1],[3,2,3,2],[2,0,1,2],[1,1,1,0]],[[1,2,2,2],[2,2,3,2],[2,0,1,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[2,0,1,2],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[2,0,1,2],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[2,0,1,2],[1,1,1,0]],[[1,2,2,1],[2,2,3,3],[2,0,1,2],[1,1,0,1]],[[1,2,2,1],[3,2,3,2],[2,0,1,2],[1,1,0,1]],[[1,2,2,2],[2,2,3,2],[2,0,1,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[2,0,1,2],[1,1,0,1]],[[1,3,2,1],[2,2,3,2],[2,0,1,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,2],[2,0,1,2],[1,1,0,1]],[[1,2,2,1],[2,2,3,3],[2,0,1,2],[1,0,2,0]],[[1,2,2,1],[3,2,3,2],[2,0,1,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[2,0,1,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[2,0,1,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,2],[2,0,1,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,2],[2,0,1,2],[1,0,2,0]],[[1,2,2,1],[2,2,3,3],[2,0,1,2],[1,0,1,1]],[[1,2,2,1],[3,2,3,2],[2,0,1,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,2],[2,0,1,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[2,0,1,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,2],[2,0,1,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,2],[2,0,1,2],[1,0,1,1]],[[1,2,2,1],[2,2,3,3],[2,0,1,2],[0,2,1,0]],[[1,2,2,1],[3,2,3,2],[2,0,1,2],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[2,0,1,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,2],[2,0,1,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[2,0,1,2],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[2,0,1,2],[0,2,1,0]],[[1,2,2,1],[2,2,3,3],[2,0,1,2],[0,2,0,1]],[[1,2,2,1],[3,2,3,2],[2,0,1,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[2,0,1,2],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[2,0,1,2],[0,2,0,1]],[[1,3,2,1],[2,2,3,2],[2,0,1,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[2,0,1,2],[0,2,0,1]],[[1,2,2,1],[2,2,3,3],[2,0,1,2],[0,1,2,0]],[[1,2,2,1],[3,2,3,2],[2,0,1,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[2,0,1,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,2],[2,0,1,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,2],[2,0,1,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,2],[2,0,1,2],[0,1,2,0]],[[1,2,2,1],[2,2,3,3],[2,0,1,2],[0,1,1,1]],[[1,2,2,1],[3,2,3,2],[2,0,1,2],[0,1,1,1]],[[0,1,3,0],[1,3,3,2],[2,3,3,2],[0,0,0,1]],[[0,1,2,0],[1,4,3,2],[2,3,3,2],[0,0,0,1]],[[0,1,2,0],[1,3,4,2],[2,3,3,2],[0,0,0,1]],[[0,1,2,0],[1,3,3,3],[2,3,3,2],[0,0,0,1]],[[0,1,2,0],[1,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,2],[2,2,3,2],[2,0,1,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,2],[2,0,1,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,2],[2,0,1,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,2],[2,0,1,2],[0,1,1,1]],[[1,2,2,1],[2,2,3,3],[2,0,1,2],[0,0,2,1]],[[1,2,2,2],[2,2,3,2],[2,0,1,2],[0,0,2,1]],[[1,2,3,1],[2,2,3,2],[2,0,1,2],[0,0,2,1]],[[1,3,2,1],[2,2,3,2],[2,0,1,2],[0,0,2,1]],[[2,2,2,1],[2,2,3,2],[2,0,1,2],[0,0,2,1]],[[1,2,2,1],[2,2,3,3],[2,0,0,2],[1,2,1,0]],[[1,2,2,1],[3,2,3,2],[2,0,0,2],[1,2,1,0]],[[1,2,2,2],[2,2,3,2],[2,0,0,2],[1,2,1,0]],[[1,2,3,1],[2,2,3,2],[2,0,0,2],[1,2,1,0]],[[1,3,2,1],[2,2,3,2],[2,0,0,2],[1,2,1,0]],[[2,2,2,1],[2,2,3,2],[2,0,0,2],[1,2,1,0]],[[1,2,2,1],[2,2,3,3],[2,0,0,2],[1,2,0,1]],[[1,2,2,1],[3,2,3,2],[2,0,0,2],[1,2,0,1]],[[1,2,2,2],[2,2,3,2],[2,0,0,2],[1,2,0,1]],[[1,2,3,1],[2,2,3,2],[2,0,0,2],[1,2,0,1]],[[1,3,2,1],[2,2,3,2],[2,0,0,2],[1,2,0,1]],[[2,2,2,1],[2,2,3,2],[2,0,0,2],[1,2,0,1]],[[1,2,2,1],[2,2,3,3],[2,0,0,2],[1,0,2,1]],[[1,2,2,1],[3,2,3,2],[2,0,0,2],[1,0,2,1]],[[1,2,2,2],[2,2,3,2],[2,0,0,2],[1,0,2,1]],[[1,2,3,1],[2,2,3,2],[2,0,0,2],[1,0,2,1]],[[1,3,2,1],[2,2,3,2],[2,0,0,2],[1,0,2,1]],[[2,2,2,1],[2,2,3,2],[2,0,0,2],[1,0,2,1]],[[1,2,2,1],[2,2,3,3],[2,0,0,2],[0,1,2,1]],[[1,2,2,1],[3,2,3,2],[2,0,0,2],[0,1,2,1]],[[1,2,2,2],[2,2,3,2],[2,0,0,2],[0,1,2,1]],[[1,2,3,1],[2,2,3,2],[2,0,0,2],[0,1,2,1]],[[1,3,2,1],[2,2,3,2],[2,0,0,2],[0,1,2,1]],[[2,2,2,1],[2,2,3,2],[2,0,0,2],[0,1,2,1]],[[1,2,2,1],[3,2,3,2],[1,3,2,0],[1,1,0,0]],[[1,2,2,2],[2,2,3,2],[1,3,2,0],[1,1,0,0]],[[1,2,3,1],[2,2,3,2],[1,3,2,0],[1,1,0,0]],[[1,3,2,1],[2,2,3,2],[1,3,2,0],[1,1,0,0]],[[2,2,2,1],[2,2,3,2],[1,3,2,0],[1,1,0,0]],[[1,2,2,1],[3,2,3,2],[1,3,2,0],[0,2,0,0]],[[1,2,2,2],[2,2,3,2],[1,3,2,0],[0,2,0,0]],[[1,2,3,1],[2,2,3,2],[1,3,2,0],[0,2,0,0]],[[1,3,2,1],[2,2,3,2],[1,3,2,0],[0,2,0,0]],[[2,2,2,1],[2,2,3,2],[1,3,2,0],[0,2,0,0]],[[0,1,2,0],[2,0,1,1],[3,3,3,2],[1,2,2,1]],[[0,1,2,0],[2,0,1,1],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[2,0,1,1],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[2,0,1,1],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[2,0,1,1],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[2,0,1,2],[1,3,3,3],[1,2,2,1]],[[0,1,2,0],[2,0,1,2],[1,3,3,2],[2,2,2,1]],[[0,1,2,0],[2,0,1,2],[1,3,3,2],[1,3,2,1]],[[0,1,2,0],[2,0,1,2],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[2,0,1,2],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[2,0,1,2],[3,2,3,2],[1,2,2,1]],[[0,1,2,0],[2,0,1,2],[2,2,3,3],[1,2,2,1]],[[0,1,2,0],[2,0,1,2],[2,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,0,1,2],[2,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,0,1,2],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,0,1,2],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,0,1,2],[3,3,2,2],[1,2,2,1]],[[0,1,2,0],[2,0,1,2],[2,3,2,3],[1,2,2,1]],[[0,1,2,0],[2,0,1,2],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,0,1,2],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,0,1,2],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,0,1,2],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[2,0,1,2],[3,3,3,1],[1,2,2,1]],[[0,1,2,0],[2,0,1,2],[2,3,3,1],[2,2,2,1]],[[0,1,2,0],[2,0,1,2],[2,3,3,1],[1,3,2,1]],[[0,1,2,0],[2,0,1,2],[2,3,3,1],[1,2,3,1]],[[0,1,2,0],[2,0,1,2],[2,3,3,1],[1,2,2,2]],[[0,1,2,0],[2,0,1,2],[2,3,3,3],[0,2,2,1]],[[0,1,2,0],[2,0,1,2],[2,3,3,2],[0,3,2,1]],[[0,1,2,0],[2,0,1,2],[2,3,3,2],[0,2,3,1]],[[0,1,2,0],[2,0,1,2],[2,3,3,2],[0,2,2,2]],[[0,1,2,0],[2,0,1,2],[3,3,3,2],[1,2,2,0]],[[0,1,2,0],[2,0,1,2],[2,3,3,2],[2,2,2,0]],[[0,1,2,0],[2,0,1,2],[2,3,3,2],[1,3,2,0]],[[0,1,2,0],[2,0,1,2],[2,3,3,2],[1,2,3,0]],[[0,1,2,0],[2,0,2,0],[3,3,3,2],[1,2,2,1]],[[0,1,2,0],[2,0,2,0],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[2,0,2,0],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[2,0,2,0],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[2,0,2,0],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[2,0,2,1],[3,3,3,1],[1,2,2,1]],[[0,1,2,0],[2,0,2,1],[2,3,3,1],[2,2,2,1]],[[0,1,2,0],[2,0,2,1],[2,3,3,1],[1,3,2,1]],[[0,1,2,0],[2,0,2,1],[2,3,3,1],[1,2,3,1]],[[0,1,2,0],[2,0,2,1],[2,3,3,1],[1,2,2,2]],[[0,1,2,0],[2,0,2,1],[3,3,3,2],[1,2,2,0]],[[0,1,2,0],[2,0,2,1],[2,3,3,2],[2,2,2,0]],[[0,1,2,0],[2,0,2,1],[2,3,3,2],[1,3,2,0]],[[0,1,2,0],[2,0,2,1],[2,3,3,2],[1,2,3,0]],[[0,1,2,0],[2,0,2,3],[1,3,2,2],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[1,3,2,3],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,0,2,2],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,0,2,2],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,0,2,2],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[2,0,2,2],[1,3,4,1],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[1,3,3,1],[2,2,2,1]],[[0,1,2,0],[2,0,2,2],[1,3,3,1],[1,3,2,1]],[[0,1,2,0],[2,0,2,2],[1,3,3,1],[1,2,3,1]],[[0,1,2,0],[2,0,2,2],[1,3,3,1],[1,2,2,2]],[[0,1,2,0],[2,0,2,3],[1,3,3,2],[1,2,1,1]],[[0,1,2,0],[2,0,2,2],[1,3,4,2],[1,2,1,1]],[[0,1,2,0],[2,0,2,2],[1,3,3,3],[1,2,1,1]],[[0,1,2,0],[2,0,2,2],[1,3,3,2],[1,2,1,2]],[[0,1,2,0],[2,0,2,3],[1,3,3,2],[1,2,2,0]],[[0,1,2,0],[2,0,2,2],[1,3,4,2],[1,2,2,0]],[[0,1,2,0],[2,0,2,2],[1,3,3,3],[1,2,2,0]],[[0,1,2,0],[2,0,2,2],[1,3,3,2],[2,2,2,0]],[[0,1,2,0],[2,0,2,2],[1,3,3,2],[1,3,2,0]],[[0,1,2,0],[2,0,2,2],[1,3,3,2],[1,2,3,0]],[[0,1,2,0],[2,0,2,3],[2,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[3,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,0,2,2],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,0,2,2],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,0,2,2],[3,2,3,1],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,0,2,2],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,0,2,2],[2,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,0,2,3],[2,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,0,2,2],[2,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,0,2,2],[2,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,0,2,2],[2,2,3,2],[1,2,1,2]],[[0,1,2,0],[2,0,2,3],[2,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,0,2,2],[3,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,0,2,2],[2,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,0,2,2],[2,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,0,2,2],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,0,2,2],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,0,2,2],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,0,2,3],[2,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[3,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,1,3],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,0,2,2],[2,3,1,2],[1,2,2,2]],[[0,1,2,0],[2,0,2,2],[3,3,2,1],[1,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,0,2,2],[2,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,0,2,3],[2,3,2,2],[0,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,2,3],[0,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[2,0,2,2],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[2,0,2,2],[3,3,2,2],[1,2,2,0]],[[0,1,2,0],[2,0,2,2],[2,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,0,2,2],[2,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,0,2,2],[2,3,2,2],[1,2,3,0]],[[0,1,2,0],[2,0,2,2],[2,3,4,1],[0,2,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,3,1],[0,3,2,1]],[[0,1,2,0],[2,0,2,2],[2,3,3,1],[0,2,3,1]],[[0,1,2,0],[2,0,2,2],[2,3,3,1],[0,2,2,2]],[[0,1,2,0],[2,0,2,2],[3,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,0,2,2],[2,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,0,2,2],[2,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,0,2,3],[2,3,3,2],[0,2,1,1]],[[0,1,2,0],[2,0,2,2],[2,3,4,2],[0,2,1,1]],[[0,1,2,0],[2,0,2,2],[2,3,3,3],[0,2,1,1]],[[0,1,2,0],[2,0,2,2],[2,3,3,2],[0,2,1,2]],[[0,1,2,0],[2,0,2,3],[2,3,3,2],[0,2,2,0]],[[0,1,2,0],[2,0,2,2],[2,3,4,2],[0,2,2,0]],[[0,1,2,0],[2,0,2,2],[2,3,3,3],[0,2,2,0]],[[0,1,2,0],[2,0,2,2],[2,3,3,2],[0,3,2,0]],[[0,1,2,0],[2,0,2,2],[2,3,3,2],[0,2,3,0]],[[0,1,2,0],[2,0,2,2],[3,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,0,2,2],[2,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,0,2,2],[2,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,0,2,2],[3,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,0,2,2],[2,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,0,2,2],[2,3,3,2],[1,3,1,0]],[[0,1,2,0],[2,0,3,0],[1,3,4,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,0],[1,3,3,2],[2,2,2,1]],[[0,1,2,0],[2,0,3,0],[1,3,3,2],[1,3,2,1]],[[0,1,2,0],[2,0,3,0],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[2,0,3,0],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[2,0,3,0],[3,2,3,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,0],[2,2,4,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,0],[2,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,0,3,0],[2,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,0,3,0],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,0,3,0],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,0,3,0],[3,3,2,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,0],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,0,3,0],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,0,3,0],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,0,3,0],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[2,0,3,0],[2,3,4,2],[0,2,2,1]],[[0,1,2,0],[2,0,3,0],[2,3,3,2],[0,3,2,1]],[[0,1,2,0],[2,0,3,0],[2,3,3,2],[0,2,3,1]],[[0,1,2,0],[2,0,3,0],[2,3,3,2],[0,2,2,2]],[[0,1,2,0],[2,0,3,0],[3,3,3,2],[1,2,1,1]],[[0,1,2,0],[2,0,3,0],[2,3,3,2],[2,2,1,1]],[[0,1,2,0],[2,0,3,0],[2,3,3,2],[1,3,1,1]],[[0,1,2,0],[2,0,3,1],[1,3,2,3],[1,2,2,1]],[[0,1,2,0],[2,0,3,1],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,0,3,1],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,0,3,1],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,0,3,1],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[2,0,3,1],[1,3,4,1],[1,2,2,1]],[[0,1,2,0],[2,0,3,1],[1,3,3,1],[2,2,2,1]],[[0,1,2,0],[2,0,3,1],[1,3,3,1],[1,3,2,1]],[[0,1,2,0],[2,0,3,1],[1,3,3,1],[1,2,3,1]],[[0,1,2,0],[2,0,3,1],[1,3,3,1],[1,2,2,2]],[[0,1,2,0],[2,0,3,1],[1,3,4,2],[1,2,1,1]],[[0,1,2,0],[2,0,3,1],[1,3,3,3],[1,2,1,1]],[[0,1,2,0],[2,0,3,1],[1,3,3,2],[1,2,1,2]],[[0,1,2,0],[2,0,3,1],[1,3,4,2],[1,2,2,0]],[[0,1,2,0],[2,0,3,1],[1,3,3,3],[1,2,2,0]],[[0,1,2,0],[2,0,3,1],[1,3,3,2],[2,2,2,0]],[[0,1,2,0],[2,0,3,1],[1,3,3,2],[1,3,2,0]],[[0,1,2,0],[2,0,3,1],[1,3,3,2],[1,2,3,0]],[[0,1,2,0],[2,0,3,1],[3,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,0,3,1],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,0,3,1],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,0,3,1],[3,2,3,1],[1,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,0,3,1],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,0,3,1],[2,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,0,3,1],[2,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,0,3,1],[2,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,0,3,1],[2,2,3,2],[1,2,1,2]],[[0,1,2,0],[2,0,3,1],[3,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,0,3,1],[2,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,0,3,1],[2,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,0,3,1],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,0,3,1],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,0,3,1],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,0,3,1],[3,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,1,3],[1,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,0,3,1],[2,3,1,2],[1,2,2,2]],[[0,1,2,0],[2,0,3,1],[3,3,2,1],[1,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,0,3,1],[2,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,0,3,1],[2,3,2,3],[0,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[2,0,3,1],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[2,0,3,1],[3,3,2,2],[1,2,2,0]],[[0,1,2,0],[2,0,3,1],[2,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,0,3,1],[2,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,0,3,1],[2,3,2,2],[1,2,3,0]],[[0,1,2,0],[2,0,3,1],[3,3,3,0],[1,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,0],[2,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,0],[1,3,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,0],[1,2,3,1]],[[0,1,2,0],[2,0,3,1],[2,3,4,1],[0,2,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,1],[0,3,2,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,1],[0,2,3,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,1],[0,2,2,2]],[[0,1,2,0],[2,0,3,1],[3,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,0,3,1],[2,3,4,2],[0,2,1,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,3],[0,2,1,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,2],[0,2,1,2]],[[0,1,2,0],[2,0,3,1],[2,3,4,2],[0,2,2,0]],[[0,1,2,0],[2,0,3,1],[2,3,3,3],[0,2,2,0]],[[0,1,2,0],[2,0,3,1],[2,3,3,2],[0,3,2,0]],[[0,1,2,0],[2,0,3,1],[2,3,3,2],[0,2,3,0]],[[0,1,2,0],[2,0,3,1],[3,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,0,3,1],[2,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,0,3,1],[3,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,0,3,1],[2,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,0,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,2,3,2],[1,3,1,0],[1,2,0,0]],[[1,2,2,2],[2,2,3,2],[1,3,1,0],[1,2,0,0]],[[0,1,2,0],[2,0,3,3],[1,1,3,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[1,1,3,3],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[1,1,3,2],[1,2,3,1]],[[0,1,2,0],[2,0,3,2],[1,1,3,2],[1,2,2,2]],[[0,1,2,0],[2,0,3,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,0,3,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,0,3,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,0,3,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,0,3,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,0,3,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,0,3,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,0,3,2],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,0,3,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,0,3,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,0,3,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,0,3,2],[1,2,3,2],[1,2,1,2]],[[0,1,2,0],[2,0,3,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,0,3,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,0,3,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,0,3,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,0,3,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,0,3,2],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,0,3,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,0,3,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[2,0,3,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[2,0,3,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[2,0,3,2],[1,3,4,0],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,0],[2,2,2,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,0],[1,3,2,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,0],[1,2,3,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,0],[1,2,2,2]],[[0,1,2,0],[2,0,3,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[2,0,3,2],[1,3,4,1],[1,2,2,0]],[[0,1,2,0],[2,0,3,2],[1,3,3,1],[2,2,2,0]],[[0,1,2,0],[2,0,3,2],[1,3,3,1],[1,3,2,0]],[[0,1,2,0],[2,0,3,2],[1,3,3,1],[1,2,3,0]],[[0,1,2,0],[2,0,3,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,0,3,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,2],[1,0,2,2]],[[0,1,2,0],[2,0,3,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,0,3,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,2],[1,1,1,2]],[[0,1,2,0],[2,0,3,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,0,3,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,0,3,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[2,0,3,2],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[2,0,3,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,0,3,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[2,0,3,2],[1,3,3,2],[1,2,0,2]],[[0,1,2,0],[2,0,3,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,0,3,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,0,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,3,1],[2,2,3,2],[1,3,1,0],[1,2,0,0]],[[1,3,2,1],[2,2,3,2],[1,3,1,0],[1,2,0,0]],[[2,2,2,1],[2,2,3,2],[1,3,1,0],[1,2,0,0]],[[0,1,2,0],[2,0,3,3],[2,0,3,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,0,3,3],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,0,3,2],[1,2,3,1]],[[0,1,2,0],[2,0,3,2],[2,0,3,2],[1,2,2,2]],[[0,1,2,0],[2,0,3,3],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[3,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,1,2,3],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,1,2,2],[2,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,1,2,2],[1,3,2,1]],[[0,1,2,0],[2,0,3,2],[2,1,2,2],[1,2,3,1]],[[0,1,2,0],[2,0,3,2],[2,1,2,2],[1,2,2,2]],[[0,1,2,0],[2,0,3,2],[3,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[2,0,3,2],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[2,0,3,2],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[2,0,3,3],[2,1,3,2],[0,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,1,3,3],[0,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,1,3,2],[0,2,3,1]],[[0,1,2,0],[2,0,3,2],[2,1,3,2],[0,2,2,2]],[[0,1,2,0],[2,0,3,3],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,0,3,2],[2,1,4,2],[1,2,1,1]],[[0,1,2,0],[2,0,3,2],[2,1,3,3],[1,2,1,1]],[[0,1,2,0],[2,0,3,2],[2,1,3,2],[1,2,1,2]],[[0,1,2,0],[2,0,3,3],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,0,3,2],[3,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,1,3,3],[1,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[2,0,3,2],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[2,0,3,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[2,0,3,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[2,0,3,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,0],[2,0,3,2],[3,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,2,4,0],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,2,3,0],[2,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,2,3,0],[1,3,2,1]],[[0,1,2,0],[2,0,3,2],[2,2,3,0],[1,2,3,1]],[[0,1,2,0],[2,0,3,2],[2,2,3,0],[1,2,2,2]],[[0,1,2,0],[2,0,3,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[2,0,3,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,0,3,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[2,0,3,2],[3,2,3,1],[1,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,2,4,1],[1,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,2,3,1],[2,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,2,3,1],[1,3,2,0]],[[0,1,2,0],[2,0,3,2],[2,2,3,1],[1,2,3,0]],[[0,1,2,0],[2,0,3,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,0,3,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[2,0,3,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[2,0,3,2],[2,2,3,2],[0,2,1,2]],[[0,1,2,0],[2,0,3,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[2,0,3,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[3,2,3,2],[1,3,1,0],[1,1,1,0]],[[0,1,2,0],[2,0,3,3],[2,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[3,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,0,3],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,0,2],[2,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,0,2],[1,3,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,0,2],[1,2,3,1]],[[0,1,2,0],[2,0,3,2],[2,3,0,2],[1,2,2,2]],[[0,1,2,0],[2,0,3,2],[3,3,2,0],[1,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,2,0],[2,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,2,0],[1,3,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,2,0],[1,2,3,1]],[[0,1,2,0],[2,0,3,2],[2,3,2,0],[1,2,2,2]],[[0,1,2,0],[2,0,3,2],[3,3,2,1],[1,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,3,2,1],[2,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,3,2,1],[1,3,2,0]],[[0,1,2,0],[2,0,3,2],[2,3,2,1],[1,2,3,0]],[[0,1,2,0],[2,0,3,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,0,3,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[2,0,3,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[2,0,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,2],[2,2,3,2],[1,3,1,0],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[1,3,1,0],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[1,3,1,0],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[1,3,1,0],[1,1,1,0]],[[1,2,2,1],[3,2,3,2],[1,3,1,0],[1,1,0,1]],[[1,2,2,2],[2,2,3,2],[1,3,1,0],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[1,3,1,0],[1,1,0,1]],[[0,1,2,0],[2,0,3,2],[2,3,4,0],[0,2,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,0],[0,3,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,0],[0,2,3,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,0],[0,2,2,2]],[[0,1,2,0],[2,0,3,2],[3,3,3,0],[1,2,1,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,0],[2,2,1,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,0],[1,3,1,1]],[[0,1,2,0],[2,0,3,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,0],[2,0,3,2],[2,3,4,1],[0,2,2,0]],[[0,1,2,0],[2,0,3,2],[2,3,3,1],[0,3,2,0]],[[0,1,2,0],[2,0,3,2],[2,3,3,1],[0,2,3,0]],[[0,1,2,0],[2,0,3,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,1],[1,0,2,2]],[[0,1,2,0],[2,0,3,2],[3,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,1],[2,2,0,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,1],[1,3,0,1]],[[0,1,2,0],[2,0,3,2],[3,3,3,1],[1,2,1,0]],[[0,1,2,0],[2,0,3,2],[2,3,3,1],[2,2,1,0]],[[0,1,2,0],[2,0,3,2],[2,3,3,1],[1,3,1,0]],[[1,3,2,1],[2,2,3,2],[1,3,1,0],[1,1,0,1]],[[2,2,2,1],[2,2,3,2],[1,3,1,0],[1,1,0,1]],[[0,1,2,0],[2,0,3,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,2],[0,0,2,2]],[[0,1,2,0],[2,0,3,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,0,3,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,2],[0,1,1,2]],[[0,1,2,0],[2,0,3,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,0,3,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,0,3,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,0,3,2],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[2,0,3,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,0,3,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,2],[0,2,0,2]],[[0,1,2,0],[2,0,3,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,0,3,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,0,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[3,2,3,2],[1,3,1,0],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[1,3,1,0],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[1,3,1,0],[1,0,2,0]],[[1,3,2,1],[2,2,3,2],[1,3,1,0],[1,0,2,0]],[[2,2,2,1],[2,2,3,2],[1,3,1,0],[1,0,2,0]],[[0,1,2,0],[2,0,3,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,0,3,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,2],[1,0,1,2]],[[0,1,2,0],[2,0,3,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,0,3,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,0,3,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[2,0,3,2],[2,3,3,2],[1,0,3,0]],[[0,1,2,0],[2,0,3,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,0,3,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[2,0,3,2],[2,3,3,2],[1,1,0,2]],[[0,1,2,0],[2,0,3,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,0,3,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[2,0,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,2,3,2],[1,3,1,0],[1,0,1,1]],[[1,2,2,2],[2,2,3,2],[1,3,1,0],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[1,3,1,0],[1,0,1,1]],[[1,3,2,1],[2,2,3,2],[1,3,1,0],[1,0,1,1]],[[2,2,2,1],[2,2,3,2],[1,3,1,0],[1,0,1,1]],[[1,2,2,1],[3,2,3,2],[1,3,1,0],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[1,3,1,0],[0,2,1,0]],[[1,2,3,1],[2,2,3,2],[1,3,1,0],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[1,3,1,0],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[1,3,1,0],[0,2,1,0]],[[1,2,2,1],[3,2,3,2],[1,3,1,0],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[1,3,1,0],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[1,3,1,0],[0,2,0,1]],[[1,3,2,1],[2,2,3,2],[1,3,1,0],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[1,3,1,0],[0,2,0,1]],[[0,1,2,0],[2,1,0,1],[3,3,3,2],[1,2,2,1]],[[0,1,2,0],[2,1,0,1],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[2,1,0,1],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[2,1,0,1],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,0,1],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[2,1,0,2],[1,3,3,3],[1,2,2,1]],[[0,1,2,0],[2,1,0,2],[1,3,3,2],[2,2,2,1]],[[0,1,2,0],[2,1,0,2],[1,3,3,2],[1,3,2,1]],[[0,1,2,0],[2,1,0,2],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,0,2],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[2,1,0,2],[3,2,3,2],[1,2,2,1]],[[0,1,2,0],[2,1,0,2],[2,2,3,3],[1,2,2,1]],[[0,1,2,0],[2,1,0,2],[2,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,1,0,2],[2,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,1,0,2],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,0,2],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,1,0,2],[3,3,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,0,2],[2,3,2,3],[1,2,2,1]],[[0,1,2,0],[2,1,0,2],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,1,0,2],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,1,0,2],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,1,0,2],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[2,1,0,2],[3,3,3,1],[1,2,2,1]],[[0,1,2,0],[2,1,0,2],[2,3,3,1],[2,2,2,1]],[[0,1,2,0],[2,1,0,2],[2,3,3,1],[1,3,2,1]],[[0,1,2,0],[2,1,0,2],[2,3,3,1],[1,2,3,1]],[[0,1,2,0],[2,1,0,2],[2,3,3,1],[1,2,2,2]],[[0,1,2,0],[2,1,0,2],[2,3,3,3],[0,2,2,1]],[[0,1,2,0],[2,1,0,2],[2,3,3,2],[0,3,2,1]],[[0,1,2,0],[2,1,0,2],[2,3,3,2],[0,2,3,1]],[[0,1,2,0],[2,1,0,2],[2,3,3,2],[0,2,2,2]],[[0,1,2,0],[2,1,0,2],[3,3,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,0,2],[2,3,3,2],[2,2,2,0]],[[0,1,2,0],[2,1,0,2],[2,3,3,2],[1,3,2,0]],[[0,1,2,0],[2,1,0,2],[2,3,3,2],[1,2,3,0]],[[0,1,2,0],[2,1,1,0],[3,3,3,2],[1,2,2,1]],[[0,1,2,0],[2,1,1,0],[2,3,3,2],[2,2,2,1]],[[0,1,2,0],[2,1,1,0],[2,3,3,2],[1,3,2,1]],[[0,1,2,0],[2,1,1,0],[2,3,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,1,0],[2,3,3,2],[1,2,2,2]],[[0,1,2,0],[2,1,1,1],[3,3,3,1],[1,2,2,1]],[[0,1,2,0],[2,1,1,1],[2,3,3,1],[2,2,2,1]],[[0,1,2,0],[2,1,1,1],[2,3,3,1],[1,3,2,1]],[[0,1,2,0],[2,1,1,1],[2,3,3,1],[1,2,3,1]],[[0,1,2,0],[2,1,1,1],[2,3,3,1],[1,2,2,2]],[[0,1,2,0],[2,1,1,1],[3,3,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,1,1],[2,3,3,2],[2,2,2,0]],[[0,1,2,0],[2,1,1,1],[2,3,3,2],[1,3,2,0]],[[0,1,2,0],[2,1,1,1],[2,3,3,2],[1,2,3,0]],[[0,1,2,0],[2,1,1,2],[1,2,3,3],[1,2,2,1]],[[0,1,2,0],[2,1,1,2],[1,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,1,1,2],[1,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,1,1,2],[1,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,1,2],[1,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,1,1,2],[1,3,3,3],[1,1,2,1]],[[0,1,2,0],[2,1,1,2],[1,3,3,2],[1,1,3,1]],[[0,1,2,0],[2,1,1,2],[1,3,3,2],[1,1,2,2]],[[0,1,2,0],[2,1,1,2],[3,1,3,2],[1,2,2,1]],[[0,1,2,0],[2,1,1,2],[2,1,3,3],[1,2,2,1]],[[0,1,2,0],[2,1,1,2],[2,1,3,2],[2,2,2,1]],[[0,1,2,0],[2,1,1,2],[2,1,3,2],[1,3,2,1]],[[0,1,2,0],[2,1,1,2],[2,1,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,1,2],[2,1,3,2],[1,2,2,2]],[[0,1,2,0],[2,1,1,2],[2,2,3,3],[0,2,2,1]],[[0,1,2,0],[2,1,1,2],[2,2,3,2],[0,3,2,1]],[[0,1,2,0],[2,1,1,2],[2,2,3,2],[0,2,3,1]],[[0,1,2,0],[2,1,1,2],[2,2,3,2],[0,2,2,2]],[[0,1,2,0],[2,1,1,2],[3,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,1,2],[2,3,1,3],[1,2,2,1]],[[0,1,2,0],[2,1,1,2],[2,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,1,1,2],[2,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,1,1,2],[2,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,1,1,2],[2,3,1,2],[1,2,2,2]],[[0,1,2,0],[2,1,1,2],[3,3,2,1],[1,2,2,1]],[[0,1,2,0],[2,1,1,2],[2,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,1,1,2],[2,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,1,1,2],[2,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,1,1,2],[2,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,1,1,2],[3,3,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,1,2],[2,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,1,1,2],[2,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,1,1,2],[2,3,2,2],[1,2,3,0]],[[0,1,2,0],[2,1,1,2],[3,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,1,2],[2,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,1,1,2],[2,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,1,1,2],[2,3,3,3],[0,1,2,1]],[[0,1,2,0],[2,1,1,2],[2,3,3,2],[0,1,3,1]],[[0,1,2,0],[2,1,1,2],[2,3,3,2],[0,1,2,2]],[[0,1,2,0],[2,1,1,2],[2,3,3,3],[1,0,2,1]],[[0,1,2,0],[2,1,1,2],[2,3,3,2],[1,0,3,1]],[[0,1,2,0],[2,1,1,2],[2,3,3,2],[1,0,2,2]],[[0,1,2,0],[2,1,1,2],[3,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,1,2],[2,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,1,1,2],[2,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,1,1,2],[3,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,1,2],[2,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,1,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,2,3,2],[1,3,1,0],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[1,3,1,0],[0,1,2,0]],[[0,1,2,0],[2,1,2,0],[3,3,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,0],[2,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,1,2,0],[2,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,1,2,0],[2,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,1,2,0],[2,3,2,2],[1,2,2,2]],[[0,1,2,0],[2,1,2,0],[3,3,3,2],[1,2,1,1]],[[0,1,2,0],[2,1,2,0],[2,3,3,2],[2,2,1,1]],[[0,1,2,0],[2,1,2,0],[2,3,3,2],[1,3,1,1]],[[0,1,2,0],[2,1,2,1],[3,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,1],[2,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,1,2,1],[2,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,1,2,1],[2,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,1,2,1],[2,3,1,2],[1,2,2,2]],[[0,1,2,0],[2,1,2,1],[3,3,2,1],[1,2,2,1]],[[0,1,2,0],[2,1,2,1],[2,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,1,2,1],[2,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,1,2,1],[2,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,1,2,1],[2,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,1,2,1],[3,3,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,2,1],[2,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,1,2,1],[2,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,1,2,1],[2,3,2,2],[1,2,3,0]],[[0,1,2,0],[2,1,2,1],[3,3,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,2,1],[2,3,3,0],[2,2,2,1]],[[0,1,2,0],[2,1,2,1],[2,3,3,0],[1,3,2,1]],[[0,1,2,0],[2,1,2,1],[2,3,3,0],[1,2,3,1]],[[0,1,2,0],[2,1,2,1],[3,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,2,1],[2,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,1,2,1],[2,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,1,2,1],[3,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,2,1],[2,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,1,2,1],[2,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,1,2,1],[3,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,2,1],[2,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,1,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,3,1],[2,2,3,2],[1,3,1,0],[0,1,2,0]],[[1,3,2,1],[2,2,3,2],[1,3,1,0],[0,1,2,0]],[[2,2,2,1],[2,2,3,2],[1,3,1,0],[0,1,2,0]],[[1,2,2,1],[3,2,3,2],[1,3,1,0],[0,1,1,1]],[[1,2,2,2],[2,2,3,2],[1,3,1,0],[0,1,1,1]],[[0,1,2,0],[2,1,2,3],[1,1,3,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,1,3,3],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,1,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,2,2],[1,1,3,2],[1,2,2,2]],[[0,1,2,0],[2,1,2,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,1,2,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,1,2,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,1,2,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,1,2,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,1,2,2],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,1,2,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,1,2,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,1,2,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,1,2,2],[1,2,3,2],[1,2,1,2]],[[0,1,2,0],[2,1,2,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,2,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,1,2,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,1,2,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,1,2,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,1,2,2],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,1,2,3],[1,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,4,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,1,3],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,1,2,2],[1,3,1,2],[1,2,2,2]],[[0,1,2,0],[2,1,2,2],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,1,2,2],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,1,2,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[2,1,2,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[2,1,2,2],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,2,2],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,1,2,2],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,1,2,2],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[2,1,2,2],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[2,1,2,2],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,2,2],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,1,2,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,2],[1,0,2,2]],[[0,1,2,0],[2,1,2,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,1,2,2],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,1,2,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,2],[1,1,1,2]],[[0,1,2,0],[2,1,2,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,1,2,2],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,1,2,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,1,2,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[2,1,2,2],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[2,1,2,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,2,2],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,2,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,1,2,2],[1,3,3,2],[1,2,0,2]],[[0,1,2,0],[2,1,2,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,2,2],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,2,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,1,2,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,0],[2,1,2,2],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,1,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,3,1],[2,2,3,2],[1,3,1,0],[0,1,1,1]],[[1,3,2,1],[2,2,3,2],[1,3,1,0],[0,1,1,1]],[[2,2,2,1],[2,2,3,2],[1,3,1,0],[0,1,1,1]],[[0,1,2,0],[2,1,2,3],[2,0,3,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,0,3,3],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,0,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,2,2],[2,0,3,2],[1,2,2,2]],[[0,1,2,0],[3,1,2,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,3],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[3,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,1,2,3],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,1,2,2],[2,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,1,2,2],[1,3,2,1]],[[0,1,2,0],[2,1,2,2],[2,1,2,2],[1,2,3,1]],[[0,1,2,0],[2,1,2,2],[2,1,2,2],[1,2,2,2]],[[0,1,2,0],[3,1,2,2],[2,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[3,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[2,1,2,2],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[2,1,2,2],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[2,1,2,3],[2,1,3,2],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,1,3,3],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,1,3,2],[0,2,3,1]],[[0,1,2,0],[2,1,2,2],[2,1,3,2],[0,2,2,2]],[[0,1,2,0],[2,1,2,3],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,1,4,2],[1,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,1,3,3],[1,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,1,3,2],[1,2,1,2]],[[0,1,2,0],[3,1,2,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,2,3],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,2,2],[3,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,1,3,3],[1,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[2,1,2,2],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[3,1,2,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,3],[2,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[3,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,1,3],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,1,2],[2,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,1,2],[1,3,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,1,2],[1,2,3,1]],[[0,1,2,0],[2,1,2,2],[2,2,1,2],[1,2,2,2]],[[0,1,2,0],[3,1,2,2],[2,2,2,1],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[3,2,2,1],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,2,1],[2,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,2,1],[1,3,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,2,1],[1,2,3,1]],[[0,1,2,0],[2,1,2,2],[2,2,2,1],[1,2,2,2]],[[0,1,2,0],[2,1,2,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[2,1,2,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,0],[3,1,2,2],[2,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,2,2],[3,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,2,2,2],[2,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,2,2,2],[1,3,2,0]],[[0,1,2,0],[2,1,2,2],[2,2,2,2],[1,2,3,0]],[[0,1,2,0],[2,1,2,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[2,1,2,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,1,2,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[3,1,2,2],[2,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,2,2],[3,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,2,3,1],[2,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,2,3,1],[1,3,1,1]],[[0,1,2,0],[2,1,2,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,2,3,2],[0,2,1,2]],[[0,1,2,0],[2,1,2,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[2,1,2,2],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[3,1,2,2],[2,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,2,2],[3,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,2,2],[2,2,3,2],[2,2,0,1]],[[0,1,2,0],[2,1,2,2],[2,2,3,2],[1,3,0,1]],[[0,1,2,0],[3,1,2,2],[2,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,2,2],[3,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,2,2],[2,2,3,2],[2,2,1,0]],[[0,1,2,0],[2,1,2,2],[2,2,3,2],[1,3,1,0]],[[0,1,2,0],[3,1,2,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,1,2,3],[2,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[3,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,4,1,2],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,1,3],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,1,2],[0,3,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,1,2],[0,2,3,1]],[[0,1,2,0],[2,1,2,2],[2,3,1,2],[0,2,2,2]],[[0,1,2,0],[3,1,2,2],[2,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,1,2,2],[3,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,1,2,2],[2,4,1,2],[1,1,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,1,2],[2,1,2,1]],[[0,1,2,0],[2,1,2,2],[3,3,2,0],[1,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,0],[2,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,0],[1,3,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,0],[1,2,3,1]],[[0,1,2,0],[3,1,2,2],[2,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[3,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[3,1,2,2],[2,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,1,2,2],[3,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,1,2,2],[2,4,2,1],[1,1,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,1],[2,1,2,1]],[[0,1,2,0],[2,1,2,2],[3,3,2,1],[1,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,2,1],[2,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,2,1],[1,3,2,0]],[[0,1,2,0],[2,1,2,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[3,1,2,2],[2,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,1,2,2],[3,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[2,1,2,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[2,1,2,2],[2,3,2,2],[1,0,2,2]],[[0,1,2,0],[3,1,2,2],[2,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,1,2,2],[3,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,1,2,2],[2,4,2,2],[1,1,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[3,2,3,2],[1,3,0,2],[1,1,0,0]],[[1,2,2,2],[2,2,3,2],[1,3,0,2],[1,1,0,0]],[[1,2,3,1],[2,2,3,2],[1,3,0,2],[1,1,0,0]],[[1,3,2,1],[2,2,3,2],[1,3,0,2],[1,1,0,0]],[[2,2,2,1],[2,2,3,2],[1,3,0,2],[1,1,0,0]],[[0,1,2,0],[2,1,2,2],[3,3,3,0],[1,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,0],[2,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,0],[1,3,1,1]],[[0,1,2,0],[3,1,2,2],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,1,2,2],[3,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,1,2,2],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,0],[3,1,2,2],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,1,2,2],[3,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,1],[0,3,1,1]],[[0,1,2,0],[3,1,2,2],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,1,2,2],[3,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,1,2,2],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,1],[2,0,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,1],[1,0,2,2]],[[0,1,2,0],[3,1,2,2],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,1,2,2],[3,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,1,2,2],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,4,1],[1,1,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,1],[2,1,1,1]],[[0,1,2,0],[2,1,2,2],[3,3,3,1],[1,2,1,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,1],[2,2,1,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,1],[1,3,1,0]],[[0,1,2,0],[2,1,2,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[0,0,2,2]],[[0,1,2,0],[3,1,2,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,1,2,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,1,2,2],[3,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,1,2,2],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[0,1,1,2]],[[0,1,2,0],[3,1,2,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,1,2,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,1,2,2],[3,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,1,2,2],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[3,1,2,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,1,2,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,1,2,2],[3,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,1,2,2],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[2,1,2,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[0,2,0,2]],[[0,1,2,0],[3,1,2,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,1,2,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,1,2,2],[3,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,1,2,2],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[2,1,2,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,3],[0,2,1,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[0,3,1,0]],[[0,1,2,0],[3,1,2,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,1,2,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,1,2,2],[3,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,1,2,2],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[2,0,1,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[1,0,1,2]],[[0,1,2,0],[3,1,2,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,1,2,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,1,2,2],[3,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,1,2,2],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[2,0,2,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[1,0,3,0]],[[0,1,2,0],[3,1,2,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,1,2,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,1,2,2],[3,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,1,2,2],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[2,1,2,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[2,1,0,1]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[1,1,0,2]],[[0,1,2,0],[3,1,2,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,1,2,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,1,2,2],[3,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,1,2,2],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[2,1,2,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,3],[1,1,1,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[3,2,3,2],[1,3,0,2],[0,2,0,0]],[[1,2,2,2],[2,2,3,2],[1,3,0,2],[0,2,0,0]],[[0,1,2,0],[3,1,2,2],[2,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,1,2,2],[3,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,1,2,2],[2,4,3,2],[1,2,0,0]],[[0,1,2,0],[2,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,3,1],[2,2,3,2],[1,3,0,2],[0,2,0,0]],[[1,3,2,1],[2,2,3,2],[1,3,0,2],[0,2,0,0]],[[2,2,2,1],[2,2,3,2],[1,3,0,2],[0,2,0,0]],[[1,2,2,1],[3,2,3,2],[1,3,0,1],[1,2,0,0]],[[1,2,2,2],[2,2,3,2],[1,3,0,1],[1,2,0,0]],[[1,2,3,1],[2,2,3,2],[1,3,0,1],[1,2,0,0]],[[0,1,2,0],[2,1,3,0],[1,2,4,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,0],[1,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,0],[1,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,0],[1,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,0],[1,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,1,3,0],[1,4,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,0],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,0],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,0],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,0],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[2,1,3,0],[1,4,3,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,0],[1,3,4,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,0],[1,3,3,2],[1,1,3,1]],[[0,1,2,0],[2,1,3,0],[1,3,3,2],[1,1,2,2]],[[0,1,2,0],[2,1,3,0],[1,4,3,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,0],[1,3,4,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,0],[1,3,3,2],[2,2,1,1]],[[0,1,2,0],[2,1,3,0],[1,3,3,2],[1,3,1,1]],[[0,1,2,0],[3,1,3,0],[2,1,3,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,0],[3,1,3,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,1,4,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,1,3,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,1,3,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,0],[2,1,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,0],[2,1,3,2],[1,2,2,2]],[[0,1,2,0],[3,1,3,0],[2,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,0],[3,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,0],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,0],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,1,3,0],[2,2,4,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,2,3,2],[0,3,2,1]],[[0,1,2,0],[2,1,3,0],[2,2,3,2],[0,2,3,1]],[[0,1,2,0],[2,1,3,0],[2,2,3,2],[0,2,2,2]],[[0,1,2,0],[3,1,3,0],[2,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,0],[3,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,0],[2,2,3,2],[2,2,1,1]],[[0,1,2,0],[2,1,3,0],[2,2,3,2],[1,3,1,1]],[[0,1,2,0],[2,1,3,0],[3,3,2,1],[1,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,2,1],[1,2,3,1]],[[0,1,2,0],[3,1,3,0],[2,3,2,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,0],[3,3,2,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,4,2,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[2,1,3,0],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[3,1,3,0],[2,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,0],[3,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,0],[2,4,2,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,2,2],[2,1,2,1]],[[0,1,2,0],[2,1,3,0],[3,3,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,0],[2,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,1,3,0],[2,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,1,3,0],[3,3,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,0],[2,2,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,0],[1,3,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,0],[1,2,3,1]],[[0,1,2,0],[2,1,3,0],[3,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,1],[1,3,1,1]],[[0,1,2,0],[3,1,3,0],[2,3,3,2],[0,1,2,1]],[[0,1,2,0],[2,1,3,0],[3,3,3,2],[0,1,2,1]],[[0,1,2,0],[2,1,3,0],[2,4,3,2],[0,1,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,4,2],[0,1,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,2],[0,1,3,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,2],[0,1,2,2]],[[0,1,2,0],[3,1,3,0],[2,3,3,2],[0,2,1,1]],[[0,1,2,0],[2,1,3,0],[3,3,3,2],[0,2,1,1]],[[0,1,2,0],[2,1,3,0],[2,4,3,2],[0,2,1,1]],[[0,1,2,0],[2,1,3,0],[2,3,4,2],[0,2,1,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,2],[0,3,1,1]],[[0,1,2,0],[3,1,3,0],[2,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,1,3,0],[3,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,1,3,0],[2,4,3,2],[1,0,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,2],[2,0,2,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,2],[1,0,3,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,2],[1,0,2,2]],[[0,1,2,0],[3,1,3,0],[2,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,1,3,0],[3,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,1,3,0],[2,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,1,3,0],[2,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,1,3,0],[2,3,3,2],[2,1,1,1]],[[0,1,2,0],[2,1,3,0],[3,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,3,0],[2,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,1,3,0],[2,3,3,2],[1,3,1,0]],[[1,3,2,1],[2,2,3,2],[1,3,0,1],[1,2,0,0]],[[2,2,2,1],[2,2,3,2],[1,3,0,1],[1,2,0,0]],[[0,1,2,0],[2,1,3,1],[1,1,3,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,1,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,1],[1,1,3,2],[1,2,2,2]],[[0,1,2,0],[2,1,3,1],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,1],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,1],[1,2,2,2],[1,2,2,2]],[[0,1,3,0],[2,1,3,1],[1,2,3,1],[1,2,2,1]],[[0,1,2,0],[2,1,4,1],[1,2,3,1],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,1,3,1],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,1,3,1],[1,2,3,1],[1,2,2,2]],[[0,1,3,0],[2,1,3,1],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,1,4,1],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,1],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,1],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,1,3,1],[1,2,3,2],[1,2,1,2]],[[0,1,3,0],[2,1,3,1],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,4,1],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,1],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,1],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,1,3,1],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,1,3,1],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,1,3,1],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,1,3,1],[1,4,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,1,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,1],[1,3,1,2],[1,2,2,2]],[[0,1,2,0],[2,1,3,1],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,1,3,1],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,1,3,1],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[2,1,3,1],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[2,1,3,1],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,1],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,1,3,1],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,1,3,1],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[2,1,3,1],[1,4,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,0],[2,2,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,0],[1,3,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,0],[1,2,3,1]],[[0,1,3,0],[2,1,3,1],[1,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,1,4,1],[1,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,1],[1,1,2,2]],[[0,1,3,0],[2,1,3,1],[1,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,4,1],[1,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,3,1],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,3,1],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,1,3,1],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,2],[1,0,2,2]],[[0,1,3,0],[2,1,3,1],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,1,4,1],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,1,3,1],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,1,3,1],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,2],[1,1,1,2]],[[0,1,3,0],[2,1,3,1],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,1,4,1],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,1,3,1],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,1,3,1],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,1,3,1],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[2,1,3,1],[1,3,3,2],[1,1,3,0]],[[0,1,3,0],[2,1,3,1],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,4,1],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,3,1],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,3,1],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,1,3,1],[1,3,3,2],[1,2,0,2]],[[0,1,3,0],[2,1,3,1],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,4,1],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,3,1],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,3,1],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,1,3,1],[1,3,3,3],[1,2,1,0]],[[0,1,2,0],[2,1,3,1],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,1,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,2,3,2],[1,3,0,1],[1,1,1,0]],[[1,2,2,2],[2,2,3,2],[1,3,0,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[1,3,0,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[1,3,0,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[1,3,0,1],[1,1,1,0]],[[0,1,2,0],[2,1,3,1],[2,0,3,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,0,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,1],[2,0,3,2],[1,2,2,2]],[[0,1,2,0],[3,1,3,1],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[3,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,1,2,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,1,2,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,1,2,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,1],[2,1,2,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,1],[2,1,2,2],[1,2,2,2]],[[0,1,3,0],[2,1,3,1],[2,1,3,1],[1,2,2,1]],[[0,1,2,0],[3,1,3,1],[2,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,1,4,1],[2,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[3,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[2,1,3,1],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[2,1,3,1],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[2,1,3,1],[2,1,3,3],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,1,3,2],[0,2,3,1]],[[0,1,2,0],[2,1,3,1],[2,1,3,2],[0,2,2,2]],[[0,1,3,0],[2,1,3,1],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,1,4,1],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,1],[2,1,4,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,1],[2,1,3,3],[1,2,1,1]],[[0,1,2,0],[2,1,3,1],[2,1,3,2],[1,2,1,2]],[[0,1,3,0],[2,1,3,1],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[3,1,3,1],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,4,1],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,1],[3,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,1],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,1],[2,1,3,3],[1,2,2,0]],[[0,1,2,0],[2,1,3,1],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[2,1,3,1],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[2,1,3,1],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[3,1,3,1],[2,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[3,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,1,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,1,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,1,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,1,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,1],[2,2,1,2],[1,2,2,2]],[[0,1,2,0],[3,1,3,1],[2,2,2,1],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[3,2,2,1],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,2,1],[2,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,2,1],[1,3,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,2,1],[1,2,3,1]],[[0,1,2,0],[2,1,3,1],[2,2,2,1],[1,2,2,2]],[[0,1,2,0],[2,1,3,1],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[2,1,3,1],[2,2,2,2],[0,2,2,2]],[[0,1,2,0],[3,1,3,1],[2,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,1],[3,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,1],[2,2,2,2],[2,2,2,0]],[[0,1,2,0],[2,1,3,1],[2,2,2,2],[1,3,2,0]],[[0,1,2,0],[2,1,3,1],[2,2,2,2],[1,2,3,0]],[[0,1,2,0],[3,1,3,1],[2,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[3,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,0],[2,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,0],[1,3,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,0],[1,2,3,1]],[[0,1,3,0],[2,1,3,1],[2,2,3,1],[0,2,2,1]],[[0,1,2,0],[2,1,4,1],[2,2,3,1],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[3,1,3,1],[2,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,3,1],[3,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,1],[2,2,1,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,1],[1,3,1,1]],[[0,1,3,0],[2,1,3,1],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,1,4,1],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,1,3,1],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,2],[0,2,1,2]],[[0,1,3,0],[2,1,3,1],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[2,1,4,1],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[2,1,3,1],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,1,3,1],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[2,1,3,1],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[2,1,3,1],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[3,1,3,1],[2,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,3,1],[3,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,2],[2,2,0,1]],[[0,1,2,0],[2,1,3,1],[2,2,3,2],[1,3,0,1]],[[0,1,2,0],[3,1,3,1],[2,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,3,1],[3,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,3,1],[2,2,3,2],[2,2,1,0]],[[0,1,2,0],[2,1,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[3,2,3,2],[1,3,0,1],[1,1,0,1]],[[1,2,2,2],[2,2,3,2],[1,3,0,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[1,3,0,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,2],[1,3,0,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,2],[1,3,0,1],[1,1,0,1]],[[0,1,2,0],[3,1,3,1],[2,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[3,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,4,1,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,1,3],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,1,2],[0,3,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,1,2],[0,2,3,1]],[[0,1,2,0],[2,1,3,1],[2,3,1,2],[0,2,2,2]],[[0,1,2,0],[3,1,3,1],[2,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[3,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[2,4,1,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,1,2],[2,1,2,1]],[[0,1,2,0],[3,1,3,1],[2,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[3,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[2,1,3,1],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[3,1,3,1],[2,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[3,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[2,4,2,1],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,2,1],[2,1,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,1,3,1],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[3,1,3,1],[2,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,1,3,1],[3,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,1,3,1],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[2,1,3,1],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[2,1,3,1],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[2,1,3,1],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[2,1,3,1],[2,3,2,2],[1,0,2,2]],[[0,1,2,0],[3,1,3,1],[2,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,1,3,1],[3,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,1,3,1],[2,4,2,2],[1,1,2,0]],[[0,1,2,0],[2,1,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[3,2,3,2],[1,3,0,1],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[1,3,0,1],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[1,3,0,1],[1,0,2,0]],[[1,3,2,1],[2,2,3,2],[1,3,0,1],[1,0,2,0]],[[2,2,2,1],[2,2,3,2],[1,3,0,1],[1,0,2,0]],[[1,2,2,1],[3,2,3,2],[1,3,0,1],[1,0,1,1]],[[1,2,2,2],[2,2,3,2],[1,3,0,1],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[1,3,0,1],[1,0,1,1]],[[0,1,2,0],[3,1,3,1],[2,3,3,0],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[3,3,3,0],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,4,3,0],[0,2,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,0],[0,3,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,0],[0,2,3,1]],[[0,1,2,0],[3,1,3,1],[2,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[3,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[2,4,3,0],[1,1,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,0],[2,1,2,1]],[[0,1,3,0],[2,1,3,1],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[3,1,3,1],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,1,4,1],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,1,3,1],[3,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,1,3,1],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,1],[0,1,2,2]],[[0,1,3,0],[2,1,3,1],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[3,1,3,1],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,1,4,1],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,1,3,1],[3,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,1,3,1],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[2,1,3,1],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,1],[0,3,1,1]],[[0,1,3,0],[2,1,3,1],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[3,1,3,1],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,1,4,1],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,1,3,1],[3,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,1,3,1],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,1],[2,0,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,1],[1,0,2,2]],[[0,1,3,0],[2,1,3,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[3,1,3,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,1,4,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,1,3,1],[3,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,1,3,1],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,1,3,1],[2,3,4,1],[1,1,1,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,1],[2,1,1,1]],[[0,1,2,0],[3,1,3,1],[2,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,1,3,1],[3,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,1,3,1],[2,4,3,1],[1,2,0,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,1],[2,2,0,1]],[[1,3,2,1],[2,2,3,2],[1,3,0,1],[1,0,1,1]],[[2,2,2,1],[2,2,3,2],[1,3,0,1],[1,0,1,1]],[[0,1,3,0],[2,1,3,1],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,1,4,1],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[0,0,2,2]],[[0,1,3,0],[2,1,3,1],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[3,1,3,1],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,1,4,1],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,1,3,1],[3,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,1,3,1],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[2,1,3,1],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[0,1,1,2]],[[0,1,3,0],[2,1,3,1],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[3,1,3,1],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,1,4,1],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,1,3,1],[3,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,1,3,1],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[2,1,3,1],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,1,3,1],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[0,1,3,0]],[[0,1,3,0],[2,1,3,1],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[3,1,3,1],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,1,4,1],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,1,3,1],[3,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,1,3,1],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[2,1,3,1],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[0,2,0,2]],[[0,1,3,0],[2,1,3,1],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[3,1,3,1],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,1,4,1],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,1,3,1],[3,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,1,3,1],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[2,1,3,1],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,1,3,1],[2,3,3,3],[0,2,1,0]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,2,3,2],[1,3,0,1],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[1,3,0,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,2],[1,3,0,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[1,3,0,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[1,3,0,1],[0,2,1,0]],[[1,2,2,1],[3,2,3,2],[1,3,0,1],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[1,3,0,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[1,3,0,1],[0,2,0,1]],[[0,1,3,0],[2,1,3,1],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[3,1,3,1],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,1,4,1],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,1,3,1],[3,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,1,3,1],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[2,1,3,1],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[2,0,1,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[1,0,1,2]],[[0,1,3,0],[2,1,3,1],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[3,1,3,1],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,1,4,1],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,1,3,1],[3,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,1,3,1],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[2,1,3,1],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,1,3,1],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[2,0,2,0]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[1,0,3,0]],[[0,1,3,0],[2,1,3,1],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[3,1,3,1],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,1,4,1],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,1,3,1],[3,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,1,3,1],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[2,1,3,1],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[2,1,0,1]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[1,1,0,2]],[[0,1,3,0],[2,1,3,1],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[3,1,3,1],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,1,4,1],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,1,3,1],[3,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,1,3,1],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[2,1,3,1],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[2,1,3,1],[2,3,3,3],[1,1,1,0]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[2,1,1,0]],[[1,3,2,1],[2,2,3,2],[1,3,0,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[1,3,0,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,2],[1,3,0,1],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[1,3,0,1],[0,1,2,0]],[[1,2,3,1],[2,2,3,2],[1,3,0,1],[0,1,2,0]],[[0,1,2,0],[3,1,3,1],[2,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,1,3,1],[3,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,1,3,1],[2,4,3,2],[1,2,0,0]],[[0,1,2,0],[2,1,3,1],[2,3,3,2],[2,2,0,0]],[[1,3,2,1],[2,2,3,2],[1,3,0,1],[0,1,2,0]],[[2,2,2,1],[2,2,3,2],[1,3,0,1],[0,1,2,0]],[[1,2,2,1],[3,2,3,2],[1,3,0,1],[0,1,1,1]],[[1,2,2,2],[2,2,3,2],[1,3,0,1],[0,1,1,1]],[[1,2,3,1],[2,2,3,2],[1,3,0,1],[0,1,1,1]],[[1,3,2,1],[2,2,3,2],[1,3,0,1],[0,1,1,1]],[[2,2,2,1],[2,2,3,2],[1,3,0,1],[0,1,1,1]],[[1,2,2,1],[3,2,3,2],[1,3,0,0],[1,1,2,0]],[[1,2,2,2],[2,2,3,2],[1,3,0,0],[1,1,2,0]],[[1,2,3,1],[2,2,3,2],[1,3,0,0],[1,1,2,0]],[[1,3,2,1],[2,2,3,2],[1,3,0,0],[1,1,2,0]],[[2,2,2,1],[2,2,3,2],[1,3,0,0],[1,1,2,0]],[[1,2,2,1],[3,2,3,2],[1,3,0,0],[0,2,2,0]],[[1,2,2,2],[2,2,3,2],[1,3,0,0],[0,2,2,0]],[[1,2,3,1],[2,2,3,2],[1,3,0,0],[0,2,2,0]],[[1,3,2,1],[2,2,3,2],[1,3,0,0],[0,2,2,0]],[[0,1,2,0],[2,1,3,3],[0,1,3,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[0,1,3,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[0,1,3,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,2],[0,1,3,2],[1,2,2,2]],[[0,1,2,0],[2,1,3,3],[0,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[0,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[0,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,2],[0,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,2],[0,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,1,3,2],[0,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[0,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,1,3,2],[0,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,1,3,2],[0,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,1,3,3],[0,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[0,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[0,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[0,2,3,2],[1,2,1,2]],[[0,1,2,0],[2,1,3,3],[0,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[0,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[0,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[0,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,1,3,2],[0,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,1,3,3],[0,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[0,3,2,3],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[0,3,2,2],[1,1,3,1]],[[0,1,2,0],[2,1,3,2],[0,3,2,2],[1,1,2,2]],[[0,1,2,0],[2,1,3,2],[0,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[0,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,1,3,2],[0,3,3,1],[1,1,2,2]],[[0,1,2,0],[2,1,3,3],[0,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,1,3,2],[0,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,1,3,2],[0,3,3,3],[1,0,2,1]],[[0,1,2,0],[2,1,3,2],[0,3,3,2],[1,0,2,2]],[[0,1,2,0],[2,1,3,3],[0,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,1,3,2],[0,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,1,3,2],[0,3,3,3],[1,1,1,1]],[[0,1,2,0],[2,1,3,2],[0,3,3,2],[1,1,1,2]],[[0,1,2,0],[2,1,3,3],[0,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,1,3,2],[0,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,1,3,2],[0,3,3,3],[1,1,2,0]],[[0,1,2,0],[2,1,3,2],[0,3,3,2],[1,1,3,0]],[[0,1,2,0],[2,1,3,3],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[0,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[0,3,3,3],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[0,3,3,2],[1,2,0,2]],[[0,1,2,0],[2,1,3,3],[0,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,1,3,2],[0,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,1,3,2],[0,3,3,3],[1,2,1,0]],[[2,2,2,1],[2,2,3,2],[1,3,0,0],[0,2,2,0]],[[0,1,2,0],[2,1,3,3],[1,1,3,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,1,3,3],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,1,3,2],[0,2,3,1]],[[0,1,2,0],[2,1,3,2],[1,1,3,2],[0,2,2,2]],[[0,1,3,0],[2,1,3,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,4,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,3],[1,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,2,1,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,2,1,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,2,1,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,2],[1,2,1,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,2],[1,2,1,2],[1,2,2,2]],[[0,1,2,0],[2,1,3,3],[1,2,2,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,2,2,3],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,2,2,2],[0,2,3,1]],[[0,1,2,0],[2,1,3,2],[1,2,2,2],[0,2,2,2]],[[0,1,3,0],[2,1,3,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,0],[2,1,4,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,3],[1,2,2,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[1,2,2,3],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[1,2,2,2],[1,2,1,2]],[[0,1,3,0],[2,1,3,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,4,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,3],[1,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[1,2,2,3],[1,2,2,0]],[[0,1,3,0],[2,1,3,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,4,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,3],[1,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,2,4,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,2,3,0],[2,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,2,3,0],[1,3,2,1]],[[0,1,2,0],[2,1,3,2],[1,2,3,0],[1,2,3,1]],[[0,1,2,0],[2,1,3,2],[1,2,3,0],[1,2,2,2]],[[0,1,2,0],[2,1,3,2],[1,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,1,3,2],[1,2,3,1],[0,2,2,2]],[[0,1,3,0],[2,1,3,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,4,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,3,3],[1,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[1,2,4,1],[1,2,1,1]],[[0,1,3,0],[2,1,3,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,0],[2,1,4,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,0],[2,1,3,3],[1,2,3,1],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[1,2,4,1],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[1,2,3,1],[2,2,2,0]],[[0,1,2,0],[2,1,3,2],[1,2,3,1],[1,3,2,0]],[[0,1,2,0],[2,1,3,2],[1,2,3,1],[1,2,3,0]],[[0,1,2,0],[2,1,3,3],[1,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,1,3,2],[1,2,4,2],[0,2,1,1]],[[0,1,2,0],[2,1,3,2],[1,2,3,3],[0,2,1,1]],[[0,1,2,0],[2,1,3,2],[1,2,3,2],[0,2,1,2]],[[0,1,2,0],[2,1,3,3],[1,2,3,2],[0,2,2,0]],[[0,1,2,0],[2,1,3,2],[1,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,1,3,2],[1,2,3,3],[0,2,2,0]],[[0,1,2,0],[2,1,3,2],[1,2,3,2],[0,2,3,0]],[[0,1,3,0],[2,1,3,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,1,4,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,3],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,4,0,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,0,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,0,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,0,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,0,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,2],[1,3,0,2],[1,2,2,2]],[[0,1,3,0],[2,1,3,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,1,4,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,3],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,1,3],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,1,2],[1,1,3,1]],[[0,1,2,0],[2,1,3,2],[1,3,1,2],[1,1,2,2]],[[0,1,2,0],[2,1,3,2],[1,4,2,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,2,0],[2,2,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,2,0],[1,3,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,2,0],[1,2,3,1]],[[0,1,2,0],[2,1,3,2],[1,3,2,0],[1,2,2,2]],[[0,1,2,0],[2,1,3,2],[1,4,2,1],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[1,3,2,1],[2,2,2,0]],[[0,1,2,0],[2,1,3,2],[1,3,2,1],[1,3,2,0]],[[0,1,2,0],[2,1,3,2],[1,3,2,1],[1,2,3,0]],[[0,1,2,0],[2,1,3,3],[1,3,2,2],[0,1,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,1,3,2],[1,3,2,2],[0,1,2,2]],[[0,1,3,0],[2,1,3,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[2,1,4,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[2,1,3,3],[1,3,2,2],[1,1,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,2,3],[1,1,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,2,2],[1,1,1,2]],[[0,1,3,0],[2,1,3,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,1,4,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,1,3,3],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,1,3,2],[1,3,2,3],[1,1,2,0]],[[0,1,3,0],[2,1,3,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[2,1,4,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[2,1,3,3],[1,3,2,2],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[1,3,2,3],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[1,3,2,2],[1,2,0,2]],[[0,1,3,0],[2,1,3,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[2,1,4,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[2,1,3,3],[1,3,2,2],[1,2,1,0]],[[0,1,2,0],[2,1,3,2],[1,3,2,3],[1,2,1,0]],[[0,1,3,0],[2,1,3,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,1,4,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,1,3,3],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[1,4,3,0],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,4,0],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,0],[1,1,3,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,0],[1,1,2,2]],[[0,1,3,0],[2,1,3,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,0],[2,1,4,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,0],[2,1,3,3],[1,3,3,0],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[1,4,3,0],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,4,0],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,0],[2,2,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,0],[1,3,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,1],[0,1,2,2]],[[0,1,3,0],[2,1,3,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,1,4,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,1,3,3],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,1,3,2],[1,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,4,1],[1,1,1,1]],[[0,1,3,0],[2,1,3,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,0],[2,1,4,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,0],[2,1,3,3],[1,3,3,1],[1,1,2,0]],[[0,1,2,0],[2,1,3,2],[1,4,3,1],[1,1,2,0]],[[0,1,2,0],[2,1,3,2],[1,3,4,1],[1,1,2,0]],[[0,1,2,0],[2,1,3,2],[1,3,3,1],[1,1,3,0]],[[0,1,3,0],[2,1,3,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,1,4,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,1,3,3],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[1,4,3,1],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[1,3,4,1],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,1],[2,2,0,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,1],[1,3,0,1]],[[0,1,3,0],[2,1,3,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,0],[2,1,4,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,0],[2,1,3,3],[1,3,3,1],[1,2,1,0]],[[0,1,2,0],[2,1,3,2],[1,4,3,1],[1,2,1,0]],[[0,1,2,0],[2,1,3,2],[1,3,4,1],[1,2,1,0]],[[0,1,2,0],[2,1,3,2],[1,3,3,1],[2,2,1,0]],[[0,1,2,0],[2,1,3,2],[1,3,3,1],[1,3,1,0]],[[0,1,2,0],[2,1,3,3],[1,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,2],[0,0,2,2]],[[0,1,2,0],[2,1,3,3],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,2],[0,1,1,2]],[[0,1,2,0],[2,1,3,3],[1,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,1,3,2],[1,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,1,3,2],[1,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,1,3,2],[1,3,3,2],[0,1,3,0]],[[0,1,2,0],[2,1,3,3],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,1,3,2],[1,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,2],[0,2,0,2]],[[0,1,2,0],[2,1,3,3],[1,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,1,3,2],[1,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,1,3,2],[1,3,3,3],[0,2,1,0]],[[0,1,2,0],[2,1,3,3],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,4,2],[1,0,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,3],[1,0,1,1]],[[0,1,2,0],[2,1,3,2],[1,3,3,2],[1,0,1,2]],[[0,1,2,0],[2,1,3,3],[1,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,1,3,2],[1,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,1,3,2],[1,3,3,3],[1,0,2,0]],[[0,1,3,0],[2,1,3,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[3,1,3,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,4,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,3],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[3,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,1,1,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,1,1,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,1,1,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,2],[2,1,1,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,2],[2,1,1,2],[1,2,2,2]],[[0,1,3,0],[2,1,3,2],[2,1,2,2],[1,2,1,1]],[[0,1,2,0],[2,1,4,2],[2,1,2,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,3],[2,1,2,2],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[2,1,2,3],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[2,1,2,2],[1,2,1,2]],[[0,1,3,0],[2,1,3,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,4,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,3],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[2,1,2,3],[1,2,2,0]],[[0,1,3,0],[2,1,3,2],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[3,1,3,2],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,4,2],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,3],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[3,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,1,4,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,1,3,0],[2,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,1,3,0],[1,3,2,1]],[[0,1,2,0],[2,1,3,2],[2,1,3,0],[1,2,3,1]],[[0,1,2,0],[2,1,3,2],[2,1,3,0],[1,2,2,2]],[[0,1,3,0],[2,1,3,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,4,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,3,3],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[2,1,4,1],[1,2,1,1]],[[0,1,3,0],[2,1,3,2],[2,1,3,1],[1,2,2,0]],[[0,1,2,0],[3,1,3,2],[2,1,3,1],[1,2,2,0]],[[0,1,2,0],[2,1,4,2],[2,1,3,1],[1,2,2,0]],[[0,1,2,0],[2,1,3,3],[2,1,3,1],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[3,1,3,1],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[2,1,4,1],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[2,1,3,1],[2,2,2,0]],[[0,1,2,0],[2,1,3,2],[2,1,3,1],[1,3,2,0]],[[0,1,2,0],[2,1,3,2],[2,1,3,1],[1,2,3,0]],[[0,1,3,0],[2,1,3,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[3,1,3,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,1,4,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,3],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[3,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,0,3],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,0,2],[2,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,0,2],[1,3,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,0,2],[1,2,3,1]],[[0,1,2,0],[2,1,3,2],[2,2,0,2],[1,2,2,2]],[[0,1,3,0],[2,1,3,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[2,1,4,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,3],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,1,3],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,1,2],[0,3,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,1,2],[0,2,3,1]],[[0,1,2,0],[2,1,3,2],[2,2,1,2],[0,2,2,2]],[[0,1,2,0],[3,1,3,2],[2,2,2,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[3,2,2,0],[1,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,2,0],[2,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,2,0],[1,3,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,2,0],[1,2,3,1]],[[0,1,2,0],[2,1,3,2],[2,2,2,0],[1,2,2,2]],[[0,1,2,0],[3,1,3,2],[2,2,2,1],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[3,2,2,1],[1,2,2,0]],[[0,1,2,0],[2,1,3,2],[2,2,2,1],[2,2,2,0]],[[0,1,2,0],[2,1,3,2],[2,2,2,1],[1,3,2,0]],[[0,1,2,0],[2,1,3,2],[2,2,2,1],[1,2,3,0]],[[0,1,3,0],[2,1,3,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,0],[2,1,4,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,0],[2,1,3,3],[2,2,2,2],[0,2,1,1]],[[0,1,2,0],[2,1,3,2],[2,2,2,3],[0,2,1,1]],[[0,1,2,0],[2,1,3,2],[2,2,2,2],[0,2,1,2]],[[0,1,3,0],[2,1,3,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,1,4,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,1,3,3],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,1,3,2],[2,2,2,3],[0,2,2,0]],[[0,1,3,0],[2,1,3,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[2,1,4,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[2,1,3,3],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,4,0],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,3,0],[0,3,2,1]],[[0,1,2,0],[2,1,3,2],[2,2,3,0],[0,2,3,1]],[[0,1,2,0],[2,1,3,2],[2,2,3,0],[0,2,2,2]],[[0,1,2,0],[3,1,3,2],[2,2,3,0],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[3,2,3,0],[1,2,1,1]],[[0,1,2,0],[2,1,3,2],[2,2,3,0],[2,2,1,1]],[[0,1,2,0],[2,1,3,2],[2,2,3,0],[1,3,1,1]],[[0,1,3,0],[2,1,3,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,1,4,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,1,3,3],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,1,3,2],[2,2,4,1],[0,2,1,1]],[[0,1,3,0],[2,1,3,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,0],[2,1,4,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,0],[2,1,3,3],[2,2,3,1],[0,2,2,0]],[[0,1,2,0],[2,1,3,2],[2,2,4,1],[0,2,2,0]],[[0,1,2,0],[2,1,3,2],[2,2,3,1],[0,3,2,0]],[[0,1,2,0],[2,1,3,2],[2,2,3,1],[0,2,3,0]],[[0,1,2,0],[3,1,3,2],[2,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[3,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[2,2,3,1],[2,2,0,1]],[[0,1,2,0],[2,1,3,2],[2,2,3,1],[1,3,0,1]],[[0,1,2,0],[3,1,3,2],[2,2,3,1],[1,2,1,0]],[[0,1,2,0],[2,1,3,2],[3,2,3,1],[1,2,1,0]],[[0,1,2,0],[2,1,3,2],[2,2,3,1],[2,2,1,0]],[[0,1,2,0],[2,1,3,2],[2,2,3,1],[1,3,1,0]],[[0,1,3,0],[2,1,3,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[3,1,3,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,1,4,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,3],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[3,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,4,0,2],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,0,3],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,0,2],[0,3,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,0,2],[0,2,3,1]],[[0,1,2,0],[2,1,3,2],[2,3,0,2],[0,2,2,2]],[[0,1,2,0],[3,1,3,2],[2,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[3,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[2,4,0,2],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,0,2],[2,1,2,1]],[[0,1,3,0],[2,1,3,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,0],[2,1,4,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,0],[2,1,3,3],[2,3,1,2],[0,1,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,1,3],[0,1,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,1,2],[0,1,3,1]],[[0,1,2,0],[2,1,3,2],[2,3,1,2],[0,1,2,2]],[[0,1,3,0],[2,1,3,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,0],[2,1,4,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,0],[2,1,3,3],[2,3,1,2],[1,0,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,1,3],[1,0,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,1,2],[1,0,3,1]],[[0,1,2,0],[2,1,3,2],[2,3,1,2],[1,0,2,2]],[[0,1,2,0],[3,1,3,2],[2,3,2,0],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[3,3,2,0],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,4,2,0],[0,2,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,0],[0,3,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,0],[0,2,3,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,0],[0,2,2,2]],[[0,1,2,0],[3,1,3,2],[2,3,2,0],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[3,3,2,0],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[2,4,2,0],[1,1,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,0],[2,1,2,1]],[[0,1,2,0],[3,1,3,2],[2,3,2,1],[0,2,2,0]],[[0,1,2,0],[2,1,3,2],[3,3,2,1],[0,2,2,0]],[[0,1,2,0],[2,1,3,2],[2,4,2,1],[0,2,2,0]],[[0,1,2,0],[2,1,3,2],[2,3,2,1],[0,3,2,0]],[[0,1,2,0],[2,1,3,2],[2,3,2,1],[0,2,3,0]],[[0,1,2,0],[3,1,3,2],[2,3,2,1],[1,1,2,0]],[[0,1,2,0],[2,1,3,2],[3,3,2,1],[1,1,2,0]],[[0,1,2,0],[2,1,3,2],[2,4,2,1],[1,1,2,0]],[[0,1,2,0],[2,1,3,2],[2,3,2,1],[2,1,2,0]],[[0,1,3,0],[2,1,3,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,0],[2,1,4,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,0],[2,1,3,3],[2,3,2,2],[0,0,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,3],[0,0,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,2],[0,0,2,2]],[[0,1,3,0],[2,1,3,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,1,4,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,1,3,3],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,3],[0,1,1,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,2],[0,1,1,2]],[[0,1,3,0],[2,1,3,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,1,4,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,1,3,3],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,1,3,2],[2,3,2,3],[0,1,2,0]],[[0,1,3,0],[2,1,3,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,1,4,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,1,3,3],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,3],[0,2,0,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,2],[0,2,0,2]],[[0,1,3,0],[2,1,3,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,1,4,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,1,3,3],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,1,3,2],[2,3,2,3],[0,2,1,0]],[[0,1,3,0],[2,1,3,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[2,1,4,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[2,1,3,3],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,3],[1,0,1,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,2],[1,0,1,2]],[[0,1,3,0],[2,1,3,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[2,1,4,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[2,1,3,3],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[2,1,3,2],[2,3,2,3],[1,0,2,0]],[[0,1,3,0],[2,1,3,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[2,1,4,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[2,1,3,3],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,3],[1,1,0,1]],[[0,1,2,0],[2,1,3,2],[2,3,2,2],[1,1,0,2]],[[0,1,3,0],[2,1,3,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[2,1,4,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[2,1,3,3],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[2,1,3,2],[2,3,2,3],[1,1,1,0]],[[0,1,3,0],[2,1,3,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[3,1,3,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,1,4,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,1,3,3],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,1,3,2],[3,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,1,3,2],[2,4,3,0],[0,1,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,4,0],[0,1,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,0],[0,1,3,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,0],[0,1,2,2]],[[0,1,3,0],[2,1,3,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[3,1,3,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,1,4,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,1,3,3],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,1,3,2],[3,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,1,3,2],[2,4,3,0],[0,2,1,1]],[[0,1,2,0],[2,1,3,2],[2,3,4,0],[0,2,1,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,0],[0,3,1,1]],[[0,1,3,0],[2,1,3,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[3,1,3,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[2,1,4,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[2,1,3,3],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[2,1,3,2],[3,3,3,0],[1,0,2,1]],[[0,1,2,0],[2,1,3,2],[2,4,3,0],[1,0,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,4,0],[1,0,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,0],[2,0,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,0],[1,0,3,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,0],[1,0,2,2]],[[0,1,3,0],[2,1,3,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[3,1,3,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[2,1,4,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[2,1,3,3],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[2,1,3,2],[3,3,3,0],[1,1,1,1]],[[0,1,2,0],[2,1,3,2],[2,4,3,0],[1,1,1,1]],[[0,1,2,0],[2,1,3,2],[2,3,4,0],[1,1,1,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,0],[2,1,1,1]],[[0,1,2,0],[3,1,3,2],[2,3,3,0],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[3,3,3,0],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[2,4,3,0],[1,2,0,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,0],[2,2,0,1]],[[0,1,3,0],[2,1,3,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,1,4,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,1,3,3],[2,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,1,3,2],[2,3,4,1],[0,0,2,1]],[[0,1,3,0],[2,1,3,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[3,1,3,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,1,4,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,1,3,3],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,1,3,2],[3,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,1,3,2],[2,4,3,1],[0,1,1,1]],[[0,1,2,0],[2,1,3,2],[2,3,4,1],[0,1,1,1]],[[0,1,3,0],[2,1,3,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[3,1,3,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,1,4,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,1,3,3],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,1,3,2],[3,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,1,3,2],[2,4,3,1],[0,1,2,0]],[[0,1,2,0],[2,1,3,2],[2,3,4,1],[0,1,2,0]],[[0,1,2,0],[2,1,3,2],[2,3,3,1],[0,1,3,0]],[[0,1,3,0],[2,1,3,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[3,1,3,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,1,4,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,1,3,3],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,1,3,2],[3,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,1,3,2],[2,4,3,1],[0,2,0,1]],[[0,1,2,0],[2,1,3,2],[2,3,4,1],[0,2,0,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,1],[0,3,0,1]],[[0,1,3,0],[2,1,3,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[3,1,3,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,1,4,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,1,3,3],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,1,3,2],[3,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,1,3,2],[2,4,3,1],[0,2,1,0]],[[0,1,2,0],[2,1,3,2],[2,3,4,1],[0,2,1,0]],[[0,1,2,0],[2,1,3,2],[2,3,3,1],[0,3,1,0]],[[0,1,3,0],[2,1,3,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[3,1,3,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,1,4,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,1,3,3],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,1,3,2],[3,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,1,3,2],[2,4,3,1],[1,0,1,1]],[[0,1,2,0],[2,1,3,2],[2,3,4,1],[1,0,1,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,1],[2,0,1,1]],[[0,1,3,0],[2,1,3,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[3,1,3,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[2,1,4,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[2,1,3,3],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[2,1,3,2],[3,3,3,1],[1,0,2,0]],[[0,1,2,0],[2,1,3,2],[2,4,3,1],[1,0,2,0]],[[0,1,2,0],[2,1,3,2],[2,3,4,1],[1,0,2,0]],[[0,1,2,0],[2,1,3,2],[2,3,3,1],[2,0,2,0]],[[0,1,2,0],[2,1,3,2],[2,3,3,1],[1,0,3,0]],[[0,1,3,0],[2,1,3,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[3,1,3,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[2,1,4,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[2,1,3,3],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[2,1,3,2],[3,3,3,1],[1,1,0,1]],[[0,1,2,0],[2,1,3,2],[2,4,3,1],[1,1,0,1]],[[0,1,2,0],[2,1,3,2],[2,3,4,1],[1,1,0,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,1],[2,1,0,1]],[[0,1,3,0],[2,1,3,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[3,1,3,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[2,1,4,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[2,1,3,3],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[2,1,3,2],[3,3,3,1],[1,1,1,0]],[[0,1,2,0],[2,1,3,2],[2,4,3,1],[1,1,1,0]],[[0,1,2,0],[2,1,3,2],[2,3,4,1],[1,1,1,0]],[[0,1,2,0],[2,1,3,2],[2,3,3,1],[2,1,1,0]],[[0,1,2,0],[3,1,3,2],[2,3,3,1],[1,2,0,0]],[[0,1,2,0],[2,1,3,2],[3,3,3,1],[1,2,0,0]],[[0,1,2,0],[2,1,3,2],[2,4,3,1],[1,2,0,0]],[[0,1,2,0],[2,1,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,2,4,2],[0,3,3,0],[1,1,0,0]],[[1,2,2,2],[2,2,3,2],[0,3,3,0],[1,1,0,0]],[[1,2,3,1],[2,2,3,2],[0,3,3,0],[1,1,0,0]],[[1,3,2,1],[2,2,3,2],[0,3,3,0],[1,1,0,0]],[[2,2,2,1],[2,2,3,2],[0,3,3,0],[1,1,0,0]],[[1,2,2,1],[2,2,4,2],[0,3,3,0],[0,2,0,0]],[[1,2,2,2],[2,2,3,2],[0,3,3,0],[0,2,0,0]],[[1,2,3,1],[2,2,3,2],[0,3,3,0],[0,2,0,0]],[[1,3,2,1],[2,2,3,2],[0,3,3,0],[0,2,0,0]],[[0,1,3,0],[2,1,3,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,0],[2,1,4,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,0],[2,1,3,3],[2,3,3,2],[0,1,0,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,3],[0,1,0,1]],[[2,2,2,1],[2,2,3,2],[0,3,3,0],[0,2,0,0]],[[1,2,2,1],[2,2,4,2],[0,3,3,0],[0,0,2,0]],[[1,2,2,2],[2,2,3,2],[0,3,3,0],[0,0,2,0]],[[1,2,3,1],[2,2,3,2],[0,3,3,0],[0,0,2,0]],[[1,3,2,1],[2,2,3,2],[0,3,3,0],[0,0,2,0]],[[2,2,2,1],[2,2,3,2],[0,3,3,0],[0,0,2,0]],[[1,2,2,1],[2,2,4,2],[0,3,3,0],[0,0,1,1]],[[1,2,2,2],[2,2,3,2],[0,3,3,0],[0,0,1,1]],[[1,2,3,1],[2,2,3,2],[0,3,3,0],[0,0,1,1]],[[1,3,2,1],[2,2,3,2],[0,3,3,0],[0,0,1,1]],[[2,2,2,1],[2,2,3,2],[0,3,3,0],[0,0,1,1]],[[0,1,3,0],[2,1,3,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,1,4,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,1,3,3],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,2,3,3],[0,3,2,2],[0,0,0,1]],[[1,2,2,2],[2,2,3,2],[0,3,2,2],[0,0,0,1]],[[1,2,3,1],[2,2,3,2],[0,3,2,2],[0,0,0,1]],[[1,3,2,1],[2,2,3,2],[0,3,2,2],[0,0,0,1]],[[2,2,2,1],[2,2,3,2],[0,3,2,2],[0,0,0,1]],[[1,2,2,1],[2,2,4,2],[0,3,2,0],[1,1,1,0]],[[1,2,2,2],[2,2,3,2],[0,3,2,0],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[0,3,2,0],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[0,3,2,0],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[0,3,2,0],[1,1,1,0]],[[1,2,2,1],[2,2,4,2],[0,3,2,0],[1,1,0,1]],[[1,2,2,2],[2,2,3,2],[0,3,2,0],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[0,3,2,0],[1,1,0,1]],[[1,3,2,1],[2,2,3,2],[0,3,2,0],[1,1,0,1]],[[0,1,2,0],[2,2,0,1],[1,4,3,2],[1,2,2,1]],[[0,1,2,0],[2,2,0,1],[1,3,3,2],[2,2,2,1]],[[0,1,2,0],[2,2,0,1],[1,3,3,2],[1,3,2,1]],[[0,1,2,0],[2,2,0,1],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,0,1],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[2,2,0,1],[3,2,3,2],[1,2,2,1]],[[0,1,2,0],[2,2,0,1],[2,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,2,0,1],[2,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,2,0,1],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,0,1],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,2,0,1],[3,3,3,2],[0,2,2,1]],[[0,1,2,0],[2,2,0,1],[2,4,3,2],[0,2,2,1]],[[0,1,2,0],[2,2,0,1],[2,3,3,2],[0,3,2,1]],[[0,1,2,0],[2,2,0,1],[2,3,3,2],[0,2,3,1]],[[0,1,2,0],[2,2,0,1],[2,3,3,2],[0,2,2,2]],[[0,1,2,0],[2,2,0,1],[3,3,3,2],[1,1,2,1]],[[0,1,2,0],[2,2,0,1],[2,4,3,2],[1,1,2,1]],[[0,1,2,0],[2,2,0,1],[2,3,3,2],[2,1,2,1]],[[0,1,2,0],[2,2,0,2],[1,2,3,3],[1,2,2,1]],[[0,1,2,0],[2,2,0,2],[1,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,2,0,2],[1,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,2,0,2],[1,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,0,2],[1,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,2,0,2],[1,4,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,0,2],[1,3,2,3],[1,2,2,1]],[[0,1,2,0],[2,2,0,2],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,0,2],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,0,2],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,0,2],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[2,2,0,2],[1,4,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,0,2],[1,3,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,0,2],[1,3,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,0,2],[1,3,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,0,2],[1,3,3,1],[1,2,2,2]],[[0,1,2,0],[2,2,0,2],[1,3,3,3],[1,1,2,1]],[[0,1,2,0],[2,2,0,2],[1,3,3,2],[1,1,3,1]],[[0,1,2,0],[2,2,0,2],[1,3,3,2],[1,1,2,2]],[[0,1,2,0],[2,2,0,2],[1,4,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,0,2],[1,3,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,0,2],[1,3,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,0,2],[1,3,3,2],[1,2,3,0]],[[0,1,2,0],[2,2,0,2],[3,1,3,2],[1,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,1,3,3],[1,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,1,3,2],[2,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,1,3,2],[1,3,2,1]],[[0,1,2,0],[2,2,0,2],[2,1,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,0,2],[2,1,3,2],[1,2,2,2]],[[0,1,2,0],[2,2,0,2],[3,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,0,2],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,0,2],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,2,0,2],[3,2,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,0,2],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,0,2],[2,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,2,0,2],[2,2,3,3],[0,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,2,3,2],[0,3,2,1]],[[0,1,2,0],[2,2,0,2],[2,2,3,2],[0,2,3,1]],[[0,1,2,0],[2,2,0,2],[2,2,3,2],[0,2,2,2]],[[0,1,2,0],[2,2,0,2],[3,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,0,2],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,0,2],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,0,2],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,2,0,2],[3,3,2,2],[0,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,4,2,2],[0,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,3,2,3],[0,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[2,2,0,2],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[2,2,0,2],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[2,2,0,2],[3,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,2,0,2],[2,4,2,2],[1,1,2,1]],[[0,1,2,0],[2,2,0,2],[2,3,2,2],[2,1,2,1]],[[0,1,2,0],[2,2,0,2],[3,3,3,1],[0,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,4,3,1],[0,2,2,1]],[[0,1,2,0],[2,2,0,2],[2,3,3,1],[0,3,2,1]],[[0,1,2,0],[2,2,0,2],[2,3,3,1],[0,2,3,1]],[[0,1,2,0],[2,2,0,2],[2,3,3,1],[0,2,2,2]],[[0,1,2,0],[2,2,0,2],[3,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,2,0,2],[2,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,2,0,2],[2,3,3,1],[2,1,2,1]],[[0,1,2,0],[2,2,0,2],[2,3,3,3],[0,1,2,1]],[[0,1,2,0],[2,2,0,2],[2,3,3,2],[0,1,3,1]],[[0,1,2,0],[2,2,0,2],[2,3,3,2],[0,1,2,2]],[[0,1,2,0],[2,2,0,2],[3,3,3,2],[0,2,2,0]],[[0,1,2,0],[2,2,0,2],[2,4,3,2],[0,2,2,0]],[[0,1,2,0],[2,2,0,2],[2,3,3,2],[0,3,2,0]],[[0,1,2,0],[2,2,0,2],[2,3,3,2],[0,2,3,0]],[[0,1,2,0],[2,2,0,2],[2,3,3,3],[1,0,2,1]],[[0,1,2,0],[2,2,0,2],[2,3,3,2],[1,0,3,1]],[[0,1,2,0],[2,2,0,2],[2,3,3,2],[1,0,2,2]],[[0,1,2,0],[2,2,0,2],[3,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,0,2],[2,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,0,2],[2,3,3,2],[2,1,2,0]],[[2,2,2,1],[2,2,3,2],[0,3,2,0],[1,1,0,1]],[[0,1,2,0],[2,2,1,0],[1,4,3,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,0],[1,3,3,2],[2,2,2,1]],[[0,1,2,0],[2,2,1,0],[1,3,3,2],[1,3,2,1]],[[0,1,2,0],[2,2,1,0],[1,3,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,1,0],[1,3,3,2],[1,2,2,2]],[[0,1,2,0],[2,2,1,0],[3,2,3,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,0],[2,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,2,1,0],[2,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,2,1,0],[2,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,1,0],[2,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,2,1,0],[3,3,3,2],[0,2,2,1]],[[0,1,2,0],[2,2,1,0],[2,4,3,2],[0,2,2,1]],[[0,1,2,0],[2,2,1,0],[2,3,3,2],[0,3,2,1]],[[0,1,2,0],[2,2,1,0],[2,3,3,2],[0,2,3,1]],[[0,1,2,0],[2,2,1,0],[2,3,3,2],[0,2,2,2]],[[0,1,2,0],[2,2,1,0],[3,3,3,2],[1,1,2,1]],[[0,1,2,0],[2,2,1,0],[2,4,3,2],[1,1,2,1]],[[0,1,2,0],[2,2,1,0],[2,3,3,2],[2,1,2,1]],[[0,1,2,0],[2,2,1,1],[1,4,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,1,1],[1,3,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,1,1],[1,3,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,1,1],[1,3,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,1,1],[1,3,3,1],[1,2,2,2]],[[0,1,2,0],[2,2,1,1],[1,4,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,1],[1,3,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,1,1],[1,3,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,1,1],[1,3,3,2],[1,2,3,0]],[[0,1,2,0],[2,2,1,1],[3,2,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,1,1],[2,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,1,1],[2,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,1,1],[2,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,1,1],[2,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,2,1,1],[3,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,1],[2,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,1,1],[2,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,1,1],[2,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,2,1,1],[3,3,3,1],[0,2,2,1]],[[0,1,2,0],[2,2,1,1],[2,4,3,1],[0,2,2,1]],[[0,1,2,0],[2,2,1,1],[2,3,3,1],[0,3,2,1]],[[0,1,2,0],[2,2,1,1],[2,3,3,1],[0,2,3,1]],[[0,1,2,0],[2,2,1,1],[2,3,3,1],[0,2,2,2]],[[0,1,2,0],[2,2,1,1],[3,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,2,1,1],[2,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,2,1,1],[2,3,3,1],[2,1,2,1]],[[0,1,2,0],[2,2,1,1],[3,3,3,2],[0,2,2,0]],[[0,1,2,0],[2,2,1,1],[2,4,3,2],[0,2,2,0]],[[0,1,2,0],[2,2,1,1],[2,3,3,2],[0,3,2,0]],[[0,1,2,0],[2,2,1,1],[2,3,3,2],[0,2,3,0]],[[0,1,2,0],[2,2,1,1],[3,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,1,1],[2,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[2,2,4,2],[0,3,2,0],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[0,3,2,0],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[0,3,2,0],[1,0,2,0]],[[1,3,2,1],[2,2,3,2],[0,3,2,0],[1,0,2,0]],[[2,2,2,1],[2,2,3,2],[0,3,2,0],[1,0,2,0]],[[1,2,2,1],[2,2,4,2],[0,3,2,0],[1,0,1,1]],[[0,1,2,0],[2,2,1,2],[0,2,3,3],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[0,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,2,1,2],[0,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,1,2],[0,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,2,1,2],[0,3,3,3],[1,1,2,1]],[[0,1,2,0],[2,2,1,2],[0,3,3,2],[1,1,3,1]],[[0,1,2,0],[2,2,1,2],[0,3,3,2],[1,1,2,2]],[[0,1,2,0],[2,2,1,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,1,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,1,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,2,1,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,1,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,1,2],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,2,1,2],[1,2,3,3],[0,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,2,3,2],[0,2,3,1]],[[0,1,2,0],[2,2,1,2],[1,2,3,2],[0,2,2,2]],[[0,1,2,0],[2,2,1,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,1,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,2,1,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,2,1,2],[1,2,3,2],[1,2,1,2]],[[0,1,2,0],[2,2,1,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,2,1,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,1,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,1,2],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,2,1,3],[1,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,4,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,1,3],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,2,1,2],[1,3,1,2],[1,2,2,2]],[[0,1,2,0],[2,2,1,2],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,2,1,2],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,2,1,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[2,2,1,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[2,2,1,2],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,2],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,2,1,2],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,2,1,2],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[2,2,1,2],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[2,2,1,2],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,1,2],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,3],[0,1,2,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,2],[0,1,3,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,2],[0,1,2,2]],[[0,1,2,0],[2,2,1,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,2,1,2],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,2,1,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,2],[1,1,1,2]],[[0,1,2,0],[2,2,1,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,1,2],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,1,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,2,1,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[2,2,1,2],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[2,2,1,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,1,2],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,1,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,2,1,2],[1,3,3,2],[1,2,0,2]],[[0,1,2,0],[2,2,1,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,1,2],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,1,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,2,1,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,0],[2,2,1,2],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,2,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,2],[2,2,3,2],[0,3,2,0],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[0,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,2,3,2],[0,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,2,3,2],[0,3,2,0],[1,0,1,1]],[[0,1,2,0],[3,2,1,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,3],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[3,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,1,2,3],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,1,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,1,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,1,2],[2,1,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,1,2],[2,1,2,2],[1,2,2,2]],[[0,1,2,0],[3,2,1,2],[2,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[3,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,1,2],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,1,2],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[2,2,1,3],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,1,2],[2,1,4,2],[1,2,1,1]],[[0,1,2,0],[2,2,1,2],[2,1,3,3],[1,2,1,1]],[[0,1,2,0],[2,2,1,2],[2,1,3,2],[1,2,1,2]],[[0,1,2,0],[3,2,1,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,3],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,2],[3,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,1,3,3],[1,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,1,2],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[3,2,1,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,3],[2,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[3,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,1,3],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,1,2],[2,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,1,2],[1,3,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,1,2],[1,2,3,1]],[[0,1,2,0],[2,2,1,2],[2,2,1,2],[1,2,2,2]],[[0,1,2,0],[3,2,1,2],[2,2,2,1],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[3,2,2,1],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,2,1],[2,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,2,1],[1,3,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,2,1],[1,2,3,1]],[[0,1,2,0],[2,2,1,2],[2,2,2,1],[1,2,2,2]],[[0,1,2,0],[2,2,1,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[2,2,1,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,0],[3,2,1,2],[2,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,2],[3,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,2,2,2],[2,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,2,2,2],[1,3,2,0]],[[0,1,2,0],[2,2,1,2],[2,2,2,2],[1,2,3,0]],[[0,1,2,0],[2,2,1,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[2,2,1,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,2,1,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[3,2,1,2],[2,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,1,2],[3,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,1,2],[2,2,3,1],[2,2,1,1]],[[0,1,2,0],[2,2,1,2],[2,2,3,1],[1,3,1,1]],[[0,1,2,0],[2,2,1,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,2,1,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[2,2,1,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[2,2,1,2],[2,2,3,2],[0,2,1,2]],[[0,1,2,0],[2,2,1,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[2,2,1,2],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[3,2,1,2],[2,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,1,2],[3,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,1,2],[2,2,3,2],[2,2,0,1]],[[0,1,2,0],[2,2,1,2],[2,2,3,2],[1,3,0,1]],[[0,1,2,0],[3,2,1,2],[2,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,1,2],[3,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,1,2],[2,2,3,2],[2,2,1,0]],[[0,1,2,0],[2,2,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,4,2],[0,3,2,0],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[0,3,2,0],[0,2,1,0]],[[0,1,2,0],[2,2,1,2],[3,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,0,2],[2,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,0,2],[1,3,2,1]],[[0,1,2,0],[2,2,1,2],[3,3,1,1],[1,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,1,1],[2,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,1,1],[1,3,2,1]],[[0,1,2,0],[3,2,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,1,3],[2,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,1,2],[3,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,4,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,1,3],[0,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,1,2],[0,3,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,1,2],[0,2,3,1]],[[0,1,2,0],[2,2,1,2],[2,3,1,2],[0,2,2,2]],[[0,1,2,0],[3,2,1,2],[2,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,2,1,2],[3,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,2,1,2],[2,4,1,2],[1,1,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,1,2],[2,1,2,1]],[[0,1,2,0],[2,2,1,2],[3,3,1,2],[1,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,1,2],[2,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,1,2],[1,3,2,0]],[[0,1,2,0],[3,2,1,2],[2,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,2,1,2],[3,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[2,2,1,2],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[3,2,1,2],[2,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,2,1,2],[3,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,2,1,2],[2,4,2,1],[1,1,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,2,1],[2,1,2,1]],[[0,1,2,0],[2,2,1,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,2,1,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[3,2,1,2],[2,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,1,2],[3,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[2,2,1,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[2,2,1,2],[2,3,2,2],[1,0,2,2]],[[0,1,2,0],[3,2,1,2],[2,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,1,2],[3,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,1,2],[2,4,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,3,1],[2,2,3,2],[0,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[0,3,2,0],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[0,3,2,0],[0,2,1,0]],[[1,2,2,1],[2,2,4,2],[0,3,2,0],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[0,3,2,0],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[0,3,2,0],[0,2,0,1]],[[1,3,2,1],[2,2,3,2],[0,3,2,0],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[0,3,2,0],[0,2,0,1]],[[0,1,2,0],[3,2,1,2],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,1,2],[3,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,1,2],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,0],[3,2,1,2],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,1,2],[3,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,1,2],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,1,2],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,1],[0,3,1,1]],[[0,1,2,0],[3,2,1,2],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,1,2],[3,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,1,2],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,1],[2,0,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,1],[1,0,2,2]],[[0,1,2,0],[3,2,1,2],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,1,2],[3,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,1,2],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,1,2],[2,3,4,1],[1,1,1,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,1],[2,1,1,1]],[[0,1,2,0],[2,2,1,2],[3,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,1,2],[2,4,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,2,4,2],[0,3,2,0],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[0,3,2,0],[0,1,2,0]],[[1,2,3,1],[2,2,3,2],[0,3,2,0],[0,1,2,0]],[[0,1,2,0],[2,2,1,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[0,0,2,2]],[[0,1,2,0],[3,2,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,1,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,1,2],[3,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,1,2],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,1,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[0,1,1,2]],[[0,1,2,0],[3,2,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,1,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,1,2],[3,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,1,2],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[3,2,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,1,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,1,2],[3,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,1,2],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,1,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[0,2,0,2]],[[0,1,2,0],[3,2,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,1,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,1,2],[3,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,1,2],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,1,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,2,1,2],[2,3,3,3],[0,2,1,0]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[0,3,1,0]],[[1,3,2,1],[2,2,3,2],[0,3,2,0],[0,1,2,0]],[[2,2,2,1],[2,2,3,2],[0,3,2,0],[0,1,2,0]],[[1,2,2,1],[2,2,4,2],[0,3,2,0],[0,1,1,1]],[[1,2,2,2],[2,2,3,2],[0,3,2,0],[0,1,1,1]],[[1,2,3,1],[2,2,3,2],[0,3,2,0],[0,1,1,1]],[[1,3,2,1],[2,2,3,2],[0,3,2,0],[0,1,1,1]],[[2,2,2,1],[2,2,3,2],[0,3,2,0],[0,1,1,1]],[[0,1,2,0],[3,2,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,1,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,1,2],[3,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,1,2],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,1,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[2,0,1,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[1,0,1,2]],[[0,1,2,0],[3,2,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,1,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,1,2],[3,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,1,2],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[2,0,2,0]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[1,0,3,0]],[[0,1,2,0],[3,2,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,1,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,1,2],[3,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,1,2],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,1,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[2,1,0,1]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[1,1,0,2]],[[0,1,2,0],[3,2,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,1,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,1,2],[3,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,1,2],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,1,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[2,2,1,2],[2,3,3,3],[1,1,1,0]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[2,1,1,0]],[[0,1,2,0],[3,2,1,2],[2,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,2,1,2],[3,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,2,1,2],[2,4,3,2],[1,2,0,0]],[[0,1,2,0],[2,2,1,2],[2,3,3,2],[2,2,0,0]],[[0,1,2,0],[2,2,2,0],[1,2,4,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,0],[1,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,0],[1,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,0],[1,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,0],[1,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,2,2,0],[1,4,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,0],[1,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,0],[1,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,0],[1,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,0],[1,3,2,2],[1,2,2,2]],[[0,1,2,0],[2,2,2,0],[1,4,3,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,0],[1,3,4,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,0],[1,3,3,2],[1,1,3,1]],[[0,1,2,0],[2,2,2,0],[1,3,3,2],[1,1,2,2]],[[0,1,2,0],[2,2,2,0],[1,4,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,2,0],[1,3,4,2],[1,2,1,1]],[[0,1,2,0],[2,2,2,0],[1,3,3,2],[2,2,1,1]],[[0,1,2,0],[2,2,2,0],[1,3,3,2],[1,3,1,1]],[[0,1,2,0],[3,2,2,0],[2,1,3,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,0],[3,1,3,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,0],[2,1,4,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,0],[2,1,3,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,0],[2,1,3,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,0],[2,1,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,0],[2,1,3,2],[1,2,2,2]],[[0,1,2,0],[3,2,2,0],[2,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,0],[3,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,0],[2,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,0],[2,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,0],[2,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,0],[2,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,2,2,0],[2,2,4,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,0],[2,2,3,2],[0,3,2,1]],[[0,1,2,0],[2,2,2,0],[2,2,3,2],[0,2,3,1]],[[0,1,2,0],[2,2,2,0],[2,2,3,2],[0,2,2,2]],[[0,1,2,0],[3,2,2,0],[2,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,2,0],[3,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,2,0],[2,2,3,2],[2,2,1,1]],[[0,1,2,0],[2,2,2,0],[2,2,3,2],[1,3,1,1]],[[0,1,2,0],[2,2,2,0],[3,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,0],[2,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,0],[2,3,1,2],[1,3,2,1]],[[0,1,2,0],[3,2,2,0],[2,3,2,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,0],[3,3,2,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,0],[2,4,2,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,0],[2,3,2,2],[0,3,2,1]],[[0,1,2,0],[2,2,2,0],[2,3,2,2],[0,2,3,1]],[[0,1,2,0],[2,2,2,0],[2,3,2,2],[0,2,2,2]],[[0,1,2,0],[3,2,2,0],[2,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,0],[3,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,0],[2,4,2,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,0],[2,3,2,2],[2,1,2,1]],[[0,1,2,0],[3,2,2,0],[2,3,3,2],[0,1,2,1]],[[0,1,2,0],[2,2,2,0],[3,3,3,2],[0,1,2,1]],[[0,1,2,0],[2,2,2,0],[2,4,3,2],[0,1,2,1]],[[0,1,2,0],[2,2,2,0],[2,3,4,2],[0,1,2,1]],[[0,1,2,0],[2,2,2,0],[2,3,3,2],[0,1,3,1]],[[0,1,2,0],[2,2,2,0],[2,3,3,2],[0,1,2,2]],[[0,1,2,0],[3,2,2,0],[2,3,3,2],[0,2,1,1]],[[0,1,2,0],[2,2,2,0],[3,3,3,2],[0,2,1,1]],[[0,1,2,0],[2,2,2,0],[2,4,3,2],[0,2,1,1]],[[0,1,2,0],[2,2,2,0],[2,3,4,2],[0,2,1,1]],[[0,1,2,0],[2,2,2,0],[2,3,3,2],[0,3,1,1]],[[0,1,2,0],[3,2,2,0],[2,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,2,2,0],[3,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,2,2,0],[2,4,3,2],[1,0,2,1]],[[0,1,2,0],[2,2,2,0],[2,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,2,2,0],[2,3,3,2],[2,0,2,1]],[[0,1,2,0],[2,2,2,0],[2,3,3,2],[1,0,3,1]],[[0,1,2,0],[2,2,2,0],[2,3,3,2],[1,0,2,2]],[[0,1,2,0],[3,2,2,0],[2,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,2,2,0],[3,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,2,2,0],[2,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,2,2,0],[2,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,2,2,0],[2,3,3,2],[2,1,1,1]],[[0,1,2,0],[2,2,2,0],[3,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,2,0],[2,4,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,2,0],[2,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,2,2,1],[1,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[1,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[1,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,1],[1,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,1],[1,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,2,2,1],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,2,1],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,2,1],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,2,2,1],[1,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,2,2,1],[1,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,2,2,1],[1,2,3,2],[1,2,1,2]],[[0,1,2,0],[2,2,2,1],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,1],[1,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,2,2,1],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,2,1],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,2,1],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,2,2,1],[1,4,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,1,3],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,1],[1,3,1,2],[1,2,2,2]],[[0,1,2,0],[2,2,2,1],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,2,2,1],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,2,2,1],[1,3,2,3],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,2,2],[1,1,3,1]],[[0,1,2,0],[2,2,2,1],[1,3,2,2],[1,1,2,2]],[[0,1,2,0],[2,2,2,1],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,1],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,2,2,1],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,2,2,1],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[2,2,2,1],[1,4,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,0],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,0],[1,3,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,0],[1,2,3,1]],[[0,1,2,0],[2,2,2,1],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[2,2,2,1],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,2,1],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,2,2,1],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,2,2,1],[1,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,3],[1,1,1,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,2],[1,1,1,2]],[[0,1,2,0],[2,2,2,1],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,2,1],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,2,2,1],[1,3,3,3],[1,1,2,0]],[[0,1,2,0],[2,2,2,1],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[2,2,2,1],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,2,1],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,3],[1,2,0,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,2,2,1],[1,3,3,2],[1,2,0,2]],[[0,1,2,0],[2,2,2,1],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,2,1],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,2,2,1],[1,3,3,3],[1,2,1,0]],[[0,1,2,0],[2,2,2,1],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,2,2,1],[1,3,3,2],[1,3,1,0]],[[0,1,2,0],[3,2,2,1],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[3,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,1,2,3],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,1,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,1,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,1],[2,1,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,1],[2,1,2,2],[1,2,2,2]],[[0,1,2,0],[3,2,2,1],[2,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[3,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,2,1],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,2,1],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[2,2,2,1],[2,1,4,2],[1,2,1,1]],[[0,1,2,0],[2,2,2,1],[2,1,3,3],[1,2,1,1]],[[0,1,2,0],[2,2,2,1],[2,1,3,2],[1,2,1,2]],[[0,1,2,0],[3,2,2,1],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,1],[3,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,1,3,3],[1,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,2,1],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[3,2,2,1],[2,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[3,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,1,3],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,1,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,1,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,1,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,1],[2,2,1,2],[1,2,2,2]],[[0,1,2,0],[3,2,2,1],[2,2,2,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[3,2,2,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,2,1],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,2,1],[1,3,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,2,1],[1,2,3,1]],[[0,1,2,0],[2,2,2,1],[2,2,2,1],[1,2,2,2]],[[0,1,2,0],[2,2,2,1],[2,2,2,3],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,2,2],[0,3,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,2,2],[0,2,3,1]],[[0,1,2,0],[2,2,2,1],[2,2,2,2],[0,2,2,2]],[[0,1,2,0],[3,2,2,1],[2,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,1],[3,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,2,2,2],[2,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,2,2,2],[1,3,2,0]],[[0,1,2,0],[2,2,2,1],[2,2,2,2],[1,2,3,0]],[[0,1,2,0],[3,2,2,1],[2,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[3,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,0],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,0],[1,3,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,0],[1,2,3,1]],[[0,1,2,0],[2,2,2,1],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[3,2,2,1],[2,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,2,1],[3,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,1],[2,2,1,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,1],[1,3,1,1]],[[0,1,2,0],[2,2,2,1],[2,2,4,2],[0,2,1,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,3],[0,2,1,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,2],[0,2,1,2]],[[0,1,2,0],[2,2,2,1],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,2,3,3],[0,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[2,2,2,1],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[3,2,2,1],[2,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,2,1],[3,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,2],[2,2,0,1]],[[0,1,2,0],[2,2,2,1],[2,2,3,2],[1,3,0,1]],[[0,1,2,0],[3,2,2,1],[2,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,2,1],[3,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,2,1],[2,2,3,2],[2,2,1,0]],[[0,1,2,0],[2,2,2,1],[2,2,3,2],[1,3,1,0]],[[0,1,2,0],[2,2,2,1],[3,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,0,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,0,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,1],[3,3,1,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,1,1],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,1,1],[1,3,2,1]],[[0,1,2,0],[3,2,2,1],[2,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[3,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,4,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,1,3],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,1,2],[0,3,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,1,2],[0,2,3,1]],[[0,1,2,0],[2,2,2,1],[2,3,1,2],[0,2,2,2]],[[0,1,2,0],[3,2,2,1],[2,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[3,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[2,4,1,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,1,2],[2,1,2,1]],[[0,1,2,0],[2,2,2,1],[3,3,1,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,1,2],[2,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,1,2],[1,3,2,0]],[[0,1,2,0],[2,2,2,1],[3,3,2,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,2,0],[2,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,2,0],[1,3,2,1]],[[0,1,2,0],[3,2,2,1],[2,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[3,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[2,2,2,1],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[3,2,2,1],[2,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[3,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[2,4,2,1],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,2,1],[2,1,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,2,2,1],[2,3,2,2],[0,1,2,2]],[[0,1,2,0],[3,2,2,1],[2,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,2,1],[3,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[2,2,2,1],[2,3,2,3],[1,0,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,2,2],[1,0,3,1]],[[0,1,2,0],[2,2,2,1],[2,3,2,2],[1,0,2,2]],[[0,1,2,0],[3,2,2,1],[2,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,2,1],[3,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,2,1],[2,4,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,2,3,3],[0,3,1,2],[0,0,2,0]],[[1,2,2,2],[2,2,3,2],[0,3,1,2],[0,0,2,0]],[[1,2,3,1],[2,2,3,2],[0,3,1,2],[0,0,2,0]],[[1,3,2,1],[2,2,3,2],[0,3,1,2],[0,0,2,0]],[[2,2,2,1],[2,2,3,2],[0,3,1,2],[0,0,2,0]],[[1,2,2,1],[2,2,3,3],[0,3,1,2],[0,0,1,1]],[[1,2,2,2],[2,2,3,2],[0,3,1,2],[0,0,1,1]],[[0,1,2,0],[3,2,2,1],[2,3,3,0],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[3,3,3,0],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,4,3,0],[0,2,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,0],[0,3,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,0],[0,2,3,1]],[[0,1,2,0],[3,2,2,1],[2,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[3,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[2,4,3,0],[1,1,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,0],[2,1,2,1]],[[0,1,2,0],[3,2,2,1],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,2,1],[3,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,2,1],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,1],[0,1,2,2]],[[0,1,2,0],[3,2,2,1],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,2,1],[3,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,2,1],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,1],[0,3,1,1]],[[0,1,2,0],[3,2,2,1],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,2,1],[3,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,2,1],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,1],[2,0,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,1],[1,0,2,2]],[[0,1,2,0],[3,2,2,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,2,1],[3,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,2,1],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,4,1],[1,1,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,1],[2,1,1,1]],[[0,1,2,0],[3,2,2,1],[2,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,2,1],[3,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,2,1],[2,4,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,3,1],[2,2,3,2],[0,3,1,2],[0,0,1,1]],[[1,3,2,1],[2,2,3,2],[0,3,1,2],[0,0,1,1]],[[2,2,2,1],[2,2,3,2],[0,3,1,2],[0,0,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[0,0,2,2]],[[0,1,2,0],[3,2,2,1],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,2,1],[3,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,2,1],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[0,1,1,2]],[[0,1,2,0],[3,2,2,1],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,2,1],[3,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,2,1],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[3,2,2,1],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,2,1],[3,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,2,1],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,2,1],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[0,2,0,2]],[[0,1,2,0],[3,2,2,1],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,2,1],[3,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,2,1],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,2,1],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,2,2,1],[2,3,3,3],[0,2,1,0]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[0,3,1,0]],[[0,1,2,0],[3,2,2,1],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,2,1],[3,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,2,1],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,3],[1,0,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[2,0,1,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[1,0,1,2]],[[0,1,2,0],[3,2,2,1],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,2,1],[3,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,2,1],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,3,3],[1,0,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[2,0,2,0]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[1,0,3,0]],[[0,1,2,0],[3,2,2,1],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,2,1],[3,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,2,1],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,2,1],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,3],[1,1,0,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[2,1,0,1]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[1,1,0,2]],[[0,1,2,0],[3,2,2,1],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,2,1],[3,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,2,1],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,2,1],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[2,2,2,1],[2,3,3,3],[1,1,1,0]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[2,1,1,0]],[[0,1,2,0],[3,2,2,1],[2,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,2,2,1],[3,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,2,2,1],[2,4,3,2],[1,2,0,0]],[[0,1,2,0],[2,2,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[3,2,3,2],[0,3,1,0],[1,2,1,0]],[[1,2,2,2],[2,2,3,2],[0,3,1,0],[1,2,1,0]],[[1,2,3,1],[2,2,3,2],[0,3,1,0],[1,2,1,0]],[[1,3,2,1],[2,2,3,2],[0,3,1,0],[1,2,1,0]],[[2,2,2,1],[2,2,3,2],[0,3,1,0],[1,2,1,0]],[[1,2,2,1],[3,2,3,2],[0,3,1,0],[1,2,0,1]],[[1,2,2,2],[2,2,3,2],[0,3,1,0],[1,2,0,1]],[[1,2,3,1],[2,2,3,2],[0,3,1,0],[1,2,0,1]],[[1,3,2,1],[2,2,3,2],[0,3,1,0],[1,2,0,1]],[[2,2,2,1],[2,2,3,2],[0,3,1,0],[1,2,0,1]],[[1,2,2,1],[2,2,4,2],[0,3,1,0],[0,2,2,0]],[[1,2,2,2],[2,2,3,2],[0,3,1,0],[0,2,2,0]],[[1,2,3,1],[2,2,3,2],[0,3,1,0],[0,2,2,0]],[[0,1,2,0],[2,2,2,3],[0,1,3,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,1,3,3],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,1,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[0,1,3,2],[1,2,2,2]],[[0,1,2,0],[2,2,2,3],[0,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[0,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[0,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,2,2,2],[0,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[0,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[0,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,2,2,3],[0,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[0,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[0,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[0,2,3,2],[1,2,1,2]],[[0,1,2,0],[2,2,2,3],[0,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[0,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[0,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[0,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,2,2],[0,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,2,2],[0,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,2,2,3],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,4,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,1,3],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[0,3,1,2],[1,2,2,2]],[[0,1,2,0],[2,2,2,2],[0,4,2,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[0,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,2,2,3],[0,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,2,3],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,2,2],[1,1,3,1]],[[0,1,2,0],[2,2,2,2],[0,3,2,2],[1,1,2,2]],[[0,1,2,0],[2,2,2,2],[0,4,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[0,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,2,2,2],[0,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,2,2,2],[0,3,2,2],[1,2,3,0]],[[0,1,2,0],[2,2,2,2],[0,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,1],[1,1,2,2]],[[0,1,2,0],[2,2,2,2],[0,4,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[0,3,4,1],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,2,2,3],[0,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,3],[1,0,2,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,2],[1,0,2,2]],[[0,1,2,0],[2,2,2,3],[0,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,2,2,2],[0,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,2,2,2],[0,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,3],[1,1,1,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,2],[1,1,1,2]],[[0,1,2,0],[2,2,2,3],[0,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,2,2],[0,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,2,2],[0,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,2,2,2],[0,3,3,3],[1,1,2,0]],[[0,1,2,0],[2,2,2,2],[0,3,3,2],[1,1,3,0]],[[0,1,2,0],[2,2,2,3],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,2,2],[0,4,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,2,2],[0,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,3],[1,2,0,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,2,2,2],[0,3,3,2],[1,2,0,2]],[[0,1,2,0],[2,2,2,3],[0,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,2,2],[0,4,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,2,2],[0,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,2,2,2],[0,3,3,3],[1,2,1,0]],[[0,1,2,0],[2,2,2,2],[0,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,3,2,1],[2,2,3,2],[0,3,1,0],[0,2,2,0]],[[2,2,2,1],[2,2,3,2],[0,3,1,0],[0,2,2,0]],[[0,1,2,0],[2,2,2,3],[1,1,3,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,1,3,3],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,1,3,2],[0,2,3,1]],[[0,1,2,0],[2,2,2,2],[1,1,3,2],[0,2,2,2]],[[0,1,2,0],[2,2,2,3],[1,2,2,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,2,2,3],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,2,2,2],[0,3,2,1]],[[0,1,2,0],[2,2,2,2],[1,2,2,2],[0,2,3,1]],[[0,1,2,0],[2,2,2,2],[1,2,2,2],[0,2,2,2]],[[0,1,2,0],[2,2,2,2],[1,2,4,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,2,3,0],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,2,3,0],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[1,2,3,0],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[1,2,3,0],[1,2,2,2]],[[0,1,2,0],[2,2,2,2],[1,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,2,3,1],[0,3,2,1]],[[0,1,2,0],[2,2,2,2],[1,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,2,2,2],[1,2,3,1],[0,2,2,2]],[[0,1,2,0],[2,2,2,2],[1,2,4,1],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[1,2,3,1],[2,2,2,0]],[[0,1,2,0],[2,2,2,2],[1,2,3,1],[1,3,2,0]],[[0,1,2,0],[2,2,2,2],[1,2,3,1],[1,2,3,0]],[[0,1,2,0],[2,2,2,3],[1,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,2,2,2],[1,2,4,2],[0,2,1,1]],[[0,1,2,0],[2,2,2,2],[1,2,3,3],[0,2,1,1]],[[0,1,2,0],[2,2,2,2],[1,2,3,2],[0,2,1,2]],[[0,1,2,0],[2,2,2,3],[1,2,3,2],[0,2,2,0]],[[0,1,2,0],[2,2,2,2],[1,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,2,2,2],[1,2,3,3],[0,2,2,0]],[[0,1,2,0],[2,2,2,2],[1,2,3,2],[0,3,2,0]],[[0,1,2,0],[2,2,2,2],[1,2,3,2],[0,2,3,0]],[[0,1,2,0],[2,2,2,3],[1,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,4,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,0,3],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,0,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,0,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,0,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[1,3,0,2],[1,2,2,2]],[[0,1,2,0],[2,2,2,3],[1,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,4,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,1,3],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,1,2],[0,3,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,1,2],[0,2,3,1]],[[0,1,2,0],[2,2,2,2],[1,3,1,2],[0,2,2,2]],[[0,1,2,0],[2,2,2,2],[1,4,2,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,0],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,0],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,0],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,0],[1,2,2,2]],[[0,1,2,0],[2,2,2,2],[1,4,2,1],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,1],[0,3,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,1],[0,2,3,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,1],[0,2,2,2]],[[0,1,2,0],[2,2,2,2],[1,4,2,1],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,2,1],[2,2,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,2,1],[1,3,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,2,1],[1,2,3,0]],[[0,1,2,0],[2,2,2,3],[1,3,2,2],[0,1,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,2],[0,1,2,2]],[[0,1,2,0],[2,2,2,2],[1,4,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,2,2],[0,3,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,2,2],[0,2,3,0]],[[0,1,2,0],[2,2,2,3],[1,3,2,2],[1,0,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,3],[1,0,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,2],[1,0,3,1]],[[0,1,2,0],[2,2,2,2],[1,3,2,2],[1,0,2,2]],[[0,1,2,0],[2,2,2,2],[1,4,3,0],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,4,0],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,0],[1,1,3,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,0],[1,1,2,2]],[[0,1,2,0],[2,2,2,2],[1,4,3,0],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[1,3,4,0],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,0],[2,2,1,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,0],[1,3,1,1]],[[0,1,2,0],[2,2,2,2],[1,4,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,1],[0,1,2,2]],[[0,1,2,0],[2,2,2,2],[1,4,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,2,2],[1,3,4,1],[0,2,1,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,1],[0,3,1,1]],[[0,1,2,0],[2,2,2,2],[1,4,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,4,1],[1,0,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,1],[1,0,3,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,1],[1,0,2,2]],[[0,1,2,0],[2,2,2,2],[1,4,3,1],[1,1,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,4,1],[1,1,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,3,1],[1,1,3,0]],[[0,1,2,0],[2,2,2,2],[1,4,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,2,2],[1,3,4,1],[1,2,0,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,1],[2,2,0,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,1],[1,3,0,1]],[[0,1,2,0],[2,2,2,2],[1,4,3,1],[1,2,1,0]],[[0,1,2,0],[2,2,2,2],[1,3,4,1],[1,2,1,0]],[[0,1,2,0],[2,2,2,2],[1,3,3,1],[2,2,1,0]],[[0,1,2,0],[2,2,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,3,3],[0,3,0,2],[1,1,1,0]],[[1,2,2,2],[2,2,3,2],[0,3,0,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[0,3,0,2],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[0,3,0,2],[1,1,1,0]],[[0,1,2,0],[2,2,2,3],[1,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,2],[0,0,2,2]],[[0,1,2,0],[2,2,2,3],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,2,2],[1,4,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,2,2],[1,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,2],[0,1,1,2]],[[0,1,2,0],[2,2,2,3],[1,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,2,2],[1,4,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,3,2],[0,1,3,0]],[[0,1,2,0],[2,2,2,3],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,2,2],[1,4,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,2,2],[1,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,2],[0,3,0,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,2],[0,2,0,2]],[[0,1,2,0],[2,2,2,3],[1,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,2,2],[1,4,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,2,2],[1,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,2,2,2],[1,3,3,3],[0,2,1,0]],[[0,1,2,0],[2,2,2,2],[1,3,3,2],[0,3,1,0]],[[2,2,2,1],[2,2,3,2],[0,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,2,3,3],[0,3,0,2],[1,1,0,1]],[[1,2,2,2],[2,2,3,2],[0,3,0,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[0,3,0,2],[1,1,0,1]],[[1,3,2,1],[2,2,3,2],[0,3,0,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,2],[0,3,0,2],[1,1,0,1]],[[0,1,2,0],[2,2,2,3],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,2,2],[1,4,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,2,2],[1,3,4,2],[1,0,1,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,3],[1,0,1,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,2],[1,0,1,2]],[[0,1,2,0],[2,2,2,3],[1,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,2,2],[1,4,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,3,3],[1,0,2,0]],[[0,1,2,0],[2,2,2,2],[1,3,3,2],[1,0,3,0]],[[0,1,2,0],[2,2,2,3],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,2,2],[1,4,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,2,2],[1,3,4,2],[1,1,0,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,3],[1,1,0,1]],[[0,1,2,0],[2,2,2,2],[1,3,3,2],[1,1,0,2]],[[0,1,2,0],[2,2,2,3],[1,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,2,2],[1,4,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,2,2],[1,3,4,2],[1,1,1,0]],[[0,1,2,0],[2,2,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,2,3,3],[0,3,0,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[0,3,0,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[0,3,0,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,2],[0,3,0,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,2],[0,3,0,2],[1,0,2,0]],[[1,2,2,1],[2,2,3,3],[0,3,0,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,2],[0,3,0,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[0,3,0,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,2],[0,3,0,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,2],[0,3,0,2],[1,0,1,1]],[[0,1,2,0],[3,2,2,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,3],[2,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[3,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,0,2,3],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,0,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,0,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[2,0,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[2,0,2,2],[1,2,2,2]],[[0,1,2,0],[3,2,2,2],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[3,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,0,4,1],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,0,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,0,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[2,0,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[2,0,3,1],[1,2,2,2]],[[0,1,2,0],[2,2,2,3],[2,0,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[2,0,4,2],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[2,0,3,3],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[2,0,3,2],[1,2,1,2]],[[0,1,2,0],[3,2,2,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,3],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[3,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,0,4,2],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,0,3,3],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,0,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,0,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,2,2],[2,0,3,2],[1,2,3,0]],[[0,1,2,0],[3,2,2,2],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[3,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,1,4,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,1,3,0],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,1,3,0],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[2,1,3,0],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[2,1,3,0],[1,2,2,2]],[[0,1,2,0],[3,2,2,2],[2,1,3,1],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[3,1,3,1],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,1,4,1],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,1,3,1],[2,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,1,3,1],[1,3,2,0]],[[0,1,2,0],[2,2,2,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,2,3,3],[0,3,0,2],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[0,3,0,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,2],[0,3,0,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[0,3,0,2],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[0,3,0,2],[0,2,1,0]],[[0,1,2,0],[3,2,2,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,3],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[3,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,2,0,3],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,2,0,2],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,2,0,2],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[2,2,0,2],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[2,2,0,2],[1,2,2,2]],[[0,1,2,0],[3,2,2,2],[2,2,2,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[3,2,2,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,2,2,0],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,2,2,0],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[2,2,2,0],[1,2,3,1]],[[0,1,2,0],[2,2,2,2],[2,2,2,0],[1,2,2,2]],[[0,1,2,0],[3,2,2,2],[2,2,2,1],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[3,2,2,1],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,2,2,1],[2,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,2,2,1],[1,3,2,0]],[[0,1,2,0],[2,2,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[2,2,3,3],[0,3,0,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[0,3,0,2],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[0,3,0,2],[0,2,0,1]],[[1,3,2,1],[2,2,3,2],[0,3,0,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[0,3,0,2],[0,2,0,1]],[[0,1,2,0],[2,2,2,2],[2,2,4,0],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,2,3,0],[0,3,2,1]],[[0,1,2,0],[2,2,2,2],[2,2,3,0],[0,2,3,1]],[[0,1,2,0],[2,2,2,2],[2,2,3,0],[0,2,2,2]],[[0,1,2,0],[3,2,2,2],[2,2,3,0],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[3,2,3,0],[1,2,1,1]],[[0,1,2,0],[2,2,2,2],[2,2,3,0],[2,2,1,1]],[[0,1,2,0],[2,2,2,2],[2,2,3,0],[1,3,1,1]],[[0,1,2,0],[2,2,2,2],[2,2,4,1],[0,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,2,3,1],[0,3,2,0]],[[0,1,2,0],[2,2,2,2],[2,2,3,1],[0,2,3,0]],[[0,1,2,0],[3,2,2,2],[2,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,2,2],[3,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,2,2],[2,2,3,1],[2,2,0,1]],[[0,1,2,0],[2,2,2,2],[2,2,3,1],[1,3,0,1]],[[0,1,2,0],[3,2,2,2],[2,2,3,1],[1,2,1,0]],[[0,1,2,0],[2,2,2,2],[3,2,3,1],[1,2,1,0]],[[0,1,2,0],[2,2,2,2],[2,2,3,1],[2,2,1,0]],[[0,1,2,0],[2,2,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,3,3],[0,3,0,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[0,3,0,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,2],[0,3,0,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,2],[0,3,0,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,2],[0,3,0,2],[0,1,2,0]],[[1,2,2,1],[2,2,3,3],[0,3,0,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,2],[0,3,0,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,2],[0,3,0,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,2],[0,3,0,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,2],[0,3,0,2],[0,1,1,1]],[[1,2,2,1],[3,2,3,2],[0,3,0,1],[1,2,1,0]],[[1,2,2,2],[2,2,3,2],[0,3,0,1],[1,2,1,0]],[[1,2,3,1],[2,2,3,2],[0,3,0,1],[1,2,1,0]],[[1,3,2,1],[2,2,3,2],[0,3,0,1],[1,2,1,0]],[[2,2,2,1],[2,2,3,2],[0,3,0,1],[1,2,1,0]],[[1,2,2,1],[3,2,3,2],[0,3,0,1],[1,2,0,1]],[[1,2,2,2],[2,2,3,2],[0,3,0,1],[1,2,0,1]],[[1,2,3,1],[2,2,3,2],[0,3,0,1],[1,2,0,1]],[[1,3,2,1],[2,2,3,2],[0,3,0,1],[1,2,0,1]],[[2,2,2,1],[2,2,3,2],[0,3,0,1],[1,2,0,1]],[[0,1,2,0],[3,2,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,3],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[3,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,4,0,2],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,0,3],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,0,2],[0,3,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,0,2],[0,2,3,1]],[[0,1,2,0],[2,2,2,2],[2,3,0,2],[0,2,2,2]],[[0,1,2,0],[3,2,2,2],[2,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[3,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[2,4,0,2],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,0,2],[2,1,2,1]],[[0,1,2,0],[2,2,2,2],[3,3,1,0],[1,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,1,0],[2,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,1,0],[1,3,2,1]],[[0,1,2,0],[2,2,2,2],[3,3,1,1],[1,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,3,1,1],[2,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,3,1,1],[1,3,2,0]],[[0,1,2,0],[3,2,2,2],[2,3,2,0],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[3,3,2,0],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,4,2,0],[0,2,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,2,0],[0,3,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,2,0],[0,2,3,1]],[[0,1,2,0],[2,2,2,2],[2,3,2,0],[0,2,2,2]],[[0,1,2,0],[3,2,2,2],[2,3,2,0],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[3,3,2,0],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[2,4,2,0],[1,1,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,2,0],[2,1,2,1]],[[0,1,2,0],[3,2,2,2],[2,3,2,1],[0,2,2,0]],[[0,1,2,0],[2,2,2,2],[3,3,2,1],[0,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,4,2,1],[0,2,2,0]],[[0,1,2,0],[2,2,2,2],[2,3,2,1],[0,3,2,0]],[[0,1,2,0],[2,2,2,2],[2,3,2,1],[0,2,3,0]],[[0,1,2,0],[3,2,2,2],[2,3,2,1],[1,1,2,0]],[[0,1,2,0],[2,2,2,2],[3,3,2,1],[1,1,2,0]],[[0,1,2,0],[2,2,2,2],[2,4,2,1],[1,1,2,0]],[[0,1,2,0],[2,2,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[3,2,3,2],[0,3,0,0],[1,2,2,0]],[[1,2,2,2],[2,2,3,2],[0,3,0,0],[1,2,2,0]],[[1,2,3,1],[2,2,3,2],[0,3,0,0],[1,2,2,0]],[[1,3,2,1],[2,2,3,2],[0,3,0,0],[1,2,2,0]],[[2,2,2,1],[2,2,3,2],[0,3,0,0],[1,2,2,0]],[[0,1,2,0],[3,2,2,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,2,2,2],[3,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,2,2,2],[2,4,3,0],[0,1,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,4,0],[0,1,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,3,0],[0,1,3,1]],[[0,1,2,0],[2,2,2,2],[2,3,3,0],[0,1,2,2]],[[0,1,2,0],[3,2,2,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,2,2,2],[3,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,2,2,2],[2,4,3,0],[0,2,1,1]],[[0,1,2,0],[2,2,2,2],[2,3,4,0],[0,2,1,1]],[[0,1,2,0],[2,2,2,2],[2,3,3,0],[0,3,1,1]],[[0,1,2,0],[3,2,2,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,0],[2,2,2,2],[3,3,3,0],[1,0,2,1]],[[0,1,2,0],[2,2,2,2],[2,4,3,0],[1,0,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,4,0],[1,0,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,3,0],[2,0,2,1]],[[0,1,2,0],[2,2,2,2],[2,3,3,0],[1,0,3,1]],[[0,1,2,0],[2,2,2,2],[2,3,3,0],[1,0,2,2]],[[0,1,2,0],[3,2,2,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,0],[2,2,2,2],[3,3,3,0],[1,1,1,1]],[[0,1,2,0],[2,2,2,2],[2,4,3,0],[1,1,1,1]],[[0,1,2,0],[2,2,2,2],[2,3,4,0],[1,1,1,1]],[[0,1,2,0],[2,2,2,2],[2,3,3,0],[2,1,1,1]],[[0,1,2,0],[3,2,2,2],[2,3,3,0],[1,2,0,1]],[[0,1,2,0],[2,2,2,2],[3,3,3,0],[1,2,0,1]],[[0,1,2,0],[2,2,2,2],[2,4,3,0],[1,2,0,1]],[[0,1,2,0],[2,2,2,2],[2,3,3,0],[2,2,0,1]],[[0,1,2,0],[3,2,2,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,2,2,2],[3,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,2,2,2],[2,4,3,1],[0,1,1,1]],[[0,1,2,0],[2,2,2,2],[2,3,4,1],[0,1,1,1]],[[0,1,2,0],[3,2,2,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,2,2,2],[3,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,2,2,2],[2,4,3,1],[0,1,2,0]],[[0,1,2,0],[2,2,2,2],[2,3,4,1],[0,1,2,0]],[[0,1,2,0],[2,2,2,2],[2,3,3,1],[0,1,3,0]],[[0,1,2,0],[3,2,2,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,2,2,2],[3,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,2,2,2],[2,4,3,1],[0,2,0,1]],[[0,1,2,0],[2,2,2,2],[2,3,4,1],[0,2,0,1]],[[0,1,2,0],[2,2,2,2],[2,3,3,1],[0,3,0,1]],[[0,1,2,0],[3,2,2,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,2,2,2],[3,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,2,2,2],[2,4,3,1],[0,2,1,0]],[[0,1,2,0],[2,2,2,2],[2,3,4,1],[0,2,1,0]],[[0,1,2,0],[2,2,2,2],[2,3,3,1],[0,3,1,0]],[[0,1,2,0],[3,2,2,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,2,2,2],[3,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,2,2,2],[2,4,3,1],[1,0,1,1]],[[0,1,2,0],[2,2,2,2],[2,3,4,1],[1,0,1,1]],[[0,1,2,0],[2,2,2,2],[2,3,3,1],[2,0,1,1]],[[0,1,2,0],[3,2,2,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,0],[2,2,2,2],[3,3,3,1],[1,0,2,0]],[[0,1,2,0],[2,2,2,2],[2,4,3,1],[1,0,2,0]],[[0,1,2,0],[2,2,2,2],[2,3,4,1],[1,0,2,0]],[[0,1,2,0],[2,2,2,2],[2,3,3,1],[2,0,2,0]],[[0,1,2,0],[2,2,2,2],[2,3,3,1],[1,0,3,0]],[[0,1,2,0],[3,2,2,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,0],[2,2,2,2],[3,3,3,1],[1,1,0,1]],[[0,1,2,0],[2,2,2,2],[2,4,3,1],[1,1,0,1]],[[0,1,2,0],[2,2,2,2],[2,3,4,1],[1,1,0,1]],[[0,1,2,0],[2,2,2,2],[2,3,3,1],[2,1,0,1]],[[0,1,2,0],[3,2,2,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,0],[2,2,2,2],[3,3,3,1],[1,1,1,0]],[[0,1,2,0],[2,2,2,2],[2,4,3,1],[1,1,1,0]],[[0,1,2,0],[2,2,2,2],[2,3,4,1],[1,1,1,0]],[[0,1,2,0],[2,2,2,2],[2,3,3,1],[2,1,1,0]],[[0,1,2,0],[3,2,2,2],[2,3,3,1],[1,2,0,0]],[[0,1,2,0],[2,2,2,2],[3,3,3,1],[1,2,0,0]],[[0,1,2,0],[2,2,2,2],[2,4,3,1],[1,2,0,0]],[[0,1,2,0],[2,2,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,2,4,2],[0,2,3,0],[1,1,1,0]],[[1,2,2,2],[2,2,3,2],[0,2,3,0],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[0,2,3,0],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[0,2,3,0],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[0,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,2,4,2],[0,2,3,0],[1,1,0,1]],[[1,2,2,2],[2,2,3,2],[0,2,3,0],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[0,2,3,0],[1,1,0,1]],[[1,3,2,1],[2,2,3,2],[0,2,3,0],[1,1,0,1]],[[2,2,2,1],[2,2,3,2],[0,2,3,0],[1,1,0,1]],[[1,2,2,1],[2,2,4,2],[0,2,3,0],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[0,2,3,0],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[0,2,3,0],[1,0,2,0]],[[1,3,2,1],[2,2,3,2],[0,2,3,0],[1,0,2,0]],[[2,2,2,1],[2,2,3,2],[0,2,3,0],[1,0,2,0]],[[1,2,2,1],[2,2,4,2],[0,2,3,0],[1,0,1,1]],[[1,2,2,2],[2,2,3,2],[0,2,3,0],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[0,2,3,0],[1,0,1,1]],[[1,3,2,1],[2,2,3,2],[0,2,3,0],[1,0,1,1]],[[2,2,2,1],[2,2,3,2],[0,2,3,0],[1,0,1,1]],[[1,2,2,1],[2,2,4,2],[0,2,3,0],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[0,2,3,0],[0,2,1,0]],[[1,2,3,1],[2,2,3,2],[0,2,3,0],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[0,2,3,0],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[0,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,2,4,2],[0,2,3,0],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[0,2,3,0],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[0,2,3,0],[0,2,0,1]],[[1,3,2,1],[2,2,3,2],[0,2,3,0],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[0,2,3,0],[0,2,0,1]],[[1,2,2,1],[2,2,4,2],[0,2,3,0],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[0,2,3,0],[0,1,2,0]],[[1,2,3,1],[2,2,3,2],[0,2,3,0],[0,1,2,0]],[[1,3,2,1],[2,2,3,2],[0,2,3,0],[0,1,2,0]],[[2,2,2,1],[2,2,3,2],[0,2,3,0],[0,1,2,0]],[[1,2,2,1],[2,2,4,2],[0,2,3,0],[0,1,1,1]],[[1,2,2,2],[2,2,3,2],[0,2,3,0],[0,1,1,1]],[[1,2,3,1],[2,2,3,2],[0,2,3,0],[0,1,1,1]],[[1,3,2,1],[2,2,3,2],[0,2,3,0],[0,1,1,1]],[[2,2,2,1],[2,2,3,2],[0,2,3,0],[0,1,1,1]],[[1,2,2,1],[2,2,4,2],[0,2,3,0],[0,0,2,1]],[[1,2,2,2],[2,2,3,2],[0,2,3,0],[0,0,2,1]],[[1,2,3,1],[2,2,3,2],[0,2,3,0],[0,0,2,1]],[[1,3,2,1],[2,2,3,2],[0,2,3,0],[0,0,2,1]],[[2,2,2,1],[2,2,3,2],[0,2,3,0],[0,0,2,1]],[[0,1,2,0],[2,2,3,0],[0,2,4,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[0,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,0],[0,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,0],[0,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,0],[0,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,2,3,0],[0,4,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[0,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,0],[0,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,0],[0,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,0],[0,3,2,2],[1,2,2,2]],[[0,1,2,0],[2,2,3,0],[0,4,3,2],[1,1,2,1]],[[0,1,2,0],[2,2,3,0],[0,3,4,2],[1,1,2,1]],[[0,1,2,0],[2,2,3,0],[0,3,3,2],[1,1,3,1]],[[0,1,2,0],[2,2,3,0],[0,3,3,2],[1,1,2,2]],[[0,1,2,0],[2,2,3,0],[0,4,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,0],[0,3,4,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,0],[0,3,3,2],[2,2,1,1]],[[0,1,2,0],[2,2,3,0],[0,3,3,2],[1,3,1,1]],[[0,1,2,0],[2,2,3,0],[1,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[1,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,0],[1,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,0],[1,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,3,0],[1,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,2,3,0],[1,2,4,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,0],[1,2,3,2],[0,3,2,1]],[[0,1,2,0],[2,2,3,0],[1,2,3,2],[0,2,3,1]],[[0,1,2,0],[2,2,3,0],[1,2,3,2],[0,2,2,2]],[[0,1,2,0],[2,2,3,0],[1,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,0],[1,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,0],[1,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,0],[1,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,2,3,0],[1,4,2,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,2,3,0],[1,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,2,3,0],[1,4,2,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,2,2],[0,3,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,2,2],[0,2,3,1]],[[0,1,2,0],[2,2,3,0],[1,3,2,2],[0,2,2,2]],[[0,1,2,0],[2,2,3,0],[1,4,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,0],[1,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,0],[1,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,0],[1,3,2,2],[1,2,3,0]],[[0,1,2,0],[2,2,3,0],[1,4,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,0],[2,2,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,0],[1,3,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,0],[1,2,3,1]],[[0,1,2,0],[2,2,3,0],[1,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,1],[1,1,2,2]],[[0,1,2,0],[2,2,3,0],[1,4,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,0],[1,3,4,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,2,3,0],[1,4,3,2],[0,1,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,4,2],[0,1,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,2],[0,1,3,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,2],[0,1,2,2]],[[0,1,2,0],[2,2,3,0],[1,4,3,2],[0,2,1,1]],[[0,1,2,0],[2,2,3,0],[1,3,4,2],[0,2,1,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,2],[0,3,1,1]],[[0,1,2,0],[2,2,3,0],[1,4,3,2],[1,0,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,2],[1,0,3,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,2],[1,0,2,2]],[[0,1,2,0],[2,2,3,0],[1,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,0],[1,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,0],[1,3,3,2],[1,1,3,0]],[[0,1,2,0],[2,2,3,0],[1,4,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,0],[1,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,2,3,0],[1,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,2,3,0],[1,4,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,0],[1,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,0],[1,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,2,3,0],[1,3,3,2],[1,3,1,0]],[[0,1,2,0],[3,2,3,0],[2,0,3,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[3,0,3,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,0,4,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,0,3,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,0,3,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,0],[2,0,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,0],[2,0,3,2],[1,2,2,2]],[[0,1,2,0],[3,2,3,0],[2,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[3,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,1,4,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,1,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,1,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,0],[2,1,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,3,0],[2,1,3,1],[1,2,2,2]],[[0,1,2,0],[3,2,3,0],[2,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,0],[3,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,0],[2,1,4,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,0],[2,1,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,0],[2,1,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,0],[2,1,3,2],[1,2,3,0]],[[0,1,2,0],[3,2,3,0],[2,2,2,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[3,2,2,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,2,2,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,2,2,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,0],[2,2,2,1],[1,2,3,1]],[[0,1,2,0],[2,2,3,0],[2,2,2,1],[1,2,2,2]],[[0,1,2,0],[3,2,3,0],[2,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,0],[3,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,0],[2,2,2,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,0],[2,2,2,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,0],[2,2,2,2],[1,2,3,0]],[[0,1,2,0],[3,2,3,0],[2,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[3,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,2,3,0],[2,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,2,3,0],[1,3,2,1]],[[0,1,2,0],[2,2,3,0],[2,2,3,0],[1,2,3,1]],[[0,1,2,0],[2,2,3,0],[2,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,2,3,1],[0,3,2,1]],[[0,1,2,0],[2,2,3,0],[2,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,2,3,0],[2,2,3,1],[0,2,2,2]],[[0,1,2,0],[3,2,3,0],[2,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,0],[3,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,0],[2,2,3,1],[2,2,1,1]],[[0,1,2,0],[2,2,3,0],[2,2,3,1],[1,3,1,1]],[[0,1,2,0],[2,2,3,0],[2,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,0],[2,2,3,2],[0,3,2,0]],[[0,1,2,0],[2,2,3,0],[2,2,3,2],[0,2,3,0]],[[0,1,2,0],[3,2,3,0],[2,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,0],[3,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,0],[2,2,3,2],[2,2,0,1]],[[0,1,2,0],[2,2,3,0],[2,2,3,2],[1,3,0,1]],[[0,1,2,0],[3,2,3,0],[2,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,0],[3,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,0],[2,2,3,2],[2,2,1,0]],[[0,1,2,0],[2,2,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,3,3],[0,2,2,2],[1,0,0,1]],[[0,1,2,0],[2,2,3,0],[3,3,1,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,1,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,1,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,0],[3,3,1,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,0],[2,3,1,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,0],[2,3,1,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,0],[3,3,2,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,2,0],[2,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,2,0],[1,3,2,1]],[[0,1,2,0],[3,2,3,0],[2,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,0],[3,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,4,2,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,2,1],[0,3,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,2,1],[0,2,3,1]],[[0,1,2,0],[2,2,3,0],[2,3,2,1],[0,2,2,2]],[[0,1,2,0],[3,2,3,0],[2,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,0],[3,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,0],[2,4,2,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,2,1],[2,1,2,1]],[[0,1,2,0],[3,2,3,0],[2,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,0],[3,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,0],[2,4,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,0],[2,3,2,2],[0,3,2,0]],[[0,1,2,0],[2,2,3,0],[2,3,2,2],[0,2,3,0]],[[0,1,2,0],[3,2,3,0],[2,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,0],[3,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,0],[2,4,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,2],[2,2,3,2],[0,2,2,2],[1,0,0,1]],[[1,2,3,1],[2,2,3,2],[0,2,2,2],[1,0,0,1]],[[1,3,2,1],[2,2,3,2],[0,2,2,2],[1,0,0,1]],[[2,2,2,1],[2,2,3,2],[0,2,2,2],[1,0,0,1]],[[0,1,2,0],[3,2,3,0],[2,3,3,0],[0,2,2,1]],[[0,1,2,0],[2,2,3,0],[3,3,3,0],[0,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,4,3,0],[0,2,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,0],[0,3,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,0],[0,2,3,1]],[[0,1,2,0],[3,2,3,0],[2,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,2,3,0],[3,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,2,3,0],[2,4,3,0],[1,1,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,0],[2,1,2,1]],[[0,1,2,0],[3,2,3,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,3,0],[3,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,3,0],[2,4,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,1],[0,1,2,2]],[[0,1,2,0],[3,2,3,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,0],[3,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,0],[2,4,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,0],[2,3,4,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,1],[0,3,1,1]],[[0,1,2,0],[3,2,3,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,0],[3,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,0],[2,4,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,4,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,1],[2,0,2,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,1],[1,0,3,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,1],[1,0,2,2]],[[0,1,2,0],[3,2,3,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,0],[3,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,0],[2,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,0],[2,3,4,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,1],[2,1,1,1]],[[0,1,2,0],[3,2,3,0],[2,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,0],[3,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,0],[2,4,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,1],[2,2,0,1]],[[0,1,2,0],[3,2,3,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,0],[3,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,0],[2,4,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,0],[2,3,4,2],[0,1,1,1]],[[0,1,2,0],[3,2,3,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,0],[3,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,0],[2,4,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,0],[2,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,0],[2,3,3,2],[0,1,3,0]],[[0,1,2,0],[3,2,3,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,0],[3,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,0],[2,4,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,0],[2,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,2],[0,3,0,1]],[[0,1,2,0],[3,2,3,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,0],[3,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,0],[2,4,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,0],[2,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,0],[2,3,3,2],[0,3,1,0]],[[0,1,2,0],[3,2,3,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,0],[3,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,0],[2,4,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,0],[2,3,4,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,2],[2,0,1,1]],[[0,1,2,0],[3,2,3,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,0],[3,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,0],[2,4,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,0],[2,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,0],[2,3,3,2],[2,0,2,0]],[[0,1,2,0],[2,2,3,0],[2,3,3,2],[1,0,3,0]],[[0,1,2,0],[3,2,3,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,0],[3,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,0],[2,4,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,0],[2,3,4,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,0],[2,3,3,2],[2,1,0,1]],[[0,1,2,0],[3,2,3,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,0],[3,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,0],[2,4,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,0],[2,3,4,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,0],[2,3,3,2],[2,1,1,0]],[[0,1,2,0],[3,2,3,0],[2,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,2,3,0],[3,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,2,3,0],[2,4,3,2],[1,2,0,0]],[[0,1,2,0],[2,2,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,2,3,3],[0,2,2,2],[0,1,0,1]],[[1,2,2,2],[2,2,3,2],[0,2,2,2],[0,1,0,1]],[[1,2,3,1],[2,2,3,2],[0,2,2,2],[0,1,0,1]],[[1,3,2,1],[2,2,3,2],[0,2,2,2],[0,1,0,1]],[[2,2,2,1],[2,2,3,2],[0,2,2,2],[0,1,0,1]],[[0,1,2,0],[2,2,3,1],[0,1,3,3],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,1,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,1],[0,1,3,2],[1,2,2,2]],[[0,1,2,0],[2,2,3,1],[0,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,1],[0,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,1],[0,2,2,2],[1,2,2,2]],[[0,1,3,0],[2,2,3,1],[0,2,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,4,1],[0,2,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,1],[0,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,3,1],[0,2,3,1],[1,2,2,2]],[[0,1,3,0],[2,2,3,1],[0,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,4,1],[0,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[0,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[0,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[0,2,3,2],[1,2,1,2]],[[0,1,3,0],[2,2,3,1],[0,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,4,1],[0,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[0,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[0,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[0,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,1],[0,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,1],[0,2,3,2],[1,2,3,0]],[[0,1,2,0],[2,2,3,1],[0,4,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,1,3],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,1],[0,3,1,2],[1,2,2,2]],[[0,1,2,0],[2,2,3,1],[0,4,2,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,2,3,1],[0,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,2,3,1],[0,3,2,3],[1,1,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,2,2],[1,1,3,1]],[[0,1,2,0],[2,2,3,1],[0,3,2,2],[1,1,2,2]],[[0,1,2,0],[2,2,3,1],[0,4,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[0,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,1],[0,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,1],[0,3,2,2],[1,2,3,0]],[[0,1,2,0],[2,2,3,1],[0,4,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,0],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,0],[1,3,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,0],[1,2,3,1]],[[0,1,3,0],[2,2,3,1],[0,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,2,4,1],[0,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,1],[0,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,1],[1,1,2,2]],[[0,1,3,0],[2,2,3,1],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,4,1],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[0,4,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[0,3,4,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,1],[1,3,1,1]],[[0,1,3,0],[2,2,3,1],[0,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,2,4,1],[0,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,3],[1,0,2,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,2],[1,0,2,2]],[[0,1,3,0],[2,2,3,1],[0,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,2,4,1],[0,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,2,3,1],[0,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,2,3,1],[0,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,3],[1,1,1,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,2],[1,1,1,2]],[[0,1,3,0],[2,2,3,1],[0,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,4,1],[0,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,1],[0,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,1],[0,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,1],[0,3,3,3],[1,1,2,0]],[[0,1,2,0],[2,2,3,1],[0,3,3,2],[1,1,3,0]],[[0,1,3,0],[2,2,3,1],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,4,1],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,1],[0,4,3,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,1],[0,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,3],[1,2,0,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,2,3,1],[0,3,3,2],[1,2,0,2]],[[0,1,3,0],[2,2,3,1],[0,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,4,1],[0,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,1],[0,4,3,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,1],[0,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,1],[0,3,3,3],[1,2,1,0]],[[0,1,2,0],[2,2,3,1],[0,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,2,3,1],[0,3,3,2],[1,3,1,0]],[[0,1,2,0],[2,2,3,1],[1,1,3,3],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,1,3,2],[0,2,3,1]],[[0,1,2,0],[2,2,3,1],[1,1,3,2],[0,2,2,2]],[[0,1,2,0],[2,2,3,1],[1,2,2,3],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,2,2,2],[0,3,2,1]],[[0,1,2,0],[2,2,3,1],[1,2,2,2],[0,2,3,1]],[[0,1,2,0],[2,2,3,1],[1,2,2,2],[0,2,2,2]],[[0,1,3,0],[2,2,3,1],[1,2,3,1],[0,2,2,1]],[[0,1,2,0],[2,2,4,1],[1,2,3,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,2,3,1],[0,3,2,1]],[[0,1,2,0],[2,2,3,1],[1,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,2,3,1],[1,2,3,1],[0,2,2,2]],[[0,1,3,0],[2,2,3,1],[1,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,2,4,1],[1,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,2,3,1],[1,2,4,2],[0,2,1,1]],[[0,1,2,0],[2,2,3,1],[1,2,3,3],[0,2,1,1]],[[0,1,2,0],[2,2,3,1],[1,2,3,2],[0,2,1,2]],[[0,1,3,0],[2,2,3,1],[1,2,3,2],[0,2,2,0]],[[0,1,2,0],[2,2,4,1],[1,2,3,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,1],[1,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,1],[1,2,3,3],[0,2,2,0]],[[0,1,2,0],[2,2,3,1],[1,2,3,2],[0,3,2,0]],[[0,1,2,0],[2,2,3,1],[1,2,3,2],[0,2,3,0]],[[0,1,2,0],[2,2,3,1],[1,4,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,0,3],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,0,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,0,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,0,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,1],[1,3,0,2],[1,2,2,2]],[[0,1,2,0],[2,2,3,1],[1,4,1,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,1,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,1,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,1,1],[1,2,3,1]],[[0,1,2,0],[2,2,3,1],[1,3,1,1],[1,2,2,2]],[[0,1,2,0],[2,2,3,1],[1,4,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,1,3],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,1,2],[0,3,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,1,2],[0,2,3,1]],[[0,1,2,0],[2,2,3,1],[1,3,1,2],[0,2,2,2]],[[0,1,2,0],[2,2,3,1],[1,4,1,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[1,3,1,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,1],[1,3,1,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,1],[1,3,1,2],[1,2,3,0]],[[0,1,2,0],[2,2,3,1],[1,4,2,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,1],[0,3,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,1],[0,2,3,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,1],[0,2,2,2]],[[0,1,2,0],[2,2,3,1],[1,4,2,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,1],[2,2,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,1],[1,3,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,2],[0,1,2,2]],[[0,1,2,0],[2,2,3,1],[1,4,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,1],[1,3,2,2],[0,3,2,0]],[[0,1,2,0],[2,2,3,1],[1,3,2,2],[0,2,3,0]],[[0,1,2,0],[2,2,3,1],[1,3,2,3],[1,0,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,2],[1,0,3,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,2],[1,0,2,2]],[[0,1,2,0],[2,2,3,1],[1,4,2,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,2],[2,2,0,1]],[[0,1,2,0],[2,2,3,1],[1,3,2,2],[1,3,0,1]],[[0,1,2,0],[2,2,3,1],[1,4,2,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,1],[1,3,2,2],[2,2,1,0]],[[0,1,2,0],[2,2,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,2,3,3],[0,2,1,2],[1,1,1,0]],[[1,2,2,2],[2,2,3,2],[0,2,1,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,2],[0,2,1,2],[1,1,1,0]],[[1,3,2,1],[2,2,3,2],[0,2,1,2],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[0,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,2,3,3],[0,2,1,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,1],[1,4,3,0],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,0],[0,3,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,0],[0,2,3,1]],[[0,1,3,0],[2,2,3,1],[1,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,4,1],[1,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,3,1],[1,4,3,1],[0,1,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,1],[0,1,2,2]],[[0,1,3,0],[2,2,3,1],[1,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,4,1],[1,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,1],[1,4,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,4,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,1],[0,3,1,1]],[[0,1,3,0],[2,2,3,1],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,4,1],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,1],[1,4,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,4,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,1],[1,0,3,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,1],[1,0,2,2]],[[0,1,3,0],[2,2,3,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,4,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,1],[1,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,2,2],[2,2,3,2],[0,2,1,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,2],[0,2,1,2],[1,1,0,1]],[[1,3,2,1],[2,2,3,2],[0,2,1,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,2],[0,2,1,2],[1,1,0,1]],[[0,1,3,0],[2,2,3,1],[1,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,2,4,1],[1,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,2],[0,0,2,2]],[[0,1,3,0],[2,2,3,1],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,4,1],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,1],[1,4,3,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,2],[0,1,1,2]],[[0,1,3,0],[2,2,3,1],[1,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,4,1],[1,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,1],[1,4,3,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,1],[1,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,1],[1,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,2,3,1],[1,3,3,2],[0,1,3,0]],[[0,1,3,0],[2,2,3,1],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,4,1],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,1],[1,4,3,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,1],[1,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,2],[0,3,0,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,2],[0,2,0,2]],[[0,1,3,0],[2,2,3,1],[1,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,4,1],[1,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,1],[1,4,3,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,1],[1,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,1],[1,3,3,3],[0,2,1,0]],[[0,1,2,0],[2,2,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,2,3,3],[0,2,1,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[0,2,1,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[0,2,1,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,2],[0,2,1,2],[1,0,2,0]],[[0,1,3,0],[2,2,3,1],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,4,1],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,1],[1,4,3,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,4,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,3],[1,0,1,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,2],[1,0,1,2]],[[0,1,3,0],[2,2,3,1],[1,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,4,1],[1,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,1],[1,4,3,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,1],[1,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,1],[1,3,3,3],[1,0,2,0]],[[0,1,2,0],[2,2,3,1],[1,3,3,2],[1,0,3,0]],[[0,1,3,0],[2,2,3,1],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,4,1],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,1],[1,4,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,1],[1,3,4,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,3],[1,1,0,1]],[[0,1,2,0],[2,2,3,1],[1,3,3,2],[1,1,0,2]],[[0,1,3,0],[2,2,3,1],[1,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,4,1],[1,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,1],[1,4,3,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,1],[1,3,4,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,1],[1,3,3,3],[1,1,1,0]],[[2,2,2,1],[2,2,3,2],[0,2,1,2],[1,0,2,0]],[[1,2,2,1],[2,2,3,3],[0,2,1,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,2],[0,2,1,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[0,2,1,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,2],[0,2,1,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,2],[0,2,1,2],[1,0,1,1]],[[1,2,2,1],[2,2,3,3],[0,2,1,2],[0,2,1,0]],[[1,2,2,2],[2,2,3,2],[0,2,1,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,2],[0,2,1,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,2],[0,2,1,2],[0,2,1,0]],[[2,2,2,1],[2,2,3,2],[0,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,2,3,3],[0,2,1,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,2],[0,2,1,2],[0,2,0,1]],[[1,2,3,1],[2,2,3,2],[0,2,1,2],[0,2,0,1]],[[1,3,2,1],[2,2,3,2],[0,2,1,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,2],[0,2,1,2],[0,2,0,1]],[[0,1,2,0],[3,2,3,1],[2,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[3,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,0,2,3],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,0,2,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,0,2,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,1],[2,0,2,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,1],[2,0,2,2],[1,2,2,2]],[[0,1,3,0],[2,2,3,1],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[3,2,3,1],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,4,1],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[3,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,0,4,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,0,3,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,0,3,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,1],[2,0,3,1],[1,2,3,1]],[[0,1,2,0],[2,2,3,1],[2,0,3,1],[1,2,2,2]],[[0,1,3,0],[2,2,3,1],[2,0,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,4,1],[2,0,3,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[2,0,4,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[2,0,3,3],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[2,0,3,2],[1,2,1,2]],[[0,1,3,0],[2,2,3,1],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[3,2,3,1],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,4,1],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[3,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[2,0,4,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[2,0,3,3],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[2,0,3,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,1],[2,0,3,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[2,2,3,3],[0,2,1,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[0,2,1,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,2],[0,2,1,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,2],[0,2,1,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,2],[0,2,1,2],[0,1,2,0]],[[1,2,2,1],[2,2,3,3],[0,2,1,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,2],[0,2,1,2],[0,1,1,1]],[[0,1,2,0],[3,2,3,1],[2,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[3,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,2,0,3],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,2,0,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,2,0,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,1],[2,2,0,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,1],[2,2,0,2],[1,2,2,2]],[[0,1,2,0],[3,2,3,1],[2,2,1,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[3,2,1,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,2,1,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,2,1,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,1],[2,2,1,1],[1,2,3,1]],[[0,1,2,0],[2,2,3,1],[2,2,1,1],[1,2,2,2]],[[0,1,2,0],[3,2,3,1],[2,2,1,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[3,2,1,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[2,2,1,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,1],[2,2,1,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,1],[2,2,1,2],[1,2,3,0]],[[0,1,2,0],[3,2,3,1],[2,2,2,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[3,2,2,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,1],[2,2,2,1],[2,2,1,1]],[[0,1,2,0],[2,2,3,1],[2,2,2,1],[1,3,1,1]],[[0,1,2,0],[3,2,3,1],[2,2,2,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,1],[3,2,2,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,1],[2,2,2,2],[2,2,0,1]],[[0,1,2,0],[2,2,3,1],[2,2,2,2],[1,3,0,1]],[[0,1,2,0],[3,2,3,1],[2,2,2,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,1],[3,2,2,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,1],[2,2,2,2],[2,2,1,0]],[[0,1,2,0],[2,2,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,3,1],[2,2,3,2],[0,2,1,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,2],[0,2,1,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,2],[0,2,1,2],[0,1,1,1]],[[1,2,2,1],[2,2,3,3],[0,2,1,2],[0,0,2,1]],[[1,2,2,2],[2,2,3,2],[0,2,1,2],[0,0,2,1]],[[1,2,3,1],[2,2,3,2],[0,2,1,2],[0,0,2,1]],[[1,3,2,1],[2,2,3,2],[0,2,1,2],[0,0,2,1]],[[2,2,2,1],[2,2,3,2],[0,2,1,2],[0,0,2,1]],[[1,2,2,1],[2,2,3,3],[0,2,0,2],[1,0,2,1]],[[1,2,2,2],[2,2,3,2],[0,2,0,2],[1,0,2,1]],[[1,2,3,1],[2,2,3,2],[0,2,0,2],[1,0,2,1]],[[1,3,2,1],[2,2,3,2],[0,2,0,2],[1,0,2,1]],[[2,2,2,1],[2,2,3,2],[0,2,0,2],[1,0,2,1]],[[1,2,2,1],[2,2,3,3],[0,2,0,2],[0,1,2,1]],[[1,2,2,2],[2,2,3,2],[0,2,0,2],[0,1,2,1]],[[1,2,3,1],[2,2,3,2],[0,2,0,2],[0,1,2,1]],[[1,3,2,1],[2,2,3,2],[0,2,0,2],[0,1,2,1]],[[2,2,2,1],[2,2,3,2],[0,2,0,2],[0,1,2,1]],[[0,1,2,0],[3,2,3,1],[2,3,0,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[3,3,0,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,3,0,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,3,0,1],[1,3,2,1]],[[0,1,2,0],[3,2,3,1],[2,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[3,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,4,0,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,3,0,3],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,3,0,2],[0,3,2,1]],[[0,1,2,0],[2,2,3,1],[2,3,0,2],[0,2,3,1]],[[0,1,2,0],[2,2,3,1],[2,3,0,2],[0,2,2,2]],[[0,1,2,0],[3,2,3,1],[2,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,2,3,1],[3,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,2,3,1],[2,4,0,2],[1,1,2,1]],[[0,1,2,0],[2,2,3,1],[2,3,0,2],[2,1,2,1]],[[0,1,2,0],[3,2,3,1],[2,3,0,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[3,3,0,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,1],[2,3,0,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,1],[2,3,0,2],[1,3,2,0]],[[0,1,2,0],[3,2,3,1],[2,3,1,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[3,3,1,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,4,1,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,1],[2,3,1,1],[0,3,2,1]],[[0,1,2,0],[2,2,3,1],[2,3,1,1],[0,2,3,1]],[[0,1,2,0],[2,2,3,1],[2,3,1,1],[0,2,2,2]],[[0,1,2,0],[3,2,3,1],[2,3,1,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,1],[3,3,1,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,1],[2,4,1,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,1],[2,3,1,1],[2,1,2,1]],[[0,1,2,0],[3,2,3,1],[2,3,1,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,1],[3,3,1,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,1],[2,4,1,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,1],[2,3,1,2],[0,3,2,0]],[[0,1,2,0],[2,2,3,1],[2,3,1,2],[0,2,3,0]],[[0,1,2,0],[3,2,3,1],[2,3,1,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,1],[3,3,1,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,1],[2,4,1,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,1],[2,3,1,2],[2,1,2,0]],[[0,1,2,0],[3,2,3,1],[2,3,2,1],[0,1,2,1]],[[0,1,2,0],[2,2,3,1],[3,3,2,1],[0,1,2,1]],[[0,1,2,0],[2,2,3,1],[2,4,2,1],[0,1,2,1]],[[0,1,2,0],[3,2,3,1],[2,3,2,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,1],[3,3,2,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,1],[2,4,2,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,1],[2,3,2,1],[0,3,1,1]],[[0,1,2,0],[3,2,3,1],[2,3,2,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,1],[3,3,2,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,1],[2,4,2,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,1],[2,3,2,1],[2,0,2,1]],[[0,1,2,0],[3,2,3,1],[2,3,2,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,1],[3,3,2,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,1],[2,4,2,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,1],[2,3,2,1],[2,1,1,1]],[[0,1,2,0],[3,2,3,1],[2,3,2,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,1],[3,3,2,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,1],[2,4,2,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,1],[2,3,2,1],[2,2,0,1]],[[0,1,2,0],[3,2,3,1],[2,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,1],[3,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,1],[2,4,2,2],[0,1,1,1]],[[0,1,2,0],[3,2,3,1],[2,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,1],[3,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,1],[2,4,2,2],[0,1,2,0]],[[0,1,2,0],[3,2,3,1],[2,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,1],[3,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,1],[2,4,2,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,1],[2,3,2,2],[0,3,0,1]],[[0,1,2,0],[3,2,3,1],[2,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,1],[3,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,1],[2,4,2,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,1],[2,3,2,2],[0,3,1,0]],[[0,1,2,0],[3,2,3,1],[2,3,2,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,1],[3,3,2,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,1],[2,4,2,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,1],[2,3,2,2],[2,0,1,1]],[[0,1,2,0],[3,2,3,1],[2,3,2,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,1],[3,3,2,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,1],[2,4,2,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,1],[2,3,2,2],[2,0,2,0]],[[0,1,2,0],[3,2,3,1],[2,3,2,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,1],[3,3,2,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,1],[2,4,2,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,1],[2,3,2,2],[2,1,0,1]],[[0,1,2,0],[3,2,3,1],[2,3,2,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,1],[3,3,2,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,1],[2,4,2,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,1],[2,3,2,2],[2,1,1,0]],[[0,1,2,0],[3,2,3,1],[2,3,2,2],[1,2,0,0]],[[0,1,2,0],[2,2,3,1],[3,3,2,2],[1,2,0,0]],[[0,1,2,0],[2,2,3,1],[2,4,2,2],[1,2,0,0]],[[0,1,2,0],[2,2,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[2,2,4,2],[0,1,3,0],[0,2,2,0]],[[1,2,2,2],[2,2,3,2],[0,1,3,0],[0,2,2,0]],[[1,2,3,1],[2,2,3,2],[0,1,3,0],[0,2,2,0]],[[1,3,2,1],[2,2,3,2],[0,1,3,0],[0,2,2,0]],[[2,2,2,1],[2,2,3,2],[0,1,3,0],[0,2,2,0]],[[1,2,2,1],[2,2,4,2],[0,1,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,3,2],[0,1,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,2],[0,1,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,3,2],[0,1,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,2],[0,1,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,3,3],[0,1,1,2],[0,2,2,0]],[[0,1,2,0],[3,2,3,1],[2,3,3,2],[0,2,0,0]],[[0,1,2,0],[2,2,3,1],[3,3,3,2],[0,2,0,0]],[[0,1,2,0],[2,2,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,2],[2,2,3,2],[0,1,1,2],[0,2,2,0]],[[1,2,3,1],[2,2,3,2],[0,1,1,2],[0,2,2,0]],[[1,3,2,1],[2,2,3,2],[0,1,1,2],[0,2,2,0]],[[2,2,2,1],[2,2,3,2],[0,1,1,2],[0,2,2,0]],[[1,2,2,1],[2,2,3,3],[0,1,1,2],[0,2,1,1]],[[1,2,2,2],[2,2,3,2],[0,1,1,2],[0,2,1,1]],[[1,2,3,1],[2,2,3,2],[0,1,1,2],[0,2,1,1]],[[1,3,2,1],[2,2,3,2],[0,1,1,2],[0,2,1,1]],[[2,2,2,1],[2,2,3,2],[0,1,1,2],[0,2,1,1]],[[1,2,2,1],[2,2,3,3],[0,1,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,3,2],[0,1,0,2],[0,2,2,1]],[[1,2,3,1],[2,2,3,2],[0,1,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,3,2],[0,1,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,3,2],[0,1,0,2],[0,2,2,1]],[[1,2,2,1],[2,2,3,3],[0,0,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,2],[0,0,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,2],[0,0,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,3,2],[0,0,3,3],[1,0,1,1]],[[1,2,2,1],[2,2,3,3],[0,0,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,2],[0,0,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,2],[0,0,3,2],[1,0,1,1]],[[0,1,2,0],[3,2,3,1],[2,3,3,2],[1,1,0,0]],[[0,1,2,0],[2,2,3,1],[3,3,3,2],[1,1,0,0]],[[0,1,2,0],[2,2,3,1],[2,4,3,2],[1,1,0,0]],[[0,1,2,0],[2,2,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[2,2,3,3],[0,0,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,2],[0,0,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,2],[0,0,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,3,2],[0,0,3,3],[0,1,1,1]],[[1,2,2,1],[2,2,3,3],[0,0,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,2],[0,0,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,2],[0,0,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,3,2],[0,0,3,2],[0,0,2,2]],[[1,2,2,1],[2,2,3,2],[0,0,3,3],[0,0,2,1]],[[1,2,2,1],[2,2,3,3],[0,0,3,2],[0,0,2,1]],[[1,2,2,2],[2,2,3,2],[0,0,3,2],[0,0,2,1]],[[1,2,3,1],[2,2,3,2],[0,0,3,2],[0,0,2,1]],[[0,1,2,0],[2,2,3,3],[0,0,3,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,0,3,3],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,0,3,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[0,0,3,2],[1,2,2,2]],[[0,1,3,0],[2,2,3,2],[0,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,4,2],[0,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,3],[0,2,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,2,1,3],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,2,1,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,2,1,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,2],[0,2,1,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[0,2,1,2],[1,2,2,2]],[[0,1,3,0],[2,2,3,2],[0,2,2,2],[1,2,1,1]],[[0,1,2,0],[2,2,4,2],[0,2,2,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,3],[0,2,2,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[0,2,2,3],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[0,2,2,2],[1,2,1,2]],[[0,1,3,0],[2,2,3,2],[0,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,4,2],[0,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,3],[0,2,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[0,2,2,3],[1,2,2,0]],[[0,1,3,0],[2,2,3,2],[0,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,4,2],[0,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,3],[0,2,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,2,4,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,2,3,0],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,2,3,0],[1,3,2,1]],[[0,1,2,0],[2,2,3,2],[0,2,3,0],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[0,2,3,0],[1,2,2,2]],[[0,1,3,0],[2,2,3,2],[0,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,4,2],[0,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,3],[0,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[0,2,4,1],[1,2,1,1]],[[0,1,3,0],[2,2,3,2],[0,2,3,1],[1,2,2,0]],[[0,1,2,0],[2,2,4,2],[0,2,3,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,3],[0,2,3,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[0,2,4,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[0,2,3,1],[2,2,2,0]],[[0,1,2,0],[2,2,3,2],[0,2,3,1],[1,3,2,0]],[[0,1,2,0],[2,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,2,3,1],[3,3,2,1],[1,0,0,0]],[[1,2,2,1],[3,2,3,1],[2,3,2,1],[1,0,0,0]],[[1,2,2,2],[2,2,3,1],[2,3,2,1],[1,0,0,0]],[[0,1,3,0],[2,2,3,2],[0,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,4,2],[0,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,3],[0,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,4,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,0,3],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,0,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,0,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,0,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[0,3,0,2],[1,2,2,2]],[[0,1,3,0],[2,2,3,2],[0,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,2,4,2],[0,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,2,3,3],[0,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,1,3],[1,1,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,1,2],[1,1,3,1]],[[0,1,2,0],[2,2,3,2],[0,3,1,2],[1,1,2,2]],[[0,1,2,0],[2,2,3,2],[0,4,2,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,2,0],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,2,0],[1,3,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,2,0],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[0,3,2,0],[1,2,2,2]],[[0,1,2,0],[2,2,3,2],[0,4,2,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[0,3,2,1],[2,2,2,0]],[[0,1,2,0],[2,2,3,2],[0,3,2,1],[1,3,2,0]],[[0,1,2,0],[2,2,3,2],[0,3,2,1],[1,2,3,0]],[[0,1,3,0],[2,2,3,2],[0,3,2,2],[1,0,2,1]],[[0,1,2,0],[2,2,4,2],[0,3,2,2],[1,0,2,1]],[[0,1,2,0],[2,2,3,3],[0,3,2,2],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,2,3],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,2,2],[1,0,2,2]],[[0,1,3,0],[2,2,3,2],[0,3,2,2],[1,1,1,1]],[[0,1,2,0],[2,2,4,2],[0,3,2,2],[1,1,1,1]],[[0,1,2,0],[2,2,3,3],[0,3,2,2],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[0,3,2,3],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[0,3,2,2],[1,1,1,2]],[[0,1,3,0],[2,2,3,2],[0,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,4,2],[0,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,3],[0,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,2],[0,3,2,3],[1,1,2,0]],[[0,1,3,0],[2,2,3,2],[0,3,2,2],[1,2,0,1]],[[0,1,2,0],[2,2,4,2],[0,3,2,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,3],[0,3,2,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[0,3,2,3],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[0,3,2,2],[1,2,0,2]],[[0,1,3,0],[2,2,3,2],[0,3,2,2],[1,2,1,0]],[[0,1,2,0],[2,2,4,2],[0,3,2,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,3],[0,3,2,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,3,1],[2,2,3,1],[2,3,2,1],[1,0,0,0]],[[1,3,2,1],[2,2,3,1],[2,3,2,1],[1,0,0,0]],[[2,2,2,1],[2,2,3,1],[2,3,2,1],[1,0,0,0]],[[0,1,3,0],[2,2,3,2],[0,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,2,4,2],[0,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,2,3,3],[0,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,2,3,2],[0,4,3,0],[1,1,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,4,0],[1,1,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,3,0],[1,1,3,1]],[[0,1,2,0],[2,2,3,2],[0,3,3,0],[1,1,2,2]],[[0,1,3,0],[2,2,3,2],[0,3,3,0],[1,2,1,1]],[[0,1,2,0],[2,2,4,2],[0,3,3,0],[1,2,1,1]],[[0,1,2,0],[2,2,3,3],[0,3,3,0],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[0,4,3,0],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[0,3,4,0],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[0,3,3,0],[2,2,1,1]],[[0,1,2,0],[2,2,3,2],[0,3,3,0],[1,3,1,1]],[[0,1,3,0],[2,2,3,2],[0,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,4,2],[0,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,3],[0,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[0,3,4,1],[1,0,2,1]],[[0,1,3,0],[2,2,3,2],[0,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,4,2],[0,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,3],[0,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[0,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[0,3,4,1],[1,1,1,1]],[[0,1,3,0],[2,2,3,2],[0,3,3,1],[1,1,2,0]],[[0,1,2,0],[2,2,4,2],[0,3,3,1],[1,1,2,0]],[[0,1,2,0],[2,2,3,3],[0,3,3,1],[1,1,2,0]],[[0,1,2,0],[2,2,3,2],[0,4,3,1],[1,1,2,0]],[[0,1,2,0],[2,2,3,2],[0,3,4,1],[1,1,2,0]],[[0,1,2,0],[2,2,3,2],[0,3,3,1],[1,1,3,0]],[[0,1,3,0],[2,2,3,2],[0,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,4,2],[0,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,3],[0,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[0,4,3,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[0,3,4,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[0,3,3,1],[2,2,0,1]],[[0,1,2,0],[2,2,3,2],[0,3,3,1],[1,3,0,1]],[[0,1,3,0],[2,2,3,2],[0,3,3,1],[1,2,1,0]],[[0,1,2,0],[2,2,4,2],[0,3,3,1],[1,2,1,0]],[[0,1,2,0],[2,2,3,3],[0,3,3,1],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[0,4,3,1],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[0,3,4,1],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[0,3,3,1],[2,2,1,0]],[[0,1,2,0],[2,2,3,2],[0,3,3,1],[1,3,1,0]],[[0,1,3,0],[2,2,3,2],[0,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,4,2],[0,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,3],[0,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,2],[0,3,3,3],[1,1,0,1]],[[0,1,2,0],[2,2,3,3],[1,0,3,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,0,3,3],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,0,3,2],[0,2,3,1]],[[0,1,2,0],[2,2,3,2],[1,0,3,2],[0,2,2,2]],[[0,1,3,0],[2,2,3,2],[1,2,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,4,2],[1,2,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,3],[1,2,1,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,2,1,3],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,2,1,2],[0,3,2,1]],[[0,1,2,0],[2,2,3,2],[1,2,1,2],[0,2,3,1]],[[0,1,2,0],[2,2,3,2],[1,2,1,2],[0,2,2,2]],[[0,1,3,0],[2,2,3,2],[1,2,2,2],[0,2,1,1]],[[0,1,2,0],[2,2,4,2],[1,2,2,2],[0,2,1,1]],[[0,1,2,0],[2,2,3,3],[1,2,2,2],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[1,2,2,3],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[1,2,2,2],[0,2,1,2]],[[0,1,3,0],[2,2,3,2],[1,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,4,2],[1,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,3],[1,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,2],[1,2,2,3],[0,2,2,0]],[[0,1,3,0],[2,2,3,2],[1,2,3,0],[0,2,2,1]],[[0,1,2,0],[2,2,4,2],[1,2,3,0],[0,2,2,1]],[[0,1,2,0],[2,2,3,3],[1,2,3,0],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,2,4,0],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,2,3,0],[0,3,2,1]],[[0,1,2,0],[2,2,3,2],[1,2,3,0],[0,2,3,1]],[[0,1,2,0],[2,2,3,2],[1,2,3,0],[0,2,2,2]],[[0,1,3,0],[2,2,3,2],[1,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,4,2],[1,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,3],[1,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[1,2,4,1],[0,2,1,1]],[[0,1,3,0],[2,2,3,2],[1,2,3,1],[0,2,2,0]],[[0,1,2,0],[2,2,4,2],[1,2,3,1],[0,2,2,0]],[[0,1,2,0],[2,2,3,3],[1,2,3,1],[0,2,2,0]],[[0,1,2,0],[2,2,3,2],[1,2,4,1],[0,2,2,0]],[[0,1,2,0],[2,2,3,2],[1,2,3,1],[0,3,2,0]],[[0,1,2,0],[2,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,2,3,1],[3,3,1,1],[1,0,1,0]],[[1,2,2,1],[3,2,3,1],[2,3,1,1],[1,0,1,0]],[[1,2,2,2],[2,2,3,1],[2,3,1,1],[1,0,1,0]],[[1,2,3,1],[2,2,3,1],[2,3,1,1],[1,0,1,0]],[[1,3,2,1],[2,2,3,1],[2,3,1,1],[1,0,1,0]],[[2,2,2,1],[2,2,3,1],[2,3,1,1],[1,0,1,0]],[[1,2,2,1],[2,2,3,1],[3,3,1,1],[1,0,0,1]],[[1,2,2,1],[3,2,3,1],[2,3,1,1],[1,0,0,1]],[[1,2,2,2],[2,2,3,1],[2,3,1,1],[1,0,0,1]],[[1,2,3,1],[2,2,3,1],[2,3,1,1],[1,0,0,1]],[[1,3,2,1],[2,2,3,1],[2,3,1,1],[1,0,0,1]],[[2,2,2,1],[2,2,3,1],[2,3,1,1],[1,0,0,1]],[[0,1,2,0],[2,2,3,2],[1,4,0,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,0,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,0,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,0,1],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[1,3,0,1],[1,2,2,2]],[[0,1,3,0],[2,2,3,2],[1,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,2,4,2],[1,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,3],[1,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,4,0,2],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,0,3],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,0,2],[0,3,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,0,2],[0,2,3,1]],[[0,1,2,0],[2,2,3,2],[1,3,0,2],[0,2,2,2]],[[0,1,2,0],[2,2,3,2],[1,4,0,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,0,2],[2,2,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,0,2],[1,3,1,1]],[[0,1,2,0],[2,2,3,2],[1,4,0,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,0,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,0,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,0,2],[1,2,3,0]],[[0,1,2,0],[2,2,3,2],[1,4,1,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,0],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,0],[1,3,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,0],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,0],[1,2,2,2]],[[0,1,2,0],[2,2,3,2],[1,4,1,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,1,1],[2,2,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,1,1],[1,3,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,1,1],[1,2,3,0]],[[0,1,3,0],[2,2,3,2],[1,3,1,2],[0,1,2,1]],[[0,1,2,0],[2,2,4,2],[1,3,1,2],[0,1,2,1]],[[0,1,2,0],[2,2,3,3],[1,3,1,2],[0,1,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,3],[0,1,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,2],[0,1,3,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,2],[0,1,2,2]],[[0,1,3,0],[2,2,3,2],[1,3,1,2],[1,0,2,1]],[[0,1,2,0],[2,2,4,2],[1,3,1,2],[1,0,2,1]],[[0,1,2,0],[2,2,3,3],[1,3,1,2],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,3],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,2],[1,0,3,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,2],[1,0,2,2]],[[0,1,2,0],[2,2,3,2],[1,4,1,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,2],[2,2,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,1,2],[1,3,0,1]],[[0,1,2,0],[2,2,3,2],[1,4,1,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[1,3,1,2],[2,2,1,0]],[[0,1,2,0],[2,2,3,2],[1,3,1,2],[1,3,1,0]],[[0,1,2,0],[2,2,3,2],[1,4,2,0],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,0],[0,3,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,0],[0,2,3,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,0],[0,2,2,2]],[[0,1,2,0],[2,2,3,2],[1,4,2,0],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,0],[2,2,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,0],[1,3,1,1]],[[0,1,2,0],[2,2,3,2],[1,4,2,1],[0,2,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,2,1],[0,3,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,2,1],[0,2,3,0]],[[0,1,2,0],[2,2,3,2],[1,4,2,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,1],[2,2,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,1],[1,3,0,1]],[[0,1,2,0],[2,2,3,2],[1,4,2,1],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[1,3,2,1],[2,2,1,0]],[[0,1,2,0],[2,2,3,2],[1,3,2,1],[1,3,1,0]],[[0,1,3,0],[2,2,3,2],[1,3,2,2],[0,0,2,1]],[[0,1,2,0],[2,2,4,2],[1,3,2,2],[0,0,2,1]],[[0,1,2,0],[2,2,3,3],[1,3,2,2],[0,0,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,3],[0,0,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,2],[0,0,2,2]],[[0,1,3,0],[2,2,3,2],[1,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,2,4,2],[1,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,3],[1,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,3],[0,1,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,2],[0,1,1,2]],[[0,1,3,0],[2,2,3,2],[1,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,2,4,2],[1,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,3],[1,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,2,3],[0,1,2,0]],[[0,1,3,0],[2,2,3,2],[1,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,2,4,2],[1,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,3],[1,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,3],[0,2,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,2],[0,2,0,2]],[[0,1,3,0],[2,2,3,2],[1,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,2,4,2],[1,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,3],[1,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[1,3,2,3],[0,2,1,0]],[[0,1,3,0],[2,2,3,2],[1,3,2,2],[1,0,1,1]],[[0,1,2,0],[2,2,4,2],[1,3,2,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,3],[1,3,2,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,3],[1,0,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,2],[1,0,1,2]],[[0,1,3,0],[2,2,3,2],[1,3,2,2],[1,0,2,0]],[[0,1,2,0],[2,2,4,2],[1,3,2,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,3],[1,3,2,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,2,3],[1,0,2,0]],[[0,1,3,0],[2,2,3,2],[1,3,2,2],[1,1,0,1]],[[0,1,2,0],[2,2,4,2],[1,3,2,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,3],[1,3,2,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,3],[1,1,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,2,2],[1,1,0,2]],[[0,1,3,0],[2,2,3,2],[1,3,2,2],[1,1,1,0]],[[0,1,2,0],[2,2,4,2],[1,3,2,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,3],[1,3,2,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,2,3,1],[3,3,1,0],[1,0,1,1]],[[1,2,2,1],[3,2,3,1],[2,3,1,0],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[2,3,1,0],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[2,3,1,0],[1,0,1,1]],[[1,3,2,1],[2,2,3,1],[2,3,1,0],[1,0,1,1]],[[2,2,2,1],[2,2,3,1],[2,3,1,0],[1,0,1,1]],[[0,1,3,0],[2,2,3,2],[1,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,2,4,2],[1,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,2,3,3],[1,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,2,3,2],[1,4,3,0],[0,1,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,4,0],[0,1,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,3,0],[0,1,3,1]],[[0,1,2,0],[2,2,3,2],[1,3,3,0],[0,1,2,2]],[[0,1,3,0],[2,2,3,2],[1,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,2,4,2],[1,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,2,3,3],[1,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[1,4,3,0],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,4,0],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,3,0],[0,3,1,1]],[[0,1,3,0],[2,2,3,2],[1,3,3,0],[1,0,2,1]],[[0,1,2,0],[2,2,4,2],[1,3,3,0],[1,0,2,1]],[[0,1,2,0],[2,2,3,3],[1,3,3,0],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[1,4,3,0],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,4,0],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,3,0],[1,0,3,1]],[[0,1,2,0],[2,2,3,2],[1,3,3,0],[1,0,2,2]],[[0,1,3,0],[2,2,3,2],[1,3,3,0],[1,1,1,1]],[[0,1,2,0],[2,2,4,2],[1,3,3,0],[1,1,1,1]],[[0,1,2,0],[2,2,3,3],[1,3,3,0],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[1,4,3,0],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,4,0],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[1,4,3,0],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[1,3,3,0],[2,2,1,0]],[[0,1,2,0],[2,2,3,2],[1,3,3,0],[1,3,1,0]],[[0,1,3,0],[2,2,3,2],[1,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,2,4,2],[1,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,2,3,3],[1,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,2,3,2],[1,3,4,1],[0,0,2,1]],[[0,1,3,0],[2,2,3,2],[1,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,2,4,2],[1,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,2,3,3],[1,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,2,3,2],[1,4,3,1],[0,1,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,4,1],[0,1,1,1]],[[0,1,3,0],[2,2,3,2],[1,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,2,4,2],[1,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,2,3,3],[1,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,2,3,2],[1,4,3,1],[0,1,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,4,1],[0,1,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,3,1],[0,1,3,0]],[[0,1,3,0],[2,2,3,2],[1,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,2,4,2],[1,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,2,3,3],[1,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,2,3,2],[1,4,3,1],[0,2,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,4,1],[0,2,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,3,1],[0,3,0,1]],[[0,1,3,0],[2,2,3,2],[1,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,2,4,2],[1,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,2,3,3],[1,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[1,4,3,1],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[1,3,4,1],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[1,3,3,1],[0,3,1,0]],[[0,1,3,0],[2,2,3,2],[1,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,2,4,2],[1,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,2,3,3],[1,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,2,3,2],[1,4,3,1],[1,0,1,1]],[[0,1,2,0],[2,2,3,2],[1,3,4,1],[1,0,1,1]],[[0,1,3,0],[2,2,3,2],[1,3,3,1],[1,0,2,0]],[[0,1,2,0],[2,2,4,2],[1,3,3,1],[1,0,2,0]],[[0,1,2,0],[2,2,3,3],[1,3,3,1],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[1,4,3,1],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,4,1],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[1,3,3,1],[1,0,3,0]],[[0,1,3,0],[2,2,3,2],[1,3,3,1],[1,1,0,1]],[[0,1,2,0],[2,2,4,2],[1,3,3,1],[1,1,0,1]],[[0,1,2,0],[2,2,3,3],[1,3,3,1],[1,1,0,1]],[[0,1,2,0],[2,2,3,2],[1,4,3,1],[1,1,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,4,1],[1,1,0,1]],[[0,1,3,0],[2,2,3,2],[1,3,3,1],[1,1,1,0]],[[0,1,2,0],[2,2,4,2],[1,3,3,1],[1,1,1,0]],[[0,1,2,0],[2,2,3,3],[1,3,3,1],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[1,4,3,1],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,2,3,1],[3,3,0,2],[1,0,1,0]],[[1,2,2,1],[3,2,3,1],[2,3,0,2],[1,0,1,0]],[[1,2,2,2],[2,2,3,1],[2,3,0,2],[1,0,1,0]],[[1,2,3,1],[2,2,3,1],[2,3,0,2],[1,0,1,0]],[[1,3,2,1],[2,2,3,1],[2,3,0,2],[1,0,1,0]],[[2,2,2,1],[2,2,3,1],[2,3,0,2],[1,0,1,0]],[[1,2,2,1],[2,2,3,1],[3,3,0,2],[1,0,0,1]],[[1,2,2,1],[3,2,3,1],[2,3,0,2],[1,0,0,1]],[[1,2,2,2],[2,2,3,1],[2,3,0,2],[1,0,0,1]],[[1,2,3,1],[2,2,3,1],[2,3,0,2],[1,0,0,1]],[[1,3,2,1],[2,2,3,1],[2,3,0,2],[1,0,0,1]],[[2,2,2,1],[2,2,3,1],[2,3,0,2],[1,0,0,1]],[[0,1,3,0],[2,2,3,2],[1,3,3,2],[0,1,0,1]],[[0,1,2,0],[2,2,4,2],[1,3,3,2],[0,1,0,1]],[[0,1,2,0],[2,2,3,3],[1,3,3,2],[0,1,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,2,3,1],[2,3,0,1],[2,2,0,0]],[[1,2,2,1],[2,2,3,1],[3,3,0,1],[1,2,0,0]],[[1,2,2,1],[3,2,3,1],[2,3,0,1],[1,2,0,0]],[[1,2,2,2],[2,2,3,1],[2,3,0,1],[1,2,0,0]],[[1,2,3,1],[2,2,3,1],[2,3,0,1],[1,2,0,0]],[[1,3,2,1],[2,2,3,1],[2,3,0,1],[1,2,0,0]],[[2,2,2,1],[2,2,3,1],[2,3,0,1],[1,2,0,0]],[[0,1,3,0],[2,2,3,2],[1,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,2,4,2],[1,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,2,3,3],[1,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,2,3,1],[2,3,0,1],[2,1,1,0]],[[1,2,2,1],[2,2,3,1],[3,3,0,1],[1,1,1,0]],[[1,2,2,1],[3,2,3,1],[2,3,0,1],[1,1,1,0]],[[1,2,2,2],[2,2,3,1],[2,3,0,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[2,3,0,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,1],[2,3,0,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[2,3,0,1],[1,1,1,0]],[[1,2,2,1],[2,2,3,1],[2,3,0,1],[2,1,0,1]],[[1,2,2,1],[2,2,3,1],[3,3,0,1],[1,1,0,1]],[[1,2,2,1],[3,2,3,1],[2,3,0,1],[1,1,0,1]],[[1,2,2,2],[2,2,3,1],[2,3,0,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,1],[2,3,0,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,1],[2,3,0,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,1],[2,3,0,1],[1,1,0,1]],[[1,2,2,1],[2,2,3,1],[3,3,0,1],[0,2,1,0]],[[1,2,2,1],[3,2,3,1],[2,3,0,1],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[2,3,0,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[2,3,0,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[2,3,0,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[2,3,0,1],[0,2,1,0]],[[1,2,2,1],[2,2,3,1],[3,3,0,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,1],[2,3,0,1],[0,2,0,1]],[[1,2,2,2],[2,2,3,1],[2,3,0,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,1],[2,3,0,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,1],[2,3,0,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,1],[2,3,0,1],[0,2,0,1]],[[1,2,2,1],[2,2,3,1],[2,3,0,0],[2,2,0,1]],[[1,2,2,1],[2,2,3,1],[3,3,0,0],[1,2,0,1]],[[1,2,2,1],[3,2,3,1],[2,3,0,0],[1,2,0,1]],[[1,2,2,2],[2,2,3,1],[2,3,0,0],[1,2,0,1]],[[1,2,3,1],[2,2,3,1],[2,3,0,0],[1,2,0,1]],[[1,3,2,1],[2,2,3,1],[2,3,0,0],[1,2,0,1]],[[2,2,2,1],[2,2,3,1],[2,3,0,0],[1,2,0,1]],[[0,1,3,0],[2,2,3,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[3,2,3,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,4,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,3],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[3,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,0,1,3],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,0,1,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,0,1,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,2],[2,0,1,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[2,0,1,2],[1,2,2,2]],[[0,1,3,0],[2,2,3,2],[2,0,2,2],[1,2,1,1]],[[0,1,2,0],[2,2,4,2],[2,0,2,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,3],[2,0,2,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[2,0,2,3],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[2,0,2,2],[1,2,1,2]],[[0,1,3,0],[2,2,3,2],[2,0,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,4,2],[2,0,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,3],[2,0,2,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,0,2,3],[1,2,2,0]],[[0,1,3,0],[2,2,3,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,0],[3,2,3,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,4,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,3],[2,0,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[3,0,3,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,0,4,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,0,3,0],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,0,3,0],[1,3,2,1]],[[0,1,2,0],[2,2,3,2],[2,0,3,0],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[2,0,3,0],[1,2,2,2]],[[0,1,3,0],[2,2,3,2],[2,0,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,4,2],[2,0,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,3],[2,0,3,1],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[2,0,4,1],[1,2,1,1]],[[0,1,3,0],[2,2,3,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,0],[3,2,3,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,0],[2,2,4,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,3],[2,0,3,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[3,0,3,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,0,4,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,0,3,1],[2,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,0,3,1],[1,3,2,0]],[[0,1,2,0],[2,2,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[2,2,3,1],[2,3,0,0],[2,1,1,1]],[[1,2,2,1],[2,2,3,1],[3,3,0,0],[1,1,1,1]],[[1,2,2,1],[3,2,3,1],[2,3,0,0],[1,1,1,1]],[[1,2,2,2],[2,2,3,1],[2,3,0,0],[1,1,1,1]],[[1,2,3,1],[2,2,3,1],[2,3,0,0],[1,1,1,1]],[[1,3,2,1],[2,2,3,1],[2,3,0,0],[1,1,1,1]],[[2,2,2,1],[2,2,3,1],[2,3,0,0],[1,1,1,1]],[[0,1,3,0],[2,2,3,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[3,2,3,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,4,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,3],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[3,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,1,0,3],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,1,0,2],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,1,0,2],[1,3,2,1]],[[0,1,2,0],[2,2,3,2],[2,1,0,2],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[2,2,3,1],[3,3,0,0],[0,2,1,1]],[[1,2,2,1],[3,2,3,1],[2,3,0,0],[0,2,1,1]],[[1,2,2,2],[2,2,3,1],[2,3,0,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,1],[2,3,0,0],[0,2,1,1]],[[1,3,2,1],[2,2,3,1],[2,3,0,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,1],[2,3,0,0],[0,2,1,1]],[[0,1,2,0],[3,2,3,2],[2,2,0,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[3,2,0,1],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,2,0,1],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,2,0,1],[1,3,2,1]],[[0,1,2,0],[2,2,3,2],[2,2,0,1],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[2,2,0,1],[1,2,2,2]],[[0,1,2,0],[3,2,3,2],[2,2,0,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[3,2,0,2],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[2,2,0,2],[2,2,1,1]],[[0,1,2,0],[2,2,3,2],[2,2,0,2],[1,3,1,1]],[[0,1,2,0],[3,2,3,2],[2,2,0,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[3,2,0,2],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,2,0,2],[2,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,2,0,2],[1,3,2,0]],[[0,1,2,0],[2,2,3,2],[2,2,0,2],[1,2,3,0]],[[0,1,2,0],[3,2,3,2],[2,2,1,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[3,2,1,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,2,1,0],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,2,1,0],[1,3,2,1]],[[0,1,2,0],[2,2,3,2],[2,2,1,0],[1,2,3,1]],[[0,1,2,0],[2,2,3,2],[2,2,1,0],[1,2,2,2]],[[0,1,2,0],[3,2,3,2],[2,2,1,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[3,2,1,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,2,1,1],[2,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,2,1,1],[1,3,2,0]],[[0,1,2,0],[2,2,3,2],[2,2,1,1],[1,2,3,0]],[[0,1,2,0],[3,2,3,2],[2,2,1,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[3,2,1,2],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[2,2,1,2],[2,2,0,1]],[[0,1,2,0],[2,2,3,2],[2,2,1,2],[1,3,0,1]],[[0,1,2,0],[3,2,3,2],[2,2,1,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[3,2,1,2],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,2,1,2],[2,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,2,1,2],[1,3,1,0]],[[0,1,2,0],[3,2,3,2],[2,2,2,0],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[3,2,2,0],[1,2,1,1]],[[0,1,2,0],[2,2,3,2],[2,2,2,0],[2,2,1,1]],[[0,1,2,0],[2,2,3,2],[2,2,2,0],[1,3,1,1]],[[0,1,2,0],[3,2,3,2],[2,2,2,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[3,2,2,1],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[2,2,2,1],[2,2,0,1]],[[0,1,2,0],[2,2,3,2],[2,2,2,1],[1,3,0,1]],[[0,1,2,0],[3,2,3,2],[2,2,2,1],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[3,2,2,1],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,2,2,1],[2,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[2,2,3,1],[3,2,2,1],[1,1,0,0]],[[1,2,2,1],[3,2,3,1],[2,2,2,1],[1,1,0,0]],[[1,2,2,2],[2,2,3,1],[2,2,2,1],[1,1,0,0]],[[0,1,2,0],[3,2,3,2],[2,2,3,0],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[3,2,3,0],[1,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,2,3,0],[2,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,3,1],[2,2,3,1],[2,2,2,1],[1,1,0,0]],[[1,3,2,1],[2,2,3,1],[2,2,2,1],[1,1,0,0]],[[2,2,2,1],[2,2,3,1],[2,2,2,1],[1,1,0,0]],[[1,2,2,1],[3,2,3,1],[2,2,2,1],[0,2,0,0]],[[1,2,2,2],[2,2,3,1],[2,2,2,1],[0,2,0,0]],[[1,2,3,1],[2,2,3,1],[2,2,2,1],[0,2,0,0]],[[1,3,2,1],[2,2,3,1],[2,2,2,1],[0,2,0,0]],[[2,2,2,1],[2,2,3,1],[2,2,2,1],[0,2,0,0]],[[0,1,2,0],[3,2,3,2],[2,3,0,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[3,3,0,0],[1,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,3,0,0],[2,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,3,0,0],[1,3,2,1]],[[0,1,2,0],[3,2,3,2],[2,3,0,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[3,3,0,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,4,0,1],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,3,0,1],[0,3,2,1]],[[0,1,2,0],[2,2,3,2],[2,3,0,1],[0,2,3,1]],[[0,1,2,0],[2,2,3,2],[2,3,0,1],[0,2,2,2]],[[0,1,2,0],[3,2,3,2],[2,3,0,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,2],[3,3,0,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,2],[2,4,0,1],[1,1,2,1]],[[0,1,2,0],[2,2,3,2],[2,3,0,1],[2,1,2,1]],[[0,1,2,0],[3,2,3,2],[2,3,0,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[3,3,0,1],[1,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,3,0,1],[2,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,3,0,1],[1,3,2,0]],[[0,1,2,0],[3,2,3,2],[2,3,0,2],[0,1,2,1]],[[0,1,2,0],[2,2,3,2],[3,3,0,2],[0,1,2,1]],[[0,1,2,0],[2,2,3,2],[2,4,0,2],[0,1,2,1]],[[0,1,2,0],[3,2,3,2],[2,3,0,2],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[3,3,0,2],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[2,4,0,2],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[2,3,0,2],[0,3,1,1]],[[0,1,2,0],[3,2,3,2],[2,3,0,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,2],[3,3,0,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,4,0,2],[0,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,3,0,2],[0,3,2,0]],[[0,1,2,0],[2,2,3,2],[2,3,0,2],[0,2,3,0]],[[0,1,2,0],[3,2,3,2],[2,3,0,2],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[3,3,0,2],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[2,4,0,2],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[2,3,0,2],[2,0,2,1]],[[0,1,2,0],[3,2,3,2],[2,3,0,2],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[3,3,0,2],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[2,4,0,2],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[2,3,0,2],[2,1,1,1]],[[0,1,2,0],[3,2,3,2],[2,3,0,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,2],[3,3,0,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,2],[2,4,0,2],[1,1,2,0]],[[0,1,2,0],[2,2,3,2],[2,3,0,2],[2,1,2,0]],[[0,1,2,0],[3,2,3,2],[2,3,1,0],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[3,3,1,0],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,4,1,0],[0,2,2,1]],[[0,1,2,0],[2,2,3,2],[2,3,1,0],[0,3,2,1]],[[0,1,2,0],[2,2,3,2],[2,3,1,0],[0,2,3,1]],[[0,1,2,0],[2,2,3,2],[2,3,1,0],[0,2,2,2]],[[0,1,2,0],[3,2,3,2],[2,3,1,0],[1,1,2,1]],[[0,1,2,0],[2,2,3,2],[3,3,1,0],[1,1,2,1]],[[0,1,2,0],[2,2,3,2],[2,4,1,0],[1,1,2,1]],[[0,1,2,0],[2,2,3,2],[2,3,1,0],[2,1,2,1]],[[0,1,2,0],[3,2,3,2],[2,3,1,1],[0,2,2,0]],[[0,1,2,0],[2,2,3,2],[3,3,1,1],[0,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,4,1,1],[0,2,2,0]],[[0,1,2,0],[2,2,3,2],[2,3,1,1],[0,3,2,0]],[[0,1,2,0],[2,2,3,2],[2,3,1,1],[0,2,3,0]],[[0,1,2,0],[3,2,3,2],[2,3,1,1],[1,1,2,0]],[[0,1,2,0],[2,2,3,2],[3,3,1,1],[1,1,2,0]],[[0,1,2,0],[2,2,3,2],[2,4,1,1],[1,1,2,0]],[[0,1,2,0],[2,2,3,2],[2,3,1,1],[2,1,2,0]],[[0,1,2,0],[3,2,3,2],[2,3,1,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,2],[3,3,1,2],[0,1,1,1]],[[0,1,2,0],[2,2,3,2],[2,4,1,2],[0,1,1,1]],[[0,1,2,0],[3,2,3,2],[2,3,1,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,2],[3,3,1,2],[0,1,2,0]],[[0,1,2,0],[2,2,3,2],[2,4,1,2],[0,1,2,0]],[[0,1,2,0],[3,2,3,2],[2,3,1,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,2],[3,3,1,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,2],[2,4,1,2],[0,2,0,1]],[[0,1,2,0],[2,2,3,2],[2,3,1,2],[0,3,0,1]],[[0,1,2,0],[3,2,3,2],[2,3,1,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[3,3,1,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,4,1,2],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,3,1,2],[0,3,1,0]],[[0,1,2,0],[3,2,3,2],[2,3,1,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,2],[3,3,1,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,2],[2,4,1,2],[1,0,1,1]],[[0,1,2,0],[2,2,3,2],[2,3,1,2],[2,0,1,1]],[[0,1,2,0],[3,2,3,2],[2,3,1,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[3,3,1,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[2,4,1,2],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[2,3,1,2],[2,0,2,0]],[[0,1,2,0],[3,2,3,2],[2,3,1,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,2],[3,3,1,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,2],[2,4,1,2],[1,1,0,1]],[[0,1,2,0],[2,2,3,2],[2,3,1,2],[2,1,0,1]],[[0,1,2,0],[3,2,3,2],[2,3,1,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[3,3,1,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[2,4,1,2],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[2,3,1,2],[2,1,1,0]],[[0,1,2,0],[3,2,3,2],[2,3,1,2],[1,2,0,0]],[[0,1,2,0],[2,2,3,2],[3,3,1,2],[1,2,0,0]],[[0,1,2,0],[2,2,3,2],[2,4,1,2],[1,2,0,0]],[[0,1,2,0],[2,2,3,2],[2,3,1,2],[2,2,0,0]],[[0,1,2,0],[3,2,3,2],[2,3,2,0],[0,1,2,1]],[[0,1,2,0],[2,2,3,2],[3,3,2,0],[0,1,2,1]],[[0,1,2,0],[2,2,3,2],[2,4,2,0],[0,1,2,1]],[[0,1,2,0],[3,2,3,2],[2,3,2,0],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[3,3,2,0],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[2,4,2,0],[0,2,1,1]],[[0,1,2,0],[2,2,3,2],[2,3,2,0],[0,3,1,1]],[[0,1,2,0],[3,2,3,2],[2,3,2,0],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[3,3,2,0],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[2,4,2,0],[1,0,2,1]],[[0,1,2,0],[2,2,3,2],[2,3,2,0],[2,0,2,1]],[[0,1,2,0],[3,2,3,2],[2,3,2,0],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[3,3,2,0],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[2,4,2,0],[1,1,1,1]],[[0,1,2,0],[2,2,3,2],[2,3,2,0],[2,1,1,1]],[[0,1,2,0],[3,2,3,2],[2,3,2,0],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[3,3,2,0],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[2,4,2,0],[1,2,0,1]],[[0,1,2,0],[2,2,3,2],[2,3,2,0],[2,2,0,1]],[[0,1,2,0],[3,2,3,2],[2,3,2,1],[0,1,1,1]],[[0,1,2,0],[2,2,3,2],[3,3,2,1],[0,1,1,1]],[[0,1,2,0],[2,2,3,2],[2,4,2,1],[0,1,1,1]],[[0,1,2,0],[3,2,3,2],[2,3,2,1],[0,1,2,0]],[[0,1,2,0],[2,2,3,2],[3,3,2,1],[0,1,2,0]],[[0,1,2,0],[2,2,3,2],[2,4,2,1],[0,1,2,0]],[[0,1,2,0],[3,2,3,2],[2,3,2,1],[0,2,0,1]],[[0,1,2,0],[2,2,3,2],[3,3,2,1],[0,2,0,1]],[[0,1,2,0],[2,2,3,2],[2,4,2,1],[0,2,0,1]],[[0,1,2,0],[2,2,3,2],[2,3,2,1],[0,3,0,1]],[[0,1,2,0],[3,2,3,2],[2,3,2,1],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[3,3,2,1],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,4,2,1],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[2,2,3,1],[2,2,1,1],[2,2,0,0]],[[1,2,2,1],[2,2,3,1],[3,2,1,1],[1,2,0,0]],[[1,2,2,1],[3,2,3,1],[2,2,1,1],[1,2,0,0]],[[1,2,2,2],[2,2,3,1],[2,2,1,1],[1,2,0,0]],[[1,2,3,1],[2,2,3,1],[2,2,1,1],[1,2,0,0]],[[0,1,2,0],[3,2,3,2],[2,3,2,1],[1,0,1,1]],[[0,1,2,0],[2,2,3,2],[3,3,2,1],[1,0,1,1]],[[0,1,2,0],[2,2,3,2],[2,4,2,1],[1,0,1,1]],[[0,1,2,0],[2,2,3,2],[2,3,2,1],[2,0,1,1]],[[0,1,2,0],[3,2,3,2],[2,3,2,1],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[3,3,2,1],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[2,4,2,1],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[2,3,2,1],[2,0,2,0]],[[0,1,2,0],[3,2,3,2],[2,3,2,1],[1,1,0,1]],[[0,1,2,0],[2,2,3,2],[3,3,2,1],[1,1,0,1]],[[0,1,2,0],[2,2,3,2],[2,4,2,1],[1,1,0,1]],[[0,1,2,0],[2,2,3,2],[2,3,2,1],[2,1,0,1]],[[0,1,2,0],[3,2,3,2],[2,3,2,1],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[3,3,2,1],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[2,4,2,1],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[2,3,2,1],[2,1,1,0]],[[1,3,2,1],[2,2,3,1],[2,2,1,1],[1,2,0,0]],[[2,2,2,1],[2,2,3,1],[2,2,1,1],[1,2,0,0]],[[0,1,2,0],[3,2,3,2],[2,3,2,1],[1,2,0,0]],[[0,1,2,0],[2,2,3,2],[3,3,2,1],[1,2,0,0]],[[0,1,2,0],[2,2,3,2],[2,4,2,1],[1,2,0,0]],[[0,1,2,0],[2,2,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[2,2,3,1],[2,2,1,1],[2,1,1,0]],[[1,2,2,1],[2,2,3,1],[3,2,1,1],[1,1,1,0]],[[1,2,2,1],[3,2,3,1],[2,2,1,1],[1,1,1,0]],[[1,2,2,2],[2,2,3,1],[2,2,1,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[2,2,1,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,1],[2,2,1,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[2,2,1,1],[1,1,1,0]],[[1,2,2,1],[2,2,3,1],[2,2,1,1],[2,1,0,1]],[[1,2,2,1],[2,2,3,1],[3,2,1,1],[1,1,0,1]],[[1,2,2,1],[3,2,3,1],[2,2,1,1],[1,1,0,1]],[[1,2,2,2],[2,2,3,1],[2,2,1,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,1],[2,2,1,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,1],[2,2,1,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,1],[2,2,1,1],[1,1,0,1]],[[1,2,2,1],[2,2,3,1],[3,2,1,1],[1,0,2,0]],[[1,2,2,1],[3,2,3,1],[2,2,1,1],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[2,2,1,1],[1,0,2,0]],[[1,2,3,1],[2,2,3,1],[2,2,1,1],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[2,2,1,1],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[2,2,1,1],[1,0,2,0]],[[1,2,2,1],[2,2,3,1],[3,2,1,1],[1,0,1,1]],[[1,2,2,1],[3,2,3,1],[2,2,1,1],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[2,2,1,1],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[2,2,1,1],[1,0,1,1]],[[1,3,2,1],[2,2,3,1],[2,2,1,1],[1,0,1,1]],[[2,2,2,1],[2,2,3,1],[2,2,1,1],[1,0,1,1]],[[1,2,2,1],[2,2,3,1],[3,2,1,1],[0,2,1,0]],[[1,2,2,1],[3,2,3,1],[2,2,1,1],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[2,2,1,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[2,2,1,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[2,2,1,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[2,2,1,1],[0,2,1,0]],[[1,2,2,1],[2,2,3,1],[3,2,1,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,1],[2,2,1,1],[0,2,0,1]],[[1,2,2,2],[2,2,3,1],[2,2,1,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,1],[2,2,1,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,1],[2,2,1,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,1],[2,2,1,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,1],[2,2,1,1],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[2,2,1,1],[0,1,2,0]],[[1,2,3,1],[2,2,3,1],[2,2,1,1],[0,1,2,0]],[[1,3,2,1],[2,2,3,1],[2,2,1,1],[0,1,2,0]],[[2,2,2,1],[2,2,3,1],[2,2,1,1],[0,1,2,0]],[[1,2,2,1],[3,2,3,1],[2,2,1,1],[0,1,1,1]],[[1,2,2,2],[2,2,3,1],[2,2,1,1],[0,1,1,1]],[[1,2,3,1],[2,2,3,1],[2,2,1,1],[0,1,1,1]],[[1,3,2,1],[2,2,3,1],[2,2,1,1],[0,1,1,1]],[[2,2,2,1],[2,2,3,1],[2,2,1,1],[0,1,1,1]],[[1,2,2,1],[2,2,3,1],[2,2,1,0],[2,2,0,1]],[[1,2,2,1],[2,2,3,1],[3,2,1,0],[1,2,0,1]],[[1,2,2,1],[3,2,3,1],[2,2,1,0],[1,2,0,1]],[[1,2,2,2],[2,2,3,1],[2,2,1,0],[1,2,0,1]],[[1,2,3,1],[2,2,3,1],[2,2,1,0],[1,2,0,1]],[[1,3,2,1],[2,2,3,1],[2,2,1,0],[1,2,0,1]],[[2,2,2,1],[2,2,3,1],[2,2,1,0],[1,2,0,1]],[[1,2,2,1],[2,2,3,1],[2,2,1,0],[2,1,1,1]],[[1,2,2,1],[2,2,3,1],[3,2,1,0],[1,1,1,1]],[[1,2,2,1],[3,2,3,1],[2,2,1,0],[1,1,1,1]],[[1,2,2,2],[2,2,3,1],[2,2,1,0],[1,1,1,1]],[[1,2,3,1],[2,2,3,1],[2,2,1,0],[1,1,1,1]],[[1,3,2,1],[2,2,3,1],[2,2,1,0],[1,1,1,1]],[[2,2,2,1],[2,2,3,1],[2,2,1,0],[1,1,1,1]],[[1,2,2,1],[2,2,3,1],[3,2,1,0],[1,0,2,1]],[[1,2,2,1],[3,2,3,1],[2,2,1,0],[1,0,2,1]],[[1,2,2,2],[2,2,3,1],[2,2,1,0],[1,0,2,1]],[[1,2,3,1],[2,2,3,1],[2,2,1,0],[1,0,2,1]],[[1,3,2,1],[2,2,3,1],[2,2,1,0],[1,0,2,1]],[[2,2,2,1],[2,2,3,1],[2,2,1,0],[1,0,2,1]],[[1,2,2,1],[2,2,3,1],[3,2,1,0],[0,2,1,1]],[[1,2,2,1],[3,2,3,1],[2,2,1,0],[0,2,1,1]],[[1,2,2,2],[2,2,3,1],[2,2,1,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,1],[2,2,1,0],[0,2,1,1]],[[1,3,2,1],[2,2,3,1],[2,2,1,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,1],[2,2,1,0],[0,2,1,1]],[[1,2,2,1],[3,2,3,1],[2,2,1,0],[0,1,2,1]],[[1,2,2,2],[2,2,3,1],[2,2,1,0],[0,1,2,1]],[[1,2,3,1],[2,2,3,1],[2,2,1,0],[0,1,2,1]],[[1,3,2,1],[2,2,3,1],[2,2,1,0],[0,1,2,1]],[[2,2,2,1],[2,2,3,1],[2,2,1,0],[0,1,2,1]],[[0,1,2,0],[3,2,3,2],[2,3,3,0],[0,1,2,0]],[[0,1,2,0],[2,2,3,2],[3,3,3,0],[0,1,2,0]],[[0,1,2,0],[2,2,3,2],[2,4,3,0],[0,1,2,0]],[[0,1,2,0],[3,2,3,2],[2,3,3,0],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[3,3,3,0],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,4,3,0],[0,2,1,0]],[[0,1,2,0],[2,2,3,2],[2,3,3,0],[0,3,1,0]],[[0,1,2,0],[3,2,3,2],[2,3,3,0],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[3,3,3,0],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[2,4,3,0],[1,0,2,0]],[[0,1,2,0],[2,2,3,2],[2,3,3,0],[2,0,2,0]],[[0,1,2,0],[3,2,3,2],[2,3,3,0],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[3,3,3,0],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[2,4,3,0],[1,1,1,0]],[[0,1,2,0],[2,2,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[2,2,3,1],[2,2,0,2],[2,2,0,0]],[[1,2,2,1],[2,2,3,1],[3,2,0,2],[1,2,0,0]],[[1,2,2,1],[3,2,3,1],[2,2,0,2],[1,2,0,0]],[[1,2,2,2],[2,2,3,1],[2,2,0,2],[1,2,0,0]],[[1,2,3,1],[2,2,3,1],[2,2,0,2],[1,2,0,0]],[[1,3,2,1],[2,2,3,1],[2,2,0,2],[1,2,0,0]],[[2,2,2,1],[2,2,3,1],[2,2,0,2],[1,2,0,0]],[[0,1,2,0],[3,2,3,2],[2,3,3,0],[1,2,0,0]],[[0,1,2,0],[2,2,3,2],[3,3,3,0],[1,2,0,0]],[[0,1,2,0],[2,2,3,2],[2,4,3,0],[1,2,0,0]],[[0,1,2,0],[2,2,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[2,2,3,1],[2,2,0,2],[2,1,1,0]],[[1,2,2,1],[2,2,3,1],[3,2,0,2],[1,1,1,0]],[[1,2,2,1],[3,2,3,1],[2,2,0,2],[1,1,1,0]],[[1,2,2,2],[2,2,3,1],[2,2,0,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[2,2,0,2],[1,1,1,0]],[[1,3,2,1],[2,2,3,1],[2,2,0,2],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[2,2,0,2],[1,1,1,0]],[[1,2,2,1],[2,2,3,1],[2,2,0,2],[2,1,0,1]],[[1,2,2,1],[2,2,3,1],[3,2,0,2],[1,1,0,1]],[[1,2,2,1],[3,2,3,1],[2,2,0,2],[1,1,0,1]],[[1,2,2,2],[2,2,3,1],[2,2,0,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,1],[2,2,0,2],[1,1,0,1]],[[1,3,2,1],[2,2,3,1],[2,2,0,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,1],[2,2,0,2],[1,1,0,1]],[[0,1,2,0],[3,2,3,2],[2,3,3,1],[0,2,0,0]],[[0,1,2,0],[2,2,3,2],[3,3,3,1],[0,2,0,0]],[[0,1,2,0],[2,2,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,2,3,1],[3,2,0,2],[1,0,2,0]],[[1,2,2,1],[3,2,3,1],[2,2,0,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[2,2,0,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,1],[2,2,0,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[2,2,0,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[2,2,0,2],[1,0,2,0]],[[1,2,2,1],[2,2,3,1],[3,2,0,2],[1,0,1,1]],[[1,2,2,1],[3,2,3,1],[2,2,0,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[2,2,0,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[2,2,0,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,1],[2,2,0,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,1],[2,2,0,2],[1,0,1,1]],[[1,2,2,1],[2,2,3,1],[3,2,0,2],[0,2,1,0]],[[1,2,2,1],[3,2,3,1],[2,2,0,2],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[2,2,0,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[2,2,0,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[2,2,0,2],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[2,2,0,2],[0,2,1,0]],[[1,2,2,1],[2,2,3,1],[3,2,0,2],[0,2,0,1]],[[1,2,2,1],[3,2,3,1],[2,2,0,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,1],[2,2,0,2],[0,2,0,1]],[[1,2,3,1],[2,2,3,1],[2,2,0,2],[0,2,0,1]],[[0,1,2,0],[3,2,3,2],[2,3,3,1],[1,1,0,0]],[[0,1,2,0],[2,2,3,2],[3,3,3,1],[1,1,0,0]],[[0,1,2,0],[2,2,3,2],[2,4,3,1],[1,1,0,0]],[[0,1,2,0],[2,2,3,2],[2,3,3,1],[2,1,0,0]],[[1,3,2,1],[2,2,3,1],[2,2,0,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,1],[2,2,0,2],[0,2,0,1]],[[1,2,2,1],[3,2,3,1],[2,2,0,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[2,2,0,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,1],[2,2,0,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,1],[2,2,0,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,1],[2,2,0,2],[0,1,2,0]],[[1,2,2,1],[3,2,3,1],[2,2,0,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,1],[2,2,0,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,1],[2,2,0,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,1],[2,2,0,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,1],[2,2,0,2],[0,1,1,1]],[[1,2,2,1],[2,2,3,1],[2,2,0,1],[2,1,2,0]],[[1,2,2,1],[2,2,3,1],[3,2,0,1],[1,1,2,0]],[[1,2,2,1],[3,2,3,1],[2,2,0,1],[1,1,2,0]],[[1,2,2,2],[2,2,3,1],[2,2,0,1],[1,1,2,0]],[[1,2,3,1],[2,2,3,1],[2,2,0,1],[1,1,2,0]],[[1,3,2,1],[2,2,3,1],[2,2,0,1],[1,1,2,0]],[[2,2,2,1],[2,2,3,1],[2,2,0,1],[1,1,2,0]],[[1,2,2,1],[2,2,3,1],[3,2,0,1],[0,2,2,0]],[[1,2,2,1],[3,2,3,1],[2,2,0,1],[0,2,2,0]],[[1,2,2,2],[2,2,3,1],[2,2,0,1],[0,2,2,0]],[[1,2,3,1],[2,2,3,1],[2,2,0,1],[0,2,2,0]],[[1,3,2,1],[2,2,3,1],[2,2,0,1],[0,2,2,0]],[[2,2,2,1],[2,2,3,1],[2,2,0,1],[0,2,2,0]],[[1,2,2,1],[2,2,3,1],[2,2,0,0],[2,1,2,1]],[[1,2,2,1],[2,2,3,1],[3,2,0,0],[1,1,2,1]],[[1,2,2,1],[3,2,3,1],[2,2,0,0],[1,1,2,1]],[[1,2,2,2],[2,2,3,1],[2,2,0,0],[1,1,2,1]],[[1,2,3,1],[2,2,3,1],[2,2,0,0],[1,1,2,1]],[[1,3,2,1],[2,2,3,1],[2,2,0,0],[1,1,2,1]],[[2,2,2,1],[2,2,3,1],[2,2,0,0],[1,1,2,1]],[[1,2,2,1],[2,2,3,1],[3,2,0,0],[0,2,2,1]],[[1,2,2,1],[3,2,3,1],[2,2,0,0],[0,2,2,1]],[[1,2,2,2],[2,2,3,1],[2,2,0,0],[0,2,2,1]],[[1,2,3,1],[2,2,3,1],[2,2,0,0],[0,2,2,1]],[[1,3,2,1],[2,2,3,1],[2,2,0,0],[0,2,2,1]],[[2,2,2,1],[2,2,3,1],[2,2,0,0],[0,2,2,1]],[[0,1,2,0],[2,3,0,1],[0,4,3,2],[1,2,2,1]],[[0,1,2,0],[2,3,0,1],[0,3,3,2],[2,2,2,1]],[[0,1,2,0],[2,3,0,1],[0,3,3,2],[1,3,2,1]],[[0,1,2,0],[2,3,0,1],[0,3,3,2],[1,2,3,1]],[[0,1,2,0],[2,3,0,1],[0,3,3,2],[1,2,2,2]],[[0,1,2,0],[2,3,0,1],[1,4,3,2],[0,2,2,1]],[[0,1,2,0],[2,3,0,1],[1,3,3,2],[0,3,2,1]],[[0,1,2,0],[2,3,0,1],[1,3,3,2],[0,2,3,1]],[[0,1,2,0],[2,3,0,1],[1,3,3,2],[0,2,2,2]],[[0,1,2,0],[2,3,0,2],[0,2,3,3],[1,2,2,1]],[[0,1,2,0],[2,3,0,2],[0,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,3,0,2],[0,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,3,0,2],[0,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,3,0,2],[0,2,3,2],[1,2,2,2]],[[0,1,2,0],[2,3,0,2],[0,4,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,0,2],[0,3,2,3],[1,2,2,1]],[[0,1,2,0],[2,3,0,2],[0,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,3,0,2],[0,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,3,0,2],[0,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,0,2],[0,3,2,2],[1,2,2,2]],[[0,1,2,0],[2,3,0,2],[0,4,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,0,2],[0,3,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,0,2],[0,3,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,0,2],[0,3,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,0,2],[0,3,3,1],[1,2,2,2]],[[0,1,2,0],[2,3,0,2],[0,3,3,3],[1,1,2,1]],[[0,1,2,0],[2,3,0,2],[0,3,3,2],[1,1,3,1]],[[0,1,2,0],[2,3,0,2],[0,3,3,2],[1,1,2,2]],[[0,1,2,0],[2,3,0,2],[0,4,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,0,2],[0,3,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,0,2],[0,3,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,0,2],[0,3,3,2],[1,2,3,0]],[[0,1,2,0],[2,3,0,2],[1,2,3,3],[0,2,2,1]],[[0,1,2,0],[2,3,0,2],[1,2,3,2],[0,3,2,1]],[[0,1,2,0],[2,3,0,2],[1,2,3,2],[0,2,3,1]],[[0,1,2,0],[2,3,0,2],[1,2,3,2],[0,2,2,2]],[[0,1,2,0],[2,3,0,2],[1,4,2,2],[0,2,2,1]],[[0,1,2,0],[2,3,0,2],[1,3,2,3],[0,2,2,1]],[[0,1,2,0],[2,3,0,2],[1,3,2,2],[0,3,2,1]],[[0,1,2,0],[2,3,0,2],[1,3,2,2],[0,2,3,1]],[[0,1,2,0],[2,3,0,2],[1,3,2,2],[0,2,2,2]],[[0,1,2,0],[2,3,0,2],[1,4,3,1],[0,2,2,1]],[[0,1,2,0],[2,3,0,2],[1,3,3,1],[0,3,2,1]],[[0,1,2,0],[2,3,0,2],[1,3,3,1],[0,2,3,1]],[[0,1,2,0],[2,3,0,2],[1,3,3,1],[0,2,2,2]],[[0,1,2,0],[2,3,0,2],[1,3,3,3],[0,1,2,1]],[[0,1,2,0],[2,3,0,2],[1,3,3,2],[0,1,3,1]],[[0,1,2,0],[2,3,0,2],[1,3,3,2],[0,1,2,2]],[[0,1,2,0],[2,3,0,2],[1,4,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,0,2],[1,3,3,2],[0,3,2,0]],[[0,1,2,0],[2,3,0,2],[1,3,3,2],[0,2,3,0]],[[0,1,2,0],[2,3,0,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,0],[2,3,0,2],[1,3,3,2],[1,0,3,1]],[[0,1,2,0],[2,3,0,2],[1,3,3,2],[1,0,2,2]],[[0,1,2,0],[2,3,0,2],[3,0,3,2],[1,2,2,1]],[[0,1,2,0],[2,3,0,2],[2,0,3,3],[1,2,2,1]],[[0,1,2,0],[2,3,0,2],[2,0,3,2],[2,2,2,1]],[[0,1,2,0],[2,3,0,2],[2,0,3,2],[1,3,2,1]],[[0,1,2,0],[2,3,0,2],[2,0,3,2],[1,2,3,1]],[[0,1,2,0],[2,3,0,2],[2,0,3,2],[1,2,2,2]],[[0,1,2,0],[2,3,1,0],[0,4,3,2],[1,2,2,1]],[[0,1,2,0],[2,3,1,0],[0,3,3,2],[2,2,2,1]],[[0,1,2,0],[2,3,1,0],[0,3,3,2],[1,3,2,1]],[[0,1,2,0],[2,3,1,0],[0,3,3,2],[1,2,3,1]],[[0,1,2,0],[2,3,1,0],[0,3,3,2],[1,2,2,2]],[[0,1,2,0],[2,3,1,0],[1,4,3,2],[0,2,2,1]],[[0,1,2,0],[2,3,1,0],[1,3,3,2],[0,3,2,1]],[[0,1,2,0],[2,3,1,0],[1,3,3,2],[0,2,3,1]],[[0,1,2,0],[2,3,1,0],[1,3,3,2],[0,2,2,2]],[[1,2,2,1],[2,2,3,1],[2,1,1,1],[2,2,1,0]],[[1,2,2,1],[2,2,3,1],[3,1,1,1],[1,2,1,0]],[[1,2,2,1],[3,2,3,1],[2,1,1,1],[1,2,1,0]],[[1,2,2,2],[2,2,3,1],[2,1,1,1],[1,2,1,0]],[[0,1,2,0],[2,3,1,1],[0,4,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,1,1],[0,3,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,1,1],[0,3,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,1,1],[0,3,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,1,1],[0,3,3,1],[1,2,2,2]],[[0,1,2,0],[2,3,1,1],[0,4,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,1,1],[0,3,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,1,1],[0,3,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,1,1],[0,3,3,2],[1,2,3,0]],[[0,1,2,0],[2,3,1,1],[1,4,3,1],[0,2,2,1]],[[0,1,2,0],[2,3,1,1],[1,3,3,1],[0,3,2,1]],[[0,1,2,0],[2,3,1,1],[1,3,3,1],[0,2,3,1]],[[0,1,2,0],[2,3,1,1],[1,3,3,1],[0,2,2,2]],[[0,1,2,0],[2,3,1,1],[1,4,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,1,1],[1,3,3,2],[0,3,2,0]],[[0,1,2,0],[2,3,1,1],[1,3,3,2],[0,2,3,0]],[[1,2,3,1],[2,2,3,1],[2,1,1,1],[1,2,1,0]],[[1,3,2,1],[2,2,3,1],[2,1,1,1],[1,2,1,0]],[[2,2,2,1],[2,2,3,1],[2,1,1,1],[1,2,1,0]],[[1,2,2,1],[2,2,3,1],[2,1,1,1],[2,2,0,1]],[[1,2,2,1],[2,2,3,1],[3,1,1,1],[1,2,0,1]],[[1,2,2,1],[3,2,3,1],[2,1,1,1],[1,2,0,1]],[[1,2,2,2],[2,2,3,1],[2,1,1,1],[1,2,0,1]],[[1,2,3,1],[2,2,3,1],[2,1,1,1],[1,2,0,1]],[[1,3,2,1],[2,2,3,1],[2,1,1,1],[1,2,0,1]],[[2,2,2,1],[2,2,3,1],[2,1,1,1],[1,2,0,1]],[[1,2,2,1],[2,2,3,1],[2,1,1,0],[2,2,1,1]],[[1,2,2,1],[2,2,3,1],[3,1,1,0],[1,2,1,1]],[[1,2,2,1],[3,2,3,1],[2,1,1,0],[1,2,1,1]],[[1,2,2,2],[2,2,3,1],[2,1,1,0],[1,2,1,1]],[[1,2,3,1],[2,2,3,1],[2,1,1,0],[1,2,1,1]],[[1,3,2,1],[2,2,3,1],[2,1,1,0],[1,2,1,1]],[[2,2,2,1],[2,2,3,1],[2,1,1,0],[1,2,1,1]],[[0,1,2,0],[2,3,1,3],[0,2,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,3,1,2],[0,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,1,2],[0,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,3,1,2],[0,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,1,2],[0,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,1,2],[0,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,3,1,3],[0,2,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,1,2],[0,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,3,1,2],[0,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,3,1,2],[0,2,3,2],[1,2,1,2]],[[0,1,2,0],[2,3,1,3],[0,2,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,1,2],[0,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,3,1,2],[0,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,3,1,2],[0,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,1,2],[0,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,1,2],[0,2,3,2],[1,2,3,0]],[[0,1,2,0],[3,3,1,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,4,1,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,1,3],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,4,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,1,3],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,3,1,2],[0,3,1,2],[1,2,2,2]],[[0,1,2,0],[3,3,1,2],[0,3,2,1],[1,2,2,1]],[[0,1,2,0],[2,4,1,2],[0,3,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,4,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,3,1,2],[0,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,3,1,3],[0,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,2,3],[1,1,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,2,2],[1,1,3,1]],[[0,1,2,0],[2,3,1,2],[0,3,2,2],[1,1,2,2]],[[0,1,2,0],[3,3,1,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[2,4,1,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,1,2],[0,4,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,1,2],[0,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,3,1,2],[0,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,3,1,2],[0,3,2,2],[1,2,3,0]],[[0,1,2,0],[3,3,1,2],[0,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,4,1,2],[0,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,3,1,2],[0,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,1],[1,1,2,2]],[[0,1,2,0],[3,3,1,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,4,1,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,1,2],[0,4,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,1,2],[0,3,4,1],[1,2,1,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,3,1,3],[0,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,3],[1,0,2,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,2],[1,0,2,2]],[[0,1,2,0],[3,3,1,2],[0,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,4,1,2],[0,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,1,3],[0,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,1,2],[0,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,1,2],[0,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,3],[1,1,1,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,2],[1,1,1,2]],[[0,1,2,0],[3,3,1,2],[0,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,4,1,2],[0,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,1,3],[0,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,1,2],[0,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,1,2],[0,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,3,1,2],[0,3,3,3],[1,1,2,0]],[[0,1,2,0],[2,3,1,2],[0,3,3,2],[1,1,3,0]],[[0,1,2,0],[3,3,1,2],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,4,1,2],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,1,3],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,1,2],[0,4,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,1,2],[0,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,3],[1,2,0,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,3,1,2],[0,3,3,2],[1,2,0,2]],[[0,1,2,0],[3,3,1,2],[0,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,4,1,2],[0,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,1,3],[0,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,1,2],[0,4,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,1,2],[0,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,3,1,2],[0,3,3,3],[1,2,1,0]],[[0,1,2,0],[2,3,1,2],[0,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,3,1,2],[0,3,3,2],[1,3,1,0]],[[0,1,2,0],[2,3,1,3],[1,2,2,2],[0,2,2,1]],[[0,1,2,0],[2,3,1,2],[1,2,2,3],[0,2,2,1]],[[0,1,2,0],[2,3,1,2],[1,2,2,2],[0,3,2,1]],[[0,1,2,0],[2,3,1,2],[1,2,2,2],[0,2,3,1]],[[0,1,2,0],[2,3,1,2],[1,2,2,2],[0,2,2,2]],[[0,1,2,0],[2,3,1,2],[1,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,3,1,2],[1,2,3,1],[0,3,2,1]],[[0,1,2,0],[2,3,1,2],[1,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,3,1,2],[1,2,3,1],[0,2,2,2]],[[0,1,2,0],[2,3,1,3],[1,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,1,2],[1,2,4,2],[0,2,1,1]],[[0,1,2,0],[2,3,1,2],[1,2,3,3],[0,2,1,1]],[[0,1,2,0],[2,3,1,2],[1,2,3,2],[0,2,1,2]],[[0,1,2,0],[2,3,1,3],[1,2,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,1,2],[1,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,3,1,2],[1,2,3,3],[0,2,2,0]],[[0,1,2,0],[2,3,1,2],[1,2,3,2],[0,3,2,0]],[[0,1,2,0],[2,3,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,2,3,1],[2,1,0,2],[2,2,1,0]],[[1,2,2,1],[2,2,3,1],[3,1,0,2],[1,2,1,0]],[[1,2,2,1],[3,2,3,1],[2,1,0,2],[1,2,1,0]],[[1,2,2,2],[2,2,3,1],[2,1,0,2],[1,2,1,0]],[[1,2,3,1],[2,2,3,1],[2,1,0,2],[1,2,1,0]],[[0,1,2,0],[3,3,1,2],[1,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,4,1,2],[1,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,1,3],[1,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,1,2],[1,4,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,1,3],[0,2,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,1,2],[0,3,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,1,2],[0,2,3,1]],[[0,1,2,0],[2,3,1,2],[1,3,1,2],[0,2,2,2]],[[0,1,2,0],[3,3,1,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,4,1,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,1,2],[1,4,1,2],[1,1,2,1]],[[0,1,2,0],[3,3,1,2],[1,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,4,1,2],[1,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,3,1,2],[1,4,2,1],[0,2,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,2,1],[0,3,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,2,1],[0,2,3,1]],[[0,1,2,0],[2,3,1,2],[1,3,2,1],[0,2,2,2]],[[0,1,2,0],[3,3,1,2],[1,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,4,1,2],[1,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,1,2],[1,4,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,1,3],[1,3,2,2],[0,1,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,3,1,2],[1,3,2,2],[0,1,2,2]],[[0,1,2,0],[3,3,1,2],[1,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,4,1,2],[1,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,1,2],[1,4,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,1,2],[1,3,2,2],[0,3,2,0]],[[0,1,2,0],[2,3,1,2],[1,3,2,2],[0,2,3,0]],[[0,1,2,0],[2,3,1,3],[1,3,2,2],[1,0,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,2,3],[1,0,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,2,2],[1,0,3,1]],[[0,1,2,0],[2,3,1,2],[1,3,2,2],[1,0,2,2]],[[0,1,2,0],[3,3,1,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,4,1,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,1,2],[1,4,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,3,1],[2,1,0,2],[1,2,1,0]],[[2,2,2,1],[2,2,3,1],[2,1,0,2],[1,2,1,0]],[[1,2,2,1],[2,2,3,1],[2,1,0,2],[2,2,0,1]],[[1,2,2,1],[2,2,3,1],[3,1,0,2],[1,2,0,1]],[[1,2,2,1],[3,2,3,1],[2,1,0,2],[1,2,0,1]],[[1,2,2,2],[2,2,3,1],[2,1,0,2],[1,2,0,1]],[[1,2,3,1],[2,2,3,1],[2,1,0,2],[1,2,0,1]],[[1,3,2,1],[2,2,3,1],[2,1,0,2],[1,2,0,1]],[[2,2,2,1],[2,2,3,1],[2,1,0,2],[1,2,0,1]],[[0,1,2,0],[3,3,1,2],[1,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,4,1,2],[1,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,1,2],[1,4,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,1],[0,1,2,2]],[[0,1,2,0],[3,3,1,2],[1,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,4,1,2],[1,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,1,2],[1,4,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,1,2],[1,3,4,1],[0,2,1,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,1],[0,3,1,1]],[[0,1,2,0],[3,3,1,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,4,1,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,1,2],[1,4,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,4,1],[1,0,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,1],[1,0,3,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,1],[1,0,2,2]],[[0,1,2,0],[3,3,1,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,4,1,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,1,2],[1,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,1,2],[1,3,4,1],[1,1,1,1]],[[0,1,2,0],[2,3,1,3],[1,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,2],[0,0,2,2]],[[0,1,2,0],[3,3,1,2],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,4,1,2],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,1,3],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,1,2],[1,4,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,1,2],[1,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,2],[0,1,1,2]],[[0,1,2,0],[3,3,1,2],[1,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,4,1,2],[1,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,1,3],[1,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,1,2],[1,4,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,1,2],[1,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,3,1,2],[1,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,3,1,2],[1,3,3,2],[0,1,3,0]],[[0,1,2,0],[3,3,1,2],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,4,1,2],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,1,3],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,1,2],[1,4,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,1,2],[1,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,2],[0,3,0,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,2],[0,2,0,2]],[[0,1,2,0],[3,3,1,2],[1,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,4,1,2],[1,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,1,3],[1,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,1,2],[1,4,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,1,2],[1,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,3,1,2],[1,3,3,3],[0,2,1,0]],[[0,1,2,0],[2,3,1,2],[1,3,3,2],[0,3,1,0]],[[0,1,2,0],[3,3,1,2],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,4,1,2],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,1,3],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,1,2],[1,4,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,1,2],[1,3,4,2],[1,0,1,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,3],[1,0,1,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,2],[1,0,1,2]],[[0,1,2,0],[3,3,1,2],[1,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,4,1,2],[1,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,1,3],[1,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,1,2],[1,4,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,1,2],[1,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,3,1,2],[1,3,3,3],[1,0,2,0]],[[0,1,2,0],[2,3,1,2],[1,3,3,2],[1,0,3,0]],[[0,1,2,0],[3,3,1,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,4,1,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,1,3],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,1,2],[1,4,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,1,2],[1,3,4,2],[1,1,0,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,3],[1,1,0,1]],[[0,1,2,0],[2,3,1,2],[1,3,3,2],[1,1,0,2]],[[0,1,2,0],[3,3,1,2],[1,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,4,1,2],[1,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,1,3],[1,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,1,2],[1,4,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,1,2],[1,3,4,2],[1,1,1,0]],[[0,1,2,0],[2,3,1,2],[1,3,3,3],[1,1,1,0]],[[0,1,2,0],[3,3,1,2],[1,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,4,1,2],[1,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,3,1,2],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,2,3,1],[2,1,0,1],[1,3,2,0]],[[1,2,2,1],[2,2,3,1],[2,1,0,1],[2,2,2,0]],[[1,2,2,1],[2,2,3,1],[3,1,0,1],[1,2,2,0]],[[1,2,2,1],[3,2,3,1],[2,1,0,1],[1,2,2,0]],[[1,2,2,2],[2,2,3,1],[2,1,0,1],[1,2,2,0]],[[1,2,3,1],[2,2,3,1],[2,1,0,1],[1,2,2,0]],[[1,3,2,1],[2,2,3,1],[2,1,0,1],[1,2,2,0]],[[2,2,2,1],[2,2,3,1],[2,1,0,1],[1,2,2,0]],[[1,2,2,1],[2,2,3,1],[2,1,0,0],[1,3,2,1]],[[1,2,2,1],[2,2,3,1],[2,1,0,0],[2,2,2,1]],[[1,2,2,1],[2,2,3,1],[3,1,0,0],[1,2,2,1]],[[1,2,2,1],[3,2,3,1],[2,1,0,0],[1,2,2,1]],[[1,2,2,2],[2,2,3,1],[2,1,0,0],[1,2,2,1]],[[1,2,3,1],[2,2,3,1],[2,1,0,0],[1,2,2,1]],[[1,3,2,1],[2,2,3,1],[2,1,0,0],[1,2,2,1]],[[2,2,2,1],[2,2,3,1],[2,1,0,0],[1,2,2,1]],[[0,1,2,0],[3,3,1,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,4,1,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,1,3],[2,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[3,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[2,0,2,3],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[2,0,2,2],[2,2,2,1]],[[0,1,2,0],[2,3,1,2],[2,0,2,2],[1,3,2,1]],[[0,1,2,0],[2,3,1,2],[2,0,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,1,2],[2,0,2,2],[1,2,2,2]],[[0,1,2,0],[3,3,1,2],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,4,1,2],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[3,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[2,0,4,1],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[2,0,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,1,2],[2,0,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,1,2],[2,0,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,1,2],[2,0,3,1],[1,2,2,2]],[[0,1,2,0],[2,3,1,3],[2,0,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,1,2],[2,0,4,2],[1,2,1,1]],[[0,1,2,0],[2,3,1,2],[2,0,3,3],[1,2,1,1]],[[0,1,2,0],[2,3,1,2],[2,0,3,2],[1,2,1,2]],[[0,1,2,0],[3,3,1,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,4,1,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,1,3],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,1,2],[3,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,1,2],[2,0,4,2],[1,2,2,0]],[[0,1,2,0],[2,3,1,2],[2,0,3,3],[1,2,2,0]],[[0,1,2,0],[2,3,1,2],[2,0,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,1,2],[2,0,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,1,2],[2,0,3,2],[1,2,3,0]],[[0,1,2,0],[3,3,1,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,4,1,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,1,3],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[3,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[2,1,1,3],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[2,1,1,2],[2,2,2,1]],[[0,1,2,0],[2,3,1,2],[2,1,1,2],[1,3,2,1]],[[0,1,2,0],[2,3,1,2],[2,1,1,2],[1,2,3,1]],[[0,1,2,0],[2,3,1,2],[2,1,1,2],[1,2,2,2]],[[0,1,2,0],[3,3,1,2],[2,1,2,1],[1,2,2,1]],[[0,1,2,0],[2,4,1,2],[2,1,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[3,1,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,1,2],[2,1,2,1],[2,2,2,1]],[[0,1,2,0],[2,3,1,2],[2,1,2,1],[1,3,2,1]],[[0,1,2,0],[2,3,1,2],[2,1,2,1],[1,2,3,1]],[[0,1,2,0],[2,3,1,2],[2,1,2,1],[1,2,2,2]],[[0,1,2,0],[3,3,1,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,4,1,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,1,2],[3,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,1,2],[2,1,2,2],[2,2,2,0]],[[0,1,2,0],[2,3,1,2],[2,1,2,2],[1,3,2,0]],[[0,1,2,0],[2,3,1,2],[2,1,2,2],[1,2,3,0]],[[0,1,2,0],[3,3,1,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,4,1,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,1,2],[3,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,1,2],[2,1,3,1],[2,2,1,1]],[[0,1,2,0],[2,3,1,2],[2,1,3,1],[1,3,1,1]],[[0,1,2,0],[3,3,1,2],[2,1,3,2],[1,2,0,1]],[[0,1,2,0],[2,4,1,2],[2,1,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,1,2],[3,1,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,1,2],[2,1,3,2],[2,2,0,1]],[[0,1,2,0],[2,3,1,2],[2,1,3,2],[1,3,0,1]],[[0,1,2,0],[3,3,1,2],[2,1,3,2],[1,2,1,0]],[[0,1,2,0],[2,4,1,2],[2,1,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,1,2],[3,1,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,1,2],[2,1,3,2],[2,2,1,0]],[[0,1,2,0],[2,3,1,2],[2,1,3,2],[1,3,1,0]],[[0,1,2,0],[3,3,1,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[2,4,1,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,1,2],[3,2,1,2],[0,2,2,1]],[[0,1,2,0],[3,3,1,2],[2,2,1,2],[1,1,2,1]],[[0,1,2,0],[2,4,1,2],[2,2,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,1,2],[3,2,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,1,2],[2,2,1,2],[2,1,2,1]],[[0,1,2,0],[3,3,1,2],[2,2,2,1],[0,2,2,1]],[[0,1,2,0],[2,4,1,2],[2,2,2,1],[0,2,2,1]],[[0,1,2,0],[2,3,1,2],[3,2,2,1],[0,2,2,1]],[[0,1,2,0],[3,3,1,2],[2,2,2,1],[1,1,2,1]],[[0,1,2,0],[2,4,1,2],[2,2,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,1,2],[3,2,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,1,2],[2,2,2,1],[2,1,2,1]],[[0,1,2,0],[3,3,1,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,4,1,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,1,2],[3,2,2,2],[0,2,2,0]],[[0,1,2,0],[3,3,1,2],[2,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,4,1,2],[2,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,1,2],[3,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,1,2],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[2,2,4,1],[2,0,3,2],[1,0,0,1]],[[1,2,2,1],[3,2,3,1],[2,0,3,2],[1,0,0,1]],[[1,2,2,2],[2,2,3,1],[2,0,3,2],[1,0,0,1]],[[1,2,3,1],[2,2,3,1],[2,0,3,2],[1,0,0,1]],[[1,3,2,1],[2,2,3,1],[2,0,3,2],[1,0,0,1]],[[2,2,2,1],[2,2,3,1],[2,0,3,2],[1,0,0,1]],[[0,1,2,0],[3,3,1,2],[2,2,3,1],[0,1,2,1]],[[0,1,2,0],[2,4,1,2],[2,2,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,1,2],[3,2,3,1],[0,1,2,1]],[[0,1,2,0],[3,3,1,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,4,1,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,1,2],[3,2,3,1],[0,2,1,1]],[[0,1,2,0],[3,3,1,2],[2,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,4,1,2],[2,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,1,2],[3,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,1,2],[2,2,3,1],[2,0,2,1]],[[0,1,2,0],[3,3,1,2],[2,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,4,1,2],[2,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,1,2],[3,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,1,2],[2,2,3,1],[2,1,1,1]],[[0,1,2,0],[3,3,1,2],[2,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,4,1,2],[2,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,1,2],[3,2,3,2],[0,1,1,1]],[[0,1,2,0],[3,3,1,2],[2,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,4,1,2],[2,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,1,2],[3,2,3,2],[0,1,2,0]],[[0,1,2,0],[3,3,1,2],[2,2,3,2],[0,2,0,1]],[[0,1,2,0],[2,4,1,2],[2,2,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,1,2],[3,2,3,2],[0,2,0,1]],[[0,1,2,0],[3,3,1,2],[2,2,3,2],[0,2,1,0]],[[0,1,2,0],[2,4,1,2],[2,2,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,1,2],[3,2,3,2],[0,2,1,0]],[[0,1,2,0],[3,3,1,2],[2,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,4,1,2],[2,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,1,2],[3,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,1,2],[2,2,3,2],[2,0,1,1]],[[0,1,2,0],[3,3,1,2],[2,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,4,1,2],[2,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,1,2],[3,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,1,2],[2,2,3,2],[2,0,2,0]],[[0,1,2,0],[3,3,1,2],[2,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,4,1,2],[2,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,1,2],[3,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,1,2],[2,2,3,2],[2,1,0,1]],[[0,1,2,0],[3,3,1,2],[2,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,4,1,2],[2,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,1,2],[3,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,1,2],[2,2,3,2],[2,1,1,0]],[[0,1,2,0],[3,3,1,2],[2,2,3,2],[1,2,0,0]],[[0,1,2,0],[2,4,1,2],[2,2,3,2],[1,2,0,0]],[[0,1,2,0],[2,3,1,2],[3,2,3,2],[1,2,0,0]],[[0,1,2,0],[2,3,1,2],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[2,2,4,1],[2,0,3,2],[0,1,0,1]],[[1,2,2,1],[3,2,3,1],[2,0,3,2],[0,1,0,1]],[[1,2,2,2],[2,2,3,1],[2,0,3,2],[0,1,0,1]],[[1,2,3,1],[2,2,3,1],[2,0,3,2],[0,1,0,1]],[[1,3,2,1],[2,2,3,1],[2,0,3,2],[0,1,0,1]],[[2,2,2,1],[2,2,3,1],[2,0,3,2],[0,1,0,1]],[[1,2,2,1],[2,2,4,1],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,3,1],[2,0,3,1],[1,1,1,0]],[[1,2,2,2],[2,2,3,1],[2,0,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[2,0,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,1],[2,0,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,4,1],[2,0,3,1],[1,1,0,1]],[[1,2,2,1],[3,2,3,1],[2,0,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,3,1],[2,0,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,1],[2,0,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,1],[2,0,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,1],[2,0,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,4,1],[2,0,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,3,1],[2,0,3,1],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[2,0,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,3,1],[2,0,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[2,0,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[2,0,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,4,1],[2,0,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,3,1],[2,0,3,1],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[2,0,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[2,0,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,3,1],[2,0,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,3,1],[2,0,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,4,1],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,3,1],[2,0,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[2,0,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[2,0,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[2,0,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,4,1],[2,0,3,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,1],[2,0,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,3,1],[2,0,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,1],[2,0,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,1],[2,0,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,1],[2,0,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,4,1],[2,0,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,3,1],[2,0,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[2,0,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,3,1],[2,0,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,3,1],[2,0,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,3,1],[2,0,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,4,1],[2,0,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,3,1],[2,0,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,3,1],[2,0,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,3,1],[2,0,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,3,1],[2,0,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,3,1],[2,0,3,1],[0,1,1,1]],[[1,2,2,1],[2,2,4,1],[2,0,3,1],[0,0,2,1]],[[1,2,2,1],[3,2,3,1],[2,0,3,1],[0,0,2,1]],[[1,2,2,2],[2,2,3,1],[2,0,3,1],[0,0,2,1]],[[1,2,3,1],[2,2,3,1],[2,0,3,1],[0,0,2,1]],[[1,3,2,1],[2,2,3,1],[2,0,3,1],[0,0,2,1]],[[2,2,2,1],[2,2,3,1],[2,0,3,1],[0,0,2,1]],[[0,1,2,0],[3,3,1,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,4,1,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,3,1,2],[3,3,3,2],[1,0,0,1]],[[0,1,2,0],[3,3,1,2],[2,3,3,2],[1,0,1,0]],[[0,1,2,0],[2,4,1,2],[2,3,3,2],[1,0,1,0]],[[0,1,2,0],[2,3,1,2],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,2,4,1],[2,0,3,0],[1,1,1,1]],[[1,2,2,1],[3,2,3,1],[2,0,3,0],[1,1,1,1]],[[1,2,2,2],[2,2,3,1],[2,0,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,3,1],[2,0,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,3,1],[2,0,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,3,1],[2,0,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,4,1],[2,0,3,0],[1,0,2,1]],[[1,2,2,1],[3,2,3,1],[2,0,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,3,1],[2,0,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,3,1],[2,0,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,3,1],[2,0,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,3,1],[2,0,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,4,1],[2,0,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,3,1],[2,0,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,3,1],[2,0,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,1],[2,0,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,3,1],[2,0,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,1],[2,0,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,4,1],[2,0,3,0],[0,1,2,1]],[[1,2,2,1],[3,2,3,1],[2,0,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,3,1],[2,0,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,3,1],[2,0,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,3,1],[2,0,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,3,1],[2,0,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,4,1],[2,0,2,2],[1,1,1,0]],[[1,2,2,1],[3,2,3,1],[2,0,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,3,1],[2,0,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[2,0,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,3,1],[2,0,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[2,0,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,4,1],[2,0,2,2],[1,1,0,1]],[[1,2,2,1],[3,2,3,1],[2,0,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,3,1],[2,0,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,1],[2,0,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,2,0],[0,2,4,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,0],[0,2,3,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,0],[0,2,3,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,0],[0,2,3,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,0],[0,2,3,2],[1,2,2,2]],[[0,1,2,0],[3,3,2,0],[0,3,2,2],[1,2,2,1]],[[0,1,2,0],[2,4,2,0],[0,3,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,0],[0,4,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,0],[0,3,2,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,0],[0,3,2,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,0],[0,3,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,0],[0,3,2,2],[1,2,2,2]],[[0,1,2,0],[3,3,2,0],[0,3,3,2],[1,1,2,1]],[[0,1,2,0],[2,4,2,0],[0,3,3,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,0],[0,4,3,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,0],[0,3,4,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,0],[0,3,3,2],[1,1,3,1]],[[0,1,2,0],[2,3,2,0],[0,3,3,2],[1,1,2,2]],[[0,1,2,0],[3,3,2,0],[0,3,3,2],[1,2,1,1]],[[0,1,2,0],[2,4,2,0],[0,3,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,2,0],[0,4,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,2,0],[0,3,4,2],[1,2,1,1]],[[0,1,2,0],[2,3,2,0],[0,3,3,2],[2,2,1,1]],[[0,1,2,0],[2,3,2,0],[0,3,3,2],[1,3,1,1]],[[0,1,2,0],[2,3,2,0],[1,2,4,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,0],[1,2,3,2],[0,3,2,1]],[[0,1,2,0],[2,3,2,0],[1,2,3,2],[0,2,3,1]],[[0,1,2,0],[2,3,2,0],[1,2,3,2],[0,2,2,2]],[[0,1,2,0],[3,3,2,0],[1,3,2,2],[0,2,2,1]],[[0,1,2,0],[2,4,2,0],[1,3,2,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,0],[1,4,2,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,0],[1,3,2,2],[0,3,2,1]],[[0,1,2,0],[2,3,2,0],[1,3,2,2],[0,2,3,1]],[[0,1,2,0],[2,3,2,0],[1,3,2,2],[0,2,2,2]],[[0,1,2,0],[3,3,2,0],[1,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,4,2,0],[1,3,2,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,0],[1,4,2,2],[1,1,2,1]],[[0,1,2,0],[3,3,2,0],[1,3,3,2],[0,1,2,1]],[[0,1,2,0],[2,4,2,0],[1,3,3,2],[0,1,2,1]],[[0,1,2,0],[2,3,2,0],[1,4,3,2],[0,1,2,1]],[[0,1,2,0],[2,3,2,0],[1,3,4,2],[0,1,2,1]],[[0,1,2,0],[2,3,2,0],[1,3,3,2],[0,1,3,1]],[[0,1,2,0],[2,3,2,0],[1,3,3,2],[0,1,2,2]],[[0,1,2,0],[3,3,2,0],[1,3,3,2],[0,2,1,1]],[[0,1,2,0],[2,4,2,0],[1,3,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,2,0],[1,4,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,2,0],[1,3,4,2],[0,2,1,1]],[[0,1,2,0],[2,3,2,0],[1,3,3,2],[0,3,1,1]],[[0,1,2,0],[3,3,2,0],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,4,2,0],[1,3,3,2],[1,0,2,1]],[[0,1,2,0],[2,3,2,0],[1,4,3,2],[1,0,2,1]],[[0,1,2,0],[2,3,2,0],[1,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,3,2,0],[1,3,3,2],[1,0,3,1]],[[0,1,2,0],[2,3,2,0],[1,3,3,2],[1,0,2,2]],[[0,1,2,0],[3,3,2,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,4,2,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,2,0],[1,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,2,0],[1,3,4,2],[1,1,1,1]],[[1,3,2,1],[2,2,3,1],[2,0,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,1],[2,0,2,2],[1,1,0,1]],[[0,1,2,0],[3,3,2,0],[2,0,3,2],[1,2,2,1]],[[0,1,2,0],[2,4,2,0],[2,0,3,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,0],[3,0,3,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,0],[2,0,4,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,0],[2,0,3,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,0],[2,0,3,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,0],[2,0,3,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,0],[2,0,3,2],[1,2,2,2]],[[0,1,2,0],[3,3,2,0],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,4,2,0],[2,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,0],[3,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,0],[2,1,2,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,0],[2,1,2,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,0],[2,1,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,0],[2,1,2,2],[1,2,2,2]],[[0,1,2,0],[3,3,2,0],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,4,2,0],[2,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,2,0],[3,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,2,0],[2,1,3,2],[2,2,1,1]],[[0,1,2,0],[2,3,2,0],[2,1,3,2],[1,3,1,1]],[[0,1,2,0],[3,3,2,0],[2,2,2,2],[0,2,2,1]],[[0,1,2,0],[2,4,2,0],[2,2,2,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,0],[3,2,2,2],[0,2,2,1]],[[0,1,2,0],[3,3,2,0],[2,2,2,2],[1,1,2,1]],[[0,1,2,0],[2,4,2,0],[2,2,2,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,0],[3,2,2,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,0],[2,2,2,2],[2,1,2,1]],[[0,1,2,0],[3,3,2,0],[2,2,3,2],[0,1,2,1]],[[0,1,2,0],[2,4,2,0],[2,2,3,2],[0,1,2,1]],[[0,1,2,0],[2,3,2,0],[3,2,3,2],[0,1,2,1]],[[0,1,2,0],[3,3,2,0],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,4,2,0],[2,2,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,2,0],[3,2,3,2],[0,2,1,1]],[[0,1,2,0],[3,3,2,0],[2,2,3,2],[1,0,2,1]],[[0,1,2,0],[2,4,2,0],[2,2,3,2],[1,0,2,1]],[[0,1,2,0],[2,3,2,0],[3,2,3,2],[1,0,2,1]],[[0,1,2,0],[2,3,2,0],[2,2,3,2],[2,0,2,1]],[[0,1,2,0],[3,3,2,0],[2,2,3,2],[1,1,1,1]],[[0,1,2,0],[2,4,2,0],[2,2,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,2,0],[3,2,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,2,0],[2,2,3,2],[2,1,1,1]],[[1,2,2,1],[2,2,4,1],[2,0,2,2],[1,0,2,0]],[[1,2,2,1],[3,2,3,1],[2,0,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[2,0,2,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,1],[2,0,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[2,0,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[2,0,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,4,1],[2,0,2,2],[1,0,1,1]],[[1,2,2,1],[3,2,3,1],[2,0,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[2,0,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[2,0,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,1],[2,0,2,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,1],[2,0,2,2],[1,0,1,1]],[[1,2,2,1],[2,2,4,1],[2,0,2,2],[0,2,1,0]],[[1,2,2,1],[3,2,3,1],[2,0,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[2,0,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[2,0,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[2,0,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[2,0,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,4,1],[2,0,2,2],[0,2,0,1]],[[1,2,2,1],[3,2,3,1],[2,0,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,1],[2,0,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,3,1],[2,0,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,3,1],[2,0,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,1],[2,0,2,2],[0,2,0,1]],[[1,2,2,1],[2,2,4,1],[2,0,2,2],[0,1,2,0]],[[1,2,2,1],[3,2,3,1],[2,0,2,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[2,0,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,1],[2,0,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,2,1],[0,2,2,3],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,2,2,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,2,2,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,1],[0,2,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,1],[0,2,2,2],[1,2,2,2]],[[0,1,2,0],[2,3,2,1],[0,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,2,1],[0,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,2,1],[0,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,3,2,1],[0,2,4,2],[1,2,1,1]],[[0,1,2,0],[2,3,2,1],[0,2,3,3],[1,2,1,1]],[[0,1,2,0],[2,3,2,1],[0,2,3,2],[1,2,1,2]],[[0,1,2,0],[2,3,2,1],[0,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,1],[0,2,3,3],[1,2,2,0]],[[0,1,2,0],[2,3,2,1],[0,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,2,1],[0,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,2,1],[0,2,3,2],[1,2,3,0]],[[0,1,2,0],[3,3,2,1],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,4,2,1],[0,3,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,4,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,1,3],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,1,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,1,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,1,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,1],[0,3,1,2],[1,2,2,2]],[[0,1,2,0],[3,3,2,1],[0,3,2,1],[1,2,2,1]],[[0,1,2,0],[2,4,2,1],[0,3,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,4,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,3,2,1],[0,3,2,1],[1,2,2,2]],[[0,1,2,0],[2,3,2,1],[0,3,2,3],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,2,2],[1,1,3,1]],[[0,1,2,0],[2,3,2,1],[0,3,2,2],[1,1,2,2]],[[0,1,2,0],[3,3,2,1],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[2,4,2,1],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,1],[0,4,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,1],[0,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,3,2,1],[0,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,3,2,1],[0,3,2,2],[1,2,3,0]],[[0,1,2,0],[3,3,2,1],[0,3,3,0],[1,2,2,1]],[[0,1,2,0],[2,4,2,1],[0,3,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,4,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,0],[2,2,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,0],[1,3,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,0],[1,2,3,1]],[[0,1,2,0],[3,3,2,1],[0,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,4,2,1],[0,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[0,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,1],[1,1,2,2]],[[0,1,2,0],[3,3,2,1],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,4,2,1],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,2,1],[0,4,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,2,1],[0,3,4,1],[1,2,1,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,3,2,1],[0,3,4,2],[1,0,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,3],[1,0,2,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,2],[1,0,2,2]],[[0,1,2,0],[3,3,2,1],[0,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,4,2,1],[0,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,2,1],[0,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,2,1],[0,3,4,2],[1,1,1,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,3],[1,1,1,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,2],[1,1,1,2]],[[0,1,2,0],[3,3,2,1],[0,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,4,2,1],[0,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,2,1],[0,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,2,1],[0,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,3,2,1],[0,3,3,3],[1,1,2,0]],[[0,1,2,0],[2,3,2,1],[0,3,3,2],[1,1,3,0]],[[0,1,2,0],[3,3,2,1],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,4,2,1],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,2,1],[0,4,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,2,1],[0,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,3],[1,2,0,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,2],[1,3,0,1]],[[0,1,2,0],[2,3,2,1],[0,3,3,2],[1,2,0,2]],[[0,1,2,0],[3,3,2,1],[0,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,4,2,1],[0,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,2,1],[0,4,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,2,1],[0,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,3,2,1],[0,3,3,3],[1,2,1,0]],[[0,1,2,0],[2,3,2,1],[0,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,3,2,1],[2,2,3,1],[2,0,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,1],[2,0,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,4,1],[2,0,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,3,1],[2,0,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,1],[2,0,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,1],[2,0,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,1],[2,0,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,1],[2,0,2,2],[0,1,1,1]],[[1,2,2,1],[2,2,4,1],[2,0,2,2],[0,0,2,1]],[[0,1,2,0],[2,3,2,1],[1,2,2,3],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[1,2,2,2],[0,3,2,1]],[[0,1,2,0],[2,3,2,1],[1,2,2,2],[0,2,3,1]],[[0,1,2,0],[2,3,2,1],[1,2,2,2],[0,2,2,2]],[[0,1,2,0],[2,3,2,1],[1,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[1,2,3,1],[0,3,2,1]],[[0,1,2,0],[2,3,2,1],[1,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,3,2,1],[1,2,3,1],[0,2,2,2]],[[0,1,2,0],[2,3,2,1],[1,2,4,2],[0,2,1,1]],[[0,1,2,0],[2,3,2,1],[1,2,3,3],[0,2,1,1]],[[0,1,2,0],[2,3,2,1],[1,2,3,2],[0,2,1,2]],[[0,1,2,0],[2,3,2,1],[1,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,3,2,1],[1,2,3,3],[0,2,2,0]],[[0,1,2,0],[2,3,2,1],[1,2,3,2],[0,3,2,0]],[[0,1,2,0],[2,3,2,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[3,2,3,1],[2,0,2,2],[0,0,2,1]],[[1,2,2,2],[2,2,3,1],[2,0,2,2],[0,0,2,1]],[[1,2,3,1],[2,2,3,1],[2,0,2,2],[0,0,2,1]],[[1,3,2,1],[2,2,3,1],[2,0,2,2],[0,0,2,1]],[[2,2,2,1],[2,2,3,1],[2,0,2,2],[0,0,2,1]],[[0,1,2,0],[3,3,2,1],[1,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,4,2,1],[1,3,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[1,4,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,1,3],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,1,2],[0,3,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,1,2],[0,2,3,1]],[[0,1,2,0],[2,3,2,1],[1,3,1,2],[0,2,2,2]],[[0,1,2,0],[3,3,2,1],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,4,2,1],[1,3,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[1,4,1,2],[1,1,2,1]],[[0,1,2,0],[3,3,2,1],[1,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,4,2,1],[1,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[1,4,2,1],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,2,1],[0,3,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,2,1],[0,2,3,1]],[[0,1,2,0],[2,3,2,1],[1,3,2,1],[0,2,2,2]],[[0,1,2,0],[3,3,2,1],[1,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,4,2,1],[1,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[1,4,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,3,2,1],[1,3,2,2],[0,1,2,2]],[[0,1,2,0],[3,3,2,1],[1,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,4,2,1],[1,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,2,1],[1,4,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,2,1],[1,3,2,2],[0,3,2,0]],[[0,1,2,0],[2,3,2,1],[1,3,2,2],[0,2,3,0]],[[0,1,2,0],[2,3,2,1],[1,3,2,3],[1,0,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,2,2],[1,0,3,1]],[[0,1,2,0],[2,3,2,1],[1,3,2,2],[1,0,2,2]],[[0,1,2,0],[3,3,2,1],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,4,2,1],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,2,1],[1,4,2,2],[1,1,2,0]],[[0,1,2,0],[3,3,2,1],[1,3,3,0],[0,2,2,1]],[[0,1,2,0],[2,4,2,1],[1,3,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[1,4,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,0],[0,3,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,0],[0,2,3,1]],[[0,1,2,0],[3,3,2,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,4,2,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[1,4,3,0],[1,1,2,1]],[[0,1,2,0],[3,3,2,1],[1,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,4,2,1],[1,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,2,1],[1,4,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,1],[0,1,2,2]],[[0,1,2,0],[3,3,2,1],[1,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,4,2,1],[1,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,2,1],[1,4,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,2,1],[1,3,4,1],[0,2,1,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,1],[0,3,1,1]],[[0,1,2,0],[3,3,2,1],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,4,2,1],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,2,1],[1,4,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,4,1],[1,0,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,1],[1,0,3,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,1],[1,0,2,2]],[[0,1,2,0],[3,3,2,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,4,2,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,2,1],[1,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,2,1],[1,3,4,1],[1,1,1,1]],[[0,1,2,0],[3,3,2,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,4,2,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,2,1],[1,4,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,2,1],[1,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,2],[0,0,2,2]],[[0,1,2,0],[3,3,2,1],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,4,2,1],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,2,1],[1,4,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,2,1],[1,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,2],[0,1,1,2]],[[0,1,2,0],[3,3,2,1],[1,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,4,2,1],[1,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,2,1],[1,4,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,2,1],[1,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,3,2,1],[1,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,3,2,1],[1,3,3,2],[0,1,3,0]],[[0,1,2,0],[3,3,2,1],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,4,2,1],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,2,1],[1,4,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,2,1],[1,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,2],[0,3,0,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,2],[0,2,0,2]],[[0,1,2,0],[3,3,2,1],[1,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,4,2,1],[1,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,2,1],[1,4,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,2,1],[1,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,3,2,1],[1,3,3,3],[0,2,1,0]],[[0,1,2,0],[2,3,2,1],[1,3,3,2],[0,3,1,0]],[[0,1,2,0],[3,3,2,1],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,4,2,1],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,2,1],[1,4,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,2,1],[1,3,4,2],[1,0,1,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,3],[1,0,1,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,2],[1,0,1,2]],[[0,1,2,0],[3,3,2,1],[1,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,4,2,1],[1,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,2,1],[1,4,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,2,1],[1,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,3,2,1],[1,3,3,3],[1,0,2,0]],[[0,1,2,0],[2,3,2,1],[1,3,3,2],[1,0,3,0]],[[0,1,2,0],[3,3,2,1],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,4,2,1],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,2,1],[1,4,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,2,1],[1,3,4,2],[1,1,0,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,3],[1,1,0,1]],[[0,1,2,0],[2,3,2,1],[1,3,3,2],[1,1,0,2]],[[0,1,2,0],[3,3,2,1],[1,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,4,2,1],[1,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,2,1],[1,4,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,2,1],[1,3,4,2],[1,1,1,0]],[[0,1,2,0],[2,3,2,1],[1,3,3,3],[1,1,1,0]],[[0,1,2,0],[3,3,2,1],[1,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,4,2,1],[1,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,2,4,1],[2,0,1,2],[1,0,2,1]],[[1,2,2,1],[3,2,3,1],[2,0,1,2],[1,0,2,1]],[[1,2,2,2],[2,2,3,1],[2,0,1,2],[1,0,2,1]],[[1,2,3,1],[2,2,3,1],[2,0,1,2],[1,0,2,1]],[[1,3,2,1],[2,2,3,1],[2,0,1,2],[1,0,2,1]],[[2,2,2,1],[2,2,3,1],[2,0,1,2],[1,0,2,1]],[[0,1,2,0],[3,3,2,1],[2,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,4,2,1],[2,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[3,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,0,2,3],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,0,2,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,0,2,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,1],[2,0,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,1],[2,0,2,2],[1,2,2,2]],[[0,1,2,0],[3,3,2,1],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,4,2,1],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[3,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,0,4,1],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,0,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,0,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,2,1],[2,0,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,2,1],[2,0,3,1],[1,2,2,2]],[[0,1,2,0],[2,3,2,1],[2,0,4,2],[1,2,1,1]],[[0,1,2,0],[2,3,2,1],[2,0,3,3],[1,2,1,1]],[[0,1,2,0],[2,3,2,1],[2,0,3,2],[1,2,1,2]],[[0,1,2,0],[3,3,2,1],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,4,2,1],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,1],[3,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,1],[2,0,4,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,1],[2,0,3,3],[1,2,2,0]],[[0,1,2,0],[2,3,2,1],[2,0,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,2,1],[2,0,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,2,1],[2,0,3,2],[1,2,3,0]],[[0,1,2,0],[3,3,2,1],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,4,2,1],[2,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[3,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,1,1,3],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,1,1,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,1,1,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,1],[2,1,1,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,1],[2,1,1,2],[1,2,2,2]],[[0,1,2,0],[3,3,2,1],[2,1,2,1],[1,2,2,1]],[[0,1,2,0],[2,4,2,1],[2,1,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[3,1,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,1,2,1],[2,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,1,2,1],[1,3,2,1]],[[0,1,2,0],[2,3,2,1],[2,1,2,1],[1,2,3,1]],[[0,1,2,0],[2,3,2,1],[2,1,2,1],[1,2,2,2]],[[0,1,2,0],[3,3,2,1],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,4,2,1],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,1],[3,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,1],[2,1,2,2],[2,2,2,0]],[[0,1,2,0],[2,3,2,1],[2,1,2,2],[1,3,2,0]],[[0,1,2,0],[2,3,2,1],[2,1,2,2],[1,2,3,0]],[[0,1,2,0],[3,3,2,1],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,4,2,1],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[3,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,1,3,0],[2,2,2,1]],[[0,1,2,0],[2,3,2,1],[2,1,3,0],[1,3,2,1]],[[0,1,2,0],[2,3,2,1],[2,1,3,0],[1,2,3,1]],[[0,1,2,0],[3,3,2,1],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,4,2,1],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,2,1],[3,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,2,1],[2,1,3,1],[2,2,1,1]],[[0,1,2,0],[2,3,2,1],[2,1,3,1],[1,3,1,1]],[[0,1,2,0],[3,3,2,1],[2,1,3,2],[1,2,0,1]],[[0,1,2,0],[2,4,2,1],[2,1,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,2,1],[3,1,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,2,1],[2,1,3,2],[2,2,0,1]],[[0,1,2,0],[2,3,2,1],[2,1,3,2],[1,3,0,1]],[[0,1,2,0],[3,3,2,1],[2,1,3,2],[1,2,1,0]],[[0,1,2,0],[2,4,2,1],[2,1,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,2,1],[3,1,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,2,1],[2,1,3,2],[2,2,1,0]],[[0,1,2,0],[2,3,2,1],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,4,1],[2,0,1,2],[0,1,2,1]],[[1,2,2,1],[3,2,3,1],[2,0,1,2],[0,1,2,1]],[[1,2,2,2],[2,2,3,1],[2,0,1,2],[0,1,2,1]],[[1,2,3,1],[2,2,3,1],[2,0,1,2],[0,1,2,1]],[[1,3,2,1],[2,2,3,1],[2,0,1,2],[0,1,2,1]],[[0,1,2,0],[3,3,2,1],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[2,4,2,1],[2,2,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[3,2,1,2],[0,2,2,1]],[[0,1,2,0],[3,3,2,1],[2,2,1,2],[1,1,2,1]],[[0,1,2,0],[2,4,2,1],[2,2,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[3,2,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[2,2,1,2],[2,1,2,1]],[[0,1,2,0],[3,3,2,1],[2,2,2,1],[0,2,2,1]],[[0,1,2,0],[2,4,2,1],[2,2,2,1],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[3,2,2,1],[0,2,2,1]],[[0,1,2,0],[3,3,2,1],[2,2,2,1],[1,1,2,1]],[[0,1,2,0],[2,4,2,1],[2,2,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[3,2,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[2,2,2,1],[2,1,2,1]],[[0,1,2,0],[3,3,2,1],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,4,2,1],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,2,1],[3,2,2,2],[0,2,2,0]],[[0,1,2,0],[3,3,2,1],[2,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,4,2,1],[2,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,2,1],[3,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,2,1],[2,2,2,2],[2,1,2,0]],[[2,2,2,1],[2,2,3,1],[2,0,1,2],[0,1,2,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[2,4,2,1],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,2,1],[3,2,3,0],[0,2,2,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,0],[1,1,2,1]],[[0,1,2,0],[2,4,2,1],[2,2,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[3,2,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,2,1],[2,2,3,0],[2,1,2,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,1],[0,1,2,1]],[[0,1,2,0],[2,4,2,1],[2,2,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,2,1],[3,2,3,1],[0,1,2,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,4,2,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,2,1],[3,2,3,1],[0,2,1,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,4,2,1],[2,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,2,1],[3,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,2,1],[2,2,3,1],[2,0,2,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,4,2,1],[2,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,2,1],[3,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,2,1],[2,2,3,1],[2,1,1,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,4,2,1],[2,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,2,1],[3,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,2,1],[2,2,3,1],[2,2,0,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,4,2,1],[2,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,2,1],[3,2,3,2],[0,1,1,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,4,2,1],[2,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,2,1],[3,2,3,2],[0,1,2,0]],[[0,1,2,0],[3,3,2,1],[2,2,3,2],[0,2,0,1]],[[0,1,2,0],[2,4,2,1],[2,2,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,2,1],[3,2,3,2],[0,2,0,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,2],[0,2,1,0]],[[0,1,2,0],[2,4,2,1],[2,2,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,2,1],[3,2,3,2],[0,2,1,0]],[[0,1,2,0],[3,3,2,1],[2,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,4,2,1],[2,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,2,1],[3,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,2,1],[2,2,3,2],[2,0,1,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,4,2,1],[2,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,2,1],[3,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,2,1],[2,2,3,2],[2,0,2,0]],[[0,1,2,0],[3,3,2,1],[2,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,4,2,1],[2,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,2,1],[3,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,2,1],[2,2,3,2],[2,1,0,1]],[[0,1,2,0],[3,3,2,1],[2,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,4,2,1],[2,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,2,1],[3,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,2,1],[2,2,3,2],[2,1,1,0]],[[0,1,2,0],[3,3,2,1],[2,2,3,2],[1,2,0,0]],[[0,1,2,0],[2,4,2,1],[2,2,3,2],[1,2,0,0]],[[0,1,2,0],[2,3,2,1],[3,2,3,2],[1,2,0,0]],[[0,1,2,0],[2,3,2,1],[2,2,3,2],[2,2,0,0]],[[0,1,2,0],[3,3,2,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,4,2,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,2,1],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,3,1],[1,3,2,1],[1,1,0,0]],[[1,2,2,2],[2,2,3,1],[1,3,2,1],[1,1,0,0]],[[1,2,3,1],[2,2,3,1],[1,3,2,1],[1,1,0,0]],[[1,3,2,1],[2,2,3,1],[1,3,2,1],[1,1,0,0]],[[2,2,2,1],[2,2,3,1],[1,3,2,1],[1,1,0,0]],[[1,2,2,1],[3,2,3,1],[1,3,2,1],[0,2,0,0]],[[1,2,2,2],[2,2,3,1],[1,3,2,1],[0,2,0,0]],[[1,2,3,1],[2,2,3,1],[1,3,2,1],[0,2,0,0]],[[1,3,2,1],[2,2,3,1],[1,3,2,1],[0,2,0,0]],[[2,2,2,1],[2,2,3,1],[1,3,2,1],[0,2,0,0]],[[0,1,2,0],[3,3,2,1],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,4,2,1],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,3,2,1],[3,3,3,2],[1,0,0,1]],[[0,1,2,0],[3,3,2,1],[2,3,3,2],[1,0,1,0]],[[0,1,2,0],[2,4,2,1],[2,3,3,2],[1,0,1,0]],[[0,1,2,0],[2,3,2,1],[3,3,3,2],[1,0,1,0]],[[0,1,2,0],[2,3,2,3],[0,0,3,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,0,3,3],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,0,3,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[0,0,3,2],[1,2,2,2]],[[0,1,2,0],[2,3,2,3],[0,1,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,1,2,3],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,1,2,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,1,2,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,2],[0,1,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[0,1,2,2],[1,2,2,2]],[[0,1,2,0],[2,3,2,2],[0,1,4,1],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,1,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,1,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,2,2],[0,1,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[0,1,3,1],[1,2,2,2]],[[0,1,2,0],[2,3,2,3],[0,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,2,2],[0,1,4,2],[1,2,1,1]],[[0,1,2,0],[2,3,2,2],[0,1,3,3],[1,2,1,1]],[[0,1,2,0],[2,3,2,2],[0,1,3,2],[1,2,1,2]],[[0,1,2,0],[2,3,2,3],[0,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[0,1,4,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[0,1,3,3],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[0,1,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,2,2],[0,1,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,2,2],[0,1,3,2],[1,2,3,0]],[[0,1,2,0],[2,3,2,3],[0,2,2,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[0,2,2,3],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[0,2,2,2],[1,1,3,1]],[[0,1,2,0],[2,3,2,2],[0,2,2,2],[1,1,2,2]],[[0,1,2,0],[2,3,2,2],[0,2,4,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,0],[2,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,0],[1,3,2,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,0],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,0],[1,2,2,2]],[[0,1,2,0],[2,3,2,2],[0,2,4,1],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,1],[1,1,3,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,1],[1,1,2,2]],[[0,1,2,0],[2,3,2,2],[0,2,4,1],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[0,2,3,1],[2,2,2,0]],[[0,1,2,0],[2,3,2,2],[0,2,3,1],[1,3,2,0]],[[0,1,2,0],[2,3,2,2],[0,2,3,1],[1,2,3,0]],[[0,1,2,0],[2,3,2,3],[0,2,3,2],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[0,2,4,2],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,3],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,2],[1,0,2,2]],[[0,1,2,0],[2,3,2,3],[0,2,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[0,2,4,2],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,3],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,2],[1,1,1,2]],[[0,1,2,0],[2,3,2,3],[0,2,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[0,2,4,2],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[0,2,3,3],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[0,2,3,2],[1,1,3,0]],[[0,1,2,0],[2,3,2,3],[0,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[0,2,4,2],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,3],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[0,2,3,2],[1,2,0,2]],[[0,1,2,0],[2,3,2,3],[0,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,2,2],[0,2,4,2],[1,2,1,0]],[[0,1,2,0],[2,3,2,2],[0,2,3,3],[1,2,1,0]],[[0,1,2,0],[3,3,2,2],[0,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,4,2,2],[0,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,3],[0,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,4,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,0,3],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,0,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,0,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,0,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[0,3,0,2],[1,2,2,2]],[[0,1,2,0],[3,3,2,2],[0,3,2,0],[1,2,2,1]],[[0,1,2,0],[2,4,2,2],[0,3,2,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,4,2,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,2,0],[2,2,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,2,0],[1,3,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,2,0],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[0,3,2,0],[1,2,2,2]],[[0,1,2,0],[3,3,2,2],[0,3,2,1],[1,2,2,0]],[[0,1,2,0],[2,4,2,2],[0,3,2,1],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[0,4,2,1],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[0,3,2,1],[2,2,2,0]],[[0,1,2,0],[2,3,2,2],[0,3,2,1],[1,3,2,0]],[[0,1,2,0],[2,3,2,2],[0,3,2,1],[1,2,3,0]],[[0,1,2,0],[2,3,2,3],[0,3,2,2],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,2,2,1],[3,2,3,1],[1,3,1,1],[1,2,0,0]],[[1,2,2,2],[2,2,3,1],[1,3,1,1],[1,2,0,0]],[[1,2,3,1],[2,2,3,1],[1,3,1,1],[1,2,0,0]],[[1,3,2,1],[2,2,3,1],[1,3,1,1],[1,2,0,0]],[[2,2,2,1],[2,2,3,1],[1,3,1,1],[1,2,0,0]],[[0,1,2,0],[3,3,2,2],[0,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,4,2,2],[0,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[0,4,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,4,0],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,0],[1,1,3,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,0],[1,1,2,2]],[[0,1,2,0],[3,3,2,2],[0,3,3,0],[1,2,1,1]],[[0,1,2,0],[2,4,2,2],[0,3,3,0],[1,2,1,1]],[[0,1,2,0],[2,3,2,2],[0,4,3,0],[1,2,1,1]],[[0,1,2,0],[2,3,2,2],[0,3,4,0],[1,2,1,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,0],[2,2,1,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,0],[1,3,1,1]],[[0,1,2,0],[2,3,2,2],[0,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,1],[0,1,2,2]],[[0,1,2,0],[3,3,2,2],[0,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,4,2,2],[0,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[0,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[0,3,4,1],[1,1,1,1]],[[0,1,2,0],[3,3,2,2],[0,3,3,1],[1,1,2,0]],[[0,1,2,0],[2,4,2,2],[0,3,3,1],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[0,4,3,1],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[0,3,4,1],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[0,3,3,1],[1,1,3,0]],[[0,1,2,0],[3,3,2,2],[0,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,4,2,2],[0,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[0,4,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[0,3,4,1],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,1],[2,2,0,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,1],[1,3,0,1]],[[0,1,2,0],[3,3,2,2],[0,3,3,1],[1,2,1,0]],[[0,1,2,0],[2,4,2,2],[0,3,3,1],[1,2,1,0]],[[0,1,2,0],[2,3,2,2],[0,4,3,1],[1,2,1,0]],[[0,1,2,0],[2,3,2,2],[0,3,4,1],[1,2,1,0]],[[0,1,2,0],[2,3,2,2],[0,3,3,1],[2,2,1,0]],[[0,1,2,0],[2,3,2,2],[0,3,3,1],[1,3,1,0]],[[0,1,2,0],[2,3,2,3],[0,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,2],[0,0,2,2]],[[0,1,2,0],[2,3,2,3],[0,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[0,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,2],[0,1,1,2]],[[0,1,2,0],[2,3,2,3],[0,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[0,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[0,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[0,3,3,2],[0,1,3,0]],[[0,1,2,0],[2,3,2,3],[0,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[0,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[0,3,3,2],[0,2,0,2]],[[0,1,2,0],[2,3,2,3],[0,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,2,2],[0,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[3,2,3,1],[1,3,1,1],[1,1,1,0]],[[1,2,2,2],[2,2,3,1],[1,3,1,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[1,3,1,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,1],[1,3,1,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[1,3,1,1],[1,1,1,0]],[[1,2,2,1],[3,2,3,1],[1,3,1,1],[1,1,0,1]],[[1,2,2,2],[2,2,3,1],[1,3,1,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,1],[1,3,1,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,1],[1,3,1,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,1],[1,3,1,1],[1,1,0,1]],[[1,2,2,1],[3,2,3,1],[1,3,1,1],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[1,3,1,1],[1,0,2,0]],[[1,2,3,1],[2,2,3,1],[1,3,1,1],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[1,3,1,1],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[1,3,1,1],[1,0,2,0]],[[1,2,2,1],[3,2,3,1],[1,3,1,1],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[1,3,1,1],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[1,3,1,1],[1,0,1,1]],[[1,3,2,1],[2,2,3,1],[1,3,1,1],[1,0,1,1]],[[2,2,2,1],[2,2,3,1],[1,3,1,1],[1,0,1,1]],[[1,2,2,1],[3,2,3,1],[1,3,1,1],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[1,3,1,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[1,3,1,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[1,3,1,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[1,3,1,1],[0,2,1,0]],[[0,1,2,0],[2,3,2,3],[1,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,0,2,3],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,0,2,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,0,2,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,2],[1,0,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[1,0,2,2],[1,2,2,2]],[[0,1,2,0],[2,3,2,2],[1,0,4,1],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,0,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,0,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,2,2],[1,0,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[1,0,3,1],[1,2,2,2]],[[0,1,2,0],[2,3,2,3],[1,0,3,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,0,3,3],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,0,3,2],[0,2,3,1]],[[0,1,2,0],[2,3,2,2],[1,0,3,2],[0,2,2,2]],[[0,1,2,0],[2,3,2,3],[1,0,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,2,2],[1,0,4,2],[1,2,1,1]],[[0,1,2,0],[2,3,2,2],[1,0,3,3],[1,2,1,1]],[[0,1,2,0],[2,3,2,2],[1,0,3,2],[1,2,1,2]],[[0,1,2,0],[2,3,2,3],[1,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[1,0,4,2],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[1,0,3,3],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[1,0,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,2,2],[1,0,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,2,2],[1,0,3,2],[1,2,3,0]],[[0,1,2,0],[2,3,2,3],[1,1,2,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,1,2,3],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,1,2,2],[0,3,2,1]],[[0,1,2,0],[2,3,2,2],[1,1,2,2],[0,2,3,1]],[[0,1,2,0],[2,3,2,2],[1,1,2,2],[0,2,2,2]],[[0,1,2,0],[2,3,2,2],[1,1,4,1],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,1,3,1],[0,3,2,1]],[[0,1,2,0],[2,3,2,2],[1,1,3,1],[0,2,3,1]],[[0,1,2,0],[2,3,2,2],[1,1,3,1],[0,2,2,2]],[[0,1,2,0],[2,3,2,3],[1,1,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,2,2],[1,1,4,2],[0,2,1,1]],[[0,1,2,0],[2,3,2,2],[1,1,3,3],[0,2,1,1]],[[0,1,2,0],[2,3,2,2],[1,1,3,2],[0,2,1,2]],[[0,1,2,0],[2,3,2,3],[1,1,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,2,2],[1,1,4,2],[0,2,2,0]],[[0,1,2,0],[2,3,2,2],[1,1,3,3],[0,2,2,0]],[[0,1,2,0],[2,3,2,2],[1,1,3,2],[0,3,2,0]],[[0,1,2,0],[2,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[3,2,3,1],[1,3,1,1],[0,2,0,1]],[[1,2,2,2],[2,2,3,1],[1,3,1,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,1],[1,3,1,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,1],[1,3,1,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,1],[1,3,1,1],[0,2,0,1]],[[0,1,2,0],[2,3,2,3],[1,2,2,2],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[1,2,2,3],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[1,2,2,2],[0,1,3,1]],[[0,1,2,0],[2,3,2,2],[1,2,2,2],[0,1,2,2]],[[0,1,2,0],[2,3,2,3],[1,2,2,2],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[1,2,2,3],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[1,2,2,2],[1,0,3,1]],[[0,1,2,0],[2,3,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[3,2,3,1],[1,3,1,1],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[1,3,1,1],[0,1,2,0]],[[1,2,3,1],[2,2,3,1],[1,3,1,1],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[1,2,4,0],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,0],[0,3,2,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,0],[0,2,3,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,0],[0,2,2,2]],[[0,1,2,0],[2,3,2,2],[1,2,4,1],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,1],[0,1,3,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,1],[0,1,2,2]],[[0,1,2,0],[2,3,2,2],[1,2,4,1],[0,2,2,0]],[[0,1,2,0],[2,3,2,2],[1,2,3,1],[0,3,2,0]],[[0,1,2,0],[2,3,2,2],[1,2,3,1],[0,2,3,0]],[[0,1,2,0],[2,3,2,2],[1,2,4,1],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,1],[1,0,3,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,1],[1,0,2,2]],[[1,3,2,1],[2,2,3,1],[1,3,1,1],[0,1,2,0]],[[2,2,2,1],[2,2,3,1],[1,3,1,1],[0,1,2,0]],[[1,2,2,1],[3,2,3,1],[1,3,1,1],[0,1,1,1]],[[1,2,2,2],[2,2,3,1],[1,3,1,1],[0,1,1,1]],[[1,2,3,1],[2,2,3,1],[1,3,1,1],[0,1,1,1]],[[0,1,2,0],[2,3,2,3],[1,2,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,2,2],[1,2,4,2],[0,0,2,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,3],[0,0,2,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,2],[0,0,2,2]],[[0,1,2,0],[2,3,2,3],[1,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[1,2,4,2],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,3],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,2],[0,1,1,2]],[[0,1,2,0],[2,3,2,3],[1,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[1,2,4,2],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[1,2,3,3],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[1,2,3,2],[0,1,3,0]],[[0,1,2,0],[2,3,2,3],[1,2,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[1,2,4,2],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,3],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,2],[0,2,0,2]],[[0,1,2,0],[2,3,2,3],[1,2,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,2,2],[1,2,4,2],[0,2,1,0]],[[0,1,2,0],[2,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[1,3,1,1],[0,1,1,1]],[[2,2,2,1],[2,2,3,1],[1,3,1,1],[0,1,1,1]],[[0,1,2,0],[2,3,2,3],[1,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,2,2],[1,2,4,2],[1,0,1,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,3],[1,0,1,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,2],[1,0,1,2]],[[0,1,2,0],[2,3,2,3],[1,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,2,2],[1,2,4,2],[1,0,2,0]],[[0,1,2,0],[2,3,2,2],[1,2,3,3],[1,0,2,0]],[[0,1,2,0],[2,3,2,2],[1,2,3,2],[1,0,3,0]],[[0,1,2,0],[2,3,2,3],[1,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,2,2],[1,2,4,2],[1,1,0,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,3],[1,1,0,1]],[[0,1,2,0],[2,3,2,2],[1,2,3,2],[1,1,0,2]],[[0,1,2,0],[2,3,2,3],[1,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,2,2],[1,2,4,2],[1,1,1,0]],[[0,1,2,0],[2,3,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[3,2,3,1],[1,3,1,0],[1,2,0,1]],[[1,2,2,2],[2,2,3,1],[1,3,1,0],[1,2,0,1]],[[1,2,3,1],[2,2,3,1],[1,3,1,0],[1,2,0,1]],[[1,3,2,1],[2,2,3,1],[1,3,1,0],[1,2,0,1]],[[2,2,2,1],[2,2,3,1],[1,3,1,0],[1,2,0,1]],[[1,2,2,1],[3,2,3,1],[1,3,1,0],[1,1,1,1]],[[1,2,2,2],[2,2,3,1],[1,3,1,0],[1,1,1,1]],[[1,2,3,1],[2,2,3,1],[1,3,1,0],[1,1,1,1]],[[1,3,2,1],[2,2,3,1],[1,3,1,0],[1,1,1,1]],[[2,2,2,1],[2,2,3,1],[1,3,1,0],[1,1,1,1]],[[1,2,2,1],[3,2,3,1],[1,3,1,0],[1,0,2,1]],[[1,2,2,2],[2,2,3,1],[1,3,1,0],[1,0,2,1]],[[1,2,3,1],[2,2,3,1],[1,3,1,0],[1,0,2,1]],[[1,3,2,1],[2,2,3,1],[1,3,1,0],[1,0,2,1]],[[2,2,2,1],[2,2,3,1],[1,3,1,0],[1,0,2,1]],[[0,1,2,0],[3,3,2,2],[1,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,4,2,2],[1,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,3],[1,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,4,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,3,0,3],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,3,0,2],[0,3,2,1]],[[0,1,2,0],[2,3,2,2],[1,3,0,2],[0,2,3,1]],[[0,1,2,0],[2,3,2,2],[1,3,0,2],[0,2,2,2]],[[0,1,2,0],[3,3,2,2],[1,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,4,2,2],[1,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[1,4,0,2],[1,1,2,1]],[[1,2,2,1],[3,2,3,1],[1,3,1,0],[0,2,1,1]],[[1,2,2,2],[2,2,3,1],[1,3,1,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,1],[1,3,1,0],[0,2,1,1]],[[0,1,2,0],[3,3,2,2],[1,3,2,0],[0,2,2,1]],[[0,1,2,0],[2,4,2,2],[1,3,2,0],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,4,2,0],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[1,3,2,0],[0,3,2,1]],[[0,1,2,0],[2,3,2,2],[1,3,2,0],[0,2,3,1]],[[0,1,2,0],[2,3,2,2],[1,3,2,0],[0,2,2,2]],[[0,1,2,0],[3,3,2,2],[1,3,2,0],[1,1,2,1]],[[0,1,2,0],[2,4,2,2],[1,3,2,0],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[1,4,2,0],[1,1,2,1]],[[0,1,2,0],[3,3,2,2],[1,3,2,1],[0,2,2,0]],[[0,1,2,0],[2,4,2,2],[1,3,2,1],[0,2,2,0]],[[0,1,2,0],[2,3,2,2],[1,4,2,1],[0,2,2,0]],[[0,1,2,0],[2,3,2,2],[1,3,2,1],[0,3,2,0]],[[0,1,2,0],[2,3,2,2],[1,3,2,1],[0,2,3,0]],[[0,1,2,0],[3,3,2,2],[1,3,2,1],[1,1,2,0]],[[0,1,2,0],[2,4,2,2],[1,3,2,1],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[1,4,2,1],[1,1,2,0]],[[1,3,2,1],[2,2,3,1],[1,3,1,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,1],[1,3,1,0],[0,2,1,1]],[[1,2,2,1],[3,2,3,1],[1,3,1,0],[0,1,2,1]],[[1,2,2,2],[2,2,3,1],[1,3,1,0],[0,1,2,1]],[[1,2,3,1],[2,2,3,1],[1,3,1,0],[0,1,2,1]],[[1,3,2,1],[2,2,3,1],[1,3,1,0],[0,1,2,1]],[[2,2,2,1],[2,2,3,1],[1,3,1,0],[0,1,2,1]],[[1,2,2,1],[3,2,3,1],[1,3,0,2],[1,2,0,0]],[[1,2,2,2],[2,2,3,1],[1,3,0,2],[1,2,0,0]],[[1,2,3,1],[2,2,3,1],[1,3,0,2],[1,2,0,0]],[[1,3,2,1],[2,2,3,1],[1,3,0,2],[1,2,0,0]],[[2,2,2,1],[2,2,3,1],[1,3,0,2],[1,2,0,0]],[[1,2,2,1],[3,2,3,1],[1,3,0,2],[1,1,1,0]],[[1,2,2,2],[2,2,3,1],[1,3,0,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[1,3,0,2],[1,1,1,0]],[[0,1,2,0],[3,3,2,2],[1,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,4,2,2],[1,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[1,4,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[1,3,4,0],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[1,3,3,0],[0,1,3,1]],[[0,1,2,0],[2,3,2,2],[1,3,3,0],[0,1,2,2]],[[0,1,2,0],[3,3,2,2],[1,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,4,2,2],[1,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,2,2],[1,4,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,2,2],[1,3,4,0],[0,2,1,1]],[[0,1,2,0],[2,3,2,2],[1,3,3,0],[0,3,1,1]],[[0,1,2,0],[3,3,2,2],[1,3,3,0],[1,0,2,1]],[[0,1,2,0],[2,4,2,2],[1,3,3,0],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[1,4,3,0],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[1,3,4,0],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[1,3,3,0],[1,0,3,1]],[[0,1,2,0],[2,3,2,2],[1,3,3,0],[1,0,2,2]],[[0,1,2,0],[3,3,2,2],[1,3,3,0],[1,1,1,1]],[[0,1,2,0],[2,4,2,2],[1,3,3,0],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[1,4,3,0],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[1,3,4,0],[1,1,1,1]],[[0,1,2,0],[3,3,2,2],[1,3,3,0],[1,2,0,1]],[[0,1,2,0],[2,4,2,2],[1,3,3,0],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[1,4,3,0],[1,2,0,1]],[[1,3,2,1],[2,2,3,1],[1,3,0,2],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[1,3,0,2],[1,1,1,0]],[[1,2,2,1],[3,2,3,1],[1,3,0,2],[1,1,0,1]],[[1,2,2,2],[2,2,3,1],[1,3,0,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,1],[1,3,0,2],[1,1,0,1]],[[1,3,2,1],[2,2,3,1],[1,3,0,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,1],[1,3,0,2],[1,1,0,1]],[[0,1,2,0],[3,3,2,2],[1,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,4,2,2],[1,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[1,4,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[1,3,4,1],[0,1,1,1]],[[0,1,2,0],[3,3,2,2],[1,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,4,2,2],[1,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[1,4,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[1,3,4,1],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[1,3,3,1],[0,1,3,0]],[[0,1,2,0],[3,3,2,2],[1,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,4,2,2],[1,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[1,4,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[1,3,4,1],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[1,3,3,1],[0,3,0,1]],[[0,1,2,0],[3,3,2,2],[1,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,4,2,2],[1,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,2,2],[1,4,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,2,2],[1,3,4,1],[0,2,1,0]],[[0,1,2,0],[2,3,2,2],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[3,2,3,1],[1,3,0,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[1,3,0,2],[1,0,2,0]],[[0,1,2,0],[3,3,2,2],[1,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,4,2,2],[1,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,2,2],[1,4,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,2,2],[1,3,4,1],[1,0,1,1]],[[0,1,2,0],[3,3,2,2],[1,3,3,1],[1,0,2,0]],[[0,1,2,0],[2,4,2,2],[1,3,3,1],[1,0,2,0]],[[0,1,2,0],[2,3,2,2],[1,4,3,1],[1,0,2,0]],[[0,1,2,0],[2,3,2,2],[1,3,4,1],[1,0,2,0]],[[0,1,2,0],[2,3,2,2],[1,3,3,1],[1,0,3,0]],[[0,1,2,0],[3,3,2,2],[1,3,3,1],[1,1,0,1]],[[0,1,2,0],[2,4,2,2],[1,3,3,1],[1,1,0,1]],[[0,1,2,0],[2,3,2,2],[1,4,3,1],[1,1,0,1]],[[0,1,2,0],[2,3,2,2],[1,3,4,1],[1,1,0,1]],[[0,1,2,0],[3,3,2,2],[1,3,3,1],[1,1,1,0]],[[0,1,2,0],[2,4,2,2],[1,3,3,1],[1,1,1,0]],[[0,1,2,0],[2,3,2,2],[1,4,3,1],[1,1,1,0]],[[0,1,2,0],[2,3,2,2],[1,3,4,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[1,3,0,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[1,3,0,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[1,3,0,2],[1,0,2,0]],[[1,2,2,1],[3,2,3,1],[1,3,0,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[1,3,0,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[1,3,0,2],[1,0,1,1]],[[0,1,2,0],[3,3,2,2],[1,3,3,1],[1,2,0,0]],[[0,1,2,0],[2,4,2,2],[1,3,3,1],[1,2,0,0]],[[0,1,2,0],[2,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,3,2,1],[2,2,3,1],[1,3,0,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,1],[1,3,0,2],[1,0,1,1]],[[1,2,2,1],[3,2,3,1],[1,3,0,2],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[1,3,0,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[1,3,0,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[1,3,0,2],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[1,3,0,2],[0,2,1,0]],[[1,2,2,1],[3,2,3,1],[1,3,0,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,1],[1,3,0,2],[0,2,0,1]],[[0,1,2,0],[2,3,2,3],[1,3,3,2],[0,0,1,1]],[[0,1,2,0],[2,3,2,2],[1,3,4,2],[0,0,1,1]],[[0,1,2,0],[2,3,2,2],[1,3,3,3],[0,0,1,1]],[[0,1,2,0],[2,3,2,2],[1,3,3,2],[0,0,1,2]],[[0,1,2,0],[2,3,2,3],[1,3,3,2],[0,0,2,0]],[[0,1,2,0],[2,3,2,2],[1,3,4,2],[0,0,2,0]],[[0,1,2,0],[2,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,3,1],[2,2,3,1],[1,3,0,2],[0,2,0,1]],[[1,3,2,1],[2,2,3,1],[1,3,0,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,1],[1,3,0,2],[0,2,0,1]],[[1,2,2,1],[3,2,3,1],[1,3,0,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[1,3,0,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,1],[1,3,0,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,1],[1,3,0,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,1],[1,3,0,2],[0,1,2,0]],[[1,2,2,1],[3,2,3,1],[1,3,0,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,1],[1,3,0,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,1],[1,3,0,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,1],[1,3,0,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,1],[1,3,0,2],[0,1,1,1]],[[1,2,2,1],[3,2,3,1],[1,3,0,1],[1,1,2,0]],[[1,2,2,2],[2,2,3,1],[1,3,0,1],[1,1,2,0]],[[1,2,3,1],[2,2,3,1],[1,3,0,1],[1,1,2,0]],[[1,3,2,1],[2,2,3,1],[1,3,0,1],[1,1,2,0]],[[2,2,2,1],[2,2,3,1],[1,3,0,1],[1,1,2,0]],[[1,2,2,1],[3,2,3,1],[1,3,0,1],[0,2,2,0]],[[1,2,2,2],[2,2,3,1],[1,3,0,1],[0,2,2,0]],[[1,2,3,1],[2,2,3,1],[1,3,0,1],[0,2,2,0]],[[1,3,2,1],[2,2,3,1],[1,3,0,1],[0,2,2,0]],[[2,2,2,1],[2,2,3,1],[1,3,0,1],[0,2,2,0]],[[1,2,2,1],[3,2,3,1],[1,3,0,0],[1,1,2,1]],[[1,2,2,2],[2,2,3,1],[1,3,0,0],[1,1,2,1]],[[1,2,3,1],[2,2,3,1],[1,3,0,0],[1,1,2,1]],[[1,3,2,1],[2,2,3,1],[1,3,0,0],[1,1,2,1]],[[2,2,2,1],[2,2,3,1],[1,3,0,0],[1,1,2,1]],[[1,2,2,1],[3,2,3,1],[1,3,0,0],[0,2,2,1]],[[1,2,2,2],[2,2,3,1],[1,3,0,0],[0,2,2,1]],[[1,2,3,1],[2,2,3,1],[1,3,0,0],[0,2,2,1]],[[1,3,2,1],[2,2,3,1],[1,3,0,0],[0,2,2,1]],[[2,2,2,1],[2,2,3,1],[1,3,0,0],[0,2,2,1]],[[0,1,2,0],[3,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,4,2,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,3],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[3,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,1,3],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,1,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,1,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,1,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[2,0,1,2],[1,2,2,2]],[[0,1,2,0],[2,3,2,3],[2,0,2,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,2,3],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,2,2],[0,3,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,2,2],[0,2,3,1]],[[0,1,2,0],[2,3,2,2],[2,0,2,2],[0,2,2,2]],[[0,1,2,0],[2,3,2,3],[2,0,2,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,2,3],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,2,2],[1,1,3,1]],[[0,1,2,0],[2,3,2,2],[2,0,2,2],[1,1,2,2]],[[0,1,2,0],[3,3,2,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,0],[2,4,2,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[3,0,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,4,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,0],[2,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,0],[1,3,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,0],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,0],[1,2,2,2]],[[0,1,2,0],[2,3,2,2],[2,0,4,1],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,1],[0,3,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,1],[0,2,3,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,1],[0,2,2,2]],[[0,1,2,0],[2,3,2,2],[2,0,4,1],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,1],[1,1,3,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,1],[1,1,2,2]],[[0,1,2,0],[3,3,2,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,0],[2,4,2,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[3,0,3,1],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[2,0,4,1],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[2,0,3,1],[2,2,2,0]],[[0,1,2,0],[2,3,2,2],[2,0,3,1],[1,3,2,0]],[[0,1,2,0],[2,3,2,2],[2,0,3,1],[1,2,3,0]],[[0,1,2,0],[2,3,2,3],[2,0,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,2,2],[2,0,4,2],[0,2,1,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,3],[0,2,1,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,2],[0,2,1,2]],[[0,1,2,0],[2,3,2,3],[2,0,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,2,2],[2,0,4,2],[0,2,2,0]],[[0,1,2,0],[2,3,2,2],[2,0,3,3],[0,2,2,0]],[[0,1,2,0],[2,3,2,2],[2,0,3,2],[0,3,2,0]],[[0,1,2,0],[2,3,2,2],[2,0,3,2],[0,2,3,0]],[[0,1,2,0],[2,3,2,3],[2,0,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[2,0,4,2],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,3],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,2],[1,1,1,2]],[[0,1,2,0],[2,3,2,3],[2,0,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[2,0,4,2],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[2,0,3,3],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[2,0,3,2],[1,1,3,0]],[[0,1,2,0],[2,3,2,3],[2,0,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[2,0,4,2],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,3],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[2,0,3,2],[1,2,0,2]],[[0,1,2,0],[2,3,2,3],[2,0,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,2,2],[2,0,4,2],[1,2,1,0]],[[0,1,2,0],[2,3,2,2],[2,0,3,3],[1,2,1,0]],[[0,1,2,0],[3,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,4,2,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,3],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[3,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,0,3],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,0,2],[2,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,0,2],[1,3,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,0,2],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[2,1,0,2],[1,2,2,2]],[[0,1,2,0],[3,3,2,2],[2,1,2,0],[1,2,2,1]],[[0,1,2,0],[2,4,2,2],[2,1,2,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[3,1,2,0],[1,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,2,0],[2,2,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,2,0],[1,3,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,2,0],[1,2,3,1]],[[0,1,2,0],[2,3,2,2],[2,1,2,0],[1,2,2,2]],[[0,1,2,0],[3,3,2,2],[2,1,2,1],[1,2,2,0]],[[0,1,2,0],[2,4,2,2],[2,1,2,1],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[3,1,2,1],[1,2,2,0]],[[0,1,2,0],[2,3,2,2],[2,1,2,1],[2,2,2,0]],[[0,1,2,0],[2,3,2,2],[2,1,2,1],[1,3,2,0]],[[0,1,2,0],[2,3,2,2],[2,1,2,1],[1,2,3,0]],[[0,1,2,0],[2,3,2,3],[2,1,2,2],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,2,3],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,2,2],[0,1,3,1]],[[0,1,2,0],[2,3,2,2],[2,1,2,2],[0,1,2,2]],[[0,1,2,0],[2,3,2,3],[2,1,2,2],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,2,3],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,2,2],[1,0,3,1]],[[0,1,2,0],[2,3,2,2],[2,1,2,2],[1,0,2,2]],[[0,1,2,0],[3,3,2,2],[2,1,3,0],[1,2,1,1]],[[0,1,2,0],[2,4,2,2],[2,1,3,0],[1,2,1,1]],[[0,1,2,0],[2,3,2,2],[3,1,3,0],[1,2,1,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,0],[2,2,1,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,0],[1,3,1,1]],[[0,1,2,0],[2,3,2,2],[2,1,4,1],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,1],[0,1,3,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,1],[0,1,2,2]],[[0,1,2,0],[2,3,2,2],[2,1,4,1],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,1],[1,0,3,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,1],[1,0,2,2]],[[0,1,2,0],[3,3,2,2],[2,1,3,1],[1,2,0,1]],[[0,1,2,0],[2,4,2,2],[2,1,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[3,1,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,1],[2,2,0,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,1],[1,3,0,1]],[[0,1,2,0],[3,3,2,2],[2,1,3,1],[1,2,1,0]],[[0,1,2,0],[2,4,2,2],[2,1,3,1],[1,2,1,0]],[[0,1,2,0],[2,3,2,2],[3,1,3,1],[1,2,1,0]],[[0,1,2,0],[2,3,2,2],[2,1,3,1],[2,2,1,0]],[[0,1,2,0],[2,3,2,2],[2,1,3,1],[1,3,1,0]],[[0,1,2,0],[2,3,2,3],[2,1,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,4,2],[0,0,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,3],[0,0,2,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,2],[0,0,2,2]],[[0,1,2,0],[2,3,2,3],[2,1,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[2,1,4,2],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,3],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,2],[0,1,1,2]],[[0,1,2,0],[2,3,2,3],[2,1,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[2,1,4,2],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[2,1,3,3],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[2,1,3,2],[0,1,3,0]],[[0,1,2,0],[2,3,2,3],[2,1,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[2,1,4,2],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,3],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,2],[0,2,0,2]],[[0,1,2,0],[2,3,2,3],[2,1,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,2,2],[2,1,4,2],[0,2,1,0]],[[0,1,2,0],[2,3,2,2],[2,1,3,3],[0,2,1,0]],[[0,1,2,0],[2,3,2,3],[2,1,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,2,2],[2,1,4,2],[1,0,1,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,3],[1,0,1,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,2],[1,0,1,2]],[[0,1,2,0],[2,3,2,3],[2,1,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,2,2],[2,1,4,2],[1,0,2,0]],[[0,1,2,0],[2,3,2,2],[2,1,3,3],[1,0,2,0]],[[0,1,2,0],[2,3,2,2],[2,1,3,2],[1,0,3,0]],[[0,1,2,0],[2,3,2,3],[2,1,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,2,2],[2,1,4,2],[1,1,0,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,3],[1,1,0,1]],[[0,1,2,0],[2,3,2,2],[2,1,3,2],[1,1,0,2]],[[0,1,2,0],[2,3,2,3],[2,1,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,2,2],[2,1,4,2],[1,1,1,0]],[[0,1,2,0],[2,3,2,2],[2,1,3,3],[1,1,1,0]],[[0,1,2,0],[3,3,2,2],[2,2,0,2],[0,2,2,1]],[[0,1,2,0],[2,4,2,2],[2,2,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[3,2,0,2],[0,2,2,1]],[[0,1,2,0],[3,3,2,2],[2,2,0,2],[1,1,2,1]],[[0,1,2,0],[2,4,2,2],[2,2,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[3,2,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[2,2,0,2],[2,1,2,1]],[[0,1,2,0],[3,3,2,2],[2,2,2,0],[0,2,2,1]],[[0,1,2,0],[2,4,2,2],[2,2,2,0],[0,2,2,1]],[[0,1,2,0],[2,3,2,2],[3,2,2,0],[0,2,2,1]],[[0,1,2,0],[3,3,2,2],[2,2,2,0],[1,1,2,1]],[[0,1,2,0],[2,4,2,2],[2,2,2,0],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[3,2,2,0],[1,1,2,1]],[[0,1,2,0],[2,3,2,2],[2,2,2,0],[2,1,2,1]],[[0,1,2,0],[3,3,2,2],[2,2,2,1],[0,2,2,0]],[[0,1,2,0],[2,4,2,2],[2,2,2,1],[0,2,2,0]],[[0,1,2,0],[2,3,2,2],[3,2,2,1],[0,2,2,0]],[[0,1,2,0],[3,3,2,2],[2,2,2,1],[1,1,2,0]],[[0,1,2,0],[2,4,2,2],[2,2,2,1],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[3,2,2,1],[1,1,2,0]],[[0,1,2,0],[2,3,2,2],[2,2,2,1],[2,1,2,0]],[[0,1,2,0],[3,3,2,2],[2,2,3,0],[0,1,2,1]],[[0,1,2,0],[2,4,2,2],[2,2,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,2,2],[3,2,3,0],[0,1,2,1]],[[0,1,2,0],[3,3,2,2],[2,2,3,0],[0,2,1,1]],[[0,1,2,0],[2,4,2,2],[2,2,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,2,2],[3,2,3,0],[0,2,1,1]],[[0,1,2,0],[3,3,2,2],[2,2,3,0],[1,0,2,1]],[[0,1,2,0],[2,4,2,2],[2,2,3,0],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[3,2,3,0],[1,0,2,1]],[[0,1,2,0],[2,3,2,2],[2,2,3,0],[2,0,2,1]],[[0,1,2,0],[3,3,2,2],[2,2,3,0],[1,1,1,1]],[[0,1,2,0],[2,4,2,2],[2,2,3,0],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[3,2,3,0],[1,1,1,1]],[[0,1,2,0],[2,3,2,2],[2,2,3,0],[2,1,1,1]],[[0,1,2,0],[3,3,2,2],[2,2,3,0],[1,2,0,1]],[[0,1,2,0],[2,4,2,2],[2,2,3,0],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[3,2,3,0],[1,2,0,1]],[[0,1,2,0],[2,3,2,2],[2,2,3,0],[2,2,0,1]],[[0,1,2,0],[3,3,2,2],[2,2,3,1],[0,1,1,1]],[[0,1,2,0],[2,4,2,2],[2,2,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,2,2],[3,2,3,1],[0,1,1,1]],[[0,1,2,0],[3,3,2,2],[2,2,3,1],[0,1,2,0]],[[0,1,2,0],[2,4,2,2],[2,2,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,2,2],[3,2,3,1],[0,1,2,0]],[[0,1,2,0],[3,3,2,2],[2,2,3,1],[0,2,0,1]],[[0,1,2,0],[2,4,2,2],[2,2,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,2,2],[3,2,3,1],[0,2,0,1]],[[0,1,2,0],[3,3,2,2],[2,2,3,1],[0,2,1,0]],[[0,1,2,0],[2,4,2,2],[2,2,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,2,2],[3,2,3,1],[0,2,1,0]],[[0,1,2,0],[3,3,2,2],[2,2,3,1],[1,0,1,1]],[[0,1,2,0],[2,4,2,2],[2,2,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,2,2],[3,2,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,2,2],[2,2,3,1],[2,0,1,1]],[[0,1,2,0],[3,3,2,2],[2,2,3,1],[1,0,2,0]],[[0,1,2,0],[2,4,2,2],[2,2,3,1],[1,0,2,0]],[[0,1,2,0],[2,3,2,2],[3,2,3,1],[1,0,2,0]],[[0,1,2,0],[2,3,2,2],[2,2,3,1],[2,0,2,0]],[[0,1,2,0],[3,3,2,2],[2,2,3,1],[1,1,0,1]],[[0,1,2,0],[2,4,2,2],[2,2,3,1],[1,1,0,1]],[[0,1,2,0],[2,3,2,2],[3,2,3,1],[1,1,0,1]],[[0,1,2,0],[2,3,2,2],[2,2,3,1],[2,1,0,1]],[[0,1,2,0],[3,3,2,2],[2,2,3,1],[1,1,1,0]],[[0,1,2,0],[2,4,2,2],[2,2,3,1],[1,1,1,0]],[[0,1,2,0],[2,3,2,2],[3,2,3,1],[1,1,1,0]],[[0,1,2,0],[2,3,2,2],[2,2,3,1],[2,1,1,0]],[[0,1,2,0],[3,3,2,2],[2,2,3,1],[1,2,0,0]],[[0,1,2,0],[2,4,2,2],[2,2,3,1],[1,2,0,0]],[[0,1,2,0],[2,3,2,2],[3,2,3,1],[1,2,0,0]],[[0,1,2,0],[2,3,2,2],[2,2,3,1],[2,2,0,0]],[[1,2,2,1],[2,2,4,1],[0,3,3,2],[0,0,0,1]],[[1,2,2,2],[2,2,3,1],[0,3,3,2],[0,0,0,1]],[[1,2,3,1],[2,2,3,1],[0,3,3,2],[0,0,0,1]],[[1,3,2,1],[2,2,3,1],[0,3,3,2],[0,0,0,1]],[[2,2,2,1],[2,2,3,1],[0,3,3,2],[0,0,0,1]],[[1,2,2,1],[2,2,4,1],[0,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,2,3,1],[0,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,2,3,1],[0,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,2,3,1],[0,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,2,3,1],[0,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,2,4,1],[0,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,2,3,1],[0,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,2,3,1],[0,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,2,3,1],[0,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,2,3,1],[0,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,2,3,1],[0,3,4,1],[0,0,2,0]],[[1,2,2,1],[2,2,4,1],[0,3,3,1],[0,0,2,0]],[[1,2,2,2],[2,2,3,1],[0,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,2,3,1],[0,3,3,1],[0,0,2,0]],[[1,3,2,1],[2,2,3,1],[0,3,3,1],[0,0,2,0]],[[2,2,2,1],[2,2,3,1],[0,3,3,1],[0,0,2,0]],[[1,2,2,1],[2,2,3,1],[0,3,4,1],[0,0,1,1]],[[1,2,2,1],[2,2,4,1],[0,3,3,1],[0,0,1,1]],[[1,2,2,2],[2,2,3,1],[0,3,3,1],[0,0,1,1]],[[1,2,3,1],[2,2,3,1],[0,3,3,1],[0,0,1,1]],[[1,3,2,1],[2,2,3,1],[0,3,3,1],[0,0,1,1]],[[2,2,2,1],[2,2,3,1],[0,3,3,1],[0,0,1,1]],[[0,1,2,0],[3,3,2,2],[2,3,3,0],[1,0,1,1]],[[0,1,2,0],[2,4,2,2],[2,3,3,0],[1,0,1,1]],[[0,1,2,0],[2,3,2,2],[3,3,3,0],[1,0,1,1]],[[1,2,2,1],[2,2,4,1],[0,3,3,0],[1,1,1,0]],[[1,2,2,2],[2,2,3,1],[0,3,3,0],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[0,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,2,3,1],[0,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[0,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,2,4,1],[0,3,3,0],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[0,3,3,0],[1,0,2,0]],[[1,2,3,1],[2,2,3,1],[0,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[0,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[0,3,3,0],[1,0,2,0]],[[1,2,2,1],[2,2,4,1],[0,3,3,0],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[0,3,3,0],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[0,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[0,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[0,3,3,0],[0,2,1,0]],[[1,2,2,1],[2,2,4,1],[0,3,3,0],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[0,3,3,0],[0,1,2,0]],[[0,1,2,0],[3,3,2,2],[2,3,3,1],[1,0,0,1]],[[0,1,2,0],[2,4,2,2],[2,3,3,1],[1,0,0,1]],[[0,1,2,0],[2,3,2,2],[3,3,3,1],[1,0,0,1]],[[0,1,2,0],[3,3,2,2],[2,3,3,1],[1,0,1,0]],[[0,1,2,0],[2,4,2,2],[2,3,3,1],[1,0,1,0]],[[0,1,2,0],[2,3,2,2],[3,3,3,1],[1,0,1,0]],[[1,2,3,1],[2,2,3,1],[0,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,2,3,1],[0,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,2,3,1],[0,3,3,0],[0,1,2,0]],[[1,2,2,1],[2,2,3,1],[0,3,4,0],[0,0,2,1]],[[1,2,2,1],[2,2,4,1],[0,3,3,0],[0,0,2,1]],[[1,2,2,2],[2,2,3,1],[0,3,3,0],[0,0,2,1]],[[1,2,3,1],[2,2,3,1],[0,3,3,0],[0,0,2,1]],[[1,3,2,1],[2,2,3,1],[0,3,3,0],[0,0,2,1]],[[2,2,2,1],[2,2,3,1],[0,3,3,0],[0,0,2,1]],[[1,2,2,1],[2,2,4,1],[0,3,2,2],[0,0,2,0]],[[1,2,2,2],[2,2,3,1],[0,3,2,2],[0,0,2,0]],[[1,2,3,1],[2,2,3,1],[0,3,2,2],[0,0,2,0]],[[1,3,2,1],[2,2,3,1],[0,3,2,2],[0,0,2,0]],[[2,2,2,1],[2,2,3,1],[0,3,2,2],[0,0,2,0]],[[1,2,2,1],[2,2,4,1],[0,3,2,2],[0,0,1,1]],[[1,2,2,2],[2,2,3,1],[0,3,2,2],[0,0,1,1]],[[1,2,3,1],[2,2,3,1],[0,3,2,2],[0,0,1,1]],[[1,3,2,1],[2,2,3,1],[0,3,2,2],[0,0,1,1]],[[2,2,2,1],[2,2,3,1],[0,3,2,2],[0,0,1,1]],[[1,2,2,1],[2,2,4,1],[0,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,2,3,1],[0,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[0,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,1],[0,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[0,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,2,4,1],[0,3,2,1],[1,1,0,1]],[[1,2,2,2],[2,2,3,1],[0,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,1],[0,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,1],[0,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,1],[0,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,2,4,1],[0,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[0,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,2,3,1],[0,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[0,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[0,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,2,4,1],[0,3,2,1],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[0,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[0,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,2,3,1],[0,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,2,3,1],[0,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,2,4,1],[0,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[0,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[0,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[0,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[0,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,2,4,1],[0,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,2,3,1],[0,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,1],[0,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,1],[0,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,1],[0,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,2,4,1],[0,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[0,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,2,3,1],[0,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,2,3,1],[0,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,2,3,1],[0,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,2,4,1],[0,3,2,1],[0,1,1,1]],[[1,2,2,2],[2,2,3,1],[0,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,2,3,1],[0,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,2,3,1],[0,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,2,3,1],[0,3,2,1],[0,1,1,1]],[[1,2,2,1],[2,2,4,1],[0,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,2,3,1],[0,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,2,3,1],[0,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,2,3,1],[0,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,2,3,1],[0,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,2,4,1],[0,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,2,3,1],[0,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,2,3,1],[0,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,2,3,1],[0,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,2,3,1],[0,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,2,4,1],[0,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,2,3,1],[0,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,1],[0,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,2,3,1],[0,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,1],[0,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,2,4,1],[0,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,2,3,1],[0,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,2,3,1],[0,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,2,3,1],[0,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,2,3,1],[0,3,2,0],[0,1,2,1]],[[1,2,2,1],[2,2,4,1],[0,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,2,3,1],[0,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[0,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,2,3,1],[0,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[0,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,2,4,1],[0,3,1,2],[1,1,0,1]],[[1,2,2,2],[2,2,3,1],[0,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,1],[0,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,2,3,1],[0,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,1],[0,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,2,4,1],[0,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[0,3,1,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,1],[0,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[0,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[0,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,2,4,1],[0,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[0,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[0,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,1],[0,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,1],[0,3,1,2],[1,0,1,1]],[[1,2,2,1],[2,2,4,1],[0,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[0,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[0,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[0,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[0,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,2,4,1],[0,3,1,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,1],[0,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,2,3,1],[0,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,2,3,1],[0,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,1],[0,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,2,4,1],[0,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[0,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,1],[0,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,1],[0,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,1],[0,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,2,4,1],[0,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,1],[0,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,1],[0,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,1],[0,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,1],[0,3,1,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,0],[0,1,4,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[0,1,3,2],[2,2,2,1]],[[0,1,2,0],[2,3,3,0],[0,1,3,2],[1,3,2,1]],[[0,1,2,0],[2,3,3,0],[0,1,3,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,0],[0,1,3,2],[1,2,2,2]],[[0,1,2,0],[2,3,3,0],[0,2,4,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[0,2,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,0],[0,2,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,0],[0,2,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,0],[0,2,3,1],[1,2,2,2]],[[0,1,2,0],[2,3,3,0],[0,2,4,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,0],[0,2,3,2],[1,1,3,1]],[[0,1,2,0],[2,3,3,0],[0,2,3,2],[1,1,2,2]],[[0,1,2,0],[2,3,3,0],[0,2,4,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,0],[0,2,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,0],[0,2,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,0],[0,2,3,2],[1,2,3,0]],[[0,1,2,0],[3,3,3,0],[0,3,2,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,0],[0,3,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[0,4,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[0,3,2,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,0],[0,3,2,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,0],[0,3,2,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,0],[0,3,2,1],[1,2,2,2]],[[0,1,2,0],[3,3,3,0],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,0],[0,3,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,0],[0,4,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,0],[0,3,2,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,0],[0,3,2,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,0],[0,3,2,2],[1,2,3,0]],[[0,1,2,0],[3,3,3,0],[0,3,3,0],[1,2,2,1]],[[0,1,2,0],[2,4,3,0],[0,3,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[0,4,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[0,3,3,0],[2,2,2,1]],[[0,1,2,0],[2,3,3,0],[0,3,3,0],[1,3,2,1]],[[0,1,2,0],[2,3,3,0],[0,3,3,0],[1,2,3,1]],[[0,1,2,0],[3,3,3,0],[0,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,4,3,0],[0,3,3,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,0],[0,4,3,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,0],[0,3,4,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,0],[0,3,3,1],[1,1,3,1]],[[0,1,2,0],[2,3,3,0],[0,3,3,1],[1,1,2,2]],[[0,1,2,0],[3,3,3,0],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,4,3,0],[0,3,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,0],[0,4,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,0],[0,3,4,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,0],[0,3,3,1],[2,2,1,1]],[[0,1,2,0],[2,3,3,0],[0,3,3,1],[1,3,1,1]],[[0,1,2,0],[2,3,3,0],[0,3,4,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,0],[0,3,3,2],[0,1,3,1]],[[0,1,2,0],[2,3,3,0],[0,3,3,2],[0,1,2,2]],[[0,1,2,0],[3,3,3,0],[0,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,4,3,0],[0,3,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,0],[0,4,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,0],[0,3,4,2],[1,1,1,1]],[[0,1,2,0],[3,3,3,0],[0,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,0],[0,3,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,0],[0,4,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,0],[0,3,4,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,0],[0,3,3,2],[1,1,3,0]],[[0,1,2,0],[3,3,3,0],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,4,3,0],[0,3,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,0],[0,4,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,0],[0,3,4,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,0],[0,3,3,2],[2,2,0,1]],[[0,1,2,0],[2,3,3,0],[0,3,3,2],[1,3,0,1]],[[0,1,2,0],[3,3,3,0],[0,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,4,3,0],[0,3,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,0],[0,4,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,0],[0,3,4,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,0],[0,3,3,2],[2,2,1,0]],[[0,1,2,0],[2,3,3,0],[0,3,3,2],[1,3,1,0]],[[0,1,2,0],[2,3,3,0],[1,0,4,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[1,0,3,2],[2,2,2,1]],[[0,1,2,0],[2,3,3,0],[1,0,3,2],[1,3,2,1]],[[0,1,2,0],[2,3,3,0],[1,0,3,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,0],[1,0,3,2],[1,2,2,2]],[[0,1,2,0],[2,3,3,0],[1,1,4,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,0],[1,1,3,2],[0,3,2,1]],[[0,1,2,0],[2,3,3,0],[1,1,3,2],[0,2,3,1]],[[0,1,2,0],[2,3,3,0],[1,1,3,2],[0,2,2,2]],[[0,1,2,0],[2,3,3,0],[1,2,4,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,0],[1,2,3,1],[0,3,2,1]],[[0,1,2,0],[2,3,3,0],[1,2,3,1],[0,2,3,1]],[[0,1,2,0],[2,3,3,0],[1,2,3,1],[0,2,2,2]],[[0,1,2,0],[2,3,3,0],[1,2,4,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,0],[1,2,3,2],[0,1,3,1]],[[0,1,2,0],[2,3,3,0],[1,2,3,2],[0,1,2,2]],[[0,1,2,0],[2,3,3,0],[1,2,4,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,0],[1,2,3,2],[0,3,2,0]],[[0,1,2,0],[2,3,3,0],[1,2,3,2],[0,2,3,0]],[[0,1,2,0],[2,3,3,0],[1,2,4,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,0],[1,2,3,2],[1,0,3,1]],[[0,1,2,0],[2,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,2,1],[3,2,3,1],[0,3,1,1],[1,2,1,0]],[[1,2,2,2],[2,2,3,1],[0,3,1,1],[1,2,1,0]],[[0,1,2,0],[3,3,3,0],[1,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,4,3,0],[1,3,2,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,0],[1,4,2,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,0],[1,3,2,1],[0,3,2,1]],[[0,1,2,0],[2,3,3,0],[1,3,2,1],[0,2,3,1]],[[0,1,2,0],[2,3,3,0],[1,3,2,1],[0,2,2,2]],[[0,1,2,0],[3,3,3,0],[1,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,4,3,0],[1,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,0],[1,4,2,1],[1,1,2,1]],[[0,1,2,0],[3,3,3,0],[1,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,4,3,0],[1,3,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,0],[1,4,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,0],[1,3,2,2],[0,3,2,0]],[[0,1,2,0],[2,3,3,0],[1,3,2,2],[0,2,3,0]],[[0,1,2,0],[3,3,3,0],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,0],[1,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,0],[1,4,2,2],[1,1,2,0]],[[1,2,3,1],[2,2,3,1],[0,3,1,1],[1,2,1,0]],[[1,3,2,1],[2,2,3,1],[0,3,1,1],[1,2,1,0]],[[2,2,2,1],[2,2,3,1],[0,3,1,1],[1,2,1,0]],[[1,2,2,1],[3,2,3,1],[0,3,1,1],[1,2,0,1]],[[1,2,2,2],[2,2,3,1],[0,3,1,1],[1,2,0,1]],[[1,2,3,1],[2,2,3,1],[0,3,1,1],[1,2,0,1]],[[1,3,2,1],[2,2,3,1],[0,3,1,1],[1,2,0,1]],[[0,1,2,0],[3,3,3,0],[1,3,3,0],[0,2,2,1]],[[0,1,2,0],[2,4,3,0],[1,3,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,0],[1,4,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,0],[1,3,3,0],[0,3,2,1]],[[0,1,2,0],[2,3,3,0],[1,3,3,0],[0,2,3,1]],[[0,1,2,0],[3,3,3,0],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,4,3,0],[1,3,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,0],[1,4,3,0],[1,1,2,1]],[[0,1,2,0],[3,3,3,0],[1,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,4,3,0],[1,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,0],[1,4,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,0],[1,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,0],[1,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,3,3,0],[1,3,3,1],[0,1,2,2]],[[0,1,2,0],[3,3,3,0],[1,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,4,3,0],[1,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,0],[1,4,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,0],[1,3,4,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,0],[1,3,3,1],[0,3,1,1]],[[0,1,2,0],[3,3,3,0],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,4,3,0],[1,3,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,0],[1,4,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,0],[1,3,4,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,0],[1,3,3,1],[1,0,3,1]],[[0,1,2,0],[2,3,3,0],[1,3,3,1],[1,0,2,2]],[[0,1,2,0],[3,3,3,0],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,4,3,0],[1,3,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,0],[1,4,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,0],[1,3,4,1],[1,1,1,1]],[[0,1,2,0],[3,3,3,0],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,4,3,0],[1,3,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,0],[1,4,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,3,1],[0,3,1,1],[1,2,0,1]],[[1,2,2,1],[2,2,4,1],[0,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,2,3,1],[0,3,1,1],[0,2,2,0]],[[0,1,2,0],[3,3,3,0],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,0],[1,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,0],[1,4,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,0],[1,3,4,2],[0,1,1,1]],[[0,1,2,0],[3,3,3,0],[1,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,0],[1,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,0],[1,4,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,0],[1,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,0],[1,3,3,2],[0,1,3,0]],[[0,1,2,0],[3,3,3,0],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,0],[1,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,0],[1,4,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,0],[1,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,0],[1,3,3,2],[0,3,0,1]],[[0,1,2,0],[3,3,3,0],[1,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,0],[1,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,0],[1,4,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,0],[1,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,0],[1,3,3,2],[0,3,1,0]],[[1,2,3,1],[2,2,3,1],[0,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,2,3,1],[0,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,2,3,1],[0,3,1,1],[0,2,2,0]],[[0,1,2,0],[3,3,3,0],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,4,3,0],[1,3,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,0],[1,4,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,0],[1,3,4,2],[1,0,1,1]],[[0,1,2,0],[3,3,3,0],[1,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,4,3,0],[1,3,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,0],[1,4,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,0],[1,3,4,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,0],[1,3,3,2],[1,0,3,0]],[[0,1,2,0],[3,3,3,0],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,0],[1,3,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,0],[1,4,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,0],[1,3,4,2],[1,1,0,1]],[[0,1,2,0],[3,3,3,0],[1,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,0],[1,3,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,0],[1,4,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,0],[1,3,4,2],[1,1,1,0]],[[1,2,2,1],[3,2,3,1],[0,3,1,0],[1,2,1,1]],[[1,2,2,2],[2,2,3,1],[0,3,1,0],[1,2,1,1]],[[1,2,3,1],[2,2,3,1],[0,3,1,0],[1,2,1,1]],[[1,3,2,1],[2,2,3,1],[0,3,1,0],[1,2,1,1]],[[0,1,2,0],[3,3,3,0],[1,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,4,3,0],[1,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,0],[1,4,3,2],[1,2,0,0]],[[2,2,2,1],[2,2,3,1],[0,3,1,0],[1,2,1,1]],[[1,2,2,1],[2,2,4,1],[0,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,2,3,1],[0,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,2,3,1],[0,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,2,3,1],[0,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,2,3,1],[0,3,1,0],[0,2,2,1]],[[1,2,2,1],[3,2,3,1],[0,3,0,2],[1,2,1,0]],[[1,2,2,2],[2,2,3,1],[0,3,0,2],[1,2,1,0]],[[1,2,3,1],[2,2,3,1],[0,3,0,2],[1,2,1,0]],[[0,1,2,0],[3,3,3,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[3,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[2,0,4,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[2,0,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,0],[2,0,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,0],[2,0,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,0],[2,0,3,1],[1,2,2,2]],[[0,1,2,0],[2,3,3,0],[2,0,4,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,0],[2,0,3,2],[0,3,2,1]],[[0,1,2,0],[2,3,3,0],[2,0,3,2],[0,2,3,1]],[[0,1,2,0],[2,3,3,0],[2,0,3,2],[0,2,2,2]],[[0,1,2,0],[2,3,3,0],[2,0,4,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,0],[2,0,3,2],[1,1,3,1]],[[0,1,2,0],[2,3,3,0],[2,0,3,2],[1,1,2,2]],[[0,1,2,0],[3,3,3,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,0],[3,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,0],[2,0,4,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,0],[2,0,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,0],[2,0,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,0],[2,0,3,2],[1,2,3,0]],[[0,1,2,0],[3,3,3,0],[2,1,2,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,0],[2,1,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[3,1,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[2,1,2,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,0],[2,1,2,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,0],[2,1,2,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,0],[2,1,2,1],[1,2,2,2]],[[0,1,2,0],[3,3,3,0],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,0],[2,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,0],[3,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,0],[2,1,2,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,0],[2,1,2,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,0],[2,1,2,2],[1,2,3,0]],[[0,1,2,0],[3,3,3,0],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,4,3,0],[2,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[3,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,0],[2,1,3,0],[2,2,2,1]],[[0,1,2,0],[2,3,3,0],[2,1,3,0],[1,3,2,1]],[[0,1,2,0],[2,3,3,0],[2,1,3,0],[1,2,3,1]],[[0,1,2,0],[3,3,3,0],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,4,3,0],[2,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,0],[3,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,0],[2,1,3,1],[2,2,1,1]],[[0,1,2,0],[2,3,3,0],[2,1,3,1],[1,3,1,1]],[[0,1,2,0],[2,3,3,0],[2,1,4,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,0],[2,1,3,2],[0,1,3,1]],[[0,1,2,0],[2,3,3,0],[2,1,3,2],[0,1,2,2]],[[0,1,2,0],[2,3,3,0],[2,1,4,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,0],[2,1,3,2],[1,0,3,1]],[[0,1,2,0],[2,3,3,0],[2,1,3,2],[1,0,2,2]],[[0,1,2,0],[3,3,3,0],[2,1,3,2],[1,2,0,1]],[[0,1,2,0],[2,4,3,0],[2,1,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,0],[3,1,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,0],[2,1,3,2],[2,2,0,1]],[[0,1,2,0],[2,3,3,0],[2,1,3,2],[1,3,0,1]],[[0,1,2,0],[3,3,3,0],[2,1,3,2],[1,2,1,0]],[[0,1,2,0],[2,4,3,0],[2,1,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,0],[3,1,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,0],[2,1,3,2],[2,2,1,0]],[[0,1,2,0],[2,3,3,0],[2,1,3,2],[1,3,1,0]],[[1,3,2,1],[2,2,3,1],[0,3,0,2],[1,2,1,0]],[[2,2,2,1],[2,2,3,1],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[3,2,3,1],[0,3,0,2],[1,2,0,1]],[[1,2,2,2],[2,2,3,1],[0,3,0,2],[1,2,0,1]],[[1,2,3,1],[2,2,3,1],[0,3,0,2],[1,2,0,1]],[[1,3,2,1],[2,2,3,1],[0,3,0,2],[1,2,0,1]],[[2,2,2,1],[2,2,3,1],[0,3,0,2],[1,2,0,1]],[[0,1,2,0],[3,3,3,0],[2,2,2,1],[0,2,2,1]],[[0,1,2,0],[2,4,3,0],[2,2,2,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,0],[3,2,2,1],[0,2,2,1]],[[0,1,2,0],[3,3,3,0],[2,2,2,1],[1,1,2,1]],[[0,1,2,0],[2,4,3,0],[2,2,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,0],[3,2,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,0],[2,2,2,1],[2,1,2,1]],[[0,1,2,0],[3,3,3,0],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,4,3,0],[2,2,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,0],[3,2,2,2],[0,2,2,0]],[[0,1,2,0],[3,3,3,0],[2,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,0],[2,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,0],[3,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,0],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[2,2,4,1],[0,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,2,3,1],[0,3,0,2],[1,0,2,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[2,4,3,0],[2,2,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,0],[3,2,3,0],[0,2,2,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,0],[1,1,2,1]],[[0,1,2,0],[2,4,3,0],[2,2,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,0],[3,2,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,0],[2,2,3,0],[2,1,2,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,1],[0,1,2,1]],[[0,1,2,0],[2,4,3,0],[2,2,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,0],[3,2,3,1],[0,1,2,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,4,3,0],[2,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,0],[3,2,3,1],[0,2,1,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,4,3,0],[2,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,0],[3,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,0],[2,2,3,1],[2,0,2,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,4,3,0],[2,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,0],[3,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,0],[2,2,3,1],[2,1,1,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,4,3,0],[2,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,0],[3,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,0],[2,2,3,1],[2,2,0,1]],[[1,2,3,1],[2,2,3,1],[0,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,2,3,1],[0,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,2,3,1],[0,3,0,2],[1,0,2,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,0],[2,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,0],[3,2,3,2],[0,1,1,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,0],[2,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,0],[3,2,3,2],[0,1,2,0]],[[0,1,2,0],[3,3,3,0],[2,2,3,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,0],[2,2,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,0],[3,2,3,2],[0,2,0,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,0],[2,2,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,0],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,4,1],[0,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,2,3,1],[0,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,2,3,1],[0,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,2,3,1],[0,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,2,3,1],[0,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,2,4,1],[0,3,0,2],[0,2,1,1]],[[1,2,2,2],[2,2,3,1],[0,3,0,2],[0,2,1,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,4,3,0],[2,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,0],[3,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,0],[2,2,3,2],[2,0,1,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,4,3,0],[2,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,0],[3,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,0],[2,2,3,2],[2,0,2,0]],[[0,1,2,0],[3,3,3,0],[2,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,0],[2,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,0],[3,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,0],[2,2,3,2],[2,1,0,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,0],[2,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,0],[3,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,0],[2,2,3,2],[2,1,1,0]],[[1,2,3,1],[2,2,3,1],[0,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,2,3,1],[0,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,2,3,1],[0,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,2,4,1],[0,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,2,3,1],[0,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,2,3,1],[0,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,2,3,1],[0,3,0,2],[0,1,2,1]],[[0,1,2,0],[3,3,3,0],[2,2,3,2],[1,2,0,0]],[[0,1,2,0],[2,4,3,0],[2,2,3,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,0],[3,2,3,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,0],[2,2,3,2],[2,2,0,0]],[[2,2,2,1],[2,2,3,1],[0,3,0,2],[0,1,2,1]],[[1,2,2,1],[3,2,3,1],[0,3,0,1],[1,2,2,0]],[[1,2,2,2],[2,2,3,1],[0,3,0,1],[1,2,2,0]],[[1,2,3,1],[2,2,3,1],[0,3,0,1],[1,2,2,0]],[[1,3,2,1],[2,2,3,1],[0,3,0,1],[1,2,2,0]],[[2,2,2,1],[2,2,3,1],[0,3,0,1],[1,2,2,0]],[[1,2,2,1],[2,2,4,1],[0,3,0,1],[0,2,2,1]],[[1,2,2,2],[2,2,3,1],[0,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,2,3,1],[0,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,2,3,1],[0,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,2,3,1],[0,3,0,1],[0,2,2,1]],[[1,2,2,1],[3,2,3,1],[0,3,0,0],[1,2,2,1]],[[1,2,2,2],[2,2,3,1],[0,3,0,0],[1,2,2,1]],[[1,2,3,1],[2,2,3,1],[0,3,0,0],[1,2,2,1]],[[1,3,2,1],[2,2,3,1],[0,3,0,0],[1,2,2,1]],[[2,2,2,1],[2,2,3,1],[0,3,0,0],[1,2,2,1]],[[1,2,2,1],[2,2,4,1],[0,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,2,3,1],[0,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,2,3,1],[0,2,3,2],[1,0,0,1]],[[1,3,2,1],[2,2,3,1],[0,2,3,2],[1,0,0,1]],[[2,2,2,1],[2,2,3,1],[0,2,3,2],[1,0,0,1]],[[0,1,2,0],[3,3,3,0],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,4,3,0],[2,3,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,0],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,4,1],[0,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,2,3,1],[0,2,3,2],[0,1,0,1]],[[1,2,3,1],[2,2,3,1],[0,2,3,2],[0,1,0,1]],[[1,3,2,1],[2,2,3,1],[0,2,3,2],[0,1,0,1]],[[2,2,2,1],[2,2,3,1],[0,2,3,2],[0,1,0,1]],[[0,1,2,0],[3,3,3,0],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,4,3,0],[2,3,3,2],[1,0,0,1]],[[0,1,2,0],[2,3,3,0],[3,3,3,2],[1,0,0,1]],[[0,1,2,0],[3,3,3,0],[2,3,3,2],[1,0,1,0]],[[0,1,2,0],[2,4,3,0],[2,3,3,2],[1,0,1,0]],[[0,1,2,0],[2,3,3,0],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,2,4,1],[0,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,2,3,1],[0,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[0,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,1],[0,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[0,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,4,1],[0,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,3,1],[0,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,1],[0,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,1],[0,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,1],[0,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,3,1],[0,2,4,1],[1,0,2,0]],[[1,2,2,1],[2,2,4,1],[0,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[0,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,3,1],[0,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[0,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[0,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,3,1],[0,2,4,1],[1,0,1,1]],[[1,2,2,1],[2,2,4,1],[0,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[0,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[0,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,3,1],[0,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,3,1],[0,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,3,1],[0,2,4,1],[0,2,1,0]],[[1,2,2,1],[2,2,4,1],[0,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[0,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[0,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[0,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[0,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,3,1],[0,2,4,1],[0,2,0,1]],[[1,2,2,1],[2,2,4,1],[0,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,3,1],[0,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,1],[0,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,1],[0,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,1],[0,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,3,1],[0,2,3,1],[0,1,3,0]],[[1,2,2,1],[2,2,3,1],[0,2,4,1],[0,1,2,0]],[[1,2,2,1],[2,2,4,1],[0,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[0,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,3,1],[0,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,3,1],[0,2,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[0,0,3,3],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,0,3,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,1],[0,0,3,2],[1,2,2,2]],[[0,1,2,0],[2,3,3,1],[0,1,2,3],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,1,2,2],[2,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,1,2,2],[1,3,2,1]],[[0,1,2,0],[2,3,3,1],[0,1,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,1],[0,1,2,2],[1,2,2,2]],[[0,1,3,0],[2,3,3,1],[0,1,3,1],[1,2,2,1]],[[0,1,2,0],[3,3,3,1],[0,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,1],[0,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,4,1],[0,1,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,1,4,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,1,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,1,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,1],[0,1,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,1],[0,1,3,1],[1,2,2,2]],[[0,1,3,0],[2,3,3,1],[0,1,3,2],[1,2,1,1]],[[0,1,2,0],[3,3,3,1],[0,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,4,3,1],[0,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,4,1],[0,1,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[0,1,4,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[0,1,3,3],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[0,1,3,2],[1,2,1,2]],[[0,1,3,0],[2,3,3,1],[0,1,3,2],[1,2,2,0]],[[0,1,2,0],[3,3,3,1],[0,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,1],[0,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,4,1],[0,1,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[0,1,4,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[0,1,3,3],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[0,1,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,1],[0,1,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,1],[0,1,3,2],[1,2,3,0]],[[0,1,2,0],[2,3,3,1],[0,2,2,3],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[0,2,2,2],[1,1,3,1]],[[0,1,2,0],[2,3,3,1],[0,2,2,2],[1,1,2,2]],[[0,1,3,0],[2,3,3,1],[0,2,3,1],[1,1,2,1]],[[0,1,2,0],[3,3,3,1],[0,2,3,1],[1,1,2,1]],[[0,1,2,0],[2,4,3,1],[0,2,3,1],[1,1,2,1]],[[0,1,2,0],[2,3,4,1],[0,2,3,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[0,2,4,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[0,2,3,1],[1,1,3,1]],[[0,1,2,0],[2,3,3,1],[0,2,3,1],[1,1,2,2]],[[0,1,3,0],[2,3,3,1],[0,2,3,1],[1,2,1,1]],[[0,1,2,0],[3,3,3,1],[0,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,4,3,1],[0,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,4,1],[0,2,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[0,2,4,1],[1,2,1,1]],[[0,1,3,0],[2,3,3,1],[0,2,3,2],[1,0,2,1]],[[0,1,2,0],[2,4,3,1],[0,2,3,2],[1,0,2,1]],[[0,1,2,0],[2,3,4,1],[0,2,3,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[0,2,4,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[0,2,3,3],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[0,2,3,2],[1,0,2,2]],[[0,1,3,0],[2,3,3,1],[0,2,3,2],[1,1,1,1]],[[0,1,2,0],[3,3,3,1],[0,2,3,2],[1,1,1,1]],[[0,1,2,0],[2,4,3,1],[0,2,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,4,1],[0,2,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[0,2,4,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[0,2,3,3],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[0,2,3,2],[1,1,1,2]],[[0,1,3,0],[2,3,3,1],[0,2,3,2],[1,1,2,0]],[[0,1,2,0],[3,3,3,1],[0,2,3,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,1],[0,2,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,4,1],[0,2,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[0,2,4,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[0,2,3,3],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[0,2,3,2],[1,1,3,0]],[[0,1,3,0],[2,3,3,1],[0,2,3,2],[1,2,0,1]],[[0,1,2,0],[3,3,3,1],[0,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,4,3,1],[0,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,4,1],[0,2,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[0,2,4,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[0,2,3,3],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[0,2,3,2],[1,2,0,2]],[[0,1,3,0],[2,3,3,1],[0,2,3,2],[1,2,1,0]],[[0,1,2,0],[3,3,3,1],[0,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,4,3,1],[0,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,4,1],[0,2,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[0,2,4,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[0,2,3,3],[1,2,1,0]],[[2,2,2,1],[2,2,3,1],[0,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,3,1],[0,2,4,1],[0,1,1,1]],[[1,2,2,1],[2,2,4,1],[0,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,3,1],[0,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,3,1],[0,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,3,1],[0,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,3,1],[0,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,2,3,1],[0,2,4,1],[0,0,2,1]],[[1,2,2,1],[2,2,4,1],[0,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,2,3,1],[0,2,3,1],[0,0,2,1]],[[0,1,3,0],[2,3,3,1],[0,3,0,2],[1,2,2,1]],[[0,1,2,0],[3,3,3,1],[0,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,4,3,1],[0,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,4,1],[0,3,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,4,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,0,3],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,0,2],[2,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,0,2],[1,3,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,0,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,1],[0,3,0,2],[1,2,2,2]],[[0,1,3,0],[2,3,3,1],[0,3,1,1],[1,2,2,1]],[[0,1,2,0],[3,3,3,1],[0,3,1,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,1],[0,3,1,1],[1,2,2,1]],[[0,1,2,0],[2,3,4,1],[0,3,1,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,4,1,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,1,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,1,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,1,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,1],[0,3,1,1],[1,2,2,2]],[[0,1,3,0],[2,3,3,1],[0,3,1,2],[1,2,2,0]],[[0,1,2,0],[3,3,3,1],[0,3,1,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,1],[0,3,1,2],[1,2,2,0]],[[0,1,2,0],[2,3,4,1],[0,3,1,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[0,4,1,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[0,3,1,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,1],[0,3,1,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,1],[0,3,1,2],[1,2,3,0]],[[0,1,3,0],[2,3,3,1],[0,3,2,1],[1,1,2,1]],[[0,1,2,0],[3,3,3,1],[0,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,4,3,1],[0,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,4,1],[0,3,2,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[0,4,2,1],[1,1,2,1]],[[0,1,3,0],[2,3,3,1],[0,3,2,1],[1,2,1,1]],[[0,1,2,0],[3,3,3,1],[0,3,2,1],[1,2,1,1]],[[0,1,2,0],[2,4,3,1],[0,3,2,1],[1,2,1,1]],[[0,1,2,0],[2,3,4,1],[0,3,2,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[0,4,2,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[0,3,2,1],[2,2,1,1]],[[0,1,2,0],[2,3,3,1],[0,3,2,1],[1,3,1,1]],[[0,1,2,0],[2,3,3,1],[0,3,2,3],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,2,2],[0,1,3,1]],[[0,1,2,0],[2,3,3,1],[0,3,2,2],[0,1,2,2]],[[0,1,3,0],[2,3,3,1],[0,3,2,2],[1,1,1,1]],[[0,1,2,0],[3,3,3,1],[0,3,2,2],[1,1,1,1]],[[0,1,2,0],[2,4,3,1],[0,3,2,2],[1,1,1,1]],[[0,1,2,0],[2,3,4,1],[0,3,2,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[0,4,2,2],[1,1,1,1]],[[0,1,3,0],[2,3,3,1],[0,3,2,2],[1,1,2,0]],[[0,1,2,0],[3,3,3,1],[0,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,1],[0,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,4,1],[0,3,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[0,4,2,2],[1,1,2,0]],[[0,1,3,0],[2,3,3,1],[0,3,2,2],[1,2,0,1]],[[0,1,2,0],[3,3,3,1],[0,3,2,2],[1,2,0,1]],[[0,1,2,0],[2,4,3,1],[0,3,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,4,1],[0,3,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[0,4,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[0,3,2,2],[2,2,0,1]],[[0,1,2,0],[2,3,3,1],[0,3,2,2],[1,3,0,1]],[[0,1,3,0],[2,3,3,1],[0,3,2,2],[1,2,1,0]],[[0,1,2,0],[3,3,3,1],[0,3,2,2],[1,2,1,0]],[[0,1,2,0],[2,4,3,1],[0,3,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,4,1],[0,3,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[0,4,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[0,3,2,2],[2,2,1,0]],[[0,1,2,0],[2,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,2,3,1],[2,2,3,1],[0,2,3,1],[0,0,2,1]],[[1,3,2,1],[2,2,3,1],[0,2,3,1],[0,0,2,1]],[[2,2,2,1],[2,2,3,1],[0,2,3,1],[0,0,2,1]],[[0,1,3,0],[2,3,3,1],[0,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,4,3,1],[0,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,4,1],[0,3,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,4,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,3,1],[0,1,3,1]],[[0,1,2,0],[2,3,3,1],[0,3,3,1],[0,1,2,2]],[[0,1,3,0],[2,3,3,1],[0,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,4,3,1],[0,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,4,1],[0,3,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,2,2,1],[2,2,4,1],[0,2,3,0],[1,1,1,1]],[[0,1,3,0],[2,3,3,1],[0,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,4,3,1],[0,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,4,1],[0,3,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,4,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,3,3],[0,0,2,1]],[[0,1,2,0],[2,3,3,1],[0,3,3,2],[0,0,2,2]],[[0,1,3,0],[2,3,3,1],[0,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,1],[0,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,1],[0,3,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[0,3,4,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[0,3,3,3],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[0,3,3,2],[0,1,1,2]],[[0,1,3,0],[2,3,3,1],[0,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,1],[0,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,1],[0,3,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[0,3,4,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[0,3,3,3],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[0,3,3,2],[0,1,3,0]],[[0,1,3,0],[2,3,3,1],[0,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,1],[0,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,4,1],[0,3,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[0,3,4,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[0,3,3,3],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[0,3,3,2],[0,2,0,2]],[[0,1,3,0],[2,3,3,1],[0,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,1],[0,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,4,1],[0,3,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,1],[0,3,4,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[0,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,3,1],[0,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,3,1],[0,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,3,1],[0,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,3,1],[0,2,4,0],[1,0,2,1]],[[1,2,2,1],[2,2,4,1],[0,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,3,1],[0,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,3,1],[0,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,3,1],[0,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,3,1],[0,2,3,0],[1,0,2,1]],[[0,1,3,0],[2,3,3,1],[0,3,3,2],[1,2,0,0]],[[0,1,2,0],[3,3,3,1],[0,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,4,3,1],[0,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,3,4,1],[0,3,3,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,2,3,1],[0,2,4,0],[0,2,1,1]],[[1,2,2,1],[2,2,4,1],[0,2,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,3,1],[0,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,1],[0,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,3,1],[0,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,1],[0,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,3,1],[0,2,3,0],[0,1,2,2]],[[1,2,2,1],[2,2,3,1],[0,2,3,0],[0,1,3,1]],[[1,2,2,1],[2,2,3,1],[0,2,4,0],[0,1,2,1]],[[1,2,2,1],[2,2,4,1],[0,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,3,1],[0,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,3,1],[0,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,3,1],[0,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,3,1],[0,2,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[1,0,2,3],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,0,2,2],[2,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,0,2,2],[1,3,2,1]],[[0,1,2,0],[2,3,3,1],[1,0,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,1],[1,0,2,2],[1,2,2,2]],[[0,1,3,0],[2,3,3,1],[1,0,3,1],[1,2,2,1]],[[0,1,2,0],[3,3,3,1],[1,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,1],[1,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,4,1],[1,0,3,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,0,4,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,0,3,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,0,3,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,1],[1,0,3,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,1],[1,0,3,1],[1,2,2,2]],[[0,1,2,0],[2,3,3,1],[1,0,3,3],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,0,3,2],[0,2,3,1]],[[0,1,2,0],[2,3,3,1],[1,0,3,2],[0,2,2,2]],[[0,1,3,0],[2,3,3,1],[1,0,3,2],[1,2,1,1]],[[0,1,2,0],[3,3,3,1],[1,0,3,2],[1,2,1,1]],[[0,1,2,0],[2,4,3,1],[1,0,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,4,1],[1,0,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[1,0,4,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[1,0,3,3],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[1,0,3,2],[1,2,1,2]],[[0,1,3,0],[2,3,3,1],[1,0,3,2],[1,2,2,0]],[[0,1,2,0],[3,3,3,1],[1,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,1],[1,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,4,1],[1,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[1,0,4,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[1,0,3,3],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[1,0,3,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,1],[1,0,3,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,1],[1,0,3,2],[1,2,3,0]],[[0,1,2,0],[2,3,3,1],[1,1,2,3],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,1,2,2],[0,3,2,1]],[[0,1,2,0],[2,3,3,1],[1,1,2,2],[0,2,3,1]],[[0,1,2,0],[2,3,3,1],[1,1,2,2],[0,2,2,2]],[[0,1,3,0],[2,3,3,1],[1,1,3,1],[0,2,2,1]],[[0,1,2,0],[3,3,3,1],[1,1,3,1],[0,2,2,1]],[[0,1,2,0],[2,4,3,1],[1,1,3,1],[0,2,2,1]],[[0,1,2,0],[2,3,4,1],[1,1,3,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,1,4,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,1,3,1],[0,3,2,1]],[[0,1,2,0],[2,3,3,1],[1,1,3,1],[0,2,3,1]],[[0,1,2,0],[2,3,3,1],[1,1,3,1],[0,2,2,2]],[[0,1,3,0],[2,3,3,1],[1,1,3,2],[0,2,1,1]],[[0,1,2,0],[3,3,3,1],[1,1,3,2],[0,2,1,1]],[[0,1,2,0],[2,4,3,1],[1,1,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,4,1],[1,1,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[1,1,4,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[1,1,3,3],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[1,1,3,2],[0,2,1,2]],[[0,1,3,0],[2,3,3,1],[1,1,3,2],[0,2,2,0]],[[0,1,2,0],[3,3,3,1],[1,1,3,2],[0,2,2,0]],[[0,1,2,0],[2,4,3,1],[1,1,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,4,1],[1,1,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,1],[1,1,4,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,1],[1,1,3,3],[0,2,2,0]],[[0,1,2,0],[2,3,3,1],[1,1,3,2],[0,3,2,0]],[[0,1,2,0],[2,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,2,4,1],[0,2,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[1,2,2,3],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[1,2,2,2],[0,1,3,1]],[[0,1,2,0],[2,3,3,1],[1,2,2,2],[0,1,2,2]],[[0,1,2,0],[2,3,3,1],[1,2,2,3],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[1,2,2,2],[1,0,3,1]],[[0,1,2,0],[2,3,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,2,2],[2,2,3,1],[0,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[0,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,3,1],[0,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[0,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,4,1],[0,2,2,2],[1,1,0,1]],[[0,1,3,0],[2,3,3,1],[1,2,3,1],[0,1,2,1]],[[0,1,2,0],[3,3,3,1],[1,2,3,1],[0,1,2,1]],[[0,1,2,0],[2,4,3,1],[1,2,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,4,1],[1,2,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[1,2,4,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,1],[0,1,3,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,1],[0,1,2,2]],[[0,1,3,0],[2,3,3,1],[1,2,3,1],[0,2,1,1]],[[0,1,2,0],[3,3,3,1],[1,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,4,3,1],[1,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,4,1],[1,2,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[1,2,4,1],[0,2,1,1]],[[0,1,3,0],[2,3,3,1],[1,2,3,1],[1,0,2,1]],[[0,1,2,0],[3,3,3,1],[1,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,4,3,1],[1,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,4,1],[1,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[1,2,4,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,1],[1,0,3,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,1],[1,0,2,2]],[[0,1,3,0],[2,3,3,1],[1,2,3,1],[1,1,1,1]],[[0,1,2,0],[3,3,3,1],[1,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,4,3,1],[1,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,4,1],[1,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[1,2,4,1],[1,1,1,1]],[[1,2,2,2],[2,2,3,1],[0,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,1],[0,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,3,1],[0,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,1],[0,2,2,2],[1,1,0,1]],[[0,1,3,0],[2,3,3,1],[1,2,3,2],[0,0,2,1]],[[0,1,2,0],[3,3,3,1],[1,2,3,2],[0,0,2,1]],[[0,1,2,0],[2,4,3,1],[1,2,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,4,1],[1,2,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,1],[1,2,4,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,3],[0,0,2,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,2],[0,0,2,2]],[[0,1,3,0],[2,3,3,1],[1,2,3,2],[0,1,1,1]],[[0,1,2,0],[3,3,3,1],[1,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,1],[1,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,1],[1,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[1,2,4,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,3],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,2],[0,1,1,2]],[[0,1,3,0],[2,3,3,1],[1,2,3,2],[0,1,2,0]],[[0,1,2,0],[3,3,3,1],[1,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,1],[1,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,1],[1,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[1,2,4,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[1,2,3,3],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[1,2,3,2],[0,1,3,0]],[[0,1,3,0],[2,3,3,1],[1,2,3,2],[0,2,0,1]],[[0,1,2,0],[3,3,3,1],[1,2,3,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,1],[1,2,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,4,1],[1,2,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[1,2,4,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,3],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,2],[0,2,0,2]],[[0,1,3,0],[2,3,3,1],[1,2,3,2],[0,2,1,0]],[[0,1,2,0],[3,3,3,1],[1,2,3,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,1],[1,2,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,4,1],[1,2,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,1],[1,2,4,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,2,4,1],[0,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[0,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,1],[0,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[0,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[0,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,4,1],[0,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[0,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[0,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,1],[0,2,2,2],[1,0,1,1]],[[0,1,3,0],[2,3,3,1],[1,2,3,2],[1,0,1,1]],[[0,1,2,0],[3,3,3,1],[1,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,4,3,1],[1,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,4,1],[1,2,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,1],[1,2,4,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,3],[1,0,1,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,2],[1,0,1,2]],[[0,1,3,0],[2,3,3,1],[1,2,3,2],[1,0,2,0]],[[0,1,2,0],[3,3,3,1],[1,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,4,3,1],[1,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,4,1],[1,2,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,1],[1,2,4,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,1],[1,2,3,3],[1,0,2,0]],[[0,1,2,0],[2,3,3,1],[1,2,3,2],[1,0,3,0]],[[0,1,3,0],[2,3,3,1],[1,2,3,2],[1,1,0,1]],[[0,1,2,0],[3,3,3,1],[1,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,1],[1,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,4,1],[1,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[1,2,4,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,3],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[1,2,3,2],[1,1,0,2]],[[0,1,3,0],[2,3,3,1],[1,2,3,2],[1,1,1,0]],[[0,1,2,0],[3,3,3,1],[1,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,1],[1,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,4,1],[1,2,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[1,2,4,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[1,2,3,3],[1,1,1,0]],[[2,2,2,1],[2,2,3,1],[0,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,2,4,1],[0,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,3,1],[0,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,1],[0,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,1],[0,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,3,1],[0,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,4,1],[0,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,1],[0,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,3,1],[0,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,3,1],[0,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,1],[0,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,2,4,1],[0,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[0,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,1],[0,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,1],[0,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,1],[0,2,2,2],[0,1,2,0]],[[0,1,3,0],[2,3,3,1],[1,3,0,2],[0,2,2,1]],[[0,1,2,0],[3,3,3,1],[1,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,4,3,1],[1,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,4,1],[1,3,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,4,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,3,0,3],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,3,0,2],[0,3,2,1]],[[0,1,2,0],[2,3,3,1],[1,3,0,2],[0,2,3,1]],[[0,1,2,0],[2,3,3,1],[1,3,0,2],[0,2,2,2]],[[0,1,3,0],[2,3,3,1],[1,3,0,2],[1,1,2,1]],[[0,1,2,0],[3,3,3,1],[1,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,4,3,1],[1,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,4,1],[1,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[1,4,0,2],[1,1,2,1]],[[0,1,3,0],[2,3,3,1],[1,3,1,1],[0,2,2,1]],[[0,1,2,0],[3,3,3,1],[1,3,1,1],[0,2,2,1]],[[0,1,2,0],[2,4,3,1],[1,3,1,1],[0,2,2,1]],[[0,1,2,0],[2,3,4,1],[1,3,1,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,4,1,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[1,3,1,1],[0,3,2,1]],[[0,1,2,0],[2,3,3,1],[1,3,1,1],[0,2,3,1]],[[0,1,2,0],[2,3,3,1],[1,3,1,1],[0,2,2,2]],[[0,1,3,0],[2,3,3,1],[1,3,1,1],[1,1,2,1]],[[0,1,2,0],[3,3,3,1],[1,3,1,1],[1,1,2,1]],[[0,1,2,0],[2,4,3,1],[1,3,1,1],[1,1,2,1]],[[0,1,2,0],[2,3,4,1],[1,3,1,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[1,4,1,1],[1,1,2,1]],[[0,1,3,0],[2,3,3,1],[1,3,1,2],[0,2,2,0]],[[0,1,2,0],[3,3,3,1],[1,3,1,2],[0,2,2,0]],[[0,1,2,0],[2,4,3,1],[1,3,1,2],[0,2,2,0]],[[0,1,2,0],[2,3,4,1],[1,3,1,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,1],[1,4,1,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,1],[1,3,1,2],[0,3,2,0]],[[0,1,2,0],[2,3,3,1],[1,3,1,2],[0,2,3,0]],[[0,1,3,0],[2,3,3,1],[1,3,1,2],[1,1,2,0]],[[0,1,2,0],[3,3,3,1],[1,3,1,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,1],[1,3,1,2],[1,1,2,0]],[[0,1,2,0],[2,3,4,1],[1,3,1,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,2,2,1],[2,2,4,1],[0,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,1],[0,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,1],[0,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,1],[0,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,1],[0,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,2,4,1],[0,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,2,3,1],[0,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,2,3,1],[0,2,2,2],[0,0,2,1]],[[1,3,2,1],[2,2,3,1],[0,2,2,2],[0,0,2,1]],[[2,2,2,1],[2,2,3,1],[0,2,2,2],[0,0,2,1]],[[0,1,3,0],[2,3,3,1],[1,3,2,1],[0,1,2,1]],[[0,1,2,0],[3,3,3,1],[1,3,2,1],[0,1,2,1]],[[0,1,2,0],[2,4,3,1],[1,3,2,1],[0,1,2,1]],[[0,1,2,0],[2,3,4,1],[1,3,2,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[1,4,2,1],[0,1,2,1]],[[0,1,3,0],[2,3,3,1],[1,3,2,1],[0,2,1,1]],[[0,1,2,0],[3,3,3,1],[1,3,2,1],[0,2,1,1]],[[0,1,2,0],[2,4,3,1],[1,3,2,1],[0,2,1,1]],[[0,1,2,0],[2,3,4,1],[1,3,2,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[1,4,2,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[1,3,2,1],[0,3,1,1]],[[0,1,3,0],[2,3,3,1],[1,3,2,1],[1,0,2,1]],[[0,1,2,0],[3,3,3,1],[1,3,2,1],[1,0,2,1]],[[0,1,2,0],[2,4,3,1],[1,3,2,1],[1,0,2,1]],[[0,1,2,0],[2,3,4,1],[1,3,2,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[1,4,2,1],[1,0,2,1]],[[0,1,3,0],[2,3,3,1],[1,3,2,1],[1,1,1,1]],[[0,1,2,0],[3,3,3,1],[1,3,2,1],[1,1,1,1]],[[0,1,2,0],[2,4,3,1],[1,3,2,1],[1,1,1,1]],[[0,1,2,0],[2,3,4,1],[1,3,2,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[1,4,2,1],[1,1,1,1]],[[0,1,2,0],[3,3,3,1],[1,3,2,1],[1,2,0,1]],[[0,1,2,0],[2,4,3,1],[1,3,2,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[1,4,2,1],[1,2,0,1]],[[1,2,2,1],[2,2,4,1],[0,2,1,2],[1,0,2,1]],[[1,2,2,2],[2,2,3,1],[0,2,1,2],[1,0,2,1]],[[1,2,3,1],[2,2,3,1],[0,2,1,2],[1,0,2,1]],[[0,1,3,0],[2,3,3,1],[1,3,2,2],[0,1,1,1]],[[0,1,2,0],[3,3,3,1],[1,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,1],[1,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,1],[1,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[1,4,2,2],[0,1,1,1]],[[0,1,3,0],[2,3,3,1],[1,3,2,2],[0,1,2,0]],[[0,1,2,0],[3,3,3,1],[1,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,1],[1,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,1],[1,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[1,4,2,2],[0,1,2,0]],[[0,1,3,0],[2,3,3,1],[1,3,2,2],[0,2,0,1]],[[0,1,2,0],[3,3,3,1],[1,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,1],[1,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,4,1],[1,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[1,4,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[1,3,2,2],[0,3,0,1]],[[0,1,3,0],[2,3,3,1],[1,3,2,2],[0,2,1,0]],[[0,1,2,0],[3,3,3,1],[1,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,1],[1,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,4,1],[1,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,1],[1,4,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,1],[1,3,2,2],[0,3,1,0]],[[1,3,2,1],[2,2,3,1],[0,2,1,2],[1,0,2,1]],[[2,2,2,1],[2,2,3,1],[0,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,2,4,1],[0,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,2,3,1],[0,2,1,2],[0,1,2,1]],[[0,1,3,0],[2,3,3,1],[1,3,2,2],[1,0,1,1]],[[0,1,2,0],[3,3,3,1],[1,3,2,2],[1,0,1,1]],[[0,1,2,0],[2,4,3,1],[1,3,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,4,1],[1,3,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,1],[1,4,2,2],[1,0,1,1]],[[0,1,3,0],[2,3,3,1],[1,3,2,2],[1,0,2,0]],[[0,1,2,0],[3,3,3,1],[1,3,2,2],[1,0,2,0]],[[0,1,2,0],[2,4,3,1],[1,3,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,4,1],[1,3,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,1],[1,4,2,2],[1,0,2,0]],[[0,1,3,0],[2,3,3,1],[1,3,2,2],[1,1,0,1]],[[0,1,2,0],[3,3,3,1],[1,3,2,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,1],[1,3,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,4,1],[1,3,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[1,4,2,2],[1,1,0,1]],[[0,1,3,0],[2,3,3,1],[1,3,2,2],[1,1,1,0]],[[0,1,2,0],[3,3,3,1],[1,3,2,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,1],[1,3,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,4,1],[1,3,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[1,4,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,1],[0,2,1,2],[0,1,2,1]],[[1,3,2,1],[2,2,3,1],[0,2,1,2],[0,1,2,1]],[[2,2,2,1],[2,2,3,1],[0,2,1,2],[0,1,2,1]],[[0,1,3,0],[2,3,3,1],[1,3,2,2],[1,2,0,0]],[[0,1,2,0],[3,3,3,1],[1,3,2,2],[1,2,0,0]],[[0,1,2,0],[2,4,3,1],[1,3,2,2],[1,2,0,0]],[[0,1,2,0],[2,3,4,1],[1,3,2,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,1],[1,4,2,2],[1,2,0,0]],[[1,2,2,1],[2,2,4,1],[0,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,3,1],[0,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,2,3,1],[0,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,3,1],[0,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,3,1],[0,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,2,4,1],[0,1,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,1],[0,1,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,1],[0,1,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,1],[0,1,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,1],[0,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,4,1],[0,1,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,1],[0,1,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,1],[0,1,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,1],[0,1,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,1],[0,1,3,2],[1,0,1,1]],[[0,1,3,0],[2,3,3,1],[1,3,3,1],[0,0,2,1]],[[0,1,2,0],[3,3,3,1],[1,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,4,3,1],[1,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,3,4,1],[1,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,3,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,2,1],[2,2,4,1],[0,1,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,1],[0,1,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,1],[0,1,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,1],[0,1,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,1],[0,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,4,1],[0,1,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,1],[0,1,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,1],[0,1,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,1],[0,1,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,1],[0,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,4,1],[0,1,3,2],[0,0,2,1]],[[1,2,2,2],[2,2,3,1],[0,1,3,2],[0,0,2,1]],[[1,2,3,1],[2,2,3,1],[0,1,3,2],[0,0,2,1]],[[1,3,2,1],[2,2,3,1],[0,1,3,2],[0,0,2,1]],[[0,1,3,0],[2,3,3,1],[1,3,3,2],[0,0,1,1]],[[0,1,2,0],[3,3,3,1],[1,3,3,2],[0,0,1,1]],[[0,1,2,0],[2,4,3,1],[1,3,3,2],[0,0,1,1]],[[0,1,2,0],[2,3,4,1],[1,3,3,2],[0,0,1,1]],[[0,1,2,0],[2,3,3,1],[1,3,4,2],[0,0,1,1]],[[0,1,2,0],[2,3,3,1],[1,3,3,3],[0,0,1,1]],[[0,1,2,0],[2,3,3,1],[1,3,3,2],[0,0,1,2]],[[0,1,3,0],[2,3,3,1],[1,3,3,2],[0,0,2,0]],[[0,1,2,0],[3,3,3,1],[1,3,3,2],[0,0,2,0]],[[0,1,2,0],[2,4,3,1],[1,3,3,2],[0,0,2,0]],[[0,1,2,0],[2,3,4,1],[1,3,3,2],[0,0,2,0]],[[0,1,2,0],[2,3,3,1],[1,3,4,2],[0,0,2,0]],[[0,1,2,0],[2,3,3,1],[1,3,3,3],[0,0,2,0]],[[2,2,2,1],[2,2,3,1],[0,1,3,2],[0,0,2,1]],[[0,1,3,0],[2,3,3,1],[1,3,3,2],[0,2,0,0]],[[0,1,2,0],[3,3,3,1],[1,3,3,2],[0,2,0,0]],[[0,1,2,0],[2,4,3,1],[1,3,3,2],[0,2,0,0]],[[0,1,2,0],[2,3,4,1],[1,3,3,2],[0,2,0,0]],[[0,1,2,0],[2,3,3,1],[1,4,3,2],[0,2,0,0]],[[1,2,2,1],[2,2,3,1],[0,1,3,1],[0,2,3,0]],[[1,2,2,1],[2,2,3,1],[0,1,4,1],[0,2,2,0]],[[1,2,2,1],[2,2,4,1],[0,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,2,3,1],[0,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,2,3,1],[0,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,2,3,1],[0,1,3,1],[0,2,2,0]],[[2,2,2,1],[2,2,3,1],[0,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,2,3,1],[0,1,4,1],[0,2,1,1]],[[1,2,2,1],[2,2,4,1],[0,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,3,1],[0,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,3,1],[0,1,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,3,1],[0,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,3,1],[0,1,3,1],[0,2,1,1]],[[0,1,3,0],[2,3,3,1],[1,3,3,2],[1,1,0,0]],[[0,1,2,0],[3,3,3,1],[1,3,3,2],[1,1,0,0]],[[0,1,2,0],[2,4,3,1],[1,3,3,2],[1,1,0,0]],[[0,1,2,0],[2,3,4,1],[1,3,3,2],[1,1,0,0]],[[0,1,2,0],[2,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,2,1],[2,2,3,1],[0,1,3,0],[0,2,2,2]],[[1,2,2,1],[2,2,3,1],[0,1,3,0],[0,2,3,1]],[[1,2,2,1],[2,2,3,1],[0,1,4,0],[0,2,2,1]],[[1,2,2,1],[2,2,4,1],[0,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,2,3,1],[0,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,2,3,1],[0,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,2,3,1],[0,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,2,3,1],[0,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,2,4,1],[0,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,2,3,1],[0,1,2,2],[0,2,2,0]],[[1,2,3,1],[2,2,3,1],[0,1,2,2],[0,2,2,0]],[[1,3,2,1],[2,2,3,1],[0,1,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,3,1],[0,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,4,1],[0,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,2,3,1],[0,1,2,2],[0,2,1,1]],[[1,2,3,1],[2,2,3,1],[0,1,2,2],[0,2,1,1]],[[1,3,2,1],[2,2,3,1],[0,1,2,2],[0,2,1,1]],[[2,2,2,1],[2,2,3,1],[0,1,2,2],[0,2,1,1]],[[1,2,2,1],[2,2,4,1],[0,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,2,3,1],[0,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,2,3,1],[0,1,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,3,1],[0,1,1,2],[0,2,2,1]],[[2,2,2,1],[2,2,3,1],[0,1,1,2],[0,2,2,1]],[[0,1,3,0],[2,3,3,1],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[3,3,3,1],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,4,3,1],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,4,1],[2,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[3,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,1,3],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,1,2],[2,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,1,2],[1,3,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,1,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,1],[2,0,1,2],[1,2,2,2]],[[0,1,3,0],[2,3,3,1],[2,0,2,1],[1,2,2,1]],[[0,1,2,0],[3,3,3,1],[2,0,2,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,1],[2,0,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,4,1],[2,0,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[3,0,2,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,2,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,2,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,2,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,1],[2,0,2,1],[1,2,2,2]],[[0,1,2,0],[2,3,3,1],[2,0,2,3],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,2,2],[0,3,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,2,2],[0,2,3,1]],[[0,1,2,0],[2,3,3,1],[2,0,2,2],[0,2,2,2]],[[0,1,2,0],[2,3,3,1],[2,0,2,3],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,2,2],[1,1,3,1]],[[0,1,2,0],[2,3,3,1],[2,0,2,2],[1,1,2,2]],[[0,1,3,0],[2,3,3,1],[2,0,2,2],[1,2,2,0]],[[0,1,2,0],[3,3,3,1],[2,0,2,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,1],[2,0,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,4,1],[2,0,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[3,0,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[2,0,2,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,1],[2,0,2,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,1],[2,0,2,2],[1,2,3,0]],[[0,1,3,0],[2,3,3,1],[2,0,3,1],[0,2,2,1]],[[0,1,2,0],[3,3,3,1],[2,0,3,1],[0,2,2,1]],[[0,1,2,0],[2,4,3,1],[2,0,3,1],[0,2,2,1]],[[0,1,2,0],[2,3,4,1],[2,0,3,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[3,0,3,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,4,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,1],[0,3,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,1],[0,2,3,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,1],[0,2,2,2]],[[0,1,3,0],[2,3,3,1],[2,0,3,1],[1,1,2,1]],[[0,1,2,0],[3,3,3,1],[2,0,3,1],[1,1,2,1]],[[0,1,2,0],[2,4,3,1],[2,0,3,1],[1,1,2,1]],[[0,1,2,0],[2,3,4,1],[2,0,3,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[3,0,3,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,4,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,1],[2,1,2,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,1],[1,1,3,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,1],[1,1,2,2]],[[0,1,3,0],[2,3,3,1],[2,0,3,1],[1,2,1,1]],[[0,1,2,0],[3,3,3,1],[2,0,3,1],[1,2,1,1]],[[0,1,2,0],[2,4,3,1],[2,0,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,4,1],[2,0,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[3,0,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[2,0,4,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,1],[2,2,1,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,1],[1,3,1,1]],[[0,1,3,0],[2,3,3,1],[2,0,3,2],[0,2,1,1]],[[0,1,2,0],[3,3,3,1],[2,0,3,2],[0,2,1,1]],[[0,1,2,0],[2,4,3,1],[2,0,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,4,1],[2,0,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[3,0,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[2,0,4,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,3],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[0,2,1,2]],[[0,1,3,0],[2,3,3,1],[2,0,3,2],[0,2,2,0]],[[0,1,2,0],[3,3,3,1],[2,0,3,2],[0,2,2,0]],[[0,1,2,0],[2,4,3,1],[2,0,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,4,1],[2,0,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,1],[3,0,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,1],[2,0,4,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,1],[2,0,3,3],[0,2,2,0]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[0,3,2,0]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[0,2,3,0]],[[0,1,3,0],[2,3,3,1],[2,0,3,2],[1,1,1,1]],[[0,1,2,0],[3,3,3,1],[2,0,3,2],[1,1,1,1]],[[0,1,2,0],[2,4,3,1],[2,0,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,4,1],[2,0,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[3,0,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[2,0,4,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,3],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[2,1,1,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[1,1,1,2]],[[0,1,3,0],[2,3,3,1],[2,0,3,2],[1,1,2,0]],[[0,1,2,0],[3,3,3,1],[2,0,3,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,1],[2,0,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,4,1],[2,0,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[3,0,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[2,0,4,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[2,0,3,3],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[2,1,2,0]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[1,1,3,0]],[[0,1,3,0],[2,3,3,1],[2,0,3,2],[1,2,0,1]],[[0,1,2,0],[3,3,3,1],[2,0,3,2],[1,2,0,1]],[[0,1,2,0],[2,4,3,1],[2,0,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,4,1],[2,0,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[3,0,3,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[2,0,4,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,3],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[2,2,0,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[1,3,0,1]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[1,2,0,2]],[[0,1,3,0],[2,3,3,1],[2,0,3,2],[1,2,1,0]],[[0,1,2,0],[3,3,3,1],[2,0,3,2],[1,2,1,0]],[[0,1,2,0],[2,4,3,1],[2,0,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,4,1],[2,0,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[3,0,3,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[2,0,4,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[2,0,3,3],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[2,2,1,0]],[[0,1,2,0],[2,3,3,1],[2,0,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,4,1],[0,0,3,2],[0,2,2,0]],[[1,2,2,2],[2,2,3,1],[0,0,3,2],[0,2,2,0]],[[1,2,3,1],[2,2,3,1],[0,0,3,2],[0,2,2,0]],[[1,3,2,1],[2,2,3,1],[0,0,3,2],[0,2,2,0]],[[2,2,2,1],[2,2,3,1],[0,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,2,4,1],[0,0,3,2],[0,2,1,1]],[[1,2,2,2],[2,2,3,1],[0,0,3,2],[0,2,1,1]],[[1,2,3,1],[2,2,3,1],[0,0,3,2],[0,2,1,1]],[[1,3,2,1],[2,2,3,1],[0,0,3,2],[0,2,1,1]],[[2,2,2,1],[2,2,3,1],[0,0,3,2],[0,2,1,1]],[[0,1,3,0],[2,3,3,1],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[3,3,3,1],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,4,3,1],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,4,1],[2,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[3,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,0,3],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,0,2],[2,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,0,2],[1,3,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,0,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,1],[2,1,0,2],[1,2,2,2]],[[0,1,3,0],[2,3,3,1],[2,1,1,1],[1,2,2,1]],[[0,1,2,0],[3,3,3,1],[2,1,1,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,1],[2,1,1,1],[1,2,2,1]],[[0,1,2,0],[2,3,4,1],[2,1,1,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[3,1,1,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,1,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,1,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,1,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,1],[2,1,1,1],[1,2,2,2]],[[0,1,3,0],[2,3,3,1],[2,1,1,2],[1,2,2,0]],[[0,1,2,0],[3,3,3,1],[2,1,1,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,1],[2,1,1,2],[1,2,2,0]],[[0,1,2,0],[2,3,4,1],[2,1,1,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[3,1,1,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[2,1,1,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,1],[2,1,1,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,1],[2,1,1,2],[1,2,3,0]],[[0,1,3,0],[2,3,3,1],[2,1,2,1],[1,2,1,1]],[[0,1,2,0],[3,3,3,1],[2,1,2,1],[1,2,1,1]],[[0,1,2,0],[2,4,3,1],[2,1,2,1],[1,2,1,1]],[[0,1,2,0],[2,3,4,1],[2,1,2,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[3,1,2,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,2,1],[2,2,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,2,1],[1,3,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,2,3],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,2,2],[0,1,3,1]],[[0,1,2,0],[2,3,3,1],[2,1,2,2],[0,1,2,2]],[[0,1,2,0],[2,3,3,1],[2,1,2,3],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,2,2],[1,0,3,1]],[[0,1,2,0],[2,3,3,1],[2,1,2,2],[1,0,2,2]],[[0,1,3,0],[2,3,3,1],[2,1,2,2],[1,2,0,1]],[[0,1,2,0],[3,3,3,1],[2,1,2,2],[1,2,0,1]],[[0,1,2,0],[2,4,3,1],[2,1,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,4,1],[2,1,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[3,1,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[2,1,2,2],[2,2,0,1]],[[0,1,2,0],[2,3,3,1],[2,1,2,2],[1,3,0,1]],[[0,1,3,0],[2,3,3,1],[2,1,2,2],[1,2,1,0]],[[0,1,2,0],[3,3,3,1],[2,1,2,2],[1,2,1,0]],[[0,1,2,0],[2,4,3,1],[2,1,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,4,1],[2,1,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[3,1,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[2,1,2,2],[2,2,1,0]],[[0,1,2,0],[2,3,3,1],[2,1,2,2],[1,3,1,0]],[[1,2,2,1],[2,2,4,1],[0,0,3,2],[0,1,2,1]],[[1,2,2,2],[2,2,3,1],[0,0,3,2],[0,1,2,1]],[[1,2,3,1],[2,2,3,1],[0,0,3,2],[0,1,2,1]],[[1,3,2,1],[2,2,3,1],[0,0,3,2],[0,1,2,1]],[[2,2,2,1],[2,2,3,1],[0,0,3,2],[0,1,2,1]],[[0,1,3,0],[2,3,3,1],[2,1,3,1],[0,1,2,1]],[[0,1,2,0],[3,3,3,1],[2,1,3,1],[0,1,2,1]],[[0,1,2,0],[2,4,3,1],[2,1,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,4,1],[2,1,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[3,1,3,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,4,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,1],[0,1,3,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,1],[0,1,2,2]],[[0,1,3,0],[2,3,3,1],[2,1,3,1],[0,2,1,1]],[[0,1,2,0],[3,3,3,1],[2,1,3,1],[0,2,1,1]],[[0,1,2,0],[2,4,3,1],[2,1,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,4,1],[2,1,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[3,1,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,4,1],[0,2,1,1]],[[0,1,3,0],[2,3,3,1],[2,1,3,1],[1,0,2,1]],[[0,1,2,0],[3,3,3,1],[2,1,3,1],[1,0,2,1]],[[0,1,2,0],[2,4,3,1],[2,1,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,4,1],[2,1,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[3,1,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,4,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,1],[2,0,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,1],[1,0,3,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,1],[1,0,2,2]],[[0,1,3,0],[2,3,3,1],[2,1,3,1],[1,1,1,1]],[[0,1,2,0],[3,3,3,1],[2,1,3,1],[1,1,1,1]],[[0,1,2,0],[2,4,3,1],[2,1,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,4,1],[2,1,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[3,1,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,4,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,1],[2,1,1,1]],[[1,2,2,1],[2,2,4,1],[0,0,2,2],[0,2,2,1]],[[1,2,2,2],[2,2,3,1],[0,0,2,2],[0,2,2,1]],[[1,2,3,1],[2,2,3,1],[0,0,2,2],[0,2,2,1]],[[1,3,2,1],[2,2,3,1],[0,0,2,2],[0,2,2,1]],[[2,2,2,1],[2,2,3,1],[0,0,2,2],[0,2,2,1]],[[0,1,3,0],[2,3,3,1],[2,1,3,2],[0,0,2,1]],[[0,1,2,0],[3,3,3,1],[2,1,3,2],[0,0,2,1]],[[0,1,2,0],[2,4,3,1],[2,1,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,4,1],[2,1,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,4,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,3],[0,0,2,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,2],[0,0,2,2]],[[0,1,3,0],[2,3,3,1],[2,1,3,2],[0,1,1,1]],[[0,1,2,0],[3,3,3,1],[2,1,3,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,1],[2,1,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,1],[2,1,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[3,1,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,4,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,3],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,2],[0,1,1,2]],[[0,1,3,0],[2,3,3,1],[2,1,3,2],[0,1,2,0]],[[0,1,2,0],[3,3,3,1],[2,1,3,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,1],[2,1,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,1],[2,1,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[3,1,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[2,1,4,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[2,1,3,3],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[2,1,3,2],[0,1,3,0]],[[0,1,3,0],[2,3,3,1],[2,1,3,2],[0,2,0,1]],[[0,1,2,0],[3,3,3,1],[2,1,3,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,1],[2,1,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,4,1],[2,1,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[3,1,3,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[2,1,4,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,3],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,2],[0,2,0,2]],[[0,1,3,0],[2,3,3,1],[2,1,3,2],[0,2,1,0]],[[0,1,2,0],[3,3,3,1],[2,1,3,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,1],[2,1,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,4,1],[2,1,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,1],[3,1,3,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,1],[2,1,4,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,1],[2,1,3,3],[0,2,1,0]],[[0,1,3,0],[2,3,3,1],[2,1,3,2],[1,0,1,1]],[[0,1,2,0],[3,3,3,1],[2,1,3,2],[1,0,1,1]],[[0,1,2,0],[2,4,3,1],[2,1,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,4,1],[2,1,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,1],[3,1,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,4,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,3],[1,0,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,2],[2,0,1,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,2],[1,0,1,2]],[[0,1,3,0],[2,3,3,1],[2,1,3,2],[1,0,2,0]],[[0,1,2,0],[3,3,3,1],[2,1,3,2],[1,0,2,0]],[[0,1,2,0],[2,4,3,1],[2,1,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,4,1],[2,1,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,1],[3,1,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,1],[2,1,4,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,1],[2,1,3,3],[1,0,2,0]],[[0,1,2,0],[2,3,3,1],[2,1,3,2],[2,0,2,0]],[[0,1,2,0],[2,3,3,1],[2,1,3,2],[1,0,3,0]],[[0,1,3,0],[2,3,3,1],[2,1,3,2],[1,1,0,1]],[[0,1,2,0],[3,3,3,1],[2,1,3,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,1],[2,1,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,4,1],[2,1,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[3,1,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[2,1,4,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,3],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,2],[2,1,0,1]],[[0,1,2,0],[2,3,3,1],[2,1,3,2],[1,1,0,2]],[[0,1,3,0],[2,3,3,1],[2,1,3,2],[1,1,1,0]],[[0,1,2,0],[3,3,3,1],[2,1,3,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,1],[2,1,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,4,1],[2,1,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[3,1,3,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[2,1,4,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[2,1,3,3],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[2,1,3,2],[2,1,1,0]],[[1,2,2,1],[2,2,3,0],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[3,2,3,0],[2,3,3,1],[1,0,0,0]],[[1,2,3,1],[2,2,3,0],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[2,2,3,0],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[2,2,3,0],[2,3,3,1],[1,0,0,0]],[[0,1,2,0],[3,3,3,1],[2,2,0,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,1],[2,2,0,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[3,2,0,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,2,0,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,1],[2,2,0,1],[1,3,2,1]],[[0,1,3,0],[2,3,3,1],[2,2,0,2],[0,2,2,1]],[[0,1,2,0],[3,3,3,1],[2,2,0,2],[0,2,2,1]],[[0,1,2,0],[2,4,3,1],[2,2,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,4,1],[2,2,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[3,2,0,2],[0,2,2,1]],[[0,1,3,0],[2,3,3,1],[2,2,0,2],[1,1,2,1]],[[0,1,2,0],[3,3,3,1],[2,2,0,2],[1,1,2,1]],[[0,1,2,0],[2,4,3,1],[2,2,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,4,1],[2,2,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[3,2,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[2,2,0,2],[2,1,2,1]],[[0,1,2,0],[3,3,3,1],[2,2,0,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,1],[2,2,0,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[3,2,0,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,1],[2,2,0,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,1],[2,2,0,2],[1,3,2,0]],[[0,1,3,0],[2,3,3,1],[2,2,1,1],[0,2,2,1]],[[0,1,2,0],[3,3,3,1],[2,2,1,1],[0,2,2,1]],[[0,1,2,0],[2,4,3,1],[2,2,1,1],[0,2,2,1]],[[0,1,2,0],[2,3,4,1],[2,2,1,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[3,2,1,1],[0,2,2,1]],[[0,1,3,0],[2,3,3,1],[2,2,1,1],[1,1,2,1]],[[0,1,2,0],[3,3,3,1],[2,2,1,1],[1,1,2,1]],[[0,1,2,0],[2,4,3,1],[2,2,1,1],[1,1,2,1]],[[0,1,2,0],[2,3,4,1],[2,2,1,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[3,2,1,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[2,2,1,1],[2,1,2,1]],[[0,1,3,0],[2,3,3,1],[2,2,1,2],[0,2,2,0]],[[0,1,2,0],[3,3,3,1],[2,2,1,2],[0,2,2,0]],[[0,1,2,0],[2,4,3,1],[2,2,1,2],[0,2,2,0]],[[0,1,2,0],[2,3,4,1],[2,2,1,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,1],[3,2,1,2],[0,2,2,0]],[[0,1,3,0],[2,3,3,1],[2,2,1,2],[1,1,2,0]],[[0,1,2,0],[3,3,3,1],[2,2,1,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,1],[2,2,1,2],[1,1,2,0]],[[0,1,2,0],[2,3,4,1],[2,2,1,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[3,2,1,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[2,2,1,2],[2,1,2,0]],[[0,1,3,0],[2,3,3,1],[2,2,2,1],[0,1,2,1]],[[0,1,2,0],[3,3,3,1],[2,2,2,1],[0,1,2,1]],[[0,1,2,0],[2,4,3,1],[2,2,2,1],[0,1,2,1]],[[0,1,2,0],[2,3,4,1],[2,2,2,1],[0,1,2,1]],[[0,1,2,0],[2,3,3,1],[3,2,2,1],[0,1,2,1]],[[0,1,3,0],[2,3,3,1],[2,2,2,1],[0,2,1,1]],[[0,1,2,0],[3,3,3,1],[2,2,2,1],[0,2,1,1]],[[0,1,2,0],[2,4,3,1],[2,2,2,1],[0,2,1,1]],[[0,1,2,0],[2,3,4,1],[2,2,2,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[3,2,2,1],[0,2,1,1]],[[0,1,3,0],[2,3,3,1],[2,2,2,1],[1,0,2,1]],[[0,1,2,0],[3,3,3,1],[2,2,2,1],[1,0,2,1]],[[0,1,2,0],[2,4,3,1],[2,2,2,1],[1,0,2,1]],[[0,1,2,0],[2,3,4,1],[2,2,2,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[3,2,2,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,1],[2,2,2,1],[2,0,2,1]],[[0,1,3,0],[2,3,3,1],[2,2,2,1],[1,1,1,1]],[[0,1,2,0],[3,3,3,1],[2,2,2,1],[1,1,1,1]],[[0,1,2,0],[2,4,3,1],[2,2,2,1],[1,1,1,1]],[[0,1,2,0],[2,3,4,1],[2,2,2,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[3,2,2,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[2,2,2,1],[2,1,1,1]],[[0,1,2,0],[3,3,3,1],[2,2,2,1],[1,2,0,1]],[[0,1,2,0],[2,4,3,1],[2,2,2,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[3,2,2,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[2,2,3,0],[3,3,3,0],[1,0,1,0]],[[1,2,2,1],[3,2,3,0],[2,3,3,0],[1,0,1,0]],[[1,2,3,1],[2,2,3,0],[2,3,3,0],[1,0,1,0]],[[1,3,2,1],[2,2,3,0],[2,3,3,0],[1,0,1,0]],[[2,2,2,1],[2,2,3,0],[2,3,3,0],[1,0,1,0]],[[0,1,3,0],[2,3,3,1],[2,2,2,2],[0,1,1,1]],[[0,1,2,0],[3,3,3,1],[2,2,2,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,1],[2,2,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,1],[2,2,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,1],[3,2,2,2],[0,1,1,1]],[[0,1,3,0],[2,3,3,1],[2,2,2,2],[0,1,2,0]],[[0,1,2,0],[3,3,3,1],[2,2,2,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,1],[2,2,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,1],[2,2,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,1],[3,2,2,2],[0,1,2,0]],[[0,1,3,0],[2,3,3,1],[2,2,2,2],[0,2,0,1]],[[0,1,2,0],[3,3,3,1],[2,2,2,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,1],[2,2,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,4,1],[2,2,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[3,2,2,2],[0,2,0,1]],[[0,1,3,0],[2,3,3,1],[2,2,2,2],[0,2,1,0]],[[0,1,2,0],[3,3,3,1],[2,2,2,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,1],[2,2,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,4,1],[2,2,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,1],[3,2,2,2],[0,2,1,0]],[[0,1,3,0],[2,3,3,1],[2,2,2,2],[1,0,1,1]],[[0,1,2,0],[3,3,3,1],[2,2,2,2],[1,0,1,1]],[[0,1,2,0],[2,4,3,1],[2,2,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,4,1],[2,2,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,1],[3,2,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,1],[2,2,2,2],[2,0,1,1]],[[0,1,3,0],[2,3,3,1],[2,2,2,2],[1,0,2,0]],[[0,1,2,0],[3,3,3,1],[2,2,2,2],[1,0,2,0]],[[0,1,2,0],[2,4,3,1],[2,2,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,4,1],[2,2,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,1],[3,2,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,1],[2,2,2,2],[2,0,2,0]],[[0,1,3,0],[2,3,3,1],[2,2,2,2],[1,1,0,1]],[[0,1,2,0],[3,3,3,1],[2,2,2,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,1],[2,2,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,4,1],[2,2,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[3,2,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[2,2,2,2],[2,1,0,1]],[[0,1,3,0],[2,3,3,1],[2,2,2,2],[1,1,1,0]],[[0,1,2,0],[3,3,3,1],[2,2,2,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,1],[2,2,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,4,1],[2,2,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[3,2,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[2,2,2,2],[2,1,1,0]],[[0,1,3,0],[2,3,3,1],[2,2,2,2],[1,2,0,0]],[[0,1,2,0],[3,3,3,1],[2,2,2,2],[1,2,0,0]],[[0,1,2,0],[2,4,3,1],[2,2,2,2],[1,2,0,0]],[[0,1,2,0],[2,3,4,1],[2,2,2,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,1],[3,2,2,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,1],[2,2,2,2],[2,2,0,0]],[[1,2,2,1],[2,2,3,0],[3,3,2,1],[1,0,1,0]],[[1,2,2,1],[3,2,3,0],[2,3,2,1],[1,0,1,0]],[[1,2,3,1],[2,2,3,0],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[2,2,3,0],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[2,2,3,0],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,2,3,0],[3,3,2,1],[1,0,0,1]],[[1,2,2,1],[3,2,3,0],[2,3,2,1],[1,0,0,1]],[[1,2,3,1],[2,2,3,0],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[2,2,3,0],[2,3,2,1],[1,0,0,1]],[[2,2,2,1],[2,2,3,0],[2,3,2,1],[1,0,0,1]],[[0,1,3,0],[2,3,3,1],[2,2,3,2],[0,2,0,0]],[[0,1,2,0],[3,3,3,1],[2,2,3,2],[0,2,0,0]],[[0,1,2,0],[2,4,3,1],[2,2,3,2],[0,2,0,0]],[[0,1,2,0],[2,3,4,1],[2,2,3,2],[0,2,0,0]],[[0,1,2,0],[2,3,3,1],[3,2,3,2],[0,2,0,0]],[[1,2,2,1],[2,2,3,0],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[2,2,3,0],[3,3,2,0],[1,2,0,0]],[[1,2,2,1],[3,2,3,0],[2,3,2,0],[1,2,0,0]],[[1,2,3,1],[2,2,3,0],[2,3,2,0],[1,2,0,0]],[[1,3,2,1],[2,2,3,0],[2,3,2,0],[1,2,0,0]],[[2,2,2,1],[2,2,3,0],[2,3,2,0],[1,2,0,0]],[[1,2,2,1],[2,2,3,0],[2,3,2,0],[2,1,1,0]],[[1,2,2,1],[2,2,3,0],[3,3,2,0],[1,1,1,0]],[[1,2,2,1],[3,2,3,0],[2,3,2,0],[1,1,1,0]],[[0,1,3,0],[2,3,3,1],[2,2,3,2],[1,1,0,0]],[[0,1,2,0],[3,3,3,1],[2,2,3,2],[1,1,0,0]],[[0,1,2,0],[2,4,3,1],[2,2,3,2],[1,1,0,0]],[[0,1,2,0],[2,3,4,1],[2,2,3,2],[1,1,0,0]],[[0,1,2,0],[2,3,3,1],[3,2,3,2],[1,1,0,0]],[[0,1,2,0],[2,3,3,1],[2,2,3,2],[2,1,0,0]],[[1,2,3,1],[2,2,3,0],[2,3,2,0],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[2,3,2,0],[1,1,1,0]],[[2,2,2,1],[2,2,3,0],[2,3,2,0],[1,1,1,0]],[[1,2,2,1],[2,2,3,0],[3,3,2,0],[1,0,1,1]],[[1,2,2,1],[3,2,3,0],[2,3,2,0],[1,0,1,1]],[[1,2,3,1],[2,2,3,0],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,2,3,0],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,2,3,0],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[2,2,3,0],[3,3,2,0],[0,2,1,0]],[[1,2,2,1],[3,2,3,0],[2,3,2,0],[0,2,1,0]],[[1,2,3,1],[2,2,3,0],[2,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,2,3,0],[2,3,2,0],[0,2,1,0]],[[2,2,2,1],[2,2,3,0],[2,3,2,0],[0,2,1,0]],[[0,1,2,0],[3,3,3,1],[2,3,0,1],[0,2,2,1]],[[0,1,2,0],[2,4,3,1],[2,3,0,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,1],[3,3,0,1],[0,2,2,1]],[[0,1,2,0],[3,3,3,1],[2,3,0,1],[1,1,2,1]],[[0,1,2,0],[2,4,3,1],[2,3,0,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[3,3,0,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,1],[2,3,0,1],[2,1,2,1]],[[0,1,2,0],[3,3,3,1],[2,3,0,1],[1,2,1,1]],[[0,1,2,0],[2,4,3,1],[2,3,0,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[3,3,0,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,1],[2,3,0,1],[2,2,1,1]],[[0,1,2,0],[3,3,3,1],[2,3,0,2],[0,2,2,0]],[[0,1,2,0],[2,4,3,1],[2,3,0,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,1],[3,3,0,2],[0,2,2,0]],[[0,1,2,0],[3,3,3,1],[2,3,0,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,1],[2,3,0,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[3,3,0,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,1],[2,3,0,2],[2,1,2,0]],[[0,1,2,0],[3,3,3,1],[2,3,0,2],[1,2,1,0]],[[0,1,2,0],[2,4,3,1],[2,3,0,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[3,3,0,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,1],[2,3,0,2],[2,2,1,0]],[[1,2,2,1],[2,2,3,0],[2,3,1,1],[2,2,0,0]],[[1,2,2,1],[2,2,3,0],[3,3,1,1],[1,2,0,0]],[[1,2,2,1],[3,2,3,0],[2,3,1,1],[1,2,0,0]],[[1,2,3,1],[2,2,3,0],[2,3,1,1],[1,2,0,0]],[[1,3,2,1],[2,2,3,0],[2,3,1,1],[1,2,0,0]],[[2,2,2,1],[2,2,3,0],[2,3,1,1],[1,2,0,0]],[[0,1,2,0],[3,3,3,1],[2,3,1,1],[0,2,1,1]],[[0,1,2,0],[2,4,3,1],[2,3,1,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,1],[3,3,1,1],[0,2,1,1]],[[0,1,2,0],[3,3,3,1],[2,3,1,1],[1,1,1,1]],[[0,1,2,0],[2,4,3,1],[2,3,1,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[3,3,1,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,1],[2,3,1,1],[2,1,1,1]],[[0,1,2,0],[3,3,3,1],[2,3,1,1],[1,2,0,1]],[[0,1,2,0],[2,4,3,1],[2,3,1,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[3,3,1,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,1],[2,3,1,1],[2,2,0,1]],[[1,2,2,1],[2,2,3,0],[2,3,1,1],[2,1,1,0]],[[1,2,2,1],[2,2,3,0],[3,3,1,1],[1,1,1,0]],[[0,1,2,0],[3,3,3,1],[2,3,1,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,1],[2,3,1,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,1],[3,3,1,2],[0,2,0,1]],[[0,1,2,0],[3,3,3,1],[2,3,1,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,1],[2,3,1,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,1],[3,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,2,3,0],[2,3,1,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,0],[2,3,1,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[2,3,1,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,0],[2,3,1,1],[1,1,1,0]],[[1,2,2,1],[2,2,3,0],[2,3,1,1],[2,1,0,1]],[[1,2,2,1],[2,2,3,0],[3,3,1,1],[1,1,0,1]],[[1,2,2,1],[3,2,3,0],[2,3,1,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,0],[2,3,1,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,0],[2,3,1,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,0],[2,3,1,1],[1,1,0,1]],[[0,1,2,0],[3,3,3,1],[2,3,1,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,1],[2,3,1,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[3,3,1,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,1],[2,3,1,2],[2,1,0,1]],[[0,1,2,0],[3,3,3,1],[2,3,1,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,1],[2,3,1,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[3,3,1,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,1],[2,3,1,2],[2,1,1,0]],[[0,1,2,0],[3,3,3,1],[2,3,1,2],[1,2,0,0]],[[0,1,2,0],[2,4,3,1],[2,3,1,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,1],[3,3,1,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,2,3,0],[3,3,1,1],[0,2,1,0]],[[1,2,2,1],[3,2,3,0],[2,3,1,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,0],[2,3,1,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,0],[2,3,1,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,0],[2,3,1,1],[0,2,1,0]],[[1,2,2,1],[2,2,3,0],[3,3,1,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,0],[2,3,1,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,0],[2,3,1,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,0],[2,3,1,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,0],[2,3,1,1],[0,2,0,1]],[[1,2,2,1],[2,2,3,0],[2,3,1,0],[2,2,0,1]],[[1,2,2,1],[2,2,3,0],[3,3,1,0],[1,2,0,1]],[[1,2,2,1],[3,2,3,0],[2,3,1,0],[1,2,0,1]],[[1,2,3,1],[2,2,3,0],[2,3,1,0],[1,2,0,1]],[[1,3,2,1],[2,2,3,0],[2,3,1,0],[1,2,0,1]],[[2,2,2,1],[2,2,3,0],[2,3,1,0],[1,2,0,1]],[[0,1,2,0],[3,3,3,1],[2,3,2,1],[1,0,1,1]],[[0,1,2,0],[2,4,3,1],[2,3,2,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,1],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,2,3,0],[2,3,1,0],[2,1,1,1]],[[1,2,2,1],[2,2,3,0],[3,3,1,0],[1,1,1,1]],[[1,2,2,1],[3,2,3,0],[2,3,1,0],[1,1,1,1]],[[1,2,3,1],[2,2,3,0],[2,3,1,0],[1,1,1,1]],[[1,3,2,1],[2,2,3,0],[2,3,1,0],[1,1,1,1]],[[2,2,2,1],[2,2,3,0],[2,3,1,0],[1,1,1,1]],[[1,2,2,1],[2,2,3,0],[3,3,1,0],[0,2,1,1]],[[1,2,2,1],[3,2,3,0],[2,3,1,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,0],[2,3,1,0],[0,2,1,1]],[[1,3,2,1],[2,2,3,0],[2,3,1,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,0],[2,3,1,0],[0,2,1,1]],[[1,2,2,1],[2,2,3,0],[2,3,0,1],[2,2,1,0]],[[1,2,2,1],[2,2,3,0],[3,3,0,1],[1,2,1,0]],[[1,2,2,1],[3,2,3,0],[2,3,0,1],[1,2,1,0]],[[1,2,3,1],[2,2,3,0],[2,3,0,1],[1,2,1,0]],[[1,3,2,1],[2,2,3,0],[2,3,0,1],[1,2,1,0]],[[2,2,2,1],[2,2,3,0],[2,3,0,1],[1,2,1,0]],[[0,1,3,0],[2,3,3,1],[2,3,2,2],[1,0,0,1]],[[0,1,2,0],[3,3,3,1],[2,3,2,2],[1,0,0,1]],[[0,1,2,0],[2,4,3,1],[2,3,2,2],[1,0,0,1]],[[0,1,2,0],[2,3,4,1],[2,3,2,2],[1,0,0,1]],[[0,1,2,0],[2,3,3,1],[3,3,2,2],[1,0,0,1]],[[0,1,3,0],[2,3,3,1],[2,3,2,2],[1,0,1,0]],[[0,1,2,0],[3,3,3,1],[2,3,2,2],[1,0,1,0]],[[0,1,2,0],[2,4,3,1],[2,3,2,2],[1,0,1,0]],[[0,1,2,0],[2,3,4,1],[2,3,2,2],[1,0,1,0]],[[0,1,2,0],[2,3,3,1],[3,3,2,2],[1,0,1,0]],[[1,2,2,1],[2,2,3,0],[2,3,0,1],[2,1,2,0]],[[1,2,2,1],[2,2,3,0],[3,3,0,1],[1,1,2,0]],[[1,2,2,1],[3,2,3,0],[2,3,0,1],[1,1,2,0]],[[1,2,3,1],[2,2,3,0],[2,3,0,1],[1,1,2,0]],[[1,3,2,1],[2,2,3,0],[2,3,0,1],[1,1,2,0]],[[2,2,2,1],[2,2,3,0],[2,3,0,1],[1,1,2,0]],[[1,2,2,1],[2,2,3,0],[3,3,0,1],[0,2,2,0]],[[1,2,2,1],[3,2,3,0],[2,3,0,1],[0,2,2,0]],[[1,2,3,1],[2,2,3,0],[2,3,0,1],[0,2,2,0]],[[1,3,2,1],[2,2,3,0],[2,3,0,1],[0,2,2,0]],[[2,2,2,1],[2,2,3,0],[2,3,0,1],[0,2,2,0]],[[1,2,2,1],[2,2,3,0],[2,3,0,0],[2,2,2,0]],[[1,2,2,1],[2,2,3,0],[3,3,0,0],[1,2,2,0]],[[1,2,2,1],[3,2,3,0],[2,3,0,0],[1,2,2,0]],[[1,2,3,1],[2,2,3,0],[2,3,0,0],[1,2,2,0]],[[1,3,2,1],[2,2,3,0],[2,3,0,0],[1,2,2,0]],[[2,2,2,1],[2,2,3,0],[2,3,0,0],[1,2,2,0]],[[1,2,2,1],[2,2,3,0],[2,3,0,0],[2,2,1,1]],[[1,2,2,1],[2,2,3,0],[3,3,0,0],[1,2,1,1]],[[1,2,2,1],[3,2,3,0],[2,3,0,0],[1,2,1,1]],[[1,2,3,1],[2,2,3,0],[2,3,0,0],[1,2,1,1]],[[1,3,2,1],[2,2,3,0],[2,3,0,0],[1,2,1,1]],[[2,2,2,1],[2,2,3,0],[2,3,0,0],[1,2,1,1]],[[1,2,2,1],[2,2,3,0],[2,3,0,0],[2,1,2,1]],[[1,2,2,1],[2,2,3,0],[3,3,0,0],[1,1,2,1]],[[1,2,2,1],[3,2,3,0],[2,3,0,0],[1,1,2,1]],[[1,2,3,1],[2,2,3,0],[2,3,0,0],[1,1,2,1]],[[1,3,2,1],[2,2,3,0],[2,3,0,0],[1,1,2,1]],[[2,2,2,1],[2,2,3,0],[2,3,0,0],[1,1,2,1]],[[1,2,2,1],[2,2,3,0],[3,3,0,0],[0,2,2,1]],[[1,2,2,1],[3,2,3,0],[2,3,0,0],[0,2,2,1]],[[1,2,3,1],[2,2,3,0],[2,3,0,0],[0,2,2,1]],[[1,3,2,1],[2,2,3,0],[2,3,0,0],[0,2,2,1]],[[2,2,2,1],[2,2,3,0],[2,3,0,0],[0,2,2,1]],[[1,2,2,1],[2,2,3,0],[2,2,3,1],[2,1,0,0]],[[1,2,2,1],[2,2,3,0],[3,2,3,1],[1,1,0,0]],[[1,2,2,1],[3,2,3,0],[2,2,3,1],[1,1,0,0]],[[1,2,3,1],[2,2,3,0],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[2,2,3,0],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[2,2,3,0],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[2,2,3,0],[3,2,3,1],[0,2,0,0]],[[1,2,2,1],[3,2,3,0],[2,2,3,1],[0,2,0,0]],[[1,2,3,1],[2,2,3,0],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[2,2,3,0],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[2,2,3,0],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[2,2,3,0],[2,2,3,0],[2,2,0,0]],[[1,2,2,1],[2,2,3,0],[3,2,3,0],[1,2,0,0]],[[1,2,2,1],[3,2,3,0],[2,2,3,0],[1,2,0,0]],[[1,2,3,1],[2,2,3,0],[2,2,3,0],[1,2,0,0]],[[1,3,2,1],[2,2,3,0],[2,2,3,0],[1,2,0,0]],[[2,2,2,1],[2,2,3,0],[2,2,3,0],[1,2,0,0]],[[1,2,2,1],[2,2,3,0],[2,2,3,0],[2,1,1,0]],[[1,2,2,1],[2,2,3,0],[3,2,3,0],[1,1,1,0]],[[1,2,2,1],[3,2,3,0],[2,2,3,0],[1,1,1,0]],[[1,2,3,1],[2,2,3,0],[2,2,3,0],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[2,2,3,0],[1,1,1,0]],[[2,2,2,1],[2,2,3,0],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,2,3,0],[2,2,3,0],[2,0,2,0]],[[1,2,2,1],[2,2,3,0],[3,2,3,0],[1,0,2,0]],[[1,2,2,1],[3,2,3,0],[2,2,3,0],[1,0,2,0]],[[1,2,3,1],[2,2,3,0],[2,2,3,0],[1,0,2,0]],[[1,3,2,1],[2,2,3,0],[2,2,3,0],[1,0,2,0]],[[2,2,2,1],[2,2,3,0],[2,2,3,0],[1,0,2,0]],[[1,2,2,1],[2,2,3,0],[3,2,3,0],[0,2,1,0]],[[1,2,2,1],[3,2,3,0],[2,2,3,0],[0,2,1,0]],[[1,2,3,1],[2,2,3,0],[2,2,3,0],[0,2,1,0]],[[1,3,2,1],[2,2,3,0],[2,2,3,0],[0,2,1,0]],[[2,2,2,1],[2,2,3,0],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,2,3,0],[3,2,3,0],[0,1,2,0]],[[1,2,2,1],[3,2,3,0],[2,2,3,0],[0,1,2,0]],[[1,2,3,1],[2,2,3,0],[2,2,3,0],[0,1,2,0]],[[1,3,2,1],[2,2,3,0],[2,2,3,0],[0,1,2,0]],[[2,2,2,1],[2,2,3,0],[2,2,3,0],[0,1,2,0]],[[0,1,3,0],[2,3,3,1],[2,3,3,2],[1,0,0,0]],[[0,1,2,0],[3,3,3,1],[2,3,3,2],[1,0,0,0]],[[0,1,2,0],[2,4,3,1],[2,3,3,2],[1,0,0,0]],[[0,1,2,0],[2,3,4,1],[2,3,3,2],[1,0,0,0]],[[0,1,2,0],[2,3,3,1],[3,3,3,2],[1,0,0,0]],[[1,2,2,1],[2,2,3,0],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[2,2,3,0],[3,2,2,1],[1,2,0,0]],[[1,2,2,1],[3,2,3,0],[2,2,2,1],[1,2,0,0]],[[1,2,3,1],[2,2,3,0],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[2,2,3,0],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[2,2,3,0],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[2,2,3,0],[2,2,2,1],[2,1,1,0]],[[1,2,2,1],[2,2,3,0],[3,2,2,1],[1,1,1,0]],[[1,2,2,1],[3,2,3,0],[2,2,2,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,0],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,0],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,2,3,0],[2,2,2,1],[2,1,0,1]],[[1,2,2,1],[2,2,3,0],[3,2,2,1],[1,1,0,1]],[[1,2,2,1],[3,2,3,0],[2,2,2,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,0],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,0],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,0],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[2,2,3,0],[2,2,2,1],[2,0,2,0]],[[1,2,2,1],[2,2,3,0],[3,2,2,1],[1,0,2,0]],[[1,2,2,1],[3,2,3,0],[2,2,2,1],[1,0,2,0]],[[1,2,3,1],[2,2,3,0],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[2,2,3,0],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[2,2,3,0],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[2,2,3,0],[3,2,2,1],[1,0,1,1]],[[1,2,2,1],[3,2,3,0],[2,2,2,1],[1,0,1,1]],[[1,2,3,1],[2,2,3,0],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[2,2,3,0],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[2,2,3,0],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[2,2,3,0],[3,2,2,1],[0,2,1,0]],[[1,2,2,1],[3,2,3,0],[2,2,2,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,0],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,0],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,0],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[2,2,3,0],[3,2,2,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,0],[2,2,2,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,0],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,0],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,0],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[2,2,3,0],[3,2,2,1],[0,1,2,0]],[[1,2,2,1],[3,2,3,0],[2,2,2,1],[0,1,2,0]],[[1,2,3,1],[2,2,3,0],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[2,2,3,0],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[2,2,3,0],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[3,2,3,0],[2,2,2,1],[0,1,1,1]],[[1,2,3,1],[2,2,3,0],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[2,2,3,0],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[2,2,3,0],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[2,2,3,0],[2,2,2,0],[2,2,0,1]],[[1,2,2,1],[2,2,3,0],[3,2,2,0],[1,2,0,1]],[[1,2,2,1],[3,2,3,0],[2,2,2,0],[1,2,0,1]],[[1,2,3,1],[2,2,3,0],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[2,2,3,0],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[2,2,3,0],[2,2,2,0],[1,2,0,1]],[[1,2,2,1],[2,2,3,0],[2,2,2,0],[2,1,1,1]],[[1,2,2,1],[2,2,3,0],[3,2,2,0],[1,1,1,1]],[[1,2,2,1],[3,2,3,0],[2,2,2,0],[1,1,1,1]],[[1,2,3,1],[2,2,3,0],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[2,2,3,0],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[2,2,3,0],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[2,2,3,0],[2,2,2,0],[2,0,2,1]],[[1,2,2,1],[2,2,3,0],[3,2,2,0],[1,0,2,1]],[[1,2,2,1],[3,2,3,0],[2,2,2,0],[1,0,2,1]],[[1,2,3,1],[2,2,3,0],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[2,2,3,0],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[2,2,3,0],[2,2,2,0],[1,0,2,1]],[[0,1,3,0],[2,3,3,2],[0,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[0,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[0,0,2,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,0,2,3],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,0,2,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[0,0,2,2],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[0,0,3,2],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[0,0,3,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[0,0,3,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,0,3,3],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,0,3,2],[0,2,2,2]],[[0,1,3,0],[2,3,3,2],[0,0,3,2],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[0,0,3,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[0,0,3,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,0,3,3],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,0,3,2],[1,1,2,2]],[[0,1,3,0],[2,3,3,2],[0,0,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[0,0,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[0,0,3,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,0,3,3],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,0,3,2],[1,2,1,2]],[[0,1,3,0],[2,3,3,2],[0,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,4,2],[0,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,3],[0,0,3,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,0,3,3],[1,2,2,0]],[[0,1,3,0],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[0,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[0,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[0,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[0,1,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,1,1,3],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,1,1,2],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,1,1,2],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[0,1,1,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[0,1,1,2],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[0,1,2,0],[3,3,3,2],[0,1,2,2],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[0,1,2,2],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[0,1,2,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[0,1,2,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,1,2,3],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,1,2,2],[1,2,1,2]],[[0,1,3,0],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[0,1,2,0],[3,3,3,2],[0,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[0,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,4,2],[0,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,3],[0,1,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,1,2,3],[1,2,2,0]],[[0,1,3,0],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[0,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[0,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[0,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[0,1,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,1,4,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,1,3,0],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,1,3,0],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[0,1,3,0],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[0,1,3,0],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[0,1,2,0],[3,3,3,2],[0,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[0,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[0,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[0,1,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,1,4,1],[1,2,1,1]],[[0,1,3,0],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[0,1,2,0],[3,3,3,2],[0,1,3,1],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[0,1,3,1],[1,2,2,0]],[[0,1,2,0],[2,3,4,2],[0,1,3,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,3],[0,1,3,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,1,4,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,1,3,1],[2,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,1,3,1],[1,3,2,0]],[[0,1,2,0],[2,3,3,2],[0,1,3,1],[1,2,3,0]],[[0,1,3,0],[2,3,3,2],[0,1,3,2],[1,0,2,1]],[[0,1,2,0],[2,3,4,2],[0,1,3,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,3],[0,1,3,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[0,1,3,3],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[0,1,3,2],[1,0,2,2]],[[0,1,3,0],[2,3,3,2],[0,1,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[0,1,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[0,1,3,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,1,3,3],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,1,3,2],[1,1,1,2]],[[0,1,3,0],[2,3,3,2],[0,1,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[0,1,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,3],[0,1,3,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,1],[2,2,3,0],[3,2,2,0],[0,2,1,1]],[[1,2,2,1],[3,2,3,0],[2,2,2,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,0],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[2,2,3,0],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,0],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[2,2,3,0],[3,2,2,0],[0,1,2,1]],[[1,2,2,1],[3,2,3,0],[2,2,2,0],[0,1,2,1]],[[1,2,3,1],[2,2,3,0],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[2,2,3,0],[2,2,2,0],[0,1,2,1]],[[0,1,3,0],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[0,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[0,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[0,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[0,2,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,0,3],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,0,2],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,0,2],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,0,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[0,2,0,2],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[0,1,2,0],[3,3,3,2],[0,2,1,2],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[0,2,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[0,2,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[0,2,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,1,3],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,1,2],[1,1,3,1]],[[0,1,2,0],[2,3,3,2],[0,2,1,2],[1,1,2,2]],[[0,1,3,0],[2,3,3,2],[0,2,2,2],[1,0,2,1]],[[0,1,2,0],[2,4,3,2],[0,2,2,2],[1,0,2,1]],[[0,1,2,0],[2,3,4,2],[0,2,2,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,3],[0,2,2,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,2,3],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,2,2],[1,0,2,2]],[[0,1,3,0],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[0,2,2,2],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[0,2,2,2],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[0,2,2,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[0,2,2,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,2,2,3],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,2,2,2],[1,1,1,2]],[[0,1,3,0],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[0,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[0,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[0,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,3],[0,2,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,2,2,3],[1,1,2,0]],[[0,1,3,0],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[0,1,2,0],[3,3,3,2],[0,2,2,2],[1,2,0,1]],[[0,1,2,0],[2,4,3,2],[0,2,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,4,2],[0,2,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,3],[0,2,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,2,2,3],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,2,2,2],[1,2,0,2]],[[0,1,3,0],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[0,1,2,0],[3,3,3,2],[0,2,2,2],[1,2,1,0]],[[0,1,2,0],[2,4,3,2],[0,2,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,4,2],[0,2,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,3],[0,2,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,2,2,3],[1,2,1,0]],[[2,2,2,1],[2,2,3,0],[2,2,2,0],[0,1,2,1]],[[0,1,3,0],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[0,1,2,0],[3,3,3,2],[0,2,3,0],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[0,2,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[0,2,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[0,2,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,4,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,3,0],[1,1,3,1]],[[0,1,2,0],[2,3,3,2],[0,2,3,0],[1,1,2,2]],[[0,1,3,0],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[0,1,2,0],[3,3,3,2],[0,2,3,0],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[0,2,3,0],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[0,2,3,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[0,2,3,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,2,4,0],[1,2,1,1]],[[0,1,3,0],[2,3,3,2],[0,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,4,3,2],[0,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,4,2],[0,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,3],[0,2,3,1],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,4,1],[1,0,2,1]],[[0,1,3,0],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[0,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[0,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[0,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[0,2,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,2,4,1],[1,1,1,1]],[[0,1,3,0],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[0,2,3,1],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[0,2,3,1],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[0,2,3,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,3],[0,2,3,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,2,4,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,2,3,1],[1,1,3,0]],[[0,1,3,0],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[0,1,2,0],[3,3,3,2],[0,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,4,3,2],[0,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,4,2],[0,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,3],[0,2,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,2,4,1],[1,2,0,1]],[[0,1,3,0],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[0,1,2,0],[3,3,3,2],[0,2,3,1],[1,2,1,0]],[[0,1,2,0],[2,4,3,2],[0,2,3,1],[1,2,1,0]],[[0,1,2,0],[2,3,4,2],[0,2,3,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,3],[0,2,3,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,2,4,1],[1,2,1,0]],[[0,1,3,0],[2,3,3,2],[0,2,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,4,2],[0,2,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,3],[0,2,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,3,3],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[0,2,3,2],[0,0,2,2]],[[0,1,3,0],[2,3,3,2],[0,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[0,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[0,2,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,2,3,3],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,2,3,2],[0,1,1,2]],[[0,1,3,0],[2,3,3,2],[0,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[0,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[0,2,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,2,3,3],[0,1,2,0]],[[0,1,3,0],[2,3,3,2],[0,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,2],[0,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,4,2],[0,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,3],[0,2,3,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,2,3,0],[2,2,1,1],[2,1,2,0]],[[1,2,2,1],[2,2,3,0],[3,2,1,1],[1,1,2,0]],[[1,2,2,1],[3,2,3,0],[2,2,1,1],[1,1,2,0]],[[1,2,3,1],[2,2,3,0],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[2,2,3,0],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[2,2,3,0],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[2,2,3,0],[3,2,1,1],[0,2,2,0]],[[1,2,2,1],[3,2,3,0],[2,2,1,1],[0,2,2,0]],[[1,2,3,1],[2,2,3,0],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[2,2,3,0],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[2,2,3,0],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[2,2,3,0],[2,2,1,0],[2,1,2,1]],[[1,2,2,1],[2,2,3,0],[3,2,1,0],[1,1,2,1]],[[1,2,2,1],[3,2,3,0],[2,2,1,0],[1,1,2,1]],[[1,2,3,1],[2,2,3,0],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[2,2,3,0],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[2,2,3,0],[2,2,1,0],[1,1,2,1]],[[0,1,3,0],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[0,3,0,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[0,3,0,1],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[0,3,0,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[0,3,0,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,4,0,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,0,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,0,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,0,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[0,3,0,1],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[0,1,2,0],[3,3,3,2],[0,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[0,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[0,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[0,3,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,4,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,0,3],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,0,2],[1,1,3,1]],[[0,1,2,0],[2,3,3,2],[0,3,0,2],[1,1,2,2]],[[0,1,3,0],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[0,1,2,0],[3,3,3,2],[0,3,0,2],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[0,3,0,2],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[0,3,0,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[0,3,0,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,4,0,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,0,3],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,0,2],[2,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,0,2],[1,3,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,0,2],[1,2,1,2]],[[0,1,3,0],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[0,1,2,0],[3,3,3,2],[0,3,0,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[0,3,0,2],[1,2,2,0]],[[0,1,2,0],[2,3,4,2],[0,3,0,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,3],[0,3,0,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,4,0,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,3,0,3],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,3,0,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,3,0,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,2],[0,3,0,2],[1,2,3,0]],[[0,1,3,0],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[0,3,1,0],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[0,3,1,0],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[0,3,1,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[0,3,1,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,4,1,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,0],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,0],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,0],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,0],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[0,1,2,0],[3,3,3,2],[0,3,1,1],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[0,3,1,1],[1,2,2,0]],[[0,1,2,0],[2,3,4,2],[0,3,1,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,3],[0,3,1,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,4,1,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,3,1,1],[2,2,2,0]],[[0,1,2,0],[2,3,3,2],[0,3,1,1],[1,3,2,0]],[[0,1,2,0],[2,3,3,2],[0,3,1,1],[1,2,3,0]],[[0,1,3,0],[2,3,3,2],[0,3,1,2],[0,1,2,1]],[[0,1,2,0],[2,4,3,2],[0,3,1,2],[0,1,2,1]],[[0,1,2,0],[2,3,4,2],[0,3,1,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,3],[0,3,1,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,3],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,2],[0,1,3,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,2],[0,1,2,2]],[[0,1,3,0],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[0,3,1,2],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[0,3,1,2],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[0,3,1,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[0,3,1,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,4,1,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,3],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,2],[1,1,1,2]],[[0,1,3,0],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[0,3,1,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[0,3,1,2],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[0,3,1,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,3],[0,3,1,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,4,1,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,3,1,3],[1,1,2,0]],[[0,1,3,0],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[0,1,2,0],[3,3,3,2],[0,3,1,2],[1,2,0,1]],[[0,1,2,0],[2,4,3,2],[0,3,1,2],[1,2,0,1]],[[0,1,2,0],[2,3,4,2],[0,3,1,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,3],[0,3,1,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,4,1,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,3],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,2],[2,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,2],[1,3,0,1]],[[0,1,2,0],[2,3,3,2],[0,3,1,2],[1,2,0,2]],[[0,1,3,0],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[0,1,2,0],[3,3,3,2],[0,3,1,2],[1,2,1,0]],[[0,1,2,0],[2,4,3,2],[0,3,1,2],[1,2,1,0]],[[0,1,2,0],[2,3,4,2],[0,3,1,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,3],[0,3,1,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,4,1,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,3,1,3],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,3,1,2],[2,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,3,1,2],[1,3,1,0]],[[1,2,2,1],[2,2,3,0],[3,2,1,0],[0,2,2,1]],[[1,2,2,1],[3,2,3,0],[2,2,1,0],[0,2,2,1]],[[1,2,3,1],[2,2,3,0],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[2,2,3,0],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[2,2,3,0],[2,2,1,0],[0,2,2,1]],[[0,1,3,0],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[0,1,2,0],[3,3,3,2],[0,3,2,0],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[0,3,2,0],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[0,3,2,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[0,3,2,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,4,2,0],[1,1,2,1]],[[0,1,3,0],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[0,1,2,0],[3,3,3,2],[0,3,2,0],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[0,3,2,0],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[0,3,2,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[0,3,2,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,4,2,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,2,0],[2,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,2,0],[1,3,1,1]],[[0,1,3,0],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[0,3,2,1],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[0,3,2,1],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[0,3,2,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[0,3,2,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,4,2,1],[1,1,1,1]],[[0,1,3,0],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[0,3,2,1],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[0,3,2,1],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[0,3,2,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,3],[0,3,2,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,4,2,1],[1,1,2,0]],[[0,1,3,0],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[0,1,2,0],[3,3,3,2],[0,3,2,1],[1,2,0,1]],[[0,1,2,0],[2,4,3,2],[0,3,2,1],[1,2,0,1]],[[0,1,2,0],[2,3,4,2],[0,3,2,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,3],[0,3,2,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,4,2,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,3,2,1],[2,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,3,2,1],[1,3,0,1]],[[0,1,3,0],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[0,1,2,0],[3,3,3,2],[0,3,2,1],[1,2,1,0]],[[0,1,2,0],[2,4,3,2],[0,3,2,1],[1,2,1,0]],[[0,1,2,0],[2,3,4,2],[0,3,2,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,3],[0,3,2,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,4,2,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,3,2,1],[2,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,3,2,1],[1,3,1,0]],[[0,1,3,0],[2,3,3,2],[0,3,2,2],[0,0,2,1]],[[0,1,2,0],[2,4,3,2],[0,3,2,2],[0,0,2,1]],[[0,1,2,0],[2,3,4,2],[0,3,2,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,3],[0,3,2,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,2,3],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,2,2],[0,0,2,2]],[[0,1,3,0],[2,3,3,2],[0,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,2],[0,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[0,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[0,3,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,2,3],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,2,2],[0,1,1,2]],[[0,1,3,0],[2,3,3,2],[0,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[0,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[0,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[0,3,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,3,2,3],[0,1,2,0]],[[0,1,3,0],[2,3,3,2],[0,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[0,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,4,2],[0,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,3],[0,3,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,3,2,3],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,3,2,2],[0,2,0,2]],[[0,1,3,0],[2,3,3,2],[0,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[0,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[0,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,3],[0,3,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,2,3,0],[2,2,0,1],[1,3,2,0]],[[1,2,2,1],[2,2,3,0],[2,2,0,1],[2,2,2,0]],[[1,2,2,1],[2,2,3,0],[3,2,0,1],[1,2,2,0]],[[1,2,2,1],[3,2,3,0],[2,2,0,1],[1,2,2,0]],[[1,2,3,1],[2,2,3,0],[2,2,0,1],[1,2,2,0]],[[1,3,2,1],[2,2,3,0],[2,2,0,1],[1,2,2,0]],[[2,2,2,1],[2,2,3,0],[2,2,0,1],[1,2,2,0]],[[1,2,2,1],[2,2,3,0],[2,2,0,0],[1,3,2,1]],[[1,2,2,1],[2,2,3,0],[2,2,0,0],[2,2,2,1]],[[1,2,2,1],[2,2,3,0],[3,2,0,0],[1,2,2,1]],[[1,2,2,1],[3,2,3,0],[2,2,0,0],[1,2,2,1]],[[1,2,3,1],[2,2,3,0],[2,2,0,0],[1,2,2,1]],[[1,3,2,1],[2,2,3,0],[2,2,0,0],[1,2,2,1]],[[2,2,2,1],[2,2,3,0],[2,2,0,0],[1,2,2,1]],[[0,1,3,0],[2,3,3,2],[0,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,4,3,2],[0,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,4,2],[0,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,3],[0,3,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,4,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,3,0],[0,1,3,1]],[[0,1,2,0],[2,3,3,2],[0,3,3,0],[0,1,2,2]],[[0,1,3,0],[2,3,3,2],[0,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[0,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[0,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[0,3,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,4,0],[0,2,1,1]],[[0,1,3,0],[2,3,3,2],[0,3,3,0],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[0,3,3,0],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[0,3,3,0],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[0,3,3,0],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,4,3,0],[1,1,2,0]],[[0,1,3,0],[2,3,3,2],[0,3,3,0],[1,2,1,0]],[[0,1,2,0],[3,3,3,2],[0,3,3,0],[1,2,1,0]],[[0,1,2,0],[2,4,3,2],[0,3,3,0],[1,2,1,0]],[[0,1,2,0],[2,3,4,2],[0,3,3,0],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,4,3,0],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,3,3,0],[2,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,3,3,0],[1,3,1,0]],[[0,1,3,0],[2,3,3,2],[0,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,4,3,2],[0,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,3,4,2],[0,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,3,3,3],[0,3,3,1],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[0,3,4,1],[0,0,2,1]],[[0,1,3,0],[2,3,3,2],[0,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,4,3,2],[0,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[0,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[0,3,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[0,3,4,1],[0,1,1,1]],[[0,1,3,0],[2,3,3,2],[0,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[0,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[0,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[0,3,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,3,4,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[0,3,3,1],[0,1,3,0]],[[0,1,3,0],[2,3,3,2],[0,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[0,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,4,2],[0,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,3],[0,3,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[0,3,4,1],[0,2,0,1]],[[0,1,3,0],[2,3,3,2],[0,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[0,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[0,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,3],[0,3,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[0,3,4,1],[0,2,1,0]],[[0,1,3,0],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[0,1,2,0],[3,3,3,2],[0,3,3,1],[1,2,0,0]],[[0,1,2,0],[2,4,3,2],[0,3,3,1],[1,2,0,0]],[[0,1,2,0],[2,3,4,2],[0,3,3,1],[1,2,0,0]],[[0,1,2,0],[2,3,3,3],[0,3,3,1],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[0,4,3,1],[1,2,0,0]],[[0,1,3,0],[2,3,3,2],[0,3,3,2],[0,1,0,1]],[[0,1,2,0],[2,4,3,2],[0,3,3,2],[0,1,0,1]],[[0,1,2,0],[2,3,4,2],[0,3,3,2],[0,1,0,1]],[[0,1,2,0],[2,3,3,3],[0,3,3,2],[0,1,0,1]],[[0,1,2,0],[2,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,2,3,0],[2,1,3,1],[2,1,1,0]],[[1,2,2,1],[2,2,3,0],[3,1,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,3,0],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,0],[2,1,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[2,1,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,0],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,3,0],[2,1,3,1],[2,1,0,1]],[[1,2,2,1],[2,2,3,0],[3,1,3,1],[1,1,0,1]],[[1,2,2,1],[3,2,3,0],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,0],[2,1,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,0],[2,1,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,0],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,3,0],[2,1,3,1],[2,0,2,0]],[[1,2,2,1],[2,2,3,0],[3,1,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,3,0],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,3,0],[2,1,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,3,0],[2,1,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,3,0],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,3,0],[3,1,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,3,0],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,3,0],[2,1,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,3,0],[2,1,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,3,0],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,3,0],[3,1,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,3,0],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,0],[2,1,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,0],[2,1,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,0],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,3,0],[3,1,3,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,0],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,0],[2,1,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,0],[2,1,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,0],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,3,0],[3,1,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,3,0],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,3,0],[2,1,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,3,0],[2,1,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,3,0],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,3,0],[2,1,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,3,0],[2,1,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,3,0],[2,1,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,3,0],[2,1,3,1],[0,1,1,1]],[[0,1,3,0],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[1,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[1,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[1,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[1,0,1,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,1,3],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,1,2],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,1,2],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,1,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[1,0,1,2],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[1,0,2,2],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[1,0,2,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[1,0,2,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,2,3],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,2,2],[0,2,3,1]],[[0,1,2,0],[2,3,3,2],[1,0,2,2],[0,2,2,2]],[[0,1,3,0],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[0,1,2,0],[3,3,3,2],[1,0,2,2],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[1,0,2,2],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[1,0,2,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[1,0,2,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,0,2,3],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,0,2,2],[1,2,1,2]],[[0,1,3,0],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[0,1,2,0],[3,3,3,2],[1,0,2,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[1,0,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,4,2],[1,0,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,3],[1,0,2,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,0,2,3],[1,2,2,0]],[[0,1,3,0],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[1,0,3,0],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[1,0,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[1,0,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[1,0,3,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,4,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,3,0],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,3,0],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,3,0],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[1,0,3,0],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[0,1,2,0],[3,3,3,2],[1,0,3,1],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[1,0,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[1,0,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[1,0,3,1],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,0,4,1],[1,2,1,1]],[[0,1,3,0],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[0,1,2,0],[3,3,3,2],[1,0,3,1],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[1,0,3,1],[1,2,2,0]],[[0,1,2,0],[2,3,4,2],[1,0,3,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,3],[1,0,3,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,0,4,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,0,3,1],[2,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,0,3,1],[1,3,2,0]],[[0,1,2,0],[2,3,3,2],[1,0,3,1],[1,2,3,0]],[[0,1,3,0],[2,3,3,2],[1,0,3,2],[0,1,2,1]],[[0,1,2,0],[2,3,4,2],[1,0,3,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,3],[1,0,3,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,3,3],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,0,3,2],[0,1,2,2]],[[0,1,3,0],[2,3,3,2],[1,0,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[1,0,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[1,0,3,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,0,3,3],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,0,3,2],[0,2,1,2]],[[0,1,3,0],[2,3,3,2],[1,0,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,4,2],[1,0,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,3],[1,0,3,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,0,3,3],[0,2,2,0]],[[0,1,3,0],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[1,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[1,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[1,1,0,2],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,0,3],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,0,2],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,0,2],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,0,2],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[1,1,0,2],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[0,1,2,0],[3,3,3,2],[1,1,1,2],[0,2,2,1]],[[0,1,2,0],[2,4,3,2],[1,1,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[1,1,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[1,1,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,1,3],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,1,2],[0,3,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,1,2],[0,2,3,1]],[[0,1,2,0],[2,3,3,2],[1,1,1,2],[0,2,2,2]],[[0,1,3,0],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[0,1,2,0],[3,3,3,2],[1,1,2,2],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[1,1,2,2],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[1,1,2,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[1,1,2,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,1,2,3],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,1,2,2],[0,2,1,2]],[[0,1,3,0],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[0,1,2,0],[3,3,3,2],[1,1,2,2],[0,2,2,0]],[[0,1,2,0],[2,4,3,2],[1,1,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,4,2],[1,1,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,3],[1,1,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,1],[2,2,3,0],[2,1,3,0],[1,3,1,0]],[[1,2,2,1],[2,2,3,0],[2,1,3,0],[2,2,1,0]],[[1,2,2,1],[2,2,3,0],[3,1,3,0],[1,2,1,0]],[[1,2,2,1],[3,2,3,0],[2,1,3,0],[1,2,1,0]],[[1,2,3,1],[2,2,3,0],[2,1,3,0],[1,2,1,0]],[[1,3,2,1],[2,2,3,0],[2,1,3,0],[1,2,1,0]],[[2,2,2,1],[2,2,3,0],[2,1,3,0],[1,2,1,0]],[[0,1,3,0],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[0,1,2,0],[3,3,3,2],[1,1,3,0],[0,2,2,1]],[[0,1,2,0],[2,4,3,2],[1,1,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[1,1,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[1,1,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,4,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,3,0],[0,3,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,3,0],[0,2,3,1]],[[0,1,2,0],[2,3,3,2],[1,1,3,0],[0,2,2,2]],[[0,1,3,0],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[0,1,2,0],[3,3,3,2],[1,1,3,1],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[1,1,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[1,1,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[1,1,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,1,4,1],[0,2,1,1]],[[0,1,3,0],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[0,1,2,0],[3,3,3,2],[1,1,3,1],[0,2,2,0]],[[0,1,2,0],[2,4,3,2],[1,1,3,1],[0,2,2,0]],[[0,1,2,0],[2,3,4,2],[1,1,3,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,3],[1,1,3,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,1,4,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,1,3,1],[0,3,2,0]],[[0,1,2,0],[2,3,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,2,1],[2,2,3,0],[2,1,3,0],[2,1,1,1]],[[1,2,2,1],[2,2,3,0],[3,1,3,0],[1,1,1,1]],[[1,2,2,1],[3,2,3,0],[2,1,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,3,0],[2,1,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,3,0],[2,1,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,3,0],[2,1,3,0],[1,1,1,1]],[[0,1,3,0],[2,3,3,2],[1,1,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,4,2],[1,1,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,3],[1,1,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,3,3],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,1,3,2],[0,0,2,2]],[[0,1,3,0],[2,3,3,2],[1,1,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[1,1,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[1,1,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,1,3,3],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,1,3,2],[0,1,1,2]],[[0,1,3,0],[2,3,3,2],[1,1,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[1,1,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[1,1,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,1],[2,2,3,0],[2,1,3,0],[2,0,2,1]],[[1,2,2,1],[2,2,3,0],[3,1,3,0],[1,0,2,1]],[[1,2,2,1],[3,2,3,0],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,3,0],[2,1,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,3,0],[2,1,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,3,0],[2,1,3,0],[1,0,2,1]],[[0,1,3,0],[2,3,3,2],[1,1,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,4,2],[1,1,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,3],[1,1,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,1,3,3],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,1,3,2],[1,0,1,2]],[[0,1,3,0],[2,3,3,2],[1,1,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[1,1,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,3],[1,1,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,1],[2,2,3,0],[3,1,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,3,0],[2,1,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,0],[2,1,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,3,0],[2,1,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,0],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,3,0],[3,1,3,0],[0,1,2,1]],[[1,2,2,1],[3,2,3,0],[2,1,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,3,0],[2,1,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,3,0],[2,1,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,3,0],[2,1,3,0],[0,1,2,1]],[[0,1,3,0],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[0,1,2,0],[3,3,3,2],[1,2,0,2],[0,2,2,1]],[[0,1,2,0],[2,4,3,2],[1,2,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[1,2,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[1,2,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,0,3],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,0,2],[0,3,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,0,2],[0,2,3,1]],[[0,1,2,0],[2,3,3,2],[1,2,0,2],[0,2,2,2]],[[0,1,3,0],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[0,1,2,0],[3,3,3,2],[1,2,1,2],[0,1,2,1]],[[0,1,2,0],[2,4,3,2],[1,2,1,2],[0,1,2,1]],[[0,1,2,0],[2,3,4,2],[1,2,1,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,3],[1,2,1,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,1,3],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,1,2],[0,1,3,1]],[[0,1,2,0],[2,3,3,2],[1,2,1,2],[0,1,2,2]],[[0,1,3,0],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[0,1,2,0],[3,3,3,2],[1,2,1,2],[1,0,2,1]],[[0,1,2,0],[2,4,3,2],[1,2,1,2],[1,0,2,1]],[[0,1,2,0],[2,3,4,2],[1,2,1,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,3],[1,2,1,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,1,3],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,1,2],[1,0,3,1]],[[0,1,2,0],[2,3,3,2],[1,2,1,2],[1,0,2,2]],[[0,1,3,0],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[0,1,2,0],[3,3,3,2],[1,2,2,2],[0,0,2,1]],[[0,1,2,0],[2,4,3,2],[1,2,2,2],[0,0,2,1]],[[0,1,2,0],[2,3,4,2],[1,2,2,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,3],[1,2,2,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,2,3],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,2,2],[0,0,2,2]],[[0,1,3,0],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[0,1,2,0],[3,3,3,2],[1,2,2,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,2],[1,2,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[1,2,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[1,2,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,2,2,3],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,2,2,2],[0,1,1,2]],[[0,1,3,0],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[0,1,2,0],[3,3,3,2],[1,2,2,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[1,2,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[1,2,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[1,2,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[1,2,2,3],[0,1,2,0]],[[0,1,3,0],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[0,1,2,0],[3,3,3,2],[1,2,2,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[1,2,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,4,2],[1,2,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,3],[1,2,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[1,2,2,3],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[1,2,2,2],[0,2,0,2]],[[0,1,3,0],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[0,1,2,0],[3,3,3,2],[1,2,2,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[1,2,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[1,2,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,3],[1,2,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,1],[2,2,3,0],[2,1,2,1],[1,3,1,0]],[[1,2,2,1],[2,2,3,0],[2,1,2,1],[2,2,1,0]],[[0,1,3,0],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[0,1,2,0],[3,3,3,2],[1,2,2,2],[1,0,1,1]],[[0,1,2,0],[2,4,3,2],[1,2,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,4,2],[1,2,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,3],[1,2,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,2,2,3],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,2,2,2],[1,0,1,2]],[[0,1,3,0],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[0,1,2,0],[3,3,3,2],[1,2,2,2],[1,0,2,0]],[[0,1,2,0],[2,4,3,2],[1,2,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[1,2,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,3],[1,2,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[1,2,2,3],[1,0,2,0]],[[0,1,3,0],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[0,1,2,0],[3,3,3,2],[1,2,2,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,2],[1,2,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,4,2],[1,2,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,3],[1,2,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[1,2,2,3],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[1,2,2,2],[1,1,0,2]],[[0,1,3,0],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[0,1,2,0],[3,3,3,2],[1,2,2,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[1,2,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,4,2],[1,2,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,3],[1,2,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,1],[2,2,3,0],[3,1,2,1],[1,2,1,0]],[[1,2,2,1],[3,2,3,0],[2,1,2,1],[1,2,1,0]],[[1,2,3,1],[2,2,3,0],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[2,2,3,0],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[2,2,3,0],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[2,2,3,0],[2,1,2,1],[2,2,0,1]],[[1,2,2,1],[2,2,3,0],[3,1,2,1],[1,2,0,1]],[[1,2,2,1],[3,2,3,0],[2,1,2,1],[1,2,0,1]],[[1,2,3,1],[2,2,3,0],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[2,2,3,0],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[2,2,3,0],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[2,2,3,0],[2,1,2,0],[1,3,1,1]],[[1,2,2,1],[2,2,3,0],[2,1,2,0],[2,2,1,1]],[[1,2,2,1],[2,2,3,0],[3,1,2,0],[1,2,1,1]],[[1,2,2,1],[3,2,3,0],[2,1,2,0],[1,2,1,1]],[[1,2,3,1],[2,2,3,0],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[2,2,3,0],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[2,2,3,0],[2,1,2,0],[1,2,1,1]],[[0,1,3,0],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[0,1,2,0],[3,3,3,2],[1,2,3,0],[0,1,2,1]],[[0,1,2,0],[2,4,3,2],[1,2,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,4,2],[1,2,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,3],[1,2,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,4,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,3,0],[0,1,3,1]],[[0,1,2,0],[2,3,3,2],[1,2,3,0],[0,1,2,2]],[[0,1,3,0],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[0,1,2,0],[3,3,3,2],[1,2,3,0],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[1,2,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[1,2,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[1,2,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,2,4,0],[0,2,1,1]],[[0,1,3,0],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[0,1,2,0],[3,3,3,2],[1,2,3,0],[1,0,2,1]],[[0,1,2,0],[2,4,3,2],[1,2,3,0],[1,0,2,1]],[[0,1,2,0],[2,3,4,2],[1,2,3,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,3],[1,2,3,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,4,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,3,0],[1,0,3,1]],[[0,1,2,0],[2,3,3,2],[1,2,3,0],[1,0,2,2]],[[0,1,3,0],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[1,2,3,0],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[1,2,3,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[1,2,3,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,2,4,0],[1,1,1,1]],[[0,1,3,0],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[0,1,2,0],[3,3,3,2],[1,2,3,1],[0,0,2,1]],[[0,1,2,0],[2,4,3,2],[1,2,3,1],[0,0,2,1]],[[0,1,2,0],[2,3,4,2],[1,2,3,1],[0,0,2,1]],[[0,1,2,0],[2,3,3,3],[1,2,3,1],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,2,4,1],[0,0,2,1]],[[0,1,3,0],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[0,1,2,0],[3,3,3,2],[1,2,3,1],[0,1,1,1]],[[0,1,2,0],[2,4,3,2],[1,2,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[1,2,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[1,2,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,2,4,1],[0,1,1,1]],[[0,1,3,0],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[0,1,2,0],[3,3,3,2],[1,2,3,1],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[1,2,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[1,2,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[1,2,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[1,2,4,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[1,2,3,1],[0,1,3,0]],[[0,1,3,0],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[0,1,2,0],[3,3,3,2],[1,2,3,1],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[1,2,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,4,2],[1,2,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,3],[1,2,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[1,2,4,1],[0,2,0,1]],[[0,1,3,0],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[0,1,2,0],[3,3,3,2],[1,2,3,1],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[1,2,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[1,2,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,3],[1,2,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[1,2,4,1],[0,2,1,0]],[[1,2,2,1],[2,2,3,0],[2,1,1,1],[1,3,2,0]],[[1,2,2,1],[2,2,3,0],[2,1,1,1],[2,2,2,0]],[[1,2,2,1],[2,2,3,0],[3,1,1,1],[1,2,2,0]],[[0,1,3,0],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[0,1,2,0],[3,3,3,2],[1,2,3,1],[1,0,1,1]],[[0,1,2,0],[2,4,3,2],[1,2,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,4,2],[1,2,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,3],[1,2,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,2,4,1],[1,0,1,1]],[[0,1,3,0],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[0,1,2,0],[3,3,3,2],[1,2,3,1],[1,0,2,0]],[[0,1,2,0],[2,4,3,2],[1,2,3,1],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[1,2,3,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,3],[1,2,3,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[1,2,4,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[1,2,3,1],[1,0,3,0]],[[0,1,3,0],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[0,1,2,0],[3,3,3,2],[1,2,3,1],[1,1,0,1]],[[0,1,2,0],[2,4,3,2],[1,2,3,1],[1,1,0,1]],[[0,1,2,0],[2,3,4,2],[1,2,3,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,3],[1,2,3,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[1,2,4,1],[1,1,0,1]],[[0,1,3,0],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[0,1,2,0],[3,3,3,2],[1,2,3,1],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[1,2,3,1],[1,1,1,0]],[[0,1,2,0],[2,3,4,2],[1,2,3,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,3],[1,2,3,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,2,1],[3,2,3,0],[2,1,1,1],[1,2,2,0]],[[1,2,3,1],[2,2,3,0],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[2,2,3,0],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[2,2,3,0],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[2,2,3,0],[2,1,1,0],[1,2,3,1]],[[1,2,2,1],[2,2,3,0],[2,1,1,0],[1,3,2,1]],[[1,2,2,1],[2,2,3,0],[2,1,1,0],[2,2,2,1]],[[1,2,2,1],[2,2,3,0],[3,1,1,0],[1,2,2,1]],[[1,2,2,1],[3,2,3,0],[2,1,1,0],[1,2,2,1]],[[1,2,3,1],[2,2,3,0],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[2,2,3,0],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[2,2,3,0],[2,1,1,0],[1,2,2,1]],[[0,1,3,0],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[0,1,2,0],[3,3,3,2],[1,2,3,2],[0,1,0,1]],[[0,1,2,0],[2,4,3,2],[1,2,3,2],[0,1,0,1]],[[0,1,2,0],[2,3,4,2],[1,2,3,2],[0,1,0,1]],[[0,1,2,0],[2,3,3,3],[1,2,3,2],[0,1,0,1]],[[0,1,2,0],[2,3,3,2],[1,2,3,3],[0,1,0,1]],[[0,1,3,0],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[0,1,2,0],[3,3,3,2],[1,2,3,2],[1,0,0,1]],[[0,1,2,0],[2,4,3,2],[1,2,3,2],[1,0,0,1]],[[0,1,2,0],[2,3,4,2],[1,2,3,2],[1,0,0,1]],[[0,1,2,0],[2,3,3,3],[1,2,3,2],[1,0,0,1]],[[0,1,2,0],[2,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[2,2,4,0],[2,0,3,2],[1,1,1,0]],[[1,2,2,1],[3,2,3,0],[2,0,3,2],[1,1,1,0]],[[1,2,2,2],[2,2,3,0],[2,0,3,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,0],[2,0,3,2],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[2,0,3,2],[1,1,1,0]],[[2,2,2,1],[2,2,3,0],[2,0,3,2],[1,1,1,0]],[[1,2,2,1],[2,2,4,0],[2,0,3,2],[1,1,0,1]],[[1,2,2,1],[3,2,3,0],[2,0,3,2],[1,1,0,1]],[[1,2,2,2],[2,2,3,0],[2,0,3,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,0],[2,0,3,2],[1,1,0,1]],[[1,3,2,1],[2,2,3,0],[2,0,3,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,0],[2,0,3,2],[1,1,0,1]],[[1,2,2,1],[2,2,4,0],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[3,2,3,0],[2,0,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,0],[2,0,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,0],[2,0,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,0],[2,0,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,0],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,4,0],[2,0,3,2],[1,0,1,1]],[[1,2,2,1],[3,2,3,0],[2,0,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,0],[2,0,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,0],[2,0,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,0],[2,0,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,0],[2,0,3,2],[1,0,1,1]],[[1,2,2,1],[2,2,4,0],[2,0,3,2],[0,2,1,0]],[[1,2,2,1],[3,2,3,0],[2,0,3,2],[0,2,1,0]],[[1,2,2,2],[2,2,3,0],[2,0,3,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,0],[2,0,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,0],[2,0,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,3,0],[2,0,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,4,0],[2,0,3,2],[0,2,0,1]],[[1,2,2,1],[3,2,3,0],[2,0,3,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,0],[2,0,3,2],[0,2,0,1]],[[1,2,3,1],[2,2,3,0],[2,0,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,3,0],[2,0,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,0],[2,0,3,2],[0,2,0,1]],[[1,2,2,1],[2,2,4,0],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[3,2,3,0],[2,0,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,0],[2,0,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,0],[2,0,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,0],[2,0,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,0],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,4,0],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[3,2,3,0],[2,0,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,0],[2,0,3,2],[0,1,1,1]],[[0,1,3,0],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[0,1,2,0],[3,3,3,2],[1,3,0,1],[0,2,2,1]],[[0,1,2,0],[2,4,3,2],[1,3,0,1],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[1,3,0,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[1,3,0,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,4,0,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,1],[0,3,2,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,1],[0,2,3,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,1],[0,2,2,2]],[[0,1,3,0],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[0,1,2,0],[3,3,3,2],[1,3,0,1],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[1,3,0,1],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[1,3,0,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[1,3,0,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,4,0,1],[1,1,2,1]],[[0,1,3,0],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[0,1,2,0],[3,3,3,2],[1,3,0,2],[0,1,2,1]],[[0,1,2,0],[2,4,3,2],[1,3,0,2],[0,1,2,1]],[[0,1,2,0],[2,3,4,2],[1,3,0,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,3],[1,3,0,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,4,0,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,3],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,2],[0,1,3,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,2],[0,1,2,2]],[[0,1,3,0],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[0,1,2,0],[3,3,3,2],[1,3,0,2],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[1,3,0,2],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[1,3,0,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[1,3,0,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,4,0,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,3],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,2],[0,3,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,2],[0,2,1,2]],[[0,1,3,0],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,0,2],[0,2,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,0,2],[0,2,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,0,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,3],[1,3,0,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,4,0,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,3,0,3],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,3,0,2],[0,3,2,0]],[[0,1,2,0],[2,3,3,2],[1,3,0,2],[0,2,3,0]],[[0,1,3,0],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[0,1,2,0],[3,3,3,2],[1,3,0,2],[1,0,2,1]],[[0,1,2,0],[2,4,3,2],[1,3,0,2],[1,0,2,1]],[[0,1,2,0],[2,3,4,2],[1,3,0,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,3],[1,3,0,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,4,0,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,3],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,2],[1,0,3,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,2],[1,0,2,2]],[[0,1,3,0],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[1,3,0,2],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[1,3,0,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[1,3,0,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,4,0,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,3],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,0,2],[1,1,1,2]],[[0,1,3,0],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,0,2],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,0,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,3],[1,3,0,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[1,4,0,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,3,1],[2,2,3,0],[2,0,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,0],[2,0,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,0],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,4,0],[2,0,3,2],[0,0,2,1]],[[1,2,2,1],[3,2,3,0],[2,0,3,2],[0,0,2,1]],[[1,2,2,2],[2,2,3,0],[2,0,3,2],[0,0,2,1]],[[1,2,3,1],[2,2,3,0],[2,0,3,2],[0,0,2,1]],[[1,3,2,1],[2,2,3,0],[2,0,3,2],[0,0,2,1]],[[2,2,2,1],[2,2,3,0],[2,0,3,2],[0,0,2,1]],[[0,1,3,0],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[0,1,2,0],[3,3,3,2],[1,3,1,0],[0,2,2,1]],[[0,1,2,0],[2,4,3,2],[1,3,1,0],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[1,3,1,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[1,3,1,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,4,1,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,0],[0,3,2,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,0],[0,2,3,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,0],[0,2,2,2]],[[0,1,3,0],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[0,1,2,0],[3,3,3,2],[1,3,1,0],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[1,3,1,0],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[1,3,1,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[1,3,1,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,4,1,0],[1,1,2,1]],[[0,1,3,0],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,1,1],[0,2,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,1,1],[0,2,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,1,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,3],[1,3,1,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,4,1,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[1,3,1,1],[0,3,2,0]],[[0,1,2,0],[2,3,3,2],[1,3,1,1],[0,2,3,0]],[[0,1,3,0],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,1,1],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,1,1],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,1,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,3],[1,3,1,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[1,4,1,1],[1,1,2,0]],[[0,1,3,0],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[0,1,2,0],[3,3,3,2],[1,3,1,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,2],[1,3,1,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[1,3,1,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[1,3,1,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,4,1,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,3],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,2],[0,1,1,2]],[[0,1,3,0],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,1,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,1,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,1,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[1,3,1,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[1,4,1,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[1,3,1,3],[0,1,2,0]],[[0,1,3,0],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[0,1,2,0],[3,3,3,2],[1,3,1,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[1,3,1,2],[0,2,0,1]],[[0,1,2,0],[2,3,4,2],[1,3,1,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,3],[1,3,1,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[1,4,1,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,3],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,2],[0,3,0,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,2],[0,2,0,2]],[[0,1,3,0],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[0,1,2,0],[3,3,3,2],[1,3,1,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[1,3,1,2],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[1,3,1,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,3],[1,3,1,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[1,4,1,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[1,3,1,3],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[1,3,1,2],[0,3,1,0]],[[1,2,2,1],[2,2,3,0],[2,0,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,3,0],[2,0,3,1],[2,2,1,0]],[[1,2,2,1],[2,2,3,0],[3,0,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,3,0],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[2,2,3,0],[2,0,3,1],[1,2,1,0]],[[0,1,3,0],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[0,1,2,0],[3,3,3,2],[1,3,1,2],[1,0,1,1]],[[0,1,2,0],[2,4,3,2],[1,3,1,2],[1,0,1,1]],[[0,1,2,0],[2,3,4,2],[1,3,1,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,3],[1,3,1,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,4,1,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,3],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,2],[1,0,1,2]],[[0,1,3,0],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,1,2],[1,0,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,1,2],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,1,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,3],[1,3,1,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[1,4,1,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[1,3,1,3],[1,0,2,0]],[[0,1,3,0],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[0,1,2,0],[3,3,3,2],[1,3,1,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,2],[1,3,1,2],[1,1,0,1]],[[0,1,2,0],[2,3,4,2],[1,3,1,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,3],[1,3,1,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[1,4,1,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,3],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[1,3,1,2],[1,1,0,2]],[[0,1,3,0],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[0,1,2,0],[3,3,3,2],[1,3,1,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[1,3,1,2],[1,1,1,0]],[[0,1,2,0],[2,3,4,2],[1,3,1,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,3],[1,3,1,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[1,4,1,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[1,3,1,3],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[2,0,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,3,0],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,3,0],[2,0,3,1],[2,2,0,1]],[[1,2,2,1],[2,2,3,0],[3,0,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,3,0],[2,0,3,1],[1,2,0,1]],[[1,2,3,1],[2,2,3,0],[2,0,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,3,0],[2,0,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,3,0],[2,0,3,1],[1,2,0,1]],[[0,1,3,0],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[0,1,2,0],[3,3,3,2],[1,3,1,2],[1,2,0,0]],[[0,1,2,0],[2,4,3,2],[1,3,1,2],[1,2,0,0]],[[0,1,2,0],[2,3,4,2],[1,3,1,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,3],[1,3,1,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[1,4,1,2],[1,2,0,0]],[[1,2,2,1],[2,2,3,0],[2,0,3,1],[2,1,2,0]],[[1,2,2,1],[2,2,3,0],[3,0,3,1],[1,1,2,0]],[[1,2,2,1],[3,2,3,0],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[2,2,3,0],[2,0,3,1],[1,1,2,0]],[[1,3,2,1],[2,2,3,0],[2,0,3,1],[1,1,2,0]],[[2,2,2,1],[2,2,3,0],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[2,2,4,0],[2,0,3,1],[1,0,2,1]],[[1,2,2,1],[3,2,3,0],[2,0,3,1],[1,0,2,1]],[[1,2,2,2],[2,2,3,0],[2,0,3,1],[1,0,2,1]],[[1,2,3,1],[2,2,3,0],[2,0,3,1],[1,0,2,1]],[[1,3,2,1],[2,2,3,0],[2,0,3,1],[1,0,2,1]],[[2,2,2,1],[2,2,3,0],[2,0,3,1],[1,0,2,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[0,1,2,0],[3,3,3,2],[1,3,2,0],[0,1,2,1]],[[0,1,2,0],[2,4,3,2],[1,3,2,0],[0,1,2,1]],[[0,1,2,0],[2,3,4,2],[1,3,2,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,3],[1,3,2,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[1,4,2,0],[0,1,2,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[0,1,2,0],[3,3,3,2],[1,3,2,0],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[1,3,2,0],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[1,3,2,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[1,3,2,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,4,2,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,2,0],[0,3,1,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[0,1,2,0],[3,3,3,2],[1,3,2,0],[1,0,2,1]],[[0,1,2,0],[2,4,3,2],[1,3,2,0],[1,0,2,1]],[[0,1,2,0],[2,3,4,2],[1,3,2,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,3],[1,3,2,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,4,2,0],[1,0,2,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[1,3,2,0],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[1,3,2,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[1,3,2,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,4,2,0],[1,1,1,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,0],[1,2,0,1]],[[0,1,2,0],[3,3,3,2],[1,3,2,0],[1,2,0,1]],[[0,1,2,0],[2,4,3,2],[1,3,2,0],[1,2,0,1]],[[0,1,2,0],[2,3,4,2],[1,3,2,0],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,2,2,1],[2,2,3,0],[3,0,3,1],[0,2,2,0]],[[1,2,2,1],[3,2,3,0],[2,0,3,1],[0,2,2,0]],[[1,2,3,1],[2,2,3,0],[2,0,3,1],[0,2,2,0]],[[1,3,2,1],[2,2,3,0],[2,0,3,1],[0,2,2,0]],[[2,2,2,1],[2,2,3,0],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[2,2,4,0],[2,0,3,1],[0,1,2,1]],[[1,2,2,1],[3,2,3,0],[2,0,3,1],[0,1,2,1]],[[1,2,2,2],[2,2,3,0],[2,0,3,1],[0,1,2,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[0,1,2,0],[3,3,3,2],[1,3,2,1],[0,1,1,1]],[[0,1,2,0],[2,4,3,2],[1,3,2,1],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[1,3,2,1],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[1,3,2,1],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[1,4,2,1],[0,1,1,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,2,1],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,2,1],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,2,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[1,3,2,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[1,4,2,1],[0,1,2,0]],[[0,1,3,0],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[0,1,2,0],[3,3,3,2],[1,3,2,1],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[1,3,2,1],[0,2,0,1]],[[0,1,2,0],[2,3,4,2],[1,3,2,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,3],[1,3,2,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[1,4,2,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[1,3,2,1],[0,3,0,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[0,1,2,0],[3,3,3,2],[1,3,2,1],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[1,3,2,1],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[1,3,2,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,3],[1,3,2,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[1,4,2,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[1,3,2,1],[0,3,1,0]],[[1,2,3,1],[2,2,3,0],[2,0,3,1],[0,1,2,1]],[[1,3,2,1],[2,2,3,0],[2,0,3,1],[0,1,2,1]],[[2,2,2,1],[2,2,3,0],[2,0,3,1],[0,1,2,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[0,1,2,0],[3,3,3,2],[1,3,2,1],[1,0,1,1]],[[0,1,2,0],[2,4,3,2],[1,3,2,1],[1,0,1,1]],[[0,1,2,0],[2,3,4,2],[1,3,2,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,3],[1,3,2,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,4,2,1],[1,0,1,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,2,1],[1,0,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,2,1],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,2,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,3],[1,3,2,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[1,4,2,1],[1,0,2,0]],[[0,1,3,0],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[0,1,2,0],[3,3,3,2],[1,3,2,1],[1,1,0,1]],[[0,1,2,0],[2,4,3,2],[1,3,2,1],[1,1,0,1]],[[0,1,2,0],[2,3,4,2],[1,3,2,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,3],[1,3,2,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[1,4,2,1],[1,1,0,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[0,1,2,0],[3,3,3,2],[1,3,2,1],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[1,3,2,1],[1,1,1,0]],[[0,1,2,0],[2,3,4,2],[1,3,2,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,3],[1,3,2,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[1,4,2,1],[1,1,1,0]],[[1,2,2,1],[2,2,3,0],[2,0,3,0],[1,3,1,1]],[[1,2,2,1],[2,2,3,0],[2,0,3,0],[2,2,1,1]],[[1,2,2,1],[2,2,3,0],[3,0,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,3,0],[2,0,3,0],[1,2,1,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[0,1,2,0],[3,3,3,2],[1,3,2,1],[1,2,0,0]],[[0,1,2,0],[2,4,3,2],[1,3,2,1],[1,2,0,0]],[[0,1,2,0],[2,3,4,2],[1,3,2,1],[1,2,0,0]],[[0,1,2,0],[2,3,3,3],[1,3,2,1],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[1,4,2,1],[1,2,0,0]],[[1,2,3,1],[2,2,3,0],[2,0,3,0],[1,2,1,1]],[[1,3,2,1],[2,2,3,0],[2,0,3,0],[1,2,1,1]],[[2,2,2,1],[2,2,3,0],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[2,2,3,0],[2,0,3,0],[2,1,2,1]],[[1,2,2,1],[2,2,3,0],[3,0,3,0],[1,1,2,1]],[[1,2,2,1],[3,2,3,0],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[2,2,3,0],[2,0,3,0],[1,1,2,1]],[[1,3,2,1],[2,2,3,0],[2,0,3,0],[1,1,2,1]],[[2,2,2,1],[2,2,3,0],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[2,2,3,0],[3,0,3,0],[0,2,2,1]],[[1,2,2,1],[3,2,3,0],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[2,2,3,0],[2,0,3,0],[0,2,2,1]],[[1,3,2,1],[2,2,3,0],[2,0,3,0],[0,2,2,1]],[[2,2,2,1],[2,2,3,0],[2,0,3,0],[0,2,2,1]],[[0,1,3,0],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[0,1,2,0],[3,3,3,2],[1,3,2,2],[0,0,1,1]],[[0,1,2,0],[2,4,3,2],[1,3,2,2],[0,0,1,1]],[[0,1,2,0],[2,3,4,2],[1,3,2,2],[0,0,1,1]],[[0,1,2,0],[2,3,3,3],[1,3,2,2],[0,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,2,3],[0,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,2,2],[0,0,1,2]],[[0,1,3,0],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,2,2],[0,0,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,2,2],[0,0,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,2,2],[0,0,2,0]],[[0,1,2,0],[2,3,3,3],[1,3,2,2],[0,0,2,0]],[[0,1,2,0],[2,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[2,2,3,0],[2,0,2,1],[1,3,2,0]],[[1,2,2,1],[2,2,3,0],[2,0,2,1],[2,2,2,0]],[[1,2,2,1],[2,2,3,0],[3,0,2,1],[1,2,2,0]],[[1,2,2,1],[3,2,3,0],[2,0,2,1],[1,2,2,0]],[[1,2,3,1],[2,2,3,0],[2,0,2,1],[1,2,2,0]],[[1,3,2,1],[2,2,3,0],[2,0,2,1],[1,2,2,0]],[[2,2,2,1],[2,2,3,0],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[2,2,3,0],[2,0,2,0],[1,2,3,1]],[[1,2,2,1],[2,2,3,0],[2,0,2,0],[1,3,2,1]],[[1,2,2,1],[2,2,3,0],[2,0,2,0],[2,2,2,1]],[[1,2,2,1],[2,2,3,0],[3,0,2,0],[1,2,2,1]],[[1,2,2,1],[3,2,3,0],[2,0,2,0],[1,2,2,1]],[[1,2,3,1],[2,2,3,0],[2,0,2,0],[1,2,2,1]],[[1,3,2,1],[2,2,3,0],[2,0,2,0],[1,2,2,1]],[[2,2,2,1],[2,2,3,0],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[3,2,3,0],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,2,3,0],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,2,3,0],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,2,3,0],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[3,2,3,0],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,2,3,0],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,2,3,0],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,2,3,0],[1,3,3,1],[0,2,0,0]],[[0,1,3,0],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[0,1,2,0],[3,3,3,2],[1,3,3,0],[0,0,2,1]],[[0,1,2,0],[2,4,3,2],[1,3,3,0],[0,0,2,1]],[[0,1,2,0],[2,3,4,2],[1,3,3,0],[0,0,2,1]],[[0,1,2,0],[2,3,3,3],[1,3,3,0],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[1,3,4,0],[0,0,2,1]],[[0,1,3,0],[2,3,3,2],[1,3,3,0],[0,1,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,3,0],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,3,0],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,3,0],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[1,4,3,0],[0,1,2,0]],[[0,1,3,0],[2,3,3,2],[1,3,3,0],[0,2,1,0]],[[0,1,2,0],[3,3,3,2],[1,3,3,0],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[1,3,3,0],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[1,3,3,0],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[1,4,3,0],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[1,3,3,0],[0,3,1,0]],[[1,2,2,1],[3,2,3,0],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,2,3,0],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[2,2,3,0],[1,3,3,1],[0,0,2,0]],[[2,2,2,1],[2,2,3,0],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[3,2,3,0],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[2,2,3,0],[1,3,3,1],[0,0,1,1]],[[1,3,2,1],[2,2,3,0],[1,3,3,1],[0,0,1,1]],[[2,2,2,1],[2,2,3,0],[1,3,3,1],[0,0,1,1]],[[0,1,3,0],[2,3,3,2],[1,3,3,0],[1,0,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,3,0],[1,0,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,3,0],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,3,0],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[1,4,3,0],[1,0,2,0]],[[0,1,3,0],[2,3,3,2],[1,3,3,0],[1,1,1,0]],[[0,1,2,0],[3,3,3,2],[1,3,3,0],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[1,3,3,0],[1,1,1,0]],[[0,1,2,0],[2,3,4,2],[1,3,3,0],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[1,4,3,0],[1,1,1,0]],[[0,1,3,0],[2,3,3,2],[1,3,3,0],[1,2,0,0]],[[0,1,2,0],[3,3,3,2],[1,3,3,0],[1,2,0,0]],[[0,1,2,0],[2,4,3,2],[1,3,3,0],[1,2,0,0]],[[0,1,2,0],[2,3,4,2],[1,3,3,0],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,2,1],[3,2,3,0],[1,3,3,0],[1,2,0,0]],[[1,2,3,1],[2,2,3,0],[1,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,2,3,0],[1,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,2,3,0],[1,3,3,0],[1,2,0,0]],[[1,2,2,1],[3,2,3,0],[1,3,3,0],[1,1,1,0]],[[1,2,3,1],[2,2,3,0],[1,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[1,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,2,3,0],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[3,2,3,0],[1,3,3,0],[1,0,2,0]],[[1,2,3,1],[2,2,3,0],[1,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,2,3,0],[1,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,2,3,0],[1,3,3,0],[1,0,2,0]],[[0,1,3,0],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[0,1,2,0],[3,3,3,2],[1,3,3,1],[0,0,1,1]],[[0,1,2,0],[2,4,3,2],[1,3,3,1],[0,0,1,1]],[[0,1,2,0],[2,3,4,2],[1,3,3,1],[0,0,1,1]],[[0,1,2,0],[2,3,3,3],[1,3,3,1],[0,0,1,1]],[[0,1,2,0],[2,3,3,2],[1,3,4,1],[0,0,1,1]],[[0,1,3,0],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[0,1,2,0],[3,3,3,2],[1,3,3,1],[0,0,2,0]],[[0,1,2,0],[2,4,3,2],[1,3,3,1],[0,0,2,0]],[[0,1,2,0],[2,3,4,2],[1,3,3,1],[0,0,2,0]],[[0,1,2,0],[2,3,3,3],[1,3,3,1],[0,0,2,0]],[[0,1,2,0],[2,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,2,1],[3,2,3,0],[1,3,3,0],[0,2,1,0]],[[1,2,3,1],[2,2,3,0],[1,3,3,0],[0,2,1,0]],[[0,1,3,0],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[0,1,2,0],[3,3,3,2],[1,3,3,1],[0,2,0,0]],[[0,1,2,0],[2,4,3,2],[1,3,3,1],[0,2,0,0]],[[0,1,2,0],[2,3,4,2],[1,3,3,1],[0,2,0,0]],[[0,1,2,0],[2,3,3,3],[1,3,3,1],[0,2,0,0]],[[0,1,2,0],[2,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,3,2,1],[2,2,3,0],[1,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,2,3,0],[1,3,3,0],[0,2,1,0]],[[1,2,2,1],[3,2,3,0],[1,3,3,0],[0,1,2,0]],[[1,2,3,1],[2,2,3,0],[1,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,2,3,0],[1,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,2,3,0],[1,3,3,0],[0,1,2,0]],[[1,2,2,1],[3,2,3,0],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[2,2,3,0],[1,3,3,0],[0,0,2,1]],[[1,3,2,1],[2,2,3,0],[1,3,3,0],[0,0,2,1]],[[2,2,2,1],[2,2,3,0],[1,3,3,0],[0,0,2,1]],[[0,1,3,0],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[0,1,2,0],[3,3,3,2],[1,3,3,1],[1,1,0,0]],[[0,1,2,0],[2,4,3,2],[1,3,3,1],[1,1,0,0]],[[0,1,2,0],[2,3,4,2],[1,3,3,1],[1,1,0,0]],[[0,1,2,0],[2,3,3,3],[1,3,3,1],[1,1,0,0]],[[0,1,2,0],[2,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,2,1],[3,2,3,0],[1,3,2,1],[1,2,0,0]],[[1,2,3,1],[2,2,3,0],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,2,3,0],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,2,3,0],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,2,3,0],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,0],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,2,3,0],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,2,3,0],[1,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,0],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,0],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,0],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,2,3,0],[1,3,2,1],[1,0,2,0]],[[0,1,3,0],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[0,1,2,0],[3,3,3,2],[1,3,3,2],[0,0,0,1]],[[0,1,2,0],[2,4,3,2],[1,3,3,2],[0,0,0,1]],[[0,1,2,0],[2,3,4,2],[1,3,3,2],[0,0,0,1]],[[0,1,2,0],[2,3,3,3],[1,3,3,2],[0,0,0,1]],[[0,1,2,0],[2,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,3,1],[2,2,3,0],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,2,3,0],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,2,3,0],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,2,3,0],[1,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,2,3,0],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,2,3,0],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,2,3,0],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[3,2,3,0],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,0],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,0],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,0],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,2,3,0],[1,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,0],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,0],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,0],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,0],[1,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,2,3,0],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,2,3,0],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,2,3,0],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,2,3,0],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,2,3,0],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,2,3,0],[1,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,2,3,0],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[3,2,3,0],[1,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,2,3,0],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,2,3,0],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,2,3,0],[1,3,2,0],[1,2,0,1]],[[1,2,2,1],[3,2,3,0],[1,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,2,3,0],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,2,3,0],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,2,3,0],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,2,3,0],[1,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,2,3,0],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,2,3,0],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,2,3,0],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,2,3,0],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,0],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,2,3,0],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,0],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,2,3,0],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,2,3,0],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,2,3,0],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,2,3,0],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[3,2,3,0],[1,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,2,3,0],[1,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,2,3,0],[1,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,2,3,0],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,2,3,0],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,2,3,0],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,2,3,0],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,2,3,0],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,2,3,0],[1,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,2,3,0],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,2,3,0],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,2,3,0],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,2,3,0],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,2,3,0],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,2,3,0],[1,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,2,3,0],[1,3,1,0],[0,2,2,1]],[[0,1,3,0],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[2,0,1,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[2,0,1,1],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[2,0,1,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[2,0,1,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[3,0,1,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,1],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[0,1,2,0],[3,3,3,2],[2,0,1,2],[0,2,2,1]],[[0,1,2,0],[2,4,3,2],[2,0,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[2,0,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[2,0,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[3,0,1,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,3],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[0,3,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[0,2,3,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[0,2,2,2]],[[0,1,3,0],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[0,1,2,0],[3,3,3,2],[2,0,1,2],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[2,0,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[2,0,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[2,0,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[3,0,1,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,3],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[2,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[1,1,3,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[1,1,2,2]],[[0,1,3,0],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,1,2,0],[3,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[2,0,1,2],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[2,0,1,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[2,0,1,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[3,0,1,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,3],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[2,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[1,3,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[1,2,1,2]],[[0,1,3,0],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,1,2,0],[3,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[2,0,1,2],[1,2,2,0]],[[0,1,2,0],[2,3,4,2],[2,0,1,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,3],[2,0,1,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[3,0,1,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,1,3],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,1,2],[1,2,3,0]],[[0,1,3,0],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[2,0,2,0],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[2,0,2,0],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[2,0,2,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[2,0,2,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[3,0,2,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,0],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,0],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,0],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,0],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[0,1,2,0],[3,3,3,2],[2,0,2,1],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[2,0,2,1],[1,2,2,0]],[[0,1,2,0],[2,3,4,2],[2,0,2,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,3],[2,0,2,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[3,0,2,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,2,1],[2,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,2,1],[1,3,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,2,1],[1,2,3,0]],[[0,1,3,0],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[0,1,2,0],[3,3,3,2],[2,0,2,2],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[2,0,2,2],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[2,0,2,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[2,0,2,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[3,0,2,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,3],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,2],[0,2,1,2]],[[0,1,3,0],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[0,1,2,0],[3,3,3,2],[2,0,2,2],[0,2,2,0]],[[0,1,2,0],[2,4,3,2],[2,0,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,4,2],[2,0,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,3],[2,0,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[3,0,2,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,2,3],[0,2,2,0]],[[0,1,3,0],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[2,0,2,2],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[2,0,2,2],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[2,0,2,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[2,0,2,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[3,0,2,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,3],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,2],[2,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,2],[1,1,1,2]],[[0,1,3,0],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[2,0,2,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[2,0,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[2,0,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,3],[2,0,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[3,0,2,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,2,3],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,2,2],[2,1,2,0]],[[0,1,3,0],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,0,2,2],[1,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,0,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,4,2],[2,0,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,3],[2,0,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,0,2,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,3],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,2],[2,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,2],[1,3,0,1]],[[0,1,2,0],[2,3,3,2],[2,0,2,2],[1,2,0,2]],[[0,1,3,0],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,0,2,2],[1,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,0,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,4,2],[2,0,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,3],[2,0,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,0,2,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,0,2,3],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,0,2,2],[2,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,0,2,2],[1,3,1,0]],[[0,1,3,0],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[0,1,2,0],[3,3,3,2],[2,0,3,0],[0,2,2,1]],[[0,1,2,0],[2,4,3,2],[2,0,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[2,0,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[2,0,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[3,0,3,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,4,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,0],[0,3,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,0],[0,2,3,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,0],[0,2,2,2]],[[0,1,3,0],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[0,1,2,0],[3,3,3,2],[2,0,3,0],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[2,0,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[2,0,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[2,0,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[3,0,3,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,4,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,0],[2,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,0],[1,1,3,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,0],[1,1,2,2]],[[0,1,3,0],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,1,2,0],[3,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[2,0,3,0],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[2,0,3,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[2,0,3,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[3,0,3,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,4,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,0],[2,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,0],[1,3,1,1]],[[0,1,3,0],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[0,1,2,0],[3,3,3,2],[2,0,3,1],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[2,0,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[2,0,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[2,0,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[3,0,3,1],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,4,1],[0,2,1,1]],[[0,1,3,0],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[0,1,2,0],[3,3,3,2],[2,0,3,1],[0,2,2,0]],[[0,1,2,0],[2,4,3,2],[2,0,3,1],[0,2,2,0]],[[0,1,2,0],[2,3,4,2],[2,0,3,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,3],[2,0,3,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[3,0,3,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,4,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,3,1],[0,3,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,3,1],[0,2,3,0]],[[0,1,3,0],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[2,0,3,1],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[2,0,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[2,0,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[2,0,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[3,0,3,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,4,1],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,1],[2,1,1,1]],[[0,1,3,0],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[2,0,3,1],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[2,0,3,1],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[2,0,3,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,3],[2,0,3,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[3,0,3,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,4,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,3,1],[2,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,3,1],[1,1,3,0]],[[0,1,3,0],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,0,3,1],[1,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,0,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,4,2],[2,0,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,3],[2,0,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,0,3,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,0,4,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,1],[2,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,1],[1,3,0,1]],[[0,1,3,0],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,0,3,1],[1,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,0,3,1],[1,2,1,0]],[[0,1,2,0],[2,3,4,2],[2,0,3,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,3],[2,0,3,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,0,3,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,0,4,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,0,3,1],[2,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,0,3,1],[1,3,1,0]],[[1,2,2,1],[3,2,3,0],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,3,0],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[1,2,3,1],[1,1,1,0]],[[0,1,3,0],[2,3,3,2],[2,0,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,4,2],[2,0,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,3],[2,0,3,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,3],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,2],[0,0,2,2]],[[0,1,3,0],[2,3,3,2],[2,0,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[2,0,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[2,0,3,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,3],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,2],[0,1,1,2]],[[0,1,3,0],[2,3,3,2],[2,0,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[2,0,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[2,0,3,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,3,3],[0,1,2,0]],[[2,2,2,1],[2,2,3,0],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,3,0],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,3,0],[1,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,3,0],[1,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,3,0],[1,2,3,1],[1,1,0,1]],[[0,1,3,0],[2,3,3,2],[2,0,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,4,2],[2,0,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,3],[2,0,3,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,3],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[2,0,3,2],[1,0,1,2]],[[0,1,3,0],[2,3,3,2],[2,0,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[2,0,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,3],[2,0,3,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[3,2,3,0],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,3,0],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,3,0],[1,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,3,0],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,3,0],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,3,0],[1,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,3,0],[1,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,3,0],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,3,0],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,3,0],[1,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,3,0],[1,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,0],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,3,0],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,3,0],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,3,0],[1,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,3,0],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[3,2,3,0],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,3,0],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,3,0],[1,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,3,0],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,3,0],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,3,0],[1,2,3,1],[0,1,1,1]],[[0,1,3,0],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[2,1,0,1],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[2,1,0,1],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[2,1,0,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[2,1,0,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[3,1,0,1],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,1],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,1],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,1],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,1],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,1,2,0],[3,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,1,2,0],[2,4,3,2],[2,1,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[2,1,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[2,1,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[3,1,0,2],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,3],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[0,3,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[0,2,3,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[0,2,2,2]],[[0,1,3,0],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[0,1,2,0],[3,3,3,2],[2,1,0,2],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[2,1,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[2,1,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[2,1,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[3,1,0,2],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,3],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[2,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[1,1,3,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[1,1,2,2]],[[0,1,3,0],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[0,1,2,0],[3,3,3,2],[2,1,0,2],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[2,1,0,2],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[2,1,0,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[2,1,0,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[3,1,0,2],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,3],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[2,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[1,3,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[1,2,1,2]],[[0,1,3,0],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[0,1,2,0],[3,3,3,2],[2,1,0,2],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[2,1,0,2],[1,2,2,0]],[[0,1,2,0],[2,3,4,2],[2,1,0,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,3],[2,1,0,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[3,1,0,2],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,0,3],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[2,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[1,3,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,0,2],[1,2,3,0]],[[0,1,3,0],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[0,1,2,0],[3,3,3,2],[2,1,1,0],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[2,1,1,0],[1,2,2,1]],[[0,1,2,0],[2,3,4,2],[2,1,1,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,3],[2,1,1,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[3,1,1,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,0],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,0],[1,3,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,0],[1,2,3,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,0],[1,2,2,2]],[[0,1,3,0],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[0,1,2,0],[3,3,3,2],[2,1,1,1],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[2,1,1,1],[1,2,2,0]],[[0,1,2,0],[2,3,4,2],[2,1,1,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,3],[2,1,1,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[3,1,1,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,1,1],[2,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,1,1],[1,3,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,1,1],[1,2,3,0]],[[0,1,3,0],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[0,1,2,0],[3,3,3,2],[2,1,1,2],[0,1,2,1]],[[0,1,2,0],[2,4,3,2],[2,1,1,2],[0,1,2,1]],[[0,1,2,0],[2,3,4,2],[2,1,1,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,3],[2,1,1,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[3,1,1,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,3],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,2],[0,1,3,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,2],[0,1,2,2]],[[0,1,3,0],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[0,1,2,0],[3,3,3,2],[2,1,1,2],[1,0,2,1]],[[0,1,2,0],[2,4,3,2],[2,1,1,2],[1,0,2,1]],[[0,1,2,0],[2,3,4,2],[2,1,1,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,3],[2,1,1,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[3,1,1,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,3],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,2],[2,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,2],[1,0,3,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,2],[1,0,2,2]],[[0,1,3,0],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,1,1,2],[1,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,1,1,2],[1,2,0,1]],[[0,1,2,0],[2,3,4,2],[2,1,1,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,3],[2,1,1,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,1,1,2],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,3],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,2],[2,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,2],[1,3,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,1,2],[1,2,0,2]],[[0,1,3,0],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,1,1,2],[1,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,1,1,2],[1,2,1,0]],[[0,1,2,0],[2,3,4,2],[2,1,1,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,3],[2,1,1,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,1,1,2],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,1,3],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,1,2],[2,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,1,2],[1,3,1,0]],[[1,3,2,1],[2,2,3,0],[1,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,3,0],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,3,0],[1,2,3,0],[1,1,1,1]],[[0,1,3,0],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[0,1,2,0],[3,3,3,2],[2,1,2,0],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[2,1,2,0],[1,2,1,1]],[[0,1,2,0],[2,3,4,2],[2,1,2,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,3],[2,1,2,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[3,1,2,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,0],[2,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,0],[1,3,1,1]],[[0,1,3,0],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,1,2,1],[1,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,1,2,1],[1,2,0,1]],[[0,1,2,0],[2,3,4,2],[2,1,2,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,3],[2,1,2,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,1,2,1],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,1],[2,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,1],[1,3,0,1]],[[0,1,3,0],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,1,2,1],[1,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,1,2,1],[1,2,1,0]],[[0,1,2,0],[2,3,4,2],[2,1,2,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,3],[2,1,2,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,1,2,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,2,1],[2,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,2,1],[1,3,1,0]],[[1,2,3,1],[2,2,3,0],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,3,0],[1,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,3,0],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[3,2,3,0],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,3,0],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,3,0],[1,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,3,0],[1,2,3,0],[1,0,2,1]],[[0,1,3,0],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[0,1,2,0],[3,3,3,2],[2,1,2,2],[0,0,2,1]],[[0,1,2,0],[2,4,3,2],[2,1,2,2],[0,0,2,1]],[[0,1,2,0],[2,3,4,2],[2,1,2,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,3],[2,1,2,2],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,3],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,2],[0,0,2,2]],[[0,1,3,0],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[0,1,2,0],[3,3,3,2],[2,1,2,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,2],[2,1,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[2,1,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[2,1,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[3,1,2,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,3],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,2],[0,1,1,2]],[[0,1,3,0],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[0,1,2,0],[3,3,3,2],[2,1,2,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[2,1,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[2,1,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[2,1,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[3,1,2,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,2,3],[0,1,2,0]],[[0,1,3,0],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,1,2,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,1,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,4,2],[2,1,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,3],[2,1,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,1,2,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,3],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,2],[0,2,0,2]],[[0,1,3,0],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,1,2,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,1,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[2,1,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,3],[2,1,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,1,2,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,2,3],[0,2,1,0]],[[1,2,2,1],[3,2,3,0],[1,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,3,0],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,3,0],[1,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,3,0],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,3,0],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,3,0],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,3,0],[1,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,3,0],[1,2,3,0],[0,1,2,1]],[[0,1,3,0],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[0,1,2,0],[3,3,3,2],[2,1,2,2],[1,0,1,1]],[[0,1,2,0],[2,4,3,2],[2,1,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,4,2],[2,1,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,3],[2,1,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[3,1,2,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,3],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,2],[2,0,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,2],[1,0,1,2]],[[0,1,3,0],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[0,1,2,0],[3,3,3,2],[2,1,2,2],[1,0,2,0]],[[0,1,2,0],[2,4,3,2],[2,1,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[2,1,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,3],[2,1,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[3,1,2,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,2,3],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,2,2],[2,0,2,0]],[[0,1,3,0],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[0,1,2,0],[3,3,3,2],[2,1,2,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,2],[2,1,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,4,2],[2,1,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,3],[2,1,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[3,1,2,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,3],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,2],[2,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,2,2],[1,1,0,2]],[[0,1,3,0],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[0,1,2,0],[3,3,3,2],[2,1,2,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[2,1,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,4,2],[2,1,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,3],[2,1,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[3,1,2,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,2,3],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,2,2],[2,1,1,0]],[[1,2,2,1],[3,2,3,0],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,2,3,0],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,2,3,0],[1,1,3,1],[0,2,2,0]],[[0,1,3,0],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[0,1,2,0],[3,3,3,2],[2,1,3,0],[0,1,2,1]],[[0,1,2,0],[2,4,3,2],[2,1,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,4,2],[2,1,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,3],[2,1,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[3,1,3,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,4,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,3,0],[0,1,3,1]],[[0,1,2,0],[2,3,3,2],[2,1,3,0],[0,1,2,2]],[[0,1,3,0],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,1,2,0],[3,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[2,1,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[2,1,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[2,1,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[3,1,3,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,4,0],[0,2,1,1]],[[0,1,3,0],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[0,1,2,0],[3,3,3,2],[2,1,3,0],[1,0,2,1]],[[0,1,2,0],[2,4,3,2],[2,1,3,0],[1,0,2,1]],[[0,1,2,0],[2,3,4,2],[2,1,3,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,3],[2,1,3,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[3,1,3,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,4,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,3,0],[2,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,3,0],[1,0,3,1]],[[0,1,2,0],[2,3,3,2],[2,1,3,0],[1,0,2,2]],[[0,1,3,0],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[2,1,3,0],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[2,1,3,0],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[2,1,3,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[2,1,3,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[3,1,3,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,4,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,3,0],[2,1,1,1]],[[0,1,3,0],[2,3,3,2],[2,1,3,0],[1,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,1,3,0],[1,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,1,3,0],[1,2,1,0]],[[0,1,2,0],[2,3,4,2],[2,1,3,0],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,1,3,0],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,3,0],[2,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,3,0],[1,3,1,0]],[[2,2,2,1],[2,2,3,0],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[3,2,3,0],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,2,3,0],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,2,3,0],[1,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,2,3,0],[1,1,3,0],[0,2,2,1]],[[0,1,3,0],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[0,1,2,0],[3,3,3,2],[2,1,3,1],[0,0,2,1]],[[0,1,2,0],[2,4,3,2],[2,1,3,1],[0,0,2,1]],[[0,1,2,0],[2,3,4,2],[2,1,3,1],[0,0,2,1]],[[0,1,2,0],[2,3,3,3],[2,1,3,1],[0,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,1,4,1],[0,0,2,1]],[[0,1,3,0],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[0,1,2,0],[3,3,3,2],[2,1,3,1],[0,1,1,1]],[[0,1,2,0],[2,4,3,2],[2,1,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[2,1,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[2,1,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[3,1,3,1],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,4,1],[0,1,1,1]],[[0,1,3,0],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[0,1,2,0],[3,3,3,2],[2,1,3,1],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[2,1,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[2,1,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[2,1,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[3,1,3,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,4,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,3,1],[0,1,3,0]],[[0,1,3,0],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,1,3,1],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,1,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,4,2],[2,1,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,3],[2,1,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,1,3,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,4,1],[0,2,0,1]],[[0,1,3,0],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,1,3,1],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,1,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[2,1,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,3],[2,1,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,1,3,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,4,1],[0,2,1,0]],[[0,1,3,0],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[0,1,2,0],[3,3,3,2],[2,1,3,1],[1,0,1,1]],[[0,1,2,0],[2,4,3,2],[2,1,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,4,2],[2,1,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,3],[2,1,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[3,1,3,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,4,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[2,1,3,1],[2,0,1,1]],[[0,1,3,0],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[0,1,2,0],[3,3,3,2],[2,1,3,1],[1,0,2,0]],[[0,1,2,0],[2,4,3,2],[2,1,3,1],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[2,1,3,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,3],[2,1,3,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[3,1,3,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,4,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,3,1],[2,0,2,0]],[[0,1,2,0],[2,3,3,2],[2,1,3,1],[1,0,3,0]],[[0,1,3,0],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[0,1,2,0],[3,3,3,2],[2,1,3,1],[1,1,0,1]],[[0,1,2,0],[2,4,3,2],[2,1,3,1],[1,1,0,1]],[[0,1,2,0],[2,3,4,2],[2,1,3,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,3],[2,1,3,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[3,1,3,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,4,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,3,1],[2,1,0,1]],[[0,1,3,0],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[0,1,2,0],[3,3,3,2],[2,1,3,1],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[2,1,3,1],[1,1,1,0]],[[0,1,2,0],[2,3,4,2],[2,1,3,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,3],[2,1,3,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[3,1,3,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,4,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[2,1,3,1],[2,1,1,0]],[[1,2,2,1],[3,2,3,0],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[2,2,3,0],[1,0,3,1],[1,2,2,0]],[[1,3,2,1],[2,2,3,0],[1,0,3,1],[1,2,2,0]],[[2,2,2,1],[2,2,3,0],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[3,2,3,0],[1,0,3,0],[1,2,2,1]],[[1,2,3,1],[2,2,3,0],[1,0,3,0],[1,2,2,1]],[[1,3,2,1],[2,2,3,0],[1,0,3,0],[1,2,2,1]],[[2,2,2,1],[2,2,3,0],[1,0,3,0],[1,2,2,1]],[[0,1,3,0],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[0,1,2,0],[3,3,3,2],[2,1,3,2],[0,1,0,1]],[[0,1,2,0],[2,4,3,2],[2,1,3,2],[0,1,0,1]],[[0,1,2,0],[2,3,4,2],[2,1,3,2],[0,1,0,1]],[[0,1,2,0],[2,3,3,3],[2,1,3,2],[0,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,1],[2,2,4,0],[0,3,3,2],[1,1,0,0]],[[1,2,2,2],[2,2,3,0],[0,3,3,2],[1,1,0,0]],[[1,2,3,1],[2,2,3,0],[0,3,3,2],[1,1,0,0]],[[1,3,2,1],[2,2,3,0],[0,3,3,2],[1,1,0,0]],[[2,2,2,1],[2,2,3,0],[0,3,3,2],[1,1,0,0]],[[0,1,3,0],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[0,1,2,0],[3,3,3,2],[2,1,3,2],[1,0,0,1]],[[0,1,2,0],[2,4,3,2],[2,1,3,2],[1,0,0,1]],[[0,1,2,0],[2,3,4,2],[2,1,3,2],[1,0,0,1]],[[0,1,2,0],[2,3,3,3],[2,1,3,2],[1,0,0,1]],[[0,1,2,0],[2,3,3,2],[3,1,3,2],[1,0,0,1]],[[0,1,2,0],[2,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,1],[2,2,4,0],[0,3,3,2],[0,2,0,0]],[[1,2,2,2],[2,2,3,0],[0,3,3,2],[0,2,0,0]],[[1,2,3,1],[2,2,3,0],[0,3,3,2],[0,2,0,0]],[[1,3,2,1],[2,2,3,0],[0,3,3,2],[0,2,0,0]],[[2,2,2,1],[2,2,3,0],[0,3,3,2],[0,2,0,0]],[[1,2,2,1],[2,2,3,0],[0,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,2,3,0],[0,3,4,2],[0,0,2,0]],[[1,2,2,1],[2,2,4,0],[0,3,3,2],[0,0,2,0]],[[1,2,2,2],[2,2,3,0],[0,3,3,2],[0,0,2,0]],[[1,2,3,1],[2,2,3,0],[0,3,3,2],[0,0,2,0]],[[1,3,2,1],[2,2,3,0],[0,3,3,2],[0,0,2,0]],[[2,2,2,1],[2,2,3,0],[0,3,3,2],[0,0,2,0]],[[1,2,2,1],[2,2,3,0],[0,3,3,2],[0,0,1,2]],[[1,2,2,1],[2,2,3,0],[0,3,3,3],[0,0,1,1]],[[1,2,2,1],[2,2,3,0],[0,3,4,2],[0,0,1,1]],[[1,2,2,1],[2,2,4,0],[0,3,3,2],[0,0,1,1]],[[1,2,2,2],[2,2,3,0],[0,3,3,2],[0,0,1,1]],[[1,2,3,1],[2,2,3,0],[0,3,3,2],[0,0,1,1]],[[1,3,2,1],[2,2,3,0],[0,3,3,2],[0,0,1,1]],[[2,2,2,1],[2,2,3,0],[0,3,3,2],[0,0,1,1]],[[1,2,2,1],[3,2,3,0],[0,3,3,1],[1,2,0,0]],[[1,2,3,1],[2,2,3,0],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,2,3,0],[0,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,2,3,0],[0,3,3,1],[1,2,0,0]],[[1,2,2,1],[2,2,3,0],[0,3,4,1],[0,0,2,1]],[[1,2,2,1],[2,2,4,0],[0,3,3,1],[0,0,2,1]],[[1,2,2,2],[2,2,3,0],[0,3,3,1],[0,0,2,1]],[[1,2,3,1],[2,2,3,0],[0,3,3,1],[0,0,2,1]],[[1,3,2,1],[2,2,3,0],[0,3,3,1],[0,0,2,1]],[[2,2,2,1],[2,2,3,0],[0,3,3,1],[0,0,2,1]],[[0,1,2,0],[3,3,3,2],[2,2,0,0],[1,2,2,1]],[[0,1,2,0],[2,4,3,2],[2,2,0,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[3,2,0,0],[1,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,0],[2,2,2,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,0],[1,3,2,1]],[[0,1,3,0],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[0,1,2,0],[3,3,3,2],[2,2,0,1],[0,2,2,1]],[[0,1,2,0],[2,4,3,2],[2,2,0,1],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[2,2,0,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[2,2,0,1],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[3,2,0,1],[0,2,2,1]],[[0,1,3,0],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[0,1,2,0],[3,3,3,2],[2,2,0,1],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[2,2,0,1],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[2,2,0,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[2,2,0,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[3,2,0,1],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,1],[2,1,2,1]],[[0,1,2,0],[3,3,3,2],[2,2,0,1],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[2,2,0,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[3,2,0,1],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,2,0,1],[2,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,2,0,1],[1,3,2,0]],[[0,1,3,0],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,1,2,0],[3,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,1,2,0],[2,4,3,2],[2,2,0,2],[0,1,2,1]],[[0,1,2,0],[2,3,4,2],[2,2,0,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,3],[2,2,0,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[3,2,0,2],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,3],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,2],[0,1,3,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,2],[0,1,2,2]],[[0,1,3,0],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[0,1,2,0],[3,3,3,2],[2,2,0,2],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[2,2,0,2],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[2,2,0,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[2,2,0,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[3,2,0,2],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,3],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,2],[0,2,1,2]],[[0,1,3,0],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[0,1,2,0],[3,3,3,2],[2,2,0,2],[0,2,2,0]],[[0,1,2,0],[2,4,3,2],[2,2,0,2],[0,2,2,0]],[[0,1,2,0],[2,3,4,2],[2,2,0,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,3],[2,2,0,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[3,2,0,2],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,2,0,3],[0,2,2,0]],[[0,1,3,0],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,1,2,0],[3,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,1,2,0],[2,4,3,2],[2,2,0,2],[1,0,2,1]],[[0,1,2,0],[2,3,4,2],[2,2,0,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,3],[2,2,0,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[3,2,0,2],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,3],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,2],[2,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,2],[1,0,3,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,2],[1,0,2,2]],[[0,1,3,0],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[2,2,0,2],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[2,2,0,2],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[2,2,0,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[2,2,0,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[3,2,0,2],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,3],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,2],[2,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,0,2],[1,1,1,2]],[[0,1,3,0],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[2,2,0,2],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[2,2,0,2],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[2,2,0,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,3],[2,2,0,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[3,2,0,2],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,2,0,3],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,2,0,2],[2,1,2,0]],[[1,2,2,1],[3,2,3,0],[0,3,3,0],[1,2,1,0]],[[1,2,3,1],[2,2,3,0],[0,3,3,0],[1,2,1,0]],[[1,3,2,1],[2,2,3,0],[0,3,3,0],[1,2,1,0]],[[2,2,2,1],[2,2,3,0],[0,3,3,0],[1,2,1,0]],[[0,1,3,0],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[0,1,2,0],[3,3,3,2],[2,2,1,0],[0,2,2,1]],[[0,1,2,0],[2,4,3,2],[2,2,1,0],[0,2,2,1]],[[0,1,2,0],[2,3,4,2],[2,2,1,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,3],[2,2,1,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[3,2,1,0],[0,2,2,1]],[[0,1,3,0],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[0,1,2,0],[3,3,3,2],[2,2,1,0],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[2,2,1,0],[1,1,2,1]],[[0,1,2,0],[2,3,4,2],[2,2,1,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,3],[2,2,1,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[3,2,1,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,2,1,0],[2,1,2,1]],[[0,1,3,0],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[0,1,2,0],[3,3,3,2],[2,2,1,1],[0,2,2,0]],[[0,1,2,0],[2,4,3,2],[2,2,1,1],[0,2,2,0]],[[0,1,2,0],[2,3,4,2],[2,2,1,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,3],[2,2,1,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[3,2,1,1],[0,2,2,0]],[[0,1,3,0],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[2,2,1,1],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[2,2,1,1],[1,1,2,0]],[[0,1,2,0],[2,3,4,2],[2,2,1,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,3],[2,2,1,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[3,2,1,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,2,1,1],[2,1,2,0]],[[1,2,2,1],[3,2,3,0],[0,3,3,0],[1,1,2,0]],[[1,2,3,1],[2,2,3,0],[0,3,3,0],[1,1,2,0]],[[1,3,2,1],[2,2,3,0],[0,3,3,0],[1,1,2,0]],[[2,2,2,1],[2,2,3,0],[0,3,3,0],[1,1,2,0]],[[0,1,3,0],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,1,2,0],[3,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,1,2,0],[2,4,3,2],[2,2,1,2],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[2,2,1,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[2,2,1,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[3,2,1,2],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,1,3],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,1,2],[0,1,1,2]],[[0,1,3,0],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,1,2,0],[3,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[2,2,1,2],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[2,2,1,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[2,2,1,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[3,2,1,2],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,2,1,3],[0,1,2,0]],[[0,1,3,0],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,2,1,2],[0,2,0,1]],[[0,1,2,0],[2,3,4,2],[2,2,1,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,3],[2,2,1,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,2,1,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,2,1,3],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,2,1,2],[0,2,0,2]],[[0,1,3,0],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,2,1,2],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[2,2,1,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,3],[2,2,1,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,2,1,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,2,1,3],[0,2,1,0]],[[0,1,3,0],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,1,2,0],[3,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,1,2,0],[2,4,3,2],[2,2,1,2],[1,0,1,1]],[[0,1,2,0],[2,3,4,2],[2,2,1,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,3],[2,2,1,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[3,2,1,2],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,1,3],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,1,2],[2,0,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,1,2],[1,0,1,2]],[[0,1,3,0],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,1,2,0],[3,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,1,2,0],[2,4,3,2],[2,2,1,2],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[2,2,1,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,3],[2,2,1,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[3,2,1,2],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[2,2,1,3],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[2,2,1,2],[2,0,2,0]],[[0,1,3,0],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,1,2,0],[3,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,2],[2,2,1,2],[1,1,0,1]],[[0,1,2,0],[2,3,4,2],[2,2,1,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,3],[2,2,1,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[3,2,1,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,2,1,3],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,2,1,2],[2,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,2,1,2],[1,1,0,2]],[[0,1,3,0],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,1,2,0],[3,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[2,2,1,2],[1,1,1,0]],[[0,1,2,0],[2,3,4,2],[2,2,1,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,3],[2,2,1,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[3,2,1,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[2,2,1,3],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[2,2,1,2],[2,1,1,0]],[[0,1,3,0],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[0,1,2,0],[3,3,3,2],[2,2,1,2],[1,2,0,0]],[[0,1,2,0],[2,4,3,2],[2,2,1,2],[1,2,0,0]],[[0,1,2,0],[2,3,4,2],[2,2,1,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,3],[2,2,1,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[3,2,1,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,1],[2,2,4,0],[0,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,3,0],[0,3,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,0],[0,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[0,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,3,0],[0,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,4,0],[0,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,3,0],[0,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,0],[0,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,3,0],[0,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,0],[0,3,2,2],[1,1,0,1]],[[1,2,2,1],[2,2,4,0],[0,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,0],[0,3,2,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,0],[0,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,0],[0,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,0],[0,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,4,0],[0,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,0],[0,3,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,0],[0,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,0],[0,3,2,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,0],[0,3,2,2],[1,0,1,1]],[[0,1,3,0],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[0,1,2,0],[3,3,3,2],[2,2,2,0],[0,1,2,1]],[[0,1,2,0],[2,4,3,2],[2,2,2,0],[0,1,2,1]],[[0,1,2,0],[2,3,4,2],[2,2,2,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,3],[2,2,2,0],[0,1,2,1]],[[0,1,2,0],[2,3,3,2],[3,2,2,0],[0,1,2,1]],[[0,1,3,0],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[0,1,2,0],[3,3,3,2],[2,2,2,0],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[2,2,2,0],[0,2,1,1]],[[0,1,2,0],[2,3,4,2],[2,2,2,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,3],[2,2,2,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[3,2,2,0],[0,2,1,1]],[[0,1,3,0],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[0,1,2,0],[3,3,3,2],[2,2,2,0],[1,0,2,1]],[[0,1,2,0],[2,4,3,2],[2,2,2,0],[1,0,2,1]],[[0,1,2,0],[2,3,4,2],[2,2,2,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,3],[2,2,2,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[3,2,2,0],[1,0,2,1]],[[0,1,2,0],[2,3,3,2],[2,2,2,0],[2,0,2,1]],[[0,1,3,0],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[0,1,2,0],[3,3,3,2],[2,2,2,0],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[2,2,2,0],[1,1,1,1]],[[0,1,2,0],[2,3,4,2],[2,2,2,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,3],[2,2,2,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[3,2,2,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,2,0],[2,1,1,1]],[[0,1,3,0],[2,3,3,2],[2,2,2,0],[1,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,2,2,0],[1,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,2,2,0],[1,2,0,1]],[[0,1,2,0],[2,3,4,2],[2,2,2,0],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,2,2,0],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,2,2,0],[2,2,0,1]],[[1,2,2,1],[2,2,4,0],[0,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,3,0],[0,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,0],[0,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,0],[0,3,2,2],[0,2,1,0]],[[0,1,3,0],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[0,1,2,0],[3,3,3,2],[2,2,2,1],[0,1,1,1]],[[0,1,2,0],[2,4,3,2],[2,2,2,1],[0,1,1,1]],[[0,1,2,0],[2,3,4,2],[2,2,2,1],[0,1,1,1]],[[0,1,2,0],[2,3,3,3],[2,2,2,1],[0,1,1,1]],[[0,1,2,0],[2,3,3,2],[3,2,2,1],[0,1,1,1]],[[0,1,3,0],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[0,1,2,0],[3,3,3,2],[2,2,2,1],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[2,2,2,1],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[2,2,2,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,3],[2,2,2,1],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[3,2,2,1],[0,1,2,0]],[[0,1,3,0],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,2,2,1],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,2,2,1],[0,2,0,1]],[[0,1,2,0],[2,3,4,2],[2,2,2,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,3],[2,2,2,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,2,2,1],[0,2,0,1]],[[0,1,3,0],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,2,2,1],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,2,2,1],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[2,2,2,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,3],[2,2,2,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,2,2,1],[0,2,1,0]],[[2,2,2,1],[2,2,3,0],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,4,0],[0,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,0],[0,3,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,3,0],[0,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,3,0],[0,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,0],[0,3,2,2],[0,2,0,1]],[[0,1,3,0],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[0,1,2,0],[3,3,3,2],[2,2,2,1],[1,0,1,1]],[[0,1,2,0],[2,4,3,2],[2,2,2,1],[1,0,1,1]],[[0,1,2,0],[2,3,4,2],[2,2,2,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,3],[2,2,2,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[3,2,2,1],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[2,2,2,1],[2,0,1,1]],[[0,1,3,0],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[0,1,2,0],[3,3,3,2],[2,2,2,1],[1,0,2,0]],[[0,1,2,0],[2,4,3,2],[2,2,2,1],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[2,2,2,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,3],[2,2,2,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[3,2,2,1],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[2,2,2,1],[2,0,2,0]],[[0,1,3,0],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[0,1,2,0],[3,3,3,2],[2,2,2,1],[1,1,0,1]],[[0,1,2,0],[2,4,3,2],[2,2,2,1],[1,1,0,1]],[[0,1,2,0],[2,3,4,2],[2,2,2,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,3],[2,2,2,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[3,2,2,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,2,2,1],[2,1,0,1]],[[0,1,3,0],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[0,1,2,0],[3,3,3,2],[2,2,2,1],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[2,2,2,1],[1,1,1,0]],[[0,1,2,0],[2,3,4,2],[2,2,2,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,3],[2,2,2,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[3,2,2,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[2,2,2,1],[2,1,1,0]],[[0,1,3,0],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[0,1,2,0],[3,3,3,2],[2,2,2,1],[1,2,0,0]],[[0,1,2,0],[2,4,3,2],[2,2,2,1],[1,2,0,0]],[[0,1,2,0],[2,3,4,2],[2,2,2,1],[1,2,0,0]],[[0,1,2,0],[2,3,3,3],[2,2,2,1],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[3,2,2,1],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[2,2,4,0],[0,3,2,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,0],[0,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,0],[0,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,0],[0,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,0],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,4,0],[0,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,0],[0,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,0],[0,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,0],[0,3,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,3,0],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,3,0],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[2,2,3,0],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[2,2,3,0],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[2,2,3,0],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[3,2,3,0],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[2,2,3,0],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[2,2,3,0],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,2,3,0],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[3,2,3,0],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[2,2,3,0],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,2,3,0],[0,3,2,1],[1,1,2,0]],[[2,2,2,1],[2,2,3,0],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[2,2,4,0],[0,3,2,1],[1,0,2,1]],[[1,2,2,2],[2,2,3,0],[0,3,2,1],[1,0,2,1]],[[1,2,3,1],[2,2,3,0],[0,3,2,1],[1,0,2,1]],[[1,3,2,1],[2,2,3,0],[0,3,2,1],[1,0,2,1]],[[2,2,2,1],[2,2,3,0],[0,3,2,1],[1,0,2,1]],[[1,2,2,1],[2,2,4,0],[0,3,2,1],[0,2,1,1]],[[1,2,2,2],[2,2,3,0],[0,3,2,1],[0,2,1,1]],[[1,2,3,1],[2,2,3,0],[0,3,2,1],[0,2,1,1]],[[1,3,2,1],[2,2,3,0],[0,3,2,1],[0,2,1,1]],[[2,2,2,1],[2,2,3,0],[0,3,2,1],[0,2,1,1]],[[1,2,2,1],[2,2,4,0],[0,3,2,1],[0,1,2,1]],[[1,2,2,2],[2,2,3,0],[0,3,2,1],[0,1,2,1]],[[1,2,3,1],[2,2,3,0],[0,3,2,1],[0,1,2,1]],[[1,3,2,1],[2,2,3,0],[0,3,2,1],[0,1,2,1]],[[2,2,2,1],[2,2,3,0],[0,3,2,1],[0,1,2,1]],[[1,2,2,1],[3,2,3,0],[0,3,2,0],[1,2,1,1]],[[1,2,3,1],[2,2,3,0],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[2,2,3,0],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[2,2,3,0],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[3,2,3,0],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[2,2,3,0],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,2,3,0],[0,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,2,3,0],[0,3,2,0],[1,1,2,1]],[[1,2,2,1],[2,2,4,0],[0,3,1,2],[0,2,2,0]],[[1,2,2,2],[2,2,3,0],[0,3,1,2],[0,2,2,0]],[[1,2,3,1],[2,2,3,0],[0,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,2,3,0],[0,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,2,3,0],[0,3,1,2],[0,2,2,0]],[[1,2,2,1],[3,2,3,0],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[2,2,3,0],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,2,3,0],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[2,2,3,0],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[2,2,4,0],[0,3,1,1],[0,2,2,1]],[[1,2,2,2],[2,2,3,0],[0,3,1,1],[0,2,2,1]],[[1,2,3,1],[2,2,3,0],[0,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,2,3,0],[0,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,2,3,0],[0,3,1,1],[0,2,2,1]],[[1,2,2,1],[3,2,3,0],[0,3,1,0],[1,2,2,1]],[[1,2,3,1],[2,2,3,0],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[2,2,3,0],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[2,2,3,0],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[2,2,4,0],[0,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,3,0],[0,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,2,3,0],[0,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,3,0],[0,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,3,0],[0,3,0,2],[0,2,2,1]],[[0,1,3,0],[2,3,3,2],[2,2,3,0],[0,1,2,0]],[[0,1,2,0],[3,3,3,2],[2,2,3,0],[0,1,2,0]],[[0,1,2,0],[2,4,3,2],[2,2,3,0],[0,1,2,0]],[[0,1,2,0],[2,3,4,2],[2,2,3,0],[0,1,2,0]],[[0,1,2,0],[2,3,3,2],[3,2,3,0],[0,1,2,0]],[[0,1,3,0],[2,3,3,2],[2,2,3,0],[0,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,2,3,0],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,2,3,0],[0,2,1,0]],[[0,1,2,0],[2,3,4,2],[2,2,3,0],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,2,4,0],[0,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,2,3,0],[0,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,2,3,0],[0,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,2,3,0],[0,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,2,3,0],[0,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,2,4,0],[0,2,3,2],[1,1,0,1]],[[0,1,3,0],[2,3,3,2],[2,2,3,0],[1,0,2,0]],[[0,1,2,0],[3,3,3,2],[2,2,3,0],[1,0,2,0]],[[0,1,2,0],[2,4,3,2],[2,2,3,0],[1,0,2,0]],[[0,1,2,0],[2,3,4,2],[2,2,3,0],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[3,2,3,0],[1,0,2,0]],[[0,1,2,0],[2,3,3,2],[2,2,3,0],[2,0,2,0]],[[0,1,3,0],[2,3,3,2],[2,2,3,0],[1,1,1,0]],[[0,1,2,0],[3,3,3,2],[2,2,3,0],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[2,2,3,0],[1,1,1,0]],[[0,1,2,0],[2,3,4,2],[2,2,3,0],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[3,2,3,0],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[2,2,3,0],[2,1,1,0]],[[1,2,2,2],[2,2,3,0],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,2,3,0],[0,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,2,3,0],[0,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,2,3,0],[0,2,3,2],[1,1,0,1]],[[0,1,3,0],[2,3,3,2],[2,2,3,0],[1,2,0,0]],[[0,1,2,0],[3,3,3,2],[2,2,3,0],[1,2,0,0]],[[0,1,2,0],[2,4,3,2],[2,2,3,0],[1,2,0,0]],[[0,1,2,0],[2,3,4,2],[2,2,3,0],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[3,2,3,0],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[2,2,3,0],[2,2,0,0]],[[1,2,2,1],[2,2,3,0],[0,2,3,3],[1,0,2,0]],[[1,2,2,1],[2,2,3,0],[0,2,4,2],[1,0,2,0]],[[1,2,2,1],[2,2,4,0],[0,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,3,0],[0,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,3,0],[0,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,3,0],[0,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,3,0],[0,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,3,0],[0,2,3,2],[1,0,1,2]],[[1,2,2,1],[2,2,3,0],[0,2,3,3],[1,0,1,1]],[[1,2,2,1],[2,2,3,0],[0,2,4,2],[1,0,1,1]],[[1,2,2,1],[2,2,4,0],[0,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,3,0],[0,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,3,0],[0,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,3,0],[0,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,3,0],[0,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,2,3,0],[0,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,2,3,0],[0,2,4,2],[0,2,1,0]],[[1,2,2,1],[2,2,4,0],[0,2,3,2],[0,2,1,0]],[[0,1,3,0],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[0,1,2,0],[3,3,3,2],[2,2,3,1],[0,2,0,0]],[[0,1,2,0],[2,4,3,2],[2,2,3,1],[0,2,0,0]],[[0,1,2,0],[2,3,4,2],[2,2,3,1],[0,2,0,0]],[[0,1,2,0],[2,3,3,3],[2,2,3,1],[0,2,0,0]],[[0,1,2,0],[2,3,3,2],[3,2,3,1],[0,2,0,0]],[[1,2,2,2],[2,2,3,0],[0,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,2,3,0],[0,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,3,0],[0,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,3,0],[0,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,3,0],[0,2,3,2],[0,2,0,2]],[[1,2,2,1],[2,2,3,0],[0,2,3,3],[0,2,0,1]],[[1,2,2,1],[2,2,3,0],[0,2,4,2],[0,2,0,1]],[[1,2,2,1],[2,2,4,0],[0,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,2,3,0],[0,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,2,3,0],[0,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,3,0],[0,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,3,0],[0,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,2,3,0],[0,2,3,2],[0,1,3,0]],[[1,2,2,1],[2,2,3,0],[0,2,3,3],[0,1,2,0]],[[1,2,2,1],[2,2,3,0],[0,2,4,2],[0,1,2,0]],[[1,2,2,1],[2,2,4,0],[0,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,3,0],[0,2,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,3,0],[0,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,3,0],[0,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,3,0],[0,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,3,0],[0,2,3,2],[0,1,1,2]],[[1,2,2,1],[2,2,3,0],[0,2,3,3],[0,1,1,1]],[[1,2,2,1],[2,2,3,0],[0,2,4,2],[0,1,1,1]],[[1,2,2,1],[2,2,4,0],[0,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,3,0],[0,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,3,0],[0,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,3,0],[0,2,3,2],[0,1,1,1]],[[0,1,3,0],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[0,1,2,0],[3,3,3,2],[2,2,3,1],[1,1,0,0]],[[0,1,2,0],[2,4,3,2],[2,2,3,1],[1,1,0,0]],[[0,1,2,0],[2,3,4,2],[2,2,3,1],[1,1,0,0]],[[0,1,2,0],[2,3,3,3],[2,2,3,1],[1,1,0,0]],[[0,1,2,0],[2,3,3,2],[3,2,3,1],[1,1,0,0]],[[0,1,2,0],[2,3,3,2],[2,2,3,1],[2,1,0,0]],[[2,2,2,1],[2,2,3,0],[0,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,3,0],[0,2,3,2],[0,0,2,2]],[[1,2,2,1],[2,2,3,0],[0,2,3,3],[0,0,2,1]],[[1,2,2,1],[2,2,3,0],[0,2,4,2],[0,0,2,1]],[[1,2,2,1],[2,2,4,0],[0,2,3,2],[0,0,2,1]],[[1,2,2,2],[2,2,3,0],[0,2,3,2],[0,0,2,1]],[[1,2,3,1],[2,2,3,0],[0,2,3,2],[0,0,2,1]],[[1,3,2,1],[2,2,3,0],[0,2,3,2],[0,0,2,1]],[[2,2,2,1],[2,2,3,0],[0,2,3,2],[0,0,2,1]],[[1,2,2,1],[3,2,3,0],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[2,2,3,0],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[2,2,3,0],[0,2,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,3,0],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,3,0],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[2,2,3,0],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,3,0],[0,2,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,3,0],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,3,0],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[2,2,3,0],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[2,2,3,0],[0,2,3,1],[1,1,2,0]],[[2,2,2,1],[2,2,3,0],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[2,2,3,0],[0,2,4,1],[1,0,2,1]],[[1,2,2,1],[2,2,4,0],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[2,2,3,0],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[2,2,3,0],[0,2,3,1],[1,0,2,1]],[[1,3,2,1],[2,2,3,0],[0,2,3,1],[1,0,2,1]],[[2,2,2,1],[2,2,3,0],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[2,2,3,0],[0,2,4,1],[0,2,1,1]],[[1,2,2,1],[2,2,4,0],[0,2,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,3,0],[0,2,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,3,0],[0,2,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,3,0],[0,2,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,3,0],[0,2,3,1],[0,2,1,1]],[[1,2,2,1],[2,2,3,0],[0,2,3,1],[0,1,2,2]],[[1,2,2,1],[2,2,3,0],[0,2,3,1],[0,1,3,1]],[[1,2,2,1],[2,2,3,0],[0,2,4,1],[0,1,2,1]],[[1,2,2,1],[2,2,4,0],[0,2,3,1],[0,1,2,1]],[[1,2,2,2],[2,2,3,0],[0,2,3,1],[0,1,2,1]],[[1,2,3,1],[2,2,3,0],[0,2,3,1],[0,1,2,1]],[[1,3,2,1],[2,2,3,0],[0,2,3,1],[0,1,2,1]],[[2,2,2,1],[2,2,3,0],[0,2,3,1],[0,1,2,1]],[[1,2,2,1],[3,2,3,0],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[2,2,3,0],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[2,2,3,0],[0,2,3,0],[1,2,1,1]],[[2,2,2,1],[2,2,3,0],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,3,0],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[2,2,3,0],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[2,2,3,0],[0,2,3,0],[1,1,2,1]],[[2,2,2,1],[2,2,3,0],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[2,2,3,0],[0,2,2,2],[0,1,2,2]],[[1,2,2,1],[2,2,3,0],[0,2,2,2],[0,1,3,1]],[[1,2,2,1],[2,2,3,0],[0,2,2,3],[0,1,2,1]],[[1,2,2,1],[2,2,3,0],[0,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,2,3,0],[0,1,3,3],[0,2,2,0]],[[1,2,2,1],[2,2,3,0],[0,1,4,2],[0,2,2,0]],[[1,2,2,1],[2,2,4,0],[0,1,3,2],[0,2,2,0]],[[1,2,2,2],[2,2,3,0],[0,1,3,2],[0,2,2,0]],[[1,2,3,1],[2,2,3,0],[0,1,3,2],[0,2,2,0]],[[1,3,2,1],[2,2,3,0],[0,1,3,2],[0,2,2,0]],[[2,2,2,1],[2,2,3,0],[0,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,2,3,0],[0,1,3,2],[0,2,1,2]],[[1,2,2,1],[2,2,3,0],[0,1,3,3],[0,2,1,1]],[[1,2,2,1],[2,2,3,0],[0,1,4,2],[0,2,1,1]],[[1,2,2,1],[2,2,4,0],[0,1,3,2],[0,2,1,1]],[[1,2,2,2],[2,2,3,0],[0,1,3,2],[0,2,1,1]],[[1,2,3,1],[2,2,3,0],[0,1,3,2],[0,2,1,1]],[[1,3,2,1],[2,2,3,0],[0,1,3,2],[0,2,1,1]],[[2,2,2,1],[2,2,3,0],[0,1,3,2],[0,2,1,1]],[[1,2,2,1],[3,2,3,0],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[2,2,3,0],[0,1,3,1],[1,2,2,0]],[[1,3,2,1],[2,2,3,0],[0,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,2,3,0],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,2,3,0],[0,1,3,1],[0,2,2,2]],[[1,2,2,1],[2,2,3,0],[0,1,3,1],[0,2,3,1]],[[1,2,2,1],[2,2,3,0],[0,1,4,1],[0,2,2,1]],[[1,2,2,1],[2,2,4,0],[0,1,3,1],[0,2,2,1]],[[1,2,2,2],[2,2,3,0],[0,1,3,1],[0,2,2,1]],[[1,2,3,1],[2,2,3,0],[0,1,3,1],[0,2,2,1]],[[1,3,2,1],[2,2,3,0],[0,1,3,1],[0,2,2,1]],[[2,2,2,1],[2,2,3,0],[0,1,3,1],[0,2,2,1]],[[1,2,2,1],[3,2,3,0],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,2,3,0],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,2,3,0],[0,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,2,3,0],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[2,2,3,0],[0,1,2,2],[0,2,2,2]],[[1,2,2,1],[2,2,3,0],[0,1,2,2],[0,2,3,1]],[[1,2,2,1],[2,2,3,0],[0,1,2,3],[0,2,2,1]],[[1,2,2,1],[2,2,3,0],[0,0,3,2],[0,2,2,2]],[[1,2,2,1],[2,2,3,0],[0,0,3,2],[0,2,3,1]],[[1,2,2,1],[2,2,3,0],[0,0,3,3],[0,2,2,1]],[[1,2,2,1],[2,2,2,2],[3,3,3,0],[1,0,0,0]],[[1,2,2,1],[3,2,2,2],[2,3,3,0],[1,0,0,0]],[[1,2,2,2],[2,2,2,2],[2,3,3,0],[1,0,0,0]],[[1,2,3,1],[2,2,2,2],[2,3,3,0],[1,0,0,0]],[[1,3,2,1],[2,2,2,2],[2,3,3,0],[1,0,0,0]],[[2,2,2,1],[2,2,2,2],[2,3,3,0],[1,0,0,0]],[[1,2,2,1],[2,2,2,2],[3,3,2,0],[1,0,1,0]],[[1,2,2,1],[3,2,2,2],[2,3,2,0],[1,0,1,0]],[[1,2,2,2],[2,2,2,2],[2,3,2,0],[1,0,1,0]],[[1,2,3,1],[2,2,2,2],[2,3,2,0],[1,0,1,0]],[[1,3,2,1],[2,2,2,2],[2,3,2,0],[1,0,1,0]],[[2,2,2,1],[2,2,2,2],[2,3,2,0],[1,0,1,0]],[[1,2,2,1],[2,2,2,2],[3,3,2,0],[1,0,0,1]],[[1,2,2,1],[3,2,2,2],[2,3,2,0],[1,0,0,1]],[[1,2,2,2],[2,2,2,2],[2,3,2,0],[1,0,0,1]],[[1,2,3,1],[2,2,2,2],[2,3,2,0],[1,0,0,1]],[[1,3,2,1],[2,2,2,2],[2,3,2,0],[1,0,0,1]],[[2,2,2,1],[2,2,2,2],[2,3,2,0],[1,0,0,1]],[[0,1,2,0],[3,3,3,2],[2,3,0,0],[0,2,2,1]],[[0,1,2,0],[2,4,3,2],[2,3,0,0],[0,2,2,1]],[[0,1,2,0],[2,3,3,2],[3,3,0,0],[0,2,2,1]],[[0,1,2,0],[3,3,3,2],[2,3,0,0],[1,1,2,1]],[[0,1,2,0],[2,4,3,2],[2,3,0,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[3,3,0,0],[1,1,2,1]],[[0,1,2,0],[2,3,3,2],[2,3,0,0],[2,1,2,1]],[[0,1,2,0],[3,3,3,2],[2,3,0,0],[1,2,1,1]],[[0,1,2,0],[2,4,3,2],[2,3,0,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[3,3,0,0],[1,2,1,1]],[[0,1,2,0],[2,3,3,2],[2,3,0,0],[2,2,1,1]],[[0,1,2,0],[3,3,3,2],[2,3,0,0],[1,2,2,0]],[[0,1,2,0],[2,4,3,2],[2,3,0,0],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[3,3,0,0],[1,2,2,0]],[[0,1,2,0],[2,3,3,2],[2,3,0,0],[2,2,2,0]],[[0,1,2,0],[3,3,3,2],[2,3,0,1],[0,2,2,0]],[[0,1,2,0],[2,4,3,2],[2,3,0,1],[0,2,2,0]],[[0,1,2,0],[2,3,3,2],[3,3,0,1],[0,2,2,0]],[[0,1,2,0],[3,3,3,2],[2,3,0,1],[1,1,2,0]],[[0,1,2,0],[2,4,3,2],[2,3,0,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[3,3,0,1],[1,1,2,0]],[[0,1,2,0],[2,3,3,2],[2,3,0,1],[2,1,2,0]],[[0,1,2,0],[3,3,3,2],[2,3,0,1],[1,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,3,0,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,3,0,1],[1,2,1,0]],[[0,1,2,0],[2,3,3,2],[2,3,0,1],[2,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,3,0,2],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,3,0,2],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,3,0,2],[0,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,3,0,2],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,3,0,2],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,3,0,2],[0,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,3,0,2],[1,1,0,1]],[[0,1,2,0],[2,4,3,2],[2,3,0,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[3,3,0,2],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,3,0,2],[2,1,0,1]],[[0,1,2,0],[3,3,3,2],[2,3,0,2],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[2,3,0,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[3,3,0,2],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[2,3,0,2],[2,1,1,0]],[[0,1,2,0],[3,3,3,2],[2,3,0,2],[1,2,0,0]],[[0,1,2,0],[2,4,3,2],[2,3,0,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[3,3,0,2],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[2,3,0,2],[2,2,0,0]],[[0,1,2,0],[3,3,3,2],[2,3,1,0],[0,2,1,1]],[[0,1,2,0],[2,4,3,2],[2,3,1,0],[0,2,1,1]],[[0,1,2,0],[2,3,3,2],[3,3,1,0],[0,2,1,1]],[[0,1,2,0],[3,3,3,2],[2,3,1,0],[1,1,1,1]],[[0,1,2,0],[2,4,3,2],[2,3,1,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[3,3,1,0],[1,1,1,1]],[[0,1,2,0],[2,3,3,2],[2,3,1,0],[2,1,1,1]],[[0,1,2,0],[3,3,3,2],[2,3,1,0],[1,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,3,1,0],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,3,1,0],[1,2,0,1]],[[0,1,2,0],[2,3,3,2],[2,3,1,0],[2,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,3,1,1],[0,2,0,1]],[[0,1,2,0],[2,4,3,2],[2,3,1,1],[0,2,0,1]],[[0,1,2,0],[2,3,3,2],[3,3,1,1],[0,2,0,1]],[[0,1,2,0],[3,3,3,2],[2,3,1,1],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,3,1,1],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,3,1,1],[0,2,1,0]],[[1,2,2,1],[2,2,2,2],[2,3,1,0],[2,2,0,0]],[[1,2,2,1],[2,2,2,2],[3,3,1,0],[1,2,0,0]],[[1,2,2,1],[3,2,2,2],[2,3,1,0],[1,2,0,0]],[[1,2,2,2],[2,2,2,2],[2,3,1,0],[1,2,0,0]],[[1,2,3,1],[2,2,2,2],[2,3,1,0],[1,2,0,0]],[[1,3,2,1],[2,2,2,2],[2,3,1,0],[1,2,0,0]],[[2,2,2,1],[2,2,2,2],[2,3,1,0],[1,2,0,0]],[[0,1,2,0],[3,3,3,2],[2,3,1,1],[1,1,0,1]],[[0,1,2,0],[2,4,3,2],[2,3,1,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[3,3,1,1],[1,1,0,1]],[[0,1,2,0],[2,3,3,2],[2,3,1,1],[2,1,0,1]],[[0,1,2,0],[3,3,3,2],[2,3,1,1],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[2,3,1,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[3,3,1,1],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[2,3,1,1],[2,1,1,0]],[[0,1,2,0],[3,3,3,2],[2,3,1,1],[1,2,0,0]],[[0,1,2,0],[2,4,3,2],[2,3,1,1],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[3,3,1,1],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[2,3,1,1],[2,2,0,0]],[[1,2,2,1],[2,2,2,2],[2,3,1,0],[2,1,1,0]],[[1,2,2,1],[2,2,2,2],[3,3,1,0],[1,1,1,0]],[[1,2,2,1],[3,2,2,2],[2,3,1,0],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[2,3,1,0],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[2,3,1,0],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[2,3,1,0],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[2,3,1,0],[1,1,1,0]],[[1,2,2,1],[2,2,2,2],[2,3,1,0],[2,1,0,1]],[[1,2,2,1],[2,2,2,2],[3,3,1,0],[1,1,0,1]],[[1,2,2,1],[3,2,2,2],[2,3,1,0],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[2,3,1,0],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[2,3,1,0],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[2,3,1,0],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[2,3,1,0],[1,1,0,1]],[[1,2,2,1],[2,2,2,2],[3,3,1,0],[0,2,1,0]],[[1,2,2,1],[3,2,2,2],[2,3,1,0],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[2,3,1,0],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[2,3,1,0],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[2,3,1,0],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[2,3,1,0],[0,2,1,0]],[[1,2,2,1],[2,2,2,2],[3,3,1,0],[0,2,0,1]],[[1,2,2,1],[3,2,2,2],[2,3,1,0],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[2,3,1,0],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[2,3,1,0],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[2,3,1,0],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[2,3,1,0],[0,2,0,1]],[[0,1,3,0],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[0,1,2,0],[3,3,3,2],[2,3,1,2],[1,0,0,1]],[[0,1,2,0],[2,4,3,2],[2,3,1,2],[1,0,0,1]],[[0,1,2,0],[2,3,4,2],[2,3,1,2],[1,0,0,1]],[[0,1,2,0],[2,3,3,3],[2,3,1,2],[1,0,0,1]],[[0,1,2,0],[2,3,3,2],[3,3,1,2],[1,0,0,1]],[[0,1,2,0],[2,3,3,2],[2,3,1,3],[1,0,0,1]],[[0,1,3,0],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[0,1,2,0],[3,3,3,2],[2,3,1,2],[1,0,1,0]],[[0,1,2,0],[2,4,3,2],[2,3,1,2],[1,0,1,0]],[[0,1,2,0],[2,3,4,2],[2,3,1,2],[1,0,1,0]],[[0,1,2,0],[2,3,3,3],[2,3,1,2],[1,0,1,0]],[[0,1,2,0],[2,3,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,2,2,2],[3,3,0,2],[1,0,1,0]],[[1,2,2,1],[2,2,2,3],[2,3,0,2],[1,0,1,0]],[[1,2,2,1],[3,2,2,2],[2,3,0,2],[1,0,1,0]],[[1,2,2,2],[2,2,2,2],[2,3,0,2],[1,0,1,0]],[[1,2,3,1],[2,2,2,2],[2,3,0,2],[1,0,1,0]],[[1,3,2,1],[2,2,2,2],[2,3,0,2],[1,0,1,0]],[[2,2,2,1],[2,2,2,2],[2,3,0,2],[1,0,1,0]],[[1,2,2,1],[2,2,2,2],[3,3,0,2],[1,0,0,1]],[[1,2,2,1],[2,2,2,3],[2,3,0,2],[1,0,0,1]],[[1,2,2,1],[3,2,2,2],[2,3,0,2],[1,0,0,1]],[[1,2,2,2],[2,2,2,2],[2,3,0,2],[1,0,0,1]],[[1,2,3,1],[2,2,2,2],[2,3,0,2],[1,0,0,1]],[[1,3,2,1],[2,2,2,2],[2,3,0,2],[1,0,0,1]],[[2,2,2,1],[2,2,2,2],[2,3,0,2],[1,0,0,1]],[[1,2,2,1],[2,2,2,2],[2,3,0,0],[2,2,1,0]],[[1,2,2,1],[2,2,2,2],[3,3,0,0],[1,2,1,0]],[[1,2,2,1],[3,2,2,2],[2,3,0,0],[1,2,1,0]],[[1,2,2,2],[2,2,2,2],[2,3,0,0],[1,2,1,0]],[[1,2,3,1],[2,2,2,2],[2,3,0,0],[1,2,1,0]],[[0,1,2,0],[3,3,3,2],[2,3,2,0],[0,2,1,0]],[[0,1,2,0],[2,4,3,2],[2,3,2,0],[0,2,1,0]],[[0,1,2,0],[2,3,3,2],[3,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[2,3,0,0],[1,2,1,0]],[[2,2,2,1],[2,2,2,2],[2,3,0,0],[1,2,1,0]],[[1,2,2,1],[2,2,2,2],[2,3,0,0],[2,1,2,0]],[[0,1,3,0],[2,3,3,2],[2,3,2,0],[1,0,1,1]],[[0,1,2,0],[3,3,3,2],[2,3,2,0],[1,0,1,1]],[[0,1,2,0],[2,4,3,2],[2,3,2,0],[1,0,1,1]],[[0,1,2,0],[2,3,4,2],[2,3,2,0],[1,0,1,1]],[[0,1,2,0],[2,3,3,2],[3,3,2,0],[1,0,1,1]],[[0,1,2,0],[3,3,3,2],[2,3,2,0],[1,1,1,0]],[[0,1,2,0],[2,4,3,2],[2,3,2,0],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[3,3,2,0],[1,1,1,0]],[[0,1,2,0],[2,3,3,2],[2,3,2,0],[2,1,1,0]],[[1,2,2,1],[2,2,2,2],[3,3,0,0],[1,1,2,0]],[[1,2,2,1],[3,2,2,2],[2,3,0,0],[1,1,2,0]],[[1,2,2,2],[2,2,2,2],[2,3,0,0],[1,1,2,0]],[[1,2,3,1],[2,2,2,2],[2,3,0,0],[1,1,2,0]],[[1,3,2,1],[2,2,2,2],[2,3,0,0],[1,1,2,0]],[[2,2,2,1],[2,2,2,2],[2,3,0,0],[1,1,2,0]],[[0,1,2,0],[3,3,3,2],[2,3,2,0],[1,2,0,0]],[[0,1,2,0],[2,4,3,2],[2,3,2,0],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[3,3,2,0],[1,2,0,0]],[[0,1,2,0],[2,3,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[2,2,2,2],[3,3,0,0],[0,2,2,0]],[[1,2,2,1],[3,2,2,2],[2,3,0,0],[0,2,2,0]],[[1,2,2,2],[2,2,2,2],[2,3,0,0],[0,2,2,0]],[[1,2,3,1],[2,2,2,2],[2,3,0,0],[0,2,2,0]],[[1,3,2,1],[2,2,2,2],[2,3,0,0],[0,2,2,0]],[[2,2,2,1],[2,2,2,2],[2,3,0,0],[0,2,2,0]],[[1,2,2,1],[2,2,2,2],[2,2,3,0],[2,1,0,0]],[[1,2,2,1],[2,2,2,2],[3,2,3,0],[1,1,0,0]],[[1,2,2,1],[3,2,2,2],[2,2,3,0],[1,1,0,0]],[[1,2,2,2],[2,2,2,2],[2,2,3,0],[1,1,0,0]],[[1,2,3,1],[2,2,2,2],[2,2,3,0],[1,1,0,0]],[[1,3,2,1],[2,2,2,2],[2,2,3,0],[1,1,0,0]],[[2,2,2,1],[2,2,2,2],[2,2,3,0],[1,1,0,0]],[[0,1,3,0],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[0,1,2,0],[3,3,3,2],[2,3,2,1],[1,0,0,1]],[[0,1,2,0],[2,4,3,2],[2,3,2,1],[1,0,0,1]],[[0,1,2,0],[2,3,4,2],[2,3,2,1],[1,0,0,1]],[[0,1,2,0],[2,3,3,3],[2,3,2,1],[1,0,0,1]],[[0,1,2,0],[2,3,3,2],[3,3,2,1],[1,0,0,1]],[[0,1,3,0],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[0,1,2,0],[3,3,3,2],[2,3,2,1],[1,0,1,0]],[[0,1,2,0],[2,4,3,2],[2,3,2,1],[1,0,1,0]],[[0,1,2,0],[2,3,4,2],[2,3,2,1],[1,0,1,0]],[[0,1,2,0],[2,3,3,3],[2,3,2,1],[1,0,1,0]],[[0,1,2,0],[2,3,3,2],[3,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,2,2,2],[3,2,3,0],[0,2,0,0]],[[1,2,2,1],[3,2,2,2],[2,2,3,0],[0,2,0,0]],[[1,2,2,2],[2,2,2,2],[2,2,3,0],[0,2,0,0]],[[1,2,3,1],[2,2,2,2],[2,2,3,0],[0,2,0,0]],[[1,3,2,1],[2,2,2,2],[2,2,3,0],[0,2,0,0]],[[2,2,2,1],[2,2,2,2],[2,2,3,0],[0,2,0,0]],[[1,2,2,1],[2,2,2,2],[2,2,2,0],[2,2,0,0]],[[1,2,2,1],[2,2,2,2],[3,2,2,0],[1,2,0,0]],[[1,2,2,1],[3,2,2,2],[2,2,2,0],[1,2,0,0]],[[1,2,2,2],[2,2,2,2],[2,2,2,0],[1,2,0,0]],[[1,2,3,1],[2,2,2,2],[2,2,2,0],[1,2,0,0]],[[1,3,2,1],[2,2,2,2],[2,2,2,0],[1,2,0,0]],[[2,2,2,1],[2,2,2,2],[2,2,2,0],[1,2,0,0]],[[1,2,2,1],[2,2,2,2],[2,2,2,0],[2,1,1,0]],[[1,2,2,1],[2,2,2,2],[3,2,2,0],[1,1,1,0]],[[1,2,2,1],[3,2,2,2],[2,2,2,0],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[2,2,2,0],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[2,2,2,0],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[2,2,2,0],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[2,2,2,0],[1,1,1,0]],[[1,2,2,1],[2,2,2,2],[2,2,2,0],[2,1,0,1]],[[1,2,2,1],[2,2,2,2],[3,2,2,0],[1,1,0,1]],[[1,2,2,1],[3,2,2,2],[2,2,2,0],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[2,2,2,0],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[2,2,2,0],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[2,2,2,0],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[2,2,2,0],[1,1,0,1]],[[1,2,2,1],[2,2,2,2],[2,2,2,0],[2,0,2,0]],[[1,2,2,1],[2,2,2,2],[3,2,2,0],[1,0,2,0]],[[1,2,2,1],[3,2,2,2],[2,2,2,0],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[2,2,2,0],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[2,2,2,0],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[2,2,2,0],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[2,2,2,0],[1,0,2,0]],[[1,2,2,1],[2,2,2,2],[3,2,2,0],[1,0,1,1]],[[1,2,2,1],[3,2,2,2],[2,2,2,0],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[2,2,2,0],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[2,2,2,0],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[2,2,2,0],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[2,2,2,0],[1,0,1,1]],[[1,2,2,1],[2,2,2,2],[3,2,2,0],[0,2,1,0]],[[1,2,2,1],[3,2,2,2],[2,2,2,0],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[2,2,2,0],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[2,2,2,0],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[2,2,2,0],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[2,2,2,0],[0,2,1,0]],[[1,2,2,1],[2,2,2,2],[3,2,2,0],[0,2,0,1]],[[1,2,2,1],[3,2,2,2],[2,2,2,0],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[2,2,2,0],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[2,2,2,0],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[2,2,2,0],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[2,2,2,0],[0,2,0,1]],[[1,2,2,1],[2,2,2,2],[3,2,2,0],[0,1,2,0]],[[1,2,2,1],[3,2,2,2],[2,2,2,0],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[2,2,2,0],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[2,2,2,0],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[2,2,2,0],[0,1,2,0]],[[2,2,2,1],[2,2,2,2],[2,2,2,0],[0,1,2,0]],[[1,2,2,1],[3,2,2,2],[2,2,2,0],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[2,2,2,0],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[2,2,2,0],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[2,2,2,0],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[2,2,2,0],[0,1,1,1]],[[1,2,2,1],[2,2,2,2],[2,2,1,0],[2,1,2,0]],[[1,2,2,1],[2,2,2,2],[3,2,1,0],[1,1,2,0]],[[1,2,2,1],[3,2,2,2],[2,2,1,0],[1,1,2,0]],[[1,2,2,2],[2,2,2,2],[2,2,1,0],[1,1,2,0]],[[1,2,3,1],[2,2,2,2],[2,2,1,0],[1,1,2,0]],[[1,3,2,1],[2,2,2,2],[2,2,1,0],[1,1,2,0]],[[2,2,2,1],[2,2,2,2],[2,2,1,0],[1,1,2,0]],[[0,1,3,0],[2,3,3,2],[2,3,3,0],[1,0,1,0]],[[0,1,2,0],[3,3,3,2],[2,3,3,0],[1,0,1,0]],[[0,1,2,0],[2,4,3,2],[2,3,3,0],[1,0,1,0]],[[0,1,2,0],[2,3,4,2],[2,3,3,0],[1,0,1,0]],[[0,1,2,0],[2,3,3,2],[3,3,3,0],[1,0,1,0]],[[1,2,2,1],[2,2,2,2],[3,2,1,0],[0,2,2,0]],[[1,2,2,1],[3,2,2,2],[2,2,1,0],[0,2,2,0]],[[1,2,2,2],[2,2,2,2],[2,2,1,0],[0,2,2,0]],[[1,2,3,1],[2,2,2,2],[2,2,1,0],[0,2,2,0]],[[1,3,2,1],[2,2,2,2],[2,2,1,0],[0,2,2,0]],[[2,2,2,1],[2,2,2,2],[2,2,1,0],[0,2,2,0]],[[1,2,2,1],[2,2,2,2],[2,2,0,2],[2,2,0,0]],[[1,2,2,1],[2,2,2,2],[3,2,0,2],[1,2,0,0]],[[1,2,2,1],[2,2,2,3],[2,2,0,2],[1,2,0,0]],[[1,2,2,1],[3,2,2,2],[2,2,0,2],[1,2,0,0]],[[1,2,2,2],[2,2,2,2],[2,2,0,2],[1,2,0,0]],[[1,2,3,1],[2,2,2,2],[2,2,0,2],[1,2,0,0]],[[1,3,2,1],[2,2,2,2],[2,2,0,2],[1,2,0,0]],[[2,2,2,1],[2,2,2,2],[2,2,0,2],[1,2,0,0]],[[1,2,2,1],[2,2,2,2],[2,2,0,2],[2,1,1,0]],[[1,2,2,1],[2,2,2,2],[3,2,0,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,3],[2,2,0,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,2],[2,2,0,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[2,2,0,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[2,2,0,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[2,2,0,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[2,2,0,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,2],[2,2,0,2],[2,1,0,1]],[[1,2,2,1],[2,2,2,2],[3,2,0,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,3],[2,2,0,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,2],[2,2,0,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[2,2,0,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[2,2,0,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[2,2,0,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[2,2,0,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,2],[3,2,0,2],[1,0,2,0]],[[1,2,2,1],[2,2,2,3],[2,2,0,2],[1,0,2,0]],[[1,2,2,1],[3,2,2,2],[2,2,0,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[2,2,0,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[2,2,0,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[2,2,0,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[2,2,0,2],[1,0,2,0]],[[1,2,2,1],[2,2,2,2],[3,2,0,2],[1,0,1,1]],[[1,2,2,1],[2,2,2,3],[2,2,0,2],[1,0,1,1]],[[1,2,2,1],[3,2,2,2],[2,2,0,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[2,2,0,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[2,2,0,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[2,2,0,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[2,2,0,2],[1,0,1,1]],[[1,2,2,1],[2,2,2,2],[3,2,0,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,3],[2,2,0,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,2],[2,2,0,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[2,2,0,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[2,2,0,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[2,2,0,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[2,2,0,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,2],[3,2,0,2],[0,2,0,1]],[[1,2,2,1],[2,2,2,3],[2,2,0,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,2],[2,2,0,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[2,2,0,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[2,2,0,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[2,2,0,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[2,2,0,2],[0,2,0,1]],[[1,2,2,1],[2,2,2,3],[2,2,0,2],[0,1,2,0]],[[1,2,2,1],[3,2,2,2],[2,2,0,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[2,2,0,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[2,2,0,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[2,2,0,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,2],[2,2,0,2],[0,1,2,0]],[[1,2,2,1],[2,2,2,3],[2,2,0,2],[0,1,1,1]],[[1,2,2,1],[3,2,2,2],[2,2,0,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[2,2,0,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[2,2,0,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[2,2,0,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[2,2,0,2],[0,1,1,1]],[[0,1,3,0],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[0,1,2,0],[3,3,3,2],[2,3,3,1],[1,0,0,0]],[[0,1,2,0],[2,4,3,2],[2,3,3,1],[1,0,0,0]],[[0,1,2,0],[2,3,4,2],[2,3,3,1],[1,0,0,0]],[[0,1,2,0],[2,3,3,3],[2,3,3,1],[1,0,0,0]],[[0,1,2,0],[2,3,3,2],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[2,2,2,2],[2,2,0,0],[1,3,2,0]],[[1,2,2,1],[2,2,2,2],[2,2,0,0],[2,2,2,0]],[[1,2,2,1],[2,2,2,2],[3,2,0,0],[1,2,2,0]],[[1,2,2,1],[3,2,2,2],[2,2,0,0],[1,2,2,0]],[[1,2,2,2],[2,2,2,2],[2,2,0,0],[1,2,2,0]],[[1,2,3,1],[2,2,2,2],[2,2,0,0],[1,2,2,0]],[[1,3,2,1],[2,2,2,2],[2,2,0,0],[1,2,2,0]],[[2,2,2,1],[2,2,2,2],[2,2,0,0],[1,2,2,0]],[[1,2,2,1],[2,2,2,2],[2,1,3,0],[2,1,1,0]],[[1,2,2,1],[2,2,2,2],[3,1,3,0],[1,1,1,0]],[[1,2,2,1],[3,2,2,2],[2,1,3,0],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[2,1,3,0],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[2,1,3,0],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[2,1,3,0],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[2,1,3,0],[1,1,1,0]],[[1,2,2,1],[2,2,2,2],[2,1,3,0],[2,1,0,1]],[[1,2,2,1],[2,2,2,2],[3,1,3,0],[1,1,0,1]],[[1,2,2,1],[3,2,2,2],[2,1,3,0],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[2,1,3,0],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[2,1,3,0],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[2,1,3,0],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[2,1,3,0],[1,1,0,1]],[[1,2,2,1],[2,2,2,2],[2,1,3,0],[2,0,2,0]],[[1,2,2,1],[2,2,2,2],[3,1,3,0],[1,0,2,0]],[[1,2,2,1],[3,2,2,2],[2,1,3,0],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[2,1,3,0],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[2,1,3,0],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[2,1,3,0],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[2,1,3,0],[1,0,2,0]],[[1,2,2,1],[2,2,2,2],[3,1,3,0],[1,0,1,1]],[[1,2,2,1],[3,2,2,2],[2,1,3,0],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[2,1,3,0],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[2,1,3,0],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[2,1,3,0],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[2,1,3,0],[1,0,1,1]],[[1,2,2,1],[2,2,2,2],[3,1,3,0],[0,2,1,0]],[[1,2,2,1],[3,2,2,2],[2,1,3,0],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[2,1,3,0],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[2,1,3,0],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[2,1,3,0],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[2,1,3,0],[0,2,1,0]],[[1,2,2,1],[2,2,2,2],[3,1,3,0],[0,2,0,1]],[[1,2,2,1],[3,2,2,2],[2,1,3,0],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[2,1,3,0],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[2,1,3,0],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[2,1,3,0],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[2,1,3,0],[0,2,0,1]],[[1,2,2,1],[2,2,2,2],[3,1,3,0],[0,1,2,0]],[[1,2,2,1],[3,2,2,2],[2,1,3,0],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[2,1,3,0],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[2,1,3,0],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[2,1,3,0],[0,1,2,0]],[[2,2,2,1],[2,2,2,2],[2,1,3,0],[0,1,2,0]],[[1,2,2,1],[3,2,2,2],[2,1,3,0],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[2,1,3,0],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[2,1,3,0],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[2,1,3,0],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[2,1,3,0],[0,1,1,1]],[[1,2,2,1],[2,2,2,2],[2,1,2,0],[1,3,1,0]],[[1,2,2,1],[2,2,2,2],[2,1,2,0],[2,2,1,0]],[[1,2,2,1],[2,2,2,2],[3,1,2,0],[1,2,1,0]],[[1,2,2,1],[3,2,2,2],[2,1,2,0],[1,2,1,0]],[[1,2,2,2],[2,2,2,2],[2,1,2,0],[1,2,1,0]],[[1,2,3,1],[2,2,2,2],[2,1,2,0],[1,2,1,0]],[[1,3,2,1],[2,2,2,2],[2,1,2,0],[1,2,1,0]],[[2,2,2,1],[2,2,2,2],[2,1,2,0],[1,2,1,0]],[[1,2,2,1],[2,2,2,2],[2,1,2,0],[2,2,0,1]],[[1,2,2,1],[2,2,2,2],[3,1,2,0],[1,2,0,1]],[[1,2,2,1],[3,2,2,2],[2,1,2,0],[1,2,0,1]],[[1,2,2,2],[2,2,2,2],[2,1,2,0],[1,2,0,1]],[[1,2,3,1],[2,2,2,2],[2,1,2,0],[1,2,0,1]],[[1,3,2,1],[2,2,2,2],[2,1,2,0],[1,2,0,1]],[[2,2,2,1],[2,2,2,2],[2,1,2,0],[1,2,0,1]],[[1,2,2,1],[2,2,2,2],[2,1,1,0],[1,3,2,0]],[[1,2,2,1],[2,2,2,2],[2,1,1,0],[2,2,2,0]],[[1,2,2,1],[2,2,2,2],[3,1,1,0],[1,2,2,0]],[[1,2,2,1],[3,2,2,2],[2,1,1,0],[1,2,2,0]],[[1,2,2,2],[2,2,2,2],[2,1,1,0],[1,2,2,0]],[[1,2,3,1],[2,2,2,2],[2,1,1,0],[1,2,2,0]],[[1,3,2,1],[2,2,2,2],[2,1,1,0],[1,2,2,0]],[[2,2,2,1],[2,2,2,2],[2,1,1,0],[1,2,2,0]],[[1,2,2,1],[2,2,2,2],[2,1,0,2],[2,2,1,0]],[[1,2,2,1],[2,2,2,2],[3,1,0,2],[1,2,1,0]],[[1,2,2,1],[2,2,2,3],[2,1,0,2],[1,2,1,0]],[[1,2,2,1],[3,2,2,2],[2,1,0,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,2],[2,1,0,2],[1,2,1,0]],[[1,2,3,1],[2,2,2,2],[2,1,0,2],[1,2,1,0]],[[1,3,2,1],[2,2,2,2],[2,1,0,2],[1,2,1,0]],[[0,1,2,2],[0,0,3,2],[2,1,3,2],[1,2,2,1]],[[0,1,2,1],[0,0,3,3],[2,1,3,2],[1,2,2,1]],[[0,1,2,1],[0,0,3,2],[2,1,3,3],[1,2,2,1]],[[0,1,2,1],[0,0,3,2],[2,1,3,2],[1,2,3,1]],[[0,1,2,1],[0,0,3,2],[2,1,3,2],[1,2,2,2]],[[0,1,2,2],[0,0,3,2],[2,2,2,2],[1,2,2,1]],[[0,1,2,1],[0,0,3,3],[2,2,2,2],[1,2,2,1]],[[0,1,2,1],[0,0,3,2],[2,2,2,3],[1,2,2,1]],[[0,1,2,1],[0,0,3,2],[2,2,2,2],[2,2,2,1]],[[0,1,2,1],[0,0,3,2],[2,2,2,2],[1,3,2,1]],[[0,1,2,1],[0,0,3,2],[2,2,2,2],[1,2,3,1]],[[0,1,2,1],[0,0,3,2],[2,2,2,2],[1,2,2,2]],[[0,1,2,1],[0,0,3,2],[2,2,4,1],[1,2,2,1]],[[0,1,2,1],[0,0,3,2],[2,2,3,1],[2,2,2,1]],[[0,1,2,1],[0,0,3,2],[2,2,3,1],[1,3,2,1]],[[0,1,2,1],[0,0,3,2],[2,2,3,1],[1,2,3,1]],[[0,1,2,1],[0,0,3,2],[2,2,3,1],[1,2,2,2]],[[0,1,2,2],[0,0,3,2],[2,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,0,3,3],[2,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,0,3,2],[2,2,4,2],[1,2,1,1]],[[0,1,2,1],[0,0,3,2],[2,2,3,3],[1,2,1,1]],[[0,1,2,1],[0,0,3,2],[2,2,3,2],[1,2,1,2]],[[0,1,2,2],[0,0,3,2],[2,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,0,3,3],[2,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,0,3,2],[2,2,4,2],[1,2,2,0]],[[0,1,2,1],[0,0,3,2],[2,2,3,3],[1,2,2,0]],[[0,1,2,1],[0,0,3,2],[2,2,3,2],[2,2,2,0]],[[0,1,2,1],[0,0,3,2],[2,2,3,2],[1,3,2,0]],[[0,1,2,1],[0,0,3,2],[2,2,3,2],[1,2,3,0]],[[0,1,2,2],[0,0,3,2],[2,3,2,2],[1,1,2,1]],[[0,1,2,1],[0,0,3,3],[2,3,2,2],[1,1,2,1]],[[0,1,2,1],[0,0,3,2],[2,3,2,3],[1,1,2,1]],[[0,1,2,1],[0,0,3,2],[2,3,2,2],[1,1,3,1]],[[0,1,2,1],[0,0,3,2],[2,3,2,2],[1,1,2,2]],[[0,1,2,1],[0,0,3,2],[2,3,4,1],[1,1,2,1]],[[0,1,2,1],[0,0,3,2],[2,3,3,1],[1,1,3,1]],[[0,1,2,1],[0,0,3,2],[2,3,3,1],[1,1,2,2]],[[0,1,2,2],[0,0,3,2],[2,3,3,2],[1,0,2,1]],[[0,1,2,1],[0,0,3,3],[2,3,3,2],[1,0,2,1]],[[0,1,2,1],[0,0,3,2],[2,3,4,2],[1,0,2,1]],[[0,1,2,1],[0,0,3,2],[2,3,3,3],[1,0,2,1]],[[0,1,2,1],[0,0,3,2],[2,3,3,2],[1,0,2,2]],[[0,1,2,2],[0,0,3,2],[2,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,0,3,3],[2,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,0,3,2],[2,3,4,2],[1,1,1,1]],[[0,1,2,1],[0,0,3,2],[2,3,3,3],[1,1,1,1]],[[0,1,2,1],[0,0,3,2],[2,3,3,2],[1,1,1,2]],[[0,1,2,2],[0,0,3,2],[2,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,0,3,3],[2,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,0,3,2],[2,3,4,2],[1,1,2,0]],[[0,1,2,1],[0,0,3,2],[2,3,3,3],[1,1,2,0]],[[0,1,2,1],[0,0,3,2],[2,3,3,2],[1,1,3,0]],[[0,1,2,2],[0,0,3,2],[2,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,0,3,3],[2,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,0,3,2],[2,3,4,2],[1,2,0,1]],[[0,1,2,1],[0,0,3,2],[2,3,3,3],[1,2,0,1]],[[0,1,2,1],[0,0,3,2],[2,3,3,2],[1,2,0,2]],[[0,1,2,2],[0,0,3,2],[2,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,0,3,3],[2,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,0,3,2],[2,3,4,2],[1,2,1,0]],[[0,1,2,1],[0,0,3,2],[2,3,3,3],[1,2,1,0]],[[2,2,2,1],[2,2,2,2],[2,1,0,2],[1,2,1,0]],[[1,2,2,1],[2,2,2,2],[2,1,0,2],[2,2,0,1]],[[1,2,2,1],[2,2,2,2],[3,1,0,2],[1,2,0,1]],[[1,2,2,1],[2,2,2,3],[2,1,0,2],[1,2,0,1]],[[1,2,2,1],[3,2,2,2],[2,1,0,2],[1,2,0,1]],[[1,2,2,2],[2,2,2,2],[2,1,0,2],[1,2,0,1]],[[1,2,3,1],[2,2,2,2],[2,1,0,2],[1,2,0,1]],[[1,3,2,1],[2,2,2,2],[2,1,0,2],[1,2,0,1]],[[0,1,2,1],[0,1,0,2],[2,3,3,3],[1,2,2,1]],[[0,1,2,1],[0,1,0,2],[2,3,3,2],[2,2,2,1]],[[0,1,2,1],[0,1,0,2],[2,3,3,2],[1,3,2,1]],[[0,1,2,1],[0,1,0,2],[2,3,3,2],[1,2,3,1]],[[0,1,2,1],[0,1,0,2],[2,3,3,2],[1,2,2,2]],[[0,1,2,2],[0,1,1,2],[2,3,2,2],[1,2,2,1]],[[0,1,2,1],[0,1,1,3],[2,3,2,2],[1,2,2,1]],[[0,1,2,1],[0,1,1,2],[2,3,2,3],[1,2,2,1]],[[0,1,2,1],[0,1,1,2],[2,3,2,2],[2,2,2,1]],[[0,1,2,1],[0,1,1,2],[2,3,2,2],[1,3,2,1]],[[0,1,2,1],[0,1,1,2],[2,3,2,2],[1,2,3,1]],[[0,1,2,1],[0,1,1,2],[2,3,2,2],[1,2,2,2]],[[0,1,2,1],[0,1,1,2],[2,3,4,1],[1,2,2,1]],[[0,1,2,1],[0,1,1,2],[2,3,3,1],[2,2,2,1]],[[0,1,2,1],[0,1,1,2],[2,3,3,1],[1,3,2,1]],[[0,1,2,1],[0,1,1,2],[2,3,3,1],[1,2,3,1]],[[0,1,2,1],[0,1,1,2],[2,3,3,1],[1,2,2,2]],[[0,1,2,2],[0,1,1,2],[2,3,3,2],[1,2,1,1]],[[0,1,2,1],[0,1,1,3],[2,3,3,2],[1,2,1,1]],[[0,1,2,1],[0,1,1,2],[2,3,4,2],[1,2,1,1]],[[0,1,2,1],[0,1,1,2],[2,3,3,3],[1,2,1,1]],[[0,1,2,1],[0,1,1,2],[2,3,3,2],[1,2,1,2]],[[0,1,2,2],[0,1,1,2],[2,3,3,2],[1,2,2,0]],[[0,1,2,1],[0,1,1,3],[2,3,3,2],[1,2,2,0]],[[0,1,2,1],[0,1,1,2],[2,3,4,2],[1,2,2,0]],[[0,1,2,1],[0,1,1,2],[2,3,3,3],[1,2,2,0]],[[0,1,2,1],[0,1,1,2],[2,3,3,2],[2,2,2,0]],[[0,1,2,1],[0,1,1,2],[2,3,3,2],[1,3,2,0]],[[0,1,2,1],[0,1,1,2],[2,3,3,2],[1,2,3,0]],[[2,2,2,1],[2,2,2,2],[2,1,0,2],[1,2,0,1]],[[0,1,2,1],[0,1,3,0],[2,3,2,3],[1,2,2,1]],[[0,1,2,1],[0,1,3,0],[2,3,2,2],[2,2,2,1]],[[0,1,2,1],[0,1,3,0],[2,3,2,2],[1,3,2,1]],[[0,1,2,1],[0,1,3,0],[2,3,2,2],[1,2,3,1]],[[0,1,2,1],[0,1,3,0],[2,3,2,2],[1,2,2,2]],[[0,1,2,1],[0,1,3,0],[2,3,4,1],[1,2,2,1]],[[0,1,2,1],[0,1,3,0],[2,3,3,1],[2,2,2,1]],[[0,1,2,1],[0,1,3,0],[2,3,3,1],[1,3,2,1]],[[0,1,2,1],[0,1,3,0],[2,3,3,1],[1,2,3,1]],[[0,1,2,1],[0,1,3,0],[2,3,3,1],[1,2,2,2]],[[0,1,2,1],[0,1,3,0],[2,3,4,2],[1,2,1,1]],[[0,1,2,1],[0,1,3,0],[2,3,3,3],[1,2,1,1]],[[0,1,2,1],[0,1,3,0],[2,3,3,2],[1,2,1,2]],[[0,1,2,1],[0,1,3,0],[2,3,4,2],[1,2,2,0]],[[0,1,2,1],[0,1,3,0],[2,3,3,3],[1,2,2,0]],[[0,1,2,1],[0,1,3,0],[2,3,3,2],[2,2,2,0]],[[0,1,2,1],[0,1,3,0],[2,3,3,2],[1,3,2,0]],[[0,1,2,1],[0,1,3,0],[2,3,3,2],[1,2,3,0]],[[0,1,2,1],[0,1,3,1],[2,3,4,0],[1,2,2,1]],[[0,1,2,1],[0,1,3,1],[2,3,3,0],[2,2,2,1]],[[0,1,2,1],[0,1,3,1],[2,3,3,0],[1,3,2,1]],[[0,1,2,1],[0,1,3,1],[2,3,3,0],[1,2,3,1]],[[0,1,2,1],[0,1,3,1],[2,3,3,0],[1,2,2,2]],[[0,1,2,1],[0,1,3,1],[2,3,4,1],[1,2,2,0]],[[0,1,2,1],[0,1,3,1],[2,3,3,1],[2,2,2,0]],[[0,1,2,1],[0,1,3,1],[2,3,3,1],[1,3,2,0]],[[0,1,2,1],[0,1,3,1],[2,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,2,2,2],[2,0,3,3],[1,0,0,1]],[[1,2,2,1],[2,2,2,3],[2,0,3,2],[1,0,0,1]],[[1,2,2,1],[3,2,2,2],[2,0,3,2],[1,0,0,1]],[[0,1,2,1],[0,2,0,2],[2,2,3,3],[1,2,2,1]],[[0,1,2,1],[0,2,0,2],[2,2,3,2],[2,2,2,1]],[[0,1,2,1],[0,2,0,2],[2,2,3,2],[1,3,2,1]],[[0,1,2,1],[0,2,0,2],[2,2,3,2],[1,2,3,1]],[[0,1,2,1],[0,2,0,2],[2,2,3,2],[1,2,2,2]],[[0,1,2,1],[0,2,0,2],[2,3,3,3],[1,1,2,1]],[[0,1,2,1],[0,2,0,2],[2,3,3,2],[1,1,3,1]],[[0,1,2,1],[0,2,0,2],[2,3,3,2],[1,1,2,2]],[[0,1,2,2],[0,2,1,2],[2,1,3,2],[1,2,2,1]],[[0,1,2,1],[0,2,1,3],[2,1,3,2],[1,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,1,3,3],[1,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,1,3,2],[1,2,3,1]],[[0,1,2,1],[0,2,1,2],[2,1,3,2],[1,2,2,2]],[[0,1,3,1],[0,2,1,2],[2,2,2,2],[1,2,2,1]],[[0,1,2,2],[0,2,1,2],[2,2,2,2],[1,2,2,1]],[[0,1,2,1],[0,2,1,3],[2,2,2,2],[1,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,2,2,3],[1,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,2,2,2],[2,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,2,2,2],[1,3,2,1]],[[0,1,2,1],[0,2,1,2],[2,2,2,2],[1,2,3,1]],[[0,1,2,1],[0,2,1,2],[2,2,2,2],[1,2,2,2]],[[0,1,2,1],[0,2,1,2],[2,2,4,1],[1,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,2,3,1],[2,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,2,3,1],[1,3,2,1]],[[0,1,2,1],[0,2,1,2],[2,2,3,1],[1,2,3,1]],[[0,1,2,1],[0,2,1,2],[2,2,3,1],[1,2,2,2]],[[0,1,3,1],[0,2,1,2],[2,2,3,2],[1,2,1,1]],[[0,1,2,2],[0,2,1,2],[2,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,2,1,3],[2,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,2,1,2],[2,2,4,2],[1,2,1,1]],[[0,1,2,1],[0,2,1,2],[2,2,3,3],[1,2,1,1]],[[0,1,2,1],[0,2,1,2],[2,2,3,2],[1,2,1,2]],[[0,1,3,1],[0,2,1,2],[2,2,3,2],[1,2,2,0]],[[0,1,2,2],[0,2,1,2],[2,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,2,1,3],[2,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,2,1,2],[2,2,4,2],[1,2,2,0]],[[0,1,2,1],[0,2,1,2],[2,2,3,3],[1,2,2,0]],[[0,1,2,1],[0,2,1,2],[2,2,3,2],[2,2,2,0]],[[0,1,2,1],[0,2,1,2],[2,2,3,2],[1,3,2,0]],[[0,1,2,1],[0,2,1,2],[2,2,3,2],[1,2,3,0]],[[0,1,3,1],[0,2,1,2],[2,3,1,2],[1,2,2,1]],[[0,1,2,2],[0,2,1,2],[2,3,1,2],[1,2,2,1]],[[0,1,2,1],[0,2,1,3],[2,3,1,2],[1,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,4,1,2],[1,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,1,3],[1,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,1,2],[2,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,1,2],[1,3,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,1,2],[1,2,3,1]],[[0,1,2,1],[0,2,1,2],[2,3,1,2],[1,2,2,2]],[[0,1,2,1],[0,2,1,2],[2,4,2,1],[1,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,2,1],[2,2,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,2,1],[1,3,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,2,1],[1,2,3,1]],[[0,1,2,1],[0,2,1,2],[2,3,2,1],[1,2,2,2]],[[0,1,3,1],[0,2,1,2],[2,3,2,2],[1,1,2,1]],[[0,1,2,2],[0,2,1,2],[2,3,2,2],[1,1,2,1]],[[0,1,2,1],[0,2,1,3],[2,3,2,2],[1,1,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,2,3],[1,1,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,2,2],[1,1,3,1]],[[0,1,2,1],[0,2,1,2],[2,3,2,2],[1,1,2,2]],[[0,1,2,1],[0,2,1,2],[2,4,2,2],[1,2,2,0]],[[0,1,2,1],[0,2,1,2],[2,3,2,2],[2,2,2,0]],[[0,1,2,1],[0,2,1,2],[2,3,2,2],[1,3,2,0]],[[0,1,2,1],[0,2,1,2],[2,3,2,2],[1,2,3,0]],[[0,1,2,1],[0,2,1,2],[2,4,3,1],[1,1,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,4,1],[1,1,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,1],[1,1,3,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,1],[1,1,2,2]],[[0,1,2,1],[0,2,1,2],[2,4,3,1],[1,2,1,1]],[[0,1,2,1],[0,2,1,2],[2,3,4,1],[1,2,1,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,1],[2,2,1,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,1],[1,3,1,1]],[[0,1,2,2],[0,2,1,2],[2,3,3,2],[1,0,2,1]],[[0,1,2,1],[0,2,1,3],[2,3,3,2],[1,0,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,4,2],[1,0,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,3],[1,0,2,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,2],[1,0,2,2]],[[0,1,3,1],[0,2,1,2],[2,3,3,2],[1,1,1,1]],[[0,1,2,2],[0,2,1,2],[2,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,2,1,3],[2,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,2,1,2],[2,4,3,2],[1,1,1,1]],[[0,1,2,1],[0,2,1,2],[2,3,4,2],[1,1,1,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,3],[1,1,1,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,2],[1,1,1,2]],[[0,1,3,1],[0,2,1,2],[2,3,3,2],[1,1,2,0]],[[0,1,2,2],[0,2,1,2],[2,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,2,1,3],[2,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,2,1,2],[2,4,3,2],[1,1,2,0]],[[0,1,2,1],[0,2,1,2],[2,3,4,2],[1,1,2,0]],[[0,1,2,1],[0,2,1,2],[2,3,3,3],[1,1,2,0]],[[0,1,2,1],[0,2,1,2],[2,3,3,2],[1,1,3,0]],[[0,1,3,1],[0,2,1,2],[2,3,3,2],[1,2,0,1]],[[0,1,2,2],[0,2,1,2],[2,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,2,1,3],[2,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,2,1,2],[2,4,3,2],[1,2,0,1]],[[0,1,2,1],[0,2,1,2],[2,3,4,2],[1,2,0,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,3],[1,2,0,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,2],[2,2,0,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,2],[1,3,0,1]],[[0,1,2,1],[0,2,1,2],[2,3,3,2],[1,2,0,2]],[[0,1,3,1],[0,2,1,2],[2,3,3,2],[1,2,1,0]],[[0,1,2,2],[0,2,1,2],[2,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,2,1,3],[2,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,2,1,2],[2,4,3,2],[1,2,1,0]],[[0,1,2,1],[0,2,1,2],[2,3,4,2],[1,2,1,0]],[[0,1,2,1],[0,2,1,2],[2,3,3,3],[1,2,1,0]],[[0,1,2,1],[0,2,1,2],[2,3,3,2],[2,2,1,0]],[[0,1,2,1],[0,2,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,2],[2,2,2,2],[2,0,3,2],[1,0,0,1]],[[1,2,3,1],[2,2,2,2],[2,0,3,2],[1,0,0,1]],[[1,3,2,1],[2,2,2,2],[2,0,3,2],[1,0,0,1]],[[2,2,2,1],[2,2,2,2],[2,0,3,2],[1,0,0,1]],[[0,1,3,1],[0,2,2,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,2],[0,2,2,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[0,2,2,3],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[0,2,2,2],[2,2,1,3],[1,2,2,1]],[[0,1,2,1],[0,2,2,2],[2,2,1,2],[2,2,2,1]],[[0,1,2,1],[0,2,2,2],[2,2,1,2],[1,3,2,1]],[[0,1,2,1],[0,2,2,2],[2,2,1,2],[1,2,3,1]],[[0,1,2,1],[0,2,2,2],[2,2,1,2],[1,2,2,2]],[[0,1,3,1],[0,2,2,2],[2,2,2,2],[1,2,1,1]],[[0,1,2,2],[0,2,2,2],[2,2,2,2],[1,2,1,1]],[[0,1,2,1],[0,2,2,3],[2,2,2,2],[1,2,1,1]],[[0,1,2,1],[0,2,2,2],[2,2,2,3],[1,2,1,1]],[[0,1,2,1],[0,2,2,2],[2,2,2,2],[1,2,1,2]],[[0,1,3,1],[0,2,2,2],[2,2,2,2],[1,2,2,0]],[[0,1,2,2],[0,2,2,2],[2,2,2,2],[1,2,2,0]],[[0,1,2,1],[0,2,2,3],[2,2,2,2],[1,2,2,0]],[[0,1,2,1],[0,2,2,2],[2,2,2,3],[1,2,2,0]],[[0,1,3,1],[0,2,2,2],[2,2,3,0],[1,2,2,1]],[[0,1,2,2],[0,2,2,2],[2,2,3,0],[1,2,2,1]],[[0,1,2,1],[0,2,2,3],[2,2,3,0],[1,2,2,1]],[[0,1,3,1],[0,2,2,2],[2,2,3,1],[1,2,1,1]],[[0,1,2,2],[0,2,2,2],[2,2,3,1],[1,2,1,1]],[[0,1,2,1],[0,2,2,3],[2,2,3,1],[1,2,1,1]],[[0,1,3,1],[0,2,2,2],[2,2,3,1],[1,2,2,0]],[[0,1,2,2],[0,2,2,2],[2,2,3,1],[1,2,2,0]],[[0,1,2,1],[0,2,2,3],[2,2,3,1],[1,2,2,0]],[[0,1,3,1],[0,2,2,2],[2,3,0,2],[1,2,2,1]],[[0,1,2,2],[0,2,2,2],[2,3,0,2],[1,2,2,1]],[[0,1,2,1],[0,2,2,3],[2,3,0,2],[1,2,2,1]],[[0,1,2,1],[0,2,2,2],[2,4,0,2],[1,2,2,1]],[[0,1,2,1],[0,2,2,2],[2,3,0,3],[1,2,2,1]],[[0,1,2,1],[0,2,2,2],[2,3,0,2],[2,2,2,1]],[[0,1,2,1],[0,2,2,2],[2,3,0,2],[1,3,2,1]],[[0,1,2,1],[0,2,2,2],[2,3,0,2],[1,2,3,1]],[[0,1,2,1],[0,2,2,2],[2,3,0,2],[1,2,2,2]],[[0,1,3,1],[0,2,2,2],[2,3,1,2],[1,1,2,1]],[[0,1,2,2],[0,2,2,2],[2,3,1,2],[1,1,2,1]],[[0,1,2,1],[0,2,2,3],[2,3,1,2],[1,1,2,1]],[[0,1,2,1],[0,2,2,2],[2,3,1,3],[1,1,2,1]],[[0,1,2,1],[0,2,2,2],[2,3,1,2],[1,1,3,1]],[[0,1,2,1],[0,2,2,2],[2,3,1,2],[1,1,2,2]],[[0,1,3,1],[0,2,2,2],[2,3,2,2],[1,1,1,1]],[[0,1,2,2],[0,2,2,2],[2,3,2,2],[1,1,1,1]],[[0,1,2,1],[0,2,2,3],[2,3,2,2],[1,1,1,1]],[[0,1,2,1],[0,2,2,2],[2,3,2,3],[1,1,1,1]],[[0,1,2,1],[0,2,2,2],[2,3,2,2],[1,1,1,2]],[[0,1,3,1],[0,2,2,2],[2,3,2,2],[1,1,2,0]],[[0,1,2,2],[0,2,2,2],[2,3,2,2],[1,1,2,0]],[[0,1,2,1],[0,2,2,3],[2,3,2,2],[1,1,2,0]],[[0,1,2,1],[0,2,2,2],[2,3,2,3],[1,1,2,0]],[[0,1,3,1],[0,2,2,2],[2,3,2,2],[1,2,0,1]],[[0,1,2,2],[0,2,2,2],[2,3,2,2],[1,2,0,1]],[[0,1,2,1],[0,2,2,3],[2,3,2,2],[1,2,0,1]],[[0,1,2,1],[0,2,2,2],[2,3,2,3],[1,2,0,1]],[[0,1,2,1],[0,2,2,2],[2,3,2,2],[1,2,0,2]],[[0,1,3,1],[0,2,2,2],[2,3,2,2],[1,2,1,0]],[[0,1,2,2],[0,2,2,2],[2,3,2,2],[1,2,1,0]],[[0,1,2,1],[0,2,2,3],[2,3,2,2],[1,2,1,0]],[[0,1,2,1],[0,2,2,2],[2,3,2,3],[1,2,1,0]],[[0,1,3,1],[0,2,2,2],[2,3,3,0],[1,1,2,1]],[[0,1,2,2],[0,2,2,2],[2,3,3,0],[1,1,2,1]],[[0,1,2,1],[0,2,2,3],[2,3,3,0],[1,1,2,1]],[[0,1,3,1],[0,2,2,2],[2,3,3,0],[1,2,1,1]],[[0,1,2,2],[0,2,2,2],[2,3,3,0],[1,2,1,1]],[[0,1,2,1],[0,2,2,3],[2,3,3,0],[1,2,1,1]],[[0,1,3,1],[0,2,2,2],[2,3,3,1],[1,1,1,1]],[[0,1,2,2],[0,2,2,2],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[0,2,2,3],[2,3,3,1],[1,1,1,1]],[[0,1,3,1],[0,2,2,2],[2,3,3,1],[1,1,2,0]],[[0,1,2,2],[0,2,2,2],[2,3,3,1],[1,1,2,0]],[[0,1,2,1],[0,2,2,3],[2,3,3,1],[1,1,2,0]],[[0,1,3,1],[0,2,2,2],[2,3,3,1],[1,2,0,1]],[[0,1,2,2],[0,2,2,2],[2,3,3,1],[1,2,0,1]],[[0,1,2,1],[0,2,2,3],[2,3,3,1],[1,2,0,1]],[[0,1,3,1],[0,2,2,2],[2,3,3,1],[1,2,1,0]],[[0,1,2,2],[0,2,2,2],[2,3,3,1],[1,2,1,0]],[[0,1,2,1],[0,2,2,3],[2,3,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,2,2],[2,0,3,3],[0,1,0,1]],[[1,2,2,1],[2,2,2,3],[2,0,3,2],[0,1,0,1]],[[1,2,2,1],[3,2,2,2],[2,0,3,2],[0,1,0,1]],[[1,2,2,2],[2,2,2,2],[2,0,3,2],[0,1,0,1]],[[1,2,3,1],[2,2,2,2],[2,0,3,2],[0,1,0,1]],[[1,3,2,1],[2,2,2,2],[2,0,3,2],[0,1,0,1]],[[2,2,2,1],[2,2,2,2],[2,0,3,2],[0,1,0,1]],[[0,1,2,1],[0,2,3,0],[2,1,3,3],[1,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,1,3,2],[1,2,3,1]],[[0,1,2,1],[0,2,3,0],[2,1,3,2],[1,2,2,2]],[[0,1,2,1],[0,2,3,0],[2,2,2,3],[1,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,2,2,2],[2,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,2,2,2],[1,3,2,1]],[[0,1,2,1],[0,2,3,0],[2,2,2,2],[1,2,3,1]],[[0,1,2,1],[0,2,3,0],[2,2,2,2],[1,2,2,2]],[[0,1,3,1],[0,2,3,0],[2,2,3,1],[1,2,2,1]],[[0,1,2,2],[0,2,3,0],[2,2,3,1],[1,2,2,1]],[[0,1,2,1],[0,2,4,0],[2,2,3,1],[1,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,2,4,1],[1,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,2,3,1],[2,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,2,3,1],[1,3,2,1]],[[0,1,2,1],[0,2,3,0],[2,2,3,1],[1,2,3,1]],[[0,1,2,1],[0,2,3,0],[2,2,3,1],[1,2,2,2]],[[0,1,3,1],[0,2,3,0],[2,2,3,2],[1,2,1,1]],[[0,1,2,2],[0,2,3,0],[2,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,2,4,0],[2,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,2,3,0],[2,2,4,2],[1,2,1,1]],[[0,1,2,1],[0,2,3,0],[2,2,3,3],[1,2,1,1]],[[0,1,2,1],[0,2,3,0],[2,2,3,2],[1,2,1,2]],[[0,1,3,1],[0,2,3,0],[2,2,3,2],[1,2,2,0]],[[0,1,2,2],[0,2,3,0],[2,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,2,4,0],[2,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,2,3,0],[2,2,4,2],[1,2,2,0]],[[0,1,2,1],[0,2,3,0],[2,2,3,3],[1,2,2,0]],[[0,1,2,1],[0,2,3,0],[2,2,3,2],[2,2,2,0]],[[0,1,2,1],[0,2,3,0],[2,2,3,2],[1,3,2,0]],[[0,1,2,1],[0,2,3,0],[2,2,3,2],[1,2,3,0]],[[0,1,2,1],[0,2,3,0],[2,4,1,2],[1,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,1,3],[1,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,1,2],[2,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,1,2],[1,3,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,1,2],[1,2,3,1]],[[0,1,2,1],[0,2,3,0],[2,3,1,2],[1,2,2,2]],[[0,1,2,1],[0,2,3,0],[2,4,2,1],[1,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,2,1],[2,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,2,1],[1,3,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,2,1],[1,2,3,1]],[[0,1,2,1],[0,2,3,0],[2,3,2,1],[1,2,2,2]],[[0,1,2,1],[0,2,3,0],[2,3,2,3],[1,1,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,2,2],[1,1,3,1]],[[0,1,2,1],[0,2,3,0],[2,3,2,2],[1,1,2,2]],[[0,1,2,1],[0,2,3,0],[2,4,2,2],[1,2,2,0]],[[0,1,2,1],[0,2,3,0],[2,3,2,2],[2,2,2,0]],[[0,1,2,1],[0,2,3,0],[2,3,2,2],[1,3,2,0]],[[0,1,2,1],[0,2,3,0],[2,3,2,2],[1,2,3,0]],[[0,1,2,1],[0,2,3,0],[2,4,3,0],[1,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,0],[2,2,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,0],[1,3,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,0],[1,2,3,1]],[[0,1,3,1],[0,2,3,0],[2,3,3,1],[1,1,2,1]],[[0,1,2,2],[0,2,3,0],[2,3,3,1],[1,1,2,1]],[[0,1,2,1],[0,2,4,0],[2,3,3,1],[1,1,2,1]],[[0,1,2,1],[0,2,3,0],[2,4,3,1],[1,1,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,4,1],[1,1,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,1],[1,1,3,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,1],[1,1,2,2]],[[0,1,3,1],[0,2,3,0],[2,3,3,1],[1,2,1,1]],[[0,1,2,2],[0,2,3,0],[2,3,3,1],[1,2,1,1]],[[0,1,2,1],[0,2,4,0],[2,3,3,1],[1,2,1,1]],[[0,1,2,1],[0,2,3,0],[2,4,3,1],[1,2,1,1]],[[0,1,2,1],[0,2,3,0],[2,3,4,1],[1,2,1,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,1],[2,2,1,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,1],[1,3,1,1]],[[0,1,2,1],[0,2,3,0],[2,3,4,2],[1,0,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,3],[1,0,2,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,2],[1,0,2,2]],[[0,1,3,1],[0,2,3,0],[2,3,3,2],[1,1,1,1]],[[0,1,2,2],[0,2,3,0],[2,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,2,4,0],[2,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,2,3,0],[2,4,3,2],[1,1,1,1]],[[0,1,2,1],[0,2,3,0],[2,3,4,2],[1,1,1,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,3],[1,1,1,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,2],[1,1,1,2]],[[0,1,3,1],[0,2,3,0],[2,3,3,2],[1,1,2,0]],[[0,1,2,2],[0,2,3,0],[2,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,2,4,0],[2,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,2,3,0],[2,4,3,2],[1,1,2,0]],[[0,1,2,1],[0,2,3,0],[2,3,4,2],[1,1,2,0]],[[0,1,2,1],[0,2,3,0],[2,3,3,3],[1,1,2,0]],[[0,1,2,1],[0,2,3,0],[2,3,3,2],[1,1,3,0]],[[0,1,3,1],[0,2,3,0],[2,3,3,2],[1,2,0,1]],[[0,1,2,2],[0,2,3,0],[2,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,2,4,0],[2,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,2,3,0],[2,4,3,2],[1,2,0,1]],[[0,1,2,1],[0,2,3,0],[2,3,4,2],[1,2,0,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,3],[1,2,0,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,2],[2,2,0,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,2],[1,3,0,1]],[[0,1,2,1],[0,2,3,0],[2,3,3,2],[1,2,0,2]],[[0,1,3,1],[0,2,3,0],[2,3,3,2],[1,2,1,0]],[[0,1,2,2],[0,2,3,0],[2,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,2,4,0],[2,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,2,3,0],[2,4,3,2],[1,2,1,0]],[[0,1,2,1],[0,2,3,0],[2,3,4,2],[1,2,1,0]],[[0,1,2,1],[0,2,3,0],[2,3,3,3],[1,2,1,0]],[[0,1,2,1],[0,2,3,0],[2,3,3,2],[2,2,1,0]],[[0,1,2,1],[0,2,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,2,3],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,2,2],[2,0,3,1],[1,1,1,0]],[[0,1,3,1],[0,2,3,1],[2,2,1,2],[1,2,2,1]],[[0,1,2,2],[0,2,3,1],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[0,2,4,1],[2,2,1,2],[1,2,2,1]],[[0,1,3,1],[0,2,3,1],[2,2,2,2],[1,2,1,1]],[[0,1,2,2],[0,2,3,1],[2,2,2,2],[1,2,1,1]],[[0,1,2,1],[0,2,4,1],[2,2,2,2],[1,2,1,1]],[[0,1,3,1],[0,2,3,1],[2,2,2,2],[1,2,2,0]],[[0,1,2,2],[0,2,3,1],[2,2,2,2],[1,2,2,0]],[[0,1,2,1],[0,2,4,1],[2,2,2,2],[1,2,2,0]],[[0,1,3,1],[0,2,3,1],[2,2,3,0],[1,2,2,1]],[[0,1,2,2],[0,2,3,1],[2,2,3,0],[1,2,2,1]],[[0,1,2,1],[0,2,4,1],[2,2,3,0],[1,2,2,1]],[[0,1,2,1],[0,2,3,1],[2,2,4,0],[1,2,2,1]],[[0,1,2,1],[0,2,3,1],[2,2,3,0],[2,2,2,1]],[[0,1,2,1],[0,2,3,1],[2,2,3,0],[1,3,2,1]],[[0,1,2,1],[0,2,3,1],[2,2,3,0],[1,2,3,1]],[[0,1,2,1],[0,2,3,1],[2,2,3,0],[1,2,2,2]],[[0,1,3,1],[0,2,3,1],[2,2,3,1],[1,2,1,1]],[[0,1,2,2],[0,2,3,1],[2,2,3,1],[1,2,1,1]],[[0,1,2,1],[0,2,4,1],[2,2,3,1],[1,2,1,1]],[[0,1,2,1],[0,2,3,1],[2,2,4,1],[1,2,1,1]],[[0,1,3,1],[0,2,3,1],[2,2,3,1],[1,2,2,0]],[[0,1,2,2],[0,2,3,1],[2,2,3,1],[1,2,2,0]],[[0,1,2,1],[0,2,4,1],[2,2,3,1],[1,2,2,0]],[[0,1,2,1],[0,2,3,1],[2,2,4,1],[1,2,2,0]],[[0,1,2,1],[0,2,3,1],[2,2,3,1],[2,2,2,0]],[[0,1,2,1],[0,2,3,1],[2,2,3,1],[1,3,2,0]],[[0,1,2,1],[0,2,3,1],[2,2,3,1],[1,2,3,0]],[[1,2,2,2],[2,2,2,2],[2,0,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[2,0,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[2,0,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,2,3],[2,0,3,1],[1,1,0,1]],[[1,2,2,1],[3,2,2,2],[2,0,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[2,0,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[2,0,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[2,0,3,1],[1,1,0,1]],[[0,1,3,1],[0,2,3,1],[2,3,0,2],[1,2,2,1]],[[0,1,2,2],[0,2,3,1],[2,3,0,2],[1,2,2,1]],[[0,1,2,1],[0,2,4,1],[2,3,0,2],[1,2,2,1]],[[0,1,3,1],[0,2,3,1],[2,3,1,2],[1,1,2,1]],[[0,1,2,2],[0,2,3,1],[2,3,1,2],[1,1,2,1]],[[0,1,2,1],[0,2,4,1],[2,3,1,2],[1,1,2,1]],[[0,1,2,1],[0,2,3,1],[2,4,2,0],[1,2,2,1]],[[0,1,2,1],[0,2,3,1],[2,3,2,0],[2,2,2,1]],[[0,1,2,1],[0,2,3,1],[2,3,2,0],[1,3,2,1]],[[0,1,2,1],[0,2,3,1],[2,3,2,0],[1,2,3,1]],[[0,1,2,1],[0,2,3,1],[2,3,2,0],[1,2,2,2]],[[0,1,2,1],[0,2,3,1],[2,4,2,1],[1,2,2,0]],[[0,1,2,1],[0,2,3,1],[2,3,2,1],[2,2,2,0]],[[0,1,2,1],[0,2,3,1],[2,3,2,1],[1,3,2,0]],[[0,1,2,1],[0,2,3,1],[2,3,2,1],[1,2,3,0]],[[0,1,3,1],[0,2,3,1],[2,3,2,2],[1,1,1,1]],[[0,1,2,2],[0,2,3,1],[2,3,2,2],[1,1,1,1]],[[0,1,2,1],[0,2,4,1],[2,3,2,2],[1,1,1,1]],[[0,1,3,1],[0,2,3,1],[2,3,2,2],[1,1,2,0]],[[0,1,2,2],[0,2,3,1],[2,3,2,2],[1,1,2,0]],[[0,1,2,1],[0,2,4,1],[2,3,2,2],[1,1,2,0]],[[0,1,3,1],[0,2,3,1],[2,3,2,2],[1,2,0,1]],[[0,1,2,2],[0,2,3,1],[2,3,2,2],[1,2,0,1]],[[0,1,2,1],[0,2,4,1],[2,3,2,2],[1,2,0,1]],[[0,1,3,1],[0,2,3,1],[2,3,2,2],[1,2,1,0]],[[0,1,2,2],[0,2,3,1],[2,3,2,2],[1,2,1,0]],[[0,1,2,1],[0,2,4,1],[2,3,2,2],[1,2,1,0]],[[2,2,2,1],[2,2,2,2],[2,0,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,2,3],[2,0,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,2,2],[2,0,3,1],[1,0,2,0]],[[0,1,3,1],[0,2,3,1],[2,3,3,0],[1,1,2,1]],[[0,1,2,2],[0,2,3,1],[2,3,3,0],[1,1,2,1]],[[0,1,2,1],[0,2,4,1],[2,3,3,0],[1,1,2,1]],[[0,1,2,1],[0,2,3,1],[2,4,3,0],[1,1,2,1]],[[0,1,2,1],[0,2,3,1],[2,3,4,0],[1,1,2,1]],[[0,1,2,1],[0,2,3,1],[2,3,3,0],[1,1,3,1]],[[0,1,2,1],[0,2,3,1],[2,3,3,0],[1,1,2,2]],[[0,1,3,1],[0,2,3,1],[2,3,3,0],[1,2,1,1]],[[0,1,2,2],[0,2,3,1],[2,3,3,0],[1,2,1,1]],[[0,1,2,1],[0,2,4,1],[2,3,3,0],[1,2,1,1]],[[0,1,2,1],[0,2,3,1],[2,4,3,0],[1,2,1,1]],[[0,1,2,1],[0,2,3,1],[2,3,4,0],[1,2,1,1]],[[0,1,2,1],[0,2,3,1],[2,3,3,0],[2,2,1,1]],[[0,1,2,1],[0,2,3,1],[2,3,3,0],[1,3,1,1]],[[0,1,3,1],[0,2,3,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,2],[0,2,3,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[0,2,4,1],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[0,2,3,1],[2,4,3,1],[1,1,1,1]],[[0,1,2,1],[0,2,3,1],[2,3,4,1],[1,1,1,1]],[[0,1,3,1],[0,2,3,1],[2,3,3,1],[1,1,2,0]],[[0,1,2,2],[0,2,3,1],[2,3,3,1],[1,1,2,0]],[[0,1,2,1],[0,2,4,1],[2,3,3,1],[1,1,2,0]],[[0,1,2,1],[0,2,3,1],[2,4,3,1],[1,1,2,0]],[[0,1,2,1],[0,2,3,1],[2,3,4,1],[1,1,2,0]],[[0,1,2,1],[0,2,3,1],[2,3,3,1],[1,1,3,0]],[[0,1,3,1],[0,2,3,1],[2,3,3,1],[1,2,0,1]],[[0,1,2,2],[0,2,3,1],[2,3,3,1],[1,2,0,1]],[[0,1,2,1],[0,2,4,1],[2,3,3,1],[1,2,0,1]],[[0,1,2,1],[0,2,3,1],[2,4,3,1],[1,2,0,1]],[[0,1,2,1],[0,2,3,1],[2,3,4,1],[1,2,0,1]],[[0,1,2,1],[0,2,3,1],[2,3,3,1],[2,2,0,1]],[[0,1,2,1],[0,2,3,1],[2,3,3,1],[1,3,0,1]],[[0,1,3,1],[0,2,3,1],[2,3,3,1],[1,2,1,0]],[[0,1,2,2],[0,2,3,1],[2,3,3,1],[1,2,1,0]],[[0,1,2,1],[0,2,4,1],[2,3,3,1],[1,2,1,0]],[[0,1,2,1],[0,2,3,1],[2,4,3,1],[1,2,1,0]],[[0,1,2,1],[0,2,3,1],[2,3,4,1],[1,2,1,0]],[[0,1,2,1],[0,2,3,1],[2,3,3,1],[2,2,1,0]],[[0,1,2,1],[0,2,3,1],[2,3,3,1],[1,3,1,0]],[[1,2,2,2],[2,2,2,2],[2,0,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[2,0,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[2,0,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[2,0,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,2,3],[2,0,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,2,2],[2,0,3,1],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[2,0,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[2,0,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[2,0,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[2,0,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,2,3],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,2,2],[2,0,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[2,0,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[2,0,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[2,0,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,2,3],[2,0,3,1],[0,2,0,1]],[[1,2,2,1],[3,2,2,2],[2,0,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[2,0,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[2,0,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[2,0,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[2,0,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,2,3],[2,0,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,2,2],[2,0,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[2,0,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[2,0,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[2,0,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,2,2],[2,0,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,2,3],[2,0,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,2,2],[2,0,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[2,0,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[2,0,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[2,0,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[2,0,3,1],[0,1,1,1]],[[1,2,2,1],[2,2,2,3],[2,0,3,1],[0,0,2,1]],[[1,2,2,1],[3,2,2,2],[2,0,3,1],[0,0,2,1]],[[1,2,2,2],[2,2,2,2],[2,0,3,1],[0,0,2,1]],[[1,2,3,1],[2,2,2,2],[2,0,3,1],[0,0,2,1]],[[1,3,2,1],[2,2,2,2],[2,0,3,1],[0,0,2,1]],[[2,2,2,1],[2,2,2,2],[2,0,3,1],[0,0,2,1]],[[1,2,2,1],[2,2,2,2],[2,0,3,0],[1,3,1,0]],[[1,2,2,1],[2,2,2,2],[2,0,3,0],[2,2,1,0]],[[1,2,2,1],[2,2,2,2],[3,0,3,0],[1,2,1,0]],[[1,2,2,1],[3,2,2,2],[2,0,3,0],[1,2,1,0]],[[1,2,2,2],[2,2,2,2],[2,0,3,0],[1,2,1,0]],[[1,2,3,1],[2,2,2,2],[2,0,3,0],[1,2,1,0]],[[1,3,2,1],[2,2,2,2],[2,0,3,0],[1,2,1,0]],[[2,2,2,1],[2,2,2,2],[2,0,3,0],[1,2,1,0]],[[1,2,2,1],[2,2,2,2],[2,0,3,0],[2,2,0,1]],[[1,2,2,1],[2,2,2,2],[3,0,3,0],[1,2,0,1]],[[1,2,2,1],[3,2,2,2],[2,0,3,0],[1,2,0,1]],[[1,2,2,2],[2,2,2,2],[2,0,3,0],[1,2,0,1]],[[1,2,3,1],[2,2,2,2],[2,0,3,0],[1,2,0,1]],[[1,3,2,1],[2,2,2,2],[2,0,3,0],[1,2,0,1]],[[2,2,2,1],[2,2,2,2],[2,0,3,0],[1,2,0,1]],[[1,2,2,1],[2,2,2,2],[2,0,3,0],[2,1,2,0]],[[1,2,2,1],[2,2,2,2],[3,0,3,0],[1,1,2,0]],[[1,2,2,1],[3,2,2,2],[2,0,3,0],[1,1,2,0]],[[1,2,2,2],[2,2,2,2],[2,0,3,0],[1,1,2,0]],[[1,2,3,1],[2,2,2,2],[2,0,3,0],[1,1,2,0]],[[1,3,2,1],[2,2,2,2],[2,0,3,0],[1,1,2,0]],[[2,2,2,1],[2,2,2,2],[2,0,3,0],[1,1,2,0]],[[0,1,3,1],[0,2,3,2],[2,2,3,0],[1,2,2,0]],[[0,1,2,2],[0,2,3,2],[2,2,3,0],[1,2,2,0]],[[0,1,2,1],[0,2,4,2],[2,2,3,0],[1,2,2,0]],[[1,2,2,1],[2,2,2,3],[2,0,3,0],[1,0,2,1]],[[1,2,2,1],[3,2,2,2],[2,0,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,2,2],[2,0,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,2,2],[2,0,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,2,2],[2,0,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,2,2],[2,0,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,2,2],[3,0,3,0],[0,2,2,0]],[[1,2,2,1],[3,2,2,2],[2,0,3,0],[0,2,2,0]],[[1,2,2,2],[2,2,2,2],[2,0,3,0],[0,2,2,0]],[[1,2,3,1],[2,2,2,2],[2,0,3,0],[0,2,2,0]],[[1,3,2,1],[2,2,2,2],[2,0,3,0],[0,2,2,0]],[[2,2,2,1],[2,2,2,2],[2,0,3,0],[0,2,2,0]],[[1,2,2,1],[2,2,2,3],[2,0,3,0],[0,1,2,1]],[[1,2,2,1],[3,2,2,2],[2,0,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,2,2],[2,0,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,2,2],[2,0,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,2,2],[2,0,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,2,2],[2,0,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,2,3],[2,0,2,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,2],[2,0,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[2,0,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[2,0,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[2,0,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[2,0,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,2],[2,0,2,3],[1,1,0,1]],[[1,2,2,1],[2,2,2,3],[2,0,2,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,2],[2,0,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[2,0,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[2,0,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[2,0,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[2,0,2,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,2],[2,0,2,3],[1,0,2,0]],[[1,2,2,1],[2,2,2,3],[2,0,2,2],[1,0,2,0]],[[1,2,2,1],[3,2,2,2],[2,0,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[2,0,2,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[2,0,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[2,0,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[2,0,2,2],[1,0,2,0]],[[0,1,3,1],[0,2,3,2],[2,3,3,0],[1,1,2,0]],[[0,1,2,2],[0,2,3,2],[2,3,3,0],[1,1,2,0]],[[0,1,2,1],[0,2,4,2],[2,3,3,0],[1,1,2,0]],[[0,1,3,1],[0,2,3,2],[2,3,3,0],[1,2,0,1]],[[0,1,2,2],[0,2,3,2],[2,3,3,0],[1,2,0,1]],[[0,1,2,1],[0,2,4,2],[2,3,3,0],[1,2,0,1]],[[0,1,3,1],[0,2,3,2],[2,3,3,0],[1,2,1,0]],[[0,1,2,2],[0,2,3,2],[2,3,3,0],[1,2,1,0]],[[0,1,2,1],[0,2,4,2],[2,3,3,0],[1,2,1,0]],[[1,2,2,1],[2,2,2,2],[2,0,2,2],[1,0,1,2]],[[1,2,2,1],[2,2,2,2],[2,0,2,3],[1,0,1,1]],[[1,2,2,1],[2,2,2,3],[2,0,2,2],[1,0,1,1]],[[1,2,2,1],[3,2,2,2],[2,0,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[2,0,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[2,0,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[2,0,2,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[2,0,2,2],[1,0,1,1]],[[1,2,2,1],[2,2,2,3],[2,0,2,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,2],[2,0,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[2,0,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[2,0,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[2,0,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[2,0,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,2],[2,0,2,3],[0,2,0,1]],[[1,2,2,1],[2,2,2,3],[2,0,2,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,2],[2,0,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[2,0,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[2,0,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[2,0,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[2,0,2,2],[0,2,0,1]],[[1,2,2,1],[2,2,2,2],[2,0,2,3],[0,1,2,0]],[[1,2,2,1],[2,2,2,3],[2,0,2,2],[0,1,2,0]],[[1,2,2,1],[3,2,2,2],[2,0,2,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[2,0,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[2,0,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[2,0,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,2],[2,0,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,2,2],[2,0,2,2],[0,1,1,2]],[[1,2,2,1],[2,2,2,2],[2,0,2,3],[0,1,1,1]],[[1,2,2,1],[2,2,2,3],[2,0,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,2,2],[2,0,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[2,0,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[2,0,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[2,0,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[2,0,2,2],[0,1,1,1]],[[1,2,2,1],[2,2,2,2],[2,0,2,2],[0,0,2,2]],[[1,2,2,1],[2,2,2,2],[2,0,2,3],[0,0,2,1]],[[1,2,2,1],[2,2,2,3],[2,0,2,2],[0,0,2,1]],[[1,2,2,1],[3,2,2,2],[2,0,2,2],[0,0,2,1]],[[1,2,2,2],[2,2,2,2],[2,0,2,2],[0,0,2,1]],[[1,2,3,1],[2,2,2,2],[2,0,2,2],[0,0,2,1]],[[1,3,2,1],[2,2,2,2],[2,0,2,2],[0,0,2,1]],[[2,2,2,1],[2,2,2,2],[2,0,2,2],[0,0,2,1]],[[1,2,2,1],[2,2,2,2],[2,0,2,0],[1,3,2,0]],[[1,2,2,1],[2,2,2,2],[2,0,2,0],[2,2,2,0]],[[1,2,2,1],[2,2,2,2],[3,0,2,0],[1,2,2,0]],[[1,2,2,1],[3,2,2,2],[2,0,2,0],[1,2,2,0]],[[1,2,2,2],[2,2,2,2],[2,0,2,0],[1,2,2,0]],[[1,2,3,1],[2,2,2,2],[2,0,2,0],[1,2,2,0]],[[1,3,2,1],[2,2,2,2],[2,0,2,0],[1,2,2,0]],[[2,2,2,1],[2,2,2,2],[2,0,2,0],[1,2,2,0]],[[1,2,2,1],[2,2,2,2],[2,0,1,2],[1,0,2,2]],[[1,2,2,1],[2,2,2,2],[2,0,1,3],[1,0,2,1]],[[1,2,2,1],[2,2,2,3],[2,0,1,2],[1,0,2,1]],[[1,2,2,1],[3,2,2,2],[2,0,1,2],[1,0,2,1]],[[1,2,2,2],[2,2,2,2],[2,0,1,2],[1,0,2,1]],[[1,2,3,1],[2,2,2,2],[2,0,1,2],[1,0,2,1]],[[1,3,2,1],[2,2,2,2],[2,0,1,2],[1,0,2,1]],[[2,2,2,1],[2,2,2,2],[2,0,1,2],[1,0,2,1]],[[0,1,2,1],[0,3,0,2],[0,3,3,3],[1,2,2,1]],[[0,1,2,1],[0,3,0,2],[0,3,3,2],[1,3,2,1]],[[0,1,2,1],[0,3,0,2],[0,3,3,2],[1,2,3,1]],[[0,1,2,1],[0,3,0,2],[0,3,3,2],[1,2,2,2]],[[0,1,2,1],[0,3,0,2],[1,2,3,3],[1,2,2,1]],[[0,1,2,1],[0,3,0,2],[1,2,3,2],[1,3,2,1]],[[0,1,2,1],[0,3,0,2],[1,2,3,2],[1,2,3,1]],[[0,1,2,1],[0,3,0,2],[1,2,3,2],[1,2,2,2]],[[0,1,2,1],[0,3,0,2],[1,3,3,3],[1,1,2,1]],[[0,1,2,1],[0,3,0,2],[1,3,3,2],[1,1,3,1]],[[0,1,2,1],[0,3,0,2],[1,3,3,2],[1,1,2,2]],[[0,1,3,1],[0,3,0,2],[2,2,2,2],[1,2,2,1]],[[0,1,2,2],[0,3,0,2],[2,2,2,2],[1,2,2,1]],[[0,1,2,1],[0,3,0,3],[2,2,2,2],[1,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,2,2,3],[1,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,2,2,2],[2,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,2,2,2],[1,3,2,1]],[[0,1,2,1],[0,3,0,2],[2,2,2,2],[1,2,3,1]],[[0,1,2,1],[0,3,0,2],[2,2,2,2],[1,2,2,2]],[[0,1,2,1],[0,3,0,2],[2,2,4,1],[1,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,2,3,1],[2,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,2,3,1],[1,3,2,1]],[[0,1,2,1],[0,3,0,2],[2,2,3,1],[1,2,3,1]],[[0,1,2,1],[0,3,0,2],[2,2,3,1],[1,2,2,2]],[[0,1,2,1],[0,3,0,2],[2,2,3,3],[0,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,2,3,2],[0,2,3,1]],[[0,1,2,1],[0,3,0,2],[2,2,3,2],[0,2,2,2]],[[0,1,3,1],[0,3,0,2],[2,2,3,2],[1,2,1,1]],[[0,1,2,2],[0,3,0,2],[2,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,3,0,3],[2,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,3,0,2],[2,2,4,2],[1,2,1,1]],[[0,1,2,1],[0,3,0,2],[2,2,3,3],[1,2,1,1]],[[0,1,2,1],[0,3,0,2],[2,2,3,2],[1,2,1,2]],[[0,1,3,1],[0,3,0,2],[2,2,3,2],[1,2,2,0]],[[0,1,2,2],[0,3,0,2],[2,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,3,0,3],[2,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,3,0,2],[2,2,4,2],[1,2,2,0]],[[0,1,2,1],[0,3,0,2],[2,2,3,3],[1,2,2,0]],[[0,1,2,1],[0,3,0,2],[2,2,3,2],[2,2,2,0]],[[0,1,2,1],[0,3,0,2],[2,2,3,2],[1,3,2,0]],[[0,1,2,1],[0,3,0,2],[2,2,3,2],[1,2,3,0]],[[0,1,3,1],[0,3,0,2],[2,3,1,2],[1,2,2,1]],[[0,1,2,2],[0,3,0,2],[2,3,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,0,3],[2,3,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,4,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,1,3],[1,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,1,2],[2,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,1,2],[1,3,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,1,2],[1,2,3,1]],[[0,1,2,1],[0,3,0,2],[2,3,1,2],[1,2,2,2]],[[0,1,2,1],[0,3,0,2],[2,4,2,1],[1,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,2,1],[2,2,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,2,1],[1,3,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,2,1],[1,2,3,1]],[[0,1,2,1],[0,3,0,2],[2,3,2,1],[1,2,2,2]],[[0,1,3,1],[0,3,0,2],[2,3,2,2],[1,1,2,1]],[[0,1,2,2],[0,3,0,2],[2,3,2,2],[1,1,2,1]],[[0,1,2,1],[0,3,0,3],[2,3,2,2],[1,1,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,2,3],[1,1,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,2,2],[1,1,3,1]],[[0,1,2,1],[0,3,0,2],[2,3,2,2],[1,1,2,2]],[[0,1,2,1],[0,3,0,2],[2,4,2,2],[1,2,2,0]],[[0,1,2,1],[0,3,0,2],[2,3,2,2],[2,2,2,0]],[[0,1,2,1],[0,3,0,2],[2,3,2,2],[1,3,2,0]],[[0,1,2,1],[0,3,0,2],[2,3,2,2],[1,2,3,0]],[[0,1,2,1],[0,3,0,2],[2,4,3,1],[1,1,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,4,1],[1,1,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,1],[1,1,3,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,1],[1,1,2,2]],[[0,1,2,1],[0,3,0,2],[2,4,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,0,2],[2,3,4,1],[1,2,1,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,1],[2,2,1,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,1],[1,3,1,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,3],[0,1,2,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,2],[0,1,3,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,2],[0,1,2,2]],[[0,1,3,1],[0,3,0,2],[2,3,3,2],[1,1,1,1]],[[0,1,2,2],[0,3,0,2],[2,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,3,0,3],[2,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,3,0,2],[2,4,3,2],[1,1,1,1]],[[0,1,2,1],[0,3,0,2],[2,3,4,2],[1,1,1,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,3],[1,1,1,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,2],[1,1,1,2]],[[0,1,3,1],[0,3,0,2],[2,3,3,2],[1,1,2,0]],[[0,1,2,2],[0,3,0,2],[2,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,3,0,3],[2,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,3,0,2],[2,4,3,2],[1,1,2,0]],[[0,1,2,1],[0,3,0,2],[2,3,4,2],[1,1,2,0]],[[0,1,2,1],[0,3,0,2],[2,3,3,3],[1,1,2,0]],[[0,1,2,1],[0,3,0,2],[2,3,3,2],[1,1,3,0]],[[0,1,3,1],[0,3,0,2],[2,3,3,2],[1,2,0,1]],[[0,1,2,2],[0,3,0,2],[2,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,3,0,3],[2,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,3,0,2],[2,4,3,2],[1,2,0,1]],[[0,1,2,1],[0,3,0,2],[2,3,4,2],[1,2,0,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,3],[1,2,0,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,2],[2,2,0,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,2],[1,3,0,1]],[[0,1,2,1],[0,3,0,2],[2,3,3,2],[1,2,0,2]],[[0,1,3,1],[0,3,0,2],[2,3,3,2],[1,2,1,0]],[[0,1,2,2],[0,3,0,2],[2,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,3,0,3],[2,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,3,0,2],[2,4,3,2],[1,2,1,0]],[[0,1,2,1],[0,3,0,2],[2,3,4,2],[1,2,1,0]],[[0,1,2,1],[0,3,0,2],[2,3,3,3],[1,2,1,0]],[[0,1,2,1],[0,3,0,2],[2,3,3,2],[2,2,1,0]],[[0,1,2,1],[0,3,0,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,2,2],[2,0,1,2],[0,1,2,2]],[[1,2,2,1],[2,2,2,2],[2,0,1,3],[0,1,2,1]],[[1,2,2,1],[2,2,2,3],[2,0,1,2],[0,1,2,1]],[[1,2,2,1],[3,2,2,2],[2,0,1,2],[0,1,2,1]],[[1,2,2,2],[2,2,2,2],[2,0,1,2],[0,1,2,1]],[[1,2,3,1],[2,2,2,2],[2,0,1,2],[0,1,2,1]],[[1,3,2,1],[2,2,2,2],[2,0,1,2],[0,1,2,1]],[[2,2,2,1],[2,2,2,2],[2,0,1,2],[0,1,2,1]],[[0,1,2,1],[0,3,1,0],[2,4,3,1],[1,2,2,1]],[[0,1,2,1],[0,3,1,0],[2,3,3,1],[2,2,2,1]],[[0,1,2,1],[0,3,1,0],[2,3,3,1],[1,3,2,1]],[[0,1,2,1],[0,3,1,0],[2,3,3,1],[1,2,3,1]],[[0,1,2,1],[0,3,1,0],[2,3,3,1],[1,2,2,2]],[[0,1,2,1],[0,3,1,0],[2,4,3,2],[1,2,2,0]],[[0,1,2,1],[0,3,1,0],[2,3,3,2],[2,2,2,0]],[[0,1,2,1],[0,3,1,0],[2,3,3,2],[1,3,2,0]],[[0,1,2,1],[0,3,1,0],[2,3,3,2],[1,2,3,0]],[[0,1,2,2],[0,3,1,2],[0,2,3,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,3],[0,2,3,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[0,2,3,3],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[0,2,3,2],[1,2,3,1]],[[0,1,2,1],[0,3,1,2],[0,2,3,2],[1,2,2,2]],[[0,1,3,1],[0,3,1,2],[0,3,2,2],[1,2,2,1]],[[0,1,2,2],[0,3,1,2],[0,3,2,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,3],[0,3,2,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[0,3,2,3],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[0,3,2,2],[1,3,2,1]],[[0,1,2,1],[0,3,1,2],[0,3,2,2],[1,2,3,1]],[[0,1,2,1],[0,3,1,2],[0,3,2,2],[1,2,2,2]],[[0,1,2,1],[0,3,1,2],[0,3,4,1],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[0,3,3,1],[1,3,2,1]],[[0,1,2,1],[0,3,1,2],[0,3,3,1],[1,2,3,1]],[[0,1,2,1],[0,3,1,2],[0,3,3,1],[1,2,2,2]],[[0,1,3,1],[0,3,1,2],[0,3,3,2],[1,2,1,1]],[[0,1,2,2],[0,3,1,2],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[0,3,1,3],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[0,3,1,2],[0,3,4,2],[1,2,1,1]],[[0,1,2,1],[0,3,1,2],[0,3,3,3],[1,2,1,1]],[[0,1,2,1],[0,3,1,2],[0,3,3,2],[1,2,1,2]],[[0,1,3,1],[0,3,1,2],[0,3,3,2],[1,2,2,0]],[[0,1,2,2],[0,3,1,2],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[0,3,1,3],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[0,3,1,2],[0,3,4,2],[1,2,2,0]],[[0,1,2,1],[0,3,1,2],[0,3,3,3],[1,2,2,0]],[[0,1,2,1],[0,3,1,2],[0,3,3,2],[1,3,2,0]],[[0,1,2,1],[0,3,1,2],[0,3,3,2],[1,2,3,0]],[[0,1,2,2],[0,3,1,2],[1,1,3,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,3],[1,1,3,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,1,3,3],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,1,3,2],[1,2,3,1]],[[0,1,2,1],[0,3,1,2],[1,1,3,2],[1,2,2,2]],[[0,1,3,1],[0,3,1,2],[1,2,2,2],[1,2,2,1]],[[0,1,2,2],[0,3,1,2],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,1],[0,3,1,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,1],[0,3,1,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,1],[0,3,1,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,1],[0,3,1,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,1],[0,3,1,2],[1,2,3,1],[1,2,2,2]],[[0,1,3,1],[0,3,1,2],[1,2,3,2],[1,2,1,1]],[[0,1,2,2],[0,3,1,2],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,3,1,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,3,1,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,1],[0,3,1,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,1],[0,3,1,2],[1,2,3,2],[1,2,1,2]],[[0,1,3,1],[0,3,1,2],[1,2,3,2],[1,2,2,0]],[[0,1,2,2],[0,3,1,2],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,3,1,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,3,1,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,1],[0,3,1,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,1],[0,3,1,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,1],[0,3,1,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,1],[0,3,1,2],[1,2,3,2],[1,2,3,0]],[[0,1,3,1],[0,3,1,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,2],[0,3,1,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,3],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,4,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,1,3],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,1,2],[2,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,1,2],[1,3,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,1,2],[1,2,3,1]],[[0,1,2,1],[0,3,1,2],[1,3,1,2],[1,2,2,2]],[[0,1,2,1],[0,3,1,2],[1,4,2,1],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,2,1],[2,2,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,2,1],[1,3,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,2,1],[1,2,3,1]],[[0,1,2,1],[0,3,1,2],[1,3,2,1],[1,2,2,2]],[[0,1,3,1],[0,3,1,2],[1,3,2,2],[1,1,2,1]],[[0,1,2,2],[0,3,1,2],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[0,3,1,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,1],[0,3,1,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,1],[0,3,1,2],[1,4,2,2],[1,2,2,0]],[[0,1,2,1],[0,3,1,2],[1,3,2,2],[2,2,2,0]],[[0,1,2,1],[0,3,1,2],[1,3,2,2],[1,3,2,0]],[[0,1,2,1],[0,3,1,2],[1,3,2,2],[1,2,3,0]],[[0,1,2,1],[0,3,1,2],[1,4,3,1],[1,1,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,1],[0,3,1,2],[1,4,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,1,2],[1,3,4,1],[1,2,1,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,1],[2,2,1,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,1],[1,3,1,1]],[[0,1,3,1],[0,3,1,2],[1,3,3,2],[1,0,2,1]],[[0,1,2,2],[0,3,1,2],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[0,3,1,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,2],[1,0,2,2]],[[0,1,3,1],[0,3,1,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,2],[0,3,1,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,3,1,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,3,1,2],[1,4,3,2],[1,1,1,1]],[[0,1,2,1],[0,3,1,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,2],[1,1,1,2]],[[0,1,3,1],[0,3,1,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,2],[0,3,1,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,3,1,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,3,1,2],[1,4,3,2],[1,1,2,0]],[[0,1,2,1],[0,3,1,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,1],[0,3,1,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,1],[0,3,1,2],[1,3,3,2],[1,1,3,0]],[[0,1,3,1],[0,3,1,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,2],[0,3,1,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,3,1,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,3,1,2],[1,4,3,2],[1,2,0,1]],[[0,1,2,1],[0,3,1,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,2],[2,2,0,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,2],[1,3,0,1]],[[0,1,2,1],[0,3,1,2],[1,3,3,2],[1,2,0,2]],[[0,1,3,1],[0,3,1,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,2],[0,3,1,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,3,1,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,3,1,2],[1,4,3,2],[1,2,1,0]],[[0,1,2,1],[0,3,1,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,1],[0,3,1,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,1],[0,3,1,2],[1,3,3,2],[2,2,1,0]],[[0,1,2,1],[0,3,1,2],[1,3,3,2],[1,3,1,0]],[[0,1,2,2],[0,3,1,2],[2,1,3,2],[0,2,2,1]],[[0,1,2,1],[0,3,1,3],[2,1,3,2],[0,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,1,3,3],[0,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,1,3,2],[0,2,3,1]],[[0,1,2,1],[0,3,1,2],[2,1,3,2],[0,2,2,2]],[[0,1,3,1],[0,3,1,2],[2,2,2,2],[0,2,2,1]],[[0,1,2,2],[0,3,1,2],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[0,3,1,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,1],[0,3,1,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,1],[0,3,1,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,1],[0,3,1,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,1],[0,3,1,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,1],[0,3,1,2],[2,2,3,1],[0,2,2,2]],[[0,1,3,1],[0,3,1,2],[2,2,3,2],[0,2,1,1]],[[0,1,2,2],[0,3,1,2],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[0,3,1,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[0,3,1,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,1],[0,3,1,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,1],[0,3,1,2],[2,2,3,2],[0,2,1,2]],[[0,1,3,1],[0,3,1,2],[2,2,3,2],[0,2,2,0]],[[0,1,2,2],[0,3,1,2],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[0,3,1,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[0,3,1,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,1],[0,3,1,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,1],[0,3,1,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,1],[0,3,1,2],[2,2,3,2],[0,2,3,0]],[[0,1,3,1],[0,3,1,2],[2,3,0,2],[1,2,2,1]],[[0,1,2,2],[0,3,1,2],[2,3,0,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,3],[2,3,0,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,4,0,2],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,0,3],[1,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,0,2],[2,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,0,2],[1,3,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,0,2],[1,2,3,1]],[[0,1,2,1],[0,3,1,2],[2,3,0,2],[1,2,2,2]],[[0,1,3,1],[0,3,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,2],[0,3,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[0,3,1,3],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,4,1,2],[0,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,1,3],[0,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,1,2],[0,3,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,1,2],[0,2,3,1]],[[0,1,2,1],[0,3,1,2],[2,3,1,2],[0,2,2,2]],[[0,1,2,1],[0,3,1,2],[2,4,2,1],[0,2,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,2,1],[0,3,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,2,1],[0,2,3,1]],[[0,1,2,1],[0,3,1,2],[2,3,2,1],[0,2,2,2]],[[0,1,3,1],[0,3,1,2],[2,3,2,2],[0,1,2,1]],[[0,1,2,2],[0,3,1,2],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[0,3,1,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,1],[0,3,1,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,1],[0,3,1,2],[2,4,2,2],[0,2,2,0]],[[0,1,2,1],[0,3,1,2],[2,3,2,2],[0,3,2,0]],[[0,1,2,1],[0,3,1,2],[2,3,2,2],[0,2,3,0]],[[0,1,3,1],[0,3,1,2],[2,3,2,2],[1,0,2,1]],[[0,1,2,2],[0,3,1,2],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[0,3,1,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,1],[0,3,1,2],[2,3,2,2],[1,0,2,2]],[[0,1,2,1],[0,3,1,2],[2,4,3,1],[0,1,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,1],[0,3,1,2],[2,4,3,1],[0,2,1,1]],[[0,1,2,1],[0,3,1,2],[2,3,4,1],[0,2,1,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,1],[0,3,1,1]],[[0,1,2,1],[0,3,1,2],[2,4,3,1],[1,0,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,1],[1,0,2,2]],[[0,1,3,1],[0,3,1,2],[2,3,3,2],[0,0,2,1]],[[0,1,2,2],[0,3,1,2],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[0,3,1,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,2],[0,0,2,2]],[[0,1,3,1],[0,3,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,2],[0,3,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[0,3,1,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[0,3,1,2],[2,4,3,2],[0,1,1,1]],[[0,1,2,1],[0,3,1,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,2],[0,1,1,2]],[[0,1,3,1],[0,3,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,2],[0,3,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[0,3,1,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[0,3,1,2],[2,4,3,2],[0,1,2,0]],[[0,1,2,1],[0,3,1,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,1],[0,3,1,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,1],[0,3,1,2],[2,3,3,2],[0,1,3,0]],[[0,1,3,1],[0,3,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,2],[0,3,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[0,3,1,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[0,3,1,2],[2,4,3,2],[0,2,0,1]],[[0,1,2,1],[0,3,1,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,2],[0,3,0,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,2],[0,2,0,2]],[[0,1,3,1],[0,3,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,2],[0,3,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[0,3,1,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[0,3,1,2],[2,4,3,2],[0,2,1,0]],[[0,1,2,1],[0,3,1,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,1],[0,3,1,2],[2,3,3,3],[0,2,1,0]],[[0,1,2,1],[0,3,1,2],[2,3,3,2],[0,3,1,0]],[[0,1,3,1],[0,3,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,2],[0,3,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[0,3,1,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[0,3,1,2],[2,4,3,2],[1,0,1,1]],[[0,1,2,1],[0,3,1,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,2],[1,0,1,2]],[[0,1,3,1],[0,3,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,2],[0,3,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[0,3,1,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[0,3,1,2],[2,4,3,2],[1,0,2,0]],[[0,1,2,1],[0,3,1,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,1],[0,3,1,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,1],[0,3,1,2],[2,3,3,2],[1,0,3,0]],[[0,1,3,1],[0,3,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,2],[0,3,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[0,3,1,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[0,3,1,2],[2,4,3,2],[1,1,0,1]],[[0,1,2,1],[0,3,1,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,1],[0,3,1,2],[2,3,3,2],[1,1,0,2]],[[0,1,3,1],[0,3,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,2],[0,3,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[0,3,1,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[0,3,1,2],[2,4,3,2],[1,1,1,0]],[[0,1,2,1],[0,3,1,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,1],[0,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,2,2,2],[1,3,3,0],[1,1,0,0]],[[1,2,2,2],[2,2,2,2],[1,3,3,0],[1,1,0,0]],[[1,2,3,1],[2,2,2,2],[1,3,3,0],[1,1,0,0]],[[1,3,2,1],[2,2,2,2],[1,3,3,0],[1,1,0,0]],[[2,2,2,1],[2,2,2,2],[1,3,3,0],[1,1,0,0]],[[1,2,2,1],[3,2,2,2],[1,3,3,0],[0,2,0,0]],[[1,2,2,2],[2,2,2,2],[1,3,3,0],[0,2,0,0]],[[1,2,3,1],[2,2,2,2],[1,3,3,0],[0,2,0,0]],[[1,3,2,1],[2,2,2,2],[1,3,3,0],[0,2,0,0]],[[0,1,2,1],[0,3,2,0],[2,2,2,3],[1,2,2,1]],[[0,1,2,1],[0,3,2,0],[2,2,2,2],[2,2,2,1]],[[0,1,2,1],[0,3,2,0],[2,2,2,2],[1,3,2,1]],[[0,1,2,1],[0,3,2,0],[2,2,2,2],[1,2,3,1]],[[0,1,2,1],[0,3,2,0],[2,2,2,2],[1,2,2,2]],[[0,1,2,1],[0,3,2,0],[2,2,4,1],[1,2,2,1]],[[0,1,2,1],[0,3,2,0],[2,2,3,1],[2,2,2,1]],[[0,1,2,1],[0,3,2,0],[2,2,3,1],[1,3,2,1]],[[0,1,2,1],[0,3,2,0],[2,2,3,1],[1,2,3,1]],[[0,1,2,1],[0,3,2,0],[2,2,3,1],[1,2,2,2]],[[0,1,2,1],[0,3,2,0],[2,2,4,2],[1,2,1,1]],[[0,1,2,1],[0,3,2,0],[2,2,3,3],[1,2,1,1]],[[0,1,2,1],[0,3,2,0],[2,2,3,2],[1,2,1,2]],[[0,1,2,1],[0,3,2,0],[2,2,4,2],[1,2,2,0]],[[0,1,2,1],[0,3,2,0],[2,2,3,3],[1,2,2,0]],[[0,1,2,1],[0,3,2,0],[2,2,3,2],[2,2,2,0]],[[0,1,2,1],[0,3,2,0],[2,2,3,2],[1,3,2,0]],[[0,1,2,1],[0,3,2,0],[2,2,3,2],[1,2,3,0]],[[0,1,2,1],[0,3,2,0],[2,4,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,1,3],[1,2,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,1,2],[2,2,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,1,2],[1,3,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,1,2],[1,2,3,1]],[[0,1,2,1],[0,3,2,0],[2,3,1,2],[1,2,2,2]],[[0,1,2,1],[0,3,2,0],[2,4,2,1],[1,2,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,2,1],[2,2,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,2,1],[1,3,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,2,1],[1,2,3,1]],[[0,1,2,1],[0,3,2,0],[2,3,2,1],[1,2,2,2]],[[0,1,2,1],[0,3,2,0],[2,3,2,3],[1,1,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,2,2],[1,1,3,1]],[[0,1,2,1],[0,3,2,0],[2,3,2,2],[1,1,2,2]],[[0,1,2,1],[0,3,2,0],[2,4,2,2],[1,2,2,0]],[[0,1,2,1],[0,3,2,0],[2,3,2,2],[2,2,2,0]],[[0,1,2,1],[0,3,2,0],[2,3,2,2],[1,3,2,0]],[[0,1,2,1],[0,3,2,0],[2,3,2,2],[1,2,3,0]],[[0,1,2,1],[0,3,2,0],[2,4,3,0],[1,2,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,0],[2,2,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,0],[1,3,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,0],[1,2,3,1]],[[0,1,2,1],[0,3,2,0],[2,4,3,1],[1,1,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,4,1],[1,1,2,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,1],[1,1,3,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,1],[1,1,2,2]],[[0,1,2,1],[0,3,2,0],[2,4,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,2,0],[2,3,4,1],[1,2,1,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,1],[2,2,1,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,1],[1,3,1,1]],[[0,1,2,1],[0,3,2,0],[2,4,3,2],[1,1,1,1]],[[0,1,2,1],[0,3,2,0],[2,3,4,2],[1,1,1,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,3],[1,1,1,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,2],[1,1,1,2]],[[0,1,2,1],[0,3,2,0],[2,4,3,2],[1,1,2,0]],[[0,1,2,1],[0,3,2,0],[2,3,4,2],[1,1,2,0]],[[0,1,2,1],[0,3,2,0],[2,3,3,3],[1,1,2,0]],[[0,1,2,1],[0,3,2,0],[2,3,3,2],[1,1,3,0]],[[0,1,2,1],[0,3,2,0],[2,4,3,2],[1,2,0,1]],[[0,1,2,1],[0,3,2,0],[2,3,4,2],[1,2,0,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,3],[1,2,0,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,2],[2,2,0,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,2],[1,3,0,1]],[[0,1,2,1],[0,3,2,0],[2,3,3,2],[1,2,0,2]],[[0,1,2,1],[0,3,2,0],[2,4,3,2],[1,2,1,0]],[[0,1,2,1],[0,3,2,0],[2,3,4,2],[1,2,1,0]],[[0,1,2,1],[0,3,2,0],[2,3,3,3],[1,2,1,0]],[[0,1,2,1],[0,3,2,0],[2,3,3,2],[2,2,1,0]],[[0,1,2,1],[0,3,2,0],[2,3,3,2],[1,3,1,0]],[[2,2,2,1],[2,2,2,2],[1,3,3,0],[0,2,0,0]],[[0,1,2,1],[0,3,2,1],[2,2,4,0],[1,2,2,1]],[[0,1,2,1],[0,3,2,1],[2,2,3,0],[2,2,2,1]],[[0,1,2,1],[0,3,2,1],[2,2,3,0],[1,3,2,1]],[[0,1,2,1],[0,3,2,1],[2,2,3,0],[1,2,3,1]],[[0,1,2,1],[0,3,2,1],[2,2,3,0],[1,2,2,2]],[[0,1,2,1],[0,3,2,1],[2,2,4,1],[1,2,2,0]],[[0,1,2,1],[0,3,2,1],[2,2,3,1],[2,2,2,0]],[[0,1,2,1],[0,3,2,1],[2,2,3,1],[1,3,2,0]],[[0,1,2,1],[0,3,2,1],[2,2,3,1],[1,2,3,0]],[[0,1,2,1],[0,3,2,1],[2,4,2,0],[1,2,2,1]],[[0,1,2,1],[0,3,2,1],[2,3,2,0],[2,2,2,1]],[[0,1,2,1],[0,3,2,1],[2,3,2,0],[1,3,2,1]],[[0,1,2,1],[0,3,2,1],[2,3,2,0],[1,2,3,1]],[[0,1,2,1],[0,3,2,1],[2,3,2,0],[1,2,2,2]],[[0,1,2,1],[0,3,2,1],[2,4,2,1],[1,2,2,0]],[[0,1,2,1],[0,3,2,1],[2,3,2,1],[2,2,2,0]],[[0,1,2,1],[0,3,2,1],[2,3,2,1],[1,3,2,0]],[[0,1,2,1],[0,3,2,1],[2,3,2,1],[1,2,3,0]],[[1,2,2,1],[3,2,2,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,2],[2,2,2,2],[1,3,3,0],[0,0,2,0]],[[0,1,2,1],[0,3,2,1],[2,4,3,0],[1,1,2,1]],[[0,1,2,1],[0,3,2,1],[2,3,4,0],[1,1,2,1]],[[0,1,2,1],[0,3,2,1],[2,3,3,0],[1,1,3,1]],[[0,1,2,1],[0,3,2,1],[2,3,3,0],[1,1,2,2]],[[0,1,2,1],[0,3,2,1],[2,4,3,0],[1,2,1,1]],[[0,1,2,1],[0,3,2,1],[2,3,4,0],[1,2,1,1]],[[0,1,2,1],[0,3,2,1],[2,3,3,0],[2,2,1,1]],[[0,1,2,1],[0,3,2,1],[2,3,3,0],[1,3,1,1]],[[0,1,2,1],[0,3,2,1],[2,4,3,1],[1,1,2,0]],[[0,1,2,1],[0,3,2,1],[2,3,4,1],[1,1,2,0]],[[0,1,2,1],[0,3,2,1],[2,3,3,1],[1,1,3,0]],[[0,1,2,1],[0,3,2,1],[2,4,3,1],[1,2,0,1]],[[0,1,2,1],[0,3,2,1],[2,3,4,1],[1,2,0,1]],[[0,1,2,1],[0,3,2,1],[2,3,3,1],[2,2,0,1]],[[0,1,2,1],[0,3,2,1],[2,3,3,1],[1,3,0,1]],[[0,1,2,1],[0,3,2,1],[2,4,3,1],[1,2,1,0]],[[0,1,2,1],[0,3,2,1],[2,3,4,1],[1,2,1,0]],[[0,1,2,1],[0,3,2,1],[2,3,3,1],[2,2,1,0]],[[0,1,2,1],[0,3,2,1],[2,3,3,1],[1,3,1,0]],[[1,2,3,1],[2,2,2,2],[1,3,3,0],[0,0,2,0]],[[1,3,2,1],[2,2,2,2],[1,3,3,0],[0,0,2,0]],[[2,2,2,1],[2,2,2,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,1],[3,2,2,2],[1,3,3,0],[0,0,1,1]],[[1,2,2,2],[2,2,2,2],[1,3,3,0],[0,0,1,1]],[[1,2,3,1],[2,2,2,2],[1,3,3,0],[0,0,1,1]],[[1,3,2,1],[2,2,2,2],[1,3,3,0],[0,0,1,1]],[[2,2,2,1],[2,2,2,2],[1,3,3,0],[0,0,1,1]],[[0,1,3,1],[0,3,2,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,2],[0,3,2,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,2,3],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,2,2],[0,3,1,3],[1,2,2,1]],[[0,1,2,1],[0,3,2,2],[0,3,1,2],[1,3,2,1]],[[0,1,2,1],[0,3,2,2],[0,3,1,2],[1,2,3,1]],[[0,1,2,1],[0,3,2,2],[0,3,1,2],[1,2,2,2]],[[0,1,3,1],[0,3,2,2],[0,3,2,2],[1,2,1,1]],[[0,1,2,2],[0,3,2,2],[0,3,2,2],[1,2,1,1]],[[0,1,2,1],[0,3,2,3],[0,3,2,2],[1,2,1,1]],[[0,1,2,1],[0,3,2,2],[0,3,2,3],[1,2,1,1]],[[0,1,2,1],[0,3,2,2],[0,3,2,2],[1,2,1,2]],[[0,1,3,1],[0,3,2,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,2],[0,3,2,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,1],[0,3,2,3],[0,3,2,2],[1,2,2,0]],[[0,1,2,1],[0,3,2,2],[0,3,2,3],[1,2,2,0]],[[0,1,3,1],[0,3,2,2],[0,3,3,0],[1,2,2,1]],[[0,1,2,2],[0,3,2,2],[0,3,3,0],[1,2,2,1]],[[0,1,2,1],[0,3,2,3],[0,3,3,0],[1,2,2,1]],[[0,1,3,1],[0,3,2,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,2],[0,3,2,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,2,3],[0,3,3,1],[1,2,1,1]],[[0,1,3,1],[0,3,2,2],[0,3,3,1],[1,2,2,0]],[[0,1,2,2],[0,3,2,2],[0,3,3,1],[1,2,2,0]],[[0,1,2,1],[0,3,2,3],[0,3,3,1],[1,2,2,0]],[[0,1,3,1],[0,3,2,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,2],[0,3,2,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,2,3],[1,2,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,2,2],[1,2,1,3],[1,2,2,1]],[[0,1,2,1],[0,3,2,2],[1,2,1,2],[2,2,2,1]],[[0,1,2,1],[0,3,2,2],[1,2,1,2],[1,3,2,1]],[[0,1,2,1],[0,3,2,2],[1,2,1,2],[1,2,3,1]],[[0,1,2,1],[0,3,2,2],[1,2,1,2],[1,2,2,2]],[[0,1,3,1],[0,3,2,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,2],[0,3,2,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,1],[0,3,2,3],[1,2,2,2],[1,2,1,1]],[[0,1,2,1],[0,3,2,2],[1,2,2,3],[1,2,1,1]],[[0,1,2,1],[0,3,2,2],[1,2,2,2],[1,2,1,2]],[[0,1,3,1],[0,3,2,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,2],[0,3,2,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,1],[0,3,2,3],[1,2,2,2],[1,2,2,0]],[[0,1,2,1],[0,3,2,2],[1,2,2,3],[1,2,2,0]],[[0,1,3,1],[0,3,2,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,2],[0,3,2,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,1],[0,3,2,3],[1,2,3,0],[1,2,2,1]],[[0,1,3,1],[0,3,2,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,2],[0,3,2,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,2,3],[1,2,3,1],[1,2,1,1]],[[0,1,3,1],[0,3,2,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,2],[0,3,2,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,1],[0,3,2,3],[1,2,3,1],[1,2,2,0]],[[0,1,3,1],[0,3,2,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,2],[0,3,2,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[0,3,2,3],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[0,3,2,2],[1,4,0,2],[1,2,2,1]],[[0,1,2,1],[0,3,2,2],[1,3,0,3],[1,2,2,1]],[[0,1,2,1],[0,3,2,2],[1,3,0,2],[2,2,2,1]],[[0,1,2,1],[0,3,2,2],[1,3,0,2],[1,3,2,1]],[[0,1,2,1],[0,3,2,2],[1,3,0,2],[1,2,3,1]],[[0,1,2,1],[0,3,2,2],[1,3,0,2],[1,2,2,2]],[[0,1,3,1],[0,3,2,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,2],[0,3,2,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[0,3,2,3],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[0,3,2,2],[1,3,1,3],[1,1,2,1]],[[0,1,2,1],[0,3,2,2],[1,3,1,2],[1,1,3,1]],[[0,1,2,1],[0,3,2,2],[1,3,1,2],[1,1,2,2]],[[0,1,3,1],[0,3,2,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,2],[0,3,2,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,1],[0,3,2,3],[1,3,2,2],[1,0,2,1]],[[0,1,2,1],[0,3,2,2],[1,3,2,3],[1,0,2,1]],[[0,1,2,1],[0,3,2,2],[1,3,2,2],[1,0,2,2]],[[0,1,3,1],[0,3,2,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,2],[0,3,2,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[0,3,2,3],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[0,3,2,2],[1,3,2,3],[1,1,1,1]],[[0,1,2,1],[0,3,2,2],[1,3,2,2],[1,1,1,2]],[[0,1,3,1],[0,3,2,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,2],[0,3,2,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[0,3,2,3],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[0,3,2,2],[1,3,2,3],[1,1,2,0]],[[0,1,3,1],[0,3,2,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,2],[0,3,2,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[0,3,2,3],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[0,3,2,2],[1,3,2,3],[1,2,0,1]],[[0,1,2,1],[0,3,2,2],[1,3,2,2],[1,2,0,2]],[[0,1,3,1],[0,3,2,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,2],[0,3,2,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[0,3,2,3],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[0,3,2,2],[1,3,2,3],[1,2,1,0]],[[0,1,3,1],[0,3,2,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,2],[0,3,2,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[0,3,2,3],[1,3,3,0],[1,1,2,1]],[[0,1,3,1],[0,3,2,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,2],[0,3,2,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,1],[0,3,2,3],[1,3,3,0],[1,2,1,1]],[[0,1,3,1],[0,3,2,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,2],[0,3,2,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[0,3,2,3],[1,3,3,1],[1,0,2,1]],[[0,1,3,1],[0,3,2,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,2],[0,3,2,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[0,3,2,3],[1,3,3,1],[1,1,1,1]],[[0,1,3,1],[0,3,2,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,2],[0,3,2,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,1],[0,3,2,3],[1,3,3,1],[1,1,2,0]],[[0,1,3,1],[0,3,2,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,2],[0,3,2,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[0,3,2,3],[1,3,3,1],[1,2,0,1]],[[0,1,3,1],[0,3,2,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,2],[0,3,2,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,1],[0,3,2,3],[1,3,3,1],[1,2,1,0]],[[0,1,3,1],[0,3,2,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,2],[0,3,2,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[0,3,2,3],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[0,3,2,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[3,2,2,2],[1,3,2,0],[1,2,0,0]],[[1,2,2,2],[2,2,2,2],[1,3,2,0],[1,2,0,0]],[[1,2,3,1],[2,2,2,2],[1,3,2,0],[1,2,0,0]],[[1,3,2,1],[2,2,2,2],[1,3,2,0],[1,2,0,0]],[[2,2,2,1],[2,2,2,2],[1,3,2,0],[1,2,0,0]],[[0,1,3,1],[0,3,2,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,2],[0,3,2,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[0,3,2,3],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[0,3,2,2],[2,2,1,3],[0,2,2,1]],[[0,1,2,1],[0,3,2,2],[2,2,1,2],[0,3,2,1]],[[0,1,2,1],[0,3,2,2],[2,2,1,2],[0,2,3,1]],[[0,1,2,1],[0,3,2,2],[2,2,1,2],[0,2,2,2]],[[0,1,3,1],[0,3,2,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,2],[0,3,2,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,1],[0,3,2,3],[2,2,2,2],[0,2,1,1]],[[0,1,2,1],[0,3,2,2],[2,2,2,3],[0,2,1,1]],[[0,1,2,1],[0,3,2,2],[2,2,2,2],[0,2,1,2]],[[0,1,3,1],[0,3,2,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,2],[0,3,2,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[0,3,2,3],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[0,3,2,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,1],[3,2,2,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[1,3,2,0],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[1,3,2,0],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[1,3,2,0],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,1],[3,2,2,2],[1,3,2,0],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[1,3,2,0],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[1,3,2,0],[1,1,0,1]],[[0,1,3,1],[0,3,2,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,2],[0,3,2,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,1],[0,3,2,3],[2,2,3,0],[0,2,2,1]],[[0,1,3,1],[0,3,2,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,2],[0,3,2,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[0,3,2,3],[2,2,3,1],[0,2,1,1]],[[0,1,3,1],[0,3,2,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,2],[0,3,2,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,1],[0,3,2,3],[2,2,3,1],[0,2,2,0]],[[1,3,2,1],[2,2,2,2],[1,3,2,0],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[1,3,2,0],[1,1,0,1]],[[1,2,2,1],[3,2,2,2],[1,3,2,0],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[1,3,2,0],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[1,3,2,0],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[1,3,2,0],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[1,3,2,0],[1,0,2,0]],[[1,2,2,1],[3,2,2,2],[1,3,2,0],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[1,3,2,0],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[1,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[1,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[1,3,2,0],[1,0,1,1]],[[1,2,2,1],[3,2,2,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[1,3,2,0],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[1,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[1,3,2,0],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,1],[3,2,2,2],[1,3,2,0],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[1,3,2,0],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[1,3,2,0],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[1,3,2,0],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[1,3,2,0],[0,2,0,1]],[[0,1,3,1],[0,3,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,2],[0,3,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[0,3,2,3],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[0,3,2,2],[2,4,0,2],[0,2,2,1]],[[0,1,2,1],[0,3,2,2],[2,3,0,3],[0,2,2,1]],[[0,1,2,1],[0,3,2,2],[2,3,0,2],[0,3,2,1]],[[0,1,2,1],[0,3,2,2],[2,3,0,2],[0,2,3,1]],[[0,1,2,1],[0,3,2,2],[2,3,0,2],[0,2,2,2]],[[0,1,3,1],[0,3,2,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,2],[0,3,2,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,1],[0,3,2,3],[2,3,1,2],[0,1,2,1]],[[0,1,2,1],[0,3,2,2],[2,3,1,3],[0,1,2,1]],[[0,1,2,1],[0,3,2,2],[2,3,1,2],[0,1,3,1]],[[0,1,2,1],[0,3,2,2],[2,3,1,2],[0,1,2,2]],[[0,1,3,1],[0,3,2,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,2],[0,3,2,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,1],[0,3,2,3],[2,3,1,2],[1,0,2,1]],[[0,1,2,1],[0,3,2,2],[2,3,1,3],[1,0,2,1]],[[0,1,2,1],[0,3,2,2],[2,3,1,2],[1,0,3,1]],[[0,1,2,1],[0,3,2,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[3,2,2,2],[1,3,2,0],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[1,3,2,0],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[1,3,2,0],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[1,3,2,0],[0,1,2,0]],[[2,2,2,1],[2,2,2,2],[1,3,2,0],[0,1,2,0]],[[1,2,2,1],[3,2,2,2],[1,3,2,0],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[1,3,2,0],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[1,3,2,0],[0,1,1,1]],[[0,1,3,1],[0,3,2,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,2],[0,3,2,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,1],[0,3,2,3],[2,3,2,2],[0,0,2,1]],[[0,1,2,1],[0,3,2,2],[2,3,2,3],[0,0,2,1]],[[0,1,2,1],[0,3,2,2],[2,3,2,2],[0,0,2,2]],[[0,1,3,1],[0,3,2,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,2],[0,3,2,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[0,3,2,3],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[0,3,2,2],[2,3,2,3],[0,1,1,1]],[[0,1,2,1],[0,3,2,2],[2,3,2,2],[0,1,1,2]],[[0,1,3,1],[0,3,2,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,2],[0,3,2,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[0,3,2,3],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[0,3,2,2],[2,3,2,3],[0,1,2,0]],[[0,1,3,1],[0,3,2,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,2],[0,3,2,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[0,3,2,3],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[0,3,2,2],[2,3,2,3],[0,2,0,1]],[[0,1,2,1],[0,3,2,2],[2,3,2,2],[0,2,0,2]],[[0,1,3,1],[0,3,2,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,2],[0,3,2,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[0,3,2,3],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[0,3,2,2],[2,3,2,3],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[1,3,2,0],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[1,3,2,0],[0,1,1,1]],[[0,1,3,1],[0,3,2,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,2],[0,3,2,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[0,3,2,3],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[0,3,2,2],[2,3,2,3],[1,0,1,1]],[[0,1,2,1],[0,3,2,2],[2,3,2,2],[1,0,1,2]],[[0,1,3,1],[0,3,2,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,2],[0,3,2,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[0,3,2,3],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[0,3,2,2],[2,3,2,3],[1,0,2,0]],[[0,1,3,1],[0,3,2,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,2],[0,3,2,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[0,3,2,3],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[0,3,2,2],[2,3,2,3],[1,1,0,1]],[[0,1,2,1],[0,3,2,2],[2,3,2,2],[1,1,0,2]],[[0,1,3,1],[0,3,2,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,2],[0,3,2,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[0,3,2,3],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[0,3,2,2],[2,3,2,3],[1,1,1,0]],[[0,1,3,1],[0,3,2,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,2],[0,3,2,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[0,3,2,3],[2,3,3,0],[0,1,2,1]],[[0,1,3,1],[0,3,2,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,2],[0,3,2,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[0,3,2,3],[2,3,3,0],[0,2,1,1]],[[0,1,3,1],[0,3,2,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,2],[0,3,2,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[0,3,2,3],[2,3,3,0],[1,0,2,1]],[[0,1,3,1],[0,3,2,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,2],[0,3,2,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[0,3,2,3],[2,3,3,0],[1,1,1,1]],[[0,1,3,1],[0,3,2,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,2],[0,3,2,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[0,3,2,3],[2,3,3,1],[0,0,2,1]],[[0,1,3,1],[0,3,2,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,2],[0,3,2,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[0,3,2,3],[2,3,3,1],[0,1,1,1]],[[0,1,3,1],[0,3,2,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,2],[0,3,2,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[0,3,2,3],[2,3,3,1],[0,1,2,0]],[[0,1,3,1],[0,3,2,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,2],[0,3,2,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[0,3,2,3],[2,3,3,1],[0,2,0,1]],[[0,1,3,1],[0,3,2,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,2],[0,3,2,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[0,3,2,3],[2,3,3,1],[0,2,1,0]],[[0,1,3,1],[0,3,2,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,2],[0,3,2,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[0,3,2,3],[2,3,3,1],[1,0,1,1]],[[0,1,3,1],[0,3,2,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,2],[0,3,2,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[0,3,2,3],[2,3,3,1],[1,0,2,0]],[[0,1,3,1],[0,3,2,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,2],[0,3,2,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[0,3,2,3],[2,3,3,1],[1,1,0,1]],[[0,1,3,1],[0,3,2,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,2],[0,3,2,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[0,3,2,3],[2,3,3,1],[1,1,1,0]],[[0,1,3,1],[0,3,2,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,2],[0,3,2,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,1],[0,3,2,3],[2,3,3,2],[0,1,0,1]],[[0,1,2,1],[0,3,2,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[3,2,2,2],[1,3,1,0],[1,1,2,0]],[[1,2,2,2],[2,2,2,2],[1,3,1,0],[1,1,2,0]],[[1,2,3,1],[2,2,2,2],[1,3,1,0],[1,1,2,0]],[[1,3,2,1],[2,2,2,2],[1,3,1,0],[1,1,2,0]],[[2,2,2,1],[2,2,2,2],[1,3,1,0],[1,1,2,0]],[[1,2,2,1],[3,2,2,2],[1,3,1,0],[0,2,2,0]],[[1,2,2,2],[2,2,2,2],[1,3,1,0],[0,2,2,0]],[[1,2,3,1],[2,2,2,2],[1,3,1,0],[0,2,2,0]],[[1,3,2,1],[2,2,2,2],[1,3,1,0],[0,2,2,0]],[[2,2,2,1],[2,2,2,2],[1,3,1,0],[0,2,2,0]],[[0,1,3,1],[0,3,2,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,2],[0,3,2,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[0,3,2,3],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[0,3,2,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,2,2,3],[1,3,0,2],[1,2,0,0]],[[1,2,2,1],[3,2,2,2],[1,3,0,2],[1,2,0,0]],[[1,2,2,2],[2,2,2,2],[1,3,0,2],[1,2,0,0]],[[1,2,3,1],[2,2,2,2],[1,3,0,2],[1,2,0,0]],[[1,3,2,1],[2,2,2,2],[1,3,0,2],[1,2,0,0]],[[2,2,2,1],[2,2,2,2],[1,3,0,2],[1,2,0,0]],[[1,2,2,1],[2,2,2,3],[1,3,0,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,2],[1,3,0,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[1,3,0,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[1,3,0,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[1,3,0,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[1,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,3],[1,3,0,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,2],[1,3,0,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[1,3,0,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[1,3,0,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[1,3,0,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[1,3,0,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,3],[1,3,0,2],[1,0,2,0]],[[1,2,2,1],[3,2,2,2],[1,3,0,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[1,3,0,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[1,3,0,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[1,3,0,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[1,3,0,2],[1,0,2,0]],[[1,2,2,1],[2,2,2,3],[1,3,0,2],[1,0,1,1]],[[1,2,2,1],[3,2,2,2],[1,3,0,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[1,3,0,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[1,3,0,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[1,3,0,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[1,3,0,2],[1,0,1,1]],[[1,2,2,1],[2,2,2,3],[1,3,0,2],[0,2,1,0]],[[0,1,2,1],[0,3,3,0],[0,2,3,3],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[0,2,3,2],[1,2,3,1]],[[0,1,2,1],[0,3,3,0],[0,2,3,2],[1,2,2,2]],[[0,1,2,1],[0,3,3,0],[0,3,2,3],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[0,3,2,2],[1,3,2,1]],[[0,1,2,1],[0,3,3,0],[0,3,2,2],[1,2,3,1]],[[0,1,2,1],[0,3,3,0],[0,3,2,2],[1,2,2,2]],[[0,1,3,1],[0,3,3,0],[0,3,3,1],[1,2,2,1]],[[0,1,2,2],[0,3,3,0],[0,3,3,1],[1,2,2,1]],[[0,1,2,1],[0,3,4,0],[0,3,3,1],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[0,3,4,1],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[0,3,3,1],[1,3,2,1]],[[0,1,2,1],[0,3,3,0],[0,3,3,1],[1,2,3,1]],[[0,1,2,1],[0,3,3,0],[0,3,3,1],[1,2,2,2]],[[0,1,3,1],[0,3,3,0],[0,3,3,2],[1,2,1,1]],[[0,1,2,2],[0,3,3,0],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[0,3,4,0],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[0,3,3,0],[0,3,4,2],[1,2,1,1]],[[0,1,2,1],[0,3,3,0],[0,3,3,3],[1,2,1,1]],[[0,1,2,1],[0,3,3,0],[0,3,3,2],[1,2,1,2]],[[0,1,3,1],[0,3,3,0],[0,3,3,2],[1,2,2,0]],[[0,1,2,2],[0,3,3,0],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[0,3,4,0],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[0,3,3,0],[0,3,4,2],[1,2,2,0]],[[0,1,2,1],[0,3,3,0],[0,3,3,3],[1,2,2,0]],[[0,1,2,1],[0,3,3,0],[0,3,3,2],[1,3,2,0]],[[0,1,2,1],[0,3,3,0],[0,3,3,2],[1,2,3,0]],[[0,1,2,1],[0,3,3,0],[1,1,3,3],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,1,3,2],[1,2,3,1]],[[0,1,2,1],[0,3,3,0],[1,1,3,2],[1,2,2,2]],[[0,1,2,1],[0,3,3,0],[1,2,2,3],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,2,2,2],[2,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,2,2,2],[1,3,2,1]],[[0,1,2,1],[0,3,3,0],[1,2,2,2],[1,2,3,1]],[[0,1,2,1],[0,3,3,0],[1,2,2,2],[1,2,2,2]],[[0,1,3,1],[0,3,3,0],[1,2,3,1],[1,2,2,1]],[[0,1,2,2],[0,3,3,0],[1,2,3,1],[1,2,2,1]],[[0,1,2,1],[0,3,4,0],[1,2,3,1],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,2,4,1],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,2,3,1],[2,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,2,3,1],[1,3,2,1]],[[0,1,2,1],[0,3,3,0],[1,2,3,1],[1,2,3,1]],[[0,1,2,1],[0,3,3,0],[1,2,3,1],[1,2,2,2]],[[0,1,3,1],[0,3,3,0],[1,2,3,2],[1,2,1,1]],[[0,1,2,2],[0,3,3,0],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,3,4,0],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[0,3,3,0],[1,2,4,2],[1,2,1,1]],[[0,1,2,1],[0,3,3,0],[1,2,3,3],[1,2,1,1]],[[0,1,2,1],[0,3,3,0],[1,2,3,2],[1,2,1,2]],[[0,1,3,1],[0,3,3,0],[1,2,3,2],[1,2,2,0]],[[0,1,2,2],[0,3,3,0],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,3,4,0],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[0,3,3,0],[1,2,4,2],[1,2,2,0]],[[0,1,2,1],[0,3,3,0],[1,2,3,3],[1,2,2,0]],[[0,1,2,1],[0,3,3,0],[1,2,3,2],[2,2,2,0]],[[0,1,2,1],[0,3,3,0],[1,2,3,2],[1,3,2,0]],[[0,1,2,1],[0,3,3,0],[1,2,3,2],[1,2,3,0]],[[0,1,2,1],[0,3,3,0],[1,4,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,1,3],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,1,2],[2,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,1,2],[1,3,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,1,2],[1,2,3,1]],[[0,1,2,1],[0,3,3,0],[1,3,1,2],[1,2,2,2]],[[0,1,2,1],[0,3,3,0],[1,4,2,1],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,2,1],[2,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,2,1],[1,3,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,2,1],[1,2,3,1]],[[0,1,2,1],[0,3,3,0],[1,3,2,1],[1,2,2,2]],[[0,1,2,1],[0,3,3,0],[1,3,2,3],[1,1,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,2,2],[1,1,3,1]],[[0,1,2,1],[0,3,3,0],[1,3,2,2],[1,1,2,2]],[[0,1,2,1],[0,3,3,0],[1,4,2,2],[1,2,2,0]],[[0,1,2,1],[0,3,3,0],[1,3,2,2],[2,2,2,0]],[[0,1,2,1],[0,3,3,0],[1,3,2,2],[1,3,2,0]],[[0,1,2,1],[0,3,3,0],[1,3,2,2],[1,2,3,0]],[[0,1,2,1],[0,3,3,0],[1,4,3,0],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,0],[2,2,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,0],[1,3,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,0],[1,2,3,1]],[[0,1,3,1],[0,3,3,0],[1,3,3,1],[1,1,2,1]],[[0,1,2,2],[0,3,3,0],[1,3,3,1],[1,1,2,1]],[[0,1,2,1],[0,3,4,0],[1,3,3,1],[1,1,2,1]],[[0,1,2,1],[0,3,3,0],[1,4,3,1],[1,1,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,4,1],[1,1,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,1],[1,1,3,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,1],[1,1,2,2]],[[0,1,3,1],[0,3,3,0],[1,3,3,1],[1,2,1,1]],[[0,1,2,2],[0,3,3,0],[1,3,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,4,0],[1,3,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,3,0],[1,4,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,3,0],[1,3,4,1],[1,2,1,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,1],[2,2,1,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,1],[1,3,1,1]],[[0,1,3,1],[0,3,3,0],[1,3,3,2],[1,0,2,1]],[[0,1,2,2],[0,3,3,0],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[0,3,4,0],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,4,2],[1,0,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,3],[1,0,2,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,2],[1,0,2,2]],[[0,1,3,1],[0,3,3,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,2],[0,3,3,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,3,4,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[0,3,3,0],[1,4,3,2],[1,1,1,1]],[[0,1,2,1],[0,3,3,0],[1,3,4,2],[1,1,1,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,3],[1,1,1,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,2],[1,1,1,2]],[[0,1,3,1],[0,3,3,0],[1,3,3,2],[1,1,2,0]],[[0,1,2,2],[0,3,3,0],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,3,4,0],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[0,3,3,0],[1,4,3,2],[1,1,2,0]],[[0,1,2,1],[0,3,3,0],[1,3,4,2],[1,1,2,0]],[[0,1,2,1],[0,3,3,0],[1,3,3,3],[1,1,2,0]],[[0,1,2,1],[0,3,3,0],[1,3,3,2],[1,1,3,0]],[[0,1,3,1],[0,3,3,0],[1,3,3,2],[1,2,0,1]],[[0,1,2,2],[0,3,3,0],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,3,4,0],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[0,3,3,0],[1,4,3,2],[1,2,0,1]],[[0,1,2,1],[0,3,3,0],[1,3,4,2],[1,2,0,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,3],[1,2,0,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,2],[2,2,0,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,2],[1,3,0,1]],[[0,1,2,1],[0,3,3,0],[1,3,3,2],[1,2,0,2]],[[0,1,3,1],[0,3,3,0],[1,3,3,2],[1,2,1,0]],[[0,1,2,2],[0,3,3,0],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,3,4,0],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[0,3,3,0],[1,4,3,2],[1,2,1,0]],[[0,1,2,1],[0,3,3,0],[1,3,4,2],[1,2,1,0]],[[0,1,2,1],[0,3,3,0],[1,3,3,3],[1,2,1,0]],[[0,1,2,1],[0,3,3,0],[1,3,3,2],[2,2,1,0]],[[0,1,2,1],[0,3,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,2,2,2],[1,3,0,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[1,3,0,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[1,3,0,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[1,3,0,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[1,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,3],[1,3,0,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,2],[1,3,0,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[1,3,0,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[1,3,0,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[1,3,0,2],[0,2,0,1]],[[0,1,2,1],[0,3,3,0],[2,1,3,3],[0,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,1,3,2],[0,2,3,1]],[[0,1,2,1],[0,3,3,0],[2,1,3,2],[0,2,2,2]],[[0,1,2,1],[0,3,3,0],[2,2,2,3],[0,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,2,2,2],[0,3,2,1]],[[0,1,2,1],[0,3,3,0],[2,2,2,2],[0,2,3,1]],[[0,1,2,1],[0,3,3,0],[2,2,2,2],[0,2,2,2]],[[0,1,3,1],[0,3,3,0],[2,2,3,1],[0,2,2,1]],[[0,1,2,2],[0,3,3,0],[2,2,3,1],[0,2,2,1]],[[0,1,2,1],[0,3,4,0],[2,2,3,1],[0,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,2,4,1],[0,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,2,3,1],[0,3,2,1]],[[0,1,2,1],[0,3,3,0],[2,2,3,1],[0,2,3,1]],[[0,1,2,1],[0,3,3,0],[2,2,3,1],[0,2,2,2]],[[0,1,3,1],[0,3,3,0],[2,2,3,2],[0,2,1,1]],[[0,1,2,2],[0,3,3,0],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[0,3,4,0],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[0,3,3,0],[2,2,4,2],[0,2,1,1]],[[0,1,2,1],[0,3,3,0],[2,2,3,3],[0,2,1,1]],[[0,1,2,1],[0,3,3,0],[2,2,3,2],[0,2,1,2]],[[0,1,3,1],[0,3,3,0],[2,2,3,2],[0,2,2,0]],[[0,1,2,2],[0,3,3,0],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[0,3,4,0],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[0,3,3,0],[2,2,4,2],[0,2,2,0]],[[0,1,2,1],[0,3,3,0],[2,2,3,3],[0,2,2,0]],[[0,1,2,1],[0,3,3,0],[2,2,3,2],[0,3,2,0]],[[0,1,2,1],[0,3,3,0],[2,2,3,2],[0,2,3,0]],[[2,2,2,1],[2,2,2,2],[1,3,0,2],[0,2,0,1]],[[0,1,2,1],[0,3,3,0],[2,4,0,2],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,0,3],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,0,2],[2,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,0,2],[1,3,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,0,2],[1,2,3,1]],[[0,1,2,1],[0,3,3,0],[2,3,0,2],[1,2,2,2]],[[0,1,2,1],[0,3,3,0],[2,4,1,1],[1,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,1,1],[2,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,1,1],[1,3,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,1,1],[1,2,3,1]],[[0,1,2,1],[0,3,3,0],[2,3,1,1],[1,2,2,2]],[[0,1,2,1],[0,3,3,0],[2,4,1,2],[0,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,1,3],[0,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,1,2],[0,3,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,1,2],[0,2,3,1]],[[0,1,2,1],[0,3,3,0],[2,3,1,2],[0,2,2,2]],[[0,1,2,1],[0,3,3,0],[2,4,1,2],[1,2,2,0]],[[0,1,2,1],[0,3,3,0],[2,3,1,2],[2,2,2,0]],[[0,1,2,1],[0,3,3,0],[2,3,1,2],[1,3,2,0]],[[0,1,2,1],[0,3,3,0],[2,3,1,2],[1,2,3,0]],[[0,1,2,1],[0,3,3,0],[2,4,2,1],[0,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,1],[0,3,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,1],[0,2,3,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,1],[0,2,2,2]],[[0,1,2,1],[0,3,3,0],[2,4,2,1],[1,2,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,1],[2,2,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,1],[1,3,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,3],[0,1,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,2],[0,1,3,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,2],[0,1,2,2]],[[0,1,2,1],[0,3,3,0],[2,4,2,2],[0,2,2,0]],[[0,1,2,1],[0,3,3,0],[2,3,2,2],[0,3,2,0]],[[0,1,2,1],[0,3,3,0],[2,3,2,2],[0,2,3,0]],[[0,1,2,1],[0,3,3,0],[2,3,2,3],[1,0,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,2],[1,0,3,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,2],[1,0,2,2]],[[0,1,2,1],[0,3,3,0],[2,4,2,2],[1,2,0,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,2],[2,2,0,1]],[[0,1,2,1],[0,3,3,0],[2,3,2,2],[1,3,0,1]],[[0,1,2,1],[0,3,3,0],[2,4,2,2],[1,2,1,0]],[[0,1,2,1],[0,3,3,0],[2,3,2,2],[2,2,1,0]],[[0,1,2,1],[0,3,3,0],[2,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,2,2,3],[1,3,0,2],[0,1,2,0]],[[1,2,2,1],[3,2,2,2],[1,3,0,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[1,3,0,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[1,3,0,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[1,3,0,2],[0,1,2,0]],[[0,1,2,1],[0,3,3,0],[2,4,3,0],[0,2,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,0],[0,3,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,0],[0,2,3,1]],[[0,1,3,1],[0,3,3,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,2],[0,3,3,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[0,3,4,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[0,3,3,0],[2,4,3,1],[0,1,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,4,1],[0,1,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,1],[0,1,3,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,1],[0,1,2,2]],[[0,1,3,1],[0,3,3,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,2],[0,3,3,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[0,3,4,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[0,3,3,0],[2,4,3,1],[0,2,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,4,1],[0,2,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,1],[0,3,1,1]],[[0,1,3,1],[0,3,3,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,2],[0,3,3,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[0,3,4,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[0,3,3,0],[2,4,3,1],[1,0,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,4,1],[1,0,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,1],[1,0,3,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,1],[1,0,2,2]],[[0,1,3,1],[0,3,3,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,2],[0,3,3,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[0,3,4,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[0,3,3,0],[2,4,3,1],[1,1,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,4,1],[1,1,1,1]],[[2,2,2,1],[2,2,2,2],[1,3,0,2],[0,1,2,0]],[[1,2,2,1],[2,2,2,3],[1,3,0,2],[0,1,1,1]],[[1,2,2,1],[3,2,2,2],[1,3,0,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[1,3,0,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[1,3,0,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[1,3,0,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[1,3,0,2],[0,1,1,1]],[[0,1,3,1],[0,3,3,0],[2,3,3,2],[0,0,2,1]],[[0,1,2,2],[0,3,3,0],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[0,3,4,0],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,4,2],[0,0,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,3],[0,0,2,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,2],[0,0,2,2]],[[0,1,3,1],[0,3,3,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,2],[0,3,3,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[0,3,4,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[0,3,3,0],[2,4,3,2],[0,1,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,4,2],[0,1,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,3],[0,1,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,2],[0,1,1,2]],[[0,1,3,1],[0,3,3,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,2],[0,3,3,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[0,3,4,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[0,3,3,0],[2,4,3,2],[0,1,2,0]],[[0,1,2,1],[0,3,3,0],[2,3,4,2],[0,1,2,0]],[[0,1,2,1],[0,3,3,0],[2,3,3,3],[0,1,2,0]],[[0,1,2,1],[0,3,3,0],[2,3,3,2],[0,1,3,0]],[[0,1,3,1],[0,3,3,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,2],[0,3,3,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[0,3,4,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[0,3,3,0],[2,4,3,2],[0,2,0,1]],[[0,1,2,1],[0,3,3,0],[2,3,4,2],[0,2,0,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,3],[0,2,0,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,2],[0,3,0,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,2],[0,2,0,2]],[[0,1,3,1],[0,3,3,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,2],[0,3,3,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[0,3,4,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[0,3,3,0],[2,4,3,2],[0,2,1,0]],[[0,1,2,1],[0,3,3,0],[2,3,4,2],[0,2,1,0]],[[0,1,2,1],[0,3,3,0],[2,3,3,3],[0,2,1,0]],[[0,1,2,1],[0,3,3,0],[2,3,3,2],[0,3,1,0]],[[0,1,3,1],[0,3,3,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,2],[0,3,3,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[0,3,4,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[0,3,3,0],[2,4,3,2],[1,0,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,4,2],[1,0,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,3],[1,0,1,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,2],[1,0,1,2]],[[0,1,3,1],[0,3,3,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,2],[0,3,3,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[0,3,4,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[0,3,3,0],[2,4,3,2],[1,0,2,0]],[[0,1,2,1],[0,3,3,0],[2,3,4,2],[1,0,2,0]],[[0,1,2,1],[0,3,3,0],[2,3,3,3],[1,0,2,0]],[[0,1,2,1],[0,3,3,0],[2,3,3,2],[1,0,3,0]],[[0,1,3,1],[0,3,3,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,2],[0,3,3,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[0,3,4,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[0,3,3,0],[2,4,3,2],[1,1,0,1]],[[0,1,2,1],[0,3,3,0],[2,3,4,2],[1,1,0,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,3],[1,1,0,1]],[[0,1,2,1],[0,3,3,0],[2,3,3,2],[1,1,0,2]],[[0,1,3,1],[0,3,3,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,2],[0,3,3,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[0,3,4,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[0,3,3,0],[2,4,3,2],[1,1,1,0]],[[0,1,2,1],[0,3,3,0],[2,3,4,2],[1,1,1,0]],[[0,1,2,1],[0,3,3,0],[2,3,3,3],[1,1,1,0]],[[0,1,3,1],[0,3,3,1],[0,3,1,2],[1,2,2,1]],[[0,1,2,2],[0,3,3,1],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,4,1],[0,3,1,2],[1,2,2,1]],[[0,1,3,1],[0,3,3,1],[0,3,2,2],[1,2,1,1]],[[0,1,2,2],[0,3,3,1],[0,3,2,2],[1,2,1,1]],[[0,1,2,1],[0,3,4,1],[0,3,2,2],[1,2,1,1]],[[0,1,3,1],[0,3,3,1],[0,3,2,2],[1,2,2,0]],[[0,1,2,2],[0,3,3,1],[0,3,2,2],[1,2,2,0]],[[0,1,2,1],[0,3,4,1],[0,3,2,2],[1,2,2,0]],[[0,1,3,1],[0,3,3,1],[0,3,3,0],[1,2,2,1]],[[0,1,2,2],[0,3,3,1],[0,3,3,0],[1,2,2,1]],[[0,1,2,1],[0,3,4,1],[0,3,3,0],[1,2,2,1]],[[0,1,2,1],[0,3,3,1],[0,3,4,0],[1,2,2,1]],[[0,1,2,1],[0,3,3,1],[0,3,3,0],[1,3,2,1]],[[0,1,2,1],[0,3,3,1],[0,3,3,0],[1,2,3,1]],[[0,1,2,1],[0,3,3,1],[0,3,3,0],[1,2,2,2]],[[0,1,3,1],[0,3,3,1],[0,3,3,1],[1,2,1,1]],[[0,1,2,2],[0,3,3,1],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,4,1],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,3,1],[0,3,4,1],[1,2,1,1]],[[0,1,3,1],[0,3,3,1],[0,3,3,1],[1,2,2,0]],[[0,1,2,2],[0,3,3,1],[0,3,3,1],[1,2,2,0]],[[0,1,2,1],[0,3,4,1],[0,3,3,1],[1,2,2,0]],[[0,1,2,1],[0,3,3,1],[0,3,4,1],[1,2,2,0]],[[0,1,2,1],[0,3,3,1],[0,3,3,1],[1,3,2,0]],[[0,1,2,1],[0,3,3,1],[0,3,3,1],[1,2,3,0]],[[0,1,3,1],[0,3,3,1],[1,2,1,2],[1,2,2,1]],[[0,1,2,2],[0,3,3,1],[1,2,1,2],[1,2,2,1]],[[0,1,2,1],[0,3,4,1],[1,2,1,2],[1,2,2,1]],[[0,1,3,1],[0,3,3,1],[1,2,2,2],[1,2,1,1]],[[0,1,2,2],[0,3,3,1],[1,2,2,2],[1,2,1,1]],[[0,1,2,1],[0,3,4,1],[1,2,2,2],[1,2,1,1]],[[0,1,3,1],[0,3,3,1],[1,2,2,2],[1,2,2,0]],[[0,1,2,2],[0,3,3,1],[1,2,2,2],[1,2,2,0]],[[0,1,2,1],[0,3,4,1],[1,2,2,2],[1,2,2,0]],[[0,1,3,1],[0,3,3,1],[1,2,3,0],[1,2,2,1]],[[0,1,2,2],[0,3,3,1],[1,2,3,0],[1,2,2,1]],[[0,1,2,1],[0,3,4,1],[1,2,3,0],[1,2,2,1]],[[0,1,2,1],[0,3,3,1],[1,2,4,0],[1,2,2,1]],[[0,1,2,1],[0,3,3,1],[1,2,3,0],[2,2,2,1]],[[0,1,2,1],[0,3,3,1],[1,2,3,0],[1,3,2,1]],[[0,1,2,1],[0,3,3,1],[1,2,3,0],[1,2,3,1]],[[0,1,2,1],[0,3,3,1],[1,2,3,0],[1,2,2,2]],[[0,1,3,1],[0,3,3,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,2],[0,3,3,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,4,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[0,3,3,1],[1,2,4,1],[1,2,1,1]],[[0,1,3,1],[0,3,3,1],[1,2,3,1],[1,2,2,0]],[[0,1,2,2],[0,3,3,1],[1,2,3,1],[1,2,2,0]],[[0,1,2,1],[0,3,4,1],[1,2,3,1],[1,2,2,0]],[[0,1,2,1],[0,3,3,1],[1,2,4,1],[1,2,2,0]],[[0,1,2,1],[0,3,3,1],[1,2,3,1],[2,2,2,0]],[[0,1,2,1],[0,3,3,1],[1,2,3,1],[1,3,2,0]],[[0,1,2,1],[0,3,3,1],[1,2,3,1],[1,2,3,0]],[[0,1,3,1],[0,3,3,1],[1,3,0,2],[1,2,2,1]],[[0,1,2,2],[0,3,3,1],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[0,3,4,1],[1,3,0,2],[1,2,2,1]],[[0,1,3,1],[0,3,3,1],[1,3,1,2],[1,1,2,1]],[[0,1,2,2],[0,3,3,1],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[0,3,4,1],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[0,3,3,1],[1,4,2,0],[1,2,2,1]],[[0,1,2,1],[0,3,3,1],[1,3,2,0],[2,2,2,1]],[[0,1,2,1],[0,3,3,1],[1,3,2,0],[1,3,2,1]],[[0,1,2,1],[0,3,3,1],[1,3,2,0],[1,2,3,1]],[[0,1,2,1],[0,3,3,1],[1,3,2,0],[1,2,2,2]],[[0,1,2,1],[0,3,3,1],[1,4,2,1],[1,2,2,0]],[[0,1,2,1],[0,3,3,1],[1,3,2,1],[2,2,2,0]],[[0,1,2,1],[0,3,3,1],[1,3,2,1],[1,3,2,0]],[[0,1,2,1],[0,3,3,1],[1,3,2,1],[1,2,3,0]],[[0,1,3,1],[0,3,3,1],[1,3,2,2],[1,0,2,1]],[[0,1,2,2],[0,3,3,1],[1,3,2,2],[1,0,2,1]],[[0,1,2,1],[0,3,4,1],[1,3,2,2],[1,0,2,1]],[[0,1,3,1],[0,3,3,1],[1,3,2,2],[1,1,1,1]],[[0,1,2,2],[0,3,3,1],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[0,3,4,1],[1,3,2,2],[1,1,1,1]],[[0,1,3,1],[0,3,3,1],[1,3,2,2],[1,1,2,0]],[[0,1,2,2],[0,3,3,1],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[0,3,4,1],[1,3,2,2],[1,1,2,0]],[[0,1,3,1],[0,3,3,1],[1,3,2,2],[1,2,0,1]],[[0,1,2,2],[0,3,3,1],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[0,3,4,1],[1,3,2,2],[1,2,0,1]],[[0,1,3,1],[0,3,3,1],[1,3,2,2],[1,2,1,0]],[[0,1,2,2],[0,3,3,1],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[0,3,4,1],[1,3,2,2],[1,2,1,0]],[[0,1,3,1],[0,3,3,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,2],[0,3,3,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[0,3,4,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[0,3,3,1],[1,4,3,0],[1,1,2,1]],[[0,1,2,1],[0,3,3,1],[1,3,4,0],[1,1,2,1]],[[0,1,2,1],[0,3,3,1],[1,3,3,0],[1,1,3,1]],[[0,1,2,1],[0,3,3,1],[1,3,3,0],[1,1,2,2]],[[0,1,3,1],[0,3,3,1],[1,3,3,0],[1,2,1,1]],[[0,1,2,2],[0,3,3,1],[1,3,3,0],[1,2,1,1]],[[0,1,2,1],[0,3,4,1],[1,3,3,0],[1,2,1,1]],[[0,1,2,1],[0,3,3,1],[1,4,3,0],[1,2,1,1]],[[0,1,2,1],[0,3,3,1],[1,3,4,0],[1,2,1,1]],[[0,1,2,1],[0,3,3,1],[1,3,3,0],[2,2,1,1]],[[0,1,2,1],[0,3,3,1],[1,3,3,0],[1,3,1,1]],[[0,1,3,1],[0,3,3,1],[1,3,3,1],[1,0,2,1]],[[0,1,2,2],[0,3,3,1],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[0,3,4,1],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[0,3,3,1],[1,3,4,1],[1,0,2,1]],[[0,1,3,1],[0,3,3,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,2],[0,3,3,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[0,3,4,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[0,3,3,1],[1,4,3,1],[1,1,1,1]],[[0,1,2,1],[0,3,3,1],[1,3,4,1],[1,1,1,1]],[[0,1,3,1],[0,3,3,1],[1,3,3,1],[1,1,2,0]],[[0,1,2,2],[0,3,3,1],[1,3,3,1],[1,1,2,0]],[[0,1,2,1],[0,3,4,1],[1,3,3,1],[1,1,2,0]],[[0,1,2,1],[0,3,3,1],[1,4,3,1],[1,1,2,0]],[[0,1,2,1],[0,3,3,1],[1,3,4,1],[1,1,2,0]],[[0,1,2,1],[0,3,3,1],[1,3,3,1],[1,1,3,0]],[[0,1,3,1],[0,3,3,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,2],[0,3,3,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[0,3,4,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[0,3,3,1],[1,4,3,1],[1,2,0,1]],[[0,1,2,1],[0,3,3,1],[1,3,4,1],[1,2,0,1]],[[0,1,2,1],[0,3,3,1],[1,3,3,1],[2,2,0,1]],[[0,1,2,1],[0,3,3,1],[1,3,3,1],[1,3,0,1]],[[0,1,3,1],[0,3,3,1],[1,3,3,1],[1,2,1,0]],[[0,1,2,2],[0,3,3,1],[1,3,3,1],[1,2,1,0]],[[0,1,2,1],[0,3,4,1],[1,3,3,1],[1,2,1,0]],[[0,1,2,1],[0,3,3,1],[1,4,3,1],[1,2,1,0]],[[0,1,2,1],[0,3,3,1],[1,3,4,1],[1,2,1,0]],[[0,1,2,1],[0,3,3,1],[1,3,3,1],[2,2,1,0]],[[0,1,2,1],[0,3,3,1],[1,3,3,1],[1,3,1,0]],[[0,1,3,1],[0,3,3,1],[1,3,3,2],[1,1,0,1]],[[0,1,2,2],[0,3,3,1],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[0,3,4,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,2],[1,2,3,0],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[1,2,3,0],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[1,2,3,0],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[1,2,3,0],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[1,2,3,0],[1,1,1,0]],[[1,2,2,1],[3,2,2,2],[1,2,3,0],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[1,2,3,0],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[1,2,3,0],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[1,2,3,0],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[1,2,3,0],[1,1,0,1]],[[1,2,2,1],[3,2,2,2],[1,2,3,0],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[1,2,3,0],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[1,2,3,0],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[1,2,3,0],[1,0,2,0]],[[0,1,3,1],[0,3,3,1],[2,2,1,2],[0,2,2,1]],[[0,1,2,2],[0,3,3,1],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[0,3,4,1],[2,2,1,2],[0,2,2,1]],[[0,1,3,1],[0,3,3,1],[2,2,2,2],[0,2,1,1]],[[0,1,2,2],[0,3,3,1],[2,2,2,2],[0,2,1,1]],[[0,1,2,1],[0,3,4,1],[2,2,2,2],[0,2,1,1]],[[0,1,3,1],[0,3,3,1],[2,2,2,2],[0,2,2,0]],[[0,1,2,2],[0,3,3,1],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[0,3,4,1],[2,2,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,2],[1,2,3,0],[1,0,2,0]],[[1,2,2,1],[3,2,2,2],[1,2,3,0],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[1,2,3,0],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[1,2,3,0],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[1,2,3,0],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[1,2,3,0],[1,0,1,1]],[[0,1,3,1],[0,3,3,1],[2,2,3,0],[0,2,2,1]],[[0,1,2,2],[0,3,3,1],[2,2,3,0],[0,2,2,1]],[[0,1,2,1],[0,3,4,1],[2,2,3,0],[0,2,2,1]],[[0,1,2,1],[0,3,3,1],[2,2,4,0],[0,2,2,1]],[[0,1,2,1],[0,3,3,1],[2,2,3,0],[0,3,2,1]],[[0,1,2,1],[0,3,3,1],[2,2,3,0],[0,2,3,1]],[[0,1,2,1],[0,3,3,1],[2,2,3,0],[0,2,2,2]],[[0,1,3,1],[0,3,3,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,2],[0,3,3,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[0,3,4,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[0,3,3,1],[2,2,4,1],[0,2,1,1]],[[0,1,3,1],[0,3,3,1],[2,2,3,1],[0,2,2,0]],[[0,1,2,2],[0,3,3,1],[2,2,3,1],[0,2,2,0]],[[0,1,2,1],[0,3,4,1],[2,2,3,1],[0,2,2,0]],[[0,1,2,1],[0,3,3,1],[2,2,4,1],[0,2,2,0]],[[0,1,2,1],[0,3,3,1],[2,2,3,1],[0,3,2,0]],[[0,1,2,1],[0,3,3,1],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[3,2,2,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[1,2,3,0],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[1,2,3,0],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[1,2,3,0],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,1],[3,2,2,2],[1,2,3,0],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[1,2,3,0],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[1,2,3,0],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[1,2,3,0],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[1,2,3,0],[0,2,0,1]],[[1,2,2,1],[3,2,2,2],[1,2,3,0],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[1,2,3,0],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[1,2,3,0],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[1,2,3,0],[0,1,2,0]],[[2,2,2,1],[2,2,2,2],[1,2,3,0],[0,1,2,0]],[[1,2,2,1],[3,2,2,2],[1,2,3,0],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[1,2,3,0],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[1,2,3,0],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[1,2,3,0],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[1,2,3,0],[0,1,1,1]],[[0,1,2,1],[0,3,3,1],[2,4,0,1],[1,2,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,0,1],[2,2,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,0,1],[1,3,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,0,1],[1,2,3,1]],[[0,1,2,1],[0,3,3,1],[2,3,0,1],[1,2,2,2]],[[0,1,3,1],[0,3,3,1],[2,3,0,2],[0,2,2,1]],[[0,1,2,2],[0,3,3,1],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[0,3,4,1],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[0,3,3,1],[2,4,0,2],[1,2,1,1]],[[0,1,2,1],[0,3,3,1],[2,3,0,2],[2,2,1,1]],[[0,1,2,1],[0,3,3,1],[2,3,0,2],[1,3,1,1]],[[0,1,2,1],[0,3,3,1],[2,4,0,2],[1,2,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,0,2],[2,2,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,0,2],[1,3,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,0,2],[1,2,3,0]],[[0,1,2,1],[0,3,3,1],[2,4,1,0],[1,2,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,1,0],[2,2,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,1,0],[1,3,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,1,0],[1,2,3,1]],[[0,1,2,1],[0,3,3,1],[2,3,1,0],[1,2,2,2]],[[0,1,2,1],[0,3,3,1],[2,4,1,1],[1,2,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,1,1],[2,2,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,1,1],[1,3,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,1,1],[1,2,3,0]],[[0,1,3,1],[0,3,3,1],[2,3,1,2],[0,1,2,1]],[[0,1,2,2],[0,3,3,1],[2,3,1,2],[0,1,2,1]],[[0,1,2,1],[0,3,4,1],[2,3,1,2],[0,1,2,1]],[[0,1,3,1],[0,3,3,1],[2,3,1,2],[1,0,2,1]],[[0,1,2,2],[0,3,3,1],[2,3,1,2],[1,0,2,1]],[[0,1,2,1],[0,3,4,1],[2,3,1,2],[1,0,2,1]],[[0,1,2,1],[0,3,3,1],[2,4,1,2],[1,2,0,1]],[[0,1,2,1],[0,3,3,1],[2,3,1,2],[2,2,0,1]],[[0,1,2,1],[0,3,3,1],[2,3,1,2],[1,3,0,1]],[[0,1,2,1],[0,3,3,1],[2,4,1,2],[1,2,1,0]],[[0,1,2,1],[0,3,3,1],[2,3,1,2],[2,2,1,0]],[[0,1,2,1],[0,3,3,1],[2,3,1,2],[1,3,1,0]],[[0,1,2,1],[0,3,3,1],[2,4,2,0],[0,2,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,2,0],[0,3,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,2,0],[0,2,3,1]],[[0,1,2,1],[0,3,3,1],[2,3,2,0],[0,2,2,2]],[[0,1,2,1],[0,3,3,1],[2,4,2,0],[1,2,1,1]],[[0,1,2,1],[0,3,3,1],[2,3,2,0],[2,2,1,1]],[[0,1,2,1],[0,3,3,1],[2,3,2,0],[1,3,1,1]],[[0,1,2,1],[0,3,3,1],[2,4,2,1],[0,2,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,2,1],[0,3,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,2,1],[0,2,3,0]],[[0,1,2,1],[0,3,3,1],[2,4,2,1],[1,2,0,1]],[[0,1,2,1],[0,3,3,1],[2,3,2,1],[2,2,0,1]],[[0,1,2,1],[0,3,3,1],[2,3,2,1],[1,3,0,1]],[[0,1,2,1],[0,3,3,1],[2,4,2,1],[1,2,1,0]],[[0,1,2,1],[0,3,3,1],[2,3,2,1],[2,2,1,0]],[[0,1,2,1],[0,3,3,1],[2,3,2,1],[1,3,1,0]],[[0,1,3,1],[0,3,3,1],[2,3,2,2],[0,0,2,1]],[[0,1,2,2],[0,3,3,1],[2,3,2,2],[0,0,2,1]],[[0,1,2,1],[0,3,4,1],[2,3,2,2],[0,0,2,1]],[[0,1,3,1],[0,3,3,1],[2,3,2,2],[0,1,1,1]],[[0,1,2,2],[0,3,3,1],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[0,3,4,1],[2,3,2,2],[0,1,1,1]],[[0,1,3,1],[0,3,3,1],[2,3,2,2],[0,1,2,0]],[[0,1,2,2],[0,3,3,1],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[0,3,4,1],[2,3,2,2],[0,1,2,0]],[[0,1,3,1],[0,3,3,1],[2,3,2,2],[0,2,0,1]],[[0,1,2,2],[0,3,3,1],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[0,3,4,1],[2,3,2,2],[0,2,0,1]],[[0,1,3,1],[0,3,3,1],[2,3,2,2],[0,2,1,0]],[[0,1,2,2],[0,3,3,1],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[0,3,4,1],[2,3,2,2],[0,2,1,0]],[[0,1,3,1],[0,3,3,1],[2,3,2,2],[1,0,1,1]],[[0,1,2,2],[0,3,3,1],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[0,3,4,1],[2,3,2,2],[1,0,1,1]],[[0,1,3,1],[0,3,3,1],[2,3,2,2],[1,0,2,0]],[[0,1,2,2],[0,3,3,1],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[0,3,4,1],[2,3,2,2],[1,0,2,0]],[[0,1,3,1],[0,3,3,1],[2,3,2,2],[1,1,0,1]],[[0,1,2,2],[0,3,3,1],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[0,3,4,1],[2,3,2,2],[1,1,0,1]],[[0,1,3,1],[0,3,3,1],[2,3,2,2],[1,1,1,0]],[[0,1,2,2],[0,3,3,1],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[0,3,4,1],[2,3,2,2],[1,1,1,0]],[[0,1,3,1],[0,3,3,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,2],[0,3,3,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[0,3,4,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[0,3,3,1],[2,4,3,0],[0,1,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,4,0],[0,1,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,3,0],[0,1,3,1]],[[0,1,2,1],[0,3,3,1],[2,3,3,0],[0,1,2,2]],[[0,1,3,1],[0,3,3,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,2],[0,3,3,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[0,3,4,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[0,3,3,1],[2,4,3,0],[0,2,1,1]],[[0,1,2,1],[0,3,3,1],[2,3,4,0],[0,2,1,1]],[[0,1,2,1],[0,3,3,1],[2,3,3,0],[0,3,1,1]],[[0,1,3,1],[0,3,3,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,2],[0,3,3,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[0,3,4,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[0,3,3,1],[2,4,3,0],[1,0,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,4,0],[1,0,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,3,0],[1,0,3,1]],[[0,1,2,1],[0,3,3,1],[2,3,3,0],[1,0,2,2]],[[0,1,3,1],[0,3,3,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,2],[0,3,3,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[0,3,4,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[0,3,3,1],[2,4,3,0],[1,1,1,1]],[[0,1,2,1],[0,3,3,1],[2,3,4,0],[1,1,1,1]],[[0,1,2,1],[0,3,3,1],[2,4,3,0],[1,2,1,0]],[[0,1,2,1],[0,3,3,1],[2,3,3,0],[2,2,1,0]],[[0,1,2,1],[0,3,3,1],[2,3,3,0],[1,3,1,0]],[[0,1,3,1],[0,3,3,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,2],[0,3,3,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[0,3,4,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[0,3,3,1],[2,3,4,1],[0,0,2,1]],[[0,1,3,1],[0,3,3,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,2],[0,3,3,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[0,3,4,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[0,3,3,1],[2,4,3,1],[0,1,1,1]],[[0,1,2,1],[0,3,3,1],[2,3,4,1],[0,1,1,1]],[[0,1,3,1],[0,3,3,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,2],[0,3,3,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[0,3,4,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[0,3,3,1],[2,4,3,1],[0,1,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,4,1],[0,1,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,3,1],[0,1,3,0]],[[0,1,3,1],[0,3,3,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,2],[0,3,3,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[0,3,4,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[0,3,3,1],[2,4,3,1],[0,2,0,1]],[[0,1,2,1],[0,3,3,1],[2,3,4,1],[0,2,0,1]],[[0,1,2,1],[0,3,3,1],[2,3,3,1],[0,3,0,1]],[[0,1,3,1],[0,3,3,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,2],[0,3,3,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[0,3,4,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[0,3,3,1],[2,4,3,1],[0,2,1,0]],[[0,1,2,1],[0,3,3,1],[2,3,4,1],[0,2,1,0]],[[0,1,2,1],[0,3,3,1],[2,3,3,1],[0,3,1,0]],[[0,1,3,1],[0,3,3,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,2],[0,3,3,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[0,3,4,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[0,3,3,1],[2,4,3,1],[1,0,1,1]],[[0,1,2,1],[0,3,3,1],[2,3,4,1],[1,0,1,1]],[[0,1,3,1],[0,3,3,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,2],[0,3,3,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[0,3,4,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[0,3,3,1],[2,4,3,1],[1,0,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,4,1],[1,0,2,0]],[[0,1,2,1],[0,3,3,1],[2,3,3,1],[1,0,3,0]],[[0,1,3,1],[0,3,3,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,2],[0,3,3,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[0,3,4,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[0,3,3,1],[2,4,3,1],[1,1,0,1]],[[0,1,2,1],[0,3,3,1],[2,3,4,1],[1,1,0,1]],[[0,1,3,1],[0,3,3,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,2],[0,3,3,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[0,3,4,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[0,3,3,1],[2,4,3,1],[1,1,1,0]],[[0,1,2,1],[0,3,3,1],[2,3,4,1],[1,1,1,0]],[[0,1,3,1],[0,3,3,1],[2,3,3,2],[0,1,0,1]],[[0,1,2,2],[0,3,3,1],[2,3,3,2],[0,1,0,1]],[[0,1,2,1],[0,3,4,1],[2,3,3,2],[0,1,0,1]],[[0,1,3,1],[0,3,3,1],[2,3,3,2],[1,0,0,1]],[[0,1,2,2],[0,3,3,1],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[0,3,4,1],[2,3,3,2],[1,0,0,1]],[[1,2,2,1],[3,2,2,2],[1,1,3,0],[0,2,2,0]],[[1,2,2,2],[2,2,2,2],[1,1,3,0],[0,2,2,0]],[[1,2,3,1],[2,2,2,2],[1,1,3,0],[0,2,2,0]],[[1,3,2,1],[2,2,2,2],[1,1,3,0],[0,2,2,0]],[[2,2,2,1],[2,2,2,2],[1,1,3,0],[0,2,2,0]],[[0,1,2,2],[0,3,3,2],[0,0,3,2],[1,2,2,1]],[[0,1,2,1],[0,3,3,3],[0,0,3,2],[1,2,2,1]],[[0,1,2,1],[0,3,3,2],[0,0,3,3],[1,2,2,1]],[[0,1,2,1],[0,3,3,2],[0,0,3,2],[1,2,3,1]],[[0,1,2,1],[0,3,3,2],[0,0,3,2],[1,2,2,2]],[[0,1,3,1],[0,3,3,2],[0,3,3,0],[1,2,2,0]],[[0,1,2,2],[0,3,3,2],[0,3,3,0],[1,2,2,0]],[[0,1,2,1],[0,3,4,2],[0,3,3,0],[1,2,2,0]],[[1,2,2,1],[3,2,2,2],[1,0,3,0],[1,2,2,0]],[[1,2,2,2],[2,2,2,2],[1,0,3,0],[1,2,2,0]],[[1,2,3,1],[2,2,2,2],[1,0,3,0],[1,2,2,0]],[[1,3,2,1],[2,2,2,2],[1,0,3,0],[1,2,2,0]],[[2,2,2,1],[2,2,2,2],[1,0,3,0],[1,2,2,0]],[[0,1,3,1],[0,3,3,2],[1,2,3,0],[1,2,2,0]],[[0,1,2,2],[0,3,3,2],[1,2,3,0],[1,2,2,0]],[[0,1,2,1],[0,3,4,2],[1,2,3,0],[1,2,2,0]],[[1,2,2,1],[2,2,2,2],[0,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,2,2,3],[0,3,3,2],[0,0,0,1]],[[1,2,2,2],[2,2,2,2],[0,3,3,2],[0,0,0,1]],[[1,2,3,1],[2,2,2,2],[0,3,3,2],[0,0,0,1]],[[1,3,2,1],[2,2,2,2],[0,3,3,2],[0,0,0,1]],[[2,2,2,1],[2,2,2,2],[0,3,3,2],[0,0,0,1]],[[1,2,2,1],[2,2,2,3],[0,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,2,2,2],[0,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,2,2,2],[0,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,2,2,2],[0,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,2,2,2],[0,3,3,1],[1,1,0,0]],[[0,1,3,1],[0,3,3,2],[1,3,3,0],[1,1,1,1]],[[0,1,2,2],[0,3,3,2],[1,3,3,0],[1,1,1,1]],[[0,1,2,1],[0,3,4,2],[1,3,3,0],[1,1,1,1]],[[0,1,3,1],[0,3,3,2],[1,3,3,0],[1,1,2,0]],[[0,1,2,2],[0,3,3,2],[1,3,3,0],[1,1,2,0]],[[0,1,2,1],[0,3,4,2],[1,3,3,0],[1,1,2,0]],[[0,1,3,1],[0,3,3,2],[1,3,3,0],[1,2,0,1]],[[0,1,2,2],[0,3,3,2],[1,3,3,0],[1,2,0,1]],[[0,1,2,1],[0,3,4,2],[1,3,3,0],[1,2,0,1]],[[0,1,3,1],[0,3,3,2],[1,3,3,0],[1,2,1,0]],[[0,1,2,2],[0,3,3,2],[1,3,3,0],[1,2,1,0]],[[0,1,2,1],[0,3,4,2],[1,3,3,0],[1,2,1,0]],[[1,2,2,1],[2,2,2,3],[0,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,2,2,2],[0,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,2,2,2],[0,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,2,2,2],[0,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,2,2,2],[0,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,2,2,3],[0,3,3,1],[0,0,2,0]],[[1,2,2,2],[2,2,2,2],[0,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,2,2,2],[0,3,3,1],[0,0,2,0]],[[1,3,2,1],[2,2,2,2],[0,3,3,1],[0,0,2,0]],[[2,2,2,1],[2,2,2,2],[0,3,3,1],[0,0,2,0]],[[1,2,2,1],[2,2,2,3],[0,3,3,1],[0,0,1,1]],[[1,2,2,2],[2,2,2,2],[0,3,3,1],[0,0,1,1]],[[1,2,3,1],[2,2,2,2],[0,3,3,1],[0,0,1,1]],[[1,3,2,1],[2,2,2,2],[0,3,3,1],[0,0,1,1]],[[2,2,2,1],[2,2,2,2],[0,3,3,1],[0,0,1,1]],[[1,2,2,1],[3,2,2,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,2],[2,2,2,2],[0,3,3,0],[1,2,0,0]],[[1,2,3,1],[2,2,2,2],[0,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,2,2,2],[0,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,2,2,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,1],[2,2,2,3],[0,3,3,0],[0,0,2,1]],[[1,2,2,2],[2,2,2,2],[0,3,3,0],[0,0,2,1]],[[1,2,3,1],[2,2,2,2],[0,3,3,0],[0,0,2,1]],[[1,3,2,1],[2,2,2,2],[0,3,3,0],[0,0,2,1]],[[2,2,2,1],[2,2,2,2],[0,3,3,0],[0,0,2,1]],[[1,2,2,1],[2,2,2,2],[0,3,2,3],[0,0,2,0]],[[1,2,2,1],[2,2,2,3],[0,3,2,2],[0,0,2,0]],[[1,2,2,2],[2,2,2,2],[0,3,2,2],[0,0,2,0]],[[1,2,3,1],[2,2,2,2],[0,3,2,2],[0,0,2,0]],[[1,3,2,1],[2,2,2,2],[0,3,2,2],[0,0,2,0]],[[2,2,2,1],[2,2,2,2],[0,3,2,2],[0,0,2,0]],[[1,2,2,1],[2,2,2,2],[0,3,2,2],[0,0,1,2]],[[1,2,2,1],[2,2,2,2],[0,3,2,3],[0,0,1,1]],[[1,2,2,1],[2,2,2,3],[0,3,2,2],[0,0,1,1]],[[1,2,2,2],[2,2,2,2],[0,3,2,2],[0,0,1,1]],[[1,2,3,1],[2,2,2,2],[0,3,2,2],[0,0,1,1]],[[1,3,2,1],[2,2,2,2],[0,3,2,2],[0,0,1,1]],[[2,2,2,1],[2,2,2,2],[0,3,2,2],[0,0,1,1]],[[1,2,2,1],[2,2,2,3],[0,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[0,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[0,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[0,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[0,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,2,2,3],[0,3,2,1],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[0,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[0,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[0,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[0,3,2,1],[1,1,0,1]],[[0,1,3,1],[0,3,3,2],[2,2,3,0],[0,2,2,0]],[[0,1,2,2],[0,3,3,2],[2,2,3,0],[0,2,2,0]],[[0,1,2,1],[0,3,4,2],[2,2,3,0],[0,2,2,0]],[[1,2,2,1],[2,2,2,3],[0,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[0,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[0,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[0,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[0,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,2,2,3],[0,3,2,1],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[0,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[0,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[0,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[0,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,2,2,3],[0,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[0,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[0,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[0,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[0,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,2,2,3],[0,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[0,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[0,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[0,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[0,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,2,2,3],[0,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[0,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[0,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[0,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,2,2,2],[0,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,2,2,3],[0,3,2,1],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[0,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[0,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[0,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[0,3,2,1],[0,1,1,1]],[[1,2,2,1],[3,2,2,2],[0,3,2,0],[1,2,1,0]],[[1,2,2,2],[2,2,2,2],[0,3,2,0],[1,2,1,0]],[[1,2,3,1],[2,2,2,2],[0,3,2,0],[1,2,1,0]],[[1,3,2,1],[2,2,2,2],[0,3,2,0],[1,2,1,0]],[[2,2,2,1],[2,2,2,2],[0,3,2,0],[1,2,1,0]],[[1,2,2,1],[3,2,2,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,2],[2,2,2,2],[0,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,2,2,2],[0,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,2,2,2],[0,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,2,2,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,1],[3,2,2,2],[0,3,2,0],[1,1,2,0]],[[1,2,2,2],[2,2,2,2],[0,3,2,0],[1,1,2,0]],[[1,2,3,1],[2,2,2,2],[0,3,2,0],[1,1,2,0]],[[1,3,2,1],[2,2,2,2],[0,3,2,0],[1,1,2,0]],[[2,2,2,1],[2,2,2,2],[0,3,2,0],[1,1,2,0]],[[1,2,2,1],[2,2,2,3],[0,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,2,2,2],[0,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,2,2,2],[0,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,2,2,2],[0,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,2,2,2],[0,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,2,2,3],[0,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,2,2,2],[0,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,2,2,2],[0,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,2,2,2],[0,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,2,2,2],[0,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,2,2,3],[0,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,2,2,2],[0,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,2,2,2],[0,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,2,2,2],[0,3,2,0],[0,1,2,1]],[[0,1,2,1],[0,3,3,2],[2,4,1,0],[1,2,2,0]],[[0,1,2,1],[0,3,3,2],[2,3,1,0],[2,2,2,0]],[[0,1,2,1],[0,3,3,2],[2,3,1,0],[1,3,2,0]],[[2,2,2,1],[2,2,2,2],[0,3,2,0],[0,1,2,1]],[[1,2,2,1],[2,2,2,3],[0,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[0,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[0,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[0,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[0,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,2],[0,3,1,3],[1,1,0,1]],[[1,2,2,1],[2,2,2,3],[0,3,1,2],[1,1,0,1]],[[0,1,2,1],[0,3,3,2],[2,4,2,0],[1,2,1,0]],[[0,1,2,1],[0,3,3,2],[2,3,2,0],[2,2,1,0]],[[0,1,2,1],[0,3,3,2],[2,3,2,0],[1,3,1,0]],[[1,2,2,2],[2,2,2,2],[0,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[0,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[0,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[0,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,2],[0,3,1,3],[1,0,2,0]],[[1,2,2,1],[2,2,2,3],[0,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[0,3,1,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[0,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[0,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[0,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,2,2,2],[0,3,1,2],[1,0,1,2]],[[1,2,2,1],[2,2,2,2],[0,3,1,3],[1,0,1,1]],[[1,2,2,1],[2,2,2,3],[0,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[0,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[0,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[0,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[0,3,1,2],[1,0,1,1]],[[1,2,2,1],[2,2,2,2],[0,3,1,3],[0,2,1,0]],[[1,2,2,1],[2,2,2,3],[0,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[0,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[0,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[0,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[0,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,2],[0,3,1,2],[0,2,0,2]],[[1,2,2,1],[2,2,2,2],[0,3,1,3],[0,2,0,1]],[[1,2,2,1],[2,2,2,3],[0,3,1,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[0,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[0,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[0,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[0,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,2,2,2],[0,3,1,3],[0,1,2,0]],[[1,2,2,1],[2,2,2,3],[0,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[0,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[0,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[0,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,2],[0,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,2,2,2],[0,3,1,2],[0,1,1,2]],[[1,2,2,1],[2,2,2,2],[0,3,1,3],[0,1,1,1]],[[1,2,2,1],[2,2,2,3],[0,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[0,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[0,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[0,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[0,3,1,2],[0,1,1,1]],[[1,2,2,1],[2,2,2,3],[0,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,2,2,2],[0,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,2,2,2],[0,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,2,2,2],[0,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,2,2,2],[0,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,2,2,2],[0,3,1,0],[1,2,2,0]],[[1,2,2,2],[2,2,2,2],[0,3,1,0],[1,2,2,0]],[[1,2,3,1],[2,2,2,2],[0,3,1,0],[1,2,2,0]],[[1,3,2,1],[2,2,2,2],[0,3,1,0],[1,2,2,0]],[[2,2,2,1],[2,2,2,2],[0,3,1,0],[1,2,2,0]],[[1,2,2,1],[2,2,2,3],[0,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,2,2,2],[0,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,2,2,2],[0,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,2,2,2],[0,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,2,2,2],[0,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,2,2,3],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[3,2,2,2],[0,3,0,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,2],[0,3,0,2],[1,2,1,0]],[[0,1,3,1],[0,3,3,2],[2,3,3,0],[0,1,1,1]],[[0,1,2,2],[0,3,3,2],[2,3,3,0],[0,1,1,1]],[[0,1,2,1],[0,3,4,2],[2,3,3,0],[0,1,1,1]],[[0,1,3,1],[0,3,3,2],[2,3,3,0],[0,1,2,0]],[[0,1,2,2],[0,3,3,2],[2,3,3,0],[0,1,2,0]],[[0,1,2,1],[0,3,4,2],[2,3,3,0],[0,1,2,0]],[[0,1,3,1],[0,3,3,2],[2,3,3,0],[0,2,0,1]],[[0,1,2,2],[0,3,3,2],[2,3,3,0],[0,2,0,1]],[[0,1,2,1],[0,3,4,2],[2,3,3,0],[0,2,0,1]],[[0,1,3,1],[0,3,3,2],[2,3,3,0],[0,2,1,0]],[[0,1,2,2],[0,3,3,2],[2,3,3,0],[0,2,1,0]],[[0,1,2,1],[0,3,4,2],[2,3,3,0],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[0,3,0,2],[1,2,1,0]],[[1,3,2,1],[2,2,2,2],[0,3,0,2],[1,2,1,0]],[[2,2,2,1],[2,2,2,2],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[2,2,2,3],[0,3,0,2],[1,2,0,1]],[[1,2,2,1],[3,2,2,2],[0,3,0,2],[1,2,0,1]],[[1,2,2,2],[2,2,2,2],[0,3,0,2],[1,2,0,1]],[[1,2,3,1],[2,2,2,2],[0,3,0,2],[1,2,0,1]],[[1,3,2,1],[2,2,2,2],[0,3,0,2],[1,2,0,1]],[[2,2,2,1],[2,2,2,2],[0,3,0,2],[1,2,0,1]],[[0,1,3,1],[0,3,3,2],[2,3,3,0],[1,0,1,1]],[[0,1,2,2],[0,3,3,2],[2,3,3,0],[1,0,1,1]],[[0,1,2,1],[0,3,4,2],[2,3,3,0],[1,0,1,1]],[[0,1,3,1],[0,3,3,2],[2,3,3,0],[1,0,2,0]],[[0,1,2,2],[0,3,3,2],[2,3,3,0],[1,0,2,0]],[[0,1,2,1],[0,3,4,2],[2,3,3,0],[1,0,2,0]],[[0,1,3,1],[0,3,3,2],[2,3,3,0],[1,1,0,1]],[[0,1,2,2],[0,3,3,2],[2,3,3,0],[1,1,0,1]],[[0,1,2,1],[0,3,4,2],[2,3,3,0],[1,1,0,1]],[[0,1,3,1],[0,3,3,2],[2,3,3,0],[1,1,1,0]],[[0,1,2,2],[0,3,3,2],[2,3,3,0],[1,1,1,0]],[[0,1,2,1],[0,3,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,2,2,2],[0,3,0,2],[1,0,2,2]],[[1,2,2,1],[2,2,2,2],[0,3,0,3],[1,0,2,1]],[[1,2,2,1],[2,2,2,3],[0,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,2,2,2],[0,3,0,2],[1,0,2,1]],[[1,2,3,1],[2,2,2,2],[0,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,2,2,2],[0,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,2,2,2],[0,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,2,2,2],[0,3,0,3],[0,2,2,0]],[[1,2,2,1],[2,2,2,3],[0,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,2,2,2],[0,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,2],[0,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,2,2,2],[0,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,2],[0,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,2,2,2],[0,3,0,2],[0,2,1,2]],[[1,2,2,1],[2,2,2,2],[0,3,0,3],[0,2,1,1]],[[1,2,2,1],[2,2,2,3],[0,3,0,2],[0,2,1,1]],[[1,2,2,2],[2,2,2,2],[0,3,0,2],[0,2,1,1]],[[1,2,3,1],[2,2,2,2],[0,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,2,2,2],[0,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,2,2,2],[0,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,2,2,2],[0,3,0,2],[0,1,2,2]],[[1,2,2,1],[2,2,2,2],[0,3,0,2],[0,1,3,1]],[[1,2,2,1],[2,2,2,2],[0,3,0,3],[0,1,2,1]],[[1,2,2,1],[2,2,2,3],[0,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,2,2,2],[0,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,2,2,2],[0,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,2,2,2],[0,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,2,2,2],[0,3,0,2],[0,1,2,1]],[[1,2,2,1],[2,2,2,3],[0,3,0,1],[0,2,2,1]],[[1,2,2,2],[2,2,2,2],[0,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,2,2,2],[0,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,2,2,2],[0,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,2,2,2],[0,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,2,2,2],[0,2,3,3],[1,0,0,1]],[[1,2,2,1],[2,2,2,3],[0,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,2,2,2],[0,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,2,2,2],[0,2,3,2],[1,0,0,1]],[[1,3,2,1],[2,2,2,2],[0,2,3,2],[1,0,0,1]],[[2,2,2,1],[2,2,2,2],[0,2,3,2],[1,0,0,1]],[[1,2,2,1],[2,2,2,2],[0,2,3,3],[0,1,0,1]],[[1,2,2,1],[2,2,2,3],[0,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,2,2,2],[0,2,3,2],[0,1,0,1]],[[1,2,3,1],[2,2,2,2],[0,2,3,2],[0,1,0,1]],[[1,3,2,1],[2,2,2,2],[0,2,3,2],[0,1,0,1]],[[2,2,2,1],[2,2,2,2],[0,2,3,2],[0,1,0,1]],[[1,2,2,1],[2,2,2,3],[0,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[0,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[0,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[0,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[0,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,2,3],[0,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[0,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[0,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[0,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[0,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,2,3],[0,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[0,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[0,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[0,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[0,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,2,3],[0,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[0,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[0,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[0,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[0,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,2,3],[0,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[0,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[0,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[0,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[0,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,2,3],[0,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[0,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[0,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[0,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[0,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,2,3],[0,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[0,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[0,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[0,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,2,2],[0,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,2,3],[0,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[0,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[0,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[0,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[0,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,2,2,3],[0,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,2,2,2],[0,2,3,1],[0,0,2,1]],[[1,2,3,1],[2,2,2,2],[0,2,3,1],[0,0,2,1]],[[1,3,2,1],[2,2,2,2],[0,2,3,1],[0,0,2,1]],[[2,2,2,1],[2,2,2,2],[0,2,3,1],[0,0,2,1]],[[1,2,2,1],[3,2,2,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,2],[2,2,2,2],[0,2,3,0],[1,2,1,0]],[[1,2,3,1],[2,2,2,2],[0,2,3,0],[1,2,1,0]],[[1,3,2,1],[2,2,2,2],[0,2,3,0],[1,2,1,0]],[[2,2,2,1],[2,2,2,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,1],[3,2,2,2],[0,2,3,0],[1,2,0,1]],[[1,2,2,2],[2,2,2,2],[0,2,3,0],[1,2,0,1]],[[1,2,3,1],[2,2,2,2],[0,2,3,0],[1,2,0,1]],[[1,3,2,1],[2,2,2,2],[0,2,3,0],[1,2,0,1]],[[2,2,2,1],[2,2,2,2],[0,2,3,0],[1,2,0,1]],[[1,2,2,1],[3,2,2,2],[0,2,3,0],[1,1,2,0]],[[1,2,2,2],[2,2,2,2],[0,2,3,0],[1,1,2,0]],[[1,2,3,1],[2,2,2,2],[0,2,3,0],[1,1,2,0]],[[1,3,2,1],[2,2,2,2],[0,2,3,0],[1,1,2,0]],[[2,2,2,1],[2,2,2,2],[0,2,3,0],[1,1,2,0]],[[1,2,2,1],[2,2,2,3],[0,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,2,2],[0,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,2,2],[0,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,2,2],[0,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,2,2],[0,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,2,3],[0,2,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,2,2],[0,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,2,2],[0,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,2,2],[0,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,2,2],[0,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,2,3],[0,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,2,2],[0,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,2,2],[0,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,2,2],[0,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,2,2],[0,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,2,3],[0,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,2],[0,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,2],[0,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,2],[0,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[0,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,2],[0,2,2,3],[1,1,0,1]],[[1,2,2,1],[2,2,2,3],[0,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,2],[0,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,2],[0,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,2],[0,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,2],[0,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,2],[0,2,2,3],[1,0,2,0]],[[1,2,2,1],[2,2,2,3],[0,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[0,2,2,2],[1,0,2,0]],[[0,1,2,1],[1,0,0,2],[2,3,3,3],[1,2,2,1]],[[0,1,2,1],[1,0,0,2],[2,3,3,2],[2,2,2,1]],[[0,1,2,1],[1,0,0,2],[2,3,3,2],[1,3,2,1]],[[0,1,2,1],[1,0,0,2],[2,3,3,2],[1,2,3,1]],[[0,1,2,1],[1,0,0,2],[2,3,3,2],[1,2,2,2]],[[0,1,2,2],[1,0,1,2],[2,3,2,2],[1,2,2,1]],[[0,1,2,1],[1,0,1,3],[2,3,2,2],[1,2,2,1]],[[0,1,2,1],[1,0,1,2],[2,3,2,3],[1,2,2,1]],[[0,1,2,1],[1,0,1,2],[2,3,2,2],[2,2,2,1]],[[0,1,2,1],[1,0,1,2],[2,3,2,2],[1,3,2,1]],[[0,1,2,1],[1,0,1,2],[2,3,2,2],[1,2,3,1]],[[0,1,2,1],[1,0,1,2],[2,3,2,2],[1,2,2,2]],[[0,1,2,1],[1,0,1,2],[2,3,4,1],[1,2,2,1]],[[0,1,2,1],[1,0,1,2],[2,3,3,1],[2,2,2,1]],[[0,1,2,1],[1,0,1,2],[2,3,3,1],[1,3,2,1]],[[0,1,2,1],[1,0,1,2],[2,3,3,1],[1,2,3,1]],[[0,1,2,1],[1,0,1,2],[2,3,3,1],[1,2,2,2]],[[0,1,2,2],[1,0,1,2],[2,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,0,1,3],[2,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,0,1,2],[2,3,4,2],[1,2,1,1]],[[0,1,2,1],[1,0,1,2],[2,3,3,3],[1,2,1,1]],[[0,1,2,1],[1,0,1,2],[2,3,3,2],[1,2,1,2]],[[0,1,2,2],[1,0,1,2],[2,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,0,1,3],[2,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,0,1,2],[2,3,4,2],[1,2,2,0]],[[0,1,2,1],[1,0,1,2],[2,3,3,3],[1,2,2,0]],[[0,1,2,1],[1,0,1,2],[2,3,3,2],[2,2,2,0]],[[0,1,2,1],[1,0,1,2],[2,3,3,2],[1,3,2,0]],[[0,1,2,1],[1,0,1,2],[2,3,3,2],[1,2,3,0]],[[1,2,3,1],[2,2,2,2],[0,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[0,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[0,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,2,2],[0,2,2,2],[1,0,1,2]],[[1,2,2,1],[2,2,2,2],[0,2,2,3],[1,0,1,1]],[[1,2,2,1],[2,2,2,3],[0,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[0,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[0,2,2,2],[1,0,1,1]],[[0,1,2,1],[1,0,3,0],[2,3,2,3],[1,2,2,1]],[[0,1,2,1],[1,0,3,0],[2,3,2,2],[2,2,2,1]],[[0,1,2,1],[1,0,3,0],[2,3,2,2],[1,3,2,1]],[[0,1,2,1],[1,0,3,0],[2,3,2,2],[1,2,3,1]],[[0,1,2,1],[1,0,3,0],[2,3,2,2],[1,2,2,2]],[[0,1,2,1],[1,0,3,0],[2,3,4,1],[1,2,2,1]],[[0,1,2,1],[1,0,3,0],[2,3,3,1],[2,2,2,1]],[[0,1,2,1],[1,0,3,0],[2,3,3,1],[1,3,2,1]],[[0,1,2,1],[1,0,3,0],[2,3,3,1],[1,2,3,1]],[[0,1,2,1],[1,0,3,0],[2,3,3,1],[1,2,2,2]],[[0,1,2,1],[1,0,3,0],[2,3,4,2],[1,2,1,1]],[[0,1,2,1],[1,0,3,0],[2,3,3,3],[1,2,1,1]],[[0,1,2,1],[1,0,3,0],[2,3,3,2],[1,2,1,2]],[[0,1,2,1],[1,0,3,0],[2,3,4,2],[1,2,2,0]],[[0,1,2,1],[1,0,3,0],[2,3,3,3],[1,2,2,0]],[[0,1,2,1],[1,0,3,0],[2,3,3,2],[2,2,2,0]],[[0,1,2,1],[1,0,3,0],[2,3,3,2],[1,3,2,0]],[[0,1,2,1],[1,0,3,0],[2,3,3,2],[1,2,3,0]],[[0,1,2,1],[1,0,3,1],[2,3,4,0],[1,2,2,1]],[[0,1,2,1],[1,0,3,1],[2,3,3,0],[2,2,2,1]],[[0,1,2,1],[1,0,3,1],[2,3,3,0],[1,3,2,1]],[[0,1,2,1],[1,0,3,1],[2,3,3,0],[1,2,3,1]],[[0,1,2,1],[1,0,3,1],[2,3,3,0],[1,2,2,2]],[[0,1,2,1],[1,0,3,1],[2,3,4,1],[1,2,2,0]],[[0,1,2,1],[1,0,3,1],[2,3,3,1],[2,2,2,0]],[[0,1,2,1],[1,0,3,1],[2,3,3,1],[1,3,2,0]],[[0,1,2,1],[1,0,3,1],[2,3,3,1],[1,2,3,0]],[[1,3,2,1],[2,2,2,2],[0,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,2],[0,2,2,2],[1,0,1,1]],[[0,1,2,2],[1,0,3,2],[0,2,3,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,3],[0,2,3,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[0,2,3,3],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[0,2,3,2],[1,2,3,1]],[[0,1,2,1],[1,0,3,2],[0,2,3,2],[1,2,2,2]],[[0,1,2,2],[1,0,3,2],[0,3,2,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,3],[0,3,2,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[0,3,2,3],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[0,3,2,2],[1,3,2,1]],[[0,1,2,1],[1,0,3,2],[0,3,2,2],[1,2,3,1]],[[0,1,2,1],[1,0,3,2],[0,3,2,2],[1,2,2,2]],[[0,1,2,1],[1,0,3,2],[0,3,4,1],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[0,3,3,1],[1,3,2,1]],[[0,1,2,1],[1,0,3,2],[0,3,3,1],[1,2,3,1]],[[0,1,2,1],[1,0,3,2],[0,3,3,1],[1,2,2,2]],[[0,1,2,2],[1,0,3,2],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,0,3,3],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,0,3,2],[0,3,4,2],[1,2,1,1]],[[0,1,2,1],[1,0,3,2],[0,3,3,3],[1,2,1,1]],[[0,1,2,1],[1,0,3,2],[0,3,3,2],[1,2,1,2]],[[0,1,2,2],[1,0,3,2],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,0,3,3],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,0,3,2],[0,3,4,2],[1,2,2,0]],[[0,1,2,1],[1,0,3,2],[0,3,3,3],[1,2,2,0]],[[0,1,2,1],[1,0,3,2],[0,3,3,2],[1,3,2,0]],[[0,1,2,1],[1,0,3,2],[0,3,3,2],[1,2,3,0]],[[0,1,2,2],[1,0,3,2],[1,1,3,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,3],[1,1,3,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[1,1,3,3],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[1,1,3,2],[1,2,3,1]],[[0,1,2,1],[1,0,3,2],[1,1,3,2],[1,2,2,2]],[[0,1,2,2],[1,0,3,2],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,1],[1,0,3,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,1],[1,0,3,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,1],[1,0,3,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,1],[1,0,3,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,1],[1,0,3,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,1],[1,0,3,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,1],[1,0,3,2],[1,2,3,1],[1,2,2,2]],[[0,1,2,2],[1,0,3,2],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[1,0,3,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[1,0,3,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,1],[1,0,3,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,1],[1,0,3,2],[1,2,3,2],[1,2,1,2]],[[0,1,2,2],[1,0,3,2],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[1,0,3,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[1,0,3,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,1],[1,0,3,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,1],[1,0,3,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,1],[1,0,3,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,1],[1,0,3,2],[1,2,3,2],[1,2,3,0]],[[0,1,2,2],[1,0,3,2],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[1,0,3,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[1,0,3,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,1],[1,0,3,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,1],[1,0,3,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,1],[1,0,3,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,1],[1,0,3,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,1],[1,0,3,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,2],[1,0,3,2],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[1,0,3,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[1,0,3,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,1],[1,0,3,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,1],[1,0,3,2],[1,3,3,2],[1,0,2,2]],[[0,1,2,2],[1,0,3,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[1,0,3,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[1,0,3,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,1],[1,0,3,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,1],[1,0,3,2],[1,3,3,2],[1,1,1,2]],[[0,1,2,2],[1,0,3,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[1,0,3,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[1,0,3,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,1],[1,0,3,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,1],[1,0,3,2],[1,3,3,2],[1,1,3,0]],[[0,1,2,2],[1,0,3,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[1,0,3,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[1,0,3,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,1],[1,0,3,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,1],[1,0,3,2],[1,3,3,2],[1,2,0,2]],[[0,1,2,2],[1,0,3,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[1,0,3,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[1,0,3,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,1],[1,0,3,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,2],[1,0,3,2],[2,0,3,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,3],[2,0,3,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,0,3,3],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,0,3,2],[1,2,3,1]],[[0,1,2,1],[1,0,3,2],[2,0,3,2],[1,2,2,2]],[[0,1,2,2],[1,0,3,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,3],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,1,2,3],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,1,2,2],[2,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,1,2,2],[1,3,2,1]],[[0,1,2,1],[1,0,3,2],[2,1,2,2],[1,2,3,1]],[[0,1,2,1],[1,0,3,2],[2,1,2,2],[1,2,2,2]],[[0,1,2,1],[1,0,3,2],[2,1,4,1],[1,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,1,3,1],[2,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,1,3,1],[1,3,2,1]],[[0,1,2,1],[1,0,3,2],[2,1,3,1],[1,2,3,1]],[[0,1,2,1],[1,0,3,2],[2,1,3,1],[1,2,2,2]],[[0,1,2,2],[1,0,3,2],[2,1,3,2],[0,2,2,1]],[[0,1,2,1],[1,0,3,3],[2,1,3,2],[0,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,1,3,3],[0,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,1,3,2],[0,2,3,1]],[[0,1,2,1],[1,0,3,2],[2,1,3,2],[0,2,2,2]],[[0,1,2,2],[1,0,3,2],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,0,3,3],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,0,3,2],[2,1,4,2],[1,2,1,1]],[[0,1,2,1],[1,0,3,2],[2,1,3,3],[1,2,1,1]],[[0,1,2,1],[1,0,3,2],[2,1,3,2],[1,2,1,2]],[[0,1,2,2],[1,0,3,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,0,3,3],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,0,3,2],[2,1,4,2],[1,2,2,0]],[[0,1,2,1],[1,0,3,2],[2,1,3,3],[1,2,2,0]],[[0,1,2,1],[1,0,3,2],[2,1,3,2],[2,2,2,0]],[[0,1,2,1],[1,0,3,2],[2,1,3,2],[1,3,2,0]],[[0,1,2,1],[1,0,3,2],[2,1,3,2],[1,2,3,0]],[[0,1,2,2],[1,0,3,2],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[1,0,3,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,1],[1,0,3,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,1],[1,0,3,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,1],[1,0,3,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,1],[1,0,3,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,1],[1,0,3,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,1],[1,0,3,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,2],[1,0,3,2],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[1,0,3,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[1,0,3,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,1],[1,0,3,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,1],[1,0,3,2],[2,2,3,2],[0,2,1,2]],[[0,1,2,2],[1,0,3,2],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[1,0,3,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[1,0,3,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,1],[1,0,3,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,1],[1,0,3,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,1],[1,0,3,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,2,2,2],[0,2,2,3],[0,2,1,0]],[[1,2,2,1],[2,2,2,3],[0,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,2],[0,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,2],[0,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,2],[0,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,2],[0,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,2],[0,2,2,2],[0,2,0,2]],[[0,1,2,2],[1,0,3,2],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[1,0,3,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[1,0,3,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,1],[1,0,3,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,1],[1,0,3,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,2],[1,0,3,2],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[1,0,3,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[1,0,3,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,1],[1,0,3,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,1],[1,0,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,2,2,2],[0,2,2,3],[0,2,0,1]],[[1,2,2,1],[2,2,2,3],[0,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,2],[0,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,2],[0,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,2],[0,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,2],[0,2,2,2],[0,2,0,1]],[[0,1,2,1],[1,0,3,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,1],[1,0,3,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,1],[1,0,2,2]],[[0,1,2,2],[1,0,3,2],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[1,0,3,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[1,0,3,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,2],[0,0,2,2]],[[0,1,2,2],[1,0,3,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,0,3,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,0,3,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,2],[0,1,1,2]],[[0,1,2,2],[1,0,3,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,0,3,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,0,3,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,1],[1,0,3,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,1],[1,0,3,2],[2,3,3,2],[0,1,3,0]],[[0,1,2,2],[1,0,3,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,0,3,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,0,3,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,2],[0,2,0,2]],[[0,1,2,2],[1,0,3,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,0,3,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,0,3,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,1],[1,0,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,2,2,2],[0,2,2,3],[0,1,2,0]],[[1,2,2,1],[2,2,2,3],[0,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[0,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[0,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[0,2,2,2],[0,1,2,0]],[[0,1,2,2],[1,0,3,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,0,3,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,0,3,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,2],[1,0,1,2]],[[0,1,2,2],[1,0,3,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,0,3,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,0,3,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,1],[1,0,3,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,1],[1,0,3,2],[2,3,3,2],[1,0,3,0]],[[0,1,2,2],[1,0,3,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,0,3,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,0,3,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,1],[1,0,3,2],[2,3,3,2],[1,1,0,2]],[[0,1,2,2],[1,0,3,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,0,3,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,0,3,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,1],[1,0,3,2],[2,3,3,3],[1,1,1,0]],[[2,2,2,1],[2,2,2,2],[0,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,2,2],[0,2,2,2],[0,1,1,2]],[[1,2,2,1],[2,2,2,2],[0,2,2,3],[0,1,1,1]],[[1,2,2,1],[2,2,2,3],[0,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[0,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[0,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[0,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[0,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,2,2,2],[0,2,2,2],[0,0,2,2]],[[1,2,2,1],[2,2,2,2],[0,2,2,3],[0,0,2,1]],[[1,2,2,1],[2,2,2,3],[0,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,2,2,2],[0,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,2,2,2],[0,2,2,2],[0,0,2,1]],[[1,3,2,1],[2,2,2,2],[0,2,2,2],[0,0,2,1]],[[2,2,2,1],[2,2,2,2],[0,2,2,2],[0,0,2,1]],[[1,2,2,1],[2,2,2,2],[0,2,1,2],[1,0,2,2]],[[1,2,2,1],[2,2,2,2],[0,2,1,3],[1,0,2,1]],[[0,1,2,1],[1,1,0,2],[1,3,3,3],[1,2,2,1]],[[0,1,2,1],[1,1,0,2],[1,3,3,2],[2,2,2,1]],[[0,1,2,1],[1,1,0,2],[1,3,3,2],[1,3,2,1]],[[0,1,2,1],[1,1,0,2],[1,3,3,2],[1,2,3,1]],[[0,1,2,1],[1,1,0,2],[1,3,3,2],[1,2,2,2]],[[0,1,2,1],[1,1,0,2],[2,3,3,3],[0,2,2,1]],[[0,1,2,1],[1,1,0,2],[2,3,3,2],[0,3,2,1]],[[0,1,2,1],[1,1,0,2],[2,3,3,2],[0,2,3,1]],[[0,1,2,1],[1,1,0,2],[2,3,3,2],[0,2,2,2]],[[0,1,2,2],[1,1,1,2],[1,3,2,2],[1,2,2,1]],[[0,1,2,1],[1,1,1,3],[1,3,2,2],[1,2,2,1]],[[0,1,2,1],[1,1,1,2],[1,3,2,3],[1,2,2,1]],[[0,1,2,1],[1,1,1,2],[1,3,2,2],[2,2,2,1]],[[0,1,2,1],[1,1,1,2],[1,3,2,2],[1,3,2,1]],[[0,1,2,1],[1,1,1,2],[1,3,2,2],[1,2,3,1]],[[0,1,2,1],[1,1,1,2],[1,3,2,2],[1,2,2,2]],[[0,1,2,1],[1,1,1,2],[1,3,4,1],[1,2,2,1]],[[0,1,2,1],[1,1,1,2],[1,3,3,1],[2,2,2,1]],[[0,1,2,1],[1,1,1,2],[1,3,3,1],[1,3,2,1]],[[0,1,2,1],[1,1,1,2],[1,3,3,1],[1,2,3,1]],[[0,1,2,1],[1,1,1,2],[1,3,3,1],[1,2,2,2]],[[0,1,2,2],[1,1,1,2],[1,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,1,1,3],[1,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,1,1,2],[1,3,4,2],[1,2,1,1]],[[0,1,2,1],[1,1,1,2],[1,3,3,3],[1,2,1,1]],[[0,1,2,1],[1,1,1,2],[1,3,3,2],[1,2,1,2]],[[0,1,2,2],[1,1,1,2],[1,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,1,1,3],[1,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,1,1,2],[1,3,4,2],[1,2,2,0]],[[0,1,2,1],[1,1,1,2],[1,3,3,3],[1,2,2,0]],[[0,1,2,1],[1,1,1,2],[1,3,3,2],[2,2,2,0]],[[0,1,2,1],[1,1,1,2],[1,3,3,2],[1,3,2,0]],[[0,1,2,1],[1,1,1,2],[1,3,3,2],[1,2,3,0]],[[0,1,2,2],[1,1,1,2],[2,3,2,2],[0,2,2,1]],[[0,1,2,1],[1,1,1,3],[2,3,2,2],[0,2,2,1]],[[0,1,2,1],[1,1,1,2],[2,3,2,3],[0,2,2,1]],[[0,1,2,1],[1,1,1,2],[2,3,2,2],[0,3,2,1]],[[0,1,2,1],[1,1,1,2],[2,3,2,2],[0,2,3,1]],[[0,1,2,1],[1,1,1,2],[2,3,2,2],[0,2,2,2]],[[0,1,2,1],[1,1,1,2],[2,3,4,1],[0,2,2,1]],[[0,1,2,1],[1,1,1,2],[2,3,3,1],[0,3,2,1]],[[0,1,2,1],[1,1,1,2],[2,3,3,1],[0,2,3,1]],[[0,1,2,1],[1,1,1,2],[2,3,3,1],[0,2,2,2]],[[0,1,2,2],[1,1,1,2],[2,3,3,2],[0,2,1,1]],[[0,1,2,1],[1,1,1,3],[2,3,3,2],[0,2,1,1]],[[0,1,2,1],[1,1,1,2],[2,3,4,2],[0,2,1,1]],[[0,1,2,1],[1,1,1,2],[2,3,3,3],[0,2,1,1]],[[0,1,2,1],[1,1,1,2],[2,3,3,2],[0,2,1,2]],[[0,1,2,2],[1,1,1,2],[2,3,3,2],[0,2,2,0]],[[0,1,2,1],[1,1,1,3],[2,3,3,2],[0,2,2,0]],[[0,1,2,1],[1,1,1,2],[2,3,4,2],[0,2,2,0]],[[0,1,2,1],[1,1,1,2],[2,3,3,3],[0,2,2,0]],[[0,1,2,1],[1,1,1,2],[2,3,3,2],[0,3,2,0]],[[0,1,2,1],[1,1,1,2],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[2,2,2,3],[0,2,1,2],[1,0,2,1]],[[1,2,2,2],[2,2,2,2],[0,2,1,2],[1,0,2,1]],[[1,2,3,1],[2,2,2,2],[0,2,1,2],[1,0,2,1]],[[1,3,2,1],[2,2,2,2],[0,2,1,2],[1,0,2,1]],[[2,2,2,1],[2,2,2,2],[0,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,2,2,2],[0,2,1,2],[0,1,2,2]],[[1,2,2,1],[2,2,2,2],[0,2,1,2],[0,1,3,1]],[[1,2,2,1],[2,2,2,2],[0,2,1,3],[0,1,2,1]],[[1,2,2,1],[2,2,2,3],[0,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,2,2,2],[0,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,2,2,2],[0,2,1,2],[0,1,2,1]],[[1,3,2,1],[2,2,2,2],[0,2,1,2],[0,1,2,1]],[[2,2,2,1],[2,2,2,2],[0,2,1,2],[0,1,2,1]],[[1,2,2,1],[2,2,2,2],[0,2,0,2],[0,2,2,2]],[[1,2,2,1],[2,2,2,2],[0,2,0,2],[0,2,3,1]],[[1,2,2,1],[2,2,2,2],[0,2,0,3],[0,2,2,1]],[[1,2,2,1],[2,2,2,3],[0,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,2,2],[0,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,2,2,2],[0,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,2,2],[0,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,2,2],[0,2,0,2],[0,2,2,1]],[[0,1,2,1],[1,1,3,0],[1,3,2,3],[1,2,2,1]],[[0,1,2,1],[1,1,3,0],[1,3,2,2],[2,2,2,1]],[[0,1,2,1],[1,1,3,0],[1,3,2,2],[1,3,2,1]],[[0,1,2,1],[1,1,3,0],[1,3,2,2],[1,2,3,1]],[[0,1,2,1],[1,1,3,0],[1,3,2,2],[1,2,2,2]],[[0,1,2,1],[1,1,3,0],[1,3,4,1],[1,2,2,1]],[[0,1,2,1],[1,1,3,0],[1,3,3,1],[2,2,2,1]],[[0,1,2,1],[1,1,3,0],[1,3,3,1],[1,3,2,1]],[[0,1,2,1],[1,1,3,0],[1,3,3,1],[1,2,3,1]],[[0,1,2,1],[1,1,3,0],[1,3,3,1],[1,2,2,2]],[[0,1,2,1],[1,1,3,0],[1,3,4,2],[1,2,1,1]],[[0,1,2,1],[1,1,3,0],[1,3,3,3],[1,2,1,1]],[[0,1,2,1],[1,1,3,0],[1,3,3,2],[1,2,1,2]],[[0,1,2,1],[1,1,3,0],[1,3,4,2],[1,2,2,0]],[[0,1,2,1],[1,1,3,0],[1,3,3,3],[1,2,2,0]],[[0,1,2,1],[1,1,3,0],[1,3,3,2],[2,2,2,0]],[[0,1,2,1],[1,1,3,0],[1,3,3,2],[1,3,2,0]],[[0,1,2,1],[1,1,3,0],[1,3,3,2],[1,2,3,0]],[[0,1,2,1],[1,1,3,0],[2,3,2,3],[0,2,2,1]],[[0,1,2,1],[1,1,3,0],[2,3,2,2],[0,3,2,1]],[[0,1,2,1],[1,1,3,0],[2,3,2,2],[0,2,3,1]],[[0,1,2,1],[1,1,3,0],[2,3,2,2],[0,2,2,2]],[[0,1,2,1],[1,1,3,0],[2,3,4,1],[0,2,2,1]],[[0,1,2,1],[1,1,3,0],[2,3,3,1],[0,3,2,1]],[[0,1,2,1],[1,1,3,0],[2,3,3,1],[0,2,3,1]],[[0,1,2,1],[1,1,3,0],[2,3,3,1],[0,2,2,2]],[[0,1,2,1],[1,1,3,0],[2,3,4,2],[0,2,1,1]],[[0,1,2,1],[1,1,3,0],[2,3,3,3],[0,2,1,1]],[[0,1,2,1],[1,1,3,0],[2,3,3,2],[0,2,1,2]],[[0,1,2,1],[1,1,3,0],[2,3,4,2],[0,2,2,0]],[[0,1,2,1],[1,1,3,0],[2,3,3,3],[0,2,2,0]],[[0,1,2,1],[1,1,3,0],[2,3,3,2],[0,3,2,0]],[[0,1,2,1],[1,1,3,0],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[2,2,2,2],[0,1,3,3],[1,0,2,0]],[[0,1,2,1],[1,1,3,1],[1,3,4,0],[1,2,2,1]],[[0,1,2,1],[1,1,3,1],[1,3,3,0],[2,2,2,1]],[[0,1,2,1],[1,1,3,1],[1,3,3,0],[1,3,2,1]],[[0,1,2,1],[1,1,3,1],[1,3,3,0],[1,2,3,1]],[[0,1,2,1],[1,1,3,1],[1,3,3,0],[1,2,2,2]],[[0,1,2,1],[1,1,3,1],[1,3,4,1],[1,2,2,0]],[[0,1,2,1],[1,1,3,1],[1,3,3,1],[2,2,2,0]],[[0,1,2,1],[1,1,3,1],[1,3,3,1],[1,3,2,0]],[[0,1,2,1],[1,1,3,1],[1,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,2,2,3],[0,1,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,2],[0,1,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,2],[0,1,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,2],[0,1,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,2],[0,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,2,2],[0,1,3,2],[1,0,1,2]],[[1,2,2,1],[2,2,2,2],[0,1,3,3],[1,0,1,1]],[[1,2,2,1],[2,2,2,3],[0,1,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,2],[0,1,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,2],[0,1,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,2],[0,1,3,2],[1,0,1,1]],[[0,1,2,1],[1,1,3,1],[2,3,4,0],[0,2,2,1]],[[0,1,2,1],[1,1,3,1],[2,3,3,0],[0,3,2,1]],[[0,1,2,1],[1,1,3,1],[2,3,3,0],[0,2,3,1]],[[0,1,2,1],[1,1,3,1],[2,3,3,0],[0,2,2,2]],[[0,1,2,1],[1,1,3,1],[2,3,4,1],[0,2,2,0]],[[0,1,2,1],[1,1,3,1],[2,3,3,1],[0,3,2,0]],[[0,1,2,1],[1,1,3,1],[2,3,3,1],[0,2,3,0]],[[2,2,2,1],[2,2,2,2],[0,1,3,2],[1,0,1,1]],[[1,2,2,1],[2,2,2,2],[0,1,3,3],[0,1,2,0]],[[1,2,2,1],[2,2,2,3],[0,1,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,2],[0,1,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,2],[0,1,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,2],[0,1,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,2],[0,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,2,2],[0,1,3,2],[0,1,1,2]],[[0,1,2,2],[1,1,3,2],[1,0,3,2],[1,2,2,1]],[[0,1,2,1],[1,1,3,3],[1,0,3,2],[1,2,2,1]],[[0,1,2,1],[1,1,3,2],[1,0,3,3],[1,2,2,1]],[[0,1,2,1],[1,1,3,2],[1,0,3,2],[1,2,3,1]],[[0,1,2,1],[1,1,3,2],[1,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,2,2,2],[0,1,3,3],[0,1,1,1]],[[1,2,2,1],[2,2,2,3],[0,1,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,2],[0,1,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,2],[0,1,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,2],[0,1,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,2],[0,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,2,2],[0,1,3,2],[0,0,2,2]],[[1,2,2,1],[2,2,2,2],[0,1,3,3],[0,0,2,1]],[[1,2,2,1],[2,2,2,3],[0,1,3,2],[0,0,2,1]],[[1,2,2,2],[2,2,2,2],[0,1,3,2],[0,0,2,1]],[[1,2,3,1],[2,2,2,2],[0,1,3,2],[0,0,2,1]],[[1,3,2,1],[2,2,2,2],[0,1,3,2],[0,0,2,1]],[[2,2,2,1],[2,2,2,2],[0,1,3,2],[0,0,2,1]],[[1,2,2,1],[2,2,2,3],[0,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,2,2,2],[0,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,2,2,2],[0,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,2,2,2],[0,1,3,1],[0,2,2,0]],[[2,2,2,1],[2,2,2,2],[0,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,2,2,3],[0,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,2,2],[0,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,2,2],[0,1,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,2,2],[0,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,2,2],[0,1,3,1],[0,2,1,1]],[[0,1,2,2],[1,1,3,2],[2,0,3,2],[0,2,2,1]],[[0,1,2,1],[1,1,3,3],[2,0,3,2],[0,2,2,1]],[[0,1,2,1],[1,1,3,2],[2,0,3,3],[0,2,2,1]],[[0,1,2,1],[1,1,3,2],[2,0,3,2],[0,2,3,1]],[[0,1,2,1],[1,1,3,2],[2,0,3,2],[0,2,2,2]],[[1,2,2,1],[3,2,2,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,2],[2,2,2,2],[0,1,3,0],[1,2,2,0]],[[1,2,3,1],[2,2,2,2],[0,1,3,0],[1,2,2,0]],[[1,3,2,1],[2,2,2,2],[0,1,3,0],[1,2,2,0]],[[2,2,2,1],[2,2,2,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,1],[2,2,2,3],[0,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,2,2,2],[0,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,2,2,2],[0,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,2,2,2],[0,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,2,2,2],[0,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,2,2,2],[0,1,2,3],[0,2,2,0]],[[1,2,2,1],[2,2,2,3],[0,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,2,2,2],[0,1,2,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,2],[0,1,2,2],[0,2,2,0]],[[1,3,2,1],[2,2,2,2],[0,1,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,2],[0,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,2,2],[0,1,2,2],[0,2,1,2]],[[1,2,2,1],[2,2,2,2],[0,1,2,3],[0,2,1,1]],[[1,2,2,1],[2,2,2,3],[0,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,2,2,2],[0,1,2,2],[0,2,1,1]],[[1,2,3,1],[2,2,2,2],[0,1,2,2],[0,2,1,1]],[[1,3,2,1],[2,2,2,2],[0,1,2,2],[0,2,1,1]],[[2,2,2,1],[2,2,2,2],[0,1,2,2],[0,2,1,1]],[[1,2,2,1],[2,2,2,2],[0,1,1,2],[0,2,2,2]],[[1,2,2,1],[2,2,2,2],[0,1,1,2],[0,2,3,1]],[[1,2,2,1],[2,2,2,2],[0,1,1,3],[0,2,2,1]],[[1,2,2,1],[2,2,2,3],[0,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,2,2,2],[0,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,2,2,2],[0,1,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,2,2],[0,1,1,2],[0,2,2,1]],[[2,2,2,1],[2,2,2,2],[0,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,2,2,2],[0,0,3,3],[0,2,2,0]],[[1,2,2,1],[2,2,2,3],[0,0,3,2],[0,2,2,0]],[[1,2,2,2],[2,2,2,2],[0,0,3,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,2],[0,0,3,2],[0,2,2,0]],[[1,3,2,1],[2,2,2,2],[0,0,3,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,2],[0,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,2,2,2],[0,0,3,2],[0,2,1,2]],[[1,2,2,1],[2,2,2,2],[0,0,3,3],[0,2,1,1]],[[1,2,2,1],[2,2,2,3],[0,0,3,2],[0,2,1,1]],[[1,2,2,2],[2,2,2,2],[0,0,3,2],[0,2,1,1]],[[1,2,3,1],[2,2,2,2],[0,0,3,2],[0,2,1,1]],[[1,3,2,1],[2,2,2,2],[0,0,3,2],[0,2,1,1]],[[2,2,2,1],[2,2,2,2],[0,0,3,2],[0,2,1,1]],[[1,2,2,1],[2,2,2,2],[0,0,3,2],[0,1,2,2]],[[1,2,2,1],[2,2,2,2],[0,0,3,3],[0,1,2,1]],[[1,2,2,1],[2,2,2,3],[0,0,3,2],[0,1,2,1]],[[1,2,2,2],[2,2,2,2],[0,0,3,2],[0,1,2,1]],[[1,2,3,1],[2,2,2,2],[0,0,3,2],[0,1,2,1]],[[1,3,2,1],[2,2,2,2],[0,0,3,2],[0,1,2,1]],[[2,2,2,1],[2,2,2,2],[0,0,3,2],[0,1,2,1]],[[1,2,2,1],[2,2,2,2],[0,0,2,2],[0,2,2,2]],[[1,2,2,1],[2,2,2,2],[0,0,2,2],[0,2,3,1]],[[1,2,2,1],[2,2,2,2],[0,0,2,3],[0,2,2,1]],[[1,2,2,1],[2,2,2,3],[0,0,2,2],[0,2,2,1]],[[1,2,2,2],[2,2,2,2],[0,0,2,2],[0,2,2,1]],[[1,2,3,1],[2,2,2,2],[0,0,2,2],[0,2,2,1]],[[1,3,2,1],[2,2,2,2],[0,0,2,2],[0,2,2,1]],[[2,2,2,1],[2,2,2,2],[0,0,2,2],[0,2,2,1]],[[0,1,2,1],[1,2,0,2],[0,3,3,3],[1,2,2,1]],[[0,1,2,1],[1,2,0,2],[0,3,3,2],[1,3,2,1]],[[0,1,2,1],[1,2,0,2],[0,3,3,2],[1,2,3,1]],[[0,1,2,1],[1,2,0,2],[0,3,3,2],[1,2,2,2]],[[0,1,2,1],[1,2,0,2],[1,2,3,3],[1,2,2,1]],[[0,1,2,1],[1,2,0,2],[1,2,3,2],[2,2,2,1]],[[0,1,2,1],[1,2,0,2],[1,2,3,2],[1,3,2,1]],[[0,1,2,1],[1,2,0,2],[1,2,3,2],[1,2,3,1]],[[0,1,2,1],[1,2,0,2],[1,2,3,2],[1,2,2,2]],[[0,1,2,1],[1,2,0,2],[1,3,3,3],[1,1,2,1]],[[0,1,2,1],[1,2,0,2],[1,3,3,2],[1,1,3,1]],[[0,1,2,1],[1,2,0,2],[1,3,3,2],[1,1,2,2]],[[0,1,2,1],[1,2,0,2],[2,1,3,3],[1,2,2,1]],[[0,1,2,1],[1,2,0,2],[2,1,3,2],[2,2,2,1]],[[0,1,2,1],[1,2,0,2],[2,1,3,2],[1,3,2,1]],[[0,1,2,1],[1,2,0,2],[2,1,3,2],[1,2,3,1]],[[0,1,2,1],[1,2,0,2],[2,1,3,2],[1,2,2,2]],[[0,1,2,1],[1,2,0,2],[2,2,3,3],[0,2,2,1]],[[0,1,2,1],[1,2,0,2],[2,2,3,2],[0,3,2,1]],[[0,1,2,1],[1,2,0,2],[2,2,3,2],[0,2,3,1]],[[0,1,2,1],[1,2,0,2],[2,2,3,2],[0,2,2,2]],[[0,1,2,1],[1,2,0,2],[2,3,3,3],[0,1,2,1]],[[0,1,2,1],[1,2,0,2],[2,3,3,2],[0,1,3,1]],[[0,1,2,1],[1,2,0,2],[2,3,3,2],[0,1,2,2]],[[0,1,2,1],[1,2,0,2],[2,3,3,3],[1,0,2,1]],[[0,1,2,1],[1,2,0,2],[2,3,3,2],[1,0,3,1]],[[0,1,2,1],[1,2,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,1],[2,2,2,1],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[3,2,2,1],[2,3,3,1],[1,0,0,0]],[[1,2,2,2],[2,2,2,1],[2,3,3,1],[1,0,0,0]],[[0,1,2,2],[1,2,1,2],[0,2,3,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,3],[0,2,3,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[0,2,3,3],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[0,2,3,2],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[0,2,3,2],[1,2,2,2]],[[0,1,3,1],[1,2,1,2],[0,3,2,2],[1,2,2,1]],[[0,1,2,2],[1,2,1,2],[0,3,2,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,3],[0,3,2,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[0,3,2,3],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[0,3,2,2],[1,3,2,1]],[[0,1,2,1],[1,2,1,2],[0,3,2,2],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[0,3,2,2],[1,2,2,2]],[[0,1,2,1],[1,2,1,2],[0,3,4,1],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[0,3,3,1],[1,3,2,1]],[[0,1,2,1],[1,2,1,2],[0,3,3,1],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[0,3,3,1],[1,2,2,2]],[[0,1,3,1],[1,2,1,2],[0,3,3,2],[1,2,1,1]],[[0,1,2,2],[1,2,1,2],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,1,3],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[0,3,4,2],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[0,3,3,3],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[0,3,3,2],[1,2,1,2]],[[0,1,3,1],[1,2,1,2],[0,3,3,2],[1,2,2,0]],[[0,1,2,2],[1,2,1,2],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,3],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[0,3,4,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[0,3,3,3],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[0,3,3,2],[1,3,2,0]],[[0,1,2,1],[1,2,1,2],[0,3,3,2],[1,2,3,0]],[[0,1,2,2],[1,2,1,2],[1,1,3,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,3],[1,1,3,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,1,3,3],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,1,3,2],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[1,1,3,2],[1,2,2,2]],[[0,1,3,1],[1,2,1,2],[1,2,2,2],[1,2,2,1]],[[0,1,2,2],[1,2,1,2],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,1],[1,2,1,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,1],[1,2,1,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,1],[1,2,1,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[1,2,3,1],[1,2,2,2]],[[0,1,3,1],[1,2,1,2],[1,2,3,2],[1,2,1,1]],[[0,1,2,2],[1,2,1,2],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,1,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[1,2,3,2],[1,2,1,2]],[[0,1,3,1],[1,2,1,2],[1,2,3,2],[1,2,2,0]],[[0,1,2,2],[1,2,1,2],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,1],[1,2,1,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,1],[1,2,1,2],[1,2,3,2],[1,2,3,0]],[[0,1,3,1],[1,2,1,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,2],[1,2,1,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,3],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,4,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,1,3],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,1,2],[2,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,1,2],[1,3,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,1,2],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[1,3,1,2],[1,2,2,2]],[[0,1,2,1],[1,2,1,2],[1,4,2,1],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,2,1],[2,2,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,2,1],[1,3,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,2,1],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[1,3,2,1],[1,2,2,2]],[[0,1,3,1],[1,2,1,2],[1,3,2,2],[1,1,2,1]],[[0,1,2,2],[1,2,1,2],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[1,2,1,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,1],[1,2,1,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,1],[1,2,1,2],[1,4,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[1,3,2,2],[2,2,2,0]],[[0,1,2,1],[1,2,1,2],[1,3,2,2],[1,3,2,0]],[[0,1,2,1],[1,2,1,2],[1,3,2,2],[1,2,3,0]],[[0,1,2,1],[1,2,1,2],[1,4,3,1],[1,1,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,1],[1,2,1,2],[1,4,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[1,3,4,1],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,1],[2,2,1,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,1],[1,3,1,1]],[[0,1,3,1],[1,2,1,2],[1,3,3,2],[1,0,2,1]],[[0,1,2,2],[1,2,1,2],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[1,2,1,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,2],[1,0,2,2]],[[0,1,3,1],[1,2,1,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,2],[1,2,1,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[1,2,1,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[1,2,1,2],[1,4,3,2],[1,1,1,1]],[[0,1,2,1],[1,2,1,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,2],[1,1,1,2]],[[0,1,3,1],[1,2,1,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,2],[1,2,1,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[1,2,1,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[1,2,1,2],[1,4,3,2],[1,1,2,0]],[[0,1,2,1],[1,2,1,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,1],[1,2,1,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,1],[1,2,1,2],[1,3,3,2],[1,1,3,0]],[[0,1,3,1],[1,2,1,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,2],[1,2,1,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[1,2,1,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[1,2,1,2],[1,4,3,2],[1,2,0,1]],[[0,1,2,1],[1,2,1,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,2],[2,2,0,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,2],[1,3,0,1]],[[0,1,2,1],[1,2,1,2],[1,3,3,2],[1,2,0,2]],[[0,1,3,1],[1,2,1,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,2],[1,2,1,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[1,2,1,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[1,2,1,2],[1,4,3,2],[1,2,1,0]],[[0,1,2,1],[1,2,1,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,1],[1,2,1,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,1],[1,2,1,2],[1,3,3,2],[2,2,1,0]],[[0,1,2,1],[1,2,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,3,1],[2,2,2,1],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[2,2,2,1],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[2,2,2,1],[2,3,3,1],[1,0,0,0]],[[0,1,2,2],[1,2,1,2],[2,0,3,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,3],[2,0,3,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,0,3,3],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,0,3,2],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[2,0,3,2],[1,2,2,2]],[[0,1,3,1],[1,2,1,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,2],[1,2,1,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,3],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[3,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,1,2,3],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,1,2,2],[2,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,1,2,2],[1,3,2,1]],[[0,1,2,1],[1,2,1,2],[2,1,2,2],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[2,1,2,2],[1,2,2,2]],[[0,1,2,1],[1,2,1,2],[3,1,3,1],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,1,4,1],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,1,3,1],[2,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,1,3,1],[1,3,2,1]],[[0,1,2,1],[1,2,1,2],[2,1,3,1],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[2,1,3,1],[1,2,2,2]],[[0,1,2,2],[1,2,1,2],[2,1,3,2],[0,2,2,1]],[[0,1,2,1],[1,2,1,3],[2,1,3,2],[0,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,1,3,3],[0,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,1,3,2],[0,2,3,1]],[[0,1,2,1],[1,2,1,2],[2,1,3,2],[0,2,2,2]],[[0,1,3,1],[1,2,1,2],[2,1,3,2],[1,2,1,1]],[[0,1,2,2],[1,2,1,2],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,1,3],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[2,1,4,2],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[2,1,3,3],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[2,1,3,2],[1,2,1,2]],[[0,1,3,1],[1,2,1,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,2],[1,2,1,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,3],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[3,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[2,1,4,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[2,1,3,3],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[2,1,3,2],[2,2,2,0]],[[0,1,2,1],[1,2,1,2],[2,1,3,2],[1,3,2,0]],[[0,1,2,1],[1,2,1,2],[2,1,3,2],[1,2,3,0]],[[0,1,3,1],[1,2,1,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,2],[1,2,1,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,3],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[3,2,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,1,3],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,1,2],[2,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,1,2],[1,3,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,1,2],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[2,2,1,2],[1,2,2,2]],[[0,1,2,1],[1,2,1,2],[3,2,2,1],[1,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,2,1],[2,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,2,1],[1,3,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,2,1],[1,2,3,1]],[[0,1,2,1],[1,2,1,2],[2,2,2,1],[1,2,2,2]],[[0,1,3,1],[1,2,1,2],[2,2,2,2],[0,2,2,1]],[[0,1,2,2],[1,2,1,2],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[1,2,1,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,1],[1,2,1,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,1],[1,2,1,2],[3,2,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,1,2],[2,2,2,2],[2,2,2,0]],[[0,1,2,1],[1,2,1,2],[2,2,2,2],[1,3,2,0]],[[0,1,2,1],[1,2,1,2],[2,2,2,2],[1,2,3,0]],[[0,1,2,1],[1,2,1,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,1],[1,2,1,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,1],[1,2,1,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,1],[1,2,1,2],[3,2,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,1,2],[2,2,3,1],[2,2,1,1]],[[0,1,2,1],[1,2,1,2],[2,2,3,1],[1,3,1,1]],[[0,1,3,1],[1,2,1,2],[2,2,3,2],[0,2,1,1]],[[0,1,2,2],[1,2,1,2],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[1,2,1,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[1,2,1,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,1],[1,2,1,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,1],[1,2,1,2],[2,2,3,2],[0,2,1,2]],[[0,1,3,1],[1,2,1,2],[2,2,3,2],[0,2,2,0]],[[0,1,2,2],[1,2,1,2],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[1,2,1,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[1,2,1,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,1],[1,2,1,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,1],[1,2,1,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,1],[1,2,1,2],[2,2,3,2],[0,2,3,0]],[[0,1,2,1],[1,2,1,2],[3,2,3,2],[1,2,0,1]],[[0,1,2,1],[1,2,1,2],[2,2,3,2],[2,2,0,1]],[[0,1,2,1],[1,2,1,2],[2,2,3,2],[1,3,0,1]],[[0,1,2,1],[1,2,1,2],[3,2,3,2],[1,2,1,0]],[[0,1,2,1],[1,2,1,2],[2,2,3,2],[2,2,1,0]],[[0,1,2,1],[1,2,1,2],[2,2,3,2],[1,3,1,0]],[[0,1,3,1],[1,2,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,2],[1,2,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[1,2,1,3],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[1,2,1,2],[3,3,1,2],[0,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,4,1,2],[0,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,1,3],[0,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,1,2],[0,3,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,1,2],[0,2,3,1]],[[0,1,2,1],[1,2,1,2],[2,3,1,2],[0,2,2,2]],[[0,1,2,1],[1,2,1,2],[3,3,1,2],[1,1,2,1]],[[0,1,2,1],[1,2,1,2],[2,4,1,2],[1,1,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,1,2],[2,1,2,1]],[[0,1,2,1],[1,2,1,2],[3,3,2,1],[0,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,4,2,1],[0,2,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,2,1],[0,3,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,2,1],[0,2,3,1]],[[0,1,2,1],[1,2,1,2],[2,3,2,1],[0,2,2,2]],[[0,1,2,1],[1,2,1,2],[3,3,2,1],[1,1,2,1]],[[0,1,2,1],[1,2,1,2],[2,4,2,1],[1,1,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,2,1],[2,1,2,1]],[[0,1,3,1],[1,2,1,2],[2,3,2,2],[0,1,2,1]],[[0,1,2,2],[1,2,1,2],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[1,2,1,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,1],[1,2,1,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,1],[1,2,1,2],[3,3,2,2],[0,2,2,0]],[[0,1,2,1],[1,2,1,2],[2,4,2,2],[0,2,2,0]],[[0,1,2,1],[1,2,1,2],[2,3,2,2],[0,3,2,0]],[[0,1,2,1],[1,2,1,2],[2,3,2,2],[0,2,3,0]],[[0,1,3,1],[1,2,1,2],[2,3,2,2],[1,0,2,1]],[[0,1,2,2],[1,2,1,2],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[1,2,1,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,1],[1,2,1,2],[2,3,2,2],[1,0,2,2]],[[0,1,2,1],[1,2,1,2],[3,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,2,1,2],[2,4,2,2],[1,1,2,0]],[[0,1,2,1],[1,2,1,2],[2,3,2,2],[2,1,2,0]],[[0,1,2,1],[1,2,1,2],[3,3,3,1],[0,1,2,1]],[[0,1,2,1],[1,2,1,2],[2,4,3,1],[0,1,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,1],[1,2,1,2],[3,3,3,1],[0,2,1,1]],[[0,1,2,1],[1,2,1,2],[2,4,3,1],[0,2,1,1]],[[0,1,2,1],[1,2,1,2],[2,3,4,1],[0,2,1,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,1],[0,3,1,1]],[[0,1,2,1],[1,2,1,2],[3,3,3,1],[1,0,2,1]],[[0,1,2,1],[1,2,1,2],[2,4,3,1],[1,0,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,1],[2,0,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,1],[1,0,2,2]],[[0,1,2,1],[1,2,1,2],[3,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,2,1,2],[2,4,3,1],[1,1,1,1]],[[0,1,2,1],[1,2,1,2],[2,3,4,1],[1,1,1,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,1],[2,1,1,1]],[[0,1,3,1],[1,2,1,2],[2,3,3,2],[0,0,2,1]],[[0,1,2,2],[1,2,1,2],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[1,2,1,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[0,0,2,2]],[[0,1,3,1],[1,2,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,2],[1,2,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,2,1,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,2,1,2],[3,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,2,1,2],[2,4,3,2],[0,1,1,1]],[[0,1,2,1],[1,2,1,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[0,1,1,2]],[[0,1,3,1],[1,2,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,2],[1,2,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,2,1,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,2,1,2],[3,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,2,1,2],[2,4,3,2],[0,1,2,0]],[[0,1,2,1],[1,2,1,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,1],[1,2,1,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[0,1,3,0]],[[0,1,3,1],[1,2,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,2],[1,2,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,2,1,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,2,1,2],[3,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,2,1,2],[2,4,3,2],[0,2,0,1]],[[0,1,2,1],[1,2,1,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[0,3,0,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[0,2,0,2]],[[0,1,3,1],[1,2,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,2],[1,2,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,2,1,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,2,1,2],[3,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,2,1,2],[2,4,3,2],[0,2,1,0]],[[0,1,2,1],[1,2,1,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,1],[1,2,1,2],[2,3,3,3],[0,2,1,0]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[0,3,1,0]],[[0,1,3,1],[1,2,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,2],[1,2,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,2,1,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,2,1,2],[3,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,2,1,2],[2,4,3,2],[1,0,1,1]],[[0,1,2,1],[1,2,1,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[2,0,1,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[1,0,1,2]],[[0,1,3,1],[1,2,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,2],[1,2,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,2,1,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,2,1,2],[3,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,2,1,2],[2,4,3,2],[1,0,2,0]],[[0,1,2,1],[1,2,1,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,1],[1,2,1,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[2,0,2,0]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[1,0,3,0]],[[0,1,3,1],[1,2,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,2],[1,2,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,2,1,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,2,1,2],[3,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,2,1,2],[2,4,3,2],[1,1,0,1]],[[0,1,2,1],[1,2,1,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[2,1,0,1]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[1,1,0,2]],[[0,1,3,1],[1,2,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,2],[1,2,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,2,1,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,2,1,2],[3,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,2,1,2],[2,4,3,2],[1,1,1,0]],[[0,1,2,1],[1,2,1,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,1],[1,2,1,2],[2,3,3,3],[1,1,1,0]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,3,0],[1,0,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,3,0],[1,0,1,0]],[[1,2,2,2],[2,2,2,1],[2,3,3,0],[1,0,1,0]],[[1,2,3,1],[2,2,2,1],[2,3,3,0],[1,0,1,0]],[[1,3,2,1],[2,2,2,1],[2,3,3,0],[1,0,1,0]],[[2,2,2,1],[2,2,2,1],[2,3,3,0],[1,0,1,0]],[[0,1,2,1],[1,2,1,2],[3,3,3,2],[1,2,0,0]],[[0,1,2,1],[1,2,1,2],[2,4,3,2],[1,2,0,0]],[[0,1,2,1],[1,2,1,2],[2,3,3,2],[2,2,0,0]],[[0,1,3,1],[1,2,2,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,2],[1,2,2,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,3],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[0,3,1,3],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[0,3,1,2],[1,3,2,1]],[[0,1,2,1],[1,2,2,2],[0,3,1,2],[1,2,3,1]],[[0,1,2,1],[1,2,2,2],[0,3,1,2],[1,2,2,2]],[[0,1,3,1],[1,2,2,2],[0,3,2,2],[1,2,1,1]],[[0,1,2,2],[1,2,2,2],[0,3,2,2],[1,2,1,1]],[[0,1,2,1],[1,2,2,3],[0,3,2,2],[1,2,1,1]],[[0,1,2,1],[1,2,2,2],[0,3,2,3],[1,2,1,1]],[[0,1,2,1],[1,2,2,2],[0,3,2,2],[1,2,1,2]],[[0,1,3,1],[1,2,2,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,2],[1,2,2,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,2,3],[0,3,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,2,2],[0,3,2,3],[1,2,2,0]],[[0,1,3,1],[1,2,2,2],[0,3,3,0],[1,2,2,1]],[[0,1,2,2],[1,2,2,2],[0,3,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,2,3],[0,3,3,0],[1,2,2,1]],[[0,1,3,1],[1,2,2,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,2],[1,2,2,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,2,3],[0,3,3,1],[1,2,1,1]],[[0,1,3,1],[1,2,2,2],[0,3,3,1],[1,2,2,0]],[[0,1,2,2],[1,2,2,2],[0,3,3,1],[1,2,2,0]],[[0,1,2,1],[1,2,2,3],[0,3,3,1],[1,2,2,0]],[[0,1,3,1],[1,2,2,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,2],[1,2,2,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,3],[1,2,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[1,2,1,3],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[1,2,1,2],[2,2,2,1]],[[0,1,2,1],[1,2,2,2],[1,2,1,2],[1,3,2,1]],[[0,1,2,1],[1,2,2,2],[1,2,1,2],[1,2,3,1]],[[0,1,2,1],[1,2,2,2],[1,2,1,2],[1,2,2,2]],[[0,1,3,1],[1,2,2,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,2],[1,2,2,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,1],[1,2,2,3],[1,2,2,2],[1,2,1,1]],[[0,1,2,1],[1,2,2,2],[1,2,2,3],[1,2,1,1]],[[0,1,2,1],[1,2,2,2],[1,2,2,2],[1,2,1,2]],[[0,1,3,1],[1,2,2,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,2],[1,2,2,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,2,3],[1,2,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,2,2],[1,2,2,3],[1,2,2,0]],[[0,1,3,1],[1,2,2,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,2],[1,2,2,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,2,3],[1,2,3,0],[1,2,2,1]],[[0,1,3,1],[1,2,2,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,2],[1,2,2,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,2,3],[1,2,3,1],[1,2,1,1]],[[0,1,3,1],[1,2,2,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,2],[1,2,2,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,1],[1,2,2,3],[1,2,3,1],[1,2,2,0]],[[0,1,3,1],[1,2,2,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,2],[1,2,2,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,3],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[1,4,0,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[1,3,0,3],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[1,3,0,2],[2,2,2,1]],[[0,1,2,1],[1,2,2,2],[1,3,0,2],[1,3,2,1]],[[0,1,2,1],[1,2,2,2],[1,3,0,2],[1,2,3,1]],[[0,1,2,1],[1,2,2,2],[1,3,0,2],[1,2,2,2]],[[0,1,3,1],[1,2,2,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,2],[1,2,2,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[1,2,2,3],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[1,2,2,2],[1,3,1,3],[1,1,2,1]],[[0,1,2,1],[1,2,2,2],[1,3,1,2],[1,1,3,1]],[[0,1,2,1],[1,2,2,2],[1,3,1,2],[1,1,2,2]],[[0,1,3,1],[1,2,2,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,2],[1,2,2,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,1],[1,2,2,3],[1,3,2,2],[1,0,2,1]],[[0,1,2,1],[1,2,2,2],[1,3,2,3],[1,0,2,1]],[[0,1,2,1],[1,2,2,2],[1,3,2,2],[1,0,2,2]],[[0,1,3,1],[1,2,2,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,2],[1,2,2,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[1,2,2,3],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[1,2,2,2],[1,3,2,3],[1,1,1,1]],[[0,1,2,1],[1,2,2,2],[1,3,2,2],[1,1,1,2]],[[0,1,3,1],[1,2,2,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,2],[1,2,2,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,2,2,3],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,2,2,2],[1,3,2,3],[1,1,2,0]],[[0,1,3,1],[1,2,2,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,2],[1,2,2,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[1,2,2,3],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[1,2,2,2],[1,3,2,3],[1,2,0,1]],[[0,1,2,1],[1,2,2,2],[1,3,2,2],[1,2,0,2]],[[0,1,3,1],[1,2,2,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,2],[1,2,2,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[1,2,2,3],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[1,2,2,2],[1,3,2,3],[1,2,1,0]],[[0,1,3,1],[1,2,2,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,2],[1,2,2,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[1,2,2,3],[1,3,3,0],[1,1,2,1]],[[0,1,3,1],[1,2,2,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,2],[1,2,2,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,1],[1,2,2,3],[1,3,3,0],[1,2,1,1]],[[0,1,3,1],[1,2,2,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,2],[1,2,2,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[1,2,2,3],[1,3,3,1],[1,0,2,1]],[[0,1,3,1],[1,2,2,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,2],[1,2,2,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,2,2,3],[1,3,3,1],[1,1,1,1]],[[0,1,3,1],[1,2,2,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,2],[1,2,2,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,1],[1,2,2,3],[1,3,3,1],[1,1,2,0]],[[0,1,3,1],[1,2,2,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,2],[1,2,2,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[1,2,2,3],[1,3,3,1],[1,2,0,1]],[[0,1,3,1],[1,2,2,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,2],[1,2,2,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,1],[1,2,2,3],[1,3,3,1],[1,2,1,0]],[[0,1,3,1],[1,2,2,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,2],[1,2,2,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,2,2,3],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,2,2,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,2,2,1],[3,3,2,1],[1,0,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,2,1],[1,0,1,0]],[[1,2,2,2],[2,2,2,1],[2,3,2,1],[1,0,1,0]],[[1,2,3,1],[2,2,2,1],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[2,2,2,1],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[2,2,2,1],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,2,1],[1,0,0,1]],[[1,2,2,1],[3,2,2,1],[2,3,2,1],[1,0,0,1]],[[1,2,2,2],[2,2,2,1],[2,3,2,1],[1,0,0,1]],[[1,2,3,1],[2,2,2,1],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[2,2,2,1],[2,3,2,1],[1,0,0,1]],[[2,2,2,1],[2,2,2,1],[2,3,2,1],[1,0,0,1]],[[0,1,3,1],[1,2,2,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,2],[1,2,2,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,3],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[3,1,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[2,1,1,3],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[2,1,1,2],[2,2,2,1]],[[0,1,2,1],[1,2,2,2],[2,1,1,2],[1,3,2,1]],[[0,1,2,1],[1,2,2,2],[2,1,1,2],[1,2,3,1]],[[0,1,2,1],[1,2,2,2],[2,1,1,2],[1,2,2,2]],[[0,1,3,1],[1,2,2,2],[2,1,2,2],[1,2,1,1]],[[0,1,2,2],[1,2,2,2],[2,1,2,2],[1,2,1,1]],[[0,1,2,1],[1,2,2,3],[2,1,2,2],[1,2,1,1]],[[0,1,2,1],[1,2,2,2],[2,1,2,3],[1,2,1,1]],[[0,1,2,1],[1,2,2,2],[2,1,2,2],[1,2,1,2]],[[0,1,3,1],[1,2,2,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,2],[1,2,2,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,2,3],[2,1,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,2,2],[2,1,2,3],[1,2,2,0]],[[0,1,3,1],[1,2,2,2],[2,1,3,0],[1,2,2,1]],[[0,1,2,2],[1,2,2,2],[2,1,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,2,3],[2,1,3,0],[1,2,2,1]],[[0,1,3,1],[1,2,2,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,2],[1,2,2,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,2,3],[2,1,3,1],[1,2,1,1]],[[0,1,3,1],[1,2,2,2],[2,1,3,1],[1,2,2,0]],[[0,1,2,2],[1,2,2,2],[2,1,3,1],[1,2,2,0]],[[0,1,2,1],[1,2,2,3],[2,1,3,1],[1,2,2,0]],[[0,1,3,1],[1,2,2,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,2],[1,2,2,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,3],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[3,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[2,2,0,3],[1,2,2,1]],[[0,1,2,1],[1,2,2,2],[2,2,0,2],[2,2,2,1]],[[0,1,2,1],[1,2,2,2],[2,2,0,2],[1,3,2,1]],[[0,1,2,1],[1,2,2,2],[2,2,0,2],[1,2,3,1]],[[0,1,2,1],[1,2,2,2],[2,2,0,2],[1,2,2,2]],[[0,1,3,1],[1,2,2,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,2],[1,2,2,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[1,2,2,3],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[1,2,2,2],[2,2,1,3],[0,2,2,1]],[[0,1,2,1],[1,2,2,2],[2,2,1,2],[0,3,2,1]],[[0,1,2,1],[1,2,2,2],[2,2,1,2],[0,2,3,1]],[[0,1,2,1],[1,2,2,2],[2,2,1,2],[0,2,2,2]],[[0,1,3,1],[1,2,2,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,2],[1,2,2,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,1],[1,2,2,3],[2,2,2,2],[0,2,1,1]],[[0,1,2,1],[1,2,2,2],[2,2,2,3],[0,2,1,1]],[[0,1,2,1],[1,2,2,2],[2,2,2,2],[0,2,1,2]],[[0,1,3,1],[1,2,2,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,2],[1,2,2,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[1,2,2,3],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[1,2,2,2],[2,2,2,3],[0,2,2,0]],[[0,1,3,1],[1,2,2,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,2],[1,2,2,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,1],[1,2,2,3],[2,2,3,0],[0,2,2,1]],[[0,1,3,1],[1,2,2,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,2],[1,2,2,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[1,2,2,3],[2,2,3,1],[0,2,1,1]],[[0,1,3,1],[1,2,2,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,2],[1,2,2,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,1],[1,2,2,3],[2,2,3,1],[0,2,2,0]],[[1,2,2,1],[2,2,2,1],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[2,2,2,1],[3,3,2,0],[1,2,0,0]],[[1,2,2,1],[3,2,2,1],[2,3,2,0],[1,2,0,0]],[[1,2,3,1],[2,2,2,1],[2,3,2,0],[1,2,0,0]],[[1,3,2,1],[2,2,2,1],[2,3,2,0],[1,2,0,0]],[[2,2,2,1],[2,2,2,1],[2,3,2,0],[1,2,0,0]],[[1,2,2,1],[2,2,2,1],[2,3,2,0],[2,1,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,2,0],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,2,0],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[2,3,2,0],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[2,3,2,0],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[2,3,2,0],[1,1,1,0]],[[0,1,3,1],[1,2,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,2],[1,2,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,2,2,3],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,2,2,2],[3,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,2,2,2],[2,4,0,2],[0,2,2,1]],[[0,1,2,1],[1,2,2,2],[2,3,0,3],[0,2,2,1]],[[0,1,2,1],[1,2,2,2],[2,3,0,2],[0,3,2,1]],[[0,1,2,1],[1,2,2,2],[2,3,0,2],[0,2,3,1]],[[0,1,2,1],[1,2,2,2],[2,3,0,2],[0,2,2,2]],[[0,1,2,1],[1,2,2,2],[3,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,2,2,2],[2,4,0,2],[1,1,2,1]],[[0,1,2,1],[1,2,2,2],[2,3,0,2],[2,1,2,1]],[[0,1,3,1],[1,2,2,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,2],[1,2,2,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,1],[1,2,2,3],[2,3,1,2],[0,1,2,1]],[[0,1,2,1],[1,2,2,2],[2,3,1,3],[0,1,2,1]],[[0,1,2,1],[1,2,2,2],[2,3,1,2],[0,1,3,1]],[[0,1,2,1],[1,2,2,2],[2,3,1,2],[0,1,2,2]],[[0,1,3,1],[1,2,2,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,2],[1,2,2,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,1],[1,2,2,3],[2,3,1,2],[1,0,2,1]],[[0,1,2,1],[1,2,2,2],[2,3,1,3],[1,0,2,1]],[[0,1,2,1],[1,2,2,2],[2,3,1,2],[1,0,3,1]],[[0,1,2,1],[1,2,2,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,2,2,1],[3,3,2,0],[1,0,1,1]],[[1,2,2,1],[3,2,2,1],[2,3,2,0],[1,0,1,1]],[[1,2,2,2],[2,2,2,1],[2,3,2,0],[1,0,1,1]],[[1,2,3,1],[2,2,2,1],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,2,2,1],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,2,2,1],[2,3,2,0],[1,0,1,1]],[[0,1,3,1],[1,2,2,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,2],[1,2,2,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,1],[1,2,2,3],[2,3,2,2],[0,0,2,1]],[[0,1,2,1],[1,2,2,2],[2,3,2,3],[0,0,2,1]],[[0,1,2,1],[1,2,2,2],[2,3,2,2],[0,0,2,2]],[[0,1,3,1],[1,2,2,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,2],[1,2,2,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[1,2,2,3],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[1,2,2,2],[2,3,2,3],[0,1,1,1]],[[0,1,2,1],[1,2,2,2],[2,3,2,2],[0,1,1,2]],[[0,1,3,1],[1,2,2,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,2],[1,2,2,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[1,2,2,3],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[1,2,2,2],[2,3,2,3],[0,1,2,0]],[[0,1,3,1],[1,2,2,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,2],[1,2,2,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[1,2,2,3],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[1,2,2,2],[2,3,2,3],[0,2,0,1]],[[0,1,2,1],[1,2,2,2],[2,3,2,2],[0,2,0,2]],[[0,1,3,1],[1,2,2,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,2],[1,2,2,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[1,2,2,3],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[1,2,2,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,2,0],[0,2,1,0]],[[0,1,3,1],[1,2,2,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,2],[1,2,2,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[1,2,2,3],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[1,2,2,2],[2,3,2,3],[1,0,1,1]],[[0,1,2,1],[1,2,2,2],[2,3,2,2],[1,0,1,2]],[[0,1,3,1],[1,2,2,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,2],[1,2,2,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[1,2,2,3],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[1,2,2,2],[2,3,2,3],[1,0,2,0]],[[0,1,3,1],[1,2,2,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,2],[1,2,2,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[1,2,2,3],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[1,2,2,2],[2,3,2,3],[1,1,0,1]],[[0,1,2,1],[1,2,2,2],[2,3,2,2],[1,1,0,2]],[[0,1,3,1],[1,2,2,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,2],[1,2,2,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[1,2,2,3],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[1,2,2,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,2,0],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,3,2,0],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,3,2,0],[0,2,1,0]],[[0,1,3,1],[1,2,2,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,2],[1,2,2,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[1,2,2,3],[2,3,3,0],[0,1,2,1]],[[0,1,3,1],[1,2,2,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,2],[1,2,2,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[1,2,2,3],[2,3,3,0],[0,2,1,1]],[[0,1,3,1],[1,2,2,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,2],[1,2,2,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[1,2,2,3],[2,3,3,0],[1,0,2,1]],[[0,1,3,1],[1,2,2,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,2],[1,2,2,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[1,2,2,3],[2,3,3,0],[1,1,1,1]],[[0,1,3,1],[1,2,2,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,2],[1,2,2,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[1,2,2,3],[2,3,3,1],[0,0,2,1]],[[0,1,3,1],[1,2,2,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,2],[1,2,2,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[1,2,2,3],[2,3,3,1],[0,1,1,1]],[[0,1,3,1],[1,2,2,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,2],[1,2,2,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[1,2,2,3],[2,3,3,1],[0,1,2,0]],[[0,1,3,1],[1,2,2,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,2],[1,2,2,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[1,2,2,3],[2,3,3,1],[0,2,0,1]],[[0,1,3,1],[1,2,2,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,2],[1,2,2,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[1,2,2,3],[2,3,3,1],[0,2,1,0]],[[0,1,3,1],[1,2,2,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,2],[1,2,2,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[1,2,2,3],[2,3,3,1],[1,0,1,1]],[[0,1,3,1],[1,2,2,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,2],[1,2,2,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[1,2,2,3],[2,3,3,1],[1,0,2,0]],[[0,1,3,1],[1,2,2,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,2],[1,2,2,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[1,2,2,3],[2,3,3,1],[1,1,0,1]],[[0,1,3,1],[1,2,2,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,2],[1,2,2,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[1,2,2,3],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,1,2],[1,0,1,0]],[[1,2,2,2],[2,2,2,1],[2,3,1,2],[1,0,1,0]],[[1,2,3,1],[2,2,2,1],[2,3,1,2],[1,0,1,0]],[[1,3,2,1],[2,2,2,1],[2,3,1,2],[1,0,1,0]],[[2,2,2,1],[2,2,2,1],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,1,2],[1,0,0,1]],[[1,2,2,1],[3,2,2,1],[2,3,1,2],[1,0,0,1]],[[1,2,2,2],[2,2,2,1],[2,3,1,2],[1,0,0,1]],[[1,2,3,1],[2,2,2,1],[2,3,1,2],[1,0,0,1]],[[1,3,2,1],[2,2,2,1],[2,3,1,2],[1,0,0,1]],[[2,2,2,1],[2,2,2,1],[2,3,1,2],[1,0,0,1]],[[0,1,3,1],[1,2,2,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,2],[1,2,2,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,1],[1,2,2,3],[2,3,3,2],[0,1,0,1]],[[0,1,2,1],[1,2,2,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,2,2,1],[2,3,1,1],[2,2,0,0]],[[1,2,2,1],[2,2,2,1],[3,3,1,1],[1,2,0,0]],[[1,2,2,1],[3,2,2,1],[2,3,1,1],[1,2,0,0]],[[1,2,2,2],[2,2,2,1],[2,3,1,1],[1,2,0,0]],[[1,2,3,1],[2,2,2,1],[2,3,1,1],[1,2,0,0]],[[0,1,3,1],[1,2,2,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,2],[1,2,2,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[1,2,2,3],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[1,2,2,2],[2,3,3,3],[1,0,0,1]],[[1,3,2,1],[2,2,2,1],[2,3,1,1],[1,2,0,0]],[[2,2,2,1],[2,2,2,1],[2,3,1,1],[1,2,0,0]],[[1,2,2,1],[2,2,2,1],[2,3,1,1],[2,1,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,1,1],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,1,1],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[2,3,1,1],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[2,3,1,1],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[2,3,1,1],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[2,3,1,1],[1,1,1,0]],[[1,2,2,1],[2,2,2,1],[2,3,1,1],[2,1,0,1]],[[1,2,2,1],[2,2,2,1],[3,3,1,1],[1,1,0,1]],[[1,2,2,1],[3,2,2,1],[2,3,1,1],[1,1,0,1]],[[1,2,2,2],[2,2,2,1],[2,3,1,1],[1,1,0,1]],[[1,2,3,1],[2,2,2,1],[2,3,1,1],[1,1,0,1]],[[1,3,2,1],[2,2,2,1],[2,3,1,1],[1,1,0,1]],[[2,2,2,1],[2,2,2,1],[2,3,1,1],[1,1,0,1]],[[1,2,2,1],[2,2,2,1],[3,3,1,1],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,1,1],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,3,1,1],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,3,1,1],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,3,1,1],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,3,1,1],[0,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,1,1],[0,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,3,1,1],[0,2,0,1]],[[1,2,2,2],[2,2,2,1],[2,3,1,1],[0,2,0,1]],[[1,2,3,1],[2,2,2,1],[2,3,1,1],[0,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,3,1,1],[0,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,3,1,1],[0,2,0,1]],[[1,2,2,1],[2,2,2,1],[2,3,1,0],[2,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,3,1,0],[1,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,3,1,0],[1,2,0,1]],[[1,2,2,2],[2,2,2,1],[2,3,1,0],[1,2,0,1]],[[1,2,3,1],[2,2,2,1],[2,3,1,0],[1,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,3,1,0],[1,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,3,1,0],[1,2,0,1]],[[1,2,2,1],[2,2,2,1],[2,3,1,0],[2,1,1,1]],[[1,2,2,1],[2,2,2,1],[3,3,1,0],[1,1,1,1]],[[0,1,2,1],[1,2,3,0],[0,2,3,3],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[0,2,3,2],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[0,2,3,2],[1,2,2,2]],[[0,1,2,1],[1,2,3,0],[0,3,2,3],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[0,3,2,2],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[0,3,2,2],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[0,3,2,2],[1,2,2,2]],[[0,1,3,1],[1,2,3,0],[0,3,3,1],[1,2,2,1]],[[0,1,2,2],[1,2,3,0],[0,3,3,1],[1,2,2,1]],[[0,1,2,1],[1,2,4,0],[0,3,3,1],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[0,3,4,1],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[0,3,3,1],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[0,3,3,1],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[0,3,3,1],[1,2,2,2]],[[0,1,3,1],[1,2,3,0],[0,3,3,2],[1,2,1,1]],[[0,1,2,2],[1,2,3,0],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,4,0],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[0,3,4,2],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[0,3,3,3],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[0,3,3,2],[1,2,1,2]],[[0,1,3,1],[1,2,3,0],[0,3,3,2],[1,2,2,0]],[[0,1,2,2],[1,2,3,0],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,4,0],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[0,3,4,2],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[0,3,3,3],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[0,3,3,2],[1,3,2,0]],[[0,1,2,1],[1,2,3,0],[0,3,3,2],[1,2,3,0]],[[0,1,2,1],[1,2,3,0],[1,1,3,3],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,1,3,2],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[1,1,3,2],[1,2,2,2]],[[0,1,2,1],[1,2,3,0],[1,2,2,3],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,2,2,2],[2,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,2,2,2],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[1,2,2,2],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[1,2,2,2],[1,2,2,2]],[[0,1,3,1],[1,2,3,0],[1,2,3,1],[1,2,2,1]],[[0,1,2,2],[1,2,3,0],[1,2,3,1],[1,2,2,1]],[[0,1,2,1],[1,2,4,0],[1,2,3,1],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,2,4,1],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,2,3,1],[2,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,2,3,1],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[1,2,3,1],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[1,2,3,1],[1,2,2,2]],[[0,1,3,1],[1,2,3,0],[1,2,3,2],[1,2,1,1]],[[0,1,2,2],[1,2,3,0],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,4,0],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[1,2,4,2],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[1,2,3,3],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[1,2,3,2],[1,2,1,2]],[[0,1,3,1],[1,2,3,0],[1,2,3,2],[1,2,2,0]],[[0,1,2,2],[1,2,3,0],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,4,0],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[1,2,4,2],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[1,2,3,3],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[1,2,3,2],[2,2,2,0]],[[0,1,2,1],[1,2,3,0],[1,2,3,2],[1,3,2,0]],[[0,1,2,1],[1,2,3,0],[1,2,3,2],[1,2,3,0]],[[0,1,2,1],[1,2,3,0],[1,4,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,1,3],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,1,2],[2,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,1,2],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,1,2],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[1,3,1,2],[1,2,2,2]],[[0,1,2,1],[1,2,3,0],[1,4,2,1],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,2,1],[2,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,2,1],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,2,1],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[1,3,2,1],[1,2,2,2]],[[0,1,2,1],[1,2,3,0],[1,3,2,3],[1,1,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,2,2],[1,1,3,1]],[[0,1,2,1],[1,2,3,0],[1,3,2,2],[1,1,2,2]],[[0,1,2,1],[1,2,3,0],[1,4,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[1,3,2,2],[2,2,2,0]],[[0,1,2,1],[1,2,3,0],[1,3,2,2],[1,3,2,0]],[[0,1,2,1],[1,2,3,0],[1,3,2,2],[1,2,3,0]],[[0,1,2,1],[1,2,3,0],[1,4,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,0],[2,2,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,0],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,0],[1,2,3,1]],[[0,1,3,1],[1,2,3,0],[1,3,3,1],[1,1,2,1]],[[0,1,2,2],[1,2,3,0],[1,3,3,1],[1,1,2,1]],[[0,1,2,1],[1,2,4,0],[1,3,3,1],[1,1,2,1]],[[0,1,2,1],[1,2,3,0],[1,4,3,1],[1,1,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,4,1],[1,1,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,1],[1,1,3,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,1],[1,1,2,2]],[[0,1,3,1],[1,2,3,0],[1,3,3,1],[1,2,1,1]],[[0,1,2,2],[1,2,3,0],[1,3,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,4,0],[1,3,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[1,4,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[1,3,4,1],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,1],[2,2,1,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,1],[1,3,1,1]],[[0,1,3,1],[1,2,3,0],[1,3,3,2],[1,0,2,1]],[[0,1,2,2],[1,2,3,0],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[1,2,4,0],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,4,2],[1,0,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,3],[1,0,2,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,2],[1,0,2,2]],[[0,1,3,1],[1,2,3,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,2],[1,2,3,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[1,2,4,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[1,2,3,0],[1,4,3,2],[1,1,1,1]],[[0,1,2,1],[1,2,3,0],[1,3,4,2],[1,1,1,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,3],[1,1,1,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,2],[1,1,1,2]],[[0,1,3,1],[1,2,3,0],[1,3,3,2],[1,1,2,0]],[[0,1,2,2],[1,2,3,0],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[1,2,4,0],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[1,2,3,0],[1,4,3,2],[1,1,2,0]],[[0,1,2,1],[1,2,3,0],[1,3,4,2],[1,1,2,0]],[[0,1,2,1],[1,2,3,0],[1,3,3,3],[1,1,2,0]],[[0,1,2,1],[1,2,3,0],[1,3,3,2],[1,1,3,0]],[[0,1,3,1],[1,2,3,0],[1,3,3,2],[1,2,0,1]],[[0,1,2,2],[1,2,3,0],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[1,2,4,0],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[1,2,3,0],[1,4,3,2],[1,2,0,1]],[[0,1,2,1],[1,2,3,0],[1,3,4,2],[1,2,0,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,3],[1,2,0,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,2],[2,2,0,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,2],[1,3,0,1]],[[0,1,2,1],[1,2,3,0],[1,3,3,2],[1,2,0,2]],[[0,1,3,1],[1,2,3,0],[1,3,3,2],[1,2,1,0]],[[0,1,2,2],[1,2,3,0],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[1,2,4,0],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[1,2,3,0],[1,4,3,2],[1,2,1,0]],[[0,1,2,1],[1,2,3,0],[1,3,4,2],[1,2,1,0]],[[0,1,2,1],[1,2,3,0],[1,3,3,3],[1,2,1,0]],[[0,1,2,1],[1,2,3,0],[1,3,3,2],[2,2,1,0]],[[0,1,2,1],[1,2,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,1,0],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[2,3,1,0],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[2,3,1,0],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[2,3,1,0],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[2,3,1,0],[1,1,1,1]],[[0,1,2,1],[1,2,3,0],[2,0,3,3],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,0,3,2],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[2,0,3,2],[1,2,2,2]],[[0,1,2,1],[1,2,3,0],[3,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,1,2,3],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,1,2,2],[2,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,1,2,2],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[2,1,2,2],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[2,1,2,2],[1,2,2,2]],[[0,1,3,1],[1,2,3,0],[2,1,3,1],[1,2,2,1]],[[0,1,2,2],[1,2,3,0],[2,1,3,1],[1,2,2,1]],[[0,1,2,1],[1,2,4,0],[2,1,3,1],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[3,1,3,1],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,1,4,1],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,1,3,1],[2,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,1,3,1],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[2,1,3,1],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[2,1,3,1],[1,2,2,2]],[[0,1,2,1],[1,2,3,0],[2,1,3,3],[0,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,1,3,2],[0,2,3,1]],[[0,1,2,1],[1,2,3,0],[2,1,3,2],[0,2,2,2]],[[0,1,3,1],[1,2,3,0],[2,1,3,2],[1,2,1,1]],[[0,1,2,2],[1,2,3,0],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,4,0],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[2,1,4,2],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[2,1,3,3],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[2,1,3,2],[1,2,1,2]],[[0,1,3,1],[1,2,3,0],[2,1,3,2],[1,2,2,0]],[[0,1,2,2],[1,2,3,0],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,4,0],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[3,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[2,1,4,2],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[2,1,3,3],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[2,1,3,2],[2,2,2,0]],[[0,1,2,1],[1,2,3,0],[2,1,3,2],[1,3,2,0]],[[0,1,2,1],[1,2,3,0],[2,1,3,2],[1,2,3,0]],[[0,1,2,1],[1,2,3,0],[3,2,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,1,3],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,1,2],[2,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,1,2],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,1,2],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[2,2,1,2],[1,2,2,2]],[[0,1,2,1],[1,2,3,0],[3,2,2,1],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,2,1],[2,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,2,1],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,2,1],[1,2,3,1]],[[0,1,2,1],[1,2,3,0],[2,2,2,1],[1,2,2,2]],[[0,1,2,1],[1,2,3,0],[2,2,2,3],[0,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,2,2],[0,3,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,2,2],[0,2,3,1]],[[0,1,2,1],[1,2,3,0],[2,2,2,2],[0,2,2,2]],[[0,1,2,1],[1,2,3,0],[3,2,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,3,0],[2,2,2,2],[2,2,2,0]],[[0,1,2,1],[1,2,3,0],[2,2,2,2],[1,3,2,0]],[[0,1,2,1],[1,2,3,0],[2,2,2,2],[1,2,3,0]],[[0,1,2,1],[1,2,3,0],[3,2,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,0],[2,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,0],[1,3,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,0],[1,2,3,1]],[[0,1,3,1],[1,2,3,0],[2,2,3,1],[0,2,2,1]],[[0,1,2,2],[1,2,3,0],[2,2,3,1],[0,2,2,1]],[[0,1,2,1],[1,2,4,0],[2,2,3,1],[0,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,4,1],[0,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,1],[0,3,2,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,1],[0,2,3,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,1],[0,2,2,2]],[[0,1,2,1],[1,2,3,0],[3,2,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,1],[2,2,1,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,1],[1,3,1,1]],[[0,1,3,1],[1,2,3,0],[2,2,3,2],[0,2,1,1]],[[0,1,2,2],[1,2,3,0],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[1,2,4,0],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[1,2,3,0],[2,2,4,2],[0,2,1,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,3],[0,2,1,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,2],[0,2,1,2]],[[0,1,3,1],[1,2,3,0],[2,2,3,2],[0,2,2,0]],[[0,1,2,2],[1,2,3,0],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[1,2,4,0],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[1,2,3,0],[2,2,4,2],[0,2,2,0]],[[0,1,2,1],[1,2,3,0],[2,2,3,3],[0,2,2,0]],[[0,1,2,1],[1,2,3,0],[2,2,3,2],[0,3,2,0]],[[0,1,2,1],[1,2,3,0],[2,2,3,2],[0,2,3,0]],[[0,1,2,1],[1,2,3,0],[3,2,3,2],[1,2,0,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,2],[2,2,0,1]],[[0,1,2,1],[1,2,3,0],[2,2,3,2],[1,3,0,1]],[[0,1,2,1],[1,2,3,0],[3,2,3,2],[1,2,1,0]],[[0,1,2,1],[1,2,3,0],[2,2,3,2],[2,2,1,0]],[[0,1,2,1],[1,2,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,1,0],[0,2,1,1]],[[1,2,2,1],[3,2,2,1],[2,3,1,0],[0,2,1,1]],[[1,2,2,2],[2,2,2,1],[2,3,1,0],[0,2,1,1]],[[1,2,3,1],[2,2,2,1],[2,3,1,0],[0,2,1,1]],[[1,3,2,1],[2,2,2,1],[2,3,1,0],[0,2,1,1]],[[0,1,2,1],[1,2,3,0],[3,3,1,2],[0,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,4,1,2],[0,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,1,3],[0,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,1,2],[0,3,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,1,2],[0,2,3,1]],[[0,1,2,1],[1,2,3,0],[2,3,1,2],[0,2,2,2]],[[0,1,2,1],[1,2,3,0],[3,3,1,2],[1,1,2,1]],[[0,1,2,1],[1,2,3,0],[2,4,1,2],[1,1,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,1,2],[2,1,2,1]],[[0,1,2,1],[1,2,3,0],[3,3,2,1],[0,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,4,2,1],[0,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,2,1],[0,3,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,2,1],[0,2,3,1]],[[0,1,2,1],[1,2,3,0],[2,3,2,1],[0,2,2,2]],[[0,1,2,1],[1,2,3,0],[3,3,2,1],[1,1,2,1]],[[0,1,2,1],[1,2,3,0],[2,4,2,1],[1,1,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,2,1],[2,1,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,2,3],[0,1,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,2,2],[0,1,3,1]],[[0,1,2,1],[1,2,3,0],[2,3,2,2],[0,1,2,2]],[[0,1,2,1],[1,2,3,0],[3,3,2,2],[0,2,2,0]],[[0,1,2,1],[1,2,3,0],[2,4,2,2],[0,2,2,0]],[[0,1,2,1],[1,2,3,0],[2,3,2,2],[0,3,2,0]],[[0,1,2,1],[1,2,3,0],[2,3,2,2],[0,2,3,0]],[[0,1,2,1],[1,2,3,0],[2,3,2,3],[1,0,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,2,2],[1,0,3,1]],[[0,1,2,1],[1,2,3,0],[2,3,2,2],[1,0,2,2]],[[0,1,2,1],[1,2,3,0],[3,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,2,3,0],[2,4,2,2],[1,1,2,0]],[[0,1,2,1],[1,2,3,0],[2,3,2,2],[2,1,2,0]],[[2,2,2,1],[2,2,2,1],[2,3,1,0],[0,2,1,1]],[[0,1,2,1],[1,2,3,0],[3,3,3,0],[0,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,4,3,0],[0,2,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,0],[0,3,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,0],[0,2,3,1]],[[0,1,2,1],[1,2,3,0],[3,3,3,0],[1,1,2,1]],[[0,1,2,1],[1,2,3,0],[2,4,3,0],[1,1,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,0],[2,1,2,1]],[[0,1,3,1],[1,2,3,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,2],[1,2,3,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[1,2,4,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[1,2,3,0],[3,3,3,1],[0,1,2,1]],[[0,1,2,1],[1,2,3,0],[2,4,3,1],[0,1,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,4,1],[0,1,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,1],[0,1,3,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,1],[0,1,2,2]],[[0,1,3,1],[1,2,3,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,2],[1,2,3,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[1,2,4,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[1,2,3,0],[3,3,3,1],[0,2,1,1]],[[0,1,2,1],[1,2,3,0],[2,4,3,1],[0,2,1,1]],[[0,1,2,1],[1,2,3,0],[2,3,4,1],[0,2,1,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,1],[0,3,1,1]],[[0,1,3,1],[1,2,3,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,2],[1,2,3,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[1,2,4,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[1,2,3,0],[3,3,3,1],[1,0,2,1]],[[0,1,2,1],[1,2,3,0],[2,4,3,1],[1,0,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,4,1],[1,0,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,1],[2,0,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,1],[1,0,3,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,1],[1,0,2,2]],[[0,1,3,1],[1,2,3,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,2],[1,2,3,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,2,4,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,2,3,0],[3,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,2,3,0],[2,4,3,1],[1,1,1,1]],[[0,1,2,1],[1,2,3,0],[2,3,4,1],[1,1,1,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,1],[2,1,1,1]],[[0,1,2,1],[1,2,3,0],[3,3,3,1],[1,2,0,1]],[[0,1,2,1],[1,2,3,0],[2,4,3,1],[1,2,0,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,2,2,1],[2,3,0,2],[2,2,0,0]],[[1,2,2,1],[2,2,2,1],[3,3,0,2],[1,2,0,0]],[[0,1,3,1],[1,2,3,0],[2,3,3,2],[0,0,2,1]],[[0,1,2,2],[1,2,3,0],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[1,2,4,0],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,4,2],[0,0,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,3],[0,0,2,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[0,0,2,2]],[[0,1,3,1],[1,2,3,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,2],[1,2,3,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,2,4,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,2,3,0],[3,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,2,3,0],[2,4,3,2],[0,1,1,1]],[[0,1,2,1],[1,2,3,0],[2,3,4,2],[0,1,1,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,3],[0,1,1,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[0,1,1,2]],[[0,1,3,1],[1,2,3,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,2],[1,2,3,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,2,4,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,2,3,0],[3,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,2,3,0],[2,4,3,2],[0,1,2,0]],[[0,1,2,1],[1,2,3,0],[2,3,4,2],[0,1,2,0]],[[0,1,2,1],[1,2,3,0],[2,3,3,3],[0,1,2,0]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[0,1,3,0]],[[0,1,3,1],[1,2,3,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,2],[1,2,3,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,2,4,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,2,3,0],[3,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,2,3,0],[2,4,3,2],[0,2,0,1]],[[0,1,2,1],[1,2,3,0],[2,3,4,2],[0,2,0,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,3],[0,2,0,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[0,3,0,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[0,2,0,2]],[[0,1,3,1],[1,2,3,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,2],[1,2,3,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,2,4,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,2,3,0],[3,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,2,3,0],[2,4,3,2],[0,2,1,0]],[[0,1,2,1],[1,2,3,0],[2,3,4,2],[0,2,1,0]],[[0,1,2,1],[1,2,3,0],[2,3,3,3],[0,2,1,0]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,0,2],[1,2,0,0]],[[1,2,2,2],[2,2,2,1],[2,3,0,2],[1,2,0,0]],[[1,2,3,1],[2,2,2,1],[2,3,0,2],[1,2,0,0]],[[1,3,2,1],[2,2,2,1],[2,3,0,2],[1,2,0,0]],[[2,2,2,1],[2,2,2,1],[2,3,0,2],[1,2,0,0]],[[0,1,3,1],[1,2,3,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,2],[1,2,3,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,2,4,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,2,3,0],[3,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,2,3,0],[2,4,3,2],[1,0,1,1]],[[0,1,2,1],[1,2,3,0],[2,3,4,2],[1,0,1,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,3],[1,0,1,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[2,0,1,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[1,0,1,2]],[[0,1,3,1],[1,2,3,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,2],[1,2,3,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,2,4,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,2,3,0],[3,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,2,3,0],[2,4,3,2],[1,0,2,0]],[[0,1,2,1],[1,2,3,0],[2,3,4,2],[1,0,2,0]],[[0,1,2,1],[1,2,3,0],[2,3,3,3],[1,0,2,0]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[2,0,2,0]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[1,0,3,0]],[[0,1,3,1],[1,2,3,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,2],[1,2,3,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,2,4,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,2,3,0],[3,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,2,3,0],[2,4,3,2],[1,1,0,1]],[[0,1,2,1],[1,2,3,0],[2,3,4,2],[1,1,0,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,3],[1,1,0,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[2,1,0,1]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[1,1,0,2]],[[0,1,3,1],[1,2,3,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,2],[1,2,3,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,2,4,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,2,3,0],[3,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,2,3,0],[2,4,3,2],[1,1,1,0]],[[0,1,2,1],[1,2,3,0],[2,3,4,2],[1,1,1,0]],[[0,1,2,1],[1,2,3,0],[2,3,3,3],[1,1,1,0]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[2,1,1,0]],[[0,1,2,1],[1,2,3,0],[3,3,3,2],[1,2,0,0]],[[0,1,2,1],[1,2,3,0],[2,4,3,2],[1,2,0,0]],[[0,1,2,1],[1,2,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,2,2,1],[2,3,0,2],[2,1,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,0,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,0,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[2,3,0,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[2,3,0,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[2,3,0,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,1],[2,3,0,2],[2,1,0,1]],[[1,2,2,1],[2,2,2,1],[3,3,0,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,1],[2,3,0,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,1],[2,3,0,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,1],[2,3,0,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,1],[2,3,0,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,1],[2,3,0,2],[1,1,0,1]],[[0,1,3,1],[1,2,3,1],[0,3,1,2],[1,2,2,1]],[[0,1,2,2],[1,2,3,1],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,4,1],[0,3,1,2],[1,2,2,1]],[[0,1,3,1],[1,2,3,1],[0,3,2,2],[1,2,1,1]],[[0,1,2,2],[1,2,3,1],[0,3,2,2],[1,2,1,1]],[[0,1,2,1],[1,2,4,1],[0,3,2,2],[1,2,1,1]],[[0,1,3,1],[1,2,3,1],[0,3,2,2],[1,2,2,0]],[[0,1,2,2],[1,2,3,1],[0,3,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,4,1],[0,3,2,2],[1,2,2,0]],[[0,1,3,1],[1,2,3,1],[0,3,3,0],[1,2,2,1]],[[0,1,2,2],[1,2,3,1],[0,3,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,4,1],[0,3,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,3,1],[0,3,4,0],[1,2,2,1]],[[0,1,2,1],[1,2,3,1],[0,3,3,0],[1,3,2,1]],[[0,1,2,1],[1,2,3,1],[0,3,3,0],[1,2,3,1]],[[0,1,2,1],[1,2,3,1],[0,3,3,0],[1,2,2,2]],[[0,1,3,1],[1,2,3,1],[0,3,3,1],[1,2,1,1]],[[0,1,2,2],[1,2,3,1],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,4,1],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,3,1],[0,3,4,1],[1,2,1,1]],[[0,1,3,1],[1,2,3,1],[0,3,3,1],[1,2,2,0]],[[0,1,2,2],[1,2,3,1],[0,3,3,1],[1,2,2,0]],[[0,1,2,1],[1,2,4,1],[0,3,3,1],[1,2,2,0]],[[0,1,2,1],[1,2,3,1],[0,3,4,1],[1,2,2,0]],[[0,1,2,1],[1,2,3,1],[0,3,3,1],[1,3,2,0]],[[0,1,2,1],[1,2,3,1],[0,3,3,1],[1,2,3,0]],[[0,1,3,1],[1,2,3,1],[1,2,1,2],[1,2,2,1]],[[0,1,2,2],[1,2,3,1],[1,2,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,4,1],[1,2,1,2],[1,2,2,1]],[[0,1,3,1],[1,2,3,1],[1,2,2,2],[1,2,1,1]],[[0,1,2,2],[1,2,3,1],[1,2,2,2],[1,2,1,1]],[[0,1,2,1],[1,2,4,1],[1,2,2,2],[1,2,1,1]],[[0,1,3,1],[1,2,3,1],[1,2,2,2],[1,2,2,0]],[[0,1,2,2],[1,2,3,1],[1,2,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,4,1],[1,2,2,2],[1,2,2,0]],[[0,1,3,1],[1,2,3,1],[1,2,3,0],[1,2,2,1]],[[0,1,2,2],[1,2,3,1],[1,2,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,4,1],[1,2,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,3,1],[1,2,4,0],[1,2,2,1]],[[0,1,2,1],[1,2,3,1],[1,2,3,0],[2,2,2,1]],[[0,1,2,1],[1,2,3,1],[1,2,3,0],[1,3,2,1]],[[0,1,2,1],[1,2,3,1],[1,2,3,0],[1,2,3,1]],[[0,1,2,1],[1,2,3,1],[1,2,3,0],[1,2,2,2]],[[0,1,3,1],[1,2,3,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,2],[1,2,3,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,4,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,3,1],[1,2,4,1],[1,2,1,1]],[[0,1,3,1],[1,2,3,1],[1,2,3,1],[1,2,2,0]],[[0,1,2,2],[1,2,3,1],[1,2,3,1],[1,2,2,0]],[[0,1,2,1],[1,2,4,1],[1,2,3,1],[1,2,2,0]],[[0,1,2,1],[1,2,3,1],[1,2,4,1],[1,2,2,0]],[[0,1,2,1],[1,2,3,1],[1,2,3,1],[2,2,2,0]],[[0,1,2,1],[1,2,3,1],[1,2,3,1],[1,3,2,0]],[[0,1,2,1],[1,2,3,1],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,2,2,1],[3,3,0,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,0,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,3,0,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,3,0,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,3,0,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,0,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,3,0,2],[0,2,0,1]],[[0,1,3,1],[1,2,3,1],[1,3,0,2],[1,2,2,1]],[[0,1,2,2],[1,2,3,1],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[1,2,4,1],[1,3,0,2],[1,2,2,1]],[[0,1,3,1],[1,2,3,1],[1,3,1,2],[1,1,2,1]],[[0,1,2,2],[1,2,3,1],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[1,2,4,1],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[1,2,3,1],[1,4,2,0],[1,2,2,1]],[[0,1,2,1],[1,2,3,1],[1,3,2,0],[2,2,2,1]],[[0,1,2,1],[1,2,3,1],[1,3,2,0],[1,3,2,1]],[[0,1,2,1],[1,2,3,1],[1,3,2,0],[1,2,3,1]],[[0,1,2,1],[1,2,3,1],[1,3,2,0],[1,2,2,2]],[[0,1,2,1],[1,2,3,1],[1,4,2,1],[1,2,2,0]],[[0,1,2,1],[1,2,3,1],[1,3,2,1],[2,2,2,0]],[[0,1,2,1],[1,2,3,1],[1,3,2,1],[1,3,2,0]],[[0,1,2,1],[1,2,3,1],[1,3,2,1],[1,2,3,0]],[[0,1,3,1],[1,2,3,1],[1,3,2,2],[1,0,2,1]],[[0,1,2,2],[1,2,3,1],[1,3,2,2],[1,0,2,1]],[[0,1,2,1],[1,2,4,1],[1,3,2,2],[1,0,2,1]],[[0,1,3,1],[1,2,3,1],[1,3,2,2],[1,1,1,1]],[[0,1,2,2],[1,2,3,1],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[1,2,4,1],[1,3,2,2],[1,1,1,1]],[[0,1,3,1],[1,2,3,1],[1,3,2,2],[1,1,2,0]],[[0,1,2,2],[1,2,3,1],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,2,4,1],[1,3,2,2],[1,1,2,0]],[[0,1,3,1],[1,2,3,1],[1,3,2,2],[1,2,0,1]],[[0,1,2,2],[1,2,3,1],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[1,2,4,1],[1,3,2,2],[1,2,0,1]],[[0,1,3,1],[1,2,3,1],[1,3,2,2],[1,2,1,0]],[[0,1,2,2],[1,2,3,1],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[1,2,4,1],[1,3,2,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,3,0,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,1],[2,3,0,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,3,0,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,3,0,2],[0,2,0,1]],[[0,1,3,1],[1,2,3,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,2],[1,2,3,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[1,2,4,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[1,2,3,1],[1,4,3,0],[1,1,2,1]],[[0,1,2,1],[1,2,3,1],[1,3,4,0],[1,1,2,1]],[[0,1,2,1],[1,2,3,1],[1,3,3,0],[1,1,3,1]],[[0,1,2,1],[1,2,3,1],[1,3,3,0],[1,1,2,2]],[[0,1,3,1],[1,2,3,1],[1,3,3,0],[1,2,1,1]],[[0,1,2,2],[1,2,3,1],[1,3,3,0],[1,2,1,1]],[[0,1,2,1],[1,2,4,1],[1,3,3,0],[1,2,1,1]],[[0,1,2,1],[1,2,3,1],[1,4,3,0],[1,2,1,1]],[[0,1,2,1],[1,2,3,1],[1,3,4,0],[1,2,1,1]],[[0,1,2,1],[1,2,3,1],[1,3,3,0],[2,2,1,1]],[[0,1,2,1],[1,2,3,1],[1,3,3,0],[1,3,1,1]],[[0,1,3,1],[1,2,3,1],[1,3,3,1],[1,0,2,1]],[[0,1,2,2],[1,2,3,1],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[1,2,4,1],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[1,2,3,1],[1,3,4,1],[1,0,2,1]],[[0,1,3,1],[1,2,3,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,2],[1,2,3,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,2,4,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,2,3,1],[1,4,3,1],[1,1,1,1]],[[0,1,2,1],[1,2,3,1],[1,3,4,1],[1,1,1,1]],[[0,1,3,1],[1,2,3,1],[1,3,3,1],[1,1,2,0]],[[0,1,2,2],[1,2,3,1],[1,3,3,1],[1,1,2,0]],[[0,1,2,1],[1,2,4,1],[1,3,3,1],[1,1,2,0]],[[0,1,2,1],[1,2,3,1],[1,4,3,1],[1,1,2,0]],[[0,1,2,1],[1,2,3,1],[1,3,4,1],[1,1,2,0]],[[0,1,2,1],[1,2,3,1],[1,3,3,1],[1,1,3,0]],[[0,1,3,1],[1,2,3,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,2],[1,2,3,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[1,2,4,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[1,2,3,1],[1,4,3,1],[1,2,0,1]],[[0,1,2,1],[1,2,3,1],[1,3,4,1],[1,2,0,1]],[[0,1,2,1],[1,2,3,1],[1,3,3,1],[2,2,0,1]],[[0,1,2,1],[1,2,3,1],[1,3,3,1],[1,3,0,1]],[[0,1,3,1],[1,2,3,1],[1,3,3,1],[1,2,1,0]],[[0,1,2,2],[1,2,3,1],[1,3,3,1],[1,2,1,0]],[[0,1,2,1],[1,2,4,1],[1,3,3,1],[1,2,1,0]],[[0,1,2,1],[1,2,3,1],[1,4,3,1],[1,2,1,0]],[[0,1,2,1],[1,2,3,1],[1,3,4,1],[1,2,1,0]],[[0,1,2,1],[1,2,3,1],[1,3,3,1],[2,2,1,0]],[[0,1,2,1],[1,2,3,1],[1,3,3,1],[1,3,1,0]],[[0,1,3,1],[1,2,3,1],[1,3,3,2],[1,1,0,1]],[[0,1,2,2],[1,2,3,1],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,2,4,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,1],[2,3,0,1],[2,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,0,1],[1,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,3,0,1],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,3,0,1],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,3,0,1],[1,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,3,0,1],[1,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,3,0,1],[1,2,1,0]],[[1,2,2,1],[2,2,2,1],[2,3,0,1],[2,1,2,0]],[[1,2,2,1],[2,2,2,1],[3,3,0,1],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[2,3,0,1],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[2,3,0,1],[1,1,2,0]],[[1,2,3,1],[2,2,2,1],[2,3,0,1],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[2,3,0,1],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[2,3,0,1],[1,1,2,0]],[[0,1,3,1],[1,2,3,1],[2,1,1,2],[1,2,2,1]],[[0,1,2,2],[1,2,3,1],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[1,2,4,1],[2,1,1,2],[1,2,2,1]],[[0,1,3,1],[1,2,3,1],[2,1,2,2],[1,2,1,1]],[[0,1,2,2],[1,2,3,1],[2,1,2,2],[1,2,1,1]],[[0,1,2,1],[1,2,4,1],[2,1,2,2],[1,2,1,1]],[[0,1,3,1],[1,2,3,1],[2,1,2,2],[1,2,2,0]],[[0,1,2,2],[1,2,3,1],[2,1,2,2],[1,2,2,0]],[[0,1,2,1],[1,2,4,1],[2,1,2,2],[1,2,2,0]],[[0,1,3,1],[1,2,3,1],[2,1,3,0],[1,2,2,1]],[[0,1,2,2],[1,2,3,1],[2,1,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,4,1],[2,1,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,3,1],[3,1,3,0],[1,2,2,1]],[[0,1,2,1],[1,2,3,1],[2,1,4,0],[1,2,2,1]],[[0,1,2,1],[1,2,3,1],[2,1,3,0],[2,2,2,1]],[[0,1,2,1],[1,2,3,1],[2,1,3,0],[1,3,2,1]],[[0,1,2,1],[1,2,3,1],[2,1,3,0],[1,2,3,1]],[[0,1,2,1],[1,2,3,1],[2,1,3,0],[1,2,2,2]],[[0,1,3,1],[1,2,3,1],[2,1,3,1],[1,2,1,1]],[[0,1,2,2],[1,2,3,1],[2,1,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,4,1],[2,1,3,1],[1,2,1,1]],[[0,1,2,1],[1,2,3,1],[2,1,4,1],[1,2,1,1]],[[0,1,3,1],[1,2,3,1],[2,1,3,1],[1,2,2,0]],[[0,1,2,2],[1,2,3,1],[2,1,3,1],[1,2,2,0]],[[0,1,2,1],[1,2,4,1],[2,1,3,1],[1,2,2,0]],[[0,1,2,1],[1,2,3,1],[3,1,3,1],[1,2,2,0]],[[0,1,2,1],[1,2,3,1],[2,1,4,1],[1,2,2,0]],[[0,1,2,1],[1,2,3,1],[2,1,3,1],[2,2,2,0]],[[0,1,2,1],[1,2,3,1],[2,1,3,1],[1,3,2,0]],[[0,1,2,1],[1,2,3,1],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,2,2,1],[3,3,0,1],[0,2,2,0]],[[1,2,2,1],[3,2,2,1],[2,3,0,1],[0,2,2,0]],[[1,2,2,2],[2,2,2,1],[2,3,0,1],[0,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,3,0,1],[0,2,2,0]],[[1,3,2,1],[2,2,2,1],[2,3,0,1],[0,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,3,0,1],[0,2,2,0]],[[0,1,3,1],[1,2,3,1],[2,2,0,2],[1,2,2,1]],[[0,1,2,2],[1,2,3,1],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,2,4,1],[2,2,0,2],[1,2,2,1]],[[0,1,3,1],[1,2,3,1],[2,2,1,2],[0,2,2,1]],[[0,1,2,2],[1,2,3,1],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[1,2,4,1],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[1,2,3,1],[3,2,2,0],[1,2,2,1]],[[0,1,2,1],[1,2,3,1],[2,2,2,0],[2,2,2,1]],[[0,1,2,1],[1,2,3,1],[2,2,2,0],[1,3,2,1]],[[0,1,2,1],[1,2,3,1],[2,2,2,0],[1,2,3,1]],[[0,1,2,1],[1,2,3,1],[2,2,2,0],[1,2,2,2]],[[0,1,2,1],[1,2,3,1],[3,2,2,1],[1,2,2,0]],[[0,1,2,1],[1,2,3,1],[2,2,2,1],[2,2,2,0]],[[0,1,2,1],[1,2,3,1],[2,2,2,1],[1,3,2,0]],[[0,1,2,1],[1,2,3,1],[2,2,2,1],[1,2,3,0]],[[0,1,3,1],[1,2,3,1],[2,2,2,2],[0,2,1,1]],[[0,1,2,2],[1,2,3,1],[2,2,2,2],[0,2,1,1]],[[0,1,2,1],[1,2,4,1],[2,2,2,2],[0,2,1,1]],[[0,1,3,1],[1,2,3,1],[2,2,2,2],[0,2,2,0]],[[0,1,2,2],[1,2,3,1],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[1,2,4,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,2,1],[2,3,0,0],[2,2,2,0]],[[0,1,3,1],[1,2,3,1],[2,2,3,0],[0,2,2,1]],[[0,1,2,2],[1,2,3,1],[2,2,3,0],[0,2,2,1]],[[0,1,2,1],[1,2,4,1],[2,2,3,0],[0,2,2,1]],[[0,1,2,1],[1,2,3,1],[2,2,4,0],[0,2,2,1]],[[0,1,2,1],[1,2,3,1],[2,2,3,0],[0,3,2,1]],[[0,1,2,1],[1,2,3,1],[2,2,3,0],[0,2,3,1]],[[0,1,2,1],[1,2,3,1],[2,2,3,0],[0,2,2,2]],[[0,1,2,1],[1,2,3,1],[3,2,3,0],[1,2,1,1]],[[0,1,2,1],[1,2,3,1],[2,2,3,0],[2,2,1,1]],[[0,1,2,1],[1,2,3,1],[2,2,3,0],[1,3,1,1]],[[0,1,3,1],[1,2,3,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,2],[1,2,3,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[1,2,4,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[1,2,3,1],[2,2,4,1],[0,2,1,1]],[[0,1,3,1],[1,2,3,1],[2,2,3,1],[0,2,2,0]],[[0,1,2,2],[1,2,3,1],[2,2,3,1],[0,2,2,0]],[[0,1,2,1],[1,2,4,1],[2,2,3,1],[0,2,2,0]],[[0,1,2,1],[1,2,3,1],[2,2,4,1],[0,2,2,0]],[[0,1,2,1],[1,2,3,1],[2,2,3,1],[0,3,2,0]],[[0,1,2,1],[1,2,3,1],[2,2,3,1],[0,2,3,0]],[[0,1,2,1],[1,2,3,1],[3,2,3,1],[1,2,0,1]],[[0,1,2,1],[1,2,3,1],[2,2,3,1],[2,2,0,1]],[[0,1,2,1],[1,2,3,1],[2,2,3,1],[1,3,0,1]],[[0,1,2,1],[1,2,3,1],[3,2,3,1],[1,2,1,0]],[[0,1,2,1],[1,2,3,1],[2,2,3,1],[2,2,1,0]],[[0,1,2,1],[1,2,3,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,2,1],[3,3,0,0],[1,2,2,0]],[[1,2,2,1],[3,2,2,1],[2,3,0,0],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,3,0,0],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[2,3,0,0],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,3,0,0],[1,2,2,0]],[[1,2,2,1],[2,2,2,1],[2,3,0,0],[2,2,1,1]],[[1,2,2,1],[2,2,2,1],[3,3,0,0],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[2,3,0,0],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[2,3,0,0],[1,2,1,1]],[[1,2,3,1],[2,2,2,1],[2,3,0,0],[1,2,1,1]],[[1,3,2,1],[2,2,2,1],[2,3,0,0],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[2,3,0,0],[1,2,1,1]],[[1,2,2,1],[2,2,2,1],[2,3,0,0],[2,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,3,0,0],[1,1,2,1]],[[1,2,2,1],[3,2,2,1],[2,3,0,0],[1,1,2,1]],[[1,2,2,2],[2,2,2,1],[2,3,0,0],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[2,3,0,0],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[2,3,0,0],[1,1,2,1]],[[2,2,2,1],[2,2,2,1],[2,3,0,0],[1,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,3,0,0],[0,2,2,1]],[[1,2,2,1],[3,2,2,1],[2,3,0,0],[0,2,2,1]],[[1,2,2,2],[2,2,2,1],[2,3,0,0],[0,2,2,1]],[[1,2,3,1],[2,2,2,1],[2,3,0,0],[0,2,2,1]],[[1,3,2,1],[2,2,2,1],[2,3,0,0],[0,2,2,1]],[[2,2,2,1],[2,2,2,1],[2,3,0,0],[0,2,2,1]],[[0,1,3,1],[1,2,3,1],[2,3,0,2],[0,2,2,1]],[[0,1,2,2],[1,2,3,1],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,2,4,1],[2,3,0,2],[0,2,2,1]],[[0,1,3,1],[1,2,3,1],[2,3,1,2],[0,1,2,1]],[[0,1,2,2],[1,2,3,1],[2,3,1,2],[0,1,2,1]],[[0,1,2,1],[1,2,4,1],[2,3,1,2],[0,1,2,1]],[[0,1,3,1],[1,2,3,1],[2,3,1,2],[1,0,2,1]],[[0,1,2,2],[1,2,3,1],[2,3,1,2],[1,0,2,1]],[[0,1,2,1],[1,2,4,1],[2,3,1,2],[1,0,2,1]],[[0,1,2,1],[1,2,3,1],[3,3,2,0],[0,2,2,1]],[[0,1,2,1],[1,2,3,1],[2,4,2,0],[0,2,2,1]],[[0,1,2,1],[1,2,3,1],[2,3,2,0],[0,3,2,1]],[[0,1,2,1],[1,2,3,1],[2,3,2,0],[0,2,3,1]],[[0,1,2,1],[1,2,3,1],[2,3,2,0],[0,2,2,2]],[[0,1,2,1],[1,2,3,1],[3,3,2,0],[1,1,2,1]],[[0,1,2,1],[1,2,3,1],[2,4,2,0],[1,1,2,1]],[[0,1,2,1],[1,2,3,1],[2,3,2,0],[2,1,2,1]],[[0,1,2,1],[1,2,3,1],[3,3,2,1],[0,2,2,0]],[[0,1,2,1],[1,2,3,1],[2,4,2,1],[0,2,2,0]],[[0,1,2,1],[1,2,3,1],[2,3,2,1],[0,3,2,0]],[[0,1,2,1],[1,2,3,1],[2,3,2,1],[0,2,3,0]],[[0,1,2,1],[1,2,3,1],[3,3,2,1],[1,1,2,0]],[[0,1,2,1],[1,2,3,1],[2,4,2,1],[1,1,2,0]],[[0,1,2,1],[1,2,3,1],[2,3,2,1],[2,1,2,0]],[[0,1,3,1],[1,2,3,1],[2,3,2,2],[0,0,2,1]],[[0,1,2,2],[1,2,3,1],[2,3,2,2],[0,0,2,1]],[[0,1,2,1],[1,2,4,1],[2,3,2,2],[0,0,2,1]],[[0,1,3,1],[1,2,3,1],[2,3,2,2],[0,1,1,1]],[[0,1,2,2],[1,2,3,1],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[1,2,4,1],[2,3,2,2],[0,1,1,1]],[[0,1,3,1],[1,2,3,1],[2,3,2,2],[0,1,2,0]],[[0,1,2,2],[1,2,3,1],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[1,2,4,1],[2,3,2,2],[0,1,2,0]],[[0,1,3,1],[1,2,3,1],[2,3,2,2],[0,2,0,1]],[[0,1,2,2],[1,2,3,1],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[1,2,4,1],[2,3,2,2],[0,2,0,1]],[[0,1,3,1],[1,2,3,1],[2,3,2,2],[0,2,1,0]],[[0,1,2,2],[1,2,3,1],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[1,2,4,1],[2,3,2,2],[0,2,1,0]],[[0,1,3,1],[1,2,3,1],[2,3,2,2],[1,0,1,1]],[[0,1,2,2],[1,2,3,1],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[1,2,4,1],[2,3,2,2],[1,0,1,1]],[[0,1,3,1],[1,2,3,1],[2,3,2,2],[1,0,2,0]],[[0,1,2,2],[1,2,3,1],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[1,2,4,1],[2,3,2,2],[1,0,2,0]],[[0,1,3,1],[1,2,3,1],[2,3,2,2],[1,1,0,1]],[[0,1,2,2],[1,2,3,1],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[1,2,4,1],[2,3,2,2],[1,1,0,1]],[[0,1,3,1],[1,2,3,1],[2,3,2,2],[1,1,1,0]],[[0,1,2,2],[1,2,3,1],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[1,2,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,1],[2,2,3,1],[2,1,0,0]],[[1,2,2,1],[2,2,2,1],[3,2,3,1],[1,1,0,0]],[[1,2,2,1],[3,2,2,1],[2,2,3,1],[1,1,0,0]],[[1,2,2,2],[2,2,2,1],[2,2,3,1],[1,1,0,0]],[[1,2,3,1],[2,2,2,1],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[2,2,2,1],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[2,2,2,1],[2,2,3,1],[1,1,0,0]],[[0,1,3,1],[1,2,3,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,2],[1,2,3,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[1,2,4,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[1,2,3,1],[3,3,3,0],[0,1,2,1]],[[0,1,2,1],[1,2,3,1],[2,4,3,0],[0,1,2,1]],[[0,1,2,1],[1,2,3,1],[2,3,4,0],[0,1,2,1]],[[0,1,2,1],[1,2,3,1],[2,3,3,0],[0,1,3,1]],[[0,1,2,1],[1,2,3,1],[2,3,3,0],[0,1,2,2]],[[0,1,3,1],[1,2,3,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,2],[1,2,3,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[1,2,4,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[1,2,3,1],[3,3,3,0],[0,2,1,1]],[[0,1,2,1],[1,2,3,1],[2,4,3,0],[0,2,1,1]],[[0,1,2,1],[1,2,3,1],[2,3,4,0],[0,2,1,1]],[[0,1,2,1],[1,2,3,1],[2,3,3,0],[0,3,1,1]],[[0,1,3,1],[1,2,3,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,2],[1,2,3,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[1,2,4,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[1,2,3,1],[3,3,3,0],[1,0,2,1]],[[0,1,2,1],[1,2,3,1],[2,4,3,0],[1,0,2,1]],[[0,1,2,1],[1,2,3,1],[2,3,4,0],[1,0,2,1]],[[0,1,2,1],[1,2,3,1],[2,3,3,0],[2,0,2,1]],[[0,1,2,1],[1,2,3,1],[2,3,3,0],[1,0,3,1]],[[0,1,2,1],[1,2,3,1],[2,3,3,0],[1,0,2,2]],[[0,1,3,1],[1,2,3,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,2],[1,2,3,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[1,2,4,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[1,2,3,1],[3,3,3,0],[1,1,1,1]],[[0,1,2,1],[1,2,3,1],[2,4,3,0],[1,1,1,1]],[[0,1,2,1],[1,2,3,1],[2,3,4,0],[1,1,1,1]],[[0,1,2,1],[1,2,3,1],[2,3,3,0],[2,1,1,1]],[[0,1,2,1],[1,2,3,1],[3,3,3,0],[1,2,0,1]],[[0,1,2,1],[1,2,3,1],[2,4,3,0],[1,2,0,1]],[[0,1,2,1],[1,2,3,1],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,2,3,1],[0,2,0,0]],[[1,2,2,1],[3,2,2,1],[2,2,3,1],[0,2,0,0]],[[1,2,2,2],[2,2,2,1],[2,2,3,1],[0,2,0,0]],[[1,2,3,1],[2,2,2,1],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[2,2,2,1],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[2,2,2,1],[2,2,3,1],[0,2,0,0]],[[0,1,3,1],[1,2,3,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,2],[1,2,3,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[1,2,4,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[1,2,3,1],[2,3,4,1],[0,0,2,1]],[[0,1,3,1],[1,2,3,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,2],[1,2,3,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[1,2,4,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[1,2,3,1],[3,3,3,1],[0,1,1,1]],[[0,1,2,1],[1,2,3,1],[2,4,3,1],[0,1,1,1]],[[0,1,2,1],[1,2,3,1],[2,3,4,1],[0,1,1,1]],[[0,1,3,1],[1,2,3,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,2],[1,2,3,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[1,2,4,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[1,2,3,1],[3,3,3,1],[0,1,2,0]],[[0,1,2,1],[1,2,3,1],[2,4,3,1],[0,1,2,0]],[[0,1,2,1],[1,2,3,1],[2,3,4,1],[0,1,2,0]],[[0,1,2,1],[1,2,3,1],[2,3,3,1],[0,1,3,0]],[[0,1,3,1],[1,2,3,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,2],[1,2,3,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[1,2,4,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[1,2,3,1],[3,3,3,1],[0,2,0,1]],[[0,1,2,1],[1,2,3,1],[2,4,3,1],[0,2,0,1]],[[0,1,2,1],[1,2,3,1],[2,3,4,1],[0,2,0,1]],[[0,1,2,1],[1,2,3,1],[2,3,3,1],[0,3,0,1]],[[0,1,3,1],[1,2,3,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,2],[1,2,3,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[1,2,4,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[1,2,3,1],[3,3,3,1],[0,2,1,0]],[[0,1,2,1],[1,2,3,1],[2,4,3,1],[0,2,1,0]],[[0,1,2,1],[1,2,3,1],[2,3,4,1],[0,2,1,0]],[[0,1,2,1],[1,2,3,1],[2,3,3,1],[0,3,1,0]],[[0,1,3,1],[1,2,3,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,2],[1,2,3,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[1,2,4,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[1,2,3,1],[3,3,3,1],[1,0,1,1]],[[0,1,2,1],[1,2,3,1],[2,4,3,1],[1,0,1,1]],[[0,1,2,1],[1,2,3,1],[2,3,4,1],[1,0,1,1]],[[0,1,2,1],[1,2,3,1],[2,3,3,1],[2,0,1,1]],[[0,1,3,1],[1,2,3,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,2],[1,2,3,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[1,2,4,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[1,2,3,1],[3,3,3,1],[1,0,2,0]],[[0,1,2,1],[1,2,3,1],[2,4,3,1],[1,0,2,0]],[[0,1,2,1],[1,2,3,1],[2,3,4,1],[1,0,2,0]],[[0,1,2,1],[1,2,3,1],[2,3,3,1],[2,0,2,0]],[[0,1,2,1],[1,2,3,1],[2,3,3,1],[1,0,3,0]],[[0,1,3,1],[1,2,3,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,2],[1,2,3,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[1,2,4,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[1,2,3,1],[3,3,3,1],[1,1,0,1]],[[0,1,2,1],[1,2,3,1],[2,4,3,1],[1,1,0,1]],[[0,1,2,1],[1,2,3,1],[2,3,4,1],[1,1,0,1]],[[0,1,2,1],[1,2,3,1],[2,3,3,1],[2,1,0,1]],[[0,1,3,1],[1,2,3,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,2],[1,2,3,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[1,2,4,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[1,2,3,1],[3,3,3,1],[1,1,1,0]],[[0,1,2,1],[1,2,3,1],[2,4,3,1],[1,1,1,0]],[[0,1,2,1],[1,2,3,1],[2,3,4,1],[1,1,1,0]],[[0,1,2,1],[1,2,3,1],[2,3,3,1],[2,1,1,0]],[[0,1,2,1],[1,2,3,1],[3,3,3,1],[1,2,0,0]],[[0,1,2,1],[1,2,3,1],[2,4,3,1],[1,2,0,0]],[[0,1,2,1],[1,2,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,2,2,1],[2,2,3,0],[2,2,0,0]],[[1,2,2,1],[2,2,2,1],[3,2,3,0],[1,2,0,0]],[[1,2,2,1],[3,2,2,1],[2,2,3,0],[1,2,0,0]],[[1,2,2,2],[2,2,2,1],[2,2,3,0],[1,2,0,0]],[[1,2,3,1],[2,2,2,1],[2,2,3,0],[1,2,0,0]],[[1,3,2,1],[2,2,2,1],[2,2,3,0],[1,2,0,0]],[[2,2,2,1],[2,2,2,1],[2,2,3,0],[1,2,0,0]],[[0,1,3,1],[1,2,3,1],[2,3,3,2],[0,1,0,1]],[[0,1,2,2],[1,2,3,1],[2,3,3,2],[0,1,0,1]],[[0,1,2,1],[1,2,4,1],[2,3,3,2],[0,1,0,1]],[[1,2,2,1],[2,2,2,1],[2,2,3,0],[2,1,1,0]],[[1,2,2,1],[2,2,2,1],[3,2,3,0],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[2,2,3,0],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[2,2,3,0],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[2,2,3,0],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[2,2,3,0],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,2,2,1],[2,2,3,0],[2,0,2,0]],[[1,2,2,1],[2,2,2,1],[3,2,3,0],[1,0,2,0]],[[1,2,2,1],[3,2,2,1],[2,2,3,0],[1,0,2,0]],[[1,2,2,2],[2,2,2,1],[2,2,3,0],[1,0,2,0]],[[1,2,3,1],[2,2,2,1],[2,2,3,0],[1,0,2,0]],[[1,3,2,1],[2,2,2,1],[2,2,3,0],[1,0,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,3,0],[1,0,2,0]],[[0,1,3,1],[1,2,3,1],[2,3,3,2],[1,0,0,1]],[[0,1,2,2],[1,2,3,1],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[1,2,4,1],[2,3,3,2],[1,0,0,1]],[[1,2,2,1],[2,2,2,1],[3,2,3,0],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,2,3,0],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,2,3,0],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,2,3,0],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,2,3,0],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,2,3,0],[0,1,2,0]],[[1,2,2,1],[3,2,2,1],[2,2,3,0],[0,1,2,0]],[[1,2,2,2],[2,2,2,1],[2,2,3,0],[0,1,2,0]],[[1,2,3,1],[2,2,2,1],[2,2,3,0],[0,1,2,0]],[[1,3,2,1],[2,2,2,1],[2,2,3,0],[0,1,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,3,0],[0,1,2,0]],[[0,1,3,1],[1,2,3,2],[0,3,3,0],[1,2,2,0]],[[0,1,2,2],[1,2,3,2],[0,3,3,0],[1,2,2,0]],[[0,1,2,1],[1,2,4,2],[0,3,3,0],[1,2,2,0]],[[1,2,2,1],[2,2,2,1],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[2,2,2,1],[3,2,2,1],[1,2,0,0]],[[1,2,2,1],[3,2,2,1],[2,2,2,1],[1,2,0,0]],[[1,2,2,2],[2,2,2,1],[2,2,2,1],[1,2,0,0]],[[1,2,3,1],[2,2,2,1],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[2,2,2,1],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[2,2,2,1],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[2,2,2,1],[2,2,2,1],[2,1,1,0]],[[1,2,2,1],[2,2,2,1],[3,2,2,1],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[2,2,2,1],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[2,2,2,1],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,2,2,1],[2,2,2,1],[2,1,0,1]],[[1,2,2,1],[2,2,2,1],[3,2,2,1],[1,1,0,1]],[[1,2,2,1],[3,2,2,1],[2,2,2,1],[1,1,0,1]],[[1,2,2,2],[2,2,2,1],[2,2,2,1],[1,1,0,1]],[[1,2,3,1],[2,2,2,1],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[2,2,2,1],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[2,2,2,1],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[2,2,2,1],[2,2,2,1],[2,0,2,0]],[[1,2,2,1],[2,2,2,1],[3,2,2,1],[1,0,2,0]],[[1,2,2,1],[3,2,2,1],[2,2,2,1],[1,0,2,0]],[[1,2,2,2],[2,2,2,1],[2,2,2,1],[1,0,2,0]],[[0,1,3,1],[1,2,3,2],[1,2,3,0],[1,2,2,0]],[[0,1,2,2],[1,2,3,2],[1,2,3,0],[1,2,2,0]],[[0,1,2,1],[1,2,4,2],[1,2,3,0],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[2,2,2,1],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[2,2,2,1],[2,2,2,1],[2,0,1,1]],[[1,2,2,1],[2,2,2,1],[3,2,2,1],[1,0,1,1]],[[1,2,2,1],[3,2,2,1],[2,2,2,1],[1,0,1,1]],[[1,2,2,2],[2,2,2,1],[2,2,2,1],[1,0,1,1]],[[1,2,3,1],[2,2,2,1],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[2,2,2,1],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[2,2,2,1],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[2,2,2,1],[3,2,2,1],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,2,2,1],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,2,2,1],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,2,2,1],[0,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,2,2,1],[0,2,0,1]],[[1,2,2,2],[2,2,2,1],[2,2,2,1],[0,2,0,1]],[[1,2,3,1],[2,2,2,1],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,2,2,1],[0,1,2,0]],[[1,2,2,1],[3,2,2,1],[2,2,2,1],[0,1,2,0]],[[1,2,2,2],[2,2,2,1],[2,2,2,1],[0,1,2,0]],[[1,2,3,1],[2,2,2,1],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[2,2,2,1],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[2,2,2,1],[3,2,2,1],[0,1,1,1]],[[1,2,2,1],[3,2,2,1],[2,2,2,1],[0,1,1,1]],[[1,2,2,2],[2,2,2,1],[2,2,2,1],[0,1,1,1]],[[1,2,3,1],[2,2,2,1],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[2,2,2,1],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[2,2,2,1],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[2,2,2,1],[2,2,2,0],[2,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,2,2,0],[1,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,2,2,0],[1,2,0,1]],[[1,2,2,2],[2,2,2,1],[2,2,2,0],[1,2,0,1]],[[1,2,3,1],[2,2,2,1],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,2,2,0],[1,2,0,1]],[[1,2,2,1],[2,2,2,1],[2,2,2,0],[2,1,1,1]],[[1,2,2,1],[2,2,2,1],[3,2,2,0],[1,1,1,1]],[[1,2,2,1],[3,2,2,1],[2,2,2,0],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[2,2,2,0],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[2,2,2,1],[2,2,2,0],[2,0,2,1]],[[0,1,3,1],[1,2,3,2],[1,3,3,0],[1,1,1,1]],[[0,1,2,2],[1,2,3,2],[1,3,3,0],[1,1,1,1]],[[0,1,2,1],[1,2,4,2],[1,3,3,0],[1,1,1,1]],[[0,1,3,1],[1,2,3,2],[1,3,3,0],[1,1,2,0]],[[0,1,2,2],[1,2,3,2],[1,3,3,0],[1,1,2,0]],[[0,1,2,1],[1,2,4,2],[1,3,3,0],[1,1,2,0]],[[0,1,3,1],[1,2,3,2],[1,3,3,0],[1,2,0,1]],[[0,1,2,2],[1,2,3,2],[1,3,3,0],[1,2,0,1]],[[0,1,2,1],[1,2,4,2],[1,3,3,0],[1,2,0,1]],[[0,1,3,1],[1,2,3,2],[1,3,3,0],[1,2,1,0]],[[0,1,2,2],[1,2,3,2],[1,3,3,0],[1,2,1,0]],[[0,1,2,1],[1,2,4,2],[1,3,3,0],[1,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,2,2,0],[1,0,2,1]],[[1,2,2,1],[3,2,2,1],[2,2,2,0],[1,0,2,1]],[[1,2,2,2],[2,2,2,1],[2,2,2,0],[1,0,2,1]],[[1,2,3,1],[2,2,2,1],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[2,2,2,1],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[2,2,2,1],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[2,2,2,1],[3,2,2,0],[0,2,1,1]],[[1,2,2,1],[3,2,2,1],[2,2,2,0],[0,2,1,1]],[[1,2,2,2],[2,2,2,1],[2,2,2,0],[0,2,1,1]],[[1,2,3,1],[2,2,2,1],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[2,2,2,1],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[2,2,2,1],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[2,2,2,1],[3,2,2,0],[0,1,2,1]],[[1,2,2,1],[3,2,2,1],[2,2,2,0],[0,1,2,1]],[[1,2,2,2],[2,2,2,1],[2,2,2,0],[0,1,2,1]],[[1,2,3,1],[2,2,2,1],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[2,2,2,1],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[2,2,2,1],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[2,2,2,1],[2,2,1,2],[2,2,0,0]],[[1,2,2,1],[2,2,2,1],[3,2,1,2],[1,2,0,0]],[[1,2,2,1],[3,2,2,1],[2,2,1,2],[1,2,0,0]],[[1,2,2,2],[2,2,2,1],[2,2,1,2],[1,2,0,0]],[[1,2,3,1],[2,2,2,1],[2,2,1,2],[1,2,0,0]],[[1,3,2,1],[2,2,2,1],[2,2,1,2],[1,2,0,0]],[[2,2,2,1],[2,2,2,1],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[2,2,2,1],[2,2,1,2],[2,1,1,0]],[[1,2,2,1],[2,2,2,1],[3,2,1,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[2,2,1,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[2,2,1,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[2,2,1,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[2,2,1,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,1],[2,2,1,2],[2,1,0,1]],[[1,2,2,1],[2,2,2,1],[3,2,1,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,1],[2,2,1,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,1],[2,2,1,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,1],[2,2,1,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,1],[2,2,1,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,1],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,1],[2,2,1,2],[2,0,2,0]],[[1,2,2,1],[2,2,2,1],[3,2,1,2],[1,0,2,0]],[[1,2,2,1],[3,2,2,1],[2,2,1,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,1],[2,2,1,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,1],[2,2,1,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,1],[2,2,1,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[2,2,2,1],[2,2,1,2],[2,0,1,1]],[[1,2,2,1],[2,2,2,1],[3,2,1,2],[1,0,1,1]],[[1,2,2,1],[3,2,2,1],[2,2,1,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,1],[2,2,1,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,1],[2,2,1,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,1],[2,2,1,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,1],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[2,2,2,1],[3,2,1,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,2,1,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,2,1,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,2,1,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,2,1,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,2,1,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,2,1,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,1],[2,2,1,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,1],[2,2,1,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,2,1,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,2,1,2],[0,1,2,0]],[[1,2,2,1],[3,2,2,1],[2,2,1,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,1],[2,2,1,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,1],[2,2,1,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,1],[2,2,1,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[2,2,2,1],[3,2,1,2],[0,1,1,1]],[[1,2,2,1],[3,2,2,1],[2,2,1,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,1],[2,2,1,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,1],[2,2,1,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,1],[2,2,1,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,1],[2,2,1,2],[0,1,1,1]],[[0,1,3,1],[1,2,3,2],[2,1,3,0],[1,2,2,0]],[[0,1,2,2],[1,2,3,2],[2,1,3,0],[1,2,2,0]],[[0,1,2,1],[1,2,4,2],[2,1,3,0],[1,2,2,0]],[[1,2,2,1],[2,2,2,1],[2,2,1,1],[2,1,2,0]],[[1,2,2,1],[2,2,2,1],[3,2,1,1],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[2,2,1,1],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[2,2,1,1],[1,1,2,0]],[[1,2,3,1],[2,2,2,1],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[2,2,2,1],[3,2,1,1],[0,2,2,0]],[[1,2,2,1],[3,2,2,1],[2,2,1,1],[0,2,2,0]],[[1,2,2,2],[2,2,2,1],[2,2,1,1],[0,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[2,2,2,1],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[2,2,2,1],[2,2,1,0],[2,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,2,1,0],[1,1,2,1]],[[1,2,2,1],[3,2,2,1],[2,2,1,0],[1,1,2,1]],[[1,2,2,2],[2,2,2,1],[2,2,1,0],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[2,2,2,1],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,2,1,0],[0,2,2,1]],[[1,2,2,1],[3,2,2,1],[2,2,1,0],[0,2,2,1]],[[1,2,2,2],[2,2,2,1],[2,2,1,0],[0,2,2,1]],[[1,2,3,1],[2,2,2,1],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[2,2,2,1],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[2,2,2,1],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[2,2,2,1],[2,2,0,2],[2,1,2,0]],[[1,2,2,1],[2,2,2,1],[3,2,0,2],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[2,2,0,2],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[2,2,0,2],[1,1,2,0]],[[1,2,3,1],[2,2,2,1],[2,2,0,2],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[2,2,0,2],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[2,2,2,1],[2,2,0,2],[2,1,1,1]],[[1,2,2,1],[2,2,2,1],[3,2,0,2],[1,1,1,1]],[[1,2,2,1],[3,2,2,1],[2,2,0,2],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[2,2,0,2],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[2,2,0,2],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[2,2,0,2],[1,1,1,1]],[[0,1,3,1],[1,2,3,2],[2,2,3,0],[0,2,2,0]],[[0,1,2,2],[1,2,3,2],[2,2,3,0],[0,2,2,0]],[[0,1,2,1],[1,2,4,2],[2,2,3,0],[0,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[2,2,2,1],[2,2,0,2],[2,0,2,1]],[[1,2,2,1],[2,2,2,1],[3,2,0,2],[1,0,2,1]],[[1,2,2,1],[3,2,2,1],[2,2,0,2],[1,0,2,1]],[[1,2,2,2],[2,2,2,1],[2,2,0,2],[1,0,2,1]],[[1,2,3,1],[2,2,2,1],[2,2,0,2],[1,0,2,1]],[[1,3,2,1],[2,2,2,1],[2,2,0,2],[1,0,2,1]],[[2,2,2,1],[2,2,2,1],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[2,2,2,1],[3,2,0,2],[0,2,2,0]],[[1,2,2,1],[3,2,2,1],[2,2,0,2],[0,2,2,0]],[[1,2,2,2],[2,2,2,1],[2,2,0,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,2,0,2],[0,2,2,0]],[[1,3,2,1],[2,2,2,1],[2,2,0,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[2,2,2,1],[3,2,0,2],[0,2,1,1]],[[1,2,2,1],[3,2,2,1],[2,2,0,2],[0,2,1,1]],[[1,2,2,2],[2,2,2,1],[2,2,0,2],[0,2,1,1]],[[1,2,3,1],[2,2,2,1],[2,2,0,2],[0,2,1,1]],[[1,3,2,1],[2,2,2,1],[2,2,0,2],[0,2,1,1]],[[2,2,2,1],[2,2,2,1],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[2,2,2,1],[3,2,0,2],[0,1,2,1]],[[1,2,2,1],[3,2,2,1],[2,2,0,2],[0,1,2,1]],[[1,2,2,2],[2,2,2,1],[2,2,0,2],[0,1,2,1]],[[1,2,3,1],[2,2,2,1],[2,2,0,2],[0,1,2,1]],[[1,3,2,1],[2,2,2,1],[2,2,0,2],[0,1,2,1]],[[2,2,2,1],[2,2,2,1],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[2,2,2,1],[2,2,0,1],[1,3,2,0]],[[1,2,2,1],[2,2,2,1],[2,2,0,1],[2,2,2,0]],[[1,2,2,1],[2,2,2,1],[3,2,0,1],[1,2,2,0]],[[1,2,2,1],[3,2,2,1],[2,2,0,1],[1,2,2,0]],[[1,2,2,2],[2,2,2,1],[2,2,0,1],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,2,0,1],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[2,2,0,1],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,2,0,1],[1,2,2,0]],[[1,2,2,1],[2,2,2,1],[2,2,0,1],[2,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,2,0,1],[1,1,2,1]],[[1,2,2,1],[3,2,2,1],[2,2,0,1],[1,1,2,1]],[[1,2,2,2],[2,2,2,1],[2,2,0,1],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[2,2,0,1],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[2,2,0,1],[1,1,2,1]],[[2,2,2,1],[2,2,2,1],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,2,0,1],[0,2,2,1]],[[1,2,2,1],[3,2,2,1],[2,2,0,1],[0,2,2,1]],[[1,2,2,2],[2,2,2,1],[2,2,0,1],[0,2,2,1]],[[1,2,3,1],[2,2,2,1],[2,2,0,1],[0,2,2,1]],[[1,3,2,1],[2,2,2,1],[2,2,0,1],[0,2,2,1]],[[2,2,2,1],[2,2,2,1],[2,2,0,1],[0,2,2,1]],[[1,2,2,1],[2,2,2,1],[2,2,0,0],[1,3,2,1]],[[1,2,2,1],[2,2,2,1],[2,2,0,0],[2,2,2,1]],[[1,2,2,1],[2,2,2,1],[3,2,0,0],[1,2,2,1]],[[1,2,2,1],[3,2,2,1],[2,2,0,0],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[2,2,0,0],[1,2,2,1]],[[1,2,3,1],[2,2,2,1],[2,2,0,0],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[2,2,0,0],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[2,2,0,0],[1,2,2,1]],[[1,2,2,1],[2,2,2,1],[3,1,3,2],[1,0,0,1]],[[1,2,2,1],[3,2,2,1],[2,1,3,2],[1,0,0,1]],[[1,2,2,2],[2,2,2,1],[2,1,3,2],[1,0,0,1]],[[1,2,3,1],[2,2,2,1],[2,1,3,2],[1,0,0,1]],[[1,3,2,1],[2,2,2,1],[2,1,3,2],[1,0,0,1]],[[2,2,2,1],[2,2,2,1],[2,1,3,2],[1,0,0,1]],[[1,2,2,1],[3,2,2,1],[2,1,3,2],[0,1,0,1]],[[1,2,2,2],[2,2,2,1],[2,1,3,2],[0,1,0,1]],[[1,2,3,1],[2,2,2,1],[2,1,3,2],[0,1,0,1]],[[1,3,2,1],[2,2,2,1],[2,1,3,2],[0,1,0,1]],[[2,2,2,1],[2,2,2,1],[2,1,3,2],[0,1,0,1]],[[1,2,2,1],[2,2,2,1],[2,1,3,1],[2,1,1,0]],[[1,2,2,1],[2,2,2,1],[3,1,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[2,1,3,1],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[2,1,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[2,1,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,2,1],[2,1,3,1],[2,1,0,1]],[[1,2,2,1],[2,2,2,1],[3,1,3,1],[1,1,0,1]],[[1,2,2,1],[3,2,2,1],[2,1,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,2,1],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,2,1],[2,1,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,2,1],[2,1,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,2,1],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,2,1],[2,1,3,1],[2,0,2,0]],[[1,2,2,1],[2,2,2,1],[3,1,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,2,1],[2,1,3,1],[1,0,2,0]],[[1,2,2,2],[2,2,2,1],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,2,1],[2,1,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,2,1],[2,1,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,2,1],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,2,1],[2,1,3,1],[2,0,1,1]],[[1,2,2,1],[2,2,2,1],[3,1,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,2,1],[2,1,3,1],[1,0,1,1]],[[1,2,2,2],[2,2,2,1],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,2,1],[2,1,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,2,1],[2,1,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,2,1],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,2,1],[3,1,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,1,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,1,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,1,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,1,3,1],[0,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,1,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,2,1],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,2,1],[2,1,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,1,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,1,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,2,1],[2,1,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,2,1],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,2,1],[2,1,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,2,1],[2,1,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,2,1],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,2,1],[3,1,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,2,1],[2,1,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,2,1],[2,1,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,2,1],[2,1,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,2,1],[2,1,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,2,1],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,2,1],[2,1,3,1],[0,0,2,1]],[[1,2,2,2],[2,2,2,1],[2,1,3,1],[0,0,2,1]],[[1,2,3,1],[2,2,2,1],[2,1,3,1],[0,0,2,1]],[[1,3,2,1],[2,2,2,1],[2,1,3,1],[0,0,2,1]],[[2,2,2,1],[2,2,2,1],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[2,2,2,1],[2,1,3,0],[1,3,1,0]],[[1,2,2,1],[2,2,2,1],[2,1,3,0],[2,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,1,3,0],[1,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,1,3,0],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,1,3,0],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,1,3,0],[1,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,1,3,0],[1,2,1,0]],[[0,1,3,1],[1,2,3,2],[2,3,3,0],[0,1,1,1]],[[0,1,2,2],[1,2,3,2],[2,3,3,0],[0,1,1,1]],[[0,1,2,1],[1,2,4,2],[2,3,3,0],[0,1,1,1]],[[0,1,3,1],[1,2,3,2],[2,3,3,0],[0,1,2,0]],[[0,1,2,2],[1,2,3,2],[2,3,3,0],[0,1,2,0]],[[0,1,2,1],[1,2,4,2],[2,3,3,0],[0,1,2,0]],[[0,1,3,1],[1,2,3,2],[2,3,3,0],[0,2,0,1]],[[0,1,2,2],[1,2,3,2],[2,3,3,0],[0,2,0,1]],[[0,1,2,1],[1,2,4,2],[2,3,3,0],[0,2,0,1]],[[0,1,3,1],[1,2,3,2],[2,3,3,0],[0,2,1,0]],[[0,1,2,2],[1,2,3,2],[2,3,3,0],[0,2,1,0]],[[0,1,2,1],[1,2,4,2],[2,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,1,3,0],[1,2,1,0]],[[1,2,2,1],[2,2,2,1],[2,1,3,0],[2,1,1,1]],[[1,2,2,1],[2,2,2,1],[3,1,3,0],[1,1,1,1]],[[0,1,3,1],[1,2,3,2],[2,3,3,0],[1,0,1,1]],[[0,1,2,2],[1,2,3,2],[2,3,3,0],[1,0,1,1]],[[0,1,2,1],[1,2,4,2],[2,3,3,0],[1,0,1,1]],[[0,1,3,1],[1,2,3,2],[2,3,3,0],[1,0,2,0]],[[0,1,2,2],[1,2,3,2],[2,3,3,0],[1,0,2,0]],[[0,1,2,1],[1,2,4,2],[2,3,3,0],[1,0,2,0]],[[0,1,3,1],[1,2,3,2],[2,3,3,0],[1,1,0,1]],[[0,1,2,2],[1,2,3,2],[2,3,3,0],[1,1,0,1]],[[0,1,2,1],[1,2,4,2],[2,3,3,0],[1,1,0,1]],[[0,1,3,1],[1,2,3,2],[2,3,3,0],[1,1,1,0]],[[0,1,2,2],[1,2,3,2],[2,3,3,0],[1,1,1,0]],[[0,1,2,1],[1,2,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[2,1,3,0],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[2,1,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[2,1,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[2,1,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,2,1],[2,1,3,0],[2,0,2,1]],[[1,2,2,1],[2,2,2,1],[3,1,3,0],[1,0,2,1]],[[1,2,2,1],[3,2,2,1],[2,1,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,2,1],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,2,1],[2,1,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,2,1],[2,1,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,2,1],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,2,1],[3,1,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,2,1],[2,1,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,2,1],[2,1,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,2,1],[2,1,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,2,1],[2,1,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,2,1],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,2,1],[3,1,3,0],[0,1,2,1]],[[1,2,2,1],[3,2,2,1],[2,1,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,2,1],[2,1,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,2,1],[2,1,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,2,1],[2,1,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,2,1],[2,1,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,2,1],[2,1,2,2],[2,1,1,0]],[[1,2,2,1],[2,2,2,1],[3,1,2,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[2,1,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[2,1,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[2,1,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[2,1,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,1],[2,1,2,2],[2,1,0,1]],[[1,2,2,1],[2,2,2,1],[3,1,2,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,1],[2,1,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,1],[2,1,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,1],[2,1,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,1],[2,1,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,1],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,1],[2,1,2,2],[2,0,2,0]],[[1,2,2,1],[2,2,2,1],[3,1,2,2],[1,0,2,0]],[[1,2,2,1],[3,2,2,1],[2,1,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,1],[2,1,2,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,1],[2,1,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,1],[2,1,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,1],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,2,1],[2,1,2,2],[2,0,1,1]],[[1,2,2,1],[2,2,2,1],[3,1,2,2],[1,0,1,1]],[[1,2,2,1],[3,2,2,1],[2,1,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,1],[2,1,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,1],[2,1,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,1],[2,1,2,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,1],[2,1,2,2],[1,0,1,1]],[[1,2,2,1],[2,2,2,1],[3,1,2,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,1,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,1,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,1,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,1,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,1,2,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,1,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,1],[2,1,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,1],[2,1,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,1,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,1,2,2],[0,1,2,0]],[[1,2,2,1],[3,2,2,1],[2,1,2,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,1],[2,1,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,1],[2,1,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,1],[2,1,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,1],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,2,1],[3,1,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,2,1],[2,1,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,1],[2,1,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,1],[2,1,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,1],[2,1,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,1],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,2,1],[2,1,2,2],[0,0,2,1]],[[1,2,2,2],[2,2,2,1],[2,1,2,2],[0,0,2,1]],[[1,2,3,1],[2,2,2,1],[2,1,2,2],[0,0,2,1]],[[1,3,2,1],[2,2,2,1],[2,1,2,2],[0,0,2,1]],[[2,2,2,1],[2,2,2,1],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[2,2,2,1],[2,1,2,1],[1,3,1,0]],[[1,2,2,1],[2,2,2,1],[2,1,2,1],[2,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,1,2,1],[1,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,1,2,1],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,1,2,1],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[2,2,2,1],[2,1,2,1],[1,3,0,1]],[[1,2,2,1],[2,2,2,1],[2,1,2,1],[2,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,1,2,1],[1,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,1,2,1],[1,2,0,1]],[[1,2,2,2],[2,2,2,1],[2,1,2,1],[1,2,0,1]],[[1,2,3,1],[2,2,2,1],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[2,2,2,1],[2,1,2,0],[1,3,1,1]],[[1,2,2,1],[2,2,2,1],[2,1,2,0],[2,2,1,1]],[[1,2,2,1],[2,2,2,1],[3,1,2,0],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[2,1,2,0],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[2,1,2,0],[1,2,1,1]],[[1,2,3,1],[2,2,2,1],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[2,2,2,1],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[2,1,2,0],[1,2,1,1]],[[1,2,2,1],[2,2,2,1],[2,1,1,2],[1,3,1,0]],[[1,2,2,1],[2,2,2,1],[2,1,1,2],[2,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,1,1,2],[1,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,1,1,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,1,1,2],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,1,1,2],[1,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,1,1,2],[1,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[2,2,2,1],[2,1,1,2],[1,3,0,1]],[[1,2,2,1],[2,2,2,1],[2,1,1,2],[2,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,1,1,2],[1,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,1,1,2],[1,2,0,1]],[[1,2,2,2],[2,2,2,1],[2,1,1,2],[1,2,0,1]],[[1,2,3,1],[2,2,2,1],[2,1,1,2],[1,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,1,1,2],[1,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[2,2,2,1],[2,1,1,2],[2,0,2,1]],[[1,2,2,1],[2,2,2,1],[3,1,1,2],[1,0,2,1]],[[1,2,2,1],[3,2,2,1],[2,1,1,2],[1,0,2,1]],[[1,2,2,2],[2,2,2,1],[2,1,1,2],[1,0,2,1]],[[1,2,3,1],[2,2,2,1],[2,1,1,2],[1,0,2,1]],[[1,3,2,1],[2,2,2,1],[2,1,1,2],[1,0,2,1]],[[2,2,2,1],[2,2,2,1],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[2,2,2,1],[3,1,1,2],[0,1,2,1]],[[1,2,2,1],[3,2,2,1],[2,1,1,2],[0,1,2,1]],[[1,2,2,2],[2,2,2,1],[2,1,1,2],[0,1,2,1]],[[1,2,3,1],[2,2,2,1],[2,1,1,2],[0,1,2,1]],[[1,3,2,1],[2,2,2,1],[2,1,1,2],[0,1,2,1]],[[2,2,2,1],[2,2,2,1],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[2,2,2,1],[2,1,1,1],[1,2,3,0]],[[1,2,2,1],[2,2,2,1],[2,1,1,1],[1,3,2,0]],[[1,2,2,1],[2,2,2,1],[2,1,1,1],[2,2,2,0]],[[1,2,2,1],[2,2,2,1],[3,1,1,1],[1,2,2,0]],[[1,2,2,1],[3,2,2,1],[2,1,1,1],[1,2,2,0]],[[1,2,2,2],[2,2,2,1],[2,1,1,1],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[2,2,2,1],[2,1,1,0],[1,2,2,2]],[[1,2,2,1],[2,2,2,1],[2,1,1,0],[1,2,3,1]],[[1,2,2,1],[2,2,2,1],[2,1,1,0],[1,3,2,1]],[[1,2,2,1],[2,2,2,1],[2,1,1,0],[2,2,2,1]],[[1,2,2,1],[2,2,2,1],[3,1,1,0],[1,2,2,1]],[[1,2,2,1],[3,2,2,1],[2,1,1,0],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[2,1,1,0],[1,2,2,1]],[[1,2,3,1],[2,2,2,1],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[2,2,2,1],[2,1,0,2],[1,2,3,0]],[[1,2,2,1],[2,2,2,1],[2,1,0,2],[1,3,2,0]],[[1,2,2,1],[2,2,2,1],[2,1,0,2],[2,2,2,0]],[[1,2,2,1],[2,2,2,1],[3,1,0,2],[1,2,2,0]],[[1,2,2,1],[3,2,2,1],[2,1,0,2],[1,2,2,0]],[[1,2,2,2],[2,2,2,1],[2,1,0,2],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,1,0,2],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[2,1,0,2],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[2,2,2,1],[2,1,0,2],[1,3,1,1]],[[1,2,2,1],[2,2,2,1],[2,1,0,2],[2,2,1,1]],[[1,2,2,1],[2,2,2,1],[3,1,0,2],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[2,1,0,2],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[2,1,0,2],[1,2,1,1]],[[1,2,3,1],[2,2,2,1],[2,1,0,2],[1,2,1,1]],[[1,3,2,1],[2,2,2,1],[2,1,0,2],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[2,2,2,1],[2,1,0,2],[2,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,1,0,2],[1,1,2,1]],[[1,2,2,1],[3,2,2,1],[2,1,0,2],[1,1,2,1]],[[1,2,2,2],[2,2,2,1],[2,1,0,2],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[2,1,0,2],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[2,1,0,2],[1,1,2,1]],[[2,2,2,1],[2,2,2,1],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,1,0,2],[0,2,2,1]],[[1,2,2,1],[3,2,2,1],[2,1,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,2,1],[2,1,0,2],[0,2,2,1]],[[1,2,3,1],[2,2,2,1],[2,1,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,2,1],[2,1,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,2,1],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[2,2,2,1],[2,1,0,1],[1,2,2,2]],[[1,2,2,1],[2,2,2,1],[2,1,0,1],[1,2,3,1]],[[1,2,2,1],[2,2,2,1],[2,1,0,1],[1,3,2,1]],[[1,2,2,1],[2,2,2,1],[2,1,0,1],[2,2,2,1]],[[1,2,2,1],[2,2,2,1],[3,1,0,1],[1,2,2,1]],[[1,2,2,1],[3,2,2,1],[2,1,0,1],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[2,1,0,1],[1,2,2,1]],[[1,2,3,1],[2,2,2,1],[2,1,0,1],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[2,1,0,1],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[2,1,0,1],[1,2,2,1]],[[0,1,3,1],[1,3,0,2],[0,3,2,2],[1,2,2,1]],[[0,1,2,2],[1,3,0,2],[0,3,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,3],[0,3,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[0,3,2,3],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[0,3,2,2],[1,3,2,1]],[[0,1,2,1],[1,3,0,2],[0,3,2,2],[1,2,3,1]],[[0,1,2,1],[1,3,0,2],[0,3,2,2],[1,2,2,2]],[[0,1,2,1],[1,3,0,2],[0,3,4,1],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[0,3,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,0,2],[0,3,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,0,2],[0,3,3,1],[1,2,2,2]],[[0,1,3,1],[1,3,0,2],[0,3,3,2],[1,2,1,1]],[[0,1,2,2],[1,3,0,2],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,0,3],[0,3,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[0,3,4,2],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[0,3,3,3],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[0,3,3,2],[1,2,1,2]],[[0,1,3,1],[1,3,0,2],[0,3,3,2],[1,2,2,0]],[[0,1,2,2],[1,3,0,2],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,3],[0,3,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[0,3,4,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[0,3,3,3],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[0,3,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,0,2],[0,3,3,2],[1,2,3,0]],[[0,1,3,1],[1,3,0,2],[1,2,2,2],[1,2,2,1]],[[0,1,2,2],[1,3,0,2],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,1],[1,3,0,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,1],[1,3,0,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,1],[1,3,0,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,0,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,0,2],[1,2,3,1],[1,2,2,2]],[[0,1,3,1],[1,3,0,2],[1,2,3,2],[1,2,1,1]],[[0,1,2,2],[1,3,0,2],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,0,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[1,2,3,2],[1,2,1,2]],[[0,1,3,1],[1,3,0,2],[1,2,3,2],[1,2,2,0]],[[0,1,2,2],[1,3,0,2],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,1],[1,3,0,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,0,2],[1,2,3,2],[1,2,3,0]],[[0,1,3,1],[1,3,0,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,2],[1,3,0,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[1,4,0,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,3],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,4,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,1,3],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,1,2],[2,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,1,2],[1,3,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,1,2],[1,2,3,1]],[[0,1,2,1],[1,3,0,2],[1,3,1,2],[1,2,2,2]],[[0,1,2,1],[1,4,0,2],[1,3,2,1],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,4,2,1],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,2,1],[2,2,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,2,1],[1,3,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,2,1],[1,2,3,1]],[[0,1,2,1],[1,3,0,2],[1,3,2,1],[1,2,2,2]],[[0,1,3,1],[1,3,0,2],[1,3,2,2],[1,1,2,1]],[[0,1,2,2],[1,3,0,2],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[1,3,0,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,1],[1,3,0,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,1],[1,4,0,2],[1,3,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[1,4,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[1,3,2,2],[2,2,2,0]],[[0,1,2,1],[1,3,0,2],[1,3,2,2],[1,3,2,0]],[[0,1,2,1],[1,3,0,2],[1,3,2,2],[1,2,3,0]],[[0,1,2,1],[1,4,0,2],[1,3,3,1],[1,1,2,1]],[[0,1,2,1],[1,3,0,2],[1,4,3,1],[1,1,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,1],[1,4,0,2],[1,3,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[1,4,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[1,3,4,1],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,1],[2,2,1,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,1],[1,3,1,1]],[[0,1,3,1],[1,3,0,2],[1,3,3,2],[1,0,2,1]],[[0,1,2,2],[1,3,0,2],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[1,3,0,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,2],[1,0,2,2]],[[0,1,3,1],[1,3,0,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,2],[1,3,0,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[1,4,0,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,0,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,0,2],[1,4,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,0,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,2],[1,1,1,2]],[[0,1,3,1],[1,3,0,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,2],[1,3,0,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[1,4,0,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,0,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,0,2],[1,4,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,0,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,1],[1,3,0,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,1],[1,3,0,2],[1,3,3,2],[1,1,3,0]],[[0,1,3,1],[1,3,0,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,2],[1,3,0,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[1,4,0,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[1,3,0,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[1,3,0,2],[1,4,3,2],[1,2,0,1]],[[0,1,2,1],[1,3,0,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,2],[2,2,0,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,2],[1,3,0,1]],[[0,1,2,1],[1,3,0,2],[1,3,3,2],[1,2,0,2]],[[0,1,3,1],[1,3,0,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,2],[1,3,0,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[1,4,0,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[1,3,0,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[1,3,0,2],[1,4,3,2],[1,2,1,0]],[[0,1,2,1],[1,3,0,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,1],[1,3,0,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,1],[1,3,0,2],[1,3,3,2],[2,2,1,0]],[[0,1,2,1],[1,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,2,1],[2,0,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,2,1],[2,0,3,1],[2,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,0,3,1],[1,2,1,0]],[[0,1,3,1],[1,3,0,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,2],[1,3,0,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,3],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[3,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,1,2,3],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,1,2,2],[2,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,1,2,2],[1,3,2,1]],[[0,1,2,1],[1,3,0,2],[2,1,2,2],[1,2,3,1]],[[0,1,2,1],[1,3,0,2],[2,1,2,2],[1,2,2,2]],[[0,1,2,1],[1,3,0,2],[3,1,3,1],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,1,4,1],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,1,3,1],[2,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,1,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,0,2],[2,1,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,0,2],[2,1,3,1],[1,2,2,2]],[[0,1,3,1],[1,3,0,2],[2,1,3,2],[1,2,1,1]],[[0,1,2,2],[1,3,0,2],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,0,3],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[2,1,4,2],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[2,1,3,3],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[2,1,3,2],[1,2,1,2]],[[0,1,3,1],[1,3,0,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,2],[1,3,0,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,3],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[3,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,1,4,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,1,3,3],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,1,3,2],[2,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,1,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,0,2],[2,1,3,2],[1,2,3,0]],[[0,1,3,1],[1,3,0,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,2],[1,3,0,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,3],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[3,2,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,1,3],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,1,2],[2,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,1,2],[1,3,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,1,2],[1,2,3,1]],[[0,1,2,1],[1,3,0,2],[2,2,1,2],[1,2,2,2]],[[0,1,2,1],[1,3,0,2],[3,2,2,1],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,2,1],[2,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,2,1],[1,3,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,2,1],[1,2,3,1]],[[0,1,2,1],[1,3,0,2],[2,2,2,1],[1,2,2,2]],[[0,1,3,1],[1,3,0,2],[2,2,2,2],[0,2,2,1]],[[0,1,2,2],[1,3,0,2],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[1,3,0,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,1],[1,3,0,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,1],[1,3,0,2],[3,2,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,2,2,2],[2,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,2,2,2],[1,3,2,0]],[[0,1,2,1],[1,3,0,2],[2,2,2,2],[1,2,3,0]],[[0,1,2,1],[1,3,0,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,1],[1,3,0,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,1],[1,3,0,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,1],[1,3,0,2],[3,2,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,0,2],[2,2,3,1],[2,2,1,1]],[[0,1,2,1],[1,3,0,2],[2,2,3,1],[1,3,1,1]],[[0,1,3,1],[1,3,0,2],[2,2,3,2],[0,2,1,1]],[[0,1,2,2],[1,3,0,2],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[1,3,0,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[1,3,0,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,1],[1,3,0,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,1],[1,3,0,2],[2,2,3,2],[0,2,1,2]],[[0,1,3,1],[1,3,0,2],[2,2,3,2],[0,2,2,0]],[[0,1,2,2],[1,3,0,2],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[1,3,0,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,1],[1,3,0,2],[2,2,3,2],[0,2,3,0]],[[0,1,2,1],[1,3,0,2],[3,2,3,2],[1,2,0,1]],[[0,1,2,1],[1,3,0,2],[2,2,3,2],[2,2,0,1]],[[0,1,2,1],[1,3,0,2],[2,2,3,2],[1,3,0,1]],[[0,1,2,1],[1,3,0,2],[3,2,3,2],[1,2,1,0]],[[0,1,2,1],[1,3,0,2],[2,2,3,2],[2,2,1,0]],[[0,1,2,1],[1,3,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[3,2,2,1],[2,0,3,1],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,0,3,1],[1,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,0,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,2,1],[2,0,3,1],[1,3,0,1]],[[1,2,2,1],[2,2,2,1],[2,0,3,1],[2,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,0,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,0,3,1],[1,2,0,1]],[[1,2,2,2],[2,2,2,1],[2,0,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,0,2],[3,3,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,0,2],[2,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,0,2],[1,3,2,1]],[[0,1,2,1],[1,3,0,2],[3,3,1,1],[1,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,1,1],[2,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,1,1],[1,3,2,1]],[[0,1,3,1],[1,3,0,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,2],[1,3,0,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[1,4,0,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[1,3,0,3],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[1,3,0,2],[3,3,1,2],[0,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,4,1,2],[0,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,1,3],[0,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,1,2],[0,3,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,1,2],[0,2,3,1]],[[0,1,2,1],[1,3,0,2],[2,3,1,2],[0,2,2,2]],[[0,1,2,1],[1,4,0,2],[2,3,1,2],[1,1,2,1]],[[0,1,2,1],[1,3,0,2],[3,3,1,2],[1,1,2,1]],[[0,1,2,1],[1,3,0,2],[2,4,1,2],[1,1,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,1,2],[2,1,2,1]],[[0,1,2,1],[1,3,0,2],[3,3,1,2],[1,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,1,2],[2,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,1,2],[1,3,2,0]],[[0,1,2,1],[1,4,0,2],[2,3,2,1],[0,2,2,1]],[[0,1,2,1],[1,3,0,2],[3,3,2,1],[0,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,4,2,1],[0,2,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,2,1],[0,3,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,2,1],[0,2,3,1]],[[0,1,2,1],[1,3,0,2],[2,3,2,1],[0,2,2,2]],[[0,1,2,1],[1,4,0,2],[2,3,2,1],[1,1,2,1]],[[0,1,2,1],[1,3,0,2],[3,3,2,1],[1,1,2,1]],[[0,1,2,1],[1,3,0,2],[2,4,2,1],[1,1,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,2,1],[2,1,2,1]],[[0,1,3,1],[1,3,0,2],[2,3,2,2],[0,1,2,1]],[[0,1,2,2],[1,3,0,2],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[1,3,0,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,1],[1,3,0,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,1],[1,4,0,2],[2,3,2,2],[0,2,2,0]],[[0,1,2,1],[1,3,0,2],[3,3,2,2],[0,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,4,2,2],[0,2,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,2,2],[0,3,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,2,2],[0,2,3,0]],[[0,1,3,1],[1,3,0,2],[2,3,2,2],[1,0,2,1]],[[0,1,2,2],[1,3,0,2],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[1,3,0,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,1],[1,3,0,2],[2,3,2,2],[1,0,2,2]],[[0,1,2,1],[1,4,0,2],[2,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,3,0,2],[3,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,3,0,2],[2,4,2,2],[1,1,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,3,1],[2,2,2,1],[2,0,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,0,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[2,2,2,1],[2,0,3,1],[2,1,2,0]],[[0,1,2,1],[1,4,0,2],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[1,3,0,2],[3,3,3,1],[0,1,2,1]],[[0,1,2,1],[1,3,0,2],[2,4,3,1],[0,1,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,1],[1,4,0,2],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[1,3,0,2],[3,3,3,1],[0,2,1,1]],[[0,1,2,1],[1,3,0,2],[2,4,3,1],[0,2,1,1]],[[0,1,2,1],[1,3,0,2],[2,3,4,1],[0,2,1,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,1],[0,3,1,1]],[[0,1,2,1],[1,4,0,2],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[1,3,0,2],[3,3,3,1],[1,0,2,1]],[[0,1,2,1],[1,3,0,2],[2,4,3,1],[1,0,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,1],[2,0,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,1],[1,0,2,2]],[[0,1,2,1],[1,4,0,2],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,0,2],[3,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,0,2],[2,4,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,0,2],[2,3,4,1],[1,1,1,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,1],[2,1,1,1]],[[0,1,2,1],[1,3,0,2],[3,3,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,0,2],[2,4,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,0,3,1],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[2,0,3,1],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[2,2,2,1],[2,0,3,1],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[2,0,3,1],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[2,2,2,1],[2,0,3,1],[2,1,1,1]],[[1,2,2,1],[2,2,2,1],[3,0,3,1],[1,1,1,1]],[[0,1,3,1],[1,3,0,2],[2,3,3,2],[0,0,2,1]],[[0,1,2,2],[1,3,0,2],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[1,3,0,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[0,0,2,2]],[[0,1,3,1],[1,3,0,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,2],[1,3,0,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,4,0,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,0,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,0,2],[3,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,0,2],[2,4,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,0,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[0,1,1,2]],[[0,1,3,1],[1,3,0,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,2],[1,3,0,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,4,0,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,0,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,0,2],[3,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,0,2],[2,4,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[0,1,3,0]],[[0,1,3,1],[1,3,0,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,2],[1,3,0,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,4,0,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,3,0,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,3,0,2],[3,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,3,0,2],[2,4,3,2],[0,2,0,1]],[[0,1,2,1],[1,3,0,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[0,3,0,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[0,2,0,2]],[[0,1,3,1],[1,3,0,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,2],[1,3,0,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,4,0,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,3,0,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,3,0,2],[3,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,3,0,2],[2,4,3,2],[0,2,1,0]],[[0,1,2,1],[1,3,0,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,1],[1,3,0,2],[2,3,3,3],[0,2,1,0]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,2,2,1],[2,0,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[2,0,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[2,0,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[2,0,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[2,0,3,1],[1,1,1,1]],[[0,1,3,1],[1,3,0,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,2],[1,3,0,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,4,0,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,0,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,0,2],[3,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,0,2],[2,4,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,0,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[2,0,1,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[1,0,1,2]],[[0,1,3,1],[1,3,0,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,2],[1,3,0,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,4,0,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,0,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,0,2],[3,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,0,2],[2,4,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[2,0,2,0]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[1,0,3,0]],[[0,1,3,1],[1,3,0,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,2],[1,3,0,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,4,0,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,0,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,0,2],[3,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,0,2],[2,4,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,0,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[2,1,0,1]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[1,1,0,2]],[[0,1,3,1],[1,3,0,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,2],[1,3,0,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,4,0,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,3,0,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,3,0,2],[3,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,3,0,2],[2,4,3,2],[1,1,1,0]],[[0,1,2,1],[1,3,0,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,1],[1,3,0,2],[2,3,3,3],[1,1,1,0]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,2,2,1],[3,0,3,1],[0,2,2,0]],[[1,2,2,1],[3,2,2,1],[2,0,3,1],[0,2,2,0]],[[1,2,2,2],[2,2,2,1],[2,0,3,1],[0,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,0,3,1],[0,2,2,0]],[[1,3,2,1],[2,2,2,1],[2,0,3,1],[0,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[2,2,2,1],[3,0,3,1],[0,2,1,1]],[[1,2,2,1],[3,2,2,1],[2,0,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,2,1],[2,0,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,2,1],[2,0,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,2,1],[2,0,3,1],[0,2,1,1]],[[0,1,2,1],[1,4,0,2],[2,3,3,2],[1,2,0,0]],[[0,1,2,1],[1,3,0,2],[3,3,3,2],[1,2,0,0]],[[0,1,2,1],[1,3,0,2],[2,4,3,2],[1,2,0,0]],[[0,1,2,1],[1,3,0,2],[2,3,3,2],[2,2,0,0]],[[2,2,2,1],[2,2,2,1],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[2,2,2,1],[2,0,3,0],[1,3,1,1]],[[1,2,2,1],[2,2,2,1],[2,0,3,0],[2,2,1,1]],[[1,2,2,1],[2,2,2,1],[3,0,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[2,0,3,0],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[2,0,3,0],[1,2,1,1]],[[1,2,3,1],[2,2,2,1],[2,0,3,0],[1,2,1,1]],[[1,3,2,1],[2,2,2,1],[2,0,3,0],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[2,2,2,1],[2,0,3,0],[2,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,0,3,0],[1,1,2,1]],[[1,2,2,1],[3,2,2,1],[2,0,3,0],[1,1,2,1]],[[1,2,2,2],[2,2,2,1],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[2,0,3,0],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[2,0,3,0],[1,1,2,1]],[[2,2,2,1],[2,2,2,1],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,0,3,0],[0,2,2,1]],[[1,2,2,1],[3,2,2,1],[2,0,3,0],[0,2,2,1]],[[1,2,2,2],[2,2,2,1],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[2,2,2,1],[2,0,3,0],[0,2,2,1]],[[1,3,2,1],[2,2,2,1],[2,0,3,0],[0,2,2,1]],[[2,2,2,1],[2,2,2,1],[2,0,3,0],[0,2,2,1]],[[0,1,2,1],[1,3,1,0],[1,4,3,1],[1,2,2,1]],[[0,1,2,1],[1,3,1,0],[1,3,3,1],[2,2,2,1]],[[0,1,2,1],[1,3,1,0],[1,3,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,1,0],[1,3,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,1,0],[1,3,3,1],[1,2,2,2]],[[0,1,2,1],[1,3,1,0],[1,4,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,1,0],[1,3,3,2],[2,2,2,0]],[[0,1,2,1],[1,3,1,0],[1,3,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,1,0],[1,3,3,2],[1,2,3,0]],[[0,1,2,1],[1,3,1,0],[3,2,3,1],[1,2,2,1]],[[0,1,2,1],[1,3,1,0],[2,2,3,1],[2,2,2,1]],[[0,1,2,1],[1,3,1,0],[2,2,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,1,0],[2,2,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,1,0],[2,2,3,1],[1,2,2,2]],[[0,1,2,1],[1,3,1,0],[3,2,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,1,0],[2,2,3,2],[2,2,2,0]],[[0,1,2,1],[1,3,1,0],[2,2,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,1,0],[2,2,3,2],[1,2,3,0]],[[0,1,2,1],[1,3,1,0],[3,3,3,1],[0,2,2,1]],[[0,1,2,1],[1,3,1,0],[2,4,3,1],[0,2,2,1]],[[0,1,2,1],[1,3,1,0],[2,3,3,1],[0,3,2,1]],[[0,1,2,1],[1,3,1,0],[2,3,3,1],[0,2,3,1]],[[0,1,2,1],[1,3,1,0],[2,3,3,1],[0,2,2,2]],[[0,1,2,1],[1,3,1,0],[3,3,3,1],[1,1,2,1]],[[0,1,2,1],[1,3,1,0],[2,4,3,1],[1,1,2,1]],[[0,1,2,1],[1,3,1,0],[2,3,3,1],[2,1,2,1]],[[0,1,2,1],[1,3,1,0],[3,3,3,2],[0,2,2,0]],[[0,1,2,1],[1,3,1,0],[2,4,3,2],[0,2,2,0]],[[0,1,2,1],[1,3,1,0],[2,3,3,2],[0,3,2,0]],[[0,1,2,1],[1,3,1,0],[2,3,3,2],[0,2,3,0]],[[0,1,2,1],[1,3,1,0],[3,3,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,1,0],[2,4,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,1,0],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[2,2,2,1],[2,0,2,2],[1,3,1,0]],[[1,2,2,1],[2,2,2,1],[2,0,2,2],[2,2,1,0]],[[1,2,2,1],[2,2,2,1],[3,0,2,2],[1,2,1,0]],[[1,2,2,1],[3,2,2,1],[2,0,2,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,0,2,2],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[2,0,2,2],[1,2,1,0]],[[1,3,2,1],[2,2,2,1],[2,0,2,2],[1,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[2,2,2,1],[2,0,2,2],[1,3,0,1]],[[1,2,2,1],[2,2,2,1],[2,0,2,2],[2,2,0,1]],[[1,2,2,1],[2,2,2,1],[3,0,2,2],[1,2,0,1]],[[1,2,2,1],[3,2,2,1],[2,0,2,2],[1,2,0,1]],[[1,2,2,2],[2,2,2,1],[2,0,2,2],[1,2,0,1]],[[1,2,3,1],[2,2,2,1],[2,0,2,2],[1,2,0,1]],[[1,3,2,1],[2,2,2,1],[2,0,2,2],[1,2,0,1]],[[2,2,2,1],[2,2,2,1],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[2,2,2,1],[2,0,2,2],[2,1,2,0]],[[1,2,2,1],[2,2,2,1],[3,0,2,2],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[2,0,2,2],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[2,0,2,2],[1,1,2,0]],[[1,2,3,1],[2,2,2,1],[2,0,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[2,0,2,2],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[2,2,2,1],[2,0,2,2],[2,1,1,1]],[[1,2,2,1],[2,2,2,1],[3,0,2,2],[1,1,1,1]],[[1,2,2,1],[3,2,2,1],[2,0,2,2],[1,1,1,1]],[[0,1,3,1],[1,3,1,2],[1,0,3,2],[1,2,2,1]],[[0,1,2,2],[1,3,1,2],[1,0,3,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,3],[1,0,3,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[1,0,3,3],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[1,0,3,2],[1,2,3,1]],[[0,1,2,1],[1,3,1,2],[1,0,3,2],[1,2,2,2]],[[0,1,3,1],[1,3,1,2],[1,1,2,2],[1,2,2,1]],[[0,1,2,2],[1,3,1,2],[1,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,3],[1,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[1,1,2,3],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[1,1,2,2],[2,2,2,1]],[[0,1,2,1],[1,3,1,2],[1,1,2,2],[1,3,2,1]],[[0,1,2,1],[1,3,1,2],[1,1,2,2],[1,2,3,1]],[[0,1,2,1],[1,3,1,2],[1,1,2,2],[1,2,2,2]],[[0,1,2,1],[1,3,1,2],[1,1,4,1],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[1,1,3,1],[2,2,2,1]],[[0,1,2,1],[1,3,1,2],[1,1,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,1,2],[1,1,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,1,2],[1,1,3,1],[1,2,2,2]],[[0,1,3,1],[1,3,1,2],[1,1,3,2],[1,2,1,1]],[[0,1,2,2],[1,3,1,2],[1,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,1,3],[1,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,1,2],[1,1,4,2],[1,2,1,1]],[[0,1,2,1],[1,3,1,2],[1,1,3,3],[1,2,1,1]],[[0,1,2,1],[1,3,1,2],[1,1,3,2],[1,2,1,2]],[[0,1,3,1],[1,3,1,2],[1,1,3,2],[1,2,2,0]],[[0,1,2,2],[1,3,1,2],[1,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,1,3],[1,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,1,2],[1,1,4,2],[1,2,2,0]],[[0,1,2,1],[1,3,1,2],[1,1,3,3],[1,2,2,0]],[[0,1,2,1],[1,3,1,2],[1,1,3,2],[2,2,2,0]],[[0,1,2,1],[1,3,1,2],[1,1,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,1,2],[1,1,3,2],[1,2,3,0]],[[0,1,3,1],[1,3,1,2],[1,2,2,2],[1,1,2,1]],[[0,1,2,2],[1,3,1,2],[1,2,2,2],[1,1,2,1]],[[0,1,2,1],[1,3,1,3],[1,2,2,2],[1,1,2,1]],[[0,1,2,1],[1,3,1,2],[1,2,2,3],[1,1,2,1]],[[0,1,2,1],[1,3,1,2],[1,2,2,2],[1,1,3,1]],[[0,1,2,1],[1,3,1,2],[1,2,2,2],[1,1,2,2]],[[0,1,2,1],[1,3,1,2],[1,2,4,1],[1,1,2,1]],[[0,1,2,1],[1,3,1,2],[1,2,3,1],[1,1,3,1]],[[0,1,2,1],[1,3,1,2],[1,2,3,1],[1,1,2,2]],[[0,1,3,1],[1,3,1,2],[1,2,3,2],[1,0,2,1]],[[0,1,2,2],[1,3,1,2],[1,2,3,2],[1,0,2,1]],[[0,1,2,1],[1,3,1,3],[1,2,3,2],[1,0,2,1]],[[0,1,2,1],[1,3,1,2],[1,2,4,2],[1,0,2,1]],[[0,1,2,1],[1,3,1,2],[1,2,3,3],[1,0,2,1]],[[0,1,2,1],[1,3,1,2],[1,2,3,2],[1,0,2,2]],[[0,1,3,1],[1,3,1,2],[1,2,3,2],[1,1,1,1]],[[0,1,2,2],[1,3,1,2],[1,2,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,1,3],[1,2,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,1,2],[1,2,4,2],[1,1,1,1]],[[0,1,2,1],[1,3,1,2],[1,2,3,3],[1,1,1,1]],[[0,1,2,1],[1,3,1,2],[1,2,3,2],[1,1,1,2]],[[0,1,3,1],[1,3,1,2],[1,2,3,2],[1,1,2,0]],[[0,1,2,2],[1,3,1,2],[1,2,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,1,3],[1,2,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,1,2],[1,2,4,2],[1,1,2,0]],[[0,1,2,1],[1,3,1,2],[1,2,3,3],[1,1,2,0]],[[0,1,2,1],[1,3,1,2],[1,2,3,2],[1,1,3,0]],[[0,1,3,1],[1,3,1,2],[1,2,3,2],[1,2,0,1]],[[0,1,2,2],[1,3,1,2],[1,2,3,2],[1,2,0,1]],[[0,1,2,1],[1,3,1,3],[1,2,3,2],[1,2,0,1]],[[0,1,2,1],[1,3,1,2],[1,2,4,2],[1,2,0,1]],[[0,1,2,1],[1,3,1,2],[1,2,3,3],[1,2,0,1]],[[0,1,2,1],[1,3,1,2],[1,2,3,2],[1,2,0,2]],[[0,1,3,1],[1,3,1,2],[1,2,3,2],[1,2,1,0]],[[0,1,2,2],[1,3,1,2],[1,2,3,2],[1,2,1,0]],[[0,1,2,1],[1,3,1,3],[1,2,3,2],[1,2,1,0]],[[0,1,2,1],[1,3,1,2],[1,2,4,2],[1,2,1,0]],[[0,1,2,1],[1,3,1,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[2,0,2,2],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[2,0,2,2],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[2,0,2,2],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[2,0,2,2],[1,1,1,1]],[[0,1,3,1],[1,3,1,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,2],[1,3,1,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[1,4,1,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,3],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[1,4,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[1,3,0,3],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[1,3,0,2],[2,2,2,1]],[[0,1,2,1],[1,3,1,2],[1,3,0,2],[1,3,2,1]],[[0,1,2,1],[1,3,1,2],[1,3,0,2],[1,2,3,1]],[[0,1,2,1],[1,3,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[2,2,2,1],[3,0,2,2],[0,2,2,0]],[[1,2,2,1],[3,2,2,1],[2,0,2,2],[0,2,2,0]],[[1,2,2,2],[2,2,2,1],[2,0,2,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,0,2,2],[0,2,2,0]],[[1,3,2,1],[2,2,2,1],[2,0,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,2,1],[3,0,2,2],[0,2,1,1]],[[1,2,2,1],[3,2,2,1],[2,0,2,2],[0,2,1,1]],[[1,2,2,2],[2,2,2,1],[2,0,2,2],[0,2,1,1]],[[1,2,3,1],[2,2,2,1],[2,0,2,2],[0,2,1,1]],[[1,3,2,1],[2,2,2,1],[2,0,2,2],[0,2,1,1]],[[2,2,2,1],[2,2,2,1],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[2,2,2,1],[2,0,2,1],[1,2,3,0]],[[1,2,2,1],[2,2,2,1],[2,0,2,1],[1,3,2,0]],[[1,2,2,1],[2,2,2,1],[2,0,2,1],[2,2,2,0]],[[1,2,2,1],[2,2,2,1],[3,0,2,1],[1,2,2,0]],[[1,2,2,1],[3,2,2,1],[2,0,2,1],[1,2,2,0]],[[1,2,2,2],[2,2,2,1],[2,0,2,1],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,0,2,1],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[2,0,2,1],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[2,2,2,1],[2,0,2,0],[1,2,2,2]],[[1,2,2,1],[2,2,2,1],[2,0,2,0],[1,2,3,1]],[[1,2,2,1],[2,2,2,1],[2,0,2,0],[1,3,2,1]],[[1,2,2,1],[2,2,2,1],[2,0,2,0],[2,2,2,1]],[[1,2,2,1],[2,2,2,1],[3,0,2,0],[1,2,2,1]],[[1,2,2,1],[3,2,2,1],[2,0,2,0],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[2,0,2,0],[1,2,2,1]],[[1,2,3,1],[2,2,2,1],[2,0,2,0],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[2,0,2,0],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[2,2,2,1],[2,0,1,2],[1,2,3,0]],[[1,2,2,1],[2,2,2,1],[2,0,1,2],[1,3,2,0]],[[1,2,2,1],[2,2,2,1],[2,0,1,2],[2,2,2,0]],[[1,2,2,1],[2,2,2,1],[3,0,1,2],[1,2,2,0]],[[0,1,3,1],[1,3,1,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,2],[1,3,1,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,3],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[3,0,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,0,2,3],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,0,2,2],[2,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,0,2,2],[1,3,2,1]],[[0,1,2,1],[1,3,1,2],[2,0,2,2],[1,2,3,1]],[[0,1,2,1],[1,3,1,2],[2,0,2,2],[1,2,2,2]],[[0,1,2,1],[1,3,1,2],[3,0,3,1],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,0,4,1],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,0,3,1],[2,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,0,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,1,2],[2,0,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,1,2],[2,0,3,1],[1,2,2,2]],[[0,1,3,1],[1,3,1,2],[2,0,3,2],[0,2,2,1]],[[0,1,2,2],[1,3,1,2],[2,0,3,2],[0,2,2,1]],[[0,1,2,1],[1,3,1,3],[2,0,3,2],[0,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,0,3,3],[0,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,0,3,2],[0,2,3,1]],[[0,1,2,1],[1,3,1,2],[2,0,3,2],[0,2,2,2]],[[0,1,3,1],[1,3,1,2],[2,0,3,2],[1,2,1,1]],[[0,1,2,2],[1,3,1,2],[2,0,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,1,3],[2,0,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,1,2],[2,0,4,2],[1,2,1,1]],[[0,1,2,1],[1,3,1,2],[2,0,3,3],[1,2,1,1]],[[0,1,2,1],[1,3,1,2],[2,0,3,2],[1,2,1,2]],[[0,1,3,1],[1,3,1,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,2],[1,3,1,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,1,3],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,1,2],[3,0,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,1,2],[2,0,4,2],[1,2,2,0]],[[0,1,2,1],[1,3,1,2],[2,0,3,3],[1,2,2,0]],[[0,1,2,1],[1,3,1,2],[2,0,3,2],[2,2,2,0]],[[0,1,2,1],[1,3,1,2],[2,0,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,1,2],[2,0,3,2],[1,2,3,0]],[[0,1,3,1],[1,3,1,2],[2,1,2,2],[0,2,2,1]],[[0,1,2,2],[1,3,1,2],[2,1,2,2],[0,2,2,1]],[[0,1,2,1],[1,3,1,3],[2,1,2,2],[0,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,1,2,3],[0,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,1,2,2],[0,3,2,1]],[[0,1,2,1],[1,3,1,2],[2,1,2,2],[0,2,3,1]],[[0,1,2,1],[1,3,1,2],[2,1,2,2],[0,2,2,2]],[[0,1,2,1],[1,3,1,2],[2,1,4,1],[0,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,1,3,1],[0,3,2,1]],[[0,1,2,1],[1,3,1,2],[2,1,3,1],[0,2,3,1]],[[0,1,2,1],[1,3,1,2],[2,1,3,1],[0,2,2,2]],[[0,1,3,1],[1,3,1,2],[2,1,3,2],[0,2,1,1]],[[0,1,2,2],[1,3,1,2],[2,1,3,2],[0,2,1,1]],[[0,1,2,1],[1,3,1,3],[2,1,3,2],[0,2,1,1]],[[0,1,2,1],[1,3,1,2],[2,1,4,2],[0,2,1,1]],[[0,1,2,1],[1,3,1,2],[2,1,3,3],[0,2,1,1]],[[0,1,2,1],[1,3,1,2],[2,1,3,2],[0,2,1,2]],[[0,1,3,1],[1,3,1,2],[2,1,3,2],[0,2,2,0]],[[0,1,2,2],[1,3,1,2],[2,1,3,2],[0,2,2,0]],[[0,1,2,1],[1,3,1,3],[2,1,3,2],[0,2,2,0]],[[0,1,2,1],[1,3,1,2],[2,1,4,2],[0,2,2,0]],[[0,1,2,1],[1,3,1,2],[2,1,3,3],[0,2,2,0]],[[0,1,2,1],[1,3,1,2],[2,1,3,2],[0,3,2,0]],[[0,1,2,1],[1,3,1,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[3,2,2,1],[2,0,1,2],[1,2,2,0]],[[1,2,2,2],[2,2,2,1],[2,0,1,2],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[2,0,1,2],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[2,0,1,2],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[2,2,2,1],[2,0,1,2],[1,3,1,1]],[[1,2,2,1],[2,2,2,1],[2,0,1,2],[2,2,1,1]],[[1,2,2,1],[2,2,2,1],[3,0,1,2],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[2,0,1,2],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[2,0,1,2],[1,2,1,1]],[[0,1,3,1],[1,3,1,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,2],[1,3,1,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,3],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[3,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,0,3],[1,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,0,2],[2,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,0,2],[1,3,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,0,2],[1,2,3,1]],[[0,1,2,1],[1,3,1,2],[2,2,0,2],[1,2,2,2]],[[0,1,3,1],[1,3,1,2],[2,2,2,2],[0,1,2,1]],[[0,1,2,2],[1,3,1,2],[2,2,2,2],[0,1,2,1]],[[0,1,2,1],[1,3,1,3],[2,2,2,2],[0,1,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,2,3],[0,1,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,2,2],[0,1,3,1]],[[0,1,2,1],[1,3,1,2],[2,2,2,2],[0,1,2,2]],[[0,1,3,1],[1,3,1,2],[2,2,2,2],[1,0,2,1]],[[0,1,2,2],[1,3,1,2],[2,2,2,2],[1,0,2,1]],[[0,1,2,1],[1,3,1,3],[2,2,2,2],[1,0,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,2,3],[1,0,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,2,2],[1,0,3,1]],[[0,1,2,1],[1,3,1,2],[2,2,2,2],[1,0,2,2]],[[1,2,3,1],[2,2,2,1],[2,0,1,2],[1,2,1,1]],[[1,3,2,1],[2,2,2,1],[2,0,1,2],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[2,2,2,1],[2,0,1,2],[2,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,0,1,2],[1,1,2,1]],[[1,2,2,1],[3,2,2,1],[2,0,1,2],[1,1,2,1]],[[1,2,2,2],[2,2,2,1],[2,0,1,2],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[2,0,1,2],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[2,0,1,2],[1,1,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,4,1],[0,1,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,1],[0,1,3,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,1],[0,1,2,2]],[[0,1,2,1],[1,3,1,2],[2,2,4,1],[1,0,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,1],[1,0,3,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,1],[1,0,2,2]],[[2,2,2,1],[2,2,2,1],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[2,2,2,1],[3,0,1,2],[0,2,2,1]],[[1,2,2,1],[3,2,2,1],[2,0,1,2],[0,2,2,1]],[[1,2,2,2],[2,2,2,1],[2,0,1,2],[0,2,2,1]],[[1,2,3,1],[2,2,2,1],[2,0,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,2,1],[2,0,1,2],[0,2,2,1]],[[0,1,3,1],[1,3,1,2],[2,2,3,2],[0,0,2,1]],[[0,1,2,2],[1,3,1,2],[2,2,3,2],[0,0,2,1]],[[0,1,2,1],[1,3,1,3],[2,2,3,2],[0,0,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,4,2],[0,0,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,3],[0,0,2,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,2],[0,0,2,2]],[[0,1,3,1],[1,3,1,2],[2,2,3,2],[0,1,1,1]],[[0,1,2,2],[1,3,1,2],[2,2,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,1,3],[2,2,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,1,2],[2,2,4,2],[0,1,1,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,3],[0,1,1,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,2],[0,1,1,2]],[[0,1,3,1],[1,3,1,2],[2,2,3,2],[0,1,2,0]],[[0,1,2,2],[1,3,1,2],[2,2,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,1,3],[2,2,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,1,2],[2,2,4,2],[0,1,2,0]],[[0,1,2,1],[1,3,1,2],[2,2,3,3],[0,1,2,0]],[[0,1,2,1],[1,3,1,2],[2,2,3,2],[0,1,3,0]],[[0,1,3,1],[1,3,1,2],[2,2,3,2],[0,2,0,1]],[[0,1,2,2],[1,3,1,2],[2,2,3,2],[0,2,0,1]],[[0,1,2,1],[1,3,1,3],[2,2,3,2],[0,2,0,1]],[[0,1,2,1],[1,3,1,2],[2,2,4,2],[0,2,0,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,3],[0,2,0,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,2],[0,2,0,2]],[[0,1,3,1],[1,3,1,2],[2,2,3,2],[0,2,1,0]],[[0,1,2,2],[1,3,1,2],[2,2,3,2],[0,2,1,0]],[[0,1,2,1],[1,3,1,3],[2,2,3,2],[0,2,1,0]],[[0,1,2,1],[1,3,1,2],[2,2,4,2],[0,2,1,0]],[[0,1,2,1],[1,3,1,2],[2,2,3,3],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[2,2,2,1],[2,0,1,1],[1,2,2,2]],[[1,2,2,1],[2,2,2,1],[2,0,1,1],[1,2,3,1]],[[1,2,2,1],[2,2,2,1],[2,0,1,1],[1,3,2,1]],[[1,2,2,1],[2,2,2,1],[2,0,1,1],[2,2,2,1]],[[1,2,2,1],[2,2,2,1],[3,0,1,1],[1,2,2,1]],[[1,2,2,1],[3,2,2,1],[2,0,1,1],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[2,0,1,1],[1,2,2,1]],[[0,1,3,1],[1,3,1,2],[2,2,3,2],[1,0,1,1]],[[0,1,2,2],[1,3,1,2],[2,2,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,1,3],[2,2,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,1,2],[2,2,4,2],[1,0,1,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,3],[1,0,1,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,2],[1,0,1,2]],[[0,1,3,1],[1,3,1,2],[2,2,3,2],[1,0,2,0]],[[0,1,2,2],[1,3,1,2],[2,2,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,1,3],[2,2,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,1,2],[2,2,4,2],[1,0,2,0]],[[0,1,2,1],[1,3,1,2],[2,2,3,3],[1,0,2,0]],[[0,1,2,1],[1,3,1,2],[2,2,3,2],[1,0,3,0]],[[0,1,3,1],[1,3,1,2],[2,2,3,2],[1,1,0,1]],[[0,1,2,2],[1,3,1,2],[2,2,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,1,3],[2,2,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,1,2],[2,2,4,2],[1,1,0,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,3],[1,1,0,1]],[[0,1,2,1],[1,3,1,2],[2,2,3,2],[1,1,0,2]],[[0,1,3,1],[1,3,1,2],[2,2,3,2],[1,1,1,0]],[[0,1,2,2],[1,3,1,2],[2,2,3,2],[1,1,1,0]],[[0,1,2,1],[1,3,1,3],[2,2,3,2],[1,1,1,0]],[[0,1,2,1],[1,3,1,2],[2,2,4,2],[1,1,1,0]],[[0,1,2,1],[1,3,1,2],[2,2,3,3],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[2,0,1,1],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[2,0,1,1],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[2,0,1,1],[1,2,2,1]],[[1,2,2,1],[3,2,2,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[2,2,2,1],[1,3,3,2],[0,0,0,1]],[[0,1,3,1],[1,3,1,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,2],[1,3,1,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,4,1,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,1,3],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,1,2],[3,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,4,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,3,0,3],[0,2,2,1]],[[0,1,2,1],[1,3,1,2],[2,3,0,2],[0,3,2,1]],[[0,1,2,1],[1,3,1,2],[2,3,0,2],[0,2,3,1]],[[0,1,2,1],[1,3,1,2],[2,3,0,2],[0,2,2,2]],[[0,1,2,1],[1,4,1,2],[2,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,1,2],[3,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,1,2],[2,4,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,3,1],[2,2,2,1],[1,3,3,2],[0,0,0,1]],[[1,3,2,1],[2,2,2,1],[1,3,3,2],[0,0,0,1]],[[2,2,2,1],[2,2,2,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[3,2,2,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,2,2,1],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,2,2,1],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,2,2,1],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,2,2,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[3,2,2,1],[1,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,2,2,1],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,2,2,1],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,2,2,1],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,2,2,1],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[3,2,2,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,2,2,1],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,3,1],[0,0,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[2,2,2,1],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[2,2,2,1],[1,3,3,1],[0,0,1,1]],[[1,3,2,1],[2,2,2,1],[1,3,3,1],[0,0,1,1]],[[2,2,2,1],[2,2,2,1],[1,3,3,1],[0,0,1,1]],[[0,1,3,1],[1,3,1,2],[2,3,3,2],[0,0,1,1]],[[0,1,2,2],[1,3,1,2],[2,3,3,2],[0,0,1,1]],[[0,1,2,1],[1,3,1,3],[2,3,3,2],[0,0,1,1]],[[0,1,2,1],[1,3,1,2],[2,3,4,2],[0,0,1,1]],[[0,1,2,1],[1,3,1,2],[2,3,3,3],[0,0,1,1]],[[0,1,2,1],[1,3,1,2],[2,3,3,2],[0,0,1,2]],[[0,1,3,1],[1,3,1,2],[2,3,3,2],[0,0,2,0]],[[0,1,2,2],[1,3,1,2],[2,3,3,2],[0,0,2,0]],[[0,1,2,1],[1,3,1,3],[2,3,3,2],[0,0,2,0]],[[0,1,2,1],[1,3,1,2],[2,3,4,2],[0,0,2,0]],[[0,1,2,1],[1,3,1,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,3,0],[1,2,0,0]],[[1,2,2,2],[2,2,2,1],[1,3,3,0],[1,2,0,0]],[[1,2,3,1],[2,2,2,1],[1,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,2,2,1],[1,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,2,2,1],[1,3,3,0],[1,2,0,0]],[[1,2,2,1],[3,2,2,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[1,3,3,0],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[1,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[1,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[1,3,3,0],[1,0,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,3,0],[1,0,2,0]],[[1,2,3,1],[2,2,2,1],[1,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,3,0],[1,0,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,3,0],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[1,3,3,0],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[1,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[1,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[1,3,3,0],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[1,3,3,0],[0,1,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,3,0],[0,1,2,0]],[[1,2,3,1],[2,2,2,1],[1,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,3,0],[0,1,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,3,0],[0,0,2,1]],[[1,2,2,2],[2,2,2,1],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[2,2,2,1],[1,3,3,0],[0,0,2,1]],[[1,3,2,1],[2,2,2,1],[1,3,3,0],[0,0,2,1]],[[2,2,2,1],[2,2,2,1],[1,3,3,0],[0,0,2,1]],[[1,2,2,1],[3,2,2,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[2,2,2,1],[1,3,2,2],[0,0,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,2,2],[0,0,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[2,2,2,1],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[2,2,2,1],[1,3,2,2],[0,0,1,1]],[[1,3,2,1],[2,2,2,1],[1,3,2,2],[0,0,1,1]],[[2,2,2,1],[2,2,2,1],[1,3,2,2],[0,0,1,1]],[[0,1,2,1],[1,3,2,0],[0,3,2,3],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[0,3,2,2],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[0,3,2,2],[1,2,3,1]],[[0,1,2,1],[1,3,2,0],[0,3,2,2],[1,2,2,2]],[[0,1,2,1],[1,3,2,0],[0,3,4,1],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[0,3,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[0,3,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,2,0],[0,3,3,1],[1,2,2,2]],[[0,1,2,1],[1,3,2,0],[0,3,4,2],[1,2,1,1]],[[0,1,2,1],[1,3,2,0],[0,3,3,3],[1,2,1,1]],[[0,1,2,1],[1,3,2,0],[0,3,3,2],[1,2,1,2]],[[0,1,2,1],[1,3,2,0],[0,3,4,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,0],[0,3,3,3],[1,2,2,0]],[[0,1,2,1],[1,3,2,0],[0,3,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,2,0],[0,3,3,2],[1,2,3,0]],[[0,1,2,1],[1,3,2,0],[1,2,2,3],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,2,2,2],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,2,2,2],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[1,2,2,2],[1,2,3,1]],[[0,1,2,1],[1,3,2,0],[1,2,2,2],[1,2,2,2]],[[0,1,2,1],[1,3,2,0],[1,2,4,1],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,2,3,1],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,2,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[1,2,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,2,0],[1,2,3,1],[1,2,2,2]],[[0,1,2,1],[1,3,2,0],[1,2,4,2],[1,2,1,1]],[[0,1,2,1],[1,3,2,0],[1,2,3,3],[1,2,1,1]],[[0,1,2,1],[1,3,2,0],[1,2,3,2],[1,2,1,2]],[[0,1,2,1],[1,3,2,0],[1,2,4,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,0],[1,2,3,3],[1,2,2,0]],[[0,1,2,1],[1,3,2,0],[1,2,3,2],[2,2,2,0]],[[0,1,2,1],[1,3,2,0],[1,2,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,2,0],[1,2,3,2],[1,2,3,0]],[[0,1,2,1],[1,4,2,0],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,4,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,1,3],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,1,2],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,1,2],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,1,2],[1,2,3,1]],[[0,1,2,1],[1,3,2,0],[1,3,1,2],[1,2,2,2]],[[0,1,2,1],[1,4,2,0],[1,3,2,1],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,4,2,1],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,2,1],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,2,1],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,2,1],[1,2,3,1]],[[0,1,2,1],[1,3,2,0],[1,3,2,1],[1,2,2,2]],[[0,1,2,1],[1,3,2,0],[1,3,2,3],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,2,2],[1,1,3,1]],[[0,1,2,1],[1,3,2,0],[1,3,2,2],[1,1,2,2]],[[0,1,2,1],[1,4,2,0],[1,3,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,0],[1,4,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,0],[1,3,2,2],[2,2,2,0]],[[0,1,2,1],[1,3,2,0],[1,3,2,2],[1,3,2,0]],[[0,1,2,1],[1,3,2,0],[1,3,2,2],[1,2,3,0]],[[0,1,2,1],[1,4,2,0],[1,3,3,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,4,3,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,0],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,0],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,0],[1,2,3,1]],[[0,1,2,1],[1,4,2,0],[1,3,3,1],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[1,4,3,1],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,4,1],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,1],[1,1,3,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,1],[1,1,2,2]],[[0,1,2,1],[1,4,2,0],[1,3,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,2,0],[1,4,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,2,0],[1,3,4,1],[1,2,1,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,1],[2,2,1,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,1],[1,3,1,1]],[[0,1,2,1],[1,3,2,0],[1,3,4,2],[1,0,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,3],[1,0,2,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,2],[1,0,2,2]],[[0,1,2,1],[1,4,2,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,2,0],[1,4,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,2,0],[1,3,4,2],[1,1,1,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,3],[1,1,1,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,2],[1,1,1,2]],[[0,1,2,1],[1,4,2,0],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,0],[1,4,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,0],[1,3,4,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,0],[1,3,3,3],[1,1,2,0]],[[0,1,2,1],[1,3,2,0],[1,3,3,2],[1,1,3,0]],[[0,1,2,1],[1,4,2,0],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[1,3,2,0],[1,4,3,2],[1,2,0,1]],[[0,1,2,1],[1,3,2,0],[1,3,4,2],[1,2,0,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,3],[1,2,0,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,2],[2,2,0,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,2],[1,3,0,1]],[[0,1,2,1],[1,3,2,0],[1,3,3,2],[1,2,0,2]],[[0,1,2,1],[1,4,2,0],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[1,3,2,0],[1,4,3,2],[1,2,1,0]],[[0,1,2,1],[1,3,2,0],[1,3,4,2],[1,2,1,0]],[[0,1,2,1],[1,3,2,0],[1,3,3,3],[1,2,1,0]],[[0,1,2,1],[1,3,2,0],[1,3,3,2],[2,2,1,0]],[[0,1,2,1],[1,3,2,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,2,2,1],[1,3,2,1],[1,2,0,0]],[[1,2,2,2],[2,2,2,1],[1,3,2,1],[1,2,0,0]],[[1,2,3,1],[2,2,2,1],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,2,2,1],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,2,2,1],[1,3,2,1],[1,2,0,0]],[[0,1,2,1],[1,3,2,0],[3,1,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,1,2,3],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,1,2,2],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,1,2,2],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[2,1,2,2],[1,2,3,1]],[[0,1,2,1],[1,3,2,0],[2,1,2,2],[1,2,2,2]],[[0,1,2,1],[1,3,2,0],[3,1,3,1],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,1,4,1],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,1,3,1],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,1,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[2,1,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,2,0],[2,1,3,1],[1,2,2,2]],[[0,1,2,1],[1,3,2,0],[2,1,4,2],[1,2,1,1]],[[0,1,2,1],[1,3,2,0],[2,1,3,3],[1,2,1,1]],[[0,1,2,1],[1,3,2,0],[2,1,3,2],[1,2,1,2]],[[0,1,2,1],[1,3,2,0],[3,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,1,4,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,1,3,3],[1,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,1,3,2],[2,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,1,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,2,0],[2,1,3,2],[1,2,3,0]],[[0,1,2,1],[1,3,2,0],[3,2,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,1,3],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,1,2],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,1,2],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,1,2],[1,2,3,1]],[[0,1,2,1],[1,3,2,0],[2,2,1,2],[1,2,2,2]],[[0,1,2,1],[1,3,2,0],[3,2,2,1],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,2,1],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,2,1],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,2,1],[1,2,3,1]],[[0,1,2,1],[1,3,2,0],[2,2,2,1],[1,2,2,2]],[[0,1,2,1],[1,3,2,0],[2,2,2,3],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,2,2],[0,3,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,2,2],[0,2,3,1]],[[0,1,2,1],[1,3,2,0],[2,2,2,2],[0,2,2,2]],[[0,1,2,1],[1,3,2,0],[3,2,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,2,2,2],[2,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,2,2,2],[1,3,2,0]],[[0,1,2,1],[1,3,2,0],[2,2,2,2],[1,2,3,0]],[[0,1,2,1],[1,3,2,0],[3,2,3,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,0],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,0],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,0],[1,2,3,1]],[[0,1,2,1],[1,3,2,0],[2,2,4,1],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,1],[0,3,2,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,1],[0,2,3,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,1],[0,2,2,2]],[[0,1,2,1],[1,3,2,0],[3,2,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,1],[2,2,1,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,1],[1,3,1,1]],[[0,1,2,1],[1,3,2,0],[2,2,4,2],[0,2,1,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,3],[0,2,1,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,2],[0,2,1,2]],[[0,1,2,1],[1,3,2,0],[2,2,4,2],[0,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,2,3,3],[0,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,2,3,2],[0,3,2,0]],[[0,1,2,1],[1,3,2,0],[2,2,3,2],[0,2,3,0]],[[0,1,2,1],[1,3,2,0],[3,2,3,2],[1,2,0,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,2],[2,2,0,1]],[[0,1,2,1],[1,3,2,0],[2,2,3,2],[1,3,0,1]],[[0,1,2,1],[1,3,2,0],[3,2,3,2],[1,2,1,0]],[[0,1,2,1],[1,3,2,0],[2,2,3,2],[2,2,1,0]],[[0,1,2,1],[1,3,2,0],[2,2,3,2],[1,3,1,0]],[[0,1,2,1],[1,3,2,0],[3,3,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,0,2],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,0,2],[1,3,2,1]],[[0,1,2,1],[1,3,2,0],[3,3,1,1],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,1,1],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,1,1],[1,3,2,1]],[[0,1,2,1],[1,4,2,0],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[3,3,1,2],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,4,1,2],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,1,3],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,1,2],[0,3,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,1,2],[0,2,3,1]],[[0,1,2,1],[1,3,2,0],[2,3,1,2],[0,2,2,2]],[[0,1,2,1],[1,4,2,0],[2,3,1,2],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[3,3,1,2],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[2,4,1,2],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,1,2],[2,1,2,1]],[[0,1,2,1],[1,3,2,0],[3,3,1,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,1,2],[2,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,1,2],[1,3,2,0]],[[0,1,2,1],[1,3,2,0],[3,3,2,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,2,0],[2,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,2,0],[1,3,2,1]],[[0,1,2,1],[1,4,2,0],[2,3,2,1],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[3,3,2,1],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,4,2,1],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,2,1],[0,3,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,2,1],[0,2,3,1]],[[0,1,2,1],[1,3,2,0],[2,3,2,1],[0,2,2,2]],[[0,1,2,1],[1,4,2,0],[2,3,2,1],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[3,3,2,1],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[2,4,2,1],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,2,1],[2,1,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,2,3],[0,1,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,2,2],[0,1,3,1]],[[0,1,2,1],[1,3,2,0],[2,3,2,2],[0,1,2,2]],[[0,1,2,1],[1,4,2,0],[2,3,2,2],[0,2,2,0]],[[0,1,2,1],[1,3,2,0],[3,3,2,2],[0,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,4,2,2],[0,2,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,2,2],[0,3,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,2,2],[0,2,3,0]],[[0,1,2,1],[1,3,2,0],[2,3,2,3],[1,0,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,2,2],[1,0,3,1]],[[0,1,2,1],[1,3,2,0],[2,3,2,2],[1,0,2,2]],[[0,1,2,1],[1,4,2,0],[2,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,0],[3,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,0],[2,4,2,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[1,3,2,1],[1,1,0,1]],[[1,2,2,2],[2,2,2,1],[1,3,2,1],[1,1,0,1]],[[0,1,2,1],[1,4,2,0],[2,3,3,0],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[3,3,3,0],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,4,3,0],[0,2,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,0],[0,3,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,0],[0,2,3,1]],[[0,1,2,1],[1,4,2,0],[2,3,3,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[3,3,3,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[2,4,3,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,0],[2,1,2,1]],[[0,1,2,1],[1,4,2,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[1,3,2,0],[3,3,3,1],[0,1,2,1]],[[0,1,2,1],[1,3,2,0],[2,4,3,1],[0,1,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,4,1],[0,1,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,1],[0,1,3,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,1],[0,1,2,2]],[[0,1,2,1],[1,4,2,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[1,3,2,0],[3,3,3,1],[0,2,1,1]],[[0,1,2,1],[1,3,2,0],[2,4,3,1],[0,2,1,1]],[[0,1,2,1],[1,3,2,0],[2,3,4,1],[0,2,1,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,1],[0,3,1,1]],[[0,1,2,1],[1,4,2,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[1,3,2,0],[3,3,3,1],[1,0,2,1]],[[0,1,2,1],[1,3,2,0],[2,4,3,1],[1,0,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,4,1],[1,0,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,1],[2,0,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,1],[1,0,3,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,1],[1,0,2,2]],[[0,1,2,1],[1,4,2,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,2,0],[3,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,2,0],[2,4,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,2,0],[2,3,4,1],[1,1,1,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,1],[2,1,1,1]],[[0,1,2,1],[1,4,2,0],[2,3,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,2,0],[3,3,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,2,0],[2,4,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,3,1],[2,2,2,1],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,2,2,1],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,2,2,1],[1,3,2,1],[1,1,0,1]],[[0,1,2,1],[1,3,2,0],[2,3,4,2],[0,0,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,3],[0,0,2,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[0,0,2,2]],[[0,1,2,1],[1,4,2,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,2,0],[3,3,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,2,0],[2,4,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,2,0],[2,3,4,2],[0,1,1,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,3],[0,1,1,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[0,1,1,2]],[[0,1,2,1],[1,4,2,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,2,0],[3,3,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,2,0],[2,4,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,4,2],[0,1,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,3,3],[0,1,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[0,1,3,0]],[[0,1,2,1],[1,4,2,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,3,2,0],[3,3,3,2],[0,2,0,1]],[[0,1,2,1],[1,3,2,0],[2,4,3,2],[0,2,0,1]],[[0,1,2,1],[1,3,2,0],[2,3,4,2],[0,2,0,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,3],[0,2,0,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[0,3,0,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[0,2,0,2]],[[0,1,2,1],[1,4,2,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,3,2,0],[3,3,3,2],[0,2,1,0]],[[0,1,2,1],[1,3,2,0],[2,4,3,2],[0,2,1,0]],[[0,1,2,1],[1,3,2,0],[2,3,4,2],[0,2,1,0]],[[0,1,2,1],[1,3,2,0],[2,3,3,3],[0,2,1,0]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,2,2,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,2,2,1],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,2,1],[1,0,1,1]],[[1,2,2,2],[2,2,2,1],[1,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,2,2,1],[1,3,2,1],[1,0,1,1]],[[0,1,2,1],[1,4,2,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,2,0],[3,3,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,2,0],[2,4,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,2,0],[2,3,4,2],[1,0,1,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,3],[1,0,1,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[2,0,1,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[1,0,1,2]],[[0,1,2,1],[1,4,2,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,2,0],[3,3,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,2,0],[2,4,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,4,2],[1,0,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,3,3],[1,0,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[2,0,2,0]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[1,0,3,0]],[[0,1,2,1],[1,4,2,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,2,0],[3,3,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,2,0],[2,4,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,2,0],[2,3,4,2],[1,1,0,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,3],[1,1,0,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[2,1,0,1]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[1,1,0,2]],[[0,1,2,1],[1,4,2,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,3,2,0],[3,3,3,2],[1,1,1,0]],[[0,1,2,1],[1,3,2,0],[2,4,3,2],[1,1,1,0]],[[0,1,2,1],[1,3,2,0],[2,3,4,2],[1,1,1,0]],[[0,1,2,1],[1,3,2,0],[2,3,3,3],[1,1,1,0]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[2,1,1,0]],[[1,3,2,1],[2,2,2,1],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,2,2,1],[1,3,2,1],[1,0,1,1]],[[0,1,2,1],[1,4,2,0],[2,3,3,2],[1,2,0,0]],[[0,1,2,1],[1,3,2,0],[3,3,3,2],[1,2,0,0]],[[0,1,2,1],[1,3,2,0],[2,4,3,2],[1,2,0,0]],[[0,1,2,1],[1,3,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[3,2,2,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[1,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,2,2,1],[1,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,2,2,1],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,2,2,1],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,2,2,1],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,2,2,1],[1,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,2,2,1],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,2,1],[0,1,1,1]],[[0,1,2,1],[1,3,2,1],[0,3,4,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,1],[0,3,3,0],[1,3,2,1]],[[0,1,2,1],[1,3,2,1],[0,3,3,0],[1,2,3,1]],[[0,1,2,1],[1,3,2,1],[0,3,3,0],[1,2,2,2]],[[0,1,2,1],[1,3,2,1],[0,3,4,1],[1,2,2,0]],[[0,1,2,1],[1,3,2,1],[0,3,3,1],[1,3,2,0]],[[0,1,2,1],[1,3,2,1],[0,3,3,1],[1,2,3,0]],[[1,2,2,2],[2,2,2,1],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,2,2,1],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,2,2,1],[1,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,2,2,1],[1,3,2,1],[0,1,1,1]],[[0,1,2,1],[1,3,2,1],[1,2,4,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,1],[1,2,3,0],[2,2,2,1]],[[0,1,2,1],[1,3,2,1],[1,2,3,0],[1,3,2,1]],[[0,1,2,1],[1,3,2,1],[1,2,3,0],[1,2,3,1]],[[0,1,2,1],[1,3,2,1],[1,2,3,0],[1,2,2,2]],[[0,1,2,1],[1,3,2,1],[1,2,4,1],[1,2,2,0]],[[0,1,2,1],[1,3,2,1],[1,2,3,1],[2,2,2,0]],[[0,1,2,1],[1,3,2,1],[1,2,3,1],[1,3,2,0]],[[0,1,2,1],[1,3,2,1],[1,2,3,1],[1,2,3,0]],[[0,1,2,1],[1,4,2,1],[1,3,2,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,1],[1,4,2,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,1],[1,3,2,0],[2,2,2,1]],[[0,1,2,1],[1,3,2,1],[1,3,2,0],[1,3,2,1]],[[0,1,2,1],[1,3,2,1],[1,3,2,0],[1,2,3,1]],[[0,1,2,1],[1,3,2,1],[1,3,2,0],[1,2,2,2]],[[0,1,2,1],[1,4,2,1],[1,3,2,1],[1,2,2,0]],[[0,1,2,1],[1,3,2,1],[1,4,2,1],[1,2,2,0]],[[0,1,2,1],[1,3,2,1],[1,3,2,1],[2,2,2,0]],[[0,1,2,1],[1,3,2,1],[1,3,2,1],[1,3,2,0]],[[0,1,2,1],[1,3,2,1],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[3,2,2,1],[1,3,2,0],[1,2,0,1]],[[1,2,2,2],[2,2,2,1],[1,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,2,2,1],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,2,2,1],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,2,2,1],[1,3,2,0],[1,2,0,1]],[[0,1,2,1],[1,4,2,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,1],[1,4,3,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,1],[1,3,4,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,1],[1,3,3,0],[1,1,3,1]],[[0,1,2,1],[1,3,2,1],[1,3,3,0],[1,1,2,2]],[[0,1,2,1],[1,4,2,1],[1,3,3,0],[1,2,1,1]],[[0,1,2,1],[1,3,2,1],[1,4,3,0],[1,2,1,1]],[[0,1,2,1],[1,3,2,1],[1,3,4,0],[1,2,1,1]],[[0,1,2,1],[1,3,2,1],[1,3,3,0],[2,2,1,1]],[[0,1,2,1],[1,3,2,1],[1,3,3,0],[1,3,1,1]],[[0,1,2,1],[1,4,2,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,2,1],[1,4,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,2,1],[1,3,4,1],[1,1,1,1]],[[0,1,2,1],[1,4,2,1],[1,3,3,1],[1,1,2,0]],[[0,1,2,1],[1,3,2,1],[1,4,3,1],[1,1,2,0]],[[0,1,2,1],[1,3,2,1],[1,3,4,1],[1,1,2,0]],[[0,1,2,1],[1,3,2,1],[1,3,3,1],[1,1,3,0]],[[0,1,2,1],[1,4,2,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,2,1],[1,4,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,2,1],[1,3,4,1],[1,2,0,1]],[[0,1,2,1],[1,3,2,1],[1,3,3,1],[2,2,0,1]],[[0,1,2,1],[1,3,2,1],[1,3,3,1],[1,3,0,1]],[[0,1,2,1],[1,4,2,1],[1,3,3,1],[1,2,1,0]],[[0,1,2,1],[1,3,2,1],[1,4,3,1],[1,2,1,0]],[[0,1,2,1],[1,3,2,1],[1,3,4,1],[1,2,1,0]],[[0,1,2,1],[1,3,2,1],[1,3,3,1],[2,2,1,0]],[[0,1,2,1],[1,3,2,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[3,2,2,1],[1,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[1,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,2,2,1],[1,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,2,2,1],[1,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,2,2,1],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,2,2,1],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,2,2,1],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,2,2,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,2,2,1],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,2,2,1],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,2,2,1],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,2,2,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,2,2,1],[1,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,2,2,1],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,2,2,1],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,2,2,1],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,2,2,1],[1,3,2,0],[0,1,2,1]],[[0,1,2,1],[1,3,2,1],[3,1,3,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,1],[2,1,4,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,1],[2,1,3,0],[2,2,2,1]],[[0,1,2,1],[1,3,2,1],[2,1,3,0],[1,3,2,1]],[[0,1,2,1],[1,3,2,1],[2,1,3,0],[1,2,3,1]],[[0,1,2,1],[1,3,2,1],[2,1,3,0],[1,2,2,2]],[[0,1,2,1],[1,3,2,1],[3,1,3,1],[1,2,2,0]],[[0,1,2,1],[1,3,2,1],[2,1,4,1],[1,2,2,0]],[[0,1,2,1],[1,3,2,1],[2,1,3,1],[2,2,2,0]],[[0,1,2,1],[1,3,2,1],[2,1,3,1],[1,3,2,0]],[[0,1,2,1],[1,3,2,1],[2,1,3,1],[1,2,3,0]],[[0,1,2,1],[1,3,2,1],[3,2,2,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,1],[2,2,2,0],[2,2,2,1]],[[0,1,2,1],[1,3,2,1],[2,2,2,0],[1,3,2,1]],[[0,1,2,1],[1,3,2,1],[2,2,2,0],[1,2,3,1]],[[0,1,2,1],[1,3,2,1],[2,2,2,0],[1,2,2,2]],[[0,1,2,1],[1,3,2,1],[3,2,2,1],[1,2,2,0]],[[0,1,2,1],[1,3,2,1],[2,2,2,1],[2,2,2,0]],[[0,1,2,1],[1,3,2,1],[2,2,2,1],[1,3,2,0]],[[0,1,2,1],[1,3,2,1],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[3,2,2,1],[1,3,1,2],[1,2,0,0]],[[1,2,2,2],[2,2,2,1],[1,3,1,2],[1,2,0,0]],[[1,2,3,1],[2,2,2,1],[1,3,1,2],[1,2,0,0]],[[0,1,2,1],[1,3,2,1],[2,2,4,0],[0,2,2,1]],[[0,1,2,1],[1,3,2,1],[2,2,3,0],[0,3,2,1]],[[0,1,2,1],[1,3,2,1],[2,2,3,0],[0,2,3,1]],[[0,1,2,1],[1,3,2,1],[2,2,3,0],[0,2,2,2]],[[0,1,2,1],[1,3,2,1],[3,2,3,0],[1,2,1,1]],[[0,1,2,1],[1,3,2,1],[2,2,3,0],[2,2,1,1]],[[0,1,2,1],[1,3,2,1],[2,2,3,0],[1,3,1,1]],[[0,1,2,1],[1,3,2,1],[2,2,4,1],[0,2,2,0]],[[0,1,2,1],[1,3,2,1],[2,2,3,1],[0,3,2,0]],[[0,1,2,1],[1,3,2,1],[2,2,3,1],[0,2,3,0]],[[0,1,2,1],[1,3,2,1],[3,2,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,2,1],[2,2,3,1],[2,2,0,1]],[[0,1,2,1],[1,3,2,1],[2,2,3,1],[1,3,0,1]],[[0,1,2,1],[1,3,2,1],[3,2,3,1],[1,2,1,0]],[[0,1,2,1],[1,3,2,1],[2,2,3,1],[2,2,1,0]],[[0,1,2,1],[1,3,2,1],[2,2,3,1],[1,3,1,0]],[[1,3,2,1],[2,2,2,1],[1,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,2,2,1],[1,3,1,2],[1,2,0,0]],[[1,2,2,1],[3,2,2,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[1,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[1,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[1,3,1,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,1],[1,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,1],[1,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,1],[1,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,1],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,1,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,1],[1,3,1,2],[1,0,2,0]],[[0,1,2,1],[1,3,2,1],[3,3,1,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,1],[2,3,1,0],[2,2,2,1]],[[0,1,2,1],[1,3,2,1],[2,3,1,0],[1,3,2,1]],[[0,1,2,1],[1,3,2,1],[3,3,1,1],[1,2,2,0]],[[0,1,2,1],[1,3,2,1],[2,3,1,1],[2,2,2,0]],[[0,1,2,1],[1,3,2,1],[2,3,1,1],[1,3,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,1],[1,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,1],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,1],[1,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,1],[1,3,1,2],[1,0,1,1]],[[0,1,2,1],[1,4,2,1],[2,3,2,0],[0,2,2,1]],[[0,1,2,1],[1,3,2,1],[3,3,2,0],[0,2,2,1]],[[0,1,2,1],[1,3,2,1],[2,4,2,0],[0,2,2,1]],[[0,1,2,1],[1,3,2,1],[2,3,2,0],[0,3,2,1]],[[0,1,2,1],[1,3,2,1],[2,3,2,0],[0,2,3,1]],[[0,1,2,1],[1,3,2,1],[2,3,2,0],[0,2,2,2]],[[0,1,2,1],[1,4,2,1],[2,3,2,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,1],[3,3,2,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,1],[2,4,2,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,1],[2,3,2,0],[2,1,2,1]],[[0,1,2,1],[1,4,2,1],[2,3,2,1],[0,2,2,0]],[[0,1,2,1],[1,3,2,1],[3,3,2,1],[0,2,2,0]],[[0,1,2,1],[1,3,2,1],[2,4,2,1],[0,2,2,0]],[[0,1,2,1],[1,3,2,1],[2,3,2,1],[0,3,2,0]],[[0,1,2,1],[1,3,2,1],[2,3,2,1],[0,2,3,0]],[[0,1,2,1],[1,4,2,1],[2,3,2,1],[1,1,2,0]],[[0,1,2,1],[1,3,2,1],[3,3,2,1],[1,1,2,0]],[[0,1,2,1],[1,3,2,1],[2,4,2,1],[1,1,2,0]],[[0,1,2,1],[1,3,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[1,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[1,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[1,3,1,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,1],[1,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,1],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,1],[1,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,1],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,1],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,1],[1,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,1],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,1],[1,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,1],[1,3,1,2],[0,1,1,1]],[[0,1,2,1],[1,4,2,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[1,3,2,1],[3,3,3,0],[0,1,2,1]],[[0,1,2,1],[1,3,2,1],[2,4,3,0],[0,1,2,1]],[[0,1,2,1],[1,3,2,1],[2,3,4,0],[0,1,2,1]],[[0,1,2,1],[1,3,2,1],[2,3,3,0],[0,1,3,1]],[[0,1,2,1],[1,3,2,1],[2,3,3,0],[0,1,2,2]],[[0,1,2,1],[1,4,2,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[1,3,2,1],[3,3,3,0],[0,2,1,1]],[[0,1,2,1],[1,3,2,1],[2,4,3,0],[0,2,1,1]],[[0,1,2,1],[1,3,2,1],[2,3,4,0],[0,2,1,1]],[[0,1,2,1],[1,3,2,1],[2,3,3,0],[0,3,1,1]],[[0,1,2,1],[1,4,2,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[1,3,2,1],[3,3,3,0],[1,0,2,1]],[[0,1,2,1],[1,3,2,1],[2,4,3,0],[1,0,2,1]],[[0,1,2,1],[1,3,2,1],[2,3,4,0],[1,0,2,1]],[[0,1,2,1],[1,3,2,1],[2,3,3,0],[2,0,2,1]],[[0,1,2,1],[1,3,2,1],[2,3,3,0],[1,0,3,1]],[[0,1,2,1],[1,3,2,1],[2,3,3,0],[1,0,2,2]],[[0,1,2,1],[1,4,2,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[1,3,2,1],[3,3,3,0],[1,1,1,1]],[[0,1,2,1],[1,3,2,1],[2,4,3,0],[1,1,1,1]],[[0,1,2,1],[1,3,2,1],[2,3,4,0],[1,1,1,1]],[[0,1,2,1],[1,3,2,1],[2,3,3,0],[2,1,1,1]],[[0,1,2,1],[1,4,2,1],[2,3,3,0],[1,2,0,1]],[[0,1,2,1],[1,3,2,1],[3,3,3,0],[1,2,0,1]],[[0,1,2,1],[1,3,2,1],[2,4,3,0],[1,2,0,1]],[[0,1,2,1],[1,3,2,1],[2,3,3,0],[2,2,0,1]],[[0,1,2,1],[1,4,2,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[1,3,2,1],[3,3,3,1],[0,1,1,1]],[[0,1,2,1],[1,3,2,1],[2,4,3,1],[0,1,1,1]],[[0,1,2,1],[1,3,2,1],[2,3,4,1],[0,1,1,1]],[[0,1,2,1],[1,4,2,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[1,3,2,1],[3,3,3,1],[0,1,2,0]],[[0,1,2,1],[1,3,2,1],[2,4,3,1],[0,1,2,0]],[[0,1,2,1],[1,3,2,1],[2,3,4,1],[0,1,2,0]],[[0,1,2,1],[1,3,2,1],[2,3,3,1],[0,1,3,0]],[[0,1,2,1],[1,4,2,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[1,3,2,1],[3,3,3,1],[0,2,0,1]],[[0,1,2,1],[1,3,2,1],[2,4,3,1],[0,2,0,1]],[[0,1,2,1],[1,3,2,1],[2,3,4,1],[0,2,0,1]],[[0,1,2,1],[1,3,2,1],[2,3,3,1],[0,3,0,1]],[[0,1,2,1],[1,4,2,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[1,3,2,1],[3,3,3,1],[0,2,1,0]],[[0,1,2,1],[1,3,2,1],[2,4,3,1],[0,2,1,0]],[[0,1,2,1],[1,3,2,1],[2,3,4,1],[0,2,1,0]],[[0,1,2,1],[1,3,2,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[3,2,2,1],[1,3,1,1],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,1,1],[1,1,2,0]],[[0,1,2,1],[1,4,2,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[1,3,2,1],[3,3,3,1],[1,0,1,1]],[[0,1,2,1],[1,3,2,1],[2,4,3,1],[1,0,1,1]],[[0,1,2,1],[1,3,2,1],[2,3,4,1],[1,0,1,1]],[[0,1,2,1],[1,3,2,1],[2,3,3,1],[2,0,1,1]],[[0,1,2,1],[1,4,2,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[1,3,2,1],[3,3,3,1],[1,0,2,0]],[[0,1,2,1],[1,3,2,1],[2,4,3,1],[1,0,2,0]],[[0,1,2,1],[1,3,2,1],[2,3,4,1],[1,0,2,0]],[[0,1,2,1],[1,3,2,1],[2,3,3,1],[2,0,2,0]],[[0,1,2,1],[1,3,2,1],[2,3,3,1],[1,0,3,0]],[[0,1,2,1],[1,4,2,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[1,3,2,1],[3,3,3,1],[1,1,0,1]],[[0,1,2,1],[1,3,2,1],[2,4,3,1],[1,1,0,1]],[[0,1,2,1],[1,3,2,1],[2,3,4,1],[1,1,0,1]],[[0,1,2,1],[1,3,2,1],[2,3,3,1],[2,1,0,1]],[[0,1,2,1],[1,4,2,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[1,3,2,1],[3,3,3,1],[1,1,1,0]],[[0,1,2,1],[1,3,2,1],[2,4,3,1],[1,1,1,0]],[[0,1,2,1],[1,3,2,1],[2,3,4,1],[1,1,1,0]],[[0,1,2,1],[1,3,2,1],[2,3,3,1],[2,1,1,0]],[[1,2,3,1],[2,2,2,1],[1,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,1,1],[1,1,2,0]],[[0,1,2,1],[1,4,2,1],[2,3,3,1],[1,2,0,0]],[[0,1,2,1],[1,3,2,1],[3,3,3,1],[1,2,0,0]],[[0,1,2,1],[1,3,2,1],[2,4,3,1],[1,2,0,0]],[[0,1,2,1],[1,3,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[3,2,2,1],[1,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,2,2,1],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,1,0],[1,1,2,1]],[[1,2,2,2],[2,2,2,1],[1,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,2,2,1],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,2,2,1],[1,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,2,2,1],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,2,2,1],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,2,2,1],[1,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,2,2,1],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[3,2,2,1],[1,3,0,2],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,2,2,1],[1,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,0,2],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[1,3,0,2],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[1,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[1,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[3,2,2,1],[1,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,2,2,1],[1,3,0,2],[1,0,2,1]],[[1,2,3,1],[2,2,2,1],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,2,2,1],[1,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,2,2,1],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[3,2,2,1],[1,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,2,2,1],[1,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,1],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,2,2,1],[1,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,1],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,2,2,1],[1,3,0,2],[0,2,1,1]],[[1,2,2,2],[2,2,2,1],[1,3,0,2],[0,2,1,1]],[[1,2,3,1],[2,2,2,1],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,2,2,1],[1,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,2,2,1],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[3,2,2,1],[1,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,2,2,1],[1,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,2,2,1],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,2,2,1],[1,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,2,2,1],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[3,2,2,1],[1,3,0,1],[1,1,2,1]],[[1,2,2,2],[2,2,2,1],[1,3,0,1],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[1,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[1,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,2,2,1],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[3,2,2,1],[1,3,0,1],[0,2,2,1]],[[1,2,2,2],[2,2,2,1],[1,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,2,2,1],[1,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,2,2,1],[1,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,2,2,1],[1,3,0,1],[0,2,2,1]],[[1,2,2,1],[3,2,2,1],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,2,2,1],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,2,2,1],[1,2,3,2],[1,0,0,1]],[[1,3,2,1],[2,2,2,1],[1,2,3,2],[1,0,0,1]],[[2,2,2,1],[2,2,2,1],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[3,2,2,1],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,2,2,1],[1,2,3,2],[0,1,0,1]],[[1,2,3,1],[2,2,2,1],[1,2,3,2],[0,1,0,1]],[[1,3,2,1],[2,2,2,1],[1,2,3,2],[0,1,0,1]],[[2,2,2,1],[2,2,2,1],[1,2,3,2],[0,1,0,1]],[[0,1,3,1],[1,3,2,2],[1,0,2,2],[1,2,2,1]],[[0,1,2,2],[1,3,2,2],[1,0,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,3],[1,0,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[1,0,2,3],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[1,0,2,2],[1,2,3,1]],[[0,1,2,1],[1,3,2,2],[1,0,2,2],[1,2,2,2]],[[0,1,3,1],[1,3,2,2],[1,0,3,2],[1,1,2,1]],[[0,1,2,2],[1,3,2,2],[1,0,3,2],[1,1,2,1]],[[0,1,2,1],[1,3,2,3],[1,0,3,2],[1,1,2,1]],[[0,1,2,1],[1,3,2,2],[1,0,3,3],[1,1,2,1]],[[0,1,2,1],[1,3,2,2],[1,0,3,2],[1,1,2,2]],[[0,1,3,1],[1,3,2,2],[1,0,3,2],[1,2,1,1]],[[0,1,2,2],[1,3,2,2],[1,0,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,2,3],[1,0,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,2,2],[1,0,3,3],[1,2,1,1]],[[0,1,2,1],[1,3,2,2],[1,0,3,2],[1,2,1,2]],[[0,1,3,1],[1,3,2,2],[1,0,3,2],[1,2,2,0]],[[0,1,2,2],[1,3,2,2],[1,0,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,3],[1,0,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,2],[1,0,3,3],[1,2,2,0]],[[0,1,3,1],[1,3,2,2],[1,1,1,2],[1,2,2,1]],[[0,1,2,2],[1,3,2,2],[1,1,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,3],[1,1,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[1,1,1,3],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[1,1,1,2],[2,2,2,1]],[[0,1,2,1],[1,3,2,2],[1,1,1,2],[1,3,2,1]],[[0,1,2,1],[1,3,2,2],[1,1,1,2],[1,2,3,1]],[[0,1,2,1],[1,3,2,2],[1,1,1,2],[1,2,2,2]],[[0,1,3,1],[1,3,2,2],[1,1,2,2],[1,2,1,1]],[[0,1,2,2],[1,3,2,2],[1,1,2,2],[1,2,1,1]],[[0,1,2,1],[1,3,2,3],[1,1,2,2],[1,2,1,1]],[[0,1,2,1],[1,3,2,2],[1,1,2,3],[1,2,1,1]],[[0,1,2,1],[1,3,2,2],[1,1,2,2],[1,2,1,2]],[[0,1,3,1],[1,3,2,2],[1,1,2,2],[1,2,2,0]],[[0,1,2,2],[1,3,2,2],[1,1,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,3],[1,1,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,2],[1,1,2,3],[1,2,2,0]],[[0,1,3,1],[1,3,2,2],[1,1,3,0],[1,2,2,1]],[[0,1,2,2],[1,3,2,2],[1,1,3,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,3],[1,1,3,0],[1,2,2,1]],[[0,1,3,1],[1,3,2,2],[1,1,3,1],[1,2,1,1]],[[0,1,2,2],[1,3,2,2],[1,1,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,2,3],[1,1,3,1],[1,2,1,1]],[[0,1,3,1],[1,3,2,2],[1,1,3,1],[1,2,2,0]],[[0,1,2,2],[1,3,2,2],[1,1,3,1],[1,2,2,0]],[[0,1,2,1],[1,3,2,3],[1,1,3,1],[1,2,2,0]],[[0,1,3,1],[1,3,2,2],[1,1,3,2],[1,0,2,1]],[[0,1,2,2],[1,3,2,2],[1,1,3,2],[1,0,2,1]],[[0,1,2,1],[1,3,2,3],[1,1,3,2],[1,0,2,1]],[[0,1,2,1],[1,3,2,2],[1,1,3,3],[1,0,2,1]],[[0,1,2,1],[1,3,2,2],[1,1,3,2],[1,0,2,2]],[[0,1,3,1],[1,3,2,2],[1,1,3,2],[1,1,1,1]],[[0,1,2,2],[1,3,2,2],[1,1,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,2,3],[1,1,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,2,2],[1,1,3,3],[1,1,1,1]],[[0,1,2,1],[1,3,2,2],[1,1,3,2],[1,1,1,2]],[[0,1,3,1],[1,3,2,2],[1,1,3,2],[1,1,2,0]],[[0,1,2,2],[1,3,2,2],[1,1,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,3],[1,1,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,2],[1,1,3,3],[1,1,2,0]],[[0,1,3,1],[1,3,2,2],[1,2,0,2],[1,2,2,1]],[[0,1,2,2],[1,3,2,2],[1,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,3],[1,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[1,2,0,3],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[1,2,0,2],[2,2,2,1]],[[0,1,2,1],[1,3,2,2],[1,2,0,2],[1,3,2,1]],[[0,1,2,1],[1,3,2,2],[1,2,0,2],[1,2,3,1]],[[0,1,2,1],[1,3,2,2],[1,2,0,2],[1,2,2,2]],[[0,1,3,1],[1,3,2,2],[1,2,1,2],[1,1,2,1]],[[0,1,2,2],[1,3,2,2],[1,2,1,2],[1,1,2,1]],[[0,1,2,1],[1,3,2,3],[1,2,1,2],[1,1,2,1]],[[0,1,2,1],[1,3,2,2],[1,2,1,3],[1,1,2,1]],[[0,1,2,1],[1,3,2,2],[1,2,1,2],[1,1,3,1]],[[0,1,2,1],[1,3,2,2],[1,2,1,2],[1,1,2,2]],[[0,1,3,1],[1,3,2,2],[1,2,2,2],[1,0,2,1]],[[0,1,2,2],[1,3,2,2],[1,2,2,2],[1,0,2,1]],[[0,1,2,1],[1,3,2,3],[1,2,2,2],[1,0,2,1]],[[0,1,2,1],[1,3,2,2],[1,2,2,3],[1,0,2,1]],[[0,1,2,1],[1,3,2,2],[1,2,2,2],[1,0,2,2]],[[0,1,3,1],[1,3,2,2],[1,2,2,2],[1,1,1,1]],[[0,1,2,2],[1,3,2,2],[1,2,2,2],[1,1,1,1]],[[0,1,2,1],[1,3,2,3],[1,2,2,2],[1,1,1,1]],[[0,1,2,1],[1,3,2,2],[1,2,2,3],[1,1,1,1]],[[0,1,2,1],[1,3,2,2],[1,2,2,2],[1,1,1,2]],[[0,1,3,1],[1,3,2,2],[1,2,2,2],[1,1,2,0]],[[0,1,2,2],[1,3,2,2],[1,2,2,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,3],[1,2,2,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,2],[1,2,2,3],[1,1,2,0]],[[0,1,3,1],[1,3,2,2],[1,2,2,2],[1,2,0,1]],[[0,1,2,2],[1,3,2,2],[1,2,2,2],[1,2,0,1]],[[0,1,2,1],[1,3,2,3],[1,2,2,2],[1,2,0,1]],[[0,1,2,1],[1,3,2,2],[1,2,2,3],[1,2,0,1]],[[0,1,2,1],[1,3,2,2],[1,2,2,2],[1,2,0,2]],[[0,1,3,1],[1,3,2,2],[1,2,2,2],[1,2,1,0]],[[0,1,2,2],[1,3,2,2],[1,2,2,2],[1,2,1,0]],[[0,1,2,1],[1,3,2,3],[1,2,2,2],[1,2,1,0]],[[0,1,2,1],[1,3,2,2],[1,2,2,3],[1,2,1,0]],[[0,1,3,1],[1,3,2,2],[1,2,3,0],[1,1,2,1]],[[0,1,2,2],[1,3,2,2],[1,2,3,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,3],[1,2,3,0],[1,1,2,1]],[[0,1,3,1],[1,3,2,2],[1,2,3,0],[1,2,1,1]],[[0,1,2,2],[1,3,2,2],[1,2,3,0],[1,2,1,1]],[[0,1,2,1],[1,3,2,3],[1,2,3,0],[1,2,1,1]],[[0,1,3,1],[1,3,2,2],[1,2,3,1],[1,0,2,1]],[[0,1,2,2],[1,3,2,2],[1,2,3,1],[1,0,2,1]],[[0,1,2,1],[1,3,2,3],[1,2,3,1],[1,0,2,1]],[[0,1,3,1],[1,3,2,2],[1,2,3,1],[1,1,1,1]],[[0,1,2,2],[1,3,2,2],[1,2,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,2,3],[1,2,3,1],[1,1,1,1]],[[0,1,3,1],[1,3,2,2],[1,2,3,1],[1,1,2,0]],[[0,1,2,2],[1,3,2,2],[1,2,3,1],[1,1,2,0]],[[0,1,2,1],[1,3,2,3],[1,2,3,1],[1,1,2,0]],[[0,1,3,1],[1,3,2,2],[1,2,3,1],[1,2,0,1]],[[0,1,2,2],[1,3,2,2],[1,2,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,2,3],[1,2,3,1],[1,2,0,1]],[[0,1,3,1],[1,3,2,2],[1,2,3,1],[1,2,1,0]],[[0,1,2,2],[1,3,2,2],[1,2,3,1],[1,2,1,0]],[[0,1,2,1],[1,3,2,3],[1,2,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,2,1],[1,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[1,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,2,1],[1,2,3,1],[1,1,0,1]],[[0,1,3,1],[1,3,2,2],[1,2,3,2],[1,1,0,1]],[[0,1,2,2],[1,3,2,2],[1,2,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,2,3],[1,2,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,2,2],[1,2,3,3],[1,1,0,1]],[[1,2,3,1],[2,2,2,1],[1,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,2,1],[1,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,2,1],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[3,2,2,1],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,2,2,1],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,2,1],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,2,1],[1,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,2,1],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,2,1],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,2,2,1],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,2,1],[1,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,2,1],[1,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,2,1],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,2,1],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[1,2,3,1],[0,2,1,0]],[[0,1,3,1],[1,3,2,2],[1,3,0,1],[1,2,2,1]],[[0,1,2,2],[1,3,2,2],[1,3,0,1],[1,2,2,1]],[[0,1,2,1],[1,3,2,3],[1,3,0,1],[1,2,2,1]],[[0,1,3,1],[1,3,2,2],[1,3,0,2],[1,1,2,1]],[[0,1,2,2],[1,3,2,2],[1,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,2,3],[1,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,2,2],[1,3,0,3],[1,1,2,1]],[[0,1,2,1],[1,3,2,2],[1,3,0,2],[1,1,3,1]],[[0,1,2,1],[1,3,2,2],[1,3,0,2],[1,1,2,2]],[[0,1,3,1],[1,3,2,2],[1,3,0,2],[1,2,1,1]],[[0,1,2,2],[1,3,2,2],[1,3,0,2],[1,2,1,1]],[[0,1,2,1],[1,3,2,3],[1,3,0,2],[1,2,1,1]],[[0,1,2,1],[1,3,2,2],[1,3,0,3],[1,2,1,1]],[[0,1,2,1],[1,3,2,2],[1,3,0,2],[1,2,1,2]],[[0,1,3,1],[1,3,2,2],[1,3,0,2],[1,2,2,0]],[[0,1,2,2],[1,3,2,2],[1,3,0,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,3],[1,3,0,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,2],[1,3,0,3],[1,2,2,0]],[[0,1,3,1],[1,3,2,2],[1,3,1,0],[1,2,2,1]],[[0,1,2,2],[1,3,2,2],[1,3,1,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,3],[1,3,1,0],[1,2,2,1]],[[0,1,3,1],[1,3,2,2],[1,3,1,1],[1,2,2,0]],[[0,1,2,2],[1,3,2,2],[1,3,1,1],[1,2,2,0]],[[0,1,2,1],[1,3,2,3],[1,3,1,1],[1,2,2,0]],[[0,1,3,1],[1,3,2,2],[1,3,1,2],[1,1,1,1]],[[0,1,2,2],[1,3,2,2],[1,3,1,2],[1,1,1,1]],[[0,1,2,1],[1,3,2,3],[1,3,1,2],[1,1,1,1]],[[0,1,2,1],[1,3,2,2],[1,3,1,3],[1,1,1,1]],[[0,1,2,1],[1,3,2,2],[1,3,1,2],[1,1,1,2]],[[0,1,3,1],[1,3,2,2],[1,3,1,2],[1,1,2,0]],[[0,1,2,2],[1,3,2,2],[1,3,1,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,3],[1,3,1,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,2],[1,3,1,3],[1,1,2,0]],[[0,1,3,1],[1,3,2,2],[1,3,1,2],[1,2,0,1]],[[0,1,2,2],[1,3,2,2],[1,3,1,2],[1,2,0,1]],[[0,1,2,1],[1,3,2,3],[1,3,1,2],[1,2,0,1]],[[0,1,2,1],[1,3,2,2],[1,3,1,3],[1,2,0,1]],[[0,1,2,1],[1,3,2,2],[1,3,1,2],[1,2,0,2]],[[0,1,3,1],[1,3,2,2],[1,3,1,2],[1,2,1,0]],[[0,1,2,2],[1,3,2,2],[1,3,1,2],[1,2,1,0]],[[0,1,2,1],[1,3,2,3],[1,3,1,2],[1,2,1,0]],[[0,1,2,1],[1,3,2,2],[1,3,1,3],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[1,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[1,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,2,1],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,2,1],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,2,1],[1,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,2,1],[1,2,3,1],[0,2,0,1]],[[0,1,3,1],[1,3,2,2],[1,3,2,0],[1,1,2,1]],[[0,1,2,2],[1,3,2,2],[1,3,2,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,3],[1,3,2,0],[1,1,2,1]],[[0,1,3,1],[1,3,2,2],[1,3,2,0],[1,2,1,1]],[[0,1,2,2],[1,3,2,2],[1,3,2,0],[1,2,1,1]],[[0,1,2,1],[1,3,2,3],[1,3,2,0],[1,2,1,1]],[[0,1,3,1],[1,3,2,2],[1,3,2,1],[1,1,1,1]],[[0,1,2,2],[1,3,2,2],[1,3,2,1],[1,1,1,1]],[[0,1,2,1],[1,3,2,3],[1,3,2,1],[1,1,1,1]],[[0,1,3,1],[1,3,2,2],[1,3,2,1],[1,1,2,0]],[[0,1,2,2],[1,3,2,2],[1,3,2,1],[1,1,2,0]],[[0,1,2,1],[1,3,2,3],[1,3,2,1],[1,1,2,0]],[[0,1,3,1],[1,3,2,2],[1,3,2,1],[1,2,0,1]],[[0,1,2,2],[1,3,2,2],[1,3,2,1],[1,2,0,1]],[[0,1,2,1],[1,3,2,3],[1,3,2,1],[1,2,0,1]],[[0,1,3,1],[1,3,2,2],[1,3,2,1],[1,2,1,0]],[[0,1,2,2],[1,3,2,2],[1,3,2,1],[1,2,1,0]],[[0,1,2,1],[1,3,2,3],[1,3,2,1],[1,2,1,0]],[[1,2,2,1],[3,2,2,1],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,2,1],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,2,1],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,2,1],[1,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,2,1],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,2,1],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,2,1],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,2,1],[1,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,2,1],[1,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,2,1],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,2,1],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,2,2,1],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[2,2,2,1],[1,2,3,1],[0,0,2,1]],[[1,3,2,1],[2,2,2,1],[1,2,3,1],[0,0,2,1]],[[2,2,2,1],[2,2,2,1],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[3,2,2,1],[1,2,3,0],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[1,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[1,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[3,2,2,1],[1,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,2,1],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,2,1],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,2,1],[1,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,2,1],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[3,2,2,1],[1,2,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,2,1],[1,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,2,1],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,2,1],[1,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,2,1],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,2,1],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,2,1],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,2,1],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,2,1],[1,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,2,1],[1,2,3,0],[0,1,2,1]],[[0,1,3,1],[1,3,2,2],[1,3,3,1],[1,2,0,0]],[[0,1,2,2],[1,3,2,2],[1,3,3,1],[1,2,0,0]],[[0,1,2,1],[1,3,2,3],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,2,2,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,1],[1,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,1],[1,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[1,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,1],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,1],[1,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,1],[1,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,1],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,1],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,1],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,1],[1,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,1],[1,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,1],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[3,2,2,1],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,1],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,1],[1,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,1],[1,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,1],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[3,2,2,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[1,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[1,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,1],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,1],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,1],[1,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,1],[1,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,1],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,1],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,1],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,1],[1,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,1],[1,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,1],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[3,2,2,1],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,1],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,1],[1,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,1],[1,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,1],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,2,1],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,2,2,1],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,2,2,1],[1,2,2,2],[0,0,2,1]],[[1,3,2,1],[2,2,2,1],[1,2,2,2],[0,0,2,1]],[[2,2,2,1],[2,2,2,1],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[3,2,2,1],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[2,2,2,1],[1,2,1,2],[1,0,2,1]],[[1,2,3,1],[2,2,2,1],[1,2,1,2],[1,0,2,1]],[[1,3,2,1],[2,2,2,1],[1,2,1,2],[1,0,2,1]],[[2,2,2,1],[2,2,2,1],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[3,2,2,1],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,2,2,1],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,2,2,1],[1,2,1,2],[0,1,2,1]],[[1,3,2,1],[2,2,2,1],[1,2,1,2],[0,1,2,1]],[[2,2,2,1],[2,2,2,1],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[3,2,2,1],[1,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,2,1],[1,2,0,2],[0,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,2],[1,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,3],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[3,0,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,0,1,3],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,0,1,2],[2,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,0,1,2],[1,3,2,1]],[[0,1,2,1],[1,3,2,2],[2,0,1,2],[1,2,3,1]],[[0,1,2,1],[1,3,2,2],[2,0,1,2],[1,2,2,2]],[[0,1,3,1],[1,3,2,2],[2,0,2,2],[0,2,2,1]],[[0,1,2,2],[1,3,2,2],[2,0,2,2],[0,2,2,1]],[[0,1,2,1],[1,3,2,3],[2,0,2,2],[0,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,0,2,3],[0,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,0,2,2],[0,2,3,1]],[[0,1,2,1],[1,3,2,2],[2,0,2,2],[0,2,2,2]],[[0,1,3,1],[1,3,2,2],[2,0,2,2],[1,2,1,1]],[[0,1,2,2],[1,3,2,2],[2,0,2,2],[1,2,1,1]],[[0,1,2,1],[1,3,2,3],[2,0,2,2],[1,2,1,1]],[[0,1,2,1],[1,3,2,2],[2,0,2,3],[1,2,1,1]],[[0,1,2,1],[1,3,2,2],[2,0,2,2],[1,2,1,2]],[[0,1,3,1],[1,3,2,2],[2,0,2,2],[1,2,2,0]],[[0,1,2,2],[1,3,2,2],[2,0,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,3],[2,0,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,2,2],[2,0,2,3],[1,2,2,0]],[[0,1,3,1],[1,3,2,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,2],[1,3,2,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,1],[1,3,2,3],[2,0,3,0],[1,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,0,3,1],[1,2,1,1]],[[0,1,2,2],[1,3,2,2],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,2,3],[2,0,3,1],[1,2,1,1]],[[0,1,3,1],[1,3,2,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,2],[1,3,2,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,1],[1,3,2,3],[2,0,3,1],[1,2,2,0]],[[0,1,3,1],[1,3,2,2],[2,0,3,2],[0,1,2,1]],[[0,1,2,2],[1,3,2,2],[2,0,3,2],[0,1,2,1]],[[0,1,2,1],[1,3,2,3],[2,0,3,2],[0,1,2,1]],[[0,1,2,1],[1,3,2,2],[2,0,3,3],[0,1,2,1]],[[0,1,2,1],[1,3,2,2],[2,0,3,2],[0,1,2,2]],[[0,1,3,1],[1,3,2,2],[2,0,3,2],[0,2,1,1]],[[0,1,2,2],[1,3,2,2],[2,0,3,2],[0,2,1,1]],[[0,1,2,1],[1,3,2,3],[2,0,3,2],[0,2,1,1]],[[0,1,2,1],[1,3,2,2],[2,0,3,3],[0,2,1,1]],[[0,1,2,1],[1,3,2,2],[2,0,3,2],[0,2,1,2]],[[0,1,3,1],[1,3,2,2],[2,0,3,2],[0,2,2,0]],[[0,1,2,2],[1,3,2,2],[2,0,3,2],[0,2,2,0]],[[0,1,2,1],[1,3,2,3],[2,0,3,2],[0,2,2,0]],[[0,1,2,1],[1,3,2,2],[2,0,3,3],[0,2,2,0]],[[1,2,3,1],[2,2,2,1],[1,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,2,1],[1,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,2,1],[1,2,0,2],[0,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,2],[1,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,3],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[3,1,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,1,0,3],[1,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,1,0,2],[2,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,1,0,2],[1,3,2,1]],[[0,1,2,1],[1,3,2,2],[2,1,0,2],[1,2,3,1]],[[0,1,2,1],[1,3,2,2],[2,1,0,2],[1,2,2,2]],[[0,1,3,1],[1,3,2,2],[2,1,1,2],[0,2,2,1]],[[0,1,2,2],[1,3,2,2],[2,1,1,2],[0,2,2,1]],[[0,1,2,1],[1,3,2,3],[2,1,1,2],[0,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,1,1,3],[0,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,1,1,2],[0,3,2,1]],[[0,1,2,1],[1,3,2,2],[2,1,1,2],[0,2,3,1]],[[0,1,2,1],[1,3,2,2],[2,1,1,2],[0,2,2,2]],[[0,1,3,1],[1,3,2,2],[2,1,2,2],[0,2,1,1]],[[0,1,2,2],[1,3,2,2],[2,1,2,2],[0,2,1,1]],[[0,1,2,1],[1,3,2,3],[2,1,2,2],[0,2,1,1]],[[0,1,2,1],[1,3,2,2],[2,1,2,3],[0,2,1,1]],[[0,1,2,1],[1,3,2,2],[2,1,2,2],[0,2,1,2]],[[0,1,3,1],[1,3,2,2],[2,1,2,2],[0,2,2,0]],[[0,1,2,2],[1,3,2,2],[2,1,2,2],[0,2,2,0]],[[0,1,2,1],[1,3,2,3],[2,1,2,2],[0,2,2,0]],[[0,1,2,1],[1,3,2,2],[2,1,2,3],[0,2,2,0]],[[0,1,3,1],[1,3,2,2],[2,1,3,0],[0,2,2,1]],[[0,1,2,2],[1,3,2,2],[2,1,3,0],[0,2,2,1]],[[0,1,2,1],[1,3,2,3],[2,1,3,0],[0,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,1,3,1],[0,2,1,1]],[[0,1,2,2],[1,3,2,2],[2,1,3,1],[0,2,1,1]],[[0,1,2,1],[1,3,2,3],[2,1,3,1],[0,2,1,1]],[[0,1,3,1],[1,3,2,2],[2,1,3,1],[0,2,2,0]],[[0,1,2,2],[1,3,2,2],[2,1,3,1],[0,2,2,0]],[[0,1,2,1],[1,3,2,3],[2,1,3,1],[0,2,2,0]],[[0,1,3,1],[1,3,2,2],[2,1,3,2],[0,0,2,1]],[[0,1,2,2],[1,3,2,2],[2,1,3,2],[0,0,2,1]],[[0,1,2,1],[1,3,2,3],[2,1,3,2],[0,0,2,1]],[[0,1,2,1],[1,3,2,2],[2,1,3,3],[0,0,2,1]],[[0,1,2,1],[1,3,2,2],[2,1,3,2],[0,0,2,2]],[[0,1,3,1],[1,3,2,2],[2,1,3,2],[0,1,1,1]],[[0,1,2,2],[1,3,2,2],[2,1,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,2,3],[2,1,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,2,2],[2,1,3,3],[0,1,1,1]],[[0,1,2,1],[1,3,2,2],[2,1,3,2],[0,1,1,2]],[[0,1,3,1],[1,3,2,2],[2,1,3,2],[0,1,2,0]],[[0,1,2,2],[1,3,2,2],[2,1,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,2,3],[2,1,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,2,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[3,2,2,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,2,2,1],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,2,2,1],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,2,2,1],[1,1,3,1],[0,2,2,0]],[[2,2,2,1],[2,2,2,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[3,2,2,1],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,2,1],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,2,1],[1,1,3,1],[0,2,1,1]],[[0,1,3,1],[1,3,2,2],[2,1,3,2],[1,0,1,1]],[[0,1,2,2],[1,3,2,2],[2,1,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,2,3],[2,1,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,2,2],[2,1,3,3],[1,0,1,1]],[[0,1,2,1],[1,3,2,2],[2,1,3,2],[1,0,1,2]],[[0,1,3,1],[1,3,2,2],[2,1,3,2],[1,0,2,0]],[[0,1,2,2],[1,3,2,2],[2,1,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,2,3],[2,1,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,2,2],[2,1,3,3],[1,0,2,0]],[[1,3,2,1],[2,2,2,1],[1,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,2,1],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[3,2,2,1],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,2,2,1],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,2,2,1],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,2,2,1],[1,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,2,2,1],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[3,2,2,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,2,2,1],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,1],[1,1,2,2],[0,2,2,0]],[[0,1,3,1],[1,3,2,2],[2,2,0,2],[0,2,2,1]],[[0,1,2,2],[1,3,2,2],[2,2,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,2,3],[2,2,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,2,0,3],[0,2,2,1]],[[0,1,2,1],[1,3,2,2],[2,2,0,2],[0,3,2,1]],[[0,1,2,1],[1,3,2,2],[2,2,0,2],[0,2,3,1]],[[0,1,2,1],[1,3,2,2],[2,2,0,2],[0,2,2,2]],[[0,1,3,1],[1,3,2,2],[2,2,1,2],[0,1,2,1]],[[0,1,2,2],[1,3,2,2],[2,2,1,2],[0,1,2,1]],[[0,1,2,1],[1,3,2,3],[2,2,1,2],[0,1,2,1]],[[0,1,2,1],[1,3,2,2],[2,2,1,3],[0,1,2,1]],[[0,1,2,1],[1,3,2,2],[2,2,1,2],[0,1,3,1]],[[0,1,2,1],[1,3,2,2],[2,2,1,2],[0,1,2,2]],[[0,1,3,1],[1,3,2,2],[2,2,1,2],[1,0,2,1]],[[0,1,2,2],[1,3,2,2],[2,2,1,2],[1,0,2,1]],[[0,1,2,1],[1,3,2,3],[2,2,1,2],[1,0,2,1]],[[0,1,2,1],[1,3,2,2],[2,2,1,3],[1,0,2,1]],[[0,1,2,1],[1,3,2,2],[2,2,1,2],[1,0,3,1]],[[0,1,2,1],[1,3,2,2],[2,2,1,2],[1,0,2,2]],[[1,3,2,1],[2,2,2,1],[1,1,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[3,2,2,1],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,2,2,1],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[2,2,2,1],[1,1,2,2],[0,2,1,1]],[[1,3,2,1],[2,2,2,1],[1,1,2,2],[0,2,1,1]],[[2,2,2,1],[2,2,2,1],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[3,2,2,1],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,2,2,1],[1,1,1,2],[0,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,2,2,2],[0,0,2,1]],[[0,1,2,2],[1,3,2,2],[2,2,2,2],[0,0,2,1]],[[0,1,2,1],[1,3,2,3],[2,2,2,2],[0,0,2,1]],[[0,1,2,1],[1,3,2,2],[2,2,2,3],[0,0,2,1]],[[0,1,2,1],[1,3,2,2],[2,2,2,2],[0,0,2,2]],[[0,1,3,1],[1,3,2,2],[2,2,2,2],[0,1,1,1]],[[0,1,2,2],[1,3,2,2],[2,2,2,2],[0,1,1,1]],[[0,1,2,1],[1,3,2,3],[2,2,2,2],[0,1,1,1]],[[0,1,2,1],[1,3,2,2],[2,2,2,3],[0,1,1,1]],[[0,1,2,1],[1,3,2,2],[2,2,2,2],[0,1,1,2]],[[0,1,3,1],[1,3,2,2],[2,2,2,2],[0,1,2,0]],[[0,1,2,2],[1,3,2,2],[2,2,2,2],[0,1,2,0]],[[0,1,2,1],[1,3,2,3],[2,2,2,2],[0,1,2,0]],[[0,1,2,1],[1,3,2,2],[2,2,2,3],[0,1,2,0]],[[0,1,3,1],[1,3,2,2],[2,2,2,2],[0,2,0,1]],[[0,1,2,2],[1,3,2,2],[2,2,2,2],[0,2,0,1]],[[0,1,2,1],[1,3,2,3],[2,2,2,2],[0,2,0,1]],[[0,1,2,1],[1,3,2,2],[2,2,2,3],[0,2,0,1]],[[0,1,2,1],[1,3,2,2],[2,2,2,2],[0,2,0,2]],[[0,1,3,1],[1,3,2,2],[2,2,2,2],[0,2,1,0]],[[0,1,2,2],[1,3,2,2],[2,2,2,2],[0,2,1,0]],[[0,1,2,1],[1,3,2,3],[2,2,2,2],[0,2,1,0]],[[0,1,2,1],[1,3,2,2],[2,2,2,3],[0,2,1,0]],[[1,2,3,1],[2,2,2,1],[1,1,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,2,1],[1,1,1,2],[0,2,2,1]],[[2,2,2,1],[2,2,2,1],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[3,2,2,1],[1,1,0,2],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[1,1,0,2],[1,2,2,1]],[[1,2,3,1],[2,2,2,1],[1,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[1,1,0,2],[1,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,2,2,2],[1,0,1,1]],[[0,1,2,2],[1,3,2,2],[2,2,2,2],[1,0,1,1]],[[0,1,2,1],[1,3,2,3],[2,2,2,2],[1,0,1,1]],[[0,1,2,1],[1,3,2,2],[2,2,2,3],[1,0,1,1]],[[0,1,2,1],[1,3,2,2],[2,2,2,2],[1,0,1,2]],[[0,1,3,1],[1,3,2,2],[2,2,2,2],[1,0,2,0]],[[0,1,2,2],[1,3,2,2],[2,2,2,2],[1,0,2,0]],[[0,1,2,1],[1,3,2,3],[2,2,2,2],[1,0,2,0]],[[0,1,2,1],[1,3,2,2],[2,2,2,3],[1,0,2,0]],[[0,1,3,1],[1,3,2,2],[2,2,2,2],[1,1,0,1]],[[0,1,2,2],[1,3,2,2],[2,2,2,2],[1,1,0,1]],[[0,1,2,1],[1,3,2,3],[2,2,2,2],[1,1,0,1]],[[0,1,2,1],[1,3,2,2],[2,2,2,3],[1,1,0,1]],[[0,1,2,1],[1,3,2,2],[2,2,2,2],[1,1,0,2]],[[0,1,3,1],[1,3,2,2],[2,2,2,2],[1,1,1,0]],[[0,1,2,2],[1,3,2,2],[2,2,2,2],[1,1,1,0]],[[0,1,2,1],[1,3,2,3],[2,2,2,2],[1,1,1,0]],[[0,1,2,1],[1,3,2,2],[2,2,2,3],[1,1,1,0]],[[2,2,2,1],[2,2,2,1],[1,1,0,2],[1,2,2,1]],[[1,2,2,1],[3,2,2,1],[1,0,3,1],[1,2,2,0]],[[1,2,2,2],[2,2,2,1],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[1,0,3,1],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[1,0,3,1],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[3,2,2,1],[1,0,3,1],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[1,0,3,1],[1,2,1,1]],[[1,2,3,1],[2,2,2,1],[1,0,3,1],[1,2,1,1]],[[1,3,2,1],[2,2,2,1],[1,0,3,1],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[1,0,3,0],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[1,0,3,0],[1,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,2,3,0],[0,1,2,1]],[[0,1,2,2],[1,3,2,2],[2,2,3,0],[0,1,2,1]],[[0,1,2,1],[1,3,2,3],[2,2,3,0],[0,1,2,1]],[[0,1,3,1],[1,3,2,2],[2,2,3,0],[0,2,1,1]],[[0,1,2,2],[1,3,2,2],[2,2,3,0],[0,2,1,1]],[[0,1,2,1],[1,3,2,3],[2,2,3,0],[0,2,1,1]],[[0,1,3,1],[1,3,2,2],[2,2,3,0],[1,0,2,1]],[[0,1,2,2],[1,3,2,2],[2,2,3,0],[1,0,2,1]],[[0,1,2,1],[1,3,2,3],[2,2,3,0],[1,0,2,1]],[[0,1,3,1],[1,3,2,2],[2,2,3,0],[1,1,1,1]],[[0,1,2,2],[1,3,2,2],[2,2,3,0],[1,1,1,1]],[[0,1,2,1],[1,3,2,3],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[1,0,3,0],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[1,0,3,0],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[3,2,2,1],[1,0,2,2],[1,2,2,0]],[[0,1,3,1],[1,3,2,2],[2,2,3,1],[0,0,2,1]],[[0,1,2,2],[1,3,2,2],[2,2,3,1],[0,0,2,1]],[[0,1,2,1],[1,3,2,3],[2,2,3,1],[0,0,2,1]],[[0,1,3,1],[1,3,2,2],[2,2,3,1],[0,1,1,1]],[[0,1,2,2],[1,3,2,2],[2,2,3,1],[0,1,1,1]],[[0,1,2,1],[1,3,2,3],[2,2,3,1],[0,1,1,1]],[[0,1,3,1],[1,3,2,2],[2,2,3,1],[0,1,2,0]],[[0,1,2,2],[1,3,2,2],[2,2,3,1],[0,1,2,0]],[[0,1,2,1],[1,3,2,3],[2,2,3,1],[0,1,2,0]],[[0,1,3,1],[1,3,2,2],[2,2,3,1],[0,2,0,1]],[[0,1,2,2],[1,3,2,2],[2,2,3,1],[0,2,0,1]],[[0,1,2,1],[1,3,2,3],[2,2,3,1],[0,2,0,1]],[[0,1,3,1],[1,3,2,2],[2,2,3,1],[0,2,1,0]],[[0,1,2,2],[1,3,2,2],[2,2,3,1],[0,2,1,0]],[[0,1,2,1],[1,3,2,3],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[1,0,2,2],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[1,0,2,2],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[1,0,2,2],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[3,2,2,1],[1,0,2,2],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[1,0,2,2],[1,2,1,1]],[[1,2,3,1],[2,2,2,1],[1,0,2,2],[1,2,1,1]],[[0,1,3,1],[1,3,2,2],[2,2,3,1],[1,0,1,1]],[[0,1,2,2],[1,3,2,2],[2,2,3,1],[1,0,1,1]],[[0,1,2,1],[1,3,2,3],[2,2,3,1],[1,0,1,1]],[[0,1,3,1],[1,3,2,2],[2,2,3,1],[1,0,2,0]],[[0,1,2,2],[1,3,2,2],[2,2,3,1],[1,0,2,0]],[[0,1,2,1],[1,3,2,3],[2,2,3,1],[1,0,2,0]],[[0,1,3,1],[1,3,2,2],[2,2,3,1],[1,1,0,1]],[[0,1,2,2],[1,3,2,2],[2,2,3,1],[1,1,0,1]],[[0,1,2,1],[1,3,2,3],[2,2,3,1],[1,1,0,1]],[[0,1,3,1],[1,3,2,2],[2,2,3,1],[1,1,1,0]],[[0,1,2,2],[1,3,2,2],[2,2,3,1],[1,1,1,0]],[[0,1,2,1],[1,3,2,3],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,2,1],[1,0,2,2],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[1,0,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[1,0,1,2],[1,2,2,1]],[[1,2,3,1],[2,2,2,1],[1,0,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[1,0,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[1,0,1,2],[1,2,2,1]],[[1,2,2,1],[3,2,2,1],[0,3,3,1],[1,2,0,0]],[[1,2,2,2],[2,2,2,1],[0,3,3,1],[1,2,0,0]],[[1,2,3,1],[2,2,2,1],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,2,2,1],[0,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,2,2,1],[0,3,3,1],[1,2,0,0]],[[0,1,3,1],[1,3,2,2],[2,2,3,2],[0,1,0,1]],[[0,1,2,2],[1,3,2,2],[2,2,3,2],[0,1,0,1]],[[0,1,2,1],[1,3,2,3],[2,2,3,2],[0,1,0,1]],[[0,1,2,1],[1,3,2,2],[2,2,3,3],[0,1,0,1]],[[1,2,2,1],[3,2,2,1],[0,3,3,0],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[0,3,3,0],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[0,3,3,0],[1,2,1,0]],[[1,3,2,1],[2,2,2,1],[0,3,3,0],[1,2,1,0]],[[2,2,2,1],[2,2,2,1],[0,3,3,0],[1,2,1,0]],[[0,1,3,1],[1,3,2,2],[2,2,3,2],[1,0,0,1]],[[0,1,2,2],[1,3,2,2],[2,2,3,2],[1,0,0,1]],[[0,1,2,1],[1,3,2,3],[2,2,3,2],[1,0,0,1]],[[0,1,2,1],[1,3,2,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[3,2,2,1],[0,3,3,0],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[0,3,3,0],[1,1,2,0]],[[1,2,3,1],[2,2,2,1],[0,3,3,0],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[0,3,3,0],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[0,3,3,0],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[2,2,2,1],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[2,2,2,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[3,2,2,1],[0,3,2,1],[1,2,0,1]],[[1,2,2,2],[2,2,2,1],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[2,2,2,1],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[2,2,2,1],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,2,2,1],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[3,2,2,1],[0,3,2,1],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[2,2,2,1],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[0,3,2,1],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[0,3,2,1],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[0,3,2,1],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[3,2,2,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[0,3,2,0],[1,2,1,1]],[[1,2,3,1],[2,2,2,1],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[2,2,2,1],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[0,3,2,0],[1,1,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,0,1],[0,2,2,1]],[[0,1,2,2],[1,3,2,2],[2,3,0,1],[0,2,2,1]],[[0,1,2,1],[1,3,2,3],[2,3,0,1],[0,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,0,1],[1,1,2,1]],[[0,1,2,2],[1,3,2,2],[2,3,0,1],[1,1,2,1]],[[0,1,2,1],[1,3,2,3],[2,3,0,1],[1,1,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,0,2],[0,1,2,1]],[[0,1,2,2],[1,3,2,2],[2,3,0,2],[0,1,2,1]],[[0,1,2,1],[1,3,2,3],[2,3,0,2],[0,1,2,1]],[[0,1,2,1],[1,3,2,2],[2,3,0,3],[0,1,2,1]],[[0,1,2,1],[1,3,2,2],[2,3,0,2],[0,1,3,1]],[[0,1,2,1],[1,3,2,2],[2,3,0,2],[0,1,2,2]],[[0,1,3,1],[1,3,2,2],[2,3,0,2],[0,2,1,1]],[[0,1,2,2],[1,3,2,2],[2,3,0,2],[0,2,1,1]],[[0,1,2,1],[1,3,2,3],[2,3,0,2],[0,2,1,1]],[[0,1,2,1],[1,3,2,2],[2,3,0,3],[0,2,1,1]],[[0,1,2,1],[1,3,2,2],[2,3,0,2],[0,2,1,2]],[[0,1,3,1],[1,3,2,2],[2,3,0,2],[0,2,2,0]],[[0,1,2,2],[1,3,2,2],[2,3,0,2],[0,2,2,0]],[[0,1,2,1],[1,3,2,3],[2,3,0,2],[0,2,2,0]],[[0,1,2,1],[1,3,2,2],[2,3,0,3],[0,2,2,0]],[[0,1,3,1],[1,3,2,2],[2,3,0,2],[1,0,2,1]],[[0,1,2,2],[1,3,2,2],[2,3,0,2],[1,0,2,1]],[[0,1,2,1],[1,3,2,3],[2,3,0,2],[1,0,2,1]],[[0,1,2,1],[1,3,2,2],[2,3,0,3],[1,0,2,1]],[[0,1,2,1],[1,3,2,2],[2,3,0,2],[1,0,3,1]],[[0,1,2,1],[1,3,2,2],[2,3,0,2],[1,0,2,2]],[[0,1,3,1],[1,3,2,2],[2,3,0,2],[1,1,1,1]],[[0,1,2,2],[1,3,2,2],[2,3,0,2],[1,1,1,1]],[[0,1,2,1],[1,3,2,3],[2,3,0,2],[1,1,1,1]],[[0,1,2,1],[1,3,2,2],[2,3,0,3],[1,1,1,1]],[[0,1,2,1],[1,3,2,2],[2,3,0,2],[1,1,1,2]],[[0,1,3,1],[1,3,2,2],[2,3,0,2],[1,1,2,0]],[[0,1,2,2],[1,3,2,2],[2,3,0,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,3],[2,3,0,2],[1,1,2,0]],[[0,1,2,1],[1,3,2,2],[2,3,0,3],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[0,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,2,2,1],[0,3,2,0],[1,1,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,1,0],[0,2,2,1]],[[0,1,2,2],[1,3,2,2],[2,3,1,0],[0,2,2,1]],[[0,1,2,1],[1,3,2,3],[2,3,1,0],[0,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,1,0],[1,1,2,1]],[[0,1,2,2],[1,3,2,2],[2,3,1,0],[1,1,2,1]],[[0,1,2,1],[1,3,2,3],[2,3,1,0],[1,1,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,1,1],[0,2,2,0]],[[0,1,2,2],[1,3,2,2],[2,3,1,1],[0,2,2,0]],[[0,1,2,1],[1,3,2,3],[2,3,1,1],[0,2,2,0]],[[0,1,3,1],[1,3,2,2],[2,3,1,1],[1,1,2,0]],[[0,1,2,2],[1,3,2,2],[2,3,1,1],[1,1,2,0]],[[0,1,2,1],[1,3,2,3],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[0,3,1,2],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[0,3,1,2],[1,2,1,0]],[[0,1,3,1],[1,3,2,2],[2,3,1,2],[0,1,1,1]],[[0,1,2,2],[1,3,2,2],[2,3,1,2],[0,1,1,1]],[[0,1,2,1],[1,3,2,3],[2,3,1,2],[0,1,1,1]],[[0,1,2,1],[1,3,2,2],[2,3,1,3],[0,1,1,1]],[[0,1,2,1],[1,3,2,2],[2,3,1,2],[0,1,1,2]],[[0,1,3,1],[1,3,2,2],[2,3,1,2],[0,1,2,0]],[[0,1,2,2],[1,3,2,2],[2,3,1,2],[0,1,2,0]],[[0,1,2,1],[1,3,2,3],[2,3,1,2],[0,1,2,0]],[[0,1,2,1],[1,3,2,2],[2,3,1,3],[0,1,2,0]],[[0,1,3,1],[1,3,2,2],[2,3,1,2],[0,2,0,1]],[[0,1,2,2],[1,3,2,2],[2,3,1,2],[0,2,0,1]],[[0,1,2,1],[1,3,2,3],[2,3,1,2],[0,2,0,1]],[[0,1,2,1],[1,3,2,2],[2,3,1,3],[0,2,0,1]],[[0,1,2,1],[1,3,2,2],[2,3,1,2],[0,2,0,2]],[[0,1,3,1],[1,3,2,2],[2,3,1,2],[0,2,1,0]],[[0,1,2,2],[1,3,2,2],[2,3,1,2],[0,2,1,0]],[[0,1,2,1],[1,3,2,3],[2,3,1,2],[0,2,1,0]],[[0,1,2,1],[1,3,2,2],[2,3,1,3],[0,2,1,0]],[[1,3,2,1],[2,2,2,1],[0,3,1,2],[1,2,1,0]],[[2,2,2,1],[2,2,2,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[3,2,2,1],[0,3,1,2],[1,2,0,1]],[[1,2,2,2],[2,2,2,1],[0,3,1,2],[1,2,0,1]],[[1,2,3,1],[2,2,2,1],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[2,2,2,1],[0,3,1,2],[1,2,0,1]],[[2,2,2,1],[2,2,2,1],[0,3,1,2],[1,2,0,1]],[[0,1,3,1],[1,3,2,2],[2,3,1,2],[1,0,1,1]],[[0,1,2,2],[1,3,2,2],[2,3,1,2],[1,0,1,1]],[[0,1,2,1],[1,3,2,3],[2,3,1,2],[1,0,1,1]],[[0,1,2,1],[1,3,2,2],[2,3,1,3],[1,0,1,1]],[[0,1,2,1],[1,3,2,2],[2,3,1,2],[1,0,1,2]],[[0,1,3,1],[1,3,2,2],[2,3,1,2],[1,0,2,0]],[[0,1,2,2],[1,3,2,2],[2,3,1,2],[1,0,2,0]],[[0,1,2,1],[1,3,2,3],[2,3,1,2],[1,0,2,0]],[[0,1,2,1],[1,3,2,2],[2,3,1,3],[1,0,2,0]],[[0,1,3,1],[1,3,2,2],[2,3,1,2],[1,1,0,1]],[[0,1,2,2],[1,3,2,2],[2,3,1,2],[1,1,0,1]],[[0,1,2,1],[1,3,2,3],[2,3,1,2],[1,1,0,1]],[[0,1,2,1],[1,3,2,2],[2,3,1,3],[1,1,0,1]],[[0,1,2,1],[1,3,2,2],[2,3,1,2],[1,1,0,2]],[[0,1,3,1],[1,3,2,2],[2,3,1,2],[1,1,1,0]],[[0,1,2,2],[1,3,2,2],[2,3,1,2],[1,1,1,0]],[[0,1,2,1],[1,3,2,3],[2,3,1,2],[1,1,1,0]],[[0,1,2,1],[1,3,2,2],[2,3,1,3],[1,1,1,0]],[[1,2,2,1],[3,2,2,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[0,3,1,2],[1,1,2,0]],[[1,2,3,1],[2,2,2,1],[0,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[0,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[0,3,1,2],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[0,3,1,2],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[0,3,1,2],[1,1,1,1]],[[0,1,3,1],[1,3,2,2],[2,3,1,2],[1,2,0,0]],[[0,1,2,2],[1,3,2,2],[2,3,1,2],[1,2,0,0]],[[0,1,2,1],[1,3,2,3],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,2,2,1],[0,3,1,2],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[3,2,2,1],[0,3,1,1],[1,2,2,0]],[[1,2,2,2],[2,2,2,1],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[3,2,2,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[0,3,1,0],[1,2,2,1]],[[1,2,3,1],[2,2,2,1],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[3,2,2,1],[0,3,0,2],[1,2,2,0]],[[0,1,3,1],[1,3,2,2],[2,3,2,0],[0,1,2,1]],[[0,1,2,2],[1,3,2,2],[2,3,2,0],[0,1,2,1]],[[0,1,2,1],[1,3,2,3],[2,3,2,0],[0,1,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,2,0],[0,2,1,1]],[[0,1,2,2],[1,3,2,2],[2,3,2,0],[0,2,1,1]],[[0,1,2,1],[1,3,2,3],[2,3,2,0],[0,2,1,1]],[[0,1,3,1],[1,3,2,2],[2,3,2,0],[1,0,2,1]],[[0,1,2,2],[1,3,2,2],[2,3,2,0],[1,0,2,1]],[[0,1,2,1],[1,3,2,3],[2,3,2,0],[1,0,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,2,0],[1,1,1,1]],[[0,1,2,2],[1,3,2,2],[2,3,2,0],[1,1,1,1]],[[0,1,2,1],[1,3,2,3],[2,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[0,3,0,2],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[0,3,0,2],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[0,3,0,2],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[3,2,2,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[0,3,0,2],[1,2,1,1]],[[1,2,3,1],[2,2,2,1],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[2,2,2,1],[0,3,0,2],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[0,3,0,2],[1,1,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,2,1],[0,1,1,1]],[[0,1,2,2],[1,3,2,2],[2,3,2,1],[0,1,1,1]],[[0,1,2,1],[1,3,2,3],[2,3,2,1],[0,1,1,1]],[[0,1,3,1],[1,3,2,2],[2,3,2,1],[0,1,2,0]],[[0,1,2,2],[1,3,2,2],[2,3,2,1],[0,1,2,0]],[[0,1,2,1],[1,3,2,3],[2,3,2,1],[0,1,2,0]],[[0,1,3,1],[1,3,2,2],[2,3,2,1],[0,2,0,1]],[[0,1,2,2],[1,3,2,2],[2,3,2,1],[0,2,0,1]],[[0,1,2,1],[1,3,2,3],[2,3,2,1],[0,2,0,1]],[[0,1,3,1],[1,3,2,2],[2,3,2,1],[0,2,1,0]],[[0,1,2,2],[1,3,2,2],[2,3,2,1],[0,2,1,0]],[[0,1,2,1],[1,3,2,3],[2,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,2,2,1],[0,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[0,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,2,2,1],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,2,2,1],[0,3,0,1],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[0,3,0,1],[1,2,2,1]],[[1,2,3,1],[2,2,2,1],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[0,3,0,1],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[0,3,0,1],[1,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,2,1],[1,0,1,1]],[[0,1,2,2],[1,3,2,2],[2,3,2,1],[1,0,1,1]],[[0,1,2,1],[1,3,2,3],[2,3,2,1],[1,0,1,1]],[[0,1,3,1],[1,3,2,2],[2,3,2,1],[1,0,2,0]],[[0,1,2,2],[1,3,2,2],[2,3,2,1],[1,0,2,0]],[[0,1,2,1],[1,3,2,3],[2,3,2,1],[1,0,2,0]],[[0,1,3,1],[1,3,2,2],[2,3,2,1],[1,1,0,1]],[[0,1,2,2],[1,3,2,2],[2,3,2,1],[1,1,0,1]],[[0,1,2,1],[1,3,2,3],[2,3,2,1],[1,1,0,1]],[[0,1,3,1],[1,3,2,2],[2,3,2,1],[1,1,1,0]],[[0,1,2,2],[1,3,2,2],[2,3,2,1],[1,1,1,0]],[[0,1,2,1],[1,3,2,3],[2,3,2,1],[1,1,1,0]],[[0,1,3,1],[1,3,2,2],[2,3,2,1],[1,2,0,0]],[[0,1,2,2],[1,3,2,2],[2,3,2,1],[1,2,0,0]],[[0,1,2,1],[1,3,2,3],[2,3,2,1],[1,2,0,0]],[[0,1,3,1],[1,3,2,2],[2,3,2,2],[0,0,1,1]],[[0,1,2,2],[1,3,2,2],[2,3,2,2],[0,0,1,1]],[[0,1,2,1],[1,3,2,3],[2,3,2,2],[0,0,1,1]],[[0,1,2,1],[1,3,2,2],[2,3,2,3],[0,0,1,1]],[[0,1,2,1],[1,3,2,2],[2,3,2,2],[0,0,1,2]],[[0,1,3,1],[1,3,2,2],[2,3,2,2],[0,0,2,0]],[[0,1,2,2],[1,3,2,2],[2,3,2,2],[0,0,2,0]],[[0,1,2,1],[1,3,2,3],[2,3,2,2],[0,0,2,0]],[[0,1,2,1],[1,3,2,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,1],[3,2,2,1],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[2,2,2,1],[0,2,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,2,1],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,2,1],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[2,2,2,1],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[2,2,2,1],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,2,1],[0,2,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,2,1],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,2,1],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[2,2,2,1],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[0,2,3,1],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[0,2,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,2,1],[0,2,3,0],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[2,2,2,1],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[2,2,2,1],[0,2,3,0],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[2,2,2,1],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[0,2,3,0],[1,1,2,1]],[[2,2,2,1],[2,2,2,1],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[3,2,2,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,1],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[2,2,2,1],[0,2,2,2],[1,2,1,0]],[[1,3,2,1],[2,2,2,1],[0,2,2,2],[1,2,1,0]],[[2,2,2,1],[2,2,2,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[3,2,2,1],[0,2,2,2],[1,2,0,1]],[[1,2,2,2],[2,2,2,1],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[2,2,2,1],[0,2,2,2],[1,2,0,1]],[[1,3,2,1],[2,2,2,1],[0,2,2,2],[1,2,0,1]],[[2,2,2,1],[2,2,2,1],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[3,2,2,1],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[2,2,2,1],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[2,2,2,1],[0,2,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,2,1],[0,2,2,2],[1,1,2,0]],[[2,2,2,1],[2,2,2,1],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[3,2,2,1],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[2,2,2,1],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[2,2,2,1],[0,2,2,2],[1,1,1,1]],[[1,3,2,1],[2,2,2,1],[0,2,2,2],[1,1,1,1]],[[2,2,2,1],[2,2,2,1],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[3,2,2,1],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[2,2,2,1],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[2,2,2,1],[0,2,1,2],[1,1,2,1]],[[1,3,2,1],[2,2,2,1],[0,2,1,2],[1,1,2,1]],[[2,2,2,1],[2,2,2,1],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[3,2,2,1],[0,2,0,2],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[0,2,0,2],[1,2,2,1]],[[1,2,3,1],[2,2,2,1],[0,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[0,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[0,2,0,2],[1,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,3,0],[0,0,2,1]],[[0,1,2,2],[1,3,2,2],[2,3,3,0],[0,0,2,1]],[[0,1,2,1],[1,3,2,3],[2,3,3,0],[0,0,2,1]],[[1,2,2,1],[3,2,2,1],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[2,2,2,1],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[0,1,3,1],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[0,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[3,2,2,1],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[2,2,2,1],[0,1,3,1],[1,2,1,1]],[[1,3,2,1],[2,2,2,1],[0,1,3,1],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,2,2,1],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[0,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,2,2,1],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[2,2,2,1],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,2,2,1],[0,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,2,2,1],[0,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,2,2,1],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[3,2,2,1],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[2,2,2,1],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[2,2,2,1],[0,1,2,2],[1,2,1,1]],[[0,1,3,1],[1,3,2,2],[2,3,3,1],[0,0,1,1]],[[0,1,2,2],[1,3,2,2],[2,3,3,1],[0,0,1,1]],[[0,1,2,1],[1,3,2,3],[2,3,3,1],[0,0,1,1]],[[0,1,3,1],[1,3,2,2],[2,3,3,1],[0,0,2,0]],[[0,1,2,2],[1,3,2,2],[2,3,3,1],[0,0,2,0]],[[0,1,2,1],[1,3,2,3],[2,3,3,1],[0,0,2,0]],[[1,3,2,1],[2,2,2,1],[0,1,2,2],[1,2,1,1]],[[2,2,2,1],[2,2,2,1],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[3,2,2,1],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,2,1],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,2,2,1],[0,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,2,1],[0,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,2,1],[0,1,1,2],[1,2,2,1]],[[0,1,3,1],[1,3,2,2],[2,3,3,1],[0,2,0,0]],[[0,1,2,2],[1,3,2,2],[2,3,3,1],[0,2,0,0]],[[0,1,2,1],[1,3,2,3],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,2,2,0],[3,3,3,2],[1,0,0,0]],[[1,2,2,1],[3,2,2,0],[2,3,3,2],[1,0,0,0]],[[1,2,2,2],[2,2,2,0],[2,3,3,2],[1,0,0,0]],[[1,2,3,1],[2,2,2,0],[2,3,3,2],[1,0,0,0]],[[1,3,2,1],[2,2,2,0],[2,3,3,2],[1,0,0,0]],[[2,2,2,1],[2,2,2,0],[2,3,3,2],[1,0,0,0]],[[0,1,3,1],[1,3,2,2],[2,3,3,1],[1,1,0,0]],[[0,1,2,2],[1,3,2,2],[2,3,3,1],[1,1,0,0]],[[0,1,2,1],[1,3,2,3],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,2,2,0],[3,3,2,2],[1,0,1,0]],[[1,2,2,1],[3,2,2,0],[2,3,2,2],[1,0,1,0]],[[1,2,2,2],[2,2,2,0],[2,3,2,2],[1,0,1,0]],[[1,2,3,1],[2,2,2,0],[2,3,2,2],[1,0,1,0]],[[1,3,2,1],[2,2,2,0],[2,3,2,2],[1,0,1,0]],[[2,2,2,1],[2,2,2,0],[2,3,2,2],[1,0,1,0]],[[1,2,2,1],[2,2,2,0],[3,3,2,2],[1,0,0,1]],[[1,2,2,1],[3,2,2,0],[2,3,2,2],[1,0,0,1]],[[1,2,2,2],[2,2,2,0],[2,3,2,2],[1,0,0,1]],[[1,2,3,1],[2,2,2,0],[2,3,2,2],[1,0,0,1]],[[1,3,2,1],[2,2,2,0],[2,3,2,2],[1,0,0,1]],[[2,2,2,1],[2,2,2,0],[2,3,2,2],[1,0,0,1]],[[0,1,3,1],[1,3,2,2],[2,3,3,2],[0,0,0,1]],[[0,1,2,2],[1,3,2,2],[2,3,3,2],[0,0,0,1]],[[0,1,2,1],[1,3,2,3],[2,3,3,2],[0,0,0,1]],[[0,1,2,1],[1,3,2,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,2,2,0],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[3,2,2,0],[2,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,2,2,0],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,2,2,0],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,2,2,0],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,2,2,0],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,2,2,0],[3,3,1,2],[1,2,0,0]],[[1,2,2,1],[3,2,2,0],[2,3,1,2],[1,2,0,0]],[[1,2,3,1],[2,2,2,0],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,2,2,0],[2,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,2,2,0],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[2,2,2,0],[2,3,1,2],[2,1,1,0]],[[1,2,2,1],[2,2,2,0],[3,3,1,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,0],[2,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,0],[2,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,0],[2,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,0],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,0],[2,3,1,2],[2,1,0,1]],[[1,2,2,1],[2,2,2,0],[3,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,0],[2,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,0],[2,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,0],[2,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,0],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,0],[3,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,0],[2,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,0],[2,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,0],[2,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,0],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,0],[3,3,1,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,0],[2,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,0],[2,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,0],[2,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,0],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,2,2,0],[2,3,1,1],[2,2,0,1]],[[1,2,2,1],[2,2,2,0],[3,3,1,1],[1,2,0,1]],[[1,2,2,1],[3,2,2,0],[2,3,1,1],[1,2,0,1]],[[1,2,3,1],[2,2,2,0],[2,3,1,1],[1,2,0,1]],[[1,3,2,1],[2,2,2,0],[2,3,1,1],[1,2,0,1]],[[2,2,2,1],[2,2,2,0],[2,3,1,1],[1,2,0,1]],[[1,2,2,1],[2,2,2,0],[2,3,1,1],[2,1,1,1]],[[1,2,2,1],[2,2,2,0],[3,3,1,1],[1,1,1,1]],[[1,2,2,1],[3,2,2,0],[2,3,1,1],[1,1,1,1]],[[1,2,3,1],[2,2,2,0],[2,3,1,1],[1,1,1,1]],[[1,3,2,1],[2,2,2,0],[2,3,1,1],[1,1,1,1]],[[2,2,2,1],[2,2,2,0],[2,3,1,1],[1,1,1,1]],[[1,2,2,1],[2,2,2,0],[3,3,1,1],[0,2,1,1]],[[1,2,2,1],[3,2,2,0],[2,3,1,1],[0,2,1,1]],[[1,2,3,1],[2,2,2,0],[2,3,1,1],[0,2,1,1]],[[1,3,2,1],[2,2,2,0],[2,3,1,1],[0,2,1,1]],[[2,2,2,1],[2,2,2,0],[2,3,1,1],[0,2,1,1]],[[1,2,2,1],[2,2,2,0],[2,3,0,2],[2,2,1,0]],[[1,2,2,1],[2,2,2,0],[3,3,0,2],[1,2,1,0]],[[1,2,2,1],[3,2,2,0],[2,3,0,2],[1,2,1,0]],[[1,2,3,1],[2,2,2,0],[2,3,0,2],[1,2,1,0]],[[1,3,2,1],[2,2,2,0],[2,3,0,2],[1,2,1,0]],[[2,2,2,1],[2,2,2,0],[2,3,0,2],[1,2,1,0]],[[1,2,2,1],[2,2,2,0],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[2,2,2,0],[3,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,2,2,0],[2,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,2,2,0],[2,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,2,2,0],[2,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,2,2,0],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,2,2,0],[3,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,2,2,0],[2,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,0],[2,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,2,2,0],[2,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,0],[2,3,0,2],[0,2,2,0]],[[0,1,2,1],[1,3,3,0],[1,0,3,3],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,0,3,2],[1,2,3,1]],[[0,1,2,1],[1,3,3,0],[1,0,3,2],[1,2,2,2]],[[0,1,2,1],[1,3,3,0],[1,1,2,3],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,1,2,2],[2,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,1,2,2],[1,3,2,1]],[[0,1,2,1],[1,3,3,0],[1,1,2,2],[1,2,3,1]],[[0,1,2,1],[1,3,3,0],[1,1,2,2],[1,2,2,2]],[[0,1,3,1],[1,3,3,0],[1,1,3,1],[1,2,2,1]],[[0,1,2,2],[1,3,3,0],[1,1,3,1],[1,2,2,1]],[[0,1,2,1],[1,4,3,0],[1,1,3,1],[1,2,2,1]],[[0,1,2,1],[1,3,4,0],[1,1,3,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,1,4,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,1,3,1],[2,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,1,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,3,0],[1,1,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,3,0],[1,1,3,1],[1,2,2,2]],[[0,1,3,1],[1,3,3,0],[1,1,3,2],[1,2,1,1]],[[0,1,2,2],[1,3,3,0],[1,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,4,3,0],[1,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,4,0],[1,1,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,3,0],[1,1,4,2],[1,2,1,1]],[[0,1,2,1],[1,3,3,0],[1,1,3,3],[1,2,1,1]],[[0,1,2,1],[1,3,3,0],[1,1,3,2],[1,2,1,2]],[[0,1,3,1],[1,3,3,0],[1,1,3,2],[1,2,2,0]],[[0,1,2,2],[1,3,3,0],[1,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,4,3,0],[1,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,4,0],[1,1,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,0],[1,1,4,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,0],[1,1,3,3],[1,2,2,0]],[[0,1,2,1],[1,3,3,0],[1,1,3,2],[2,2,2,0]],[[0,1,2,1],[1,3,3,0],[1,1,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,3,0],[1,1,3,2],[1,2,3,0]],[[0,1,2,1],[1,3,3,0],[1,2,2,3],[1,1,2,1]],[[0,1,2,1],[1,3,3,0],[1,2,2,2],[1,1,3,1]],[[0,1,2,1],[1,3,3,0],[1,2,2,2],[1,1,2,2]],[[0,1,3,1],[1,3,3,0],[1,2,3,1],[1,1,2,1]],[[0,1,2,2],[1,3,3,0],[1,2,3,1],[1,1,2,1]],[[0,1,2,1],[1,4,3,0],[1,2,3,1],[1,1,2,1]],[[0,1,2,1],[1,3,4,0],[1,2,3,1],[1,1,2,1]],[[0,1,2,1],[1,3,3,0],[1,2,4,1],[1,1,2,1]],[[0,1,2,1],[1,3,3,0],[1,2,3,1],[1,1,3,1]],[[0,1,2,1],[1,3,3,0],[1,2,3,1],[1,1,2,2]],[[0,1,3,1],[1,3,3,0],[1,2,3,1],[1,2,1,1]],[[0,1,2,2],[1,3,3,0],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[1,4,3,0],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,4,0],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,3,0],[1,2,4,1],[1,2,1,1]],[[0,1,3,1],[1,3,3,0],[1,2,3,2],[1,0,2,1]],[[0,1,2,2],[1,3,3,0],[1,2,3,2],[1,0,2,1]],[[0,1,2,1],[1,3,4,0],[1,2,3,2],[1,0,2,1]],[[0,1,2,1],[1,3,3,0],[1,2,4,2],[1,0,2,1]],[[0,1,2,1],[1,3,3,0],[1,2,3,3],[1,0,2,1]],[[0,1,2,1],[1,3,3,0],[1,2,3,2],[1,0,2,2]],[[0,1,3,1],[1,3,3,0],[1,2,3,2],[1,1,1,1]],[[0,1,2,2],[1,3,3,0],[1,2,3,2],[1,1,1,1]],[[0,1,2,1],[1,4,3,0],[1,2,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,4,0],[1,2,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,3,0],[1,2,4,2],[1,1,1,1]],[[0,1,2,1],[1,3,3,0],[1,2,3,3],[1,1,1,1]],[[0,1,2,1],[1,3,3,0],[1,2,3,2],[1,1,1,2]],[[0,1,3,1],[1,3,3,0],[1,2,3,2],[1,1,2,0]],[[0,1,2,2],[1,3,3,0],[1,2,3,2],[1,1,2,0]],[[0,1,2,1],[1,4,3,0],[1,2,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,4,0],[1,2,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,0],[1,2,4,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,0],[1,2,3,3],[1,1,2,0]],[[0,1,2,1],[1,3,3,0],[1,2,3,2],[1,1,3,0]],[[0,1,3,1],[1,3,3,0],[1,2,3,2],[1,2,0,1]],[[0,1,2,2],[1,3,3,0],[1,2,3,2],[1,2,0,1]],[[0,1,2,1],[1,4,3,0],[1,2,3,2],[1,2,0,1]],[[0,1,2,1],[1,3,4,0],[1,2,3,2],[1,2,0,1]],[[0,1,2,1],[1,3,3,0],[1,2,4,2],[1,2,0,1]],[[0,1,2,1],[1,3,3,0],[1,2,3,3],[1,2,0,1]],[[0,1,2,1],[1,3,3,0],[1,2,3,2],[1,2,0,2]],[[0,1,3,1],[1,3,3,0],[1,2,3,2],[1,2,1,0]],[[0,1,2,2],[1,3,3,0],[1,2,3,2],[1,2,1,0]],[[0,1,2,1],[1,4,3,0],[1,2,3,2],[1,2,1,0]],[[0,1,2,1],[1,3,4,0],[1,2,3,2],[1,2,1,0]],[[0,1,2,1],[1,3,3,0],[1,2,4,2],[1,2,1,0]],[[0,1,2,1],[1,3,3,0],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[2,2,2,0],[2,3,0,1],[2,2,1,1]],[[1,2,2,1],[2,2,2,0],[3,3,0,1],[1,2,1,1]],[[1,2,2,1],[3,2,2,0],[2,3,0,1],[1,2,1,1]],[[1,2,3,1],[2,2,2,0],[2,3,0,1],[1,2,1,1]],[[1,3,2,1],[2,2,2,0],[2,3,0,1],[1,2,1,1]],[[2,2,2,1],[2,2,2,0],[2,3,0,1],[1,2,1,1]],[[1,2,2,1],[2,2,2,0],[2,3,0,1],[2,1,2,1]],[[1,2,2,1],[2,2,2,0],[3,3,0,1],[1,1,2,1]],[[1,2,2,1],[3,2,2,0],[2,3,0,1],[1,1,2,1]],[[1,2,3,1],[2,2,2,0],[2,3,0,1],[1,1,2,1]],[[0,1,3,1],[1,3,3,0],[1,3,0,2],[1,2,2,1]],[[0,1,2,2],[1,3,3,0],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[1,4,3,0],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,4,0],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,4,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,3,0,3],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,3,0,2],[2,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,3,0,2],[1,3,2,1]],[[0,1,2,1],[1,3,3,0],[1,3,0,2],[1,2,3,1]],[[0,1,2,1],[1,3,3,0],[1,3,0,2],[1,2,2,2]],[[0,1,3,1],[1,3,3,0],[1,3,1,1],[1,2,2,1]],[[0,1,2,2],[1,3,3,0],[1,3,1,1],[1,2,2,1]],[[0,1,2,1],[1,4,3,0],[1,3,1,1],[1,2,2,1]],[[0,1,2,1],[1,3,4,0],[1,3,1,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,4,1,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,3,1,1],[2,2,2,1]],[[0,1,2,1],[1,3,3,0],[1,3,1,1],[1,3,2,1]],[[0,1,2,1],[1,3,3,0],[1,3,1,1],[1,2,3,1]],[[0,1,2,1],[1,3,3,0],[1,3,1,1],[1,2,2,2]],[[0,1,3,1],[1,3,3,0],[1,3,1,2],[1,2,2,0]],[[0,1,2,2],[1,3,3,0],[1,3,1,2],[1,2,2,0]],[[0,1,2,1],[1,4,3,0],[1,3,1,2],[1,2,2,0]],[[0,1,2,1],[1,3,4,0],[1,3,1,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,0],[1,4,1,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,0],[1,3,1,2],[2,2,2,0]],[[0,1,2,1],[1,3,3,0],[1,3,1,2],[1,3,2,0]],[[0,1,2,1],[1,3,3,0],[1,3,1,2],[1,2,3,0]],[[0,1,3,1],[1,3,3,0],[1,3,2,1],[1,1,2,1]],[[0,1,2,2],[1,3,3,0],[1,3,2,1],[1,1,2,1]],[[0,1,2,1],[1,4,3,0],[1,3,2,1],[1,1,2,1]],[[0,1,2,1],[1,3,4,0],[1,3,2,1],[1,1,2,1]],[[0,1,2,1],[1,3,3,0],[1,4,2,1],[1,1,2,1]],[[0,1,3,1],[1,3,3,0],[1,3,2,1],[1,2,1,1]],[[0,1,2,2],[1,3,3,0],[1,3,2,1],[1,2,1,1]],[[0,1,2,1],[1,4,3,0],[1,3,2,1],[1,2,1,1]],[[0,1,2,1],[1,3,4,0],[1,3,2,1],[1,2,1,1]],[[0,1,2,1],[1,3,3,0],[1,4,2,1],[1,2,1,1]],[[0,1,2,1],[1,3,3,0],[1,3,2,1],[2,2,1,1]],[[0,1,2,1],[1,3,3,0],[1,3,2,1],[1,3,1,1]],[[0,1,3,1],[1,3,3,0],[1,3,2,2],[1,1,1,1]],[[0,1,2,2],[1,3,3,0],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[1,4,3,0],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[1,3,4,0],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[1,3,3,0],[1,4,2,2],[1,1,1,1]],[[0,1,3,1],[1,3,3,0],[1,3,2,2],[1,1,2,0]],[[0,1,2,2],[1,3,3,0],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,4,3,0],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,3,4,0],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,0],[1,4,2,2],[1,1,2,0]],[[0,1,3,1],[1,3,3,0],[1,3,2,2],[1,2,0,1]],[[0,1,2,2],[1,3,3,0],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[1,4,3,0],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[1,3,4,0],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[1,3,3,0],[1,4,2,2],[1,2,0,1]],[[0,1,2,1],[1,3,3,0],[1,3,2,2],[2,2,0,1]],[[0,1,2,1],[1,3,3,0],[1,3,2,2],[1,3,0,1]],[[0,1,3,1],[1,3,3,0],[1,3,2,2],[1,2,1,0]],[[0,1,2,2],[1,3,3,0],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[1,4,3,0],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[1,3,4,0],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[1,3,3,0],[1,4,2,2],[1,2,1,0]],[[0,1,2,1],[1,3,3,0],[1,3,2,2],[2,2,1,0]],[[0,1,2,1],[1,3,3,0],[1,3,2,2],[1,3,1,0]],[[1,3,2,1],[2,2,2,0],[2,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,2,2,0],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,2,2,0],[3,3,0,1],[0,2,2,1]],[[1,2,2,1],[3,2,2,0],[2,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,2,2,0],[2,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,2,2,0],[2,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,2,2,0],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,2,2,0],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[2,2,2,0],[2,3,0,0],[2,2,2,1]],[[1,2,2,1],[2,2,2,0],[3,3,0,0],[1,2,2,1]],[[1,2,2,1],[3,2,2,0],[2,3,0,0],[1,2,2,1]],[[1,3,2,1],[2,2,2,0],[2,3,0,0],[1,2,2,1]],[[2,2,2,1],[2,2,2,0],[2,3,0,0],[1,2,2,1]],[[0,1,3,1],[1,3,3,0],[1,3,3,2],[1,2,0,0]],[[0,1,2,2],[1,3,3,0],[1,3,3,2],[1,2,0,0]],[[0,1,2,1],[1,4,3,0],[1,3,3,2],[1,2,0,0]],[[0,1,2,1],[1,3,4,0],[1,3,3,2],[1,2,0,0]],[[0,1,2,1],[1,3,3,0],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,2,2,0],[2,2,3,2],[2,1,0,0]],[[1,2,2,1],[2,2,2,0],[3,2,3,2],[1,1,0,0]],[[1,2,2,1],[3,2,2,0],[2,2,3,2],[1,1,0,0]],[[1,2,2,2],[2,2,2,0],[2,2,3,2],[1,1,0,0]],[[1,2,3,1],[2,2,2,0],[2,2,3,2],[1,1,0,0]],[[1,3,2,1],[2,2,2,0],[2,2,3,2],[1,1,0,0]],[[2,2,2,1],[2,2,2,0],[2,2,3,2],[1,1,0,0]],[[0,1,2,1],[1,3,3,0],[3,0,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,0,2,3],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,0,2,2],[2,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,0,2,2],[1,3,2,1]],[[0,1,2,1],[1,3,3,0],[2,0,2,2],[1,2,3,1]],[[0,1,2,1],[1,3,3,0],[2,0,2,2],[1,2,2,2]],[[0,1,3,1],[1,3,3,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,2],[1,3,3,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,1],[1,4,3,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,1],[1,3,4,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[3,0,3,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,0,4,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,0,3,1],[2,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,0,3,1],[1,3,2,1]],[[0,1,2,1],[1,3,3,0],[2,0,3,1],[1,2,3,1]],[[0,1,2,1],[1,3,3,0],[2,0,3,1],[1,2,2,2]],[[0,1,2,1],[1,3,3,0],[2,0,3,3],[0,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,0,3,2],[0,2,3,1]],[[0,1,2,1],[1,3,3,0],[2,0,3,2],[0,2,2,2]],[[0,1,3,1],[1,3,3,0],[2,0,3,2],[1,2,1,1]],[[0,1,2,2],[1,3,3,0],[2,0,3,2],[1,2,1,1]],[[0,1,2,1],[1,4,3,0],[2,0,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,4,0],[2,0,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,3,0],[2,0,4,2],[1,2,1,1]],[[0,1,2,1],[1,3,3,0],[2,0,3,3],[1,2,1,1]],[[0,1,2,1],[1,3,3,0],[2,0,3,2],[1,2,1,2]],[[0,1,3,1],[1,3,3,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,2],[1,3,3,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[1,4,3,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,4,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,0],[3,0,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,0,4,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,0,3,3],[1,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,0,3,2],[2,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,0,3,2],[1,3,2,0]],[[0,1,2,1],[1,3,3,0],[2,0,3,2],[1,2,3,0]],[[0,1,2,1],[1,3,3,0],[2,1,2,3],[0,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,1,2,2],[0,3,2,1]],[[0,1,2,1],[1,3,3,0],[2,1,2,2],[0,2,3,1]],[[0,1,2,1],[1,3,3,0],[2,1,2,2],[0,2,2,2]],[[0,1,3,1],[1,3,3,0],[2,1,3,1],[0,2,2,1]],[[0,1,2,2],[1,3,3,0],[2,1,3,1],[0,2,2,1]],[[0,1,2,1],[1,4,3,0],[2,1,3,1],[0,2,2,1]],[[0,1,2,1],[1,3,4,0],[2,1,3,1],[0,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,1,4,1],[0,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,1,3,1],[0,3,2,1]],[[0,1,2,1],[1,3,3,0],[2,1,3,1],[0,2,3,1]],[[0,1,2,1],[1,3,3,0],[2,1,3,1],[0,2,2,2]],[[0,1,3,1],[1,3,3,0],[2,1,3,2],[0,2,1,1]],[[0,1,2,2],[1,3,3,0],[2,1,3,2],[0,2,1,1]],[[0,1,2,1],[1,4,3,0],[2,1,3,2],[0,2,1,1]],[[0,1,2,1],[1,3,4,0],[2,1,3,2],[0,2,1,1]],[[0,1,2,1],[1,3,3,0],[2,1,4,2],[0,2,1,1]],[[0,1,2,1],[1,3,3,0],[2,1,3,3],[0,2,1,1]],[[0,1,2,1],[1,3,3,0],[2,1,3,2],[0,2,1,2]],[[0,1,3,1],[1,3,3,0],[2,1,3,2],[0,2,2,0]],[[0,1,2,2],[1,3,3,0],[2,1,3,2],[0,2,2,0]],[[0,1,2,1],[1,4,3,0],[2,1,3,2],[0,2,2,0]],[[0,1,2,1],[1,3,4,0],[2,1,3,2],[0,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,1,4,2],[0,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,1,3,3],[0,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,1,3,2],[0,3,2,0]],[[0,1,2,1],[1,3,3,0],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,2,2,0],[3,2,3,2],[0,2,0,0]],[[1,2,2,1],[3,2,2,0],[2,2,3,2],[0,2,0,0]],[[1,2,2,2],[2,2,2,0],[2,2,3,2],[0,2,0,0]],[[1,2,3,1],[2,2,2,0],[2,2,3,2],[0,2,0,0]],[[0,1,2,1],[1,3,3,0],[3,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,0,3],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,0,2],[2,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,0,2],[1,3,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,0,2],[1,2,3,1]],[[0,1,2,1],[1,3,3,0],[2,2,0,2],[1,2,2,2]],[[0,1,2,1],[1,3,3,0],[3,2,1,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,1,1],[2,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,1,1],[1,3,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,1,1],[1,2,3,1]],[[0,1,2,1],[1,3,3,0],[2,2,1,1],[1,2,2,2]],[[0,1,2,1],[1,3,3,0],[3,2,1,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,2,1,2],[2,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,2,1,2],[1,3,2,0]],[[0,1,2,1],[1,3,3,0],[2,2,1,2],[1,2,3,0]],[[0,1,2,1],[1,3,3,0],[3,2,2,1],[1,2,1,1]],[[0,1,2,1],[1,3,3,0],[2,2,2,1],[2,2,1,1]],[[0,1,2,1],[1,3,3,0],[2,2,2,1],[1,3,1,1]],[[0,1,2,1],[1,3,3,0],[2,2,2,3],[0,1,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,2,2],[0,1,3,1]],[[0,1,2,1],[1,3,3,0],[2,2,2,2],[0,1,2,2]],[[0,1,2,1],[1,3,3,0],[2,2,2,3],[1,0,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,2,2],[1,0,3,1]],[[0,1,2,1],[1,3,3,0],[2,2,2,2],[1,0,2,2]],[[0,1,2,1],[1,3,3,0],[3,2,2,2],[1,2,0,1]],[[0,1,2,1],[1,3,3,0],[2,2,2,2],[2,2,0,1]],[[0,1,2,1],[1,3,3,0],[2,2,2,2],[1,3,0,1]],[[0,1,2,1],[1,3,3,0],[3,2,2,2],[1,2,1,0]],[[0,1,2,1],[1,3,3,0],[2,2,2,2],[2,2,1,0]],[[0,1,2,1],[1,3,3,0],[2,2,2,2],[1,3,1,0]],[[1,3,2,1],[2,2,2,0],[2,2,3,2],[0,2,0,0]],[[2,2,2,1],[2,2,2,0],[2,2,3,2],[0,2,0,0]],[[0,1,3,1],[1,3,3,0],[2,2,3,1],[0,1,2,1]],[[0,1,2,2],[1,3,3,0],[2,2,3,1],[0,1,2,1]],[[0,1,2,1],[1,4,3,0],[2,2,3,1],[0,1,2,1]],[[0,1,2,1],[1,3,4,0],[2,2,3,1],[0,1,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,4,1],[0,1,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,1],[0,1,3,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,1],[0,1,2,2]],[[0,1,3,1],[1,3,3,0],[2,2,3,1],[0,2,1,1]],[[0,1,2,2],[1,3,3,0],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[1,4,3,0],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[1,3,4,0],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[1,3,3,0],[2,2,4,1],[0,2,1,1]],[[0,1,3,1],[1,3,3,0],[2,2,3,1],[1,0,2,1]],[[0,1,2,2],[1,3,3,0],[2,2,3,1],[1,0,2,1]],[[0,1,2,1],[1,4,3,0],[2,2,3,1],[1,0,2,1]],[[0,1,2,1],[1,3,4,0],[2,2,3,1],[1,0,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,4,1],[1,0,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,1],[1,0,3,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,1],[1,0,2,2]],[[0,1,3,1],[1,3,3,0],[2,2,3,1],[1,1,1,1]],[[0,1,2,2],[1,3,3,0],[2,2,3,1],[1,1,1,1]],[[0,1,2,1],[1,4,3,0],[2,2,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,4,0],[2,2,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,3,0],[2,2,4,1],[1,1,1,1]],[[0,1,3,1],[1,3,3,0],[2,2,3,2],[0,0,2,1]],[[0,1,2,2],[1,3,3,0],[2,2,3,2],[0,0,2,1]],[[0,1,2,1],[1,4,3,0],[2,2,3,2],[0,0,2,1]],[[0,1,2,1],[1,3,4,0],[2,2,3,2],[0,0,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,4,2],[0,0,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,3],[0,0,2,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,2],[0,0,2,2]],[[0,1,3,1],[1,3,3,0],[2,2,3,2],[0,1,1,1]],[[0,1,2,2],[1,3,3,0],[2,2,3,2],[0,1,1,1]],[[0,1,2,1],[1,4,3,0],[2,2,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,4,0],[2,2,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,3,0],[2,2,4,2],[0,1,1,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,3],[0,1,1,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,2],[0,1,1,2]],[[0,1,3,1],[1,3,3,0],[2,2,3,2],[0,1,2,0]],[[0,1,2,2],[1,3,3,0],[2,2,3,2],[0,1,2,0]],[[0,1,2,1],[1,4,3,0],[2,2,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,4,0],[2,2,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,3,0],[2,2,4,2],[0,1,2,0]],[[0,1,2,1],[1,3,3,0],[2,2,3,3],[0,1,2,0]],[[0,1,2,1],[1,3,3,0],[2,2,3,2],[0,1,3,0]],[[0,1,3,1],[1,3,3,0],[2,2,3,2],[0,2,0,1]],[[0,1,2,2],[1,3,3,0],[2,2,3,2],[0,2,0,1]],[[0,1,2,1],[1,4,3,0],[2,2,3,2],[0,2,0,1]],[[0,1,2,1],[1,3,4,0],[2,2,3,2],[0,2,0,1]],[[0,1,2,1],[1,3,3,0],[2,2,4,2],[0,2,0,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,3],[0,2,0,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,2],[0,2,0,2]],[[0,1,3,1],[1,3,3,0],[2,2,3,2],[0,2,1,0]],[[0,1,2,2],[1,3,3,0],[2,2,3,2],[0,2,1,0]],[[0,1,2,1],[1,4,3,0],[2,2,3,2],[0,2,1,0]],[[0,1,2,1],[1,3,4,0],[2,2,3,2],[0,2,1,0]],[[0,1,2,1],[1,3,3,0],[2,2,4,2],[0,2,1,0]],[[0,1,2,1],[1,3,3,0],[2,2,3,3],[0,2,1,0]],[[0,1,3,1],[1,3,3,0],[2,2,3,2],[1,0,1,1]],[[0,1,2,2],[1,3,3,0],[2,2,3,2],[1,0,1,1]],[[0,1,2,1],[1,4,3,0],[2,2,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,4,0],[2,2,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,3,0],[2,2,4,2],[1,0,1,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,3],[1,0,1,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,2],[1,0,1,2]],[[0,1,3,1],[1,3,3,0],[2,2,3,2],[1,0,2,0]],[[0,1,2,2],[1,3,3,0],[2,2,3,2],[1,0,2,0]],[[0,1,2,1],[1,4,3,0],[2,2,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,4,0],[2,2,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,3,0],[2,2,4,2],[1,0,2,0]],[[0,1,2,1],[1,3,3,0],[2,2,3,3],[1,0,2,0]],[[0,1,2,1],[1,3,3,0],[2,2,3,2],[1,0,3,0]],[[0,1,3,1],[1,3,3,0],[2,2,3,2],[1,1,0,1]],[[0,1,2,2],[1,3,3,0],[2,2,3,2],[1,1,0,1]],[[0,1,2,1],[1,4,3,0],[2,2,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,4,0],[2,2,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,3,0],[2,2,4,2],[1,1,0,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,3],[1,1,0,1]],[[0,1,2,1],[1,3,3,0],[2,2,3,2],[1,1,0,2]],[[0,1,3,1],[1,3,3,0],[2,2,3,2],[1,1,1,0]],[[0,1,2,2],[1,3,3,0],[2,2,3,2],[1,1,1,0]],[[0,1,2,1],[1,4,3,0],[2,2,3,2],[1,1,1,0]],[[0,1,2,1],[1,3,4,0],[2,2,3,2],[1,1,1,0]],[[0,1,2,1],[1,3,3,0],[2,2,4,2],[1,1,1,0]],[[0,1,2,1],[1,3,3,0],[2,2,3,3],[1,1,1,0]],[[0,1,2,1],[1,3,3,0],[3,3,0,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,3,0,1],[2,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,3,0,1],[1,3,2,1]],[[0,1,3,1],[1,3,3,0],[2,3,0,2],[0,2,2,1]],[[0,1,2,2],[1,3,3,0],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,4,3,0],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,4,0],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,3,0],[3,3,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,4,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,3,0,3],[0,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,3,0,2],[0,3,2,1]],[[0,1,2,1],[1,3,3,0],[2,3,0,2],[0,2,3,1]],[[0,1,2,1],[1,3,3,0],[2,3,0,2],[0,2,2,2]],[[0,1,3,1],[1,3,3,0],[2,3,0,2],[1,1,2,1]],[[0,1,2,2],[1,3,3,0],[2,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,4,3,0],[2,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,4,0],[2,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,3,0],[3,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,3,0],[2,4,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,3,0],[2,3,0,2],[2,1,2,1]],[[0,1,2,1],[1,3,3,0],[3,3,0,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,3,0,2],[2,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,3,0,2],[1,3,2,0]],[[0,1,3,1],[1,3,3,0],[2,3,1,1],[0,2,2,1]],[[0,1,2,2],[1,3,3,0],[2,3,1,1],[0,2,2,1]],[[0,1,2,1],[1,4,3,0],[2,3,1,1],[0,2,2,1]],[[0,1,2,1],[1,3,4,0],[2,3,1,1],[0,2,2,1]],[[0,1,2,1],[1,3,3,0],[3,3,1,1],[0,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,4,1,1],[0,2,2,1]],[[0,1,2,1],[1,3,3,0],[2,3,1,1],[0,3,2,1]],[[0,1,2,1],[1,3,3,0],[2,3,1,1],[0,2,3,1]],[[0,1,2,1],[1,3,3,0],[2,3,1,1],[0,2,2,2]],[[0,1,3,1],[1,3,3,0],[2,3,1,1],[1,1,2,1]],[[0,1,2,2],[1,3,3,0],[2,3,1,1],[1,1,2,1]],[[0,1,2,1],[1,4,3,0],[2,3,1,1],[1,1,2,1]],[[0,1,2,1],[1,3,4,0],[2,3,1,1],[1,1,2,1]],[[0,1,2,1],[1,3,3,0],[3,3,1,1],[1,1,2,1]],[[0,1,2,1],[1,3,3,0],[2,4,1,1],[1,1,2,1]],[[0,1,2,1],[1,3,3,0],[2,3,1,1],[2,1,2,1]],[[0,1,3,1],[1,3,3,0],[2,3,1,2],[0,2,2,0]],[[0,1,2,2],[1,3,3,0],[2,3,1,2],[0,2,2,0]],[[0,1,2,1],[1,4,3,0],[2,3,1,2],[0,2,2,0]],[[0,1,2,1],[1,3,4,0],[2,3,1,2],[0,2,2,0]],[[0,1,2,1],[1,3,3,0],[3,3,1,2],[0,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,4,1,2],[0,2,2,0]],[[0,1,2,1],[1,3,3,0],[2,3,1,2],[0,3,2,0]],[[0,1,2,1],[1,3,3,0],[2,3,1,2],[0,2,3,0]],[[0,1,3,1],[1,3,3,0],[2,3,1,2],[1,1,2,0]],[[0,1,2,2],[1,3,3,0],[2,3,1,2],[1,1,2,0]],[[0,1,2,1],[1,4,3,0],[2,3,1,2],[1,1,2,0]],[[0,1,2,1],[1,3,4,0],[2,3,1,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,0],[3,3,1,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,0],[2,4,1,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,0],[2,3,1,2],[2,1,2,0]],[[0,1,3,1],[1,3,3,0],[2,3,2,1],[0,1,2,1]],[[0,1,2,2],[1,3,3,0],[2,3,2,1],[0,1,2,1]],[[0,1,2,1],[1,4,3,0],[2,3,2,1],[0,1,2,1]],[[0,1,2,1],[1,3,4,0],[2,3,2,1],[0,1,2,1]],[[0,1,2,1],[1,3,3,0],[3,3,2,1],[0,1,2,1]],[[0,1,2,1],[1,3,3,0],[2,4,2,1],[0,1,2,1]],[[0,1,3,1],[1,3,3,0],[2,3,2,1],[0,2,1,1]],[[0,1,2,2],[1,3,3,0],[2,3,2,1],[0,2,1,1]],[[0,1,2,1],[1,4,3,0],[2,3,2,1],[0,2,1,1]],[[0,1,2,1],[1,3,4,0],[2,3,2,1],[0,2,1,1]],[[0,1,2,1],[1,3,3,0],[3,3,2,1],[0,2,1,1]],[[0,1,2,1],[1,3,3,0],[2,4,2,1],[0,2,1,1]],[[0,1,2,1],[1,3,3,0],[2,3,2,1],[0,3,1,1]],[[0,1,3,1],[1,3,3,0],[2,3,2,1],[1,0,2,1]],[[0,1,2,2],[1,3,3,0],[2,3,2,1],[1,0,2,1]],[[0,1,2,1],[1,4,3,0],[2,3,2,1],[1,0,2,1]],[[0,1,2,1],[1,3,4,0],[2,3,2,1],[1,0,2,1]],[[0,1,2,1],[1,3,3,0],[3,3,2,1],[1,0,2,1]],[[0,1,2,1],[1,3,3,0],[2,4,2,1],[1,0,2,1]],[[0,1,2,1],[1,3,3,0],[2,3,2,1],[2,0,2,1]],[[0,1,3,1],[1,3,3,0],[2,3,2,1],[1,1,1,1]],[[0,1,2,2],[1,3,3,0],[2,3,2,1],[1,1,1,1]],[[0,1,2,1],[1,4,3,0],[2,3,2,1],[1,1,1,1]],[[0,1,2,1],[1,3,4,0],[2,3,2,1],[1,1,1,1]],[[0,1,2,1],[1,3,3,0],[3,3,2,1],[1,1,1,1]],[[0,1,2,1],[1,3,3,0],[2,4,2,1],[1,1,1,1]],[[0,1,2,1],[1,3,3,0],[2,3,2,1],[2,1,1,1]],[[0,1,2,1],[1,4,3,0],[2,3,2,1],[1,2,0,1]],[[0,1,2,1],[1,3,3,0],[3,3,2,1],[1,2,0,1]],[[0,1,2,1],[1,3,3,0],[2,4,2,1],[1,2,0,1]],[[0,1,2,1],[1,3,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,2,1],[2,2,2,0],[2,2,2,2],[2,2,0,0]],[[1,2,2,1],[2,2,2,0],[3,2,2,2],[1,2,0,0]],[[1,2,2,1],[3,2,2,0],[2,2,2,2],[1,2,0,0]],[[1,2,2,2],[2,2,2,0],[2,2,2,2],[1,2,0,0]],[[1,2,3,1],[2,2,2,0],[2,2,2,2],[1,2,0,0]],[[1,3,2,1],[2,2,2,0],[2,2,2,2],[1,2,0,0]],[[2,2,2,1],[2,2,2,0],[2,2,2,2],[1,2,0,0]],[[0,1,3,1],[1,3,3,0],[2,3,2,2],[0,1,1,1]],[[0,1,2,2],[1,3,3,0],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[1,4,3,0],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[1,3,4,0],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[1,3,3,0],[3,3,2,2],[0,1,1,1]],[[0,1,2,1],[1,3,3,0],[2,4,2,2],[0,1,1,1]],[[0,1,3,1],[1,3,3,0],[2,3,2,2],[0,1,2,0]],[[0,1,2,2],[1,3,3,0],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[1,4,3,0],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[1,3,4,0],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[1,3,3,0],[3,3,2,2],[0,1,2,0]],[[0,1,2,1],[1,3,3,0],[2,4,2,2],[0,1,2,0]],[[0,1,3,1],[1,3,3,0],[2,3,2,2],[0,2,0,1]],[[0,1,2,2],[1,3,3,0],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[1,4,3,0],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[1,3,4,0],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[1,3,3,0],[3,3,2,2],[0,2,0,1]],[[0,1,2,1],[1,3,3,0],[2,4,2,2],[0,2,0,1]],[[0,1,2,1],[1,3,3,0],[2,3,2,2],[0,3,0,1]],[[0,1,3,1],[1,3,3,0],[2,3,2,2],[0,2,1,0]],[[0,1,2,2],[1,3,3,0],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[1,4,3,0],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[1,3,4,0],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[1,3,3,0],[3,3,2,2],[0,2,1,0]],[[0,1,2,1],[1,3,3,0],[2,4,2,2],[0,2,1,0]],[[0,1,2,1],[1,3,3,0],[2,3,2,2],[0,3,1,0]],[[0,1,3,1],[1,3,3,0],[2,3,2,2],[1,0,1,1]],[[0,1,2,2],[1,3,3,0],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[1,4,3,0],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[1,3,4,0],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[1,3,3,0],[3,3,2,2],[1,0,1,1]],[[0,1,2,1],[1,3,3,0],[2,4,2,2],[1,0,1,1]],[[0,1,2,1],[1,3,3,0],[2,3,2,2],[2,0,1,1]],[[0,1,3,1],[1,3,3,0],[2,3,2,2],[1,0,2,0]],[[0,1,2,2],[1,3,3,0],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[1,4,3,0],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[1,3,4,0],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[1,3,3,0],[3,3,2,2],[1,0,2,0]],[[0,1,2,1],[1,3,3,0],[2,4,2,2],[1,0,2,0]],[[0,1,2,1],[1,3,3,0],[2,3,2,2],[2,0,2,0]],[[0,1,3,1],[1,3,3,0],[2,3,2,2],[1,1,0,1]],[[0,1,2,2],[1,3,3,0],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[1,4,3,0],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[1,3,4,0],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[1,3,3,0],[3,3,2,2],[1,1,0,1]],[[0,1,2,1],[1,3,3,0],[2,4,2,2],[1,1,0,1]],[[0,1,2,1],[1,3,3,0],[2,3,2,2],[2,1,0,1]],[[0,1,3,1],[1,3,3,0],[2,3,2,2],[1,1,1,0]],[[0,1,2,2],[1,3,3,0],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[1,4,3,0],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[1,3,4,0],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[1,3,3,0],[3,3,2,2],[1,1,1,0]],[[0,1,2,1],[1,3,3,0],[2,4,2,2],[1,1,1,0]],[[0,1,2,1],[1,3,3,0],[2,3,2,2],[2,1,1,0]],[[1,2,2,1],[2,2,2,0],[2,2,2,2],[2,1,1,0]],[[1,2,2,1],[2,2,2,0],[3,2,2,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,0],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,0],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,0],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,0],[2,2,2,2],[1,1,1,0]],[[0,1,3,1],[1,3,3,0],[2,3,2,2],[1,2,0,0]],[[0,1,2,2],[1,3,3,0],[2,3,2,2],[1,2,0,0]],[[0,1,2,1],[1,4,3,0],[2,3,2,2],[1,2,0,0]],[[0,1,2,1],[1,3,4,0],[2,3,2,2],[1,2,0,0]],[[0,1,2,1],[1,3,3,0],[3,3,2,2],[1,2,0,0]],[[0,1,2,1],[1,3,3,0],[2,4,2,2],[1,2,0,0]],[[0,1,2,1],[1,3,3,0],[2,3,2,2],[2,2,0,0]],[[2,2,2,1],[2,2,2,0],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,0],[2,2,2,2],[2,1,0,1]],[[1,2,2,1],[2,2,2,0],[3,2,2,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,0],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,0],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,0],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,0],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,0],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,0],[2,2,2,2],[2,0,2,0]],[[1,2,2,1],[2,2,2,0],[3,2,2,2],[1,0,2,0]],[[1,2,2,1],[3,2,2,0],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,0],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,0],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,0],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,0],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,2,0],[2,2,2,2],[2,0,1,1]],[[1,2,2,1],[2,2,2,0],[3,2,2,2],[1,0,1,1]],[[1,2,2,1],[3,2,2,0],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,0],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,0],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,0],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,0],[2,2,2,2],[1,0,1,1]],[[0,1,3,1],[1,3,3,0],[2,3,3,1],[0,0,2,1]],[[0,1,2,2],[1,3,3,0],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[1,4,3,0],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[1,3,4,0],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[1,3,3,0],[2,3,4,1],[0,0,2,1]],[[1,2,2,1],[2,2,2,0],[3,2,2,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,0],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,0],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,0],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,0],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,0],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,0],[3,2,2,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,0],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,0],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,0],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,0],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,0],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,2,2,0],[3,2,2,2],[0,1,2,0]],[[1,2,2,1],[3,2,2,0],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,0],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,0],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,0],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,0],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,2,0],[3,2,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,2,0],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,0],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,0],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,0],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,0],[2,2,2,2],[0,1,1,1]],[[0,1,3,1],[1,3,3,0],[2,3,3,2],[0,0,1,1]],[[0,1,2,2],[1,3,3,0],[2,3,3,2],[0,0,1,1]],[[0,1,2,1],[1,4,3,0],[2,3,3,2],[0,0,1,1]],[[0,1,2,1],[1,3,4,0],[2,3,3,2],[0,0,1,1]],[[0,1,2,1],[1,3,3,0],[2,3,4,2],[0,0,1,1]],[[0,1,2,1],[1,3,3,0],[2,3,3,3],[0,0,1,1]],[[0,1,2,1],[1,3,3,0],[2,3,3,2],[0,0,1,2]],[[0,1,3,1],[1,3,3,0],[2,3,3,2],[0,0,2,0]],[[0,1,2,2],[1,3,3,0],[2,3,3,2],[0,0,2,0]],[[0,1,2,1],[1,4,3,0],[2,3,3,2],[0,0,2,0]],[[0,1,2,1],[1,3,4,0],[2,3,3,2],[0,0,2,0]],[[0,1,2,1],[1,3,3,0],[2,3,4,2],[0,0,2,0]],[[0,1,2,1],[1,3,3,0],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,2,2,0],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[2,2,2,0],[3,2,2,1],[1,2,0,1]],[[1,2,2,1],[3,2,2,0],[2,2,2,1],[1,2,0,1]],[[1,2,3,1],[2,2,2,0],[2,2,2,1],[1,2,0,1]],[[1,3,2,1],[2,2,2,0],[2,2,2,1],[1,2,0,1]],[[0,1,3,1],[1,3,3,0],[2,3,3,2],[0,2,0,0]],[[0,1,2,2],[1,3,3,0],[2,3,3,2],[0,2,0,0]],[[0,1,2,1],[1,4,3,0],[2,3,3,2],[0,2,0,0]],[[0,1,2,1],[1,3,4,0],[2,3,3,2],[0,2,0,0]],[[0,1,2,1],[1,3,3,0],[3,3,3,2],[0,2,0,0]],[[0,1,2,1],[1,3,3,0],[2,4,3,2],[0,2,0,0]],[[2,2,2,1],[2,2,2,0],[2,2,2,1],[1,2,0,1]],[[1,2,2,1],[2,2,2,0],[2,2,2,1],[2,1,1,1]],[[1,2,2,1],[2,2,2,0],[3,2,2,1],[1,1,1,1]],[[1,2,2,1],[3,2,2,0],[2,2,2,1],[1,1,1,1]],[[1,2,2,2],[2,2,2,0],[2,2,2,1],[1,1,1,1]],[[1,2,3,1],[2,2,2,0],[2,2,2,1],[1,1,1,1]],[[1,3,2,1],[2,2,2,0],[2,2,2,1],[1,1,1,1]],[[2,2,2,1],[2,2,2,0],[2,2,2,1],[1,1,1,1]],[[1,2,2,1],[2,2,2,0],[2,2,2,1],[2,0,2,1]],[[1,2,2,1],[2,2,2,0],[3,2,2,1],[1,0,2,1]],[[1,2,2,1],[3,2,2,0],[2,2,2,1],[1,0,2,1]],[[1,2,2,2],[2,2,2,0],[2,2,2,1],[1,0,2,1]],[[1,2,3,1],[2,2,2,0],[2,2,2,1],[1,0,2,1]],[[1,3,2,1],[2,2,2,0],[2,2,2,1],[1,0,2,1]],[[2,2,2,1],[2,2,2,0],[2,2,2,1],[1,0,2,1]],[[1,2,2,1],[2,2,2,0],[3,2,2,1],[0,2,1,1]],[[1,2,2,1],[3,2,2,0],[2,2,2,1],[0,2,1,1]],[[1,2,2,2],[2,2,2,0],[2,2,2,1],[0,2,1,1]],[[1,2,3,1],[2,2,2,0],[2,2,2,1],[0,2,1,1]],[[1,3,2,1],[2,2,2,0],[2,2,2,1],[0,2,1,1]],[[2,2,2,1],[2,2,2,0],[2,2,2,1],[0,2,1,1]],[[1,2,2,1],[2,2,2,0],[3,2,2,1],[0,1,2,1]],[[1,2,2,1],[3,2,2,0],[2,2,2,1],[0,1,2,1]],[[1,2,2,2],[2,2,2,0],[2,2,2,1],[0,1,2,1]],[[1,2,3,1],[2,2,2,0],[2,2,2,1],[0,1,2,1]],[[1,3,2,1],[2,2,2,0],[2,2,2,1],[0,1,2,1]],[[2,2,2,1],[2,2,2,0],[2,2,2,1],[0,1,2,1]],[[0,1,3,1],[1,3,3,0],[2,3,3,2],[1,1,0,0]],[[0,1,2,2],[1,3,3,0],[2,3,3,2],[1,1,0,0]],[[0,1,2,1],[1,4,3,0],[2,3,3,2],[1,1,0,0]],[[0,1,2,1],[1,3,4,0],[2,3,3,2],[1,1,0,0]],[[0,1,2,1],[1,3,3,0],[3,3,3,2],[1,1,0,0]],[[0,1,2,1],[1,3,3,0],[2,4,3,2],[1,1,0,0]],[[0,1,2,1],[1,3,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[2,2,2,0],[2,2,1,2],[2,1,2,0]],[[1,2,2,1],[2,2,2,0],[3,2,1,2],[1,1,2,0]],[[1,2,2,1],[3,2,2,0],[2,2,1,2],[1,1,2,0]],[[1,2,2,2],[2,2,2,0],[2,2,1,2],[1,1,2,0]],[[1,2,3,1],[2,2,2,0],[2,2,1,2],[1,1,2,0]],[[1,3,2,1],[2,2,2,0],[2,2,1,2],[1,1,2,0]],[[2,2,2,1],[2,2,2,0],[2,2,1,2],[1,1,2,0]],[[1,2,2,1],[2,2,2,0],[3,2,1,2],[0,2,2,0]],[[1,2,2,1],[3,2,2,0],[2,2,1,2],[0,2,2,0]],[[1,2,2,2],[2,2,2,0],[2,2,1,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,0],[2,2,1,2],[0,2,2,0]],[[1,3,2,1],[2,2,2,0],[2,2,1,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,0],[2,2,1,2],[0,2,2,0]],[[1,2,2,1],[2,2,2,0],[2,2,1,1],[2,1,2,1]],[[1,2,2,1],[2,2,2,0],[3,2,1,1],[1,1,2,1]],[[1,2,2,1],[3,2,2,0],[2,2,1,1],[1,1,2,1]],[[1,2,2,2],[2,2,2,0],[2,2,1,1],[1,1,2,1]],[[1,2,3,1],[2,2,2,0],[2,2,1,1],[1,1,2,1]],[[1,3,2,1],[2,2,2,0],[2,2,1,1],[1,1,2,1]],[[2,2,2,1],[2,2,2,0],[2,2,1,1],[1,1,2,1]],[[1,2,2,1],[2,2,2,0],[3,2,1,1],[0,2,2,1]],[[1,2,2,1],[3,2,2,0],[2,2,1,1],[0,2,2,1]],[[1,2,2,2],[2,2,2,0],[2,2,1,1],[0,2,2,1]],[[1,2,3,1],[2,2,2,0],[2,2,1,1],[0,2,2,1]],[[1,3,2,1],[2,2,2,0],[2,2,1,1],[0,2,2,1]],[[2,2,2,1],[2,2,2,0],[2,2,1,1],[0,2,2,1]],[[1,2,2,1],[2,2,2,0],[2,2,0,2],[1,3,2,0]],[[1,2,2,1],[2,2,2,0],[2,2,0,2],[2,2,2,0]],[[1,2,2,1],[2,2,2,0],[3,2,0,2],[1,2,2,0]],[[1,2,2,1],[3,2,2,0],[2,2,0,2],[1,2,2,0]],[[1,2,3,1],[2,2,2,0],[2,2,0,2],[1,2,2,0]],[[1,3,2,1],[2,2,2,0],[2,2,0,2],[1,2,2,0]],[[2,2,2,1],[2,2,2,0],[2,2,0,2],[1,2,2,0]],[[1,2,2,1],[2,2,2,0],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[2,2,2,0],[3,2,0,2],[1,1,2,1]],[[1,2,2,1],[3,2,2,0],[2,2,0,2],[1,1,2,1]],[[1,2,2,2],[2,2,2,0],[2,2,0,2],[1,1,2,1]],[[1,2,3,1],[2,2,2,0],[2,2,0,2],[1,1,2,1]],[[1,3,2,1],[2,2,2,0],[2,2,0,2],[1,1,2,1]],[[2,2,2,1],[2,2,2,0],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,2,2,0],[3,2,0,2],[0,2,2,1]],[[1,2,2,1],[3,2,2,0],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,2,0],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,2,2,0],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,2,0],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,2,0],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,2,2,0],[2,2,0,1],[1,3,2,1]],[[1,2,2,1],[2,2,2,0],[2,2,0,1],[2,2,2,1]],[[1,2,2,1],[2,2,2,0],[3,2,0,1],[1,2,2,1]],[[1,2,2,1],[3,2,2,0],[2,2,0,1],[1,2,2,1]],[[1,2,3,1],[2,2,2,0],[2,2,0,1],[1,2,2,1]],[[1,3,2,1],[2,2,2,0],[2,2,0,1],[1,2,2,1]],[[2,2,2,1],[2,2,2,0],[2,2,0,1],[1,2,2,1]],[[0,1,3,1],[1,3,3,1],[1,0,2,2],[1,2,2,1]],[[0,1,2,2],[1,3,3,1],[1,0,2,2],[1,2,2,1]],[[0,1,2,1],[1,3,4,1],[1,0,2,2],[1,2,2,1]],[[0,1,3,1],[1,3,3,1],[1,0,3,2],[1,1,2,1]],[[0,1,2,2],[1,3,3,1],[1,0,3,2],[1,1,2,1]],[[0,1,2,1],[1,3,4,1],[1,0,3,2],[1,1,2,1]],[[0,1,3,1],[1,3,3,1],[1,0,3,2],[1,2,1,1]],[[0,1,2,2],[1,3,3,1],[1,0,3,2],[1,2,1,1]],[[0,1,2,1],[1,3,4,1],[1,0,3,2],[1,2,1,1]],[[0,1,3,1],[1,3,3,1],[1,0,3,2],[1,2,2,0]],[[0,1,2,2],[1,3,3,1],[1,0,3,2],[1,2,2,0]],[[0,1,2,1],[1,3,4,1],[1,0,3,2],[1,2,2,0]],[[0,1,3,1],[1,3,3,1],[1,1,1,2],[1,2,2,1]],[[0,1,2,2],[1,3,3,1],[1,1,1,2],[1,2,2,1]],[[0,1,2,1],[1,4,3,1],[1,1,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,4,1],[1,1,1,2],[1,2,2,1]],[[0,1,3,1],[1,3,3,1],[1,1,2,2],[1,2,1,1]],[[0,1,2,2],[1,3,3,1],[1,1,2,2],[1,2,1,1]],[[0,1,2,1],[1,4,3,1],[1,1,2,2],[1,2,1,1]],[[0,1,2,1],[1,3,4,1],[1,1,2,2],[1,2,1,1]],[[0,1,3,1],[1,3,3,1],[1,1,2,2],[1,2,2,0]],[[0,1,2,2],[1,3,3,1],[1,1,2,2],[1,2,2,0]],[[0,1,2,1],[1,4,3,1],[1,1,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,4,1],[1,1,2,2],[1,2,2,0]],[[0,1,3,1],[1,3,3,1],[1,1,3,0],[1,2,2,1]],[[0,1,2,2],[1,3,3,1],[1,1,3,0],[1,2,2,1]],[[0,1,2,1],[1,4,3,1],[1,1,3,0],[1,2,2,1]],[[0,1,2,1],[1,3,4,1],[1,1,3,0],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[1,1,4,0],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[1,1,3,0],[2,2,2,1]],[[0,1,2,1],[1,3,3,1],[1,1,3,0],[1,3,2,1]],[[0,1,2,1],[1,3,3,1],[1,1,3,0],[1,2,3,1]],[[0,1,2,1],[1,3,3,1],[1,1,3,0],[1,2,2,2]],[[0,1,3,1],[1,3,3,1],[1,1,3,1],[1,2,1,1]],[[0,1,2,2],[1,3,3,1],[1,1,3,1],[1,2,1,1]],[[0,1,2,1],[1,4,3,1],[1,1,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,4,1],[1,1,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,3,1],[1,1,4,1],[1,2,1,1]],[[0,1,3,1],[1,3,3,1],[1,1,3,1],[1,2,2,0]],[[0,1,2,2],[1,3,3,1],[1,1,3,1],[1,2,2,0]],[[0,1,2,1],[1,4,3,1],[1,1,3,1],[1,2,2,0]],[[0,1,2,1],[1,3,4,1],[1,1,3,1],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[1,1,4,1],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[1,1,3,1],[2,2,2,0]],[[0,1,2,1],[1,3,3,1],[1,1,3,1],[1,3,2,0]],[[0,1,2,1],[1,3,3,1],[1,1,3,1],[1,2,3,0]],[[0,1,3,1],[1,3,3,1],[1,1,3,2],[1,0,2,1]],[[0,1,2,2],[1,3,3,1],[1,1,3,2],[1,0,2,1]],[[0,1,2,1],[1,3,4,1],[1,1,3,2],[1,0,2,1]],[[0,1,3,1],[1,3,3,1],[1,1,3,2],[1,1,1,1]],[[0,1,2,2],[1,3,3,1],[1,1,3,2],[1,1,1,1]],[[0,1,2,1],[1,3,4,1],[1,1,3,2],[1,1,1,1]],[[0,1,3,1],[1,3,3,1],[1,1,3,2],[1,1,2,0]],[[0,1,2,2],[1,3,3,1],[1,1,3,2],[1,1,2,0]],[[0,1,2,1],[1,3,4,1],[1,1,3,2],[1,1,2,0]],[[1,2,2,1],[2,2,2,0],[2,1,3,2],[2,1,1,0]],[[1,2,2,1],[2,2,2,0],[3,1,3,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,0],[2,1,3,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,0],[2,1,3,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,0],[2,1,3,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,0],[2,1,3,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,0],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[2,2,2,0],[2,1,3,2],[2,1,0,1]],[[1,2,2,1],[2,2,2,0],[3,1,3,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,0],[2,1,3,2],[1,1,0,1]],[[0,1,3,1],[1,3,3,1],[1,2,0,2],[1,2,2,1]],[[0,1,2,2],[1,3,3,1],[1,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,4,3,1],[1,2,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,4,1],[1,2,0,2],[1,2,2,1]],[[0,1,3,1],[1,3,3,1],[1,2,1,2],[1,1,2,1]],[[0,1,2,2],[1,3,3,1],[1,2,1,2],[1,1,2,1]],[[0,1,2,1],[1,4,3,1],[1,2,1,2],[1,1,2,1]],[[0,1,2,1],[1,3,4,1],[1,2,1,2],[1,1,2,1]],[[0,1,3,1],[1,3,3,1],[1,2,2,2],[1,0,2,1]],[[0,1,2,2],[1,3,3,1],[1,2,2,2],[1,0,2,1]],[[0,1,2,1],[1,3,4,1],[1,2,2,2],[1,0,2,1]],[[0,1,3,1],[1,3,3,1],[1,2,2,2],[1,1,1,1]],[[0,1,2,2],[1,3,3,1],[1,2,2,2],[1,1,1,1]],[[0,1,2,1],[1,4,3,1],[1,2,2,2],[1,1,1,1]],[[0,1,2,1],[1,3,4,1],[1,2,2,2],[1,1,1,1]],[[0,1,3,1],[1,3,3,1],[1,2,2,2],[1,1,2,0]],[[0,1,2,2],[1,3,3,1],[1,2,2,2],[1,1,2,0]],[[0,1,2,1],[1,4,3,1],[1,2,2,2],[1,1,2,0]],[[0,1,2,1],[1,3,4,1],[1,2,2,2],[1,1,2,0]],[[0,1,3,1],[1,3,3,1],[1,2,2,2],[1,2,0,1]],[[0,1,2,2],[1,3,3,1],[1,2,2,2],[1,2,0,1]],[[0,1,2,1],[1,4,3,1],[1,2,2,2],[1,2,0,1]],[[0,1,2,1],[1,3,4,1],[1,2,2,2],[1,2,0,1]],[[0,1,3,1],[1,3,3,1],[1,2,2,2],[1,2,1,0]],[[0,1,2,2],[1,3,3,1],[1,2,2,2],[1,2,1,0]],[[0,1,2,1],[1,4,3,1],[1,2,2,2],[1,2,1,0]],[[0,1,2,1],[1,3,4,1],[1,2,2,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,0],[2,1,3,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,0],[2,1,3,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,0],[2,1,3,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,0],[2,1,3,2],[1,1,0,1]],[[0,1,3,1],[1,3,3,1],[1,2,3,0],[1,1,2,1]],[[0,1,2,2],[1,3,3,1],[1,2,3,0],[1,1,2,1]],[[0,1,2,1],[1,4,3,1],[1,2,3,0],[1,1,2,1]],[[0,1,2,1],[1,3,4,1],[1,2,3,0],[1,1,2,1]],[[0,1,2,1],[1,3,3,1],[1,2,4,0],[1,1,2,1]],[[0,1,2,1],[1,3,3,1],[1,2,3,0],[1,1,3,1]],[[0,1,2,1],[1,3,3,1],[1,2,3,0],[1,1,2,2]],[[0,1,3,1],[1,3,3,1],[1,2,3,0],[1,2,1,1]],[[0,1,2,2],[1,3,3,1],[1,2,3,0],[1,2,1,1]],[[0,1,2,1],[1,4,3,1],[1,2,3,0],[1,2,1,1]],[[0,1,2,1],[1,3,4,1],[1,2,3,0],[1,2,1,1]],[[0,1,2,1],[1,3,3,1],[1,2,4,0],[1,2,1,1]],[[0,1,3,1],[1,3,3,1],[1,2,3,1],[1,0,2,1]],[[0,1,2,2],[1,3,3,1],[1,2,3,1],[1,0,2,1]],[[0,1,2,1],[1,3,4,1],[1,2,3,1],[1,0,2,1]],[[0,1,2,1],[1,3,3,1],[1,2,4,1],[1,0,2,1]],[[0,1,3,1],[1,3,3,1],[1,2,3,1],[1,1,1,1]],[[0,1,2,2],[1,3,3,1],[1,2,3,1],[1,1,1,1]],[[0,1,2,1],[1,4,3,1],[1,2,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,4,1],[1,2,3,1],[1,1,1,1]],[[0,1,2,1],[1,3,3,1],[1,2,4,1],[1,1,1,1]],[[0,1,3,1],[1,3,3,1],[1,2,3,1],[1,1,2,0]],[[0,1,2,2],[1,3,3,1],[1,2,3,1],[1,1,2,0]],[[0,1,2,1],[1,4,3,1],[1,2,3,1],[1,1,2,0]],[[0,1,2,1],[1,3,4,1],[1,2,3,1],[1,1,2,0]],[[0,1,2,1],[1,3,3,1],[1,2,4,1],[1,1,2,0]],[[0,1,2,1],[1,3,3,1],[1,2,3,1],[1,1,3,0]],[[0,1,3,1],[1,3,3,1],[1,2,3,1],[1,2,0,1]],[[0,1,2,2],[1,3,3,1],[1,2,3,1],[1,2,0,1]],[[0,1,2,1],[1,4,3,1],[1,2,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,4,1],[1,2,3,1],[1,2,0,1]],[[0,1,2,1],[1,3,3,1],[1,2,4,1],[1,2,0,1]],[[0,1,3,1],[1,3,3,1],[1,2,3,1],[1,2,1,0]],[[0,1,2,2],[1,3,3,1],[1,2,3,1],[1,2,1,0]],[[0,1,2,1],[1,4,3,1],[1,2,3,1],[1,2,1,0]],[[0,1,2,1],[1,3,4,1],[1,2,3,1],[1,2,1,0]],[[0,1,2,1],[1,3,3,1],[1,2,4,1],[1,2,1,0]],[[1,2,2,1],[2,2,2,0],[2,1,3,2],[2,0,2,0]],[[1,2,2,1],[2,2,2,0],[3,1,3,2],[1,0,2,0]],[[1,2,2,1],[3,2,2,0],[2,1,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,0],[2,1,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,0],[2,1,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,0],[2,1,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,0],[2,1,3,2],[1,0,2,0]],[[0,1,3,1],[1,3,3,1],[1,2,3,2],[1,1,0,1]],[[0,1,2,2],[1,3,3,1],[1,2,3,2],[1,1,0,1]],[[0,1,2,1],[1,3,4,1],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,2,2,0],[2,1,3,2],[2,0,1,1]],[[1,2,2,1],[2,2,2,0],[3,1,3,2],[1,0,1,1]],[[1,2,2,1],[3,2,2,0],[2,1,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,0],[2,1,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,0],[2,1,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,0],[2,1,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,0],[2,1,3,2],[1,0,1,1]],[[1,2,2,1],[2,2,2,0],[3,1,3,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,0],[2,1,3,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,0],[2,1,3,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,0],[2,1,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,0],[2,1,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,0],[2,1,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,0],[3,1,3,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,0],[2,1,3,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,0],[2,1,3,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,0],[2,1,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,0],[2,1,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,0],[2,1,3,2],[0,2,0,1]],[[0,1,3,1],[1,3,3,1],[1,3,0,1],[1,2,2,1]],[[0,1,2,2],[1,3,3,1],[1,3,0,1],[1,2,2,1]],[[0,1,2,1],[1,4,3,1],[1,3,0,1],[1,2,2,1]],[[0,1,2,1],[1,3,4,1],[1,3,0,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[1,4,0,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[1,3,0,1],[2,2,2,1]],[[0,1,2,1],[1,3,3,1],[1,3,0,1],[1,3,2,1]],[[0,1,2,1],[1,3,3,1],[1,3,0,1],[1,2,3,1]],[[0,1,2,1],[1,3,3,1],[1,3,0,1],[1,2,2,2]],[[0,1,3,1],[1,3,3,1],[1,3,0,2],[1,1,2,1]],[[0,1,2,2],[1,3,3,1],[1,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,4,3,1],[1,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,4,1],[1,3,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,3,1],[1,4,0,2],[1,1,2,1]],[[0,1,3,1],[1,3,3,1],[1,3,0,2],[1,2,1,1]],[[0,1,2,2],[1,3,3,1],[1,3,0,2],[1,2,1,1]],[[0,1,2,1],[1,4,3,1],[1,3,0,2],[1,2,1,1]],[[0,1,2,1],[1,3,4,1],[1,3,0,2],[1,2,1,1]],[[0,1,2,1],[1,3,3,1],[1,4,0,2],[1,2,1,1]],[[0,1,2,1],[1,3,3,1],[1,3,0,2],[2,2,1,1]],[[0,1,2,1],[1,3,3,1],[1,3,0,2],[1,3,1,1]],[[0,1,3,1],[1,3,3,1],[1,3,0,2],[1,2,2,0]],[[0,1,2,2],[1,3,3,1],[1,3,0,2],[1,2,2,0]],[[0,1,2,1],[1,4,3,1],[1,3,0,2],[1,2,2,0]],[[0,1,2,1],[1,3,4,1],[1,3,0,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[1,4,0,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[1,3,0,2],[2,2,2,0]],[[0,1,2,1],[1,3,3,1],[1,3,0,2],[1,3,2,0]],[[0,1,2,1],[1,3,3,1],[1,3,0,2],[1,2,3,0]],[[0,1,3,1],[1,3,3,1],[1,3,1,0],[1,2,2,1]],[[0,1,2,2],[1,3,3,1],[1,3,1,0],[1,2,2,1]],[[0,1,2,1],[1,4,3,1],[1,3,1,0],[1,2,2,1]],[[0,1,2,1],[1,3,4,1],[1,3,1,0],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[1,4,1,0],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[1,3,1,0],[2,2,2,1]],[[0,1,2,1],[1,3,3,1],[1,3,1,0],[1,3,2,1]],[[0,1,2,1],[1,3,3,1],[1,3,1,0],[1,2,3,1]],[[0,1,2,1],[1,3,3,1],[1,3,1,0],[1,2,2,2]],[[0,1,3,1],[1,3,3,1],[1,3,1,1],[1,2,2,0]],[[0,1,2,2],[1,3,3,1],[1,3,1,1],[1,2,2,0]],[[0,1,2,1],[1,4,3,1],[1,3,1,1],[1,2,2,0]],[[0,1,2,1],[1,3,4,1],[1,3,1,1],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[1,4,1,1],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[1,3,1,1],[2,2,2,0]],[[0,1,2,1],[1,3,3,1],[1,3,1,1],[1,3,2,0]],[[0,1,2,1],[1,3,3,1],[1,3,1,1],[1,2,3,0]],[[0,1,3,1],[1,3,3,1],[1,3,1,2],[1,1,1,1]],[[0,1,2,2],[1,3,3,1],[1,3,1,2],[1,1,1,1]],[[0,1,2,1],[1,4,3,1],[1,3,1,2],[1,1,1,1]],[[0,1,2,1],[1,3,4,1],[1,3,1,2],[1,1,1,1]],[[0,1,2,1],[1,3,3,1],[1,4,1,2],[1,1,1,1]],[[0,1,3,1],[1,3,3,1],[1,3,1,2],[1,1,2,0]],[[0,1,2,2],[1,3,3,1],[1,3,1,2],[1,1,2,0]],[[0,1,2,1],[1,4,3,1],[1,3,1,2],[1,1,2,0]],[[0,1,2,1],[1,3,4,1],[1,3,1,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,1],[1,4,1,2],[1,1,2,0]],[[0,1,3,1],[1,3,3,1],[1,3,1,2],[1,2,0,1]],[[0,1,2,2],[1,3,3,1],[1,3,1,2],[1,2,0,1]],[[0,1,2,1],[1,4,3,1],[1,3,1,2],[1,2,0,1]],[[0,1,2,1],[1,3,4,1],[1,3,1,2],[1,2,0,1]],[[0,1,2,1],[1,3,3,1],[1,4,1,2],[1,2,0,1]],[[0,1,2,1],[1,3,3,1],[1,3,1,2],[2,2,0,1]],[[0,1,2,1],[1,3,3,1],[1,3,1,2],[1,3,0,1]],[[0,1,3,1],[1,3,3,1],[1,3,1,2],[1,2,1,0]],[[0,1,2,2],[1,3,3,1],[1,3,1,2],[1,2,1,0]],[[0,1,2,1],[1,4,3,1],[1,3,1,2],[1,2,1,0]],[[0,1,2,1],[1,3,4,1],[1,3,1,2],[1,2,1,0]],[[0,1,2,1],[1,3,3,1],[1,4,1,2],[1,2,1,0]],[[0,1,2,1],[1,3,3,1],[1,3,1,2],[2,2,1,0]],[[0,1,2,1],[1,3,3,1],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[2,2,2,0],[3,1,3,2],[0,1,2,0]],[[1,2,2,1],[3,2,2,0],[2,1,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,0],[2,1,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,0],[2,1,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,0],[2,1,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,0],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,2,0],[3,1,3,2],[0,1,1,1]],[[0,1,3,1],[1,3,3,1],[1,3,2,0],[1,1,2,1]],[[0,1,2,2],[1,3,3,1],[1,3,2,0],[1,1,2,1]],[[0,1,2,1],[1,4,3,1],[1,3,2,0],[1,1,2,1]],[[0,1,2,1],[1,3,4,1],[1,3,2,0],[1,1,2,1]],[[0,1,2,1],[1,3,3,1],[1,4,2,0],[1,1,2,1]],[[0,1,3,1],[1,3,3,1],[1,3,2,0],[1,2,1,1]],[[0,1,2,2],[1,3,3,1],[1,3,2,0],[1,2,1,1]],[[0,1,2,1],[1,4,3,1],[1,3,2,0],[1,2,1,1]],[[0,1,2,1],[1,3,4,1],[1,3,2,0],[1,2,1,1]],[[0,1,2,1],[1,3,3,1],[1,4,2,0],[1,2,1,1]],[[0,1,2,1],[1,3,3,1],[1,3,2,0],[2,2,1,1]],[[0,1,2,1],[1,3,3,1],[1,3,2,0],[1,3,1,1]],[[0,1,3,1],[1,3,3,1],[1,3,2,1],[1,1,1,1]],[[0,1,2,2],[1,3,3,1],[1,3,2,1],[1,1,1,1]],[[0,1,2,1],[1,4,3,1],[1,3,2,1],[1,1,1,1]],[[0,1,2,1],[1,3,4,1],[1,3,2,1],[1,1,1,1]],[[0,1,2,1],[1,3,3,1],[1,4,2,1],[1,1,1,1]],[[0,1,3,1],[1,3,3,1],[1,3,2,1],[1,1,2,0]],[[0,1,2,2],[1,3,3,1],[1,3,2,1],[1,1,2,0]],[[0,1,2,1],[1,4,3,1],[1,3,2,1],[1,1,2,0]],[[0,1,2,1],[1,3,4,1],[1,3,2,1],[1,1,2,0]],[[0,1,2,1],[1,3,3,1],[1,4,2,1],[1,1,2,0]],[[0,1,3,1],[1,3,3,1],[1,3,2,1],[1,2,0,1]],[[0,1,2,2],[1,3,3,1],[1,3,2,1],[1,2,0,1]],[[0,1,2,1],[1,4,3,1],[1,3,2,1],[1,2,0,1]],[[0,1,2,1],[1,3,4,1],[1,3,2,1],[1,2,0,1]],[[0,1,2,1],[1,3,3,1],[1,4,2,1],[1,2,0,1]],[[0,1,2,1],[1,3,3,1],[1,3,2,1],[2,2,0,1]],[[0,1,2,1],[1,3,3,1],[1,3,2,1],[1,3,0,1]],[[0,1,3,1],[1,3,3,1],[1,3,2,1],[1,2,1,0]],[[0,1,2,2],[1,3,3,1],[1,3,2,1],[1,2,1,0]],[[0,1,2,1],[1,4,3,1],[1,3,2,1],[1,2,1,0]],[[0,1,2,1],[1,3,4,1],[1,3,2,1],[1,2,1,0]],[[0,1,2,1],[1,3,3,1],[1,4,2,1],[1,2,1,0]],[[0,1,2,1],[1,3,3,1],[1,3,2,1],[2,2,1,0]],[[0,1,2,1],[1,3,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[3,2,2,0],[2,1,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,0],[2,1,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,0],[2,1,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,0],[2,1,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,0],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[3,2,2,0],[2,1,3,2],[0,0,2,1]],[[1,2,2,2],[2,2,2,0],[2,1,3,2],[0,0,2,1]],[[1,2,3,1],[2,2,2,0],[2,1,3,2],[0,0,2,1]],[[1,3,2,1],[2,2,2,0],[2,1,3,2],[0,0,2,1]],[[2,2,2,1],[2,2,2,0],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[2,2,2,0],[2,1,3,1],[2,1,1,1]],[[1,2,2,1],[2,2,2,0],[3,1,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,2,0],[2,1,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,2,0],[2,1,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,2,0],[2,1,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,2,0],[2,1,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,2,0],[2,1,3,1],[1,1,1,1]],[[1,2,2,1],[2,2,2,0],[2,1,3,1],[2,0,2,1]],[[1,2,2,1],[2,2,2,0],[3,1,3,1],[1,0,2,1]],[[1,2,2,1],[3,2,2,0],[2,1,3,1],[1,0,2,1]],[[1,2,2,2],[2,2,2,0],[2,1,3,1],[1,0,2,1]],[[1,2,3,1],[2,2,2,0],[2,1,3,1],[1,0,2,1]],[[1,3,2,1],[2,2,2,0],[2,1,3,1],[1,0,2,1]],[[2,2,2,1],[2,2,2,0],[2,1,3,1],[1,0,2,1]],[[0,1,3,1],[1,3,3,1],[1,3,3,0],[1,1,2,0]],[[0,1,2,2],[1,3,3,1],[1,3,3,0],[1,1,2,0]],[[0,1,2,1],[1,4,3,1],[1,3,3,0],[1,1,2,0]],[[0,1,2,1],[1,3,4,1],[1,3,3,0],[1,1,2,0]],[[0,1,2,1],[1,3,3,1],[1,4,3,0],[1,1,2,0]],[[0,1,3,1],[1,3,3,1],[1,3,3,0],[1,2,1,0]],[[0,1,2,2],[1,3,3,1],[1,3,3,0],[1,2,1,0]],[[0,1,2,1],[1,4,3,1],[1,3,3,0],[1,2,1,0]],[[0,1,2,1],[1,3,4,1],[1,3,3,0],[1,2,1,0]],[[0,1,2,1],[1,3,3,1],[1,4,3,0],[1,2,1,0]],[[0,1,2,1],[1,3,3,1],[1,3,3,0],[2,2,1,0]],[[0,1,2,1],[1,3,3,1],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[2,2,2,0],[3,1,3,1],[0,2,1,1]],[[1,2,2,1],[3,2,2,0],[2,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,2,0],[2,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,2,0],[2,1,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,2,0],[2,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,2,0],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,2,2,0],[3,1,3,1],[0,1,2,1]],[[1,2,2,1],[3,2,2,0],[2,1,3,1],[0,1,2,1]],[[1,2,2,2],[2,2,2,0],[2,1,3,1],[0,1,2,1]],[[1,2,3,1],[2,2,2,0],[2,1,3,1],[0,1,2,1]],[[1,3,2,1],[2,2,2,0],[2,1,3,1],[0,1,2,1]],[[2,2,2,1],[2,2,2,0],[2,1,3,1],[0,1,2,1]],[[0,1,3,1],[1,3,3,1],[1,3,3,1],[1,2,0,0]],[[0,1,2,2],[1,3,3,1],[1,3,3,1],[1,2,0,0]],[[0,1,2,1],[1,4,3,1],[1,3,3,1],[1,2,0,0]],[[0,1,2,1],[1,3,4,1],[1,3,3,1],[1,2,0,0]],[[0,1,2,1],[1,3,3,1],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,2,2,0],[2,1,2,2],[1,3,1,0]],[[1,2,2,1],[2,2,2,0],[2,1,2,2],[2,2,1,0]],[[1,2,2,1],[2,2,2,0],[3,1,2,2],[1,2,1,0]],[[1,2,2,1],[3,2,2,0],[2,1,2,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,0],[2,1,2,2],[1,2,1,0]],[[1,2,3,1],[2,2,2,0],[2,1,2,2],[1,2,1,0]],[[1,3,2,1],[2,2,2,0],[2,1,2,2],[1,2,1,0]],[[2,2,2,1],[2,2,2,0],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[2,2,2,0],[2,1,2,2],[1,3,0,1]],[[1,2,2,1],[2,2,2,0],[2,1,2,2],[2,2,0,1]],[[1,2,2,1],[2,2,2,0],[3,1,2,2],[1,2,0,1]],[[1,2,2,1],[3,2,2,0],[2,1,2,2],[1,2,0,1]],[[1,2,2,2],[2,2,2,0],[2,1,2,2],[1,2,0,1]],[[1,2,3,1],[2,2,2,0],[2,1,2,2],[1,2,0,1]],[[1,3,2,1],[2,2,2,0],[2,1,2,2],[1,2,0,1]],[[2,2,2,1],[2,2,2,0],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[2,2,2,0],[2,1,2,1],[1,3,1,1]],[[1,2,2,1],[2,2,2,0],[2,1,2,1],[2,2,1,1]],[[1,2,2,1],[2,2,2,0],[3,1,2,1],[1,2,1,1]],[[1,2,2,1],[3,2,2,0],[2,1,2,1],[1,2,1,1]],[[1,2,2,2],[2,2,2,0],[2,1,2,1],[1,2,1,1]],[[1,2,3,1],[2,2,2,0],[2,1,2,1],[1,2,1,1]],[[1,3,2,1],[2,2,2,0],[2,1,2,1],[1,2,1,1]],[[2,2,2,1],[2,2,2,0],[2,1,2,1],[1,2,1,1]],[[1,2,2,1],[2,2,2,0],[2,1,1,2],[1,2,3,0]],[[1,2,2,1],[2,2,2,0],[2,1,1,2],[1,3,2,0]],[[1,2,2,1],[2,2,2,0],[2,1,1,2],[2,2,2,0]],[[1,2,2,1],[2,2,2,0],[3,1,1,2],[1,2,2,0]],[[1,2,2,1],[3,2,2,0],[2,1,1,2],[1,2,2,0]],[[1,2,2,2],[2,2,2,0],[2,1,1,2],[1,2,2,0]],[[1,2,3,1],[2,2,2,0],[2,1,1,2],[1,2,2,0]],[[1,3,2,1],[2,2,2,0],[2,1,1,2],[1,2,2,0]],[[2,2,2,1],[2,2,2,0],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[2,2,2,0],[2,1,1,1],[1,2,2,2]],[[1,2,2,1],[2,2,2,0],[2,1,1,1],[1,2,3,1]],[[1,2,2,1],[2,2,2,0],[2,1,1,1],[1,3,2,1]],[[1,2,2,1],[2,2,2,0],[2,1,1,1],[2,2,2,1]],[[1,2,2,1],[2,2,2,0],[3,1,1,1],[1,2,2,1]],[[1,2,2,1],[3,2,2,0],[2,1,1,1],[1,2,2,1]],[[1,2,2,2],[2,2,2,0],[2,1,1,1],[1,2,2,1]],[[1,2,3,1],[2,2,2,0],[2,1,1,1],[1,2,2,1]],[[1,3,2,1],[2,2,2,0],[2,1,1,1],[1,2,2,1]],[[2,2,2,1],[2,2,2,0],[2,1,1,1],[1,2,2,1]],[[1,2,2,1],[2,2,2,0],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[2,2,2,0],[2,1,0,2],[1,2,3,1]],[[1,2,2,1],[2,2,2,0],[2,1,0,2],[1,3,2,1]],[[1,2,2,1],[2,2,2,0],[2,1,0,2],[2,2,2,1]],[[1,2,2,1],[2,2,2,0],[2,1,0,3],[1,2,2,1]],[[1,2,2,1],[2,2,2,0],[3,1,0,2],[1,2,2,1]],[[1,2,2,1],[3,2,2,0],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[2,2,2,0],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[2,2,2,0],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,2,2,0],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[2,2,2,0],[2,1,0,2],[1,2,2,1]],[[0,1,3,1],[1,3,3,1],[2,0,1,2],[1,2,2,1]],[[0,1,2,2],[1,3,3,1],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[1,4,3,1],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[1,3,4,1],[2,0,1,2],[1,2,2,1]],[[0,1,3,1],[1,3,3,1],[2,0,2,2],[0,2,2,1]],[[0,1,2,2],[1,3,3,1],[2,0,2,2],[0,2,2,1]],[[0,1,2,1],[1,3,4,1],[2,0,2,2],[0,2,2,1]],[[0,1,3,1],[1,3,3,1],[2,0,2,2],[1,2,1,1]],[[0,1,2,2],[1,3,3,1],[2,0,2,2],[1,2,1,1]],[[0,1,2,1],[1,4,3,1],[2,0,2,2],[1,2,1,1]],[[0,1,2,1],[1,3,4,1],[2,0,2,2],[1,2,1,1]],[[0,1,3,1],[1,3,3,1],[2,0,2,2],[1,2,2,0]],[[0,1,2,2],[1,3,3,1],[2,0,2,2],[1,2,2,0]],[[0,1,2,1],[1,4,3,1],[2,0,2,2],[1,2,2,0]],[[0,1,2,1],[1,3,4,1],[2,0,2,2],[1,2,2,0]],[[0,1,3,1],[1,3,3,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,2],[1,3,3,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,1],[1,4,3,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,1],[1,3,4,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[3,0,3,0],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,0,4,0],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,0,3,0],[2,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,0,3,0],[1,3,2,1]],[[0,1,2,1],[1,3,3,1],[2,0,3,0],[1,2,3,1]],[[0,1,2,1],[1,3,3,1],[2,0,3,0],[1,2,2,2]],[[0,1,3,1],[1,3,3,1],[2,0,3,1],[1,2,1,1]],[[0,1,2,2],[1,3,3,1],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[1,4,3,1],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,4,1],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,3,1],[2,0,4,1],[1,2,1,1]],[[0,1,3,1],[1,3,3,1],[2,0,3,1],[1,2,2,0]],[[0,1,2,2],[1,3,3,1],[2,0,3,1],[1,2,2,0]],[[0,1,2,1],[1,4,3,1],[2,0,3,1],[1,2,2,0]],[[0,1,2,1],[1,3,4,1],[2,0,3,1],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[3,0,3,1],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,0,4,1],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,0,3,1],[2,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,0,3,1],[1,3,2,0]],[[0,1,2,1],[1,3,3,1],[2,0,3,1],[1,2,3,0]],[[0,1,3,1],[1,3,3,1],[2,0,3,2],[0,1,2,1]],[[0,1,2,2],[1,3,3,1],[2,0,3,2],[0,1,2,1]],[[0,1,2,1],[1,3,4,1],[2,0,3,2],[0,1,2,1]],[[0,1,3,1],[1,3,3,1],[2,0,3,2],[0,2,1,1]],[[0,1,2,2],[1,3,3,1],[2,0,3,2],[0,2,1,1]],[[0,1,2,1],[1,3,4,1],[2,0,3,2],[0,2,1,1]],[[0,1,3,1],[1,3,3,1],[2,0,3,2],[0,2,2,0]],[[0,1,2,2],[1,3,3,1],[2,0,3,2],[0,2,2,0]],[[0,1,2,1],[1,3,4,1],[2,0,3,2],[0,2,2,0]],[[0,1,3,1],[1,3,3,1],[2,1,0,2],[1,2,2,1]],[[0,1,2,2],[1,3,3,1],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[1,4,3,1],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,4,1],[2,1,0,2],[1,2,2,1]],[[0,1,3,1],[1,3,3,1],[2,1,1,2],[0,2,2,1]],[[0,1,2,2],[1,3,3,1],[2,1,1,2],[0,2,2,1]],[[0,1,2,1],[1,4,3,1],[2,1,1,2],[0,2,2,1]],[[0,1,2,1],[1,3,4,1],[2,1,1,2],[0,2,2,1]],[[0,1,3,1],[1,3,3,1],[2,1,2,2],[0,2,1,1]],[[0,1,2,2],[1,3,3,1],[2,1,2,2],[0,2,1,1]],[[0,1,2,1],[1,4,3,1],[2,1,2,2],[0,2,1,1]],[[0,1,2,1],[1,3,4,1],[2,1,2,2],[0,2,1,1]],[[0,1,3,1],[1,3,3,1],[2,1,2,2],[0,2,2,0]],[[0,1,2,2],[1,3,3,1],[2,1,2,2],[0,2,2,0]],[[0,1,2,1],[1,4,3,1],[2,1,2,2],[0,2,2,0]],[[0,1,2,1],[1,3,4,1],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,2,0],[2,0,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,2,0],[2,0,3,2],[2,2,1,0]],[[1,2,2,1],[2,2,2,0],[3,0,3,2],[1,2,1,0]],[[1,2,2,1],[3,2,2,0],[2,0,3,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,0],[2,0,3,2],[1,2,1,0]],[[1,2,3,1],[2,2,2,0],[2,0,3,2],[1,2,1,0]],[[1,3,2,1],[2,2,2,0],[2,0,3,2],[1,2,1,0]],[[2,2,2,1],[2,2,2,0],[2,0,3,2],[1,2,1,0]],[[1,2,2,1],[2,2,2,0],[2,0,3,2],[1,3,0,1]],[[1,2,2,1],[2,2,2,0],[2,0,3,2],[2,2,0,1]],[[0,1,3,1],[1,3,3,1],[2,1,3,0],[0,2,2,1]],[[0,1,2,2],[1,3,3,1],[2,1,3,0],[0,2,2,1]],[[0,1,2,1],[1,4,3,1],[2,1,3,0],[0,2,2,1]],[[0,1,2,1],[1,3,4,1],[2,1,3,0],[0,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,1,4,0],[0,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,1,3,0],[0,3,2,1]],[[0,1,2,1],[1,3,3,1],[2,1,3,0],[0,2,3,1]],[[0,1,2,1],[1,3,3,1],[2,1,3,0],[0,2,2,2]],[[0,1,3,1],[1,3,3,1],[2,1,3,1],[0,2,1,1]],[[0,1,2,2],[1,3,3,1],[2,1,3,1],[0,2,1,1]],[[0,1,2,1],[1,4,3,1],[2,1,3,1],[0,2,1,1]],[[0,1,2,1],[1,3,4,1],[2,1,3,1],[0,2,1,1]],[[0,1,2,1],[1,3,3,1],[2,1,4,1],[0,2,1,1]],[[0,1,3,1],[1,3,3,1],[2,1,3,1],[0,2,2,0]],[[0,1,2,2],[1,3,3,1],[2,1,3,1],[0,2,2,0]],[[0,1,2,1],[1,4,3,1],[2,1,3,1],[0,2,2,0]],[[0,1,2,1],[1,3,4,1],[2,1,3,1],[0,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,1,4,1],[0,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,1,3,1],[0,3,2,0]],[[0,1,2,1],[1,3,3,1],[2,1,3,1],[0,2,3,0]],[[1,2,2,1],[2,2,2,0],[3,0,3,2],[1,2,0,1]],[[1,2,2,1],[3,2,2,0],[2,0,3,2],[1,2,0,1]],[[1,2,2,2],[2,2,2,0],[2,0,3,2],[1,2,0,1]],[[1,2,3,1],[2,2,2,0],[2,0,3,2],[1,2,0,1]],[[1,3,2,1],[2,2,2,0],[2,0,3,2],[1,2,0,1]],[[2,2,2,1],[2,2,2,0],[2,0,3,2],[1,2,0,1]],[[0,1,3,1],[1,3,3,1],[2,1,3,2],[0,0,2,1]],[[0,1,2,2],[1,3,3,1],[2,1,3,2],[0,0,2,1]],[[0,1,2,1],[1,3,4,1],[2,1,3,2],[0,0,2,1]],[[0,1,3,1],[1,3,3,1],[2,1,3,2],[0,1,1,1]],[[0,1,2,2],[1,3,3,1],[2,1,3,2],[0,1,1,1]],[[0,1,2,1],[1,3,4,1],[2,1,3,2],[0,1,1,1]],[[0,1,3,1],[1,3,3,1],[2,1,3,2],[0,1,2,0]],[[0,1,2,2],[1,3,3,1],[2,1,3,2],[0,1,2,0]],[[0,1,2,1],[1,3,4,1],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,2,0],[2,0,3,2],[2,1,2,0]],[[1,2,2,1],[2,2,2,0],[3,0,3,2],[1,1,2,0]],[[1,2,2,1],[3,2,2,0],[2,0,3,2],[1,1,2,0]],[[1,2,2,2],[2,2,2,0],[2,0,3,2],[1,1,2,0]],[[1,2,3,1],[2,2,2,0],[2,0,3,2],[1,1,2,0]],[[1,3,2,1],[2,2,2,0],[2,0,3,2],[1,1,2,0]],[[0,1,3,1],[1,3,3,1],[2,1,3,2],[1,0,1,1]],[[0,1,2,2],[1,3,3,1],[2,1,3,2],[1,0,1,1]],[[0,1,2,1],[1,3,4,1],[2,1,3,2],[1,0,1,1]],[[0,1,3,1],[1,3,3,1],[2,1,3,2],[1,0,2,0]],[[0,1,2,2],[1,3,3,1],[2,1,3,2],[1,0,2,0]],[[0,1,2,1],[1,3,4,1],[2,1,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,0],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[2,2,2,0],[2,0,3,2],[2,1,1,1]],[[1,2,2,1],[2,2,2,0],[3,0,3,2],[1,1,1,1]],[[1,2,2,1],[3,2,2,0],[2,0,3,2],[1,1,1,1]],[[1,2,2,2],[2,2,2,0],[2,0,3,2],[1,1,1,1]],[[1,2,3,1],[2,2,2,0],[2,0,3,2],[1,1,1,1]],[[1,3,2,1],[2,2,2,0],[2,0,3,2],[1,1,1,1]],[[2,2,2,1],[2,2,2,0],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[2,2,2,0],[3,0,3,2],[0,2,2,0]],[[1,2,2,1],[3,2,2,0],[2,0,3,2],[0,2,2,0]],[[1,2,2,2],[2,2,2,0],[2,0,3,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,0],[2,0,3,2],[0,2,2,0]],[[1,3,2,1],[2,2,2,0],[2,0,3,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,0],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,2,2,0],[3,0,3,2],[0,2,1,1]],[[1,2,2,1],[3,2,2,0],[2,0,3,2],[0,2,1,1]],[[1,2,2,2],[2,2,2,0],[2,0,3,2],[0,2,1,1]],[[1,2,3,1],[2,2,2,0],[2,0,3,2],[0,2,1,1]],[[1,3,2,1],[2,2,2,0],[2,0,3,2],[0,2,1,1]],[[2,2,2,1],[2,2,2,0],[2,0,3,2],[0,2,1,1]],[[0,1,2,1],[1,3,3,1],[3,2,0,1],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,2,0,1],[2,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,2,0,1],[1,3,2,1]],[[0,1,2,1],[1,3,3,1],[2,2,0,1],[1,2,3,1]],[[0,1,2,1],[1,3,3,1],[2,2,0,1],[1,2,2,2]],[[0,1,3,1],[1,3,3,1],[2,2,0,2],[0,2,2,1]],[[0,1,2,2],[1,3,3,1],[2,2,0,2],[0,2,2,1]],[[0,1,2,1],[1,4,3,1],[2,2,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,4,1],[2,2,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,3,1],[3,2,0,2],[1,2,1,1]],[[0,1,2,1],[1,3,3,1],[2,2,0,2],[2,2,1,1]],[[0,1,2,1],[1,3,3,1],[2,2,0,2],[1,3,1,1]],[[0,1,2,1],[1,3,3,1],[3,2,0,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,2,0,2],[2,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,2,0,2],[1,3,2,0]],[[0,1,2,1],[1,3,3,1],[2,2,0,2],[1,2,3,0]],[[0,1,2,1],[1,3,3,1],[3,2,1,0],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,2,1,0],[2,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,2,1,0],[1,3,2,1]],[[0,1,2,1],[1,3,3,1],[2,2,1,0],[1,2,3,1]],[[0,1,2,1],[1,3,3,1],[2,2,1,0],[1,2,2,2]],[[0,1,2,1],[1,3,3,1],[3,2,1,1],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,2,1,1],[2,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,2,1,1],[1,3,2,0]],[[0,1,2,1],[1,3,3,1],[2,2,1,1],[1,2,3,0]],[[0,1,3,1],[1,3,3,1],[2,2,1,2],[0,1,2,1]],[[0,1,2,2],[1,3,3,1],[2,2,1,2],[0,1,2,1]],[[0,1,2,1],[1,4,3,1],[2,2,1,2],[0,1,2,1]],[[0,1,2,1],[1,3,4,1],[2,2,1,2],[0,1,2,1]],[[0,1,3,1],[1,3,3,1],[2,2,1,2],[1,0,2,1]],[[0,1,2,2],[1,3,3,1],[2,2,1,2],[1,0,2,1]],[[0,1,2,1],[1,4,3,1],[2,2,1,2],[1,0,2,1]],[[0,1,2,1],[1,3,4,1],[2,2,1,2],[1,0,2,1]],[[0,1,2,1],[1,3,3,1],[3,2,1,2],[1,2,0,1]],[[0,1,2,1],[1,3,3,1],[2,2,1,2],[2,2,0,1]],[[0,1,2,1],[1,3,3,1],[2,2,1,2],[1,3,0,1]],[[0,1,2,1],[1,3,3,1],[3,2,1,2],[1,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,2,1,2],[2,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,2,1,2],[1,3,1,0]],[[1,2,2,1],[2,2,2,0],[2,0,3,1],[1,3,1,1]],[[1,2,2,1],[2,2,2,0],[2,0,3,1],[2,2,1,1]],[[1,2,2,1],[2,2,2,0],[3,0,3,1],[1,2,1,1]],[[1,2,2,1],[3,2,2,0],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[1,3,3,1],[3,2,2,0],[1,2,1,1]],[[0,1,2,1],[1,3,3,1],[2,2,2,0],[2,2,1,1]],[[0,1,2,1],[1,3,3,1],[2,2,2,0],[1,3,1,1]],[[0,1,2,1],[1,3,3,1],[3,2,2,1],[1,2,0,1]],[[0,1,2,1],[1,3,3,1],[2,2,2,1],[2,2,0,1]],[[0,1,2,1],[1,3,3,1],[2,2,2,1],[1,3,0,1]],[[0,1,2,1],[1,3,3,1],[3,2,2,1],[1,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,2,2,1],[2,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,2,2],[2,2,2,0],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[2,2,2,0],[2,0,3,1],[1,2,1,1]],[[1,3,2,1],[2,2,2,0],[2,0,3,1],[1,2,1,1]],[[2,2,2,1],[2,2,2,0],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[2,2,2,0],[2,0,3,1],[2,1,2,1]],[[0,1,3,1],[1,3,3,1],[2,2,2,2],[0,0,2,1]],[[0,1,2,2],[1,3,3,1],[2,2,2,2],[0,0,2,1]],[[0,1,2,1],[1,4,3,1],[2,2,2,2],[0,0,2,1]],[[0,1,2,1],[1,3,4,1],[2,2,2,2],[0,0,2,1]],[[0,1,3,1],[1,3,3,1],[2,2,2,2],[0,1,1,1]],[[0,1,2,2],[1,3,3,1],[2,2,2,2],[0,1,1,1]],[[0,1,2,1],[1,4,3,1],[2,2,2,2],[0,1,1,1]],[[0,1,2,1],[1,3,4,1],[2,2,2,2],[0,1,1,1]],[[0,1,3,1],[1,3,3,1],[2,2,2,2],[0,1,2,0]],[[0,1,2,2],[1,3,3,1],[2,2,2,2],[0,1,2,0]],[[0,1,2,1],[1,4,3,1],[2,2,2,2],[0,1,2,0]],[[0,1,2,1],[1,3,4,1],[2,2,2,2],[0,1,2,0]],[[0,1,3,1],[1,3,3,1],[2,2,2,2],[0,2,0,1]],[[0,1,2,2],[1,3,3,1],[2,2,2,2],[0,2,0,1]],[[0,1,2,1],[1,4,3,1],[2,2,2,2],[0,2,0,1]],[[0,1,2,1],[1,3,4,1],[2,2,2,2],[0,2,0,1]],[[0,1,3,1],[1,3,3,1],[2,2,2,2],[0,2,1,0]],[[0,1,2,2],[1,3,3,1],[2,2,2,2],[0,2,1,0]],[[0,1,2,1],[1,4,3,1],[2,2,2,2],[0,2,1,0]],[[0,1,2,1],[1,3,4,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,2,0],[3,0,3,1],[1,1,2,1]],[[1,2,2,1],[3,2,2,0],[2,0,3,1],[1,1,2,1]],[[1,2,2,2],[2,2,2,0],[2,0,3,1],[1,1,2,1]],[[1,2,3,1],[2,2,2,0],[2,0,3,1],[1,1,2,1]],[[1,3,2,1],[2,2,2,0],[2,0,3,1],[1,1,2,1]],[[2,2,2,1],[2,2,2,0],[2,0,3,1],[1,1,2,1]],[[1,2,2,1],[2,2,2,0],[3,0,3,1],[0,2,2,1]],[[1,2,2,1],[3,2,2,0],[2,0,3,1],[0,2,2,1]],[[0,1,3,1],[1,3,3,1],[2,2,2,2],[1,0,1,1]],[[0,1,2,2],[1,3,3,1],[2,2,2,2],[1,0,1,1]],[[0,1,2,1],[1,4,3,1],[2,2,2,2],[1,0,1,1]],[[0,1,2,1],[1,3,4,1],[2,2,2,2],[1,0,1,1]],[[0,1,3,1],[1,3,3,1],[2,2,2,2],[1,0,2,0]],[[0,1,2,2],[1,3,3,1],[2,2,2,2],[1,0,2,0]],[[0,1,2,1],[1,4,3,1],[2,2,2,2],[1,0,2,0]],[[0,1,2,1],[1,3,4,1],[2,2,2,2],[1,0,2,0]],[[0,1,3,1],[1,3,3,1],[2,2,2,2],[1,1,0,1]],[[0,1,2,2],[1,3,3,1],[2,2,2,2],[1,1,0,1]],[[0,1,2,1],[1,4,3,1],[2,2,2,2],[1,1,0,1]],[[0,1,2,1],[1,3,4,1],[2,2,2,2],[1,1,0,1]],[[0,1,3,1],[1,3,3,1],[2,2,2,2],[1,1,1,0]],[[0,1,2,2],[1,3,3,1],[2,2,2,2],[1,1,1,0]],[[0,1,2,1],[1,4,3,1],[2,2,2,2],[1,1,1,0]],[[0,1,2,1],[1,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,0],[2,0,3,1],[0,2,2,1]],[[1,2,3,1],[2,2,2,0],[2,0,3,1],[0,2,2,1]],[[1,3,2,1],[2,2,2,0],[2,0,3,1],[0,2,2,1]],[[2,2,2,1],[2,2,2,0],[2,0,3,1],[0,2,2,1]],[[1,2,2,1],[2,2,2,0],[2,0,2,2],[1,2,3,0]],[[1,2,2,1],[2,2,2,0],[2,0,2,2],[1,3,2,0]],[[1,2,2,1],[2,2,2,0],[2,0,2,2],[2,2,2,0]],[[1,2,2,1],[2,2,2,0],[3,0,2,2],[1,2,2,0]],[[1,2,2,1],[3,2,2,0],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[2,2,2,0],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[2,2,2,0],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[2,2,2,0],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[2,2,2,0],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[2,2,2,0],[2,0,2,1],[1,2,2,2]],[[1,2,2,1],[2,2,2,0],[2,0,2,1],[1,2,3,1]],[[1,2,2,1],[2,2,2,0],[2,0,2,1],[1,3,2,1]],[[1,2,2,1],[2,2,2,0],[2,0,2,1],[2,2,2,1]],[[1,2,2,1],[2,2,2,0],[3,0,2,1],[1,2,2,1]],[[1,2,2,1],[3,2,2,0],[2,0,2,1],[1,2,2,1]],[[1,2,2,2],[2,2,2,0],[2,0,2,1],[1,2,2,1]],[[1,2,3,1],[2,2,2,0],[2,0,2,1],[1,2,2,1]],[[0,1,3,1],[1,3,3,1],[2,2,3,0],[0,1,2,1]],[[0,1,2,2],[1,3,3,1],[2,2,3,0],[0,1,2,1]],[[0,1,2,1],[1,4,3,1],[2,2,3,0],[0,1,2,1]],[[0,1,2,1],[1,3,4,1],[2,2,3,0],[0,1,2,1]],[[0,1,2,1],[1,3,3,1],[2,2,4,0],[0,1,2,1]],[[0,1,2,1],[1,3,3,1],[2,2,3,0],[0,1,3,1]],[[0,1,2,1],[1,3,3,1],[2,2,3,0],[0,1,2,2]],[[0,1,3,1],[1,3,3,1],[2,2,3,0],[0,2,1,1]],[[0,1,2,2],[1,3,3,1],[2,2,3,0],[0,2,1,1]],[[0,1,2,1],[1,4,3,1],[2,2,3,0],[0,2,1,1]],[[0,1,2,1],[1,3,4,1],[2,2,3,0],[0,2,1,1]],[[0,1,2,1],[1,3,3,1],[2,2,4,0],[0,2,1,1]],[[0,1,3,1],[1,3,3,1],[2,2,3,0],[1,0,2,1]],[[0,1,2,2],[1,3,3,1],[2,2,3,0],[1,0,2,1]],[[0,1,2,1],[1,4,3,1],[2,2,3,0],[1,0,2,1]],[[0,1,2,1],[1,3,4,1],[2,2,3,0],[1,0,2,1]],[[0,1,2,1],[1,3,3,1],[2,2,4,0],[1,0,2,1]],[[0,1,2,1],[1,3,3,1],[2,2,3,0],[1,0,3,1]],[[0,1,2,1],[1,3,3,1],[2,2,3,0],[1,0,2,2]],[[0,1,3,1],[1,3,3,1],[2,2,3,0],[1,1,1,1]],[[0,1,2,2],[1,3,3,1],[2,2,3,0],[1,1,1,1]],[[0,1,2,1],[1,4,3,1],[2,2,3,0],[1,1,1,1]],[[0,1,2,1],[1,3,4,1],[2,2,3,0],[1,1,1,1]],[[0,1,2,1],[1,3,3,1],[2,2,4,0],[1,1,1,1]],[[0,1,2,1],[1,3,3,1],[3,2,3,0],[1,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,2,3,0],[2,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,2,3,0],[1,3,1,0]],[[1,3,2,1],[2,2,2,0],[2,0,2,1],[1,2,2,1]],[[2,2,2,1],[2,2,2,0],[2,0,2,1],[1,2,2,1]],[[1,2,2,1],[2,2,2,0],[2,0,1,2],[1,2,2,2]],[[1,2,2,1],[2,2,2,0],[2,0,1,2],[1,2,3,1]],[[1,2,2,1],[2,2,2,0],[2,0,1,2],[1,3,2,1]],[[1,2,2,1],[2,2,2,0],[2,0,1,2],[2,2,2,1]],[[1,2,2,1],[2,2,2,0],[2,0,1,3],[1,2,2,1]],[[1,2,2,1],[2,2,2,0],[3,0,1,2],[1,2,2,1]],[[1,2,2,1],[3,2,2,0],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,2,0],[2,0,1,2],[1,2,2,1]],[[0,1,3,1],[1,3,3,1],[2,2,3,1],[0,0,2,1]],[[0,1,2,2],[1,3,3,1],[2,2,3,1],[0,0,2,1]],[[0,1,2,1],[1,4,3,1],[2,2,3,1],[0,0,2,1]],[[0,1,2,1],[1,3,4,1],[2,2,3,1],[0,0,2,1]],[[0,1,2,1],[1,3,3,1],[2,2,4,1],[0,0,2,1]],[[0,1,3,1],[1,3,3,1],[2,2,3,1],[0,1,1,1]],[[0,1,2,2],[1,3,3,1],[2,2,3,1],[0,1,1,1]],[[0,1,2,1],[1,4,3,1],[2,2,3,1],[0,1,1,1]],[[0,1,2,1],[1,3,4,1],[2,2,3,1],[0,1,1,1]],[[0,1,2,1],[1,3,3,1],[2,2,4,1],[0,1,1,1]],[[0,1,3,1],[1,3,3,1],[2,2,3,1],[0,1,2,0]],[[0,1,2,2],[1,3,3,1],[2,2,3,1],[0,1,2,0]],[[0,1,2,1],[1,4,3,1],[2,2,3,1],[0,1,2,0]],[[0,1,2,1],[1,3,4,1],[2,2,3,1],[0,1,2,0]],[[0,1,2,1],[1,3,3,1],[2,2,4,1],[0,1,2,0]],[[0,1,2,1],[1,3,3,1],[2,2,3,1],[0,1,3,0]],[[0,1,3,1],[1,3,3,1],[2,2,3,1],[0,2,0,1]],[[0,1,2,2],[1,3,3,1],[2,2,3,1],[0,2,0,1]],[[0,1,2,1],[1,4,3,1],[2,2,3,1],[0,2,0,1]],[[0,1,2,1],[1,3,4,1],[2,2,3,1],[0,2,0,1]],[[0,1,2,1],[1,3,3,1],[2,2,4,1],[0,2,0,1]],[[0,1,3,1],[1,3,3,1],[2,2,3,1],[0,2,1,0]],[[0,1,2,2],[1,3,3,1],[2,2,3,1],[0,2,1,0]],[[0,1,2,1],[1,4,3,1],[2,2,3,1],[0,2,1,0]],[[0,1,2,1],[1,3,4,1],[2,2,3,1],[0,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,2,4,1],[0,2,1,0]],[[1,2,3,1],[2,2,2,0],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,2,0],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,2,0],[2,0,1,2],[1,2,2,1]],[[0,1,3,1],[1,3,3,1],[2,2,3,1],[1,0,1,1]],[[0,1,2,2],[1,3,3,1],[2,2,3,1],[1,0,1,1]],[[0,1,2,1],[1,4,3,1],[2,2,3,1],[1,0,1,1]],[[0,1,2,1],[1,3,4,1],[2,2,3,1],[1,0,1,1]],[[0,1,2,1],[1,3,3,1],[2,2,4,1],[1,0,1,1]],[[0,1,3,1],[1,3,3,1],[2,2,3,1],[1,0,2,0]],[[0,1,2,2],[1,3,3,1],[2,2,3,1],[1,0,2,0]],[[0,1,2,1],[1,4,3,1],[2,2,3,1],[1,0,2,0]],[[0,1,2,1],[1,3,4,1],[2,2,3,1],[1,0,2,0]],[[0,1,2,1],[1,3,3,1],[2,2,4,1],[1,0,2,0]],[[0,1,2,1],[1,3,3,1],[2,2,3,1],[1,0,3,0]],[[0,1,3,1],[1,3,3,1],[2,2,3,1],[1,1,0,1]],[[0,1,2,2],[1,3,3,1],[2,2,3,1],[1,1,0,1]],[[0,1,2,1],[1,4,3,1],[2,2,3,1],[1,1,0,1]],[[0,1,2,1],[1,3,4,1],[2,2,3,1],[1,1,0,1]],[[0,1,2,1],[1,3,3,1],[2,2,4,1],[1,1,0,1]],[[0,1,3,1],[1,3,3,1],[2,2,3,1],[1,1,1,0]],[[0,1,2,2],[1,3,3,1],[2,2,3,1],[1,1,1,0]],[[0,1,2,1],[1,4,3,1],[2,2,3,1],[1,1,1,0]],[[0,1,2,1],[1,3,4,1],[2,2,3,1],[1,1,1,0]],[[0,1,2,1],[1,3,3,1],[2,2,4,1],[1,1,1,0]],[[1,2,2,1],[3,2,2,0],[1,3,3,2],[1,1,0,0]],[[1,2,2,2],[2,2,2,0],[1,3,3,2],[1,1,0,0]],[[1,2,3,1],[2,2,2,0],[1,3,3,2],[1,1,0,0]],[[1,3,2,1],[2,2,2,0],[1,3,3,2],[1,1,0,0]],[[2,2,2,1],[2,2,2,0],[1,3,3,2],[1,1,0,0]],[[0,1,3,1],[1,3,3,1],[2,2,3,2],[0,1,0,1]],[[0,1,2,2],[1,3,3,1],[2,2,3,2],[0,1,0,1]],[[0,1,2,1],[1,4,3,1],[2,2,3,2],[0,1,0,1]],[[0,1,2,1],[1,3,4,1],[2,2,3,2],[0,1,0,1]],[[1,2,2,1],[3,2,2,0],[1,3,3,2],[0,2,0,0]],[[1,2,2,2],[2,2,2,0],[1,3,3,2],[0,2,0,0]],[[1,2,3,1],[2,2,2,0],[1,3,3,2],[0,2,0,0]],[[1,3,2,1],[2,2,2,0],[1,3,3,2],[0,2,0,0]],[[2,2,2,1],[2,2,2,0],[1,3,3,2],[0,2,0,0]],[[1,2,2,1],[3,2,2,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,2],[2,2,2,0],[1,3,3,2],[0,0,2,0]],[[1,2,3,1],[2,2,2,0],[1,3,3,2],[0,0,2,0]],[[1,3,2,1],[2,2,2,0],[1,3,3,2],[0,0,2,0]],[[2,2,2,1],[2,2,2,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[3,2,2,0],[1,3,3,2],[0,0,1,1]],[[1,2,2,2],[2,2,2,0],[1,3,3,2],[0,0,1,1]],[[1,2,3,1],[2,2,2,0],[1,3,3,2],[0,0,1,1]],[[1,3,2,1],[2,2,2,0],[1,3,3,2],[0,0,1,1]],[[2,2,2,1],[2,2,2,0],[1,3,3,2],[0,0,1,1]],[[0,1,3,1],[1,3,3,1],[2,2,3,2],[1,0,0,1]],[[0,1,2,2],[1,3,3,1],[2,2,3,2],[1,0,0,1]],[[0,1,2,1],[1,4,3,1],[2,2,3,2],[1,0,0,1]],[[0,1,2,1],[1,3,4,1],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[3,2,2,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,2],[2,2,2,0],[1,3,3,1],[0,0,2,1]],[[1,2,3,1],[2,2,2,0],[1,3,3,1],[0,0,2,1]],[[1,3,2,1],[2,2,2,0],[1,3,3,1],[0,0,2,1]],[[2,2,2,1],[2,2,2,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[3,2,2,0],[1,3,2,2],[1,2,0,0]],[[1,2,2,2],[2,2,2,0],[1,3,2,2],[1,2,0,0]],[[1,2,3,1],[2,2,2,0],[1,3,2,2],[1,2,0,0]],[[1,3,2,1],[2,2,2,0],[1,3,2,2],[1,2,0,0]],[[2,2,2,1],[2,2,2,0],[1,3,2,2],[1,2,0,0]],[[1,2,2,1],[3,2,2,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,0],[1,3,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,0],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,0],[1,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,0],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,0],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,0],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,0],[1,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,0],[1,3,2,2],[1,1,0,1]],[[0,1,2,1],[1,3,3,1],[3,3,0,0],[1,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,3,0,0],[2,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,3,0,0],[1,3,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,0,1],[0,2,2,1]],[[0,1,2,2],[1,3,3,1],[2,3,0,1],[0,2,2,1]],[[0,1,2,1],[1,4,3,1],[2,3,0,1],[0,2,2,1]],[[0,1,2,1],[1,3,4,1],[2,3,0,1],[0,2,2,1]],[[0,1,2,1],[1,3,3,1],[3,3,0,1],[0,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,4,0,1],[0,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,3,0,1],[0,3,2,1]],[[0,1,2,1],[1,3,3,1],[2,3,0,1],[0,2,3,1]],[[0,1,2,1],[1,3,3,1],[2,3,0,1],[0,2,2,2]],[[0,1,3,1],[1,3,3,1],[2,3,0,1],[1,1,2,1]],[[0,1,2,2],[1,3,3,1],[2,3,0,1],[1,1,2,1]],[[0,1,2,1],[1,4,3,1],[2,3,0,1],[1,1,2,1]],[[0,1,2,1],[1,3,4,1],[2,3,0,1],[1,1,2,1]],[[0,1,2,1],[1,3,3,1],[3,3,0,1],[1,1,2,1]],[[0,1,2,1],[1,3,3,1],[2,4,0,1],[1,1,2,1]],[[0,1,2,1],[1,3,3,1],[2,3,0,1],[2,1,2,1]],[[0,1,2,1],[1,3,3,1],[3,3,0,1],[1,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,0,1],[2,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,0,1],[1,3,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,0,2],[0,1,2,1]],[[0,1,2,2],[1,3,3,1],[2,3,0,2],[0,1,2,1]],[[0,1,2,1],[1,4,3,1],[2,3,0,2],[0,1,2,1]],[[0,1,2,1],[1,3,4,1],[2,3,0,2],[0,1,2,1]],[[0,1,2,1],[1,3,3,1],[3,3,0,2],[0,1,2,1]],[[0,1,2,1],[1,3,3,1],[2,4,0,2],[0,1,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,0,2],[0,2,1,1]],[[0,1,2,2],[1,3,3,1],[2,3,0,2],[0,2,1,1]],[[0,1,2,1],[1,4,3,1],[2,3,0,2],[0,2,1,1]],[[0,1,2,1],[1,3,4,1],[2,3,0,2],[0,2,1,1]],[[0,1,2,1],[1,3,3,1],[3,3,0,2],[0,2,1,1]],[[0,1,2,1],[1,3,3,1],[2,4,0,2],[0,2,1,1]],[[0,1,2,1],[1,3,3,1],[2,3,0,2],[0,3,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,0,2],[0,2,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,0,2],[0,2,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,0,2],[0,2,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,0,2],[0,2,2,0]],[[0,1,2,1],[1,3,3,1],[3,3,0,2],[0,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,4,0,2],[0,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,0,2],[0,3,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,0,2],[0,2,3,0]],[[0,1,3,1],[1,3,3,1],[2,3,0,2],[1,0,2,1]],[[0,1,2,2],[1,3,3,1],[2,3,0,2],[1,0,2,1]],[[0,1,2,1],[1,4,3,1],[2,3,0,2],[1,0,2,1]],[[0,1,2,1],[1,3,4,1],[2,3,0,2],[1,0,2,1]],[[0,1,2,1],[1,3,3,1],[3,3,0,2],[1,0,2,1]],[[0,1,2,1],[1,3,3,1],[2,4,0,2],[1,0,2,1]],[[0,1,2,1],[1,3,3,1],[2,3,0,2],[2,0,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,0,2],[1,1,1,1]],[[0,1,2,2],[1,3,3,1],[2,3,0,2],[1,1,1,1]],[[0,1,2,1],[1,4,3,1],[2,3,0,2],[1,1,1,1]],[[0,1,2,1],[1,3,4,1],[2,3,0,2],[1,1,1,1]],[[0,1,2,1],[1,3,3,1],[3,3,0,2],[1,1,1,1]],[[0,1,2,1],[1,3,3,1],[2,4,0,2],[1,1,1,1]],[[0,1,2,1],[1,3,3,1],[2,3,0,2],[2,1,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,0,2],[1,1,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,0,2],[1,1,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,0,2],[1,1,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,0,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,1],[3,3,0,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,1],[2,4,0,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[3,2,2,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,0],[1,3,2,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,0],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,0],[1,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[3,2,2,0],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,0],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,0],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,0],[1,3,2,2],[1,0,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,1,0],[0,2,2,1]],[[0,1,2,2],[1,3,3,1],[2,3,1,0],[0,2,2,1]],[[0,1,2,1],[1,4,3,1],[2,3,1,0],[0,2,2,1]],[[0,1,2,1],[1,3,4,1],[2,3,1,0],[0,2,2,1]],[[0,1,2,1],[1,3,3,1],[3,3,1,0],[0,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,4,1,0],[0,2,2,1]],[[0,1,2,1],[1,3,3,1],[2,3,1,0],[0,3,2,1]],[[0,1,2,1],[1,3,3,1],[2,3,1,0],[0,2,3,1]],[[0,1,2,1],[1,3,3,1],[2,3,1,0],[0,2,2,2]],[[0,1,3,1],[1,3,3,1],[2,3,1,0],[1,1,2,1]],[[0,1,2,2],[1,3,3,1],[2,3,1,0],[1,1,2,1]],[[0,1,2,1],[1,4,3,1],[2,3,1,0],[1,1,2,1]],[[0,1,2,1],[1,3,4,1],[2,3,1,0],[1,1,2,1]],[[0,1,2,1],[1,3,3,1],[3,3,1,0],[1,1,2,1]],[[0,1,2,1],[1,3,3,1],[2,4,1,0],[1,1,2,1]],[[0,1,2,1],[1,3,3,1],[2,3,1,0],[2,1,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,1,1],[0,2,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,1,1],[0,2,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,1,1],[0,2,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,1,1],[0,2,2,0]],[[0,1,2,1],[1,3,3,1],[3,3,1,1],[0,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,4,1,1],[0,2,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,1,1],[0,3,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,1,1],[0,2,3,0]],[[0,1,3,1],[1,3,3,1],[2,3,1,1],[1,1,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,1,1],[1,1,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,1,1],[1,1,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,1,1],[1,1,2,0]],[[0,1,2,1],[1,3,3,1],[3,3,1,1],[1,1,2,0]],[[0,1,2,1],[1,3,3,1],[2,4,1,1],[1,1,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,1,1],[2,1,2,0]],[[2,2,2,1],[2,2,2,0],[1,3,2,2],[1,0,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,1,2],[0,1,1,1]],[[0,1,2,2],[1,3,3,1],[2,3,1,2],[0,1,1,1]],[[0,1,2,1],[1,4,3,1],[2,3,1,2],[0,1,1,1]],[[0,1,2,1],[1,3,4,1],[2,3,1,2],[0,1,1,1]],[[0,1,2,1],[1,3,3,1],[3,3,1,2],[0,1,1,1]],[[0,1,2,1],[1,3,3,1],[2,4,1,2],[0,1,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,1,2],[0,1,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,1,2],[0,1,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,1,2],[0,1,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,1,2],[0,1,2,0]],[[0,1,2,1],[1,3,3,1],[3,3,1,2],[0,1,2,0]],[[0,1,2,1],[1,3,3,1],[2,4,1,2],[0,1,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,1,2],[0,2,0,1]],[[0,1,2,2],[1,3,3,1],[2,3,1,2],[0,2,0,1]],[[0,1,2,1],[1,4,3,1],[2,3,1,2],[0,2,0,1]],[[0,1,2,1],[1,3,4,1],[2,3,1,2],[0,2,0,1]],[[0,1,2,1],[1,3,3,1],[3,3,1,2],[0,2,0,1]],[[0,1,2,1],[1,3,3,1],[2,4,1,2],[0,2,0,1]],[[0,1,2,1],[1,3,3,1],[2,3,1,2],[0,3,0,1]],[[0,1,3,1],[1,3,3,1],[2,3,1,2],[0,2,1,0]],[[0,1,2,2],[1,3,3,1],[2,3,1,2],[0,2,1,0]],[[0,1,2,1],[1,4,3,1],[2,3,1,2],[0,2,1,0]],[[0,1,2,1],[1,3,4,1],[2,3,1,2],[0,2,1,0]],[[0,1,2,1],[1,3,3,1],[3,3,1,2],[0,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,4,1,2],[0,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[3,2,2,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,0],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,0],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,0],[1,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,0],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,0],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,0],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,0],[1,3,2,2],[0,2,0,1]],[[0,1,3,1],[1,3,3,1],[2,3,1,2],[1,0,1,1]],[[0,1,2,2],[1,3,3,1],[2,3,1,2],[1,0,1,1]],[[0,1,2,1],[1,4,3,1],[2,3,1,2],[1,0,1,1]],[[0,1,2,1],[1,3,4,1],[2,3,1,2],[1,0,1,1]],[[0,1,2,1],[1,3,3,1],[3,3,1,2],[1,0,1,1]],[[0,1,2,1],[1,3,3,1],[2,4,1,2],[1,0,1,1]],[[0,1,2,1],[1,3,3,1],[2,3,1,2],[2,0,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,1,2],[1,0,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,1,2],[1,0,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,1,2],[1,0,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,1,2],[1,0,2,0]],[[0,1,2,1],[1,3,3,1],[3,3,1,2],[1,0,2,0]],[[0,1,2,1],[1,3,3,1],[2,4,1,2],[1,0,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,1,2],[2,0,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,1,2],[1,1,0,1]],[[0,1,2,2],[1,3,3,1],[2,3,1,2],[1,1,0,1]],[[0,1,2,1],[1,4,3,1],[2,3,1,2],[1,1,0,1]],[[0,1,2,1],[1,3,4,1],[2,3,1,2],[1,1,0,1]],[[0,1,2,1],[1,3,3,1],[3,3,1,2],[1,1,0,1]],[[0,1,2,1],[1,3,3,1],[2,4,1,2],[1,1,0,1]],[[0,1,2,1],[1,3,3,1],[2,3,1,2],[2,1,0,1]],[[0,1,3,1],[1,3,3,1],[2,3,1,2],[1,1,1,0]],[[0,1,2,2],[1,3,3,1],[2,3,1,2],[1,1,1,0]],[[0,1,2,1],[1,4,3,1],[2,3,1,2],[1,1,1,0]],[[0,1,2,1],[1,3,4,1],[2,3,1,2],[1,1,1,0]],[[0,1,2,1],[1,3,3,1],[3,3,1,2],[1,1,1,0]],[[0,1,2,1],[1,3,3,1],[2,4,1,2],[1,1,1,0]],[[0,1,2,1],[1,3,3,1],[2,3,1,2],[2,1,1,0]],[[2,2,2,1],[2,2,2,0],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,0],[1,3,2,2],[0,1,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,1,2],[1,2,0,0]],[[0,1,2,2],[1,3,3,1],[2,3,1,2],[1,2,0,0]],[[0,1,2,1],[1,4,3,1],[2,3,1,2],[1,2,0,0]],[[0,1,2,1],[1,3,4,1],[2,3,1,2],[1,2,0,0]],[[0,1,2,1],[1,3,3,1],[3,3,1,2],[1,2,0,0]],[[0,1,2,1],[1,3,3,1],[2,4,1,2],[1,2,0,0]],[[0,1,2,1],[1,3,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,2],[2,2,2,0],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,2,0],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,0],[1,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,0],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[3,2,2,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,0],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,0],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,0],[1,3,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,2,0],[1,3,2,1],[1,2,0,1]],[[1,2,3,1],[2,2,2,0],[1,3,2,1],[1,2,0,1]],[[1,3,2,1],[2,2,2,0],[1,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,2,2,0],[1,3,2,1],[1,2,0,1]],[[1,2,2,1],[3,2,2,0],[1,3,2,1],[1,1,1,1]],[[1,2,2,2],[2,2,2,0],[1,3,2,1],[1,1,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,0],[0,1,2,1]],[[0,1,2,2],[1,3,3,1],[2,3,2,0],[0,1,2,1]],[[0,1,2,1],[1,4,3,1],[2,3,2,0],[0,1,2,1]],[[0,1,2,1],[1,3,4,1],[2,3,2,0],[0,1,2,1]],[[0,1,2,1],[1,3,3,1],[3,3,2,0],[0,1,2,1]],[[0,1,2,1],[1,3,3,1],[2,4,2,0],[0,1,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,0],[0,2,1,1]],[[0,1,2,2],[1,3,3,1],[2,3,2,0],[0,2,1,1]],[[0,1,2,1],[1,4,3,1],[2,3,2,0],[0,2,1,1]],[[0,1,2,1],[1,3,4,1],[2,3,2,0],[0,2,1,1]],[[0,1,2,1],[1,3,3,1],[3,3,2,0],[0,2,1,1]],[[0,1,2,1],[1,3,3,1],[2,4,2,0],[0,2,1,1]],[[0,1,2,1],[1,3,3,1],[2,3,2,0],[0,3,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,0],[1,0,2,1]],[[0,1,2,2],[1,3,3,1],[2,3,2,0],[1,0,2,1]],[[0,1,2,1],[1,4,3,1],[2,3,2,0],[1,0,2,1]],[[0,1,2,1],[1,3,4,1],[2,3,2,0],[1,0,2,1]],[[0,1,2,1],[1,3,3,1],[3,3,2,0],[1,0,2,1]],[[0,1,2,1],[1,3,3,1],[2,4,2,0],[1,0,2,1]],[[0,1,2,1],[1,3,3,1],[2,3,2,0],[2,0,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,0],[1,1,1,1]],[[0,1,2,2],[1,3,3,1],[2,3,2,0],[1,1,1,1]],[[0,1,2,1],[1,4,3,1],[2,3,2,0],[1,1,1,1]],[[0,1,2,1],[1,3,4,1],[2,3,2,0],[1,1,1,1]],[[0,1,2,1],[1,3,3,1],[3,3,2,0],[1,1,1,1]],[[0,1,2,1],[1,3,3,1],[2,4,2,0],[1,1,1,1]],[[0,1,2,1],[1,3,3,1],[2,3,2,0],[2,1,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,0],[1,2,0,1]],[[0,1,2,2],[1,3,3,1],[2,3,2,0],[1,2,0,1]],[[0,1,2,1],[1,4,3,1],[2,3,2,0],[1,2,0,1]],[[0,1,2,1],[1,3,4,1],[2,3,2,0],[1,2,0,1]],[[0,1,2,1],[1,3,3,1],[3,3,2,0],[1,2,0,1]],[[0,1,2,1],[1,3,3,1],[2,4,2,0],[1,2,0,1]],[[0,1,2,1],[1,3,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,3,1],[2,2,2,0],[1,3,2,1],[1,1,1,1]],[[1,3,2,1],[2,2,2,0],[1,3,2,1],[1,1,1,1]],[[2,2,2,1],[2,2,2,0],[1,3,2,1],[1,1,1,1]],[[1,2,2,1],[3,2,2,0],[1,3,2,1],[1,0,2,1]],[[1,2,2,2],[2,2,2,0],[1,3,2,1],[1,0,2,1]],[[1,2,3,1],[2,2,2,0],[1,3,2,1],[1,0,2,1]],[[1,3,2,1],[2,2,2,0],[1,3,2,1],[1,0,2,1]],[[2,2,2,1],[2,2,2,0],[1,3,2,1],[1,0,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,1],[0,1,1,1]],[[0,1,2,2],[1,3,3,1],[2,3,2,1],[0,1,1,1]],[[0,1,2,1],[1,4,3,1],[2,3,2,1],[0,1,1,1]],[[0,1,2,1],[1,3,4,1],[2,3,2,1],[0,1,1,1]],[[0,1,2,1],[1,3,3,1],[3,3,2,1],[0,1,1,1]],[[0,1,2,1],[1,3,3,1],[2,4,2,1],[0,1,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,1],[0,1,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,2,1],[0,1,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,2,1],[0,1,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,2,1],[0,1,2,0]],[[0,1,2,1],[1,3,3,1],[3,3,2,1],[0,1,2,0]],[[0,1,2,1],[1,3,3,1],[2,4,2,1],[0,1,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,2,1],[0,2,0,1]],[[0,1,2,2],[1,3,3,1],[2,3,2,1],[0,2,0,1]],[[0,1,2,1],[1,4,3,1],[2,3,2,1],[0,2,0,1]],[[0,1,2,1],[1,3,4,1],[2,3,2,1],[0,2,0,1]],[[0,1,2,1],[1,3,3,1],[3,3,2,1],[0,2,0,1]],[[0,1,2,1],[1,3,3,1],[2,4,2,1],[0,2,0,1]],[[0,1,2,1],[1,3,3,1],[2,3,2,1],[0,3,0,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,1],[0,2,1,0]],[[0,1,2,2],[1,3,3,1],[2,3,2,1],[0,2,1,0]],[[0,1,2,1],[1,4,3,1],[2,3,2,1],[0,2,1,0]],[[0,1,2,1],[1,3,4,1],[2,3,2,1],[0,2,1,0]],[[0,1,2,1],[1,3,3,1],[3,3,2,1],[0,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,4,2,1],[0,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[3,2,2,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,2],[2,2,2,0],[1,3,2,1],[0,2,1,1]],[[1,2,3,1],[2,2,2,0],[1,3,2,1],[0,2,1,1]],[[1,3,2,1],[2,2,2,0],[1,3,2,1],[0,2,1,1]],[[2,2,2,1],[2,2,2,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,1],[3,2,2,0],[1,3,2,1],[0,1,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,1],[1,0,1,1]],[[0,1,2,2],[1,3,3,1],[2,3,2,1],[1,0,1,1]],[[0,1,2,1],[1,4,3,1],[2,3,2,1],[1,0,1,1]],[[0,1,2,1],[1,3,4,1],[2,3,2,1],[1,0,1,1]],[[0,1,2,1],[1,3,3,1],[3,3,2,1],[1,0,1,1]],[[0,1,2,1],[1,3,3,1],[2,4,2,1],[1,0,1,1]],[[0,1,2,1],[1,3,3,1],[2,3,2,1],[2,0,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,1],[1,0,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,2,1],[1,0,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,2,1],[1,0,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,2,1],[1,0,2,0]],[[0,1,2,1],[1,3,3,1],[3,3,2,1],[1,0,2,0]],[[0,1,2,1],[1,3,3,1],[2,4,2,1],[1,0,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,2,1],[2,0,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,2,1],[1,1,0,1]],[[0,1,2,2],[1,3,3,1],[2,3,2,1],[1,1,0,1]],[[0,1,2,1],[1,4,3,1],[2,3,2,1],[1,1,0,1]],[[0,1,2,1],[1,3,4,1],[2,3,2,1],[1,1,0,1]],[[0,1,2,1],[1,3,3,1],[3,3,2,1],[1,1,0,1]],[[0,1,2,1],[1,3,3,1],[2,4,2,1],[1,1,0,1]],[[0,1,2,1],[1,3,3,1],[2,3,2,1],[2,1,0,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,1],[1,1,1,0]],[[0,1,2,2],[1,3,3,1],[2,3,2,1],[1,1,1,0]],[[0,1,2,1],[1,4,3,1],[2,3,2,1],[1,1,1,0]],[[0,1,2,1],[1,3,4,1],[2,3,2,1],[1,1,1,0]],[[0,1,2,1],[1,3,3,1],[3,3,2,1],[1,1,1,0]],[[0,1,2,1],[1,3,3,1],[2,4,2,1],[1,1,1,0]],[[0,1,2,1],[1,3,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,2,2],[2,2,2,0],[1,3,2,1],[0,1,2,1]],[[1,2,3,1],[2,2,2,0],[1,3,2,1],[0,1,2,1]],[[1,3,2,1],[2,2,2,0],[1,3,2,1],[0,1,2,1]],[[2,2,2,1],[2,2,2,0],[1,3,2,1],[0,1,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,1],[1,2,0,0]],[[0,1,2,2],[1,3,3,1],[2,3,2,1],[1,2,0,0]],[[0,1,2,1],[1,4,3,1],[2,3,2,1],[1,2,0,0]],[[0,1,2,1],[1,3,4,1],[2,3,2,1],[1,2,0,0]],[[0,1,2,1],[1,3,3,1],[3,3,2,1],[1,2,0,0]],[[0,1,2,1],[1,3,3,1],[2,4,2,1],[1,2,0,0]],[[0,1,2,1],[1,3,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[3,2,2,0],[1,3,1,2],[1,1,2,0]],[[1,2,2,2],[2,2,2,0],[1,3,1,2],[1,1,2,0]],[[1,2,3,1],[2,2,2,0],[1,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,2,2,0],[1,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,2,2,0],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,2,2,0],[1,3,1,2],[0,2,2,0]],[[1,2,2,2],[2,2,2,0],[1,3,1,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,0],[1,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,2,2,0],[1,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,0],[1,3,1,2],[0,2,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,2,2],[0,0,1,1]],[[0,1,2,2],[1,3,3,1],[2,3,2,2],[0,0,1,1]],[[0,1,2,1],[1,4,3,1],[2,3,2,2],[0,0,1,1]],[[0,1,2,1],[1,3,4,1],[2,3,2,2],[0,0,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,2,2],[0,0,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,2,2],[0,0,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,2,2],[0,0,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,2,2],[0,0,2,0]],[[1,2,2,1],[3,2,2,0],[1,3,1,1],[1,1,2,1]],[[1,2,2,2],[2,2,2,0],[1,3,1,1],[1,1,2,1]],[[1,2,3,1],[2,2,2,0],[1,3,1,1],[1,1,2,1]],[[1,3,2,1],[2,2,2,0],[1,3,1,1],[1,1,2,1]],[[2,2,2,1],[2,2,2,0],[1,3,1,1],[1,1,2,1]],[[1,2,2,1],[3,2,2,0],[1,3,1,1],[0,2,2,1]],[[1,2,2,2],[2,2,2,0],[1,3,1,1],[0,2,2,1]],[[1,2,3,1],[2,2,2,0],[1,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,2,2,0],[1,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,2,2,0],[1,3,1,1],[0,2,2,1]],[[1,2,2,1],[3,2,2,0],[1,3,0,2],[1,1,2,1]],[[1,2,2,2],[2,2,2,0],[1,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,2,2,0],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,2,2,0],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,2,2,0],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,2,2,0],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,2,0],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,2,2,0],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,2,0],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,2,0],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,2,2,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,2,2,0],[1,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,2,2,0],[1,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,2,2,0],[1,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,2,2,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[3,2,2,0],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,2,2,0],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,2,2,0],[1,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,2,2,0],[1,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,2,2,0],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[3,2,2,0],[1,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,2,0],[1,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,2,0],[1,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,2,0],[1,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,2,0],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[3,2,2,0],[1,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,2,0],[1,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,2,0],[1,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,2,0],[1,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,2,0],[1,2,3,2],[1,0,1,1]],[[1,2,2,1],[3,2,2,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,2],[2,2,2,0],[1,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,2,2,0],[1,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,2,0],[1,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,2,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,2,2,0],[1,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,2,2,0],[1,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,2,2,0],[1,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,2,0],[1,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,2,0],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[3,2,2,0],[1,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,2,0],[1,2,3,2],[0,1,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,3,0],[0,0,2,1]],[[0,1,2,2],[1,3,3,1],[2,3,3,0],[0,0,2,1]],[[0,1,2,1],[1,4,3,1],[2,3,3,0],[0,0,2,1]],[[0,1,2,1],[1,3,4,1],[2,3,3,0],[0,0,2,1]],[[0,1,2,1],[1,3,3,1],[2,3,4,0],[0,0,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,3,0],[0,1,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,3,0],[0,1,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,3,0],[0,1,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,3,0],[0,1,2,0]],[[0,1,2,1],[1,3,3,1],[3,3,3,0],[0,1,2,0]],[[0,1,2,1],[1,3,3,1],[2,4,3,0],[0,1,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,3,0],[0,2,1,0]],[[0,1,2,2],[1,3,3,1],[2,3,3,0],[0,2,1,0]],[[0,1,2,1],[1,4,3,1],[2,3,3,0],[0,2,1,0]],[[0,1,2,1],[1,3,4,1],[2,3,3,0],[0,2,1,0]],[[0,1,2,1],[1,3,3,1],[3,3,3,0],[0,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,4,3,0],[0,2,1,0]],[[0,1,2,1],[1,3,3,1],[2,3,3,0],[0,3,1,0]],[[1,2,3,1],[2,2,2,0],[1,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,2,0],[1,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,2,0],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[3,2,2,0],[1,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,2,0],[1,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,2,0],[1,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,2,0],[1,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,2,0],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[3,2,2,0],[1,2,3,2],[0,0,2,1]],[[1,2,2,2],[2,2,2,0],[1,2,3,2],[0,0,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,3,0],[1,0,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,3,0],[1,0,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,3,0],[1,0,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,3,0],[1,0,2,0]],[[0,1,2,1],[1,3,3,1],[3,3,3,0],[1,0,2,0]],[[0,1,2,1],[1,3,3,1],[2,4,3,0],[1,0,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,3,0],[2,0,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,3,0],[1,1,1,0]],[[0,1,2,2],[1,3,3,1],[2,3,3,0],[1,1,1,0]],[[0,1,2,1],[1,4,3,1],[2,3,3,0],[1,1,1,0]],[[0,1,2,1],[1,3,4,1],[2,3,3,0],[1,1,1,0]],[[0,1,2,1],[1,3,3,1],[3,3,3,0],[1,1,1,0]],[[0,1,2,1],[1,3,3,1],[2,4,3,0],[1,1,1,0]],[[0,1,2,1],[1,3,3,1],[2,3,3,0],[2,1,1,0]],[[1,2,3,1],[2,2,2,0],[1,2,3,2],[0,0,2,1]],[[1,3,2,1],[2,2,2,0],[1,2,3,2],[0,0,2,1]],[[2,2,2,1],[2,2,2,0],[1,2,3,2],[0,0,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,3,0],[1,2,0,0]],[[0,1,2,2],[1,3,3,1],[2,3,3,0],[1,2,0,0]],[[0,1,2,1],[1,4,3,1],[2,3,3,0],[1,2,0,0]],[[0,1,2,1],[1,3,4,1],[2,3,3,0],[1,2,0,0]],[[0,1,2,1],[1,3,3,1],[3,3,3,0],[1,2,0,0]],[[0,1,2,1],[1,3,3,1],[2,4,3,0],[1,2,0,0]],[[0,1,2,1],[1,3,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[3,2,2,0],[1,2,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,2,0],[1,2,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,2,0],[1,2,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,2,0],[1,2,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,2,0],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,2,0],[1,2,3,1],[1,0,2,1]],[[1,2,2,2],[2,2,2,0],[1,2,3,1],[1,0,2,1]],[[1,2,3,1],[2,2,2,0],[1,2,3,1],[1,0,2,1]],[[1,3,2,1],[2,2,2,0],[1,2,3,1],[1,0,2,1]],[[2,2,2,1],[2,2,2,0],[1,2,3,1],[1,0,2,1]],[[1,2,2,1],[3,2,2,0],[1,2,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,2,0],[1,2,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,2,0],[1,2,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,2,0],[1,2,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,2,0],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[3,2,2,0],[1,2,3,1],[0,1,2,1]],[[1,2,2,2],[2,2,2,0],[1,2,3,1],[0,1,2,1]],[[1,2,3,1],[2,2,2,0],[1,2,3,1],[0,1,2,1]],[[1,3,2,1],[2,2,2,0],[1,2,3,1],[0,1,2,1]],[[2,2,2,1],[2,2,2,0],[1,2,3,1],[0,1,2,1]],[[0,1,3,1],[1,3,3,1],[2,3,3,1],[0,0,1,1]],[[0,1,2,2],[1,3,3,1],[2,3,3,1],[0,0,1,1]],[[0,1,2,1],[1,4,3,1],[2,3,3,1],[0,0,1,1]],[[0,1,2,1],[1,3,4,1],[2,3,3,1],[0,0,1,1]],[[0,1,2,1],[1,3,3,1],[2,3,4,1],[0,0,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,3,1],[0,0,2,0]],[[0,1,2,2],[1,3,3,1],[2,3,3,1],[0,0,2,0]],[[0,1,2,1],[1,4,3,1],[2,3,3,1],[0,0,2,0]],[[0,1,2,1],[1,3,4,1],[2,3,3,1],[0,0,2,0]],[[0,1,2,1],[1,3,3,1],[2,3,4,1],[0,0,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,3,1],[0,2,0,0]],[[0,1,2,2],[1,3,3,1],[2,3,3,1],[0,2,0,0]],[[0,1,2,1],[1,4,3,1],[2,3,3,1],[0,2,0,0]],[[0,1,2,1],[1,3,4,1],[2,3,3,1],[0,2,0,0]],[[0,1,2,1],[1,3,3,1],[3,3,3,1],[0,2,0,0]],[[0,1,2,1],[1,3,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[3,2,2,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,2],[2,2,2,0],[1,1,3,2],[0,2,2,0]],[[1,2,3,1],[2,2,2,0],[1,1,3,2],[0,2,2,0]],[[1,3,2,1],[2,2,2,0],[1,1,3,2],[0,2,2,0]],[[2,2,2,1],[2,2,2,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[3,2,2,0],[1,1,3,2],[0,2,1,1]],[[1,2,2,2],[2,2,2,0],[1,1,3,2],[0,2,1,1]],[[1,2,3,1],[2,2,2,0],[1,1,3,2],[0,2,1,1]],[[1,3,2,1],[2,2,2,0],[1,1,3,2],[0,2,1,1]],[[2,2,2,1],[2,2,2,0],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[3,2,2,0],[1,1,3,1],[0,2,2,1]],[[1,2,2,2],[2,2,2,0],[1,1,3,1],[0,2,2,1]],[[1,2,3,1],[2,2,2,0],[1,1,3,1],[0,2,2,1]],[[1,3,2,1],[2,2,2,0],[1,1,3,1],[0,2,2,1]],[[2,2,2,1],[2,2,2,0],[1,1,3,1],[0,2,2,1]],[[1,2,2,1],[3,2,2,0],[1,0,3,2],[1,2,2,0]],[[1,2,2,2],[2,2,2,0],[1,0,3,2],[1,2,2,0]],[[1,2,3,1],[2,2,2,0],[1,0,3,2],[1,2,2,0]],[[1,3,2,1],[2,2,2,0],[1,0,3,2],[1,2,2,0]],[[2,2,2,1],[2,2,2,0],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[3,2,2,0],[1,0,3,2],[1,2,1,1]],[[0,1,3,1],[1,3,3,1],[2,3,3,1],[1,1,0,0]],[[0,1,2,2],[1,3,3,1],[2,3,3,1],[1,1,0,0]],[[0,1,2,1],[1,4,3,1],[2,3,3,1],[1,1,0,0]],[[0,1,2,1],[1,3,4,1],[2,3,3,1],[1,1,0,0]],[[0,1,2,1],[1,3,3,1],[3,3,3,1],[1,1,0,0]],[[0,1,2,1],[1,3,3,1],[2,4,3,1],[1,1,0,0]],[[0,1,2,1],[1,3,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,2,2],[2,2,2,0],[1,0,3,2],[1,2,1,1]],[[1,2,3,1],[2,2,2,0],[1,0,3,2],[1,2,1,1]],[[1,3,2,1],[2,2,2,0],[1,0,3,2],[1,2,1,1]],[[2,2,2,1],[2,2,2,0],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[3,2,2,0],[1,0,3,1],[1,2,2,1]],[[1,2,2,2],[2,2,2,0],[1,0,3,1],[1,2,2,1]],[[1,2,3,1],[2,2,2,0],[1,0,3,1],[1,2,2,1]],[[1,3,2,1],[2,2,2,0],[1,0,3,1],[1,2,2,1]],[[2,2,2,1],[2,2,2,0],[1,0,3,1],[1,2,2,1]],[[1,2,2,1],[3,2,2,0],[0,3,3,2],[1,2,0,0]],[[1,2,2,2],[2,2,2,0],[0,3,3,2],[1,2,0,0]],[[1,2,3,1],[2,2,2,0],[0,3,3,2],[1,2,0,0]],[[1,3,2,1],[2,2,2,0],[0,3,3,2],[1,2,0,0]],[[2,2,2,1],[2,2,2,0],[0,3,3,2],[1,2,0,0]],[[1,2,2,1],[3,2,2,0],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,0],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[2,2,2,0],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[2,2,2,0],[0,3,2,2],[1,2,1,0]],[[2,2,2,1],[2,2,2,0],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[3,2,2,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[2,2,2,0],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[2,2,2,0],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[2,2,2,0],[0,3,2,2],[1,2,0,1]],[[2,2,2,1],[2,2,2,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[3,2,2,0],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[2,2,2,0],[0,3,2,2],[1,1,2,0]],[[0,1,3,1],[1,3,3,1],[2,3,3,2],[0,0,0,1]],[[0,1,2,2],[1,3,3,1],[2,3,3,2],[0,0,0,1]],[[0,1,2,1],[1,4,3,1],[2,3,3,2],[0,0,0,1]],[[0,1,2,1],[1,3,4,1],[2,3,3,2],[0,0,0,1]],[[1,2,3,1],[2,2,2,0],[0,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,2,0],[0,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,2,2,0],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,2,2,0],[0,3,2,2],[1,1,1,1]],[[1,2,2,2],[2,2,2,0],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[2,2,2,0],[0,3,2,2],[1,1,1,1]],[[1,3,2,1],[2,2,2,0],[0,3,2,2],[1,1,1,1]],[[2,2,2,1],[2,2,2,0],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[3,2,2,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,2],[2,2,2,0],[0,3,2,1],[1,2,1,1]],[[1,2,3,1],[2,2,2,0],[0,3,2,1],[1,2,1,1]],[[1,3,2,1],[2,2,2,0],[0,3,2,1],[1,2,1,1]],[[2,2,2,1],[2,2,2,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,1],[3,2,2,0],[0,3,2,1],[1,1,2,1]],[[1,2,2,2],[2,2,2,0],[0,3,2,1],[1,1,2,1]],[[1,2,3,1],[2,2,2,0],[0,3,2,1],[1,1,2,1]],[[1,3,2,1],[2,2,2,0],[0,3,2,1],[1,1,2,1]],[[2,2,2,1],[2,2,2,0],[0,3,2,1],[1,1,2,1]],[[1,2,2,1],[3,2,2,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,2],[2,2,2,0],[0,3,1,2],[1,2,2,0]],[[1,2,3,1],[2,2,2,0],[0,3,1,2],[1,2,2,0]],[[1,3,2,1],[2,2,2,0],[0,3,1,2],[1,2,2,0]],[[2,2,2,1],[2,2,2,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,1],[3,2,2,0],[0,3,1,1],[1,2,2,1]],[[1,2,2,2],[2,2,2,0],[0,3,1,1],[1,2,2,1]],[[1,2,3,1],[2,2,2,0],[0,3,1,1],[1,2,2,1]],[[1,3,2,1],[2,2,2,0],[0,3,1,1],[1,2,2,1]],[[2,2,2,1],[2,2,2,0],[0,3,1,1],[1,2,2,1]],[[1,2,2,1],[3,2,2,0],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[2,2,2,0],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[2,2,2,0],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[2,2,2,0],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[2,2,2,0],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[3,2,2,0],[0,2,3,2],[1,2,1,0]],[[1,2,2,2],[2,2,2,0],[0,2,3,2],[1,2,1,0]],[[1,2,3,1],[2,2,2,0],[0,2,3,2],[1,2,1,0]],[[1,3,2,1],[2,2,2,0],[0,2,3,2],[1,2,1,0]],[[2,2,2,1],[2,2,2,0],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[3,2,2,0],[0,2,3,2],[1,2,0,1]],[[1,2,2,2],[2,2,2,0],[0,2,3,2],[1,2,0,1]],[[1,2,3,1],[2,2,2,0],[0,2,3,2],[1,2,0,1]],[[1,3,2,1],[2,2,2,0],[0,2,3,2],[1,2,0,1]],[[2,2,2,1],[2,2,2,0],[0,2,3,2],[1,2,0,1]],[[1,2,2,1],[3,2,2,0],[0,2,3,2],[1,1,2,0]],[[1,2,2,2],[2,2,2,0],[0,2,3,2],[1,1,2,0]],[[1,2,3,1],[2,2,2,0],[0,2,3,2],[1,1,2,0]],[[1,3,2,1],[2,2,2,0],[0,2,3,2],[1,1,2,0]],[[2,2,2,1],[2,2,2,0],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[3,2,2,0],[0,2,3,2],[1,1,1,1]],[[1,2,2,2],[2,2,2,0],[0,2,3,2],[1,1,1,1]],[[1,2,3,1],[2,2,2,0],[0,2,3,2],[1,1,1,1]],[[1,3,2,1],[2,2,2,0],[0,2,3,2],[1,1,1,1]],[[2,2,2,1],[2,2,2,0],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[3,2,2,0],[0,2,3,1],[1,2,1,1]],[[1,2,2,2],[2,2,2,0],[0,2,3,1],[1,2,1,1]],[[1,2,3,1],[2,2,2,0],[0,2,3,1],[1,2,1,1]],[[1,3,2,1],[2,2,2,0],[0,2,3,1],[1,2,1,1]],[[2,2,2,1],[2,2,2,0],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[3,2,2,0],[0,2,3,1],[1,1,2,1]],[[1,2,2,2],[2,2,2,0],[0,2,3,1],[1,1,2,1]],[[1,2,3,1],[2,2,2,0],[0,2,3,1],[1,1,2,1]],[[1,3,2,1],[2,2,2,0],[0,2,3,1],[1,1,2,1]],[[2,2,2,1],[2,2,2,0],[0,2,3,1],[1,1,2,1]],[[1,2,2,1],[3,2,2,0],[0,1,3,2],[1,2,2,0]],[[1,2,2,2],[2,2,2,0],[0,1,3,2],[1,2,2,0]],[[1,2,3,1],[2,2,2,0],[0,1,3,2],[1,2,2,0]],[[1,3,2,1],[2,2,2,0],[0,1,3,2],[1,2,2,0]],[[2,2,2,1],[2,2,2,0],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[3,2,2,0],[0,1,3,2],[1,2,1,1]],[[1,2,2,2],[2,2,2,0],[0,1,3,2],[1,2,1,1]],[[1,2,3,1],[2,2,2,0],[0,1,3,2],[1,2,1,1]],[[1,3,2,1],[2,2,2,0],[0,1,3,2],[1,2,1,1]],[[2,2,2,1],[2,2,2,0],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[3,2,2,0],[0,1,3,1],[1,2,2,1]],[[1,2,2,2],[2,2,2,0],[0,1,3,1],[1,2,2,1]],[[1,2,3,1],[2,2,2,0],[0,1,3,1],[1,2,2,1]],[[1,3,2,1],[2,2,2,0],[0,1,3,1],[1,2,2,1]],[[2,2,2,1],[2,2,2,0],[0,1,3,1],[1,2,2,1]],[[1,2,2,1],[2,2,1,2],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[2,2,1,3],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[3,2,1,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,2],[2,2,1,2],[2,3,3,1],[1,0,0,0]],[[1,2,3,1],[2,2,1,2],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[2,2,1,2],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[2,2,1,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[2,2,1,2],[3,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,2,1,3],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[3,2,1,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,2],[2,2,1,2],[2,3,2,1],[1,0,1,0]],[[1,2,3,1],[2,2,1,2],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[2,2,1,2],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[2,2,1,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,2,1,2],[3,3,2,1],[1,0,0,1]],[[1,2,2,1],[2,2,1,3],[2,3,2,1],[1,0,0,1]],[[1,2,2,1],[3,2,1,2],[2,3,2,1],[1,0,0,1]],[[1,2,2,2],[2,2,1,2],[2,3,2,1],[1,0,0,1]],[[1,2,3,1],[2,2,1,2],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[2,2,1,2],[2,3,2,1],[1,0,0,1]],[[2,2,2,1],[2,2,1,2],[2,3,2,1],[1,0,0,1]],[[0,1,3,1],[1,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,1,2,2],[1,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,3,3],[1,1,0,2],[1,2,2,1]],[[0,1,3,1],[1,3,3,2],[1,1,1,2],[1,2,1,1]],[[0,1,2,2],[1,3,3,2],[1,1,1,2],[1,2,1,1]],[[0,1,2,1],[1,3,3,3],[1,1,1,2],[1,2,1,1]],[[0,1,3,1],[1,3,3,2],[1,1,1,2],[1,2,2,0]],[[0,1,2,2],[1,3,3,2],[1,1,1,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,3],[1,1,1,2],[1,2,2,0]],[[0,1,3,1],[1,3,3,2],[1,1,3,0],[1,2,1,1]],[[0,1,2,2],[1,3,3,2],[1,1,3,0],[1,2,1,1]],[[0,1,2,1],[1,3,4,2],[1,1,3,0],[1,2,1,1]],[[0,1,3,1],[1,3,3,2],[1,1,3,0],[1,2,2,0]],[[0,1,2,2],[1,3,3,2],[1,1,3,0],[1,2,2,0]],[[0,1,2,1],[1,4,3,2],[1,1,3,0],[1,2,2,0]],[[0,1,2,1],[1,3,4,2],[1,1,3,0],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[3,3,2,0],[1,0,1,1]],[[1,2,2,1],[3,2,1,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,2],[2,2,1,2],[2,3,2,0],[1,0,1,1]],[[1,2,3,1],[2,2,1,2],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,2,1,2],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,2,1,2],[2,3,2,0],[1,0,1,1]],[[0,1,3,1],[1,3,3,2],[1,2,0,2],[1,1,2,1]],[[0,1,2,2],[1,3,3,2],[1,2,0,2],[1,1,2,1]],[[0,1,2,1],[1,3,3,3],[1,2,0,2],[1,1,2,1]],[[0,1,3,1],[1,3,3,2],[1,2,1,2],[1,1,1,1]],[[0,1,2,2],[1,3,3,2],[1,2,1,2],[1,1,1,1]],[[0,1,2,1],[1,3,3,3],[1,2,1,2],[1,1,1,1]],[[0,1,3,1],[1,3,3,2],[1,2,1,2],[1,1,2,0]],[[0,1,2,2],[1,3,3,2],[1,2,1,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,3],[1,2,1,2],[1,1,2,0]],[[0,1,3,1],[1,3,3,2],[1,2,1,2],[1,2,0,1]],[[0,1,2,2],[1,3,3,2],[1,2,1,2],[1,2,0,1]],[[0,1,2,1],[1,3,3,3],[1,2,1,2],[1,2,0,1]],[[0,1,3,1],[1,3,3,2],[1,2,1,2],[1,2,1,0]],[[0,1,2,2],[1,3,3,2],[1,2,1,2],[1,2,1,0]],[[0,1,2,1],[1,3,3,3],[1,2,1,2],[1,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,2,1,3],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[3,2,1,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,2],[2,2,1,2],[2,3,1,2],[1,0,1,0]],[[1,2,3,1],[2,2,1,2],[2,3,1,2],[1,0,1,0]],[[1,3,2,1],[2,2,1,2],[2,3,1,2],[1,0,1,0]],[[2,2,2,1],[2,2,1,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,2,1,2],[2,3,1,3],[1,0,0,1]],[[0,1,3,1],[1,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,1,2,2],[1,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,1,2,1],[1,3,4,2],[1,2,3,0],[1,1,1,1]],[[0,1,3,1],[1,3,3,2],[1,2,3,0],[1,1,2,0]],[[0,1,2,2],[1,3,3,2],[1,2,3,0],[1,1,2,0]],[[0,1,2,1],[1,4,3,2],[1,2,3,0],[1,1,2,0]],[[0,1,2,1],[1,3,4,2],[1,2,3,0],[1,1,2,0]],[[0,1,3,1],[1,3,3,2],[1,2,3,0],[1,2,0,1]],[[0,1,2,2],[1,3,3,2],[1,2,3,0],[1,2,0,1]],[[0,1,2,1],[1,4,3,2],[1,2,3,0],[1,2,0,1]],[[0,1,2,1],[1,3,4,2],[1,2,3,0],[1,2,0,1]],[[0,1,3,1],[1,3,3,2],[1,2,3,0],[1,2,1,0]],[[0,1,2,2],[1,3,3,2],[1,2,3,0],[1,2,1,0]],[[0,1,2,1],[1,4,3,2],[1,2,3,0],[1,2,1,0]],[[0,1,2,1],[1,3,4,2],[1,2,3,0],[1,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,3,1,2],[1,0,0,1]],[[1,2,2,1],[2,2,1,3],[2,3,1,2],[1,0,0,1]],[[1,2,2,1],[3,2,1,2],[2,3,1,2],[1,0,0,1]],[[1,2,2,2],[2,2,1,2],[2,3,1,2],[1,0,0,1]],[[1,2,3,1],[2,2,1,2],[2,3,1,2],[1,0,0,1]],[[1,3,2,1],[2,2,1,2],[2,3,1,2],[1,0,0,1]],[[2,2,2,1],[2,2,1,2],[2,3,1,2],[1,0,0,1]],[[1,2,2,1],[2,2,1,2],[2,3,1,1],[2,2,0,0]],[[1,2,2,1],[2,2,1,2],[3,3,1,1],[1,2,0,0]],[[1,2,2,1],[3,2,1,2],[2,3,1,1],[1,2,0,0]],[[1,2,2,2],[2,2,1,2],[2,3,1,1],[1,2,0,0]],[[1,2,3,1],[2,2,1,2],[2,3,1,1],[1,2,0,0]],[[1,3,2,1],[2,2,1,2],[2,3,1,1],[1,2,0,0]],[[2,2,2,1],[2,2,1,2],[2,3,1,1],[1,2,0,0]],[[1,2,2,1],[2,2,1,2],[2,3,1,1],[2,1,1,0]],[[1,2,2,1],[2,2,1,2],[3,3,1,1],[1,1,1,0]],[[1,2,2,1],[3,2,1,2],[2,3,1,1],[1,1,1,0]],[[1,2,2,2],[2,2,1,2],[2,3,1,1],[1,1,1,0]],[[1,2,3,1],[2,2,1,2],[2,3,1,1],[1,1,1,0]],[[1,3,2,1],[2,2,1,2],[2,3,1,1],[1,1,1,0]],[[2,2,2,1],[2,2,1,2],[2,3,1,1],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[2,3,1,1],[2,1,0,1]],[[1,2,2,1],[2,2,1,2],[3,3,1,1],[1,1,0,1]],[[1,2,2,1],[3,2,1,2],[2,3,1,1],[1,1,0,1]],[[1,2,2,2],[2,2,1,2],[2,3,1,1],[1,1,0,1]],[[1,2,3,1],[2,2,1,2],[2,3,1,1],[1,1,0,1]],[[1,3,2,1],[2,2,1,2],[2,3,1,1],[1,1,0,1]],[[2,2,2,1],[2,2,1,2],[2,3,1,1],[1,1,0,1]],[[1,2,2,1],[2,2,1,2],[3,3,1,1],[0,2,1,0]],[[1,2,2,1],[3,2,1,2],[2,3,1,1],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[2,3,1,1],[0,2,1,0]],[[1,2,3,1],[2,2,1,2],[2,3,1,1],[0,2,1,0]],[[1,3,2,1],[2,2,1,2],[2,3,1,1],[0,2,1,0]],[[0,1,3,1],[1,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,1,2,2],[1,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,1,2,1],[1,3,3,3],[1,3,0,2],[1,1,1,1]],[[0,1,3,1],[1,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,1,2,2],[1,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,1,2,1],[1,3,3,3],[1,3,0,2],[1,1,2,0]],[[0,1,3,1],[1,3,3,2],[1,3,0,2],[1,2,0,1]],[[0,1,2,2],[1,3,3,2],[1,3,0,2],[1,2,0,1]],[[0,1,2,1],[1,3,3,3],[1,3,0,2],[1,2,0,1]],[[0,1,3,1],[1,3,3,2],[1,3,0,2],[1,2,1,0]],[[0,1,2,2],[1,3,3,2],[1,3,0,2],[1,2,1,0]],[[0,1,2,1],[1,3,3,3],[1,3,0,2],[1,2,1,0]],[[2,2,2,1],[2,2,1,2],[2,3,1,1],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,3,1,1],[0,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,3,1,1],[0,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,3,1,1],[0,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,3,1,1],[0,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,3,1,1],[0,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,3,1,1],[0,2,0,1]],[[0,1,3,1],[1,3,3,2],[1,3,1,0],[1,2,2,0]],[[0,1,2,2],[1,3,3,2],[1,3,1,0],[1,2,2,0]],[[0,1,2,1],[1,4,3,2],[1,3,1,0],[1,2,2,0]],[[0,1,2,1],[1,3,4,2],[1,3,1,0],[1,2,2,0]],[[0,1,2,1],[1,3,3,2],[1,4,1,0],[1,2,2,0]],[[0,1,2,1],[1,3,3,2],[1,3,1,0],[2,2,2,0]],[[0,1,2,1],[1,3,3,2],[1,3,1,0],[1,3,2,0]],[[1,2,2,1],[2,2,1,2],[2,3,1,0],[2,2,0,1]],[[1,2,2,1],[2,2,1,2],[3,3,1,0],[1,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,3,1,0],[1,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,3,1,0],[1,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,3,1,0],[1,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,3,1,0],[1,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,3,1,0],[1,2,0,1]],[[1,2,2,1],[2,2,1,2],[2,3,1,0],[2,1,1,1]],[[1,2,2,1],[2,2,1,2],[3,3,1,0],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[2,3,1,0],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[2,3,1,0],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[2,3,1,0],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[2,3,1,0],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[2,3,1,0],[1,1,1,1]],[[1,2,2,1],[2,2,1,2],[3,3,1,0],[0,2,1,1]],[[1,2,2,1],[3,2,1,2],[2,3,1,0],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[2,3,1,0],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[2,3,1,0],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[2,3,1,0],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[2,3,1,0],[0,2,1,1]],[[0,1,3,1],[1,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,1,2,2],[1,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,1,2,1],[1,3,4,2],[1,3,2,0],[1,1,1,1]],[[0,1,3,1],[1,3,3,2],[1,3,2,0],[1,1,2,0]],[[0,1,2,2],[1,3,3,2],[1,3,2,0],[1,1,2,0]],[[0,1,2,1],[1,4,3,2],[1,3,2,0],[1,1,2,0]],[[0,1,2,1],[1,3,4,2],[1,3,2,0],[1,1,2,0]],[[0,1,2,1],[1,3,3,2],[1,4,2,0],[1,1,2,0]],[[0,1,3,1],[1,3,3,2],[1,3,2,0],[1,2,0,1]],[[0,1,2,2],[1,3,3,2],[1,3,2,0],[1,2,0,1]],[[0,1,2,1],[1,4,3,2],[1,3,2,0],[1,2,0,1]],[[0,1,2,1],[1,3,4,2],[1,3,2,0],[1,2,0,1]],[[0,1,2,1],[1,3,3,2],[1,4,2,0],[1,2,0,1]],[[0,1,3,1],[1,3,3,2],[1,3,2,0],[1,2,1,0]],[[0,1,2,2],[1,3,3,2],[1,3,2,0],[1,2,1,0]],[[0,1,2,1],[1,4,3,2],[1,3,2,0],[1,2,1,0]],[[0,1,2,1],[1,3,4,2],[1,3,2,0],[1,2,1,0]],[[0,1,2,1],[1,3,3,2],[1,4,2,0],[1,2,1,0]],[[0,1,2,1],[1,3,3,2],[1,3,2,0],[2,2,1,0]],[[0,1,2,1],[1,3,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,2,1],[2,2,1,2],[2,3,0,2],[2,2,0,0]],[[1,2,2,1],[2,2,1,2],[3,3,0,2],[1,2,0,0]],[[1,2,2,1],[2,2,1,3],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[3,2,1,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,2],[2,2,1,2],[2,3,0,2],[1,2,0,0]],[[1,2,3,1],[2,2,1,2],[2,3,0,2],[1,2,0,0]],[[1,3,2,1],[2,2,1,2],[2,3,0,2],[1,2,0,0]],[[2,2,2,1],[2,2,1,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[2,2,1,2],[2,3,0,2],[2,1,1,0]],[[1,2,2,1],[2,2,1,2],[3,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,2,1,3],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[3,2,1,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,2],[2,2,1,2],[2,3,0,2],[1,1,1,0]],[[1,2,3,1],[2,2,1,2],[2,3,0,2],[1,1,1,0]],[[1,3,2,1],[2,2,1,2],[2,3,0,2],[1,1,1,0]],[[2,2,2,1],[2,2,1,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[2,3,0,2],[2,1,0,1]],[[1,2,2,1],[2,2,1,2],[3,3,0,2],[1,1,0,1]],[[1,2,2,1],[2,2,1,3],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[3,2,1,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,2],[2,2,1,2],[2,3,0,2],[1,1,0,1]],[[1,2,3,1],[2,2,1,2],[2,3,0,2],[1,1,0,1]],[[1,3,2,1],[2,2,1,2],[2,3,0,2],[1,1,0,1]],[[2,2,2,1],[2,2,1,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[2,2,1,2],[3,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,3],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[3,2,1,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[2,3,0,2],[0,2,1,0]],[[1,2,3,1],[2,2,1,2],[2,3,0,2],[0,2,1,0]],[[1,3,2,1],[2,2,1,2],[2,3,0,2],[0,2,1,0]],[[2,2,2,1],[2,2,1,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,3,0,2],[0,2,0,1]],[[1,2,2,1],[2,2,1,3],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,3,0,2],[0,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,3,0,2],[0,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,3,0,2],[0,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[2,2,1,2],[2,3,0,1],[2,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,3,0,1],[1,2,1,0]],[[1,2,2,1],[3,2,1,2],[2,3,0,1],[1,2,1,0]],[[1,2,2,2],[2,2,1,2],[2,3,0,1],[1,2,1,0]],[[0,1,3,1],[1,3,3,2],[1,3,3,0],[1,2,0,0]],[[0,1,2,2],[1,3,3,2],[1,3,3,0],[1,2,0,0]],[[0,1,2,1],[1,4,3,2],[1,3,3,0],[1,2,0,0]],[[0,1,2,1],[1,3,4,2],[1,3,3,0],[1,2,0,0]],[[0,1,2,1],[1,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,3,1],[2,2,1,2],[2,3,0,1],[1,2,1,0]],[[1,3,2,1],[2,2,1,2],[2,3,0,1],[1,2,1,0]],[[2,2,2,1],[2,2,1,2],[2,3,0,1],[1,2,1,0]],[[1,2,2,1],[2,2,1,2],[2,3,0,1],[2,1,2,0]],[[1,2,2,1],[2,2,1,2],[3,3,0,1],[1,1,2,0]],[[1,2,2,1],[3,2,1,2],[2,3,0,1],[1,1,2,0]],[[1,2,2,2],[2,2,1,2],[2,3,0,1],[1,1,2,0]],[[1,2,3,1],[2,2,1,2],[2,3,0,1],[1,1,2,0]],[[1,3,2,1],[2,2,1,2],[2,3,0,1],[1,1,2,0]],[[2,2,2,1],[2,2,1,2],[2,3,0,1],[1,1,2,0]],[[1,2,2,1],[2,2,1,2],[3,3,0,1],[0,2,2,0]],[[1,2,2,1],[3,2,1,2],[2,3,0,1],[0,2,2,0]],[[1,2,2,2],[2,2,1,2],[2,3,0,1],[0,2,2,0]],[[1,2,3,1],[2,2,1,2],[2,3,0,1],[0,2,2,0]],[[1,3,2,1],[2,2,1,2],[2,3,0,1],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[2,3,0,1],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,3,0,0],[2,2,1,1]],[[1,2,2,1],[2,2,1,2],[3,3,0,0],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[2,3,0,0],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[2,3,0,0],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[2,3,0,0],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[2,3,0,0],[1,2,1,1]],[[2,2,2,1],[2,2,1,2],[2,3,0,0],[1,2,1,1]],[[1,2,2,1],[2,2,1,2],[2,3,0,0],[2,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,3,0,0],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[2,3,0,0],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[2,3,0,0],[1,1,2,1]],[[1,2,3,1],[2,2,1,2],[2,3,0,0],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[2,3,0,0],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[2,3,0,0],[1,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,3,0,0],[0,2,2,1]],[[1,2,2,1],[3,2,1,2],[2,3,0,0],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[2,3,0,0],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[2,3,0,0],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[2,3,0,0],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[2,3,0,0],[0,2,2,1]],[[1,2,2,1],[2,2,1,2],[2,2,3,1],[2,1,0,0]],[[1,2,2,1],[2,2,1,2],[3,2,3,1],[1,1,0,0]],[[1,2,2,1],[2,2,1,3],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[3,2,1,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,2],[2,2,1,2],[2,2,3,1],[1,1,0,0]],[[1,2,3,1],[2,2,1,2],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[2,2,1,2],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[2,2,1,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[2,2,1,2],[3,2,3,1],[0,2,0,0]],[[1,2,2,1],[2,2,1,3],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[3,2,1,2],[2,2,3,1],[0,2,0,0]],[[1,2,2,2],[2,2,1,2],[2,2,3,1],[0,2,0,0]],[[1,2,3,1],[2,2,1,2],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[2,2,1,2],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[2,2,1,2],[2,2,3,1],[0,2,0,0]],[[0,1,3,1],[1,3,3,2],[2,0,0,2],[1,2,2,1]],[[0,1,2,2],[1,3,3,2],[2,0,0,2],[1,2,2,1]],[[0,1,2,1],[1,3,3,3],[2,0,0,2],[1,2,2,1]],[[0,1,3,1],[1,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,1,2,2],[1,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,1,2,1],[1,3,3,3],[2,0,1,2],[1,2,1,1]],[[0,1,3,1],[1,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,1,2,2],[1,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,1,2,1],[1,3,3,3],[2,0,1,2],[1,2,2,0]],[[0,1,3,1],[1,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,1,2,2],[1,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,1,2,1],[1,3,4,2],[2,0,3,0],[1,2,1,1]],[[0,1,3,1],[1,3,3,2],[2,0,3,0],[1,2,2,0]],[[0,1,2,2],[1,3,3,2],[2,0,3,0],[1,2,2,0]],[[0,1,2,1],[1,4,3,2],[2,0,3,0],[1,2,2,0]],[[0,1,2,1],[1,3,4,2],[2,0,3,0],[1,2,2,0]],[[0,1,3,1],[1,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,1,2,2],[1,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,1,2,1],[1,3,3,3],[2,1,0,2],[0,2,2,1]],[[0,1,3,1],[1,3,3,2],[2,1,1,2],[0,2,1,1]],[[0,1,2,2],[1,3,3,2],[2,1,1,2],[0,2,1,1]],[[0,1,2,1],[1,3,3,3],[2,1,1,2],[0,2,1,1]],[[0,1,3,1],[1,3,3,2],[2,1,1,2],[0,2,2,0]],[[0,1,2,2],[1,3,3,2],[2,1,1,2],[0,2,2,0]],[[0,1,2,1],[1,3,3,3],[2,1,1,2],[0,2,2,0]],[[0,1,3,1],[1,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,1,2,2],[1,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,1,2,1],[1,3,4,2],[2,1,3,0],[0,2,1,1]],[[0,1,3,1],[1,3,3,2],[2,1,3,0],[0,2,2,0]],[[0,1,2,2],[1,3,3,2],[2,1,3,0],[0,2,2,0]],[[0,1,2,1],[1,4,3,2],[2,1,3,0],[0,2,2,0]],[[0,1,2,1],[1,3,4,2],[2,1,3,0],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[2,2,1,2],[3,2,2,1],[1,2,0,0]],[[1,2,2,1],[2,2,1,3],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[3,2,1,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,2],[2,2,1,2],[2,2,2,1],[1,2,0,0]],[[1,2,3,1],[2,2,1,2],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[2,2,1,2],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[2,2,1,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[2,2,1,2],[2,2,2,1],[2,1,1,0]],[[1,2,2,1],[2,2,1,2],[3,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,2,1,3],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[3,2,1,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,2],[2,2,1,2],[2,2,2,1],[1,1,1,0]],[[1,2,3,1],[2,2,1,2],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[2,2,1,2],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[2,2,1,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[2,2,2,1],[2,1,0,1]],[[1,2,2,1],[2,2,1,2],[3,2,2,1],[1,1,0,1]],[[1,2,2,1],[2,2,1,3],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[3,2,1,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,2],[2,2,1,2],[2,2,2,1],[1,1,0,1]],[[1,2,3,1],[2,2,1,2],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[2,2,1,2],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[2,2,1,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[2,2,1,2],[2,2,2,1],[2,0,2,0]],[[1,2,2,1],[2,2,1,2],[3,2,2,1],[1,0,2,0]],[[1,2,2,1],[2,2,1,3],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[3,2,1,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,2],[2,2,1,2],[2,2,2,1],[1,0,2,0]],[[1,2,3,1],[2,2,1,2],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[2,2,1,2],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[2,2,1,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,2,1],[2,0,1,1]],[[1,2,2,1],[2,2,1,2],[3,2,2,1],[1,0,1,1]],[[1,2,2,1],[2,2,1,3],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[3,2,1,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,2],[2,2,1,2],[2,2,2,1],[1,0,1,1]],[[1,2,3,1],[2,2,1,2],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[2,2,1,2],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[2,2,1,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[2,2,1,2],[3,2,2,1],[0,2,1,0]],[[1,2,2,1],[2,2,1,3],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[3,2,1,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[2,2,2,1],[0,2,1,0]],[[1,2,3,1],[2,2,1,2],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[2,2,1,2],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[2,2,1,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,2,2,1],[0,2,0,1]],[[1,2,2,1],[2,2,1,3],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,2,2,1],[0,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[2,2,1,2],[3,2,2,1],[0,1,2,0]],[[1,2,2,1],[2,2,1,3],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[3,2,1,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,2],[2,2,1,2],[2,2,2,1],[0,1,2,0]],[[1,2,3,1],[2,2,1,2],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[2,2,1,2],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[2,2,1,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[2,2,1,2],[3,2,2,1],[0,1,1,1]],[[1,2,2,1],[2,2,1,3],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[3,2,1,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,2],[2,2,1,2],[2,2,2,1],[0,1,1,1]],[[1,2,3,1],[2,2,1,2],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[2,2,1,2],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[2,2,1,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[2,2,1,2],[2,2,2,0],[2,2,0,1]],[[0,1,3,1],[1,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,1,2,2],[1,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,1,2,1],[1,3,3,3],[2,2,0,2],[0,1,2,1]],[[0,1,3,1],[1,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,1,2,2],[1,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,1,2,1],[1,3,3,3],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[2,2,1,2],[3,2,2,0],[1,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,2,2,0],[1,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,2,2,0],[1,2,0,1]],[[0,1,2,1],[1,3,3,2],[3,2,1,0],[1,2,2,0]],[[0,1,2,1],[1,3,3,2],[2,2,1,0],[2,2,2,0]],[[0,1,2,1],[1,3,3,2],[2,2,1,0],[1,3,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,2,0],[2,1,1,1]],[[1,2,2,1],[2,2,1,2],[3,2,2,0],[1,1,1,1]],[[0,1,3,1],[1,3,3,2],[2,2,1,2],[0,0,2,1]],[[0,1,2,2],[1,3,3,2],[2,2,1,2],[0,0,2,1]],[[0,1,2,1],[1,3,3,3],[2,2,1,2],[0,0,2,1]],[[0,1,3,1],[1,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,1,2,2],[1,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,1,2,1],[1,3,3,3],[2,2,1,2],[0,1,1,1]],[[0,1,3,1],[1,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,1,2,2],[1,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,1,2,1],[1,3,3,3],[2,2,1,2],[0,1,2,0]],[[0,1,3,1],[1,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,1,2,2],[1,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,1,2,1],[1,3,3,3],[2,2,1,2],[0,2,0,1]],[[0,1,3,1],[1,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,1,2,2],[1,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,1,2,1],[1,3,3,3],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,3],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[2,2,2,0],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[2,2,1,2],[2,2,2,0],[2,0,2,1]],[[1,2,2,1],[2,2,1,2],[3,2,2,0],[1,0,2,1]],[[1,2,2,1],[2,2,1,3],[2,2,2,0],[1,0,2,1]],[[0,1,3,1],[1,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,1,2,2],[1,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,1,2,1],[1,3,3,3],[2,2,1,2],[1,0,1,1]],[[0,1,3,1],[1,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,1,2,2],[1,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,1,2,1],[1,3,3,3],[2,2,1,2],[1,0,2,0]],[[0,1,3,1],[1,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,1,2,2],[1,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,1,2,1],[1,3,3,3],[2,2,1,2],[1,1,0,1]],[[0,1,3,1],[1,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,1,2,2],[1,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,1,2,1],[1,3,3,3],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[3,2,1,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,2],[2,2,1,2],[2,2,2,0],[1,0,2,1]],[[1,2,3,1],[2,2,1,2],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[2,2,1,2],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[2,2,1,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[2,2,1,2],[3,2,2,0],[0,2,1,1]],[[1,2,2,1],[2,2,1,3],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[3,2,1,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[2,2,2,0],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[2,2,1,2],[3,2,2,0],[0,1,2,1]],[[1,2,2,1],[2,2,1,3],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[3,2,1,2],[2,2,2,0],[0,1,2,1]],[[1,2,2,2],[2,2,1,2],[2,2,2,0],[0,1,2,1]],[[1,2,3,1],[2,2,1,2],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[2,2,1,2],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[2,2,1,2],[2,2,2,0],[0,1,2,1]],[[0,1,2,1],[1,3,3,2],[3,2,2,0],[1,2,1,0]],[[0,1,2,1],[1,3,3,2],[2,2,2,0],[2,2,1,0]],[[0,1,2,1],[1,3,3,2],[2,2,2,0],[1,3,1,0]],[[1,2,2,1],[2,2,1,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,1],[2,2,1,2],[3,2,1,2],[1,2,0,0]],[[0,1,3,1],[1,3,3,2],[2,2,2,2],[0,1,0,1]],[[0,1,2,2],[1,3,3,2],[2,2,2,2],[0,1,0,1]],[[0,1,2,1],[1,3,3,3],[2,2,2,2],[0,1,0,1]],[[1,2,2,1],[2,2,1,3],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[3,2,1,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,2],[2,2,1,2],[2,2,1,2],[1,2,0,0]],[[1,2,3,1],[2,2,1,2],[2,2,1,2],[1,2,0,0]],[[1,3,2,1],[2,2,1,2],[2,2,1,2],[1,2,0,0]],[[2,2,2,1],[2,2,1,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[2,2,1,2],[2,2,1,2],[2,1,1,0]],[[1,2,2,1],[2,2,1,2],[2,2,1,3],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[3,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,2,1,3],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[3,2,1,2],[2,2,1,2],[1,1,1,0]],[[0,1,3,1],[1,3,3,2],[2,2,2,2],[1,0,0,1]],[[0,1,2,2],[1,3,3,2],[2,2,2,2],[1,0,0,1]],[[0,1,2,1],[1,3,3,3],[2,2,2,2],[1,0,0,1]],[[1,2,2,2],[2,2,1,2],[2,2,1,2],[1,1,1,0]],[[1,2,3,1],[2,2,1,2],[2,2,1,2],[1,1,1,0]],[[1,3,2,1],[2,2,1,2],[2,2,1,2],[1,1,1,0]],[[2,2,2,1],[2,2,1,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[2,2,1,2],[1,1,0,2]],[[1,2,2,1],[2,2,1,2],[2,2,1,2],[2,1,0,1]],[[1,2,2,1],[2,2,1,2],[2,2,1,3],[1,1,0,1]],[[1,2,2,1],[2,2,1,2],[3,2,1,2],[1,1,0,1]],[[1,2,2,1],[2,2,1,3],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[3,2,1,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,2],[2,2,1,2],[2,2,1,2],[1,1,0,1]],[[1,2,3,1],[2,2,1,2],[2,2,1,2],[1,1,0,1]],[[1,3,2,1],[2,2,1,2],[2,2,1,2],[1,1,0,1]],[[2,2,2,1],[2,2,1,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[2,2,1,2],[2,2,1,2],[2,0,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,1,3],[1,0,2,0]],[[1,2,2,1],[2,2,1,2],[3,2,1,2],[1,0,2,0]],[[1,2,2,1],[2,2,1,3],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[3,2,1,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,2],[2,2,1,2],[2,2,1,2],[1,0,2,0]],[[1,2,3,1],[2,2,1,2],[2,2,1,2],[1,0,2,0]],[[1,3,2,1],[2,2,1,2],[2,2,1,2],[1,0,2,0]],[[2,2,2,1],[2,2,1,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,1,2],[1,0,1,2]],[[1,2,2,1],[2,2,1,2],[2,2,1,2],[2,0,1,1]],[[1,2,2,1],[2,2,1,2],[2,2,1,3],[1,0,1,1]],[[1,2,2,1],[2,2,1,2],[3,2,1,2],[1,0,1,1]],[[1,2,2,1],[2,2,1,3],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[3,2,1,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,2],[2,2,1,2],[2,2,1,2],[1,0,1,1]],[[1,2,3,1],[2,2,1,2],[2,2,1,2],[1,0,1,1]],[[1,3,2,1],[2,2,1,2],[2,2,1,2],[1,0,1,1]],[[2,2,2,1],[2,2,1,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[2,2,1,2],[2,2,1,3],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,3],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[3,2,1,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[2,2,1,2],[0,2,1,0]],[[1,2,3,1],[2,2,1,2],[2,2,1,2],[0,2,1,0]],[[1,3,2,1],[2,2,1,2],[2,2,1,2],[0,2,1,0]],[[2,2,2,1],[2,2,1,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[2,2,1,2],[0,2,0,2]],[[1,2,2,1],[2,2,1,2],[2,2,1,3],[0,2,0,1]],[[1,2,2,1],[2,2,1,2],[3,2,1,2],[0,2,0,1]],[[1,2,2,1],[2,2,1,3],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,2,1,2],[0,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,2,1,2],[0,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,2,1,2],[0,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,2,1,2],[0,2,0,1]],[[0,1,3,1],[1,3,3,2],[2,2,3,0],[0,0,2,1]],[[0,1,2,2],[1,3,3,2],[2,2,3,0],[0,0,2,1]],[[0,1,2,1],[1,3,4,2],[2,2,3,0],[0,0,2,1]],[[0,1,3,1],[1,3,3,2],[2,2,3,0],[0,1,1,1]],[[0,1,2,2],[1,3,3,2],[2,2,3,0],[0,1,1,1]],[[0,1,2,1],[1,4,3,2],[2,2,3,0],[0,1,1,1]],[[0,1,2,1],[1,3,4,2],[2,2,3,0],[0,1,1,1]],[[0,1,3,1],[1,3,3,2],[2,2,3,0],[0,1,2,0]],[[0,1,2,2],[1,3,3,2],[2,2,3,0],[0,1,2,0]],[[0,1,2,1],[1,4,3,2],[2,2,3,0],[0,1,2,0]],[[0,1,2,1],[1,3,4,2],[2,2,3,0],[0,1,2,0]],[[0,1,3,1],[1,3,3,2],[2,2,3,0],[0,2,0,1]],[[0,1,2,2],[1,3,3,2],[2,2,3,0],[0,2,0,1]],[[0,1,2,1],[1,4,3,2],[2,2,3,0],[0,2,0,1]],[[0,1,2,1],[1,3,4,2],[2,2,3,0],[0,2,0,1]],[[0,1,3,1],[1,3,3,2],[2,2,3,0],[0,2,1,0]],[[0,1,2,2],[1,3,3,2],[2,2,3,0],[0,2,1,0]],[[0,1,2,1],[1,4,3,2],[2,2,3,0],[0,2,1,0]],[[0,1,2,1],[1,3,4,2],[2,2,3,0],[0,2,1,0]],[[0,1,3,1],[1,3,3,2],[2,2,3,0],[1,0,1,1]],[[0,1,2,2],[1,3,3,2],[2,2,3,0],[1,0,1,1]],[[0,1,2,1],[1,4,3,2],[2,2,3,0],[1,0,1,1]],[[0,1,2,1],[1,3,4,2],[2,2,3,0],[1,0,1,1]],[[0,1,3,1],[1,3,3,2],[2,2,3,0],[1,0,2,0]],[[0,1,2,2],[1,3,3,2],[2,2,3,0],[1,0,2,0]],[[0,1,2,1],[1,4,3,2],[2,2,3,0],[1,0,2,0]],[[0,1,2,1],[1,3,4,2],[2,2,3,0],[1,0,2,0]],[[0,1,3,1],[1,3,3,2],[2,2,3,0],[1,1,0,1]],[[0,1,2,2],[1,3,3,2],[2,2,3,0],[1,1,0,1]],[[0,1,2,1],[1,4,3,2],[2,2,3,0],[1,1,0,1]],[[0,1,2,1],[1,3,4,2],[2,2,3,0],[1,1,0,1]],[[0,1,3,1],[1,3,3,2],[2,2,3,0],[1,1,1,0]],[[0,1,2,2],[1,3,3,2],[2,2,3,0],[1,1,1,0]],[[0,1,2,1],[1,4,3,2],[2,2,3,0],[1,1,1,0]],[[0,1,2,1],[1,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[2,2,1,3],[0,1,2,0]],[[1,2,2,1],[2,2,1,2],[3,2,1,2],[0,1,2,0]],[[1,2,2,1],[2,2,1,3],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[3,2,1,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,2],[2,2,1,2],[2,2,1,2],[0,1,2,0]],[[1,2,3,1],[2,2,1,2],[2,2,1,2],[0,1,2,0]],[[1,3,2,1],[2,2,1,2],[2,2,1,2],[0,1,2,0]],[[2,2,2,1],[2,2,1,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,1,2],[0,1,1,2]],[[1,2,2,1],[2,2,1,2],[2,2,1,3],[0,1,1,1]],[[1,2,2,1],[2,2,1,2],[3,2,1,2],[0,1,1,1]],[[1,2,2,1],[2,2,1,3],[2,2,1,2],[0,1,1,1]],[[1,2,2,1],[3,2,1,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,2],[2,2,1,2],[2,2,1,2],[0,1,1,1]],[[1,2,3,1],[2,2,1,2],[2,2,1,2],[0,1,1,1]],[[1,3,2,1],[2,2,1,2],[2,2,1,2],[0,1,1,1]],[[2,2,2,1],[2,2,1,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,1],[2,2,1,2],[2,2,1,1],[2,1,2,0]],[[1,2,2,1],[2,2,1,2],[3,2,1,1],[1,1,2,0]],[[1,2,2,1],[2,2,1,3],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[3,2,1,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,2],[2,2,1,2],[2,2,1,1],[1,1,2,0]],[[1,2,3,1],[2,2,1,2],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[2,2,1,2],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[2,2,1,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[2,2,1,2],[3,2,1,1],[0,2,2,0]],[[1,2,2,1],[2,2,1,3],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[3,2,1,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,2],[2,2,1,2],[2,2,1,1],[0,2,2,0]],[[1,2,3,1],[2,2,1,2],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[2,2,1,2],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,1,0],[2,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,2,1,0],[1,1,2,1]],[[1,2,2,1],[2,2,1,3],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[2,2,1,0],[1,1,2,1]],[[1,2,3,1],[2,2,1,2],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,2,1,0],[0,2,2,1]],[[1,2,2,1],[2,2,1,3],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[3,2,1,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[2,2,1,0],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[2,2,1,2],[2,2,0,2],[2,1,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,0,3],[1,1,2,0]],[[1,2,2,1],[2,2,1,2],[3,2,0,2],[1,1,2,0]],[[1,2,2,1],[2,2,1,3],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[3,2,1,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,2],[2,2,1,2],[2,2,0,2],[1,1,2,0]],[[1,2,3,1],[2,2,1,2],[2,2,0,2],[1,1,2,0]],[[1,3,2,1],[2,2,1,2],[2,2,0,2],[1,1,2,0]],[[2,2,2,1],[2,2,1,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,0,2],[1,1,1,2]],[[1,2,2,1],[2,2,1,2],[2,2,0,2],[2,1,1,1]],[[1,2,2,1],[2,2,1,2],[2,2,0,3],[1,1,1,1]],[[1,2,2,1],[2,2,1,2],[3,2,0,2],[1,1,1,1]],[[1,2,2,1],[2,2,1,3],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[2,2,0,2],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[2,2,0,2],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[2,2,0,2],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[2,2,1,2],[2,2,0,2],[1,0,2,2]],[[1,2,2,1],[2,2,1,2],[2,2,0,2],[1,0,3,1]],[[1,2,2,1],[2,2,1,2],[2,2,0,2],[2,0,2,1]],[[1,2,2,1],[2,2,1,2],[2,2,0,3],[1,0,2,1]],[[1,2,2,1],[2,2,1,2],[3,2,0,2],[1,0,2,1]],[[1,2,2,1],[2,2,1,3],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[3,2,1,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,2],[2,2,1,2],[2,2,0,2],[1,0,2,1]],[[1,2,3,1],[2,2,1,2],[2,2,0,2],[1,0,2,1]],[[1,3,2,1],[2,2,1,2],[2,2,0,2],[1,0,2,1]],[[2,2,2,1],[2,2,1,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[2,2,1,2],[2,2,0,3],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[3,2,0,2],[0,2,2,0]],[[1,2,2,1],[2,2,1,3],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[3,2,1,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,2],[2,2,1,2],[2,2,0,2],[0,2,2,0]],[[1,2,3,1],[2,2,1,2],[2,2,0,2],[0,2,2,0]],[[1,3,2,1],[2,2,1,2],[2,2,0,2],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,0,2],[0,2,1,2]],[[1,2,2,1],[2,2,1,2],[2,2,0,3],[0,2,1,1]],[[1,2,2,1],[2,2,1,2],[3,2,0,2],[0,2,1,1]],[[1,2,2,1],[2,2,1,3],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[3,2,1,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[2,2,0,2],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[2,2,0,2],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[2,2,0,2],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[2,2,1,2],[2,2,0,2],[0,1,2,2]],[[1,2,2,1],[2,2,1,2],[2,2,0,2],[0,1,3,1]],[[1,2,2,1],[2,2,1,2],[2,2,0,3],[0,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,2,0,2],[0,1,2,1]],[[1,2,2,1],[2,2,1,3],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[3,2,1,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,2],[2,2,1,2],[2,2,0,2],[0,1,2,1]],[[1,2,3,1],[2,2,1,2],[2,2,0,2],[0,1,2,1]],[[1,3,2,1],[2,2,1,2],[2,2,0,2],[0,1,2,1]],[[2,2,2,1],[2,2,1,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[2,2,1,2],[2,2,0,1],[1,3,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,0,1],[2,2,2,0]],[[1,2,2,1],[2,2,1,2],[3,2,0,1],[1,2,2,0]],[[1,2,2,1],[3,2,1,2],[2,2,0,1],[1,2,2,0]],[[1,2,2,2],[2,2,1,2],[2,2,0,1],[1,2,2,0]],[[1,2,3,1],[2,2,1,2],[2,2,0,1],[1,2,2,0]],[[1,3,2,1],[2,2,1,2],[2,2,0,1],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[2,2,0,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,2,0,1],[2,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,2,0,1],[1,1,2,1]],[[1,2,2,1],[2,2,1,3],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[2,2,0,1],[1,1,2,1]],[[1,2,3,1],[2,2,1,2],[2,2,0,1],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[2,2,0,1],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,2,0,1],[0,2,2,1]],[[1,2,2,1],[2,2,1,3],[2,2,0,1],[0,2,2,1]],[[1,2,2,1],[3,2,1,2],[2,2,0,1],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[2,2,0,1],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[2,2,0,1],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[2,2,0,1],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[2,2,0,1],[0,2,2,1]],[[1,2,2,1],[2,2,1,2],[2,2,0,0],[1,3,2,1]],[[1,2,2,1],[2,2,1,2],[2,2,0,0],[2,2,2,1]],[[1,2,2,1],[2,2,1,2],[3,2,0,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[2,2,0,0],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[2,2,0,0],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[2,2,0,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[2,2,0,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[2,2,0,0],[1,2,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,1],[2,2,1,2],[3,1,3,2],[1,0,0,1]],[[1,2,2,1],[2,2,1,3],[2,1,3,2],[1,0,0,1]],[[1,2,2,1],[3,2,1,2],[2,1,3,2],[1,0,0,1]],[[1,2,2,2],[2,2,1,2],[2,1,3,2],[1,0,0,1]],[[1,2,3,1],[2,2,1,2],[2,1,3,2],[1,0,0,1]],[[1,3,2,1],[2,2,1,2],[2,1,3,2],[1,0,0,1]],[[2,2,2,1],[2,2,1,2],[2,1,3,2],[1,0,0,1]],[[1,2,2,1],[2,2,1,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,1],[2,2,1,3],[2,1,3,2],[0,1,0,1]],[[1,2,2,1],[3,2,1,2],[2,1,3,2],[0,1,0,1]],[[1,2,2,2],[2,2,1,2],[2,1,3,2],[0,1,0,1]],[[1,2,3,1],[2,2,1,2],[2,1,3,2],[0,1,0,1]],[[1,3,2,1],[2,2,1,2],[2,1,3,2],[0,1,0,1]],[[2,2,2,1],[2,2,1,2],[2,1,3,2],[0,1,0,1]],[[0,1,2,1],[1,3,3,2],[3,3,0,0],[1,2,2,0]],[[0,1,2,1],[1,3,3,2],[2,3,0,0],[2,2,2,0]],[[0,1,2,1],[1,3,3,2],[2,3,0,0],[1,3,2,0]],[[0,1,3,1],[1,3,3,2],[2,3,0,2],[0,1,1,1]],[[0,1,2,2],[1,3,3,2],[2,3,0,2],[0,1,1,1]],[[0,1,2,1],[1,3,3,3],[2,3,0,2],[0,1,1,1]],[[0,1,3,1],[1,3,3,2],[2,3,0,2],[0,1,2,0]],[[0,1,2,2],[1,3,3,2],[2,3,0,2],[0,1,2,0]],[[0,1,2,1],[1,3,3,3],[2,3,0,2],[0,1,2,0]],[[0,1,3,1],[1,3,3,2],[2,3,0,2],[0,2,0,1]],[[0,1,2,2],[1,3,3,2],[2,3,0,2],[0,2,0,1]],[[0,1,2,1],[1,3,3,3],[2,3,0,2],[0,2,0,1]],[[0,1,3,1],[1,3,3,2],[2,3,0,2],[0,2,1,0]],[[0,1,2,2],[1,3,3,2],[2,3,0,2],[0,2,1,0]],[[0,1,2,1],[1,3,3,3],[2,3,0,2],[0,2,1,0]],[[0,1,3,1],[1,3,3,2],[2,3,0,2],[1,0,1,1]],[[0,1,2,2],[1,3,3,2],[2,3,0,2],[1,0,1,1]],[[0,1,2,1],[1,3,3,3],[2,3,0,2],[1,0,1,1]],[[0,1,3,1],[1,3,3,2],[2,3,0,2],[1,0,2,0]],[[0,1,2,2],[1,3,3,2],[2,3,0,2],[1,0,2,0]],[[0,1,2,1],[1,3,3,3],[2,3,0,2],[1,0,2,0]],[[0,1,3,1],[1,3,3,2],[2,3,0,2],[1,1,0,1]],[[0,1,2,2],[1,3,3,2],[2,3,0,2],[1,1,0,1]],[[0,1,2,1],[1,3,3,3],[2,3,0,2],[1,1,0,1]],[[0,1,3,1],[1,3,3,2],[2,3,0,2],[1,1,1,0]],[[0,1,2,2],[1,3,3,2],[2,3,0,2],[1,1,1,0]],[[0,1,2,1],[1,3,3,3],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,3,1],[2,1,1,0]],[[1,2,2,1],[2,2,1,2],[3,1,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,1,3],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,1,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,2],[2,2,1,2],[2,1,3,1],[1,1,1,0]],[[0,1,3,1],[1,3,3,2],[2,3,0,2],[1,2,0,0]],[[0,1,2,2],[1,3,3,2],[2,3,0,2],[1,2,0,0]],[[0,1,2,1],[1,3,3,3],[2,3,0,2],[1,2,0,0]],[[1,2,3,1],[2,2,1,2],[2,1,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,1,2],[2,1,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,1,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,3,1],[2,1,0,1]],[[1,2,2,1],[2,2,1,2],[3,1,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,1,3],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[3,2,1,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,1,2],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,1,2],[2,1,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,1,2],[2,1,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,1,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,1,2],[2,1,3,1],[2,0,2,0]],[[1,2,2,1],[2,2,1,2],[3,1,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,1,3],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,1,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,2],[2,2,1,2],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,1,2],[2,1,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,1,2],[2,1,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,1,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,1,2],[2,1,3,1],[2,0,1,1]],[[1,2,2,1],[2,2,1,2],[3,1,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,1,3],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,1,2],[2,1,3,1],[1,0,1,1]],[[0,1,3,1],[1,3,3,2],[2,3,1,0],[0,2,2,0]],[[0,1,2,2],[1,3,3,2],[2,3,1,0],[0,2,2,0]],[[0,1,2,1],[1,4,3,2],[2,3,1,0],[0,2,2,0]],[[0,1,2,1],[1,3,4,2],[2,3,1,0],[0,2,2,0]],[[0,1,2,1],[1,3,3,2],[3,3,1,0],[0,2,2,0]],[[0,1,2,1],[1,3,3,2],[2,4,1,0],[0,2,2,0]],[[0,1,2,1],[1,3,3,2],[2,3,1,0],[0,3,2,0]],[[0,1,3,1],[1,3,3,2],[2,3,1,0],[1,1,2,0]],[[0,1,2,2],[1,3,3,2],[2,3,1,0],[1,1,2,0]],[[0,1,2,1],[1,4,3,2],[2,3,1,0],[1,1,2,0]],[[0,1,2,1],[1,3,4,2],[2,3,1,0],[1,1,2,0]],[[0,1,2,1],[1,3,3,2],[3,3,1,0],[1,1,2,0]],[[0,1,2,1],[1,3,3,2],[2,4,1,0],[1,1,2,0]],[[0,1,2,1],[1,3,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,2,2],[2,2,1,2],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,1,2],[2,1,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,1,2],[2,1,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,1,2],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,1,2],[3,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,1,3],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,1,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,1,2],[2,1,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,1,2],[2,1,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,1,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,1,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,1,3],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,1,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,1,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,1,2],[3,1,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,1,3],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,1,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,1,2],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,1,2],[2,1,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,1,2],[2,1,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,1,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,1,2],[3,1,3,1],[0,1,1,1]],[[0,1,3,1],[1,3,3,2],[2,3,1,2],[0,0,1,1]],[[0,1,2,2],[1,3,3,2],[2,3,1,2],[0,0,1,1]],[[0,1,2,1],[1,3,3,3],[2,3,1,2],[0,0,1,1]],[[0,1,3,1],[1,3,3,2],[2,3,1,2],[0,0,2,0]],[[0,1,2,2],[1,3,3,2],[2,3,1,2],[0,0,2,0]],[[0,1,2,1],[1,3,3,3],[2,3,1,2],[0,0,2,0]],[[1,2,2,1],[2,2,1,3],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,1,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,1,2],[2,1,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,1,2],[2,1,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,1,2],[2,1,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,1,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[2,2,1,3],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[3,2,1,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,2],[2,2,1,2],[2,1,3,1],[0,0,2,1]],[[1,2,3,1],[2,2,1,2],[2,1,3,1],[0,0,2,1]],[[1,3,2,1],[2,2,1,2],[2,1,3,1],[0,0,2,1]],[[2,2,2,1],[2,2,1,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,3,0],[2,1,1,1]],[[1,2,2,1],[2,2,1,2],[3,1,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,1,3],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[2,1,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[2,1,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[2,1,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,1,2],[2,1,3,0],[2,0,2,1]],[[1,2,2,1],[2,2,1,2],[3,1,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,1,3],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[3,2,1,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,1,2],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,1,2],[2,1,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,1,2],[2,1,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,1,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,1,2],[3,1,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,1,3],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,1,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[2,1,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[2,1,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[2,1,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,1,2],[3,1,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,1,3],[2,1,3,0],[0,1,2,1]],[[1,2,2,1],[3,2,1,2],[2,1,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,1,2],[2,1,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,1,2],[2,1,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,1,2],[2,1,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,1,2],[2,1,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,2,2],[2,1,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,2,3],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[3,1,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,1,3],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[3,2,1,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,1,2],[2,1,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,1,2],[2,1,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,1,2],[2,1,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,1,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,2,2],[1,1,0,2]],[[1,2,2,1],[2,2,1,2],[2,1,2,2],[2,1,0,1]],[[1,2,2,1],[2,2,1,2],[2,1,2,3],[1,1,0,1]],[[1,2,2,1],[2,2,1,2],[3,1,2,2],[1,1,0,1]],[[1,2,2,1],[2,2,1,3],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[3,2,1,2],[2,1,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,1,2],[2,1,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,1,2],[2,1,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,1,2],[2,1,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,1,2],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[2,2,1,2],[2,1,2,2],[2,0,2,0]],[[0,1,3,1],[1,3,3,2],[2,3,2,0],[0,1,1,1]],[[0,1,2,2],[1,3,3,2],[2,3,2,0],[0,1,1,1]],[[0,1,2,1],[1,4,3,2],[2,3,2,0],[0,1,1,1]],[[0,1,2,1],[1,3,4,2],[2,3,2,0],[0,1,1,1]],[[0,1,3,1],[1,3,3,2],[2,3,2,0],[0,1,2,0]],[[0,1,2,2],[1,3,3,2],[2,3,2,0],[0,1,2,0]],[[0,1,2,1],[1,4,3,2],[2,3,2,0],[0,1,2,0]],[[0,1,2,1],[1,3,4,2],[2,3,2,0],[0,1,2,0]],[[0,1,2,1],[1,3,3,2],[3,3,2,0],[0,1,2,0]],[[0,1,2,1],[1,3,3,2],[2,4,2,0],[0,1,2,0]],[[0,1,3,1],[1,3,3,2],[2,3,2,0],[0,2,0,1]],[[0,1,2,2],[1,3,3,2],[2,3,2,0],[0,2,0,1]],[[0,1,2,1],[1,4,3,2],[2,3,2,0],[0,2,0,1]],[[0,1,2,1],[1,3,4,2],[2,3,2,0],[0,2,0,1]],[[0,1,2,1],[1,3,3,2],[3,3,2,0],[0,2,0,1]],[[0,1,2,1],[1,3,3,2],[2,4,2,0],[0,2,0,1]],[[0,1,3,1],[1,3,3,2],[2,3,2,0],[0,2,1,0]],[[0,1,2,2],[1,3,3,2],[2,3,2,0],[0,2,1,0]],[[0,1,2,1],[1,4,3,2],[2,3,2,0],[0,2,1,0]],[[0,1,2,1],[1,3,4,2],[2,3,2,0],[0,2,1,0]],[[0,1,2,1],[1,3,3,2],[3,3,2,0],[0,2,1,0]],[[0,1,2,1],[1,3,3,2],[2,4,2,0],[0,2,1,0]],[[0,1,2,1],[1,3,3,2],[2,3,2,0],[0,3,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,2,3],[1,0,2,0]],[[1,2,2,1],[2,2,1,2],[3,1,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,1,3],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[3,2,1,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,1,2],[2,1,2,2],[1,0,2,0]],[[1,2,3,1],[2,2,1,2],[2,1,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,1,2],[2,1,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,1,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,1,2],[2,1,2,2],[1,0,1,2]],[[1,2,2,1],[2,2,1,2],[2,1,2,2],[2,0,1,1]],[[0,1,3,1],[1,3,3,2],[2,3,2,0],[1,0,1,1]],[[0,1,2,2],[1,3,3,2],[2,3,2,0],[1,0,1,1]],[[0,1,2,1],[1,4,3,2],[2,3,2,0],[1,0,1,1]],[[0,1,2,1],[1,3,4,2],[2,3,2,0],[1,0,1,1]],[[0,1,3,1],[1,3,3,2],[2,3,2,0],[1,0,2,0]],[[0,1,2,2],[1,3,3,2],[2,3,2,0],[1,0,2,0]],[[0,1,2,1],[1,4,3,2],[2,3,2,0],[1,0,2,0]],[[0,1,2,1],[1,3,4,2],[2,3,2,0],[1,0,2,0]],[[0,1,2,1],[1,3,3,2],[3,3,2,0],[1,0,2,0]],[[0,1,2,1],[1,3,3,2],[2,4,2,0],[1,0,2,0]],[[0,1,2,1],[1,3,3,2],[2,3,2,0],[2,0,2,0]],[[0,1,3,1],[1,3,3,2],[2,3,2,0],[1,1,0,1]],[[0,1,2,2],[1,3,3,2],[2,3,2,0],[1,1,0,1]],[[0,1,2,1],[1,4,3,2],[2,3,2,0],[1,1,0,1]],[[0,1,2,1],[1,3,4,2],[2,3,2,0],[1,1,0,1]],[[0,1,2,1],[1,3,3,2],[3,3,2,0],[1,1,0,1]],[[0,1,2,1],[1,3,3,2],[2,4,2,0],[1,1,0,1]],[[0,1,2,1],[1,3,3,2],[2,3,2,0],[2,1,0,1]],[[0,1,3,1],[1,3,3,2],[2,3,2,0],[1,1,1,0]],[[0,1,2,2],[1,3,3,2],[2,3,2,0],[1,1,1,0]],[[0,1,2,1],[1,4,3,2],[2,3,2,0],[1,1,1,0]],[[0,1,2,1],[1,3,4,2],[2,3,2,0],[1,1,1,0]],[[0,1,2,1],[1,3,3,2],[3,3,2,0],[1,1,1,0]],[[0,1,2,1],[1,3,3,2],[2,4,2,0],[1,1,1,0]],[[0,1,2,1],[1,3,3,2],[2,3,2,0],[2,1,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,2,3],[1,0,1,1]],[[1,2,2,1],[2,2,1,2],[3,1,2,2],[1,0,1,1]],[[1,2,2,1],[2,2,1,3],[2,1,2,2],[1,0,1,1]],[[1,2,2,1],[3,2,1,2],[2,1,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,1,2],[2,1,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,1,2],[2,1,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,1,2],[2,1,2,2],[1,0,1,1]],[[2,2,2,1],[2,2,1,2],[2,1,2,2],[1,0,1,1]],[[0,1,3,1],[1,3,3,2],[2,3,2,0],[1,2,0,0]],[[0,1,2,2],[1,3,3,2],[2,3,2,0],[1,2,0,0]],[[0,1,2,1],[1,4,3,2],[2,3,2,0],[1,2,0,0]],[[0,1,2,1],[1,3,4,2],[2,3,2,0],[1,2,0,0]],[[0,1,2,1],[1,3,3,2],[3,3,2,0],[1,2,0,0]],[[0,1,2,1],[1,3,3,2],[2,4,2,0],[1,2,0,0]],[[0,1,2,1],[1,3,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[2,2,1,2],[2,1,2,3],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,1,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,3],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[3,2,1,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[2,1,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,1,2],[2,1,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,1,2],[2,1,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,1,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,2,2],[0,2,0,2]],[[1,2,2,1],[2,2,1,2],[2,1,2,3],[0,2,0,1]],[[1,2,2,1],[2,2,1,2],[3,1,2,2],[0,2,0,1]],[[1,2,2,1],[2,2,1,3],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,1,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,1,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,1,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[2,2,1,2],[2,1,2,3],[0,1,2,0]],[[1,2,2,1],[2,2,1,2],[3,1,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,1,3],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[3,2,1,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,2],[2,2,1,2],[2,1,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,1,2],[2,1,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,1,2],[2,1,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,1,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,1,2],[2,1,2,2],[0,1,1,2]],[[1,2,2,1],[2,2,1,2],[2,1,2,3],[0,1,1,1]],[[1,2,2,1],[2,2,1,2],[3,1,2,2],[0,1,1,1]],[[1,2,2,1],[2,2,1,3],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,1,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,1,2],[2,1,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,1,2],[2,1,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,1,2],[2,1,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,1,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[2,2,1,2],[2,1,2,2],[0,0,2,2]],[[1,2,2,1],[2,2,1,2],[2,1,2,3],[0,0,2,1]],[[1,2,2,1],[2,2,1,3],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[3,2,1,2],[2,1,2,2],[0,0,2,1]],[[1,2,2,2],[2,2,1,2],[2,1,2,2],[0,0,2,1]],[[1,2,3,1],[2,2,1,2],[2,1,2,2],[0,0,2,1]],[[1,3,2,1],[2,2,1,2],[2,1,2,2],[0,0,2,1]],[[2,2,2,1],[2,2,1,2],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,2,1],[1,3,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,2,1],[2,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,1,2,1],[1,2,1,0]],[[1,2,2,1],[2,2,1,3],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[3,2,1,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,2],[2,2,1,2],[2,1,2,1],[1,2,1,0]],[[1,2,3,1],[2,2,1,2],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[2,2,1,2],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[2,2,1,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,2,1],[1,3,0,1]],[[1,2,2,1],[2,2,1,2],[2,1,2,1],[2,2,0,1]],[[1,2,2,1],[2,2,1,2],[3,1,2,1],[1,2,0,1]],[[1,2,2,1],[2,2,1,3],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,1,2,1],[1,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[2,2,1,2],[2,1,2,0],[1,3,1,1]],[[1,2,2,1],[2,2,1,2],[2,1,2,0],[2,2,1,1]],[[1,2,2,1],[2,2,1,2],[3,1,2,0],[1,2,1,1]],[[1,2,2,1],[2,2,1,3],[2,1,2,0],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[2,1,2,0],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[2,1,2,0],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[2,2,1,2],[2,1,2,0],[1,2,1,1]],[[0,1,3,1],[1,3,3,2],[2,3,2,2],[0,0,0,1]],[[0,1,2,2],[1,3,3,2],[2,3,2,2],[0,0,0,1]],[[0,1,2,1],[1,3,3,3],[2,3,2,2],[0,0,0,1]],[[1,2,2,1],[2,2,1,2],[2,1,1,2],[1,3,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,1,2],[2,2,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,1,3],[1,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,1,1,2],[1,2,1,0]],[[1,2,2,1],[2,2,1,3],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[3,2,1,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,2],[2,2,1,2],[2,1,1,2],[1,2,1,0]],[[1,2,3,1],[2,2,1,2],[2,1,1,2],[1,2,1,0]],[[1,3,2,1],[2,2,1,2],[2,1,1,2],[1,2,1,0]],[[2,2,2,1],[2,2,1,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[2,2,1,2],[2,1,1,2],[1,2,0,2]],[[1,2,2,1],[2,2,1,2],[2,1,1,2],[1,3,0,1]],[[1,2,2,1],[2,2,1,2],[2,1,1,2],[2,2,0,1]],[[1,2,2,1],[2,2,1,2],[2,1,1,3],[1,2,0,1]],[[1,2,2,1],[2,2,1,2],[3,1,1,2],[1,2,0,1]],[[1,2,2,1],[2,2,1,3],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,1,1,2],[1,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,1,1,2],[1,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,1,1,2],[1,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[2,2,1,2],[2,1,1,2],[1,0,2,2]],[[1,2,2,1],[2,2,1,2],[2,1,1,2],[1,0,3,1]],[[1,2,2,1],[2,2,1,2],[2,1,1,2],[2,0,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,1,3],[1,0,2,1]],[[1,2,2,1],[2,2,1,2],[3,1,1,2],[1,0,2,1]],[[1,2,2,1],[2,2,1,3],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[3,2,1,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,2],[2,2,1,2],[2,1,1,2],[1,0,2,1]],[[1,2,3,1],[2,2,1,2],[2,1,1,2],[1,0,2,1]],[[1,3,2,1],[2,2,1,2],[2,1,1,2],[1,0,2,1]],[[2,2,2,1],[2,2,1,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,1,2],[0,1,2,2]],[[1,2,2,1],[2,2,1,2],[2,1,1,2],[0,1,3,1]],[[1,2,2,1],[2,2,1,2],[2,1,1,3],[0,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,1,1,2],[0,1,2,1]],[[1,2,2,1],[2,2,1,3],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[3,2,1,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,2],[2,2,1,2],[2,1,1,2],[0,1,2,1]],[[1,2,3,1],[2,2,1,2],[2,1,1,2],[0,1,2,1]],[[1,3,2,1],[2,2,1,2],[2,1,1,2],[0,1,2,1]],[[2,2,2,1],[2,2,1,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,1,1],[1,2,3,0]],[[1,2,2,1],[2,2,1,2],[2,1,1,1],[1,3,2,0]],[[1,2,2,1],[2,2,1,2],[2,1,1,1],[2,2,2,0]],[[1,2,2,1],[2,2,1,2],[3,1,1,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,3],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[3,2,1,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,2],[2,2,1,2],[2,1,1,1],[1,2,2,0]],[[1,2,3,1],[2,2,1,2],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[2,2,1,2],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,1,1,0],[1,2,2,2]],[[1,2,2,1],[2,2,1,2],[2,1,1,0],[1,2,3,1]],[[1,2,2,1],[2,2,1,2],[2,1,1,0],[1,3,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,1,0],[2,2,2,1]],[[1,2,2,1],[2,2,1,2],[3,1,1,0],[1,2,2,1]],[[1,2,2,1],[2,2,1,3],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[2,1,1,0],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[1,2,3,0]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[1,3,2,0]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[2,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,1,0,3],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[3,1,0,2],[1,2,2,0]],[[1,2,2,1],[2,2,1,3],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[3,2,1,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,2],[2,2,1,2],[2,1,0,2],[1,2,2,0]],[[1,2,3,1],[2,2,1,2],[2,1,0,2],[1,2,2,0]],[[1,3,2,1],[2,2,1,2],[2,1,0,2],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[1,2,1,2]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[1,3,1,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[2,2,1,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,3],[1,2,1,1]],[[1,2,2,1],[2,2,1,2],[3,1,0,2],[1,2,1,1]],[[1,2,2,1],[2,2,1,3],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[2,1,0,2],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[2,1,0,2],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[2,1,0,2],[1,2,1,1]],[[2,2,2,1],[2,2,1,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[1,1,2,2]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[1,1,3,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[2,1,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,3],[1,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,1,0,2],[1,1,2,1]],[[1,2,2,1],[2,2,1,3],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[2,1,0,2],[1,1,2,1]],[[1,2,3,1],[2,2,1,2],[2,1,0,2],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[2,1,0,2],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[0,2,2,2]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[0,2,3,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,2],[0,3,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,3],[0,2,2,1]],[[1,2,2,1],[2,2,1,2],[3,1,0,2],[0,2,2,1]],[[1,2,2,1],[2,2,1,3],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[3,2,1,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[2,1,0,2],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[2,1,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[2,1,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,1],[1,2,2,2]],[[1,2,2,1],[2,2,1,2],[2,1,0,1],[1,2,3,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,1],[1,3,2,1]],[[1,2,2,1],[2,2,1,2],[2,1,0,1],[2,2,2,1]],[[1,2,2,1],[2,2,1,2],[3,1,0,1],[1,2,2,1]],[[1,2,2,1],[2,2,1,3],[2,1,0,1],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[2,1,0,1],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[2,1,0,1],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[2,1,0,1],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[2,1,0,1],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[2,1,0,1],[1,2,2,1]],[[0,1,3,1],[1,3,3,2],[2,3,3,0],[0,0,1,1]],[[0,1,2,2],[1,3,3,2],[2,3,3,0],[0,0,1,1]],[[0,1,2,1],[1,4,3,2],[2,3,3,0],[0,0,1,1]],[[0,1,2,1],[1,3,4,2],[2,3,3,0],[0,0,1,1]],[[0,1,3,1],[1,3,3,2],[2,3,3,0],[0,0,2,0]],[[0,1,2,2],[1,3,3,2],[2,3,3,0],[0,0,2,0]],[[0,1,2,1],[1,4,3,2],[2,3,3,0],[0,0,2,0]],[[0,1,2,1],[1,3,4,2],[2,3,3,0],[0,0,2,0]],[[0,1,3,1],[1,3,3,2],[2,3,3,0],[0,2,0,0]],[[0,1,2,2],[1,3,3,2],[2,3,3,0],[0,2,0,0]],[[0,1,2,1],[1,4,3,2],[2,3,3,0],[0,2,0,0]],[[0,1,2,1],[1,3,4,2],[2,3,3,0],[0,2,0,0]],[[0,1,2,1],[1,3,3,2],[3,3,3,0],[0,2,0,0]],[[0,1,2,1],[1,3,3,2],[2,4,3,0],[0,2,0,0]],[[1,2,2,1],[2,2,1,2],[2,0,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,1,2],[2,0,3,1],[2,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,0,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,1,3],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,1,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,2],[2,2,1,2],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[2,2,1,2],[2,0,3,1],[1,2,1,0]],[[1,3,2,1],[2,2,1,2],[2,0,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,1,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,1,2],[2,0,3,1],[1,3,0,1]],[[1,2,2,1],[2,2,1,2],[2,0,3,1],[2,2,0,1]],[[1,2,2,1],[2,2,1,2],[3,0,3,1],[1,2,0,1]],[[1,2,2,1],[2,2,1,3],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,0,3,1],[1,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,0,3,1],[1,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,0,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,0,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,0,3,1],[1,2,0,1]],[[0,1,3,1],[1,3,3,2],[2,3,3,0],[1,1,0,0]],[[0,1,2,2],[1,3,3,2],[2,3,3,0],[1,1,0,0]],[[0,1,2,1],[1,4,3,2],[2,3,3,0],[1,1,0,0]],[[0,1,2,1],[1,3,4,2],[2,3,3,0],[1,1,0,0]],[[0,1,2,1],[1,3,3,2],[3,3,3,0],[1,1,0,0]],[[0,1,2,1],[1,3,3,2],[2,4,3,0],[1,1,0,0]],[[0,1,2,1],[1,3,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,2,1],[2,2,1,2],[2,0,3,1],[2,1,2,0]],[[1,2,2,1],[2,2,1,2],[3,0,3,1],[1,1,2,0]],[[1,2,2,1],[2,2,1,3],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[3,2,1,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,2],[2,2,1,2],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[2,2,1,2],[2,0,3,1],[1,1,2,0]],[[1,3,2,1],[2,2,1,2],[2,0,3,1],[1,1,2,0]],[[2,2,2,1],[2,2,1,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[2,2,1,2],[2,0,3,1],[2,1,1,1]],[[1,2,2,1],[2,2,1,2],[3,0,3,1],[1,1,1,1]],[[1,2,2,1],[2,2,1,3],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[2,0,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[2,0,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[2,0,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[2,2,1,2],[3,0,3,1],[0,2,2,0]],[[1,2,2,1],[2,2,1,3],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[3,2,1,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,2],[2,2,1,2],[2,0,3,1],[0,2,2,0]],[[1,2,3,1],[2,2,1,2],[2,0,3,1],[0,2,2,0]],[[1,3,2,1],[2,2,1,2],[2,0,3,1],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[3,0,3,1],[0,2,1,1]],[[1,2,2,1],[2,2,1,3],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[3,2,1,2],[2,0,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[2,0,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[2,0,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[2,0,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[2,2,1,2],[2,0,3,0],[1,3,1,1]],[[1,2,2,1],[2,2,1,2],[2,0,3,0],[2,2,1,1]],[[1,2,2,1],[2,2,1,2],[3,0,3,0],[1,2,1,1]],[[1,2,2,1],[2,2,1,3],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[2,0,3,0],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[2,0,3,0],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[2,0,3,0],[1,2,1,1]],[[2,2,2,1],[2,2,1,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[2,2,1,2],[2,0,3,0],[2,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,0,3,0],[1,1,2,1]],[[1,2,2,1],[2,2,1,3],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[2,2,1,2],[2,0,3,0],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[2,0,3,0],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,0,3,0],[0,2,2,1]],[[1,2,2,1],[2,2,1,3],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[3,2,1,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[2,0,3,0],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[2,0,3,0],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[2,2,1,2],[2,0,2,2],[1,3,1,0]],[[1,2,2,1],[2,2,1,2],[2,0,2,2],[2,2,1,0]],[[1,2,2,1],[2,2,1,2],[2,0,2,3],[1,2,1,0]],[[1,2,2,1],[2,2,1,2],[3,0,2,2],[1,2,1,0]],[[1,2,2,1],[2,2,1,3],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[3,2,1,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,2],[2,2,1,2],[2,0,2,2],[1,2,1,0]],[[1,2,3,1],[2,2,1,2],[2,0,2,2],[1,2,1,0]],[[1,3,2,1],[2,2,1,2],[2,0,2,2],[1,2,1,0]],[[2,2,2,1],[2,2,1,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[2,2,1,2],[2,0,2,2],[1,2,0,2]],[[1,2,2,1],[2,2,1,2],[2,0,2,2],[1,3,0,1]],[[1,2,2,1],[2,2,1,2],[2,0,2,2],[2,2,0,1]],[[1,2,2,1],[2,2,1,2],[2,0,2,3],[1,2,0,1]],[[1,2,2,1],[2,2,1,2],[3,0,2,2],[1,2,0,1]],[[1,2,2,1],[2,2,1,3],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[3,2,1,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,2],[2,2,1,2],[2,0,2,2],[1,2,0,1]],[[1,2,3,1],[2,2,1,2],[2,0,2,2],[1,2,0,1]],[[1,3,2,1],[2,2,1,2],[2,0,2,2],[1,2,0,1]],[[2,2,2,1],[2,2,1,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[2,2,1,2],[2,0,2,2],[2,1,2,0]],[[1,2,2,1],[2,2,1,2],[2,0,2,3],[1,1,2,0]],[[1,2,2,1],[2,2,1,2],[3,0,2,2],[1,1,2,0]],[[1,2,2,1],[2,2,1,3],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[3,2,1,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,2],[2,2,1,2],[2,0,2,2],[1,1,2,0]],[[1,2,3,1],[2,2,1,2],[2,0,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,1,2],[2,0,2,2],[1,1,2,0]],[[2,2,2,1],[2,2,1,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[2,2,1,2],[2,0,2,2],[1,1,1,2]],[[1,2,2,1],[2,2,1,2],[2,0,2,2],[2,1,1,1]],[[1,2,2,1],[2,2,1,2],[2,0,2,3],[1,1,1,1]],[[1,2,2,1],[2,2,1,2],[3,0,2,2],[1,1,1,1]],[[1,2,2,1],[2,2,1,3],[2,0,2,2],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[2,0,2,2],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[2,0,2,2],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[2,0,2,2],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[2,0,2,2],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[2,0,2,2],[1,1,1,1]],[[1,2,2,1],[2,2,1,2],[2,0,2,3],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[3,0,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,1,3],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[3,2,1,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,2],[2,2,1,2],[2,0,2,2],[0,2,2,0]],[[1,2,3,1],[2,2,1,2],[2,0,2,2],[0,2,2,0]],[[1,3,2,1],[2,2,1,2],[2,0,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,0,2,2],[0,2,1,2]],[[1,2,2,1],[2,2,1,2],[2,0,2,3],[0,2,1,1]],[[1,2,2,1],[2,2,1,2],[3,0,2,2],[0,2,1,1]],[[1,2,2,1],[2,2,1,3],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[3,2,1,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[2,0,2,2],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[2,0,2,2],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[2,0,2,2],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[2,2,1,2],[2,0,2,1],[1,2,3,0]],[[1,2,2,1],[2,2,1,2],[2,0,2,1],[1,3,2,0]],[[1,2,2,1],[2,2,1,2],[2,0,2,1],[2,2,2,0]],[[1,2,2,1],[2,2,1,2],[3,0,2,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,3],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[3,2,1,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,2],[2,2,1,2],[2,0,2,1],[1,2,2,0]],[[1,2,3,1],[2,2,1,2],[2,0,2,1],[1,2,2,0]],[[1,3,2,1],[2,2,1,2],[2,0,2,1],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,0,2,0],[1,2,2,2]],[[1,2,2,1],[2,2,1,2],[2,0,2,0],[1,2,3,1]],[[1,2,2,1],[2,2,1,2],[2,0,2,0],[1,3,2,1]],[[1,2,2,1],[2,2,1,2],[2,0,2,0],[2,2,2,1]],[[1,2,2,1],[2,2,1,2],[3,0,2,0],[1,2,2,1]],[[1,2,2,1],[2,2,1,3],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[2,0,2,0],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[2,0,2,0],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[2,0,2,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[2,0,2,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[1,2,3,0]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[1,3,2,0]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[2,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,0,1,3],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[3,0,1,2],[1,2,2,0]],[[1,2,2,1],[2,2,1,3],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[3,2,1,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,2],[2,2,1,2],[2,0,1,2],[1,2,2,0]],[[1,2,3,1],[2,2,1,2],[2,0,1,2],[1,2,2,0]],[[1,3,2,1],[2,2,1,2],[2,0,1,2],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[1,2,1,2]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[1,3,1,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[2,2,1,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,3],[1,2,1,1]],[[1,2,2,1],[2,2,1,2],[3,0,1,2],[1,2,1,1]],[[1,2,2,1],[2,2,1,3],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[2,0,1,2],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[2,0,1,2],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[2,0,1,2],[1,2,1,1]],[[2,2,2,1],[2,2,1,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[1,1,2,2]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[1,1,3,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[2,1,2,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,3],[1,1,2,1]],[[1,2,2,1],[2,2,1,2],[3,0,1,2],[1,1,2,1]],[[1,2,2,1],[2,2,1,3],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[2,0,1,2],[1,1,2,1]],[[1,2,3,1],[2,2,1,2],[2,0,1,2],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[2,0,1,2],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[0,2,2,2]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[0,2,3,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,2],[0,3,2,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,3],[0,2,2,1]],[[1,2,2,1],[2,2,1,2],[3,0,1,2],[0,2,2,1]],[[1,2,2,1],[2,2,1,3],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[3,2,1,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[2,0,1,2],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[2,0,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[2,0,1,2],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,1],[1,2,2,2]],[[1,2,2,1],[2,2,1,2],[2,0,1,1],[1,2,3,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,1],[1,3,2,1]],[[1,2,2,1],[2,2,1,2],[2,0,1,1],[2,2,2,1]],[[1,2,2,1],[2,2,1,2],[3,0,1,1],[1,2,2,1]],[[1,2,2,1],[2,2,1,3],[2,0,1,1],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[2,0,1,1],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[2,0,1,1],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[2,0,1,1],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[2,0,1,1],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[2,0,1,1],[1,2,2,1]],[[1,2,2,1],[2,2,1,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,2,1,3],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[3,2,1,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[2,2,1,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[2,2,1,2],[1,3,3,2],[0,0,0,1]],[[1,3,2,1],[2,2,1,2],[1,3,3,2],[0,0,0,1]],[[2,2,2,1],[2,2,1,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[2,2,1,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[3,2,1,2],[1,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,2,1,2],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,2,1,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,2,1,2],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,2,1,2],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,2,1,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[3,2,1,2],[1,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,2,1,2],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,2,1,2],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,2,1,2],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,2,1,2],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,2,1,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[3,2,1,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[2,2,1,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,2,1,2],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[2,2,1,2],[1,3,3,1],[0,0,2,0]],[[2,2,2,1],[2,2,1,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[2,2,1,3],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[3,2,1,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[2,2,1,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[2,2,1,2],[1,3,3,1],[0,0,1,1]],[[1,3,2,1],[2,2,1,2],[1,3,3,1],[0,0,1,1]],[[2,2,2,1],[2,2,1,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[2,2,1,3],[1,3,3,0],[0,0,2,1]],[[1,2,2,1],[3,2,1,2],[1,3,3,0],[0,0,2,1]],[[1,2,2,2],[2,2,1,2],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[2,2,1,2],[1,3,3,0],[0,0,2,1]],[[1,3,2,1],[2,2,1,2],[1,3,3,0],[0,0,2,1]],[[2,2,2,1],[2,2,1,2],[1,3,3,0],[0,0,2,1]],[[1,2,2,1],[2,2,1,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[2,2,1,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[3,2,1,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[2,2,1,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[2,2,1,2],[1,3,2,2],[0,0,2,0]],[[1,3,2,1],[2,2,1,2],[1,3,2,2],[0,0,2,0]],[[2,2,2,1],[2,2,1,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[2,2,1,2],[1,3,2,2],[0,0,1,2]],[[1,2,2,1],[2,2,1,2],[1,3,2,3],[0,0,1,1]],[[1,2,2,1],[2,2,1,3],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[3,2,1,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[2,2,1,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[2,2,1,2],[1,3,2,2],[0,0,1,1]],[[1,3,2,1],[2,2,1,2],[1,3,2,2],[0,0,1,1]],[[2,2,2,1],[2,2,1,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[2,2,1,3],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,2,1,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,2],[2,2,1,2],[1,3,2,1],[1,2,0,0]],[[1,2,3,1],[2,2,1,2],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,2,1,2],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,2,1,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[2,2,1,3],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,2,1,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,2,1,2],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,2,1,2],[1,3,2,1],[1,1,1,0]],[[0,1,2,1],[2,0,0,1],[3,3,3,2],[1,2,2,1]],[[0,1,2,1],[2,0,0,1],[2,3,3,2],[2,2,2,1]],[[0,1,2,1],[2,0,0,1],[2,3,3,2],[1,3,2,1]],[[0,1,2,1],[2,0,0,1],[2,3,3,2],[1,2,3,1]],[[0,1,2,1],[2,0,0,1],[2,3,3,2],[1,2,2,2]],[[0,1,2,1],[2,0,0,2],[1,3,3,3],[1,2,2,1]],[[0,1,2,1],[2,0,0,2],[1,3,3,2],[2,2,2,1]],[[0,1,2,1],[2,0,0,2],[1,3,3,2],[1,3,2,1]],[[0,1,2,1],[2,0,0,2],[1,3,3,2],[1,2,3,1]],[[0,1,2,1],[2,0,0,2],[1,3,3,2],[1,2,2,2]],[[0,1,2,1],[2,0,0,2],[3,2,3,2],[1,2,2,1]],[[0,1,2,1],[2,0,0,2],[2,2,3,3],[1,2,2,1]],[[0,1,2,1],[2,0,0,2],[2,2,3,2],[2,2,2,1]],[[0,1,2,1],[2,0,0,2],[2,2,3,2],[1,3,2,1]],[[0,1,2,1],[2,0,0,2],[2,2,3,2],[1,2,3,1]],[[0,1,2,1],[2,0,0,2],[2,2,3,2],[1,2,2,2]],[[0,1,2,1],[2,0,0,2],[3,3,2,2],[1,2,2,1]],[[0,1,2,1],[2,0,0,2],[2,3,2,3],[1,2,2,1]],[[0,1,2,1],[2,0,0,2],[2,3,2,2],[2,2,2,1]],[[0,1,2,1],[2,0,0,2],[2,3,2,2],[1,3,2,1]],[[0,1,2,1],[2,0,0,2],[2,3,2,2],[1,2,3,1]],[[0,1,2,1],[2,0,0,2],[2,3,2,2],[1,2,2,2]],[[0,1,2,1],[2,0,0,2],[3,3,3,1],[1,2,2,1]],[[0,1,2,1],[2,0,0,2],[2,3,3,1],[2,2,2,1]],[[0,1,2,1],[2,0,0,2],[2,3,3,1],[1,3,2,1]],[[0,1,2,1],[2,0,0,2],[2,3,3,1],[1,2,3,1]],[[0,1,2,1],[2,0,0,2],[2,3,3,1],[1,2,2,2]],[[0,1,2,1],[2,0,0,2],[2,3,3,3],[0,2,2,1]],[[0,1,2,1],[2,0,0,2],[2,3,3,2],[0,3,2,1]],[[0,1,2,1],[2,0,0,2],[2,3,3,2],[0,2,3,1]],[[0,1,2,1],[2,0,0,2],[2,3,3,2],[0,2,2,2]],[[0,1,2,1],[2,0,0,2],[3,3,3,2],[1,2,2,0]],[[0,1,2,1],[2,0,0,2],[2,3,3,2],[2,2,2,0]],[[0,1,2,1],[2,0,0,2],[2,3,3,2],[1,3,2,0]],[[0,1,2,1],[2,0,0,2],[2,3,3,2],[1,2,3,0]],[[0,1,2,2],[2,0,1,2],[1,3,2,2],[1,2,2,1]],[[0,1,2,1],[2,0,1,3],[1,3,2,2],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[1,3,2,3],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[1,3,2,2],[2,2,2,1]],[[0,1,2,1],[2,0,1,2],[1,3,2,2],[1,3,2,1]],[[0,1,2,1],[2,0,1,2],[1,3,2,2],[1,2,3,1]],[[0,1,2,1],[2,0,1,2],[1,3,2,2],[1,2,2,2]],[[0,1,2,1],[2,0,1,2],[1,3,4,1],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[1,3,3,1],[2,2,2,1]],[[0,1,2,1],[2,0,1,2],[1,3,3,1],[1,3,2,1]],[[0,1,2,1],[2,0,1,2],[1,3,3,1],[1,2,3,1]],[[0,1,2,1],[2,0,1,2],[1,3,3,1],[1,2,2,2]],[[0,1,2,2],[2,0,1,2],[1,3,3,2],[1,2,1,1]],[[0,1,2,1],[2,0,1,3],[1,3,3,2],[1,2,1,1]],[[0,1,2,1],[2,0,1,2],[1,3,4,2],[1,2,1,1]],[[0,1,2,1],[2,0,1,2],[1,3,3,3],[1,2,1,1]],[[0,1,2,1],[2,0,1,2],[1,3,3,2],[1,2,1,2]],[[0,1,2,2],[2,0,1,2],[1,3,3,2],[1,2,2,0]],[[0,1,2,1],[2,0,1,3],[1,3,3,2],[1,2,2,0]],[[0,1,2,1],[2,0,1,2],[1,3,4,2],[1,2,2,0]],[[0,1,2,1],[2,0,1,2],[1,3,3,3],[1,2,2,0]],[[0,1,2,1],[2,0,1,2],[1,3,3,2],[2,2,2,0]],[[0,1,2,1],[2,0,1,2],[1,3,3,2],[1,3,2,0]],[[0,1,2,1],[2,0,1,2],[1,3,3,2],[1,2,3,0]],[[0,1,2,2],[2,0,1,2],[2,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,0,1,3],[2,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[3,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,2,2,3],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,2,2,2],[2,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,2,2,2],[1,3,2,1]],[[0,1,2,1],[2,0,1,2],[2,2,2,2],[1,2,3,1]],[[0,1,2,1],[2,0,1,2],[2,2,2,2],[1,2,2,2]],[[0,1,2,1],[2,0,1,2],[3,2,3,1],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,2,4,1],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,2,3,1],[2,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,0,1,2],[2,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,0,1,2],[2,2,3,1],[1,2,2,2]],[[0,1,2,2],[2,0,1,2],[2,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,0,1,3],[2,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,0,1,2],[2,2,4,2],[1,2,1,1]],[[0,1,2,1],[2,0,1,2],[2,2,3,3],[1,2,1,1]],[[0,1,2,1],[2,0,1,2],[2,2,3,2],[1,2,1,2]],[[0,1,2,2],[2,0,1,2],[2,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,0,1,3],[2,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,0,1,2],[3,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,0,1,2],[2,2,4,2],[1,2,2,0]],[[0,1,2,1],[2,0,1,2],[2,2,3,3],[1,2,2,0]],[[0,1,2,1],[2,0,1,2],[2,2,3,2],[2,2,2,0]],[[0,1,2,1],[2,0,1,2],[2,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,0,1,2],[2,2,3,2],[1,2,3,0]],[[0,1,2,2],[2,0,1,2],[2,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,0,1,3],[2,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[3,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,1,3],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,0,1,2],[2,3,1,2],[1,2,2,2]],[[0,1,2,1],[2,0,1,2],[3,3,2,1],[1,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,0,1,2],[2,3,2,1],[1,2,2,2]],[[0,1,2,2],[2,0,1,2],[2,3,2,2],[0,2,2,1]],[[0,1,2,1],[2,0,1,3],[2,3,2,2],[0,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,2,3],[0,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,2,2],[0,3,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,2,2],[0,2,3,1]],[[0,1,2,1],[2,0,1,2],[2,3,2,2],[0,2,2,2]],[[0,1,2,1],[2,0,1,2],[3,3,2,2],[1,2,2,0]],[[0,1,2,1],[2,0,1,2],[2,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,0,1,2],[2,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,0,1,2],[2,3,2,2],[1,2,3,0]],[[0,1,2,1],[2,0,1,2],[2,3,4,1],[0,2,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,3,1],[0,3,2,1]],[[0,1,2,1],[2,0,1,2],[2,3,3,1],[0,2,3,1]],[[0,1,2,1],[2,0,1,2],[2,3,3,1],[0,2,2,2]],[[0,1,2,1],[2,0,1,2],[3,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,0,1,2],[2,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,0,1,2],[2,3,3,1],[1,3,1,1]],[[0,1,2,2],[2,0,1,2],[2,3,3,2],[0,2,1,1]],[[0,1,2,1],[2,0,1,3],[2,3,3,2],[0,2,1,1]],[[0,1,2,1],[2,0,1,2],[2,3,4,2],[0,2,1,1]],[[0,1,2,1],[2,0,1,2],[2,3,3,3],[0,2,1,1]],[[0,1,2,1],[2,0,1,2],[2,3,3,2],[0,2,1,2]],[[0,1,2,2],[2,0,1,2],[2,3,3,2],[0,2,2,0]],[[0,1,2,1],[2,0,1,3],[2,3,3,2],[0,2,2,0]],[[0,1,2,1],[2,0,1,2],[2,3,4,2],[0,2,2,0]],[[0,1,2,1],[2,0,1,2],[2,3,3,3],[0,2,2,0]],[[0,1,2,1],[2,0,1,2],[2,3,3,2],[0,3,2,0]],[[0,1,2,1],[2,0,1,2],[2,3,3,2],[0,2,3,0]],[[0,1,2,1],[2,0,1,2],[3,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,0,1,2],[2,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,0,1,2],[2,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,0,1,2],[3,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,0,1,2],[2,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,0,1,2],[2,3,3,2],[1,3,1,0]],[[1,3,2,1],[2,2,1,2],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,2,1,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,2,1,3],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,2,1,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,2],[2,2,1,2],[1,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,2,1,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,2,1,2],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,2,1,2],[1,3,2,1],[1,1,0,1]],[[0,1,2,1],[2,0,2,0],[3,3,3,1],[1,2,2,1]],[[0,1,2,1],[2,0,2,0],[2,3,3,1],[2,2,2,1]],[[0,1,2,1],[2,0,2,0],[2,3,3,1],[1,3,2,1]],[[0,1,2,1],[2,0,2,0],[2,3,3,1],[1,2,3,1]],[[0,1,2,1],[2,0,2,0],[2,3,3,1],[1,2,2,2]],[[0,1,2,1],[2,0,2,0],[3,3,3,2],[1,2,2,0]],[[0,1,2,1],[2,0,2,0],[2,3,3,2],[2,2,2,0]],[[0,1,2,1],[2,0,2,0],[2,3,3,2],[1,3,2,0]],[[0,1,2,1],[2,0,2,0],[2,3,3,2],[1,2,3,0]],[[1,2,2,1],[2,2,1,3],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,2,1,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,2,1,2],[1,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,2,1,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,2,1,2],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,2,1,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,2,1,3],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[3,2,1,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,2],[2,2,1,2],[1,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,2,1,2],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,2,1,2],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,2,1,2],[1,3,2,1],[1,0,1,1]],[[0,1,2,2],[2,0,2,2],[2,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,0,2,3],[2,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,0,2,2],[3,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,0,2,2],[2,3,0,3],[1,2,2,1]],[[0,1,2,1],[2,0,2,2],[2,3,0,2],[2,2,2,1]],[[0,1,2,1],[2,0,2,2],[2,3,0,2],[1,3,2,1]],[[0,1,2,1],[2,0,2,2],[2,3,0,2],[1,2,3,1]],[[0,1,2,1],[2,0,2,2],[2,3,0,2],[1,2,2,2]],[[1,2,2,1],[2,2,1,3],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,2,1,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,2,1,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,2,1,2],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,2,1,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,2,1,3],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,2,1,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,2,1,2],[1,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,2,1,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,2,1,2],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,2,1,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,2,1,3],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,2,1,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,2,1,2],[1,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,2,1,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,2,1,2],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,2,1,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,2,1,3],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[3,2,1,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,2],[2,2,1,2],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,2,1,2],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,2,1,2],[1,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,2,1,2],[1,3,2,1],[0,1,1,1]],[[0,1,2,1],[2,0,3,0],[1,3,2,3],[1,2,2,1]],[[0,1,2,1],[2,0,3,0],[1,3,2,2],[2,2,2,1]],[[0,1,2,1],[2,0,3,0],[1,3,2,2],[1,3,2,1]],[[0,1,2,1],[2,0,3,0],[1,3,2,2],[1,2,3,1]],[[0,1,2,1],[2,0,3,0],[1,3,2,2],[1,2,2,2]],[[0,1,2,1],[2,0,3,0],[1,3,4,1],[1,2,2,1]],[[0,1,2,1],[2,0,3,0],[1,3,3,1],[2,2,2,1]],[[0,1,2,1],[2,0,3,0],[1,3,3,1],[1,3,2,1]],[[0,1,2,1],[2,0,3,0],[1,3,3,1],[1,2,3,1]],[[0,1,2,1],[2,0,3,0],[1,3,3,1],[1,2,2,2]],[[0,1,2,1],[2,0,3,0],[1,3,4,2],[1,2,1,1]],[[0,1,2,1],[2,0,3,0],[1,3,3,3],[1,2,1,1]],[[0,1,2,1],[2,0,3,0],[1,3,3,2],[1,2,1,2]],[[0,1,2,1],[2,0,3,0],[1,3,4,2],[1,2,2,0]],[[0,1,2,1],[2,0,3,0],[1,3,3,3],[1,2,2,0]],[[0,1,2,1],[2,0,3,0],[1,3,3,2],[2,2,2,0]],[[0,1,2,1],[2,0,3,0],[1,3,3,2],[1,3,2,0]],[[0,1,2,1],[2,0,3,0],[1,3,3,2],[1,2,3,0]],[[0,1,2,1],[2,0,3,0],[3,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,2,2,3],[1,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,2,2,2],[2,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,2,2,2],[1,3,2,1]],[[0,1,2,1],[2,0,3,0],[2,2,2,2],[1,2,3,1]],[[0,1,2,1],[2,0,3,0],[2,2,2,2],[1,2,2,2]],[[0,1,2,1],[2,0,3,0],[3,2,3,1],[1,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,2,4,1],[1,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,2,3,1],[2,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,0,3,0],[2,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,0,3,0],[2,2,3,1],[1,2,2,2]],[[0,1,2,1],[2,0,3,0],[2,2,4,2],[1,2,1,1]],[[0,1,2,1],[2,0,3,0],[2,2,3,3],[1,2,1,1]],[[0,1,2,1],[2,0,3,0],[2,2,3,2],[1,2,1,2]],[[0,1,2,1],[2,0,3,0],[3,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,0,3,0],[2,2,4,2],[1,2,2,0]],[[0,1,2,1],[2,0,3,0],[2,2,3,3],[1,2,2,0]],[[0,1,2,1],[2,0,3,0],[2,2,3,2],[2,2,2,0]],[[0,1,2,1],[2,0,3,0],[2,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,0,3,0],[2,2,3,2],[1,2,3,0]],[[0,1,2,1],[2,0,3,0],[3,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,1,3],[1,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,0,3,0],[2,3,1,2],[1,2,2,2]],[[0,1,2,1],[2,0,3,0],[3,3,2,1],[1,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,0,3,0],[2,3,2,1],[1,2,2,2]],[[0,1,2,1],[2,0,3,0],[2,3,2,3],[0,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,2,2],[0,3,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,2,2],[0,2,3,1]],[[0,1,2,1],[2,0,3,0],[2,3,2,2],[0,2,2,2]],[[0,1,2,1],[2,0,3,0],[3,3,2,2],[1,2,2,0]],[[0,1,2,1],[2,0,3,0],[2,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,0,3,0],[2,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,0,3,0],[2,3,2,2],[1,2,3,0]],[[0,1,2,1],[2,0,3,0],[3,3,3,0],[1,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,0],[2,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,0],[1,3,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,0],[1,2,3,1]],[[0,1,2,1],[2,0,3,0],[2,3,4,1],[0,2,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,1],[0,3,2,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,1],[0,2,3,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,1],[0,2,2,2]],[[0,1,2,1],[2,0,3,0],[3,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,1],[1,3,1,1]],[[0,1,2,1],[2,0,3,0],[2,3,4,2],[0,2,1,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,3],[0,2,1,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,2],[0,2,1,2]],[[0,1,2,1],[2,0,3,0],[2,3,4,2],[0,2,2,0]],[[0,1,2,1],[2,0,3,0],[2,3,3,3],[0,2,2,0]],[[0,1,2,1],[2,0,3,0],[2,3,3,2],[0,3,2,0]],[[0,1,2,1],[2,0,3,0],[2,3,3,2],[0,2,3,0]],[[0,1,2,1],[2,0,3,0],[3,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,0,3,0],[2,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,0,3,0],[3,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,0,3,0],[2,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,0,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,2,1,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,2],[2,2,1,2],[1,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,2,1,2],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,2,1,2],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,2,1,2],[1,3,2,0],[1,2,0,1]],[[0,1,2,1],[2,0,3,1],[1,3,4,0],[1,2,2,1]],[[0,1,2,1],[2,0,3,1],[1,3,3,0],[2,2,2,1]],[[0,1,2,1],[2,0,3,1],[1,3,3,0],[1,3,2,1]],[[0,1,2,1],[2,0,3,1],[1,3,3,0],[1,2,3,1]],[[0,1,2,1],[2,0,3,1],[1,3,3,0],[1,2,2,2]],[[0,1,2,1],[2,0,3,1],[1,3,4,1],[1,2,2,0]],[[0,1,2,1],[2,0,3,1],[1,3,3,1],[2,2,2,0]],[[0,1,2,1],[2,0,3,1],[1,3,3,1],[1,3,2,0]],[[0,1,2,1],[2,0,3,1],[1,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,2,1,3],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[1,3,2,0],[1,1,1,1]],[[0,1,2,1],[2,0,3,1],[3,2,3,0],[1,2,2,1]],[[0,1,2,1],[2,0,3,1],[2,2,4,0],[1,2,2,1]],[[0,1,2,1],[2,0,3,1],[2,2,3,0],[2,2,2,1]],[[0,1,2,1],[2,0,3,1],[2,2,3,0],[1,3,2,1]],[[0,1,2,1],[2,0,3,1],[2,2,3,0],[1,2,3,1]],[[0,1,2,1],[2,0,3,1],[2,2,3,0],[1,2,2,2]],[[0,1,2,1],[2,0,3,1],[3,2,3,1],[1,2,2,0]],[[0,1,2,1],[2,0,3,1],[2,2,4,1],[1,2,2,0]],[[0,1,2,1],[2,0,3,1],[2,2,3,1],[2,2,2,0]],[[0,1,2,1],[2,0,3,1],[2,2,3,1],[1,3,2,0]],[[0,1,2,1],[2,0,3,1],[2,2,3,1],[1,2,3,0]],[[1,2,2,2],[2,2,1,2],[1,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,2,1,3],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,2,1,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,2,1,2],[1,3,2,0],[1,0,2,1]],[[0,1,2,1],[2,0,3,1],[3,3,2,0],[1,2,2,1]],[[0,1,2,1],[2,0,3,1],[2,3,2,0],[2,2,2,1]],[[0,1,2,1],[2,0,3,1],[2,3,2,0],[1,3,2,1]],[[0,1,2,1],[2,0,3,1],[2,3,2,0],[1,2,3,1]],[[0,1,2,1],[2,0,3,1],[2,3,2,0],[1,2,2,2]],[[0,1,2,1],[2,0,3,1],[3,3,2,1],[1,2,2,0]],[[0,1,2,1],[2,0,3,1],[2,3,2,1],[2,2,2,0]],[[0,1,2,1],[2,0,3,1],[2,3,2,1],[1,3,2,0]],[[0,1,2,1],[2,0,3,1],[2,3,2,1],[1,2,3,0]],[[1,2,3,1],[2,2,1,2],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,2,1,2],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,2,1,2],[1,3,2,0],[1,0,2,1]],[[0,1,2,1],[2,0,3,1],[2,3,4,0],[0,2,2,1]],[[0,1,2,1],[2,0,3,1],[2,3,3,0],[0,3,2,1]],[[0,1,2,1],[2,0,3,1],[2,3,3,0],[0,2,3,1]],[[0,1,2,1],[2,0,3,1],[2,3,3,0],[0,2,2,2]],[[0,1,2,1],[2,0,3,1],[3,3,3,0],[1,2,1,1]],[[0,1,2,1],[2,0,3,1],[2,3,3,0],[2,2,1,1]],[[0,1,2,1],[2,0,3,1],[2,3,3,0],[1,3,1,1]],[[0,1,2,1],[2,0,3,1],[2,3,4,1],[0,2,2,0]],[[0,1,2,1],[2,0,3,1],[2,3,3,1],[0,3,2,0]],[[0,1,2,1],[2,0,3,1],[2,3,3,1],[0,2,3,0]],[[0,1,2,1],[2,0,3,1],[3,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,0,3,1],[2,3,3,1],[2,2,0,1]],[[0,1,2,1],[2,0,3,1],[2,3,3,1],[1,3,0,1]],[[0,1,2,1],[2,0,3,1],[3,3,3,1],[1,2,1,0]],[[0,1,2,1],[2,0,3,1],[2,3,3,1],[2,2,1,0]],[[0,1,2,1],[2,0,3,1],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,1,3],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,2,1,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,2,1,3],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[3,2,1,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,2,1,2],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,2,1,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,2,1,2],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,2,1,2],[1,3,2,0],[0,1,2,1]],[[0,1,2,2],[2,0,3,2],[0,1,3,2],[1,2,2,1]],[[0,1,2,1],[2,0,3,3],[0,1,3,2],[1,2,2,1]],[[0,1,2,1],[2,0,3,2],[0,1,3,3],[1,2,2,1]],[[0,1,2,1],[2,0,3,2],[0,1,3,2],[1,2,3,1]],[[0,1,2,1],[2,0,3,2],[0,1,3,2],[1,2,2,2]],[[0,1,2,2],[2,0,3,2],[0,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,0,3,3],[0,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,0,3,2],[0,2,2,3],[1,2,2,1]],[[0,1,2,1],[2,0,3,2],[0,2,2,2],[1,3,2,1]],[[0,1,2,1],[2,0,3,2],[0,2,2,2],[1,2,3,1]],[[0,1,2,1],[2,0,3,2],[0,2,2,2],[1,2,2,2]],[[0,1,2,1],[2,0,3,2],[0,2,4,1],[1,2,2,1]],[[0,1,2,1],[2,0,3,2],[0,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,0,3,2],[0,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,0,3,2],[0,2,3,1],[1,2,2,2]],[[0,1,2,2],[2,0,3,2],[0,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,0,3,3],[0,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,0,3,2],[0,2,4,2],[1,2,1,1]],[[0,1,2,1],[2,0,3,2],[0,2,3,3],[1,2,1,1]],[[0,1,2,1],[2,0,3,2],[0,2,3,2],[1,2,1,2]],[[0,1,2,2],[2,0,3,2],[0,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,0,3,3],[0,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,0,3,2],[0,2,4,2],[1,2,2,0]],[[0,1,2,1],[2,0,3,2],[0,2,3,3],[1,2,2,0]],[[0,1,2,1],[2,0,3,2],[0,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,0,3,2],[0,2,3,2],[1,2,3,0]],[[0,1,2,2],[2,0,3,2],[0,3,2,2],[1,1,2,1]],[[0,1,2,1],[2,0,3,3],[0,3,2,2],[1,1,2,1]],[[0,1,2,1],[2,0,3,2],[0,3,2,3],[1,1,2,1]],[[0,1,2,1],[2,0,3,2],[0,3,2,2],[1,1,3,1]],[[0,1,2,1],[2,0,3,2],[0,3,2,2],[1,1,2,2]],[[0,1,2,1],[2,0,3,2],[0,3,4,1],[1,1,2,1]],[[0,1,2,1],[2,0,3,2],[0,3,3,1],[1,1,3,1]],[[0,1,2,1],[2,0,3,2],[0,3,3,1],[1,1,2,2]],[[0,1,2,2],[2,0,3,2],[0,3,3,2],[1,0,2,1]],[[0,1,2,1],[2,0,3,3],[0,3,3,2],[1,0,2,1]],[[0,1,2,1],[2,0,3,2],[0,3,4,2],[1,0,2,1]],[[0,1,2,1],[2,0,3,2],[0,3,3,3],[1,0,2,1]],[[0,1,2,1],[2,0,3,2],[0,3,3,2],[1,0,2,2]],[[0,1,2,2],[2,0,3,2],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,0,3,3],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,0,3,2],[0,3,4,2],[1,1,1,1]],[[0,1,2,1],[2,0,3,2],[0,3,3,3],[1,1,1,1]],[[0,1,2,1],[2,0,3,2],[0,3,3,2],[1,1,1,2]],[[0,1,2,2],[2,0,3,2],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,0,3,3],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,0,3,2],[0,3,4,2],[1,1,2,0]],[[0,1,2,1],[2,0,3,2],[0,3,3,3],[1,1,2,0]],[[0,1,2,1],[2,0,3,2],[0,3,3,2],[1,1,3,0]],[[0,1,2,2],[2,0,3,2],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,0,3,3],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,0,3,2],[0,3,4,2],[1,2,0,1]],[[0,1,2,1],[2,0,3,2],[0,3,3,3],[1,2,0,1]],[[0,1,2,1],[2,0,3,2],[0,3,3,2],[1,2,0,2]],[[0,1,2,2],[2,0,3,2],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,0,3,3],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,0,3,2],[0,3,4,2],[1,2,1,0]],[[0,1,2,1],[2,0,3,2],[0,3,3,3],[1,2,1,0]],[[1,2,2,1],[2,2,1,3],[1,3,1,2],[1,2,0,0]],[[0,1,2,2],[2,0,3,2],[1,1,3,2],[0,2,2,1]],[[0,1,2,1],[2,0,3,3],[1,1,3,2],[0,2,2,1]],[[0,1,2,1],[2,0,3,2],[1,1,3,3],[0,2,2,1]],[[0,1,2,1],[2,0,3,2],[1,1,3,2],[0,2,3,1]],[[0,1,2,1],[2,0,3,2],[1,1,3,2],[0,2,2,2]],[[0,1,2,2],[2,0,3,2],[1,2,2,2],[0,2,2,1]],[[0,1,2,1],[2,0,3,3],[1,2,2,2],[0,2,2,1]],[[0,1,2,1],[2,0,3,2],[1,2,2,3],[0,2,2,1]],[[0,1,2,1],[2,0,3,2],[1,2,2,2],[0,2,3,1]],[[0,1,2,1],[2,0,3,2],[1,2,2,2],[0,2,2,2]],[[0,1,2,1],[2,0,3,2],[1,2,4,1],[0,2,2,1]],[[0,1,2,1],[2,0,3,2],[1,2,3,1],[0,2,3,1]],[[0,1,2,1],[2,0,3,2],[1,2,3,1],[0,2,2,2]],[[0,1,2,2],[2,0,3,2],[1,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,0,3,3],[1,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,0,3,2],[1,2,4,2],[0,2,1,1]],[[0,1,2,1],[2,0,3,2],[1,2,3,3],[0,2,1,1]],[[0,1,2,1],[2,0,3,2],[1,2,3,2],[0,2,1,2]],[[0,1,2,2],[2,0,3,2],[1,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,0,3,3],[1,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,0,3,2],[1,2,4,2],[0,2,2,0]],[[0,1,2,1],[2,0,3,2],[1,2,3,3],[0,2,2,0]],[[0,1,2,1],[2,0,3,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[3,2,1,2],[1,3,1,2],[1,2,0,0]],[[1,2,2,2],[2,2,1,2],[1,3,1,2],[1,2,0,0]],[[1,2,3,1],[2,2,1,2],[1,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,2,1,2],[1,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,2,1,2],[1,3,1,2],[1,2,0,0]],[[0,1,2,2],[2,0,3,2],[1,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,0,3,3],[1,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,0,3,2],[1,3,2,3],[0,1,2,1]],[[0,1,2,1],[2,0,3,2],[1,3,2,2],[0,1,3,1]],[[0,1,2,1],[2,0,3,2],[1,3,2,2],[0,1,2,2]],[[0,1,2,1],[2,0,3,2],[1,3,4,1],[0,1,2,1]],[[0,1,2,1],[2,0,3,2],[1,3,3,1],[0,1,3,1]],[[0,1,2,1],[2,0,3,2],[1,3,3,1],[0,1,2,2]],[[0,1,2,2],[2,0,3,2],[1,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,0,3,3],[1,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,0,3,2],[1,3,4,2],[0,0,2,1]],[[0,1,2,1],[2,0,3,2],[1,3,3,3],[0,0,2,1]],[[0,1,2,1],[2,0,3,2],[1,3,3,2],[0,0,2,2]],[[0,1,2,2],[2,0,3,2],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,0,3,3],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,0,3,2],[1,3,4,2],[0,1,1,1]],[[0,1,2,1],[2,0,3,2],[1,3,3,3],[0,1,1,1]],[[0,1,2,1],[2,0,3,2],[1,3,3,2],[0,1,1,2]],[[0,1,2,2],[2,0,3,2],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,0,3,3],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,0,3,2],[1,3,4,2],[0,1,2,0]],[[0,1,2,1],[2,0,3,2],[1,3,3,3],[0,1,2,0]],[[0,1,2,1],[2,0,3,2],[1,3,3,2],[0,1,3,0]],[[0,1,2,2],[2,0,3,2],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,0,3,3],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,0,3,2],[1,3,4,2],[0,2,0,1]],[[0,1,2,1],[2,0,3,2],[1,3,3,3],[0,2,0,1]],[[0,1,2,1],[2,0,3,2],[1,3,3,2],[0,2,0,2]],[[0,1,2,2],[2,0,3,2],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,0,3,3],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,0,3,2],[1,3,4,2],[0,2,1,0]],[[0,1,2,1],[2,0,3,2],[1,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[1,3,1,3],[1,1,1,0]],[[1,2,2,1],[2,2,1,3],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[3,2,1,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,2,1,2],[1,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,2,1,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,2,1,2],[1,3,1,2],[1,1,1,0]],[[0,1,2,2],[2,0,3,2],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,0,3,3],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,0,3,2],[1,3,4,2],[1,0,1,1]],[[0,1,2,1],[2,0,3,2],[1,3,3,3],[1,0,1,1]],[[0,1,2,1],[2,0,3,2],[1,3,3,2],[1,0,1,2]],[[0,1,2,2],[2,0,3,2],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,0,3,3],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,0,3,2],[1,3,4,2],[1,0,2,0]],[[0,1,2,1],[2,0,3,2],[1,3,3,3],[1,0,2,0]],[[2,2,2,1],[2,2,1,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[1,3,1,2],[1,1,0,2]],[[1,2,2,1],[2,2,1,2],[1,3,1,3],[1,1,0,1]],[[1,2,2,1],[2,2,1,3],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,2,1,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,2],[2,2,1,2],[1,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,2,1,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,2,1,2],[1,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,2,1,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,2,1,2],[1,3,1,3],[1,0,2,0]],[[1,2,2,1],[2,2,1,3],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[3,2,1,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,2,1,2],[1,3,1,2],[1,0,2,0]],[[1,2,3,1],[2,2,1,2],[1,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,2,1,2],[1,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,2,1,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,2,1,2],[1,3,1,2],[1,0,1,2]],[[1,2,2,1],[2,2,1,2],[1,3,1,3],[1,0,1,1]],[[1,2,2,1],[2,2,1,3],[1,3,1,2],[1,0,1,1]],[[1,2,2,1],[3,2,1,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,2,1,2],[1,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,2,1,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,2,1,2],[1,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,2,1,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,1],[2,2,1,2],[1,3,1,3],[0,2,1,0]],[[1,2,2,1],[2,2,1,3],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,2,1,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[1,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,2,1,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,2,1,2],[1,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,2,1,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[1,3,1,2],[0,2,0,2]],[[1,2,2,1],[2,2,1,2],[1,3,1,3],[0,2,0,1]],[[1,2,2,1],[2,2,1,3],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[3,2,1,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,2],[2,2,1,2],[1,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,2,1,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,2,1,2],[1,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,2,1,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,2,1,2],[1,3,1,3],[0,1,2,0]],[[1,2,2,1],[2,2,1,3],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[3,2,1,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,2,1,2],[1,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,2,1,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,2,1,2],[1,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,2,1,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,2,1,2],[1,3,1,2],[0,1,1,2]],[[1,2,2,1],[2,2,1,2],[1,3,1,3],[0,1,1,1]],[[1,2,2,1],[2,2,1,3],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[3,2,1,2],[1,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,2,1,2],[1,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,2,1,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,2,1,2],[1,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,2,1,2],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[2,2,1,3],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,2,1,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,2],[2,2,1,2],[1,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,2,1,2],[1,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,2,1,2],[1,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,2,1,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,2,1,3],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,2,1,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,2,1,2],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,2,1,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,2,1,2],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,2,1,3],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[1,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,2,1,2],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,2,1,3],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[3,2,1,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[1,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,2,1,2],[1,3,0,3],[1,1,2,0]],[[1,2,2,1],[2,2,1,3],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,2,1,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,2],[2,2,1,2],[1,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,2,1,2],[1,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,2,1,2],[1,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,2,1,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,2,1,2],[1,3,0,2],[1,1,1,2]],[[1,2,2,1],[2,2,1,2],[1,3,0,3],[1,1,1,1]],[[1,2,2,1],[2,2,1,3],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[1,3,0,2],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[1,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[1,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,2,1,2],[1,3,0,2],[1,0,2,2]],[[1,2,2,1],[2,2,1,2],[1,3,0,2],[1,0,3,1]],[[1,2,2,1],[2,2,1,2],[1,3,0,3],[1,0,2,1]],[[1,2,2,1],[2,2,1,3],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[3,2,1,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,2,1,2],[1,3,0,2],[1,0,2,1]],[[1,2,3,1],[2,2,1,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,2,1,2],[1,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,2,1,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,2,1,2],[1,3,0,3],[0,2,2,0]],[[1,2,2,1],[2,2,1,3],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,2,1,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,2,1,2],[1,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,2,1,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,2,1,2],[1,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[1,3,0,2],[0,2,1,2]],[[1,2,2,1],[2,2,1,2],[1,3,0,3],[0,2,1,1]],[[1,2,2,1],[2,2,1,3],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[3,2,1,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[1,3,0,2],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[1,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,2,1,2],[1,3,0,2],[0,1,2,2]],[[1,2,2,1],[2,2,1,2],[1,3,0,2],[0,1,3,1]],[[0,1,2,1],[2,1,0,2],[1,2,3,3],[1,2,2,1]],[[0,1,2,1],[2,1,0,2],[1,2,3,2],[2,2,2,1]],[[0,1,2,1],[2,1,0,2],[1,2,3,2],[1,3,2,1]],[[0,1,2,1],[2,1,0,2],[1,2,3,2],[1,2,3,1]],[[0,1,2,1],[2,1,0,2],[1,2,3,2],[1,2,2,2]],[[0,1,2,1],[2,1,0,2],[1,3,3,3],[1,1,2,1]],[[0,1,2,1],[2,1,0,2],[1,3,3,2],[1,1,3,1]],[[0,1,2,1],[2,1,0,2],[1,3,3,2],[1,1,2,2]],[[0,1,2,1],[2,1,0,2],[3,1,3,2],[1,2,2,1]],[[0,1,2,1],[2,1,0,2],[2,1,3,3],[1,2,2,1]],[[0,1,2,1],[2,1,0,2],[2,1,3,2],[2,2,2,1]],[[0,1,2,1],[2,1,0,2],[2,1,3,2],[1,3,2,1]],[[0,1,2,1],[2,1,0,2],[2,1,3,2],[1,2,3,1]],[[0,1,2,1],[2,1,0,2],[2,1,3,2],[1,2,2,2]],[[0,1,2,1],[2,1,0,2],[2,2,3,3],[0,2,2,1]],[[0,1,2,1],[2,1,0,2],[2,2,3,2],[0,3,2,1]],[[0,1,2,1],[2,1,0,2],[2,2,3,2],[0,2,3,1]],[[0,1,2,1],[2,1,0,2],[2,2,3,2],[0,2,2,2]],[[0,1,2,1],[2,1,0,2],[3,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,0,2],[2,3,1,3],[1,2,2,1]],[[0,1,2,1],[2,1,0,2],[2,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,1,0,2],[2,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,1,0,2],[2,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,1,0,2],[2,3,1,2],[1,2,2,2]],[[0,1,2,1],[2,1,0,2],[3,3,2,1],[1,2,2,1]],[[0,1,2,1],[2,1,0,2],[2,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,1,0,2],[2,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,1,0,2],[2,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,1,0,2],[2,3,2,1],[1,2,2,2]],[[0,1,2,1],[2,1,0,2],[3,3,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,0,2],[2,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,1,0,2],[2,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,1,0,2],[2,3,2,2],[1,2,3,0]],[[0,1,2,1],[2,1,0,2],[3,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,0,2],[2,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,1,0,2],[2,3,3,1],[1,3,1,1]],[[0,1,2,1],[2,1,0,2],[2,3,3,3],[0,1,2,1]],[[0,1,2,1],[2,1,0,2],[2,3,3,2],[0,1,3,1]],[[0,1,2,1],[2,1,0,2],[2,3,3,2],[0,1,2,2]],[[0,1,2,1],[2,1,0,2],[2,3,3,3],[1,0,2,1]],[[0,1,2,1],[2,1,0,2],[2,3,3,2],[1,0,3,1]],[[0,1,2,1],[2,1,0,2],[2,3,3,2],[1,0,2,2]],[[0,1,2,1],[2,1,0,2],[3,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,0,2],[2,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,1,0,2],[2,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,1,0,2],[3,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,0,2],[2,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,1,0,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,1,2],[1,3,0,3],[0,1,2,1]],[[1,2,2,1],[2,2,1,3],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[3,2,1,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,2,1,2],[1,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,2,1,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,2,1,2],[1,3,0,2],[0,1,2,1]],[[0,1,2,1],[2,1,1,0],[3,3,3,1],[1,2,2,1]],[[0,1,2,1],[2,1,1,0],[2,3,3,1],[2,2,2,1]],[[0,1,2,1],[2,1,1,0],[2,3,3,1],[1,3,2,1]],[[0,1,2,1],[2,1,1,0],[2,3,3,1],[1,2,3,1]],[[0,1,2,1],[2,1,1,0],[2,3,3,1],[1,2,2,2]],[[0,1,2,1],[2,1,1,0],[3,3,3,2],[1,2,2,0]],[[0,1,2,1],[2,1,1,0],[2,3,3,2],[2,2,2,0]],[[0,1,2,1],[2,1,1,0],[2,3,3,2],[1,3,2,0]],[[0,1,2,1],[2,1,1,0],[2,3,3,2],[1,2,3,0]],[[2,2,2,1],[2,2,1,2],[1,3,0,2],[0,1,2,1]],[[0,1,2,2],[2,1,1,2],[1,1,3,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,3],[1,1,3,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,1,3,3],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,1,3,2],[1,2,3,1]],[[0,1,2,1],[2,1,1,2],[1,1,3,2],[1,2,2,2]],[[0,1,3,1],[2,1,1,2],[1,2,2,2],[1,2,2,1]],[[0,1,2,2],[2,1,1,2],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,1],[2,1,1,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,1],[2,1,1,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,1],[2,1,1,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,1,1,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,1,1,2],[1,2,3,1],[1,2,2,2]],[[0,1,3,1],[2,1,1,2],[1,2,3,2],[1,2,1,1]],[[0,1,2,2],[2,1,1,2],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,1,1,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,1,1,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,1],[2,1,1,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,1],[2,1,1,2],[1,2,3,2],[1,2,1,2]],[[0,1,3,1],[2,1,1,2],[1,2,3,2],[1,2,2,0]],[[0,1,2,2],[2,1,1,2],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,1,1,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,1,1,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,1],[2,1,1,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,1],[2,1,1,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,1],[2,1,1,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,1,1,2],[1,2,3,2],[1,2,3,0]],[[0,1,3,1],[2,1,1,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,2],[2,1,1,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,3],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,4,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,1,3],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,1,1,2],[1,3,1,2],[1,2,2,2]],[[0,1,2,1],[2,1,1,2],[1,4,2,1],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,1,1,2],[1,3,2,1],[1,2,2,2]],[[0,1,3,1],[2,1,1,2],[1,3,2,2],[1,1,2,1]],[[0,1,2,2],[2,1,1,2],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[2,1,1,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,1],[2,1,1,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,1],[2,1,1,2],[1,4,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,1,2],[1,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,1,1,2],[1,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,1,1,2],[1,3,2,2],[1,2,3,0]],[[0,1,2,1],[2,1,1,2],[1,4,3,1],[1,1,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,1],[2,1,1,2],[1,4,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,1,2],[1,3,4,1],[1,2,1,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,1],[1,3,1,1]],[[0,1,2,2],[2,1,1,2],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[2,1,1,3],[1,3,3,2],[1,0,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,4,2],[1,0,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,3],[1,0,2,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,2],[1,0,2,2]],[[0,1,3,1],[2,1,1,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,2],[2,1,1,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,1,1,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,1,1,2],[1,4,3,2],[1,1,1,1]],[[0,1,2,1],[2,1,1,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,2],[1,1,1,2]],[[0,1,3,1],[2,1,1,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,2],[2,1,1,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,1,1,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,1,1,2],[1,4,3,2],[1,1,2,0]],[[0,1,2,1],[2,1,1,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,1],[2,1,1,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,1],[2,1,1,2],[1,3,3,2],[1,1,3,0]],[[0,1,3,1],[2,1,1,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,2],[2,1,1,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,1,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,1,2],[1,4,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,1,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,1,1,2],[1,3,3,2],[1,2,0,2]],[[0,1,3,1],[2,1,1,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,2],[2,1,1,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,1,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,1,2],[1,4,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,1,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,1],[2,1,1,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,1],[2,1,1,2],[1,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,1,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,1,3],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[1,3,0,1],[1,1,2,1]],[[0,1,2,2],[2,1,1,2],[2,0,3,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,3],[2,0,3,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,0,3,3],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,0,3,2],[1,2,3,1]],[[0,1,2,1],[2,1,1,2],[2,0,3,2],[1,2,2,2]],[[0,1,3,1],[2,1,1,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,2],[2,1,1,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[3,1,1,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,3],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[3,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,1,2,3],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,1,2,2],[2,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,1,2,2],[1,3,2,1]],[[0,1,2,1],[2,1,1,2],[2,1,2,2],[1,2,3,1]],[[0,1,2,1],[2,1,1,2],[2,1,2,2],[1,2,2,2]],[[0,1,2,1],[3,1,1,2],[2,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[3,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,1,4,1],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,1,3,1],[2,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,1,3,1],[1,3,2,1]],[[0,1,2,1],[2,1,1,2],[2,1,3,1],[1,2,3,1]],[[0,1,2,1],[2,1,1,2],[2,1,3,1],[1,2,2,2]],[[0,1,2,2],[2,1,1,2],[2,1,3,2],[0,2,2,1]],[[0,1,2,1],[2,1,1,3],[2,1,3,2],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,1,3,3],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,1,3,2],[0,2,3,1]],[[0,1,2,1],[2,1,1,2],[2,1,3,2],[0,2,2,2]],[[0,1,3,1],[2,1,1,2],[2,1,3,2],[1,2,1,1]],[[0,1,2,2],[2,1,1,2],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[2,1,1,3],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[2,1,1,2],[2,1,4,2],[1,2,1,1]],[[0,1,2,1],[2,1,1,2],[2,1,3,3],[1,2,1,1]],[[0,1,2,1],[2,1,1,2],[2,1,3,2],[1,2,1,2]],[[0,1,3,1],[2,1,1,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,2],[2,1,1,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[3,1,1,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,1,1,3],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,1,1,2],[3,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,1,1,2],[2,1,4,2],[1,2,2,0]],[[0,1,2,1],[2,1,1,2],[2,1,3,3],[1,2,2,0]],[[0,1,2,1],[2,1,1,2],[2,1,3,2],[2,2,2,0]],[[0,1,2,1],[2,1,1,2],[2,1,3,2],[1,3,2,0]],[[0,1,2,1],[2,1,1,2],[2,1,3,2],[1,2,3,0]],[[0,1,3,1],[2,1,1,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,2],[2,1,1,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[3,1,1,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,3],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[3,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,1,3],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,1,2],[2,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,1,2],[1,3,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,1,2],[1,2,3,1]],[[0,1,2,1],[2,1,1,2],[2,2,1,2],[1,2,2,2]],[[0,1,2,1],[3,1,1,2],[2,2,2,1],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[3,2,2,1],[1,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,2,1],[2,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,2,1],[1,3,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,2,1],[1,2,3,1]],[[0,1,2,1],[2,1,1,2],[2,2,2,1],[1,2,2,2]],[[0,1,3,1],[2,1,1,2],[2,2,2,2],[0,2,2,1]],[[0,1,2,2],[2,1,1,2],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[2,1,1,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,1],[2,1,1,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,1],[3,1,1,2],[2,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,1,2],[3,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,1,2],[2,2,2,2],[2,2,2,0]],[[0,1,2,1],[2,1,1,2],[2,2,2,2],[1,3,2,0]],[[0,1,2,1],[2,1,1,2],[2,2,2,2],[1,2,3,0]],[[0,1,2,1],[2,1,1,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,1],[2,1,1,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,1],[2,1,1,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,1],[3,1,1,2],[2,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,1,2],[3,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,1,2],[2,2,3,1],[2,2,1,1]],[[0,1,2,1],[2,1,1,2],[2,2,3,1],[1,3,1,1]],[[0,1,3,1],[2,1,1,2],[2,2,3,2],[0,2,1,1]],[[0,1,2,2],[2,1,1,2],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,1,1,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,1,1,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,1],[2,1,1,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,1],[2,1,1,2],[2,2,3,2],[0,2,1,2]],[[0,1,3,1],[2,1,1,2],[2,2,3,2],[0,2,2,0]],[[0,1,2,2],[2,1,1,2],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,1,1,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,1,1,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,1],[2,1,1,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,1],[2,1,1,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,1],[2,1,1,2],[2,2,3,2],[0,2,3,0]],[[0,1,2,1],[3,1,1,2],[2,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,1,2],[3,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,1,2],[2,2,3,2],[2,2,0,1]],[[0,1,2,1],[2,1,1,2],[2,2,3,2],[1,3,0,1]],[[0,1,2,1],[3,1,1,2],[2,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,1,2],[3,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,1,2],[2,2,3,2],[2,2,1,0]],[[0,1,2,1],[2,1,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,3,1],[2,2,1,2],[1,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[1,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,2,1,3],[1,3,0,1],[0,2,2,1]],[[1,2,2,1],[3,2,1,2],[1,3,0,1],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[1,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[1,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[1,3,0,1],[0,2,2,1]],[[0,1,3,1],[2,1,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,2],[2,1,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[3,1,1,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,1,1,3],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[3,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,4,1,2],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,1,3],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,1,2],[0,3,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,1,2],[0,2,3,1]],[[0,1,2,1],[2,1,1,2],[2,3,1,2],[0,2,2,2]],[[0,1,2,1],[3,1,1,2],[2,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,1,1,2],[3,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,1,1,2],[2,4,1,2],[1,1,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,1,2],[2,1,2,1]],[[0,1,2,1],[3,1,1,2],[2,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[3,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,4,2,1],[0,2,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,2,1],[0,3,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,2,1],[0,2,3,1]],[[0,1,2,1],[2,1,1,2],[2,3,2,1],[0,2,2,2]],[[0,1,2,1],[3,1,1,2],[2,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,1,1,2],[3,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,1,1,2],[2,4,2,1],[1,1,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,2,1],[2,1,2,1]],[[0,1,3,1],[2,1,1,2],[2,3,2,2],[0,1,2,1]],[[0,1,2,2],[2,1,1,2],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,1,1,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,1],[2,1,1,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,1],[3,1,1,2],[2,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,1,1,2],[3,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,1,1,2],[2,4,2,2],[0,2,2,0]],[[0,1,2,1],[2,1,1,2],[2,3,2,2],[0,3,2,0]],[[0,1,2,1],[2,1,1,2],[2,3,2,2],[0,2,3,0]],[[0,1,3,1],[2,1,1,2],[2,3,2,2],[1,0,2,1]],[[0,1,2,2],[2,1,1,2],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[2,1,1,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,1],[2,1,1,2],[2,3,2,2],[1,0,2,2]],[[0,1,2,1],[3,1,1,2],[2,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,1,1,2],[3,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,1,1,2],[2,4,2,2],[1,1,2,0]],[[0,1,2,1],[2,1,1,2],[2,3,2,2],[2,1,2,0]],[[0,1,2,1],[3,1,1,2],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,1,1,2],[3,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,1,1,2],[2,4,3,1],[0,1,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,1],[3,1,1,2],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,1,1,2],[3,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,1,1,2],[2,4,3,1],[0,2,1,1]],[[0,1,2,1],[2,1,1,2],[2,3,4,1],[0,2,1,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,1],[0,3,1,1]],[[0,1,2,1],[3,1,1,2],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,1,1,2],[3,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,1,1,2],[2,4,3,1],[1,0,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,1],[2,0,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,1],[1,0,2,2]],[[0,1,2,1],[3,1,1,2],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,1,1,2],[3,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,1,1,2],[2,4,3,1],[1,1,1,1]],[[0,1,2,1],[2,1,1,2],[2,3,4,1],[1,1,1,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,1],[2,1,1,1]],[[0,1,3,1],[2,1,1,2],[2,3,3,2],[0,0,2,1]],[[0,1,2,2],[2,1,1,2],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,1,1,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[0,0,2,2]],[[0,1,3,1],[2,1,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,2],[2,1,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[3,1,1,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,1,1,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,1,1,2],[3,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,1,1,2],[2,4,3,2],[0,1,1,1]],[[0,1,2,1],[2,1,1,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[0,1,1,2]],[[0,1,3,1],[2,1,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,2],[2,1,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[3,1,1,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,1,1,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,1,1,2],[3,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,1,1,2],[2,4,3,2],[0,1,2,0]],[[0,1,2,1],[2,1,1,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,1],[2,1,1,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[0,1,3,0]],[[0,1,3,1],[2,1,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,2],[2,1,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[3,1,1,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,1,1,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,1,1,2],[3,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,1,1,2],[2,4,3,2],[0,2,0,1]],[[0,1,2,1],[2,1,1,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[0,3,0,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[0,2,0,2]],[[0,1,3,1],[2,1,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,2],[2,1,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[3,1,1,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,1,1,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,1,1,2],[3,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,1,1,2],[2,4,3,2],[0,2,1,0]],[[0,1,2,1],[2,1,1,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,1],[2,1,1,2],[2,3,3,3],[0,2,1,0]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[0,3,1,0]],[[0,1,3,1],[2,1,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,2],[2,1,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[3,1,1,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,1,1,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,1,1,2],[3,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,1,1,2],[2,4,3,2],[1,0,1,1]],[[0,1,2,1],[2,1,1,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[2,0,1,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[1,0,1,2]],[[0,1,3,1],[2,1,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,2],[2,1,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[3,1,1,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,1,1,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,1,1,2],[3,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,1,1,2],[2,4,3,2],[1,0,2,0]],[[0,1,2,1],[2,1,1,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,1],[2,1,1,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[2,0,2,0]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[1,0,3,0]],[[0,1,3,1],[2,1,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,2],[2,1,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[3,1,1,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,1,1,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,1,1,2],[3,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,1,1,2],[2,4,3,2],[1,1,0,1]],[[0,1,2,1],[2,1,1,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[2,1,0,1]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[1,1,0,2]],[[0,1,3,1],[2,1,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,2],[2,1,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[3,1,1,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,1,1,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,1,1,2],[3,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,1,1,2],[2,4,3,2],[1,1,1,0]],[[0,1,2,1],[2,1,1,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,1],[2,1,1,2],[2,3,3,3],[1,1,1,0]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,2,1,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[2,2,1,3],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[3,2,1,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,2,1,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,2,1,2],[1,2,3,2],[1,0,0,1]],[[1,3,2,1],[2,2,1,2],[1,2,3,2],[1,0,0,1]],[[2,2,2,1],[2,2,1,2],[1,2,3,2],[1,0,0,1]],[[0,1,2,1],[3,1,1,2],[2,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,1,1,2],[3,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,1,1,2],[2,4,3,2],[1,2,0,0]],[[0,1,2,1],[2,1,1,2],[2,3,3,2],[2,2,0,0]],[[0,1,2,1],[2,1,2,0],[3,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,0],[2,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,1,2,0],[2,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,1,2,0],[2,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,1,2,0],[2,3,1,2],[1,2,2,2]],[[0,1,2,1],[2,1,2,0],[3,3,2,1],[1,2,2,1]],[[0,1,2,1],[2,1,2,0],[2,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,1,2,0],[2,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,1,2,0],[2,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,1,2,0],[2,3,2,1],[1,2,2,2]],[[0,1,2,1],[2,1,2,0],[3,3,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,2,0],[2,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,1,2,0],[2,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,1,2,0],[2,3,2,2],[1,2,3,0]],[[0,1,2,1],[2,1,2,0],[3,3,3,0],[1,2,2,1]],[[0,1,2,1],[2,1,2,0],[2,3,3,0],[2,2,2,1]],[[0,1,2,1],[2,1,2,0],[2,3,3,0],[1,3,2,1]],[[0,1,2,1],[2,1,2,0],[2,3,3,0],[1,2,3,1]],[[0,1,2,1],[2,1,2,0],[3,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,2,0],[2,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,1,2,0],[2,3,3,1],[1,3,1,1]],[[0,1,2,1],[2,1,2,0],[3,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,2,0],[2,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,1,2,0],[2,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,1,2,0],[3,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,2,0],[2,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,1,2,0],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,1,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,1],[2,2,1,3],[1,2,3,2],[0,1,0,1]],[[1,2,2,1],[3,2,1,2],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,2,1,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,1],[2,2,1,2],[1,2,3,2],[0,1,0,1]],[[0,1,2,1],[2,1,2,1],[3,3,2,0],[1,2,2,1]],[[0,1,2,1],[2,1,2,1],[2,3,2,0],[2,2,2,1]],[[0,1,2,1],[2,1,2,1],[2,3,2,0],[1,3,2,1]],[[0,1,2,1],[2,1,2,1],[2,3,2,0],[1,2,3,1]],[[0,1,2,1],[2,1,2,1],[3,3,2,1],[1,2,2,0]],[[0,1,2,1],[2,1,2,1],[2,3,2,1],[2,2,2,0]],[[0,1,2,1],[2,1,2,1],[2,3,2,1],[1,3,2,0]],[[1,3,2,1],[2,2,1,2],[1,2,3,2],[0,1,0,1]],[[2,2,2,1],[2,2,1,2],[1,2,3,2],[0,1,0,1]],[[0,1,2,1],[2,1,2,1],[3,3,3,0],[1,2,1,1]],[[0,1,2,1],[2,1,2,1],[2,3,3,0],[2,2,1,1]],[[0,1,2,1],[2,1,2,1],[2,3,3,0],[1,3,1,1]],[[0,1,2,1],[2,1,2,1],[3,3,3,1],[1,2,1,0]],[[0,1,2,1],[2,1,2,1],[2,3,3,1],[2,2,1,0]],[[0,1,2,1],[2,1,2,1],[2,3,3,1],[1,3,1,0]],[[0,1,3,1],[2,1,2,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,2],[2,1,2,2],[1,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,3],[1,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,2],[1,2,1,3],[1,2,2,1]],[[0,1,2,1],[2,1,2,2],[1,2,1,2],[2,2,2,1]],[[0,1,2,1],[2,1,2,2],[1,2,1,2],[1,3,2,1]],[[0,1,2,1],[2,1,2,2],[1,2,1,2],[1,2,3,1]],[[0,1,2,1],[2,1,2,2],[1,2,1,2],[1,2,2,2]],[[0,1,3,1],[2,1,2,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,2],[2,1,2,2],[1,2,2,2],[1,2,1,1]],[[0,1,2,1],[2,1,2,3],[1,2,2,2],[1,2,1,1]],[[0,1,2,1],[2,1,2,2],[1,2,2,3],[1,2,1,1]],[[0,1,2,1],[2,1,2,2],[1,2,2,2],[1,2,1,2]],[[0,1,3,1],[2,1,2,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,2],[2,1,2,2],[1,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,2,3],[1,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,2,2],[1,2,2,3],[1,2,2,0]],[[0,1,3,1],[2,1,2,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,2],[2,1,2,2],[1,2,3,0],[1,2,2,1]],[[0,1,2,1],[2,1,2,3],[1,2,3,0],[1,2,2,1]],[[0,1,3,1],[2,1,2,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,2],[2,1,2,2],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,2,3],[1,2,3,1],[1,2,1,1]],[[0,1,3,1],[2,1,2,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,2],[2,1,2,2],[1,2,3,1],[1,2,2,0]],[[0,1,2,1],[2,1,2,3],[1,2,3,1],[1,2,2,0]],[[0,1,3,1],[2,1,2,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,2],[2,1,2,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,3],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,2],[1,4,0,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,2],[1,3,0,3],[1,2,2,1]],[[0,1,2,1],[2,1,2,2],[1,3,0,2],[2,2,2,1]],[[0,1,2,1],[2,1,2,2],[1,3,0,2],[1,3,2,1]],[[0,1,2,1],[2,1,2,2],[1,3,0,2],[1,2,3,1]],[[0,1,2,1],[2,1,2,2],[1,3,0,2],[1,2,2,2]],[[0,1,3,1],[2,1,2,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,2],[2,1,2,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,1,2,3],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,1,2,2],[1,3,1,3],[1,1,2,1]],[[0,1,2,1],[2,1,2,2],[1,3,1,2],[1,1,3,1]],[[0,1,2,1],[2,1,2,2],[1,3,1,2],[1,1,2,2]],[[0,1,3,1],[2,1,2,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,2],[2,1,2,2],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[2,1,2,3],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[2,1,2,2],[1,3,2,3],[1,1,1,1]],[[0,1,2,1],[2,1,2,2],[1,3,2,2],[1,1,1,2]],[[0,1,3,1],[2,1,2,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,2],[2,1,2,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,1,2,3],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,1,2,2],[1,3,2,3],[1,1,2,0]],[[0,1,3,1],[2,1,2,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,2],[2,1,2,2],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[2,1,2,3],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[2,1,2,2],[1,3,2,3],[1,2,0,1]],[[0,1,2,1],[2,1,2,2],[1,3,2,2],[1,2,0,2]],[[0,1,3,1],[2,1,2,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,2],[2,1,2,2],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[2,1,2,3],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[2,1,2,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,2,1,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,1,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,2,1,2],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,1,2],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,1,2],[1,2,3,1],[1,1,1,0]],[[0,1,3,1],[2,1,2,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,2],[2,1,2,2],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,1,2,3],[1,3,3,0],[1,1,2,1]],[[0,1,3,1],[2,1,2,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,2],[2,1,2,2],[1,3,3,0],[1,2,1,1]],[[0,1,2,1],[2,1,2,3],[1,3,3,0],[1,2,1,1]],[[0,1,3,1],[2,1,2,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,2],[2,1,2,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,1,2,3],[1,3,3,1],[1,1,1,1]],[[0,1,3,1],[2,1,2,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,2],[2,1,2,2],[1,3,3,1],[1,1,2,0]],[[0,1,2,1],[2,1,2,3],[1,3,3,1],[1,1,2,0]],[[0,1,3,1],[2,1,2,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,2],[2,1,2,2],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,1,2,3],[1,3,3,1],[1,2,0,1]],[[0,1,3,1],[2,1,2,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,2],[2,1,2,2],[1,3,3,1],[1,2,1,0]],[[0,1,2,1],[2,1,2,3],[1,3,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,1,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,1,3],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[3,2,1,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,1,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,1,2],[1,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,1,2],[1,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,1,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,1,3],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,1,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,2,1,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,1,2],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,1,2],[1,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,1,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,1,3],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,1,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,2,1,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,1,2],[1,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,1,2],[1,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,1,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,1,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,1,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,1,2],[1,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,1,2],[1,2,3,1],[0,2,1,0]],[[0,1,3,1],[2,1,2,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,2],[2,1,2,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[3,1,2,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,3],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,2],[3,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,2],[2,1,1,3],[1,2,2,1]],[[0,1,2,1],[2,1,2,2],[2,1,1,2],[2,2,2,1]],[[0,1,2,1],[2,1,2,2],[2,1,1,2],[1,3,2,1]],[[0,1,2,1],[2,1,2,2],[2,1,1,2],[1,2,3,1]],[[0,1,2,1],[2,1,2,2],[2,1,1,2],[1,2,2,2]],[[0,1,3,1],[2,1,2,2],[2,1,2,2],[1,2,1,1]],[[0,1,2,2],[2,1,2,2],[2,1,2,2],[1,2,1,1]],[[0,1,2,1],[2,1,2,3],[2,1,2,2],[1,2,1,1]],[[0,1,2,1],[2,1,2,2],[2,1,2,3],[1,2,1,1]],[[0,1,2,1],[2,1,2,2],[2,1,2,2],[1,2,1,2]],[[0,1,3,1],[2,1,2,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,2],[2,1,2,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,2,3],[2,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,2,2],[2,1,2,3],[1,2,2,0]],[[0,1,3,1],[2,1,2,2],[2,1,3,0],[1,2,2,1]],[[0,1,2,2],[2,1,2,2],[2,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,1,2,3],[2,1,3,0],[1,2,2,1]],[[0,1,3,1],[2,1,2,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,2],[2,1,2,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,2,3],[2,1,3,1],[1,2,1,1]],[[0,1,3,1],[2,1,2,2],[2,1,3,1],[1,2,2,0]],[[0,1,2,2],[2,1,2,2],[2,1,3,1],[1,2,2,0]],[[0,1,2,1],[2,1,2,3],[2,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,1,3],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[3,2,1,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,1,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,1,2],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,1,2],[1,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,1,2],[1,2,3,1],[0,2,0,1]],[[0,1,3,1],[2,1,2,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,2],[2,1,2,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[3,1,2,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,3],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,2],[3,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,1,2,2],[2,2,0,3],[1,2,2,1]],[[0,1,2,1],[2,1,2,2],[2,2,0,2],[2,2,2,1]],[[0,1,2,1],[2,1,2,2],[2,2,0,2],[1,3,2,1]],[[0,1,2,1],[2,1,2,2],[2,2,0,2],[1,2,3,1]],[[0,1,2,1],[2,1,2,2],[2,2,0,2],[1,2,2,2]],[[0,1,3,1],[2,1,2,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,2],[2,1,2,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[2,1,2,3],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[2,1,2,2],[2,2,1,3],[0,2,2,1]],[[0,1,2,1],[2,1,2,2],[2,2,1,2],[0,3,2,1]],[[0,1,2,1],[2,1,2,2],[2,2,1,2],[0,2,3,1]],[[0,1,2,1],[2,1,2,2],[2,2,1,2],[0,2,2,2]],[[0,1,3,1],[2,1,2,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,2],[2,1,2,2],[2,2,2,2],[0,2,1,1]],[[0,1,2,1],[2,1,2,3],[2,2,2,2],[0,2,1,1]],[[0,1,2,1],[2,1,2,2],[2,2,2,3],[0,2,1,1]],[[0,1,2,1],[2,1,2,2],[2,2,2,2],[0,2,1,2]],[[0,1,3,1],[2,1,2,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,2],[2,1,2,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[2,1,2,3],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[2,1,2,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,1],[2,2,1,3],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,1,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,1,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,1,2],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,1,2],[1,2,3,1],[0,1,2,0]],[[0,1,3,1],[2,1,2,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,2],[2,1,2,2],[2,2,3,0],[0,2,2,1]],[[0,1,2,1],[2,1,2,3],[2,2,3,0],[0,2,2,1]],[[0,1,3,1],[2,1,2,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,2],[2,1,2,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,1,2,3],[2,2,3,1],[0,2,1,1]],[[0,1,3,1],[2,1,2,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,2],[2,1,2,2],[2,2,3,1],[0,2,2,0]],[[0,1,2,1],[2,1,2,3],[2,2,3,1],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,1,3],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,1,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,1,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,1,2],[1,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,1,2],[1,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,1,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,2,1,3],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[3,2,1,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,2,1,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[2,2,1,2],[1,2,3,1],[0,0,2,1]],[[1,3,2,1],[2,2,1,2],[1,2,3,1],[0,0,2,1]],[[2,2,2,1],[2,2,1,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[2,2,1,3],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[1,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[1,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,1,3],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[3,2,1,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,1,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,1,2],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,1,2],[1,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,1,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,1,3],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,1,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[1,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[1,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[1,2,3,0],[0,2,1,1]],[[0,1,3,1],[2,1,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,2],[2,1,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[3,1,2,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,1,2,3],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,1,2,2],[3,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,1,2,2],[2,4,0,2],[0,2,2,1]],[[0,1,2,1],[2,1,2,2],[2,3,0,3],[0,2,2,1]],[[0,1,2,1],[2,1,2,2],[2,3,0,2],[0,3,2,1]],[[0,1,2,1],[2,1,2,2],[2,3,0,2],[0,2,3,1]],[[0,1,2,1],[2,1,2,2],[2,3,0,2],[0,2,2,2]],[[0,1,2,1],[3,1,2,2],[2,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,1,2,2],[3,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,1,2,2],[2,4,0,2],[1,1,2,1]],[[0,1,2,1],[2,1,2,2],[2,3,0,2],[2,1,2,1]],[[0,1,3,1],[2,1,2,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,2],[2,1,2,2],[2,3,1,2],[0,1,2,1]],[[0,1,2,1],[2,1,2,3],[2,3,1,2],[0,1,2,1]],[[0,1,2,1],[2,1,2,2],[2,3,1,3],[0,1,2,1]],[[0,1,2,1],[2,1,2,2],[2,3,1,2],[0,1,3,1]],[[0,1,2,1],[2,1,2,2],[2,3,1,2],[0,1,2,2]],[[0,1,3,1],[2,1,2,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,2],[2,1,2,2],[2,3,1,2],[1,0,2,1]],[[0,1,2,1],[2,1,2,3],[2,3,1,2],[1,0,2,1]],[[0,1,2,1],[2,1,2,2],[2,3,1,3],[1,0,2,1]],[[0,1,2,1],[2,1,2,2],[2,3,1,2],[1,0,3,1]],[[0,1,2,1],[2,1,2,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,2,1,3],[1,2,3,0],[0,1,2,1]],[[1,2,2,1],[3,2,1,2],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,1,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,1,2],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,1,2],[1,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,1,2],[1,2,3,0],[0,1,2,1]],[[0,1,3,1],[2,1,2,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,2],[2,1,2,2],[2,3,2,2],[0,0,2,1]],[[0,1,2,1],[2,1,2,3],[2,3,2,2],[0,0,2,1]],[[0,1,2,1],[2,1,2,2],[2,3,2,3],[0,0,2,1]],[[0,1,2,1],[2,1,2,2],[2,3,2,2],[0,0,2,2]],[[0,1,3,1],[2,1,2,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,2],[2,1,2,2],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,1,2,3],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,1,2,2],[2,3,2,3],[0,1,1,1]],[[0,1,2,1],[2,1,2,2],[2,3,2,2],[0,1,1,2]],[[0,1,3,1],[2,1,2,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,2],[2,1,2,2],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,1,2,3],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,1,2,2],[2,3,2,3],[0,1,2,0]],[[0,1,3,1],[2,1,2,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,2],[2,1,2,2],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,1,2,3],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,1,2,2],[2,3,2,3],[0,2,0,1]],[[0,1,2,1],[2,1,2,2],[2,3,2,2],[0,2,0,2]],[[0,1,3,1],[2,1,2,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,2],[2,1,2,2],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,1,2,3],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,1,2,2],[2,3,2,3],[0,2,1,0]],[[0,1,3,1],[2,1,2,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,2],[2,1,2,2],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[2,1,2,3],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[2,1,2,2],[2,3,2,3],[1,0,1,1]],[[0,1,2,1],[2,1,2,2],[2,3,2,2],[1,0,1,2]],[[0,1,3,1],[2,1,2,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,2],[2,1,2,2],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[2,1,2,3],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[2,1,2,2],[2,3,2,3],[1,0,2,0]],[[0,1,3,1],[2,1,2,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,2],[2,1,2,2],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[2,1,2,3],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[2,1,2,2],[2,3,2,3],[1,1,0,1]],[[0,1,2,1],[2,1,2,2],[2,3,2,2],[1,1,0,2]],[[0,1,3,1],[2,1,2,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,2],[2,1,2,2],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[2,1,2,3],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[2,1,2,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,1],[2,2,1,3],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[3,2,1,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,1,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,1,2],[1,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,1,2],[1,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,1,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[1,2,2,2],[1,1,0,2]],[[1,2,2,1],[2,2,1,2],[1,2,2,3],[1,1,0,1]],[[1,2,2,1],[2,2,1,3],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[3,2,1,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,1,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,1,2],[1,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,1,2],[1,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,1,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,2,1,2],[1,2,2,3],[1,0,2,0]],[[1,2,2,1],[2,2,1,3],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[3,2,1,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,1,2],[1,2,2,2],[1,0,2,0]],[[0,1,3,1],[2,1,2,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,2],[2,1,2,2],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,1,2,3],[2,3,3,0],[0,1,2,1]],[[0,1,3,1],[2,1,2,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,2],[2,1,2,2],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,1,2,3],[2,3,3,0],[0,2,1,1]],[[0,1,3,1],[2,1,2,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,2],[2,1,2,2],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[2,1,2,3],[2,3,3,0],[1,0,2,1]],[[0,1,3,1],[2,1,2,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,2],[2,1,2,2],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,1,2,3],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[1,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,1,2],[1,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,1,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,1,2],[1,2,2,2],[1,0,1,2]],[[1,2,2,1],[2,2,1,2],[1,2,2,3],[1,0,1,1]],[[1,2,2,1],[2,2,1,3],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[3,2,1,2],[1,2,2,2],[1,0,1,1]],[[0,1,3,1],[2,1,2,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,2],[2,1,2,2],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,1,2,3],[2,3,3,1],[0,0,2,1]],[[0,1,3,1],[2,1,2,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,2],[2,1,2,2],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,1,2,3],[2,3,3,1],[0,1,1,1]],[[0,1,3,1],[2,1,2,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,2],[2,1,2,2],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,1,2,3],[2,3,3,1],[0,1,2,0]],[[0,1,3,1],[2,1,2,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,2],[2,1,2,2],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,1,2,3],[2,3,3,1],[0,2,0,1]],[[0,1,3,1],[2,1,2,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,2],[2,1,2,2],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,1,2,3],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,1,2],[1,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,1,2],[1,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,2,1,2],[1,2,2,2],[1,0,1,1]],[[0,1,3,1],[2,1,2,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,2],[2,1,2,2],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,1,2,3],[2,3,3,1],[1,0,1,1]],[[0,1,3,1],[2,1,2,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,2],[2,1,2,2],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[2,1,2,3],[2,3,3,1],[1,0,2,0]],[[0,1,3,1],[2,1,2,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,2],[2,1,2,2],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[2,1,2,3],[2,3,3,1],[1,1,0,1]],[[0,1,3,1],[2,1,2,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,2],[2,1,2,2],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[2,1,2,3],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,1,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,1],[2,2,1,3],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[3,2,1,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,1,2],[1,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,1,2],[1,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,1,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[1,2,2,2],[0,2,0,2]],[[1,2,2,1],[2,2,1,2],[1,2,2,3],[0,2,0,1]],[[1,2,2,1],[2,2,1,3],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[3,2,1,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,1,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,1,2],[1,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,1,2],[1,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,1,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,2,1,2],[1,2,2,3],[0,1,2,0]],[[1,2,2,1],[2,2,1,3],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[3,2,1,2],[1,2,2,2],[0,1,2,0]],[[0,1,3,1],[2,1,2,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,2],[2,1,2,2],[2,3,3,2],[0,1,0,1]],[[0,1,2,1],[2,1,2,3],[2,3,3,2],[0,1,0,1]],[[0,1,2,1],[2,1,2,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,2],[2,2,1,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,1,2],[1,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,1,2],[1,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,1,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,1,2],[1,2,2,2],[0,1,1,2]],[[1,2,2,1],[2,2,1,2],[1,2,2,3],[0,1,1,1]],[[1,2,2,1],[2,2,1,3],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,1,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,1,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,1,2],[1,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,1,2],[1,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,1,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,2,1,2],[1,2,2,2],[0,0,2,2]],[[1,2,2,1],[2,2,1,2],[1,2,2,3],[0,0,2,1]],[[1,2,2,1],[2,2,1,3],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[3,2,1,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,2,1,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,2,1,2],[1,2,2,2],[0,0,2,1]],[[1,3,2,1],[2,2,1,2],[1,2,2,2],[0,0,2,1]],[[2,2,2,1],[2,2,1,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[2,2,1,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,1],[2,2,1,2],[1,2,1,2],[1,0,3,1]],[[1,2,2,1],[2,2,1,2],[1,2,1,3],[1,0,2,1]],[[1,2,2,1],[2,2,1,3],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[3,2,1,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[2,2,1,2],[1,2,1,2],[1,0,2,1]],[[1,2,3,1],[2,2,1,2],[1,2,1,2],[1,0,2,1]],[[1,3,2,1],[2,2,1,2],[1,2,1,2],[1,0,2,1]],[[2,2,2,1],[2,2,1,2],[1,2,1,2],[1,0,2,1]],[[0,1,3,1],[2,1,2,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,2],[2,1,2,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[2,1,2,3],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[2,1,2,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,2,1,2],[1,2,1,2],[0,1,2,2]],[[1,2,2,1],[2,2,1,2],[1,2,1,2],[0,1,3,1]],[[1,2,2,1],[2,2,1,2],[1,2,1,3],[0,1,2,1]],[[1,2,2,1],[2,2,1,3],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[3,2,1,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,2,1,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,2,1,2],[1,2,1,2],[0,1,2,1]],[[1,3,2,1],[2,2,1,2],[1,2,1,2],[0,1,2,1]],[[2,2,2,1],[2,2,1,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[2,2,1,2],[1,2,0,2],[0,2,2,2]],[[1,2,2,1],[2,2,1,2],[1,2,0,2],[0,2,3,1]],[[1,2,2,1],[2,2,1,2],[1,2,0,2],[0,3,2,1]],[[1,2,2,1],[2,2,1,2],[1,2,0,3],[0,2,2,1]],[[1,2,2,1],[2,2,1,3],[1,2,0,2],[0,2,2,1]],[[1,2,2,1],[3,2,1,2],[1,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[1,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[1,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[1,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[1,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,2,1,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[3,2,1,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,2,1,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,2,1,2],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,2,1,2],[1,1,3,1],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,2,1,3],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[3,2,1,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[1,1,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[1,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,2,1,3],[1,1,3,0],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,1,3,3],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,1,3,2],[1,2,3,1]],[[0,1,2,1],[2,1,3,0],[1,1,3,2],[1,2,2,2]],[[0,1,2,1],[2,1,3,0],[1,2,2,3],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,2,2,2],[2,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,2,2,2],[1,3,2,1]],[[0,1,2,1],[2,1,3,0],[1,2,2,2],[1,2,3,1]],[[0,1,2,1],[2,1,3,0],[1,2,2,2],[1,2,2,2]],[[0,1,3,1],[2,1,3,0],[1,2,3,1],[1,2,2,1]],[[0,1,2,2],[2,1,3,0],[1,2,3,1],[1,2,2,1]],[[0,1,2,1],[2,1,4,0],[1,2,3,1],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,2,4,1],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,2,3,1],[2,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,1,3,0],[1,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,1,3,0],[1,2,3,1],[1,2,2,2]],[[0,1,3,1],[2,1,3,0],[1,2,3,2],[1,2,1,1]],[[0,1,2,2],[2,1,3,0],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,1,4,0],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,1,3,0],[1,2,4,2],[1,2,1,1]],[[0,1,2,1],[2,1,3,0],[1,2,3,3],[1,2,1,1]],[[0,1,2,1],[2,1,3,0],[1,2,3,2],[1,2,1,2]],[[0,1,3,1],[2,1,3,0],[1,2,3,2],[1,2,2,0]],[[0,1,2,2],[2,1,3,0],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,1,4,0],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,1,3,0],[1,2,4,2],[1,2,2,0]],[[0,1,2,1],[2,1,3,0],[1,2,3,3],[1,2,2,0]],[[0,1,2,1],[2,1,3,0],[1,2,3,2],[2,2,2,0]],[[0,1,2,1],[2,1,3,0],[1,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,1,3,0],[1,2,3,2],[1,2,3,0]],[[0,1,2,1],[2,1,3,0],[1,4,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,1,3],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,1,3,0],[1,3,1,2],[1,2,2,2]],[[0,1,2,1],[2,1,3,0],[1,4,2,1],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,1,3,0],[1,3,2,1],[1,2,2,2]],[[0,1,2,1],[2,1,3,0],[1,3,2,3],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,2,2],[1,1,3,1]],[[0,1,2,1],[2,1,3,0],[1,3,2,2],[1,1,2,2]],[[0,1,2,1],[2,1,3,0],[1,4,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,3,0],[1,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,1,3,0],[1,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,1,3,0],[1,3,2,2],[1,2,3,0]],[[0,1,2,1],[2,1,3,0],[1,4,3,0],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,0],[2,2,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,0],[1,3,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,0],[1,2,3,1]],[[0,1,3,1],[2,1,3,0],[1,3,3,1],[1,1,2,1]],[[0,1,2,2],[2,1,3,0],[1,3,3,1],[1,1,2,1]],[[0,1,2,1],[2,1,4,0],[1,3,3,1],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[1,4,3,1],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,4,1],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,1],[1,1,3,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,1],[1,1,2,2]],[[0,1,3,1],[2,1,3,0],[1,3,3,1],[1,2,1,1]],[[0,1,2,2],[2,1,3,0],[1,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,4,0],[1,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,3,0],[1,4,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,3,0],[1,3,4,1],[1,2,1,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,1],[1,3,1,1]],[[0,1,2,1],[2,1,3,0],[1,3,4,2],[1,0,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,3],[1,0,2,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,2],[1,0,2,2]],[[0,1,3,1],[2,1,3,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,2],[2,1,3,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,1,4,0],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,1,3,0],[1,4,3,2],[1,1,1,1]],[[0,1,2,1],[2,1,3,0],[1,3,4,2],[1,1,1,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,3],[1,1,1,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,2],[1,1,1,2]],[[0,1,3,1],[2,1,3,0],[1,3,3,2],[1,1,2,0]],[[0,1,2,2],[2,1,3,0],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,1,4,0],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,1,3,0],[1,4,3,2],[1,1,2,0]],[[0,1,2,1],[2,1,3,0],[1,3,4,2],[1,1,2,0]],[[0,1,2,1],[2,1,3,0],[1,3,3,3],[1,1,2,0]],[[0,1,2,1],[2,1,3,0],[1,3,3,2],[1,1,3,0]],[[0,1,3,1],[2,1,3,0],[1,3,3,2],[1,2,0,1]],[[0,1,2,2],[2,1,3,0],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,4,0],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,3,0],[1,4,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,3,0],[1,3,4,2],[1,2,0,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,3],[1,2,0,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,1,3,0],[1,3,3,2],[1,2,0,2]],[[0,1,3,1],[2,1,3,0],[1,3,3,2],[1,2,1,0]],[[0,1,2,2],[2,1,3,0],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,4,0],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,3,0],[1,4,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,3,0],[1,3,4,2],[1,2,1,0]],[[0,1,2,1],[2,1,3,0],[1,3,3,3],[1,2,1,0]],[[0,1,2,1],[2,1,3,0],[1,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,1,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,2,1,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[1,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[1,1,3,0],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,0,3,3],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,0,3,2],[1,2,3,1]],[[0,1,2,1],[2,1,3,0],[2,0,3,2],[1,2,2,2]],[[0,1,2,1],[3,1,3,0],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[3,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,1,2,3],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,1,2,2],[2,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,1,2,2],[1,3,2,1]],[[0,1,2,1],[2,1,3,0],[2,1,2,2],[1,2,3,1]],[[0,1,2,1],[2,1,3,0],[2,1,2,2],[1,2,2,2]],[[0,1,3,1],[2,1,3,0],[2,1,3,1],[1,2,2,1]],[[0,1,2,2],[2,1,3,0],[2,1,3,1],[1,2,2,1]],[[0,1,2,1],[3,1,3,0],[2,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,1,4,0],[2,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[3,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,1,4,1],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,1,3,1],[2,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,1,3,1],[1,3,2,1]],[[0,1,2,1],[2,1,3,0],[2,1,3,1],[1,2,3,1]],[[0,1,2,1],[2,1,3,0],[2,1,3,1],[1,2,2,2]],[[0,1,2,1],[2,1,3,0],[2,1,3,3],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,1,3,2],[0,2,3,1]],[[0,1,2,1],[2,1,3,0],[2,1,3,2],[0,2,2,2]],[[0,1,3,1],[2,1,3,0],[2,1,3,2],[1,2,1,1]],[[0,1,2,2],[2,1,3,0],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[2,1,4,0],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[2,1,3,0],[2,1,4,2],[1,2,1,1]],[[0,1,2,1],[2,1,3,0],[2,1,3,3],[1,2,1,1]],[[0,1,2,1],[2,1,3,0],[2,1,3,2],[1,2,1,2]],[[0,1,3,1],[2,1,3,0],[2,1,3,2],[1,2,2,0]],[[0,1,2,2],[2,1,3,0],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[3,1,3,0],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,1,4,0],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,1,3,0],[3,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,1,3,0],[2,1,4,2],[1,2,2,0]],[[0,1,2,1],[2,1,3,0],[2,1,3,3],[1,2,2,0]],[[0,1,2,1],[2,1,3,0],[2,1,3,2],[2,2,2,0]],[[0,1,2,1],[2,1,3,0],[2,1,3,2],[1,3,2,0]],[[0,1,2,1],[2,1,3,0],[2,1,3,2],[1,2,3,0]],[[0,1,2,1],[3,1,3,0],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[3,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,1,3],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,1,2],[2,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,1,2],[1,3,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,1,2],[1,2,3,1]],[[0,1,2,1],[2,1,3,0],[2,2,1,2],[1,2,2,2]],[[0,1,2,1],[3,1,3,0],[2,2,2,1],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[3,2,2,1],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,2,1],[2,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,2,1],[1,3,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,2,1],[1,2,3,1]],[[0,1,2,1],[2,1,3,0],[2,2,2,1],[1,2,2,2]],[[0,1,2,1],[2,1,3,0],[2,2,2,3],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,2,2],[0,3,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,2,2],[0,2,3,1]],[[0,1,2,1],[2,1,3,0],[2,2,2,2],[0,2,2,2]],[[0,1,2,1],[3,1,3,0],[2,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,3,0],[3,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,3,0],[2,2,2,2],[2,2,2,0]],[[0,1,2,1],[2,1,3,0],[2,2,2,2],[1,3,2,0]],[[0,1,2,1],[2,1,3,0],[2,2,2,2],[1,2,3,0]],[[0,1,2,1],[3,1,3,0],[2,2,3,0],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[3,2,3,0],[1,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,0],[2,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,0],[1,3,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,0],[1,2,3,1]],[[0,1,3,1],[2,1,3,0],[2,2,3,1],[0,2,2,1]],[[0,1,2,2],[2,1,3,0],[2,2,3,1],[0,2,2,1]],[[0,1,2,1],[2,1,4,0],[2,2,3,1],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,4,1],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,1],[0,3,2,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,1],[0,2,3,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,1],[0,2,2,2]],[[0,1,2,1],[3,1,3,0],[2,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,3,0],[3,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,1],[2,2,1,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,1],[1,3,1,1]],[[0,1,3,1],[2,1,3,0],[2,2,3,2],[0,2,1,1]],[[0,1,2,2],[2,1,3,0],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,1,4,0],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,1,3,0],[2,2,4,2],[0,2,1,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,3],[0,2,1,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,2],[0,2,1,2]],[[0,1,3,1],[2,1,3,0],[2,2,3,2],[0,2,2,0]],[[0,1,2,2],[2,1,3,0],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,1,4,0],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,1,3,0],[2,2,4,2],[0,2,2,0]],[[0,1,2,1],[2,1,3,0],[2,2,3,3],[0,2,2,0]],[[0,1,2,1],[2,1,3,0],[2,2,3,2],[0,3,2,0]],[[0,1,2,1],[2,1,3,0],[2,2,3,2],[0,2,3,0]],[[0,1,2,1],[3,1,3,0],[2,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,3,0],[3,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,2],[2,2,0,1]],[[0,1,2,1],[2,1,3,0],[2,2,3,2],[1,3,0,1]],[[0,1,2,1],[3,1,3,0],[2,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,3,0],[3,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,1,3,0],[2,2,3,2],[2,2,1,0]],[[0,1,2,1],[2,1,3,0],[2,2,3,2],[1,3,1,0]],[[0,1,2,1],[3,1,3,0],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[3,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,4,1,2],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,1,3],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,1,2],[0,3,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,1,2],[0,2,3,1]],[[0,1,2,1],[2,1,3,0],[2,3,1,2],[0,2,2,2]],[[0,1,2,1],[3,1,3,0],[2,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[3,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[2,4,1,2],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,1,2],[2,1,2,1]],[[0,1,2,1],[3,1,3,0],[2,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[3,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,4,2,1],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,2,1],[0,3,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,2,1],[0,2,3,1]],[[0,1,2,1],[2,1,3,0],[2,3,2,1],[0,2,2,2]],[[0,1,2,1],[3,1,3,0],[2,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[3,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[2,4,2,1],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,2,1],[2,1,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,2,3],[0,1,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,2,2],[0,1,3,1]],[[0,1,2,1],[2,1,3,0],[2,3,2,2],[0,1,2,2]],[[0,1,2,1],[3,1,3,0],[2,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,1,3,0],[3,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,1,3,0],[2,4,2,2],[0,2,2,0]],[[0,1,2,1],[2,1,3,0],[2,3,2,2],[0,3,2,0]],[[0,1,2,1],[2,1,3,0],[2,3,2,2],[0,2,3,0]],[[0,1,2,1],[2,1,3,0],[2,3,2,3],[1,0,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,2,2],[1,0,3,1]],[[0,1,2,1],[2,1,3,0],[2,3,2,2],[1,0,2,2]],[[0,1,2,1],[3,1,3,0],[2,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,1,3,0],[3,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,1,3,0],[2,4,2,2],[1,1,2,0]],[[0,1,2,1],[2,1,3,0],[2,3,2,2],[2,1,2,0]],[[0,1,2,1],[3,1,3,0],[2,3,3,0],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[3,3,3,0],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,4,3,0],[0,2,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,0],[0,3,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,0],[0,2,3,1]],[[0,1,2,1],[3,1,3,0],[2,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[3,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[2,4,3,0],[1,1,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,0],[2,1,2,1]],[[0,1,3,1],[2,1,3,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,2],[2,1,3,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[3,1,3,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,1,4,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,1,3,0],[3,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,1,3,0],[2,4,3,1],[0,1,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,4,1],[0,1,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,1],[0,1,3,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,1],[0,1,2,2]],[[0,1,3,1],[2,1,3,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,2],[2,1,3,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[3,1,3,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,1,4,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,1,3,0],[3,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,1,3,0],[2,4,3,1],[0,2,1,1]],[[0,1,2,1],[2,1,3,0],[2,3,4,1],[0,2,1,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,1],[0,3,1,1]],[[0,1,3,1],[2,1,3,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,2],[2,1,3,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[3,1,3,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,1,4,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,1,3,0],[3,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,1,3,0],[2,4,3,1],[1,0,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,4,1],[1,0,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,1],[2,0,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,1],[1,0,3,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,1],[1,0,2,2]],[[0,1,3,1],[2,1,3,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,2],[2,1,3,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[3,1,3,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,1,4,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,1,3,0],[3,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,1,3,0],[2,4,3,1],[1,1,1,1]],[[0,1,2,1],[2,1,3,0],[2,3,4,1],[1,1,1,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,1],[2,1,1,1]],[[0,1,2,1],[3,1,3,0],[2,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,1,3,0],[3,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,1,3,0],[2,4,3,1],[1,2,0,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,2,1,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,1],[2,2,1,3],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[3,2,1,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,2,1,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[2,2,1,2],[1,1,2,2],[0,2,2,0]],[[1,3,2,1],[2,2,1,2],[1,1,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[1,1,2,2],[0,2,1,2]],[[1,2,2,1],[2,2,1,2],[1,1,2,3],[0,2,1,1]],[[1,2,2,1],[2,2,1,3],[1,1,2,2],[0,2,1,1]],[[0,1,3,1],[2,1,3,0],[2,3,3,2],[0,0,2,1]],[[0,1,2,2],[2,1,3,0],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,1,4,0],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,4,2],[0,0,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,3],[0,0,2,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[0,0,2,2]],[[0,1,3,1],[2,1,3,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,2],[2,1,3,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[3,1,3,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,1,4,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,1,3,0],[3,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,1,3,0],[2,4,3,2],[0,1,1,1]],[[0,1,2,1],[2,1,3,0],[2,3,4,2],[0,1,1,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,3],[0,1,1,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[0,1,1,2]],[[0,1,3,1],[2,1,3,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,2],[2,1,3,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[3,1,3,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,1,4,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,1,3,0],[3,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,1,3,0],[2,4,3,2],[0,1,2,0]],[[0,1,2,1],[2,1,3,0],[2,3,4,2],[0,1,2,0]],[[0,1,2,1],[2,1,3,0],[2,3,3,3],[0,1,2,0]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[0,1,3,0]],[[0,1,3,1],[2,1,3,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,2],[2,1,3,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[3,1,3,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,1,4,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,1,3,0],[3,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,1,3,0],[2,4,3,2],[0,2,0,1]],[[0,1,2,1],[2,1,3,0],[2,3,4,2],[0,2,0,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,3],[0,2,0,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[0,3,0,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[0,2,0,2]],[[0,1,3,1],[2,1,3,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,2],[2,1,3,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[3,1,3,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,1,4,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,1,3,0],[3,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,1,3,0],[2,4,3,2],[0,2,1,0]],[[0,1,2,1],[2,1,3,0],[2,3,4,2],[0,2,1,0]],[[0,1,2,1],[2,1,3,0],[2,3,3,3],[0,2,1,0]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,2,1,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[1,1,2,2],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[1,1,2,2],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[1,1,2,2],[0,2,1,1]],[[0,1,3,1],[2,1,3,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,2],[2,1,3,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[3,1,3,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,1,4,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,1,3,0],[3,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,1,3,0],[2,4,3,2],[1,0,1,1]],[[0,1,2,1],[2,1,3,0],[2,3,4,2],[1,0,1,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,3],[1,0,1,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[2,0,1,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[1,0,1,2]],[[0,1,3,1],[2,1,3,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,2],[2,1,3,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[3,1,3,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,1,4,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,1,3,0],[3,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,1,3,0],[2,4,3,2],[1,0,2,0]],[[0,1,2,1],[2,1,3,0],[2,3,4,2],[1,0,2,0]],[[0,1,2,1],[2,1,3,0],[2,3,3,3],[1,0,2,0]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[2,0,2,0]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[1,0,3,0]],[[0,1,3,1],[2,1,3,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,2],[2,1,3,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[3,1,3,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,1,4,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,1,3,0],[3,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,1,3,0],[2,4,3,2],[1,1,0,1]],[[0,1,2,1],[2,1,3,0],[2,3,4,2],[1,1,0,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,3],[1,1,0,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[2,1,0,1]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[1,1,0,2]],[[0,1,3,1],[2,1,3,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,2],[2,1,3,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[3,1,3,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,1,4,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,1,3,0],[3,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,1,3,0],[2,4,3,2],[1,1,1,0]],[[0,1,2,1],[2,1,3,0],[2,3,4,2],[1,1,1,0]],[[0,1,2,1],[2,1,3,0],[2,3,3,3],[1,1,1,0]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,2,1,2],[1,1,1,2],[0,2,2,2]],[[1,2,2,1],[2,2,1,2],[1,1,1,2],[0,2,3,1]],[[1,2,2,1],[2,2,1,2],[1,1,1,2],[0,3,2,1]],[[1,2,2,1],[2,2,1,2],[1,1,1,3],[0,2,2,1]],[[1,2,2,1],[2,2,1,3],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[3,2,1,2],[1,1,1,2],[0,2,2,1]],[[0,1,2,1],[3,1,3,0],[2,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,1,3,0],[3,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,1,3,0],[2,4,3,2],[1,2,0,0]],[[0,1,2,1],[2,1,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,2],[2,2,1,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[1,1,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[1,1,1,2],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,2,1,2],[1,1,0,2],[1,2,2,2]],[[1,2,2,1],[2,2,1,2],[1,1,0,2],[1,2,3,1]],[[1,2,2,1],[2,2,1,2],[1,1,0,2],[1,3,2,1]],[[1,2,2,1],[2,2,1,2],[1,1,0,2],[2,2,2,1]],[[1,2,2,1],[2,2,1,2],[1,1,0,3],[1,2,2,1]],[[1,2,2,1],[2,2,1,3],[1,1,0,2],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[1,1,0,2],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[1,1,0,2],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[1,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[1,1,0,2],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[1,1,0,2],[1,2,2,1]],[[0,1,3,1],[2,1,3,1],[1,2,1,2],[1,2,2,1]],[[0,1,2,2],[2,1,3,1],[1,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,4,1],[1,2,1,2],[1,2,2,1]],[[0,1,3,1],[2,1,3,1],[1,2,2,2],[1,2,1,1]],[[0,1,2,2],[2,1,3,1],[1,2,2,2],[1,2,1,1]],[[0,1,2,1],[2,1,4,1],[1,2,2,2],[1,2,1,1]],[[0,1,3,1],[2,1,3,1],[1,2,2,2],[1,2,2,0]],[[0,1,2,2],[2,1,3,1],[1,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,4,1],[1,2,2,2],[1,2,2,0]],[[0,1,3,1],[2,1,3,1],[1,2,3,0],[1,2,2,1]],[[0,1,2,2],[2,1,3,1],[1,2,3,0],[1,2,2,1]],[[0,1,2,1],[2,1,4,1],[1,2,3,0],[1,2,2,1]],[[0,1,2,1],[2,1,3,1],[1,2,4,0],[1,2,2,1]],[[0,1,2,1],[2,1,3,1],[1,2,3,0],[2,2,2,1]],[[0,1,2,1],[2,1,3,1],[1,2,3,0],[1,3,2,1]],[[0,1,2,1],[2,1,3,1],[1,2,3,0],[1,2,3,1]],[[0,1,2,1],[2,1,3,1],[1,2,3,0],[1,2,2,2]],[[0,1,3,1],[2,1,3,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,2],[2,1,3,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,4,1],[1,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,3,1],[1,2,4,1],[1,2,1,1]],[[0,1,3,1],[2,1,3,1],[1,2,3,1],[1,2,2,0]],[[0,1,2,2],[2,1,3,1],[1,2,3,1],[1,2,2,0]],[[0,1,2,1],[2,1,4,1],[1,2,3,1],[1,2,2,0]],[[0,1,2,1],[2,1,3,1],[1,2,4,1],[1,2,2,0]],[[0,1,2,1],[2,1,3,1],[1,2,3,1],[2,2,2,0]],[[0,1,2,1],[2,1,3,1],[1,2,3,1],[1,3,2,0]],[[0,1,2,1],[2,1,3,1],[1,2,3,1],[1,2,3,0]],[[0,1,3,1],[2,1,3,1],[1,3,0,2],[1,2,2,1]],[[0,1,2,2],[2,1,3,1],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,1,4,1],[1,3,0,2],[1,2,2,1]],[[0,1,3,1],[2,1,3,1],[1,3,1,2],[1,1,2,1]],[[0,1,2,2],[2,1,3,1],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,1,4,1],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,1,3,1],[1,4,2,0],[1,2,2,1]],[[0,1,2,1],[2,1,3,1],[1,3,2,0],[2,2,2,1]],[[0,1,2,1],[2,1,3,1],[1,3,2,0],[1,3,2,1]],[[0,1,2,1],[2,1,3,1],[1,3,2,0],[1,2,3,1]],[[0,1,2,1],[2,1,3,1],[1,3,2,0],[1,2,2,2]],[[0,1,2,1],[2,1,3,1],[1,4,2,1],[1,2,2,0]],[[0,1,2,1],[2,1,3,1],[1,3,2,1],[2,2,2,0]],[[0,1,2,1],[2,1,3,1],[1,3,2,1],[1,3,2,0]],[[0,1,2,1],[2,1,3,1],[1,3,2,1],[1,2,3,0]],[[0,1,3,1],[2,1,3,1],[1,3,2,2],[1,1,1,1]],[[0,1,2,2],[2,1,3,1],[1,3,2,2],[1,1,1,1]],[[0,1,2,1],[2,1,4,1],[1,3,2,2],[1,1,1,1]],[[0,1,3,1],[2,1,3,1],[1,3,2,2],[1,1,2,0]],[[0,1,2,2],[2,1,3,1],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,1,4,1],[1,3,2,2],[1,1,2,0]],[[0,1,3,1],[2,1,3,1],[1,3,2,2],[1,2,0,1]],[[0,1,2,2],[2,1,3,1],[1,3,2,2],[1,2,0,1]],[[0,1,2,1],[2,1,4,1],[1,3,2,2],[1,2,0,1]],[[0,1,3,1],[2,1,3,1],[1,3,2,2],[1,2,1,0]],[[0,1,2,2],[2,1,3,1],[1,3,2,2],[1,2,1,0]],[[0,1,2,1],[2,1,4,1],[1,3,2,2],[1,2,1,0]],[[0,1,3,1],[2,1,3,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,2],[2,1,3,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,1,4,1],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,1,3,1],[1,4,3,0],[1,1,2,1]],[[0,1,2,1],[2,1,3,1],[1,3,4,0],[1,1,2,1]],[[0,1,2,1],[2,1,3,1],[1,3,3,0],[1,1,3,1]],[[0,1,2,1],[2,1,3,1],[1,3,3,0],[1,1,2,2]],[[0,1,3,1],[2,1,3,1],[1,3,3,0],[1,2,1,1]],[[0,1,2,2],[2,1,3,1],[1,3,3,0],[1,2,1,1]],[[0,1,2,1],[2,1,4,1],[1,3,3,0],[1,2,1,1]],[[0,1,2,1],[2,1,3,1],[1,4,3,0],[1,2,1,1]],[[0,1,2,1],[2,1,3,1],[1,3,4,0],[1,2,1,1]],[[0,1,2,1],[2,1,3,1],[1,3,3,0],[2,2,1,1]],[[0,1,2,1],[2,1,3,1],[1,3,3,0],[1,3,1,1]],[[0,1,3,1],[2,1,3,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,2],[2,1,3,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,1,4,1],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,1,3,1],[1,4,3,1],[1,1,1,1]],[[0,1,2,1],[2,1,3,1],[1,3,4,1],[1,1,1,1]],[[0,1,3,1],[2,1,3,1],[1,3,3,1],[1,1,2,0]],[[0,1,2,2],[2,1,3,1],[1,3,3,1],[1,1,2,0]],[[0,1,2,1],[2,1,4,1],[1,3,3,1],[1,1,2,0]],[[0,1,2,1],[2,1,3,1],[1,4,3,1],[1,1,2,0]],[[0,1,2,1],[2,1,3,1],[1,3,4,1],[1,1,2,0]],[[0,1,2,1],[2,1,3,1],[1,3,3,1],[1,1,3,0]],[[0,1,3,1],[2,1,3,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,2],[2,1,3,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,1,4,1],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,1,3,1],[1,4,3,1],[1,2,0,1]],[[0,1,2,1],[2,1,3,1],[1,3,4,1],[1,2,0,1]],[[0,1,2,1],[2,1,3,1],[1,3,3,1],[2,2,0,1]],[[0,1,2,1],[2,1,3,1],[1,3,3,1],[1,3,0,1]],[[0,1,3,1],[2,1,3,1],[1,3,3,1],[1,2,1,0]],[[0,1,2,2],[2,1,3,1],[1,3,3,1],[1,2,1,0]],[[0,1,2,1],[2,1,4,1],[1,3,3,1],[1,2,1,0]],[[0,1,2,1],[2,1,3,1],[1,4,3,1],[1,2,1,0]],[[0,1,2,1],[2,1,3,1],[1,3,4,1],[1,2,1,0]],[[0,1,2,1],[2,1,3,1],[1,3,3,1],[2,2,1,0]],[[0,1,2,1],[2,1,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,1,3],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[3,2,1,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,2],[2,2,1,2],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[2,2,1,2],[1,0,3,1],[1,2,2,0]],[[1,3,2,1],[2,2,1,2],[1,0,3,1],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,3],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[1,0,3,1],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[1,0,3,1],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[1,0,3,1],[1,2,1,1]],[[2,2,2,1],[2,2,1,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[2,2,1,3],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[1,0,3,0],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[1,0,3,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[1,0,3,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[2,2,1,2],[1,0,2,3],[1,2,2,0]],[[1,2,2,1],[2,2,1,3],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[3,2,1,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,2],[2,2,1,2],[1,0,2,2],[1,2,2,0]],[[1,2,3,1],[2,2,1,2],[1,0,2,2],[1,2,2,0]],[[1,3,2,1],[2,2,1,2],[1,0,2,2],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[1,0,2,2],[1,2,1,2]],[[1,2,2,1],[2,2,1,2],[1,0,2,3],[1,2,1,1]],[[1,2,2,1],[2,2,1,3],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[1,0,2,2],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[1,0,2,2],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[1,0,2,2],[1,2,1,1]],[[0,1,3,1],[2,1,3,1],[2,1,1,2],[1,2,2,1]],[[0,1,2,2],[2,1,3,1],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,1,4,1],[2,1,1,2],[1,2,2,1]],[[0,1,3,1],[2,1,3,1],[2,1,2,2],[1,2,1,1]],[[0,1,2,2],[2,1,3,1],[2,1,2,2],[1,2,1,1]],[[0,1,2,1],[2,1,4,1],[2,1,2,2],[1,2,1,1]],[[0,1,3,1],[2,1,3,1],[2,1,2,2],[1,2,2,0]],[[0,1,2,2],[2,1,3,1],[2,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,1,4,1],[2,1,2,2],[1,2,2,0]],[[0,1,3,1],[2,1,3,1],[2,1,3,0],[1,2,2,1]],[[0,1,2,2],[2,1,3,1],[2,1,3,0],[1,2,2,1]],[[0,1,2,1],[3,1,3,1],[2,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,1,4,1],[2,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,1,3,1],[3,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,1,3,1],[2,1,4,0],[1,2,2,1]],[[0,1,2,1],[2,1,3,1],[2,1,3,0],[2,2,2,1]],[[0,1,2,1],[2,1,3,1],[2,1,3,0],[1,3,2,1]],[[0,1,2,1],[2,1,3,1],[2,1,3,0],[1,2,3,1]],[[0,1,2,1],[2,1,3,1],[2,1,3,0],[1,2,2,2]],[[0,1,3,1],[2,1,3,1],[2,1,3,1],[1,2,1,1]],[[0,1,2,2],[2,1,3,1],[2,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,4,1],[2,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,1,3,1],[2,1,4,1],[1,2,1,1]],[[0,1,3,1],[2,1,3,1],[2,1,3,1],[1,2,2,0]],[[0,1,2,2],[2,1,3,1],[2,1,3,1],[1,2,2,0]],[[0,1,2,1],[3,1,3,1],[2,1,3,1],[1,2,2,0]],[[0,1,2,1],[2,1,4,1],[2,1,3,1],[1,2,2,0]],[[0,1,2,1],[2,1,3,1],[3,1,3,1],[1,2,2,0]],[[0,1,2,1],[2,1,3,1],[2,1,4,1],[1,2,2,0]],[[0,1,2,1],[2,1,3,1],[2,1,3,1],[2,2,2,0]],[[0,1,2,1],[2,1,3,1],[2,1,3,1],[1,3,2,0]],[[0,1,2,1],[2,1,3,1],[2,1,3,1],[1,2,3,0]],[[2,2,2,1],[2,2,1,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[2,2,1,2],[1,0,1,2],[1,2,2,2]],[[1,2,2,1],[2,2,1,2],[1,0,1,2],[1,2,3,1]],[[1,2,2,1],[2,2,1,2],[1,0,1,2],[1,3,2,1]],[[1,2,2,1],[2,2,1,2],[1,0,1,2],[2,2,2,1]],[[1,2,2,1],[2,2,1,2],[1,0,1,3],[1,2,2,1]],[[1,2,2,1],[2,2,1,3],[1,0,1,2],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[1,0,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[1,0,1,2],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[1,0,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[1,0,1,2],[1,2,2,1]],[[0,1,3,1],[2,1,3,1],[2,2,0,2],[1,2,2,1]],[[0,1,2,2],[2,1,3,1],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,1,4,1],[2,2,0,2],[1,2,2,1]],[[0,1,3,1],[2,1,3,1],[2,2,1,2],[0,2,2,1]],[[0,1,2,2],[2,1,3,1],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[2,1,4,1],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[3,1,3,1],[2,2,2,0],[1,2,2,1]],[[0,1,2,1],[2,1,3,1],[3,2,2,0],[1,2,2,1]],[[0,1,2,1],[2,1,3,1],[2,2,2,0],[2,2,2,1]],[[0,1,2,1],[2,1,3,1],[2,2,2,0],[1,3,2,1]],[[0,1,2,1],[2,1,3,1],[2,2,2,0],[1,2,3,1]],[[0,1,2,1],[2,1,3,1],[2,2,2,0],[1,2,2,2]],[[0,1,2,1],[3,1,3,1],[2,2,2,1],[1,2,2,0]],[[0,1,2,1],[2,1,3,1],[3,2,2,1],[1,2,2,0]],[[0,1,2,1],[2,1,3,1],[2,2,2,1],[2,2,2,0]],[[0,1,2,1],[2,1,3,1],[2,2,2,1],[1,3,2,0]],[[0,1,2,1],[2,1,3,1],[2,2,2,1],[1,2,3,0]],[[0,1,3,1],[2,1,3,1],[2,2,2,2],[0,2,1,1]],[[0,1,2,2],[2,1,3,1],[2,2,2,2],[0,2,1,1]],[[0,1,2,1],[2,1,4,1],[2,2,2,2],[0,2,1,1]],[[0,1,3,1],[2,1,3,1],[2,2,2,2],[0,2,2,0]],[[0,1,2,2],[2,1,3,1],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[2,1,4,1],[2,2,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[1,0,1,2],[1,2,2,1]],[[0,1,3,1],[2,1,3,1],[2,2,3,0],[0,2,2,1]],[[0,1,2,2],[2,1,3,1],[2,2,3,0],[0,2,2,1]],[[0,1,2,1],[2,1,4,1],[2,2,3,0],[0,2,2,1]],[[0,1,2,1],[2,1,3,1],[2,2,4,0],[0,2,2,1]],[[0,1,2,1],[2,1,3,1],[2,2,3,0],[0,3,2,1]],[[0,1,2,1],[2,1,3,1],[2,2,3,0],[0,2,3,1]],[[0,1,2,1],[2,1,3,1],[2,2,3,0],[0,2,2,2]],[[0,1,2,1],[3,1,3,1],[2,2,3,0],[1,2,1,1]],[[0,1,2,1],[2,1,3,1],[3,2,3,0],[1,2,1,1]],[[0,1,2,1],[2,1,3,1],[2,2,3,0],[2,2,1,1]],[[0,1,2,1],[2,1,3,1],[2,2,3,0],[1,3,1,1]],[[0,1,3,1],[2,1,3,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,2],[2,1,3,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,1,4,1],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,1,3,1],[2,2,4,1],[0,2,1,1]],[[0,1,3,1],[2,1,3,1],[2,2,3,1],[0,2,2,0]],[[0,1,2,2],[2,1,3,1],[2,2,3,1],[0,2,2,0]],[[0,1,2,1],[2,1,4,1],[2,2,3,1],[0,2,2,0]],[[0,1,2,1],[2,1,3,1],[2,2,4,1],[0,2,2,0]],[[0,1,2,1],[2,1,3,1],[2,2,3,1],[0,3,2,0]],[[0,1,2,1],[2,1,3,1],[2,2,3,1],[0,2,3,0]],[[0,1,2,1],[3,1,3,1],[2,2,3,1],[1,2,0,1]],[[0,1,2,1],[2,1,3,1],[3,2,3,1],[1,2,0,1]],[[0,1,2,1],[2,1,3,1],[2,2,3,1],[2,2,0,1]],[[0,1,2,1],[2,1,3,1],[2,2,3,1],[1,3,0,1]],[[0,1,2,1],[3,1,3,1],[2,2,3,1],[1,2,1,0]],[[0,1,2,1],[2,1,3,1],[3,2,3,1],[1,2,1,0]],[[0,1,2,1],[2,1,3,1],[2,2,3,1],[2,2,1,0]],[[0,1,2,1],[2,1,3,1],[2,2,3,1],[1,3,1,0]],[[0,1,3,1],[2,1,3,1],[2,3,0,2],[0,2,2,1]],[[0,1,2,2],[2,1,3,1],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,1,4,1],[2,3,0,2],[0,2,2,1]],[[0,1,3,1],[2,1,3,1],[2,3,1,2],[0,1,2,1]],[[0,1,2,2],[2,1,3,1],[2,3,1,2],[0,1,2,1]],[[0,1,2,1],[2,1,4,1],[2,3,1,2],[0,1,2,1]],[[0,1,3,1],[2,1,3,1],[2,3,1,2],[1,0,2,1]],[[0,1,2,2],[2,1,3,1],[2,3,1,2],[1,0,2,1]],[[0,1,2,1],[2,1,4,1],[2,3,1,2],[1,0,2,1]],[[1,2,2,1],[2,2,1,2],[0,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,2,1,2],[0,3,4,2],[0,0,2,0]],[[1,2,2,1],[2,2,1,3],[0,3,3,2],[0,0,2,0]],[[1,2,2,2],[2,2,1,2],[0,3,3,2],[0,0,2,0]],[[1,2,3,1],[2,2,1,2],[0,3,3,2],[0,0,2,0]],[[1,3,2,1],[2,2,1,2],[0,3,3,2],[0,0,2,0]],[[2,2,2,1],[2,2,1,2],[0,3,3,2],[0,0,2,0]],[[1,2,2,1],[2,2,1,2],[0,3,3,2],[0,0,1,2]],[[1,2,2,1],[2,2,1,2],[0,3,3,3],[0,0,1,1]],[[0,1,2,1],[3,1,3,1],[2,3,2,0],[0,2,2,1]],[[0,1,2,1],[2,1,3,1],[3,3,2,0],[0,2,2,1]],[[0,1,2,1],[2,1,3,1],[2,4,2,0],[0,2,2,1]],[[0,1,2,1],[2,1,3,1],[2,3,2,0],[0,3,2,1]],[[0,1,2,1],[2,1,3,1],[2,3,2,0],[0,2,3,1]],[[0,1,2,1],[2,1,3,1],[2,3,2,0],[0,2,2,2]],[[0,1,2,1],[3,1,3,1],[2,3,2,0],[1,1,2,1]],[[0,1,2,1],[2,1,3,1],[3,3,2,0],[1,1,2,1]],[[0,1,2,1],[2,1,3,1],[2,4,2,0],[1,1,2,1]],[[0,1,2,1],[2,1,3,1],[2,3,2,0],[2,1,2,1]],[[0,1,2,1],[3,1,3,1],[2,3,2,1],[0,2,2,0]],[[0,1,2,1],[2,1,3,1],[3,3,2,1],[0,2,2,0]],[[0,1,2,1],[2,1,3,1],[2,4,2,1],[0,2,2,0]],[[0,1,2,1],[2,1,3,1],[2,3,2,1],[0,3,2,0]],[[0,1,2,1],[2,1,3,1],[2,3,2,1],[0,2,3,0]],[[0,1,2,1],[3,1,3,1],[2,3,2,1],[1,1,2,0]],[[0,1,2,1],[2,1,3,1],[3,3,2,1],[1,1,2,0]],[[0,1,2,1],[2,1,3,1],[2,4,2,1],[1,1,2,0]],[[0,1,2,1],[2,1,3,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,2,1,2],[0,3,4,2],[0,0,1,1]],[[1,2,2,1],[2,2,1,3],[0,3,3,2],[0,0,1,1]],[[1,2,2,2],[2,2,1,2],[0,3,3,2],[0,0,1,1]],[[1,2,3,1],[2,2,1,2],[0,3,3,2],[0,0,1,1]],[[1,3,2,1],[2,2,1,2],[0,3,3,2],[0,0,1,1]],[[2,2,2,1],[2,2,1,2],[0,3,3,2],[0,0,1,1]],[[0,1,3,1],[2,1,3,1],[2,3,2,2],[0,0,2,1]],[[0,1,2,2],[2,1,3,1],[2,3,2,2],[0,0,2,1]],[[0,1,2,1],[2,1,4,1],[2,3,2,2],[0,0,2,1]],[[0,1,3,1],[2,1,3,1],[2,3,2,2],[0,1,1,1]],[[0,1,2,2],[2,1,3,1],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,1,4,1],[2,3,2,2],[0,1,1,1]],[[0,1,3,1],[2,1,3,1],[2,3,2,2],[0,1,2,0]],[[0,1,2,2],[2,1,3,1],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,1,4,1],[2,3,2,2],[0,1,2,0]],[[0,1,3,1],[2,1,3,1],[2,3,2,2],[0,2,0,1]],[[0,1,2,2],[2,1,3,1],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,1,4,1],[2,3,2,2],[0,2,0,1]],[[0,1,3,1],[2,1,3,1],[2,3,2,2],[0,2,1,0]],[[0,1,2,2],[2,1,3,1],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,1,4,1],[2,3,2,2],[0,2,1,0]],[[0,1,3,1],[2,1,3,1],[2,3,2,2],[1,0,1,1]],[[0,1,2,2],[2,1,3,1],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[2,1,4,1],[2,3,2,2],[1,0,1,1]],[[0,1,3,1],[2,1,3,1],[2,3,2,2],[1,0,2,0]],[[0,1,2,2],[2,1,3,1],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[2,1,4,1],[2,3,2,2],[1,0,2,0]],[[0,1,3,1],[2,1,3,1],[2,3,2,2],[1,1,0,1]],[[0,1,2,2],[2,1,3,1],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[2,1,4,1],[2,3,2,2],[1,1,0,1]],[[0,1,3,1],[2,1,3,1],[2,3,2,2],[1,1,1,0]],[[0,1,2,2],[2,1,3,1],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[2,1,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,1,3],[0,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,2,1,2],[0,3,3,1],[1,2,0,0]],[[1,2,2,2],[2,2,1,2],[0,3,3,1],[1,2,0,0]],[[1,2,3,1],[2,2,1,2],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,2,1,2],[0,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,2,1,2],[0,3,3,1],[1,2,0,0]],[[0,1,3,1],[2,1,3,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,2],[2,1,3,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[3,1,3,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,1,4,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,1,3,1],[3,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,1,3,1],[2,4,3,0],[0,1,2,1]],[[0,1,2,1],[2,1,3,1],[2,3,4,0],[0,1,2,1]],[[0,1,2,1],[2,1,3,1],[2,3,3,0],[0,1,3,1]],[[0,1,2,1],[2,1,3,1],[2,3,3,0],[0,1,2,2]],[[0,1,3,1],[2,1,3,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,2],[2,1,3,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[3,1,3,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,1,4,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,1,3,1],[3,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,1,3,1],[2,4,3,0],[0,2,1,1]],[[0,1,2,1],[2,1,3,1],[2,3,4,0],[0,2,1,1]],[[0,1,2,1],[2,1,3,1],[2,3,3,0],[0,3,1,1]],[[0,1,3,1],[2,1,3,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,2],[2,1,3,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[3,1,3,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[2,1,4,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[2,1,3,1],[3,3,3,0],[1,0,2,1]],[[0,1,2,1],[2,1,3,1],[2,4,3,0],[1,0,2,1]],[[0,1,2,1],[2,1,3,1],[2,3,4,0],[1,0,2,1]],[[0,1,2,1],[2,1,3,1],[2,3,3,0],[2,0,2,1]],[[0,1,2,1],[2,1,3,1],[2,3,3,0],[1,0,3,1]],[[0,1,2,1],[2,1,3,1],[2,3,3,0],[1,0,2,2]],[[0,1,3,1],[2,1,3,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,2],[2,1,3,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[3,1,3,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,1,4,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,1,3,1],[3,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,1,3,1],[2,4,3,0],[1,1,1,1]],[[0,1,2,1],[2,1,3,1],[2,3,4,0],[1,1,1,1]],[[0,1,2,1],[2,1,3,1],[2,3,3,0],[2,1,1,1]],[[0,1,2,1],[3,1,3,1],[2,3,3,0],[1,2,0,1]],[[0,1,2,1],[2,1,3,1],[3,3,3,0],[1,2,0,1]],[[0,1,2,1],[2,1,3,1],[2,4,3,0],[1,2,0,1]],[[0,1,2,1],[2,1,3,1],[2,3,3,0],[2,2,0,1]],[[0,1,3,1],[2,1,3,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,2],[2,1,3,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,1,4,1],[2,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,1,3,1],[2,3,4,1],[0,0,2,1]],[[0,1,3,1],[2,1,3,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,2],[2,1,3,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[3,1,3,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,1,4,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,1,3,1],[3,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,1,3,1],[2,4,3,1],[0,1,1,1]],[[0,1,2,1],[2,1,3,1],[2,3,4,1],[0,1,1,1]],[[0,1,3,1],[2,1,3,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,2],[2,1,3,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[3,1,3,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,1,4,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,1,3,1],[3,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,1,3,1],[2,4,3,1],[0,1,2,0]],[[0,1,2,1],[2,1,3,1],[2,3,4,1],[0,1,2,0]],[[0,1,2,1],[2,1,3,1],[2,3,3,1],[0,1,3,0]],[[0,1,3,1],[2,1,3,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,2],[2,1,3,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[3,1,3,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,1,4,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,1,3,1],[3,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,1,3,1],[2,4,3,1],[0,2,0,1]],[[0,1,2,1],[2,1,3,1],[2,3,4,1],[0,2,0,1]],[[0,1,2,1],[2,1,3,1],[2,3,3,1],[0,3,0,1]],[[0,1,3,1],[2,1,3,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,2],[2,1,3,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[3,1,3,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,1,4,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,1,3,1],[3,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,1,3,1],[2,4,3,1],[0,2,1,0]],[[0,1,2,1],[2,1,3,1],[2,3,4,1],[0,2,1,0]],[[0,1,2,1],[2,1,3,1],[2,3,3,1],[0,3,1,0]],[[0,1,3,1],[2,1,3,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,2],[2,1,3,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[3,1,3,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,1,4,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,1,3,1],[3,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,1,3,1],[2,4,3,1],[1,0,1,1]],[[0,1,2,1],[2,1,3,1],[2,3,4,1],[1,0,1,1]],[[0,1,2,1],[2,1,3,1],[2,3,3,1],[2,0,1,1]],[[0,1,3,1],[2,1,3,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,2],[2,1,3,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[3,1,3,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[2,1,4,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[2,1,3,1],[3,3,3,1],[1,0,2,0]],[[0,1,2,1],[2,1,3,1],[2,4,3,1],[1,0,2,0]],[[0,1,2,1],[2,1,3,1],[2,3,4,1],[1,0,2,0]],[[0,1,2,1],[2,1,3,1],[2,3,3,1],[2,0,2,0]],[[0,1,2,1],[2,1,3,1],[2,3,3,1],[1,0,3,0]],[[0,1,3,1],[2,1,3,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,2],[2,1,3,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[3,1,3,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[2,1,4,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[2,1,3,1],[3,3,3,1],[1,1,0,1]],[[0,1,2,1],[2,1,3,1],[2,4,3,1],[1,1,0,1]],[[0,1,2,1],[2,1,3,1],[2,3,4,1],[1,1,0,1]],[[0,1,2,1],[2,1,3,1],[2,3,3,1],[2,1,0,1]],[[0,1,3,1],[2,1,3,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,2],[2,1,3,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[3,1,3,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[2,1,4,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[2,1,3,1],[3,3,3,1],[1,1,1,0]],[[0,1,2,1],[2,1,3,1],[2,4,3,1],[1,1,1,0]],[[0,1,2,1],[2,1,3,1],[2,3,4,1],[1,1,1,0]],[[0,1,2,1],[2,1,3,1],[2,3,3,1],[2,1,1,0]],[[0,1,2,1],[3,1,3,1],[2,3,3,1],[1,2,0,0]],[[0,1,2,1],[2,1,3,1],[3,3,3,1],[1,2,0,0]],[[0,1,2,1],[2,1,3,1],[2,4,3,1],[1,2,0,0]],[[0,1,2,1],[2,1,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,2,1,3],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[3,2,1,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,2],[2,2,1,2],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[2,2,1,2],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[2,2,1,2],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[2,2,1,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[2,2,1,3],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[3,2,1,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,2],[2,2,1,2],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[2,2,1,2],[0,3,2,1],[1,2,0,1]],[[0,1,3,1],[2,1,3,1],[2,3,3,2],[0,1,0,1]],[[0,1,2,2],[2,1,3,1],[2,3,3,2],[0,1,0,1]],[[0,1,2,1],[2,1,4,1],[2,3,3,2],[0,1,0,1]],[[1,3,2,1],[2,2,1,2],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,2,1,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[2,2,1,3],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[3,2,1,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,2],[2,2,1,2],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[2,2,1,2],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,2,1,2],[0,3,2,1],[1,1,2,0]],[[2,2,2,1],[2,2,1,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[2,2,1,3],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[0,3,2,1],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[2,2,1,3],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[0,3,2,0],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[2,2,1,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[2,2,1,3],[0,3,2,0],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[0,3,2,0],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[2,2,1,2],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[0,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[0,3,2,0],[1,1,2,1]],[[0,1,3,1],[2,1,3,1],[2,3,3,2],[1,0,0,1]],[[0,1,2,2],[2,1,3,1],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[2,1,4,1],[2,3,3,2],[1,0,0,1]],[[1,2,2,1],[2,2,1,2],[0,3,1,3],[1,2,1,0]],[[1,2,2,1],[2,2,1,3],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[3,2,1,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,2],[2,2,1,2],[0,3,1,2],[1,2,1,0]],[[1,2,3,1],[2,2,1,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,1],[2,2,1,2],[0,3,1,2],[1,2,1,0]],[[2,2,2,1],[2,2,1,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[2,2,1,2],[0,3,1,2],[1,2,0,2]],[[1,2,2,1],[2,2,1,2],[0,3,1,3],[1,2,0,1]],[[1,2,2,1],[2,2,1,3],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[3,2,1,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,2],[2,2,1,2],[0,3,1,2],[1,2,0,1]],[[1,2,3,1],[2,2,1,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[2,2,1,2],[0,3,1,2],[1,2,0,1]],[[2,2,2,1],[2,2,1,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[2,2,1,2],[0,3,1,3],[1,1,2,0]],[[1,2,2,1],[2,2,1,3],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,2,1,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,2],[2,2,1,2],[0,3,1,2],[1,1,2,0]],[[1,2,3,1],[2,2,1,2],[0,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,2,1,2],[0,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,2,1,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,2,1,2],[0,3,1,2],[1,1,1,2]],[[1,2,2,1],[2,2,1,2],[0,3,1,3],[1,1,1,1]],[[1,2,2,1],[2,2,1,3],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[0,3,1,2],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[0,3,1,2],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[0,3,1,2],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[2,2,1,3],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[3,2,1,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,2],[2,2,1,2],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[2,2,1,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,2,1,2],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,3],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[0,3,1,0],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[2,2,1,2],[0,3,0,3],[1,2,2,0]],[[1,2,2,1],[2,2,1,3],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[3,2,1,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,2],[2,2,1,2],[0,3,0,2],[1,2,2,0]],[[1,2,3,1],[2,2,1,2],[0,3,0,2],[1,2,2,0]],[[1,3,2,1],[2,2,1,2],[0,3,0,2],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[0,3,0,2],[1,2,1,2]],[[1,2,2,1],[2,2,1,2],[0,3,0,3],[1,2,1,1]],[[1,2,2,1],[2,2,1,3],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[0,3,0,2],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[0,3,0,2],[1,2,1,1]],[[2,2,2,1],[2,2,1,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[2,2,1,2],[0,3,0,2],[1,1,2,2]],[[0,1,2,2],[2,1,3,2],[0,0,3,2],[1,2,2,1]],[[0,1,2,1],[2,1,3,3],[0,0,3,2],[1,2,2,1]],[[0,1,2,1],[2,1,3,2],[0,0,3,3],[1,2,2,1]],[[0,1,2,1],[2,1,3,2],[0,0,3,2],[1,2,3,1]],[[0,1,2,1],[2,1,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,2,1,2],[0,3,0,2],[1,1,3,1]],[[1,2,2,1],[2,2,1,2],[0,3,0,3],[1,1,2,1]],[[1,2,2,1],[2,2,1,3],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[0,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,2,1,2],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[0,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[2,2,1,3],[0,3,0,1],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[0,3,0,1],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[0,3,0,1],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[0,3,0,1],[1,2,2,1]],[[0,0,0,1],[0,1,3,2],[2,3,3,2],[2,2,2,1]],[[0,1,2,2],[2,1,3,2],[1,0,3,2],[0,2,2,1]],[[0,1,2,1],[2,1,3,3],[1,0,3,2],[0,2,2,1]],[[0,1,2,1],[2,1,3,2],[1,0,3,3],[0,2,2,1]],[[0,1,2,1],[2,1,3,2],[1,0,3,2],[0,2,3,1]],[[0,1,2,1],[2,1,3,2],[1,0,3,2],[0,2,2,2]],[[0,1,3,1],[2,1,3,2],[1,2,3,0],[1,2,2,0]],[[0,1,2,2],[2,1,3,2],[1,2,3,0],[1,2,2,0]],[[0,1,2,1],[2,1,4,2],[1,2,3,0],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[0,2,3,3],[1,0,2,0]],[[1,2,2,1],[2,2,1,2],[0,2,4,2],[1,0,2,0]],[[1,2,2,1],[2,2,1,3],[0,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,1,2],[0,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,1,2],[0,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,1,2],[0,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,1,2],[0,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,1,2],[0,2,3,2],[1,0,1,2]],[[1,2,2,1],[2,2,1,2],[0,2,3,3],[1,0,1,1]],[[1,2,2,1],[2,2,1,2],[0,2,4,2],[1,0,1,1]],[[1,2,2,1],[2,2,1,3],[0,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,1,2],[0,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,1,2],[0,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,1,2],[0,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,1,2],[0,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,2,1,2],[0,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[0,2,4,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,3],[0,2,3,2],[0,2,1,0]],[[1,2,2,2],[2,2,1,2],[0,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,2,1,2],[0,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,1,2],[0,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,1,2],[0,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,2],[0,2,3,2],[0,2,0,2]],[[1,2,2,1],[2,2,1,2],[0,2,3,3],[0,2,0,1]],[[1,2,2,1],[2,2,1,2],[0,2,4,2],[0,2,0,1]],[[1,2,2,1],[2,2,1,3],[0,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,2,1,2],[0,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,2,1,2],[0,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,1,2],[0,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,1,2],[0,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,2,1,2],[0,2,3,2],[0,1,3,0]],[[1,2,2,1],[2,2,1,2],[0,2,3,3],[0,1,2,0]],[[1,2,2,1],[2,2,1,2],[0,2,4,2],[0,1,2,0]],[[1,2,2,1],[2,2,1,3],[0,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,1,2],[0,2,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,1,2],[0,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,1,2],[0,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,1,2],[0,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,1,2],[0,2,3,2],[0,1,1,2]],[[1,2,2,1],[2,2,1,2],[0,2,3,3],[0,1,1,1]],[[1,2,2,1],[2,2,1,2],[0,2,4,2],[0,1,1,1]],[[1,2,2,1],[2,2,1,3],[0,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,1,2],[0,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,1,2],[0,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,1,2],[0,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,1,2],[0,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,1,2],[0,2,3,2],[0,0,2,2]],[[1,2,2,1],[2,2,1,2],[0,2,3,3],[0,0,2,1]],[[1,2,2,1],[2,2,1,2],[0,2,4,2],[0,0,2,1]],[[1,2,2,1],[2,2,1,3],[0,2,3,2],[0,0,2,1]],[[1,2,2,2],[2,2,1,2],[0,2,3,2],[0,0,2,1]],[[1,2,3,1],[2,2,1,2],[0,2,3,2],[0,0,2,1]],[[1,3,2,1],[2,2,1,2],[0,2,3,2],[0,0,2,1]],[[2,2,2,1],[2,2,1,2],[0,2,3,2],[0,0,2,1]],[[0,1,3,1],[2,1,3,2],[1,3,3,0],[1,1,2,0]],[[0,1,2,2],[2,1,3,2],[1,3,3,0],[1,1,2,0]],[[0,1,2,1],[2,1,4,2],[1,3,3,0],[1,1,2,0]],[[0,1,3,1],[2,1,3,2],[1,3,3,0],[1,2,0,1]],[[0,1,2,2],[2,1,3,2],[1,3,3,0],[1,2,0,1]],[[0,1,2,1],[2,1,4,2],[1,3,3,0],[1,2,0,1]],[[0,1,3,1],[2,1,3,2],[1,3,3,0],[1,2,1,0]],[[0,1,2,2],[2,1,3,2],[1,3,3,0],[1,2,1,0]],[[0,1,2,1],[2,1,4,2],[1,3,3,0],[1,2,1,0]],[[1,2,2,1],[2,2,1,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,1,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[2,2,1,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[2,2,1,2],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[2,2,1,2],[0,2,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,1,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,1,3],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,1,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[2,2,1,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[2,2,1,2],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,1,2],[0,2,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,1,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[2,2,1,3],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[3,2,1,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[2,2,1,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[2,2,1,2],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[2,2,1,2],[0,2,3,1],[1,1,2,0]],[[2,2,2,1],[2,2,1,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[2,2,1,3],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[0,2,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[2,2,1,2],[0,2,3,1],[0,1,2,2]],[[1,2,2,1],[2,2,1,2],[0,2,3,1],[0,1,3,1]],[[1,2,2,1],[2,2,1,2],[0,2,4,1],[0,1,2,1]],[[1,2,2,1],[2,2,1,3],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[0,2,3,0],[1,2,1,1]],[[2,2,2,1],[2,2,1,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[2,2,1,3],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[2,2,1,2],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[0,2,3,0],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[2,2,1,2],[0,2,2,3],[1,2,1,0]],[[1,2,2,1],[2,2,1,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[3,2,1,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[2,2,1,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[2,2,1,2],[0,2,2,2],[1,2,1,0]],[[1,3,2,1],[2,2,1,2],[0,2,2,2],[1,2,1,0]],[[2,2,2,1],[2,2,1,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[2,2,1,2],[0,2,2,2],[1,2,0,2]],[[1,2,2,1],[2,2,1,2],[0,2,2,3],[1,2,0,1]],[[1,2,2,1],[2,2,1,3],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[3,2,1,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,2],[2,2,1,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[2,2,1,2],[0,2,2,2],[1,2,0,1]],[[1,3,2,1],[2,2,1,2],[0,2,2,2],[1,2,0,1]],[[2,2,2,1],[2,2,1,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[2,2,1,2],[0,2,2,3],[1,1,2,0]],[[1,2,2,1],[2,2,1,3],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[3,2,1,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[2,2,1,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[2,2,1,2],[0,2,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,1,2],[0,2,2,2],[1,1,2,0]],[[2,2,2,1],[2,2,1,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[2,2,1,2],[0,2,2,2],[1,1,1,2]],[[1,2,2,1],[2,2,1,2],[0,2,2,3],[1,1,1,1]],[[1,2,2,1],[2,2,1,3],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[3,2,1,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[2,2,1,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[2,2,1,2],[0,2,2,2],[1,1,1,1]],[[1,3,2,1],[2,2,1,2],[0,2,2,2],[1,1,1,1]],[[2,2,2,1],[2,2,1,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[2,2,1,2],[0,2,2,2],[0,1,2,2]],[[1,2,2,1],[2,2,1,2],[0,2,2,2],[0,1,3,1]],[[1,2,2,1],[2,2,1,2],[0,2,2,3],[0,1,2,1]],[[1,2,2,1],[2,2,1,3],[0,2,2,2],[0,1,2,1]],[[1,2,2,2],[2,2,1,2],[0,2,2,2],[0,1,2,1]],[[1,2,3,1],[2,2,1,2],[0,2,2,2],[0,1,2,1]],[[1,3,2,1],[2,2,1,2],[0,2,2,2],[0,1,2,1]],[[2,2,2,1],[2,2,1,2],[0,2,2,2],[0,1,2,1]],[[1,2,2,1],[2,2,1,2],[0,2,1,2],[1,1,2,2]],[[1,2,2,1],[2,2,1,2],[0,2,1,2],[1,1,3,1]],[[1,2,2,1],[2,2,1,2],[0,2,1,3],[1,1,2,1]],[[1,2,2,1],[2,2,1,3],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[3,2,1,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[2,2,1,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[2,2,1,2],[0,2,1,2],[1,1,2,1]],[[1,3,2,1],[2,2,1,2],[0,2,1,2],[1,1,2,1]],[[2,2,2,1],[2,2,1,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[2,2,1,2],[0,2,0,2],[1,2,2,2]],[[1,2,2,1],[2,2,1,2],[0,2,0,2],[1,2,3,1]],[[1,2,2,1],[2,2,1,2],[0,2,0,2],[1,3,2,1]],[[1,2,2,1],[2,2,1,2],[0,2,0,2],[2,2,2,1]],[[1,2,2,1],[2,2,1,2],[0,2,0,3],[1,2,2,1]],[[1,2,2,1],[2,2,1,3],[0,2,0,2],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[0,2,0,2],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[0,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[0,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[0,2,0,2],[1,2,2,1]],[[0,1,3,1],[2,1,3,2],[2,1,3,0],[1,2,2,0]],[[0,1,2,2],[2,1,3,2],[2,1,3,0],[1,2,2,0]],[[0,1,2,1],[2,1,4,2],[2,1,3,0],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[0,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,2,1,2],[0,1,3,3],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[0,1,4,2],[0,2,2,0]],[[1,2,2,1],[2,2,1,3],[0,1,3,2],[0,2,2,0]],[[1,2,2,2],[2,2,1,2],[0,1,3,2],[0,2,2,0]],[[1,2,3,1],[2,2,1,2],[0,1,3,2],[0,2,2,0]],[[1,3,2,1],[2,2,1,2],[0,1,3,2],[0,2,2,0]],[[2,2,2,1],[2,2,1,2],[0,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,2,1,2],[0,1,3,2],[0,2,1,2]],[[1,2,2,1],[2,2,1,2],[0,1,3,3],[0,2,1,1]],[[1,2,2,1],[2,2,1,2],[0,1,4,2],[0,2,1,1]],[[1,2,2,1],[2,2,1,3],[0,1,3,2],[0,2,1,1]],[[1,2,2,2],[2,2,1,2],[0,1,3,2],[0,2,1,1]],[[1,2,3,1],[2,2,1,2],[0,1,3,2],[0,2,1,1]],[[1,3,2,1],[2,2,1,2],[0,1,3,2],[0,2,1,1]],[[2,2,2,1],[2,2,1,2],[0,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,2,1,3],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[3,2,1,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[2,2,1,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[2,2,1,2],[0,1,3,1],[1,2,2,0]],[[1,3,2,1],[2,2,1,2],[0,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,3],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[0,1,3,1],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[0,1,3,1],[1,2,1,1]],[[2,2,2,1],[2,2,1,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[2,2,1,2],[0,1,3,1],[0,2,2,2]],[[1,2,2,1],[2,2,1,2],[0,1,3,1],[0,2,3,1]],[[1,2,2,1],[2,2,1,2],[0,1,4,1],[0,2,2,1]],[[1,2,2,1],[2,2,1,3],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[0,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[2,2,1,2],[0,1,2,3],[1,2,2,0]],[[1,2,2,1],[2,2,1,3],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[3,2,1,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[2,2,1,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,2,1,2],[0,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,2,1,2],[0,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,2,1,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,2,1,2],[0,1,2,2],[1,2,1,2]],[[1,2,2,1],[2,2,1,2],[0,1,2,3],[1,2,1,1]],[[1,2,2,1],[2,2,1,3],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[3,2,1,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[2,2,1,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[2,2,1,2],[0,1,2,2],[1,2,1,1]],[[1,3,2,1],[2,2,1,2],[0,1,2,2],[1,2,1,1]],[[2,2,2,1],[2,2,1,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[2,2,1,2],[0,1,2,2],[0,2,2,2]],[[1,2,2,1],[2,2,1,2],[0,1,2,2],[0,2,3,1]],[[1,2,2,1],[2,2,1,2],[0,1,2,3],[0,2,2,1]],[[0,1,3,1],[2,1,3,2],[2,2,3,0],[0,2,2,0]],[[0,1,2,2],[2,1,3,2],[2,2,3,0],[0,2,2,0]],[[0,1,2,1],[2,1,4,2],[2,2,3,0],[0,2,2,0]],[[1,2,2,1],[2,2,1,3],[0,1,2,2],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[0,1,2,2],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[0,1,2,2],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[0,1,2,2],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[0,1,2,2],[0,2,2,1]],[[1,2,2,1],[2,2,1,2],[0,1,1,2],[1,2,2,2]],[[1,2,2,1],[2,2,1,2],[0,1,1,2],[1,2,3,1]],[[1,2,2,1],[2,2,1,2],[0,1,1,2],[1,3,2,1]],[[1,2,2,1],[2,2,1,2],[0,1,1,2],[2,2,2,1]],[[1,2,2,1],[2,2,1,2],[0,1,1,3],[1,2,2,1]],[[1,2,2,1],[2,2,1,3],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[3,2,1,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,1,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,2,1,2],[0,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,1,2],[0,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,1,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[2,2,1,2],[0,0,3,2],[0,2,2,2]],[[1,2,2,1],[2,2,1,2],[0,0,3,2],[0,2,3,1]],[[1,2,2,1],[2,2,1,2],[0,0,3,3],[0,2,2,1]],[[1,2,2,1],[2,2,1,3],[0,0,3,2],[0,2,2,1]],[[1,2,2,2],[2,2,1,2],[0,0,3,2],[0,2,2,1]],[[1,2,3,1],[2,2,1,2],[0,0,3,2],[0,2,2,1]],[[1,3,2,1],[2,2,1,2],[0,0,3,2],[0,2,2,1]],[[2,2,2,1],[2,2,1,2],[0,0,3,2],[0,2,2,1]],[[1,2,2,1],[2,2,1,1],[3,3,3,1],[1,0,1,0]],[[1,2,2,1],[3,2,1,1],[2,3,3,1],[1,0,1,0]],[[1,2,2,2],[2,2,1,1],[2,3,3,1],[1,0,1,0]],[[1,2,3,1],[2,2,1,1],[2,3,3,1],[1,0,1,0]],[[1,3,2,1],[2,2,1,1],[2,3,3,1],[1,0,1,0]],[[2,2,2,1],[2,2,1,1],[2,3,3,1],[1,0,1,0]],[[1,2,2,1],[2,2,1,1],[3,3,3,1],[1,0,0,1]],[[1,2,2,1],[3,2,1,1],[2,3,3,1],[1,0,0,1]],[[1,2,2,2],[2,2,1,1],[2,3,3,1],[1,0,0,1]],[[1,2,3,1],[2,2,1,1],[2,3,3,1],[1,0,0,1]],[[1,3,2,1],[2,2,1,1],[2,3,3,1],[1,0,0,1]],[[2,2,2,1],[2,2,1,1],[2,3,3,1],[1,0,0,1]],[[1,2,2,1],[2,2,1,1],[3,3,3,0],[1,0,1,1]],[[1,2,2,1],[3,2,1,1],[2,3,3,0],[1,0,1,1]],[[1,2,2,2],[2,2,1,1],[2,3,3,0],[1,0,1,1]],[[1,2,3,1],[2,2,1,1],[2,3,3,0],[1,0,1,1]],[[1,3,2,1],[2,2,1,1],[2,3,3,0],[1,0,1,1]],[[2,2,2,1],[2,2,1,1],[2,3,3,0],[1,0,1,1]],[[1,2,2,1],[2,2,1,1],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[2,2,1,1],[2,3,0,1],[2,2,2,0]],[[1,2,2,1],[2,2,1,1],[3,3,0,1],[1,2,2,0]],[[1,2,2,1],[3,2,1,1],[2,3,0,1],[1,2,2,0]],[[1,3,2,1],[2,2,1,1],[2,3,0,1],[1,2,2,0]],[[2,2,2,1],[2,2,1,1],[2,3,0,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,1],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[2,2,1,1],[2,3,0,0],[2,2,2,1]],[[1,2,2,1],[2,2,1,1],[3,3,0,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,1],[2,3,0,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,1],[2,3,0,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,1],[2,3,0,0],[1,2,2,1]],[[0,1,3,1],[2,1,3,2],[2,3,3,0],[0,1,1,1]],[[0,1,2,2],[2,1,3,2],[2,3,3,0],[0,1,1,1]],[[0,1,2,1],[2,1,4,2],[2,3,3,0],[0,1,1,1]],[[0,1,3,1],[2,1,3,2],[2,3,3,0],[0,1,2,0]],[[0,1,2,2],[2,1,3,2],[2,3,3,0],[0,1,2,0]],[[0,1,2,1],[2,1,4,2],[2,3,3,0],[0,1,2,0]],[[0,1,3,1],[2,1,3,2],[2,3,3,0],[0,2,0,1]],[[0,1,2,2],[2,1,3,2],[2,3,3,0],[0,2,0,1]],[[0,1,2,1],[2,1,4,2],[2,3,3,0],[0,2,0,1]],[[0,1,3,1],[2,1,3,2],[2,3,3,0],[0,2,1,0]],[[0,1,2,2],[2,1,3,2],[2,3,3,0],[0,2,1,0]],[[0,1,2,1],[2,1,4,2],[2,3,3,0],[0,2,1,0]],[[0,1,3,1],[2,1,3,2],[2,3,3,0],[1,0,1,1]],[[0,1,2,2],[2,1,3,2],[2,3,3,0],[1,0,1,1]],[[0,1,2,1],[2,1,4,2],[2,3,3,0],[1,0,1,1]],[[0,1,3,1],[2,1,3,2],[2,3,3,0],[1,0,2,0]],[[0,1,2,2],[2,1,3,2],[2,3,3,0],[1,0,2,0]],[[0,1,2,1],[2,1,4,2],[2,3,3,0],[1,0,2,0]],[[0,1,3,1],[2,1,3,2],[2,3,3,0],[1,1,0,1]],[[0,1,2,2],[2,1,3,2],[2,3,3,0],[1,1,0,1]],[[0,1,2,1],[2,1,4,2],[2,3,3,0],[1,1,0,1]],[[0,1,3,1],[2,1,3,2],[2,3,3,0],[1,1,1,0]],[[0,1,2,2],[2,1,3,2],[2,3,3,0],[1,1,1,0]],[[0,1,2,1],[2,1,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,2,1,1],[2,2,3,1],[2,2,0,0]],[[1,2,2,1],[2,2,1,1],[3,2,3,1],[1,2,0,0]],[[1,2,2,1],[3,2,1,1],[2,2,3,1],[1,2,0,0]],[[1,2,2,2],[2,2,1,1],[2,2,3,1],[1,2,0,0]],[[1,2,3,1],[2,2,1,1],[2,2,3,1],[1,2,0,0]],[[1,3,2,1],[2,2,1,1],[2,2,3,1],[1,2,0,0]],[[2,2,2,1],[2,2,1,1],[2,2,3,1],[1,2,0,0]],[[1,2,2,1],[2,2,1,1],[2,2,3,1],[2,1,1,0]],[[1,2,2,1],[2,2,1,1],[3,2,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,1,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,2,1,1],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,1,1],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,1,1],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,1,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,1,1],[2,2,3,1],[2,1,0,1]],[[1,2,2,1],[2,2,1,1],[3,2,3,1],[1,1,0,1]],[[1,2,2,1],[3,2,1,1],[2,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,1,1],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,1,1],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,1,1],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,1,1],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,1,1],[2,2,3,1],[2,0,2,0]],[[1,2,2,1],[2,2,1,1],[3,2,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,1,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,2,1,1],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,1,1],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,1,1],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,1,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,1,1],[2,2,3,1],[2,0,1,1]],[[1,2,2,1],[2,2,1,1],[3,2,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,1,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,2,1,1],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,1,1],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,1,1],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,1,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,1,1],[3,2,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,1,1],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,1,1],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,1,1],[2,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,1,1],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,1,1],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,1,1],[3,2,3,1],[0,2,0,1]],[[1,2,2,1],[3,2,1,1],[2,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,1,1],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,1,1],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,1,1],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,1,1],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,1,1],[3,2,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,1,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,1,1],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,1,1],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,1,1],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,1,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,1,1],[3,2,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,1,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,1,1],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,1,1],[2,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,1,1],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,1,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,2,1,1],[2,2,3,0],[2,2,0,1]],[[1,2,2,1],[2,2,1,1],[3,2,3,0],[1,2,0,1]],[[1,2,2,1],[3,2,1,1],[2,2,3,0],[1,2,0,1]],[[1,2,2,2],[2,2,1,1],[2,2,3,0],[1,2,0,1]],[[1,2,3,1],[2,2,1,1],[2,2,3,0],[1,2,0,1]],[[1,3,2,1],[2,2,1,1],[2,2,3,0],[1,2,0,1]],[[2,2,2,1],[2,2,1,1],[2,2,3,0],[1,2,0,1]],[[1,2,2,1],[2,2,1,1],[2,2,3,0],[2,1,1,1]],[[1,2,2,1],[2,2,1,1],[3,2,3,0],[1,1,1,1]],[[1,2,2,1],[3,2,1,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,2],[2,2,1,1],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,1,1],[2,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,1,1],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,1,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,1,1],[2,2,3,0],[2,0,2,1]],[[1,2,2,1],[2,2,1,1],[3,2,3,0],[1,0,2,1]],[[1,2,2,1],[3,2,1,1],[2,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,1,1],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,1,1],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,1,1],[2,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,1,1],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,1,1],[3,2,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,1,1],[2,2,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,1,1],[2,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,1,1],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,1,1],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,1,1],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,1,1],[3,2,3,0],[0,1,2,1]],[[1,2,2,1],[3,2,1,1],[2,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,1,1],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,1,1],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,1,1],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,1,1],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,1,1],[2,2,2,1],[2,1,2,0]],[[1,2,2,1],[2,2,1,1],[3,2,2,1],[1,1,2,0]],[[1,2,2,1],[3,2,1,1],[2,2,2,1],[1,1,2,0]],[[1,2,2,2],[2,2,1,1],[2,2,2,1],[1,1,2,0]],[[1,2,3,1],[2,2,1,1],[2,2,2,1],[1,1,2,0]],[[1,3,2,1],[2,2,1,1],[2,2,2,1],[1,1,2,0]],[[2,2,2,1],[2,2,1,1],[2,2,2,1],[1,1,2,0]],[[1,2,2,1],[2,2,1,1],[3,2,2,1],[0,2,2,0]],[[1,2,2,1],[3,2,1,1],[2,2,2,1],[0,2,2,0]],[[1,2,2,2],[2,2,1,1],[2,2,2,1],[0,2,2,0]],[[1,2,3,1],[2,2,1,1],[2,2,2,1],[0,2,2,0]],[[1,3,2,1],[2,2,1,1],[2,2,2,1],[0,2,2,0]],[[2,2,2,1],[2,2,1,1],[2,2,2,1],[0,2,2,0]],[[1,2,2,1],[2,2,1,1],[2,2,2,0],[2,1,2,1]],[[1,2,2,1],[2,2,1,1],[3,2,2,0],[1,1,2,1]],[[1,2,2,1],[3,2,1,1],[2,2,2,0],[1,1,2,1]],[[1,2,2,2],[2,2,1,1],[2,2,2,0],[1,1,2,1]],[[1,2,3,1],[2,2,1,1],[2,2,2,0],[1,1,2,1]],[[1,3,2,1],[2,2,1,1],[2,2,2,0],[1,1,2,1]],[[2,2,2,1],[2,2,1,1],[2,2,2,0],[1,1,2,1]],[[1,2,2,1],[2,2,1,1],[3,2,2,0],[0,2,2,1]],[[1,2,2,1],[3,2,1,1],[2,2,2,0],[0,2,2,1]],[[1,2,2,2],[2,2,1,1],[2,2,2,0],[0,2,2,1]],[[1,2,3,1],[2,2,1,1],[2,2,2,0],[0,2,2,1]],[[1,3,2,1],[2,2,1,1],[2,2,2,0],[0,2,2,1]],[[2,2,2,1],[2,2,1,1],[2,2,2,0],[0,2,2,1]],[[1,2,2,1],[2,2,1,1],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[2,2,1,1],[3,2,0,2],[1,1,2,1]],[[1,2,2,1],[3,2,1,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,2],[2,2,1,1],[2,2,0,2],[1,1,2,1]],[[1,2,3,1],[2,2,1,1],[2,2,0,2],[1,1,2,1]],[[1,3,2,1],[2,2,1,1],[2,2,0,2],[1,1,2,1]],[[2,2,2,1],[2,2,1,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,2,1,1],[3,2,0,2],[0,2,2,1]],[[1,2,2,1],[3,2,1,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,1,1],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,2,1,1],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,1,1],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,1,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,2,1,1],[2,1,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,1,1],[2,1,3,1],[2,2,1,0]],[[1,2,2,1],[2,2,1,1],[3,1,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,1,1],[2,1,3,1],[1,2,1,0]],[[1,2,2,2],[2,2,1,1],[2,1,3,1],[1,2,1,0]],[[1,2,3,1],[2,2,1,1],[2,1,3,1],[1,2,1,0]],[[1,3,2,1],[2,2,1,1],[2,1,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,1,1],[2,1,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,1,1],[2,1,3,1],[1,3,0,1]],[[1,2,2,1],[2,2,1,1],[2,1,3,1],[2,2,0,1]],[[1,2,2,1],[2,2,1,1],[3,1,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,1,1],[2,1,3,1],[1,2,0,1]],[[1,2,2,2],[2,2,1,1],[2,1,3,1],[1,2,0,1]],[[1,2,3,1],[2,2,1,1],[2,1,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,1,1],[2,1,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,1,1],[2,1,3,1],[1,2,0,1]],[[1,2,2,1],[2,2,1,1],[2,1,3,0],[1,3,1,1]],[[1,2,2,1],[2,2,1,1],[2,1,3,0],[2,2,1,1]],[[1,2,2,1],[2,2,1,1],[3,1,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,1,1],[2,1,3,0],[1,2,1,1]],[[1,2,2,2],[2,2,1,1],[2,1,3,0],[1,2,1,1]],[[1,2,3,1],[2,2,1,1],[2,1,3,0],[1,2,1,1]],[[1,3,2,1],[2,2,1,1],[2,1,3,0],[1,2,1,1]],[[2,2,2,1],[2,2,1,1],[2,1,3,0],[1,2,1,1]],[[1,2,2,1],[2,2,1,1],[2,1,2,1],[1,2,3,0]],[[1,2,2,1],[2,2,1,1],[2,1,2,1],[1,3,2,0]],[[1,2,2,1],[2,2,1,1],[2,1,2,1],[2,2,2,0]],[[1,2,2,1],[2,2,1,1],[3,1,2,1],[1,2,2,0]],[[1,2,2,1],[3,2,1,1],[2,1,2,1],[1,2,2,0]],[[1,2,2,2],[2,2,1,1],[2,1,2,1],[1,2,2,0]],[[1,2,3,1],[2,2,1,1],[2,1,2,1],[1,2,2,0]],[[1,3,2,1],[2,2,1,1],[2,1,2,1],[1,2,2,0]],[[2,2,2,1],[2,2,1,1],[2,1,2,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,1],[2,1,2,0],[1,2,2,2]],[[1,2,2,1],[2,2,1,1],[2,1,2,0],[1,2,3,1]],[[1,2,2,1],[2,2,1,1],[2,1,2,0],[1,3,2,1]],[[1,2,2,1],[2,2,1,1],[2,1,2,0],[2,2,2,1]],[[1,2,2,1],[2,2,1,1],[3,1,2,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,1],[2,1,2,0],[1,2,2,1]],[[1,2,2,2],[2,2,1,1],[2,1,2,0],[1,2,2,1]],[[1,2,3,1],[2,2,1,1],[2,1,2,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,1],[2,1,2,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,1],[2,1,2,0],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[0,2,3,3],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[0,2,3,2],[1,3,2,1]],[[0,1,2,1],[2,2,0,2],[0,2,3,2],[1,2,3,1]],[[0,1,2,1],[2,2,0,2],[0,2,3,2],[1,2,2,2]],[[0,1,2,1],[2,2,0,2],[0,3,3,3],[1,1,2,1]],[[0,1,2,1],[2,2,0,2],[0,3,3,2],[1,1,3,1]],[[0,1,2,1],[2,2,0,2],[0,3,3,2],[1,1,2,2]],[[0,1,3,1],[2,2,0,2],[1,2,2,2],[1,2,2,1]],[[0,1,2,2],[2,2,0,2],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,3],[1,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,2,2,3],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,2,2,2],[2,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,2,2,2],[1,3,2,1]],[[0,1,2,1],[2,2,0,2],[1,2,2,2],[1,2,3,1]],[[0,1,2,1],[2,2,0,2],[1,2,2,2],[1,2,2,2]],[[0,1,2,1],[2,2,0,2],[1,2,4,1],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,2,3,1],[2,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,2,0,2],[1,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,2,0,2],[1,2,3,1],[1,2,2,2]],[[0,1,2,1],[2,2,0,2],[1,2,3,3],[0,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,2,3,2],[0,2,3,1]],[[0,1,2,1],[2,2,0,2],[1,2,3,2],[0,2,2,2]],[[0,1,3,1],[2,2,0,2],[1,2,3,2],[1,2,1,1]],[[0,1,2,2],[2,2,0,2],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,0,3],[1,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,0,2],[1,2,4,2],[1,2,1,1]],[[0,1,2,1],[2,2,0,2],[1,2,3,3],[1,2,1,1]],[[0,1,2,1],[2,2,0,2],[1,2,3,2],[1,2,1,2]],[[0,1,3,1],[2,2,0,2],[1,2,3,2],[1,2,2,0]],[[0,1,2,2],[2,2,0,2],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,0,3],[1,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,0,2],[1,2,4,2],[1,2,2,0]],[[0,1,2,1],[2,2,0,2],[1,2,3,3],[1,2,2,0]],[[0,1,2,1],[2,2,0,2],[1,2,3,2],[2,2,2,0]],[[0,1,2,1],[2,2,0,2],[1,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,2,0,2],[1,2,3,2],[1,2,3,0]],[[0,1,3,1],[2,2,0,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,2],[2,2,0,2],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,3],[1,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,4,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,1,3],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,2,0,2],[1,3,1,2],[1,2,2,2]],[[0,1,2,1],[2,2,0,2],[1,4,2,1],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,2,0,2],[1,3,2,1],[1,2,2,2]],[[0,1,3,1],[2,2,0,2],[1,3,2,2],[1,1,2,1]],[[0,1,2,2],[2,2,0,2],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[2,2,0,3],[1,3,2,2],[1,1,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,2,3],[1,1,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,2,2],[1,1,3,1]],[[0,1,2,1],[2,2,0,2],[1,3,2,2],[1,1,2,2]],[[0,1,2,1],[2,2,0,2],[1,4,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,0,2],[1,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,2,0,2],[1,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,2,0,2],[1,3,2,2],[1,2,3,0]],[[0,1,2,1],[2,2,0,2],[1,4,3,1],[1,1,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,4,1],[1,1,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,1],[1,1,3,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,1],[1,1,2,2]],[[0,1,2,1],[2,2,0,2],[1,4,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,0,2],[1,3,4,1],[1,2,1,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,1],[1,3,1,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,3],[0,1,2,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,2],[0,1,3,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,2],[0,1,2,2]],[[0,1,3,1],[2,2,0,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,2],[2,2,0,2],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,2,0,3],[1,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,2,0,2],[1,4,3,2],[1,1,1,1]],[[0,1,2,1],[2,2,0,2],[1,3,4,2],[1,1,1,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,3],[1,1,1,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,2],[1,1,1,2]],[[0,1,3,1],[2,2,0,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,2],[2,2,0,2],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,0,3],[1,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,0,2],[1,4,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,0,2],[1,3,4,2],[1,1,2,0]],[[0,1,2,1],[2,2,0,2],[1,3,3,3],[1,1,2,0]],[[0,1,2,1],[2,2,0,2],[1,3,3,2],[1,1,3,0]],[[0,1,3,1],[2,2,0,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,2],[2,2,0,2],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,0,3],[1,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,0,2],[1,4,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,0,2],[1,3,4,2],[1,2,0,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,3],[1,2,0,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,2,0,2],[1,3,3,2],[1,2,0,2]],[[0,1,3,1],[2,2,0,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,2],[2,2,0,2],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,0,3],[1,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,0,2],[1,4,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,0,2],[1,3,4,2],[1,2,1,0]],[[0,1,2,1],[2,2,0,2],[1,3,3,3],[1,2,1,0]],[[0,1,2,1],[2,2,0,2],[1,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,2,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,1,1],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[2,2,1,1],[2,1,0,2],[1,2,3,1]],[[0,1,3,1],[2,2,0,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,2],[2,2,0,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[3,2,0,2],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,3],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[3,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,1,2,3],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,1,2,2],[2,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,1,2,2],[1,3,2,1]],[[0,1,2,1],[2,2,0,2],[2,1,2,2],[1,2,3,1]],[[0,1,2,1],[2,2,0,2],[2,1,2,2],[1,2,2,2]],[[0,1,2,1],[3,2,0,2],[2,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[3,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,1,4,1],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,1,3,1],[2,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,1,3,1],[1,3,2,1]],[[0,1,2,1],[2,2,0,2],[2,1,3,1],[1,2,3,1]],[[0,1,2,1],[2,2,0,2],[2,1,3,1],[1,2,2,2]],[[0,1,3,1],[2,2,0,2],[2,1,3,2],[1,2,1,1]],[[0,1,2,2],[2,2,0,2],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,0,3],[2,1,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,0,2],[2,1,4,2],[1,2,1,1]],[[0,1,2,1],[2,2,0,2],[2,1,3,3],[1,2,1,1]],[[0,1,2,1],[2,2,0,2],[2,1,3,2],[1,2,1,2]],[[0,1,3,1],[2,2,0,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,2],[2,2,0,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[3,2,0,2],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,0,3],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,0,2],[3,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,1,4,2],[1,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,1,3,3],[1,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,1,3,2],[2,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,1,3,2],[1,3,2,0]],[[0,1,2,1],[2,2,0,2],[2,1,3,2],[1,2,3,0]],[[0,1,3,1],[2,2,0,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,2],[2,2,0,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[3,2,0,2],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,3],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[3,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,1,3],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,1,2],[2,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,1,2],[1,3,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,1,2],[1,2,3,1]],[[0,1,2,1],[2,2,0,2],[2,2,1,2],[1,2,2,2]],[[0,1,2,1],[3,2,0,2],[2,2,2,1],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[3,2,2,1],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,2,1],[2,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,2,1],[1,3,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,2,1],[1,2,3,1]],[[0,1,2,1],[2,2,0,2],[2,2,2,1],[1,2,2,2]],[[0,1,3,1],[2,2,0,2],[2,2,2,2],[0,2,2,1]],[[0,1,2,2],[2,2,0,2],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[2,2,0,3],[2,2,2,2],[0,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,2,3],[0,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,2,2],[0,3,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,2,2],[0,2,3,1]],[[0,1,2,1],[2,2,0,2],[2,2,2,2],[0,2,2,2]],[[0,1,2,1],[3,2,0,2],[2,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,0,2],[3,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,2,2,2],[2,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,2,2,2],[1,3,2,0]],[[0,1,2,1],[2,2,0,2],[2,2,2,2],[1,2,3,0]],[[0,1,2,1],[2,2,0,2],[2,2,4,1],[0,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,3,1],[0,3,2,1]],[[0,1,2,1],[2,2,0,2],[2,2,3,1],[0,2,3,1]],[[0,1,2,1],[2,2,0,2],[2,2,3,1],[0,2,2,2]],[[0,1,2,1],[3,2,0,2],[2,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,0,2],[3,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,0,2],[2,2,3,1],[2,2,1,1]],[[0,1,2,1],[2,2,0,2],[2,2,3,1],[1,3,1,1]],[[0,1,3,1],[2,2,0,2],[2,2,3,2],[0,2,1,1]],[[0,1,2,2],[2,2,0,2],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,2,0,3],[2,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,2,0,2],[2,2,4,2],[0,2,1,1]],[[0,1,2,1],[2,2,0,2],[2,2,3,3],[0,2,1,1]],[[0,1,2,1],[2,2,0,2],[2,2,3,2],[0,2,1,2]],[[0,1,3,1],[2,2,0,2],[2,2,3,2],[0,2,2,0]],[[0,1,2,2],[2,2,0,2],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,2,0,3],[2,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,2,4,2],[0,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,2,3,3],[0,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,2,3,2],[0,3,2,0]],[[0,1,2,1],[2,2,0,2],[2,2,3,2],[0,2,3,0]],[[0,1,2,1],[3,2,0,2],[2,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,0,2],[3,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,0,2],[2,2,3,2],[2,2,0,1]],[[0,1,2,1],[2,2,0,2],[2,2,3,2],[1,3,0,1]],[[0,1,2,1],[3,2,0,2],[2,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,0,2],[3,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,0,2],[2,2,3,2],[2,2,1,0]],[[0,1,2,1],[2,2,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,1,1],[2,1,0,2],[1,3,2,1]],[[1,2,2,1],[2,2,1,1],[2,1,0,2],[2,2,2,1]],[[1,2,2,1],[2,2,1,1],[2,1,0,3],[1,2,2,1]],[[1,2,2,1],[2,2,1,1],[3,1,0,2],[1,2,2,1]],[[1,2,2,1],[3,2,1,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[2,2,1,1],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[2,2,1,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,2,1,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[2,2,1,1],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[3,2,0,2],[2,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[3,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,0,2],[2,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,0,2],[1,3,2,1]],[[0,1,2,1],[2,2,0,2],[3,3,1,1],[1,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,1,1],[2,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,1,1],[1,3,2,1]],[[0,1,3,1],[2,2,0,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,2],[2,2,0,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[3,2,0,2],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,0,3],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,0,2],[3,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,4,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,1,3],[0,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,1,2],[0,3,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,1,2],[0,2,3,1]],[[0,1,2,1],[2,2,0,2],[2,3,1,2],[0,2,2,2]],[[0,1,2,1],[3,2,0,2],[2,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,2,0,2],[3,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,2,0,2],[2,4,1,2],[1,1,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,1,2],[2,1,2,1]],[[0,1,2,1],[2,2,0,2],[3,3,1,2],[1,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,1,2],[2,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,1,2],[1,3,2,0]],[[0,1,2,1],[3,2,0,2],[2,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,2,0,2],[3,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,4,2,1],[0,2,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,2,1],[0,3,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,2,1],[0,2,3,1]],[[0,1,2,1],[2,2,0,2],[2,3,2,1],[0,2,2,2]],[[0,1,2,1],[3,2,0,2],[2,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,2,0,2],[3,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,2,0,2],[2,4,2,1],[1,1,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,2,1],[2,1,2,1]],[[0,1,3,1],[2,2,0,2],[2,3,2,2],[0,1,2,1]],[[0,1,2,2],[2,2,0,2],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,2,0,3],[2,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,2,3],[0,1,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,2,2],[0,1,3,1]],[[0,1,2,1],[2,2,0,2],[2,3,2,2],[0,1,2,2]],[[0,1,2,1],[3,2,0,2],[2,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,2,0,2],[3,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,4,2,2],[0,2,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,2,2],[0,3,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,2,2],[0,2,3,0]],[[0,1,3,1],[2,2,0,2],[2,3,2,2],[1,0,2,1]],[[0,1,2,2],[2,2,0,2],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[2,2,0,3],[2,3,2,2],[1,0,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,2,3],[1,0,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,2,2],[1,0,3,1]],[[0,1,2,1],[2,2,0,2],[2,3,2,2],[1,0,2,2]],[[0,1,2,1],[3,2,0,2],[2,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,2,0,2],[3,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,2,0,2],[2,4,2,2],[1,1,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,2,2],[2,1,2,0]],[[0,1,2,1],[3,2,0,2],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,2,0,2],[3,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,2,0,2],[2,4,3,1],[0,1,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,4,1],[0,1,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,1],[0,1,3,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,1],[0,1,2,2]],[[0,1,2,1],[3,2,0,2],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,0,2],[3,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,0,2],[2,4,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,0,2],[2,3,4,1],[0,2,1,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,1],[0,3,1,1]],[[0,1,2,1],[3,2,0,2],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,0,2],[3,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,0,2],[2,4,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,4,1],[1,0,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,1],[2,0,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,1],[1,0,3,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,1],[1,0,2,2]],[[0,1,2,1],[3,2,0,2],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,0,2],[3,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,0,2],[2,4,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,0,2],[2,3,4,1],[1,1,1,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,1],[2,1,1,1]],[[0,1,2,1],[2,2,0,2],[3,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,0,2],[2,4,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,1],[2,2,0,1]],[[0,1,3,1],[2,2,0,2],[2,3,3,2],[0,0,2,1]],[[0,1,2,2],[2,2,0,2],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,2,0,3],[2,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,4,2],[0,0,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,3],[0,0,2,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[0,0,2,2]],[[0,1,3,1],[2,2,0,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,2],[2,2,0,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[3,2,0,2],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,0,3],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,0,2],[3,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,0,2],[2,4,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,0,2],[2,3,4,2],[0,1,1,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,3],[0,1,1,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[0,1,1,2]],[[0,1,3,1],[2,2,0,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,2],[2,2,0,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[3,2,0,2],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,0,3],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,0,2],[3,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,0,2],[2,4,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,4,2],[0,1,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,3,3],[0,1,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[0,1,3,0]],[[0,1,3,1],[2,2,0,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,2],[2,2,0,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[3,2,0,2],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,0,3],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,0,2],[3,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,0,2],[2,4,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,0,2],[2,3,4,2],[0,2,0,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,3],[0,2,0,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[0,3,0,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[0,2,0,2]],[[0,1,3,1],[2,2,0,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,2],[2,2,0,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[3,2,0,2],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,0,3],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,0,2],[3,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,0,2],[2,4,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,0,2],[2,3,4,2],[0,2,1,0]],[[0,1,2,1],[2,2,0,2],[2,3,3,3],[0,2,1,0]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,2,1,1],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[2,2,1,1],[2,0,3,1],[1,3,2,0]],[[1,2,2,1],[2,2,1,1],[2,0,3,1],[2,2,2,0]],[[1,2,2,1],[2,2,1,1],[2,0,4,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,1],[3,0,3,1],[1,2,2,0]],[[1,2,2,1],[3,2,1,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[2,2,1,1],[2,0,3,1],[1,2,2,0]],[[0,1,3,1],[2,2,0,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,2],[2,2,0,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[3,2,0,2],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,0,3],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,0,2],[3,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,0,2],[2,4,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,0,2],[2,3,4,2],[1,0,1,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,3],[1,0,1,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[2,0,1,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[1,0,1,2]],[[0,1,3,1],[2,2,0,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,2],[2,2,0,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[3,2,0,2],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,0,3],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,0,2],[3,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,0,2],[2,4,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,4,2],[1,0,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,3,3],[1,0,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[2,0,2,0]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[1,0,3,0]],[[0,1,3,1],[2,2,0,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,2],[2,2,0,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[3,2,0,2],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,0,3],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,0,2],[3,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,0,2],[2,4,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,0,2],[2,3,4,2],[1,1,0,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,3],[1,1,0,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[2,1,0,1]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[1,1,0,2]],[[0,1,3,1],[2,2,0,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,2],[2,2,0,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[3,2,0,2],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,0,3],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,0,2],[3,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,0,2],[2,4,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,0,2],[2,3,4,2],[1,1,1,0]],[[0,1,2,1],[2,2,0,2],[2,3,3,3],[1,1,1,0]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,3,1],[2,2,1,1],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[2,2,1,1],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[2,2,1,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,1],[2,0,3,0],[1,2,2,2]],[[1,2,2,1],[2,2,1,1],[2,0,3,0],[1,2,3,1]],[[1,2,2,1],[2,2,1,1],[2,0,3,0],[1,3,2,1]],[[1,2,2,1],[2,2,1,1],[2,0,3,0],[2,2,2,1]],[[1,2,2,1],[2,2,1,1],[2,0,4,0],[1,2,2,1]],[[1,2,2,1],[2,2,1,1],[3,0,3,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,1],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[2,2,1,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,1],[3,2,0,2],[2,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,2,0,2],[3,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,2,0,2],[2,4,3,2],[1,2,0,0]],[[0,1,2,1],[2,2,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,3,1],[2,2,1,1],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,1],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,1],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[2,2,1,1],[2,0,1,2],[1,2,2,2]],[[1,2,2,1],[2,2,1,1],[2,0,1,2],[1,2,3,1]],[[1,2,2,1],[2,2,1,1],[2,0,1,2],[1,3,2,1]],[[1,2,2,1],[2,2,1,1],[2,0,1,2],[2,2,2,1]],[[1,2,2,1],[2,2,1,1],[2,0,1,3],[1,2,2,1]],[[1,2,2,1],[2,2,1,1],[3,0,1,2],[1,2,2,1]],[[1,2,2,1],[3,2,1,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,1,1],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[2,2,1,1],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,1,1],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,1,1],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,0],[1,4,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,1,0],[1,3,3,1],[2,2,2,1]],[[0,1,2,1],[2,2,1,0],[1,3,3,1],[1,3,2,1]],[[0,1,2,1],[2,2,1,0],[1,3,3,1],[1,2,3,1]],[[0,1,2,1],[2,2,1,0],[1,3,3,1],[1,2,2,2]],[[0,1,2,1],[2,2,1,0],[1,4,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,1,0],[1,3,3,2],[2,2,2,0]],[[0,1,2,1],[2,2,1,0],[1,3,3,2],[1,3,2,0]],[[0,1,2,1],[2,2,1,0],[1,3,3,2],[1,2,3,0]],[[0,1,2,1],[2,2,1,0],[3,2,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,1,0],[2,2,3,1],[2,2,2,1]],[[0,1,2,1],[2,2,1,0],[2,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,2,1,0],[2,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,2,1,0],[2,2,3,1],[1,2,2,2]],[[0,1,2,1],[2,2,1,0],[3,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,1,0],[2,2,3,2],[2,2,2,0]],[[0,1,2,1],[2,2,1,0],[2,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,2,1,0],[2,2,3,2],[1,2,3,0]],[[0,1,2,1],[2,2,1,0],[3,3,3,1],[0,2,2,1]],[[0,1,2,1],[2,2,1,0],[2,4,3,1],[0,2,2,1]],[[0,1,2,1],[2,2,1,0],[2,3,3,1],[0,3,2,1]],[[0,1,2,1],[2,2,1,0],[2,3,3,1],[0,2,3,1]],[[0,1,2,1],[2,2,1,0],[2,3,3,1],[0,2,2,2]],[[0,1,2,1],[2,2,1,0],[3,3,3,1],[1,1,2,1]],[[0,1,2,1],[2,2,1,0],[2,4,3,1],[1,1,2,1]],[[0,1,2,1],[2,2,1,0],[2,3,3,1],[2,1,2,1]],[[0,1,2,1],[2,2,1,0],[3,3,3,2],[0,2,2,0]],[[0,1,2,1],[2,2,1,0],[2,4,3,2],[0,2,2,0]],[[0,1,2,1],[2,2,1,0],[2,3,3,2],[0,3,2,0]],[[0,1,2,1],[2,2,1,0],[2,3,3,2],[0,2,3,0]],[[0,1,2,1],[2,2,1,0],[3,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,1,0],[2,4,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,1,0],[2,3,3,2],[2,1,2,0]],[[0,1,2,2],[2,2,1,2],[0,1,3,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,3],[0,1,3,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,1,3,3],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,1,3,2],[1,2,3,1]],[[0,1,2,1],[2,2,1,2],[0,1,3,2],[1,2,2,2]],[[0,1,3,1],[2,2,1,2],[0,2,2,2],[1,2,2,1]],[[0,1,2,2],[2,2,1,2],[0,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,3],[0,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,2,2,3],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,2,2,2],[2,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,2,2,2],[1,3,2,1]],[[0,1,2,1],[2,2,1,2],[0,2,2,2],[1,2,3,1]],[[0,1,2,1],[2,2,1,2],[0,2,2,2],[1,2,2,2]],[[0,1,2,1],[2,2,1,2],[0,2,4,1],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,2,3,1],[2,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,2,1,2],[0,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,2,1,2],[0,2,3,1],[1,2,2,2]],[[0,1,3,1],[2,2,1,2],[0,2,3,2],[1,2,1,1]],[[0,1,2,2],[2,2,1,2],[0,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,1,3],[0,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,1,2],[0,2,4,2],[1,2,1,1]],[[0,1,2,1],[2,2,1,2],[0,2,3,3],[1,2,1,1]],[[0,1,2,1],[2,2,1,2],[0,2,3,2],[1,2,1,2]],[[0,1,3,1],[2,2,1,2],[0,2,3,2],[1,2,2,0]],[[0,1,2,2],[2,2,1,2],[0,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,1,3],[0,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,1,2],[0,2,4,2],[1,2,2,0]],[[0,1,2,1],[2,2,1,2],[0,2,3,3],[1,2,2,0]],[[0,1,2,1],[2,2,1,2],[0,2,3,2],[2,2,2,0]],[[0,1,2,1],[2,2,1,2],[0,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,2,1,2],[0,2,3,2],[1,2,3,0]],[[0,1,3,1],[2,2,1,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,2],[2,2,1,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,3],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,4,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,1,3],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,2,1,2],[0,3,1,2],[1,2,2,2]],[[0,1,2,1],[2,2,1,2],[0,4,2,1],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,2,1,2],[0,3,2,1],[1,2,2,2]],[[0,1,3,1],[2,2,1,2],[0,3,2,2],[1,1,2,1]],[[0,1,2,2],[2,2,1,2],[0,3,2,2],[1,1,2,1]],[[0,1,2,1],[2,2,1,3],[0,3,2,2],[1,1,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,2,3],[1,1,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,2,2],[1,1,3,1]],[[0,1,2,1],[2,2,1,2],[0,3,2,2],[1,1,2,2]],[[0,1,2,1],[2,2,1,2],[0,4,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,1,2],[0,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,2,1,2],[0,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,2,1,2],[0,3,2,2],[1,2,3,0]],[[0,1,2,1],[2,2,1,2],[0,4,3,1],[1,1,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,4,1],[1,1,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,1],[1,1,3,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,1],[1,1,2,2]],[[0,1,2,1],[2,2,1,2],[0,4,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,1,2],[0,3,4,1],[1,2,1,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,1],[1,3,1,1]],[[0,1,3,1],[2,2,1,2],[0,3,3,2],[1,0,2,1]],[[0,1,2,2],[2,2,1,2],[0,3,3,2],[1,0,2,1]],[[0,1,2,1],[2,2,1,3],[0,3,3,2],[1,0,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,4,2],[1,0,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,3],[1,0,2,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,2],[1,0,2,2]],[[0,1,3,1],[2,2,1,2],[0,3,3,2],[1,1,1,1]],[[0,1,2,2],[2,2,1,2],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,2,1,3],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,2,1,2],[0,4,3,2],[1,1,1,1]],[[0,1,2,1],[2,2,1,2],[0,3,4,2],[1,1,1,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,3],[1,1,1,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,2],[1,1,1,2]],[[0,1,3,1],[2,2,1,2],[0,3,3,2],[1,1,2,0]],[[0,1,2,2],[2,2,1,2],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,1,3],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,1,2],[0,4,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,1,2],[0,3,4,2],[1,1,2,0]],[[0,1,2,1],[2,2,1,2],[0,3,3,3],[1,1,2,0]],[[0,1,2,1],[2,2,1,2],[0,3,3,2],[1,1,3,0]],[[0,1,3,1],[2,2,1,2],[0,3,3,2],[1,2,0,1]],[[0,1,2,2],[2,2,1,2],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,1,3],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,1,2],[0,4,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,1,2],[0,3,4,2],[1,2,0,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,3],[1,2,0,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,2,1,2],[0,3,3,2],[1,2,0,2]],[[0,1,3,1],[2,2,1,2],[0,3,3,2],[1,2,1,0]],[[0,1,2,2],[2,2,1,2],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,1,3],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,1,2],[0,4,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,1,2],[0,3,4,2],[1,2,1,0]],[[0,1,2,1],[2,2,1,2],[0,3,3,3],[1,2,1,0]],[[0,1,2,1],[2,2,1,2],[0,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,2,1,2],[0,3,3,2],[1,3,1,0]],[[0,1,2,2],[2,2,1,2],[1,1,3,2],[0,2,2,1]],[[0,1,2,1],[2,2,1,3],[1,1,3,2],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,1,3,3],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,1,3,2],[0,2,3,1]],[[0,1,2,1],[2,2,1,2],[1,1,3,2],[0,2,2,2]],[[0,1,3,1],[2,2,1,2],[1,2,2,2],[0,2,2,1]],[[0,1,2,2],[2,2,1,2],[1,2,2,2],[0,2,2,1]],[[0,1,2,1],[2,2,1,3],[1,2,2,2],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,2,2,3],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,2,2,2],[0,3,2,1]],[[0,1,2,1],[2,2,1,2],[1,2,2,2],[0,2,3,1]],[[0,1,2,1],[2,2,1,2],[1,2,2,2],[0,2,2,2]],[[0,1,2,1],[2,2,1,2],[1,2,4,1],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,2,3,1],[0,3,2,1]],[[0,1,2,1],[2,2,1,2],[1,2,3,1],[0,2,3,1]],[[0,1,2,1],[2,2,1,2],[1,2,3,1],[0,2,2,2]],[[0,1,3,1],[2,2,1,2],[1,2,3,2],[0,2,1,1]],[[0,1,2,2],[2,2,1,2],[1,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,2,1,3],[1,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,2,1,2],[1,2,4,2],[0,2,1,1]],[[0,1,2,1],[2,2,1,2],[1,2,3,3],[0,2,1,1]],[[0,1,2,1],[2,2,1,2],[1,2,3,2],[0,2,1,2]],[[0,1,3,1],[2,2,1,2],[1,2,3,2],[0,2,2,0]],[[0,1,2,2],[2,2,1,2],[1,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,2,1,3],[1,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,2,1,2],[1,2,4,2],[0,2,2,0]],[[0,1,2,1],[2,2,1,2],[1,2,3,3],[0,2,2,0]],[[0,1,2,1],[2,2,1,2],[1,2,3,2],[0,3,2,0]],[[0,1,2,1],[2,2,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[3,2,1,1],[1,3,3,1],[1,2,0,0]],[[1,2,2,2],[2,2,1,1],[1,3,3,1],[1,2,0,0]],[[1,2,3,1],[2,2,1,1],[1,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,2,1,1],[1,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,2,1,1],[1,3,3,1],[1,2,0,0]],[[0,1,3,1],[2,2,1,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,2],[2,2,1,2],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,3],[1,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,4,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,0,3],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,0,2],[2,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,0,2],[1,3,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,0,2],[1,2,3,1]],[[0,1,2,1],[2,2,1,2],[1,3,0,2],[1,2,2,2]],[[0,1,3,1],[2,2,1,2],[1,3,1,2],[0,2,2,1]],[[0,1,2,2],[2,2,1,2],[1,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,1,3],[1,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,4,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,1,3],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,1,2],[0,3,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,1,2],[0,2,3,1]],[[0,1,2,1],[2,2,1,2],[1,3,1,2],[0,2,2,2]],[[0,1,2,1],[2,2,1,2],[1,4,2,1],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,2,1],[0,3,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,2,1],[0,2,3,1]],[[0,1,2,1],[2,2,1,2],[1,3,2,1],[0,2,2,2]],[[0,1,3,1],[2,2,1,2],[1,3,2,2],[0,1,2,1]],[[0,1,2,2],[2,2,1,2],[1,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,2,1,3],[1,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,2,3],[0,1,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,2,2],[0,1,3,1]],[[0,1,2,1],[2,2,1,2],[1,3,2,2],[0,1,2,2]],[[0,1,2,1],[2,2,1,2],[1,4,2,2],[0,2,2,0]],[[0,1,2,1],[2,2,1,2],[1,3,2,2],[0,3,2,0]],[[0,1,2,1],[2,2,1,2],[1,3,2,2],[0,2,3,0]],[[0,1,3,1],[2,2,1,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,2],[2,2,1,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,1],[2,2,1,3],[1,3,2,2],[1,0,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,2,3],[1,0,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,2,2],[1,0,3,1]],[[0,1,2,1],[2,2,1,2],[1,3,2,2],[1,0,2,2]],[[0,1,2,1],[2,2,1,2],[1,4,3,1],[0,1,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,4,1],[0,1,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,1],[0,1,3,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,1],[0,1,2,2]],[[0,1,2,1],[2,2,1,2],[1,4,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,1,2],[1,3,4,1],[0,2,1,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,1],[0,3,1,1]],[[0,1,2,1],[2,2,1,2],[1,4,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,4,1],[1,0,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,1],[1,0,3,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,1],[3,2,1,1],[1,3,3,1],[1,1,1,0]],[[1,2,2,2],[2,2,1,1],[1,3,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,1,1],[1,3,3,1],[1,1,1,0]],[[0,1,3,1],[2,2,1,2],[1,3,3,2],[0,0,2,1]],[[0,1,2,2],[2,2,1,2],[1,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,2,1,3],[1,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,4,2],[0,0,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,3],[0,0,2,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,2],[0,0,2,2]],[[0,1,3,1],[2,2,1,2],[1,3,3,2],[0,1,1,1]],[[0,1,2,2],[2,2,1,2],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,1,3],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,1,2],[1,4,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,1,2],[1,3,4,2],[0,1,1,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,3],[0,1,1,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,2],[0,1,1,2]],[[0,1,3,1],[2,2,1,2],[1,3,3,2],[0,1,2,0]],[[0,1,2,2],[2,2,1,2],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,1,3],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,1,2],[1,4,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,1,2],[1,3,4,2],[0,1,2,0]],[[0,1,2,1],[2,2,1,2],[1,3,3,3],[0,1,2,0]],[[0,1,2,1],[2,2,1,2],[1,3,3,2],[0,1,3,0]],[[0,1,3,1],[2,2,1,2],[1,3,3,2],[0,2,0,1]],[[0,1,2,2],[2,2,1,2],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,1,3],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,1,2],[1,4,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,1,2],[1,3,4,2],[0,2,0,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,3],[0,2,0,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,2],[0,3,0,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,2],[0,2,0,2]],[[0,1,3,1],[2,2,1,2],[1,3,3,2],[0,2,1,0]],[[0,1,2,2],[2,2,1,2],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,1,3],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,1,2],[1,4,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,1,2],[1,3,4,2],[0,2,1,0]],[[0,1,2,1],[2,2,1,2],[1,3,3,3],[0,2,1,0]],[[0,1,2,1],[2,2,1,2],[1,3,3,2],[0,3,1,0]],[[1,3,2,1],[2,2,1,1],[1,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,1,1],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,1,1],[1,3,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,1,1],[1,3,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,1,1],[1,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,1,1],[1,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,1,1],[1,3,3,1],[1,1,0,1]],[[0,1,3,1],[2,2,1,2],[1,3,3,2],[1,0,1,1]],[[0,1,2,2],[2,2,1,2],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,1,3],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,1,2],[1,4,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,1,2],[1,3,4,2],[1,0,1,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,3],[1,0,1,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,2],[1,0,1,2]],[[0,1,3,1],[2,2,1,2],[1,3,3,2],[1,0,2,0]],[[0,1,2,2],[2,2,1,2],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,1,3],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,1,2],[1,4,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,1,2],[1,3,4,2],[1,0,2,0]],[[0,1,2,1],[2,2,1,2],[1,3,3,3],[1,0,2,0]],[[0,1,2,1],[2,2,1,2],[1,3,3,2],[1,0,3,0]],[[0,1,3,1],[2,2,1,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,2],[2,2,1,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,1,3],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,1,2],[1,4,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,1,2],[1,3,4,2],[1,1,0,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,3],[1,1,0,1]],[[0,1,2,1],[2,2,1,2],[1,3,3,2],[1,1,0,2]],[[0,1,3,1],[2,2,1,2],[1,3,3,2],[1,1,1,0]],[[0,1,2,2],[2,2,1,2],[1,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,1,3],[1,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,1,2],[1,4,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,1,2],[1,3,4,2],[1,1,1,0]],[[0,1,2,1],[2,2,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[3,2,1,1],[1,3,3,1],[1,0,2,0]],[[1,2,2,2],[2,2,1,1],[1,3,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,1,1],[1,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,1,1],[1,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,1,1],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,1,1],[1,3,3,1],[1,0,1,1]],[[1,2,2,2],[2,2,1,1],[1,3,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,1,1],[1,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,1,1],[1,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,1,1],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,1,1],[1,3,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,1,1],[1,3,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,1,1],[1,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,1,1],[1,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,1,1],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,1,1],[1,3,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,1,1],[1,3,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,1,1],[1,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,1,1],[1,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,1,1],[1,3,3,1],[0,2,0,1]],[[0,1,3,1],[2,2,1,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,2],[2,2,1,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[3,2,1,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,3],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[3,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,0,2,3],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,0,2,2],[2,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,0,2,2],[1,3,2,1]],[[0,1,2,1],[2,2,1,2],[2,0,2,2],[1,2,3,1]],[[0,1,2,1],[2,2,1,2],[2,0,2,2],[1,2,2,2]],[[0,1,2,1],[3,2,1,2],[2,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[3,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,0,4,1],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,0,3,1],[2,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,0,3,1],[1,3,2,1]],[[0,1,2,1],[2,2,1,2],[2,0,3,1],[1,2,3,1]],[[0,1,2,1],[2,2,1,2],[2,0,3,1],[1,2,2,2]],[[0,1,3,1],[2,2,1,2],[2,0,3,2],[1,2,1,1]],[[0,1,2,2],[2,2,1,2],[2,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,1,3],[2,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,1,2],[2,0,4,2],[1,2,1,1]],[[0,1,2,1],[2,2,1,2],[2,0,3,3],[1,2,1,1]],[[0,1,2,1],[2,2,1,2],[2,0,3,2],[1,2,1,2]],[[0,1,3,1],[2,2,1,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,2],[2,2,1,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[3,2,1,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,1,3],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,1,2],[3,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,1,2],[2,0,4,2],[1,2,2,0]],[[0,1,2,1],[2,2,1,2],[2,0,3,3],[1,2,2,0]],[[0,1,2,1],[2,2,1,2],[2,0,3,2],[2,2,2,0]],[[0,1,2,1],[2,2,1,2],[2,0,3,2],[1,3,2,0]],[[0,1,2,1],[2,2,1,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[3,2,1,1],[1,3,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,1,1],[1,3,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,1,1],[1,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,1,1],[1,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,1,1],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,1,1],[1,3,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,1,1],[1,3,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,1,1],[1,3,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,1,1],[1,3,3,1],[0,1,1,1]],[[0,1,3,1],[2,2,1,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,2],[2,2,1,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[3,2,1,2],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,3],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[3,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,2,0,3],[1,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,2,0,2],[2,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,2,0,2],[1,3,2,1]],[[0,1,2,1],[2,2,1,2],[2,2,0,2],[1,2,3,1]],[[0,1,2,1],[2,2,1,2],[2,2,0,2],[1,2,2,2]],[[2,2,2,1],[2,2,1,1],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,1,1],[1,3,3,0],[1,2,0,1]],[[1,2,2,2],[2,2,1,1],[1,3,3,0],[1,2,0,1]],[[1,2,3,1],[2,2,1,1],[1,3,3,0],[1,2,0,1]],[[1,3,2,1],[2,2,1,1],[1,3,3,0],[1,2,0,1]],[[2,2,2,1],[2,2,1,1],[1,3,3,0],[1,2,0,1]],[[1,2,2,1],[3,2,1,1],[1,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,2,1,1],[1,3,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,1,1],[1,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,1,1],[1,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,1,1],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[3,2,1,1],[1,3,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,1,1],[1,3,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,1,1],[1,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,1,1],[1,3,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,1,1],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[3,2,1,1],[1,3,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,1,1],[1,3,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,1,1],[1,3,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,1,1],[1,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,1,1],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,1,1],[1,3,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,1,1],[1,3,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,1,1],[1,3,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,1,1],[1,3,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,1,1],[1,3,3,0],[0,1,2,1]],[[0,1,3,1],[2,2,1,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,2],[2,2,1,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[3,2,1,2],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,1,3],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[3,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,4,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,3,0,3],[0,2,2,1]],[[0,1,2,1],[2,2,1,2],[2,3,0,2],[0,3,2,1]],[[0,1,2,1],[2,2,1,2],[2,3,0,2],[0,2,3,1]],[[0,1,2,1],[2,2,1,2],[2,3,0,2],[0,2,2,2]],[[0,1,2,1],[3,2,1,2],[2,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,2,1,2],[3,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,2,1,2],[2,4,0,2],[1,1,2,1]],[[0,1,2,1],[2,2,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[3,2,1,1],[1,3,2,1],[1,1,2,0]],[[1,2,2,2],[2,2,1,1],[1,3,2,1],[1,1,2,0]],[[1,2,3,1],[2,2,1,1],[1,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,2,1,1],[1,3,2,1],[1,1,2,0]],[[2,2,2,1],[2,2,1,1],[1,3,2,1],[1,1,2,0]],[[1,2,2,1],[3,2,1,1],[1,3,2,1],[0,2,2,0]],[[1,2,2,2],[2,2,1,1],[1,3,2,1],[0,2,2,0]],[[1,2,3,1],[2,2,1,1],[1,3,2,1],[0,2,2,0]],[[1,3,2,1],[2,2,1,1],[1,3,2,1],[0,2,2,0]],[[2,2,2,1],[2,2,1,1],[1,3,2,1],[0,2,2,0]],[[1,2,2,1],[3,2,1,1],[1,3,2,0],[1,1,2,1]],[[1,2,2,2],[2,2,1,1],[1,3,2,0],[1,1,2,1]],[[1,2,3,1],[2,2,1,1],[1,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,2,1,1],[1,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,2,1,1],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[3,2,1,1],[1,3,2,0],[0,2,2,1]],[[1,2,2,2],[2,2,1,1],[1,3,2,0],[0,2,2,1]],[[1,2,3,1],[2,2,1,1],[1,3,2,0],[0,2,2,1]],[[1,3,2,1],[2,2,1,1],[1,3,2,0],[0,2,2,1]],[[2,2,2,1],[2,2,1,1],[1,3,2,0],[0,2,2,1]],[[1,2,2,1],[3,2,1,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,2],[2,2,1,1],[1,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,2,1,1],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,2,1,1],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,2,1,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,2,1,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,2,1,1],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,2,1,1],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,2,1,1],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,2,1,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,2,1,1],[0,3,3,1],[1,2,1,0]],[[1,2,2,2],[2,2,1,1],[0,3,3,1],[1,2,1,0]],[[1,2,3,1],[2,2,1,1],[0,3,3,1],[1,2,1,0]],[[1,3,2,1],[2,2,1,1],[0,3,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,1,1],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,1,1],[0,3,3,1],[1,2,0,1]],[[1,2,2,2],[2,2,1,1],[0,3,3,1],[1,2,0,1]],[[1,2,3,1],[2,2,1,1],[0,3,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,1,1],[0,3,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,1,1],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,1,1],[0,3,3,1],[1,1,2,0]],[[1,2,2,2],[2,2,1,1],[0,3,3,1],[1,1,2,0]],[[1,2,3,1],[2,2,1,1],[0,3,3,1],[1,1,2,0]],[[1,3,2,1],[2,2,1,1],[0,3,3,1],[1,1,2,0]],[[2,2,2,1],[2,2,1,1],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[3,2,1,1],[0,3,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,1,1],[0,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,1,1],[0,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,1,1],[0,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,1,1],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,1,1],[0,3,3,0],[1,2,1,1]],[[1,2,2,2],[2,2,1,1],[0,3,3,0],[1,2,1,1]],[[1,2,3,1],[2,2,1,1],[0,3,3,0],[1,2,1,1]],[[1,3,2,1],[2,2,1,1],[0,3,3,0],[1,2,1,1]],[[2,2,2,1],[2,2,1,1],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,1,1],[0,3,3,0],[1,1,2,1]],[[1,2,2,2],[2,2,1,1],[0,3,3,0],[1,1,2,1]],[[1,2,3,1],[2,2,1,1],[0,3,3,0],[1,1,2,1]],[[1,3,2,1],[2,2,1,1],[0,3,3,0],[1,1,2,1]],[[2,2,2,1],[2,2,1,1],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[3,2,1,1],[0,3,2,1],[1,2,2,0]],[[1,2,2,2],[2,2,1,1],[0,3,2,1],[1,2,2,0]],[[1,2,3,1],[2,2,1,1],[0,3,2,1],[1,2,2,0]],[[1,3,2,1],[2,2,1,1],[0,3,2,1],[1,2,2,0]],[[2,2,2,1],[2,2,1,1],[0,3,2,1],[1,2,2,0]],[[1,2,2,1],[3,2,1,1],[0,3,2,0],[1,2,2,1]],[[1,2,2,2],[2,2,1,1],[0,3,2,0],[1,2,2,1]],[[1,2,3,1],[2,2,1,1],[0,3,2,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,1],[0,3,2,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,1],[0,3,2,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[2,2,1,1],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[2,2,1,1],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[2,2,1,1],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[2,2,1,1],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,2,2,3],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,2,2,2],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,2,2,2],[1,3,2,1]],[[0,1,2,1],[2,2,2,0],[1,2,2,2],[1,2,3,1]],[[0,1,2,1],[2,2,2,0],[1,2,2,2],[1,2,2,2]],[[0,1,2,1],[2,2,2,0],[1,2,4,1],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,2,3,1],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,2,2,0],[1,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,2,2,0],[1,2,3,1],[1,2,2,2]],[[0,1,2,1],[2,2,2,0],[1,2,4,2],[1,2,1,1]],[[0,1,2,1],[2,2,2,0],[1,2,3,3],[1,2,1,1]],[[0,1,2,1],[2,2,2,0],[1,2,3,2],[1,2,1,2]],[[0,1,2,1],[2,2,2,0],[1,2,4,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,0],[1,2,3,3],[1,2,2,0]],[[0,1,2,1],[2,2,2,0],[1,2,3,2],[2,2,2,0]],[[0,1,2,1],[2,2,2,0],[1,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,2,2,0],[1,2,3,2],[1,2,3,0]],[[0,1,2,1],[2,2,2,0],[1,4,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,1,3],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,2,2,0],[1,3,1,2],[1,2,2,2]],[[0,1,2,1],[2,2,2,0],[1,4,2,1],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,2,2,0],[1,3,2,1],[1,2,2,2]],[[0,1,2,1],[2,2,2,0],[1,3,2,3],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,2,2],[1,1,3,1]],[[0,1,2,1],[2,2,2,0],[1,3,2,2],[1,1,2,2]],[[0,1,2,1],[2,2,2,0],[1,4,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,0],[1,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,2,2,0],[1,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,2,2,0],[1,3,2,2],[1,2,3,0]],[[0,1,2,1],[2,2,2,0],[1,4,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,0],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,0],[1,3,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,0],[1,2,3,1]],[[0,1,2,1],[2,2,2,0],[1,4,3,1],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,4,1],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,1],[1,1,3,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,1],[1,1,2,2]],[[0,1,2,1],[2,2,2,0],[1,4,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,2,0],[1,3,4,1],[1,2,1,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,1],[1,3,1,1]],[[0,1,2,1],[2,2,2,0],[1,4,3,2],[1,1,1,1]],[[0,1,2,1],[2,2,2,0],[1,3,4,2],[1,1,1,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,3],[1,1,1,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,2],[1,1,1,2]],[[0,1,2,1],[2,2,2,0],[1,4,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,2,0],[1,3,4,2],[1,1,2,0]],[[0,1,2,1],[2,2,2,0],[1,3,3,3],[1,1,2,0]],[[0,1,2,1],[2,2,2,0],[1,3,3,2],[1,1,3,0]],[[0,1,2,1],[2,2,2,0],[1,4,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,2,0],[1,3,4,2],[1,2,0,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,3],[1,2,0,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,2,2,0],[1,3,3,2],[1,2,0,2]],[[0,1,2,1],[2,2,2,0],[1,4,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,2,0],[1,3,4,2],[1,2,1,0]],[[0,1,2,1],[2,2,2,0],[1,3,3,3],[1,2,1,0]],[[0,1,2,1],[2,2,2,0],[1,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,2,2,0],[1,3,3,2],[1,3,1,0]],[[0,1,2,1],[3,2,2,0],[2,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[3,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,1,2,3],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,1,2,2],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,1,2,2],[1,3,2,1]],[[0,1,2,1],[2,2,2,0],[2,1,2,2],[1,2,3,1]],[[0,1,2,1],[2,2,2,0],[2,1,2,2],[1,2,2,2]],[[0,1,2,1],[3,2,2,0],[2,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[3,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,1,4,1],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,1,3,1],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,1,3,1],[1,3,2,1]],[[0,1,2,1],[2,2,2,0],[2,1,3,1],[1,2,3,1]],[[0,1,2,1],[2,2,2,0],[2,1,3,1],[1,2,2,2]],[[0,1,2,1],[2,2,2,0],[2,1,4,2],[1,2,1,1]],[[0,1,2,1],[2,2,2,0],[2,1,3,3],[1,2,1,1]],[[0,1,2,1],[2,2,2,0],[2,1,3,2],[1,2,1,2]],[[0,1,2,1],[3,2,2,0],[2,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,0],[3,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,1,4,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,1,3,3],[1,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,1,3,2],[2,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,1,3,2],[1,3,2,0]],[[0,1,2,1],[2,2,2,0],[2,1,3,2],[1,2,3,0]],[[0,1,2,1],[3,2,2,0],[2,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[3,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,1,3],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,1,2],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,1,2],[1,3,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,1,2],[1,2,3,1]],[[0,1,2,1],[2,2,2,0],[2,2,1,2],[1,2,2,2]],[[0,1,2,1],[3,2,2,0],[2,2,2,1],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[3,2,2,1],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,2,1],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,2,1],[1,3,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,2,1],[1,2,3,1]],[[0,1,2,1],[2,2,2,0],[2,2,2,1],[1,2,2,2]],[[0,1,2,1],[2,2,2,0],[2,2,2,3],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,2,2],[0,3,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,2,2],[0,2,3,1]],[[0,1,2,1],[2,2,2,0],[2,2,2,2],[0,2,2,2]],[[0,1,2,1],[3,2,2,0],[2,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,0],[3,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,2,2,2],[2,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,2,2,2],[1,3,2,0]],[[0,1,2,1],[2,2,2,0],[2,2,2,2],[1,2,3,0]],[[0,1,2,1],[3,2,2,0],[2,2,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[3,2,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,0],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,0],[1,3,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,0],[1,2,3,1]],[[0,1,2,1],[2,2,2,0],[2,2,4,1],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,1],[0,3,2,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,1],[0,2,3,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,1],[0,2,2,2]],[[0,1,2,1],[3,2,2,0],[2,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,2,0],[3,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,1],[2,2,1,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,1],[1,3,1,1]],[[0,1,2,1],[2,2,2,0],[2,2,4,2],[0,2,1,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,3],[0,2,1,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,2],[0,2,1,2]],[[0,1,2,1],[2,2,2,0],[2,2,4,2],[0,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,2,3,3],[0,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,2,3,2],[0,3,2,0]],[[0,1,2,1],[2,2,2,0],[2,2,3,2],[0,2,3,0]],[[0,1,2,1],[3,2,2,0],[2,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,2,0],[3,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,2],[2,2,0,1]],[[0,1,2,1],[2,2,2,0],[2,2,3,2],[1,3,0,1]],[[0,1,2,1],[3,2,2,0],[2,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,2,0],[3,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,2,0],[2,2,3,2],[2,2,1,0]],[[0,1,2,1],[2,2,2,0],[2,2,3,2],[1,3,1,0]],[[0,1,2,1],[2,2,2,0],[3,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,0,2],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,0,2],[1,3,2,1]],[[0,1,2,1],[2,2,2,0],[3,3,1,1],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,1,1],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,1,1],[1,3,2,1]],[[0,1,2,1],[3,2,2,0],[2,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[3,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,4,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,1,3],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,1,2],[0,3,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,1,2],[0,2,3,1]],[[0,1,2,1],[2,2,2,0],[2,3,1,2],[0,2,2,2]],[[0,1,2,1],[3,2,2,0],[2,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[3,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[2,4,1,2],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,1,2],[2,1,2,1]],[[0,1,2,1],[2,2,2,0],[3,3,1,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,1,2],[2,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,1,2],[1,3,2,0]],[[0,1,2,1],[2,2,2,0],[3,3,2,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,2,0],[2,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,2,0],[1,3,2,1]],[[0,1,2,1],[3,2,2,0],[2,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[3,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,4,2,1],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,2,1],[0,3,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,2,1],[0,2,3,1]],[[0,1,2,1],[2,2,2,0],[2,3,2,1],[0,2,2,2]],[[0,1,2,1],[3,2,2,0],[2,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[3,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[2,4,2,1],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,2,1],[2,1,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,2,3],[0,1,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,2,2],[0,1,3,1]],[[0,1,2,1],[2,2,2,0],[2,3,2,2],[0,1,2,2]],[[0,1,2,1],[3,2,2,0],[2,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,2,2,0],[3,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,4,2,2],[0,2,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,2,2],[0,3,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,2,2],[0,2,3,0]],[[0,1,2,1],[2,2,2,0],[2,3,2,3],[1,0,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,2,2],[1,0,3,1]],[[0,1,2,1],[2,2,2,0],[2,3,2,2],[1,0,2,2]],[[0,1,2,1],[3,2,2,0],[2,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,2,2,0],[3,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,2,2,0],[2,4,2,2],[1,1,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,2,1,0],[3,3,3,2],[1,0,1,0]],[[0,1,2,1],[3,2,2,0],[2,3,3,0],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[3,3,3,0],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,4,3,0],[0,2,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,0],[0,3,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,0],[0,2,3,1]],[[0,1,2,1],[3,2,2,0],[2,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[3,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[2,4,3,0],[1,1,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,0],[2,1,2,1]],[[0,1,2,1],[3,2,2,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,2,2,0],[3,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,2,2,0],[2,4,3,1],[0,1,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,4,1],[0,1,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,1],[0,1,3,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,1],[0,1,2,2]],[[0,1,2,1],[3,2,2,0],[2,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,2,0],[3,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,2,0],[2,4,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,2,0],[2,3,4,1],[0,2,1,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,1],[0,3,1,1]],[[0,1,2,1],[3,2,2,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,2,0],[3,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,2,0],[2,4,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,4,1],[1,0,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,1],[2,0,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,1],[1,0,3,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,1],[1,0,2,2]],[[0,1,2,1],[3,2,2,0],[2,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,2,0],[3,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,2,0],[2,4,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,2,0],[2,3,4,1],[1,1,1,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,1],[2,1,1,1]],[[0,1,2,1],[3,2,2,0],[2,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,2,0],[3,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,2,0],[2,4,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[3,2,1,0],[2,3,3,2],[1,0,1,0]],[[1,2,2,2],[2,2,1,0],[2,3,3,2],[1,0,1,0]],[[1,2,3,1],[2,2,1,0],[2,3,3,2],[1,0,1,0]],[[1,3,2,1],[2,2,1,0],[2,3,3,2],[1,0,1,0]],[[2,2,2,1],[2,2,1,0],[2,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,2,1,0],[3,3,3,2],[1,0,0,1]],[[1,2,2,1],[3,2,1,0],[2,3,3,2],[1,0,0,1]],[[1,2,2,2],[2,2,1,0],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[2,2,2,0],[2,3,4,2],[0,0,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,3],[0,0,2,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[0,0,2,2]],[[0,1,2,1],[3,2,2,0],[2,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,2,0],[3,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,2,0],[2,4,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,2,0],[2,3,4,2],[0,1,1,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,3],[0,1,1,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[0,1,1,2]],[[0,1,2,1],[3,2,2,0],[2,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,2,0],[3,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,2,0],[2,4,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,4,2],[0,1,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,3,3],[0,1,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[0,1,3,0]],[[0,1,2,1],[3,2,2,0],[2,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,2,0],[3,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,2,0],[2,4,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,2,0],[2,3,4,2],[0,2,0,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,3],[0,2,0,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[0,3,0,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[0,2,0,2]],[[0,1,2,1],[3,2,2,0],[2,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,2,0],[3,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,2,0],[2,4,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,2,0],[2,3,4,2],[0,2,1,0]],[[0,1,2,1],[2,2,2,0],[2,3,3,3],[0,2,1,0]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[0,3,1,0]],[[1,2,3,1],[2,2,1,0],[2,3,3,2],[1,0,0,1]],[[1,3,2,1],[2,2,1,0],[2,3,3,2],[1,0,0,1]],[[2,2,2,1],[2,2,1,0],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[3,2,2,0],[2,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,2,0],[3,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,2,0],[2,4,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,2,0],[2,3,4,2],[1,0,1,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,3],[1,0,1,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[2,0,1,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[1,0,1,2]],[[0,1,2,1],[3,2,2,0],[2,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,2,0],[3,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,2,0],[2,4,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,4,2],[1,0,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,3,3],[1,0,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[2,0,2,0]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[1,0,3,0]],[[0,1,2,1],[3,2,2,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,2,0],[3,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,2,0],[2,4,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,2,0],[2,3,4,2],[1,1,0,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,3],[1,1,0,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[2,1,0,1]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[1,1,0,2]],[[0,1,2,1],[3,2,2,0],[2,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,2,0],[3,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,2,0],[2,4,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,2,0],[2,3,4,2],[1,1,1,0]],[[0,1,2,1],[2,2,2,0],[2,3,3,3],[1,1,1,0]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[2,1,1,0]],[[0,1,2,1],[3,2,2,0],[2,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,2,2,0],[3,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,2,2,0],[2,4,3,2],[1,2,0,0]],[[0,1,2,1],[2,2,2,0],[2,3,3,2],[2,2,0,0]],[[0,1,2,1],[2,2,2,1],[1,2,4,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,1],[1,2,3,0],[2,2,2,1]],[[0,1,2,1],[2,2,2,1],[1,2,3,0],[1,3,2,1]],[[0,1,2,1],[2,2,2,1],[1,2,3,0],[1,2,3,1]],[[0,1,2,1],[2,2,2,1],[1,2,3,0],[1,2,2,2]],[[0,1,2,1],[2,2,2,1],[1,2,4,1],[1,2,2,0]],[[0,1,2,1],[2,2,2,1],[1,2,3,1],[2,2,2,0]],[[0,1,2,1],[2,2,2,1],[1,2,3,1],[1,3,2,0]],[[0,1,2,1],[2,2,2,1],[1,2,3,1],[1,2,3,0]],[[0,1,2,1],[2,2,2,1],[1,4,2,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,1],[1,3,2,0],[2,2,2,1]],[[0,1,2,1],[2,2,2,1],[1,3,2,0],[1,3,2,1]],[[0,1,2,1],[2,2,2,1],[1,3,2,0],[1,2,3,1]],[[0,1,2,1],[2,2,2,1],[1,3,2,0],[1,2,2,2]],[[0,1,2,1],[2,2,2,1],[1,4,2,1],[1,2,2,0]],[[0,1,2,1],[2,2,2,1],[1,3,2,1],[2,2,2,0]],[[0,1,2,1],[2,2,2,1],[1,3,2,1],[1,3,2,0]],[[0,1,2,1],[2,2,2,1],[1,3,2,1],[1,2,3,0]],[[0,1,2,1],[2,2,2,1],[1,4,3,0],[1,1,2,1]],[[0,1,2,1],[2,2,2,1],[1,3,4,0],[1,1,2,1]],[[0,1,2,1],[2,2,2,1],[1,3,3,0],[1,1,3,1]],[[0,1,2,1],[2,2,2,1],[1,3,3,0],[1,1,2,2]],[[0,1,2,1],[2,2,2,1],[1,4,3,0],[1,2,1,1]],[[0,1,2,1],[2,2,2,1],[1,3,4,0],[1,2,1,1]],[[0,1,2,1],[2,2,2,1],[1,3,3,0],[2,2,1,1]],[[0,1,2,1],[2,2,2,1],[1,3,3,0],[1,3,1,1]],[[0,1,2,1],[2,2,2,1],[1,4,3,1],[1,1,2,0]],[[0,1,2,1],[2,2,2,1],[1,3,4,1],[1,1,2,0]],[[0,1,2,1],[2,2,2,1],[1,3,3,1],[1,1,3,0]],[[0,1,2,1],[2,2,2,1],[1,4,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,2,1],[1,3,4,1],[1,2,0,1]],[[0,1,2,1],[2,2,2,1],[1,3,3,1],[2,2,0,1]],[[0,1,2,1],[2,2,2,1],[1,3,3,1],[1,3,0,1]],[[0,1,2,1],[2,2,2,1],[1,4,3,1],[1,2,1,0]],[[0,1,2,1],[2,2,2,1],[1,3,4,1],[1,2,1,0]],[[0,1,2,1],[2,2,2,1],[1,3,3,1],[2,2,1,0]],[[0,1,2,1],[2,2,2,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,1,0],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,1,0],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,1,0],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,1,0],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,1,0],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[3,2,2,1],[2,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,1],[3,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,1],[2,1,4,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,1],[2,1,3,0],[2,2,2,1]],[[0,1,2,1],[2,2,2,1],[2,1,3,0],[1,3,2,1]],[[0,1,2,1],[2,2,2,1],[2,1,3,0],[1,2,3,1]],[[0,1,2,1],[2,2,2,1],[2,1,3,0],[1,2,2,2]],[[0,1,2,1],[3,2,2,1],[2,1,3,1],[1,2,2,0]],[[0,1,2,1],[2,2,2,1],[3,1,3,1],[1,2,2,0]],[[0,1,2,1],[2,2,2,1],[2,1,4,1],[1,2,2,0]],[[0,1,2,1],[2,2,2,1],[2,1,3,1],[2,2,2,0]],[[0,1,2,1],[2,2,2,1],[2,1,3,1],[1,3,2,0]],[[0,1,2,1],[2,2,2,1],[2,1,3,1],[1,2,3,0]],[[0,1,2,1],[3,2,2,1],[2,2,2,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,1],[3,2,2,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,1],[2,2,2,0],[2,2,2,1]],[[0,1,2,1],[2,2,2,1],[2,2,2,0],[1,3,2,1]],[[0,1,2,1],[2,2,2,1],[2,2,2,0],[1,2,3,1]],[[0,1,2,1],[2,2,2,1],[2,2,2,0],[1,2,2,2]],[[0,1,2,1],[3,2,2,1],[2,2,2,1],[1,2,2,0]],[[0,1,2,1],[2,2,2,1],[3,2,2,1],[1,2,2,0]],[[0,1,2,1],[2,2,2,1],[2,2,2,1],[2,2,2,0]],[[0,1,2,1],[2,2,2,1],[2,2,2,1],[1,3,2,0]],[[0,1,2,1],[2,2,2,1],[2,2,2,1],[1,2,3,0]],[[0,1,2,1],[2,2,2,1],[2,2,4,0],[0,2,2,1]],[[0,1,2,1],[2,2,2,1],[2,2,3,0],[0,3,2,1]],[[0,1,2,1],[2,2,2,1],[2,2,3,0],[0,2,3,1]],[[0,1,2,1],[2,2,2,1],[2,2,3,0],[0,2,2,2]],[[0,1,2,1],[3,2,2,1],[2,2,3,0],[1,2,1,1]],[[0,1,2,1],[2,2,2,1],[3,2,3,0],[1,2,1,1]],[[0,1,2,1],[2,2,2,1],[2,2,3,0],[2,2,1,1]],[[0,1,2,1],[2,2,2,1],[2,2,3,0],[1,3,1,1]],[[0,1,2,1],[2,2,2,1],[2,2,4,1],[0,2,2,0]],[[0,1,2,1],[2,2,2,1],[2,2,3,1],[0,3,2,0]],[[0,1,2,1],[2,2,2,1],[2,2,3,1],[0,2,3,0]],[[0,1,2,1],[3,2,2,1],[2,2,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,2,1],[3,2,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,2,1],[2,2,3,1],[2,2,0,1]],[[0,1,2,1],[2,2,2,1],[2,2,3,1],[1,3,0,1]],[[0,1,2,1],[3,2,2,1],[2,2,3,1],[1,2,1,0]],[[0,1,2,1],[2,2,2,1],[3,2,3,1],[1,2,1,0]],[[0,1,2,1],[2,2,2,1],[2,2,3,1],[2,2,1,0]],[[0,1,2,1],[2,2,2,1],[2,2,3,1],[1,3,1,0]],[[0,1,2,1],[2,2,2,1],[3,3,1,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,1],[2,3,1,0],[2,2,2,1]],[[0,1,2,1],[2,2,2,1],[2,3,1,0],[1,3,2,1]],[[0,1,2,1],[2,2,2,1],[3,3,1,1],[1,2,2,0]],[[0,1,2,1],[2,2,2,1],[2,3,1,1],[2,2,2,0]],[[0,1,2,1],[2,2,2,1],[2,3,1,1],[1,3,2,0]],[[0,1,2,1],[3,2,2,1],[2,3,2,0],[0,2,2,1]],[[0,1,2,1],[2,2,2,1],[3,3,2,0],[0,2,2,1]],[[0,1,2,1],[2,2,2,1],[2,4,2,0],[0,2,2,1]],[[0,1,2,1],[2,2,2,1],[2,3,2,0],[0,3,2,1]],[[0,1,2,1],[2,2,2,1],[2,3,2,0],[0,2,3,1]],[[0,1,2,1],[2,2,2,1],[2,3,2,0],[0,2,2,2]],[[0,1,2,1],[3,2,2,1],[2,3,2,0],[1,1,2,1]],[[0,1,2,1],[2,2,2,1],[3,3,2,0],[1,1,2,1]],[[0,1,2,1],[2,2,2,1],[2,4,2,0],[1,1,2,1]],[[0,1,2,1],[2,2,2,1],[2,3,2,0],[2,1,2,1]],[[0,1,2,1],[3,2,2,1],[2,3,2,1],[0,2,2,0]],[[0,1,2,1],[2,2,2,1],[3,3,2,1],[0,2,2,0]],[[0,1,2,1],[2,2,2,1],[2,4,2,1],[0,2,2,0]],[[0,1,2,1],[2,2,2,1],[2,3,2,1],[0,3,2,0]],[[0,1,2,1],[2,2,2,1],[2,3,2,1],[0,2,3,0]],[[0,1,2,1],[3,2,2,1],[2,3,2,1],[1,1,2,0]],[[0,1,2,1],[2,2,2,1],[3,3,2,1],[1,1,2,0]],[[0,1,2,1],[2,2,2,1],[2,4,2,1],[1,1,2,0]],[[0,1,2,1],[2,2,2,1],[2,3,2,1],[2,1,2,0]],[[0,1,2,1],[3,2,2,1],[2,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,2,2,1],[3,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,2,2,1],[2,4,3,0],[0,1,2,1]],[[0,1,2,1],[2,2,2,1],[2,3,4,0],[0,1,2,1]],[[0,1,2,1],[2,2,2,1],[2,3,3,0],[0,1,3,1]],[[0,1,2,1],[2,2,2,1],[2,3,3,0],[0,1,2,2]],[[0,1,2,1],[3,2,2,1],[2,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,2,2,1],[3,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,2,2,1],[2,4,3,0],[0,2,1,1]],[[0,1,2,1],[2,2,2,1],[2,3,4,0],[0,2,1,1]],[[0,1,2,1],[2,2,2,1],[2,3,3,0],[0,3,1,1]],[[0,1,2,1],[3,2,2,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[2,2,2,1],[3,3,3,0],[1,0,2,1]],[[0,1,2,1],[2,2,2,1],[2,4,3,0],[1,0,2,1]],[[0,1,2,1],[2,2,2,1],[2,3,4,0],[1,0,2,1]],[[0,1,2,1],[2,2,2,1],[2,3,3,0],[2,0,2,1]],[[0,1,2,1],[2,2,2,1],[2,3,3,0],[1,0,3,1]],[[0,1,2,1],[2,2,2,1],[2,3,3,0],[1,0,2,2]],[[0,1,2,1],[3,2,2,1],[2,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,2,2,1],[3,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,2,2,1],[2,4,3,0],[1,1,1,1]],[[0,1,2,1],[2,2,2,1],[2,3,4,0],[1,1,1,1]],[[0,1,2,1],[2,2,2,1],[2,3,3,0],[2,1,1,1]],[[0,1,2,1],[3,2,2,1],[2,3,3,0],[1,2,0,1]],[[0,1,2,1],[2,2,2,1],[3,3,3,0],[1,2,0,1]],[[0,1,2,1],[2,2,2,1],[2,4,3,0],[1,2,0,1]],[[0,1,2,1],[2,2,2,1],[2,3,3,0],[2,2,0,1]],[[0,1,2,1],[3,2,2,1],[2,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,2,2,1],[3,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,2,2,1],[2,4,3,1],[0,1,1,1]],[[0,1,2,1],[2,2,2,1],[2,3,4,1],[0,1,1,1]],[[0,1,2,1],[3,2,2,1],[2,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,2,2,1],[3,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,2,2,1],[2,4,3,1],[0,1,2,0]],[[0,1,2,1],[2,2,2,1],[2,3,4,1],[0,1,2,0]],[[0,1,2,1],[2,2,2,1],[2,3,3,1],[0,1,3,0]],[[0,1,2,1],[3,2,2,1],[2,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,2,2,1],[3,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,2,2,1],[2,4,3,1],[0,2,0,1]],[[0,1,2,1],[2,2,2,1],[2,3,4,1],[0,2,0,1]],[[0,1,2,1],[2,2,2,1],[2,3,3,1],[0,3,0,1]],[[0,1,2,1],[3,2,2,1],[2,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,2,2,1],[3,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,2,2,1],[2,4,3,1],[0,2,1,0]],[[0,1,2,1],[2,2,2,1],[2,3,4,1],[0,2,1,0]],[[0,1,2,1],[2,2,2,1],[2,3,3,1],[0,3,1,0]],[[0,1,2,1],[3,2,2,1],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,2,2,1],[3,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,2,2,1],[2,4,3,1],[1,0,1,1]],[[0,1,2,1],[2,2,2,1],[2,3,4,1],[1,0,1,1]],[[0,1,2,1],[2,2,2,1],[2,3,3,1],[2,0,1,1]],[[0,1,2,1],[3,2,2,1],[2,3,3,1],[1,0,2,0]],[[0,1,2,1],[2,2,2,1],[3,3,3,1],[1,0,2,0]],[[0,1,2,1],[2,2,2,1],[2,4,3,1],[1,0,2,0]],[[0,1,2,1],[2,2,2,1],[2,3,4,1],[1,0,2,0]],[[0,1,2,1],[2,2,2,1],[2,3,3,1],[2,0,2,0]],[[0,1,2,1],[2,2,2,1],[2,3,3,1],[1,0,3,0]],[[0,1,2,1],[3,2,2,1],[2,3,3,1],[1,1,0,1]],[[0,1,2,1],[2,2,2,1],[3,3,3,1],[1,1,0,1]],[[0,1,2,1],[2,2,2,1],[2,4,3,1],[1,1,0,1]],[[0,1,2,1],[2,2,2,1],[2,3,4,1],[1,1,0,1]],[[0,1,2,1],[2,2,2,1],[2,3,3,1],[2,1,0,1]],[[0,1,2,1],[3,2,2,1],[2,3,3,1],[1,1,1,0]],[[0,1,2,1],[2,2,2,1],[3,3,3,1],[1,1,1,0]],[[0,1,2,1],[2,2,2,1],[2,4,3,1],[1,1,1,0]],[[0,1,2,1],[2,2,2,1],[2,3,4,1],[1,1,1,0]],[[0,1,2,1],[2,2,2,1],[2,3,3,1],[2,1,1,0]],[[0,1,2,1],[3,2,2,1],[2,3,3,1],[1,2,0,0]],[[0,1,2,1],[2,2,2,1],[3,3,3,1],[1,2,0,0]],[[0,1,2,1],[2,2,2,1],[2,4,3,1],[1,2,0,0]],[[0,1,2,1],[2,2,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,2,1,0],[2,3,0,2],[1,3,2,0]],[[1,2,2,1],[2,2,1,0],[2,3,0,2],[2,2,2,0]],[[1,2,2,1],[2,2,1,0],[3,3,0,2],[1,2,2,0]],[[1,2,2,1],[3,2,1,0],[2,3,0,2],[1,2,2,0]],[[1,3,2,1],[2,2,1,0],[2,3,0,2],[1,2,2,0]],[[2,2,2,1],[2,2,1,0],[2,3,0,2],[1,2,2,0]],[[1,2,2,1],[2,2,1,0],[2,3,0,1],[1,3,2,1]],[[1,2,2,1],[2,2,1,0],[2,3,0,1],[2,2,2,1]],[[1,2,2,1],[2,2,1,0],[3,3,0,1],[1,2,2,1]],[[1,2,2,1],[3,2,1,0],[2,3,0,1],[1,2,2,1]],[[1,3,2,1],[2,2,1,0],[2,3,0,1],[1,2,2,1]],[[2,2,2,1],[2,2,1,0],[2,3,0,1],[1,2,2,1]],[[1,2,2,1],[2,2,1,0],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[2,2,1,0],[3,2,3,2],[1,2,0,0]],[[1,2,2,1],[3,2,1,0],[2,2,3,2],[1,2,0,0]],[[1,2,2,2],[2,2,1,0],[2,2,3,2],[1,2,0,0]],[[1,2,3,1],[2,2,1,0],[2,2,3,2],[1,2,0,0]],[[1,3,2,1],[2,2,1,0],[2,2,3,2],[1,2,0,0]],[[2,2,2,1],[2,2,1,0],[2,2,3,2],[1,2,0,0]],[[1,2,2,1],[2,2,1,0],[2,2,3,2],[2,1,1,0]],[[1,2,2,1],[2,2,1,0],[3,2,3,2],[1,1,1,0]],[[1,2,2,1],[3,2,1,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,2,1,0],[2,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,2,1,0],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,2,1,0],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,2,1,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,2,1,0],[2,2,3,2],[2,1,0,1]],[[1,2,2,1],[2,2,1,0],[3,2,3,2],[1,1,0,1]],[[1,2,2,1],[3,2,1,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,2,1,0],[2,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,2,1,0],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,2,1,0],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,2,1,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,2,1,0],[2,2,3,2],[2,0,2,0]],[[1,2,2,1],[2,2,1,0],[3,2,3,2],[1,0,2,0]],[[1,2,2,1],[3,2,1,0],[2,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,1,0],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,1,0],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,1,0],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,1,0],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,1,0],[2,2,3,2],[2,0,1,1]],[[1,2,2,1],[2,2,1,0],[3,2,3,2],[1,0,1,1]],[[1,2,2,1],[3,2,1,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,1,0],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,1,0],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,1,0],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,1,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,2,1,0],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,2,1,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,2],[2,2,1,0],[2,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,2,1,0],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,1,0],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,1,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,1,0],[3,2,3,2],[0,2,0,1]],[[1,2,2,1],[3,2,1,0],[2,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,2,1,0],[2,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,2,1,0],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,1,0],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,1,0],[2,2,3,2],[0,2,0,1]],[[0,1,3,1],[2,2,2,2],[0,2,1,2],[1,2,2,1]],[[0,1,2,2],[2,2,2,2],[0,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,3],[0,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,2],[0,2,1,3],[1,2,2,1]],[[0,1,2,1],[2,2,2,2],[0,2,1,2],[2,2,2,1]],[[0,1,2,1],[2,2,2,2],[0,2,1,2],[1,3,2,1]],[[0,1,2,1],[2,2,2,2],[0,2,1,2],[1,2,3,1]],[[0,1,2,1],[2,2,2,2],[0,2,1,2],[1,2,2,2]],[[0,1,3,1],[2,2,2,2],[0,2,2,2],[1,2,1,1]],[[0,1,2,2],[2,2,2,2],[0,2,2,2],[1,2,1,1]],[[0,1,2,1],[2,2,2,3],[0,2,2,2],[1,2,1,1]],[[0,1,2,1],[2,2,2,2],[0,2,2,3],[1,2,1,1]],[[0,1,2,1],[2,2,2,2],[0,2,2,2],[1,2,1,2]],[[0,1,3,1],[2,2,2,2],[0,2,2,2],[1,2,2,0]],[[0,1,2,2],[2,2,2,2],[0,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,3],[0,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,2],[0,2,2,3],[1,2,2,0]],[[0,1,3,1],[2,2,2,2],[0,2,3,0],[1,2,2,1]],[[0,1,2,2],[2,2,2,2],[0,2,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,3],[0,2,3,0],[1,2,2,1]],[[0,1,3,1],[2,2,2,2],[0,2,3,1],[1,2,1,1]],[[0,1,2,2],[2,2,2,2],[0,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,2,3],[0,2,3,1],[1,2,1,1]],[[0,1,3,1],[2,2,2,2],[0,2,3,1],[1,2,2,0]],[[0,1,2,2],[2,2,2,2],[0,2,3,1],[1,2,2,0]],[[0,1,2,1],[2,2,2,3],[0,2,3,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,0],[3,2,3,2],[0,1,2,0]],[[1,2,2,1],[3,2,1,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,1,0],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,1,0],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,1,0],[2,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,1,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,1,0],[3,2,3,2],[0,1,1,1]],[[1,2,2,1],[3,2,1,0],[2,2,3,2],[0,1,1,1]],[[0,1,3,1],[2,2,2,2],[0,3,0,2],[1,2,2,1]],[[0,1,2,2],[2,2,2,2],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,3],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,2],[0,4,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,2],[0,3,0,3],[1,2,2,1]],[[0,1,2,1],[2,2,2,2],[0,3,0,2],[2,2,2,1]],[[0,1,2,1],[2,2,2,2],[0,3,0,2],[1,3,2,1]],[[0,1,2,1],[2,2,2,2],[0,3,0,2],[1,2,3,1]],[[0,1,2,1],[2,2,2,2],[0,3,0,2],[1,2,2,2]],[[0,1,3,1],[2,2,2,2],[0,3,1,2],[1,1,2,1]],[[0,1,2,2],[2,2,2,2],[0,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,2,2,3],[0,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,2,2,2],[0,3,1,3],[1,1,2,1]],[[0,1,2,1],[2,2,2,2],[0,3,1,2],[1,1,3,1]],[[0,1,2,1],[2,2,2,2],[0,3,1,2],[1,1,2,2]],[[0,1,3,1],[2,2,2,2],[0,3,2,2],[1,0,2,1]],[[0,1,2,2],[2,2,2,2],[0,3,2,2],[1,0,2,1]],[[0,1,2,1],[2,2,2,3],[0,3,2,2],[1,0,2,1]],[[0,1,2,1],[2,2,2,2],[0,3,2,3],[1,0,2,1]],[[0,1,2,1],[2,2,2,2],[0,3,2,2],[1,0,2,2]],[[0,1,3,1],[2,2,2,2],[0,3,2,2],[1,1,1,1]],[[0,1,2,2],[2,2,2,2],[0,3,2,2],[1,1,1,1]],[[0,1,2,1],[2,2,2,3],[0,3,2,2],[1,1,1,1]],[[0,1,2,1],[2,2,2,2],[0,3,2,3],[1,1,1,1]],[[0,1,2,1],[2,2,2,2],[0,3,2,2],[1,1,1,2]],[[0,1,3,1],[2,2,2,2],[0,3,2,2],[1,1,2,0]],[[0,1,2,2],[2,2,2,2],[0,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,2,2,3],[0,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,2,2,2],[0,3,2,3],[1,1,2,0]],[[0,1,3,1],[2,2,2,2],[0,3,2,2],[1,2,0,1]],[[0,1,2,2],[2,2,2,2],[0,3,2,2],[1,2,0,1]],[[0,1,2,1],[2,2,2,3],[0,3,2,2],[1,2,0,1]],[[0,1,2,1],[2,2,2,2],[0,3,2,3],[1,2,0,1]],[[0,1,2,1],[2,2,2,2],[0,3,2,2],[1,2,0,2]],[[0,1,3,1],[2,2,2,2],[0,3,2,2],[1,2,1,0]],[[0,1,2,2],[2,2,2,2],[0,3,2,2],[1,2,1,0]],[[0,1,2,1],[2,2,2,3],[0,3,2,2],[1,2,1,0]],[[0,1,2,1],[2,2,2,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,2],[2,2,1,0],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,1,0],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,1,0],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,1,0],[2,2,3,2],[0,1,1,1]],[[0,1,3,1],[2,2,2,2],[0,3,3,0],[1,1,2,1]],[[0,1,2,2],[2,2,2,2],[0,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,2,2,3],[0,3,3,0],[1,1,2,1]],[[0,1,3,1],[2,2,2,2],[0,3,3,0],[1,2,1,1]],[[0,1,2,2],[2,2,2,2],[0,3,3,0],[1,2,1,1]],[[0,1,2,1],[2,2,2,3],[0,3,3,0],[1,2,1,1]],[[0,1,3,1],[2,2,2,2],[0,3,3,1],[1,0,2,1]],[[0,1,2,2],[2,2,2,2],[0,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,2,3],[0,3,3,1],[1,0,2,1]],[[0,1,3,1],[2,2,2,2],[0,3,3,1],[1,1,1,1]],[[0,1,2,2],[2,2,2,2],[0,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,2,3],[0,3,3,1],[1,1,1,1]],[[0,1,3,1],[2,2,2,2],[0,3,3,1],[1,1,2,0]],[[0,1,2,2],[2,2,2,2],[0,3,3,1],[1,1,2,0]],[[0,1,2,1],[2,2,2,3],[0,3,3,1],[1,1,2,0]],[[0,1,3,1],[2,2,2,2],[0,3,3,1],[1,2,0,1]],[[0,1,2,2],[2,2,2,2],[0,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,2,3],[0,3,3,1],[1,2,0,1]],[[0,1,3,1],[2,2,2,2],[0,3,3,1],[1,2,1,0]],[[0,1,2,2],[2,2,2,2],[0,3,3,1],[1,2,1,0]],[[0,1,2,1],[2,2,2,3],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,1,0],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[2,2,1,0],[3,2,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,1,0],[2,2,3,1],[1,2,0,1]],[[1,2,3,1],[2,2,1,0],[2,2,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,1,0],[2,2,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,1,0],[2,2,3,1],[1,2,0,1]],[[0,1,3,1],[2,2,2,2],[0,3,3,2],[1,1,0,1]],[[0,1,2,2],[2,2,2,2],[0,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,2,3],[0,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,2,2],[0,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,2,1,0],[2,2,3,1],[2,1,1,1]],[[1,2,2,1],[2,2,1,0],[3,2,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,1,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,1,0],[2,2,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,1,0],[2,2,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,1,0],[2,2,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,1,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,1],[2,2,1,0],[2,2,3,1],[2,0,2,1]],[[1,2,2,1],[2,2,1,0],[3,2,3,1],[1,0,2,1]],[[1,2,2,1],[3,2,1,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,2],[2,2,1,0],[2,2,3,1],[1,0,2,1]],[[1,2,3,1],[2,2,1,0],[2,2,3,1],[1,0,2,1]],[[1,3,2,1],[2,2,1,0],[2,2,3,1],[1,0,2,1]],[[2,2,2,1],[2,2,1,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,1],[2,2,1,0],[3,2,3,1],[0,2,1,1]],[[1,2,2,1],[3,2,1,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,1,0],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,1,0],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,1,0],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,1,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[2,2,1,0],[3,2,3,1],[0,1,2,1]],[[1,2,2,1],[3,2,1,0],[2,2,3,1],[0,1,2,1]],[[1,2,2,2],[2,2,1,0],[2,2,3,1],[0,1,2,1]],[[1,2,3,1],[2,2,1,0],[2,2,3,1],[0,1,2,1]],[[0,1,3,1],[2,2,2,2],[1,2,1,2],[0,2,2,1]],[[0,1,2,2],[2,2,2,2],[1,2,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,2,3],[1,2,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,2,2],[1,2,1,3],[0,2,2,1]],[[0,1,2,1],[2,2,2,2],[1,2,1,2],[0,3,2,1]],[[0,1,2,1],[2,2,2,2],[1,2,1,2],[0,2,3,1]],[[0,1,2,1],[2,2,2,2],[1,2,1,2],[0,2,2,2]],[[0,1,3,1],[2,2,2,2],[1,2,2,2],[0,2,1,1]],[[0,1,2,2],[2,2,2,2],[1,2,2,2],[0,2,1,1]],[[0,1,2,1],[2,2,2,3],[1,2,2,2],[0,2,1,1]],[[0,1,2,1],[2,2,2,2],[1,2,2,3],[0,2,1,1]],[[0,1,2,1],[2,2,2,2],[1,2,2,2],[0,2,1,2]],[[0,1,3,1],[2,2,2,2],[1,2,2,2],[0,2,2,0]],[[0,1,2,2],[2,2,2,2],[1,2,2,2],[0,2,2,0]],[[0,1,2,1],[2,2,2,3],[1,2,2,2],[0,2,2,0]],[[0,1,2,1],[2,2,2,2],[1,2,2,3],[0,2,2,0]],[[1,3,2,1],[2,2,1,0],[2,2,3,1],[0,1,2,1]],[[2,2,2,1],[2,2,1,0],[2,2,3,1],[0,1,2,1]],[[0,1,3,1],[2,2,2,2],[1,2,3,0],[0,2,2,1]],[[0,1,2,2],[2,2,2,2],[1,2,3,0],[0,2,2,1]],[[0,1,2,1],[2,2,2,3],[1,2,3,0],[0,2,2,1]],[[0,1,3,1],[2,2,2,2],[1,2,3,1],[0,2,1,1]],[[0,1,2,2],[2,2,2,2],[1,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,2,3],[1,2,3,1],[0,2,1,1]],[[0,1,3,1],[2,2,2,2],[1,2,3,1],[0,2,2,0]],[[0,1,2,2],[2,2,2,2],[1,2,3,1],[0,2,2,0]],[[0,1,2,1],[2,2,2,3],[1,2,3,1],[0,2,2,0]],[[1,2,2,1],[2,2,1,0],[2,2,3,0],[2,1,2,1]],[[1,2,2,1],[2,2,1,0],[3,2,3,0],[1,1,2,1]],[[1,2,2,1],[3,2,1,0],[2,2,3,0],[1,1,2,1]],[[1,2,3,1],[2,2,1,0],[2,2,3,0],[1,1,2,1]],[[1,3,2,1],[2,2,1,0],[2,2,3,0],[1,1,2,1]],[[2,2,2,1],[2,2,1,0],[2,2,3,0],[1,1,2,1]],[[1,2,2,1],[2,2,1,0],[3,2,3,0],[0,2,2,1]],[[1,2,2,1],[3,2,1,0],[2,2,3,0],[0,2,2,1]],[[1,2,3,1],[2,2,1,0],[2,2,3,0],[0,2,2,1]],[[1,3,2,1],[2,2,1,0],[2,2,3,0],[0,2,2,1]],[[2,2,2,1],[2,2,1,0],[2,2,3,0],[0,2,2,1]],[[1,2,2,1],[2,2,1,0],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[2,2,1,0],[3,2,2,2],[1,1,2,0]],[[1,2,2,1],[3,2,1,0],[2,2,2,2],[1,1,2,0]],[[1,2,2,2],[2,2,1,0],[2,2,2,2],[1,1,2,0]],[[1,2,3,1],[2,2,1,0],[2,2,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,1,0],[2,2,2,2],[1,1,2,0]],[[2,2,2,1],[2,2,1,0],[2,2,2,2],[1,1,2,0]],[[0,1,3,1],[2,2,2,2],[1,3,0,2],[0,2,2,1]],[[0,1,2,2],[2,2,2,2],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,2,3],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,2,2],[1,4,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,2,2],[1,3,0,3],[0,2,2,1]],[[0,1,2,1],[2,2,2,2],[1,3,0,2],[0,3,2,1]],[[0,1,2,1],[2,2,2,2],[1,3,0,2],[0,2,3,1]],[[0,1,2,1],[2,2,2,2],[1,3,0,2],[0,2,2,2]],[[0,1,3,1],[2,2,2,2],[1,3,1,2],[0,1,2,1]],[[0,1,2,2],[2,2,2,2],[1,3,1,2],[0,1,2,1]],[[0,1,2,1],[2,2,2,3],[1,3,1,2],[0,1,2,1]],[[0,1,2,1],[2,2,2,2],[1,3,1,3],[0,1,2,1]],[[0,1,2,1],[2,2,2,2],[1,3,1,2],[0,1,3,1]],[[0,1,2,1],[2,2,2,2],[1,3,1,2],[0,1,2,2]],[[0,1,3,1],[2,2,2,2],[1,3,1,2],[1,0,2,1]],[[0,1,2,2],[2,2,2,2],[1,3,1,2],[1,0,2,1]],[[0,1,2,1],[2,2,2,3],[1,3,1,2],[1,0,2,1]],[[0,1,2,1],[2,2,2,2],[1,3,1,3],[1,0,2,1]],[[0,1,2,1],[2,2,2,2],[1,3,1,2],[1,0,3,1]],[[0,1,2,1],[2,2,2,2],[1,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,2,1,0],[3,2,2,2],[0,2,2,0]],[[1,2,2,1],[3,2,1,0],[2,2,2,2],[0,2,2,0]],[[1,2,2,2],[2,2,1,0],[2,2,2,2],[0,2,2,0]],[[1,2,3,1],[2,2,1,0],[2,2,2,2],[0,2,2,0]],[[1,3,2,1],[2,2,1,0],[2,2,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,1,0],[2,2,2,2],[0,2,2,0]],[[0,1,3,1],[2,2,2,2],[1,3,2,2],[0,0,2,1]],[[0,1,2,2],[2,2,2,2],[1,3,2,2],[0,0,2,1]],[[0,1,2,1],[2,2,2,3],[1,3,2,2],[0,0,2,1]],[[0,1,2,1],[2,2,2,2],[1,3,2,3],[0,0,2,1]],[[0,1,2,1],[2,2,2,2],[1,3,2,2],[0,0,2,2]],[[0,1,3,1],[2,2,2,2],[1,3,2,2],[0,1,1,1]],[[0,1,2,2],[2,2,2,2],[1,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,2,2,3],[1,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,2,2,2],[1,3,2,3],[0,1,1,1]],[[0,1,2,1],[2,2,2,2],[1,3,2,2],[0,1,1,2]],[[0,1,3,1],[2,2,2,2],[1,3,2,2],[0,1,2,0]],[[0,1,2,2],[2,2,2,2],[1,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,2,2,3],[1,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,2,2,2],[1,3,2,3],[0,1,2,0]],[[0,1,3,1],[2,2,2,2],[1,3,2,2],[0,2,0,1]],[[0,1,2,2],[2,2,2,2],[1,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,2,2,3],[1,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,2,2,2],[1,3,2,3],[0,2,0,1]],[[0,1,2,1],[2,2,2,2],[1,3,2,2],[0,2,0,2]],[[0,1,3,1],[2,2,2,2],[1,3,2,2],[0,2,1,0]],[[0,1,2,2],[2,2,2,2],[1,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,2,2,3],[1,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,2,2,2],[1,3,2,3],[0,2,1,0]],[[0,1,3,1],[2,2,2,2],[1,3,2,2],[1,0,1,1]],[[0,1,2,2],[2,2,2,2],[1,3,2,2],[1,0,1,1]],[[0,1,2,1],[2,2,2,3],[1,3,2,2],[1,0,1,1]],[[0,1,2,1],[2,2,2,2],[1,3,2,3],[1,0,1,1]],[[0,1,2,1],[2,2,2,2],[1,3,2,2],[1,0,1,2]],[[0,1,3,1],[2,2,2,2],[1,3,2,2],[1,0,2,0]],[[0,1,2,2],[2,2,2,2],[1,3,2,2],[1,0,2,0]],[[0,1,2,1],[2,2,2,3],[1,3,2,2],[1,0,2,0]],[[0,1,2,1],[2,2,2,2],[1,3,2,3],[1,0,2,0]],[[0,1,3,1],[2,2,2,2],[1,3,2,2],[1,1,0,1]],[[0,1,2,2],[2,2,2,2],[1,3,2,2],[1,1,0,1]],[[0,1,2,1],[2,2,2,3],[1,3,2,2],[1,1,0,1]],[[0,1,2,1],[2,2,2,2],[1,3,2,3],[1,1,0,1]],[[0,1,2,1],[2,2,2,2],[1,3,2,2],[1,1,0,2]],[[0,1,3,1],[2,2,2,2],[1,3,2,2],[1,1,1,0]],[[0,1,2,2],[2,2,2,2],[1,3,2,2],[1,1,1,0]],[[0,1,2,1],[2,2,2,3],[1,3,2,2],[1,1,1,0]],[[0,1,2,1],[2,2,2,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,2,1,0],[2,2,2,1],[2,1,2,1]],[[1,2,2,1],[2,2,1,0],[3,2,2,1],[1,1,2,1]],[[1,2,2,1],[3,2,1,0],[2,2,2,1],[1,1,2,1]],[[1,2,2,2],[2,2,1,0],[2,2,2,1],[1,1,2,1]],[[1,2,3,1],[2,2,1,0],[2,2,2,1],[1,1,2,1]],[[1,3,2,1],[2,2,1,0],[2,2,2,1],[1,1,2,1]],[[2,2,2,1],[2,2,1,0],[2,2,2,1],[1,1,2,1]],[[1,2,2,1],[2,2,1,0],[3,2,2,1],[0,2,2,1]],[[1,2,2,1],[3,2,1,0],[2,2,2,1],[0,2,2,1]],[[1,2,2,2],[2,2,1,0],[2,2,2,1],[0,2,2,1]],[[1,2,3,1],[2,2,1,0],[2,2,2,1],[0,2,2,1]],[[1,3,2,1],[2,2,1,0],[2,2,2,1],[0,2,2,1]],[[2,2,2,1],[2,2,1,0],[2,2,2,1],[0,2,2,1]],[[1,2,2,1],[2,2,1,0],[2,2,1,2],[2,1,2,1]],[[1,2,2,1],[2,2,1,0],[3,2,1,2],[1,1,2,1]],[[1,2,2,1],[3,2,1,0],[2,2,1,2],[1,1,2,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,0],[0,1,2,1]],[[0,1,2,2],[2,2,2,2],[1,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,2,2,3],[1,3,3,0],[0,1,2,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,0],[0,2,1,1]],[[0,1,2,2],[2,2,2,2],[1,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,2,2,3],[1,3,3,0],[0,2,1,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,0],[1,0,2,1]],[[0,1,2,2],[2,2,2,2],[1,3,3,0],[1,0,2,1]],[[0,1,2,1],[2,2,2,3],[1,3,3,0],[1,0,2,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,0],[1,1,1,1]],[[0,1,2,2],[2,2,2,2],[1,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,2,2,3],[1,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,2,1,0],[2,2,1,2],[1,1,2,1]],[[1,2,3,1],[2,2,1,0],[2,2,1,2],[1,1,2,1]],[[1,3,2,1],[2,2,1,0],[2,2,1,2],[1,1,2,1]],[[2,2,2,1],[2,2,1,0],[2,2,1,2],[1,1,2,1]],[[1,2,2,1],[2,2,1,0],[3,2,1,2],[0,2,2,1]],[[1,2,2,1],[3,2,1,0],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[2,2,1,0],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[2,2,1,0],[2,2,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,1,0],[2,2,1,2],[0,2,2,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,1],[0,0,2,1]],[[0,1,2,2],[2,2,2,2],[1,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,2,2,3],[1,3,3,1],[0,0,2,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,1],[0,1,1,1]],[[0,1,2,2],[2,2,2,2],[1,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,2,2,3],[1,3,3,1],[0,1,1,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,1],[0,1,2,0]],[[0,1,2,2],[2,2,2,2],[1,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,2,2,3],[1,3,3,1],[0,1,2,0]],[[0,1,3,1],[2,2,2,2],[1,3,3,1],[0,2,0,1]],[[0,1,2,2],[2,2,2,2],[1,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,2,2,3],[1,3,3,1],[0,2,0,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,1],[0,2,1,0]],[[0,1,2,2],[2,2,2,2],[1,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,2,2,3],[1,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,1,0],[2,2,1,2],[0,2,2,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,1],[1,0,1,1]],[[0,1,2,2],[2,2,2,2],[1,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,2,2,3],[1,3,3,1],[1,0,1,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,1],[1,0,2,0]],[[0,1,2,2],[2,2,2,2],[1,3,3,1],[1,0,2,0]],[[0,1,2,1],[2,2,2,3],[1,3,3,1],[1,0,2,0]],[[0,1,3,1],[2,2,2,2],[1,3,3,1],[1,1,0,1]],[[0,1,2,2],[2,2,2,2],[1,3,3,1],[1,1,0,1]],[[0,1,2,1],[2,2,2,3],[1,3,3,1],[1,1,0,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,1],[1,1,1,0]],[[0,1,2,2],[2,2,2,2],[1,3,3,1],[1,1,1,0]],[[0,1,2,1],[2,2,2,3],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,1,0],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,1,0],[2,1,3,2],[2,2,1,0]],[[1,2,2,1],[2,2,1,0],[3,1,3,2],[1,2,1,0]],[[1,2,2,1],[3,2,1,0],[2,1,3,2],[1,2,1,0]],[[1,2,2,2],[2,2,1,0],[2,1,3,2],[1,2,1,0]],[[1,2,3,1],[2,2,1,0],[2,1,3,2],[1,2,1,0]],[[1,3,2,1],[2,2,1,0],[2,1,3,2],[1,2,1,0]],[[2,2,2,1],[2,2,1,0],[2,1,3,2],[1,2,1,0]],[[1,2,2,1],[2,2,1,0],[2,1,3,2],[1,3,0,1]],[[1,2,2,1],[2,2,1,0],[2,1,3,2],[2,2,0,1]],[[1,2,2,1],[2,2,1,0],[3,1,3,2],[1,2,0,1]],[[1,2,2,1],[3,2,1,0],[2,1,3,2],[1,2,0,1]],[[1,2,2,2],[2,2,1,0],[2,1,3,2],[1,2,0,1]],[[1,2,3,1],[2,2,1,0],[2,1,3,2],[1,2,0,1]],[[1,3,2,1],[2,2,1,0],[2,1,3,2],[1,2,0,1]],[[2,2,2,1],[2,2,1,0],[2,1,3,2],[1,2,0,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,2],[0,1,0,1]],[[0,1,2,2],[2,2,2,2],[1,3,3,2],[0,1,0,1]],[[0,1,2,1],[2,2,2,3],[1,3,3,2],[0,1,0,1]],[[0,1,2,1],[2,2,2,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,2,1,0],[2,1,3,1],[1,3,1,1]],[[1,2,2,1],[2,2,1,0],[2,1,3,1],[2,2,1,1]],[[1,2,2,1],[2,2,1,0],[3,1,3,1],[1,2,1,1]],[[1,2,2,1],[3,2,1,0],[2,1,3,1],[1,2,1,1]],[[1,2,2,2],[2,2,1,0],[2,1,3,1],[1,2,1,1]],[[1,2,3,1],[2,2,1,0],[2,1,3,1],[1,2,1,1]],[[1,3,2,1],[2,2,1,0],[2,1,3,1],[1,2,1,1]],[[2,2,2,1],[2,2,1,0],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[2,2,1,0],[2,1,3,0],[1,2,3,1]],[[1,2,2,1],[2,2,1,0],[2,1,3,0],[1,3,2,1]],[[1,2,2,1],[2,2,1,0],[2,1,3,0],[2,2,2,1]],[[1,2,2,1],[2,2,1,0],[3,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,0],[2,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,2,1,0],[2,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,0],[2,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,0],[2,1,3,0],[1,2,2,1]],[[0,1,3,1],[2,2,2,2],[1,3,3,2],[1,0,0,1]],[[0,1,2,2],[2,2,2,2],[1,3,3,2],[1,0,0,1]],[[0,1,2,1],[2,2,2,3],[1,3,3,2],[1,0,0,1]],[[0,1,2,1],[2,2,2,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,2,1,0],[2,1,2,2],[1,2,3,0]],[[1,2,2,1],[2,2,1,0],[2,1,2,2],[1,3,2,0]],[[1,2,2,1],[2,2,1,0],[2,1,2,2],[2,2,2,0]],[[1,2,2,1],[2,2,1,0],[3,1,2,2],[1,2,2,0]],[[1,2,2,1],[3,2,1,0],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[2,2,1,0],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,2,1,0],[2,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,2,1,0],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,2,1,0],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,2,1,0],[2,1,2,1],[1,2,2,2]],[[1,2,2,1],[2,2,1,0],[2,1,2,1],[1,2,3,1]],[[1,2,2,1],[2,2,1,0],[2,1,2,1],[1,3,2,1]],[[1,2,2,1],[2,2,1,0],[2,1,2,1],[2,2,2,1]],[[1,2,2,1],[2,2,1,0],[3,1,2,1],[1,2,2,1]],[[1,2,2,1],[3,2,1,0],[2,1,2,1],[1,2,2,1]],[[1,2,2,2],[2,2,1,0],[2,1,2,1],[1,2,2,1]],[[1,2,3,1],[2,2,1,0],[2,1,2,1],[1,2,2,1]],[[1,3,2,1],[2,2,1,0],[2,1,2,1],[1,2,2,1]],[[2,2,2,1],[2,2,1,0],[2,1,2,1],[1,2,2,1]],[[1,2,2,1],[2,2,1,0],[2,1,1,2],[1,2,2,2]],[[1,2,2,1],[2,2,1,0],[2,1,1,2],[1,2,3,1]],[[1,2,2,1],[2,2,1,0],[2,1,1,2],[1,3,2,1]],[[1,2,2,1],[2,2,1,0],[2,1,1,2],[2,2,2,1]],[[1,2,2,1],[2,2,1,0],[2,1,1,3],[1,2,2,1]],[[1,2,2,1],[2,2,1,0],[3,1,1,2],[1,2,2,1]],[[1,2,2,1],[3,2,1,0],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,1,0],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,2,1,0],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,1,0],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,1,0],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[2,2,1,0],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[2,2,1,0],[2,0,3,2],[1,3,2,0]],[[1,2,2,1],[2,2,1,0],[2,0,3,2],[2,2,2,0]],[[1,2,2,1],[2,2,1,0],[2,0,3,3],[1,2,2,0]],[[1,2,2,1],[2,2,1,0],[2,0,4,2],[1,2,2,0]],[[1,2,2,1],[2,2,1,0],[3,0,3,2],[1,2,2,0]],[[1,2,2,1],[3,2,1,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[2,2,1,0],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[2,2,1,0],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[2,2,1,0],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[2,2,1,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[2,2,1,0],[2,0,3,2],[1,2,1,2]],[[1,2,2,1],[2,2,1,0],[2,0,3,3],[1,2,1,1]],[[1,2,2,1],[2,2,1,0],[2,0,4,2],[1,2,1,1]],[[1,2,2,1],[2,2,1,0],[2,0,3,1],[1,2,2,2]],[[1,2,2,1],[2,2,1,0],[2,0,3,1],[1,2,3,1]],[[1,2,2,1],[2,2,1,0],[2,0,3,1],[1,3,2,1]],[[1,2,2,1],[2,2,1,0],[2,0,3,1],[2,2,2,1]],[[1,2,2,1],[2,2,1,0],[2,0,4,1],[1,2,2,1]],[[1,2,2,1],[2,2,1,0],[3,0,3,1],[1,2,2,1]],[[1,2,2,1],[3,2,1,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,2],[2,2,1,0],[2,0,3,1],[1,2,2,1]],[[1,2,3,1],[2,2,1,0],[2,0,3,1],[1,2,2,1]],[[1,3,2,1],[2,2,1,0],[2,0,3,1],[1,2,2,1]],[[2,2,2,1],[2,2,1,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,1],[2,2,1,0],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[2,2,1,0],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[2,2,1,0],[2,0,2,2],[1,3,2,1]],[[0,1,3,1],[2,2,2,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,2],[2,2,2,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[3,2,2,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,3],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,2],[3,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,2],[2,0,1,3],[1,2,2,1]],[[0,1,2,1],[2,2,2,2],[2,0,1,2],[2,2,2,1]],[[0,1,2,1],[2,2,2,2],[2,0,1,2],[1,3,2,1]],[[0,1,2,1],[2,2,2,2],[2,0,1,2],[1,2,3,1]],[[0,1,2,1],[2,2,2,2],[2,0,1,2],[1,2,2,2]],[[0,1,3,1],[2,2,2,2],[2,0,2,2],[1,2,1,1]],[[0,1,2,2],[2,2,2,2],[2,0,2,2],[1,2,1,1]],[[0,1,2,1],[2,2,2,3],[2,0,2,2],[1,2,1,1]],[[0,1,2,1],[2,2,2,2],[2,0,2,3],[1,2,1,1]],[[0,1,2,1],[2,2,2,2],[2,0,2,2],[1,2,1,2]],[[0,1,3,1],[2,2,2,2],[2,0,2,2],[1,2,2,0]],[[0,1,2,2],[2,2,2,2],[2,0,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,3],[2,0,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,2,2],[2,0,2,3],[1,2,2,0]],[[0,1,3,1],[2,2,2,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,2],[2,2,2,2],[2,0,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,2,3],[2,0,3,0],[1,2,2,1]],[[0,1,3,1],[2,2,2,2],[2,0,3,1],[1,2,1,1]],[[0,1,2,2],[2,2,2,2],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,2,3],[2,0,3,1],[1,2,1,1]],[[0,1,3,1],[2,2,2,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,2],[2,2,2,2],[2,0,3,1],[1,2,2,0]],[[0,1,2,1],[2,2,2,3],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,2,1,0],[2,0,2,2],[2,2,2,1]],[[1,2,2,1],[2,2,1,0],[2,0,2,3],[1,2,2,1]],[[1,2,2,1],[2,2,1,0],[3,0,2,2],[1,2,2,1]],[[1,2,2,1],[3,2,1,0],[2,0,2,2],[1,2,2,1]],[[1,2,2,2],[2,2,1,0],[2,0,2,2],[1,2,2,1]],[[1,2,3,1],[2,2,1,0],[2,0,2,2],[1,2,2,1]],[[1,3,2,1],[2,2,1,0],[2,0,2,2],[1,2,2,1]],[[2,2,2,1],[2,2,1,0],[2,0,2,2],[1,2,2,1]],[[0,1,3,1],[2,2,2,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,2],[2,2,2,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[3,2,2,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,3],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,2],[3,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,2,2],[2,1,0,3],[1,2,2,1]],[[0,1,2,1],[2,2,2,2],[2,1,0,2],[2,2,2,1]],[[0,1,2,1],[2,2,2,2],[2,1,0,2],[1,3,2,1]],[[0,1,2,1],[2,2,2,2],[2,1,0,2],[1,2,3,1]],[[0,1,2,1],[2,2,2,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[3,2,1,0],[1,3,3,2],[1,2,0,0]],[[1,2,2,2],[2,2,1,0],[1,3,3,2],[1,2,0,0]],[[1,2,3,1],[2,2,1,0],[1,3,3,2],[1,2,0,0]],[[1,3,2,1],[2,2,1,0],[1,3,3,2],[1,2,0,0]],[[2,2,2,1],[2,2,1,0],[1,3,3,2],[1,2,0,0]],[[1,2,2,1],[3,2,1,0],[1,3,3,2],[1,1,1,0]],[[1,2,2,2],[2,2,1,0],[1,3,3,2],[1,1,1,0]],[[1,2,3,1],[2,2,1,0],[1,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,2,1,0],[1,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,2,1,0],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[3,2,1,0],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,2,1,0],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,2,1,0],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,2,1,0],[1,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,2,1,0],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,2,1,0],[1,3,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,1,0],[1,3,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,1,0],[1,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,1,0],[1,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,1,0],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[3,2,1,0],[1,3,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,1,0],[1,3,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,1,0],[1,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,1,0],[1,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,1,0],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[3,2,1,0],[1,3,3,2],[0,2,1,0]],[[1,2,2,2],[2,2,1,0],[1,3,3,2],[0,2,1,0]],[[1,2,3,1],[2,2,1,0],[1,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,1,0],[1,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,1,0],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[3,2,1,0],[1,3,3,2],[0,2,0,1]],[[1,2,2,2],[2,2,1,0],[1,3,3,2],[0,2,0,1]],[[1,2,3,1],[2,2,1,0],[1,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,1,0],[1,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,1,0],[1,3,3,2],[0,2,0,1]],[[1,2,2,1],[3,2,1,0],[1,3,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,1,0],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,1,0],[1,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,1,0],[1,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,1,0],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[3,2,1,0],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,1,0],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,1,0],[1,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,1,0],[1,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,1,0],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[3,2,1,0],[1,3,3,1],[1,2,0,1]],[[1,2,3,1],[2,2,1,0],[1,3,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,1,0],[1,3,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,1,0],[1,3,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,1,0],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,1,0],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,1,0],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,1,0],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,1,0],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,1,0],[1,3,3,1],[1,0,2,1]],[[1,2,2,2],[2,2,1,0],[1,3,3,1],[1,0,2,1]],[[1,2,3,1],[2,2,1,0],[1,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,2,1,0],[1,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,2,1,0],[1,3,3,1],[1,0,2,1]],[[1,2,2,1],[3,2,1,0],[1,3,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,1,0],[1,3,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,1,0],[1,3,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,1,0],[1,3,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,1,0],[1,3,3,1],[0,2,1,1]],[[1,2,2,1],[3,2,1,0],[1,3,3,1],[0,1,2,1]],[[1,2,2,2],[2,2,1,0],[1,3,3,1],[0,1,2,1]],[[1,2,3,1],[2,2,1,0],[1,3,3,1],[0,1,2,1]],[[1,3,2,1],[2,2,1,0],[1,3,3,1],[0,1,2,1]],[[2,2,2,1],[2,2,1,0],[1,3,3,1],[0,1,2,1]],[[1,2,2,1],[3,2,1,0],[1,3,3,0],[1,1,2,1]],[[1,2,3,1],[2,2,1,0],[1,3,3,0],[1,1,2,1]],[[1,3,2,1],[2,2,1,0],[1,3,3,0],[1,1,2,1]],[[2,2,2,1],[2,2,1,0],[1,3,3,0],[1,1,2,1]],[[1,2,2,1],[3,2,1,0],[1,3,3,0],[0,2,2,1]],[[1,2,3,1],[2,2,1,0],[1,3,3,0],[0,2,2,1]],[[1,3,2,1],[2,2,1,0],[1,3,3,0],[0,2,2,1]],[[2,2,2,1],[2,2,1,0],[1,3,3,0],[0,2,2,1]],[[1,2,2,1],[3,2,1,0],[1,3,2,2],[1,1,2,0]],[[1,2,2,2],[2,2,1,0],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[2,2,1,0],[1,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,1,0],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,2,1,0],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,2,1,0],[1,3,2,2],[0,2,2,0]],[[1,2,2,2],[2,2,1,0],[1,3,2,2],[0,2,2,0]],[[1,2,3,1],[2,2,1,0],[1,3,2,2],[0,2,2,0]],[[1,3,2,1],[2,2,1,0],[1,3,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,1,0],[1,3,2,2],[0,2,2,0]],[[1,2,2,1],[3,2,1,0],[1,3,2,1],[1,1,2,1]],[[1,2,2,2],[2,2,1,0],[1,3,2,1],[1,1,2,1]],[[1,2,3,1],[2,2,1,0],[1,3,2,1],[1,1,2,1]],[[1,3,2,1],[2,2,1,0],[1,3,2,1],[1,1,2,1]],[[2,2,2,1],[2,2,1,0],[1,3,2,1],[1,1,2,1]],[[1,2,2,1],[3,2,1,0],[1,3,2,1],[0,2,2,1]],[[1,2,2,2],[2,2,1,0],[1,3,2,1],[0,2,2,1]],[[1,2,3,1],[2,2,1,0],[1,3,2,1],[0,2,2,1]],[[1,3,2,1],[2,2,1,0],[1,3,2,1],[0,2,2,1]],[[2,2,2,1],[2,2,1,0],[1,3,2,1],[0,2,2,1]],[[1,2,2,1],[3,2,1,0],[1,3,1,2],[1,1,2,1]],[[1,2,2,2],[2,2,1,0],[1,3,1,2],[1,1,2,1]],[[1,2,3,1],[2,2,1,0],[1,3,1,2],[1,1,2,1]],[[1,3,2,1],[2,2,1,0],[1,3,1,2],[1,1,2,1]],[[2,2,2,1],[2,2,1,0],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[3,2,1,0],[1,3,1,2],[0,2,2,1]],[[1,2,2,2],[2,2,1,0],[1,3,1,2],[0,2,2,1]],[[1,2,3,1],[2,2,1,0],[1,3,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,1,0],[1,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,2,1,0],[1,3,1,2],[0,2,2,1]],[[1,2,2,1],[3,2,1,0],[0,3,3,2],[1,2,1,0]],[[1,2,2,2],[2,2,1,0],[0,3,3,2],[1,2,1,0]],[[1,2,3,1],[2,2,1,0],[0,3,3,2],[1,2,1,0]],[[1,3,2,1],[2,2,1,0],[0,3,3,2],[1,2,1,0]],[[2,2,2,1],[2,2,1,0],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[3,2,1,0],[0,3,3,2],[1,2,0,1]],[[1,2,2,2],[2,2,1,0],[0,3,3,2],[1,2,0,1]],[[1,2,3,1],[2,2,1,0],[0,3,3,2],[1,2,0,1]],[[1,3,2,1],[2,2,1,0],[0,3,3,2],[1,2,0,1]],[[2,2,2,1],[2,2,1,0],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[3,2,1,0],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[2,2,1,0],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[2,2,1,0],[0,3,3,2],[1,1,2,0]],[[1,3,2,1],[2,2,1,0],[0,3,3,2],[1,1,2,0]],[[2,2,2,1],[2,2,1,0],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[3,2,1,0],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[2,2,1,0],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[2,2,1,0],[0,3,3,2],[1,1,1,1]],[[1,3,2,1],[2,2,1,0],[0,3,3,2],[1,1,1,1]],[[2,2,2,1],[2,2,1,0],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[3,2,1,0],[0,3,3,1],[1,2,1,1]],[[1,2,2,2],[2,2,1,0],[0,3,3,1],[1,2,1,1]],[[1,2,3,1],[2,2,1,0],[0,3,3,1],[1,2,1,1]],[[1,3,2,1],[2,2,1,0],[0,3,3,1],[1,2,1,1]],[[2,2,2,1],[2,2,1,0],[0,3,3,1],[1,2,1,1]],[[1,2,2,1],[3,2,1,0],[0,3,3,1],[1,1,2,1]],[[1,2,2,2],[2,2,1,0],[0,3,3,1],[1,1,2,1]],[[1,2,3,1],[2,2,1,0],[0,3,3,1],[1,1,2,1]],[[1,3,2,1],[2,2,1,0],[0,3,3,1],[1,1,2,1]],[[2,2,2,1],[2,2,1,0],[0,3,3,1],[1,1,2,1]],[[1,2,2,1],[3,2,1,0],[0,3,3,0],[1,2,2,1]],[[1,2,3,1],[2,2,1,0],[0,3,3,0],[1,2,2,1]],[[1,3,2,1],[2,2,1,0],[0,3,3,0],[1,2,2,1]],[[2,2,2,1],[2,2,1,0],[0,3,3,0],[1,2,2,1]],[[1,2,2,1],[3,2,1,0],[0,3,2,2],[1,2,2,0]],[[1,2,2,2],[2,2,1,0],[0,3,2,2],[1,2,2,0]],[[1,2,3,1],[2,2,1,0],[0,3,2,2],[1,2,2,0]],[[1,3,2,1],[2,2,1,0],[0,3,2,2],[1,2,2,0]],[[2,2,2,1],[2,2,1,0],[0,3,2,2],[1,2,2,0]],[[1,2,2,1],[3,2,1,0],[0,3,2,1],[1,2,2,1]],[[1,2,2,2],[2,2,1,0],[0,3,2,1],[1,2,2,1]],[[1,2,3,1],[2,2,1,0],[0,3,2,1],[1,2,2,1]],[[1,3,2,1],[2,2,1,0],[0,3,2,1],[1,2,2,1]],[[2,2,2,1],[2,2,1,0],[0,3,2,1],[1,2,2,1]],[[1,2,2,1],[3,2,1,0],[0,3,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,1,0],[0,3,1,2],[1,2,2,1]],[[1,2,3,1],[2,2,1,0],[0,3,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,1,0],[0,3,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,1,0],[0,3,1,2],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[3,3,3,1],[1,0,1,0]],[[1,2,2,1],[2,2,0,3],[2,3,3,1],[1,0,1,0]],[[1,2,2,1],[3,2,0,2],[2,3,3,1],[1,0,1,0]],[[1,2,2,2],[2,2,0,2],[2,3,3,1],[1,0,1,0]],[[1,2,3,1],[2,2,0,2],[2,3,3,1],[1,0,1,0]],[[1,3,2,1],[2,2,0,2],[2,3,3,1],[1,0,1,0]],[[2,2,2,1],[2,2,0,2],[2,3,3,1],[1,0,1,0]],[[1,2,2,1],[2,2,0,2],[3,3,3,1],[1,0,0,1]],[[1,2,2,1],[2,2,0,3],[2,3,3,1],[1,0,0,1]],[[1,2,2,1],[3,2,0,2],[2,3,3,1],[1,0,0,1]],[[1,2,2,2],[2,2,0,2],[2,3,3,1],[1,0,0,1]],[[1,2,3,1],[2,2,0,2],[2,3,3,1],[1,0,0,1]],[[1,3,2,1],[2,2,0,2],[2,3,3,1],[1,0,0,1]],[[2,2,2,1],[2,2,0,2],[2,3,3,1],[1,0,0,1]],[[1,2,2,1],[2,2,0,2],[3,3,3,0],[1,0,1,1]],[[1,2,2,1],[3,2,0,2],[2,3,3,0],[1,0,1,1]],[[1,2,2,2],[2,2,0,2],[2,3,3,0],[1,0,1,1]],[[1,2,3,1],[2,2,0,2],[2,3,3,0],[1,0,1,1]],[[1,3,2,1],[2,2,0,2],[2,3,3,0],[1,0,1,1]],[[2,2,2,1],[2,2,0,2],[2,3,3,0],[1,0,1,1]],[[1,2,2,1],[2,2,0,2],[3,3,2,2],[1,0,1,0]],[[1,2,2,1],[2,2,0,3],[2,3,2,2],[1,0,1,0]],[[1,2,2,1],[3,2,0,2],[2,3,2,2],[1,0,1,0]],[[1,2,2,2],[2,2,0,2],[2,3,2,2],[1,0,1,0]],[[1,2,3,1],[2,2,0,2],[2,3,2,2],[1,0,1,0]],[[1,3,2,1],[2,2,0,2],[2,3,2,2],[1,0,1,0]],[[2,2,2,1],[2,2,0,2],[2,3,2,2],[1,0,1,0]],[[1,2,2,1],[2,2,0,2],[2,3,2,3],[1,0,0,1]],[[1,2,2,1],[2,2,0,2],[3,3,2,2],[1,0,0,1]],[[1,2,2,1],[2,2,0,3],[2,3,2,2],[1,0,0,1]],[[1,2,2,1],[3,2,0,2],[2,3,2,2],[1,0,0,1]],[[1,2,2,2],[2,2,0,2],[2,3,2,2],[1,0,0,1]],[[1,2,3,1],[2,2,0,2],[2,3,2,2],[1,0,0,1]],[[1,3,2,1],[2,2,0,2],[2,3,2,2],[1,0,0,1]],[[2,2,2,1],[2,2,0,2],[2,3,2,2],[1,0,0,1]],[[0,1,2,1],[2,2,3,0],[0,1,3,3],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,1,3,2],[1,2,3,1]],[[0,1,2,1],[2,2,3,0],[0,1,3,2],[1,2,2,2]],[[0,1,2,1],[2,2,3,0],[0,2,2,3],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,2,2,2],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,2,2,2],[1,3,2,1]],[[0,1,2,1],[2,2,3,0],[0,2,2,2],[1,2,3,1]],[[0,1,2,1],[2,2,3,0],[0,2,2,2],[1,2,2,2]],[[0,1,3,1],[2,2,3,0],[0,2,3,1],[1,2,2,1]],[[0,1,2,2],[2,2,3,0],[0,2,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,4,0],[0,2,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,2,4,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,2,3,1],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,2,3,0],[0,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,2,3,0],[0,2,3,1],[1,2,2,2]],[[0,1,3,1],[2,2,3,0],[0,2,3,2],[1,2,1,1]],[[0,1,2,2],[2,2,3,0],[0,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,4,0],[0,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[0,2,4,2],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[0,2,3,3],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[0,2,3,2],[1,2,1,2]],[[0,1,3,1],[2,2,3,0],[0,2,3,2],[1,2,2,0]],[[0,1,2,2],[2,2,3,0],[0,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,4,0],[0,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[0,2,4,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[0,2,3,3],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[0,2,3,2],[2,2,2,0]],[[0,1,2,1],[2,2,3,0],[0,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,2,3,0],[0,2,3,2],[1,2,3,0]],[[0,1,2,1],[2,2,3,0],[0,4,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,1,3],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,2,3,0],[0,3,1,2],[1,2,2,2]],[[0,1,2,1],[2,2,3,0],[0,4,2,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,2,3,0],[0,3,2,1],[1,2,2,2]],[[0,1,2,1],[2,2,3,0],[0,3,2,3],[1,1,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,2,2],[1,1,3,1]],[[0,1,2,1],[2,2,3,0],[0,3,2,2],[1,1,2,2]],[[0,1,2,1],[2,2,3,0],[0,4,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[0,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,2,3,0],[0,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,2,3,0],[0,3,2,2],[1,2,3,0]],[[0,1,2,1],[2,2,3,0],[0,4,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,0],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,0],[1,3,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,0],[1,2,3,1]],[[0,1,3,1],[2,2,3,0],[0,3,3,1],[1,1,2,1]],[[0,1,2,2],[2,2,3,0],[0,3,3,1],[1,1,2,1]],[[0,1,2,1],[2,2,4,0],[0,3,3,1],[1,1,2,1]],[[0,1,2,1],[2,2,3,0],[0,4,3,1],[1,1,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,4,1],[1,1,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,1],[1,1,3,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,1],[1,1,2,2]],[[0,1,3,1],[2,2,3,0],[0,3,3,1],[1,2,1,1]],[[0,1,2,2],[2,2,3,0],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,4,0],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[0,4,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[0,3,4,1],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,1],[1,3,1,1]],[[0,1,3,1],[2,2,3,0],[0,3,3,2],[1,0,2,1]],[[0,1,2,2],[2,2,3,0],[0,3,3,2],[1,0,2,1]],[[0,1,2,1],[2,2,4,0],[0,3,3,2],[1,0,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,4,2],[1,0,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,3],[1,0,2,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,2],[1,0,2,2]],[[0,1,3,1],[2,2,3,0],[0,3,3,2],[1,1,1,1]],[[0,1,2,2],[2,2,3,0],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,2,4,0],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,2,3,0],[0,4,3,2],[1,1,1,1]],[[0,1,2,1],[2,2,3,0],[0,3,4,2],[1,1,1,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,3],[1,1,1,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,2],[1,1,1,2]],[[0,1,3,1],[2,2,3,0],[0,3,3,2],[1,1,2,0]],[[0,1,2,2],[2,2,3,0],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,4,0],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,3,0],[0,4,3,2],[1,1,2,0]],[[0,1,2,1],[2,2,3,0],[0,3,4,2],[1,1,2,0]],[[0,1,2,1],[2,2,3,0],[0,3,3,3],[1,1,2,0]],[[0,1,2,1],[2,2,3,0],[0,3,3,2],[1,1,3,0]],[[0,1,3,1],[2,2,3,0],[0,3,3,2],[1,2,0,1]],[[0,1,2,2],[2,2,3,0],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,4,0],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,3,0],[0,4,3,2],[1,2,0,1]],[[0,1,2,1],[2,2,3,0],[0,3,4,2],[1,2,0,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,3],[1,2,0,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,2,3,0],[0,3,3,2],[1,2,0,2]],[[0,1,3,1],[2,2,3,0],[0,3,3,2],[1,2,1,0]],[[0,1,2,2],[2,2,3,0],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,4,0],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,3,0],[0,4,3,2],[1,2,1,0]],[[0,1,2,1],[2,2,3,0],[0,3,4,2],[1,2,1,0]],[[0,1,2,1],[2,2,3,0],[0,3,3,3],[1,2,1,0]],[[0,1,2,1],[2,2,3,0],[0,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,2,3,0],[0,3,3,2],[1,3,1,0]],[[0,1,2,1],[2,2,3,0],[1,1,3,3],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,1,3,2],[0,2,3,1]],[[0,1,2,1],[2,2,3,0],[1,1,3,2],[0,2,2,2]],[[0,1,2,1],[2,2,3,0],[1,2,2,3],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,2,2,2],[0,3,2,1]],[[0,1,2,1],[2,2,3,0],[1,2,2,2],[0,2,3,1]],[[0,1,2,1],[2,2,3,0],[1,2,2,2],[0,2,2,2]],[[0,1,3,1],[2,2,3,0],[1,2,3,1],[0,2,2,1]],[[0,1,2,2],[2,2,3,0],[1,2,3,1],[0,2,2,1]],[[0,1,2,1],[2,2,4,0],[1,2,3,1],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,2,4,1],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,2,3,1],[0,3,2,1]],[[0,1,2,1],[2,2,3,0],[1,2,3,1],[0,2,3,1]],[[0,1,2,1],[2,2,3,0],[1,2,3,1],[0,2,2,2]],[[0,1,3,1],[2,2,3,0],[1,2,3,2],[0,2,1,1]],[[0,1,2,2],[2,2,3,0],[1,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,2,4,0],[1,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,2,3,0],[1,2,4,2],[0,2,1,1]],[[0,1,2,1],[2,2,3,0],[1,2,3,3],[0,2,1,1]],[[0,1,2,1],[2,2,3,0],[1,2,3,2],[0,2,1,2]],[[0,1,3,1],[2,2,3,0],[1,2,3,2],[0,2,2,0]],[[0,1,2,2],[2,2,3,0],[1,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,2,4,0],[1,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,2,3,0],[1,2,4,2],[0,2,2,0]],[[0,1,2,1],[2,2,3,0],[1,2,3,3],[0,2,2,0]],[[0,1,2,1],[2,2,3,0],[1,2,3,2],[0,3,2,0]],[[0,1,2,1],[2,2,3,0],[1,2,3,2],[0,2,3,0]],[[0,1,2,1],[2,2,3,0],[1,4,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,0,3],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,0,2],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,0,2],[1,3,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,0,2],[1,2,3,1]],[[0,1,2,1],[2,2,3,0],[1,3,0,2],[1,2,2,2]],[[0,1,2,1],[2,2,3,0],[1,4,1,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,1,1],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,1,1],[1,3,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,1,1],[1,2,3,1]],[[0,1,2,1],[2,2,3,0],[1,3,1,1],[1,2,2,2]],[[0,1,2,1],[2,2,3,0],[1,4,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,1,3],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,1,2],[0,3,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,1,2],[0,2,3,1]],[[0,1,2,1],[2,2,3,0],[1,3,1,2],[0,2,2,2]],[[0,1,2,1],[2,2,3,0],[1,4,1,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[1,3,1,2],[2,2,2,0]],[[0,1,2,1],[2,2,3,0],[1,3,1,2],[1,3,2,0]],[[0,1,2,1],[2,2,3,0],[1,3,1,2],[1,2,3,0]],[[0,1,2,1],[2,2,3,0],[1,4,2,1],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,1],[0,3,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,1],[0,2,3,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,1],[0,2,2,2]],[[0,1,2,1],[2,2,3,0],[1,4,2,1],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,1],[2,2,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,1],[1,3,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,3],[0,1,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,2],[0,1,3,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,2],[0,1,2,2]],[[0,1,2,1],[2,2,3,0],[1,4,2,2],[0,2,2,0]],[[0,1,2,1],[2,2,3,0],[1,3,2,2],[0,3,2,0]],[[0,1,2,1],[2,2,3,0],[1,3,2,2],[0,2,3,0]],[[0,1,2,1],[2,2,3,0],[1,3,2,3],[1,0,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,2],[1,0,3,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,2],[1,0,2,2]],[[0,1,2,1],[2,2,3,0],[1,4,2,2],[1,2,0,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,2],[2,2,0,1]],[[0,1,2,1],[2,2,3,0],[1,3,2,2],[1,3,0,1]],[[0,1,2,1],[2,2,3,0],[1,4,2,2],[1,2,1,0]],[[0,1,2,1],[2,2,3,0],[1,3,2,2],[2,2,1,0]],[[0,1,2,1],[2,2,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,2,0,2],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[2,2,0,2],[2,3,0,1],[2,2,2,0]],[[0,1,2,1],[2,2,3,0],[1,4,3,0],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,0],[0,3,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,0],[0,2,3,1]],[[0,1,3,1],[2,2,3,0],[1,3,3,1],[0,1,2,1]],[[0,1,2,2],[2,2,3,0],[1,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,2,4,0],[1,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,2,3,0],[1,4,3,1],[0,1,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,4,1],[0,1,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,1],[0,1,3,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,1],[0,1,2,2]],[[0,1,3,1],[2,2,3,0],[1,3,3,1],[0,2,1,1]],[[0,1,2,2],[2,2,3,0],[1,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,4,0],[1,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,3,0],[1,4,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,4,1],[0,2,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,1],[0,3,1,1]],[[0,1,3,1],[2,2,3,0],[1,3,3,1],[1,0,2,1]],[[0,1,2,2],[2,2,3,0],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,4,0],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,3,0],[1,4,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,4,1],[1,0,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,1],[1,0,3,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,1],[1,0,2,2]],[[0,1,3,1],[2,2,3,0],[1,3,3,1],[1,1,1,1]],[[0,1,2,2],[2,2,3,0],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,4,0],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,3,0],[1,4,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[2,2,0,2],[3,3,0,1],[1,2,2,0]],[[1,2,2,1],[3,2,0,2],[2,3,0,1],[1,2,2,0]],[[1,3,2,1],[2,2,0,2],[2,3,0,1],[1,2,2,0]],[[2,2,2,1],[2,2,0,2],[2,3,0,1],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[2,2,0,2],[2,3,0,0],[2,2,2,1]],[[1,2,2,1],[2,2,0,2],[3,3,0,0],[1,2,2,1]],[[1,2,2,1],[3,2,0,2],[2,3,0,0],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[2,3,0,0],[1,2,2,1]],[[0,1,3,1],[2,2,3,0],[1,3,3,2],[0,0,2,1]],[[0,1,2,2],[2,2,3,0],[1,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,2,4,0],[1,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,4,2],[0,0,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,3],[0,0,2,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,2],[0,0,2,2]],[[0,1,3,1],[2,2,3,0],[1,3,3,2],[0,1,1,1]],[[0,1,2,2],[2,2,3,0],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,4,0],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,3,0],[1,4,3,2],[0,1,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,4,2],[0,1,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,3],[0,1,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,2],[0,1,1,2]],[[0,1,3,1],[2,2,3,0],[1,3,3,2],[0,1,2,0]],[[0,1,2,2],[2,2,3,0],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,4,0],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,3,0],[1,4,3,2],[0,1,2,0]],[[0,1,2,1],[2,2,3,0],[1,3,4,2],[0,1,2,0]],[[0,1,2,1],[2,2,3,0],[1,3,3,3],[0,1,2,0]],[[0,1,2,1],[2,2,3,0],[1,3,3,2],[0,1,3,0]],[[0,1,3,1],[2,2,3,0],[1,3,3,2],[0,2,0,1]],[[0,1,2,2],[2,2,3,0],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,4,0],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,3,0],[1,4,3,2],[0,2,0,1]],[[0,1,2,1],[2,2,3,0],[1,3,4,2],[0,2,0,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,3],[0,2,0,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,2],[0,3,0,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,2],[0,2,0,2]],[[0,1,3,1],[2,2,3,0],[1,3,3,2],[0,2,1,0]],[[0,1,2,2],[2,2,3,0],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,4,0],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,3,0],[1,4,3,2],[0,2,1,0]],[[0,1,2,1],[2,2,3,0],[1,3,4,2],[0,2,1,0]],[[0,1,2,1],[2,2,3,0],[1,3,3,3],[0,2,1,0]],[[0,1,2,1],[2,2,3,0],[1,3,3,2],[0,3,1,0]],[[2,2,2,1],[2,2,0,2],[2,3,0,0],[1,2,2,1]],[[0,1,3,1],[2,2,3,0],[1,3,3,2],[1,0,1,1]],[[0,1,2,2],[2,2,3,0],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,4,0],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,3,0],[1,4,3,2],[1,0,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,4,2],[1,0,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,3],[1,0,1,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,2],[1,0,1,2]],[[0,1,3,1],[2,2,3,0],[1,3,3,2],[1,0,2,0]],[[0,1,2,2],[2,2,3,0],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,4,0],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,3,0],[1,4,3,2],[1,0,2,0]],[[0,1,2,1],[2,2,3,0],[1,3,4,2],[1,0,2,0]],[[0,1,2,1],[2,2,3,0],[1,3,3,3],[1,0,2,0]],[[0,1,2,1],[2,2,3,0],[1,3,3,2],[1,0,3,0]],[[0,1,3,1],[2,2,3,0],[1,3,3,2],[1,1,0,1]],[[0,1,2,2],[2,2,3,0],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,4,0],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,3,0],[1,4,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,3,0],[1,3,4,2],[1,1,0,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,3],[1,1,0,1]],[[0,1,2,1],[2,2,3,0],[1,3,3,2],[1,1,0,2]],[[0,1,3,1],[2,2,3,0],[1,3,3,2],[1,1,1,0]],[[0,1,2,2],[2,2,3,0],[1,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,4,0],[1,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,3,0],[1,4,3,2],[1,1,1,0]],[[0,1,2,1],[2,2,3,0],[1,3,4,2],[1,1,1,0]],[[0,1,2,1],[2,2,3,0],[1,3,3,3],[1,1,1,0]],[[0,1,2,1],[3,2,3,0],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[3,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,0,2,3],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,0,2,2],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,0,2,2],[1,3,2,1]],[[0,1,2,1],[2,2,3,0],[2,0,2,2],[1,2,3,1]],[[0,1,2,1],[2,2,3,0],[2,0,2,2],[1,2,2,2]],[[0,1,3,1],[2,2,3,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,2],[2,2,3,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,1],[3,2,3,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,4,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[3,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,0,4,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,0,3,1],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,0,3,1],[1,3,2,1]],[[0,1,2,1],[2,2,3,0],[2,0,3,1],[1,2,3,1]],[[0,1,2,1],[2,2,3,0],[2,0,3,1],[1,2,2,2]],[[0,1,3,1],[2,2,3,0],[2,0,3,2],[1,2,1,1]],[[0,1,2,2],[2,2,3,0],[2,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,4,0],[2,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[2,0,4,2],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[2,0,3,3],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[2,0,3,2],[1,2,1,2]],[[0,1,3,1],[2,2,3,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,2],[2,2,3,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[3,2,3,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,4,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[3,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[2,0,4,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[2,0,3,3],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[2,0,3,2],[2,2,2,0]],[[0,1,2,1],[2,2,3,0],[2,0,3,2],[1,3,2,0]],[[0,1,2,1],[2,2,3,0],[2,0,3,2],[1,2,3,0]],[[0,1,2,1],[3,2,3,0],[2,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[3,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,2,0,3],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,2,0,2],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,2,0,2],[1,3,2,1]],[[0,1,2,1],[2,2,3,0],[2,2,0,2],[1,2,3,1]],[[0,1,2,1],[2,2,3,0],[2,2,0,2],[1,2,2,2]],[[0,1,2,1],[3,2,3,0],[2,2,1,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[3,2,1,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,2,1,1],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,2,1,1],[1,3,2,1]],[[0,1,2,1],[2,2,3,0],[2,2,1,1],[1,2,3,1]],[[0,1,2,1],[2,2,3,0],[2,2,1,1],[1,2,2,2]],[[0,1,2,1],[3,2,3,0],[2,2,1,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[3,2,1,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[2,2,1,2],[2,2,2,0]],[[0,1,2,1],[2,2,3,0],[2,2,1,2],[1,3,2,0]],[[0,1,2,1],[2,2,3,0],[2,2,1,2],[1,2,3,0]],[[0,1,2,1],[3,2,3,0],[2,2,2,1],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[3,2,2,1],[1,2,1,1]],[[0,1,2,1],[2,2,3,0],[2,2,2,1],[2,2,1,1]],[[0,1,2,1],[2,2,3,0],[2,2,2,1],[1,3,1,1]],[[0,1,2,1],[3,2,3,0],[2,2,2,2],[1,2,0,1]],[[0,1,2,1],[2,2,3,0],[3,2,2,2],[1,2,0,1]],[[0,1,2,1],[2,2,3,0],[2,2,2,2],[2,2,0,1]],[[0,1,2,1],[2,2,3,0],[2,2,2,2],[1,3,0,1]],[[0,1,2,1],[3,2,3,0],[2,2,2,2],[1,2,1,0]],[[0,1,2,1],[2,2,3,0],[3,2,2,2],[1,2,1,0]],[[0,1,2,1],[2,2,3,0],[2,2,2,2],[2,2,1,0]],[[0,1,2,1],[2,2,3,0],[2,2,2,2],[1,3,1,0]],[[0,1,2,1],[3,2,3,0],[2,3,0,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[3,3,0,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,3,0,1],[2,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,3,0,1],[1,3,2,1]],[[0,1,2,1],[3,2,3,0],[2,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[3,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,4,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,3,0,3],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,3,0,2],[0,3,2,1]],[[0,1,2,1],[2,2,3,0],[2,3,0,2],[0,2,3,1]],[[0,1,2,1],[2,2,3,0],[2,3,0,2],[0,2,2,2]],[[0,1,2,1],[3,2,3,0],[2,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,2,3,0],[3,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,2,3,0],[2,4,0,2],[1,1,2,1]],[[0,1,2,1],[2,2,3,0],[2,3,0,2],[2,1,2,1]],[[0,1,2,1],[3,2,3,0],[2,3,0,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[3,3,0,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,0],[2,3,0,2],[2,2,2,0]],[[0,1,2,1],[2,2,3,0],[2,3,0,2],[1,3,2,0]],[[0,1,2,1],[3,2,3,0],[2,3,1,1],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[3,3,1,1],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,4,1,1],[0,2,2,1]],[[0,1,2,1],[2,2,3,0],[2,3,1,1],[0,3,2,1]],[[0,1,2,1],[2,2,3,0],[2,3,1,1],[0,2,3,1]],[[0,1,2,1],[2,2,3,0],[2,3,1,1],[0,2,2,2]],[[0,1,2,1],[3,2,3,0],[2,3,1,1],[1,1,2,1]],[[0,1,2,1],[2,2,3,0],[3,3,1,1],[1,1,2,1]],[[0,1,2,1],[2,2,3,0],[2,4,1,1],[1,1,2,1]],[[0,1,2,1],[2,2,3,0],[2,3,1,1],[2,1,2,1]],[[0,1,2,1],[3,2,3,0],[2,3,1,2],[0,2,2,0]],[[0,1,2,1],[2,2,3,0],[3,3,1,2],[0,2,2,0]],[[0,1,2,1],[2,2,3,0],[2,4,1,2],[0,2,2,0]],[[0,1,2,1],[2,2,3,0],[2,3,1,2],[0,3,2,0]],[[0,1,2,1],[2,2,3,0],[2,3,1,2],[0,2,3,0]],[[0,1,2,1],[3,2,3,0],[2,3,1,2],[1,1,2,0]],[[0,1,2,1],[2,2,3,0],[3,3,1,2],[1,1,2,0]],[[0,1,2,1],[2,2,3,0],[2,4,1,2],[1,1,2,0]],[[0,1,2,1],[2,2,3,0],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[2,2,0,2],[2,2,3,1],[2,2,0,0]],[[1,2,2,1],[2,2,0,2],[3,2,3,1],[1,2,0,0]],[[0,1,2,1],[3,2,3,0],[2,3,2,1],[0,1,2,1]],[[0,1,2,1],[2,2,3,0],[3,3,2,1],[0,1,2,1]],[[0,1,2,1],[2,2,3,0],[2,4,2,1],[0,1,2,1]],[[0,1,2,1],[3,2,3,0],[2,3,2,1],[0,2,1,1]],[[0,1,2,1],[2,2,3,0],[3,3,2,1],[0,2,1,1]],[[0,1,2,1],[2,2,3,0],[2,4,2,1],[0,2,1,1]],[[0,1,2,1],[2,2,3,0],[2,3,2,1],[0,3,1,1]],[[0,1,2,1],[3,2,3,0],[2,3,2,1],[1,0,2,1]],[[0,1,2,1],[2,2,3,0],[3,3,2,1],[1,0,2,1]],[[0,1,2,1],[2,2,3,0],[2,4,2,1],[1,0,2,1]],[[0,1,2,1],[2,2,3,0],[2,3,2,1],[2,0,2,1]],[[0,1,2,1],[3,2,3,0],[2,3,2,1],[1,1,1,1]],[[0,1,2,1],[2,2,3,0],[3,3,2,1],[1,1,1,1]],[[0,1,2,1],[2,2,3,0],[2,4,2,1],[1,1,1,1]],[[0,1,2,1],[2,2,3,0],[2,3,2,1],[2,1,1,1]],[[0,1,2,1],[3,2,3,0],[2,3,2,1],[1,2,0,1]],[[0,1,2,1],[2,2,3,0],[3,3,2,1],[1,2,0,1]],[[0,1,2,1],[2,2,3,0],[2,4,2,1],[1,2,0,1]],[[0,1,2,1],[2,2,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,2,1],[2,2,0,3],[2,2,3,1],[1,2,0,0]],[[1,2,2,1],[3,2,0,2],[2,2,3,1],[1,2,0,0]],[[1,2,2,2],[2,2,0,2],[2,2,3,1],[1,2,0,0]],[[1,2,3,1],[2,2,0,2],[2,2,3,1],[1,2,0,0]],[[1,3,2,1],[2,2,0,2],[2,2,3,1],[1,2,0,0]],[[2,2,2,1],[2,2,0,2],[2,2,3,1],[1,2,0,0]],[[0,1,2,1],[3,2,3,0],[2,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,2,3,0],[3,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,2,3,0],[2,4,2,2],[0,1,1,1]],[[0,1,2,1],[3,2,3,0],[2,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,2,3,0],[3,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,2,3,0],[2,4,2,2],[0,1,2,0]],[[0,1,2,1],[3,2,3,0],[2,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,2,3,0],[3,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,2,3,0],[2,4,2,2],[0,2,0,1]],[[0,1,2,1],[2,2,3,0],[2,3,2,2],[0,3,0,1]],[[0,1,2,1],[3,2,3,0],[2,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,2,3,0],[3,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,2,3,0],[2,4,2,2],[0,2,1,0]],[[0,1,2,1],[2,2,3,0],[2,3,2,2],[0,3,1,0]],[[0,1,2,1],[3,2,3,0],[2,3,2,2],[1,0,1,1]],[[0,1,2,1],[2,2,3,0],[3,3,2,2],[1,0,1,1]],[[0,1,2,1],[2,2,3,0],[2,4,2,2],[1,0,1,1]],[[0,1,2,1],[2,2,3,0],[2,3,2,2],[2,0,1,1]],[[0,1,2,1],[3,2,3,0],[2,3,2,2],[1,0,2,0]],[[0,1,2,1],[2,2,3,0],[3,3,2,2],[1,0,2,0]],[[0,1,2,1],[2,2,3,0],[2,4,2,2],[1,0,2,0]],[[0,1,2,1],[2,2,3,0],[2,3,2,2],[2,0,2,0]],[[0,1,2,1],[3,2,3,0],[2,3,2,2],[1,1,0,1]],[[0,1,2,1],[2,2,3,0],[3,3,2,2],[1,1,0,1]],[[0,1,2,1],[2,2,3,0],[2,4,2,2],[1,1,0,1]],[[0,1,2,1],[2,2,3,0],[2,3,2,2],[2,1,0,1]],[[0,1,2,1],[3,2,3,0],[2,3,2,2],[1,1,1,0]],[[0,1,2,1],[2,2,3,0],[3,3,2,2],[1,1,1,0]],[[0,1,2,1],[2,2,3,0],[2,4,2,2],[1,1,1,0]],[[0,1,2,1],[2,2,3,0],[2,3,2,2],[2,1,1,0]],[[0,1,2,1],[3,2,3,0],[2,3,2,2],[1,2,0,0]],[[0,1,2,1],[2,2,3,0],[3,3,2,2],[1,2,0,0]],[[0,1,2,1],[2,2,3,0],[2,4,2,2],[1,2,0,0]],[[0,1,2,1],[2,2,3,0],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[2,2,0,2],[2,2,3,1],[2,1,1,0]],[[1,2,2,1],[2,2,0,2],[3,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,0,3],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,0,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,2,0,2],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,0,2],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,0,2],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,0,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,0,2],[2,2,3,1],[2,1,0,1]],[[1,2,2,1],[2,2,0,2],[3,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,0,3],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[3,2,0,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,0,2],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,0,2],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,0,2],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,0,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,0,2],[2,2,3,1],[2,0,2,0]],[[1,2,2,1],[2,2,0,2],[3,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,0,3],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,0,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,2,0,2],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,0,2],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,0,2],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,0,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,0,2],[2,2,3,1],[2,0,1,1]],[[1,2,2,1],[2,2,0,2],[3,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,0,3],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,0,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,2,0,2],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,0,2],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,0,2],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,0,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,0,2],[3,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,0,3],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,0,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,0,2],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,0,2],[2,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,0,2],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,0,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,0,2],[3,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,0,3],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[3,2,0,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,0,2],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,0,2],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,0,2],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,0,2],[2,2,3,1],[0,2,0,1]],[[0,1,2,1],[3,2,3,0],[2,3,3,2],[0,2,0,0]],[[0,1,2,1],[2,2,3,0],[3,3,3,2],[0,2,0,0]],[[0,1,2,1],[2,2,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[2,2,0,2],[3,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,0,3],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,0,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,0,2],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,0,2],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,0,2],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,0,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,0,2],[3,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,2,0,3],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,0,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,0,2],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,0,2],[2,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,0,2],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,0,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,2,0,2],[2,2,3,0],[2,2,0,1]],[[1,2,2,1],[2,2,0,2],[3,2,3,0],[1,2,0,1]],[[1,2,2,1],[3,2,0,2],[2,2,3,0],[1,2,0,1]],[[1,2,2,2],[2,2,0,2],[2,2,3,0],[1,2,0,1]],[[1,2,3,1],[2,2,0,2],[2,2,3,0],[1,2,0,1]],[[1,3,2,1],[2,2,0,2],[2,2,3,0],[1,2,0,1]],[[2,2,2,1],[2,2,0,2],[2,2,3,0],[1,2,0,1]],[[0,1,2,1],[3,2,3,0],[2,3,3,2],[1,1,0,0]],[[0,1,2,1],[2,2,3,0],[3,3,3,2],[1,1,0,0]],[[0,1,2,1],[2,2,3,0],[2,4,3,2],[1,1,0,0]],[[0,1,2,1],[2,2,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[2,2,0,2],[2,2,3,0],[2,1,1,1]],[[1,2,2,1],[2,2,0,2],[3,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,0,3],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[3,2,0,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,2],[2,2,0,2],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,0,2],[2,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,0,2],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,0,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,0,2],[2,2,3,0],[2,0,2,1]],[[1,2,2,1],[2,2,0,2],[3,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,0,3],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[3,2,0,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,0,2],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,0,2],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,0,2],[2,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,0,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,0,2],[3,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,0,3],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,0,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,0,2],[2,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,0,2],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,0,2],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,0,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,0,2],[3,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,0,3],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[3,2,0,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,0,2],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,0,2],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,0,2],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,0,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,0,2],[2,2,2,2],[2,2,0,0]],[[1,2,2,1],[2,2,0,2],[3,2,2,2],[1,2,0,0]],[[1,2,2,1],[2,2,0,3],[2,2,2,2],[1,2,0,0]],[[1,2,2,1],[3,2,0,2],[2,2,2,2],[1,2,0,0]],[[1,2,2,2],[2,2,0,2],[2,2,2,2],[1,2,0,0]],[[1,2,3,1],[2,2,0,2],[2,2,2,2],[1,2,0,0]],[[1,3,2,1],[2,2,0,2],[2,2,2,2],[1,2,0,0]],[[2,2,2,1],[2,2,0,2],[2,2,2,2],[1,2,0,0]],[[0,1,3,1],[2,2,3,1],[0,2,1,2],[1,2,2,1]],[[0,1,2,2],[2,2,3,1],[0,2,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,4,1],[0,2,1,2],[1,2,2,1]],[[0,1,3,1],[2,2,3,1],[0,2,2,2],[1,2,1,1]],[[0,1,2,2],[2,2,3,1],[0,2,2,2],[1,2,1,1]],[[0,1,2,1],[2,2,4,1],[0,2,2,2],[1,2,1,1]],[[0,1,3,1],[2,2,3,1],[0,2,2,2],[1,2,2,0]],[[0,1,2,2],[2,2,3,1],[0,2,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,4,1],[0,2,2,2],[1,2,2,0]],[[0,1,3,1],[2,2,3,1],[0,2,3,0],[1,2,2,1]],[[0,1,2,2],[2,2,3,1],[0,2,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,4,1],[0,2,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[0,2,4,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[0,2,3,0],[2,2,2,1]],[[0,1,2,1],[2,2,3,1],[0,2,3,0],[1,3,2,1]],[[0,1,2,1],[2,2,3,1],[0,2,3,0],[1,2,3,1]],[[0,1,2,1],[2,2,3,1],[0,2,3,0],[1,2,2,2]],[[0,1,3,1],[2,2,3,1],[0,2,3,1],[1,2,1,1]],[[0,1,2,2],[2,2,3,1],[0,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,4,1],[0,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,3,1],[0,2,4,1],[1,2,1,1]],[[0,1,3,1],[2,2,3,1],[0,2,3,1],[1,2,2,0]],[[0,1,2,2],[2,2,3,1],[0,2,3,1],[1,2,2,0]],[[0,1,2,1],[2,2,4,1],[0,2,3,1],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[0,2,4,1],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[0,2,3,1],[2,2,2,0]],[[0,1,2,1],[2,2,3,1],[0,2,3,1],[1,3,2,0]],[[0,1,2,1],[2,2,3,1],[0,2,3,1],[1,2,3,0]],[[0,1,3,1],[2,2,3,1],[0,3,0,2],[1,2,2,1]],[[0,1,2,2],[2,2,3,1],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,4,1],[0,3,0,2],[1,2,2,1]],[[0,1,3,1],[2,2,3,1],[0,3,1,2],[1,1,2,1]],[[0,1,2,2],[2,2,3,1],[0,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,2,4,1],[0,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,2,3,1],[0,4,2,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[0,3,2,0],[2,2,2,1]],[[0,1,2,1],[2,2,3,1],[0,3,2,0],[1,3,2,1]],[[0,1,2,1],[2,2,3,1],[0,3,2,0],[1,2,3,1]],[[0,1,2,1],[2,2,3,1],[0,3,2,0],[1,2,2,2]],[[0,1,2,1],[2,2,3,1],[0,4,2,1],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[0,3,2,1],[2,2,2,0]],[[0,1,2,1],[2,2,3,1],[0,3,2,1],[1,3,2,0]],[[0,1,2,1],[2,2,3,1],[0,3,2,1],[1,2,3,0]],[[0,1,3,1],[2,2,3,1],[0,3,2,2],[1,0,2,1]],[[0,1,2,2],[2,2,3,1],[0,3,2,2],[1,0,2,1]],[[0,1,2,1],[2,2,4,1],[0,3,2,2],[1,0,2,1]],[[0,1,3,1],[2,2,3,1],[0,3,2,2],[1,1,1,1]],[[0,1,2,2],[2,2,3,1],[0,3,2,2],[1,1,1,1]],[[0,1,2,1],[2,2,4,1],[0,3,2,2],[1,1,1,1]],[[0,1,3,1],[2,2,3,1],[0,3,2,2],[1,1,2,0]],[[0,1,2,2],[2,2,3,1],[0,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,2,4,1],[0,3,2,2],[1,1,2,0]],[[0,1,3,1],[2,2,3,1],[0,3,2,2],[1,2,0,1]],[[0,1,2,2],[2,2,3,1],[0,3,2,2],[1,2,0,1]],[[0,1,2,1],[2,2,4,1],[0,3,2,2],[1,2,0,1]],[[0,1,3,1],[2,2,3,1],[0,3,2,2],[1,2,1,0]],[[0,1,2,2],[2,2,3,1],[0,3,2,2],[1,2,1,0]],[[0,1,2,1],[2,2,4,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[2,2,0,2],[2,2,2,2],[2,1,1,0]],[[1,2,2,1],[2,2,0,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,1],[2,2,0,2],[3,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,0,3],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[3,2,0,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,0,2],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,0,2],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,0,2],[2,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,0,2],[2,2,2,2],[1,1,1,0]],[[0,1,3,1],[2,2,3,1],[0,3,3,0],[1,1,2,1]],[[0,1,2,2],[2,2,3,1],[0,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,2,4,1],[0,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,2,3,1],[0,4,3,0],[1,1,2,1]],[[0,1,2,1],[2,2,3,1],[0,3,4,0],[1,1,2,1]],[[0,1,2,1],[2,2,3,1],[0,3,3,0],[1,1,3,1]],[[0,1,2,1],[2,2,3,1],[0,3,3,0],[1,1,2,2]],[[0,1,3,1],[2,2,3,1],[0,3,3,0],[1,2,1,1]],[[0,1,2,2],[2,2,3,1],[0,3,3,0],[1,2,1,1]],[[0,1,2,1],[2,2,4,1],[0,3,3,0],[1,2,1,1]],[[0,1,2,1],[2,2,3,1],[0,4,3,0],[1,2,1,1]],[[0,1,2,1],[2,2,3,1],[0,3,4,0],[1,2,1,1]],[[0,1,2,1],[2,2,3,1],[0,3,3,0],[2,2,1,1]],[[0,1,2,1],[2,2,3,1],[0,3,3,0],[1,3,1,1]],[[0,1,3,1],[2,2,3,1],[0,3,3,1],[1,0,2,1]],[[0,1,2,2],[2,2,3,1],[0,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,4,1],[0,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,2,3,1],[0,3,4,1],[1,0,2,1]],[[0,1,3,1],[2,2,3,1],[0,3,3,1],[1,1,1,1]],[[0,1,2,2],[2,2,3,1],[0,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,4,1],[0,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,3,1],[0,4,3,1],[1,1,1,1]],[[0,1,2,1],[2,2,3,1],[0,3,4,1],[1,1,1,1]],[[0,1,3,1],[2,2,3,1],[0,3,3,1],[1,1,2,0]],[[0,1,2,2],[2,2,3,1],[0,3,3,1],[1,1,2,0]],[[0,1,2,1],[2,2,4,1],[0,3,3,1],[1,1,2,0]],[[0,1,2,1],[2,2,3,1],[0,4,3,1],[1,1,2,0]],[[0,1,2,1],[2,2,3,1],[0,3,4,1],[1,1,2,0]],[[0,1,2,1],[2,2,3,1],[0,3,3,1],[1,1,3,0]],[[0,1,3,1],[2,2,3,1],[0,3,3,1],[1,2,0,1]],[[0,1,2,2],[2,2,3,1],[0,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,4,1],[0,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[0,4,3,1],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[0,3,4,1],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[0,3,3,1],[2,2,0,1]],[[0,1,2,1],[2,2,3,1],[0,3,3,1],[1,3,0,1]],[[0,1,3,1],[2,2,3,1],[0,3,3,1],[1,2,1,0]],[[0,1,2,2],[2,2,3,1],[0,3,3,1],[1,2,1,0]],[[0,1,2,1],[2,2,4,1],[0,3,3,1],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[0,4,3,1],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[0,3,4,1],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[0,3,3,1],[2,2,1,0]],[[0,1,2,1],[2,2,3,1],[0,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,0,2],[2,2,2,2],[1,1,0,2]],[[1,2,2,1],[2,2,0,2],[2,2,2,2],[2,1,0,1]],[[1,2,2,1],[2,2,0,2],[2,2,2,3],[1,1,0,1]],[[1,2,2,1],[2,2,0,2],[3,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,2,0,3],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[3,2,0,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,0,2],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,0,2],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,0,2],[2,2,2,2],[1,1,0,1]],[[0,1,3,1],[2,2,3,1],[0,3,3,2],[1,1,0,1]],[[0,1,2,2],[2,2,3,1],[0,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,2,4,1],[0,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,2,0,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,2,0,2],[2,2,2,2],[2,0,2,0]],[[1,2,2,1],[2,2,0,2],[2,2,2,3],[1,0,2,0]],[[1,2,2,1],[2,2,0,2],[3,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,0,3],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[3,2,0,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,0,2],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,2,0,2],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,0,2],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,0,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,0,2],[2,2,2,2],[1,0,1,2]],[[1,2,2,1],[2,2,0,2],[2,2,2,2],[2,0,1,1]],[[1,2,2,1],[2,2,0,2],[2,2,2,3],[1,0,1,1]],[[1,2,2,1],[2,2,0,2],[3,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,2,0,3],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[3,2,0,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,0,2],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,0,2],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,0,2],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,2,0,2],[2,2,2,2],[1,0,1,1]],[[0,1,3,1],[2,2,3,1],[1,2,1,2],[0,2,2,1]],[[0,1,2,2],[2,2,3,1],[1,2,1,2],[0,2,2,1]],[[0,1,2,1],[2,2,4,1],[1,2,1,2],[0,2,2,1]],[[0,1,3,1],[2,2,3,1],[1,2,2,2],[0,2,1,1]],[[0,1,2,2],[2,2,3,1],[1,2,2,2],[0,2,1,1]],[[0,1,2,1],[2,2,4,1],[1,2,2,2],[0,2,1,1]],[[0,1,3,1],[2,2,3,1],[1,2,2,2],[0,2,2,0]],[[0,1,2,2],[2,2,3,1],[1,2,2,2],[0,2,2,0]],[[0,1,2,1],[2,2,4,1],[1,2,2,2],[0,2,2,0]],[[0,1,3,1],[2,2,3,1],[1,2,3,0],[0,2,2,1]],[[0,1,2,2],[2,2,3,1],[1,2,3,0],[0,2,2,1]],[[0,1,2,1],[2,2,4,1],[1,2,3,0],[0,2,2,1]],[[0,1,2,1],[2,2,3,1],[1,2,4,0],[0,2,2,1]],[[0,1,2,1],[2,2,3,1],[1,2,3,0],[0,3,2,1]],[[0,1,2,1],[2,2,3,1],[1,2,3,0],[0,2,3,1]],[[0,1,2,1],[2,2,3,1],[1,2,3,0],[0,2,2,2]],[[0,1,3,1],[2,2,3,1],[1,2,3,1],[0,2,1,1]],[[0,1,2,2],[2,2,3,1],[1,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,4,1],[1,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,2,3,1],[1,2,4,1],[0,2,1,1]],[[0,1,3,1],[2,2,3,1],[1,2,3,1],[0,2,2,0]],[[0,1,2,2],[2,2,3,1],[1,2,3,1],[0,2,2,0]],[[0,1,2,1],[2,2,4,1],[1,2,3,1],[0,2,2,0]],[[0,1,2,1],[2,2,3,1],[1,2,4,1],[0,2,2,0]],[[0,1,2,1],[2,2,3,1],[1,2,3,1],[0,3,2,0]],[[0,1,2,1],[2,2,3,1],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,2,0,2],[2,2,2,3],[0,2,1,0]],[[1,2,2,1],[2,2,0,2],[3,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,3],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[3,2,0,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,0,2],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,0,2],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,0,2],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,0,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,2],[2,2,2,2],[0,2,0,2]],[[1,2,2,1],[2,2,0,2],[2,2,2,3],[0,2,0,1]],[[1,2,2,1],[2,2,0,2],[3,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,2,0,3],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[3,2,0,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,0,2],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,0,2],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,0,2],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,0,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,2,0,2],[2,2,2,3],[0,1,2,0]],[[1,2,2,1],[2,2,0,2],[3,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,0,3],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[3,2,0,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,2,0,2],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,0,2],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,0,2],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,0,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,0,2],[2,2,2,2],[0,1,1,2]],[[1,2,2,1],[2,2,0,2],[2,2,2,3],[0,1,1,1]],[[1,2,2,1],[2,2,0,2],[3,2,2,2],[0,1,1,1]],[[0,1,2,1],[2,2,3,1],[1,4,0,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,0,1],[2,2,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,0,1],[1,3,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,0,1],[1,2,3,1]],[[0,1,2,1],[2,2,3,1],[1,3,0,1],[1,2,2,2]],[[0,1,3,1],[2,2,3,1],[1,3,0,2],[0,2,2,1]],[[0,1,2,2],[2,2,3,1],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,4,1],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,2,3,1],[1,4,0,2],[1,2,1,1]],[[0,1,2,1],[2,2,3,1],[1,3,0,2],[2,2,1,1]],[[0,1,2,1],[2,2,3,1],[1,3,0,2],[1,3,1,1]],[[0,1,2,1],[2,2,3,1],[1,4,0,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,0,2],[2,2,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,0,2],[1,3,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,0,2],[1,2,3,0]],[[0,1,2,1],[2,2,3,1],[1,4,1,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,1,0],[2,2,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,1,0],[1,3,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,1,0],[1,2,3,1]],[[0,1,2,1],[2,2,3,1],[1,3,1,0],[1,2,2,2]],[[0,1,2,1],[2,2,3,1],[1,4,1,1],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,1,1],[2,2,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,1,1],[1,3,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,1,1],[1,2,3,0]],[[0,1,3,1],[2,2,3,1],[1,3,1,2],[0,1,2,1]],[[0,1,2,2],[2,2,3,1],[1,3,1,2],[0,1,2,1]],[[0,1,2,1],[2,2,4,1],[1,3,1,2],[0,1,2,1]],[[0,1,3,1],[2,2,3,1],[1,3,1,2],[1,0,2,1]],[[0,1,2,2],[2,2,3,1],[1,3,1,2],[1,0,2,1]],[[0,1,2,1],[2,2,4,1],[1,3,1,2],[1,0,2,1]],[[0,1,2,1],[2,2,3,1],[1,4,1,2],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[1,3,1,2],[2,2,0,1]],[[0,1,2,1],[2,2,3,1],[1,3,1,2],[1,3,0,1]],[[0,1,2,1],[2,2,3,1],[1,4,1,2],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[1,3,1,2],[2,2,1,0]],[[0,1,2,1],[2,2,3,1],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[2,2,0,3],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,0,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,0,2],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,0,2],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,0,2],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,0,2],[2,2,2,2],[0,1,1,1]],[[0,1,2,1],[2,2,3,1],[1,4,2,0],[0,2,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,2,0],[0,3,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,2,0],[0,2,3,1]],[[0,1,2,1],[2,2,3,1],[1,3,2,0],[0,2,2,2]],[[0,1,2,1],[2,2,3,1],[1,4,2,0],[1,2,1,1]],[[0,1,2,1],[2,2,3,1],[1,3,2,0],[2,2,1,1]],[[0,1,2,1],[2,2,3,1],[1,3,2,0],[1,3,1,1]],[[0,1,2,1],[2,2,3,1],[1,4,2,1],[0,2,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,2,1],[0,3,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,2,1],[0,2,3,0]],[[0,1,2,1],[2,2,3,1],[1,4,2,1],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[1,3,2,1],[2,2,0,1]],[[0,1,2,1],[2,2,3,1],[1,3,2,1],[1,3,0,1]],[[0,1,2,1],[2,2,3,1],[1,4,2,1],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[1,3,2,1],[2,2,1,0]],[[0,1,2,1],[2,2,3,1],[1,3,2,1],[1,3,1,0]],[[0,1,3,1],[2,2,3,1],[1,3,2,2],[0,0,2,1]],[[0,1,2,2],[2,2,3,1],[1,3,2,2],[0,0,2,1]],[[0,1,2,1],[2,2,4,1],[1,3,2,2],[0,0,2,1]],[[0,1,3,1],[2,2,3,1],[1,3,2,2],[0,1,1,1]],[[0,1,2,2],[2,2,3,1],[1,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,2,4,1],[1,3,2,2],[0,1,1,1]],[[0,1,3,1],[2,2,3,1],[1,3,2,2],[0,1,2,0]],[[0,1,2,2],[2,2,3,1],[1,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,2,4,1],[1,3,2,2],[0,1,2,0]],[[0,1,3,1],[2,2,3,1],[1,3,2,2],[0,2,0,1]],[[0,1,2,2],[2,2,3,1],[1,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,2,4,1],[1,3,2,2],[0,2,0,1]],[[0,1,3,1],[2,2,3,1],[1,3,2,2],[0,2,1,0]],[[0,1,2,2],[2,2,3,1],[1,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,2,4,1],[1,3,2,2],[0,2,1,0]],[[0,1,3,1],[2,2,3,1],[1,3,2,2],[1,0,1,1]],[[0,1,2,2],[2,2,3,1],[1,3,2,2],[1,0,1,1]],[[0,1,2,1],[2,2,4,1],[1,3,2,2],[1,0,1,1]],[[0,1,3,1],[2,2,3,1],[1,3,2,2],[1,0,2,0]],[[0,1,2,2],[2,2,3,1],[1,3,2,2],[1,0,2,0]],[[0,1,2,1],[2,2,4,1],[1,3,2,2],[1,0,2,0]],[[0,1,3,1],[2,2,3,1],[1,3,2,2],[1,1,0,1]],[[0,1,2,2],[2,2,3,1],[1,3,2,2],[1,1,0,1]],[[0,1,2,1],[2,2,4,1],[1,3,2,2],[1,1,0,1]],[[0,1,3,1],[2,2,3,1],[1,3,2,2],[1,1,1,0]],[[0,1,2,2],[2,2,3,1],[1,3,2,2],[1,1,1,0]],[[0,1,2,1],[2,2,4,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,0,2],[2,2,2,1],[2,1,2,0]],[[1,2,2,1],[2,2,0,2],[3,2,2,1],[1,1,2,0]],[[1,2,2,1],[2,2,0,3],[2,2,2,1],[1,1,2,0]],[[1,2,2,1],[3,2,0,2],[2,2,2,1],[1,1,2,0]],[[1,2,2,2],[2,2,0,2],[2,2,2,1],[1,1,2,0]],[[1,2,3,1],[2,2,0,2],[2,2,2,1],[1,1,2,0]],[[1,3,2,1],[2,2,0,2],[2,2,2,1],[1,1,2,0]],[[2,2,2,1],[2,2,0,2],[2,2,2,1],[1,1,2,0]],[[1,2,2,1],[2,2,0,2],[3,2,2,1],[0,2,2,0]],[[1,2,2,1],[2,2,0,3],[2,2,2,1],[0,2,2,0]],[[1,2,2,1],[3,2,0,2],[2,2,2,1],[0,2,2,0]],[[1,2,2,2],[2,2,0,2],[2,2,2,1],[0,2,2,0]],[[1,2,3,1],[2,2,0,2],[2,2,2,1],[0,2,2,0]],[[1,3,2,1],[2,2,0,2],[2,2,2,1],[0,2,2,0]],[[2,2,2,1],[2,2,0,2],[2,2,2,1],[0,2,2,0]],[[0,1,3,1],[2,2,3,1],[1,3,3,0],[0,1,2,1]],[[0,1,2,2],[2,2,3,1],[1,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,2,4,1],[1,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,2,3,1],[1,4,3,0],[0,1,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,4,0],[0,1,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,3,0],[0,1,3,1]],[[0,1,2,1],[2,2,3,1],[1,3,3,0],[0,1,2,2]],[[0,1,3,1],[2,2,3,1],[1,3,3,0],[0,2,1,1]],[[0,1,2,2],[2,2,3,1],[1,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,2,4,1],[1,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,2,3,1],[1,4,3,0],[0,2,1,1]],[[0,1,2,1],[2,2,3,1],[1,3,4,0],[0,2,1,1]],[[0,1,2,1],[2,2,3,1],[1,3,3,0],[0,3,1,1]],[[0,1,3,1],[2,2,3,1],[1,3,3,0],[1,0,2,1]],[[0,1,2,2],[2,2,3,1],[1,3,3,0],[1,0,2,1]],[[0,1,2,1],[2,2,4,1],[1,3,3,0],[1,0,2,1]],[[0,1,2,1],[2,2,3,1],[1,4,3,0],[1,0,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,4,0],[1,0,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,3,0],[1,0,3,1]],[[0,1,2,1],[2,2,3,1],[1,3,3,0],[1,0,2,2]],[[0,1,3,1],[2,2,3,1],[1,3,3,0],[1,1,1,1]],[[0,1,2,2],[2,2,3,1],[1,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,2,4,1],[1,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,2,3,1],[1,4,3,0],[1,1,1,1]],[[0,1,2,1],[2,2,3,1],[1,3,4,0],[1,1,1,1]],[[0,1,2,1],[2,2,3,1],[1,4,3,0],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[1,3,3,0],[2,2,1,0]],[[0,1,2,1],[2,2,3,1],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[2,2,0,2],[2,2,2,0],[2,1,2,1]],[[1,2,2,1],[2,2,0,2],[3,2,2,0],[1,1,2,1]],[[0,1,3,1],[2,2,3,1],[1,3,3,1],[0,0,2,1]],[[0,1,2,2],[2,2,3,1],[1,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,2,4,1],[1,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,2,3,1],[1,3,4,1],[0,0,2,1]],[[0,1,3,1],[2,2,3,1],[1,3,3,1],[0,1,1,1]],[[0,1,2,2],[2,2,3,1],[1,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,2,4,1],[1,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,2,3,1],[1,4,3,1],[0,1,1,1]],[[0,1,2,1],[2,2,3,1],[1,3,4,1],[0,1,1,1]],[[0,1,3,1],[2,2,3,1],[1,3,3,1],[0,1,2,0]],[[0,1,2,2],[2,2,3,1],[1,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,2,4,1],[1,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,2,3,1],[1,4,3,1],[0,1,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,4,1],[0,1,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,3,1],[0,1,3,0]],[[0,1,3,1],[2,2,3,1],[1,3,3,1],[0,2,0,1]],[[0,1,2,2],[2,2,3,1],[1,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,2,4,1],[1,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,2,3,1],[1,4,3,1],[0,2,0,1]],[[0,1,2,1],[2,2,3,1],[1,3,4,1],[0,2,0,1]],[[0,1,2,1],[2,2,3,1],[1,3,3,1],[0,3,0,1]],[[0,1,3,1],[2,2,3,1],[1,3,3,1],[0,2,1,0]],[[0,1,2,2],[2,2,3,1],[1,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,2,4,1],[1,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[1,4,3,1],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[1,3,4,1],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,2,0,3],[2,2,2,0],[1,1,2,1]],[[1,2,2,1],[3,2,0,2],[2,2,2,0],[1,1,2,1]],[[1,2,2,2],[2,2,0,2],[2,2,2,0],[1,1,2,1]],[[1,2,3,1],[2,2,0,2],[2,2,2,0],[1,1,2,1]],[[1,3,2,1],[2,2,0,2],[2,2,2,0],[1,1,2,1]],[[2,2,2,1],[2,2,0,2],[2,2,2,0],[1,1,2,1]],[[1,2,2,1],[2,2,0,2],[3,2,2,0],[0,2,2,1]],[[1,2,2,1],[2,2,0,3],[2,2,2,0],[0,2,2,1]],[[0,1,3,1],[2,2,3,1],[1,3,3,1],[1,0,1,1]],[[0,1,2,2],[2,2,3,1],[1,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,2,4,1],[1,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,2,3,1],[1,4,3,1],[1,0,1,1]],[[0,1,2,1],[2,2,3,1],[1,3,4,1],[1,0,1,1]],[[0,1,3,1],[2,2,3,1],[1,3,3,1],[1,0,2,0]],[[0,1,2,2],[2,2,3,1],[1,3,3,1],[1,0,2,0]],[[0,1,2,1],[2,2,4,1],[1,3,3,1],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[1,4,3,1],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,4,1],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[1,3,3,1],[1,0,3,0]],[[0,1,3,1],[2,2,3,1],[1,3,3,1],[1,1,0,1]],[[0,1,2,2],[2,2,3,1],[1,3,3,1],[1,1,0,1]],[[0,1,2,1],[2,2,4,1],[1,3,3,1],[1,1,0,1]],[[0,1,2,1],[2,2,3,1],[1,4,3,1],[1,1,0,1]],[[0,1,2,1],[2,2,3,1],[1,3,4,1],[1,1,0,1]],[[0,1,3,1],[2,2,3,1],[1,3,3,1],[1,1,1,0]],[[0,1,2,2],[2,2,3,1],[1,3,3,1],[1,1,1,0]],[[0,1,2,1],[2,2,4,1],[1,3,3,1],[1,1,1,0]],[[0,1,2,1],[2,2,3,1],[1,4,3,1],[1,1,1,0]],[[0,1,2,1],[2,2,3,1],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[3,2,0,2],[2,2,2,0],[0,2,2,1]],[[1,2,2,2],[2,2,0,2],[2,2,2,0],[0,2,2,1]],[[1,2,3,1],[2,2,0,2],[2,2,2,0],[0,2,2,1]],[[1,3,2,1],[2,2,0,2],[2,2,2,0],[0,2,2,1]],[[2,2,2,1],[2,2,0,2],[2,2,2,0],[0,2,2,1]],[[0,1,3,1],[2,2,3,1],[1,3,3,2],[0,1,0,1]],[[0,1,2,2],[2,2,3,1],[1,3,3,2],[0,1,0,1]],[[0,1,2,1],[2,2,4,1],[1,3,3,2],[0,1,0,1]],[[1,2,2,1],[2,2,0,2],[2,2,1,2],[2,1,2,0]],[[1,2,2,1],[2,2,0,2],[2,2,1,3],[1,1,2,0]],[[1,2,2,1],[2,2,0,2],[3,2,1,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,3],[2,2,1,2],[1,1,2,0]],[[1,2,2,1],[3,2,0,2],[2,2,1,2],[1,1,2,0]],[[1,2,2,2],[2,2,0,2],[2,2,1,2],[1,1,2,0]],[[1,2,3,1],[2,2,0,2],[2,2,1,2],[1,1,2,0]],[[1,3,2,1],[2,2,0,2],[2,2,1,2],[1,1,2,0]],[[2,2,2,1],[2,2,0,2],[2,2,1,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,2],[2,2,1,2],[1,1,1,2]],[[1,2,2,1],[2,2,0,2],[2,2,1,2],[2,1,1,1]],[[1,2,2,1],[2,2,0,2],[2,2,1,3],[1,1,1,1]],[[1,2,2,1],[2,2,0,2],[3,2,1,2],[1,1,1,1]],[[1,2,2,1],[2,2,0,3],[2,2,1,2],[1,1,1,1]],[[1,2,2,1],[3,2,0,2],[2,2,1,2],[1,1,1,1]],[[1,2,2,2],[2,2,0,2],[2,2,1,2],[1,1,1,1]],[[1,2,3,1],[2,2,0,2],[2,2,1,2],[1,1,1,1]],[[1,3,2,1],[2,2,0,2],[2,2,1,2],[1,1,1,1]],[[2,2,2,1],[2,2,0,2],[2,2,1,2],[1,1,1,1]],[[1,2,2,1],[2,2,0,2],[2,2,1,2],[1,0,2,2]],[[1,2,2,1],[2,2,0,2],[2,2,1,2],[1,0,3,1]],[[1,2,2,1],[2,2,0,2],[2,2,1,2],[2,0,2,1]],[[1,2,2,1],[2,2,0,2],[2,2,1,3],[1,0,2,1]],[[1,2,2,1],[2,2,0,2],[3,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,2,0,3],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[3,2,0,2],[2,2,1,2],[1,0,2,1]],[[0,1,3,1],[2,2,3,1],[1,3,3,2],[1,0,0,1]],[[0,1,2,2],[2,2,3,1],[1,3,3,2],[1,0,0,1]],[[0,1,2,1],[2,2,4,1],[1,3,3,2],[1,0,0,1]],[[1,2,2,2],[2,2,0,2],[2,2,1,2],[1,0,2,1]],[[1,2,3,1],[2,2,0,2],[2,2,1,2],[1,0,2,1]],[[1,3,2,1],[2,2,0,2],[2,2,1,2],[1,0,2,1]],[[2,2,2,1],[2,2,0,2],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,2,0,2],[2,2,1,3],[0,2,2,0]],[[1,2,2,1],[2,2,0,2],[3,2,1,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,3],[2,2,1,2],[0,2,2,0]],[[1,2,2,1],[3,2,0,2],[2,2,1,2],[0,2,2,0]],[[1,2,2,2],[2,2,0,2],[2,2,1,2],[0,2,2,0]],[[1,2,3,1],[2,2,0,2],[2,2,1,2],[0,2,2,0]],[[1,3,2,1],[2,2,0,2],[2,2,1,2],[0,2,2,0]],[[2,2,2,1],[2,2,0,2],[2,2,1,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,2],[2,2,1,2],[0,2,1,2]],[[1,2,2,1],[2,2,0,2],[2,2,1,3],[0,2,1,1]],[[1,2,2,1],[2,2,0,2],[3,2,1,2],[0,2,1,1]],[[1,2,2,1],[2,2,0,3],[2,2,1,2],[0,2,1,1]],[[1,2,2,1],[3,2,0,2],[2,2,1,2],[0,2,1,1]],[[1,2,2,2],[2,2,0,2],[2,2,1,2],[0,2,1,1]],[[1,2,3,1],[2,2,0,2],[2,2,1,2],[0,2,1,1]],[[1,3,2,1],[2,2,0,2],[2,2,1,2],[0,2,1,1]],[[2,2,2,1],[2,2,0,2],[2,2,1,2],[0,2,1,1]],[[1,2,2,1],[2,2,0,2],[2,2,1,2],[0,1,2,2]],[[1,2,2,1],[2,2,0,2],[2,2,1,2],[0,1,3,1]],[[1,2,2,1],[2,2,0,2],[2,2,1,3],[0,1,2,1]],[[1,2,2,1],[2,2,0,2],[3,2,1,2],[0,1,2,1]],[[1,2,2,1],[2,2,0,3],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[3,2,0,2],[2,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,2,0,2],[2,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,2,0,2],[2,2,1,2],[0,1,2,1]],[[1,3,2,1],[2,2,0,2],[2,2,1,2],[0,1,2,1]],[[2,2,2,1],[2,2,0,2],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[2,2,0,2],[2,2,1,1],[2,1,2,1]],[[1,2,2,1],[2,2,0,2],[3,2,1,1],[1,1,2,1]],[[1,2,2,1],[2,2,0,3],[2,2,1,1],[1,1,2,1]],[[1,2,2,1],[3,2,0,2],[2,2,1,1],[1,1,2,1]],[[1,2,2,2],[2,2,0,2],[2,2,1,1],[1,1,2,1]],[[1,2,3,1],[2,2,0,2],[2,2,1,1],[1,1,2,1]],[[1,3,2,1],[2,2,0,2],[2,2,1,1],[1,1,2,1]],[[2,2,2,1],[2,2,0,2],[2,2,1,1],[1,1,2,1]],[[1,2,2,1],[2,2,0,2],[3,2,1,1],[0,2,2,1]],[[1,2,2,1],[2,2,0,3],[2,2,1,1],[0,2,2,1]],[[1,2,2,1],[3,2,0,2],[2,2,1,1],[0,2,2,1]],[[1,2,2,2],[2,2,0,2],[2,2,1,1],[0,2,2,1]],[[1,2,3,1],[2,2,0,2],[2,2,1,1],[0,2,2,1]],[[1,3,2,1],[2,2,0,2],[2,2,1,1],[0,2,2,1]],[[2,2,2,1],[2,2,0,2],[2,2,1,1],[0,2,2,1]],[[0,1,3,1],[2,2,3,1],[2,0,1,2],[1,2,2,1]],[[0,1,2,2],[2,2,3,1],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,2,4,1],[2,0,1,2],[1,2,2,1]],[[0,1,3,1],[2,2,3,1],[2,0,2,2],[1,2,1,1]],[[0,1,2,2],[2,2,3,1],[2,0,2,2],[1,2,1,1]],[[0,1,2,1],[2,2,4,1],[2,0,2,2],[1,2,1,1]],[[0,1,3,1],[2,2,3,1],[2,0,2,2],[1,2,2,0]],[[0,1,2,2],[2,2,3,1],[2,0,2,2],[1,2,2,0]],[[0,1,2,1],[2,2,4,1],[2,0,2,2],[1,2,2,0]],[[0,1,3,1],[2,2,3,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,2],[2,2,3,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,1],[3,2,3,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,4,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[3,0,3,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,0,4,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,0,3,0],[2,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,0,3,0],[1,3,2,1]],[[0,1,2,1],[2,2,3,1],[2,0,3,0],[1,2,3,1]],[[0,1,2,1],[2,2,3,1],[2,0,3,0],[1,2,2,2]],[[0,1,3,1],[2,2,3,1],[2,0,3,1],[1,2,1,1]],[[0,1,2,2],[2,2,3,1],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,4,1],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[2,2,3,1],[2,0,4,1],[1,2,1,1]],[[0,1,3,1],[2,2,3,1],[2,0,3,1],[1,2,2,0]],[[0,1,2,2],[2,2,3,1],[2,0,3,1],[1,2,2,0]],[[0,1,2,1],[3,2,3,1],[2,0,3,1],[1,2,2,0]],[[0,1,2,1],[2,2,4,1],[2,0,3,1],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[3,0,3,1],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,0,4,1],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,0,3,1],[2,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,0,3,1],[1,3,2,0]],[[0,1,2,1],[2,2,3,1],[2,0,3,1],[1,2,3,0]],[[0,1,3,1],[2,2,3,1],[2,1,0,2],[1,2,2,1]],[[0,1,2,2],[2,2,3,1],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,4,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,3,2],[2,1,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,4,2],[1,1,1,0]],[[1,2,2,1],[2,2,0,2],[3,1,3,2],[1,1,1,0]],[[1,2,2,1],[2,2,0,3],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[3,2,0,2],[2,1,3,2],[1,1,1,0]],[[1,2,2,2],[2,2,0,2],[2,1,3,2],[1,1,1,0]],[[1,2,3,1],[2,2,0,2],[2,1,3,2],[1,1,1,0]],[[1,3,2,1],[2,2,0,2],[2,1,3,2],[1,1,1,0]],[[2,2,2,1],[2,2,0,2],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,2],[1,1,0,2]],[[1,2,2,1],[2,2,0,2],[2,1,3,2],[2,1,0,1]],[[1,2,2,1],[2,2,0,2],[2,1,3,3],[1,1,0,1]],[[1,2,2,1],[2,2,0,2],[2,1,4,2],[1,1,0,1]],[[1,2,2,1],[2,2,0,2],[3,1,3,2],[1,1,0,1]],[[1,2,2,1],[2,2,0,3],[2,1,3,2],[1,1,0,1]],[[1,2,2,1],[3,2,0,2],[2,1,3,2],[1,1,0,1]],[[1,2,2,2],[2,2,0,2],[2,1,3,2],[1,1,0,1]],[[1,2,3,1],[2,2,0,2],[2,1,3,2],[1,1,0,1]],[[1,3,2,1],[2,2,0,2],[2,1,3,2],[1,1,0,1]],[[2,2,2,1],[2,2,0,2],[2,1,3,2],[1,1,0,1]],[[0,1,2,1],[3,2,3,1],[2,2,0,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[3,2,0,1],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,2,0,1],[2,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,2,0,1],[1,3,2,1]],[[0,1,2,1],[2,2,3,1],[2,2,0,1],[1,2,3,1]],[[0,1,2,1],[2,2,3,1],[2,2,0,1],[1,2,2,2]],[[0,1,2,1],[3,2,3,1],[2,2,0,2],[1,2,1,1]],[[0,1,2,1],[2,2,3,1],[3,2,0,2],[1,2,1,1]],[[0,1,2,1],[2,2,3,1],[2,2,0,2],[2,2,1,1]],[[0,1,2,1],[2,2,3,1],[2,2,0,2],[1,3,1,1]],[[0,1,2,1],[3,2,3,1],[2,2,0,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[3,2,0,2],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,2,0,2],[2,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,2,0,2],[1,3,2,0]],[[0,1,2,1],[2,2,3,1],[2,2,0,2],[1,2,3,0]],[[0,1,2,1],[3,2,3,1],[2,2,1,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[3,2,1,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,2,1,0],[2,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,2,1,0],[1,3,2,1]],[[0,1,2,1],[2,2,3,1],[2,2,1,0],[1,2,3,1]],[[0,1,2,1],[2,2,3,1],[2,2,1,0],[1,2,2,2]],[[0,1,2,1],[3,2,3,1],[2,2,1,1],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[3,2,1,1],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,2,1,1],[2,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,2,1,1],[1,3,2,0]],[[0,1,2,1],[2,2,3,1],[2,2,1,1],[1,2,3,0]],[[0,1,2,1],[3,2,3,1],[2,2,1,2],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[3,2,1,2],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[2,2,1,2],[2,2,0,1]],[[0,1,2,1],[2,2,3,1],[2,2,1,2],[1,3,0,1]],[[0,1,2,1],[3,2,3,1],[2,2,1,2],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[3,2,1,2],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,2,1,2],[2,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,2,1,2],[1,3,1,0]],[[0,1,2,1],[3,2,3,1],[2,2,2,0],[1,2,1,1]],[[0,1,2,1],[2,2,3,1],[3,2,2,0],[1,2,1,1]],[[0,1,2,1],[2,2,3,1],[2,2,2,0],[2,2,1,1]],[[0,1,2,1],[2,2,3,1],[2,2,2,0],[1,3,1,1]],[[0,1,2,1],[3,2,3,1],[2,2,2,1],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[3,2,2,1],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[2,2,2,1],[2,2,0,1]],[[0,1,2,1],[2,2,3,1],[2,2,2,1],[1,3,0,1]],[[0,1,2,1],[3,2,3,1],[2,2,2,1],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[3,2,2,1],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,2,2,1],[2,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,2],[1,0,3,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,2],[2,0,2,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[2,2,0,2],[2,1,4,2],[1,0,2,0]],[[1,2,2,1],[2,2,0,2],[3,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,0,3],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[3,2,0,2],[2,1,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,0,2],[2,1,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,0,2],[2,1,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,0,2],[2,1,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,0,2],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,2],[1,0,1,2]],[[1,2,2,1],[2,2,0,2],[2,1,3,2],[2,0,1,1]],[[1,2,2,1],[2,2,0,2],[2,1,3,3],[1,0,1,1]],[[1,2,2,1],[2,2,0,2],[2,1,4,2],[1,0,1,1]],[[1,2,2,1],[2,2,0,2],[3,1,3,2],[1,0,1,1]],[[1,2,2,1],[2,2,0,3],[2,1,3,2],[1,0,1,1]],[[1,2,2,1],[3,2,0,2],[2,1,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,0,2],[2,1,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,0,2],[2,1,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,0,2],[2,1,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,0,2],[2,1,3,2],[1,0,1,1]],[[0,1,2,1],[3,2,3,1],[2,2,3,0],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[3,2,3,0],[1,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,2,3,0],[2,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,2,3,0],[1,3,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,4,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,2],[3,1,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,3],[2,1,3,2],[0,2,1,0]],[[1,2,2,1],[3,2,0,2],[2,1,3,2],[0,2,1,0]],[[1,2,2,2],[2,2,0,2],[2,1,3,2],[0,2,1,0]],[[1,2,3,1],[2,2,0,2],[2,1,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,0,2],[2,1,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,0,2],[2,1,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,2],[0,2,0,2]],[[1,2,2,1],[2,2,0,2],[2,1,3,3],[0,2,0,1]],[[1,2,2,1],[2,2,0,2],[2,1,4,2],[0,2,0,1]],[[1,2,2,1],[2,2,0,2],[3,1,3,2],[0,2,0,1]],[[1,2,2,1],[2,2,0,3],[2,1,3,2],[0,2,0,1]],[[1,2,2,1],[3,2,0,2],[2,1,3,2],[0,2,0,1]],[[1,2,2,2],[2,2,0,2],[2,1,3,2],[0,2,0,1]],[[1,2,3,1],[2,2,0,2],[2,1,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,0,2],[2,1,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,0,2],[2,1,3,2],[0,2,0,1]],[[1,2,2,1],[2,2,0,2],[2,1,3,2],[0,1,3,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[2,2,0,2],[2,1,4,2],[0,1,2,0]],[[1,2,2,1],[2,2,0,2],[3,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,0,3],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[3,2,0,2],[2,1,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,0,2],[2,1,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,0,2],[2,1,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,0,2],[2,1,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,0,2],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,2],[0,1,1,2]],[[1,2,2,1],[2,2,0,2],[2,1,3,3],[0,1,1,1]],[[1,2,2,1],[2,2,0,2],[2,1,4,2],[0,1,1,1]],[[1,2,2,1],[2,2,0,2],[3,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,0,3],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[3,2,0,2],[2,1,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,0,2],[2,1,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,0,2],[2,1,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,0,2],[2,1,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,0,2],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,0,2],[2,1,3,2],[0,0,2,2]],[[1,2,2,1],[2,2,0,2],[2,1,3,3],[0,0,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,4,2],[0,0,2,1]],[[1,2,2,1],[2,2,0,3],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[3,2,0,2],[2,1,3,2],[0,0,2,1]],[[1,2,2,2],[2,2,0,2],[2,1,3,2],[0,0,2,1]],[[1,2,3,1],[2,2,0,2],[2,1,3,2],[0,0,2,1]],[[1,3,2,1],[2,2,0,2],[2,1,3,2],[0,0,2,1]],[[2,2,2,1],[2,2,0,2],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,1],[2,2,1,0]],[[1,2,2,1],[2,2,0,2],[3,1,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,0,3],[2,1,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,0,2],[2,1,3,1],[1,2,1,0]],[[1,2,2,2],[2,2,0,2],[2,1,3,1],[1,2,1,0]],[[1,2,3,1],[2,2,0,2],[2,1,3,1],[1,2,1,0]],[[1,3,2,1],[2,2,0,2],[2,1,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,0,2],[2,1,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,1],[1,3,0,1]],[[1,2,2,1],[2,2,0,2],[2,1,3,1],[2,2,0,1]],[[1,2,2,1],[2,2,0,2],[3,1,3,1],[1,2,0,1]],[[1,2,2,1],[2,2,0,3],[2,1,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,0,2],[2,1,3,1],[1,2,0,1]],[[1,2,2,2],[2,2,0,2],[2,1,3,1],[1,2,0,1]],[[1,2,3,1],[2,2,0,2],[2,1,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,0,2],[2,1,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,0,2],[2,1,3,1],[1,2,0,1]],[[0,1,2,1],[3,2,3,1],[2,3,0,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[3,3,0,0],[1,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,3,0,0],[2,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,3,0,0],[1,3,2,1]],[[0,1,2,1],[3,2,3,1],[2,3,0,1],[0,2,2,1]],[[0,1,2,1],[2,2,3,1],[3,3,0,1],[0,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,4,0,1],[0,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,3,0,1],[0,3,2,1]],[[0,1,2,1],[2,2,3,1],[2,3,0,1],[0,2,3,1]],[[0,1,2,1],[2,2,3,1],[2,3,0,1],[0,2,2,2]],[[0,1,2,1],[3,2,3,1],[2,3,0,1],[1,1,2,1]],[[0,1,2,1],[2,2,3,1],[3,3,0,1],[1,1,2,1]],[[0,1,2,1],[2,2,3,1],[2,4,0,1],[1,1,2,1]],[[0,1,2,1],[2,2,3,1],[2,3,0,1],[2,1,2,1]],[[0,1,2,1],[3,2,3,1],[2,3,0,1],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[3,3,0,1],[1,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,3,0,1],[2,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,3,0,1],[1,3,2,0]],[[0,1,2,1],[3,2,3,1],[2,3,0,2],[0,1,2,1]],[[0,1,2,1],[2,2,3,1],[3,3,0,2],[0,1,2,1]],[[0,1,2,1],[2,2,3,1],[2,4,0,2],[0,1,2,1]],[[0,1,2,1],[3,2,3,1],[2,3,0,2],[0,2,1,1]],[[0,1,2,1],[2,2,3,1],[3,3,0,2],[0,2,1,1]],[[0,1,2,1],[2,2,3,1],[2,4,0,2],[0,2,1,1]],[[0,1,2,1],[2,2,3,1],[2,3,0,2],[0,3,1,1]],[[0,1,2,1],[3,2,3,1],[2,3,0,2],[0,2,2,0]],[[0,1,2,1],[2,2,3,1],[3,3,0,2],[0,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,4,0,2],[0,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,3,0,2],[0,3,2,0]],[[0,1,2,1],[2,2,3,1],[2,3,0,2],[0,2,3,0]],[[0,1,2,1],[3,2,3,1],[2,3,0,2],[1,0,2,1]],[[0,1,2,1],[2,2,3,1],[3,3,0,2],[1,0,2,1]],[[0,1,2,1],[2,2,3,1],[2,4,0,2],[1,0,2,1]],[[0,1,2,1],[2,2,3,1],[2,3,0,2],[2,0,2,1]],[[0,1,2,1],[3,2,3,1],[2,3,0,2],[1,1,1,1]],[[0,1,2,1],[2,2,3,1],[3,3,0,2],[1,1,1,1]],[[0,1,2,1],[2,2,3,1],[2,4,0,2],[1,1,1,1]],[[0,1,2,1],[2,2,3,1],[2,3,0,2],[2,1,1,1]],[[0,1,2,1],[3,2,3,1],[2,3,0,2],[1,1,2,0]],[[0,1,2,1],[2,2,3,1],[3,3,0,2],[1,1,2,0]],[[0,1,2,1],[2,2,3,1],[2,4,0,2],[1,1,2,0]],[[0,1,2,1],[2,2,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,1],[1,0,2,2]],[[1,2,2,1],[2,2,0,2],[2,1,3,1],[1,0,3,1]],[[1,2,2,1],[2,2,0,2],[2,1,4,1],[1,0,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,3,1],[0,1,2,2]],[[1,2,2,1],[2,2,0,2],[2,1,3,1],[0,1,3,1]],[[1,2,2,1],[2,2,0,2],[2,1,4,1],[0,1,2,1]],[[0,1,2,1],[3,2,3,1],[2,3,1,0],[0,2,2,1]],[[0,1,2,1],[2,2,3,1],[3,3,1,0],[0,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,4,1,0],[0,2,2,1]],[[0,1,2,1],[2,2,3,1],[2,3,1,0],[0,3,2,1]],[[0,1,2,1],[2,2,3,1],[2,3,1,0],[0,2,3,1]],[[0,1,2,1],[2,2,3,1],[2,3,1,0],[0,2,2,2]],[[0,1,2,1],[3,2,3,1],[2,3,1,0],[1,1,2,1]],[[0,1,2,1],[2,2,3,1],[3,3,1,0],[1,1,2,1]],[[0,1,2,1],[2,2,3,1],[2,4,1,0],[1,1,2,1]],[[0,1,2,1],[2,2,3,1],[2,3,1,0],[2,1,2,1]],[[0,1,2,1],[3,2,3,1],[2,3,1,1],[0,2,2,0]],[[0,1,2,1],[2,2,3,1],[3,3,1,1],[0,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,4,1,1],[0,2,2,0]],[[0,1,2,1],[2,2,3,1],[2,3,1,1],[0,3,2,0]],[[0,1,2,1],[2,2,3,1],[2,3,1,1],[0,2,3,0]],[[0,1,2,1],[3,2,3,1],[2,3,1,1],[1,1,2,0]],[[0,1,2,1],[2,2,3,1],[3,3,1,1],[1,1,2,0]],[[0,1,2,1],[2,2,3,1],[2,4,1,1],[1,1,2,0]],[[0,1,2,1],[2,2,3,1],[2,3,1,1],[2,1,2,0]],[[0,1,2,1],[3,2,3,1],[2,3,1,2],[0,1,1,1]],[[0,1,2,1],[2,2,3,1],[3,3,1,2],[0,1,1,1]],[[0,1,2,1],[2,2,3,1],[2,4,1,2],[0,1,1,1]],[[0,1,2,1],[3,2,3,1],[2,3,1,2],[0,1,2,0]],[[0,1,2,1],[2,2,3,1],[3,3,1,2],[0,1,2,0]],[[0,1,2,1],[2,2,3,1],[2,4,1,2],[0,1,2,0]],[[0,1,2,1],[3,2,3,1],[2,3,1,2],[0,2,0,1]],[[0,1,2,1],[2,2,3,1],[3,3,1,2],[0,2,0,1]],[[0,1,2,1],[2,2,3,1],[2,4,1,2],[0,2,0,1]],[[0,1,2,1],[2,2,3,1],[2,3,1,2],[0,3,0,1]],[[0,1,2,1],[3,2,3,1],[2,3,1,2],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[3,3,1,2],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,4,1,2],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,3,0],[1,3,1,1]],[[1,2,2,1],[2,2,0,2],[2,1,3,0],[2,2,1,1]],[[1,2,2,1],[2,2,0,2],[3,1,3,0],[1,2,1,1]],[[1,2,2,1],[2,2,0,3],[2,1,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,0,2],[2,1,3,0],[1,2,1,1]],[[0,1,2,1],[3,2,3,1],[2,3,1,2],[1,0,1,1]],[[0,1,2,1],[2,2,3,1],[3,3,1,2],[1,0,1,1]],[[0,1,2,1],[2,2,3,1],[2,4,1,2],[1,0,1,1]],[[0,1,2,1],[2,2,3,1],[2,3,1,2],[2,0,1,1]],[[0,1,2,1],[3,2,3,1],[2,3,1,2],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[3,3,1,2],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[2,4,1,2],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[2,3,1,2],[2,0,2,0]],[[0,1,2,1],[3,2,3,1],[2,3,1,2],[1,1,0,1]],[[0,1,2,1],[2,2,3,1],[3,3,1,2],[1,1,0,1]],[[0,1,2,1],[2,2,3,1],[2,4,1,2],[1,1,0,1]],[[0,1,2,1],[2,2,3,1],[2,3,1,2],[2,1,0,1]],[[0,1,2,1],[3,2,3,1],[2,3,1,2],[1,1,1,0]],[[0,1,2,1],[2,2,3,1],[3,3,1,2],[1,1,1,0]],[[0,1,2,1],[2,2,3,1],[2,4,1,2],[1,1,1,0]],[[0,1,2,1],[2,2,3,1],[2,3,1,2],[2,1,1,0]],[[1,2,2,2],[2,2,0,2],[2,1,3,0],[1,2,1,1]],[[1,2,3,1],[2,2,0,2],[2,1,3,0],[1,2,1,1]],[[1,3,2,1],[2,2,0,2],[2,1,3,0],[1,2,1,1]],[[2,2,2,1],[2,2,0,2],[2,1,3,0],[1,2,1,1]],[[0,1,2,1],[3,2,3,1],[2,3,1,2],[1,2,0,0]],[[0,1,2,1],[2,2,3,1],[3,3,1,2],[1,2,0,0]],[[0,1,2,1],[2,2,3,1],[2,4,1,2],[1,2,0,0]],[[0,1,2,1],[2,2,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,2,0,2],[2,1,2,2],[1,3,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,2,2],[2,2,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,2,3],[1,2,1,0]],[[0,1,2,1],[3,2,3,1],[2,3,2,0],[0,1,2,1]],[[0,1,2,1],[2,2,3,1],[3,3,2,0],[0,1,2,1]],[[0,1,2,1],[2,2,3,1],[2,4,2,0],[0,1,2,1]],[[0,1,2,1],[3,2,3,1],[2,3,2,0],[0,2,1,1]],[[0,1,2,1],[2,2,3,1],[3,3,2,0],[0,2,1,1]],[[0,1,2,1],[2,2,3,1],[2,4,2,0],[0,2,1,1]],[[0,1,2,1],[2,2,3,1],[2,3,2,0],[0,3,1,1]],[[0,1,2,1],[3,2,3,1],[2,3,2,0],[1,0,2,1]],[[0,1,2,1],[2,2,3,1],[3,3,2,0],[1,0,2,1]],[[0,1,2,1],[2,2,3,1],[2,4,2,0],[1,0,2,1]],[[0,1,2,1],[2,2,3,1],[2,3,2,0],[2,0,2,1]],[[0,1,2,1],[3,2,3,1],[2,3,2,0],[1,1,1,1]],[[0,1,2,1],[2,2,3,1],[3,3,2,0],[1,1,1,1]],[[0,1,2,1],[2,2,3,1],[2,4,2,0],[1,1,1,1]],[[0,1,2,1],[2,2,3,1],[2,3,2,0],[2,1,1,1]],[[0,1,2,1],[3,2,3,1],[2,3,2,0],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[3,3,2,0],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[2,4,2,0],[1,2,0,1]],[[0,1,2,1],[2,2,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[2,2,0,2],[3,1,2,2],[1,2,1,0]],[[1,2,2,1],[2,2,0,3],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[3,2,0,2],[2,1,2,2],[1,2,1,0]],[[1,2,2,2],[2,2,0,2],[2,1,2,2],[1,2,1,0]],[[1,2,3,1],[2,2,0,2],[2,1,2,2],[1,2,1,0]],[[1,3,2,1],[2,2,0,2],[2,1,2,2],[1,2,1,0]],[[2,2,2,1],[2,2,0,2],[2,1,2,2],[1,2,1,0]],[[0,1,2,1],[3,2,3,1],[2,3,2,1],[0,1,1,1]],[[0,1,2,1],[2,2,3,1],[3,3,2,1],[0,1,1,1]],[[0,1,2,1],[2,2,3,1],[2,4,2,1],[0,1,1,1]],[[0,1,2,1],[3,2,3,1],[2,3,2,1],[0,1,2,0]],[[0,1,2,1],[2,2,3,1],[3,3,2,1],[0,1,2,0]],[[0,1,2,1],[2,2,3,1],[2,4,2,1],[0,1,2,0]],[[0,1,2,1],[3,2,3,1],[2,3,2,1],[0,2,0,1]],[[0,1,2,1],[2,2,3,1],[3,3,2,1],[0,2,0,1]],[[0,1,2,1],[2,2,3,1],[2,4,2,1],[0,2,0,1]],[[0,1,2,1],[2,2,3,1],[2,3,2,1],[0,3,0,1]],[[0,1,2,1],[3,2,3,1],[2,3,2,1],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[3,3,2,1],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,4,2,1],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[2,2,0,2],[2,1,2,2],[1,2,0,2]],[[1,2,2,1],[2,2,0,2],[2,1,2,2],[1,3,0,1]],[[1,2,2,1],[2,2,0,2],[2,1,2,2],[2,2,0,1]],[[1,2,2,1],[2,2,0,2],[2,1,2,3],[1,2,0,1]],[[1,2,2,1],[2,2,0,2],[3,1,2,2],[1,2,0,1]],[[1,2,2,1],[2,2,0,3],[2,1,2,2],[1,2,0,1]],[[0,1,2,1],[3,2,3,1],[2,3,2,1],[1,0,1,1]],[[0,1,2,1],[2,2,3,1],[3,3,2,1],[1,0,1,1]],[[0,1,2,1],[2,2,3,1],[2,4,2,1],[1,0,1,1]],[[0,1,2,1],[2,2,3,1],[2,3,2,1],[2,0,1,1]],[[0,1,2,1],[3,2,3,1],[2,3,2,1],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[3,3,2,1],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[2,4,2,1],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[2,3,2,1],[2,0,2,0]],[[0,1,2,1],[3,2,3,1],[2,3,2,1],[1,1,0,1]],[[0,1,2,1],[2,2,3,1],[3,3,2,1],[1,1,0,1]],[[0,1,2,1],[2,2,3,1],[2,4,2,1],[1,1,0,1]],[[0,1,2,1],[2,2,3,1],[2,3,2,1],[2,1,0,1]],[[0,1,2,1],[3,2,3,1],[2,3,2,1],[1,1,1,0]],[[0,1,2,1],[2,2,3,1],[3,3,2,1],[1,1,1,0]],[[0,1,2,1],[2,2,3,1],[2,4,2,1],[1,1,1,0]],[[0,1,2,1],[2,2,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,2,1],[3,2,0,2],[2,1,2,2],[1,2,0,1]],[[1,2,2,2],[2,2,0,2],[2,1,2,2],[1,2,0,1]],[[1,2,3,1],[2,2,0,2],[2,1,2,2],[1,2,0,1]],[[1,3,2,1],[2,2,0,2],[2,1,2,2],[1,2,0,1]],[[0,1,2,1],[3,2,3,1],[2,3,2,1],[1,2,0,0]],[[0,1,2,1],[2,2,3,1],[3,3,2,1],[1,2,0,0]],[[0,1,2,1],[2,2,3,1],[2,4,2,1],[1,2,0,0]],[[0,1,2,1],[2,2,3,1],[2,3,2,1],[2,2,0,0]],[[2,2,2,1],[2,2,0,2],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[2,2,0,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[2,2,0,2],[2,1,2,2],[1,0,3,1]],[[1,2,2,1],[2,2,0,2],[2,1,2,2],[2,0,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,2,3],[1,0,2,1]],[[1,2,2,1],[2,2,0,2],[3,1,2,2],[1,0,2,1]],[[1,2,2,1],[2,2,0,3],[2,1,2,2],[1,0,2,1]],[[1,2,2,1],[3,2,0,2],[2,1,2,2],[1,0,2,1]],[[1,2,2,2],[2,2,0,2],[2,1,2,2],[1,0,2,1]],[[1,2,3,1],[2,2,0,2],[2,1,2,2],[1,0,2,1]],[[1,3,2,1],[2,2,0,2],[2,1,2,2],[1,0,2,1]],[[2,2,2,1],[2,2,0,2],[2,1,2,2],[1,0,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,2,2],[0,1,2,2]],[[1,2,2,1],[2,2,0,2],[2,1,2,2],[0,1,3,1]],[[1,2,2,1],[2,2,0,2],[2,1,2,3],[0,1,2,1]],[[1,2,2,1],[2,2,0,2],[3,1,2,2],[0,1,2,1]],[[1,2,2,1],[2,2,0,3],[2,1,2,2],[0,1,2,1]],[[1,2,2,1],[3,2,0,2],[2,1,2,2],[0,1,2,1]],[[1,2,2,2],[2,2,0,2],[2,1,2,2],[0,1,2,1]],[[1,2,3,1],[2,2,0,2],[2,1,2,2],[0,1,2,1]],[[1,3,2,1],[2,2,0,2],[2,1,2,2],[0,1,2,1]],[[2,2,2,1],[2,2,0,2],[2,1,2,2],[0,1,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,2,1],[1,2,3,0]],[[1,2,2,1],[2,2,0,2],[2,1,2,1],[1,3,2,0]],[[1,2,2,1],[2,2,0,2],[2,1,2,1],[2,2,2,0]],[[1,2,2,1],[2,2,0,2],[3,1,2,1],[1,2,2,0]],[[1,2,2,1],[2,2,0,3],[2,1,2,1],[1,2,2,0]],[[1,2,2,1],[3,2,0,2],[2,1,2,1],[1,2,2,0]],[[1,2,2,2],[2,2,0,2],[2,1,2,1],[1,2,2,0]],[[1,2,3,1],[2,2,0,2],[2,1,2,1],[1,2,2,0]],[[1,3,2,1],[2,2,0,2],[2,1,2,1],[1,2,2,0]],[[2,2,2,1],[2,2,0,2],[2,1,2,1],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[2,1,2,0],[1,2,2,2]],[[1,2,2,1],[2,2,0,2],[2,1,2,0],[1,2,3,1]],[[1,2,2,1],[2,2,0,2],[2,1,2,0],[1,3,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,2,0],[2,2,2,1]],[[1,2,2,1],[2,2,0,2],[3,1,2,0],[1,2,2,1]],[[1,2,2,1],[2,2,0,3],[2,1,2,0],[1,2,2,1]],[[1,2,2,1],[3,2,0,2],[2,1,2,0],[1,2,2,1]],[[1,2,2,2],[2,2,0,2],[2,1,2,0],[1,2,2,1]],[[1,2,3,1],[2,2,0,2],[2,1,2,0],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[2,1,2,0],[1,2,2,1]],[[2,2,2,1],[2,2,0,2],[2,1,2,0],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[1,2,3,0]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[1,3,2,0]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[2,2,2,0]],[[1,2,2,1],[2,2,0,2],[2,1,1,3],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[3,1,1,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,3],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[3,2,0,2],[2,1,1,2],[1,2,2,0]],[[1,2,2,2],[2,2,0,2],[2,1,1,2],[1,2,2,0]],[[1,2,3,1],[2,2,0,2],[2,1,1,2],[1,2,2,0]],[[1,3,2,1],[2,2,0,2],[2,1,1,2],[1,2,2,0]],[[2,2,2,1],[2,2,0,2],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[1,2,1,2]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[1,3,1,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[2,2,1,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,3],[1,2,1,1]],[[1,2,2,1],[2,2,0,2],[3,1,1,2],[1,2,1,1]],[[1,2,2,1],[2,2,0,3],[2,1,1,2],[1,2,1,1]],[[1,2,2,1],[3,2,0,2],[2,1,1,2],[1,2,1,1]],[[1,2,2,2],[2,2,0,2],[2,1,1,2],[1,2,1,1]],[[1,2,3,1],[2,2,0,2],[2,1,1,2],[1,2,1,1]],[[1,3,2,1],[2,2,0,2],[2,1,1,2],[1,2,1,1]],[[2,2,2,1],[2,2,0,2],[2,1,1,2],[1,2,1,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[1,1,2,2]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[1,1,3,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[2,1,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,3],[1,1,2,1]],[[1,2,2,1],[2,2,0,2],[3,1,1,2],[1,1,2,1]],[[1,2,2,1],[2,2,0,3],[2,1,1,2],[1,1,2,1]],[[1,2,2,1],[3,2,0,2],[2,1,1,2],[1,1,2,1]],[[1,2,2,2],[2,2,0,2],[2,1,1,2],[1,1,2,1]],[[1,2,3,1],[2,2,0,2],[2,1,1,2],[1,1,2,1]],[[1,3,2,1],[2,2,0,2],[2,1,1,2],[1,1,2,1]],[[2,2,2,1],[2,2,0,2],[2,1,1,2],[1,1,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[0,2,2,2]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[0,2,3,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,2],[0,3,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,3],[0,2,2,1]],[[1,2,2,1],[2,2,0,2],[3,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,2,0,3],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[3,2,0,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,2,0,2],[2,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,2,0,2],[2,1,1,2],[0,2,2,1]],[[0,1,2,1],[3,2,3,1],[2,3,3,0],[0,1,2,0]],[[0,1,2,1],[2,2,3,1],[3,3,3,0],[0,1,2,0]],[[0,1,2,1],[2,2,3,1],[2,4,3,0],[0,1,2,0]],[[0,1,2,1],[3,2,3,1],[2,3,3,0],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[3,3,3,0],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,4,3,0],[0,2,1,0]],[[0,1,2,1],[2,2,3,1],[2,3,3,0],[0,3,1,0]],[[1,3,2,1],[2,2,0,2],[2,1,1,2],[0,2,2,1]],[[2,2,2,1],[2,2,0,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,1],[1,2,2,2]],[[1,2,2,1],[2,2,0,2],[2,1,1,1],[1,2,3,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,1],[1,3,2,1]],[[1,2,2,1],[2,2,0,2],[2,1,1,1],[2,2,2,1]],[[1,2,2,1],[2,2,0,2],[3,1,1,1],[1,2,2,1]],[[1,2,2,1],[2,2,0,3],[2,1,1,1],[1,2,2,1]],[[1,2,2,1],[3,2,0,2],[2,1,1,1],[1,2,2,1]],[[1,2,2,2],[2,2,0,2],[2,1,1,1],[1,2,2,1]],[[0,1,2,1],[3,2,3,1],[2,3,3,0],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[3,3,3,0],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[2,4,3,0],[1,0,2,0]],[[0,1,2,1],[2,2,3,1],[2,3,3,0],[2,0,2,0]],[[0,1,2,1],[3,2,3,1],[2,3,3,0],[1,1,1,0]],[[0,1,2,1],[2,2,3,1],[3,3,3,0],[1,1,1,0]],[[0,1,2,1],[2,2,3,1],[2,4,3,0],[1,1,1,0]],[[0,1,2,1],[2,2,3,1],[2,3,3,0],[2,1,1,0]],[[1,2,3,1],[2,2,0,2],[2,1,1,1],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[2,1,1,1],[1,2,2,1]],[[2,2,2,1],[2,2,0,2],[2,1,1,1],[1,2,2,1]],[[0,1,2,1],[3,2,3,1],[2,3,3,0],[1,2,0,0]],[[0,1,2,1],[2,2,3,1],[3,3,3,0],[1,2,0,0]],[[0,1,2,1],[2,2,3,1],[2,4,3,0],[1,2,0,0]],[[0,1,2,1],[2,2,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[2,2,1,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[2,2,0,2],[2,0,4,2],[1,2,1,0]],[[1,2,2,1],[2,2,0,2],[3,0,3,2],[1,2,1,0]],[[1,2,2,1],[2,2,0,3],[2,0,3,2],[1,2,1,0]],[[1,2,2,1],[3,2,0,2],[2,0,3,2],[1,2,1,0]],[[1,2,2,2],[2,2,0,2],[2,0,3,2],[1,2,1,0]],[[1,2,3,1],[2,2,0,2],[2,0,3,2],[1,2,1,0]],[[1,3,2,1],[2,2,0,2],[2,0,3,2],[1,2,1,0]],[[2,2,2,1],[2,2,0,2],[2,0,3,2],[1,2,1,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[1,2,0,2]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[1,3,0,1]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[2,2,0,1]],[[1,2,2,1],[2,2,0,2],[2,0,3,3],[1,2,0,1]],[[1,2,2,1],[2,2,0,2],[2,0,4,2],[1,2,0,1]],[[1,2,2,1],[2,2,0,2],[3,0,3,2],[1,2,0,1]],[[0,1,2,1],[3,2,3,1],[2,3,3,1],[0,2,0,0]],[[0,1,2,1],[2,2,3,1],[3,3,3,1],[0,2,0,0]],[[0,1,2,1],[2,2,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,2,0,3],[2,0,3,2],[1,2,0,1]],[[1,2,2,1],[3,2,0,2],[2,0,3,2],[1,2,0,1]],[[1,2,2,2],[2,2,0,2],[2,0,3,2],[1,2,0,1]],[[1,2,3,1],[2,2,0,2],[2,0,3,2],[1,2,0,1]],[[1,3,2,1],[2,2,0,2],[2,0,3,2],[1,2,0,1]],[[2,2,2,1],[2,2,0,2],[2,0,3,2],[1,2,0,1]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[1,1,3,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[2,1,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,3],[1,1,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,4,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,2],[3,0,3,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,3],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[3,2,0,2],[2,0,3,2],[1,1,2,0]],[[1,2,2,2],[2,2,0,2],[2,0,3,2],[1,1,2,0]],[[1,2,3,1],[2,2,0,2],[2,0,3,2],[1,1,2,0]],[[1,3,2,1],[2,2,0,2],[2,0,3,2],[1,1,2,0]],[[2,2,2,1],[2,2,0,2],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[1,1,1,2]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[2,1,1,1]],[[1,2,2,1],[2,2,0,2],[2,0,3,3],[1,1,1,1]],[[1,2,2,1],[2,2,0,2],[2,0,4,2],[1,1,1,1]],[[1,2,2,1],[2,2,0,2],[3,0,3,2],[1,1,1,1]],[[1,2,2,1],[2,2,0,3],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[3,2,0,2],[2,0,3,2],[1,1,1,1]],[[1,2,2,2],[2,2,0,2],[2,0,3,2],[1,1,1,1]],[[0,1,2,1],[3,2,3,1],[2,3,3,1],[1,1,0,0]],[[0,1,2,1],[2,2,3,1],[3,3,3,1],[1,1,0,0]],[[0,1,2,1],[2,2,3,1],[2,4,3,1],[1,1,0,0]],[[0,1,2,1],[2,2,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,3,1],[2,2,0,2],[2,0,3,2],[1,1,1,1]],[[1,3,2,1],[2,2,0,2],[2,0,3,2],[1,1,1,1]],[[2,2,2,1],[2,2,0,2],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[0,2,3,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[0,3,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,3],[0,2,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,4,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,2],[3,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,3],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[3,2,0,2],[2,0,3,2],[0,2,2,0]],[[1,2,2,2],[2,2,0,2],[2,0,3,2],[0,2,2,0]],[[1,2,3,1],[2,2,0,2],[2,0,3,2],[0,2,2,0]],[[1,3,2,1],[2,2,0,2],[2,0,3,2],[0,2,2,0]],[[2,2,2,1],[2,2,0,2],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,2],[0,2,1,2]],[[1,2,2,1],[2,2,0,2],[2,0,3,3],[0,2,1,1]],[[1,2,2,1],[2,2,0,2],[2,0,4,2],[0,2,1,1]],[[1,2,2,1],[2,2,0,2],[3,0,3,2],[0,2,1,1]],[[1,2,2,1],[2,2,0,3],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[3,2,0,2],[2,0,3,2],[0,2,1,1]],[[1,2,2,2],[2,2,0,2],[2,0,3,2],[0,2,1,1]],[[1,2,3,1],[2,2,0,2],[2,0,3,2],[0,2,1,1]],[[1,3,2,1],[2,2,0,2],[2,0,3,2],[0,2,1,1]],[[2,2,2,1],[2,2,0,2],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[2,2,0,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,1],[1,3,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,1],[2,2,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,4,1],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[3,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,2,0,3],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[3,2,0,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[2,2,0,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[2,2,0,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[2,2,0,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[2,2,0,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,3,1],[1,1,2,2]],[[1,2,2,1],[2,2,0,2],[2,0,3,1],[1,1,3,1]],[[1,2,2,1],[2,2,0,2],[2,0,4,1],[1,1,2,1]],[[1,2,2,1],[2,2,0,2],[2,0,3,1],[0,2,2,2]],[[1,2,2,1],[2,2,0,2],[2,0,3,1],[0,2,3,1]],[[1,2,2,1],[2,2,0,2],[2,0,3,1],[0,3,2,1]],[[1,2,2,1],[2,2,0,2],[2,0,4,1],[0,2,2,1]],[[1,2,2,1],[2,2,0,2],[2,0,3,0],[1,2,2,2]],[[1,2,2,1],[2,2,0,2],[2,0,3,0],[1,2,3,1]],[[1,2,2,1],[2,2,0,2],[2,0,3,0],[1,3,2,1]],[[1,2,2,1],[2,2,0,2],[2,0,3,0],[2,2,2,1]],[[1,2,2,1],[2,2,0,2],[2,0,4,0],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[3,0,3,0],[1,2,2,1]],[[1,2,2,1],[2,2,0,3],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[3,2,0,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[2,2,0,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[2,2,0,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[2,2,0,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[1,2,3,0]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[1,3,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[2,2,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,2,3],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[3,0,2,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,3],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[3,2,0,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[2,2,0,2],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[2,2,0,2],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[2,2,0,2],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[2,2,0,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[1,2,1,2]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[1,3,1,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[2,2,1,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,3],[1,2,1,1]],[[1,2,2,1],[2,2,0,2],[3,0,2,2],[1,2,1,1]],[[1,2,2,1],[2,2,0,3],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[3,2,0,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,2],[2,2,0,2],[2,0,2,2],[1,2,1,1]],[[1,2,3,1],[2,2,0,2],[2,0,2,2],[1,2,1,1]],[[1,3,2,1],[2,2,0,2],[2,0,2,2],[1,2,1,1]],[[2,2,2,1],[2,2,0,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[1,1,2,2]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[1,1,3,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[2,1,2,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,3],[1,1,2,1]],[[1,2,2,1],[2,2,0,2],[3,0,2,2],[1,1,2,1]],[[1,2,2,1],[2,2,0,3],[2,0,2,2],[1,1,2,1]],[[1,2,2,1],[3,2,0,2],[2,0,2,2],[1,1,2,1]],[[1,2,2,2],[2,2,0,2],[2,0,2,2],[1,1,2,1]],[[1,2,3,1],[2,2,0,2],[2,0,2,2],[1,1,2,1]],[[1,3,2,1],[2,2,0,2],[2,0,2,2],[1,1,2,1]],[[2,2,2,1],[2,2,0,2],[2,0,2,2],[1,1,2,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[0,2,2,2]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[0,2,3,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,2],[0,3,2,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,3],[0,2,2,1]],[[1,2,2,1],[2,2,0,2],[3,0,2,2],[0,2,2,1]],[[1,2,2,1],[2,2,0,3],[2,0,2,2],[0,2,2,1]],[[1,2,2,1],[3,2,0,2],[2,0,2,2],[0,2,2,1]],[[1,2,2,2],[2,2,0,2],[2,0,2,2],[0,2,2,1]],[[1,2,3,1],[2,2,0,2],[2,0,2,2],[0,2,2,1]],[[1,3,2,1],[2,2,0,2],[2,0,2,2],[0,2,2,1]],[[2,2,2,1],[2,2,0,2],[2,0,2,2],[0,2,2,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,1],[1,2,2,2]],[[1,2,2,1],[2,2,0,2],[2,0,2,1],[1,2,3,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,1],[1,3,2,1]],[[1,2,2,1],[2,2,0,2],[2,0,2,1],[2,2,2,1]],[[1,2,2,1],[2,2,0,2],[3,0,2,1],[1,2,2,1]],[[1,2,2,1],[2,2,0,3],[2,0,2,1],[1,2,2,1]],[[1,2,2,1],[3,2,0,2],[2,0,2,1],[1,2,2,1]],[[1,2,2,2],[2,2,0,2],[2,0,2,1],[1,2,2,1]],[[1,2,3,1],[2,2,0,2],[2,0,2,1],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[2,0,2,1],[1,2,2,1]],[[2,2,2,1],[2,2,0,2],[2,0,2,1],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,2,0,2],[1,3,4,2],[0,0,2,0]],[[1,2,2,1],[2,2,0,3],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[3,2,0,2],[1,3,3,2],[0,0,2,0]],[[1,2,2,2],[2,2,0,2],[1,3,3,2],[0,0,2,0]],[[1,2,3,1],[2,2,0,2],[1,3,3,2],[0,0,2,0]],[[1,3,2,1],[2,2,0,2],[1,3,3,2],[0,0,2,0]],[[2,2,2,1],[2,2,0,2],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[2,2,0,2],[1,3,3,2],[0,0,1,2]],[[1,2,2,1],[2,2,0,2],[1,3,3,3],[0,0,1,1]],[[1,2,2,1],[2,2,0,2],[1,3,4,2],[0,0,1,1]],[[1,2,2,1],[2,2,0,3],[1,3,3,2],[0,0,1,1]],[[1,2,2,1],[3,2,0,2],[1,3,3,2],[0,0,1,1]],[[1,2,2,2],[2,2,0,2],[1,3,3,2],[0,0,1,1]],[[1,2,3,1],[2,2,0,2],[1,3,3,2],[0,0,1,1]],[[1,3,2,1],[2,2,0,2],[1,3,3,2],[0,0,1,1]],[[2,2,2,1],[2,2,0,2],[1,3,3,2],[0,0,1,1]],[[1,2,2,1],[2,2,0,3],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,2,0,2],[1,3,3,1],[1,2,0,0]],[[1,2,2,2],[2,2,0,2],[1,3,3,1],[1,2,0,0]],[[1,2,3,1],[2,2,0,2],[1,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,2,0,2],[1,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,2,0,2],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[2,2,0,3],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,0,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,2],[2,2,0,2],[1,3,3,1],[1,1,1,0]],[[1,2,3,1],[2,2,0,2],[1,3,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,0,2],[1,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,0,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,0,3],[1,3,3,1],[1,1,0,1]],[[1,2,2,1],[3,2,0,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,2],[2,2,0,2],[1,3,3,1],[1,1,0,1]],[[1,2,3,1],[2,2,0,2],[1,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,0,2],[1,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,0,2],[1,3,3,1],[1,1,0,1]],[[0,1,3,1],[2,2,3,2],[0,2,3,0],[1,2,2,0]],[[0,1,2,2],[2,2,3,2],[0,2,3,0],[1,2,2,0]],[[0,1,2,1],[2,2,4,2],[0,2,3,0],[1,2,2,0]],[[1,2,2,1],[2,2,0,3],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,0,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,2],[2,2,0,2],[1,3,3,1],[1,0,2,0]],[[1,2,3,1],[2,2,0,2],[1,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,0,2],[1,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,0,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,0,3],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[3,2,0,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,2],[2,2,0,2],[1,3,3,1],[1,0,1,1]],[[1,2,3,1],[2,2,0,2],[1,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,2,0,2],[1,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,2,0,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,2,0,3],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,0,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,2],[2,2,0,2],[1,3,3,1],[0,2,1,0]],[[1,2,3,1],[2,2,0,2],[1,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,0,2],[1,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,0,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,0,3],[1,3,3,1],[0,2,0,1]],[[1,2,2,1],[3,2,0,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,2],[2,2,0,2],[1,3,3,1],[0,2,0,1]],[[1,2,3,1],[2,2,0,2],[1,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,0,2],[1,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,0,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,0,3],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,0,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,2],[2,2,0,2],[1,3,3,1],[0,1,2,0]],[[1,2,3,1],[2,2,0,2],[1,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,0,2],[1,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,0,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,0,3],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,0,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,2],[2,2,0,2],[1,3,3,1],[0,1,1,1]],[[1,2,3,1],[2,2,0,2],[1,3,3,1],[0,1,1,1]],[[1,3,2,1],[2,2,0,2],[1,3,3,1],[0,1,1,1]],[[2,2,2,1],[2,2,0,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[3,2,0,2],[1,3,3,0],[1,2,0,1]],[[1,2,2,2],[2,2,0,2],[1,3,3,0],[1,2,0,1]],[[1,2,3,1],[2,2,0,2],[1,3,3,0],[1,2,0,1]],[[1,3,2,1],[2,2,0,2],[1,3,3,0],[1,2,0,1]],[[0,1,3,1],[2,2,3,2],[0,3,3,0],[1,1,1,1]],[[0,1,2,2],[2,2,3,2],[0,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,2,4,2],[0,3,3,0],[1,1,1,1]],[[0,1,3,1],[2,2,3,2],[0,3,3,0],[1,1,2,0]],[[0,1,2,2],[2,2,3,2],[0,3,3,0],[1,1,2,0]],[[0,1,2,1],[2,2,4,2],[0,3,3,0],[1,1,2,0]],[[0,1,3,1],[2,2,3,2],[0,3,3,0],[1,2,0,1]],[[0,1,2,2],[2,2,3,2],[0,3,3,0],[1,2,0,1]],[[0,1,2,1],[2,2,4,2],[0,3,3,0],[1,2,0,1]],[[0,1,3,1],[2,2,3,2],[0,3,3,0],[1,2,1,0]],[[0,1,2,2],[2,2,3,2],[0,3,3,0],[1,2,1,0]],[[0,1,2,1],[2,2,4,2],[0,3,3,0],[1,2,1,0]],[[2,2,2,1],[2,2,0,2],[1,3,3,0],[1,2,0,1]],[[1,2,2,1],[2,2,0,3],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[3,2,0,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,2,0,2],[1,3,3,0],[1,1,1,1]],[[1,2,3,1],[2,2,0,2],[1,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,0,2],[1,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,0,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,0,3],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[3,2,0,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,2],[2,2,0,2],[1,3,3,0],[1,0,2,1]],[[1,2,3,1],[2,2,0,2],[1,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,0,2],[1,3,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,0,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,0,3],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,0,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,2],[2,2,0,2],[1,3,3,0],[0,2,1,1]],[[1,2,3,1],[2,2,0,2],[1,3,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,0,2],[1,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,0,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,0,3],[1,3,3,0],[0,1,2,1]],[[1,2,2,1],[3,2,0,2],[1,3,3,0],[0,1,2,1]],[[1,2,2,2],[2,2,0,2],[1,3,3,0],[0,1,2,1]],[[1,2,3,1],[2,2,0,2],[1,3,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,0,2],[1,3,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,0,2],[1,3,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,0,3],[1,3,2,2],[1,2,0,0]],[[1,2,2,1],[3,2,0,2],[1,3,2,2],[1,2,0,0]],[[1,2,2,2],[2,2,0,2],[1,3,2,2],[1,2,0,0]],[[1,2,3,1],[2,2,0,2],[1,3,2,2],[1,2,0,0]],[[1,3,2,1],[2,2,0,2],[1,3,2,2],[1,2,0,0]],[[2,2,2,1],[2,2,0,2],[1,3,2,2],[1,2,0,0]],[[1,2,2,1],[2,2,0,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,2,0,3],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[3,2,0,2],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,2,0,2],[1,3,2,2],[1,1,1,0]],[[1,2,3,1],[2,2,0,2],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,2,0,2],[1,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,2,0,2],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,2,0,2],[1,3,2,2],[1,1,0,2]],[[1,2,2,1],[2,2,0,2],[1,3,2,3],[1,1,0,1]],[[1,2,2,1],[2,2,0,3],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[3,2,0,2],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,2,0,2],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,2,0,2],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,2,0,2],[1,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,2,0,2],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[2,2,0,2],[1,3,2,3],[1,0,2,0]],[[1,2,2,1],[2,2,0,3],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[3,2,0,2],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,2,0,2],[1,3,2,2],[1,0,2,0]],[[1,2,3,1],[2,2,0,2],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,2,0,2],[1,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,2,0,2],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,2,0,2],[1,3,2,2],[1,0,1,2]],[[1,2,2,1],[2,2,0,2],[1,3,2,3],[1,0,1,1]],[[1,2,2,1],[2,2,0,3],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[3,2,0,2],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,2,0,2],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[2,2,0,2],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,2,0,2],[1,3,2,2],[1,0,1,1]],[[2,2,2,1],[2,2,0,2],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[2,2,0,2],[1,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,2,0,3],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[3,2,0,2],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,2,0,2],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,2,0,2],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,2,0,2],[1,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,2,0,2],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,2],[1,3,2,2],[0,2,0,2]],[[1,2,2,1],[2,2,0,2],[1,3,2,3],[0,2,0,1]],[[1,2,2,1],[2,2,0,3],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[3,2,0,2],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,2,0,2],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[2,2,0,2],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,2,0,2],[1,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,2,0,2],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,2,0,2],[1,3,2,3],[0,1,2,0]],[[1,2,2,1],[2,2,0,3],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[3,2,0,2],[1,3,2,2],[0,1,2,0]],[[1,2,2,2],[2,2,0,2],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,2,0,2],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,2,0,2],[1,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,2,0,2],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,2,0,2],[1,3,2,2],[0,1,1,2]],[[1,2,2,1],[2,2,0,2],[1,3,2,3],[0,1,1,1]],[[1,2,2,1],[2,2,0,3],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,2,0,2],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,2,0,2],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,2,0,2],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,2,0,2],[1,3,2,2],[0,1,1,1]],[[2,2,2,1],[2,2,0,2],[1,3,2,2],[0,1,1,1]],[[0,1,3,1],[2,2,3,2],[1,2,3,0],[0,2,2,0]],[[0,1,2,2],[2,2,3,2],[1,2,3,0],[0,2,2,0]],[[0,1,2,1],[2,2,4,2],[1,2,3,0],[0,2,2,0]],[[1,2,2,1],[2,2,0,3],[1,3,2,1],[1,1,2,0]],[[1,2,2,1],[3,2,0,2],[1,3,2,1],[1,1,2,0]],[[1,2,2,2],[2,2,0,2],[1,3,2,1],[1,1,2,0]],[[1,2,3,1],[2,2,0,2],[1,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,2,0,2],[1,3,2,1],[1,1,2,0]],[[2,2,2,1],[2,2,0,2],[1,3,2,1],[1,1,2,0]],[[1,2,2,1],[2,2,0,3],[1,3,2,1],[0,2,2,0]],[[1,2,2,1],[3,2,0,2],[1,3,2,1],[0,2,2,0]],[[1,2,2,2],[2,2,0,2],[1,3,2,1],[0,2,2,0]],[[1,2,3,1],[2,2,0,2],[1,3,2,1],[0,2,2,0]],[[1,3,2,1],[2,2,0,2],[1,3,2,1],[0,2,2,0]],[[2,2,2,1],[2,2,0,2],[1,3,2,1],[0,2,2,0]],[[1,2,2,1],[2,2,0,3],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[3,2,0,2],[1,3,2,0],[1,1,2,1]],[[1,2,2,2],[2,2,0,2],[1,3,2,0],[1,1,2,1]],[[1,2,3,1],[2,2,0,2],[1,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,2,0,2],[1,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,2,0,2],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[2,2,0,3],[1,3,2,0],[0,2,2,1]],[[1,2,2,1],[3,2,0,2],[1,3,2,0],[0,2,2,1]],[[1,2,2,2],[2,2,0,2],[1,3,2,0],[0,2,2,1]],[[1,2,3,1],[2,2,0,2],[1,3,2,0],[0,2,2,1]],[[1,3,2,1],[2,2,0,2],[1,3,2,0],[0,2,2,1]],[[2,2,2,1],[2,2,0,2],[1,3,2,0],[0,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,3,1,3],[1,1,2,0]],[[1,2,2,1],[2,2,0,3],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,2,0,2],[1,3,1,2],[1,1,2,0]],[[1,2,2,2],[2,2,0,2],[1,3,1,2],[1,1,2,0]],[[1,2,3,1],[2,2,0,2],[1,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,2,0,2],[1,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,2,0,2],[1,3,1,2],[1,1,2,0]],[[0,1,2,1],[2,2,3,2],[1,4,1,0],[1,2,2,0]],[[0,1,2,1],[2,2,3,2],[1,3,1,0],[2,2,2,0]],[[0,1,2,1],[2,2,3,2],[1,3,1,0],[1,3,2,0]],[[1,2,2,1],[2,2,0,2],[1,3,1,2],[1,1,1,2]],[[1,2,2,1],[2,2,0,2],[1,3,1,3],[1,1,1,1]],[[1,2,2,1],[2,2,0,3],[1,3,1,2],[1,1,1,1]],[[1,2,2,1],[3,2,0,2],[1,3,1,2],[1,1,1,1]],[[1,2,2,2],[2,2,0,2],[1,3,1,2],[1,1,1,1]],[[1,2,3,1],[2,2,0,2],[1,3,1,2],[1,1,1,1]],[[1,3,2,1],[2,2,0,2],[1,3,1,2],[1,1,1,1]],[[2,2,2,1],[2,2,0,2],[1,3,1,2],[1,1,1,1]],[[1,2,2,1],[2,2,0,2],[1,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,2,0,2],[1,3,1,2],[1,0,3,1]],[[1,2,2,1],[2,2,0,2],[1,3,1,3],[1,0,2,1]],[[1,2,2,1],[2,2,0,3],[1,3,1,2],[1,0,2,1]],[[1,2,2,1],[3,2,0,2],[1,3,1,2],[1,0,2,1]],[[1,2,2,2],[2,2,0,2],[1,3,1,2],[1,0,2,1]],[[1,2,3,1],[2,2,0,2],[1,3,1,2],[1,0,2,1]],[[1,3,2,1],[2,2,0,2],[1,3,1,2],[1,0,2,1]],[[2,2,2,1],[2,2,0,2],[1,3,1,2],[1,0,2,1]],[[1,2,2,1],[2,2,0,2],[1,3,1,3],[0,2,2,0]],[[1,2,2,1],[2,2,0,3],[1,3,1,2],[0,2,2,0]],[[1,2,2,1],[3,2,0,2],[1,3,1,2],[0,2,2,0]],[[1,2,2,2],[2,2,0,2],[1,3,1,2],[0,2,2,0]],[[1,2,3,1],[2,2,0,2],[1,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,2,0,2],[1,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,2,0,2],[1,3,1,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,2],[1,3,1,2],[0,2,1,2]],[[1,2,2,1],[2,2,0,2],[1,3,1,3],[0,2,1,1]],[[1,2,2,1],[2,2,0,3],[1,3,1,2],[0,2,1,1]],[[0,1,2,1],[2,2,3,2],[1,4,2,0],[1,2,1,0]],[[0,1,2,1],[2,2,3,2],[1,3,2,0],[2,2,1,0]],[[0,1,2,1],[2,2,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,2,1],[3,2,0,2],[1,3,1,2],[0,2,1,1]],[[1,2,2,2],[2,2,0,2],[1,3,1,2],[0,2,1,1]],[[1,2,3,1],[2,2,0,2],[1,3,1,2],[0,2,1,1]],[[1,3,2,1],[2,2,0,2],[1,3,1,2],[0,2,1,1]],[[2,2,2,1],[2,2,0,2],[1,3,1,2],[0,2,1,1]],[[1,2,2,1],[2,2,0,2],[1,3,1,2],[0,1,2,2]],[[1,2,2,1],[2,2,0,2],[1,3,1,2],[0,1,3,1]],[[1,2,2,1],[2,2,0,2],[1,3,1,3],[0,1,2,1]],[[1,2,2,1],[2,2,0,3],[1,3,1,2],[0,1,2,1]],[[1,2,2,1],[3,2,0,2],[1,3,1,2],[0,1,2,1]],[[1,2,2,2],[2,2,0,2],[1,3,1,2],[0,1,2,1]],[[1,2,3,1],[2,2,0,2],[1,3,1,2],[0,1,2,1]],[[1,3,2,1],[2,2,0,2],[1,3,1,2],[0,1,2,1]],[[2,2,2,1],[2,2,0,2],[1,3,1,2],[0,1,2,1]],[[1,2,2,1],[2,2,0,3],[1,3,1,1],[1,1,2,1]],[[1,2,2,1],[3,2,0,2],[1,3,1,1],[1,1,2,1]],[[1,2,2,2],[2,2,0,2],[1,3,1,1],[1,1,2,1]],[[1,2,3,1],[2,2,0,2],[1,3,1,1],[1,1,2,1]],[[1,3,2,1],[2,2,0,2],[1,3,1,1],[1,1,2,1]],[[2,2,2,1],[2,2,0,2],[1,3,1,1],[1,1,2,1]],[[1,2,2,1],[2,2,0,3],[1,3,1,1],[0,2,2,1]],[[1,2,2,1],[3,2,0,2],[1,3,1,1],[0,2,2,1]],[[1,2,2,2],[2,2,0,2],[1,3,1,1],[0,2,2,1]],[[1,2,3,1],[2,2,0,2],[1,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,2,0,2],[1,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,2,0,2],[1,3,1,1],[0,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,2,0,2],[1,2,4,2],[1,1,1,0]],[[1,2,2,1],[2,2,0,3],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[3,2,0,2],[1,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,2,0,2],[1,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,2,0,2],[1,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,2,0,2],[1,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,2,0,2],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,2,0,2],[1,2,3,2],[1,1,0,2]],[[1,2,2,1],[2,2,0,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,2,0,2],[1,2,4,2],[1,1,0,1]],[[1,2,2,1],[2,2,0,3],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[3,2,0,2],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,2,0,2],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,2,0,2],[1,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,2,0,2],[1,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,2,0,2],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,2,0,2],[1,2,3,2],[1,0,3,0]],[[1,2,2,1],[2,2,0,2],[1,2,3,3],[1,0,2,0]],[[1,2,2,1],[2,2,0,2],[1,2,4,2],[1,0,2,0]],[[1,2,2,1],[2,2,0,3],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[3,2,0,2],[1,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,0,2],[1,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,0,2],[1,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,0,2],[1,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,0,2],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,0,2],[1,2,3,2],[1,0,1,2]],[[1,2,2,1],[2,2,0,2],[1,2,3,3],[1,0,1,1]],[[1,2,2,1],[2,2,0,2],[1,2,4,2],[1,0,1,1]],[[1,2,2,1],[2,2,0,3],[1,2,3,2],[1,0,1,1]],[[1,2,2,1],[3,2,0,2],[1,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,0,2],[1,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,0,2],[1,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,0,2],[1,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,0,2],[1,2,3,2],[1,0,1,1]],[[0,1,3,1],[2,2,3,2],[1,3,3,0],[0,1,1,1]],[[0,1,2,2],[2,2,3,2],[1,3,3,0],[0,1,1,1]],[[0,1,2,1],[2,2,4,2],[1,3,3,0],[0,1,1,1]],[[0,1,3,1],[2,2,3,2],[1,3,3,0],[0,1,2,0]],[[0,1,2,2],[2,2,3,2],[1,3,3,0],[0,1,2,0]],[[0,1,2,1],[2,2,4,2],[1,3,3,0],[0,1,2,0]],[[0,1,3,1],[2,2,3,2],[1,3,3,0],[0,2,0,1]],[[0,1,2,2],[2,2,3,2],[1,3,3,0],[0,2,0,1]],[[0,1,2,1],[2,2,4,2],[1,3,3,0],[0,2,0,1]],[[0,1,3,1],[2,2,3,2],[1,3,3,0],[0,2,1,0]],[[0,1,2,2],[2,2,3,2],[1,3,3,0],[0,2,1,0]],[[0,1,2,1],[2,2,4,2],[1,3,3,0],[0,2,1,0]],[[0,1,3,1],[2,2,3,2],[1,3,3,0],[1,0,1,1]],[[0,1,2,2],[2,2,3,2],[1,3,3,0],[1,0,1,1]],[[0,1,2,1],[2,2,4,2],[1,3,3,0],[1,0,1,1]],[[0,1,3,1],[2,2,3,2],[1,3,3,0],[1,0,2,0]],[[0,1,2,2],[2,2,3,2],[1,3,3,0],[1,0,2,0]],[[0,1,2,1],[2,2,4,2],[1,3,3,0],[1,0,2,0]],[[0,1,3,1],[2,2,3,2],[1,3,3,0],[1,1,0,1]],[[0,1,2,2],[2,2,3,2],[1,3,3,0],[1,1,0,1]],[[0,1,2,1],[2,2,4,2],[1,3,3,0],[1,1,0,1]],[[0,1,3,1],[2,2,3,2],[1,3,3,0],[1,1,1,0]],[[0,1,2,2],[2,2,3,2],[1,3,3,0],[1,1,1,0]],[[0,1,2,1],[2,2,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,2,0,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,2,0,2],[1,2,4,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,3],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,2,0,2],[1,2,3,2],[0,2,1,0]],[[1,2,2,2],[2,2,0,2],[1,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,2,0,2],[1,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,0,2],[1,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,0,2],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,2],[1,2,3,2],[0,2,0,2]],[[1,2,2,1],[2,2,0,2],[1,2,3,3],[0,2,0,1]],[[1,2,2,1],[2,2,0,2],[1,2,4,2],[0,2,0,1]],[[1,2,2,1],[2,2,0,3],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[3,2,0,2],[1,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,2,0,2],[1,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,2,0,2],[1,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,0,2],[1,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,0,2],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,2,0,2],[1,2,3,2],[0,1,3,0]],[[1,2,2,1],[2,2,0,2],[1,2,3,3],[0,1,2,0]],[[1,2,2,1],[2,2,0,2],[1,2,4,2],[0,1,2,0]],[[1,2,2,1],[2,2,0,3],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[3,2,0,2],[1,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,0,2],[1,2,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,0,2],[1,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,0,2],[1,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,0,2],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,0,2],[1,2,3,2],[0,1,1,2]],[[1,2,2,1],[2,2,0,2],[1,2,3,3],[0,1,1,1]],[[1,2,2,1],[2,2,0,2],[1,2,4,2],[0,1,1,1]],[[1,2,2,1],[2,2,0,3],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[3,2,0,2],[1,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,0,2],[1,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,0,2],[1,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,0,2],[1,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,0,2],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,0,2],[1,2,3,2],[0,0,2,2]],[[1,2,2,1],[2,2,0,2],[1,2,3,3],[0,0,2,1]],[[1,2,2,1],[2,2,0,2],[1,2,4,2],[0,0,2,1]],[[1,2,2,1],[2,2,0,3],[1,2,3,2],[0,0,2,1]],[[1,2,2,1],[3,2,0,2],[1,2,3,2],[0,0,2,1]],[[1,2,2,2],[2,2,0,2],[1,2,3,2],[0,0,2,1]],[[1,2,3,1],[2,2,0,2],[1,2,3,2],[0,0,2,1]],[[1,3,2,1],[2,2,0,2],[1,2,3,2],[0,0,2,1]],[[2,2,2,1],[2,2,0,2],[1,2,3,2],[0,0,2,1]],[[1,2,2,1],[2,2,0,2],[1,2,3,1],[1,0,2,2]],[[1,2,2,1],[2,2,0,2],[1,2,3,1],[1,0,3,1]],[[1,2,2,1],[2,2,0,2],[1,2,4,1],[1,0,2,1]],[[1,2,2,1],[2,2,0,2],[1,2,3,1],[0,1,2,2]],[[1,2,2,1],[2,2,0,2],[1,2,3,1],[0,1,3,1]],[[1,2,2,1],[2,2,0,2],[1,2,4,1],[0,1,2,1]],[[1,2,2,1],[2,2,0,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,2,0,2],[1,2,2,2],[1,0,3,1]],[[1,2,2,1],[2,2,0,2],[1,2,2,3],[1,0,2,1]],[[1,2,2,1],[2,2,0,3],[1,2,2,2],[1,0,2,1]],[[1,2,2,1],[3,2,0,2],[1,2,2,2],[1,0,2,1]],[[1,2,2,2],[2,2,0,2],[1,2,2,2],[1,0,2,1]],[[1,2,3,1],[2,2,0,2],[1,2,2,2],[1,0,2,1]],[[1,3,2,1],[2,2,0,2],[1,2,2,2],[1,0,2,1]],[[2,2,2,1],[2,2,0,2],[1,2,2,2],[1,0,2,1]],[[1,2,2,1],[2,2,0,2],[1,2,2,2],[0,1,2,2]],[[1,2,2,1],[2,2,0,2],[1,2,2,2],[0,1,3,1]],[[1,2,2,1],[2,2,0,2],[1,2,2,3],[0,1,2,1]],[[1,2,2,1],[2,2,0,3],[1,2,2,2],[0,1,2,1]],[[1,2,2,1],[3,2,0,2],[1,2,2,2],[0,1,2,1]],[[1,2,2,2],[2,2,0,2],[1,2,2,2],[0,1,2,1]],[[1,2,3,1],[2,2,0,2],[1,2,2,2],[0,1,2,1]],[[1,3,2,1],[2,2,0,2],[1,2,2,2],[0,1,2,1]],[[2,2,2,1],[2,2,0,2],[1,2,2,2],[0,1,2,1]],[[1,2,2,1],[2,2,0,2],[1,2,1,2],[0,2,2,2]],[[1,2,2,1],[2,2,0,2],[1,2,1,2],[0,2,3,1]],[[1,2,2,1],[2,2,0,2],[1,2,1,2],[0,3,2,1]],[[1,2,2,1],[2,2,0,2],[1,2,1,3],[0,2,2,1]],[[1,2,2,1],[2,2,0,3],[1,2,1,2],[0,2,2,1]],[[1,2,2,1],[3,2,0,2],[1,2,1,2],[0,2,2,1]],[[1,2,2,2],[2,2,0,2],[1,2,1,2],[0,2,2,1]],[[1,2,3,1],[2,2,0,2],[1,2,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,0,2],[1,2,1,2],[0,2,2,1]],[[2,2,2,1],[2,2,0,2],[1,2,1,2],[0,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,2,0,2],[1,1,3,2],[0,3,2,0]],[[1,2,2,1],[2,2,0,2],[1,1,3,3],[0,2,2,0]],[[1,2,2,1],[2,2,0,2],[1,1,4,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,3],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[3,2,0,2],[1,1,3,2],[0,2,2,0]],[[1,2,2,2],[2,2,0,2],[1,1,3,2],[0,2,2,0]],[[1,2,3,1],[2,2,0,2],[1,1,3,2],[0,2,2,0]],[[1,3,2,1],[2,2,0,2],[1,1,3,2],[0,2,2,0]],[[2,2,2,1],[2,2,0,2],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,2],[1,1,3,2],[0,2,1,2]],[[1,2,2,1],[2,2,0,2],[1,1,3,3],[0,2,1,1]],[[1,2,2,1],[2,2,0,2],[1,1,4,2],[0,2,1,1]],[[1,2,2,1],[2,2,0,3],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[3,2,0,2],[1,1,3,2],[0,2,1,1]],[[1,2,2,2],[2,2,0,2],[1,1,3,2],[0,2,1,1]],[[1,2,3,1],[2,2,0,2],[1,1,3,2],[0,2,1,1]],[[1,3,2,1],[2,2,0,2],[1,1,3,2],[0,2,1,1]],[[2,2,2,1],[2,2,0,2],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,2,0,2],[1,1,3,1],[0,2,2,2]],[[1,2,2,1],[2,2,0,2],[1,1,3,1],[0,2,3,1]],[[1,2,2,1],[2,2,0,2],[1,1,3,1],[0,3,2,1]],[[1,2,2,1],[2,2,0,2],[1,1,4,1],[0,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,1,2,2],[0,2,2,2]],[[1,2,2,1],[2,2,0,2],[1,1,2,2],[0,2,3,1]],[[1,2,2,1],[2,2,0,2],[1,1,2,2],[0,3,2,1]],[[1,2,2,1],[2,2,0,2],[1,1,2,3],[0,2,2,1]],[[1,2,2,1],[2,2,0,3],[1,1,2,2],[0,2,2,1]],[[1,2,2,1],[3,2,0,2],[1,1,2,2],[0,2,2,1]],[[1,2,2,2],[2,2,0,2],[1,1,2,2],[0,2,2,1]],[[1,2,3,1],[2,2,0,2],[1,1,2,2],[0,2,2,1]],[[1,3,2,1],[2,2,0,2],[1,1,2,2],[0,2,2,1]],[[2,2,2,1],[2,2,0,2],[1,1,2,2],[0,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,1,1,2],[1,2,2,2]],[[1,2,2,1],[2,2,0,2],[1,1,1,2],[1,2,3,1]],[[1,2,2,1],[2,2,0,2],[1,1,1,2],[1,3,2,1]],[[1,2,2,1],[2,2,0,2],[1,1,1,2],[2,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,1,1,3],[1,2,2,1]],[[1,2,2,1],[2,2,0,3],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[3,2,0,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,0,2],[1,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,2,0,2],[1,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[1,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,0,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,0,3,2],[1,2,3,0]],[[1,2,2,1],[2,2,0,2],[1,0,3,2],[1,3,2,0]],[[1,2,2,1],[2,2,0,2],[1,0,3,2],[2,2,2,0]],[[1,2,2,1],[2,2,0,2],[1,0,3,3],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[1,0,4,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,3],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[3,2,0,2],[1,0,3,2],[1,2,2,0]],[[1,2,2,2],[2,2,0,2],[1,0,3,2],[1,2,2,0]],[[1,2,3,1],[2,2,0,2],[1,0,3,2],[1,2,2,0]],[[1,3,2,1],[2,2,0,2],[1,0,3,2],[1,2,2,0]],[[2,2,2,1],[2,2,0,2],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[1,0,3,2],[1,2,1,2]],[[1,2,2,1],[2,2,0,2],[1,0,3,3],[1,2,1,1]],[[1,2,2,1],[2,2,0,2],[1,0,4,2],[1,2,1,1]],[[1,2,2,1],[2,2,0,3],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[3,2,0,2],[1,0,3,2],[1,2,1,1]],[[1,2,2,2],[2,2,0,2],[1,0,3,2],[1,2,1,1]],[[1,2,3,1],[2,2,0,2],[1,0,3,2],[1,2,1,1]],[[1,3,2,1],[2,2,0,2],[1,0,3,2],[1,2,1,1]],[[2,2,2,1],[2,2,0,2],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[2,2,0,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[2,2,0,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,1],[2,2,0,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,1],[2,2,0,3],[1,0,3,2],[0,2,2,1]],[[1,2,2,2],[2,2,0,2],[1,0,3,2],[0,2,2,1]],[[1,2,3,1],[2,2,0,2],[1,0,3,2],[0,2,2,1]],[[1,3,2,1],[2,2,0,2],[1,0,3,2],[0,2,2,1]],[[2,2,2,1],[2,2,0,2],[1,0,3,2],[0,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,0,3,1],[1,2,2,2]],[[1,2,2,1],[2,2,0,2],[1,0,3,1],[1,2,3,1]],[[1,2,2,1],[2,2,0,2],[1,0,3,1],[1,3,2,1]],[[1,2,2,1],[2,2,0,2],[1,0,3,1],[2,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,0,4,1],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,0,2,2],[1,2,2,2]],[[1,2,2,1],[2,2,0,2],[1,0,2,2],[1,2,3,1]],[[1,2,2,1],[2,2,0,2],[1,0,2,2],[1,3,2,1]],[[1,2,2,1],[2,2,0,2],[1,0,2,2],[2,2,2,1]],[[1,2,2,1],[2,2,0,2],[1,0,2,3],[1,2,2,1]],[[1,2,2,1],[2,2,0,3],[1,0,2,2],[1,2,2,1]],[[1,2,2,1],[3,2,0,2],[1,0,2,2],[1,2,2,1]],[[1,2,2,2],[2,2,0,2],[1,0,2,2],[1,2,2,1]],[[1,2,3,1],[2,2,0,2],[1,0,2,2],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[1,0,2,2],[1,2,2,1]],[[2,2,2,1],[2,2,0,2],[1,0,2,2],[1,2,2,1]],[[0,1,3,1],[2,2,3,2],[2,0,0,2],[1,2,2,1]],[[0,1,2,2],[2,2,3,2],[2,0,0,2],[1,2,2,1]],[[0,1,2,1],[2,2,3,3],[2,0,0,2],[1,2,2,1]],[[0,1,3,1],[2,2,3,2],[2,0,3,0],[1,2,2,0]],[[0,1,2,2],[2,2,3,2],[2,0,3,0],[1,2,2,0]],[[0,1,2,1],[2,2,4,2],[2,0,3,0],[1,2,2,0]],[[1,2,2,1],[2,2,0,3],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,0,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,2],[2,2,0,2],[0,3,3,1],[1,2,1,0]],[[1,2,3,1],[2,2,0,2],[0,3,3,1],[1,2,1,0]],[[1,3,2,1],[2,2,0,2],[0,3,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,0,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,0,3],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,0,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,2],[2,2,0,2],[0,3,3,1],[1,2,0,1]],[[1,2,3,1],[2,2,0,2],[0,3,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,0,2],[0,3,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,0,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[2,2,0,3],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[3,2,0,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,2],[2,2,0,2],[0,3,3,1],[1,1,2,0]],[[1,2,3,1],[2,2,0,2],[0,3,3,1],[1,1,2,0]],[[1,3,2,1],[2,2,0,2],[0,3,3,1],[1,1,2,0]],[[2,2,2,1],[2,2,0,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[2,2,0,3],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,0,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,0,2],[0,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,0,2],[0,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,0,2],[0,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,0,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[2,2,0,3],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,0,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,2],[2,2,0,2],[0,3,3,0],[1,2,1,1]],[[1,2,3,1],[2,2,0,2],[0,3,3,0],[1,2,1,1]],[[1,3,2,1],[2,2,0,2],[0,3,3,0],[1,2,1,1]],[[2,2,2,1],[2,2,0,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[2,2,0,3],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[3,2,0,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,2],[2,2,0,2],[0,3,3,0],[1,1,2,1]],[[1,2,3,1],[2,2,0,2],[0,3,3,0],[1,1,2,1]],[[1,3,2,1],[2,2,0,2],[0,3,3,0],[1,1,2,1]],[[2,2,2,1],[2,2,0,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[2,2,0,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,2,0,3],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[3,2,0,2],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[2,2,0,2],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[2,2,0,2],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[2,2,0,2],[0,3,2,2],[1,2,1,0]],[[2,2,2,1],[2,2,0,2],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[2,2,0,2],[0,3,2,2],[1,2,0,2]],[[1,2,2,1],[2,2,0,2],[0,3,2,3],[1,2,0,1]],[[1,2,2,1],[2,2,0,3],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[3,2,0,2],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[2,2,0,2],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[2,2,0,2],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[2,2,0,2],[0,3,2,2],[1,2,0,1]],[[2,2,2,1],[2,2,0,2],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[2,2,0,2],[0,3,2,3],[1,1,2,0]],[[1,2,2,1],[2,2,0,3],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,2,0,2],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[2,2,0,2],[0,3,2,2],[1,1,2,0]],[[1,2,3,1],[2,2,0,2],[0,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,0,2],[0,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,2,0,2],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,2],[0,3,2,2],[1,1,1,2]],[[1,2,2,1],[2,2,0,2],[0,3,2,3],[1,1,1,1]],[[1,2,2,1],[2,2,0,3],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[3,2,0,2],[0,3,2,2],[1,1,1,1]],[[1,2,2,2],[2,2,0,2],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[2,2,0,2],[0,3,2,2],[1,1,1,1]],[[1,3,2,1],[2,2,0,2],[0,3,2,2],[1,1,1,1]],[[2,2,2,1],[2,2,0,2],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[2,2,0,3],[0,3,2,1],[1,2,2,0]],[[1,2,2,1],[3,2,0,2],[0,3,2,1],[1,2,2,0]],[[1,2,2,2],[2,2,0,2],[0,3,2,1],[1,2,2,0]],[[1,2,3,1],[2,2,0,2],[0,3,2,1],[1,2,2,0]],[[1,3,2,1],[2,2,0,2],[0,3,2,1],[1,2,2,0]],[[2,2,2,1],[2,2,0,2],[0,3,2,1],[1,2,2,0]],[[1,2,2,1],[2,2,0,3],[0,3,2,0],[1,2,2,1]],[[1,2,2,1],[3,2,0,2],[0,3,2,0],[1,2,2,1]],[[1,2,2,2],[2,2,0,2],[0,3,2,0],[1,2,2,1]],[[1,2,3,1],[2,2,0,2],[0,3,2,0],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[0,3,2,0],[1,2,2,1]],[[2,2,2,1],[2,2,0,2],[0,3,2,0],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[0,3,1,3],[1,2,2,0]],[[1,2,2,1],[2,2,0,3],[0,3,1,2],[1,2,2,0]],[[0,1,2,1],[3,2,3,2],[2,2,1,0],[1,2,2,0]],[[0,1,2,1],[2,2,3,2],[3,2,1,0],[1,2,2,0]],[[0,1,2,1],[2,2,3,2],[2,2,1,0],[2,2,2,0]],[[0,1,2,1],[2,2,3,2],[2,2,1,0],[1,3,2,0]],[[1,2,2,1],[3,2,0,2],[0,3,1,2],[1,2,2,0]],[[1,2,2,2],[2,2,0,2],[0,3,1,2],[1,2,2,0]],[[1,2,3,1],[2,2,0,2],[0,3,1,2],[1,2,2,0]],[[1,3,2,1],[2,2,0,2],[0,3,1,2],[1,2,2,0]],[[2,2,2,1],[2,2,0,2],[0,3,1,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[0,3,1,2],[1,2,1,2]],[[1,2,2,1],[2,2,0,2],[0,3,1,3],[1,2,1,1]],[[1,2,2,1],[2,2,0,3],[0,3,1,2],[1,2,1,1]],[[1,2,2,1],[3,2,0,2],[0,3,1,2],[1,2,1,1]],[[1,2,2,2],[2,2,0,2],[0,3,1,2],[1,2,1,1]],[[1,2,3,1],[2,2,0,2],[0,3,1,2],[1,2,1,1]],[[1,3,2,1],[2,2,0,2],[0,3,1,2],[1,2,1,1]],[[2,2,2,1],[2,2,0,2],[0,3,1,2],[1,2,1,1]],[[1,2,2,1],[2,2,0,2],[0,3,1,2],[1,1,2,2]],[[1,2,2,1],[2,2,0,2],[0,3,1,2],[1,1,3,1]],[[1,2,2,1],[2,2,0,2],[0,3,1,3],[1,1,2,1]],[[1,2,2,1],[2,2,0,3],[0,3,1,2],[1,1,2,1]],[[1,2,2,1],[3,2,0,2],[0,3,1,2],[1,1,2,1]],[[1,2,2,2],[2,2,0,2],[0,3,1,2],[1,1,2,1]],[[1,2,3,1],[2,2,0,2],[0,3,1,2],[1,1,2,1]],[[1,3,2,1],[2,2,0,2],[0,3,1,2],[1,1,2,1]],[[2,2,2,1],[2,2,0,2],[0,3,1,2],[1,1,2,1]],[[1,2,2,1],[2,2,0,3],[0,3,1,1],[1,2,2,1]],[[1,2,2,1],[3,2,0,2],[0,3,1,1],[1,2,2,1]],[[1,2,2,2],[2,2,0,2],[0,3,1,1],[1,2,2,1]],[[1,2,3,1],[2,2,0,2],[0,3,1,1],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[0,3,1,1],[1,2,2,1]],[[2,2,2,1],[2,2,0,2],[0,3,1,1],[1,2,2,1]],[[0,1,2,1],[3,2,3,2],[2,2,2,0],[1,2,1,0]],[[0,1,2,1],[2,2,3,2],[3,2,2,0],[1,2,1,0]],[[0,1,2,1],[2,2,3,2],[2,2,2,0],[2,2,1,0]],[[0,1,2,1],[2,2,3,2],[2,2,2,0],[1,3,1,0]],[[1,2,2,1],[2,2,0,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[2,2,0,2],[0,2,4,2],[1,2,1,0]],[[1,2,2,1],[2,2,0,3],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[3,2,0,2],[0,2,3,2],[1,2,1,0]],[[1,2,2,2],[2,2,0,2],[0,2,3,2],[1,2,1,0]],[[1,2,3,1],[2,2,0,2],[0,2,3,2],[1,2,1,0]],[[1,3,2,1],[2,2,0,2],[0,2,3,2],[1,2,1,0]],[[2,2,2,1],[2,2,0,2],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[2,2,0,2],[0,2,3,2],[1,2,0,2]],[[1,2,2,1],[2,2,0,2],[0,2,3,3],[1,2,0,1]],[[1,2,2,1],[2,2,0,2],[0,2,4,2],[1,2,0,1]],[[1,2,2,1],[2,2,0,3],[0,2,3,2],[1,2,0,1]],[[1,2,2,1],[3,2,0,2],[0,2,3,2],[1,2,0,1]],[[1,2,2,2],[2,2,0,2],[0,2,3,2],[1,2,0,1]],[[1,2,3,1],[2,2,0,2],[0,2,3,2],[1,2,0,1]],[[1,3,2,1],[2,2,0,2],[0,2,3,2],[1,2,0,1]],[[2,2,2,1],[2,2,0,2],[0,2,3,2],[1,2,0,1]],[[1,2,2,1],[2,2,0,2],[0,2,3,2],[1,1,3,0]],[[1,2,2,1],[2,2,0,2],[0,2,3,3],[1,1,2,0]],[[1,2,2,1],[2,2,0,2],[0,2,4,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,3],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[3,2,0,2],[0,2,3,2],[1,1,2,0]],[[1,2,2,2],[2,2,0,2],[0,2,3,2],[1,1,2,0]],[[1,2,3,1],[2,2,0,2],[0,2,3,2],[1,1,2,0]],[[1,3,2,1],[2,2,0,2],[0,2,3,2],[1,1,2,0]],[[2,2,2,1],[2,2,0,2],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,2],[0,2,3,2],[1,1,1,2]],[[1,2,2,1],[2,2,0,2],[0,2,3,3],[1,1,1,1]],[[1,2,2,1],[2,2,0,2],[0,2,4,2],[1,1,1,1]],[[1,2,2,1],[2,2,0,3],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[3,2,0,2],[0,2,3,2],[1,1,1,1]],[[1,2,2,2],[2,2,0,2],[0,2,3,2],[1,1,1,1]],[[1,2,3,1],[2,2,0,2],[0,2,3,2],[1,1,1,1]],[[1,3,2,1],[2,2,0,2],[0,2,3,2],[1,1,1,1]],[[2,2,2,1],[2,2,0,2],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[2,2,0,2],[0,2,3,2],[1,0,2,2]],[[1,2,2,1],[2,2,0,2],[0,2,3,3],[1,0,2,1]],[[1,2,2,1],[2,2,0,2],[0,2,4,2],[1,0,2,1]],[[1,2,2,1],[2,2,0,3],[0,2,3,2],[1,0,2,1]],[[1,2,2,2],[2,2,0,2],[0,2,3,2],[1,0,2,1]],[[1,2,3,1],[2,2,0,2],[0,2,3,2],[1,0,2,1]],[[1,3,2,1],[2,2,0,2],[0,2,3,2],[1,0,2,1]],[[2,2,2,1],[2,2,0,2],[0,2,3,2],[1,0,2,1]],[[1,2,2,1],[2,2,0,2],[0,2,3,1],[1,1,2,2]],[[1,2,2,1],[2,2,0,2],[0,2,3,1],[1,1,3,1]],[[1,2,2,1],[2,2,0,2],[0,2,4,1],[1,1,2,1]],[[1,2,2,1],[2,2,0,2],[0,2,2,2],[1,1,2,2]],[[1,2,2,1],[2,2,0,2],[0,2,2,2],[1,1,3,1]],[[1,2,2,1],[2,2,0,2],[0,2,2,3],[1,1,2,1]],[[1,2,2,1],[2,2,0,3],[0,2,2,2],[1,1,2,1]],[[1,2,2,1],[3,2,0,2],[0,2,2,2],[1,1,2,1]],[[1,2,2,2],[2,2,0,2],[0,2,2,2],[1,1,2,1]],[[1,2,3,1],[2,2,0,2],[0,2,2,2],[1,1,2,1]],[[1,3,2,1],[2,2,0,2],[0,2,2,2],[1,1,2,1]],[[2,2,2,1],[2,2,0,2],[0,2,2,2],[1,1,2,1]],[[1,2,2,1],[2,2,0,2],[0,2,1,2],[1,2,2,2]],[[1,2,2,1],[2,2,0,2],[0,2,1,2],[1,2,3,1]],[[1,2,2,1],[2,2,0,2],[0,2,1,2],[1,3,2,1]],[[1,2,2,1],[2,2,0,2],[0,2,1,2],[2,2,2,1]],[[1,2,2,1],[2,2,0,2],[0,2,1,3],[1,2,2,1]],[[1,2,2,1],[2,2,0,3],[0,2,1,2],[1,2,2,1]],[[1,2,2,1],[3,2,0,2],[0,2,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,0,2],[0,2,1,2],[1,2,2,1]],[[1,2,3,1],[2,2,0,2],[0,2,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[0,2,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,0,2],[0,2,1,2],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[0,1,3,2],[1,2,3,0]],[[1,2,2,1],[2,2,0,2],[0,1,3,2],[1,3,2,0]],[[1,2,2,1],[2,2,0,2],[0,1,3,2],[2,2,2,0]],[[1,2,2,1],[2,2,0,2],[0,1,3,3],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[0,1,4,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,3],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[3,2,0,2],[0,1,3,2],[1,2,2,0]],[[1,2,2,2],[2,2,0,2],[0,1,3,2],[1,2,2,0]],[[1,2,3,1],[2,2,0,2],[0,1,3,2],[1,2,2,0]],[[1,3,2,1],[2,2,0,2],[0,1,3,2],[1,2,2,0]],[[2,2,2,1],[2,2,0,2],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,2],[0,1,3,2],[1,2,1,2]],[[1,2,2,1],[2,2,0,2],[0,1,3,3],[1,2,1,1]],[[1,2,2,1],[2,2,0,2],[0,1,4,2],[1,2,1,1]],[[1,2,2,1],[2,2,0,3],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[3,2,0,2],[0,1,3,2],[1,2,1,1]],[[1,2,2,2],[2,2,0,2],[0,1,3,2],[1,2,1,1]],[[1,2,3,1],[2,2,0,2],[0,1,3,2],[1,2,1,1]],[[1,3,2,1],[2,2,0,2],[0,1,3,2],[1,2,1,1]],[[2,2,2,1],[2,2,0,2],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[2,2,0,2],[0,1,3,1],[1,2,2,2]],[[1,2,2,1],[2,2,0,2],[0,1,3,1],[1,2,3,1]],[[1,2,2,1],[2,2,0,2],[0,1,3,1],[1,3,2,1]],[[1,2,2,1],[2,2,0,2],[0,1,3,1],[2,2,2,1]],[[1,2,2,1],[2,2,0,2],[0,1,4,1],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[0,1,2,2],[1,2,2,2]],[[1,2,2,1],[2,2,0,2],[0,1,2,2],[1,2,3,1]],[[1,2,2,1],[2,2,0,2],[0,1,2,2],[1,3,2,1]],[[1,2,2,1],[2,2,0,2],[0,1,2,2],[2,2,2,1]],[[1,2,2,1],[2,2,0,2],[0,1,2,3],[1,2,2,1]],[[1,2,2,1],[2,2,0,3],[0,1,2,2],[1,2,2,1]],[[1,2,2,1],[3,2,0,2],[0,1,2,2],[1,2,2,1]],[[1,2,2,2],[2,2,0,2],[0,1,2,2],[1,2,2,1]],[[1,2,3,1],[2,2,0,2],[0,1,2,2],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[0,1,2,2],[1,2,2,1]],[[2,2,2,1],[2,2,0,2],[0,1,2,2],[1,2,2,1]],[[1,2,2,1],[2,2,0,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,2,0,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,1],[2,2,0,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,1],[2,2,0,3],[0,0,3,2],[1,2,2,1]],[[1,2,2,2],[2,2,0,2],[0,0,3,2],[1,2,2,1]],[[1,2,3,1],[2,2,0,2],[0,0,3,2],[1,2,2,1]],[[1,3,2,1],[2,2,0,2],[0,0,3,2],[1,2,2,1]],[[2,2,2,1],[2,2,0,2],[0,0,3,2],[1,2,2,1]],[[1,2,2,1],[2,2,0,1],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[3,2,0,1],[2,3,3,2],[1,0,1,0]],[[1,2,2,2],[2,2,0,1],[2,3,3,2],[1,0,1,0]],[[1,2,3,1],[2,2,0,1],[2,3,3,2],[1,0,1,0]],[[1,3,2,1],[2,2,0,1],[2,3,3,2],[1,0,1,0]],[[2,2,2,1],[2,2,0,1],[2,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,2,0,1],[3,3,3,2],[1,0,0,1]],[[1,2,2,1],[3,2,0,1],[2,3,3,2],[1,0,0,1]],[[1,2,2,2],[2,2,0,1],[2,3,3,2],[1,0,0,1]],[[1,2,3,1],[2,2,0,1],[2,3,3,2],[1,0,0,1]],[[1,3,2,1],[2,2,0,1],[2,3,3,2],[1,0,0,1]],[[2,2,2,1],[2,2,0,1],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[3,2,3,2],[2,3,0,0],[1,2,2,0]],[[0,1,2,1],[2,2,3,2],[3,3,0,0],[1,2,2,0]],[[0,1,2,1],[2,2,3,2],[2,3,0,0],[2,2,2,0]],[[0,1,2,1],[2,2,3,2],[2,3,0,0],[1,3,2,0]],[[0,1,2,1],[3,2,3,2],[2,3,1,0],[0,2,2,0]],[[0,1,2,1],[2,2,3,2],[3,3,1,0],[0,2,2,0]],[[0,1,2,1],[2,2,3,2],[2,4,1,0],[0,2,2,0]],[[0,1,2,1],[2,2,3,2],[2,3,1,0],[0,3,2,0]],[[0,1,2,1],[3,2,3,2],[2,3,1,0],[1,1,2,0]],[[0,1,2,1],[2,2,3,2],[3,3,1,0],[1,1,2,0]],[[0,1,2,1],[2,2,3,2],[2,4,1,0],[1,1,2,0]],[[0,1,2,1],[2,2,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,2,1],[2,2,0,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,2,0,1],[2,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,2,0,1],[3,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,2,0,1],[2,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,2,0,1],[2,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,2,0,1],[2,3,3,1],[1,2,0,0]],[[1,2,2,1],[2,2,0,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[2,2,0,1],[2,4,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,0,1],[3,3,3,1],[1,1,1,0]],[[1,2,2,1],[3,2,0,1],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[2,2,0,1],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,2,0,1],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,2,0,1],[2,3,3,1],[2,1,0,1]],[[1,2,2,1],[2,2,0,1],[2,4,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,0,1],[3,3,3,1],[1,1,0,1]],[[1,2,2,1],[3,2,0,1],[2,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,2,0,1],[2,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,2,0,1],[2,3,3,1],[1,1,0,1]],[[1,2,2,1],[2,2,0,1],[2,3,3,1],[2,0,2,0]],[[1,2,2,1],[2,2,0,1],[2,4,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,0,1],[3,3,3,1],[1,0,2,0]],[[1,2,2,1],[3,2,0,1],[2,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,2,0,1],[2,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,2,0,1],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,2,0,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,2,0,1],[2,4,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,0,1],[3,3,3,1],[0,2,1,0]],[[1,2,2,1],[3,2,0,1],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,2,0,1],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,2,0,1],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,2,0,1],[2,4,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,0,1],[3,3,3,1],[0,2,0,1]],[[1,2,2,1],[3,2,0,1],[2,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,2,0,1],[2,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,2,0,1],[2,3,3,1],[0,2,0,1]],[[1,2,2,1],[2,2,0,1],[2,4,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,0,1],[3,3,3,1],[0,1,2,0]],[[1,2,2,1],[3,2,0,1],[2,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,2,0,1],[2,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,2,0,1],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,2,0,1],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,2,0,1],[2,4,3,0],[1,2,0,1]],[[1,2,2,1],[2,2,0,1],[3,3,3,0],[1,2,0,1]],[[1,2,2,1],[3,2,0,1],[2,3,3,0],[1,2,0,1]],[[1,3,2,1],[2,2,0,1],[2,3,3,0],[1,2,0,1]],[[2,2,2,1],[2,2,0,1],[2,3,3,0],[1,2,0,1]],[[1,2,2,1],[2,2,0,1],[2,3,3,0],[2,1,1,1]],[[1,2,2,1],[2,2,0,1],[2,4,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,0,1],[3,3,3,0],[1,1,1,1]],[[1,2,2,1],[3,2,0,1],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,2,0,1],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,2,0,1],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,2,0,1],[2,3,3,0],[2,0,2,1]],[[1,2,2,1],[2,2,0,1],[2,4,3,0],[1,0,2,1]],[[1,2,2,1],[2,2,0,1],[3,3,3,0],[1,0,2,1]],[[0,1,2,1],[3,2,3,2],[2,3,2,0],[0,1,2,0]],[[0,1,2,1],[2,2,3,2],[3,3,2,0],[0,1,2,0]],[[0,1,2,1],[2,2,3,2],[2,4,2,0],[0,1,2,0]],[[0,1,2,1],[3,2,3,2],[2,3,2,0],[0,2,0,1]],[[0,1,2,1],[2,2,3,2],[3,3,2,0],[0,2,0,1]],[[0,1,2,1],[2,2,3,2],[2,4,2,0],[0,2,0,1]],[[0,1,2,1],[3,2,3,2],[2,3,2,0],[0,2,1,0]],[[0,1,2,1],[2,2,3,2],[3,3,2,0],[0,2,1,0]],[[0,1,2,1],[2,2,3,2],[2,4,2,0],[0,2,1,0]],[[0,1,2,1],[2,2,3,2],[2,3,2,0],[0,3,1,0]],[[1,2,2,1],[3,2,0,1],[2,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,2,0,1],[2,3,3,0],[1,0,2,1]],[[2,2,2,1],[2,2,0,1],[2,3,3,0],[1,0,2,1]],[[0,1,2,1],[3,2,3,2],[2,3,2,0],[1,0,2,0]],[[0,1,2,1],[2,2,3,2],[3,3,2,0],[1,0,2,0]],[[0,1,2,1],[2,2,3,2],[2,4,2,0],[1,0,2,0]],[[0,1,2,1],[2,2,3,2],[2,3,2,0],[2,0,2,0]],[[0,1,2,1],[3,2,3,2],[2,3,2,0],[1,1,0,1]],[[0,1,2,1],[2,2,3,2],[3,3,2,0],[1,1,0,1]],[[0,1,2,1],[2,2,3,2],[2,4,2,0],[1,1,0,1]],[[0,1,2,1],[2,2,3,2],[2,3,2,0],[2,1,0,1]],[[0,1,2,1],[3,2,3,2],[2,3,2,0],[1,1,1,0]],[[0,1,2,1],[2,2,3,2],[3,3,2,0],[1,1,1,0]],[[0,1,2,1],[2,2,3,2],[2,4,2,0],[1,1,1,0]],[[0,1,2,1],[2,2,3,2],[2,3,2,0],[2,1,1,0]],[[0,1,2,1],[3,2,3,2],[2,3,2,0],[1,2,0,0]],[[0,1,2,1],[2,2,3,2],[3,3,2,0],[1,2,0,0]],[[0,1,2,1],[2,2,3,2],[2,4,2,0],[1,2,0,0]],[[0,1,2,1],[2,2,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[2,2,0,1],[2,3,3,0],[0,3,1,1]],[[1,2,2,1],[2,2,0,1],[2,4,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,0,1],[3,3,3,0],[0,2,1,1]],[[1,2,2,1],[3,2,0,1],[2,3,3,0],[0,2,1,1]],[[1,3,2,1],[2,2,0,1],[2,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,2,0,1],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,2,0,1],[2,4,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,0,1],[3,3,3,0],[0,1,2,1]],[[1,2,2,1],[3,2,0,1],[2,3,3,0],[0,1,2,1]],[[1,3,2,1],[2,2,0,1],[2,3,3,0],[0,1,2,1]],[[2,2,2,1],[2,2,0,1],[2,3,3,0],[0,1,2,1]],[[1,2,2,1],[2,2,0,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,2,0,1],[2,4,2,1],[1,1,2,0]],[[1,2,2,1],[2,2,0,1],[3,3,2,1],[1,1,2,0]],[[1,2,2,1],[3,2,0,1],[2,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,2,0,1],[2,3,2,1],[1,1,2,0]],[[2,2,2,1],[2,2,0,1],[2,3,2,1],[1,1,2,0]],[[1,2,2,1],[2,2,0,1],[2,3,2,1],[0,3,2,0]],[[1,2,2,1],[2,2,0,1],[2,4,2,1],[0,2,2,0]],[[1,2,2,1],[2,2,0,1],[3,3,2,1],[0,2,2,0]],[[1,2,2,1],[3,2,0,1],[2,3,2,1],[0,2,2,0]],[[1,3,2,1],[2,2,0,1],[2,3,2,1],[0,2,2,0]],[[2,2,2,1],[2,2,0,1],[2,3,2,1],[0,2,2,0]],[[1,2,2,1],[2,2,0,1],[2,3,2,0],[2,1,2,1]],[[1,2,2,1],[2,2,0,1],[2,4,2,0],[1,1,2,1]],[[1,2,2,1],[2,2,0,1],[3,3,2,0],[1,1,2,1]],[[1,2,2,1],[3,2,0,1],[2,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,2,0,1],[2,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,2,0,1],[2,3,2,0],[1,1,2,1]],[[1,2,2,1],[2,2,0,1],[2,3,2,0],[0,2,3,1]],[[1,2,2,1],[2,2,0,1],[2,3,2,0],[0,3,2,1]],[[1,2,2,1],[2,2,0,1],[2,4,2,0],[0,2,2,1]],[[1,2,2,1],[2,2,0,1],[3,3,2,0],[0,2,2,1]],[[1,2,2,1],[3,2,0,1],[2,3,2,0],[0,2,2,1]],[[1,3,2,1],[2,2,0,1],[2,3,2,0],[0,2,2,1]],[[2,2,2,1],[2,2,0,1],[2,3,2,0],[0,2,2,1]],[[1,2,2,1],[2,2,0,1],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,2,0,1],[2,3,1,1],[2,2,2,0]],[[1,2,2,1],[2,2,0,1],[3,3,1,1],[1,2,2,0]],[[1,2,2,1],[3,2,0,1],[2,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,2,0,1],[2,3,1,1],[1,2,2,0]],[[2,2,2,1],[2,2,0,1],[2,3,1,1],[1,2,2,0]],[[1,2,2,1],[2,2,0,1],[2,3,1,0],[1,3,2,1]],[[1,2,2,1],[2,2,0,1],[2,3,1,0],[2,2,2,1]],[[1,2,2,1],[2,2,0,1],[3,3,1,0],[1,2,2,1]],[[1,2,2,1],[3,2,0,1],[2,3,1,0],[1,2,2,1]],[[1,3,2,1],[2,2,0,1],[2,3,1,0],[1,2,2,1]],[[2,2,2,1],[2,2,0,1],[2,3,1,0],[1,2,2,1]],[[1,2,2,1],[2,2,0,1],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[2,2,0,1],[3,2,3,2],[1,2,0,0]],[[1,2,2,1],[3,2,0,1],[2,2,3,2],[1,2,0,0]],[[1,2,2,2],[2,2,0,1],[2,2,3,2],[1,2,0,0]],[[1,2,3,1],[2,2,0,1],[2,2,3,2],[1,2,0,0]],[[1,3,2,1],[2,2,0,1],[2,2,3,2],[1,2,0,0]],[[2,2,2,1],[2,2,0,1],[2,2,3,2],[1,2,0,0]],[[1,2,2,1],[2,2,0,1],[2,2,3,2],[2,1,1,0]],[[1,2,2,1],[2,2,0,1],[3,2,3,2],[1,1,1,0]],[[1,2,2,1],[3,2,0,1],[2,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,2,0,1],[2,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,2,0,1],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,2,0,1],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,2,0,1],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,2,0,1],[2,2,3,2],[2,1,0,1]],[[1,2,2,1],[2,2,0,1],[3,2,3,2],[1,1,0,1]],[[1,2,2,1],[3,2,0,1],[2,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,2,0,1],[2,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,2,0,1],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,2,0,1],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,2,0,1],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,2,0,1],[2,2,3,2],[2,0,2,0]],[[1,2,2,1],[2,2,0,1],[3,2,3,2],[1,0,2,0]],[[1,2,2,1],[3,2,0,1],[2,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,0,1],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,0,1],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,0,1],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,0,1],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,0,1],[2,2,3,2],[2,0,1,1]],[[1,2,2,1],[2,2,0,1],[3,2,3,2],[1,0,1,1]],[[1,2,2,1],[3,2,0,1],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,0,1],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,0,1],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,0,1],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,0,1],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,2,0,1],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,2,0,1],[2,2,3,2],[0,2,1,0]],[[1,2,2,2],[2,2,0,1],[2,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,2,0,1],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,0,1],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,0,1],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,1],[3,2,3,2],[0,2,0,1]],[[1,2,2,1],[3,2,0,1],[2,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,2,0,1],[2,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,2,0,1],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,0,1],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,0,1],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,2,0,1],[3,2,3,2],[0,1,2,0]],[[1,2,2,1],[3,2,0,1],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,0,1],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,0,1],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,0,1],[2,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,0,1],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,0,1],[3,2,3,2],[0,1,1,1]],[[1,2,2,1],[3,2,0,1],[2,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,0,1],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,0,1],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,0,1],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,0,1],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,0,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,0,1],[2,2,3,1],[2,2,1,0]],[[1,2,2,1],[2,2,0,1],[3,2,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,0,1],[2,2,3,1],[1,2,1,0]],[[1,3,2,1],[2,2,0,1],[2,2,3,1],[1,2,1,0]],[[2,2,2,1],[2,2,0,1],[2,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,2,0,1],[2,2,3,1],[2,1,1,1]],[[1,2,2,1],[2,2,0,1],[3,2,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,0,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,0,1],[2,2,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,0,1],[2,2,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,0,1],[2,2,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,0,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,1],[2,2,0,1],[2,2,3,1],[2,0,2,1]],[[1,2,2,1],[2,2,0,1],[3,2,3,1],[1,0,2,1]],[[1,2,2,1],[3,2,0,1],[2,2,3,1],[1,0,2,1]],[[1,2,2,2],[2,2,0,1],[2,2,3,1],[1,0,2,1]],[[1,2,3,1],[2,2,0,1],[2,2,3,1],[1,0,2,1]],[[1,3,2,1],[2,2,0,1],[2,2,3,1],[1,0,2,1]],[[2,2,2,1],[2,2,0,1],[2,2,3,1],[1,0,2,1]],[[0,1,2,1],[3,2,3,2],[2,3,3,0],[0,2,0,0]],[[0,1,2,1],[2,2,3,2],[3,3,3,0],[0,2,0,0]],[[0,1,2,1],[2,2,3,2],[2,4,3,0],[0,2,0,0]],[[1,2,2,1],[2,2,0,1],[3,2,3,1],[0,2,1,1]],[[1,2,2,1],[3,2,0,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,0,1],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,0,1],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,0,1],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,0,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[2,2,0,1],[3,2,3,1],[0,1,2,1]],[[1,2,2,1],[3,2,0,1],[2,2,3,1],[0,1,2,1]],[[1,2,2,2],[2,2,0,1],[2,2,3,1],[0,1,2,1]],[[1,2,3,1],[2,2,0,1],[2,2,3,1],[0,1,2,1]],[[1,3,2,1],[2,2,0,1],[2,2,3,1],[0,1,2,1]],[[2,2,2,1],[2,2,0,1],[2,2,3,1],[0,1,2,1]],[[1,2,2,1],[2,2,0,1],[2,2,3,0],[1,3,1,1]],[[1,2,2,1],[2,2,0,1],[2,2,3,0],[2,2,1,1]],[[1,2,2,1],[2,2,0,1],[3,2,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,0,1],[2,2,3,0],[1,2,1,1]],[[1,3,2,1],[2,2,0,1],[2,2,3,0],[1,2,1,1]],[[2,2,2,1],[2,2,0,1],[2,2,3,0],[1,2,1,1]],[[0,1,2,1],[3,2,3,2],[2,3,3,0],[1,1,0,0]],[[0,1,2,1],[2,2,3,2],[3,3,3,0],[1,1,0,0]],[[0,1,2,1],[2,2,3,2],[2,4,3,0],[1,1,0,0]],[[0,1,2,1],[2,2,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,2,1],[2,2,0,1],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[2,2,0,1],[3,2,2,2],[1,1,2,0]],[[1,2,2,1],[3,2,0,1],[2,2,2,2],[1,1,2,0]],[[1,2,2,2],[2,2,0,1],[2,2,2,2],[1,1,2,0]],[[1,2,3,1],[2,2,0,1],[2,2,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,0,1],[2,2,2,2],[1,1,2,0]],[[2,2,2,1],[2,2,0,1],[2,2,2,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,1],[3,2,2,2],[0,2,2,0]],[[1,2,2,1],[3,2,0,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,2],[2,2,0,1],[2,2,2,2],[0,2,2,0]],[[1,2,3,1],[2,2,0,1],[2,2,2,2],[0,2,2,0]],[[1,3,2,1],[2,2,0,1],[2,2,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,0,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,1],[2,2,2,1],[1,3,2,0]],[[1,2,2,1],[2,2,0,1],[2,2,2,1],[2,2,2,0]],[[1,2,2,1],[2,2,0,1],[3,2,2,1],[1,2,2,0]],[[1,2,2,1],[3,2,0,1],[2,2,2,1],[1,2,2,0]],[[1,3,2,1],[2,2,0,1],[2,2,2,1],[1,2,2,0]],[[2,2,2,1],[2,2,0,1],[2,2,2,1],[1,2,2,0]],[[1,2,2,1],[2,2,0,1],[2,2,2,1],[2,1,2,1]],[[1,2,2,1],[2,2,0,1],[3,2,2,1],[1,1,2,1]],[[1,2,2,1],[3,2,0,1],[2,2,2,1],[1,1,2,1]],[[1,2,2,2],[2,2,0,1],[2,2,2,1],[1,1,2,1]],[[1,2,3,1],[2,2,0,1],[2,2,2,1],[1,1,2,1]],[[1,3,2,1],[2,2,0,1],[2,2,2,1],[1,1,2,1]],[[2,2,2,1],[2,2,0,1],[2,2,2,1],[1,1,2,1]],[[1,2,2,1],[2,2,0,1],[3,2,2,1],[0,2,2,1]],[[1,2,2,1],[3,2,0,1],[2,2,2,1],[0,2,2,1]],[[1,2,2,2],[2,2,0,1],[2,2,2,1],[0,2,2,1]],[[1,2,3,1],[2,2,0,1],[2,2,2,1],[0,2,2,1]],[[1,3,2,1],[2,2,0,1],[2,2,2,1],[0,2,2,1]],[[2,2,2,1],[2,2,0,1],[2,2,2,1],[0,2,2,1]],[[1,2,2,1],[2,2,0,1],[2,2,2,0],[1,2,3,1]],[[1,2,2,1],[2,2,0,1],[2,2,2,0],[1,3,2,1]],[[1,2,2,1],[2,2,0,1],[2,2,2,0],[2,2,2,1]],[[1,2,2,1],[2,2,0,1],[3,2,2,0],[1,2,2,1]],[[1,2,2,1],[3,2,0,1],[2,2,2,0],[1,2,2,1]],[[1,3,2,1],[2,2,0,1],[2,2,2,0],[1,2,2,1]],[[2,2,2,1],[2,2,0,1],[2,2,2,0],[1,2,2,1]],[[1,2,2,1],[2,2,0,1],[2,2,1,2],[2,1,2,1]],[[1,2,2,1],[2,2,0,1],[3,2,1,2],[1,1,2,1]],[[1,2,2,1],[3,2,0,1],[2,2,1,2],[1,1,2,1]],[[1,2,2,2],[2,2,0,1],[2,2,1,2],[1,1,2,1]],[[1,2,3,1],[2,2,0,1],[2,2,1,2],[1,1,2,1]],[[1,3,2,1],[2,2,0,1],[2,2,1,2],[1,1,2,1]],[[2,2,2,1],[2,2,0,1],[2,2,1,2],[1,1,2,1]],[[1,2,2,1],[2,2,0,1],[3,2,1,2],[0,2,2,1]],[[1,2,2,1],[3,2,0,1],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[2,2,0,1],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[2,2,0,1],[2,2,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,0,1],[2,2,1,2],[0,2,2,1]],[[2,2,2,1],[2,2,0,1],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[2,2,0,1],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,0,1],[2,1,3,2],[2,2,1,0]],[[1,2,2,1],[2,2,0,1],[3,1,3,2],[1,2,1,0]],[[1,2,2,1],[3,2,0,1],[2,1,3,2],[1,2,1,0]],[[1,2,2,2],[2,2,0,1],[2,1,3,2],[1,2,1,0]],[[1,2,3,1],[2,2,0,1],[2,1,3,2],[1,2,1,0]],[[1,3,2,1],[2,2,0,1],[2,1,3,2],[1,2,1,0]],[[2,2,2,1],[2,2,0,1],[2,1,3,2],[1,2,1,0]],[[1,2,2,1],[2,2,0,1],[2,1,3,2],[1,3,0,1]],[[1,2,2,1],[2,2,0,1],[2,1,3,2],[2,2,0,1]],[[1,2,2,1],[2,2,0,1],[3,1,3,2],[1,2,0,1]],[[1,2,2,1],[3,2,0,1],[2,1,3,2],[1,2,0,1]],[[1,2,2,2],[2,2,0,1],[2,1,3,2],[1,2,0,1]],[[1,2,3,1],[2,2,0,1],[2,1,3,2],[1,2,0,1]],[[1,3,2,1],[2,2,0,1],[2,1,3,2],[1,2,0,1]],[[2,2,2,1],[2,2,0,1],[2,1,3,2],[1,2,0,1]],[[1,2,2,1],[2,2,0,1],[2,1,3,1],[1,3,1,1]],[[1,2,2,1],[2,2,0,1],[2,1,3,1],[2,2,1,1]],[[1,2,2,1],[2,2,0,1],[3,1,3,1],[1,2,1,1]],[[1,2,2,1],[3,2,0,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,2],[2,2,0,1],[2,1,3,1],[1,2,1,1]],[[1,2,3,1],[2,2,0,1],[2,1,3,1],[1,2,1,1]],[[1,3,2,1],[2,2,0,1],[2,1,3,1],[1,2,1,1]],[[2,2,2,1],[2,2,0,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[2,2,0,1],[2,1,2,2],[1,2,3,0]],[[1,2,2,1],[2,2,0,1],[2,1,2,2],[1,3,2,0]],[[1,2,2,1],[2,2,0,1],[2,1,2,2],[2,2,2,0]],[[1,2,2,1],[2,2,0,1],[3,1,2,2],[1,2,2,0]],[[1,2,2,1],[3,2,0,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[2,2,0,1],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,2,0,1],[2,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,2,0,1],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,2,0,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,1],[2,1,2,1],[1,2,2,2]],[[1,2,2,1],[2,2,0,1],[2,1,2,1],[1,2,3,1]],[[1,2,2,1],[2,2,0,1],[2,1,2,1],[1,3,2,1]],[[1,2,2,1],[2,2,0,1],[2,1,2,1],[2,2,2,1]],[[1,2,2,1],[2,2,0,1],[3,1,2,1],[1,2,2,1]],[[1,2,2,1],[3,2,0,1],[2,1,2,1],[1,2,2,1]],[[1,2,2,2],[2,2,0,1],[2,1,2,1],[1,2,2,1]],[[1,2,3,1],[2,2,0,1],[2,1,2,1],[1,2,2,1]],[[1,3,2,1],[2,2,0,1],[2,1,2,1],[1,2,2,1]],[[2,2,2,1],[2,2,0,1],[2,1,2,1],[1,2,2,1]],[[1,2,2,1],[2,2,0,1],[2,1,1,2],[1,2,2,2]],[[1,2,2,1],[2,2,0,1],[2,1,1,2],[1,2,3,1]],[[1,2,2,1],[2,2,0,1],[2,1,1,2],[1,3,2,1]],[[1,2,2,1],[2,2,0,1],[2,1,1,2],[2,2,2,1]],[[1,2,2,1],[2,2,0,1],[2,1,1,3],[1,2,2,1]],[[1,2,2,1],[2,2,0,1],[3,1,1,2],[1,2,2,1]],[[1,2,2,1],[3,2,0,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,0,1],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,2,0,1],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,0,1],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,0,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[2,2,0,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[2,2,0,1],[2,0,3,2],[1,3,2,0]],[[1,2,2,1],[2,2,0,1],[2,0,3,2],[2,2,2,0]],[[1,2,2,1],[2,2,0,1],[2,0,3,3],[1,2,2,0]],[[1,2,2,1],[2,2,0,1],[2,0,4,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,1],[3,0,3,2],[1,2,2,0]],[[1,2,2,1],[3,2,0,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[2,2,0,1],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[2,2,0,1],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[2,2,0,1],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[2,2,0,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,1],[2,0,3,2],[1,2,1,2]],[[1,2,2,1],[2,2,0,1],[2,0,3,3],[1,2,1,1]],[[1,2,2,1],[2,2,0,1],[2,0,4,2],[1,2,1,1]],[[1,2,2,1],[2,2,0,1],[2,0,3,1],[1,2,2,2]],[[1,2,2,1],[2,2,0,1],[2,0,3,1],[1,2,3,1]],[[1,2,2,1],[2,2,0,1],[2,0,3,1],[1,3,2,1]],[[1,2,2,1],[2,2,0,1],[2,0,3,1],[2,2,2,1]],[[1,2,2,1],[2,2,0,1],[2,0,4,1],[1,2,2,1]],[[1,2,2,1],[2,2,0,1],[3,0,3,1],[1,2,2,1]],[[1,2,2,1],[3,2,0,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,2],[2,2,0,1],[2,0,3,1],[1,2,2,1]],[[1,2,3,1],[2,2,0,1],[2,0,3,1],[1,2,2,1]],[[1,3,2,1],[2,2,0,1],[2,0,3,1],[1,2,2,1]],[[2,2,2,1],[2,2,0,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,1],[2,2,0,1],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[2,2,0,1],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[2,2,0,1],[2,0,2,2],[1,3,2,1]],[[1,2,2,1],[2,2,0,1],[2,0,2,2],[2,2,2,1]],[[1,2,2,1],[2,2,0,1],[2,0,2,3],[1,2,2,1]],[[1,2,2,1],[2,2,0,1],[3,0,2,2],[1,2,2,1]],[[1,2,2,1],[3,2,0,1],[2,0,2,2],[1,2,2,1]],[[1,2,2,2],[2,2,0,1],[2,0,2,2],[1,2,2,1]],[[1,2,3,1],[2,2,0,1],[2,0,2,2],[1,2,2,1]],[[1,3,2,1],[2,2,0,1],[2,0,2,2],[1,2,2,1]],[[2,2,2,1],[2,2,0,1],[2,0,2,2],[1,2,2,1]],[[1,2,2,1],[3,2,0,1],[1,3,3,2],[1,2,0,0]],[[1,2,2,2],[2,2,0,1],[1,3,3,2],[1,2,0,0]],[[1,2,3,1],[2,2,0,1],[1,3,3,2],[1,2,0,0]],[[1,3,2,1],[2,2,0,1],[1,3,3,2],[1,2,0,0]],[[2,2,2,1],[2,2,0,1],[1,3,3,2],[1,2,0,0]],[[1,2,2,1],[3,2,0,1],[1,3,3,2],[1,1,1,0]],[[1,2,2,2],[2,2,0,1],[1,3,3,2],[1,1,1,0]],[[1,2,3,1],[2,2,0,1],[1,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,2,0,1],[1,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,2,0,1],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[3,2,0,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,2,0,1],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,2,0,1],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,2,0,1],[1,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,2,0,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,2,0,1],[1,3,3,2],[1,0,2,0]],[[1,2,2,2],[2,2,0,1],[1,3,3,2],[1,0,2,0]],[[1,2,3,1],[2,2,0,1],[1,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,0,1],[1,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,0,1],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[3,2,0,1],[1,3,3,2],[1,0,1,1]],[[1,2,2,2],[2,2,0,1],[1,3,3,2],[1,0,1,1]],[[1,2,3,1],[2,2,0,1],[1,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,0,1],[1,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,0,1],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[3,2,0,1],[1,3,3,2],[0,2,1,0]],[[1,2,2,2],[2,2,0,1],[1,3,3,2],[0,2,1,0]],[[1,2,3,1],[2,2,0,1],[1,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,0,1],[1,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,0,1],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[3,2,0,1],[1,3,3,2],[0,2,0,1]],[[1,2,2,2],[2,2,0,1],[1,3,3,2],[0,2,0,1]],[[1,2,3,1],[2,2,0,1],[1,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,0,1],[1,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,0,1],[1,3,3,2],[0,2,0,1]],[[1,2,2,1],[3,2,0,1],[1,3,3,2],[0,1,2,0]],[[1,2,2,2],[2,2,0,1],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[2,2,0,1],[1,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,0,1],[1,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,0,1],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[3,2,0,1],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[2,2,0,1],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[2,2,0,1],[1,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,0,1],[1,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,0,1],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,0,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,2,0,1],[1,3,3,1],[2,2,1,0]],[[1,2,2,1],[2,2,0,1],[1,4,3,1],[1,2,1,0]],[[1,2,2,1],[3,2,0,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[2,2,0,1],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,2,0,1],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,0,1],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,0,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,0,1],[1,3,3,1],[1,0,2,1]],[[1,2,2,2],[2,2,0,1],[1,3,3,1],[1,0,2,1]],[[1,2,3,1],[2,2,0,1],[1,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,2,0,1],[1,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,2,0,1],[1,3,3,1],[1,0,2,1]],[[1,2,2,1],[3,2,0,1],[1,3,3,1],[0,2,1,1]],[[1,2,2,2],[2,2,0,1],[1,3,3,1],[0,2,1,1]],[[1,2,3,1],[2,2,0,1],[1,3,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,0,1],[1,3,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,0,1],[1,3,3,1],[0,2,1,1]],[[1,2,2,1],[3,2,0,1],[1,3,3,1],[0,1,2,1]],[[1,2,2,2],[2,2,0,1],[1,3,3,1],[0,1,2,1]],[[1,2,3,1],[2,2,0,1],[1,3,3,1],[0,1,2,1]],[[1,3,2,1],[2,2,0,1],[1,3,3,1],[0,1,2,1]],[[2,2,2,1],[2,2,0,1],[1,3,3,1],[0,1,2,1]],[[1,2,2,1],[2,2,0,1],[1,3,3,0],[1,3,1,1]],[[1,2,2,1],[2,2,0,1],[1,3,3,0],[2,2,1,1]],[[1,2,2,1],[2,2,0,1],[1,4,3,0],[1,2,1,1]],[[1,2,2,1],[3,2,0,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,2],[2,2,0,1],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[2,2,0,1],[1,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,0,1],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,2,0,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,2,0,1],[1,3,2,2],[0,2,2,0]],[[1,2,2,2],[2,2,0,1],[1,3,2,2],[0,2,2,0]],[[1,2,3,1],[2,2,0,1],[1,3,2,2],[0,2,2,0]],[[1,3,2,1],[2,2,0,1],[1,3,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,0,1],[1,3,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,1],[1,3,2,1],[1,3,2,0]],[[1,2,2,1],[2,2,0,1],[1,3,2,1],[2,2,2,0]],[[1,2,2,1],[2,2,0,1],[1,4,2,1],[1,2,2,0]],[[1,2,2,1],[3,2,0,1],[1,3,2,1],[1,1,2,1]],[[1,2,2,2],[2,2,0,1],[1,3,2,1],[1,1,2,1]],[[1,2,3,1],[2,2,0,1],[1,3,2,1],[1,1,2,1]],[[1,3,2,1],[2,2,0,1],[1,3,2,1],[1,1,2,1]],[[2,2,2,1],[2,2,0,1],[1,3,2,1],[1,1,2,1]],[[1,2,2,1],[3,2,0,1],[1,3,2,1],[0,2,2,1]],[[1,2,2,2],[2,2,0,1],[1,3,2,1],[0,2,2,1]],[[1,2,3,1],[2,2,0,1],[1,3,2,1],[0,2,2,1]],[[1,3,2,1],[2,2,0,1],[1,3,2,1],[0,2,2,1]],[[2,2,2,1],[2,2,0,1],[1,3,2,1],[0,2,2,1]],[[1,2,2,1],[2,2,0,1],[1,3,2,0],[1,2,3,1]],[[1,2,2,1],[2,2,0,1],[1,3,2,0],[1,3,2,1]],[[1,2,2,1],[2,2,0,1],[1,3,2,0],[2,2,2,1]],[[1,2,2,1],[2,2,0,1],[1,4,2,0],[1,2,2,1]],[[1,2,2,1],[3,2,0,1],[1,3,1,2],[1,1,2,1]],[[1,2,2,2],[2,2,0,1],[1,3,1,2],[1,1,2,1]],[[1,2,3,1],[2,2,0,1],[1,3,1,2],[1,1,2,1]],[[1,3,2,1],[2,2,0,1],[1,3,1,2],[1,1,2,1]],[[2,2,2,1],[2,2,0,1],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[3,2,0,1],[1,3,1,2],[0,2,2,1]],[[1,2,2,2],[2,2,0,1],[1,3,1,2],[0,2,2,1]],[[1,2,3,1],[2,2,0,1],[1,3,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,0,1],[1,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,2,0,1],[1,3,1,2],[0,2,2,1]],[[1,2,2,1],[3,2,0,1],[0,3,3,2],[1,2,1,0]],[[1,2,2,2],[2,2,0,1],[0,3,3,2],[1,2,1,0]],[[1,2,3,1],[2,2,0,1],[0,3,3,2],[1,2,1,0]],[[1,3,2,1],[2,2,0,1],[0,3,3,2],[1,2,1,0]],[[2,2,2,1],[2,2,0,1],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[3,2,0,1],[0,3,3,2],[1,2,0,1]],[[1,2,2,2],[2,2,0,1],[0,3,3,2],[1,2,0,1]],[[1,2,3,1],[2,2,0,1],[0,3,3,2],[1,2,0,1]],[[1,3,2,1],[2,2,0,1],[0,3,3,2],[1,2,0,1]],[[2,2,2,1],[2,2,0,1],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[3,2,0,1],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[2,2,0,1],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[2,2,0,1],[0,3,3,2],[1,1,2,0]],[[1,3,2,1],[2,2,0,1],[0,3,3,2],[1,1,2,0]],[[2,2,2,1],[2,2,0,1],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[3,2,0,1],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[2,2,0,1],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[2,2,0,1],[0,3,3,2],[1,1,1,1]],[[1,3,2,1],[2,2,0,1],[0,3,3,2],[1,1,1,1]],[[2,2,2,1],[2,2,0,1],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[3,2,0,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,2],[2,2,0,1],[0,3,3,1],[1,2,1,1]],[[1,2,3,1],[2,2,0,1],[0,3,3,1],[1,2,1,1]],[[1,3,2,1],[2,2,0,1],[0,3,3,1],[1,2,1,1]],[[2,2,2,1],[2,2,0,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,1],[3,2,0,1],[0,3,3,1],[1,1,2,1]],[[1,2,2,2],[2,2,0,1],[0,3,3,1],[1,1,2,1]],[[1,2,3,1],[2,2,0,1],[0,3,3,1],[1,1,2,1]],[[1,3,2,1],[2,2,0,1],[0,3,3,1],[1,1,2,1]],[[2,2,2,1],[2,2,0,1],[0,3,3,1],[1,1,2,1]],[[1,2,2,1],[3,2,0,1],[0,3,2,2],[1,2,2,0]],[[1,2,2,2],[2,2,0,1],[0,3,2,2],[1,2,2,0]],[[1,2,3,1],[2,2,0,1],[0,3,2,2],[1,2,2,0]],[[1,3,2,1],[2,2,0,1],[0,3,2,2],[1,2,2,0]],[[2,2,2,1],[2,2,0,1],[0,3,2,2],[1,2,2,0]],[[1,2,2,1],[3,2,0,1],[0,3,2,1],[1,2,2,1]],[[1,2,2,2],[2,2,0,1],[0,3,2,1],[1,2,2,1]],[[1,2,3,1],[2,2,0,1],[0,3,2,1],[1,2,2,1]],[[1,3,2,1],[2,2,0,1],[0,3,2,1],[1,2,2,1]],[[2,2,2,1],[2,2,0,1],[0,3,2,1],[1,2,2,1]],[[1,2,2,1],[3,2,0,1],[0,3,1,2],[1,2,2,1]],[[1,2,2,2],[2,2,0,1],[0,3,1,2],[1,2,2,1]],[[1,2,3,1],[2,2,0,1],[0,3,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,0,1],[0,3,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,0,1],[0,3,1,2],[1,2,2,1]],[[0,1,3,1],[2,3,0,2],[0,2,2,2],[1,2,2,1]],[[0,1,2,2],[2,3,0,2],[0,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,0,3],[0,2,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,2,2,3],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,2,2,2],[2,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,2,2,2],[1,3,2,1]],[[0,1,2,1],[2,3,0,2],[0,2,2,2],[1,2,3,1]],[[0,1,2,1],[2,3,0,2],[0,2,2,2],[1,2,2,2]],[[0,1,2,1],[2,3,0,2],[0,2,4,1],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,2,3,1],[2,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,3,0,2],[0,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,3,0,2],[0,2,3,1],[1,2,2,2]],[[0,1,3,1],[2,3,0,2],[0,2,3,2],[1,2,1,1]],[[0,1,2,2],[2,3,0,2],[0,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,0,3],[0,2,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,0,2],[0,2,4,2],[1,2,1,1]],[[0,1,2,1],[2,3,0,2],[0,2,3,3],[1,2,1,1]],[[0,1,2,1],[2,3,0,2],[0,2,3,2],[1,2,1,2]],[[0,1,3,1],[2,3,0,2],[0,2,3,2],[1,2,2,0]],[[0,1,2,2],[2,3,0,2],[0,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,0,3],[0,2,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,0,2],[0,2,4,2],[1,2,2,0]],[[0,1,2,1],[2,3,0,2],[0,2,3,3],[1,2,2,0]],[[0,1,2,1],[2,3,0,2],[0,2,3,2],[2,2,2,0]],[[0,1,2,1],[2,3,0,2],[0,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,3,0,2],[0,2,3,2],[1,2,3,0]],[[0,1,3,1],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,2],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[3,3,0,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,4,0,2],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,0,3],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,4,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,1,3],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,3,0,2],[0,3,1,2],[1,2,2,2]],[[0,1,2,1],[3,3,0,2],[0,3,2,1],[1,2,2,1]],[[0,1,2,1],[2,4,0,2],[0,3,2,1],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,4,2,1],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,3,0,2],[0,3,2,1],[1,2,2,2]],[[0,1,3,1],[2,3,0,2],[0,3,2,2],[1,1,2,1]],[[0,1,2,2],[2,3,0,2],[0,3,2,2],[1,1,2,1]],[[0,1,2,1],[2,3,0,3],[0,3,2,2],[1,1,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,2,3],[1,1,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,2,2],[1,1,3,1]],[[0,1,2,1],[2,3,0,2],[0,3,2,2],[1,1,2,2]],[[0,1,2,1],[3,3,0,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,1],[2,4,0,2],[0,3,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,0,2],[0,4,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,0,2],[0,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,3,0,2],[0,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,3,0,2],[0,3,2,2],[1,2,3,0]],[[0,1,2,1],[3,3,0,2],[0,3,3,1],[1,1,2,1]],[[0,1,2,1],[2,4,0,2],[0,3,3,1],[1,1,2,1]],[[0,1,2,1],[2,3,0,2],[0,4,3,1],[1,1,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,4,1],[1,1,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,1],[1,1,3,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,1],[1,1,2,2]],[[0,1,2,1],[3,3,0,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,4,0,2],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,0,2],[0,4,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,0,2],[0,3,4,1],[1,2,1,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,1],[1,3,1,1]],[[0,1,3,1],[2,3,0,2],[0,3,3,2],[1,0,2,1]],[[0,1,2,2],[2,3,0,2],[0,3,3,2],[1,0,2,1]],[[0,1,2,1],[2,3,0,3],[0,3,3,2],[1,0,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,4,2],[1,0,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,3],[1,0,2,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,2],[1,0,2,2]],[[0,1,3,1],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[0,1,2,2],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[3,3,0,2],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,4,0,2],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,0,3],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,0,2],[0,4,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,0,2],[0,3,4,2],[1,1,1,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,3],[1,1,1,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,2],[1,1,1,2]],[[0,1,3,1],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[0,1,2,2],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[3,3,0,2],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,4,0,2],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,0,3],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,0,2],[0,4,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,0,2],[0,3,4,2],[1,1,2,0]],[[0,1,2,1],[2,3,0,2],[0,3,3,3],[1,1,2,0]],[[0,1,2,1],[2,3,0,2],[0,3,3,2],[1,1,3,0]],[[0,1,3,1],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[0,1,2,2],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[3,3,0,2],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,4,0,2],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,0,3],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,0,2],[0,4,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,0,2],[0,3,4,2],[1,2,0,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,3],[1,2,0,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,3,0,2],[0,3,3,2],[1,2,0,2]],[[0,1,3,1],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[0,1,2,2],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[3,3,0,2],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,4,0,2],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,0,3],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,0,2],[0,4,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,0,2],[0,3,4,2],[1,2,1,0]],[[0,1,2,1],[2,3,0,2],[0,3,3,3],[1,2,1,0]],[[0,1,2,1],[2,3,0,2],[0,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,3,0,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,0,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,2,0,0],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,2,0,0],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[3,2,0,0],[2,3,3,2],[1,2,0,0]],[[1,3,2,1],[2,2,0,0],[2,3,3,2],[1,2,0,0]],[[2,2,2,1],[2,2,0,0],[2,3,3,2],[1,2,0,0]],[[0,1,3,1],[2,3,0,2],[1,2,2,2],[0,2,2,1]],[[0,1,2,2],[2,3,0,2],[1,2,2,2],[0,2,2,1]],[[0,1,2,1],[2,3,0,3],[1,2,2,2],[0,2,2,1]],[[0,1,2,1],[2,3,0,2],[1,2,2,3],[0,2,2,1]],[[0,1,2,1],[2,3,0,2],[1,2,2,2],[0,3,2,1]],[[0,1,2,1],[2,3,0,2],[1,2,2,2],[0,2,3,1]],[[0,1,2,1],[2,3,0,2],[1,2,2,2],[0,2,2,2]],[[0,1,2,1],[2,3,0,2],[1,2,4,1],[0,2,2,1]],[[0,1,2,1],[2,3,0,2],[1,2,3,1],[0,3,2,1]],[[0,1,2,1],[2,3,0,2],[1,2,3,1],[0,2,3,1]],[[0,1,2,1],[2,3,0,2],[1,2,3,1],[0,2,2,2]],[[0,1,3,1],[2,3,0,2],[1,2,3,2],[0,2,1,1]],[[0,1,2,2],[2,3,0,2],[1,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,0,3],[1,2,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,0,2],[1,2,4,2],[0,2,1,1]],[[0,1,2,1],[2,3,0,2],[1,2,3,3],[0,2,1,1]],[[0,1,2,1],[2,3,0,2],[1,2,3,2],[0,2,1,2]],[[0,1,3,1],[2,3,0,2],[1,2,3,2],[0,2,2,0]],[[0,1,2,2],[2,3,0,2],[1,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,0,3],[1,2,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,0,2],[1,2,4,2],[0,2,2,0]],[[0,1,2,1],[2,3,0,2],[1,2,3,3],[0,2,2,0]],[[0,1,2,1],[2,3,0,2],[1,2,3,2],[0,3,2,0]],[[0,1,2,1],[2,3,0,2],[1,2,3,2],[0,2,3,0]],[[0,1,3,1],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[0,1,2,2],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[0,1,2,1],[3,3,0,2],[1,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,4,0,2],[1,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,0,3],[1,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,0,2],[1,4,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,1,3],[0,2,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,1,2],[0,3,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,1,2],[0,2,3,1]],[[0,1,2,1],[2,3,0,2],[1,3,1,2],[0,2,2,2]],[[0,1,2,1],[3,3,0,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,4,0,2],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,0,2],[1,4,1,2],[1,1,2,1]],[[0,1,2,1],[3,3,0,2],[1,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,4,0,2],[1,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,3,0,2],[1,4,2,1],[0,2,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,2,1],[0,3,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,2,1],[0,2,3,1]],[[0,1,2,1],[2,3,0,2],[1,3,2,1],[0,2,2,2]],[[0,1,2,1],[3,3,0,2],[1,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,4,0,2],[1,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,3,0,2],[1,4,2,1],[1,1,2,1]],[[0,1,3,1],[2,3,0,2],[1,3,2,2],[0,1,2,1]],[[0,1,2,2],[2,3,0,2],[1,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,3,0,3],[1,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,2,3],[0,1,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,2,2],[0,1,3,1]],[[0,1,2,1],[2,3,0,2],[1,3,2,2],[0,1,2,2]],[[0,1,2,1],[3,3,0,2],[1,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,4,0,2],[1,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,0,2],[1,4,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,0,2],[1,3,2,2],[0,3,2,0]],[[0,1,2,1],[2,3,0,2],[1,3,2,2],[0,2,3,0]],[[0,1,3,1],[2,3,0,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,2],[2,3,0,2],[1,3,2,2],[1,0,2,1]],[[0,1,2,1],[2,3,0,3],[1,3,2,2],[1,0,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,2,3],[1,0,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,2,2],[1,0,3,1]],[[0,1,2,1],[2,3,0,2],[1,3,2,2],[1,0,2,2]],[[0,1,2,1],[3,3,0,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,4,0,2],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,0,2],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,2,0,0],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[2,2,0,0],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[3,2,0,0],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,2,0,0],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,2,0,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[2,2,0,0],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[2,2,0,0],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[2,2,0,0],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,2,0,0],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,2,0,0],[2,3,3,2],[1,1,0,1]],[[0,1,2,1],[3,3,0,2],[1,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,4,0,2],[1,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,0,2],[1,4,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,4,1],[0,1,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,1],[0,1,3,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,1],[0,1,2,2]],[[0,1,2,1],[3,3,0,2],[1,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,4,0,2],[1,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,0,2],[1,4,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,0,2],[1,3,4,1],[0,2,1,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,1],[0,3,1,1]],[[0,1,2,1],[3,3,0,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,4,0,2],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,0,2],[1,4,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,4,1],[1,0,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,1],[1,0,3,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,1],[1,0,2,2]],[[0,1,2,1],[3,3,0,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,4,0,2],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,0,2],[1,4,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,0,2],[1,3,4,1],[1,1,1,1]],[[2,2,2,1],[2,2,0,0],[2,3,3,2],[1,1,0,1]],[[1,2,2,1],[2,2,0,0],[2,3,3,2],[2,0,2,0]],[[0,1,3,1],[2,3,0,2],[1,3,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,0,2],[1,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,0,3],[1,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,4,2],[0,0,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,3],[0,0,2,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,2],[0,0,2,2]],[[0,1,3,1],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[3,3,0,2],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,4,0,2],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,0,3],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,0,2],[1,4,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,0,2],[1,3,4,2],[0,1,1,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,3],[0,1,1,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,2],[0,1,1,2]],[[0,1,3,1],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[3,3,0,2],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,4,0,2],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,0,3],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,0,2],[1,4,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,0,2],[1,3,4,2],[0,1,2,0]],[[0,1,2,1],[2,3,0,2],[1,3,3,3],[0,1,2,0]],[[0,1,2,1],[2,3,0,2],[1,3,3,2],[0,1,3,0]],[[0,1,3,1],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[0,1,2,2],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[3,3,0,2],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,4,0,2],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,0,3],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,0,2],[1,4,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,0,2],[1,3,4,2],[0,2,0,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,3],[0,2,0,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,2],[0,3,0,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,2],[0,2,0,2]],[[0,1,3,1],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[0,1,2,2],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[3,3,0,2],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,4,0,2],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,0,3],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,0,2],[1,4,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,0,2],[1,3,4,2],[0,2,1,0]],[[0,1,2,1],[2,3,0,2],[1,3,3,3],[0,2,1,0]],[[0,1,2,1],[2,3,0,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,2,0,0],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,0,0],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[3,2,0,0],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,2,0,0],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,2,0,0],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[2,2,0,0],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[2,2,0,0],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[2,2,0,0],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[3,2,0,0],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,2,0,0],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,2,0,0],[2,3,3,2],[1,0,1,1]],[[0,1,3,1],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[0,1,2,2],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[3,3,0,2],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,4,0,2],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,0,3],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,0,2],[1,4,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,0,2],[1,3,4,2],[1,0,1,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,3],[1,0,1,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,2],[1,0,1,2]],[[0,1,3,1],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[0,1,2,2],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[3,3,0,2],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,4,0,2],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,0,3],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,0,2],[1,4,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,0,2],[1,3,4,2],[1,0,2,0]],[[0,1,2,1],[2,3,0,2],[1,3,3,3],[1,0,2,0]],[[0,1,2,1],[2,3,0,2],[1,3,3,2],[1,0,3,0]],[[0,1,3,1],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,2],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[3,3,0,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,4,0,2],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,0,3],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,0,2],[1,4,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,0,2],[1,3,4,2],[1,1,0,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,3],[1,1,0,1]],[[0,1,2,1],[2,3,0,2],[1,3,3,2],[1,1,0,2]],[[0,1,3,1],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[0,1,2,2],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[0,1,2,1],[3,3,0,2],[1,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,4,0,2],[1,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,0,3],[1,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,0,2],[1,4,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,0,2],[1,3,4,2],[1,1,1,0]],[[0,1,2,1],[2,3,0,2],[1,3,3,3],[1,1,1,0]],[[0,1,2,1],[3,3,0,2],[1,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,4,0,2],[1,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,3,0,2],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,2,0,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,2,0,0],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,0],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[3,2,0,0],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,2,0,0],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,2,0,0],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,0],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[2,2,0,0],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[2,2,0,0],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[3,2,0,0],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,2,0,0],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,2,0,0],[2,3,3,2],[0,2,0,1]],[[1,2,2,1],[2,2,0,0],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,0,0],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[3,2,0,0],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,2,0,0],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,2,0,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[2,2,0,0],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[2,2,0,0],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[3,2,0,0],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,2,0,0],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,2,0,0],[2,3,3,2],[0,1,1,1]],[[0,1,3,1],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,2],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[3,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,4,0,2],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,0,3],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[3,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[2,0,2,3],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[2,0,2,2],[2,2,2,1]],[[0,1,2,1],[2,3,0,2],[2,0,2,2],[1,3,2,1]],[[0,1,2,1],[2,3,0,2],[2,0,2,2],[1,2,3,1]],[[0,1,2,1],[2,3,0,2],[2,0,2,2],[1,2,2,2]],[[0,1,2,1],[3,3,0,2],[2,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,4,0,2],[2,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[3,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[2,0,4,1],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[2,0,3,1],[2,2,2,1]],[[0,1,2,1],[2,3,0,2],[2,0,3,1],[1,3,2,1]],[[0,1,2,1],[2,3,0,2],[2,0,3,1],[1,2,3,1]],[[0,1,2,1],[2,3,0,2],[2,0,3,1],[1,2,2,2]],[[0,1,3,1],[2,3,0,2],[2,0,3,2],[1,2,1,1]],[[0,1,2,2],[2,3,0,2],[2,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,0,3],[2,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,0,2],[2,0,4,2],[1,2,1,1]],[[0,1,2,1],[2,3,0,2],[2,0,3,3],[1,2,1,1]],[[0,1,2,1],[2,3,0,2],[2,0,3,2],[1,2,1,2]],[[0,1,3,1],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,2],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[3,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,4,0,2],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,0,3],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,0,2],[3,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,0,2],[2,0,4,2],[1,2,2,0]],[[0,1,2,1],[2,3,0,2],[2,0,3,3],[1,2,2,0]],[[0,1,2,1],[2,3,0,2],[2,0,3,2],[2,2,2,0]],[[0,1,2,1],[2,3,0,2],[2,0,3,2],[1,3,2,0]],[[0,1,2,1],[2,3,0,2],[2,0,3,2],[1,2,3,0]],[[0,1,3,1],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,2],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[3,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,4,0,2],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,0,3],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[3,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[2,1,1,3],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[2,1,1,2],[2,2,2,1]],[[0,1,2,1],[2,3,0,2],[2,1,1,2],[1,3,2,1]],[[0,1,2,1],[2,3,0,2],[2,1,1,2],[1,2,3,1]],[[0,1,2,1],[2,3,0,2],[2,1,1,2],[1,2,2,2]],[[0,1,2,1],[3,3,0,2],[2,1,2,1],[1,2,2,1]],[[0,1,2,1],[2,4,0,2],[2,1,2,1],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[3,1,2,1],[1,2,2,1]],[[0,1,2,1],[2,3,0,2],[2,1,2,1],[2,2,2,1]],[[0,1,2,1],[2,3,0,2],[2,1,2,1],[1,3,2,1]],[[0,1,2,1],[2,3,0,2],[2,1,2,1],[1,2,3,1]],[[0,1,2,1],[2,3,0,2],[2,1,2,1],[1,2,2,2]],[[0,1,2,1],[3,3,0,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,4,0,2],[2,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,0,2],[3,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,0,2],[2,1,2,2],[2,2,2,0]],[[0,1,2,1],[2,3,0,2],[2,1,2,2],[1,3,2,0]],[[0,1,2,1],[2,3,0,2],[2,1,2,2],[1,2,3,0]],[[0,1,2,1],[3,3,0,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,4,0,2],[2,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,0,2],[3,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,0,2],[2,1,3,1],[2,2,1,1]],[[0,1,2,1],[2,3,0,2],[2,1,3,1],[1,3,1,1]],[[0,1,2,1],[3,3,0,2],[2,1,3,2],[1,2,0,1]],[[0,1,2,1],[2,4,0,2],[2,1,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,0,2],[3,1,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,0,2],[2,1,3,2],[2,2,0,1]],[[0,1,2,1],[2,3,0,2],[2,1,3,2],[1,3,0,1]],[[0,1,2,1],[3,3,0,2],[2,1,3,2],[1,2,1,0]],[[0,1,2,1],[2,4,0,2],[2,1,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,0,2],[3,1,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,0,2],[2,1,3,2],[2,2,1,0]],[[0,1,2,1],[2,3,0,2],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,0,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,2,0,0],[2,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,2,0,0],[3,3,3,1],[1,2,0,1]],[[1,2,2,1],[3,2,0,0],[2,3,3,1],[1,2,0,1]],[[1,3,2,1],[2,2,0,0],[2,3,3,1],[1,2,0,1]],[[2,2,2,1],[2,2,0,0],[2,3,3,1],[1,2,0,1]],[[0,1,2,1],[3,3,0,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[2,4,0,2],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,0,2],[3,2,1,2],[0,2,2,1]],[[0,1,2,1],[3,3,0,2],[2,2,1,2],[1,1,2,1]],[[0,1,2,1],[2,4,0,2],[2,2,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,0,2],[3,2,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,0,2],[2,2,1,2],[2,1,2,1]],[[0,1,2,1],[3,3,0,2],[2,2,2,1],[0,2,2,1]],[[0,1,2,1],[2,4,0,2],[2,2,2,1],[0,2,2,1]],[[0,1,2,1],[2,3,0,2],[3,2,2,1],[0,2,2,1]],[[0,1,2,1],[3,3,0,2],[2,2,2,1],[1,1,2,1]],[[0,1,2,1],[2,4,0,2],[2,2,2,1],[1,1,2,1]],[[0,1,2,1],[2,3,0,2],[3,2,2,1],[1,1,2,1]],[[0,1,2,1],[2,3,0,2],[2,2,2,1],[2,1,2,1]],[[0,1,2,1],[3,3,0,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[2,4,0,2],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,0,2],[3,2,2,2],[0,2,2,0]],[[0,1,2,1],[3,3,0,2],[2,2,2,2],[1,1,2,0]],[[0,1,2,1],[2,4,0,2],[2,2,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,0,2],[3,2,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,0,2],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[2,2,0,0],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[2,2,0,0],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[2,2,0,0],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,2,0,0],[2,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,2,0,0],[2,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,2,0,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,1],[2,2,0,0],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[2,2,0,0],[2,4,3,1],[1,0,2,1]],[[0,1,2,1],[3,3,0,2],[2,2,3,1],[0,1,2,1]],[[0,1,2,1],[2,4,0,2],[2,2,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,0,2],[3,2,3,1],[0,1,2,1]],[[0,1,2,1],[3,3,0,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,4,0,2],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,0,2],[3,2,3,1],[0,2,1,1]],[[0,1,2,1],[3,3,0,2],[2,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,4,0,2],[2,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,0,2],[3,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,0,2],[2,2,3,1],[2,0,2,1]],[[0,1,2,1],[3,3,0,2],[2,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,4,0,2],[2,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,0,2],[3,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,0,2],[2,2,3,1],[2,1,1,1]],[[1,2,2,1],[2,2,0,0],[3,3,3,1],[1,0,2,1]],[[1,2,2,1],[3,2,0,0],[2,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,2,0,0],[2,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,2,0,0],[2,3,3,1],[1,0,2,1]],[[0,1,2,1],[3,3,0,2],[2,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,4,0,2],[2,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,0,2],[3,2,3,2],[0,1,1,1]],[[0,1,2,1],[3,3,0,2],[2,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,4,0,2],[2,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,0,2],[3,2,3,2],[0,1,2,0]],[[0,1,2,1],[3,3,0,2],[2,2,3,2],[0,2,0,1]],[[0,1,2,1],[2,4,0,2],[2,2,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,0,2],[3,2,3,2],[0,2,0,1]],[[0,1,2,1],[3,3,0,2],[2,2,3,2],[0,2,1,0]],[[0,1,2,1],[2,4,0,2],[2,2,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,0,2],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,2,0,0],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[2,2,0,0],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[2,2,0,0],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[3,2,0,0],[2,3,3,1],[0,2,1,1]],[[1,3,2,1],[2,2,0,0],[2,3,3,1],[0,2,1,1]],[[2,2,2,1],[2,2,0,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,1],[2,2,0,0],[2,4,3,1],[0,1,2,1]],[[0,1,2,1],[3,3,0,2],[2,2,3,2],[1,0,1,1]],[[0,1,2,1],[2,4,0,2],[2,2,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,0,2],[3,2,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,0,2],[2,2,3,2],[2,0,1,1]],[[0,1,2,1],[3,3,0,2],[2,2,3,2],[1,0,2,0]],[[0,1,2,1],[2,4,0,2],[2,2,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,0,2],[3,2,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,0,2],[2,2,3,2],[2,0,2,0]],[[0,1,2,1],[3,3,0,2],[2,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,4,0,2],[2,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,0,2],[3,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,0,2],[2,2,3,2],[2,1,0,1]],[[0,1,2,1],[3,3,0,2],[2,2,3,2],[1,1,1,0]],[[0,1,2,1],[2,4,0,2],[2,2,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,0,2],[3,2,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,0,2],[2,2,3,2],[2,1,1,0]],[[1,2,2,1],[2,2,0,0],[3,3,3,1],[0,1,2,1]],[[1,2,2,1],[3,2,0,0],[2,3,3,1],[0,1,2,1]],[[1,3,2,1],[2,2,0,0],[2,3,3,1],[0,1,2,1]],[[2,2,2,1],[2,2,0,0],[2,3,3,1],[0,1,2,1]],[[0,1,2,1],[3,3,0,2],[2,2,3,2],[1,2,0,0]],[[0,1,2,1],[2,4,0,2],[2,2,3,2],[1,2,0,0]],[[0,1,2,1],[2,3,0,2],[3,2,3,2],[1,2,0,0]],[[0,1,2,1],[2,3,0,2],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[2,2,0,0],[2,3,3,0],[2,1,2,1]],[[1,2,2,1],[2,2,0,0],[2,4,3,0],[1,1,2,1]],[[1,2,2,1],[2,2,0,0],[3,3,3,0],[1,1,2,1]],[[1,2,2,1],[3,2,0,0],[2,3,3,0],[1,1,2,1]],[[1,3,2,1],[2,2,0,0],[2,3,3,0],[1,1,2,1]],[[2,2,2,1],[2,2,0,0],[2,3,3,0],[1,1,2,1]],[[1,2,2,1],[2,2,0,0],[2,3,3,0],[0,2,3,1]],[[1,2,2,1],[2,2,0,0],[2,3,3,0],[0,3,2,1]],[[1,2,2,1],[2,2,0,0],[2,4,3,0],[0,2,2,1]],[[1,2,2,1],[2,2,0,0],[3,3,3,0],[0,2,2,1]],[[1,2,2,1],[3,2,0,0],[2,3,3,0],[0,2,2,1]],[[1,3,2,1],[2,2,0,0],[2,3,3,0],[0,2,2,1]],[[2,2,2,1],[2,2,0,0],[2,3,3,0],[0,2,2,1]],[[1,2,2,1],[2,2,0,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,2,0,0],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,0],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,2,0,0],[2,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,2,0,0],[2,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,2,0,0],[2,3,2,2],[1,1,2,0]],[[1,2,2,1],[2,2,0,0],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[2,2,0,0],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[2,2,0,0],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,0],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[3,2,0,0],[2,3,2,2],[0,2,2,0]],[[1,3,2,1],[2,2,0,0],[2,3,2,2],[0,2,2,0]],[[2,2,2,1],[2,2,0,0],[2,3,2,2],[0,2,2,0]],[[1,2,2,1],[2,2,0,0],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[2,2,0,0],[2,4,2,1],[1,1,2,1]],[[1,2,2,1],[2,2,0,0],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[3,2,0,0],[2,3,2,1],[1,1,2,1]],[[1,3,2,1],[2,2,0,0],[2,3,2,1],[1,1,2,1]],[[2,2,2,1],[2,2,0,0],[2,3,2,1],[1,1,2,1]],[[1,2,2,1],[2,2,0,0],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[2,2,0,0],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[2,2,0,0],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[2,2,0,0],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[2,2,0,0],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[3,2,0,0],[2,3,2,1],[0,2,2,1]],[[1,3,2,1],[2,2,0,0],[2,3,2,1],[0,2,2,1]],[[2,2,2,1],[2,2,0,0],[2,3,2,1],[0,2,2,1]],[[1,2,2,1],[2,2,0,0],[2,3,2,0],[1,3,2,1]],[[1,2,2,1],[2,2,0,0],[2,3,2,0],[2,2,2,1]],[[1,2,2,1],[2,2,0,0],[3,3,2,0],[1,2,2,1]],[[1,2,2,1],[3,2,0,0],[2,3,2,0],[1,2,2,1]],[[1,3,2,1],[2,2,0,0],[2,3,2,0],[1,2,2,1]],[[2,2,2,1],[2,2,0,0],[2,3,2,0],[1,2,2,1]],[[1,2,2,1],[2,2,0,0],[2,3,1,2],[1,3,2,0]],[[1,2,2,1],[2,2,0,0],[2,3,1,2],[2,2,2,0]],[[1,2,2,1],[2,2,0,0],[3,3,1,2],[1,2,2,0]],[[1,2,2,1],[3,2,0,0],[2,3,1,2],[1,2,2,0]],[[1,3,2,1],[2,2,0,0],[2,3,1,2],[1,2,2,0]],[[2,2,2,1],[2,2,0,0],[2,3,1,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,0],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[2,2,0,0],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[2,2,0,0],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[3,2,0,0],[2,3,1,2],[1,1,2,1]],[[1,3,2,1],[2,2,0,0],[2,3,1,2],[1,1,2,1]],[[2,2,2,1],[2,2,0,0],[2,3,1,2],[1,1,2,1]],[[1,2,2,1],[2,2,0,0],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[2,2,0,0],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[2,2,0,0],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[2,2,0,0],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[2,2,0,0],[3,3,1,2],[0,2,2,1]],[[1,2,2,1],[3,2,0,0],[2,3,1,2],[0,2,2,1]],[[1,3,2,1],[2,2,0,0],[2,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,2,0,0],[2,3,1,2],[0,2,2,1]],[[1,2,2,1],[2,2,0,0],[2,3,1,1],[1,3,2,1]],[[1,2,2,1],[2,2,0,0],[2,3,1,1],[2,2,2,1]],[[1,2,2,1],[2,2,0,0],[3,3,1,1],[1,2,2,1]],[[1,2,2,1],[3,2,0,0],[2,3,1,1],[1,2,2,1]],[[1,3,2,1],[2,2,0,0],[2,3,1,1],[1,2,2,1]],[[2,2,2,1],[2,2,0,0],[2,3,1,1],[1,2,2,1]],[[1,2,2,1],[2,2,0,0],[2,3,0,2],[1,3,2,1]],[[1,2,2,1],[2,2,0,0],[2,3,0,2],[2,2,2,1]],[[1,2,2,1],[2,2,0,0],[3,3,0,2],[1,2,2,1]],[[1,2,2,1],[3,2,0,0],[2,3,0,2],[1,2,2,1]],[[1,3,2,1],[2,2,0,0],[2,3,0,2],[1,2,2,1]],[[2,2,2,1],[2,2,0,0],[2,3,0,2],[1,2,2,1]],[[1,2,2,1],[2,2,0,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,0,0],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[2,2,0,0],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[3,2,0,0],[2,2,3,2],[1,2,1,0]],[[1,3,2,1],[2,2,0,0],[2,2,3,2],[1,2,1,0]],[[2,2,2,1],[2,2,0,0],[2,2,3,2],[1,2,1,0]],[[1,2,2,1],[2,2,0,0],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[2,2,0,0],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[2,2,0,0],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[3,2,0,0],[2,2,3,2],[1,2,0,1]],[[1,3,2,1],[2,2,0,0],[2,2,3,2],[1,2,0,1]],[[2,2,2,1],[2,2,0,0],[2,2,3,2],[1,2,0,1]],[[1,2,2,1],[2,2,0,0],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[2,2,0,0],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[2,2,0,0],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[3,2,0,0],[2,2,3,1],[1,2,1,1]],[[1,3,2,1],[2,2,0,0],[2,2,3,1],[1,2,1,1]],[[2,2,2,1],[2,2,0,0],[2,2,3,1],[1,2,1,1]],[[1,2,2,1],[2,2,0,0],[2,2,3,0],[1,2,3,1]],[[1,2,2,1],[2,2,0,0],[2,2,3,0],[1,3,2,1]],[[1,2,2,1],[2,2,0,0],[2,2,3,0],[2,2,2,1]],[[1,2,2,1],[2,2,0,0],[3,2,3,0],[1,2,2,1]],[[1,2,2,1],[3,2,0,0],[2,2,3,0],[1,2,2,1]],[[1,3,2,1],[2,2,0,0],[2,2,3,0],[1,2,2,1]],[[2,2,2,1],[2,2,0,0],[2,2,3,0],[1,2,2,1]],[[0,1,2,1],[3,3,0,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[2,4,0,2],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[2,3,0,2],[3,3,3,2],[1,0,0,1]],[[0,1,2,1],[3,3,0,2],[2,3,3,2],[1,0,1,0]],[[0,1,2,1],[2,4,0,2],[2,3,3,2],[1,0,1,0]],[[0,1,2,1],[2,3,0,2],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,2,0,0],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[2,2,0,0],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[2,2,0,0],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[2,2,0,0],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[3,2,0,0],[2,2,2,2],[1,2,2,0]],[[1,3,2,1],[2,2,0,0],[2,2,2,2],[1,2,2,0]],[[2,2,2,1],[2,2,0,0],[2,2,2,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,0],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[2,2,0,0],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[2,2,0,0],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[2,2,0,0],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[2,2,0,0],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[3,2,0,0],[2,2,2,1],[1,2,2,1]],[[1,3,2,1],[2,2,0,0],[2,2,2,1],[1,2,2,1]],[[2,2,2,1],[2,2,0,0],[2,2,2,1],[1,2,2,1]],[[1,2,2,1],[2,2,0,0],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[2,2,0,0],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[2,2,0,0],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[2,2,0,0],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[2,2,0,0],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[3,2,0,0],[2,2,1,2],[1,2,2,1]],[[1,3,2,1],[2,2,0,0],[2,2,1,2],[1,2,2,1]],[[2,2,2,1],[2,2,0,0],[2,2,1,2],[1,2,2,1]],[[1,2,2,1],[2,2,0,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,2,0,0],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[2,2,0,0],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[2,2,0,0],[1,3,3,2],[1,3,0,1]],[[1,2,2,1],[2,2,0,0],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[2,2,0,0],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[2,2,0,0],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[2,2,0,0],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[2,2,0,0],[1,4,3,1],[1,2,1,1]],[[1,2,2,1],[2,2,0,0],[1,3,3,0],[1,2,3,1]],[[1,2,2,1],[2,2,0,0],[1,3,3,0],[1,3,2,1]],[[1,2,2,1],[2,2,0,0],[1,3,3,0],[2,2,2,1]],[[1,2,2,1],[2,2,0,0],[1,4,3,0],[1,2,2,1]],[[1,2,2,1],[2,2,0,0],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[2,2,0,0],[1,3,2,2],[1,3,2,0]],[[1,2,2,1],[2,2,0,0],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[2,2,0,0],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[2,2,0,0],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[2,2,0,0],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[2,2,0,0],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[2,2,0,0],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[2,2,0,0],[1,4,2,1],[1,2,2,1]],[[1,2,2,1],[2,2,0,0],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[2,2,0,0],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[2,2,0,0],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[2,2,0,0],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[2,2,0,0],[1,4,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,0],[0,4,3,1],[1,2,2,1]],[[0,1,2,1],[2,3,1,0],[0,3,3,1],[2,2,2,1]],[[0,1,2,1],[2,3,1,0],[0,3,3,1],[1,3,2,1]],[[0,1,2,1],[2,3,1,0],[0,3,3,1],[1,2,3,1]],[[0,1,2,1],[2,3,1,0],[0,3,3,1],[1,2,2,2]],[[0,1,2,1],[2,3,1,0],[0,4,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,1,0],[0,3,3,2],[2,2,2,0]],[[0,1,2,1],[2,3,1,0],[0,3,3,2],[1,3,2,0]],[[0,1,2,1],[2,3,1,0],[0,3,3,2],[1,2,3,0]],[[0,1,2,1],[2,3,1,0],[1,4,3,1],[0,2,2,1]],[[0,1,2,1],[2,3,1,0],[1,3,3,1],[0,3,2,1]],[[0,1,2,1],[2,3,1,0],[1,3,3,1],[0,2,3,1]],[[0,1,2,1],[2,3,1,0],[1,3,3,1],[0,2,2,2]],[[0,1,2,1],[2,3,1,0],[1,4,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,1,0],[1,3,3,2],[0,3,2,0]],[[0,1,2,1],[2,3,1,0],[1,3,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,3,2],[3,3,3,0],[1,0,0,0]],[[1,2,2,1],[2,1,4,2],[2,3,3,0],[1,0,0,0]],[[1,2,2,1],[3,1,3,2],[2,3,3,0],[1,0,0,0]],[[1,2,2,2],[2,1,3,2],[2,3,3,0],[1,0,0,0]],[[1,2,3,1],[2,1,3,2],[2,3,3,0],[1,0,0,0]],[[1,3,2,1],[2,1,3,2],[2,3,3,0],[1,0,0,0]],[[2,2,2,1],[2,1,3,2],[2,3,3,0],[1,0,0,0]],[[1,2,2,1],[2,1,3,2],[3,3,2,0],[1,0,1,0]],[[1,2,2,1],[2,1,4,2],[2,3,2,0],[1,0,1,0]],[[1,2,2,1],[3,1,3,2],[2,3,2,0],[1,0,1,0]],[[1,2,2,2],[2,1,3,2],[2,3,2,0],[1,0,1,0]],[[1,2,3,1],[2,1,3,2],[2,3,2,0],[1,0,1,0]],[[1,3,2,1],[2,1,3,2],[2,3,2,0],[1,0,1,0]],[[2,2,2,1],[2,1,3,2],[2,3,2,0],[1,0,1,0]],[[1,2,2,1],[2,1,3,2],[3,3,2,0],[1,0,0,1]],[[1,2,2,1],[2,1,4,2],[2,3,2,0],[1,0,0,1]],[[1,2,2,1],[3,1,3,2],[2,3,2,0],[1,0,0,1]],[[1,2,2,2],[2,1,3,2],[2,3,2,0],[1,0,0,1]],[[1,2,3,1],[2,1,3,2],[2,3,2,0],[1,0,0,1]],[[1,3,2,1],[2,1,3,2],[2,3,2,0],[1,0,0,1]],[[2,2,2,1],[2,1,3,2],[2,3,2,0],[1,0,0,1]],[[0,1,3,1],[2,3,1,2],[0,0,3,2],[1,2,2,1]],[[0,1,2,2],[2,3,1,2],[0,0,3,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,3],[0,0,3,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[0,0,3,3],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[0,0,3,2],[1,2,3,1]],[[0,1,2,1],[2,3,1,2],[0,0,3,2],[1,2,2,2]],[[0,1,3,1],[2,3,1,2],[0,1,2,2],[1,2,2,1]],[[0,1,2,2],[2,3,1,2],[0,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,3],[0,1,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[0,1,2,3],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[0,1,2,2],[2,2,2,1]],[[0,1,2,1],[2,3,1,2],[0,1,2,2],[1,3,2,1]],[[0,1,2,1],[2,3,1,2],[0,1,2,2],[1,2,3,1]],[[0,1,2,1],[2,3,1,2],[0,1,2,2],[1,2,2,2]],[[0,1,2,1],[2,3,1,2],[0,1,4,1],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[0,1,3,1],[2,2,2,1]],[[0,1,2,1],[2,3,1,2],[0,1,3,1],[1,3,2,1]],[[0,1,2,1],[2,3,1,2],[0,1,3,1],[1,2,3,1]],[[0,1,2,1],[2,3,1,2],[0,1,3,1],[1,2,2,2]],[[0,1,3,1],[2,3,1,2],[0,1,3,2],[1,2,1,1]],[[0,1,2,2],[2,3,1,2],[0,1,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,1,3],[0,1,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,1,2],[0,1,4,2],[1,2,1,1]],[[0,1,2,1],[2,3,1,2],[0,1,3,3],[1,2,1,1]],[[0,1,2,1],[2,3,1,2],[0,1,3,2],[1,2,1,2]],[[0,1,3,1],[2,3,1,2],[0,1,3,2],[1,2,2,0]],[[0,1,2,2],[2,3,1,2],[0,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,1,3],[0,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,1,2],[0,1,4,2],[1,2,2,0]],[[0,1,2,1],[2,3,1,2],[0,1,3,3],[1,2,2,0]],[[0,1,2,1],[2,3,1,2],[0,1,3,2],[2,2,2,0]],[[0,1,2,1],[2,3,1,2],[0,1,3,2],[1,3,2,0]],[[0,1,2,1],[2,3,1,2],[0,1,3,2],[1,2,3,0]],[[0,1,3,1],[2,3,1,2],[0,2,2,2],[1,1,2,1]],[[0,1,2,2],[2,3,1,2],[0,2,2,2],[1,1,2,1]],[[0,1,2,1],[2,3,1,3],[0,2,2,2],[1,1,2,1]],[[0,1,2,1],[2,3,1,2],[0,2,2,3],[1,1,2,1]],[[0,1,2,1],[2,3,1,2],[0,2,2,2],[1,1,3,1]],[[0,1,2,1],[2,3,1,2],[0,2,2,2],[1,1,2,2]],[[0,1,2,1],[2,3,1,2],[0,2,4,1],[1,1,2,1]],[[0,1,2,1],[2,3,1,2],[0,2,3,1],[1,1,3,1]],[[0,1,2,1],[2,3,1,2],[0,2,3,1],[1,1,2,2]],[[0,1,3,1],[2,3,1,2],[0,2,3,2],[1,0,2,1]],[[0,1,2,2],[2,3,1,2],[0,2,3,2],[1,0,2,1]],[[0,1,2,1],[2,3,1,3],[0,2,3,2],[1,0,2,1]],[[0,1,2,1],[2,3,1,2],[0,2,4,2],[1,0,2,1]],[[0,1,2,1],[2,3,1,2],[0,2,3,3],[1,0,2,1]],[[0,1,2,1],[2,3,1,2],[0,2,3,2],[1,0,2,2]],[[0,1,3,1],[2,3,1,2],[0,2,3,2],[1,1,1,1]],[[0,1,2,2],[2,3,1,2],[0,2,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,1,3],[0,2,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,1,2],[0,2,4,2],[1,1,1,1]],[[0,1,2,1],[2,3,1,2],[0,2,3,3],[1,1,1,1]],[[0,1,2,1],[2,3,1,2],[0,2,3,2],[1,1,1,2]],[[0,1,3,1],[2,3,1,2],[0,2,3,2],[1,1,2,0]],[[0,1,2,2],[2,3,1,2],[0,2,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,1,3],[0,2,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,1,2],[0,2,4,2],[1,1,2,0]],[[0,1,2,1],[2,3,1,2],[0,2,3,3],[1,1,2,0]],[[0,1,2,1],[2,3,1,2],[0,2,3,2],[1,1,3,0]],[[0,1,3,1],[2,3,1,2],[0,2,3,2],[1,2,0,1]],[[0,1,2,2],[2,3,1,2],[0,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,1,3],[0,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,1,2],[0,2,4,2],[1,2,0,1]],[[0,1,2,1],[2,3,1,2],[0,2,3,3],[1,2,0,1]],[[0,1,2,1],[2,3,1,2],[0,2,3,2],[1,2,0,2]],[[0,1,3,1],[2,3,1,2],[0,2,3,2],[1,2,1,0]],[[0,1,2,2],[2,3,1,2],[0,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,1,3],[0,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,1,2],[0,2,4,2],[1,2,1,0]],[[0,1,2,1],[2,3,1,2],[0,2,3,3],[1,2,1,0]],[[0,1,3,1],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[0,1,2,2],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[3,3,1,2],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,4,1,2],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,3],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[0,4,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[0,3,0,3],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[0,3,0,2],[2,2,2,1]],[[0,1,2,1],[2,3,1,2],[0,3,0,2],[1,3,2,1]],[[0,1,2,1],[2,3,1,2],[0,3,0,2],[1,2,3,1]],[[0,1,2,1],[2,3,1,2],[0,3,0,2],[1,2,2,2]],[[0,1,3,1],[2,3,1,2],[0,3,2,2],[0,1,2,1]],[[0,1,2,2],[2,3,1,2],[0,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,3,1,3],[0,3,2,2],[0,1,2,1]],[[0,1,2,1],[2,3,1,2],[0,3,2,3],[0,1,2,1]],[[0,1,2,1],[2,3,1,2],[0,3,2,2],[0,1,3,1]],[[0,1,2,1],[2,3,1,2],[0,3,2,2],[0,1,2,2]],[[0,1,2,1],[2,3,1,2],[0,3,4,1],[0,1,2,1]],[[0,1,2,1],[2,3,1,2],[0,3,3,1],[0,1,3,1]],[[0,1,2,1],[2,3,1,2],[0,3,3,1],[0,1,2,2]],[[0,1,3,1],[2,3,1,2],[0,3,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,1,2],[0,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,1,3],[0,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,1,2],[0,3,4,2],[0,0,2,1]],[[0,1,2,1],[2,3,1,2],[0,3,3,3],[0,0,2,1]],[[0,1,2,1],[2,3,1,2],[0,3,3,2],[0,0,2,2]],[[0,1,3,1],[2,3,1,2],[0,3,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,1,2],[0,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,1,3],[0,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,1,2],[0,3,4,2],[0,1,1,1]],[[0,1,2,1],[2,3,1,2],[0,3,3,3],[0,1,1,1]],[[0,1,2,1],[2,3,1,2],[0,3,3,2],[0,1,1,2]],[[0,1,3,1],[2,3,1,2],[0,3,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,1,2],[0,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,1,3],[0,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,1,2],[0,3,4,2],[0,1,2,0]],[[0,1,2,1],[2,3,1,2],[0,3,3,3],[0,1,2,0]],[[0,1,2,1],[2,3,1,2],[0,3,3,2],[0,1,3,0]],[[0,1,3,1],[2,3,1,2],[0,3,3,2],[0,2,0,1]],[[0,1,2,2],[2,3,1,2],[0,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,1,3],[0,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,1,2],[0,3,4,2],[0,2,0,1]],[[0,1,2,1],[2,3,1,2],[0,3,3,3],[0,2,0,1]],[[0,1,2,1],[2,3,1,2],[0,3,3,2],[0,2,0,2]],[[0,1,3,1],[2,3,1,2],[0,3,3,2],[0,2,1,0]],[[0,1,2,2],[2,3,1,2],[0,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,1,3],[0,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,1,2],[0,3,4,2],[0,2,1,0]],[[0,1,2,1],[2,3,1,2],[0,3,3,3],[0,2,1,0]],[[0,1,3,1],[2,3,1,2],[1,0,2,2],[1,2,2,1]],[[0,1,2,2],[2,3,1,2],[1,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,3],[1,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,0,2,3],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,0,2,2],[2,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,0,2,2],[1,3,2,1]],[[0,1,2,1],[2,3,1,2],[1,0,2,2],[1,2,3,1]],[[0,1,2,1],[2,3,1,2],[1,0,2,2],[1,2,2,2]],[[0,1,2,1],[2,3,1,2],[1,0,4,1],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,0,3,1],[2,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,0,3,1],[1,3,2,1]],[[0,1,2,1],[2,3,1,2],[1,0,3,1],[1,2,3,1]],[[0,1,2,1],[2,3,1,2],[1,0,3,1],[1,2,2,2]],[[0,1,3,1],[2,3,1,2],[1,0,3,2],[0,2,2,1]],[[0,1,2,2],[2,3,1,2],[1,0,3,2],[0,2,2,1]],[[0,1,2,1],[2,3,1,3],[1,0,3,2],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,0,3,3],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,0,3,2],[0,2,3,1]],[[0,1,2,1],[2,3,1,2],[1,0,3,2],[0,2,2,2]],[[0,1,3,1],[2,3,1,2],[1,0,3,2],[1,2,1,1]],[[0,1,2,2],[2,3,1,2],[1,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,1,3],[1,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,1,2],[1,0,4,2],[1,2,1,1]],[[0,1,2,1],[2,3,1,2],[1,0,3,3],[1,2,1,1]],[[0,1,2,1],[2,3,1,2],[1,0,3,2],[1,2,1,2]],[[0,1,3,1],[2,3,1,2],[1,0,3,2],[1,2,2,0]],[[0,1,2,2],[2,3,1,2],[1,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,1,3],[1,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,1,2],[1,0,4,2],[1,2,2,0]],[[0,1,2,1],[2,3,1,2],[1,0,3,3],[1,2,2,0]],[[0,1,2,1],[2,3,1,2],[1,0,3,2],[2,2,2,0]],[[0,1,2,1],[2,3,1,2],[1,0,3,2],[1,3,2,0]],[[0,1,2,1],[2,3,1,2],[1,0,3,2],[1,2,3,0]],[[0,1,3,1],[2,3,1,2],[1,1,2,2],[0,2,2,1]],[[0,1,2,2],[2,3,1,2],[1,1,2,2],[0,2,2,1]],[[0,1,2,1],[2,3,1,3],[1,1,2,2],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,1,2,3],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,1,2,2],[0,3,2,1]],[[0,1,2,1],[2,3,1,2],[1,1,2,2],[0,2,3,1]],[[0,1,2,1],[2,3,1,2],[1,1,2,2],[0,2,2,2]],[[0,1,2,1],[2,3,1,2],[1,1,4,1],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,1,3,1],[0,3,2,1]],[[0,1,2,1],[2,3,1,2],[1,1,3,1],[0,2,3,1]],[[0,1,2,1],[2,3,1,2],[1,1,3,1],[0,2,2,2]],[[0,1,3,1],[2,3,1,2],[1,1,3,2],[0,2,1,1]],[[0,1,2,2],[2,3,1,2],[1,1,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,1,3],[1,1,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,1,2],[1,1,4,2],[0,2,1,1]],[[0,1,2,1],[2,3,1,2],[1,1,3,3],[0,2,1,1]],[[0,1,2,1],[2,3,1,2],[1,1,3,2],[0,2,1,2]],[[0,1,3,1],[2,3,1,2],[1,1,3,2],[0,2,2,0]],[[0,1,2,2],[2,3,1,2],[1,1,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,1,3],[1,1,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,1,2],[1,1,4,2],[0,2,2,0]],[[0,1,2,1],[2,3,1,2],[1,1,3,3],[0,2,2,0]],[[0,1,2,1],[2,3,1,2],[1,1,3,2],[0,3,2,0]],[[0,1,2,1],[2,3,1,2],[1,1,3,2],[0,2,3,0]],[[0,1,3,1],[2,3,1,2],[1,2,2,2],[0,1,2,1]],[[0,1,2,2],[2,3,1,2],[1,2,2,2],[0,1,2,1]],[[0,1,2,1],[2,3,1,3],[1,2,2,2],[0,1,2,1]],[[0,1,2,1],[2,3,1,2],[1,2,2,3],[0,1,2,1]],[[0,1,2,1],[2,3,1,2],[1,2,2,2],[0,1,3,1]],[[0,1,2,1],[2,3,1,2],[1,2,2,2],[0,1,2,2]],[[0,1,3,1],[2,3,1,2],[1,2,2,2],[1,0,2,1]],[[0,1,2,2],[2,3,1,2],[1,2,2,2],[1,0,2,1]],[[0,1,2,1],[2,3,1,3],[1,2,2,2],[1,0,2,1]],[[0,1,2,1],[2,3,1,2],[1,2,2,3],[1,0,2,1]],[[0,1,2,1],[2,3,1,2],[1,2,2,2],[1,0,3,1]],[[0,1,2,1],[2,3,1,2],[1,2,2,2],[1,0,2,2]],[[0,1,2,1],[2,3,1,2],[1,2,4,1],[0,1,2,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,1],[0,1,3,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,1],[0,1,2,2]],[[0,1,2,1],[2,3,1,2],[1,2,4,1],[1,0,2,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,1],[1,0,3,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,1],[1,0,2,2]],[[0,1,3,1],[2,3,1,2],[1,2,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,1,2],[1,2,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,1,3],[1,2,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,1,2],[1,2,4,2],[0,0,2,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,3],[0,0,2,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,2],[0,0,2,2]],[[0,1,3,1],[2,3,1,2],[1,2,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,1,2],[1,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,1,3],[1,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,1,2],[1,2,4,2],[0,1,1,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,3],[0,1,1,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,2],[0,1,1,2]],[[0,1,3,1],[2,3,1,2],[1,2,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,1,2],[1,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,1,3],[1,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,1,2],[1,2,4,2],[0,1,2,0]],[[0,1,2,1],[2,3,1,2],[1,2,3,3],[0,1,2,0]],[[0,1,2,1],[2,3,1,2],[1,2,3,2],[0,1,3,0]],[[0,1,3,1],[2,3,1,2],[1,2,3,2],[0,2,0,1]],[[0,1,2,2],[2,3,1,2],[1,2,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,1,3],[1,2,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,1,2],[1,2,4,2],[0,2,0,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,3],[0,2,0,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,2],[0,2,0,2]],[[0,1,3,1],[2,3,1,2],[1,2,3,2],[0,2,1,0]],[[0,1,2,2],[2,3,1,2],[1,2,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,1,3],[1,2,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,1,2],[1,2,4,2],[0,2,1,0]],[[0,1,2,1],[2,3,1,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,3,2],[3,3,0,2],[1,0,1,0]],[[1,2,2,1],[2,1,3,3],[2,3,0,2],[1,0,1,0]],[[0,1,3,1],[2,3,1,2],[1,2,3,2],[1,0,1,1]],[[0,1,2,2],[2,3,1,2],[1,2,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,1,3],[1,2,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,1,2],[1,2,4,2],[1,0,1,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,3],[1,0,1,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,2],[1,0,1,2]],[[0,1,3,1],[2,3,1,2],[1,2,3,2],[1,0,2,0]],[[0,1,2,2],[2,3,1,2],[1,2,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,1,3],[1,2,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,1,2],[1,2,4,2],[1,0,2,0]],[[0,1,2,1],[2,3,1,2],[1,2,3,3],[1,0,2,0]],[[0,1,2,1],[2,3,1,2],[1,2,3,2],[1,0,3,0]],[[0,1,3,1],[2,3,1,2],[1,2,3,2],[1,1,0,1]],[[0,1,2,2],[2,3,1,2],[1,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,1,3],[1,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,1,2],[1,2,4,2],[1,1,0,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,3],[1,1,0,1]],[[0,1,2,1],[2,3,1,2],[1,2,3,2],[1,1,0,2]],[[0,1,3,1],[2,3,1,2],[1,2,3,2],[1,1,1,0]],[[0,1,2,2],[2,3,1,2],[1,2,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,1,3],[1,2,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,1,2],[1,2,4,2],[1,1,1,0]],[[0,1,2,1],[2,3,1,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[3,1,3,2],[2,3,0,2],[1,0,1,0]],[[1,2,2,2],[2,1,3,2],[2,3,0,2],[1,0,1,0]],[[1,2,3,1],[2,1,3,2],[2,3,0,2],[1,0,1,0]],[[1,3,2,1],[2,1,3,2],[2,3,0,2],[1,0,1,0]],[[2,2,2,1],[2,1,3,2],[2,3,0,2],[1,0,1,0]],[[1,2,2,1],[2,1,3,2],[3,3,0,2],[1,0,0,1]],[[1,2,2,1],[2,1,3,3],[2,3,0,2],[1,0,0,1]],[[1,2,2,1],[3,1,3,2],[2,3,0,2],[1,0,0,1]],[[1,2,2,2],[2,1,3,2],[2,3,0,2],[1,0,0,1]],[[1,2,3,1],[2,1,3,2],[2,3,0,2],[1,0,0,1]],[[1,3,2,1],[2,1,3,2],[2,3,0,2],[1,0,0,1]],[[2,2,2,1],[2,1,3,2],[2,3,0,2],[1,0,0,1]],[[0,1,3,1],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[0,1,2,2],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[3,3,1,2],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,4,1,2],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,1,3],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,4,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,3,0,3],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[1,3,0,2],[0,3,2,1]],[[0,1,2,1],[2,3,1,2],[1,3,0,2],[0,2,3,1]],[[0,1,2,1],[2,3,1,2],[1,3,0,2],[0,2,2,2]],[[0,1,2,1],[3,3,1,2],[1,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,4,1,2],[1,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,1,2],[1,4,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,3,2],[2,2,3,0],[2,1,0,0]],[[1,2,2,1],[2,1,3,2],[3,2,3,0],[1,1,0,0]],[[1,2,2,1],[2,1,4,2],[2,2,3,0],[1,1,0,0]],[[1,2,2,1],[3,1,3,2],[2,2,3,0],[1,1,0,0]],[[1,2,2,2],[2,1,3,2],[2,2,3,0],[1,1,0,0]],[[1,2,3,1],[2,1,3,2],[2,2,3,0],[1,1,0,0]],[[1,3,2,1],[2,1,3,2],[2,2,3,0],[1,1,0,0]],[[2,2,2,1],[2,1,3,2],[2,2,3,0],[1,1,0,0]],[[0,1,3,1],[2,3,1,2],[1,3,3,2],[0,0,1,1]],[[0,1,2,2],[2,3,1,2],[1,3,3,2],[0,0,1,1]],[[0,1,2,1],[2,3,1,3],[1,3,3,2],[0,0,1,1]],[[0,1,2,1],[2,3,1,2],[1,3,4,2],[0,0,1,1]],[[0,1,2,1],[2,3,1,2],[1,3,3,3],[0,0,1,1]],[[0,1,2,1],[2,3,1,2],[1,3,3,2],[0,0,1,2]],[[0,1,3,1],[2,3,1,2],[1,3,3,2],[0,0,2,0]],[[0,1,2,2],[2,3,1,2],[1,3,3,2],[0,0,2,0]],[[0,1,2,1],[2,3,1,3],[1,3,3,2],[0,0,2,0]],[[0,1,2,1],[2,3,1,2],[1,3,4,2],[0,0,2,0]],[[0,1,2,1],[2,3,1,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,1,3,2],[3,2,3,0],[0,2,0,0]],[[1,2,2,1],[2,1,4,2],[2,2,3,0],[0,2,0,0]],[[1,2,2,1],[3,1,3,2],[2,2,3,0],[0,2,0,0]],[[1,2,2,2],[2,1,3,2],[2,2,3,0],[0,2,0,0]],[[1,2,3,1],[2,1,3,2],[2,2,3,0],[0,2,0,0]],[[1,3,2,1],[2,1,3,2],[2,2,3,0],[0,2,0,0]],[[2,2,2,1],[2,1,3,2],[2,2,3,0],[0,2,0,0]],[[0,1,3,1],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,2],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[3,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,4,1,2],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,3],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[3,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,1,3],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,1,2],[2,2,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,1,2],[1,3,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,1,2],[1,2,3,1]],[[0,1,2,1],[2,3,1,2],[2,0,1,2],[1,2,2,2]],[[0,1,3,1],[2,3,1,2],[2,0,2,2],[0,2,2,1]],[[0,1,2,2],[2,3,1,2],[2,0,2,2],[0,2,2,1]],[[0,1,2,1],[2,3,1,3],[2,0,2,2],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,2,3],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,2,2],[0,3,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,2,2],[0,2,3,1]],[[0,1,2,1],[2,3,1,2],[2,0,2,2],[0,2,2,2]],[[0,1,3,1],[2,3,1,2],[2,0,2,2],[1,1,2,1]],[[0,1,2,2],[2,3,1,2],[2,0,2,2],[1,1,2,1]],[[0,1,2,1],[2,3,1,3],[2,0,2,2],[1,1,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,2,3],[1,1,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,2,2],[1,1,3,1]],[[0,1,2,1],[2,3,1,2],[2,0,2,2],[1,1,2,2]],[[0,1,2,1],[2,3,1,2],[2,0,4,1],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,3,1],[0,3,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,3,1],[0,2,3,1]],[[0,1,2,1],[2,3,1,2],[2,0,3,1],[0,2,2,2]],[[0,1,2,1],[2,3,1,2],[2,0,4,1],[1,1,2,1]],[[0,1,2,1],[2,3,1,2],[2,0,3,1],[1,1,3,1]],[[0,1,2,1],[2,3,1,2],[2,0,3,1],[1,1,2,2]],[[0,1,3,1],[2,3,1,2],[2,0,3,2],[0,2,1,1]],[[0,1,2,2],[2,3,1,2],[2,0,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,1,3],[2,0,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,1,2],[2,0,4,2],[0,2,1,1]],[[0,1,2,1],[2,3,1,2],[2,0,3,3],[0,2,1,1]],[[0,1,2,1],[2,3,1,2],[2,0,3,2],[0,2,1,2]],[[0,1,3,1],[2,3,1,2],[2,0,3,2],[0,2,2,0]],[[0,1,2,2],[2,3,1,2],[2,0,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,1,3],[2,0,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,1,2],[2,0,4,2],[0,2,2,0]],[[0,1,2,1],[2,3,1,2],[2,0,3,3],[0,2,2,0]],[[0,1,2,1],[2,3,1,2],[2,0,3,2],[0,3,2,0]],[[0,1,2,1],[2,3,1,2],[2,0,3,2],[0,2,3,0]],[[0,1,3,1],[2,3,1,2],[2,0,3,2],[1,1,1,1]],[[0,1,2,2],[2,3,1,2],[2,0,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,1,3],[2,0,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,1,2],[2,0,4,2],[1,1,1,1]],[[0,1,2,1],[2,3,1,2],[2,0,3,3],[1,1,1,1]],[[0,1,2,1],[2,3,1,2],[2,0,3,2],[1,1,1,2]],[[0,1,3,1],[2,3,1,2],[2,0,3,2],[1,1,2,0]],[[0,1,2,2],[2,3,1,2],[2,0,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,1,3],[2,0,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,1,2],[2,0,4,2],[1,1,2,0]],[[0,1,2,1],[2,3,1,2],[2,0,3,3],[1,1,2,0]],[[0,1,2,1],[2,3,1,2],[2,0,3,2],[1,1,3,0]],[[0,1,3,1],[2,3,1,2],[2,0,3,2],[1,2,0,1]],[[0,1,2,2],[2,3,1,2],[2,0,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,1,3],[2,0,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,1,2],[2,0,4,2],[1,2,0,1]],[[0,1,2,1],[2,3,1,2],[2,0,3,3],[1,2,0,1]],[[0,1,2,1],[2,3,1,2],[2,0,3,2],[1,2,0,2]],[[0,1,3,1],[2,3,1,2],[2,0,3,2],[1,2,1,0]],[[0,1,2,2],[2,3,1,2],[2,0,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,1,3],[2,0,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,1,2],[2,0,4,2],[1,2,1,0]],[[0,1,2,1],[2,3,1,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[2,1,3,2],[2,2,2,0],[2,2,0,0]],[[1,2,2,1],[2,1,3,2],[3,2,2,0],[1,2,0,0]],[[1,2,2,1],[2,1,4,2],[2,2,2,0],[1,2,0,0]],[[0,1,3,1],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,2],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[3,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,4,1,2],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,3],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[3,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,0,3],[1,2,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,0,2],[2,2,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,0,2],[1,3,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,0,2],[1,2,3,1]],[[0,1,2,1],[2,3,1,2],[2,1,0,2],[1,2,2,2]],[[0,1,3,1],[2,3,1,2],[2,1,2,2],[0,1,2,1]],[[0,1,2,2],[2,3,1,2],[2,1,2,2],[0,1,2,1]],[[0,1,2,1],[2,3,1,3],[2,1,2,2],[0,1,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,2,3],[0,1,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,2,2],[0,1,3,1]],[[0,1,2,1],[2,3,1,2],[2,1,2,2],[0,1,2,2]],[[0,1,3,1],[2,3,1,2],[2,1,2,2],[1,0,2,1]],[[0,1,2,2],[2,3,1,2],[2,1,2,2],[1,0,2,1]],[[0,1,2,1],[2,3,1,3],[2,1,2,2],[1,0,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,2,3],[1,0,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,2,2],[1,0,3,1]],[[0,1,2,1],[2,3,1,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[3,1,3,2],[2,2,2,0],[1,2,0,0]],[[1,2,2,2],[2,1,3,2],[2,2,2,0],[1,2,0,0]],[[1,2,3,1],[2,1,3,2],[2,2,2,0],[1,2,0,0]],[[1,3,2,1],[2,1,3,2],[2,2,2,0],[1,2,0,0]],[[2,2,2,1],[2,1,3,2],[2,2,2,0],[1,2,0,0]],[[0,1,2,1],[2,3,1,2],[2,1,4,1],[0,1,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,1],[0,1,3,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,1],[0,1,2,2]],[[0,1,2,1],[2,3,1,2],[2,1,4,1],[1,0,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,1],[1,0,3,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,1],[1,0,2,2]],[[0,1,3,1],[2,3,1,2],[2,1,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,1,2],[2,1,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,1,3],[2,1,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,4,2],[0,0,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,3],[0,0,2,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,2],[0,0,2,2]],[[0,1,3,1],[2,3,1,2],[2,1,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,1,2],[2,1,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,1,3],[2,1,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,1,2],[2,1,4,2],[0,1,1,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,3],[0,1,1,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,2],[0,1,1,2]],[[0,1,3,1],[2,3,1,2],[2,1,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,1,2],[2,1,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,1,3],[2,1,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,1,2],[2,1,4,2],[0,1,2,0]],[[0,1,2,1],[2,3,1,2],[2,1,3,3],[0,1,2,0]],[[0,1,2,1],[2,3,1,2],[2,1,3,2],[0,1,3,0]],[[0,1,3,1],[2,3,1,2],[2,1,3,2],[0,2,0,1]],[[0,1,2,2],[2,3,1,2],[2,1,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,1,3],[2,1,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,1,2],[2,1,4,2],[0,2,0,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,3],[0,2,0,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,2],[0,2,0,2]],[[0,1,3,1],[2,3,1,2],[2,1,3,2],[0,2,1,0]],[[0,1,2,2],[2,3,1,2],[2,1,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,1,3],[2,1,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,1,2],[2,1,4,2],[0,2,1,0]],[[0,1,2,1],[2,3,1,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,3,2],[2,2,2,0],[2,1,1,0]],[[1,2,2,1],[2,1,3,2],[3,2,2,0],[1,1,1,0]],[[1,2,2,1],[2,1,4,2],[2,2,2,0],[1,1,1,0]],[[1,2,2,1],[3,1,3,2],[2,2,2,0],[1,1,1,0]],[[1,2,2,2],[2,1,3,2],[2,2,2,0],[1,1,1,0]],[[0,1,3,1],[2,3,1,2],[2,1,3,2],[1,0,1,1]],[[0,1,2,2],[2,3,1,2],[2,1,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,1,3],[2,1,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,1,2],[2,1,4,2],[1,0,1,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,3],[1,0,1,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,2],[1,0,1,2]],[[0,1,3,1],[2,3,1,2],[2,1,3,2],[1,0,2,0]],[[0,1,2,2],[2,3,1,2],[2,1,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,1,3],[2,1,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,1,2],[2,1,4,2],[1,0,2,0]],[[0,1,2,1],[2,3,1,2],[2,1,3,3],[1,0,2,0]],[[0,1,2,1],[2,3,1,2],[2,1,3,2],[1,0,3,0]],[[0,1,3,1],[2,3,1,2],[2,1,3,2],[1,1,0,1]],[[0,1,2,2],[2,3,1,2],[2,1,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,1,3],[2,1,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,1,2],[2,1,4,2],[1,1,0,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,3],[1,1,0,1]],[[0,1,2,1],[2,3,1,2],[2,1,3,2],[1,1,0,2]],[[0,1,3,1],[2,3,1,2],[2,1,3,2],[1,1,1,0]],[[0,1,2,2],[2,3,1,2],[2,1,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,1,3],[2,1,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,1,2],[2,1,4,2],[1,1,1,0]],[[0,1,2,1],[2,3,1,2],[2,1,3,3],[1,1,1,0]],[[1,2,3,1],[2,1,3,2],[2,2,2,0],[1,1,1,0]],[[1,3,2,1],[2,1,3,2],[2,2,2,0],[1,1,1,0]],[[2,2,2,1],[2,1,3,2],[2,2,2,0],[1,1,1,0]],[[1,2,2,1],[2,1,3,2],[2,2,2,0],[2,1,0,1]],[[1,2,2,1],[2,1,3,2],[3,2,2,0],[1,1,0,1]],[[1,2,2,1],[2,1,4,2],[2,2,2,0],[1,1,0,1]],[[1,2,2,1],[3,1,3,2],[2,2,2,0],[1,1,0,1]],[[1,2,2,2],[2,1,3,2],[2,2,2,0],[1,1,0,1]],[[1,2,3,1],[2,1,3,2],[2,2,2,0],[1,1,0,1]],[[1,3,2,1],[2,1,3,2],[2,2,2,0],[1,1,0,1]],[[2,2,2,1],[2,1,3,2],[2,2,2,0],[1,1,0,1]],[[1,2,2,1],[2,1,3,2],[2,2,2,0],[2,0,2,0]],[[1,2,2,1],[2,1,3,2],[3,2,2,0],[1,0,2,0]],[[1,2,2,1],[2,1,4,2],[2,2,2,0],[1,0,2,0]],[[1,2,2,1],[3,1,3,2],[2,2,2,0],[1,0,2,0]],[[1,2,2,2],[2,1,3,2],[2,2,2,0],[1,0,2,0]],[[1,2,3,1],[2,1,3,2],[2,2,2,0],[1,0,2,0]],[[1,3,2,1],[2,1,3,2],[2,2,2,0],[1,0,2,0]],[[2,2,2,1],[2,1,3,2],[2,2,2,0],[1,0,2,0]],[[1,2,2,1],[2,1,3,2],[3,2,2,0],[1,0,1,1]],[[1,2,2,1],[2,1,4,2],[2,2,2,0],[1,0,1,1]],[[1,2,2,1],[3,1,3,2],[2,2,2,0],[1,0,1,1]],[[1,2,2,2],[2,1,3,2],[2,2,2,0],[1,0,1,1]],[[1,2,3,1],[2,1,3,2],[2,2,2,0],[1,0,1,1]],[[1,3,2,1],[2,1,3,2],[2,2,2,0],[1,0,1,1]],[[2,2,2,1],[2,1,3,2],[2,2,2,0],[1,0,1,1]],[[0,1,2,1],[3,3,1,2],[2,2,0,2],[0,2,2,1]],[[0,1,2,1],[2,4,1,2],[2,2,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,1,2],[3,2,0,2],[0,2,2,1]],[[0,1,2,1],[3,3,1,2],[2,2,0,2],[1,1,2,1]],[[0,1,2,1],[2,4,1,2],[2,2,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,1,2],[3,2,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,1,2],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[2,1,3,2],[3,2,2,0],[0,2,1,0]],[[1,2,2,1],[2,1,4,2],[2,2,2,0],[0,2,1,0]],[[1,2,2,1],[3,1,3,2],[2,2,2,0],[0,2,1,0]],[[1,2,2,2],[2,1,3,2],[2,2,2,0],[0,2,1,0]],[[1,2,3,1],[2,1,3,2],[2,2,2,0],[0,2,1,0]],[[1,3,2,1],[2,1,3,2],[2,2,2,0],[0,2,1,0]],[[2,2,2,1],[2,1,3,2],[2,2,2,0],[0,2,1,0]],[[1,2,2,1],[2,1,3,2],[3,2,2,0],[0,2,0,1]],[[1,2,2,1],[2,1,4,2],[2,2,2,0],[0,2,0,1]],[[1,2,2,1],[3,1,3,2],[2,2,2,0],[0,2,0,1]],[[1,2,2,2],[2,1,3,2],[2,2,2,0],[0,2,0,1]],[[1,2,3,1],[2,1,3,2],[2,2,2,0],[0,2,0,1]],[[1,3,2,1],[2,1,3,2],[2,2,2,0],[0,2,0,1]],[[2,2,2,1],[2,1,3,2],[2,2,2,0],[0,2,0,1]],[[1,2,2,1],[2,1,3,2],[3,2,2,0],[0,1,2,0]],[[1,2,2,1],[2,1,4,2],[2,2,2,0],[0,1,2,0]],[[1,2,2,1],[3,1,3,2],[2,2,2,0],[0,1,2,0]],[[1,2,2,2],[2,1,3,2],[2,2,2,0],[0,1,2,0]],[[1,2,3,1],[2,1,3,2],[2,2,2,0],[0,1,2,0]],[[1,3,2,1],[2,1,3,2],[2,2,2,0],[0,1,2,0]],[[2,2,2,1],[2,1,3,2],[2,2,2,0],[0,1,2,0]],[[1,2,2,1],[2,1,4,2],[2,2,2,0],[0,1,1,1]],[[1,2,2,1],[3,1,3,2],[2,2,2,0],[0,1,1,1]],[[1,2,2,2],[2,1,3,2],[2,2,2,0],[0,1,1,1]],[[1,2,3,1],[2,1,3,2],[2,2,2,0],[0,1,1,1]],[[1,3,2,1],[2,1,3,2],[2,2,2,0],[0,1,1,1]],[[2,2,2,1],[2,1,3,2],[2,2,2,0],[0,1,1,1]],[[1,2,2,1],[2,1,3,2],[2,2,1,0],[2,1,2,0]],[[1,2,2,1],[2,1,3,2],[3,2,1,0],[1,1,2,0]],[[1,2,2,1],[2,1,4,2],[2,2,1,0],[1,1,2,0]],[[1,2,2,1],[3,1,3,2],[2,2,1,0],[1,1,2,0]],[[1,2,2,2],[2,1,3,2],[2,2,1,0],[1,1,2,0]],[[1,2,3,1],[2,1,3,2],[2,2,1,0],[1,1,2,0]],[[1,3,2,1],[2,1,3,2],[2,2,1,0],[1,1,2,0]],[[2,2,2,1],[2,1,3,2],[2,2,1,0],[1,1,2,0]],[[1,2,2,1],[2,1,3,2],[3,2,1,0],[0,2,2,0]],[[1,2,2,1],[2,1,4,2],[2,2,1,0],[0,2,2,0]],[[1,2,2,1],[3,1,3,2],[2,2,1,0],[0,2,2,0]],[[1,2,2,2],[2,1,3,2],[2,2,1,0],[0,2,2,0]],[[1,2,3,1],[2,1,3,2],[2,2,1,0],[0,2,2,0]],[[1,3,2,1],[2,1,3,2],[2,2,1,0],[0,2,2,0]],[[2,2,2,1],[2,1,3,2],[2,2,1,0],[0,2,2,0]],[[1,2,2,1],[2,1,3,2],[2,2,0,2],[2,2,0,0]],[[1,2,2,1],[2,1,3,2],[3,2,0,2],[1,2,0,0]],[[1,2,2,1],[2,1,3,3],[2,2,0,2],[1,2,0,0]],[[1,2,2,1],[3,1,3,2],[2,2,0,2],[1,2,0,0]],[[1,2,2,2],[2,1,3,2],[2,2,0,2],[1,2,0,0]],[[1,2,3,1],[2,1,3,2],[2,2,0,2],[1,2,0,0]],[[1,3,2,1],[2,1,3,2],[2,2,0,2],[1,2,0,0]],[[2,2,2,1],[2,1,3,2],[2,2,0,2],[1,2,0,0]],[[1,2,2,1],[2,1,3,2],[2,2,0,2],[2,1,1,0]],[[1,2,2,1],[2,1,3,2],[3,2,0,2],[1,1,1,0]],[[1,2,2,1],[2,1,3,3],[2,2,0,2],[1,1,1,0]],[[1,2,2,1],[3,1,3,2],[2,2,0,2],[1,1,1,0]],[[1,2,2,2],[2,1,3,2],[2,2,0,2],[1,1,1,0]],[[1,2,3,1],[2,1,3,2],[2,2,0,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,2],[2,2,0,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,2],[2,2,0,2],[1,1,1,0]],[[1,2,2,1],[2,1,3,2],[2,2,0,2],[2,1,0,1]],[[1,2,2,1],[2,1,3,2],[3,2,0,2],[1,1,0,1]],[[1,2,2,1],[2,1,3,3],[2,2,0,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,2],[2,2,0,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,2],[2,2,0,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,2],[2,2,0,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,2],[2,2,0,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,2],[2,2,0,2],[1,1,0,1]],[[1,2,2,1],[2,1,3,2],[3,2,0,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,3],[2,2,0,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,2],[2,2,0,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,2],[2,2,0,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,2],[2,2,0,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,2],[2,2,0,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,2],[2,2,0,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,2],[3,2,0,2],[1,0,1,1]],[[1,2,2,1],[2,1,3,3],[2,2,0,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,2],[2,2,0,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,2],[2,2,0,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,2],[2,2,0,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,2],[2,2,0,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,2],[2,2,0,2],[1,0,1,1]],[[1,2,2,1],[2,1,3,2],[3,2,0,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,3],[2,2,0,2],[0,2,1,0]],[[1,2,2,1],[3,1,3,2],[2,2,0,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,2],[2,2,0,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,2],[2,2,0,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,2],[2,2,0,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,2],[2,2,0,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,2],[3,2,0,2],[0,2,0,1]],[[1,2,2,1],[2,1,3,3],[2,2,0,2],[0,2,0,1]],[[1,2,2,1],[3,1,3,2],[2,2,0,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,2],[2,2,0,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,2],[2,2,0,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,2],[2,2,0,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,2],[2,2,0,2],[0,2,0,1]],[[1,2,2,1],[2,1,3,3],[2,2,0,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,2],[2,2,0,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,2],[2,2,0,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,2],[2,2,0,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,2],[2,2,0,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,2],[2,2,0,2],[0,1,2,0]],[[1,2,2,1],[2,1,3,3],[2,2,0,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,2],[2,2,0,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,2],[2,2,0,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,2],[2,2,0,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,2],[2,2,0,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,2],[2,2,0,2],[0,1,1,1]],[[1,2,2,1],[2,1,3,2],[2,1,3,0],[2,1,1,0]],[[1,2,2,1],[2,1,3,2],[3,1,3,0],[1,1,1,0]],[[1,2,2,1],[2,1,4,2],[2,1,3,0],[1,1,1,0]],[[1,2,2,1],[3,1,3,2],[2,1,3,0],[1,1,1,0]],[[1,2,2,2],[2,1,3,2],[2,1,3,0],[1,1,1,0]],[[1,2,3,1],[2,1,3,2],[2,1,3,0],[1,1,1,0]],[[1,3,2,1],[2,1,3,2],[2,1,3,0],[1,1,1,0]],[[2,2,2,1],[2,1,3,2],[2,1,3,0],[1,1,1,0]],[[1,2,2,1],[2,1,3,2],[2,1,3,0],[2,1,0,1]],[[1,2,2,1],[2,1,3,2],[3,1,3,0],[1,1,0,1]],[[1,2,2,1],[2,1,4,2],[2,1,3,0],[1,1,0,1]],[[1,2,2,1],[3,1,3,2],[2,1,3,0],[1,1,0,1]],[[1,2,2,2],[2,1,3,2],[2,1,3,0],[1,1,0,1]],[[1,2,3,1],[2,1,3,2],[2,1,3,0],[1,1,0,1]],[[1,3,2,1],[2,1,3,2],[2,1,3,0],[1,1,0,1]],[[2,2,2,1],[2,1,3,2],[2,1,3,0],[1,1,0,1]],[[1,2,2,1],[2,1,3,2],[2,1,3,0],[2,0,2,0]],[[1,2,2,1],[2,1,3,2],[3,1,3,0],[1,0,2,0]],[[1,2,2,1],[2,1,4,2],[2,1,3,0],[1,0,2,0]],[[1,2,2,1],[3,1,3,2],[2,1,3,0],[1,0,2,0]],[[1,2,2,2],[2,1,3,2],[2,1,3,0],[1,0,2,0]],[[1,2,3,1],[2,1,3,2],[2,1,3,0],[1,0,2,0]],[[1,3,2,1],[2,1,3,2],[2,1,3,0],[1,0,2,0]],[[2,2,2,1],[2,1,3,2],[2,1,3,0],[1,0,2,0]],[[1,2,2,1],[2,1,3,2],[3,1,3,0],[1,0,1,1]],[[1,2,2,1],[2,1,4,2],[2,1,3,0],[1,0,1,1]],[[1,2,2,1],[3,1,3,2],[2,1,3,0],[1,0,1,1]],[[1,2,2,2],[2,1,3,2],[2,1,3,0],[1,0,1,1]],[[1,2,3,1],[2,1,3,2],[2,1,3,0],[1,0,1,1]],[[1,3,2,1],[2,1,3,2],[2,1,3,0],[1,0,1,1]],[[2,2,2,1],[2,1,3,2],[2,1,3,0],[1,0,1,1]],[[1,2,2,1],[2,1,3,2],[3,1,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,4,2],[2,1,3,0],[0,2,1,0]],[[1,2,2,1],[3,1,3,2],[2,1,3,0],[0,2,1,0]],[[1,2,2,2],[2,1,3,2],[2,1,3,0],[0,2,1,0]],[[1,2,3,1],[2,1,3,2],[2,1,3,0],[0,2,1,0]],[[1,3,2,1],[2,1,3,2],[2,1,3,0],[0,2,1,0]],[[2,2,2,1],[2,1,3,2],[2,1,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,3,2],[3,1,3,0],[0,2,0,1]],[[1,2,2,1],[2,1,4,2],[2,1,3,0],[0,2,0,1]],[[1,2,2,1],[3,1,3,2],[2,1,3,0],[0,2,0,1]],[[1,2,2,2],[2,1,3,2],[2,1,3,0],[0,2,0,1]],[[1,2,3,1],[2,1,3,2],[2,1,3,0],[0,2,0,1]],[[1,3,2,1],[2,1,3,2],[2,1,3,0],[0,2,0,1]],[[2,2,2,1],[2,1,3,2],[2,1,3,0],[0,2,0,1]],[[1,2,2,1],[2,1,3,2],[3,1,3,0],[0,1,2,0]],[[1,2,2,1],[2,1,4,2],[2,1,3,0],[0,1,2,0]],[[1,2,2,1],[3,1,3,2],[2,1,3,0],[0,1,2,0]],[[1,2,2,2],[2,1,3,2],[2,1,3,0],[0,1,2,0]],[[1,2,3,1],[2,1,3,2],[2,1,3,0],[0,1,2,0]],[[1,3,2,1],[2,1,3,2],[2,1,3,0],[0,1,2,0]],[[2,2,2,1],[2,1,3,2],[2,1,3,0],[0,1,2,0]],[[1,2,2,1],[2,1,4,2],[2,1,3,0],[0,1,1,1]],[[1,2,2,1],[3,1,3,2],[2,1,3,0],[0,1,1,1]],[[1,2,2,2],[2,1,3,2],[2,1,3,0],[0,1,1,1]],[[1,2,3,1],[2,1,3,2],[2,1,3,0],[0,1,1,1]],[[1,3,2,1],[2,1,3,2],[2,1,3,0],[0,1,1,1]],[[2,2,2,1],[2,1,3,2],[2,1,3,0],[0,1,1,1]],[[1,2,2,1],[2,1,4,2],[2,1,3,0],[0,0,2,1]],[[1,2,2,2],[2,1,3,2],[2,1,3,0],[0,0,2,1]],[[1,2,3,1],[2,1,3,2],[2,1,3,0],[0,0,2,1]],[[1,3,2,1],[2,1,3,2],[2,1,3,0],[0,0,2,1]],[[2,2,2,1],[2,1,3,2],[2,1,3,0],[0,0,2,1]],[[1,2,2,1],[2,1,3,3],[2,1,2,2],[1,0,0,1]],[[1,2,2,1],[3,1,3,2],[2,1,2,2],[1,0,0,1]],[[1,2,2,2],[2,1,3,2],[2,1,2,2],[1,0,0,1]],[[1,2,3,1],[2,1,3,2],[2,1,2,2],[1,0,0,1]],[[1,3,2,1],[2,1,3,2],[2,1,2,2],[1,0,0,1]],[[2,2,2,1],[2,1,3,2],[2,1,2,2],[1,0,0,1]],[[0,1,2,1],[2,3,2,0],[0,2,2,3],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,2,2,2],[2,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,2,2,2],[1,3,2,1]],[[0,1,2,1],[2,3,2,0],[0,2,2,2],[1,2,3,1]],[[0,1,2,1],[2,3,2,0],[0,2,2,2],[1,2,2,2]],[[0,1,2,1],[2,3,2,0],[0,2,4,1],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,2,3,1],[2,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,2,3,1],[1,3,2,1]],[[0,1,2,1],[2,3,2,0],[0,2,3,1],[1,2,3,1]],[[0,1,2,1],[2,3,2,0],[0,2,3,1],[1,2,2,2]],[[0,1,2,1],[2,3,2,0],[0,2,4,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,0],[0,2,3,3],[1,2,1,1]],[[0,1,2,1],[2,3,2,0],[0,2,3,2],[1,2,1,2]],[[0,1,2,1],[2,3,2,0],[0,2,4,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,0],[0,2,3,3],[1,2,2,0]],[[0,1,2,1],[2,3,2,0],[0,2,3,2],[2,2,2,0]],[[0,1,2,1],[2,3,2,0],[0,2,3,2],[1,3,2,0]],[[0,1,2,1],[2,3,2,0],[0,2,3,2],[1,2,3,0]],[[0,1,2,1],[3,3,2,0],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,4,2,0],[0,3,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,4,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,1,3],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,1,2],[2,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,1,2],[1,3,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,1,2],[1,2,3,1]],[[0,1,2,1],[2,3,2,0],[0,3,1,2],[1,2,2,2]],[[0,1,2,1],[3,3,2,0],[0,3,2,1],[1,2,2,1]],[[0,1,2,1],[2,4,2,0],[0,3,2,1],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,4,2,1],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,2,1],[2,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,2,1],[1,3,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,2,1],[1,2,3,1]],[[0,1,2,1],[2,3,2,0],[0,3,2,1],[1,2,2,2]],[[0,1,2,1],[2,3,2,0],[0,3,2,3],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,2,2],[1,1,3,1]],[[0,1,2,1],[2,3,2,0],[0,3,2,2],[1,1,2,2]],[[0,1,2,1],[3,3,2,0],[0,3,2,2],[1,2,2,0]],[[0,1,2,1],[2,4,2,0],[0,3,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,0],[0,4,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,0],[0,3,2,2],[2,2,2,0]],[[0,1,2,1],[2,3,2,0],[0,3,2,2],[1,3,2,0]],[[0,1,2,1],[2,3,2,0],[0,3,2,2],[1,2,3,0]],[[0,1,2,1],[3,3,2,0],[0,3,3,0],[1,2,2,1]],[[0,1,2,1],[2,4,2,0],[0,3,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,4,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,0],[2,2,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,0],[1,3,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,0],[1,2,3,1]],[[0,1,2,1],[3,3,2,0],[0,3,3,1],[1,1,2,1]],[[0,1,2,1],[2,4,2,0],[0,3,3,1],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[0,4,3,1],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,4,1],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,1],[1,1,3,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,1],[1,1,2,2]],[[0,1,2,1],[3,3,2,0],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,4,2,0],[0,3,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,2,0],[0,4,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,2,0],[0,3,4,1],[1,2,1,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,1],[2,2,1,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,1],[1,3,1,1]],[[0,1,2,1],[2,3,2,0],[0,3,4,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,3],[1,0,2,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,2],[1,0,2,2]],[[0,1,2,1],[3,3,2,0],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,4,2,0],[0,3,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,0],[0,4,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,0],[0,3,4,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,3],[1,1,1,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,2],[1,1,1,2]],[[0,1,2,1],[3,3,2,0],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,4,2,0],[0,3,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,0],[0,4,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,0],[0,3,4,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,0],[0,3,3,3],[1,1,2,0]],[[0,1,2,1],[2,3,2,0],[0,3,3,2],[1,1,3,0]],[[0,1,2,1],[3,3,2,0],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,4,2,0],[0,3,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,0],[0,4,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,0],[0,3,4,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,3],[1,2,0,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,2],[2,2,0,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,2],[1,3,0,1]],[[0,1,2,1],[2,3,2,0],[0,3,3,2],[1,2,0,2]],[[0,1,2,1],[3,3,2,0],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,4,2,0],[0,3,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,0],[0,4,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,0],[0,3,4,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,0],[0,3,3,3],[1,2,1,0]],[[0,1,2,1],[2,3,2,0],[0,3,3,2],[2,2,1,0]],[[0,1,2,1],[2,3,2,0],[0,3,3,2],[1,3,1,0]],[[0,1,2,1],[2,3,2,0],[1,2,2,3],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[1,2,2,2],[0,3,2,1]],[[0,1,2,1],[2,3,2,0],[1,2,2,2],[0,2,3,1]],[[0,1,2,1],[2,3,2,0],[1,2,2,2],[0,2,2,2]],[[0,1,2,1],[2,3,2,0],[1,2,4,1],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[1,2,3,1],[0,3,2,1]],[[0,1,2,1],[2,3,2,0],[1,2,3,1],[0,2,3,1]],[[0,1,2,1],[2,3,2,0],[1,2,3,1],[0,2,2,2]],[[0,1,2,1],[2,3,2,0],[1,2,4,2],[0,2,1,1]],[[0,1,2,1],[2,3,2,0],[1,2,3,3],[0,2,1,1]],[[0,1,2,1],[2,3,2,0],[1,2,3,2],[0,2,1,2]],[[0,1,2,1],[2,3,2,0],[1,2,4,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,0],[1,2,3,3],[0,2,2,0]],[[0,1,2,1],[2,3,2,0],[1,2,3,2],[0,3,2,0]],[[0,1,2,1],[2,3,2,0],[1,2,3,2],[0,2,3,0]],[[0,1,2,1],[3,3,2,0],[1,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,4,2,0],[1,3,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[1,4,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,1,3],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,1,2],[0,3,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,1,2],[0,2,3,1]],[[0,1,2,1],[2,3,2,0],[1,3,1,2],[0,2,2,2]],[[0,1,2,1],[3,3,2,0],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,4,2,0],[1,3,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[1,4,1,2],[1,1,2,1]],[[0,1,2,1],[3,3,2,0],[1,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,4,2,0],[1,3,2,1],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[1,4,2,1],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,2,1],[0,3,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,2,1],[0,2,3,1]],[[0,1,2,1],[2,3,2,0],[1,3,2,1],[0,2,2,2]],[[0,1,2,1],[3,3,2,0],[1,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,4,2,0],[1,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[1,4,2,1],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,2,3],[0,1,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,2,2],[0,1,3,1]],[[0,1,2,1],[2,3,2,0],[1,3,2,2],[0,1,2,2]],[[0,1,2,1],[3,3,2,0],[1,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,4,2,0],[1,3,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,0],[1,4,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,0],[1,3,2,2],[0,3,2,0]],[[0,1,2,1],[2,3,2,0],[1,3,2,2],[0,2,3,0]],[[0,1,2,1],[2,3,2,0],[1,3,2,3],[1,0,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,2,2],[1,0,3,1]],[[0,1,2,1],[2,3,2,0],[1,3,2,2],[1,0,2,2]],[[0,1,2,1],[3,3,2,0],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,4,2,0],[1,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,0],[1,4,2,2],[1,1,2,0]],[[0,1,2,1],[3,3,2,0],[1,3,3,0],[0,2,2,1]],[[0,1,2,1],[2,4,2,0],[1,3,3,0],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[1,4,3,0],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,0],[0,3,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,0],[0,2,3,1]],[[0,1,2,1],[3,3,2,0],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,4,2,0],[1,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[1,4,3,0],[1,1,2,1]],[[0,1,2,1],[3,3,2,0],[1,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,4,2,0],[1,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,2,0],[1,4,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,4,1],[0,1,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,1],[0,1,3,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,1],[0,1,2,2]],[[0,1,2,1],[3,3,2,0],[1,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,4,2,0],[1,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,2,0],[1,4,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,2,0],[1,3,4,1],[0,2,1,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,1],[0,3,1,1]],[[0,1,2,1],[3,3,2,0],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,4,2,0],[1,3,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,2,0],[1,4,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,4,1],[1,0,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,1],[1,0,3,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,1],[1,0,2,2]],[[0,1,2,1],[3,3,2,0],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,4,2,0],[1,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,2,0],[1,4,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,2,0],[1,3,4,1],[1,1,1,1]],[[0,1,2,1],[3,3,2,0],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,4,2,0],[1,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,0],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,3,3],[2,1,2,2],[0,1,0,1]],[[1,2,2,2],[2,1,3,2],[2,1,2,2],[0,1,0,1]],[[1,2,3,1],[2,1,3,2],[2,1,2,2],[0,1,0,1]],[[1,3,2,1],[2,1,3,2],[2,1,2,2],[0,1,0,1]],[[2,2,2,1],[2,1,3,2],[2,1,2,2],[0,1,0,1]],[[0,1,2,1],[2,3,2,0],[1,3,4,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,3],[0,0,2,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,2],[0,0,2,2]],[[0,1,2,1],[3,3,2,0],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,4,2,0],[1,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,0],[1,4,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,0],[1,3,4,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,3],[0,1,1,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,2],[0,1,1,2]],[[0,1,2,1],[3,3,2,0],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,4,2,0],[1,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,0],[1,4,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,0],[1,3,4,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,0],[1,3,3,3],[0,1,2,0]],[[0,1,2,1],[2,3,2,0],[1,3,3,2],[0,1,3,0]],[[0,1,2,1],[3,3,2,0],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,4,2,0],[1,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,0],[1,4,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,0],[1,3,4,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,3],[0,2,0,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,2],[0,3,0,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,2],[0,2,0,2]],[[0,1,2,1],[3,3,2,0],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,4,2,0],[1,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,0],[1,4,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,0],[1,3,4,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,0],[1,3,3,3],[0,2,1,0]],[[0,1,2,1],[2,3,2,0],[1,3,3,2],[0,3,1,0]],[[0,1,2,1],[3,3,2,0],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,4,2,0],[1,3,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,0],[1,4,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,0],[1,3,4,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,3],[1,0,1,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,2],[1,0,1,2]],[[0,1,2,1],[3,3,2,0],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,4,2,0],[1,3,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,0],[1,4,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,0],[1,3,4,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,0],[1,3,3,3],[1,0,2,0]],[[0,1,2,1],[2,3,2,0],[1,3,3,2],[1,0,3,0]],[[0,1,2,1],[3,3,2,0],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,4,2,0],[1,3,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,0],[1,4,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,0],[1,3,4,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,3],[1,1,0,1]],[[0,1,2,1],[2,3,2,0],[1,3,3,2],[1,1,0,2]],[[0,1,2,1],[3,3,2,0],[1,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,4,2,0],[1,3,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,0],[1,4,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,0],[1,3,4,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,0],[1,3,3,3],[1,1,1,0]],[[0,1,2,1],[3,3,2,0],[1,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,4,2,0],[1,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,3,2,0],[1,4,3,2],[1,2,0,0]],[[0,1,2,1],[3,3,2,0],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,4,2,0],[2,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[3,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,0,2,3],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,0,2,2],[2,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,0,2,2],[1,3,2,1]],[[0,1,2,1],[2,3,2,0],[2,0,2,2],[1,2,3,1]],[[0,1,2,1],[2,3,2,0],[2,0,2,2],[1,2,2,2]],[[0,1,2,1],[3,3,2,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,4,2,0],[2,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[3,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,0,4,1],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,0,3,1],[2,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,0,3,1],[1,3,2,1]],[[0,1,2,1],[2,3,2,0],[2,0,3,1],[1,2,3,1]],[[0,1,2,1],[2,3,2,0],[2,0,3,1],[1,2,2,2]],[[0,1,2,1],[2,3,2,0],[2,0,4,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,0],[2,0,3,3],[1,2,1,1]],[[0,1,2,1],[2,3,2,0],[2,0,3,2],[1,2,1,2]],[[0,1,2,1],[3,3,2,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,4,2,0],[2,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,0],[3,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,0],[2,0,4,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,0],[2,0,3,3],[1,2,2,0]],[[0,1,2,1],[2,3,2,0],[2,0,3,2],[2,2,2,0]],[[0,1,2,1],[2,3,2,0],[2,0,3,2],[1,3,2,0]],[[0,1,2,1],[2,3,2,0],[2,0,3,2],[1,2,3,0]],[[0,1,2,1],[3,3,2,0],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,4,2,0],[2,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[3,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,1,1,3],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,1,1,2],[2,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,1,1,2],[1,3,2,1]],[[0,1,2,1],[2,3,2,0],[2,1,1,2],[1,2,3,1]],[[0,1,2,1],[2,3,2,0],[2,1,1,2],[1,2,2,2]],[[0,1,2,1],[3,3,2,0],[2,1,2,1],[1,2,2,1]],[[0,1,2,1],[2,4,2,0],[2,1,2,1],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[3,1,2,1],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,1,2,1],[2,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,1,2,1],[1,3,2,1]],[[0,1,2,1],[2,3,2,0],[2,1,2,1],[1,2,3,1]],[[0,1,2,1],[2,3,2,0],[2,1,2,1],[1,2,2,2]],[[0,1,2,1],[3,3,2,0],[2,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,4,2,0],[2,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,0],[3,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,0],[2,1,2,2],[2,2,2,0]],[[0,1,2,1],[2,3,2,0],[2,1,2,2],[1,3,2,0]],[[0,1,2,1],[2,3,2,0],[2,1,2,2],[1,2,3,0]],[[0,1,2,1],[3,3,2,0],[2,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,4,2,0],[2,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[3,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,1,3,0],[2,2,2,1]],[[0,1,2,1],[2,3,2,0],[2,1,3,0],[1,3,2,1]],[[0,1,2,1],[2,3,2,0],[2,1,3,0],[1,2,3,1]],[[0,1,2,1],[3,3,2,0],[2,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,4,2,0],[2,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,2,0],[3,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,2,0],[2,1,3,1],[2,2,1,1]],[[0,1,2,1],[2,3,2,0],[2,1,3,1],[1,3,1,1]],[[0,1,2,1],[3,3,2,0],[2,1,3,2],[1,2,0,1]],[[0,1,2,1],[2,4,2,0],[2,1,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,0],[3,1,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,0],[2,1,3,2],[2,2,0,1]],[[0,1,2,1],[2,3,2,0],[2,1,3,2],[1,3,0,1]],[[0,1,2,1],[3,3,2,0],[2,1,3,2],[1,2,1,0]],[[0,1,2,1],[2,4,2,0],[2,1,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,0],[3,1,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,0],[2,1,3,2],[2,2,1,0]],[[0,1,2,1],[2,3,2,0],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,3,2],[2,1,2,0],[1,3,1,0]],[[1,2,2,1],[2,1,3,2],[2,1,2,0],[2,2,1,0]],[[0,1,2,1],[3,3,2,0],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[2,4,2,0],[2,2,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[3,2,1,2],[0,2,2,1]],[[0,1,2,1],[3,3,2,0],[2,2,1,2],[1,1,2,1]],[[0,1,2,1],[2,4,2,0],[2,2,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[3,2,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[2,2,1,2],[2,1,2,1]],[[0,1,2,1],[3,3,2,0],[2,2,2,1],[0,2,2,1]],[[0,1,2,1],[2,4,2,0],[2,2,2,1],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[3,2,2,1],[0,2,2,1]],[[0,1,2,1],[3,3,2,0],[2,2,2,1],[1,1,2,1]],[[0,1,2,1],[2,4,2,0],[2,2,2,1],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[3,2,2,1],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[2,2,2,1],[2,1,2,1]],[[0,1,2,1],[3,3,2,0],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[2,4,2,0],[2,2,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,0],[3,2,2,2],[0,2,2,0]],[[0,1,2,1],[3,3,2,0],[2,2,2,2],[1,1,2,0]],[[0,1,2,1],[2,4,2,0],[2,2,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,0],[3,2,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,0],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[2,1,3,2],[3,1,2,0],[1,2,1,0]],[[1,2,2,1],[2,1,4,2],[2,1,2,0],[1,2,1,0]],[[1,2,2,1],[3,1,3,2],[2,1,2,0],[1,2,1,0]],[[1,2,2,2],[2,1,3,2],[2,1,2,0],[1,2,1,0]],[[1,2,3,1],[2,1,3,2],[2,1,2,0],[1,2,1,0]],[[1,3,2,1],[2,1,3,2],[2,1,2,0],[1,2,1,0]],[[2,2,2,1],[2,1,3,2],[2,1,2,0],[1,2,1,0]],[[1,2,2,1],[2,1,3,2],[2,1,2,0],[2,2,0,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,0],[0,2,2,1]],[[0,1,2,1],[2,4,2,0],[2,2,3,0],[0,2,2,1]],[[0,1,2,1],[2,3,2,0],[3,2,3,0],[0,2,2,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,0],[1,1,2,1]],[[0,1,2,1],[2,4,2,0],[2,2,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[3,2,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,0],[2,2,3,0],[2,1,2,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,1],[0,1,2,1]],[[0,1,2,1],[2,4,2,0],[2,2,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,2,0],[3,2,3,1],[0,1,2,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,4,2,0],[2,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,2,0],[3,2,3,1],[0,2,1,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,4,2,0],[2,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,2,0],[3,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,2,0],[2,2,3,1],[2,0,2,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,4,2,0],[2,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,2,0],[3,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,2,0],[2,2,3,1],[2,1,1,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,1],[1,2,0,1]],[[0,1,2,1],[2,4,2,0],[2,2,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,0],[3,2,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,0],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,3,2],[3,1,2,0],[1,2,0,1]],[[1,2,2,1],[2,1,4,2],[2,1,2,0],[1,2,0,1]],[[1,2,2,1],[3,1,3,2],[2,1,2,0],[1,2,0,1]],[[1,2,2,2],[2,1,3,2],[2,1,2,0],[1,2,0,1]],[[1,2,3,1],[2,1,3,2],[2,1,2,0],[1,2,0,1]],[[1,3,2,1],[2,1,3,2],[2,1,2,0],[1,2,0,1]],[[2,2,2,1],[2,1,3,2],[2,1,2,0],[1,2,0,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,4,2,0],[2,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,0],[3,2,3,2],[0,1,1,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,4,2,0],[2,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,0],[3,2,3,2],[0,1,2,0]],[[0,1,2,1],[3,3,2,0],[2,2,3,2],[0,2,0,1]],[[0,1,2,1],[2,4,2,0],[2,2,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,0],[3,2,3,2],[0,2,0,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,2],[0,2,1,0]],[[0,1,2,1],[2,4,2,0],[2,2,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,0],[3,2,3,2],[0,2,1,0]],[[0,1,2,1],[3,3,2,0],[2,2,3,2],[1,0,1,1]],[[0,1,2,1],[2,4,2,0],[2,2,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,0],[3,2,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,0],[2,2,3,2],[2,0,1,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,2],[1,0,2,0]],[[0,1,2,1],[2,4,2,0],[2,2,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,0],[3,2,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,0],[2,2,3,2],[2,0,2,0]],[[0,1,2,1],[3,3,2,0],[2,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,4,2,0],[2,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,0],[3,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,0],[2,2,3,2],[2,1,0,1]],[[0,1,2,1],[3,3,2,0],[2,2,3,2],[1,1,1,0]],[[0,1,2,1],[2,4,2,0],[2,2,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,0],[3,2,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,0],[2,2,3,2],[2,1,1,0]],[[0,1,2,1],[3,3,2,0],[2,2,3,2],[1,2,0,0]],[[0,1,2,1],[2,4,2,0],[2,2,3,2],[1,2,0,0]],[[0,1,2,1],[2,3,2,0],[3,2,3,2],[1,2,0,0]],[[0,1,2,1],[2,3,2,0],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[2,1,3,3],[2,1,1,2],[1,1,1,0]],[[1,2,2,1],[3,1,3,2],[2,1,1,2],[1,1,1,0]],[[1,2,2,2],[2,1,3,2],[2,1,1,2],[1,1,1,0]],[[1,2,3,1],[2,1,3,2],[2,1,1,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,2],[2,1,1,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,2],[2,1,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,3,3],[2,1,1,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,2],[2,1,1,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,2],[2,1,1,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,2],[2,1,1,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,2],[2,1,1,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,2],[2,1,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,3,3],[2,1,1,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,2],[2,1,1,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,2],[2,1,1,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,2],[2,1,1,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,2],[2,1,1,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,2],[2,1,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,3],[2,1,1,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,2],[2,1,1,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,2],[2,1,1,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,2],[2,1,1,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,2],[2,1,1,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,2],[2,1,1,2],[1,0,1,1]],[[1,2,2,1],[2,1,3,3],[2,1,1,2],[0,2,1,0]],[[1,2,2,1],[3,1,3,2],[2,1,1,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,2],[2,1,1,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,2],[2,1,1,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,2],[2,1,1,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,2],[2,1,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,3],[2,1,1,2],[0,2,0,1]],[[1,2,2,1],[3,1,3,2],[2,1,1,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,2],[2,1,1,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,2],[2,1,1,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,2],[2,1,1,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,2],[2,1,1,2],[0,2,0,1]],[[0,1,2,1],[3,3,2,0],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,4,2,0],[2,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,2,0],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,1,3,3],[2,1,1,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,2],[2,1,1,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,2],[2,1,1,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,2],[2,1,1,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,2],[2,1,1,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,2],[2,1,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,3,3],[2,1,1,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,2],[2,1,1,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,2],[2,1,1,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,2],[2,1,1,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,2],[2,1,1,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,2],[2,1,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,3,3],[2,1,1,2],[0,0,2,1]],[[1,2,2,2],[2,1,3,2],[2,1,1,2],[0,0,2,1]],[[1,2,3,1],[2,1,3,2],[2,1,1,2],[0,0,2,1]],[[1,3,2,1],[2,1,3,2],[2,1,1,2],[0,0,2,1]],[[2,2,2,1],[2,1,3,2],[2,1,1,2],[0,0,2,1]],[[1,2,2,1],[2,1,3,2],[2,1,1,0],[1,3,2,0]],[[1,2,2,1],[2,1,3,2],[2,1,1,0],[2,2,2,0]],[[1,2,2,1],[2,1,3,2],[3,1,1,0],[1,2,2,0]],[[1,2,2,1],[2,1,4,2],[2,1,1,0],[1,2,2,0]],[[1,2,2,1],[3,1,3,2],[2,1,1,0],[1,2,2,0]],[[1,2,2,2],[2,1,3,2],[2,1,1,0],[1,2,2,0]],[[1,2,3,1],[2,1,3,2],[2,1,1,0],[1,2,2,0]],[[1,3,2,1],[2,1,3,2],[2,1,1,0],[1,2,2,0]],[[2,2,2,1],[2,1,3,2],[2,1,1,0],[1,2,2,0]],[[0,1,2,1],[3,3,2,0],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[2,4,2,0],[2,3,3,2],[1,0,0,1]],[[0,1,2,1],[2,3,2,0],[3,3,3,2],[1,0,0,1]],[[0,1,2,1],[3,3,2,0],[2,3,3,2],[1,0,1,0]],[[0,1,2,1],[2,4,2,0],[2,3,3,2],[1,0,1,0]],[[0,1,2,1],[2,3,2,0],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,1,3,2],[2,1,0,2],[2,2,1,0]],[[1,2,2,1],[2,1,3,2],[3,1,0,2],[1,2,1,0]],[[1,2,2,1],[2,1,3,3],[2,1,0,2],[1,2,1,0]],[[1,2,2,1],[3,1,3,2],[2,1,0,2],[1,2,1,0]],[[1,2,2,2],[2,1,3,2],[2,1,0,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,2],[2,1,0,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,2],[2,1,0,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,2],[2,1,0,2],[1,2,1,0]],[[1,2,2,1],[2,1,3,2],[2,1,0,2],[2,2,0,1]],[[1,2,2,1],[2,1,3,2],[3,1,0,2],[1,2,0,1]],[[1,2,2,1],[2,1,3,3],[2,1,0,2],[1,2,0,1]],[[1,2,2,1],[3,1,3,2],[2,1,0,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,2],[2,1,0,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,2],[2,1,0,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,2],[2,1,0,2],[1,2,0,1]],[[2,2,2,1],[2,1,3,2],[2,1,0,2],[1,2,0,1]],[[1,2,2,1],[2,1,3,3],[2,1,0,2],[1,0,2,1]],[[1,2,2,1],[3,1,3,2],[2,1,0,2],[1,0,2,1]],[[1,2,2,2],[2,1,3,2],[2,1,0,2],[1,0,2,1]],[[1,2,3,1],[2,1,3,2],[2,1,0,2],[1,0,2,1]],[[1,3,2,1],[2,1,3,2],[2,1,0,2],[1,0,2,1]],[[2,2,2,1],[2,1,3,2],[2,1,0,2],[1,0,2,1]],[[1,2,2,1],[2,1,3,3],[2,1,0,2],[0,1,2,1]],[[1,2,2,1],[3,1,3,2],[2,1,0,2],[0,1,2,1]],[[1,2,2,2],[2,1,3,2],[2,1,0,2],[0,1,2,1]],[[1,2,3,1],[2,1,3,2],[2,1,0,2],[0,1,2,1]],[[1,3,2,1],[2,1,3,2],[2,1,0,2],[0,1,2,1]],[[2,2,2,1],[2,1,3,2],[2,1,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,1],[0,2,4,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,1],[0,2,3,0],[2,2,2,1]],[[0,1,2,1],[2,3,2,1],[0,2,3,0],[1,3,2,1]],[[0,1,2,1],[2,3,2,1],[0,2,3,0],[1,2,3,1]],[[0,1,2,1],[2,3,2,1],[0,2,3,0],[1,2,2,2]],[[0,1,2,1],[2,3,2,1],[0,2,4,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,1],[0,2,3,1],[2,2,2,0]],[[0,1,2,1],[2,3,2,1],[0,2,3,1],[1,3,2,0]],[[0,1,2,1],[2,3,2,1],[0,2,3,1],[1,2,3,0]],[[0,1,2,1],[3,3,2,1],[0,3,2,0],[1,2,2,1]],[[0,1,2,1],[2,4,2,1],[0,3,2,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,1],[0,4,2,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,1],[0,3,2,0],[2,2,2,1]],[[0,1,2,1],[2,3,2,1],[0,3,2,0],[1,3,2,1]],[[0,1,2,1],[2,3,2,1],[0,3,2,0],[1,2,3,1]],[[0,1,2,1],[2,3,2,1],[0,3,2,0],[1,2,2,2]],[[0,1,2,1],[3,3,2,1],[0,3,2,1],[1,2,2,0]],[[0,1,2,1],[2,4,2,1],[0,3,2,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,1],[0,4,2,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,1],[0,3,2,1],[2,2,2,0]],[[0,1,2,1],[2,3,2,1],[0,3,2,1],[1,3,2,0]],[[0,1,2,1],[2,3,2,1],[0,3,2,1],[1,2,3,0]],[[0,1,2,1],[3,3,2,1],[0,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,4,2,1],[0,3,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,1],[0,4,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,1],[0,3,4,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,1],[0,3,3,0],[1,1,3,1]],[[0,1,2,1],[2,3,2,1],[0,3,3,0],[1,1,2,2]],[[0,1,2,1],[3,3,2,1],[0,3,3,0],[1,2,1,1]],[[0,1,2,1],[2,4,2,1],[0,3,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,2,1],[0,4,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,2,1],[0,3,4,0],[1,2,1,1]],[[0,1,2,1],[2,3,2,1],[0,3,3,0],[2,2,1,1]],[[0,1,2,1],[2,3,2,1],[0,3,3,0],[1,3,1,1]],[[0,1,2,1],[3,3,2,1],[0,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,4,2,1],[0,3,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,2,1],[0,4,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,2,1],[0,3,4,1],[1,1,1,1]],[[0,1,2,1],[3,3,2,1],[0,3,3,1],[1,1,2,0]],[[0,1,2,1],[2,4,2,1],[0,3,3,1],[1,1,2,0]],[[0,1,2,1],[2,3,2,1],[0,4,3,1],[1,1,2,0]],[[0,1,2,1],[2,3,2,1],[0,3,4,1],[1,1,2,0]],[[0,1,2,1],[2,3,2,1],[0,3,3,1],[1,1,3,0]],[[0,1,2,1],[3,3,2,1],[0,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,4,2,1],[0,3,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,1],[0,4,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,1],[0,3,4,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,1],[0,3,3,1],[2,2,0,1]],[[0,1,2,1],[2,3,2,1],[0,3,3,1],[1,3,0,1]],[[0,1,2,1],[3,3,2,1],[0,3,3,1],[1,2,1,0]],[[0,1,2,1],[2,4,2,1],[0,3,3,1],[1,2,1,0]],[[0,1,2,1],[2,3,2,1],[0,4,3,1],[1,2,1,0]],[[0,1,2,1],[2,3,2,1],[0,3,4,1],[1,2,1,0]],[[0,1,2,1],[2,3,2,1],[0,3,3,1],[2,2,1,0]],[[0,1,2,1],[2,3,2,1],[0,3,3,1],[1,3,1,0]],[[0,1,2,1],[2,3,2,1],[1,2,4,0],[0,2,2,1]],[[0,1,2,1],[2,3,2,1],[1,2,3,0],[0,3,2,1]],[[0,1,2,1],[2,3,2,1],[1,2,3,0],[0,2,3,1]],[[0,1,2,1],[2,3,2,1],[1,2,3,0],[0,2,2,2]],[[0,1,2,1],[2,3,2,1],[1,2,4,1],[0,2,2,0]],[[0,1,2,1],[2,3,2,1],[1,2,3,1],[0,3,2,0]],[[0,1,2,1],[2,3,2,1],[1,2,3,1],[0,2,3,0]],[[0,1,2,1],[3,3,2,1],[1,3,2,0],[0,2,2,1]],[[0,1,2,1],[2,4,2,1],[1,3,2,0],[0,2,2,1]],[[0,1,2,1],[2,3,2,1],[1,4,2,0],[0,2,2,1]],[[0,1,2,1],[2,3,2,1],[1,3,2,0],[0,3,2,1]],[[0,1,2,1],[2,3,2,1],[1,3,2,0],[0,2,3,1]],[[0,1,2,1],[2,3,2,1],[1,3,2,0],[0,2,2,2]],[[0,1,2,1],[3,3,2,1],[1,3,2,0],[1,1,2,1]],[[0,1,2,1],[2,4,2,1],[1,3,2,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,1],[1,4,2,0],[1,1,2,1]],[[0,1,2,1],[3,3,2,1],[1,3,2,1],[0,2,2,0]],[[0,1,2,1],[2,4,2,1],[1,3,2,1],[0,2,2,0]],[[0,1,2,1],[2,3,2,1],[1,4,2,1],[0,2,2,0]],[[0,1,2,1],[2,3,2,1],[1,3,2,1],[0,3,2,0]],[[0,1,2,1],[2,3,2,1],[1,3,2,1],[0,2,3,0]],[[0,1,2,1],[3,3,2,1],[1,3,2,1],[1,1,2,0]],[[0,1,2,1],[2,4,2,1],[1,3,2,1],[1,1,2,0]],[[0,1,2,1],[2,3,2,1],[1,4,2,1],[1,1,2,0]],[[0,1,2,1],[3,3,2,1],[1,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,4,2,1],[1,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,2,1],[1,4,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,2,1],[1,3,4,0],[0,1,2,1]],[[0,1,2,1],[2,3,2,1],[1,3,3,0],[0,1,3,1]],[[0,1,2,1],[2,3,2,1],[1,3,3,0],[0,1,2,2]],[[0,1,2,1],[3,3,2,1],[1,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,4,2,1],[1,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,2,1],[1,4,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,2,1],[1,3,4,0],[0,2,1,1]],[[0,1,2,1],[2,3,2,1],[1,3,3,0],[0,3,1,1]],[[0,1,2,1],[3,3,2,1],[1,3,3,0],[1,0,2,1]],[[0,1,2,1],[2,4,2,1],[1,3,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,2,1],[1,4,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,2,1],[1,3,4,0],[1,0,2,1]],[[0,1,2,1],[2,3,2,1],[1,3,3,0],[1,0,3,1]],[[0,1,2,1],[2,3,2,1],[1,3,3,0],[1,0,2,2]],[[0,1,2,1],[3,3,2,1],[1,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,4,2,1],[1,3,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,2,1],[1,4,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,2,1],[1,3,4,0],[1,1,1,1]],[[0,1,2,1],[3,3,2,1],[1,3,3,0],[1,2,0,1]],[[0,1,2,1],[2,4,2,1],[1,3,3,0],[1,2,0,1]],[[0,1,2,1],[2,3,2,1],[1,4,3,0],[1,2,0,1]],[[1,2,2,1],[2,1,3,2],[2,0,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,3,2],[2,0,3,0],[2,2,1,0]],[[0,1,2,1],[3,3,2,1],[1,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,4,2,1],[1,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,2,1],[1,4,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,2,1],[1,3,4,1],[0,1,1,1]],[[0,1,2,1],[3,3,2,1],[1,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,4,2,1],[1,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,2,1],[1,4,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,2,1],[1,3,4,1],[0,1,2,0]],[[0,1,2,1],[2,3,2,1],[1,3,3,1],[0,1,3,0]],[[0,1,2,1],[3,3,2,1],[1,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,4,2,1],[1,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,2,1],[1,4,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,2,1],[1,3,4,1],[0,2,0,1]],[[0,1,2,1],[2,3,2,1],[1,3,3,1],[0,3,0,1]],[[0,1,2,1],[3,3,2,1],[1,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,4,2,1],[1,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,2,1],[1,4,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,2,1],[1,3,4,1],[0,2,1,0]],[[0,1,2,1],[2,3,2,1],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,1,3,2],[3,0,3,0],[1,2,1,0]],[[1,2,2,1],[2,1,4,2],[2,0,3,0],[1,2,1,0]],[[1,2,2,1],[3,1,3,2],[2,0,3,0],[1,2,1,0]],[[1,2,2,2],[2,1,3,2],[2,0,3,0],[1,2,1,0]],[[1,2,3,1],[2,1,3,2],[2,0,3,0],[1,2,1,0]],[[1,3,2,1],[2,1,3,2],[2,0,3,0],[1,2,1,0]],[[2,2,2,1],[2,1,3,2],[2,0,3,0],[1,2,1,0]],[[0,1,2,1],[3,3,2,1],[1,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,4,2,1],[1,3,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,2,1],[1,4,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,2,1],[1,3,4,1],[1,0,1,1]],[[0,1,2,1],[3,3,2,1],[1,3,3,1],[1,0,2,0]],[[0,1,2,1],[2,4,2,1],[1,3,3,1],[1,0,2,0]],[[0,1,2,1],[2,3,2,1],[1,4,3,1],[1,0,2,0]],[[0,1,2,1],[2,3,2,1],[1,3,4,1],[1,0,2,0]],[[0,1,2,1],[2,3,2,1],[1,3,3,1],[1,0,3,0]],[[0,1,2,1],[3,3,2,1],[1,3,3,1],[1,1,0,1]],[[0,1,2,1],[2,4,2,1],[1,3,3,1],[1,1,0,1]],[[0,1,2,1],[2,3,2,1],[1,4,3,1],[1,1,0,1]],[[0,1,2,1],[2,3,2,1],[1,3,4,1],[1,1,0,1]],[[0,1,2,1],[3,3,2,1],[1,3,3,1],[1,1,1,0]],[[0,1,2,1],[2,4,2,1],[1,3,3,1],[1,1,1,0]],[[0,1,2,1],[2,3,2,1],[1,4,3,1],[1,1,1,0]],[[0,1,2,1],[2,3,2,1],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,1,3,2],[2,0,3,0],[2,2,0,1]],[[1,2,2,1],[2,1,3,2],[3,0,3,0],[1,2,0,1]],[[1,2,2,1],[2,1,4,2],[2,0,3,0],[1,2,0,1]],[[1,2,2,1],[3,1,3,2],[2,0,3,0],[1,2,0,1]],[[1,2,2,2],[2,1,3,2],[2,0,3,0],[1,2,0,1]],[[1,2,3,1],[2,1,3,2],[2,0,3,0],[1,2,0,1]],[[0,1,2,1],[3,3,2,1],[1,3,3,1],[1,2,0,0]],[[0,1,2,1],[2,4,2,1],[1,3,3,1],[1,2,0,0]],[[0,1,2,1],[2,3,2,1],[1,4,3,1],[1,2,0,0]],[[1,3,2,1],[2,1,3,2],[2,0,3,0],[1,2,0,1]],[[2,2,2,1],[2,1,3,2],[2,0,3,0],[1,2,0,1]],[[1,2,2,1],[2,1,3,2],[2,0,3,0],[2,1,2,0]],[[1,2,2,1],[2,1,3,2],[3,0,3,0],[1,1,2,0]],[[1,2,2,1],[2,1,4,2],[2,0,3,0],[1,1,2,0]],[[1,2,2,1],[3,1,3,2],[2,0,3,0],[1,1,2,0]],[[1,2,2,2],[2,1,3,2],[2,0,3,0],[1,1,2,0]],[[1,2,3,1],[2,1,3,2],[2,0,3,0],[1,1,2,0]],[[1,3,2,1],[2,1,3,2],[2,0,3,0],[1,1,2,0]],[[2,2,2,1],[2,1,3,2],[2,0,3,0],[1,1,2,0]],[[1,2,2,1],[2,1,4,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,1],[3,1,3,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,2],[2,1,3,2],[2,0,3,0],[1,1,1,1]],[[1,2,3,1],[2,1,3,2],[2,0,3,0],[1,1,1,1]],[[1,3,2,1],[2,1,3,2],[2,0,3,0],[1,1,1,1]],[[2,2,2,1],[2,1,3,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,3,2],[3,0,3,0],[0,2,2,0]],[[1,2,2,1],[2,1,4,2],[2,0,3,0],[0,2,2,0]],[[1,2,2,1],[3,1,3,2],[2,0,3,0],[0,2,2,0]],[[1,2,2,2],[2,1,3,2],[2,0,3,0],[0,2,2,0]],[[1,2,3,1],[2,1,3,2],[2,0,3,0],[0,2,2,0]],[[1,3,2,1],[2,1,3,2],[2,0,3,0],[0,2,2,0]],[[2,2,2,1],[2,1,3,2],[2,0,3,0],[0,2,2,0]],[[1,2,2,1],[2,1,4,2],[2,0,3,0],[0,2,1,1]],[[1,2,2,1],[3,1,3,2],[2,0,3,0],[0,2,1,1]],[[1,2,2,2],[2,1,3,2],[2,0,3,0],[0,2,1,1]],[[1,2,3,1],[2,1,3,2],[2,0,3,0],[0,2,1,1]],[[1,3,2,1],[2,1,3,2],[2,0,3,0],[0,2,1,1]],[[2,2,2,1],[2,1,3,2],[2,0,3,0],[0,2,1,1]],[[0,1,2,1],[3,3,2,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,1],[2,4,2,1],[2,0,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,1],[3,0,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,1],[2,0,4,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,1],[2,0,3,0],[2,2,2,1]],[[0,1,2,1],[2,3,2,1],[2,0,3,0],[1,3,2,1]],[[0,1,2,1],[2,3,2,1],[2,0,3,0],[1,2,3,1]],[[0,1,2,1],[2,3,2,1],[2,0,3,0],[1,2,2,2]],[[0,1,2,1],[3,3,2,1],[2,0,3,1],[1,2,2,0]],[[0,1,2,1],[2,4,2,1],[2,0,3,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,1],[3,0,3,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,1],[2,0,4,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,1],[2,0,3,1],[2,2,2,0]],[[0,1,2,1],[2,3,2,1],[2,0,3,1],[1,3,2,0]],[[0,1,2,1],[2,3,2,1],[2,0,3,1],[1,2,3,0]],[[0,1,2,1],[3,3,2,1],[2,1,2,0],[1,2,2,1]],[[0,1,2,1],[2,4,2,1],[2,1,2,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,1],[3,1,2,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,1],[2,1,2,0],[2,2,2,1]],[[0,1,2,1],[2,3,2,1],[2,1,2,0],[1,3,2,1]],[[0,1,2,1],[2,3,2,1],[2,1,2,0],[1,2,3,1]],[[0,1,2,1],[2,3,2,1],[2,1,2,0],[1,2,2,2]],[[0,1,2,1],[3,3,2,1],[2,1,2,1],[1,2,2,0]],[[0,1,2,1],[2,4,2,1],[2,1,2,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,1],[3,1,2,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,1],[2,1,2,1],[2,2,2,0]],[[0,1,2,1],[2,3,2,1],[2,1,2,1],[1,3,2,0]],[[0,1,2,1],[2,3,2,1],[2,1,2,1],[1,2,3,0]],[[0,1,2,1],[3,3,2,1],[2,1,3,0],[1,2,1,1]],[[0,1,2,1],[2,4,2,1],[2,1,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,2,1],[3,1,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,2,1],[2,1,3,0],[2,2,1,1]],[[0,1,2,1],[2,3,2,1],[2,1,3,0],[1,3,1,1]],[[0,1,2,1],[3,3,2,1],[2,1,3,1],[1,2,0,1]],[[0,1,2,1],[2,4,2,1],[2,1,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,1],[3,1,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,1],[2,1,3,1],[2,2,0,1]],[[0,1,2,1],[2,3,2,1],[2,1,3,1],[1,3,0,1]],[[0,1,2,1],[3,3,2,1],[2,1,3,1],[1,2,1,0]],[[0,1,2,1],[2,4,2,1],[2,1,3,1],[1,2,1,0]],[[0,1,2,1],[2,3,2,1],[3,1,3,1],[1,2,1,0]],[[0,1,2,1],[2,3,2,1],[2,1,3,1],[2,2,1,0]],[[0,1,2,1],[2,3,2,1],[2,1,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,3,2],[2,0,2,0],[1,3,2,0]],[[1,2,2,1],[2,1,3,2],[2,0,2,0],[2,2,2,0]],[[1,2,2,1],[2,1,3,2],[3,0,2,0],[1,2,2,0]],[[1,2,2,1],[2,1,4,2],[2,0,2,0],[1,2,2,0]],[[1,2,2,1],[3,1,3,2],[2,0,2,0],[1,2,2,0]],[[1,2,2,2],[2,1,3,2],[2,0,2,0],[1,2,2,0]],[[1,2,3,1],[2,1,3,2],[2,0,2,0],[1,2,2,0]],[[1,3,2,1],[2,1,3,2],[2,0,2,0],[1,2,2,0]],[[2,2,2,1],[2,1,3,2],[2,0,2,0],[1,2,2,0]],[[1,2,2,1],[2,1,3,3],[2,0,1,2],[1,2,1,0]],[[1,2,2,1],[3,1,3,2],[2,0,1,2],[1,2,1,0]],[[0,1,2,1],[3,3,2,1],[2,2,2,0],[0,2,2,1]],[[0,1,2,1],[2,4,2,1],[2,2,2,0],[0,2,2,1]],[[0,1,2,1],[2,3,2,1],[3,2,2,0],[0,2,2,1]],[[0,1,2,1],[3,3,2,1],[2,2,2,0],[1,1,2,1]],[[0,1,2,1],[2,4,2,1],[2,2,2,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,1],[3,2,2,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,1],[2,2,2,0],[2,1,2,1]],[[0,1,2,1],[3,3,2,1],[2,2,2,1],[0,2,2,0]],[[0,1,2,1],[2,4,2,1],[2,2,2,1],[0,2,2,0]],[[0,1,2,1],[2,3,2,1],[3,2,2,1],[0,2,2,0]],[[0,1,2,1],[3,3,2,1],[2,2,2,1],[1,1,2,0]],[[0,1,2,1],[2,4,2,1],[2,2,2,1],[1,1,2,0]],[[0,1,2,1],[2,3,2,1],[3,2,2,1],[1,1,2,0]],[[0,1,2,1],[2,3,2,1],[2,2,2,1],[2,1,2,0]],[[1,2,2,2],[2,1,3,2],[2,0,1,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,2],[2,0,1,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,2],[2,0,1,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,2],[2,0,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,3,3],[2,0,1,2],[1,2,0,1]],[[1,2,2,1],[3,1,3,2],[2,0,1,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,2],[2,0,1,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,2],[2,0,1,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,2],[2,0,1,2],[1,2,0,1]],[[2,2,2,1],[2,1,3,2],[2,0,1,2],[1,2,0,1]],[[1,2,2,1],[2,1,3,3],[2,0,1,2],[1,1,2,0]],[[1,2,2,1],[3,1,3,2],[2,0,1,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,2],[2,0,1,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,2],[2,0,1,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,2],[2,0,1,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,2],[2,0,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,3,3],[2,0,1,2],[1,1,1,1]],[[1,2,2,1],[3,1,3,2],[2,0,1,2],[1,1,1,1]],[[1,2,2,2],[2,1,3,2],[2,0,1,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,2],[2,0,1,2],[1,1,1,1]],[[0,1,2,1],[3,3,2,1],[2,2,3,0],[0,1,2,1]],[[0,1,2,1],[2,4,2,1],[2,2,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,2,1],[3,2,3,0],[0,1,2,1]],[[0,1,2,1],[3,3,2,1],[2,2,3,0],[0,2,1,1]],[[0,1,2,1],[2,4,2,1],[2,2,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,2,1],[3,2,3,0],[0,2,1,1]],[[0,1,2,1],[3,3,2,1],[2,2,3,0],[1,0,2,1]],[[0,1,2,1],[2,4,2,1],[2,2,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,2,1],[3,2,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,2,1],[2,2,3,0],[2,0,2,1]],[[0,1,2,1],[3,3,2,1],[2,2,3,0],[1,1,1,1]],[[0,1,2,1],[2,4,2,1],[2,2,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,2,1],[3,2,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,2,1],[2,2,3,0],[2,1,1,1]],[[0,1,2,1],[3,3,2,1],[2,2,3,0],[1,2,0,1]],[[0,1,2,1],[2,4,2,1],[2,2,3,0],[1,2,0,1]],[[0,1,2,1],[2,3,2,1],[3,2,3,0],[1,2,0,1]],[[0,1,2,1],[2,3,2,1],[2,2,3,0],[2,2,0,1]],[[1,3,2,1],[2,1,3,2],[2,0,1,2],[1,1,1,1]],[[2,2,2,1],[2,1,3,2],[2,0,1,2],[1,1,1,1]],[[0,1,2,1],[3,3,2,1],[2,2,3,1],[0,1,1,1]],[[0,1,2,1],[2,4,2,1],[2,2,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,2,1],[3,2,3,1],[0,1,1,1]],[[0,1,2,1],[3,3,2,1],[2,2,3,1],[0,1,2,0]],[[0,1,2,1],[2,4,2,1],[2,2,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,2,1],[3,2,3,1],[0,1,2,0]],[[0,1,2,1],[3,3,2,1],[2,2,3,1],[0,2,0,1]],[[0,1,2,1],[2,4,2,1],[2,2,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,2,1],[3,2,3,1],[0,2,0,1]],[[0,1,2,1],[3,3,2,1],[2,2,3,1],[0,2,1,0]],[[0,1,2,1],[2,4,2,1],[2,2,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,2,1],[3,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,3,3],[2,0,1,2],[0,2,2,0]],[[0,1,2,1],[3,3,2,1],[2,2,3,1],[1,0,1,1]],[[0,1,2,1],[2,4,2,1],[2,2,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,2,1],[3,2,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,2,1],[2,2,3,1],[2,0,1,1]],[[0,1,2,1],[3,3,2,1],[2,2,3,1],[1,0,2,0]],[[0,1,2,1],[2,4,2,1],[2,2,3,1],[1,0,2,0]],[[0,1,2,1],[2,3,2,1],[3,2,3,1],[1,0,2,0]],[[0,1,2,1],[2,3,2,1],[2,2,3,1],[2,0,2,0]],[[0,1,2,1],[3,3,2,1],[2,2,3,1],[1,1,0,1]],[[0,1,2,1],[2,4,2,1],[2,2,3,1],[1,1,0,1]],[[0,1,2,1],[2,3,2,1],[3,2,3,1],[1,1,0,1]],[[0,1,2,1],[2,3,2,1],[2,2,3,1],[2,1,0,1]],[[0,1,2,1],[3,3,2,1],[2,2,3,1],[1,1,1,0]],[[0,1,2,1],[2,4,2,1],[2,2,3,1],[1,1,1,0]],[[0,1,2,1],[2,3,2,1],[3,2,3,1],[1,1,1,0]],[[0,1,2,1],[2,3,2,1],[2,2,3,1],[2,1,1,0]],[[1,2,2,1],[3,1,3,2],[2,0,1,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,2],[2,0,1,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,2],[2,0,1,2],[0,2,2,0]],[[1,3,2,1],[2,1,3,2],[2,0,1,2],[0,2,2,0]],[[0,1,2,1],[3,3,2,1],[2,2,3,1],[1,2,0,0]],[[0,1,2,1],[2,4,2,1],[2,2,3,1],[1,2,0,0]],[[0,1,2,1],[2,3,2,1],[3,2,3,1],[1,2,0,0]],[[0,1,2,1],[2,3,2,1],[2,2,3,1],[2,2,0,0]],[[2,2,2,1],[2,1,3,2],[2,0,1,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,3],[2,0,1,2],[0,2,1,1]],[[1,2,2,1],[3,1,3,2],[2,0,1,2],[0,2,1,1]],[[1,2,2,2],[2,1,3,2],[2,0,1,2],[0,2,1,1]],[[1,2,3,1],[2,1,3,2],[2,0,1,2],[0,2,1,1]],[[1,3,2,1],[2,1,3,2],[2,0,1,2],[0,2,1,1]],[[2,2,2,1],[2,1,3,2],[2,0,1,2],[0,2,1,1]],[[1,2,2,1],[2,1,3,3],[2,0,0,2],[1,2,2,0]],[[1,2,2,1],[3,1,3,2],[2,0,0,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,2],[2,0,0,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,2],[2,0,0,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,2],[2,0,0,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,2],[2,0,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,3,3],[2,0,0,2],[1,2,1,1]],[[1,2,2,1],[3,1,3,2],[2,0,0,2],[1,2,1,1]],[[1,2,2,2],[2,1,3,2],[2,0,0,2],[1,2,1,1]],[[1,2,3,1],[2,1,3,2],[2,0,0,2],[1,2,1,1]],[[1,3,2,1],[2,1,3,2],[2,0,0,2],[1,2,1,1]],[[2,2,2,1],[2,1,3,2],[2,0,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,3,3],[2,0,0,2],[1,1,2,1]],[[1,2,2,1],[3,1,3,2],[2,0,0,2],[1,1,2,1]],[[1,2,2,2],[2,1,3,2],[2,0,0,2],[1,1,2,1]],[[1,2,3,1],[2,1,3,2],[2,0,0,2],[1,1,2,1]],[[1,3,2,1],[2,1,3,2],[2,0,0,2],[1,1,2,1]],[[2,2,2,1],[2,1,3,2],[2,0,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,3,3],[2,0,0,2],[0,2,2,1]],[[1,2,2,1],[3,1,3,2],[2,0,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,3,2],[2,0,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,3,2],[2,0,0,2],[0,2,2,1]],[[1,3,2,1],[2,1,3,2],[2,0,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,3,2],[2,0,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,3,3],[2,0,0,1],[1,2,2,1]],[[1,2,2,1],[3,1,3,2],[2,0,0,1],[1,2,2,1]],[[1,2,2,2],[2,1,3,2],[2,0,0,1],[1,2,2,1]],[[1,2,3,1],[2,1,3,2],[2,0,0,1],[1,2,2,1]],[[1,3,2,1],[2,1,3,2],[2,0,0,1],[1,2,2,1]],[[2,2,2,1],[2,1,3,2],[2,0,0,1],[1,2,2,1]],[[1,2,2,1],[2,1,4,2],[1,3,3,0],[1,1,0,0]],[[1,2,2,1],[3,1,3,2],[1,3,3,0],[1,1,0,0]],[[1,2,2,2],[2,1,3,2],[1,3,3,0],[1,1,0,0]],[[1,2,3,1],[2,1,3,2],[1,3,3,0],[1,1,0,0]],[[1,3,2,1],[2,1,3,2],[1,3,3,0],[1,1,0,0]],[[2,2,2,1],[2,1,3,2],[1,3,3,0],[1,1,0,0]],[[1,2,2,1],[2,1,4,2],[1,3,3,0],[0,2,0,0]],[[1,2,2,1],[3,1,3,2],[1,3,3,0],[0,2,0,0]],[[1,2,2,2],[2,1,3,2],[1,3,3,0],[0,2,0,0]],[[1,2,3,1],[2,1,3,2],[1,3,3,0],[0,2,0,0]],[[1,3,2,1],[2,1,3,2],[1,3,3,0],[0,2,0,0]],[[2,2,2,1],[2,1,3,2],[1,3,3,0],[0,2,0,0]],[[1,2,2,1],[2,1,4,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,1],[3,1,3,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,2],[2,1,3,2],[1,3,3,0],[0,0,2,0]],[[1,2,3,1],[2,1,3,2],[1,3,3,0],[0,0,2,0]],[[1,3,2,1],[2,1,3,2],[1,3,3,0],[0,0,2,0]],[[2,2,2,1],[2,1,3,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,1],[2,1,4,2],[1,3,3,0],[0,0,1,1]],[[1,2,2,1],[3,1,3,2],[1,3,3,0],[0,0,1,1]],[[1,2,2,2],[2,1,3,2],[1,3,3,0],[0,0,1,1]],[[1,2,3,1],[2,1,3,2],[1,3,3,0],[0,0,1,1]],[[1,3,2,1],[2,1,3,2],[1,3,3,0],[0,0,1,1]],[[2,2,2,1],[2,1,3,2],[1,3,3,0],[0,0,1,1]],[[1,2,2,1],[2,1,3,3],[1,3,2,2],[0,0,0,1]],[[1,2,2,2],[2,1,3,2],[1,3,2,2],[0,0,0,1]],[[1,2,3,1],[2,1,3,2],[1,3,2,2],[0,0,0,1]],[[1,3,2,1],[2,1,3,2],[1,3,2,2],[0,0,0,1]],[[2,2,2,1],[2,1,3,2],[1,3,2,2],[0,0,0,1]],[[0,1,2,1],[3,3,2,1],[2,3,3,0],[1,0,1,1]],[[0,1,2,1],[2,4,2,1],[2,3,3,0],[1,0,1,1]],[[0,1,2,1],[2,3,2,1],[3,3,3,0],[1,0,1,1]],[[0,1,2,1],[3,3,2,1],[2,3,3,1],[1,0,0,1]],[[0,1,2,1],[2,4,2,1],[2,3,3,1],[1,0,0,1]],[[0,1,2,1],[2,3,2,1],[3,3,3,1],[1,0,0,1]],[[0,1,2,1],[3,3,2,1],[2,3,3,1],[1,0,1,0]],[[0,1,2,1],[2,4,2,1],[2,3,3,1],[1,0,1,0]],[[0,1,2,1],[2,3,2,1],[3,3,3,1],[1,0,1,0]],[[1,2,2,1],[2,1,4,2],[1,3,2,0],[1,2,0,0]],[[1,2,2,1],[3,1,3,2],[1,3,2,0],[1,2,0,0]],[[1,2,2,2],[2,1,3,2],[1,3,2,0],[1,2,0,0]],[[1,2,3,1],[2,1,3,2],[1,3,2,0],[1,2,0,0]],[[1,3,2,1],[2,1,3,2],[1,3,2,0],[1,2,0,0]],[[2,2,2,1],[2,1,3,2],[1,3,2,0],[1,2,0,0]],[[1,2,2,1],[2,1,4,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,1],[3,1,3,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,2],[2,1,3,2],[1,3,2,0],[1,1,1,0]],[[1,2,3,1],[2,1,3,2],[1,3,2,0],[1,1,1,0]],[[1,3,2,1],[2,1,3,2],[1,3,2,0],[1,1,1,0]],[[2,2,2,1],[2,1,3,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,1],[2,1,4,2],[1,3,2,0],[1,1,0,1]],[[1,2,2,1],[3,1,3,2],[1,3,2,0],[1,1,0,1]],[[1,2,2,2],[2,1,3,2],[1,3,2,0],[1,1,0,1]],[[1,2,3,1],[2,1,3,2],[1,3,2,0],[1,1,0,1]],[[1,3,2,1],[2,1,3,2],[1,3,2,0],[1,1,0,1]],[[2,2,2,1],[2,1,3,2],[1,3,2,0],[1,1,0,1]],[[1,2,2,1],[2,1,4,2],[1,3,2,0],[1,0,2,0]],[[1,2,2,1],[3,1,3,2],[1,3,2,0],[1,0,2,0]],[[1,2,2,2],[2,1,3,2],[1,3,2,0],[1,0,2,0]],[[1,2,3,1],[2,1,3,2],[1,3,2,0],[1,0,2,0]],[[1,3,2,1],[2,1,3,2],[1,3,2,0],[1,0,2,0]],[[2,2,2,1],[2,1,3,2],[1,3,2,0],[1,0,2,0]],[[1,2,2,1],[2,1,4,2],[1,3,2,0],[1,0,1,1]],[[1,2,2,1],[3,1,3,2],[1,3,2,0],[1,0,1,1]],[[1,2,2,2],[2,1,3,2],[1,3,2,0],[1,0,1,1]],[[1,2,3,1],[2,1,3,2],[1,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,1,3,2],[1,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,1,3,2],[1,3,2,0],[1,0,1,1]],[[1,2,2,1],[2,1,4,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,1],[3,1,3,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,2],[2,1,3,2],[1,3,2,0],[0,2,1,0]],[[1,2,3,1],[2,1,3,2],[1,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,1,3,2],[1,3,2,0],[0,2,1,0]],[[2,2,2,1],[2,1,3,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,1],[2,1,4,2],[1,3,2,0],[0,2,0,1]],[[1,2,2,1],[3,1,3,2],[1,3,2,0],[0,2,0,1]],[[1,2,2,2],[2,1,3,2],[1,3,2,0],[0,2,0,1]],[[1,2,3,1],[2,1,3,2],[1,3,2,0],[0,2,0,1]],[[1,3,2,1],[2,1,3,2],[1,3,2,0],[0,2,0,1]],[[2,2,2,1],[2,1,3,2],[1,3,2,0],[0,2,0,1]],[[1,2,2,1],[2,1,4,2],[1,3,2,0],[0,1,2,0]],[[1,2,2,1],[3,1,3,2],[1,3,2,0],[0,1,2,0]],[[1,2,2,2],[2,1,3,2],[1,3,2,0],[0,1,2,0]],[[1,2,3,1],[2,1,3,2],[1,3,2,0],[0,1,2,0]],[[1,3,2,1],[2,1,3,2],[1,3,2,0],[0,1,2,0]],[[2,2,2,1],[2,1,3,2],[1,3,2,0],[0,1,2,0]],[[1,2,2,1],[2,1,4,2],[1,3,2,0],[0,1,1,1]],[[1,2,2,1],[3,1,3,2],[1,3,2,0],[0,1,1,1]],[[1,2,2,2],[2,1,3,2],[1,3,2,0],[0,1,1,1]],[[1,2,3,1],[2,1,3,2],[1,3,2,0],[0,1,1,1]],[[1,3,2,1],[2,1,3,2],[1,3,2,0],[0,1,1,1]],[[2,2,2,1],[2,1,3,2],[1,3,2,0],[0,1,1,1]],[[1,2,2,1],[2,1,3,3],[1,3,1,2],[0,0,2,0]],[[1,2,2,2],[2,1,3,2],[1,3,1,2],[0,0,2,0]],[[1,2,3,1],[2,1,3,2],[1,3,1,2],[0,0,2,0]],[[1,3,2,1],[2,1,3,2],[1,3,1,2],[0,0,2,0]],[[2,2,2,1],[2,1,3,2],[1,3,1,2],[0,0,2,0]],[[1,2,2,1],[2,1,3,3],[1,3,1,2],[0,0,1,1]],[[1,2,2,2],[2,1,3,2],[1,3,1,2],[0,0,1,1]],[[1,2,3,1],[2,1,3,2],[1,3,1,2],[0,0,1,1]],[[1,3,2,1],[2,1,3,2],[1,3,1,2],[0,0,1,1]],[[2,2,2,1],[2,1,3,2],[1,3,1,2],[0,0,1,1]],[[1,2,2,1],[2,1,4,2],[1,3,1,0],[1,1,2,0]],[[1,2,2,1],[3,1,3,2],[1,3,1,0],[1,1,2,0]],[[1,2,2,2],[2,1,3,2],[1,3,1,0],[1,1,2,0]],[[1,2,3,1],[2,1,3,2],[1,3,1,0],[1,1,2,0]],[[1,3,2,1],[2,1,3,2],[1,3,1,0],[1,1,2,0]],[[2,2,2,1],[2,1,3,2],[1,3,1,0],[1,1,2,0]],[[1,2,2,1],[2,1,4,2],[1,3,1,0],[0,2,2,0]],[[0,1,3,1],[2,3,2,2],[0,0,2,2],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[0,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[0,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,2],[0,0,2,3],[1,2,2,1]],[[0,1,2,1],[2,3,2,2],[0,0,2,2],[1,2,3,1]],[[0,1,2,1],[2,3,2,2],[0,0,2,2],[1,2,2,2]],[[0,1,3,1],[2,3,2,2],[0,0,3,2],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[0,0,3,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[0,0,3,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[0,0,3,3],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[0,0,3,2],[0,2,2,2]],[[0,1,3,1],[2,3,2,2],[0,0,3,2],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[0,0,3,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[0,0,3,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,2],[0,0,3,3],[1,1,2,1]],[[0,1,2,1],[2,3,2,2],[0,0,3,2],[1,1,2,2]],[[0,1,3,1],[2,3,2,2],[0,0,3,2],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[0,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[0,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[0,0,3,3],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[0,0,3,2],[1,2,1,2]],[[0,1,3,1],[2,3,2,2],[0,0,3,2],[1,2,2,0]],[[0,1,2,2],[2,3,2,2],[0,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,3],[0,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,2],[0,0,3,3],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[0,1,1,2],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[0,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[0,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,2],[0,1,1,3],[1,2,2,1]],[[0,1,2,1],[2,3,2,2],[0,1,1,2],[2,2,2,1]],[[0,1,2,1],[2,3,2,2],[0,1,1,2],[1,3,2,1]],[[0,1,2,1],[2,3,2,2],[0,1,1,2],[1,2,3,1]],[[0,1,2,1],[2,3,2,2],[0,1,1,2],[1,2,2,2]],[[0,1,3,1],[2,3,2,2],[0,1,2,2],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[0,1,2,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[0,1,2,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[0,1,2,3],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[0,1,2,2],[1,2,1,2]],[[0,1,3,1],[2,3,2,2],[0,1,2,2],[1,2,2,0]],[[0,1,2,2],[2,3,2,2],[0,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,3],[0,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,2],[0,1,2,3],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[0,1,3,0],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[0,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[0,1,3,0],[1,2,2,1]],[[0,1,3,1],[2,3,2,2],[0,1,3,1],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[0,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[0,1,3,1],[1,2,1,1]],[[0,1,3,1],[2,3,2,2],[0,1,3,1],[1,2,2,0]],[[0,1,2,2],[2,3,2,2],[0,1,3,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,3],[0,1,3,1],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[0,1,3,2],[1,0,2,1]],[[0,1,2,2],[2,3,2,2],[0,1,3,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,3],[0,1,3,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[0,1,3,3],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[0,1,3,2],[1,0,2,2]],[[0,1,3,1],[2,3,2,2],[0,1,3,2],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[0,1,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[0,1,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[0,1,3,3],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[0,1,3,2],[1,1,1,2]],[[0,1,3,1],[2,3,2,2],[0,1,3,2],[1,1,2,0]],[[0,1,2,2],[2,3,2,2],[0,1,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,3],[0,1,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,1],[3,1,3,2],[1,3,1,0],[0,2,2,0]],[[1,2,2,2],[2,1,3,2],[1,3,1,0],[0,2,2,0]],[[1,2,3,1],[2,1,3,2],[1,3,1,0],[0,2,2,0]],[[1,3,2,1],[2,1,3,2],[1,3,1,0],[0,2,2,0]],[[2,2,2,1],[2,1,3,2],[1,3,1,0],[0,2,2,0]],[[0,1,3,1],[2,3,2,2],[0,2,0,2],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[0,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[0,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,2],[0,2,0,3],[1,2,2,1]],[[0,1,2,1],[2,3,2,2],[0,2,0,2],[2,2,2,1]],[[0,1,2,1],[2,3,2,2],[0,2,0,2],[1,3,2,1]],[[0,1,2,1],[2,3,2,2],[0,2,0,2],[1,2,3,1]],[[0,1,2,1],[2,3,2,2],[0,2,0,2],[1,2,2,2]],[[0,1,3,1],[2,3,2,2],[0,2,1,2],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[0,2,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[0,2,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,2],[0,2,1,3],[1,1,2,1]],[[0,1,2,1],[2,3,2,2],[0,2,1,2],[1,1,3,1]],[[0,1,2,1],[2,3,2,2],[0,2,1,2],[1,1,2,2]],[[0,1,3,1],[2,3,2,2],[0,2,2,2],[1,0,2,1]],[[0,1,2,2],[2,3,2,2],[0,2,2,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,3],[0,2,2,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[0,2,2,3],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[0,2,2,2],[1,0,2,2]],[[0,1,3,1],[2,3,2,2],[0,2,2,2],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[0,2,2,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[0,2,2,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[0,2,2,3],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[0,2,2,2],[1,1,1,2]],[[0,1,3,1],[2,3,2,2],[0,2,2,2],[1,1,2,0]],[[0,1,2,2],[2,3,2,2],[0,2,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,3],[0,2,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,2],[0,2,2,3],[1,1,2,0]],[[0,1,3,1],[2,3,2,2],[0,2,2,2],[1,2,0,1]],[[0,1,2,2],[2,3,2,2],[0,2,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,3],[0,2,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,2],[0,2,2,3],[1,2,0,1]],[[0,1,2,1],[2,3,2,2],[0,2,2,2],[1,2,0,2]],[[0,1,3,1],[2,3,2,2],[0,2,2,2],[1,2,1,0]],[[0,1,2,2],[2,3,2,2],[0,2,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,3],[0,2,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,2],[0,2,2,3],[1,2,1,0]],[[0,1,3,1],[2,3,2,2],[0,2,3,0],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[0,2,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[0,2,3,0],[1,1,2,1]],[[0,1,3,1],[2,3,2,2],[0,2,3,0],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[0,2,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[0,2,3,0],[1,2,1,1]],[[0,1,3,1],[2,3,2,2],[0,2,3,1],[1,0,2,1]],[[0,1,2,2],[2,3,2,2],[0,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,2,3],[0,2,3,1],[1,0,2,1]],[[0,1,3,1],[2,3,2,2],[0,2,3,1],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[0,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[0,2,3,1],[1,1,1,1]],[[0,1,3,1],[2,3,2,2],[0,2,3,1],[1,1,2,0]],[[0,1,2,2],[2,3,2,2],[0,2,3,1],[1,1,2,0]],[[0,1,2,1],[2,3,2,3],[0,2,3,1],[1,1,2,0]],[[0,1,3,1],[2,3,2,2],[0,2,3,1],[1,2,0,1]],[[0,1,2,2],[2,3,2,2],[0,2,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,3],[0,2,3,1],[1,2,0,1]],[[0,1,3,1],[2,3,2,2],[0,2,3,1],[1,2,1,0]],[[0,1,2,2],[2,3,2,2],[0,2,3,1],[1,2,1,0]],[[0,1,2,1],[2,3,2,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,3,3],[1,3,0,2],[1,2,0,0]],[[1,2,2,1],[3,1,3,2],[1,3,0,2],[1,2,0,0]],[[1,2,2,2],[2,1,3,2],[1,3,0,2],[1,2,0,0]],[[1,2,3,1],[2,1,3,2],[1,3,0,2],[1,2,0,0]],[[1,3,2,1],[2,1,3,2],[1,3,0,2],[1,2,0,0]],[[2,2,2,1],[2,1,3,2],[1,3,0,2],[1,2,0,0]],[[0,1,3,1],[2,3,2,2],[0,2,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,2,2],[0,2,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,3],[0,2,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[0,2,3,3],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[0,2,3,2],[0,0,2,2]],[[0,1,3,1],[2,3,2,2],[0,2,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[0,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[0,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[0,2,3,3],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[0,2,3,2],[0,1,1,2]],[[0,1,3,1],[2,3,2,2],[0,2,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[0,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[0,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,2],[0,2,3,3],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[0,2,3,2],[1,1,0,1]],[[0,1,2,2],[2,3,2,2],[0,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,3],[0,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,1,3,3],[1,3,0,2],[1,1,1,0]],[[1,2,2,1],[3,1,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,2,2],[2,1,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,3,1],[2,1,3,2],[1,3,0,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,2],[1,3,0,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,1,3,3],[1,3,0,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,2],[1,3,0,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,2],[1,3,0,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,2],[1,3,0,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,2],[1,3,0,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,2],[1,3,0,2],[1,1,0,1]],[[0,1,3,1],[2,3,2,2],[0,3,0,1],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[0,3,0,1],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[0,3,0,1],[1,2,2,1]],[[0,1,3,1],[2,3,2,2],[0,3,0,2],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[0,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[0,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,2],[0,3,0,3],[1,1,2,1]],[[0,1,2,1],[2,3,2,2],[0,3,0,2],[1,1,3,1]],[[0,1,2,1],[2,3,2,2],[0,3,0,2],[1,1,2,2]],[[0,1,3,1],[2,3,2,2],[0,3,0,2],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[0,3,0,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[0,3,0,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[0,3,0,3],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[0,3,0,2],[1,2,1,2]],[[0,1,3,1],[2,3,2,2],[0,3,0,2],[1,2,2,0]],[[0,1,2,2],[2,3,2,2],[0,3,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,3],[0,3,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,2],[0,3,0,3],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[0,3,1,0],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[0,3,1,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[0,3,1,0],[1,2,2,1]],[[0,1,3,1],[2,3,2,2],[0,3,1,1],[1,2,2,0]],[[0,1,2,2],[2,3,2,2],[0,3,1,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,3],[0,3,1,1],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[0,3,1,2],[0,1,2,1]],[[0,1,2,2],[2,3,2,2],[0,3,1,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,3],[0,3,1,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[0,3,1,3],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[0,3,1,2],[0,1,3,1]],[[0,1,2,1],[2,3,2,2],[0,3,1,2],[0,1,2,2]],[[0,1,3,1],[2,3,2,2],[0,3,1,2],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[0,3,1,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[0,3,1,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[0,3,1,3],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[0,3,1,2],[1,1,1,2]],[[0,1,3,1],[2,3,2,2],[0,3,1,2],[1,1,2,0]],[[0,1,2,2],[2,3,2,2],[0,3,1,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,3],[0,3,1,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,2],[0,3,1,3],[1,1,2,0]],[[0,1,3,1],[2,3,2,2],[0,3,1,2],[1,2,0,1]],[[0,1,2,2],[2,3,2,2],[0,3,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,3],[0,3,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,2],[0,3,1,3],[1,2,0,1]],[[0,1,2,1],[2,3,2,2],[0,3,1,2],[1,2,0,2]],[[0,1,3,1],[2,3,2,2],[0,3,1,2],[1,2,1,0]],[[0,1,2,2],[2,3,2,2],[0,3,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,3],[0,3,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,2],[0,3,1,3],[1,2,1,0]],[[1,2,2,1],[2,1,3,3],[1,3,0,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,2],[1,3,0,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,2],[1,3,0,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,2],[1,3,0,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,2],[1,3,0,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,2],[1,3,0,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,3],[1,3,0,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,2],[1,3,0,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,2],[1,3,0,2],[1,0,1,1]],[[0,1,3,1],[2,3,2,2],[0,3,2,0],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[0,3,2,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[0,3,2,0],[1,1,2,1]],[[0,1,3,1],[2,3,2,2],[0,3,2,0],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[0,3,2,0],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[0,3,2,0],[1,2,1,1]],[[0,1,3,1],[2,3,2,2],[0,3,2,1],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[0,3,2,1],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[0,3,2,1],[1,1,1,1]],[[0,1,3,1],[2,3,2,2],[0,3,2,1],[1,1,2,0]],[[0,1,2,2],[2,3,2,2],[0,3,2,1],[1,1,2,0]],[[0,1,2,1],[2,3,2,3],[0,3,2,1],[1,1,2,0]],[[0,1,3,1],[2,3,2,2],[0,3,2,1],[1,2,0,1]],[[0,1,2,2],[2,3,2,2],[0,3,2,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,3],[0,3,2,1],[1,2,0,1]],[[0,1,3,1],[2,3,2,2],[0,3,2,1],[1,2,1,0]],[[0,1,2,2],[2,3,2,2],[0,3,2,1],[1,2,1,0]],[[0,1,2,1],[2,3,2,3],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[2,1,3,2],[1,3,0,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,2],[1,3,0,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,2],[1,3,0,2],[1,0,1,1]],[[0,1,3,1],[2,3,2,2],[0,3,2,2],[0,0,2,1]],[[0,1,2,2],[2,3,2,2],[0,3,2,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,3],[0,3,2,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[0,3,2,3],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[0,3,2,2],[0,0,2,2]],[[0,1,3,1],[2,3,2,2],[0,3,2,2],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[0,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[0,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[0,3,2,3],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[0,3,2,2],[0,1,1,2]],[[0,1,3,1],[2,3,2,2],[0,3,2,2],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[0,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[0,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,2],[0,3,2,3],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[0,3,2,2],[0,2,0,1]],[[0,1,2,2],[2,3,2,2],[0,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,3],[0,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,2],[0,3,2,3],[0,2,0,1]],[[0,1,2,1],[2,3,2,2],[0,3,2,2],[0,2,0,2]],[[0,1,3,1],[2,3,2,2],[0,3,2,2],[0,2,1,0]],[[0,1,2,2],[2,3,2,2],[0,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,3],[0,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,1,3,3],[1,3,0,2],[0,2,1,0]],[[1,2,2,1],[3,1,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,2],[1,3,0,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,2],[1,3,0,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,3],[1,3,0,2],[0,2,0,1]],[[1,2,2,1],[3,1,3,2],[1,3,0,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,2],[1,3,0,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,2],[1,3,0,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,2],[1,3,0,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,2],[1,3,0,2],[0,2,0,1]],[[1,2,2,1],[2,1,3,3],[1,3,0,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,2],[1,3,0,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,2],[1,3,0,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,2],[1,3,0,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,2],[1,3,0,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,2],[1,3,0,2],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[0,3,3,0],[0,1,2,1]],[[0,1,2,2],[2,3,2,2],[0,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,2,3],[0,3,3,0],[0,1,2,1]],[[0,1,3,1],[2,3,2,2],[0,3,3,0],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[0,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,3,3],[1,3,0,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,2],[1,3,0,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,2],[1,3,0,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,2],[1,3,0,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,2],[1,3,0,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,2],[1,3,0,2],[0,1,1,1]],[[0,1,3,1],[2,3,2,2],[0,3,3,1],[0,0,2,1]],[[0,1,2,2],[2,3,2,2],[0,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,3,2,3],[0,3,3,1],[0,0,2,1]],[[0,1,3,1],[2,3,2,2],[0,3,3,1],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[0,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[0,3,3,1],[0,1,1,1]],[[0,1,3,1],[2,3,2,2],[0,3,3,1],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[0,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[0,3,3,1],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[0,3,3,1],[0,2,0,1]],[[0,1,2,2],[2,3,2,2],[0,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,2,3],[0,3,3,1],[0,2,0,1]],[[0,1,3,1],[2,3,2,2],[0,3,3,1],[0,2,1,0]],[[0,1,2,2],[2,3,2,2],[0,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,2,3],[0,3,3,1],[0,2,1,0]],[[0,1,3,1],[2,3,2,2],[0,3,3,1],[1,2,0,0]],[[0,1,2,2],[2,3,2,2],[0,3,3,1],[1,2,0,0]],[[0,1,2,1],[2,3,2,3],[0,3,3,1],[1,2,0,0]],[[0,1,3,1],[2,3,2,2],[0,3,3,2],[0,1,0,1]],[[0,1,2,2],[2,3,2,2],[0,3,3,2],[0,1,0,1]],[[0,1,2,1],[2,3,2,3],[0,3,3,2],[0,1,0,1]],[[0,1,2,1],[2,3,2,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,1,4,2],[1,2,3,0],[1,1,1,0]],[[1,2,2,1],[3,1,3,2],[1,2,3,0],[1,1,1,0]],[[1,2,2,2],[2,1,3,2],[1,2,3,0],[1,1,1,0]],[[1,2,3,1],[2,1,3,2],[1,2,3,0],[1,1,1,0]],[[1,3,2,1],[2,1,3,2],[1,2,3,0],[1,1,1,0]],[[2,2,2,1],[2,1,3,2],[1,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,1,4,2],[1,2,3,0],[1,1,0,1]],[[1,2,2,1],[3,1,3,2],[1,2,3,0],[1,1,0,1]],[[1,2,2,2],[2,1,3,2],[1,2,3,0],[1,1,0,1]],[[1,2,3,1],[2,1,3,2],[1,2,3,0],[1,1,0,1]],[[1,3,2,1],[2,1,3,2],[1,2,3,0],[1,1,0,1]],[[2,2,2,1],[2,1,3,2],[1,2,3,0],[1,1,0,1]],[[1,2,2,1],[2,1,4,2],[1,2,3,0],[1,0,2,0]],[[1,2,2,1],[3,1,3,2],[1,2,3,0],[1,0,2,0]],[[1,2,2,2],[2,1,3,2],[1,2,3,0],[1,0,2,0]],[[1,2,3,1],[2,1,3,2],[1,2,3,0],[1,0,2,0]],[[1,3,2,1],[2,1,3,2],[1,2,3,0],[1,0,2,0]],[[2,2,2,1],[2,1,3,2],[1,2,3,0],[1,0,2,0]],[[1,2,2,1],[2,1,4,2],[1,2,3,0],[1,0,1,1]],[[1,2,2,1],[3,1,3,2],[1,2,3,0],[1,0,1,1]],[[1,2,2,2],[2,1,3,2],[1,2,3,0],[1,0,1,1]],[[1,2,3,1],[2,1,3,2],[1,2,3,0],[1,0,1,1]],[[1,3,2,1],[2,1,3,2],[1,2,3,0],[1,0,1,1]],[[2,2,2,1],[2,1,3,2],[1,2,3,0],[1,0,1,1]],[[0,1,3,1],[2,3,2,2],[1,0,1,2],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[1,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[1,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,0,1,3],[1,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,0,1,2],[2,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,0,1,2],[1,3,2,1]],[[0,1,2,1],[2,3,2,2],[1,0,1,2],[1,2,3,1]],[[0,1,2,1],[2,3,2,2],[1,0,1,2],[1,2,2,2]],[[0,1,3,1],[2,3,2,2],[1,0,2,2],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[1,0,2,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[1,0,2,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,0,2,3],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,0,2,2],[0,2,3,1]],[[0,1,2,1],[2,3,2,2],[1,0,2,2],[0,2,2,2]],[[0,1,3,1],[2,3,2,2],[1,0,2,2],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[1,0,2,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[1,0,2,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[1,0,2,3],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[1,0,2,2],[1,2,1,2]],[[0,1,3,1],[2,3,2,2],[1,0,2,2],[1,2,2,0]],[[0,1,2,2],[2,3,2,2],[1,0,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,3],[1,0,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,2],[1,0,2,3],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[1,0,3,0],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[1,0,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[1,0,3,0],[1,2,2,1]],[[0,1,3,1],[2,3,2,2],[1,0,3,1],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[1,0,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[1,0,3,1],[1,2,1,1]],[[0,1,3,1],[2,3,2,2],[1,0,3,1],[1,2,2,0]],[[0,1,2,2],[2,3,2,2],[1,0,3,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,3],[1,0,3,1],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[1,0,3,2],[0,1,2,1]],[[0,1,2,2],[2,3,2,2],[1,0,3,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,3],[1,0,3,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[1,0,3,3],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[1,0,3,2],[0,1,2,2]],[[0,1,3,1],[2,3,2,2],[1,0,3,2],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[1,0,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[1,0,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,2,2],[1,0,3,3],[0,2,1,1]],[[0,1,2,1],[2,3,2,2],[1,0,3,2],[0,2,1,2]],[[0,1,3,1],[2,3,2,2],[1,0,3,2],[0,2,2,0]],[[0,1,2,2],[2,3,2,2],[1,0,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,3],[1,0,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,2],[1,0,3,3],[0,2,2,0]],[[0,1,3,1],[2,3,2,2],[1,1,0,2],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[1,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[1,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,1,0,3],[1,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,1,0,2],[2,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,1,0,2],[1,3,2,1]],[[0,1,2,1],[2,3,2,2],[1,1,0,2],[1,2,3,1]],[[0,1,2,1],[2,3,2,2],[1,1,0,2],[1,2,2,2]],[[0,1,3,1],[2,3,2,2],[1,1,1,2],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[1,1,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[1,1,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,1,1,3],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,1,1,2],[0,3,2,1]],[[0,1,2,1],[2,3,2,2],[1,1,1,2],[0,2,3,1]],[[0,1,2,1],[2,3,2,2],[1,1,1,2],[0,2,2,2]],[[0,1,3,1],[2,3,2,2],[1,1,2,2],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[1,1,2,2],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[1,1,2,2],[0,2,1,1]],[[0,1,2,1],[2,3,2,2],[1,1,2,3],[0,2,1,1]],[[0,1,2,1],[2,3,2,2],[1,1,2,2],[0,2,1,2]],[[0,1,3,1],[2,3,2,2],[1,1,2,2],[0,2,2,0]],[[0,1,2,2],[2,3,2,2],[1,1,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,3],[1,1,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,1],[2,1,4,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,1],[3,1,3,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,2],[2,1,3,2],[1,2,3,0],[0,2,1,0]],[[1,2,3,1],[2,1,3,2],[1,2,3,0],[0,2,1,0]],[[0,1,3,1],[2,3,2,2],[1,1,3,0],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[1,1,3,0],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[1,1,3,0],[0,2,2,1]],[[0,1,3,1],[2,3,2,2],[1,1,3,1],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[1,1,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[1,1,3,1],[0,2,1,1]],[[0,1,3,1],[2,3,2,2],[1,1,3,1],[0,2,2,0]],[[0,1,2,2],[2,3,2,2],[1,1,3,1],[0,2,2,0]],[[0,1,2,1],[2,3,2,3],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,1,3,2],[1,2,3,0],[0,2,1,0]],[[2,2,2,1],[2,1,3,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,4,2],[1,2,3,0],[0,2,0,1]],[[1,2,2,1],[3,1,3,2],[1,2,3,0],[0,2,0,1]],[[1,2,2,2],[2,1,3,2],[1,2,3,0],[0,2,0,1]],[[1,2,3,1],[2,1,3,2],[1,2,3,0],[0,2,0,1]],[[1,3,2,1],[2,1,3,2],[1,2,3,0],[0,2,0,1]],[[2,2,2,1],[2,1,3,2],[1,2,3,0],[0,2,0,1]],[[0,1,3,1],[2,3,2,2],[1,1,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,2,2],[1,1,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,3],[1,1,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[1,1,3,3],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[1,1,3,2],[0,0,2,2]],[[0,1,3,1],[2,3,2,2],[1,1,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[1,1,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[1,1,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[1,1,3,3],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[1,1,3,2],[0,1,1,2]],[[0,1,3,1],[2,3,2,2],[1,1,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[1,1,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[1,1,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,2],[1,1,3,3],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[1,1,3,2],[1,0,1,1]],[[0,1,2,2],[2,3,2,2],[1,1,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,3],[1,1,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[1,1,3,3],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[1,1,3,2],[1,0,1,2]],[[0,1,3,1],[2,3,2,2],[1,1,3,2],[1,0,2,0]],[[0,1,2,2],[2,3,2,2],[1,1,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,3],[1,1,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,4,2],[1,2,3,0],[0,1,2,0]],[[1,2,2,1],[3,1,3,2],[1,2,3,0],[0,1,2,0]],[[1,2,2,2],[2,1,3,2],[1,2,3,0],[0,1,2,0]],[[1,2,3,1],[2,1,3,2],[1,2,3,0],[0,1,2,0]],[[1,3,2,1],[2,1,3,2],[1,2,3,0],[0,1,2,0]],[[2,2,2,1],[2,1,3,2],[1,2,3,0],[0,1,2,0]],[[1,2,2,1],[2,1,4,2],[1,2,3,0],[0,1,1,1]],[[1,2,2,1],[3,1,3,2],[1,2,3,0],[0,1,1,1]],[[1,2,2,2],[2,1,3,2],[1,2,3,0],[0,1,1,1]],[[1,2,3,1],[2,1,3,2],[1,2,3,0],[0,1,1,1]],[[1,3,2,1],[2,1,3,2],[1,2,3,0],[0,1,1,1]],[[2,2,2,1],[2,1,3,2],[1,2,3,0],[0,1,1,1]],[[1,2,2,1],[2,1,4,2],[1,2,3,0],[0,0,2,1]],[[1,2,2,2],[2,1,3,2],[1,2,3,0],[0,0,2,1]],[[1,2,3,1],[2,1,3,2],[1,2,3,0],[0,0,2,1]],[[1,3,2,1],[2,1,3,2],[1,2,3,0],[0,0,2,1]],[[2,2,2,1],[2,1,3,2],[1,2,3,0],[0,0,2,1]],[[0,1,3,1],[2,3,2,2],[1,2,0,2],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[1,2,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[1,2,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,2,0,3],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[1,2,0,2],[0,3,2,1]],[[0,1,2,1],[2,3,2,2],[1,2,0,2],[0,2,3,1]],[[0,1,2,1],[2,3,2,2],[1,2,0,2],[0,2,2,2]],[[0,1,3,1],[2,3,2,2],[1,2,1,2],[0,1,2,1]],[[0,1,2,2],[2,3,2,2],[1,2,1,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,3],[1,2,1,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[1,2,1,3],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[1,2,1,2],[0,1,3,1]],[[0,1,2,1],[2,3,2,2],[1,2,1,2],[0,1,2,2]],[[0,1,3,1],[2,3,2,2],[1,2,1,2],[1,0,2,1]],[[0,1,2,2],[2,3,2,2],[1,2,1,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,3],[1,2,1,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[1,2,1,3],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[1,2,1,2],[1,0,3,1]],[[0,1,2,1],[2,3,2,2],[1,2,1,2],[1,0,2,2]],[[0,1,3,1],[2,3,2,2],[1,2,2,2],[0,0,2,1]],[[0,1,2,2],[2,3,2,2],[1,2,2,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,3],[1,2,2,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[1,2,2,3],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[1,2,2,2],[0,0,2,2]],[[0,1,3,1],[2,3,2,2],[1,2,2,2],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[1,2,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[1,2,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[1,2,2,3],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[1,2,2,2],[0,1,1,2]],[[0,1,3,1],[2,3,2,2],[1,2,2,2],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[1,2,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[1,2,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,2],[1,2,2,3],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[1,2,2,2],[0,2,0,1]],[[0,1,2,2],[2,3,2,2],[1,2,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,3],[1,2,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,2],[1,2,2,3],[0,2,0,1]],[[0,1,2,1],[2,3,2,2],[1,2,2,2],[0,2,0,2]],[[0,1,3,1],[2,3,2,2],[1,2,2,2],[0,2,1,0]],[[0,1,2,2],[2,3,2,2],[1,2,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,3],[1,2,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,2],[1,2,2,3],[0,2,1,0]],[[0,1,3,1],[2,3,2,2],[1,2,2,2],[1,0,1,1]],[[0,1,2,2],[2,3,2,2],[1,2,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,3],[1,2,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[1,2,2,3],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[1,2,2,2],[1,0,1,2]],[[0,1,3,1],[2,3,2,2],[1,2,2,2],[1,0,2,0]],[[0,1,2,2],[2,3,2,2],[1,2,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,3],[1,2,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,2],[1,2,2,3],[1,0,2,0]],[[0,1,3,1],[2,3,2,2],[1,2,2,2],[1,1,0,1]],[[0,1,2,2],[2,3,2,2],[1,2,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,3],[1,2,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,2],[1,2,2,3],[1,1,0,1]],[[0,1,2,1],[2,3,2,2],[1,2,2,2],[1,1,0,2]],[[0,1,3,1],[2,3,2,2],[1,2,2,2],[1,1,1,0]],[[0,1,2,2],[2,3,2,2],[1,2,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,3],[1,2,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,1],[2,1,3,3],[1,2,2,2],[1,0,0,1]],[[1,2,2,2],[2,1,3,2],[1,2,2,2],[1,0,0,1]],[[1,2,3,1],[2,1,3,2],[1,2,2,2],[1,0,0,1]],[[1,3,2,1],[2,1,3,2],[1,2,2,2],[1,0,0,1]],[[2,2,2,1],[2,1,3,2],[1,2,2,2],[1,0,0,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,0],[0,1,2,1]],[[0,1,2,2],[2,3,2,2],[1,2,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,2,3],[1,2,3,0],[0,1,2,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,0],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[1,2,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[1,2,3,0],[0,2,1,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,0],[1,0,2,1]],[[0,1,2,2],[2,3,2,2],[1,2,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,2,3],[1,2,3,0],[1,0,2,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,0],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[1,2,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[1,2,3,0],[1,1,1,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,1],[0,0,2,1]],[[0,1,2,2],[2,3,2,2],[1,2,3,1],[0,0,2,1]],[[0,1,2,1],[2,3,2,3],[1,2,3,1],[0,0,2,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,1],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[1,2,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[1,2,3,1],[0,1,1,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,1],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[1,2,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[1,2,3,1],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[1,2,3,1],[0,2,0,1]],[[0,1,2,2],[2,3,2,2],[1,2,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,2,3],[1,2,3,1],[0,2,0,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,1],[0,2,1,0]],[[0,1,2,2],[2,3,2,2],[1,2,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,2,3],[1,2,3,1],[0,2,1,0]],[[0,1,3,1],[2,3,2,2],[1,2,3,1],[1,0,1,1]],[[0,1,2,2],[2,3,2,2],[1,2,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,2,3],[1,2,3,1],[1,0,1,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,1],[1,0,2,0]],[[0,1,2,2],[2,3,2,2],[1,2,3,1],[1,0,2,0]],[[0,1,2,1],[2,3,2,3],[1,2,3,1],[1,0,2,0]],[[0,1,3,1],[2,3,2,2],[1,2,3,1],[1,1,0,1]],[[0,1,2,2],[2,3,2,2],[1,2,3,1],[1,1,0,1]],[[0,1,2,1],[2,3,2,3],[1,2,3,1],[1,1,0,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,1],[1,1,1,0]],[[0,1,2,2],[2,3,2,2],[1,2,3,1],[1,1,1,0]],[[0,1,2,1],[2,3,2,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,3,3],[1,2,2,2],[0,1,0,1]],[[1,2,2,2],[2,1,3,2],[1,2,2,2],[0,1,0,1]],[[1,2,3,1],[2,1,3,2],[1,2,2,2],[0,1,0,1]],[[1,3,2,1],[2,1,3,2],[1,2,2,2],[0,1,0,1]],[[2,2,2,1],[2,1,3,2],[1,2,2,2],[0,1,0,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,2],[0,1,0,1]],[[0,1,2,2],[2,3,2,2],[1,2,3,2],[0,1,0,1]],[[0,1,2,1],[2,3,2,3],[1,2,3,2],[0,1,0,1]],[[0,1,2,1],[2,3,2,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,1],[2,1,3,3],[1,2,1,2],[1,1,1,0]],[[1,2,2,2],[2,1,3,2],[1,2,1,2],[1,1,1,0]],[[1,2,3,1],[2,1,3,2],[1,2,1,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,2],[1,2,1,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,2],[1,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,3,3],[1,2,1,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,2],[1,2,1,2],[1,1,0,1]],[[0,1,3,1],[2,3,2,2],[1,2,3,2],[1,0,0,1]],[[0,1,2,2],[2,3,2,2],[1,2,3,2],[1,0,0,1]],[[0,1,2,1],[2,3,2,3],[1,2,3,2],[1,0,0,1]],[[0,1,2,1],[2,3,2,2],[1,2,3,3],[1,0,0,1]],[[1,2,3,1],[2,1,3,2],[1,2,1,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,2],[1,2,1,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,2],[1,2,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,3,3],[1,2,1,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,2],[1,2,1,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,2],[1,2,1,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,2],[1,2,1,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,2],[1,2,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,3],[1,2,1,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,2],[1,2,1,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,2],[1,2,1,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,2],[1,2,1,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,2],[1,2,1,2],[1,0,1,1]],[[1,2,2,1],[2,1,3,3],[1,2,1,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,2],[1,2,1,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,2],[1,2,1,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,2],[1,2,1,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,2],[1,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,3],[1,2,1,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,2],[1,2,1,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,2],[1,2,1,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,2],[1,2,1,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,2],[1,2,1,2],[0,2,0,1]],[[1,2,2,1],[2,1,3,3],[1,2,1,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,2],[1,2,1,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,2],[1,2,1,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,2],[1,2,1,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,2],[1,2,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,3,3],[1,2,1,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,2],[1,2,1,2],[0,1,1,1]],[[0,1,3,1],[2,3,2,2],[1,3,0,1],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[1,3,0,1],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[1,3,0,1],[0,2,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,0,1],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[1,3,0,1],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[1,3,0,1],[1,1,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,0,2],[0,1,2,1]],[[0,1,2,2],[2,3,2,2],[1,3,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,3],[1,3,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[1,3,0,3],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[1,3,0,2],[0,1,3,1]],[[0,1,2,1],[2,3,2,2],[1,3,0,2],[0,1,2,2]],[[0,1,3,1],[2,3,2,2],[1,3,0,2],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[1,3,0,2],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[1,3,0,2],[0,2,1,1]],[[0,1,2,1],[2,3,2,2],[1,3,0,3],[0,2,1,1]],[[0,1,2,1],[2,3,2,2],[1,3,0,2],[0,2,1,2]],[[0,1,3,1],[2,3,2,2],[1,3,0,2],[0,2,2,0]],[[0,1,2,2],[2,3,2,2],[1,3,0,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,3],[1,3,0,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,2],[1,3,0,3],[0,2,2,0]],[[0,1,3,1],[2,3,2,2],[1,3,0,2],[1,0,2,1]],[[0,1,2,2],[2,3,2,2],[1,3,0,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,3],[1,3,0,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[1,3,0,3],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[1,3,0,2],[1,0,3,1]],[[0,1,2,1],[2,3,2,2],[1,3,0,2],[1,0,2,2]],[[0,1,3,1],[2,3,2,2],[1,3,0,2],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[1,3,0,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[1,3,0,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[1,3,0,3],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[1,3,0,2],[1,1,1,2]],[[0,1,3,1],[2,3,2,2],[1,3,0,2],[1,1,2,0]],[[0,1,2,2],[2,3,2,2],[1,3,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,3],[1,3,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,2],[1,3,0,3],[1,1,2,0]],[[1,2,3,1],[2,1,3,2],[1,2,1,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,2],[1,2,1,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,2],[1,2,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,3,3],[1,2,1,2],[0,0,2,1]],[[1,2,2,2],[2,1,3,2],[1,2,1,2],[0,0,2,1]],[[1,2,3,1],[2,1,3,2],[1,2,1,2],[0,0,2,1]],[[1,3,2,1],[2,1,3,2],[1,2,1,2],[0,0,2,1]],[[2,2,2,1],[2,1,3,2],[1,2,1,2],[0,0,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,1,0],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[1,3,1,0],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[1,3,1,0],[0,2,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,1,0],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[1,3,1,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[1,3,1,0],[1,1,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,1,1],[0,2,2,0]],[[0,1,2,2],[2,3,2,2],[1,3,1,1],[0,2,2,0]],[[0,1,2,1],[2,3,2,3],[1,3,1,1],[0,2,2,0]],[[0,1,3,1],[2,3,2,2],[1,3,1,1],[1,1,2,0]],[[0,1,2,2],[2,3,2,2],[1,3,1,1],[1,1,2,0]],[[0,1,2,1],[2,3,2,3],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,3,3],[1,2,0,2],[1,0,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,1,2],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[1,3,1,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[1,3,1,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[1,3,1,3],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[1,3,1,2],[0,1,1,2]],[[0,1,3,1],[2,3,2,2],[1,3,1,2],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[1,3,1,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[1,3,1,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,2],[1,3,1,3],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[1,3,1,2],[0,2,0,1]],[[0,1,2,2],[2,3,2,2],[1,3,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,3],[1,3,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,2],[1,3,1,3],[0,2,0,1]],[[0,1,2,1],[2,3,2,2],[1,3,1,2],[0,2,0,2]],[[0,1,3,1],[2,3,2,2],[1,3,1,2],[0,2,1,0]],[[0,1,2,2],[2,3,2,2],[1,3,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,3],[1,3,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,2],[1,3,1,3],[0,2,1,0]],[[1,2,2,2],[2,1,3,2],[1,2,0,2],[1,0,2,1]],[[1,2,3,1],[2,1,3,2],[1,2,0,2],[1,0,2,1]],[[1,3,2,1],[2,1,3,2],[1,2,0,2],[1,0,2,1]],[[2,2,2,1],[2,1,3,2],[1,2,0,2],[1,0,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,1,2],[1,0,1,1]],[[0,1,2,2],[2,3,2,2],[1,3,1,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,3],[1,3,1,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[1,3,1,3],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[1,3,1,2],[1,0,1,2]],[[0,1,3,1],[2,3,2,2],[1,3,1,2],[1,0,2,0]],[[0,1,2,2],[2,3,2,2],[1,3,1,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,3],[1,3,1,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,2],[1,3,1,3],[1,0,2,0]],[[0,1,3,1],[2,3,2,2],[1,3,1,2],[1,1,0,1]],[[0,1,2,2],[2,3,2,2],[1,3,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,3],[1,3,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,2],[1,3,1,3],[1,1,0,1]],[[0,1,2,1],[2,3,2,2],[1,3,1,2],[1,1,0,2]],[[0,1,3,1],[2,3,2,2],[1,3,1,2],[1,1,1,0]],[[0,1,2,2],[2,3,2,2],[1,3,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,3],[1,3,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,2],[1,3,1,3],[1,1,1,0]],[[1,2,2,1],[2,1,3,3],[1,2,0,2],[0,1,2,1]],[[1,2,2,2],[2,1,3,2],[1,2,0,2],[0,1,2,1]],[[1,2,3,1],[2,1,3,2],[1,2,0,2],[0,1,2,1]],[[1,3,2,1],[2,1,3,2],[1,2,0,2],[0,1,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,1,2],[1,2,0,0]],[[0,1,2,2],[2,3,2,2],[1,3,1,2],[1,2,0,0]],[[0,1,2,1],[2,3,2,3],[1,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,1,3,2],[1,2,0,2],[0,1,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,2,0],[0,1,2,1]],[[0,1,2,2],[2,3,2,2],[1,3,2,0],[0,1,2,1]],[[0,1,2,1],[2,3,2,3],[1,3,2,0],[0,1,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,2,0],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[1,3,2,0],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[1,3,2,0],[0,2,1,1]],[[0,1,3,1],[2,3,2,2],[1,3,2,0],[1,0,2,1]],[[0,1,2,2],[2,3,2,2],[1,3,2,0],[1,0,2,1]],[[0,1,2,1],[2,3,2,3],[1,3,2,0],[1,0,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,2,0],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[1,3,2,0],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[1,3,2,0],[1,1,1,1]],[[0,1,3,1],[2,3,2,2],[1,3,2,1],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[1,3,2,1],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[1,3,2,1],[0,1,1,1]],[[0,1,3,1],[2,3,2,2],[1,3,2,1],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[1,3,2,1],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[1,3,2,1],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[1,3,2,1],[0,2,0,1]],[[0,1,2,2],[2,3,2,2],[1,3,2,1],[0,2,0,1]],[[0,1,2,1],[2,3,2,3],[1,3,2,1],[0,2,0,1]],[[0,1,3,1],[2,3,2,2],[1,3,2,1],[0,2,1,0]],[[0,1,2,2],[2,3,2,2],[1,3,2,1],[0,2,1,0]],[[0,1,2,1],[2,3,2,3],[1,3,2,1],[0,2,1,0]],[[0,1,3,1],[2,3,2,2],[1,3,2,1],[1,0,1,1]],[[0,1,2,2],[2,3,2,2],[1,3,2,1],[1,0,1,1]],[[0,1,2,1],[2,3,2,3],[1,3,2,1],[1,0,1,1]],[[0,1,3,1],[2,3,2,2],[1,3,2,1],[1,0,2,0]],[[0,1,2,2],[2,3,2,2],[1,3,2,1],[1,0,2,0]],[[0,1,2,1],[2,3,2,3],[1,3,2,1],[1,0,2,0]],[[0,1,3,1],[2,3,2,2],[1,3,2,1],[1,1,0,1]],[[0,1,2,2],[2,3,2,2],[1,3,2,1],[1,1,0,1]],[[0,1,2,1],[2,3,2,3],[1,3,2,1],[1,1,0,1]],[[0,1,3,1],[2,3,2,2],[1,3,2,1],[1,1,1,0]],[[0,1,2,2],[2,3,2,2],[1,3,2,1],[1,1,1,0]],[[0,1,2,1],[2,3,2,3],[1,3,2,1],[1,1,1,0]],[[0,1,3,1],[2,3,2,2],[1,3,2,1],[1,2,0,0]],[[0,1,2,2],[2,3,2,2],[1,3,2,1],[1,2,0,0]],[[0,1,2,1],[2,3,2,3],[1,3,2,1],[1,2,0,0]],[[0,1,3,1],[2,3,2,2],[1,3,2,2],[0,0,1,1]],[[0,1,2,2],[2,3,2,2],[1,3,2,2],[0,0,1,1]],[[0,1,2,1],[2,3,2,3],[1,3,2,2],[0,0,1,1]],[[0,1,2,1],[2,3,2,2],[1,3,2,3],[0,0,1,1]],[[0,1,2,1],[2,3,2,2],[1,3,2,2],[0,0,1,2]],[[0,1,3,1],[2,3,2,2],[1,3,2,2],[0,0,2,0]],[[0,1,2,2],[2,3,2,2],[1,3,2,2],[0,0,2,0]],[[0,1,2,1],[2,3,2,3],[1,3,2,2],[0,0,2,0]],[[0,1,2,1],[2,3,2,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[2,1,4,2],[1,1,3,0],[0,2,2,0]],[[1,2,2,1],[3,1,3,2],[1,1,3,0],[0,2,2,0]],[[1,2,2,2],[2,1,3,2],[1,1,3,0],[0,2,2,0]],[[1,2,3,1],[2,1,3,2],[1,1,3,0],[0,2,2,0]],[[1,3,2,1],[2,1,3,2],[1,1,3,0],[0,2,2,0]],[[2,2,2,1],[2,1,3,2],[1,1,3,0],[0,2,2,0]],[[1,2,2,1],[2,1,4,2],[1,1,3,0],[0,2,1,1]],[[1,2,2,2],[2,1,3,2],[1,1,3,0],[0,2,1,1]],[[1,2,3,1],[2,1,3,2],[1,1,3,0],[0,2,1,1]],[[1,3,2,1],[2,1,3,2],[1,1,3,0],[0,2,1,1]],[[2,2,2,1],[2,1,3,2],[1,1,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,3,3],[1,1,1,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,2],[1,1,1,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,2],[1,1,1,2],[0,2,2,0]],[[1,3,2,1],[2,1,3,2],[1,1,1,2],[0,2,2,0]],[[2,2,2,1],[2,1,3,2],[1,1,1,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,3],[1,1,1,2],[0,2,1,1]],[[1,2,2,2],[2,1,3,2],[1,1,1,2],[0,2,1,1]],[[1,2,3,1],[2,1,3,2],[1,1,1,2],[0,2,1,1]],[[1,3,2,1],[2,1,3,2],[1,1,1,2],[0,2,1,1]],[[2,2,2,1],[2,1,3,2],[1,1,1,2],[0,2,1,1]],[[1,2,2,1],[2,1,3,3],[1,1,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,3,2],[1,1,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,3,2],[1,1,0,2],[0,2,2,1]],[[1,3,2,1],[2,1,3,2],[1,1,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,3,2],[1,1,0,2],[0,2,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,3,0],[0,0,2,1]],[[0,1,2,2],[2,3,2,2],[1,3,3,0],[0,0,2,1]],[[0,1,2,1],[2,3,2,3],[1,3,3,0],[0,0,2,1]],[[0,1,3,1],[2,3,2,2],[1,3,3,1],[0,0,1,1]],[[0,1,2,2],[2,3,2,2],[1,3,3,1],[0,0,1,1]],[[0,1,2,1],[2,3,2,3],[1,3,3,1],[0,0,1,1]],[[0,1,3,1],[2,3,2,2],[1,3,3,1],[0,0,2,0]],[[0,1,2,2],[2,3,2,2],[1,3,3,1],[0,0,2,0]],[[0,1,2,1],[2,3,2,3],[1,3,3,1],[0,0,2,0]],[[0,1,3,1],[2,3,2,2],[1,3,3,1],[0,2,0,0]],[[0,1,2,2],[2,3,2,2],[1,3,3,1],[0,2,0,0]],[[0,1,2,1],[2,3,2,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,4,2],[1,0,3,0],[1,2,2,0]],[[1,2,2,1],[3,1,3,2],[1,0,3,0],[1,2,2,0]],[[1,2,2,2],[2,1,3,2],[1,0,3,0],[1,2,2,0]],[[1,2,3,1],[2,1,3,2],[1,0,3,0],[1,2,2,0]],[[1,3,2,1],[2,1,3,2],[1,0,3,0],[1,2,2,0]],[[2,2,2,1],[2,1,3,2],[1,0,3,0],[1,2,2,0]],[[1,2,2,1],[2,1,4,2],[1,0,3,0],[1,2,1,1]],[[1,2,2,2],[2,1,3,2],[1,0,3,0],[1,2,1,1]],[[1,2,3,1],[2,1,3,2],[1,0,3,0],[1,2,1,1]],[[1,3,2,1],[2,1,3,2],[1,0,3,0],[1,2,1,1]],[[2,2,2,1],[2,1,3,2],[1,0,3,0],[1,2,1,1]],[[0,1,3,1],[2,3,2,2],[1,3,3,1],[1,1,0,0]],[[0,1,2,2],[2,3,2,2],[1,3,3,1],[1,1,0,0]],[[0,1,2,1],[2,3,2,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,3,3],[1,0,1,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,2],[1,0,1,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,2],[1,0,1,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,2],[1,0,1,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,2],[1,0,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,3,3],[1,0,1,2],[1,2,1,1]],[[1,2,2,2],[2,1,3,2],[1,0,1,2],[1,2,1,1]],[[1,2,3,1],[2,1,3,2],[1,0,1,2],[1,2,1,1]],[[1,3,2,1],[2,1,3,2],[1,0,1,2],[1,2,1,1]],[[2,2,2,1],[2,1,3,2],[1,0,1,2],[1,2,1,1]],[[1,2,2,1],[2,1,3,3],[1,0,0,2],[1,2,2,1]],[[1,2,2,1],[3,1,3,2],[1,0,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,3,2],[1,0,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,3,2],[1,0,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,3,2],[1,0,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,3,2],[1,0,0,2],[1,2,2,1]],[[1,2,2,1],[2,1,3,2],[0,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,1,3,3],[0,3,3,2],[0,0,0,1]],[[1,2,2,2],[2,1,3,2],[0,3,3,2],[0,0,0,1]],[[1,2,3,1],[2,1,3,2],[0,3,3,2],[0,0,0,1]],[[0,1,3,1],[2,3,2,2],[1,3,3,2],[0,0,0,1]],[[0,1,2,2],[2,3,2,2],[1,3,3,2],[0,0,0,1]],[[0,1,2,1],[2,3,2,3],[1,3,3,2],[0,0,0,1]],[[0,1,2,1],[2,3,2,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,1,3,3],[0,3,3,1],[0,0,2,0]],[[1,2,2,2],[2,1,3,2],[0,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,1,3,2],[0,3,3,1],[0,0,2,0]],[[1,2,2,1],[2,1,3,3],[0,3,3,1],[0,0,1,1]],[[1,2,2,2],[2,1,3,2],[0,3,3,1],[0,0,1,1]],[[1,2,3,1],[2,1,3,2],[0,3,3,1],[0,0,1,1]],[[1,2,2,1],[2,1,4,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,1],[3,1,3,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,2],[2,1,3,2],[0,3,3,0],[1,2,0,0]],[[1,2,3,1],[2,1,3,2],[0,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,1,3,2],[0,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,1,3,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,1],[2,1,3,3],[0,3,2,2],[0,0,2,0]],[[1,2,2,2],[2,1,3,2],[0,3,2,2],[0,0,2,0]],[[1,2,3,1],[2,1,3,2],[0,3,2,2],[0,0,2,0]],[[1,2,2,1],[2,1,3,2],[0,3,2,3],[0,0,1,1]],[[1,2,2,1],[2,1,3,3],[0,3,2,2],[0,0,1,1]],[[1,2,2,2],[2,1,3,2],[0,3,2,2],[0,0,1,1]],[[1,2,3,1],[2,1,3,2],[0,3,2,2],[0,0,1,1]],[[1,2,2,1],[2,1,4,2],[0,3,2,0],[1,2,1,0]],[[1,2,2,1],[3,1,3,2],[0,3,2,0],[1,2,1,0]],[[1,2,2,2],[2,1,3,2],[0,3,2,0],[1,2,1,0]],[[1,2,3,1],[2,1,3,2],[0,3,2,0],[1,2,1,0]],[[1,3,2,1],[2,1,3,2],[0,3,2,0],[1,2,1,0]],[[2,2,2,1],[2,1,3,2],[0,3,2,0],[1,2,1,0]],[[1,2,2,1],[2,1,4,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,1],[3,1,3,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,2],[2,1,3,2],[0,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,1,3,2],[0,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,1,3,2],[0,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,1,3,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,1],[2,1,4,2],[0,3,2,0],[1,1,2,0]],[[1,2,2,1],[3,1,3,2],[0,3,2,0],[1,1,2,0]],[[1,2,2,2],[2,1,3,2],[0,3,2,0],[1,1,2,0]],[[1,2,3,1],[2,1,3,2],[0,3,2,0],[1,1,2,0]],[[1,3,2,1],[2,1,3,2],[0,3,2,0],[1,1,2,0]],[[2,2,2,1],[2,1,3,2],[0,3,2,0],[1,1,2,0]],[[1,2,2,1],[2,1,4,2],[0,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,1,3,2],[0,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,1,3,2],[0,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,1,3,2],[0,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,1,3,2],[0,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,4,2],[0,3,1,0],[1,2,2,0]],[[1,2,2,1],[3,1,3,2],[0,3,1,0],[1,2,2,0]],[[1,2,2,2],[2,1,3,2],[0,3,1,0],[1,2,2,0]],[[1,2,3,1],[2,1,3,2],[0,3,1,0],[1,2,2,0]],[[1,3,2,1],[2,1,3,2],[0,3,1,0],[1,2,2,0]],[[2,2,2,1],[2,1,3,2],[0,3,1,0],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[2,0,1,1],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[2,0,1,1],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[2,0,1,1],[1,2,2,1]],[[0,1,3,1],[2,3,2,2],[2,0,1,2],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[2,0,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[2,0,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[2,0,1,3],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[2,0,1,2],[0,3,2,1]],[[0,1,2,1],[2,3,2,2],[2,0,1,2],[0,2,3,1]],[[0,1,2,1],[2,3,2,2],[2,0,1,2],[0,2,2,2]],[[0,1,3,1],[2,3,2,2],[2,0,1,2],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[2,0,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[2,0,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,2],[2,0,1,3],[1,1,2,1]],[[0,1,2,1],[2,3,2,2],[2,0,1,2],[1,1,3,1]],[[0,1,2,1],[2,3,2,2],[2,0,1,2],[1,1,2,2]],[[0,1,3,1],[2,3,2,2],[2,0,1,2],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[2,0,1,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[2,0,1,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[2,0,1,3],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[2,0,1,2],[1,2,1,2]],[[0,1,3,1],[2,3,2,2],[2,0,1,2],[1,2,2,0]],[[0,1,2,2],[2,3,2,2],[2,0,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,3],[2,0,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,2],[2,0,1,3],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[2,0,2,0],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[2,0,2,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[2,0,2,0],[1,2,2,1]],[[0,1,3,1],[2,3,2,2],[2,0,2,1],[1,2,2,0]],[[0,1,2,2],[2,3,2,2],[2,0,2,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,3],[2,0,2,1],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[2,0,2,2],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[2,0,2,2],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[2,0,2,2],[0,2,1,1]],[[0,1,2,1],[2,3,2,2],[2,0,2,3],[0,2,1,1]],[[0,1,2,1],[2,3,2,2],[2,0,2,2],[0,2,1,2]],[[0,1,3,1],[2,3,2,2],[2,0,2,2],[0,2,2,0]],[[0,1,2,2],[2,3,2,2],[2,0,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,3],[2,0,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,2],[2,0,2,3],[0,2,2,0]],[[0,1,3,1],[2,3,2,2],[2,0,2,2],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[2,0,2,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[2,0,2,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[2,0,2,3],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[2,0,2,2],[1,1,1,2]],[[0,1,3,1],[2,3,2,2],[2,0,2,2],[1,1,2,0]],[[0,1,2,2],[2,3,2,2],[2,0,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,3],[2,0,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,2],[2,0,2,3],[1,1,2,0]],[[0,1,3,1],[2,3,2,2],[2,0,2,2],[1,2,0,1]],[[0,1,2,2],[2,3,2,2],[2,0,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,3],[2,0,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,2],[2,0,2,3],[1,2,0,1]],[[0,1,2,1],[2,3,2,2],[2,0,2,2],[1,2,0,2]],[[0,1,3,1],[2,3,2,2],[2,0,2,2],[1,2,1,0]],[[0,1,2,2],[2,3,2,2],[2,0,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,3],[2,0,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,2],[2,0,2,3],[1,2,1,0]],[[1,2,2,1],[2,1,3,3],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[3,1,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,2,2],[2,1,3,2],[0,3,0,2],[1,2,1,0]],[[0,1,3,1],[2,3,2,2],[2,0,3,0],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[2,0,3,0],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[2,0,3,0],[0,2,2,1]],[[0,1,3,1],[2,3,2,2],[2,0,3,0],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[2,0,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[2,0,3,0],[1,1,2,1]],[[0,1,3,1],[2,3,2,2],[2,0,3,0],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[2,0,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[2,0,3,0],[1,2,1,1]],[[0,1,3,1],[2,3,2,2],[2,0,3,1],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[2,0,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[2,0,3,1],[0,2,1,1]],[[0,1,3,1],[2,3,2,2],[2,0,3,1],[0,2,2,0]],[[0,1,2,2],[2,3,2,2],[2,0,3,1],[0,2,2,0]],[[0,1,2,1],[2,3,2,3],[2,0,3,1],[0,2,2,0]],[[0,1,3,1],[2,3,2,2],[2,0,3,1],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[2,0,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[2,0,3,1],[1,1,1,1]],[[0,1,3,1],[2,3,2,2],[2,0,3,1],[1,1,2,0]],[[0,1,2,2],[2,3,2,2],[2,0,3,1],[1,1,2,0]],[[0,1,2,1],[2,3,2,3],[2,0,3,1],[1,1,2,0]],[[0,1,3,1],[2,3,2,2],[2,0,3,1],[1,2,0,1]],[[0,1,2,2],[2,3,2,2],[2,0,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,3],[2,0,3,1],[1,2,0,1]],[[0,1,3,1],[2,3,2,2],[2,0,3,1],[1,2,1,0]],[[0,1,2,2],[2,3,2,2],[2,0,3,1],[1,2,1,0]],[[0,1,2,1],[2,3,2,3],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[2,1,3,2],[0,3,0,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,2],[0,3,0,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[2,1,3,3],[0,3,0,2],[1,2,0,1]],[[1,2,2,1],[3,1,3,2],[0,3,0,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,2],[0,3,0,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,2],[0,3,0,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,2],[0,3,0,2],[1,2,0,1]],[[2,2,2,1],[2,1,3,2],[0,3,0,2],[1,2,0,1]],[[0,1,3,1],[2,3,2,2],[2,0,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,2,2],[2,0,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,3],[2,0,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[2,0,3,3],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[2,0,3,2],[0,0,2,2]],[[0,1,3,1],[2,3,2,2],[2,0,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[2,0,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[2,0,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[2,0,3,3],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[2,0,3,2],[0,1,1,2]],[[0,1,3,1],[2,3,2,2],[2,0,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[2,0,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[2,0,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,2],[2,0,3,3],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[2,0,3,2],[1,0,1,1]],[[0,1,2,2],[2,3,2,2],[2,0,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,3],[2,0,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[2,0,3,3],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[2,0,3,2],[1,0,1,2]],[[0,1,3,1],[2,3,2,2],[2,0,3,2],[1,0,2,0]],[[0,1,2,2],[2,3,2,2],[2,0,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,3],[2,0,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,3,3],[0,3,0,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,2],[0,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,2],[0,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,2],[0,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,2],[0,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,3,3],[0,3,0,2],[1,1,1,1]],[[1,2,2,2],[2,1,3,2],[0,3,0,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,2],[0,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,1,3,2],[0,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,1,3,2],[0,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,3,2],[0,2,3,3],[1,0,0,1]],[[1,2,2,1],[2,1,3,3],[0,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,1,3,2],[0,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,1,3,2],[0,2,3,2],[1,0,0,1]],[[0,1,3,1],[2,3,2,2],[2,1,0,1],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[2,1,0,1],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[2,1,0,1],[1,2,2,1]],[[0,1,3,1],[2,3,2,2],[2,1,0,2],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[2,1,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[2,1,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[2,1,0,3],[0,2,2,1]],[[0,1,2,1],[2,3,2,2],[2,1,0,2],[0,3,2,1]],[[0,1,2,1],[2,3,2,2],[2,1,0,2],[0,2,3,1]],[[0,1,2,1],[2,3,2,2],[2,1,0,2],[0,2,2,2]],[[0,1,3,1],[2,3,2,2],[2,1,0,2],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[2,1,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[2,1,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,2,2],[2,1,0,3],[1,1,2,1]],[[0,1,2,1],[2,3,2,2],[2,1,0,2],[1,1,3,1]],[[0,1,2,1],[2,3,2,2],[2,1,0,2],[1,1,2,2]],[[0,1,3,1],[2,3,2,2],[2,1,0,2],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[2,1,0,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[2,1,0,2],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[2,1,0,3],[1,2,1,1]],[[0,1,2,1],[2,3,2,2],[2,1,0,2],[1,2,1,2]],[[0,1,3,1],[2,3,2,2],[2,1,0,2],[1,2,2,0]],[[0,1,2,2],[2,3,2,2],[2,1,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,3],[2,1,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,2,2],[2,1,0,3],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[2,1,1,0],[1,2,2,1]],[[0,1,2,2],[2,3,2,2],[2,1,1,0],[1,2,2,1]],[[0,1,2,1],[2,3,2,3],[2,1,1,0],[1,2,2,1]],[[0,1,3,1],[2,3,2,2],[2,1,1,1],[1,2,2,0]],[[0,1,2,2],[2,3,2,2],[2,1,1,1],[1,2,2,0]],[[0,1,2,1],[2,3,2,3],[2,1,1,1],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[2,1,1,2],[0,1,2,1]],[[0,1,2,2],[2,3,2,2],[2,1,1,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,3],[2,1,1,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[2,1,1,3],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[2,1,1,2],[0,1,3,1]],[[0,1,2,1],[2,3,2,2],[2,1,1,2],[0,1,2,2]],[[0,1,3,1],[2,3,2,2],[2,1,1,2],[1,0,2,1]],[[0,1,2,2],[2,3,2,2],[2,1,1,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,3],[2,1,1,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[2,1,1,3],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[2,1,1,2],[1,0,3,1]],[[0,1,2,1],[2,3,2,2],[2,1,1,2],[1,0,2,2]],[[0,1,3,1],[2,3,2,2],[2,1,1,2],[1,2,0,1]],[[0,1,2,2],[2,3,2,2],[2,1,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,3],[2,1,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,2,2],[2,1,1,3],[1,2,0,1]],[[0,1,2,1],[2,3,2,2],[2,1,1,2],[1,2,0,2]],[[0,1,3,1],[2,3,2,2],[2,1,1,2],[1,2,1,0]],[[0,1,2,2],[2,3,2,2],[2,1,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,3],[2,1,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,2,2],[2,1,1,3],[1,2,1,0]],[[0,1,3,1],[2,3,2,2],[2,1,2,0],[1,2,1,1]],[[0,1,2,2],[2,3,2,2],[2,1,2,0],[1,2,1,1]],[[0,1,2,1],[2,3,2,3],[2,1,2,0],[1,2,1,1]],[[0,1,3,1],[2,3,2,2],[2,1,2,1],[1,2,0,1]],[[0,1,2,2],[2,3,2,2],[2,1,2,1],[1,2,0,1]],[[0,1,2,1],[2,3,2,3],[2,1,2,1],[1,2,0,1]],[[0,1,3,1],[2,3,2,2],[2,1,2,1],[1,2,1,0]],[[0,1,2,2],[2,3,2,2],[2,1,2,1],[1,2,1,0]],[[0,1,2,1],[2,3,2,3],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,3,2],[0,2,3,3],[0,1,0,1]],[[1,2,2,1],[2,1,3,3],[0,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,1,3,2],[0,2,3,2],[0,1,0,1]],[[1,2,3,1],[2,1,3,2],[0,2,3,2],[0,1,0,1]],[[0,1,3,1],[2,3,2,2],[2,1,2,2],[0,0,2,1]],[[0,1,2,2],[2,3,2,2],[2,1,2,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,3],[2,1,2,2],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[2,1,2,3],[0,0,2,1]],[[0,1,2,1],[2,3,2,2],[2,1,2,2],[0,0,2,2]],[[0,1,3,1],[2,3,2,2],[2,1,2,2],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[2,1,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[2,1,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[2,1,2,3],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[2,1,2,2],[0,1,1,2]],[[0,1,3,1],[2,3,2,2],[2,1,2,2],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[2,1,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[2,1,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,2],[2,1,2,3],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[2,1,2,2],[0,2,0,1]],[[0,1,2,2],[2,3,2,2],[2,1,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,3],[2,1,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,2],[2,1,2,3],[0,2,0,1]],[[0,1,2,1],[2,3,2,2],[2,1,2,2],[0,2,0,2]],[[0,1,3,1],[2,3,2,2],[2,1,2,2],[0,2,1,0]],[[0,1,2,2],[2,3,2,2],[2,1,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,3],[2,1,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,2],[2,1,2,3],[0,2,1,0]],[[0,1,3,1],[2,3,2,2],[2,1,2,2],[1,0,1,1]],[[0,1,2,2],[2,3,2,2],[2,1,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,3],[2,1,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[2,1,2,3],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[2,1,2,2],[1,0,1,2]],[[0,1,3,1],[2,3,2,2],[2,1,2,2],[1,0,2,0]],[[0,1,2,2],[2,3,2,2],[2,1,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,3],[2,1,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,2],[2,1,2,3],[1,0,2,0]],[[0,1,3,1],[2,3,2,2],[2,1,2,2],[1,1,0,1]],[[0,1,2,2],[2,3,2,2],[2,1,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,3],[2,1,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,2],[2,1,2,3],[1,1,0,1]],[[0,1,2,1],[2,3,2,2],[2,1,2,2],[1,1,0,2]],[[0,1,3,1],[2,3,2,2],[2,1,2,2],[1,1,1,0]],[[0,1,2,2],[2,3,2,2],[2,1,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,3],[2,1,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,2],[2,1,2,3],[1,1,1,0]],[[0,1,3,1],[2,3,2,2],[2,1,3,0],[0,1,2,1]],[[0,1,2,2],[2,3,2,2],[2,1,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,2,3],[2,1,3,0],[0,1,2,1]],[[0,1,3,1],[2,3,2,2],[2,1,3,0],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[2,1,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[2,1,3,0],[0,2,1,1]],[[0,1,3,1],[2,3,2,2],[2,1,3,0],[1,0,2,1]],[[0,1,2,2],[2,3,2,2],[2,1,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,2,3],[2,1,3,0],[1,0,2,1]],[[0,1,3,1],[2,3,2,2],[2,1,3,0],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[2,1,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,3,3],[0,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,1,3,2],[0,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,1,3,2],[0,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,3,3],[0,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,1,3,2],[0,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,1,3,2],[0,2,3,1],[1,0,1,1]],[[0,1,3,1],[2,3,2,2],[2,1,3,1],[0,0,2,1]],[[0,1,2,2],[2,3,2,2],[2,1,3,1],[0,0,2,1]],[[0,1,2,1],[2,3,2,3],[2,1,3,1],[0,0,2,1]],[[0,1,3,1],[2,3,2,2],[2,1,3,1],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[2,1,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[2,1,3,1],[0,1,1,1]],[[0,1,3,1],[2,3,2,2],[2,1,3,1],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[2,1,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[2,1,3,1],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[2,1,3,1],[0,2,0,1]],[[0,1,2,2],[2,3,2,2],[2,1,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,2,3],[2,1,3,1],[0,2,0,1]],[[0,1,3,1],[2,3,2,2],[2,1,3,1],[0,2,1,0]],[[0,1,2,2],[2,3,2,2],[2,1,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,2,3],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,3,3],[0,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,1,3,2],[0,2,3,1],[0,2,1,0]],[[0,1,3,1],[2,3,2,2],[2,1,3,1],[1,0,1,1]],[[0,1,2,2],[2,3,2,2],[2,1,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,2,3],[2,1,3,1],[1,0,1,1]],[[0,1,3,1],[2,3,2,2],[2,1,3,1],[1,0,2,0]],[[0,1,2,2],[2,3,2,2],[2,1,3,1],[1,0,2,0]],[[0,1,2,1],[2,3,2,3],[2,1,3,1],[1,0,2,0]],[[0,1,3,1],[2,3,2,2],[2,1,3,1],[1,1,0,1]],[[0,1,2,2],[2,3,2,2],[2,1,3,1],[1,1,0,1]],[[0,1,2,1],[2,3,2,3],[2,1,3,1],[1,1,0,1]],[[0,1,3,1],[2,3,2,2],[2,1,3,1],[1,1,1,0]],[[0,1,2,2],[2,3,2,2],[2,1,3,1],[1,1,1,0]],[[0,1,2,1],[2,3,2,3],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[2,1,3,2],[0,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,3,3],[0,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,1,3,2],[0,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,1,3,2],[0,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,3,3],[0,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,1,3,2],[0,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,1,3,2],[0,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,3,3],[0,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,1,3,2],[0,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,1,3,2],[0,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,1,3,3],[0,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,1,3,2],[0,2,3,1],[0,0,2,1]],[[1,2,3,1],[2,1,3,2],[0,2,3,1],[0,0,2,1]],[[1,2,2,1],[2,1,4,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,1],[3,1,3,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,2],[2,1,3,2],[0,2,3,0],[1,2,1,0]],[[1,2,3,1],[2,1,3,2],[0,2,3,0],[1,2,1,0]],[[1,3,2,1],[2,1,3,2],[0,2,3,0],[1,2,1,0]],[[0,1,3,1],[2,3,2,2],[2,1,3,2],[0,1,0,1]],[[0,1,2,2],[2,3,2,2],[2,1,3,2],[0,1,0,1]],[[0,1,2,1],[2,3,2,3],[2,1,3,2],[0,1,0,1]],[[0,1,2,1],[2,3,2,2],[2,1,3,3],[0,1,0,1]],[[2,2,2,1],[2,1,3,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,1],[2,1,4,2],[0,2,3,0],[1,2,0,1]],[[1,2,2,1],[3,1,3,2],[0,2,3,0],[1,2,0,1]],[[1,2,2,2],[2,1,3,2],[0,2,3,0],[1,2,0,1]],[[1,2,3,1],[2,1,3,2],[0,2,3,0],[1,2,0,1]],[[1,3,2,1],[2,1,3,2],[0,2,3,0],[1,2,0,1]],[[2,2,2,1],[2,1,3,2],[0,2,3,0],[1,2,0,1]],[[1,2,2,1],[2,1,4,2],[0,2,3,0],[1,1,2,0]],[[1,2,2,1],[3,1,3,2],[0,2,3,0],[1,1,2,0]],[[1,2,2,2],[2,1,3,2],[0,2,3,0],[1,1,2,0]],[[1,2,3,1],[2,1,3,2],[0,2,3,0],[1,1,2,0]],[[1,3,2,1],[2,1,3,2],[0,2,3,0],[1,1,2,0]],[[2,2,2,1],[2,1,3,2],[0,2,3,0],[1,1,2,0]],[[1,2,2,1],[2,1,4,2],[0,2,3,0],[1,1,1,1]],[[1,2,2,2],[2,1,3,2],[0,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,1,3,2],[0,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,1,3,2],[0,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,1,3,2],[0,2,3,0],[1,1,1,1]],[[0,1,3,1],[2,3,2,2],[2,1,3,2],[1,0,0,1]],[[0,1,2,2],[2,3,2,2],[2,1,3,2],[1,0,0,1]],[[0,1,2,1],[2,3,2,3],[2,1,3,2],[1,0,0,1]],[[0,1,2,1],[2,3,2,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,1],[2,1,3,3],[0,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,1,3,2],[0,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,1,3,2],[0,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,1,3,3],[0,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,2],[0,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,2],[0,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,2],[0,2,2,3],[1,0,1,1]],[[1,2,2,1],[2,1,3,3],[0,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,2],[0,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,2],[0,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,1,3,3],[0,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,2],[0,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,2],[0,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,2],[0,2,2,3],[0,2,0,1]],[[1,2,2,1],[2,1,3,3],[0,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,2],[0,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,2],[0,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,3,2],[0,2,2,3],[0,1,2,0]],[[1,2,2,1],[2,1,3,3],[0,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,2],[0,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,2],[0,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,3,2],[0,2,2,2],[0,1,1,2]],[[0,1,3,1],[2,3,2,2],[2,2,0,1],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[2,2,0,1],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[2,2,0,1],[0,2,2,1]],[[0,1,3,1],[2,3,2,2],[2,2,0,1],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[2,2,0,1],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[2,2,0,1],[1,1,2,1]],[[0,1,3,1],[2,3,2,2],[2,2,0,2],[0,1,2,1]],[[0,1,2,2],[2,3,2,2],[2,2,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,3],[2,2,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[2,2,0,3],[0,1,2,1]],[[0,1,2,1],[2,3,2,2],[2,2,0,2],[0,1,3,1]],[[0,1,2,1],[2,3,2,2],[2,2,0,2],[0,1,2,2]],[[0,1,3,1],[2,3,2,2],[2,2,0,2],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[2,2,0,2],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[2,2,0,2],[0,2,1,1]],[[0,1,2,1],[2,3,2,2],[2,2,0,3],[0,2,1,1]],[[0,1,2,1],[2,3,2,2],[2,2,0,2],[0,2,1,2]],[[0,1,3,1],[2,3,2,2],[2,2,0,2],[0,2,2,0]],[[0,1,2,2],[2,3,2,2],[2,2,0,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,3],[2,2,0,2],[0,2,2,0]],[[0,1,2,1],[2,3,2,2],[2,2,0,3],[0,2,2,0]],[[0,1,3,1],[2,3,2,2],[2,2,0,2],[1,0,2,1]],[[0,1,2,2],[2,3,2,2],[2,2,0,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,3],[2,2,0,2],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[2,2,0,3],[1,0,2,1]],[[0,1,2,1],[2,3,2,2],[2,2,0,2],[1,0,3,1]],[[0,1,2,1],[2,3,2,2],[2,2,0,2],[1,0,2,2]],[[0,1,3,1],[2,3,2,2],[2,2,0,2],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[2,2,0,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[2,2,0,2],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[2,2,0,3],[1,1,1,1]],[[0,1,2,1],[2,3,2,2],[2,2,0,2],[1,1,1,2]],[[0,1,3,1],[2,3,2,2],[2,2,0,2],[1,1,2,0]],[[0,1,2,2],[2,3,2,2],[2,2,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,3],[2,2,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,2,2],[2,2,0,3],[1,1,2,0]],[[1,2,2,1],[2,1,3,2],[0,2,2,3],[0,1,1,1]],[[1,2,2,1],[2,1,3,3],[0,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,2],[0,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,2],[0,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,3,2],[0,2,2,2],[0,0,2,2]],[[1,2,2,1],[2,1,3,2],[0,2,2,3],[0,0,2,1]],[[1,2,2,1],[2,1,3,3],[0,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,1,3,2],[0,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,1,3,2],[0,2,2,2],[0,0,2,1]],[[0,1,3,1],[2,3,2,2],[2,2,1,0],[0,2,2,1]],[[0,1,2,2],[2,3,2,2],[2,2,1,0],[0,2,2,1]],[[0,1,2,1],[2,3,2,3],[2,2,1,0],[0,2,2,1]],[[0,1,3,1],[2,3,2,2],[2,2,1,0],[1,1,2,1]],[[0,1,2,2],[2,3,2,2],[2,2,1,0],[1,1,2,1]],[[0,1,2,1],[2,3,2,3],[2,2,1,0],[1,1,2,1]],[[0,1,3,1],[2,3,2,2],[2,2,1,1],[0,2,2,0]],[[0,1,2,2],[2,3,2,2],[2,2,1,1],[0,2,2,0]],[[0,1,2,1],[2,3,2,3],[2,2,1,1],[0,2,2,0]],[[0,1,3,1],[2,3,2,2],[2,2,1,1],[1,1,2,0]],[[0,1,2,2],[2,3,2,2],[2,2,1,1],[1,1,2,0]],[[0,1,2,1],[2,3,2,3],[2,2,1,1],[1,1,2,0]],[[0,1,3,1],[2,3,2,2],[2,2,1,2],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[2,2,1,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[2,2,1,2],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[2,2,1,3],[0,1,1,1]],[[0,1,2,1],[2,3,2,2],[2,2,1,2],[0,1,1,2]],[[0,1,3,1],[2,3,2,2],[2,2,1,2],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[2,2,1,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[2,2,1,2],[0,1,2,0]],[[0,1,2,1],[2,3,2,2],[2,2,1,3],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[2,2,1,2],[0,2,0,1]],[[0,1,2,2],[2,3,2,2],[2,2,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,3],[2,2,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,2,2],[2,2,1,3],[0,2,0,1]],[[0,1,2,1],[2,3,2,2],[2,2,1,2],[0,2,0,2]],[[0,1,3,1],[2,3,2,2],[2,2,1,2],[0,2,1,0]],[[0,1,2,2],[2,3,2,2],[2,2,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,3],[2,2,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,2,2],[2,2,1,3],[0,2,1,0]],[[1,2,2,1],[2,1,3,3],[0,2,1,2],[1,2,1,0]],[[1,2,2,2],[2,1,3,2],[0,2,1,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,2],[0,2,1,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,2],[0,2,1,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,2],[0,2,1,2],[1,2,1,0]],[[0,1,3,1],[2,3,2,2],[2,2,1,2],[1,0,1,1]],[[0,1,2,2],[2,3,2,2],[2,2,1,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,3],[2,2,1,2],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[2,2,1,3],[1,0,1,1]],[[0,1,2,1],[2,3,2,2],[2,2,1,2],[1,0,1,2]],[[0,1,3,1],[2,3,2,2],[2,2,1,2],[1,0,2,0]],[[0,1,2,2],[2,3,2,2],[2,2,1,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,3],[2,2,1,2],[1,0,2,0]],[[0,1,2,1],[2,3,2,2],[2,2,1,3],[1,0,2,0]],[[0,1,3,1],[2,3,2,2],[2,2,1,2],[1,1,0,1]],[[0,1,2,2],[2,3,2,2],[2,2,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,3],[2,2,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,2,2],[2,2,1,3],[1,1,0,1]],[[0,1,2,1],[2,3,2,2],[2,2,1,2],[1,1,0,2]],[[0,1,3,1],[2,3,2,2],[2,2,1,2],[1,1,1,0]],[[0,1,2,2],[2,3,2,2],[2,2,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,3],[2,2,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,2,2],[2,2,1,3],[1,1,1,0]],[[1,2,2,1],[2,1,3,3],[0,2,1,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,2],[0,2,1,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,2],[0,2,1,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,2],[0,2,1,2],[1,2,0,1]],[[2,2,2,1],[2,1,3,2],[0,2,1,2],[1,2,0,1]],[[0,1,3,1],[2,3,2,2],[2,2,1,2],[1,2,0,0]],[[0,1,2,2],[2,3,2,2],[2,2,1,2],[1,2,0,0]],[[0,1,2,1],[2,3,2,3],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[2,1,3,3],[0,2,1,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,2],[0,2,1,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,2],[0,2,1,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,2],[0,2,1,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,2],[0,2,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,3,3],[0,2,1,2],[1,1,1,1]],[[1,2,2,2],[2,1,3,2],[0,2,1,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,2],[0,2,1,2],[1,1,1,1]],[[1,3,2,1],[2,1,3,2],[0,2,1,2],[1,1,1,1]],[[2,2,2,1],[2,1,3,2],[0,2,1,2],[1,1,1,1]],[[0,1,3,1],[2,3,2,2],[2,2,2,0],[0,1,2,1]],[[0,1,2,2],[2,3,2,2],[2,2,2,0],[0,1,2,1]],[[0,1,2,1],[2,3,2,3],[2,2,2,0],[0,1,2,1]],[[0,1,3,1],[2,3,2,2],[2,2,2,0],[0,2,1,1]],[[0,1,2,2],[2,3,2,2],[2,2,2,0],[0,2,1,1]],[[0,1,2,1],[2,3,2,3],[2,2,2,0],[0,2,1,1]],[[0,1,3,1],[2,3,2,2],[2,2,2,0],[1,0,2,1]],[[0,1,2,2],[2,3,2,2],[2,2,2,0],[1,0,2,1]],[[0,1,2,1],[2,3,2,3],[2,2,2,0],[1,0,2,1]],[[0,1,3,1],[2,3,2,2],[2,2,2,0],[1,1,1,1]],[[0,1,2,2],[2,3,2,2],[2,2,2,0],[1,1,1,1]],[[0,1,2,1],[2,3,2,3],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,3,2],[0,2,1,2],[0,1,2,2]],[[1,2,2,1],[2,1,3,2],[0,2,1,3],[0,1,2,1]],[[1,2,2,1],[2,1,3,3],[0,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,1,3,2],[0,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,1,3,2],[0,2,1,2],[0,1,2,1]],[[0,1,3,1],[2,3,2,2],[2,2,2,1],[0,1,1,1]],[[0,1,2,2],[2,3,2,2],[2,2,2,1],[0,1,1,1]],[[0,1,2,1],[2,3,2,3],[2,2,2,1],[0,1,1,1]],[[0,1,3,1],[2,3,2,2],[2,2,2,1],[0,1,2,0]],[[0,1,2,2],[2,3,2,2],[2,2,2,1],[0,1,2,0]],[[0,1,2,1],[2,3,2,3],[2,2,2,1],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[2,2,2,1],[0,2,0,1]],[[0,1,2,2],[2,3,2,2],[2,2,2,1],[0,2,0,1]],[[0,1,2,1],[2,3,2,3],[2,2,2,1],[0,2,0,1]],[[0,1,3,1],[2,3,2,2],[2,2,2,1],[0,2,1,0]],[[0,1,2,2],[2,3,2,2],[2,2,2,1],[0,2,1,0]],[[0,1,2,1],[2,3,2,3],[2,2,2,1],[0,2,1,0]],[[0,1,3,1],[2,3,2,2],[2,2,2,1],[1,0,1,1]],[[0,1,2,2],[2,3,2,2],[2,2,2,1],[1,0,1,1]],[[0,1,2,1],[2,3,2,3],[2,2,2,1],[1,0,1,1]],[[0,1,3,1],[2,3,2,2],[2,2,2,1],[1,0,2,0]],[[0,1,2,2],[2,3,2,2],[2,2,2,1],[1,0,2,0]],[[0,1,2,1],[2,3,2,3],[2,2,2,1],[1,0,2,0]],[[0,1,3,1],[2,3,2,2],[2,2,2,1],[1,1,0,1]],[[0,1,2,2],[2,3,2,2],[2,2,2,1],[1,1,0,1]],[[0,1,2,1],[2,3,2,3],[2,2,2,1],[1,1,0,1]],[[0,1,3,1],[2,3,2,2],[2,2,2,1],[1,1,1,0]],[[0,1,2,2],[2,3,2,2],[2,2,2,1],[1,1,1,0]],[[0,1,2,1],[2,3,2,3],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,3,3],[0,2,0,2],[1,1,2,1]],[[1,2,2,2],[2,1,3,2],[0,2,0,2],[1,1,2,1]],[[1,2,3,1],[2,1,3,2],[0,2,0,2],[1,1,2,1]],[[1,3,2,1],[2,1,3,2],[0,2,0,2],[1,1,2,1]],[[2,2,2,1],[2,1,3,2],[0,2,0,2],[1,1,2,1]],[[0,1,3,1],[2,3,2,2],[2,2,2,1],[1,2,0,0]],[[0,1,2,2],[2,3,2,2],[2,2,2,1],[1,2,0,0]],[[0,1,2,1],[2,3,2,3],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,3,3],[0,1,3,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,2],[0,1,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,2],[0,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,2],[0,1,3,3],[1,0,1,1]],[[1,2,2,1],[2,1,3,3],[0,1,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,2],[0,1,3,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,2],[0,1,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,3,2],[0,1,3,3],[0,1,2,0]],[[1,2,2,1],[2,1,3,3],[0,1,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,2],[0,1,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,2],[0,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,3,2],[0,1,3,2],[0,1,1,2]],[[1,2,2,1],[2,1,3,2],[0,1,3,3],[0,1,1,1]],[[1,2,2,1],[2,1,3,3],[0,1,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,2],[0,1,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,2],[0,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,3,2],[0,1,3,2],[0,0,2,2]],[[1,2,2,1],[2,1,3,2],[0,1,3,3],[0,0,2,1]],[[1,2,2,1],[2,1,3,3],[0,1,3,2],[0,0,2,1]],[[1,2,2,2],[2,1,3,2],[0,1,3,2],[0,0,2,1]],[[1,2,3,1],[2,1,3,2],[0,1,3,2],[0,0,2,1]],[[1,2,2,1],[2,1,3,3],[0,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,1,3,2],[0,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,1,3,2],[0,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,1,3,3],[0,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,1,3,2],[0,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,1,3,2],[0,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,4,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,1],[3,1,3,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,2],[2,1,3,2],[0,1,3,0],[1,2,2,0]],[[1,2,3,1],[2,1,3,2],[0,1,3,0],[1,2,2,0]],[[1,3,2,1],[2,1,3,2],[0,1,3,0],[1,2,2,0]],[[2,2,2,1],[2,1,3,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,1],[2,1,4,2],[0,1,3,0],[1,2,1,1]],[[1,2,2,2],[2,1,3,2],[0,1,3,0],[1,2,1,1]],[[1,2,3,1],[2,1,3,2],[0,1,3,0],[1,2,1,1]],[[1,3,2,1],[2,1,3,2],[0,1,3,0],[1,2,1,1]],[[2,2,2,1],[2,1,3,2],[0,1,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,3,3],[0,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,1,3,2],[0,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,1,3,2],[0,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,1,3,2],[0,1,2,3],[0,2,2,0]],[[1,2,2,1],[2,1,3,3],[0,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,2],[0,1,2,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,2],[0,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,2],[0,1,2,2],[0,2,1,2]],[[1,2,2,1],[2,1,3,2],[0,1,2,3],[0,2,1,1]],[[1,2,2,1],[2,1,3,3],[0,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,1,3,2],[0,1,2,2],[0,2,1,1]],[[1,2,3,1],[2,1,3,2],[0,1,2,2],[0,2,1,1]],[[1,2,2,1],[2,1,3,3],[0,1,1,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,2],[0,1,1,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,2],[0,1,1,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,2],[0,1,1,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,2],[0,1,1,2],[1,2,2,0]],[[0,1,3,1],[2,3,2,2],[2,2,3,1],[0,2,0,0]],[[0,1,2,2],[2,3,2,2],[2,2,3,1],[0,2,0,0]],[[0,1,2,1],[2,3,2,3],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,3,3],[0,1,1,2],[1,2,1,1]],[[1,2,2,2],[2,1,3,2],[0,1,1,2],[1,2,1,1]],[[1,2,3,1],[2,1,3,2],[0,1,1,2],[1,2,1,1]],[[1,3,2,1],[2,1,3,2],[0,1,1,2],[1,2,1,1]],[[2,2,2,1],[2,1,3,2],[0,1,1,2],[1,2,1,1]],[[1,2,2,1],[2,1,3,2],[0,1,1,2],[0,2,2,2]],[[1,2,2,1],[2,1,3,2],[0,1,1,3],[0,2,2,1]],[[1,2,2,1],[2,1,3,3],[0,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,1,3,2],[0,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,1,3,2],[0,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,3,3],[0,1,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,3,2],[0,1,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,3,2],[0,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,3,2],[0,1,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,3,2],[0,1,0,2],[1,2,2,1]],[[0,1,3,1],[2,3,2,2],[2,2,3,1],[1,1,0,0]],[[0,1,2,2],[2,3,2,2],[2,2,3,1],[1,1,0,0]],[[0,1,2,1],[2,3,2,3],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,3,2],[0,0,3,3],[0,2,2,0]],[[1,2,2,1],[2,1,3,3],[0,0,3,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,2],[0,0,3,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,2],[0,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,2],[0,0,3,2],[0,2,1,2]],[[1,2,2,1],[2,1,3,2],[0,0,3,3],[0,2,1,1]],[[1,2,2,1],[2,1,3,3],[0,0,3,2],[0,2,1,1]],[[1,2,2,2],[2,1,3,2],[0,0,3,2],[0,2,1,1]],[[1,2,3,1],[2,1,3,2],[0,0,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,3,2],[0,0,3,2],[0,1,2,2]],[[1,2,2,1],[2,1,3,2],[0,0,3,3],[0,1,2,1]],[[1,2,2,1],[2,1,3,3],[0,0,3,2],[0,1,2,1]],[[1,2,2,2],[2,1,3,2],[0,0,3,2],[0,1,2,1]],[[1,2,3,1],[2,1,3,2],[0,0,3,2],[0,1,2,1]],[[1,2,2,1],[2,1,3,2],[0,0,2,2],[0,2,2,2]],[[1,2,2,1],[2,1,3,2],[0,0,2,3],[0,2,2,1]],[[1,2,2,1],[2,1,3,3],[0,0,2,2],[0,2,2,1]],[[1,2,2,2],[2,1,3,2],[0,0,2,2],[0,2,2,1]],[[1,2,3,1],[2,1,3,2],[0,0,2,2],[0,2,2,1]],[[1,2,2,1],[2,1,3,1],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[2,1,4,1],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[3,1,3,1],[2,3,3,1],[1,0,0,0]],[[1,2,2,2],[2,1,3,1],[2,3,3,1],[1,0,0,0]],[[1,2,3,1],[2,1,3,1],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[2,1,3,1],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[2,1,3,1],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[2,1,3,1],[3,3,3,0],[1,0,1,0]],[[1,2,2,1],[2,1,4,1],[2,3,3,0],[1,0,1,0]],[[1,2,2,1],[3,1,3,1],[2,3,3,0],[1,0,1,0]],[[1,2,2,2],[2,1,3,1],[2,3,3,0],[1,0,1,0]],[[1,2,3,1],[2,1,3,1],[2,3,3,0],[1,0,1,0]],[[1,3,2,1],[2,1,3,1],[2,3,3,0],[1,0,1,0]],[[2,2,2,1],[2,1,3,1],[2,3,3,0],[1,0,1,0]],[[1,2,2,1],[2,1,3,1],[3,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,1,4,1],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[3,1,3,1],[2,3,2,1],[1,0,1,0]],[[1,2,2,2],[2,1,3,1],[2,3,2,1],[1,0,1,0]],[[1,2,3,1],[2,1,3,1],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[2,1,3,1],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[2,1,3,1],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,1,3,1],[3,3,2,1],[1,0,0,1]],[[1,2,2,1],[2,1,4,1],[2,3,2,1],[1,0,0,1]],[[1,2,2,1],[3,1,3,1],[2,3,2,1],[1,0,0,1]],[[1,2,2,2],[2,1,3,1],[2,3,2,1],[1,0,0,1]],[[1,2,3,1],[2,1,3,1],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[2,1,3,1],[2,3,2,1],[1,0,0,1]],[[2,2,2,1],[2,1,3,1],[2,3,2,1],[1,0,0,1]],[[1,2,2,1],[2,1,3,1],[3,3,2,0],[1,0,1,1]],[[1,2,2,1],[2,1,4,1],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[3,1,3,1],[2,3,2,0],[1,0,1,1]],[[1,2,2,2],[2,1,3,1],[2,3,2,0],[1,0,1,1]],[[1,2,3,1],[2,1,3,1],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,1,3,1],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,1,3,1],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[2,1,3,1],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,1,4,1],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[3,1,3,1],[2,3,1,2],[1,0,1,0]],[[1,2,2,2],[2,1,3,1],[2,3,1,2],[1,0,1,0]],[[1,2,3,1],[2,1,3,1],[2,3,1,2],[1,0,1,0]],[[1,3,2,1],[2,1,3,1],[2,3,1,2],[1,0,1,0]],[[2,2,2,1],[2,1,3,1],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,1,3,1],[3,3,1,2],[1,0,0,1]],[[0,1,3,1],[2,3,2,2],[2,3,1,2],[1,0,0,1]],[[0,1,2,2],[2,3,2,2],[2,3,1,2],[1,0,0,1]],[[0,1,2,1],[2,3,2,3],[2,3,1,2],[1,0,0,1]],[[0,1,2,1],[2,3,2,2],[2,3,1,3],[1,0,0,1]],[[0,1,3,1],[2,3,2,2],[2,3,1,2],[1,0,1,0]],[[0,1,2,2],[2,3,2,2],[2,3,1,2],[1,0,1,0]],[[0,1,2,1],[2,3,2,3],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,1,4,1],[2,3,1,2],[1,0,0,1]],[[1,2,2,1],[3,1,3,1],[2,3,1,2],[1,0,0,1]],[[1,2,2,2],[2,1,3,1],[2,3,1,2],[1,0,0,1]],[[1,2,3,1],[2,1,3,1],[2,3,1,2],[1,0,0,1]],[[1,3,2,1],[2,1,3,1],[2,3,1,2],[1,0,0,1]],[[2,2,2,1],[2,1,3,1],[2,3,1,2],[1,0,0,1]],[[0,1,3,1],[2,3,2,2],[2,3,2,1],[1,0,0,1]],[[0,1,2,2],[2,3,2,2],[2,3,2,1],[1,0,0,1]],[[0,1,2,1],[2,3,2,3],[2,3,2,1],[1,0,0,1]],[[0,1,3,1],[2,3,2,2],[2,3,2,1],[1,0,1,0]],[[0,1,2,2],[2,3,2,2],[2,3,2,1],[1,0,1,0]],[[0,1,2,1],[2,3,2,3],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,1,3,1],[2,2,3,1],[2,1,0,0]],[[1,2,2,1],[2,1,3,1],[3,2,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,4,1],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[3,1,3,1],[2,2,3,1],[1,1,0,0]],[[1,2,2,2],[2,1,3,1],[2,2,3,1],[1,1,0,0]],[[1,2,3,1],[2,1,3,1],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[2,1,3,1],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[2,1,3,1],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,3,1],[3,2,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,4,1],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[3,1,3,1],[2,2,3,1],[0,2,0,0]],[[1,2,2,2],[2,1,3,1],[2,2,3,1],[0,2,0,0]],[[1,2,3,1],[2,1,3,1],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[2,1,3,1],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[2,1,3,1],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,3,1],[2,2,3,0],[2,2,0,0]],[[1,2,2,1],[2,1,3,1],[3,2,3,0],[1,2,0,0]],[[1,2,2,1],[2,1,4,1],[2,2,3,0],[1,2,0,0]],[[1,2,2,1],[3,1,3,1],[2,2,3,0],[1,2,0,0]],[[1,2,2,2],[2,1,3,1],[2,2,3,0],[1,2,0,0]],[[1,2,3,1],[2,1,3,1],[2,2,3,0],[1,2,0,0]],[[1,3,2,1],[2,1,3,1],[2,2,3,0],[1,2,0,0]],[[2,2,2,1],[2,1,3,1],[2,2,3,0],[1,2,0,0]],[[1,2,2,1],[2,1,3,1],[2,2,3,0],[2,1,1,0]],[[1,2,2,1],[2,1,3,1],[3,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[3,1,3,1],[2,2,3,0],[1,1,1,0]],[[1,2,2,2],[2,1,3,1],[2,2,3,0],[1,1,1,0]],[[1,2,3,1],[2,1,3,1],[2,2,3,0],[1,1,1,0]],[[1,3,2,1],[2,1,3,1],[2,2,3,0],[1,1,1,0]],[[2,2,2,1],[2,1,3,1],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,1,3,1],[2,2,3,0],[2,0,2,0]],[[1,2,2,1],[2,1,3,1],[3,2,3,0],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[2,2,3,0],[1,0,2,0]],[[1,2,2,1],[3,1,3,1],[2,2,3,0],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[2,2,3,0],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[2,2,3,0],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[2,2,3,0],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[2,2,3,0],[1,0,2,0]],[[1,2,2,1],[2,1,3,1],[3,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[3,1,3,1],[2,2,3,0],[0,2,1,0]],[[1,2,2,2],[2,1,3,1],[2,2,3,0],[0,2,1,0]],[[1,2,3,1],[2,1,3,1],[2,2,3,0],[0,2,1,0]],[[1,3,2,1],[2,1,3,1],[2,2,3,0],[0,2,1,0]],[[2,2,2,1],[2,1,3,1],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,3,1],[3,2,3,0],[0,1,2,0]],[[1,2,2,1],[2,1,4,1],[2,2,3,0],[0,1,2,0]],[[1,2,2,1],[3,1,3,1],[2,2,3,0],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[2,2,3,0],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[2,2,3,0],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[2,2,3,0],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[2,2,3,0],[0,1,2,0]],[[0,1,3,1],[2,3,2,2],[2,3,3,1],[1,0,0,0]],[[0,1,2,2],[2,3,2,2],[2,3,3,1],[1,0,0,0]],[[0,1,2,1],[2,3,2,3],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[2,1,3,1],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[2,1,3,1],[3,2,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,4,1],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[3,1,3,1],[2,2,2,1],[1,2,0,0]],[[1,2,2,2],[2,1,3,1],[2,2,2,1],[1,2,0,0]],[[1,2,3,1],[2,1,3,1],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[2,1,3,1],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[2,1,3,1],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,3,1],[2,2,2,1],[2,1,1,0]],[[1,2,2,1],[2,1,3,1],[3,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[3,1,3,1],[2,2,2,1],[1,1,1,0]],[[1,2,2,2],[2,1,3,1],[2,2,2,1],[1,1,1,0]],[[1,2,3,1],[2,1,3,1],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[2,1,3,1],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[2,1,3,1],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,3,1],[2,2,2,1],[2,1,0,1]],[[1,2,2,1],[2,1,3,1],[3,2,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,4,1],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[3,1,3,1],[2,2,2,1],[1,1,0,1]],[[1,2,2,2],[2,1,3,1],[2,2,2,1],[1,1,0,1]],[[1,2,3,1],[2,1,3,1],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[2,1,3,1],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[2,1,3,1],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,3,1],[2,2,2,1],[2,0,2,0]],[[1,2,2,1],[2,1,3,1],[3,2,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[3,1,3,1],[2,2,2,1],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[2,2,2,1],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,3,1],[2,2,2,1],[2,0,1,1]],[[1,2,2,1],[2,1,3,1],[3,2,2,1],[1,0,1,1]],[[1,2,2,1],[2,1,4,1],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[3,1,3,1],[2,2,2,1],[1,0,1,1]],[[1,2,2,2],[2,1,3,1],[2,2,2,1],[1,0,1,1]],[[1,2,3,1],[2,1,3,1],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[2,1,3,1],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[2,1,3,1],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[2,1,3,1],[3,2,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[3,1,3,1],[2,2,2,1],[0,2,1,0]],[[1,2,2,2],[2,1,3,1],[2,2,2,1],[0,2,1,0]],[[1,2,3,1],[2,1,3,1],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[2,1,3,1],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[2,1,3,1],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,3,1],[3,2,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,4,1],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[3,1,3,1],[2,2,2,1],[0,2,0,1]],[[1,2,2,2],[2,1,3,1],[2,2,2,1],[0,2,0,1]],[[1,2,3,1],[2,1,3,1],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[2,1,3,1],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[2,1,3,1],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,3,1],[3,2,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,4,1],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[3,1,3,1],[2,2,2,1],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[2,2,2,1],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,3,1],[3,2,2,1],[0,1,1,1]],[[1,2,2,1],[2,1,4,1],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[3,1,3,1],[2,2,2,1],[0,1,1,1]],[[1,2,2,2],[2,1,3,1],[2,2,2,1],[0,1,1,1]],[[1,2,3,1],[2,1,3,1],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[2,1,3,1],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[2,1,3,1],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[2,1,3,1],[2,2,2,0],[2,2,0,1]],[[1,2,2,1],[2,1,3,1],[3,2,2,0],[1,2,0,1]],[[1,2,2,1],[2,1,4,1],[2,2,2,0],[1,2,0,1]],[[1,2,2,1],[3,1,3,1],[2,2,2,0],[1,2,0,1]],[[1,2,2,2],[2,1,3,1],[2,2,2,0],[1,2,0,1]],[[1,2,3,1],[2,1,3,1],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[2,1,3,1],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[2,1,3,1],[2,2,2,0],[1,2,0,1]],[[1,2,2,1],[2,1,3,1],[2,2,2,0],[2,1,1,1]],[[1,2,2,1],[2,1,3,1],[3,2,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[2,2,2,0],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[2,2,2,0],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,3,1],[2,2,2,0],[2,0,2,1]],[[1,2,2,1],[2,1,3,1],[3,2,2,0],[1,0,2,1]],[[1,2,2,1],[2,1,4,1],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[3,1,3,1],[2,2,2,0],[1,0,2,1]],[[1,2,2,2],[2,1,3,1],[2,2,2,0],[1,0,2,1]],[[1,2,3,1],[2,1,3,1],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[2,1,3,1],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[2,1,3,1],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[2,1,3,1],[3,2,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,4,1],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[3,1,3,1],[2,2,2,0],[0,2,1,1]],[[1,2,2,2],[2,1,3,1],[2,2,2,0],[0,2,1,1]],[[1,2,3,1],[2,1,3,1],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[2,1,3,1],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[2,1,3,1],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,3,1],[3,2,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,4,1],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[3,1,3,1],[2,2,2,0],[0,1,2,1]],[[1,2,2,2],[2,1,3,1],[2,2,2,0],[0,1,2,1]],[[1,2,3,1],[2,1,3,1],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[2,1,3,1],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[2,1,3,1],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,3,1],[2,2,1,2],[2,2,0,0]],[[1,2,2,1],[2,1,3,1],[3,2,1,2],[1,2,0,0]],[[1,2,2,1],[2,1,4,1],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[3,1,3,1],[2,2,1,2],[1,2,0,0]],[[1,2,2,2],[2,1,3,1],[2,2,1,2],[1,2,0,0]],[[1,2,3,1],[2,1,3,1],[2,2,1,2],[1,2,0,0]],[[1,3,2,1],[2,1,3,1],[2,2,1,2],[1,2,0,0]],[[2,2,2,1],[2,1,3,1],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[2,1,3,1],[2,2,1,2],[2,1,1,0]],[[1,2,2,1],[2,1,3,1],[3,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[3,1,3,1],[2,2,1,2],[1,1,1,0]],[[1,2,2,2],[2,1,3,1],[2,2,1,2],[1,1,1,0]],[[1,2,3,1],[2,1,3,1],[2,2,1,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,1],[2,2,1,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,1],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,3,1],[2,2,1,2],[2,1,0,1]],[[1,2,2,1],[2,1,3,1],[3,2,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,4,1],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,1],[2,2,1,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,1],[2,2,1,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,1],[2,2,1,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,1],[2,2,1,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,1],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,3,1],[2,2,1,2],[2,0,2,0]],[[1,2,2,1],[2,1,3,1],[3,2,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,1],[2,2,1,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[2,2,1,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[2,2,1,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[2,2,1,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,1],[2,2,1,2],[2,0,1,1]],[[1,2,2,1],[2,1,3,1],[3,2,1,2],[1,0,1,1]],[[1,2,2,1],[2,1,4,1],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,1],[2,2,1,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,1],[2,2,1,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,1],[2,2,1,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,1],[2,2,1,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,1],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[2,1,3,1],[3,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[3,1,3,1],[2,2,1,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,1],[2,2,1,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,1],[2,2,1,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,1],[2,2,1,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,1],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,1],[3,2,1,2],[0,2,0,1]],[[1,2,2,1],[2,1,4,1],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[3,1,3,1],[2,2,1,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,1],[2,2,1,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,1],[2,2,1,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,1],[2,2,1,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,1],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[2,1,3,1],[3,2,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,4,1],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,1],[2,2,1,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[2,2,1,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[2,2,1,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[2,2,1,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,3,1],[3,2,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,4,1],[2,2,1,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,1],[2,2,1,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,1],[2,2,1,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,1],[2,2,1,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,1],[2,2,1,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,1],[2,2,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,3,1],[2,2,1,1],[2,1,2,0]],[[1,2,2,1],[2,1,3,1],[3,2,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[3,1,3,1],[2,2,1,1],[1,1,2,0]],[[1,2,2,2],[2,1,3,1],[2,2,1,1],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[2,1,3,1],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[2,1,3,1],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,3,1],[3,2,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,4,1],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[3,1,3,1],[2,2,1,1],[0,2,2,0]],[[1,2,2,2],[2,1,3,1],[2,2,1,1],[0,2,2,0]],[[1,2,3,1],[2,1,3,1],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[2,1,3,1],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[2,1,3,1],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,3,1],[2,2,1,0],[2,1,2,1]],[[1,2,2,1],[2,1,3,1],[3,2,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[3,1,3,1],[2,2,1,0],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[2,2,1,0],[1,1,2,1]],[[1,2,3,1],[2,1,3,1],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,3,1],[3,2,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,4,1],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[3,1,3,1],[2,2,1,0],[0,2,2,1]],[[1,2,2,2],[2,1,3,1],[2,2,1,0],[0,2,2,1]],[[1,2,3,1],[2,1,3,1],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[2,1,3,1],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[2,1,3,1],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,3,1],[2,2,0,2],[2,1,2,0]],[[1,2,2,1],[2,1,3,1],[3,2,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[3,1,3,1],[2,2,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[0,0,3,3],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,0,3,2],[1,2,3,1]],[[0,1,2,1],[2,3,3,0],[0,0,3,2],[1,2,2,2]],[[0,1,2,1],[2,3,3,0],[0,1,2,3],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,1,2,2],[2,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,1,2,2],[1,3,2,1]],[[0,1,2,1],[2,3,3,0],[0,1,2,2],[1,2,3,1]],[[0,1,2,1],[2,3,3,0],[0,1,2,2],[1,2,2,2]],[[0,1,3,1],[2,3,3,0],[0,1,3,1],[1,2,2,1]],[[0,1,2,2],[2,3,3,0],[0,1,3,1],[1,2,2,1]],[[0,1,2,1],[3,3,3,0],[0,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,4,3,0],[0,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,3,4,0],[0,1,3,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,1,4,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,1,3,1],[2,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,1,3,1],[1,3,2,1]],[[0,1,2,1],[2,3,3,0],[0,1,3,1],[1,2,3,1]],[[0,1,2,1],[2,3,3,0],[0,1,3,1],[1,2,2,2]],[[0,1,3,1],[2,3,3,0],[0,1,3,2],[1,2,1,1]],[[0,1,2,2],[2,3,3,0],[0,1,3,2],[1,2,1,1]],[[0,1,2,1],[3,3,3,0],[0,1,3,2],[1,2,1,1]],[[0,1,2,1],[2,4,3,0],[0,1,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,4,0],[0,1,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[0,1,4,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[0,1,3,3],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[0,1,3,2],[1,2,1,2]],[[0,1,3,1],[2,3,3,0],[0,1,3,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,0],[0,1,3,2],[1,2,2,0]],[[0,1,2,1],[3,3,3,0],[0,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,4,3,0],[0,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,4,0],[0,1,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[0,1,4,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[0,1,3,3],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[0,1,3,2],[2,2,2,0]],[[0,1,2,1],[2,3,3,0],[0,1,3,2],[1,3,2,0]],[[0,1,2,1],[2,3,3,0],[0,1,3,2],[1,2,3,0]],[[0,1,2,1],[2,3,3,0],[0,2,2,3],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[0,2,2,2],[1,1,3,1]],[[0,1,2,1],[2,3,3,0],[0,2,2,2],[1,1,2,2]],[[0,1,3,1],[2,3,3,0],[0,2,3,1],[1,1,2,1]],[[0,1,2,2],[2,3,3,0],[0,2,3,1],[1,1,2,1]],[[0,1,2,1],[3,3,3,0],[0,2,3,1],[1,1,2,1]],[[0,1,2,1],[2,4,3,0],[0,2,3,1],[1,1,2,1]],[[0,1,2,1],[2,3,4,0],[0,2,3,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[0,2,4,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[0,2,3,1],[1,1,3,1]],[[0,1,2,1],[2,3,3,0],[0,2,3,1],[1,1,2,2]],[[0,1,3,1],[2,3,3,0],[0,2,3,1],[1,2,1,1]],[[0,1,2,2],[2,3,3,0],[0,2,3,1],[1,2,1,1]],[[0,1,2,1],[3,3,3,0],[0,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,4,3,0],[0,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,4,0],[0,2,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[0,2,4,1],[1,2,1,1]],[[0,1,3,1],[2,3,3,0],[0,2,3,2],[1,0,2,1]],[[0,1,2,2],[2,3,3,0],[0,2,3,2],[1,0,2,1]],[[0,1,2,1],[2,4,3,0],[0,2,3,2],[1,0,2,1]],[[0,1,2,1],[2,3,4,0],[0,2,3,2],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[0,2,4,2],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[0,2,3,3],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[0,2,3,2],[1,0,2,2]],[[0,1,3,1],[2,3,3,0],[0,2,3,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,0],[0,2,3,2],[1,1,1,1]],[[0,1,2,1],[3,3,3,0],[0,2,3,2],[1,1,1,1]],[[0,1,2,1],[2,4,3,0],[0,2,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,4,0],[0,2,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[0,2,4,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[0,2,3,3],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[0,2,3,2],[1,1,1,2]],[[0,1,3,1],[2,3,3,0],[0,2,3,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,0],[0,2,3,2],[1,1,2,0]],[[0,1,2,1],[3,3,3,0],[0,2,3,2],[1,1,2,0]],[[0,1,2,1],[2,4,3,0],[0,2,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,4,0],[0,2,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[0,2,4,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[0,2,3,3],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[0,2,3,2],[1,1,3,0]],[[0,1,3,1],[2,3,3,0],[0,2,3,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,0],[0,2,3,2],[1,2,0,1]],[[0,1,2,1],[3,3,3,0],[0,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,4,3,0],[0,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,4,0],[0,2,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[0,2,4,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[0,2,3,3],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[0,2,3,2],[1,2,0,2]],[[0,1,3,1],[2,3,3,0],[0,2,3,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,0],[0,2,3,2],[1,2,1,0]],[[0,1,2,1],[3,3,3,0],[0,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,4,3,0],[0,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,4,0],[0,2,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[0,2,4,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[0,2,3,3],[1,2,1,0]],[[1,2,2,2],[2,1,3,1],[2,2,0,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[2,2,0,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,1],[2,2,0,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,1],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,3,1],[2,2,0,2],[2,1,1,1]],[[1,2,2,1],[2,1,3,1],[3,2,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[2,2,0,2],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[2,2,0,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[2,2,0,2],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[2,2,0,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,0],[0,3,0,2],[1,2,2,1]],[[0,1,2,2],[2,3,3,0],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[3,3,3,0],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,4,3,0],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,4,0],[0,3,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,4,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,0,3],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,0,2],[2,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,0,2],[1,3,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,0,2],[1,2,3,1]],[[0,1,2,1],[2,3,3,0],[0,3,0,2],[1,2,2,2]],[[0,1,3,1],[2,3,3,0],[0,3,1,1],[1,2,2,1]],[[0,1,2,2],[2,3,3,0],[0,3,1,1],[1,2,2,1]],[[0,1,2,1],[3,3,3,0],[0,3,1,1],[1,2,2,1]],[[0,1,2,1],[2,4,3,0],[0,3,1,1],[1,2,2,1]],[[0,1,2,1],[2,3,4,0],[0,3,1,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,4,1,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,1,1],[2,2,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,1,1],[1,3,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,1,1],[1,2,3,1]],[[0,1,2,1],[2,3,3,0],[0,3,1,1],[1,2,2,2]],[[0,1,3,1],[2,3,3,0],[0,3,1,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,0],[0,3,1,2],[1,2,2,0]],[[0,1,2,1],[3,3,3,0],[0,3,1,2],[1,2,2,0]],[[0,1,2,1],[2,4,3,0],[0,3,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,4,0],[0,3,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[0,4,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[0,3,1,2],[2,2,2,0]],[[0,1,2,1],[2,3,3,0],[0,3,1,2],[1,3,2,0]],[[0,1,2,1],[2,3,3,0],[0,3,1,2],[1,2,3,0]],[[0,1,3,1],[2,3,3,0],[0,3,2,1],[1,1,2,1]],[[0,1,2,2],[2,3,3,0],[0,3,2,1],[1,1,2,1]],[[0,1,2,1],[3,3,3,0],[0,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,4,3,0],[0,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,3,4,0],[0,3,2,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[0,4,2,1],[1,1,2,1]],[[0,1,3,1],[2,3,3,0],[0,3,2,1],[1,2,1,1]],[[0,1,2,2],[2,3,3,0],[0,3,2,1],[1,2,1,1]],[[0,1,2,1],[3,3,3,0],[0,3,2,1],[1,2,1,1]],[[0,1,2,1],[2,4,3,0],[0,3,2,1],[1,2,1,1]],[[0,1,2,1],[2,3,4,0],[0,3,2,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[0,4,2,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[0,3,2,1],[2,2,1,1]],[[0,1,2,1],[2,3,3,0],[0,3,2,1],[1,3,1,1]],[[0,1,2,1],[2,3,3,0],[0,3,2,3],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,2,2],[0,1,3,1]],[[0,1,2,1],[2,3,3,0],[0,3,2,2],[0,1,2,2]],[[0,1,3,1],[2,3,3,0],[0,3,2,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,0],[0,3,2,2],[1,1,1,1]],[[0,1,2,1],[3,3,3,0],[0,3,2,2],[1,1,1,1]],[[0,1,2,1],[2,4,3,0],[0,3,2,2],[1,1,1,1]],[[0,1,2,1],[2,3,4,0],[0,3,2,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[0,4,2,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,0],[0,3,2,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,0],[0,3,2,2],[1,1,2,0]],[[0,1,2,1],[3,3,3,0],[0,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,4,3,0],[0,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,4,0],[0,3,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[0,4,2,2],[1,1,2,0]],[[0,1,3,1],[2,3,3,0],[0,3,2,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,0],[0,3,2,2],[1,2,0,1]],[[0,1,2,1],[3,3,3,0],[0,3,2,2],[1,2,0,1]],[[0,1,2,1],[2,4,3,0],[0,3,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,4,0],[0,3,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[0,4,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[0,3,2,2],[2,2,0,1]],[[0,1,2,1],[2,3,3,0],[0,3,2,2],[1,3,0,1]],[[0,1,3,1],[2,3,3,0],[0,3,2,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,0],[0,3,2,2],[1,2,1,0]],[[0,1,2,1],[3,3,3,0],[0,3,2,2],[1,2,1,0]],[[0,1,2,1],[2,4,3,0],[0,3,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,4,0],[0,3,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[0,4,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[0,3,2,2],[2,2,1,0]],[[0,1,2,1],[2,3,3,0],[0,3,2,2],[1,3,1,0]],[[2,2,2,1],[2,1,3,1],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,3,1],[2,2,0,2],[2,0,2,1]],[[1,2,2,1],[2,1,3,1],[3,2,0,2],[1,0,2,1]],[[1,2,2,1],[2,1,4,1],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[3,1,3,1],[2,2,0,2],[1,0,2,1]],[[1,2,2,2],[2,1,3,1],[2,2,0,2],[1,0,2,1]],[[1,2,3,1],[2,1,3,1],[2,2,0,2],[1,0,2,1]],[[1,3,2,1],[2,1,3,1],[2,2,0,2],[1,0,2,1]],[[2,2,2,1],[2,1,3,1],[2,2,0,2],[1,0,2,1]],[[0,1,3,1],[2,3,3,0],[0,3,3,1],[0,1,2,1]],[[0,1,2,2],[2,3,3,0],[0,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,4,3,0],[0,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,4,0],[0,3,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,4,1],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,3,1],[0,1,3,1]],[[0,1,2,1],[2,3,3,0],[0,3,3,1],[0,1,2,2]],[[0,1,3,1],[2,3,3,0],[0,3,3,1],[0,2,1,1]],[[0,1,2,2],[2,3,3,0],[0,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,4,3,0],[0,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,4,0],[0,3,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[0,3,4,1],[0,2,1,1]],[[1,2,2,1],[2,1,3,1],[3,2,0,2],[0,2,2,0]],[[1,2,2,1],[2,1,4,1],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[3,1,3,1],[2,2,0,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,1],[2,2,0,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,1],[2,2,0,2],[0,2,2,0]],[[1,3,2,1],[2,1,3,1],[2,2,0,2],[0,2,2,0]],[[0,1,3,1],[2,3,3,0],[0,3,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,0],[0,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,4,3,0],[0,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,4,0],[0,3,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,4,2],[0,0,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,3,3],[0,0,2,1]],[[0,1,2,1],[2,3,3,0],[0,3,3,2],[0,0,2,2]],[[0,1,3,1],[2,3,3,0],[0,3,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,0],[0,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,4,3,0],[0,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,0],[0,3,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[0,3,4,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[0,3,3,3],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[0,3,3,2],[0,1,1,2]],[[0,1,3,1],[2,3,3,0],[0,3,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,0],[0,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,4,3,0],[0,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,0],[0,3,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[0,3,4,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[0,3,3,3],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[0,3,3,2],[0,1,3,0]],[[0,1,3,1],[2,3,3,0],[0,3,3,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,0],[0,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,0],[0,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,4,0],[0,3,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[0,3,4,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[0,3,3,3],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[0,3,3,2],[0,2,0,2]],[[0,1,3,1],[2,3,3,0],[0,3,3,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,0],[0,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,0],[0,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,4,0],[0,3,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,0],[0,3,4,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,0],[0,3,3,3],[0,2,1,0]],[[2,2,2,1],[2,1,3,1],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,1],[3,2,0,2],[0,2,1,1]],[[1,2,2,1],[2,1,4,1],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[3,1,3,1],[2,2,0,2],[0,2,1,1]],[[1,2,2,2],[2,1,3,1],[2,2,0,2],[0,2,1,1]],[[1,2,3,1],[2,1,3,1],[2,2,0,2],[0,2,1,1]],[[1,3,2,1],[2,1,3,1],[2,2,0,2],[0,2,1,1]],[[2,2,2,1],[2,1,3,1],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[2,1,3,1],[3,2,0,2],[0,1,2,1]],[[1,2,2,1],[2,1,4,1],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[3,1,3,1],[2,2,0,2],[0,1,2,1]],[[1,2,2,2],[2,1,3,1],[2,2,0,2],[0,1,2,1]],[[1,2,3,1],[2,1,3,1],[2,2,0,2],[0,1,2,1]],[[1,3,2,1],[2,1,3,1],[2,2,0,2],[0,1,2,1]],[[2,2,2,1],[2,1,3,1],[2,2,0,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,0],[0,3,3,2],[1,2,0,0]],[[0,1,2,2],[2,3,3,0],[0,3,3,2],[1,2,0,0]],[[0,1,2,1],[3,3,3,0],[0,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,4,3,0],[0,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,3,4,0],[0,3,3,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,0],[0,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,1,3,1],[2,2,0,1],[2,1,2,1]],[[1,2,2,1],[2,1,3,1],[3,2,0,1],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[3,1,3,1],[2,2,0,1],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[2,2,0,1],[1,1,2,1]],[[1,2,3,1],[2,1,3,1],[2,2,0,1],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[2,2,0,1],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[2,1,3,1],[3,2,0,1],[0,2,2,1]],[[1,2,2,1],[2,1,4,1],[2,2,0,1],[0,2,2,1]],[[1,2,2,1],[3,1,3,1],[2,2,0,1],[0,2,2,1]],[[1,2,2,2],[2,1,3,1],[2,2,0,1],[0,2,2,1]],[[1,2,3,1],[2,1,3,1],[2,2,0,1],[0,2,2,1]],[[1,3,2,1],[2,1,3,1],[2,2,0,1],[0,2,2,1]],[[2,2,2,1],[2,1,3,1],[2,2,0,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,0,2,3],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,0,2,2],[2,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,0,2,2],[1,3,2,1]],[[0,1,2,1],[2,3,3,0],[1,0,2,2],[1,2,3,1]],[[0,1,2,1],[2,3,3,0],[1,0,2,2],[1,2,2,2]],[[0,1,3,1],[2,3,3,0],[1,0,3,1],[1,2,2,1]],[[0,1,2,2],[2,3,3,0],[1,0,3,1],[1,2,2,1]],[[0,1,2,1],[3,3,3,0],[1,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,4,3,0],[1,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,3,4,0],[1,0,3,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,0,4,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,0,3,1],[2,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,0,3,1],[1,3,2,1]],[[0,1,2,1],[2,3,3,0],[1,0,3,1],[1,2,3,1]],[[0,1,2,1],[2,3,3,0],[1,0,3,1],[1,2,2,2]],[[0,1,2,1],[2,3,3,0],[1,0,3,3],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,0,3,2],[0,2,3,1]],[[0,1,2,1],[2,3,3,0],[1,0,3,2],[0,2,2,2]],[[0,1,3,1],[2,3,3,0],[1,0,3,2],[1,2,1,1]],[[0,1,2,2],[2,3,3,0],[1,0,3,2],[1,2,1,1]],[[0,1,2,1],[3,3,3,0],[1,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,4,3,0],[1,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,4,0],[1,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[1,0,4,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[1,0,3,3],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[1,0,3,2],[1,2,1,2]],[[0,1,3,1],[2,3,3,0],[1,0,3,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,0],[1,0,3,2],[1,2,2,0]],[[0,1,2,1],[3,3,3,0],[1,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,4,3,0],[1,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,4,0],[1,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[1,0,4,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[1,0,3,3],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[1,0,3,2],[2,2,2,0]],[[0,1,2,1],[2,3,3,0],[1,0,3,2],[1,3,2,0]],[[0,1,2,1],[2,3,3,0],[1,0,3,2],[1,2,3,0]],[[0,1,2,1],[2,3,3,0],[1,1,2,3],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,1,2,2],[0,3,2,1]],[[0,1,2,1],[2,3,3,0],[1,1,2,2],[0,2,3,1]],[[0,1,2,1],[2,3,3,0],[1,1,2,2],[0,2,2,2]],[[0,1,3,1],[2,3,3,0],[1,1,3,1],[0,2,2,1]],[[0,1,2,2],[2,3,3,0],[1,1,3,1],[0,2,2,1]],[[0,1,2,1],[3,3,3,0],[1,1,3,1],[0,2,2,1]],[[0,1,2,1],[2,4,3,0],[1,1,3,1],[0,2,2,1]],[[0,1,2,1],[2,3,4,0],[1,1,3,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,1,4,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,1,3,1],[0,3,2,1]],[[0,1,2,1],[2,3,3,0],[1,1,3,1],[0,2,3,1]],[[0,1,2,1],[2,3,3,0],[1,1,3,1],[0,2,2,2]],[[0,1,3,1],[2,3,3,0],[1,1,3,2],[0,2,1,1]],[[0,1,2,2],[2,3,3,0],[1,1,3,2],[0,2,1,1]],[[0,1,2,1],[3,3,3,0],[1,1,3,2],[0,2,1,1]],[[0,1,2,1],[2,4,3,0],[1,1,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,4,0],[1,1,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[1,1,4,2],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[1,1,3,3],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[1,1,3,2],[0,2,1,2]],[[0,1,3,1],[2,3,3,0],[1,1,3,2],[0,2,2,0]],[[0,1,2,2],[2,3,3,0],[1,1,3,2],[0,2,2,0]],[[0,1,2,1],[3,3,3,0],[1,1,3,2],[0,2,2,0]],[[0,1,2,1],[2,4,3,0],[1,1,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,4,0],[1,1,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,0],[1,1,4,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,0],[1,1,3,3],[0,2,2,0]],[[0,1,2,1],[2,3,3,0],[1,1,3,2],[0,3,2,0]],[[0,1,2,1],[2,3,3,0],[1,1,3,2],[0,2,3,0]],[[0,1,2,1],[2,3,3,0],[1,2,2,3],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[1,2,2,2],[0,1,3,1]],[[0,1,2,1],[2,3,3,0],[1,2,2,2],[0,1,2,2]],[[0,1,2,1],[2,3,3,0],[1,2,2,3],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[1,2,2,2],[1,0,3,1]],[[0,1,2,1],[2,3,3,0],[1,2,2,2],[1,0,2,2]],[[0,1,3,1],[2,3,3,0],[1,2,3,1],[0,1,2,1]],[[0,1,2,2],[2,3,3,0],[1,2,3,1],[0,1,2,1]],[[0,1,2,1],[3,3,3,0],[1,2,3,1],[0,1,2,1]],[[0,1,2,1],[2,4,3,0],[1,2,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,4,0],[1,2,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[1,2,4,1],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,1],[0,1,3,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,1],[0,1,2,2]],[[0,1,3,1],[2,3,3,0],[1,2,3,1],[0,2,1,1]],[[0,1,2,2],[2,3,3,0],[1,2,3,1],[0,2,1,1]],[[0,1,2,1],[3,3,3,0],[1,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,4,3,0],[1,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,4,0],[1,2,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[1,2,4,1],[0,2,1,1]],[[0,1,3,1],[2,3,3,0],[1,2,3,1],[1,0,2,1]],[[0,1,2,2],[2,3,3,0],[1,2,3,1],[1,0,2,1]],[[0,1,2,1],[3,3,3,0],[1,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,4,3,0],[1,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,4,0],[1,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[1,2,4,1],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,1],[1,0,3,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,1],[1,0,2,2]],[[0,1,3,1],[2,3,3,0],[1,2,3,1],[1,1,1,1]],[[0,1,2,2],[2,3,3,0],[1,2,3,1],[1,1,1,1]],[[0,1,2,1],[3,3,3,0],[1,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,4,3,0],[1,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,4,0],[1,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[1,2,4,1],[1,1,1,1]],[[0,1,3,1],[2,3,3,0],[1,2,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,0],[1,2,3,2],[0,0,2,1]],[[0,1,2,1],[3,3,3,0],[1,2,3,2],[0,0,2,1]],[[0,1,2,1],[2,4,3,0],[1,2,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,4,0],[1,2,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,3,0],[1,2,4,2],[0,0,2,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,3],[0,0,2,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,2],[0,0,2,2]],[[0,1,3,1],[2,3,3,0],[1,2,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,0],[1,2,3,2],[0,1,1,1]],[[0,1,2,1],[3,3,3,0],[1,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,4,3,0],[1,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,0],[1,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[1,2,4,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,3],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,2],[0,1,1,2]],[[0,1,3,1],[2,3,3,0],[1,2,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,0],[1,2,3,2],[0,1,2,0]],[[0,1,2,1],[3,3,3,0],[1,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,4,3,0],[1,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,0],[1,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[1,2,4,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[1,2,3,3],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[1,2,3,2],[0,1,3,0]],[[0,1,3,1],[2,3,3,0],[1,2,3,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,0],[1,2,3,2],[0,2,0,1]],[[0,1,2,1],[3,3,3,0],[1,2,3,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,0],[1,2,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,4,0],[1,2,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[1,2,4,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,3],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,2],[0,2,0,2]],[[0,1,3,1],[2,3,3,0],[1,2,3,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,0],[1,2,3,2],[0,2,1,0]],[[0,1,2,1],[3,3,3,0],[1,2,3,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,0],[1,2,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,4,0],[1,2,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,0],[1,2,4,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,0],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,3,1],[3,1,3,2],[1,0,0,1]],[[1,2,2,1],[2,1,4,1],[2,1,3,2],[1,0,0,1]],[[1,2,2,1],[3,1,3,1],[2,1,3,2],[1,0,0,1]],[[1,2,2,2],[2,1,3,1],[2,1,3,2],[1,0,0,1]],[[0,1,3,1],[2,3,3,0],[1,2,3,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,0],[1,2,3,2],[1,0,1,1]],[[0,1,2,1],[3,3,3,0],[1,2,3,2],[1,0,1,1]],[[0,1,2,1],[2,4,3,0],[1,2,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,4,0],[1,2,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,0],[1,2,4,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,3],[1,0,1,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,2],[1,0,1,2]],[[0,1,3,1],[2,3,3,0],[1,2,3,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,0],[1,2,3,2],[1,0,2,0]],[[0,1,2,1],[3,3,3,0],[1,2,3,2],[1,0,2,0]],[[0,1,2,1],[2,4,3,0],[1,2,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,4,0],[1,2,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,0],[1,2,4,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,0],[1,2,3,3],[1,0,2,0]],[[0,1,2,1],[2,3,3,0],[1,2,3,2],[1,0,3,0]],[[0,1,3,1],[2,3,3,0],[1,2,3,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,0],[1,2,3,2],[1,1,0,1]],[[0,1,2,1],[3,3,3,0],[1,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,4,3,0],[1,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,4,0],[1,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[1,2,4,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,3],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[1,2,3,2],[1,1,0,2]],[[0,1,3,1],[2,3,3,0],[1,2,3,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,0],[1,2,3,2],[1,1,1,0]],[[0,1,2,1],[3,3,3,0],[1,2,3,2],[1,1,1,0]],[[0,1,2,1],[2,4,3,0],[1,2,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,4,0],[1,2,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,0],[1,2,4,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,0],[1,2,3,3],[1,1,1,0]],[[1,2,3,1],[2,1,3,1],[2,1,3,2],[1,0,0,1]],[[1,3,2,1],[2,1,3,1],[2,1,3,2],[1,0,0,1]],[[2,2,2,1],[2,1,3,1],[2,1,3,2],[1,0,0,1]],[[0,1,3,1],[2,3,3,0],[1,3,0,2],[0,2,2,1]],[[0,1,2,2],[2,3,3,0],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[3,3,3,0],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,4,3,0],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,4,0],[1,3,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,4,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,3,0,3],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,3,0,2],[0,3,2,1]],[[0,1,2,1],[2,3,3,0],[1,3,0,2],[0,2,3,1]],[[0,1,2,1],[2,3,3,0],[1,3,0,2],[0,2,2,2]],[[0,1,3,1],[2,3,3,0],[1,3,0,2],[1,1,2,1]],[[0,1,2,2],[2,3,3,0],[1,3,0,2],[1,1,2,1]],[[0,1,2,1],[3,3,3,0],[1,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,4,3,0],[1,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,4,0],[1,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[1,4,0,2],[1,1,2,1]],[[0,1,3,1],[2,3,3,0],[1,3,1,1],[0,2,2,1]],[[0,1,2,2],[2,3,3,0],[1,3,1,1],[0,2,2,1]],[[0,1,2,1],[3,3,3,0],[1,3,1,1],[0,2,2,1]],[[0,1,2,1],[2,4,3,0],[1,3,1,1],[0,2,2,1]],[[0,1,2,1],[2,3,4,0],[1,3,1,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,4,1,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[1,3,1,1],[0,3,2,1]],[[0,1,2,1],[2,3,3,0],[1,3,1,1],[0,2,3,1]],[[0,1,2,1],[2,3,3,0],[1,3,1,1],[0,2,2,2]],[[0,1,3,1],[2,3,3,0],[1,3,1,1],[1,1,2,1]],[[0,1,2,2],[2,3,3,0],[1,3,1,1],[1,1,2,1]],[[0,1,2,1],[3,3,3,0],[1,3,1,1],[1,1,2,1]],[[0,1,2,1],[2,4,3,0],[1,3,1,1],[1,1,2,1]],[[0,1,2,1],[2,3,4,0],[1,3,1,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[1,4,1,1],[1,1,2,1]],[[0,1,3,1],[2,3,3,0],[1,3,1,2],[0,2,2,0]],[[0,1,2,2],[2,3,3,0],[1,3,1,2],[0,2,2,0]],[[0,1,2,1],[3,3,3,0],[1,3,1,2],[0,2,2,0]],[[0,1,2,1],[2,4,3,0],[1,3,1,2],[0,2,2,0]],[[0,1,2,1],[2,3,4,0],[1,3,1,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,0],[1,4,1,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,0],[1,3,1,2],[0,3,2,0]],[[0,1,2,1],[2,3,3,0],[1,3,1,2],[0,2,3,0]],[[0,1,3,1],[2,3,3,0],[1,3,1,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,0],[1,3,1,2],[1,1,2,0]],[[0,1,2,1],[3,3,3,0],[1,3,1,2],[1,1,2,0]],[[0,1,2,1],[2,4,3,0],[1,3,1,2],[1,1,2,0]],[[0,1,2,1],[2,3,4,0],[1,3,1,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[1,4,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[2,1,3,2],[0,1,0,1]],[[1,2,2,1],[3,1,3,1],[2,1,3,2],[0,1,0,1]],[[1,2,2,2],[2,1,3,1],[2,1,3,2],[0,1,0,1]],[[1,2,3,1],[2,1,3,1],[2,1,3,2],[0,1,0,1]],[[1,3,2,1],[2,1,3,1],[2,1,3,2],[0,1,0,1]],[[2,2,2,1],[2,1,3,1],[2,1,3,2],[0,1,0,1]],[[0,1,3,1],[2,3,3,0],[1,3,2,1],[0,1,2,1]],[[0,1,2,2],[2,3,3,0],[1,3,2,1],[0,1,2,1]],[[0,1,2,1],[3,3,3,0],[1,3,2,1],[0,1,2,1]],[[0,1,2,1],[2,4,3,0],[1,3,2,1],[0,1,2,1]],[[0,1,2,1],[2,3,4,0],[1,3,2,1],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[1,4,2,1],[0,1,2,1]],[[0,1,3,1],[2,3,3,0],[1,3,2,1],[0,2,1,1]],[[0,1,2,2],[2,3,3,0],[1,3,2,1],[0,2,1,1]],[[0,1,2,1],[3,3,3,0],[1,3,2,1],[0,2,1,1]],[[0,1,2,1],[2,4,3,0],[1,3,2,1],[0,2,1,1]],[[0,1,2,1],[2,3,4,0],[1,3,2,1],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[1,4,2,1],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[1,3,2,1],[0,3,1,1]],[[0,1,3,1],[2,3,3,0],[1,3,2,1],[1,0,2,1]],[[0,1,2,2],[2,3,3,0],[1,3,2,1],[1,0,2,1]],[[0,1,2,1],[3,3,3,0],[1,3,2,1],[1,0,2,1]],[[0,1,2,1],[2,4,3,0],[1,3,2,1],[1,0,2,1]],[[0,1,2,1],[2,3,4,0],[1,3,2,1],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[1,4,2,1],[1,0,2,1]],[[0,1,3,1],[2,3,3,0],[1,3,2,1],[1,1,1,1]],[[0,1,2,2],[2,3,3,0],[1,3,2,1],[1,1,1,1]],[[0,1,2,1],[3,3,3,0],[1,3,2,1],[1,1,1,1]],[[0,1,2,1],[2,4,3,0],[1,3,2,1],[1,1,1,1]],[[0,1,2,1],[2,3,4,0],[1,3,2,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[1,4,2,1],[1,1,1,1]],[[0,1,2,1],[3,3,3,0],[1,3,2,1],[1,2,0,1]],[[0,1,2,1],[2,4,3,0],[1,3,2,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[1,4,2,1],[1,2,0,1]],[[0,1,3,1],[2,3,3,0],[1,3,2,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,0],[1,3,2,2],[0,1,1,1]],[[0,1,2,1],[3,3,3,0],[1,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,4,3,0],[1,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,0],[1,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[1,4,2,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,0],[1,3,2,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,0],[1,3,2,2],[0,1,2,0]],[[0,1,2,1],[3,3,3,0],[1,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,4,3,0],[1,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,0],[1,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[1,4,2,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,0],[1,3,2,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,0],[1,3,2,2],[0,2,0,1]],[[0,1,2,1],[3,3,3,0],[1,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,0],[1,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,4,0],[1,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[1,4,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[1,3,2,2],[0,3,0,1]],[[0,1,3,1],[2,3,3,0],[1,3,2,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,0],[1,3,2,2],[0,2,1,0]],[[0,1,2,1],[3,3,3,0],[1,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,0],[1,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,4,0],[1,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,0],[1,4,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,0],[1,3,2,2],[0,3,1,0]],[[0,1,3,1],[2,3,3,0],[1,3,2,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,0],[1,3,2,2],[1,0,1,1]],[[0,1,2,1],[3,3,3,0],[1,3,2,2],[1,0,1,1]],[[0,1,2,1],[2,4,3,0],[1,3,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,4,0],[1,3,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,0],[1,4,2,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,0],[1,3,2,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,0],[1,3,2,2],[1,0,2,0]],[[0,1,2,1],[3,3,3,0],[1,3,2,2],[1,0,2,0]],[[0,1,2,1],[2,4,3,0],[1,3,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,4,0],[1,3,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,0],[1,4,2,2],[1,0,2,0]],[[0,1,3,1],[2,3,3,0],[1,3,2,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,0],[1,3,2,2],[1,1,0,1]],[[0,1,2,1],[3,3,3,0],[1,3,2,2],[1,1,0,1]],[[0,1,2,1],[2,4,3,0],[1,3,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,4,0],[1,3,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[1,4,2,2],[1,1,0,1]],[[0,1,3,1],[2,3,3,0],[1,3,2,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,0],[1,3,2,2],[1,1,1,0]],[[0,1,2,1],[3,3,3,0],[1,3,2,2],[1,1,1,0]],[[0,1,2,1],[2,4,3,0],[1,3,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,4,0],[1,3,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,0],[1,4,2,2],[1,1,1,0]],[[0,1,3,1],[2,3,3,0],[1,3,2,2],[1,2,0,0]],[[0,1,2,2],[2,3,3,0],[1,3,2,2],[1,2,0,0]],[[0,1,2,1],[3,3,3,0],[1,3,2,2],[1,2,0,0]],[[0,1,2,1],[2,4,3,0],[1,3,2,2],[1,2,0,0]],[[0,1,2,1],[2,3,4,0],[1,3,2,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,0],[1,4,2,2],[1,2,0,0]],[[1,2,2,1],[2,1,3,1],[2,1,3,1],[2,1,1,0]],[[1,2,2,1],[2,1,3,1],[2,1,4,1],[1,1,1,0]],[[1,2,2,1],[2,1,3,1],[3,1,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[3,1,3,1],[2,1,3,1],[1,1,1,0]],[[1,2,2,2],[2,1,3,1],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[2,1,3,1],[2,1,3,1],[1,1,1,0]],[[1,3,2,1],[2,1,3,1],[2,1,3,1],[1,1,1,0]],[[2,2,2,1],[2,1,3,1],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,3,1],[2,1,3,1],[2,1,0,1]],[[1,2,2,1],[2,1,3,1],[2,1,4,1],[1,1,0,1]],[[1,2,2,1],[2,1,3,1],[3,1,3,1],[1,1,0,1]],[[1,2,2,1],[2,1,4,1],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[3,1,3,1],[2,1,3,1],[1,1,0,1]],[[1,2,2,2],[2,1,3,1],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[2,1,3,1],[2,1,3,1],[1,1,0,1]],[[0,1,3,1],[2,3,3,0],[1,3,3,1],[0,0,2,1]],[[0,1,2,2],[2,3,3,0],[1,3,3,1],[0,0,2,1]],[[0,1,2,1],[3,3,3,0],[1,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,4,3,0],[1,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,3,4,0],[1,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,3,3,0],[1,3,4,1],[0,0,2,1]],[[1,3,2,1],[2,1,3,1],[2,1,3,1],[1,1,0,1]],[[2,2,2,1],[2,1,3,1],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[2,1,3,1],[2,1,3,1],[1,0,3,0]],[[1,2,2,1],[2,1,3,1],[2,1,3,1],[2,0,2,0]],[[1,2,2,1],[2,1,3,1],[2,1,4,1],[1,0,2,0]],[[1,2,2,1],[2,1,3,1],[3,1,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[3,1,3,1],[2,1,3,1],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[2,1,3,1],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[2,1,3,1],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,3,1],[2,1,3,1],[2,0,1,1]],[[1,2,2,1],[2,1,3,1],[2,1,4,1],[1,0,1,1]],[[1,2,2,1],[2,1,3,1],[3,1,3,1],[1,0,1,1]],[[1,2,2,1],[2,1,4,1],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[3,1,3,1],[2,1,3,1],[1,0,1,1]],[[1,2,2,2],[2,1,3,1],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[2,1,3,1],[2,1,3,1],[1,0,1,1]],[[1,3,2,1],[2,1,3,1],[2,1,3,1],[1,0,1,1]],[[2,2,2,1],[2,1,3,1],[2,1,3,1],[1,0,1,1]],[[0,1,3,1],[2,3,3,0],[1,3,3,2],[0,0,1,1]],[[0,1,2,2],[2,3,3,0],[1,3,3,2],[0,0,1,1]],[[0,1,2,1],[3,3,3,0],[1,3,3,2],[0,0,1,1]],[[0,1,2,1],[2,4,3,0],[1,3,3,2],[0,0,1,1]],[[0,1,2,1],[2,3,4,0],[1,3,3,2],[0,0,1,1]],[[0,1,2,1],[2,3,3,0],[1,3,4,2],[0,0,1,1]],[[0,1,2,1],[2,3,3,0],[1,3,3,3],[0,0,1,1]],[[0,1,2,1],[2,3,3,0],[1,3,3,2],[0,0,1,2]],[[0,1,3,1],[2,3,3,0],[1,3,3,2],[0,0,2,0]],[[0,1,2,2],[2,3,3,0],[1,3,3,2],[0,0,2,0]],[[0,1,2,1],[3,3,3,0],[1,3,3,2],[0,0,2,0]],[[0,1,2,1],[2,4,3,0],[1,3,3,2],[0,0,2,0]],[[0,1,2,1],[2,3,4,0],[1,3,3,2],[0,0,2,0]],[[0,1,2,1],[2,3,3,0],[1,3,4,2],[0,0,2,0]],[[0,1,2,1],[2,3,3,0],[1,3,3,3],[0,0,2,0]],[[0,1,3,1],[2,3,3,0],[1,3,3,2],[0,2,0,0]],[[0,1,2,2],[2,3,3,0],[1,3,3,2],[0,2,0,0]],[[0,1,2,1],[3,3,3,0],[1,3,3,2],[0,2,0,0]],[[0,1,2,1],[2,4,3,0],[1,3,3,2],[0,2,0,0]],[[0,1,2,1],[2,3,4,0],[1,3,3,2],[0,2,0,0]],[[0,1,2,1],[2,3,3,0],[1,4,3,2],[0,2,0,0]],[[1,2,2,1],[2,1,3,1],[2,1,4,1],[0,2,1,0]],[[1,2,2,1],[2,1,3,1],[3,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[3,1,3,1],[2,1,3,1],[0,2,1,0]],[[1,2,2,2],[2,1,3,1],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[2,1,3,1],[2,1,3,1],[0,2,1,0]],[[1,3,2,1],[2,1,3,1],[2,1,3,1],[0,2,1,0]],[[2,2,2,1],[2,1,3,1],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,3,1],[2,1,4,1],[0,2,0,1]],[[1,2,2,1],[2,1,3,1],[3,1,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,4,1],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[3,1,3,1],[2,1,3,1],[0,2,0,1]],[[1,2,2,2],[2,1,3,1],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[2,1,3,1],[2,1,3,1],[0,2,0,1]],[[1,3,2,1],[2,1,3,1],[2,1,3,1],[0,2,0,1]],[[2,2,2,1],[2,1,3,1],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,3,1],[2,1,3,1],[0,1,3,0]],[[1,2,2,1],[2,1,3,1],[2,1,4,1],[0,1,2,0]],[[1,2,2,1],[2,1,3,1],[3,1,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,4,1],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[3,1,3,1],[2,1,3,1],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[2,1,3,1],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[2,1,3,1],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,3,1],[2,1,4,1],[0,1,1,1]],[[1,2,2,1],[2,1,3,1],[3,1,3,1],[0,1,1,1]],[[1,2,2,1],[2,1,4,1],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[3,1,3,1],[2,1,3,1],[0,1,1,1]],[[1,2,2,2],[2,1,3,1],[2,1,3,1],[0,1,1,1]],[[0,1,3,1],[2,3,3,0],[1,3,3,2],[1,1,0,0]],[[0,1,2,2],[2,3,3,0],[1,3,3,2],[1,1,0,0]],[[0,1,2,1],[3,3,3,0],[1,3,3,2],[1,1,0,0]],[[0,1,2,1],[2,4,3,0],[1,3,3,2],[1,1,0,0]],[[0,1,2,1],[2,3,4,0],[1,3,3,2],[1,1,0,0]],[[0,1,2,1],[2,3,3,0],[1,4,3,2],[1,1,0,0]],[[1,2,3,1],[2,1,3,1],[2,1,3,1],[0,1,1,1]],[[1,3,2,1],[2,1,3,1],[2,1,3,1],[0,1,1,1]],[[2,2,2,1],[2,1,3,1],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[2,1,3,1],[2,1,4,1],[0,0,2,1]],[[1,2,2,1],[2,1,4,1],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[3,1,3,1],[2,1,3,1],[0,0,2,1]],[[1,2,2,2],[2,1,3,1],[2,1,3,1],[0,0,2,1]],[[1,2,3,1],[2,1,3,1],[2,1,3,1],[0,0,2,1]],[[1,3,2,1],[2,1,3,1],[2,1,3,1],[0,0,2,1]],[[2,2,2,1],[2,1,3,1],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[2,1,3,1],[2,1,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,3,1],[2,1,3,0],[2,2,1,0]],[[1,2,2,1],[2,1,3,1],[3,1,3,0],[1,2,1,0]],[[1,2,2,1],[2,1,4,1],[2,1,3,0],[1,2,1,0]],[[1,2,2,1],[3,1,3,1],[2,1,3,0],[1,2,1,0]],[[1,2,2,2],[2,1,3,1],[2,1,3,0],[1,2,1,0]],[[1,2,3,1],[2,1,3,1],[2,1,3,0],[1,2,1,0]],[[1,3,2,1],[2,1,3,1],[2,1,3,0],[1,2,1,0]],[[2,2,2,1],[2,1,3,1],[2,1,3,0],[1,2,1,0]],[[1,2,2,1],[2,1,3,1],[2,1,3,0],[2,1,1,1]],[[1,2,2,1],[2,1,3,1],[2,1,4,0],[1,1,1,1]],[[1,2,2,1],[2,1,3,1],[3,1,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[2,1,3,0],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[2,1,3,0],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[2,1,3,0],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[2,1,3,0],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,3,1],[2,1,3,0],[1,0,2,2]],[[1,2,2,1],[2,1,3,1],[2,1,3,0],[1,0,3,1]],[[1,2,2,1],[2,1,3,1],[2,1,3,0],[2,0,2,1]],[[1,2,2,1],[2,1,3,1],[2,1,4,0],[1,0,2,1]],[[1,2,2,1],[2,1,3,1],[3,1,3,0],[1,0,2,1]],[[1,2,2,1],[2,1,4,1],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[3,1,3,1],[2,1,3,0],[1,0,2,1]],[[1,2,2,2],[2,1,3,1],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[2,1,3,1],[2,1,3,0],[1,0,2,1]],[[1,3,2,1],[2,1,3,1],[2,1,3,0],[1,0,2,1]],[[2,2,2,1],[2,1,3,1],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[2,1,3,1],[2,1,4,0],[0,2,1,1]],[[1,2,2,1],[2,1,3,1],[3,1,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,4,1],[2,1,3,0],[0,2,1,1]],[[0,1,3,1],[2,3,3,0],[2,0,1,2],[1,2,2,1]],[[0,1,2,2],[2,3,3,0],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[3,3,3,0],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,4,3,0],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,4,0],[2,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[3,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,1,3],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,1,2],[2,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,1,2],[1,3,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,1,2],[1,2,3,1]],[[0,1,2,1],[2,3,3,0],[2,0,1,2],[1,2,2,2]],[[0,1,3,1],[2,3,3,0],[2,0,2,1],[1,2,2,1]],[[0,1,2,2],[2,3,3,0],[2,0,2,1],[1,2,2,1]],[[0,1,2,1],[3,3,3,0],[2,0,2,1],[1,2,2,1]],[[0,1,2,1],[2,4,3,0],[2,0,2,1],[1,2,2,1]],[[0,1,2,1],[2,3,4,0],[2,0,2,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[3,0,2,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,2,1],[2,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,2,1],[1,3,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,2,1],[1,2,3,1]],[[0,1,2,1],[2,3,3,0],[2,0,2,1],[1,2,2,2]],[[0,1,2,1],[2,3,3,0],[2,0,2,3],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,2,2],[0,3,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,2,2],[0,2,3,1]],[[0,1,2,1],[2,3,3,0],[2,0,2,2],[0,2,2,2]],[[0,1,2,1],[2,3,3,0],[2,0,2,3],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,2,2],[1,1,3,1]],[[0,1,2,1],[2,3,3,0],[2,0,2,2],[1,1,2,2]],[[0,1,3,1],[2,3,3,0],[2,0,2,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,0],[2,0,2,2],[1,2,2,0]],[[0,1,2,1],[3,3,3,0],[2,0,2,2],[1,2,2,0]],[[0,1,2,1],[2,4,3,0],[2,0,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,4,0],[2,0,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[3,0,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[2,0,2,2],[2,2,2,0]],[[0,1,2,1],[2,3,3,0],[2,0,2,2],[1,3,2,0]],[[0,1,2,1],[2,3,3,0],[2,0,2,2],[1,2,3,0]],[[0,1,3,1],[2,3,3,0],[2,0,3,1],[0,2,2,1]],[[0,1,2,2],[2,3,3,0],[2,0,3,1],[0,2,2,1]],[[0,1,2,1],[3,3,3,0],[2,0,3,1],[0,2,2,1]],[[0,1,2,1],[2,4,3,0],[2,0,3,1],[0,2,2,1]],[[0,1,2,1],[2,3,4,0],[2,0,3,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[3,0,3,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,4,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,1],[0,3,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,1],[0,2,3,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,1],[0,2,2,2]],[[0,1,3,1],[2,3,3,0],[2,0,3,1],[1,1,2,1]],[[0,1,2,2],[2,3,3,0],[2,0,3,1],[1,1,2,1]],[[0,1,2,1],[3,3,3,0],[2,0,3,1],[1,1,2,1]],[[0,1,2,1],[2,4,3,0],[2,0,3,1],[1,1,2,1]],[[0,1,2,1],[2,3,4,0],[2,0,3,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[3,0,3,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,4,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,1],[2,1,2,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,1],[1,1,3,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,1],[1,1,2,2]],[[0,1,3,1],[2,3,3,0],[2,0,3,1],[1,2,1,1]],[[0,1,2,2],[2,3,3,0],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[3,3,3,0],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[2,4,3,0],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,4,0],[2,0,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[3,0,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[2,0,4,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,1],[2,2,1,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,1],[1,3,1,1]],[[0,1,3,1],[2,3,3,0],[2,0,3,2],[0,2,1,1]],[[0,1,2,2],[2,3,3,0],[2,0,3,2],[0,2,1,1]],[[0,1,2,1],[3,3,3,0],[2,0,3,2],[0,2,1,1]],[[0,1,2,1],[2,4,3,0],[2,0,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,4,0],[2,0,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[3,0,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[2,0,4,2],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,3],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[0,2,1,2]],[[0,1,3,1],[2,3,3,0],[2,0,3,2],[0,2,2,0]],[[0,1,2,2],[2,3,3,0],[2,0,3,2],[0,2,2,0]],[[0,1,2,1],[3,3,3,0],[2,0,3,2],[0,2,2,0]],[[0,1,2,1],[2,4,3,0],[2,0,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,4,0],[2,0,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,0],[3,0,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,0],[2,0,4,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,0],[2,0,3,3],[0,2,2,0]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[0,3,2,0]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[0,2,3,0]],[[0,1,3,1],[2,3,3,0],[2,0,3,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,0],[2,0,3,2],[1,1,1,1]],[[0,1,2,1],[3,3,3,0],[2,0,3,2],[1,1,1,1]],[[0,1,2,1],[2,4,3,0],[2,0,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,4,0],[2,0,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[3,0,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[2,0,4,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,3],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[2,1,1,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[1,1,1,2]],[[0,1,3,1],[2,3,3,0],[2,0,3,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,0],[2,0,3,2],[1,1,2,0]],[[0,1,2,1],[3,3,3,0],[2,0,3,2],[1,1,2,0]],[[0,1,2,1],[2,4,3,0],[2,0,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,4,0],[2,0,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[3,0,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[2,0,4,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[2,0,3,3],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[2,1,2,0]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[1,1,3,0]],[[0,1,3,1],[2,3,3,0],[2,0,3,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,0],[2,0,3,2],[1,2,0,1]],[[0,1,2,1],[3,3,3,0],[2,0,3,2],[1,2,0,1]],[[0,1,2,1],[2,4,3,0],[2,0,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,4,0],[2,0,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[3,0,3,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[2,0,4,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,3],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[2,2,0,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[1,3,0,1]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[1,2,0,2]],[[0,1,3,1],[2,3,3,0],[2,0,3,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,0],[2,0,3,2],[1,2,1,0]],[[0,1,2,1],[3,3,3,0],[2,0,3,2],[1,2,1,0]],[[0,1,2,1],[2,4,3,0],[2,0,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,4,0],[2,0,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[3,0,3,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[2,0,4,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[2,0,3,3],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[2,2,1,0]],[[0,1,2,1],[2,3,3,0],[2,0,3,2],[1,3,1,0]],[[1,2,2,1],[3,1,3,1],[2,1,3,0],[0,2,1,1]],[[1,2,2,2],[2,1,3,1],[2,1,3,0],[0,2,1,1]],[[1,2,3,1],[2,1,3,1],[2,1,3,0],[0,2,1,1]],[[1,3,2,1],[2,1,3,1],[2,1,3,0],[0,2,1,1]],[[2,2,2,1],[2,1,3,1],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,3,1],[2,1,3,0],[0,1,2,2]],[[1,2,2,1],[2,1,3,1],[2,1,3,0],[0,1,3,1]],[[1,2,2,1],[2,1,3,1],[2,1,4,0],[0,1,2,1]],[[1,2,2,1],[2,1,3,1],[3,1,3,0],[0,1,2,1]],[[1,2,2,1],[2,1,4,1],[2,1,3,0],[0,1,2,1]],[[1,2,2,1],[3,1,3,1],[2,1,3,0],[0,1,2,1]],[[1,2,2,2],[2,1,3,1],[2,1,3,0],[0,1,2,1]],[[0,1,3,1],[2,3,3,0],[2,1,0,2],[1,2,2,1]],[[0,1,2,2],[2,3,3,0],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[3,3,3,0],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,4,3,0],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,4,0],[2,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[3,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,0,3],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,0,2],[2,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,0,2],[1,3,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,0,2],[1,2,3,1]],[[0,1,2,1],[2,3,3,0],[2,1,0,2],[1,2,2,2]],[[0,1,3,1],[2,3,3,0],[2,1,1,1],[1,2,2,1]],[[0,1,2,2],[2,3,3,0],[2,1,1,1],[1,2,2,1]],[[0,1,2,1],[3,3,3,0],[2,1,1,1],[1,2,2,1]],[[0,1,2,1],[2,4,3,0],[2,1,1,1],[1,2,2,1]],[[0,1,2,1],[2,3,4,0],[2,1,1,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[3,1,1,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,1,1],[2,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,1,1],[1,3,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,1,1],[1,2,3,1]],[[0,1,2,1],[2,3,3,0],[2,1,1,1],[1,2,2,2]],[[0,1,3,1],[2,3,3,0],[2,1,1,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,0],[2,1,1,2],[1,2,2,0]],[[0,1,2,1],[3,3,3,0],[2,1,1,2],[1,2,2,0]],[[0,1,2,1],[2,4,3,0],[2,1,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,4,0],[2,1,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[3,1,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[2,1,1,2],[2,2,2,0]],[[0,1,2,1],[2,3,3,0],[2,1,1,2],[1,3,2,0]],[[0,1,2,1],[2,3,3,0],[2,1,1,2],[1,2,3,0]],[[0,1,3,1],[2,3,3,0],[2,1,2,1],[1,2,1,1]],[[0,1,2,2],[2,3,3,0],[2,1,2,1],[1,2,1,1]],[[0,1,2,1],[3,3,3,0],[2,1,2,1],[1,2,1,1]],[[0,1,2,1],[2,4,3,0],[2,1,2,1],[1,2,1,1]],[[0,1,2,1],[2,3,4,0],[2,1,2,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[3,1,2,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,2,1],[2,2,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,2,1],[1,3,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,2,3],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,2,2],[0,1,3,1]],[[0,1,2,1],[2,3,3,0],[2,1,2,2],[0,1,2,2]],[[0,1,2,1],[2,3,3,0],[2,1,2,3],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,2,2],[1,0,3,1]],[[0,1,2,1],[2,3,3,0],[2,1,2,2],[1,0,2,2]],[[0,1,3,1],[2,3,3,0],[2,1,2,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,0],[2,1,2,2],[1,2,0,1]],[[0,1,2,1],[3,3,3,0],[2,1,2,2],[1,2,0,1]],[[0,1,2,1],[2,4,3,0],[2,1,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,4,0],[2,1,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[3,1,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[2,1,2,2],[2,2,0,1]],[[0,1,2,1],[2,3,3,0],[2,1,2,2],[1,3,0,1]],[[0,1,3,1],[2,3,3,0],[2,1,2,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,0],[2,1,2,2],[1,2,1,0]],[[0,1,2,1],[3,3,3,0],[2,1,2,2],[1,2,1,0]],[[0,1,2,1],[2,4,3,0],[2,1,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,4,0],[2,1,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[3,1,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[2,1,2,2],[2,2,1,0]],[[0,1,2,1],[2,3,3,0],[2,1,2,2],[1,3,1,0]],[[1,2,3,1],[2,1,3,1],[2,1,3,0],[0,1,2,1]],[[1,3,2,1],[2,1,3,1],[2,1,3,0],[0,1,2,1]],[[2,2,2,1],[2,1,3,1],[2,1,3,0],[0,1,2,1]],[[0,1,3,1],[2,3,3,0],[2,1,3,1],[0,1,2,1]],[[0,1,2,2],[2,3,3,0],[2,1,3,1],[0,1,2,1]],[[0,1,2,1],[3,3,3,0],[2,1,3,1],[0,1,2,1]],[[0,1,2,1],[2,4,3,0],[2,1,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,4,0],[2,1,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[3,1,3,1],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,4,1],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,1],[0,1,3,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,1],[0,1,2,2]],[[0,1,3,1],[2,3,3,0],[2,1,3,1],[0,2,1,1]],[[0,1,2,2],[2,3,3,0],[2,1,3,1],[0,2,1,1]],[[0,1,2,1],[3,3,3,0],[2,1,3,1],[0,2,1,1]],[[0,1,2,1],[2,4,3,0],[2,1,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,4,0],[2,1,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[3,1,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,4,1],[0,2,1,1]],[[0,1,3,1],[2,3,3,0],[2,1,3,1],[1,0,2,1]],[[0,1,2,2],[2,3,3,0],[2,1,3,1],[1,0,2,1]],[[0,1,2,1],[3,3,3,0],[2,1,3,1],[1,0,2,1]],[[0,1,2,1],[2,4,3,0],[2,1,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,4,0],[2,1,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[3,1,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,4,1],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,1],[2,0,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,1],[1,0,3,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,1],[1,0,2,2]],[[0,1,3,1],[2,3,3,0],[2,1,3,1],[1,1,1,1]],[[0,1,2,2],[2,3,3,0],[2,1,3,1],[1,1,1,1]],[[0,1,2,1],[3,3,3,0],[2,1,3,1],[1,1,1,1]],[[0,1,2,1],[2,4,3,0],[2,1,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,4,0],[2,1,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[3,1,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,4,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,1],[2,1,1,1]],[[0,1,3,1],[2,3,3,0],[2,1,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,0],[2,1,3,2],[0,0,2,1]],[[0,1,2,1],[3,3,3,0],[2,1,3,2],[0,0,2,1]],[[0,1,2,1],[2,4,3,0],[2,1,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,4,0],[2,1,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,4,2],[0,0,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,3],[0,0,2,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,2],[0,0,2,2]],[[0,1,3,1],[2,3,3,0],[2,1,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,0],[2,1,3,2],[0,1,1,1]],[[0,1,2,1],[3,3,3,0],[2,1,3,2],[0,1,1,1]],[[0,1,2,1],[2,4,3,0],[2,1,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,0],[2,1,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[3,1,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,4,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,3],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,2],[0,1,1,2]],[[0,1,3,1],[2,3,3,0],[2,1,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,0],[2,1,3,2],[0,1,2,0]],[[0,1,2,1],[3,3,3,0],[2,1,3,2],[0,1,2,0]],[[0,1,2,1],[2,4,3,0],[2,1,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,0],[2,1,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[3,1,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[2,1,4,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[2,1,3,3],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[2,1,3,2],[0,1,3,0]],[[0,1,3,1],[2,3,3,0],[2,1,3,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,0],[2,1,3,2],[0,2,0,1]],[[0,1,2,1],[3,3,3,0],[2,1,3,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,0],[2,1,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,4,0],[2,1,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[3,1,3,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[2,1,4,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,3],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,2],[0,2,0,2]],[[0,1,3,1],[2,3,3,0],[2,1,3,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,0],[2,1,3,2],[0,2,1,0]],[[0,1,2,1],[3,3,3,0],[2,1,3,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,0],[2,1,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,4,0],[2,1,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,0],[3,1,3,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,0],[2,1,4,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,0],[2,1,3,3],[0,2,1,0]],[[0,1,3,1],[2,3,3,0],[2,1,3,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,0],[2,1,3,2],[1,0,1,1]],[[0,1,2,1],[3,3,3,0],[2,1,3,2],[1,0,1,1]],[[0,1,2,1],[2,4,3,0],[2,1,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,4,0],[2,1,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,0],[3,1,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,4,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,3],[1,0,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,2],[2,0,1,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,2],[1,0,1,2]],[[0,1,3,1],[2,3,3,0],[2,1,3,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,0],[2,1,3,2],[1,0,2,0]],[[0,1,2,1],[3,3,3,0],[2,1,3,2],[1,0,2,0]],[[0,1,2,1],[2,4,3,0],[2,1,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,4,0],[2,1,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,0],[3,1,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,0],[2,1,4,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,0],[2,1,3,3],[1,0,2,0]],[[0,1,2,1],[2,3,3,0],[2,1,3,2],[2,0,2,0]],[[0,1,2,1],[2,3,3,0],[2,1,3,2],[1,0,3,0]],[[0,1,3,1],[2,3,3,0],[2,1,3,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,0],[2,1,3,2],[1,1,0,1]],[[0,1,2,1],[3,3,3,0],[2,1,3,2],[1,1,0,1]],[[0,1,2,1],[2,4,3,0],[2,1,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,4,0],[2,1,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[3,1,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[2,1,4,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,3],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,2],[2,1,0,1]],[[0,1,2,1],[2,3,3,0],[2,1,3,2],[1,1,0,2]],[[0,1,3,1],[2,3,3,0],[2,1,3,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,0],[2,1,3,2],[1,1,1,0]],[[0,1,2,1],[3,3,3,0],[2,1,3,2],[1,1,1,0]],[[0,1,2,1],[2,4,3,0],[2,1,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,4,0],[2,1,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,0],[3,1,3,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,0],[2,1,4,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,0],[2,1,3,3],[1,1,1,0]],[[0,1,2,1],[2,3,3,0],[2,1,3,2],[2,1,1,0]],[[1,2,2,1],[2,1,3,1],[2,1,2,2],[2,1,1,0]],[[1,2,2,1],[2,1,3,1],[3,1,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[3,1,3,1],[2,1,2,2],[1,1,1,0]],[[1,2,2,2],[2,1,3,1],[2,1,2,2],[1,1,1,0]],[[1,2,3,1],[2,1,3,1],[2,1,2,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,1],[2,1,2,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,1],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,3,1],[2,1,2,2],[2,1,0,1]],[[1,2,2,1],[2,1,3,1],[3,1,2,2],[1,1,0,1]],[[1,2,2,1],[2,1,4,1],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,1],[2,1,2,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,1],[2,1,2,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,1],[2,1,2,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,1],[2,1,2,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,1],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[2,1,3,1],[2,1,2,2],[2,0,2,0]],[[1,2,2,1],[2,1,3,1],[3,1,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,1],[2,1,2,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[2,1,2,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[2,1,2,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[2,1,2,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,1],[2,1,2,2],[2,0,1,1]],[[1,2,2,1],[2,1,3,1],[3,1,2,2],[1,0,1,1]],[[1,2,2,1],[2,1,4,1],[2,1,2,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,1],[2,1,2,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,1],[2,1,2,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,1],[2,1,2,2],[1,0,1,1]],[[0,1,2,1],[3,3,3,0],[2,2,0,1],[1,2,2,1]],[[0,1,2,1],[2,4,3,0],[2,2,0,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[3,2,0,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,2,0,1],[2,2,2,1]],[[0,1,2,1],[2,3,3,0],[2,2,0,1],[1,3,2,1]],[[0,1,3,1],[2,3,3,0],[2,2,0,2],[0,2,2,1]],[[0,1,2,2],[2,3,3,0],[2,2,0,2],[0,2,2,1]],[[0,1,2,1],[3,3,3,0],[2,2,0,2],[0,2,2,1]],[[0,1,2,1],[2,4,3,0],[2,2,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,4,0],[2,2,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[3,2,0,2],[0,2,2,1]],[[0,1,3,1],[2,3,3,0],[2,2,0,2],[1,1,2,1]],[[0,1,2,2],[2,3,3,0],[2,2,0,2],[1,1,2,1]],[[0,1,2,1],[3,3,3,0],[2,2,0,2],[1,1,2,1]],[[0,1,2,1],[2,4,3,0],[2,2,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,4,0],[2,2,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[3,2,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[2,2,0,2],[2,1,2,1]],[[0,1,2,1],[3,3,3,0],[2,2,0,2],[1,2,2,0]],[[0,1,2,1],[2,4,3,0],[2,2,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[3,2,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,0],[2,2,0,2],[2,2,2,0]],[[0,1,2,1],[2,3,3,0],[2,2,0,2],[1,3,2,0]],[[0,1,3,1],[2,3,3,0],[2,2,1,1],[0,2,2,1]],[[0,1,2,2],[2,3,3,0],[2,2,1,1],[0,2,2,1]],[[0,1,2,1],[3,3,3,0],[2,2,1,1],[0,2,2,1]],[[0,1,2,1],[2,4,3,0],[2,2,1,1],[0,2,2,1]],[[0,1,2,1],[2,3,4,0],[2,2,1,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[3,2,1,1],[0,2,2,1]],[[0,1,3,1],[2,3,3,0],[2,2,1,1],[1,1,2,1]],[[0,1,2,2],[2,3,3,0],[2,2,1,1],[1,1,2,1]],[[0,1,2,1],[3,3,3,0],[2,2,1,1],[1,1,2,1]],[[0,1,2,1],[2,4,3,0],[2,2,1,1],[1,1,2,1]],[[0,1,2,1],[2,3,4,0],[2,2,1,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[3,2,1,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[2,2,1,1],[2,1,2,1]],[[0,1,3,1],[2,3,3,0],[2,2,1,2],[0,2,2,0]],[[0,1,2,2],[2,3,3,0],[2,2,1,2],[0,2,2,0]],[[0,1,2,1],[3,3,3,0],[2,2,1,2],[0,2,2,0]],[[0,1,2,1],[2,4,3,0],[2,2,1,2],[0,2,2,0]],[[0,1,2,1],[2,3,4,0],[2,2,1,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,0],[3,2,1,2],[0,2,2,0]],[[0,1,3,1],[2,3,3,0],[2,2,1,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,0],[2,2,1,2],[1,1,2,0]],[[0,1,2,1],[3,3,3,0],[2,2,1,2],[1,1,2,0]],[[0,1,2,1],[2,4,3,0],[2,2,1,2],[1,1,2,0]],[[0,1,2,1],[2,3,4,0],[2,2,1,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[3,2,1,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[2,2,1,2],[2,1,2,0]],[[1,3,2,1],[2,1,3,1],[2,1,2,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,1],[2,1,2,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,0],[2,2,2,1],[0,1,2,1]],[[0,1,2,2],[2,3,3,0],[2,2,2,1],[0,1,2,1]],[[0,1,2,1],[3,3,3,0],[2,2,2,1],[0,1,2,1]],[[0,1,2,1],[2,4,3,0],[2,2,2,1],[0,1,2,1]],[[0,1,2,1],[2,3,4,0],[2,2,2,1],[0,1,2,1]],[[0,1,2,1],[2,3,3,0],[3,2,2,1],[0,1,2,1]],[[0,1,3,1],[2,3,3,0],[2,2,2,1],[0,2,1,1]],[[0,1,2,2],[2,3,3,0],[2,2,2,1],[0,2,1,1]],[[0,1,2,1],[3,3,3,0],[2,2,2,1],[0,2,1,1]],[[0,1,2,1],[2,4,3,0],[2,2,2,1],[0,2,1,1]],[[0,1,2,1],[2,3,4,0],[2,2,2,1],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[3,2,2,1],[0,2,1,1]],[[0,1,3,1],[2,3,3,0],[2,2,2,1],[1,0,2,1]],[[0,1,2,2],[2,3,3,0],[2,2,2,1],[1,0,2,1]],[[0,1,2,1],[3,3,3,0],[2,2,2,1],[1,0,2,1]],[[0,1,2,1],[2,4,3,0],[2,2,2,1],[1,0,2,1]],[[0,1,2,1],[2,3,4,0],[2,2,2,1],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[3,2,2,1],[1,0,2,1]],[[0,1,2,1],[2,3,3,0],[2,2,2,1],[2,0,2,1]],[[0,1,3,1],[2,3,3,0],[2,2,2,1],[1,1,1,1]],[[0,1,2,2],[2,3,3,0],[2,2,2,1],[1,1,1,1]],[[0,1,2,1],[3,3,3,0],[2,2,2,1],[1,1,1,1]],[[0,1,2,1],[2,4,3,0],[2,2,2,1],[1,1,1,1]],[[0,1,2,1],[2,3,4,0],[2,2,2,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[3,2,2,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[2,2,2,1],[2,1,1,1]],[[0,1,2,1],[3,3,3,0],[2,2,2,1],[1,2,0,1]],[[0,1,2,1],[2,4,3,0],[2,2,2,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[3,2,2,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[2,1,3,1],[3,1,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[3,1,3,1],[2,1,2,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,1],[2,1,2,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,1],[2,1,2,2],[0,2,1,0]],[[0,1,3,1],[2,3,3,0],[2,2,2,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,0],[2,2,2,2],[0,1,1,1]],[[0,1,2,1],[3,3,3,0],[2,2,2,2],[0,1,1,1]],[[0,1,2,1],[2,4,3,0],[2,2,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,0],[2,2,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,0],[3,2,2,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,0],[2,2,2,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,0],[2,2,2,2],[0,1,2,0]],[[0,1,2,1],[3,3,3,0],[2,2,2,2],[0,1,2,0]],[[0,1,2,1],[2,4,3,0],[2,2,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,0],[2,2,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,0],[3,2,2,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,0],[2,2,2,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,0],[2,2,2,2],[0,2,0,1]],[[0,1,2,1],[3,3,3,0],[2,2,2,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,0],[2,2,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,4,0],[2,2,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[3,2,2,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,0],[2,2,2,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,0],[2,2,2,2],[0,2,1,0]],[[0,1,2,1],[3,3,3,0],[2,2,2,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,0],[2,2,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,4,0],[2,2,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,0],[3,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,1],[2,1,2,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,1],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,1],[3,1,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,4,1],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[3,1,3,1],[2,1,2,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,1],[2,1,2,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,1],[2,1,2,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,1],[2,1,2,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,1],[2,1,2,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,0],[2,2,2,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,0],[2,2,2,2],[1,0,1,1]],[[0,1,2,1],[3,3,3,0],[2,2,2,2],[1,0,1,1]],[[0,1,2,1],[2,4,3,0],[2,2,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,4,0],[2,2,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,0],[3,2,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,0],[2,2,2,2],[2,0,1,1]],[[0,1,3,1],[2,3,3,0],[2,2,2,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,0],[2,2,2,2],[1,0,2,0]],[[0,1,2,1],[3,3,3,0],[2,2,2,2],[1,0,2,0]],[[0,1,2,1],[2,4,3,0],[2,2,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,4,0],[2,2,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,0],[3,2,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,0],[2,2,2,2],[2,0,2,0]],[[0,1,3,1],[2,3,3,0],[2,2,2,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,0],[2,2,2,2],[1,1,0,1]],[[0,1,2,1],[3,3,3,0],[2,2,2,2],[1,1,0,1]],[[0,1,2,1],[2,4,3,0],[2,2,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,4,0],[2,2,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[3,2,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[2,2,2,2],[2,1,0,1]],[[0,1,3,1],[2,3,3,0],[2,2,2,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,0],[2,2,2,2],[1,1,1,0]],[[0,1,2,1],[3,3,3,0],[2,2,2,2],[1,1,1,0]],[[0,1,2,1],[2,4,3,0],[2,2,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,4,0],[2,2,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,0],[3,2,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,0],[2,2,2,2],[2,1,1,0]],[[1,2,2,1],[2,1,3,1],[3,1,2,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,0],[2,2,2,2],[1,2,0,0]],[[0,1,2,2],[2,3,3,0],[2,2,2,2],[1,2,0,0]],[[0,1,2,1],[3,3,3,0],[2,2,2,2],[1,2,0,0]],[[0,1,2,1],[2,4,3,0],[2,2,2,2],[1,2,0,0]],[[0,1,2,1],[2,3,4,0],[2,2,2,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,0],[3,2,2,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,0],[2,2,2,2],[2,2,0,0]],[[1,2,2,1],[2,1,4,1],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,1],[2,1,2,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[2,1,2,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[2,1,2,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[2,1,2,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,3,1],[3,1,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,4,1],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,1],[2,1,2,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,1],[2,1,2,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,1],[2,1,2,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,1],[2,1,2,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,1],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,4,1],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[3,1,3,1],[2,1,2,2],[0,0,2,1]],[[1,2,2,2],[2,1,3,1],[2,1,2,2],[0,0,2,1]],[[1,2,3,1],[2,1,3,1],[2,1,2,2],[0,0,2,1]],[[1,3,2,1],[2,1,3,1],[2,1,2,2],[0,0,2,1]],[[2,2,2,1],[2,1,3,1],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[2,1,3,1],[2,1,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,3,1],[2,1,2,1],[2,2,1,0]],[[1,2,2,1],[2,1,3,1],[3,1,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,4,1],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[3,1,3,1],[2,1,2,1],[1,2,1,0]],[[1,2,2,2],[2,1,3,1],[2,1,2,1],[1,2,1,0]],[[1,2,3,1],[2,1,3,1],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[2,1,3,1],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[2,1,3,1],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,3,1],[2,1,2,1],[1,3,0,1]],[[1,2,2,1],[2,1,3,1],[2,1,2,1],[2,2,0,1]],[[1,2,2,1],[2,1,3,1],[3,1,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,4,1],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[3,1,3,1],[2,1,2,1],[1,2,0,1]],[[1,2,2,2],[2,1,3,1],[2,1,2,1],[1,2,0,1]],[[1,2,3,1],[2,1,3,1],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[2,1,3,1],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[2,1,3,1],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,3,1],[2,1,2,0],[1,3,1,1]],[[1,2,2,1],[2,1,3,1],[2,1,2,0],[2,2,1,1]],[[1,2,2,1],[2,1,3,1],[3,1,2,0],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[2,1,2,0],[1,2,1,1]],[[1,2,2,1],[3,1,3,1],[2,1,2,0],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[2,1,2,0],[1,2,1,1]],[[1,2,3,1],[2,1,3,1],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[2,1,2,0],[1,2,1,1]],[[0,1,3,1],[2,3,3,0],[2,2,3,2],[0,2,0,0]],[[0,1,2,2],[2,3,3,0],[2,2,3,2],[0,2,0,0]],[[0,1,2,1],[3,3,3,0],[2,2,3,2],[0,2,0,0]],[[0,1,2,1],[2,4,3,0],[2,2,3,2],[0,2,0,0]],[[0,1,2,1],[2,3,4,0],[2,2,3,2],[0,2,0,0]],[[0,1,2,1],[2,3,3,0],[3,2,3,2],[0,2,0,0]],[[1,2,2,1],[2,1,3,1],[2,1,1,2],[1,3,1,0]],[[1,2,2,1],[2,1,3,1],[2,1,1,2],[2,2,1,0]],[[1,2,2,1],[2,1,3,1],[3,1,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,4,1],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[3,1,3,1],[2,1,1,2],[1,2,1,0]],[[1,2,2,2],[2,1,3,1],[2,1,1,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,1],[2,1,1,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,1],[2,1,1,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,1],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,3,1],[2,1,1,2],[1,3,0,1]],[[1,2,2,1],[2,1,3,1],[2,1,1,2],[2,2,0,1]],[[1,2,2,1],[2,1,3,1],[3,1,1,2],[1,2,0,1]],[[1,2,2,1],[2,1,4,1],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[3,1,3,1],[2,1,1,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,1],[2,1,1,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,1],[2,1,1,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,1],[2,1,1,2],[1,2,0,1]],[[2,2,2,1],[2,1,3,1],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[2,1,3,1],[2,1,1,2],[2,0,2,1]],[[1,2,2,1],[2,1,3,1],[3,1,1,2],[1,0,2,1]],[[1,2,2,1],[2,1,4,1],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[3,1,3,1],[2,1,1,2],[1,0,2,1]],[[0,1,3,1],[2,3,3,0],[2,2,3,2],[1,1,0,0]],[[0,1,2,2],[2,3,3,0],[2,2,3,2],[1,1,0,0]],[[0,1,2,1],[3,3,3,0],[2,2,3,2],[1,1,0,0]],[[0,1,2,1],[2,4,3,0],[2,2,3,2],[1,1,0,0]],[[0,1,2,1],[2,3,4,0],[2,2,3,2],[1,1,0,0]],[[0,1,2,1],[2,3,3,0],[3,2,3,2],[1,1,0,0]],[[0,1,2,1],[2,3,3,0],[2,2,3,2],[2,1,0,0]],[[1,2,2,2],[2,1,3,1],[2,1,1,2],[1,0,2,1]],[[1,2,3,1],[2,1,3,1],[2,1,1,2],[1,0,2,1]],[[1,3,2,1],[2,1,3,1],[2,1,1,2],[1,0,2,1]],[[2,2,2,1],[2,1,3,1],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[2,1,3,1],[3,1,1,2],[0,1,2,1]],[[1,2,2,1],[2,1,4,1],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[3,1,3,1],[2,1,1,2],[0,1,2,1]],[[1,2,2,2],[2,1,3,1],[2,1,1,2],[0,1,2,1]],[[1,2,3,1],[2,1,3,1],[2,1,1,2],[0,1,2,1]],[[1,3,2,1],[2,1,3,1],[2,1,1,2],[0,1,2,1]],[[2,2,2,1],[2,1,3,1],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[2,1,3,1],[2,1,1,1],[1,2,3,0]],[[1,2,2,1],[2,1,3,1],[2,1,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,3,1],[2,1,1,1],[2,2,2,0]],[[1,2,2,1],[2,1,3,1],[3,1,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,4,1],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[3,1,3,1],[2,1,1,1],[1,2,2,0]],[[1,2,2,2],[2,1,3,1],[2,1,1,1],[1,2,2,0]],[[1,2,3,1],[2,1,3,1],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[2,1,3,1],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[2,1,3,1],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,3,1],[2,1,1,0],[1,2,2,2]],[[1,2,2,1],[2,1,3,1],[2,1,1,0],[1,2,3,1]],[[1,2,2,1],[2,1,3,1],[2,1,1,0],[1,3,2,1]],[[1,2,2,1],[2,1,3,1],[2,1,1,0],[2,2,2,1]],[[1,2,2,1],[2,1,3,1],[3,1,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,4,1],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[3,1,3,1],[2,1,1,0],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[2,1,1,0],[1,2,2,1]],[[1,2,3,1],[2,1,3,1],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,3,1],[2,1,0,2],[1,2,3,0]],[[1,2,2,1],[2,1,3,1],[2,1,0,2],[1,3,2,0]],[[1,2,2,1],[2,1,3,1],[2,1,0,2],[2,2,2,0]],[[1,2,2,1],[2,1,3,1],[3,1,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,4,1],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[3,1,3,1],[2,1,0,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,1],[2,1,0,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,1],[2,1,0,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,1],[2,1,0,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,1],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,3,1],[2,1,0,2],[1,3,1,1]],[[1,2,2,1],[2,1,3,1],[2,1,0,2],[2,2,1,1]],[[1,2,2,1],[2,1,3,1],[3,1,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[3,1,3,1],[2,1,0,2],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[2,1,0,2],[1,2,1,1]],[[1,2,3,1],[2,1,3,1],[2,1,0,2],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[2,1,0,2],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,3,1],[2,1,0,2],[2,1,2,1]],[[1,2,2,1],[2,1,3,1],[3,1,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[3,1,3,1],[2,1,0,2],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[2,1,0,2],[1,1,2,1]],[[0,1,2,1],[3,3,3,0],[2,3,0,1],[0,2,2,1]],[[0,1,2,1],[2,4,3,0],[2,3,0,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,0],[3,3,0,1],[0,2,2,1]],[[0,1,2,1],[3,3,3,0],[2,3,0,1],[1,1,2,1]],[[0,1,2,1],[2,4,3,0],[2,3,0,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[3,3,0,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,0],[2,3,0,1],[2,1,2,1]],[[0,1,2,1],[3,3,3,0],[2,3,0,1],[1,2,1,1]],[[0,1,2,1],[2,4,3,0],[2,3,0,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[3,3,0,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,0],[2,3,0,1],[2,2,1,1]],[[0,1,2,1],[3,3,3,0],[2,3,0,2],[0,2,2,0]],[[0,1,2,1],[2,4,3,0],[2,3,0,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,0],[3,3,0,2],[0,2,2,0]],[[0,1,2,1],[3,3,3,0],[2,3,0,2],[1,1,2,0]],[[0,1,2,1],[2,4,3,0],[2,3,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[3,3,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,0],[2,3,0,2],[2,1,2,0]],[[0,1,2,1],[3,3,3,0],[2,3,0,2],[1,2,1,0]],[[0,1,2,1],[2,4,3,0],[2,3,0,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[3,3,0,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,0],[2,3,0,2],[2,2,1,0]],[[1,2,3,1],[2,1,3,1],[2,1,0,2],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[2,1,0,2],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,3,1],[3,1,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,4,1],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[3,1,3,1],[2,1,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,3,1],[2,1,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,3,1],[2,1,0,2],[0,2,2,1]],[[1,3,2,1],[2,1,3,1],[2,1,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,3,1],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,3,1],[2,1,0,1],[1,2,2,2]],[[1,2,2,1],[2,1,3,1],[2,1,0,1],[1,2,3,1]],[[0,1,2,1],[3,3,3,0],[2,3,1,1],[0,2,1,1]],[[0,1,2,1],[2,4,3,0],[2,3,1,1],[0,2,1,1]],[[0,1,2,1],[2,3,3,0],[3,3,1,1],[0,2,1,1]],[[0,1,2,1],[3,3,3,0],[2,3,1,1],[1,1,1,1]],[[0,1,2,1],[2,4,3,0],[2,3,1,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[3,3,1,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,0],[2,3,1,1],[2,1,1,1]],[[0,1,2,1],[3,3,3,0],[2,3,1,1],[1,2,0,1]],[[0,1,2,1],[2,4,3,0],[2,3,1,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[3,3,1,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,0],[2,3,1,1],[2,2,0,1]],[[1,2,2,1],[2,1,3,1],[2,1,0,1],[1,3,2,1]],[[1,2,2,1],[2,1,3,1],[2,1,0,1],[2,2,2,1]],[[1,2,2,1],[2,1,3,1],[3,1,0,1],[1,2,2,1]],[[1,2,2,1],[2,1,4,1],[2,1,0,1],[1,2,2,1]],[[1,2,2,1],[3,1,3,1],[2,1,0,1],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[2,1,0,1],[1,2,2,1]],[[1,2,3,1],[2,1,3,1],[2,1,0,1],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[2,1,0,1],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[2,1,0,1],[1,2,2,1]],[[0,1,2,1],[3,3,3,0],[2,3,1,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,0],[2,3,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,0],[3,3,1,2],[0,2,0,1]],[[0,1,2,1],[3,3,3,0],[2,3,1,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,0],[2,3,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,0],[3,3,1,2],[0,2,1,0]],[[0,1,2,1],[3,3,3,0],[2,3,1,2],[1,1,0,1]],[[0,1,2,1],[2,4,3,0],[2,3,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[3,3,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,0],[2,3,1,2],[2,1,0,1]],[[0,1,2,1],[3,3,3,0],[2,3,1,2],[1,1,1,0]],[[0,1,2,1],[2,4,3,0],[2,3,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,0],[3,3,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,0],[2,3,1,2],[2,1,1,0]],[[0,1,2,1],[3,3,3,0],[2,3,1,2],[1,2,0,0]],[[0,1,2,1],[2,4,3,0],[2,3,1,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,0],[3,3,1,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,0],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,1,4,1],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,1],[2,0,3,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[2,0,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[2,0,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[2,0,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[2,0,3,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,1],[2,0,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,1],[2,0,3,2],[1,0,1,1]],[[0,1,2,1],[3,3,3,0],[2,3,2,1],[1,0,1,1]],[[0,1,2,1],[2,4,3,0],[2,3,2,1],[1,0,1,1]],[[0,1,2,1],[2,3,3,0],[3,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,1,3,1],[2,0,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,1],[2,0,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,1],[2,0,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,4,1],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,1],[2,0,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[2,0,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[2,0,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[2,0,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,4,1],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,1],[2,0,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,1],[2,0,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,1],[2,0,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,1],[2,0,3,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,1],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,4,1],[2,0,3,2],[0,0,2,1]],[[1,2,2,1],[3,1,3,1],[2,0,3,2],[0,0,2,1]],[[1,2,2,2],[2,1,3,1],[2,0,3,2],[0,0,2,1]],[[1,2,3,1],[2,1,3,1],[2,0,3,2],[0,0,2,1]],[[1,3,2,1],[2,1,3,1],[2,0,3,2],[0,0,2,1]],[[2,2,2,1],[2,1,3,1],[2,0,3,2],[0,0,2,1]],[[0,1,3,1],[2,3,3,0],[2,3,2,2],[1,0,0,1]],[[0,1,2,2],[2,3,3,0],[2,3,2,2],[1,0,0,1]],[[0,1,2,1],[3,3,3,0],[2,3,2,2],[1,0,0,1]],[[0,1,2,1],[2,4,3,0],[2,3,2,2],[1,0,0,1]],[[0,1,2,1],[2,3,4,0],[2,3,2,2],[1,0,0,1]],[[0,1,2,1],[2,3,3,0],[3,3,2,2],[1,0,0,1]],[[0,1,3,1],[2,3,3,0],[2,3,2,2],[1,0,1,0]],[[0,1,2,2],[2,3,3,0],[2,3,2,2],[1,0,1,0]],[[0,1,2,1],[3,3,3,0],[2,3,2,2],[1,0,1,0]],[[0,1,2,1],[2,4,3,0],[2,3,2,2],[1,0,1,0]],[[0,1,2,1],[2,3,4,0],[2,3,2,2],[1,0,1,0]],[[0,1,2,1],[2,3,3,0],[3,3,2,2],[1,0,1,0]],[[1,2,2,1],[2,1,3,1],[2,0,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,3,1],[2,0,3,1],[2,2,1,0]],[[1,2,2,1],[2,1,3,1],[2,0,4,1],[1,2,1,0]],[[1,2,2,1],[2,1,3,1],[3,0,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,4,1],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[3,1,3,1],[2,0,3,1],[1,2,1,0]],[[1,2,2,2],[2,1,3,1],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[2,1,3,1],[2,0,3,1],[1,2,1,0]],[[1,3,2,1],[2,1,3,1],[2,0,3,1],[1,2,1,0]],[[2,2,2,1],[2,1,3,1],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,3,1],[2,0,3,1],[1,3,0,1]],[[1,2,2,1],[2,1,3,1],[2,0,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,3,1],[2,0,4,1],[1,2,0,1]],[[1,2,2,1],[2,1,3,1],[3,0,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,4,1],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[3,1,3,1],[2,0,3,1],[1,2,0,1]],[[1,2,2,2],[2,1,3,1],[2,0,3,1],[1,2,0,1]],[[1,2,3,1],[2,1,3,1],[2,0,3,1],[1,2,0,1]],[[1,3,2,1],[2,1,3,1],[2,0,3,1],[1,2,0,1]],[[2,2,2,1],[2,1,3,1],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,3,1],[2,0,3,1],[1,1,3,0]],[[1,2,2,1],[2,1,3,1],[2,0,3,1],[2,1,2,0]],[[1,2,2,1],[2,1,3,1],[2,0,4,1],[1,1,2,0]],[[1,2,2,1],[2,1,3,1],[3,0,3,1],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[3,1,3,1],[2,0,3,1],[1,1,2,0]],[[1,2,2,2],[2,1,3,1],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[2,0,3,1],[1,1,2,0]],[[1,3,2,1],[2,1,3,1],[2,0,3,1],[1,1,2,0]],[[2,2,2,1],[2,1,3,1],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[2,1,3,1],[2,0,3,1],[2,1,1,1]],[[1,2,2,1],[2,1,3,1],[2,0,4,1],[1,1,1,1]],[[1,2,2,1],[2,1,3,1],[3,0,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[2,0,3,1],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[2,0,3,1],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[2,0,3,1],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[2,0,3,1],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,3,1],[2,0,3,1],[0,2,3,0]],[[1,2,2,1],[2,1,3,1],[2,0,3,1],[0,3,2,0]],[[1,2,2,1],[2,1,3,1],[2,0,4,1],[0,2,2,0]],[[1,2,2,1],[2,1,3,1],[3,0,3,1],[0,2,2,0]],[[1,2,2,1],[2,1,4,1],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[3,1,3,1],[2,0,3,1],[0,2,2,0]],[[1,2,2,2],[2,1,3,1],[2,0,3,1],[0,2,2,0]],[[1,2,3,1],[2,1,3,1],[2,0,3,1],[0,2,2,0]],[[1,3,2,1],[2,1,3,1],[2,0,3,1],[0,2,2,0]],[[2,2,2,1],[2,1,3,1],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[2,1,3,1],[2,0,4,1],[0,2,1,1]],[[1,2,2,1],[2,1,3,1],[3,0,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,4,1],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[3,1,3,1],[2,0,3,1],[0,2,1,1]],[[1,2,2,2],[2,1,3,1],[2,0,3,1],[0,2,1,1]],[[1,2,3,1],[2,1,3,1],[2,0,3,1],[0,2,1,1]],[[1,3,2,1],[2,1,3,1],[2,0,3,1],[0,2,1,1]],[[2,2,2,1],[2,1,3,1],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,3,1],[2,0,3,0],[1,3,1,1]],[[1,2,2,1],[2,1,3,1],[2,0,3,0],[2,2,1,1]],[[1,2,2,1],[2,1,3,1],[2,0,4,0],[1,2,1,1]],[[1,2,2,1],[2,1,3,1],[3,0,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[3,1,3,1],[2,0,3,0],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[2,0,3,0],[1,2,1,1]],[[1,2,3,1],[2,1,3,1],[2,0,3,0],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[2,0,3,0],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,3,1],[2,0,3,0],[1,1,2,2]],[[1,2,2,1],[2,1,3,1],[2,0,3,0],[1,1,3,1]],[[1,2,2,1],[2,1,3,1],[2,0,3,0],[2,1,2,1]],[[1,2,2,1],[2,1,3,1],[2,0,4,0],[1,1,2,1]],[[1,2,2,1],[2,1,3,1],[3,0,3,0],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[3,1,3,1],[2,0,3,0],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[2,1,3,1],[2,0,3,0],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[2,0,3,0],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[2,1,3,1],[2,0,3,0],[0,2,2,2]],[[1,2,2,1],[2,1,3,1],[2,0,3,0],[0,2,3,1]],[[1,2,2,1],[2,1,3,1],[2,0,3,0],[0,3,2,1]],[[1,2,2,1],[2,1,3,1],[2,0,4,0],[0,2,2,1]],[[1,2,2,1],[2,1,3,1],[3,0,3,0],[0,2,2,1]],[[1,2,2,1],[2,1,4,1],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[3,1,3,1],[2,0,3,0],[0,2,2,1]],[[1,2,2,2],[2,1,3,1],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[2,1,3,1],[2,0,3,0],[0,2,2,1]],[[1,3,2,1],[2,1,3,1],[2,0,3,0],[0,2,2,1]],[[2,2,2,1],[2,1,3,1],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[2,1,3,1],[2,0,2,2],[1,3,1,0]],[[1,2,2,1],[2,1,3,1],[2,0,2,2],[2,2,1,0]],[[1,2,2,1],[2,1,3,1],[3,0,2,2],[1,2,1,0]],[[1,2,2,1],[2,1,4,1],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[3,1,3,1],[2,0,2,2],[1,2,1,0]],[[1,2,2,2],[2,1,3,1],[2,0,2,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,1],[2,0,2,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,1],[2,0,2,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,1],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[2,1,3,1],[2,0,2,2],[1,3,0,1]],[[1,2,2,1],[2,1,3,1],[2,0,2,2],[2,2,0,1]],[[1,2,2,1],[2,1,3,1],[3,0,2,2],[1,2,0,1]],[[1,2,2,1],[2,1,4,1],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[3,1,3,1],[2,0,2,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,1],[2,0,2,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,1],[2,0,2,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,1],[2,0,2,2],[1,2,0,1]],[[2,2,2,1],[2,1,3,1],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[2,1,3,1],[2,0,2,2],[2,1,2,0]],[[1,2,2,1],[2,1,3,1],[3,0,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[3,1,3,1],[2,0,2,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,1],[2,0,2,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[2,0,2,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,1],[2,0,2,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,1],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,3,1],[2,0,2,2],[2,1,1,1]],[[1,2,2,1],[2,1,3,1],[3,0,2,2],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[2,0,2,2],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[2,0,2,2],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[2,0,2,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[2,0,2,2],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[2,0,2,2],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[2,0,2,2],[1,1,1,1]],[[1,2,2,1],[2,1,3,1],[3,0,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,4,1],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[3,1,3,1],[2,0,2,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,1],[2,0,2,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,1],[2,0,2,2],[0,2,2,0]],[[1,3,2,1],[2,1,3,1],[2,0,2,2],[0,2,2,0]],[[2,2,2,1],[2,1,3,1],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,1],[3,0,2,2],[0,2,1,1]],[[1,2,2,1],[2,1,4,1],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[3,1,3,1],[2,0,2,2],[0,2,1,1]],[[1,2,2,2],[2,1,3,1],[2,0,2,2],[0,2,1,1]],[[1,2,3,1],[2,1,3,1],[2,0,2,2],[0,2,1,1]],[[1,3,2,1],[2,1,3,1],[2,0,2,2],[0,2,1,1]],[[2,2,2,1],[2,1,3,1],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[2,1,3,1],[2,0,2,1],[1,2,3,0]],[[1,2,2,1],[2,1,3,1],[2,0,2,1],[1,3,2,0]],[[1,2,2,1],[2,1,3,1],[2,0,2,1],[2,2,2,0]],[[1,2,2,1],[2,1,3,1],[3,0,2,1],[1,2,2,0]],[[1,2,2,1],[2,1,4,1],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[3,1,3,1],[2,0,2,1],[1,2,2,0]],[[1,2,2,2],[2,1,3,1],[2,0,2,1],[1,2,2,0]],[[1,2,3,1],[2,1,3,1],[2,0,2,1],[1,2,2,0]],[[1,3,2,1],[2,1,3,1],[2,0,2,1],[1,2,2,0]],[[2,2,2,1],[2,1,3,1],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[2,1,3,1],[2,0,2,0],[1,2,2,2]],[[1,2,2,1],[2,1,3,1],[2,0,2,0],[1,2,3,1]],[[1,2,2,1],[2,1,3,1],[2,0,2,0],[1,3,2,1]],[[1,2,2,1],[2,1,3,1],[2,0,2,0],[2,2,2,1]],[[1,2,2,1],[2,1,3,1],[3,0,2,0],[1,2,2,1]],[[1,2,2,1],[2,1,4,1],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[3,1,3,1],[2,0,2,0],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[2,0,2,0],[1,2,2,1]],[[1,2,3,1],[2,1,3,1],[2,0,2,0],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[2,0,2,0],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[2,1,3,1],[2,0,1,2],[1,2,3,0]],[[1,2,2,1],[2,1,3,1],[2,0,1,2],[1,3,2,0]],[[1,2,2,1],[2,1,3,1],[2,0,1,2],[2,2,2,0]],[[1,2,2,1],[2,1,3,1],[3,0,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,4,1],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[3,1,3,1],[2,0,1,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,1],[2,0,1,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,1],[2,0,1,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,1],[2,0,1,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,1],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,3,1],[2,0,1,2],[1,3,1,1]],[[1,2,2,1],[2,1,3,1],[2,0,1,2],[2,2,1,1]],[[1,2,2,1],[2,1,3,1],[3,0,1,2],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[3,1,3,1],[2,0,1,2],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[2,0,1,2],[1,2,1,1]],[[1,2,3,1],[2,1,3,1],[2,0,1,2],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[2,0,1,2],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[2,1,3,1],[2,0,1,2],[2,1,2,1]],[[1,2,2,1],[2,1,3,1],[3,0,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[3,1,3,1],[2,0,1,2],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[2,0,1,2],[1,1,2,1]],[[1,2,3,1],[2,1,3,1],[2,0,1,2],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[2,0,1,2],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,3,1],[3,0,1,2],[0,2,2,1]],[[0,1,3,1],[2,3,3,0],[2,3,3,2],[1,0,0,0]],[[0,1,2,2],[2,3,3,0],[2,3,3,2],[1,0,0,0]],[[0,1,2,1],[3,3,3,0],[2,3,3,2],[1,0,0,0]],[[0,1,2,1],[2,4,3,0],[2,3,3,2],[1,0,0,0]],[[0,1,2,1],[2,3,4,0],[2,3,3,2],[1,0,0,0]],[[0,1,2,1],[2,3,3,0],[3,3,3,2],[1,0,0,0]],[[1,2,2,1],[2,1,4,1],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[3,1,3,1],[2,0,1,2],[0,2,2,1]],[[1,2,2,2],[2,1,3,1],[2,0,1,2],[0,2,2,1]],[[1,2,3,1],[2,1,3,1],[2,0,1,2],[0,2,2,1]],[[1,3,2,1],[2,1,3,1],[2,0,1,2],[0,2,2,1]],[[2,2,2,1],[2,1,3,1],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,3,1],[2,0,1,1],[1,2,2,2]],[[1,2,2,1],[2,1,3,1],[2,0,1,1],[1,2,3,1]],[[1,2,2,1],[2,1,3,1],[2,0,1,1],[1,3,2,1]],[[1,2,2,1],[2,1,3,1],[2,0,1,1],[2,2,2,1]],[[1,2,2,1],[2,1,3,1],[3,0,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,4,1],[2,0,1,1],[1,2,2,1]],[[1,2,2,1],[3,1,3,1],[2,0,1,1],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[2,0,1,1],[1,2,2,1]],[[1,2,3,1],[2,1,3,1],[2,0,1,1],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[2,0,1,1],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[2,0,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,4,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[3,1,3,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[2,1,3,1],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[2,1,3,1],[1,3,3,2],[0,0,0,1]],[[1,3,2,1],[2,1,3,1],[1,3,3,2],[0,0,0,1]],[[2,2,2,1],[2,1,3,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[2,1,4,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[3,1,3,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,1,3,1],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,1,3,1],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,1,3,1],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,1,3,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,4,1],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[3,1,3,1],[1,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,1,3,1],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,1,3,1],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,1,3,1],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,1,3,1],[1,3,3,1],[0,2,0,0]],[[0,1,3,1],[2,3,3,1],[0,0,2,2],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[0,0,2,2],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[0,0,2,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[0,0,3,2],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[0,0,3,2],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[0,0,3,2],[0,2,2,1]],[[0,1,3,1],[2,3,3,1],[0,0,3,2],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[0,0,3,2],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[0,0,3,2],[1,1,2,1]],[[0,1,3,1],[2,3,3,1],[0,0,3,2],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[0,0,3,2],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[0,0,3,2],[1,2,1,1]],[[0,1,3,1],[2,3,3,1],[0,0,3,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,1],[0,0,3,2],[1,2,2,0]],[[0,1,2,1],[2,3,4,1],[0,0,3,2],[1,2,2,0]],[[0,1,3,1],[2,3,3,1],[0,1,1,2],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[0,1,1,2],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[0,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[0,1,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[0,1,1,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[0,1,2,2],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[0,1,2,2],[1,2,1,1]],[[0,1,2,1],[3,3,3,1],[0,1,2,2],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[0,1,2,2],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[0,1,2,2],[1,2,1,1]],[[0,1,3,1],[2,3,3,1],[0,1,2,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,1],[0,1,2,2],[1,2,2,0]],[[0,1,2,1],[3,3,3,1],[0,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[0,1,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,4,1],[0,1,2,2],[1,2,2,0]],[[0,1,3,1],[2,3,3,1],[0,1,3,0],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[0,1,3,0],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[0,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[0,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[0,1,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[0,1,4,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[0,1,3,0],[2,2,2,1]],[[0,1,2,1],[2,3,3,1],[0,1,3,0],[1,3,2,1]],[[0,1,2,1],[2,3,3,1],[0,1,3,0],[1,2,3,1]],[[0,1,2,1],[2,3,3,1],[0,1,3,0],[1,2,2,2]],[[0,1,3,1],[2,3,3,1],[0,1,3,1],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[0,1,3,1],[1,2,1,1]],[[0,1,2,1],[3,3,3,1],[0,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[0,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[0,1,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[0,1,4,1],[1,2,1,1]],[[0,1,3,1],[2,3,3,1],[0,1,3,1],[1,2,2,0]],[[0,1,2,2],[2,3,3,1],[0,1,3,1],[1,2,2,0]],[[0,1,2,1],[3,3,3,1],[0,1,3,1],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[0,1,3,1],[1,2,2,0]],[[0,1,2,1],[2,3,4,1],[0,1,3,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[0,1,4,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[0,1,3,1],[2,2,2,0]],[[0,1,2,1],[2,3,3,1],[0,1,3,1],[1,3,2,0]],[[0,1,2,1],[2,3,3,1],[0,1,3,1],[1,2,3,0]],[[0,1,3,1],[2,3,3,1],[0,1,3,2],[1,0,2,1]],[[0,1,2,2],[2,3,3,1],[0,1,3,2],[1,0,2,1]],[[0,1,2,1],[2,3,4,1],[0,1,3,2],[1,0,2,1]],[[0,1,3,1],[2,3,3,1],[0,1,3,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[0,1,3,2],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[0,1,3,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,1],[0,1,3,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[0,1,3,2],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[0,1,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,3,1],[1,3,4,1],[0,0,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,3,1],[0,0,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[2,1,3,1],[1,3,4,1],[0,0,1,1]],[[1,2,2,1],[2,1,4,1],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[3,1,3,1],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[2,1,3,1],[1,3,3,1],[0,0,1,1]],[[0,1,3,1],[2,3,3,1],[0,2,0,2],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[0,2,0,2],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[0,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[0,2,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[0,2,0,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[0,2,1,2],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[0,2,1,2],[1,1,2,1]],[[0,1,2,1],[3,3,3,1],[0,2,1,2],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[0,2,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[0,2,1,2],[1,1,2,1]],[[0,1,3,1],[2,3,3,1],[0,2,2,2],[1,0,2,1]],[[0,1,2,2],[2,3,3,1],[0,2,2,2],[1,0,2,1]],[[0,1,2,1],[2,4,3,1],[0,2,2,2],[1,0,2,1]],[[0,1,2,1],[2,3,4,1],[0,2,2,2],[1,0,2,1]],[[0,1,3,1],[2,3,3,1],[0,2,2,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[0,2,2,2],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[0,2,2,2],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[0,2,2,2],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[0,2,2,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,1],[0,2,2,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[0,2,2,2],[1,1,2,0]],[[0,1,2,1],[3,3,3,1],[0,2,2,2],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[0,2,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[0,2,2,2],[1,1,2,0]],[[0,1,3,1],[2,3,3,1],[0,2,2,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,1],[0,2,2,2],[1,2,0,1]],[[0,1,2,1],[3,3,3,1],[0,2,2,2],[1,2,0,1]],[[0,1,2,1],[2,4,3,1],[0,2,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,4,1],[0,2,2,2],[1,2,0,1]],[[0,1,3,1],[2,3,3,1],[0,2,2,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,1],[0,2,2,2],[1,2,1,0]],[[0,1,2,1],[3,3,3,1],[0,2,2,2],[1,2,1,0]],[[0,1,2,1],[2,4,3,1],[0,2,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,4,1],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,1],[1,3,3,1],[0,0,1,1]],[[1,3,2,1],[2,1,3,1],[1,3,3,1],[0,0,1,1]],[[2,2,2,1],[2,1,3,1],[1,3,3,1],[0,0,1,1]],[[0,1,3,1],[2,3,3,1],[0,2,3,0],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[0,2,3,0],[1,1,2,1]],[[0,1,2,1],[3,3,3,1],[0,2,3,0],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[0,2,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[0,2,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[0,2,4,0],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[0,2,3,0],[1,1,3,1]],[[0,1,2,1],[2,3,3,1],[0,2,3,0],[1,1,2,2]],[[0,1,3,1],[2,3,3,1],[0,2,3,0],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[0,2,3,0],[1,2,1,1]],[[0,1,2,1],[3,3,3,1],[0,2,3,0],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[0,2,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[0,2,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[0,2,4,0],[1,2,1,1]],[[0,1,3,1],[2,3,3,1],[0,2,3,1],[1,0,2,1]],[[0,1,2,2],[2,3,3,1],[0,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,4,3,1],[0,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,4,1],[0,2,3,1],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[0,2,4,1],[1,0,2,1]],[[0,1,3,1],[2,3,3,1],[0,2,3,1],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[0,2,3,1],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[0,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[0,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[0,2,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[0,2,4,1],[1,1,1,1]],[[0,1,3,1],[2,3,3,1],[0,2,3,1],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[0,2,3,1],[1,1,2,0]],[[0,1,2,1],[3,3,3,1],[0,2,3,1],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[0,2,3,1],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[0,2,3,1],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[0,2,4,1],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[0,2,3,1],[1,1,3,0]],[[0,1,3,1],[2,3,3,1],[0,2,3,1],[1,2,0,1]],[[0,1,2,2],[2,3,3,1],[0,2,3,1],[1,2,0,1]],[[0,1,2,1],[3,3,3,1],[0,2,3,1],[1,2,0,1]],[[0,1,2,1],[2,4,3,1],[0,2,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,4,1],[0,2,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[0,2,4,1],[1,2,0,1]],[[0,1,3,1],[2,3,3,1],[0,2,3,1],[1,2,1,0]],[[0,1,2,2],[2,3,3,1],[0,2,3,1],[1,2,1,0]],[[0,1,2,1],[3,3,3,1],[0,2,3,1],[1,2,1,0]],[[0,1,2,1],[2,4,3,1],[0,2,3,1],[1,2,1,0]],[[0,1,2,1],[2,3,4,1],[0,2,3,1],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[0,2,4,1],[1,2,1,0]],[[1,2,2,1],[2,1,4,1],[1,3,3,0],[1,2,0,0]],[[1,2,2,1],[3,1,3,1],[1,3,3,0],[1,2,0,0]],[[0,1,3,1],[2,3,3,1],[0,2,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,1],[0,2,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,4,1],[0,2,3,2],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[0,2,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[0,2,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[0,2,3,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[0,2,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[0,2,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[0,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,3,0],[1,2,0,0]],[[1,2,3,1],[2,1,3,1],[1,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,1,3,1],[1,3,3,0],[1,2,0,0]],[[0,1,3,1],[2,3,3,1],[0,2,3,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,1],[0,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,4,3,1],[0,2,3,2],[1,1,0,1]],[[0,1,2,1],[2,3,4,1],[0,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,1],[1,3,3,0],[1,2,0,0]],[[1,2,2,1],[2,1,4,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[3,1,3,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,2],[2,1,3,1],[1,3,3,0],[1,1,1,0]],[[1,2,3,1],[2,1,3,1],[1,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,1,3,1],[1,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,1,3,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[1,3,3,0],[1,0,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,3,0],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,3,0],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,3,0],[1,0,2,0]],[[0,1,3,1],[2,3,3,1],[0,3,0,1],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[0,3,0,1],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[0,3,0,1],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[0,3,0,1],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[0,3,0,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[0,4,0,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[0,3,0,1],[2,2,2,1]],[[0,1,2,1],[2,3,3,1],[0,3,0,1],[1,3,2,1]],[[0,1,2,1],[2,3,3,1],[0,3,0,1],[1,2,3,1]],[[0,1,2,1],[2,3,3,1],[0,3,0,1],[1,2,2,2]],[[0,1,3,1],[2,3,3,1],[0,3,0,2],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[0,3,0,2],[1,1,2,1]],[[0,1,2,1],[3,3,3,1],[0,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[0,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[0,3,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[0,4,0,2],[1,1,2,1]],[[0,1,3,1],[2,3,3,1],[0,3,0,2],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[0,3,0,2],[1,2,1,1]],[[0,1,2,1],[3,3,3,1],[0,3,0,2],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[0,3,0,2],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[0,3,0,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[0,4,0,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[0,3,0,2],[2,2,1,1]],[[0,1,2,1],[2,3,3,1],[0,3,0,2],[1,3,1,1]],[[0,1,3,1],[2,3,3,1],[0,3,0,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,1],[0,3,0,2],[1,2,2,0]],[[0,1,2,1],[3,3,3,1],[0,3,0,2],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[0,3,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,4,1],[0,3,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[0,4,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[0,3,0,2],[2,2,2,0]],[[0,1,2,1],[2,3,3,1],[0,3,0,2],[1,3,2,0]],[[0,1,2,1],[2,3,3,1],[0,3,0,2],[1,2,3,0]],[[0,1,3,1],[2,3,3,1],[0,3,1,0],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[0,3,1,0],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[0,3,1,0],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[0,3,1,0],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[0,3,1,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[0,4,1,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[0,3,1,0],[2,2,2,1]],[[0,1,2,1],[2,3,3,1],[0,3,1,0],[1,3,2,1]],[[0,1,2,1],[2,3,3,1],[0,3,1,0],[1,2,3,1]],[[0,1,2,1],[2,3,3,1],[0,3,1,0],[1,2,2,2]],[[0,1,3,1],[2,3,3,1],[0,3,1,1],[1,2,2,0]],[[0,1,2,2],[2,3,3,1],[0,3,1,1],[1,2,2,0]],[[0,1,2,1],[3,3,3,1],[0,3,1,1],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[0,3,1,1],[1,2,2,0]],[[0,1,2,1],[2,3,4,1],[0,3,1,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[0,4,1,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[0,3,1,1],[2,2,2,0]],[[0,1,2,1],[2,3,3,1],[0,3,1,1],[1,3,2,0]],[[0,1,2,1],[2,3,3,1],[0,3,1,1],[1,2,3,0]],[[0,1,3,1],[2,3,3,1],[0,3,1,2],[0,1,2,1]],[[0,1,2,2],[2,3,3,1],[0,3,1,2],[0,1,2,1]],[[0,1,2,1],[2,4,3,1],[0,3,1,2],[0,1,2,1]],[[0,1,2,1],[2,3,4,1],[0,3,1,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,1],[0,3,1,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[0,3,1,2],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[0,3,1,2],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[0,3,1,2],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[0,3,1,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[0,4,1,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,1],[0,3,1,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[0,3,1,2],[1,1,2,0]],[[0,1,2,1],[3,3,3,1],[0,3,1,2],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[0,3,1,2],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[0,3,1,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[0,4,1,2],[1,1,2,0]],[[0,1,3,1],[2,3,3,1],[0,3,1,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,1],[0,3,1,2],[1,2,0,1]],[[0,1,2,1],[3,3,3,1],[0,3,1,2],[1,2,0,1]],[[0,1,2,1],[2,4,3,1],[0,3,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,4,1],[0,3,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[0,4,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[0,3,1,2],[2,2,0,1]],[[0,1,2,1],[2,3,3,1],[0,3,1,2],[1,3,0,1]],[[0,1,3,1],[2,3,3,1],[0,3,1,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,1],[0,3,1,2],[1,2,1,0]],[[0,1,2,1],[3,3,3,1],[0,3,1,2],[1,2,1,0]],[[0,1,2,1],[2,4,3,1],[0,3,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,4,1],[0,3,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[0,4,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[0,3,1,2],[2,2,1,0]],[[0,1,2,1],[2,3,3,1],[0,3,1,2],[1,3,1,0]],[[0,1,3,1],[2,3,3,1],[0,3,2,0],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[0,3,2,0],[1,1,2,1]],[[0,1,2,1],[3,3,3,1],[0,3,2,0],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[0,3,2,0],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[0,3,2,0],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[0,4,2,0],[1,1,2,1]],[[0,1,3,1],[2,3,3,1],[0,3,2,0],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[0,3,2,0],[1,2,1,1]],[[0,1,2,1],[3,3,3,1],[0,3,2,0],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[0,3,2,0],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[0,3,2,0],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[0,4,2,0],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[0,3,2,0],[2,2,1,1]],[[0,1,2,1],[2,3,3,1],[0,3,2,0],[1,3,1,1]],[[0,1,3,1],[2,3,3,1],[0,3,2,1],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[0,3,2,1],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[0,3,2,1],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[0,3,2,1],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[0,3,2,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[0,4,2,1],[1,1,1,1]],[[0,1,3,1],[2,3,3,1],[0,3,2,1],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[0,3,2,1],[1,1,2,0]],[[0,1,2,1],[3,3,3,1],[0,3,2,1],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[0,3,2,1],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[0,3,2,1],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[0,4,2,1],[1,1,2,0]],[[0,1,3,1],[2,3,3,1],[0,3,2,1],[1,2,0,1]],[[0,1,2,2],[2,3,3,1],[0,3,2,1],[1,2,0,1]],[[0,1,2,1],[3,3,3,1],[0,3,2,1],[1,2,0,1]],[[0,1,2,1],[2,4,3,1],[0,3,2,1],[1,2,0,1]],[[0,1,2,1],[2,3,4,1],[0,3,2,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[0,4,2,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[0,3,2,1],[2,2,0,1]],[[0,1,2,1],[2,3,3,1],[0,3,2,1],[1,3,0,1]],[[0,1,3,1],[2,3,3,1],[0,3,2,1],[1,2,1,0]],[[0,1,2,2],[2,3,3,1],[0,3,2,1],[1,2,1,0]],[[0,1,2,1],[3,3,3,1],[0,3,2,1],[1,2,1,0]],[[0,1,2,1],[2,4,3,1],[0,3,2,1],[1,2,1,0]],[[0,1,2,1],[2,3,4,1],[0,3,2,1],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[0,4,2,1],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[0,3,2,1],[2,2,1,0]],[[0,1,2,1],[2,3,3,1],[0,3,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,4,1],[1,3,3,0],[0,2,1,0]],[[1,2,2,1],[3,1,3,1],[1,3,3,0],[0,2,1,0]],[[1,2,2,2],[2,1,3,1],[1,3,3,0],[0,2,1,0]],[[1,2,3,1],[2,1,3,1],[1,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,1,3,1],[1,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,1,3,1],[1,3,3,0],[0,2,1,0]],[[0,1,3,1],[2,3,3,1],[0,3,2,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,1],[0,3,2,2],[0,0,2,1]],[[0,1,2,1],[2,4,3,1],[0,3,2,2],[0,0,2,1]],[[0,1,2,1],[2,3,4,1],[0,3,2,2],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[0,3,2,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[0,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,4,3,1],[0,3,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[0,3,2,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[0,3,2,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[0,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[0,3,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[0,3,2,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,1],[0,3,2,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,1],[0,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[0,3,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,4,1],[0,3,2,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,1],[0,3,2,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[0,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[0,3,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[1,3,3,0],[0,1,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,3,0],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,3,0],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,3,0],[0,1,2,0]],[[1,2,2,1],[2,1,3,1],[1,3,4,0],[0,0,2,1]],[[1,2,2,1],[2,1,4,1],[1,3,3,0],[0,0,2,1]],[[1,2,2,1],[3,1,3,1],[1,3,3,0],[0,0,2,1]],[[1,2,2,2],[2,1,3,1],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[2,1,3,1],[1,3,3,0],[0,0,2,1]],[[1,3,2,1],[2,1,3,1],[1,3,3,0],[0,0,2,1]],[[2,2,2,1],[2,1,3,1],[1,3,3,0],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[0,3,3,0],[0,1,2,1]],[[0,1,2,2],[2,3,3,1],[0,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,4,3,1],[0,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,4,1],[0,3,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[0,3,4,0],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[0,3,3,0],[0,1,3,1]],[[0,1,2,1],[2,3,3,1],[0,3,3,0],[0,1,2,2]],[[0,1,3,1],[2,3,3,1],[0,3,3,0],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[0,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[0,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[0,3,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[0,3,4,0],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[0,3,3,0],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[0,3,3,0],[1,1,2,0]],[[0,1,2,1],[3,3,3,1],[0,3,3,0],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[0,3,3,0],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[0,3,3,0],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[0,4,3,0],[1,1,2,0]],[[0,1,3,1],[2,3,3,1],[0,3,3,0],[1,2,1,0]],[[0,1,2,2],[2,3,3,1],[0,3,3,0],[1,2,1,0]],[[0,1,2,1],[3,3,3,1],[0,3,3,0],[1,2,1,0]],[[0,1,2,1],[2,4,3,1],[0,3,3,0],[1,2,1,0]],[[0,1,2,1],[2,3,4,1],[0,3,3,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[0,4,3,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[0,3,3,0],[2,2,1,0]],[[0,1,2,1],[2,3,3,1],[0,3,3,0],[1,3,1,0]],[[0,1,3,1],[2,3,3,1],[0,3,3,1],[0,0,2,1]],[[0,1,2,2],[2,3,3,1],[0,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,4,3,1],[0,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,3,4,1],[0,3,3,1],[0,0,2,1]],[[0,1,2,1],[2,3,3,1],[0,3,4,1],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[0,3,3,1],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[0,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,4,3,1],[0,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[0,3,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,3,1],[0,3,4,1],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[0,3,3,1],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[0,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[0,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[0,3,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[0,3,4,1],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[0,3,3,1],[0,1,3,0]],[[0,1,3,1],[2,3,3,1],[0,3,3,1],[0,2,0,1]],[[0,1,2,2],[2,3,3,1],[0,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[0,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,4,1],[0,3,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[0,3,4,1],[0,2,0,1]],[[0,1,3,1],[2,3,3,1],[0,3,3,1],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[0,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[0,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[0,3,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[0,3,4,1],[0,2,1,0]],[[0,1,3,1],[2,3,3,1],[0,3,3,1],[1,2,0,0]],[[0,1,2,2],[2,3,3,1],[0,3,3,1],[1,2,0,0]],[[0,1,2,1],[3,3,3,1],[0,3,3,1],[1,2,0,0]],[[0,1,2,1],[2,4,3,1],[0,3,3,1],[1,2,0,0]],[[0,1,2,1],[2,3,4,1],[0,3,3,1],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[0,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,1,4,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,2,2],[0,0,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,2,2],[0,0,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[3,1,3,1],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[2,1,3,1],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[2,1,3,1],[1,3,2,2],[0,0,1,1]],[[1,3,2,1],[2,1,3,1],[1,3,2,2],[0,0,1,1]],[[2,2,2,1],[2,1,3,1],[1,3,2,2],[0,0,1,1]],[[0,1,3,1],[2,3,3,1],[0,3,3,2],[0,1,0,1]],[[0,1,2,2],[2,3,3,1],[0,3,3,2],[0,1,0,1]],[[0,1,2,1],[2,4,3,1],[0,3,3,2],[0,1,0,1]],[[0,1,2,1],[2,3,4,1],[0,3,3,2],[0,1,0,1]],[[1,2,2,1],[2,1,4,1],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,1,3,1],[1,3,2,1],[1,2,0,0]],[[1,2,2,2],[2,1,3,1],[1,3,2,1],[1,2,0,0]],[[1,2,3,1],[2,1,3,1],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,1,3,1],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,1,3,1],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,4,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,1,3,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,1,3,1],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,1,3,1],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,1,3,1],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,1,3,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,1,3,1],[1,3,2,1],[1,1,0,1]],[[1,2,2,2],[2,1,3,1],[1,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,1,3,1],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,1,3,1],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,1,3,1],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,4,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[3,1,3,1],[1,3,2,1],[1,0,1,1]],[[1,2,2,2],[2,1,3,1],[1,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,1,3,1],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,1,3,1],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,1,3,1],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,1,4,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,1,3,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,1,3,1],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,1,3,1],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,1,3,1],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,1,3,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,1,3,1],[1,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,1,3,1],[1,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,1,3,1],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,1,3,1],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,1,3,1],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,4,1],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[3,1,3,1],[1,3,2,1],[0,1,1,1]],[[1,2,2,2],[2,1,3,1],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,1,3,1],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,1,3,1],[1,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,1,3,1],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[2,1,4,1],[1,3,2,0],[1,2,0,1]],[[1,2,2,1],[3,1,3,1],[1,3,2,0],[1,2,0,1]],[[1,2,2,2],[2,1,3,1],[1,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,1,3,1],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,1,3,1],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,1,3,1],[1,3,2,0],[1,2,0,1]],[[0,1,3,1],[2,3,3,1],[1,0,1,2],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[1,0,1,2],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[1,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[1,0,1,2],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[1,0,1,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[1,0,2,2],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[1,0,2,2],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[1,0,2,2],[0,2,2,1]],[[0,1,3,1],[2,3,3,1],[1,0,2,2],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[1,0,2,2],[1,2,1,1]],[[0,1,2,1],[3,3,3,1],[1,0,2,2],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[1,0,2,2],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[1,0,2,2],[1,2,1,1]],[[0,1,3,1],[2,3,3,1],[1,0,2,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,1],[1,0,2,2],[1,2,2,0]],[[0,1,2,1],[3,3,3,1],[1,0,2,2],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[1,0,2,2],[1,2,2,0]],[[0,1,2,1],[2,3,4,1],[1,0,2,2],[1,2,2,0]],[[0,1,3,1],[2,3,3,1],[1,0,3,0],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[1,0,3,0],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[1,0,3,0],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[1,0,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[1,0,3,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[1,0,4,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[1,0,3,0],[2,2,2,1]],[[0,1,2,1],[2,3,3,1],[1,0,3,0],[1,3,2,1]],[[0,1,2,1],[2,3,3,1],[1,0,3,0],[1,2,3,1]],[[0,1,2,1],[2,3,3,1],[1,0,3,0],[1,2,2,2]],[[0,1,3,1],[2,3,3,1],[1,0,3,1],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[1,0,3,1],[1,2,1,1]],[[0,1,2,1],[3,3,3,1],[1,0,3,1],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[1,0,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[1,0,3,1],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[1,0,4,1],[1,2,1,1]],[[0,1,3,1],[2,3,3,1],[1,0,3,1],[1,2,2,0]],[[0,1,2,2],[2,3,3,1],[1,0,3,1],[1,2,2,0]],[[0,1,2,1],[3,3,3,1],[1,0,3,1],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[1,0,3,1],[1,2,2,0]],[[0,1,2,1],[2,3,4,1],[1,0,3,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[1,0,4,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[1,0,3,1],[2,2,2,0]],[[0,1,2,1],[2,3,3,1],[1,0,3,1],[1,3,2,0]],[[0,1,2,1],[2,3,3,1],[1,0,3,1],[1,2,3,0]],[[0,1,3,1],[2,3,3,1],[1,0,3,2],[0,1,2,1]],[[0,1,2,2],[2,3,3,1],[1,0,3,2],[0,1,2,1]],[[0,1,2,1],[2,3,4,1],[1,0,3,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,1],[1,0,3,2],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[1,0,3,2],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[1,0,3,2],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[1,0,3,2],[0,2,2,0]],[[0,1,2,2],[2,3,3,1],[1,0,3,2],[0,2,2,0]],[[0,1,2,1],[2,3,4,1],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[1,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[1,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[1,3,2,0],[1,1,1,1]],[[0,1,3,1],[2,3,3,1],[1,1,0,2],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[1,1,0,2],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[1,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[1,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[1,1,0,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[1,1,1,2],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[1,1,1,2],[0,2,2,1]],[[0,1,2,1],[3,3,3,1],[1,1,1,2],[0,2,2,1]],[[0,1,2,1],[2,4,3,1],[1,1,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[1,1,1,2],[0,2,2,1]],[[0,1,3,1],[2,3,3,1],[1,1,2,2],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[1,1,2,2],[0,2,1,1]],[[0,1,2,1],[3,3,3,1],[1,1,2,2],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[1,1,2,2],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[1,1,2,2],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[1,1,2,2],[0,2,2,0]],[[0,1,2,2],[2,3,3,1],[1,1,2,2],[0,2,2,0]],[[0,1,2,1],[3,3,3,1],[1,1,2,2],[0,2,2,0]],[[0,1,2,1],[2,4,3,1],[1,1,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,4,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,1,3,1],[1,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,1,3,1],[1,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,1,3,1],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,1,3,1],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,1,3,1],[1,3,2,0],[1,0,2,1]],[[0,1,3,1],[2,3,3,1],[1,1,3,0],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[1,1,3,0],[0,2,2,1]],[[0,1,2,1],[3,3,3,1],[1,1,3,0],[0,2,2,1]],[[0,1,2,1],[2,4,3,1],[1,1,3,0],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[1,1,3,0],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[1,1,4,0],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[1,1,3,0],[0,3,2,1]],[[0,1,2,1],[2,3,3,1],[1,1,3,0],[0,2,3,1]],[[0,1,2,1],[2,3,3,1],[1,1,3,0],[0,2,2,2]],[[0,1,3,1],[2,3,3,1],[1,1,3,1],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[1,1,3,1],[0,2,1,1]],[[0,1,2,1],[3,3,3,1],[1,1,3,1],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[1,1,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[1,1,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[1,1,4,1],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[1,1,3,1],[0,2,2,0]],[[0,1,2,2],[2,3,3,1],[1,1,3,1],[0,2,2,0]],[[0,1,2,1],[3,3,3,1],[1,1,3,1],[0,2,2,0]],[[0,1,2,1],[2,4,3,1],[1,1,3,1],[0,2,2,0]],[[0,1,2,1],[2,3,4,1],[1,1,3,1],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[1,1,4,1],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[1,1,3,1],[0,3,2,0]],[[0,1,2,1],[2,3,3,1],[1,1,3,1],[0,2,3,0]],[[1,2,2,1],[2,1,4,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,1,3,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,1,3,1],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,1,3,1],[1,3,2,0],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[1,1,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,1],[1,1,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,4,1],[1,1,3,2],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[1,1,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[1,1,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[1,1,3,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[1,1,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[1,1,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[1,1,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,1,3,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,4,1],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[3,1,3,1],[1,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,1,3,1],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,1,3,1],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,1,3,1],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,1,3,1],[1,3,2,0],[0,1,2,1]],[[0,1,3,1],[2,3,3,1],[1,1,3,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,1],[1,1,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,4,1],[1,1,3,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,1],[1,1,3,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[1,1,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[1,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,1,2],[1,2,0,0]],[[1,2,2,1],[3,1,3,1],[1,3,1,2],[1,2,0,0]],[[1,2,2,2],[2,1,3,1],[1,3,1,2],[1,2,0,0]],[[1,2,3,1],[2,1,3,1],[1,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,1,3,1],[1,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,1,3,1],[1,3,1,2],[1,2,0,0]],[[0,1,3,1],[2,3,3,1],[1,2,0,2],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[1,2,0,2],[0,2,2,1]],[[0,1,2,1],[3,3,3,1],[1,2,0,2],[0,2,2,1]],[[0,1,2,1],[2,4,3,1],[1,2,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[1,2,0,2],[0,2,2,1]],[[0,1,3,1],[2,3,3,1],[1,2,1,2],[0,1,2,1]],[[0,1,2,2],[2,3,3,1],[1,2,1,2],[0,1,2,1]],[[0,1,2,1],[3,3,3,1],[1,2,1,2],[0,1,2,1]],[[0,1,2,1],[2,4,3,1],[1,2,1,2],[0,1,2,1]],[[0,1,2,1],[2,3,4,1],[1,2,1,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,1],[1,2,1,2],[1,0,2,1]],[[0,1,2,2],[2,3,3,1],[1,2,1,2],[1,0,2,1]],[[0,1,2,1],[3,3,3,1],[1,2,1,2],[1,0,2,1]],[[0,1,2,1],[2,4,3,1],[1,2,1,2],[1,0,2,1]],[[0,1,2,1],[2,3,4,1],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,1,4,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[3,1,3,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,1,3,1],[1,3,1,2],[1,1,1,0]],[[0,1,3,1],[2,3,3,1],[1,2,2,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,1],[1,2,2,2],[0,0,2,1]],[[0,1,2,1],[3,3,3,1],[1,2,2,2],[0,0,2,1]],[[0,1,2,1],[2,4,3,1],[1,2,2,2],[0,0,2,1]],[[0,1,2,1],[2,3,4,1],[1,2,2,2],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[1,2,2,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[1,2,2,2],[0,1,1,1]],[[0,1,2,1],[3,3,3,1],[1,2,2,2],[0,1,1,1]],[[0,1,2,1],[2,4,3,1],[1,2,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[1,2,2,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[1,2,2,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[1,2,2,2],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[1,2,2,2],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[1,2,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[1,2,2,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,1],[1,2,2,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,1],[1,2,2,2],[0,2,0,1]],[[0,1,2,1],[3,3,3,1],[1,2,2,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[1,2,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,4,1],[1,2,2,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,1],[1,2,2,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[1,2,2,2],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[1,2,2,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[1,2,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,1],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,1],[1,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,1],[1,3,1,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,1],[1,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,1],[1,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,1],[1,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,1],[1,3,1,2],[1,1,0,1]],[[0,1,3,1],[2,3,3,1],[1,2,2,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,1],[1,2,2,2],[1,0,1,1]],[[0,1,2,1],[3,3,3,1],[1,2,2,2],[1,0,1,1]],[[0,1,2,1],[2,4,3,1],[1,2,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,4,1],[1,2,2,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,1],[1,2,2,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[1,2,2,2],[1,0,2,0]],[[0,1,2,1],[3,3,3,1],[1,2,2,2],[1,0,2,0]],[[0,1,2,1],[2,4,3,1],[1,2,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[1,2,2,2],[1,0,2,0]],[[0,1,3,1],[2,3,3,1],[1,2,2,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,1],[1,2,2,2],[1,1,0,1]],[[0,1,2,1],[3,3,3,1],[1,2,2,2],[1,1,0,1]],[[0,1,2,1],[2,4,3,1],[1,2,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,4,1],[1,2,2,2],[1,1,0,1]],[[0,1,3,1],[2,3,3,1],[1,2,2,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,1],[1,2,2,2],[1,1,1,0]],[[0,1,2,1],[3,3,3,1],[1,2,2,2],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[1,2,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,4,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,1,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,1,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,1],[1,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,1],[1,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,1],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,1],[1,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,1],[1,3,1,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,1],[1,2,3,0],[0,1,2,1]],[[0,1,2,2],[2,3,3,1],[1,2,3,0],[0,1,2,1]],[[0,1,2,1],[3,3,3,1],[1,2,3,0],[0,1,2,1]],[[0,1,2,1],[2,4,3,1],[1,2,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,4,1],[1,2,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[1,2,4,0],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[1,2,3,0],[0,1,3,1]],[[0,1,2,1],[2,3,3,1],[1,2,3,0],[0,1,2,2]],[[0,1,3,1],[2,3,3,1],[1,2,3,0],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[1,2,3,0],[0,2,1,1]],[[0,1,2,1],[3,3,3,1],[1,2,3,0],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[1,2,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[1,2,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[1,2,4,0],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[1,2,3,0],[1,0,2,1]],[[0,1,2,2],[2,3,3,1],[1,2,3,0],[1,0,2,1]],[[0,1,2,1],[3,3,3,1],[1,2,3,0],[1,0,2,1]],[[0,1,2,1],[2,4,3,1],[1,2,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,4,1],[1,2,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[1,2,4,0],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[1,2,3,0],[1,0,3,1]],[[0,1,2,1],[2,3,3,1],[1,2,3,0],[1,0,2,2]],[[0,1,3,1],[2,3,3,1],[1,2,3,0],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[1,2,3,0],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[1,2,3,0],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[1,2,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[1,2,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[1,2,4,0],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,1,3,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,1],[1,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,1],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,1],[1,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[3,1,3,1],[1,3,1,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,1],[1,2,3,1],[0,0,2,1]],[[0,1,2,2],[2,3,3,1],[1,2,3,1],[0,0,2,1]],[[0,1,2,1],[3,3,3,1],[1,2,3,1],[0,0,2,1]],[[0,1,2,1],[2,4,3,1],[1,2,3,1],[0,0,2,1]],[[0,1,2,1],[2,3,4,1],[1,2,3,1],[0,0,2,1]],[[0,1,2,1],[2,3,3,1],[1,2,4,1],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[1,2,3,1],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[1,2,3,1],[0,1,1,1]],[[0,1,2,1],[3,3,3,1],[1,2,3,1],[0,1,1,1]],[[0,1,2,1],[2,4,3,1],[1,2,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[1,2,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,3,1],[1,2,4,1],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[1,2,3,1],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[1,2,3,1],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[1,2,3,1],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[1,2,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[1,2,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[1,2,4,1],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[1,2,3,1],[0,1,3,0]],[[0,1,3,1],[2,3,3,1],[1,2,3,1],[0,2,0,1]],[[0,1,2,2],[2,3,3,1],[1,2,3,1],[0,2,0,1]],[[0,1,2,1],[3,3,3,1],[1,2,3,1],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[1,2,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,4,1],[1,2,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[1,2,4,1],[0,2,0,1]],[[0,1,3,1],[2,3,3,1],[1,2,3,1],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[1,2,3,1],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[1,2,3,1],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[1,2,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[1,2,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[1,2,4,1],[0,2,1,0]],[[1,2,2,2],[2,1,3,1],[1,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,1],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,1],[1,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,1],[1,3,1,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,1],[1,2,3,1],[1,0,1,1]],[[0,1,2,2],[2,3,3,1],[1,2,3,1],[1,0,1,1]],[[0,1,2,1],[3,3,3,1],[1,2,3,1],[1,0,1,1]],[[0,1,2,1],[2,4,3,1],[1,2,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,4,1],[1,2,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[1,2,4,1],[1,0,1,1]],[[0,1,3,1],[2,3,3,1],[1,2,3,1],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[1,2,3,1],[1,0,2,0]],[[0,1,2,1],[3,3,3,1],[1,2,3,1],[1,0,2,0]],[[0,1,2,1],[2,4,3,1],[1,2,3,1],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[1,2,3,1],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[1,2,4,1],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[1,2,3,1],[1,0,3,0]],[[0,1,3,1],[2,3,3,1],[1,2,3,1],[1,1,0,1]],[[0,1,2,2],[2,3,3,1],[1,2,3,1],[1,1,0,1]],[[0,1,2,1],[3,3,3,1],[1,2,3,1],[1,1,0,1]],[[0,1,2,1],[2,4,3,1],[1,2,3,1],[1,1,0,1]],[[0,1,2,1],[2,3,4,1],[1,2,3,1],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[1,2,4,1],[1,1,0,1]],[[0,1,3,1],[2,3,3,1],[1,2,3,1],[1,1,1,0]],[[0,1,2,2],[2,3,3,1],[1,2,3,1],[1,1,1,0]],[[0,1,2,1],[3,3,3,1],[1,2,3,1],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[1,2,3,1],[1,1,1,0]],[[0,1,2,1],[2,3,4,1],[1,2,3,1],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[1,2,4,1],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,1],[1,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,1],[1,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,1],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,1],[1,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,1],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,4,1],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,1,1],[1,1,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,1,1],[1,1,2,0]],[[0,1,3,1],[2,3,3,1],[1,2,3,2],[0,1,0,1]],[[0,1,2,2],[2,3,3,1],[1,2,3,2],[0,1,0,1]],[[0,1,2,1],[3,3,3,1],[1,2,3,2],[0,1,0,1]],[[0,1,2,1],[2,4,3,1],[1,2,3,2],[0,1,0,1]],[[0,1,2,1],[2,3,4,1],[1,2,3,2],[0,1,0,1]],[[1,3,2,1],[2,1,3,1],[1,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,1,3,1],[1,3,1,0],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[1,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,1,3,1],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[3,1,3,1],[1,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,1,3,1],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,1,3,1],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,1,3,1],[1,3,1,0],[0,2,2,1]],[[0,1,3,1],[2,3,3,1],[1,2,3,2],[1,0,0,1]],[[0,1,2,2],[2,3,3,1],[1,2,3,2],[1,0,0,1]],[[0,1,2,1],[3,3,3,1],[1,2,3,2],[1,0,0,1]],[[0,1,2,1],[2,4,3,1],[1,2,3,2],[1,0,0,1]],[[0,1,2,1],[2,3,4,1],[1,2,3,2],[1,0,0,1]],[[2,2,2,1],[2,1,3,1],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,4,1],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,0,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[1,3,0,2],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[1,3,0,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[1,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[1,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[3,1,3,1],[1,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,1,3,1],[1,3,0,2],[1,0,2,1]],[[1,2,3,1],[2,1,3,1],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,1,3,1],[1,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,1,3,1],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,1,4,1],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,1,3,1],[1,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,1],[1,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,1],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,1,3,1],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[3,1,3,1],[1,3,0,2],[0,2,1,1]],[[1,2,2,2],[2,1,3,1],[1,3,0,2],[0,2,1,1]],[[1,2,3,1],[2,1,3,1],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,1,3,1],[1,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,1,3,1],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,1,4,1],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[3,1,3,1],[1,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,1,3,1],[1,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,1,3,1],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,1,3,1],[1,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,1,3,1],[1,3,0,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,0,1],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[1,3,0,1],[0,2,2,1]],[[0,1,2,1],[3,3,3,1],[1,3,0,1],[0,2,2,1]],[[0,1,2,1],[2,4,3,1],[1,3,0,1],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[1,3,0,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[1,4,0,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[1,3,0,1],[0,3,2,1]],[[0,1,2,1],[2,3,3,1],[1,3,0,1],[0,2,3,1]],[[0,1,2,1],[2,3,3,1],[1,3,0,1],[0,2,2,2]],[[0,1,3,1],[2,3,3,1],[1,3,0,1],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[1,3,0,1],[1,1,2,1]],[[0,1,2,1],[3,3,3,1],[1,3,0,1],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[1,3,0,1],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[1,3,0,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[1,4,0,1],[1,1,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,0,2],[0,1,2,1]],[[0,1,2,2],[2,3,3,1],[1,3,0,2],[0,1,2,1]],[[0,1,2,1],[3,3,3,1],[1,3,0,2],[0,1,2,1]],[[0,1,2,1],[2,4,3,1],[1,3,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,4,1],[1,3,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[1,4,0,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,0,2],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[1,3,0,2],[0,2,1,1]],[[0,1,2,1],[3,3,3,1],[1,3,0,2],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[1,3,0,2],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[1,3,0,2],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[1,4,0,2],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[1,3,0,2],[0,3,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,0,2],[0,2,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,0,2],[0,2,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,0,2],[0,2,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,0,2],[0,2,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,0,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[1,4,0,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[1,3,0,2],[0,3,2,0]],[[0,1,2,1],[2,3,3,1],[1,3,0,2],[0,2,3,0]],[[0,1,3,1],[2,3,3,1],[1,3,0,2],[1,0,2,1]],[[0,1,2,2],[2,3,3,1],[1,3,0,2],[1,0,2,1]],[[0,1,2,1],[3,3,3,1],[1,3,0,2],[1,0,2,1]],[[0,1,2,1],[2,4,3,1],[1,3,0,2],[1,0,2,1]],[[0,1,2,1],[2,3,4,1],[1,3,0,2],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[1,4,0,2],[1,0,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,0,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[1,3,0,2],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[1,3,0,2],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[1,3,0,2],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[1,3,0,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[1,4,0,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,0,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,0,2],[1,1,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,0,2],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[1,4,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[3,1,3,1],[1,3,0,1],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[1,3,0,1],[1,1,2,1]],[[1,2,3,1],[2,1,3,1],[1,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[1,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[1,3,0,1],[0,2,2,1]],[[1,2,2,1],[3,1,3,1],[1,3,0,1],[0,2,2,1]],[[1,2,2,2],[2,1,3,1],[1,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,1,3,1],[1,3,0,1],[0,2,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,1,0],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[1,3,1,0],[0,2,2,1]],[[0,1,2,1],[3,3,3,1],[1,3,1,0],[0,2,2,1]],[[0,1,2,1],[2,4,3,1],[1,3,1,0],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[1,3,1,0],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[1,4,1,0],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[1,3,1,0],[0,3,2,1]],[[0,1,2,1],[2,3,3,1],[1,3,1,0],[0,2,3,1]],[[0,1,2,1],[2,3,3,1],[1,3,1,0],[0,2,2,2]],[[0,1,3,1],[2,3,3,1],[1,3,1,0],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[1,3,1,0],[1,1,2,1]],[[0,1,2,1],[3,3,3,1],[1,3,1,0],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[1,3,1,0],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[1,3,1,0],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[1,4,1,0],[1,1,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,1,1],[0,2,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,1,1],[0,2,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,1,1],[0,2,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,1,1],[0,2,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,1,1],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[1,4,1,1],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[1,3,1,1],[0,3,2,0]],[[0,1,2,1],[2,3,3,1],[1,3,1,1],[0,2,3,0]],[[0,1,3,1],[2,3,3,1],[1,3,1,1],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,1,1],[1,1,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,1,1],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,1,1],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,1,1],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[1,4,1,1],[1,1,2,0]],[[1,3,2,1],[2,1,3,1],[1,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,1,3,1],[1,3,0,1],[0,2,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,1,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[1,3,1,2],[0,1,1,1]],[[0,1,2,1],[3,3,3,1],[1,3,1,2],[0,1,1,1]],[[0,1,2,1],[2,4,3,1],[1,3,1,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[1,3,1,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,1],[1,4,1,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,1,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,1,2],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,1,2],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,1,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,1,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[1,4,1,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,1],[1,3,1,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,1],[1,3,1,2],[0,2,0,1]],[[0,1,2,1],[3,3,3,1],[1,3,1,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[1,3,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,4,1],[1,3,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[1,4,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[1,3,1,2],[0,3,0,1]],[[0,1,3,1],[2,3,3,1],[1,3,1,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[1,3,1,2],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[1,3,1,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[1,3,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[1,3,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[1,4,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[1,3,1,2],[0,3,1,0]],[[0,1,3,1],[2,3,3,1],[1,3,1,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,1],[1,3,1,2],[1,0,1,1]],[[0,1,2,1],[3,3,3,1],[1,3,1,2],[1,0,1,1]],[[0,1,2,1],[2,4,3,1],[1,3,1,2],[1,0,1,1]],[[0,1,2,1],[2,3,4,1],[1,3,1,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[1,4,1,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,1,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,1,2],[1,0,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,1,2],[1,0,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,1,2],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,1,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[1,4,1,2],[1,0,2,0]],[[0,1,3,1],[2,3,3,1],[1,3,1,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,1],[1,3,1,2],[1,1,0,1]],[[0,1,2,1],[3,3,3,1],[1,3,1,2],[1,1,0,1]],[[0,1,2,1],[2,4,3,1],[1,3,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,4,1],[1,3,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[1,4,1,2],[1,1,0,1]],[[0,1,3,1],[2,3,3,1],[1,3,1,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,1],[1,3,1,2],[1,1,1,0]],[[0,1,2,1],[3,3,3,1],[1,3,1,2],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[1,3,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,4,1],[1,3,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[1,4,1,2],[1,1,1,0]],[[0,1,3,1],[2,3,3,1],[1,3,1,2],[1,2,0,0]],[[0,1,2,2],[2,3,3,1],[1,3,1,2],[1,2,0,0]],[[0,1,2,1],[3,3,3,1],[1,3,1,2],[1,2,0,0]],[[0,1,2,1],[2,4,3,1],[1,3,1,2],[1,2,0,0]],[[0,1,2,1],[2,3,4,1],[1,3,1,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[1,4,1,2],[1,2,0,0]],[[1,2,2,1],[2,1,4,1],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[3,1,3,1],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,1,3,1],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,1,3,1],[1,2,3,2],[1,0,0,1]],[[1,3,2,1],[2,1,3,1],[1,2,3,2],[1,0,0,1]],[[2,2,2,1],[2,1,3,1],[1,2,3,2],[1,0,0,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,0],[0,1,2,1]],[[0,1,2,2],[2,3,3,1],[1,3,2,0],[0,1,2,1]],[[0,1,2,1],[3,3,3,1],[1,3,2,0],[0,1,2,1]],[[0,1,2,1],[2,4,3,1],[1,3,2,0],[0,1,2,1]],[[0,1,2,1],[2,3,4,1],[1,3,2,0],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[1,4,2,0],[0,1,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,0],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[1,3,2,0],[0,2,1,1]],[[0,1,2,1],[3,3,3,1],[1,3,2,0],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[1,3,2,0],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[1,3,2,0],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[1,4,2,0],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[1,3,2,0],[0,3,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,0],[1,0,2,1]],[[0,1,2,2],[2,3,3,1],[1,3,2,0],[1,0,2,1]],[[0,1,2,1],[3,3,3,1],[1,3,2,0],[1,0,2,1]],[[0,1,2,1],[2,4,3,1],[1,3,2,0],[1,0,2,1]],[[0,1,2,1],[2,3,4,1],[1,3,2,0],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[1,4,2,0],[1,0,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,0],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[1,3,2,0],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[1,3,2,0],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[1,3,2,0],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[1,3,2,0],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[1,4,2,0],[1,1,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,0],[1,2,0,1]],[[0,1,2,2],[2,3,3,1],[1,3,2,0],[1,2,0,1]],[[0,1,2,1],[3,3,3,1],[1,3,2,0],[1,2,0,1]],[[0,1,2,1],[2,4,3,1],[1,3,2,0],[1,2,0,1]],[[0,1,2,1],[2,3,4,1],[1,3,2,0],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[1,4,2,0],[1,2,0,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,1],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[1,3,2,1],[0,1,1,1]],[[0,1,2,1],[3,3,3,1],[1,3,2,1],[0,1,1,1]],[[0,1,2,1],[2,4,3,1],[1,3,2,1],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[1,3,2,1],[0,1,1,1]],[[0,1,2,1],[2,3,3,1],[1,4,2,1],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,1],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,2,1],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,2,1],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,2,1],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,2,1],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[1,4,2,1],[0,1,2,0]],[[0,1,3,1],[2,3,3,1],[1,3,2,1],[0,2,0,1]],[[0,1,2,2],[2,3,3,1],[1,3,2,1],[0,2,0,1]],[[0,1,2,1],[3,3,3,1],[1,3,2,1],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[1,3,2,1],[0,2,0,1]],[[0,1,2,1],[2,3,4,1],[1,3,2,1],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[1,4,2,1],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[1,3,2,1],[0,3,0,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,1],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[1,3,2,1],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[1,3,2,1],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[1,3,2,1],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[1,3,2,1],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[1,4,2,1],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[1,3,2,1],[0,3,1,0]],[[0,1,3,1],[2,3,3,1],[1,3,2,1],[1,0,1,1]],[[0,1,2,2],[2,3,3,1],[1,3,2,1],[1,0,1,1]],[[0,1,2,1],[3,3,3,1],[1,3,2,1],[1,0,1,1]],[[0,1,2,1],[2,4,3,1],[1,3,2,1],[1,0,1,1]],[[0,1,2,1],[2,3,4,1],[1,3,2,1],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[1,4,2,1],[1,0,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,1],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,2,1],[1,0,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,2,1],[1,0,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,2,1],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,2,1],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[1,4,2,1],[1,0,2,0]],[[0,1,3,1],[2,3,3,1],[1,3,2,1],[1,1,0,1]],[[0,1,2,2],[2,3,3,1],[1,3,2,1],[1,1,0,1]],[[0,1,2,1],[3,3,3,1],[1,3,2,1],[1,1,0,1]],[[0,1,2,1],[2,4,3,1],[1,3,2,1],[1,1,0,1]],[[0,1,2,1],[2,3,4,1],[1,3,2,1],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[1,4,2,1],[1,1,0,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,1],[1,1,1,0]],[[0,1,2,2],[2,3,3,1],[1,3,2,1],[1,1,1,0]],[[0,1,2,1],[3,3,3,1],[1,3,2,1],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[1,3,2,1],[1,1,1,0]],[[0,1,2,1],[2,3,4,1],[1,3,2,1],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[1,4,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[1,2,3,2],[0,1,0,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,1],[1,2,0,0]],[[0,1,2,2],[2,3,3,1],[1,3,2,1],[1,2,0,0]],[[0,1,2,1],[3,3,3,1],[1,3,2,1],[1,2,0,0]],[[0,1,2,1],[2,4,3,1],[1,3,2,1],[1,2,0,0]],[[0,1,2,1],[2,3,4,1],[1,3,2,1],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[1,4,2,1],[1,2,0,0]],[[1,2,2,1],[3,1,3,1],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,1,3,1],[1,2,3,2],[0,1,0,1]],[[1,2,3,1],[2,1,3,1],[1,2,3,2],[0,1,0,1]],[[1,3,2,1],[2,1,3,1],[1,2,3,2],[0,1,0,1]],[[2,2,2,1],[2,1,3,1],[1,2,3,2],[0,1,0,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,2],[0,0,1,1]],[[0,1,2,2],[2,3,3,1],[1,3,2,2],[0,0,1,1]],[[0,1,2,1],[3,3,3,1],[1,3,2,2],[0,0,1,1]],[[0,1,2,1],[2,4,3,1],[1,3,2,2],[0,0,1,1]],[[0,1,2,1],[2,3,4,1],[1,3,2,2],[0,0,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,2,2],[0,0,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,2,2],[0,0,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,2,2],[0,0,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,2,2],[0,0,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[2,1,3,1],[1,2,4,1],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[3,1,3,1],[1,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,1,3,1],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,1,3,1],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,1,3,1],[1,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,1,3,1],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,3,1],[1,2,4,1],[1,1,0,1]],[[1,2,2,1],[2,1,4,1],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[3,1,3,1],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,1,3,1],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,1,3,1],[1,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,1,3,1],[1,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,1,3,1],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,1,3,1],[1,2,3,1],[1,0,3,0]],[[1,2,2,1],[2,1,3,1],[1,2,4,1],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[3,1,3,1],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[1,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,3,1],[1,2,4,1],[1,0,1,1]],[[1,2,2,1],[2,1,4,1],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[3,1,3,1],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,1,3,1],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,1,3,1],[1,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,1,3,1],[1,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,1,3,1],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,1,3,1],[1,2,4,1],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[3,1,3,1],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,1,3,1],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,1,3,1],[1,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,1,3,1],[1,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,1,3,1],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,3,1],[1,2,4,1],[0,2,0,1]],[[1,2,2,1],[2,1,4,1],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[3,1,3,1],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,1,3,1],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,1,3,1],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,1,3,1],[1,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,1,3,1],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,3,1],[1,2,3,1],[0,1,3,0]],[[1,2,2,1],[2,1,3,1],[1,2,4,1],[0,1,2,0]],[[1,2,2,1],[2,1,4,1],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[3,1,3,1],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[1,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,3,1],[1,2,4,1],[0,1,1,1]],[[1,2,2,1],[2,1,4,1],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[3,1,3,1],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,1,3,1],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,1,3,1],[1,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,1,3,1],[1,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,1,3,1],[1,2,3,1],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,3,0],[0,0,2,1]],[[0,1,2,2],[2,3,3,1],[1,3,3,0],[0,0,2,1]],[[0,1,2,1],[3,3,3,1],[1,3,3,0],[0,0,2,1]],[[0,1,2,1],[2,4,3,1],[1,3,3,0],[0,0,2,1]],[[0,1,2,1],[2,3,4,1],[1,3,3,0],[0,0,2,1]],[[0,1,2,1],[2,3,3,1],[1,3,4,0],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,3,0],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,3,0],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,3,0],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,3,0],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,3,0],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[1,4,3,0],[0,1,2,0]],[[0,1,3,1],[2,3,3,1],[1,3,3,0],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[1,3,3,0],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[1,3,3,0],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[1,3,3,0],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[1,3,3,0],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[1,4,3,0],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[1,3,3,0],[0,3,1,0]],[[1,2,2,1],[2,1,3,1],[1,2,4,1],[0,0,2,1]],[[1,2,2,1],[2,1,4,1],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[3,1,3,1],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,1,3,1],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[2,1,3,1],[1,2,3,1],[0,0,2,1]],[[1,3,2,1],[2,1,3,1],[1,2,3,1],[0,0,2,1]],[[2,2,2,1],[2,1,3,1],[1,2,3,1],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,3,0],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,3,0],[1,0,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,3,0],[1,0,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,3,0],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,3,0],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[1,4,3,0],[1,0,2,0]],[[0,1,3,1],[2,3,3,1],[1,3,3,0],[1,1,1,0]],[[0,1,2,2],[2,3,3,1],[1,3,3,0],[1,1,1,0]],[[0,1,2,1],[3,3,3,1],[1,3,3,0],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[1,3,3,0],[1,1,1,0]],[[0,1,2,1],[2,3,4,1],[1,3,3,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[1,4,3,0],[1,1,1,0]],[[0,1,3,1],[2,3,3,1],[1,3,3,0],[1,2,0,0]],[[0,1,2,2],[2,3,3,1],[1,3,3,0],[1,2,0,0]],[[0,1,2,1],[3,3,3,1],[1,3,3,0],[1,2,0,0]],[[0,1,2,1],[2,4,3,1],[1,3,3,0],[1,2,0,0]],[[0,1,2,1],[2,3,4,1],[1,3,3,0],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[1,4,3,0],[1,2,0,0]],[[1,2,2,1],[2,1,3,1],[1,2,4,0],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[1,2,3,0],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[1,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[1,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,3,1],[1,2,3,0],[1,0,2,2]],[[1,2,2,1],[2,1,3,1],[1,2,3,0],[1,0,3,1]],[[1,2,2,1],[2,1,3,1],[1,2,4,0],[1,0,2,1]],[[1,2,2,1],[2,1,4,1],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[3,1,3,1],[1,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,1,3,1],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,1,3,1],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,1,3,1],[1,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,1,3,1],[1,2,3,0],[1,0,2,1]],[[0,1,3,1],[2,3,3,1],[1,3,3,1],[0,0,1,1]],[[0,1,2,2],[2,3,3,1],[1,3,3,1],[0,0,1,1]],[[0,1,2,1],[3,3,3,1],[1,3,3,1],[0,0,1,1]],[[0,1,2,1],[2,4,3,1],[1,3,3,1],[0,0,1,1]],[[0,1,2,1],[2,3,4,1],[1,3,3,1],[0,0,1,1]],[[0,1,2,1],[2,3,3,1],[1,3,4,1],[0,0,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,3,1],[0,0,2,0]],[[0,1,2,2],[2,3,3,1],[1,3,3,1],[0,0,2,0]],[[0,1,2,1],[3,3,3,1],[1,3,3,1],[0,0,2,0]],[[0,1,2,1],[2,4,3,1],[1,3,3,1],[0,0,2,0]],[[0,1,2,1],[2,3,4,1],[1,3,3,1],[0,0,2,0]],[[0,1,2,1],[2,3,3,1],[1,3,4,1],[0,0,2,0]],[[1,2,2,1],[2,1,3,1],[1,2,4,0],[0,2,1,1]],[[1,2,2,1],[2,1,4,1],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[3,1,3,1],[1,2,3,0],[0,2,1,1]],[[1,2,2,2],[2,1,3,1],[1,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,1,3,1],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,1,3,1],[1,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,1,3,1],[1,2,3,0],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,3,1],[0,2,0,0]],[[0,1,2,2],[2,3,3,1],[1,3,3,1],[0,2,0,0]],[[0,1,2,1],[3,3,3,1],[1,3,3,1],[0,2,0,0]],[[0,1,2,1],[2,4,3,1],[1,3,3,1],[0,2,0,0]],[[0,1,2,1],[2,3,4,1],[1,3,3,1],[0,2,0,0]],[[0,1,2,1],[2,3,3,1],[1,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,3,1],[1,2,3,0],[0,1,2,2]],[[1,2,2,1],[2,1,3,1],[1,2,3,0],[0,1,3,1]],[[1,2,2,1],[2,1,3,1],[1,2,4,0],[0,1,2,1]],[[1,2,2,1],[2,1,4,1],[1,2,3,0],[0,1,2,1]],[[1,2,2,1],[3,1,3,1],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,1,3,1],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,1,3,1],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,1,3,1],[1,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,1,3,1],[1,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,1,4,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[3,1,3,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,1,3,1],[1,2,2,2],[1,1,1,0]],[[0,1,3,1],[2,3,3,1],[1,3,3,1],[1,1,0,0]],[[0,1,2,2],[2,3,3,1],[1,3,3,1],[1,1,0,0]],[[0,1,2,1],[3,3,3,1],[1,3,3,1],[1,1,0,0]],[[0,1,2,1],[2,4,3,1],[1,3,3,1],[1,1,0,0]],[[0,1,2,1],[2,3,4,1],[1,3,3,1],[1,1,0,0]],[[0,1,2,1],[2,3,3,1],[1,4,3,1],[1,1,0,0]],[[1,2,3,1],[2,1,3,1],[1,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,1],[1,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,4,1],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,1],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,1],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,1],[1,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,1],[1,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,1],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,1,4,1],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,1],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[1,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[1,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,1],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,1],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,1],[1,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,1],[1,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,1],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,1,4,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[3,1,3,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,1],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,1],[1,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,1],[1,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[3,1,3,1],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,1],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,1],[1,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,1],[1,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,1],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,4,1],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,1],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[1,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[1,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,4,1],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,1],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,1],[1,2,2,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[1,3,3,2],[0,0,0,1]],[[0,1,2,2],[2,3,3,1],[1,3,3,2],[0,0,0,1]],[[0,1,2,1],[3,3,3,1],[1,3,3,2],[0,0,0,1]],[[0,1,2,1],[2,4,3,1],[1,3,3,2],[0,0,0,1]],[[0,1,2,1],[2,3,4,1],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[2,1,3,1],[1,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,1],[1,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,1],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,4,1],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[3,1,3,1],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,1,3,1],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,1,3,1],[1,2,2,2],[0,0,2,1]],[[1,3,2,1],[2,1,3,1],[1,2,2,2],[0,0,2,1]],[[2,2,2,1],[2,1,3,1],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[2,1,4,1],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[3,1,3,1],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[2,1,3,1],[1,2,1,2],[1,0,2,1]],[[1,2,3,1],[2,1,3,1],[1,2,1,2],[1,0,2,1]],[[1,3,2,1],[2,1,3,1],[1,2,1,2],[1,0,2,1]],[[2,2,2,1],[2,1,3,1],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,1,4,1],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[3,1,3,1],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,1,3,1],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,1,3,1],[1,2,1,2],[0,1,2,1]],[[1,3,2,1],[2,1,3,1],[1,2,1,2],[0,1,2,1]],[[2,2,2,1],[2,1,3,1],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[2,1,4,1],[1,2,0,2],[0,2,2,1]],[[1,2,2,1],[3,1,3,1],[1,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,3,1],[1,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,3,1],[1,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,1,3,1],[1,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,3,1],[1,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,4,1],[1,1,3,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,1],[1,1,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,1],[1,1,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,1],[1,1,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,1],[1,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[1,1,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,1],[1,1,3,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,1],[1,1,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,1],[1,1,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,1],[1,1,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,4,1],[1,1,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,1],[1,1,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,1],[1,1,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,1],[1,1,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,1],[1,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,4,1],[1,1,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,1],[1,1,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,1],[1,1,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,1],[1,1,3,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,1],[1,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,4,1],[1,1,3,2],[0,0,2,1]],[[1,2,2,2],[2,1,3,1],[1,1,3,2],[0,0,2,1]],[[1,2,3,1],[2,1,3,1],[1,1,3,2],[0,0,2,1]],[[1,3,2,1],[2,1,3,1],[1,1,3,2],[0,0,2,1]],[[2,2,2,1],[2,1,3,1],[1,1,3,2],[0,0,2,1]],[[1,2,2,1],[2,1,3,1],[1,1,3,1],[0,2,3,0]],[[1,2,2,1],[2,1,3,1],[1,1,3,1],[0,3,2,0]],[[1,2,2,1],[2,1,3,1],[1,1,4,1],[0,2,2,0]],[[1,2,2,1],[2,1,4,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[3,1,3,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,1,3,1],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,1,3,1],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,1,3,1],[1,1,3,1],[0,2,2,0]],[[2,2,2,1],[2,1,3,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,1,3,1],[1,1,4,1],[0,2,1,1]],[[1,2,2,1],[2,1,4,1],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[3,1,3,1],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,1,3,1],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,1,3,1],[1,1,3,1],[0,2,1,1]],[[1,3,2,1],[2,1,3,1],[1,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,1,3,1],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,3,1],[1,1,3,0],[0,2,2,2]],[[1,2,2,1],[2,1,3,1],[1,1,3,0],[0,2,3,1]],[[1,2,2,1],[2,1,3,1],[1,1,3,0],[0,3,2,1]],[[1,2,2,1],[2,1,3,1],[1,1,4,0],[0,2,2,1]],[[1,2,2,1],[2,1,4,1],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[3,1,3,1],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,1,3,1],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,1,3,1],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,1,3,1],[1,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,1,3,1],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,1,4,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[3,1,3,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,1],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,1],[1,1,2,2],[0,2,2,0]],[[1,3,2,1],[2,1,3,1],[1,1,2,2],[0,2,2,0]],[[2,2,2,1],[2,1,3,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,4,1],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[3,1,3,1],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,1,3,1],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[2,1,3,1],[1,1,2,2],[0,2,1,1]],[[1,3,2,1],[2,1,3,1],[1,1,2,2],[0,2,1,1]],[[2,2,2,1],[2,1,3,1],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[2,1,4,1],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[3,1,3,1],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,1,3,1],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,1,3,1],[1,1,1,2],[0,2,2,1]],[[1,3,2,1],[2,1,3,1],[1,1,1,2],[0,2,2,1]],[[2,2,2,1],[2,1,3,1],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,4,1],[1,1,0,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,0,1,1],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[2,0,1,1],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[2,0,1,1],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[2,0,1,1],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[2,0,1,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[3,0,1,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,1,1],[2,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,1,1],[1,3,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,1,1],[1,2,3,1]],[[0,1,2,1],[2,3,3,1],[2,0,1,1],[1,2,2,2]],[[0,1,3,1],[2,3,3,1],[2,0,1,2],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[2,0,1,2],[0,2,2,1]],[[0,1,2,1],[3,3,3,1],[2,0,1,2],[0,2,2,1]],[[0,1,2,1],[2,4,3,1],[2,0,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[2,0,1,2],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[3,0,1,2],[0,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,0,1,2],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[2,0,1,2],[1,1,2,1]],[[0,1,2,1],[3,3,3,1],[2,0,1,2],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[2,0,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[2,0,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[3,0,1,2],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,1,2],[2,1,2,1]],[[0,1,3,1],[2,3,3,1],[2,0,1,2],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[2,0,1,2],[1,2,1,1]],[[0,1,2,1],[3,3,3,1],[2,0,1,2],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[2,0,1,2],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[2,0,1,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[3,0,1,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,0,1,2],[2,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,0,1,2],[1,3,1,1]],[[0,1,3,1],[2,3,3,1],[2,0,1,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,1],[2,0,1,2],[1,2,2,0]],[[0,1,2,1],[3,3,3,1],[2,0,1,2],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[2,0,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,4,1],[2,0,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[3,0,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,1,2],[2,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,1,2],[1,3,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,1,2],[1,2,3,0]],[[0,1,3,1],[2,3,3,1],[2,0,2,0],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[2,0,2,0],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[2,0,2,0],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[2,0,2,0],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[2,0,2,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[3,0,2,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,2,0],[2,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,2,0],[1,3,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,2,0],[1,2,3,1]],[[0,1,2,1],[2,3,3,1],[2,0,2,0],[1,2,2,2]],[[0,1,3,1],[2,3,3,1],[2,0,2,1],[1,2,2,0]],[[0,1,2,2],[2,3,3,1],[2,0,2,1],[1,2,2,0]],[[0,1,2,1],[3,3,3,1],[2,0,2,1],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[2,0,2,1],[1,2,2,0]],[[0,1,2,1],[2,3,4,1],[2,0,2,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[3,0,2,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,2,1],[2,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,2,1],[1,3,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,2,1],[1,2,3,0]],[[0,1,3,1],[2,3,3,1],[2,0,2,2],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[2,0,2,2],[0,2,1,1]],[[0,1,2,1],[3,3,3,1],[2,0,2,2],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[2,0,2,2],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[2,0,2,2],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[3,0,2,2],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[2,0,2,2],[0,2,2,0]],[[0,1,2,2],[2,3,3,1],[2,0,2,2],[0,2,2,0]],[[0,1,2,1],[3,3,3,1],[2,0,2,2],[0,2,2,0]],[[0,1,2,1],[2,4,3,1],[2,0,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,4,1],[2,0,2,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[3,0,2,2],[0,2,2,0]],[[0,1,3,1],[2,3,3,1],[2,0,2,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[2,0,2,2],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[2,0,2,2],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[2,0,2,2],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[2,0,2,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[3,0,2,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[2,0,2,2],[2,1,1,1]],[[0,1,3,1],[2,3,3,1],[2,0,2,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[2,0,2,2],[1,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,0,2,2],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[2,0,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[2,0,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[3,0,2,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,2,2],[2,1,2,0]],[[0,1,3,1],[2,3,3,1],[2,0,2,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,1],[2,0,2,2],[1,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,0,2,2],[1,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,0,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,4,1],[2,0,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,0,2,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,0,2,2],[2,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,0,2,2],[1,3,0,1]],[[0,1,3,1],[2,3,3,1],[2,0,2,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,1],[2,0,2,2],[1,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,0,2,2],[1,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,0,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,4,1],[2,0,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,0,2,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,0,2,2],[2,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,0,2,2],[1,3,1,0]],[[1,2,2,1],[3,1,3,1],[1,1,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[1,1,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,3,1],[1,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[1,1,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[1,1,0,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,0,3,0],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[2,0,3,0],[0,2,2,1]],[[0,1,2,1],[3,3,3,1],[2,0,3,0],[0,2,2,1]],[[0,1,2,1],[2,4,3,1],[2,0,3,0],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[2,0,3,0],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[3,0,3,0],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,4,0],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,3,0],[0,3,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,3,0],[0,2,3,1]],[[0,1,2,1],[2,3,3,1],[2,0,3,0],[0,2,2,2]],[[0,1,3,1],[2,3,3,1],[2,0,3,0],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[2,0,3,0],[1,1,2,1]],[[0,1,2,1],[3,3,3,1],[2,0,3,0],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[2,0,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[2,0,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[3,0,3,0],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,4,0],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,3,0],[2,1,2,1]],[[0,1,2,1],[2,3,3,1],[2,0,3,0],[1,1,3,1]],[[0,1,2,1],[2,3,3,1],[2,0,3,0],[1,1,2,2]],[[0,1,3,1],[2,3,3,1],[2,0,3,0],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[2,0,3,0],[1,2,1,1]],[[0,1,2,1],[3,3,3,1],[2,0,3,0],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[2,0,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[2,0,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[3,0,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,0,4,0],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,0,3,0],[2,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,0,3,0],[1,3,1,1]],[[0,1,3,1],[2,3,3,1],[2,0,3,1],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[2,0,3,1],[0,2,1,1]],[[0,1,2,1],[3,3,3,1],[2,0,3,1],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[2,0,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[2,0,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[3,0,3,1],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,0,4,1],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[2,0,3,1],[0,2,2,0]],[[0,1,2,2],[2,3,3,1],[2,0,3,1],[0,2,2,0]],[[0,1,2,1],[3,3,3,1],[2,0,3,1],[0,2,2,0]],[[0,1,2,1],[2,4,3,1],[2,0,3,1],[0,2,2,0]],[[0,1,2,1],[2,3,4,1],[2,0,3,1],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[3,0,3,1],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,4,1],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,3,1],[0,3,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,3,1],[0,2,3,0]],[[0,1,3,1],[2,3,3,1],[2,0,3,1],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[2,0,3,1],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[2,0,3,1],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[2,0,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[2,0,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[3,0,3,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[2,0,4,1],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[2,0,3,1],[2,1,1,1]],[[0,1,3,1],[2,3,3,1],[2,0,3,1],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[2,0,3,1],[1,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,0,3,1],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[2,0,3,1],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[2,0,3,1],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[3,0,3,1],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,4,1],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,3,1],[2,1,2,0]],[[0,1,2,1],[2,3,3,1],[2,0,3,1],[1,1,3,0]],[[0,1,3,1],[2,3,3,1],[2,0,3,1],[1,2,0,1]],[[0,1,2,2],[2,3,3,1],[2,0,3,1],[1,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,0,3,1],[1,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,0,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,4,1],[2,0,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,0,3,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,0,4,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,0,3,1],[2,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,0,3,1],[1,3,0,1]],[[0,1,3,1],[2,3,3,1],[2,0,3,1],[1,2,1,0]],[[0,1,2,2],[2,3,3,1],[2,0,3,1],[1,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,0,3,1],[1,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,0,3,1],[1,2,1,0]],[[0,1,2,1],[2,3,4,1],[2,0,3,1],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,0,3,1],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,0,4,1],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,0,3,1],[2,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,0,3,1],[1,3,1,0]],[[0,1,3,1],[2,3,3,1],[2,0,3,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,1],[2,0,3,2],[0,0,2,1]],[[0,1,2,1],[2,3,4,1],[2,0,3,2],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[2,0,3,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[2,0,3,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[2,0,3,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[2,0,3,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[2,0,3,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[2,0,3,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,1],[2,0,3,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,1],[2,0,3,2],[1,0,1,1]],[[0,1,2,1],[2,3,4,1],[2,0,3,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,1],[2,0,3,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[2,0,3,2],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,1],[1,0,3,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,1],[1,0,3,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,1],[1,0,3,2],[0,2,2,0]],[[1,3,2,1],[2,1,3,1],[1,0,3,2],[0,2,2,0]],[[2,2,2,1],[2,1,3,1],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,4,1],[1,0,3,2],[0,2,1,1]],[[1,2,2,2],[2,1,3,1],[1,0,3,2],[0,2,1,1]],[[1,2,3,1],[2,1,3,1],[1,0,3,2],[0,2,1,1]],[[1,3,2,1],[2,1,3,1],[1,0,3,2],[0,2,1,1]],[[2,2,2,1],[2,1,3,1],[1,0,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,4,1],[1,0,3,2],[0,1,2,1]],[[1,2,2,2],[2,1,3,1],[1,0,3,2],[0,1,2,1]],[[1,2,3,1],[2,1,3,1],[1,0,3,2],[0,1,2,1]],[[1,3,2,1],[2,1,3,1],[1,0,3,2],[0,1,2,1]],[[2,2,2,1],[2,1,3,1],[1,0,3,2],[0,1,2,1]],[[1,2,2,1],[2,1,3,1],[1,0,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,3,1],[1,0,3,1],[1,3,2,0]],[[1,2,2,1],[2,1,3,1],[1,0,3,1],[2,2,2,0]],[[1,2,2,1],[2,1,3,1],[1,0,4,1],[1,2,2,0]],[[1,2,2,1],[2,1,4,1],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[3,1,3,1],[1,0,3,1],[1,2,2,0]],[[1,2,2,2],[2,1,3,1],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[2,1,3,1],[1,0,3,1],[1,2,2,0]],[[1,3,2,1],[2,1,3,1],[1,0,3,1],[1,2,2,0]],[[2,2,2,1],[2,1,3,1],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,1,3,1],[1,0,4,1],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[3,1,3,1],[1,0,3,1],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[1,0,3,1],[1,2,1,1]],[[0,1,3,1],[2,3,3,1],[2,1,0,1],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[2,1,0,1],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[2,1,0,1],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[2,1,0,1],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[2,1,0,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[3,1,0,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,0,1],[2,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,0,1],[1,3,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,0,1],[1,2,3,1]],[[0,1,2,1],[2,3,3,1],[2,1,0,1],[1,2,2,2]],[[0,1,3,1],[2,3,3,1],[2,1,0,2],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[2,1,0,2],[0,2,2,1]],[[0,1,2,1],[3,3,3,1],[2,1,0,2],[0,2,2,1]],[[0,1,2,1],[2,4,3,1],[2,1,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[2,1,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[3,1,0,2],[0,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,1,0,2],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[2,1,0,2],[1,1,2,1]],[[0,1,2,1],[3,3,3,1],[2,1,0,2],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[2,1,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[2,1,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[3,1,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,0,2],[2,1,2,1]],[[0,1,3,1],[2,3,3,1],[2,1,0,2],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[2,1,0,2],[1,2,1,1]],[[0,1,2,1],[3,3,3,1],[2,1,0,2],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[2,1,0,2],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[2,1,0,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[3,1,0,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,1,0,2],[2,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,1,0,2],[1,3,1,1]],[[0,1,3,1],[2,3,3,1],[2,1,0,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,1],[2,1,0,2],[1,2,2,0]],[[0,1,2,1],[3,3,3,1],[2,1,0,2],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[2,1,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,4,1],[2,1,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[3,1,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,0,2],[2,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,0,2],[1,3,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,0,2],[1,2,3,0]],[[0,1,3,1],[2,3,3,1],[2,1,1,0],[1,2,2,1]],[[0,1,2,2],[2,3,3,1],[2,1,1,0],[1,2,2,1]],[[0,1,2,1],[3,3,3,1],[2,1,1,0],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[2,1,1,0],[1,2,2,1]],[[0,1,2,1],[2,3,4,1],[2,1,1,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[3,1,1,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,1,0],[2,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,1,0],[1,3,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,1,0],[1,2,3,1]],[[0,1,2,1],[2,3,3,1],[2,1,1,0],[1,2,2,2]],[[0,1,3,1],[2,3,3,1],[2,1,1,1],[1,2,2,0]],[[0,1,2,2],[2,3,3,1],[2,1,1,1],[1,2,2,0]],[[0,1,2,1],[3,3,3,1],[2,1,1,1],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[2,1,1,1],[1,2,2,0]],[[0,1,2,1],[2,3,4,1],[2,1,1,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[3,1,1,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,1,1],[2,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,1,1],[1,3,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,1,1],[1,2,3,0]],[[0,1,3,1],[2,3,3,1],[2,1,1,2],[0,1,2,1]],[[0,1,2,2],[2,3,3,1],[2,1,1,2],[0,1,2,1]],[[0,1,2,1],[3,3,3,1],[2,1,1,2],[0,1,2,1]],[[0,1,2,1],[2,4,3,1],[2,1,1,2],[0,1,2,1]],[[0,1,2,1],[2,3,4,1],[2,1,1,2],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[3,1,1,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,1],[2,1,1,2],[1,0,2,1]],[[0,1,2,2],[2,3,3,1],[2,1,1,2],[1,0,2,1]],[[0,1,2,1],[3,3,3,1],[2,1,1,2],[1,0,2,1]],[[0,1,2,1],[2,4,3,1],[2,1,1,2],[1,0,2,1]],[[0,1,2,1],[2,3,4,1],[2,1,1,2],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[3,1,1,2],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,1,2],[2,0,2,1]],[[0,1,3,1],[2,3,3,1],[2,1,1,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,1],[2,1,1,2],[1,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,1,1,2],[1,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,1,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,4,1],[2,1,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,1,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,1,1,2],[2,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,1,1,2],[1,3,0,1]],[[0,1,3,1],[2,3,3,1],[2,1,1,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,1],[2,1,1,2],[1,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,1,1,2],[1,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,1,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,4,1],[2,1,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,1,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,1,1,2],[2,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,1,1,2],[1,3,1,0]],[[1,2,3,1],[2,1,3,1],[1,0,3,1],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[1,0,3,1],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,3,1],[1,0,3,0],[1,2,2,2]],[[1,2,2,1],[2,1,3,1],[1,0,3,0],[1,2,3,1]],[[1,2,2,1],[2,1,3,1],[1,0,3,0],[1,3,2,1]],[[1,2,2,1],[2,1,3,1],[1,0,3,0],[2,2,2,1]],[[1,2,2,1],[2,1,3,1],[1,0,4,0],[1,2,2,1]],[[1,2,2,1],[2,1,4,1],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[3,1,3,1],[1,0,3,0],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[1,0,3,0],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,1,2,0],[1,2,1,1]],[[0,1,2,2],[2,3,3,1],[2,1,2,0],[1,2,1,1]],[[0,1,2,1],[3,3,3,1],[2,1,2,0],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[2,1,2,0],[1,2,1,1]],[[0,1,2,1],[2,3,4,1],[2,1,2,0],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[3,1,2,0],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,1,2,0],[2,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,1,2,0],[1,3,1,1]],[[0,1,3,1],[2,3,3,1],[2,1,2,1],[1,2,0,1]],[[0,1,2,2],[2,3,3,1],[2,1,2,1],[1,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,1,2,1],[1,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,1,2,1],[1,2,0,1]],[[0,1,2,1],[2,3,4,1],[2,1,2,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,1,2,1],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,1,2,1],[2,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,1,2,1],[1,3,0,1]],[[0,1,3,1],[2,3,3,1],[2,1,2,1],[1,2,1,0]],[[0,1,2,2],[2,3,3,1],[2,1,2,1],[1,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,1,2,1],[1,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,1,2,1],[1,2,1,0]],[[0,1,2,1],[2,3,4,1],[2,1,2,1],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,1,2,1],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,1,2,1],[2,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,1,2,1],[1,3,1,0]],[[1,2,3,1],[2,1,3,1],[1,0,3,0],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[1,0,3,0],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[1,0,3,0],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,1,2,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,1],[2,1,2,2],[0,0,2,1]],[[0,1,2,1],[3,3,3,1],[2,1,2,2],[0,0,2,1]],[[0,1,2,1],[2,4,3,1],[2,1,2,2],[0,0,2,1]],[[0,1,2,1],[2,3,4,1],[2,1,2,2],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[2,1,2,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[2,1,2,2],[0,1,1,1]],[[0,1,2,1],[3,3,3,1],[2,1,2,2],[0,1,1,1]],[[0,1,2,1],[2,4,3,1],[2,1,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[2,1,2,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,1],[3,1,2,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[2,1,2,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[2,1,2,2],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,1,2,2],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[2,1,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[2,1,2,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[3,1,2,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,1],[2,1,2,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,1],[2,1,2,2],[0,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,1,2,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,1,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,4,1],[2,1,2,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,1,2,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,1],[2,1,2,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[2,1,2,2],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,1,2,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,1,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[2,1,2,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,1,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[3,1,3,1],[1,0,2,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,1],[1,0,2,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,1],[1,0,2,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,1],[1,0,2,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,1],[1,0,2,2],[1,2,2,0]],[[0,1,3,1],[2,3,3,1],[2,1,2,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,1],[2,1,2,2],[1,0,1,1]],[[0,1,2,1],[3,3,3,1],[2,1,2,2],[1,0,1,1]],[[0,1,2,1],[2,4,3,1],[2,1,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,4,1],[2,1,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[3,1,2,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[2,1,2,2],[2,0,1,1]],[[0,1,3,1],[2,3,3,1],[2,1,2,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[2,1,2,2],[1,0,2,0]],[[0,1,2,1],[3,3,3,1],[2,1,2,2],[1,0,2,0]],[[0,1,2,1],[2,4,3,1],[2,1,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[2,1,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[3,1,2,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,2,2],[2,0,2,0]],[[0,1,3,1],[2,3,3,1],[2,1,2,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,1],[2,1,2,2],[1,1,0,1]],[[0,1,2,1],[3,3,3,1],[2,1,2,2],[1,1,0,1]],[[0,1,2,1],[2,4,3,1],[2,1,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,4,1],[2,1,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[3,1,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[2,1,2,2],[2,1,0,1]],[[0,1,3,1],[2,3,3,1],[2,1,2,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,1],[2,1,2,2],[1,1,1,0]],[[0,1,2,1],[3,3,3,1],[2,1,2,2],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[2,1,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,4,1],[2,1,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[3,1,2,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[2,1,2,2],[2,1,1,0]],[[1,2,2,1],[2,1,4,1],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[3,1,3,1],[1,0,2,2],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[1,0,2,2],[1,2,1,1]],[[1,2,3,1],[2,1,3,1],[1,0,2,2],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[1,0,2,2],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[1,0,2,2],[0,2,2,1]],[[1,2,2,2],[2,1,3,1],[1,0,2,2],[0,2,2,1]],[[1,2,3,1],[2,1,3,1],[1,0,2,2],[0,2,2,1]],[[1,3,2,1],[2,1,3,1],[1,0,2,2],[0,2,2,1]],[[2,2,2,1],[2,1,3,1],[1,0,2,2],[0,2,2,1]],[[1,2,2,1],[2,1,4,1],[1,0,1,2],[1,2,2,1]],[[1,2,2,1],[3,1,3,1],[1,0,1,2],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[1,0,1,2],[1,2,2,1]],[[1,2,3,1],[2,1,3,1],[1,0,1,2],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[1,0,1,2],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[1,0,1,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,1,3,0],[0,1,2,1]],[[0,1,2,2],[2,3,3,1],[2,1,3,0],[0,1,2,1]],[[0,1,2,1],[3,3,3,1],[2,1,3,0],[0,1,2,1]],[[0,1,2,1],[2,4,3,1],[2,1,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,4,1],[2,1,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[3,1,3,0],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,4,0],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,3,0],[0,1,3,1]],[[0,1,2,1],[2,3,3,1],[2,1,3,0],[0,1,2,2]],[[0,1,3,1],[2,3,3,1],[2,1,3,0],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[2,1,3,0],[0,2,1,1]],[[0,1,2,1],[3,3,3,1],[2,1,3,0],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[2,1,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[2,1,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[3,1,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,1,4,0],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[2,1,3,0],[1,0,2,1]],[[0,1,2,2],[2,3,3,1],[2,1,3,0],[1,0,2,1]],[[0,1,2,1],[3,3,3,1],[2,1,3,0],[1,0,2,1]],[[0,1,2,1],[2,4,3,1],[2,1,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,4,1],[2,1,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[3,1,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,4,0],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,3,0],[2,0,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,3,0],[1,0,3,1]],[[0,1,2,1],[2,3,3,1],[2,1,3,0],[1,0,2,2]],[[0,1,3,1],[2,3,3,1],[2,1,3,0],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[2,1,3,0],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[2,1,3,0],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[2,1,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[2,1,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[3,1,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[2,1,4,0],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[2,1,3,0],[2,1,1,1]],[[0,1,3,1],[2,3,3,1],[2,1,3,0],[1,2,1,0]],[[0,1,2,2],[2,3,3,1],[2,1,3,0],[1,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,1,3,0],[1,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,1,3,0],[1,2,1,0]],[[0,1,2,1],[2,3,4,1],[2,1,3,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,1,3,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,1,3,0],[2,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,1,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,4,1],[0,3,3,1],[1,2,0,0]],[[0,1,3,1],[2,3,3,1],[2,1,3,1],[0,0,2,1]],[[0,1,2,2],[2,3,3,1],[2,1,3,1],[0,0,2,1]],[[0,1,2,1],[3,3,3,1],[2,1,3,1],[0,0,2,1]],[[0,1,2,1],[2,4,3,1],[2,1,3,1],[0,0,2,1]],[[0,1,2,1],[2,3,4,1],[2,1,3,1],[0,0,2,1]],[[0,1,2,1],[2,3,3,1],[2,1,4,1],[0,0,2,1]],[[0,1,3,1],[2,3,3,1],[2,1,3,1],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[2,1,3,1],[0,1,1,1]],[[0,1,2,1],[3,3,3,1],[2,1,3,1],[0,1,1,1]],[[0,1,2,1],[2,4,3,1],[2,1,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[2,1,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,3,1],[3,1,3,1],[0,1,1,1]],[[0,1,2,1],[2,3,3,1],[2,1,4,1],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[2,1,3,1],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[2,1,3,1],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,1,3,1],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[2,1,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[2,1,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[3,1,3,1],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,4,1],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,3,1],[0,1,3,0]],[[0,1,3,1],[2,3,3,1],[2,1,3,1],[0,2,0,1]],[[0,1,2,2],[2,3,3,1],[2,1,3,1],[0,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,1,3,1],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,1,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,4,1],[2,1,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,1,3,1],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,1,4,1],[0,2,0,1]],[[0,1,3,1],[2,3,3,1],[2,1,3,1],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[2,1,3,1],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,1,3,1],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,1,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[2,1,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,1,3,1],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,1,4,1],[0,2,1,0]],[[1,2,2,1],[3,1,3,1],[0,3,3,1],[1,2,0,0]],[[1,2,2,2],[2,1,3,1],[0,3,3,1],[1,2,0,0]],[[1,2,3,1],[2,1,3,1],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,1,3,1],[0,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,1,3,1],[0,3,3,1],[1,2,0,0]],[[0,1,3,1],[2,3,3,1],[2,1,3,1],[1,0,1,1]],[[0,1,2,2],[2,3,3,1],[2,1,3,1],[1,0,1,1]],[[0,1,2,1],[3,3,3,1],[2,1,3,1],[1,0,1,1]],[[0,1,2,1],[2,4,3,1],[2,1,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,4,1],[2,1,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[3,1,3,1],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[2,1,4,1],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[2,1,3,1],[2,0,1,1]],[[0,1,3,1],[2,3,3,1],[2,1,3,1],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[2,1,3,1],[1,0,2,0]],[[0,1,2,1],[3,3,3,1],[2,1,3,1],[1,0,2,0]],[[0,1,2,1],[2,4,3,1],[2,1,3,1],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[2,1,3,1],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[3,1,3,1],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,4,1],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,3,1],[2,0,2,0]],[[0,1,2,1],[2,3,3,1],[2,1,3,1],[1,0,3,0]],[[0,1,3,1],[2,3,3,1],[2,1,3,1],[1,1,0,1]],[[0,1,2,2],[2,3,3,1],[2,1,3,1],[1,1,0,1]],[[0,1,2,1],[3,3,3,1],[2,1,3,1],[1,1,0,1]],[[0,1,2,1],[2,4,3,1],[2,1,3,1],[1,1,0,1]],[[0,1,2,1],[2,3,4,1],[2,1,3,1],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[3,1,3,1],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[2,1,4,1],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[2,1,3,1],[2,1,0,1]],[[0,1,3,1],[2,3,3,1],[2,1,3,1],[1,1,1,0]],[[0,1,2,2],[2,3,3,1],[2,1,3,1],[1,1,1,0]],[[0,1,2,1],[3,3,3,1],[2,1,3,1],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[2,1,3,1],[1,1,1,0]],[[0,1,2,1],[2,3,4,1],[2,1,3,1],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[3,1,3,1],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[2,1,4,1],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[2,1,3,1],[2,1,1,0]],[[1,2,2,1],[2,1,4,1],[0,3,3,0],[1,2,1,0]],[[1,2,2,1],[3,1,3,1],[0,3,3,0],[1,2,1,0]],[[1,2,2,2],[2,1,3,1],[0,3,3,0],[1,2,1,0]],[[1,2,3,1],[2,1,3,1],[0,3,3,0],[1,2,1,0]],[[1,3,2,1],[2,1,3,1],[0,3,3,0],[1,2,1,0]],[[2,2,2,1],[2,1,3,1],[0,3,3,0],[1,2,1,0]],[[0,1,3,1],[2,3,3,1],[2,1,3,2],[0,1,0,1]],[[0,1,2,2],[2,3,3,1],[2,1,3,2],[0,1,0,1]],[[0,1,2,1],[3,3,3,1],[2,1,3,2],[0,1,0,1]],[[0,1,2,1],[2,4,3,1],[2,1,3,2],[0,1,0,1]],[[0,1,2,1],[2,3,4,1],[2,1,3,2],[0,1,0,1]],[[1,2,2,1],[2,1,4,1],[0,3,3,0],[1,1,2,0]],[[1,2,2,1],[3,1,3,1],[0,3,3,0],[1,1,2,0]],[[1,2,2,2],[2,1,3,1],[0,3,3,0],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[0,3,3,0],[1,1,2,0]],[[1,3,2,1],[2,1,3,1],[0,3,3,0],[1,1,2,0]],[[2,2,2,1],[2,1,3,1],[0,3,3,0],[1,1,2,0]],[[0,1,3,1],[2,3,3,1],[2,1,3,2],[1,0,0,1]],[[0,1,2,2],[2,3,3,1],[2,1,3,2],[1,0,0,1]],[[0,1,2,1],[3,3,3,1],[2,1,3,2],[1,0,0,1]],[[0,1,2,1],[2,4,3,1],[2,1,3,2],[1,0,0,1]],[[0,1,2,1],[2,3,4,1],[2,1,3,2],[1,0,0,1]],[[0,1,2,1],[2,3,3,1],[3,1,3,2],[1,0,0,1]],[[1,2,2,1],[2,1,4,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[3,1,3,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,2],[2,1,3,1],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[2,1,3,1],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[2,1,3,1],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[2,1,3,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,4,1],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[3,1,3,1],[0,3,2,1],[1,2,0,1]],[[1,2,2,2],[2,1,3,1],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[2,1,3,1],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[2,1,3,1],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,1,3,1],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,4,1],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[3,1,3,1],[0,3,2,1],[1,1,2,0]],[[1,2,2,2],[2,1,3,1],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,1,3,1],[0,3,2,1],[1,1,2,0]],[[2,2,2,1],[2,1,3,1],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[0,3,2,1],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[0,3,2,1],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[3,1,3,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[0,3,2,0],[1,2,1,1]],[[1,2,3,1],[2,1,3,1],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[0,3,2,0],[1,1,2,1]],[[1,2,2,1],[3,1,3,1],[0,3,2,0],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[2,1,3,1],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[0,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[0,3,2,0],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[3,1,3,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,2],[2,1,3,1],[0,3,1,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,1],[0,3,1,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,1],[0,3,1,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,4,1],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[3,1,3,1],[0,3,1,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,1],[0,3,1,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,1],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,1],[0,3,1,2],[1,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,2,0,0],[1,2,2,1]],[[0,1,2,1],[2,4,3,1],[2,2,0,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[3,2,0,0],[1,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,2,0,0],[2,2,2,1]],[[0,1,2,1],[2,3,3,1],[2,2,0,0],[1,3,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,0,1],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[2,2,0,1],[0,2,2,1]],[[0,1,2,1],[3,3,3,1],[2,2,0,1],[0,2,2,1]],[[0,1,2,1],[2,4,3,1],[2,2,0,1],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[2,2,0,1],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[3,2,0,1],[0,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,0,1],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[2,2,0,1],[1,1,2,1]],[[0,1,2,1],[3,3,3,1],[2,2,0,1],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[2,2,0,1],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[2,2,0,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[3,2,0,1],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[2,2,0,1],[2,1,2,1]],[[0,1,2,1],[3,3,3,1],[2,2,0,1],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[2,2,0,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[3,2,0,1],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,2,0,1],[2,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,2,0,1],[1,3,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,0,2],[0,1,2,1]],[[0,1,2,2],[2,3,3,1],[2,2,0,2],[0,1,2,1]],[[0,1,2,1],[3,3,3,1],[2,2,0,2],[0,1,2,1]],[[0,1,2,1],[2,4,3,1],[2,2,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,4,1],[2,2,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[3,2,0,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,0,2],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[2,2,0,2],[0,2,1,1]],[[0,1,2,1],[3,3,3,1],[2,2,0,2],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[2,2,0,2],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[2,2,0,2],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[3,2,0,2],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[2,2,0,2],[0,2,2,0]],[[0,1,2,2],[2,3,3,1],[2,2,0,2],[0,2,2,0]],[[0,1,2,1],[3,3,3,1],[2,2,0,2],[0,2,2,0]],[[0,1,2,1],[2,4,3,1],[2,2,0,2],[0,2,2,0]],[[0,1,2,1],[2,3,4,1],[2,2,0,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[3,2,0,2],[0,2,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,0,2],[1,0,2,1]],[[0,1,2,2],[2,3,3,1],[2,2,0,2],[1,0,2,1]],[[0,1,2,1],[3,3,3,1],[2,2,0,2],[1,0,2,1]],[[0,1,2,1],[2,4,3,1],[2,2,0,2],[1,0,2,1]],[[0,1,2,1],[2,3,4,1],[2,2,0,2],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[3,2,0,2],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[2,2,0,2],[2,0,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,0,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[2,2,0,2],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[2,2,0,2],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[2,2,0,2],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[2,2,0,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[3,2,0,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[2,2,0,2],[2,1,1,1]],[[0,1,3,1],[2,3,3,1],[2,2,0,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[2,2,0,2],[1,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,2,0,2],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[2,2,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[2,2,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[3,2,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[2,2,0,2],[2,1,2,0]],[[2,2,2,1],[2,1,3,1],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[2,1,4,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,1,3,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,1],[0,3,1,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[0,3,1,2],[1,1,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,1,0],[0,2,2,1]],[[0,1,2,2],[2,3,3,1],[2,2,1,0],[0,2,2,1]],[[0,1,2,1],[3,3,3,1],[2,2,1,0],[0,2,2,1]],[[0,1,2,1],[2,4,3,1],[2,2,1,0],[0,2,2,1]],[[0,1,2,1],[2,3,4,1],[2,2,1,0],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[3,2,1,0],[0,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,1,0],[1,1,2,1]],[[0,1,2,2],[2,3,3,1],[2,2,1,0],[1,1,2,1]],[[0,1,2,1],[3,3,3,1],[2,2,1,0],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[2,2,1,0],[1,1,2,1]],[[0,1,2,1],[2,3,4,1],[2,2,1,0],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[3,2,1,0],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[2,2,1,0],[2,1,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,1,1],[0,2,2,0]],[[0,1,2,2],[2,3,3,1],[2,2,1,1],[0,2,2,0]],[[0,1,2,1],[3,3,3,1],[2,2,1,1],[0,2,2,0]],[[0,1,2,1],[2,4,3,1],[2,2,1,1],[0,2,2,0]],[[0,1,2,1],[2,3,4,1],[2,2,1,1],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[3,2,1,1],[0,2,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,1,1],[1,1,2,0]],[[0,1,2,2],[2,3,3,1],[2,2,1,1],[1,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,2,1,1],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[2,2,1,1],[1,1,2,0]],[[0,1,2,1],[2,3,4,1],[2,2,1,1],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[3,2,1,1],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[2,2,1,1],[2,1,2,0]],[[1,3,2,1],[2,1,3,1],[0,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[0,3,1,2],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[0,3,1,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[0,3,1,2],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[0,3,1,2],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[0,3,1,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,1],[2,2,1,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[2,2,1,2],[0,1,1,1]],[[0,1,2,1],[3,3,3,1],[2,2,1,2],[0,1,1,1]],[[0,1,2,1],[2,4,3,1],[2,2,1,2],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[2,2,1,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,1],[3,2,1,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[2,2,1,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[2,2,1,2],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,2,1,2],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[2,2,1,2],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[2,2,1,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[3,2,1,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,1,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,1],[2,2,1,2],[0,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,2,1,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,2,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,4,1],[2,2,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,2,1,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,1],[2,2,1,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[2,2,1,2],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,2,1,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,2,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[2,2,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[3,1,3,1],[0,3,1,1],[1,2,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,1,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,1],[2,2,1,2],[1,0,1,1]],[[0,1,2,1],[3,3,3,1],[2,2,1,2],[1,0,1,1]],[[0,1,2,1],[2,4,3,1],[2,2,1,2],[1,0,1,1]],[[0,1,2,1],[2,3,4,1],[2,2,1,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[3,2,1,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[2,2,1,2],[2,0,1,1]],[[0,1,3,1],[2,3,3,1],[2,2,1,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[2,2,1,2],[1,0,2,0]],[[0,1,2,1],[3,3,3,1],[2,2,1,2],[1,0,2,0]],[[0,1,2,1],[2,4,3,1],[2,2,1,2],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[2,2,1,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[3,2,1,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[2,2,1,2],[2,0,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,1,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,1],[2,2,1,2],[1,1,0,1]],[[0,1,2,1],[3,3,3,1],[2,2,1,2],[1,1,0,1]],[[0,1,2,1],[2,4,3,1],[2,2,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,4,1],[2,2,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[3,2,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[2,2,1,2],[2,1,0,1]],[[0,1,3,1],[2,3,3,1],[2,2,1,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,1],[2,2,1,2],[1,1,1,0]],[[0,1,2,1],[3,3,3,1],[2,2,1,2],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[2,2,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,4,1],[2,2,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[3,2,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[2,2,1,2],[2,1,1,0]],[[1,2,2,2],[2,1,3,1],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[2,1,3,1],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,1,3,1],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[2,1,3,1],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,4,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[3,1,3,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[0,3,1,0],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,1,2],[1,2,0,0]],[[0,1,2,2],[2,3,3,1],[2,2,1,2],[1,2,0,0]],[[0,1,2,1],[3,3,3,1],[2,2,1,2],[1,2,0,0]],[[0,1,2,1],[2,4,3,1],[2,2,1,2],[1,2,0,0]],[[0,1,2,1],[2,3,4,1],[2,2,1,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[3,2,1,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[2,2,1,2],[2,2,0,0]],[[1,2,3,1],[2,1,3,1],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,4,1],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[3,1,3,1],[0,3,0,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,1],[0,3,0,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,1],[0,3,0,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,1],[0,3,0,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,1],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,4,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[3,1,3,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[0,3,0,2],[1,2,1,1]],[[1,2,3,1],[2,1,3,1],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[0,3,0,2],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,1,3,1],[0,3,0,2],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[0,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,1,3,1],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[0,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[0,3,0,1],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,2,0],[0,1,2,1]],[[0,1,2,2],[2,3,3,1],[2,2,2,0],[0,1,2,1]],[[0,1,2,1],[3,3,3,1],[2,2,2,0],[0,1,2,1]],[[0,1,2,1],[2,4,3,1],[2,2,2,0],[0,1,2,1]],[[0,1,2,1],[2,3,4,1],[2,2,2,0],[0,1,2,1]],[[0,1,2,1],[2,3,3,1],[3,2,2,0],[0,1,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,2,0],[0,2,1,1]],[[0,1,2,2],[2,3,3,1],[2,2,2,0],[0,2,1,1]],[[0,1,2,1],[3,3,3,1],[2,2,2,0],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[2,2,2,0],[0,2,1,1]],[[0,1,2,1],[2,3,4,1],[2,2,2,0],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[3,2,2,0],[0,2,1,1]],[[0,1,3,1],[2,3,3,1],[2,2,2,0],[1,0,2,1]],[[0,1,2,2],[2,3,3,1],[2,2,2,0],[1,0,2,1]],[[0,1,2,1],[3,3,3,1],[2,2,2,0],[1,0,2,1]],[[0,1,2,1],[2,4,3,1],[2,2,2,0],[1,0,2,1]],[[0,1,2,1],[2,3,4,1],[2,2,2,0],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[3,2,2,0],[1,0,2,1]],[[0,1,2,1],[2,3,3,1],[2,2,2,0],[2,0,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,2,0],[1,1,1,1]],[[0,1,2,2],[2,3,3,1],[2,2,2,0],[1,1,1,1]],[[0,1,2,1],[3,3,3,1],[2,2,2,0],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[2,2,2,0],[1,1,1,1]],[[0,1,2,1],[2,3,4,1],[2,2,2,0],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[3,2,2,0],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[2,2,2,0],[2,1,1,1]],[[0,1,3,1],[2,3,3,1],[2,2,2,0],[1,2,0,1]],[[0,1,2,2],[2,3,3,1],[2,2,2,0],[1,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,2,2,0],[1,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,2,2,0],[1,2,0,1]],[[0,1,2,1],[2,3,4,1],[2,2,2,0],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,2,2,0],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,2,2,0],[2,2,0,1]],[[1,2,2,1],[3,1,3,1],[0,3,0,1],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[0,3,0,1],[1,2,2,1]],[[1,2,3,1],[2,1,3,1],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[0,3,0,1],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[0,3,0,1],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,2,1],[0,1,1,1]],[[0,1,2,2],[2,3,3,1],[2,2,2,1],[0,1,1,1]],[[0,1,2,1],[3,3,3,1],[2,2,2,1],[0,1,1,1]],[[0,1,2,1],[2,4,3,1],[2,2,2,1],[0,1,1,1]],[[0,1,2,1],[2,3,4,1],[2,2,2,1],[0,1,1,1]],[[0,1,2,1],[2,3,3,1],[3,2,2,1],[0,1,1,1]],[[0,1,3,1],[2,3,3,1],[2,2,2,1],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[2,2,2,1],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,2,2,1],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[2,2,2,1],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[2,2,2,1],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[3,2,2,1],[0,1,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,2,1],[0,2,0,1]],[[0,1,2,2],[2,3,3,1],[2,2,2,1],[0,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,2,2,1],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,2,2,1],[0,2,0,1]],[[0,1,2,1],[2,3,4,1],[2,2,2,1],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,2,2,1],[0,2,0,1]],[[0,1,3,1],[2,3,3,1],[2,2,2,1],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[2,2,2,1],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,2,2,1],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,2,2,1],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[2,2,2,1],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,2,2,1],[0,2,1,0]],[[0,1,3,1],[2,3,3,1],[2,2,2,1],[1,0,1,1]],[[0,1,2,2],[2,3,3,1],[2,2,2,1],[1,0,1,1]],[[0,1,2,1],[3,3,3,1],[2,2,2,1],[1,0,1,1]],[[0,1,2,1],[2,4,3,1],[2,2,2,1],[1,0,1,1]],[[0,1,2,1],[2,3,4,1],[2,2,2,1],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[3,2,2,1],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[2,2,2,1],[2,0,1,1]],[[0,1,3,1],[2,3,3,1],[2,2,2,1],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[2,2,2,1],[1,0,2,0]],[[0,1,2,1],[3,3,3,1],[2,2,2,1],[1,0,2,0]],[[0,1,2,1],[2,4,3,1],[2,2,2,1],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[2,2,2,1],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[3,2,2,1],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[2,2,2,1],[2,0,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,2,1],[1,1,0,1]],[[0,1,2,2],[2,3,3,1],[2,2,2,1],[1,1,0,1]],[[0,1,2,1],[3,3,3,1],[2,2,2,1],[1,1,0,1]],[[0,1,2,1],[2,4,3,1],[2,2,2,1],[1,1,0,1]],[[0,1,2,1],[2,3,4,1],[2,2,2,1],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[3,2,2,1],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[2,2,2,1],[2,1,0,1]],[[0,1,3,1],[2,3,3,1],[2,2,2,1],[1,1,1,0]],[[0,1,2,2],[2,3,3,1],[2,2,2,1],[1,1,1,0]],[[0,1,2,1],[3,3,3,1],[2,2,2,1],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[2,2,2,1],[1,1,1,0]],[[0,1,2,1],[2,3,4,1],[2,2,2,1],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[3,2,2,1],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[2,2,2,1],[2,1,1,0]],[[0,1,3,1],[2,3,3,1],[2,2,2,1],[1,2,0,0]],[[0,1,2,2],[2,3,3,1],[2,2,2,1],[1,2,0,0]],[[0,1,2,1],[3,3,3,1],[2,2,2,1],[1,2,0,0]],[[0,1,2,1],[2,4,3,1],[2,2,2,1],[1,2,0,0]],[[0,1,2,1],[2,3,4,1],[2,2,2,1],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[3,2,2,1],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[2,1,4,1],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,1],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,1],[0,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,1],[0,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,1],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,3,1],[0,2,4,1],[1,2,1,0]],[[1,2,2,1],[2,1,4,1],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[3,1,3,1],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[2,1,3,1],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[2,1,3,1],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[2,1,3,1],[0,2,3,1],[1,2,1,0]],[[2,2,2,1],[2,1,3,1],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,3,1],[0,2,4,1],[1,2,0,1]],[[1,2,2,1],[2,1,4,1],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[3,1,3,1],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[2,1,3,1],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[2,1,3,1],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[2,1,3,1],[0,2,3,1],[1,2,0,1]],[[2,2,2,1],[2,1,3,1],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,3,1],[0,2,3,1],[1,1,3,0]],[[1,2,2,1],[2,1,3,1],[0,2,4,1],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[3,1,3,1],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[2,1,3,1],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[2,1,3,1],[0,2,3,1],[1,1,2,0]],[[2,2,2,1],[2,1,3,1],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[2,1,3,1],[0,2,4,1],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[0,2,3,1],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,3,1],[0,2,4,1],[1,0,2,1]],[[1,2,2,1],[2,1,4,1],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[2,1,3,1],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[2,1,3,1],[0,2,3,1],[1,0,2,1]],[[1,3,2,1],[2,1,3,1],[0,2,3,1],[1,0,2,1]],[[2,2,2,1],[2,1,3,1],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[2,1,3,1],[0,2,4,0],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[3,1,3,1],[0,2,3,0],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[2,1,3,1],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[0,2,3,0],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,3,1],[0,2,3,0],[1,1,2,2]],[[1,2,2,1],[2,1,3,1],[0,2,3,0],[1,1,3,1]],[[1,2,2,1],[2,1,3,1],[0,2,4,0],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[3,1,3,1],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[2,1,3,1],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[0,2,3,0],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[3,1,3,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[2,1,3,1],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,1],[0,2,2,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,1],[0,2,2,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,1],[0,2,2,2],[1,2,1,0]],[[0,1,3,1],[2,3,3,1],[2,2,3,0],[0,1,2,0]],[[0,1,2,2],[2,3,3,1],[2,2,3,0],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,2,3,0],[0,1,2,0]],[[0,1,2,1],[2,4,3,1],[2,2,3,0],[0,1,2,0]],[[0,1,2,1],[2,3,4,1],[2,2,3,0],[0,1,2,0]],[[0,1,2,1],[2,3,3,1],[3,2,3,0],[0,1,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,3,0],[0,2,1,0]],[[0,1,2,2],[2,3,3,1],[2,2,3,0],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,2,3,0],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,2,3,0],[0,2,1,0]],[[0,1,2,1],[2,3,4,1],[2,2,3,0],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,4,1],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[3,1,3,1],[0,2,2,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,1],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,1],[0,2,2,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,1],[0,2,2,2],[1,2,0,1]],[[2,2,2,1],[2,1,3,1],[0,2,2,2],[1,2,0,1]],[[0,1,3,1],[2,3,3,1],[2,2,3,0],[1,0,2,0]],[[0,1,2,2],[2,3,3,1],[2,2,3,0],[1,0,2,0]],[[0,1,2,1],[3,3,3,1],[2,2,3,0],[1,0,2,0]],[[0,1,2,1],[2,4,3,1],[2,2,3,0],[1,0,2,0]],[[0,1,2,1],[2,3,4,1],[2,2,3,0],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[3,2,3,0],[1,0,2,0]],[[0,1,2,1],[2,3,3,1],[2,2,3,0],[2,0,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,3,0],[1,1,1,0]],[[0,1,2,2],[2,3,3,1],[2,2,3,0],[1,1,1,0]],[[0,1,2,1],[3,3,3,1],[2,2,3,0],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[2,2,3,0],[1,1,1,0]],[[0,1,2,1],[2,3,4,1],[2,2,3,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[3,2,3,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[2,2,3,0],[2,1,1,0]],[[1,2,2,1],[2,1,4,1],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[3,1,3,1],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,1],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[0,2,2,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,1],[0,2,2,2],[1,1,2,0]],[[0,1,3,1],[2,3,3,1],[2,2,3,0],[1,2,0,0]],[[0,1,2,2],[2,3,3,1],[2,2,3,0],[1,2,0,0]],[[0,1,2,1],[3,3,3,1],[2,2,3,0],[1,2,0,0]],[[0,1,2,1],[2,4,3,1],[2,2,3,0],[1,2,0,0]],[[0,1,2,1],[2,3,4,1],[2,2,3,0],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[3,2,3,0],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[2,2,3,0],[2,2,0,0]],[[2,2,2,1],[2,1,3,1],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[3,1,3,1],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[0,2,2,2],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[0,2,2,2],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[0,2,2,2],[1,0,2,1]],[[1,2,2,2],[2,1,3,1],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[2,1,3,1],[0,2,2,2],[1,0,2,1]],[[1,3,2,1],[2,1,3,1],[0,2,2,2],[1,0,2,1]],[[2,2,2,1],[2,1,3,1],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[2,1,4,1],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[3,1,3,1],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[2,1,3,1],[0,2,1,2],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[0,2,1,2],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[0,2,0,2],[1,2,2,1]],[[1,2,2,1],[3,1,3,1],[0,2,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[0,2,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,3,1],[0,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[0,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[0,2,0,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,3,1],[0,2,0,0]],[[0,1,2,2],[2,3,3,1],[2,2,3,1],[0,2,0,0]],[[0,1,2,1],[3,3,3,1],[2,2,3,1],[0,2,0,0]],[[0,1,2,1],[2,4,3,1],[2,2,3,1],[0,2,0,0]],[[0,1,2,1],[2,3,4,1],[2,2,3,1],[0,2,0,0]],[[0,1,2,1],[2,3,3,1],[3,2,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,4,1],[0,1,3,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,1],[0,1,3,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,1],[0,1,3,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,1],[0,1,3,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,1],[0,1,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,1],[0,1,3,2],[1,1,1,1]],[[1,2,2,2],[2,1,3,1],[0,1,3,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,1],[0,1,3,2],[1,1,1,1]],[[1,3,2,1],[2,1,3,1],[0,1,3,2],[1,1,1,1]],[[2,2,2,1],[2,1,3,1],[0,1,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,4,1],[0,1,3,2],[1,0,2,1]],[[1,2,2,2],[2,1,3,1],[0,1,3,2],[1,0,2,1]],[[1,2,3,1],[2,1,3,1],[0,1,3,2],[1,0,2,1]],[[1,3,2,1],[2,1,3,1],[0,1,3,2],[1,0,2,1]],[[2,2,2,1],[2,1,3,1],[0,1,3,2],[1,0,2,1]],[[0,1,3,1],[2,3,3,1],[2,2,3,1],[1,1,0,0]],[[0,1,2,2],[2,3,3,1],[2,2,3,1],[1,1,0,0]],[[0,1,2,1],[3,3,3,1],[2,2,3,1],[1,1,0,0]],[[0,1,2,1],[2,4,3,1],[2,2,3,1],[1,1,0,0]],[[0,1,2,1],[2,3,4,1],[2,2,3,1],[1,1,0,0]],[[0,1,2,1],[2,3,3,1],[3,2,3,1],[1,1,0,0]],[[0,1,2,1],[2,3,3,1],[2,2,3,1],[2,1,0,0]],[[1,2,2,1],[2,1,3,1],[0,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,3,1],[0,1,3,1],[1,3,2,0]],[[1,2,2,1],[2,1,3,1],[0,1,3,1],[2,2,2,0]],[[1,2,2,1],[2,1,3,1],[0,1,4,1],[1,2,2,0]],[[1,2,2,1],[2,1,4,1],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[3,1,3,1],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[2,1,3,1],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[2,1,3,1],[0,1,3,1],[1,2,2,0]],[[1,3,2,1],[2,1,3,1],[0,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,1,3,1],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,1,3,1],[0,1,4,1],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[3,1,3,1],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[2,1,3,1],[0,1,3,1],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[0,1,3,1],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,3,1],[0,1,3,0],[1,2,2,2]],[[1,2,2,1],[2,1,3,1],[0,1,3,0],[1,2,3,1]],[[1,2,2,1],[2,1,3,1],[0,1,3,0],[1,3,2,1]],[[1,2,2,1],[2,1,3,1],[0,1,3,0],[2,2,2,1]],[[1,2,2,1],[2,1,3,1],[0,1,4,0],[1,2,2,1]],[[1,2,2,1],[2,1,4,1],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,1,3,1],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,1,3,1],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[0,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[2,1,4,1],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[3,1,3,1],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,1],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,1],[0,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,1],[0,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,1],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,4,1],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[3,1,3,1],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[2,1,3,1],[0,1,2,2],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[0,1,2,2],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[3,1,3,1],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,1,3,1],[0,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[0,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[2,1,4,1],[0,0,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,1],[0,0,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,1],[0,0,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,1],[0,0,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,1],[0,0,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,4,1],[0,0,3,2],[1,2,1,1]],[[1,2,2,2],[2,1,3,1],[0,0,3,2],[1,2,1,1]],[[1,2,3,1],[2,1,3,1],[0,0,3,2],[1,2,1,1]],[[1,3,2,1],[2,1,3,1],[0,0,3,2],[1,2,1,1]],[[2,2,2,1],[2,1,3,1],[0,0,3,2],[1,2,1,1]],[[1,2,2,1],[2,1,4,1],[0,0,3,2],[1,1,2,1]],[[1,2,2,2],[2,1,3,1],[0,0,3,2],[1,1,2,1]],[[1,2,3,1],[2,1,3,1],[0,0,3,2],[1,1,2,1]],[[1,3,2,1],[2,1,3,1],[0,0,3,2],[1,1,2,1]],[[2,2,2,1],[2,1,3,1],[0,0,3,2],[1,1,2,1]],[[1,2,2,1],[2,1,4,1],[0,0,2,2],[1,2,2,1]],[[1,2,2,2],[2,1,3,1],[0,0,2,2],[1,2,2,1]],[[1,2,3,1],[2,1,3,1],[0,0,2,2],[1,2,2,1]],[[1,3,2,1],[2,1,3,1],[0,0,2,2],[1,2,2,1]],[[2,2,2,1],[2,1,3,1],[0,0,2,2],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[3,3,3,2],[1,0,0,0]],[[1,2,2,1],[2,1,4,0],[2,3,3,2],[1,0,0,0]],[[1,2,2,1],[3,1,3,0],[2,3,3,2],[1,0,0,0]],[[1,2,2,2],[2,1,3,0],[2,3,3,2],[1,0,0,0]],[[1,2,3,1],[2,1,3,0],[2,3,3,2],[1,0,0,0]],[[1,3,2,1],[2,1,3,0],[2,3,3,2],[1,0,0,0]],[[2,2,2,1],[2,1,3,0],[2,3,3,2],[1,0,0,0]],[[1,2,2,1],[2,1,3,0],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[2,1,3,0],[2,4,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,3,0],[3,3,3,1],[1,1,0,0]],[[1,2,2,1],[3,1,3,0],[2,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,1,3,0],[2,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,1,3,0],[2,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,1,3,0],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,3,0],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,3,0],[3,3,3,1],[0,2,0,0]],[[1,2,2,1],[3,1,3,0],[2,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,1,3,0],[2,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,1,3,0],[2,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,1,3,0],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,3,0],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[2,1,3,0],[2,4,3,0],[1,2,0,0]],[[1,2,2,1],[2,1,3,0],[3,3,3,0],[1,2,0,0]],[[1,2,2,1],[3,1,3,0],[2,3,3,0],[1,2,0,0]],[[1,2,3,1],[2,1,3,0],[2,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,1,3,0],[2,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,1,3,0],[2,3,3,0],[1,2,0,0]],[[1,2,2,1],[2,1,3,0],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[2,1,3,0],[2,4,3,0],[1,1,1,0]],[[1,2,2,1],[2,1,3,0],[3,3,3,0],[1,1,1,0]],[[1,2,2,1],[3,1,3,0],[2,3,3,0],[1,1,1,0]],[[1,2,3,1],[2,1,3,0],[2,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,1,3,0],[2,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,1,3,0],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,1,3,0],[2,3,3,0],[2,0,2,0]],[[1,2,2,1],[2,1,3,0],[2,4,3,0],[1,0,2,0]],[[1,2,2,1],[2,1,3,0],[3,3,3,0],[1,0,2,0]],[[1,2,2,1],[3,1,3,0],[2,3,3,0],[1,0,2,0]],[[1,2,3,1],[2,1,3,0],[2,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,1,3,0],[2,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,1,3,0],[2,3,3,0],[1,0,2,0]],[[1,2,2,1],[2,1,3,0],[2,3,3,0],[0,3,1,0]],[[1,2,2,1],[2,1,3,0],[2,4,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[3,3,3,0],[0,2,1,0]],[[1,2,2,1],[3,1,3,0],[2,3,3,0],[0,2,1,0]],[[1,2,3,1],[2,1,3,0],[2,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,1,3,0],[2,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,1,3,0],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[2,4,3,0],[0,1,2,0]],[[1,2,2,1],[2,1,3,0],[3,3,3,0],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,3,0,0],[0,2,2,1]],[[0,1,2,1],[2,4,3,1],[2,3,0,0],[0,2,2,1]],[[0,1,2,1],[2,3,3,1],[3,3,0,0],[0,2,2,1]],[[0,1,2,1],[3,3,3,1],[2,3,0,0],[1,1,2,1]],[[0,1,2,1],[2,4,3,1],[2,3,0,0],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[3,3,0,0],[1,1,2,1]],[[0,1,2,1],[2,3,3,1],[2,3,0,0],[2,1,2,1]],[[0,1,2,1],[3,3,3,1],[2,3,0,0],[1,2,1,1]],[[0,1,2,1],[2,4,3,1],[2,3,0,0],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[3,3,0,0],[1,2,1,1]],[[0,1,2,1],[2,3,3,1],[2,3,0,0],[2,2,1,1]],[[0,1,2,1],[3,3,3,1],[2,3,0,0],[1,2,2,0]],[[0,1,2,1],[2,4,3,1],[2,3,0,0],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[3,3,0,0],[1,2,2,0]],[[0,1,2,1],[2,3,3,1],[2,3,0,0],[2,2,2,0]],[[0,1,2,1],[3,3,3,1],[2,3,0,1],[0,2,2,0]],[[0,1,2,1],[2,4,3,1],[2,3,0,1],[0,2,2,0]],[[0,1,2,1],[2,3,3,1],[3,3,0,1],[0,2,2,0]],[[0,1,2,1],[3,3,3,1],[2,3,0,1],[1,1,2,0]],[[0,1,2,1],[2,4,3,1],[2,3,0,1],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[3,3,0,1],[1,1,2,0]],[[0,1,2,1],[2,3,3,1],[2,3,0,1],[2,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,3,0,1],[1,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,3,0,1],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,3,0,1],[1,2,1,0]],[[0,1,2,1],[2,3,3,1],[2,3,0,1],[2,2,1,0]],[[1,2,2,1],[3,1,3,0],[2,3,3,0],[0,1,2,0]],[[1,2,3,1],[2,1,3,0],[2,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,1,3,0],[2,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,1,3,0],[2,3,3,0],[0,1,2,0]],[[0,1,2,1],[3,3,3,1],[2,3,0,2],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,3,0,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,3,0,2],[0,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,3,0,2],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,3,0,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,3,0,2],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,3,0,2],[1,1,0,1]],[[0,1,2,1],[2,4,3,1],[2,3,0,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[3,3,0,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[2,3,0,2],[2,1,0,1]],[[0,1,2,1],[3,3,3,1],[2,3,0,2],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[2,3,0,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[3,3,0,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[2,3,0,2],[2,1,1,0]],[[0,1,2,1],[3,3,3,1],[2,3,0,2],[1,2,0,0]],[[0,1,2,1],[2,4,3,1],[2,3,0,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[3,3,0,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[2,3,0,2],[2,2,0,0]],[[1,2,2,1],[2,1,3,0],[3,3,2,2],[1,0,1,0]],[[1,2,2,1],[2,1,4,0],[2,3,2,2],[1,0,1,0]],[[1,2,2,1],[3,1,3,0],[2,3,2,2],[1,0,1,0]],[[1,2,2,2],[2,1,3,0],[2,3,2,2],[1,0,1,0]],[[1,2,3,1],[2,1,3,0],[2,3,2,2],[1,0,1,0]],[[1,3,2,1],[2,1,3,0],[2,3,2,2],[1,0,1,0]],[[2,2,2,1],[2,1,3,0],[2,3,2,2],[1,0,1,0]],[[1,2,2,1],[2,1,3,0],[3,3,2,2],[1,0,0,1]],[[1,2,2,1],[2,1,4,0],[2,3,2,2],[1,0,0,1]],[[1,2,2,1],[3,1,3,0],[2,3,2,2],[1,0,0,1]],[[1,2,2,2],[2,1,3,0],[2,3,2,2],[1,0,0,1]],[[1,2,3,1],[2,1,3,0],[2,3,2,2],[1,0,0,1]],[[0,1,2,1],[3,3,3,1],[2,3,1,0],[0,2,1,1]],[[0,1,2,1],[2,4,3,1],[2,3,1,0],[0,2,1,1]],[[0,1,2,1],[2,3,3,1],[3,3,1,0],[0,2,1,1]],[[0,1,2,1],[3,3,3,1],[2,3,1,0],[1,1,1,1]],[[0,1,2,1],[2,4,3,1],[2,3,1,0],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[3,3,1,0],[1,1,1,1]],[[0,1,2,1],[2,3,3,1],[2,3,1,0],[2,1,1,1]],[[0,1,2,1],[3,3,3,1],[2,3,1,0],[1,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,3,1,0],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,3,1,0],[1,2,0,1]],[[0,1,2,1],[2,3,3,1],[2,3,1,0],[2,2,0,1]],[[1,3,2,1],[2,1,3,0],[2,3,2,2],[1,0,0,1]],[[2,2,2,1],[2,1,3,0],[2,3,2,2],[1,0,0,1]],[[0,1,2,1],[3,3,3,1],[2,3,1,1],[0,2,0,1]],[[0,1,2,1],[2,4,3,1],[2,3,1,1],[0,2,0,1]],[[0,1,2,1],[2,3,3,1],[3,3,1,1],[0,2,0,1]],[[0,1,2,1],[3,3,3,1],[2,3,1,1],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,3,1,1],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,3,1,1],[0,2,1,0]],[[0,1,2,1],[3,3,3,1],[2,3,1,1],[1,1,0,1]],[[0,1,2,1],[2,4,3,1],[2,3,1,1],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[3,3,1,1],[1,1,0,1]],[[0,1,2,1],[2,3,3,1],[2,3,1,1],[2,1,0,1]],[[0,1,2,1],[3,3,3,1],[2,3,1,1],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[2,3,1,1],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[3,3,1,1],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[2,3,1,1],[2,1,1,0]],[[0,1,2,1],[3,3,3,1],[2,3,1,1],[1,2,0,0]],[[0,1,2,1],[2,4,3,1],[2,3,1,1],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[3,3,1,1],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[2,3,1,1],[2,2,0,0]],[[1,2,2,1],[2,1,3,0],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[2,1,3,0],[2,4,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,3,0],[3,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,1,3,0],[2,3,2,1],[1,2,0,0]],[[1,2,3,1],[2,1,3,0],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,1,3,0],[2,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,1,3,0],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,3,0],[2,3,2,1],[2,1,1,0]],[[1,2,2,1],[2,1,3,0],[2,4,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,3,0],[3,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,1,3,0],[2,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,1,3,0],[2,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,1,3,0],[2,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,1,3,0],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,3,0],[2,3,2,1],[2,1,0,1]],[[1,2,2,1],[2,1,3,0],[2,4,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,3,0],[3,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,1,3,0],[2,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,1,3,0],[2,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,1,3,0],[2,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,1,3,0],[2,3,2,1],[1,1,0,1]],[[0,1,3,1],[2,3,3,1],[2,3,1,2],[1,0,0,1]],[[0,1,2,2],[2,3,3,1],[2,3,1,2],[1,0,0,1]],[[0,1,2,1],[3,3,3,1],[2,3,1,2],[1,0,0,1]],[[0,1,2,1],[2,4,3,1],[2,3,1,2],[1,0,0,1]],[[0,1,2,1],[2,3,4,1],[2,3,1,2],[1,0,0,1]],[[0,1,2,1],[2,3,3,1],[3,3,1,2],[1,0,0,1]],[[0,1,3,1],[2,3,3,1],[2,3,1,2],[1,0,1,0]],[[0,1,2,2],[2,3,3,1],[2,3,1,2],[1,0,1,0]],[[0,1,2,1],[3,3,3,1],[2,3,1,2],[1,0,1,0]],[[0,1,2,1],[2,4,3,1],[2,3,1,2],[1,0,1,0]],[[0,1,2,1],[2,3,4,1],[2,3,1,2],[1,0,1,0]],[[0,1,2,1],[2,3,3,1],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,1,3,0],[2,3,2,1],[2,0,2,0]],[[1,2,2,1],[2,1,3,0],[2,4,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,3,0],[3,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,1,3,0],[2,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,1,3,0],[2,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,1,3,0],[2,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,1,3,0],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,3,0],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[2,1,3,0],[2,4,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[3,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,1,3,0],[2,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,1,3,0],[2,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,1,3,0],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,1,3,0],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[2,4,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,3,0],[3,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,1,3,0],[2,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,1,3,0],[2,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,1,3,0],[2,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,1,3,0],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,3,0],[2,4,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,3,0],[3,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,1,3,0],[2,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,1,3,0],[2,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,1,3,0],[2,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,1,3,0],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,3,0],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[2,1,3,0],[2,4,2,0],[1,2,0,1]],[[1,2,2,1],[2,1,3,0],[3,3,2,0],[1,2,0,1]],[[1,2,2,1],[3,1,3,0],[2,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,1,3,0],[2,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,1,3,0],[2,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,1,3,0],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[2,1,3,0],[2,3,2,0],[2,1,1,1]],[[0,1,2,1],[3,3,3,1],[2,3,2,0],[0,2,1,0]],[[0,1,2,1],[2,4,3,1],[2,3,2,0],[0,2,1,0]],[[0,1,2,1],[2,3,3,1],[3,3,2,0],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[2,4,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,3,0],[3,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,1,3,0],[2,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,1,3,0],[2,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,1,3,0],[2,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,1,3,0],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,3,0],[2,3,2,0],[2,0,2,1]],[[1,2,2,1],[2,1,3,0],[2,4,2,0],[1,0,2,1]],[[1,2,2,1],[2,1,3,0],[3,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,1,3,0],[2,3,2,0],[1,0,2,1]],[[0,1,3,1],[2,3,3,1],[2,3,2,0],[1,0,1,1]],[[0,1,2,2],[2,3,3,1],[2,3,2,0],[1,0,1,1]],[[0,1,2,1],[3,3,3,1],[2,3,2,0],[1,0,1,1]],[[0,1,2,1],[2,4,3,1],[2,3,2,0],[1,0,1,1]],[[0,1,2,1],[2,3,4,1],[2,3,2,0],[1,0,1,1]],[[0,1,2,1],[2,3,3,1],[3,3,2,0],[1,0,1,1]],[[0,1,2,1],[3,3,3,1],[2,3,2,0],[1,1,1,0]],[[0,1,2,1],[2,4,3,1],[2,3,2,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[3,3,2,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,1],[2,3,2,0],[2,1,1,0]],[[1,2,3,1],[2,1,3,0],[2,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,1,3,0],[2,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,1,3,0],[2,3,2,0],[1,0,2,1]],[[0,1,2,1],[3,3,3,1],[2,3,2,0],[1,2,0,0]],[[0,1,2,1],[2,4,3,1],[2,3,2,0],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[3,3,2,0],[1,2,0,0]],[[0,1,2,1],[2,3,3,1],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[2,1,3,0],[2,3,2,0],[0,3,1,1]],[[1,2,2,1],[2,1,3,0],[2,4,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,3,0],[3,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,1,3,0],[2,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,1,3,0],[2,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,1,3,0],[2,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,1,3,0],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,3,0],[2,4,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,3,0],[3,3,2,0],[0,1,2,1]],[[1,2,2,1],[3,1,3,0],[2,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,1,3,0],[2,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,1,3,0],[2,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,1,3,0],[2,3,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,3,0],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[2,1,3,0],[2,4,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,3,0],[3,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,1,3,0],[2,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,1,3,0],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,1,3,0],[2,3,1,1],[1,1,2,0]],[[0,1,3,1],[2,3,3,1],[2,3,2,1],[1,0,0,1]],[[0,1,2,2],[2,3,3,1],[2,3,2,1],[1,0,0,1]],[[0,1,2,1],[3,3,3,1],[2,3,2,1],[1,0,0,1]],[[0,1,2,1],[2,4,3,1],[2,3,2,1],[1,0,0,1]],[[0,1,2,1],[2,3,4,1],[2,3,2,1],[1,0,0,1]],[[0,1,2,1],[2,3,3,1],[3,3,2,1],[1,0,0,1]],[[0,1,3,1],[2,3,3,1],[2,3,2,1],[1,0,1,0]],[[0,1,2,2],[2,3,3,1],[2,3,2,1],[1,0,1,0]],[[0,1,2,1],[3,3,3,1],[2,3,2,1],[1,0,1,0]],[[0,1,2,1],[2,4,3,1],[2,3,2,1],[1,0,1,0]],[[0,1,2,1],[2,3,4,1],[2,3,2,1],[1,0,1,0]],[[0,1,2,1],[2,3,3,1],[3,3,2,1],[1,0,1,0]],[[2,2,2,1],[2,1,3,0],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,3,0],[2,3,1,1],[0,3,2,0]],[[1,2,2,1],[2,1,3,0],[2,4,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,3,0],[3,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,1,3,0],[2,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,1,3,0],[2,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,1,3,0],[2,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,1,3,0],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,3,0],[2,3,1,0],[2,1,2,1]],[[1,2,2,1],[2,1,3,0],[2,4,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,3,0],[3,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,1,3,0],[2,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,1,3,0],[2,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,1,3,0],[2,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,1,3,0],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,3,0],[2,3,1,0],[0,2,3,1]],[[1,2,2,1],[2,1,3,0],[2,3,1,0],[0,3,2,1]],[[1,2,2,1],[2,1,3,0],[2,4,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[3,3,1,0],[0,2,2,1]],[[1,2,2,1],[3,1,3,0],[2,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,1,3,0],[2,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,1,3,0],[2,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,1,3,0],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[2,1,3,0],[2,3,0,1],[2,2,2,0]],[[1,2,2,1],[2,1,3,0],[3,3,0,1],[1,2,2,0]],[[1,2,2,1],[3,1,3,0],[2,3,0,1],[1,2,2,0]],[[1,2,3,1],[2,1,3,0],[2,3,0,1],[1,2,2,0]],[[1,3,2,1],[2,1,3,0],[2,3,0,1],[1,2,2,0]],[[2,2,2,1],[2,1,3,0],[2,3,0,1],[1,2,2,0]],[[1,2,2,1],[2,1,3,0],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[2,1,3,0],[2,3,0,0],[2,2,2,1]],[[1,2,2,1],[2,1,3,0],[3,3,0,0],[1,2,2,1]],[[1,2,2,1],[3,1,3,0],[2,3,0,0],[1,2,2,1]],[[1,2,3,1],[2,1,3,0],[2,3,0,0],[1,2,2,1]],[[1,3,2,1],[2,1,3,0],[2,3,0,0],[1,2,2,1]],[[2,2,2,1],[2,1,3,0],[2,3,0,0],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,2,3,2],[2,1,0,0]],[[1,2,2,1],[2,1,3,0],[3,2,3,2],[1,1,0,0]],[[1,2,2,1],[2,1,4,0],[2,2,3,2],[1,1,0,0]],[[1,2,2,1],[3,1,3,0],[2,2,3,2],[1,1,0,0]],[[1,2,2,2],[2,1,3,0],[2,2,3,2],[1,1,0,0]],[[1,2,3,1],[2,1,3,0],[2,2,3,2],[1,1,0,0]],[[1,3,2,1],[2,1,3,0],[2,2,3,2],[1,1,0,0]],[[2,2,2,1],[2,1,3,0],[2,2,3,2],[1,1,0,0]],[[1,2,2,1],[2,1,3,0],[3,2,3,2],[0,2,0,0]],[[1,2,2,1],[2,1,4,0],[2,2,3,2],[0,2,0,0]],[[1,2,2,1],[3,1,3,0],[2,2,3,2],[0,2,0,0]],[[1,2,2,2],[2,1,3,0],[2,2,3,2],[0,2,0,0]],[[1,2,3,1],[2,1,3,0],[2,2,3,2],[0,2,0,0]],[[1,3,2,1],[2,1,3,0],[2,2,3,2],[0,2,0,0]],[[2,2,2,1],[2,1,3,0],[2,2,3,2],[0,2,0,0]],[[1,2,2,1],[2,1,3,0],[2,2,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,3,0],[2,2,3,0],[2,2,1,0]],[[1,2,2,1],[2,1,3,0],[3,2,3,0],[1,2,1,0]],[[1,2,2,1],[3,1,3,0],[2,2,3,0],[1,2,1,0]],[[1,2,3,1],[2,1,3,0],[2,2,3,0],[1,2,1,0]],[[1,3,2,1],[2,1,3,0],[2,2,3,0],[1,2,1,0]],[[2,2,2,1],[2,1,3,0],[2,2,3,0],[1,2,1,0]],[[1,2,2,1],[2,1,3,0],[2,2,2,2],[2,2,0,0]],[[1,2,2,1],[2,1,3,0],[3,2,2,2],[1,2,0,0]],[[1,2,2,1],[2,1,4,0],[2,2,2,2],[1,2,0,0]],[[1,2,2,1],[3,1,3,0],[2,2,2,2],[1,2,0,0]],[[1,2,2,2],[2,1,3,0],[2,2,2,2],[1,2,0,0]],[[1,2,3,1],[2,1,3,0],[2,2,2,2],[1,2,0,0]],[[1,3,2,1],[2,1,3,0],[2,2,2,2],[1,2,0,0]],[[2,2,2,1],[2,1,3,0],[2,2,2,2],[1,2,0,0]],[[1,2,2,1],[2,1,3,0],[2,2,2,2],[2,1,1,0]],[[1,2,2,1],[2,1,3,0],[3,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,4,0],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[3,1,3,0],[2,2,2,2],[1,1,1,0]],[[0,1,3,1],[2,3,3,1],[2,3,3,0],[1,0,1,0]],[[0,1,2,2],[2,3,3,1],[2,3,3,0],[1,0,1,0]],[[0,1,2,1],[3,3,3,1],[2,3,3,0],[1,0,1,0]],[[0,1,2,1],[2,4,3,1],[2,3,3,0],[1,0,1,0]],[[0,1,2,1],[2,3,4,1],[2,3,3,0],[1,0,1,0]],[[0,1,2,1],[2,3,3,1],[3,3,3,0],[1,0,1,0]],[[1,2,2,2],[2,1,3,0],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,1,3,0],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,0],[2,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,0],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,3,0],[2,2,2,2],[2,1,0,1]],[[1,2,2,1],[2,1,3,0],[3,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,1,4,0],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,0],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,0],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,0],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,0],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,0],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,1,3,0],[2,2,2,2],[2,0,2,0]],[[1,2,2,1],[2,1,3,0],[3,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,0],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,0],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,0],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,0],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,0],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,0],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,0],[2,2,2,2],[2,0,1,1]],[[1,2,2,1],[2,1,3,0],[3,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,1,4,0],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,0],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,0],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,0],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,0],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,0],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,1,3,0],[3,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,0],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[3,1,3,0],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,0],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,0],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,0],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,0],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[3,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,4,0],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[3,1,3,0],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,0],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,0],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,0],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,0],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,3,0],[3,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,4,0],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,0],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,0],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,0],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,0],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,0],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,3,0],[3,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,4,0],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,0],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,0],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,0],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,0],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,0],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,3,0],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,3,0],[2,2,2,1],[2,2,1,0]],[[1,2,2,1],[2,1,3,0],[3,2,2,1],[1,2,1,0]],[[1,2,2,1],[3,1,3,0],[2,2,2,1],[1,2,1,0]],[[1,2,3,1],[2,1,3,0],[2,2,2,1],[1,2,1,0]],[[1,3,2,1],[2,1,3,0],[2,2,2,1],[1,2,1,0]],[[2,2,2,1],[2,1,3,0],[2,2,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,3,0],[2,2,2,1],[2,1,1,1]],[[1,2,2,1],[2,1,3,0],[3,2,2,1],[1,1,1,1]],[[1,2,2,1],[2,1,4,0],[2,2,2,1],[1,1,1,1]],[[1,2,2,1],[3,1,3,0],[2,2,2,1],[1,1,1,1]],[[1,2,2,2],[2,1,3,0],[2,2,2,1],[1,1,1,1]],[[1,2,3,1],[2,1,3,0],[2,2,2,1],[1,1,1,1]],[[1,3,2,1],[2,1,3,0],[2,2,2,1],[1,1,1,1]],[[2,2,2,1],[2,1,3,0],[2,2,2,1],[1,1,1,1]],[[1,2,2,1],[2,1,3,0],[2,2,2,1],[2,0,2,1]],[[1,2,2,1],[2,1,3,0],[3,2,2,1],[1,0,2,1]],[[1,2,2,1],[2,1,4,0],[2,2,2,1],[1,0,2,1]],[[1,2,2,1],[3,1,3,0],[2,2,2,1],[1,0,2,1]],[[1,2,2,2],[2,1,3,0],[2,2,2,1],[1,0,2,1]],[[1,2,3,1],[2,1,3,0],[2,2,2,1],[1,0,2,1]],[[1,3,2,1],[2,1,3,0],[2,2,2,1],[1,0,2,1]],[[2,2,2,1],[2,1,3,0],[2,2,2,1],[1,0,2,1]],[[1,2,2,1],[2,1,3,0],[3,2,2,1],[0,2,1,1]],[[1,2,2,1],[2,1,4,0],[2,2,2,1],[0,2,1,1]],[[1,2,2,1],[3,1,3,0],[2,2,2,1],[0,2,1,1]],[[1,2,2,2],[2,1,3,0],[2,2,2,1],[0,2,1,1]],[[1,2,3,1],[2,1,3,0],[2,2,2,1],[0,2,1,1]],[[1,3,2,1],[2,1,3,0],[2,2,2,1],[0,2,1,1]],[[2,2,2,1],[2,1,3,0],[2,2,2,1],[0,2,1,1]],[[1,2,2,1],[2,1,3,0],[3,2,2,1],[0,1,2,1]],[[1,2,2,1],[2,1,4,0],[2,2,2,1],[0,1,2,1]],[[1,2,2,1],[3,1,3,0],[2,2,2,1],[0,1,2,1]],[[1,2,2,2],[2,1,3,0],[2,2,2,1],[0,1,2,1]],[[1,2,3,1],[2,1,3,0],[2,2,2,1],[0,1,2,1]],[[1,3,2,1],[2,1,3,0],[2,2,2,1],[0,1,2,1]],[[2,2,2,1],[2,1,3,0],[2,2,2,1],[0,1,2,1]],[[1,2,2,1],[2,1,3,0],[2,2,2,0],[1,3,1,1]],[[0,1,3,1],[2,3,3,1],[2,3,3,1],[1,0,0,0]],[[0,1,2,2],[2,3,3,1],[2,3,3,1],[1,0,0,0]],[[0,1,2,1],[3,3,3,1],[2,3,3,1],[1,0,0,0]],[[0,1,2,1],[2,4,3,1],[2,3,3,1],[1,0,0,0]],[[0,1,2,1],[2,3,4,1],[2,3,3,1],[1,0,0,0]],[[0,1,2,1],[2,3,3,1],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[2,1,3,0],[2,2,2,0],[2,2,1,1]],[[1,2,2,1],[2,1,3,0],[3,2,2,0],[1,2,1,1]],[[1,2,2,1],[3,1,3,0],[2,2,2,0],[1,2,1,1]],[[1,2,3,1],[2,1,3,0],[2,2,2,0],[1,2,1,1]],[[1,3,2,1],[2,1,3,0],[2,2,2,0],[1,2,1,1]],[[2,2,2,1],[2,1,3,0],[2,2,2,0],[1,2,1,1]],[[1,2,2,1],[2,1,3,0],[2,2,1,2],[2,1,2,0]],[[1,2,2,1],[2,1,3,0],[3,2,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,0],[2,2,1,2],[1,1,2,0]],[[1,2,2,1],[3,1,3,0],[2,2,1,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,0],[2,2,1,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,0],[2,2,1,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,0],[2,2,1,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,0],[2,2,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,3,0],[3,2,1,2],[0,2,2,0]],[[1,2,2,1],[2,1,4,0],[2,2,1,2],[0,2,2,0]],[[1,2,2,1],[3,1,3,0],[2,2,1,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,0],[2,2,1,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,0],[2,2,1,2],[0,2,2,0]],[[1,3,2,1],[2,1,3,0],[2,2,1,2],[0,2,2,0]],[[2,2,2,1],[2,1,3,0],[2,2,1,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,0],[2,2,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,3,0],[2,2,1,1],[2,2,2,0]],[[1,2,2,1],[2,1,3,0],[3,2,1,1],[1,2,2,0]],[[1,2,2,1],[3,1,3,0],[2,2,1,1],[1,2,2,0]],[[1,2,3,1],[2,1,3,0],[2,2,1,1],[1,2,2,0]],[[1,3,2,1],[2,1,3,0],[2,2,1,1],[1,2,2,0]],[[2,2,2,1],[2,1,3,0],[2,2,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,3,0],[2,2,1,1],[2,1,2,1]],[[1,2,2,1],[2,1,3,0],[3,2,1,1],[1,1,2,1]],[[1,2,2,1],[2,1,4,0],[2,2,1,1],[1,1,2,1]],[[1,2,2,1],[3,1,3,0],[2,2,1,1],[1,1,2,1]],[[1,2,2,2],[2,1,3,0],[2,2,1,1],[1,1,2,1]],[[1,2,3,1],[2,1,3,0],[2,2,1,1],[1,1,2,1]],[[1,3,2,1],[2,1,3,0],[2,2,1,1],[1,1,2,1]],[[2,2,2,1],[2,1,3,0],[2,2,1,1],[1,1,2,1]],[[1,2,2,1],[2,1,3,0],[3,2,1,1],[0,2,2,1]],[[1,2,2,1],[2,1,4,0],[2,2,1,1],[0,2,2,1]],[[1,2,2,1],[3,1,3,0],[2,2,1,1],[0,2,2,1]],[[1,2,2,2],[2,1,3,0],[2,2,1,1],[0,2,2,1]],[[1,2,3,1],[2,1,3,0],[2,2,1,1],[0,2,2,1]],[[1,3,2,1],[2,1,3,0],[2,2,1,1],[0,2,2,1]],[[2,2,2,1],[2,1,3,0],[2,2,1,1],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,2,1,0],[1,2,3,1]],[[1,2,2,1],[2,1,3,0],[2,2,1,0],[1,3,2,1]],[[1,2,2,1],[2,1,3,0],[2,2,1,0],[2,2,2,1]],[[1,2,2,1],[2,1,3,0],[3,2,1,0],[1,2,2,1]],[[1,2,2,1],[3,1,3,0],[2,2,1,0],[1,2,2,1]],[[1,2,3,1],[2,1,3,0],[2,2,1,0],[1,2,2,1]],[[1,3,2,1],[2,1,3,0],[2,2,1,0],[1,2,2,1]],[[2,2,2,1],[2,1,3,0],[2,2,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[2,1,3,0],[3,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,4,0],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[3,1,3,0],[2,2,0,2],[1,1,2,1]],[[1,2,2,2],[2,1,3,0],[2,2,0,2],[1,1,2,1]],[[1,2,3,1],[2,1,3,0],[2,2,0,2],[1,1,2,1]],[[1,3,2,1],[2,1,3,0],[2,2,0,2],[1,1,2,1]],[[2,2,2,1],[2,1,3,0],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,3,0],[3,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,4,0],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[3,1,3,0],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,3,0],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,3,0],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,1,3,0],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,3,0],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,3,2],[2,1,1,0]],[[1,2,2,1],[2,1,3,0],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,3,0],[2,1,4,2],[1,1,1,0]],[[1,2,2,1],[2,1,3,0],[3,1,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,4,0],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[3,1,3,0],[2,1,3,2],[1,1,1,0]],[[1,2,2,2],[2,1,3,0],[2,1,3,2],[1,1,1,0]],[[1,2,3,1],[2,1,3,0],[2,1,3,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,0],[2,1,3,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,0],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,3,0],[2,1,3,2],[1,1,0,2]],[[1,2,2,1],[2,1,3,0],[2,1,3,2],[2,1,0,1]],[[1,2,2,1],[2,1,3,0],[2,1,3,3],[1,1,0,1]],[[1,2,2,1],[2,1,3,0],[2,1,4,2],[1,1,0,1]],[[1,2,2,1],[2,1,3,0],[3,1,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,4,0],[2,1,3,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,0],[2,1,3,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,0],[2,1,3,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,0],[2,1,3,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,0],[2,1,3,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,0],[2,1,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,3,0],[2,1,3,2],[1,0,3,0]],[[1,2,2,1],[2,1,3,0],[2,1,3,2],[2,0,2,0]],[[1,2,2,1],[2,1,3,0],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,3,0],[2,1,4,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,0],[3,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,0],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,0],[2,1,3,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,0],[2,1,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,0],[2,1,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,0],[2,1,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,0],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,0],[2,1,3,2],[1,0,1,2]],[[1,2,2,1],[2,1,3,0],[2,1,3,2],[2,0,1,1]],[[1,2,2,1],[2,1,3,0],[2,1,3,3],[1,0,1,1]],[[1,2,2,1],[2,1,3,0],[2,1,4,2],[1,0,1,1]],[[1,2,2,1],[2,1,3,0],[3,1,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,4,0],[2,1,3,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,0],[2,1,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,0],[2,1,3,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,0],[2,1,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,0],[2,1,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,0],[2,1,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,3,0],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[2,1,4,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[3,1,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,0],[2,1,3,2],[0,2,1,0]],[[1,2,2,1],[3,1,3,0],[2,1,3,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,0],[2,1,3,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,0],[2,1,3,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,0],[2,1,3,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,0],[2,1,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[2,1,3,2],[0,2,0,2]],[[1,2,2,1],[2,1,3,0],[2,1,3,3],[0,2,0,1]],[[1,2,2,1],[2,1,3,0],[2,1,4,2],[0,2,0,1]],[[1,2,2,1],[2,1,3,0],[3,1,3,2],[0,2,0,1]],[[1,2,2,1],[2,1,4,0],[2,1,3,2],[0,2,0,1]],[[1,2,2,1],[3,1,3,0],[2,1,3,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,0],[2,1,3,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,0],[2,1,3,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,0],[2,1,3,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,0],[2,1,3,2],[0,2,0,1]],[[1,2,2,1],[2,1,3,0],[2,1,3,2],[0,1,3,0]],[[1,2,2,1],[2,1,3,0],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[2,1,3,0],[2,1,4,2],[0,1,2,0]],[[1,2,2,1],[2,1,3,0],[3,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,4,0],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,0],[2,1,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,0],[2,1,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,0],[2,1,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,0],[2,1,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,0],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,3,0],[2,1,3,2],[0,1,1,2]],[[1,2,2,1],[2,1,3,0],[2,1,3,3],[0,1,1,1]],[[1,2,2,1],[2,1,3,0],[2,1,4,2],[0,1,1,1]],[[1,2,2,1],[2,1,3,0],[3,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,4,0],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,0],[2,1,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,0],[2,1,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,0],[2,1,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,0],[2,1,3,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,0],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,3,0],[2,1,3,2],[0,0,2,2]],[[1,2,2,1],[2,1,3,0],[2,1,3,3],[0,0,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,4,2],[0,0,2,1]],[[1,2,2,1],[2,1,4,0],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[3,1,3,0],[2,1,3,2],[0,0,2,1]],[[1,2,2,2],[2,1,3,0],[2,1,3,2],[0,0,2,1]],[[1,2,3,1],[2,1,3,0],[2,1,3,2],[0,0,2,1]],[[1,3,2,1],[2,1,3,0],[2,1,3,2],[0,0,2,1]],[[2,2,2,1],[2,1,3,0],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,3,1],[2,1,1,1]],[[1,2,2,1],[2,1,3,0],[2,1,4,1],[1,1,1,1]],[[1,2,2,1],[2,1,3,0],[3,1,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,4,0],[2,1,3,1],[1,1,1,1]],[[1,2,2,1],[3,1,3,0],[2,1,3,1],[1,1,1,1]],[[1,2,2,2],[2,1,3,0],[2,1,3,1],[1,1,1,1]],[[1,2,3,1],[2,1,3,0],[2,1,3,1],[1,1,1,1]],[[1,3,2,1],[2,1,3,0],[2,1,3,1],[1,1,1,1]],[[2,2,2,1],[2,1,3,0],[2,1,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,3,0],[2,1,3,1],[1,0,2,2]],[[1,2,2,1],[2,1,3,0],[2,1,3,1],[1,0,3,1]],[[1,2,2,1],[2,1,3,0],[2,1,3,1],[2,0,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,4,1],[1,0,2,1]],[[1,2,2,1],[2,1,3,0],[3,1,3,1],[1,0,2,1]],[[1,2,2,1],[2,1,4,0],[2,1,3,1],[1,0,2,1]],[[1,2,2,1],[3,1,3,0],[2,1,3,1],[1,0,2,1]],[[1,2,2,2],[2,1,3,0],[2,1,3,1],[1,0,2,1]],[[1,2,3,1],[2,1,3,0],[2,1,3,1],[1,0,2,1]],[[1,3,2,1],[2,1,3,0],[2,1,3,1],[1,0,2,1]],[[2,2,2,1],[2,1,3,0],[2,1,3,1],[1,0,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,4,1],[0,2,1,1]],[[1,2,2,1],[2,1,3,0],[3,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,4,0],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[3,1,3,0],[2,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,1,3,0],[2,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,1,3,0],[2,1,3,1],[0,2,1,1]],[[1,3,2,1],[2,1,3,0],[2,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,1,3,0],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,3,0],[2,1,3,1],[0,1,2,2]],[[1,2,2,1],[2,1,3,0],[2,1,3,1],[0,1,3,1]],[[1,2,2,1],[2,1,3,0],[2,1,4,1],[0,1,2,1]],[[1,2,2,1],[2,1,3,0],[3,1,3,1],[0,1,2,1]],[[1,2,2,1],[2,1,4,0],[2,1,3,1],[0,1,2,1]],[[1,2,2,1],[3,1,3,0],[2,1,3,1],[0,1,2,1]],[[1,2,2,2],[2,1,3,0],[2,1,3,1],[0,1,2,1]],[[1,2,3,1],[2,1,3,0],[2,1,3,1],[0,1,2,1]],[[1,3,2,1],[2,1,3,0],[2,1,3,1],[0,1,2,1]],[[2,2,2,1],[2,1,3,0],[2,1,3,1],[0,1,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,2,2],[1,3,1,0]],[[1,2,2,1],[2,1,3,0],[2,1,2,2],[2,2,1,0]],[[1,2,2,1],[2,1,3,0],[3,1,2,2],[1,2,1,0]],[[1,2,2,1],[2,1,4,0],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[3,1,3,0],[2,1,2,2],[1,2,1,0]],[[1,2,2,2],[2,1,3,0],[2,1,2,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,0],[2,1,2,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,0],[2,1,2,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,0],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[2,1,3,0],[2,1,2,2],[1,3,0,1]],[[1,2,2,1],[2,1,3,0],[2,1,2,2],[2,2,0,1]],[[1,2,2,1],[2,1,3,0],[3,1,2,2],[1,2,0,1]],[[1,2,2,1],[2,1,4,0],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[3,1,3,0],[2,1,2,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,0],[2,1,2,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,0],[2,1,2,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,0],[2,1,2,2],[1,2,0,1]],[[2,2,2,1],[2,1,3,0],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[2,1,3,0],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,3,0],[2,1,2,2],[1,0,3,1]],[[1,2,2,1],[2,1,3,0],[2,1,2,3],[1,0,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,2,2],[0,1,2,2]],[[1,2,2,1],[2,1,3,0],[2,1,2,2],[0,1,3,1]],[[1,2,2,1],[2,1,3,0],[2,1,2,3],[0,1,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,2,1],[1,3,1,1]],[[1,2,2,1],[2,1,3,0],[2,1,2,1],[2,2,1,1]],[[1,2,2,1],[2,1,3,0],[3,1,2,1],[1,2,1,1]],[[1,2,2,1],[2,1,4,0],[2,1,2,1],[1,2,1,1]],[[1,2,2,1],[3,1,3,0],[2,1,2,1],[1,2,1,1]],[[1,2,2,2],[2,1,3,0],[2,1,2,1],[1,2,1,1]],[[1,2,3,1],[2,1,3,0],[2,1,2,1],[1,2,1,1]],[[1,3,2,1],[2,1,3,0],[2,1,2,1],[1,2,1,1]],[[2,2,2,1],[2,1,3,0],[2,1,2,1],[1,2,1,1]],[[0,1,3,1],[2,3,3,2],[0,1,0,2],[1,2,2,1]],[[0,1,2,2],[2,3,3,2],[0,1,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,3,3],[0,1,0,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,2],[0,1,1,2],[1,2,1,1]],[[0,1,2,2],[2,3,3,2],[0,1,1,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,3],[0,1,1,2],[1,2,1,1]],[[0,1,3,1],[2,3,3,2],[0,1,1,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,2],[0,1,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,3],[0,1,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,3,0],[2,1,1,2],[1,2,3,0]],[[1,2,2,1],[2,1,3,0],[2,1,1,2],[1,3,2,0]],[[1,2,2,1],[2,1,3,0],[2,1,1,2],[2,2,2,0]],[[1,2,2,1],[2,1,3,0],[3,1,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,4,0],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[3,1,3,0],[2,1,1,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,0],[2,1,1,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,0],[2,1,1,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,0],[2,1,1,2],[1,2,2,0]],[[0,1,3,1],[2,3,3,2],[0,1,3,0],[1,2,1,1]],[[0,1,2,2],[2,3,3,2],[0,1,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,4,2],[0,1,3,0],[1,2,1,1]],[[0,1,3,1],[2,3,3,2],[0,1,3,0],[1,2,2,0]],[[0,1,2,2],[2,3,3,2],[0,1,3,0],[1,2,2,0]],[[0,1,2,1],[3,3,3,2],[0,1,3,0],[1,2,2,0]],[[0,1,2,1],[2,4,3,2],[0,1,3,0],[1,2,2,0]],[[0,1,2,1],[2,3,4,2],[0,1,3,0],[1,2,2,0]],[[2,2,2,1],[2,1,3,0],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,3,0],[2,1,1,1],[1,2,2,2]],[[1,2,2,1],[2,1,3,0],[2,1,1,1],[1,2,3,1]],[[1,2,2,1],[2,1,3,0],[2,1,1,1],[1,3,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,1,1],[2,2,2,1]],[[1,2,2,1],[2,1,3,0],[3,1,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,4,0],[2,1,1,1],[1,2,2,1]],[[1,2,2,1],[3,1,3,0],[2,1,1,1],[1,2,2,1]],[[1,2,2,2],[2,1,3,0],[2,1,1,1],[1,2,2,1]],[[1,2,3,1],[2,1,3,0],[2,1,1,1],[1,2,2,1]],[[1,3,2,1],[2,1,3,0],[2,1,1,1],[1,2,2,1]],[[2,2,2,1],[2,1,3,0],[2,1,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[2,1,3,0],[2,1,0,2],[1,2,3,1]],[[1,2,2,1],[2,1,3,0],[2,1,0,2],[1,3,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,1,0,3],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[3,1,0,2],[1,2,2,1]],[[1,2,2,1],[2,1,4,0],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[3,1,3,0],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,3,0],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,3,0],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,3,0],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,3,0],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[2,2,1,0]],[[1,2,2,1],[2,1,3,0],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[2,1,3,0],[2,0,4,2],[1,2,1,0]],[[1,2,2,1],[2,1,3,0],[3,0,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,4,0],[2,0,3,2],[1,2,1,0]],[[1,2,2,1],[3,1,3,0],[2,0,3,2],[1,2,1,0]],[[0,1,3,1],[2,3,3,2],[0,2,0,2],[1,1,2,1]],[[0,1,2,2],[2,3,3,2],[0,2,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,3,3],[0,2,0,2],[1,1,2,1]],[[0,1,3,1],[2,3,3,2],[0,2,1,2],[1,0,2,1]],[[0,1,2,2],[2,3,3,2],[0,2,1,2],[1,0,2,1]],[[0,1,2,1],[2,3,3,3],[0,2,1,2],[1,0,2,1]],[[0,1,3,1],[2,3,3,2],[0,2,1,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,2],[0,2,1,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,3],[0,2,1,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,2],[0,2,1,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,2],[0,2,1,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,3],[0,2,1,2],[1,1,2,0]],[[0,1,3,1],[2,3,3,2],[0,2,1,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,2],[0,2,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,3],[0,2,1,2],[1,2,0,1]],[[0,1,3,1],[2,3,3,2],[0,2,1,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,2],[0,2,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,3],[0,2,1,2],[1,2,1,0]],[[1,2,2,2],[2,1,3,0],[2,0,3,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,0],[2,0,3,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,0],[2,0,3,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,0],[2,0,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[1,2,0,2]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[1,3,0,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[2,2,0,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,3],[1,2,0,1]],[[1,2,2,1],[2,1,3,0],[2,0,4,2],[1,2,0,1]],[[1,2,2,1],[2,1,3,0],[3,0,3,2],[1,2,0,1]],[[1,2,2,1],[2,1,4,0],[2,0,3,2],[1,2,0,1]],[[0,1,3,1],[2,3,3,2],[0,2,2,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,2],[0,2,2,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,3],[0,2,2,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,0],[2,0,3,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,0],[2,0,3,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,0],[2,0,3,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,0],[2,0,3,2],[1,2,0,1]],[[2,2,2,1],[2,1,3,0],[2,0,3,2],[1,2,0,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[1,1,3,0]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[2,1,2,0]],[[1,2,2,1],[2,1,3,0],[2,0,3,3],[1,1,2,0]],[[1,2,2,1],[2,1,3,0],[2,0,4,2],[1,1,2,0]],[[1,2,2,1],[2,1,3,0],[3,0,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,0],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[3,1,3,0],[2,0,3,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,0],[2,0,3,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,0],[2,0,3,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,0],[2,0,3,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,0],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[1,1,1,2]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[2,1,1,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,3],[1,1,1,1]],[[1,2,2,1],[2,1,3,0],[2,0,4,2],[1,1,1,1]],[[1,2,2,1],[2,1,3,0],[3,0,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,4,0],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[3,1,3,0],[2,0,3,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,2],[0,2,3,0],[1,0,2,1]],[[0,1,2,2],[2,3,3,2],[0,2,3,0],[1,0,2,1]],[[0,1,2,1],[2,3,4,2],[0,2,3,0],[1,0,2,1]],[[0,1,3,1],[2,3,3,2],[0,2,3,0],[1,1,1,1]],[[0,1,2,2],[2,3,3,2],[0,2,3,0],[1,1,1,1]],[[0,1,2,1],[2,4,3,2],[0,2,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,4,2],[0,2,3,0],[1,1,1,1]],[[0,1,3,1],[2,3,3,2],[0,2,3,0],[1,1,2,0]],[[0,1,2,2],[2,3,3,2],[0,2,3,0],[1,1,2,0]],[[0,1,2,1],[3,3,3,2],[0,2,3,0],[1,1,2,0]],[[0,1,2,1],[2,4,3,2],[0,2,3,0],[1,1,2,0]],[[0,1,2,1],[2,3,4,2],[0,2,3,0],[1,1,2,0]],[[0,1,3,1],[2,3,3,2],[0,2,3,0],[1,2,0,1]],[[0,1,2,2],[2,3,3,2],[0,2,3,0],[1,2,0,1]],[[0,1,2,1],[3,3,3,2],[0,2,3,0],[1,2,0,1]],[[0,1,2,1],[2,4,3,2],[0,2,3,0],[1,2,0,1]],[[0,1,2,1],[2,3,4,2],[0,2,3,0],[1,2,0,1]],[[0,1,3,1],[2,3,3,2],[0,2,3,0],[1,2,1,0]],[[0,1,2,2],[2,3,3,2],[0,2,3,0],[1,2,1,0]],[[0,1,2,1],[3,3,3,2],[0,2,3,0],[1,2,1,0]],[[0,1,2,1],[2,4,3,2],[0,2,3,0],[1,2,1,0]],[[0,1,2,1],[2,3,4,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,2],[2,1,3,0],[2,0,3,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,0],[2,0,3,2],[1,1,1,1]],[[1,3,2,1],[2,1,3,0],[2,0,3,2],[1,1,1,1]],[[2,2,2,1],[2,1,3,0],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[0,3,2,0]],[[1,2,2,1],[2,1,3,0],[2,0,3,3],[0,2,2,0]],[[1,2,2,1],[2,1,3,0],[2,0,4,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,0],[3,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,4,0],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[3,1,3,0],[2,0,3,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,0],[2,0,3,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,0],[2,0,3,2],[0,2,2,0]],[[1,3,2,1],[2,1,3,0],[2,0,3,2],[0,2,2,0]],[[2,2,2,1],[2,1,3,0],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,0],[2,0,3,2],[0,2,1,2]],[[1,2,2,1],[2,1,3,0],[2,0,3,3],[0,2,1,1]],[[1,2,2,1],[2,1,3,0],[2,0,4,2],[0,2,1,1]],[[1,2,2,1],[2,1,3,0],[3,0,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,4,0],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[3,1,3,0],[2,0,3,2],[0,2,1,1]],[[1,2,2,2],[2,1,3,0],[2,0,3,2],[0,2,1,1]],[[1,2,3,1],[2,1,3,0],[2,0,3,2],[0,2,1,1]],[[1,3,2,1],[2,1,3,0],[2,0,3,2],[0,2,1,1]],[[2,2,2,1],[2,1,3,0],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,1],[1,3,1,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,1],[2,2,1,1]],[[1,2,2,1],[2,1,3,0],[2,0,4,1],[1,2,1,1]],[[1,2,2,1],[2,1,3,0],[3,0,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,4,0],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[3,1,3,0],[2,0,3,1],[1,2,1,1]],[[1,2,2,2],[2,1,3,0],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[2,1,3,0],[2,0,3,1],[1,2,1,1]],[[1,3,2,1],[2,1,3,0],[2,0,3,1],[1,2,1,1]],[[2,2,2,1],[2,1,3,0],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,1],[1,1,2,2]],[[1,2,2,1],[2,1,3,0],[2,0,3,1],[1,1,3,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,1],[2,1,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,4,1],[1,1,2,1]],[[1,2,2,1],[2,1,3,0],[3,0,3,1],[1,1,2,1]],[[1,2,2,1],[2,1,4,0],[2,0,3,1],[1,1,2,1]],[[1,2,2,1],[3,1,3,0],[2,0,3,1],[1,1,2,1]],[[1,2,2,2],[2,1,3,0],[2,0,3,1],[1,1,2,1]],[[1,2,3,1],[2,1,3,0],[2,0,3,1],[1,1,2,1]],[[1,3,2,1],[2,1,3,0],[2,0,3,1],[1,1,2,1]],[[2,2,2,1],[2,1,3,0],[2,0,3,1],[1,1,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,1],[0,2,2,2]],[[1,2,2,1],[2,1,3,0],[2,0,3,1],[0,2,3,1]],[[1,2,2,1],[2,1,3,0],[2,0,3,1],[0,3,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,4,1],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[3,0,3,1],[0,2,2,1]],[[1,2,2,1],[2,1,4,0],[2,0,3,1],[0,2,2,1]],[[1,2,2,1],[3,1,3,0],[2,0,3,1],[0,2,2,1]],[[1,2,2,2],[2,1,3,0],[2,0,3,1],[0,2,2,1]],[[1,2,3,1],[2,1,3,0],[2,0,3,1],[0,2,2,1]],[[1,3,2,1],[2,1,3,0],[2,0,3,1],[0,2,2,1]],[[2,2,2,1],[2,1,3,0],[2,0,3,1],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,2,2],[1,2,3,0]],[[1,2,2,1],[2,1,3,0],[2,0,2,2],[1,3,2,0]],[[1,2,2,1],[2,1,3,0],[2,0,2,2],[2,2,2,0]],[[1,2,2,1],[2,1,3,0],[3,0,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,4,0],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[3,1,3,0],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,0],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,0],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,0],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,0],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,3,0],[2,0,2,2],[1,1,2,2]],[[1,2,2,1],[2,1,3,0],[2,0,2,2],[1,1,3,1]],[[1,2,2,1],[2,1,3,0],[2,0,2,3],[1,1,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,2,2],[0,2,2,2]],[[1,2,2,1],[2,1,3,0],[2,0,2,2],[0,2,3,1]],[[1,2,2,1],[2,1,3,0],[2,0,2,2],[0,3,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,2,3],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,2,1],[1,2,2,2]],[[1,2,2,1],[2,1,3,0],[2,0,2,1],[1,2,3,1]],[[1,2,2,1],[2,1,3,0],[2,0,2,1],[1,3,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,2,1],[2,2,2,1]],[[1,2,2,1],[2,1,3,0],[3,0,2,1],[1,2,2,1]],[[1,2,2,1],[2,1,4,0],[2,0,2,1],[1,2,2,1]],[[1,2,2,1],[3,1,3,0],[2,0,2,1],[1,2,2,1]],[[1,2,2,2],[2,1,3,0],[2,0,2,1],[1,2,2,1]],[[1,2,3,1],[2,1,3,0],[2,0,2,1],[1,2,2,1]],[[1,3,2,1],[2,1,3,0],[2,0,2,1],[1,2,2,1]],[[2,2,2,1],[2,1,3,0],[2,0,2,1],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,1,2],[1,2,2,2]],[[1,2,2,1],[2,1,3,0],[2,0,1,2],[1,2,3,1]],[[1,2,2,1],[2,1,3,0],[2,0,1,2],[1,3,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,1,2],[2,2,2,1]],[[1,2,2,1],[2,1,3,0],[2,0,1,3],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[3,0,1,2],[1,2,2,1]],[[1,2,2,1],[2,1,4,0],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[3,1,3,0],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[2,1,3,0],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[2,1,3,0],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[2,1,3,0],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[2,1,3,0],[2,0,1,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,2],[0,3,0,2],[0,1,2,1]],[[0,1,2,2],[2,3,3,2],[0,3,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,3,3],[0,3,0,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,2],[0,3,0,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,2],[0,3,0,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,3],[0,3,0,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,2],[0,3,0,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,2],[0,3,0,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,3],[0,3,0,2],[1,1,2,0]],[[0,1,3,1],[2,3,3,2],[0,3,0,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,2],[0,3,0,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,3],[0,3,0,2],[1,2,0,1]],[[0,1,3,1],[2,3,3,2],[0,3,0,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,2],[0,3,0,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,3],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[2,1,4,0],[1,3,3,2],[1,1,0,0]],[[1,2,2,1],[3,1,3,0],[1,3,3,2],[1,1,0,0]],[[1,2,2,2],[2,1,3,0],[1,3,3,2],[1,1,0,0]],[[1,2,3,1],[2,1,3,0],[1,3,3,2],[1,1,0,0]],[[1,3,2,1],[2,1,3,0],[1,3,3,2],[1,1,0,0]],[[2,2,2,1],[2,1,3,0],[1,3,3,2],[1,1,0,0]],[[0,1,3,1],[2,3,3,2],[0,3,1,0],[1,2,2,0]],[[0,1,2,2],[2,3,3,2],[0,3,1,0],[1,2,2,0]],[[0,1,2,1],[3,3,3,2],[0,3,1,0],[1,2,2,0]],[[0,1,2,1],[2,4,3,2],[0,3,1,0],[1,2,2,0]],[[0,1,2,1],[2,3,4,2],[0,3,1,0],[1,2,2,0]],[[0,1,2,1],[2,3,3,2],[0,4,1,0],[1,2,2,0]],[[0,1,2,1],[2,3,3,2],[0,3,1,0],[2,2,2,0]],[[0,1,2,1],[2,3,3,2],[0,3,1,0],[1,3,2,0]],[[0,1,3,1],[2,3,3,2],[0,3,1,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,2],[0,3,1,2],[0,0,2,1]],[[0,1,2,1],[2,3,3,3],[0,3,1,2],[0,0,2,1]],[[0,1,3,1],[2,3,3,2],[0,3,1,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,2],[0,3,1,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,3],[0,3,1,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,2],[0,3,1,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,2],[0,3,1,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,3],[0,3,1,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,2],[0,3,1,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,2],[0,3,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,3],[0,3,1,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,2],[0,3,1,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,2],[0,3,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,3],[0,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,0],[1,3,3,2],[0,2,0,0]],[[1,2,2,1],[3,1,3,0],[1,3,3,2],[0,2,0,0]],[[1,2,2,2],[2,1,3,0],[1,3,3,2],[0,2,0,0]],[[1,2,3,1],[2,1,3,0],[1,3,3,2],[0,2,0,0]],[[1,3,2,1],[2,1,3,0],[1,3,3,2],[0,2,0,0]],[[2,2,2,1],[2,1,3,0],[1,3,3,2],[0,2,0,0]],[[0,1,3,1],[2,3,3,2],[0,3,2,0],[1,1,1,1]],[[0,1,2,2],[2,3,3,2],[0,3,2,0],[1,1,1,1]],[[0,1,2,1],[2,4,3,2],[0,3,2,0],[1,1,1,1]],[[0,1,2,1],[2,3,4,2],[0,3,2,0],[1,1,1,1]],[[0,1,3,1],[2,3,3,2],[0,3,2,0],[1,1,2,0]],[[0,1,2,2],[2,3,3,2],[0,3,2,0],[1,1,2,0]],[[0,1,2,1],[3,3,3,2],[0,3,2,0],[1,1,2,0]],[[0,1,2,1],[2,4,3,2],[0,3,2,0],[1,1,2,0]],[[0,1,2,1],[2,3,4,2],[0,3,2,0],[1,1,2,0]],[[0,1,2,1],[2,3,3,2],[0,4,2,0],[1,1,2,0]],[[0,1,3,1],[2,3,3,2],[0,3,2,0],[1,2,0,1]],[[0,1,2,2],[2,3,3,2],[0,3,2,0],[1,2,0,1]],[[0,1,2,1],[3,3,3,2],[0,3,2,0],[1,2,0,1]],[[0,1,2,1],[2,4,3,2],[0,3,2,0],[1,2,0,1]],[[0,1,2,1],[2,3,4,2],[0,3,2,0],[1,2,0,1]],[[0,1,2,1],[2,3,3,2],[0,4,2,0],[1,2,0,1]],[[0,1,3,1],[2,3,3,2],[0,3,2,0],[1,2,1,0]],[[0,1,2,2],[2,3,3,2],[0,3,2,0],[1,2,1,0]],[[0,1,2,1],[3,3,3,2],[0,3,2,0],[1,2,1,0]],[[0,1,2,1],[2,4,3,2],[0,3,2,0],[1,2,1,0]],[[0,1,2,1],[2,3,4,2],[0,3,2,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,2],[0,4,2,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,2],[0,3,2,0],[2,2,1,0]],[[0,1,2,1],[2,3,3,2],[0,3,2,0],[1,3,1,0]],[[1,2,2,1],[2,1,3,0],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,1,3,0],[1,3,4,2],[0,0,2,0]],[[1,2,2,1],[2,1,4,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[3,1,3,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,2],[2,1,3,0],[1,3,3,2],[0,0,2,0]],[[1,2,3,1],[2,1,3,0],[1,3,3,2],[0,0,2,0]],[[1,3,2,1],[2,1,3,0],[1,3,3,2],[0,0,2,0]],[[2,2,2,1],[2,1,3,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[2,1,3,0],[1,3,3,2],[0,0,1,2]],[[1,2,2,1],[2,1,3,0],[1,3,3,3],[0,0,1,1]],[[1,2,2,1],[2,1,3,0],[1,3,4,2],[0,0,1,1]],[[1,2,2,1],[2,1,4,0],[1,3,3,2],[0,0,1,1]],[[1,2,2,1],[3,1,3,0],[1,3,3,2],[0,0,1,1]],[[1,2,2,2],[2,1,3,0],[1,3,3,2],[0,0,1,1]],[[1,2,3,1],[2,1,3,0],[1,3,3,2],[0,0,1,1]],[[1,3,2,1],[2,1,3,0],[1,3,3,2],[0,0,1,1]],[[2,2,2,1],[2,1,3,0],[1,3,3,2],[0,0,1,1]],[[0,1,3,1],[2,3,3,2],[0,3,2,2],[0,1,0,1]],[[0,1,2,2],[2,3,3,2],[0,3,2,2],[0,1,0,1]],[[0,1,2,1],[2,3,3,3],[0,3,2,2],[0,1,0,1]],[[1,2,2,1],[2,1,3,0],[1,3,4,1],[0,0,2,1]],[[1,2,2,1],[2,1,4,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[3,1,3,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,2],[2,1,3,0],[1,3,3,1],[0,0,2,1]],[[1,2,3,1],[2,1,3,0],[1,3,3,1],[0,0,2,1]],[[1,3,2,1],[2,1,3,0],[1,3,3,1],[0,0,2,1]],[[2,2,2,1],[2,1,3,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[2,1,3,0],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,3,0],[1,3,3,0],[2,2,1,0]],[[1,2,2,1],[2,1,3,0],[1,4,3,0],[1,2,1,0]],[[1,2,2,1],[2,1,4,0],[1,3,2,2],[1,2,0,0]],[[1,2,2,1],[3,1,3,0],[1,3,2,2],[1,2,0,0]],[[1,2,2,2],[2,1,3,0],[1,3,2,2],[1,2,0,0]],[[1,2,3,1],[2,1,3,0],[1,3,2,2],[1,2,0,0]],[[1,3,2,1],[2,1,3,0],[1,3,2,2],[1,2,0,0]],[[2,2,2,1],[2,1,3,0],[1,3,2,2],[1,2,0,0]],[[1,2,2,1],[2,1,4,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[3,1,3,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,1,3,0],[1,3,2,2],[1,1,1,0]],[[1,2,3,1],[2,1,3,0],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,0],[1,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,4,0],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,0],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,0],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,0],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,0],[1,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,0],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[2,1,4,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,0],[1,3,2,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,0],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,0],[1,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,0],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,0],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,0],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,0],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,0],[1,3,2,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,0],[1,3,2,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,2],[0,3,3,0],[0,0,2,1]],[[0,1,2,2],[2,3,3,2],[0,3,3,0],[0,0,2,1]],[[0,1,2,1],[2,3,4,2],[0,3,3,0],[0,0,2,1]],[[0,1,3,1],[2,3,3,2],[0,3,3,0],[0,1,1,1]],[[0,1,2,2],[2,3,3,2],[0,3,3,0],[0,1,1,1]],[[0,1,2,1],[2,4,3,2],[0,3,3,0],[0,1,1,1]],[[0,1,2,1],[2,3,4,2],[0,3,3,0],[0,1,1,1]],[[0,1,3,1],[2,3,3,2],[0,3,3,0],[0,1,2,0]],[[0,1,2,2],[2,3,3,2],[0,3,3,0],[0,1,2,0]],[[0,1,2,1],[2,4,3,2],[0,3,3,0],[0,1,2,0]],[[0,1,2,1],[2,3,4,2],[0,3,3,0],[0,1,2,0]],[[0,1,3,1],[2,3,3,2],[0,3,3,0],[0,2,0,1]],[[0,1,2,2],[2,3,3,2],[0,3,3,0],[0,2,0,1]],[[0,1,2,1],[2,4,3,2],[0,3,3,0],[0,2,0,1]],[[0,1,2,1],[2,3,4,2],[0,3,3,0],[0,2,0,1]],[[0,1,3,1],[2,3,3,2],[0,3,3,0],[0,2,1,0]],[[0,1,2,2],[2,3,3,2],[0,3,3,0],[0,2,1,0]],[[0,1,2,1],[2,4,3,2],[0,3,3,0],[0,2,1,0]],[[0,1,2,1],[2,3,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,4,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[3,1,3,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,0],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,0],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,0],[1,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,0],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[3,1,3,0],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,0],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,0],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,0],[1,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,0],[1,3,2,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,2],[0,3,3,0],[1,2,0,0]],[[0,1,2,2],[2,3,3,2],[0,3,3,0],[1,2,0,0]],[[0,1,2,1],[3,3,3,2],[0,3,3,0],[1,2,0,0]],[[0,1,2,1],[2,4,3,2],[0,3,3,0],[1,2,0,0]],[[0,1,2,1],[2,3,4,2],[0,3,3,0],[1,2,0,0]],[[0,1,2,1],[2,3,3,2],[0,4,3,0],[1,2,0,0]],[[1,2,2,1],[2,1,4,0],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,0],[1,3,2,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,0],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,0],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,0],[1,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,0],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,4,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,0],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,0],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,0],[1,3,2,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,3,0],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,3,0],[1,3,2,1],[2,2,1,0]],[[1,2,2,1],[2,1,3,0],[1,4,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,4,0],[1,3,2,1],[1,1,1,1]],[[1,2,2,1],[3,1,3,0],[1,3,2,1],[1,1,1,1]],[[1,2,2,2],[2,1,3,0],[1,3,2,1],[1,1,1,1]],[[1,2,3,1],[2,1,3,0],[1,3,2,1],[1,1,1,1]],[[1,3,2,1],[2,1,3,0],[1,3,2,1],[1,1,1,1]],[[2,2,2,1],[2,1,3,0],[1,3,2,1],[1,1,1,1]],[[1,2,2,1],[2,1,4,0],[1,3,2,1],[1,0,2,1]],[[1,2,2,1],[3,1,3,0],[1,3,2,1],[1,0,2,1]],[[1,2,2,2],[2,1,3,0],[1,3,2,1],[1,0,2,1]],[[1,2,3,1],[2,1,3,0],[1,3,2,1],[1,0,2,1]],[[1,3,2,1],[2,1,3,0],[1,3,2,1],[1,0,2,1]],[[2,2,2,1],[2,1,3,0],[1,3,2,1],[1,0,2,1]],[[1,2,2,1],[2,1,4,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,1],[3,1,3,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,2],[2,1,3,0],[1,3,2,1],[0,2,1,1]],[[1,2,3,1],[2,1,3,0],[1,3,2,1],[0,2,1,1]],[[1,3,2,1],[2,1,3,0],[1,3,2,1],[0,2,1,1]],[[2,2,2,1],[2,1,3,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,1],[2,1,4,0],[1,3,2,1],[0,1,2,1]],[[1,2,2,1],[3,1,3,0],[1,3,2,1],[0,1,2,1]],[[1,2,2,2],[2,1,3,0],[1,3,2,1],[0,1,2,1]],[[1,2,3,1],[2,1,3,0],[1,3,2,1],[0,1,2,1]],[[1,3,2,1],[2,1,3,0],[1,3,2,1],[0,1,2,1]],[[2,2,2,1],[2,1,3,0],[1,3,2,1],[0,1,2,1]],[[1,2,2,1],[2,1,3,0],[1,3,2,0],[1,3,1,1]],[[1,2,2,1],[2,1,3,0],[1,3,2,0],[2,2,1,1]],[[1,2,2,1],[2,1,3,0],[1,4,2,0],[1,2,1,1]],[[1,2,2,1],[2,1,4,0],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,1,3,0],[1,3,1,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,0],[1,3,1,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,0],[1,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,0],[1,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,0],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,0],[1,3,1,2],[0,2,2,0]],[[1,2,2,1],[3,1,3,0],[1,3,1,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,0],[1,3,1,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,0],[1,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,1,3,0],[1,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,1,3,0],[1,3,1,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,0],[1,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,3,0],[1,3,1,1],[2,2,2,0]],[[1,2,2,1],[2,1,3,0],[1,4,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,4,0],[1,3,1,1],[1,1,2,1]],[[1,2,2,1],[3,1,3,0],[1,3,1,1],[1,1,2,1]],[[1,2,2,2],[2,1,3,0],[1,3,1,1],[1,1,2,1]],[[1,2,3,1],[2,1,3,0],[1,3,1,1],[1,1,2,1]],[[1,3,2,1],[2,1,3,0],[1,3,1,1],[1,1,2,1]],[[2,2,2,1],[2,1,3,0],[1,3,1,1],[1,1,2,1]],[[1,2,2,1],[2,1,4,0],[1,3,1,1],[0,2,2,1]],[[1,2,2,1],[3,1,3,0],[1,3,1,1],[0,2,2,1]],[[1,2,2,2],[2,1,3,0],[1,3,1,1],[0,2,2,1]],[[1,2,3,1],[2,1,3,0],[1,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,1,3,0],[1,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,1,3,0],[1,3,1,1],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[1,3,1,0],[1,2,3,1]],[[1,2,2,1],[2,1,3,0],[1,3,1,0],[1,3,2,1]],[[1,2,2,1],[2,1,3,0],[1,3,1,0],[2,2,2,1]],[[1,2,2,1],[2,1,3,0],[1,4,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,4,0],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,1,3,0],[1,3,0,2],[1,1,2,1]],[[1,2,2,2],[2,1,3,0],[1,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,1,3,0],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,1,3,0],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,1,3,0],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,4,0],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,1,3,0],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,3,0],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,3,0],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,1,3,0],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,3,0],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,3,0],[1,2,4,2],[1,1,1,0]],[[1,2,2,1],[2,1,4,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[3,1,3,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,1,3,0],[1,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,1,3,0],[1,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,1,3,0],[1,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,1,3,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,3,0],[1,2,3,2],[1,1,0,2]],[[1,2,2,1],[2,1,3,0],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,1,3,0],[1,2,4,2],[1,1,0,1]],[[1,2,2,1],[2,1,4,0],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[3,1,3,0],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,1,3,0],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,1,3,0],[1,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,1,3,0],[1,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,1,3,0],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,3,0],[1,2,3,2],[1,0,3,0]],[[1,2,2,1],[2,1,3,0],[1,2,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,3,0],[1,2,4,2],[1,0,2,0]],[[1,2,2,1],[2,1,4,0],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[3,1,3,0],[1,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,1,3,0],[1,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,3,0],[1,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,3,0],[1,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,3,0],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,3,0],[1,2,3,2],[1,0,1,2]],[[1,2,2,1],[2,1,3,0],[1,2,3,3],[1,0,1,1]],[[1,2,2,1],[2,1,3,0],[1,2,4,2],[1,0,1,1]],[[1,2,2,1],[2,1,4,0],[1,2,3,2],[1,0,1,1]],[[1,2,2,1],[3,1,3,0],[1,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,3,0],[1,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,1,3,0],[1,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,3,0],[1,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,3,0],[1,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,3,0],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[1,2,4,2],[0,2,1,0]],[[1,2,2,1],[2,1,4,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,1,3,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,2],[2,1,3,0],[1,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,1,3,0],[1,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,1,3,0],[1,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,1,3,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[1,2,3,2],[0,2,0,2]],[[1,2,2,1],[2,1,3,0],[1,2,3,3],[0,2,0,1]],[[1,2,2,1],[2,1,3,0],[1,2,4,2],[0,2,0,1]],[[1,2,2,1],[2,1,4,0],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[3,1,3,0],[1,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,1,3,0],[1,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,1,3,0],[1,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,1,3,0],[1,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,1,3,0],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,1,3,0],[1,2,3,2],[0,1,3,0]],[[1,2,2,1],[2,1,3,0],[1,2,3,3],[0,1,2,0]],[[1,2,2,1],[2,1,3,0],[1,2,4,2],[0,1,2,0]],[[1,2,2,1],[2,1,4,0],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[3,1,3,0],[1,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,3,0],[1,2,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,3,0],[1,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,3,0],[1,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,3,0],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,3,0],[1,2,3,2],[0,1,1,2]],[[1,2,2,1],[2,1,3,0],[1,2,3,3],[0,1,1,1]],[[1,2,2,1],[2,1,3,0],[1,2,4,2],[0,1,1,1]],[[1,2,2,1],[2,1,4,0],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[3,1,3,0],[1,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,3,0],[1,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,3,0],[1,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,3,0],[1,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,1,3,0],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,3,0],[1,2,3,2],[0,0,2,2]],[[1,2,2,1],[2,1,3,0],[1,2,3,3],[0,0,2,1]],[[1,2,2,1],[2,1,3,0],[1,2,4,2],[0,0,2,1]],[[1,2,2,1],[2,1,4,0],[1,2,3,2],[0,0,2,1]],[[1,2,2,1],[3,1,3,0],[1,2,3,2],[0,0,2,1]],[[1,2,2,2],[2,1,3,0],[1,2,3,2],[0,0,2,1]],[[1,2,3,1],[2,1,3,0],[1,2,3,2],[0,0,2,1]],[[1,3,2,1],[2,1,3,0],[1,2,3,2],[0,0,2,1]],[[2,2,2,1],[2,1,3,0],[1,2,3,2],[0,0,2,1]],[[0,1,3,1],[2,3,3,2],[1,0,0,2],[1,2,2,1]],[[0,1,2,2],[2,3,3,2],[1,0,0,2],[1,2,2,1]],[[0,1,2,1],[2,3,3,3],[1,0,0,2],[1,2,2,1]],[[0,1,3,1],[2,3,3,2],[1,0,1,2],[1,2,1,1]],[[0,1,2,2],[2,3,3,2],[1,0,1,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,3],[1,0,1,2],[1,2,1,1]],[[0,1,3,1],[2,3,3,2],[1,0,1,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,2],[1,0,1,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,3],[1,0,1,2],[1,2,2,0]],[[0,1,3,1],[2,3,3,2],[1,0,3,0],[1,2,1,1]],[[0,1,2,2],[2,3,3,2],[1,0,3,0],[1,2,1,1]],[[0,1,2,1],[2,3,4,2],[1,0,3,0],[1,2,1,1]],[[0,1,3,1],[2,3,3,2],[1,0,3,0],[1,2,2,0]],[[0,1,2,2],[2,3,3,2],[1,0,3,0],[1,2,2,0]],[[0,1,2,1],[3,3,3,2],[1,0,3,0],[1,2,2,0]],[[0,1,2,1],[2,4,3,2],[1,0,3,0],[1,2,2,0]],[[0,1,2,1],[2,3,4,2],[1,0,3,0],[1,2,2,0]],[[1,2,2,1],[2,1,3,0],[1,2,4,1],[1,1,1,1]],[[1,2,2,1],[2,1,4,0],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[3,1,3,0],[1,2,3,1],[1,1,1,1]],[[1,2,2,2],[2,1,3,0],[1,2,3,1],[1,1,1,1]],[[1,2,3,1],[2,1,3,0],[1,2,3,1],[1,1,1,1]],[[1,3,2,1],[2,1,3,0],[1,2,3,1],[1,1,1,1]],[[2,2,2,1],[2,1,3,0],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,3,0],[1,2,3,1],[1,0,2,2]],[[1,2,2,1],[2,1,3,0],[1,2,3,1],[1,0,3,1]],[[1,2,2,1],[2,1,3,0],[1,2,4,1],[1,0,2,1]],[[1,2,2,1],[2,1,4,0],[1,2,3,1],[1,0,2,1]],[[1,2,2,1],[3,1,3,0],[1,2,3,1],[1,0,2,1]],[[1,2,2,2],[2,1,3,0],[1,2,3,1],[1,0,2,1]],[[1,2,3,1],[2,1,3,0],[1,2,3,1],[1,0,2,1]],[[1,3,2,1],[2,1,3,0],[1,2,3,1],[1,0,2,1]],[[2,2,2,1],[2,1,3,0],[1,2,3,1],[1,0,2,1]],[[1,2,2,1],[2,1,3,0],[1,2,4,1],[0,2,1,1]],[[1,2,2,1],[2,1,4,0],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[3,1,3,0],[1,2,3,1],[0,2,1,1]],[[1,2,2,2],[2,1,3,0],[1,2,3,1],[0,2,1,1]],[[1,2,3,1],[2,1,3,0],[1,2,3,1],[0,2,1,1]],[[1,3,2,1],[2,1,3,0],[1,2,3,1],[0,2,1,1]],[[2,2,2,1],[2,1,3,0],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,3,0],[1,2,3,1],[0,1,2,2]],[[1,2,2,1],[2,1,3,0],[1,2,3,1],[0,1,3,1]],[[1,2,2,1],[2,1,3,0],[1,2,4,1],[0,1,2,1]],[[1,2,2,1],[2,1,4,0],[1,2,3,1],[0,1,2,1]],[[1,2,2,1],[3,1,3,0],[1,2,3,1],[0,1,2,1]],[[1,2,2,2],[2,1,3,0],[1,2,3,1],[0,1,2,1]],[[1,2,3,1],[2,1,3,0],[1,2,3,1],[0,1,2,1]],[[1,3,2,1],[2,1,3,0],[1,2,3,1],[0,1,2,1]],[[2,2,2,1],[2,1,3,0],[1,2,3,1],[0,1,2,1]],[[1,2,2,1],[2,1,3,0],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,3,0],[1,2,2,2],[1,0,3,1]],[[1,2,2,1],[2,1,3,0],[1,2,2,3],[1,0,2,1]],[[1,2,2,1],[2,1,3,0],[1,2,2,2],[0,1,2,2]],[[1,2,2,1],[2,1,3,0],[1,2,2,2],[0,1,3,1]],[[1,2,2,1],[2,1,3,0],[1,2,2,3],[0,1,2,1]],[[0,1,3,1],[2,3,3,2],[1,1,0,2],[0,2,2,1]],[[0,1,2,2],[2,3,3,2],[1,1,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,3,3],[1,1,0,2],[0,2,2,1]],[[0,1,3,1],[2,3,3,2],[1,1,1,2],[0,2,1,1]],[[0,1,2,2],[2,3,3,2],[1,1,1,2],[0,2,1,1]],[[0,1,2,1],[2,3,3,3],[1,1,1,2],[0,2,1,1]],[[0,1,3,1],[2,3,3,2],[1,1,1,2],[0,2,2,0]],[[0,1,2,2],[2,3,3,2],[1,1,1,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,3],[1,1,1,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,0],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,3,0],[1,1,3,2],[0,3,2,0]],[[1,2,2,1],[2,1,3,0],[1,1,3,3],[0,2,2,0]],[[1,2,2,1],[2,1,3,0],[1,1,4,2],[0,2,2,0]],[[1,2,2,1],[2,1,4,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[3,1,3,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,2],[2,1,3,0],[1,1,3,2],[0,2,2,0]],[[1,2,3,1],[2,1,3,0],[1,1,3,2],[0,2,2,0]],[[1,3,2,1],[2,1,3,0],[1,1,3,2],[0,2,2,0]],[[2,2,2,1],[2,1,3,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,3,0],[1,1,3,2],[0,2,1,2]],[[1,2,2,1],[2,1,3,0],[1,1,3,3],[0,2,1,1]],[[1,2,2,1],[2,1,3,0],[1,1,4,2],[0,2,1,1]],[[1,2,2,1],[2,1,4,0],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[3,1,3,0],[1,1,3,2],[0,2,1,1]],[[1,2,2,2],[2,1,3,0],[1,1,3,2],[0,2,1,1]],[[0,1,3,1],[2,3,3,2],[1,1,3,0],[0,2,1,1]],[[0,1,2,2],[2,3,3,2],[1,1,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,4,2],[1,1,3,0],[0,2,1,1]],[[0,1,3,1],[2,3,3,2],[1,1,3,0],[0,2,2,0]],[[0,1,2,2],[2,3,3,2],[1,1,3,0],[0,2,2,0]],[[0,1,2,1],[3,3,3,2],[1,1,3,0],[0,2,2,0]],[[0,1,2,1],[2,4,3,2],[1,1,3,0],[0,2,2,0]],[[0,1,2,1],[2,3,4,2],[1,1,3,0],[0,2,2,0]],[[1,2,3,1],[2,1,3,0],[1,1,3,2],[0,2,1,1]],[[1,3,2,1],[2,1,3,0],[1,1,3,2],[0,2,1,1]],[[2,2,2,1],[2,1,3,0],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,3,0],[1,1,3,1],[0,2,2,2]],[[1,2,2,1],[2,1,3,0],[1,1,3,1],[0,2,3,1]],[[1,2,2,1],[2,1,3,0],[1,1,3,1],[0,3,2,1]],[[1,2,2,1],[2,1,3,0],[1,1,4,1],[0,2,2,1]],[[1,2,2,1],[2,1,4,0],[1,1,3,1],[0,2,2,1]],[[1,2,2,1],[3,1,3,0],[1,1,3,1],[0,2,2,1]],[[1,2,2,2],[2,1,3,0],[1,1,3,1],[0,2,2,1]],[[1,2,3,1],[2,1,3,0],[1,1,3,1],[0,2,2,1]],[[1,3,2,1],[2,1,3,0],[1,1,3,1],[0,2,2,1]],[[2,2,2,1],[2,1,3,0],[1,1,3,1],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[1,1,2,2],[0,2,2,2]],[[1,2,2,1],[2,1,3,0],[1,1,2,2],[0,2,3,1]],[[1,2,2,1],[2,1,3,0],[1,1,2,2],[0,3,2,1]],[[1,2,2,1],[2,1,3,0],[1,1,2,3],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[1,0,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,3,0],[1,0,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,3,0],[1,0,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,3,0],[1,0,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,3,0],[1,0,4,2],[1,2,2,0]],[[1,2,2,1],[2,1,4,0],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[3,1,3,0],[1,0,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,0],[1,0,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,0],[1,0,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,0],[1,0,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,0],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,3,0],[1,0,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,3,0],[1,0,3,3],[1,2,1,1]],[[1,2,2,1],[2,1,3,0],[1,0,4,2],[1,2,1,1]],[[1,2,2,1],[2,1,4,0],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[3,1,3,0],[1,0,3,2],[1,2,1,1]],[[1,2,2,2],[2,1,3,0],[1,0,3,2],[1,2,1,1]],[[1,2,3,1],[2,1,3,0],[1,0,3,2],[1,2,1,1]],[[1,3,2,1],[2,1,3,0],[1,0,3,2],[1,2,1,1]],[[2,2,2,1],[2,1,3,0],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[2,1,3,0],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[2,1,3,0],[1,0,3,2],[0,2,3,1]],[[1,2,2,1],[2,1,3,0],[1,0,3,3],[0,2,2,1]],[[1,2,2,1],[2,1,3,0],[1,0,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,3,0],[1,0,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,3,0],[1,0,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,3,0],[1,0,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,3,0],[1,0,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,4,0],[1,0,3,1],[1,2,2,1]],[[1,2,2,1],[3,1,3,0],[1,0,3,1],[1,2,2,1]],[[1,2,2,2],[2,1,3,0],[1,0,3,1],[1,2,2,1]],[[1,2,3,1],[2,1,3,0],[1,0,3,1],[1,2,2,1]],[[1,3,2,1],[2,1,3,0],[1,0,3,1],[1,2,2,1]],[[2,2,2,1],[2,1,3,0],[1,0,3,1],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[1,0,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,3,0],[1,0,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,3,0],[1,0,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,3,0],[1,0,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,3,0],[1,0,2,3],[1,2,2,1]],[[1,2,2,1],[2,1,4,0],[0,3,3,2],[1,2,0,0]],[[1,2,2,1],[3,1,3,0],[0,3,3,2],[1,2,0,0]],[[1,2,2,2],[2,1,3,0],[0,3,3,2],[1,2,0,0]],[[1,2,3,1],[2,1,3,0],[0,3,3,2],[1,2,0,0]],[[1,3,2,1],[2,1,3,0],[0,3,3,2],[1,2,0,0]],[[2,2,2,1],[2,1,3,0],[0,3,3,2],[1,2,0,0]],[[0,1,3,1],[2,3,3,2],[1,2,0,2],[0,1,2,1]],[[0,1,2,2],[2,3,3,2],[1,2,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,3,3],[1,2,0,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,2],[1,2,0,2],[1,0,2,1]],[[0,1,2,2],[2,3,3,2],[1,2,0,2],[1,0,2,1]],[[0,1,2,1],[2,3,3,3],[1,2,0,2],[1,0,2,1]],[[0,1,3,1],[2,3,3,2],[1,2,1,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,2],[1,2,1,2],[0,0,2,1]],[[0,1,2,1],[2,3,3,3],[1,2,1,2],[0,0,2,1]],[[0,1,3,1],[2,3,3,2],[1,2,1,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,2],[1,2,1,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,3],[1,2,1,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,2],[1,2,1,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,2],[1,2,1,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,3],[1,2,1,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,2],[1,2,1,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,2],[1,2,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,3],[1,2,1,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,2],[1,2,1,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,2],[1,2,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,3],[1,2,1,2],[0,2,1,0]],[[0,1,3,1],[2,3,3,2],[1,2,1,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,2],[1,2,1,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,3],[1,2,1,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,2],[1,2,1,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,2],[1,2,1,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,3],[1,2,1,2],[1,0,2,0]],[[0,1,3,1],[2,3,3,2],[1,2,1,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,2],[1,2,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,3],[1,2,1,2],[1,1,0,1]],[[0,1,3,1],[2,3,3,2],[1,2,1,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,2],[1,2,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,3],[1,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,4,0],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[3,1,3,0],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[2,1,3,0],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,0],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,0],[0,3,2,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,0],[0,3,2,2],[1,2,1,0]],[[0,1,3,1],[2,3,3,2],[1,2,2,2],[0,1,0,1]],[[0,1,2,2],[2,3,3,2],[1,2,2,2],[0,1,0,1]],[[0,1,2,1],[2,3,3,3],[1,2,2,2],[0,1,0,1]],[[1,2,2,1],[2,1,4,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[3,1,3,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,0],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,0],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,0],[0,3,2,2],[1,2,0,1]],[[2,2,2,1],[2,1,3,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[2,1,4,0],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,1,3,0],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,0],[0,3,2,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,0],[0,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,0],[0,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,0],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,0],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[3,1,3,0],[0,3,2,2],[1,1,1,1]],[[1,2,2,2],[2,1,3,0],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,0],[0,3,2,2],[1,1,1,1]],[[1,3,2,1],[2,1,3,0],[0,3,2,2],[1,1,1,1]],[[2,2,2,1],[2,1,3,0],[0,3,2,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,2],[1,2,2,2],[1,0,0,1]],[[0,1,2,2],[2,3,3,2],[1,2,2,2],[1,0,0,1]],[[0,1,2,1],[2,3,3,3],[1,2,2,2],[1,0,0,1]],[[1,2,2,1],[2,1,4,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,1],[3,1,3,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,2],[2,1,3,0],[0,3,2,1],[1,2,1,1]],[[1,2,3,1],[2,1,3,0],[0,3,2,1],[1,2,1,1]],[[1,3,2,1],[2,1,3,0],[0,3,2,1],[1,2,1,1]],[[2,2,2,1],[2,1,3,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,1],[2,1,4,0],[0,3,2,1],[1,1,2,1]],[[1,2,2,1],[3,1,3,0],[0,3,2,1],[1,1,2,1]],[[1,2,2,2],[2,1,3,0],[0,3,2,1],[1,1,2,1]],[[1,2,3,1],[2,1,3,0],[0,3,2,1],[1,1,2,1]],[[1,3,2,1],[2,1,3,0],[0,3,2,1],[1,1,2,1]],[[2,2,2,1],[2,1,3,0],[0,3,2,1],[1,1,2,1]],[[1,2,2,1],[2,1,4,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,1],[3,1,3,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,0],[0,3,1,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,0],[0,3,1,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,0],[0,3,1,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,4,0],[0,3,1,1],[1,2,2,1]],[[1,2,2,1],[3,1,3,0],[0,3,1,1],[1,2,2,1]],[[1,2,2,2],[2,1,3,0],[0,3,1,1],[1,2,2,1]],[[1,2,3,1],[2,1,3,0],[0,3,1,1],[1,2,2,1]],[[1,3,2,1],[2,1,3,0],[0,3,1,1],[1,2,2,1]],[[2,2,2,1],[2,1,3,0],[0,3,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,4,0],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[3,1,3,0],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,3,0],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,3,0],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,3,0],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,3,0],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[2,1,3,0],[0,2,4,2],[1,2,1,0]],[[1,2,2,1],[2,1,4,0],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[3,1,3,0],[0,2,3,2],[1,2,1,0]],[[1,2,2,2],[2,1,3,0],[0,2,3,2],[1,2,1,0]],[[1,2,3,1],[2,1,3,0],[0,2,3,2],[1,2,1,0]],[[1,3,2,1],[2,1,3,0],[0,2,3,2],[1,2,1,0]],[[2,2,2,1],[2,1,3,0],[0,2,3,2],[1,2,1,0]],[[0,1,3,1],[2,3,3,2],[1,2,3,0],[0,0,2,1]],[[0,1,2,2],[2,3,3,2],[1,2,3,0],[0,0,2,1]],[[0,1,2,1],[2,3,4,2],[1,2,3,0],[0,0,2,1]],[[0,1,3,1],[2,3,3,2],[1,2,3,0],[0,1,1,1]],[[0,1,2,2],[2,3,3,2],[1,2,3,0],[0,1,1,1]],[[0,1,2,1],[3,3,3,2],[1,2,3,0],[0,1,1,1]],[[0,1,2,1],[2,4,3,2],[1,2,3,0],[0,1,1,1]],[[0,1,2,1],[2,3,4,2],[1,2,3,0],[0,1,1,1]],[[0,1,3,1],[2,3,3,2],[1,2,3,0],[0,1,2,0]],[[0,1,2,2],[2,3,3,2],[1,2,3,0],[0,1,2,0]],[[0,1,2,1],[3,3,3,2],[1,2,3,0],[0,1,2,0]],[[0,1,2,1],[2,4,3,2],[1,2,3,0],[0,1,2,0]],[[0,1,2,1],[2,3,4,2],[1,2,3,0],[0,1,2,0]],[[0,1,3,1],[2,3,3,2],[1,2,3,0],[0,2,0,1]],[[0,1,2,2],[2,3,3,2],[1,2,3,0],[0,2,0,1]],[[0,1,2,1],[3,3,3,2],[1,2,3,0],[0,2,0,1]],[[0,1,2,1],[2,4,3,2],[1,2,3,0],[0,2,0,1]],[[0,1,2,1],[2,3,4,2],[1,2,3,0],[0,2,0,1]],[[0,1,3,1],[2,3,3,2],[1,2,3,0],[0,2,1,0]],[[0,1,2,2],[2,3,3,2],[1,2,3,0],[0,2,1,0]],[[0,1,2,1],[3,3,3,2],[1,2,3,0],[0,2,1,0]],[[0,1,2,1],[2,4,3,2],[1,2,3,0],[0,2,1,0]],[[0,1,2,1],[2,3,4,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,3,0],[0,2,3,2],[1,2,0,2]],[[1,2,2,1],[2,1,3,0],[0,2,3,3],[1,2,0,1]],[[1,2,2,1],[2,1,3,0],[0,2,4,2],[1,2,0,1]],[[1,2,2,1],[2,1,4,0],[0,2,3,2],[1,2,0,1]],[[1,2,2,1],[3,1,3,0],[0,2,3,2],[1,2,0,1]],[[1,2,2,2],[2,1,3,0],[0,2,3,2],[1,2,0,1]],[[1,2,3,1],[2,1,3,0],[0,2,3,2],[1,2,0,1]],[[1,3,2,1],[2,1,3,0],[0,2,3,2],[1,2,0,1]],[[2,2,2,1],[2,1,3,0],[0,2,3,2],[1,2,0,1]],[[0,1,3,1],[2,3,3,2],[1,2,3,0],[1,0,1,1]],[[0,1,2,2],[2,3,3,2],[1,2,3,0],[1,0,1,1]],[[0,1,2,1],[3,3,3,2],[1,2,3,0],[1,0,1,1]],[[0,1,2,1],[2,4,3,2],[1,2,3,0],[1,0,1,1]],[[0,1,2,1],[2,3,4,2],[1,2,3,0],[1,0,1,1]],[[0,1,3,1],[2,3,3,2],[1,2,3,0],[1,0,2,0]],[[0,1,2,2],[2,3,3,2],[1,2,3,0],[1,0,2,0]],[[0,1,2,1],[3,3,3,2],[1,2,3,0],[1,0,2,0]],[[0,1,2,1],[2,4,3,2],[1,2,3,0],[1,0,2,0]],[[0,1,2,1],[2,3,4,2],[1,2,3,0],[1,0,2,0]],[[0,1,3,1],[2,3,3,2],[1,2,3,0],[1,1,0,1]],[[0,1,2,2],[2,3,3,2],[1,2,3,0],[1,1,0,1]],[[0,1,2,1],[3,3,3,2],[1,2,3,0],[1,1,0,1]],[[0,1,2,1],[2,4,3,2],[1,2,3,0],[1,1,0,1]],[[0,1,2,1],[2,3,4,2],[1,2,3,0],[1,1,0,1]],[[0,1,3,1],[2,3,3,2],[1,2,3,0],[1,1,1,0]],[[0,1,2,2],[2,3,3,2],[1,2,3,0],[1,1,1,0]],[[0,1,2,1],[3,3,3,2],[1,2,3,0],[1,1,1,0]],[[0,1,2,1],[2,4,3,2],[1,2,3,0],[1,1,1,0]],[[0,1,2,1],[2,3,4,2],[1,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,1,3,0],[0,2,3,2],[1,1,3,0]],[[1,2,2,1],[2,1,3,0],[0,2,3,3],[1,1,2,0]],[[1,2,2,1],[2,1,3,0],[0,2,4,2],[1,1,2,0]],[[1,2,2,1],[2,1,4,0],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[3,1,3,0],[0,2,3,2],[1,1,2,0]],[[1,2,2,2],[2,1,3,0],[0,2,3,2],[1,1,2,0]],[[1,2,3,1],[2,1,3,0],[0,2,3,2],[1,1,2,0]],[[1,3,2,1],[2,1,3,0],[0,2,3,2],[1,1,2,0]],[[2,2,2,1],[2,1,3,0],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,3,0],[0,2,3,2],[1,1,1,2]],[[1,2,2,1],[2,1,3,0],[0,2,3,3],[1,1,1,1]],[[1,2,2,1],[2,1,3,0],[0,2,4,2],[1,1,1,1]],[[1,2,2,1],[2,1,4,0],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[3,1,3,0],[0,2,3,2],[1,1,1,1]],[[1,2,2,2],[2,1,3,0],[0,2,3,2],[1,1,1,1]],[[1,2,3,1],[2,1,3,0],[0,2,3,2],[1,1,1,1]],[[1,3,2,1],[2,1,3,0],[0,2,3,2],[1,1,1,1]],[[2,2,2,1],[2,1,3,0],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,3,0],[0,2,3,2],[1,0,2,2]],[[1,2,2,1],[2,1,3,0],[0,2,3,3],[1,0,2,1]],[[1,2,2,1],[2,1,3,0],[0,2,4,2],[1,0,2,1]],[[1,2,2,1],[2,1,4,0],[0,2,3,2],[1,0,2,1]],[[1,2,2,2],[2,1,3,0],[0,2,3,2],[1,0,2,1]],[[1,2,3,1],[2,1,3,0],[0,2,3,2],[1,0,2,1]],[[1,3,2,1],[2,1,3,0],[0,2,3,2],[1,0,2,1]],[[2,2,2,1],[2,1,3,0],[0,2,3,2],[1,0,2,1]],[[1,2,2,1],[2,1,3,0],[0,2,4,1],[1,2,1,1]],[[1,2,2,1],[2,1,4,0],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[3,1,3,0],[0,2,3,1],[1,2,1,1]],[[1,2,2,2],[2,1,3,0],[0,2,3,1],[1,2,1,1]],[[1,2,3,1],[2,1,3,0],[0,2,3,1],[1,2,1,1]],[[1,3,2,1],[2,1,3,0],[0,2,3,1],[1,2,1,1]],[[2,2,2,1],[2,1,3,0],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,3,0],[0,2,3,1],[1,1,2,2]],[[1,2,2,1],[2,1,3,0],[0,2,3,1],[1,1,3,1]],[[1,2,2,1],[2,1,3,0],[0,2,4,1],[1,1,2,1]],[[1,2,2,1],[2,1,4,0],[0,2,3,1],[1,1,2,1]],[[1,2,2,1],[3,1,3,0],[0,2,3,1],[1,1,2,1]],[[1,2,2,2],[2,1,3,0],[0,2,3,1],[1,1,2,1]],[[1,2,3,1],[2,1,3,0],[0,2,3,1],[1,1,2,1]],[[1,3,2,1],[2,1,3,0],[0,2,3,1],[1,1,2,1]],[[2,2,2,1],[2,1,3,0],[0,2,3,1],[1,1,2,1]],[[1,2,2,1],[2,1,3,0],[0,2,2,2],[1,1,2,2]],[[1,2,2,1],[2,1,3,0],[0,2,2,2],[1,1,3,1]],[[1,2,2,1],[2,1,3,0],[0,2,2,3],[1,1,2,1]],[[1,2,2,1],[2,1,3,0],[0,1,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,3,0],[0,1,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,3,0],[0,1,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,3,0],[0,1,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,3,0],[0,1,4,2],[1,2,2,0]],[[1,2,2,1],[2,1,4,0],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[3,1,3,0],[0,1,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,3,0],[0,1,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,3,0],[0,1,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,3,0],[0,1,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,3,0],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,3,0],[0,1,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,3,0],[0,1,3,3],[1,2,1,1]],[[1,2,2,1],[2,1,3,0],[0,1,4,2],[1,2,1,1]],[[1,2,2,1],[2,1,4,0],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[3,1,3,0],[0,1,3,2],[1,2,1,1]],[[1,2,2,2],[2,1,3,0],[0,1,3,2],[1,2,1,1]],[[1,2,3,1],[2,1,3,0],[0,1,3,2],[1,2,1,1]],[[1,3,2,1],[2,1,3,0],[0,1,3,2],[1,2,1,1]],[[2,2,2,1],[2,1,3,0],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[2,1,3,0],[0,1,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,3,0],[0,1,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,3,0],[0,1,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,3,0],[0,1,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,3,0],[0,1,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,4,0],[0,1,3,1],[1,2,2,1]],[[1,2,2,1],[3,1,3,0],[0,1,3,1],[1,2,2,1]],[[1,2,2,2],[2,1,3,0],[0,1,3,1],[1,2,2,1]],[[1,2,3,1],[2,1,3,0],[0,1,3,1],[1,2,2,1]],[[1,3,2,1],[2,1,3,0],[0,1,3,1],[1,2,2,1]],[[2,2,2,1],[2,1,3,0],[0,1,3,1],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[0,1,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,3,0],[0,1,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,3,0],[0,1,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,3,0],[0,1,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,3,0],[0,1,2,3],[1,2,2,1]],[[1,2,2,1],[2,1,3,0],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,1,3,0],[0,0,3,2],[1,2,3,1]],[[1,2,2,1],[2,1,3,0],[0,0,3,3],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[2,1,2,3],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[3,1,2,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,2],[2,1,2,2],[2,3,3,1],[1,0,0,0]],[[1,2,3,1],[2,1,2,2],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[2,1,2,2],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[2,1,2,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[2,1,2,2],[2,3,3,0],[2,1,0,0]],[[1,2,2,1],[2,1,2,2],[2,4,3,0],[1,1,0,0]],[[1,2,2,1],[2,1,2,2],[3,3,3,0],[1,1,0,0]],[[1,2,2,1],[3,1,2,2],[2,3,3,0],[1,1,0,0]],[[1,2,2,2],[2,1,2,2],[2,3,3,0],[1,1,0,0]],[[1,2,3,1],[2,1,2,2],[2,3,3,0],[1,1,0,0]],[[1,3,2,1],[2,1,2,2],[2,3,3,0],[1,1,0,0]],[[2,2,2,1],[2,1,2,2],[2,3,3,0],[1,1,0,0]],[[1,2,2,1],[2,1,2,2],[2,4,3,0],[0,2,0,0]],[[1,2,2,1],[2,1,2,2],[3,3,3,0],[0,2,0,0]],[[1,2,2,1],[3,1,2,2],[2,3,3,0],[0,2,0,0]],[[1,2,2,2],[2,1,2,2],[2,3,3,0],[0,2,0,0]],[[1,2,3,1],[2,1,2,2],[2,3,3,0],[0,2,0,0]],[[1,3,2,1],[2,1,2,2],[2,3,3,0],[0,2,0,0]],[[2,2,2,1],[2,1,2,2],[2,3,3,0],[0,2,0,0]],[[1,2,2,1],[2,1,2,2],[3,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,1,2,3],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[3,1,2,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,2],[2,1,2,2],[2,3,2,1],[1,0,1,0]],[[1,2,3,1],[2,1,2,2],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[2,1,2,2],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[2,1,2,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[2,1,2,2],[3,3,2,1],[1,0,0,1]],[[1,2,2,1],[2,1,2,3],[2,3,2,1],[1,0,0,1]],[[1,2,2,1],[3,1,2,2],[2,3,2,1],[1,0,0,1]],[[1,2,2,2],[2,1,2,2],[2,3,2,1],[1,0,0,1]],[[1,2,3,1],[2,1,2,2],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[2,1,2,2],[2,3,2,1],[1,0,0,1]],[[2,2,2,1],[2,1,2,2],[2,3,2,1],[1,0,0,1]],[[0,1,3,1],[2,3,3,2],[1,3,0,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,2],[1,3,0,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,3],[1,3,0,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,2],[1,3,0,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,2],[1,3,0,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,3],[1,3,0,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,2],[1,3,0,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,2],[1,3,0,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,3],[1,3,0,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,2],[1,3,0,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,2],[1,3,0,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,3],[1,3,0,2],[0,2,1,0]],[[0,1,3,1],[2,3,3,2],[1,3,0,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,2],[1,3,0,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,3],[1,3,0,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,2],[1,3,0,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,2],[1,3,0,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,3],[1,3,0,2],[1,0,2,0]],[[0,1,3,1],[2,3,3,2],[1,3,0,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,2],[1,3,0,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,3],[1,3,0,2],[1,1,0,1]],[[0,1,3,1],[2,3,3,2],[1,3,0,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,2],[1,3,0,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,3],[1,3,0,2],[1,1,1,0]],[[0,1,3,1],[2,3,3,2],[1,3,0,2],[1,2,0,0]],[[0,1,2,2],[2,3,3,2],[1,3,0,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,3],[1,3,0,2],[1,2,0,0]],[[1,2,2,1],[2,1,2,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[2,1,2,2],[2,4,2,0],[1,2,0,0]],[[1,2,2,1],[2,1,2,2],[3,3,2,0],[1,2,0,0]],[[1,2,2,1],[3,1,2,2],[2,3,2,0],[1,2,0,0]],[[1,2,2,2],[2,1,2,2],[2,3,2,0],[1,2,0,0]],[[1,2,3,1],[2,1,2,2],[2,3,2,0],[1,2,0,0]],[[1,3,2,1],[2,1,2,2],[2,3,2,0],[1,2,0,0]],[[2,2,2,1],[2,1,2,2],[2,3,2,0],[1,2,0,0]],[[0,1,3,1],[2,3,3,2],[1,3,1,0],[0,2,2,0]],[[0,1,2,2],[2,3,3,2],[1,3,1,0],[0,2,2,0]],[[0,1,2,1],[3,3,3,2],[1,3,1,0],[0,2,2,0]],[[0,1,2,1],[2,4,3,2],[1,3,1,0],[0,2,2,0]],[[0,1,2,1],[2,3,4,2],[1,3,1,0],[0,2,2,0]],[[0,1,2,1],[2,3,3,2],[1,4,1,0],[0,2,2,0]],[[0,1,2,1],[2,3,3,2],[1,3,1,0],[0,3,2,0]],[[0,1,3,1],[2,3,3,2],[1,3,1,0],[1,1,2,0]],[[0,1,2,2],[2,3,3,2],[1,3,1,0],[1,1,2,0]],[[0,1,2,1],[3,3,3,2],[1,3,1,0],[1,1,2,0]],[[0,1,2,1],[2,4,3,2],[1,3,1,0],[1,1,2,0]],[[0,1,2,1],[2,3,4,2],[1,3,1,0],[1,1,2,0]],[[0,1,2,1],[2,3,3,2],[1,4,1,0],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[2,3,2,0],[2,1,1,0]],[[1,2,2,1],[2,1,2,2],[2,4,2,0],[1,1,1,0]],[[1,2,2,1],[2,1,2,2],[3,3,2,0],[1,1,1,0]],[[1,2,2,1],[3,1,2,2],[2,3,2,0],[1,1,1,0]],[[1,2,2,2],[2,1,2,2],[2,3,2,0],[1,1,1,0]],[[1,2,3,1],[2,1,2,2],[2,3,2,0],[1,1,1,0]],[[1,3,2,1],[2,1,2,2],[2,3,2,0],[1,1,1,0]],[[2,2,2,1],[2,1,2,2],[2,3,2,0],[1,1,1,0]],[[1,2,2,1],[2,1,2,2],[2,3,2,0],[2,1,0,1]],[[1,2,2,1],[2,1,2,2],[2,4,2,0],[1,1,0,1]],[[1,2,2,1],[2,1,2,2],[3,3,2,0],[1,1,0,1]],[[1,2,2,1],[3,1,2,2],[2,3,2,0],[1,1,0,1]],[[1,2,2,2],[2,1,2,2],[2,3,2,0],[1,1,0,1]],[[1,2,3,1],[2,1,2,2],[2,3,2,0],[1,1,0,1]],[[1,3,2,1],[2,1,2,2],[2,3,2,0],[1,1,0,1]],[[2,2,2,1],[2,1,2,2],[2,3,2,0],[1,1,0,1]],[[1,2,2,1],[2,1,2,2],[2,3,2,0],[2,0,2,0]],[[1,2,2,1],[2,1,2,2],[2,4,2,0],[1,0,2,0]],[[1,2,2,1],[2,1,2,2],[3,3,2,0],[1,0,2,0]],[[1,2,2,1],[3,1,2,2],[2,3,2,0],[1,0,2,0]],[[1,2,2,2],[2,1,2,2],[2,3,2,0],[1,0,2,0]],[[1,2,3,1],[2,1,2,2],[2,3,2,0],[1,0,2,0]],[[1,3,2,1],[2,1,2,2],[2,3,2,0],[1,0,2,0]],[[2,2,2,1],[2,1,2,2],[2,3,2,0],[1,0,2,0]],[[0,1,3,1],[2,3,3,2],[1,3,1,2],[0,0,1,1]],[[0,1,2,2],[2,3,3,2],[1,3,1,2],[0,0,1,1]],[[0,1,2,1],[2,3,3,3],[1,3,1,2],[0,0,1,1]],[[0,1,3,1],[2,3,3,2],[1,3,1,2],[0,0,2,0]],[[0,1,2,2],[2,3,3,2],[1,3,1,2],[0,0,2,0]],[[0,1,2,1],[2,3,3,3],[1,3,1,2],[0,0,2,0]],[[1,2,2,1],[2,1,2,2],[2,3,2,0],[0,3,1,0]],[[1,2,2,1],[2,1,2,2],[2,4,2,0],[0,2,1,0]],[[1,2,2,1],[2,1,2,2],[3,3,2,0],[0,2,1,0]],[[1,2,2,1],[3,1,2,2],[2,3,2,0],[0,2,1,0]],[[1,2,2,2],[2,1,2,2],[2,3,2,0],[0,2,1,0]],[[1,2,3,1],[2,1,2,2],[2,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,1,2,2],[2,3,2,0],[0,2,1,0]],[[2,2,2,1],[2,1,2,2],[2,3,2,0],[0,2,1,0]],[[1,2,2,1],[2,1,2,2],[2,4,2,0],[0,2,0,1]],[[1,2,2,1],[2,1,2,2],[3,3,2,0],[0,2,0,1]],[[1,2,2,1],[3,1,2,2],[2,3,2,0],[0,2,0,1]],[[1,2,2,2],[2,1,2,2],[2,3,2,0],[0,2,0,1]],[[1,2,3,1],[2,1,2,2],[2,3,2,0],[0,2,0,1]],[[1,3,2,1],[2,1,2,2],[2,3,2,0],[0,2,0,1]],[[2,2,2,1],[2,1,2,2],[2,3,2,0],[0,2,0,1]],[[1,2,2,1],[2,1,2,2],[2,4,2,0],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,3,2,0],[0,1,2,0]],[[1,2,2,1],[3,1,2,2],[2,3,2,0],[0,1,2,0]],[[1,2,2,2],[2,1,2,2],[2,3,2,0],[0,1,2,0]],[[1,2,3,1],[2,1,2,2],[2,3,2,0],[0,1,2,0]],[[1,3,2,1],[2,1,2,2],[2,3,2,0],[0,1,2,0]],[[2,2,2,1],[2,1,2,2],[2,3,2,0],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,1,2,3],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[3,1,2,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,2],[2,1,2,2],[2,3,1,2],[1,0,1,0]],[[1,2,3,1],[2,1,2,2],[2,3,1,2],[1,0,1,0]],[[1,3,2,1],[2,1,2,2],[2,3,1,2],[1,0,1,0]],[[2,2,2,1],[2,1,2,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,1,2,2],[2,3,1,3],[1,0,0,1]],[[1,2,2,1],[2,1,2,2],[3,3,1,2],[1,0,0,1]],[[1,2,2,1],[2,1,2,3],[2,3,1,2],[1,0,0,1]],[[1,2,2,1],[3,1,2,2],[2,3,1,2],[1,0,0,1]],[[1,2,2,2],[2,1,2,2],[2,3,1,2],[1,0,0,1]],[[1,2,3,1],[2,1,2,2],[2,3,1,2],[1,0,0,1]],[[1,3,2,1],[2,1,2,2],[2,3,1,2],[1,0,0,1]],[[2,2,2,1],[2,1,2,2],[2,3,1,2],[1,0,0,1]],[[0,1,3,1],[2,3,3,2],[1,3,2,0],[0,1,1,1]],[[0,1,2,2],[2,3,3,2],[1,3,2,0],[0,1,1,1]],[[0,1,2,1],[3,3,3,2],[1,3,2,0],[0,1,1,1]],[[0,1,2,1],[2,4,3,2],[1,3,2,0],[0,1,1,1]],[[0,1,2,1],[2,3,4,2],[1,3,2,0],[0,1,1,1]],[[0,1,3,1],[2,3,3,2],[1,3,2,0],[0,1,2,0]],[[0,1,2,2],[2,3,3,2],[1,3,2,0],[0,1,2,0]],[[0,1,2,1],[3,3,3,2],[1,3,2,0],[0,1,2,0]],[[0,1,2,1],[2,4,3,2],[1,3,2,0],[0,1,2,0]],[[0,1,2,1],[2,3,4,2],[1,3,2,0],[0,1,2,0]],[[0,1,2,1],[2,3,3,2],[1,4,2,0],[0,1,2,0]],[[0,1,3,1],[2,3,3,2],[1,3,2,0],[0,2,0,1]],[[0,1,2,2],[2,3,3,2],[1,3,2,0],[0,2,0,1]],[[0,1,2,1],[3,3,3,2],[1,3,2,0],[0,2,0,1]],[[0,1,2,1],[2,4,3,2],[1,3,2,0],[0,2,0,1]],[[0,1,2,1],[2,3,4,2],[1,3,2,0],[0,2,0,1]],[[0,1,2,1],[2,3,3,2],[1,4,2,0],[0,2,0,1]],[[0,1,3,1],[2,3,3,2],[1,3,2,0],[0,2,1,0]],[[0,1,2,2],[2,3,3,2],[1,3,2,0],[0,2,1,0]],[[0,1,2,1],[3,3,3,2],[1,3,2,0],[0,2,1,0]],[[0,1,2,1],[2,4,3,2],[1,3,2,0],[0,2,1,0]],[[0,1,2,1],[2,3,4,2],[1,3,2,0],[0,2,1,0]],[[0,1,2,1],[2,3,3,2],[1,4,2,0],[0,2,1,0]],[[0,1,2,1],[2,3,3,2],[1,3,2,0],[0,3,1,0]],[[0,1,3,1],[2,3,3,2],[1,3,2,0],[1,0,1,1]],[[0,1,2,2],[2,3,3,2],[1,3,2,0],[1,0,1,1]],[[0,1,2,1],[3,3,3,2],[1,3,2,0],[1,0,1,1]],[[0,1,2,1],[2,4,3,2],[1,3,2,0],[1,0,1,1]],[[0,1,2,1],[2,3,4,2],[1,3,2,0],[1,0,1,1]],[[0,1,3,1],[2,3,3,2],[1,3,2,0],[1,0,2,0]],[[0,1,2,2],[2,3,3,2],[1,3,2,0],[1,0,2,0]],[[0,1,2,1],[3,3,3,2],[1,3,2,0],[1,0,2,0]],[[0,1,2,1],[2,4,3,2],[1,3,2,0],[1,0,2,0]],[[0,1,2,1],[2,3,4,2],[1,3,2,0],[1,0,2,0]],[[0,1,2,1],[2,3,3,2],[1,4,2,0],[1,0,2,0]],[[0,1,3,1],[2,3,3,2],[1,3,2,0],[1,1,0,1]],[[0,1,2,2],[2,3,3,2],[1,3,2,0],[1,1,0,1]],[[0,1,2,1],[3,3,3,2],[1,3,2,0],[1,1,0,1]],[[0,1,2,1],[2,4,3,2],[1,3,2,0],[1,1,0,1]],[[0,1,2,1],[2,3,4,2],[1,3,2,0],[1,1,0,1]],[[0,1,2,1],[2,3,3,2],[1,4,2,0],[1,1,0,1]],[[0,1,3,1],[2,3,3,2],[1,3,2,0],[1,1,1,0]],[[0,1,2,2],[2,3,3,2],[1,3,2,0],[1,1,1,0]],[[0,1,2,1],[3,3,3,2],[1,3,2,0],[1,1,1,0]],[[0,1,2,1],[2,4,3,2],[1,3,2,0],[1,1,1,0]],[[0,1,2,1],[2,3,4,2],[1,3,2,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,2],[1,4,2,0],[1,1,1,0]],[[0,1,3,1],[2,3,3,2],[1,3,2,0],[1,2,0,0]],[[0,1,2,2],[2,3,3,2],[1,3,2,0],[1,2,0,0]],[[0,1,2,1],[3,3,3,2],[1,3,2,0],[1,2,0,0]],[[0,1,2,1],[2,4,3,2],[1,3,2,0],[1,2,0,0]],[[0,1,2,1],[2,3,4,2],[1,3,2,0],[1,2,0,0]],[[0,1,2,1],[2,3,3,2],[1,4,2,0],[1,2,0,0]],[[1,2,2,1],[2,1,2,2],[2,3,1,0],[2,1,2,0]],[[1,2,2,1],[2,1,2,2],[2,4,1,0],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,3,1,0],[1,1,2,0]],[[1,2,2,1],[3,1,2,2],[2,3,1,0],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[2,3,1,0],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[2,3,1,0],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[2,3,1,0],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[2,3,1,0],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[2,3,1,0],[0,3,2,0]],[[1,2,2,1],[2,1,2,2],[2,4,1,0],[0,2,2,0]],[[1,2,2,1],[2,1,2,2],[3,3,1,0],[0,2,2,0]],[[1,2,2,1],[3,1,2,2],[2,3,1,0],[0,2,2,0]],[[1,2,2,2],[2,1,2,2],[2,3,1,0],[0,2,2,0]],[[1,2,3,1],[2,1,2,2],[2,3,1,0],[0,2,2,0]],[[1,3,2,1],[2,1,2,2],[2,3,1,0],[0,2,2,0]],[[2,2,2,1],[2,1,2,2],[2,3,1,0],[0,2,2,0]],[[0,1,3,1],[2,3,3,2],[1,3,2,2],[0,0,0,1]],[[0,1,2,2],[2,3,3,2],[1,3,2,2],[0,0,0,1]],[[0,1,2,1],[2,3,3,3],[1,3,2,2],[0,0,0,1]],[[1,2,2,1],[2,1,2,2],[2,3,0,0],[1,3,2,0]],[[1,2,2,1],[2,1,2,2],[2,3,0,0],[2,2,2,0]],[[1,2,2,1],[2,1,2,2],[3,3,0,0],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[2,3,0,0],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[2,3,0,0],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[2,3,0,0],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[2,3,0,0],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[2,3,0,0],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[2,2,3,1],[2,1,0,0]],[[1,2,2,1],[2,1,2,2],[3,2,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,2,3],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[3,1,2,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,2],[2,1,2,2],[2,2,3,1],[1,1,0,0]],[[1,2,3,1],[2,1,2,2],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[2,1,2,2],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[2,1,2,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,2,2],[3,2,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,2,3],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[3,1,2,2],[2,2,3,1],[0,2,0,0]],[[1,2,2,2],[2,1,2,2],[2,2,3,1],[0,2,0,0]],[[1,2,3,1],[2,1,2,2],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[2,1,2,2],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[2,1,2,2],[2,2,3,1],[0,2,0,0]],[[0,1,3,1],[2,3,3,2],[1,3,3,0],[0,0,1,1]],[[0,1,2,2],[2,3,3,2],[1,3,3,0],[0,0,1,1]],[[0,1,2,1],[3,3,3,2],[1,3,3,0],[0,0,1,1]],[[0,1,2,1],[2,4,3,2],[1,3,3,0],[0,0,1,1]],[[0,1,2,1],[2,3,4,2],[1,3,3,0],[0,0,1,1]],[[0,1,3,1],[2,3,3,2],[1,3,3,0],[0,0,2,0]],[[0,1,2,2],[2,3,3,2],[1,3,3,0],[0,0,2,0]],[[0,1,2,1],[3,3,3,2],[1,3,3,0],[0,0,2,0]],[[0,1,2,1],[2,4,3,2],[1,3,3,0],[0,0,2,0]],[[0,1,2,1],[2,3,4,2],[1,3,3,0],[0,0,2,0]],[[0,1,3,1],[2,3,3,2],[1,3,3,0],[0,2,0,0]],[[0,1,2,2],[2,3,3,2],[1,3,3,0],[0,2,0,0]],[[0,1,2,1],[3,3,3,2],[1,3,3,0],[0,2,0,0]],[[0,1,2,1],[2,4,3,2],[1,3,3,0],[0,2,0,0]],[[0,1,2,1],[2,3,4,2],[1,3,3,0],[0,2,0,0]],[[0,1,2,1],[2,3,3,2],[1,4,3,0],[0,2,0,0]],[[0,1,3,1],[2,3,3,2],[1,3,3,0],[1,1,0,0]],[[0,1,2,2],[2,3,3,2],[1,3,3,0],[1,1,0,0]],[[0,1,2,1],[3,3,3,2],[1,3,3,0],[1,1,0,0]],[[0,1,2,1],[2,4,3,2],[1,3,3,0],[1,1,0,0]],[[0,1,2,1],[2,3,4,2],[1,3,3,0],[1,1,0,0]],[[0,1,2,1],[2,3,3,2],[1,4,3,0],[1,1,0,0]],[[1,2,2,1],[2,1,2,2],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[2,1,2,2],[3,2,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,2,3],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[3,1,2,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,2],[2,1,2,2],[2,2,2,1],[1,2,0,0]],[[1,2,3,1],[2,1,2,2],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[2,1,2,2],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[2,1,2,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,2,2],[2,2,2,1],[2,1,1,0]],[[1,2,2,1],[2,1,2,2],[3,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,2,3],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[3,1,2,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,2],[2,1,2,2],[2,2,2,1],[1,1,1,0]],[[1,2,3,1],[2,1,2,2],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[2,1,2,2],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[2,1,2,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,2,2],[2,2,2,1],[2,1,0,1]],[[1,2,2,1],[2,1,2,2],[3,2,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,2,3],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[3,1,2,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,2],[2,1,2,2],[2,2,2,1],[1,1,0,1]],[[1,2,3,1],[2,1,2,2],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[2,1,2,2],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[2,1,2,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,2,2],[2,2,2,1],[2,0,2,0]],[[1,2,2,1],[2,1,2,2],[3,2,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,2,3],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[3,1,2,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,2],[2,1,2,2],[2,2,2,1],[1,0,2,0]],[[1,2,3,1],[2,1,2,2],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[2,1,2,2],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[2,1,2,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,2,2],[2,2,2,1],[2,0,1,1]],[[1,2,2,1],[2,1,2,2],[3,2,2,1],[1,0,1,1]],[[1,2,2,1],[2,1,2,3],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[3,1,2,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,2],[2,1,2,2],[2,2,2,1],[1,0,1,1]],[[1,2,3,1],[2,1,2,2],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[2,1,2,2],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[2,1,2,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[2,1,2,2],[3,2,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,2,3],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[3,1,2,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,2],[2,1,2,2],[2,2,2,1],[0,2,1,0]],[[1,2,3,1],[2,1,2,2],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[2,1,2,2],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[2,1,2,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,2,2],[3,2,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,2,3],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[3,1,2,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,2],[2,1,2,2],[2,2,2,1],[0,2,0,1]],[[1,2,3,1],[2,1,2,2],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[2,1,2,2],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[2,1,2,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,2,2],[3,2,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,2,3],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[3,1,2,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,2],[2,1,2,2],[2,2,2,1],[0,1,2,0]],[[1,2,3,1],[2,1,2,2],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[2,1,2,2],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[2,1,2,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,2,2,1],[0,1,1,1]],[[1,2,2,1],[2,1,2,3],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[3,1,2,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,2],[2,1,2,2],[2,2,2,1],[0,1,1,1]],[[1,2,3,1],[2,1,2,2],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[2,1,2,2],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[2,1,2,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[2,1,2,2],[2,2,2,0],[1,3,1,0]],[[1,2,2,1],[2,1,2,2],[2,2,2,0],[2,2,1,0]],[[1,2,2,1],[2,1,2,2],[3,2,2,0],[1,2,1,0]],[[1,2,2,1],[3,1,2,2],[2,2,2,0],[1,2,1,0]],[[1,2,2,2],[2,1,2,2],[2,2,2,0],[1,2,1,0]],[[1,2,3,1],[2,1,2,2],[2,2,2,0],[1,2,1,0]],[[1,3,2,1],[2,1,2,2],[2,2,2,0],[1,2,1,0]],[[2,2,2,1],[2,1,2,2],[2,2,2,0],[1,2,1,0]],[[1,2,2,1],[2,1,2,2],[2,2,2,0],[2,1,1,1]],[[1,2,2,1],[2,1,2,2],[3,2,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[2,2,2,0],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,2,2],[2,2,2,0],[2,0,2,1]],[[1,2,2,1],[2,1,2,2],[3,2,2,0],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[3,1,2,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,2],[2,1,2,2],[2,2,2,0],[1,0,2,1]],[[1,2,3,1],[2,1,2,2],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[2,1,2,2],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[2,1,2,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[2,1,2,2],[3,2,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,2,3],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[3,1,2,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,2],[2,1,2,2],[2,2,2,0],[0,2,1,1]],[[1,2,3,1],[2,1,2,2],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[2,1,2,2],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[2,1,2,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,2,2],[3,2,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,2,3],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[3,1,2,2],[2,2,2,0],[0,1,2,1]],[[1,2,2,2],[2,1,2,2],[2,2,2,0],[0,1,2,1]],[[1,2,3,1],[2,1,2,2],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[2,1,2,2],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[2,1,2,2],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,2,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,1],[2,1,2,2],[3,2,1,2],[1,2,0,0]],[[1,2,2,1],[2,1,2,3],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[3,1,2,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,2],[2,1,2,2],[2,2,1,2],[1,2,0,0]],[[1,2,3,1],[2,1,2,2],[2,2,1,2],[1,2,0,0]],[[1,3,2,1],[2,1,2,2],[2,2,1,2],[1,2,0,0]],[[2,2,2,1],[2,1,2,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[2,1,2,2],[2,2,1,2],[2,1,1,0]],[[1,2,2,1],[2,1,2,2],[2,2,1,3],[1,1,1,0]],[[1,2,2,1],[2,1,2,2],[3,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,2,3],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[3,1,2,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,2],[2,1,2,2],[2,2,1,2],[1,1,1,0]],[[1,2,3,1],[2,1,2,2],[2,2,1,2],[1,1,1,0]],[[1,3,2,1],[2,1,2,2],[2,2,1,2],[1,1,1,0]],[[2,2,2,1],[2,1,2,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,2,2],[2,2,1,2],[1,1,0,2]],[[1,2,2,1],[2,1,2,2],[2,2,1,2],[2,1,0,1]],[[1,2,2,1],[2,1,2,2],[2,2,1,3],[1,1,0,1]],[[1,2,2,1],[2,1,2,2],[3,2,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,2,3],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[3,1,2,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,2],[2,1,2,2],[2,2,1,2],[1,1,0,1]],[[1,2,3,1],[2,1,2,2],[2,2,1,2],[1,1,0,1]],[[1,3,2,1],[2,1,2,2],[2,2,1,2],[1,1,0,1]],[[2,2,2,1],[2,1,2,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,2,2],[2,2,1,2],[2,0,2,0]],[[1,2,2,1],[2,1,2,2],[2,2,1,3],[1,0,2,0]],[[1,2,2,1],[2,1,2,2],[3,2,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,2,3],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[3,1,2,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,2],[2,1,2,2],[2,2,1,2],[1,0,2,0]],[[1,2,3,1],[2,1,2,2],[2,2,1,2],[1,0,2,0]],[[1,3,2,1],[2,1,2,2],[2,2,1,2],[1,0,2,0]],[[2,2,2,1],[2,1,2,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,2,2],[2,2,1,2],[1,0,1,2]],[[1,2,2,1],[2,1,2,2],[2,2,1,2],[2,0,1,1]],[[1,2,2,1],[2,1,2,2],[2,2,1,3],[1,0,1,1]],[[1,2,2,1],[2,1,2,2],[3,2,1,2],[1,0,1,1]],[[1,2,2,1],[2,1,2,3],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[3,1,2,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,2],[2,1,2,2],[2,2,1,2],[1,0,1,1]],[[1,2,3,1],[2,1,2,2],[2,2,1,2],[1,0,1,1]],[[1,3,2,1],[2,1,2,2],[2,2,1,2],[1,0,1,1]],[[2,2,2,1],[2,1,2,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[2,1,2,2],[2,2,1,3],[0,2,1,0]],[[1,2,2,1],[2,1,2,2],[3,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,2,3],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[3,1,2,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,2],[2,1,2,2],[2,2,1,2],[0,2,1,0]],[[1,2,3,1],[2,1,2,2],[2,2,1,2],[0,2,1,0]],[[1,3,2,1],[2,1,2,2],[2,2,1,2],[0,2,1,0]],[[2,2,2,1],[2,1,2,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,2,2],[2,2,1,2],[0,2,0,2]],[[1,2,2,1],[2,1,2,2],[2,2,1,3],[0,2,0,1]],[[1,2,2,1],[2,1,2,2],[3,2,1,2],[0,2,0,1]],[[1,2,2,1],[2,1,2,3],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[3,1,2,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,2],[2,1,2,2],[2,2,1,2],[0,2,0,1]],[[1,2,3,1],[2,1,2,2],[2,2,1,2],[0,2,0,1]],[[1,3,2,1],[2,1,2,2],[2,2,1,2],[0,2,0,1]],[[2,2,2,1],[2,1,2,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[2,1,2,2],[2,2,1,3],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,2,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,3],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[3,1,2,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,2],[2,1,2,2],[2,2,1,2],[0,1,2,0]],[[1,2,3,1],[2,1,2,2],[2,2,1,2],[0,1,2,0]],[[1,3,2,1],[2,1,2,2],[2,2,1,2],[0,1,2,0]],[[2,2,2,1],[2,1,2,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[2,2,1,2],[0,1,1,2]],[[1,2,2,1],[2,1,2,2],[2,2,1,3],[0,1,1,1]],[[1,2,2,1],[2,1,2,2],[3,2,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,2,3],[2,2,1,2],[0,1,1,1]],[[1,2,2,1],[3,1,2,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,2],[2,1,2,2],[2,2,1,2],[0,1,1,1]],[[1,2,3,1],[2,1,2,2],[2,2,1,2],[0,1,1,1]],[[1,3,2,1],[2,1,2,2],[2,2,1,2],[0,1,1,1]],[[2,2,2,1],[2,1,2,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,2,2],[2,2,1,1],[2,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,2,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,2,3],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[3,1,2,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[2,2,1,1],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,2,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,2,3],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[3,1,2,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,2],[2,1,2,2],[2,2,1,1],[0,2,2,0]],[[1,2,3,1],[2,1,2,2],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[2,1,2,2],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[2,1,2,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,2,2],[2,2,1,0],[1,3,2,0]],[[1,2,2,1],[2,1,2,2],[2,2,1,0],[2,2,2,0]],[[1,2,2,1],[2,1,2,2],[3,2,1,0],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[2,2,1,0],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[2,2,1,0],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[2,2,1,0],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[2,2,1,0],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[2,2,1,0],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[2,2,1,0],[2,1,2,1]],[[1,2,2,1],[2,1,2,2],[3,2,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,2,3],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[3,1,2,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[2,2,1,0],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,2,2],[3,2,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,2,3],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[3,1,2,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,2],[2,1,2,2],[2,2,1,0],[0,2,2,1]],[[1,2,3,1],[2,1,2,2],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[2,1,2,2],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[2,1,2,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,2,2],[2,2,0,2],[2,1,2,0]],[[1,2,2,1],[2,1,2,2],[2,2,0,3],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,2,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,3],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[3,1,2,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[2,2,0,2],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[2,2,0,2],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[2,2,0,2],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[2,2,0,2],[1,1,1,2]],[[1,2,2,1],[2,1,2,2],[2,2,0,2],[2,1,1,1]],[[1,2,2,1],[2,1,2,2],[2,2,0,3],[1,1,1,1]],[[1,2,2,1],[2,1,2,2],[3,2,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[2,2,0,2],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[2,2,0,2],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[2,2,0,2],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,2,2],[2,2,0,2],[1,0,2,2]],[[1,2,2,1],[2,1,2,2],[2,2,0,2],[1,0,3,1]],[[1,2,2,1],[2,1,2,2],[2,2,0,2],[2,0,2,1]],[[1,2,2,1],[2,1,2,2],[2,2,0,3],[1,0,2,1]],[[1,2,2,1],[2,1,2,2],[3,2,0,2],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[3,1,2,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,2],[2,1,2,2],[2,2,0,2],[1,0,2,1]],[[1,2,3,1],[2,1,2,2],[2,2,0,2],[1,0,2,1]],[[1,3,2,1],[2,1,2,2],[2,2,0,2],[1,0,2,1]],[[2,2,2,1],[2,1,2,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[2,1,2,2],[2,2,0,3],[0,2,2,0]],[[1,2,2,1],[2,1,2,2],[3,2,0,2],[0,2,2,0]],[[1,2,2,1],[2,1,2,3],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[3,1,2,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,2],[2,1,2,2],[2,2,0,2],[0,2,2,0]],[[1,2,3,1],[2,1,2,2],[2,2,0,2],[0,2,2,0]],[[1,3,2,1],[2,1,2,2],[2,2,0,2],[0,2,2,0]],[[2,2,2,1],[2,1,2,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[2,1,2,2],[2,2,0,2],[0,2,1,2]],[[1,2,2,1],[2,1,2,2],[2,2,0,3],[0,2,1,1]],[[1,2,2,1],[2,1,2,2],[3,2,0,2],[0,2,1,1]],[[1,2,2,1],[2,1,2,3],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[3,1,2,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,2],[2,1,2,2],[2,2,0,2],[0,2,1,1]],[[1,2,3,1],[2,1,2,2],[2,2,0,2],[0,2,1,1]],[[1,3,2,1],[2,1,2,2],[2,2,0,2],[0,2,1,1]],[[2,2,2,1],[2,1,2,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[2,1,2,2],[2,2,0,2],[0,1,2,2]],[[1,2,2,1],[2,1,2,2],[2,2,0,2],[0,1,3,1]],[[1,2,2,1],[2,1,2,2],[2,2,0,3],[0,1,2,1]],[[1,2,2,1],[2,1,2,2],[3,2,0,2],[0,1,2,1]],[[1,2,2,1],[2,1,2,3],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[3,1,2,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,2],[2,1,2,2],[2,2,0,2],[0,1,2,1]],[[1,2,3,1],[2,1,2,2],[2,2,0,2],[0,1,2,1]],[[1,3,2,1],[2,1,2,2],[2,2,0,2],[0,1,2,1]],[[2,2,2,1],[2,1,2,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[2,1,2,2],[2,2,0,1],[2,1,2,1]],[[1,2,2,1],[2,1,2,2],[3,2,0,1],[1,1,2,1]],[[1,2,2,1],[2,1,2,3],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[3,1,2,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[2,2,0,1],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[2,2,0,1],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[2,2,0,1],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[2,1,2,2],[3,2,0,1],[0,2,2,1]],[[0,1,3,1],[2,3,3,2],[2,0,0,1],[1,2,2,1]],[[0,1,2,2],[2,3,3,2],[2,0,0,1],[1,2,2,1]],[[0,1,2,1],[2,3,3,3],[2,0,0,1],[1,2,2,1]],[[0,1,3,1],[2,3,3,2],[2,0,0,2],[0,2,2,1]],[[0,1,2,2],[2,3,3,2],[2,0,0,2],[0,2,2,1]],[[0,1,2,1],[2,3,3,3],[2,0,0,2],[0,2,2,1]],[[0,1,3,1],[2,3,3,2],[2,0,0,2],[1,1,2,1]],[[0,1,2,2],[2,3,3,2],[2,0,0,2],[1,1,2,1]],[[0,1,2,1],[2,3,3,3],[2,0,0,2],[1,1,2,1]],[[0,1,3,1],[2,3,3,2],[2,0,0,2],[1,2,1,1]],[[0,1,2,2],[2,3,3,2],[2,0,0,2],[1,2,1,1]],[[0,1,2,1],[2,3,3,3],[2,0,0,2],[1,2,1,1]],[[0,1,3,1],[2,3,3,2],[2,0,0,2],[1,2,2,0]],[[0,1,2,2],[2,3,3,2],[2,0,0,2],[1,2,2,0]],[[0,1,2,1],[2,3,3,3],[2,0,0,2],[1,2,2,0]],[[0,1,3,1],[2,3,3,2],[2,0,1,2],[0,2,1,1]],[[0,1,2,2],[2,3,3,2],[2,0,1,2],[0,2,1,1]],[[0,1,2,1],[2,3,3,3],[2,0,1,2],[0,2,1,1]],[[0,1,3,1],[2,3,3,2],[2,0,1,2],[0,2,2,0]],[[0,1,2,2],[2,3,3,2],[2,0,1,2],[0,2,2,0]],[[0,1,2,1],[2,3,3,3],[2,0,1,2],[0,2,2,0]],[[0,1,3,1],[2,3,3,2],[2,0,1,2],[1,1,1,1]],[[0,1,2,2],[2,3,3,2],[2,0,1,2],[1,1,1,1]],[[0,1,2,1],[2,3,3,3],[2,0,1,2],[1,1,1,1]],[[0,1,3,1],[2,3,3,2],[2,0,1,2],[1,1,2,0]],[[0,1,2,2],[2,3,3,2],[2,0,1,2],[1,1,2,0]],[[0,1,2,1],[2,3,3,3],[2,0,1,2],[1,1,2,0]],[[0,1,3,1],[2,3,3,2],[2,0,1,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,2],[2,0,1,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,3],[2,0,1,2],[1,2,0,1]],[[0,1,3,1],[2,3,3,2],[2,0,1,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,2],[2,0,1,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,3],[2,0,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,3],[2,2,0,1],[0,2,2,1]],[[1,2,2,1],[3,1,2,2],[2,2,0,1],[0,2,2,1]],[[1,2,2,2],[2,1,2,2],[2,2,0,1],[0,2,2,1]],[[1,2,3,1],[2,1,2,2],[2,2,0,1],[0,2,2,1]],[[1,3,2,1],[2,1,2,2],[2,2,0,1],[0,2,2,1]],[[2,2,2,1],[2,1,2,2],[2,2,0,1],[0,2,2,1]],[[0,1,3,1],[2,3,3,2],[2,0,2,0],[1,2,2,0]],[[0,1,2,2],[2,3,3,2],[2,0,2,0],[1,2,2,0]],[[0,1,2,1],[3,3,3,2],[2,0,2,0],[1,2,2,0]],[[0,1,2,1],[2,4,3,2],[2,0,2,0],[1,2,2,0]],[[0,1,2,1],[2,3,4,2],[2,0,2,0],[1,2,2,0]],[[0,1,2,1],[2,3,3,2],[3,0,2,0],[1,2,2,0]],[[0,1,2,1],[2,3,3,2],[2,0,2,0],[2,2,2,0]],[[0,1,2,1],[2,3,3,2],[2,0,2,0],[1,3,2,0]],[[1,2,2,1],[2,1,2,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,1],[2,1,2,2],[3,1,3,2],[1,0,0,1]],[[1,2,2,1],[2,1,2,3],[2,1,3,2],[1,0,0,1]],[[1,2,2,1],[3,1,2,2],[2,1,3,2],[1,0,0,1]],[[1,2,2,2],[2,1,2,2],[2,1,3,2],[1,0,0,1]],[[1,2,3,1],[2,1,2,2],[2,1,3,2],[1,0,0,1]],[[1,3,2,1],[2,1,2,2],[2,1,3,2],[1,0,0,1]],[[2,2,2,1],[2,1,2,2],[2,1,3,2],[1,0,0,1]],[[0,1,3,1],[2,3,3,2],[2,0,3,0],[0,2,1,1]],[[0,1,2,2],[2,3,3,2],[2,0,3,0],[0,2,1,1]],[[0,1,2,1],[2,3,4,2],[2,0,3,0],[0,2,1,1]],[[0,1,3,1],[2,3,3,2],[2,0,3,0],[0,2,2,0]],[[0,1,2,2],[2,3,3,2],[2,0,3,0],[0,2,2,0]],[[0,1,2,1],[3,3,3,2],[2,0,3,0],[0,2,2,0]],[[0,1,2,1],[2,4,3,2],[2,0,3,0],[0,2,2,0]],[[0,1,2,1],[2,3,4,2],[2,0,3,0],[0,2,2,0]],[[0,1,2,1],[2,3,3,2],[3,0,3,0],[0,2,2,0]],[[0,1,3,1],[2,3,3,2],[2,0,3,0],[1,1,1,1]],[[0,1,2,2],[2,3,3,2],[2,0,3,0],[1,1,1,1]],[[0,1,2,1],[2,3,4,2],[2,0,3,0],[1,1,1,1]],[[0,1,3,1],[2,3,3,2],[2,0,3,0],[1,1,2,0]],[[0,1,2,2],[2,3,3,2],[2,0,3,0],[1,1,2,0]],[[0,1,2,1],[3,3,3,2],[2,0,3,0],[1,1,2,0]],[[0,1,2,1],[2,4,3,2],[2,0,3,0],[1,1,2,0]],[[0,1,2,1],[2,3,4,2],[2,0,3,0],[1,1,2,0]],[[0,1,2,1],[2,3,3,2],[3,0,3,0],[1,1,2,0]],[[0,1,2,1],[2,3,3,2],[2,0,3,0],[2,1,2,0]],[[0,1,3,1],[2,3,3,2],[2,0,3,0],[1,2,0,1]],[[0,1,2,2],[2,3,3,2],[2,0,3,0],[1,2,0,1]],[[0,1,2,1],[3,3,3,2],[2,0,3,0],[1,2,0,1]],[[0,1,2,1],[2,4,3,2],[2,0,3,0],[1,2,0,1]],[[0,1,2,1],[2,3,4,2],[2,0,3,0],[1,2,0,1]],[[0,1,2,1],[2,3,3,2],[3,0,3,0],[1,2,0,1]],[[0,1,2,1],[2,3,3,2],[2,0,3,0],[2,2,0,1]],[[0,1,3,1],[2,3,3,2],[2,0,3,0],[1,2,1,0]],[[0,1,2,2],[2,3,3,2],[2,0,3,0],[1,2,1,0]],[[0,1,2,1],[3,3,3,2],[2,0,3,0],[1,2,1,0]],[[0,1,2,1],[2,4,3,2],[2,0,3,0],[1,2,1,0]],[[0,1,2,1],[2,3,4,2],[2,0,3,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,2],[3,0,3,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,2],[2,0,3,0],[2,2,1,0]],[[0,1,2,1],[2,3,3,2],[2,0,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,1],[2,1,2,3],[2,1,3,2],[0,1,0,1]],[[1,2,2,1],[3,1,2,2],[2,1,3,2],[0,1,0,1]],[[1,2,2,2],[2,1,2,2],[2,1,3,2],[0,1,0,1]],[[1,2,3,1],[2,1,2,2],[2,1,3,2],[0,1,0,1]],[[1,3,2,1],[2,1,2,2],[2,1,3,2],[0,1,0,1]],[[2,2,2,1],[2,1,2,2],[2,1,3,2],[0,1,0,1]],[[1,2,2,1],[2,1,2,2],[2,1,3,1],[2,1,1,0]],[[1,2,2,1],[2,1,2,2],[3,1,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,2,3],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[3,1,2,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,2],[2,1,2,2],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[2,1,2,2],[2,1,3,1],[1,1,1,0]],[[1,3,2,1],[2,1,2,2],[2,1,3,1],[1,1,1,0]],[[2,2,2,1],[2,1,2,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,3,1],[2,1,0,1]],[[1,2,2,1],[2,1,2,2],[3,1,3,1],[1,1,0,1]],[[1,2,2,1],[2,1,2,3],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[3,1,2,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,2],[2,1,2,2],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[2,1,2,2],[2,1,3,1],[1,1,0,1]],[[1,3,2,1],[2,1,2,2],[2,1,3,1],[1,1,0,1]],[[2,2,2,1],[2,1,2,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[2,1,2,2],[2,1,3,1],[2,0,2,0]],[[1,2,2,1],[2,1,2,2],[3,1,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,2,3],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[3,1,2,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,2],[2,1,2,2],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[2,1,2,2],[2,1,3,1],[1,0,2,0]],[[1,3,2,1],[2,1,2,2],[2,1,3,1],[1,0,2,0]],[[2,2,2,1],[2,1,2,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,2,2],[2,1,3,1],[2,0,1,1]],[[1,2,2,1],[2,1,2,2],[3,1,3,1],[1,0,1,1]],[[1,2,2,1],[2,1,2,3],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[3,1,2,2],[2,1,3,1],[1,0,1,1]],[[1,2,2,2],[2,1,2,2],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[2,1,2,2],[2,1,3,1],[1,0,1,1]],[[1,3,2,1],[2,1,2,2],[2,1,3,1],[1,0,1,1]],[[2,2,2,1],[2,1,2,2],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[2,1,2,2],[3,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,2,3],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[3,1,2,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,2],[2,1,2,2],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[2,1,2,2],[2,1,3,1],[0,2,1,0]],[[1,3,2,1],[2,1,2,2],[2,1,3,1],[0,2,1,0]],[[2,2,2,1],[2,1,2,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,2,2],[3,1,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,2,3],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[3,1,2,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,2],[2,1,2,2],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[2,1,2,2],[2,1,3,1],[0,2,0,1]],[[1,3,2,1],[2,1,2,2],[2,1,3,1],[0,2,0,1]],[[2,2,2,1],[2,1,2,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,2,2],[3,1,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,2,3],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[3,1,2,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,2],[2,1,2,2],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[2,1,2,2],[2,1,3,1],[0,1,2,0]],[[1,3,2,1],[2,1,2,2],[2,1,3,1],[0,1,2,0]],[[2,2,2,1],[2,1,2,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,1,3,1],[0,1,1,1]],[[1,2,2,1],[2,1,2,3],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[3,1,2,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,2],[2,1,2,2],[2,1,3,1],[0,1,1,1]],[[1,2,3,1],[2,1,2,2],[2,1,3,1],[0,1,1,1]],[[1,3,2,1],[2,1,2,2],[2,1,3,1],[0,1,1,1]],[[2,2,2,1],[2,1,2,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[2,1,2,3],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[3,1,2,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,2],[2,1,2,2],[2,1,3,1],[0,0,2,1]],[[1,2,3,1],[2,1,2,2],[2,1,3,1],[0,0,2,1]],[[1,3,2,1],[2,1,2,2],[2,1,3,1],[0,0,2,1]],[[2,2,2,1],[2,1,2,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,3,0],[2,1,1,1]],[[1,2,2,1],[2,1,2,2],[3,1,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[2,1,3,0],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[2,1,3,0],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[2,1,3,0],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,2,2],[2,1,3,0],[2,0,2,1]],[[1,2,2,1],[2,1,2,2],[3,1,3,0],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[3,1,2,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,2],[2,1,2,2],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[2,1,2,2],[2,1,3,0],[1,0,2,1]],[[1,3,2,1],[2,1,2,2],[2,1,3,0],[1,0,2,1]],[[2,2,2,1],[2,1,2,2],[2,1,3,0],[1,0,2,1]],[[0,1,3,1],[2,3,3,2],[2,1,0,2],[0,1,2,1]],[[0,1,2,2],[2,3,3,2],[2,1,0,2],[0,1,2,1]],[[0,1,2,1],[2,3,3,3],[2,1,0,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,2],[2,1,0,2],[1,0,2,1]],[[0,1,2,2],[2,3,3,2],[2,1,0,2],[1,0,2,1]],[[0,1,2,1],[2,3,3,3],[2,1,0,2],[1,0,2,1]],[[0,1,3,1],[2,3,3,2],[2,1,0,2],[1,2,0,1]],[[0,1,2,2],[2,3,3,2],[2,1,0,2],[1,2,0,1]],[[0,1,2,1],[2,3,3,3],[2,1,0,2],[1,2,0,1]],[[0,1,3,1],[2,3,3,2],[2,1,0,2],[1,2,1,0]],[[0,1,2,2],[2,3,3,2],[2,1,0,2],[1,2,1,0]],[[0,1,2,1],[2,3,3,3],[2,1,0,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,2],[3,1,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,2,3],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[3,1,2,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,2],[2,1,2,2],[2,1,3,0],[0,2,1,1]],[[1,2,3,1],[2,1,2,2],[2,1,3,0],[0,2,1,1]],[[1,3,2,1],[2,1,2,2],[2,1,3,0],[0,2,1,1]],[[2,2,2,1],[2,1,2,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,2,2],[3,1,3,0],[0,1,2,1]],[[1,2,2,1],[2,1,2,3],[2,1,3,0],[0,1,2,1]],[[1,2,2,1],[3,1,2,2],[2,1,3,0],[0,1,2,1]],[[0,1,3,1],[2,3,3,2],[2,1,1,0],[1,2,2,0]],[[0,1,2,2],[2,3,3,2],[2,1,1,0],[1,2,2,0]],[[0,1,2,1],[3,3,3,2],[2,1,1,0],[1,2,2,0]],[[0,1,2,1],[2,4,3,2],[2,1,1,0],[1,2,2,0]],[[0,1,2,1],[2,3,4,2],[2,1,1,0],[1,2,2,0]],[[0,1,2,1],[2,3,3,2],[3,1,1,0],[1,2,2,0]],[[0,1,2,1],[2,3,3,2],[2,1,1,0],[2,2,2,0]],[[0,1,2,1],[2,3,3,2],[2,1,1,0],[1,3,2,0]],[[1,2,2,2],[2,1,2,2],[2,1,3,0],[0,1,2,1]],[[1,2,3,1],[2,1,2,2],[2,1,3,0],[0,1,2,1]],[[1,3,2,1],[2,1,2,2],[2,1,3,0],[0,1,2,1]],[[2,2,2,1],[2,1,2,2],[2,1,3,0],[0,1,2,1]],[[0,1,3,1],[2,3,3,2],[2,1,1,2],[0,0,2,1]],[[0,1,2,2],[2,3,3,2],[2,1,1,2],[0,0,2,1]],[[0,1,2,1],[2,3,3,3],[2,1,1,2],[0,0,2,1]],[[0,1,3,1],[2,3,3,2],[2,1,1,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,2],[2,1,1,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,3],[2,1,1,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,2],[2,1,1,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,2],[2,1,1,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,3],[2,1,1,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,2],[2,1,1,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,2],[2,1,1,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,3],[2,1,1,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,2],[2,1,1,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,2],[2,1,1,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,3],[2,1,1,2],[0,2,1,0]],[[0,1,3,1],[2,3,3,2],[2,1,1,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,2],[2,1,1,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,3],[2,1,1,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,2],[2,1,1,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,2],[2,1,1,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,3],[2,1,1,2],[1,0,2,0]],[[0,1,3,1],[2,3,3,2],[2,1,1,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,2],[2,1,1,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,3],[2,1,1,2],[1,1,0,1]],[[0,1,3,1],[2,3,3,2],[2,1,1,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,2],[2,1,1,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,3],[2,1,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,2,2],[2,1,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,2,3],[1,1,1,0]],[[1,2,2,1],[2,1,2,2],[3,1,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,2,3],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[3,1,2,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,2],[2,1,2,2],[2,1,2,2],[1,1,1,0]],[[1,2,3,1],[2,1,2,2],[2,1,2,2],[1,1,1,0]],[[1,3,2,1],[2,1,2,2],[2,1,2,2],[1,1,1,0]],[[2,2,2,1],[2,1,2,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,2,2],[1,1,0,2]],[[1,2,2,1],[2,1,2,2],[2,1,2,2],[2,1,0,1]],[[1,2,2,1],[2,1,2,2],[2,1,2,3],[1,1,0,1]],[[1,2,2,1],[2,1,2,2],[3,1,2,2],[1,1,0,1]],[[1,2,2,1],[2,1,2,3],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[3,1,2,2],[2,1,2,2],[1,1,0,1]],[[1,2,2,2],[2,1,2,2],[2,1,2,2],[1,1,0,1]],[[1,2,3,1],[2,1,2,2],[2,1,2,2],[1,1,0,1]],[[1,3,2,1],[2,1,2,2],[2,1,2,2],[1,1,0,1]],[[2,2,2,1],[2,1,2,2],[2,1,2,2],[1,1,0,1]],[[0,1,3,1],[2,3,3,2],[2,1,2,0],[1,2,0,1]],[[0,1,2,2],[2,3,3,2],[2,1,2,0],[1,2,0,1]],[[0,1,2,1],[3,3,3,2],[2,1,2,0],[1,2,0,1]],[[0,1,2,1],[2,4,3,2],[2,1,2,0],[1,2,0,1]],[[0,1,2,1],[2,3,4,2],[2,1,2,0],[1,2,0,1]],[[0,1,2,1],[2,3,3,2],[3,1,2,0],[1,2,0,1]],[[0,1,2,1],[2,3,3,2],[2,1,2,0],[2,2,0,1]],[[0,1,3,1],[2,3,3,2],[2,1,2,0],[1,2,1,0]],[[0,1,2,2],[2,3,3,2],[2,1,2,0],[1,2,1,0]],[[0,1,2,1],[3,3,3,2],[2,1,2,0],[1,2,1,0]],[[0,1,2,1],[2,4,3,2],[2,1,2,0],[1,2,1,0]],[[0,1,2,1],[2,3,4,2],[2,1,2,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,2],[3,1,2,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,2],[2,1,2,0],[2,2,1,0]],[[0,1,2,1],[2,3,3,2],[2,1,2,0],[1,3,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,2,2],[2,0,2,0]],[[1,2,2,1],[2,1,2,2],[2,1,2,3],[1,0,2,0]],[[1,2,2,1],[2,1,2,2],[3,1,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,2,3],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[3,1,2,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,2],[2,1,2,2],[2,1,2,2],[1,0,2,0]],[[1,2,3,1],[2,1,2,2],[2,1,2,2],[1,0,2,0]],[[1,3,2,1],[2,1,2,2],[2,1,2,2],[1,0,2,0]],[[2,2,2,1],[2,1,2,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,2,2],[2,1,2,2],[1,0,1,2]],[[1,2,2,1],[2,1,2,2],[2,1,2,2],[2,0,1,1]],[[1,2,2,1],[2,1,2,2],[2,1,2,3],[1,0,1,1]],[[1,2,2,1],[2,1,2,2],[3,1,2,2],[1,0,1,1]],[[1,2,2,1],[2,1,2,3],[2,1,2,2],[1,0,1,1]],[[1,2,2,1],[3,1,2,2],[2,1,2,2],[1,0,1,1]],[[1,2,2,2],[2,1,2,2],[2,1,2,2],[1,0,1,1]],[[1,2,3,1],[2,1,2,2],[2,1,2,2],[1,0,1,1]],[[1,3,2,1],[2,1,2,2],[2,1,2,2],[1,0,1,1]],[[2,2,2,1],[2,1,2,2],[2,1,2,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,2],[2,1,2,2],[0,1,0,1]],[[0,1,2,2],[2,3,3,2],[2,1,2,2],[0,1,0,1]],[[0,1,2,1],[2,3,3,3],[2,1,2,2],[0,1,0,1]],[[1,2,2,1],[2,1,2,2],[2,1,2,3],[0,2,1,0]],[[1,2,2,1],[2,1,2,2],[3,1,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,2,3],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[3,1,2,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,2],[2,1,2,2],[2,1,2,2],[0,2,1,0]],[[1,2,3,1],[2,1,2,2],[2,1,2,2],[0,2,1,0]],[[1,3,2,1],[2,1,2,2],[2,1,2,2],[0,2,1,0]],[[2,2,2,1],[2,1,2,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,2,2],[0,2,0,2]],[[1,2,2,1],[2,1,2,2],[2,1,2,3],[0,2,0,1]],[[1,2,2,1],[2,1,2,2],[3,1,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,2,3],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[3,1,2,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,2],[2,1,2,2],[2,1,2,2],[0,2,0,1]],[[1,2,3,1],[2,1,2,2],[2,1,2,2],[0,2,0,1]],[[1,3,2,1],[2,1,2,2],[2,1,2,2],[0,2,0,1]],[[2,2,2,1],[2,1,2,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,2,2],[2,1,2,3],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,1,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,3],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[3,1,2,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,2],[2,1,2,2],[2,1,2,2],[0,1,2,0]],[[1,2,3,1],[2,1,2,2],[2,1,2,2],[0,1,2,0]],[[1,3,2,1],[2,1,2,2],[2,1,2,2],[0,1,2,0]],[[2,2,2,1],[2,1,2,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[2,1,2,2],[0,1,1,2]],[[0,1,3,1],[2,3,3,2],[2,1,2,2],[1,0,0,1]],[[0,1,2,2],[2,3,3,2],[2,1,2,2],[1,0,0,1]],[[0,1,2,1],[2,3,3,3],[2,1,2,2],[1,0,0,1]],[[1,2,2,1],[2,1,2,2],[2,1,2,3],[0,1,1,1]],[[1,2,2,1],[2,1,2,2],[3,1,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,2,3],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[3,1,2,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,2],[2,1,2,2],[2,1,2,2],[0,1,1,1]],[[1,2,3,1],[2,1,2,2],[2,1,2,2],[0,1,1,1]],[[1,3,2,1],[2,1,2,2],[2,1,2,2],[0,1,1,1]],[[2,2,2,1],[2,1,2,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,2,2],[2,1,2,2],[0,0,2,2]],[[1,2,2,1],[2,1,2,2],[2,1,2,3],[0,0,2,1]],[[1,2,2,1],[2,1,2,3],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[3,1,2,2],[2,1,2,2],[0,0,2,1]],[[1,2,2,2],[2,1,2,2],[2,1,2,2],[0,0,2,1]],[[1,2,3,1],[2,1,2,2],[2,1,2,2],[0,0,2,1]],[[1,3,2,1],[2,1,2,2],[2,1,2,2],[0,0,2,1]],[[2,2,2,1],[2,1,2,2],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,2,1],[2,2,1,0]],[[1,2,2,1],[2,1,2,2],[3,1,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,2,3],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[3,1,2,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,2],[2,1,2,2],[2,1,2,1],[1,2,1,0]],[[1,2,3,1],[2,1,2,2],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[2,1,2,2],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[2,1,2,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,2,1],[1,3,0,1]],[[1,2,2,1],[2,1,2,2],[2,1,2,1],[2,2,0,1]],[[1,2,2,1],[2,1,2,2],[3,1,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,2,3],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[3,1,2,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,2],[2,1,2,2],[2,1,2,1],[1,2,0,1]],[[1,2,3,1],[2,1,2,2],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[2,1,2,2],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[2,1,2,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,2,2],[2,1,2,0],[1,3,1,1]],[[1,2,2,1],[2,1,2,2],[2,1,2,0],[2,2,1,1]],[[1,2,2,1],[2,1,2,2],[3,1,2,0],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[2,1,2,0],[1,2,1,1]],[[1,2,2,1],[3,1,2,2],[2,1,2,0],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[2,1,2,0],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[2,1,2,0],[1,2,1,1]],[[1,2,2,1],[2,1,2,2],[2,1,1,2],[1,3,1,0]],[[0,1,3,1],[2,3,3,2],[2,1,3,0],[0,0,2,1]],[[0,1,2,2],[2,3,3,2],[2,1,3,0],[0,0,2,1]],[[0,1,2,1],[2,3,4,2],[2,1,3,0],[0,0,2,1]],[[0,1,3,1],[2,3,3,2],[2,1,3,0],[0,1,1,1]],[[0,1,2,2],[2,3,3,2],[2,1,3,0],[0,1,1,1]],[[0,1,2,1],[3,3,3,2],[2,1,3,0],[0,1,1,1]],[[0,1,2,1],[2,4,3,2],[2,1,3,0],[0,1,1,1]],[[0,1,2,1],[2,3,4,2],[2,1,3,0],[0,1,1,1]],[[0,1,3,1],[2,3,3,2],[2,1,3,0],[0,1,2,0]],[[0,1,2,2],[2,3,3,2],[2,1,3,0],[0,1,2,0]],[[0,1,2,1],[3,3,3,2],[2,1,3,0],[0,1,2,0]],[[0,1,2,1],[2,4,3,2],[2,1,3,0],[0,1,2,0]],[[0,1,2,1],[2,3,4,2],[2,1,3,0],[0,1,2,0]],[[0,1,2,1],[2,3,3,2],[3,1,3,0],[0,1,2,0]],[[0,1,3,1],[2,3,3,2],[2,1,3,0],[0,2,0,1]],[[0,1,2,2],[2,3,3,2],[2,1,3,0],[0,2,0,1]],[[0,1,2,1],[3,3,3,2],[2,1,3,0],[0,2,0,1]],[[0,1,2,1],[2,4,3,2],[2,1,3,0],[0,2,0,1]],[[0,1,2,1],[2,3,4,2],[2,1,3,0],[0,2,0,1]],[[0,1,2,1],[2,3,3,2],[3,1,3,0],[0,2,0,1]],[[0,1,3,1],[2,3,3,2],[2,1,3,0],[0,2,1,0]],[[0,1,2,2],[2,3,3,2],[2,1,3,0],[0,2,1,0]],[[0,1,2,1],[3,3,3,2],[2,1,3,0],[0,2,1,0]],[[0,1,2,1],[2,4,3,2],[2,1,3,0],[0,2,1,0]],[[0,1,2,1],[2,3,4,2],[2,1,3,0],[0,2,1,0]],[[0,1,2,1],[2,3,3,2],[3,1,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,1,2],[2,2,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,1,3],[1,2,1,0]],[[1,2,2,1],[2,1,2,2],[3,1,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,3],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[3,1,2,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,2],[2,1,2,2],[2,1,1,2],[1,2,1,0]],[[1,2,3,1],[2,1,2,2],[2,1,1,2],[1,2,1,0]],[[1,3,2,1],[2,1,2,2],[2,1,1,2],[1,2,1,0]],[[2,2,2,1],[2,1,2,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,1,2],[1,2,0,2]],[[1,2,2,1],[2,1,2,2],[2,1,1,2],[1,3,0,1]],[[0,1,3,1],[2,3,3,2],[2,1,3,0],[1,0,1,1]],[[0,1,2,2],[2,3,3,2],[2,1,3,0],[1,0,1,1]],[[0,1,2,1],[3,3,3,2],[2,1,3,0],[1,0,1,1]],[[0,1,2,1],[2,4,3,2],[2,1,3,0],[1,0,1,1]],[[0,1,2,1],[2,3,4,2],[2,1,3,0],[1,0,1,1]],[[0,1,2,1],[2,3,3,2],[3,1,3,0],[1,0,1,1]],[[0,1,3,1],[2,3,3,2],[2,1,3,0],[1,0,2,0]],[[0,1,2,2],[2,3,3,2],[2,1,3,0],[1,0,2,0]],[[0,1,2,1],[3,3,3,2],[2,1,3,0],[1,0,2,0]],[[0,1,2,1],[2,4,3,2],[2,1,3,0],[1,0,2,0]],[[0,1,2,1],[2,3,4,2],[2,1,3,0],[1,0,2,0]],[[0,1,2,1],[2,3,3,2],[3,1,3,0],[1,0,2,0]],[[0,1,2,1],[2,3,3,2],[2,1,3,0],[2,0,2,0]],[[0,1,3,1],[2,3,3,2],[2,1,3,0],[1,1,0,1]],[[0,1,2,2],[2,3,3,2],[2,1,3,0],[1,1,0,1]],[[0,1,2,1],[3,3,3,2],[2,1,3,0],[1,1,0,1]],[[0,1,2,1],[2,4,3,2],[2,1,3,0],[1,1,0,1]],[[0,1,2,1],[2,3,4,2],[2,1,3,0],[1,1,0,1]],[[0,1,2,1],[2,3,3,2],[3,1,3,0],[1,1,0,1]],[[0,1,2,1],[2,3,3,2],[2,1,3,0],[2,1,0,1]],[[0,1,3,1],[2,3,3,2],[2,1,3,0],[1,1,1,0]],[[0,1,2,2],[2,3,3,2],[2,1,3,0],[1,1,1,0]],[[0,1,2,1],[3,3,3,2],[2,1,3,0],[1,1,1,0]],[[0,1,2,1],[2,4,3,2],[2,1,3,0],[1,1,1,0]],[[0,1,2,1],[2,3,4,2],[2,1,3,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,2],[3,1,3,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,2],[2,1,3,0],[2,1,1,0]],[[1,2,2,1],[2,1,2,2],[2,1,1,2],[2,2,0,1]],[[1,2,2,1],[2,1,2,2],[2,1,1,3],[1,2,0,1]],[[1,2,2,1],[2,1,2,2],[3,1,1,2],[1,2,0,1]],[[1,2,2,1],[2,1,2,3],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[3,1,2,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,2],[2,1,2,2],[2,1,1,2],[1,2,0,1]],[[1,2,3,1],[2,1,2,2],[2,1,1,2],[1,2,0,1]],[[1,3,2,1],[2,1,2,2],[2,1,1,2],[1,2,0,1]],[[2,2,2,1],[2,1,2,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[2,1,2,2],[2,1,1,2],[1,0,2,2]],[[1,2,2,1],[2,1,2,2],[2,1,1,2],[1,0,3,1]],[[1,2,2,1],[2,1,2,2],[2,1,1,2],[2,0,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,1,3],[1,0,2,1]],[[1,2,2,1],[2,1,2,2],[3,1,1,2],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[3,1,2,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,2],[2,1,2,2],[2,1,1,2],[1,0,2,1]],[[1,2,3,1],[2,1,2,2],[2,1,1,2],[1,0,2,1]],[[1,3,2,1],[2,1,2,2],[2,1,1,2],[1,0,2,1]],[[2,2,2,1],[2,1,2,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,1,2],[0,1,2,2]],[[1,2,2,1],[2,1,2,2],[2,1,1,2],[0,1,3,1]],[[1,2,2,1],[2,1,2,2],[2,1,1,3],[0,1,2,1]],[[1,2,2,1],[2,1,2,2],[3,1,1,2],[0,1,2,1]],[[1,2,2,1],[2,1,2,3],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[3,1,2,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,2],[2,1,2,2],[2,1,1,2],[0,1,2,1]],[[1,2,3,1],[2,1,2,2],[2,1,1,2],[0,1,2,1]],[[1,3,2,1],[2,1,2,2],[2,1,1,2],[0,1,2,1]],[[2,2,2,1],[2,1,2,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,1,1],[1,2,3,0]],[[1,2,2,1],[2,1,2,2],[2,1,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,2,2],[2,1,1,1],[2,2,2,0]],[[1,2,2,1],[2,1,2,2],[3,1,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[2,1,1,1],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[2,1,1,0],[1,2,2,2]],[[1,2,2,1],[2,1,2,2],[2,1,1,0],[1,2,3,1]],[[1,2,2,1],[2,1,2,2],[2,1,1,0],[1,3,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,1,0],[2,2,2,1]],[[1,2,2,1],[2,1,2,2],[3,1,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,2,3],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[2,1,1,0],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[1,2,3,0]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[1,3,2,0]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[2,2,2,0]],[[1,2,2,1],[2,1,2,2],[2,1,0,3],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[3,1,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[2,1,0,2],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[2,1,0,2],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[2,1,0,2],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[1,2,1,2]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[1,3,1,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[2,2,1,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,3],[1,2,1,1]],[[1,2,2,1],[2,1,2,2],[3,1,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[3,1,2,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[2,1,0,2],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[2,1,0,2],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[2,1,0,2],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[1,1,2,2]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[1,1,3,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[2,1,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,3],[1,1,2,1]],[[1,2,2,1],[2,1,2,2],[3,1,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,2,3],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[3,1,2,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[2,1,0,2],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[2,1,0,2],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[2,1,0,2],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[0,2,2,2]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[0,2,3,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,2],[0,3,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,3],[0,2,2,1]],[[1,2,2,1],[2,1,2,2],[3,1,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,2,3],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[3,1,2,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,2,2],[2,1,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,2,2],[2,1,0,2],[0,2,2,1]],[[1,3,2,1],[2,1,2,2],[2,1,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,2,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,1],[1,2,2,2]],[[1,2,2,1],[2,1,2,2],[2,1,0,1],[1,2,3,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,1],[1,3,2,1]],[[1,2,2,1],[2,1,2,2],[2,1,0,1],[2,2,2,1]],[[1,2,2,1],[2,1,2,2],[3,1,0,1],[1,2,2,1]],[[1,2,2,1],[2,1,2,3],[2,1,0,1],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[2,1,0,1],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[2,1,0,1],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[2,1,0,1],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[2,1,0,1],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[2,1,0,1],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,2,3],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[3,1,2,2],[2,0,3,2],[1,0,2,0]],[[1,2,2,2],[2,1,2,2],[2,0,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,2,2],[2,0,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,2,2],[2,0,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,2,2],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,3,2],[1,0,1,2]],[[1,2,2,1],[2,1,2,2],[2,0,3,3],[1,0,1,1]],[[1,2,2,1],[2,1,2,3],[2,0,3,2],[1,0,1,1]],[[1,2,2,1],[3,1,2,2],[2,0,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,2,2],[2,0,3,2],[1,0,1,1]],[[1,2,3,1],[2,1,2,2],[2,0,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,2,2],[2,0,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,2,2],[2,0,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,2,2],[2,0,3,3],[0,1,2,0]],[[1,2,2,1],[2,1,2,3],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[3,1,2,2],[2,0,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,2,2],[2,0,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,2,2],[2,0,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,2,2],[2,0,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,2,2],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,3,2],[0,1,1,2]],[[1,2,2,1],[2,1,2,2],[2,0,3,3],[0,1,1,1]],[[1,2,2,1],[2,1,2,3],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[3,1,2,2],[2,0,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,2,2],[2,0,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,2,2],[2,0,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,2,2],[2,0,3,2],[0,1,1,1]],[[2,2,2,1],[2,1,2,2],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,2,2],[2,0,3,2],[0,0,2,2]],[[1,2,2,1],[2,1,2,2],[2,0,3,3],[0,0,2,1]],[[1,2,2,1],[2,1,2,3],[2,0,3,2],[0,0,2,1]],[[1,2,2,1],[3,1,2,2],[2,0,3,2],[0,0,2,1]],[[1,2,2,2],[2,1,2,2],[2,0,3,2],[0,0,2,1]],[[1,2,3,1],[2,1,2,2],[2,0,3,2],[0,0,2,1]],[[1,3,2,1],[2,1,2,2],[2,0,3,2],[0,0,2,1]],[[2,2,2,1],[2,1,2,2],[2,0,3,2],[0,0,2,1]],[[1,2,2,1],[2,1,2,2],[2,0,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,2,2],[2,0,3,1],[2,2,1,0]],[[1,2,2,1],[2,1,2,2],[3,0,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,2,3],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[3,1,2,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,2],[2,1,2,2],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[2,1,2,2],[2,0,3,1],[1,2,1,0]],[[1,3,2,1],[2,1,2,2],[2,0,3,1],[1,2,1,0]],[[2,2,2,1],[2,1,2,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,2,2],[2,0,3,1],[1,3,0,1]],[[1,2,2,1],[2,1,2,2],[2,0,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,2,2],[3,0,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,2,3],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[3,1,2,2],[2,0,3,1],[1,2,0,1]],[[1,2,2,2],[2,1,2,2],[2,0,3,1],[1,2,0,1]],[[1,2,3,1],[2,1,2,2],[2,0,3,1],[1,2,0,1]],[[1,3,2,1],[2,1,2,2],[2,0,3,1],[1,2,0,1]],[[2,2,2,1],[2,1,2,2],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,2,2],[2,0,3,1],[2,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,0,3,1],[1,1,2,0]],[[1,2,2,1],[2,1,2,3],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[3,1,2,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[2,0,3,1],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[2,0,3,1],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,3,1],[2,1,1,1]],[[1,2,2,1],[2,1,2,2],[3,0,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[2,0,3,1],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[2,0,3,1],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[2,0,3,1],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,2,2],[3,0,3,1],[0,2,2,0]],[[1,2,2,1],[2,1,2,3],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[3,1,2,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,2],[2,1,2,2],[2,0,3,1],[0,2,2,0]],[[1,2,3,1],[2,1,2,2],[2,0,3,1],[0,2,2,0]],[[1,3,2,1],[2,1,2,2],[2,0,3,1],[0,2,2,0]],[[2,2,2,1],[2,1,2,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[2,1,2,2],[3,0,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,2,3],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[3,1,2,2],[2,0,3,1],[0,2,1,1]],[[1,2,2,2],[2,1,2,2],[2,0,3,1],[0,2,1,1]],[[1,2,3,1],[2,1,2,2],[2,0,3,1],[0,2,1,1]],[[1,3,2,1],[2,1,2,2],[2,0,3,1],[0,2,1,1]],[[2,2,2,1],[2,1,2,2],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,2,2],[2,0,3,0],[1,3,1,1]],[[1,2,2,1],[2,1,2,2],[2,0,3,0],[2,2,1,1]],[[1,2,2,1],[2,1,2,2],[3,0,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[3,1,2,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[2,0,3,0],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[2,0,3,0],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[2,0,3,0],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,2,2],[2,0,3,0],[2,1,2,1]],[[1,2,2,1],[2,1,2,2],[3,0,3,0],[1,1,2,1]],[[1,2,2,1],[2,1,2,3],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[3,1,2,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[2,0,3,0],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[2,0,3,0],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[2,1,2,2],[3,0,3,0],[0,2,2,1]],[[1,2,2,1],[2,1,2,3],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[3,1,2,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,2],[2,1,2,2],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[2,1,2,2],[2,0,3,0],[0,2,2,1]],[[1,3,2,1],[2,1,2,2],[2,0,3,0],[0,2,2,1]],[[2,2,2,1],[2,1,2,2],[2,0,3,0],[0,2,2,1]],[[0,1,2,1],[3,3,3,2],[2,2,0,0],[1,2,2,0]],[[0,1,2,1],[2,4,3,2],[2,2,0,0],[1,2,2,0]],[[0,1,2,1],[2,3,3,2],[3,2,0,0],[1,2,2,0]],[[0,1,2,1],[2,3,3,2],[2,2,0,0],[2,2,2,0]],[[0,1,2,1],[2,3,3,2],[2,2,0,0],[1,3,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,2,2],[1,3,1,0]],[[1,2,2,1],[2,1,2,2],[2,0,2,2],[2,2,1,0]],[[1,2,2,1],[2,1,2,2],[2,0,2,3],[1,2,1,0]],[[1,2,2,1],[2,1,2,2],[3,0,2,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,3],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[3,1,2,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,2],[2,1,2,2],[2,0,2,2],[1,2,1,0]],[[0,1,3,1],[2,3,3,2],[2,2,0,2],[0,1,1,1]],[[0,1,2,2],[2,3,3,2],[2,2,0,2],[0,1,1,1]],[[0,1,2,1],[2,3,3,3],[2,2,0,2],[0,1,1,1]],[[0,1,3,1],[2,3,3,2],[2,2,0,2],[0,1,2,0]],[[0,1,2,2],[2,3,3,2],[2,2,0,2],[0,1,2,0]],[[0,1,2,1],[2,3,3,3],[2,2,0,2],[0,1,2,0]],[[0,1,3,1],[2,3,3,2],[2,2,0,2],[0,2,0,1]],[[0,1,2,2],[2,3,3,2],[2,2,0,2],[0,2,0,1]],[[0,1,2,1],[2,3,3,3],[2,2,0,2],[0,2,0,1]],[[0,1,3,1],[2,3,3,2],[2,2,0,2],[0,2,1,0]],[[0,1,2,2],[2,3,3,2],[2,2,0,2],[0,2,1,0]],[[0,1,2,1],[2,3,3,3],[2,2,0,2],[0,2,1,0]],[[1,2,3,1],[2,1,2,2],[2,0,2,2],[1,2,1,0]],[[1,3,2,1],[2,1,2,2],[2,0,2,2],[1,2,1,0]],[[2,2,2,1],[2,1,2,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,2],[2,0,2,2],[1,2,0,2]],[[1,2,2,1],[2,1,2,2],[2,0,2,2],[1,3,0,1]],[[1,2,2,1],[2,1,2,2],[2,0,2,2],[2,2,0,1]],[[1,2,2,1],[2,1,2,2],[2,0,2,3],[1,2,0,1]],[[1,2,2,1],[2,1,2,2],[3,0,2,2],[1,2,0,1]],[[1,2,2,1],[2,1,2,3],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[3,1,2,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,2],[2,1,2,2],[2,0,2,2],[1,2,0,1]],[[0,1,3,1],[2,3,3,2],[2,2,0,2],[1,0,1,1]],[[0,1,2,2],[2,3,3,2],[2,2,0,2],[1,0,1,1]],[[0,1,2,1],[2,3,3,3],[2,2,0,2],[1,0,1,1]],[[0,1,3,1],[2,3,3,2],[2,2,0,2],[1,0,2,0]],[[0,1,2,2],[2,3,3,2],[2,2,0,2],[1,0,2,0]],[[0,1,2,1],[2,3,3,3],[2,2,0,2],[1,0,2,0]],[[0,1,3,1],[2,3,3,2],[2,2,0,2],[1,1,0,1]],[[0,1,2,2],[2,3,3,2],[2,2,0,2],[1,1,0,1]],[[0,1,2,1],[2,3,3,3],[2,2,0,2],[1,1,0,1]],[[0,1,3,1],[2,3,3,2],[2,2,0,2],[1,1,1,0]],[[0,1,2,2],[2,3,3,2],[2,2,0,2],[1,1,1,0]],[[0,1,2,1],[2,3,3,3],[2,2,0,2],[1,1,1,0]],[[1,2,3,1],[2,1,2,2],[2,0,2,2],[1,2,0,1]],[[1,3,2,1],[2,1,2,2],[2,0,2,2],[1,2,0,1]],[[2,2,2,1],[2,1,2,2],[2,0,2,2],[1,2,0,1]],[[0,1,3,1],[2,3,3,2],[2,2,0,2],[1,2,0,0]],[[0,1,2,2],[2,3,3,2],[2,2,0,2],[1,2,0,0]],[[0,1,2,1],[2,3,3,3],[2,2,0,2],[1,2,0,0]],[[1,2,2,1],[2,1,2,2],[2,0,2,2],[2,1,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,2,3],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,0,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,3],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[3,1,2,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[2,0,2,2],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[2,0,2,2],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[2,0,2,2],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,2,2],[1,1,1,2]],[[1,2,2,1],[2,1,2,2],[2,0,2,2],[2,1,1,1]],[[1,2,2,1],[2,1,2,2],[2,0,2,3],[1,1,1,1]],[[1,2,2,1],[2,1,2,2],[3,0,2,2],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[2,0,2,2],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[2,0,2,2],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[2,0,2,2],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[2,0,2,2],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[2,0,2,2],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[2,0,2,2],[1,1,1,1]],[[1,2,2,1],[2,1,2,2],[2,0,2,3],[0,2,2,0]],[[0,1,3,1],[2,3,3,2],[2,2,1,0],[0,2,2,0]],[[0,1,2,2],[2,3,3,2],[2,2,1,0],[0,2,2,0]],[[0,1,2,1],[3,3,3,2],[2,2,1,0],[0,2,2,0]],[[0,1,2,1],[2,4,3,2],[2,2,1,0],[0,2,2,0]],[[0,1,2,1],[2,3,4,2],[2,2,1,0],[0,2,2,0]],[[0,1,2,1],[2,3,3,2],[3,2,1,0],[0,2,2,0]],[[0,1,3,1],[2,3,3,2],[2,2,1,0],[1,1,2,0]],[[0,1,2,2],[2,3,3,2],[2,2,1,0],[1,1,2,0]],[[0,1,2,1],[3,3,3,2],[2,2,1,0],[1,1,2,0]],[[0,1,2,1],[2,4,3,2],[2,2,1,0],[1,1,2,0]],[[0,1,2,1],[2,3,4,2],[2,2,1,0],[1,1,2,0]],[[0,1,2,1],[2,3,3,2],[3,2,1,0],[1,1,2,0]],[[0,1,2,1],[2,3,3,2],[2,2,1,0],[2,1,2,0]],[[1,2,2,1],[2,1,2,2],[3,0,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,2,3],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[3,1,2,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,2],[2,1,2,2],[2,0,2,2],[0,2,2,0]],[[1,2,3,1],[2,1,2,2],[2,0,2,2],[0,2,2,0]],[[1,3,2,1],[2,1,2,2],[2,0,2,2],[0,2,2,0]],[[2,2,2,1],[2,1,2,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,2,2],[0,2,1,2]],[[1,2,2,1],[2,1,2,2],[2,0,2,3],[0,2,1,1]],[[1,2,2,1],[2,1,2,2],[3,0,2,2],[0,2,1,1]],[[1,2,2,1],[2,1,2,3],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[3,1,2,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,2],[2,1,2,2],[2,0,2,2],[0,2,1,1]],[[1,2,3,1],[2,1,2,2],[2,0,2,2],[0,2,1,1]],[[1,3,2,1],[2,1,2,2],[2,0,2,2],[0,2,1,1]],[[2,2,2,1],[2,1,2,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[2,1,2,2],[2,0,2,1],[1,2,3,0]],[[1,2,2,1],[2,1,2,2],[2,0,2,1],[1,3,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,2,1],[2,2,2,0]],[[1,2,2,1],[2,1,2,2],[3,0,2,1],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[2,0,2,1],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[2,0,2,1],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[2,0,2,1],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,2,0],[1,2,2,2]],[[1,2,2,1],[2,1,2,2],[2,0,2,0],[1,2,3,1]],[[1,2,2,1],[2,1,2,2],[2,0,2,0],[1,3,2,1]],[[1,2,2,1],[2,1,2,2],[2,0,2,0],[2,2,2,1]],[[1,2,2,1],[2,1,2,2],[3,0,2,0],[1,2,2,1]],[[1,2,2,1],[2,1,2,3],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[2,0,2,0],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[2,0,2,0],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[2,0,2,0],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[2,0,2,0],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[1,2,3,0]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[1,3,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[2,2,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,1,3],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[3,0,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[2,0,1,2],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[2,0,1,2],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[2,0,1,2],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[1,2,1,2]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[1,3,1,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[2,2,1,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,3],[1,2,1,1]],[[1,2,2,1],[2,1,2,2],[3,0,1,2],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[3,1,2,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[2,0,1,2],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[2,0,1,2],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[2,0,1,2],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[1,1,2,2]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[1,1,3,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[2,1,2,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,3],[1,1,2,1]],[[1,2,2,1],[2,1,2,2],[3,0,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,2,3],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[3,1,2,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[2,0,1,2],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[2,0,1,2],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[2,0,1,2],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[0,2,2,2]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[0,2,3,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,2],[0,3,2,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,3],[0,2,2,1]],[[1,2,2,1],[2,1,2,2],[3,0,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,2,3],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[3,1,2,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,2],[2,1,2,2],[2,0,1,2],[0,2,2,1]],[[1,2,3,1],[2,1,2,2],[2,0,1,2],[0,2,2,1]],[[1,3,2,1],[2,1,2,2],[2,0,1,2],[0,2,2,1]],[[2,2,2,1],[2,1,2,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,1],[1,2,2,2]],[[1,2,2,1],[2,1,2,2],[2,0,1,1],[1,2,3,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,1],[1,3,2,1]],[[1,2,2,1],[2,1,2,2],[2,0,1,1],[2,2,2,1]],[[1,2,2,1],[2,1,2,2],[3,0,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,2,3],[2,0,1,1],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[2,0,1,1],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[2,0,1,1],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[2,0,1,1],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[2,0,1,1],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[2,0,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,1,2,3],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[3,1,2,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[2,1,2,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[2,1,2,2],[1,3,3,2],[0,0,0,1]],[[1,3,2,1],[2,1,2,2],[1,3,3,2],[0,0,0,1]],[[2,2,2,1],[2,1,2,2],[1,3,3,2],[0,0,0,1]],[[0,1,3,1],[2,3,3,2],[2,2,2,0],[0,1,1,1]],[[0,1,2,2],[2,3,3,2],[2,2,2,0],[0,1,1,1]],[[0,1,2,1],[3,3,3,2],[2,2,2,0],[0,1,1,1]],[[0,1,2,1],[2,4,3,2],[2,2,2,0],[0,1,1,1]],[[0,1,2,1],[2,3,4,2],[2,2,2,0],[0,1,1,1]],[[0,1,3,1],[2,3,3,2],[2,2,2,0],[0,1,2,0]],[[0,1,2,2],[2,3,3,2],[2,2,2,0],[0,1,2,0]],[[0,1,2,1],[3,3,3,2],[2,2,2,0],[0,1,2,0]],[[0,1,2,1],[2,4,3,2],[2,2,2,0],[0,1,2,0]],[[0,1,2,1],[2,3,4,2],[2,2,2,0],[0,1,2,0]],[[0,1,2,1],[2,3,3,2],[3,2,2,0],[0,1,2,0]],[[0,1,3,1],[2,3,3,2],[2,2,2,0],[0,2,0,1]],[[0,1,2,2],[2,3,3,2],[2,2,2,0],[0,2,0,1]],[[0,1,2,1],[3,3,3,2],[2,2,2,0],[0,2,0,1]],[[0,1,2,1],[2,4,3,2],[2,2,2,0],[0,2,0,1]],[[0,1,2,1],[2,3,4,2],[2,2,2,0],[0,2,0,1]],[[0,1,2,1],[2,3,3,2],[3,2,2,0],[0,2,0,1]],[[0,1,3,1],[2,3,3,2],[2,2,2,0],[0,2,1,0]],[[0,1,2,2],[2,3,3,2],[2,2,2,0],[0,2,1,0]],[[0,1,2,1],[3,3,3,2],[2,2,2,0],[0,2,1,0]],[[0,1,2,1],[2,4,3,2],[2,2,2,0],[0,2,1,0]],[[0,1,2,1],[2,3,4,2],[2,2,2,0],[0,2,1,0]],[[0,1,2,1],[2,3,3,2],[3,2,2,0],[0,2,1,0]],[[1,2,2,1],[2,1,2,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[3,1,2,2],[1,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,1,2,2],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,1,2,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,1,2,2],[1,3,3,1],[1,1,0,0]],[[0,1,3,1],[2,3,3,2],[2,2,2,0],[1,0,1,1]],[[0,1,2,2],[2,3,3,2],[2,2,2,0],[1,0,1,1]],[[0,1,2,1],[3,3,3,2],[2,2,2,0],[1,0,1,1]],[[0,1,2,1],[2,4,3,2],[2,2,2,0],[1,0,1,1]],[[0,1,2,1],[2,3,4,2],[2,2,2,0],[1,0,1,1]],[[0,1,2,1],[2,3,3,2],[3,2,2,0],[1,0,1,1]],[[0,1,3,1],[2,3,3,2],[2,2,2,0],[1,0,2,0]],[[0,1,2,2],[2,3,3,2],[2,2,2,0],[1,0,2,0]],[[0,1,2,1],[3,3,3,2],[2,2,2,0],[1,0,2,0]],[[0,1,2,1],[2,4,3,2],[2,2,2,0],[1,0,2,0]],[[0,1,2,1],[2,3,4,2],[2,2,2,0],[1,0,2,0]],[[0,1,2,1],[2,3,3,2],[3,2,2,0],[1,0,2,0]],[[0,1,2,1],[2,3,3,2],[2,2,2,0],[2,0,2,0]],[[0,1,3,1],[2,3,3,2],[2,2,2,0],[1,1,0,1]],[[0,1,2,2],[2,3,3,2],[2,2,2,0],[1,1,0,1]],[[0,1,2,1],[3,3,3,2],[2,2,2,0],[1,1,0,1]],[[0,1,2,1],[2,4,3,2],[2,2,2,0],[1,1,0,1]],[[0,1,2,1],[2,3,4,2],[2,2,2,0],[1,1,0,1]],[[0,1,2,1],[2,3,3,2],[3,2,2,0],[1,1,0,1]],[[0,1,2,1],[2,3,3,2],[2,2,2,0],[2,1,0,1]],[[0,1,3,1],[2,3,3,2],[2,2,2,0],[1,1,1,0]],[[0,1,2,2],[2,3,3,2],[2,2,2,0],[1,1,1,0]],[[0,1,2,1],[3,3,3,2],[2,2,2,0],[1,1,1,0]],[[0,1,2,1],[2,4,3,2],[2,2,2,0],[1,1,1,0]],[[0,1,2,1],[2,3,4,2],[2,2,2,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,2],[3,2,2,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,2],[2,2,2,0],[2,1,1,0]],[[2,2,2,1],[2,1,2,2],[1,3,3,1],[1,1,0,0]],[[0,1,3,1],[2,3,3,2],[2,2,2,0],[1,2,0,0]],[[0,1,2,2],[2,3,3,2],[2,2,2,0],[1,2,0,0]],[[0,1,2,1],[3,3,3,2],[2,2,2,0],[1,2,0,0]],[[0,1,2,1],[2,4,3,2],[2,2,2,0],[1,2,0,0]],[[0,1,2,1],[2,3,4,2],[2,2,2,0],[1,2,0,0]],[[0,1,2,1],[2,3,3,2],[3,2,2,0],[1,2,0,0]],[[0,1,2,1],[2,3,3,2],[2,2,2,0],[2,2,0,0]],[[1,2,2,1],[2,1,2,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[3,1,2,2],[1,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,1,2,2],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,1,2,2],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,1,2,2],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,1,2,2],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,2,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[3,1,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[2,1,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,1,2,2],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[2,1,2,2],[1,3,3,1],[0,0,2,0]],[[2,2,2,1],[2,1,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[2,1,2,3],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[3,1,2,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[2,1,2,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[2,1,2,2],[1,3,3,1],[0,0,1,1]],[[1,3,2,1],[2,1,2,2],[1,3,3,1],[0,0,1,1]],[[2,2,2,1],[2,1,2,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[2,1,2,3],[1,3,3,0],[0,0,2,1]],[[1,2,2,1],[3,1,2,2],[1,3,3,0],[0,0,2,1]],[[1,2,2,2],[2,1,2,2],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[2,1,2,2],[1,3,3,0],[0,0,2,1]],[[1,3,2,1],[2,1,2,2],[1,3,3,0],[0,0,2,1]],[[2,2,2,1],[2,1,2,2],[1,3,3,0],[0,0,2,1]],[[1,2,2,1],[2,1,2,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[2,1,2,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[3,1,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[2,1,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[2,1,2,2],[1,3,2,2],[0,0,2,0]],[[1,3,2,1],[2,1,2,2],[1,3,2,2],[0,0,2,0]],[[2,2,2,1],[2,1,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[2,1,2,2],[1,3,2,2],[0,0,1,2]],[[1,2,2,1],[2,1,2,2],[1,3,2,3],[0,0,1,1]],[[1,2,2,1],[2,1,2,3],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[3,1,2,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[2,1,2,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[2,1,2,2],[1,3,2,2],[0,0,1,1]],[[1,3,2,1],[2,1,2,2],[1,3,2,2],[0,0,1,1]],[[2,2,2,1],[2,1,2,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[2,1,2,3],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,1,2,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,2],[2,1,2,2],[1,3,2,1],[1,2,0,0]],[[1,2,3,1],[2,1,2,2],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,1,2,2],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,1,2,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,2,3],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,1,2,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,1,2,2],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,1,2,2],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,1,2,2],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,1,2,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,2,3],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,1,2,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,2],[2,1,2,2],[1,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,1,2,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,1,2,2],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,1,2,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,2,3],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,1,2,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,1,2,2],[1,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,1,2,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,1,2,2],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,1,2,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,2,3],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[3,1,2,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,2],[2,1,2,2],[1,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,1,2,2],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,1,2,2],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,1,2,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,1,2,3],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,1,2,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,1,2,2],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,1,2,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,1,2,2],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,1,2,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,2,3],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,1,2,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,1,2,2],[1,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,1,2,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,1,2,2],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,1,2,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,2,3],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,1,2,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,1,2,2],[1,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,1,2,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,1,2,2],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,1,2,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,2,3],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[3,1,2,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,2],[2,1,2,2],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,1,2,2],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,1,2,2],[1,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,1,2,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[2,1,2,2],[1,3,2,0],[1,3,1,0]],[[1,2,2,1],[2,1,2,2],[1,3,2,0],[2,2,1,0]],[[1,2,2,1],[2,1,2,2],[1,4,2,0],[1,2,1,0]],[[1,2,2,1],[2,1,2,3],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[1,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,1,2,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,1,2,2],[1,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,1,2,2],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,1,2,2],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,1,2,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,1,2,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,1,2,2],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,1,2,2],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,1,2,2],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,1,2,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,2,3],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[3,1,2,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,1,2,2],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,1,2,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,1,2,2],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,1,2,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,2,3],[1,3,1,2],[1,2,0,0]],[[1,2,2,1],[3,1,2,2],[1,3,1,2],[1,2,0,0]],[[1,2,2,2],[2,1,2,2],[1,3,1,2],[1,2,0,0]],[[1,2,3,1],[2,1,2,2],[1,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,1,2,2],[1,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,1,2,2],[1,3,1,2],[1,2,0,0]],[[0,1,3,1],[2,3,3,2],[2,2,3,0],[0,2,0,0]],[[0,1,2,2],[2,3,3,2],[2,2,3,0],[0,2,0,0]],[[0,1,2,1],[3,3,3,2],[2,2,3,0],[0,2,0,0]],[[0,1,2,1],[2,4,3,2],[2,2,3,0],[0,2,0,0]],[[0,1,2,1],[2,3,4,2],[2,2,3,0],[0,2,0,0]],[[0,1,2,1],[2,3,3,2],[3,2,3,0],[0,2,0,0]],[[1,2,2,1],[2,1,2,2],[1,3,1,3],[1,1,1,0]],[[1,2,2,1],[2,1,2,3],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[3,1,2,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,1,2,2],[1,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,1,2,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,1,2,2],[1,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,1,2,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,2,2],[1,3,1,2],[1,1,0,2]],[[1,2,2,1],[2,1,2,2],[1,3,1,3],[1,1,0,1]],[[1,2,2,1],[2,1,2,3],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,1,2,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,2],[2,1,2,2],[1,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,1,2,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,1,2,2],[1,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,1,2,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,2,2],[1,3,1,3],[1,0,2,0]],[[1,2,2,1],[2,1,2,3],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[3,1,2,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,1,2,2],[1,3,1,2],[1,0,2,0]],[[0,1,3,1],[2,3,3,2],[2,2,3,0],[1,1,0,0]],[[0,1,2,2],[2,3,3,2],[2,2,3,0],[1,1,0,0]],[[0,1,2,1],[3,3,3,2],[2,2,3,0],[1,1,0,0]],[[0,1,2,1],[2,4,3,2],[2,2,3,0],[1,1,0,0]],[[0,1,2,1],[2,3,4,2],[2,2,3,0],[1,1,0,0]],[[0,1,2,1],[2,3,3,2],[3,2,3,0],[1,1,0,0]],[[0,1,2,1],[2,3,3,2],[2,2,3,0],[2,1,0,0]],[[1,2,3,1],[2,1,2,2],[1,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,1,2,2],[1,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,1,2,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,2,2],[1,3,1,2],[1,0,1,2]],[[1,2,2,1],[2,1,2,2],[1,3,1,3],[1,0,1,1]],[[1,2,2,1],[2,1,2,3],[1,3,1,2],[1,0,1,1]],[[1,2,2,1],[3,1,2,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,1,2,2],[1,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,1,2,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,1,2,2],[1,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,1,2,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,1],[2,1,2,2],[1,3,1,3],[0,2,1,0]],[[1,2,2,1],[2,1,2,3],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,1,2,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,1,2,2],[1,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,1,2,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,1,2,2],[1,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,1,2,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,2,2],[1,3,1,2],[0,2,0,2]],[[1,2,2,1],[2,1,2,2],[1,3,1,3],[0,2,0,1]],[[1,2,2,1],[2,1,2,3],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[3,1,2,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,2],[2,1,2,2],[1,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,1,2,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,1,2,2],[1,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,1,2,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,1,2,2],[1,3,1,3],[0,1,2,0]],[[1,2,2,1],[2,1,2,3],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[3,1,2,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,1,2,2],[1,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,1,2,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,1,2,2],[1,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,1,2,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[1,3,1,2],[0,1,1,2]],[[1,2,2,1],[2,1,2,2],[1,3,1,3],[0,1,1,1]],[[1,2,2,1],[2,1,2,3],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[3,1,2,2],[1,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,1,2,2],[1,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,1,2,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,1,2,2],[1,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,1,2,2],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,2,3],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,1,2,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[1,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[1,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[1,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,2,3],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,1,2,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,1,2,2],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,1,2,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,1,2,2],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,1,2,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,2,2],[1,3,1,0],[1,3,2,0]],[[1,2,2,1],[2,1,2,2],[1,3,1,0],[2,2,2,0]],[[1,2,2,1],[2,1,2,2],[1,4,1,0],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,1,2,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[1,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,2,3],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[3,1,2,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,1,2,2],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,1,2,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,1,2,2],[1,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,1,2,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,2,2],[1,3,0,3],[1,1,2,0]],[[1,2,2,1],[2,1,2,3],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,1,2,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[1,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[1,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[1,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[1,3,0,2],[1,1,1,2]],[[1,2,2,1],[2,1,2,2],[1,3,0,3],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[1,3,0,2],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[1,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[1,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,2,2],[1,3,0,2],[1,0,2,2]],[[1,2,2,1],[2,1,2,2],[1,3,0,2],[1,0,3,1]],[[1,2,2,1],[2,1,2,2],[1,3,0,3],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[3,1,2,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,1,2,2],[1,3,0,2],[1,0,2,1]],[[1,2,3,1],[2,1,2,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,1,2,2],[1,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,1,2,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,1,2,2],[1,3,0,3],[0,2,2,0]],[[1,2,2,1],[2,1,2,3],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,1,2,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,1,2,2],[1,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,1,2,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,1,2,2],[1,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,1,2,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,1,2,2],[1,3,0,2],[0,2,1,2]],[[1,2,2,1],[2,1,2,2],[1,3,0,3],[0,2,1,1]],[[1,2,2,1],[2,1,2,3],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[3,1,2,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,2],[2,1,2,2],[1,3,0,2],[0,2,1,1]],[[1,2,3,1],[2,1,2,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,1,2,2],[1,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,1,2,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,1,2,2],[1,3,0,2],[0,1,2,2]],[[1,2,2,1],[2,1,2,2],[1,3,0,2],[0,1,3,1]],[[1,2,2,1],[2,1,2,2],[1,3,0,3],[0,1,2,1]],[[1,2,2,1],[2,1,2,3],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[3,1,2,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,1,2,2],[1,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,1,2,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,1,2,2],[1,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,1,2,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[2,1,2,3],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[3,1,2,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[1,3,0,1],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[1,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[1,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,1,2,3],[1,3,0,1],[0,2,2,1]],[[1,2,2,1],[3,1,2,2],[1,3,0,1],[0,2,2,1]],[[1,2,2,2],[2,1,2,2],[1,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,1,2,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,1,2,2],[1,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,1,2,2],[1,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,1,2,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[2,1,2,3],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[3,1,2,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,1,2,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,1,2,2],[1,2,3,2],[1,0,0,1]],[[1,3,2,1],[2,1,2,2],[1,2,3,2],[1,0,0,1]],[[2,2,2,1],[2,1,2,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[2,1,2,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,1],[2,1,2,3],[1,2,3,2],[0,1,0,1]],[[1,2,2,1],[3,1,2,2],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,1,2,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,1],[2,1,2,2],[1,2,3,2],[0,1,0,1]],[[1,3,2,1],[2,1,2,2],[1,2,3,2],[0,1,0,1]],[[2,2,2,1],[2,1,2,2],[1,2,3,2],[0,1,0,1]],[[1,2,2,1],[2,1,2,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[3,1,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,1,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,1,2,2],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,1,2,2],[1,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,1,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,2,3],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[3,1,2,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,1,2,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,1,2,2],[1,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,1,2,2],[1,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,1,2,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,1,2,3],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[3,1,2,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,1,2,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,1,2,2],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,1,2,2],[1,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,1,2,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,2,3],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[3,1,2,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,1,2,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,1,2,2],[1,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,1,2,2],[1,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,1,2,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,1,2,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[3,1,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,1,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,1,2,2],[1,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,1,2,2],[1,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,1,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,2,3],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[3,1,2,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,1,2,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,1,2,2],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,1,2,2],[1,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,1,2,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,2,3],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[3,1,2,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,1,2,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,1,2,2],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,1,2,2],[1,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,1,2,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,2,3],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[3,1,2,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,1,2,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,1,2,2],[1,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,1,2,2],[1,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,1,2,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,1,2,3],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[3,1,2,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,1,2,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[2,1,2,2],[1,2,3,1],[0,0,2,1]],[[1,3,2,1],[2,1,2,2],[1,2,3,1],[0,0,2,1]],[[2,2,2,1],[2,1,2,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[2,1,2,3],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[1,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[1,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[3,1,2,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,1,2,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,1,2,2],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,1,2,2],[1,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,1,2,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[3,1,2,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,2],[2,1,2,2],[1,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,1,2,2],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,1,2,2],[1,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,1,2,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,2,3],[1,2,3,0],[0,1,2,1]],[[1,2,2,1],[3,1,2,2],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,1,2,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,1,2,2],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,1,2,2],[1,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,1,2,2],[1,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,1,2,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,1],[2,1,2,3],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[3,1,2,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,1,2,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,1,2,2],[1,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,1,2,2],[1,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,1,2,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,2,2],[1,2,2,2],[1,1,0,2]],[[1,2,2,1],[2,1,2,2],[1,2,2,3],[1,1,0,1]],[[1,2,2,1],[2,1,2,3],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[3,1,2,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,1,2,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,1,2,2],[1,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,1,2,2],[1,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,1,2,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,1,2,2],[1,2,2,3],[1,0,2,0]],[[1,2,2,1],[2,1,2,3],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[3,1,2,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,1,2,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,1,2,2],[1,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,1,2,2],[1,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,1,2,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,2,2],[1,2,2,2],[1,0,1,2]],[[1,2,2,1],[2,1,2,2],[1,2,2,3],[1,0,1,1]],[[1,2,2,1],[2,1,2,3],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[3,1,2,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,1,2,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,1,2,2],[1,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,1,2,2],[1,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,1,2,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,1,2,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,1],[2,1,2,3],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[3,1,2,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,1,2,2],[1,2,2,2],[0,2,1,0]],[[0,1,2,1],[3,3,3,2],[2,3,0,0],[0,2,2,0]],[[0,1,2,1],[2,4,3,2],[2,3,0,0],[0,2,2,0]],[[0,1,2,1],[2,3,3,2],[3,3,0,0],[0,2,2,0]],[[0,1,2,1],[3,3,3,2],[2,3,0,0],[1,1,2,0]],[[0,1,2,1],[2,4,3,2],[2,3,0,0],[1,1,2,0]],[[0,1,2,1],[2,3,3,2],[3,3,0,0],[1,1,2,0]],[[0,1,2,1],[2,3,3,2],[2,3,0,0],[2,1,2,0]],[[0,1,2,1],[3,3,3,2],[2,3,0,0],[1,2,1,0]],[[0,1,2,1],[2,4,3,2],[2,3,0,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,2],[3,3,0,0],[1,2,1,0]],[[0,1,2,1],[2,3,3,2],[2,3,0,0],[2,2,1,0]],[[1,2,3,1],[2,1,2,2],[1,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,1,2,2],[1,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,1,2,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,2,2],[1,2,2,2],[0,2,0,2]],[[1,2,2,1],[2,1,2,2],[1,2,2,3],[0,2,0,1]],[[1,2,2,1],[2,1,2,3],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[3,1,2,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,1,2,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,1,2,2],[1,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,1,2,2],[1,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,1,2,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,2,2],[1,2,2,3],[0,1,2,0]],[[1,2,2,1],[2,1,2,3],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[3,1,2,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,1,2,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,1,2,2],[1,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,1,2,2],[1,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,1,2,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[1,2,2,2],[0,1,1,2]],[[1,2,2,1],[2,1,2,2],[1,2,2,3],[0,1,1,1]],[[1,2,2,1],[2,1,2,3],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[3,1,2,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,1,2,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,1,2,2],[1,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,1,2,2],[1,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,1,2,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,2,2],[1,2,2,2],[0,0,2,2]],[[1,2,2,1],[2,1,2,2],[1,2,2,3],[0,0,2,1]],[[1,2,2,1],[2,1,2,3],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[3,1,2,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,1,2,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,1,2,2],[1,2,2,2],[0,0,2,1]],[[1,3,2,1],[2,1,2,2],[1,2,2,2],[0,0,2,1]],[[2,2,2,1],[2,1,2,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[2,1,2,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,1],[2,1,2,2],[1,2,1,2],[1,0,3,1]],[[1,2,2,1],[2,1,2,2],[1,2,1,3],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[3,1,2,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[2,1,2,2],[1,2,1,2],[1,0,2,1]],[[1,2,3,1],[2,1,2,2],[1,2,1,2],[1,0,2,1]],[[1,3,2,1],[2,1,2,2],[1,2,1,2],[1,0,2,1]],[[2,2,2,1],[2,1,2,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,1,2,2],[1,2,1,2],[0,1,2,2]],[[1,2,2,1],[2,1,2,2],[1,2,1,2],[0,1,3,1]],[[1,2,2,1],[2,1,2,2],[1,2,1,3],[0,1,2,1]],[[1,2,2,1],[2,1,2,3],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[3,1,2,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,1,2,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,1,2,2],[1,2,1,2],[0,1,2,1]],[[1,3,2,1],[2,1,2,2],[1,2,1,2],[0,1,2,1]],[[2,2,2,1],[2,1,2,2],[1,2,1,2],[0,1,2,1]],[[0,1,3,1],[2,3,3,2],[2,3,0,2],[1,0,0,1]],[[0,1,2,2],[2,3,3,2],[2,3,0,2],[1,0,0,1]],[[0,1,2,1],[2,3,3,3],[2,3,0,2],[1,0,0,1]],[[0,1,3,1],[2,3,3,2],[2,3,0,2],[1,0,1,0]],[[0,1,2,2],[2,3,3,2],[2,3,0,2],[1,0,1,0]],[[0,1,2,1],[2,3,3,3],[2,3,0,2],[1,0,1,0]],[[1,2,2,1],[2,1,2,2],[1,2,0,2],[0,2,2,2]],[[1,2,2,1],[2,1,2,2],[1,2,0,2],[0,2,3,1]],[[1,2,2,1],[2,1,2,2],[1,2,0,2],[0,3,2,1]],[[1,2,2,1],[2,1,2,2],[1,2,0,3],[0,2,2,1]],[[1,2,2,1],[2,1,2,3],[1,2,0,2],[0,2,2,1]],[[1,2,2,1],[3,1,2,2],[1,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,2,2],[1,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,2,2],[1,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,1,2,2],[1,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,2,2],[1,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,2,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,2,3],[1,1,3,2],[1,0,2,0]],[[1,2,2,2],[2,1,2,2],[1,1,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,2,2],[1,1,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,2,2],[1,1,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,2,2],[1,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,2,2],[1,1,3,2],[1,0,1,2]],[[1,2,2,1],[2,1,2,2],[1,1,3,3],[1,0,1,1]],[[1,2,2,1],[2,1,2,3],[1,1,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,2,2],[1,1,3,2],[1,0,1,1]],[[1,2,3,1],[2,1,2,2],[1,1,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,2,2],[1,1,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,2,2],[1,1,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,2,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,1],[2,1,2,3],[1,1,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,2,2],[1,1,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,2,2],[1,1,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,2,2],[1,1,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,2,2],[1,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,2],[1,1,3,2],[0,1,1,2]],[[1,2,2,1],[2,1,2,2],[1,1,3,3],[0,1,1,1]],[[1,2,2,1],[2,1,2,3],[1,1,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,2,2],[1,1,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,2,2],[1,1,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,2,2],[1,1,3,2],[0,1,1,1]],[[2,2,2,1],[2,1,2,2],[1,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,2,2],[1,1,3,2],[0,0,2,2]],[[1,2,2,1],[2,1,2,2],[1,1,3,3],[0,0,2,1]],[[1,2,2,1],[2,1,2,3],[1,1,3,2],[0,0,2,1]],[[1,2,2,2],[2,1,2,2],[1,1,3,2],[0,0,2,1]],[[1,2,3,1],[2,1,2,2],[1,1,3,2],[0,0,2,1]],[[1,3,2,1],[2,1,2,2],[1,1,3,2],[0,0,2,1]],[[2,2,2,1],[2,1,2,2],[1,1,3,2],[0,0,2,1]],[[0,1,2,1],[3,3,3,2],[2,3,1,0],[0,2,0,1]],[[0,1,2,1],[2,4,3,2],[2,3,1,0],[0,2,0,1]],[[0,1,2,1],[2,3,3,2],[3,3,1,0],[0,2,0,1]],[[0,1,2,1],[3,3,3,2],[2,3,1,0],[0,2,1,0]],[[0,1,2,1],[2,4,3,2],[2,3,1,0],[0,2,1,0]],[[0,1,2,1],[2,3,3,2],[3,3,1,0],[0,2,1,0]],[[0,1,2,1],[3,3,3,2],[2,3,1,0],[1,1,0,1]],[[0,1,2,1],[2,4,3,2],[2,3,1,0],[1,1,0,1]],[[0,1,2,1],[2,3,3,2],[3,3,1,0],[1,1,0,1]],[[0,1,2,1],[2,3,3,2],[2,3,1,0],[2,1,0,1]],[[0,1,2,1],[3,3,3,2],[2,3,1,0],[1,1,1,0]],[[0,1,2,1],[2,4,3,2],[2,3,1,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,2],[3,3,1,0],[1,1,1,0]],[[0,1,2,1],[2,3,3,2],[2,3,1,0],[2,1,1,0]],[[1,2,2,1],[2,1,2,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[3,1,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,1,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,1,2,2],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,1,2,2],[1,1,3,1],[0,2,2,0]],[[0,1,2,1],[3,3,3,2],[2,3,1,0],[1,2,0,0]],[[0,1,2,1],[2,4,3,2],[2,3,1,0],[1,2,0,0]],[[0,1,2,1],[2,3,3,2],[3,3,1,0],[1,2,0,0]],[[0,1,2,1],[2,3,3,2],[2,3,1,0],[2,2,0,0]],[[2,2,2,1],[2,1,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,1,2,3],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[3,1,2,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,1,2,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,1,2,2],[1,1,3,1],[0,2,1,1]],[[1,3,2,1],[2,1,2,2],[1,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,1,2,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,2,3],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[3,1,2,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,1,2,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,1,2,2],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,1,2,2],[1,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,1,2,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,1,2,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,1],[2,1,2,3],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[3,1,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,1,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[2,1,2,2],[1,1,2,2],[0,2,2,0]],[[1,3,2,1],[2,1,2,2],[1,1,2,2],[0,2,2,0]],[[2,2,2,1],[2,1,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,2,2],[1,1,2,2],[0,2,1,2]],[[1,2,2,1],[2,1,2,2],[1,1,2,3],[0,2,1,1]],[[1,2,2,1],[2,1,2,3],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[3,1,2,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,1,2,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[2,1,2,2],[1,1,2,2],[0,2,1,1]],[[1,3,2,1],[2,1,2,2],[1,1,2,2],[0,2,1,1]],[[2,2,2,1],[2,1,2,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[2,1,2,2],[1,1,1,2],[0,2,2,2]],[[1,2,2,1],[2,1,2,2],[1,1,1,2],[0,2,3,1]],[[1,2,2,1],[2,1,2,2],[1,1,1,2],[0,3,2,1]],[[1,2,2,1],[2,1,2,2],[1,1,1,3],[0,2,2,1]],[[1,2,2,1],[2,1,2,3],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[3,1,2,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,1,2,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,1,2,2],[1,1,1,2],[0,2,2,1]],[[1,3,2,1],[2,1,2,2],[1,1,1,2],[0,2,2,1]],[[2,2,2,1],[2,1,2,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,2,2],[1,1,0,2],[1,2,2,2]],[[1,2,2,1],[2,1,2,2],[1,1,0,2],[1,2,3,1]],[[1,2,2,1],[2,1,2,2],[1,1,0,2],[1,3,2,1]],[[1,2,2,1],[2,1,2,2],[1,1,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,2,2],[1,1,0,3],[1,2,2,1]],[[1,2,2,1],[2,1,2,3],[1,1,0,2],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[1,1,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[1,1,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[1,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[1,1,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[1,1,0,2],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[2,1,2,3],[1,0,3,2],[0,2,2,0]],[[1,2,2,2],[2,1,2,2],[1,0,3,2],[0,2,2,0]],[[1,2,3,1],[2,1,2,2],[1,0,3,2],[0,2,2,0]],[[1,3,2,1],[2,1,2,2],[1,0,3,2],[0,2,2,0]],[[2,2,2,1],[2,1,2,2],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,2,2],[1,0,3,2],[0,2,1,2]],[[1,2,2,1],[2,1,2,2],[1,0,3,3],[0,2,1,1]],[[1,2,2,1],[2,1,2,3],[1,0,3,2],[0,2,1,1]],[[1,2,2,2],[2,1,2,2],[1,0,3,2],[0,2,1,1]],[[1,2,3,1],[2,1,2,2],[1,0,3,2],[0,2,1,1]],[[1,3,2,1],[2,1,2,2],[1,0,3,2],[0,2,1,1]],[[2,2,2,1],[2,1,2,2],[1,0,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,2,2],[1,0,3,2],[0,1,2,2]],[[1,2,2,1],[2,1,2,2],[1,0,3,3],[0,1,2,1]],[[1,2,2,1],[2,1,2,3],[1,0,3,2],[0,1,2,1]],[[1,2,2,2],[2,1,2,2],[1,0,3,2],[0,1,2,1]],[[1,2,3,1],[2,1,2,2],[1,0,3,2],[0,1,2,1]],[[1,3,2,1],[2,1,2,2],[1,0,3,2],[0,1,2,1]],[[2,2,2,1],[2,1,2,2],[1,0,3,2],[0,1,2,1]],[[1,2,2,1],[2,1,2,3],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[1,0,3,1],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[1,0,3,1],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[3,1,2,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[1,0,3,1],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[1,0,3,1],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[1,0,3,1],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[1,0,3,0],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[1,0,3,0],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[1,0,3,0],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[1,0,2,3],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[1,0,2,2],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[1,0,2,2],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[1,0,2,2],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[1,0,2,2],[1,2,1,2]],[[1,2,2,1],[2,1,2,2],[1,0,2,3],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[3,1,2,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[1,0,2,2],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[1,0,2,2],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[1,0,2,2],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[2,1,2,2],[1,0,2,2],[0,2,2,2]],[[1,2,2,1],[2,1,2,2],[1,0,2,2],[0,2,3,1]],[[1,2,2,1],[2,1,2,2],[1,0,2,3],[0,2,2,1]],[[1,2,2,1],[2,1,2,3],[1,0,2,2],[0,2,2,1]],[[1,2,2,2],[2,1,2,2],[1,0,2,2],[0,2,2,1]],[[1,2,3,1],[2,1,2,2],[1,0,2,2],[0,2,2,1]],[[1,3,2,1],[2,1,2,2],[1,0,2,2],[0,2,2,1]],[[2,2,2,1],[2,1,2,2],[1,0,2,2],[0,2,2,1]],[[1,2,2,1],[2,1,2,2],[1,0,1,2],[1,2,2,2]],[[1,2,2,1],[2,1,2,2],[1,0,1,2],[1,2,3,1]],[[1,2,2,1],[2,1,2,2],[1,0,1,2],[1,3,2,1]],[[1,2,2,1],[2,1,2,2],[1,0,1,2],[2,2,2,1]],[[1,2,2,1],[2,1,2,2],[1,0,1,3],[1,2,2,1]],[[1,2,2,1],[2,1,2,3],[1,0,1,2],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[1,0,1,2],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[1,0,1,2],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[1,0,1,2],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[1,0,1,2],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[1,0,1,2],[1,2,2,1]],[[1,2,2,1],[2,1,2,3],[0,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,1,2,2],[0,3,3,1],[1,2,0,0]],[[1,2,2,2],[2,1,2,2],[0,3,3,1],[1,2,0,0]],[[1,2,3,1],[2,1,2,2],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,1,2,2],[0,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,1,2,2],[0,3,3,1],[1,2,0,0]],[[1,2,2,1],[2,1,2,3],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[3,1,2,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,2],[2,1,2,2],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[2,1,2,2],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[2,1,2,2],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[2,1,2,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,2,3],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[3,1,2,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,2],[2,1,2,2],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[2,1,2,2],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[2,1,2,2],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,1,2,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,2,3],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[3,1,2,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[0,3,2,1],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[2,1,2,3],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[0,3,2,1],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[3,1,2,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[0,3,2,0],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[0,3,2,0],[1,1,2,1]],[[1,2,2,1],[3,1,2,2],[0,3,2,0],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[0,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[0,3,2,0],[1,1,2,1]],[[0,1,3,1],[2,3,3,2],[2,3,2,0],[1,0,0,1]],[[0,1,2,2],[2,3,3,2],[2,3,2,0],[1,0,0,1]],[[0,1,2,1],[3,3,3,2],[2,3,2,0],[1,0,0,1]],[[0,1,2,1],[2,4,3,2],[2,3,2,0],[1,0,0,1]],[[0,1,2,1],[2,3,4,2],[2,3,2,0],[1,0,0,1]],[[0,1,2,1],[2,3,3,2],[3,3,2,0],[1,0,0,1]],[[0,1,3,1],[2,3,3,2],[2,3,2,0],[1,0,1,0]],[[0,1,2,2],[2,3,3,2],[2,3,2,0],[1,0,1,0]],[[0,1,2,1],[3,3,3,2],[2,3,2,0],[1,0,1,0]],[[0,1,2,1],[2,4,3,2],[2,3,2,0],[1,0,1,0]],[[0,1,2,1],[2,3,4,2],[2,3,2,0],[1,0,1,0]],[[0,1,2,1],[2,3,3,2],[3,3,2,0],[1,0,1,0]],[[1,2,2,1],[2,1,2,2],[0,3,1,3],[1,2,1,0]],[[1,2,2,1],[2,1,2,3],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[3,1,2,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,2],[2,1,2,2],[0,3,1,2],[1,2,1,0]],[[1,2,3,1],[2,1,2,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,1],[2,1,2,2],[0,3,1,2],[1,2,1,0]],[[2,2,2,1],[2,1,2,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,2],[0,3,1,2],[1,2,0,2]],[[1,2,2,1],[2,1,2,2],[0,3,1,3],[1,2,0,1]],[[1,2,2,1],[2,1,2,3],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[3,1,2,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,2],[2,1,2,2],[0,3,1,2],[1,2,0,1]],[[1,2,3,1],[2,1,2,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[2,1,2,2],[0,3,1,2],[1,2,0,1]],[[2,2,2,1],[2,1,2,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[2,1,2,2],[0,3,1,3],[1,1,2,0]],[[1,2,2,1],[2,1,2,3],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,1,2,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[0,3,1,2],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[0,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[0,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[0,3,1,2],[1,1,1,2]],[[1,2,2,1],[2,1,2,2],[0,3,1,3],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[0,3,1,2],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[0,3,1,2],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[0,3,1,2],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[0,3,1,0],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[0,3,0,3],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[0,3,0,2],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[0,3,0,2],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[0,3,0,2],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[0,3,0,2],[1,2,1,2]],[[1,2,2,1],[2,1,2,2],[0,3,0,3],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[3,1,2,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[0,3,0,2],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[0,3,0,2],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,2,2],[0,3,0,2],[1,1,2,2]],[[1,2,2,1],[2,1,2,2],[0,3,0,2],[1,1,3,1]],[[1,2,2,1],[2,1,2,2],[0,3,0,3],[1,1,2,1]],[[1,2,2,1],[2,1,2,3],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,1,2,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[0,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[0,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,2,3],[0,3,0,1],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[0,3,0,1],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[0,3,0,1],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,1,2,3],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,1,2,2],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,1,2,2],[0,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,1,2,2],[0,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,1,2,2],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,2,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[3,1,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[2,1,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[2,1,2,2],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[2,1,2,2],[0,2,3,1],[1,2,1,0]],[[2,2,2,1],[2,1,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,2,3],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[3,1,2,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[2,1,2,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[2,1,2,2],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[2,1,2,2],[0,2,3,1],[1,2,0,1]],[[2,2,2,1],[2,1,2,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,2,3],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[3,1,2,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[0,2,3,1],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[2,1,2,3],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[0,2,3,1],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[2,1,2,2],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[2,1,2,2],[0,2,3,1],[1,0,2,1]],[[1,3,2,1],[2,1,2,2],[0,2,3,1],[1,0,2,1]],[[2,2,2,1],[2,1,2,2],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[3,1,2,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[0,2,3,0],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[3,1,2,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[0,2,3,0],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[2,1,2,2],[0,2,2,3],[1,2,1,0]],[[1,2,2,1],[2,1,2,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[3,1,2,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[2,1,2,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[2,1,2,2],[0,2,2,2],[1,2,1,0]],[[1,3,2,1],[2,1,2,2],[0,2,2,2],[1,2,1,0]],[[2,2,2,1],[2,1,2,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,2],[0,2,2,2],[1,2,0,2]],[[1,2,2,1],[2,1,2,2],[0,2,2,3],[1,2,0,1]],[[1,2,2,1],[2,1,2,3],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[3,1,2,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,2],[2,1,2,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[2,1,2,2],[0,2,2,2],[1,2,0,1]],[[1,3,2,1],[2,1,2,2],[0,2,2,2],[1,2,0,1]],[[2,2,2,1],[2,1,2,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[2,1,2,2],[0,2,2,3],[1,1,2,0]],[[1,2,2,1],[2,1,2,3],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[3,1,2,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[0,2,2,2],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[0,2,2,2],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[0,2,2,2],[1,1,1,2]],[[1,2,2,1],[2,1,2,2],[0,2,2,3],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[3,1,2,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[0,2,2,2],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[0,2,2,2],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[2,1,2,2],[0,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,2,2],[0,2,2,3],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[0,2,2,2],[1,0,2,1]],[[1,2,2,2],[2,1,2,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[2,1,2,2],[0,2,2,2],[1,0,2,1]],[[1,3,2,1],[2,1,2,2],[0,2,2,2],[1,0,2,1]],[[2,2,2,1],[2,1,2,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[2,1,2,2],[0,2,1,2],[1,1,2,2]],[[1,2,2,1],[2,1,2,2],[0,2,1,2],[1,1,3,1]],[[1,2,2,1],[2,1,2,2],[0,2,1,3],[1,1,2,1]],[[1,2,2,1],[2,1,2,3],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[3,1,2,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[0,2,1,2],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[0,2,1,2],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,2,2],[0,2,0,2],[1,2,2,2]],[[1,2,2,1],[2,1,2,2],[0,2,0,2],[1,2,3,1]],[[1,2,2,1],[2,1,2,2],[0,2,0,2],[1,3,2,1]],[[1,2,2,1],[2,1,2,2],[0,2,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,2,2],[0,2,0,3],[1,2,2,1]],[[1,2,2,1],[2,1,2,3],[0,2,0,2],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[0,2,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[0,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[0,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,1],[2,1,2,3],[0,1,3,2],[1,1,2,0]],[[1,2,2,2],[2,1,2,2],[0,1,3,2],[1,1,2,0]],[[1,2,3,1],[2,1,2,2],[0,1,3,2],[1,1,2,0]],[[1,3,2,1],[2,1,2,2],[0,1,3,2],[1,1,2,0]],[[2,2,2,1],[2,1,2,2],[0,1,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,2],[0,1,3,2],[1,1,1,2]],[[1,2,2,1],[2,1,2,2],[0,1,3,3],[1,1,1,1]],[[1,2,2,1],[2,1,2,3],[0,1,3,2],[1,1,1,1]],[[1,2,2,2],[2,1,2,2],[0,1,3,2],[1,1,1,1]],[[1,2,3,1],[2,1,2,2],[0,1,3,2],[1,1,1,1]],[[1,3,2,1],[2,1,2,2],[0,1,3,2],[1,1,1,1]],[[2,2,2,1],[2,1,2,2],[0,1,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,2,2],[0,1,3,2],[1,0,2,2]],[[1,2,2,1],[2,1,2,2],[0,1,3,3],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[0,1,3,2],[1,0,2,1]],[[1,2,2,2],[2,1,2,2],[0,1,3,2],[1,0,2,1]],[[1,2,3,1],[2,1,2,2],[0,1,3,2],[1,0,2,1]],[[1,3,2,1],[2,1,2,2],[0,1,3,2],[1,0,2,1]],[[2,2,2,1],[2,1,2,2],[0,1,3,2],[1,0,2,1]],[[1,2,2,1],[2,1,2,3],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[0,1,3,1],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[0,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[3,1,2,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[0,1,3,1],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[0,1,3,1],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[0,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[0,1,2,3],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[3,1,2,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[0,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[0,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[0,1,2,2],[1,2,1,2]],[[1,2,2,1],[2,1,2,2],[0,1,2,3],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[3,1,2,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[0,1,2,2],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[0,1,2,2],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[2,1,2,2],[0,1,1,2],[1,2,2,2]],[[1,2,2,1],[2,1,2,2],[0,1,1,2],[1,2,3,1]],[[1,2,2,1],[2,1,2,2],[0,1,1,2],[1,3,2,1]],[[1,2,2,1],[2,1,2,2],[0,1,1,2],[2,2,2,1]],[[1,2,2,1],[2,1,2,2],[0,1,1,3],[1,2,2,1]],[[1,2,2,1],[2,1,2,3],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[3,1,2,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[0,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[0,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[2,1,2,2],[0,0,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,2,3],[0,0,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,2,2],[0,0,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,2,2],[0,0,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,2,2],[0,0,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,2,2],[0,0,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,2],[0,0,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,2,2],[0,0,3,3],[1,2,1,1]],[[1,2,2,1],[2,1,2,3],[0,0,3,2],[1,2,1,1]],[[1,2,2,2],[2,1,2,2],[0,0,3,2],[1,2,1,1]],[[1,2,3,1],[2,1,2,2],[0,0,3,2],[1,2,1,1]],[[1,3,2,1],[2,1,2,2],[0,0,3,2],[1,2,1,1]],[[2,2,2,1],[2,1,2,2],[0,0,3,2],[1,2,1,1]],[[1,2,2,1],[2,1,2,2],[0,0,3,2],[1,1,2,2]],[[1,2,2,1],[2,1,2,2],[0,0,3,3],[1,1,2,1]],[[1,2,2,1],[2,1,2,3],[0,0,3,2],[1,1,2,1]],[[1,2,2,2],[2,1,2,2],[0,0,3,2],[1,1,2,1]],[[1,2,3,1],[2,1,2,2],[0,0,3,2],[1,1,2,1]],[[1,3,2,1],[2,1,2,2],[0,0,3,2],[1,1,2,1]],[[2,2,2,1],[2,1,2,2],[0,0,3,2],[1,1,2,1]],[[1,2,2,1],[2,1,2,2],[0,0,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,2,2],[0,0,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,2,2],[0,0,2,3],[1,2,2,1]],[[1,2,2,1],[2,1,2,3],[0,0,2,2],[1,2,2,1]],[[1,2,2,2],[2,1,2,2],[0,0,2,2],[1,2,2,1]],[[1,2,3,1],[2,1,2,2],[0,0,2,2],[1,2,2,1]],[[1,3,2,1],[2,1,2,2],[0,0,2,2],[1,2,2,1]],[[2,2,2,1],[2,1,2,2],[0,0,2,2],[1,2,2,1]],[[1,2,2,1],[2,1,2,1],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[2,1,2,1],[2,4,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,2,1],[3,3,3,1],[1,1,0,0]],[[1,2,2,1],[3,1,2,1],[2,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,1,2,1],[2,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,1,2,1],[2,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,1,2,1],[2,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,1,2,1],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,2,1],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,2,1],[3,3,3,1],[0,2,0,0]],[[1,2,2,1],[3,1,2,1],[2,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,1,2,1],[2,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,1,2,1],[2,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,1,2,1],[2,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,1,2,1],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,2,1],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[2,1,2,1],[2,4,3,0],[1,2,0,0]],[[1,2,2,1],[2,1,2,1],[3,3,3,0],[1,2,0,0]],[[1,2,2,1],[3,1,2,1],[2,3,3,0],[1,2,0,0]],[[1,2,2,2],[2,1,2,1],[2,3,3,0],[1,2,0,0]],[[1,2,3,1],[2,1,2,1],[2,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,1,2,1],[2,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,1,2,1],[2,3,3,0],[1,2,0,0]],[[1,2,2,1],[2,1,2,1],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[2,1,2,1],[2,4,3,0],[1,1,1,0]],[[1,2,2,1],[2,1,2,1],[3,3,3,0],[1,1,1,0]],[[1,2,2,1],[3,1,2,1],[2,3,3,0],[1,1,1,0]],[[1,2,2,2],[2,1,2,1],[2,3,3,0],[1,1,1,0]],[[1,2,3,1],[2,1,2,1],[2,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,1,2,1],[2,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,1,2,1],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,1,2,1],[2,3,3,0],[2,0,2,0]],[[1,2,2,1],[2,1,2,1],[2,4,3,0],[1,0,2,0]],[[1,2,2,1],[2,1,2,1],[3,3,3,0],[1,0,2,0]],[[1,2,2,1],[3,1,2,1],[2,3,3,0],[1,0,2,0]],[[1,2,2,2],[2,1,2,1],[2,3,3,0],[1,0,2,0]],[[1,2,3,1],[2,1,2,1],[2,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,1,2,1],[2,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,1,2,1],[2,3,3,0],[1,0,2,0]],[[0,1,3,1],[2,3,3,2],[2,3,3,0],[1,0,0,0]],[[0,1,2,2],[2,3,3,2],[2,3,3,0],[1,0,0,0]],[[0,1,2,1],[3,3,3,2],[2,3,3,0],[1,0,0,0]],[[0,1,2,1],[2,4,3,2],[2,3,3,0],[1,0,0,0]],[[0,1,2,1],[2,3,4,2],[2,3,3,0],[1,0,0,0]],[[0,1,2,1],[2,3,3,2],[3,3,3,0],[1,0,0,0]],[[1,2,2,1],[2,1,2,1],[2,3,3,0],[0,3,1,0]],[[1,2,2,1],[2,1,2,1],[2,4,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,2,1],[3,3,3,0],[0,2,1,0]],[[1,2,2,1],[3,1,2,1],[2,3,3,0],[0,2,1,0]],[[1,2,2,2],[2,1,2,1],[2,3,3,0],[0,2,1,0]],[[1,2,3,1],[2,1,2,1],[2,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,1,2,1],[2,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,1,2,1],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[2,1,2,1],[2,4,3,0],[0,1,2,0]],[[1,2,2,1],[2,1,2,1],[3,3,3,0],[0,1,2,0]],[[1,2,2,1],[3,1,2,1],[2,3,3,0],[0,1,2,0]],[[1,2,2,2],[2,1,2,1],[2,3,3,0],[0,1,2,0]],[[1,2,3,1],[2,1,2,1],[2,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,1,2,1],[2,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,1,2,1],[2,3,3,0],[0,1,2,0]],[[1,2,2,1],[2,1,2,1],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[2,1,2,1],[2,4,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,2,1],[3,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,1,2,1],[2,3,2,1],[1,2,0,0]],[[1,2,2,2],[2,1,2,1],[2,3,2,1],[1,2,0,0]],[[1,2,3,1],[2,1,2,1],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,1,2,1],[2,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,1,2,1],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,2,1],[2,3,2,1],[2,1,1,0]],[[1,2,2,1],[2,1,2,1],[2,4,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,2,1],[3,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,1,2,1],[2,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,1,2,1],[2,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,1,2,1],[2,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,1,2,1],[2,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,1,2,1],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,2,1],[2,3,2,1],[2,1,0,1]],[[1,2,2,1],[2,1,2,1],[2,4,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,2,1],[3,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,1,2,1],[2,3,2,1],[1,1,0,1]],[[1,2,2,2],[2,1,2,1],[2,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,1,2,1],[2,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,1,2,1],[2,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,1,2,1],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,2,1],[2,3,2,1],[2,0,2,0]],[[1,2,2,1],[2,1,2,1],[2,4,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,2,1],[3,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,1,2,1],[2,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,1,2,1],[2,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,1,2,1],[2,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,1,2,1],[2,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,1,2,1],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,2,1],[2,3,2,1],[2,0,1,1]],[[1,2,2,1],[2,1,2,1],[2,4,2,1],[1,0,1,1]],[[1,2,2,1],[2,1,2,1],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[3,1,2,1],[2,3,2,1],[1,0,1,1]],[[1,2,2,2],[2,1,2,1],[2,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,1,2,1],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,1,2,1],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,1,2,1],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,1,2,1],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[2,1,2,1],[2,4,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,2,1],[3,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,1,2,1],[2,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,1,2,1],[2,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,1,2,1],[2,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,1,2,1],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,1,2,1],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,2,1],[2,3,2,1],[0,3,0,1]],[[1,2,2,1],[2,1,2,1],[2,4,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,2,1],[3,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,1,2,1],[2,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,1,2,1],[2,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,1,2,1],[2,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,1,2,1],[2,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,1,2,1],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,2,1],[2,4,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,2,1],[3,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,1,2,1],[2,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,1,2,1],[2,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,1,2,1],[2,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,1,2,1],[2,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,1,2,1],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,2,1],[2,4,2,1],[0,1,1,1]],[[1,2,2,1],[2,1,2,1],[3,3,2,1],[0,1,1,1]],[[1,2,2,1],[3,1,2,1],[2,3,2,1],[0,1,1,1]],[[1,2,2,2],[2,1,2,1],[2,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,1,2,1],[2,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,1,2,1],[2,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,1,2,1],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[2,1,2,1],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[2,1,2,1],[2,4,2,0],[1,2,0,1]],[[1,2,2,1],[2,1,2,1],[3,3,2,0],[1,2,0,1]],[[1,2,2,1],[3,1,2,1],[2,3,2,0],[1,2,0,1]],[[1,2,2,2],[2,1,2,1],[2,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,1,2,1],[2,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,1,2,1],[2,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,1,2,1],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[2,1,2,1],[2,3,2,0],[2,1,1,1]],[[1,2,2,1],[2,1,2,1],[2,4,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,2,1],[3,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,1,2,1],[2,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,1,2,1],[2,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,1,2,1],[2,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,1,2,1],[2,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,1,2,1],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,2,1],[2,3,2,0],[2,0,2,1]],[[1,2,2,1],[2,1,2,1],[2,4,2,0],[1,0,2,1]],[[1,2,2,1],[2,1,2,1],[3,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,1,2,1],[2,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,1,2,1],[2,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,1,2,1],[2,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,1,2,1],[2,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,1,2,1],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,1,2,1],[2,3,2,0],[0,3,1,1]],[[1,2,2,1],[2,1,2,1],[2,4,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,2,1],[3,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,1,2,1],[2,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,1,2,1],[2,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,1,2,1],[2,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,1,2,1],[2,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,1,2,1],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,2,1],[2,4,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,2,1],[3,3,2,0],[0,1,2,1]],[[1,2,2,1],[3,1,2,1],[2,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,1,2,1],[2,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,1,2,1],[2,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,1,2,1],[2,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,1,2,1],[2,3,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,2,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,1,2,1],[2,4,1,2],[1,2,0,0]],[[1,2,2,1],[2,1,2,1],[3,3,1,2],[1,2,0,0]],[[1,2,2,1],[3,1,2,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,2],[2,1,2,1],[2,3,1,2],[1,2,0,0]],[[1,2,3,1],[2,1,2,1],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,1,2,1],[2,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,1,2,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[2,1,2,1],[2,3,1,2],[2,1,1,0]],[[1,2,2,1],[2,1,2,1],[2,4,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,2,1],[3,3,1,2],[1,1,1,0]],[[1,2,2,1],[3,1,2,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,1,2,1],[2,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,1,2,1],[2,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,1,2,1],[2,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,1,2,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,2,1],[2,3,1,2],[2,1,0,1]],[[1,2,2,1],[2,1,2,1],[2,4,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,2,1],[3,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,1,2,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,2],[2,1,2,1],[2,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,1,2,1],[2,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,1,2,1],[2,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,1,2,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,2,1],[2,3,1,2],[2,0,2,0]],[[1,2,2,1],[2,1,2,1],[2,4,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,2,1],[3,3,1,2],[1,0,2,0]],[[1,2,2,1],[3,1,2,1],[2,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,1,2,1],[2,3,1,2],[1,0,2,0]],[[1,2,3,1],[2,1,2,1],[2,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,1,2,1],[2,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,1,2,1],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,2,1],[2,3,1,2],[2,0,1,1]],[[1,2,2,1],[2,1,2,1],[2,4,1,2],[1,0,1,1]],[[1,2,2,1],[2,1,2,1],[3,3,1,2],[1,0,1,1]],[[1,2,2,1],[3,1,2,1],[2,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,1,2,1],[2,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,1,2,1],[2,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,1,2,1],[2,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,1,2,1],[2,3,1,2],[1,0,1,1]],[[1,2,2,1],[2,1,2,1],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[2,1,2,1],[2,4,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,2,1],[3,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,1,2,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,1,2,1],[2,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,1,2,1],[2,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,1,2,1],[2,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,1,2,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,2,1],[2,3,1,2],[0,3,0,1]],[[1,2,2,1],[2,1,2,1],[2,4,1,2],[0,2,0,1]],[[1,2,2,1],[2,1,2,1],[3,3,1,2],[0,2,0,1]],[[1,2,2,1],[3,1,2,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,2],[2,1,2,1],[2,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,1,2,1],[2,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,1,2,1],[2,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,1,2,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,1,2,1],[2,4,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,1],[3,3,1,2],[0,1,2,0]],[[1,2,2,1],[3,1,2,1],[2,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,1,2,1],[2,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,1,2,1],[2,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,1,2,1],[2,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,1,2,1],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,1],[2,4,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,2,1],[3,3,1,2],[0,1,1,1]],[[1,2,2,1],[3,1,2,1],[2,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,1,2,1],[2,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,1,2,1],[2,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,1,2,1],[2,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,1,2,1],[2,3,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,2,1],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[2,1,2,1],[2,4,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,2,1],[3,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,1,2,1],[2,3,1,1],[1,1,2,0]],[[1,2,2,2],[2,1,2,1],[2,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,1,2,1],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,1,2,1],[2,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,1,2,1],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,2,1],[2,3,1,1],[0,2,3,0]],[[1,2,2,1],[2,1,2,1],[2,3,1,1],[0,3,2,0]],[[1,2,2,1],[2,1,2,1],[2,4,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,2,1],[3,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,1,2,1],[2,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,1,2,1],[2,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,1,2,1],[2,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,1,2,1],[2,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,1,2,1],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,2,1],[2,3,1,0],[2,1,2,1]],[[1,2,2,1],[2,1,2,1],[2,4,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,2,1],[3,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,1,2,1],[2,3,1,0],[1,1,2,1]],[[1,2,2,2],[2,1,2,1],[2,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,1,2,1],[2,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,1,2,1],[2,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,1,2,1],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,2,1],[2,3,1,0],[0,2,2,2]],[[1,2,2,1],[2,1,2,1],[2,3,1,0],[0,2,3,1]],[[1,2,2,1],[2,1,2,1],[2,3,1,0],[0,3,2,1]],[[1,2,2,1],[2,1,2,1],[2,4,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,2,1],[3,3,1,0],[0,2,2,1]],[[1,2,2,1],[3,1,2,1],[2,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,1,2,1],[2,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,1,2,1],[2,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,1,2,1],[2,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,1,2,1],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,2,1],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[2,1,2,1],[2,4,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,1],[3,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,1,2,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,2],[2,1,2,1],[2,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,1,2,1],[2,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,1,2,1],[2,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,1,2,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,1],[2,3,0,2],[2,1,1,1]],[[1,2,2,1],[2,1,2,1],[2,4,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,2,1],[3,3,0,2],[1,1,1,1]],[[1,2,2,1],[3,1,2,1],[2,3,0,2],[1,1,1,1]],[[1,2,2,2],[2,1,2,1],[2,3,0,2],[1,1,1,1]],[[1,2,3,1],[2,1,2,1],[2,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,1,2,1],[2,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,1,2,1],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,2,1],[2,3,0,2],[2,0,2,1]],[[1,2,2,1],[2,1,2,1],[2,4,0,2],[1,0,2,1]],[[1,2,2,1],[2,1,2,1],[3,3,0,2],[1,0,2,1]],[[1,2,2,1],[3,1,2,1],[2,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,1,2,1],[2,3,0,2],[1,0,2,1]],[[1,2,3,1],[2,1,2,1],[2,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,1,2,1],[2,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,1,2,1],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,1,2,1],[2,3,0,2],[0,2,3,0]],[[1,2,2,1],[2,1,2,1],[2,3,0,2],[0,3,2,0]],[[1,2,2,1],[2,1,2,1],[2,4,0,2],[0,2,2,0]],[[1,2,2,1],[2,1,2,1],[3,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,1,2,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,1,2,1],[2,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,1,2,1],[2,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,1,2,1],[2,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,1,2,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,1,2,1],[2,3,0,2],[0,3,1,1]],[[1,2,2,1],[2,1,2,1],[2,4,0,2],[0,2,1,1]],[[1,2,2,1],[2,1,2,1],[3,3,0,2],[0,2,1,1]],[[1,2,2,1],[3,1,2,1],[2,3,0,2],[0,2,1,1]],[[1,2,2,2],[2,1,2,1],[2,3,0,2],[0,2,1,1]],[[1,2,3,1],[2,1,2,1],[2,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,1,2,1],[2,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,1,2,1],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,1,2,1],[2,4,0,2],[0,1,2,1]],[[1,2,2,1],[2,1,2,1],[3,3,0,2],[0,1,2,1]],[[1,2,2,1],[3,1,2,1],[2,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,1,2,1],[2,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,1,2,1],[2,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,1,2,1],[2,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,1,2,1],[2,3,0,2],[0,1,2,1]],[[1,2,2,1],[2,1,2,1],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[2,1,2,1],[2,3,0,1],[2,2,2,0]],[[1,2,2,1],[2,1,2,1],[3,3,0,1],[1,2,2,0]],[[1,2,2,1],[3,1,2,1],[2,3,0,1],[1,2,2,0]],[[1,2,2,2],[2,1,2,1],[2,3,0,1],[1,2,2,0]],[[1,2,3,1],[2,1,2,1],[2,3,0,1],[1,2,2,0]],[[1,3,2,1],[2,1,2,1],[2,3,0,1],[1,2,2,0]],[[2,2,2,1],[2,1,2,1],[2,3,0,1],[1,2,2,0]],[[1,2,2,1],[2,1,2,1],[2,3,0,1],[2,1,2,1]],[[1,2,2,1],[2,1,2,1],[2,4,0,1],[1,1,2,1]],[[1,2,2,1],[2,1,2,1],[3,3,0,1],[1,1,2,1]],[[1,2,2,1],[3,1,2,1],[2,3,0,1],[1,1,2,1]],[[1,2,2,2],[2,1,2,1],[2,3,0,1],[1,1,2,1]],[[1,2,3,1],[2,1,2,1],[2,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,1,2,1],[2,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,1,2,1],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,1,2,1],[2,3,0,1],[0,2,2,2]],[[1,2,2,1],[2,1,2,1],[2,3,0,1],[0,2,3,1]],[[1,2,2,1],[2,1,2,1],[2,3,0,1],[0,3,2,1]],[[1,2,2,1],[2,1,2,1],[2,4,0,1],[0,2,2,1]],[[1,2,2,1],[2,1,2,1],[3,3,0,1],[0,2,2,1]],[[1,2,2,1],[3,1,2,1],[2,3,0,1],[0,2,2,1]],[[1,2,2,2],[2,1,2,1],[2,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,1,2,1],[2,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,1,2,1],[2,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,1,2,1],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,1,2,1],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[2,1,2,1],[2,3,0,0],[2,2,2,1]],[[1,2,2,1],[2,1,2,1],[3,3,0,0],[1,2,2,1]],[[1,2,2,1],[3,1,2,1],[2,3,0,0],[1,2,2,1]],[[1,2,2,2],[2,1,2,1],[2,3,0,0],[1,2,2,1]],[[1,2,3,1],[2,1,2,1],[2,3,0,0],[1,2,2,1]],[[1,3,2,1],[2,1,2,1],[2,3,0,0],[1,2,2,1]],[[2,2,2,1],[2,1,2,1],[2,3,0,0],[1,2,2,1]],[[1,2,2,1],[2,1,2,1],[2,2,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,2,1],[2,2,3,0],[2,2,1,0]],[[1,2,2,1],[2,1,2,1],[3,2,3,0],[1,2,1,0]],[[1,2,2,1],[3,1,2,1],[2,2,3,0],[1,2,1,0]],[[1,2,2,2],[2,1,2,1],[2,2,3,0],[1,2,1,0]],[[1,2,3,1],[2,1,2,1],[2,2,3,0],[1,2,1,0]],[[1,3,2,1],[2,1,2,1],[2,2,3,0],[1,2,1,0]],[[2,2,2,1],[2,1,2,1],[2,2,3,0],[1,2,1,0]],[[1,2,2,1],[2,1,2,1],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,2,1],[2,2,2,1],[2,2,1,0]],[[1,2,2,1],[2,1,2,1],[3,2,2,1],[1,2,1,0]],[[1,2,2,1],[3,1,2,1],[2,2,2,1],[1,2,1,0]],[[1,2,2,2],[2,1,2,1],[2,2,2,1],[1,2,1,0]],[[1,2,3,1],[2,1,2,1],[2,2,2,1],[1,2,1,0]],[[1,3,2,1],[2,1,2,1],[2,2,2,1],[1,2,1,0]],[[2,2,2,1],[2,1,2,1],[2,2,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,2,1],[2,2,2,1],[1,3,0,1]],[[1,2,2,1],[2,1,2,1],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[2,1,2,1],[3,2,2,1],[1,2,0,1]],[[1,2,2,1],[3,1,2,1],[2,2,2,1],[1,2,0,1]],[[1,2,2,2],[2,1,2,1],[2,2,2,1],[1,2,0,1]],[[1,2,3,1],[2,1,2,1],[2,2,2,1],[1,2,0,1]],[[1,3,2,1],[2,1,2,1],[2,2,2,1],[1,2,0,1]],[[2,2,2,1],[2,1,2,1],[2,2,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,2,1],[2,2,2,0],[1,3,1,1]],[[1,2,2,1],[2,1,2,1],[2,2,2,0],[2,2,1,1]],[[1,2,2,1],[2,1,2,1],[3,2,2,0],[1,2,1,1]],[[1,2,2,1],[3,1,2,1],[2,2,2,0],[1,2,1,1]],[[1,2,2,2],[2,1,2,1],[2,2,2,0],[1,2,1,1]],[[1,2,3,1],[2,1,2,1],[2,2,2,0],[1,2,1,1]],[[0,2,0,0],[0,3,0,2],[2,4,3,2],[1,2,2,1]],[[0,2,0,0],[0,3,0,2],[2,3,3,2],[2,2,2,1]],[[0,2,0,0],[0,3,0,2],[2,3,3,2],[1,3,2,1]],[[0,2,0,0],[0,3,0,2],[2,3,3,2],[1,2,3,1]],[[0,2,0,0],[0,3,0,2],[2,3,3,2],[1,2,2,2]],[[0,2,0,0],[0,3,2,0],[2,4,3,2],[1,2,2,1]],[[0,2,0,0],[0,3,2,0],[2,3,3,2],[2,2,2,1]],[[0,2,0,0],[0,3,2,0],[2,3,3,2],[1,3,2,1]],[[0,2,0,0],[0,3,2,0],[2,3,3,2],[1,2,3,1]],[[0,2,0,0],[0,3,2,0],[2,3,3,2],[1,2,2,2]],[[0,2,0,0],[0,3,2,1],[2,4,3,1],[1,2,2,1]],[[0,2,0,0],[0,3,2,1],[2,3,3,1],[2,2,2,1]],[[0,2,0,0],[0,3,2,1],[2,3,3,1],[1,3,2,1]],[[0,2,0,0],[0,3,2,1],[2,3,3,1],[1,2,3,1]],[[0,2,0,0],[0,3,2,1],[2,3,3,1],[1,2,2,2]],[[0,2,0,0],[0,3,2,1],[2,4,3,2],[1,2,2,0]],[[0,2,0,0],[0,3,2,1],[2,3,3,2],[2,2,2,0]],[[0,2,0,0],[0,3,2,1],[2,3,3,2],[1,3,2,0]],[[0,2,0,0],[0,3,2,1],[2,3,3,2],[1,2,3,0]],[[1,3,2,1],[2,1,2,1],[2,2,2,0],[1,2,1,1]],[[2,2,2,1],[2,1,2,1],[2,2,2,0],[1,2,1,1]],[[0,2,0,0],[0,3,3,0],[2,2,4,2],[1,2,2,1]],[[0,2,0,0],[0,3,3,0],[2,2,3,2],[2,2,2,1]],[[0,2,0,0],[0,3,3,0],[2,2,3,2],[1,3,2,1]],[[0,2,0,0],[0,3,3,0],[2,2,3,2],[1,2,3,1]],[[0,2,0,0],[0,3,3,0],[2,2,3,2],[1,2,2,2]],[[0,2,0,0],[0,3,3,0],[2,4,2,2],[1,2,2,1]],[[0,2,0,0],[0,3,3,0],[2,3,2,2],[2,2,2,1]],[[0,2,0,0],[0,3,3,0],[2,3,2,2],[1,3,2,1]],[[0,2,0,0],[0,3,3,0],[2,3,2,2],[1,2,3,1]],[[0,2,0,0],[0,3,3,0],[2,3,2,2],[1,2,2,2]],[[0,2,0,0],[0,3,3,0],[2,4,3,2],[1,1,2,1]],[[0,2,0,0],[0,3,3,0],[2,3,4,2],[1,1,2,1]],[[0,2,0,0],[0,3,3,0],[2,3,3,2],[1,1,3,1]],[[0,2,0,0],[0,3,3,0],[2,3,3,2],[1,1,2,2]],[[0,2,0,0],[0,3,3,0],[2,4,3,2],[1,2,1,1]],[[0,2,0,0],[0,3,3,0],[2,3,4,2],[1,2,1,1]],[[0,2,0,0],[0,3,3,0],[2,3,3,2],[2,2,1,1]],[[0,2,0,0],[0,3,3,0],[2,3,3,2],[1,3,1,1]],[[0,2,0,0],[0,3,3,1],[2,2,2,3],[1,2,2,1]],[[0,2,0,0],[0,3,3,1],[2,2,2,2],[2,2,2,1]],[[0,2,0,0],[0,3,3,1],[2,2,2,2],[1,3,2,1]],[[0,2,0,0],[0,3,3,1],[2,2,2,2],[1,2,3,1]],[[0,2,0,0],[0,3,3,1],[2,2,2,2],[1,2,2,2]],[[0,2,0,0],[0,3,3,1],[2,2,4,1],[1,2,2,1]],[[0,2,0,0],[0,3,3,1],[2,2,3,1],[2,2,2,1]],[[0,2,0,0],[0,3,3,1],[2,2,3,1],[1,3,2,1]],[[0,2,0,0],[0,3,3,1],[2,2,3,1],[1,2,3,1]],[[0,2,0,0],[0,3,3,1],[2,2,3,1],[1,2,2,2]],[[0,2,0,0],[0,3,3,1],[2,2,4,2],[1,2,1,1]],[[0,2,0,0],[0,3,3,1],[2,2,3,3],[1,2,1,1]],[[0,2,0,0],[0,3,3,1],[2,2,3,2],[1,2,1,2]],[[0,2,0,0],[0,3,3,1],[2,2,4,2],[1,2,2,0]],[[0,2,0,0],[0,3,3,1],[2,2,3,3],[1,2,2,0]],[[0,2,0,0],[0,3,3,1],[2,2,3,2],[2,2,2,0]],[[0,2,0,0],[0,3,3,1],[2,2,3,2],[1,3,2,0]],[[0,2,0,0],[0,3,3,1],[2,2,3,2],[1,2,3,0]],[[0,2,0,0],[0,3,3,1],[2,4,1,2],[1,2,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,1,3],[1,2,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,1,2],[2,2,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,1,2],[1,3,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,1,2],[1,2,3,1]],[[0,2,0,0],[0,3,3,1],[2,3,1,2],[1,2,2,2]],[[0,2,0,0],[0,3,3,1],[2,4,2,1],[1,2,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,2,1],[2,2,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,2,1],[1,3,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,2,1],[1,2,3,1]],[[0,2,0,0],[0,3,3,1],[2,3,2,1],[1,2,2,2]],[[0,2,0,0],[0,3,3,1],[2,3,2,3],[1,1,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,2,2],[1,1,3,1]],[[0,2,0,0],[0,3,3,1],[2,3,2,2],[1,1,2,2]],[[0,2,0,0],[0,3,3,1],[2,4,2,2],[1,2,2,0]],[[0,2,0,0],[0,3,3,1],[2,3,2,2],[2,2,2,0]],[[0,2,0,0],[0,3,3,1],[2,3,2,2],[1,3,2,0]],[[0,2,0,0],[0,3,3,1],[2,3,2,2],[1,2,3,0]],[[0,2,0,0],[0,3,3,1],[2,4,3,0],[1,2,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,0],[2,2,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,0],[1,3,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,0],[1,2,3,1]],[[0,2,0,0],[0,3,3,1],[2,4,3,1],[1,1,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,4,1],[1,1,2,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,1],[1,1,3,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,1],[1,1,2,2]],[[0,2,0,0],[0,3,3,1],[2,4,3,1],[1,2,1,1]],[[0,2,0,0],[0,3,3,1],[2,3,4,1],[1,2,1,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,1],[2,2,1,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,1],[1,3,1,1]],[[0,2,0,0],[0,3,3,1],[2,4,3,2],[1,1,1,1]],[[0,2,0,0],[0,3,3,1],[2,3,4,2],[1,1,1,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,3],[1,1,1,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,2],[1,1,1,2]],[[0,2,0,0],[0,3,3,1],[2,4,3,2],[1,1,2,0]],[[0,2,0,0],[0,3,3,1],[2,3,4,2],[1,1,2,0]],[[0,2,0,0],[0,3,3,1],[2,3,3,3],[1,1,2,0]],[[0,2,0,0],[0,3,3,1],[2,3,3,2],[1,1,3,0]],[[0,2,0,0],[0,3,3,1],[2,4,3,2],[1,2,0,1]],[[0,2,0,0],[0,3,3,1],[2,3,4,2],[1,2,0,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,3],[1,2,0,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,2],[2,2,0,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,2],[1,3,0,1]],[[0,2,0,0],[0,3,3,1],[2,3,3,2],[1,2,0,2]],[[0,2,0,0],[0,3,3,1],[2,4,3,2],[1,2,1,0]],[[0,2,0,0],[0,3,3,1],[2,3,4,2],[1,2,1,0]],[[0,2,0,0],[0,3,3,1],[2,3,3,3],[1,2,1,0]],[[0,2,0,0],[0,3,3,1],[2,3,3,2],[2,2,1,0]],[[0,2,0,0],[0,3,3,1],[2,3,3,2],[1,3,1,0]],[[0,2,0,0],[0,3,3,2],[2,2,4,0],[1,2,2,1]],[[0,2,0,0],[0,3,3,2],[2,2,3,0],[2,2,2,1]],[[0,2,0,0],[0,3,3,2],[2,2,3,0],[1,3,2,1]],[[0,2,0,0],[0,3,3,2],[2,2,3,0],[1,2,3,1]],[[0,2,0,0],[0,3,3,2],[2,2,3,0],[1,2,2,2]],[[0,2,0,0],[0,3,3,2],[2,2,4,1],[1,2,2,0]],[[0,2,0,0],[0,3,3,2],[2,2,3,1],[2,2,2,0]],[[0,2,0,0],[0,3,3,2],[2,2,3,1],[1,3,2,0]],[[0,2,0,0],[0,3,3,2],[2,2,3,1],[1,2,3,0]],[[0,2,0,0],[0,3,3,2],[2,4,2,0],[1,2,2,1]],[[0,2,0,0],[0,3,3,2],[2,3,2,0],[2,2,2,1]],[[0,2,0,0],[0,3,3,2],[2,3,2,0],[1,3,2,1]],[[0,2,0,0],[0,3,3,2],[2,3,2,0],[1,2,3,1]],[[0,2,0,0],[0,3,3,2],[2,3,2,0],[1,2,2,2]],[[0,2,0,0],[0,3,3,2],[2,4,2,1],[1,2,2,0]],[[0,2,0,0],[0,3,3,2],[2,3,2,1],[2,2,2,0]],[[0,2,0,0],[0,3,3,2],[2,3,2,1],[1,3,2,0]],[[0,2,0,0],[0,3,3,2],[2,3,2,1],[1,2,3,0]],[[1,2,2,1],[2,1,2,1],[2,2,1,2],[1,3,1,0]],[[1,2,2,1],[2,1,2,1],[2,2,1,2],[2,2,1,0]],[[1,2,2,1],[2,1,2,1],[3,2,1,2],[1,2,1,0]],[[1,2,2,1],[3,1,2,1],[2,2,1,2],[1,2,1,0]],[[1,2,2,2],[2,1,2,1],[2,2,1,2],[1,2,1,0]],[[0,2,0,0],[0,3,3,2],[2,4,3,0],[1,1,2,1]],[[0,2,0,0],[0,3,3,2],[2,3,4,0],[1,1,2,1]],[[0,2,0,0],[0,3,3,2],[2,3,3,0],[1,1,3,1]],[[0,2,0,0],[0,3,3,2],[2,3,3,0],[1,1,2,2]],[[0,2,0,0],[0,3,3,2],[2,4,3,0],[1,2,1,1]],[[0,2,0,0],[0,3,3,2],[2,3,4,0],[1,2,1,1]],[[0,2,0,0],[0,3,3,2],[2,3,3,0],[2,2,1,1]],[[0,2,0,0],[0,3,3,2],[2,3,3,0],[1,3,1,1]],[[0,2,0,0],[0,3,3,2],[2,4,3,1],[1,1,2,0]],[[0,2,0,0],[0,3,3,2],[2,3,4,1],[1,1,2,0]],[[0,2,0,0],[0,3,3,2],[2,3,3,1],[1,1,3,0]],[[0,2,0,0],[0,3,3,2],[2,4,3,1],[1,2,0,1]],[[0,2,0,0],[0,3,3,2],[2,3,4,1],[1,2,0,1]],[[0,2,0,0],[0,3,3,2],[2,3,3,1],[2,2,0,1]],[[0,2,0,0],[0,3,3,2],[2,3,3,1],[1,3,0,1]],[[0,2,0,0],[0,3,3,2],[2,4,3,1],[1,2,1,0]],[[0,2,0,0],[0,3,3,2],[2,3,4,1],[1,2,1,0]],[[0,2,0,0],[0,3,3,2],[2,3,3,1],[2,2,1,0]],[[0,2,0,0],[0,3,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,3,1],[2,1,2,1],[2,2,1,2],[1,2,1,0]],[[1,3,2,1],[2,1,2,1],[2,2,1,2],[1,2,1,0]],[[2,2,2,1],[2,1,2,1],[2,2,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,1],[2,2,1,2],[1,3,0,1]],[[1,2,2,1],[2,1,2,1],[2,2,1,2],[2,2,0,1]],[[1,2,2,1],[2,1,2,1],[3,2,1,2],[1,2,0,1]],[[1,2,2,1],[3,1,2,1],[2,2,1,2],[1,2,0,1]],[[1,2,2,2],[2,1,2,1],[2,2,1,2],[1,2,0,1]],[[1,2,3,1],[2,1,2,1],[2,2,1,2],[1,2,0,1]],[[1,3,2,1],[2,1,2,1],[2,2,1,2],[1,2,0,1]],[[2,2,2,1],[2,1,2,1],[2,2,1,2],[1,2,0,1]],[[1,2,2,1],[2,1,2,1],[2,2,1,1],[1,2,3,0]],[[1,2,2,1],[2,1,2,1],[2,2,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,2,1],[2,2,1,1],[2,2,2,0]],[[1,2,2,1],[2,1,2,1],[3,2,1,1],[1,2,2,0]],[[1,2,2,1],[3,1,2,1],[2,2,1,1],[1,2,2,0]],[[1,2,2,2],[2,1,2,1],[2,2,1,1],[1,2,2,0]],[[1,2,3,1],[2,1,2,1],[2,2,1,1],[1,2,2,0]],[[1,3,2,1],[2,1,2,1],[2,2,1,1],[1,2,2,0]],[[2,2,2,1],[2,1,2,1],[2,2,1,1],[1,2,2,0]],[[0,2,0,0],[1,3,0,2],[1,4,3,2],[1,2,2,1]],[[0,2,0,0],[1,3,0,2],[1,3,3,2],[2,2,2,1]],[[0,2,0,0],[1,3,0,2],[1,3,3,2],[1,3,2,1]],[[0,2,0,0],[1,3,0,2],[1,3,3,2],[1,2,3,1]],[[0,2,0,0],[1,3,0,2],[1,3,3,2],[1,2,2,2]],[[0,2,0,0],[1,3,0,2],[3,2,3,2],[1,2,2,1]],[[0,2,0,0],[1,3,0,2],[2,2,3,2],[2,2,2,1]],[[0,2,0,0],[1,3,0,2],[2,2,3,2],[1,3,2,1]],[[0,2,0,0],[1,3,0,2],[2,2,3,2],[1,2,3,1]],[[0,2,0,0],[1,3,0,2],[2,2,3,2],[1,2,2,2]],[[0,2,0,0],[1,3,0,2],[3,3,3,2],[0,2,2,1]],[[0,2,0,0],[1,3,0,2],[2,4,3,2],[0,2,2,1]],[[0,2,0,0],[1,3,0,2],[2,3,3,2],[0,3,2,1]],[[0,2,0,0],[1,3,0,2],[2,3,3,2],[0,2,3,1]],[[0,2,0,0],[1,3,0,2],[2,3,3,2],[0,2,2,2]],[[0,2,0,0],[1,3,0,2],[3,3,3,2],[1,1,2,1]],[[0,2,0,0],[1,3,0,2],[2,4,3,2],[1,1,2,1]],[[0,2,0,0],[1,3,0,2],[2,3,3,2],[2,1,2,1]],[[1,2,2,1],[2,1,2,1],[2,2,1,0],[1,2,2,2]],[[1,2,2,1],[2,1,2,1],[2,2,1,0],[1,2,3,1]],[[1,2,2,1],[2,1,2,1],[2,2,1,0],[1,3,2,1]],[[1,2,2,1],[2,1,2,1],[2,2,1,0],[2,2,2,1]],[[1,2,2,1],[2,1,2,1],[3,2,1,0],[1,2,2,1]],[[1,2,2,1],[3,1,2,1],[2,2,1,0],[1,2,2,1]],[[0,2,0,0],[1,3,2,0],[1,4,3,2],[1,2,2,1]],[[0,2,0,0],[1,3,2,0],[1,3,3,2],[2,2,2,1]],[[0,2,0,0],[1,3,2,0],[1,3,3,2],[1,3,2,1]],[[0,2,0,0],[1,3,2,0],[1,3,3,2],[1,2,3,1]],[[0,2,0,0],[1,3,2,0],[1,3,3,2],[1,2,2,2]],[[0,2,0,0],[1,3,2,0],[3,2,3,2],[1,2,2,1]],[[0,2,0,0],[1,3,2,0],[2,2,3,2],[2,2,2,1]],[[0,2,0,0],[1,3,2,0],[2,2,3,2],[1,3,2,1]],[[0,2,0,0],[1,3,2,0],[2,2,3,2],[1,2,3,1]],[[0,2,0,0],[1,3,2,0],[2,2,3,2],[1,2,2,2]],[[0,2,0,0],[1,3,2,0],[3,3,3,2],[0,2,2,1]],[[0,2,0,0],[1,3,2,0],[2,4,3,2],[0,2,2,1]],[[0,2,0,0],[1,3,2,0],[2,3,3,2],[0,3,2,1]],[[0,2,0,0],[1,3,2,0],[2,3,3,2],[0,2,3,1]],[[0,2,0,0],[1,3,2,0],[2,3,3,2],[0,2,2,2]],[[0,2,0,0],[1,3,2,0],[3,3,3,2],[1,1,2,1]],[[0,2,0,0],[1,3,2,0],[2,4,3,2],[1,1,2,1]],[[0,2,0,0],[1,3,2,0],[2,3,3,2],[2,1,2,1]],[[0,2,0,0],[1,3,2,1],[1,4,3,1],[1,2,2,1]],[[0,2,0,0],[1,3,2,1],[1,3,3,1],[2,2,2,1]],[[0,2,0,0],[1,3,2,1],[1,3,3,1],[1,3,2,1]],[[0,2,0,0],[1,3,2,1],[1,3,3,1],[1,2,3,1]],[[0,2,0,0],[1,3,2,1],[1,3,3,1],[1,2,2,2]],[[0,2,0,0],[1,3,2,1],[1,4,3,2],[1,2,2,0]],[[0,2,0,0],[1,3,2,1],[1,3,3,2],[2,2,2,0]],[[0,2,0,0],[1,3,2,1],[1,3,3,2],[1,3,2,0]],[[0,2,0,0],[1,3,2,1],[1,3,3,2],[1,2,3,0]],[[0,2,0,0],[1,3,2,1],[3,2,3,1],[1,2,2,1]],[[0,2,0,0],[1,3,2,1],[2,2,3,1],[2,2,2,1]],[[0,2,0,0],[1,3,2,1],[2,2,3,1],[1,3,2,1]],[[0,2,0,0],[1,3,2,1],[2,2,3,1],[1,2,3,1]],[[0,2,0,0],[1,3,2,1],[2,2,3,1],[1,2,2,2]],[[0,2,0,0],[1,3,2,1],[3,2,3,2],[1,2,2,0]],[[0,2,0,0],[1,3,2,1],[2,2,3,2],[2,2,2,0]],[[0,2,0,0],[1,3,2,1],[2,2,3,2],[1,3,2,0]],[[0,2,0,0],[1,3,2,1],[2,2,3,2],[1,2,3,0]],[[0,2,0,0],[1,3,2,1],[3,3,3,1],[0,2,2,1]],[[0,2,0,0],[1,3,2,1],[2,4,3,1],[0,2,2,1]],[[0,2,0,0],[1,3,2,1],[2,3,3,1],[0,3,2,1]],[[0,2,0,0],[1,3,2,1],[2,3,3,1],[0,2,3,1]],[[0,2,0,0],[1,3,2,1],[2,3,3,1],[0,2,2,2]],[[0,2,0,0],[1,3,2,1],[3,3,3,1],[1,1,2,1]],[[0,2,0,0],[1,3,2,1],[2,4,3,1],[1,1,2,1]],[[0,2,0,0],[1,3,2,1],[2,3,3,1],[2,1,2,1]],[[0,2,0,0],[1,3,2,1],[3,3,3,2],[0,2,2,0]],[[0,2,0,0],[1,3,2,1],[2,4,3,2],[0,2,2,0]],[[0,2,0,0],[1,3,2,1],[2,3,3,2],[0,3,2,0]],[[0,2,0,0],[1,3,2,1],[2,3,3,2],[0,2,3,0]],[[0,2,0,0],[1,3,2,1],[3,3,3,2],[1,1,2,0]],[[0,2,0,0],[1,3,2,1],[2,4,3,2],[1,1,2,0]],[[0,2,0,0],[1,3,2,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,2],[2,1,2,1],[2,2,1,0],[1,2,2,1]],[[1,2,3,1],[2,1,2,1],[2,2,1,0],[1,2,2,1]],[[1,3,2,1],[2,1,2,1],[2,2,1,0],[1,2,2,1]],[[2,2,2,1],[2,1,2,1],[2,2,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,2,1],[2,2,0,2],[1,2,3,0]],[[1,2,2,1],[2,1,2,1],[2,2,0,2],[1,3,2,0]],[[1,2,2,1],[2,1,2,1],[2,2,0,2],[2,2,2,0]],[[1,2,2,1],[2,1,2,1],[3,2,0,2],[1,2,2,0]],[[1,2,2,1],[3,1,2,1],[2,2,0,2],[1,2,2,0]],[[1,2,2,2],[2,1,2,1],[2,2,0,2],[1,2,2,0]],[[1,2,3,1],[2,1,2,1],[2,2,0,2],[1,2,2,0]],[[1,3,2,1],[2,1,2,1],[2,2,0,2],[1,2,2,0]],[[2,2,2,1],[2,1,2,1],[2,2,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,1],[2,2,0,2],[1,3,1,1]],[[1,2,2,1],[2,1,2,1],[2,2,0,2],[2,2,1,1]],[[1,2,2,1],[2,1,2,1],[3,2,0,2],[1,2,1,1]],[[1,2,2,1],[3,1,2,1],[2,2,0,2],[1,2,1,1]],[[1,2,2,2],[2,1,2,1],[2,2,0,2],[1,2,1,1]],[[1,2,3,1],[2,1,2,1],[2,2,0,2],[1,2,1,1]],[[1,3,2,1],[2,1,2,1],[2,2,0,2],[1,2,1,1]],[[2,2,2,1],[2,1,2,1],[2,2,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,2,1],[2,2,0,1],[1,2,2,2]],[[1,2,2,1],[2,1,2,1],[2,2,0,1],[1,2,3,1]],[[1,2,2,1],[2,1,2,1],[2,2,0,1],[1,3,2,1]],[[1,2,2,1],[2,1,2,1],[2,2,0,1],[2,2,2,1]],[[1,2,2,1],[2,1,2,1],[3,2,0,1],[1,2,2,1]],[[1,2,2,1],[3,1,2,1],[2,2,0,1],[1,2,2,1]],[[1,2,2,2],[2,1,2,1],[2,2,0,1],[1,2,2,1]],[[1,2,3,1],[2,1,2,1],[2,2,0,1],[1,2,2,1]],[[1,3,2,1],[2,1,2,1],[2,2,0,1],[1,2,2,1]],[[0,2,0,0],[1,3,3,0],[0,3,4,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,0],[0,3,3,2],[1,3,2,1]],[[0,2,0,0],[1,3,3,0],[0,3,3,2],[1,2,3,1]],[[0,2,0,0],[1,3,3,0],[0,3,3,2],[1,2,2,2]],[[0,2,0,0],[1,3,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,0,0],[1,3,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,0,0],[1,3,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,0,0],[1,3,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,0,0],[1,4,3,0],[1,3,2,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,0],[1,4,2,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,0],[1,3,2,2],[2,2,2,1]],[[0,2,0,0],[1,3,3,0],[1,3,2,2],[1,3,2,1]],[[0,2,0,0],[1,3,3,0],[1,3,2,2],[1,2,3,1]],[[0,2,0,0],[1,3,3,0],[1,3,2,2],[1,2,2,2]],[[0,2,0,0],[1,4,3,0],[1,3,3,2],[1,1,2,1]],[[0,2,0,0],[1,3,3,0],[1,4,3,2],[1,1,2,1]],[[0,2,0,0],[1,3,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,0,0],[1,3,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,0,0],[1,3,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,0,0],[1,4,3,0],[1,3,3,2],[1,2,1,1]],[[0,2,0,0],[1,3,3,0],[1,4,3,2],[1,2,1,1]],[[0,2,0,0],[1,3,3,0],[1,3,4,2],[1,2,1,1]],[[0,2,0,0],[1,3,3,0],[1,3,3,2],[2,2,1,1]],[[0,2,0,0],[1,3,3,0],[1,3,3,2],[1,3,1,1]],[[0,2,0,0],[1,3,3,0],[3,1,3,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,0],[2,1,4,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,0],[2,1,3,2],[2,2,2,1]],[[0,2,0,0],[1,3,3,0],[2,1,3,2],[1,3,2,1]],[[0,2,0,0],[1,3,3,0],[2,1,3,2],[1,2,3,1]],[[0,2,0,0],[1,3,3,0],[2,1,3,2],[1,2,2,2]],[[0,2,0,0],[1,3,3,0],[3,2,2,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,0],[2,2,2,2],[2,2,2,1]],[[0,2,0,0],[1,3,3,0],[2,2,2,2],[1,3,2,1]],[[0,2,0,0],[1,3,3,0],[2,2,2,2],[1,2,3,1]],[[0,2,0,0],[1,3,3,0],[2,2,2,2],[1,2,2,2]],[[0,2,0,0],[1,3,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,0,0],[1,3,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,0,0],[1,3,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,0,0],[1,3,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,0,0],[1,3,3,0],[3,2,3,2],[1,2,1,1]],[[0,2,0,0],[1,3,3,0],[2,2,3,2],[2,2,1,1]],[[0,2,0,0],[1,3,3,0],[2,2,3,2],[1,3,1,1]],[[0,2,0,0],[1,3,3,0],[3,3,1,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,0],[2,3,1,2],[2,2,2,1]],[[0,2,0,0],[1,3,3,0],[2,3,1,2],[1,3,2,1]],[[0,2,0,0],[1,4,3,0],[2,3,2,2],[0,2,2,1]],[[0,2,0,0],[1,3,3,0],[3,3,2,2],[0,2,2,1]],[[0,2,0,0],[1,3,3,0],[2,4,2,2],[0,2,2,1]],[[0,2,0,0],[1,3,3,0],[2,3,2,2],[0,3,2,1]],[[0,2,0,0],[1,3,3,0],[2,3,2,2],[0,2,3,1]],[[0,2,0,0],[1,3,3,0],[2,3,2,2],[0,2,2,2]],[[0,2,0,0],[1,4,3,0],[2,3,2,2],[1,1,2,1]],[[0,2,0,0],[1,3,3,0],[3,3,2,2],[1,1,2,1]],[[0,2,0,0],[1,3,3,0],[2,4,2,2],[1,1,2,1]],[[0,2,0,0],[1,3,3,0],[2,3,2,2],[2,1,2,1]],[[0,2,0,0],[1,4,3,0],[2,3,3,2],[0,1,2,1]],[[0,2,0,0],[1,3,3,0],[3,3,3,2],[0,1,2,1]],[[0,2,0,0],[1,3,3,0],[2,4,3,2],[0,1,2,1]],[[0,2,0,0],[1,3,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,0,0],[1,3,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,0,0],[1,3,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,0,0],[1,4,3,0],[2,3,3,2],[0,2,1,1]],[[0,2,0,0],[1,3,3,0],[3,3,3,2],[0,2,1,1]],[[0,2,0,0],[1,3,3,0],[2,4,3,2],[0,2,1,1]],[[0,2,0,0],[1,3,3,0],[2,3,4,2],[0,2,1,1]],[[0,2,0,0],[1,3,3,0],[2,3,3,2],[0,3,1,1]],[[0,2,0,0],[1,4,3,0],[2,3,3,2],[1,0,2,1]],[[0,2,0,0],[1,3,3,0],[3,3,3,2],[1,0,2,1]],[[0,2,0,0],[1,3,3,0],[2,4,3,2],[1,0,2,1]],[[0,2,0,0],[1,3,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,0,0],[1,3,3,0],[2,3,3,2],[2,0,2,1]],[[0,2,0,0],[1,3,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,0,0],[1,3,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,0,0],[1,4,3,0],[2,3,3,2],[1,1,1,1]],[[0,2,0,0],[1,3,3,0],[3,3,3,2],[1,1,1,1]],[[0,2,0,0],[1,3,3,0],[2,4,3,2],[1,1,1,1]],[[0,2,0,0],[1,3,3,0],[2,3,4,2],[1,1,1,1]],[[0,2,0,0],[1,3,3,0],[2,3,3,2],[2,1,1,1]],[[0,2,0,0],[1,3,3,0],[3,3,3,2],[1,2,0,1]],[[0,2,0,0],[1,3,3,0],[2,4,3,2],[1,2,0,1]],[[0,2,0,0],[1,3,3,0],[2,3,3,2],[2,2,0,1]],[[2,2,2,1],[2,1,2,1],[2,2,0,1],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[0,3,2,3],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[0,3,2,2],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[0,3,2,2],[1,2,3,1]],[[0,2,0,0],[1,3,3,1],[0,3,2,2],[1,2,2,2]],[[0,2,0,0],[1,3,3,1],[0,3,4,1],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[0,3,3,1],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[0,3,3,1],[1,2,3,1]],[[0,2,0,0],[1,3,3,1],[0,3,3,1],[1,2,2,2]],[[0,2,0,0],[1,3,3,1],[0,3,4,2],[1,2,1,1]],[[0,2,0,0],[1,3,3,1],[0,3,3,3],[1,2,1,1]],[[0,2,0,0],[1,3,3,1],[0,3,3,2],[1,2,1,2]],[[0,2,0,0],[1,3,3,1],[0,3,4,2],[1,2,2,0]],[[0,2,0,0],[1,3,3,1],[0,3,3,3],[1,2,2,0]],[[0,2,0,0],[1,3,3,1],[0,3,3,2],[1,3,2,0]],[[0,2,0,0],[1,3,3,1],[0,3,3,2],[1,2,3,0]],[[0,2,0,0],[1,3,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,0,0],[1,3,3,1],[1,2,2,2],[1,2,2,2]],[[0,2,0,0],[1,3,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,0,0],[1,3,3,1],[1,2,3,1],[1,2,2,2]],[[0,2,0,0],[1,3,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,0,0],[1,3,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,0,0],[1,3,3,1],[1,2,3,2],[1,2,1,2]],[[0,2,0,0],[1,3,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,0,0],[1,3,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,0,0],[1,3,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,0,0],[1,3,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,0,0],[1,3,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,0,0],[1,4,3,1],[1,3,1,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,0,0],[1,3,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,0,0],[1,4,3,1],[1,3,2,1],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,0,0],[1,3,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,0,0],[1,3,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,0,0],[1,3,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,0,0],[1,4,3,1],[1,3,2,2],[1,2,2,0]],[[0,2,0,0],[1,3,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,0,0],[1,3,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,0,0],[1,3,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,0,0],[1,3,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,0,0],[1,4,3,1],[1,3,3,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,4,3,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,0],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,0],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,0],[1,2,3,1]],[[0,2,0,0],[1,4,3,1],[1,3,3,1],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,1],[1,1,2,2]],[[0,2,0,0],[1,4,3,1],[1,3,3,1],[1,2,1,1]],[[0,2,0,0],[1,3,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,0,0],[1,3,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,0,0],[1,3,3,1],[1,3,4,2],[1,0,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,3],[1,0,2,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,2],[1,0,2,2]],[[0,2,0,0],[1,4,3,1],[1,3,3,2],[1,1,1,1]],[[0,2,0,0],[1,3,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,0,0],[1,3,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,2],[1,1,1,2]],[[0,2,0,0],[1,4,3,1],[1,3,3,2],[1,1,2,0]],[[0,2,0,0],[1,3,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,0,0],[1,3,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,0,0],[1,3,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,0,0],[1,3,3,1],[1,3,3,2],[1,1,3,0]],[[0,2,0,0],[1,4,3,1],[1,3,3,2],[1,2,0,1]],[[0,2,0,0],[1,3,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,0,0],[1,3,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,0,0],[1,3,3,1],[1,3,3,2],[1,2,0,2]],[[0,2,0,0],[1,4,3,1],[1,3,3,2],[1,2,1,0]],[[0,2,0,0],[1,3,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,0,0],[1,3,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,0,0],[1,3,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,0,0],[1,3,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,0,0],[1,3,3,1],[1,3,3,2],[1,3,1,0]],[[0,2,0,0],[1,3,3,1],[3,1,2,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,1,2,3],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,1,2,2],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,1,2,2],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[2,1,2,2],[1,2,3,1]],[[0,2,0,0],[1,3,3,1],[2,1,2,2],[1,2,2,2]],[[0,2,0,0],[1,3,3,1],[3,1,3,1],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,1,4,1],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,1,3,1],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,1,3,1],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[2,1,3,1],[1,2,3,1]],[[0,2,0,0],[1,3,3,1],[2,1,3,1],[1,2,2,2]],[[0,2,0,0],[1,3,3,1],[2,1,4,2],[1,2,1,1]],[[0,2,0,0],[1,3,3,1],[2,1,3,3],[1,2,1,1]],[[0,2,0,0],[1,3,3,1],[2,1,3,2],[1,2,1,2]],[[0,2,0,0],[1,3,3,1],[3,1,3,2],[1,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,1,4,2],[1,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,1,3,3],[1,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,1,3,2],[2,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,1,3,2],[1,3,2,0]],[[0,2,0,0],[1,3,3,1],[2,1,3,2],[1,2,3,0]],[[0,2,0,0],[1,3,3,1],[3,2,1,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,1,3],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,1,2],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,1,2],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,1,2],[1,2,3,1]],[[0,2,0,0],[1,3,3,1],[2,2,1,2],[1,2,2,2]],[[0,2,0,0],[1,3,3,1],[3,2,2,1],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,2,1],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,2,1],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,2,1],[1,2,3,1]],[[0,2,0,0],[1,3,3,1],[2,2,2,1],[1,2,2,2]],[[0,2,0,0],[1,3,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,0,0],[1,3,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,0,0],[1,3,3,1],[3,2,2,2],[1,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,2,2,2],[2,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,2,2,2],[1,3,2,0]],[[0,2,0,0],[1,3,3,1],[2,2,2,2],[1,2,3,0]],[[0,2,0,0],[1,3,3,1],[3,2,3,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,0],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,0],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,0],[1,2,3,1]],[[0,2,0,0],[1,3,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,0,0],[1,3,3,1],[3,2,3,1],[1,2,1,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,1],[2,2,1,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,1],[1,3,1,1]],[[0,2,0,0],[1,3,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,2],[0,2,1,2]],[[0,2,0,0],[1,3,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,0,0],[1,3,3,1],[2,2,3,2],[0,2,3,0]],[[0,2,0,0],[1,3,3,1],[3,2,3,2],[1,2,0,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,2],[2,2,0,1]],[[0,2,0,0],[1,3,3,1],[2,2,3,2],[1,3,0,1]],[[0,2,0,0],[1,3,3,1],[3,2,3,2],[1,2,1,0]],[[0,2,0,0],[1,3,3,1],[2,2,3,2],[2,2,1,0]],[[0,2,0,0],[1,3,3,1],[2,2,3,2],[1,3,1,0]],[[0,2,0,0],[1,3,3,1],[3,3,0,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,0,2],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,0,2],[1,3,2,1]],[[0,2,0,0],[1,3,3,1],[3,3,1,1],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,1,1],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,1,1],[1,3,2,1]],[[0,2,0,0],[1,4,3,1],[2,3,1,2],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[3,3,1,2],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,0,0],[1,3,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,0,0],[1,4,3,1],[2,3,1,2],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[3,3,1,2],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[2,4,1,2],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,1,2],[2,1,2,1]],[[0,2,0,0],[1,3,3,1],[3,3,1,2],[1,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,1,2],[2,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,1,2],[1,3,2,0]],[[0,2,0,0],[1,3,3,1],[3,3,2,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,2,0],[2,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,2,0],[1,3,2,1]],[[0,2,0,0],[1,4,3,1],[2,3,2,1],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[3,3,2,1],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,0,0],[1,3,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,0,0],[1,4,3,1],[2,3,2,1],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[3,3,2,1],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[2,4,2,1],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,2,1],[2,1,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,0,0],[1,3,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,0,0],[1,4,3,1],[2,3,2,2],[0,2,2,0]],[[0,2,0,0],[1,3,3,1],[3,3,2,2],[0,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,0,0],[1,3,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,0,0],[1,3,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,0,0],[1,4,3,1],[2,3,2,2],[1,1,2,0]],[[0,2,0,0],[1,3,3,1],[3,3,2,2],[1,1,2,0]],[[0,2,0,0],[1,3,3,1],[2,4,2,2],[1,1,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,2,2],[2,1,2,0]],[[0,2,0,0],[1,4,3,1],[2,3,3,0],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[3,3,3,0],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,4,3,0],[0,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,0],[0,3,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,0],[0,2,3,1]],[[0,2,0,0],[1,4,3,1],[2,3,3,0],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[3,3,3,0],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[2,4,3,0],[1,1,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,0],[2,1,2,1]],[[0,2,0,0],[1,4,3,1],[2,3,3,1],[0,1,2,1]],[[0,2,0,0],[1,3,3,1],[3,3,3,1],[0,1,2,1]],[[0,2,0,0],[1,3,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,1],[0,1,2,2]],[[0,2,0,0],[1,4,3,1],[2,3,3,1],[0,2,1,1]],[[0,2,0,0],[1,3,3,1],[3,3,3,1],[0,2,1,1]],[[0,2,0,0],[1,3,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,0,0],[1,3,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,1],[0,3,1,1]],[[0,2,0,0],[1,4,3,1],[2,3,3,1],[1,0,2,1]],[[0,2,0,0],[1,3,3,1],[3,3,3,1],[1,0,2,1]],[[0,2,0,0],[1,3,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,1],[2,0,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,1],[1,0,2,2]],[[0,2,0,0],[1,4,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,0,0],[1,3,3,1],[3,3,3,1],[1,1,1,1]],[[0,2,0,0],[1,3,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,0,0],[1,3,3,1],[2,3,4,1],[1,1,1,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,1],[2,1,1,1]],[[0,2,0,0],[1,4,3,1],[2,3,3,1],[1,2,0,1]],[[0,2,0,0],[1,3,3,1],[3,3,3,1],[1,2,0,1]],[[0,2,0,0],[1,3,3,1],[2,4,3,1],[1,2,0,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,2,1],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[2,1,2,1],[2,1,0,2],[1,2,3,1]],[[1,2,2,1],[2,1,2,1],[2,1,0,2],[1,3,2,1]],[[1,2,2,1],[2,1,2,1],[2,1,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,2,1],[2,1,0,3],[1,2,2,1]],[[1,2,2,1],[2,1,2,1],[3,1,0,2],[1,2,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[0,0,2,2]],[[0,2,0,0],[1,4,3,1],[2,3,3,2],[0,1,1,1]],[[0,2,0,0],[1,3,3,1],[3,3,3,2],[0,1,1,1]],[[0,2,0,0],[1,3,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,0,0],[1,3,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[0,1,1,2]],[[0,2,0,0],[1,4,3,1],[2,3,3,2],[0,1,2,0]],[[0,2,0,0],[1,3,3,1],[3,3,3,2],[0,1,2,0]],[[0,2,0,0],[1,3,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[0,1,3,0]],[[0,2,0,0],[1,4,3,1],[2,3,3,2],[0,2,0,1]],[[0,2,0,0],[1,3,3,1],[3,3,3,2],[0,2,0,1]],[[0,2,0,0],[1,3,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,0,0],[1,3,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[0,2,0,2]],[[0,2,0,0],[1,4,3,1],[2,3,3,2],[0,2,1,0]],[[0,2,0,0],[1,3,3,1],[3,3,3,2],[0,2,1,0]],[[0,2,0,0],[1,3,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,0,0],[1,3,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,0,0],[1,3,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,1,2,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,2,1],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,2,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,2,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,2,1],[2,1,0,2],[1,2,2,1]],[[0,2,0,0],[1,4,3,1],[2,3,3,2],[1,0,1,1]],[[0,2,0,0],[1,3,3,1],[3,3,3,2],[1,0,1,1]],[[0,2,0,0],[1,3,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,0,0],[1,3,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[2,0,1,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[1,0,1,2]],[[0,2,0,0],[1,4,3,1],[2,3,3,2],[1,0,2,0]],[[0,2,0,0],[1,3,3,1],[3,3,3,2],[1,0,2,0]],[[0,2,0,0],[1,3,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[2,0,2,0]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[1,0,3,0]],[[0,2,0,0],[1,4,3,1],[2,3,3,2],[1,1,0,1]],[[0,2,0,0],[1,3,3,1],[3,3,3,2],[1,1,0,1]],[[0,2,0,0],[1,3,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,0,0],[1,3,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[2,1,0,1]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[1,1,0,2]],[[0,2,0,0],[1,4,3,1],[2,3,3,2],[1,1,1,0]],[[0,2,0,0],[1,3,3,1],[3,3,3,2],[1,1,1,0]],[[0,2,0,0],[1,3,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,0,0],[1,3,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,0,0],[1,3,3,1],[2,3,3,3],[1,1,1,0]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[2,1,1,0]],[[0,2,0,0],[1,4,3,1],[2,3,3,2],[1,2,0,0]],[[0,2,0,0],[1,3,3,1],[3,3,3,2],[1,2,0,0]],[[0,2,0,0],[1,3,3,1],[2,4,3,2],[1,2,0,0]],[[0,2,0,0],[1,3,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,1,2,1],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,2,1],[2,0,3,1],[1,3,2,0]],[[1,2,2,1],[2,1,2,1],[2,0,3,1],[2,2,2,0]],[[1,2,2,1],[2,1,2,1],[2,0,4,1],[1,2,2,0]],[[1,2,2,1],[2,1,2,1],[3,0,3,1],[1,2,2,0]],[[1,2,2,1],[3,1,2,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[2,1,2,1],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[2,1,2,1],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[2,1,2,1],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[2,1,2,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,1,2,1],[2,0,3,0],[1,2,2,2]],[[0,2,0,0],[1,3,3,2],[0,3,4,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,2],[0,3,3,0],[1,3,2,1]],[[0,2,0,0],[1,3,3,2],[0,3,3,0],[1,2,3,1]],[[0,2,0,0],[1,3,3,2],[0,3,3,0],[1,2,2,2]],[[0,2,0,0],[1,3,3,2],[0,3,4,1],[1,2,2,0]],[[0,2,0,0],[1,3,3,2],[0,3,3,1],[1,3,2,0]],[[0,2,0,0],[1,3,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,2,1],[2,0,3,0],[1,2,3,1]],[[1,2,2,1],[2,1,2,1],[2,0,3,0],[1,3,2,1]],[[1,2,2,1],[2,1,2,1],[2,0,3,0],[2,2,2,1]],[[1,2,2,1],[2,1,2,1],[2,0,4,0],[1,2,2,1]],[[1,2,2,1],[2,1,2,1],[3,0,3,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,0,0],[1,3,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,0,0],[1,3,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,0,0],[1,3,3,2],[1,2,3,0],[1,2,2,2]],[[0,2,0,0],[1,3,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,0,0],[1,3,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,0,0],[1,3,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,0,0],[1,3,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[3,1,2,1],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[2,1,2,1],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[2,1,2,1],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[2,1,2,1],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[2,1,2,1],[2,0,3,0],[1,2,2,1]],[[0,2,0,0],[1,4,3,2],[1,3,2,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,0,0],[1,3,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,0,0],[1,3,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,0,0],[1,3,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,0,0],[1,4,3,2],[1,3,2,1],[1,2,2,0]],[[0,2,0,0],[1,3,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,0,0],[1,3,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,0,0],[1,3,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,0,0],[1,3,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,0,0],[1,4,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,0,0],[1,3,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,0,0],[1,3,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,0,0],[1,3,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,0,0],[1,3,3,2],[1,3,3,0],[1,1,2,2]],[[0,2,0,0],[1,4,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,0,0],[1,3,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,0,0],[1,3,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,0,0],[1,3,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,0,0],[1,3,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,0,0],[1,4,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,0],[1,3,3,2],[1,4,3,1],[1,1,1,1]],[[0,2,0,0],[1,3,3,2],[1,3,4,1],[1,1,1,1]],[[0,2,0,0],[1,4,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,0,0],[1,3,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,0,0],[1,3,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,0,0],[1,3,3,2],[1,3,3,1],[1,1,3,0]],[[0,2,0,0],[1,4,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,0,0],[1,3,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,0,0],[1,3,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,0,0],[1,3,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,0,0],[1,3,3,2],[1,3,3,1],[1,3,0,1]],[[0,2,0,0],[1,4,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,0,0],[1,3,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,0,0],[1,3,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,0,0],[1,3,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,0,0],[1,3,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,2,1],[2,0,1,2],[1,2,2,2]],[[1,2,2,1],[2,1,2,1],[2,0,1,2],[1,2,3,1]],[[1,2,2,1],[2,1,2,1],[2,0,1,2],[1,3,2,1]],[[1,2,2,1],[2,1,2,1],[2,0,1,2],[2,2,2,1]],[[1,2,2,1],[2,1,2,1],[2,0,1,3],[1,2,2,1]],[[1,2,2,1],[2,1,2,1],[3,0,1,2],[1,2,2,1]],[[1,2,2,1],[3,1,2,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[2,1,2,1],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[2,1,2,1],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[2,1,2,1],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[2,1,2,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[2,1,2,1],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,2,1],[1,3,3,0],[2,2,1,0]],[[1,2,2,1],[2,1,2,1],[1,4,3,0],[1,2,1,0]],[[0,2,0,0],[1,3,3,2],[3,1,3,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,2],[2,1,4,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,2],[2,1,3,0],[2,2,2,1]],[[0,2,0,0],[1,3,3,2],[2,1,3,0],[1,3,2,1]],[[0,2,0,0],[1,3,3,2],[2,1,3,0],[1,2,3,1]],[[0,2,0,0],[1,3,3,2],[2,1,3,0],[1,2,2,2]],[[0,2,0,0],[1,3,3,2],[3,1,3,1],[1,2,2,0]],[[0,2,0,0],[1,3,3,2],[2,1,4,1],[1,2,2,0]],[[0,2,0,0],[1,3,3,2],[2,1,3,1],[2,2,2,0]],[[0,2,0,0],[1,3,3,2],[2,1,3,1],[1,3,2,0]],[[0,2,0,0],[1,3,3,2],[2,1,3,1],[1,2,3,0]],[[0,2,0,0],[1,3,3,2],[3,2,2,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,2],[2,2,2,0],[2,2,2,1]],[[0,2,0,0],[1,3,3,2],[2,2,2,0],[1,3,2,1]],[[0,2,0,0],[1,3,3,2],[2,2,2,0],[1,2,3,1]],[[0,2,0,0],[1,3,3,2],[2,2,2,0],[1,2,2,2]],[[0,2,0,0],[1,3,3,2],[3,2,2,1],[1,2,2,0]],[[0,2,0,0],[1,3,3,2],[2,2,2,1],[2,2,2,0]],[[0,2,0,0],[1,3,3,2],[2,2,2,1],[1,3,2,0]],[[0,2,0,0],[1,3,3,2],[2,2,2,1],[1,2,3,0]],[[0,2,0,0],[1,3,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,0,0],[1,3,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,0,0],[1,3,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,0,0],[1,3,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,0,0],[1,3,3,2],[3,2,3,0],[1,2,1,1]],[[0,2,0,0],[1,3,3,2],[2,2,3,0],[2,2,1,1]],[[0,2,0,0],[1,3,3,2],[2,2,3,0],[1,3,1,1]],[[0,2,0,0],[1,3,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,0,0],[1,3,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,0,0],[1,3,3,2],[2,2,3,1],[0,2,3,0]],[[0,2,0,0],[1,3,3,2],[3,2,3,1],[1,2,0,1]],[[0,2,0,0],[1,3,3,2],[2,2,3,1],[2,2,0,1]],[[0,2,0,0],[1,3,3,2],[2,2,3,1],[1,3,0,1]],[[0,2,0,0],[1,3,3,2],[3,2,3,1],[1,2,1,0]],[[0,2,0,0],[1,3,3,2],[2,2,3,1],[2,2,1,0]],[[0,2,0,0],[1,3,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,2,1],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,2,1],[1,3,2,1],[2,2,1,0]],[[1,2,2,1],[2,1,2,1],[1,4,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,2,1],[1,3,2,1],[1,3,0,1]],[[1,2,2,1],[2,1,2,1],[1,3,2,1],[2,2,0,1]],[[1,2,2,1],[2,1,2,1],[1,4,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,2,1],[1,3,2,0],[1,3,1,1]],[[1,2,2,1],[2,1,2,1],[1,3,2,0],[2,2,1,1]],[[1,2,2,1],[2,1,2,1],[1,4,2,0],[1,2,1,1]],[[1,2,2,1],[2,1,2,1],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[2,1,2,1],[1,3,1,2],[2,2,1,0]],[[1,2,2,1],[2,1,2,1],[1,4,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,1],[1,3,1,2],[1,3,0,1]],[[1,2,2,1],[2,1,2,1],[1,3,1,2],[2,2,0,1]],[[0,2,0,0],[1,3,3,2],[3,3,1,0],[1,2,2,1]],[[0,2,0,0],[1,3,3,2],[2,3,1,0],[2,2,2,1]],[[0,2,0,0],[1,3,3,2],[2,3,1,0],[1,3,2,1]],[[0,2,0,0],[1,3,3,2],[3,3,1,1],[1,2,2,0]],[[0,2,0,0],[1,3,3,2],[2,3,1,1],[2,2,2,0]],[[0,2,0,0],[1,3,3,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,2,1],[1,4,1,2],[1,2,0,1]],[[1,2,2,1],[2,1,2,1],[1,3,1,1],[1,2,3,0]],[[1,2,2,1],[2,1,2,1],[1,3,1,1],[1,3,2,0]],[[0,2,0,0],[1,4,3,2],[2,3,2,0],[0,2,2,1]],[[0,2,0,0],[1,3,3,2],[3,3,2,0],[0,2,2,1]],[[0,2,0,0],[1,3,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,0,0],[1,3,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,0,0],[1,3,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,0,0],[1,3,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,0,0],[1,4,3,2],[2,3,2,0],[1,1,2,1]],[[0,2,0,0],[1,3,3,2],[3,3,2,0],[1,1,2,1]],[[0,2,0,0],[1,3,3,2],[2,4,2,0],[1,1,2,1]],[[0,2,0,0],[1,3,3,2],[2,3,2,0],[2,1,2,1]],[[0,2,0,0],[1,4,3,2],[2,3,2,1],[0,2,2,0]],[[0,2,0,0],[1,3,3,2],[3,3,2,1],[0,2,2,0]],[[0,2,0,0],[1,3,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,0,0],[1,3,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,0,0],[1,3,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,0,0],[1,4,3,2],[2,3,2,1],[1,1,2,0]],[[0,2,0,0],[1,3,3,2],[3,3,2,1],[1,1,2,0]],[[0,2,0,0],[1,3,3,2],[2,4,2,1],[1,1,2,0]],[[0,2,0,0],[1,3,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,1,2,1],[1,3,1,1],[2,2,2,0]],[[1,2,2,1],[2,1,2,1],[1,4,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,2,1],[1,3,1,0],[1,2,2,2]],[[1,2,2,1],[2,1,2,1],[1,3,1,0],[1,2,3,1]],[[1,2,2,1],[2,1,2,1],[1,3,1,0],[1,3,2,1]],[[1,2,2,1],[2,1,2,1],[1,3,1,0],[2,2,2,1]],[[1,2,2,1],[2,1,2,1],[1,4,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,2,1],[1,3,0,2],[1,2,3,0]],[[1,2,2,1],[2,1,2,1],[1,3,0,2],[1,3,2,0]],[[1,2,2,1],[2,1,2,1],[1,3,0,2],[2,2,2,0]],[[1,2,2,1],[2,1,2,1],[1,4,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,1],[1,3,0,2],[1,3,1,1]],[[1,2,2,1],[2,1,2,1],[1,3,0,2],[2,2,1,1]],[[1,2,2,1],[2,1,2,1],[1,4,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,2,1],[1,3,0,1],[1,2,2,2]],[[1,2,2,1],[2,1,2,1],[1,3,0,1],[1,2,3,1]],[[1,2,2,1],[2,1,2,1],[1,3,0,1],[1,3,2,1]],[[1,2,2,1],[2,1,2,1],[1,3,0,1],[2,2,2,1]],[[1,2,2,1],[2,1,2,1],[1,4,0,1],[1,2,2,1]],[[0,2,0,0],[1,4,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,0],[1,3,3,2],[3,3,3,0],[0,1,2,1]],[[0,2,0,0],[1,3,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,0,0],[1,3,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,0,0],[1,3,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,0,0],[1,3,3,2],[2,3,3,0],[0,1,2,2]],[[0,2,0,0],[1,4,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,0],[1,3,3,2],[3,3,3,0],[0,2,1,1]],[[0,2,0,0],[1,3,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,0,0],[1,3,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,0,0],[1,3,3,2],[2,3,3,0],[0,3,1,1]],[[0,2,0,0],[1,4,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,0],[1,3,3,2],[3,3,3,0],[1,0,2,1]],[[0,2,0,0],[1,3,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,0,0],[1,3,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,0,0],[1,3,3,2],[2,3,3,0],[2,0,2,1]],[[0,2,0,0],[1,3,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,0,0],[1,3,3,2],[2,3,3,0],[1,0,2,2]],[[0,2,0,0],[1,4,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,0],[1,3,3,2],[3,3,3,0],[1,1,1,1]],[[0,2,0,0],[1,3,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,0,0],[1,3,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,0,0],[1,3,3,2],[2,3,3,0],[2,1,1,1]],[[0,2,0,0],[1,4,3,2],[2,3,3,0],[1,2,0,1]],[[0,2,0,0],[1,3,3,2],[3,3,3,0],[1,2,0,1]],[[0,2,0,0],[1,3,3,2],[2,4,3,0],[1,2,0,1]],[[0,2,0,0],[1,3,3,2],[2,3,3,0],[2,2,0,1]],[[0,2,0,0],[1,4,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,0],[1,3,3,2],[3,3,3,1],[0,1,1,1]],[[0,2,0,0],[1,3,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,0,0],[1,3,3,2],[2,3,4,1],[0,1,1,1]],[[0,2,0,0],[1,4,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,0],[1,3,3,2],[3,3,3,1],[0,1,2,0]],[[0,2,0,0],[1,3,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,0,0],[1,3,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,0,0],[1,3,3,2],[2,3,3,1],[0,1,3,0]],[[0,2,0,0],[1,4,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,0],[1,3,3,2],[3,3,3,1],[0,2,0,1]],[[0,2,0,0],[1,3,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,0,0],[1,3,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,0,0],[1,3,3,2],[2,3,3,1],[0,3,0,1]],[[0,2,0,0],[1,4,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,0],[1,3,3,2],[3,3,3,1],[0,2,1,0]],[[0,2,0,0],[1,3,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,0,0],[1,3,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,0,0],[1,3,3,2],[2,3,3,1],[0,3,1,0]],[[0,2,0,0],[1,4,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,0],[1,3,3,2],[3,3,3,1],[1,0,1,1]],[[0,2,0,0],[1,3,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,0,0],[1,3,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,0,0],[1,3,3,2],[2,3,3,1],[2,0,1,1]],[[0,2,0,0],[1,4,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,0],[1,3,3,2],[3,3,3,1],[1,0,2,0]],[[0,2,0,0],[1,3,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,0,0],[1,3,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,0,0],[1,3,3,2],[2,3,3,1],[2,0,2,0]],[[0,2,0,0],[1,3,3,2],[2,3,3,1],[1,0,3,0]],[[0,2,0,0],[1,4,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,0],[1,3,3,2],[3,3,3,1],[1,1,0,1]],[[0,2,0,0],[1,3,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,0,0],[1,3,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,0,0],[1,3,3,2],[2,3,3,1],[2,1,0,1]],[[0,2,0,0],[1,4,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,0],[1,3,3,2],[3,3,3,1],[1,1,1,0]],[[0,2,0,0],[1,3,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,0,0],[1,3,3,2],[2,3,4,1],[1,1,1,0]],[[0,2,0,0],[1,3,3,2],[2,3,3,1],[2,1,1,0]],[[0,2,0,0],[1,4,3,2],[2,3,3,1],[1,2,0,0]],[[0,2,0,0],[1,3,3,2],[3,3,3,1],[1,2,0,0]],[[0,2,0,0],[1,3,3,2],[2,4,3,1],[1,2,0,0]],[[0,2,0,0],[1,3,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,1,2,0],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[2,1,2,0],[2,4,3,2],[1,1,0,0]],[[1,2,2,1],[2,1,2,0],[3,3,3,2],[1,1,0,0]],[[1,2,2,1],[3,1,2,0],[2,3,3,2],[1,1,0,0]],[[1,2,2,2],[2,1,2,0],[2,3,3,2],[1,1,0,0]],[[1,2,3,1],[2,1,2,0],[2,3,3,2],[1,1,0,0]],[[1,3,2,1],[2,1,2,0],[2,3,3,2],[1,1,0,0]],[[2,2,2,1],[2,1,2,0],[2,3,3,2],[1,1,0,0]],[[1,2,2,1],[2,1,2,0],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[2,1,2,0],[3,3,3,2],[0,2,0,0]],[[1,2,2,1],[3,1,2,0],[2,3,3,2],[0,2,0,0]],[[1,2,2,2],[2,1,2,0],[2,3,3,2],[0,2,0,0]],[[1,2,3,1],[2,1,2,0],[2,3,3,2],[0,2,0,0]],[[1,3,2,1],[2,1,2,0],[2,3,3,2],[0,2,0,0]],[[2,2,2,1],[2,1,2,0],[2,3,3,2],[0,2,0,0]],[[0,2,0,0],[2,0,1,2],[3,3,3,2],[1,2,2,1]],[[0,2,0,0],[2,0,1,2],[2,3,3,2],[2,2,2,1]],[[0,2,0,0],[2,0,1,2],[2,3,3,2],[1,3,2,1]],[[0,2,0,0],[2,0,1,2],[2,3,3,2],[1,2,3,1]],[[0,2,0,0],[2,0,1,2],[2,3,3,2],[1,2,2,2]],[[0,2,0,0],[2,0,3,0],[3,3,3,2],[1,2,2,1]],[[0,2,0,0],[2,0,3,0],[2,3,3,2],[2,2,2,1]],[[0,2,0,0],[2,0,3,0],[2,3,3,2],[1,3,2,1]],[[0,2,0,0],[2,0,3,0],[2,3,3,2],[1,2,3,1]],[[0,2,0,0],[2,0,3,0],[2,3,3,2],[1,2,2,2]],[[0,2,0,0],[2,0,3,1],[3,3,3,1],[1,2,2,1]],[[0,2,0,0],[2,0,3,1],[2,3,3,1],[2,2,2,1]],[[0,2,0,0],[2,0,3,1],[2,3,3,1],[1,3,2,1]],[[0,2,0,0],[2,0,3,1],[2,3,3,1],[1,2,3,1]],[[0,2,0,0],[2,0,3,1],[2,3,3,1],[1,2,2,2]],[[0,2,0,0],[2,0,3,1],[3,3,3,2],[1,2,2,0]],[[0,2,0,0],[2,0,3,1],[2,3,3,2],[2,2,2,0]],[[0,2,0,0],[2,0,3,1],[2,3,3,2],[1,3,2,0]],[[0,2,0,0],[2,0,3,1],[2,3,3,2],[1,2,3,0]],[[0,2,0,0],[2,1,0,2],[3,3,3,2],[1,2,2,1]],[[0,2,0,0],[2,1,0,2],[2,3,3,2],[2,2,2,1]],[[0,2,0,0],[2,1,0,2],[2,3,3,2],[1,3,2,1]],[[0,2,0,0],[2,1,0,2],[2,3,3,2],[1,2,3,1]],[[0,2,0,0],[2,1,0,2],[2,3,3,2],[1,2,2,2]],[[0,2,0,0],[2,1,2,0],[3,3,3,2],[1,2,2,1]],[[0,2,0,0],[2,1,2,0],[2,3,3,2],[2,2,2,1]],[[0,2,0,0],[2,1,2,0],[2,3,3,2],[1,3,2,1]],[[0,2,0,0],[2,1,2,0],[2,3,3,2],[1,2,3,1]],[[0,2,0,0],[2,1,2,0],[2,3,3,2],[1,2,2,2]],[[0,2,0,0],[2,1,2,1],[3,3,3,1],[1,2,2,1]],[[0,2,0,0],[2,1,2,1],[2,3,3,1],[2,2,2,1]],[[0,2,0,0],[2,1,2,1],[2,3,3,1],[1,3,2,1]],[[0,2,0,0],[2,1,2,1],[2,3,3,1],[1,2,3,1]],[[0,2,0,0],[2,1,2,1],[2,3,3,1],[1,2,2,2]],[[0,2,0,0],[2,1,2,1],[3,3,3,2],[1,2,2,0]],[[0,2,0,0],[2,1,2,1],[2,3,3,2],[2,2,2,0]],[[0,2,0,0],[2,1,2,1],[2,3,3,2],[1,3,2,0]],[[0,2,0,0],[2,1,2,1],[2,3,3,2],[1,2,3,0]],[[0,2,0,0],[2,1,3,0],[3,3,2,2],[1,2,2,1]],[[0,2,0,0],[2,1,3,0],[2,3,2,2],[2,2,2,1]],[[0,2,0,0],[2,1,3,0],[2,3,2,2],[1,3,2,1]],[[0,2,0,0],[2,1,3,0],[2,3,2,2],[1,2,3,1]],[[0,2,0,0],[2,1,3,0],[2,3,2,2],[1,2,2,2]],[[0,2,0,0],[2,1,3,0],[3,3,3,2],[1,2,1,1]],[[0,2,0,0],[2,1,3,0],[2,3,3,2],[2,2,1,1]],[[0,2,0,0],[2,1,3,0],[2,3,3,2],[1,3,1,1]],[[0,2,0,0],[2,1,3,1],[3,3,1,2],[1,2,2,1]],[[0,2,0,0],[2,1,3,1],[2,3,1,2],[2,2,2,1]],[[0,2,0,0],[2,1,3,1],[2,3,1,2],[1,3,2,1]],[[0,2,0,0],[2,1,3,1],[2,3,1,2],[1,2,3,1]],[[0,2,0,0],[2,1,3,1],[2,3,1,2],[1,2,2,2]],[[0,2,0,0],[2,1,3,1],[3,3,2,1],[1,2,2,1]],[[0,2,0,0],[2,1,3,1],[2,3,2,1],[2,2,2,1]],[[0,2,0,0],[2,1,3,1],[2,3,2,1],[1,3,2,1]],[[0,2,0,0],[2,1,3,1],[2,3,2,1],[1,2,3,1]],[[0,2,0,0],[2,1,3,1],[2,3,2,1],[1,2,2,2]],[[0,2,0,0],[2,1,3,1],[3,3,2,2],[1,2,2,0]],[[0,2,0,0],[2,1,3,1],[2,3,2,2],[2,2,2,0]],[[0,2,0,0],[2,1,3,1],[2,3,2,2],[1,3,2,0]],[[0,2,0,0],[2,1,3,1],[2,3,2,2],[1,2,3,0]],[[0,2,0,0],[2,1,3,1],[3,3,3,0],[1,2,2,1]],[[0,2,0,0],[2,1,3,1],[2,3,3,0],[2,2,2,1]],[[0,2,0,0],[2,1,3,1],[2,3,3,0],[1,3,2,1]],[[0,2,0,0],[2,1,3,1],[2,3,3,0],[1,2,3,1]],[[0,2,0,0],[2,1,3,1],[3,3,3,1],[1,2,1,1]],[[0,2,0,0],[2,1,3,1],[2,3,3,1],[2,2,1,1]],[[0,2,0,0],[2,1,3,1],[2,3,3,1],[1,3,1,1]],[[0,2,0,0],[2,1,3,1],[3,3,3,2],[1,2,0,1]],[[0,2,0,0],[2,1,3,1],[2,3,3,2],[2,2,0,1]],[[0,2,0,0],[2,1,3,1],[2,3,3,2],[1,3,0,1]],[[0,2,0,0],[2,1,3,1],[3,3,3,2],[1,2,1,0]],[[0,2,0,0],[2,1,3,1],[2,3,3,2],[2,2,1,0]],[[0,2,0,0],[2,1,3,1],[2,3,3,2],[1,3,1,0]],[[0,2,0,0],[2,1,3,2],[3,3,2,0],[1,2,2,1]],[[0,2,0,0],[2,1,3,2],[2,3,2,0],[2,2,2,1]],[[0,2,0,0],[2,1,3,2],[2,3,2,0],[1,3,2,1]],[[0,2,0,0],[2,1,3,2],[2,3,2,0],[1,2,3,1]],[[0,2,0,0],[2,1,3,2],[3,3,2,1],[1,2,2,0]],[[0,2,0,0],[2,1,3,2],[2,3,2,1],[2,2,2,0]],[[0,2,0,0],[2,1,3,2],[2,3,2,1],[1,3,2,0]],[[0,2,0,0],[2,1,3,2],[3,3,3,0],[1,2,1,1]],[[0,2,0,0],[2,1,3,2],[2,3,3,0],[2,2,1,1]],[[0,2,0,0],[2,1,3,2],[2,3,3,0],[1,3,1,1]],[[0,2,0,0],[2,1,3,2],[3,3,3,1],[1,2,1,0]],[[0,2,0,0],[2,1,3,2],[2,3,3,1],[2,2,1,0]],[[0,2,0,0],[2,1,3,2],[2,3,3,1],[1,3,1,0]],[[0,2,0,0],[2,2,0,2],[1,4,3,2],[1,2,2,1]],[[0,2,0,0],[2,2,0,2],[1,3,3,2],[2,2,2,1]],[[0,2,0,0],[2,2,0,2],[1,3,3,2],[1,3,2,1]],[[0,2,0,0],[2,2,0,2],[1,3,3,2],[1,2,3,1]],[[0,2,0,0],[2,2,0,2],[1,3,3,2],[1,2,2,2]],[[0,2,0,0],[2,2,0,2],[3,2,3,2],[1,2,2,1]],[[0,2,0,0],[2,2,0,2],[2,2,3,2],[2,2,2,1]],[[0,2,0,0],[2,2,0,2],[2,2,3,2],[1,3,2,1]],[[0,2,0,0],[2,2,0,2],[2,2,3,2],[1,2,3,1]],[[0,2,0,0],[2,2,0,2],[2,2,3,2],[1,2,2,2]],[[0,2,0,0],[2,2,0,2],[3,3,3,2],[0,2,2,1]],[[0,2,0,0],[2,2,0,2],[2,4,3,2],[0,2,2,1]],[[0,2,0,0],[2,2,0,2],[2,3,3,2],[0,3,2,1]],[[0,2,0,0],[2,2,0,2],[2,3,3,2],[0,2,3,1]],[[0,2,0,0],[2,2,0,2],[2,3,3,2],[0,2,2,2]],[[0,2,0,0],[2,2,0,2],[3,3,3,2],[1,1,2,1]],[[0,2,0,0],[2,2,0,2],[2,4,3,2],[1,1,2,1]],[[0,2,0,0],[2,2,0,2],[2,3,3,2],[2,1,2,1]],[[0,2,0,0],[2,2,2,0],[1,4,3,2],[1,2,2,1]],[[0,2,0,0],[2,2,2,0],[1,3,3,2],[2,2,2,1]],[[0,2,0,0],[2,2,2,0],[1,3,3,2],[1,3,2,1]],[[0,2,0,0],[2,2,2,0],[1,3,3,2],[1,2,3,1]],[[0,2,0,0],[2,2,2,0],[1,3,3,2],[1,2,2,2]],[[0,2,0,0],[2,2,2,0],[3,2,3,2],[1,2,2,1]],[[0,2,0,0],[2,2,2,0],[2,2,3,2],[2,2,2,1]],[[0,2,0,0],[2,2,2,0],[2,2,3,2],[1,3,2,1]],[[0,2,0,0],[2,2,2,0],[2,2,3,2],[1,2,3,1]],[[0,2,0,0],[2,2,2,0],[2,2,3,2],[1,2,2,2]],[[0,2,0,0],[2,2,2,0],[3,3,3,2],[0,2,2,1]],[[0,2,0,0],[2,2,2,0],[2,4,3,2],[0,2,2,1]],[[0,2,0,0],[2,2,2,0],[2,3,3,2],[0,3,2,1]],[[0,2,0,0],[2,2,2,0],[2,3,3,2],[0,2,3,1]],[[0,2,0,0],[2,2,2,0],[2,3,3,2],[0,2,2,2]],[[0,2,0,0],[2,2,2,0],[3,3,3,2],[1,1,2,1]],[[0,2,0,0],[2,2,2,0],[2,4,3,2],[1,1,2,1]],[[0,2,0,0],[2,2,2,0],[2,3,3,2],[2,1,2,1]],[[0,2,0,0],[2,2,2,1],[1,4,3,1],[1,2,2,1]],[[0,2,0,0],[2,2,2,1],[1,3,3,1],[2,2,2,1]],[[0,2,0,0],[2,2,2,1],[1,3,3,1],[1,3,2,1]],[[0,2,0,0],[2,2,2,1],[1,3,3,1],[1,2,3,1]],[[0,2,0,0],[2,2,2,1],[1,3,3,1],[1,2,2,2]],[[0,2,0,0],[2,2,2,1],[1,4,3,2],[1,2,2,0]],[[0,2,0,0],[2,2,2,1],[1,3,3,2],[2,2,2,0]],[[0,2,0,0],[2,2,2,1],[1,3,3,2],[1,3,2,0]],[[0,2,0,0],[2,2,2,1],[1,3,3,2],[1,2,3,0]],[[0,2,0,0],[2,2,2,1],[3,2,3,1],[1,2,2,1]],[[0,2,0,0],[2,2,2,1],[2,2,3,1],[2,2,2,1]],[[0,2,0,0],[2,2,2,1],[2,2,3,1],[1,3,2,1]],[[0,2,0,0],[2,2,2,1],[2,2,3,1],[1,2,3,1]],[[0,2,0,0],[2,2,2,1],[2,2,3,1],[1,2,2,2]],[[0,2,0,0],[2,2,2,1],[3,2,3,2],[1,2,2,0]],[[0,2,0,0],[2,2,2,1],[2,2,3,2],[2,2,2,0]],[[0,2,0,0],[2,2,2,1],[2,2,3,2],[1,3,2,0]],[[0,2,0,0],[2,2,2,1],[2,2,3,2],[1,2,3,0]],[[0,2,0,0],[2,2,2,1],[3,3,3,1],[0,2,2,1]],[[0,2,0,0],[2,2,2,1],[2,4,3,1],[0,2,2,1]],[[0,2,0,0],[2,2,2,1],[2,3,3,1],[0,3,2,1]],[[0,2,0,0],[2,2,2,1],[2,3,3,1],[0,2,3,1]],[[0,2,0,0],[2,2,2,1],[2,3,3,1],[0,2,2,2]],[[0,2,0,0],[2,2,2,1],[3,3,3,1],[1,1,2,1]],[[0,2,0,0],[2,2,2,1],[2,4,3,1],[1,1,2,1]],[[0,2,0,0],[2,2,2,1],[2,3,3,1],[2,1,2,1]],[[0,2,0,0],[2,2,2,1],[3,3,3,2],[0,2,2,0]],[[0,2,0,0],[2,2,2,1],[2,4,3,2],[0,2,2,0]],[[0,2,0,0],[2,2,2,1],[2,3,3,2],[0,3,2,0]],[[0,2,0,0],[2,2,2,1],[2,3,3,2],[0,2,3,0]],[[0,2,0,0],[2,2,2,1],[3,3,3,2],[1,1,2,0]],[[0,2,0,0],[2,2,2,1],[2,4,3,2],[1,1,2,0]],[[0,2,0,0],[2,2,2,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[2,1,2,0],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[2,1,2,0],[2,4,2,2],[1,2,0,0]],[[1,2,2,1],[2,1,2,0],[3,3,2,2],[1,2,0,0]],[[1,2,2,1],[3,1,2,0],[2,3,2,2],[1,2,0,0]],[[1,2,2,2],[2,1,2,0],[2,3,2,2],[1,2,0,0]],[[1,2,3,1],[2,1,2,0],[2,3,2,2],[1,2,0,0]],[[1,3,2,1],[2,1,2,0],[2,3,2,2],[1,2,0,0]],[[2,2,2,1],[2,1,2,0],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[2,1,2,0],[2,3,2,2],[2,1,1,0]],[[1,2,2,1],[2,1,2,0],[2,4,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,2,0],[3,3,2,2],[1,1,1,0]],[[1,2,2,1],[3,1,2,0],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,1,2,0],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[2,1,2,0],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,1,2,0],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,1,2,0],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,2,0],[2,3,2,2],[2,1,0,1]],[[1,2,2,1],[2,1,2,0],[2,4,2,2],[1,1,0,1]],[[1,2,2,1],[2,1,2,0],[3,3,2,2],[1,1,0,1]],[[1,2,2,1],[3,1,2,0],[2,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,1,2,0],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,1,2,0],[2,3,2,2],[1,1,0,1]],[[0,2,0,0],[2,2,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,0,0],[2,2,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,0,0],[2,2,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,0,0],[2,2,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,0,0],[2,2,3,0],[1,4,2,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,0],[1,3,2,2],[2,2,2,1]],[[0,2,0,0],[2,2,3,0],[1,3,2,2],[1,3,2,1]],[[0,2,0,0],[2,2,3,0],[1,3,2,2],[1,2,3,1]],[[0,2,0,0],[2,2,3,0],[1,3,2,2],[1,2,2,2]],[[0,2,0,0],[2,2,3,0],[1,4,3,2],[1,1,2,1]],[[0,2,0,0],[2,2,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,0,0],[2,2,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,0,0],[2,2,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,0,0],[2,2,3,0],[1,4,3,2],[1,2,1,1]],[[0,2,0,0],[2,2,3,0],[1,3,4,2],[1,2,1,1]],[[0,2,0,0],[2,2,3,0],[1,3,3,2],[2,2,1,1]],[[0,2,0,0],[2,2,3,0],[1,3,3,2],[1,3,1,1]],[[0,2,0,0],[3,2,3,0],[2,1,3,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,0],[3,1,3,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,0],[2,1,4,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,0],[2,1,3,2],[2,2,2,1]],[[0,2,0,0],[2,2,3,0],[2,1,3,2],[1,3,2,1]],[[0,2,0,0],[2,2,3,0],[2,1,3,2],[1,2,3,1]],[[0,2,0,0],[2,2,3,0],[2,1,3,2],[1,2,2,2]],[[0,2,0,0],[3,2,3,0],[2,2,2,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,0],[3,2,2,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,0],[2,2,2,2],[2,2,2,1]],[[0,2,0,0],[2,2,3,0],[2,2,2,2],[1,3,2,1]],[[0,2,0,0],[2,2,3,0],[2,2,2,2],[1,2,3,1]],[[0,2,0,0],[2,2,3,0],[2,2,2,2],[1,2,2,2]],[[0,2,0,0],[2,2,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,0,0],[2,2,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,0,0],[2,2,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,0,0],[2,2,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,0,0],[3,2,3,0],[2,2,3,2],[1,2,1,1]],[[0,2,0,0],[2,2,3,0],[3,2,3,2],[1,2,1,1]],[[0,2,0,0],[2,2,3,0],[2,2,3,2],[2,2,1,1]],[[0,2,0,0],[2,2,3,0],[2,2,3,2],[1,3,1,1]],[[0,2,0,0],[2,2,3,0],[3,3,1,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,0],[2,3,1,2],[2,2,2,1]],[[0,2,0,0],[2,2,3,0],[2,3,1,2],[1,3,2,1]],[[0,2,0,0],[3,2,3,0],[2,3,2,2],[0,2,2,1]],[[0,2,0,0],[2,2,3,0],[3,3,2,2],[0,2,2,1]],[[0,2,0,0],[2,2,3,0],[2,4,2,2],[0,2,2,1]],[[0,2,0,0],[2,2,3,0],[2,3,2,2],[0,3,2,1]],[[0,2,0,0],[2,2,3,0],[2,3,2,2],[0,2,3,1]],[[0,2,0,0],[2,2,3,0],[2,3,2,2],[0,2,2,2]],[[0,2,0,0],[3,2,3,0],[2,3,2,2],[1,1,2,1]],[[0,2,0,0],[2,2,3,0],[3,3,2,2],[1,1,2,1]],[[0,2,0,0],[2,2,3,0],[2,4,2,2],[1,1,2,1]],[[0,2,0,0],[2,2,3,0],[2,3,2,2],[2,1,2,1]],[[0,2,0,0],[3,2,3,0],[2,3,3,2],[0,1,2,1]],[[0,2,0,0],[2,2,3,0],[3,3,3,2],[0,1,2,1]],[[0,2,0,0],[2,2,3,0],[2,4,3,2],[0,1,2,1]],[[0,2,0,0],[2,2,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,0,0],[2,2,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,0,0],[2,2,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,0,0],[3,2,3,0],[2,3,3,2],[0,2,1,1]],[[0,2,0,0],[2,2,3,0],[3,3,3,2],[0,2,1,1]],[[0,2,0,0],[2,2,3,0],[2,4,3,2],[0,2,1,1]],[[0,2,0,0],[2,2,3,0],[2,3,4,2],[0,2,1,1]],[[0,2,0,0],[2,2,3,0],[2,3,3,2],[0,3,1,1]],[[0,2,0,0],[3,2,3,0],[2,3,3,2],[1,0,2,1]],[[0,2,0,0],[2,2,3,0],[3,3,3,2],[1,0,2,1]],[[0,2,0,0],[2,2,3,0],[2,4,3,2],[1,0,2,1]],[[0,2,0,0],[2,2,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,0,0],[2,2,3,0],[2,3,3,2],[2,0,2,1]],[[0,2,0,0],[2,2,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,0,0],[2,2,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,0,0],[3,2,3,0],[2,3,3,2],[1,1,1,1]],[[0,2,0,0],[2,2,3,0],[3,3,3,2],[1,1,1,1]],[[0,2,0,0],[2,2,3,0],[2,4,3,2],[1,1,1,1]],[[0,2,0,0],[2,2,3,0],[2,3,4,2],[1,1,1,1]],[[0,2,0,0],[2,2,3,0],[2,3,3,2],[2,1,1,1]],[[0,2,0,0],[2,2,3,0],[3,3,3,2],[1,2,0,1]],[[0,2,0,0],[2,2,3,0],[2,4,3,2],[1,2,0,1]],[[0,2,0,0],[2,2,3,0],[2,3,3,2],[2,2,0,1]],[[1,3,2,1],[2,1,2,0],[2,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,1,2,0],[2,3,2,2],[1,1,0,1]],[[0,2,0,0],[2,2,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,0,0],[2,2,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,0,0],[2,2,3,1],[1,2,2,2],[1,2,2,2]],[[0,2,0,0],[2,2,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,0,0],[2,2,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,0,0],[2,2,3,1],[1,2,3,1],[1,2,2,2]],[[0,2,0,0],[2,2,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,0,0],[2,2,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,0,0],[2,2,3,1],[1,2,3,2],[1,2,1,2]],[[0,2,0,0],[2,2,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,0,0],[2,2,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,0,0],[2,2,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,0,0],[2,2,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,0,0],[2,2,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,0,0],[2,2,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,0,0],[2,2,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,0,0],[2,2,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,0,0],[2,2,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,0,0],[2,2,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,0,0],[2,2,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,0,0],[2,2,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,0,0],[2,2,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,0,0],[2,2,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,0,0],[2,2,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,0,0],[2,2,3,1],[1,4,3,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,0],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,0],[1,3,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,0],[1,2,3,1]],[[0,2,0,0],[2,2,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,1],[1,1,2,2]],[[0,2,0,0],[2,2,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,0,0],[2,2,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,0,0],[2,2,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,0,0],[2,2,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,2],[1,1,1,2]],[[0,2,0,0],[2,2,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,0,0],[2,2,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,0,0],[2,2,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,0,0],[2,2,3,1],[1,3,3,2],[1,1,3,0]],[[0,2,0,0],[2,2,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,0,0],[2,2,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,0,0],[2,2,3,1],[1,3,3,2],[1,2,0,2]],[[0,2,0,0],[2,2,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,0,0],[2,2,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,0,0],[2,2,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,0,0],[2,2,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,0,0],[2,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,2,0],[2,3,2,2],[2,0,2,0]],[[1,2,2,1],[2,1,2,0],[2,4,2,2],[1,0,2,0]],[[0,2,0,0],[3,2,3,1],[2,1,2,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[3,1,2,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,1,2,3],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,1,2,2],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,1,2,2],[1,3,2,1]],[[0,2,0,0],[2,2,3,1],[2,1,2,2],[1,2,3,1]],[[0,2,0,0],[2,2,3,1],[2,1,2,2],[1,2,2,2]],[[0,2,0,0],[3,2,3,1],[2,1,3,1],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[3,1,3,1],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,1,4,1],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,1,3,1],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,1,3,1],[1,3,2,1]],[[0,2,0,0],[2,2,3,1],[2,1,3,1],[1,2,3,1]],[[0,2,0,0],[2,2,3,1],[2,1,3,1],[1,2,2,2]],[[0,2,0,0],[2,2,3,1],[2,1,4,2],[1,2,1,1]],[[0,2,0,0],[2,2,3,1],[2,1,3,3],[1,2,1,1]],[[0,2,0,0],[2,2,3,1],[2,1,3,2],[1,2,1,2]],[[0,2,0,0],[3,2,3,1],[2,1,3,2],[1,2,2,0]],[[0,2,0,0],[2,2,3,1],[3,1,3,2],[1,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,1,4,2],[1,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,1,3,3],[1,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,1,3,2],[2,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,1,3,2],[1,3,2,0]],[[0,2,0,0],[2,2,3,1],[2,1,3,2],[1,2,3,0]],[[0,2,0,0],[3,2,3,1],[2,2,1,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[3,2,1,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,1,3],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,1,2],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,1,2],[1,3,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,1,2],[1,2,3,1]],[[0,2,0,0],[2,2,3,1],[2,2,1,2],[1,2,2,2]],[[0,2,0,0],[3,2,3,1],[2,2,2,1],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[3,2,2,1],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,2,1],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,2,1],[1,3,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,2,1],[1,2,3,1]],[[0,2,0,0],[2,2,3,1],[2,2,2,1],[1,2,2,2]],[[0,2,0,0],[2,2,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,0,0],[2,2,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,0,0],[3,2,3,1],[2,2,2,2],[1,2,2,0]],[[0,2,0,0],[2,2,3,1],[3,2,2,2],[1,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,2,2,2],[2,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,2,2,2],[1,3,2,0]],[[0,2,0,0],[2,2,3,1],[2,2,2,2],[1,2,3,0]],[[0,2,0,0],[3,2,3,1],[2,2,3,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[3,2,3,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,0],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,0],[1,3,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,0],[1,2,3,1]],[[0,2,0,0],[2,2,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,0,0],[3,2,3,1],[2,2,3,1],[1,2,1,1]],[[0,2,0,0],[2,2,3,1],[3,2,3,1],[1,2,1,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,1],[2,2,1,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,1],[1,3,1,1]],[[0,2,0,0],[2,2,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,2],[0,2,1,2]],[[0,2,0,0],[2,2,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,0,0],[2,2,3,1],[2,2,3,2],[0,2,3,0]],[[0,2,0,0],[3,2,3,1],[2,2,3,2],[1,2,0,1]],[[0,2,0,0],[2,2,3,1],[3,2,3,2],[1,2,0,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,2],[2,2,0,1]],[[0,2,0,0],[2,2,3,1],[2,2,3,2],[1,3,0,1]],[[0,2,0,0],[3,2,3,1],[2,2,3,2],[1,2,1,0]],[[0,2,0,0],[2,2,3,1],[3,2,3,2],[1,2,1,0]],[[0,2,0,0],[2,2,3,1],[2,2,3,2],[2,2,1,0]],[[0,2,0,0],[2,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,2,0],[3,3,2,2],[1,0,2,0]],[[1,2,2,1],[3,1,2,0],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,1,2,0],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[2,1,2,0],[2,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,1,2,0],[2,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,1,2,0],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,2,0],[2,3,2,2],[2,0,1,1]],[[1,2,2,1],[2,1,2,0],[2,4,2,2],[1,0,1,1]],[[0,2,0,0],[2,2,3,1],[3,3,0,2],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,0,2],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,0,2],[1,3,2,1]],[[0,2,0,0],[2,2,3,1],[3,3,1,1],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,1,1],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,1,1],[1,3,2,1]],[[0,2,0,0],[3,2,3,1],[2,3,1,2],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[3,3,1,2],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,0,0],[2,2,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,0,0],[3,2,3,1],[2,3,1,2],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[3,3,1,2],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[2,4,1,2],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,1,2],[2,1,2,1]],[[0,2,0,0],[2,2,3,1],[3,3,1,2],[1,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,1,2],[2,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,1,2],[1,3,2,0]],[[0,2,0,0],[2,2,3,1],[3,3,2,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,2,0],[2,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,2,0],[1,3,2,1]],[[0,2,0,0],[3,2,3,1],[2,3,2,1],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[3,3,2,1],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,0,0],[2,2,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,0,0],[3,2,3,1],[2,3,2,1],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[3,3,2,1],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[2,4,2,1],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,2,1],[2,1,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,0,0],[2,2,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,0,0],[3,2,3,1],[2,3,2,2],[0,2,2,0]],[[0,2,0,0],[2,2,3,1],[3,3,2,2],[0,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,0,0],[2,2,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,0,0],[2,2,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,0,0],[3,2,3,1],[2,3,2,2],[1,1,2,0]],[[0,2,0,0],[2,2,3,1],[3,3,2,2],[1,1,2,0]],[[0,2,0,0],[2,2,3,1],[2,4,2,2],[1,1,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,1,2,0],[3,3,2,2],[1,0,1,1]],[[1,2,2,1],[3,1,2,0],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,1,2,0],[2,3,2,2],[1,0,1,1]],[[1,2,3,1],[2,1,2,0],[2,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,1,2,0],[2,3,2,2],[1,0,1,1]],[[2,2,2,1],[2,1,2,0],[2,3,2,2],[1,0,1,1]],[[0,2,0,0],[3,2,3,1],[2,3,3,0],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[3,3,3,0],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,4,3,0],[0,2,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,0],[0,3,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,0],[0,2,3,1]],[[0,2,0,0],[3,2,3,1],[2,3,3,0],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[3,3,3,0],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[2,4,3,0],[1,1,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,0],[2,1,2,1]],[[0,2,0,0],[3,2,3,1],[2,3,3,1],[0,1,2,1]],[[0,2,0,0],[2,2,3,1],[3,3,3,1],[0,1,2,1]],[[0,2,0,0],[2,2,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,1],[0,1,2,2]],[[0,2,0,0],[3,2,3,1],[2,3,3,1],[0,2,1,1]],[[0,2,0,0],[2,2,3,1],[3,3,3,1],[0,2,1,1]],[[0,2,0,0],[2,2,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,0,0],[2,2,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,1],[0,3,1,1]],[[0,2,0,0],[3,2,3,1],[2,3,3,1],[1,0,2,1]],[[0,2,0,0],[2,2,3,1],[3,3,3,1],[1,0,2,1]],[[0,2,0,0],[2,2,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,1],[2,0,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,1],[1,0,2,2]],[[0,2,0,0],[3,2,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,0,0],[2,2,3,1],[3,3,3,1],[1,1,1,1]],[[0,2,0,0],[2,2,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,0,0],[2,2,3,1],[2,3,4,1],[1,1,1,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,1],[2,1,1,1]],[[0,2,0,0],[3,2,3,1],[2,3,3,1],[1,2,0,1]],[[0,2,0,0],[2,2,3,1],[3,3,3,1],[1,2,0,1]],[[0,2,0,0],[2,2,3,1],[2,4,3,1],[1,2,0,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,1],[2,2,0,1]],[[0,2,0,0],[2,2,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[0,0,2,2]],[[0,2,0,0],[3,2,3,1],[2,3,3,2],[0,1,1,1]],[[0,2,0,0],[2,2,3,1],[3,3,3,2],[0,1,1,1]],[[0,2,0,0],[2,2,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,0,0],[2,2,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[0,1,1,2]],[[0,2,0,0],[3,2,3,1],[2,3,3,2],[0,1,2,0]],[[0,2,0,0],[2,2,3,1],[3,3,3,2],[0,1,2,0]],[[0,2,0,0],[2,2,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[0,1,3,0]],[[0,2,0,0],[3,2,3,1],[2,3,3,2],[0,2,0,1]],[[0,2,0,0],[2,2,3,1],[3,3,3,2],[0,2,0,1]],[[0,2,0,0],[2,2,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,0,0],[2,2,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[0,2,0,2]],[[0,2,0,0],[3,2,3,1],[2,3,3,2],[0,2,1,0]],[[0,2,0,0],[2,2,3,1],[3,3,3,2],[0,2,1,0]],[[0,2,0,0],[2,2,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,0,0],[2,2,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,0,0],[2,2,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,1,2,0],[2,3,2,2],[0,3,1,0]],[[0,2,0,0],[3,2,3,1],[2,3,3,2],[1,0,1,1]],[[0,2,0,0],[2,2,3,1],[3,3,3,2],[1,0,1,1]],[[0,2,0,0],[2,2,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,0,0],[2,2,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[2,0,1,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[1,0,1,2]],[[0,2,0,0],[3,2,3,1],[2,3,3,2],[1,0,2,0]],[[0,2,0,0],[2,2,3,1],[3,3,3,2],[1,0,2,0]],[[0,2,0,0],[2,2,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[2,0,2,0]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[1,0,3,0]],[[0,2,0,0],[3,2,3,1],[2,3,3,2],[1,1,0,1]],[[0,2,0,0],[2,2,3,1],[3,3,3,2],[1,1,0,1]],[[0,2,0,0],[2,2,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,0,0],[2,2,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[2,1,0,1]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[1,1,0,2]],[[0,2,0,0],[3,2,3,1],[2,3,3,2],[1,1,1,0]],[[0,2,0,0],[2,2,3,1],[3,3,3,2],[1,1,1,0]],[[0,2,0,0],[2,2,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,0,0],[2,2,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,0,0],[2,2,3,1],[2,3,3,3],[1,1,1,0]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,1,2,0],[2,4,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,2,0],[3,3,2,2],[0,2,1,0]],[[1,2,2,1],[3,1,2,0],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,1,2,0],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,1,2,0],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,1,2,0],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,1,2,0],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,2,0],[2,3,2,2],[0,3,0,1]],[[0,2,0,0],[3,2,3,1],[2,3,3,2],[1,2,0,0]],[[0,2,0,0],[2,2,3,1],[3,3,3,2],[1,2,0,0]],[[0,2,0,0],[2,2,3,1],[2,4,3,2],[1,2,0,0]],[[0,2,0,0],[2,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,1,2,0],[2,4,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,2,0],[3,3,2,2],[0,2,0,1]],[[1,2,2,1],[3,1,2,0],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,1,2,0],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[2,1,2,0],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,1,2,0],[2,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,1,2,0],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,2,0],[2,4,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,0],[3,3,2,2],[0,1,2,0]],[[1,2,2,1],[3,1,2,0],[2,3,2,2],[0,1,2,0]],[[1,2,2,2],[2,1,2,0],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,1,2,0],[2,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,1,2,0],[2,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,1,2,0],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,2,0],[2,4,2,2],[0,1,1,1]],[[0,2,0,0],[2,2,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,0,0],[2,2,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,0,0],[2,2,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,0,0],[2,2,3,2],[1,2,3,0],[1,2,2,2]],[[0,2,0,0],[2,2,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,0,0],[2,2,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,0,0],[2,2,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,0,0],[2,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,2,0],[3,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,1,2,0],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,1,2,0],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,1,2,0],[2,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,1,2,0],[2,3,2,2],[0,1,1,1]],[[2,2,2,1],[2,1,2,0],[2,3,2,2],[0,1,1,1]],[[0,2,0,0],[2,2,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,0,0],[2,2,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,0,0],[2,2,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,0,0],[2,2,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,0,0],[2,2,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,0,0],[2,2,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,0,0],[2,2,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,0,0],[2,2,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,0,0],[2,2,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,0,0],[2,2,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,0,0],[2,2,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,0,0],[2,2,3,2],[1,3,3,0],[1,1,2,2]],[[0,2,0,0],[2,2,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,0,0],[2,2,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,0,0],[2,2,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,0,0],[2,2,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,0,0],[2,2,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,0,0],[2,2,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,0,0],[2,2,3,2],[1,3,3,1],[1,1,3,0]],[[0,2,0,0],[2,2,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,0,0],[2,2,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,0,0],[2,2,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,0,0],[2,2,3,2],[1,3,3,1],[1,3,0,1]],[[0,2,0,0],[2,2,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,0,0],[2,2,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,0,0],[2,2,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,0,0],[2,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,2,0],[2,3,2,1],[2,2,0,1]],[[1,2,2,1],[2,1,2,0],[2,4,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,2,0],[3,3,2,1],[1,2,0,1]],[[1,2,2,1],[3,1,2,0],[2,3,2,1],[1,2,0,1]],[[1,2,3,1],[2,1,2,0],[2,3,2,1],[1,2,0,1]],[[1,3,2,1],[2,1,2,0],[2,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,1,2,0],[2,3,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,2,0],[2,3,2,1],[2,1,1,1]],[[1,2,2,1],[2,1,2,0],[2,4,2,1],[1,1,1,1]],[[1,2,2,1],[2,1,2,0],[3,3,2,1],[1,1,1,1]],[[1,2,2,1],[3,1,2,0],[2,3,2,1],[1,1,1,1]],[[1,2,2,2],[2,1,2,0],[2,3,2,1],[1,1,1,1]],[[1,2,3,1],[2,1,2,0],[2,3,2,1],[1,1,1,1]],[[1,3,2,1],[2,1,2,0],[2,3,2,1],[1,1,1,1]],[[2,2,2,1],[2,1,2,0],[2,3,2,1],[1,1,1,1]],[[1,2,2,1],[2,1,2,0],[2,3,2,1],[2,0,2,1]],[[1,2,2,1],[2,1,2,0],[2,4,2,1],[1,0,2,1]],[[1,2,2,1],[2,1,2,0],[3,3,2,1],[1,0,2,1]],[[1,2,2,1],[3,1,2,0],[2,3,2,1],[1,0,2,1]],[[0,2,0,0],[3,2,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,2],[3,1,3,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,2],[2,1,4,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,2],[2,1,3,0],[2,2,2,1]],[[0,2,0,0],[2,2,3,2],[2,1,3,0],[1,3,2,1]],[[0,2,0,0],[2,2,3,2],[2,1,3,0],[1,2,3,1]],[[0,2,0,0],[2,2,3,2],[2,1,3,0],[1,2,2,2]],[[0,2,0,0],[3,2,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,0,0],[2,2,3,2],[3,1,3,1],[1,2,2,0]],[[0,2,0,0],[2,2,3,2],[2,1,4,1],[1,2,2,0]],[[0,2,0,0],[2,2,3,2],[2,1,3,1],[2,2,2,0]],[[0,2,0,0],[2,2,3,2],[2,1,3,1],[1,3,2,0]],[[0,2,0,0],[2,2,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,2],[2,1,2,0],[2,3,2,1],[1,0,2,1]],[[1,2,3,1],[2,1,2,0],[2,3,2,1],[1,0,2,1]],[[1,3,2,1],[2,1,2,0],[2,3,2,1],[1,0,2,1]],[[2,2,2,1],[2,1,2,0],[2,3,2,1],[1,0,2,1]],[[0,2,0,0],[3,2,3,2],[2,2,2,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,2],[3,2,2,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,2],[2,2,2,0],[2,2,2,1]],[[0,2,0,0],[2,2,3,2],[2,2,2,0],[1,3,2,1]],[[0,2,0,0],[2,2,3,2],[2,2,2,0],[1,2,3,1]],[[0,2,0,0],[2,2,3,2],[2,2,2,0],[1,2,2,2]],[[0,2,0,0],[3,2,3,2],[2,2,2,1],[1,2,2,0]],[[0,2,0,0],[2,2,3,2],[3,2,2,1],[1,2,2,0]],[[0,2,0,0],[2,2,3,2],[2,2,2,1],[2,2,2,0]],[[0,2,0,0],[2,2,3,2],[2,2,2,1],[1,3,2,0]],[[0,2,0,0],[2,2,3,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[2,1,2,0],[2,3,2,1],[0,3,1,1]],[[0,2,0,0],[2,2,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,0,0],[2,2,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,0,0],[2,2,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,0,0],[2,2,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,0,0],[3,2,3,2],[2,2,3,0],[1,2,1,1]],[[0,2,0,0],[2,2,3,2],[3,2,3,0],[1,2,1,1]],[[0,2,0,0],[2,2,3,2],[2,2,3,0],[2,2,1,1]],[[0,2,0,0],[2,2,3,2],[2,2,3,0],[1,3,1,1]],[[0,2,0,0],[2,2,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,0,0],[2,2,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,0,0],[2,2,3,2],[2,2,3,1],[0,2,3,0]],[[0,2,0,0],[3,2,3,2],[2,2,3,1],[1,2,0,1]],[[0,2,0,0],[2,2,3,2],[3,2,3,1],[1,2,0,1]],[[0,2,0,0],[2,2,3,2],[2,2,3,1],[2,2,0,1]],[[0,2,0,0],[2,2,3,2],[2,2,3,1],[1,3,0,1]],[[0,2,0,0],[3,2,3,2],[2,2,3,1],[1,2,1,0]],[[0,2,0,0],[2,2,3,2],[3,2,3,1],[1,2,1,0]],[[0,2,0,0],[2,2,3,2],[2,2,3,1],[2,2,1,0]],[[0,2,0,0],[2,2,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,2,0],[2,4,2,1],[0,2,1,1]],[[1,2,2,1],[2,1,2,0],[3,3,2,1],[0,2,1,1]],[[1,2,2,1],[3,1,2,0],[2,3,2,1],[0,2,1,1]],[[1,2,2,2],[2,1,2,0],[2,3,2,1],[0,2,1,1]],[[1,2,3,1],[2,1,2,0],[2,3,2,1],[0,2,1,1]],[[1,3,2,1],[2,1,2,0],[2,3,2,1],[0,2,1,1]],[[2,2,2,1],[2,1,2,0],[2,3,2,1],[0,2,1,1]],[[1,2,2,1],[2,1,2,0],[2,4,2,1],[0,1,2,1]],[[1,2,2,1],[2,1,2,0],[3,3,2,1],[0,1,2,1]],[[1,2,2,1],[3,1,2,0],[2,3,2,1],[0,1,2,1]],[[1,2,2,2],[2,1,2,0],[2,3,2,1],[0,1,2,1]],[[1,2,3,1],[2,1,2,0],[2,3,2,1],[0,1,2,1]],[[1,3,2,1],[2,1,2,0],[2,3,2,1],[0,1,2,1]],[[2,2,2,1],[2,1,2,0],[2,3,2,1],[0,1,2,1]],[[0,2,0,0],[2,2,3,2],[3,3,1,0],[1,2,2,1]],[[0,2,0,0],[2,2,3,2],[2,3,1,0],[2,2,2,1]],[[0,2,0,0],[2,2,3,2],[2,3,1,0],[1,3,2,1]],[[0,2,0,0],[2,2,3,2],[3,3,1,1],[1,2,2,0]],[[0,2,0,0],[2,2,3,2],[2,3,1,1],[2,2,2,0]],[[0,2,0,0],[2,2,3,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,2,0],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[2,1,2,0],[2,4,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,0],[3,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,1,2,0],[2,3,1,2],[1,1,2,0]],[[0,2,0,0],[3,2,3,2],[2,3,2,0],[0,2,2,1]],[[0,2,0,0],[2,2,3,2],[3,3,2,0],[0,2,2,1]],[[0,2,0,0],[2,2,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,0,0],[2,2,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,0,0],[2,2,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,0,0],[2,2,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,0,0],[3,2,3,2],[2,3,2,0],[1,1,2,1]],[[0,2,0,0],[2,2,3,2],[3,3,2,0],[1,1,2,1]],[[0,2,0,0],[2,2,3,2],[2,4,2,0],[1,1,2,1]],[[0,2,0,0],[2,2,3,2],[2,3,2,0],[2,1,2,1]],[[0,2,0,0],[3,2,3,2],[2,3,2,1],[0,2,2,0]],[[0,2,0,0],[2,2,3,2],[3,3,2,1],[0,2,2,0]],[[0,2,0,0],[2,2,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,0,0],[2,2,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,0,0],[2,2,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,0,0],[3,2,3,2],[2,3,2,1],[1,1,2,0]],[[0,2,0,0],[2,2,3,2],[3,3,2,1],[1,1,2,0]],[[0,2,0,0],[2,2,3,2],[2,4,2,1],[1,1,2,0]],[[0,2,0,0],[2,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,2],[2,1,2,0],[2,3,1,2],[1,1,2,0]],[[1,2,3,1],[2,1,2,0],[2,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,1,2,0],[2,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,1,2,0],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,0],[2,3,1,2],[0,2,3,0]],[[1,2,2,1],[2,1,2,0],[2,3,1,2],[0,3,2,0]],[[1,2,2,1],[2,1,2,0],[2,4,1,2],[0,2,2,0]],[[1,2,2,1],[2,1,2,0],[3,3,1,2],[0,2,2,0]],[[1,2,2,1],[3,1,2,0],[2,3,1,2],[0,2,2,0]],[[1,2,2,2],[2,1,2,0],[2,3,1,2],[0,2,2,0]],[[1,2,3,1],[2,1,2,0],[2,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,1,2,0],[2,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,1,2,0],[2,3,1,2],[0,2,2,0]],[[0,2,0,0],[3,2,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,0],[2,2,3,2],[3,3,3,0],[0,1,2,1]],[[0,2,0,0],[2,2,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,0,0],[2,2,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,0,0],[2,2,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,0,0],[2,2,3,2],[2,3,3,0],[0,1,2,2]],[[0,2,0,0],[3,2,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,0],[2,2,3,2],[3,3,3,0],[0,2,1,1]],[[0,2,0,0],[2,2,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,0,0],[2,2,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,0,0],[2,2,3,2],[2,3,3,0],[0,3,1,1]],[[0,2,0,0],[3,2,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,0],[2,2,3,2],[3,3,3,0],[1,0,2,1]],[[0,2,0,0],[2,2,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,0,0],[2,2,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,0,0],[2,2,3,2],[2,3,3,0],[2,0,2,1]],[[0,2,0,0],[2,2,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,0,0],[2,2,3,2],[2,3,3,0],[1,0,2,2]],[[0,2,0,0],[3,2,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,0],[2,2,3,2],[3,3,3,0],[1,1,1,1]],[[0,2,0,0],[2,2,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,0,0],[2,2,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,0,0],[2,2,3,2],[2,3,3,0],[2,1,1,1]],[[0,2,0,0],[3,2,3,2],[2,3,3,0],[1,2,0,1]],[[0,2,0,0],[2,2,3,2],[3,3,3,0],[1,2,0,1]],[[0,2,0,0],[2,2,3,2],[2,4,3,0],[1,2,0,1]],[[0,2,0,0],[2,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,1,2,0],[2,3,1,1],[2,1,2,1]],[[1,2,2,1],[2,1,2,0],[2,4,1,1],[1,1,2,1]],[[1,2,2,1],[2,1,2,0],[3,3,1,1],[1,1,2,1]],[[1,2,2,1],[3,1,2,0],[2,3,1,1],[1,1,2,1]],[[1,2,2,2],[2,1,2,0],[2,3,1,1],[1,1,2,1]],[[1,2,3,1],[2,1,2,0],[2,3,1,1],[1,1,2,1]],[[1,3,2,1],[2,1,2,0],[2,3,1,1],[1,1,2,1]],[[2,2,2,1],[2,1,2,0],[2,3,1,1],[1,1,2,1]],[[0,2,0,0],[3,2,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,0],[2,2,3,2],[3,3,3,1],[0,1,1,1]],[[0,2,0,0],[2,2,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,0,0],[2,2,3,2],[2,3,4,1],[0,1,1,1]],[[0,2,0,0],[3,2,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,0],[2,2,3,2],[3,3,3,1],[0,1,2,0]],[[0,2,0,0],[2,2,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,0,0],[2,2,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,0,0],[2,2,3,2],[2,3,3,1],[0,1,3,0]],[[0,2,0,0],[3,2,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,0],[2,2,3,2],[3,3,3,1],[0,2,0,1]],[[0,2,0,0],[2,2,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,0,0],[2,2,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,0,0],[2,2,3,2],[2,3,3,1],[0,3,0,1]],[[0,2,0,0],[3,2,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,0],[2,2,3,2],[3,3,3,1],[0,2,1,0]],[[0,2,0,0],[2,2,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,0,0],[2,2,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,0,0],[2,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,1,2,0],[2,3,1,1],[0,2,2,2]],[[1,2,2,1],[2,1,2,0],[2,3,1,1],[0,2,3,1]],[[1,2,2,1],[2,1,2,0],[2,3,1,1],[0,3,2,1]],[[1,2,2,1],[2,1,2,0],[2,4,1,1],[0,2,2,1]],[[1,2,2,1],[2,1,2,0],[3,3,1,1],[0,2,2,1]],[[1,2,2,1],[3,1,2,0],[2,3,1,1],[0,2,2,1]],[[1,2,2,2],[2,1,2,0],[2,3,1,1],[0,2,2,1]],[[0,2,0,0],[3,2,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,0],[2,2,3,2],[3,3,3,1],[1,0,1,1]],[[0,2,0,0],[2,2,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,0,0],[2,2,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,0,0],[2,2,3,2],[2,3,3,1],[2,0,1,1]],[[0,2,0,0],[3,2,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,0],[2,2,3,2],[3,3,3,1],[1,0,2,0]],[[0,2,0,0],[2,2,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,0,0],[2,2,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,0,0],[2,2,3,2],[2,3,3,1],[2,0,2,0]],[[0,2,0,0],[2,2,3,2],[2,3,3,1],[1,0,3,0]],[[0,2,0,0],[3,2,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,0],[2,2,3,2],[3,3,3,1],[1,1,0,1]],[[0,2,0,0],[2,2,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,0,0],[2,2,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,0,0],[2,2,3,2],[2,3,3,1],[2,1,0,1]],[[0,2,0,0],[3,2,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,0],[2,2,3,2],[3,3,3,1],[1,1,1,0]],[[0,2,0,0],[2,2,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,0,0],[2,2,3,2],[2,3,4,1],[1,1,1,0]],[[0,2,0,0],[2,2,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,3,1],[2,1,2,0],[2,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,1,2,0],[2,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,1,2,0],[2,3,1,1],[0,2,2,1]],[[0,2,0,0],[3,2,3,2],[2,3,3,1],[1,2,0,0]],[[0,2,0,0],[2,2,3,2],[3,3,3,1],[1,2,0,0]],[[0,2,0,0],[2,2,3,2],[2,4,3,1],[1,2,0,0]],[[0,2,0,0],[2,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,1,2,0],[2,3,0,2],[1,3,2,0]],[[1,2,2,1],[2,1,2,0],[2,3,0,2],[2,2,2,0]],[[1,2,2,1],[2,1,2,0],[3,3,0,2],[1,2,2,0]],[[1,2,2,1],[3,1,2,0],[2,3,0,2],[1,2,2,0]],[[1,2,3,1],[2,1,2,0],[2,3,0,2],[1,2,2,0]],[[1,3,2,1],[2,1,2,0],[2,3,0,2],[1,2,2,0]],[[2,2,2,1],[2,1,2,0],[2,3,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,0],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[2,1,2,0],[2,4,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,2,0],[3,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,1,2,0],[2,3,0,2],[1,1,2,1]],[[1,2,2,2],[2,1,2,0],[2,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,1,2,0],[2,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,1,2,0],[2,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,1,2,0],[2,3,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,2,0],[2,3,0,2],[0,2,2,2]],[[1,2,2,1],[2,1,2,0],[2,3,0,2],[0,2,3,1]],[[1,2,2,1],[2,1,2,0],[2,3,0,2],[0,3,2,1]],[[1,2,2,1],[2,1,2,0],[2,3,0,3],[0,2,2,1]],[[1,2,2,1],[2,1,2,0],[2,4,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,2,0],[3,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,1,2,0],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,2,0],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,2,0],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,1,2,0],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,2,0],[2,3,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,2,0],[2,3,0,1],[1,3,2,1]],[[1,2,2,1],[2,1,2,0],[2,3,0,1],[2,2,2,1]],[[1,2,2,1],[2,1,2,0],[3,3,0,1],[1,2,2,1]],[[1,2,2,1],[3,1,2,0],[2,3,0,1],[1,2,2,1]],[[1,2,3,1],[2,1,2,0],[2,3,0,1],[1,2,2,1]],[[1,3,2,1],[2,1,2,0],[2,3,0,1],[1,2,2,1]],[[2,2,2,1],[2,1,2,0],[2,3,0,1],[1,2,2,1]],[[1,2,2,1],[2,1,2,0],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[2,1,2,0],[2,2,2,2],[2,2,1,0]],[[1,2,2,1],[2,1,2,0],[3,2,2,2],[1,2,1,0]],[[1,2,2,1],[3,1,2,0],[2,2,2,2],[1,2,1,0]],[[1,2,2,2],[2,1,2,0],[2,2,2,2],[1,2,1,0]],[[1,2,3,1],[2,1,2,0],[2,2,2,2],[1,2,1,0]],[[1,3,2,1],[2,1,2,0],[2,2,2,2],[1,2,1,0]],[[2,2,2,1],[2,1,2,0],[2,2,2,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,0],[2,2,2,2],[1,3,0,1]],[[1,2,2,1],[2,1,2,0],[2,2,2,2],[2,2,0,1]],[[1,2,2,1],[2,1,2,0],[3,2,2,2],[1,2,0,1]],[[1,2,2,1],[3,1,2,0],[2,2,2,2],[1,2,0,1]],[[1,2,2,2],[2,1,2,0],[2,2,2,2],[1,2,0,1]],[[1,2,3,1],[2,1,2,0],[2,2,2,2],[1,2,0,1]],[[1,3,2,1],[2,1,2,0],[2,2,2,2],[1,2,0,1]],[[2,2,2,1],[2,1,2,0],[2,2,2,2],[1,2,0,1]],[[0,2,0,0],[2,3,0,2],[0,4,3,2],[1,2,2,1]],[[0,2,0,0],[2,3,0,2],[0,3,3,2],[2,2,2,1]],[[0,2,0,0],[2,3,0,2],[0,3,3,2],[1,3,2,1]],[[0,2,0,0],[2,3,0,2],[0,3,3,2],[1,2,3,1]],[[0,2,0,0],[2,3,0,2],[0,3,3,2],[1,2,2,2]],[[0,2,0,0],[2,3,0,2],[1,4,3,2],[0,2,2,1]],[[0,2,0,0],[2,3,0,2],[1,3,3,2],[0,3,2,1]],[[0,2,0,0],[2,3,0,2],[1,3,3,2],[0,2,3,1]],[[0,2,0,0],[2,3,0,2],[1,3,3,2],[0,2,2,2]],[[1,2,2,1],[2,1,2,0],[2,2,2,1],[1,3,1,1]],[[1,2,2,1],[2,1,2,0],[2,2,2,1],[2,2,1,1]],[[1,2,2,1],[2,1,2,0],[3,2,2,1],[1,2,1,1]],[[1,2,2,1],[3,1,2,0],[2,2,2,1],[1,2,1,1]],[[1,2,2,2],[2,1,2,0],[2,2,2,1],[1,2,1,1]],[[1,2,3,1],[2,1,2,0],[2,2,2,1],[1,2,1,1]],[[1,3,2,1],[2,1,2,0],[2,2,2,1],[1,2,1,1]],[[2,2,2,1],[2,1,2,0],[2,2,2,1],[1,2,1,1]],[[0,2,0,0],[2,3,2,0],[0,4,3,2],[1,2,2,1]],[[0,2,0,0],[2,3,2,0],[0,3,3,2],[2,2,2,1]],[[0,2,0,0],[2,3,2,0],[0,3,3,2],[1,3,2,1]],[[0,2,0,0],[2,3,2,0],[0,3,3,2],[1,2,3,1]],[[0,2,0,0],[2,3,2,0],[0,3,3,2],[1,2,2,2]],[[0,2,0,0],[2,3,2,0],[1,4,3,2],[0,2,2,1]],[[0,2,0,0],[2,3,2,0],[1,3,3,2],[0,3,2,1]],[[0,2,0,0],[2,3,2,0],[1,3,3,2],[0,2,3,1]],[[0,2,0,0],[2,3,2,0],[1,3,3,2],[0,2,2,2]],[[1,2,2,1],[2,1,2,0],[2,2,1,2],[1,2,3,0]],[[1,2,2,1],[2,1,2,0],[2,2,1,2],[1,3,2,0]],[[1,2,2,1],[2,1,2,0],[2,2,1,2],[2,2,2,0]],[[1,2,2,1],[2,1,2,0],[3,2,1,2],[1,2,2,0]],[[1,2,2,1],[3,1,2,0],[2,2,1,2],[1,2,2,0]],[[1,2,2,2],[2,1,2,0],[2,2,1,2],[1,2,2,0]],[[0,2,0,0],[2,3,2,1],[0,4,3,1],[1,2,2,1]],[[0,2,0,0],[2,3,2,1],[0,3,3,1],[2,2,2,1]],[[0,2,0,0],[2,3,2,1],[0,3,3,1],[1,3,2,1]],[[0,2,0,0],[2,3,2,1],[0,3,3,1],[1,2,3,1]],[[0,2,0,0],[2,3,2,1],[0,3,3,1],[1,2,2,2]],[[0,2,0,0],[2,3,2,1],[0,4,3,2],[1,2,2,0]],[[0,2,0,0],[2,3,2,1],[0,3,3,2],[2,2,2,0]],[[0,2,0,0],[2,3,2,1],[0,3,3,2],[1,3,2,0]],[[0,2,0,0],[2,3,2,1],[0,3,3,2],[1,2,3,0]],[[0,2,0,0],[2,3,2,1],[1,4,3,1],[0,2,2,1]],[[0,2,0,0],[2,3,2,1],[1,3,3,1],[0,3,2,1]],[[0,2,0,0],[2,3,2,1],[1,3,3,1],[0,2,3,1]],[[0,2,0,0],[2,3,2,1],[1,3,3,1],[0,2,2,2]],[[0,2,0,0],[2,3,2,1],[1,4,3,2],[0,2,2,0]],[[0,2,0,0],[2,3,2,1],[1,3,3,2],[0,3,2,0]],[[0,2,0,0],[2,3,2,1],[1,3,3,2],[0,2,3,0]],[[1,2,3,1],[2,1,2,0],[2,2,1,2],[1,2,2,0]],[[1,3,2,1],[2,1,2,0],[2,2,1,2],[1,2,2,0]],[[2,2,2,1],[2,1,2,0],[2,2,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,0],[2,2,1,1],[1,2,2,2]],[[1,2,2,1],[2,1,2,0],[2,2,1,1],[1,2,3,1]],[[1,2,2,1],[2,1,2,0],[2,2,1,1],[1,3,2,1]],[[1,2,2,1],[2,1,2,0],[2,2,1,1],[2,2,2,1]],[[1,2,2,1],[2,1,2,0],[3,2,1,1],[1,2,2,1]],[[1,2,2,1],[3,1,2,0],[2,2,1,1],[1,2,2,1]],[[1,2,2,2],[2,1,2,0],[2,2,1,1],[1,2,2,1]],[[1,2,3,1],[2,1,2,0],[2,2,1,1],[1,2,2,1]],[[1,3,2,1],[2,1,2,0],[2,2,1,1],[1,2,2,1]],[[2,2,2,1],[2,1,2,0],[2,2,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,2,0],[2,2,0,2],[1,2,2,2]],[[1,2,2,1],[2,1,2,0],[2,2,0,2],[1,2,3,1]],[[1,2,2,1],[2,1,2,0],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[2,1,2,0],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,2,0],[2,2,0,3],[1,2,2,1]],[[1,2,2,1],[2,1,2,0],[3,2,0,2],[1,2,2,1]],[[1,2,2,1],[3,1,2,0],[2,2,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,2,0],[2,2,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,2,0],[2,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,2,0],[2,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,2,0],[2,2,0,2],[1,2,2,1]],[[1,2,2,1],[2,1,2,0],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,2,0],[2,0,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,2,0],[2,0,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,2,0],[2,0,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,2,0],[2,0,4,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,0],[3,0,3,2],[1,2,2,0]],[[1,2,2,1],[3,1,2,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,2,0],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,2,0],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,2,0],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,2,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,0],[2,0,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,2,0],[2,0,3,3],[1,2,1,1]],[[1,2,2,1],[2,1,2,0],[2,0,4,2],[1,2,1,1]],[[1,2,2,1],[2,1,2,0],[2,0,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,2,0],[2,0,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,2,0],[2,0,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,2,0],[2,0,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,2,0],[2,0,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,2,0],[3,0,3,1],[1,2,2,1]],[[1,2,2,1],[3,1,2,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,2],[2,1,2,0],[2,0,3,1],[1,2,2,1]],[[1,2,3,1],[2,1,2,0],[2,0,3,1],[1,2,2,1]],[[1,3,2,1],[2,1,2,0],[2,0,3,1],[1,2,2,1]],[[2,2,2,1],[2,1,2,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,1],[2,1,2,0],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,2,0],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,2,0],[2,0,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,2,0],[2,0,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,2,0],[2,0,2,3],[1,2,2,1]],[[1,2,2,1],[2,1,2,0],[3,0,2,2],[1,2,2,1]],[[1,2,2,1],[3,1,2,0],[2,0,2,2],[1,2,2,1]],[[1,2,2,2],[2,1,2,0],[2,0,2,2],[1,2,2,1]],[[1,2,3,1],[2,1,2,0],[2,0,2,2],[1,2,2,1]],[[1,3,2,1],[2,1,2,0],[2,0,2,2],[1,2,2,1]],[[2,2,2,1],[2,1,2,0],[2,0,2,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,0],[0,2,4,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,0],[0,2,3,2],[2,2,2,1]],[[0,2,0,0],[2,3,3,0],[0,2,3,2],[1,3,2,1]],[[0,2,0,0],[2,3,3,0],[0,2,3,2],[1,2,3,1]],[[0,2,0,0],[2,3,3,0],[0,2,3,2],[1,2,2,2]],[[0,2,0,0],[3,3,3,0],[0,3,2,2],[1,2,2,1]],[[0,2,0,0],[2,4,3,0],[0,3,2,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,0],[0,4,2,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,0],[0,3,2,2],[2,2,2,1]],[[0,2,0,0],[2,3,3,0],[0,3,2,2],[1,3,2,1]],[[0,2,0,0],[2,3,3,0],[0,3,2,2],[1,2,3,1]],[[0,2,0,0],[2,3,3,0],[0,3,2,2],[1,2,2,2]],[[0,2,0,0],[3,3,3,0],[0,3,3,2],[1,1,2,1]],[[0,2,0,0],[2,4,3,0],[0,3,3,2],[1,1,2,1]],[[0,2,0,0],[2,3,3,0],[0,4,3,2],[1,1,2,1]],[[0,2,0,0],[2,3,3,0],[0,3,4,2],[1,1,2,1]],[[0,2,0,0],[2,3,3,0],[0,3,3,2],[1,1,3,1]],[[0,2,0,0],[2,3,3,0],[0,3,3,2],[1,1,2,2]],[[0,2,0,0],[3,3,3,0],[0,3,3,2],[1,2,1,1]],[[0,2,0,0],[2,4,3,0],[0,3,3,2],[1,2,1,1]],[[0,2,0,0],[2,3,3,0],[0,4,3,2],[1,2,1,1]],[[0,2,0,0],[2,3,3,0],[0,3,4,2],[1,2,1,1]],[[0,2,0,0],[2,3,3,0],[0,3,3,2],[2,2,1,1]],[[0,2,0,0],[2,3,3,0],[0,3,3,2],[1,3,1,1]],[[0,2,0,0],[2,3,3,0],[1,2,4,2],[0,2,2,1]],[[0,2,0,0],[2,3,3,0],[1,2,3,2],[0,3,2,1]],[[0,2,0,0],[2,3,3,0],[1,2,3,2],[0,2,3,1]],[[0,2,0,0],[2,3,3,0],[1,2,3,2],[0,2,2,2]],[[0,2,0,0],[3,3,3,0],[1,3,2,2],[0,2,2,1]],[[0,2,0,0],[2,4,3,0],[1,3,2,2],[0,2,2,1]],[[0,2,0,0],[2,3,3,0],[1,4,2,2],[0,2,2,1]],[[0,2,0,0],[2,3,3,0],[1,3,2,2],[0,3,2,1]],[[0,2,0,0],[2,3,3,0],[1,3,2,2],[0,2,3,1]],[[0,2,0,0],[2,3,3,0],[1,3,2,2],[0,2,2,2]],[[0,2,0,0],[3,3,3,0],[1,3,2,2],[1,1,2,1]],[[0,2,0,0],[2,4,3,0],[1,3,2,2],[1,1,2,1]],[[0,2,0,0],[2,3,3,0],[1,4,2,2],[1,1,2,1]],[[0,2,0,0],[3,3,3,0],[1,3,3,2],[0,1,2,1]],[[0,2,0,0],[2,4,3,0],[1,3,3,2],[0,1,2,1]],[[0,2,0,0],[2,3,3,0],[1,4,3,2],[0,1,2,1]],[[0,2,0,0],[2,3,3,0],[1,3,4,2],[0,1,2,1]],[[0,2,0,0],[2,3,3,0],[1,3,3,2],[0,1,3,1]],[[0,2,0,0],[2,3,3,0],[1,3,3,2],[0,1,2,2]],[[0,2,0,0],[3,3,3,0],[1,3,3,2],[0,2,1,1]],[[0,2,0,0],[2,4,3,0],[1,3,3,2],[0,2,1,1]],[[0,2,0,0],[2,3,3,0],[1,4,3,2],[0,2,1,1]],[[0,2,0,0],[2,3,3,0],[1,3,4,2],[0,2,1,1]],[[0,2,0,0],[2,3,3,0],[1,3,3,2],[0,3,1,1]],[[0,2,0,0],[3,3,3,0],[1,3,3,2],[1,0,2,1]],[[0,2,0,0],[2,4,3,0],[1,3,3,2],[1,0,2,1]],[[0,2,0,0],[2,3,3,0],[1,4,3,2],[1,0,2,1]],[[0,2,0,0],[2,3,3,0],[1,3,4,2],[1,0,2,1]],[[0,2,0,0],[2,3,3,0],[1,3,3,2],[1,0,3,1]],[[0,2,0,0],[2,3,3,0],[1,3,3,2],[1,0,2,2]],[[0,2,0,0],[3,3,3,0],[1,3,3,2],[1,1,1,1]],[[0,2,0,0],[2,4,3,0],[1,3,3,2],[1,1,1,1]],[[0,2,0,0],[2,3,3,0],[1,4,3,2],[1,1,1,1]],[[0,2,0,0],[2,3,3,0],[1,3,4,2],[1,1,1,1]],[[0,2,0,0],[3,3,3,0],[2,0,3,2],[1,2,2,1]],[[0,2,0,0],[2,4,3,0],[2,0,3,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,0],[3,0,3,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,0],[2,0,4,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,0],[2,0,3,2],[2,2,2,1]],[[0,2,0,0],[2,3,3,0],[2,0,3,2],[1,3,2,1]],[[0,2,0,0],[2,3,3,0],[2,0,3,2],[1,2,3,1]],[[0,2,0,0],[2,3,3,0],[2,0,3,2],[1,2,2,2]],[[0,2,0,0],[3,3,3,0],[2,1,2,2],[1,2,2,1]],[[0,2,0,0],[2,4,3,0],[2,1,2,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,0],[3,1,2,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,0],[2,1,2,2],[2,2,2,1]],[[0,2,0,0],[2,3,3,0],[2,1,2,2],[1,3,2,1]],[[0,2,0,0],[2,3,3,0],[2,1,2,2],[1,2,3,1]],[[0,2,0,0],[2,3,3,0],[2,1,2,2],[1,2,2,2]],[[0,2,0,0],[3,3,3,0],[2,1,3,2],[1,2,1,1]],[[0,2,0,0],[2,4,3,0],[2,1,3,2],[1,2,1,1]],[[0,2,0,0],[2,3,3,0],[3,1,3,2],[1,2,1,1]],[[0,2,0,0],[2,3,3,0],[2,1,3,2],[2,2,1,1]],[[0,2,0,0],[2,3,3,0],[2,1,3,2],[1,3,1,1]],[[0,2,0,0],[3,3,3,0],[2,2,2,2],[0,2,2,1]],[[0,2,0,0],[2,4,3,0],[2,2,2,2],[0,2,2,1]],[[0,2,0,0],[2,3,3,0],[3,2,2,2],[0,2,2,1]],[[0,2,0,0],[3,3,3,0],[2,2,2,2],[1,1,2,1]],[[0,2,0,0],[2,4,3,0],[2,2,2,2],[1,1,2,1]],[[0,2,0,0],[2,3,3,0],[3,2,2,2],[1,1,2,1]],[[0,2,0,0],[2,3,3,0],[2,2,2,2],[2,1,2,1]],[[0,2,0,0],[3,3,3,0],[2,2,3,2],[0,1,2,1]],[[0,2,0,0],[2,4,3,0],[2,2,3,2],[0,1,2,1]],[[0,2,0,0],[2,3,3,0],[3,2,3,2],[0,1,2,1]],[[0,2,0,0],[3,3,3,0],[2,2,3,2],[0,2,1,1]],[[0,2,0,0],[2,4,3,0],[2,2,3,2],[0,2,1,1]],[[0,2,0,0],[2,3,3,0],[3,2,3,2],[0,2,1,1]],[[0,2,0,0],[3,3,3,0],[2,2,3,2],[1,0,2,1]],[[0,2,0,0],[2,4,3,0],[2,2,3,2],[1,0,2,1]],[[0,2,0,0],[2,3,3,0],[3,2,3,2],[1,0,2,1]],[[0,2,0,0],[2,3,3,0],[2,2,3,2],[2,0,2,1]],[[0,2,0,0],[3,3,3,0],[2,2,3,2],[1,1,1,1]],[[0,2,0,0],[2,4,3,0],[2,2,3,2],[1,1,1,1]],[[0,2,0,0],[2,3,3,0],[3,2,3,2],[1,1,1,1]],[[0,2,0,0],[2,3,3,0],[2,2,3,2],[2,1,1,1]],[[1,2,2,1],[2,1,2,0],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,1,2,0],[1,3,2,2],[2,2,1,0]],[[1,2,2,1],[2,1,2,0],[1,4,2,2],[1,2,1,0]],[[1,2,2,1],[2,1,2,0],[1,3,2,2],[1,3,0,1]],[[1,2,2,1],[2,1,2,0],[1,3,2,2],[2,2,0,1]],[[1,2,2,1],[2,1,2,0],[1,4,2,2],[1,2,0,1]],[[1,2,2,1],[2,1,2,0],[1,3,2,1],[1,3,1,1]],[[1,2,2,1],[2,1,2,0],[1,3,2,1],[2,2,1,1]],[[1,2,2,1],[2,1,2,0],[1,4,2,1],[1,2,1,1]],[[0,2,0,0],[2,3,3,1],[0,2,2,3],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,2,2,2],[2,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,2,2,2],[1,3,2,1]],[[0,2,0,0],[2,3,3,1],[0,2,2,2],[1,2,3,1]],[[0,2,0,0],[2,3,3,1],[0,2,2,2],[1,2,2,2]],[[0,2,0,0],[2,3,3,1],[0,2,4,1],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,2,3,1],[2,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,2,3,1],[1,3,2,1]],[[0,2,0,0],[2,3,3,1],[0,2,3,1],[1,2,3,1]],[[0,2,0,0],[2,3,3,1],[0,2,3,1],[1,2,2,2]],[[0,2,0,0],[2,3,3,1],[0,2,4,2],[1,2,1,1]],[[0,2,0,0],[2,3,3,1],[0,2,3,3],[1,2,1,1]],[[0,2,0,0],[2,3,3,1],[0,2,3,2],[1,2,1,2]],[[0,2,0,0],[2,3,3,1],[0,2,4,2],[1,2,2,0]],[[0,2,0,0],[2,3,3,1],[0,2,3,3],[1,2,2,0]],[[0,2,0,0],[2,3,3,1],[0,2,3,2],[2,2,2,0]],[[0,2,0,0],[2,3,3,1],[0,2,3,2],[1,3,2,0]],[[0,2,0,0],[2,3,3,1],[0,2,3,2],[1,2,3,0]],[[0,2,0,0],[3,3,3,1],[0,3,1,2],[1,2,2,1]],[[0,2,0,0],[2,4,3,1],[0,3,1,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,4,1,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,1,3],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,1,2],[2,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,1,2],[1,3,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,1,2],[1,2,3,1]],[[0,2,0,0],[2,3,3,1],[0,3,1,2],[1,2,2,2]],[[0,2,0,0],[3,3,3,1],[0,3,2,1],[1,2,2,1]],[[0,2,0,0],[2,4,3,1],[0,3,2,1],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,4,2,1],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,2,1],[2,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,2,1],[1,3,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,2,1],[1,2,3,1]],[[0,2,0,0],[2,3,3,1],[0,3,2,1],[1,2,2,2]],[[0,2,0,0],[2,3,3,1],[0,3,2,3],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,2,2],[1,1,3,1]],[[0,2,0,0],[2,3,3,1],[0,3,2,2],[1,1,2,2]],[[0,2,0,0],[3,3,3,1],[0,3,2,2],[1,2,2,0]],[[0,2,0,0],[2,4,3,1],[0,3,2,2],[1,2,2,0]],[[0,2,0,0],[2,3,3,1],[0,4,2,2],[1,2,2,0]],[[0,2,0,0],[2,3,3,1],[0,3,2,2],[2,2,2,0]],[[0,2,0,0],[2,3,3,1],[0,3,2,2],[1,3,2,0]],[[0,2,0,0],[2,3,3,1],[0,3,2,2],[1,2,3,0]],[[0,2,0,0],[3,3,3,1],[0,3,3,0],[1,2,2,1]],[[0,2,0,0],[2,4,3,1],[0,3,3,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,4,3,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,0],[2,2,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,0],[1,3,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,0],[1,2,3,1]],[[0,2,0,0],[3,3,3,1],[0,3,3,1],[1,1,2,1]],[[0,2,0,0],[2,4,3,1],[0,3,3,1],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[0,4,3,1],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,4,1],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,1],[1,1,3,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,1],[1,1,2,2]],[[0,2,0,0],[3,3,3,1],[0,3,3,1],[1,2,1,1]],[[0,2,0,0],[2,4,3,1],[0,3,3,1],[1,2,1,1]],[[0,2,0,0],[2,3,3,1],[0,4,3,1],[1,2,1,1]],[[0,2,0,0],[2,3,3,1],[0,3,4,1],[1,2,1,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,1],[2,2,1,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,1],[1,3,1,1]],[[0,2,0,0],[2,3,3,1],[0,3,4,2],[1,0,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,3],[1,0,2,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,2],[1,0,2,2]],[[0,2,0,0],[3,3,3,1],[0,3,3,2],[1,1,1,1]],[[0,2,0,0],[2,4,3,1],[0,3,3,2],[1,1,1,1]],[[0,2,0,0],[2,3,3,1],[0,4,3,2],[1,1,1,1]],[[0,2,0,0],[2,3,3,1],[0,3,4,2],[1,1,1,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,3],[1,1,1,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,2],[1,1,1,2]],[[0,2,0,0],[3,3,3,1],[0,3,3,2],[1,1,2,0]],[[0,2,0,0],[2,4,3,1],[0,3,3,2],[1,1,2,0]],[[0,2,0,0],[2,3,3,1],[0,4,3,2],[1,1,2,0]],[[0,2,0,0],[2,3,3,1],[0,3,4,2],[1,1,2,0]],[[0,2,0,0],[2,3,3,1],[0,3,3,3],[1,1,2,0]],[[0,2,0,0],[2,3,3,1],[0,3,3,2],[1,1,3,0]],[[0,2,0,0],[3,3,3,1],[0,3,3,2],[1,2,0,1]],[[0,2,0,0],[2,4,3,1],[0,3,3,2],[1,2,0,1]],[[0,2,0,0],[2,3,3,1],[0,4,3,2],[1,2,0,1]],[[0,2,0,0],[2,3,3,1],[0,3,4,2],[1,2,0,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,3],[1,2,0,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,2],[2,2,0,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,2],[1,3,0,1]],[[0,2,0,0],[2,3,3,1],[0,3,3,2],[1,2,0,2]],[[0,2,0,0],[3,3,3,1],[0,3,3,2],[1,2,1,0]],[[0,2,0,0],[2,4,3,1],[0,3,3,2],[1,2,1,0]],[[0,2,0,0],[2,3,3,1],[0,4,3,2],[1,2,1,0]],[[0,2,0,0],[2,3,3,1],[0,3,4,2],[1,2,1,0]],[[0,2,0,0],[2,3,3,1],[0,3,3,3],[1,2,1,0]],[[0,2,0,0],[2,3,3,1],[0,3,3,2],[2,2,1,0]],[[0,2,0,0],[2,3,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,2,0],[1,3,1,2],[1,2,3,0]],[[1,2,2,1],[2,1,2,0],[1,3,1,2],[1,3,2,0]],[[1,2,2,1],[2,1,2,0],[1,3,1,2],[2,2,2,0]],[[1,2,2,1],[2,1,2,0],[1,4,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,2,0],[1,3,1,1],[1,2,2,2]],[[1,2,2,1],[2,1,2,0],[1,3,1,1],[1,2,3,1]],[[1,2,2,1],[2,1,2,0],[1,3,1,1],[1,3,2,1]],[[1,2,2,1],[2,1,2,0],[1,3,1,1],[2,2,2,1]],[[0,2,0,0],[2,3,3,1],[1,2,2,3],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[1,2,2,2],[0,3,2,1]],[[0,2,0,0],[2,3,3,1],[1,2,2,2],[0,2,3,1]],[[0,2,0,0],[2,3,3,1],[1,2,2,2],[0,2,2,2]],[[0,2,0,0],[2,3,3,1],[1,2,4,1],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[1,2,3,1],[0,3,2,1]],[[0,2,0,0],[2,3,3,1],[1,2,3,1],[0,2,3,1]],[[0,2,0,0],[2,3,3,1],[1,2,3,1],[0,2,2,2]],[[0,2,0,0],[2,3,3,1],[1,2,4,2],[0,2,1,1]],[[0,2,0,0],[2,3,3,1],[1,2,3,3],[0,2,1,1]],[[0,2,0,0],[2,3,3,1],[1,2,3,2],[0,2,1,2]],[[0,2,0,0],[2,3,3,1],[1,2,4,2],[0,2,2,0]],[[0,2,0,0],[2,3,3,1],[1,2,3,3],[0,2,2,0]],[[0,2,0,0],[2,3,3,1],[1,2,3,2],[0,3,2,0]],[[0,2,0,0],[2,3,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,2,0],[1,4,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,2,0],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[2,1,2,0],[1,3,0,2],[1,2,3,1]],[[1,2,2,1],[2,1,2,0],[1,3,0,2],[1,3,2,1]],[[1,2,2,1],[2,1,2,0],[1,3,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,2,0],[1,3,0,3],[1,2,2,1]],[[0,2,0,0],[3,3,3,1],[1,3,1,2],[0,2,2,1]],[[0,2,0,0],[2,4,3,1],[1,3,1,2],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[1,4,1,2],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,1,3],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,1,2],[0,3,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,1,2],[0,2,3,1]],[[0,2,0,0],[2,3,3,1],[1,3,1,2],[0,2,2,2]],[[0,2,0,0],[3,3,3,1],[1,3,1,2],[1,1,2,1]],[[0,2,0,0],[2,4,3,1],[1,3,1,2],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[1,4,1,2],[1,1,2,1]],[[0,2,0,0],[3,3,3,1],[1,3,2,1],[0,2,2,1]],[[0,2,0,0],[2,4,3,1],[1,3,2,1],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[1,4,2,1],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,2,1],[0,3,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,2,1],[0,2,3,1]],[[0,2,0,0],[2,3,3,1],[1,3,2,1],[0,2,2,2]],[[0,2,0,0],[3,3,3,1],[1,3,2,1],[1,1,2,1]],[[0,2,0,0],[2,4,3,1],[1,3,2,1],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[1,4,2,1],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,2,3],[0,1,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,2,2],[0,1,3,1]],[[0,2,0,0],[2,3,3,1],[1,3,2,2],[0,1,2,2]],[[0,2,0,0],[3,3,3,1],[1,3,2,2],[0,2,2,0]],[[0,2,0,0],[2,4,3,1],[1,3,2,2],[0,2,2,0]],[[0,2,0,0],[2,3,3,1],[1,4,2,2],[0,2,2,0]],[[0,2,0,0],[2,3,3,1],[1,3,2,2],[0,3,2,0]],[[0,2,0,0],[2,3,3,1],[1,3,2,2],[0,2,3,0]],[[0,2,0,0],[2,3,3,1],[1,3,2,3],[1,0,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,2,2],[1,0,3,1]],[[0,2,0,0],[2,3,3,1],[1,3,2,2],[1,0,2,2]],[[0,2,0,0],[3,3,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,0,0],[2,4,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,0,0],[2,3,3,1],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,2,0],[1,4,0,2],[1,2,2,1]],[[0,2,0,0],[3,3,3,1],[1,3,3,0],[0,2,2,1]],[[0,2,0,0],[2,4,3,1],[1,3,3,0],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[1,4,3,0],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,0],[0,3,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,0],[0,2,3,1]],[[0,2,0,0],[3,3,3,1],[1,3,3,0],[1,1,2,1]],[[0,2,0,0],[2,4,3,1],[1,3,3,0],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[1,4,3,0],[1,1,2,1]],[[0,2,0,0],[3,3,3,1],[1,3,3,1],[0,1,2,1]],[[0,2,0,0],[2,4,3,1],[1,3,3,1],[0,1,2,1]],[[0,2,0,0],[2,3,3,1],[1,4,3,1],[0,1,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,4,1],[0,1,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,1],[0,1,3,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,1],[0,1,2,2]],[[0,2,0,0],[3,3,3,1],[1,3,3,1],[0,2,1,1]],[[0,2,0,0],[2,4,3,1],[1,3,3,1],[0,2,1,1]],[[0,2,0,0],[2,3,3,1],[1,4,3,1],[0,2,1,1]],[[0,2,0,0],[2,3,3,1],[1,3,4,1],[0,2,1,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,1],[0,3,1,1]],[[0,2,0,0],[3,3,3,1],[1,3,3,1],[1,0,2,1]],[[0,2,0,0],[2,4,3,1],[1,3,3,1],[1,0,2,1]],[[0,2,0,0],[2,3,3,1],[1,4,3,1],[1,0,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,4,1],[1,0,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,1],[1,0,3,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,1],[1,0,2,2]],[[0,2,0,0],[3,3,3,1],[1,3,3,1],[1,1,1,1]],[[0,2,0,0],[2,4,3,1],[1,3,3,1],[1,1,1,1]],[[0,2,0,0],[2,3,3,1],[1,4,3,1],[1,1,1,1]],[[0,2,0,0],[2,3,3,1],[1,3,4,1],[1,1,1,1]],[[0,2,0,0],[3,3,3,1],[1,3,3,1],[1,2,0,1]],[[0,2,0,0],[2,4,3,1],[1,3,3,1],[1,2,0,1]],[[0,2,0,0],[2,3,3,1],[1,4,3,1],[1,2,0,1]],[[0,2,0,0],[2,3,3,1],[1,3,4,2],[0,0,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,3],[0,0,2,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,2],[0,0,2,2]],[[0,2,0,0],[3,3,3,1],[1,3,3,2],[0,1,1,1]],[[0,2,0,0],[2,4,3,1],[1,3,3,2],[0,1,1,1]],[[0,2,0,0],[2,3,3,1],[1,4,3,2],[0,1,1,1]],[[0,2,0,0],[2,3,3,1],[1,3,4,2],[0,1,1,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,3],[0,1,1,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,2],[0,1,1,2]],[[0,2,0,0],[3,3,3,1],[1,3,3,2],[0,1,2,0]],[[0,2,0,0],[2,4,3,1],[1,3,3,2],[0,1,2,0]],[[0,2,0,0],[2,3,3,1],[1,4,3,2],[0,1,2,0]],[[0,2,0,0],[2,3,3,1],[1,3,4,2],[0,1,2,0]],[[0,2,0,0],[2,3,3,1],[1,3,3,3],[0,1,2,0]],[[0,2,0,0],[2,3,3,1],[1,3,3,2],[0,1,3,0]],[[0,2,0,0],[3,3,3,1],[1,3,3,2],[0,2,0,1]],[[0,2,0,0],[2,4,3,1],[1,3,3,2],[0,2,0,1]],[[0,2,0,0],[2,3,3,1],[1,4,3,2],[0,2,0,1]],[[0,2,0,0],[2,3,3,1],[1,3,4,2],[0,2,0,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,3],[0,2,0,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,2],[0,3,0,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,2],[0,2,0,2]],[[0,2,0,0],[3,3,3,1],[1,3,3,2],[0,2,1,0]],[[0,2,0,0],[2,4,3,1],[1,3,3,2],[0,2,1,0]],[[0,2,0,0],[2,3,3,1],[1,4,3,2],[0,2,1,0]],[[0,2,0,0],[2,3,3,1],[1,3,4,2],[0,2,1,0]],[[0,2,0,0],[2,3,3,1],[1,3,3,3],[0,2,1,0]],[[0,2,0,0],[2,3,3,1],[1,3,3,2],[0,3,1,0]],[[0,2,0,0],[3,3,3,1],[1,3,3,2],[1,0,1,1]],[[0,2,0,0],[2,4,3,1],[1,3,3,2],[1,0,1,1]],[[0,2,0,0],[2,3,3,1],[1,4,3,2],[1,0,1,1]],[[0,2,0,0],[2,3,3,1],[1,3,4,2],[1,0,1,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,3],[1,0,1,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,2],[1,0,1,2]],[[0,2,0,0],[3,3,3,1],[1,3,3,2],[1,0,2,0]],[[0,2,0,0],[2,4,3,1],[1,3,3,2],[1,0,2,0]],[[0,2,0,0],[2,3,3,1],[1,4,3,2],[1,0,2,0]],[[0,2,0,0],[2,3,3,1],[1,3,4,2],[1,0,2,0]],[[0,2,0,0],[2,3,3,1],[1,3,3,3],[1,0,2,0]],[[0,2,0,0],[2,3,3,1],[1,3,3,2],[1,0,3,0]],[[0,2,0,0],[3,3,3,1],[1,3,3,2],[1,1,0,1]],[[0,2,0,0],[2,4,3,1],[1,3,3,2],[1,1,0,1]],[[0,2,0,0],[2,3,3,1],[1,4,3,2],[1,1,0,1]],[[0,2,0,0],[2,3,3,1],[1,3,4,2],[1,1,0,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,3],[1,1,0,1]],[[0,2,0,0],[2,3,3,1],[1,3,3,2],[1,1,0,2]],[[0,2,0,0],[3,3,3,1],[1,3,3,2],[1,1,1,0]],[[0,2,0,0],[2,4,3,1],[1,3,3,2],[1,1,1,0]],[[0,2,0,0],[2,3,3,1],[1,4,3,2],[1,1,1,0]],[[0,2,0,0],[2,3,3,1],[1,3,4,2],[1,1,1,0]],[[0,2,0,0],[2,3,3,1],[1,3,3,3],[1,1,1,0]],[[0,2,0,0],[3,3,3,1],[1,3,3,2],[1,2,0,0]],[[0,2,0,0],[2,4,3,1],[1,3,3,2],[1,2,0,0]],[[0,2,0,0],[2,3,3,1],[1,4,3,2],[1,2,0,0]],[[0,2,0,0],[3,3,3,1],[2,0,2,2],[1,2,2,1]],[[0,2,0,0],[2,4,3,1],[2,0,2,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[3,0,2,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,0,2,3],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,0,2,2],[2,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,0,2,2],[1,3,2,1]],[[0,2,0,0],[2,3,3,1],[2,0,2,2],[1,2,3,1]],[[0,2,0,0],[2,3,3,1],[2,0,2,2],[1,2,2,2]],[[0,2,0,0],[3,3,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,0,0],[2,4,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[3,0,3,1],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,0,4,1],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,0,3,1],[2,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,0,3,1],[1,3,2,1]],[[0,2,0,0],[2,3,3,1],[2,0,3,1],[1,2,3,1]],[[0,2,0,0],[2,3,3,1],[2,0,3,1],[1,2,2,2]],[[0,2,0,0],[2,3,3,1],[2,0,4,2],[1,2,1,1]],[[0,2,0,0],[2,3,3,1],[2,0,3,3],[1,2,1,1]],[[0,2,0,0],[2,3,3,1],[2,0,3,2],[1,2,1,2]],[[0,2,0,0],[3,3,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,0,0],[2,4,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,0,0],[2,3,3,1],[3,0,3,2],[1,2,2,0]],[[0,2,0,0],[2,3,3,1],[2,0,4,2],[1,2,2,0]],[[0,2,0,0],[2,3,3,1],[2,0,3,3],[1,2,2,0]],[[0,2,0,0],[2,3,3,1],[2,0,3,2],[2,2,2,0]],[[0,2,0,0],[2,3,3,1],[2,0,3,2],[1,3,2,0]],[[0,2,0,0],[2,3,3,1],[2,0,3,2],[1,2,3,0]],[[0,2,0,0],[3,3,3,1],[2,1,1,2],[1,2,2,1]],[[0,2,0,0],[2,4,3,1],[2,1,1,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[3,1,1,2],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,1,1,3],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,1,1,2],[2,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,1,1,2],[1,3,2,1]],[[0,2,0,0],[2,3,3,1],[2,1,1,2],[1,2,3,1]],[[0,2,0,0],[2,3,3,1],[2,1,1,2],[1,2,2,2]],[[0,2,0,0],[3,3,3,1],[2,1,2,1],[1,2,2,1]],[[0,2,0,0],[2,4,3,1],[2,1,2,1],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[3,1,2,1],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,1,2,1],[2,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,1,2,1],[1,3,2,1]],[[0,2,0,0],[2,3,3,1],[2,1,2,1],[1,2,3,1]],[[0,2,0,0],[2,3,3,1],[2,1,2,1],[1,2,2,2]],[[0,2,0,0],[3,3,3,1],[2,1,2,2],[1,2,2,0]],[[0,2,0,0],[2,4,3,1],[2,1,2,2],[1,2,2,0]],[[0,2,0,0],[2,3,3,1],[3,1,2,2],[1,2,2,0]],[[0,2,0,0],[2,3,3,1],[2,1,2,2],[2,2,2,0]],[[0,2,0,0],[2,3,3,1],[2,1,2,2],[1,3,2,0]],[[0,2,0,0],[2,3,3,1],[2,1,2,2],[1,2,3,0]],[[0,2,0,0],[3,3,3,1],[2,1,3,0],[1,2,2,1]],[[0,2,0,0],[2,4,3,1],[2,1,3,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[3,1,3,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,1,3,0],[2,2,2,1]],[[0,2,0,0],[2,3,3,1],[2,1,3,0],[1,3,2,1]],[[0,2,0,0],[2,3,3,1],[2,1,3,0],[1,2,3,1]],[[0,2,0,0],[3,3,3,1],[2,1,3,1],[1,2,1,1]],[[0,2,0,0],[2,4,3,1],[2,1,3,1],[1,2,1,1]],[[0,2,0,0],[2,3,3,1],[3,1,3,1],[1,2,1,1]],[[0,2,0,0],[2,3,3,1],[2,1,3,1],[2,2,1,1]],[[0,2,0,0],[2,3,3,1],[2,1,3,1],[1,3,1,1]],[[0,2,0,0],[3,3,3,1],[2,1,3,2],[1,2,0,1]],[[0,2,0,0],[2,4,3,1],[2,1,3,2],[1,2,0,1]],[[0,2,0,0],[2,3,3,1],[3,1,3,2],[1,2,0,1]],[[0,2,0,0],[2,3,3,1],[2,1,3,2],[2,2,0,1]],[[0,2,0,0],[2,3,3,1],[2,1,3,2],[1,3,0,1]],[[0,2,0,0],[3,3,3,1],[2,1,3,2],[1,2,1,0]],[[0,2,0,0],[2,4,3,1],[2,1,3,2],[1,2,1,0]],[[0,2,0,0],[2,3,3,1],[3,1,3,2],[1,2,1,0]],[[0,2,0,0],[2,3,3,1],[2,1,3,2],[2,2,1,0]],[[0,2,0,0],[2,3,3,1],[2,1,3,2],[1,3,1,0]],[[0,2,0,0],[3,3,3,1],[2,2,1,2],[0,2,2,1]],[[0,2,0,0],[2,4,3,1],[2,2,1,2],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[3,2,1,2],[0,2,2,1]],[[0,2,0,0],[3,3,3,1],[2,2,1,2],[1,1,2,1]],[[0,2,0,0],[2,4,3,1],[2,2,1,2],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[3,2,1,2],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[2,2,1,2],[2,1,2,1]],[[0,2,0,0],[3,3,3,1],[2,2,2,1],[0,2,2,1]],[[0,2,0,0],[2,4,3,1],[2,2,2,1],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[3,2,2,1],[0,2,2,1]],[[0,2,0,0],[3,3,3,1],[2,2,2,1],[1,1,2,1]],[[0,2,0,0],[2,4,3,1],[2,2,2,1],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[3,2,2,1],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[2,2,2,1],[2,1,2,1]],[[0,2,0,0],[3,3,3,1],[2,2,2,2],[0,2,2,0]],[[0,2,0,0],[2,4,3,1],[2,2,2,2],[0,2,2,0]],[[0,2,0,0],[2,3,3,1],[3,2,2,2],[0,2,2,0]],[[0,2,0,0],[3,3,3,1],[2,2,2,2],[1,1,2,0]],[[0,2,0,0],[2,4,3,1],[2,2,2,2],[1,1,2,0]],[[0,2,0,0],[2,3,3,1],[3,2,2,2],[1,1,2,0]],[[0,2,0,0],[2,3,3,1],[2,2,2,2],[2,1,2,0]],[[0,2,0,0],[3,3,3,1],[2,2,3,0],[0,2,2,1]],[[0,2,0,0],[2,4,3,1],[2,2,3,0],[0,2,2,1]],[[0,2,0,0],[2,3,3,1],[3,2,3,0],[0,2,2,1]],[[0,2,0,0],[3,3,3,1],[2,2,3,0],[1,1,2,1]],[[0,2,0,0],[2,4,3,1],[2,2,3,0],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[3,2,3,0],[1,1,2,1]],[[0,2,0,0],[2,3,3,1],[2,2,3,0],[2,1,2,1]],[[0,2,0,0],[3,3,3,1],[2,2,3,1],[0,1,2,1]],[[0,2,0,0],[2,4,3,1],[2,2,3,1],[0,1,2,1]],[[0,2,0,0],[2,3,3,1],[3,2,3,1],[0,1,2,1]],[[0,2,0,0],[3,3,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,0,0],[2,4,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,0,0],[2,3,3,1],[3,2,3,1],[0,2,1,1]],[[0,2,0,0],[3,3,3,1],[2,2,3,1],[1,0,2,1]],[[0,2,0,0],[2,4,3,1],[2,2,3,1],[1,0,2,1]],[[0,2,0,0],[2,3,3,1],[3,2,3,1],[1,0,2,1]],[[0,2,0,0],[2,3,3,1],[2,2,3,1],[2,0,2,1]],[[0,2,0,0],[3,3,3,1],[2,2,3,1],[1,1,1,1]],[[0,2,0,0],[2,4,3,1],[2,2,3,1],[1,1,1,1]],[[0,2,0,0],[2,3,3,1],[3,2,3,1],[1,1,1,1]],[[0,2,0,0],[2,3,3,1],[2,2,3,1],[2,1,1,1]],[[0,2,0,0],[3,3,3,1],[2,2,3,1],[1,2,0,1]],[[0,2,0,0],[2,4,3,1],[2,2,3,1],[1,2,0,1]],[[0,2,0,0],[2,3,3,1],[3,2,3,1],[1,2,0,1]],[[0,2,0,0],[2,3,3,1],[2,2,3,1],[2,2,0,1]],[[0,2,0,0],[3,3,3,1],[2,2,3,2],[0,1,1,1]],[[0,2,0,0],[2,4,3,1],[2,2,3,2],[0,1,1,1]],[[0,2,0,0],[2,3,3,1],[3,2,3,2],[0,1,1,1]],[[0,2,0,0],[3,3,3,1],[2,2,3,2],[0,1,2,0]],[[0,2,0,0],[2,4,3,1],[2,2,3,2],[0,1,2,0]],[[0,2,0,0],[2,3,3,1],[3,2,3,2],[0,1,2,0]],[[0,2,0,0],[3,3,3,1],[2,2,3,2],[0,2,0,1]],[[0,2,0,0],[2,4,3,1],[2,2,3,2],[0,2,0,1]],[[0,2,0,0],[2,3,3,1],[3,2,3,2],[0,2,0,1]],[[0,2,0,0],[3,3,3,1],[2,2,3,2],[0,2,1,0]],[[0,2,0,0],[2,4,3,1],[2,2,3,2],[0,2,1,0]],[[0,2,0,0],[2,3,3,1],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[2,1,1,2],[2,4,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,1,2],[3,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,1,1,3],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[3,1,1,2],[2,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,1,1,2],[2,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,1,1,2],[2,3,3,1],[1,1,0,0]],[[0,2,0,0],[3,3,3,1],[2,2,3,2],[1,0,1,1]],[[0,2,0,0],[2,4,3,1],[2,2,3,2],[1,0,1,1]],[[0,2,0,0],[2,3,3,1],[3,2,3,2],[1,0,1,1]],[[0,2,0,0],[2,3,3,1],[2,2,3,2],[2,0,1,1]],[[0,2,0,0],[3,3,3,1],[2,2,3,2],[1,0,2,0]],[[0,2,0,0],[2,4,3,1],[2,2,3,2],[1,0,2,0]],[[0,2,0,0],[2,3,3,1],[3,2,3,2],[1,0,2,0]],[[0,2,0,0],[2,3,3,1],[2,2,3,2],[2,0,2,0]],[[0,2,0,0],[3,3,3,1],[2,2,3,2],[1,1,0,1]],[[0,2,0,0],[2,4,3,1],[2,2,3,2],[1,1,0,1]],[[0,2,0,0],[2,3,3,1],[3,2,3,2],[1,1,0,1]],[[0,2,0,0],[2,3,3,1],[2,2,3,2],[2,1,0,1]],[[0,2,0,0],[3,3,3,1],[2,2,3,2],[1,1,1,0]],[[0,2,0,0],[2,4,3,1],[2,2,3,2],[1,1,1,0]],[[0,2,0,0],[2,3,3,1],[3,2,3,2],[1,1,1,0]],[[0,2,0,0],[2,3,3,1],[2,2,3,2],[2,1,1,0]],[[1,3,2,1],[2,1,1,2],[2,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,1,1,2],[2,3,3,1],[1,1,0,0]],[[0,2,0,0],[3,3,3,1],[2,2,3,2],[1,2,0,0]],[[0,2,0,0],[2,4,3,1],[2,2,3,2],[1,2,0,0]],[[0,2,0,0],[2,3,3,1],[3,2,3,2],[1,2,0,0]],[[0,2,0,0],[2,3,3,1],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[2,1,1,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,1,2],[3,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,1,3],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[3,1,1,2],[2,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,1,1,2],[2,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,1,1,2],[2,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,1,1,2],[2,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,1,1,2],[2,3,3,1],[0,2,0,0]],[[0,2,0,0],[3,3,3,1],[2,3,3,1],[1,0,1,1]],[[0,2,0,0],[2,4,3,1],[2,3,3,1],[1,0,1,1]],[[0,2,0,0],[2,3,3,1],[3,3,3,1],[1,0,1,1]],[[0,2,0,0],[3,3,3,1],[2,3,3,2],[1,0,0,1]],[[0,2,0,0],[2,4,3,1],[2,3,3,2],[1,0,0,1]],[[0,2,0,0],[2,3,3,1],[3,3,3,2],[1,0,0,1]],[[0,2,0,0],[3,3,3,1],[2,3,3,2],[1,0,1,0]],[[0,2,0,0],[2,4,3,1],[2,3,3,2],[1,0,1,0]],[[0,2,0,0],[2,3,3,1],[3,3,3,2],[1,0,1,0]],[[0,2,0,0],[2,3,3,2],[0,2,4,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,2],[0,2,3,0],[2,2,2,1]],[[0,2,0,0],[2,3,3,2],[0,2,3,0],[1,3,2,1]],[[0,2,0,0],[2,3,3,2],[0,2,3,0],[1,2,3,1]],[[0,2,0,0],[2,3,3,2],[0,2,3,0],[1,2,2,2]],[[0,2,0,0],[2,3,3,2],[0,2,4,1],[1,2,2,0]],[[0,2,0,0],[2,3,3,2],[0,2,3,1],[2,2,2,0]],[[0,2,0,0],[2,3,3,2],[0,2,3,1],[1,3,2,0]],[[0,2,0,0],[2,3,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[2,1,1,2],[2,4,2,1],[1,2,0,0]],[[1,2,2,1],[2,1,1,2],[3,3,2,1],[1,2,0,0]],[[0,2,0,0],[3,3,3,2],[0,3,2,0],[1,2,2,1]],[[0,2,0,0],[2,4,3,2],[0,3,2,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,2],[0,4,2,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,2],[0,3,2,0],[2,2,2,1]],[[0,2,0,0],[2,3,3,2],[0,3,2,0],[1,3,2,1]],[[0,2,0,0],[2,3,3,2],[0,3,2,0],[1,2,3,1]],[[0,2,0,0],[2,3,3,2],[0,3,2,0],[1,2,2,2]],[[0,2,0,0],[3,3,3,2],[0,3,2,1],[1,2,2,0]],[[0,2,0,0],[2,4,3,2],[0,3,2,1],[1,2,2,0]],[[0,2,0,0],[2,3,3,2],[0,4,2,1],[1,2,2,0]],[[0,2,0,0],[2,3,3,2],[0,3,2,1],[2,2,2,0]],[[0,2,0,0],[2,3,3,2],[0,3,2,1],[1,3,2,0]],[[0,2,0,0],[2,3,3,2],[0,3,2,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,3],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,1,1,2],[2,3,2,1],[1,2,0,0]],[[1,2,2,2],[2,1,1,2],[2,3,2,1],[1,2,0,0]],[[1,2,3,1],[2,1,1,2],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,1,1,2],[2,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,1,1,2],[2,3,2,1],[1,2,0,0]],[[0,2,0,0],[3,3,3,2],[0,3,3,0],[1,1,2,1]],[[0,2,0,0],[2,4,3,2],[0,3,3,0],[1,1,2,1]],[[0,2,0,0],[2,3,3,2],[0,4,3,0],[1,1,2,1]],[[0,2,0,0],[2,3,3,2],[0,3,4,0],[1,1,2,1]],[[0,2,0,0],[2,3,3,2],[0,3,3,0],[1,1,3,1]],[[0,2,0,0],[2,3,3,2],[0,3,3,0],[1,1,2,2]],[[0,2,0,0],[3,3,3,2],[0,3,3,0],[1,2,1,1]],[[0,2,0,0],[2,4,3,2],[0,3,3,0],[1,2,1,1]],[[0,2,0,0],[2,3,3,2],[0,4,3,0],[1,2,1,1]],[[0,2,0,0],[2,3,3,2],[0,3,4,0],[1,2,1,1]],[[0,2,0,0],[2,3,3,2],[0,3,3,0],[2,2,1,1]],[[0,2,0,0],[2,3,3,2],[0,3,3,0],[1,3,1,1]],[[0,2,0,0],[3,3,3,2],[0,3,3,1],[1,1,1,1]],[[0,2,0,0],[2,4,3,2],[0,3,3,1],[1,1,1,1]],[[0,2,0,0],[2,3,3,2],[0,4,3,1],[1,1,1,1]],[[0,2,0,0],[2,3,3,2],[0,3,4,1],[1,1,1,1]],[[0,2,0,0],[3,3,3,2],[0,3,3,1],[1,1,2,0]],[[0,2,0,0],[2,4,3,2],[0,3,3,1],[1,1,2,0]],[[0,2,0,0],[2,3,3,2],[0,4,3,1],[1,1,2,0]],[[0,2,0,0],[2,3,3,2],[0,3,4,1],[1,1,2,0]],[[0,2,0,0],[2,3,3,2],[0,3,3,1],[1,1,3,0]],[[0,2,0,0],[3,3,3,2],[0,3,3,1],[1,2,0,1]],[[0,2,0,0],[2,4,3,2],[0,3,3,1],[1,2,0,1]],[[0,2,0,0],[2,3,3,2],[0,4,3,1],[1,2,0,1]],[[0,2,0,0],[2,3,3,2],[0,3,4,1],[1,2,0,1]],[[0,2,0,0],[2,3,3,2],[0,3,3,1],[2,2,0,1]],[[0,2,0,0],[2,3,3,2],[0,3,3,1],[1,3,0,1]],[[0,2,0,0],[3,3,3,2],[0,3,3,1],[1,2,1,0]],[[0,2,0,0],[2,4,3,2],[0,3,3,1],[1,2,1,0]],[[0,2,0,0],[2,3,3,2],[0,4,3,1],[1,2,1,0]],[[0,2,0,0],[2,3,3,2],[0,3,4,1],[1,2,1,0]],[[0,2,0,0],[2,3,3,2],[0,3,3,1],[2,2,1,0]],[[0,2,0,0],[2,3,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,3,2,1],[2,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,4,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[3,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,1,3],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,1,1,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,1,1,2],[2,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,1,1,2],[2,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,1,1,2],[2,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,1,1,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,3,2,1],[2,1,0,1]],[[1,2,2,1],[2,1,1,2],[2,4,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,1,2],[3,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,1,3],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,1,1,2],[2,3,2,1],[1,1,0,1]],[[1,2,2,2],[2,1,1,2],[2,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,1,1,2],[2,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,1,1,2],[2,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,1,1,2],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,1,1,2],[2,3,2,1],[2,0,2,0]],[[1,2,2,1],[2,1,1,2],[2,4,2,1],[1,0,2,0]],[[0,2,0,0],[2,3,3,2],[1,2,4,0],[0,2,2,1]],[[0,2,0,0],[2,3,3,2],[1,2,3,0],[0,3,2,1]],[[0,2,0,0],[2,3,3,2],[1,2,3,0],[0,2,3,1]],[[0,2,0,0],[2,3,3,2],[1,2,3,0],[0,2,2,2]],[[0,2,0,0],[2,3,3,2],[1,2,4,1],[0,2,2,0]],[[0,2,0,0],[2,3,3,2],[1,2,3,1],[0,3,2,0]],[[0,2,0,0],[2,3,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,1,1,2],[3,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,1,3],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,1,1,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,1,1,2],[2,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,1,1,2],[2,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,1,1,2],[2,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,1,1,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,2,1],[2,0,1,1]],[[1,2,2,1],[2,1,1,2],[2,4,2,1],[1,0,1,1]],[[1,2,2,1],[2,1,1,2],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,1,1,3],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[3,1,1,2],[2,3,2,1],[1,0,1,1]],[[1,2,2,2],[2,1,1,2],[2,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,1,1,2],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,1,1,2],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,1,1,2],[2,3,2,1],[1,0,1,1]],[[0,2,0,0],[3,3,3,2],[1,3,2,0],[0,2,2,1]],[[0,2,0,0],[2,4,3,2],[1,3,2,0],[0,2,2,1]],[[0,2,0,0],[2,3,3,2],[1,4,2,0],[0,2,2,1]],[[0,2,0,0],[2,3,3,2],[1,3,2,0],[0,3,2,1]],[[0,2,0,0],[2,3,3,2],[1,3,2,0],[0,2,3,1]],[[0,2,0,0],[2,3,3,2],[1,3,2,0],[0,2,2,2]],[[0,2,0,0],[3,3,3,2],[1,3,2,0],[1,1,2,1]],[[0,2,0,0],[2,4,3,2],[1,3,2,0],[1,1,2,1]],[[0,2,0,0],[2,3,3,2],[1,4,2,0],[1,1,2,1]],[[0,2,0,0],[3,3,3,2],[1,3,2,1],[0,2,2,0]],[[0,2,0,0],[2,4,3,2],[1,3,2,1],[0,2,2,0]],[[0,2,0,0],[2,3,3,2],[1,4,2,1],[0,2,2,0]],[[0,2,0,0],[2,3,3,2],[1,3,2,1],[0,3,2,0]],[[0,2,0,0],[2,3,3,2],[1,3,2,1],[0,2,3,0]],[[0,2,0,0],[3,3,3,2],[1,3,2,1],[1,1,2,0]],[[0,2,0,0],[2,4,3,2],[1,3,2,1],[1,1,2,0]],[[0,2,0,0],[2,3,3,2],[1,4,2,1],[1,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,4,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[3,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,1,3],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,1,1,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,1,1,2],[2,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,1,1,2],[2,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,1,1,2],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,1,1,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[2,3,2,1],[0,3,0,1]],[[1,2,2,1],[2,1,1,2],[2,4,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,1,2],[3,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,1,3],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,1,1,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,1,1,2],[2,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,1,1,2],[2,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,1,1,2],[2,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,1,1,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,1,1,2],[2,4,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,1,2],[3,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,1,3],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,1,1,2],[2,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,1,1,2],[2,3,2,1],[0,1,2,0]],[[0,2,0,0],[3,3,3,2],[1,3,3,0],[0,1,2,1]],[[0,2,0,0],[2,4,3,2],[1,3,3,0],[0,1,2,1]],[[0,2,0,0],[2,3,3,2],[1,4,3,0],[0,1,2,1]],[[0,2,0,0],[2,3,3,2],[1,3,4,0],[0,1,2,1]],[[0,2,0,0],[2,3,3,2],[1,3,3,0],[0,1,3,1]],[[0,2,0,0],[2,3,3,2],[1,3,3,0],[0,1,2,2]],[[0,2,0,0],[3,3,3,2],[1,3,3,0],[0,2,1,1]],[[0,2,0,0],[2,4,3,2],[1,3,3,0],[0,2,1,1]],[[0,2,0,0],[2,3,3,2],[1,4,3,0],[0,2,1,1]],[[0,2,0,0],[2,3,3,2],[1,3,4,0],[0,2,1,1]],[[0,2,0,0],[2,3,3,2],[1,3,3,0],[0,3,1,1]],[[0,2,0,0],[3,3,3,2],[1,3,3,0],[1,0,2,1]],[[0,2,0,0],[2,4,3,2],[1,3,3,0],[1,0,2,1]],[[0,2,0,0],[2,3,3,2],[1,4,3,0],[1,0,2,1]],[[0,2,0,0],[2,3,3,2],[1,3,4,0],[1,0,2,1]],[[0,2,0,0],[2,3,3,2],[1,3,3,0],[1,0,3,1]],[[0,2,0,0],[2,3,3,2],[1,3,3,0],[1,0,2,2]],[[0,2,0,0],[3,3,3,2],[1,3,3,0],[1,1,1,1]],[[0,2,0,0],[2,4,3,2],[1,3,3,0],[1,1,1,1]],[[0,2,0,0],[2,3,3,2],[1,4,3,0],[1,1,1,1]],[[0,2,0,0],[2,3,3,2],[1,3,4,0],[1,1,1,1]],[[0,2,0,0],[3,3,3,2],[1,3,3,0],[1,2,0,1]],[[0,2,0,0],[2,4,3,2],[1,3,3,0],[1,2,0,1]],[[0,2,0,0],[2,3,3,2],[1,4,3,0],[1,2,0,1]],[[1,2,3,1],[2,1,1,2],[2,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,1,1,2],[2,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,1,1,2],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,4,2,1],[0,1,1,1]],[[1,2,2,1],[2,1,1,2],[3,3,2,1],[0,1,1,1]],[[1,2,2,1],[2,1,1,3],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[3,1,1,2],[2,3,2,1],[0,1,1,1]],[[1,2,2,2],[2,1,1,2],[2,3,2,1],[0,1,1,1]],[[0,2,0,0],[3,3,3,2],[1,3,3,1],[0,1,1,1]],[[0,2,0,0],[2,4,3,2],[1,3,3,1],[0,1,1,1]],[[0,2,0,0],[2,3,3,2],[1,4,3,1],[0,1,1,1]],[[0,2,0,0],[2,3,3,2],[1,3,4,1],[0,1,1,1]],[[0,2,0,0],[3,3,3,2],[1,3,3,1],[0,1,2,0]],[[0,2,0,0],[2,4,3,2],[1,3,3,1],[0,1,2,0]],[[0,2,0,0],[2,3,3,2],[1,4,3,1],[0,1,2,0]],[[0,2,0,0],[2,3,3,2],[1,3,4,1],[0,1,2,0]],[[0,2,0,0],[2,3,3,2],[1,3,3,1],[0,1,3,0]],[[0,2,0,0],[3,3,3,2],[1,3,3,1],[0,2,0,1]],[[0,2,0,0],[2,4,3,2],[1,3,3,1],[0,2,0,1]],[[0,2,0,0],[2,3,3,2],[1,4,3,1],[0,2,0,1]],[[0,2,0,0],[2,3,3,2],[1,3,4,1],[0,2,0,1]],[[0,2,0,0],[2,3,3,2],[1,3,3,1],[0,3,0,1]],[[0,2,0,0],[3,3,3,2],[1,3,3,1],[0,2,1,0]],[[0,2,0,0],[2,4,3,2],[1,3,3,1],[0,2,1,0]],[[0,2,0,0],[2,3,3,2],[1,4,3,1],[0,2,1,0]],[[0,2,0,0],[2,3,3,2],[1,3,4,1],[0,2,1,0]],[[0,2,0,0],[2,3,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,3,1],[2,1,1,2],[2,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,1,1,2],[2,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,1,1,2],[2,3,2,1],[0,1,1,1]],[[0,2,0,0],[3,3,3,2],[1,3,3,1],[1,0,1,1]],[[0,2,0,0],[2,4,3,2],[1,3,3,1],[1,0,1,1]],[[0,2,0,0],[2,3,3,2],[1,4,3,1],[1,0,1,1]],[[0,2,0,0],[2,3,3,2],[1,3,4,1],[1,0,1,1]],[[0,2,0,0],[3,3,3,2],[1,3,3,1],[1,0,2,0]],[[0,2,0,0],[2,4,3,2],[1,3,3,1],[1,0,2,0]],[[0,2,0,0],[2,3,3,2],[1,4,3,1],[1,0,2,0]],[[0,2,0,0],[2,3,3,2],[1,3,4,1],[1,0,2,0]],[[0,2,0,0],[2,3,3,2],[1,3,3,1],[1,0,3,0]],[[0,2,0,0],[3,3,3,2],[1,3,3,1],[1,1,0,1]],[[0,2,0,0],[2,4,3,2],[1,3,3,1],[1,1,0,1]],[[0,2,0,0],[2,3,3,2],[1,4,3,1],[1,1,0,1]],[[0,2,0,0],[2,3,3,2],[1,3,4,1],[1,1,0,1]],[[0,2,0,0],[3,3,3,2],[1,3,3,1],[1,1,1,0]],[[0,2,0,0],[2,4,3,2],[1,3,3,1],[1,1,1,0]],[[0,2,0,0],[2,3,3,2],[1,4,3,1],[1,1,1,0]],[[0,2,0,0],[2,3,3,2],[1,3,4,1],[1,1,1,0]],[[0,2,0,0],[3,3,3,2],[1,3,3,1],[1,2,0,0]],[[0,2,0,0],[2,4,3,2],[1,3,3,1],[1,2,0,0]],[[0,2,0,0],[2,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,1,1,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[2,1,1,2],[2,4,2,0],[1,2,0,1]],[[1,2,2,1],[2,1,1,2],[3,3,2,0],[1,2,0,1]],[[1,2,2,1],[3,1,1,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,2],[2,1,1,2],[2,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,1,1,2],[2,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,1,1,2],[2,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,1,1,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[2,1,1,2],[2,3,2,0],[2,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,4,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,1,2],[3,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,1,3],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,1,1,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,1,1,2],[2,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,1,1,2],[2,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,1,1,2],[2,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,1,1,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,3,2,0],[2,0,2,1]],[[1,2,2,1],[2,1,1,2],[2,4,2,0],[1,0,2,1]],[[1,2,2,1],[2,1,1,2],[3,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,1,1,3],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,1,1,2],[2,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,1,1,2],[2,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,1,1,2],[2,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,1,1,2],[2,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,1,1,2],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,1,1,2],[2,3,2,0],[0,3,1,1]],[[1,2,2,1],[2,1,1,2],[2,4,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,1,2],[3,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,1,3],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,1,1,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,1,1,2],[2,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,1,1,2],[2,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,1,1,2],[2,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,1,1,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,1,1,2],[2,4,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,1,2],[3,3,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,1,3],[2,3,2,0],[0,1,2,1]],[[1,2,2,1],[3,1,1,2],[2,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,1,1,2],[2,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,1,1,2],[2,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,1,1,2],[2,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,1,1,2],[2,3,2,0],[0,1,2,1]],[[1,2,2,1],[2,1,1,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,1,1,2],[2,4,1,2],[1,2,0,0]],[[1,2,2,1],[2,1,1,2],[3,3,1,2],[1,2,0,0]],[[1,2,2,1],[2,1,1,3],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[3,1,1,2],[2,3,1,2],[1,2,0,0]],[[1,2,2,2],[2,1,1,2],[2,3,1,2],[1,2,0,0]],[[1,2,3,1],[2,1,1,2],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,1,1,2],[2,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,1,1,2],[2,3,1,2],[1,2,0,0]],[[0,2,0,0],[3,3,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,0],[2,4,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,2],[3,0,3,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,2],[2,0,4,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,2],[2,0,3,0],[2,2,2,1]],[[0,2,0,0],[2,3,3,2],[2,0,3,0],[1,3,2,1]],[[0,2,0,0],[2,3,3,2],[2,0,3,0],[1,2,3,1]],[[0,2,0,0],[2,3,3,2],[2,0,3,0],[1,2,2,2]],[[0,2,0,0],[3,3,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,0],[2,4,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,0],[2,3,3,2],[3,0,3,1],[1,2,2,0]],[[0,2,0,0],[2,3,3,2],[2,0,4,1],[1,2,2,0]],[[0,2,0,0],[2,3,3,2],[2,0,3,1],[2,2,2,0]],[[0,2,0,0],[2,3,3,2],[2,0,3,1],[1,3,2,0]],[[0,2,0,0],[2,3,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,3],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,4,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[3,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,1,3],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[3,1,1,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,1,1,2],[2,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,1,1,2],[2,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,1,1,2],[2,3,1,2],[1,1,1,0]],[[0,2,0,0],[3,3,3,2],[2,1,2,0],[1,2,2,1]],[[0,2,0,0],[2,4,3,2],[2,1,2,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,2],[3,1,2,0],[1,2,2,1]],[[0,2,0,0],[2,3,3,2],[2,1,2,0],[2,2,2,1]],[[0,2,0,0],[2,3,3,2],[2,1,2,0],[1,3,2,1]],[[0,2,0,0],[2,3,3,2],[2,1,2,0],[1,2,3,1]],[[0,2,0,0],[2,3,3,2],[2,1,2,0],[1,2,2,2]],[[0,2,0,0],[3,3,3,2],[2,1,2,1],[1,2,2,0]],[[0,2,0,0],[2,4,3,2],[2,1,2,1],[1,2,2,0]],[[0,2,0,0],[2,3,3,2],[3,1,2,1],[1,2,2,0]],[[0,2,0,0],[2,3,3,2],[2,1,2,1],[2,2,2,0]],[[0,2,0,0],[2,3,3,2],[2,1,2,1],[1,3,2,0]],[[0,2,0,0],[2,3,3,2],[2,1,2,1],[1,2,3,0]],[[2,2,2,1],[2,1,1,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,2],[1,1,0,2]],[[1,2,2,1],[2,1,1,2],[2,3,1,2],[2,1,0,1]],[[1,2,2,1],[2,1,1,2],[2,3,1,3],[1,1,0,1]],[[1,2,2,1],[2,1,1,2],[2,4,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,1,2],[3,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,1,3],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,1,1,2],[2,3,1,2],[1,1,0,1]],[[0,2,0,0],[3,3,3,2],[2,1,3,0],[1,2,1,1]],[[0,2,0,0],[2,4,3,2],[2,1,3,0],[1,2,1,1]],[[0,2,0,0],[2,3,3,2],[3,1,3,0],[1,2,1,1]],[[0,2,0,0],[2,3,3,2],[2,1,3,0],[2,2,1,1]],[[0,2,0,0],[2,3,3,2],[2,1,3,0],[1,3,1,1]],[[0,2,0,0],[3,3,3,2],[2,1,3,1],[1,2,0,1]],[[0,2,0,0],[2,4,3,2],[2,1,3,1],[1,2,0,1]],[[0,2,0,0],[2,3,3,2],[3,1,3,1],[1,2,0,1]],[[0,2,0,0],[2,3,3,2],[2,1,3,1],[2,2,0,1]],[[0,2,0,0],[2,3,3,2],[2,1,3,1],[1,3,0,1]],[[0,2,0,0],[3,3,3,2],[2,1,3,1],[1,2,1,0]],[[0,2,0,0],[2,4,3,2],[2,1,3,1],[1,2,1,0]],[[0,2,0,0],[2,3,3,2],[3,1,3,1],[1,2,1,0]],[[0,2,0,0],[2,3,3,2],[2,1,3,1],[2,2,1,0]],[[0,2,0,0],[2,3,3,2],[2,1,3,1],[1,3,1,0]],[[1,2,2,2],[2,1,1,2],[2,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,1,1,2],[2,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,1,1,2],[2,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,1,1,2],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,1,1,2],[2,3,1,2],[2,0,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,3],[1,0,2,0]],[[1,2,2,1],[2,1,1,2],[2,4,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,1,2],[3,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,1,3],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[3,1,1,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,1,1,2],[2,3,1,2],[1,0,2,0]],[[1,2,3,1],[2,1,1,2],[2,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,1,1,2],[2,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,1,1,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,2],[1,0,1,2]],[[1,2,2,1],[2,1,1,2],[2,3,1,2],[2,0,1,1]],[[1,2,2,1],[2,1,1,2],[2,3,1,3],[1,0,1,1]],[[1,2,2,1],[2,1,1,2],[2,4,1,2],[1,0,1,1]],[[1,2,2,1],[2,1,1,2],[3,3,1,2],[1,0,1,1]],[[1,2,2,1],[2,1,1,3],[2,3,1,2],[1,0,1,1]],[[1,2,2,1],[3,1,1,2],[2,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,1,1,2],[2,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,1,1,2],[2,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,1,1,2],[2,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,1,1,2],[2,3,1,2],[1,0,1,1]],[[0,2,0,0],[3,3,3,2],[2,2,2,0],[0,2,2,1]],[[0,2,0,0],[2,4,3,2],[2,2,2,0],[0,2,2,1]],[[0,2,0,0],[2,3,3,2],[3,2,2,0],[0,2,2,1]],[[0,2,0,0],[3,3,3,2],[2,2,2,0],[1,1,2,1]],[[0,2,0,0],[2,4,3,2],[2,2,2,0],[1,1,2,1]],[[0,2,0,0],[2,3,3,2],[3,2,2,0],[1,1,2,1]],[[0,2,0,0],[2,3,3,2],[2,2,2,0],[2,1,2,1]],[[0,2,0,0],[3,3,3,2],[2,2,2,1],[0,2,2,0]],[[0,2,0,0],[2,4,3,2],[2,2,2,1],[0,2,2,0]],[[0,2,0,0],[2,3,3,2],[3,2,2,1],[0,2,2,0]],[[0,2,0,0],[3,3,3,2],[2,2,2,1],[1,1,2,0]],[[0,2,0,0],[2,4,3,2],[2,2,2,1],[1,1,2,0]],[[0,2,0,0],[2,3,3,2],[3,2,2,1],[1,1,2,0]],[[0,2,0,0],[2,3,3,2],[2,2,2,1],[2,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,3],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[2,4,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[3,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,1,3],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,1,1,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,1,1,2],[2,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,1,1,2],[2,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,1,1,2],[2,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,1,1,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,2],[0,2,0,2]],[[1,2,2,1],[2,1,1,2],[2,3,1,2],[0,3,0,1]],[[1,2,2,1],[2,1,1,2],[2,3,1,3],[0,2,0,1]],[[1,2,2,1],[2,1,1,2],[2,4,1,2],[0,2,0,1]],[[0,2,0,0],[3,3,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,0,0],[2,4,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,0,0],[2,3,3,2],[3,2,3,0],[0,1,2,1]],[[0,2,0,0],[3,3,3,2],[2,2,3,0],[0,2,1,1]],[[0,2,0,0],[2,4,3,2],[2,2,3,0],[0,2,1,1]],[[0,2,0,0],[2,3,3,2],[3,2,3,0],[0,2,1,1]],[[0,2,0,0],[3,3,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,0,0],[2,4,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,0,0],[2,3,3,2],[3,2,3,0],[1,0,2,1]],[[0,2,0,0],[2,3,3,2],[2,2,3,0],[2,0,2,1]],[[0,2,0,0],[3,3,3,2],[2,2,3,0],[1,1,1,1]],[[0,2,0,0],[2,4,3,2],[2,2,3,0],[1,1,1,1]],[[0,2,0,0],[2,3,3,2],[3,2,3,0],[1,1,1,1]],[[0,2,0,0],[2,3,3,2],[2,2,3,0],[2,1,1,1]],[[0,2,0,0],[3,3,3,2],[2,2,3,0],[1,2,0,1]],[[0,2,0,0],[2,4,3,2],[2,2,3,0],[1,2,0,1]],[[0,2,0,0],[2,3,3,2],[3,2,3,0],[1,2,0,1]],[[0,2,0,0],[2,3,3,2],[2,2,3,0],[2,2,0,1]],[[1,2,2,1],[2,1,1,2],[3,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,1,1,3],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[3,1,1,2],[2,3,1,2],[0,2,0,1]],[[1,2,2,2],[2,1,1,2],[2,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,1,1,2],[2,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,1,1,2],[2,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,1,1,2],[2,3,1,2],[0,2,0,1]],[[0,2,0,0],[3,3,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,0,0],[2,4,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,0,0],[2,3,3,2],[3,2,3,1],[0,1,1,1]],[[0,2,0,0],[3,3,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,0,0],[2,4,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,0,0],[2,3,3,2],[3,2,3,1],[0,1,2,0]],[[0,2,0,0],[3,3,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,0,0],[2,4,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,0,0],[2,3,3,2],[3,2,3,1],[0,2,0,1]],[[0,2,0,0],[3,3,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,0,0],[2,4,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,0,0],[2,3,3,2],[3,2,3,1],[0,2,1,0]],[[0,2,0,0],[3,3,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,0,0],[2,4,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,0,0],[2,3,3,2],[3,2,3,1],[1,0,1,1]],[[0,2,0,0],[2,3,3,2],[2,2,3,1],[2,0,1,1]],[[0,2,0,0],[3,3,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,0,0],[2,4,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,0,0],[2,3,3,2],[3,2,3,1],[1,0,2,0]],[[0,2,0,0],[2,3,3,2],[2,2,3,1],[2,0,2,0]],[[0,2,0,0],[3,3,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,0,0],[2,4,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,0,0],[2,3,3,2],[3,2,3,1],[1,1,0,1]],[[0,2,0,0],[2,3,3,2],[2,2,3,1],[2,1,0,1]],[[0,2,0,0],[3,3,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,0,0],[2,4,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,0,0],[2,3,3,2],[3,2,3,1],[1,1,1,0]],[[0,2,0,0],[2,3,3,2],[2,2,3,1],[2,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,3],[0,1,2,0]],[[0,2,0,0],[3,3,3,2],[2,2,3,1],[1,2,0,0]],[[0,2,0,0],[2,4,3,2],[2,2,3,1],[1,2,0,0]],[[0,2,0,0],[2,3,3,2],[3,2,3,1],[1,2,0,0]],[[0,2,0,0],[2,3,3,2],[2,2,3,1],[2,2,0,0]],[[1,2,2,1],[2,1,1,2],[2,4,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,1,2],[3,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,1,3],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[3,1,1,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,1,1,2],[2,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,1,1,2],[2,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,1,1,2],[2,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,1,1,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,2],[0,1,1,2]],[[1,2,2,1],[2,1,1,2],[2,3,1,3],[0,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,4,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,1,2],[3,3,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,1,3],[2,3,1,2],[0,1,1,1]],[[1,2,2,1],[3,1,1,2],[2,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,1,1,2],[2,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,1,1,2],[2,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,1,1,2],[2,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,1,1,2],[2,3,1,2],[0,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,4,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,1,2],[3,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,1,3],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,1,1,2],[2,3,1,1],[1,1,2,0]],[[1,2,2,2],[2,1,1,2],[2,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,1,1,2],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,1,1,2],[2,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,1,1,2],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,1],[0,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,1],[0,3,2,0]],[[1,2,2,1],[2,1,1,2],[2,4,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,1,2],[3,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,1,3],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,1,1,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,1,1,2],[2,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,1,1,2],[2,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,1,1,2],[2,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,1,1,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,1,0],[2,1,2,1]],[[1,2,2,1],[2,1,1,2],[2,4,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,1,2],[3,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,1,3],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,1,1,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,2],[2,1,1,2],[2,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,1,1,2],[2,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,1,1,2],[2,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,1,1,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,1,1,2],[2,3,1,0],[0,2,2,2]],[[1,2,2,1],[2,1,1,2],[2,3,1,0],[0,2,3,1]],[[1,2,2,1],[2,1,1,2],[2,3,1,0],[0,3,2,1]],[[1,2,2,1],[2,1,1,2],[2,4,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,1,2],[3,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,1,3],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[3,1,1,2],[2,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,1,1,2],[2,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,1,1,2],[2,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,1,1,2],[2,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,1,1,2],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,0,3],[1,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,4,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,1,2],[3,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,1,3],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,1,1,2],[2,3,0,2],[1,1,2,0]],[[1,2,2,2],[2,1,1,2],[2,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,1,1,2],[2,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,1,1,2],[2,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,1,1,2],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[1,1,1,2]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[2,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,3],[1,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,4,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,1,2],[3,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,1,3],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[3,1,1,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,2],[2,1,1,2],[2,3,0,2],[1,1,1,1]],[[1,2,3,1],[2,1,1,2],[2,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,1,1,2],[2,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,1,1,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[1,0,2,2]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[1,0,3,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[2,0,2,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,3],[1,0,2,1]],[[1,2,2,1],[2,1,1,2],[2,4,0,2],[1,0,2,1]],[[1,2,2,1],[2,1,1,2],[3,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,1,1,3],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[3,1,1,2],[2,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,1,1,2],[2,3,0,2],[1,0,2,1]],[[1,2,3,1],[2,1,1,2],[2,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,1,1,2],[2,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,1,1,2],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[0,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[0,3,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,0,3],[0,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,4,0,2],[0,2,2,0]],[[1,2,2,1],[2,1,1,2],[3,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,1,1,3],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,1,1,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,1,1,2],[2,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,1,1,2],[2,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,1,1,2],[2,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,1,1,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[0,2,1,2]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[0,3,1,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,3],[0,2,1,1]],[[1,2,2,1],[2,1,1,2],[2,4,0,2],[0,2,1,1]],[[1,2,2,1],[2,1,1,2],[3,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,1,1,3],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[3,1,1,2],[2,3,0,2],[0,2,1,1]],[[1,2,2,2],[2,1,1,2],[2,3,0,2],[0,2,1,1]],[[1,2,3,1],[2,1,1,2],[2,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,1,1,2],[2,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,1,1,2],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[0,1,2,2]],[[1,2,2,1],[2,1,1,2],[2,3,0,2],[0,1,3,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,3],[0,1,2,1]],[[1,2,2,1],[2,1,1,2],[2,4,0,2],[0,1,2,1]],[[1,2,2,1],[2,1,1,2],[3,3,0,2],[0,1,2,1]],[[1,2,2,1],[2,1,1,3],[2,3,0,2],[0,1,2,1]],[[1,2,2,1],[3,1,1,2],[2,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,1,1,2],[2,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,1,1,2],[2,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,1,1,2],[2,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,1,1,2],[2,3,0,2],[0,1,2,1]],[[0,2,0,0],[3,3,3,2],[2,3,3,0],[1,0,1,1]],[[0,2,0,0],[2,4,3,2],[2,3,3,0],[1,0,1,1]],[[0,2,0,0],[2,3,3,2],[3,3,3,0],[1,0,1,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,0,1],[2,2,2,0]],[[1,2,2,1],[2,1,1,2],[3,3,0,1],[1,2,2,0]],[[1,2,2,1],[3,1,1,2],[2,3,0,1],[1,2,2,0]],[[1,2,2,2],[2,1,1,2],[2,3,0,1],[1,2,2,0]],[[1,2,3,1],[2,1,1,2],[2,3,0,1],[1,2,2,0]],[[1,3,2,1],[2,1,1,2],[2,3,0,1],[1,2,2,0]],[[2,2,2,1],[2,1,1,2],[2,3,0,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,3,0,1],[2,1,2,1]],[[1,2,2,1],[2,1,1,2],[2,4,0,1],[1,1,2,1]],[[1,2,2,1],[2,1,1,2],[3,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,1,1,3],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[3,1,1,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,2],[2,1,1,2],[2,3,0,1],[1,1,2,1]],[[1,2,3,1],[2,1,1,2],[2,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,1,1,2],[2,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,1,1,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,1],[0,2,2,2]],[[1,2,2,1],[2,1,1,2],[2,3,0,1],[0,2,3,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,1],[0,3,2,1]],[[1,2,2,1],[2,1,1,2],[2,4,0,1],[0,2,2,1]],[[1,2,2,1],[2,1,1,2],[3,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,1,1,3],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[3,1,1,2],[2,3,0,1],[0,2,2,1]],[[1,2,2,2],[2,1,1,2],[2,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,1,1,2],[2,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,1,1,2],[2,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,1,1,2],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[2,3,0,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[3,3,0,0],[1,2,2,1]],[[1,2,2,1],[3,1,1,2],[2,3,0,0],[1,2,2,1]],[[1,2,2,2],[2,1,1,2],[2,3,0,0],[1,2,2,1]],[[1,2,3,1],[2,1,1,2],[2,3,0,0],[1,2,2,1]],[[1,3,2,1],[2,1,1,2],[2,3,0,0],[1,2,2,1]],[[2,2,2,1],[2,1,1,2],[2,3,0,0],[1,2,2,1]],[[0,2,0,0],[3,3,3,2],[2,3,3,1],[1,0,0,1]],[[0,2,0,0],[2,4,3,2],[2,3,3,1],[1,0,0,1]],[[0,2,0,0],[2,3,3,2],[3,3,3,1],[1,0,0,1]],[[0,2,0,0],[3,3,3,2],[2,3,3,1],[1,0,1,0]],[[0,2,0,0],[2,4,3,2],[2,3,3,1],[1,0,1,0]],[[0,2,0,0],[2,3,3,2],[3,3,3,1],[1,0,1,0]],[[1,2,2,1],[2,1,1,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,2,2,1],[2,2,1,0]],[[1,2,2,1],[2,1,1,2],[3,2,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,1,3],[2,2,2,1],[1,2,1,0]],[[1,2,2,1],[3,1,1,2],[2,2,2,1],[1,2,1,0]],[[1,2,2,2],[2,1,1,2],[2,2,2,1],[1,2,1,0]],[[1,2,3,1],[2,1,1,2],[2,2,2,1],[1,2,1,0]],[[1,3,2,1],[2,1,1,2],[2,2,2,1],[1,2,1,0]],[[2,2,2,1],[2,1,1,2],[2,2,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,1,2],[2,2,2,1],[1,3,0,1]],[[1,2,2,1],[2,1,1,2],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[2,1,1,2],[3,2,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,1,3],[2,2,2,1],[1,2,0,1]],[[1,2,2,1],[3,1,1,2],[2,2,2,1],[1,2,0,1]],[[1,2,2,2],[2,1,1,2],[2,2,2,1],[1,2,0,1]],[[1,2,3,1],[2,1,1,2],[2,2,2,1],[1,2,0,1]],[[1,3,2,1],[2,1,1,2],[2,2,2,1],[1,2,0,1]],[[2,2,2,1],[2,1,1,2],[2,2,2,1],[1,2,0,1]],[[1,2,2,1],[2,1,1,2],[2,2,2,0],[1,3,1,1]],[[1,2,2,1],[2,1,1,2],[2,2,2,0],[2,2,1,1]],[[1,2,2,1],[2,1,1,2],[3,2,2,0],[1,2,1,1]],[[1,2,2,1],[2,1,1,3],[2,2,2,0],[1,2,1,1]],[[1,2,2,1],[3,1,1,2],[2,2,2,0],[1,2,1,1]],[[1,2,2,2],[2,1,1,2],[2,2,2,0],[1,2,1,1]],[[1,2,3,1],[2,1,1,2],[2,2,2,0],[1,2,1,1]],[[1,3,2,1],[2,1,1,2],[2,2,2,0],[1,2,1,1]],[[2,2,2,1],[2,1,1,2],[2,2,2,0],[1,2,1,1]],[[1,2,2,1],[2,1,1,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,2,1,2],[2,2,1,0]],[[1,2,2,1],[2,1,1,2],[2,2,1,3],[1,2,1,0]],[[0,2,0,1],[0,1,1,2],[2,3,3,3],[1,2,2,1]],[[0,2,0,1],[0,1,1,2],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[0,1,1,2],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[0,1,1,2],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[0,1,1,2],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[0,1,2,3],[2,3,2,2],[1,2,2,1]],[[0,2,0,1],[0,1,2,2],[2,3,2,3],[1,2,2,1]],[[0,2,0,1],[0,1,2,2],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[0,1,2,2],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[0,1,2,2],[2,3,2,2],[1,2,3,1]],[[0,2,0,1],[0,1,2,2],[2,3,2,2],[1,2,2,2]],[[0,2,0,1],[0,1,2,2],[2,3,4,1],[1,2,2,1]],[[0,2,0,1],[0,1,2,2],[2,3,3,1],[2,2,2,1]],[[0,2,0,1],[0,1,2,2],[2,3,3,1],[1,3,2,1]],[[0,2,0,1],[0,1,2,2],[2,3,3,1],[1,2,3,1]],[[0,2,0,1],[0,1,2,2],[2,3,3,1],[1,2,2,2]],[[0,2,0,1],[0,1,2,3],[2,3,3,2],[1,2,1,1]],[[0,2,0,1],[0,1,2,2],[2,3,4,2],[1,2,1,1]],[[0,2,0,1],[0,1,2,2],[2,3,3,3],[1,2,1,1]],[[0,2,0,1],[0,1,2,2],[2,3,3,2],[1,2,1,2]],[[0,2,0,1],[0,1,2,3],[2,3,3,2],[1,2,2,0]],[[0,2,0,1],[0,1,2,2],[2,3,4,2],[1,2,2,0]],[[0,2,0,1],[0,1,2,2],[2,3,3,3],[1,2,2,0]],[[0,2,0,1],[0,1,2,2],[2,3,3,2],[2,2,2,0]],[[0,2,0,1],[0,1,2,2],[2,3,3,2],[1,3,2,0]],[[0,2,0,1],[0,1,2,2],[2,3,3,2],[1,2,3,0]],[[0,2,0,1],[0,1,3,0],[2,3,4,2],[1,2,2,1]],[[0,2,0,1],[0,1,3,0],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[0,1,3,0],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[0,1,3,0],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[0,1,3,0],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[0,1,3,1],[2,3,2,3],[1,2,2,1]],[[0,2,0,1],[0,1,3,1],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[0,1,3,1],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[0,1,3,1],[2,3,2,2],[1,2,3,1]],[[0,2,0,1],[0,1,3,1],[2,3,2,2],[1,2,2,2]],[[0,2,0,1],[0,1,3,1],[2,3,4,1],[1,2,2,1]],[[0,2,0,1],[0,1,3,1],[2,3,3,1],[2,2,2,1]],[[0,2,0,1],[0,1,3,1],[2,3,3,1],[1,3,2,1]],[[0,2,0,1],[0,1,3,1],[2,3,3,1],[1,2,3,1]],[[0,2,0,1],[0,1,3,1],[2,3,3,1],[1,2,2,2]],[[0,2,0,1],[0,1,3,1],[2,3,4,2],[1,2,1,1]],[[0,2,0,1],[0,1,3,1],[2,3,3,3],[1,2,1,1]],[[0,2,0,1],[0,1,3,1],[2,3,3,2],[1,2,1,2]],[[0,2,0,1],[0,1,3,1],[2,3,4,2],[1,2,2,0]],[[0,2,0,1],[0,1,3,1],[2,3,3,3],[1,2,2,0]],[[0,2,0,1],[0,1,3,1],[2,3,3,2],[2,2,2,0]],[[0,2,0,1],[0,1,3,1],[2,3,3,2],[1,3,2,0]],[[0,2,0,1],[0,1,3,1],[2,3,3,2],[1,2,3,0]],[[0,2,0,1],[0,1,3,2],[2,3,4,0],[1,2,2,1]],[[0,2,0,1],[0,1,3,2],[2,3,3,0],[2,2,2,1]],[[0,2,0,1],[0,1,3,2],[2,3,3,0],[1,3,2,1]],[[0,2,0,1],[0,1,3,2],[2,3,3,0],[1,2,3,1]],[[0,2,0,1],[0,1,3,2],[2,3,3,0],[1,2,2,2]],[[0,2,0,1],[0,1,3,2],[2,3,4,1],[1,2,2,0]],[[0,2,0,1],[0,1,3,2],[2,3,3,1],[2,2,2,0]],[[0,2,0,1],[0,1,3,2],[2,3,3,1],[1,3,2,0]],[[0,2,0,1],[0,1,3,2],[2,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[3,2,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,1,3],[2,2,1,2],[1,2,1,0]],[[1,2,2,1],[3,1,1,2],[2,2,1,2],[1,2,1,0]],[[1,2,2,2],[2,1,1,2],[2,2,1,2],[1,2,1,0]],[[1,2,3,1],[2,1,1,2],[2,2,1,2],[1,2,1,0]],[[1,3,2,1],[2,1,1,2],[2,2,1,2],[1,2,1,0]],[[2,2,2,1],[2,1,1,2],[2,2,1,2],[1,2,1,0]],[[0,2,0,1],[0,2,0,2],[2,3,3,3],[1,2,2,1]],[[0,2,0,1],[0,2,0,2],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[0,2,0,2],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[0,2,0,2],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[0,2,0,2],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[0,2,1,2],[2,2,3,3],[1,2,2,1]],[[0,2,0,1],[0,2,1,2],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[0,2,1,2],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[0,2,1,2],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[0,2,1,2],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[0,2,1,2],[2,3,3,3],[1,1,2,1]],[[0,2,0,1],[0,2,1,2],[2,3,3,2],[1,1,3,1]],[[0,2,0,1],[0,2,1,2],[2,3,3,2],[1,1,2,2]],[[0,2,0,1],[0,2,2,3],[2,1,3,2],[1,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,1,3,3],[1,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,1,3,2],[1,2,3,1]],[[0,2,0,1],[0,2,2,2],[2,1,3,2],[1,2,2,2]],[[0,2,0,2],[0,2,2,2],[2,2,2,2],[1,2,2,1]],[[0,2,0,1],[0,2,2,3],[2,2,2,2],[1,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,2,2,3],[1,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[0,2,2,2],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[0,2,2,2],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[0,2,2,2],[2,2,4,1],[1,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,2,3,1],[2,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,2,3,1],[1,3,2,1]],[[0,2,0,1],[0,2,2,2],[2,2,3,1],[1,2,3,1]],[[0,2,0,1],[0,2,2,2],[2,2,3,1],[1,2,2,2]],[[0,2,0,2],[0,2,2,2],[2,2,3,2],[1,2,1,1]],[[0,2,0,1],[0,2,2,3],[2,2,3,2],[1,2,1,1]],[[0,2,0,1],[0,2,2,2],[2,2,4,2],[1,2,1,1]],[[0,2,0,1],[0,2,2,2],[2,2,3,3],[1,2,1,1]],[[0,2,0,1],[0,2,2,2],[2,2,3,2],[1,2,1,2]],[[0,2,0,2],[0,2,2,2],[2,2,3,2],[1,2,2,0]],[[0,2,0,1],[0,2,2,3],[2,2,3,2],[1,2,2,0]],[[0,2,0,1],[0,2,2,2],[2,2,4,2],[1,2,2,0]],[[0,2,0,1],[0,2,2,2],[2,2,3,3],[1,2,2,0]],[[0,2,0,1],[0,2,2,2],[2,2,3,2],[2,2,2,0]],[[0,2,0,1],[0,2,2,2],[2,2,3,2],[1,3,2,0]],[[0,2,0,1],[0,2,2,2],[2,2,3,2],[1,2,3,0]],[[0,2,0,2],[0,2,2,2],[2,3,1,2],[1,2,2,1]],[[0,2,0,1],[0,2,2,3],[2,3,1,2],[1,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,4,1,2],[1,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,1,3],[1,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,1,2],[2,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,1,2],[1,3,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,1,2],[1,2,3,1]],[[0,2,0,1],[0,2,2,2],[2,3,1,2],[1,2,2,2]],[[0,2,0,1],[0,2,2,2],[2,4,2,1],[1,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,2,1],[2,2,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,2,1],[1,3,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,2,1],[1,2,3,1]],[[0,2,0,1],[0,2,2,2],[2,3,2,1],[1,2,2,2]],[[0,2,0,2],[0,2,2,2],[2,3,2,2],[1,1,2,1]],[[0,2,0,1],[0,2,2,3],[2,3,2,2],[1,1,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,2,3],[1,1,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,2,2],[1,1,3,1]],[[0,2,0,1],[0,2,2,2],[2,3,2,2],[1,1,2,2]],[[0,2,0,1],[0,2,2,2],[2,4,2,2],[1,2,2,0]],[[0,2,0,1],[0,2,2,2],[2,3,2,2],[2,2,2,0]],[[0,2,0,1],[0,2,2,2],[2,3,2,2],[1,3,2,0]],[[0,2,0,1],[0,2,2,2],[2,3,2,2],[1,2,3,0]],[[0,2,0,1],[0,2,2,2],[2,4,3,1],[1,1,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,4,1],[1,1,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,1],[1,1,3,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,1],[1,1,2,2]],[[0,2,0,1],[0,2,2,2],[2,4,3,1],[1,2,1,1]],[[0,2,0,1],[0,2,2,2],[2,3,4,1],[1,2,1,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,1],[2,2,1,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,1],[1,3,1,1]],[[0,2,0,1],[0,2,2,3],[2,3,3,2],[1,0,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,4,2],[1,0,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,3],[1,0,2,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,2],[1,0,2,2]],[[0,2,0,2],[0,2,2,2],[2,3,3,2],[1,1,1,1]],[[0,2,0,1],[0,2,2,3],[2,3,3,2],[1,1,1,1]],[[0,2,0,1],[0,2,2,2],[2,4,3,2],[1,1,1,1]],[[0,2,0,1],[0,2,2,2],[2,3,4,2],[1,1,1,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,3],[1,1,1,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,2],[1,1,1,2]],[[0,2,0,2],[0,2,2,2],[2,3,3,2],[1,1,2,0]],[[0,2,0,1],[0,2,2,3],[2,3,3,2],[1,1,2,0]],[[0,2,0,1],[0,2,2,2],[2,4,3,2],[1,1,2,0]],[[0,2,0,1],[0,2,2,2],[2,3,4,2],[1,1,2,0]],[[0,2,0,1],[0,2,2,2],[2,3,3,3],[1,1,2,0]],[[0,2,0,1],[0,2,2,2],[2,3,3,2],[1,1,3,0]],[[0,2,0,2],[0,2,2,2],[2,3,3,2],[1,2,0,1]],[[0,2,0,1],[0,2,2,3],[2,3,3,2],[1,2,0,1]],[[0,2,0,1],[0,2,2,2],[2,4,3,2],[1,2,0,1]],[[0,2,0,1],[0,2,2,2],[2,3,4,2],[1,2,0,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,3],[1,2,0,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,2],[2,2,0,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,2],[1,3,0,1]],[[0,2,0,1],[0,2,2,2],[2,3,3,2],[1,2,0,2]],[[0,2,0,2],[0,2,2,2],[2,3,3,2],[1,2,1,0]],[[0,2,0,1],[0,2,2,3],[2,3,3,2],[1,2,1,0]],[[0,2,0,1],[0,2,2,2],[2,4,3,2],[1,2,1,0]],[[0,2,0,1],[0,2,2,2],[2,3,4,2],[1,2,1,0]],[[0,2,0,1],[0,2,2,2],[2,3,3,3],[1,2,1,0]],[[0,2,0,1],[0,2,2,2],[2,3,3,2],[2,2,1,0]],[[0,2,0,1],[0,2,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,2,1,2],[1,2,0,2]],[[1,2,2,1],[2,1,1,2],[2,2,1,2],[1,3,0,1]],[[1,2,2,1],[2,1,1,2],[2,2,1,2],[2,2,0,1]],[[1,2,2,1],[2,1,1,2],[2,2,1,3],[1,2,0,1]],[[1,2,2,1],[2,1,1,2],[3,2,1,2],[1,2,0,1]],[[1,2,2,1],[2,1,1,3],[2,2,1,2],[1,2,0,1]],[[1,2,2,1],[3,1,1,2],[2,2,1,2],[1,2,0,1]],[[1,2,2,2],[2,1,1,2],[2,2,1,2],[1,2,0,1]],[[1,2,3,1],[2,1,1,2],[2,2,1,2],[1,2,0,1]],[[0,2,0,1],[0,2,3,0],[2,2,4,2],[1,2,2,1]],[[0,2,0,1],[0,2,3,0],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[0,2,3,0],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[0,2,3,0],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[0,2,3,0],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[0,2,3,0],[2,4,2,2],[1,2,2,1]],[[0,2,0,1],[0,2,3,0],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[0,2,3,0],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[0,2,3,0],[2,3,2,2],[1,2,3,1]],[[0,2,0,1],[0,2,3,0],[2,3,2,2],[1,2,2,2]],[[0,2,0,1],[0,2,3,0],[2,4,3,2],[1,1,2,1]],[[0,2,0,1],[0,2,3,0],[2,3,4,2],[1,1,2,1]],[[0,2,0,1],[0,2,3,0],[2,3,3,2],[1,1,3,1]],[[0,2,0,1],[0,2,3,0],[2,3,3,2],[1,1,2,2]],[[0,2,0,1],[0,2,3,0],[2,4,3,2],[1,2,1,1]],[[0,2,0,1],[0,2,3,0],[2,3,4,2],[1,2,1,1]],[[0,2,0,1],[0,2,3,0],[2,3,3,2],[2,2,1,1]],[[0,2,0,1],[0,2,3,0],[2,3,3,2],[1,3,1,1]],[[0,2,0,1],[0,2,3,1],[2,1,3,3],[1,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,1,3,2],[1,2,3,1]],[[0,2,0,1],[0,2,3,1],[2,1,3,2],[1,2,2,2]],[[0,2,0,1],[0,2,3,1],[2,2,2,3],[1,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[0,2,3,1],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[0,2,3,1],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[0,2,4,1],[2,2,3,1],[1,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,2,4,1],[1,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,2,3,1],[2,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,2,3,1],[1,3,2,1]],[[0,2,0,1],[0,2,3,1],[2,2,3,1],[1,2,3,1]],[[0,2,0,1],[0,2,3,1],[2,2,3,1],[1,2,2,2]],[[0,2,0,1],[0,2,4,1],[2,2,3,2],[1,2,1,1]],[[0,2,0,1],[0,2,3,1],[2,2,4,2],[1,2,1,1]],[[0,2,0,1],[0,2,3,1],[2,2,3,3],[1,2,1,1]],[[0,2,0,1],[0,2,3,1],[2,2,3,2],[1,2,1,2]],[[0,2,0,1],[0,2,4,1],[2,2,3,2],[1,2,2,0]],[[0,2,0,1],[0,2,3,1],[2,2,4,2],[1,2,2,0]],[[0,2,0,1],[0,2,3,1],[2,2,3,3],[1,2,2,0]],[[0,2,0,1],[0,2,3,1],[2,2,3,2],[2,2,2,0]],[[0,2,0,1],[0,2,3,1],[2,2,3,2],[1,3,2,0]],[[0,2,0,1],[0,2,3,1],[2,2,3,2],[1,2,3,0]],[[0,2,0,1],[0,2,3,1],[2,4,1,2],[1,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,1,3],[1,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,1,2],[2,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,1,2],[1,3,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,1,2],[1,2,3,1]],[[0,2,0,1],[0,2,3,1],[2,3,1,2],[1,2,2,2]],[[0,2,0,1],[0,2,3,1],[2,4,2,1],[1,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,2,1],[2,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,2,1],[1,3,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,2,1],[1,2,3,1]],[[0,2,0,1],[0,2,3,1],[2,3,2,1],[1,2,2,2]],[[0,2,0,1],[0,2,3,1],[2,3,2,3],[1,1,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,2,2],[1,1,3,1]],[[0,2,0,1],[0,2,3,1],[2,3,2,2],[1,1,2,2]],[[0,2,0,1],[0,2,3,1],[2,4,2,2],[1,2,2,0]],[[0,2,0,1],[0,2,3,1],[2,3,2,2],[2,2,2,0]],[[0,2,0,1],[0,2,3,1],[2,3,2,2],[1,3,2,0]],[[0,2,0,1],[0,2,3,1],[2,3,2,2],[1,2,3,0]],[[0,2,0,1],[0,2,3,1],[2,4,3,0],[1,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,0],[2,2,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,0],[1,3,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,0],[1,2,3,1]],[[0,2,0,1],[0,2,4,1],[2,3,3,1],[1,1,2,1]],[[0,2,0,1],[0,2,3,1],[2,4,3,1],[1,1,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,4,1],[1,1,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,1],[1,1,3,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,1],[1,1,2,2]],[[0,2,0,1],[0,2,4,1],[2,3,3,1],[1,2,1,1]],[[0,2,0,1],[0,2,3,1],[2,4,3,1],[1,2,1,1]],[[0,2,0,1],[0,2,3,1],[2,3,4,1],[1,2,1,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,1],[2,2,1,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,1],[1,3,1,1]],[[0,2,0,1],[0,2,3,1],[2,3,4,2],[1,0,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,3],[1,0,2,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,2],[1,0,2,2]],[[0,2,0,1],[0,2,4,1],[2,3,3,2],[1,1,1,1]],[[0,2,0,1],[0,2,3,1],[2,4,3,2],[1,1,1,1]],[[0,2,0,1],[0,2,3,1],[2,3,4,2],[1,1,1,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,3],[1,1,1,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,2],[1,1,1,2]],[[0,2,0,1],[0,2,4,1],[2,3,3,2],[1,1,2,0]],[[0,2,0,1],[0,2,3,1],[2,4,3,2],[1,1,2,0]],[[0,2,0,1],[0,2,3,1],[2,3,4,2],[1,1,2,0]],[[0,2,0,1],[0,2,3,1],[2,3,3,3],[1,1,2,0]],[[0,2,0,1],[0,2,3,1],[2,3,3,2],[1,1,3,0]],[[0,2,0,1],[0,2,4,1],[2,3,3,2],[1,2,0,1]],[[0,2,0,1],[0,2,3,1],[2,4,3,2],[1,2,0,1]],[[0,2,0,1],[0,2,3,1],[2,3,4,2],[1,2,0,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,3],[1,2,0,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,2],[2,2,0,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,2],[1,3,0,1]],[[0,2,0,1],[0,2,3,1],[2,3,3,2],[1,2,0,2]],[[0,2,0,1],[0,2,4,1],[2,3,3,2],[1,2,1,0]],[[0,2,0,1],[0,2,3,1],[2,4,3,2],[1,2,1,0]],[[0,2,0,1],[0,2,3,1],[2,3,4,2],[1,2,1,0]],[[0,2,0,1],[0,2,3,1],[2,3,3,3],[1,2,1,0]],[[0,2,0,1],[0,2,3,1],[2,3,3,2],[2,2,1,0]],[[0,2,0,1],[0,2,3,1],[2,3,3,2],[1,3,1,0]],[[1,3,2,1],[2,1,1,2],[2,2,1,2],[1,2,0,1]],[[2,2,2,1],[2,1,1,2],[2,2,1,2],[1,2,0,1]],[[0,2,0,2],[0,2,3,2],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[0,2,4,2],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[0,2,3,3],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,2,1,3],[1,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,2,1,2],[2,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,2,1,2],[1,3,2,1]],[[0,2,0,1],[0,2,3,2],[2,2,1,2],[1,2,3,1]],[[0,2,0,1],[0,2,3,2],[2,2,1,2],[1,2,2,2]],[[0,2,0,2],[0,2,3,2],[2,2,2,2],[1,2,1,1]],[[0,2,0,1],[0,2,4,2],[2,2,2,2],[1,2,1,1]],[[0,2,0,1],[0,2,3,3],[2,2,2,2],[1,2,1,1]],[[0,2,0,1],[0,2,3,2],[2,2,2,3],[1,2,1,1]],[[0,2,0,1],[0,2,3,2],[2,2,2,2],[1,2,1,2]],[[0,2,0,2],[0,2,3,2],[2,2,2,2],[1,2,2,0]],[[0,2,0,1],[0,2,4,2],[2,2,2,2],[1,2,2,0]],[[0,2,0,1],[0,2,3,3],[2,2,2,2],[1,2,2,0]],[[0,2,0,1],[0,2,3,2],[2,2,2,3],[1,2,2,0]],[[0,2,0,2],[0,2,3,2],[2,2,3,0],[1,2,2,1]],[[0,2,0,1],[0,2,4,2],[2,2,3,0],[1,2,2,1]],[[0,2,0,1],[0,2,3,3],[2,2,3,0],[1,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,2,4,0],[1,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,2,3,0],[2,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,2,3,0],[1,3,2,1]],[[0,2,0,1],[0,2,3,2],[2,2,3,0],[1,2,3,1]],[[0,2,0,1],[0,2,3,2],[2,2,3,0],[1,2,2,2]],[[0,2,0,2],[0,2,3,2],[2,2,3,1],[1,2,1,1]],[[0,2,0,1],[0,2,4,2],[2,2,3,1],[1,2,1,1]],[[0,2,0,1],[0,2,3,3],[2,2,3,1],[1,2,1,1]],[[0,2,0,1],[0,2,3,2],[2,2,4,1],[1,2,1,1]],[[0,2,0,2],[0,2,3,2],[2,2,3,1],[1,2,2,0]],[[0,2,0,1],[0,2,4,2],[2,2,3,1],[1,2,2,0]],[[0,2,0,1],[0,2,3,3],[2,2,3,1],[1,2,2,0]],[[0,2,0,1],[0,2,3,2],[2,2,4,1],[1,2,2,0]],[[0,2,0,1],[0,2,3,2],[2,2,3,1],[2,2,2,0]],[[0,2,0,1],[0,2,3,2],[2,2,3,1],[1,3,2,0]],[[0,2,0,1],[0,2,3,2],[2,2,3,1],[1,2,3,0]],[[0,2,0,2],[0,2,3,2],[2,3,0,2],[1,2,2,1]],[[0,2,0,1],[0,2,4,2],[2,3,0,2],[1,2,2,1]],[[0,2,0,1],[0,2,3,3],[2,3,0,2],[1,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,4,0,2],[1,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,3,0,3],[1,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,3,0,2],[2,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,3,0,2],[1,3,2,1]],[[0,2,0,1],[0,2,3,2],[2,3,0,2],[1,2,3,1]],[[0,2,0,1],[0,2,3,2],[2,3,0,2],[1,2,2,2]],[[0,2,0,2],[0,2,3,2],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[0,2,4,2],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[0,2,3,3],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[0,2,3,2],[2,3,1,3],[1,1,2,1]],[[0,2,0,1],[0,2,3,2],[2,3,1,2],[1,1,3,1]],[[0,2,0,1],[0,2,3,2],[2,3,1,2],[1,1,2,2]],[[0,2,0,1],[0,2,3,2],[2,4,2,0],[1,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,3,2,0],[2,2,2,1]],[[0,2,0,1],[0,2,3,2],[2,3,2,0],[1,3,2,1]],[[0,2,0,1],[0,2,3,2],[2,3,2,0],[1,2,3,1]],[[0,2,0,1],[0,2,3,2],[2,3,2,0],[1,2,2,2]],[[0,2,0,1],[0,2,3,2],[2,4,2,1],[1,2,2,0]],[[0,2,0,1],[0,2,3,2],[2,3,2,1],[2,2,2,0]],[[0,2,0,1],[0,2,3,2],[2,3,2,1],[1,3,2,0]],[[0,2,0,1],[0,2,3,2],[2,3,2,1],[1,2,3,0]],[[0,2,0,2],[0,2,3,2],[2,3,2,2],[1,1,1,1]],[[0,2,0,1],[0,2,4,2],[2,3,2,2],[1,1,1,1]],[[0,2,0,1],[0,2,3,3],[2,3,2,2],[1,1,1,1]],[[0,2,0,1],[0,2,3,2],[2,3,2,3],[1,1,1,1]],[[0,2,0,1],[0,2,3,2],[2,3,2,2],[1,1,1,2]],[[0,2,0,2],[0,2,3,2],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[0,2,4,2],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[0,2,3,3],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[0,2,3,2],[2,3,2,3],[1,1,2,0]],[[0,2,0,2],[0,2,3,2],[2,3,2,2],[1,2,0,1]],[[0,2,0,1],[0,2,4,2],[2,3,2,2],[1,2,0,1]],[[0,2,0,1],[0,2,3,3],[2,3,2,2],[1,2,0,1]],[[0,2,0,1],[0,2,3,2],[2,3,2,3],[1,2,0,1]],[[0,2,0,1],[0,2,3,2],[2,3,2,2],[1,2,0,2]],[[0,2,0,2],[0,2,3,2],[2,3,2,2],[1,2,1,0]],[[0,2,0,1],[0,2,4,2],[2,3,2,2],[1,2,1,0]],[[0,2,0,1],[0,2,3,3],[2,3,2,2],[1,2,1,0]],[[0,2,0,1],[0,2,3,2],[2,3,2,3],[1,2,1,0]],[[0,2,0,2],[0,2,3,2],[2,3,3,0],[1,1,2,1]],[[0,2,0,1],[0,2,4,2],[2,3,3,0],[1,1,2,1]],[[0,2,0,1],[0,2,3,3],[2,3,3,0],[1,1,2,1]],[[0,2,0,1],[0,2,3,2],[2,4,3,0],[1,1,2,1]],[[0,2,0,1],[0,2,3,2],[2,3,4,0],[1,1,2,1]],[[0,2,0,1],[0,2,3,2],[2,3,3,0],[1,1,3,1]],[[0,2,0,1],[0,2,3,2],[2,3,3,0],[1,1,2,2]],[[0,2,0,2],[0,2,3,2],[2,3,3,0],[1,2,1,1]],[[0,2,0,1],[0,2,4,2],[2,3,3,0],[1,2,1,1]],[[0,2,0,1],[0,2,3,3],[2,3,3,0],[1,2,1,1]],[[0,2,0,1],[0,2,3,2],[2,4,3,0],[1,2,1,1]],[[0,2,0,1],[0,2,3,2],[2,3,4,0],[1,2,1,1]],[[0,2,0,1],[0,2,3,2],[2,3,3,0],[2,2,1,1]],[[0,2,0,1],[0,2,3,2],[2,3,3,0],[1,3,1,1]],[[0,2,0,2],[0,2,3,2],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[0,2,4,2],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[0,2,3,3],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[0,2,3,2],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[0,2,3,2],[2,3,4,1],[1,1,1,1]],[[0,2,0,2],[0,2,3,2],[2,3,3,1],[1,1,2,0]],[[0,2,0,1],[0,2,4,2],[2,3,3,1],[1,1,2,0]],[[0,2,0,1],[0,2,3,3],[2,3,3,1],[1,1,2,0]],[[0,2,0,1],[0,2,3,2],[2,4,3,1],[1,1,2,0]],[[0,2,0,1],[0,2,3,2],[2,3,4,1],[1,1,2,0]],[[0,2,0,1],[0,2,3,2],[2,3,3,1],[1,1,3,0]],[[0,2,0,2],[0,2,3,2],[2,3,3,1],[1,2,0,1]],[[0,2,0,1],[0,2,4,2],[2,3,3,1],[1,2,0,1]],[[0,2,0,1],[0,2,3,3],[2,3,3,1],[1,2,0,1]],[[0,2,0,1],[0,2,3,2],[2,4,3,1],[1,2,0,1]],[[0,2,0,1],[0,2,3,2],[2,3,4,1],[1,2,0,1]],[[0,2,0,1],[0,2,3,2],[2,3,3,1],[2,2,0,1]],[[0,2,0,1],[0,2,3,2],[2,3,3,1],[1,3,0,1]],[[0,2,0,2],[0,2,3,2],[2,3,3,1],[1,2,1,0]],[[0,2,0,1],[0,2,4,2],[2,3,3,1],[1,2,1,0]],[[0,2,0,1],[0,2,3,3],[2,3,3,1],[1,2,1,0]],[[0,2,0,1],[0,2,3,2],[2,4,3,1],[1,2,1,0]],[[0,2,0,1],[0,2,3,2],[2,3,4,1],[1,2,1,0]],[[0,2,0,1],[0,2,3,2],[2,3,3,1],[2,2,1,0]],[[0,2,0,1],[0,2,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,2,1,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,2,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,1,2],[2,2,1,1],[2,2,2,0]],[[1,2,2,1],[2,1,1,2],[3,2,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,3],[2,2,1,1],[1,2,2,0]],[[1,2,2,1],[3,1,1,2],[2,2,1,1],[1,2,2,0]],[[1,2,2,2],[2,1,1,2],[2,2,1,1],[1,2,2,0]],[[1,2,3,1],[2,1,1,2],[2,2,1,1],[1,2,2,0]],[[1,3,2,1],[2,1,1,2],[2,2,1,1],[1,2,2,0]],[[2,2,2,1],[2,1,1,2],[2,2,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,2,1,0],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[2,2,1,0],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[2,2,1,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[2,2,1,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[3,2,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,1,3],[2,2,1,0],[1,2,2,1]],[[1,2,2,1],[3,1,1,2],[2,2,1,0],[1,2,2,1]],[[1,2,2,2],[2,1,1,2],[2,2,1,0],[1,2,2,1]],[[1,2,3,1],[2,1,1,2],[2,2,1,0],[1,2,2,1]],[[1,3,2,1],[2,1,1,2],[2,2,1,0],[1,2,2,1]],[[2,2,2,1],[2,1,1,2],[2,2,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[1,3,2,0]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[2,2,2,0]],[[0,2,0,1],[0,3,0,1],[2,4,3,2],[1,2,2,1]],[[0,2,0,1],[0,3,0,1],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[0,3,0,1],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[0,3,0,1],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,0,1],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[0,3,0,2],[2,2,3,3],[1,2,2,1]],[[0,2,0,1],[0,3,0,2],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[0,3,0,2],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[0,3,0,2],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,0,2],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[0,3,0,2],[2,4,2,2],[1,2,2,1]],[[0,2,0,1],[0,3,0,2],[2,3,2,3],[1,2,2,1]],[[0,2,0,1],[0,3,0,2],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[0,3,0,2],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[0,3,0,2],[2,3,2,2],[1,2,3,1]],[[0,2,0,1],[0,3,0,2],[2,3,2,2],[1,2,2,2]],[[0,2,0,1],[0,3,0,2],[2,4,3,1],[1,2,2,1]],[[0,2,0,1],[0,3,0,2],[2,3,3,1],[2,2,2,1]],[[0,2,0,1],[0,3,0,2],[2,3,3,1],[1,3,2,1]],[[0,2,0,1],[0,3,0,2],[2,3,3,1],[1,2,3,1]],[[0,2,0,1],[0,3,0,2],[2,3,3,1],[1,2,2,2]],[[0,2,0,1],[0,3,0,2],[2,3,3,3],[1,1,2,1]],[[0,2,0,1],[0,3,0,2],[2,3,3,2],[1,1,3,1]],[[0,2,0,1],[0,3,0,2],[2,3,3,2],[1,1,2,2]],[[0,2,0,1],[0,3,0,2],[2,4,3,2],[1,2,2,0]],[[0,2,0,1],[0,3,0,2],[2,3,3,2],[2,2,2,0]],[[0,2,0,1],[0,3,0,2],[2,3,3,2],[1,3,2,0]],[[0,2,0,1],[0,3,0,2],[2,3,3,2],[1,2,3,0]],[[0,2,0,1],[0,3,1,0],[2,4,3,2],[1,2,2,1]],[[0,2,0,1],[0,3,1,0],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[0,3,1,0],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[0,3,1,0],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,1,0],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[0,3,1,1],[2,4,3,1],[1,2,2,1]],[[0,2,0,1],[0,3,1,1],[2,3,3,1],[2,2,2,1]],[[0,2,0,1],[0,3,1,1],[2,3,3,1],[1,3,2,1]],[[0,2,0,1],[0,3,1,1],[2,3,3,1],[1,2,3,1]],[[0,2,0,1],[0,3,1,1],[2,3,3,1],[1,2,2,2]],[[0,2,0,1],[0,3,1,1],[2,4,3,2],[1,2,2,0]],[[0,2,0,1],[0,3,1,1],[2,3,3,2],[2,2,2,0]],[[0,2,0,1],[0,3,1,1],[2,3,3,2],[1,3,2,0]],[[0,2,0,1],[0,3,1,1],[2,3,3,2],[1,2,3,0]],[[0,2,0,1],[0,3,1,2],[0,3,3,3],[1,2,2,1]],[[0,2,0,1],[0,3,1,2],[0,3,3,2],[1,3,2,1]],[[0,2,0,1],[0,3,1,2],[0,3,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,1,2],[0,3,3,2],[1,2,2,2]],[[0,2,0,1],[0,3,1,2],[1,2,3,3],[1,2,2,1]],[[0,2,0,1],[0,3,1,2],[1,2,3,2],[1,3,2,1]],[[0,2,0,1],[0,3,1,2],[1,2,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,1,2],[1,2,3,2],[1,2,2,2]],[[0,2,0,1],[0,3,1,2],[1,3,3,3],[1,1,2,1]],[[0,2,0,1],[0,3,1,2],[1,3,3,2],[1,1,3,1]],[[0,2,0,1],[0,3,1,2],[1,3,3,2],[1,1,2,2]],[[0,2,0,2],[0,3,1,2],[2,2,2,2],[1,2,2,1]],[[0,2,0,1],[0,3,1,3],[2,2,2,2],[1,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,2,2,3],[1,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[0,3,1,2],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[0,3,1,2],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[0,3,1,2],[2,2,4,1],[1,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,2,3,1],[2,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,2,3,1],[1,3,2,1]],[[0,2,0,1],[0,3,1,2],[2,2,3,1],[1,2,3,1]],[[0,2,0,1],[0,3,1,2],[2,2,3,1],[1,2,2,2]],[[0,2,0,1],[0,3,1,2],[2,2,3,3],[0,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,2,3,2],[0,2,3,1]],[[0,2,0,1],[0,3,1,2],[2,2,3,2],[0,2,2,2]],[[0,2,0,2],[0,3,1,2],[2,2,3,2],[1,2,1,1]],[[0,2,0,1],[0,3,1,3],[2,2,3,2],[1,2,1,1]],[[0,2,0,1],[0,3,1,2],[2,2,4,2],[1,2,1,1]],[[0,2,0,1],[0,3,1,2],[2,2,3,3],[1,2,1,1]],[[0,2,0,1],[0,3,1,2],[2,2,3,2],[1,2,1,2]],[[0,2,0,2],[0,3,1,2],[2,2,3,2],[1,2,2,0]],[[0,2,0,1],[0,3,1,3],[2,2,3,2],[1,2,2,0]],[[0,2,0,1],[0,3,1,2],[2,2,4,2],[1,2,2,0]],[[0,2,0,1],[0,3,1,2],[2,2,3,3],[1,2,2,0]],[[0,2,0,1],[0,3,1,2],[2,2,3,2],[2,2,2,0]],[[0,2,0,1],[0,3,1,2],[2,2,3,2],[1,3,2,0]],[[0,2,0,1],[0,3,1,2],[2,2,3,2],[1,2,3,0]],[[0,2,0,2],[0,3,1,2],[2,3,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,1,3],[2,3,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,4,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,1,3],[1,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,1,2],[2,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,1,2],[1,3,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,1,2],[1,2,3,1]],[[0,2,0,1],[0,3,1,2],[2,3,1,2],[1,2,2,2]],[[0,2,0,1],[0,3,1,2],[2,4,2,1],[1,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,2,1],[2,2,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,2,1],[1,3,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,2,1],[1,2,3,1]],[[0,2,0,1],[0,3,1,2],[2,3,2,1],[1,2,2,2]],[[0,2,0,2],[0,3,1,2],[2,3,2,2],[1,1,2,1]],[[0,2,0,1],[0,3,1,3],[2,3,2,2],[1,1,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,2,3],[1,1,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,2,2],[1,1,3,1]],[[0,2,0,1],[0,3,1,2],[2,3,2,2],[1,1,2,2]],[[0,2,0,1],[0,3,1,2],[2,4,2,2],[1,2,2,0]],[[0,2,0,1],[0,3,1,2],[2,3,2,2],[2,2,2,0]],[[0,2,0,1],[0,3,1,2],[2,3,2,2],[1,3,2,0]],[[0,2,0,1],[0,3,1,2],[2,3,2,2],[1,2,3,0]],[[0,2,0,1],[0,3,1,2],[2,4,3,1],[1,1,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,4,1],[1,1,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,1],[1,1,3,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,1],[1,1,2,2]],[[0,2,0,1],[0,3,1,2],[2,4,3,1],[1,2,1,1]],[[0,2,0,1],[0,3,1,2],[2,3,4,1],[1,2,1,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,1],[2,2,1,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,1],[1,3,1,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,3],[0,1,2,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,2],[0,1,3,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,2],[0,1,2,2]],[[0,2,0,2],[0,3,1,2],[2,3,3,2],[1,1,1,1]],[[0,2,0,1],[0,3,1,3],[2,3,3,2],[1,1,1,1]],[[0,2,0,1],[0,3,1,2],[2,4,3,2],[1,1,1,1]],[[0,2,0,1],[0,3,1,2],[2,3,4,2],[1,1,1,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,3],[1,1,1,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,2],[1,1,1,2]],[[0,2,0,2],[0,3,1,2],[2,3,3,2],[1,1,2,0]],[[0,2,0,1],[0,3,1,3],[2,3,3,2],[1,1,2,0]],[[0,2,0,1],[0,3,1,2],[2,4,3,2],[1,1,2,0]],[[0,2,0,1],[0,3,1,2],[2,3,4,2],[1,1,2,0]],[[0,2,0,1],[0,3,1,2],[2,3,3,3],[1,1,2,0]],[[0,2,0,1],[0,3,1,2],[2,3,3,2],[1,1,3,0]],[[0,2,0,2],[0,3,1,2],[2,3,3,2],[1,2,0,1]],[[0,2,0,1],[0,3,1,3],[2,3,3,2],[1,2,0,1]],[[0,2,0,1],[0,3,1,2],[2,4,3,2],[1,2,0,1]],[[0,2,0,1],[0,3,1,2],[2,3,4,2],[1,2,0,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,3],[1,2,0,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,2],[2,2,0,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,2],[1,3,0,1]],[[0,2,0,1],[0,3,1,2],[2,3,3,2],[1,2,0,2]],[[0,2,0,2],[0,3,1,2],[2,3,3,2],[1,2,1,0]],[[0,2,0,1],[0,3,1,3],[2,3,3,2],[1,2,1,0]],[[0,2,0,1],[0,3,1,2],[2,4,3,2],[1,2,1,0]],[[0,2,0,1],[0,3,1,2],[2,3,4,2],[1,2,1,0]],[[0,2,0,1],[0,3,1,2],[2,3,3,3],[1,2,1,0]],[[0,2,0,1],[0,3,1,2],[2,3,3,2],[2,2,1,0]],[[0,2,0,1],[0,3,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,2,0,3],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[3,2,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,3],[2,2,0,2],[1,2,2,0]],[[1,2,2,1],[3,1,1,2],[2,2,0,2],[1,2,2,0]],[[1,2,2,2],[2,1,1,2],[2,2,0,2],[1,2,2,0]],[[1,2,3,1],[2,1,1,2],[2,2,0,2],[1,2,2,0]],[[1,3,2,1],[2,1,1,2],[2,2,0,2],[1,2,2,0]],[[2,2,2,1],[2,1,1,2],[2,2,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[1,2,1,2]],[[0,2,0,1],[0,3,2,0],[2,2,4,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,0],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[0,3,2,0],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[0,3,2,0],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,2,0],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[0,3,2,0],[2,4,2,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,0],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[0,3,2,0],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[0,3,2,0],[2,3,2,2],[1,2,3,1]],[[0,2,0,1],[0,3,2,0],[2,3,2,2],[1,2,2,2]],[[0,2,0,1],[0,3,2,0],[2,4,3,2],[1,1,2,1]],[[0,2,0,1],[0,3,2,0],[2,3,4,2],[1,1,2,1]],[[0,2,0,1],[0,3,2,0],[2,3,3,2],[1,1,3,1]],[[0,2,0,1],[0,3,2,0],[2,3,3,2],[1,1,2,2]],[[0,2,0,1],[0,3,2,0],[2,4,3,2],[1,2,1,1]],[[0,2,0,1],[0,3,2,0],[2,3,4,2],[1,2,1,1]],[[0,2,0,1],[0,3,2,0],[2,3,3,2],[2,2,1,1]],[[0,2,0,1],[0,3,2,0],[2,3,3,2],[1,3,1,1]],[[0,2,0,1],[0,3,2,1],[2,2,2,3],[1,2,2,1]],[[0,2,0,1],[0,3,2,1],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[0,3,2,1],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[0,3,2,1],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[0,3,2,1],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[0,3,2,1],[2,2,4,1],[1,2,2,1]],[[0,2,0,1],[0,3,2,1],[2,2,3,1],[2,2,2,1]],[[0,2,0,1],[0,3,2,1],[2,2,3,1],[1,3,2,1]],[[0,2,0,1],[0,3,2,1],[2,2,3,1],[1,2,3,1]],[[0,2,0,1],[0,3,2,1],[2,2,3,1],[1,2,2,2]],[[0,2,0,1],[0,3,2,1],[2,2,4,2],[1,2,1,1]],[[0,2,0,1],[0,3,2,1],[2,2,3,3],[1,2,1,1]],[[0,2,0,1],[0,3,2,1],[2,2,3,2],[1,2,1,2]],[[0,2,0,1],[0,3,2,1],[2,2,4,2],[1,2,2,0]],[[0,2,0,1],[0,3,2,1],[2,2,3,3],[1,2,2,0]],[[0,2,0,1],[0,3,2,1],[2,2,3,2],[2,2,2,0]],[[0,2,0,1],[0,3,2,1],[2,2,3,2],[1,3,2,0]],[[0,2,0,1],[0,3,2,1],[2,2,3,2],[1,2,3,0]],[[0,2,0,1],[0,3,2,1],[2,4,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,1,3],[1,2,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,1,2],[2,2,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,1,2],[1,3,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,1,2],[1,2,3,1]],[[0,2,0,1],[0,3,2,1],[2,3,1,2],[1,2,2,2]],[[0,2,0,1],[0,3,2,1],[2,4,2,1],[1,2,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,2,1],[2,2,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,2,1],[1,3,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,2,1],[1,2,3,1]],[[0,2,0,1],[0,3,2,1],[2,3,2,1],[1,2,2,2]],[[0,2,0,1],[0,3,2,1],[2,3,2,3],[1,1,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,2,2],[1,1,3,1]],[[0,2,0,1],[0,3,2,1],[2,3,2,2],[1,1,2,2]],[[0,2,0,1],[0,3,2,1],[2,4,2,2],[1,2,2,0]],[[0,2,0,1],[0,3,2,1],[2,3,2,2],[2,2,2,0]],[[0,2,0,1],[0,3,2,1],[2,3,2,2],[1,3,2,0]],[[0,2,0,1],[0,3,2,1],[2,3,2,2],[1,2,3,0]],[[0,2,0,1],[0,3,2,1],[2,4,3,0],[1,2,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,0],[2,2,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,0],[1,3,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,0],[1,2,3,1]],[[0,2,0,1],[0,3,2,1],[2,4,3,1],[1,1,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,4,1],[1,1,2,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,1],[1,1,3,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,1],[1,1,2,2]],[[0,2,0,1],[0,3,2,1],[2,4,3,1],[1,2,1,1]],[[0,2,0,1],[0,3,2,1],[2,3,4,1],[1,2,1,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,1],[2,2,1,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,1],[1,3,1,1]],[[0,2,0,1],[0,3,2,1],[2,4,3,2],[1,1,1,1]],[[0,2,0,1],[0,3,2,1],[2,3,4,2],[1,1,1,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,3],[1,1,1,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,2],[1,1,1,2]],[[0,2,0,1],[0,3,2,1],[2,4,3,2],[1,1,2,0]],[[0,2,0,1],[0,3,2,1],[2,3,4,2],[1,1,2,0]],[[0,2,0,1],[0,3,2,1],[2,3,3,3],[1,1,2,0]],[[0,2,0,1],[0,3,2,1],[2,3,3,2],[1,1,3,0]],[[0,2,0,1],[0,3,2,1],[2,4,3,2],[1,2,0,1]],[[0,2,0,1],[0,3,2,1],[2,3,4,2],[1,2,0,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,3],[1,2,0,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,2],[2,2,0,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,2],[1,3,0,1]],[[0,2,0,1],[0,3,2,1],[2,3,3,2],[1,2,0,2]],[[0,2,0,1],[0,3,2,1],[2,4,3,2],[1,2,1,0]],[[0,2,0,1],[0,3,2,1],[2,3,4,2],[1,2,1,0]],[[0,2,0,1],[0,3,2,1],[2,3,3,3],[1,2,1,0]],[[0,2,0,1],[0,3,2,1],[2,3,3,2],[2,2,1,0]],[[0,2,0,1],[0,3,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[1,3,1,1]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[2,2,1,1]],[[1,2,2,1],[2,1,1,2],[2,2,0,3],[1,2,1,1]],[[1,2,2,1],[2,1,1,2],[3,2,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,3],[2,2,0,2],[1,2,1,1]],[[1,2,2,1],[3,1,1,2],[2,2,0,2],[1,2,1,1]],[[1,2,2,2],[2,1,1,2],[2,2,0,2],[1,2,1,1]],[[0,2,0,1],[0,3,2,3],[0,2,3,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[0,2,3,3],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[0,2,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,2,2],[0,2,3,2],[1,2,2,2]],[[0,2,0,2],[0,3,2,2],[0,3,2,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,3],[0,3,2,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[0,3,2,3],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[0,3,2,2],[1,3,2,1]],[[0,2,0,1],[0,3,2,2],[0,3,2,2],[1,2,3,1]],[[0,2,0,1],[0,3,2,2],[0,3,2,2],[1,2,2,2]],[[0,2,0,1],[0,3,2,2],[0,3,4,1],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[0,3,3,1],[1,3,2,1]],[[0,2,0,1],[0,3,2,2],[0,3,3,1],[1,2,3,1]],[[0,2,0,1],[0,3,2,2],[0,3,3,1],[1,2,2,2]],[[0,2,0,2],[0,3,2,2],[0,3,3,2],[1,2,1,1]],[[0,2,0,1],[0,3,2,3],[0,3,3,2],[1,2,1,1]],[[0,2,0,1],[0,3,2,2],[0,3,4,2],[1,2,1,1]],[[0,2,0,1],[0,3,2,2],[0,3,3,3],[1,2,1,1]],[[0,2,0,1],[0,3,2,2],[0,3,3,2],[1,2,1,2]],[[0,2,0,2],[0,3,2,2],[0,3,3,2],[1,2,2,0]],[[0,2,0,1],[0,3,2,3],[0,3,3,2],[1,2,2,0]],[[0,2,0,1],[0,3,2,2],[0,3,4,2],[1,2,2,0]],[[0,2,0,1],[0,3,2,2],[0,3,3,3],[1,2,2,0]],[[0,2,0,1],[0,3,2,2],[0,3,3,2],[1,3,2,0]],[[0,2,0,1],[0,3,2,2],[0,3,3,2],[1,2,3,0]],[[0,2,0,1],[0,3,2,3],[1,1,3,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,1,3,3],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,1,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,2,2],[1,1,3,2],[1,2,2,2]],[[0,2,0,2],[0,3,2,2],[1,2,2,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,3],[1,2,2,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,2,2,3],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,2,2,2],[2,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,2,2,2],[1,3,2,1]],[[0,2,0,1],[0,3,2,2],[1,2,2,2],[1,2,3,1]],[[0,2,0,1],[0,3,2,2],[1,2,2,2],[1,2,2,2]],[[0,2,0,1],[0,3,2,2],[1,2,4,1],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,2,3,1],[2,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,2,3,1],[1,3,2,1]],[[0,2,0,1],[0,3,2,2],[1,2,3,1],[1,2,3,1]],[[0,2,0,1],[0,3,2,2],[1,2,3,1],[1,2,2,2]],[[0,2,0,2],[0,3,2,2],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[0,3,2,3],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[0,3,2,2],[1,2,4,2],[1,2,1,1]],[[0,2,0,1],[0,3,2,2],[1,2,3,3],[1,2,1,1]],[[0,2,0,1],[0,3,2,2],[1,2,3,2],[1,2,1,2]],[[0,2,0,2],[0,3,2,2],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[0,3,2,3],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[0,3,2,2],[1,2,4,2],[1,2,2,0]],[[0,2,0,1],[0,3,2,2],[1,2,3,3],[1,2,2,0]],[[0,2,0,1],[0,3,2,2],[1,2,3,2],[2,2,2,0]],[[0,2,0,1],[0,3,2,2],[1,2,3,2],[1,3,2,0]],[[0,2,0,1],[0,3,2,2],[1,2,3,2],[1,2,3,0]],[[0,2,0,2],[0,3,2,2],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,3],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,1,3],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[0,3,2,2],[1,3,1,2],[1,2,2,2]],[[0,2,0,1],[0,3,2,2],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[0,3,2,2],[1,3,2,1],[1,2,2,2]],[[0,2,0,2],[0,3,2,2],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[0,3,2,3],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,2,3],[1,1,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,2,2],[1,1,3,1]],[[0,2,0,1],[0,3,2,2],[1,3,2,2],[1,1,2,2]],[[0,2,0,1],[0,3,2,2],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[0,3,2,2],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[0,3,2,2],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[0,3,2,2],[1,3,2,2],[1,2,3,0]],[[0,2,0,1],[0,3,2,2],[1,4,3,1],[1,1,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,4,1],[1,1,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,1],[1,1,3,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,1],[1,1,2,2]],[[0,2,0,1],[0,3,2,2],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[0,3,2,2],[1,3,4,1],[1,2,1,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,1],[1,3,1,1]],[[0,2,0,2],[0,3,2,2],[1,3,3,2],[1,0,2,1]],[[0,2,0,1],[0,3,2,3],[1,3,3,2],[1,0,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,4,2],[1,0,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,3],[1,0,2,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,2],[1,0,2,2]],[[0,2,0,2],[0,3,2,2],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[0,3,2,3],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[0,3,2,2],[1,4,3,2],[1,1,1,1]],[[0,2,0,1],[0,3,2,2],[1,3,4,2],[1,1,1,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,3],[1,1,1,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,2],[1,1,1,2]],[[0,2,0,2],[0,3,2,2],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[0,3,2,3],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[0,3,2,2],[1,4,3,2],[1,1,2,0]],[[0,2,0,1],[0,3,2,2],[1,3,4,2],[1,1,2,0]],[[0,2,0,1],[0,3,2,2],[1,3,3,3],[1,1,2,0]],[[0,2,0,1],[0,3,2,2],[1,3,3,2],[1,1,3,0]],[[0,2,0,2],[0,3,2,2],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[0,3,2,3],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[0,3,2,2],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[0,3,2,2],[1,3,4,2],[1,2,0,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,3],[1,2,0,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[0,3,2,2],[1,3,3,2],[1,2,0,2]],[[0,2,0,2],[0,3,2,2],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[0,3,2,3],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[0,3,2,2],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[0,3,2,2],[1,3,4,2],[1,2,1,0]],[[0,2,0,1],[0,3,2,2],[1,3,3,3],[1,2,1,0]],[[0,2,0,1],[0,3,2,2],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[0,3,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,3,1],[2,1,1,2],[2,2,0,2],[1,2,1,1]],[[1,3,2,1],[2,1,1,2],[2,2,0,2],[1,2,1,1]],[[2,2,2,1],[2,1,1,2],[2,2,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[1,1,2,2]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[1,1,3,1]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[2,1,1,2],[2,2,0,3],[1,1,2,1]],[[1,2,2,1],[2,1,1,2],[3,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,1,3],[2,2,0,2],[1,1,2,1]],[[0,2,0,1],[0,3,2,3],[2,1,3,2],[0,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,1,3,3],[0,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,1,3,2],[0,2,3,1]],[[0,2,0,1],[0,3,2,2],[2,1,3,2],[0,2,2,2]],[[0,2,0,2],[0,3,2,2],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[0,3,2,3],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,2,2,3],[0,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,2,2,2],[0,3,2,1]],[[0,2,0,1],[0,3,2,2],[2,2,2,2],[0,2,3,1]],[[0,2,0,1],[0,3,2,2],[2,2,2,2],[0,2,2,2]],[[0,2,0,1],[0,3,2,2],[2,2,4,0],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,2,3,0],[2,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,2,3,0],[1,3,2,1]],[[0,2,0,1],[0,3,2,2],[2,2,3,0],[1,2,3,1]],[[0,2,0,1],[0,3,2,2],[2,2,3,0],[1,2,2,2]],[[0,2,0,1],[0,3,2,2],[2,2,4,1],[0,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,2,3,1],[0,3,2,1]],[[0,2,0,1],[0,3,2,2],[2,2,3,1],[0,2,3,1]],[[0,2,0,1],[0,3,2,2],[2,2,3,1],[0,2,2,2]],[[0,2,0,1],[0,3,2,2],[2,2,4,1],[1,2,2,0]],[[0,2,0,1],[0,3,2,2],[2,2,3,1],[2,2,2,0]],[[0,2,0,1],[0,3,2,2],[2,2,3,1],[1,3,2,0]],[[0,2,0,1],[0,3,2,2],[2,2,3,1],[1,2,3,0]],[[0,2,0,2],[0,3,2,2],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[0,3,2,3],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[0,3,2,2],[2,2,4,2],[0,2,1,1]],[[0,2,0,1],[0,3,2,2],[2,2,3,3],[0,2,1,1]],[[0,2,0,1],[0,3,2,2],[2,2,3,2],[0,2,1,2]],[[0,2,0,2],[0,3,2,2],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[0,3,2,3],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[0,3,2,2],[2,2,4,2],[0,2,2,0]],[[0,2,0,1],[0,3,2,2],[2,2,3,3],[0,2,2,0]],[[0,2,0,1],[0,3,2,2],[2,2,3,2],[0,3,2,0]],[[0,2,0,1],[0,3,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[3,1,1,2],[2,2,0,2],[1,1,2,1]],[[1,2,2,2],[2,1,1,2],[2,2,0,2],[1,1,2,1]],[[1,2,3,1],[2,1,1,2],[2,2,0,2],[1,1,2,1]],[[1,3,2,1],[2,1,1,2],[2,2,0,2],[1,1,2,1]],[[2,2,2,1],[2,1,1,2],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[0,2,2,2]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[0,2,3,1]],[[1,2,2,1],[2,1,1,2],[2,2,0,2],[0,3,2,1]],[[0,2,0,2],[0,3,2,2],[2,3,0,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,3],[2,3,0,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,4,0,2],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,0,3],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,0,2],[2,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,0,2],[1,3,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,0,2],[1,2,3,1]],[[0,2,0,1],[0,3,2,2],[2,3,0,2],[1,2,2,2]],[[0,2,0,2],[0,3,2,2],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[0,3,2,3],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,1,3],[0,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[0,3,2,2],[2,3,1,2],[0,2,2,2]],[[0,2,0,1],[0,3,2,2],[2,4,2,0],[1,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,0],[2,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,0],[1,3,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,0],[1,2,3,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,0],[1,2,2,2]],[[0,2,0,1],[0,3,2,2],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,1],[0,2,2,2]],[[0,2,0,1],[0,3,2,2],[2,4,2,1],[1,2,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,2,1],[2,2,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,2,1],[1,3,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,2,1],[1,2,3,0]],[[0,2,0,2],[0,3,2,2],[2,3,2,2],[0,1,2,1]],[[0,2,0,1],[0,3,2,3],[2,3,2,2],[0,1,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,3],[0,1,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,2],[0,1,3,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,2],[0,1,2,2]],[[0,2,0,1],[0,3,2,2],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,2,2],[0,2,3,0]],[[0,2,0,2],[0,3,2,2],[2,3,2,2],[1,0,2,1]],[[0,2,0,1],[0,3,2,3],[2,3,2,2],[1,0,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,3],[1,0,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,2],[1,0,3,1]],[[0,2,0,1],[0,3,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,1,2],[2,2,0,3],[0,2,2,1]],[[1,2,2,1],[2,1,1,2],[3,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,1,3],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[3,1,1,2],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,1,2],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,1,2],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,1,1,2],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[0,3,2,2],[2,4,3,0],[1,1,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,4,0],[1,1,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,0],[1,1,3,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,0],[1,1,2,2]],[[0,2,0,1],[0,3,2,2],[2,4,3,0],[1,2,1,1]],[[0,2,0,1],[0,3,2,2],[2,3,4,0],[1,2,1,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,0],[2,2,1,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,0],[1,3,1,1]],[[0,2,0,1],[0,3,2,2],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,4,1],[0,1,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,1],[0,1,3,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,1],[0,1,2,2]],[[0,2,0,1],[0,3,2,2],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[0,3,2,2],[2,3,4,1],[0,2,1,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,1],[0,3,1,1]],[[0,2,0,1],[0,3,2,2],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,4,1],[1,0,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,1],[1,0,3,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,1],[1,0,2,2]],[[0,2,0,1],[0,3,2,2],[2,4,3,1],[1,1,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,4,1],[1,1,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,3,1],[1,1,3,0]],[[0,2,0,1],[0,3,2,2],[2,4,3,1],[1,2,0,1]],[[0,2,0,1],[0,3,2,2],[2,3,4,1],[1,2,0,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,1],[2,2,0,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,1],[1,3,0,1]],[[0,2,0,1],[0,3,2,2],[2,4,3,1],[1,2,1,0]],[[0,2,0,1],[0,3,2,2],[2,3,4,1],[1,2,1,0]],[[0,2,0,1],[0,3,2,2],[2,3,3,1],[2,2,1,0]],[[0,2,0,1],[0,3,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,2,0,1],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[2,2,0,1],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[2,2,0,1],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[2,2,0,1],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[3,2,0,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,3],[2,2,0,1],[1,2,2,1]],[[0,2,0,2],[0,3,2,2],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[0,3,2,3],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,4,2],[0,0,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,3],[0,0,2,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,2],[0,0,2,2]],[[0,2,0,2],[0,3,2,2],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[0,3,2,3],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[0,3,2,2],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[0,3,2,2],[2,3,4,2],[0,1,1,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,3],[0,1,1,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,2],[0,1,1,2]],[[0,2,0,2],[0,3,2,2],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[0,3,2,3],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[0,3,2,2],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,4,2],[0,1,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,3,3],[0,1,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,3,2],[0,1,3,0]],[[0,2,0,2],[0,3,2,2],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[0,3,2,3],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[0,3,2,2],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[0,3,2,2],[2,3,4,2],[0,2,0,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,3],[0,2,0,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,2],[0,2,0,2]],[[0,2,0,2],[0,3,2,2],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[0,3,2,3],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[0,3,2,2],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[0,3,2,2],[2,3,4,2],[0,2,1,0]],[[0,2,0,1],[0,3,2,2],[2,3,3,3],[0,2,1,0]],[[0,2,0,1],[0,3,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,1,1,2],[2,2,0,1],[1,2,2,1]],[[1,2,2,2],[2,1,1,2],[2,2,0,1],[1,2,2,1]],[[1,2,3,1],[2,1,1,2],[2,2,0,1],[1,2,2,1]],[[1,3,2,1],[2,1,1,2],[2,2,0,1],[1,2,2,1]],[[2,2,2,1],[2,1,1,2],[2,2,0,1],[1,2,2,1]],[[0,2,0,2],[0,3,2,2],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[0,3,2,3],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[0,3,2,2],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[0,3,2,2],[2,3,4,2],[1,0,1,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,3],[1,0,1,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,2],[1,0,1,2]],[[0,2,0,2],[0,3,2,2],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[0,3,2,3],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[0,3,2,2],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,4,2],[1,0,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,3,3],[1,0,2,0]],[[0,2,0,1],[0,3,2,2],[2,3,3,2],[1,0,3,0]],[[0,2,0,2],[0,3,2,2],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[0,3,2,3],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[0,3,2,2],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[0,3,2,2],[2,3,4,2],[1,1,0,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,3],[1,1,0,1]],[[0,2,0,1],[0,3,2,2],[2,3,3,2],[1,1,0,2]],[[0,2,0,2],[0,3,2,2],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[0,3,2,3],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[0,3,2,2],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[0,3,2,2],[2,3,4,2],[1,1,1,0]],[[0,2,0,1],[0,3,2,2],[2,3,3,3],[1,1,1,0]],[[0,2,0,1],[0,3,3,0],[0,3,4,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,0],[0,3,3,2],[1,3,2,1]],[[0,2,0,1],[0,3,3,0],[0,3,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,0],[0,3,3,2],[1,2,2,2]],[[0,2,0,1],[0,3,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,0,1],[0,3,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,0,1],[0,3,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,0,1],[0,3,3,0],[1,4,2,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,0],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[0,3,3,0],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[0,3,3,0],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,0],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[0,3,3,0],[1,4,3,2],[1,1,2,1]],[[0,2,0,1],[0,3,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,0,1],[0,3,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,0,1],[0,3,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,0,1],[0,3,3,0],[1,4,3,2],[1,2,1,1]],[[0,2,0,1],[0,3,3,0],[1,3,4,2],[1,2,1,1]],[[0,2,0,1],[0,3,3,0],[1,3,3,2],[2,2,1,1]],[[0,2,0,1],[0,3,3,0],[1,3,3,2],[1,3,1,1]],[[0,2,0,1],[0,3,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,0,1],[0,3,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,0,1],[0,3,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,0,1],[0,3,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,0,1],[0,3,3,0],[2,4,2,2],[0,2,2,1]],[[0,2,0,1],[0,3,3,0],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[0,3,3,0],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[0,3,3,0],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[0,3,3,0],[2,4,3,2],[0,1,2,1]],[[0,2,0,1],[0,3,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,0,1],[0,3,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,0,1],[0,3,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,0,1],[0,3,3,0],[2,4,3,2],[0,2,1,1]],[[0,2,0,1],[0,3,3,0],[2,3,4,2],[0,2,1,1]],[[0,2,0,1],[0,3,3,0],[2,3,3,2],[0,3,1,1]],[[0,2,0,1],[0,3,3,0],[2,4,3,2],[1,0,2,1]],[[0,2,0,1],[0,3,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,0,1],[0,3,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,0,1],[0,3,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,0,1],[0,3,3,1],[0,2,3,3],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[0,2,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,1],[0,2,3,2],[1,2,2,2]],[[0,2,0,1],[0,3,3,1],[0,3,2,3],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[0,3,2,2],[1,3,2,1]],[[0,2,0,1],[0,3,3,1],[0,3,2,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,1],[0,3,2,2],[1,2,2,2]],[[0,2,0,1],[0,3,4,1],[0,3,3,1],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[0,3,4,1],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[0,3,3,1],[1,3,2,1]],[[0,2,0,1],[0,3,3,1],[0,3,3,1],[1,2,3,1]],[[0,2,0,1],[0,3,3,1],[0,3,3,1],[1,2,2,2]],[[0,2,0,1],[0,3,4,1],[0,3,3,2],[1,2,1,1]],[[0,2,0,1],[0,3,3,1],[0,3,4,2],[1,2,1,1]],[[0,2,0,1],[0,3,3,1],[0,3,3,3],[1,2,1,1]],[[0,2,0,1],[0,3,3,1],[0,3,3,2],[1,2,1,2]],[[0,2,0,1],[0,3,4,1],[0,3,3,2],[1,2,2,0]],[[0,2,0,1],[0,3,3,1],[0,3,4,2],[1,2,2,0]],[[0,2,0,1],[0,3,3,1],[0,3,3,3],[1,2,2,0]],[[0,2,0,1],[0,3,3,1],[0,3,3,2],[1,3,2,0]],[[0,2,0,1],[0,3,3,1],[0,3,3,2],[1,2,3,0]],[[0,2,0,1],[0,3,3,1],[1,1,3,3],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,1,3,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,1],[1,1,3,2],[1,2,2,2]],[[0,2,0,1],[0,3,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,0,1],[0,3,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,1],[1,2,2,2],[1,2,2,2]],[[0,2,0,1],[0,3,4,1],[1,2,3,1],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,0,1],[0,3,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,0,1],[0,3,3,1],[1,2,3,1],[1,2,2,2]],[[0,2,0,1],[0,3,4,1],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[0,3,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,0,1],[0,3,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,0,1],[0,3,3,1],[1,2,3,2],[1,2,1,2]],[[0,2,0,1],[0,3,4,1],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[0,3,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,0,1],[0,3,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,0,1],[0,3,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,0,1],[0,3,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,0,1],[0,3,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,0,1],[0,3,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,0,1],[0,3,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[0,3,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,0,1],[0,3,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,0,1],[0,3,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,0,1],[0,3,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[0,3,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[0,3,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[0,3,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,0,1],[0,3,3,1],[1,4,3,0],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,0],[2,2,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,0],[1,3,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,0],[1,2,3,1]],[[0,2,0,1],[0,3,4,1],[1,3,3,1],[1,1,2,1]],[[0,2,0,1],[0,3,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,1],[1,1,2,2]],[[0,2,0,1],[0,3,4,1],[1,3,3,1],[1,2,1,1]],[[0,2,0,1],[0,3,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[0,3,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,0,1],[0,3,4,1],[1,3,3,2],[1,0,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,4,2],[1,0,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,3],[1,0,2,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,2],[1,0,2,2]],[[0,2,0,1],[0,3,4,1],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[0,3,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,0,1],[0,3,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,2],[1,1,1,2]],[[0,2,0,1],[0,3,4,1],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[0,3,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,0,1],[0,3,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,0,1],[0,3,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,0,1],[0,3,3,1],[1,3,3,2],[1,1,3,0]],[[0,2,0,1],[0,3,4,1],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[0,3,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[0,3,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[0,3,3,1],[1,3,3,2],[1,2,0,2]],[[0,2,0,1],[0,3,4,1],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[0,3,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[0,3,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,0,1],[0,3,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,0,1],[0,3,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[0,3,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,2],[2,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,1,4,2],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[3,1,3,2],[1,1,1,0]],[[0,2,0,1],[0,3,3,1],[2,1,3,3],[0,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,1,3,2],[0,2,3,1]],[[0,2,0,1],[0,3,3,1],[2,1,3,2],[0,2,2,2]],[[0,2,0,1],[0,3,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,0,1],[0,3,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,0,1],[0,3,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,0,1],[0,3,4,1],[2,2,3,1],[0,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,0,1],[0,3,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,0,1],[0,3,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,0,1],[0,3,4,1],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[0,3,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,0,1],[0,3,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,0,1],[0,3,3,1],[2,2,3,2],[0,2,1,2]],[[0,2,0,1],[0,3,4,1],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[0,3,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,0,1],[0,3,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,0,1],[0,3,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,0,1],[0,3,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,1,3],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[3,1,1,2],[2,1,3,2],[1,1,1,0]],[[1,2,2,2],[2,1,1,2],[2,1,3,2],[1,1,1,0]],[[1,2,3,1],[2,1,1,2],[2,1,3,2],[1,1,1,0]],[[1,3,2,1],[2,1,1,2],[2,1,3,2],[1,1,1,0]],[[2,2,2,1],[2,1,1,2],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,2],[1,1,0,2]],[[0,2,0,1],[0,3,3,1],[2,4,0,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,0,3],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,0,2],[2,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,0,2],[1,3,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,0,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,1],[2,3,0,2],[1,2,2,2]],[[0,2,0,1],[0,3,3,1],[2,4,1,1],[1,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,1,1],[2,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,1,1],[1,3,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,1,1],[1,2,3,1]],[[0,2,0,1],[0,3,3,1],[2,3,1,1],[1,2,2,2]],[[0,2,0,1],[0,3,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[0,3,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,0,1],[0,3,3,1],[2,4,1,2],[1,2,2,0]],[[0,2,0,1],[0,3,3,1],[2,3,1,2],[2,2,2,0]],[[0,2,0,1],[0,3,3,1],[2,3,1,2],[1,3,2,0]],[[0,2,0,1],[0,3,3,1],[2,3,1,2],[1,2,3,0]],[[0,2,0,1],[0,3,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,0,1],[0,3,3,1],[2,4,2,1],[1,2,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,1],[2,2,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,1],[1,3,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,0,1],[0,3,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[0,3,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[0,3,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,0,1],[0,3,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,0,1],[0,3,3,1],[2,4,2,2],[1,2,0,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,2],[2,2,0,1]],[[0,2,0,1],[0,3,3,1],[2,3,2,2],[1,3,0,1]],[[0,2,0,1],[0,3,3,1],[2,4,2,2],[1,2,1,0]],[[0,2,0,1],[0,3,3,1],[2,3,2,2],[2,2,1,0]],[[0,2,0,1],[0,3,3,1],[2,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,2],[2,1,0,1]],[[1,2,2,1],[2,1,1,2],[2,1,3,3],[1,1,0,1]],[[1,2,2,1],[2,1,1,2],[2,1,4,2],[1,1,0,1]],[[1,2,2,1],[2,1,1,2],[3,1,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,1,3],[2,1,3,2],[1,1,0,1]],[[1,2,2,1],[3,1,1,2],[2,1,3,2],[1,1,0,1]],[[0,2,0,1],[0,3,3,1],[2,4,3,0],[0,2,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,0],[0,3,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,0],[0,2,3,1]],[[0,2,0,1],[0,3,4,1],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[0,3,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,1],[0,1,2,2]],[[0,2,0,1],[0,3,4,1],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[0,3,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,1],[0,3,1,1]],[[0,2,0,1],[0,3,4,1],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[0,3,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,1],[1,0,2,2]],[[0,2,0,1],[0,3,4,1],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[0,3,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,2,2],[2,1,1,2],[2,1,3,2],[1,1,0,1]],[[1,2,3,1],[2,1,1,2],[2,1,3,2],[1,1,0,1]],[[1,3,2,1],[2,1,1,2],[2,1,3,2],[1,1,0,1]],[[2,2,2,1],[2,1,1,2],[2,1,3,2],[1,1,0,1]],[[0,2,0,1],[0,3,4,1],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,2],[0,0,2,2]],[[0,2,0,1],[0,3,4,1],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[0,3,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,2],[0,1,1,2]],[[0,2,0,1],[0,3,4,1],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[0,3,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[0,3,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,0,1],[0,3,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,0,1],[0,3,3,1],[2,3,3,2],[0,1,3,0]],[[0,2,0,1],[0,3,4,1],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[0,3,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[0,3,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,2],[0,2,0,2]],[[0,2,0,1],[0,3,4,1],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[0,3,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[0,3,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,0,1],[0,3,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,0,1],[0,3,3,1],[2,3,3,2],[0,3,1,0]],[[0,2,0,1],[0,3,4,1],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[0,3,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,2],[1,0,1,2]],[[0,2,0,1],[0,3,4,1],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[0,3,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[0,3,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,0,1],[0,3,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,0,1],[0,3,3,1],[2,3,3,2],[1,0,3,0]],[[0,2,0,1],[0,3,4,1],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[0,3,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[0,3,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,0,1],[0,3,3,1],[2,3,3,2],[1,1,0,2]],[[0,2,0,1],[0,3,4,1],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[0,3,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[0,3,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,0,1],[0,3,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,2],[1,0,3,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,2],[2,0,2,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,1,2],[2,1,4,2],[1,0,2,0]],[[1,2,2,1],[2,1,1,2],[3,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,1,3],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[3,1,1,2],[2,1,3,2],[1,0,2,0]],[[1,2,2,2],[2,1,1,2],[2,1,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,1,2],[2,1,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,1,2],[2,1,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,1,2],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,2],[1,0,1,2]],[[1,2,2,1],[2,1,1,2],[2,1,3,2],[2,0,1,1]],[[1,2,2,1],[2,1,1,2],[2,1,3,3],[1,0,1,1]],[[1,2,2,1],[2,1,1,2],[2,1,4,2],[1,0,1,1]],[[1,2,2,1],[2,1,1,2],[3,1,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,1,3],[2,1,3,2],[1,0,1,1]],[[1,2,2,1],[3,1,1,2],[2,1,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,1,2],[2,1,3,2],[1,0,1,1]],[[1,2,3,1],[2,1,1,2],[2,1,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,1,2],[2,1,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,1,2],[2,1,3,2],[1,0,1,1]],[[0,2,0,2],[0,3,3,2],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,4,2],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,3],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[0,3,1,3],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[0,3,1,2],[1,3,2,1]],[[0,2,0,1],[0,3,3,2],[0,3,1,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,2],[0,3,1,2],[1,2,2,2]],[[0,2,0,2],[0,3,3,2],[0,3,2,2],[1,2,1,1]],[[0,2,0,1],[0,3,4,2],[0,3,2,2],[1,2,1,1]],[[0,2,0,1],[0,3,3,3],[0,3,2,2],[1,2,1,1]],[[0,2,0,1],[0,3,3,2],[0,3,2,3],[1,2,1,1]],[[0,2,0,1],[0,3,3,2],[0,3,2,2],[1,2,1,2]],[[0,2,0,2],[0,3,3,2],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[0,3,4,2],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[0,3,3,3],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[0,3,3,2],[0,3,2,3],[1,2,2,0]],[[0,2,0,2],[0,3,3,2],[0,3,3,0],[1,2,2,1]],[[0,2,0,1],[0,3,4,2],[0,3,3,0],[1,2,2,1]],[[0,2,0,1],[0,3,3,3],[0,3,3,0],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[0,3,4,0],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[0,3,3,0],[1,3,2,1]],[[0,2,0,1],[0,3,3,2],[0,3,3,0],[1,2,3,1]],[[0,2,0,1],[0,3,3,2],[0,3,3,0],[1,2,2,2]],[[0,2,0,2],[0,3,3,2],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[0,3,4,2],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[0,3,3,3],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[0,3,3,2],[0,3,4,1],[1,2,1,1]],[[0,2,0,2],[0,3,3,2],[0,3,3,1],[1,2,2,0]],[[0,2,0,1],[0,3,4,2],[0,3,3,1],[1,2,2,0]],[[0,2,0,1],[0,3,3,3],[0,3,3,1],[1,2,2,0]],[[0,2,0,1],[0,3,3,2],[0,3,4,1],[1,2,2,0]],[[0,2,0,1],[0,3,3,2],[0,3,3,1],[1,3,2,0]],[[0,2,0,1],[0,3,3,2],[0,3,3,1],[1,2,3,0]],[[0,2,0,2],[0,3,3,2],[1,2,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,4,2],[1,2,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,3],[1,2,1,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,2,1,3],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,2,1,2],[2,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,2,1,2],[1,3,2,1]],[[0,2,0,1],[0,3,3,2],[1,2,1,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,2],[1,2,1,2],[1,2,2,2]],[[0,2,0,2],[0,3,3,2],[1,2,2,2],[1,2,1,1]],[[0,2,0,1],[0,3,4,2],[1,2,2,2],[1,2,1,1]],[[0,2,0,1],[0,3,3,3],[1,2,2,2],[1,2,1,1]],[[0,2,0,1],[0,3,3,2],[1,2,2,3],[1,2,1,1]],[[0,2,0,1],[0,3,3,2],[1,2,2,2],[1,2,1,2]],[[0,2,0,2],[0,3,3,2],[1,2,2,2],[1,2,2,0]],[[0,2,0,1],[0,3,4,2],[1,2,2,2],[1,2,2,0]],[[0,2,0,1],[0,3,3,3],[1,2,2,2],[1,2,2,0]],[[0,2,0,1],[0,3,3,2],[1,2,2,3],[1,2,2,0]],[[0,2,0,2],[0,3,3,2],[1,2,3,0],[1,2,2,1]],[[0,2,0,1],[0,3,4,2],[1,2,3,0],[1,2,2,1]],[[0,2,0,1],[0,3,3,3],[1,2,3,0],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,0,1],[0,3,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,0,1],[0,3,3,2],[1,2,3,0],[1,2,2,2]],[[0,2,0,2],[0,3,3,2],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[0,3,4,2],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[0,3,3,3],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[0,3,3,2],[1,2,4,1],[1,2,1,1]],[[0,2,0,2],[0,3,3,2],[1,2,3,1],[1,2,2,0]],[[0,2,0,1],[0,3,4,2],[1,2,3,1],[1,2,2,0]],[[0,2,0,1],[0,3,3,3],[1,2,3,1],[1,2,2,0]],[[0,2,0,1],[0,3,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,0,1],[0,3,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,0,1],[0,3,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,0,1],[0,3,3,2],[1,2,3,1],[1,2,3,0]],[[0,2,0,2],[0,3,3,2],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[0,3,4,2],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,3],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,4,0,2],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,0,3],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,0,2],[2,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,0,2],[1,3,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,0,2],[1,2,3,1]],[[0,2,0,1],[0,3,3,2],[1,3,0,2],[1,2,2,2]],[[0,2,0,2],[0,3,3,2],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[0,3,4,2],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[0,3,3,3],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,1,3],[1,1,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,1,2],[1,1,3,1]],[[0,2,0,1],[0,3,3,2],[1,3,1,2],[1,1,2,2]],[[0,2,0,1],[0,3,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,0,1],[0,3,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,0,1],[0,3,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,0,1],[0,3,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,0,1],[0,3,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,0,1],[0,3,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,0,2],[0,3,3,2],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[0,3,4,2],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[0,3,3,3],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,2,3],[1,0,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,2,2],[1,0,2,2]],[[0,2,0,2],[0,3,3,2],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[0,3,4,2],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[0,3,3,3],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[0,3,3,2],[1,3,2,3],[1,1,1,1]],[[0,2,0,1],[0,3,3,2],[1,3,2,2],[1,1,1,2]],[[0,2,0,2],[0,3,3,2],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[0,3,4,2],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[0,3,3,3],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[0,3,3,2],[1,3,2,3],[1,1,2,0]],[[0,2,0,2],[0,3,3,2],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[0,3,4,2],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[0,3,3,3],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[0,3,3,2],[1,3,2,3],[1,2,0,1]],[[0,2,0,1],[0,3,3,2],[1,3,2,2],[1,2,0,2]],[[0,2,0,2],[0,3,3,2],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[0,3,4,2],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[0,3,3,3],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[0,3,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[2,1,4,2],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[3,1,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,1,3],[2,1,3,2],[0,2,1,0]],[[1,2,2,1],[3,1,1,2],[2,1,3,2],[0,2,1,0]],[[1,2,2,2],[2,1,1,2],[2,1,3,2],[0,2,1,0]],[[1,2,3,1],[2,1,1,2],[2,1,3,2],[0,2,1,0]],[[1,3,2,1],[2,1,1,2],[2,1,3,2],[0,2,1,0]],[[2,2,2,1],[2,1,1,2],[2,1,3,2],[0,2,1,0]],[[0,2,0,2],[0,3,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[0,3,4,2],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[0,3,3,3],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[0,3,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,0,1],[0,3,3,2],[1,3,3,0],[1,1,2,2]],[[0,2,0,2],[0,3,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,0,1],[0,3,4,2],[1,3,3,0],[1,2,1,1]],[[0,2,0,1],[0,3,3,3],[1,3,3,0],[1,2,1,1]],[[0,2,0,1],[0,3,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,0,1],[0,3,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,0,1],[0,3,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,0,1],[0,3,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,0,2],[0,3,3,2],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[0,3,4,2],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[0,3,3,3],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[0,3,3,2],[1,3,4,1],[1,0,2,1]],[[0,2,0,2],[0,3,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[0,3,4,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[0,3,3,3],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[0,3,3,2],[1,4,3,1],[1,1,1,1]],[[0,2,0,1],[0,3,3,2],[1,3,4,1],[1,1,1,1]],[[0,2,0,2],[0,3,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,0,1],[0,3,4,2],[1,3,3,1],[1,1,2,0]],[[0,2,0,1],[0,3,3,3],[1,3,3,1],[1,1,2,0]],[[0,2,0,1],[0,3,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,0,1],[0,3,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,0,1],[0,3,3,2],[1,3,3,1],[1,1,3,0]],[[0,2,0,2],[0,3,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[0,3,4,2],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[0,3,3,3],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[0,3,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,0,1],[0,3,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,0,1],[0,3,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,0,1],[0,3,3,2],[1,3,3,1],[1,3,0,1]],[[0,2,0,2],[0,3,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,0,1],[0,3,4,2],[1,3,3,1],[1,2,1,0]],[[0,2,0,1],[0,3,3,3],[1,3,3,1],[1,2,1,0]],[[0,2,0,1],[0,3,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,0,1],[0,3,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,0,1],[0,3,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,0,1],[0,3,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,2],[0,2,0,2]],[[1,2,2,1],[2,1,1,2],[2,1,3,3],[0,2,0,1]],[[1,2,2,1],[2,1,1,2],[2,1,4,2],[0,2,0,1]],[[1,2,2,1],[2,1,1,2],[3,1,3,2],[0,2,0,1]],[[1,2,2,1],[2,1,1,3],[2,1,3,2],[0,2,0,1]],[[1,2,2,1],[3,1,1,2],[2,1,3,2],[0,2,0,1]],[[1,2,2,2],[2,1,1,2],[2,1,3,2],[0,2,0,1]],[[1,2,3,1],[2,1,1,2],[2,1,3,2],[0,2,0,1]],[[1,3,2,1],[2,1,1,2],[2,1,3,2],[0,2,0,1]],[[0,2,0,2],[0,3,3,2],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[0,3,4,2],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[0,3,3,3],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[0,3,3,2],[1,3,3,3],[1,1,0,1]],[[2,2,2,1],[2,1,1,2],[2,1,3,2],[0,2,0,1]],[[1,2,2,1],[2,1,1,2],[2,1,3,2],[0,1,3,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,1,4,2],[0,1,2,0]],[[1,2,2,1],[2,1,1,2],[3,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,1,3],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[3,1,1,2],[2,1,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,1,2],[2,1,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,1,2],[2,1,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,1,2],[2,1,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,1,2],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,2],[0,1,1,2]],[[1,2,2,1],[2,1,1,2],[2,1,3,3],[0,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,1,4,2],[0,1,1,1]],[[1,2,2,1],[2,1,1,2],[3,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,1,3],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[3,1,1,2],[2,1,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,1,2],[2,1,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,1,2],[2,1,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,1,2],[2,1,3,2],[0,1,1,1]],[[2,2,2,1],[2,1,1,2],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,1,3,2],[0,0,2,2]],[[1,2,2,1],[2,1,1,2],[2,1,3,3],[0,0,2,1]],[[1,2,2,1],[2,1,1,2],[2,1,4,2],[0,0,2,1]],[[1,2,2,1],[2,1,1,3],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[3,1,1,2],[2,1,3,2],[0,0,2,1]],[[1,2,2,2],[2,1,1,2],[2,1,3,2],[0,0,2,1]],[[1,2,3,1],[2,1,1,2],[2,1,3,2],[0,0,2,1]],[[1,3,2,1],[2,1,1,2],[2,1,3,2],[0,0,2,1]],[[0,2,0,2],[0,3,3,2],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[0,3,4,2],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[0,3,3,3],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,2,1,3],[0,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,2,1,2],[0,3,2,1]],[[0,2,0,1],[0,3,3,2],[2,2,1,2],[0,2,3,1]],[[0,2,0,1],[0,3,3,2],[2,2,1,2],[0,2,2,2]],[[0,2,0,2],[0,3,3,2],[2,2,2,2],[0,2,1,1]],[[0,2,0,1],[0,3,4,2],[2,2,2,2],[0,2,1,1]],[[0,2,0,1],[0,3,3,3],[2,2,2,2],[0,2,1,1]],[[0,2,0,1],[0,3,3,2],[2,2,2,3],[0,2,1,1]],[[0,2,0,1],[0,3,3,2],[2,2,2,2],[0,2,1,2]],[[0,2,0,2],[0,3,3,2],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[0,3,4,2],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[0,3,3,3],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[0,3,3,2],[2,2,2,3],[0,2,2,0]],[[2,2,2,1],[2,1,1,2],[2,1,3,2],[0,0,2,1]],[[0,2,0,2],[0,3,3,2],[2,2,3,0],[0,2,2,1]],[[0,2,0,1],[0,3,4,2],[2,2,3,0],[0,2,2,1]],[[0,2,0,1],[0,3,3,3],[2,2,3,0],[0,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,0,1],[0,3,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,0,1],[0,3,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,0,2],[0,3,3,2],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[0,3,4,2],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[0,3,3,3],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[0,3,3,2],[2,2,4,1],[0,2,1,1]],[[0,2,0,2],[0,3,3,2],[2,2,3,1],[0,2,2,0]],[[0,2,0,1],[0,3,4,2],[2,2,3,1],[0,2,2,0]],[[0,2,0,1],[0,3,3,3],[2,2,3,1],[0,2,2,0]],[[0,2,0,1],[0,3,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,0,1],[0,3,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,0,1],[0,3,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,1,3,1],[1,0,2,2]],[[1,2,2,1],[2,1,1,2],[2,1,3,1],[1,0,3,1]],[[1,2,2,1],[2,1,1,2],[2,1,4,1],[1,0,2,1]],[[1,2,2,1],[2,1,1,2],[2,1,3,1],[0,1,2,2]],[[1,2,2,1],[2,1,1,2],[2,1,3,1],[0,1,3,1]],[[1,2,2,1],[2,1,1,2],[2,1,4,1],[0,1,2,1]],[[0,2,0,1],[0,3,3,2],[2,4,0,1],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,0,1],[2,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,0,1],[1,3,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,0,1],[1,2,3,1]],[[0,2,0,1],[0,3,3,2],[2,3,0,1],[1,2,2,2]],[[0,2,0,2],[0,3,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[0,3,4,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[0,3,3,3],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,4,0,2],[0,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,0,3],[0,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,0,2],[0,3,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,0,2],[0,2,3,1]],[[0,2,0,1],[0,3,3,2],[2,3,0,2],[0,2,2,2]],[[0,2,0,1],[0,3,3,2],[2,4,0,2],[1,2,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,0,2],[2,2,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,0,2],[1,3,1,1]],[[0,2,0,1],[0,3,3,2],[2,4,0,2],[1,2,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,0,2],[2,2,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,0,2],[1,3,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,0,2],[1,2,3,0]],[[0,2,0,1],[0,3,3,2],[2,4,1,0],[1,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,0],[2,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,0],[1,3,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,0],[1,2,3,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,0],[1,2,2,2]],[[0,2,0,1],[0,3,3,2],[2,4,1,1],[1,2,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,1,1],[2,2,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,1,1],[1,3,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,1,1],[1,2,3,0]],[[0,2,0,2],[0,3,3,2],[2,3,1,2],[0,1,2,1]],[[0,2,0,1],[0,3,4,2],[2,3,1,2],[0,1,2,1]],[[0,2,0,1],[0,3,3,3],[2,3,1,2],[0,1,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,3],[0,1,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,2],[0,1,3,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,2],[0,1,2,2]],[[0,2,0,2],[0,3,3,2],[2,3,1,2],[1,0,2,1]],[[0,2,0,1],[0,3,4,2],[2,3,1,2],[1,0,2,1]],[[0,2,0,1],[0,3,3,3],[2,3,1,2],[1,0,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,2],[1,0,3,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,2],[1,0,2,2]],[[0,2,0,1],[0,3,3,2],[2,4,1,2],[1,2,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,2],[2,2,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,1,2],[1,3,0,1]],[[0,2,0,1],[0,3,3,2],[2,4,1,2],[1,2,1,0]],[[0,2,0,1],[0,3,3,2],[2,3,1,2],[2,2,1,0]],[[0,2,0,1],[0,3,3,2],[2,3,1,2],[1,3,1,0]],[[0,2,0,1],[0,3,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,0,1],[0,3,3,2],[2,4,2,0],[1,2,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,0],[2,2,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,0],[1,3,1,1]],[[0,2,0,1],[0,3,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,0,1],[0,3,3,2],[2,4,2,1],[1,2,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,1],[2,2,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,1],[1,3,0,1]],[[0,2,0,1],[0,3,3,2],[2,4,2,1],[1,2,1,0]],[[0,2,0,1],[0,3,3,2],[2,3,2,1],[2,2,1,0]],[[0,2,0,1],[0,3,3,2],[2,3,2,1],[1,3,1,0]],[[0,2,0,2],[0,3,3,2],[2,3,2,2],[0,0,2,1]],[[0,2,0,1],[0,3,4,2],[2,3,2,2],[0,0,2,1]],[[0,2,0,1],[0,3,3,3],[2,3,2,2],[0,0,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,3],[0,0,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,2],[0,0,2,2]],[[0,2,0,2],[0,3,3,2],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[0,3,4,2],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[0,3,3,3],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,3],[0,1,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,2],[0,1,1,2]],[[0,2,0,2],[0,3,3,2],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[0,3,4,2],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[0,3,3,3],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,2,3],[0,1,2,0]],[[0,2,0,2],[0,3,3,2],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[0,3,4,2],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[0,3,3,3],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,3],[0,2,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,2],[0,2,0,2]],[[0,2,0,2],[0,3,3,2],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[0,3,4,2],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[0,3,3,3],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[0,3,3,2],[2,3,2,3],[0,2,1,0]],[[0,2,0,2],[0,3,3,2],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[0,3,4,2],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[0,3,3,3],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,3],[1,0,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,2],[1,0,1,2]],[[0,2,0,2],[0,3,3,2],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[0,3,4,2],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[0,3,3,3],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,2,3],[1,0,2,0]],[[0,2,0,2],[0,3,3,2],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[0,3,4,2],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[0,3,3,3],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,3],[1,1,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,2,2],[1,1,0,2]],[[0,2,0,2],[0,3,3,2],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[0,3,4,2],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[0,3,3,3],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[0,3,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,1,2],[2,1,2,2],[1,0,3,1]],[[1,2,2,1],[2,1,1,2],[2,1,2,2],[2,0,2,1]],[[1,2,2,1],[2,1,1,2],[2,1,2,3],[1,0,2,1]],[[1,2,2,1],[2,1,1,2],[3,1,2,2],[1,0,2,1]],[[1,2,2,1],[2,1,1,3],[2,1,2,2],[1,0,2,1]],[[1,2,2,1],[3,1,1,2],[2,1,2,2],[1,0,2,1]],[[1,2,2,2],[2,1,1,2],[2,1,2,2],[1,0,2,1]],[[1,2,3,1],[2,1,1,2],[2,1,2,2],[1,0,2,1]],[[1,3,2,1],[2,1,1,2],[2,1,2,2],[1,0,2,1]],[[2,2,2,1],[2,1,1,2],[2,1,2,2],[1,0,2,1]],[[1,2,2,1],[2,1,1,2],[2,1,2,2],[0,1,2,2]],[[1,2,2,1],[2,1,1,2],[2,1,2,2],[0,1,3,1]],[[1,2,2,1],[2,1,1,2],[2,1,2,3],[0,1,2,1]],[[1,2,2,1],[2,1,1,2],[3,1,2,2],[0,1,2,1]],[[1,2,2,1],[2,1,1,3],[2,1,2,2],[0,1,2,1]],[[1,2,2,1],[3,1,1,2],[2,1,2,2],[0,1,2,1]],[[1,2,2,2],[2,1,1,2],[2,1,2,2],[0,1,2,1]],[[1,2,3,1],[2,1,1,2],[2,1,2,2],[0,1,2,1]],[[0,2,0,2],[0,3,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[0,3,4,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[0,3,3,3],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[0,3,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,0,1],[0,3,3,2],[2,3,3,0],[0,1,2,2]],[[0,2,0,2],[0,3,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[0,3,4,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[0,3,3,3],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[0,3,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,3,0],[0,3,1,1]],[[0,2,0,2],[0,3,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[0,3,4,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[0,3,3,3],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[0,3,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,0,1],[0,3,3,2],[2,3,3,0],[1,0,2,2]],[[0,2,0,2],[0,3,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[0,3,4,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[0,3,3,3],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[0,3,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,0,1],[0,3,3,2],[2,4,3,0],[1,2,1,0]],[[0,2,0,1],[0,3,3,2],[2,3,3,0],[2,2,1,0]],[[0,2,0,1],[0,3,3,2],[2,3,3,0],[1,3,1,0]],[[1,3,2,1],[2,1,1,2],[2,1,2,2],[0,1,2,1]],[[2,2,2,1],[2,1,1,2],[2,1,2,2],[0,1,2,1]],[[0,2,0,2],[0,3,3,2],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[0,3,4,2],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[0,3,3,3],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[0,3,3,2],[2,3,4,1],[0,0,2,1]],[[0,2,0,2],[0,3,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[0,3,4,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[0,3,3,3],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[0,3,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,4,1],[0,1,1,1]],[[0,2,0,2],[0,3,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[0,3,4,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[0,3,3,3],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[0,3,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,3,1],[0,1,3,0]],[[0,2,0,2],[0,3,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[0,3,4,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[0,3,3,3],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[0,3,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,3,1],[0,3,0,1]],[[0,2,0,2],[0,3,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[0,3,4,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[0,3,3,3],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[0,3,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,0,1],[0,3,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,0,1],[0,3,3,2],[2,3,3,1],[0,3,1,0]],[[0,2,0,2],[0,3,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[0,3,4,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[0,3,3,3],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[0,3,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,0,1],[0,3,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,0,2],[0,3,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[0,3,4,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[0,3,3,3],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[0,3,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,0,1],[0,3,3,2],[2,3,3,1],[1,0,3,0]],[[0,2,0,2],[0,3,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[0,3,4,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[0,3,3,3],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[0,3,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,0,2],[0,3,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[0,3,4,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[0,3,3,3],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[0,3,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,0,1],[0,3,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[2,2,1,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[2,1,1,2],[2,0,4,2],[1,2,1,0]],[[1,2,2,1],[2,1,1,2],[3,0,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,1,3],[2,0,3,2],[1,2,1,0]],[[1,2,2,1],[3,1,1,2],[2,0,3,2],[1,2,1,0]],[[1,2,2,2],[2,1,1,2],[2,0,3,2],[1,2,1,0]],[[1,2,3,1],[2,1,1,2],[2,0,3,2],[1,2,1,0]],[[1,3,2,1],[2,1,1,2],[2,0,3,2],[1,2,1,0]],[[2,2,2,1],[2,1,1,2],[2,0,3,2],[1,2,1,0]],[[0,2,0,2],[0,3,3,2],[2,3,3,2],[0,1,0,1]],[[0,2,0,1],[0,3,4,2],[2,3,3,2],[0,1,0,1]],[[0,2,0,1],[0,3,3,3],[2,3,3,2],[0,1,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[1,2,0,2]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[1,3,0,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[2,2,0,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,3],[1,2,0,1]],[[1,2,2,1],[2,1,1,2],[2,0,4,2],[1,2,0,1]],[[1,2,2,1],[2,1,1,2],[3,0,3,2],[1,2,0,1]],[[1,2,2,1],[2,1,1,3],[2,0,3,2],[1,2,0,1]],[[1,2,2,1],[3,1,1,2],[2,0,3,2],[1,2,0,1]],[[1,2,2,2],[2,1,1,2],[2,0,3,2],[1,2,0,1]],[[1,2,3,1],[2,1,1,2],[2,0,3,2],[1,2,0,1]],[[1,3,2,1],[2,1,1,2],[2,0,3,2],[1,2,0,1]],[[2,2,2,1],[2,1,1,2],[2,0,3,2],[1,2,0,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[1,1,3,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[2,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,3],[1,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,4,2],[1,1,2,0]],[[1,2,2,1],[2,1,1,2],[3,0,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,1,3],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[3,1,1,2],[2,0,3,2],[1,1,2,0]],[[1,2,2,2],[2,1,1,2],[2,0,3,2],[1,1,2,0]],[[1,2,3,1],[2,1,1,2],[2,0,3,2],[1,1,2,0]],[[0,2,0,2],[0,3,3,2],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[0,3,4,2],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[0,3,3,3],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[0,3,3,2],[2,3,3,3],[1,0,0,1]],[[1,3,2,1],[2,1,1,2],[2,0,3,2],[1,1,2,0]],[[2,2,2,1],[2,1,1,2],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[1,1,1,2]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[2,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,3],[1,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,0,4,2],[1,1,1,1]],[[1,2,2,1],[2,1,1,2],[3,0,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,1,3],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[3,1,1,2],[2,0,3,2],[1,1,1,1]],[[1,2,2,2],[2,1,1,2],[2,0,3,2],[1,1,1,1]],[[1,2,3,1],[2,1,1,2],[2,0,3,2],[1,1,1,1]],[[1,3,2,1],[2,1,1,2],[2,0,3,2],[1,1,1,1]],[[2,2,2,1],[2,1,1,2],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[0,3,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,3],[0,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,4,2],[0,2,2,0]],[[1,2,2,1],[2,1,1,2],[3,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,1,3],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[3,1,1,2],[2,0,3,2],[0,2,2,0]],[[1,2,2,2],[2,1,1,2],[2,0,3,2],[0,2,2,0]],[[1,2,3,1],[2,1,1,2],[2,0,3,2],[0,2,2,0]],[[1,3,2,1],[2,1,1,2],[2,0,3,2],[0,2,2,0]],[[2,2,2,1],[2,1,1,2],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,2],[0,2,1,2]],[[1,2,2,1],[2,1,1,2],[2,0,3,3],[0,2,1,1]],[[1,2,2,1],[2,1,1,2],[2,0,4,2],[0,2,1,1]],[[1,2,2,1],[2,1,1,2],[3,0,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,1,3],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[3,1,1,2],[2,0,3,2],[0,2,1,1]],[[1,2,2,2],[2,1,1,2],[2,0,3,2],[0,2,1,1]],[[1,2,3,1],[2,1,1,2],[2,0,3,2],[0,2,1,1]],[[1,3,2,1],[2,1,1,2],[2,0,3,2],[0,2,1,1]],[[2,2,2,1],[2,1,1,2],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,1],[1,3,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,1],[2,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,4,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[3,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,3],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[3,1,1,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[2,1,1,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[2,1,1,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[2,1,1,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[2,1,1,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,3,1],[1,1,2,2]],[[1,2,2,1],[2,1,1,2],[2,0,3,1],[1,1,3,1]],[[1,2,2,1],[2,1,1,2],[2,0,4,1],[1,1,2,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,1],[0,2,2,2]],[[1,2,2,1],[2,1,1,2],[2,0,3,1],[0,2,3,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,1],[0,3,2,1]],[[0,2,0,1],[1,0,1,2],[2,3,3,3],[1,2,2,1]],[[0,2,0,1],[1,0,1,2],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[1,0,1,2],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,0,1,2],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,0,1,2],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,0,2,3],[2,3,2,2],[1,2,2,1]],[[0,2,0,1],[1,0,2,2],[2,3,2,3],[1,2,2,1]],[[0,2,0,1],[1,0,2,2],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[1,0,2,2],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[1,0,2,2],[2,3,2,2],[1,2,3,1]],[[0,2,0,1],[1,0,2,2],[2,3,2,2],[1,2,2,2]],[[0,2,0,1],[1,0,2,2],[2,3,4,1],[1,2,2,1]],[[0,2,0,1],[1,0,2,2],[2,3,3,1],[2,2,2,1]],[[0,2,0,1],[1,0,2,2],[2,3,3,1],[1,3,2,1]],[[0,2,0,1],[1,0,2,2],[2,3,3,1],[1,2,3,1]],[[0,2,0,1],[1,0,2,2],[2,3,3,1],[1,2,2,2]],[[0,2,0,1],[1,0,2,3],[2,3,3,2],[1,2,1,1]],[[0,2,0,1],[1,0,2,2],[2,3,4,2],[1,2,1,1]],[[0,2,0,1],[1,0,2,2],[2,3,3,3],[1,2,1,1]],[[0,2,0,1],[1,0,2,2],[2,3,3,2],[1,2,1,2]],[[0,2,0,1],[1,0,2,3],[2,3,3,2],[1,2,2,0]],[[0,2,0,1],[1,0,2,2],[2,3,4,2],[1,2,2,0]],[[0,2,0,1],[1,0,2,2],[2,3,3,3],[1,2,2,0]],[[0,2,0,1],[1,0,2,2],[2,3,3,2],[2,2,2,0]],[[0,2,0,1],[1,0,2,2],[2,3,3,2],[1,3,2,0]],[[0,2,0,1],[1,0,2,2],[2,3,3,2],[1,2,3,0]],[[0,2,0,1],[1,0,3,0],[2,3,4,2],[1,2,2,1]],[[0,2,0,1],[1,0,3,0],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[1,0,3,0],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,0,3,0],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,0,3,0],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,0,3,1],[2,3,2,3],[1,2,2,1]],[[0,2,0,1],[1,0,3,1],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[1,0,3,1],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[1,0,3,1],[2,3,2,2],[1,2,3,1]],[[0,2,0,1],[1,0,3,1],[2,3,2,2],[1,2,2,2]],[[0,2,0,1],[1,0,3,1],[2,3,4,1],[1,2,2,1]],[[0,2,0,1],[1,0,3,1],[2,3,3,1],[2,2,2,1]],[[0,2,0,1],[1,0,3,1],[2,3,3,1],[1,3,2,1]],[[0,2,0,1],[1,0,3,1],[2,3,3,1],[1,2,3,1]],[[0,2,0,1],[1,0,3,1],[2,3,3,1],[1,2,2,2]],[[0,2,0,1],[1,0,3,1],[2,3,4,2],[1,2,1,1]],[[0,2,0,1],[1,0,3,1],[2,3,3,3],[1,2,1,1]],[[0,2,0,1],[1,0,3,1],[2,3,3,2],[1,2,1,2]],[[0,2,0,1],[1,0,3,1],[2,3,4,2],[1,2,2,0]],[[0,2,0,1],[1,0,3,1],[2,3,3,3],[1,2,2,0]],[[0,2,0,1],[1,0,3,1],[2,3,3,2],[2,2,2,0]],[[0,2,0,1],[1,0,3,1],[2,3,3,2],[1,3,2,0]],[[0,2,0,1],[1,0,3,1],[2,3,3,2],[1,2,3,0]],[[0,2,0,1],[1,0,3,2],[2,3,4,0],[1,2,2,1]],[[0,2,0,1],[1,0,3,2],[2,3,3,0],[2,2,2,1]],[[0,2,0,1],[1,0,3,2],[2,3,3,0],[1,3,2,1]],[[0,2,0,1],[1,0,3,2],[2,3,3,0],[1,2,3,1]],[[0,2,0,1],[1,0,3,2],[2,3,3,0],[1,2,2,2]],[[0,2,0,1],[1,0,3,2],[2,3,4,1],[1,2,2,0]],[[0,2,0,1],[1,0,3,2],[2,3,3,1],[2,2,2,0]],[[0,2,0,1],[1,0,3,2],[2,3,3,1],[1,3,2,0]],[[0,2,0,1],[1,0,3,2],[2,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,0,4,1],[0,2,2,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,0],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[2,0,3,0],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[2,0,3,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[2,0,4,0],[1,2,2,1]],[[1,2,2,1],[2,1,1,2],[3,0,3,0],[1,2,2,1]],[[0,2,0,1],[1,1,0,2],[2,3,3,3],[1,2,2,1]],[[0,2,0,1],[1,1,0,2],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[1,1,0,2],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,1,0,2],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,1,0,2],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,1,1,2],[1,3,3,3],[1,2,2,1]],[[0,2,0,1],[1,1,1,2],[1,3,3,2],[2,2,2,1]],[[0,2,0,1],[1,1,1,2],[1,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,1,1,2],[1,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,1,1,2],[1,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,1,1,2],[2,3,3,3],[0,2,2,1]],[[0,2,0,1],[1,1,1,2],[2,3,3,2],[0,3,2,1]],[[0,2,0,1],[1,1,1,2],[2,3,3,2],[0,2,3,1]],[[0,2,0,1],[1,1,1,2],[2,3,3,2],[0,2,2,2]],[[0,2,0,1],[1,1,2,3],[1,3,2,2],[1,2,2,1]],[[0,2,0,1],[1,1,2,2],[1,3,2,3],[1,2,2,1]],[[0,2,0,1],[1,1,2,2],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[1,1,2,2],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[1,1,2,2],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[1,1,2,2],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[1,1,2,2],[1,3,4,1],[1,2,2,1]],[[0,2,0,1],[1,1,2,2],[1,3,3,1],[2,2,2,1]],[[0,2,0,1],[1,1,2,2],[1,3,3,1],[1,3,2,1]],[[0,2,0,1],[1,1,2,2],[1,3,3,1],[1,2,3,1]],[[0,2,0,1],[1,1,2,2],[1,3,3,1],[1,2,2,2]],[[0,2,0,1],[1,1,2,3],[1,3,3,2],[1,2,1,1]],[[0,2,0,1],[1,1,2,2],[1,3,4,2],[1,2,1,1]],[[0,2,0,1],[1,1,2,2],[1,3,3,3],[1,2,1,1]],[[0,2,0,1],[1,1,2,2],[1,3,3,2],[1,2,1,2]],[[0,2,0,1],[1,1,2,3],[1,3,3,2],[1,2,2,0]],[[0,2,0,1],[1,1,2,2],[1,3,4,2],[1,2,2,0]],[[0,2,0,1],[1,1,2,2],[1,3,3,3],[1,2,2,0]],[[0,2,0,1],[1,1,2,2],[1,3,3,2],[2,2,2,0]],[[0,2,0,1],[1,1,2,2],[1,3,3,2],[1,3,2,0]],[[0,2,0,1],[1,1,2,2],[1,3,3,2],[1,2,3,0]],[[0,2,0,1],[1,1,2,3],[2,3,2,2],[0,2,2,1]],[[0,2,0,1],[1,1,2,2],[2,3,2,3],[0,2,2,1]],[[0,2,0,1],[1,1,2,2],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[1,1,2,2],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[1,1,2,2],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[1,1,2,2],[2,3,4,1],[0,2,2,1]],[[0,2,0,1],[1,1,2,2],[2,3,3,1],[0,3,2,1]],[[0,2,0,1],[1,1,2,2],[2,3,3,1],[0,2,3,1]],[[0,2,0,1],[1,1,2,2],[2,3,3,1],[0,2,2,2]],[[0,2,0,1],[1,1,2,3],[2,3,3,2],[0,2,1,1]],[[0,2,0,1],[1,1,2,2],[2,3,4,2],[0,2,1,1]],[[0,2,0,1],[1,1,2,2],[2,3,3,3],[0,2,1,1]],[[0,2,0,1],[1,1,2,2],[2,3,3,2],[0,2,1,2]],[[0,2,0,1],[1,1,2,3],[2,3,3,2],[0,2,2,0]],[[0,2,0,1],[1,1,2,2],[2,3,4,2],[0,2,2,0]],[[0,2,0,1],[1,1,2,2],[2,3,3,3],[0,2,2,0]],[[0,2,0,1],[1,1,2,2],[2,3,3,2],[0,3,2,0]],[[0,2,0,1],[1,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,1,3],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[3,1,1,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[2,1,1,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[2,1,1,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[2,1,1,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[2,1,1,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[1,1,3,0],[1,3,4,2],[1,2,2,1]],[[0,2,0,1],[1,1,3,0],[1,3,3,2],[2,2,2,1]],[[0,2,0,1],[1,1,3,0],[1,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,1,3,0],[1,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,1,3,0],[1,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,1,3,0],[2,3,4,2],[0,2,2,1]],[[0,2,0,1],[1,1,3,0],[2,3,3,2],[0,3,2,1]],[[0,2,0,1],[1,1,3,0],[2,3,3,2],[0,2,3,1]],[[0,2,0,1],[1,1,3,0],[2,3,3,2],[0,2,2,2]],[[0,2,0,1],[1,1,3,1],[1,3,2,3],[1,2,2,1]],[[0,2,0,1],[1,1,3,1],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[1,1,3,1],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[1,1,3,1],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[1,1,3,1],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[1,1,3,1],[1,3,4,1],[1,2,2,1]],[[0,2,0,1],[1,1,3,1],[1,3,3,1],[2,2,2,1]],[[0,2,0,1],[1,1,3,1],[1,3,3,1],[1,3,2,1]],[[0,2,0,1],[1,1,3,1],[1,3,3,1],[1,2,3,1]],[[0,2,0,1],[1,1,3,1],[1,3,3,1],[1,2,2,2]],[[0,2,0,1],[1,1,3,1],[1,3,4,2],[1,2,1,1]],[[0,2,0,1],[1,1,3,1],[1,3,3,3],[1,2,1,1]],[[0,2,0,1],[1,1,3,1],[1,3,3,2],[1,2,1,2]],[[0,2,0,1],[1,1,3,1],[1,3,4,2],[1,2,2,0]],[[0,2,0,1],[1,1,3,1],[1,3,3,3],[1,2,2,0]],[[0,2,0,1],[1,1,3,1],[1,3,3,2],[2,2,2,0]],[[0,2,0,1],[1,1,3,1],[1,3,3,2],[1,3,2,0]],[[0,2,0,1],[1,1,3,1],[1,3,3,2],[1,2,3,0]],[[0,2,0,1],[1,1,3,1],[2,3,2,3],[0,2,2,1]],[[0,2,0,1],[1,1,3,1],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[1,1,3,1],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[1,1,3,1],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[1,1,3,1],[2,3,4,1],[0,2,2,1]],[[0,2,0,1],[1,1,3,1],[2,3,3,1],[0,3,2,1]],[[0,2,0,1],[1,1,3,1],[2,3,3,1],[0,2,3,1]],[[0,2,0,1],[1,1,3,1],[2,3,3,1],[0,2,2,2]],[[0,2,0,1],[1,1,3,1],[2,3,4,2],[0,2,1,1]],[[0,2,0,1],[1,1,3,1],[2,3,3,3],[0,2,1,1]],[[0,2,0,1],[1,1,3,1],[2,3,3,2],[0,2,1,2]],[[0,2,0,1],[1,1,3,1],[2,3,4,2],[0,2,2,0]],[[0,2,0,1],[1,1,3,1],[2,3,3,3],[0,2,2,0]],[[0,2,0,1],[1,1,3,1],[2,3,3,2],[0,3,2,0]],[[0,2,0,1],[1,1,3,1],[2,3,3,2],[0,2,3,0]],[[0,2,0,1],[1,1,3,2],[1,3,4,0],[1,2,2,1]],[[0,2,0,1],[1,1,3,2],[1,3,3,0],[2,2,2,1]],[[0,2,0,1],[1,1,3,2],[1,3,3,0],[1,3,2,1]],[[0,2,0,1],[1,1,3,2],[1,3,3,0],[1,2,3,1]],[[0,2,0,1],[1,1,3,2],[1,3,3,0],[1,2,2,2]],[[0,2,0,1],[1,1,3,2],[1,3,4,1],[1,2,2,0]],[[0,2,0,1],[1,1,3,2],[1,3,3,1],[2,2,2,0]],[[0,2,0,1],[1,1,3,2],[1,3,3,1],[1,3,2,0]],[[0,2,0,1],[1,1,3,2],[1,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[1,3,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[2,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,2,3],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[3,0,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,3],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[3,1,1,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[2,1,1,2],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[1,1,3,2],[2,3,4,0],[0,2,2,1]],[[0,2,0,1],[1,1,3,2],[2,3,3,0],[0,3,2,1]],[[0,2,0,1],[1,1,3,2],[2,3,3,0],[0,2,3,1]],[[0,2,0,1],[1,1,3,2],[2,3,3,0],[0,2,2,2]],[[0,2,0,1],[1,1,3,2],[2,3,4,1],[0,2,2,0]],[[0,2,0,1],[1,1,3,2],[2,3,3,1],[0,3,2,0]],[[0,2,0,1],[1,1,3,2],[2,3,3,1],[0,2,3,0]],[[1,2,3,1],[2,1,1,2],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[2,1,1,2],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[2,1,1,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[1,2,1,2]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[1,3,1,1]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[2,2,1,1]],[[1,2,2,1],[2,1,1,2],[2,0,2,3],[1,2,1,1]],[[1,2,2,1],[2,1,1,2],[3,0,2,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,3],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[3,1,1,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,2],[2,1,1,2],[2,0,2,2],[1,2,1,1]],[[1,2,3,1],[2,1,1,2],[2,0,2,2],[1,2,1,1]],[[1,3,2,1],[2,1,1,2],[2,0,2,2],[1,2,1,1]],[[2,2,2,1],[2,1,1,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[1,1,2,2]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[1,1,3,1]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[2,1,2,1]],[[1,2,2,1],[2,1,1,2],[2,0,2,3],[1,1,2,1]],[[1,2,2,1],[2,1,1,2],[3,0,2,2],[1,1,2,1]],[[1,2,2,1],[2,1,1,3],[2,0,2,2],[1,1,2,1]],[[1,2,2,1],[3,1,1,2],[2,0,2,2],[1,1,2,1]],[[1,2,2,2],[2,1,1,2],[2,0,2,2],[1,1,2,1]],[[1,2,3,1],[2,1,1,2],[2,0,2,2],[1,1,2,1]],[[1,3,2,1],[2,1,1,2],[2,0,2,2],[1,1,2,1]],[[2,2,2,1],[2,1,1,2],[2,0,2,2],[1,1,2,1]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[0,2,2,2]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[0,2,3,1]],[[1,2,2,1],[2,1,1,2],[2,0,2,2],[0,3,2,1]],[[0,2,0,1],[1,2,0,2],[1,3,3,3],[1,2,2,1]],[[0,2,0,1],[1,2,0,2],[1,3,3,2],[2,2,2,1]],[[0,2,0,1],[1,2,0,2],[1,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,2,0,2],[1,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,0,2],[1,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,2,0,2],[2,3,3,3],[0,2,2,1]],[[0,2,0,1],[1,2,0,2],[2,3,3,2],[0,3,2,1]],[[0,2,0,1],[1,2,0,2],[2,3,3,2],[0,2,3,1]],[[0,2,0,1],[1,2,0,2],[2,3,3,2],[0,2,2,2]],[[0,2,0,1],[1,2,1,2],[0,3,3,3],[1,2,2,1]],[[0,2,0,1],[1,2,1,2],[0,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,2,1,2],[0,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,1,2],[0,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,2,1,2],[1,2,3,3],[1,2,2,1]],[[0,2,0,1],[1,2,1,2],[1,2,3,2],[2,2,2,1]],[[0,2,0,1],[1,2,1,2],[1,2,3,2],[1,3,2,1]],[[0,2,0,1],[1,2,1,2],[1,2,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,1,2],[1,2,3,2],[1,2,2,2]],[[0,2,0,1],[1,2,1,2],[1,3,3,3],[1,1,2,1]],[[0,2,0,1],[1,2,1,2],[1,3,3,2],[1,1,3,1]],[[0,2,0,1],[1,2,1,2],[1,3,3,2],[1,1,2,2]],[[0,2,0,1],[1,2,1,2],[2,1,3,3],[1,2,2,1]],[[0,2,0,1],[1,2,1,2],[2,1,3,2],[2,2,2,1]],[[0,2,0,1],[1,2,1,2],[2,1,3,2],[1,3,2,1]],[[0,2,0,1],[1,2,1,2],[2,1,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,1,2],[2,1,3,2],[1,2,2,2]],[[0,2,0,1],[1,2,1,2],[2,2,3,3],[0,2,2,1]],[[0,2,0,1],[1,2,1,2],[2,2,3,2],[0,3,2,1]],[[0,2,0,1],[1,2,1,2],[2,2,3,2],[0,2,3,1]],[[0,2,0,1],[1,2,1,2],[2,2,3,2],[0,2,2,2]],[[0,2,0,1],[1,2,1,2],[2,3,3,3],[0,1,2,1]],[[0,2,0,1],[1,2,1,2],[2,3,3,2],[0,1,3,1]],[[0,2,0,1],[1,2,1,2],[2,3,3,2],[0,1,2,2]],[[0,2,0,1],[1,2,1,2],[2,3,3,3],[1,0,2,1]],[[0,2,0,1],[1,2,1,2],[2,3,3,2],[1,0,3,1]],[[0,2,0,1],[1,2,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,1],[2,1,1,2],[2,0,2,3],[0,2,2,1]],[[1,2,2,1],[2,1,1,2],[3,0,2,2],[0,2,2,1]],[[1,2,2,1],[2,1,1,3],[2,0,2,2],[0,2,2,1]],[[1,2,2,1],[3,1,1,2],[2,0,2,2],[0,2,2,1]],[[1,2,2,2],[2,1,1,2],[2,0,2,2],[0,2,2,1]],[[0,2,0,1],[1,2,2,3],[0,2,3,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[0,2,3,3],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[0,2,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[0,2,3,2],[1,2,2,2]],[[0,2,0,2],[1,2,2,2],[0,3,2,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,3],[0,3,2,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[0,3,2,3],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[0,3,2,2],[1,3,2,1]],[[0,2,0,1],[1,2,2,2],[0,3,2,2],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[0,3,2,2],[1,2,2,2]],[[0,2,0,1],[1,2,2,2],[0,3,4,1],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[0,3,3,1],[1,3,2,1]],[[0,2,0,1],[1,2,2,2],[0,3,3,1],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[0,3,3,1],[1,2,2,2]],[[0,2,0,2],[1,2,2,2],[0,3,3,2],[1,2,1,1]],[[0,2,0,1],[1,2,2,3],[0,3,3,2],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[0,3,4,2],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[0,3,3,3],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[0,3,3,2],[1,2,1,2]],[[0,2,0,2],[1,2,2,2],[0,3,3,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,3],[0,3,3,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[0,3,4,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[0,3,3,3],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[0,3,3,2],[1,3,2,0]],[[0,2,0,1],[1,2,2,2],[0,3,3,2],[1,2,3,0]],[[0,2,0,1],[1,2,2,3],[1,1,3,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,1,3,3],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,1,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[1,1,3,2],[1,2,2,2]],[[0,2,0,2],[1,2,2,2],[1,2,2,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,3],[1,2,2,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,2,2,3],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,2,2,2],[2,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,2,2,2],[1,3,2,1]],[[0,2,0,1],[1,2,2,2],[1,2,2,2],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[1,2,2,2],[1,2,2,2]],[[0,2,0,1],[1,2,2,2],[1,2,4,1],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,2,3,1],[2,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,2,3,1],[1,3,2,1]],[[0,2,0,1],[1,2,2,2],[1,2,3,1],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[1,2,3,1],[1,2,2,2]],[[0,2,0,2],[1,2,2,2],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[1,2,2,3],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[1,2,4,2],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[1,2,3,3],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[1,2,3,2],[1,2,1,2]],[[0,2,0,2],[1,2,2,2],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,3],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[1,2,4,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[1,2,3,3],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[1,2,3,2],[2,2,2,0]],[[0,2,0,1],[1,2,2,2],[1,2,3,2],[1,3,2,0]],[[0,2,0,1],[1,2,2,2],[1,2,3,2],[1,2,3,0]],[[0,2,0,2],[1,2,2,2],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,3],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,1,3],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[1,3,1,2],[1,2,2,2]],[[0,2,0,1],[1,2,2,2],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[1,3,2,1],[1,2,2,2]],[[0,2,0,2],[1,2,2,2],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[1,2,2,3],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,2,3],[1,1,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,2,2],[1,1,3,1]],[[0,2,0,1],[1,2,2,2],[1,3,2,2],[1,1,2,2]],[[0,2,0,1],[1,2,2,2],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[1,2,2,2],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[1,2,2,2],[1,3,2,2],[1,2,3,0]],[[0,2,0,1],[1,2,2,2],[1,4,3,1],[1,1,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,4,1],[1,1,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,1],[1,1,3,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,1],[1,1,2,2]],[[0,2,0,1],[1,2,2,2],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[1,3,4,1],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,1],[1,3,1,1]],[[0,2,0,2],[1,2,2,2],[1,3,3,2],[1,0,2,1]],[[0,2,0,1],[1,2,2,3],[1,3,3,2],[1,0,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,4,2],[1,0,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,3],[1,0,2,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,2],[1,0,2,2]],[[0,2,0,2],[1,2,2,2],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[1,2,2,3],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[1,2,2,2],[1,4,3,2],[1,1,1,1]],[[0,2,0,1],[1,2,2,2],[1,3,4,2],[1,1,1,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,3],[1,1,1,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,2],[1,1,1,2]],[[0,2,0,2],[1,2,2,2],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[1,2,2,3],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[1,2,2,2],[1,4,3,2],[1,1,2,0]],[[0,2,0,1],[1,2,2,2],[1,3,4,2],[1,1,2,0]],[[0,2,0,1],[1,2,2,2],[1,3,3,3],[1,1,2,0]],[[0,2,0,1],[1,2,2,2],[1,3,3,2],[1,1,3,0]],[[0,2,0,2],[1,2,2,2],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[1,2,2,3],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[1,2,2,2],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[1,2,2,2],[1,3,4,2],[1,2,0,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,3],[1,2,0,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[1,2,2,2],[1,3,3,2],[1,2,0,2]],[[0,2,0,2],[1,2,2,2],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[1,2,2,3],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[1,2,2,2],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[1,2,2,2],[1,3,4,2],[1,2,1,0]],[[0,2,0,1],[1,2,2,2],[1,3,3,3],[1,2,1,0]],[[0,2,0,1],[1,2,2,2],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[1,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,3,1],[2,1,1,2],[2,0,2,2],[0,2,2,1]],[[1,3,2,1],[2,1,1,2],[2,0,2,2],[0,2,2,1]],[[2,2,2,1],[2,1,1,2],[2,0,2,2],[0,2,2,1]],[[1,2,2,1],[2,1,1,2],[2,0,2,1],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[2,0,2,1],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[2,0,2,1],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[2,0,2,1],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[3,0,2,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,3],[2,0,2,1],[1,2,2,1]],[[0,2,0,1],[1,2,2,3],[2,0,3,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,0,3,3],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,0,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[2,0,3,2],[1,2,2,2]],[[0,2,0,2],[1,2,2,2],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,3],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[3,1,2,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,1,2,3],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,1,2,2],[2,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,1,2,2],[1,3,2,1]],[[0,2,0,1],[1,2,2,2],[2,1,2,2],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[2,1,2,2],[1,2,2,2]],[[0,2,0,1],[1,2,2,2],[3,1,3,1],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,1,4,1],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,1,3,1],[2,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,1,3,1],[1,3,2,1]],[[0,2,0,1],[1,2,2,2],[2,1,3,1],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[2,1,3,1],[1,2,2,2]],[[0,2,0,1],[1,2,2,3],[2,1,3,2],[0,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,1,3,3],[0,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,1,3,2],[0,2,3,1]],[[0,2,0,1],[1,2,2,2],[2,1,3,2],[0,2,2,2]],[[0,2,0,2],[1,2,2,2],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[1,2,2,3],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[2,1,4,2],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[2,1,3,3],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[2,1,3,2],[1,2,1,2]],[[0,2,0,2],[1,2,2,2],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,3],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[3,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[2,1,4,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[2,1,3,3],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[2,1,3,2],[2,2,2,0]],[[0,2,0,1],[1,2,2,2],[2,1,3,2],[1,3,2,0]],[[0,2,0,1],[1,2,2,2],[2,1,3,2],[1,2,3,0]],[[0,2,0,2],[1,2,2,2],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,3],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[3,2,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,1,3],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,1,2],[2,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,1,2],[1,3,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,1,2],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[2,2,1,2],[1,2,2,2]],[[0,2,0,1],[1,2,2,2],[3,2,2,1],[1,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,2,1],[2,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,2,1],[1,3,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,2,1],[1,2,3,1]],[[0,2,0,1],[1,2,2,2],[2,2,2,1],[1,2,2,2]],[[0,2,0,2],[1,2,2,2],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[1,2,2,3],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,2,3],[0,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,2,2],[0,3,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,2,2],[0,2,3,1]],[[0,2,0,1],[1,2,2,2],[2,2,2,2],[0,2,2,2]],[[0,2,0,1],[1,2,2,2],[3,2,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,2,2],[2,2,2,2],[2,2,2,0]],[[0,2,0,1],[1,2,2,2],[2,2,2,2],[1,3,2,0]],[[0,2,0,1],[1,2,2,2],[2,2,2,2],[1,2,3,0]],[[0,2,0,1],[1,2,2,2],[2,2,4,1],[0,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,3,1],[0,3,2,1]],[[0,2,0,1],[1,2,2,2],[2,2,3,1],[0,2,3,1]],[[0,2,0,1],[1,2,2,2],[2,2,3,1],[0,2,2,2]],[[0,2,0,1],[1,2,2,2],[3,2,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,2,2],[2,2,3,1],[2,2,1,1]],[[0,2,0,1],[1,2,2,2],[2,2,3,1],[1,3,1,1]],[[0,2,0,2],[1,2,2,2],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[1,2,2,3],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[1,2,2,2],[2,2,4,2],[0,2,1,1]],[[0,2,0,1],[1,2,2,2],[2,2,3,3],[0,2,1,1]],[[0,2,0,1],[1,2,2,2],[2,2,3,2],[0,2,1,2]],[[0,2,0,2],[1,2,2,2],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[1,2,2,3],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[1,2,2,2],[2,2,4,2],[0,2,2,0]],[[0,2,0,1],[1,2,2,2],[2,2,3,3],[0,2,2,0]],[[0,2,0,1],[1,2,2,2],[2,2,3,2],[0,3,2,0]],[[0,2,0,1],[1,2,2,2],[2,2,3,2],[0,2,3,0]],[[0,2,0,1],[1,2,2,2],[3,2,3,2],[1,2,0,1]],[[0,2,0,1],[1,2,2,2],[2,2,3,2],[2,2,0,1]],[[0,2,0,1],[1,2,2,2],[2,2,3,2],[1,3,0,1]],[[0,2,0,1],[1,2,2,2],[3,2,3,2],[1,2,1,0]],[[0,2,0,1],[1,2,2,2],[2,2,3,2],[2,2,1,0]],[[0,2,0,1],[1,2,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[3,1,1,2],[2,0,2,1],[1,2,2,1]],[[1,2,2,2],[2,1,1,2],[2,0,2,1],[1,2,2,1]],[[1,2,3,1],[2,1,1,2],[2,0,2,1],[1,2,2,1]],[[1,3,2,1],[2,1,1,2],[2,0,2,1],[1,2,2,1]],[[2,2,2,1],[2,1,1,2],[2,0,2,1],[1,2,2,1]],[[0,2,0,2],[1,2,2,2],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[1,2,2,3],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[1,2,2,2],[3,3,1,2],[0,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,1,3],[0,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[1,2,2,2],[2,3,1,2],[0,2,2,2]],[[0,2,0,1],[1,2,2,2],[3,3,1,2],[1,1,2,1]],[[0,2,0,1],[1,2,2,2],[2,4,1,2],[1,1,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,1,2],[2,1,2,1]],[[0,2,0,1],[1,2,2,2],[3,3,2,1],[0,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[1,2,2,2],[2,3,2,1],[0,2,2,2]],[[0,2,0,1],[1,2,2,2],[3,3,2,1],[1,1,2,1]],[[0,2,0,1],[1,2,2,2],[2,4,2,1],[1,1,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,2,1],[2,1,2,1]],[[0,2,0,2],[1,2,2,2],[2,3,2,2],[0,1,2,1]],[[0,2,0,1],[1,2,2,3],[2,3,2,2],[0,1,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,2,3],[0,1,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,2,2],[0,1,3,1]],[[0,2,0,1],[1,2,2,2],[2,3,2,2],[0,1,2,2]],[[0,2,0,1],[1,2,2,2],[3,3,2,2],[0,2,2,0]],[[0,2,0,1],[1,2,2,2],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[1,2,2,2],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[1,2,2,2],[2,3,2,2],[0,2,3,0]],[[0,2,0,2],[1,2,2,2],[2,3,2,2],[1,0,2,1]],[[0,2,0,1],[1,2,2,3],[2,3,2,2],[1,0,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,2,3],[1,0,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,2,2],[1,0,3,1]],[[0,2,0,1],[1,2,2,2],[2,3,2,2],[1,0,2,2]],[[0,2,0,1],[1,2,2,2],[3,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,2,2,2],[2,4,2,2],[1,1,2,0]],[[0,2,0,1],[1,2,2,2],[2,3,2,2],[2,1,2,0]],[[0,2,0,1],[1,2,2,2],[3,3,3,1],[0,1,2,1]],[[0,2,0,1],[1,2,2,2],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,4,1],[0,1,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,1],[0,1,3,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,1],[0,1,2,2]],[[0,2,0,1],[1,2,2,2],[3,3,3,1],[0,2,1,1]],[[0,2,0,1],[1,2,2,2],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[1,2,2,2],[2,3,4,1],[0,2,1,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,1],[0,3,1,1]],[[0,2,0,1],[1,2,2,2],[3,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,2,2,2],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,4,1],[1,0,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,1],[2,0,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,1],[1,0,3,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,1],[1,0,2,2]],[[0,2,0,1],[1,2,2,2],[3,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,2,2,2],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[1,2,2,2],[2,3,4,1],[1,1,1,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,1],[2,1,1,1]],[[0,2,0,2],[1,2,2,2],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[1,2,2,3],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,4,2],[0,0,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,3],[0,0,2,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[0,0,2,2]],[[0,2,0,2],[1,2,2,2],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,2,2,3],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,2,2,2],[3,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,2,2,2],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[1,2,2,2],[2,3,4,2],[0,1,1,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,3],[0,1,1,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[0,1,1,2]],[[0,2,0,2],[1,2,2,2],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,2,2,3],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,2,2,2],[3,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,2,2,2],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[1,2,2,2],[2,3,4,2],[0,1,2,0]],[[0,2,0,1],[1,2,2,2],[2,3,3,3],[0,1,2,0]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[0,1,3,0]],[[0,2,0,2],[1,2,2,2],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,2,2,3],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,2,2,2],[3,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,2,2,2],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[1,2,2,2],[2,3,4,2],[0,2,0,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,3],[0,2,0,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[0,2,0,2]],[[0,2,0,2],[1,2,2,2],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,2,2,3],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,2,2,2],[3,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,2,2,2],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[1,2,2,2],[2,3,4,2],[0,2,1,0]],[[0,2,0,1],[1,2,2,2],[2,3,3,3],[0,2,1,0]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[0,3,1,0]],[[0,2,0,2],[1,2,2,2],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,2,2,3],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,2,2,2],[3,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,2,2,2],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[1,2,2,2],[2,3,4,2],[1,0,1,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,3],[1,0,1,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[2,0,1,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[1,0,1,2]],[[0,2,0,2],[1,2,2,2],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,2,2,3],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,2,2,2],[3,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,2,2,2],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[1,2,2,2],[2,3,4,2],[1,0,2,0]],[[0,2,0,1],[1,2,2,2],[2,3,3,3],[1,0,2,0]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[2,0,2,0]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[1,0,3,0]],[[0,2,0,2],[1,2,2,2],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,2,2,3],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,2,2,2],[3,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,2,2,2],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[1,2,2,2],[2,3,4,2],[1,1,0,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,3],[1,1,0,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[2,1,0,1]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[1,1,0,2]],[[0,2,0,2],[1,2,2,2],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,2,2,3],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,2,2,2],[3,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,2,2,2],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[1,2,2,2],[2,3,4,2],[1,1,1,0]],[[0,2,0,1],[1,2,2,2],[2,3,3,3],[1,1,1,0]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[2,1,1,0]],[[0,2,0,1],[1,2,2,2],[3,3,3,2],[1,2,0,0]],[[0,2,0,1],[1,2,2,2],[2,4,3,2],[1,2,0,0]],[[0,2,0,1],[1,2,2,2],[2,3,3,2],[2,2,0,0]],[[0,2,0,1],[1,2,3,0],[0,3,4,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,0],[0,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,0],[0,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,0],[0,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,2,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,0,1],[1,2,3,0],[1,4,2,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,0],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,0],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,0],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,0],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[1,2,3,0],[1,4,3,2],[1,1,2,1]],[[0,2,0,1],[1,2,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,0,1],[1,2,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,0,1],[1,2,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,0,1],[1,2,3,0],[1,4,3,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,0],[1,3,4,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,0],[1,3,3,2],[2,2,1,1]],[[0,2,0,1],[1,2,3,0],[1,3,3,2],[1,3,1,1]],[[0,2,0,1],[1,2,3,0],[3,1,3,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,0],[2,1,4,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,0],[2,1,3,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,0],[2,1,3,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,0],[2,1,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,0],[2,1,3,2],[1,2,2,2]],[[0,2,0,1],[1,2,3,0],[3,2,2,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,0],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,0],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,0],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,0],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[1,2,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,0,1],[1,2,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,0,1],[1,2,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,0,1],[1,2,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,0,1],[1,2,3,0],[3,2,3,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,0],[2,2,3,2],[2,2,1,1]],[[0,2,0,1],[1,2,3,0],[2,2,3,2],[1,3,1,1]],[[0,2,0,1],[1,2,3,0],[3,3,2,2],[0,2,2,1]],[[0,2,0,1],[1,2,3,0],[2,4,2,2],[0,2,2,1]],[[0,2,0,1],[1,2,3,0],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[1,2,3,0],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[1,2,3,0],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[1,2,3,0],[3,3,2,2],[1,1,2,1]],[[0,2,0,1],[1,2,3,0],[2,4,2,2],[1,1,2,1]],[[0,2,0,1],[1,2,3,0],[2,3,2,2],[2,1,2,1]],[[0,2,0,1],[1,2,3,0],[3,3,3,2],[0,1,2,1]],[[0,2,0,1],[1,2,3,0],[2,4,3,2],[0,1,2,1]],[[0,2,0,1],[1,2,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,0,1],[1,2,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,0,1],[1,2,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,0,1],[1,2,3,0],[3,3,3,2],[0,2,1,1]],[[0,2,0,1],[1,2,3,0],[2,4,3,2],[0,2,1,1]],[[0,2,0,1],[1,2,3,0],[2,3,4,2],[0,2,1,1]],[[0,2,0,1],[1,2,3,0],[2,3,3,2],[0,3,1,1]],[[0,2,0,1],[1,2,3,0],[3,3,3,2],[1,0,2,1]],[[0,2,0,1],[1,2,3,0],[2,4,3,2],[1,0,2,1]],[[0,2,0,1],[1,2,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,0,1],[1,2,3,0],[2,3,3,2],[2,0,2,1]],[[0,2,0,1],[1,2,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,0,1],[1,2,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,0,1],[1,2,3,0],[3,3,3,2],[1,1,1,1]],[[0,2,0,1],[1,2,3,0],[2,4,3,2],[1,1,1,1]],[[0,2,0,1],[1,2,3,0],[2,3,4,2],[1,1,1,1]],[[0,2,0,1],[1,2,3,0],[2,3,3,2],[2,1,1,1]],[[0,2,0,1],[1,2,3,1],[0,2,3,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[0,2,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[0,2,3,2],[1,2,2,2]],[[0,2,0,1],[1,2,3,1],[0,3,2,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[0,3,2,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[0,3,2,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[0,3,2,2],[1,2,2,2]],[[0,2,0,1],[1,2,4,1],[0,3,3,1],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[0,3,4,1],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[0,3,3,1],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[0,3,3,1],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[0,3,3,1],[1,2,2,2]],[[0,2,0,1],[1,2,4,1],[0,3,3,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[0,3,4,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[0,3,3,3],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[0,3,3,2],[1,2,1,2]],[[0,2,0,1],[1,2,4,1],[0,3,3,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[0,3,4,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[0,3,3,3],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[0,3,3,2],[1,3,2,0]],[[0,2,0,1],[1,2,3,1],[0,3,3,2],[1,2,3,0]],[[0,2,0,1],[1,2,3,1],[1,1,3,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,1,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[1,1,3,2],[1,2,2,2]],[[0,2,0,1],[1,2,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[1,2,2,2],[1,2,2,2]],[[0,2,0,1],[1,2,4,1],[1,2,3,1],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[1,2,3,1],[1,2,2,2]],[[0,2,0,1],[1,2,4,1],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[1,2,3,2],[1,2,1,2]],[[0,2,0,1],[1,2,4,1],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,0,1],[1,2,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,0,1],[1,2,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,0,1],[1,2,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,0,1],[1,2,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,0,1],[1,2,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,0,1],[1,2,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,0,1],[1,2,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[1,2,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[1,2,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,0,1],[1,2,3,1],[1,4,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,0],[2,2,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,0],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,0],[1,2,3,1]],[[0,2,0,1],[1,2,4,1],[1,3,3,1],[1,1,2,1]],[[0,2,0,1],[1,2,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,1],[1,1,2,2]],[[0,2,0,1],[1,2,4,1],[1,3,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,0,1],[1,2,4,1],[1,3,3,2],[1,0,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,4,2],[1,0,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,3],[1,0,2,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,2],[1,0,2,2]],[[0,2,0,1],[1,2,4,1],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[1,2,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,0,1],[1,2,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,2],[1,1,1,2]],[[0,2,0,1],[1,2,4,1],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[1,2,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,0,1],[1,2,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,0,1],[1,2,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,0,1],[1,2,3,1],[1,3,3,2],[1,1,3,0]],[[0,2,0,1],[1,2,4,1],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[1,2,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[1,2,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[1,2,3,1],[1,3,3,2],[1,2,0,2]],[[0,2,0,1],[1,2,4,1],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[1,2,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[1,2,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,0,1],[1,2,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,0,1],[1,2,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[1,2,3,1],[1,3,3,2],[1,3,1,0]],[[0,2,0,1],[1,2,3,1],[2,0,3,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,0,3,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[2,0,3,2],[1,2,2,2]],[[0,2,0,1],[1,2,3,1],[3,1,2,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,1,2,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,1,2,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,1,2,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[2,1,2,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[2,1,2,2],[1,2,2,2]],[[0,2,0,1],[1,2,4,1],[2,1,3,1],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[3,1,3,1],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,1,4,1],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,1,3,1],[2,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,1,3,1],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[2,1,3,1],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[2,1,3,1],[1,2,2,2]],[[0,2,0,1],[1,2,3,1],[2,1,3,3],[0,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,1,3,2],[0,2,3,1]],[[0,2,0,1],[1,2,3,1],[2,1,3,2],[0,2,2,2]],[[0,2,0,1],[1,2,4,1],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[2,1,4,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[2,1,3,3],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[2,1,3,2],[1,2,1,2]],[[0,2,0,1],[1,2,4,1],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[3,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[2,1,4,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[2,1,3,3],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[2,1,3,2],[2,2,2,0]],[[0,2,0,1],[1,2,3,1],[2,1,3,2],[1,3,2,0]],[[0,2,0,1],[1,2,3,1],[2,1,3,2],[1,2,3,0]],[[0,2,0,1],[1,2,3,1],[3,2,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,1,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,1,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,1,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,1,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[2,2,1,2],[1,2,2,2]],[[0,2,0,1],[1,2,3,1],[3,2,2,1],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,2,1],[2,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,2,1],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,2,1],[1,2,3,1]],[[0,2,0,1],[1,2,3,1],[2,2,2,1],[1,2,2,2]],[[0,2,0,1],[1,2,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,0,1],[1,2,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,0,1],[1,2,3,1],[3,2,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,1],[2,2,2,2],[2,2,2,0]],[[0,2,0,1],[1,2,3,1],[2,2,2,2],[1,3,2,0]],[[0,2,0,1],[1,2,3,1],[2,2,2,2],[1,2,3,0]],[[0,2,0,1],[1,2,3,1],[3,2,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,0],[2,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,0],[1,3,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,0],[1,2,3,1]],[[0,2,0,1],[1,2,4,1],[2,2,3,1],[0,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,0,1],[1,2,3,1],[3,2,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,1],[2,2,1,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,1],[1,3,1,1]],[[0,2,0,1],[1,2,4,1],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[1,2,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,2],[0,2,1,2]],[[0,2,0,1],[1,2,4,1],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[1,2,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,0,1],[1,2,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,0,1],[1,2,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,0,1],[1,2,3,1],[2,2,3,2],[0,2,3,0]],[[0,2,0,1],[1,2,3,1],[3,2,3,2],[1,2,0,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,2],[2,2,0,1]],[[0,2,0,1],[1,2,3,1],[2,2,3,2],[1,3,0,1]],[[0,2,0,1],[1,2,3,1],[3,2,3,2],[1,2,1,0]],[[0,2,0,1],[1,2,3,1],[2,2,3,2],[2,2,1,0]],[[0,2,0,1],[1,2,3,1],[2,2,3,2],[1,3,1,0]],[[0,2,0,1],[1,2,3,1],[3,3,1,2],[0,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[1,2,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,0,1],[1,2,3,1],[3,3,1,2],[1,1,2,1]],[[0,2,0,1],[1,2,3,1],[2,4,1,2],[1,1,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,1,2],[2,1,2,1]],[[0,2,0,1],[1,2,3,1],[3,3,2,1],[0,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[1,2,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,0,1],[1,2,3,1],[3,3,2,1],[1,1,2,1]],[[0,2,0,1],[1,2,3,1],[2,4,2,1],[1,1,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,2,1],[2,1,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,0,1],[1,2,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,0,1],[1,2,3,1],[3,3,2,2],[0,2,2,0]],[[0,2,0,1],[1,2,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[1,2,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[1,2,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,0,1],[1,2,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,0,1],[1,2,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,0,1],[1,2,3,1],[3,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,2,3,1],[2,4,2,2],[1,1,2,0]],[[0,2,0,1],[1,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,1,1,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,1,1,2],[1,3,4,2],[0,0,2,0]],[[1,2,2,1],[2,1,1,3],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[3,1,1,2],[1,3,3,2],[0,0,2,0]],[[1,2,2,2],[2,1,1,2],[1,3,3,2],[0,0,2,0]],[[1,2,3,1],[2,1,1,2],[1,3,3,2],[0,0,2,0]],[[1,3,2,1],[2,1,1,2],[1,3,3,2],[0,0,2,0]],[[0,2,0,1],[1,2,3,1],[3,3,3,0],[0,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,4,3,0],[0,2,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,0],[0,3,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,0],[0,2,3,1]],[[0,2,0,1],[1,2,3,1],[3,3,3,0],[1,1,2,1]],[[0,2,0,1],[1,2,3,1],[2,4,3,0],[1,1,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,0],[2,1,2,1]],[[0,2,0,1],[1,2,4,1],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[1,2,3,1],[3,3,3,1],[0,1,2,1]],[[0,2,0,1],[1,2,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,1],[0,1,2,2]],[[0,2,0,1],[1,2,4,1],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[1,2,3,1],[3,3,3,1],[0,2,1,1]],[[0,2,0,1],[1,2,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[1,2,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,1],[0,3,1,1]],[[0,2,0,1],[1,2,4,1],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,2,3,1],[3,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,2,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,1],[2,0,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,1],[1,0,2,2]],[[0,2,0,1],[1,2,4,1],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,2,3,1],[3,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,2,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[1,2,3,1],[2,3,4,1],[1,1,1,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,1],[2,1,1,1]],[[0,2,0,1],[1,2,3,1],[3,3,3,1],[1,2,0,1]],[[0,2,0,1],[1,2,3,1],[2,4,3,1],[1,2,0,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,1],[2,2,0,1]],[[2,2,2,1],[2,1,1,2],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[2,1,1,2],[1,3,3,2],[0,0,1,2]],[[1,2,2,1],[2,1,1,2],[1,3,3,3],[0,0,1,1]],[[1,2,2,1],[2,1,1,2],[1,3,4,2],[0,0,1,1]],[[1,2,2,1],[2,1,1,3],[1,3,3,2],[0,0,1,1]],[[1,2,2,1],[3,1,1,2],[1,3,3,2],[0,0,1,1]],[[1,2,2,2],[2,1,1,2],[1,3,3,2],[0,0,1,1]],[[1,2,3,1],[2,1,1,2],[1,3,3,2],[0,0,1,1]],[[0,2,0,1],[1,2,4,1],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[0,0,2,2]],[[0,2,0,1],[1,2,4,1],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,2,3,1],[3,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,2,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[1,2,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[0,1,1,2]],[[0,2,0,1],[1,2,4,1],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,2,3,1],[3,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,2,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[1,2,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,0,1],[1,2,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[0,1,3,0]],[[0,2,0,1],[1,2,4,1],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,2,3,1],[3,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,2,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[1,2,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[0,2,0,2]],[[0,2,0,1],[1,2,4,1],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,2,3,1],[3,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,2,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[1,2,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,0,1],[1,2,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,3,2,1],[2,1,1,2],[1,3,3,2],[0,0,1,1]],[[2,2,2,1],[2,1,1,2],[1,3,3,2],[0,0,1,1]],[[0,2,0,1],[1,2,4,1],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,2,3,1],[3,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,2,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[1,2,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[2,0,1,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[1,0,1,2]],[[0,2,0,1],[1,2,4,1],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,2,3,1],[3,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,2,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[1,2,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,0,1],[1,2,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[2,0,2,0]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[1,0,3,0]],[[0,2,0,1],[1,2,4,1],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,2,3,1],[3,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,2,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[1,2,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[2,1,0,1]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[1,1,0,2]],[[0,2,0,1],[1,2,4,1],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,2,3,1],[3,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,2,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[1,2,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,0,1],[1,2,3,1],[2,3,3,3],[1,1,1,0]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[2,1,1,0]],[[0,2,0,1],[1,2,3,1],[3,3,3,2],[1,2,0,0]],[[0,2,0,1],[1,2,3,1],[2,4,3,2],[1,2,0,0]],[[0,2,0,1],[1,2,3,1],[2,3,3,2],[2,2,0,0]],[[0,2,0,2],[1,2,3,2],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,4,2],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,3],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[0,3,1,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[0,3,1,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,2],[0,3,1,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,2],[0,3,1,2],[1,2,2,2]],[[0,2,0,2],[1,2,3,2],[0,3,2,2],[1,2,1,1]],[[0,2,0,1],[1,2,4,2],[0,3,2,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,3],[0,3,2,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[0,3,2,3],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[0,3,2,2],[1,2,1,2]],[[0,2,0,2],[1,2,3,2],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,4,2],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,3],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[0,3,2,3],[1,2,2,0]],[[0,2,0,2],[1,2,3,2],[0,3,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,4,2],[0,3,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,3],[0,3,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[0,3,4,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[0,3,3,0],[1,3,2,1]],[[0,2,0,1],[1,2,3,2],[0,3,3,0],[1,2,3,1]],[[0,2,0,1],[1,2,3,2],[0,3,3,0],[1,2,2,2]],[[0,2,0,2],[1,2,3,2],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,4,2],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,3,3],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[0,3,4,1],[1,2,1,1]],[[0,2,0,2],[1,2,3,2],[0,3,3,1],[1,2,2,0]],[[0,2,0,1],[1,2,4,2],[0,3,3,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,3],[0,3,3,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[0,3,4,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[0,3,3,1],[1,3,2,0]],[[0,2,0,1],[1,2,3,2],[0,3,3,1],[1,2,3,0]],[[0,2,0,2],[1,2,3,2],[1,2,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,4,2],[1,2,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,3],[1,2,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,2,1,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,2,1,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,2,1,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,2],[1,2,1,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,2],[1,2,1,2],[1,2,2,2]],[[0,2,0,2],[1,2,3,2],[1,2,2,2],[1,2,1,1]],[[0,2,0,1],[1,2,4,2],[1,2,2,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,3],[1,2,2,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[1,2,2,3],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[1,2,2,2],[1,2,1,2]],[[0,2,0,2],[1,2,3,2],[1,2,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,4,2],[1,2,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,3],[1,2,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[1,2,2,3],[1,2,2,0]],[[0,2,0,2],[1,2,3,2],[1,2,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,4,2],[1,2,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,3],[1,2,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,0,1],[1,2,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,0,1],[1,2,3,2],[1,2,3,0],[1,2,2,2]],[[0,2,0,2],[1,2,3,2],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,4,2],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,3,3],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[1,2,4,1],[1,2,1,1]],[[0,2,0,2],[1,2,3,2],[1,2,3,1],[1,2,2,0]],[[0,2,0,1],[1,2,4,2],[1,2,3,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,3],[1,2,3,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,0,1],[1,2,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,0,1],[1,2,3,2],[1,2,3,1],[1,2,3,0]],[[0,2,0,2],[1,2,3,2],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[1,2,4,2],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,3],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,4,0,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,0,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,0,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,0,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,0,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,2],[1,3,0,2],[1,2,2,2]],[[0,2,0,2],[1,2,3,2],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[1,2,4,2],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[1,2,3,3],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,1,3],[1,1,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,1,2],[1,1,3,1]],[[0,2,0,1],[1,2,3,2],[1,3,1,2],[1,1,2,2]],[[0,2,0,1],[1,2,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,0,1],[1,2,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,0,1],[1,2,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,0,1],[1,2,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,0,1],[1,2,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,0,2],[1,2,3,2],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[1,2,4,2],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[1,2,3,3],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,2,3],[1,0,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,2,2],[1,0,2,2]],[[0,2,0,2],[1,2,3,2],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[1,2,4,2],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[1,2,3,3],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[1,2,3,2],[1,3,2,3],[1,1,1,1]],[[0,2,0,1],[1,2,3,2],[1,3,2,2],[1,1,1,2]],[[0,2,0,2],[1,2,3,2],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,2,4,2],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,2,3,3],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,2,3,2],[1,3,2,3],[1,1,2,0]],[[0,2,0,2],[1,2,3,2],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[1,2,4,2],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[1,2,3,3],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[1,2,3,2],[1,3,2,3],[1,2,0,1]],[[0,2,0,1],[1,2,3,2],[1,3,2,2],[1,2,0,2]],[[0,2,0,2],[1,2,3,2],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[1,2,4,2],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[1,2,3,3],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[1,2,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,1,1,2],[1,3,2,1],[1,3,1,0]],[[0,2,0,2],[1,2,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[1,2,4,2],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[1,2,3,3],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[1,2,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,0,1],[1,2,3,2],[1,3,3,0],[1,1,2,2]],[[0,2,0,2],[1,2,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,0,1],[1,2,4,2],[1,3,3,0],[1,2,1,1]],[[0,2,0,1],[1,2,3,3],[1,3,3,0],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,0,1],[1,2,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,0,2],[1,2,3,2],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,2,4,2],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,2,3,3],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,2,3,2],[1,3,4,1],[1,0,2,1]],[[0,2,0,2],[1,2,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,2,4,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,2,3,3],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,2,3,2],[1,4,3,1],[1,1,1,1]],[[0,2,0,1],[1,2,3,2],[1,3,4,1],[1,1,1,1]],[[0,2,0,2],[1,2,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,0,1],[1,2,4,2],[1,3,3,1],[1,1,2,0]],[[0,2,0,1],[1,2,3,3],[1,3,3,1],[1,1,2,0]],[[0,2,0,1],[1,2,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,0,1],[1,2,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,0,1],[1,2,3,2],[1,3,3,1],[1,1,3,0]],[[0,2,0,2],[1,2,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[1,2,4,2],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[1,2,3,3],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[1,2,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,0,1],[1,2,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,0,1],[1,2,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,0,1],[1,2,3,2],[1,3,3,1],[1,3,0,1]],[[0,2,0,2],[1,2,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,0,1],[1,2,4,2],[1,3,3,1],[1,2,1,0]],[[0,2,0,1],[1,2,3,3],[1,3,3,1],[1,2,1,0]],[[0,2,0,1],[1,2,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,0,1],[1,2,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,0,1],[1,2,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,0,1],[1,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[1,3,2,1],[2,2,1,0]],[[1,2,2,1],[2,1,1,2],[1,4,2,1],[1,2,1,0]],[[1,2,2,1],[2,1,1,2],[1,3,2,1],[1,3,0,1]],[[1,2,2,1],[2,1,1,2],[1,3,2,1],[2,2,0,1]],[[1,2,2,1],[2,1,1,2],[1,4,2,1],[1,2,0,1]],[[0,2,0,2],[1,2,3,2],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,2,4,2],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,2,3,3],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,2,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,1,1,2],[1,3,2,0],[1,3,1,1]],[[1,2,2,1],[2,1,1,2],[1,3,2,0],[2,2,1,1]],[[1,2,2,1],[2,1,1,2],[1,4,2,0],[1,2,1,1]],[[1,2,2,1],[2,1,1,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[1,3,1,2],[2,2,1,0]],[[1,2,2,1],[2,1,1,2],[1,4,1,2],[1,2,1,0]],[[1,2,2,1],[2,1,1,2],[1,3,1,2],[1,3,0,1]],[[1,2,2,1],[2,1,1,2],[1,3,1,2],[2,2,0,1]],[[1,2,2,1],[2,1,1,2],[1,4,1,2],[1,2,0,1]],[[0,2,0,2],[1,2,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,4,2],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,3],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[3,1,1,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,1,1,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,1,1,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,1,1,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,2],[2,1,1,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,2],[2,1,1,2],[1,2,2,2]],[[0,2,0,2],[1,2,3,2],[2,1,2,2],[1,2,1,1]],[[0,2,0,1],[1,2,4,2],[2,1,2,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,3],[2,1,2,2],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[2,1,2,3],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[2,1,2,2],[1,2,1,2]],[[0,2,0,2],[1,2,3,2],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,4,2],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,3],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[2,1,2,3],[1,2,2,0]],[[0,2,0,2],[1,2,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,4,2],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,3],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[3,1,3,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,1,4,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,1,3,0],[2,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,1,3,0],[1,3,2,1]],[[0,2,0,1],[1,2,3,2],[2,1,3,0],[1,2,3,1]],[[0,2,0,1],[1,2,3,2],[2,1,3,0],[1,2,2,2]],[[0,2,0,2],[1,2,3,2],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,4,2],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,3,3],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[2,1,4,1],[1,2,1,1]],[[0,2,0,2],[1,2,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,0,1],[1,2,4,2],[2,1,3,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,3],[2,1,3,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[3,1,3,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[2,1,4,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[2,1,3,1],[2,2,2,0]],[[0,2,0,1],[1,2,3,2],[2,1,3,1],[1,3,2,0]],[[0,2,0,1],[1,2,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[1,3,1,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[1,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,1,2],[1,3,1,1],[2,2,2,0]],[[1,2,2,1],[2,1,1,2],[1,4,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[1,3,1,0],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[1,3,1,0],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[1,3,1,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[1,3,1,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[1,4,1,0],[1,2,2,1]],[[0,2,0,2],[1,2,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,2,4,2],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,3],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[3,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,0,3],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,0,2],[2,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,0,2],[1,3,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,0,2],[1,2,3,1]],[[0,2,0,1],[1,2,3,2],[2,2,0,2],[1,2,2,2]],[[0,2,0,2],[1,2,3,2],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[1,2,4,2],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[1,2,3,3],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,1,3],[0,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,1,2],[0,3,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,1,2],[0,2,3,1]],[[0,2,0,1],[1,2,3,2],[2,2,1,2],[0,2,2,2]],[[0,2,0,1],[1,2,3,2],[3,2,2,0],[1,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,2,0],[2,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,2,0],[1,3,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,2,0],[1,2,3,1]],[[0,2,0,1],[1,2,3,2],[2,2,2,0],[1,2,2,2]],[[0,2,0,1],[1,2,3,2],[3,2,2,1],[1,2,2,0]],[[0,2,0,1],[1,2,3,2],[2,2,2,1],[2,2,2,0]],[[0,2,0,1],[1,2,3,2],[2,2,2,1],[1,3,2,0]],[[0,2,0,1],[1,2,3,2],[2,2,2,1],[1,2,3,0]],[[0,2,0,2],[1,2,3,2],[2,2,2,2],[0,2,1,1]],[[0,2,0,1],[1,2,4,2],[2,2,2,2],[0,2,1,1]],[[0,2,0,1],[1,2,3,3],[2,2,2,2],[0,2,1,1]],[[0,2,0,1],[1,2,3,2],[2,2,2,3],[0,2,1,1]],[[0,2,0,1],[1,2,3,2],[2,2,2,2],[0,2,1,2]],[[0,2,0,2],[1,2,3,2],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[1,2,4,2],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[1,2,3,3],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[1,2,3,2],[2,2,2,3],[0,2,2,0]],[[0,2,0,2],[1,2,3,2],[2,2,3,0],[0,2,2,1]],[[0,2,0,1],[1,2,4,2],[2,2,3,0],[0,2,2,1]],[[0,2,0,1],[1,2,3,3],[2,2,3,0],[0,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,0,1],[1,2,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,0,1],[1,2,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,0,1],[1,2,3,2],[3,2,3,0],[1,2,1,1]],[[0,2,0,1],[1,2,3,2],[2,2,3,0],[2,2,1,1]],[[0,2,0,1],[1,2,3,2],[2,2,3,0],[1,3,1,1]],[[0,2,0,2],[1,2,3,2],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[1,2,4,2],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[1,2,3,3],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[1,2,3,2],[2,2,4,1],[0,2,1,1]],[[0,2,0,2],[1,2,3,2],[2,2,3,1],[0,2,2,0]],[[0,2,0,1],[1,2,4,2],[2,2,3,1],[0,2,2,0]],[[0,2,0,1],[1,2,3,3],[2,2,3,1],[0,2,2,0]],[[0,2,0,1],[1,2,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,0,1],[1,2,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,0,1],[1,2,3,2],[2,2,3,1],[0,2,3,0]],[[0,2,0,1],[1,2,3,2],[3,2,3,1],[1,2,0,1]],[[0,2,0,1],[1,2,3,2],[2,2,3,1],[2,2,0,1]],[[0,2,0,1],[1,2,3,2],[2,2,3,1],[1,3,0,1]],[[0,2,0,1],[1,2,3,2],[3,2,3,1],[1,2,1,0]],[[0,2,0,1],[1,2,3,2],[2,2,3,1],[2,2,1,0]],[[0,2,0,1],[1,2,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[1,3,0,2],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[1,3,0,2],[1,3,2,0]],[[1,2,2,1],[2,1,1,2],[1,3,0,2],[2,2,2,0]],[[1,2,2,1],[2,1,1,2],[1,4,0,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[1,3,0,2],[1,3,1,1]],[[1,2,2,1],[2,1,1,2],[1,3,0,2],[2,2,1,1]],[[1,2,2,1],[2,1,1,2],[1,4,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,2],[1,3,0,2],[0,2,2,2]],[[1,2,2,1],[2,1,1,2],[1,3,0,2],[0,2,3,1]],[[1,2,2,1],[2,1,1,2],[1,3,0,2],[0,3,2,1]],[[1,2,2,1],[2,1,1,2],[1,3,0,3],[0,2,2,1]],[[1,2,2,1],[2,1,1,2],[1,4,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,1,3],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,1,1,2],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,1,2],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,1,2],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,1,1,2],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,1,2],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,1,2],[1,3,0,1],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[1,3,0,1],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[1,3,0,1],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[1,3,0,1],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[1,4,0,1],[1,2,2,1]],[[0,2,0,2],[1,2,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,2,4,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,2,3,3],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,2,3,2],[3,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,4,0,2],[0,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,0,3],[0,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,0,2],[0,3,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,0,2],[0,2,3,1]],[[0,2,0,1],[1,2,3,2],[2,3,0,2],[0,2,2,2]],[[0,2,0,1],[1,2,3,2],[3,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,2,3,2],[2,4,0,2],[1,1,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,0,2],[2,1,2,1]],[[0,2,0,2],[1,2,3,2],[2,3,1,2],[0,1,2,1]],[[0,2,0,1],[1,2,4,2],[2,3,1,2],[0,1,2,1]],[[0,2,0,1],[1,2,3,3],[2,3,1,2],[0,1,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,1,3],[0,1,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,1,2],[0,1,3,1]],[[0,2,0,1],[1,2,3,2],[2,3,1,2],[0,1,2,2]],[[0,2,0,2],[1,2,3,2],[2,3,1,2],[1,0,2,1]],[[0,2,0,1],[1,2,4,2],[2,3,1,2],[1,0,2,1]],[[0,2,0,1],[1,2,3,3],[2,3,1,2],[1,0,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,1,2],[1,0,3,1]],[[0,2,0,1],[1,2,3,2],[2,3,1,2],[1,0,2,2]],[[0,2,0,1],[1,2,3,2],[3,3,2,0],[0,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,0,1],[1,2,3,2],[3,3,2,0],[1,1,2,1]],[[0,2,0,1],[1,2,3,2],[2,4,2,0],[1,1,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,0],[2,1,2,1]],[[0,2,0,1],[1,2,3,2],[3,3,2,1],[0,2,2,0]],[[0,2,0,1],[1,2,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,0,1],[1,2,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,0,1],[1,2,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,0,1],[1,2,3,2],[3,3,2,1],[1,1,2,0]],[[0,2,0,1],[1,2,3,2],[2,4,2,1],[1,1,2,0]],[[0,2,0,1],[1,2,3,2],[2,3,2,1],[2,1,2,0]],[[0,2,0,2],[1,2,3,2],[2,3,2,2],[0,0,2,1]],[[0,2,0,1],[1,2,4,2],[2,3,2,2],[0,0,2,1]],[[0,2,0,1],[1,2,3,3],[2,3,2,2],[0,0,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,3],[0,0,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,2],[0,0,2,2]],[[0,2,0,2],[1,2,3,2],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[1,2,4,2],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[1,2,3,3],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,3],[0,1,1,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,2],[0,1,1,2]],[[0,2,0,2],[1,2,3,2],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[1,2,4,2],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[1,2,3,3],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[1,2,3,2],[2,3,2,3],[0,1,2,0]],[[0,2,0,2],[1,2,3,2],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[1,2,4,2],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[1,2,3,3],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,3],[0,2,0,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,2],[0,2,0,2]],[[0,2,0,2],[1,2,3,2],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[1,2,4,2],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[1,2,3,3],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[1,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[1,2,4,2],[1,1,1,0]],[[1,2,2,1],[2,1,1,3],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[3,1,1,2],[1,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,1,1,2],[1,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,1,1,2],[1,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,1,1,2],[1,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,1,1,2],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[1,2,3,2],[1,1,0,2]],[[0,2,0,2],[1,2,3,2],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[1,2,4,2],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[1,2,3,3],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,3],[1,0,1,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,2],[1,0,1,2]],[[0,2,0,2],[1,2,3,2],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[1,2,4,2],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[1,2,3,3],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[1,2,3,2],[2,3,2,3],[1,0,2,0]],[[0,2,0,2],[1,2,3,2],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[1,2,4,2],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[1,2,3,3],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,3],[1,1,0,1]],[[0,2,0,1],[1,2,3,2],[2,3,2,2],[1,1,0,2]],[[0,2,0,2],[1,2,3,2],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[1,2,4,2],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[1,2,3,3],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[1,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,1,1,2],[1,2,4,2],[1,1,0,1]],[[1,2,2,1],[2,1,1,3],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[3,1,1,2],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,1,1,2],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,1,1,2],[1,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,1,1,2],[1,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,1,1,2],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,1,2],[1,2,3,2],[1,0,3,0]],[[1,2,2,1],[2,1,1,2],[1,2,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,1,2],[1,2,4,2],[1,0,2,0]],[[1,2,2,1],[2,1,1,3],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[3,1,1,2],[1,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,1,1,2],[1,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,1,2],[1,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,1,2],[1,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,1,2],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,1,2],[1,2,3,2],[1,0,1,2]],[[1,2,2,1],[2,1,1,2],[1,2,3,3],[1,0,1,1]],[[1,2,2,1],[2,1,1,2],[1,2,4,2],[1,0,1,1]],[[1,2,2,1],[2,1,1,3],[1,2,3,2],[1,0,1,1]],[[1,2,2,1],[3,1,1,2],[1,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,1,2],[1,2,3,2],[1,0,1,1]],[[0,2,0,2],[1,2,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[1,2,4,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[1,2,3,3],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[1,2,3,2],[3,3,3,0],[0,1,2,1]],[[0,2,0,1],[1,2,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,0],[0,1,2,2]],[[0,2,0,2],[1,2,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[1,2,4,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[1,2,3,3],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[1,2,3,2],[3,3,3,0],[0,2,1,1]],[[0,2,0,1],[1,2,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,0,1],[1,2,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,0],[0,3,1,1]],[[0,2,0,2],[1,2,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[1,2,4,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[1,2,3,3],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[1,2,3,2],[3,3,3,0],[1,0,2,1]],[[0,2,0,1],[1,2,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,0],[2,0,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,0],[1,0,2,2]],[[0,2,0,2],[1,2,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[1,2,4,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[1,2,3,3],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[1,2,3,2],[3,3,3,0],[1,1,1,1]],[[0,2,0,1],[1,2,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,0,1],[1,2,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,0],[2,1,1,1]],[[0,2,0,1],[1,2,3,2],[3,3,3,0],[1,2,0,1]],[[0,2,0,1],[1,2,3,2],[2,4,3,0],[1,2,0,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,3,1],[2,1,1,2],[1,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,1,2],[1,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,1,2],[1,2,3,2],[1,0,1,1]],[[0,2,0,2],[1,2,3,2],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[1,2,4,2],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[1,2,3,3],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[1,2,3,2],[2,3,4,1],[0,0,2,1]],[[0,2,0,2],[1,2,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[1,2,4,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[1,2,3,3],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[1,2,3,2],[3,3,3,1],[0,1,1,1]],[[0,2,0,1],[1,2,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,0,1],[1,2,3,2],[2,3,4,1],[0,1,1,1]],[[0,2,0,2],[1,2,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[1,2,4,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[1,2,3,3],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[1,2,3,2],[3,3,3,1],[0,1,2,0]],[[0,2,0,1],[1,2,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,0,1],[1,2,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,0,1],[1,2,3,2],[2,3,3,1],[0,1,3,0]],[[0,2,0,2],[1,2,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[1,2,4,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[1,2,3,3],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[1,2,3,2],[3,3,3,1],[0,2,0,1]],[[0,2,0,1],[1,2,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,0,1],[1,2,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,1],[0,3,0,1]],[[0,2,0,2],[1,2,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[1,2,4,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[1,2,3,3],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[1,2,3,2],[3,3,3,1],[0,2,1,0]],[[0,2,0,1],[1,2,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,0,1],[1,2,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,0,1],[1,2,3,2],[2,3,3,1],[0,3,1,0]],[[0,2,0,2],[1,2,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[1,2,4,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[1,2,3,3],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[1,2,3,2],[3,3,3,1],[1,0,1,1]],[[0,2,0,1],[1,2,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,0,1],[1,2,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,1],[2,0,1,1]],[[0,2,0,2],[1,2,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[1,2,4,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[1,2,3,3],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[1,2,3,2],[3,3,3,1],[1,0,2,0]],[[0,2,0,1],[1,2,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,0,1],[1,2,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,0,1],[1,2,3,2],[2,3,3,1],[2,0,2,0]],[[0,2,0,1],[1,2,3,2],[2,3,3,1],[1,0,3,0]],[[0,2,0,2],[1,2,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[1,2,4,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[1,2,3,3],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[1,2,3,2],[3,3,3,1],[1,1,0,1]],[[0,2,0,1],[1,2,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,0,1],[1,2,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,1],[2,1,0,1]],[[0,2,0,2],[1,2,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[1,2,4,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[1,2,3,3],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[1,2,3,2],[3,3,3,1],[1,1,1,0]],[[0,2,0,1],[1,2,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,0,1],[1,2,3,2],[2,3,4,1],[1,1,1,0]],[[0,2,0,1],[1,2,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[2,1,1,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[1,2,4,2],[0,2,1,0]],[[1,2,2,1],[2,1,1,3],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,1,1,2],[1,2,3,2],[0,2,1,0]],[[1,2,2,2],[2,1,1,2],[1,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,1,1,2],[1,2,3,2],[0,2,1,0]],[[0,2,0,1],[1,2,3,2],[3,3,3,1],[1,2,0,0]],[[0,2,0,1],[1,2,3,2],[2,4,3,1],[1,2,0,0]],[[0,2,0,1],[1,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,3,2,1],[2,1,1,2],[1,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,1,1,2],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[1,2,3,2],[0,2,0,2]],[[1,2,2,1],[2,1,1,2],[1,2,3,3],[0,2,0,1]],[[1,2,2,1],[2,1,1,2],[1,2,4,2],[0,2,0,1]],[[1,2,2,1],[2,1,1,3],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[3,1,1,2],[1,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,1,1,2],[1,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,1,1,2],[1,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,1,1,2],[1,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,1,1,2],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,1,1,2],[1,2,3,2],[0,1,3,0]],[[1,2,2,1],[2,1,1,2],[1,2,3,3],[0,1,2,0]],[[1,2,2,1],[2,1,1,2],[1,2,4,2],[0,1,2,0]],[[1,2,2,1],[2,1,1,3],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[3,1,1,2],[1,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,1,2],[1,2,3,2],[0,1,2,0]],[[0,2,0,2],[1,2,3,2],[2,3,3,2],[0,1,0,1]],[[0,2,0,1],[1,2,4,2],[2,3,3,2],[0,1,0,1]],[[0,2,0,1],[1,2,3,3],[2,3,3,2],[0,1,0,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,3,1],[2,1,1,2],[1,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,1,2],[1,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,1,2],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,1,2],[1,2,3,2],[0,1,1,2]],[[1,2,2,1],[2,1,1,2],[1,2,3,3],[0,1,1,1]],[[1,2,2,1],[2,1,1,2],[1,2,4,2],[0,1,1,1]],[[1,2,2,1],[2,1,1,3],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[3,1,1,2],[1,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,1,2],[1,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,1,2],[1,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,1,2],[1,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,1,1,2],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,1,2],[1,2,3,2],[0,0,2,2]],[[1,2,2,1],[2,1,1,2],[1,2,3,3],[0,0,2,1]],[[1,2,2,1],[2,1,1,2],[1,2,4,2],[0,0,2,1]],[[1,2,2,1],[2,1,1,3],[1,2,3,2],[0,0,2,1]],[[1,2,2,1],[3,1,1,2],[1,2,3,2],[0,0,2,1]],[[1,2,2,2],[2,1,1,2],[1,2,3,2],[0,0,2,1]],[[1,2,3,1],[2,1,1,2],[1,2,3,2],[0,0,2,1]],[[1,3,2,1],[2,1,1,2],[1,2,3,2],[0,0,2,1]],[[2,2,2,1],[2,1,1,2],[1,2,3,2],[0,0,2,1]],[[1,2,2,1],[2,1,1,2],[1,2,3,1],[1,0,2,2]],[[1,2,2,1],[2,1,1,2],[1,2,3,1],[1,0,3,1]],[[1,2,2,1],[2,1,1,2],[1,2,4,1],[1,0,2,1]],[[1,2,2,1],[2,1,1,2],[1,2,3,1],[0,1,2,2]],[[1,2,2,1],[2,1,1,2],[1,2,3,1],[0,1,3,1]],[[0,2,0,2],[1,2,3,2],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[1,2,4,2],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[1,2,3,3],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[1,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,1,1,2],[1,2,4,1],[0,1,2,1]],[[1,2,2,1],[2,1,1,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,1,2],[1,2,2,2],[1,0,3,1]],[[1,2,2,1],[2,1,1,2],[1,2,2,3],[1,0,2,1]],[[1,2,2,1],[2,1,1,3],[1,2,2,2],[1,0,2,1]],[[1,2,2,1],[3,1,1,2],[1,2,2,2],[1,0,2,1]],[[1,2,2,2],[2,1,1,2],[1,2,2,2],[1,0,2,1]],[[1,2,3,1],[2,1,1,2],[1,2,2,2],[1,0,2,1]],[[1,3,2,1],[2,1,1,2],[1,2,2,2],[1,0,2,1]],[[2,2,2,1],[2,1,1,2],[1,2,2,2],[1,0,2,1]],[[1,2,2,1],[2,1,1,2],[1,2,2,2],[0,1,2,2]],[[1,2,2,1],[2,1,1,2],[1,2,2,2],[0,1,3,1]],[[1,2,2,1],[2,1,1,2],[1,2,2,3],[0,1,2,1]],[[1,2,2,1],[2,1,1,3],[1,2,2,2],[0,1,2,1]],[[1,2,2,1],[3,1,1,2],[1,2,2,2],[0,1,2,1]],[[1,2,2,2],[2,1,1,2],[1,2,2,2],[0,1,2,1]],[[1,2,3,1],[2,1,1,2],[1,2,2,2],[0,1,2,1]],[[1,3,2,1],[2,1,1,2],[1,2,2,2],[0,1,2,1]],[[2,2,2,1],[2,1,1,2],[1,2,2,2],[0,1,2,1]],[[1,2,2,1],[2,1,1,2],[1,2,0,2],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[1,2,0,2],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[1,2,0,2],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[1,2,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[1,2,0,3],[1,2,2,1]],[[1,2,2,1],[2,1,1,3],[1,2,0,2],[1,2,2,1]],[[1,2,2,1],[3,1,1,2],[1,2,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,1,2],[1,2,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,1,2],[1,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,1,2],[1,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,1,2],[1,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,0,1],[1,4,3,2],[1,2,2,1]],[[0,2,0,1],[1,3,0,1],[1,3,3,2],[2,2,2,1]],[[0,2,0,1],[1,3,0,1],[1,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,0,1],[1,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,0,1],[1,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,0,1],[3,2,3,2],[1,2,2,1]],[[0,2,0,1],[1,3,0,1],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[1,3,0,1],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,0,1],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,0,1],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,0,1],[3,3,3,2],[0,2,2,1]],[[0,2,0,1],[1,3,0,1],[2,4,3,2],[0,2,2,1]],[[0,2,0,1],[1,3,0,1],[2,3,3,2],[0,3,2,1]],[[0,2,0,1],[1,3,0,1],[2,3,3,2],[0,2,3,1]],[[0,2,0,1],[1,3,0,1],[2,3,3,2],[0,2,2,2]],[[0,2,0,1],[1,3,0,1],[3,3,3,2],[1,1,2,1]],[[0,2,0,1],[1,3,0,1],[2,4,3,2],[1,1,2,1]],[[0,2,0,1],[1,3,0,1],[2,3,3,2],[2,1,2,1]],[[0,2,0,1],[1,3,0,2],[0,3,3,3],[1,2,2,1]],[[0,2,0,1],[1,3,0,2],[0,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,0,2],[0,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,0,2],[0,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,0,2],[1,2,3,3],[1,2,2,1]],[[0,2,0,1],[1,3,0,2],[1,2,3,2],[2,2,2,1]],[[0,2,0,1],[1,3,0,2],[1,2,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,0,2],[1,2,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,0,2],[1,2,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,0,2],[1,4,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,0,2],[1,3,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,0,2],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,0,2],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,0,2],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,0,2],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[1,3,0,2],[1,4,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,0,2],[1,3,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,0,2],[1,3,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,0,2],[1,3,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,0,2],[1,3,3,1],[1,2,2,2]],[[0,2,0,1],[1,3,0,2],[1,3,3,3],[1,1,2,1]],[[0,2,0,1],[1,3,0,2],[1,3,3,2],[1,1,3,1]],[[0,2,0,1],[1,3,0,2],[1,3,3,2],[1,1,2,2]],[[0,2,0,1],[1,3,0,2],[1,4,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,0,2],[1,3,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,0,2],[1,3,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,0,2],[1,3,3,2],[1,2,3,0]],[[0,2,0,1],[1,3,0,2],[3,1,3,2],[1,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,1,3,3],[1,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,1,3,2],[2,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,1,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,0,2],[2,1,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,0,2],[2,1,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,0,2],[3,2,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,2,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,0,2],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,0,2],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[1,3,0,2],[3,2,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,2,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,2,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,0,2],[2,2,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,0,2],[2,2,3,1],[1,2,2,2]],[[0,2,0,1],[1,3,0,2],[2,2,3,3],[0,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,2,3,2],[0,3,2,1]],[[0,2,0,1],[1,3,0,2],[2,2,3,2],[0,2,3,1]],[[0,2,0,1],[1,3,0,2],[2,2,3,2],[0,2,2,2]],[[0,2,0,1],[1,3,0,2],[3,2,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,0,2],[2,2,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,0,2],[2,2,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,0,2],[2,2,3,2],[1,2,3,0]],[[0,2,0,1],[1,3,0,2],[3,3,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,4,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,3,2,3],[0,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[1,3,0,2],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[1,3,0,2],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[1,3,0,2],[3,3,2,2],[1,1,2,1]],[[0,2,0,1],[1,3,0,2],[2,4,2,2],[1,1,2,1]],[[0,2,0,1],[1,3,0,2],[2,3,2,2],[2,1,2,1]],[[0,2,0,1],[1,3,0,2],[3,3,3,1],[0,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,4,3,1],[0,2,2,1]],[[0,2,0,1],[1,3,0,2],[2,3,3,1],[0,3,2,1]],[[0,2,0,1],[1,3,0,2],[2,3,3,1],[0,2,3,1]],[[0,2,0,1],[1,3,0,2],[2,3,3,1],[0,2,2,2]],[[0,2,0,1],[1,3,0,2],[3,3,3,1],[1,1,2,1]],[[0,2,0,1],[1,3,0,2],[2,4,3,1],[1,1,2,1]],[[0,2,0,1],[1,3,0,2],[2,3,3,1],[2,1,2,1]],[[0,2,0,1],[1,3,0,2],[2,3,3,3],[0,1,2,1]],[[0,2,0,1],[1,3,0,2],[2,3,3,2],[0,1,3,1]],[[0,2,0,1],[1,3,0,2],[2,3,3,2],[0,1,2,2]],[[0,2,0,1],[1,3,0,2],[3,3,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,0,2],[2,4,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,0,2],[2,3,3,2],[0,3,2,0]],[[0,2,0,1],[1,3,0,2],[2,3,3,2],[0,2,3,0]],[[0,2,0,1],[1,3,0,2],[2,3,3,3],[1,0,2,1]],[[0,2,0,1],[1,3,0,2],[2,3,3,2],[1,0,3,1]],[[0,2,0,1],[1,3,0,2],[2,3,3,2],[1,0,2,2]],[[0,2,0,1],[1,3,0,2],[3,3,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,0,2],[2,4,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,0,2],[2,3,3,2],[2,1,2,0]],[[0,2,0,1],[1,3,1,0],[1,4,3,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,0],[1,3,3,2],[2,2,2,1]],[[0,2,0,1],[1,3,1,0],[1,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,1,0],[1,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,1,0],[1,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,1,0],[3,2,3,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,0],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[1,3,1,0],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,1,0],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,1,0],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,1,0],[3,3,3,2],[0,2,2,1]],[[0,2,0,1],[1,3,1,0],[2,4,3,2],[0,2,2,1]],[[0,2,0,1],[1,3,1,0],[2,3,3,2],[0,3,2,1]],[[0,2,0,1],[1,3,1,0],[2,3,3,2],[0,2,3,1]],[[0,2,0,1],[1,3,1,0],[2,3,3,2],[0,2,2,2]],[[0,2,0,1],[1,3,1,0],[3,3,3,2],[1,1,2,1]],[[0,2,0,1],[1,3,1,0],[2,4,3,2],[1,1,2,1]],[[0,2,0,1],[1,3,1,0],[2,3,3,2],[2,1,2,1]],[[0,2,0,1],[1,3,1,1],[1,4,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,1,1],[1,3,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,1,1],[1,3,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,1,1],[1,3,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,1,1],[1,3,3,1],[1,2,2,2]],[[0,2,0,1],[1,3,1,1],[1,4,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,1],[1,3,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,1,1],[1,3,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,1,1],[1,3,3,2],[1,2,3,0]],[[0,2,0,1],[1,3,1,1],[3,2,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,1,1],[2,2,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,1,1],[2,2,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,1,1],[2,2,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,1,1],[2,2,3,1],[1,2,2,2]],[[0,2,0,1],[1,3,1,1],[3,2,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,1],[2,2,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,1,1],[2,2,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,1,1],[2,2,3,2],[1,2,3,0]],[[0,2,0,1],[1,3,1,1],[3,3,3,1],[0,2,2,1]],[[0,2,0,1],[1,3,1,1],[2,4,3,1],[0,2,2,1]],[[0,2,0,1],[1,3,1,1],[2,3,3,1],[0,3,2,1]],[[0,2,0,1],[1,3,1,1],[2,3,3,1],[0,2,3,1]],[[0,2,0,1],[1,3,1,1],[2,3,3,1],[0,2,2,2]],[[0,2,0,1],[1,3,1,1],[3,3,3,1],[1,1,2,1]],[[0,2,0,1],[1,3,1,1],[2,4,3,1],[1,1,2,1]],[[0,2,0,1],[1,3,1,1],[2,3,3,1],[2,1,2,1]],[[0,2,0,1],[1,3,1,1],[3,3,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,1,1],[2,4,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,1,1],[2,3,3,2],[0,3,2,0]],[[0,2,0,1],[1,3,1,1],[2,3,3,2],[0,2,3,0]],[[0,2,0,1],[1,3,1,1],[3,3,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,1,1],[2,4,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[2,1,1,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,1,2],[1,1,3,2],[0,3,2,0]],[[1,2,2,1],[2,1,1,2],[1,1,3,3],[0,2,2,0]],[[1,2,2,1],[2,1,1,2],[1,1,4,2],[0,2,2,0]],[[1,2,2,1],[2,1,1,3],[1,1,3,2],[0,2,2,0]],[[0,2,0,2],[1,3,1,2],[0,3,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,3],[0,3,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[0,3,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[0,3,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,1,2],[0,3,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,1,2],[0,3,2,2],[1,2,2,2]],[[0,2,0,1],[1,3,1,2],[0,3,4,1],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[0,3,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,1,2],[0,3,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,1,2],[0,3,3,1],[1,2,2,2]],[[0,2,0,2],[1,3,1,2],[0,3,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,1,3],[0,3,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[0,3,4,2],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[0,3,3,3],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[0,3,3,2],[1,2,1,2]],[[0,2,0,2],[1,3,1,2],[0,3,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,3],[0,3,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[0,3,4,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[0,3,3,3],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[0,3,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,1,2],[0,3,3,2],[1,2,3,0]],[[0,2,0,2],[1,3,1,2],[1,2,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,3],[1,2,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,2,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,2,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,2,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,1,2],[1,2,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,1,2],[1,2,2,2],[1,2,2,2]],[[0,2,0,1],[1,3,1,2],[1,2,4,1],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,2,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,2,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,1,2],[1,2,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,1,2],[1,2,3,1],[1,2,2,2]],[[0,2,0,2],[1,3,1,2],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,1,3],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[1,2,4,2],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[1,2,3,3],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[1,2,3,2],[1,2,1,2]],[[0,2,0,2],[1,3,1,2],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,3],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[1,2,4,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[1,2,3,3],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[1,2,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,1,2],[1,2,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,1,2],[1,2,3,2],[1,2,3,0]],[[0,3,0,1],[1,3,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,0,2],[1,3,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[1,4,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,3],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,1,3],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[1,3,1,2],[1,3,1,2],[1,2,2,2]],[[0,3,0,1],[1,3,1,2],[1,3,2,1],[1,2,2,1]],[[0,2,0,1],[1,4,1,2],[1,3,2,1],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[1,3,1,2],[1,3,2,1],[1,2,2,2]],[[0,2,0,2],[1,3,1,2],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[1,3,1,3],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,2,3],[1,1,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,2,2],[1,1,3,1]],[[0,2,0,1],[1,3,1,2],[1,3,2,2],[1,1,2,2]],[[0,3,0,1],[1,3,1,2],[1,3,2,2],[1,2,2,0]],[[0,2,0,1],[1,4,1,2],[1,3,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[1,3,1,2],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[1,3,1,2],[1,3,2,2],[1,2,3,0]],[[0,3,0,1],[1,3,1,2],[1,3,3,1],[1,1,2,1]],[[0,2,0,1],[1,4,1,2],[1,3,3,1],[1,1,2,1]],[[0,2,0,1],[1,3,1,2],[1,4,3,1],[1,1,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,4,1],[1,1,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,1],[1,1,3,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,1],[1,1,2,2]],[[0,3,0,1],[1,3,1,2],[1,3,3,1],[1,2,1,1]],[[0,2,0,1],[1,4,1,2],[1,3,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[1,3,4,1],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,1],[1,3,1,1]],[[0,2,0,2],[1,3,1,2],[1,3,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,1,3],[1,3,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,4,2],[1,0,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,3],[1,0,2,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,2],[1,0,2,2]],[[0,3,0,1],[1,3,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,0,2],[1,3,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[1,4,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,1,3],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,1,2],[1,4,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,1,2],[1,3,4,2],[1,1,1,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,3],[1,1,1,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,2],[1,1,1,2]],[[0,3,0,1],[1,3,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,0,2],[1,3,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[1,4,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,1,3],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,1,2],[1,4,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,1,2],[1,3,4,2],[1,1,2,0]],[[0,2,0,1],[1,3,1,2],[1,3,3,3],[1,1,2,0]],[[0,2,0,1],[1,3,1,2],[1,3,3,2],[1,1,3,0]],[[0,3,0,1],[1,3,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,0,2],[1,3,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[1,4,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,1,3],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,1,2],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,1,2],[1,3,4,2],[1,2,0,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,3],[1,2,0,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[1,3,1,2],[1,3,3,2],[1,2,0,2]],[[0,3,0,1],[1,3,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,0,2],[1,3,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[1,4,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[1,3,1,3],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[1,3,1,2],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[1,3,1,2],[1,3,4,2],[1,2,1,0]],[[0,2,0,1],[1,3,1,2],[1,3,3,3],[1,2,1,0]],[[0,2,0,1],[1,3,1,2],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[1,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,1,1,2],[1,1,3,2],[0,2,2,0]],[[1,2,2,2],[2,1,1,2],[1,1,3,2],[0,2,2,0]],[[1,2,3,1],[2,1,1,2],[1,1,3,2],[0,2,2,0]],[[1,3,2,1],[2,1,1,2],[1,1,3,2],[0,2,2,0]],[[2,2,2,1],[2,1,1,2],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,1,2],[1,1,3,2],[0,2,1,2]],[[1,2,2,1],[2,1,1,2],[1,1,3,3],[0,2,1,1]],[[1,2,2,1],[2,1,1,2],[1,1,4,2],[0,2,1,1]],[[1,2,2,1],[2,1,1,3],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[3,1,1,2],[1,1,3,2],[0,2,1,1]],[[1,2,2,2],[2,1,1,2],[1,1,3,2],[0,2,1,1]],[[0,2,0,2],[1,3,1,2],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,3],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[3,1,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,1,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,1,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,1,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,1,2],[2,1,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,1,2],[2,1,2,2],[1,2,2,2]],[[0,2,0,1],[1,3,1,2],[3,1,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,1,4,1],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,1,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,1,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,1,2],[2,1,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,1,2],[2,1,3,1],[1,2,2,2]],[[0,2,0,2],[1,3,1,2],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,1,3],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[2,1,4,2],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[2,1,3,3],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[2,1,3,2],[1,2,1,2]],[[0,2,0,2],[1,3,1,2],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,3],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[3,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,1,4,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,1,3,3],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,1,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,1,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,1,2],[2,1,3,2],[1,2,3,0]],[[0,2,0,2],[1,3,1,2],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,3],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[3,2,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,1,3],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,1,2],[2,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,1,2],[1,3,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,1,2],[1,2,3,1]],[[0,2,0,1],[1,3,1,2],[2,2,1,2],[1,2,2,2]],[[0,2,0,1],[1,3,1,2],[3,2,2,1],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,2,1],[2,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,2,1],[1,3,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,2,1],[1,2,3,1]],[[0,2,0,1],[1,3,1,2],[2,2,2,1],[1,2,2,2]],[[0,2,0,2],[1,3,1,2],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,1,3],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,2,3],[0,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,2,2],[0,3,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,2,2],[0,2,3,1]],[[0,2,0,1],[1,3,1,2],[2,2,2,2],[0,2,2,2]],[[0,2,0,1],[1,3,1,2],[3,2,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,2,2,2],[2,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,2,2,2],[1,3,2,0]],[[0,2,0,1],[1,3,1,2],[2,2,2,2],[1,2,3,0]],[[0,2,0,1],[1,3,1,2],[2,2,4,1],[0,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,3,1],[0,3,2,1]],[[0,2,0,1],[1,3,1,2],[2,2,3,1],[0,2,3,1]],[[0,2,0,1],[1,3,1,2],[2,2,3,1],[0,2,2,2]],[[0,2,0,1],[1,3,1,2],[3,2,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,1,2],[2,2,3,1],[2,2,1,1]],[[0,2,0,1],[1,3,1,2],[2,2,3,1],[1,3,1,1]],[[0,2,0,2],[1,3,1,2],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,1,3],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,1,2],[2,2,4,2],[0,2,1,1]],[[0,2,0,1],[1,3,1,2],[2,2,3,3],[0,2,1,1]],[[0,2,0,1],[1,3,1,2],[2,2,3,2],[0,2,1,2]],[[0,2,0,2],[1,3,1,2],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,1,3],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,2,4,2],[0,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,2,3,3],[0,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,2,3,2],[0,3,2,0]],[[0,2,0,1],[1,3,1,2],[2,2,3,2],[0,2,3,0]],[[0,2,0,1],[1,3,1,2],[3,2,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,1,2],[2,2,3,2],[2,2,0,1]],[[0,2,0,1],[1,3,1,2],[2,2,3,2],[1,3,0,1]],[[0,2,0,1],[1,3,1,2],[3,2,3,2],[1,2,1,0]],[[0,2,0,1],[1,3,1,2],[2,2,3,2],[2,2,1,0]],[[0,2,0,1],[1,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,3,1],[2,1,1,2],[1,1,3,2],[0,2,1,1]],[[1,3,2,1],[2,1,1,2],[1,1,3,2],[0,2,1,1]],[[2,2,2,1],[2,1,1,2],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,1,2],[1,1,3,1],[0,2,2,2]],[[0,2,0,1],[1,3,1,2],[3,3,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,0,2],[2,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,0,2],[1,3,2,1]],[[0,2,0,1],[1,3,1,2],[3,3,1,1],[1,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,1,1],[2,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,1,1],[1,3,2,1]],[[0,3,0,1],[1,3,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,0,2],[1,3,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[1,4,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[1,3,1,3],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[1,3,1,2],[3,3,1,2],[0,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,1,3],[0,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[1,3,1,2],[2,3,1,2],[0,2,2,2]],[[0,3,0,1],[1,3,1,2],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[1,4,1,2],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[1,3,1,2],[3,3,1,2],[1,1,2,1]],[[0,2,0,1],[1,3,1,2],[2,4,1,2],[1,1,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,1,2],[2,1,2,1]],[[0,2,0,1],[1,3,1,2],[3,3,1,2],[1,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,1,2],[2,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,1,2],[1,3,2,0]],[[0,3,0,1],[1,3,1,2],[2,3,2,1],[0,2,2,1]],[[0,2,0,1],[1,4,1,2],[2,3,2,1],[0,2,2,1]],[[0,2,0,1],[1,3,1,2],[3,3,2,1],[0,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[1,3,1,2],[2,3,2,1],[0,2,2,2]],[[0,3,0,1],[1,3,1,2],[2,3,2,1],[1,1,2,1]],[[0,2,0,1],[1,4,1,2],[2,3,2,1],[1,1,2,1]],[[0,2,0,1],[1,3,1,2],[3,3,2,1],[1,1,2,1]],[[0,2,0,1],[1,3,1,2],[2,4,2,1],[1,1,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,2,1],[2,1,2,1]],[[0,2,0,2],[1,3,1,2],[2,3,2,2],[0,1,2,1]],[[0,2,0,1],[1,3,1,3],[2,3,2,2],[0,1,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,2,3],[0,1,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,2,2],[0,1,3,1]],[[0,2,0,1],[1,3,1,2],[2,3,2,2],[0,1,2,2]],[[0,3,0,1],[1,3,1,2],[2,3,2,2],[0,2,2,0]],[[0,2,0,1],[1,4,1,2],[2,3,2,2],[0,2,2,0]],[[0,2,0,1],[1,3,1,2],[3,3,2,2],[0,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,2,2],[0,2,3,0]],[[0,2,0,2],[1,3,1,2],[2,3,2,2],[1,0,2,1]],[[0,2,0,1],[1,3,1,3],[2,3,2,2],[1,0,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,2,3],[1,0,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,2,2],[1,0,3,1]],[[0,2,0,1],[1,3,1,2],[2,3,2,2],[1,0,2,2]],[[0,3,0,1],[1,3,1,2],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,4,1,2],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,3,1,2],[3,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,3,1,2],[2,4,2,2],[1,1,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,1,1,2],[1,1,3,1],[0,2,3,1]],[[1,2,2,1],[2,1,1,2],[1,1,3,1],[0,3,2,1]],[[1,2,2,1],[2,1,1,2],[1,1,4,1],[0,2,2,1]],[[0,3,0,1],[1,3,1,2],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[1,4,1,2],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[1,3,1,2],[3,3,3,1],[0,1,2,1]],[[0,2,0,1],[1,3,1,2],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,4,1],[0,1,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,1],[0,1,3,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,1],[0,1,2,2]],[[0,3,0,1],[1,3,1,2],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[1,4,1,2],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[1,3,1,2],[3,3,3,1],[0,2,1,1]],[[0,2,0,1],[1,3,1,2],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[1,3,1,2],[2,3,4,1],[0,2,1,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,1],[0,3,1,1]],[[0,3,0,1],[1,3,1,2],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,4,1,2],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,3,1,2],[3,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,3,1,2],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,4,1],[1,0,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,1],[2,0,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,1],[1,0,3,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,1],[1,0,2,2]],[[0,3,0,1],[1,3,1,2],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,4,1,2],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,1,2],[3,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,1,2],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,1,2],[2,3,4,1],[1,1,1,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,1],[2,1,1,1]],[[0,2,0,1],[1,3,1,2],[3,3,3,1],[1,2,0,1]],[[0,2,0,1],[1,3,1,2],[2,4,3,1],[1,2,0,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,1,2],[1,1,2,2],[0,2,2,2]],[[1,2,2,1],[2,1,1,2],[1,1,2,2],[0,2,3,1]],[[1,2,2,1],[2,1,1,2],[1,1,2,2],[0,3,2,1]],[[1,2,2,1],[2,1,1,2],[1,1,2,3],[0,2,2,1]],[[1,2,2,1],[2,1,1,3],[1,1,2,2],[0,2,2,1]],[[1,2,2,1],[3,1,1,2],[1,1,2,2],[0,2,2,1]],[[0,2,0,2],[1,3,1,2],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[1,3,1,3],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,4,2],[0,0,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,3],[0,0,2,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[0,0,2,2]],[[0,3,0,1],[1,3,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,0,2],[1,3,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,4,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,1,3],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,1,2],[3,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,1,2],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,1,2],[2,3,4,2],[0,1,1,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,3],[0,1,1,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[0,1,1,2]],[[0,3,0,1],[1,3,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,0,2],[1,3,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,4,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,1,3],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,1,2],[3,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,1,2],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,4,2],[0,1,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,3,3],[0,1,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[0,1,3,0]],[[0,3,0,1],[1,3,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,0,2],[1,3,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,4,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,3,1,3],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,3,1,2],[3,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,3,1,2],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[1,3,1,2],[2,3,4,2],[0,2,0,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,3],[0,2,0,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[0,2,0,2]],[[0,3,0,1],[1,3,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,0,2],[1,3,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,4,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,1,3],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,1,2],[3,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,1,2],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,1,2],[2,3,4,2],[0,2,1,0]],[[0,2,0,1],[1,3,1,2],[2,3,3,3],[0,2,1,0]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,2],[2,1,1,2],[1,1,2,2],[0,2,2,1]],[[1,2,3,1],[2,1,1,2],[1,1,2,2],[0,2,2,1]],[[1,3,2,1],[2,1,1,2],[1,1,2,2],[0,2,2,1]],[[2,2,2,1],[2,1,1,2],[1,1,2,2],[0,2,2,1]],[[0,3,0,1],[1,3,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,0,2],[1,3,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,4,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,1,3],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,1,2],[3,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,1,2],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,1,2],[2,3,4,2],[1,0,1,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,3],[1,0,1,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[2,0,1,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[1,0,1,2]],[[0,3,0,1],[1,3,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,0,2],[1,3,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,4,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,1,3],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,1,2],[3,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,1,2],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,4,2],[1,0,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,3,3],[1,0,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[2,0,2,0]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[1,0,3,0]],[[0,3,0,1],[1,3,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,0,2],[1,3,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,4,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,1,3],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,1,2],[3,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,1,2],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,1,2],[2,3,4,2],[1,1,0,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,3],[1,1,0,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[2,1,0,1]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[1,1,0,2]],[[0,3,0,1],[1,3,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,0,2],[1,3,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,4,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,3,1,3],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,3,1,2],[3,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,3,1,2],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[1,3,1,2],[2,3,4,2],[1,1,1,0]],[[0,2,0,1],[1,3,1,2],[2,3,3,3],[1,1,1,0]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,1,1,2],[1,0,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[1,0,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,1,2],[1,0,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,1,2],[1,0,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[1,0,4,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,3],[1,0,3,2],[1,2,2,0]],[[0,3,0,1],[1,3,1,2],[2,3,3,2],[1,2,0,0]],[[0,2,0,1],[1,4,1,2],[2,3,3,2],[1,2,0,0]],[[0,2,0,1],[1,3,1,2],[3,3,3,2],[1,2,0,0]],[[0,2,0,1],[1,3,1,2],[2,4,3,2],[1,2,0,0]],[[0,2,0,1],[1,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[3,1,1,2],[1,0,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,1,2],[1,0,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,1,2],[1,0,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,1,2],[1,0,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,1,2],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[1,0,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,1,2],[1,0,3,3],[1,2,1,1]],[[1,2,2,1],[2,1,1,2],[1,0,4,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,3],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[3,1,1,2],[1,0,3,2],[1,2,1,1]],[[1,2,2,2],[2,1,1,2],[1,0,3,2],[1,2,1,1]],[[1,2,3,1],[2,1,1,2],[1,0,3,2],[1,2,1,1]],[[1,3,2,1],[2,1,1,2],[1,0,3,2],[1,2,1,1]],[[2,2,2,1],[2,1,1,2],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[2,1,1,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,1],[2,1,1,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,1],[2,1,1,3],[1,0,3,2],[0,2,2,1]],[[1,2,2,2],[2,1,1,2],[1,0,3,2],[0,2,2,1]],[[1,2,3,1],[2,1,1,2],[1,0,3,2],[0,2,2,1]],[[1,3,2,1],[2,1,1,2],[1,0,3,2],[0,2,2,1]],[[2,2,2,1],[2,1,1,2],[1,0,3,2],[0,2,2,1]],[[1,2,2,1],[2,1,1,2],[1,0,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[1,0,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[1,0,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[1,0,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[1,0,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,2],[1,0,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[1,0,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[1,0,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[1,0,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[1,0,2,3],[1,2,2,1]],[[1,2,2,1],[2,1,1,3],[1,0,2,2],[1,2,2,1]],[[1,2,2,1],[3,1,1,2],[1,0,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,0],[0,3,4,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,0],[0,3,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,0],[0,3,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,0],[0,3,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,2,0],[1,2,4,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,0],[1,2,3,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,0],[1,2,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,0],[1,2,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,0],[1,2,3,2],[1,2,2,2]],[[0,2,0,1],[1,4,2,0],[1,3,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,0],[1,4,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,0],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,0],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,0],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,0],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[1,4,2,0],[1,3,3,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,0],[1,4,3,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,0],[1,3,4,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,0],[1,3,3,2],[1,1,3,1]],[[0,2,0,1],[1,3,2,0],[1,3,3,2],[1,1,2,2]],[[0,2,0,1],[1,4,2,0],[1,3,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,0],[1,4,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,0],[1,3,4,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,0],[1,3,3,2],[2,2,1,1]],[[0,2,0,1],[1,3,2,0],[1,3,3,2],[1,3,1,1]],[[0,2,0,1],[1,3,2,0],[3,1,3,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,0],[2,1,4,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,0],[2,1,3,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,0],[2,1,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,0],[2,1,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,0],[2,1,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,2,0],[3,2,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,0],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,0],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,0],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,0],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[1,3,2,0],[2,2,4,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,0],[2,2,3,2],[0,3,2,1]],[[0,2,0,1],[1,3,2,0],[2,2,3,2],[0,2,3,1]],[[0,2,0,1],[1,3,2,0],[2,2,3,2],[0,2,2,2]],[[0,2,0,1],[1,3,2,0],[3,2,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,0],[2,2,3,2],[2,2,1,1]],[[0,2,0,1],[1,3,2,0],[2,2,3,2],[1,3,1,1]],[[0,2,0,1],[1,3,2,0],[3,3,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,0],[2,3,1,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,0],[2,3,1,2],[1,3,2,1]],[[0,2,0,1],[1,4,2,0],[2,3,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,0],[3,3,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,0],[2,4,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,0],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[1,3,2,0],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[1,3,2,0],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[1,4,2,0],[2,3,2,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,0],[3,3,2,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,0],[2,4,2,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,0],[2,3,2,2],[2,1,2,1]],[[0,2,0,1],[1,4,2,0],[2,3,3,2],[0,1,2,1]],[[0,2,0,1],[1,3,2,0],[3,3,3,2],[0,1,2,1]],[[0,2,0,1],[1,3,2,0],[2,4,3,2],[0,1,2,1]],[[0,2,0,1],[1,3,2,0],[2,3,4,2],[0,1,2,1]],[[0,2,0,1],[1,3,2,0],[2,3,3,2],[0,1,3,1]],[[0,2,0,1],[1,3,2,0],[2,3,3,2],[0,1,2,2]],[[0,2,0,1],[1,4,2,0],[2,3,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,2,0],[3,3,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,2,0],[2,4,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,2,0],[2,3,4,2],[0,2,1,1]],[[0,2,0,1],[1,3,2,0],[2,3,3,2],[0,3,1,1]],[[0,2,0,1],[1,4,2,0],[2,3,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,2,0],[3,3,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,2,0],[2,4,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,2,0],[2,3,4,2],[1,0,2,1]],[[0,2,0,1],[1,3,2,0],[2,3,3,2],[2,0,2,1]],[[0,2,0,1],[1,3,2,0],[2,3,3,2],[1,0,3,1]],[[0,2,0,1],[1,3,2,0],[2,3,3,2],[1,0,2,2]],[[0,2,0,1],[1,4,2,0],[2,3,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,2,0],[3,3,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,2,0],[2,4,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,2,0],[2,3,4,2],[1,1,1,1]],[[0,2,0,1],[1,3,2,0],[2,3,3,2],[2,1,1,1]],[[0,2,0,1],[1,3,2,0],[3,3,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,2,0],[2,4,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,2],[2,1,1,2],[1,0,2,2],[1,2,2,1]],[[1,2,3,1],[2,1,1,2],[1,0,2,2],[1,2,2,1]],[[1,3,2,1],[2,1,1,2],[1,0,2,2],[1,2,2,1]],[[2,2,2,1],[2,1,1,2],[1,0,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[0,3,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[0,3,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[0,3,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,1],[0,3,2,2],[1,2,2,2]],[[0,2,0,1],[1,3,2,1],[0,3,4,1],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[0,3,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[0,3,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,2,1],[0,3,3,1],[1,2,2,2]],[[0,2,0,1],[1,3,2,1],[0,3,4,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,1],[0,3,3,3],[1,2,1,1]],[[0,2,0,1],[1,3,2,1],[0,3,3,2],[1,2,1,2]],[[0,2,0,1],[1,3,2,1],[0,3,4,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,1],[0,3,3,3],[1,2,2,0]],[[0,2,0,1],[1,3,2,1],[0,3,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,2,1],[0,3,3,2],[1,2,3,0]],[[0,2,0,1],[1,3,2,1],[1,2,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,2,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,2,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[1,2,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,1],[1,2,2,2],[1,2,2,2]],[[0,2,0,1],[1,3,2,1],[1,2,4,1],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,2,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,2,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[1,2,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,2,1],[1,2,3,1],[1,2,2,2]],[[0,2,0,1],[1,3,2,1],[1,2,4,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,1],[1,2,3,3],[1,2,1,1]],[[0,2,0,1],[1,3,2,1],[1,2,3,2],[1,2,1,2]],[[0,2,0,1],[1,3,2,1],[1,2,4,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,1],[1,2,3,3],[1,2,2,0]],[[0,2,0,1],[1,3,2,1],[1,2,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,2,1],[1,2,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,2,1],[1,2,3,2],[1,2,3,0]],[[0,3,0,1],[1,3,2,1],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[1,4,2,1],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,1,3],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,1],[1,3,1,2],[1,2,2,2]],[[0,3,0,1],[1,3,2,1],[1,3,2,1],[1,2,2,1]],[[0,2,0,1],[1,4,2,1],[1,3,2,1],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[1,3,2,1],[1,3,2,1],[1,2,2,2]],[[0,2,0,1],[1,3,2,1],[1,3,2,3],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,2,2],[1,1,3,1]],[[0,2,0,1],[1,3,2,1],[1,3,2,2],[1,1,2,2]],[[0,3,0,1],[1,3,2,1],[1,3,2,2],[1,2,2,0]],[[0,2,0,1],[1,4,2,1],[1,3,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,1],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,1],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[1,3,2,1],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[1,3,2,1],[1,3,2,2],[1,2,3,0]],[[0,2,0,1],[1,4,2,1],[1,3,3,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,4,3,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,0],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,0],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,0],[1,2,3,1]],[[0,3,0,1],[1,3,2,1],[1,3,3,1],[1,1,2,1]],[[0,2,0,1],[1,4,2,1],[1,3,3,1],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[1,4,3,1],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,4,1],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,1],[1,1,3,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,1],[1,1,2,2]],[[0,3,0,1],[1,3,2,1],[1,3,3,1],[1,2,1,1]],[[0,2,0,1],[1,4,2,1],[1,3,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,2,1],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,2,1],[1,3,4,1],[1,2,1,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,1],[1,3,1,1]],[[0,2,0,1],[1,3,2,1],[1,3,4,2],[1,0,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,3],[1,0,2,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,2],[1,0,2,2]],[[0,3,0,1],[1,3,2,1],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[1,4,2,1],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,2,1],[1,4,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,2,1],[1,3,4,2],[1,1,1,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,3],[1,1,1,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,2],[1,1,1,2]],[[0,3,0,1],[1,3,2,1],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[1,4,2,1],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,2,1],[1,4,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,2,1],[1,3,4,2],[1,1,2,0]],[[0,2,0,1],[1,3,2,1],[1,3,3,3],[1,1,2,0]],[[0,2,0,1],[1,3,2,1],[1,3,3,2],[1,1,3,0]],[[0,3,0,1],[1,3,2,1],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[1,4,2,1],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,2,1],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,2,1],[1,3,4,2],[1,2,0,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,3],[1,2,0,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[1,3,2,1],[1,3,3,2],[1,2,0,2]],[[0,3,0,1],[1,3,2,1],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[1,4,2,1],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[1,3,2,1],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[1,3,2,1],[1,3,4,2],[1,2,1,0]],[[0,2,0,1],[1,3,2,1],[1,3,3,3],[1,2,1,0]],[[0,2,0,1],[1,3,2,1],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[1,3,2,1],[1,3,3,2],[1,3,1,0]],[[0,2,0,1],[1,3,2,1],[3,1,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,1,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,1,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,1,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[2,1,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,1],[2,1,2,2],[1,2,2,2]],[[0,2,0,1],[1,3,2,1],[3,1,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,1,4,1],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,1,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,1,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[2,1,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,2,1],[2,1,3,1],[1,2,2,2]],[[0,2,0,1],[1,3,2,1],[2,1,4,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,1],[2,1,3,3],[1,2,1,1]],[[0,2,0,1],[1,3,2,1],[2,1,3,2],[1,2,1,2]],[[0,2,0,1],[1,3,2,1],[3,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,1,4,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,1,3,3],[1,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,1,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,1,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,2,1],[2,1,3,2],[1,2,3,0]],[[0,2,0,1],[1,3,2,1],[3,2,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,1,3],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,1,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,1,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,1,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,1],[2,2,1,2],[1,2,2,2]],[[0,2,0,1],[1,3,2,1],[3,2,2,1],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,2,1],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,2,1],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,2,1],[1,2,3,1]],[[0,2,0,1],[1,3,2,1],[2,2,2,1],[1,2,2,2]],[[0,2,0,1],[1,3,2,1],[2,2,2,3],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,2,2],[0,3,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,2,2],[0,2,3,1]],[[0,2,0,1],[1,3,2,1],[2,2,2,2],[0,2,2,2]],[[0,2,0,1],[1,3,2,1],[3,2,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,2,2,2],[2,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,2,2,2],[1,3,2,0]],[[0,2,0,1],[1,3,2,1],[2,2,2,2],[1,2,3,0]],[[0,2,0,1],[1,3,2,1],[3,2,3,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,0],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,0],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,0],[1,2,3,1]],[[0,2,0,1],[1,3,2,1],[2,2,4,1],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,1],[0,3,2,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,1],[0,2,3,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,1],[0,2,2,2]],[[0,2,0,1],[1,3,2,1],[3,2,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,1],[2,2,1,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,1],[1,3,1,1]],[[0,2,0,1],[1,3,2,1],[2,2,4,2],[0,2,1,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,3],[0,2,1,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,2],[0,2,1,2]],[[0,2,0,1],[1,3,2,1],[2,2,4,2],[0,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,2,3,3],[0,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,2,3,2],[0,3,2,0]],[[0,2,0,1],[1,3,2,1],[2,2,3,2],[0,2,3,0]],[[0,2,0,1],[1,3,2,1],[3,2,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,2],[2,2,0,1]],[[0,2,0,1],[1,3,2,1],[2,2,3,2],[1,3,0,1]],[[0,2,0,1],[1,3,2,1],[3,2,3,2],[1,2,1,0]],[[0,2,0,1],[1,3,2,1],[2,2,3,2],[2,2,1,0]],[[0,2,0,1],[1,3,2,1],[2,2,3,2],[1,3,1,0]],[[0,2,0,1],[1,3,2,1],[3,3,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,0,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,0,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,1],[3,3,1,1],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,1,1],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,1,1],[1,3,2,1]],[[0,3,0,1],[1,3,2,1],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[1,4,2,1],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[3,3,1,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,1,3],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[1,3,2,1],[2,3,1,2],[0,2,2,2]],[[0,3,0,1],[1,3,2,1],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[1,4,2,1],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[3,3,1,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[2,4,1,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,1,2],[2,1,2,1]],[[0,2,0,1],[1,3,2,1],[3,3,1,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,1,2],[2,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,1,2],[1,3,2,0]],[[0,2,0,1],[1,3,2,1],[3,3,2,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,2,0],[2,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,2,0],[1,3,2,1]],[[0,3,0,1],[1,3,2,1],[2,3,2,1],[0,2,2,1]],[[0,2,0,1],[1,4,2,1],[2,3,2,1],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[3,3,2,1],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[1,3,2,1],[2,3,2,1],[0,2,2,2]],[[0,3,0,1],[1,3,2,1],[2,3,2,1],[1,1,2,1]],[[0,2,0,1],[1,4,2,1],[2,3,2,1],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[3,3,2,1],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[2,4,2,1],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,2,1],[2,1,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,2,3],[0,1,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,2,2],[0,1,3,1]],[[0,2,0,1],[1,3,2,1],[2,3,2,2],[0,1,2,2]],[[0,3,0,1],[1,3,2,1],[2,3,2,2],[0,2,2,0]],[[0,2,0,1],[1,4,2,1],[2,3,2,2],[0,2,2,0]],[[0,2,0,1],[1,3,2,1],[3,3,2,2],[0,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,2,2],[0,2,3,0]],[[0,2,0,1],[1,3,2,1],[2,3,2,3],[1,0,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,2,2],[1,0,3,1]],[[0,2,0,1],[1,3,2,1],[2,3,2,2],[1,0,2,2]],[[0,3,0,1],[1,3,2,1],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,4,2,1],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,3,2,1],[3,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,3,2,1],[2,4,2,2],[1,1,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,2,2],[2,1,2,0]],[[0,2,0,1],[1,4,2,1],[2,3,3,0],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[3,3,3,0],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,4,3,0],[0,2,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,0],[0,3,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,0],[0,2,3,1]],[[0,2,0,1],[1,4,2,1],[2,3,3,0],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[3,3,3,0],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[2,4,3,0],[1,1,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,0],[2,1,2,1]],[[0,3,0,1],[1,3,2,1],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[1,4,2,1],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[1,3,2,1],[3,3,3,1],[0,1,2,1]],[[0,2,0,1],[1,3,2,1],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,4,1],[0,1,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,1],[0,1,3,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,1],[0,1,2,2]],[[0,3,0,1],[1,3,2,1],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[1,4,2,1],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[1,3,2,1],[3,3,3,1],[0,2,1,1]],[[0,2,0,1],[1,3,2,1],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[1,3,2,1],[2,3,4,1],[0,2,1,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,1],[0,3,1,1]],[[0,3,0,1],[1,3,2,1],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,4,2,1],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,3,2,1],[3,3,3,1],[1,0,2,1]],[[0,2,0,1],[1,3,2,1],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,4,1],[1,0,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,1],[2,0,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,1],[1,0,3,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,1],[1,0,2,2]],[[0,3,0,1],[1,3,2,1],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,4,2,1],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,2,1],[3,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,2,1],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,2,1],[2,3,4,1],[1,1,1,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,1],[2,1,1,1]],[[0,2,0,1],[1,4,2,1],[2,3,3,1],[1,2,0,1]],[[0,2,0,1],[1,3,2,1],[3,3,3,1],[1,2,0,1]],[[0,2,0,1],[1,3,2,1],[2,4,3,1],[1,2,0,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,1],[2,2,0,1]],[[0,2,0,1],[1,3,2,1],[2,3,4,2],[0,0,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,3],[0,0,2,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[0,0,2,2]],[[0,3,0,1],[1,3,2,1],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,4,2,1],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,2,1],[3,3,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,2,1],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,2,1],[2,3,4,2],[0,1,1,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,3],[0,1,1,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[0,1,1,2]],[[0,3,0,1],[1,3,2,1],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,4,2,1],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,2,1],[3,3,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,2,1],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,4,2],[0,1,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,3,3],[0,1,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[0,1,3,0]],[[0,3,0,1],[1,3,2,1],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,4,2,1],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,3,2,1],[3,3,3,2],[0,2,0,1]],[[0,2,0,1],[1,3,2,1],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[1,3,2,1],[2,3,4,2],[0,2,0,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,3],[0,2,0,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[0,2,0,2]],[[0,3,0,1],[1,3,2,1],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,4,2,1],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,2,1],[3,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,2,1],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,2,1],[2,3,4,2],[0,2,1,0]],[[0,2,0,1],[1,3,2,1],[2,3,3,3],[0,2,1,0]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[0,3,1,0]],[[0,3,0,1],[1,3,2,1],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,4,2,1],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,2,1],[3,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,2,1],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,2,1],[2,3,4,2],[1,0,1,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,3],[1,0,1,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[2,0,1,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[1,0,1,2]],[[0,3,0,1],[1,3,2,1],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,4,2,1],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,2,1],[3,3,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,2,1],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,4,2],[1,0,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,3,3],[1,0,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[2,0,2,0]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[1,0,3,0]],[[0,3,0,1],[1,3,2,1],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,4,2,1],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,2,1],[3,3,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,2,1],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,2,1],[2,3,4,2],[1,1,0,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,3],[1,1,0,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[2,1,0,1]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[1,1,0,2]],[[0,3,0,1],[1,3,2,1],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,4,2,1],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,3,2,1],[3,3,3,2],[1,1,1,0]],[[0,2,0,1],[1,3,2,1],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[1,3,2,1],[2,3,4,2],[1,1,1,0]],[[0,2,0,1],[1,3,2,1],[2,3,3,3],[1,1,1,0]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[2,1,1,0]],[[0,3,0,1],[1,3,2,1],[2,3,3,2],[1,2,0,0]],[[0,2,0,1],[1,4,2,1],[2,3,3,2],[1,2,0,0]],[[0,2,0,1],[1,3,2,1],[3,3,3,2],[1,2,0,0]],[[0,2,0,1],[1,3,2,1],[2,4,3,2],[1,2,0,0]],[[0,2,0,1],[1,3,2,1],[2,3,3,2],[2,2,0,0]],[[0,2,0,1],[1,3,2,2],[0,3,4,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[0,3,3,0],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[0,3,3,0],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[0,3,3,0],[1,2,2,2]],[[0,2,0,1],[1,3,2,2],[0,3,4,1],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[0,3,3,1],[1,3,2,0]],[[0,2,0,1],[1,3,2,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[0,3,0,2],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[0,3,0,2],[1,2,3,1]],[[0,2,0,2],[1,3,2,2],[1,0,3,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,3],[1,0,3,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,0,3,3],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,0,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[1,0,3,2],[1,2,2,2]],[[0,2,0,2],[1,3,2,2],[1,1,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,3],[1,1,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,1,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,1,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,1,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[1,1,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[1,1,2,2],[1,2,2,2]],[[0,2,0,1],[1,3,2,2],[1,1,4,1],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,1,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,1,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[1,1,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[1,1,3,1],[1,2,2,2]],[[0,2,0,2],[1,3,2,2],[1,1,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,3],[1,1,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,2],[1,1,4,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,2],[1,1,3,3],[1,2,1,1]],[[0,2,0,1],[1,3,2,2],[1,1,3,2],[1,2,1,2]],[[0,2,0,2],[1,3,2,2],[1,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,3],[1,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[1,1,4,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[1,1,3,3],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[1,1,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,2,2],[1,1,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,2,2],[1,1,3,2],[1,2,3,0]],[[0,2,0,2],[1,3,2,2],[1,2,2,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,3],[1,2,2,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[1,2,2,3],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[1,2,2,2],[1,1,3,1]],[[0,2,0,1],[1,3,2,2],[1,2,2,2],[1,1,2,2]],[[0,2,0,1],[1,3,2,2],[1,2,4,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,0],[2,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,0],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,0],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,0],[1,2,2,2]],[[0,2,0,1],[1,3,2,2],[1,2,4,1],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,1],[1,1,3,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,1],[1,1,2,2]],[[0,2,0,1],[1,3,2,2],[1,2,4,1],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[1,2,3,1],[2,2,2,0]],[[0,2,0,1],[1,3,2,2],[1,2,3,1],[1,3,2,0]],[[0,2,0,1],[1,3,2,2],[1,2,3,1],[1,2,3,0]],[[0,2,0,2],[1,3,2,2],[1,2,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,2,3],[1,2,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,2,2],[1,2,4,2],[1,0,2,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,3],[1,0,2,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,2],[1,0,2,2]],[[0,2,0,2],[1,3,2,2],[1,2,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,2,3],[1,2,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,2,2],[1,2,4,2],[1,1,1,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,3],[1,1,1,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,2],[1,1,1,2]],[[0,2,0,2],[1,3,2,2],[1,2,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,2,3],[1,2,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,2,2],[1,2,4,2],[1,1,2,0]],[[0,2,0,1],[1,3,2,2],[1,2,3,3],[1,1,2,0]],[[0,2,0,1],[1,3,2,2],[1,2,3,2],[1,1,3,0]],[[0,2,0,2],[1,3,2,2],[1,2,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,2,3],[1,2,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,2,2],[1,2,4,2],[1,2,0,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,3],[1,2,0,1]],[[0,2,0,1],[1,3,2,2],[1,2,3,2],[1,2,0,2]],[[0,2,0,2],[1,3,2,2],[1,2,3,2],[1,2,1,0]],[[0,2,0,1],[1,3,2,3],[1,2,3,2],[1,2,1,0]],[[0,2,0,1],[1,3,2,2],[1,2,4,2],[1,2,1,0]],[[0,2,0,1],[1,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[2,1,1,2],[0,3,0,2],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[0,3,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[0,3,0,3],[1,2,2,1]],[[1,2,2,1],[2,1,1,2],[0,4,0,2],[1,2,2,1]],[[1,2,2,1],[2,1,1,3],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[3,1,1,2],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,1,2],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,1,2],[0,3,0,2],[1,2,2,1]],[[0,3,0,1],[1,3,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,0,2],[1,3,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[1,4,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,3],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,4,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,3,0,3],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,3,0,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,3,0,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[1,3,0,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[1,3,0,2],[1,2,2,2]],[[0,3,0,1],[1,3,2,2],[1,3,2,0],[1,2,2,1]],[[0,2,0,1],[1,4,2,2],[1,3,2,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,4,2,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,3,2,0],[2,2,2,1]],[[0,2,0,1],[1,3,2,2],[1,3,2,0],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[1,3,2,0],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[1,3,2,0],[1,2,2,2]],[[0,3,0,1],[1,3,2,2],[1,3,2,1],[1,2,2,0]],[[0,2,0,1],[1,4,2,2],[1,3,2,1],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[1,4,2,1],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[1,3,2,1],[2,2,2,0]],[[0,2,0,1],[1,3,2,2],[1,3,2,1],[1,3,2,0]],[[0,2,0,1],[1,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,3,2,1],[2,1,1,2],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,1,2],[0,3,0,2],[1,2,2,1]],[[0,3,0,1],[1,3,2,2],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[1,4,2,2],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[1,4,3,0],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[1,3,4,0],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[1,3,3,0],[1,1,3,1]],[[0,2,0,1],[1,3,2,2],[1,3,3,0],[1,1,2,2]],[[0,3,0,1],[1,3,2,2],[1,3,3,0],[1,2,1,1]],[[0,2,0,1],[1,4,2,2],[1,3,3,0],[1,2,1,1]],[[0,2,0,1],[1,3,2,2],[1,4,3,0],[1,2,1,1]],[[0,2,0,1],[1,3,2,2],[1,3,4,0],[1,2,1,1]],[[0,2,0,1],[1,3,2,2],[1,3,3,0],[2,2,1,1]],[[0,2,0,1],[1,3,2,2],[1,3,3,0],[1,3,1,1]],[[0,3,0,1],[1,3,2,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,4,2,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,2,2],[1,4,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,2,2],[1,3,4,1],[1,1,1,1]],[[0,3,0,1],[1,3,2,2],[1,3,3,1],[1,1,2,0]],[[0,2,0,1],[1,4,2,2],[1,3,3,1],[1,1,2,0]],[[0,2,0,1],[1,3,2,2],[1,4,3,1],[1,1,2,0]],[[0,2,0,1],[1,3,2,2],[1,3,4,1],[1,1,2,0]],[[0,2,0,1],[1,3,2,2],[1,3,3,1],[1,1,3,0]],[[0,3,0,1],[1,3,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[1,4,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[1,3,2,2],[1,4,3,1],[1,2,0,1]],[[0,2,0,1],[1,3,2,2],[1,3,4,1],[1,2,0,1]],[[0,2,0,1],[1,3,2,2],[1,3,3,1],[2,2,0,1]],[[0,2,0,1],[1,3,2,2],[1,3,3,1],[1,3,0,1]],[[0,3,0,1],[1,3,2,2],[1,3,3,1],[1,2,1,0]],[[0,2,0,1],[1,4,2,2],[1,3,3,1],[1,2,1,0]],[[0,2,0,1],[1,3,2,2],[1,4,3,1],[1,2,1,0]],[[0,2,0,1],[1,3,2,2],[1,3,4,1],[1,2,1,0]],[[0,2,0,1],[1,3,2,2],[1,3,3,1],[2,2,1,0]],[[0,2,0,1],[1,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[2,1,1,2],[0,2,4,2],[1,2,1,0]],[[1,2,2,1],[2,1,1,3],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[3,1,1,2],[0,2,3,2],[1,2,1,0]],[[1,2,2,2],[2,1,1,2],[0,2,3,2],[1,2,1,0]],[[1,2,3,1],[2,1,1,2],[0,2,3,2],[1,2,1,0]],[[1,3,2,1],[2,1,1,2],[0,2,3,2],[1,2,1,0]],[[2,2,2,1],[2,1,1,2],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,1,2],[0,2,3,2],[1,2,0,2]],[[1,2,2,1],[2,1,1,2],[0,2,3,3],[1,2,0,1]],[[1,2,2,1],[2,1,1,2],[0,2,4,2],[1,2,0,1]],[[1,2,2,1],[2,1,1,3],[0,2,3,2],[1,2,0,1]],[[1,2,2,1],[3,1,1,2],[0,2,3,2],[1,2,0,1]],[[1,2,2,2],[2,1,1,2],[0,2,3,2],[1,2,0,1]],[[1,2,3,1],[2,1,1,2],[0,2,3,2],[1,2,0,1]],[[1,3,2,1],[2,1,1,2],[0,2,3,2],[1,2,0,1]],[[2,2,2,1],[2,1,1,2],[0,2,3,2],[1,2,0,1]],[[1,2,2,1],[2,1,1,2],[0,2,3,2],[1,1,3,0]],[[1,2,2,1],[2,1,1,2],[0,2,3,3],[1,1,2,0]],[[1,2,2,1],[2,1,1,2],[0,2,4,2],[1,1,2,0]],[[1,2,2,1],[2,1,1,3],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[3,1,1,2],[0,2,3,2],[1,1,2,0]],[[1,2,2,2],[2,1,1,2],[0,2,3,2],[1,1,2,0]],[[1,2,3,1],[2,1,1,2],[0,2,3,2],[1,1,2,0]],[[1,3,2,1],[2,1,1,2],[0,2,3,2],[1,1,2,0]],[[2,2,2,1],[2,1,1,2],[0,2,3,2],[1,1,2,0]],[[0,2,0,2],[1,3,2,2],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,3],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[3,0,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,0,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,0,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,0,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[2,0,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[2,0,2,2],[1,2,2,2]],[[0,2,0,1],[1,3,2,2],[3,0,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,0,4,1],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,0,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,0,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[2,0,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[2,0,3,1],[1,2,2,2]],[[0,2,0,2],[1,3,2,2],[2,0,3,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,3],[2,0,3,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,0,3,3],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,0,3,2],[0,2,3,1]],[[0,2,0,1],[1,3,2,2],[2,0,3,2],[0,2,2,2]],[[0,2,0,2],[1,3,2,2],[2,0,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,3],[2,0,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,2],[2,0,4,2],[1,2,1,1]],[[0,2,0,1],[1,3,2,2],[2,0,3,3],[1,2,1,1]],[[0,2,0,1],[1,3,2,2],[2,0,3,2],[1,2,1,2]],[[0,2,0,2],[1,3,2,2],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,3],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[3,0,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,0,4,2],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,0,3,3],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,0,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,0,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,2,2],[2,0,3,2],[1,2,3,0]],[[0,2,0,2],[1,3,2,2],[2,1,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,3],[2,1,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,1,2,3],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,1,2,2],[0,3,2,1]],[[0,2,0,1],[1,3,2,2],[2,1,2,2],[0,2,3,1]],[[0,2,0,1],[1,3,2,2],[2,1,2,2],[0,2,2,2]],[[0,2,0,1],[1,3,2,2],[3,1,3,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,1,4,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,1,3,0],[2,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,1,3,0],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[2,1,3,0],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[2,1,3,0],[1,2,2,2]],[[0,2,0,1],[1,3,2,2],[2,1,4,1],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,1,3,1],[0,3,2,1]],[[0,2,0,1],[1,3,2,2],[2,1,3,1],[0,2,3,1]],[[0,2,0,1],[1,3,2,2],[2,1,3,1],[0,2,2,2]],[[0,2,0,1],[1,3,2,2],[3,1,3,1],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,1,4,1],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,1,3,1],[2,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,1,3,1],[1,3,2,0]],[[0,2,0,1],[1,3,2,2],[2,1,3,1],[1,2,3,0]],[[0,2,0,2],[1,3,2,2],[2,1,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,2,3],[2,1,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,2,2],[2,1,4,2],[0,2,1,1]],[[0,2,0,1],[1,3,2,2],[2,1,3,3],[0,2,1,1]],[[0,2,0,1],[1,3,2,2],[2,1,3,2],[0,2,1,2]],[[0,2,0,2],[1,3,2,2],[2,1,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,2,3],[2,1,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,1,4,2],[0,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,1,3,3],[0,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,1,3,2],[0,3,2,0]],[[0,2,0,1],[1,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,1,2],[0,2,3,2],[1,1,1,2]],[[1,2,2,1],[2,1,1,2],[0,2,3,3],[1,1,1,1]],[[1,2,2,1],[2,1,1,2],[0,2,4,2],[1,1,1,1]],[[1,2,2,1],[2,1,1,3],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[3,1,1,2],[0,2,3,2],[1,1,1,1]],[[1,2,2,2],[2,1,1,2],[0,2,3,2],[1,1,1,1]],[[1,2,3,1],[2,1,1,2],[0,2,3,2],[1,1,1,1]],[[1,3,2,1],[2,1,1,2],[0,2,3,2],[1,1,1,1]],[[2,2,2,1],[2,1,1,2],[0,2,3,2],[1,1,1,1]],[[0,2,0,2],[1,3,2,2],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,3],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[3,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,0,3],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,0,2],[2,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,0,2],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,0,2],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[2,2,0,2],[1,2,2,2]],[[0,2,0,1],[1,3,2,2],[3,2,2,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,2,0],[2,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,2,0],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,2,0],[1,2,3,1]],[[0,2,0,1],[1,3,2,2],[2,2,2,0],[1,2,2,2]],[[0,2,0,1],[1,3,2,2],[3,2,2,1],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,2,2,1],[2,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,2,2,1],[1,3,2,0]],[[0,2,0,1],[1,3,2,2],[2,2,2,1],[1,2,3,0]],[[0,2,0,2],[1,3,2,2],[2,2,2,2],[0,1,2,1]],[[0,2,0,1],[1,3,2,3],[2,2,2,2],[0,1,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,2,3],[0,1,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,2,2],[0,1,3,1]],[[0,2,0,1],[1,3,2,2],[2,2,2,2],[0,1,2,2]],[[0,2,0,2],[1,3,2,2],[2,2,2,2],[1,0,2,1]],[[0,2,0,1],[1,3,2,3],[2,2,2,2],[1,0,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,2,3],[1,0,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,2,2],[1,0,3,1]],[[0,2,0,1],[1,3,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,1,2],[0,2,3,2],[1,0,2,2]],[[1,2,2,1],[2,1,1,2],[0,2,3,3],[1,0,2,1]],[[1,2,2,1],[2,1,1,2],[0,2,4,2],[1,0,2,1]],[[1,2,2,1],[2,1,1,3],[0,2,3,2],[1,0,2,1]],[[1,2,2,2],[2,1,1,2],[0,2,3,2],[1,0,2,1]],[[1,2,3,1],[2,1,1,2],[0,2,3,2],[1,0,2,1]],[[1,3,2,1],[2,1,1,2],[0,2,3,2],[1,0,2,1]],[[2,2,2,1],[2,1,1,2],[0,2,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,4,0],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,0],[0,3,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,0],[0,2,3,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,0],[0,2,2,2]],[[0,2,0,1],[1,3,2,2],[3,2,3,0],[1,2,1,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,0],[2,2,1,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,0],[1,3,1,1]],[[0,2,0,1],[1,3,2,2],[2,2,4,1],[0,1,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,1],[0,1,3,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,1],[0,1,2,2]],[[0,2,0,1],[1,3,2,2],[2,2,4,1],[0,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,2,3,1],[0,3,2,0]],[[0,2,0,1],[1,3,2,2],[2,2,3,1],[0,2,3,0]],[[0,2,0,1],[1,3,2,2],[2,2,4,1],[1,0,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,1],[1,0,3,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,1],[1,0,2,2]],[[0,2,0,1],[1,3,2,2],[3,2,3,1],[1,2,0,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,1],[2,2,0,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,1],[1,3,0,1]],[[0,2,0,1],[1,3,2,2],[3,2,3,1],[1,2,1,0]],[[0,2,0,1],[1,3,2,2],[2,2,3,1],[2,2,1,0]],[[0,2,0,1],[1,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,2],[0,2,3,1],[1,1,2,2]],[[0,2,0,2],[1,3,2,2],[2,2,3,2],[0,0,2,1]],[[0,2,0,1],[1,3,2,3],[2,2,3,2],[0,0,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,4,2],[0,0,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,3],[0,0,2,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,2],[0,0,2,2]],[[0,2,0,2],[1,3,2,2],[2,2,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,2,3],[2,2,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,2,2],[2,2,4,2],[0,1,1,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,3],[0,1,1,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,2],[0,1,1,2]],[[0,2,0,2],[1,3,2,2],[2,2,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,2,3],[2,2,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,2,2],[2,2,4,2],[0,1,2,0]],[[0,2,0,1],[1,3,2,2],[2,2,3,3],[0,1,2,0]],[[0,2,0,1],[1,3,2,2],[2,2,3,2],[0,1,3,0]],[[0,2,0,2],[1,3,2,2],[2,2,3,2],[0,2,0,1]],[[0,2,0,1],[1,3,2,3],[2,2,3,2],[0,2,0,1]],[[0,2,0,1],[1,3,2,2],[2,2,4,2],[0,2,0,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,3],[0,2,0,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,2],[0,2,0,2]],[[0,2,0,2],[1,3,2,2],[2,2,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,2,3],[2,2,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,2,2],[2,2,4,2],[0,2,1,0]],[[0,2,0,1],[1,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,1,2],[0,2,3,1],[1,1,3,1]],[[1,2,2,1],[2,1,1,2],[0,2,4,1],[1,1,2,1]],[[0,2,0,2],[1,3,2,2],[2,2,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,2,3],[2,2,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,2,2],[2,2,4,2],[1,0,1,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,3],[1,0,1,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,2],[1,0,1,2]],[[0,2,0,2],[1,3,2,2],[2,2,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,2,3],[2,2,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,2,2],[2,2,4,2],[1,0,2,0]],[[0,2,0,1],[1,3,2,2],[2,2,3,3],[1,0,2,0]],[[0,2,0,1],[1,3,2,2],[2,2,3,2],[1,0,3,0]],[[0,2,0,2],[1,3,2,2],[2,2,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,2,3],[2,2,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,2,2],[2,2,4,2],[1,1,0,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,3],[1,1,0,1]],[[0,2,0,1],[1,3,2,2],[2,2,3,2],[1,1,0,2]],[[0,2,0,2],[1,3,2,2],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[1,3,2,3],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[1,3,2,2],[2,2,4,2],[1,1,1,0]],[[0,2,0,1],[1,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,1,2],[0,2,2,2],[1,1,2,2]],[[1,2,2,1],[2,1,1,2],[0,2,2,2],[1,1,3,1]],[[1,2,2,1],[2,1,1,2],[0,2,2,3],[1,1,2,1]],[[1,2,2,1],[2,1,1,3],[0,2,2,2],[1,1,2,1]],[[1,2,2,1],[3,1,1,2],[0,2,2,2],[1,1,2,1]],[[1,2,2,2],[2,1,1,2],[0,2,2,2],[1,1,2,1]],[[1,2,3,1],[2,1,1,2],[0,2,2,2],[1,1,2,1]],[[1,3,2,1],[2,1,1,2],[0,2,2,2],[1,1,2,1]],[[2,2,2,1],[2,1,1,2],[0,2,2,2],[1,1,2,1]],[[1,2,2,1],[2,1,1,2],[0,1,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,1,2],[0,1,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,1,2],[0,1,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,1,2],[0,1,3,3],[1,2,2,0]],[[0,3,0,1],[1,3,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,2],[1,3,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,4,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,3],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[3,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,4,0,2],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,0,3],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,0,2],[0,3,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,0,2],[0,2,3,1]],[[0,2,0,1],[1,3,2,2],[2,3,0,2],[0,2,2,2]],[[0,3,0,1],[1,3,2,2],[2,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,4,2,2],[2,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[3,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[2,4,0,2],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,0,2],[2,1,2,1]],[[0,2,0,1],[1,3,2,2],[3,3,1,0],[1,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,1,0],[2,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,1,0],[1,3,2,1]],[[0,2,0,1],[1,3,2,2],[3,3,1,1],[1,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,1,1],[2,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,1,2],[0,1,4,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,3],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[3,1,1,2],[0,1,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,1,2],[0,1,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,1,2],[0,1,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,1,2],[0,1,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,1,2],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,2],[0,1,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,1,2],[0,1,3,3],[1,2,1,1]],[[1,2,2,1],[2,1,1,2],[0,1,4,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,3],[0,1,3,2],[1,2,1,1]],[[0,3,0,1],[1,3,2,2],[2,3,2,0],[0,2,2,1]],[[0,2,0,1],[1,4,2,2],[2,3,2,0],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[3,3,2,0],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,4,2,0],[0,2,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,2,0],[0,3,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,2,0],[0,2,3,1]],[[0,2,0,1],[1,3,2,2],[2,3,2,0],[0,2,2,2]],[[0,3,0,1],[1,3,2,2],[2,3,2,0],[1,1,2,1]],[[0,2,0,1],[1,4,2,2],[2,3,2,0],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[3,3,2,0],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[2,4,2,0],[1,1,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,2,0],[2,1,2,1]],[[0,3,0,1],[1,3,2,2],[2,3,2,1],[0,2,2,0]],[[0,2,0,1],[1,4,2,2],[2,3,2,1],[0,2,2,0]],[[0,2,0,1],[1,3,2,2],[3,3,2,1],[0,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,4,2,1],[0,2,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,2,1],[0,3,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,2,1],[0,2,3,0]],[[0,3,0,1],[1,3,2,2],[2,3,2,1],[1,1,2,0]],[[0,2,0,1],[1,4,2,2],[2,3,2,1],[1,1,2,0]],[[0,2,0,1],[1,3,2,2],[3,3,2,1],[1,1,2,0]],[[0,2,0,1],[1,3,2,2],[2,4,2,1],[1,1,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[3,1,1,2],[0,1,3,2],[1,2,1,1]],[[1,2,2,2],[2,1,1,2],[0,1,3,2],[1,2,1,1]],[[1,2,3,1],[2,1,1,2],[0,1,3,2],[1,2,1,1]],[[1,3,2,1],[2,1,1,2],[0,1,3,2],[1,2,1,1]],[[2,2,2,1],[2,1,1,2],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,2],[0,1,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[0,1,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[0,1,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[0,1,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[0,1,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,2],[0,1,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[0,1,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[0,1,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,1,2],[0,1,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,2],[0,1,2,3],[1,2,2,1]],[[1,2,2,1],[2,1,1,3],[0,1,2,2],[1,2,2,1]],[[1,2,2,1],[3,1,1,2],[0,1,2,2],[1,2,2,1]],[[1,2,2,2],[2,1,1,2],[0,1,2,2],[1,2,2,1]],[[1,2,3,1],[2,1,1,2],[0,1,2,2],[1,2,2,1]],[[1,3,2,1],[2,1,1,2],[0,1,2,2],[1,2,2,1]],[[2,2,2,1],[2,1,1,2],[0,1,2,2],[1,2,2,1]],[[1,2,2,1],[2,1,1,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,1,1,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,1],[2,1,1,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,1],[2,1,1,3],[0,0,3,2],[1,2,2,1]],[[1,2,2,2],[2,1,1,2],[0,0,3,2],[1,2,2,1]],[[1,2,3,1],[2,1,1,2],[0,0,3,2],[1,2,2,1]],[[1,3,2,1],[2,1,1,2],[0,0,3,2],[1,2,2,1]],[[2,2,2,1],[2,1,1,2],[0,0,3,2],[1,2,2,1]],[[0,3,0,1],[1,3,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[1,4,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[1,3,2,2],[3,3,3,0],[0,1,2,1]],[[0,2,0,1],[1,3,2,2],[2,4,3,0],[0,1,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,4,0],[0,1,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,0],[0,1,3,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,0],[0,1,2,2]],[[0,3,0,1],[1,3,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[1,4,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[1,3,2,2],[3,3,3,0],[0,2,1,1]],[[0,2,0,1],[1,3,2,2],[2,4,3,0],[0,2,1,1]],[[0,2,0,1],[1,3,2,2],[2,3,4,0],[0,2,1,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,0],[0,3,1,1]],[[0,3,0,1],[1,3,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[1,4,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[1,3,2,2],[3,3,3,0],[1,0,2,1]],[[0,2,0,1],[1,3,2,2],[2,4,3,0],[1,0,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,4,0],[1,0,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,0],[2,0,2,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,0],[1,0,3,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,0],[1,0,2,2]],[[0,3,0,1],[1,3,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[1,4,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[1,3,2,2],[3,3,3,0],[1,1,1,1]],[[0,2,0,1],[1,3,2,2],[2,4,3,0],[1,1,1,1]],[[0,2,0,1],[1,3,2,2],[2,3,4,0],[1,1,1,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,0],[2,1,1,1]],[[0,3,0,1],[1,3,2,2],[2,3,3,0],[1,2,0,1]],[[0,2,0,1],[1,4,2,2],[2,3,3,0],[1,2,0,1]],[[0,2,0,1],[1,3,2,2],[3,3,3,0],[1,2,0,1]],[[0,2,0,1],[1,3,2,2],[2,4,3,0],[1,2,0,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,0],[2,2,0,1]],[[0,3,0,1],[1,3,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[1,4,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[1,3,2,2],[3,3,3,1],[0,1,1,1]],[[0,2,0,1],[1,3,2,2],[2,4,3,1],[0,1,1,1]],[[0,2,0,1],[1,3,2,2],[2,3,4,1],[0,1,1,1]],[[0,3,0,1],[1,3,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[1,4,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[1,3,2,2],[3,3,3,1],[0,1,2,0]],[[0,2,0,1],[1,3,2,2],[2,4,3,1],[0,1,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,4,1],[0,1,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,3,1],[0,1,3,0]],[[0,3,0,1],[1,3,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[1,4,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[1,3,2,2],[3,3,3,1],[0,2,0,1]],[[0,2,0,1],[1,3,2,2],[2,4,3,1],[0,2,0,1]],[[0,2,0,1],[1,3,2,2],[2,3,4,1],[0,2,0,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,1],[0,3,0,1]],[[0,3,0,1],[1,3,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[1,4,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[1,3,2,2],[3,3,3,1],[0,2,1,0]],[[0,2,0,1],[1,3,2,2],[2,4,3,1],[0,2,1,0]],[[0,2,0,1],[1,3,2,2],[2,3,4,1],[0,2,1,0]],[[0,2,0,1],[1,3,2,2],[2,3,3,1],[0,3,1,0]],[[0,3,0,1],[1,3,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[1,4,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[1,3,2,2],[3,3,3,1],[1,0,1,1]],[[0,2,0,1],[1,3,2,2],[2,4,3,1],[1,0,1,1]],[[0,2,0,1],[1,3,2,2],[2,3,4,1],[1,0,1,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,1],[2,0,1,1]],[[0,3,0,1],[1,3,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[1,4,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[1,3,2,2],[3,3,3,1],[1,0,2,0]],[[0,2,0,1],[1,3,2,2],[2,4,3,1],[1,0,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,4,1],[1,0,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,3,1],[2,0,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,3,1],[1,0,3,0]],[[0,3,0,1],[1,3,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[1,4,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[1,3,2,2],[3,3,3,1],[1,1,0,1]],[[0,2,0,1],[1,3,2,2],[2,4,3,1],[1,1,0,1]],[[0,2,0,1],[1,3,2,2],[2,3,4,1],[1,1,0,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,1],[2,1,0,1]],[[0,3,0,1],[1,3,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[1,4,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[1,3,2,2],[3,3,3,1],[1,1,1,0]],[[0,2,0,1],[1,3,2,2],[2,4,3,1],[1,1,1,0]],[[0,2,0,1],[1,3,2,2],[2,3,4,1],[1,1,1,0]],[[0,2,0,1],[1,3,2,2],[2,3,3,1],[2,1,1,0]],[[0,3,0,1],[1,3,2,2],[2,3,3,1],[1,2,0,0]],[[0,2,0,1],[1,4,2,2],[2,3,3,1],[1,2,0,0]],[[0,2,0,1],[1,3,2,2],[3,3,3,1],[1,2,0,0]],[[0,2,0,1],[1,3,2,2],[2,4,3,1],[1,2,0,0]],[[0,2,0,1],[1,3,2,2],[2,3,3,1],[2,2,0,0]],[[0,2,0,2],[1,3,2,2],[2,3,3,2],[0,0,1,1]],[[0,2,0,1],[1,3,2,3],[2,3,3,2],[0,0,1,1]],[[0,2,0,1],[1,3,2,2],[2,3,4,2],[0,0,1,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,3],[0,0,1,1]],[[0,2,0,1],[1,3,2,2],[2,3,3,2],[0,0,1,2]],[[0,2,0,2],[1,3,2,2],[2,3,3,2],[0,0,2,0]],[[0,2,0,1],[1,3,2,3],[2,3,3,2],[0,0,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,4,2],[0,0,2,0]],[[0,2,0,1],[1,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,1,1,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,1,1,1],[2,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,1,1,1],[3,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,1,1,1],[2,3,3,1],[1,2,0,0]],[[1,2,2,2],[2,1,1,1],[2,3,3,1],[1,2,0,0]],[[1,2,3,1],[2,1,1,1],[2,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,1,1,1],[2,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,1,1,1],[2,3,3,1],[1,2,0,0]],[[1,2,2,1],[2,1,1,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[2,1,1,1],[2,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,1,1,1],[2,4,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,1,1],[3,3,3,1],[1,1,1,0]],[[1,2,2,1],[3,1,1,1],[2,3,3,1],[1,1,1,0]],[[1,2,2,2],[2,1,1,1],[2,3,3,1],[1,1,1,0]],[[1,2,3,1],[2,1,1,1],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[2,1,1,1],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,1,1,1],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,1,1],[2,3,3,1],[2,1,0,1]],[[1,2,2,1],[2,1,1,1],[2,3,4,1],[1,1,0,1]],[[1,2,2,1],[2,1,1,1],[2,4,3,1],[1,1,0,1]],[[1,2,2,1],[2,1,1,1],[3,3,3,1],[1,1,0,1]],[[1,2,2,1],[3,1,1,1],[2,3,3,1],[1,1,0,1]],[[1,2,2,2],[2,1,1,1],[2,3,3,1],[1,1,0,1]],[[1,2,3,1],[2,1,1,1],[2,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,1,1,1],[2,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,1,1,1],[2,3,3,1],[1,1,0,1]],[[1,2,2,1],[2,1,1,1],[2,3,3,1],[1,0,3,0]],[[1,2,2,1],[2,1,1,1],[2,3,3,1],[2,0,2,0]],[[1,2,2,1],[2,1,1,1],[2,3,4,1],[1,0,2,0]],[[1,2,2,1],[2,1,1,1],[2,4,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,1,1],[3,3,3,1],[1,0,2,0]],[[1,2,2,1],[3,1,1,1],[2,3,3,1],[1,0,2,0]],[[1,2,2,2],[2,1,1,1],[2,3,3,1],[1,0,2,0]],[[1,2,3,1],[2,1,1,1],[2,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,1,1,1],[2,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,1,1,1],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,1,1],[2,3,3,1],[2,0,1,1]],[[1,2,2,1],[2,1,1,1],[2,3,4,1],[1,0,1,1]],[[1,2,2,1],[2,1,1,1],[2,4,3,1],[1,0,1,1]],[[1,2,2,1],[2,1,1,1],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[3,1,1,1],[2,3,3,1],[1,0,1,1]],[[1,2,2,2],[2,1,1,1],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[2,1,1,1],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,1,1,1],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,1,1,1],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[1,3,3,0],[1,1,4,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,0],[1,1,3,2],[2,2,2,1]],[[0,2,0,1],[1,3,3,0],[1,1,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,3,0],[1,1,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,0],[1,1,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,3,0],[1,2,4,2],[1,1,2,1]],[[0,2,0,1],[1,3,3,0],[1,2,3,2],[1,1,3,1]],[[0,2,0,1],[1,3,3,0],[1,2,3,2],[1,1,2,2]],[[1,2,2,1],[2,1,1,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,1,1,1],[2,3,4,1],[0,2,1,0]],[[0,2,0,1],[1,3,3,0],[3,0,3,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,0],[2,0,4,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,0],[2,0,3,2],[2,2,2,1]],[[0,2,0,1],[1,3,3,0],[2,0,3,2],[1,3,2,1]],[[0,2,0,1],[1,3,3,0],[2,0,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,0],[2,0,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,3,0],[2,1,4,2],[0,2,2,1]],[[0,2,0,1],[1,3,3,0],[2,1,3,2],[0,3,2,1]],[[0,2,0,1],[1,3,3,0],[2,1,3,2],[0,2,3,1]],[[0,2,0,1],[1,3,3,0],[2,1,3,2],[0,2,2,2]],[[0,2,0,1],[1,3,3,0],[2,2,4,2],[0,1,2,1]],[[0,2,0,1],[1,3,3,0],[2,2,3,2],[0,1,3,1]],[[0,2,0,1],[1,3,3,0],[2,2,3,2],[0,1,2,2]],[[0,2,0,1],[1,3,3,0],[2,2,4,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,0],[2,2,3,2],[1,0,3,1]],[[0,2,0,1],[1,3,3,0],[2,2,3,2],[1,0,2,2]],[[1,2,2,1],[2,1,1,1],[2,4,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,1,1],[3,3,3,1],[0,2,1,0]],[[1,2,2,1],[3,1,1,1],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[2,1,1,1],[2,3,3,1],[0,2,1,0]],[[1,2,3,1],[2,1,1,1],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,1,1,1],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,1,1,1],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,1,1],[2,3,3,1],[0,3,0,1]],[[1,2,2,1],[2,1,1,1],[2,3,4,1],[0,2,0,1]],[[1,2,2,1],[2,1,1,1],[2,4,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,1,1],[3,3,3,1],[0,2,0,1]],[[1,2,2,1],[3,1,1,1],[2,3,3,1],[0,2,0,1]],[[1,2,2,2],[2,1,1,1],[2,3,3,1],[0,2,0,1]],[[1,2,3,1],[2,1,1,1],[2,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,1,1,1],[2,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,1,1,1],[2,3,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,1,1],[2,3,3,1],[0,1,3,0]],[[1,2,2,1],[2,1,1,1],[2,3,4,1],[0,1,2,0]],[[1,2,2,1],[2,1,1,1],[2,4,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,1,1],[3,3,3,1],[0,1,2,0]],[[1,2,2,1],[3,1,1,1],[2,3,3,1],[0,1,2,0]],[[1,2,2,2],[2,1,1,1],[2,3,3,1],[0,1,2,0]],[[1,2,3,1],[2,1,1,1],[2,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,1,1,1],[2,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,1,1,1],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,1,1],[2,3,4,1],[0,1,1,1]],[[1,2,2,1],[2,1,1,1],[2,4,3,1],[0,1,1,1]],[[1,2,2,1],[2,1,1,1],[3,3,3,1],[0,1,1,1]],[[1,2,2,1],[3,1,1,1],[2,3,3,1],[0,1,1,1]],[[1,2,2,2],[2,1,1,1],[2,3,3,1],[0,1,1,1]],[[1,2,3,1],[2,1,1,1],[2,3,3,1],[0,1,1,1]],[[1,3,2,1],[2,1,1,1],[2,3,3,1],[0,1,1,1]],[[2,2,2,1],[2,1,1,1],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[1,3,3,1],[1,0,3,3],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,0,3,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,1],[1,0,3,2],[1,2,2,2]],[[0,2,0,1],[1,3,3,1],[1,1,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,1,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,1,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,3,1],[1,1,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,1],[1,1,2,2],[1,2,2,2]],[[0,3,0,1],[1,3,3,1],[1,1,3,1],[1,2,2,1]],[[0,2,0,1],[1,4,3,1],[1,1,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,4,1],[1,1,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,1,4,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,1,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,1,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,3,1],[1,1,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,3,1],[1,1,3,1],[1,2,2,2]],[[0,3,0,1],[1,3,3,1],[1,1,3,2],[1,2,1,1]],[[0,2,0,1],[1,4,3,1],[1,1,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,4,1],[1,1,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,1],[1,1,4,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,1],[1,1,3,3],[1,2,1,1]],[[0,2,0,1],[1,3,3,1],[1,1,3,2],[1,2,1,2]],[[0,3,0,1],[1,3,3,1],[1,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,4,3,1],[1,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,4,1],[1,1,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,1],[1,1,4,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,1],[1,1,3,3],[1,2,2,0]],[[0,2,0,1],[1,3,3,1],[1,1,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,3,1],[1,1,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,3,1],[1,1,3,2],[1,2,3,0]],[[0,2,0,1],[1,3,3,1],[1,2,2,3],[1,1,2,1]],[[0,2,0,1],[1,3,3,1],[1,2,2,2],[1,1,3,1]],[[0,2,0,1],[1,3,3,1],[1,2,2,2],[1,1,2,2]],[[0,3,0,1],[1,3,3,1],[1,2,3,1],[1,1,2,1]],[[0,2,0,1],[1,4,3,1],[1,2,3,1],[1,1,2,1]],[[0,2,0,1],[1,3,4,1],[1,2,3,1],[1,1,2,1]],[[0,2,0,1],[1,3,3,1],[1,2,4,1],[1,1,2,1]],[[0,2,0,1],[1,3,3,1],[1,2,3,1],[1,1,3,1]],[[0,2,0,1],[1,3,3,1],[1,2,3,1],[1,1,2,2]],[[0,3,0,1],[1,3,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[1,4,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,4,1],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,3,1],[1,2,4,1],[1,2,1,1]],[[0,2,0,1],[1,3,4,1],[1,2,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,1],[1,2,4,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,1],[1,2,3,3],[1,0,2,1]],[[0,2,0,1],[1,3,3,1],[1,2,3,2],[1,0,2,2]],[[0,3,0,1],[1,3,3,1],[1,2,3,2],[1,1,1,1]],[[0,2,0,1],[1,4,3,1],[1,2,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,4,1],[1,2,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,1],[1,2,4,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,1],[1,2,3,3],[1,1,1,1]],[[0,2,0,1],[1,3,3,1],[1,2,3,2],[1,1,1,2]],[[0,3,0,1],[1,3,3,1],[1,2,3,2],[1,1,2,0]],[[0,2,0,1],[1,4,3,1],[1,2,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,4,1],[1,2,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,1],[1,2,4,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,1],[1,2,3,3],[1,1,2,0]],[[0,2,0,1],[1,3,3,1],[1,2,3,2],[1,1,3,0]],[[0,3,0,1],[1,3,3,1],[1,2,3,2],[1,2,0,1]],[[0,2,0,1],[1,4,3,1],[1,2,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,4,1],[1,2,3,2],[1,2,0,1]],[[0,2,0,1],[1,3,3,1],[1,2,4,2],[1,2,0,1]],[[0,2,0,1],[1,3,3,1],[1,2,3,3],[1,2,0,1]],[[0,2,0,1],[1,3,3,1],[1,2,3,2],[1,2,0,2]],[[0,3,0,1],[1,3,3,1],[1,2,3,2],[1,2,1,0]],[[0,2,0,1],[1,4,3,1],[1,2,3,2],[1,2,1,0]],[[0,2,0,1],[1,3,4,1],[1,2,3,2],[1,2,1,0]],[[0,2,0,1],[1,3,3,1],[1,2,4,2],[1,2,1,0]],[[0,2,0,1],[1,3,3,1],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[2,1,1,1],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,1,1,1],[2,4,3,0],[1,2,0,1]],[[1,2,2,1],[2,1,1,1],[3,3,3,0],[1,2,0,1]],[[0,3,0,1],[1,3,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[1,4,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,4,1],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,4,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,3,0,3],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,3,0,2],[2,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,3,0,2],[1,3,2,1]],[[0,2,0,1],[1,3,3,1],[1,3,0,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,1],[1,3,0,2],[1,2,2,2]],[[0,3,0,1],[1,3,3,1],[1,3,1,1],[1,2,2,1]],[[0,2,0,1],[1,4,3,1],[1,3,1,1],[1,2,2,1]],[[0,2,0,1],[1,3,4,1],[1,3,1,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,4,1,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,3,1,1],[2,2,2,1]],[[0,2,0,1],[1,3,3,1],[1,3,1,1],[1,3,2,1]],[[0,2,0,1],[1,3,3,1],[1,3,1,1],[1,2,3,1]],[[0,2,0,1],[1,3,3,1],[1,3,1,1],[1,2,2,2]],[[0,3,0,1],[1,3,3,1],[1,3,1,2],[1,2,2,0]],[[0,2,0,1],[1,4,3,1],[1,3,1,2],[1,2,2,0]],[[0,2,0,1],[1,3,4,1],[1,3,1,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,1],[1,4,1,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,1],[1,3,1,2],[2,2,2,0]],[[0,2,0,1],[1,3,3,1],[1,3,1,2],[1,3,2,0]],[[0,2,0,1],[1,3,3,1],[1,3,1,2],[1,2,3,0]],[[0,3,0,1],[1,3,3,1],[1,3,2,1],[1,1,2,1]],[[0,2,0,1],[1,4,3,1],[1,3,2,1],[1,1,2,1]],[[0,2,0,1],[1,3,4,1],[1,3,2,1],[1,1,2,1]],[[0,2,0,1],[1,3,3,1],[1,4,2,1],[1,1,2,1]],[[0,3,0,1],[1,3,3,1],[1,3,2,1],[1,2,1,1]],[[0,2,0,1],[1,4,3,1],[1,3,2,1],[1,2,1,1]],[[0,2,0,1],[1,3,4,1],[1,3,2,1],[1,2,1,1]],[[0,2,0,1],[1,3,3,1],[1,4,2,1],[1,2,1,1]],[[0,2,0,1],[1,3,3,1],[1,3,2,1],[2,2,1,1]],[[0,2,0,1],[1,3,3,1],[1,3,2,1],[1,3,1,1]],[[0,3,0,1],[1,3,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[1,4,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[1,3,4,1],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,1],[1,4,2,2],[1,1,1,1]],[[0,3,0,1],[1,3,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,4,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,3,4,1],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,1],[1,4,2,2],[1,1,2,0]],[[0,3,0,1],[1,3,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[1,4,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[1,3,4,1],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[1,3,3,1],[1,4,2,2],[1,2,0,1]],[[0,2,0,1],[1,3,3,1],[1,3,2,2],[2,2,0,1]],[[0,2,0,1],[1,3,3,1],[1,3,2,2],[1,3,0,1]],[[0,3,0,1],[1,3,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[1,4,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[1,3,4,1],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[1,3,3,1],[1,4,2,2],[1,2,1,0]],[[0,2,0,1],[1,3,3,1],[1,3,2,2],[2,2,1,0]],[[0,2,0,1],[1,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[3,1,1,1],[2,3,3,0],[1,2,0,1]],[[1,2,2,2],[2,1,1,1],[2,3,3,0],[1,2,0,1]],[[1,2,3,1],[2,1,1,1],[2,3,3,0],[1,2,0,1]],[[1,3,2,1],[2,1,1,1],[2,3,3,0],[1,2,0,1]],[[2,2,2,1],[2,1,1,1],[2,3,3,0],[1,2,0,1]],[[1,2,2,1],[2,1,1,1],[2,3,3,0],[2,1,1,1]],[[1,2,2,1],[2,1,1,1],[2,3,4,0],[1,1,1,1]],[[1,2,2,1],[2,1,1,1],[2,4,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,1,1],[3,3,3,0],[1,1,1,1]],[[1,2,2,1],[3,1,1,1],[2,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,1,1,1],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[2,1,1,1],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,1,1,1],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,1,1,1],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,1,1],[2,3,3,0],[1,0,2,2]],[[0,3,0,1],[1,3,3,1],[1,3,3,2],[1,2,0,0]],[[0,2,0,1],[1,4,3,1],[1,3,3,2],[1,2,0,0]],[[0,2,0,1],[1,3,4,1],[1,3,3,2],[1,2,0,0]],[[0,2,0,1],[1,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,1,1,1],[2,3,3,0],[1,0,3,1]],[[1,2,2,1],[2,1,1,1],[2,3,3,0],[2,0,2,1]],[[1,2,2,1],[2,1,1,1],[2,3,4,0],[1,0,2,1]],[[1,2,2,1],[2,1,1,1],[2,4,3,0],[1,0,2,1]],[[1,2,2,1],[2,1,1,1],[3,3,3,0],[1,0,2,1]],[[1,2,2,1],[3,1,1,1],[2,3,3,0],[1,0,2,1]],[[1,2,2,2],[2,1,1,1],[2,3,3,0],[1,0,2,1]],[[1,2,3,1],[2,1,1,1],[2,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,1,1,1],[2,3,3,0],[1,0,2,1]],[[2,2,2,1],[2,1,1,1],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[2,1,1,1],[2,3,3,0],[0,3,1,1]],[[1,2,2,1],[2,1,1,1],[2,3,4,0],[0,2,1,1]],[[1,2,2,1],[2,1,1,1],[2,4,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,1,1],[3,3,3,0],[0,2,1,1]],[[1,2,2,1],[3,1,1,1],[2,3,3,0],[0,2,1,1]],[[1,2,2,2],[2,1,1,1],[2,3,3,0],[0,2,1,1]],[[1,2,3,1],[2,1,1,1],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[1,3,3,1],[3,0,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,0,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,0,2,2],[2,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,0,2,2],[1,3,2,1]],[[0,2,0,1],[1,3,3,1],[2,0,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,1],[2,0,2,2],[1,2,2,2]],[[0,3,0,1],[1,3,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[1,4,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,4,1],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[3,0,3,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,0,4,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,0,3,1],[2,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,0,3,1],[1,3,2,1]],[[0,2,0,1],[1,3,3,1],[2,0,3,1],[1,2,3,1]],[[0,2,0,1],[1,3,3,1],[2,0,3,1],[1,2,2,2]],[[0,2,0,1],[1,3,3,1],[2,0,3,3],[0,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,0,3,2],[0,2,3,1]],[[0,2,0,1],[1,3,3,1],[2,0,3,2],[0,2,2,2]],[[0,3,0,1],[1,3,3,1],[2,0,3,2],[1,2,1,1]],[[0,2,0,1],[1,4,3,1],[2,0,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,4,1],[2,0,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,1],[2,0,4,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,1],[2,0,3,3],[1,2,1,1]],[[0,2,0,1],[1,3,3,1],[2,0,3,2],[1,2,1,2]],[[0,3,0,1],[1,3,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[1,4,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,4,1],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,1],[3,0,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,0,4,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,0,3,3],[1,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,0,3,2],[2,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,0,3,2],[1,3,2,0]],[[0,2,0,1],[1,3,3,1],[2,0,3,2],[1,2,3,0]],[[0,2,0,1],[1,3,3,1],[2,1,2,3],[0,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,1,2,2],[0,3,2,1]],[[0,2,0,1],[1,3,3,1],[2,1,2,2],[0,2,3,1]],[[0,2,0,1],[1,3,3,1],[2,1,2,2],[0,2,2,2]],[[0,3,0,1],[1,3,3,1],[2,1,3,1],[0,2,2,1]],[[0,2,0,1],[1,4,3,1],[2,1,3,1],[0,2,2,1]],[[0,2,0,1],[1,3,4,1],[2,1,3,1],[0,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,1,4,1],[0,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,1,3,1],[0,3,2,1]],[[0,2,0,1],[1,3,3,1],[2,1,3,1],[0,2,3,1]],[[0,2,0,1],[1,3,3,1],[2,1,3,1],[0,2,2,2]],[[0,3,0,1],[1,3,3,1],[2,1,3,2],[0,2,1,1]],[[0,2,0,1],[1,4,3,1],[2,1,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,4,1],[2,1,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,3,1],[2,1,4,2],[0,2,1,1]],[[0,2,0,1],[1,3,3,1],[2,1,3,3],[0,2,1,1]],[[0,2,0,1],[1,3,3,1],[2,1,3,2],[0,2,1,2]],[[0,3,0,1],[1,3,3,1],[2,1,3,2],[0,2,2,0]],[[0,2,0,1],[1,4,3,1],[2,1,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,4,1],[2,1,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,1,4,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,1,3,3],[0,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,1,3,2],[0,3,2,0]],[[0,2,0,1],[1,3,3,1],[2,1,3,2],[0,2,3,0]],[[1,3,2,1],[2,1,1,1],[2,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,1,1,1],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,1,1],[2,3,3,0],[0,1,2,2]],[[1,2,2,1],[2,1,1,1],[2,3,3,0],[0,1,3,1]],[[1,2,2,1],[2,1,1,1],[2,3,4,0],[0,1,2,1]],[[1,2,2,1],[2,1,1,1],[2,4,3,0],[0,1,2,1]],[[1,2,2,1],[2,1,1,1],[3,3,3,0],[0,1,2,1]],[[1,2,2,1],[3,1,1,1],[2,3,3,0],[0,1,2,1]],[[1,2,2,2],[2,1,1,1],[2,3,3,0],[0,1,2,1]],[[1,2,3,1],[2,1,1,1],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[1,3,3,1],[3,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,0,3],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,0,2],[2,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,0,2],[1,3,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,0,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,1],[2,2,0,2],[1,2,2,2]],[[0,2,0,1],[1,3,3,1],[3,2,1,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,1,1],[2,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,1,1],[1,3,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,1,1],[1,2,3,1]],[[0,2,0,1],[1,3,3,1],[2,2,1,1],[1,2,2,2]],[[0,2,0,1],[1,3,3,1],[3,2,1,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,2,1,2],[2,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,2,1,2],[1,3,2,0]],[[0,2,0,1],[1,3,3,1],[2,2,1,2],[1,2,3,0]],[[0,2,0,1],[1,3,3,1],[3,2,2,1],[1,2,1,1]],[[0,2,0,1],[1,3,3,1],[2,2,2,1],[2,2,1,1]],[[0,2,0,1],[1,3,3,1],[2,2,2,1],[1,3,1,1]],[[0,2,0,1],[1,3,3,1],[2,2,2,3],[0,1,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,2,2],[0,1,3,1]],[[0,2,0,1],[1,3,3,1],[2,2,2,2],[0,1,2,2]],[[0,2,0,1],[1,3,3,1],[2,2,2,3],[1,0,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,2,2],[1,0,3,1]],[[0,2,0,1],[1,3,3,1],[2,2,2,2],[1,0,2,2]],[[0,2,0,1],[1,3,3,1],[3,2,2,2],[1,2,0,1]],[[0,2,0,1],[1,3,3,1],[2,2,2,2],[2,2,0,1]],[[0,2,0,1],[1,3,3,1],[2,2,2,2],[1,3,0,1]],[[0,2,0,1],[1,3,3,1],[3,2,2,2],[1,2,1,0]],[[0,2,0,1],[1,3,3,1],[2,2,2,2],[2,2,1,0]],[[0,2,0,1],[1,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,3,2,1],[2,1,1,1],[2,3,3,0],[0,1,2,1]],[[2,2,2,1],[2,1,1,1],[2,3,3,0],[0,1,2,1]],[[0,3,0,1],[1,3,3,1],[2,2,3,1],[0,1,2,1]],[[0,2,0,1],[1,4,3,1],[2,2,3,1],[0,1,2,1]],[[0,2,0,1],[1,3,4,1],[2,2,3,1],[0,1,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,4,1],[0,1,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,1],[0,1,3,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,1],[0,1,2,2]],[[0,3,0,1],[1,3,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[1,4,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[1,3,4,1],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[1,3,3,1],[2,2,4,1],[0,2,1,1]],[[0,3,0,1],[1,3,3,1],[2,2,3,1],[1,0,2,1]],[[0,2,0,1],[1,4,3,1],[2,2,3,1],[1,0,2,1]],[[0,2,0,1],[1,3,4,1],[2,2,3,1],[1,0,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,4,1],[1,0,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,1],[1,0,3,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,1],[1,0,2,2]],[[0,3,0,1],[1,3,3,1],[2,2,3,1],[1,1,1,1]],[[0,2,0,1],[1,4,3,1],[2,2,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,4,1],[2,2,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,3,1],[2,2,4,1],[1,1,1,1]],[[0,3,0,1],[1,3,3,1],[2,2,3,2],[0,0,2,1]],[[0,2,0,1],[1,4,3,1],[2,2,3,2],[0,0,2,1]],[[0,2,0,1],[1,3,4,1],[2,2,3,2],[0,0,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,4,2],[0,0,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,3],[0,0,2,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,2],[0,0,2,2]],[[0,3,0,1],[1,3,3,1],[2,2,3,2],[0,1,1,1]],[[0,2,0,1],[1,4,3,1],[2,2,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,4,1],[2,2,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,1],[2,2,4,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,3],[0,1,1,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,2],[0,1,1,2]],[[0,3,0,1],[1,3,3,1],[2,2,3,2],[0,1,2,0]],[[0,2,0,1],[1,4,3,1],[2,2,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,4,1],[2,2,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,1],[2,2,4,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,1],[2,2,3,3],[0,1,2,0]],[[0,2,0,1],[1,3,3,1],[2,2,3,2],[0,1,3,0]],[[0,3,0,1],[1,3,3,1],[2,2,3,2],[0,2,0,1]],[[0,2,0,1],[1,4,3,1],[2,2,3,2],[0,2,0,1]],[[0,2,0,1],[1,3,4,1],[2,2,3,2],[0,2,0,1]],[[0,2,0,1],[1,3,3,1],[2,2,4,2],[0,2,0,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,3],[0,2,0,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,2],[0,2,0,2]],[[0,3,0,1],[1,3,3,1],[2,2,3,2],[0,2,1,0]],[[0,2,0,1],[1,4,3,1],[2,2,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,4,1],[2,2,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,1],[2,2,4,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,1],[2,2,3,3],[0,2,1,0]],[[0,3,0,1],[1,3,3,1],[2,2,3,2],[1,0,1,1]],[[0,2,0,1],[1,4,3,1],[2,2,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,4,1],[2,2,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,1],[2,2,4,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,3],[1,0,1,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,2],[1,0,1,2]],[[0,3,0,1],[1,3,3,1],[2,2,3,2],[1,0,2,0]],[[0,2,0,1],[1,4,3,1],[2,2,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,4,1],[2,2,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,1],[2,2,4,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,1],[2,2,3,3],[1,0,2,0]],[[0,2,0,1],[1,3,3,1],[2,2,3,2],[1,0,3,0]],[[0,3,0,1],[1,3,3,1],[2,2,3,2],[1,1,0,1]],[[0,2,0,1],[1,4,3,1],[2,2,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,4,1],[2,2,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,1],[2,2,4,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,3],[1,1,0,1]],[[0,2,0,1],[1,3,3,1],[2,2,3,2],[1,1,0,2]],[[0,3,0,1],[1,3,3,1],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[1,4,3,1],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[1,3,4,1],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[1,3,3,1],[2,2,4,2],[1,1,1,0]],[[0,2,0,1],[1,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,1,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,1,1,1],[2,4,2,1],[1,1,2,0]],[[1,2,2,1],[2,1,1,1],[3,3,2,1],[1,1,2,0]],[[1,2,2,1],[3,1,1,1],[2,3,2,1],[1,1,2,0]],[[1,2,2,2],[2,1,1,1],[2,3,2,1],[1,1,2,0]],[[1,2,3,1],[2,1,1,1],[2,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,1,1,1],[2,3,2,1],[1,1,2,0]],[[2,2,2,1],[2,1,1,1],[2,3,2,1],[1,1,2,0]],[[0,2,0,1],[1,3,3,1],[3,3,0,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,3,0,1],[2,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,3,0,1],[1,3,2,1]],[[0,3,0,1],[1,3,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,4,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,3,4,1],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,3,3,1],[3,3,0,2],[0,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,4,0,2],[0,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,3,0,3],[0,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,3,0,2],[0,3,2,1]],[[0,2,0,1],[1,3,3,1],[2,3,0,2],[0,2,3,1]],[[0,2,0,1],[1,3,3,1],[2,3,0,2],[0,2,2,2]],[[0,3,0,1],[1,3,3,1],[2,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,4,3,1],[2,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,3,4,1],[2,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,3,3,1],[3,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,3,3,1],[2,4,0,2],[1,1,2,1]],[[0,2,0,1],[1,3,3,1],[2,3,0,2],[2,1,2,1]],[[0,2,0,1],[1,3,3,1],[3,3,0,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,3,0,2],[2,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,3,0,2],[1,3,2,0]],[[0,3,0,1],[1,3,3,1],[2,3,1,1],[0,2,2,1]],[[0,2,0,1],[1,4,3,1],[2,3,1,1],[0,2,2,1]],[[0,2,0,1],[1,3,4,1],[2,3,1,1],[0,2,2,1]],[[0,2,0,1],[1,3,3,1],[3,3,1,1],[0,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,4,1,1],[0,2,2,1]],[[0,2,0,1],[1,3,3,1],[2,3,1,1],[0,3,2,1]],[[0,2,0,1],[1,3,3,1],[2,3,1,1],[0,2,3,1]],[[0,2,0,1],[1,3,3,1],[2,3,1,1],[0,2,2,2]],[[0,3,0,1],[1,3,3,1],[2,3,1,1],[1,1,2,1]],[[0,2,0,1],[1,4,3,1],[2,3,1,1],[1,1,2,1]],[[0,2,0,1],[1,3,4,1],[2,3,1,1],[1,1,2,1]],[[0,2,0,1],[1,3,3,1],[3,3,1,1],[1,1,2,1]],[[0,2,0,1],[1,3,3,1],[2,4,1,1],[1,1,2,1]],[[0,2,0,1],[1,3,3,1],[2,3,1,1],[2,1,2,1]],[[0,3,0,1],[1,3,3,1],[2,3,1,2],[0,2,2,0]],[[0,2,0,1],[1,4,3,1],[2,3,1,2],[0,2,2,0]],[[0,2,0,1],[1,3,4,1],[2,3,1,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,1],[3,3,1,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,4,1,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,1],[2,3,1,2],[0,3,2,0]],[[0,2,0,1],[1,3,3,1],[2,3,1,2],[0,2,3,0]],[[0,3,0,1],[1,3,3,1],[2,3,1,2],[1,1,2,0]],[[0,2,0,1],[1,4,3,1],[2,3,1,2],[1,1,2,0]],[[0,2,0,1],[1,3,4,1],[2,3,1,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,1],[3,3,1,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,1],[2,4,1,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[2,1,1,1],[2,3,2,1],[0,2,3,0]],[[1,2,2,1],[2,1,1,1],[2,3,2,1],[0,3,2,0]],[[1,2,2,1],[2,1,1,1],[2,4,2,1],[0,2,2,0]],[[1,2,2,1],[2,1,1,1],[3,3,2,1],[0,2,2,0]],[[1,2,2,1],[3,1,1,1],[2,3,2,1],[0,2,2,0]],[[1,2,2,2],[2,1,1,1],[2,3,2,1],[0,2,2,0]],[[1,2,3,1],[2,1,1,1],[2,3,2,1],[0,2,2,0]],[[0,3,0,1],[1,3,3,1],[2,3,2,1],[0,1,2,1]],[[0,2,0,1],[1,4,3,1],[2,3,2,1],[0,1,2,1]],[[0,2,0,1],[1,3,4,1],[2,3,2,1],[0,1,2,1]],[[0,2,0,1],[1,3,3,1],[3,3,2,1],[0,1,2,1]],[[0,2,0,1],[1,3,3,1],[2,4,2,1],[0,1,2,1]],[[0,3,0,1],[1,3,3,1],[2,3,2,1],[0,2,1,1]],[[0,2,0,1],[1,4,3,1],[2,3,2,1],[0,2,1,1]],[[0,2,0,1],[1,3,4,1],[2,3,2,1],[0,2,1,1]],[[0,2,0,1],[1,3,3,1],[3,3,2,1],[0,2,1,1]],[[0,2,0,1],[1,3,3,1],[2,4,2,1],[0,2,1,1]],[[0,2,0,1],[1,3,3,1],[2,3,2,1],[0,3,1,1]],[[0,3,0,1],[1,3,3,1],[2,3,2,1],[1,0,2,1]],[[0,2,0,1],[1,4,3,1],[2,3,2,1],[1,0,2,1]],[[0,2,0,1],[1,3,4,1],[2,3,2,1],[1,0,2,1]],[[0,2,0,1],[1,3,3,1],[3,3,2,1],[1,0,2,1]],[[0,2,0,1],[1,3,3,1],[2,4,2,1],[1,0,2,1]],[[0,2,0,1],[1,3,3,1],[2,3,2,1],[2,0,2,1]],[[0,3,0,1],[1,3,3,1],[2,3,2,1],[1,1,1,1]],[[0,2,0,1],[1,4,3,1],[2,3,2,1],[1,1,1,1]],[[0,2,0,1],[1,3,4,1],[2,3,2,1],[1,1,1,1]],[[0,2,0,1],[1,3,3,1],[3,3,2,1],[1,1,1,1]],[[0,2,0,1],[1,3,3,1],[2,4,2,1],[1,1,1,1]],[[0,2,0,1],[1,3,3,1],[2,3,2,1],[2,1,1,1]],[[0,2,0,1],[1,4,3,1],[2,3,2,1],[1,2,0,1]],[[0,2,0,1],[1,3,3,1],[3,3,2,1],[1,2,0,1]],[[0,2,0,1],[1,3,3,1],[2,4,2,1],[1,2,0,1]],[[0,2,0,1],[1,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,3,2,1],[2,1,1,1],[2,3,2,1],[0,2,2,0]],[[2,2,2,1],[2,1,1,1],[2,3,2,1],[0,2,2,0]],[[0,3,0,1],[1,3,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[1,4,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[1,3,4,1],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,1],[3,3,2,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,1],[2,4,2,2],[0,1,1,1]],[[0,3,0,1],[1,3,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[1,4,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[1,3,4,1],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,1],[3,3,2,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,1],[2,4,2,2],[0,1,2,0]],[[0,3,0,1],[1,3,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[1,4,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[1,3,4,1],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[1,3,3,1],[3,3,2,2],[0,2,0,1]],[[0,2,0,1],[1,3,3,1],[2,4,2,2],[0,2,0,1]],[[0,2,0,1],[1,3,3,1],[2,3,2,2],[0,3,0,1]],[[0,3,0,1],[1,3,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[1,4,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[1,3,4,1],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,1],[3,3,2,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,1],[2,4,2,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,2,1],[2,1,1,1],[2,3,2,0],[2,1,2,1]],[[1,2,2,1],[2,1,1,1],[2,4,2,0],[1,1,2,1]],[[1,2,2,1],[2,1,1,1],[3,3,2,0],[1,1,2,1]],[[1,2,2,1],[3,1,1,1],[2,3,2,0],[1,1,2,1]],[[1,2,2,2],[2,1,1,1],[2,3,2,0],[1,1,2,1]],[[0,3,0,1],[1,3,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[1,4,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[1,3,4,1],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,1],[3,3,2,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,1],[2,4,2,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,1],[2,3,2,2],[2,0,1,1]],[[0,3,0,1],[1,3,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[1,4,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[1,3,4,1],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,1],[3,3,2,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,1],[2,4,2,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,1],[2,3,2,2],[2,0,2,0]],[[0,3,0,1],[1,3,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[1,4,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[1,3,4,1],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,1],[3,3,2,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,1],[2,4,2,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,1],[2,3,2,2],[2,1,0,1]],[[0,3,0,1],[1,3,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[1,4,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[1,3,4,1],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[1,3,3,1],[3,3,2,2],[1,1,1,0]],[[0,2,0,1],[1,3,3,1],[2,4,2,2],[1,1,1,0]],[[0,2,0,1],[1,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,3,1],[2,1,1,1],[2,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,1,1,1],[2,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,1,1,1],[2,3,2,0],[1,1,2,1]],[[1,2,2,1],[2,1,1,1],[2,3,2,0],[0,2,2,2]],[[1,2,2,1],[2,1,1,1],[2,3,2,0],[0,2,3,1]],[[1,2,2,1],[2,1,1,1],[2,3,2,0],[0,3,2,1]],[[1,2,2,1],[2,1,1,1],[2,4,2,0],[0,2,2,1]],[[1,2,2,1],[2,1,1,1],[3,3,2,0],[0,2,2,1]],[[1,2,2,1],[3,1,1,1],[2,3,2,0],[0,2,2,1]],[[0,3,0,1],[1,3,3,1],[2,3,2,2],[1,2,0,0]],[[0,2,0,1],[1,4,3,1],[2,3,2,2],[1,2,0,0]],[[0,2,0,1],[1,3,4,1],[2,3,2,2],[1,2,0,0]],[[0,2,0,1],[1,3,3,1],[3,3,2,2],[1,2,0,0]],[[0,2,0,1],[1,3,3,1],[2,4,2,2],[1,2,0,0]],[[0,2,0,1],[1,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,2],[2,1,1,1],[2,3,2,0],[0,2,2,1]],[[1,2,3,1],[2,1,1,1],[2,3,2,0],[0,2,2,1]],[[1,3,2,1],[2,1,1,1],[2,3,2,0],[0,2,2,1]],[[2,2,2,1],[2,1,1,1],[2,3,2,0],[0,2,2,1]],[[0,3,0,1],[1,3,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[1,4,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[1,3,4,1],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[1,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,2,1],[2,1,1,1],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,1,1],[2,3,1,1],[2,2,2,0]],[[1,2,2,1],[2,1,1,1],[3,3,1,1],[1,2,2,0]],[[1,2,2,1],[3,1,1,1],[2,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,1,1,1],[2,3,1,1],[1,2,2,0]],[[2,2,2,1],[2,1,1,1],[2,3,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,1],[2,3,1,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,1],[2,3,1,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,1],[3,3,1,0],[1,2,2,1]],[[1,2,2,1],[3,1,1,1],[2,3,1,0],[1,2,2,1]],[[1,3,2,1],[2,1,1,1],[2,3,1,0],[1,2,2,1]],[[2,2,2,1],[2,1,1,1],[2,3,1,0],[1,2,2,1]],[[1,2,2,1],[2,1,1,1],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[2,1,1,1],[2,4,0,2],[1,1,2,1]],[[1,2,2,1],[2,1,1,1],[3,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,1,1,1],[2,3,0,2],[1,1,2,1]],[[1,2,2,2],[2,1,1,1],[2,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,1,1,1],[2,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,1,1,1],[2,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,1,1,1],[2,3,0,2],[1,1,2,1]],[[0,3,0,1],[1,3,3,1],[2,3,3,2],[0,0,1,1]],[[0,2,0,1],[1,4,3,1],[2,3,3,2],[0,0,1,1]],[[0,2,0,1],[1,3,4,1],[2,3,3,2],[0,0,1,1]],[[0,2,0,1],[1,3,3,1],[2,3,4,2],[0,0,1,1]],[[0,2,0,1],[1,3,3,1],[2,3,3,3],[0,0,1,1]],[[0,2,0,1],[1,3,3,1],[2,3,3,2],[0,0,1,2]],[[0,3,0,1],[1,3,3,1],[2,3,3,2],[0,0,2,0]],[[0,2,0,1],[1,4,3,1],[2,3,3,2],[0,0,2,0]],[[0,2,0,1],[1,3,4,1],[2,3,3,2],[0,0,2,0]],[[0,2,0,1],[1,3,3,1],[2,3,4,2],[0,0,2,0]],[[0,2,0,1],[1,3,3,1],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,1,1,1],[2,3,0,2],[0,2,2,2]],[[1,2,2,1],[2,1,1,1],[2,3,0,2],[0,2,3,1]],[[1,2,2,1],[2,1,1,1],[2,3,0,2],[0,3,2,1]],[[1,2,2,1],[2,1,1,1],[2,3,0,3],[0,2,2,1]],[[1,2,2,1],[2,1,1,1],[2,4,0,2],[0,2,2,1]],[[1,2,2,1],[2,1,1,1],[3,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,1,1,1],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,1,1,1],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,1,1,1],[2,3,0,2],[0,2,2,1]],[[0,3,0,1],[1,3,3,1],[2,3,3,2],[0,2,0,0]],[[0,2,0,1],[1,4,3,1],[2,3,3,2],[0,2,0,0]],[[0,2,0,1],[1,3,4,1],[2,3,3,2],[0,2,0,0]],[[0,2,0,1],[1,3,3,1],[3,3,3,2],[0,2,0,0]],[[0,2,0,1],[1,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,3,2,1],[2,1,1,1],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,1,1,1],[2,3,0,2],[0,2,2,1]],[[0,3,0,1],[1,3,3,1],[2,3,3,2],[1,1,0,0]],[[0,2,0,1],[1,4,3,1],[2,3,3,2],[1,1,0,0]],[[0,2,0,1],[1,3,4,1],[2,3,3,2],[1,1,0,0]],[[0,2,0,1],[1,3,3,1],[3,3,3,2],[1,1,0,0]],[[0,2,0,1],[1,3,3,1],[2,4,3,2],[1,1,0,0]],[[0,2,0,1],[1,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[2,1,1,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,1],[2,2,3,1],[2,2,1,0]],[[1,2,2,1],[2,1,1,1],[3,2,3,1],[1,2,1,0]],[[1,2,2,1],[3,1,1,1],[2,2,3,1],[1,2,1,0]],[[1,2,2,2],[2,1,1,1],[2,2,3,1],[1,2,1,0]],[[1,2,3,1],[2,1,1,1],[2,2,3,1],[1,2,1,0]],[[1,3,2,1],[2,1,1,1],[2,2,3,1],[1,2,1,0]],[[2,2,2,1],[2,1,1,1],[2,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,1,1],[2,2,3,1],[1,3,0,1]],[[1,2,2,1],[2,1,1,1],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,1,1],[3,2,3,1],[1,2,0,1]],[[1,2,2,1],[3,1,1,1],[2,2,3,1],[1,2,0,1]],[[1,2,2,2],[2,1,1,1],[2,2,3,1],[1,2,0,1]],[[1,2,3,1],[2,1,1,1],[2,2,3,1],[1,2,0,1]],[[1,3,2,1],[2,1,1,1],[2,2,3,1],[1,2,0,1]],[[2,2,2,1],[2,1,1,1],[2,2,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,1,1],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,1,1,1],[2,2,3,1],[0,3,2,0]],[[1,2,2,1],[2,1,1,1],[2,2,4,1],[0,2,2,0]],[[1,2,2,1],[2,1,1,1],[2,2,3,0],[1,3,1,1]],[[1,2,2,1],[2,1,1,1],[2,2,3,0],[2,2,1,1]],[[1,2,2,1],[2,1,1,1],[3,2,3,0],[1,2,1,1]],[[1,2,2,1],[3,1,1,1],[2,2,3,0],[1,2,1,1]],[[1,2,2,2],[2,1,1,1],[2,2,3,0],[1,2,1,1]],[[1,2,3,1],[2,1,1,1],[2,2,3,0],[1,2,1,1]],[[1,3,2,1],[2,1,1,1],[2,2,3,0],[1,2,1,1]],[[2,2,2,1],[2,1,1,1],[2,2,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,1,1],[2,2,3,0],[0,2,2,2]],[[1,2,2,1],[2,1,1,1],[2,2,3,0],[0,2,3,1]],[[1,2,2,1],[2,1,1,1],[2,2,3,0],[0,3,2,1]],[[1,2,2,1],[2,1,1,1],[2,2,4,0],[0,2,2,1]],[[1,2,2,1],[2,1,1,1],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,1],[2,2,2,1],[1,3,2,0]],[[1,2,2,1],[2,1,1,1],[2,2,2,1],[2,2,2,0]],[[1,2,2,1],[2,1,1,1],[3,2,2,1],[1,2,2,0]],[[1,2,2,1],[3,1,1,1],[2,2,2,1],[1,2,2,0]],[[1,2,2,2],[2,1,1,1],[2,2,2,1],[1,2,2,0]],[[1,2,3,1],[2,1,1,1],[2,2,2,1],[1,2,2,0]],[[1,3,2,1],[2,1,1,1],[2,2,2,1],[1,2,2,0]],[[2,2,2,1],[2,1,1,1],[2,2,2,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,1],[2,2,2,0],[1,2,2,2]],[[1,2,2,1],[2,1,1,1],[2,2,2,0],[1,2,3,1]],[[1,2,2,1],[2,1,1,1],[2,2,2,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,1],[2,2,2,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,1],[3,2,2,0],[1,2,2,1]],[[1,2,2,1],[3,1,1,1],[2,2,2,0],[1,2,2,1]],[[1,2,2,2],[2,1,1,1],[2,2,2,0],[1,2,2,1]],[[1,2,3,1],[2,1,1,1],[2,2,2,0],[1,2,2,1]],[[1,3,2,1],[2,1,1,1],[2,2,2,0],[1,2,2,1]],[[2,2,2,1],[2,1,1,1],[2,2,2,0],[1,2,2,1]],[[1,2,2,1],[2,1,1,1],[2,2,0,2],[1,2,2,2]],[[1,2,2,1],[2,1,1,1],[2,2,0,2],[1,2,3,1]],[[1,2,2,1],[2,1,1,1],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[2,1,1,1],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,1],[2,2,0,3],[1,2,2,1]],[[1,2,2,1],[2,1,1,1],[3,2,0,2],[1,2,2,1]],[[1,2,2,1],[3,1,1,1],[2,2,0,2],[1,2,2,1]],[[1,2,2,2],[2,1,1,1],[2,2,0,2],[1,2,2,1]],[[1,2,3,1],[2,1,1,1],[2,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,1,1],[2,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,1,1],[2,2,0,2],[1,2,2,1]],[[0,2,0,2],[1,3,3,2],[1,0,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,4,2],[1,0,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,3],[1,0,2,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,0,2,3],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,0,2,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,2],[1,0,2,2],[1,2,2,2]],[[0,2,0,2],[1,3,3,2],[1,0,3,2],[1,1,2,1]],[[0,2,0,1],[1,3,4,2],[1,0,3,2],[1,1,2,1]],[[0,2,0,1],[1,3,3,3],[1,0,3,2],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[1,0,3,3],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[1,0,3,2],[1,1,2,2]],[[0,2,0,2],[1,3,3,2],[1,0,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,4,2],[1,0,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,3],[1,0,3,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,0,3,3],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,0,3,2],[1,2,1,2]],[[0,2,0,2],[1,3,3,2],[1,0,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,4,2],[1,0,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,3],[1,0,3,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,0,3,3],[1,2,2,0]],[[0,3,0,1],[1,3,3,2],[1,1,1,2],[1,2,2,1]],[[0,2,0,2],[1,3,3,2],[1,1,1,2],[1,2,2,1]],[[0,2,0,1],[1,4,3,2],[1,1,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,4,2],[1,1,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,3],[1,1,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,1,1,3],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,1,1,2],[2,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,1,1,2],[1,3,2,1]],[[0,2,0,1],[1,3,3,2],[1,1,1,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,2],[1,1,1,2],[1,2,2,2]],[[0,3,0,1],[1,3,3,2],[1,1,2,2],[1,2,1,1]],[[0,2,0,2],[1,3,3,2],[1,1,2,2],[1,2,1,1]],[[0,2,0,1],[1,4,3,2],[1,1,2,2],[1,2,1,1]],[[0,2,0,1],[1,3,4,2],[1,1,2,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,3],[1,1,2,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,1,2,3],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,1,2,2],[1,2,1,2]],[[0,3,0,1],[1,3,3,2],[1,1,2,2],[1,2,2,0]],[[0,2,0,2],[1,3,3,2],[1,1,2,2],[1,2,2,0]],[[0,2,0,1],[1,4,3,2],[1,1,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,4,2],[1,1,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,3],[1,1,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,1,2,3],[1,2,2,0]],[[0,3,0,1],[1,3,3,2],[1,1,3,0],[1,2,2,1]],[[0,2,0,2],[1,3,3,2],[1,1,3,0],[1,2,2,1]],[[0,2,0,1],[1,4,3,2],[1,1,3,0],[1,2,2,1]],[[0,2,0,1],[1,3,4,2],[1,1,3,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,3],[1,1,3,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,1,4,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,1,3,0],[2,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,1,3,0],[1,3,2,1]],[[0,2,0,1],[1,3,3,2],[1,1,3,0],[1,2,3,1]],[[0,2,0,1],[1,3,3,2],[1,1,3,0],[1,2,2,2]],[[0,3,0,1],[1,3,3,2],[1,1,3,1],[1,2,1,1]],[[0,2,0,2],[1,3,3,2],[1,1,3,1],[1,2,1,1]],[[0,2,0,1],[1,4,3,2],[1,1,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,4,2],[1,1,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,3,3],[1,1,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,1,4,1],[1,2,1,1]],[[0,3,0,1],[1,3,3,2],[1,1,3,1],[1,2,2,0]],[[0,2,0,2],[1,3,3,2],[1,1,3,1],[1,2,2,0]],[[0,2,0,1],[1,4,3,2],[1,1,3,1],[1,2,2,0]],[[0,2,0,1],[1,3,4,2],[1,1,3,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,3],[1,1,3,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,1,4,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,1,3,1],[2,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,1,3,1],[1,3,2,0]],[[0,2,0,1],[1,3,3,2],[1,1,3,1],[1,2,3,0]],[[0,2,0,2],[1,3,3,2],[1,1,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,4,2],[1,1,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,3],[1,1,3,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[1,1,3,3],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[1,1,3,2],[1,0,2,2]],[[0,2,0,2],[1,3,3,2],[1,1,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,4,2],[1,1,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,3],[1,1,3,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[1,1,3,3],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[1,1,3,2],[1,1,1,2]],[[0,2,0,2],[1,3,3,2],[1,1,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,4,2],[1,1,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,3],[1,1,3,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[1,1,3,3],[1,1,2,0]],[[0,3,0,1],[1,3,3,2],[1,2,0,2],[1,2,2,1]],[[0,2,0,2],[1,3,3,2],[1,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,4,3,2],[1,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,4,2],[1,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,3],[1,2,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,2,0,3],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,2,0,2],[2,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,2,0,2],[1,3,2,1]],[[0,2,0,1],[1,3,3,2],[1,2,0,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,2],[1,2,0,2],[1,2,2,2]],[[0,3,0,1],[1,3,3,2],[1,2,1,2],[1,1,2,1]],[[0,2,0,2],[1,3,3,2],[1,2,1,2],[1,1,2,1]],[[0,2,0,1],[1,4,3,2],[1,2,1,2],[1,1,2,1]],[[0,2,0,1],[1,3,4,2],[1,2,1,2],[1,1,2,1]],[[0,2,0,1],[1,3,3,3],[1,2,1,2],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[1,2,1,3],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[1,2,1,2],[1,1,3,1]],[[0,2,0,1],[1,3,3,2],[1,2,1,2],[1,1,2,2]],[[0,2,0,2],[1,3,3,2],[1,2,2,2],[1,0,2,1]],[[0,2,0,1],[1,3,4,2],[1,2,2,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,3],[1,2,2,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[1,2,2,3],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[1,2,2,2],[1,0,2,2]],[[0,3,0,1],[1,3,3,2],[1,2,2,2],[1,1,1,1]],[[0,2,0,2],[1,3,3,2],[1,2,2,2],[1,1,1,1]],[[0,2,0,1],[1,4,3,2],[1,2,2,2],[1,1,1,1]],[[0,2,0,1],[1,3,4,2],[1,2,2,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,3],[1,2,2,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[1,2,2,3],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[1,2,2,2],[1,1,1,2]],[[0,3,0,1],[1,3,3,2],[1,2,2,2],[1,1,2,0]],[[0,2,0,2],[1,3,3,2],[1,2,2,2],[1,1,2,0]],[[0,2,0,1],[1,4,3,2],[1,2,2,2],[1,1,2,0]],[[0,2,0,1],[1,3,4,2],[1,2,2,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,3],[1,2,2,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[1,2,2,3],[1,1,2,0]],[[0,3,0,1],[1,3,3,2],[1,2,2,2],[1,2,0,1]],[[0,2,0,2],[1,3,3,2],[1,2,2,2],[1,2,0,1]],[[0,2,0,1],[1,4,3,2],[1,2,2,2],[1,2,0,1]],[[0,2,0,1],[1,3,4,2],[1,2,2,2],[1,2,0,1]],[[0,2,0,1],[1,3,3,3],[1,2,2,2],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[1,2,2,3],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[1,2,2,2],[1,2,0,2]],[[0,3,0,1],[1,3,3,2],[1,2,2,2],[1,2,1,0]],[[0,2,0,2],[1,3,3,2],[1,2,2,2],[1,2,1,0]],[[0,2,0,1],[1,4,3,2],[1,2,2,2],[1,2,1,0]],[[0,2,0,1],[1,3,4,2],[1,2,2,2],[1,2,1,0]],[[0,2,0,1],[1,3,3,3],[1,2,2,2],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,2,2,3],[1,2,1,0]],[[0,3,0,1],[1,3,3,2],[1,2,3,0],[1,1,2,1]],[[0,2,0,2],[1,3,3,2],[1,2,3,0],[1,1,2,1]],[[0,2,0,1],[1,4,3,2],[1,2,3,0],[1,1,2,1]],[[0,2,0,1],[1,3,4,2],[1,2,3,0],[1,1,2,1]],[[0,2,0,1],[1,3,3,3],[1,2,3,0],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[1,2,4,0],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[1,2,3,0],[1,1,3,1]],[[0,2,0,1],[1,3,3,2],[1,2,3,0],[1,1,2,2]],[[0,3,0,1],[1,3,3,2],[1,2,3,0],[1,2,1,1]],[[0,2,0,2],[1,3,3,2],[1,2,3,0],[1,2,1,1]],[[0,2,0,1],[1,4,3,2],[1,2,3,0],[1,2,1,1]],[[0,2,0,1],[1,3,4,2],[1,2,3,0],[1,2,1,1]],[[0,2,0,1],[1,3,3,3],[1,2,3,0],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,2,4,0],[1,2,1,1]],[[0,2,0,2],[1,3,3,2],[1,2,3,1],[1,0,2,1]],[[0,2,0,1],[1,3,4,2],[1,2,3,1],[1,0,2,1]],[[0,2,0,1],[1,3,3,3],[1,2,3,1],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[1,2,4,1],[1,0,2,1]],[[0,3,0,1],[1,3,3,2],[1,2,3,1],[1,1,1,1]],[[0,2,0,2],[1,3,3,2],[1,2,3,1],[1,1,1,1]],[[0,2,0,1],[1,4,3,2],[1,2,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,4,2],[1,2,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,3,3],[1,2,3,1],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[1,2,4,1],[1,1,1,1]],[[0,3,0,1],[1,3,3,2],[1,2,3,1],[1,1,2,0]],[[0,2,0,2],[1,3,3,2],[1,2,3,1],[1,1,2,0]],[[0,2,0,1],[1,4,3,2],[1,2,3,1],[1,1,2,0]],[[0,2,0,1],[1,3,4,2],[1,2,3,1],[1,1,2,0]],[[0,2,0,1],[1,3,3,3],[1,2,3,1],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[1,2,4,1],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[1,2,3,1],[1,1,3,0]],[[0,3,0,1],[1,3,3,2],[1,2,3,1],[1,2,0,1]],[[0,2,0,2],[1,3,3,2],[1,2,3,1],[1,2,0,1]],[[0,2,0,1],[1,4,3,2],[1,2,3,1],[1,2,0,1]],[[0,2,0,1],[1,3,4,2],[1,2,3,1],[1,2,0,1]],[[0,2,0,1],[1,3,3,3],[1,2,3,1],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[1,2,4,1],[1,2,0,1]],[[0,3,0,1],[1,3,3,2],[1,2,3,1],[1,2,1,0]],[[0,2,0,2],[1,3,3,2],[1,2,3,1],[1,2,1,0]],[[0,2,0,1],[1,4,3,2],[1,2,3,1],[1,2,1,0]],[[0,2,0,1],[1,3,4,2],[1,2,3,1],[1,2,1,0]],[[0,2,0,1],[1,3,3,3],[1,2,3,1],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,2,1],[2,1,1,1],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,1],[2,1,3,1],[1,3,2,0]],[[1,2,2,1],[2,1,1,1],[2,1,3,1],[2,2,2,0]],[[1,2,2,1],[2,1,1,1],[2,1,4,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,1],[3,1,3,1],[1,2,2,0]],[[1,2,2,1],[3,1,1,1],[2,1,3,1],[1,2,2,0]],[[1,2,2,2],[2,1,1,1],[2,1,3,1],[1,2,2,0]],[[1,2,3,1],[2,1,1,1],[2,1,3,1],[1,2,2,0]],[[0,2,0,2],[1,3,3,2],[1,2,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,4,2],[1,2,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,3],[1,2,3,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,3,2,1],[2,1,1,1],[2,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,1,1,1],[2,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,1],[2,1,3,0],[1,2,2,2]],[[1,2,2,1],[2,1,1,1],[2,1,3,0],[1,2,3,1]],[[1,2,2,1],[2,1,1,1],[2,1,3,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,1],[2,1,3,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,1],[2,1,4,0],[1,2,2,1]],[[1,2,2,1],[2,1,1,1],[3,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,1,1,1],[2,1,3,0],[1,2,2,1]],[[1,2,2,2],[2,1,1,1],[2,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,1,1,1],[2,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,1,1,1],[2,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,1,1,1],[2,1,3,0],[1,2,2,1]],[[1,2,2,1],[2,1,1,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,1,1],[2,0,3,2],[1,3,2,0]],[[0,3,0,1],[1,3,3,2],[1,3,0,1],[1,2,2,1]],[[0,2,0,2],[1,3,3,2],[1,3,0,1],[1,2,2,1]],[[0,2,0,1],[1,4,3,2],[1,3,0,1],[1,2,2,1]],[[0,2,0,1],[1,3,4,2],[1,3,0,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,3],[1,3,0,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,4,0,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,3,0,1],[2,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,3,0,1],[1,3,2,1]],[[0,2,0,1],[1,3,3,2],[1,3,0,1],[1,2,3,1]],[[0,2,0,1],[1,3,3,2],[1,3,0,1],[1,2,2,2]],[[0,3,0,1],[1,3,3,2],[1,3,0,2],[1,1,2,1]],[[0,2,0,2],[1,3,3,2],[1,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,4,3,2],[1,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,3,4,2],[1,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,3,3,3],[1,3,0,2],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[1,4,0,2],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[1,3,0,3],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[1,3,0,2],[1,1,3,1]],[[0,2,0,1],[1,3,3,2],[1,3,0,2],[1,1,2,2]],[[0,3,0,1],[1,3,3,2],[1,3,0,2],[1,2,1,1]],[[0,2,0,2],[1,3,3,2],[1,3,0,2],[1,2,1,1]],[[0,2,0,1],[1,4,3,2],[1,3,0,2],[1,2,1,1]],[[0,2,0,1],[1,3,4,2],[1,3,0,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,3],[1,3,0,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,4,0,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,3,0,3],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,3,0,2],[2,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,3,0,2],[1,3,1,1]],[[0,2,0,1],[1,3,3,2],[1,3,0,2],[1,2,1,2]],[[0,3,0,1],[1,3,3,2],[1,3,0,2],[1,2,2,0]],[[0,2,0,2],[1,3,3,2],[1,3,0,2],[1,2,2,0]],[[0,2,0,1],[1,4,3,2],[1,3,0,2],[1,2,2,0]],[[0,2,0,1],[1,3,4,2],[1,3,0,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,3],[1,3,0,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,4,0,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,3,0,3],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,3,0,2],[2,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,3,0,2],[1,3,2,0]],[[0,2,0,1],[1,3,3,2],[1,3,0,2],[1,2,3,0]],[[0,3,0,1],[1,3,3,2],[1,3,1,0],[1,2,2,1]],[[0,2,0,2],[1,3,3,2],[1,3,1,0],[1,2,2,1]],[[0,2,0,1],[1,4,3,2],[1,3,1,0],[1,2,2,1]],[[0,2,0,1],[1,3,4,2],[1,3,1,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,3],[1,3,1,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,4,1,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,3,1,0],[2,2,2,1]],[[0,2,0,1],[1,3,3,2],[1,3,1,0],[1,3,2,1]],[[0,2,0,1],[1,3,3,2],[1,3,1,0],[1,2,3,1]],[[0,2,0,1],[1,3,3,2],[1,3,1,0],[1,2,2,2]],[[0,3,0,1],[1,3,3,2],[1,3,1,1],[1,2,2,0]],[[0,2,0,2],[1,3,3,2],[1,3,1,1],[1,2,2,0]],[[0,2,0,1],[1,4,3,2],[1,3,1,1],[1,2,2,0]],[[0,2,0,1],[1,3,4,2],[1,3,1,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,3],[1,3,1,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,4,1,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,3,1,1],[2,2,2,0]],[[0,2,0,1],[1,3,3,2],[1,3,1,1],[1,3,2,0]],[[0,2,0,1],[1,3,3,2],[1,3,1,1],[1,2,3,0]],[[0,3,0,1],[1,3,3,2],[1,3,1,2],[1,1,1,1]],[[0,2,0,2],[1,3,3,2],[1,3,1,2],[1,1,1,1]],[[0,2,0,1],[1,4,3,2],[1,3,1,2],[1,1,1,1]],[[0,2,0,1],[1,3,4,2],[1,3,1,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,3],[1,3,1,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[1,4,1,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[1,3,1,3],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[1,3,1,2],[1,1,1,2]],[[0,3,0,1],[1,3,3,2],[1,3,1,2],[1,1,2,0]],[[0,2,0,2],[1,3,3,2],[1,3,1,2],[1,1,2,0]],[[0,2,0,1],[1,4,3,2],[1,3,1,2],[1,1,2,0]],[[0,2,0,1],[1,3,4,2],[1,3,1,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,3],[1,3,1,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[1,4,1,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[1,3,1,3],[1,1,2,0]],[[0,3,0,1],[1,3,3,2],[1,3,1,2],[1,2,0,1]],[[0,2,0,2],[1,3,3,2],[1,3,1,2],[1,2,0,1]],[[0,2,0,1],[1,4,3,2],[1,3,1,2],[1,2,0,1]],[[0,2,0,1],[1,3,4,2],[1,3,1,2],[1,2,0,1]],[[0,2,0,1],[1,3,3,3],[1,3,1,2],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[1,4,1,2],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[1,3,1,3],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[1,3,1,2],[2,2,0,1]],[[0,2,0,1],[1,3,3,2],[1,3,1,2],[1,3,0,1]],[[0,2,0,1],[1,3,3,2],[1,3,1,2],[1,2,0,2]],[[0,3,0,1],[1,3,3,2],[1,3,1,2],[1,2,1,0]],[[0,2,0,2],[1,3,3,2],[1,3,1,2],[1,2,1,0]],[[0,2,0,1],[1,4,3,2],[1,3,1,2],[1,2,1,0]],[[0,2,0,1],[1,3,4,2],[1,3,1,2],[1,2,1,0]],[[0,2,0,1],[1,3,3,3],[1,3,1,2],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,4,1,2],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,3,1,3],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,3,1,2],[2,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,1],[2,0,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,1,1],[2,0,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,1,1],[2,0,4,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,1],[3,0,3,2],[1,2,2,0]],[[1,2,2,1],[3,1,1,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,1,1],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,1,1],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,1,1],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,1,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,1],[2,0,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,1,1],[2,0,3,3],[1,2,1,1]],[[0,3,0,1],[1,3,3,2],[1,3,2,0],[1,1,2,1]],[[0,2,0,2],[1,3,3,2],[1,3,2,0],[1,1,2,1]],[[0,2,0,1],[1,4,3,2],[1,3,2,0],[1,1,2,1]],[[0,2,0,1],[1,3,4,2],[1,3,2,0],[1,1,2,1]],[[0,2,0,1],[1,3,3,3],[1,3,2,0],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[1,4,2,0],[1,1,2,1]],[[0,3,0,1],[1,3,3,2],[1,3,2,0],[1,2,1,1]],[[0,2,0,2],[1,3,3,2],[1,3,2,0],[1,2,1,1]],[[0,2,0,1],[1,4,3,2],[1,3,2,0],[1,2,1,1]],[[0,2,0,1],[1,3,4,2],[1,3,2,0],[1,2,1,1]],[[0,2,0,1],[1,3,3,3],[1,3,2,0],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,4,2,0],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,3,2,0],[2,2,1,1]],[[0,2,0,1],[1,3,3,2],[1,3,2,0],[1,3,1,1]],[[0,3,0,1],[1,3,3,2],[1,3,2,1],[1,1,1,1]],[[0,2,0,2],[1,3,3,2],[1,3,2,1],[1,1,1,1]],[[0,2,0,1],[1,4,3,2],[1,3,2,1],[1,1,1,1]],[[0,2,0,1],[1,3,4,2],[1,3,2,1],[1,1,1,1]],[[0,2,0,1],[1,3,3,3],[1,3,2,1],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[1,4,2,1],[1,1,1,1]],[[0,3,0,1],[1,3,3,2],[1,3,2,1],[1,1,2,0]],[[0,2,0,2],[1,3,3,2],[1,3,2,1],[1,1,2,0]],[[0,2,0,1],[1,4,3,2],[1,3,2,1],[1,1,2,0]],[[0,2,0,1],[1,3,4,2],[1,3,2,1],[1,1,2,0]],[[0,2,0,1],[1,3,3,3],[1,3,2,1],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[1,4,2,1],[1,1,2,0]],[[0,3,0,1],[1,3,3,2],[1,3,2,1],[1,2,0,1]],[[0,2,0,2],[1,3,3,2],[1,3,2,1],[1,2,0,1]],[[0,2,0,1],[1,4,3,2],[1,3,2,1],[1,2,0,1]],[[0,2,0,1],[1,3,4,2],[1,3,2,1],[1,2,0,1]],[[0,2,0,1],[1,3,3,3],[1,3,2,1],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[1,4,2,1],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[1,3,2,1],[2,2,0,1]],[[0,2,0,1],[1,3,3,2],[1,3,2,1],[1,3,0,1]],[[0,3,0,1],[1,3,3,2],[1,3,2,1],[1,2,1,0]],[[0,2,0,2],[1,3,3,2],[1,3,2,1],[1,2,1,0]],[[0,2,0,1],[1,4,3,2],[1,3,2,1],[1,2,1,0]],[[0,2,0,1],[1,3,4,2],[1,3,2,1],[1,2,1,0]],[[0,2,0,1],[1,3,3,3],[1,3,2,1],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,4,2,1],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,3,2,1],[2,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,1],[2,0,4,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,1],[2,0,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,1,1],[2,0,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,1,1],[2,0,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,1,1],[2,0,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,1,1],[2,0,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,1],[3,0,3,1],[1,2,2,1]],[[1,2,2,1],[3,1,1,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,2],[2,1,1,1],[2,0,3,1],[1,2,2,1]],[[1,2,3,1],[2,1,1,1],[2,0,3,1],[1,2,2,1]],[[1,3,2,1],[2,1,1,1],[2,0,3,1],[1,2,2,1]],[[2,2,2,1],[2,1,1,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,1],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,1,1],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,1,1],[2,0,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,1,1],[2,0,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,1],[2,0,2,3],[1,2,2,1]],[[1,2,2,1],[2,1,1,1],[3,0,2,2],[1,2,2,1]],[[1,2,2,1],[3,1,1,1],[2,0,2,2],[1,2,2,1]],[[1,2,2,2],[2,1,1,1],[2,0,2,2],[1,2,2,1]],[[1,2,3,1],[2,1,1,1],[2,0,2,2],[1,2,2,1]],[[1,3,2,1],[2,1,1,1],[2,0,2,2],[1,2,2,1]],[[2,2,2,1],[2,1,1,1],[2,0,2,2],[1,2,2,1]],[[0,3,0,1],[1,3,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,0,1],[1,4,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,0,1],[1,3,4,2],[1,3,3,0],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[1,4,3,0],[1,1,2,0]],[[0,3,0,1],[1,3,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,0,1],[1,4,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,0,1],[1,3,4,2],[1,3,3,0],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,4,3,0],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,3,3,0],[2,2,1,0]],[[0,2,0,1],[1,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,1,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,1],[1,3,3,1],[2,2,1,0]],[[1,2,2,1],[2,1,1,1],[1,3,4,1],[1,2,1,0]],[[1,2,2,1],[2,1,1,1],[1,4,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,1,1],[1,3,3,1],[1,3,0,1]],[[1,2,2,1],[2,1,1,1],[1,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,1,1],[1,3,4,1],[1,2,0,1]],[[1,2,2,1],[2,1,1,1],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,1,1],[1,3,3,1],[1,1,3,0]],[[1,2,2,1],[2,1,1,1],[1,3,4,1],[1,1,2,0]],[[1,2,2,1],[2,1,1,1],[1,4,3,1],[1,1,2,0]],[[0,3,0,1],[1,3,3,2],[1,3,3,1],[1,2,0,0]],[[0,2,0,2],[1,3,3,2],[1,3,3,1],[1,2,0,0]],[[0,2,0,1],[1,4,3,2],[1,3,3,1],[1,2,0,0]],[[0,2,0,1],[1,3,4,2],[1,3,3,1],[1,2,0,0]],[[0,2,0,1],[1,3,3,3],[1,3,3,1],[1,2,0,0]],[[0,2,0,1],[1,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,1,1,1],[1,3,3,0],[1,3,1,1]],[[1,2,2,1],[2,1,1,1],[1,3,3,0],[2,2,1,1]],[[1,2,2,1],[2,1,1,1],[1,3,4,0],[1,2,1,1]],[[1,2,2,1],[2,1,1,1],[1,4,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,1,1],[1,3,3,0],[1,1,2,2]],[[1,2,2,1],[2,1,1,1],[1,3,3,0],[1,1,3,1]],[[1,2,2,1],[2,1,1,1],[1,3,4,0],[1,1,2,1]],[[1,2,2,1],[2,1,1,1],[1,4,3,0],[1,1,2,1]],[[1,2,2,1],[2,1,1,1],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,1],[1,3,2,1],[1,3,2,0]],[[1,2,2,1],[2,1,1,1],[1,3,2,1],[2,2,2,0]],[[1,2,2,1],[2,1,1,1],[1,4,2,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,1],[1,3,2,0],[1,2,2,2]],[[1,2,2,1],[2,1,1,1],[1,3,2,0],[1,2,3,1]],[[1,2,2,1],[2,1,1,1],[1,3,2,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,1],[1,3,2,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,1],[1,4,2,0],[1,2,2,1]],[[1,2,2,1],[2,1,1,1],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[2,1,1,1],[1,3,0,2],[1,2,3,1]],[[1,2,2,1],[2,1,1,1],[1,3,0,2],[1,3,2,1]],[[1,2,2,1],[2,1,1,1],[1,3,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,1],[1,3,0,3],[1,2,2,1]],[[1,2,2,1],[2,1,1,1],[1,4,0,2],[1,2,2,1]],[[1,2,2,1],[2,1,1,1],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,1,1],[1,2,3,1],[1,3,2,0]],[[1,2,2,1],[2,1,1,1],[1,2,3,1],[2,2,2,0]],[[1,2,2,1],[2,1,1,1],[1,2,4,1],[1,2,2,0]],[[1,2,2,1],[2,1,1,1],[1,2,3,0],[1,2,2,2]],[[1,2,2,1],[2,1,1,1],[1,2,3,0],[1,2,3,1]],[[1,2,2,1],[2,1,1,1],[1,2,3,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,1],[1,2,3,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,1],[1,2,4,0],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,1,1,0],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,1,1,0],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[3,1,1,0],[2,3,3,2],[1,2,0,0]],[[1,2,2,2],[2,1,1,0],[2,3,3,2],[1,2,0,0]],[[1,2,3,1],[2,1,1,0],[2,3,3,2],[1,2,0,0]],[[1,3,2,1],[2,1,1,0],[2,3,3,2],[1,2,0,0]],[[2,2,2,1],[2,1,1,0],[2,3,3,2],[1,2,0,0]],[[0,3,0,1],[1,3,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,0,2],[1,3,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[1,4,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,4,2],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,3],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[3,0,1,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,1,3],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,1,2],[2,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,1,2],[1,3,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,1,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,2],[2,0,1,2],[1,2,2,2]],[[0,2,0,2],[1,3,3,2],[2,0,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,4,2],[2,0,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,3,3],[2,0,2,2],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,2,3],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,2,2],[0,2,3,1]],[[0,2,0,1],[1,3,3,2],[2,0,2,2],[0,2,2,2]],[[0,3,0,1],[1,3,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,0,2],[1,3,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,0,1],[1,4,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,0,1],[1,3,4,2],[2,0,2,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,3],[2,0,2,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,0,2,3],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,0,2,2],[1,2,1,2]],[[0,3,0,1],[1,3,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,0,2],[1,3,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[1,4,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,4,2],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,3],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,0,2,3],[1,2,2,0]],[[0,3,0,1],[1,3,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,2],[1,3,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[1,4,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[1,3,4,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,3],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[3,0,3,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,4,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,3,0],[2,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,3,0],[1,3,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,3,0],[1,2,3,1]],[[0,2,0,1],[1,3,3,2],[2,0,3,0],[1,2,2,2]],[[0,3,0,1],[1,3,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,0,2],[1,3,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,0,1],[1,4,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,4,2],[2,0,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,3,3],[2,0,3,1],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,0,4,1],[1,2,1,1]],[[0,3,0,1],[1,3,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,2],[1,3,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,1],[1,4,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,1],[1,3,4,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,3],[2,0,3,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[3,0,3,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,0,4,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,0,3,1],[2,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,0,3,1],[1,3,2,0]],[[0,2,0,1],[1,3,3,2],[2,0,3,1],[1,2,3,0]],[[0,2,0,2],[1,3,3,2],[2,0,3,2],[0,1,2,1]],[[0,2,0,1],[1,3,4,2],[2,0,3,2],[0,1,2,1]],[[0,2,0,1],[1,3,3,3],[2,0,3,2],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,3,3],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,0,3,2],[0,1,2,2]],[[0,2,0,2],[1,3,3,2],[2,0,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,4,2],[2,0,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,3,3],[2,0,3,2],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,0,3,3],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,0,3,2],[0,2,1,2]],[[0,2,0,2],[1,3,3,2],[2,0,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,4,2],[2,0,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,3],[2,0,3,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,0,3,3],[0,2,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,1,0],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[2,1,1,0],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,1,0],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[3,1,1,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[2,1,1,0],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[2,1,1,0],[2,3,3,2],[1,1,1,0]],[[0,3,0,1],[1,3,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,0,2],[1,3,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[1,4,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,4,2],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,3],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[3,1,0,2],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,0,3],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,0,2],[2,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,0,2],[1,3,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,0,2],[1,2,3,1]],[[0,2,0,1],[1,3,3,2],[2,1,0,2],[1,2,2,2]],[[0,3,0,1],[1,3,3,2],[2,1,1,2],[0,2,2,1]],[[0,2,0,2],[1,3,3,2],[2,1,1,2],[0,2,2,1]],[[0,2,0,1],[1,4,3,2],[2,1,1,2],[0,2,2,1]],[[0,2,0,1],[1,3,4,2],[2,1,1,2],[0,2,2,1]],[[0,2,0,1],[1,3,3,3],[2,1,1,2],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,1,3],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,1,2],[0,3,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,1,2],[0,2,3,1]],[[0,2,0,1],[1,3,3,2],[2,1,1,2],[0,2,2,2]],[[0,3,0,1],[1,3,3,2],[2,1,2,2],[0,2,1,1]],[[0,2,0,2],[1,3,3,2],[2,1,2,2],[0,2,1,1]],[[0,2,0,1],[1,4,3,2],[2,1,2,2],[0,2,1,1]],[[0,2,0,1],[1,3,4,2],[2,1,2,2],[0,2,1,1]],[[0,2,0,1],[1,3,3,3],[2,1,2,2],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,1,2,3],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,1,2,2],[0,2,1,2]],[[0,3,0,1],[1,3,3,2],[2,1,2,2],[0,2,2,0]],[[0,2,0,2],[1,3,3,2],[2,1,2,2],[0,2,2,0]],[[0,2,0,1],[1,4,3,2],[2,1,2,2],[0,2,2,0]],[[0,2,0,1],[1,3,4,2],[2,1,2,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,3],[2,1,2,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,3,2,1],[2,1,1,0],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,1,1,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,1,1,0],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[2,1,1,0],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,1,0],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,1,1,0],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,1,1,0],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,1,1,0],[2,3,3,2],[1,1,0,1]],[[0,3,0,1],[1,3,3,2],[2,1,3,0],[0,2,2,1]],[[0,2,0,2],[1,3,3,2],[2,1,3,0],[0,2,2,1]],[[0,2,0,1],[1,4,3,2],[2,1,3,0],[0,2,2,1]],[[0,2,0,1],[1,3,4,2],[2,1,3,0],[0,2,2,1]],[[0,2,0,1],[1,3,3,3],[2,1,3,0],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,4,0],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,3,0],[0,3,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,3,0],[0,2,3,1]],[[0,2,0,1],[1,3,3,2],[2,1,3,0],[0,2,2,2]],[[0,3,0,1],[1,3,3,2],[2,1,3,1],[0,2,1,1]],[[0,2,0,2],[1,3,3,2],[2,1,3,1],[0,2,1,1]],[[0,2,0,1],[1,4,3,2],[2,1,3,1],[0,2,1,1]],[[0,2,0,1],[1,3,4,2],[2,1,3,1],[0,2,1,1]],[[0,2,0,1],[1,3,3,3],[2,1,3,1],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,1,4,1],[0,2,1,1]],[[0,3,0,1],[1,3,3,2],[2,1,3,1],[0,2,2,0]],[[0,2,0,2],[1,3,3,2],[2,1,3,1],[0,2,2,0]],[[0,2,0,1],[1,4,3,2],[2,1,3,1],[0,2,2,0]],[[0,2,0,1],[1,3,4,2],[2,1,3,1],[0,2,2,0]],[[0,2,0,1],[1,3,3,3],[2,1,3,1],[0,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,1,4,1],[0,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,1,3,1],[0,3,2,0]],[[0,2,0,1],[1,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,3,2,1],[2,1,1,0],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,1,1,0],[2,3,3,2],[1,1,0,1]],[[0,2,0,2],[1,3,3,2],[2,1,3,2],[0,0,2,1]],[[0,2,0,1],[1,3,4,2],[2,1,3,2],[0,0,2,1]],[[0,2,0,1],[1,3,3,3],[2,1,3,2],[0,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,3,3],[0,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,1,3,2],[0,0,2,2]],[[0,2,0,2],[1,3,3,2],[2,1,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,4,2],[2,1,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,3],[2,1,3,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,1,3,3],[0,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,1,3,2],[0,1,1,2]],[[0,2,0,2],[1,3,3,2],[2,1,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,4,2],[2,1,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,3],[2,1,3,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[2,1,1,0],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,1,0],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[3,1,1,0],[2,3,3,2],[1,0,2,0]],[[0,2,0,2],[1,3,3,2],[2,1,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,4,2],[2,1,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,3],[2,1,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,1,3,3],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,1,3,2],[1,0,1,2]],[[0,2,0,2],[1,3,3,2],[2,1,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,4,2],[2,1,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,3],[2,1,3,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,2],[2,1,1,0],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,1,0],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,1,0],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,1,0],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[1,0,1,2]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[2,1,1,0],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[2,1,1,0],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,1,0],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[3,1,1,0],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,1,0],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[2,1,1,0],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,1,0],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,1,0],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[3,2,0,1],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,0,1],[2,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,0,1],[1,3,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,0,1],[1,2,3,1]],[[0,2,0,1],[1,3,3,2],[2,2,0,1],[1,2,2,2]],[[0,3,0,1],[1,3,3,2],[2,2,0,2],[0,2,2,1]],[[0,2,0,2],[1,3,3,2],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[1,4,3,2],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[1,3,4,2],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[1,3,3,3],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,0,3],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,0,2],[0,3,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,0,2],[0,2,3,1]],[[0,2,0,1],[1,3,3,2],[2,2,0,2],[0,2,2,2]],[[0,2,0,1],[1,3,3,2],[3,2,0,2],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,0,2],[2,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,0,2],[1,3,1,1]],[[0,2,0,1],[1,3,3,2],[3,2,0,2],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,0,2],[2,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,0,2],[1,3,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,0,2],[1,2,3,0]],[[0,2,0,1],[1,3,3,2],[3,2,1,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,0],[2,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,0],[1,3,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,0],[1,2,3,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,0],[1,2,2,2]],[[0,2,0,1],[1,3,3,2],[3,2,1,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,1,1],[2,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,1,1],[1,3,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,1,1],[1,2,3,0]],[[0,3,0,1],[1,3,3,2],[2,2,1,2],[0,1,2,1]],[[0,2,0,2],[1,3,3,2],[2,2,1,2],[0,1,2,1]],[[0,2,0,1],[1,4,3,2],[2,2,1,2],[0,1,2,1]],[[0,2,0,1],[1,3,4,2],[2,2,1,2],[0,1,2,1]],[[0,2,0,1],[1,3,3,3],[2,2,1,2],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,3],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,2],[0,1,3,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,2],[0,1,2,2]],[[0,3,0,1],[1,3,3,2],[2,2,1,2],[1,0,2,1]],[[0,2,0,2],[1,3,3,2],[2,2,1,2],[1,0,2,1]],[[0,2,0,1],[1,4,3,2],[2,2,1,2],[1,0,2,1]],[[0,2,0,1],[1,3,4,2],[2,2,1,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,3],[2,2,1,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,3],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,2],[1,0,3,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,2],[1,0,2,2]],[[0,2,0,1],[1,3,3,2],[3,2,1,2],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,2],[2,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,1,2],[1,3,0,1]],[[0,2,0,1],[1,3,3,2],[3,2,1,2],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,2,1,2],[2,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,1,0],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[2,1,1,0],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,1,0],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[3,1,1,0],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[2,1,1,0],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[2,1,1,0],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,1,1,0],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,1,1,0],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[3,2,2,0],[1,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,0],[2,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,0],[1,3,1,1]],[[0,2,0,1],[1,3,3,2],[3,2,2,1],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,1],[2,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,1],[1,3,0,1]],[[0,2,0,1],[1,3,3,2],[3,2,2,1],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,2,2,1],[2,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[2,1,1,0],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[2,1,1,0],[2,4,3,2],[0,2,0,1]],[[0,3,0,1],[1,3,3,2],[2,2,2,2],[0,0,2,1]],[[0,2,0,2],[1,3,3,2],[2,2,2,2],[0,0,2,1]],[[0,2,0,1],[1,4,3,2],[2,2,2,2],[0,0,2,1]],[[0,2,0,1],[1,3,4,2],[2,2,2,2],[0,0,2,1]],[[0,2,0,1],[1,3,3,3],[2,2,2,2],[0,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,3],[0,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,2],[0,0,2,2]],[[0,3,0,1],[1,3,3,2],[2,2,2,2],[0,1,1,1]],[[0,2,0,2],[1,3,3,2],[2,2,2,2],[0,1,1,1]],[[0,2,0,1],[1,4,3,2],[2,2,2,2],[0,1,1,1]],[[0,2,0,1],[1,3,4,2],[2,2,2,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,3],[2,2,2,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,3],[0,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,2],[0,1,1,2]],[[0,3,0,1],[1,3,3,2],[2,2,2,2],[0,1,2,0]],[[0,2,0,2],[1,3,3,2],[2,2,2,2],[0,1,2,0]],[[0,2,0,1],[1,4,3,2],[2,2,2,2],[0,1,2,0]],[[0,2,0,1],[1,3,4,2],[2,2,2,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,3],[2,2,2,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,2,3],[0,1,2,0]],[[0,3,0,1],[1,3,3,2],[2,2,2,2],[0,2,0,1]],[[0,2,0,2],[1,3,3,2],[2,2,2,2],[0,2,0,1]],[[0,2,0,1],[1,4,3,2],[2,2,2,2],[0,2,0,1]],[[0,2,0,1],[1,3,4,2],[2,2,2,2],[0,2,0,1]],[[0,2,0,1],[1,3,3,3],[2,2,2,2],[0,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,3],[0,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,2],[0,2,0,2]],[[0,3,0,1],[1,3,3,2],[2,2,2,2],[0,2,1,0]],[[0,2,0,2],[1,3,3,2],[2,2,2,2],[0,2,1,0]],[[0,2,0,1],[1,4,3,2],[2,2,2,2],[0,2,1,0]],[[0,2,0,1],[1,3,4,2],[2,2,2,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,3],[2,2,2,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,2,1],[2,1,1,0],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[3,1,1,0],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[2,1,1,0],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[2,1,1,0],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,1,1,0],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,1,1,0],[2,3,3,2],[0,2,0,1]],[[0,3,0,1],[1,3,3,2],[2,2,2,2],[1,0,1,1]],[[0,2,0,2],[1,3,3,2],[2,2,2,2],[1,0,1,1]],[[0,2,0,1],[1,4,3,2],[2,2,2,2],[1,0,1,1]],[[0,2,0,1],[1,3,4,2],[2,2,2,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,3],[2,2,2,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,3],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,2],[1,0,1,2]],[[0,3,0,1],[1,3,3,2],[2,2,2,2],[1,0,2,0]],[[0,2,0,2],[1,3,3,2],[2,2,2,2],[1,0,2,0]],[[0,2,0,1],[1,4,3,2],[2,2,2,2],[1,0,2,0]],[[0,2,0,1],[1,3,4,2],[2,2,2,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,3],[2,2,2,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,2,3],[1,0,2,0]],[[0,3,0,1],[1,3,3,2],[2,2,2,2],[1,1,0,1]],[[0,2,0,2],[1,3,3,2],[2,2,2,2],[1,1,0,1]],[[0,2,0,1],[1,4,3,2],[2,2,2,2],[1,1,0,1]],[[0,2,0,1],[1,3,4,2],[2,2,2,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,3],[2,2,2,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,3],[1,1,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,2,2],[1,1,0,2]],[[0,3,0,1],[1,3,3,2],[2,2,2,2],[1,1,1,0]],[[0,2,0,2],[1,3,3,2],[2,2,2,2],[1,1,1,0]],[[0,2,0,1],[1,4,3,2],[2,2,2,2],[1,1,1,0]],[[0,2,0,1],[1,3,4,2],[2,2,2,2],[1,1,1,0]],[[0,2,0,1],[1,3,3,3],[2,2,2,2],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[0,1,3,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[2,1,1,0],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,1,0],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[3,1,1,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,1,0],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,1,0],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,1,0],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,1,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[2,1,1,0],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[2,1,1,0],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[2,1,1,0],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,1,0],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[3,1,1,0],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,1,0],[2,3,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,1,0],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,1,0],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,1,1,0],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[2,1,1,0],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,4,2],[0,0,2,1]],[[0,3,0,1],[1,3,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,0,2],[1,3,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,0,1],[1,4,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,0,1],[1,3,4,2],[2,2,3,0],[0,1,2,1]],[[0,2,0,1],[1,3,3,3],[2,2,3,0],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,4,0],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,3,0],[0,1,3,1]],[[0,2,0,1],[1,3,3,2],[2,2,3,0],[0,1,2,2]],[[0,3,0,1],[1,3,3,2],[2,2,3,0],[0,2,1,1]],[[0,2,0,2],[1,3,3,2],[2,2,3,0],[0,2,1,1]],[[0,2,0,1],[1,4,3,2],[2,2,3,0],[0,2,1,1]],[[0,2,0,1],[1,3,4,2],[2,2,3,0],[0,2,1,1]],[[0,2,0,1],[1,3,3,3],[2,2,3,0],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,4,0],[0,2,1,1]],[[0,3,0,1],[1,3,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,0,2],[1,3,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,0,1],[1,4,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,0,1],[1,3,4,2],[2,2,3,0],[1,0,2,1]],[[0,2,0,1],[1,3,3,3],[2,2,3,0],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,4,0],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,3,0],[1,0,3,1]],[[0,2,0,1],[1,3,3,2],[2,2,3,0],[1,0,2,2]],[[0,3,0,1],[1,3,3,2],[2,2,3,0],[1,1,1,1]],[[0,2,0,2],[1,3,3,2],[2,2,3,0],[1,1,1,1]],[[0,2,0,1],[1,4,3,2],[2,2,3,0],[1,1,1,1]],[[0,2,0,1],[1,3,4,2],[2,2,3,0],[1,1,1,1]],[[0,2,0,1],[1,3,3,3],[2,2,3,0],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,4,0],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[3,2,3,0],[1,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,2,3,0],[2,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,1,0],[2,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,1,0],[3,3,3,1],[1,2,0,1]],[[1,2,2,1],[3,1,1,0],[2,3,3,1],[1,2,0,1]],[[1,2,3,1],[2,1,1,0],[2,3,3,1],[1,2,0,1]],[[1,3,2,1],[2,1,1,0],[2,3,3,1],[1,2,0,1]],[[2,2,2,1],[2,1,1,0],[2,3,3,1],[1,2,0,1]],[[0,3,0,1],[1,3,3,2],[2,2,3,1],[0,0,2,1]],[[0,2,0,2],[1,3,3,2],[2,2,3,1],[0,0,2,1]],[[0,2,0,1],[1,4,3,2],[2,2,3,1],[0,0,2,1]],[[0,2,0,1],[1,3,4,2],[2,2,3,1],[0,0,2,1]],[[0,2,0,1],[1,3,3,3],[2,2,3,1],[0,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,2,4,1],[0,0,2,1]],[[0,3,0,1],[1,3,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,0,2],[1,3,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,0,1],[1,4,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,0,1],[1,3,4,2],[2,2,3,1],[0,1,1,1]],[[0,2,0,1],[1,3,3,3],[2,2,3,1],[0,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,4,1],[0,1,1,1]],[[0,3,0,1],[1,3,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,0,2],[1,3,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,0,1],[1,4,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,0,1],[1,3,4,2],[2,2,3,1],[0,1,2,0]],[[0,2,0,1],[1,3,3,3],[2,2,3,1],[0,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,4,1],[0,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,3,1],[0,1,3,0]],[[0,3,0,1],[1,3,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,0,2],[1,3,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,0,1],[1,4,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,0,1],[1,3,4,2],[2,2,3,1],[0,2,0,1]],[[0,2,0,1],[1,3,3,3],[2,2,3,1],[0,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,4,1],[0,2,0,1]],[[0,3,0,1],[1,3,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,0,2],[1,3,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,0,1],[1,4,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,0,1],[1,3,4,2],[2,2,3,1],[0,2,1,0]],[[0,2,0,1],[1,3,3,3],[2,2,3,1],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,2,4,1],[0,2,1,0]],[[0,3,0,1],[1,3,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,0,2],[1,3,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,0,1],[1,4,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,0,1],[1,3,4,2],[2,2,3,1],[1,0,1,1]],[[0,2,0,1],[1,3,3,3],[2,2,3,1],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,2,4,1],[1,0,1,1]],[[0,3,0,1],[1,3,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,0,2],[1,3,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,0,1],[1,4,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,0,1],[1,3,4,2],[2,2,3,1],[1,0,2,0]],[[0,2,0,1],[1,3,3,3],[2,2,3,1],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,4,1],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,2,3,1],[1,0,3,0]],[[0,3,0,1],[1,3,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,0,2],[1,3,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,0,1],[1,4,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,0,1],[1,3,4,2],[2,2,3,1],[1,1,0,1]],[[0,2,0,1],[1,3,3,3],[2,2,3,1],[1,1,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,4,1],[1,1,0,1]],[[0,3,0,1],[1,3,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,0,2],[1,3,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,0,1],[1,4,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,0,1],[1,3,4,2],[2,2,3,1],[1,1,1,0]],[[0,2,0,1],[1,3,3,3],[2,2,3,1],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,2,1],[2,1,1,0],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[2,1,1,0],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[2,1,1,0],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,1,0],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,1,1,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,2],[2,1,1,0],[2,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,1,1,0],[2,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,1,1,0],[2,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,1,1,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[2,1,1,0],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[2,1,1,0],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[2,1,1,0],[3,3,3,1],[1,0,2,1]],[[1,2,2,1],[3,1,1,0],[2,3,3,1],[1,0,2,1]],[[1,2,2,2],[2,1,1,0],[2,3,3,1],[1,0,2,1]],[[1,2,3,1],[2,1,1,0],[2,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,1,1,0],[2,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,1,1,0],[2,3,3,1],[1,0,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[2,1,1,0],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[2,1,1,0],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,1,0],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[3,1,1,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,2],[2,1,1,0],[2,3,3,1],[0,2,1,1]],[[1,2,3,1],[2,1,1,0],[2,3,3,1],[0,2,1,1]],[[0,3,0,1],[1,3,3,2],[2,2,3,2],[0,1,0,1]],[[0,2,0,2],[1,3,3,2],[2,2,3,2],[0,1,0,1]],[[0,2,0,1],[1,4,3,2],[2,2,3,2],[0,1,0,1]],[[0,2,0,1],[1,3,4,2],[2,2,3,2],[0,1,0,1]],[[0,2,0,1],[1,3,3,3],[2,2,3,2],[0,1,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,3,2,1],[2,1,1,0],[2,3,3,1],[0,2,1,1]],[[2,2,2,1],[2,1,1,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[2,1,1,0],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[2,1,1,0],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[2,1,1,0],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[2,1,1,0],[3,3,3,1],[0,1,2,1]],[[1,2,2,1],[3,1,1,0],[2,3,3,1],[0,1,2,1]],[[1,2,2,2],[2,1,1,0],[2,3,3,1],[0,1,2,1]],[[1,2,3,1],[2,1,1,0],[2,3,3,1],[0,1,2,1]],[[1,3,2,1],[2,1,1,0],[2,3,3,1],[0,1,2,1]],[[2,2,2,1],[2,1,1,0],[2,3,3,1],[0,1,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,0],[2,1,2,1]],[[1,2,2,1],[2,1,1,0],[2,4,3,0],[1,1,2,1]],[[1,2,2,1],[2,1,1,0],[3,3,3,0],[1,1,2,1]],[[1,2,2,1],[3,1,1,0],[2,3,3,0],[1,1,2,1]],[[1,2,3,1],[2,1,1,0],[2,3,3,0],[1,1,2,1]],[[1,3,2,1],[2,1,1,0],[2,3,3,0],[1,1,2,1]],[[2,2,2,1],[2,1,1,0],[2,3,3,0],[1,1,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,0],[0,2,3,1]],[[1,2,2,1],[2,1,1,0],[2,3,3,0],[0,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,4,3,0],[0,2,2,1]],[[1,2,2,1],[2,1,1,0],[3,3,3,0],[0,2,2,1]],[[1,2,2,1],[3,1,1,0],[2,3,3,0],[0,2,2,1]],[[1,2,3,1],[2,1,1,0],[2,3,3,0],[0,2,2,1]],[[1,3,2,1],[2,1,1,0],[2,3,3,0],[0,2,2,1]],[[2,2,2,1],[2,1,1,0],[2,3,3,0],[0,2,2,1]],[[0,3,0,1],[1,3,3,2],[2,2,3,2],[1,0,0,1]],[[0,2,0,2],[1,3,3,2],[2,2,3,2],[1,0,0,1]],[[0,2,0,1],[1,4,3,2],[2,2,3,2],[1,0,0,1]],[[0,2,0,1],[1,3,4,2],[2,2,3,2],[1,0,0,1]],[[0,2,0,1],[1,3,3,3],[2,2,3,2],[1,0,0,1]],[[0,2,0,1],[1,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[2,1,1,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,1,1,0],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,1,0],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,1,1,0],[2,3,2,2],[1,1,2,0]],[[1,2,2,2],[2,1,1,0],[2,3,2,2],[1,1,2,0]],[[1,2,3,1],[2,1,1,0],[2,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,1,1,0],[2,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,1,1,0],[2,3,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,1,0],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[2,1,1,0],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[2,1,1,0],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[2,1,1,0],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,1,0],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[3,1,1,0],[2,3,2,2],[0,2,2,0]],[[1,2,2,2],[2,1,1,0],[2,3,2,2],[0,2,2,0]],[[1,2,3,1],[2,1,1,0],[2,3,2,2],[0,2,2,0]],[[1,3,2,1],[2,1,1,0],[2,3,2,2],[0,2,2,0]],[[2,2,2,1],[2,1,1,0],[2,3,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[2,1,1,0],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[2,1,1,0],[2,3,2,3],[0,1,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[2,1,1,0],[2,4,2,1],[1,1,2,1]],[[1,2,2,1],[2,1,1,0],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[3,1,1,0],[2,3,2,1],[1,1,2,1]],[[1,2,2,2],[2,1,1,0],[2,3,2,1],[1,1,2,1]],[[1,2,3,1],[2,1,1,0],[2,3,2,1],[1,1,2,1]],[[1,3,2,1],[2,1,1,0],[2,3,2,1],[1,1,2,1]],[[2,2,2,1],[2,1,1,0],[2,3,2,1],[1,1,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[2,1,1,0],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[2,1,1,0],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[2,1,1,0],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[3,1,1,0],[2,3,2,1],[0,2,2,1]],[[1,2,2,2],[2,1,1,0],[2,3,2,1],[0,2,2,1]],[[1,2,3,1],[2,1,1,0],[2,3,2,1],[0,2,2,1]],[[1,3,2,1],[2,1,1,0],[2,3,2,1],[0,2,2,1]],[[2,2,2,1],[2,1,1,0],[2,3,2,1],[0,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,2,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,2,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[3,3,2,0],[1,2,2,1]],[[1,2,2,1],[3,1,1,0],[2,3,2,0],[1,2,2,1]],[[1,3,2,1],[2,1,1,0],[2,3,2,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[3,3,0,0],[1,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,0],[2,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,0],[1,3,2,1]],[[0,3,0,1],[1,3,3,2],[2,3,0,1],[0,2,2,1]],[[0,2,0,2],[1,3,3,2],[2,3,0,1],[0,2,2,1]],[[0,2,0,1],[1,4,3,2],[2,3,0,1],[0,2,2,1]],[[0,2,0,1],[1,3,4,2],[2,3,0,1],[0,2,2,1]],[[0,2,0,1],[1,3,3,3],[2,3,0,1],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[3,3,0,1],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,4,0,1],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,1],[0,3,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,1],[0,2,3,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,1],[0,2,2,2]],[[0,3,0,1],[1,3,3,2],[2,3,0,1],[1,1,2,1]],[[0,2,0,2],[1,3,3,2],[2,3,0,1],[1,1,2,1]],[[0,2,0,1],[1,4,3,2],[2,3,0,1],[1,1,2,1]],[[0,2,0,1],[1,3,4,2],[2,3,0,1],[1,1,2,1]],[[0,2,0,1],[1,3,3,3],[2,3,0,1],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[3,3,0,1],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,4,0,1],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,1],[2,1,2,1]],[[0,2,0,1],[1,3,3,2],[3,3,0,1],[1,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,0,1],[2,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,0,1],[1,3,2,0]],[[0,3,0,1],[1,3,3,2],[2,3,0,2],[0,1,2,1]],[[0,2,0,2],[1,3,3,2],[2,3,0,2],[0,1,2,1]],[[0,2,0,1],[1,4,3,2],[2,3,0,2],[0,1,2,1]],[[0,2,0,1],[1,3,4,2],[2,3,0,2],[0,1,2,1]],[[0,2,0,1],[1,3,3,3],[2,3,0,2],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[3,3,0,2],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,4,0,2],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,3],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[0,1,3,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[0,1,2,2]],[[0,3,0,1],[1,3,3,2],[2,3,0,2],[0,2,1,1]],[[0,2,0,2],[1,3,3,2],[2,3,0,2],[0,2,1,1]],[[0,2,0,1],[1,4,3,2],[2,3,0,2],[0,2,1,1]],[[0,2,0,1],[1,3,4,2],[2,3,0,2],[0,2,1,1]],[[0,2,0,1],[1,3,3,3],[2,3,0,2],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[3,3,0,2],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,4,0,2],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,3],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[0,3,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[0,2,1,2]],[[0,3,0,1],[1,3,3,2],[2,3,0,2],[0,2,2,0]],[[0,2,0,2],[1,3,3,2],[2,3,0,2],[0,2,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,0,2],[0,2,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,0,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,3],[2,3,0,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,2],[3,3,0,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,4,0,2],[0,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,0,3],[0,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[0,3,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[0,2,3,0]],[[0,3,0,1],[1,3,3,2],[2,3,0,2],[1,0,2,1]],[[0,2,0,2],[1,3,3,2],[2,3,0,2],[1,0,2,1]],[[0,2,0,1],[1,4,3,2],[2,3,0,2],[1,0,2,1]],[[0,2,0,1],[1,3,4,2],[2,3,0,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,3],[2,3,0,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[3,3,0,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,4,0,2],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,3],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[2,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[1,0,3,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[1,0,2,2]],[[0,3,0,1],[1,3,3,2],[2,3,0,2],[1,1,1,1]],[[0,2,0,2],[1,3,3,2],[2,3,0,2],[1,1,1,1]],[[0,2,0,1],[1,4,3,2],[2,3,0,2],[1,1,1,1]],[[0,2,0,1],[1,3,4,2],[2,3,0,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,3],[2,3,0,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[3,3,0,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,4,0,2],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,3],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[2,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[1,1,1,2]],[[0,3,0,1],[1,3,3,2],[2,3,0,2],[1,1,2,0]],[[0,2,0,2],[1,3,3,2],[2,3,0,2],[1,1,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,0,2],[1,1,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,0,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,3],[2,3,0,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[3,3,0,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,4,0,2],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,0,3],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,0,2],[2,1,2,0]],[[2,2,2,1],[2,1,1,0],[2,3,2,0],[1,2,2,1]],[[0,3,0,1],[1,3,3,2],[2,3,1,0],[0,2,2,1]],[[0,2,0,2],[1,3,3,2],[2,3,1,0],[0,2,2,1]],[[0,2,0,1],[1,4,3,2],[2,3,1,0],[0,2,2,1]],[[0,2,0,1],[1,3,4,2],[2,3,1,0],[0,2,2,1]],[[0,2,0,1],[1,3,3,3],[2,3,1,0],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[3,3,1,0],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,4,1,0],[0,2,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,0],[0,3,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,0],[0,2,3,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,0],[0,2,2,2]],[[0,3,0,1],[1,3,3,2],[2,3,1,0],[1,1,2,1]],[[0,2,0,2],[1,3,3,2],[2,3,1,0],[1,1,2,1]],[[0,2,0,1],[1,4,3,2],[2,3,1,0],[1,1,2,1]],[[0,2,0,1],[1,3,4,2],[2,3,1,0],[1,1,2,1]],[[0,2,0,1],[1,3,3,3],[2,3,1,0],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[3,3,1,0],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,4,1,0],[1,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,0],[2,1,2,1]],[[0,3,0,1],[1,3,3,2],[2,3,1,1],[0,2,2,0]],[[0,2,0,2],[1,3,3,2],[2,3,1,1],[0,2,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,1,1],[0,2,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,1,1],[0,2,2,0]],[[0,2,0,1],[1,3,3,3],[2,3,1,1],[0,2,2,0]],[[0,2,0,1],[1,3,3,2],[3,3,1,1],[0,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,4,1,1],[0,2,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,1,1],[0,3,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,1,1],[0,2,3,0]],[[0,3,0,1],[1,3,3,2],[2,3,1,1],[1,1,2,0]],[[0,2,0,2],[1,3,3,2],[2,3,1,1],[1,1,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,1,1],[1,1,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,1,1],[1,1,2,0]],[[0,2,0,1],[1,3,3,3],[2,3,1,1],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[3,3,1,1],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,4,1,1],[1,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,1,2],[1,3,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,1,2],[2,2,2,0]],[[1,2,2,1],[2,1,1,0],[3,3,1,2],[1,2,2,0]],[[1,2,2,1],[3,1,1,0],[2,3,1,2],[1,2,2,0]],[[1,3,2,1],[2,1,1,0],[2,3,1,2],[1,2,2,0]],[[2,2,2,1],[2,1,1,0],[2,3,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,0],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[2,1,1,0],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,1,0],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[3,1,1,0],[2,3,1,2],[1,1,2,1]],[[0,3,0,1],[1,3,3,2],[2,3,1,2],[0,1,1,1]],[[0,2,0,2],[1,3,3,2],[2,3,1,2],[0,1,1,1]],[[0,2,0,1],[1,4,3,2],[2,3,1,2],[0,1,1,1]],[[0,2,0,1],[1,3,4,2],[2,3,1,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,3],[2,3,1,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,2],[3,3,1,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,4,1,2],[0,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,3],[0,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,2],[0,1,1,2]],[[0,3,0,1],[1,3,3,2],[2,3,1,2],[0,1,2,0]],[[0,2,0,2],[1,3,3,2],[2,3,1,2],[0,1,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,1,2],[0,1,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,1,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,3],[2,3,1,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,2],[3,3,1,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,4,1,2],[0,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,1,3],[0,1,2,0]],[[0,3,0,1],[1,3,3,2],[2,3,1,2],[0,2,0,1]],[[0,2,0,2],[1,3,3,2],[2,3,1,2],[0,2,0,1]],[[0,2,0,1],[1,4,3,2],[2,3,1,2],[0,2,0,1]],[[0,2,0,1],[1,3,4,2],[2,3,1,2],[0,2,0,1]],[[0,2,0,1],[1,3,3,3],[2,3,1,2],[0,2,0,1]],[[0,2,0,1],[1,3,3,2],[3,3,1,2],[0,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,4,1,2],[0,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,3],[0,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,2],[0,3,0,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,2],[0,2,0,2]],[[0,3,0,1],[1,3,3,2],[2,3,1,2],[0,2,1,0]],[[0,2,0,2],[1,3,3,2],[2,3,1,2],[0,2,1,0]],[[0,2,0,1],[1,4,3,2],[2,3,1,2],[0,2,1,0]],[[0,2,0,1],[1,3,4,2],[2,3,1,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,3],[2,3,1,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[3,3,1,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,4,1,2],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,3,1,3],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,2],[2,1,1,0],[2,3,1,2],[1,1,2,1]],[[1,2,3,1],[2,1,1,0],[2,3,1,2],[1,1,2,1]],[[1,3,2,1],[2,1,1,0],[2,3,1,2],[1,1,2,1]],[[2,2,2,1],[2,1,1,0],[2,3,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[2,1,1,0],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[2,1,1,0],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,1,3],[0,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,1,0],[3,3,1,2],[0,2,2,1]],[[1,2,2,1],[3,1,1,0],[2,3,1,2],[0,2,2,1]],[[0,3,0,1],[1,3,3,2],[2,3,1,2],[1,0,1,1]],[[0,2,0,2],[1,3,3,2],[2,3,1,2],[1,0,1,1]],[[0,2,0,1],[1,4,3,2],[2,3,1,2],[1,0,1,1]],[[0,2,0,1],[1,3,4,2],[2,3,1,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,3],[2,3,1,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[3,3,1,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,4,1,2],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,3],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,2],[2,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,2],[1,0,1,2]],[[0,3,0,1],[1,3,3,2],[2,3,1,2],[1,0,2,0]],[[0,2,0,2],[1,3,3,2],[2,3,1,2],[1,0,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,1,2],[1,0,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,1,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,3],[2,3,1,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[3,3,1,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,4,1,2],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,1,3],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,1,2],[2,0,2,0]],[[0,3,0,1],[1,3,3,2],[2,3,1,2],[1,1,0,1]],[[0,2,0,2],[1,3,3,2],[2,3,1,2],[1,1,0,1]],[[0,2,0,1],[1,4,3,2],[2,3,1,2],[1,1,0,1]],[[0,2,0,1],[1,3,4,2],[2,3,1,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,3],[2,3,1,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,2],[3,3,1,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,2],[2,4,1,2],[1,1,0,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,3],[1,1,0,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,2],[2,1,0,1]],[[0,2,0,1],[1,3,3,2],[2,3,1,2],[1,1,0,2]],[[0,3,0,1],[1,3,3,2],[2,3,1,2],[1,1,1,0]],[[0,2,0,2],[1,3,3,2],[2,3,1,2],[1,1,1,0]],[[0,2,0,1],[1,4,3,2],[2,3,1,2],[1,1,1,0]],[[0,2,0,1],[1,3,4,2],[2,3,1,2],[1,1,1,0]],[[0,2,0,1],[1,3,3,3],[2,3,1,2],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[3,3,1,2],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[2,4,1,2],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[2,3,1,3],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,2],[2,1,1,0],[2,3,1,2],[0,2,2,1]],[[1,2,3,1],[2,1,1,0],[2,3,1,2],[0,2,2,1]],[[1,3,2,1],[2,1,1,0],[2,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,1,1,0],[2,3,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,1,1],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,1,1],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[3,3,1,1],[1,2,2,1]],[[1,2,2,1],[3,1,1,0],[2,3,1,1],[1,2,2,1]],[[1,3,2,1],[2,1,1,0],[2,3,1,1],[1,2,2,1]],[[2,2,2,1],[2,1,1,0],[2,3,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,3,0,2],[1,3,2,1]],[[0,3,0,1],[1,3,3,2],[2,3,1,2],[1,2,0,0]],[[0,2,0,2],[1,3,3,2],[2,3,1,2],[1,2,0,0]],[[0,2,0,1],[1,4,3,2],[2,3,1,2],[1,2,0,0]],[[0,2,0,1],[1,3,4,2],[2,3,1,2],[1,2,0,0]],[[0,2,0,1],[1,3,3,3],[2,3,1,2],[1,2,0,0]],[[0,2,0,1],[1,3,3,2],[3,3,1,2],[1,2,0,0]],[[0,2,0,1],[1,3,3,2],[2,4,1,2],[1,2,0,0]],[[0,2,0,1],[1,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,1,1,0],[2,3,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[3,3,0,2],[1,2,2,1]],[[1,2,2,1],[3,1,1,0],[2,3,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,1,0],[2,3,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,1,0],[2,3,0,2],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,0],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[2,1,1,0],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[3,1,1,0],[2,2,3,2],[1,2,1,0]],[[1,2,2,2],[2,1,1,0],[2,2,3,2],[1,2,1,0]],[[1,2,3,1],[2,1,1,0],[2,2,3,2],[1,2,1,0]],[[1,3,2,1],[2,1,1,0],[2,2,3,2],[1,2,1,0]],[[0,3,0,1],[1,3,3,2],[2,3,2,0],[0,1,2,1]],[[0,2,0,2],[1,3,3,2],[2,3,2,0],[0,1,2,1]],[[0,2,0,1],[1,4,3,2],[2,3,2,0],[0,1,2,1]],[[0,2,0,1],[1,3,4,2],[2,3,2,0],[0,1,2,1]],[[0,2,0,1],[1,3,3,3],[2,3,2,0],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[3,3,2,0],[0,1,2,1]],[[0,2,0,1],[1,3,3,2],[2,4,2,0],[0,1,2,1]],[[0,3,0,1],[1,3,3,2],[2,3,2,0],[0,2,1,1]],[[0,2,0,2],[1,3,3,2],[2,3,2,0],[0,2,1,1]],[[0,2,0,1],[1,4,3,2],[2,3,2,0],[0,2,1,1]],[[0,2,0,1],[1,3,4,2],[2,3,2,0],[0,2,1,1]],[[0,2,0,1],[1,3,3,3],[2,3,2,0],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[3,3,2,0],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,4,2,0],[0,2,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,2,0],[0,3,1,1]],[[0,3,0,1],[1,3,3,2],[2,3,2,0],[1,0,2,1]],[[0,2,0,2],[1,3,3,2],[2,3,2,0],[1,0,2,1]],[[0,2,0,1],[1,4,3,2],[2,3,2,0],[1,0,2,1]],[[0,2,0,1],[1,3,4,2],[2,3,2,0],[1,0,2,1]],[[0,2,0,1],[1,3,3,3],[2,3,2,0],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[3,3,2,0],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,4,2,0],[1,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,2,0],[2,0,2,1]],[[0,3,0,1],[1,3,3,2],[2,3,2,0],[1,1,1,1]],[[0,2,0,2],[1,3,3,2],[2,3,2,0],[1,1,1,1]],[[0,2,0,1],[1,4,3,2],[2,3,2,0],[1,1,1,1]],[[0,2,0,1],[1,3,4,2],[2,3,2,0],[1,1,1,1]],[[0,2,0,1],[1,3,3,3],[2,3,2,0],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[3,3,2,0],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,4,2,0],[1,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,2,0],[2,1,1,1]],[[0,3,0,1],[1,3,3,2],[2,3,2,0],[1,2,0,1]],[[0,2,0,1],[1,4,3,2],[2,3,2,0],[1,2,0,1]],[[0,2,0,1],[1,3,4,2],[2,3,2,0],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[3,3,2,0],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,4,2,0],[1,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,3,2,0],[2,2,0,1]],[[2,2,2,1],[2,1,1,0],[2,2,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,1,0],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[2,1,1,0],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[2,1,1,0],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[3,1,1,0],[2,2,3,2],[1,2,0,1]],[[1,2,2,2],[2,1,1,0],[2,2,3,2],[1,2,0,1]],[[1,2,3,1],[2,1,1,0],[2,2,3,2],[1,2,0,1]],[[1,3,2,1],[2,1,1,0],[2,2,3,2],[1,2,0,1]],[[2,2,2,1],[2,1,1,0],[2,2,3,2],[1,2,0,1]],[[0,3,0,1],[1,3,3,2],[2,3,2,1],[0,1,1,1]],[[0,2,0,2],[1,3,3,2],[2,3,2,1],[0,1,1,1]],[[0,2,0,1],[1,4,3,2],[2,3,2,1],[0,1,1,1]],[[0,2,0,1],[1,3,4,2],[2,3,2,1],[0,1,1,1]],[[0,2,0,1],[1,3,3,3],[2,3,2,1],[0,1,1,1]],[[0,2,0,1],[1,3,3,2],[3,3,2,1],[0,1,1,1]],[[0,2,0,1],[1,3,3,2],[2,4,2,1],[0,1,1,1]],[[0,3,0,1],[1,3,3,2],[2,3,2,1],[0,1,2,0]],[[0,2,0,2],[1,3,3,2],[2,3,2,1],[0,1,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,2,1],[0,1,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,2,1],[0,1,2,0]],[[0,2,0,1],[1,3,3,3],[2,3,2,1],[0,1,2,0]],[[0,2,0,1],[1,3,3,2],[3,3,2,1],[0,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,4,2,1],[0,1,2,0]],[[0,3,0,1],[1,3,3,2],[2,3,2,1],[0,2,0,1]],[[0,2,0,2],[1,3,3,2],[2,3,2,1],[0,2,0,1]],[[0,2,0,1],[1,4,3,2],[2,3,2,1],[0,2,0,1]],[[0,2,0,1],[1,3,4,2],[2,3,2,1],[0,2,0,1]],[[0,2,0,1],[1,3,3,3],[2,3,2,1],[0,2,0,1]],[[0,2,0,1],[1,3,3,2],[3,3,2,1],[0,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,4,2,1],[0,2,0,1]],[[0,2,0,1],[1,3,3,2],[2,3,2,1],[0,3,0,1]],[[0,3,0,1],[1,3,3,2],[2,3,2,1],[0,2,1,0]],[[0,2,0,2],[1,3,3,2],[2,3,2,1],[0,2,1,0]],[[0,2,0,1],[1,4,3,2],[2,3,2,1],[0,2,1,0]],[[0,2,0,1],[1,3,4,2],[2,3,2,1],[0,2,1,0]],[[0,2,0,1],[1,3,3,3],[2,3,2,1],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[3,3,2,1],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,4,2,1],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[2,1,1,0],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,1,0],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[2,1,1,0],[2,2,3,3],[0,2,2,0]],[[1,2,2,1],[2,1,1,0],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[2,1,1,0],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[2,1,1,0],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[2,1,1,0],[2,2,4,2],[0,2,1,1]],[[0,3,0,1],[1,3,3,2],[2,3,2,1],[1,0,1,1]],[[0,2,0,2],[1,3,3,2],[2,3,2,1],[1,0,1,1]],[[0,2,0,1],[1,4,3,2],[2,3,2,1],[1,0,1,1]],[[0,2,0,1],[1,3,4,2],[2,3,2,1],[1,0,1,1]],[[0,2,0,1],[1,3,3,3],[2,3,2,1],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[3,3,2,1],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,4,2,1],[1,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,2,1],[2,0,1,1]],[[0,3,0,1],[1,3,3,2],[2,3,2,1],[1,0,2,0]],[[0,2,0,2],[1,3,3,2],[2,3,2,1],[1,0,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,2,1],[1,0,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,2,1],[1,0,2,0]],[[0,2,0,1],[1,3,3,3],[2,3,2,1],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[3,3,2,1],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,4,2,1],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,2,1],[2,0,2,0]],[[0,3,0,1],[1,3,3,2],[2,3,2,1],[1,1,0,1]],[[0,2,0,2],[1,3,3,2],[2,3,2,1],[1,1,0,1]],[[0,2,0,1],[1,4,3,2],[2,3,2,1],[1,1,0,1]],[[0,2,0,1],[1,3,4,2],[2,3,2,1],[1,1,0,1]],[[0,2,0,1],[1,3,3,3],[2,3,2,1],[1,1,0,1]],[[0,2,0,1],[1,3,3,2],[3,3,2,1],[1,1,0,1]],[[0,2,0,1],[1,3,3,2],[2,4,2,1],[1,1,0,1]],[[0,2,0,1],[1,3,3,2],[2,3,2,1],[2,1,0,1]],[[0,3,0,1],[1,3,3,2],[2,3,2,1],[1,1,1,0]],[[0,2,0,2],[1,3,3,2],[2,3,2,1],[1,1,1,0]],[[0,2,0,1],[1,4,3,2],[2,3,2,1],[1,1,1,0]],[[0,2,0,1],[1,3,4,2],[2,3,2,1],[1,1,1,0]],[[0,2,0,1],[1,3,3,3],[2,3,2,1],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[3,3,2,1],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[2,4,2,1],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[2,3,2,1],[2,1,1,0]],[[0,3,0,1],[1,3,3,2],[2,3,2,1],[1,2,0,0]],[[0,2,0,2],[1,3,3,2],[2,3,2,1],[1,2,0,0]],[[0,2,0,1],[1,4,3,2],[2,3,2,1],[1,2,0,0]],[[0,2,0,1],[1,3,4,2],[2,3,2,1],[1,2,0,0]],[[0,2,0,1],[1,3,3,3],[2,3,2,1],[1,2,0,0]],[[0,2,0,1],[1,3,3,2],[3,3,2,1],[1,2,0,0]],[[0,2,0,1],[1,3,3,2],[2,4,2,1],[1,2,0,0]],[[0,2,0,1],[1,3,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[2,1,1,0],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[2,1,1,0],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[2,1,1,0],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[3,1,1,0],[2,2,3,1],[1,2,1,1]],[[1,2,2,2],[2,1,1,0],[2,2,3,1],[1,2,1,1]],[[1,2,3,1],[2,1,1,0],[2,2,3,1],[1,2,1,1]],[[1,3,2,1],[2,1,1,0],[2,2,3,1],[1,2,1,1]],[[2,2,2,1],[2,1,1,0],[2,2,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,1,0],[2,2,3,1],[0,2,2,2]],[[1,2,2,1],[2,1,1,0],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[2,1,1,0],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,2,4,1],[0,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,2,3,0],[1,2,3,1]],[[1,2,2,1],[2,1,1,0],[2,2,3,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,2,3,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[3,2,3,0],[1,2,2,1]],[[1,2,2,1],[3,1,1,0],[2,2,3,0],[1,2,2,1]],[[1,2,3,1],[2,1,1,0],[2,2,3,0],[1,2,2,1]],[[1,3,2,1],[2,1,1,0],[2,2,3,0],[1,2,2,1]],[[2,2,2,1],[2,1,1,0],[2,2,3,0],[1,2,2,1]],[[0,3,0,1],[1,3,3,2],[2,3,2,2],[0,0,1,1]],[[0,2,0,2],[1,3,3,2],[2,3,2,2],[0,0,1,1]],[[0,2,0,1],[1,4,3,2],[2,3,2,2],[0,0,1,1]],[[0,2,0,1],[1,3,4,2],[2,3,2,2],[0,0,1,1]],[[0,2,0,1],[1,3,3,3],[2,3,2,2],[0,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,2,3],[0,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,2,2],[0,0,1,2]],[[0,3,0,1],[1,3,3,2],[2,3,2,2],[0,0,2,0]],[[0,2,0,2],[1,3,3,2],[2,3,2,2],[0,0,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,2,2],[0,0,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,2,2],[0,0,2,0]],[[0,2,0,1],[1,3,3,3],[2,3,2,2],[0,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,1],[2,1,1,0],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[2,1,1,0],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[2,1,1,0],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[2,1,1,0],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[3,1,1,0],[2,2,2,2],[1,2,2,0]],[[1,2,2,2],[2,1,1,0],[2,2,2,2],[1,2,2,0]],[[1,2,3,1],[2,1,1,0],[2,2,2,2],[1,2,2,0]],[[1,3,2,1],[2,1,1,0],[2,2,2,2],[1,2,2,0]],[[2,2,2,1],[2,1,1,0],[2,2,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,0],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[2,1,1,0],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[2,1,1,0],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[2,1,1,0],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[2,1,1,0],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[3,1,1,0],[2,2,2,1],[1,2,2,1]],[[1,2,2,2],[2,1,1,0],[2,2,2,1],[1,2,2,1]],[[1,2,3,1],[2,1,1,0],[2,2,2,1],[1,2,2,1]],[[1,3,2,1],[2,1,1,0],[2,2,2,1],[1,2,2,1]],[[2,2,2,1],[2,1,1,0],[2,2,2,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[2,1,1,0],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[2,1,1,0],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[3,1,1,0],[2,2,1,2],[1,2,2,1]],[[1,2,2,2],[2,1,1,0],[2,2,1,2],[1,2,2,1]],[[1,2,3,1],[2,1,1,0],[2,2,1,2],[1,2,2,1]],[[1,3,2,1],[2,1,1,0],[2,2,1,2],[1,2,2,1]],[[2,2,2,1],[2,1,1,0],[2,2,1,2],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,1,0],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,1,0],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,1,0],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,1,0],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,0],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[3,1,1,0],[2,1,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,1,0],[2,1,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,1,0],[2,1,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,1,0],[2,1,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,1,0],[2,1,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,0],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,1,0],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[2,1,1,0],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,0],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,1,0],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,1,0],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[3,1,1,0],[2,1,3,1],[1,2,2,1]],[[1,2,2,2],[2,1,1,0],[2,1,3,1],[1,2,2,1]],[[1,2,3,1],[2,1,1,0],[2,1,3,1],[1,2,2,1]],[[1,3,2,1],[2,1,1,0],[2,1,3,1],[1,2,2,1]],[[2,2,2,1],[2,1,1,0],[2,1,3,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,1,0],[2,1,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,1,0],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[3,1,1,0],[2,1,2,2],[1,2,2,1]],[[1,2,2,2],[2,1,1,0],[2,1,2,2],[1,2,2,1]],[[1,2,3,1],[2,1,1,0],[2,1,2,2],[1,2,2,1]],[[1,3,2,1],[2,1,1,0],[2,1,2,2],[1,2,2,1]],[[2,2,2,1],[2,1,1,0],[2,1,2,2],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,1,0],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[2,1,1,0],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[2,1,1,0],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[2,1,1,0],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,1,0],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[2,1,1,0],[1,3,3,2],[1,3,0,1]],[[1,2,2,1],[2,1,1,0],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[2,1,1,0],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[2,1,1,0],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[2,1,1,0],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[2,1,1,0],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[2,1,1,0],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[2,1,1,0],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[2,1,1,0],[1,4,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,1,0],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[2,1,1,0],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[2,1,1,0],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[2,1,1,0],[1,4,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,1,0],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[2,1,1,0],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[2,1,1,0],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[2,1,1,0],[1,4,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,1,0],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[2,1,1,0],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[2,1,1,0],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[2,1,1,0],[1,4,3,1],[1,1,2,1]],[[1,2,2,1],[2,1,1,0],[1,3,3,0],[1,2,3,1]],[[0,3,0,1],[1,3,3,2],[2,3,3,0],[0,0,2,1]],[[0,2,0,2],[1,3,3,2],[2,3,3,0],[0,0,2,1]],[[0,2,0,1],[1,4,3,2],[2,3,3,0],[0,0,2,1]],[[0,2,0,1],[1,3,4,2],[2,3,3,0],[0,0,2,1]],[[0,2,0,1],[1,3,3,3],[2,3,3,0],[0,0,2,1]],[[0,2,0,1],[1,3,3,2],[2,3,4,0],[0,0,2,1]],[[0,3,0,1],[1,3,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,3,0],[0,1,2,0]],[[0,2,0,1],[1,3,3,2],[3,3,3,0],[0,1,2,0]],[[0,2,0,1],[1,3,3,2],[2,4,3,0],[0,1,2,0]],[[0,3,0,1],[1,3,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,0,1],[1,4,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,0,1],[1,3,4,2],[2,3,3,0],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[3,3,3,0],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,4,3,0],[0,2,1,0]],[[0,2,0,1],[1,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,1],[2,1,1,0],[1,3,3,0],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[1,3,3,0],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[1,4,3,0],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[2,1,1,0],[1,3,2,2],[1,3,2,0]],[[0,3,0,1],[1,3,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,3,0],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[3,3,3,0],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,4,3,0],[1,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,3,0],[2,0,2,0]],[[0,3,0,1],[1,3,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,0,1],[1,4,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,0,1],[1,3,4,2],[2,3,3,0],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[3,3,3,0],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[2,4,3,0],[1,1,1,0]],[[0,2,0,1],[1,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[2,1,1,0],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[2,1,1,0],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,0],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[2,1,1,0],[1,3,2,2],[1,1,3,1]],[[1,2,2,1],[2,1,1,0],[1,3,2,3],[1,1,2,1]],[[1,2,2,1],[2,1,1,0],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[2,1,1,0],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[2,1,1,0],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[1,4,2,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[1,3,1,2],[1,2,2,2]],[[0,3,0,1],[1,3,3,2],[2,3,3,0],[1,2,0,0]],[[0,2,0,1],[1,4,3,2],[2,3,3,0],[1,2,0,0]],[[0,2,0,1],[1,3,4,2],[2,3,3,0],[1,2,0,0]],[[0,2,0,1],[1,3,3,2],[3,3,3,0],[1,2,0,0]],[[0,2,0,1],[1,3,3,2],[2,4,3,0],[1,2,0,0]],[[0,2,0,1],[1,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[2,1,1,0],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[2,1,1,0],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[1,3,1,3],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[1,4,1,2],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,1,0],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,1,0],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,1,0],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,1,0],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[2,1,1,0],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,1,0],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[2,1,1,0],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[2,1,1,0],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,1,0],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,1,0],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,1,0],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,1,0],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,1,0],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,1,0],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,1,0],[1,2,2,3],[1,2,2,1]],[[0,3,0,1],[1,3,3,2],[2,3,3,1],[0,0,1,1]],[[0,2,0,2],[1,3,3,2],[2,3,3,1],[0,0,1,1]],[[0,2,0,1],[1,4,3,2],[2,3,3,1],[0,0,1,1]],[[0,2,0,1],[1,3,4,2],[2,3,3,1],[0,0,1,1]],[[0,2,0,1],[1,3,3,3],[2,3,3,1],[0,0,1,1]],[[0,2,0,1],[1,3,3,2],[2,3,4,1],[0,0,1,1]],[[0,3,0,1],[1,3,3,2],[2,3,3,1],[0,0,2,0]],[[0,2,0,2],[1,3,3,2],[2,3,3,1],[0,0,2,0]],[[0,2,0,1],[1,4,3,2],[2,3,3,1],[0,0,2,0]],[[0,2,0,1],[1,3,4,2],[2,3,3,1],[0,0,2,0]],[[0,2,0,1],[1,3,3,3],[2,3,3,1],[0,0,2,0]],[[0,2,0,1],[1,3,3,2],[2,3,4,1],[0,0,2,0]],[[0,3,0,1],[1,3,3,2],[2,3,3,1],[0,2,0,0]],[[0,2,0,2],[1,3,3,2],[2,3,3,1],[0,2,0,0]],[[0,2,0,1],[1,4,3,2],[2,3,3,1],[0,2,0,0]],[[0,2,0,1],[1,3,4,2],[2,3,3,1],[0,2,0,0]],[[0,2,0,1],[1,3,3,3],[2,3,3,1],[0,2,0,0]],[[0,2,0,1],[1,3,3,2],[3,3,3,1],[0,2,0,0]],[[0,2,0,1],[1,3,3,2],[2,4,3,1],[0,2,0,0]],[[0,3,0,1],[1,3,3,2],[2,3,3,1],[1,1,0,0]],[[0,2,0,2],[1,3,3,2],[2,3,3,1],[1,1,0,0]],[[0,2,0,1],[1,4,3,2],[2,3,3,1],[1,1,0,0]],[[0,2,0,1],[1,3,4,2],[2,3,3,1],[1,1,0,0]],[[0,2,0,1],[1,3,3,3],[2,3,3,1],[1,1,0,0]],[[0,2,0,1],[1,3,3,2],[3,3,3,1],[1,1,0,0]],[[0,2,0,1],[1,3,3,2],[2,4,3,1],[1,1,0,0]],[[0,2,0,1],[1,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[2,1,0,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,1,0,2],[2,4,3,1],[1,2,0,0]],[[0,3,0,1],[1,3,3,2],[2,3,3,2],[0,0,0,1]],[[0,2,0,2],[1,3,3,2],[2,3,3,2],[0,0,0,1]],[[0,2,0,1],[1,4,3,2],[2,3,3,2],[0,0,0,1]],[[0,2,0,1],[1,3,4,2],[2,3,3,2],[0,0,0,1]],[[0,2,0,1],[1,3,3,3],[2,3,3,2],[0,0,0,1]],[[0,2,0,1],[1,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,1,0,2],[3,3,3,1],[1,2,0,0]],[[1,2,2,1],[2,1,0,3],[2,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,1,0,2],[2,3,3,1],[1,2,0,0]],[[1,2,2,2],[2,1,0,2],[2,3,3,1],[1,2,0,0]],[[1,2,3,1],[2,1,0,2],[2,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,1,0,2],[2,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,1,0,2],[2,3,3,1],[1,2,0,0]],[[1,2,2,1],[2,1,0,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,4,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[3,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,0,3],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[3,1,0,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,2],[2,1,0,2],[2,3,3,1],[1,1,1,0]],[[1,2,3,1],[2,1,0,2],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[2,1,0,2],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,1,0,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,3,1],[2,1,0,1]],[[1,2,2,1],[2,1,0,2],[2,3,4,1],[1,1,0,1]],[[1,2,2,1],[2,1,0,2],[2,4,3,1],[1,1,0,1]],[[1,2,2,1],[2,1,0,2],[3,3,3,1],[1,1,0,1]],[[1,2,2,1],[2,1,0,3],[2,3,3,1],[1,1,0,1]],[[1,2,2,1],[3,1,0,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,2],[2,1,0,2],[2,3,3,1],[1,1,0,1]],[[1,2,3,1],[2,1,0,2],[2,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,1,0,2],[2,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,1,0,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,1],[2,1,0,2],[2,3,3,1],[1,0,3,0]],[[1,2,2,1],[2,1,0,2],[2,3,3,1],[2,0,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,4,1],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[2,4,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[3,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,0,3],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[3,1,0,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,2],[2,1,0,2],[2,3,3,1],[1,0,2,0]],[[1,2,3,1],[2,1,0,2],[2,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,1,0,2],[2,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,1,0,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,3,1],[2,0,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,4,1],[1,0,1,1]],[[1,2,2,1],[2,1,0,2],[2,4,3,1],[1,0,1,1]],[[1,2,2,1],[2,1,0,2],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,1,0,3],[2,3,3,1],[1,0,1,1]],[[1,2,2,1],[3,1,0,2],[2,3,3,1],[1,0,1,1]],[[1,2,2,2],[2,1,0,2],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[2,1,0,2],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,1,0,2],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,1,0,2],[2,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,4,1],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,4,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[3,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,0,3],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[3,1,0,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[2,1,0,2],[2,3,3,1],[0,2,1,0]],[[1,2,3,1],[2,1,0,2],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,1,0,2],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,1,0,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,3,1],[0,3,0,1]],[[1,2,2,1],[2,1,0,2],[2,3,4,1],[0,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,4,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,0,2],[3,3,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,0,3],[2,3,3,1],[0,2,0,1]],[[1,2,2,1],[3,1,0,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,2],[2,1,0,2],[2,3,3,1],[0,2,0,1]],[[1,2,3,1],[2,1,0,2],[2,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,1,0,2],[2,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,1,0,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,3,3,1],[0,1,3,0]],[[1,2,2,1],[2,1,0,2],[2,3,4,1],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,4,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[3,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,0,3],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[3,1,0,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,2],[2,1,0,2],[2,3,3,1],[0,1,2,0]],[[1,2,3,1],[2,1,0,2],[2,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,1,0,2],[2,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,1,0,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,4,1],[0,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,4,3,1],[0,1,1,1]],[[1,2,2,1],[2,1,0,2],[3,3,3,1],[0,1,1,1]],[[1,2,2,1],[2,1,0,3],[2,3,3,1],[0,1,1,1]],[[1,2,2,1],[3,1,0,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,2],[2,1,0,2],[2,3,3,1],[0,1,1,1]],[[1,2,3,1],[2,1,0,2],[2,3,3,1],[0,1,1,1]],[[1,3,2,1],[2,1,0,2],[2,3,3,1],[0,1,1,1]],[[2,2,2,1],[2,1,0,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,4,3,0],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[3,3,3,0],[1,2,0,1]],[[1,2,2,1],[3,1,0,2],[2,3,3,0],[1,2,0,1]],[[1,2,2,2],[2,1,0,2],[2,3,3,0],[1,2,0,1]],[[1,2,3,1],[2,1,0,2],[2,3,3,0],[1,2,0,1]],[[1,3,2,1],[2,1,0,2],[2,3,3,0],[1,2,0,1]],[[2,2,2,1],[2,1,0,2],[2,3,3,0],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,3,3,0],[2,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,4,0],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,4,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[3,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,0,3],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[3,1,0,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,1,0,2],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[2,1,0,2],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,1,0,2],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,1,0,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,3,0],[1,0,2,2]],[[1,2,2,1],[2,1,0,2],[2,3,3,0],[1,0,3,1]],[[1,2,2,1],[2,1,0,2],[2,3,3,0],[2,0,2,1]],[[1,2,2,1],[2,1,0,2],[2,3,4,0],[1,0,2,1]],[[1,2,2,1],[2,1,0,2],[2,4,3,0],[1,0,2,1]],[[1,2,2,1],[2,1,0,2],[3,3,3,0],[1,0,2,1]],[[1,2,2,1],[2,1,0,3],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[3,1,0,2],[2,3,3,0],[1,0,2,1]],[[1,2,2,2],[2,1,0,2],[2,3,3,0],[1,0,2,1]],[[1,2,3,1],[2,1,0,2],[2,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,1,0,2],[2,3,3,0],[1,0,2,1]],[[2,2,2,1],[2,1,0,2],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[2,1,0,2],[2,3,3,0],[0,3,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,4,0],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,4,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[3,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,0,3],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[3,1,0,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,2],[2,1,0,2],[2,3,3,0],[0,2,1,1]],[[1,2,3,1],[2,1,0,2],[2,3,3,0],[0,2,1,1]],[[1,3,2,1],[2,1,0,2],[2,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,1,0,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,3,0],[0,1,2,2]],[[1,2,2,1],[2,1,0,2],[2,3,3,0],[0,1,3,1]],[[1,2,2,1],[2,1,0,2],[2,3,4,0],[0,1,2,1]],[[1,2,2,1],[2,1,0,2],[2,4,3,0],[0,1,2,1]],[[1,2,2,1],[2,1,0,2],[3,3,3,0],[0,1,2,1]],[[1,2,2,1],[2,1,0,3],[2,3,3,0],[0,1,2,1]],[[1,2,2,1],[3,1,0,2],[2,3,3,0],[0,1,2,1]],[[1,2,2,2],[2,1,0,2],[2,3,3,0],[0,1,2,1]],[[1,2,3,1],[2,1,0,2],[2,3,3,0],[0,1,2,1]],[[1,3,2,1],[2,1,0,2],[2,3,3,0],[0,1,2,1]],[[2,2,2,1],[2,1,0,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,0,1,1],[3,3,3,2],[1,2,2,1]],[[0,2,0,1],[2,0,1,1],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,0,1,1],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,0,1,1],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,0,1,1],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[2,0,1,2],[1,3,3,3],[1,2,2,1]],[[0,2,0,1],[2,0,1,2],[1,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,0,1,2],[1,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,0,1,2],[1,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,0,1,2],[1,3,3,2],[1,2,2,2]],[[0,2,0,1],[2,0,1,2],[3,2,3,2],[1,2,2,1]],[[0,2,0,1],[2,0,1,2],[2,2,3,3],[1,2,2,1]],[[0,2,0,1],[2,0,1,2],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,0,1,2],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,0,1,2],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,0,1,2],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,0,1,2],[3,3,2,2],[1,2,2,1]],[[0,2,0,1],[2,0,1,2],[2,3,2,3],[1,2,2,1]],[[0,2,0,1],[2,0,1,2],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,0,1,2],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,0,1,2],[2,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,0,1,2],[2,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,0,1,2],[3,3,3,1],[1,2,2,1]],[[0,2,0,1],[2,0,1,2],[2,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,0,1,2],[2,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,0,1,2],[2,3,3,1],[1,2,3,1]],[[0,2,0,1],[2,0,1,2],[2,3,3,1],[1,2,2,2]],[[0,2,0,1],[2,0,1,2],[2,3,3,3],[0,2,2,1]],[[0,2,0,1],[2,0,1,2],[2,3,3,2],[0,3,2,1]],[[0,2,0,1],[2,0,1,2],[2,3,3,2],[0,2,3,1]],[[0,2,0,1],[2,0,1,2],[2,3,3,2],[0,2,2,2]],[[0,2,0,1],[2,0,1,2],[3,3,3,2],[1,2,2,0]],[[0,2,0,1],[2,0,1,2],[2,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,0,1,2],[2,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,0,1,2],[2,3,3,2],[1,2,3,0]],[[0,2,0,1],[2,0,2,0],[3,3,3,2],[1,2,2,1]],[[0,2,0,1],[2,0,2,0],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,0,2,0],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,0,2,0],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,0,2,0],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[2,0,2,1],[3,3,3,1],[1,2,2,1]],[[0,2,0,1],[2,0,2,1],[2,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,0,2,1],[2,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,0,2,1],[2,3,3,1],[1,2,3,1]],[[0,2,0,1],[2,0,2,1],[2,3,3,1],[1,2,2,2]],[[0,2,0,1],[2,0,2,1],[3,3,3,2],[1,2,2,0]],[[0,2,0,1],[2,0,2,1],[2,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,0,2,1],[2,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,0,2,1],[2,3,3,2],[1,2,3,0]],[[0,2,0,1],[2,0,2,3],[1,3,2,2],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[1,3,2,3],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,0,2,2],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,0,2,2],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,0,2,2],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,0,2,2],[1,3,4,1],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[1,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,0,2,2],[1,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,0,2,2],[1,3,3,1],[1,2,3,1]],[[0,2,0,1],[2,0,2,2],[1,3,3,1],[1,2,2,2]],[[0,2,0,1],[2,0,2,3],[1,3,3,2],[1,2,1,1]],[[0,2,0,1],[2,0,2,2],[1,3,4,2],[1,2,1,1]],[[0,2,0,1],[2,0,2,2],[1,3,3,3],[1,2,1,1]],[[0,2,0,1],[2,0,2,2],[1,3,3,2],[1,2,1,2]],[[0,2,0,1],[2,0,2,3],[1,3,3,2],[1,2,2,0]],[[0,2,0,1],[2,0,2,2],[1,3,4,2],[1,2,2,0]],[[0,2,0,1],[2,0,2,2],[1,3,3,3],[1,2,2,0]],[[0,2,0,1],[2,0,2,2],[1,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,0,2,2],[1,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,0,2,2],[1,3,3,2],[1,2,3,0]],[[0,2,0,1],[2,0,2,3],[2,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[3,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,2,2,3],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,0,2,2],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,0,2,2],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,0,2,2],[3,2,3,1],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,2,4,1],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,0,2,2],[2,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,0,2,2],[2,2,3,1],[1,2,2,2]],[[0,2,0,1],[2,0,2,3],[2,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,0,2,2],[2,2,4,2],[1,2,1,1]],[[0,2,0,1],[2,0,2,2],[2,2,3,3],[1,2,1,1]],[[0,2,0,1],[2,0,2,2],[2,2,3,2],[1,2,1,2]],[[0,2,0,1],[2,0,2,3],[2,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,0,2,2],[3,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,0,2,2],[2,2,4,2],[1,2,2,0]],[[0,2,0,1],[2,0,2,2],[2,2,3,3],[1,2,2,0]],[[0,2,0,1],[2,0,2,2],[2,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,0,2,2],[2,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,0,2,2],[2,2,3,2],[1,2,3,0]],[[0,2,0,1],[2,0,2,3],[2,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[3,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,0,2,2],[2,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,0,2,2],[3,3,2,1],[1,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,0,2,2],[2,3,2,1],[1,2,2,2]],[[0,2,0,1],[2,0,2,3],[2,3,2,2],[0,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,2,3],[0,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[2,0,2,2],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[2,0,2,2],[3,3,2,2],[1,2,2,0]],[[0,2,0,1],[2,0,2,2],[2,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,0,2,2],[2,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,0,2,2],[2,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,0,2,2],[2,3,4,1],[0,2,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,3,1],[0,3,2,1]],[[0,2,0,1],[2,0,2,2],[2,3,3,1],[0,2,3,1]],[[0,2,0,1],[2,0,2,2],[2,3,3,1],[0,2,2,2]],[[0,2,0,1],[2,0,2,2],[3,3,3,1],[1,2,1,1]],[[0,2,0,1],[2,0,2,2],[2,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,0,2,2],[2,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,0,2,3],[2,3,3,2],[0,2,1,1]],[[0,2,0,1],[2,0,2,2],[2,3,4,2],[0,2,1,1]],[[0,2,0,1],[2,0,2,2],[2,3,3,3],[0,2,1,1]],[[0,2,0,1],[2,0,2,2],[2,3,3,2],[0,2,1,2]],[[0,2,0,1],[2,0,2,3],[2,3,3,2],[0,2,2,0]],[[0,2,0,1],[2,0,2,2],[2,3,4,2],[0,2,2,0]],[[0,2,0,1],[2,0,2,2],[2,3,3,3],[0,2,2,0]],[[0,2,0,1],[2,0,2,2],[2,3,3,2],[0,3,2,0]],[[0,2,0,1],[2,0,2,2],[2,3,3,2],[0,2,3,0]],[[0,2,0,1],[2,0,2,2],[3,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,0,2,2],[2,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,0,2,2],[2,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,0,2,2],[3,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,0,2,2],[2,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,0,2,2],[2,3,3,2],[1,3,1,0]],[[0,2,0,1],[2,0,3,0],[1,3,4,2],[1,2,2,1]],[[0,2,0,1],[2,0,3,0],[1,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,0,3,0],[1,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,0,3,0],[1,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,0,3,0],[1,3,3,2],[1,2,2,2]],[[0,2,0,1],[2,0,3,0],[3,2,3,2],[1,2,2,1]],[[0,2,0,1],[2,0,3,0],[2,2,4,2],[1,2,2,1]],[[0,2,0,1],[2,0,3,0],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,0,3,0],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,0,3,0],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,0,3,0],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,0,3,0],[3,3,2,2],[1,2,2,1]],[[0,2,0,1],[2,0,3,0],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,0,3,0],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,0,3,0],[2,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,0,3,0],[2,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,0,3,0],[2,3,4,2],[0,2,2,1]],[[0,2,0,1],[2,0,3,0],[2,3,3,2],[0,3,2,1]],[[0,2,0,1],[2,0,3,0],[2,3,3,2],[0,2,3,1]],[[0,2,0,1],[2,0,3,0],[2,3,3,2],[0,2,2,2]],[[0,2,0,1],[2,0,3,0],[3,3,3,2],[1,2,1,1]],[[0,2,0,1],[2,0,3,0],[2,3,3,2],[2,2,1,1]],[[0,2,0,1],[2,0,3,0],[2,3,3,2],[1,3,1,1]],[[0,2,0,1],[2,0,3,1],[1,3,2,3],[1,2,2,1]],[[0,2,0,1],[2,0,3,1],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,0,3,1],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,0,3,1],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,0,3,1],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,0,3,1],[1,3,4,1],[1,2,2,1]],[[0,2,0,1],[2,0,3,1],[1,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,0,3,1],[1,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,0,3,1],[1,3,3,1],[1,2,3,1]],[[0,2,0,1],[2,0,3,1],[1,3,3,1],[1,2,2,2]],[[0,2,0,1],[2,0,3,1],[1,3,4,2],[1,2,1,1]],[[0,2,0,1],[2,0,3,1],[1,3,3,3],[1,2,1,1]],[[0,2,0,1],[2,0,3,1],[1,3,3,2],[1,2,1,2]],[[0,2,0,1],[2,0,3,1],[1,3,4,2],[1,2,2,0]],[[0,2,0,1],[2,0,3,1],[1,3,3,3],[1,2,2,0]],[[0,2,0,1],[2,0,3,1],[1,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,0,3,1],[1,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,0,3,1],[1,3,3,2],[1,2,3,0]],[[0,2,0,1],[2,0,3,1],[3,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,2,2,3],[1,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,0,3,1],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,0,3,1],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,0,3,1],[3,2,3,1],[1,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,2,4,1],[1,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,0,3,1],[2,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,0,3,1],[2,2,3,1],[1,2,2,2]],[[0,2,0,1],[2,0,3,1],[2,2,4,2],[1,2,1,1]],[[0,2,0,1],[2,0,3,1],[2,2,3,3],[1,2,1,1]],[[0,2,0,1],[2,0,3,1],[2,2,3,2],[1,2,1,2]],[[0,2,0,1],[2,0,3,1],[3,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,0,3,1],[2,2,4,2],[1,2,2,0]],[[0,2,0,1],[2,0,3,1],[2,2,3,3],[1,2,2,0]],[[0,2,0,1],[2,0,3,1],[2,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,0,3,1],[2,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,0,3,1],[2,2,3,2],[1,2,3,0]],[[0,2,0,1],[2,0,3,1],[3,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,0,3,1],[2,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,0,3,1],[3,3,2,1],[1,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,0,3,1],[2,3,2,1],[1,2,2,2]],[[0,2,0,1],[2,0,3,1],[2,3,2,3],[0,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[2,0,3,1],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[2,0,3,1],[3,3,2,2],[1,2,2,0]],[[0,2,0,1],[2,0,3,1],[2,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,0,3,1],[2,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,0,3,1],[2,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,0,3,1],[3,3,3,0],[1,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,0],[2,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,0],[1,3,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,0],[1,2,3,1]],[[0,2,0,1],[2,0,3,1],[2,3,4,1],[0,2,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,1],[0,3,2,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,1],[0,2,3,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,1],[0,2,2,2]],[[0,2,0,1],[2,0,3,1],[3,3,3,1],[1,2,1,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,0,3,1],[2,3,4,2],[0,2,1,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,3],[0,2,1,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,2],[0,2,1,2]],[[0,2,0,1],[2,0,3,1],[2,3,4,2],[0,2,2,0]],[[0,2,0,1],[2,0,3,1],[2,3,3,3],[0,2,2,0]],[[0,2,0,1],[2,0,3,1],[2,3,3,2],[0,3,2,0]],[[0,2,0,1],[2,0,3,1],[2,3,3,2],[0,2,3,0]],[[0,2,0,1],[2,0,3,1],[3,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,0,3,1],[2,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,0,3,1],[3,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,0,3,1],[2,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,0,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[2,1,0,2],[2,4,2,2],[1,2,0,0]],[[1,2,2,1],[2,1,0,2],[3,3,2,2],[1,2,0,0]],[[1,2,2,1],[2,1,0,3],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[3,1,0,2],[2,3,2,2],[1,2,0,0]],[[0,2,0,1],[2,0,3,2],[1,3,4,0],[1,2,2,1]],[[0,2,0,1],[2,0,3,2],[1,3,3,0],[2,2,2,1]],[[0,2,0,1],[2,0,3,2],[1,3,3,0],[1,3,2,1]],[[0,2,0,1],[2,0,3,2],[1,3,3,0],[1,2,3,1]],[[0,2,0,1],[2,0,3,2],[1,3,3,0],[1,2,2,2]],[[0,2,0,1],[2,0,3,2],[1,3,4,1],[1,2,2,0]],[[0,2,0,1],[2,0,3,2],[1,3,3,1],[2,2,2,0]],[[0,2,0,1],[2,0,3,2],[1,3,3,1],[1,3,2,0]],[[0,2,0,1],[2,0,3,2],[1,3,3,1],[1,2,3,0]],[[1,2,2,2],[2,1,0,2],[2,3,2,2],[1,2,0,0]],[[1,2,3,1],[2,1,0,2],[2,3,2,2],[1,2,0,0]],[[1,3,2,1],[2,1,0,2],[2,3,2,2],[1,2,0,0]],[[2,2,2,1],[2,1,0,2],[2,3,2,2],[1,2,0,0]],[[0,2,0,1],[2,0,3,2],[3,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,0,3,2],[2,2,4,0],[1,2,2,1]],[[0,2,0,1],[2,0,3,2],[2,2,3,0],[2,2,2,1]],[[0,2,0,1],[2,0,3,2],[2,2,3,0],[1,3,2,1]],[[0,2,0,1],[2,0,3,2],[2,2,3,0],[1,2,3,1]],[[0,2,0,1],[2,0,3,2],[2,2,3,0],[1,2,2,2]],[[0,2,0,1],[2,0,3,2],[3,2,3,1],[1,2,2,0]],[[0,2,0,1],[2,0,3,2],[2,2,4,1],[1,2,2,0]],[[0,2,0,1],[2,0,3,2],[2,2,3,1],[2,2,2,0]],[[0,2,0,1],[2,0,3,2],[2,2,3,1],[1,3,2,0]],[[0,2,0,1],[2,0,3,2],[2,2,3,1],[1,2,3,0]],[[0,2,0,1],[2,0,3,3],[2,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,0,3,2],[3,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,0,3,2],[2,3,0,3],[1,2,2,1]],[[0,2,0,1],[2,0,3,2],[2,3,0,2],[2,2,2,1]],[[0,2,0,1],[2,0,3,2],[2,3,0,2],[1,3,2,1]],[[0,2,0,1],[2,0,3,2],[2,3,0,2],[1,2,3,1]],[[0,2,0,1],[2,0,3,2],[2,3,0,2],[1,2,2,2]],[[0,2,0,1],[2,0,3,2],[3,3,2,0],[1,2,2,1]],[[0,2,0,1],[2,0,3,2],[2,3,2,0],[2,2,2,1]],[[0,2,0,1],[2,0,3,2],[2,3,2,0],[1,3,2,1]],[[0,2,0,1],[2,0,3,2],[2,3,2,0],[1,2,3,1]],[[0,2,0,1],[2,0,3,2],[2,3,2,0],[1,2,2,2]],[[0,2,0,1],[2,0,3,2],[3,3,2,1],[1,2,2,0]],[[0,2,0,1],[2,0,3,2],[2,3,2,1],[2,2,2,0]],[[0,2,0,1],[2,0,3,2],[2,3,2,1],[1,3,2,0]],[[0,2,0,1],[2,0,3,2],[2,3,2,1],[1,2,3,0]],[[0,2,0,1],[2,0,3,2],[2,3,4,0],[0,2,2,1]],[[0,2,0,1],[2,0,3,2],[2,3,3,0],[0,3,2,1]],[[0,2,0,1],[2,0,3,2],[2,3,3,0],[0,2,3,1]],[[0,2,0,1],[2,0,3,2],[2,3,3,0],[0,2,2,2]],[[0,2,0,1],[2,0,3,2],[3,3,3,0],[1,2,1,1]],[[0,2,0,1],[2,0,3,2],[2,3,3,0],[2,2,1,1]],[[0,2,0,1],[2,0,3,2],[2,3,3,0],[1,3,1,1]],[[0,2,0,1],[2,0,3,2],[2,3,4,1],[0,2,2,0]],[[0,2,0,1],[2,0,3,2],[2,3,3,1],[0,3,2,0]],[[0,2,0,1],[2,0,3,2],[2,3,3,1],[0,2,3,0]],[[0,2,0,1],[2,0,3,2],[3,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,0,3,2],[2,3,3,1],[2,2,0,1]],[[0,2,0,1],[2,0,3,2],[2,3,3,1],[1,3,0,1]],[[0,2,0,1],[2,0,3,2],[3,3,3,1],[1,2,1,0]],[[0,2,0,1],[2,0,3,2],[2,3,3,1],[2,2,1,0]],[[0,2,0,1],[2,0,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,2],[2,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,4,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[3,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,0,3],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[3,1,0,2],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,1,0,2],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[2,1,0,2],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,1,0,2],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,1,0,2],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,2],[1,1,0,2]],[[1,2,2,1],[2,1,0,2],[2,3,2,2],[2,1,0,1]],[[1,2,2,1],[2,1,0,2],[2,3,2,3],[1,1,0,1]],[[1,2,2,1],[2,1,0,2],[2,4,2,2],[1,1,0,1]],[[1,2,2,1],[2,1,0,2],[3,3,2,2],[1,1,0,1]],[[1,2,2,1],[2,1,0,3],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[3,1,0,2],[2,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,1,0,2],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,1,0,2],[2,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,1,0,2],[2,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,1,0,2],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,1,0,1],[3,3,3,2],[1,2,2,1]],[[0,2,0,1],[2,1,0,1],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,1,0,1],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,1,0,1],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,0,1],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[2,1,0,2],[1,3,3,3],[1,2,2,1]],[[0,2,0,1],[2,1,0,2],[1,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,1,0,2],[1,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,1,0,2],[1,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,0,2],[1,3,3,2],[1,2,2,2]],[[0,2,0,1],[2,1,0,2],[3,2,3,2],[1,2,2,1]],[[0,2,0,1],[2,1,0,2],[2,2,3,3],[1,2,2,1]],[[0,2,0,1],[2,1,0,2],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,1,0,2],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,1,0,2],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,0,2],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,1,0,2],[3,3,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,0,2],[2,3,2,3],[1,2,2,1]],[[0,2,0,1],[2,1,0,2],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,1,0,2],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,1,0,2],[2,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,1,0,2],[2,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,1,0,2],[3,3,3,1],[1,2,2,1]],[[0,2,0,1],[2,1,0,2],[2,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,1,0,2],[2,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,1,0,2],[2,3,3,1],[1,2,3,1]],[[0,2,0,1],[2,1,0,2],[2,3,3,1],[1,2,2,2]],[[0,2,0,1],[2,1,0,2],[2,3,3,3],[0,2,2,1]],[[0,2,0,1],[2,1,0,2],[2,3,3,2],[0,3,2,1]],[[0,2,0,1],[2,1,0,2],[2,3,3,2],[0,2,3,1]],[[0,2,0,1],[2,1,0,2],[2,3,3,2],[0,2,2,2]],[[0,2,0,1],[2,1,0,2],[3,3,3,2],[1,2,2,0]],[[0,2,0,1],[2,1,0,2],[2,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,1,0,2],[2,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,1,0,2],[2,3,3,2],[1,2,3,0]],[[0,2,0,1],[2,1,1,0],[3,3,3,2],[1,2,2,1]],[[0,2,0,1],[2,1,1,0],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,1,1,0],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,1,1,0],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,1,0],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[2,1,1,1],[3,3,3,1],[1,2,2,1]],[[0,2,0,1],[2,1,1,1],[2,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,1,1,1],[2,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,1,1,1],[2,3,3,1],[1,2,3,1]],[[0,2,0,1],[2,1,1,1],[2,3,3,1],[1,2,2,2]],[[0,2,0,1],[2,1,1,1],[3,3,3,2],[1,2,2,0]],[[0,2,0,1],[2,1,1,1],[2,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,1,1,1],[2,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,1,1,1],[2,3,3,2],[1,2,3,0]],[[0,2,0,1],[2,1,1,2],[1,2,3,3],[1,2,2,1]],[[0,2,0,1],[2,1,1,2],[1,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,1,1,2],[1,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,1,1,2],[1,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,1,2],[1,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,1,1,2],[1,3,3,3],[1,1,2,1]],[[0,2,0,1],[2,1,1,2],[1,3,3,2],[1,1,3,1]],[[0,2,0,1],[2,1,1,2],[1,3,3,2],[1,1,2,2]],[[0,2,0,1],[2,1,1,2],[3,1,3,2],[1,2,2,1]],[[0,2,0,1],[2,1,1,2],[2,1,3,3],[1,2,2,1]],[[0,2,0,1],[2,1,1,2],[2,1,3,2],[2,2,2,1]],[[0,2,0,1],[2,1,1,2],[2,1,3,2],[1,3,2,1]],[[0,2,0,1],[2,1,1,2],[2,1,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,1,2],[2,1,3,2],[1,2,2,2]],[[0,2,0,1],[2,1,1,2],[2,2,3,3],[0,2,2,1]],[[0,2,0,1],[2,1,1,2],[2,2,3,2],[0,3,2,1]],[[0,2,0,1],[2,1,1,2],[2,2,3,2],[0,2,3,1]],[[0,2,0,1],[2,1,1,2],[2,2,3,2],[0,2,2,2]],[[0,2,0,1],[2,1,1,2],[3,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,1,2],[2,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,1,1,2],[2,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,1,1,2],[2,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,1,1,2],[2,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,1,1,2],[2,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,1,1,2],[3,3,2,1],[1,2,2,1]],[[0,2,0,1],[2,1,1,2],[2,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,1,1,2],[2,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,1,1,2],[2,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,1,1,2],[2,3,2,1],[1,2,2,2]],[[0,2,0,1],[2,1,1,2],[3,3,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,1,2],[2,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,1,1,2],[2,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,1,1,2],[2,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,1,1,2],[3,3,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,1,2],[2,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,1,1,2],[2,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,1,1,2],[2,3,3,3],[0,1,2,1]],[[0,2,0,1],[2,1,1,2],[2,3,3,2],[0,1,3,1]],[[0,2,0,1],[2,1,1,2],[2,3,3,2],[0,1,2,2]],[[0,2,0,1],[2,1,1,2],[2,3,3,3],[1,0,2,1]],[[0,2,0,1],[2,1,1,2],[2,3,3,2],[1,0,3,1]],[[0,2,0,1],[2,1,1,2],[2,3,3,2],[1,0,2,2]],[[0,2,0,1],[2,1,1,2],[3,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,1,1,2],[2,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,1,1,2],[2,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,1,1,2],[3,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,1,1,2],[2,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,1,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,2],[2,0,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,3],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[2,4,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[3,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,1,2,0],[3,3,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,0],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,1,2,0],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,1,2,0],[2,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,1,2,0],[2,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,1,2,0],[3,3,3,2],[1,2,1,1]],[[0,2,0,1],[2,1,2,0],[2,3,3,2],[2,2,1,1]],[[0,2,0,1],[2,1,2,0],[2,3,3,2],[1,3,1,1]],[[0,2,0,1],[2,1,2,1],[3,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,1],[2,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,1,2,1],[2,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,1,2,1],[2,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,1,2,1],[2,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,1,2,1],[3,3,2,1],[1,2,2,1]],[[0,2,0,1],[2,1,2,1],[2,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,1,2,1],[2,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,1,2,1],[2,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,1,2,1],[2,3,2,1],[1,2,2,2]],[[0,2,0,1],[2,1,2,1],[3,3,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,2,1],[2,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,1,2,1],[2,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,1,2,1],[2,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,1,2,1],[3,3,3,0],[1,2,2,1]],[[0,2,0,1],[2,1,2,1],[2,3,3,0],[2,2,2,1]],[[0,2,0,1],[2,1,2,1],[2,3,3,0],[1,3,2,1]],[[0,2,0,1],[2,1,2,1],[2,3,3,0],[1,2,3,1]],[[0,2,0,1],[2,1,2,1],[3,3,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,2,1],[2,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,1,2,1],[2,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,1,2,1],[3,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,1,2,1],[2,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,1,2,1],[2,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,1,2,1],[3,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,1,2,1],[2,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,1,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,3],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[3,1,0,2],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,1,0,2],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[2,1,0,2],[2,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,1,0,2],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,1,2,3],[1,1,3,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,1,3,3],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,1,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,2,2],[1,1,3,2],[1,2,2,2]],[[0,2,0,2],[2,1,2,2],[1,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,3],[1,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,2,2,3],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,1,2,2],[1,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,1,2,2],[1,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,1,2,2],[1,2,4,1],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,1,2,2],[1,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,1,2,2],[1,2,3,1],[1,2,2,2]],[[0,2,0,2],[2,1,2,2],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,1,2,3],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,1,2,2],[1,2,4,2],[1,2,1,1]],[[0,2,0,1],[2,1,2,2],[1,2,3,3],[1,2,1,1]],[[0,2,0,1],[2,1,2,2],[1,2,3,2],[1,2,1,2]],[[0,2,0,2],[2,1,2,2],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,1,2,3],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,1,2,2],[1,2,4,2],[1,2,2,0]],[[0,2,0,1],[2,1,2,2],[1,2,3,3],[1,2,2,0]],[[0,2,0,1],[2,1,2,2],[1,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,1,2,2],[1,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,1,2,2],[1,2,3,2],[1,2,3,0]],[[0,2,0,2],[2,1,2,2],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,3],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,1,2,2],[1,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,1,2,2],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,1,2,2],[1,3,2,1],[1,2,2,2]],[[0,2,0,2],[2,1,2,2],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,1,2,3],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,2,3],[1,1,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,2,2],[1,1,3,1]],[[0,2,0,1],[2,1,2,2],[1,3,2,2],[1,1,2,2]],[[0,2,0,1],[2,1,2,2],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,2,2],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,1,2,2],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,1,2,2],[1,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,1,2,2],[1,4,3,1],[1,1,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,4,1],[1,1,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,1],[1,1,3,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,1],[1,1,2,2]],[[0,2,0,1],[2,1,2,2],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,2,2],[1,3,4,1],[1,2,1,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,1,2,3],[1,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,4,2],[1,0,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,3],[1,0,2,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,2],[1,0,2,2]],[[0,2,0,2],[2,1,2,2],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,1,2,3],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,1,2,2],[1,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,1,2,2],[1,3,4,2],[1,1,1,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,3],[1,1,1,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,2],[1,1,1,2]],[[0,2,0,2],[2,1,2,2],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,1,2,3],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,1,2,2],[1,4,3,2],[1,1,2,0]],[[0,2,0,1],[2,1,2,2],[1,3,4,2],[1,1,2,0]],[[0,2,0,1],[2,1,2,2],[1,3,3,3],[1,1,2,0]],[[0,2,0,1],[2,1,2,2],[1,3,3,2],[1,1,3,0]],[[0,2,0,2],[2,1,2,2],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,1,2,3],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,1,2,2],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,1,2,2],[1,3,4,2],[1,2,0,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,3],[1,2,0,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,1,2,2],[1,3,3,2],[1,2,0,2]],[[0,2,0,2],[2,1,2,2],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,1,2,3],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,1,2,2],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[2,1,2,2],[1,3,4,2],[1,2,1,0]],[[0,2,0,1],[2,1,2,2],[1,3,3,3],[1,2,1,0]],[[0,2,0,1],[2,1,2,2],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,1,2,2],[1,3,3,2],[1,3,1,0]],[[2,2,2,1],[2,1,0,2],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,2],[1,0,1,2]],[[1,2,2,1],[2,1,0,2],[2,3,2,2],[2,0,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,2,3],[1,0,1,1]],[[1,2,2,1],[2,1,0,2],[2,4,2,2],[1,0,1,1]],[[1,2,2,1],[2,1,0,2],[3,3,2,2],[1,0,1,1]],[[1,2,2,1],[2,1,0,3],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[3,1,0,2],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,1,0,2],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,1,2,3],[2,0,3,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,0,3,3],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,0,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,2,2],[2,0,3,2],[1,2,2,2]],[[0,2,0,2],[2,1,2,2],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[3,1,2,2],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,3],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[3,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,1,2,3],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,1,2,2],[2,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,1,2,2],[1,3,2,1]],[[0,2,0,1],[2,1,2,2],[2,1,2,2],[1,2,3,1]],[[0,2,0,1],[2,1,2,2],[2,1,2,2],[1,2,2,2]],[[0,2,0,1],[3,1,2,2],[2,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[3,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,1,4,1],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,1,3,1],[2,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,1,3,1],[1,3,2,1]],[[0,2,0,1],[2,1,2,2],[2,1,3,1],[1,2,3,1]],[[0,2,0,1],[2,1,2,2],[2,1,3,1],[1,2,2,2]],[[0,2,0,1],[2,1,2,3],[2,1,3,2],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,1,3,3],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,1,3,2],[0,2,3,1]],[[0,2,0,1],[2,1,2,2],[2,1,3,2],[0,2,2,2]],[[0,2,0,2],[2,1,2,2],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,1,2,3],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,1,4,2],[1,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,1,3,3],[1,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,1,3,2],[1,2,1,2]],[[0,2,0,2],[2,1,2,2],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[3,1,2,2],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,1,2,3],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,1,2,2],[3,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,1,4,2],[1,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,1,3,3],[1,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,1,3,2],[2,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,1,3,2],[1,3,2,0]],[[0,2,0,1],[2,1,2,2],[2,1,3,2],[1,2,3,0]],[[0,2,0,2],[2,1,2,2],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[3,1,2,2],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,3],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[3,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,1,3],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,1,2],[2,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,1,2],[1,3,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,1,2],[1,2,3,1]],[[0,2,0,1],[2,1,2,2],[2,2,1,2],[1,2,2,2]],[[0,2,0,1],[3,1,2,2],[2,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[3,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,2,1],[2,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,2,1],[1,3,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,2,1],[1,2,3,1]],[[0,2,0,1],[2,1,2,2],[2,2,2,1],[1,2,2,2]],[[0,2,0,2],[2,1,2,2],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[2,1,2,3],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,2,3],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,2,2],[0,3,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,2,2],[0,2,3,1]],[[0,2,0,1],[2,1,2,2],[2,2,2,2],[0,2,2,2]],[[0,2,0,1],[3,1,2,2],[2,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,2,2],[3,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,2,2,2],[2,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,2,2,2],[1,3,2,0]],[[0,2,0,1],[2,1,2,2],[2,2,2,2],[1,2,3,0]],[[0,2,0,1],[2,1,2,2],[2,2,4,1],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,3,1],[0,3,2,1]],[[0,2,0,1],[2,1,2,2],[2,2,3,1],[0,2,3,1]],[[0,2,0,1],[2,1,2,2],[2,2,3,1],[0,2,2,2]],[[0,2,0,1],[3,1,2,2],[2,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,2,2],[3,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,2,3,1],[2,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,2,3,1],[1,3,1,1]],[[0,2,0,2],[2,1,2,2],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,1,2,3],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,2,4,2],[0,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,2,3,3],[0,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,2,3,2],[0,2,1,2]],[[0,2,0,2],[2,1,2,2],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[2,1,2,3],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,2,4,2],[0,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,2,3,3],[0,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,2,3,2],[0,3,2,0]],[[0,2,0,1],[2,1,2,2],[2,2,3,2],[0,2,3,0]],[[0,2,0,1],[3,1,2,2],[2,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,1,2,2],[3,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,1,2,2],[2,2,3,2],[2,2,0,1]],[[0,2,0,1],[2,1,2,2],[2,2,3,2],[1,3,0,1]],[[0,2,0,1],[3,1,2,2],[2,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,1,2,2],[3,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,1,2,2],[2,2,3,2],[2,2,1,0]],[[0,2,0,1],[2,1,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,3,1],[2,1,0,2],[2,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,1,0,2],[2,3,2,2],[1,0,1,1]],[[2,2,2,1],[2,1,0,2],[2,3,2,2],[1,0,1,1]],[[0,2,0,2],[2,1,2,2],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[3,1,2,2],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,1,2,3],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[3,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,1,3],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[2,1,2,2],[2,3,1,2],[0,2,2,2]],[[0,2,0,1],[3,1,2,2],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,1,2,2],[3,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,1,2,2],[2,4,1,2],[1,1,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,1,2],[2,1,2,1]],[[0,2,0,1],[2,1,2,2],[3,3,2,0],[1,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,0],[2,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,0],[1,3,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,0],[1,2,3,1]],[[0,2,0,1],[3,1,2,2],[2,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[3,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,1],[0,2,2,2]],[[0,2,0,1],[3,1,2,2],[2,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,1,2,2],[3,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,1,2,2],[2,4,2,1],[1,1,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,1],[2,1,2,1]],[[0,2,0,1],[2,1,2,2],[3,3,2,1],[1,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,2,1],[2,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,2,1],[1,3,2,0]],[[0,2,0,2],[2,1,2,2],[2,3,2,2],[0,1,2,1]],[[0,2,0,1],[2,1,2,3],[2,3,2,2],[0,1,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,3],[0,1,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,2],[0,1,3,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,2],[0,1,2,2]],[[0,2,0,1],[3,1,2,2],[2,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,1,2,2],[3,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,2,2],[0,2,3,0]],[[0,2,0,2],[2,1,2,2],[2,3,2,2],[1,0,2,1]],[[0,2,0,1],[2,1,2,3],[2,3,2,2],[1,0,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,3],[1,0,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,2],[1,0,3,1]],[[0,2,0,1],[2,1,2,2],[2,3,2,2],[1,0,2,2]],[[0,2,0,1],[3,1,2,2],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,1,2,2],[3,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,1,2,2],[2,4,2,2],[1,1,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,2,2],[2,1,2,0]],[[0,2,0,1],[2,1,2,2],[3,3,3,0],[1,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,0],[2,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,0],[1,3,1,1]],[[0,2,0,1],[3,1,2,2],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,1,2,2],[3,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,1,2,2],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,4,1],[0,1,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,1],[0,1,3,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,1],[0,1,2,2]],[[0,2,0,1],[3,1,2,2],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,1,2,2],[3,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,4,1],[0,2,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,1],[0,3,1,1]],[[0,2,0,1],[3,1,2,2],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,1,2,2],[3,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,1,2,2],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,4,1],[1,0,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,1],[2,0,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,1],[1,0,3,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,1],[1,0,2,2]],[[0,2,0,1],[3,1,2,2],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,1,2,2],[3,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,1,2,2],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,4,1],[1,1,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,1],[2,1,1,1]],[[0,2,0,1],[2,1,2,2],[3,3,3,1],[1,2,1,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,1],[2,2,1,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,2],[0,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,4,2,2],[0,2,1,0]],[[0,2,0,2],[2,1,2,2],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,1,2,3],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,4,2],[0,0,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,3],[0,0,2,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[0,0,2,2]],[[0,2,0,2],[2,1,2,2],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[3,1,2,2],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,1,2,3],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,1,2,2],[3,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,1,2,2],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,4,2],[0,1,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,3],[0,1,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[0,1,1,2]],[[0,2,0,2],[2,1,2,2],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[3,1,2,2],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,1,2,3],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,1,2,2],[3,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,1,2,2],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,4,2],[0,1,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,3],[0,1,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[0,1,3,0]],[[0,2,0,2],[2,1,2,2],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[3,1,2,2],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,1,2,3],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,1,2,2],[3,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,1,2,2],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[2,1,2,2],[2,3,4,2],[0,2,0,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,3],[0,2,0,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[0,2,0,2]],[[0,2,0,2],[2,1,2,2],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[3,1,2,2],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,1,2,3],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,1,2,2],[3,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,1,2,2],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[2,1,2,2],[2,3,4,2],[0,2,1,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,3],[0,2,1,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,1,0,2],[3,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,0,3],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[3,1,0,2],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,1,0,2],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,1,0,2],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,1,0,2],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,1,0,2],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,2],[0,2,0,2]],[[1,2,2,1],[2,1,0,2],[2,3,2,2],[0,3,0,1]],[[1,2,2,1],[2,1,0,2],[2,3,2,3],[0,2,0,1]],[[0,2,0,2],[2,1,2,2],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[3,1,2,2],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,1,2,3],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,1,2,2],[3,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,1,2,2],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,4,2],[1,0,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,3],[1,0,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[2,0,1,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[1,0,1,2]],[[0,2,0,2],[2,1,2,2],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[3,1,2,2],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,1,2,3],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,1,2,2],[3,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,1,2,2],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,4,2],[1,0,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,3],[1,0,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[2,0,2,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[1,0,3,0]],[[0,2,0,2],[2,1,2,2],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[3,1,2,2],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,1,2,3],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,1,2,2],[3,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,1,2,2],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[2,1,2,2],[2,3,4,2],[1,1,0,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,3],[1,1,0,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[2,1,0,1]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[1,1,0,2]],[[0,2,0,2],[2,1,2,2],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[3,1,2,2],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,1,2,3],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,1,2,2],[3,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,1,2,2],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[2,1,2,2],[2,3,4,2],[1,1,1,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,3],[1,1,1,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,4,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,0,2],[3,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,1,0,3],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[3,1,0,2],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,1,0,2],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[2,1,0,2],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,1,0,2],[2,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,1,0,2],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[3,1,2,2],[2,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,1,2,2],[3,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,1,2,2],[2,4,3,2],[1,2,0,0]],[[0,2,0,1],[2,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,3],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,4,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[3,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,3],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[3,1,0,2],[2,3,2,2],[0,1,2,0]],[[1,2,2,2],[2,1,0,2],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,1,0,2],[2,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,1,0,2],[2,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,1,0,2],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,2],[0,1,1,2]],[[1,2,2,1],[2,1,0,2],[2,3,2,3],[0,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,4,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,0,2],[3,3,2,2],[0,1,1,1]],[[1,2,2,1],[2,1,0,3],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,1,0,2],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,1,0,2],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,1,0,2],[2,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,1,0,2],[2,3,2,2],[0,1,1,1]],[[2,2,2,1],[2,1,0,2],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,1,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,1,3,0],[1,4,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,0],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,0],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,0],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,0],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,1,3,0],[1,4,3,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,0,1],[2,1,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,0,1],[2,1,3,0],[1,4,3,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,0],[1,3,4,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,0],[1,3,3,2],[2,2,1,1]],[[0,2,0,1],[2,1,3,0],[1,3,3,2],[1,3,1,1]],[[0,2,0,1],[3,1,3,0],[2,1,3,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,0],[3,1,3,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,0],[2,1,4,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,0],[2,1,3,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,0],[2,1,3,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,0],[2,1,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,0],[2,1,3,2],[1,2,2,2]],[[0,2,0,1],[3,1,3,0],[2,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,0],[3,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,0],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,0],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,0],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,0],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,1,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,0,1],[2,1,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,0,1],[2,1,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,0,1],[3,1,3,0],[2,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,0],[3,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,0],[2,2,3,2],[2,2,1,1]],[[0,2,0,1],[2,1,3,0],[2,2,3,2],[1,3,1,1]],[[0,2,0,1],[3,1,3,0],[2,3,2,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,0],[3,3,2,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,0],[2,4,2,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,0],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[2,1,3,0],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[2,1,3,0],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[3,1,3,0],[2,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,0],[3,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,0],[2,4,2,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,0],[2,3,2,2],[2,1,2,1]],[[0,2,0,1],[3,1,3,0],[2,3,3,2],[0,1,2,1]],[[0,2,0,1],[2,1,3,0],[3,3,3,2],[0,1,2,1]],[[0,2,0,1],[2,1,3,0],[2,4,3,2],[0,1,2,1]],[[0,2,0,1],[2,1,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,0,1],[2,1,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,0,1],[2,1,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,0,1],[3,1,3,0],[2,3,3,2],[0,2,1,1]],[[0,2,0,1],[2,1,3,0],[3,3,3,2],[0,2,1,1]],[[0,2,0,1],[2,1,3,0],[2,4,3,2],[0,2,1,1]],[[0,2,0,1],[2,1,3,0],[2,3,4,2],[0,2,1,1]],[[0,2,0,1],[2,1,3,0],[2,3,3,2],[0,3,1,1]],[[0,2,0,1],[3,1,3,0],[2,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,1,3,0],[3,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,1,3,0],[2,4,3,2],[1,0,2,1]],[[0,2,0,1],[2,1,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,0,1],[2,1,3,0],[2,3,3,2],[2,0,2,1]],[[0,2,0,1],[2,1,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,0,1],[2,1,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,0,1],[3,1,3,0],[2,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,1,3,0],[3,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,1,3,0],[2,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,1,3,0],[2,3,4,2],[1,1,1,1]],[[0,2,0,1],[2,1,3,0],[2,3,3,2],[2,1,1,1]],[[0,2,0,1],[2,1,3,1],[1,1,3,3],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,1,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,1],[1,1,3,2],[1,2,2,2]],[[0,2,0,1],[2,1,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,1],[1,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,1,4,1],[1,2,3,1],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,1,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,1,3,1],[1,2,3,1],[1,2,2,2]],[[0,2,0,1],[2,1,4,1],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,0,1],[2,1,3,1],[1,2,3,2],[1,2,1,2]],[[0,2,0,1],[2,1,4,1],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,0,1],[2,1,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,1,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,1,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,0,1],[2,1,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,1,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,1,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,0,1],[2,1,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,0,1],[2,1,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,0,1],[2,1,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,1,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,1,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,1,3,1],[1,4,3,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,0],[2,2,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,0],[1,3,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,0],[1,2,3,1]],[[0,2,0,1],[2,1,4,1],[1,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,1],[1,1,2,2]],[[0,2,0,1],[2,1,4,1],[1,3,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,1,3,1],[1,3,4,2],[1,0,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,3],[1,0,2,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,2],[1,0,2,2]],[[0,2,0,1],[2,1,4,1],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,1,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,1,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,2],[1,1,1,2]],[[0,2,0,1],[2,1,4,1],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,1,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,0,1],[2,1,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,0,1],[2,1,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,0,1],[2,1,3,1],[1,3,3,2],[1,1,3,0]],[[0,2,0,1],[2,1,4,1],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,1,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,1,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,1,3,1],[1,3,3,2],[1,2,0,2]],[[0,2,0,1],[2,1,4,1],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,1,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[2,1,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,0,1],[2,1,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,0,1],[2,1,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,1,3,1],[1,3,3,2],[1,3,1,0]],[[0,2,0,1],[2,1,3,1],[2,0,3,3],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,0,3,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,1],[2,0,3,2],[1,2,2,2]],[[0,2,0,1],[3,1,3,1],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[3,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,1,2,3],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,1,2,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,1,2,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,1],[2,1,2,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,1],[2,1,2,2],[1,2,2,2]],[[0,2,0,1],[3,1,3,1],[2,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,1,4,1],[2,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[3,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,1,4,1],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,1,3,1],[2,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,1,3,1],[1,3,2,1]],[[0,2,0,1],[2,1,3,1],[2,1,3,1],[1,2,3,1]],[[0,2,0,1],[2,1,3,1],[2,1,3,1],[1,2,2,2]],[[0,2,0,1],[2,1,3,1],[2,1,3,3],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,1,3,2],[0,2,3,1]],[[0,2,0,1],[2,1,3,1],[2,1,3,2],[0,2,2,2]],[[0,2,0,1],[2,1,4,1],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,1],[2,1,4,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,1],[2,1,3,3],[1,2,1,1]],[[0,2,0,1],[2,1,3,1],[2,1,3,2],[1,2,1,2]],[[0,2,0,1],[3,1,3,1],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,1,4,1],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,1],[3,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,1],[2,1,4,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,1],[2,1,3,3],[1,2,2,0]],[[0,2,0,1],[2,1,3,1],[2,1,3,2],[2,2,2,0]],[[0,2,0,1],[2,1,3,1],[2,1,3,2],[1,3,2,0]],[[0,2,0,1],[2,1,3,1],[2,1,3,2],[1,2,3,0]],[[0,2,0,1],[3,1,3,1],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[3,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,1,3],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,1,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,1,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,1,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,1],[2,2,1,2],[1,2,2,2]],[[0,2,0,1],[3,1,3,1],[2,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[3,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,2,1],[2,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,2,1],[1,3,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,2,1],[1,2,3,1]],[[0,2,0,1],[2,1,3,1],[2,2,2,1],[1,2,2,2]],[[0,2,0,1],[2,1,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,0,1],[2,1,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,0,1],[3,1,3,1],[2,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,1],[3,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,1],[2,2,2,2],[2,2,2,0]],[[0,2,0,1],[2,1,3,1],[2,2,2,2],[1,3,2,0]],[[0,2,0,1],[2,1,3,1],[2,2,2,2],[1,2,3,0]],[[0,2,0,1],[3,1,3,1],[2,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[3,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,0],[2,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,0],[1,3,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,0],[1,2,3,1]],[[0,2,0,1],[2,1,4,1],[2,2,3,1],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,0,1],[3,1,3,1],[2,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,3,1],[3,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,1],[2,2,1,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,1],[1,3,1,1]],[[0,2,0,1],[2,1,4,1],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,1,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,2],[0,2,1,2]],[[0,2,0,1],[2,1,4,1],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[2,1,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,0,1],[2,1,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,0,1],[2,1,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,0,1],[2,1,3,1],[2,2,3,2],[0,2,3,0]],[[0,2,0,1],[3,1,3,1],[2,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,1,3,1],[3,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,2],[2,2,0,1]],[[0,2,0,1],[2,1,3,1],[2,2,3,2],[1,3,0,1]],[[0,2,0,1],[3,1,3,1],[2,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,1,3,1],[3,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,1,3,1],[2,2,3,2],[2,2,1,0]],[[0,2,0,1],[2,1,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,4,2,1],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[3,3,2,1],[1,1,2,0]],[[1,2,2,1],[2,1,0,3],[2,3,2,1],[1,1,2,0]],[[1,2,2,1],[3,1,0,2],[2,3,2,1],[1,1,2,0]],[[1,2,2,2],[2,1,0,2],[2,3,2,1],[1,1,2,0]],[[1,2,3,1],[2,1,0,2],[2,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,1,0,2],[2,3,2,1],[1,1,2,0]],[[0,2,0,1],[3,1,3,1],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[3,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[2,1,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,0,1],[3,1,3,1],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[3,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[2,4,1,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,1,2],[2,1,2,1]],[[0,2,0,1],[3,1,3,1],[2,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[3,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[2,1,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,0,1],[3,1,3,1],[2,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[3,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[2,4,2,1],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,2,1],[2,1,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,0,1],[2,1,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,0,1],[3,1,3,1],[2,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,1,3,1],[3,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,1,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[2,1,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[2,1,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,0,1],[2,1,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,0,1],[2,1,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,0,1],[3,1,3,1],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,1,3,1],[3,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,1,3,1],[2,4,2,2],[1,1,2,0]],[[0,2,0,1],[2,1,3,1],[2,3,2,2],[2,1,2,0]],[[2,2,2,1],[2,1,0,2],[2,3,2,1],[1,1,2,0]],[[0,2,0,1],[3,1,3,1],[2,3,3,0],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[3,3,3,0],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,4,3,0],[0,2,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,0],[0,3,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,0],[0,2,3,1]],[[0,2,0,1],[3,1,3,1],[2,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[3,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[2,4,3,0],[1,1,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,0],[2,1,2,1]],[[0,2,0,1],[3,1,3,1],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,1,4,1],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,1,3,1],[3,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,1,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,1],[0,1,2,2]],[[0,2,0,1],[3,1,3,1],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,1,4,1],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,1,3,1],[3,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,1,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[2,1,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,1],[0,3,1,1]],[[0,2,0,1],[3,1,3,1],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,1,4,1],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,1,3,1],[3,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,1,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,1],[2,0,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,1],[1,0,2,2]],[[0,2,0,1],[3,1,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,1,4,1],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,1,3,1],[3,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,1,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,1,3,1],[2,3,4,1],[1,1,1,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,1],[2,1,1,1]],[[0,2,0,1],[3,1,3,1],[2,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,1,3,1],[3,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,1,3,1],[2,4,3,1],[1,2,0,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,3,2,1],[0,2,3,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,1],[0,3,2,0]],[[1,2,2,1],[2,1,0,2],[2,4,2,1],[0,2,2,0]],[[1,2,2,1],[2,1,0,2],[3,3,2,1],[0,2,2,0]],[[1,2,2,1],[2,1,0,3],[2,3,2,1],[0,2,2,0]],[[0,2,0,1],[2,1,4,1],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[0,0,2,2]],[[0,2,0,1],[3,1,3,1],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,1,4,1],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,1,3,1],[3,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,1,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[2,1,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[0,1,1,2]],[[0,2,0,1],[3,1,3,1],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,1,4,1],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,1,3,1],[3,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,1,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[2,1,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,0,1],[2,1,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[0,1,3,0]],[[0,2,0,1],[3,1,3,1],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,1,4,1],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,1,3,1],[3,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,1,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[2,1,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[0,2,0,2]],[[0,2,0,1],[3,1,3,1],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,1,4,1],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,1,3,1],[3,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,1,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[2,1,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,0,1],[2,1,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,1,0,2],[2,3,2,1],[0,2,2,0]],[[1,2,2,2],[2,1,0,2],[2,3,2,1],[0,2,2,0]],[[1,2,3,1],[2,1,0,2],[2,3,2,1],[0,2,2,0]],[[1,3,2,1],[2,1,0,2],[2,3,2,1],[0,2,2,0]],[[2,2,2,1],[2,1,0,2],[2,3,2,1],[0,2,2,0]],[[0,2,0,1],[3,1,3,1],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,1,4,1],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,1,3,1],[3,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,1,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[2,1,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[2,0,1,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[1,0,1,2]],[[0,2,0,1],[3,1,3,1],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,1,4,1],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,1,3,1],[3,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,1,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[2,1,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,0,1],[2,1,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[2,0,2,0]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[1,0,3,0]],[[0,2,0,1],[3,1,3,1],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,1,4,1],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,1,3,1],[3,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,1,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[2,1,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[2,1,0,1]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[1,1,0,2]],[[0,2,0,1],[3,1,3,1],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,1,4,1],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,1,3,1],[3,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,1,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[2,1,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,0,1],[2,1,3,1],[2,3,3,3],[1,1,1,0]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,2,0],[2,1,2,1]],[[0,2,0,1],[3,1,3,1],[2,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,1,3,1],[3,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,1,3,1],[2,4,3,2],[1,2,0,0]],[[0,2,0,1],[2,1,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,1,0,2],[2,4,2,0],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[3,3,2,0],[1,1,2,1]],[[1,2,2,1],[2,1,0,3],[2,3,2,0],[1,1,2,1]],[[1,2,2,1],[3,1,0,2],[2,3,2,0],[1,1,2,1]],[[1,2,2,2],[2,1,0,2],[2,3,2,0],[1,1,2,1]],[[1,2,3,1],[2,1,0,2],[2,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,1,0,2],[2,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,1,0,2],[2,3,2,0],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[2,3,2,0],[0,2,2,2]],[[1,2,2,1],[2,1,0,2],[2,3,2,0],[0,2,3,1]],[[1,2,2,1],[2,1,0,2],[2,3,2,0],[0,3,2,1]],[[1,2,2,1],[2,1,0,2],[2,4,2,0],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[3,3,2,0],[0,2,2,1]],[[1,2,2,1],[2,1,0,3],[2,3,2,0],[0,2,2,1]],[[1,2,2,1],[3,1,0,2],[2,3,2,0],[0,2,2,1]],[[1,2,2,2],[2,1,0,2],[2,3,2,0],[0,2,2,1]],[[1,2,3,1],[2,1,0,2],[2,3,2,0],[0,2,2,1]],[[1,3,2,1],[2,1,0,2],[2,3,2,0],[0,2,2,1]],[[2,2,2,1],[2,1,0,2],[2,3,2,0],[0,2,2,1]],[[0,2,0,2],[2,1,3,2],[1,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,4,2],[1,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,3],[1,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,2,1,3],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,2,1,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,2,1,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,2],[1,2,1,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,2],[1,2,1,2],[1,2,2,2]],[[0,2,0,2],[2,1,3,2],[1,2,2,2],[1,2,1,1]],[[0,2,0,1],[2,1,4,2],[1,2,2,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,3],[1,2,2,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,2],[1,2,2,3],[1,2,1,1]],[[0,2,0,1],[2,1,3,2],[1,2,2,2],[1,2,1,2]],[[0,2,0,2],[2,1,3,2],[1,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,4,2],[1,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,3],[1,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,2],[1,2,2,3],[1,2,2,0]],[[0,2,0,2],[2,1,3,2],[1,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,1,4,2],[1,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,3],[1,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,0,1],[2,1,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,0,1],[2,1,3,2],[1,2,3,0],[1,2,2,2]],[[0,2,0,2],[2,1,3,2],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,4,2],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,3,3],[1,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,3,2],[1,2,4,1],[1,2,1,1]],[[0,2,0,2],[2,1,3,2],[1,2,3,1],[1,2,2,0]],[[0,2,0,1],[2,1,4,2],[1,2,3,1],[1,2,2,0]],[[0,2,0,1],[2,1,3,3],[1,2,3,1],[1,2,2,0]],[[0,2,0,1],[2,1,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,0,1],[2,1,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,0,1],[2,1,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,0,1],[2,1,3,2],[1,2,3,1],[1,2,3,0]],[[0,2,0,2],[2,1,3,2],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,1,4,2],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,3],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,4,0,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,3,0,3],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,3,0,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,3,0,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,2],[1,3,0,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,2],[1,3,0,2],[1,2,2,2]],[[0,2,0,2],[2,1,3,2],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,1,4,2],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,3],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,2],[1,3,1,3],[1,1,2,1]],[[0,2,0,1],[2,1,3,2],[1,3,1,2],[1,1,3,1]],[[0,2,0,1],[2,1,3,2],[1,3,1,2],[1,1,2,2]],[[0,2,0,1],[2,1,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,0,1],[2,1,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,0,1],[2,1,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,0,1],[2,1,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,0,1],[2,1,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,0,1],[2,1,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,0,1],[2,1,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,0,1],[2,1,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,0,2],[2,1,3,2],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[2,1,4,2],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[2,1,3,3],[1,3,2,2],[1,1,1,1]],[[0,2,0,1],[2,1,3,2],[1,3,2,3],[1,1,1,1]],[[0,2,0,1],[2,1,3,2],[1,3,2,2],[1,1,1,2]],[[0,2,0,2],[2,1,3,2],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,1,4,2],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,1,3,3],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,1,3,2],[1,3,2,3],[1,1,2,0]],[[0,2,0,2],[2,1,3,2],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[2,1,4,2],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[2,1,3,3],[1,3,2,2],[1,2,0,1]],[[0,2,0,1],[2,1,3,2],[1,3,2,3],[1,2,0,1]],[[0,2,0,1],[2,1,3,2],[1,3,2,2],[1,2,0,2]],[[0,2,0,2],[2,1,3,2],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[2,1,4,2],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[2,1,3,3],[1,3,2,2],[1,2,1,0]],[[0,2,0,1],[2,1,3,2],[1,3,2,3],[1,2,1,0]],[[0,2,0,2],[2,1,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,1,4,2],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,1,3,3],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,1,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,0,1],[2,1,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,0,1],[2,1,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,0,1],[2,1,3,2],[1,3,3,0],[1,1,2,2]],[[0,2,0,2],[2,1,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,0,1],[2,1,4,2],[1,3,3,0],[1,2,1,1]],[[0,2,0,1],[2,1,3,3],[1,3,3,0],[1,2,1,1]],[[0,2,0,1],[2,1,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,0,1],[2,1,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,0,1],[2,1,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,0,1],[2,1,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,0,2],[2,1,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,1,4,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,1,3,3],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,1,3,2],[1,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,1,3,2],[1,3,4,1],[1,1,1,1]],[[0,2,0,2],[2,1,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,0,1],[2,1,4,2],[1,3,3,1],[1,1,2,0]],[[0,2,0,1],[2,1,3,3],[1,3,3,1],[1,1,2,0]],[[0,2,0,1],[2,1,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,0,1],[2,1,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,0,1],[2,1,3,2],[1,3,3,1],[1,1,3,0]],[[0,2,0,2],[2,1,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,1,4,2],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,1,3,3],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,1,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,0,1],[2,1,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,0,1],[2,1,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,0,1],[2,1,3,2],[1,3,3,1],[1,3,0,1]],[[0,2,0,2],[2,1,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,0,1],[2,1,4,2],[1,3,3,1],[1,2,1,0]],[[0,2,0,1],[2,1,3,3],[1,3,3,1],[1,2,1,0]],[[0,2,0,1],[2,1,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,0,1],[2,1,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,0,1],[2,1,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,0,1],[2,1,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,1,3],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,4,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[3,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,3],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,1,0,2],[2,3,1,2],[1,1,2,0]],[[1,2,2,2],[2,1,0,2],[2,3,1,2],[1,1,2,0]],[[1,2,3,1],[2,1,0,2],[2,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,1,0,2],[2,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,1,0,2],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[1,1,1,2]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[2,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,1,3],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,4,1,2],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[3,3,1,2],[1,1,1,1]],[[1,2,2,1],[2,1,0,3],[2,3,1,2],[1,1,1,1]],[[1,2,2,1],[3,1,0,2],[2,3,1,2],[1,1,1,1]],[[1,2,2,2],[2,1,0,2],[2,3,1,2],[1,1,1,1]],[[1,2,3,1],[2,1,0,2],[2,3,1,2],[1,1,1,1]],[[1,3,2,1],[2,1,0,2],[2,3,1,2],[1,1,1,1]],[[2,2,2,1],[2,1,0,2],[2,3,1,2],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[1,0,3,1]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[2,0,2,1]],[[1,2,2,1],[2,1,0,2],[2,3,1,3],[1,0,2,1]],[[1,2,2,1],[2,1,0,2],[2,4,1,2],[1,0,2,1]],[[1,2,2,1],[2,1,0,2],[3,3,1,2],[1,0,2,1]],[[1,2,2,1],[2,1,0,3],[2,3,1,2],[1,0,2,1]],[[1,2,2,1],[3,1,0,2],[2,3,1,2],[1,0,2,1]],[[1,2,2,2],[2,1,0,2],[2,3,1,2],[1,0,2,1]],[[1,2,3,1],[2,1,0,2],[2,3,1,2],[1,0,2,1]],[[1,3,2,1],[2,1,0,2],[2,3,1,2],[1,0,2,1]],[[2,2,2,1],[2,1,0,2],[2,3,1,2],[1,0,2,1]],[[0,2,0,2],[2,1,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[3,1,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,4,2],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,3],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[3,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,1,1,3],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,1,1,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,1,1,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,2],[2,1,1,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,2],[2,1,1,2],[1,2,2,2]],[[0,2,0,2],[2,1,3,2],[2,1,2,2],[1,2,1,1]],[[0,2,0,1],[2,1,4,2],[2,1,2,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,3],[2,1,2,2],[1,2,1,1]],[[0,2,0,1],[2,1,3,2],[2,1,2,3],[1,2,1,1]],[[0,2,0,1],[2,1,3,2],[2,1,2,2],[1,2,1,2]],[[0,2,0,2],[2,1,3,2],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,4,2],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,3],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,1,3,2],[2,1,2,3],[1,2,2,0]],[[0,2,0,2],[2,1,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[3,1,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,1,4,2],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,3],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[3,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,1,4,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,1,3,0],[2,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,1,3,0],[1,3,2,1]],[[0,2,0,1],[2,1,3,2],[2,1,3,0],[1,2,3,1]],[[0,2,0,1],[2,1,3,2],[2,1,3,0],[1,2,2,2]],[[0,2,0,2],[2,1,3,2],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,4,2],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,3,3],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,1,3,2],[2,1,4,1],[1,2,1,1]],[[0,2,0,2],[2,1,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,0,1],[3,1,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,0,1],[2,1,4,2],[2,1,3,1],[1,2,2,0]],[[0,2,0,1],[2,1,3,3],[2,1,3,1],[1,2,2,0]],[[0,2,0,1],[2,1,3,2],[3,1,3,1],[1,2,2,0]],[[0,2,0,1],[2,1,3,2],[2,1,4,1],[1,2,2,0]],[[0,2,0,1],[2,1,3,2],[2,1,3,1],[2,2,2,0]],[[0,2,0,1],[2,1,3,2],[2,1,3,1],[1,3,2,0]],[[0,2,0,1],[2,1,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[0,2,3,0]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[0,3,2,0]],[[0,2,0,2],[2,1,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[3,1,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,1,4,2],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,3],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[3,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,0,3],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,0,2],[2,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,0,2],[1,3,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,0,2],[1,2,3,1]],[[0,2,0,1],[2,1,3,2],[2,2,0,2],[1,2,2,2]],[[0,2,0,2],[2,1,3,2],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[2,1,4,2],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,3],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,1,3],[0,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,1,2],[0,3,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,1,2],[0,2,3,1]],[[0,2,0,1],[2,1,3,2],[2,2,1,2],[0,2,2,2]],[[0,2,0,1],[3,1,3,2],[2,2,2,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[3,2,2,0],[1,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,2,0],[2,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,2,0],[1,3,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,2,0],[1,2,3,1]],[[0,2,0,1],[2,1,3,2],[2,2,2,0],[1,2,2,2]],[[0,2,0,1],[3,1,3,2],[2,2,2,1],[1,2,2,0]],[[0,2,0,1],[2,1,3,2],[3,2,2,1],[1,2,2,0]],[[0,2,0,1],[2,1,3,2],[2,2,2,1],[2,2,2,0]],[[0,2,0,1],[2,1,3,2],[2,2,2,1],[1,3,2,0]],[[0,2,0,1],[2,1,3,2],[2,2,2,1],[1,2,3,0]],[[0,2,0,2],[2,1,3,2],[2,2,2,2],[0,2,1,1]],[[0,2,0,1],[2,1,4,2],[2,2,2,2],[0,2,1,1]],[[0,2,0,1],[2,1,3,3],[2,2,2,2],[0,2,1,1]],[[0,2,0,1],[2,1,3,2],[2,2,2,3],[0,2,1,1]],[[0,2,0,1],[2,1,3,2],[2,2,2,2],[0,2,1,2]],[[0,2,0,2],[2,1,3,2],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[2,1,4,2],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[2,1,3,3],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[2,1,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,1,3],[0,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,4,1,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,2],[3,3,1,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,3],[2,3,1,2],[0,2,2,0]],[[1,2,2,1],[3,1,0,2],[2,3,1,2],[0,2,2,0]],[[1,2,2,2],[2,1,0,2],[2,3,1,2],[0,2,2,0]],[[1,2,3,1],[2,1,0,2],[2,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,1,0,2],[2,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,1,0,2],[2,3,1,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[0,2,1,2]],[[0,2,0,2],[2,1,3,2],[2,2,3,0],[0,2,2,1]],[[0,2,0,1],[2,1,4,2],[2,2,3,0],[0,2,2,1]],[[0,2,0,1],[2,1,3,3],[2,2,3,0],[0,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,0,1],[2,1,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,0,1],[2,1,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,0,1],[3,1,3,2],[2,2,3,0],[1,2,1,1]],[[0,2,0,1],[2,1,3,2],[3,2,3,0],[1,2,1,1]],[[0,2,0,1],[2,1,3,2],[2,2,3,0],[2,2,1,1]],[[0,2,0,1],[2,1,3,2],[2,2,3,0],[1,3,1,1]],[[0,2,0,2],[2,1,3,2],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,1,4,2],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,1,3,3],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,1,3,2],[2,2,4,1],[0,2,1,1]],[[0,2,0,2],[2,1,3,2],[2,2,3,1],[0,2,2,0]],[[0,2,0,1],[2,1,4,2],[2,2,3,1],[0,2,2,0]],[[0,2,0,1],[2,1,3,3],[2,2,3,1],[0,2,2,0]],[[0,2,0,1],[2,1,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,0,1],[2,1,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,0,1],[2,1,3,2],[2,2,3,1],[0,2,3,0]],[[0,2,0,1],[3,1,3,2],[2,2,3,1],[1,2,0,1]],[[0,2,0,1],[2,1,3,2],[3,2,3,1],[1,2,0,1]],[[0,2,0,1],[2,1,3,2],[2,2,3,1],[2,2,0,1]],[[0,2,0,1],[2,1,3,2],[2,2,3,1],[1,3,0,1]],[[0,2,0,1],[3,1,3,2],[2,2,3,1],[1,2,1,0]],[[0,2,0,1],[2,1,3,2],[3,2,3,1],[1,2,1,0]],[[0,2,0,1],[2,1,3,2],[2,2,3,1],[2,2,1,0]],[[0,2,0,1],[2,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[0,3,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,1,3],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,4,1,2],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[3,3,1,2],[0,2,1,1]],[[1,2,2,1],[2,1,0,3],[2,3,1,2],[0,2,1,1]],[[1,2,2,1],[3,1,0,2],[2,3,1,2],[0,2,1,1]],[[1,2,2,2],[2,1,0,2],[2,3,1,2],[0,2,1,1]],[[1,2,3,1],[2,1,0,2],[2,3,1,2],[0,2,1,1]],[[1,3,2,1],[2,1,0,2],[2,3,1,2],[0,2,1,1]],[[2,2,2,1],[2,1,0,2],[2,3,1,2],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[0,1,2,2]],[[1,2,2,1],[2,1,0,2],[2,3,1,2],[0,1,3,1]],[[1,2,2,1],[2,1,0,2],[2,3,1,3],[0,1,2,1]],[[1,2,2,1],[2,1,0,2],[2,4,1,2],[0,1,2,1]],[[1,2,2,1],[2,1,0,2],[3,3,1,2],[0,1,2,1]],[[1,2,2,1],[2,1,0,3],[2,3,1,2],[0,1,2,1]],[[1,2,2,1],[3,1,0,2],[2,3,1,2],[0,1,2,1]],[[1,2,2,2],[2,1,0,2],[2,3,1,2],[0,1,2,1]],[[1,2,3,1],[2,1,0,2],[2,3,1,2],[0,1,2,1]],[[1,3,2,1],[2,1,0,2],[2,3,1,2],[0,1,2,1]],[[2,2,2,1],[2,1,0,2],[2,3,1,2],[0,1,2,1]],[[1,2,2,1],[2,1,0,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,1,1],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[3,3,1,1],[1,2,2,0]],[[1,2,2,1],[3,1,0,2],[2,3,1,1],[1,2,2,0]],[[1,3,2,1],[2,1,0,2],[2,3,1,1],[1,2,2,0]],[[2,2,2,1],[2,1,0,2],[2,3,1,1],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,1,1],[2,1,2,1]],[[1,2,2,1],[2,1,0,2],[2,4,1,1],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[3,3,1,1],[1,1,2,1]],[[1,2,2,1],[2,1,0,3],[2,3,1,1],[1,1,2,1]],[[1,2,2,1],[3,1,0,2],[2,3,1,1],[1,1,2,1]],[[1,2,2,2],[2,1,0,2],[2,3,1,1],[1,1,2,1]],[[1,2,3,1],[2,1,0,2],[2,3,1,1],[1,1,2,1]],[[1,3,2,1],[2,1,0,2],[2,3,1,1],[1,1,2,1]],[[2,2,2,1],[2,1,0,2],[2,3,1,1],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[2,3,1,1],[0,2,2,2]],[[0,2,0,2],[2,1,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[3,1,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,1,4,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,3],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,2],[3,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,4,0,2],[0,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,0,3],[0,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,0,2],[0,3,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,0,2],[0,2,3,1]],[[0,2,0,1],[2,1,3,2],[2,3,0,2],[0,2,2,2]],[[0,2,0,1],[3,1,3,2],[2,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,2],[3,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,2],[2,4,0,2],[1,1,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,0,2],[2,1,2,1]],[[0,2,0,2],[2,1,3,2],[2,3,1,2],[0,1,2,1]],[[0,2,0,1],[2,1,4,2],[2,3,1,2],[0,1,2,1]],[[0,2,0,1],[2,1,3,3],[2,3,1,2],[0,1,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,1,3],[0,1,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,1,2],[0,1,3,1]],[[0,2,0,1],[2,1,3,2],[2,3,1,2],[0,1,2,2]],[[0,2,0,2],[2,1,3,2],[2,3,1,2],[1,0,2,1]],[[0,2,0,1],[2,1,4,2],[2,3,1,2],[1,0,2,1]],[[0,2,0,1],[2,1,3,3],[2,3,1,2],[1,0,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,1,2],[1,0,3,1]],[[0,2,0,1],[2,1,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,1,0,2],[2,3,1,1],[0,2,3,1]],[[1,2,2,1],[2,1,0,2],[2,3,1,1],[0,3,2,1]],[[1,2,2,1],[2,1,0,2],[2,4,1,1],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[3,3,1,1],[0,2,2,1]],[[1,2,2,1],[2,1,0,3],[2,3,1,1],[0,2,2,1]],[[1,2,2,1],[3,1,0,2],[2,3,1,1],[0,2,2,1]],[[1,2,2,2],[2,1,0,2],[2,3,1,1],[0,2,2,1]],[[1,2,3,1],[2,1,0,2],[2,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,1,0,2],[2,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,1,0,2],[2,3,1,1],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[2,3,1,0],[1,3,2,1]],[[0,2,0,1],[3,1,3,2],[2,3,2,0],[0,2,2,1]],[[0,2,0,1],[2,1,3,2],[3,3,2,0],[0,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,0,1],[3,1,3,2],[2,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,1,3,2],[3,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,1,3,2],[2,4,2,0],[1,1,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,0],[2,1,2,1]],[[0,2,0,1],[3,1,3,2],[2,3,2,1],[0,2,2,0]],[[0,2,0,1],[2,1,3,2],[3,3,2,1],[0,2,2,0]],[[0,2,0,1],[2,1,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,0,1],[2,1,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,0,1],[2,1,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,0,1],[3,1,3,2],[2,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,1,3,2],[3,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,1,3,2],[2,4,2,1],[1,1,2,0]],[[0,2,0,1],[2,1,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,1,0],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[3,3,1,0],[1,2,2,1]],[[1,2,2,1],[3,1,0,2],[2,3,1,0],[1,2,2,1]],[[1,3,2,1],[2,1,0,2],[2,3,1,0],[1,2,2,1]],[[2,2,2,1],[2,1,0,2],[2,3,1,0],[1,2,2,1]],[[0,2,0,2],[2,1,3,2],[2,3,2,2],[0,0,2,1]],[[0,2,0,1],[2,1,4,2],[2,3,2,2],[0,0,2,1]],[[0,2,0,1],[2,1,3,3],[2,3,2,2],[0,0,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,3],[0,0,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,2],[0,0,2,2]],[[0,2,0,2],[2,1,3,2],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,1,4,2],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,1,3,3],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,3],[0,1,1,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,2],[0,1,1,2]],[[0,2,0,2],[2,1,3,2],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,1,4,2],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,1,3,3],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,1,3,2],[2,3,2,3],[0,1,2,0]],[[0,2,0,2],[2,1,3,2],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,1,4,2],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,1,3,3],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,3],[0,2,0,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,2],[0,2,0,2]],[[0,2,0,2],[2,1,3,2],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,1,4,2],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,1,3,3],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,1,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,0,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[2,3,0,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[3,3,0,2],[1,2,2,0]],[[1,2,2,1],[3,1,0,2],[2,3,0,2],[1,2,2,0]],[[1,3,2,1],[2,1,0,2],[2,3,0,2],[1,2,2,0]],[[2,2,2,1],[2,1,0,2],[2,3,0,2],[1,2,2,0]],[[0,2,0,2],[2,1,3,2],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,1,4,2],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,1,3,3],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,3],[1,0,1,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,2],[1,0,1,2]],[[0,2,0,2],[2,1,3,2],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,1,4,2],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,1,3,3],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,1,3,2],[2,3,2,3],[1,0,2,0]],[[0,2,0,2],[2,1,3,2],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,1,4,2],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,1,3,3],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,3],[1,1,0,1]],[[0,2,0,1],[2,1,3,2],[2,3,2,2],[1,1,0,2]],[[0,2,0,2],[2,1,3,2],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[2,1,4,2],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[2,1,3,3],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[2,1,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,3,0,2],[1,3,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,0,2],[2,2,1,1]],[[1,2,2,1],[2,1,0,2],[3,3,0,2],[1,2,1,1]],[[1,2,2,1],[3,1,0,2],[2,3,0,2],[1,2,1,1]],[[1,3,2,1],[2,1,0,2],[2,3,0,2],[1,2,1,1]],[[2,2,2,1],[2,1,0,2],[2,3,0,2],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,3,0,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[2,3,0,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[3,3,0,1],[1,2,2,1]],[[1,2,2,1],[3,1,0,2],[2,3,0,1],[1,2,2,1]],[[1,3,2,1],[2,1,0,2],[2,3,0,1],[1,2,2,1]],[[2,2,2,1],[2,1,0,2],[2,3,0,1],[1,2,2,1]],[[0,2,0,2],[2,1,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[3,1,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,1,4,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,1,3,3],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,1,3,2],[3,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,1,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,0],[0,1,2,2]],[[0,2,0,2],[2,1,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[3,1,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,1,4,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,1,3,3],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,1,3,2],[3,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,1,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,0,1],[2,1,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,0],[0,3,1,1]],[[0,2,0,2],[2,1,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[3,1,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,1,4,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,1,3,3],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,1,3,2],[3,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,1,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,0],[2,0,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,0],[1,0,2,2]],[[0,2,0,2],[2,1,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[3,1,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,1,4,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,1,3,3],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,1,3,2],[3,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,1,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,0,1],[2,1,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,0],[2,1,1,1]],[[0,2,0,1],[3,1,3,2],[2,3,3,0],[1,2,0,1]],[[0,2,0,1],[2,1,3,2],[3,3,3,0],[1,2,0,1]],[[0,2,0,1],[2,1,3,2],[2,4,3,0],[1,2,0,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,0],[2,2,0,1]],[[0,2,0,2],[2,1,3,2],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,1,4,2],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,1,3,3],[2,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,1,3,2],[2,3,4,1],[0,0,2,1]],[[0,2,0,2],[2,1,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[3,1,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,1,4,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,1,3,3],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,1,3,2],[3,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,1,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,0,1],[2,1,3,2],[2,3,4,1],[0,1,1,1]],[[0,2,0,2],[2,1,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[3,1,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,1,4,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,1,3,3],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,1,3,2],[3,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,1,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,0,1],[2,1,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,0,1],[2,1,3,2],[2,3,3,1],[0,1,3,0]],[[0,2,0,2],[2,1,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[3,1,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,1,4,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,1,3,3],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,1,3,2],[3,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,1,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,0,1],[2,1,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,1],[0,3,0,1]],[[0,2,0,2],[2,1,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[3,1,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,1,4,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,1,3,3],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,1,3,2],[3,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,1,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,0,1],[2,1,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,0,1],[2,1,3,2],[2,3,3,1],[0,3,1,0]],[[0,2,0,2],[2,1,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[3,1,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,1,4,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,1,3,3],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,1,3,2],[3,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,1,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,0,1],[2,1,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,1],[2,0,1,1]],[[0,2,0,2],[2,1,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[3,1,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,1,4,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,1,3,3],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,1,3,2],[3,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,1,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,0,1],[2,1,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,0,1],[2,1,3,2],[2,3,3,1],[2,0,2,0]],[[0,2,0,1],[2,1,3,2],[2,3,3,1],[1,0,3,0]],[[0,2,0,2],[2,1,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[3,1,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,1,4,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,1,3,3],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,1,3,2],[3,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,1,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,0,1],[2,1,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,1],[2,1,0,1]],[[0,2,0,2],[2,1,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[3,1,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,1,4,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,1,3,3],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,1,3,2],[3,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,1,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,0,1],[2,1,3,2],[2,3,4,1],[1,1,1,0]],[[0,2,0,1],[2,1,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,2],[2,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,4,2],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[3,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,0,3],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[3,1,0,2],[2,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,1,0,2],[2,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,1,0,2],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,1,0,2],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,1,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[3,1,3,2],[2,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,1,3,2],[3,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,1,3,2],[2,4,3,1],[1,2,0,0]],[[0,2,0,1],[2,1,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,2],[1,1,0,2]],[[1,2,2,1],[2,1,0,2],[2,2,3,2],[2,1,0,1]],[[1,2,2,1],[2,1,0,2],[2,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,1,0,2],[2,2,4,2],[1,1,0,1]],[[1,2,2,1],[2,1,0,2],[3,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,0,3],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[3,1,0,2],[2,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,1,0,2],[2,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,1,0,2],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,1,0,2],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,1,0,2],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,0,2],[2,2,3,2],[1,0,3,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,2],[2,0,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,4,2],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[3,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,0,3],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[3,1,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,0,2],[2,1,3,2],[2,3,3,2],[0,1,0,1]],[[0,2,0,1],[2,1,4,2],[2,3,3,2],[0,1,0,1]],[[0,2,0,1],[2,1,3,3],[2,3,3,2],[0,1,0,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,2],[2,1,0,2],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,0,2],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,0,2],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,0,2],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,2],[1,0,1,2]],[[1,2,2,1],[2,1,0,2],[2,2,3,2],[2,0,1,1]],[[1,2,2,1],[2,1,0,2],[2,2,3,3],[1,0,1,1]],[[1,2,2,1],[2,1,0,2],[2,2,4,2],[1,0,1,1]],[[1,2,2,1],[2,1,0,2],[3,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,0,3],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[3,1,0,2],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,0,2],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,1,0,2],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,0,2],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,0,2],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,0,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,4,2],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,0,3],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,1,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,0,2],[2,1,3,2],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[2,1,4,2],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[2,1,3,3],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[2,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,2],[2,1,0,2],[2,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,1,0,2],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,1,0,2],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,1,0,2],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,2],[0,2,0,2]],[[1,2,2,1],[2,1,0,2],[2,2,3,3],[0,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,2,4,2],[0,2,0,1]],[[1,2,2,1],[2,1,0,2],[3,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,1,0,3],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[3,1,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,1,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,1,0,2],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,1,0,2],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,1,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,2,3,2],[0,1,3,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,3],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,4,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[3,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,3],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[3,1,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,0,2],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,0,2],[2,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,2],[0,1,1,2]],[[1,2,2,1],[2,1,0,2],[2,2,3,3],[0,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,2,4,2],[0,1,1,1]],[[1,2,2,1],[2,1,0,2],[3,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,0,3],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[3,1,0,2],[2,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,0,2],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,0,2],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,0,2],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,1,0,2],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,2,3,2],[0,0,2,2]],[[1,2,2,1],[2,1,0,2],[2,2,3,3],[0,0,2,1]],[[1,2,2,1],[2,1,0,2],[2,2,4,2],[0,0,2,1]],[[1,2,2,1],[2,1,0,3],[2,2,3,2],[0,0,2,1]],[[1,2,2,1],[3,1,0,2],[2,2,3,2],[0,0,2,1]],[[1,2,2,2],[2,1,0,2],[2,2,3,2],[0,0,2,1]],[[1,2,3,1],[2,1,0,2],[2,2,3,2],[0,0,2,1]],[[1,3,2,1],[2,1,0,2],[2,2,3,2],[0,0,2,1]],[[2,2,2,1],[2,1,0,2],[2,2,3,2],[0,0,2,1]],[[1,2,2,1],[2,1,0,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,1],[2,2,1,0]],[[1,2,2,1],[2,1,0,2],[3,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,0,3],[2,2,3,1],[1,2,1,0]],[[1,2,2,1],[3,1,0,2],[2,2,3,1],[1,2,1,0]],[[1,2,2,2],[2,1,0,2],[2,2,3,1],[1,2,1,0]],[[1,2,3,1],[2,1,0,2],[2,2,3,1],[1,2,1,0]],[[1,3,2,1],[2,1,0,2],[2,2,3,1],[1,2,1,0]],[[2,2,2,1],[2,1,0,2],[2,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,1],[1,3,0,1]],[[1,2,2,1],[2,1,0,2],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,0,2],[3,2,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,0,3],[2,2,3,1],[1,2,0,1]],[[1,2,2,1],[3,1,0,2],[2,2,3,1],[1,2,0,1]],[[1,2,2,2],[2,1,0,2],[2,2,3,1],[1,2,0,1]],[[1,2,3,1],[2,1,0,2],[2,2,3,1],[1,2,0,1]],[[1,3,2,1],[2,1,0,2],[2,2,3,1],[1,2,0,1]],[[2,2,2,1],[2,1,0,2],[2,2,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,2,3,1],[1,0,2,2]],[[1,2,2,1],[2,1,0,2],[2,2,3,1],[1,0,3,1]],[[0,2,0,1],[2,2,0,0],[3,3,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,0,0],[2,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,2,0,0],[2,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,0,0],[2,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,0,0],[2,3,3,2],[1,2,2,2]],[[0,2,0,1],[2,2,0,1],[1,4,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,0,1],[1,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,2,0,1],[1,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,0,1],[1,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,0,1],[1,3,3,2],[1,2,2,2]],[[0,2,0,1],[3,2,0,1],[2,2,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,0,1],[3,2,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,0,1],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,2,0,1],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,0,1],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,0,1],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,2,0,1],[3,3,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,0,1],[2,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,0,1],[2,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,0,1],[2,3,3,1],[1,2,3,1]],[[0,2,0,1],[3,2,0,1],[2,3,3,2],[0,2,2,1]],[[0,2,0,1],[2,2,0,1],[3,3,3,2],[0,2,2,1]],[[0,2,0,1],[2,2,0,1],[2,4,3,2],[0,2,2,1]],[[0,2,0,1],[2,2,0,1],[2,3,3,2],[0,3,2,1]],[[0,2,0,1],[2,2,0,1],[2,3,3,2],[0,2,3,1]],[[0,2,0,1],[2,2,0,1],[2,3,3,2],[0,2,2,2]],[[0,2,0,1],[3,2,0,1],[2,3,3,2],[1,1,2,1]],[[0,2,0,1],[2,2,0,1],[3,3,3,2],[1,1,2,1]],[[0,2,0,1],[2,2,0,1],[2,4,3,2],[1,1,2,1]],[[0,2,0,1],[2,2,0,1],[2,3,3,2],[2,1,2,1]],[[0,2,0,1],[2,2,0,1],[3,3,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,0,1],[2,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,0,1],[2,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,0,2],[1,2,3,3],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[1,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,2,0,2],[1,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,0,2],[1,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,0,2],[1,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,2,0,2],[1,4,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[1,3,2,3],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,0,2],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,0,2],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,0,2],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,2,0,2],[1,4,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[1,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,0,2],[1,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,0,2],[1,3,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,0,2],[1,3,3,1],[1,2,2,2]],[[0,2,0,1],[2,2,0,2],[1,3,3,3],[1,1,2,1]],[[0,2,0,1],[2,2,0,2],[1,3,3,2],[1,1,3,1]],[[0,2,0,1],[2,2,0,2],[1,3,3,2],[1,1,2,2]],[[0,2,0,1],[2,2,0,2],[1,4,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,0,2],[1,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,0,2],[1,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,0,2],[1,3,3,2],[1,2,3,0]],[[0,2,0,1],[3,2,0,2],[2,1,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[3,1,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,1,3,3],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,1,3,2],[2,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,1,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,0,2],[2,1,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,0,2],[2,1,3,2],[1,2,2,2]],[[0,2,0,1],[3,2,0,2],[2,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[3,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,2,2,3],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,0,2],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,0,2],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[3,2,0,2],[2,2,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[3,2,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,0,2],[2,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,0,2],[2,2,3,1],[1,2,2,2]],[[0,2,0,1],[2,2,0,2],[2,2,3,3],[0,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,2,3,2],[0,3,2,1]],[[0,2,0,1],[2,2,0,2],[2,2,3,2],[0,2,3,1]],[[0,2,0,1],[2,2,0,2],[2,2,3,2],[0,2,2,2]],[[0,2,0,1],[3,2,0,2],[2,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,0,2],[3,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,0,2],[2,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,0,2],[2,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,0,2],[2,2,3,2],[1,2,3,0]],[[0,2,0,1],[3,2,0,2],[2,3,2,2],[0,2,2,1]],[[0,2,0,1],[2,2,0,2],[3,3,2,2],[0,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,4,2,2],[0,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,3,2,3],[0,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[2,2,0,2],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[2,2,0,2],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[3,2,0,2],[2,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,2,0,2],[3,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,2,0,2],[2,4,2,2],[1,1,2,1]],[[0,2,0,1],[2,2,0,2],[2,3,2,2],[2,1,2,1]],[[0,2,0,1],[3,2,0,2],[2,3,3,1],[0,2,2,1]],[[0,2,0,1],[2,2,0,2],[3,3,3,1],[0,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,4,3,1],[0,2,2,1]],[[0,2,0,1],[2,2,0,2],[2,3,3,1],[0,3,2,1]],[[0,2,0,1],[2,2,0,2],[2,3,3,1],[0,2,3,1]],[[0,2,0,1],[2,2,0,2],[2,3,3,1],[0,2,2,2]],[[0,2,0,1],[3,2,0,2],[2,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,2,0,2],[3,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,2,0,2],[2,4,3,1],[1,1,2,1]],[[0,2,0,1],[2,2,0,2],[2,3,3,1],[2,1,2,1]],[[0,2,0,1],[2,2,0,2],[2,3,3,3],[0,1,2,1]],[[0,2,0,1],[2,2,0,2],[2,3,3,2],[0,1,3,1]],[[0,2,0,1],[2,2,0,2],[2,3,3,2],[0,1,2,2]],[[0,2,0,1],[3,2,0,2],[2,3,3,2],[0,2,2,0]],[[0,2,0,1],[2,2,0,2],[3,3,3,2],[0,2,2,0]],[[0,2,0,1],[2,2,0,2],[2,4,3,2],[0,2,2,0]],[[0,2,0,1],[2,2,0,2],[2,3,3,2],[0,3,2,0]],[[0,2,0,1],[2,2,0,2],[2,3,3,2],[0,2,3,0]],[[0,2,0,1],[2,2,0,2],[2,3,3,3],[1,0,2,1]],[[0,2,0,1],[2,2,0,2],[2,3,3,2],[1,0,3,1]],[[0,2,0,1],[2,2,0,2],[2,3,3,2],[1,0,2,2]],[[0,2,0,1],[3,2,0,2],[2,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,0,2],[3,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,0,2],[2,4,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,4,1],[1,0,2,1]],[[1,2,2,1],[2,1,0,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,1],[0,3,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,4,1],[0,2,2,0]],[[0,2,0,1],[2,2,1,0],[1,4,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,0],[1,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,2,1,0],[1,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,1,0],[1,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,1,0],[1,3,3,2],[1,2,2,2]],[[0,2,0,1],[3,2,1,0],[2,2,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,0],[3,2,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,0],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,2,1,0],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,1,0],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,1,0],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[3,2,1,0],[2,3,3,2],[0,2,2,1]],[[0,2,0,1],[2,2,1,0],[3,3,3,2],[0,2,2,1]],[[0,2,0,1],[2,2,1,0],[2,4,3,2],[0,2,2,1]],[[0,2,0,1],[2,2,1,0],[2,3,3,2],[0,3,2,1]],[[0,2,0,1],[2,2,1,0],[2,3,3,2],[0,2,3,1]],[[0,2,0,1],[2,2,1,0],[2,3,3,2],[0,2,2,2]],[[0,2,0,1],[3,2,1,0],[2,3,3,2],[1,1,2,1]],[[0,2,0,1],[2,2,1,0],[3,3,3,2],[1,1,2,1]],[[0,2,0,1],[2,2,1,0],[2,4,3,2],[1,1,2,1]],[[0,2,0,1],[2,2,1,0],[2,3,3,2],[2,1,2,1]],[[0,2,0,1],[2,2,1,1],[1,4,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,1],[1,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,1,1],[1,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,1,1],[1,3,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,1,1],[1,3,3,1],[1,2,2,2]],[[0,2,0,1],[2,2,1,1],[1,4,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,1],[1,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,1,1],[1,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,1,1],[1,3,3,2],[1,2,3,0]],[[0,2,0,1],[3,2,1,1],[2,2,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,1],[3,2,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,1],[2,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,1,1],[2,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,1,1],[2,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,1,1],[2,2,3,1],[1,2,2,2]],[[0,2,0,1],[3,2,1,1],[2,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,1],[3,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,1],[2,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,1,1],[2,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,1,1],[2,2,3,2],[1,2,3,0]],[[0,2,0,1],[3,2,1,1],[2,3,3,1],[0,2,2,1]],[[0,2,0,1],[2,2,1,1],[3,3,3,1],[0,2,2,1]],[[0,2,0,1],[2,2,1,1],[2,4,3,1],[0,2,2,1]],[[0,2,0,1],[2,2,1,1],[2,3,3,1],[0,3,2,1]],[[0,2,0,1],[2,2,1,1],[2,3,3,1],[0,2,3,1]],[[0,2,0,1],[2,2,1,1],[2,3,3,1],[0,2,2,2]],[[0,2,0,1],[3,2,1,1],[2,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,2,1,1],[3,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,2,1,1],[2,4,3,1],[1,1,2,1]],[[0,2,0,1],[2,2,1,1],[2,3,3,1],[2,1,2,1]],[[0,2,0,1],[3,2,1,1],[2,3,3,2],[0,2,2,0]],[[0,2,0,1],[2,2,1,1],[3,3,3,2],[0,2,2,0]],[[0,2,0,1],[2,2,1,1],[2,4,3,2],[0,2,2,0]],[[0,2,0,1],[2,2,1,1],[2,3,3,2],[0,3,2,0]],[[0,2,0,1],[2,2,1,1],[2,3,3,2],[0,2,3,0]],[[0,2,0,1],[3,2,1,1],[2,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,1,1],[3,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,1,1],[2,4,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,1],[0,1,2,2]],[[1,2,2,1],[2,1,0,2],[2,2,3,1],[0,1,3,1]],[[1,2,2,1],[2,1,0,2],[2,2,4,1],[0,1,2,1]],[[0,2,0,1],[2,2,1,2],[0,2,3,3],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[0,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,1,2],[0,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,1,2],[0,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,2,1,2],[0,3,3,3],[1,1,2,1]],[[0,2,0,1],[2,2,1,2],[0,3,3,2],[1,1,3,1]],[[0,2,0,1],[2,2,1,2],[0,3,3,2],[1,1,2,2]],[[0,2,0,2],[2,2,1,2],[1,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,3],[1,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,2,2,3],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,1,2],[1,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,1,2],[1,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,2,1,2],[1,2,4,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,1,2],[1,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,1,2],[1,2,3,1],[1,2,2,2]],[[0,2,0,1],[2,2,1,2],[1,2,3,3],[0,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,2,3,2],[0,2,3,1]],[[0,2,0,1],[2,2,1,2],[1,2,3,2],[0,2,2,2]],[[0,2,0,2],[2,2,1,2],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,1,3],[1,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,1,2],[1,2,4,2],[1,2,1,1]],[[0,2,0,1],[2,2,1,2],[1,2,3,3],[1,2,1,1]],[[0,2,0,1],[2,2,1,2],[1,2,3,2],[1,2,1,2]],[[0,2,0,2],[2,2,1,2],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,3],[1,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[1,2,4,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[1,2,3,3],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[1,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,1,2],[1,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,1,2],[1,2,3,2],[1,2,3,0]],[[0,2,0,2],[2,2,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,3],[1,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,2,1,2],[1,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,2,1,2],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,2,1,2],[1,3,2,1],[1,2,2,2]],[[0,2,0,2],[2,2,1,2],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,2,1,3],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,2,3],[1,1,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,2,2],[1,1,3,1]],[[0,2,0,1],[2,2,1,2],[1,3,2,2],[1,1,2,2]],[[0,2,0,1],[2,2,1,2],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,2,1,2],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,2,1,2],[1,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,2,1,2],[1,4,3,1],[1,1,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,4,1],[1,1,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,1],[1,1,3,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,1],[1,1,2,2]],[[0,2,0,1],[2,2,1,2],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,1,2],[1,3,4,1],[1,2,1,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,3],[0,1,2,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,2],[0,1,3,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,2],[0,1,2,2]],[[0,2,0,2],[2,2,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,1,3],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,1,2],[1,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,1,2],[1,3,4,2],[1,1,1,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,3],[1,1,1,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,2],[1,1,1,2]],[[0,2,0,2],[2,2,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,1,3],[1,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,1,2],[1,4,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,1,2],[1,3,4,2],[1,1,2,0]],[[0,2,0,1],[2,2,1,2],[1,3,3,3],[1,1,2,0]],[[0,2,0,1],[2,2,1,2],[1,3,3,2],[1,1,3,0]],[[0,2,0,2],[2,2,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,1,3],[1,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,1,2],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,1,2],[1,3,4,2],[1,2,0,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,3],[1,2,0,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,2,1,2],[1,3,3,2],[1,2,0,2]],[[0,2,0,2],[2,2,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,1,3],[1,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,1,2],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,1,2],[1,3,4,2],[1,2,1,0]],[[0,2,0,1],[2,2,1,2],[1,3,3,3],[1,2,1,0]],[[0,2,0,1],[2,2,1,2],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,2,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,0],[1,3,1,1]],[[0,2,0,2],[2,2,1,2],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[3,2,1,2],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,3],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[3,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,1,2,3],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,1,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,1,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,1,2],[2,1,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,1,2],[2,1,2,2],[1,2,2,2]],[[0,2,0,1],[3,2,1,2],[2,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[3,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,1,4,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,1,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,1,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,1,2],[2,1,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,1,2],[2,1,3,1],[1,2,2,2]],[[0,2,0,2],[2,2,1,2],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,1,3],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,1,2],[2,1,4,2],[1,2,1,1]],[[0,2,0,1],[2,2,1,2],[2,1,3,3],[1,2,1,1]],[[0,2,0,1],[2,2,1,2],[2,1,3,2],[1,2,1,2]],[[0,2,0,2],[2,2,1,2],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[3,2,1,2],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,3],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[3,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,1,4,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,1,3,3],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,1,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,1,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,1,2],[2,1,3,2],[1,2,3,0]],[[0,2,0,2],[2,2,1,2],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[3,2,1,2],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,3],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[3,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,1,3],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,1,2],[2,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,1,2],[1,3,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,1,2],[1,2,3,1]],[[0,2,0,1],[2,2,1,2],[2,2,1,2],[1,2,2,2]],[[0,2,0,1],[3,2,1,2],[2,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[3,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,2,1],[2,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,2,1],[1,3,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,2,1],[1,2,3,1]],[[0,2,0,1],[2,2,1,2],[2,2,2,1],[1,2,2,2]],[[0,2,0,2],[2,2,1,2],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[2,2,1,3],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,2,3],[0,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,2,2],[0,3,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,2,2],[0,2,3,1]],[[0,2,0,1],[2,2,1,2],[2,2,2,2],[0,2,2,2]],[[0,2,0,1],[3,2,1,2],[2,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[3,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,2,2,2],[2,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,2,2,2],[1,3,2,0]],[[0,2,0,1],[2,2,1,2],[2,2,2,2],[1,2,3,0]],[[0,2,0,1],[2,2,1,2],[2,2,4,1],[0,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,3,1],[0,3,2,1]],[[0,2,0,1],[2,2,1,2],[2,2,3,1],[0,2,3,1]],[[0,2,0,1],[2,2,1,2],[2,2,3,1],[0,2,2,2]],[[0,2,0,1],[3,2,1,2],[2,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,1,2],[3,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,1,2],[2,2,3,1],[2,2,1,1]],[[0,2,0,1],[2,2,1,2],[2,2,3,1],[1,3,1,1]],[[0,2,0,2],[2,2,1,2],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,2,1,3],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,2,1,2],[2,2,4,2],[0,2,1,1]],[[0,2,0,1],[2,2,1,2],[2,2,3,3],[0,2,1,1]],[[0,2,0,1],[2,2,1,2],[2,2,3,2],[0,2,1,2]],[[0,2,0,2],[2,2,1,2],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[2,2,1,3],[2,2,3,2],[0,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,2,4,2],[0,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,2,3,3],[0,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,2,3,2],[0,3,2,0]],[[0,2,0,1],[2,2,1,2],[2,2,3,2],[0,2,3,0]],[[0,2,0,1],[3,2,1,2],[2,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,1,2],[3,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,1,2],[2,2,3,2],[2,2,0,1]],[[0,2,0,1],[2,2,1,2],[2,2,3,2],[1,3,0,1]],[[0,2,0,1],[3,2,1,2],[2,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,1,2],[3,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,1,2],[2,2,3,2],[2,2,1,0]],[[0,2,0,1],[2,2,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,0],[2,2,1,1]],[[1,2,2,1],[2,1,0,2],[3,2,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,0,3],[2,2,3,0],[1,2,1,1]],[[1,2,2,1],[3,1,0,2],[2,2,3,0],[1,2,1,1]],[[1,2,2,2],[2,1,0,2],[2,2,3,0],[1,2,1,1]],[[1,2,3,1],[2,1,0,2],[2,2,3,0],[1,2,1,1]],[[1,3,2,1],[2,1,0,2],[2,2,3,0],[1,2,1,1]],[[2,2,2,1],[2,1,0,2],[2,2,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,2,3,0],[0,2,2,2]],[[1,2,2,1],[2,1,0,2],[2,2,3,0],[0,2,3,1]],[[0,2,0,1],[3,2,1,2],[2,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[3,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,0,2],[2,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,0,2],[1,3,2,1]],[[0,2,0,1],[3,2,1,2],[2,3,1,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[3,3,1,1],[1,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,1,1],[2,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,1,1],[1,3,2,1]],[[0,2,0,2],[2,2,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[3,2,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,1,3],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,1,2],[3,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,1,3],[0,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[2,2,1,2],[2,3,1,2],[0,2,2,2]],[[0,2,0,1],[3,2,1,2],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,2,1,2],[3,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,2,1,2],[2,4,1,2],[1,1,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,1,2],[2,1,2,1]],[[0,2,0,1],[3,2,1,2],[2,3,1,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[3,3,1,2],[1,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,1,2],[2,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,1,2],[1,3,2,0]],[[0,2,0,1],[3,2,1,2],[2,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,2,1,2],[3,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[2,2,1,2],[2,3,2,1],[0,2,2,2]],[[0,2,0,1],[3,2,1,2],[2,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,2,1,2],[3,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,2,1,2],[2,4,2,1],[1,1,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,2,1],[2,1,2,1]],[[0,2,0,2],[2,2,1,2],[2,3,2,2],[0,1,2,1]],[[0,2,0,1],[2,2,1,3],[2,3,2,2],[0,1,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,2,3],[0,1,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,2,2],[0,1,3,1]],[[0,2,0,1],[2,2,1,2],[2,3,2,2],[0,1,2,2]],[[0,2,0,1],[3,2,1,2],[2,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,2,1,2],[3,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,2,2],[0,2,3,0]],[[0,2,0,2],[2,2,1,2],[2,3,2,2],[1,0,2,1]],[[0,2,0,1],[2,2,1,3],[2,3,2,2],[1,0,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,2,3],[1,0,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,2,2],[1,0,3,1]],[[0,2,0,1],[2,2,1,2],[2,3,2,2],[1,0,2,2]],[[0,2,0,1],[3,2,1,2],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,2,1,2],[3,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,2,1,2],[2,4,2,2],[1,1,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,3,0],[0,3,2,1]],[[1,2,2,1],[2,1,0,2],[2,2,4,0],[0,2,2,1]],[[0,2,0,1],[3,2,1,2],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,2,1,2],[3,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,2,1,2],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,4,1],[0,1,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,1],[0,1,3,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,1],[0,1,2,2]],[[0,2,0,1],[3,2,1,2],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,1,2],[3,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,1,2],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,1,2],[2,3,4,1],[0,2,1,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,1],[0,3,1,1]],[[0,2,0,1],[3,2,1,2],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,1,2],[3,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,1,2],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,4,1],[1,0,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,1],[2,0,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,1],[1,0,3,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,1],[1,0,2,2]],[[0,2,0,1],[3,2,1,2],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,1,2],[3,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,1,2],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,1,2],[2,3,4,1],[1,1,1,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,1],[2,1,1,1]],[[0,2,0,1],[3,2,1,2],[2,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,1,2],[3,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,1,2],[2,4,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,1],[2,2,0,1]],[[0,2,0,2],[2,2,1,2],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,2,1,3],[2,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,4,2],[0,0,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,3],[0,0,2,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[0,0,2,2]],[[0,2,0,2],[2,2,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[3,2,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,1,3],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,1,2],[3,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,1,2],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,1,2],[2,3,4,2],[0,1,1,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,3],[0,1,1,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[0,1,1,2]],[[0,2,0,2],[2,2,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[3,2,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,1,3],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,1,2],[3,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,1,2],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,4,2],[0,1,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,3,3],[0,1,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[0,1,3,0]],[[0,2,0,2],[2,2,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[3,2,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,1,3],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,1,2],[3,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,1,2],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,1,2],[2,3,4,2],[0,2,0,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,3],[0,2,0,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[0,2,0,2]],[[0,2,0,2],[2,2,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[3,2,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,1,3],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,1,2],[3,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,1,2],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,1,2],[2,3,4,2],[0,2,1,0]],[[0,2,0,1],[2,2,1,2],[2,3,3,3],[0,2,1,0]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,2,2],[2,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,2,3],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[3,2,2,2],[1,2,1,0]],[[0,2,0,2],[2,2,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[3,2,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,1,3],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,1,2],[3,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,1,2],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,1,2],[2,3,4,2],[1,0,1,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,3],[1,0,1,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[2,0,1,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[1,0,1,2]],[[0,2,0,2],[2,2,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[3,2,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,1,3],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,1,2],[3,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,1,2],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,4,2],[1,0,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,3,3],[1,0,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[2,0,2,0]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[1,0,3,0]],[[0,2,0,2],[2,2,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[3,2,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,1,3],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,1,2],[3,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,1,2],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,1,2],[2,3,4,2],[1,1,0,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,3],[1,1,0,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[2,1,0,1]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[1,1,0,2]],[[0,2,0,2],[2,2,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[3,2,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,1,3],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,1,2],[3,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,1,2],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,1,2],[2,3,4,2],[1,1,1,0]],[[0,2,0,1],[2,2,1,2],[2,3,3,3],[1,1,1,0]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,1,0,3],[2,2,2,2],[1,2,1,0]],[[1,2,2,1],[3,1,0,2],[2,2,2,2],[1,2,1,0]],[[1,2,2,2],[2,1,0,2],[2,2,2,2],[1,2,1,0]],[[1,2,3,1],[2,1,0,2],[2,2,2,2],[1,2,1,0]],[[1,3,2,1],[2,1,0,2],[2,2,2,2],[1,2,1,0]],[[2,2,2,1],[2,1,0,2],[2,2,2,2],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,2,2],[1,2,0,2]],[[1,2,2,1],[2,1,0,2],[2,2,2,2],[1,3,0,1]],[[1,2,2,1],[2,1,0,2],[2,2,2,2],[2,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,2,2,3],[1,2,0,1]],[[0,2,0,1],[3,2,1,2],[2,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,2,1,2],[3,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,2,1,2],[2,4,3,2],[1,2,0,0]],[[0,2,0,1],[2,2,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,1,0,2],[3,2,2,2],[1,2,0,1]],[[1,2,2,1],[2,1,0,3],[2,2,2,2],[1,2,0,1]],[[1,2,2,1],[3,1,0,2],[2,2,2,2],[1,2,0,1]],[[1,2,2,2],[2,1,0,2],[2,2,2,2],[1,2,0,1]],[[1,2,3,1],[2,1,0,2],[2,2,2,2],[1,2,0,1]],[[1,3,2,1],[2,1,0,2],[2,2,2,2],[1,2,0,1]],[[2,2,2,1],[2,1,0,2],[2,2,2,2],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,0,2],[2,2,2,2],[1,0,3,1]],[[1,2,2,1],[2,1,0,2],[2,2,2,2],[2,0,2,1]],[[1,2,2,1],[2,1,0,2],[2,2,2,3],[1,0,2,1]],[[1,2,2,1],[2,1,0,2],[3,2,2,2],[1,0,2,1]],[[1,2,2,1],[2,1,0,3],[2,2,2,2],[1,0,2,1]],[[1,2,2,1],[3,1,0,2],[2,2,2,2],[1,0,2,1]],[[1,2,2,2],[2,1,0,2],[2,2,2,2],[1,0,2,1]],[[1,2,3,1],[2,1,0,2],[2,2,2,2],[1,0,2,1]],[[1,3,2,1],[2,1,0,2],[2,2,2,2],[1,0,2,1]],[[2,2,2,1],[2,1,0,2],[2,2,2,2],[1,0,2,1]],[[0,2,0,1],[2,2,2,0],[1,2,4,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,0],[1,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,0],[1,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,0],[1,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,0],[1,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,2,2,0],[1,4,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,0],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,0],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,0],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,0],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,2,2,0],[1,4,3,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,0],[1,3,4,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,0],[1,3,3,2],[1,1,3,1]],[[0,2,0,1],[2,2,2,0],[1,3,3,2],[1,1,2,2]],[[0,2,0,1],[2,2,2,0],[1,4,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,0],[1,3,4,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,0],[1,3,3,2],[2,2,1,1]],[[0,2,0,1],[2,2,2,0],[1,3,3,2],[1,3,1,1]],[[0,2,0,1],[3,2,2,0],[2,1,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,0],[3,1,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,0],[2,1,4,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,0],[2,1,3,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,0],[2,1,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,0],[2,1,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,0],[2,1,3,2],[1,2,2,2]],[[0,2,0,1],[3,2,2,0],[2,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,0],[3,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,0],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,0],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,0],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,0],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,2,2,0],[2,2,4,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,0],[2,2,3,2],[0,3,2,1]],[[0,2,0,1],[2,2,2,0],[2,2,3,2],[0,2,3,1]],[[0,2,0,1],[2,2,2,0],[2,2,3,2],[0,2,2,2]],[[0,2,0,1],[3,2,2,0],[2,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,0],[3,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,0],[2,2,3,2],[2,2,1,1]],[[0,2,0,1],[2,2,2,0],[2,2,3,2],[1,3,1,1]],[[0,2,0,1],[2,2,2,0],[3,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,0],[2,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,0],[2,3,1,2],[1,3,2,1]],[[0,2,0,1],[3,2,2,0],[2,3,2,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,0],[3,3,2,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,0],[2,4,2,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,0],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[2,2,2,0],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[2,2,2,0],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[3,2,2,0],[2,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,0],[3,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,0],[2,4,2,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,0],[2,3,2,2],[2,1,2,1]],[[0,2,0,1],[3,2,2,0],[2,3,3,2],[0,1,2,1]],[[0,2,0,1],[2,2,2,0],[3,3,3,2],[0,1,2,1]],[[0,2,0,1],[2,2,2,0],[2,4,3,2],[0,1,2,1]],[[0,2,0,1],[2,2,2,0],[2,3,4,2],[0,1,2,1]],[[0,2,0,1],[2,2,2,0],[2,3,3,2],[0,1,3,1]],[[0,2,0,1],[2,2,2,0],[2,3,3,2],[0,1,2,2]],[[0,2,0,1],[3,2,2,0],[2,3,3,2],[0,2,1,1]],[[0,2,0,1],[2,2,2,0],[3,3,3,2],[0,2,1,1]],[[0,2,0,1],[2,2,2,0],[2,4,3,2],[0,2,1,1]],[[0,2,0,1],[2,2,2,0],[2,3,4,2],[0,2,1,1]],[[0,2,0,1],[2,2,2,0],[2,3,3,2],[0,3,1,1]],[[0,2,0,1],[3,2,2,0],[2,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,2,2,0],[3,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,2,2,0],[2,4,3,2],[1,0,2,1]],[[0,2,0,1],[2,2,2,0],[2,3,4,2],[1,0,2,1]],[[0,2,0,1],[2,2,2,0],[2,3,3,2],[2,0,2,1]],[[0,2,0,1],[2,2,2,0],[2,3,3,2],[1,0,3,1]],[[0,2,0,1],[2,2,2,0],[2,3,3,2],[1,0,2,2]],[[0,2,0,1],[3,2,2,0],[2,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,2,0],[3,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,2,0],[2,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,2,0],[2,3,4,2],[1,1,1,1]],[[0,2,0,1],[2,2,2,0],[2,3,3,2],[2,1,1,1]],[[0,2,0,1],[2,2,2,0],[3,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,2,0],[2,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,2,0],[2,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,2,2,1],[1,2,2,3],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[1,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[1,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,1],[1,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,1],[1,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,2,2,1],[1,2,4,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[1,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[1,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,2,1],[1,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,2,1],[1,2,3,1],[1,2,2,2]],[[0,2,0,1],[2,2,2,1],[1,2,4,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,1],[1,2,3,3],[1,2,1,1]],[[0,2,0,1],[2,2,2,1],[1,2,3,2],[1,2,1,2]],[[0,2,0,1],[2,2,2,1],[1,2,4,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[1,2,3,3],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[1,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,2,1],[1,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,2,1],[1,2,3,2],[1,2,3,0]],[[0,2,0,1],[2,2,2,1],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,1],[1,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,2,2,1],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,2,2,1],[1,3,2,1],[1,2,2,2]],[[0,2,0,1],[2,2,2,1],[1,3,2,3],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,2,2],[1,1,3,1]],[[0,2,0,1],[2,2,2,1],[1,3,2,2],[1,1,2,2]],[[0,2,0,1],[2,2,2,1],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,2,2,1],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,2,2,1],[1,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,2,2,1],[1,4,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,0],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,0],[1,3,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,0],[1,2,3,1]],[[0,2,0,1],[2,2,2,1],[1,4,3,1],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,4,1],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,1],[1,1,3,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,1],[1,1,2,2]],[[0,2,0,1],[2,2,2,1],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,2,1],[1,3,4,1],[1,2,1,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,2,2,1],[1,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,2,1],[1,3,4,2],[1,1,1,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,3],[1,1,1,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,2],[1,1,1,2]],[[0,2,0,1],[2,2,2,1],[1,4,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,2,1],[1,3,4,2],[1,1,2,0]],[[0,2,0,1],[2,2,2,1],[1,3,3,3],[1,1,2,0]],[[0,2,0,1],[2,2,2,1],[1,3,3,2],[1,1,3,0]],[[0,2,0,1],[2,2,2,1],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,2,1],[1,3,4,2],[1,2,0,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,3],[1,2,0,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,2,2,1],[1,3,3,2],[1,2,0,2]],[[0,2,0,1],[2,2,2,1],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,2,1],[1,3,4,2],[1,2,1,0]],[[0,2,0,1],[2,2,2,1],[1,3,3,3],[1,2,1,0]],[[0,2,0,1],[2,2,2,1],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,2,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,2,2,2],[0,1,2,2]],[[1,2,2,1],[2,1,0,2],[2,2,2,2],[0,1,3,1]],[[1,2,2,1],[2,1,0,2],[2,2,2,3],[0,1,2,1]],[[1,2,2,1],[2,1,0,2],[3,2,2,2],[0,1,2,1]],[[1,2,2,1],[2,1,0,3],[2,2,2,2],[0,1,2,1]],[[1,2,2,1],[3,1,0,2],[2,2,2,2],[0,1,2,1]],[[0,2,0,1],[3,2,2,1],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[3,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,1,2,3],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,1,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,1,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,1],[2,1,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,1],[2,1,2,2],[1,2,2,2]],[[0,2,0,1],[3,2,2,1],[2,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[3,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,1,4,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,1,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,1,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,2,1],[2,1,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,2,1],[2,1,3,1],[1,2,2,2]],[[0,2,0,1],[2,2,2,1],[2,1,4,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,1],[2,1,3,3],[1,2,1,1]],[[0,2,0,1],[2,2,2,1],[2,1,3,2],[1,2,1,2]],[[0,2,0,1],[3,2,2,1],[2,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[3,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,1,4,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,1,3,3],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,1,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,1,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,2,1],[2,1,3,2],[1,2,3,0]],[[0,2,0,1],[3,2,2,1],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[3,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,1,3],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,1,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,1,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,1,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,1],[2,2,1,2],[1,2,2,2]],[[0,2,0,1],[3,2,2,1],[2,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[3,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,2,1],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,2,1],[1,3,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,2,1],[1,2,3,1]],[[0,2,0,1],[2,2,2,1],[2,2,2,1],[1,2,2,2]],[[0,2,0,1],[2,2,2,1],[2,2,2,3],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,2,2],[0,3,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,2,2],[0,2,3,1]],[[0,2,0,1],[2,2,2,1],[2,2,2,2],[0,2,2,2]],[[0,2,0,1],[3,2,2,1],[2,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[3,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,2,2,2],[2,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,2,2,2],[1,3,2,0]],[[0,2,0,1],[2,2,2,1],[2,2,2,2],[1,2,3,0]],[[0,2,0,1],[3,2,2,1],[2,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[3,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,0],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,0],[1,3,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,0],[1,2,3,1]],[[0,2,0,1],[2,2,2,1],[2,2,4,1],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,1],[0,3,2,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,1],[0,2,3,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,1],[0,2,2,2]],[[0,2,0,1],[3,2,2,1],[2,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,2,1],[3,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,1],[2,2,1,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,1],[1,3,1,1]],[[0,2,0,1],[2,2,2,1],[2,2,4,2],[0,2,1,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,3],[0,2,1,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,2],[0,2,1,2]],[[0,2,0,1],[2,2,2,1],[2,2,4,2],[0,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,2,3,3],[0,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,2,3,2],[0,3,2,0]],[[0,2,0,1],[2,2,2,1],[2,2,3,2],[0,2,3,0]],[[0,2,0,1],[3,2,2,1],[2,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,2,1],[3,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,2],[2,2,0,1]],[[0,2,0,1],[2,2,2,1],[2,2,3,2],[1,3,0,1]],[[0,2,0,1],[3,2,2,1],[2,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,2,1],[3,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,2,1],[2,2,3,2],[2,2,1,0]],[[0,2,0,1],[2,2,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,2],[2,1,0,2],[2,2,2,2],[0,1,2,1]],[[1,2,3,1],[2,1,0,2],[2,2,2,2],[0,1,2,1]],[[1,3,2,1],[2,1,0,2],[2,2,2,2],[0,1,2,1]],[[2,2,2,1],[2,1,0,2],[2,2,2,2],[0,1,2,1]],[[0,2,0,1],[3,2,2,1],[2,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[3,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,0,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,0,2],[1,3,2,1]],[[0,2,0,1],[3,2,2,1],[2,3,1,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[3,3,1,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,1,1],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,1,1],[1,3,2,1]],[[0,2,0,1],[3,2,2,1],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[3,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,1,3],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[2,2,2,1],[2,3,1,2],[0,2,2,2]],[[0,2,0,1],[3,2,2,1],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[3,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[2,4,1,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,1,2],[2,1,2,1]],[[0,2,0,1],[3,2,2,1],[2,3,1,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[3,3,1,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,1,2],[2,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,1,2],[1,3,2,0]],[[0,2,0,1],[2,2,2,1],[3,3,2,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,2,0],[2,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,2,0],[1,3,2,1]],[[0,2,0,1],[3,2,2,1],[2,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[3,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[2,2,2,1],[2,3,2,1],[0,2,2,2]],[[0,2,0,1],[3,2,2,1],[2,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[3,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[2,4,2,1],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,2,1],[2,1,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,2,3],[0,1,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,2,2],[0,1,3,1]],[[0,2,0,1],[2,2,2,1],[2,3,2,2],[0,1,2,2]],[[0,2,0,1],[3,2,2,1],[2,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,2,2,1],[3,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,2,2],[0,2,3,0]],[[0,2,0,1],[2,2,2,1],[2,3,2,3],[1,0,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,2,2],[1,0,3,1]],[[0,2,0,1],[2,2,2,1],[2,3,2,2],[1,0,2,2]],[[0,2,0,1],[3,2,2,1],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,2,2,1],[3,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,2,2,1],[2,4,2,2],[1,1,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,2,1],[1,2,3,0]],[[0,2,0,1],[3,2,2,1],[2,3,3,0],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[3,3,3,0],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,4,3,0],[0,2,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,0],[0,3,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,0],[0,2,3,1]],[[0,2,0,1],[3,2,2,1],[2,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[3,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[2,4,3,0],[1,1,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,0],[2,1,2,1]],[[0,2,0,1],[3,2,2,1],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,2,2,1],[3,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,2,2,1],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,4,1],[0,1,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,1],[0,1,3,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,1],[0,1,2,2]],[[0,2,0,1],[3,2,2,1],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,2,1],[3,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,2,1],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,2,1],[2,3,4,1],[0,2,1,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,1],[0,3,1,1]],[[0,2,0,1],[3,2,2,1],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,2,1],[3,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,2,1],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,4,1],[1,0,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,1],[2,0,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,1],[1,0,3,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,1],[1,0,2,2]],[[0,2,0,1],[3,2,2,1],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,2,1],[3,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,2,1],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,2,1],[2,3,4,1],[1,1,1,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,1],[2,1,1,1]],[[0,2,0,1],[3,2,2,1],[2,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,2,1],[3,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,2,1],[2,4,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,2,2,1],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,2,1],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[3,2,2,1],[1,2,2,0]],[[1,2,2,1],[2,1,0,3],[2,2,2,1],[1,2,2,0]],[[1,2,2,1],[3,1,0,2],[2,2,2,1],[1,2,2,0]],[[1,2,2,2],[2,1,0,2],[2,2,2,1],[1,2,2,0]],[[1,2,3,1],[2,1,0,2],[2,2,2,1],[1,2,2,0]],[[1,3,2,1],[2,1,0,2],[2,2,2,1],[1,2,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,4,2],[0,0,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,3],[0,0,2,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[0,0,2,2]],[[0,2,0,1],[3,2,2,1],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,2,1],[3,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,2,1],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,2,1],[2,3,4,2],[0,1,1,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,3],[0,1,1,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[0,1,1,2]],[[0,2,0,1],[3,2,2,1],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,2,1],[3,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,2,1],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,4,2],[0,1,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,3,3],[0,1,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[0,1,3,0]],[[0,2,0,1],[3,2,2,1],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,2,1],[3,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,2,1],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,2,1],[2,3,4,2],[0,2,0,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,3],[0,2,0,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[0,2,0,2]],[[0,2,0,1],[3,2,2,1],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,2,1],[3,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,2,1],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,2,1],[2,3,4,2],[0,2,1,0]],[[0,2,0,1],[2,2,2,1],[2,3,3,3],[0,2,1,0]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[0,3,1,0]],[[2,2,2,1],[2,1,0,2],[2,2,2,1],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,2,0],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[2,2,2,0],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[2,2,2,0],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[2,2,2,0],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[3,2,2,0],[1,2,2,1]],[[1,2,2,1],[2,1,0,3],[2,2,2,0],[1,2,2,1]],[[1,2,2,1],[3,1,0,2],[2,2,2,0],[1,2,2,1]],[[0,2,0,1],[3,2,2,1],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,2,1],[3,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,2,1],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,2,1],[2,3,4,2],[1,0,1,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,3],[1,0,1,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[2,0,1,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[1,0,1,2]],[[0,2,0,1],[3,2,2,1],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,2,1],[3,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,2,1],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,4,2],[1,0,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,3,3],[1,0,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[2,0,2,0]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[1,0,3,0]],[[0,2,0,1],[3,2,2,1],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,2,1],[3,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,2,1],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,2,1],[2,3,4,2],[1,1,0,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,3],[1,1,0,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[2,1,0,1]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[1,1,0,2]],[[0,2,0,1],[3,2,2,1],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,2,1],[3,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,2,1],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,2,1],[2,3,4,2],[1,1,1,0]],[[0,2,0,1],[2,2,2,1],[2,3,3,3],[1,1,1,0]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,2],[2,1,0,2],[2,2,2,0],[1,2,2,1]],[[1,2,3,1],[2,1,0,2],[2,2,2,0],[1,2,2,1]],[[1,3,2,1],[2,1,0,2],[2,2,2,0],[1,2,2,1]],[[2,2,2,1],[2,1,0,2],[2,2,2,0],[1,2,2,1]],[[0,2,0,1],[3,2,2,1],[2,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,2,2,1],[3,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,2,2,1],[2,4,3,2],[1,2,0,0]],[[0,2,0,1],[2,2,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,1,3],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[3,2,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,3],[2,2,1,2],[1,2,2,0]],[[1,2,2,1],[3,1,0,2],[2,2,1,2],[1,2,2,0]],[[1,2,2,2],[2,1,0,2],[2,2,1,2],[1,2,2,0]],[[1,2,3,1],[2,1,0,2],[2,2,1,2],[1,2,2,0]],[[1,3,2,1],[2,1,0,2],[2,2,1,2],[1,2,2,0]],[[2,2,2,1],[2,1,0,2],[2,2,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[1,2,1,2]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[1,3,1,1]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[2,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,2,1,3],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[3,2,1,2],[1,2,1,1]],[[1,2,2,1],[2,1,0,3],[2,2,1,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,3],[0,1,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,1,3,3],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,1,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[0,1,3,2],[1,2,2,2]],[[0,2,0,2],[2,2,2,2],[0,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,3],[0,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,2,2,3],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[0,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[0,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,2,2,2],[0,2,4,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[0,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[0,2,3,1],[1,2,2,2]],[[0,2,0,2],[2,2,2,2],[0,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,3],[0,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[0,2,4,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[0,2,3,3],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[0,2,3,2],[1,2,1,2]],[[0,2,0,2],[2,2,2,2],[0,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,3],[0,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[0,2,4,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[0,2,3,3],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[0,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,2,2],[0,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,2,2],[0,2,3,2],[1,2,3,0]],[[0,2,0,2],[2,2,2,2],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,3],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,4,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[0,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,2,2,2],[0,4,2,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[0,3,2,1],[1,2,2,2]],[[0,2,0,2],[2,2,2,2],[0,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,3],[0,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,2,3],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,2,2],[1,1,3,1]],[[0,2,0,1],[2,2,2,2],[0,3,2,2],[1,1,2,2]],[[0,2,0,1],[2,2,2,2],[0,4,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[0,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,2,2,2],[0,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,2,2,2],[0,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,2,2,2],[0,4,3,1],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,4,1],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,1],[1,1,3,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,1],[1,1,2,2]],[[0,2,0,1],[2,2,2,2],[0,4,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[0,3,4,1],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,1],[1,3,1,1]],[[0,2,0,2],[2,2,2,2],[0,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,2,2,3],[0,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,4,2],[1,0,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,3],[1,0,2,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,2],[1,0,2,2]],[[0,2,0,2],[2,2,2,2],[0,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,2,3],[0,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,2,2],[0,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,2,2],[0,3,4,2],[1,1,1,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,3],[1,1,1,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,2],[1,1,1,2]],[[0,2,0,2],[2,2,2,2],[0,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,2,3],[0,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,2,2],[0,4,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,2,2],[0,3,4,2],[1,1,2,0]],[[0,2,0,1],[2,2,2,2],[0,3,3,3],[1,1,2,0]],[[0,2,0,1],[2,2,2,2],[0,3,3,2],[1,1,3,0]],[[0,2,0,2],[2,2,2,2],[0,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,2,3],[0,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[0,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[0,3,4,2],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,3],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,2,2,2],[0,3,3,2],[1,2,0,2]],[[0,2,0,2],[2,2,2,2],[0,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,2,3],[0,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,2,2],[0,4,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,2,2],[0,3,4,2],[1,2,1,0]],[[0,2,0,1],[2,2,2,2],[0,3,3,3],[1,2,1,0]],[[0,2,0,1],[2,2,2,2],[0,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,1,0,2],[2,2,1,2],[1,2,1,1]],[[1,2,2,2],[2,1,0,2],[2,2,1,2],[1,2,1,1]],[[1,2,3,1],[2,1,0,2],[2,2,1,2],[1,2,1,1]],[[1,3,2,1],[2,1,0,2],[2,2,1,2],[1,2,1,1]],[[2,2,2,1],[2,1,0,2],[2,2,1,2],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[1,1,2,2]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[1,1,3,1]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[2,1,2,1]],[[1,2,2,1],[2,1,0,2],[2,2,1,3],[1,1,2,1]],[[0,2,0,1],[2,2,2,3],[1,1,3,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,1,3,3],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,1,3,2],[0,2,3,1]],[[0,2,0,1],[2,2,2,2],[1,1,3,2],[0,2,2,2]],[[0,2,0,2],[2,2,2,2],[1,2,2,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,3],[1,2,2,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,2,2,3],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,2,2,2],[0,3,2,1]],[[0,2,0,1],[2,2,2,2],[1,2,2,2],[0,2,3,1]],[[0,2,0,1],[2,2,2,2],[1,2,2,2],[0,2,2,2]],[[0,2,0,1],[2,2,2,2],[1,2,4,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,2,3,0],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,2,3,0],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[1,2,3,0],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[1,2,3,0],[1,2,2,2]],[[0,2,0,1],[2,2,2,2],[1,2,4,1],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,2,3,1],[0,3,2,1]],[[0,2,0,1],[2,2,2,2],[1,2,3,1],[0,2,3,1]],[[0,2,0,1],[2,2,2,2],[1,2,3,1],[0,2,2,2]],[[0,2,0,1],[2,2,2,2],[1,2,4,1],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[1,2,3,1],[2,2,2,0]],[[0,2,0,1],[2,2,2,2],[1,2,3,1],[1,3,2,0]],[[0,2,0,1],[2,2,2,2],[1,2,3,1],[1,2,3,0]],[[0,2,0,2],[2,2,2,2],[1,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,2,2,3],[1,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,2,2,2],[1,2,4,2],[0,2,1,1]],[[0,2,0,1],[2,2,2,2],[1,2,3,3],[0,2,1,1]],[[0,2,0,1],[2,2,2,2],[1,2,3,2],[0,2,1,2]],[[0,2,0,2],[2,2,2,2],[1,2,3,2],[0,2,2,0]],[[0,2,0,1],[2,2,2,3],[1,2,3,2],[0,2,2,0]],[[0,2,0,1],[2,2,2,2],[1,2,4,2],[0,2,2,0]],[[0,2,0,1],[2,2,2,2],[1,2,3,3],[0,2,2,0]],[[0,2,0,1],[2,2,2,2],[1,2,3,2],[0,3,2,0]],[[0,2,0,1],[2,2,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,0,2],[3,2,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,0,3],[2,2,1,2],[1,1,2,1]],[[1,2,2,1],[3,1,0,2],[2,2,1,2],[1,1,2,1]],[[1,2,2,2],[2,1,0,2],[2,2,1,2],[1,1,2,1]],[[1,2,3,1],[2,1,0,2],[2,2,1,2],[1,1,2,1]],[[1,3,2,1],[2,1,0,2],[2,2,1,2],[1,1,2,1]],[[2,2,2,1],[2,1,0,2],[2,2,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[0,2,2,2]],[[0,2,0,2],[2,2,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,3],[1,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,4,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,0,3],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,0,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,0,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,0,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[1,3,0,2],[1,2,2,2]],[[0,2,0,2],[2,2,2,2],[1,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,3],[1,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,4,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,1,3],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,1,2],[0,3,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,1,2],[0,2,3,1]],[[0,2,0,1],[2,2,2,2],[1,3,1,2],[0,2,2,2]],[[0,2,0,1],[2,2,2,2],[1,4,2,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,0],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,0],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,0],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,0],[1,2,2,2]],[[0,2,0,1],[2,2,2,2],[1,4,2,1],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,1],[0,3,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,1],[0,2,3,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,1],[0,2,2,2]],[[0,2,0,1],[2,2,2,2],[1,4,2,1],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,2,1],[2,2,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,2,1],[1,3,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,2,1],[1,2,3,0]],[[0,2,0,2],[2,2,2,2],[1,3,2,2],[0,1,2,1]],[[0,2,0,1],[2,2,2,3],[1,3,2,2],[0,1,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,3],[0,1,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,2],[0,1,3,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,2],[0,1,2,2]],[[0,2,0,1],[2,2,2,2],[1,4,2,2],[0,2,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,2,2],[0,3,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,2,2],[0,2,3,0]],[[0,2,0,2],[2,2,2,2],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[2,2,2,3],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,3],[1,0,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,2],[1,0,3,1]],[[0,2,0,1],[2,2,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[0,2,3,1]],[[1,2,2,1],[2,1,0,2],[2,2,1,2],[0,3,2,1]],[[1,2,2,1],[2,1,0,2],[2,2,1,3],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[3,2,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,0,3],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[3,1,0,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[2,1,0,2],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[2,1,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[1,4,3,0],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,4,0],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,0],[1,1,3,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,0],[1,1,2,2]],[[0,2,0,1],[2,2,2,2],[1,4,3,0],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[1,3,4,0],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,0],[2,2,1,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,0],[1,3,1,1]],[[0,2,0,1],[2,2,2,2],[1,4,3,1],[0,1,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,4,1],[0,1,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,1],[0,1,3,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,1],[0,1,2,2]],[[0,2,0,1],[2,2,2,2],[1,4,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,2,2],[1,3,4,1],[0,2,1,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,1],[0,3,1,1]],[[0,2,0,1],[2,2,2,2],[1,4,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,4,1],[1,0,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,1],[1,0,3,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,1],[1,0,2,2]],[[0,2,0,1],[2,2,2,2],[1,4,3,1],[1,1,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,4,1],[1,1,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,3,1],[1,1,3,0]],[[0,2,0,1],[2,2,2,2],[1,4,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[1,3,4,1],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,1],[2,2,0,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,1],[1,3,0,1]],[[0,2,0,1],[2,2,2,2],[1,4,3,1],[1,2,1,0]],[[0,2,0,1],[2,2,2,2],[1,3,4,1],[1,2,1,0]],[[0,2,0,1],[2,2,2,2],[1,3,3,1],[2,2,1,0]],[[0,2,0,1],[2,2,2,2],[1,3,3,1],[1,3,1,0]],[[1,3,2,1],[2,1,0,2],[2,2,1,2],[0,2,2,1]],[[2,2,2,1],[2,1,0,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[2,2,1,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[2,2,1,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[2,2,1,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[2,2,1,1],[2,2,2,1]],[[0,2,0,2],[2,2,2,2],[1,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,2,2,3],[1,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,4,2],[0,0,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,3],[0,0,2,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,2],[0,0,2,2]],[[0,2,0,2],[2,2,2,2],[1,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,2,3],[1,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,2,2],[1,4,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,2,2],[1,3,4,2],[0,1,1,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,3],[0,1,1,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,2],[0,1,1,2]],[[0,2,0,2],[2,2,2,2],[1,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,2,3],[1,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,2,2],[1,4,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,4,2],[0,1,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,3,3],[0,1,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,3,2],[0,1,3,0]],[[0,2,0,2],[2,2,2,2],[1,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,2,3],[1,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,2,2],[1,4,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,2,2],[1,3,4,2],[0,2,0,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,3],[0,2,0,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,2],[0,3,0,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,2],[0,2,0,2]],[[0,2,0,2],[2,2,2,2],[1,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,2,3],[1,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,2,2],[1,4,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,2,2],[1,3,4,2],[0,2,1,0]],[[0,2,0,1],[2,2,2,2],[1,3,3,3],[0,2,1,0]],[[0,2,0,1],[2,2,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,1,0,2],[3,2,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,3],[2,2,1,1],[1,2,2,1]],[[1,2,2,1],[3,1,0,2],[2,2,1,1],[1,2,2,1]],[[1,2,2,2],[2,1,0,2],[2,2,1,1],[1,2,2,1]],[[1,2,3,1],[2,1,0,2],[2,2,1,1],[1,2,2,1]],[[1,3,2,1],[2,1,0,2],[2,2,1,1],[1,2,2,1]],[[2,2,2,1],[2,1,0,2],[2,2,1,1],[1,2,2,1]],[[0,2,0,2],[2,2,2,2],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,2,3],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,2,2],[1,4,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,2,2],[1,3,4,2],[1,0,1,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,3],[1,0,1,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,2],[1,0,1,2]],[[0,2,0,2],[2,2,2,2],[1,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,2,3],[1,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,2,2],[1,4,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,4,2],[1,0,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,3,3],[1,0,2,0]],[[0,2,0,1],[2,2,2,2],[1,3,3,2],[1,0,3,0]],[[0,2,0,2],[2,2,2,2],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,2,3],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,2,2],[1,4,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,2,2],[1,3,4,2],[1,1,0,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,3],[1,1,0,1]],[[0,2,0,1],[2,2,2,2],[1,3,3,2],[1,1,0,2]],[[0,2,0,2],[2,2,2,2],[1,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,2,3],[1,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,2,2],[1,4,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,2,2],[1,3,4,2],[1,1,1,0]],[[0,2,0,1],[2,2,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[2,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,3],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,1,4,2],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[3,1,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,0,3],[2,1,3,2],[1,2,1,0]],[[1,2,2,1],[3,1,0,2],[2,1,3,2],[1,2,1,0]],[[1,2,2,2],[2,1,0,2],[2,1,3,2],[1,2,1,0]],[[1,2,3,1],[2,1,0,2],[2,1,3,2],[1,2,1,0]],[[0,2,0,2],[2,2,2,2],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[3,2,2,2],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,3],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[3,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,0,2,3],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,0,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,0,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[2,0,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[2,0,2,2],[1,2,2,2]],[[0,2,0,1],[3,2,2,2],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[3,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,0,4,1],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,0,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,0,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[2,0,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[2,0,3,1],[1,2,2,2]],[[0,2,0,2],[2,2,2,2],[2,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,3],[2,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[2,0,4,2],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[2,0,3,3],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[2,0,3,2],[1,2,1,2]],[[0,2,0,2],[2,2,2,2],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[3,2,2,2],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,3],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[3,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,0,4,2],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,0,3,3],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,0,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,0,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,2,2],[2,0,3,2],[1,2,3,0]],[[0,2,0,1],[3,2,2,2],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[3,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,1,4,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,1,3,0],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,1,3,0],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[2,1,3,0],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[2,1,3,0],[1,2,2,2]],[[0,2,0,1],[3,2,2,2],[2,1,3,1],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[3,1,3,1],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,1,4,1],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,1,3,1],[2,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,1,3,1],[1,3,2,0]],[[0,2,0,1],[2,2,2,2],[2,1,3,1],[1,2,3,0]],[[1,3,2,1],[2,1,0,2],[2,1,3,2],[1,2,1,0]],[[2,2,2,1],[2,1,0,2],[2,1,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[1,2,0,2]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[1,3,0,1]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[2,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,1,3,3],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,1,4,2],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[3,1,3,2],[1,2,0,1]],[[1,2,2,1],[2,1,0,3],[2,1,3,2],[1,2,0,1]],[[1,2,2,1],[3,1,0,2],[2,1,3,2],[1,2,0,1]],[[0,2,0,2],[2,2,2,2],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[3,2,2,2],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,3],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[3,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,2,0,3],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,2,0,2],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,2,0,2],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[2,2,0,2],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[2,2,0,2],[1,2,2,2]],[[0,2,0,1],[3,2,2,2],[2,2,2,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[3,2,2,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,2,2,0],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,2,2,0],[1,3,2,1]],[[0,2,0,1],[2,2,2,2],[2,2,2,0],[1,2,3,1]],[[0,2,0,1],[2,2,2,2],[2,2,2,0],[1,2,2,2]],[[0,2,0,1],[3,2,2,2],[2,2,2,1],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[3,2,2,1],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,2,2,1],[2,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,2,2,1],[1,3,2,0]],[[0,2,0,1],[2,2,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,2],[2,1,0,2],[2,1,3,2],[1,2,0,1]],[[1,2,3,1],[2,1,0,2],[2,1,3,2],[1,2,0,1]],[[1,3,2,1],[2,1,0,2],[2,1,3,2],[1,2,0,1]],[[2,2,2,1],[2,1,0,2],[2,1,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[2,2,4,0],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,2,3,0],[0,3,2,1]],[[0,2,0,1],[2,2,2,2],[2,2,3,0],[0,2,3,1]],[[0,2,0,1],[2,2,2,2],[2,2,3,0],[0,2,2,2]],[[0,2,0,1],[3,2,2,2],[2,2,3,0],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[3,2,3,0],[1,2,1,1]],[[0,2,0,1],[2,2,2,2],[2,2,3,0],[2,2,1,1]],[[0,2,0,1],[2,2,2,2],[2,2,3,0],[1,3,1,1]],[[0,2,0,1],[2,2,2,2],[2,2,4,1],[0,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,2,3,1],[0,3,2,0]],[[0,2,0,1],[2,2,2,2],[2,2,3,1],[0,2,3,0]],[[0,2,0,1],[3,2,2,2],[2,2,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[3,2,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[2,2,3,1],[2,2,0,1]],[[0,2,0,1],[2,2,2,2],[2,2,3,1],[1,3,0,1]],[[0,2,0,1],[3,2,2,2],[2,2,3,1],[1,2,1,0]],[[0,2,0,1],[2,2,2,2],[3,2,3,1],[1,2,1,0]],[[0,2,0,1],[2,2,2,2],[2,2,3,1],[2,2,1,0]],[[0,2,0,1],[2,2,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[1,1,3,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[2,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,3],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,4,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[3,1,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,3],[2,1,3,2],[1,1,2,0]],[[1,2,2,1],[3,1,0,2],[2,1,3,2],[1,1,2,0]],[[1,2,2,2],[2,1,0,2],[2,1,3,2],[1,1,2,0]],[[1,2,3,1],[2,1,0,2],[2,1,3,2],[1,1,2,0]],[[1,3,2,1],[2,1,0,2],[2,1,3,2],[1,1,2,0]],[[2,2,2,1],[2,1,0,2],[2,1,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[1,1,1,2]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[2,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,1,3,3],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,1,4,2],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[3,1,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,0,3],[2,1,3,2],[1,1,1,1]],[[1,2,2,1],[3,1,0,2],[2,1,3,2],[1,1,1,1]],[[1,2,2,2],[2,1,0,2],[2,1,3,2],[1,1,1,1]],[[1,2,3,1],[2,1,0,2],[2,1,3,2],[1,1,1,1]],[[1,3,2,1],[2,1,0,2],[2,1,3,2],[1,1,1,1]],[[2,2,2,1],[2,1,0,2],[2,1,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[0,2,3,0]],[[0,2,0,2],[2,2,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[3,2,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,3],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[3,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,4,0,2],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,0,3],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,0,2],[0,3,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,0,2],[0,2,3,1]],[[0,2,0,1],[2,2,2,2],[2,3,0,2],[0,2,2,2]],[[0,2,0,1],[3,2,2,2],[2,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[3,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[2,4,0,2],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,0,2],[2,1,2,1]],[[0,2,0,1],[3,2,2,2],[2,3,1,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[3,3,1,0],[1,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,1,0],[2,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,1,0],[1,3,2,1]],[[0,2,0,1],[3,2,2,2],[2,3,1,1],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[3,3,1,1],[1,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,3,1,1],[2,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[0,3,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,3],[0,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,4,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,2],[3,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,3],[2,1,3,2],[0,2,2,0]],[[1,2,2,1],[3,1,0,2],[2,1,3,2],[0,2,2,0]],[[1,2,2,2],[2,1,0,2],[2,1,3,2],[0,2,2,0]],[[1,2,3,1],[2,1,0,2],[2,1,3,2],[0,2,2,0]],[[1,3,2,1],[2,1,0,2],[2,1,3,2],[0,2,2,0]],[[2,2,2,1],[2,1,0,2],[2,1,3,2],[0,2,2,0]],[[0,2,0,1],[3,2,2,2],[2,3,2,0],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[3,3,2,0],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,4,2,0],[0,2,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,2,0],[0,3,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,2,0],[0,2,3,1]],[[0,2,0,1],[2,2,2,2],[2,3,2,0],[0,2,2,2]],[[0,2,0,1],[3,2,2,2],[2,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[3,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[2,4,2,0],[1,1,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,2,0],[2,1,2,1]],[[0,2,0,1],[3,2,2,2],[2,3,2,1],[0,2,2,0]],[[0,2,0,1],[2,2,2,2],[3,3,2,1],[0,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,4,2,1],[0,2,2,0]],[[0,2,0,1],[2,2,2,2],[2,3,2,1],[0,3,2,0]],[[0,2,0,1],[2,2,2,2],[2,3,2,1],[0,2,3,0]],[[0,2,0,1],[3,2,2,2],[2,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,2,2,2],[3,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,2,2,2],[2,4,2,1],[1,1,2,0]],[[0,2,0,1],[2,2,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,2],[0,2,1,2]],[[1,2,2,1],[2,1,0,2],[2,1,3,3],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,1,4,2],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[3,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,0,3],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[3,1,0,2],[2,1,3,2],[0,2,1,1]],[[1,2,2,2],[2,1,0,2],[2,1,3,2],[0,2,1,1]],[[1,2,3,1],[2,1,0,2],[2,1,3,2],[0,2,1,1]],[[1,3,2,1],[2,1,0,2],[2,1,3,2],[0,2,1,1]],[[2,2,2,1],[2,1,0,2],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,1],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,1],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,4,1],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[3,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,1,0,3],[2,1,3,1],[1,2,2,0]],[[1,2,2,1],[3,1,0,2],[2,1,3,1],[1,2,2,0]],[[1,2,2,2],[2,1,0,2],[2,1,3,1],[1,2,2,0]],[[1,2,3,1],[2,1,0,2],[2,1,3,1],[1,2,2,0]],[[1,3,2,1],[2,1,0,2],[2,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,1,0,2],[2,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,3,1],[1,1,2,2]],[[1,2,2,1],[2,1,0,2],[2,1,3,1],[1,1,3,1]],[[1,2,2,1],[2,1,0,2],[2,1,4,1],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[2,1,3,1],[0,2,2,2]],[[1,2,2,1],[2,1,0,2],[2,1,3,1],[0,2,3,1]],[[1,2,2,1],[2,1,0,2],[2,1,3,1],[0,3,2,1]],[[1,2,2,1],[2,1,0,2],[2,1,4,1],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[2,1,3,0],[1,2,2,2]],[[0,2,0,1],[3,2,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,2,2,2],[3,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,2,2,2],[2,4,3,0],[0,1,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,4,0],[0,1,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,3,0],[0,1,3,1]],[[0,2,0,1],[2,2,2,2],[2,3,3,0],[0,1,2,2]],[[0,2,0,1],[3,2,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,2,2,2],[3,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,2,2,2],[2,4,3,0],[0,2,1,1]],[[0,2,0,1],[2,2,2,2],[2,3,4,0],[0,2,1,1]],[[0,2,0,1],[2,2,2,2],[2,3,3,0],[0,3,1,1]],[[0,2,0,1],[3,2,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,2,2,2],[3,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,2,2,2],[2,4,3,0],[1,0,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,4,0],[1,0,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,3,0],[2,0,2,1]],[[0,2,0,1],[2,2,2,2],[2,3,3,0],[1,0,3,1]],[[0,2,0,1],[2,2,2,2],[2,3,3,0],[1,0,2,2]],[[0,2,0,1],[3,2,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,2,2,2],[3,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,2,2,2],[2,4,3,0],[1,1,1,1]],[[0,2,0,1],[2,2,2,2],[2,3,4,0],[1,1,1,1]],[[0,2,0,1],[2,2,2,2],[2,3,3,0],[2,1,1,1]],[[0,2,0,1],[3,2,2,2],[2,3,3,0],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[3,3,3,0],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[2,4,3,0],[1,2,0,1]],[[0,2,0,1],[2,2,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,1,0,2],[2,1,3,0],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[2,1,3,0],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[2,1,3,0],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[2,1,4,0],[1,2,2,1]],[[1,2,2,1],[2,1,0,2],[3,1,3,0],[1,2,2,1]],[[1,2,2,1],[2,1,0,3],[2,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,1,0,2],[2,1,3,0],[1,2,2,1]],[[1,2,2,2],[2,1,0,2],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[3,2,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,2,2,2],[3,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,2,2,2],[2,4,3,1],[0,1,1,1]],[[0,2,0,1],[2,2,2,2],[2,3,4,1],[0,1,1,1]],[[0,2,0,1],[3,2,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,2,2,2],[3,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,2,2,2],[2,4,3,1],[0,1,2,0]],[[0,2,0,1],[2,2,2,2],[2,3,4,1],[0,1,2,0]],[[0,2,0,1],[2,2,2,2],[2,3,3,1],[0,1,3,0]],[[0,2,0,1],[3,2,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,2,2,2],[3,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,2,2,2],[2,4,3,1],[0,2,0,1]],[[0,2,0,1],[2,2,2,2],[2,3,4,1],[0,2,0,1]],[[0,2,0,1],[2,2,2,2],[2,3,3,1],[0,3,0,1]],[[0,2,0,1],[3,2,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,2,2,2],[3,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,2,2,2],[2,4,3,1],[0,2,1,0]],[[0,2,0,1],[2,2,2,2],[2,3,4,1],[0,2,1,0]],[[0,2,0,1],[2,2,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,3,1],[2,1,0,2],[2,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,1,0,2],[2,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,1,0,2],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[3,2,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,2,2,2],[3,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,2,2,2],[2,4,3,1],[1,0,1,1]],[[0,2,0,1],[2,2,2,2],[2,3,4,1],[1,0,1,1]],[[0,2,0,1],[2,2,2,2],[2,3,3,1],[2,0,1,1]],[[0,2,0,1],[3,2,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,2,2,2],[3,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,2,2,2],[2,4,3,1],[1,0,2,0]],[[0,2,0,1],[2,2,2,2],[2,3,4,1],[1,0,2,0]],[[0,2,0,1],[2,2,2,2],[2,3,3,1],[2,0,2,0]],[[0,2,0,1],[2,2,2,2],[2,3,3,1],[1,0,3,0]],[[0,2,0,1],[3,2,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,2,2,2],[3,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,2,2,2],[2,4,3,1],[1,1,0,1]],[[0,2,0,1],[2,2,2,2],[2,3,4,1],[1,1,0,1]],[[0,2,0,1],[2,2,2,2],[2,3,3,1],[2,1,0,1]],[[0,2,0,1],[3,2,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,2,2,2],[3,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,2,2,2],[2,4,3,1],[1,1,1,0]],[[0,2,0,1],[2,2,2,2],[2,3,4,1],[1,1,1,0]],[[0,2,0,1],[2,2,2,2],[2,3,3,1],[2,1,1,0]],[[0,2,0,1],[3,2,2,2],[2,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,2,2,2],[3,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,2,2,2],[2,4,3,1],[1,2,0,0]],[[0,2,0,1],[2,2,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,2,3],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[3,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,3],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[3,1,0,2],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[2,1,0,2],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,1,0,2],[2,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,1,0,2],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,1,0,2],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[1,2,1,2]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[1,3,1,1]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[2,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,1,2,3],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[3,1,2,2],[1,2,1,1]],[[1,2,2,1],[2,1,0,3],[2,1,2,2],[1,2,1,1]],[[1,2,2,1],[3,1,0,2],[2,1,2,2],[1,2,1,1]],[[1,2,2,2],[2,1,0,2],[2,1,2,2],[1,2,1,1]],[[1,2,3,1],[2,1,0,2],[2,1,2,2],[1,2,1,1]],[[1,3,2,1],[2,1,0,2],[2,1,2,2],[1,2,1,1]],[[2,2,2,1],[2,1,0,2],[2,1,2,2],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[1,1,2,2]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[1,1,3,1]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[2,1,2,1]],[[1,2,2,1],[2,1,0,2],[2,1,2,3],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[3,1,2,2],[1,1,2,1]],[[1,2,2,1],[2,1,0,3],[2,1,2,2],[1,1,2,1]],[[1,2,2,1],[3,1,0,2],[2,1,2,2],[1,1,2,1]],[[1,2,2,2],[2,1,0,2],[2,1,2,2],[1,1,2,1]],[[1,2,3,1],[2,1,0,2],[2,1,2,2],[1,1,2,1]],[[1,3,2,1],[2,1,0,2],[2,1,2,2],[1,1,2,1]],[[2,2,2,1],[2,1,0,2],[2,1,2,2],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[0,2,2,2]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[0,2,3,1]],[[1,2,2,1],[2,1,0,2],[2,1,2,2],[0,3,2,1]],[[1,2,2,1],[2,1,0,2],[2,1,2,3],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[3,1,2,2],[0,2,2,1]],[[1,2,2,1],[2,1,0,3],[2,1,2,2],[0,2,2,1]],[[1,2,2,1],[3,1,0,2],[2,1,2,2],[0,2,2,1]],[[1,2,2,2],[2,1,0,2],[2,1,2,2],[0,2,2,1]],[[1,2,3,1],[2,1,0,2],[2,1,2,2],[0,2,2,1]],[[1,3,2,1],[2,1,0,2],[2,1,2,2],[0,2,2,1]],[[2,2,2,1],[2,1,0,2],[2,1,2,2],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[2,1,2,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[2,1,2,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[2,1,2,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[2,1,2,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[3,1,2,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,3],[2,1,2,1],[1,2,2,1]],[[1,2,2,1],[3,1,0,2],[2,1,2,1],[1,2,2,1]],[[1,2,2,2],[2,1,0,2],[2,1,2,1],[1,2,2,1]],[[1,2,3,1],[2,1,0,2],[2,1,2,1],[1,2,2,1]],[[1,3,2,1],[2,1,0,2],[2,1,2,1],[1,2,2,1]],[[2,2,2,1],[2,1,0,2],[2,1,2,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,4,2],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[1,4,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,0,3],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[3,1,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,2,2],[2,1,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,3,1],[2,1,0,2],[1,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,1,0,2],[1,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,1,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,2],[1,1,0,2]],[[1,2,2,1],[2,1,0,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,1,0,2],[1,3,4,2],[1,1,0,1]],[[1,2,2,1],[2,1,0,2],[1,4,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,0,3],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,1,0,2],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,1,0,2],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,1,0,2],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,1,0,2],[1,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,1,0,2],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,2],[1,0,3,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[1,3,4,2],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[1,4,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,0,3],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[3,1,0,2],[1,3,3,2],[1,0,2,0]],[[1,2,2,2],[2,1,0,2],[1,3,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,0,2],[1,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,0,2],[1,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,0,2],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,2],[1,0,1,2]],[[1,2,2,1],[2,1,0,2],[1,3,3,3],[1,0,1,1]],[[1,2,2,1],[2,1,0,2],[1,3,4,2],[1,0,1,1]],[[1,2,2,1],[2,1,0,2],[1,4,3,2],[1,0,1,1]],[[1,2,2,1],[2,1,0,3],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[3,1,0,2],[1,3,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,0],[0,2,4,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,0],[0,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,0],[0,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,0],[0,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,0],[0,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,2,3,0],[0,4,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,0],[0,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,0],[0,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,0],[0,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,0],[0,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,2,3,0],[0,4,3,2],[1,1,2,1]],[[0,2,0,1],[2,2,3,0],[0,3,4,2],[1,1,2,1]],[[0,2,0,1],[2,2,3,0],[0,3,3,2],[1,1,3,1]],[[0,2,0,1],[2,2,3,0],[0,3,3,2],[1,1,2,2]],[[0,2,0,1],[2,2,3,0],[0,4,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,0],[0,3,4,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,0],[0,3,3,2],[2,2,1,1]],[[0,2,0,1],[2,2,3,0],[0,3,3,2],[1,3,1,1]],[[0,2,0,1],[2,2,3,0],[1,2,4,2],[0,2,2,1]],[[0,2,0,1],[2,2,3,0],[1,2,3,2],[0,3,2,1]],[[0,2,0,1],[2,2,3,0],[1,2,3,2],[0,2,3,1]],[[0,2,0,1],[2,2,3,0],[1,2,3,2],[0,2,2,2]],[[0,2,0,1],[2,2,3,0],[1,4,2,2],[0,2,2,1]],[[0,2,0,1],[2,2,3,0],[1,3,2,2],[0,3,2,1]],[[0,2,0,1],[2,2,3,0],[1,3,2,2],[0,2,3,1]],[[0,2,0,1],[2,2,3,0],[1,3,2,2],[0,2,2,2]],[[0,2,0,1],[2,2,3,0],[1,4,3,2],[0,1,2,1]],[[0,2,0,1],[2,2,3,0],[1,3,4,2],[0,1,2,1]],[[0,2,0,1],[2,2,3,0],[1,3,3,2],[0,1,3,1]],[[0,2,0,1],[2,2,3,0],[1,3,3,2],[0,1,2,2]],[[0,2,0,1],[2,2,3,0],[1,4,3,2],[0,2,1,1]],[[0,2,0,1],[2,2,3,0],[1,3,4,2],[0,2,1,1]],[[0,2,0,1],[2,2,3,0],[1,3,3,2],[0,3,1,1]],[[0,2,0,1],[2,2,3,0],[1,4,3,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,0],[1,3,4,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,0],[1,3,3,2],[1,0,3,1]],[[0,2,0,1],[2,2,3,0],[1,3,3,2],[1,0,2,2]],[[1,2,3,1],[2,1,0,2],[1,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,0,2],[1,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[3,2,3,0],[2,0,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,0],[3,0,3,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,0],[2,0,4,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,0],[2,0,3,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,0],[2,0,3,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,0],[2,0,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,4,2],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[1,4,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,0,3],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[3,1,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,2,2],[2,1,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,3,1],[2,1,0,2],[1,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,1,0,2],[1,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,1,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,2],[0,2,0,2]],[[1,2,2,1],[2,1,0,2],[1,3,3,2],[0,3,0,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,3],[0,2,0,1]],[[1,2,2,1],[2,1,0,2],[1,3,4,2],[0,2,0,1]],[[1,2,2,1],[2,1,0,2],[1,4,3,2],[0,2,0,1]],[[1,2,2,1],[2,1,0,3],[1,3,3,2],[0,2,0,1]],[[1,2,2,1],[3,1,0,2],[1,3,3,2],[0,2,0,1]],[[1,2,2,2],[2,1,0,2],[1,3,3,2],[0,2,0,1]],[[1,2,3,1],[2,1,0,2],[1,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,1,0,2],[1,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,1,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,1],[0,1,3,3],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,1,3,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,1],[0,1,3,2],[1,2,2,2]],[[0,2,0,1],[2,2,3,1],[0,2,2,3],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,1],[0,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,1],[0,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,2,4,1],[0,2,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,2,4,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,3,1],[0,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,3,1],[0,2,3,1],[1,2,2,2]],[[0,2,0,1],[2,2,4,1],[0,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[0,2,4,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[0,2,3,3],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[0,2,3,2],[1,2,1,2]],[[0,2,0,1],[2,2,4,1],[0,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[0,2,4,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[0,2,3,3],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[0,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,3,1],[0,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,3,1],[0,2,3,2],[1,2,3,0]],[[0,2,0,1],[2,2,3,1],[0,4,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,1],[0,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,2,3,1],[0,4,2,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,2,3,1],[0,3,2,1],[1,2,2,2]],[[0,2,0,1],[2,2,3,1],[0,3,2,3],[1,1,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,2,2],[1,1,3,1]],[[0,2,0,1],[2,2,3,1],[0,3,2,2],[1,1,2,2]],[[0,2,0,1],[2,2,3,1],[0,4,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[0,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,2,3,1],[0,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,2,3,1],[0,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,2,3,1],[0,4,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,0],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,0],[1,3,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,0],[1,2,3,1]],[[0,2,0,1],[2,2,4,1],[0,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,2,3,1],[0,4,3,1],[1,1,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,4,1],[1,1,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,1],[1,1,3,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,1],[1,1,2,2]],[[0,2,0,1],[2,2,4,1],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[0,4,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[0,3,4,1],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,2,4,1],[0,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,4,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,3],[1,0,2,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,2],[1,0,2,2]],[[0,2,0,1],[2,2,4,1],[0,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,3,1],[0,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,2,3,1],[0,3,4,2],[1,1,1,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,3],[1,1,1,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,2],[1,1,1,2]],[[0,2,0,1],[2,2,4,1],[0,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,3,1],[0,4,3,2],[1,1,2,0]],[[0,2,0,1],[2,2,3,1],[0,3,4,2],[1,1,2,0]],[[0,2,0,1],[2,2,3,1],[0,3,3,3],[1,1,2,0]],[[0,2,0,1],[2,2,3,1],[0,3,3,2],[1,1,3,0]],[[0,2,0,1],[2,2,4,1],[0,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,3,1],[0,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,2,3,1],[0,3,4,2],[1,2,0,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,3],[1,2,0,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,2,3,1],[0,3,3,2],[1,2,0,2]],[[0,2,0,1],[2,2,4,1],[0,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,3,1],[0,4,3,2],[1,2,1,0]],[[0,2,0,1],[2,2,3,1],[0,3,4,2],[1,2,1,0]],[[0,2,0,1],[2,2,3,1],[0,3,3,3],[1,2,1,0]],[[0,2,0,1],[2,2,3,1],[0,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,2,3,1],[0,3,3,2],[1,3,1,0]],[[0,2,0,1],[2,2,3,1],[1,1,3,3],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,1,3,2],[0,2,3,1]],[[0,2,0,1],[2,2,3,1],[1,1,3,2],[0,2,2,2]],[[0,2,0,1],[2,2,3,1],[1,2,2,3],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,2,2,2],[0,3,2,1]],[[0,2,0,1],[2,2,3,1],[1,2,2,2],[0,2,3,1]],[[0,2,0,1],[2,2,3,1],[1,2,2,2],[0,2,2,2]],[[0,2,0,1],[2,2,4,1],[1,2,3,1],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,2,4,1],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,2,3,1],[0,3,2,1]],[[0,2,0,1],[2,2,3,1],[1,2,3,1],[0,2,3,1]],[[0,2,0,1],[2,2,3,1],[1,2,3,1],[0,2,2,2]],[[0,2,0,1],[2,2,4,1],[1,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,2,3,1],[1,2,4,2],[0,2,1,1]],[[0,2,0,1],[2,2,3,1],[1,2,3,3],[0,2,1,1]],[[0,2,0,1],[2,2,3,1],[1,2,3,2],[0,2,1,2]],[[0,2,0,1],[2,2,4,1],[1,2,3,2],[0,2,2,0]],[[0,2,0,1],[2,2,3,1],[1,2,4,2],[0,2,2,0]],[[0,2,0,1],[2,2,3,1],[1,2,3,3],[0,2,2,0]],[[0,2,0,1],[2,2,3,1],[1,2,3,2],[0,3,2,0]],[[0,2,0,1],[2,2,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,2],[0,1,3,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,3],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[1,3,4,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[1,4,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,3],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[3,1,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,3,1],[1,4,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,0,3],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,0,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,0,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,0,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,1],[1,3,0,2],[1,2,2,2]],[[0,2,0,1],[2,2,3,1],[1,4,1,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,1,1],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,1,1],[1,3,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,1,1],[1,2,3,1]],[[0,2,0,1],[2,2,3,1],[1,3,1,1],[1,2,2,2]],[[0,2,0,1],[2,2,3,1],[1,4,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,1,3],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,1,2],[0,3,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,1,2],[0,2,3,1]],[[0,2,0,1],[2,2,3,1],[1,3,1,2],[0,2,2,2]],[[0,2,0,1],[2,2,3,1],[1,4,1,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[1,3,1,2],[2,2,2,0]],[[0,2,0,1],[2,2,3,1],[1,3,1,2],[1,3,2,0]],[[0,2,0,1],[2,2,3,1],[1,3,1,2],[1,2,3,0]],[[0,2,0,1],[2,2,3,1],[1,4,2,1],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,1],[0,3,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,1],[0,2,3,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,1],[0,2,2,2]],[[0,2,0,1],[2,2,3,1],[1,4,2,1],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,1],[2,2,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,1],[1,3,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,3],[0,1,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,2],[0,1,3,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,2],[0,1,2,2]],[[0,2,0,1],[2,2,3,1],[1,4,2,2],[0,2,2,0]],[[0,2,0,1],[2,2,3,1],[1,3,2,2],[0,3,2,0]],[[0,2,0,1],[2,2,3,1],[1,3,2,2],[0,2,3,0]],[[0,2,0,1],[2,2,3,1],[1,3,2,3],[1,0,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,2],[1,0,3,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,2],[1,0,2,2]],[[0,2,0,1],[2,2,3,1],[1,4,2,2],[1,2,0,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,2],[2,2,0,1]],[[0,2,0,1],[2,2,3,1],[1,3,2,2],[1,3,0,1]],[[0,2,0,1],[2,2,3,1],[1,4,2,2],[1,2,1,0]],[[0,2,0,1],[2,2,3,1],[1,3,2,2],[2,2,1,0]],[[0,2,0,1],[2,2,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,2],[2,1,0,2],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,0,2],[1,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,0,2],[1,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,0,2],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,2],[0,1,1,2]],[[1,2,2,1],[2,1,0,2],[1,3,3,3],[0,1,1,1]],[[0,2,0,1],[2,2,3,1],[1,4,3,0],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,0],[0,3,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,0],[0,2,3,1]],[[0,2,0,1],[2,2,4,1],[1,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,2,3,1],[1,4,3,1],[0,1,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,4,1],[0,1,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,1],[0,1,3,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,1],[0,1,2,2]],[[0,2,0,1],[2,2,4,1],[1,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,3,1],[1,4,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,4,1],[0,2,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,1],[0,3,1,1]],[[0,2,0,1],[2,2,4,1],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,3,1],[1,4,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,4,1],[1,0,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,1],[1,0,3,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,1],[1,0,2,2]],[[0,2,0,1],[2,2,4,1],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,3,1],[1,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[1,3,4,2],[0,1,1,1]],[[1,2,2,1],[2,1,0,2],[1,4,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,0,3],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[3,1,0,2],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,0,2],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,0,2],[1,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,4,1],[1,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,4,2],[0,0,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,3],[0,0,2,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,2],[0,0,2,2]],[[0,2,0,1],[2,2,4,1],[1,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,3,1],[1,4,3,2],[0,1,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,4,2],[0,1,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,3],[0,1,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,2],[0,1,1,2]],[[0,2,0,1],[2,2,4,1],[1,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,3,1],[1,4,3,2],[0,1,2,0]],[[0,2,0,1],[2,2,3,1],[1,3,4,2],[0,1,2,0]],[[0,2,0,1],[2,2,3,1],[1,3,3,3],[0,1,2,0]],[[0,2,0,1],[2,2,3,1],[1,3,3,2],[0,1,3,0]],[[0,2,0,1],[2,2,4,1],[1,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,1],[1,4,3,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,1],[1,3,4,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,3],[0,2,0,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,2],[0,3,0,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,2],[0,2,0,2]],[[0,2,0,1],[2,2,4,1],[1,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,3,1],[1,4,3,2],[0,2,1,0]],[[0,2,0,1],[2,2,3,1],[1,3,4,2],[0,2,1,0]],[[0,2,0,1],[2,2,3,1],[1,3,3,3],[0,2,1,0]],[[0,2,0,1],[2,2,3,1],[1,3,3,2],[0,3,1,0]],[[2,2,2,1],[2,1,0,2],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,2],[0,0,2,2]],[[1,2,2,1],[2,1,0,2],[1,3,3,3],[0,0,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,4,2],[0,0,2,1]],[[1,2,2,1],[2,1,0,3],[1,3,3,2],[0,0,2,1]],[[1,2,2,1],[3,1,0,2],[1,3,3,2],[0,0,2,1]],[[1,2,2,2],[2,1,0,2],[1,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,2,4,1],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,1],[1,4,3,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,4,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,3],[1,0,1,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,2],[1,0,1,2]],[[0,2,0,1],[2,2,4,1],[1,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,3,1],[1,4,3,2],[1,0,2,0]],[[0,2,0,1],[2,2,3,1],[1,3,4,2],[1,0,2,0]],[[0,2,0,1],[2,2,3,1],[1,3,3,3],[1,0,2,0]],[[0,2,0,1],[2,2,3,1],[1,3,3,2],[1,0,3,0]],[[0,2,0,1],[2,2,4,1],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,1],[1,4,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,1],[1,3,4,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,3],[1,1,0,1]],[[0,2,0,1],[2,2,3,1],[1,3,3,2],[1,1,0,2]],[[0,2,0,1],[2,2,4,1],[1,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,3,1],[1,4,3,2],[1,1,1,0]],[[0,2,0,1],[2,2,3,1],[1,3,4,2],[1,1,1,0]],[[0,2,0,1],[2,2,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,3,1],[2,1,0,2],[1,3,3,2],[0,0,2,1]],[[1,3,2,1],[2,1,0,2],[1,3,3,2],[0,0,2,1]],[[2,2,2,1],[2,1,0,2],[1,3,3,2],[0,0,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,1],[2,2,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,4,1],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[1,4,3,1],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,1],[1,3,0,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,0,2],[1,3,4,1],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,1],[1,1,3,0]],[[1,2,2,1],[2,1,0,2],[1,3,4,1],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[1,4,3,1],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,1],[1,0,2,2]],[[0,2,0,1],[3,2,3,1],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[3,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,0,2,3],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,0,2,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,0,2,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,1],[2,0,2,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,1],[2,0,2,2],[1,2,2,2]],[[0,2,0,1],[3,2,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,4,1],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[3,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,0,4,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,0,3,1],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,0,3,1],[1,3,2,1]],[[0,2,0,1],[2,2,3,1],[2,0,3,1],[1,2,3,1]],[[0,2,0,1],[2,2,3,1],[2,0,3,1],[1,2,2,2]],[[0,2,0,1],[2,2,4,1],[2,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[2,0,4,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[2,0,3,3],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[2,0,3,2],[1,2,1,2]],[[0,2,0,1],[3,2,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,4,1],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[3,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[2,0,4,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[2,0,3,3],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[2,0,3,2],[2,2,2,0]],[[0,2,0,1],[2,2,3,1],[2,0,3,2],[1,3,2,0]],[[0,2,0,1],[2,2,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,2],[1,3,3,1],[1,0,3,1]],[[1,2,2,1],[2,1,0,2],[1,3,4,1],[1,0,2,1]],[[1,2,2,1],[2,1,0,2],[1,4,3,1],[1,0,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,1],[0,3,1,1]],[[0,2,0,1],[3,2,3,1],[2,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[3,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,2,0,3],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,2,0,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,2,0,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,1],[2,2,0,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,1],[2,2,0,2],[1,2,2,2]],[[0,2,0,1],[3,2,3,1],[2,2,1,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[3,2,1,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,2,1,1],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,2,1,1],[1,3,2,1]],[[0,2,0,1],[2,2,3,1],[2,2,1,1],[1,2,3,1]],[[0,2,0,1],[2,2,3,1],[2,2,1,1],[1,2,2,2]],[[0,2,0,1],[3,2,3,1],[2,2,1,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[3,2,1,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[2,2,1,2],[2,2,2,0]],[[0,2,0,1],[2,2,3,1],[2,2,1,2],[1,3,2,0]],[[0,2,0,1],[2,2,3,1],[2,2,1,2],[1,2,3,0]],[[0,2,0,1],[3,2,3,1],[2,2,2,1],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[3,2,2,1],[1,2,1,1]],[[0,2,0,1],[2,2,3,1],[2,2,2,1],[2,2,1,1]],[[0,2,0,1],[2,2,3,1],[2,2,2,1],[1,3,1,1]],[[0,2,0,1],[3,2,3,1],[2,2,2,2],[1,2,0,1]],[[0,2,0,1],[2,2,3,1],[3,2,2,2],[1,2,0,1]],[[0,2,0,1],[2,2,3,1],[2,2,2,2],[2,2,0,1]],[[0,2,0,1],[2,2,3,1],[2,2,2,2],[1,3,0,1]],[[0,2,0,1],[3,2,3,1],[2,2,2,2],[1,2,1,0]],[[0,2,0,1],[2,2,3,1],[3,2,2,2],[1,2,1,0]],[[0,2,0,1],[2,2,3,1],[2,2,2,2],[2,2,1,0]],[[0,2,0,1],[2,2,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,4,1],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[1,4,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,1],[0,1,2,2]],[[1,2,2,1],[2,1,0,2],[1,3,3,1],[0,1,3,1]],[[1,2,2,1],[2,1,0,2],[1,3,4,1],[0,1,2,1]],[[1,2,2,1],[2,1,0,2],[1,4,3,1],[0,1,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,0],[1,3,1,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,0],[2,2,1,1]],[[1,2,2,1],[2,1,0,2],[1,3,4,0],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[1,4,3,0],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[1,3,3,0],[1,1,2,2]],[[1,2,2,1],[2,1,0,2],[1,3,3,0],[1,1,3,1]],[[1,2,2,1],[2,1,0,2],[1,3,4,0],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[1,4,3,0],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,2,2],[2,2,1,0]],[[1,2,2,1],[2,1,0,2],[1,4,2,2],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,2,2],[1,3,0,1]],[[1,2,2,1],[2,1,0,2],[1,3,2,2],[2,2,0,1]],[[1,2,2,1],[2,1,0,2],[1,4,2,2],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,0,2],[1,3,2,2],[1,0,3,1]],[[1,2,2,1],[2,1,0,2],[1,3,2,3],[1,0,2,1]],[[1,2,2,1],[2,1,0,3],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[3,2,3,1],[2,3,0,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[3,3,0,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,3,0,1],[2,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,3,0,1],[1,3,2,1]],[[0,2,0,1],[3,2,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[3,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,4,0,2],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,3,0,3],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,3,0,2],[0,3,2,1]],[[0,2,0,1],[2,2,3,1],[2,3,0,2],[0,2,3,1]],[[0,2,0,1],[2,2,3,1],[2,3,0,2],[0,2,2,2]],[[0,2,0,1],[3,2,3,1],[2,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,2,3,1],[3,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,2,3,1],[2,4,0,2],[1,1,2,1]],[[0,2,0,1],[2,2,3,1],[2,3,0,2],[2,1,2,1]],[[0,2,0,1],[3,2,3,1],[2,3,0,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[3,3,0,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,1],[2,3,0,2],[2,2,2,0]],[[0,2,0,1],[2,2,3,1],[2,3,0,2],[1,3,2,0]],[[0,2,0,1],[3,2,3,1],[2,3,1,1],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[3,3,1,1],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,4,1,1],[0,2,2,1]],[[0,2,0,1],[2,2,3,1],[2,3,1,1],[0,3,2,1]],[[0,2,0,1],[2,2,3,1],[2,3,1,1],[0,2,3,1]],[[0,2,0,1],[2,2,3,1],[2,3,1,1],[0,2,2,2]],[[0,2,0,1],[3,2,3,1],[2,3,1,1],[1,1,2,1]],[[0,2,0,1],[2,2,3,1],[3,3,1,1],[1,1,2,1]],[[0,2,0,1],[2,2,3,1],[2,4,1,1],[1,1,2,1]],[[0,2,0,1],[2,2,3,1],[2,3,1,1],[2,1,2,1]],[[0,2,0,1],[3,2,3,1],[2,3,1,2],[0,2,2,0]],[[0,2,0,1],[2,2,3,1],[3,3,1,2],[0,2,2,0]],[[0,2,0,1],[2,2,3,1],[2,4,1,2],[0,2,2,0]],[[0,2,0,1],[2,2,3,1],[2,3,1,2],[0,3,2,0]],[[0,2,0,1],[2,2,3,1],[2,3,1,2],[0,2,3,0]],[[0,2,0,1],[3,2,3,1],[2,3,1,2],[1,1,2,0]],[[0,2,0,1],[2,2,3,1],[3,3,1,2],[1,1,2,0]],[[0,2,0,1],[2,2,3,1],[2,4,1,2],[1,1,2,0]],[[0,2,0,1],[2,2,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[3,1,0,2],[1,3,2,2],[1,0,2,1]],[[1,2,2,2],[2,1,0,2],[1,3,2,2],[1,0,2,1]],[[1,2,3,1],[2,1,0,2],[1,3,2,2],[1,0,2,1]],[[1,3,2,1],[2,1,0,2],[1,3,2,2],[1,0,2,1]],[[2,2,2,1],[2,1,0,2],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,1],[0,1,2,1]],[[0,2,0,1],[2,2,3,1],[3,3,2,1],[0,1,2,1]],[[0,2,0,1],[2,2,3,1],[2,4,2,1],[0,1,2,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,1],[0,2,1,1]],[[0,2,0,1],[2,2,3,1],[3,3,2,1],[0,2,1,1]],[[0,2,0,1],[2,2,3,1],[2,4,2,1],[0,2,1,1]],[[0,2,0,1],[2,2,3,1],[2,3,2,1],[0,3,1,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,1],[1,0,2,1]],[[0,2,0,1],[2,2,3,1],[3,3,2,1],[1,0,2,1]],[[0,2,0,1],[2,2,3,1],[2,4,2,1],[1,0,2,1]],[[0,2,0,1],[2,2,3,1],[2,3,2,1],[2,0,2,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,1],[1,1,1,1]],[[0,2,0,1],[2,2,3,1],[3,3,2,1],[1,1,1,1]],[[0,2,0,1],[2,2,3,1],[2,4,2,1],[1,1,1,1]],[[0,2,0,1],[2,2,3,1],[2,3,2,1],[2,1,1,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,1],[1,2,0,1]],[[0,2,0,1],[2,2,3,1],[3,3,2,1],[1,2,0,1]],[[0,2,0,1],[2,2,3,1],[2,4,2,1],[1,2,0,1]],[[0,2,0,1],[2,2,3,1],[2,3,2,1],[2,2,0,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,2,3,1],[3,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,2,3,1],[2,4,2,2],[0,1,1,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,2,3,1],[3,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,2,3,1],[2,4,2,2],[0,1,2,0]],[[0,2,0,1],[3,2,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,1],[3,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,1],[2,4,2,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,1],[2,3,2,2],[0,3,0,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,2,3,1],[3,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,2,3,1],[2,4,2,2],[0,2,1,0]],[[0,2,0,1],[2,2,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,2,1],[2,1,0,2],[1,3,2,2],[0,2,3,0]],[[1,2,2,1],[2,1,0,2],[1,3,2,2],[0,3,2,0]],[[1,2,2,1],[2,1,0,2],[1,4,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,3,2,2],[0,1,2,2]],[[1,2,2,1],[2,1,0,2],[1,3,2,2],[0,1,3,1]],[[1,2,2,1],[2,1,0,2],[1,3,2,3],[0,1,2,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,1],[3,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,1],[2,4,2,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,1],[2,3,2,2],[2,0,1,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,2,3,1],[3,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,2,3,1],[2,4,2,2],[1,0,2,0]],[[0,2,0,1],[2,2,3,1],[2,3,2,2],[2,0,2,0]],[[0,2,0,1],[3,2,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,1],[3,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,1],[2,4,2,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,1],[2,3,2,2],[2,1,0,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,0,1],[2,2,3,1],[3,3,2,2],[1,1,1,0]],[[0,2,0,1],[2,2,3,1],[2,4,2,2],[1,1,1,0]],[[0,2,0,1],[2,2,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,2,1],[2,1,0,3],[1,3,2,2],[0,1,2,1]],[[1,2,2,1],[3,1,0,2],[1,3,2,2],[0,1,2,1]],[[1,2,2,2],[2,1,0,2],[1,3,2,2],[0,1,2,1]],[[1,2,3,1],[2,1,0,2],[1,3,2,2],[0,1,2,1]],[[1,3,2,1],[2,1,0,2],[1,3,2,2],[0,1,2,1]],[[2,2,2,1],[2,1,0,2],[1,3,2,2],[0,1,2,1]],[[0,2,0,1],[3,2,3,1],[2,3,2,2],[1,2,0,0]],[[0,2,0,1],[2,2,3,1],[3,3,2,2],[1,2,0,0]],[[0,2,0,1],[2,2,3,1],[2,4,2,2],[1,2,0,0]],[[0,2,0,1],[2,2,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[2,1,0,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[2,1,0,2],[1,3,2,1],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[1,3,2,1],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,4,2,1],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,3,2,1],[0,2,2,2]],[[1,2,2,1],[2,1,0,2],[1,3,2,1],[0,2,3,1]],[[1,2,2,1],[2,1,0,2],[1,3,2,1],[0,3,2,1]],[[1,2,2,1],[2,1,0,2],[1,4,2,1],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,2,0],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[1,3,2,0],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[1,3,2,0],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,2,0],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,4,2,0],[1,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,1,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,2],[1,3,1,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[1,3,1,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,4,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,3,1,2],[1,3,1,1]],[[1,2,2,1],[2,1,0,2],[1,3,1,2],[2,2,1,1]],[[1,2,2,1],[2,1,0,2],[1,4,1,2],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[1,3,1,2],[0,2,2,2]],[[1,2,2,1],[2,1,0,2],[1,3,1,2],[0,2,3,1]],[[1,2,2,1],[2,1,0,2],[1,3,1,2],[0,3,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,1,3],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,4,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,0,3],[1,3,1,2],[0,2,2,1]],[[1,2,2,1],[3,1,0,2],[1,3,1,2],[0,2,2,1]],[[1,2,2,2],[2,1,0,2],[1,3,1,2],[0,2,2,1]],[[1,2,3,1],[2,1,0,2],[1,3,1,2],[0,2,2,1]],[[1,3,2,1],[2,1,0,2],[1,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,1,0,2],[1,3,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,1,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[1,3,1,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[1,3,1,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[1,3,1,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,4,1,1],[1,2,2,1]],[[0,2,0,1],[3,2,3,1],[2,3,3,2],[0,2,0,0]],[[0,2,0,1],[2,2,3,1],[3,3,3,2],[0,2,0,0]],[[0,2,0,1],[2,2,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[2,1,0,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,0,2],[1,2,3,2],[0,3,2,0]],[[1,2,2,1],[2,1,0,2],[1,2,3,3],[0,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,2,4,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,3],[1,2,3,2],[0,2,2,0]],[[1,2,2,1],[3,1,0,2],[1,2,3,2],[0,2,2,0]],[[1,2,2,2],[2,1,0,2],[1,2,3,2],[0,2,2,0]],[[1,2,3,1],[2,1,0,2],[1,2,3,2],[0,2,2,0]],[[1,3,2,1],[2,1,0,2],[1,2,3,2],[0,2,2,0]],[[2,2,2,1],[2,1,0,2],[1,2,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,2,3,2],[0,2,1,2]],[[1,2,2,1],[2,1,0,2],[1,2,3,3],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[1,2,4,2],[0,2,1,1]],[[1,2,2,1],[2,1,0,3],[1,2,3,2],[0,2,1,1]],[[1,2,2,1],[3,1,0,2],[1,2,3,2],[0,2,1,1]],[[1,2,2,2],[2,1,0,2],[1,2,3,2],[0,2,1,1]],[[0,2,0,1],[3,2,3,1],[2,3,3,2],[1,1,0,0]],[[0,2,0,1],[2,2,3,1],[3,3,3,2],[1,1,0,0]],[[0,2,0,1],[2,2,3,1],[2,4,3,2],[1,1,0,0]],[[0,2,0,1],[2,2,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,3,1],[2,1,0,2],[1,2,3,2],[0,2,1,1]],[[1,3,2,1],[2,1,0,2],[1,2,3,2],[0,2,1,1]],[[2,2,2,1],[2,1,0,2],[1,2,3,2],[0,2,1,1]],[[1,2,2,1],[2,1,0,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,0,2],[1,2,3,1],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[1,2,3,1],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,2,4,1],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,2,3,1],[0,2,2,2]],[[1,2,2,1],[2,1,0,2],[1,2,3,1],[0,2,3,1]],[[1,2,2,1],[2,1,0,2],[1,2,3,1],[0,3,2,1]],[[1,2,2,1],[2,1,0,2],[1,2,4,1],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,2,3,0],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[1,2,3,0],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[1,2,3,0],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[1,2,3,0],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,2,4,0],[1,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,2,2,2],[0,2,2,2]],[[1,2,2,1],[2,1,0,2],[1,2,2,2],[0,2,3,1]],[[1,2,2,1],[2,1,0,2],[1,2,2,2],[0,3,2,1]],[[1,2,2,1],[2,1,0,2],[1,2,2,3],[0,2,2,1]],[[1,2,2,1],[2,1,0,3],[1,2,2,2],[0,2,2,1]],[[1,2,2,1],[3,1,0,2],[1,2,2,2],[0,2,2,1]],[[1,2,2,2],[2,1,0,2],[1,2,2,2],[0,2,2,1]],[[1,2,3,1],[2,1,0,2],[1,2,2,2],[0,2,2,1]],[[1,3,2,1],[2,1,0,2],[1,2,2,2],[0,2,2,1]],[[2,2,2,1],[2,1,0,2],[1,2,2,2],[0,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,2,1,2],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[1,2,1,2],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[1,2,1,2],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[1,2,1,2],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,2,1,3],[1,2,2,1]],[[1,2,2,1],[2,1,0,3],[1,2,1,2],[1,2,2,1]],[[1,2,2,1],[3,1,0,2],[1,2,1,2],[1,2,2,1]],[[1,2,2,2],[2,1,0,2],[1,2,1,2],[1,2,2,1]],[[1,2,3,1],[2,1,0,2],[1,2,1,2],[1,2,2,1]],[[1,3,2,1],[2,1,0,2],[1,2,1,2],[1,2,2,1]],[[2,2,2,1],[2,1,0,2],[1,2,1,2],[1,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,1,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,2],[1,1,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[1,1,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,1,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,1,4,2],[1,2,2,0]],[[0,2,0,2],[2,2,3,2],[0,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,4,2],[0,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,3],[0,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,2,1,3],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,2,1,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,2,1,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,2],[0,2,1,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,2],[0,2,1,2],[1,2,2,2]],[[0,2,0,2],[2,2,3,2],[0,2,2,2],[1,2,1,1]],[[0,2,0,1],[2,2,4,2],[0,2,2,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,3],[0,2,2,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[0,2,2,3],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[0,2,2,2],[1,2,1,2]],[[0,2,0,2],[2,2,3,2],[0,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,4,2],[0,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,3],[0,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[0,2,2,3],[1,2,2,0]],[[0,2,0,2],[2,2,3,2],[0,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,4,2],[0,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,3],[0,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,2,4,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,2,3,0],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,2,3,0],[1,3,2,1]],[[0,2,0,1],[2,2,3,2],[0,2,3,0],[1,2,3,1]],[[0,2,0,1],[2,2,3,2],[0,2,3,0],[1,2,2,2]],[[0,2,0,2],[2,2,3,2],[0,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,4,2],[0,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,3,3],[0,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[0,2,4,1],[1,2,1,1]],[[0,2,0,2],[2,2,3,2],[0,2,3,1],[1,2,2,0]],[[0,2,0,1],[2,2,4,2],[0,2,3,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,3],[0,2,3,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[0,2,4,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[0,2,3,1],[2,2,2,0]],[[0,2,0,1],[2,2,3,2],[0,2,3,1],[1,3,2,0]],[[0,2,0,1],[2,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,0,3],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[3,1,0,2],[1,1,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,0,2],[1,1,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,0,2],[1,1,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,0,2],[1,1,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,0,2],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[1,1,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,0,2],[1,1,3,3],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[1,1,4,2],[1,2,1,1]],[[0,2,0,2],[2,2,3,2],[0,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,4,2],[0,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,3],[0,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,4,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,0,3],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,0,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,0,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,0,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,2],[0,3,0,2],[1,2,2,2]],[[0,2,0,2],[2,2,3,2],[0,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,2,4,2],[0,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,2,3,3],[0,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,1,3],[1,1,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,1,2],[1,1,3,1]],[[0,2,0,1],[2,2,3,2],[0,3,1,2],[1,1,2,2]],[[0,2,0,1],[2,2,3,2],[0,4,2,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,2,0],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,2,0],[1,3,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,2,0],[1,2,3,1]],[[0,2,0,1],[2,2,3,2],[0,3,2,0],[1,2,2,2]],[[0,2,0,1],[2,2,3,2],[0,4,2,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[0,3,2,1],[2,2,2,0]],[[0,2,0,1],[2,2,3,2],[0,3,2,1],[1,3,2,0]],[[0,2,0,1],[2,2,3,2],[0,3,2,1],[1,2,3,0]],[[0,2,0,2],[2,2,3,2],[0,3,2,2],[1,0,2,1]],[[0,2,0,1],[2,2,4,2],[0,3,2,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,3],[0,3,2,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,2,3],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,2,2],[1,0,2,2]],[[0,2,0,2],[2,2,3,2],[0,3,2,2],[1,1,1,1]],[[0,2,0,1],[2,2,4,2],[0,3,2,2],[1,1,1,1]],[[0,2,0,1],[2,2,3,3],[0,3,2,2],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[0,3,2,3],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[0,3,2,2],[1,1,1,2]],[[0,2,0,2],[2,2,3,2],[0,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,2,4,2],[0,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,2,3,3],[0,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,2,3,2],[0,3,2,3],[1,1,2,0]],[[0,2,0,2],[2,2,3,2],[0,3,2,2],[1,2,0,1]],[[0,2,0,1],[2,2,4,2],[0,3,2,2],[1,2,0,1]],[[0,2,0,1],[2,2,3,3],[0,3,2,2],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[0,3,2,3],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[0,3,2,2],[1,2,0,2]],[[0,2,0,2],[2,2,3,2],[0,3,2,2],[1,2,1,0]],[[0,2,0,1],[2,2,4,2],[0,3,2,2],[1,2,1,0]],[[0,2,0,1],[2,2,3,3],[0,3,2,2],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,1,0,3],[1,1,3,2],[1,2,1,1]],[[1,2,2,1],[3,1,0,2],[1,1,3,2],[1,2,1,1]],[[1,2,2,2],[2,1,0,2],[1,1,3,2],[1,2,1,1]],[[1,2,3,1],[2,1,0,2],[1,1,3,2],[1,2,1,1]],[[1,3,2,1],[2,1,0,2],[1,1,3,2],[1,2,1,1]],[[2,2,2,1],[2,1,0,2],[1,1,3,2],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[1,1,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[1,1,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[1,1,3,1],[1,3,2,1]],[[0,2,0,2],[2,2,3,2],[0,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,2,4,2],[0,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,2,3,3],[0,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,2,3,2],[0,4,3,0],[1,1,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,4,0],[1,1,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,3,0],[1,1,3,1]],[[0,2,0,1],[2,2,3,2],[0,3,3,0],[1,1,2,2]],[[0,2,0,2],[2,2,3,2],[0,3,3,0],[1,2,1,1]],[[0,2,0,1],[2,2,4,2],[0,3,3,0],[1,2,1,1]],[[0,2,0,1],[2,2,3,3],[0,3,3,0],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[0,4,3,0],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[0,3,4,0],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[0,3,3,0],[2,2,1,1]],[[0,2,0,1],[2,2,3,2],[0,3,3,0],[1,3,1,1]],[[0,2,0,2],[2,2,3,2],[0,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,4,2],[0,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,3,3],[0,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[0,3,4,1],[1,0,2,1]],[[0,2,0,2],[2,2,3,2],[0,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,4,2],[0,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,3,3],[0,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[0,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[0,3,4,1],[1,1,1,1]],[[0,2,0,2],[2,2,3,2],[0,3,3,1],[1,1,2,0]],[[0,2,0,1],[2,2,4,2],[0,3,3,1],[1,1,2,0]],[[0,2,0,1],[2,2,3,3],[0,3,3,1],[1,1,2,0]],[[0,2,0,1],[2,2,3,2],[0,4,3,1],[1,1,2,0]],[[0,2,0,1],[2,2,3,2],[0,3,4,1],[1,1,2,0]],[[0,2,0,1],[2,2,3,2],[0,3,3,1],[1,1,3,0]],[[0,2,0,2],[2,2,3,2],[0,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,4,2],[0,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,3,3],[0,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[0,4,3,1],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[0,3,4,1],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[0,3,3,1],[2,2,0,1]],[[0,2,0,1],[2,2,3,2],[0,3,3,1],[1,3,0,1]],[[0,2,0,2],[2,2,3,2],[0,3,3,1],[1,2,1,0]],[[0,2,0,1],[2,2,4,2],[0,3,3,1],[1,2,1,0]],[[0,2,0,1],[2,2,3,3],[0,3,3,1],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[0,4,3,1],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[0,3,4,1],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[0,3,3,1],[2,2,1,0]],[[0,2,0,1],[2,2,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[1,1,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,1,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,1,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[1,1,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[1,1,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[1,1,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[1,1,2,3],[1,2,2,1]],[[1,2,2,1],[2,1,0,3],[1,1,2,2],[1,2,2,1]],[[1,2,2,1],[3,1,0,2],[1,1,2,2],[1,2,2,1]],[[0,2,0,2],[2,2,3,2],[0,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,4,2],[0,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,3],[0,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,2,2],[2,1,0,2],[1,1,2,2],[1,2,2,1]],[[1,2,3,1],[2,1,0,2],[1,1,2,2],[1,2,2,1]],[[1,3,2,1],[2,1,0,2],[1,1,2,2],[1,2,2,1]],[[2,2,2,1],[2,1,0,2],[1,1,2,2],[1,2,2,1]],[[1,2,2,1],[2,1,0,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[0,3,3,2],[2,2,1,0]],[[1,2,2,1],[2,1,0,2],[0,3,3,3],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[0,3,4,2],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[0,4,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,0,3],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[3,1,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,2,2],[2,1,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,3,1],[2,1,0,2],[0,3,3,2],[1,2,1,0]],[[1,3,2,1],[2,1,0,2],[0,3,3,2],[1,2,1,0]],[[2,2,2,1],[2,1,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,0,2],[0,3,3,2],[1,2,0,2]],[[0,2,0,2],[2,2,3,2],[1,2,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,4,2],[1,2,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,3,3],[1,2,1,2],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,2,1,3],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,2,1,2],[0,3,2,1]],[[0,2,0,1],[2,2,3,2],[1,2,1,2],[0,2,3,1]],[[0,2,0,1],[2,2,3,2],[1,2,1,2],[0,2,2,2]],[[0,2,0,2],[2,2,3,2],[1,2,2,2],[0,2,1,1]],[[0,2,0,1],[2,2,4,2],[1,2,2,2],[0,2,1,1]],[[0,2,0,1],[2,2,3,3],[1,2,2,2],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[1,2,2,3],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[1,2,2,2],[0,2,1,2]],[[0,2,0,2],[2,2,3,2],[1,2,2,2],[0,2,2,0]],[[0,2,0,1],[2,2,4,2],[1,2,2,2],[0,2,2,0]],[[0,2,0,1],[2,2,3,3],[1,2,2,2],[0,2,2,0]],[[0,2,0,1],[2,2,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,2,1],[2,1,0,2],[0,3,3,2],[1,3,0,1]],[[1,2,2,1],[2,1,0,2],[0,3,3,2],[2,2,0,1]],[[1,2,2,1],[2,1,0,2],[0,3,3,3],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[0,3,4,2],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[0,4,3,2],[1,2,0,1]],[[1,2,2,1],[2,1,0,3],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[3,1,0,2],[0,3,3,2],[1,2,0,1]],[[1,2,2,2],[2,1,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,0,2],[2,2,3,2],[1,2,3,0],[0,2,2,1]],[[0,2,0,1],[2,2,4,2],[1,2,3,0],[0,2,2,1]],[[0,2,0,1],[2,2,3,3],[1,2,3,0],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,2,4,0],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,2,3,0],[0,3,2,1]],[[0,2,0,1],[2,2,3,2],[1,2,3,0],[0,2,3,1]],[[0,2,0,1],[2,2,3,2],[1,2,3,0],[0,2,2,2]],[[0,2,0,2],[2,2,3,2],[1,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,4,2],[1,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,3,3],[1,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[1,2,4,1],[0,2,1,1]],[[0,2,0,2],[2,2,3,2],[1,2,3,1],[0,2,2,0]],[[0,2,0,1],[2,2,4,2],[1,2,3,1],[0,2,2,0]],[[0,2,0,1],[2,2,3,3],[1,2,3,1],[0,2,2,0]],[[0,2,0,1],[2,2,3,2],[1,2,4,1],[0,2,2,0]],[[0,2,0,1],[2,2,3,2],[1,2,3,1],[0,3,2,0]],[[0,2,0,1],[2,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,3,1],[2,1,0,2],[0,3,3,2],[1,2,0,1]],[[1,3,2,1],[2,1,0,2],[0,3,3,2],[1,2,0,1]],[[2,2,2,1],[2,1,0,2],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[2,1,0,2],[0,3,3,2],[1,1,3,0]],[[1,2,2,1],[2,1,0,2],[0,3,3,3],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[0,3,4,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[0,4,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,3],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[3,1,0,2],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[2,1,0,2],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[2,1,0,2],[0,3,3,2],[1,1,2,0]],[[1,3,2,1],[2,1,0,2],[0,3,3,2],[1,1,2,0]],[[2,2,2,1],[2,1,0,2],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,2],[0,3,3,2],[1,1,1,2]],[[1,2,2,1],[2,1,0,2],[0,3,3,3],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[0,3,4,2],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[0,4,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,0,3],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[3,1,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[2,1,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[2,1,0,2],[0,3,3,2],[1,1,1,1]],[[1,3,2,1],[2,1,0,2],[0,3,3,2],[1,1,1,1]],[[2,2,2,1],[2,1,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,0,2],[0,3,3,2],[1,0,2,2]],[[1,2,2,1],[2,1,0,2],[0,3,3,3],[1,0,2,1]],[[1,2,2,1],[2,1,0,2],[0,3,4,2],[1,0,2,1]],[[1,2,2,1],[2,1,0,3],[0,3,3,2],[1,0,2,1]],[[1,2,2,2],[2,1,0,2],[0,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[1,4,0,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,0,1],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,0,1],[1,3,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,0,1],[1,2,3,1]],[[0,2,0,1],[2,2,3,2],[1,3,0,1],[1,2,2,2]],[[0,2,0,2],[2,2,3,2],[1,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,2,4,2],[1,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,2,3,3],[1,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,4,0,2],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,0,3],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,0,2],[0,3,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,0,2],[0,2,3,1]],[[0,2,0,1],[2,2,3,2],[1,3,0,2],[0,2,2,2]],[[0,2,0,1],[2,2,3,2],[1,4,0,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,0,2],[2,2,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,0,2],[1,3,1,1]],[[0,2,0,1],[2,2,3,2],[1,4,0,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,0,2],[2,2,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,0,2],[1,3,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,0,2],[1,2,3,0]],[[0,2,0,1],[2,2,3,2],[1,4,1,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,0],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,0],[1,3,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,0],[1,2,3,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,0],[1,2,2,2]],[[0,2,0,1],[2,2,3,2],[1,4,1,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,1,1],[2,2,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,1,1],[1,3,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,1,1],[1,2,3,0]],[[0,2,0,2],[2,2,3,2],[1,3,1,2],[0,1,2,1]],[[0,2,0,1],[2,2,4,2],[1,3,1,2],[0,1,2,1]],[[0,2,0,1],[2,2,3,3],[1,3,1,2],[0,1,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,3],[0,1,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,2],[0,1,3,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,2],[0,1,2,2]],[[0,2,0,2],[2,2,3,2],[1,3,1,2],[1,0,2,1]],[[0,2,0,1],[2,2,4,2],[1,3,1,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,3],[1,3,1,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,3],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,2],[1,0,3,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,2],[1,0,2,2]],[[0,2,0,1],[2,2,3,2],[1,4,1,2],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,2],[2,2,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,1,2],[1,3,0,1]],[[0,2,0,1],[2,2,3,2],[1,4,1,2],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[1,3,1,2],[2,2,1,0]],[[0,2,0,1],[2,2,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,3,1],[2,1,0,2],[0,3,3,2],[1,0,2,1]],[[1,3,2,1],[2,1,0,2],[0,3,3,2],[1,0,2,1]],[[2,2,2,1],[2,1,0,2],[0,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[1,4,2,0],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,0],[0,3,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,0],[0,2,3,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,0],[0,2,2,2]],[[0,2,0,1],[2,2,3,2],[1,4,2,0],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,0],[2,2,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,0],[1,3,1,1]],[[0,2,0,1],[2,2,3,2],[1,4,2,1],[0,2,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,2,1],[0,3,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,2,1],[0,2,3,0]],[[0,2,0,1],[2,2,3,2],[1,4,2,1],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,1],[2,2,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,1],[1,3,0,1]],[[0,2,0,1],[2,2,3,2],[1,4,2,1],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[1,3,2,1],[2,2,1,0]],[[0,2,0,1],[2,2,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,0,2],[0,3,3,1],[1,3,1,1]],[[1,2,2,1],[2,1,0,2],[0,3,3,1],[2,2,1,1]],[[1,2,2,1],[2,1,0,2],[0,3,4,1],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[0,4,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[0,3,3,1],[1,1,2,2]],[[0,2,0,2],[2,2,3,2],[1,3,2,2],[0,0,2,1]],[[0,2,0,1],[2,2,4,2],[1,3,2,2],[0,0,2,1]],[[0,2,0,1],[2,2,3,3],[1,3,2,2],[0,0,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,3],[0,0,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,2],[0,0,2,2]],[[0,2,0,2],[2,2,3,2],[1,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,2,4,2],[1,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,2,3,3],[1,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,3],[0,1,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,2],[0,1,1,2]],[[0,2,0,2],[2,2,3,2],[1,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,2,4,2],[1,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,2,3,3],[1,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,2,3],[0,1,2,0]],[[0,2,0,2],[2,2,3,2],[1,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,2,4,2],[1,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,3],[1,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,3],[0,2,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,2],[0,2,0,2]],[[0,2,0,2],[2,2,3,2],[1,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,2,4,2],[1,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,2,3,3],[1,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,1,0,2],[0,3,3,1],[1,1,3,1]],[[1,2,2,1],[2,1,0,2],[0,3,4,1],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[0,4,3,1],[1,1,2,1]],[[0,2,0,2],[2,2,3,2],[1,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,2,4,2],[1,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,3],[1,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,3],[1,0,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,2],[1,0,1,2]],[[0,2,0,2],[2,2,3,2],[1,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,2,4,2],[1,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,2,3,3],[1,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,2,3],[1,0,2,0]],[[0,2,0,2],[2,2,3,2],[1,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,2,4,2],[1,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,3],[1,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,3],[1,1,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,2,2],[1,1,0,2]],[[0,2,0,2],[2,2,3,2],[1,3,2,2],[1,1,1,0]],[[0,2,0,1],[2,2,4,2],[1,3,2,2],[1,1,1,0]],[[0,2,0,1],[2,2,3,3],[1,3,2,2],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[0,3,2,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,2],[0,3,2,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[0,3,2,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[0,4,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[0,3,2,2],[1,1,2,2]],[[1,2,2,1],[2,1,0,2],[0,3,2,2],[1,1,3,1]],[[1,2,2,1],[2,1,0,2],[0,3,2,3],[1,1,2,1]],[[1,2,2,1],[2,1,0,3],[0,3,2,2],[1,1,2,1]],[[1,2,2,1],[3,1,0,2],[0,3,2,2],[1,1,2,1]],[[1,2,2,2],[2,1,0,2],[0,3,2,2],[1,1,2,1]],[[1,2,3,1],[2,1,0,2],[0,3,2,2],[1,1,2,1]],[[1,3,2,1],[2,1,0,2],[0,3,2,2],[1,1,2,1]],[[2,2,2,1],[2,1,0,2],[0,3,2,2],[1,1,2,1]],[[1,2,2,1],[2,1,0,2],[0,3,2,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[0,3,2,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[0,3,2,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[0,3,2,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[0,4,2,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,2],[0,3,1,2],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[0,3,1,2],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[0,3,1,2],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[0,3,1,2],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[0,3,1,3],[1,2,2,1]],[[1,2,2,1],[2,1,0,2],[0,4,1,2],[1,2,2,1]],[[0,2,0,2],[2,2,3,2],[1,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,2,4,2],[1,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,2,3,3],[1,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,2,3,2],[1,4,3,0],[0,1,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,4,0],[0,1,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,3,0],[0,1,3,1]],[[0,2,0,1],[2,2,3,2],[1,3,3,0],[0,1,2,2]],[[0,2,0,2],[2,2,3,2],[1,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,2,4,2],[1,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,2,3,3],[1,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[1,4,3,0],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,4,0],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,3,0],[0,3,1,1]],[[0,2,0,2],[2,2,3,2],[1,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,2,4,2],[1,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,2,3,3],[1,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[1,4,3,0],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,4,0],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,3,0],[1,0,3,1]],[[0,2,0,1],[2,2,3,2],[1,3,3,0],[1,0,2,2]],[[0,2,0,2],[2,2,3,2],[1,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,2,4,2],[1,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,2,3,3],[1,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[1,4,3,0],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,4,0],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[1,4,3,0],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[1,3,3,0],[2,2,1,0]],[[0,2,0,1],[2,2,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,0,3],[0,3,1,2],[1,2,2,1]],[[1,2,2,1],[3,1,0,2],[0,3,1,2],[1,2,2,1]],[[1,2,2,2],[2,1,0,2],[0,3,1,2],[1,2,2,1]],[[1,2,3,1],[2,1,0,2],[0,3,1,2],[1,2,2,1]],[[1,3,2,1],[2,1,0,2],[0,3,1,2],[1,2,2,1]],[[2,2,2,1],[2,1,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,0,2],[2,2,3,2],[1,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,2,4,2],[1,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,2,3,3],[1,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,2,3,2],[1,3,4,1],[0,0,2,1]],[[0,2,0,2],[2,2,3,2],[1,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,2,4,2],[1,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,2,3,3],[1,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,2,3,2],[1,4,3,1],[0,1,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,4,1],[0,1,1,1]],[[0,2,0,2],[2,2,3,2],[1,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,2,4,2],[1,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,2,3,3],[1,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,2,3,2],[1,4,3,1],[0,1,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,4,1],[0,1,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,3,1],[0,1,3,0]],[[0,2,0,2],[2,2,3,2],[1,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,2,4,2],[1,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,2,3,3],[1,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,2,3,2],[1,4,3,1],[0,2,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,4,1],[0,2,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,3,1],[0,3,0,1]],[[0,2,0,2],[2,2,3,2],[1,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,2,4,2],[1,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,2,3,3],[1,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[1,4,3,1],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[1,3,4,1],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[1,3,3,1],[0,3,1,0]],[[0,2,0,2],[2,2,3,2],[1,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,2,4,2],[1,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,2,3,3],[1,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,2,3,2],[1,4,3,1],[1,0,1,1]],[[0,2,0,1],[2,2,3,2],[1,3,4,1],[1,0,1,1]],[[0,2,0,2],[2,2,3,2],[1,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,2,4,2],[1,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,2,3,3],[1,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[1,4,3,1],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,4,1],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[1,3,3,1],[1,0,3,0]],[[0,2,0,2],[2,2,3,2],[1,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,2,4,2],[1,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,2,3,3],[1,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,2,3,2],[1,4,3,1],[1,1,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,4,1],[1,1,0,1]],[[0,2,0,2],[2,2,3,2],[1,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,2,4,2],[1,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,2,3,3],[1,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[1,4,3,1],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,1,0,2],[0,2,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,2],[0,2,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,2],[0,2,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,2],[0,2,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[0,2,4,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,3],[0,2,3,2],[1,2,2,0]],[[1,2,2,1],[3,1,0,2],[0,2,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,0,2],[0,2,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,0,2],[0,2,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,0,2],[0,2,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,0,2],[0,2,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,2],[0,2,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,0,2],[0,2,3,3],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[0,2,4,2],[1,2,1,1]],[[1,2,2,1],[2,1,0,3],[0,2,3,2],[1,2,1,1]],[[1,2,2,1],[3,1,0,2],[0,2,3,2],[1,2,1,1]],[[1,2,2,2],[2,1,0,2],[0,2,3,2],[1,2,1,1]],[[1,2,3,1],[2,1,0,2],[0,2,3,2],[1,2,1,1]],[[1,3,2,1],[2,1,0,2],[0,2,3,2],[1,2,1,1]],[[2,2,2,1],[2,1,0,2],[0,2,3,2],[1,2,1,1]],[[1,2,2,1],[2,1,0,2],[0,2,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[0,2,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[0,2,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[0,2,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[0,2,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,2],[0,2,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,0,2],[0,2,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,0,2],[0,2,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,0,2],[0,2,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,0,2],[0,2,2,3],[1,2,2,1]],[[0,2,0,2],[2,2,3,2],[1,3,3,2],[0,1,0,1]],[[0,2,0,1],[2,2,4,2],[1,3,3,2],[0,1,0,1]],[[0,2,0,1],[2,2,3,3],[1,3,3,2],[0,1,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,1,0,3],[0,2,2,2],[1,2,2,1]],[[1,2,2,1],[3,1,0,2],[0,2,2,2],[1,2,2,1]],[[1,2,2,2],[2,1,0,2],[0,2,2,2],[1,2,2,1]],[[1,2,3,1],[2,1,0,2],[0,2,2,2],[1,2,2,1]],[[1,3,2,1],[2,1,0,2],[0,2,2,2],[1,2,2,1]],[[2,2,2,1],[2,1,0,2],[0,2,2,2],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,1,0,1],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,1,0,1],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[3,1,0,1],[2,3,3,2],[1,2,0,0]],[[0,2,0,2],[2,2,3,2],[1,3,3,2],[1,0,0,1]],[[0,2,0,1],[2,2,4,2],[1,3,3,2],[1,0,0,1]],[[0,2,0,1],[2,2,3,3],[1,3,3,2],[1,0,0,1]],[[0,2,0,1],[2,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,2],[2,1,0,1],[2,3,3,2],[1,2,0,0]],[[1,2,3,1],[2,1,0,1],[2,3,3,2],[1,2,0,0]],[[1,3,2,1],[2,1,0,1],[2,3,3,2],[1,2,0,0]],[[2,2,2,1],[2,1,0,1],[2,3,3,2],[1,2,0,0]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,1,0,1],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,1,0,1],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[2,1,0,1],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,0,1],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[3,1,0,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[2,1,0,1],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[2,1,0,1],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,1,0,1],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,1,0,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,1,0,1],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[2,1,0,1],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,0,1],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,1,0,1],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,1,0,1],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,1,0,1],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,1,0,1],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,1,0,1],[2,3,3,2],[1,1,0,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[2,1,0,1],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[2,1,0,1],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[2,1,0,1],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,0,1],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[3,1,0,1],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[2,1,0,1],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[2,1,0,1],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,1,0,1],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,1,0,1],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[1,0,1,2]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[2,1,0,1],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[2,1,0,1],[2,4,3,2],[1,0,1,1]],[[0,2,0,2],[2,2,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[3,2,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,4,2],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,3],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[3,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,0,1,3],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,0,1,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,0,1,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,2],[2,0,1,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,2],[2,0,1,2],[1,2,2,2]],[[0,2,0,2],[2,2,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,0,1],[2,2,4,2],[2,0,2,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,3],[2,0,2,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[2,0,2,3],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[2,0,2,2],[1,2,1,2]],[[0,2,0,2],[2,2,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,4,2],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,3],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,0,2,3],[1,2,2,0]],[[0,2,0,2],[2,2,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[3,2,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,4,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,3],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[3,0,3,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,0,4,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,0,3,0],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,0,3,0],[1,3,2,1]],[[0,2,0,1],[2,2,3,2],[2,0,3,0],[1,2,3,1]],[[0,2,0,1],[2,2,3,2],[2,0,3,0],[1,2,2,2]],[[0,2,0,2],[2,2,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,4,2],[2,0,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,3,3],[2,0,3,1],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[2,0,4,1],[1,2,1,1]],[[0,2,0,2],[2,2,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,1],[3,2,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,1],[2,2,4,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,3],[2,0,3,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[3,0,3,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,0,4,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,0,3,1],[2,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,0,3,1],[1,3,2,0]],[[0,2,0,1],[2,2,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[2,1,0,1],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[3,1,0,1],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[2,1,0,1],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[2,1,0,1],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,1,0,1],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,1,0,1],[2,3,3,2],[1,0,1,1]],[[0,2,0,2],[2,2,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[3,2,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,4,2],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,3],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[3,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,1,0,3],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,1,0,2],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,1,0,2],[1,3,2,1]],[[0,2,0,1],[2,2,3,2],[2,1,0,2],[1,2,3,1]],[[0,2,0,1],[2,2,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,1,0,1],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,1,0,1],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[2,1,0,1],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,0,1],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[3,1,0,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[2,1,0,1],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[2,1,0,1],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,1,0,1],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,1,0,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[2,1,0,1],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[2,1,0,1],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[2,1,0,1],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[3,1,0,1],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[2,1,0,1],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[2,1,0,1],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,1,0,1],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,1,0,1],[2,3,3,2],[0,2,0,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[0,1,3,0]],[[1,2,2,1],[2,1,0,1],[2,3,3,3],[0,1,2,0]],[[0,2,0,1],[3,2,3,2],[2,2,0,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[3,2,0,1],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,2,0,1],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,2,0,1],[1,3,2,1]],[[0,2,0,1],[2,2,3,2],[2,2,0,1],[1,2,3,1]],[[0,2,0,1],[2,2,3,2],[2,2,0,1],[1,2,2,2]],[[0,2,0,1],[3,2,3,2],[2,2,0,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[3,2,0,2],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[2,2,0,2],[2,2,1,1]],[[0,2,0,1],[2,2,3,2],[2,2,0,2],[1,3,1,1]],[[0,2,0,1],[3,2,3,2],[2,2,0,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[3,2,0,2],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,2,0,2],[2,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,2,0,2],[1,3,2,0]],[[0,2,0,1],[2,2,3,2],[2,2,0,2],[1,2,3,0]],[[0,2,0,1],[3,2,3,2],[2,2,1,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[3,2,1,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,2,1,0],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,2,1,0],[1,3,2,1]],[[0,2,0,1],[2,2,3,2],[2,2,1,0],[1,2,3,1]],[[0,2,0,1],[2,2,3,2],[2,2,1,0],[1,2,2,2]],[[0,2,0,1],[3,2,3,2],[2,2,1,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[3,2,1,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,2,1,1],[2,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,2,1,1],[1,3,2,0]],[[0,2,0,1],[2,2,3,2],[2,2,1,1],[1,2,3,0]],[[0,2,0,1],[3,2,3,2],[2,2,1,2],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[3,2,1,2],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[2,2,1,2],[2,2,0,1]],[[0,2,0,1],[2,2,3,2],[2,2,1,2],[1,3,0,1]],[[0,2,0,1],[3,2,3,2],[2,2,1,2],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[3,2,1,2],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,2,1,2],[2,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,1],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,1],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,1],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[3,1,0,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[2,1,0,1],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[2,1,0,1],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,1,0,1],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,1,0,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[2,1,0,1],[2,3,3,3],[0,1,1,1]],[[0,2,0,1],[3,2,3,2],[2,2,2,0],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[3,2,2,0],[1,2,1,1]],[[0,2,0,1],[2,2,3,2],[2,2,2,0],[2,2,1,1]],[[0,2,0,1],[2,2,3,2],[2,2,2,0],[1,3,1,1]],[[0,2,0,1],[3,2,3,2],[2,2,2,1],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[3,2,2,1],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[2,2,2,1],[2,2,0,1]],[[0,2,0,1],[2,2,3,2],[2,2,2,1],[1,3,0,1]],[[0,2,0,1],[3,2,3,2],[2,2,2,1],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[3,2,2,1],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,2,2,1],[2,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[2,1,0,1],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[2,1,0,1],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,0,1],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[3,1,0,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[2,1,0,1],[2,3,3,2],[0,1,1,1]],[[1,2,3,1],[2,1,0,1],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,1,0,1],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,1,0,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[2,1,0,1],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,4,2],[0,0,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,1,0,1],[2,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,0,1],[3,3,3,1],[1,2,0,1]],[[1,2,2,1],[3,1,0,1],[2,3,3,1],[1,2,0,1]],[[1,3,2,1],[2,1,0,1],[2,3,3,1],[1,2,0,1]],[[2,2,2,1],[2,1,0,1],[2,3,3,1],[1,2,0,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[2,1,0,1],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[2,1,0,1],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[3,2,3,2],[2,2,3,0],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[3,2,3,0],[1,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,2,3,0],[2,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,2,1],[2,1,0,1],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,1,0,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,2],[2,1,0,1],[2,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,1,0,1],[2,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,1,0,1],[2,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,1,0,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[2,1,0,1],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[2,1,0,1],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[2,1,0,1],[3,3,3,1],[1,0,2,1]],[[1,2,2,1],[3,1,0,1],[2,3,3,1],[1,0,2,1]],[[1,2,2,2],[2,1,0,1],[2,3,3,1],[1,0,2,1]],[[1,2,3,1],[2,1,0,1],[2,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,1,0,1],[2,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,1,0,1],[2,3,3,1],[1,0,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[2,1,0,1],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[2,1,0,1],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,0,1],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[3,1,0,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,2],[2,1,0,1],[2,3,3,1],[0,2,1,1]],[[1,2,3,1],[2,1,0,1],[2,3,3,1],[0,2,1,1]],[[1,3,2,1],[2,1,0,1],[2,3,3,1],[0,2,1,1]],[[2,2,2,1],[2,1,0,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,1],[2,1,0,1],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[2,1,0,1],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[2,1,0,1],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[2,1,0,1],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[2,1,0,1],[3,3,3,1],[0,1,2,1]],[[1,2,2,1],[3,1,0,1],[2,3,3,1],[0,1,2,1]],[[1,2,2,2],[2,1,0,1],[2,3,3,1],[0,1,2,1]],[[1,2,3,1],[2,1,0,1],[2,3,3,1],[0,1,2,1]],[[1,3,2,1],[2,1,0,1],[2,3,3,1],[0,1,2,1]],[[2,2,2,1],[2,1,0,1],[2,3,3,1],[0,1,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,1,0,1],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,1],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,1,0,1],[2,3,2,2],[1,1,2,0]],[[1,2,2,2],[2,1,0,1],[2,3,2,2],[1,1,2,0]],[[1,2,3,1],[2,1,0,1],[2,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,1,0,1],[2,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,1,0,1],[2,3,2,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,1],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,1,0,1],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[2,1,0,1],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[2,1,0,1],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[2,1,0,1],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,1],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[3,1,0,1],[2,3,2,2],[0,2,2,0]],[[1,2,2,2],[2,1,0,1],[2,3,2,2],[0,2,2,0]],[[1,2,3,1],[2,1,0,1],[2,3,2,2],[0,2,2,0]],[[1,3,2,1],[2,1,0,1],[2,3,2,2],[0,2,2,0]],[[2,2,2,1],[2,1,0,1],[2,3,2,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,1],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[2,1,0,1],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[2,1,0,1],[2,3,2,3],[0,1,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,0,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[3,3,0,0],[1,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,3,0,0],[2,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,3,0,0],[1,3,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,0,1],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[3,3,0,1],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,4,0,1],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,3,0,1],[0,3,2,1]],[[0,2,0,1],[2,2,3,2],[2,3,0,1],[0,2,3,1]],[[0,2,0,1],[2,2,3,2],[2,3,0,1],[0,2,2,2]],[[0,2,0,1],[3,2,3,2],[2,3,0,1],[1,1,2,1]],[[0,2,0,1],[2,2,3,2],[3,3,0,1],[1,1,2,1]],[[0,2,0,1],[2,2,3,2],[2,4,0,1],[1,1,2,1]],[[0,2,0,1],[2,2,3,2],[2,3,0,1],[2,1,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,0,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[3,3,0,1],[1,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,3,0,1],[2,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,3,0,1],[1,3,2,0]],[[0,2,0,1],[3,2,3,2],[2,3,0,2],[0,1,2,1]],[[0,2,0,1],[2,2,3,2],[3,3,0,2],[0,1,2,1]],[[0,2,0,1],[2,2,3,2],[2,4,0,2],[0,1,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,0,2],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[3,3,0,2],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[2,4,0,2],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[2,3,0,2],[0,3,1,1]],[[0,2,0,1],[3,2,3,2],[2,3,0,2],[0,2,2,0]],[[0,2,0,1],[2,2,3,2],[3,3,0,2],[0,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,4,0,2],[0,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,3,0,2],[0,3,2,0]],[[0,2,0,1],[2,2,3,2],[2,3,0,2],[0,2,3,0]],[[0,2,0,1],[3,2,3,2],[2,3,0,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[3,3,0,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[2,4,0,2],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[2,3,0,2],[2,0,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,0,2],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[3,3,0,2],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[2,4,0,2],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[2,3,0,2],[2,1,1,1]],[[0,2,0,1],[3,2,3,2],[2,3,0,2],[1,1,2,0]],[[0,2,0,1],[2,2,3,2],[3,3,0,2],[1,1,2,0]],[[0,2,0,1],[2,2,3,2],[2,4,0,2],[1,1,2,0]],[[0,2,0,1],[2,2,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[2,1,0,1],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[2,1,0,1],[2,4,2,1],[1,1,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,1,0],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[3,3,1,0],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,4,1,0],[0,2,2,1]],[[0,2,0,1],[2,2,3,2],[2,3,1,0],[0,3,2,1]],[[0,2,0,1],[2,2,3,2],[2,3,1,0],[0,2,3,1]],[[0,2,0,1],[2,2,3,2],[2,3,1,0],[0,2,2,2]],[[0,2,0,1],[3,2,3,2],[2,3,1,0],[1,1,2,1]],[[0,2,0,1],[2,2,3,2],[3,3,1,0],[1,1,2,1]],[[0,2,0,1],[2,2,3,2],[2,4,1,0],[1,1,2,1]],[[0,2,0,1],[2,2,3,2],[2,3,1,0],[2,1,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,1,1],[0,2,2,0]],[[0,2,0,1],[2,2,3,2],[3,3,1,1],[0,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,4,1,1],[0,2,2,0]],[[0,2,0,1],[2,2,3,2],[2,3,1,1],[0,3,2,0]],[[0,2,0,1],[2,2,3,2],[2,3,1,1],[0,2,3,0]],[[0,2,0,1],[3,2,3,2],[2,3,1,1],[1,1,2,0]],[[0,2,0,1],[2,2,3,2],[3,3,1,1],[1,1,2,0]],[[0,2,0,1],[2,2,3,2],[2,4,1,1],[1,1,2,0]],[[0,2,0,1],[2,2,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[2,1,0,1],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[3,1,0,1],[2,3,2,1],[1,1,2,1]],[[1,2,2,2],[2,1,0,1],[2,3,2,1],[1,1,2,1]],[[1,2,3,1],[2,1,0,1],[2,3,2,1],[1,1,2,1]],[[1,3,2,1],[2,1,0,1],[2,3,2,1],[1,1,2,1]],[[2,2,2,1],[2,1,0,1],[2,3,2,1],[1,1,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,2,1],[0,2,2,2]],[[0,2,0,1],[3,2,3,2],[2,3,1,2],[0,1,1,1]],[[0,2,0,1],[2,2,3,2],[3,3,1,2],[0,1,1,1]],[[0,2,0,1],[2,2,3,2],[2,4,1,2],[0,1,1,1]],[[0,2,0,1],[3,2,3,2],[2,3,1,2],[0,1,2,0]],[[0,2,0,1],[2,2,3,2],[3,3,1,2],[0,1,2,0]],[[0,2,0,1],[2,2,3,2],[2,4,1,2],[0,1,2,0]],[[0,2,0,1],[3,2,3,2],[2,3,1,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,2],[3,3,1,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,2],[2,4,1,2],[0,2,0,1]],[[0,2,0,1],[2,2,3,2],[2,3,1,2],[0,3,0,1]],[[0,2,0,1],[3,2,3,2],[2,3,1,2],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[3,3,1,2],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,4,1,2],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[2,1,0,1],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[2,1,0,1],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[2,1,0,1],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[2,1,0,1],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[3,1,0,1],[2,3,2,1],[0,2,2,1]],[[1,2,2,2],[2,1,0,1],[2,3,2,1],[0,2,2,1]],[[1,2,3,1],[2,1,0,1],[2,3,2,1],[0,2,2,1]],[[1,3,2,1],[2,1,0,1],[2,3,2,1],[0,2,2,1]],[[2,2,2,1],[2,1,0,1],[2,3,2,1],[0,2,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,1,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,2],[3,3,1,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,2],[2,4,1,2],[1,0,1,1]],[[0,2,0,1],[2,2,3,2],[2,3,1,2],[2,0,1,1]],[[0,2,0,1],[3,2,3,2],[2,3,1,2],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[3,3,1,2],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[2,4,1,2],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[2,3,1,2],[2,0,2,0]],[[0,2,0,1],[3,2,3,2],[2,3,1,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,2],[3,3,1,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,2],[2,4,1,2],[1,1,0,1]],[[0,2,0,1],[2,2,3,2],[2,3,1,2],[2,1,0,1]],[[0,2,0,1],[3,2,3,2],[2,3,1,2],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[3,3,1,2],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[2,4,1,2],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[2,3,1,2],[2,1,1,0]],[[0,2,0,1],[3,2,3,2],[2,3,1,2],[1,2,0,0]],[[0,2,0,1],[2,2,3,2],[3,3,1,2],[1,2,0,0]],[[0,2,0,1],[2,2,3,2],[2,4,1,2],[1,2,0,0]],[[0,2,0,1],[2,2,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,1,0,1],[2,3,1,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,1],[2,3,1,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,1],[3,3,1,2],[1,2,2,0]],[[1,2,2,1],[3,1,0,1],[2,3,1,2],[1,2,2,0]],[[1,3,2,1],[2,1,0,1],[2,3,1,2],[1,2,2,0]],[[2,2,2,1],[2,1,0,1],[2,3,1,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,1],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[2,1,0,1],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,0,1],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[3,1,0,1],[2,3,1,2],[1,1,2,1]],[[1,2,2,2],[2,1,0,1],[2,3,1,2],[1,1,2,1]],[[1,2,3,1],[2,1,0,1],[2,3,1,2],[1,1,2,1]],[[1,3,2,1],[2,1,0,1],[2,3,1,2],[1,1,2,1]],[[2,2,2,1],[2,1,0,1],[2,3,1,2],[1,1,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[2,1,0,1],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[2,1,0,1],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,1,3],[0,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,0,1],[3,3,1,2],[0,2,2,1]],[[1,2,2,1],[3,1,0,1],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,0],[0,1,2,1]],[[0,2,0,1],[2,2,3,2],[3,3,2,0],[0,1,2,1]],[[0,2,0,1],[2,2,3,2],[2,4,2,0],[0,1,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,0],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[3,3,2,0],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[2,4,2,0],[0,2,1,1]],[[0,2,0,1],[2,2,3,2],[2,3,2,0],[0,3,1,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,0],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[3,3,2,0],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[2,4,2,0],[1,0,2,1]],[[0,2,0,1],[2,2,3,2],[2,3,2,0],[2,0,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,0],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[3,3,2,0],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[2,4,2,0],[1,1,1,1]],[[0,2,0,1],[2,2,3,2],[2,3,2,0],[2,1,1,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,0],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[3,3,2,0],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[2,4,2,0],[1,2,0,1]],[[0,2,0,1],[2,2,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,2],[2,1,0,1],[2,3,1,2],[0,2,2,1]],[[1,2,3,1],[2,1,0,1],[2,3,1,2],[0,2,2,1]],[[1,3,2,1],[2,1,0,1],[2,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,1,0,1],[2,3,1,2],[0,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,1,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,1,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,1],[3,3,1,1],[1,2,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,1],[0,1,1,1]],[[0,2,0,1],[2,2,3,2],[3,3,2,1],[0,1,1,1]],[[0,2,0,1],[2,2,3,2],[2,4,2,1],[0,1,1,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,1],[0,1,2,0]],[[0,2,0,1],[2,2,3,2],[3,3,2,1],[0,1,2,0]],[[0,2,0,1],[2,2,3,2],[2,4,2,1],[0,1,2,0]],[[0,2,0,1],[3,2,3,2],[2,3,2,1],[0,2,0,1]],[[0,2,0,1],[2,2,3,2],[3,3,2,1],[0,2,0,1]],[[0,2,0,1],[2,2,3,2],[2,4,2,1],[0,2,0,1]],[[0,2,0,1],[2,2,3,2],[2,3,2,1],[0,3,0,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,1],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[3,3,2,1],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,4,2,1],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[3,1,0,1],[2,3,1,1],[1,2,2,1]],[[1,3,2,1],[2,1,0,1],[2,3,1,1],[1,2,2,1]],[[2,2,2,1],[2,1,0,1],[2,3,1,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,0,2],[1,3,2,1]],[[1,2,2,1],[2,1,0,1],[2,3,0,2],[2,2,2,1]],[[1,2,2,1],[2,1,0,1],[3,3,0,2],[1,2,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,1],[1,0,1,1]],[[0,2,0,1],[2,2,3,2],[3,3,2,1],[1,0,1,1]],[[0,2,0,1],[2,2,3,2],[2,4,2,1],[1,0,1,1]],[[0,2,0,1],[2,2,3,2],[2,3,2,1],[2,0,1,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,1],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[3,3,2,1],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[2,4,2,1],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[2,3,2,1],[2,0,2,0]],[[0,2,0,1],[3,2,3,2],[2,3,2,1],[1,1,0,1]],[[0,2,0,1],[2,2,3,2],[3,3,2,1],[1,1,0,1]],[[0,2,0,1],[2,2,3,2],[2,4,2,1],[1,1,0,1]],[[0,2,0,1],[2,2,3,2],[2,3,2,1],[2,1,0,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,1],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[3,3,2,1],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[2,4,2,1],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,2,1],[3,1,0,1],[2,3,0,2],[1,2,2,1]],[[1,3,2,1],[2,1,0,1],[2,3,0,2],[1,2,2,1]],[[2,2,2,1],[2,1,0,1],[2,3,0,2],[1,2,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,2,1],[1,2,0,0]],[[0,2,0,1],[2,2,3,2],[3,3,2,1],[1,2,0,0]],[[0,2,0,1],[2,2,3,2],[2,4,2,1],[1,2,0,0]],[[0,2,0,1],[2,2,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[2,1,0,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,1],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[2,1,0,1],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[3,1,0,1],[2,2,3,2],[1,2,1,0]],[[1,2,2,2],[2,1,0,1],[2,2,3,2],[1,2,1,0]],[[1,2,3,1],[2,1,0,1],[2,2,3,2],[1,2,1,0]],[[1,3,2,1],[2,1,0,1],[2,2,3,2],[1,2,1,0]],[[2,2,2,1],[2,1,0,1],[2,2,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,0,1],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[2,1,0,1],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[2,1,0,1],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[3,1,0,1],[2,2,3,2],[1,2,0,1]],[[1,2,2,2],[2,1,0,1],[2,2,3,2],[1,2,0,1]],[[1,2,3,1],[2,1,0,1],[2,2,3,2],[1,2,0,1]],[[1,3,2,1],[2,1,0,1],[2,2,3,2],[1,2,0,1]],[[2,2,2,1],[2,1,0,1],[2,2,3,2],[1,2,0,1]],[[1,2,2,1],[2,1,0,1],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,0,1],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[2,1,0,1],[2,2,3,3],[0,2,2,0]],[[1,2,2,1],[2,1,0,1],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,1],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[2,1,0,1],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[2,1,0,1],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[2,1,0,1],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[2,1,0,1],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[2,1,0,1],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[3,1,0,1],[2,2,3,1],[1,2,1,1]],[[1,2,2,2],[2,1,0,1],[2,2,3,1],[1,2,1,1]],[[1,2,3,1],[2,1,0,1],[2,2,3,1],[1,2,1,1]],[[1,3,2,1],[2,1,0,1],[2,2,3,1],[1,2,1,1]],[[2,2,2,1],[2,1,0,1],[2,2,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,0,1],[2,2,3,1],[0,2,2,2]],[[1,2,2,1],[2,1,0,1],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[2,1,0,1],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[2,1,0,1],[2,2,4,1],[0,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,1],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,1],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,1],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[3,1,0,1],[2,2,2,2],[1,2,2,0]],[[1,2,2,2],[2,1,0,1],[2,2,2,2],[1,2,2,0]],[[1,2,3,1],[2,1,0,1],[2,2,2,2],[1,2,2,0]],[[1,3,2,1],[2,1,0,1],[2,2,2,2],[1,2,2,0]],[[2,2,2,1],[2,1,0,1],[2,2,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,1],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[2,1,0,1],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[2,1,0,1],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[2,1,0,1],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,1],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,1],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,1],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,1],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[3,1,0,1],[2,2,2,1],[1,2,2,1]],[[1,2,2,2],[2,1,0,1],[2,2,2,1],[1,2,2,1]],[[1,2,3,1],[2,1,0,1],[2,2,2,1],[1,2,2,1]],[[1,3,2,1],[2,1,0,1],[2,2,2,1],[1,2,2,1]],[[2,2,2,1],[2,1,0,1],[2,2,2,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[2,1,0,1],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[2,1,0,1],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[2,1,0,1],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[3,1,0,1],[2,2,1,2],[1,2,2,1]],[[1,2,2,2],[2,1,0,1],[2,2,1,2],[1,2,2,1]],[[1,2,3,1],[2,1,0,1],[2,2,1,2],[1,2,2,1]],[[1,3,2,1],[2,1,0,1],[2,2,1,2],[1,2,2,1]],[[2,2,2,1],[2,1,0,1],[2,2,1,2],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,1],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,1],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,1],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,0,1],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,1],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[3,1,0,1],[2,1,3,2],[1,2,2,0]],[[1,2,2,2],[2,1,0,1],[2,1,3,2],[1,2,2,0]],[[1,2,3,1],[2,1,0,1],[2,1,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,0,1],[2,1,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,0,1],[2,1,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,1],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,0,1],[2,1,3,3],[1,2,1,1]],[[0,2,0,1],[3,2,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,0,1],[2,2,3,2],[3,3,3,0],[0,1,2,0]],[[0,2,0,1],[2,2,3,2],[2,4,3,0],[0,1,2,0]],[[0,2,0,1],[3,2,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[3,3,3,0],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,4,3,0],[0,2,1,0]],[[0,2,0,1],[2,2,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,1],[2,1,0,1],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[2,1,0,1],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,1],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,1],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,1],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[3,1,0,1],[2,1,3,1],[1,2,2,1]],[[1,2,2,2],[2,1,0,1],[2,1,3,1],[1,2,2,1]],[[1,2,3,1],[2,1,0,1],[2,1,3,1],[1,2,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[3,3,3,0],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[2,4,3,0],[1,0,2,0]],[[0,2,0,1],[2,2,3,2],[2,3,3,0],[2,0,2,0]],[[0,2,0,1],[3,2,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[3,3,3,0],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[2,4,3,0],[1,1,1,0]],[[0,2,0,1],[2,2,3,2],[2,3,3,0],[2,1,1,0]],[[1,3,2,1],[2,1,0,1],[2,1,3,1],[1,2,2,1]],[[2,2,2,1],[2,1,0,1],[2,1,3,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,0,1],[2,1,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,0,1],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,0,1],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,0,1],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[3,1,0,1],[2,1,2,2],[1,2,2,1]],[[1,2,2,2],[2,1,0,1],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,3,0],[1,2,0,0]],[[0,2,0,1],[2,2,3,2],[3,3,3,0],[1,2,0,0]],[[0,2,0,1],[2,2,3,2],[2,4,3,0],[1,2,0,0]],[[0,2,0,1],[2,2,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,3,1],[2,1,0,1],[2,1,2,2],[1,2,2,1]],[[1,3,2,1],[2,1,0,1],[2,1,2,2],[1,2,2,1]],[[2,2,2,1],[2,1,0,1],[2,1,2,2],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,1,0,1],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[2,1,0,1],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[2,1,0,1],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[2,1,0,1],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[2,1,0,1],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[2,1,0,1],[1,3,3,2],[1,3,0,1]],[[1,2,2,1],[2,1,0,1],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[2,1,0,1],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[2,1,0,1],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[2,1,0,1],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[2,1,0,1],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[2,1,0,1],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[2,1,0,1],[1,3,4,2],[1,1,2,0]],[[0,2,0,1],[3,2,3,2],[2,3,3,1],[0,2,0,0]],[[0,2,0,1],[2,2,3,2],[3,3,3,1],[0,2,0,0]],[[0,2,0,1],[2,2,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,1,0,1],[1,4,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,1],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[2,1,0,1],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[2,1,0,1],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[2,1,0,1],[1,4,3,2],[1,1,1,1]],[[1,2,2,1],[2,1,0,1],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[2,1,0,1],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[2,1,0,1],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[2,1,0,1],[1,4,3,1],[1,2,1,1]],[[1,2,2,1],[2,1,0,1],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[2,1,0,1],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[2,1,0,1],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[2,1,0,1],[1,4,3,1],[1,1,2,1]],[[1,2,2,1],[2,1,0,1],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,1],[1,3,2,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,1],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,1],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,1],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[2,1,0,1],[1,3,2,2],[1,1,3,1]],[[1,2,2,1],[2,1,0,1],[1,3,2,3],[1,1,2,1]],[[1,2,2,1],[2,1,0,1],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,1],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,1],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,1],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,1],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[3,2,3,2],[2,3,3,1],[1,1,0,0]],[[0,2,0,1],[2,2,3,2],[3,3,3,1],[1,1,0,0]],[[0,2,0,1],[2,2,3,2],[2,4,3,1],[1,1,0,0]],[[0,2,0,1],[2,2,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[2,1,0,1],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[2,1,0,1],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[2,1,0,1],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[2,1,0,1],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[2,1,0,1],[1,3,1,3],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[1,4,1,2],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,1],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,1],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,1],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[2,1,0,1],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,1],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[2,1,0,1],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[2,1,0,1],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[2,1,0,1],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,1],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,1],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,1],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,1],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,1],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[2,1,0,1],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[2,1,0,1],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[2,1,0,1],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[2,1,0,1],[1,2,2,3],[1,2,2,1]],[[1,2,2,1],[2,1,0,0],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[2,1,0,0],[2,4,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,0],[3,3,3,2],[1,1,2,0]],[[1,2,2,1],[3,1,0,0],[2,3,3,2],[1,1,2,0]],[[1,3,2,1],[2,1,0,0],[2,3,3,2],[1,1,2,0]],[[2,2,2,1],[2,1,0,0],[2,3,3,2],[1,1,2,0]],[[1,2,2,1],[2,1,0,0],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[2,1,0,0],[2,3,3,2],[0,3,2,0]],[[1,2,2,1],[2,1,0,0],[2,4,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,0],[3,3,3,2],[0,2,2,0]],[[1,2,2,1],[3,1,0,0],[2,3,3,2],[0,2,2,0]],[[1,3,2,1],[2,1,0,0],[2,3,3,2],[0,2,2,0]],[[2,2,2,1],[2,1,0,0],[2,3,3,2],[0,2,2,0]],[[1,2,2,1],[2,1,0,0],[2,3,3,1],[2,1,2,1]],[[1,2,2,1],[2,1,0,0],[2,4,3,1],[1,1,2,1]],[[1,2,2,1],[2,1,0,0],[3,3,3,1],[1,1,2,1]],[[1,2,2,1],[3,1,0,0],[2,3,3,1],[1,1,2,1]],[[1,3,2,1],[2,1,0,0],[2,3,3,1],[1,1,2,1]],[[2,2,2,1],[2,1,0,0],[2,3,3,1],[1,1,2,1]],[[1,2,2,1],[2,1,0,0],[2,3,3,1],[0,2,2,2]],[[1,2,2,1],[2,1,0,0],[2,3,3,1],[0,2,3,1]],[[1,2,2,1],[2,1,0,0],[2,3,3,1],[0,3,2,1]],[[1,2,2,1],[2,1,0,0],[2,4,3,1],[0,2,2,1]],[[1,2,2,1],[2,1,0,0],[3,3,3,1],[0,2,2,1]],[[1,2,2,1],[3,1,0,0],[2,3,3,1],[0,2,2,1]],[[1,3,2,1],[2,1,0,0],[2,3,3,1],[0,2,2,1]],[[2,2,2,1],[2,1,0,0],[2,3,3,1],[0,2,2,1]],[[1,2,2,1],[2,1,0,0],[2,2,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,0],[2,2,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,0],[2,2,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,0],[3,2,3,2],[1,2,2,0]],[[1,2,2,1],[3,1,0,0],[2,2,3,2],[1,2,2,0]],[[1,3,2,1],[2,1,0,0],[2,2,3,2],[1,2,2,0]],[[2,2,2,1],[2,1,0,0],[2,2,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,0],[2,2,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,0],[2,2,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,0],[2,2,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,0],[2,2,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,0],[3,2,3,1],[1,2,2,1]],[[1,2,2,1],[3,1,0,0],[2,2,3,1],[1,2,2,1]],[[1,3,2,1],[2,1,0,0],[2,2,3,1],[1,2,2,1]],[[2,2,2,1],[2,1,0,0],[2,2,3,1],[1,2,2,1]],[[1,2,2,1],[2,1,0,0],[1,3,3,2],[1,2,3,0]],[[1,2,2,1],[2,1,0,0],[1,3,3,2],[1,3,2,0]],[[1,2,2,1],[2,1,0,0],[1,3,3,2],[2,2,2,0]],[[1,2,2,1],[2,1,0,0],[1,4,3,2],[1,2,2,0]],[[1,2,2,1],[2,1,0,0],[1,3,3,1],[1,2,2,2]],[[1,2,2,1],[2,1,0,0],[1,3,3,1],[1,2,3,1]],[[1,2,2,1],[2,1,0,0],[1,3,3,1],[1,3,2,1]],[[1,2,2,1],[2,1,0,0],[1,3,3,1],[2,2,2,1]],[[1,2,2,1],[2,1,0,0],[1,4,3,1],[1,2,2,1]],[[1,2,2,1],[2,0,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,2,1],[2,0,3,2],[2,4,3,0],[1,1,0,0]],[[1,2,2,1],[2,0,3,2],[3,3,3,0],[1,1,0,0]],[[1,2,2,1],[2,0,4,2],[2,3,3,0],[1,1,0,0]],[[1,2,2,1],[3,0,3,2],[2,3,3,0],[1,1,0,0]],[[1,2,2,2],[2,0,3,2],[2,3,3,0],[1,1,0,0]],[[1,2,3,1],[2,0,3,2],[2,3,3,0],[1,1,0,0]],[[1,3,2,1],[2,0,3,2],[2,3,3,0],[1,1,0,0]],[[2,2,2,1],[2,0,3,2],[2,3,3,0],[1,1,0,0]],[[1,2,2,1],[2,0,3,2],[2,4,3,0],[0,2,0,0]],[[1,2,2,1],[2,0,3,2],[3,3,3,0],[0,2,0,0]],[[1,2,2,1],[2,0,4,2],[2,3,3,0],[0,2,0,0]],[[1,2,2,1],[3,0,3,2],[2,3,3,0],[0,2,0,0]],[[1,2,2,2],[2,0,3,2],[2,3,3,0],[0,2,0,0]],[[1,2,3,1],[2,0,3,2],[2,3,3,0],[0,2,0,0]],[[1,3,2,1],[2,0,3,2],[2,3,3,0],[0,2,0,0]],[[2,2,2,1],[2,0,3,2],[2,3,3,0],[0,2,0,0]],[[0,2,0,1],[2,3,0,0],[1,4,3,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,0],[1,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,3,0,0],[1,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,3,0,0],[1,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,0,0],[1,3,3,2],[1,2,2,2]],[[0,2,0,1],[3,3,0,0],[2,2,3,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,0],[3,2,3,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,0],[2,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,3,0,0],[2,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,3,0,0],[2,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,0,0],[2,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,3,0,0],[3,3,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,0],[2,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,0,0],[2,3,2,2],[1,3,2,1]],[[0,2,0,1],[3,3,0,0],[2,3,3,2],[0,2,2,1]],[[0,2,0,1],[2,3,0,0],[3,3,3,2],[0,2,2,1]],[[0,2,0,1],[2,3,0,0],[2,4,3,2],[0,2,2,1]],[[0,2,0,1],[2,3,0,0],[2,3,3,2],[0,3,2,1]],[[0,2,0,1],[2,3,0,0],[2,3,3,2],[0,2,3,1]],[[0,2,0,1],[2,3,0,0],[2,3,3,2],[0,2,2,2]],[[0,2,0,1],[3,3,0,0],[2,3,3,2],[1,1,2,1]],[[0,2,0,1],[2,3,0,0],[3,3,3,2],[1,1,2,1]],[[0,2,0,1],[2,3,0,0],[2,4,3,2],[1,1,2,1]],[[0,2,0,1],[2,3,0,0],[2,3,3,2],[2,1,2,1]],[[0,2,0,1],[2,3,0,1],[0,4,3,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,1],[0,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,3,0,1],[0,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,3,0,1],[0,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,0,1],[0,3,3,2],[1,2,2,2]],[[0,2,0,1],[2,3,0,1],[1,4,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,0,1],[1,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,0,1],[1,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,0,1],[1,3,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,0,1],[1,3,3,1],[1,2,2,2]],[[0,2,0,1],[2,3,0,1],[1,4,3,2],[0,2,2,1]],[[0,2,0,1],[2,3,0,1],[1,3,3,2],[0,3,2,1]],[[0,2,0,1],[2,3,0,1],[1,3,3,2],[0,2,3,1]],[[0,2,0,1],[2,3,0,1],[1,3,3,2],[0,2,2,2]],[[0,2,0,1],[2,3,0,1],[1,4,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,0,1],[1,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,0,1],[1,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,0,1],[1,3,3,2],[1,2,3,0]],[[0,2,0,1],[3,3,0,1],[2,2,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,0,1],[3,2,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,0,1],[2,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,0,1],[2,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,0,1],[2,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,0,1],[2,2,3,1],[1,2,2,2]],[[0,2,0,1],[3,3,0,1],[2,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,0,1],[3,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,0,1],[2,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,0,1],[2,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,0,1],[2,2,3,2],[1,2,3,0]],[[0,2,0,1],[2,3,0,1],[3,3,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,0,1],[2,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,3,0,1],[2,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,3,0,1],[3,3,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,0,1],[2,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,3,0,1],[2,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,3,0,1],[3,3,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,0,1],[2,3,3,0],[2,2,2,1]],[[0,2,0,1],[2,3,0,1],[2,3,3,0],[1,3,2,1]],[[0,2,0,1],[3,3,0,1],[2,3,3,1],[0,2,2,1]],[[0,2,0,1],[2,3,0,1],[3,3,3,1],[0,2,2,1]],[[0,2,0,1],[2,3,0,1],[2,4,3,1],[0,2,2,1]],[[0,2,0,1],[2,3,0,1],[2,3,3,1],[0,3,2,1]],[[0,2,0,1],[2,3,0,1],[2,3,3,1],[0,2,3,1]],[[0,2,0,1],[2,3,0,1],[2,3,3,1],[0,2,2,2]],[[0,2,0,1],[3,3,0,1],[2,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,0,1],[3,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,0,1],[2,4,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,0,1],[2,3,3,1],[2,1,2,1]],[[0,2,0,1],[3,3,0,1],[2,3,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,0,1],[3,3,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,0,1],[2,4,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,0,1],[2,3,3,2],[0,3,2,0]],[[0,2,0,1],[2,3,0,1],[2,3,3,2],[0,2,3,0]],[[0,2,0,1],[3,3,0,1],[2,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,0,1],[3,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,0,1],[2,4,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,0,1],[2,3,3,2],[2,1,2,0]],[[0,2,0,1],[2,3,0,2],[0,2,3,3],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[0,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,3,0,2],[0,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,3,0,2],[0,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,0,2],[0,2,3,2],[1,2,2,2]],[[0,2,0,1],[2,3,0,2],[0,4,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[0,3,2,3],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[0,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,0,2],[0,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,0,2],[0,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,0,2],[0,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,3,0,2],[0,4,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[0,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,0,2],[0,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,0,2],[0,3,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,0,2],[0,3,3,1],[1,2,2,2]],[[0,2,0,1],[2,3,0,2],[0,3,3,3],[1,1,2,1]],[[0,2,0,1],[2,3,0,2],[0,3,3,2],[1,1,3,1]],[[0,2,0,1],[2,3,0,2],[0,3,3,2],[1,1,2,2]],[[0,2,0,1],[2,3,0,2],[0,4,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,0,2],[0,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,0,2],[0,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,0,2],[0,3,3,2],[1,2,3,0]],[[0,2,0,1],[2,3,0,2],[1,2,3,3],[0,2,2,1]],[[0,2,0,1],[2,3,0,2],[1,2,3,2],[0,3,2,1]],[[0,2,0,1],[2,3,0,2],[1,2,3,2],[0,2,3,1]],[[0,2,0,1],[2,3,0,2],[1,2,3,2],[0,2,2,2]],[[0,2,0,1],[2,3,0,2],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,0,2],[1,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,3,0,2],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,3,0,2],[1,3,2,1],[1,2,2,2]],[[0,2,0,1],[2,3,0,2],[1,4,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,2,3],[0,2,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,2,2],[0,3,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,2,2],[0,2,3,1]],[[0,2,0,1],[2,3,0,2],[1,3,2,2],[0,2,2,2]],[[0,2,0,1],[2,3,0,2],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,0,2],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,3,0,2],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,3,0,2],[1,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,3,0,2],[1,4,3,1],[0,2,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,1],[0,3,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,1],[0,2,3,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,1],[0,2,2,2]],[[0,2,0,1],[2,3,0,2],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,3],[0,1,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,2],[0,1,3,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,2],[0,1,2,2]],[[0,2,0,1],[2,3,0,2],[1,4,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,0,2],[1,3,3,2],[0,3,2,0]],[[0,2,0,1],[2,3,0,2],[1,3,3,2],[0,2,3,0]],[[0,2,0,1],[2,3,0,2],[1,3,3,3],[1,0,2,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,2],[1,0,3,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,2],[1,0,2,2]],[[0,2,0,1],[2,3,0,2],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,3,0,2],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,3,0,2],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,0,2],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,3,0,2],[1,3,3,2],[1,3,1,0]],[[0,2,0,1],[3,3,0,2],[2,0,3,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[3,0,3,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,0,3,3],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,0,3,2],[2,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,0,3,2],[1,3,2,1]],[[0,2,0,1],[2,3,0,2],[2,0,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,0,2],[2,0,3,2],[1,2,2,2]],[[0,2,0,1],[3,3,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[3,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,2,1,3],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,2,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,2,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,0,2],[2,2,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,0,2],[2,2,1,2],[1,2,2,2]],[[0,2,0,1],[3,3,0,2],[2,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[3,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,2,2,1],[2,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,2,2,1],[1,3,2,1]],[[0,2,0,1],[2,3,0,2],[2,2,2,1],[1,2,3,1]],[[0,2,0,1],[2,3,0,2],[2,2,2,1],[1,2,2,2]],[[0,2,0,1],[3,3,0,2],[2,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,0,2],[3,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,0,2],[2,2,2,2],[2,2,2,0]],[[0,2,0,1],[2,3,0,2],[2,2,2,2],[1,3,2,0]],[[0,2,0,1],[2,3,0,2],[2,2,2,2],[1,2,3,0]],[[0,2,0,1],[3,3,0,2],[2,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,0,2],[3,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,0,2],[2,2,3,1],[2,2,1,1]],[[0,2,0,1],[2,3,0,2],[2,2,3,1],[1,3,1,1]],[[0,2,0,1],[3,3,0,2],[2,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,0,2],[3,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,0,2],[2,2,3,2],[2,2,0,1]],[[0,2,0,1],[2,3,0,2],[2,2,3,2],[1,3,0,1]],[[0,2,0,1],[3,3,0,2],[2,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,0,2],[3,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,0,2],[2,2,3,2],[2,2,1,0]],[[0,2,0,1],[2,3,0,2],[2,2,3,2],[1,3,1,0]],[[0,2,0,1],[3,3,0,2],[2,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[3,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,0,2],[2,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,0,2],[1,3,2,1]],[[0,2,0,1],[3,3,0,2],[2,3,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[3,3,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,1,1],[2,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,1,1],[1,3,2,1]],[[0,2,0,1],[3,3,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,0,2],[3,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,1,3],[0,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[2,3,0,2],[2,3,1,2],[0,2,2,2]],[[0,2,0,1],[3,3,0,2],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,0,2],[3,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,0,2],[2,4,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,1,2],[2,1,2,1]],[[0,2,0,1],[3,3,0,2],[2,3,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,0,2],[3,3,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,0,2],[2,3,1,2],[2,2,2,0]],[[0,2,0,1],[2,3,0,2],[2,3,1,2],[1,3,2,0]],[[0,2,0,1],[3,3,0,2],[2,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,0,2],[3,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[2,3,0,2],[2,3,2,1],[0,2,2,2]],[[0,2,0,1],[3,3,0,2],[2,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,0,2],[3,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,0,2],[2,4,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,2,1],[2,1,2,1]],[[0,2,0,1],[3,3,0,2],[2,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,0,2],[3,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,0,2],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,0,2],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[2,3,0,2],[2,3,2,2],[0,2,3,0]],[[0,2,0,1],[3,3,0,2],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,0,2],[3,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,0,2],[2,4,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,0,2],[2,3,2,2],[2,1,2,0]],[[0,2,0,1],[3,3,0,2],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,0,2],[3,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,0,2],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[3,3,0,2],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,0,2],[3,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,0,2],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,0,2],[2,3,3,1],[0,3,1,1]],[[0,2,0,1],[3,3,0,2],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,0,2],[3,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,0,2],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,0,2],[2,3,3,1],[2,0,2,1]],[[0,2,0,1],[3,3,0,2],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,0,2],[3,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,0,2],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,0,2],[2,3,3,1],[2,1,1,1]],[[0,2,0,1],[3,3,0,2],[2,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,0,2],[3,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,0,2],[2,4,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,0,2],[2,3,3,1],[2,2,0,1]],[[0,2,0,1],[3,3,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,0,2],[3,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,0,2],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[3,3,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,0,2],[3,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,0,2],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[3,3,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,0,2],[3,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,0,2],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,0,2],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[3,3,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,0,2],[3,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,0,2],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,0,2],[2,3,3,2],[0,3,1,0]],[[0,2,0,1],[3,3,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,0,2],[3,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,0,2],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,0,2],[2,3,3,2],[2,0,1,1]],[[0,2,0,1],[3,3,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,0,2],[3,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,0,2],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,0,2],[2,3,3,2],[2,0,2,0]],[[0,2,0,1],[3,3,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,0,2],[3,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,0,2],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,0,2],[2,3,3,2],[2,1,0,1]],[[0,2,0,1],[3,3,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,0,2],[3,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,0,2],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,0,2],[2,3,3,2],[2,1,1,0]],[[0,2,0,1],[3,3,0,2],[2,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,0,2],[3,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,0,2],[2,4,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[2,0,3,2],[2,4,2,0],[1,2,0,0]],[[1,2,2,1],[2,0,3,2],[3,3,2,0],[1,2,0,0]],[[1,2,2,1],[2,0,4,2],[2,3,2,0],[1,2,0,0]],[[1,2,2,1],[3,0,3,2],[2,3,2,0],[1,2,0,0]],[[1,2,2,2],[2,0,3,2],[2,3,2,0],[1,2,0,0]],[[1,2,3,1],[2,0,3,2],[2,3,2,0],[1,2,0,0]],[[1,3,2,1],[2,0,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,0,1],[2,3,1,0],[0,4,3,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,0],[0,3,3,2],[2,2,2,1]],[[0,2,0,1],[2,3,1,0],[0,3,3,2],[1,3,2,1]],[[0,2,0,1],[2,3,1,0],[0,3,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,1,0],[0,3,3,2],[1,2,2,2]],[[0,2,0,1],[2,3,1,0],[1,4,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,0],[1,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,1,0],[1,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,1,0],[1,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,1,0],[1,3,2,2],[1,2,2,2]],[[0,2,0,1],[2,3,1,0],[1,4,3,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,0],[1,3,3,2],[0,3,2,1]],[[0,2,0,1],[2,3,1,0],[1,3,3,2],[0,2,3,1]],[[0,2,0,1],[2,3,1,0],[1,3,3,2],[0,2,2,2]],[[0,2,0,1],[2,3,1,0],[1,4,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,1,0],[1,3,3,2],[2,2,1,1]],[[0,2,0,1],[2,3,1,0],[1,3,3,2],[1,3,1,1]],[[0,2,0,1],[3,3,1,0],[2,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,0],[3,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,0],[2,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,1,0],[2,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,1,0],[2,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,1,0],[2,2,2,2],[1,2,2,2]],[[0,2,0,1],[3,3,1,0],[2,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,1,0],[3,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,1,0],[2,2,3,2],[2,2,1,1]],[[0,2,0,1],[2,3,1,0],[2,2,3,2],[1,3,1,1]],[[0,2,0,1],[2,3,1,0],[3,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,0],[2,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,1,0],[2,3,1,2],[1,3,2,1]],[[0,2,0,1],[3,3,1,0],[2,3,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,0],[3,3,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,0],[2,4,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,0],[2,3,2,2],[0,3,2,1]],[[0,2,0,1],[2,3,1,0],[2,3,2,2],[0,2,3,1]],[[0,2,0,1],[2,3,1,0],[2,3,2,2],[0,2,2,2]],[[0,2,0,1],[3,3,1,0],[2,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,0],[3,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,0],[2,4,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,0],[2,3,2,2],[2,1,2,1]],[[0,2,0,1],[3,3,1,0],[2,3,3,2],[0,1,2,1]],[[0,2,0,1],[2,3,1,0],[3,3,3,2],[0,1,2,1]],[[0,2,0,1],[2,3,1,0],[2,4,3,2],[0,1,2,1]],[[0,2,0,1],[3,3,1,0],[2,3,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,1,0],[3,3,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,1,0],[2,4,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,1,0],[2,3,3,2],[0,3,1,1]],[[0,2,0,1],[3,3,1,0],[2,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,1,0],[3,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,1,0],[2,4,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,1,0],[2,3,3,2],[2,0,2,1]],[[0,2,0,1],[3,3,1,0],[2,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,1,0],[3,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,1,0],[2,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,1,0],[2,3,3,2],[2,1,1,1]],[[0,2,0,1],[2,3,1,0],[3,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,1,0],[2,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,1,0],[2,3,3,2],[2,2,0,1]],[[2,2,2,1],[2,0,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,0,1],[2,3,1,1],[0,4,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[0,3,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,1,1],[0,3,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,1,1],[0,3,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,1,1],[0,3,3,1],[1,2,2,2]],[[0,2,0,1],[2,3,1,1],[0,4,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,1],[0,3,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,1,1],[0,3,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,1,1],[0,3,3,2],[1,2,3,0]],[[0,2,0,1],[2,3,1,1],[1,4,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[1,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,1,1],[1,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,1,1],[1,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,1,1],[1,3,1,2],[1,2,2,2]],[[0,2,0,1],[2,3,1,1],[1,4,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[1,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,3,1,1],[1,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,3,1,1],[1,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,3,1,1],[1,3,2,1],[1,2,2,2]],[[0,2,0,1],[2,3,1,1],[1,4,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,1],[1,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,3,1,1],[1,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,3,1,1],[1,3,2,2],[1,2,3,0]],[[0,2,0,1],[2,3,1,1],[1,4,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[1,3,3,0],[2,2,2,1]],[[0,2,0,1],[2,3,1,1],[1,3,3,0],[1,3,2,1]],[[0,2,0,1],[2,3,1,1],[1,3,3,0],[1,2,3,1]],[[0,2,0,1],[2,3,1,1],[1,4,3,1],[0,2,2,1]],[[0,2,0,1],[2,3,1,1],[1,3,3,1],[0,3,2,1]],[[0,2,0,1],[2,3,1,1],[1,3,3,1],[0,2,3,1]],[[0,2,0,1],[2,3,1,1],[1,3,3,1],[0,2,2,2]],[[0,2,0,1],[2,3,1,1],[1,4,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,1,1],[1,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,3,1,1],[1,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,3,1,1],[1,4,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,1,1],[1,3,3,2],[0,3,2,0]],[[0,2,0,1],[2,3,1,1],[1,3,3,2],[0,2,3,0]],[[0,2,0,1],[2,3,1,1],[1,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,1,1],[1,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,3,1,1],[1,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,3,1,1],[1,4,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,1,1],[1,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,3,1,1],[1,3,3,2],[1,3,1,0]],[[0,2,0,1],[3,3,1,1],[2,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[3,2,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,2,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,2,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,1,1],[2,2,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,1,1],[2,2,1,2],[1,2,2,2]],[[0,2,0,1],[3,3,1,1],[2,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[3,2,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,2,2,1],[2,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,2,2,1],[1,3,2,1]],[[0,2,0,1],[2,3,1,1],[2,2,2,1],[1,2,3,1]],[[0,2,0,1],[2,3,1,1],[2,2,2,1],[1,2,2,2]],[[0,2,0,1],[3,3,1,1],[2,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,1],[3,2,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,1],[2,2,2,2],[2,2,2,0]],[[0,2,0,1],[2,3,1,1],[2,2,2,2],[1,3,2,0]],[[0,2,0,1],[2,3,1,1],[2,2,2,2],[1,2,3,0]],[[0,2,0,1],[3,3,1,1],[2,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[3,2,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,2,3,0],[2,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,2,3,0],[1,3,2,1]],[[0,2,0,1],[2,3,1,1],[2,2,3,0],[1,2,3,1]],[[0,2,0,1],[3,3,1,1],[2,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,1,1],[3,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,1,1],[2,2,3,1],[2,2,1,1]],[[0,2,0,1],[2,3,1,1],[2,2,3,1],[1,3,1,1]],[[0,2,0,1],[3,3,1,1],[2,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,1,1],[3,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,1,1],[2,2,3,2],[2,2,0,1]],[[0,2,0,1],[2,3,1,1],[2,2,3,2],[1,3,0,1]],[[0,2,0,1],[3,3,1,1],[2,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,1,1],[3,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,1,1],[2,2,3,2],[2,2,1,0]],[[0,2,0,1],[2,3,1,1],[2,2,3,2],[1,3,1,0]],[[0,2,0,1],[3,3,1,1],[2,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[3,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,0,2],[2,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,0,2],[1,3,2,1]],[[0,2,0,1],[3,3,1,1],[2,3,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[3,3,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,1,1],[2,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,1,1],[1,3,2,1]],[[0,2,0,1],[3,3,1,1],[2,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,1],[3,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,4,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,1,2],[0,3,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,1,2],[0,2,3,1]],[[0,2,0,1],[2,3,1,1],[2,3,1,2],[0,2,2,2]],[[0,2,0,1],[3,3,1,1],[2,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,1],[3,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,1],[2,4,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,1,2],[2,1,2,1]],[[0,2,0,1],[3,3,1,1],[2,3,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,1],[3,3,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,1],[2,3,1,2],[2,2,2,0]],[[0,2,0,1],[2,3,1,1],[2,3,1,2],[1,3,2,0]],[[0,2,0,1],[2,3,1,1],[3,3,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,2,0],[2,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,2,0],[1,3,2,1]],[[0,2,0,1],[3,3,1,1],[2,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,1,1],[3,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,4,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,2,1],[0,3,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,2,1],[0,2,3,1]],[[0,2,0,1],[2,3,1,1],[2,3,2,1],[0,2,2,2]],[[0,2,0,1],[3,3,1,1],[2,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,1,1],[3,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,1,1],[2,4,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,2,1],[2,1,2,1]],[[0,2,0,1],[3,3,1,1],[2,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,1,1],[3,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,1,1],[2,4,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,1,1],[2,3,2,2],[0,3,2,0]],[[0,2,0,1],[2,3,1,1],[2,3,2,2],[0,2,3,0]],[[0,2,0,1],[3,3,1,1],[2,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,1,1],[3,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,1,1],[2,4,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,1,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,3,2],[2,3,2,0],[2,1,1,0]],[[1,2,2,1],[2,0,3,2],[2,4,2,0],[1,1,1,0]],[[1,2,2,1],[2,0,3,2],[3,3,2,0],[1,1,1,0]],[[1,2,2,1],[2,0,4,2],[2,3,2,0],[1,1,1,0]],[[1,2,2,1],[3,0,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,0,1],[3,3,1,1],[2,3,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,1,1],[3,3,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,4,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,3,0],[0,3,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,3,0],[0,2,3,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,1,1],[3,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,1,1],[2,4,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,3,0],[2,1,2,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,1,1],[3,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,1,1],[2,4,3,1],[0,1,2,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,1,1],[3,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,1,1],[2,4,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,1,1],[2,3,3,1],[0,3,1,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,1,1],[3,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,1,1],[2,4,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,1,1],[2,3,3,1],[2,0,2,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,1,1],[3,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,1,1],[2,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,1,1],[2,3,3,1],[2,1,1,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,1,1],[3,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,1,1],[2,4,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,1,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,2],[2,0,3,2],[2,3,2,0],[1,1,1,0]],[[1,2,3,1],[2,0,3,2],[2,3,2,0],[1,1,1,0]],[[1,3,2,1],[2,0,3,2],[2,3,2,0],[1,1,1,0]],[[2,2,2,1],[2,0,3,2],[2,3,2,0],[1,1,1,0]],[[1,2,2,1],[2,0,3,2],[2,3,2,0],[2,1,0,1]],[[1,2,2,1],[2,0,3,2],[2,4,2,0],[1,1,0,1]],[[1,2,2,1],[2,0,3,2],[3,3,2,0],[1,1,0,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,1,1],[3,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,1,1],[2,4,3,2],[0,1,1,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,1,1],[3,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,1,1],[2,4,3,2],[0,1,2,0]],[[0,2,0,1],[3,3,1,1],[2,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,1,1],[3,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,1,1],[2,4,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,1,1],[2,3,3,2],[0,3,0,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,1,1],[3,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,1,1],[2,4,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,1,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,4,2],[2,3,2,0],[1,1,0,1]],[[1,2,2,1],[3,0,3,2],[2,3,2,0],[1,1,0,1]],[[1,2,2,2],[2,0,3,2],[2,3,2,0],[1,1,0,1]],[[1,2,3,1],[2,0,3,2],[2,3,2,0],[1,1,0,1]],[[1,3,2,1],[2,0,3,2],[2,3,2,0],[1,1,0,1]],[[2,2,2,1],[2,0,3,2],[2,3,2,0],[1,1,0,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,1,1],[3,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,1,1],[2,4,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,1,1],[2,3,3,2],[2,0,1,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,1,1],[3,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,1,1],[2,4,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,1,1],[2,3,3,2],[2,0,2,0]],[[0,2,0,1],[3,3,1,1],[2,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,1,1],[3,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,1,1],[2,4,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,1,1],[2,3,3,2],[2,1,0,1]],[[0,2,0,1],[3,3,1,1],[2,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,1,1],[3,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,1,1],[2,4,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,1,1],[2,3,3,2],[2,1,1,0]],[[0,2,0,1],[3,3,1,1],[2,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,1,1],[3,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,1,1],[2,4,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,1,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,3,2],[2,3,2,0],[2,0,2,0]],[[1,2,2,1],[2,0,3,2],[2,4,2,0],[1,0,2,0]],[[1,2,2,1],[2,0,3,2],[3,3,2,0],[1,0,2,0]],[[1,2,2,1],[2,0,4,2],[2,3,2,0],[1,0,2,0]],[[1,2,2,1],[3,0,3,2],[2,3,2,0],[1,0,2,0]],[[1,2,2,2],[2,0,3,2],[2,3,2,0],[1,0,2,0]],[[1,2,3,1],[2,0,3,2],[2,3,2,0],[1,0,2,0]],[[1,3,2,1],[2,0,3,2],[2,3,2,0],[1,0,2,0]],[[2,2,2,1],[2,0,3,2],[2,3,2,0],[1,0,2,0]],[[1,2,2,1],[2,0,3,2],[3,3,2,0],[1,0,1,1]],[[1,2,2,1],[2,0,4,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[3,0,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,0,2],[2,3,1,2],[0,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,3],[0,2,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,2,2,3],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,1,2],[0,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,1,2],[0,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,3,1,2],[0,2,4,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,1,2],[0,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,1,2],[0,2,3,1],[1,2,2,2]],[[0,2,0,2],[2,3,1,2],[0,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,1,3],[0,2,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[0,2,4,2],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[0,2,3,3],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[0,2,3,2],[1,2,1,2]],[[0,2,0,2],[2,3,1,2],[0,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,3],[0,2,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[0,2,4,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[0,2,3,3],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[0,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,1,2],[0,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,1,2],[0,2,3,2],[1,2,3,0]],[[0,3,0,1],[2,3,1,2],[0,3,1,2],[1,2,2,1]],[[0,2,0,2],[2,3,1,2],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[3,3,1,2],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,4,1,2],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,3],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,4,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,1,2],[0,3,1,2],[1,2,2,2]],[[0,3,0,1],[2,3,1,2],[0,3,2,1],[1,2,2,1]],[[0,2,0,1],[3,3,1,2],[0,3,2,1],[1,2,2,1]],[[0,2,0,1],[2,4,1,2],[0,3,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,4,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,3,1,2],[0,3,2,1],[1,2,2,2]],[[0,2,0,2],[2,3,1,2],[0,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,3],[0,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,2,3],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,2,2],[1,1,3,1]],[[0,2,0,1],[2,3,1,2],[0,3,2,2],[1,1,2,2]],[[0,3,0,1],[2,3,1,2],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[3,3,1,2],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[2,4,1,2],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[0,4,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[0,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,3,1,2],[0,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,3,1,2],[0,3,2,2],[1,2,3,0]],[[0,3,0,1],[2,3,1,2],[0,3,3,1],[1,1,2,1]],[[0,2,0,1],[3,3,1,2],[0,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,4,1,2],[0,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[0,4,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,4,1],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,1],[1,1,3,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,1],[1,1,2,2]],[[0,3,0,1],[2,3,1,2],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[3,3,1,2],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[2,4,1,2],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[0,4,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[0,3,4,1],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,1],[1,3,1,1]],[[0,2,0,2],[2,3,1,2],[0,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,1,3],[0,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,4,2],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,3],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,2],[1,0,2,2]],[[0,3,0,1],[2,3,1,2],[0,3,3,2],[1,1,1,1]],[[0,2,0,2],[2,3,1,2],[0,3,3,2],[1,1,1,1]],[[0,2,0,1],[3,3,1,2],[0,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,4,1,2],[0,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,1,3],[0,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[0,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[0,3,4,2],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,3],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,2],[1,1,1,2]],[[0,3,0,1],[2,3,1,2],[0,3,3,2],[1,1,2,0]],[[0,2,0,2],[2,3,1,2],[0,3,3,2],[1,1,2,0]],[[0,2,0,1],[3,3,1,2],[0,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,4,1,2],[0,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,1,3],[0,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,1,2],[0,4,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,1,2],[0,3,4,2],[1,1,2,0]],[[0,2,0,1],[2,3,1,2],[0,3,3,3],[1,1,2,0]],[[0,2,0,1],[2,3,1,2],[0,3,3,2],[1,1,3,0]],[[0,3,0,1],[2,3,1,2],[0,3,3,2],[1,2,0,1]],[[0,2,0,2],[2,3,1,2],[0,3,3,2],[1,2,0,1]],[[0,2,0,1],[3,3,1,2],[0,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,4,1,2],[0,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,1,3],[0,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,1,2],[0,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,1,2],[0,3,4,2],[1,2,0,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,3],[1,2,0,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,3,1,2],[0,3,3,2],[1,2,0,2]],[[0,3,0,1],[2,3,1,2],[0,3,3,2],[1,2,1,0]],[[0,2,0,2],[2,3,1,2],[0,3,3,2],[1,2,1,0]],[[0,2,0,1],[3,3,1,2],[0,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,4,1,2],[0,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,1,3],[0,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,1,2],[0,4,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,1,2],[0,3,4,2],[1,2,1,0]],[[0,2,0,1],[2,3,1,2],[0,3,3,3],[1,2,1,0]],[[0,2,0,1],[2,3,1,2],[0,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,2],[2,0,3,2],[2,3,2,0],[1,0,1,1]],[[1,2,3,1],[2,0,3,2],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[2,0,3,2],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[2,0,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,0,2],[2,3,1,2],[1,2,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,3],[1,2,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[1,2,2,3],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[1,2,2,2],[0,3,2,1]],[[0,2,0,1],[2,3,1,2],[1,2,2,2],[0,2,3,1]],[[0,2,0,1],[2,3,1,2],[1,2,2,2],[0,2,2,2]],[[0,2,0,1],[2,3,1,2],[1,2,4,1],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[1,2,3,1],[0,3,2,1]],[[0,2,0,1],[2,3,1,2],[1,2,3,1],[0,2,3,1]],[[0,2,0,1],[2,3,1,2],[1,2,3,1],[0,2,2,2]],[[0,2,0,2],[2,3,1,2],[1,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,1,3],[1,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,1,2],[1,2,4,2],[0,2,1,1]],[[0,2,0,1],[2,3,1,2],[1,2,3,3],[0,2,1,1]],[[0,2,0,1],[2,3,1,2],[1,2,3,2],[0,2,1,2]],[[0,2,0,2],[2,3,1,2],[1,2,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,1,3],[1,2,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,1,2],[1,2,4,2],[0,2,2,0]],[[0,2,0,1],[2,3,1,2],[1,2,3,3],[0,2,2,0]],[[0,2,0,1],[2,3,1,2],[1,2,3,2],[0,3,2,0]],[[0,2,0,1],[2,3,1,2],[1,2,3,2],[0,2,3,0]],[[0,3,0,1],[2,3,1,2],[1,3,1,2],[0,2,2,1]],[[0,2,0,2],[2,3,1,2],[1,3,1,2],[0,2,2,1]],[[0,2,0,1],[3,3,1,2],[1,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,4,1,2],[1,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,3],[1,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[1,4,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,1,3],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,1,2],[0,3,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,1,2],[0,2,3,1]],[[0,2,0,1],[2,3,1,2],[1,3,1,2],[0,2,2,2]],[[0,3,0,1],[2,3,1,2],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[3,3,1,2],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,4,1,2],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[1,4,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[1,4,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,0],[2,2,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,0],[1,3,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,0],[1,2,3,1]],[[0,3,0,1],[2,3,1,2],[1,3,2,1],[0,2,2,1]],[[0,2,0,1],[3,3,1,2],[1,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,4,1,2],[1,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[1,4,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,1],[0,3,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,1],[0,2,3,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,1],[0,2,2,2]],[[0,3,0,1],[2,3,1,2],[1,3,2,1],[1,1,2,1]],[[0,2,0,1],[3,3,1,2],[1,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,4,1,2],[1,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[1,4,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[1,4,2,1],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[1,3,2,1],[2,2,2,0]],[[0,2,0,1],[2,3,1,2],[1,3,2,1],[1,3,2,0]],[[0,2,0,2],[2,3,1,2],[1,3,2,2],[0,1,2,1]],[[0,2,0,1],[2,3,1,3],[1,3,2,2],[0,1,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,3],[0,1,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,2],[0,1,3,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,2],[0,1,2,2]],[[0,3,0,1],[2,3,1,2],[1,3,2,2],[0,2,2,0]],[[0,2,0,1],[3,3,1,2],[1,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,4,1,2],[1,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,1,2],[1,4,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,1,2],[1,3,2,2],[0,3,2,0]],[[0,2,0,1],[2,3,1,2],[1,3,2,2],[0,2,3,0]],[[0,2,0,2],[2,3,1,2],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[2,3,1,3],[1,3,2,2],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,3],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,2],[1,0,3,1]],[[0,2,0,1],[2,3,1,2],[1,3,2,2],[1,0,2,2]],[[0,3,0,1],[2,3,1,2],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[3,3,1,2],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,4,1,2],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,1,2],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,2],[2,3,2,0],[0,3,1,0]],[[1,2,2,1],[2,0,3,2],[2,4,2,0],[0,2,1,0]],[[1,2,2,1],[2,0,3,2],[3,3,2,0],[0,2,1,0]],[[1,2,2,1],[2,0,4,2],[2,3,2,0],[0,2,1,0]],[[1,2,2,1],[3,0,3,2],[2,3,2,0],[0,2,1,0]],[[1,2,2,2],[2,0,3,2],[2,3,2,0],[0,2,1,0]],[[1,2,3,1],[2,0,3,2],[2,3,2,0],[0,2,1,0]],[[1,3,2,1],[2,0,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,0,1],[2,3,1,2],[1,4,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,0],[2,2,1,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,0],[1,3,1,1]],[[0,3,0,1],[2,3,1,2],[1,3,3,1],[0,1,2,1]],[[0,2,0,1],[3,3,1,2],[1,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,4,1,2],[1,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,1,2],[1,4,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,4,1],[0,1,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,1],[0,1,3,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,1],[0,1,2,2]],[[0,3,0,1],[2,3,1,2],[1,3,3,1],[0,2,1,1]],[[0,2,0,1],[3,3,1,2],[1,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,4,1,2],[1,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,1,2],[1,4,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,1,2],[1,3,4,1],[0,2,1,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,1],[0,3,1,1]],[[0,3,0,1],[2,3,1,2],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[3,3,1,2],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,4,1,2],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[1,4,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,4,1],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,1],[1,0,3,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,1],[1,0,2,2]],[[0,3,0,1],[2,3,1,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[3,3,1,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,4,1,2],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[1,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[1,3,4,1],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[1,4,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,1,2],[1,3,3,1],[2,2,1,0]],[[0,2,0,1],[2,3,1,2],[1,3,3,1],[1,3,1,0]],[[2,2,2,1],[2,0,3,2],[2,3,2,0],[0,2,1,0]],[[1,2,2,1],[2,0,3,2],[2,4,2,0],[0,2,0,1]],[[1,2,2,1],[2,0,3,2],[3,3,2,0],[0,2,0,1]],[[1,2,2,1],[2,0,4,2],[2,3,2,0],[0,2,0,1]],[[1,2,2,1],[3,0,3,2],[2,3,2,0],[0,2,0,1]],[[1,2,2,2],[2,0,3,2],[2,3,2,0],[0,2,0,1]],[[1,2,3,1],[2,0,3,2],[2,3,2,0],[0,2,0,1]],[[1,3,2,1],[2,0,3,2],[2,3,2,0],[0,2,0,1]],[[2,2,2,1],[2,0,3,2],[2,3,2,0],[0,2,0,1]],[[0,2,0,2],[2,3,1,2],[1,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,1,3],[1,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,4,2],[0,0,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,3],[0,0,2,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,2],[0,0,2,2]],[[0,3,0,1],[2,3,1,2],[1,3,3,2],[0,1,1,1]],[[0,2,0,2],[2,3,1,2],[1,3,3,2],[0,1,1,1]],[[0,2,0,1],[3,3,1,2],[1,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,4,1,2],[1,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,1,3],[1,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,1,2],[1,4,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,1,2],[1,3,4,2],[0,1,1,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,3],[0,1,1,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,2],[0,1,1,2]],[[0,3,0,1],[2,3,1,2],[1,3,3,2],[0,1,2,0]],[[0,2,0,2],[2,3,1,2],[1,3,3,2],[0,1,2,0]],[[0,2,0,1],[3,3,1,2],[1,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,4,1,2],[1,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,1,3],[1,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,1,2],[1,4,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,1,2],[1,3,4,2],[0,1,2,0]],[[0,2,0,1],[2,3,1,2],[1,3,3,3],[0,1,2,0]],[[0,2,0,1],[2,3,1,2],[1,3,3,2],[0,1,3,0]],[[0,3,0,1],[2,3,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,0,2],[2,3,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,0,1],[3,3,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,4,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,1,3],[1,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,1,2],[1,4,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,1,2],[1,3,4,2],[0,2,0,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,3],[0,2,0,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,2],[0,3,0,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,2],[0,2,0,2]],[[0,3,0,1],[2,3,1,2],[1,3,3,2],[0,2,1,0]],[[0,2,0,2],[2,3,1,2],[1,3,3,2],[0,2,1,0]],[[0,2,0,1],[3,3,1,2],[1,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,4,1,2],[1,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,1,3],[1,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,1,2],[1,4,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,1,2],[1,3,4,2],[0,2,1,0]],[[0,2,0,1],[2,3,1,2],[1,3,3,3],[0,2,1,0]],[[0,2,0,1],[2,3,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,3,2],[2,4,2,0],[0,1,2,0]],[[1,2,2,1],[2,0,3,2],[3,3,2,0],[0,1,2,0]],[[0,3,0,1],[2,3,1,2],[1,3,3,2],[1,0,1,1]],[[0,2,0,2],[2,3,1,2],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[3,3,1,2],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,4,1,2],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,1,3],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,1,2],[1,4,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,1,2],[1,3,4,2],[1,0,1,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,3],[1,0,1,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,2],[1,0,1,2]],[[0,3,0,1],[2,3,1,2],[1,3,3,2],[1,0,2,0]],[[0,2,0,2],[2,3,1,2],[1,3,3,2],[1,0,2,0]],[[0,2,0,1],[3,3,1,2],[1,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,4,1,2],[1,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,1,3],[1,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,1,2],[1,4,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,1,2],[1,3,4,2],[1,0,2,0]],[[0,2,0,1],[2,3,1,2],[1,3,3,3],[1,0,2,0]],[[0,2,0,1],[2,3,1,2],[1,3,3,2],[1,0,3,0]],[[0,3,0,1],[2,3,1,2],[1,3,3,2],[1,1,0,1]],[[0,2,0,2],[2,3,1,2],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[3,3,1,2],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,4,1,2],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,1,3],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,1,2],[1,4,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,1,2],[1,3,4,2],[1,1,0,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,3],[1,1,0,1]],[[0,2,0,1],[2,3,1,2],[1,3,3,2],[1,1,0,2]],[[0,3,0,1],[2,3,1,2],[1,3,3,2],[1,1,1,0]],[[0,2,0,2],[2,3,1,2],[1,3,3,2],[1,1,1,0]],[[0,2,0,1],[3,3,1,2],[1,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,4,1,2],[1,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,1,3],[1,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,1,2],[1,4,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,1,2],[1,3,4,2],[1,1,1,0]],[[0,2,0,1],[2,3,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,4,2],[2,3,2,0],[0,1,2,0]],[[1,2,2,1],[3,0,3,2],[2,3,2,0],[0,1,2,0]],[[1,2,2,2],[2,0,3,2],[2,3,2,0],[0,1,2,0]],[[1,2,3,1],[2,0,3,2],[2,3,2,0],[0,1,2,0]],[[1,3,2,1],[2,0,3,2],[2,3,2,0],[0,1,2,0]],[[2,2,2,1],[2,0,3,2],[2,3,2,0],[0,1,2,0]],[[1,2,2,1],[2,0,4,2],[2,3,2,0],[0,1,1,1]],[[1,2,2,1],[3,0,3,2],[2,3,2,0],[0,1,1,1]],[[1,2,2,2],[2,0,3,2],[2,3,2,0],[0,1,1,1]],[[1,2,3,1],[2,0,3,2],[2,3,2,0],[0,1,1,1]],[[0,3,0,1],[2,3,1,2],[1,3,3,2],[1,2,0,0]],[[0,2,0,1],[3,3,1,2],[1,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,4,1,2],[1,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,1,2],[1,4,3,2],[1,2,0,0]],[[1,3,2,1],[2,0,3,2],[2,3,2,0],[0,1,1,1]],[[2,2,2,1],[2,0,3,2],[2,3,2,0],[0,1,1,1]],[[0,3,0,1],[2,3,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,0,2],[2,3,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[3,3,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,4,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,3],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[3,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,0,2,3],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,0,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,0,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,1,2],[2,0,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,1,2],[2,0,2,2],[1,2,2,2]],[[0,3,0,1],[2,3,1,2],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[3,3,1,2],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,4,1,2],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[3,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,0,4,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,0,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,0,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,1,2],[2,0,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,1,2],[2,0,3,1],[1,2,2,2]],[[0,2,0,2],[2,3,1,2],[2,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,1,3],[2,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[2,0,4,2],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[2,0,3,3],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[2,0,3,2],[1,2,1,2]],[[0,3,0,1],[2,3,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,0,2],[2,3,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[3,3,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,4,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,3],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[3,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,0,4,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,0,3,3],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,0,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,0,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,1,2],[2,0,3,2],[1,2,3,0]],[[0,3,0,1],[2,3,1,2],[2,1,1,2],[1,2,2,1]],[[0,2,0,2],[2,3,1,2],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[3,3,1,2],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,4,1,2],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,3],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[3,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,1,1,3],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,1,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,1,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,1,2],[2,1,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,1,2],[2,1,1,2],[1,2,2,2]],[[0,3,0,1],[2,3,1,2],[2,1,2,1],[1,2,2,1]],[[0,2,0,1],[3,3,1,2],[2,1,2,1],[1,2,2,1]],[[0,2,0,1],[2,4,1,2],[2,1,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[3,1,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,1,2,1],[2,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,1,2,1],[1,3,2,1]],[[0,2,0,1],[2,3,1,2],[2,1,2,1],[1,2,3,1]],[[0,2,0,1],[2,3,1,2],[2,1,2,1],[1,2,2,2]],[[0,3,0,1],[2,3,1,2],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[3,3,1,2],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,4,1,2],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[3,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,1,2,2],[2,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,1,2,2],[1,3,2,0]],[[0,2,0,1],[2,3,1,2],[2,1,2,2],[1,2,3,0]],[[0,3,0,1],[2,3,1,2],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[3,3,1,2],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,4,1,2],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[3,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[2,1,3,1],[2,2,1,1]],[[0,2,0,1],[2,3,1,2],[2,1,3,1],[1,3,1,1]],[[0,3,0,1],[2,3,1,2],[2,1,3,2],[1,2,0,1]],[[0,2,0,1],[3,3,1,2],[2,1,3,2],[1,2,0,1]],[[0,2,0,1],[2,4,1,2],[2,1,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,1,2],[3,1,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,1,2],[2,1,3,2],[2,2,0,1]],[[0,2,0,1],[2,3,1,2],[2,1,3,2],[1,3,0,1]],[[0,3,0,1],[2,3,1,2],[2,1,3,2],[1,2,1,0]],[[0,2,0,1],[3,3,1,2],[2,1,3,2],[1,2,1,0]],[[0,2,0,1],[2,4,1,2],[2,1,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,1,2],[3,1,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,1,2],[2,1,3,2],[2,2,1,0]],[[0,2,0,1],[2,3,1,2],[2,1,3,2],[1,3,1,0]],[[0,3,0,1],[2,3,1,2],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[3,3,1,2],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[2,4,1,2],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[3,2,1,2],[0,2,2,1]],[[0,3,0,1],[2,3,1,2],[2,2,1,2],[1,1,2,1]],[[0,2,0,1],[3,3,1,2],[2,2,1,2],[1,1,2,1]],[[0,2,0,1],[2,4,1,2],[2,2,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[3,2,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[2,2,1,2],[2,1,2,1]],[[0,2,0,1],[3,3,1,2],[2,2,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[3,2,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,2,2,0],[2,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,2,2,0],[1,3,2,1]],[[0,2,0,1],[2,3,1,2],[2,2,2,0],[1,2,3,1]],[[0,3,0,1],[2,3,1,2],[2,2,2,1],[0,2,2,1]],[[0,2,0,1],[3,3,1,2],[2,2,2,1],[0,2,2,1]],[[0,2,0,1],[2,4,1,2],[2,2,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[3,2,2,1],[0,2,2,1]],[[0,3,0,1],[2,3,1,2],[2,2,2,1],[1,1,2,1]],[[0,2,0,1],[3,3,1,2],[2,2,2,1],[1,1,2,1]],[[0,2,0,1],[2,4,1,2],[2,2,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[3,2,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[2,2,2,1],[2,1,2,1]],[[0,2,0,1],[3,3,1,2],[2,2,2,1],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[3,2,2,1],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,2,2,1],[2,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,2,2,1],[1,3,2,0]],[[0,3,0,1],[2,3,1,2],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[3,3,1,2],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[2,4,1,2],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,1,2],[3,2,2,2],[0,2,2,0]],[[0,3,0,1],[2,3,1,2],[2,2,2,2],[1,1,2,0]],[[0,2,0,1],[3,3,1,2],[2,2,2,2],[1,1,2,0]],[[0,2,0,1],[2,4,1,2],[2,2,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,1,2],[3,2,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,1,2],[2,2,2,2],[2,1,2,0]],[[0,2,0,1],[3,3,1,2],[2,2,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[3,2,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,1,2],[2,2,3,0],[2,2,1,1]],[[0,2,0,1],[2,3,1,2],[2,2,3,0],[1,3,1,1]],[[0,3,0,1],[2,3,1,2],[2,2,3,1],[0,1,2,1]],[[0,2,0,1],[3,3,1,2],[2,2,3,1],[0,1,2,1]],[[0,2,0,1],[2,4,1,2],[2,2,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,1,2],[3,2,3,1],[0,1,2,1]],[[0,3,0,1],[2,3,1,2],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[3,3,1,2],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,4,1,2],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,1,2],[3,2,3,1],[0,2,1,1]],[[0,3,0,1],[2,3,1,2],[2,2,3,1],[1,0,2,1]],[[0,2,0,1],[3,3,1,2],[2,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,4,1,2],[2,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[3,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[2,2,3,1],[2,0,2,1]],[[0,3,0,1],[2,3,1,2],[2,2,3,1],[1,1,1,1]],[[0,2,0,1],[3,3,1,2],[2,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,4,1,2],[2,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[3,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[2,2,3,1],[2,1,1,1]],[[0,2,0,1],[3,3,1,2],[2,2,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,1,2],[3,2,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,1,2],[2,2,3,1],[2,2,1,0]],[[0,2,0,1],[2,3,1,2],[2,2,3,1],[1,3,1,0]],[[0,3,0,1],[2,3,1,2],[2,2,3,2],[0,1,1,1]],[[0,2,0,1],[3,3,1,2],[2,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,4,1,2],[2,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,1,2],[3,2,3,2],[0,1,1,1]],[[0,3,0,1],[2,3,1,2],[2,2,3,2],[0,1,2,0]],[[0,2,0,1],[3,3,1,2],[2,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,4,1,2],[2,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,1,2],[3,2,3,2],[0,1,2,0]],[[0,3,0,1],[2,3,1,2],[2,2,3,2],[0,2,0,1]],[[0,2,0,1],[3,3,1,2],[2,2,3,2],[0,2,0,1]],[[0,2,0,1],[2,4,1,2],[2,2,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,1,2],[3,2,3,2],[0,2,0,1]],[[0,3,0,1],[2,3,1,2],[2,2,3,2],[0,2,1,0]],[[0,2,0,1],[3,3,1,2],[2,2,3,2],[0,2,1,0]],[[0,2,0,1],[2,4,1,2],[2,2,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,1,2],[3,2,3,2],[0,2,1,0]],[[0,3,0,1],[2,3,1,2],[2,2,3,2],[1,0,1,1]],[[0,2,0,1],[3,3,1,2],[2,2,3,2],[1,0,1,1]],[[0,2,0,1],[2,4,1,2],[2,2,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,1,2],[3,2,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,1,2],[2,2,3,2],[2,0,1,1]],[[0,3,0,1],[2,3,1,2],[2,2,3,2],[1,0,2,0]],[[0,2,0,1],[3,3,1,2],[2,2,3,2],[1,0,2,0]],[[0,2,0,1],[2,4,1,2],[2,2,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,1,2],[3,2,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,1,2],[2,2,3,2],[2,0,2,0]],[[0,3,0,1],[2,3,1,2],[2,2,3,2],[1,1,0,1]],[[0,2,0,1],[3,3,1,2],[2,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,4,1,2],[2,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,1,2],[3,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,1,2],[2,2,3,2],[2,1,0,1]],[[0,3,0,1],[2,3,1,2],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[3,3,1,2],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[2,4,1,2],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,1,2],[3,2,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,1,2],[2,2,3,2],[2,1,1,0]],[[0,3,0,1],[2,3,1,2],[2,2,3,2],[1,2,0,0]],[[0,2,0,1],[3,3,1,2],[2,2,3,2],[1,2,0,0]],[[0,2,0,1],[2,4,1,2],[2,2,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,1,2],[3,2,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,1,2],[2,2,3,2],[2,2,0,0]],[[0,2,0,1],[3,3,1,2],[2,3,1,0],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[3,3,1,0],[1,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,3,1,0],[2,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,3,1,0],[1,3,2,1]],[[0,2,0,1],[3,3,1,2],[2,3,1,1],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[3,3,1,1],[1,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,3,1,1],[2,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,3,1,1],[1,3,2,0]],[[0,2,0,1],[3,3,1,2],[2,3,2,0],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[3,3,2,0],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,4,2,0],[0,2,2,1]],[[0,2,0,1],[2,3,1,2],[2,3,2,0],[0,3,2,1]],[[0,2,0,1],[2,3,1,2],[2,3,2,0],[0,2,3,1]],[[0,2,0,1],[3,3,1,2],[2,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[3,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[2,4,2,0],[1,1,2,1]],[[0,2,0,1],[2,3,1,2],[2,3,2,0],[2,1,2,1]],[[0,2,0,1],[3,3,1,2],[2,3,2,1],[0,2,2,0]],[[0,2,0,1],[2,3,1,2],[3,3,2,1],[0,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,4,2,1],[0,2,2,0]],[[0,2,0,1],[2,3,1,2],[2,3,2,1],[0,3,2,0]],[[0,2,0,1],[3,3,1,2],[2,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,3,1,2],[3,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,3,1,2],[2,4,2,1],[1,1,2,0]],[[0,2,0,1],[2,3,1,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,0,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,2,1],[2,0,3,2],[2,4,1,0],[1,1,2,0]],[[1,2,2,1],[2,0,3,2],[3,3,1,0],[1,1,2,0]],[[1,2,2,1],[2,0,4,2],[2,3,1,0],[1,1,2,0]],[[1,2,2,1],[3,0,3,2],[2,3,1,0],[1,1,2,0]],[[1,2,2,2],[2,0,3,2],[2,3,1,0],[1,1,2,0]],[[1,2,3,1],[2,0,3,2],[2,3,1,0],[1,1,2,0]],[[1,3,2,1],[2,0,3,2],[2,3,1,0],[1,1,2,0]],[[2,2,2,1],[2,0,3,2],[2,3,1,0],[1,1,2,0]],[[1,2,2,1],[2,0,3,2],[2,3,1,0],[0,3,2,0]],[[1,2,2,1],[2,0,3,2],[2,4,1,0],[0,2,2,0]],[[1,2,2,1],[2,0,3,2],[3,3,1,0],[0,2,2,0]],[[1,2,2,1],[2,0,4,2],[2,3,1,0],[0,2,2,0]],[[1,2,2,1],[3,0,3,2],[2,3,1,0],[0,2,2,0]],[[1,2,2,2],[2,0,3,2],[2,3,1,0],[0,2,2,0]],[[1,2,3,1],[2,0,3,2],[2,3,1,0],[0,2,2,0]],[[1,3,2,1],[2,0,3,2],[2,3,1,0],[0,2,2,0]],[[2,2,2,1],[2,0,3,2],[2,3,1,0],[0,2,2,0]],[[0,2,0,1],[3,3,1,2],[2,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,1,2],[3,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,1,2],[2,4,3,0],[0,1,2,1]],[[0,2,0,1],[3,3,1,2],[2,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,1,2],[3,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,1,2],[2,4,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,1,2],[2,3,3,0],[0,3,1,1]],[[0,2,0,1],[3,3,1,2],[2,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[3,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[2,4,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,1,2],[2,3,3,0],[2,0,2,1]],[[0,2,0,1],[3,3,1,2],[2,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[3,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[2,4,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,1,2],[2,3,3,0],[2,1,1,1]],[[0,2,0,1],[3,3,1,2],[2,3,3,0],[1,2,0,1]],[[0,2,0,1],[2,3,1,2],[3,3,3,0],[1,2,0,1]],[[0,2,0,1],[2,3,1,2],[2,4,3,0],[1,2,0,1]],[[0,2,0,1],[2,3,1,2],[2,3,3,0],[2,2,0,1]],[[0,2,0,1],[3,3,1,2],[2,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,1,2],[3,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,1,2],[2,4,3,1],[0,1,2,0]],[[0,2,0,1],[3,3,1,2],[2,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,1,2],[3,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,1,2],[2,4,3,1],[0,2,0,1]],[[0,2,0,1],[3,3,1,2],[2,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,1,2],[3,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,1,2],[2,4,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,1,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,0,3,2],[2,3,0,2],[2,2,0,0]],[[1,2,2,1],[2,0,3,2],[3,3,0,2],[1,2,0,0]],[[1,2,2,1],[2,0,3,3],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[3,0,3,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,2],[2,0,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,0,1],[3,3,1,2],[2,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,1,2],[3,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,1,2],[2,4,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,1,2],[2,3,3,1],[2,0,2,0]],[[0,2,0,1],[3,3,1,2],[2,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,1,2],[3,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,1,2],[2,4,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,1,2],[2,3,3,1],[2,1,0,1]],[[0,2,0,1],[3,3,1,2],[2,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,1,2],[3,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,1,2],[2,4,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,1,2],[2,3,3,1],[2,1,1,0]],[[1,2,3,1],[2,0,3,2],[2,3,0,2],[1,2,0,0]],[[1,3,2,1],[2,0,3,2],[2,3,0,2],[1,2,0,0]],[[2,2,2,1],[2,0,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,0,1],[3,3,1,2],[2,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,3,1,2],[3,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,3,1,2],[2,4,3,1],[1,2,0,0]],[[0,2,0,1],[2,3,1,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,0,3,2],[2,3,0,2],[2,1,1,0]],[[1,2,2,1],[2,0,3,2],[3,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,3],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[3,0,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,2],[2,0,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,3,1],[2,0,3,2],[2,3,0,2],[1,1,1,0]],[[1,3,2,1],[2,0,3,2],[2,3,0,2],[1,1,1,0]],[[2,2,2,1],[2,0,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,2],[2,3,0,2],[2,1,0,1]],[[1,2,2,1],[2,0,3,2],[3,3,0,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,3],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[3,0,3,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,2],[2,0,3,2],[2,3,0,2],[1,1,0,1]],[[1,2,3,1],[2,0,3,2],[2,3,0,2],[1,1,0,1]],[[1,3,2,1],[2,0,3,2],[2,3,0,2],[1,1,0,1]],[[2,2,2,1],[2,0,3,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,2],[3,3,0,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,3],[2,3,0,2],[1,0,2,0]],[[1,2,2,1],[3,0,3,2],[2,3,0,2],[1,0,2,0]],[[1,2,2,2],[2,0,3,2],[2,3,0,2],[1,0,2,0]],[[1,2,3,1],[2,0,3,2],[2,3,0,2],[1,0,2,0]],[[1,3,2,1],[2,0,3,2],[2,3,0,2],[1,0,2,0]],[[2,2,2,1],[2,0,3,2],[2,3,0,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,2],[3,3,0,2],[1,0,1,1]],[[1,2,2,1],[2,0,3,3],[2,3,0,2],[1,0,1,1]],[[1,2,2,1],[3,0,3,2],[2,3,0,2],[1,0,1,1]],[[1,2,2,2],[2,0,3,2],[2,3,0,2],[1,0,1,1]],[[1,2,3,1],[2,0,3,2],[2,3,0,2],[1,0,1,1]],[[1,3,2,1],[2,0,3,2],[2,3,0,2],[1,0,1,1]],[[2,2,2,1],[2,0,3,2],[2,3,0,2],[1,0,1,1]],[[0,3,0,1],[2,3,1,2],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[3,3,1,2],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[2,4,1,2],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[2,3,1,2],[3,3,3,2],[1,0,0,1]],[[0,3,0,1],[2,3,1,2],[2,3,3,2],[1,0,1,0]],[[0,2,0,1],[3,3,1,2],[2,3,3,2],[1,0,1,0]],[[0,2,0,1],[2,4,1,2],[2,3,3,2],[1,0,1,0]],[[0,2,0,1],[2,3,1,2],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,0,3,2],[3,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,3],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[3,0,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,2],[2,0,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,3,1],[2,0,3,2],[2,3,0,2],[0,2,1,0]],[[1,3,2,1],[2,0,3,2],[2,3,0,2],[0,2,1,0]],[[2,2,2,1],[2,0,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,2],[3,3,0,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,3],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[3,0,3,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,2],[2,0,3,2],[2,3,0,2],[0,2,0,1]],[[1,2,3,1],[2,0,3,2],[2,3,0,2],[0,2,0,1]],[[1,3,2,1],[2,0,3,2],[2,3,0,2],[0,2,0,1]],[[2,2,2,1],[2,0,3,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,3],[2,3,0,2],[0,1,2,0]],[[1,2,2,1],[3,0,3,2],[2,3,0,2],[0,1,2,0]],[[1,2,2,2],[2,0,3,2],[2,3,0,2],[0,1,2,0]],[[1,2,3,1],[2,0,3,2],[2,3,0,2],[0,1,2,0]],[[1,3,2,1],[2,0,3,2],[2,3,0,2],[0,1,2,0]],[[2,2,2,1],[2,0,3,2],[2,3,0,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,3],[2,3,0,2],[0,1,1,1]],[[1,2,2,1],[3,0,3,2],[2,3,0,2],[0,1,1,1]],[[1,2,2,2],[2,0,3,2],[2,3,0,2],[0,1,1,1]],[[1,2,3,1],[2,0,3,2],[2,3,0,2],[0,1,1,1]],[[1,3,2,1],[2,0,3,2],[2,3,0,2],[0,1,1,1]],[[2,2,2,1],[2,0,3,2],[2,3,0,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,2],[2,3,0,0],[1,3,2,0]],[[1,2,2,1],[2,0,3,2],[2,3,0,0],[2,2,2,0]],[[1,2,2,1],[2,0,3,2],[3,3,0,0],[1,2,2,0]],[[1,2,2,1],[3,0,3,2],[2,3,0,0],[1,2,2,0]],[[1,2,2,2],[2,0,3,2],[2,3,0,0],[1,2,2,0]],[[1,2,3,1],[2,0,3,2],[2,3,0,0],[1,2,2,0]],[[1,3,2,1],[2,0,3,2],[2,3,0,0],[1,2,2,0]],[[2,2,2,1],[2,0,3,2],[2,3,0,0],[1,2,2,0]],[[0,2,0,1],[2,3,2,0],[0,2,4,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,0],[0,2,3,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,0],[0,2,3,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,0],[0,2,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,0],[0,2,3,2],[1,2,2,2]],[[0,2,0,1],[3,3,2,0],[0,3,2,2],[1,2,2,1]],[[0,2,0,1],[2,4,2,0],[0,3,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,0],[0,4,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,0],[0,3,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,0],[0,3,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,0],[0,3,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,0],[0,3,2,2],[1,2,2,2]],[[0,2,0,1],[3,3,2,0],[0,3,3,2],[1,1,2,1]],[[0,2,0,1],[2,4,2,0],[0,3,3,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,0],[0,4,3,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,0],[0,3,4,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,0],[0,3,3,2],[1,1,3,1]],[[0,2,0,1],[2,3,2,0],[0,3,3,2],[1,1,2,2]],[[0,2,0,1],[3,3,2,0],[0,3,3,2],[1,2,1,1]],[[0,2,0,1],[2,4,2,0],[0,3,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,0],[0,4,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,0],[0,3,4,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,0],[0,3,3,2],[2,2,1,1]],[[0,2,0,1],[2,3,2,0],[0,3,3,2],[1,3,1,1]],[[0,2,0,1],[2,3,2,0],[1,2,4,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,0],[1,2,3,2],[0,3,2,1]],[[0,2,0,1],[2,3,2,0],[1,2,3,2],[0,2,3,1]],[[0,2,0,1],[2,3,2,0],[1,2,3,2],[0,2,2,2]],[[0,2,0,1],[3,3,2,0],[1,3,2,2],[0,2,2,1]],[[0,2,0,1],[2,4,2,0],[1,3,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,0],[1,4,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,0],[1,3,2,2],[0,3,2,1]],[[0,2,0,1],[2,3,2,0],[1,3,2,2],[0,2,3,1]],[[0,2,0,1],[2,3,2,0],[1,3,2,2],[0,2,2,2]],[[0,2,0,1],[3,3,2,0],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,4,2,0],[1,3,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,0],[1,4,2,2],[1,1,2,1]],[[0,2,0,1],[3,3,2,0],[1,3,3,2],[0,1,2,1]],[[0,2,0,1],[2,4,2,0],[1,3,3,2],[0,1,2,1]],[[0,2,0,1],[2,3,2,0],[1,4,3,2],[0,1,2,1]],[[0,2,0,1],[2,3,2,0],[1,3,4,2],[0,1,2,1]],[[0,2,0,1],[2,3,2,0],[1,3,3,2],[0,1,3,1]],[[0,2,0,1],[2,3,2,0],[1,3,3,2],[0,1,2,2]],[[0,2,0,1],[3,3,2,0],[1,3,3,2],[0,2,1,1]],[[0,2,0,1],[2,4,2,0],[1,3,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,2,0],[1,4,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,2,0],[1,3,4,2],[0,2,1,1]],[[0,2,0,1],[2,3,2,0],[1,3,3,2],[0,3,1,1]],[[0,2,0,1],[3,3,2,0],[1,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,4,2,0],[1,3,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,0],[1,4,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,0],[1,3,4,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,0],[1,3,3,2],[1,0,3,1]],[[0,2,0,1],[2,3,2,0],[1,3,3,2],[1,0,2,2]],[[0,2,0,1],[3,3,2,0],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,4,2,0],[1,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,0],[1,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,0],[1,3,4,2],[1,1,1,1]],[[0,2,0,1],[3,3,2,0],[2,0,3,2],[1,2,2,1]],[[0,2,0,1],[2,4,2,0],[2,0,3,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,0],[3,0,3,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,0],[2,0,4,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,0],[2,0,3,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,0],[2,0,3,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,0],[2,0,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,0],[2,0,3,2],[1,2,2,2]],[[0,2,0,1],[3,3,2,0],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,4,2,0],[2,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,0],[3,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,0],[2,1,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,0],[2,1,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,0],[2,1,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,0],[2,1,2,2],[1,2,2,2]],[[0,2,0,1],[3,3,2,0],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,4,2,0],[2,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,0],[3,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,0],[2,1,3,2],[2,2,1,1]],[[0,2,0,1],[2,3,2,0],[2,1,3,2],[1,3,1,1]],[[0,2,0,1],[3,3,2,0],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[2,4,2,0],[2,2,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,0],[3,2,2,2],[0,2,2,1]],[[0,2,0,1],[3,3,2,0],[2,2,2,2],[1,1,2,1]],[[0,2,0,1],[2,4,2,0],[2,2,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,0],[3,2,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,0],[2,2,2,2],[2,1,2,1]],[[0,2,0,1],[3,3,2,0],[2,2,3,2],[0,1,2,1]],[[0,2,0,1],[2,4,2,0],[2,2,3,2],[0,1,2,1]],[[0,2,0,1],[2,3,2,0],[3,2,3,2],[0,1,2,1]],[[0,2,0,1],[3,3,2,0],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,4,2,0],[2,2,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,2,0],[3,2,3,2],[0,2,1,1]],[[0,2,0,1],[3,3,2,0],[2,2,3,2],[1,0,2,1]],[[0,2,0,1],[2,4,2,0],[2,2,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,0],[3,2,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,0],[2,2,3,2],[2,0,2,1]],[[0,2,0,1],[3,3,2,0],[2,2,3,2],[1,1,1,1]],[[0,2,0,1],[2,4,2,0],[2,2,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,0],[3,2,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,0],[2,2,3,2],[2,1,1,1]],[[0,2,0,1],[2,3,2,1],[0,2,2,3],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,2,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,2,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,1],[0,2,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,1],[0,2,2,2],[1,2,2,2]],[[0,2,0,1],[2,3,2,1],[0,2,4,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,2,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,2,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,2,1],[0,2,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,2,1],[0,2,3,1],[1,2,2,2]],[[0,2,0,1],[2,3,2,1],[0,2,4,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,1],[0,2,3,3],[1,2,1,1]],[[0,2,0,1],[2,3,2,1],[0,2,3,2],[1,2,1,2]],[[0,2,0,1],[2,3,2,1],[0,2,4,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[0,2,3,3],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[0,2,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,2,1],[0,2,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,2,1],[0,2,3,2],[1,2,3,0]],[[0,3,0,1],[2,3,2,1],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[3,3,2,1],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,4,2,1],[0,3,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,4,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,1,3],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,1],[0,3,1,2],[1,2,2,2]],[[0,3,0,1],[2,3,2,1],[0,3,2,1],[1,2,2,1]],[[0,2,0,1],[3,3,2,1],[0,3,2,1],[1,2,2,1]],[[0,2,0,1],[2,4,2,1],[0,3,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,4,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,2,1],[2,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,2,1],[1,3,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,2,1],[1,2,3,1]],[[0,2,0,1],[2,3,2,1],[0,3,2,1],[1,2,2,2]],[[0,2,0,1],[2,3,2,1],[0,3,2,3],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,2,2],[1,1,3,1]],[[0,2,0,1],[2,3,2,1],[0,3,2,2],[1,1,2,2]],[[0,3,0,1],[2,3,2,1],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[3,3,2,1],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[2,4,2,1],[0,3,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[0,4,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[0,3,2,2],[2,2,2,0]],[[0,2,0,1],[2,3,2,1],[0,3,2,2],[1,3,2,0]],[[0,2,0,1],[2,3,2,1],[0,3,2,2],[1,2,3,0]],[[0,2,0,1],[3,3,2,1],[0,3,3,0],[1,2,2,1]],[[0,2,0,1],[2,4,2,1],[0,3,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,4,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,0],[2,2,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,0],[1,3,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,0],[1,2,3,1]],[[0,3,0,1],[2,3,2,1],[0,3,3,1],[1,1,2,1]],[[0,2,0,1],[3,3,2,1],[0,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,4,2,1],[0,3,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[0,4,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,4,1],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,1],[1,1,3,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,1],[1,1,2,2]],[[0,3,0,1],[2,3,2,1],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[3,3,2,1],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[2,4,2,1],[0,3,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,2,1],[0,4,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,2,1],[0,3,4,1],[1,2,1,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,1],[2,2,1,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,1],[1,3,1,1]],[[0,2,0,1],[2,3,2,1],[0,3,4,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,3],[1,0,2,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,2],[1,0,2,2]],[[0,3,0,1],[2,3,2,1],[0,3,3,2],[1,1,1,1]],[[0,2,0,1],[3,3,2,1],[0,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,4,2,1],[0,3,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,1],[0,4,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,1],[0,3,4,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,3],[1,1,1,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,2],[1,1,1,2]],[[0,3,0,1],[2,3,2,1],[0,3,3,2],[1,1,2,0]],[[0,2,0,1],[3,3,2,1],[0,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,4,2,1],[0,3,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,1],[0,4,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,1],[0,3,4,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,1],[0,3,3,3],[1,1,2,0]],[[0,2,0,1],[2,3,2,1],[0,3,3,2],[1,1,3,0]],[[0,3,0,1],[2,3,2,1],[0,3,3,2],[1,2,0,1]],[[0,2,0,1],[3,3,2,1],[0,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,4,2,1],[0,3,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,2,1],[0,4,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,2,1],[0,3,4,2],[1,2,0,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,3],[1,2,0,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,2],[2,2,0,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,2],[1,3,0,1]],[[0,2,0,1],[2,3,2,1],[0,3,3,2],[1,2,0,2]],[[0,3,0,1],[2,3,2,1],[0,3,3,2],[1,2,1,0]],[[0,2,0,1],[3,3,2,1],[0,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,4,2,1],[0,3,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,2,1],[0,4,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,2,1],[0,3,4,2],[1,2,1,0]],[[0,2,0,1],[2,3,2,1],[0,3,3,3],[1,2,1,0]],[[0,2,0,1],[2,3,2,1],[0,3,3,2],[2,2,1,0]],[[0,2,0,1],[2,3,2,1],[0,3,3,2],[1,3,1,0]],[[0,2,0,1],[2,3,2,1],[1,2,2,3],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[1,2,2,2],[0,3,2,1]],[[0,2,0,1],[2,3,2,1],[1,2,2,2],[0,2,3,1]],[[0,2,0,1],[2,3,2,1],[1,2,2,2],[0,2,2,2]],[[0,2,0,1],[2,3,2,1],[1,2,4,1],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[1,2,3,1],[0,3,2,1]],[[0,2,0,1],[2,3,2,1],[1,2,3,1],[0,2,3,1]],[[0,2,0,1],[2,3,2,1],[1,2,3,1],[0,2,2,2]],[[0,2,0,1],[2,3,2,1],[1,2,4,2],[0,2,1,1]],[[0,2,0,1],[2,3,2,1],[1,2,3,3],[0,2,1,1]],[[0,2,0,1],[2,3,2,1],[1,2,3,2],[0,2,1,2]],[[0,2,0,1],[2,3,2,1],[1,2,4,2],[0,2,2,0]],[[0,2,0,1],[2,3,2,1],[1,2,3,3],[0,2,2,0]],[[0,2,0,1],[2,3,2,1],[1,2,3,2],[0,3,2,0]],[[0,2,0,1],[2,3,2,1],[1,2,3,2],[0,2,3,0]],[[0,3,0,1],[2,3,2,1],[1,3,1,2],[0,2,2,1]],[[0,2,0,1],[3,3,2,1],[1,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,4,2,1],[1,3,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[1,4,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,1,3],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,1,2],[0,3,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,1,2],[0,2,3,1]],[[0,2,0,1],[2,3,2,1],[1,3,1,2],[0,2,2,2]],[[0,3,0,1],[2,3,2,1],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[3,3,2,1],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,4,2,1],[1,3,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[1,4,1,2],[1,1,2,1]],[[0,3,0,1],[2,3,2,1],[1,3,2,1],[0,2,2,1]],[[0,2,0,1],[3,3,2,1],[1,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,4,2,1],[1,3,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[1,4,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,2,1],[0,3,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,2,1],[0,2,3,1]],[[0,2,0,1],[2,3,2,1],[1,3,2,1],[0,2,2,2]],[[0,3,0,1],[2,3,2,1],[1,3,2,1],[1,1,2,1]],[[0,2,0,1],[3,3,2,1],[1,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,4,2,1],[1,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[1,4,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,2,3],[0,1,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,2,2],[0,1,3,1]],[[0,2,0,1],[2,3,2,1],[1,3,2,2],[0,1,2,2]],[[0,3,0,1],[2,3,2,1],[1,3,2,2],[0,2,2,0]],[[0,2,0,1],[3,3,2,1],[1,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,4,2,1],[1,3,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,2,1],[1,4,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,2,1],[1,3,2,2],[0,3,2,0]],[[0,2,0,1],[2,3,2,1],[1,3,2,2],[0,2,3,0]],[[0,2,0,1],[2,3,2,1],[1,3,2,3],[1,0,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,2,2],[1,0,3,1]],[[0,2,0,1],[2,3,2,1],[1,3,2,2],[1,0,2,2]],[[0,3,0,1],[2,3,2,1],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[3,3,2,1],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,4,2,1],[1,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,1],[1,4,2,2],[1,1,2,0]],[[0,2,0,1],[3,3,2,1],[1,3,3,0],[0,2,2,1]],[[0,2,0,1],[2,4,2,1],[1,3,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[1,4,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,0],[0,3,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,0],[0,2,3,1]],[[0,2,0,1],[3,3,2,1],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,4,2,1],[1,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[1,4,3,0],[1,1,2,1]],[[0,3,0,1],[2,3,2,1],[1,3,3,1],[0,1,2,1]],[[0,2,0,1],[3,3,2,1],[1,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,4,2,1],[1,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,2,1],[1,4,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,4,1],[0,1,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,1],[0,1,3,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,1],[0,1,2,2]],[[0,3,0,1],[2,3,2,1],[1,3,3,1],[0,2,1,1]],[[0,2,0,1],[3,3,2,1],[1,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,4,2,1],[1,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,2,1],[1,4,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,2,1],[1,3,4,1],[0,2,1,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,1],[0,3,1,1]],[[0,3,0,1],[2,3,2,1],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[3,3,2,1],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,4,2,1],[1,3,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,2,1],[1,4,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,4,1],[1,0,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,1],[1,0,3,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,1],[1,0,2,2]],[[0,3,0,1],[2,3,2,1],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[3,3,2,1],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,4,2,1],[1,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,2,1],[1,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,2,1],[1,3,4,1],[1,1,1,1]],[[0,2,0,1],[3,3,2,1],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,4,2,1],[1,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,2,1],[1,4,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,2,1],[1,3,4,2],[0,0,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,3],[0,0,2,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,2],[0,0,2,2]],[[0,3,0,1],[2,3,2,1],[1,3,3,2],[0,1,1,1]],[[0,2,0,1],[3,3,2,1],[1,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,4,2,1],[1,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,1],[1,4,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,1],[1,3,4,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,3],[0,1,1,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,2],[0,1,1,2]],[[0,3,0,1],[2,3,2,1],[1,3,3,2],[0,1,2,0]],[[0,2,0,1],[3,3,2,1],[1,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,4,2,1],[1,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,1],[1,4,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,1],[1,3,4,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,1],[1,3,3,3],[0,1,2,0]],[[0,2,0,1],[2,3,2,1],[1,3,3,2],[0,1,3,0]],[[0,3,0,1],[2,3,2,1],[1,3,3,2],[0,2,0,1]],[[0,2,0,1],[3,3,2,1],[1,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,4,2,1],[1,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,1],[1,4,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,1],[1,3,4,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,3],[0,2,0,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,2],[0,3,0,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,2],[0,2,0,2]],[[0,3,0,1],[2,3,2,1],[1,3,3,2],[0,2,1,0]],[[0,2,0,1],[3,3,2,1],[1,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,4,2,1],[1,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,1],[1,4,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,1],[1,3,4,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,1],[1,3,3,3],[0,2,1,0]],[[0,2,0,1],[2,3,2,1],[1,3,3,2],[0,3,1,0]],[[0,3,0,1],[2,3,2,1],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[3,3,2,1],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,4,2,1],[1,3,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,2,1],[1,4,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,2,1],[1,3,4,2],[1,0,1,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,3],[1,0,1,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,2],[1,0,1,2]],[[0,3,0,1],[2,3,2,1],[1,3,3,2],[1,0,2,0]],[[0,2,0,1],[3,3,2,1],[1,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,4,2,1],[1,3,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,2,1],[1,4,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,2,1],[1,3,4,2],[1,0,2,0]],[[0,2,0,1],[2,3,2,1],[1,3,3,3],[1,0,2,0]],[[0,2,0,1],[2,3,2,1],[1,3,3,2],[1,0,3,0]],[[0,3,0,1],[2,3,2,1],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[3,3,2,1],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,4,2,1],[1,3,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,2,1],[1,4,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,2,1],[1,3,4,2],[1,1,0,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,3],[1,1,0,1]],[[0,2,0,1],[2,3,2,1],[1,3,3,2],[1,1,0,2]],[[0,3,0,1],[2,3,2,1],[1,3,3,2],[1,1,1,0]],[[0,2,0,1],[3,3,2,1],[1,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,4,2,1],[1,3,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,2,1],[1,4,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,2,1],[1,3,4,2],[1,1,1,0]],[[0,2,0,1],[2,3,2,1],[1,3,3,3],[1,1,1,0]],[[0,3,0,1],[2,3,2,1],[1,3,3,2],[1,2,0,0]],[[0,2,0,1],[3,3,2,1],[1,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,4,2,1],[1,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,0,3,2],[2,2,3,0],[2,1,1,0]],[[1,2,2,1],[2,0,3,2],[3,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,0,4,2],[2,2,3,0],[1,1,1,0]],[[0,3,0,1],[2,3,2,1],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[3,3,2,1],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,4,2,1],[2,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[3,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,0,2,3],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,0,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,0,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,1],[2,0,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,1],[2,0,2,2],[1,2,2,2]],[[0,3,0,1],[2,3,2,1],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[3,3,2,1],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,4,2,1],[2,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[3,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,0,4,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,0,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,0,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,2,1],[2,0,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,2,1],[2,0,3,1],[1,2,2,2]],[[0,2,0,1],[2,3,2,1],[2,0,4,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,1],[2,0,3,3],[1,2,1,1]],[[0,2,0,1],[2,3,2,1],[2,0,3,2],[1,2,1,2]],[[0,3,0,1],[2,3,2,1],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[3,3,2,1],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,4,2,1],[2,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[3,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[2,0,4,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[2,0,3,3],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[2,0,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,2,1],[2,0,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,2,1],[2,0,3,2],[1,2,3,0]],[[0,3,0,1],[2,3,2,1],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[3,3,2,1],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,4,2,1],[2,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[3,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,1,1,3],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,1,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,1,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,1],[2,1,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,1],[2,1,1,2],[1,2,2,2]],[[0,3,0,1],[2,3,2,1],[2,1,2,1],[1,2,2,1]],[[0,2,0,1],[3,3,2,1],[2,1,2,1],[1,2,2,1]],[[0,2,0,1],[2,4,2,1],[2,1,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[3,1,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,1,2,1],[2,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,1,2,1],[1,3,2,1]],[[0,2,0,1],[2,3,2,1],[2,1,2,1],[1,2,3,1]],[[0,2,0,1],[2,3,2,1],[2,1,2,1],[1,2,2,2]],[[0,3,0,1],[2,3,2,1],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[3,3,2,1],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,4,2,1],[2,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[3,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[2,1,2,2],[2,2,2,0]],[[0,2,0,1],[2,3,2,1],[2,1,2,2],[1,3,2,0]],[[0,2,0,1],[2,3,2,1],[2,1,2,2],[1,2,3,0]],[[0,2,0,1],[3,3,2,1],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,4,2,1],[2,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[3,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,1,3,0],[2,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,1,3,0],[1,3,2,1]],[[0,2,0,1],[2,3,2,1],[2,1,3,0],[1,2,3,1]],[[0,3,0,1],[2,3,2,1],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[3,3,2,1],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,4,2,1],[2,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,2,1],[3,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,2,1],[2,1,3,1],[2,2,1,1]],[[0,2,0,1],[2,3,2,1],[2,1,3,1],[1,3,1,1]],[[0,3,0,1],[2,3,2,1],[2,1,3,2],[1,2,0,1]],[[0,2,0,1],[3,3,2,1],[2,1,3,2],[1,2,0,1]],[[0,2,0,1],[2,4,2,1],[2,1,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,2,1],[3,1,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,2,1],[2,1,3,2],[2,2,0,1]],[[0,2,0,1],[2,3,2,1],[2,1,3,2],[1,3,0,1]],[[0,3,0,1],[2,3,2,1],[2,1,3,2],[1,2,1,0]],[[0,2,0,1],[3,3,2,1],[2,1,3,2],[1,2,1,0]],[[0,2,0,1],[2,4,2,1],[2,1,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,2,1],[3,1,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,2,1],[2,1,3,2],[2,2,1,0]],[[0,2,0,1],[2,3,2,1],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[3,0,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,2],[2,0,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,3,1],[2,0,3,2],[2,2,3,0],[1,1,1,0]],[[1,3,2,1],[2,0,3,2],[2,2,3,0],[1,1,1,0]],[[2,2,2,1],[2,0,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[2,0,3,2],[2,2,3,0],[2,1,0,1]],[[1,2,2,1],[2,0,3,2],[3,2,3,0],[1,1,0,1]],[[1,2,2,1],[2,0,4,2],[2,2,3,0],[1,1,0,1]],[[1,2,2,1],[3,0,3,2],[2,2,3,0],[1,1,0,1]],[[1,2,2,2],[2,0,3,2],[2,2,3,0],[1,1,0,1]],[[0,3,0,1],[2,3,2,1],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[3,3,2,1],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[2,4,2,1],[2,2,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[3,2,1,2],[0,2,2,1]],[[0,3,0,1],[2,3,2,1],[2,2,1,2],[1,1,2,1]],[[0,2,0,1],[3,3,2,1],[2,2,1,2],[1,1,2,1]],[[0,2,0,1],[2,4,2,1],[2,2,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[3,2,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[2,2,1,2],[2,1,2,1]],[[0,3,0,1],[2,3,2,1],[2,2,2,1],[0,2,2,1]],[[0,2,0,1],[3,3,2,1],[2,2,2,1],[0,2,2,1]],[[0,2,0,1],[2,4,2,1],[2,2,2,1],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[3,2,2,1],[0,2,2,1]],[[0,3,0,1],[2,3,2,1],[2,2,2,1],[1,1,2,1]],[[0,2,0,1],[3,3,2,1],[2,2,2,1],[1,1,2,1]],[[0,2,0,1],[2,4,2,1],[2,2,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[3,2,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[2,2,2,1],[2,1,2,1]],[[0,3,0,1],[2,3,2,1],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[3,3,2,1],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[2,4,2,1],[2,2,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,2,1],[3,2,2,2],[0,2,2,0]],[[0,3,0,1],[2,3,2,1],[2,2,2,2],[1,1,2,0]],[[0,2,0,1],[3,3,2,1],[2,2,2,2],[1,1,2,0]],[[0,2,0,1],[2,4,2,1],[2,2,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,1],[3,2,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,1],[2,2,2,2],[2,1,2,0]],[[1,2,3,1],[2,0,3,2],[2,2,3,0],[1,1,0,1]],[[1,3,2,1],[2,0,3,2],[2,2,3,0],[1,1,0,1]],[[2,2,2,1],[2,0,3,2],[2,2,3,0],[1,1,0,1]],[[0,2,0,1],[3,3,2,1],[2,2,3,0],[0,2,2,1]],[[0,2,0,1],[2,4,2,1],[2,2,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,2,1],[3,2,3,0],[0,2,2,1]],[[0,2,0,1],[3,3,2,1],[2,2,3,0],[1,1,2,1]],[[0,2,0,1],[2,4,2,1],[2,2,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[3,2,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,2,1],[2,2,3,0],[2,1,2,1]],[[0,3,0,1],[2,3,2,1],[2,2,3,1],[0,1,2,1]],[[0,2,0,1],[3,3,2,1],[2,2,3,1],[0,1,2,1]],[[0,2,0,1],[2,4,2,1],[2,2,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,2,1],[3,2,3,1],[0,1,2,1]],[[0,3,0,1],[2,3,2,1],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[3,3,2,1],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,4,2,1],[2,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,2,1],[3,2,3,1],[0,2,1,1]],[[0,3,0,1],[2,3,2,1],[2,2,3,1],[1,0,2,1]],[[0,2,0,1],[3,3,2,1],[2,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,4,2,1],[2,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,2,1],[3,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,2,1],[2,2,3,1],[2,0,2,1]],[[0,3,0,1],[2,3,2,1],[2,2,3,1],[1,1,1,1]],[[0,2,0,1],[3,3,2,1],[2,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,4,2,1],[2,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,2,1],[3,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,2,1],[2,2,3,1],[2,1,1,1]],[[0,2,0,1],[3,3,2,1],[2,2,3,1],[1,2,0,1]],[[0,2,0,1],[2,4,2,1],[2,2,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,2,1],[3,2,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,2,1],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,3,2],[2,2,3,0],[2,0,2,0]],[[1,2,2,1],[2,0,3,2],[3,2,3,0],[1,0,2,0]],[[1,2,2,1],[2,0,4,2],[2,2,3,0],[1,0,2,0]],[[0,3,0,1],[2,3,2,1],[2,2,3,2],[0,1,1,1]],[[0,2,0,1],[3,3,2,1],[2,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,4,2,1],[2,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,1],[3,2,3,2],[0,1,1,1]],[[0,3,0,1],[2,3,2,1],[2,2,3,2],[0,1,2,0]],[[0,2,0,1],[3,3,2,1],[2,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,4,2,1],[2,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,1],[3,2,3,2],[0,1,2,0]],[[0,3,0,1],[2,3,2,1],[2,2,3,2],[0,2,0,1]],[[0,2,0,1],[3,3,2,1],[2,2,3,2],[0,2,0,1]],[[0,2,0,1],[2,4,2,1],[2,2,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,1],[3,2,3,2],[0,2,0,1]],[[0,3,0,1],[2,3,2,1],[2,2,3,2],[0,2,1,0]],[[0,2,0,1],[3,3,2,1],[2,2,3,2],[0,2,1,0]],[[0,2,0,1],[2,4,2,1],[2,2,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,1],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,0,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,2],[2,0,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,3,1],[2,0,3,2],[2,2,3,0],[1,0,2,0]],[[1,3,2,1],[2,0,3,2],[2,2,3,0],[1,0,2,0]],[[2,2,2,1],[2,0,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,1],[2,0,3,2],[3,2,3,0],[1,0,1,1]],[[1,2,2,1],[2,0,4,2],[2,2,3,0],[1,0,1,1]],[[1,2,2,1],[3,0,3,2],[2,2,3,0],[1,0,1,1]],[[1,2,2,2],[2,0,3,2],[2,2,3,0],[1,0,1,1]],[[0,3,0,1],[2,3,2,1],[2,2,3,2],[1,0,1,1]],[[0,2,0,1],[3,3,2,1],[2,2,3,2],[1,0,1,1]],[[0,2,0,1],[2,4,2,1],[2,2,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,2,1],[3,2,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,2,1],[2,2,3,2],[2,0,1,1]],[[0,3,0,1],[2,3,2,1],[2,2,3,2],[1,0,2,0]],[[0,2,0,1],[3,3,2,1],[2,2,3,2],[1,0,2,0]],[[0,2,0,1],[2,4,2,1],[2,2,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,2,1],[3,2,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,2,1],[2,2,3,2],[2,0,2,0]],[[0,3,0,1],[2,3,2,1],[2,2,3,2],[1,1,0,1]],[[0,2,0,1],[3,3,2,1],[2,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,4,2,1],[2,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,2,1],[3,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,2,1],[2,2,3,2],[2,1,0,1]],[[0,3,0,1],[2,3,2,1],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[3,3,2,1],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[2,4,2,1],[2,2,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,2,1],[3,2,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,2,1],[2,2,3,2],[2,1,1,0]],[[1,2,3,1],[2,0,3,2],[2,2,3,0],[1,0,1,1]],[[1,3,2,1],[2,0,3,2],[2,2,3,0],[1,0,1,1]],[[2,2,2,1],[2,0,3,2],[2,2,3,0],[1,0,1,1]],[[0,3,0,1],[2,3,2,1],[2,2,3,2],[1,2,0,0]],[[0,2,0,1],[3,3,2,1],[2,2,3,2],[1,2,0,0]],[[0,2,0,1],[2,4,2,1],[2,2,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,2,1],[3,2,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,2,1],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,3,2],[3,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,0,4,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[3,0,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,2],[2,0,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,3,1],[2,0,3,2],[2,2,3,0],[0,2,1,0]],[[1,3,2,1],[2,0,3,2],[2,2,3,0],[0,2,1,0]],[[2,2,2,1],[2,0,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[2,0,3,2],[3,2,3,0],[0,2,0,1]],[[1,2,2,1],[2,0,4,2],[2,2,3,0],[0,2,0,1]],[[1,2,2,1],[3,0,3,2],[2,2,3,0],[0,2,0,1]],[[1,2,2,2],[2,0,3,2],[2,2,3,0],[0,2,0,1]],[[1,2,3,1],[2,0,3,2],[2,2,3,0],[0,2,0,1]],[[1,3,2,1],[2,0,3,2],[2,2,3,0],[0,2,0,1]],[[2,2,2,1],[2,0,3,2],[2,2,3,0],[0,2,0,1]],[[0,2,0,1],[3,3,2,1],[2,3,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[3,3,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,3,0,1],[2,2,2,1]],[[0,2,0,1],[2,3,2,1],[2,3,0,1],[1,3,2,1]],[[0,2,0,1],[3,3,2,1],[2,3,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[3,3,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,1],[2,3,0,2],[2,2,2,0]],[[0,2,0,1],[2,3,2,1],[2,3,0,2],[1,3,2,0]],[[1,2,2,1],[2,0,3,2],[3,2,3,0],[0,1,2,0]],[[1,2,2,1],[2,0,4,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,1],[3,0,3,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,2],[2,0,3,2],[2,2,3,0],[0,1,2,0]],[[1,2,3,1],[2,0,3,2],[2,2,3,0],[0,1,2,0]],[[1,3,2,1],[2,0,3,2],[2,2,3,0],[0,1,2,0]],[[2,2,2,1],[2,0,3,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,1],[2,0,4,2],[2,2,3,0],[0,1,1,1]],[[1,2,2,1],[3,0,3,2],[2,2,3,0],[0,1,1,1]],[[1,2,2,2],[2,0,3,2],[2,2,3,0],[0,1,1,1]],[[1,2,3,1],[2,0,3,2],[2,2,3,0],[0,1,1,1]],[[1,3,2,1],[2,0,3,2],[2,2,3,0],[0,1,1,1]],[[2,2,2,1],[2,0,3,2],[2,2,3,0],[0,1,1,1]],[[0,2,0,1],[3,3,2,1],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,4,2,1],[2,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,2,1],[3,3,3,1],[1,0,1,1]],[[0,3,0,1],[2,3,2,1],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[3,3,2,1],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[2,4,2,1],[2,3,3,2],[1,0,0,1]],[[0,2,0,1],[2,3,2,1],[3,3,3,2],[1,0,0,1]],[[0,3,0,1],[2,3,2,1],[2,3,3,2],[1,0,1,0]],[[0,2,0,1],[3,3,2,1],[2,3,3,2],[1,0,1,0]],[[0,2,0,1],[2,4,2,1],[2,3,3,2],[1,0,1,0]],[[0,2,0,1],[2,3,2,1],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,0,3,2],[2,2,2,0],[1,3,1,0]],[[1,2,2,1],[2,0,3,2],[2,2,2,0],[2,2,1,0]],[[1,2,2,1],[2,0,3,2],[3,2,2,0],[1,2,1,0]],[[1,2,2,1],[2,0,4,2],[2,2,2,0],[1,2,1,0]],[[1,2,2,1],[3,0,3,2],[2,2,2,0],[1,2,1,0]],[[1,2,2,2],[2,0,3,2],[2,2,2,0],[1,2,1,0]],[[1,2,3,1],[2,0,3,2],[2,2,2,0],[1,2,1,0]],[[1,3,2,1],[2,0,3,2],[2,2,2,0],[1,2,1,0]],[[2,2,2,1],[2,0,3,2],[2,2,2,0],[1,2,1,0]],[[1,2,2,1],[2,0,3,2],[2,2,2,0],[2,2,0,1]],[[1,2,2,1],[2,0,3,2],[3,2,2,0],[1,2,0,1]],[[1,2,2,1],[2,0,4,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,1],[3,0,3,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,2],[2,0,3,2],[2,2,2,0],[1,2,0,1]],[[1,2,3,1],[2,0,3,2],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[2,0,3,2],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[2,0,3,2],[2,2,2,0],[1,2,0,1]],[[0,2,0,2],[2,3,2,2],[0,0,3,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,3],[0,0,3,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,0,3,3],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,0,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[0,0,3,2],[1,2,2,2]],[[0,2,0,2],[2,3,2,2],[0,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,3],[0,1,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,1,2,3],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,1,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,1,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,2],[0,1,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[0,1,2,2],[1,2,2,2]],[[0,2,0,1],[2,3,2,2],[0,1,4,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,1,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,1,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,2,2],[0,1,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[0,1,3,1],[1,2,2,2]],[[0,2,0,2],[2,3,2,2],[0,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,3],[0,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,2],[0,1,4,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,2],[0,1,3,3],[1,2,1,1]],[[0,2,0,1],[2,3,2,2],[0,1,3,2],[1,2,1,2]],[[0,2,0,2],[2,3,2,2],[0,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,3],[0,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[0,1,4,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[0,1,3,3],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[0,1,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,2,2],[0,1,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,2,2],[0,1,3,2],[1,2,3,0]],[[0,2,0,2],[2,3,2,2],[0,2,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,3],[0,2,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[0,2,2,3],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[0,2,2,2],[1,1,3,1]],[[0,2,0,1],[2,3,2,2],[0,2,2,2],[1,1,2,2]],[[0,2,0,1],[2,3,2,2],[0,2,4,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,0],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,0],[1,3,2,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,0],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,0],[1,2,2,2]],[[0,2,0,1],[2,3,2,2],[0,2,4,1],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,1],[1,1,3,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,1],[1,1,2,2]],[[0,2,0,1],[2,3,2,2],[0,2,4,1],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[0,2,3,1],[2,2,2,0]],[[0,2,0,1],[2,3,2,2],[0,2,3,1],[1,3,2,0]],[[0,2,0,1],[2,3,2,2],[0,2,3,1],[1,2,3,0]],[[0,2,0,2],[2,3,2,2],[0,2,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,3],[0,2,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[0,2,4,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,3],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,2],[1,0,2,2]],[[0,2,0,2],[2,3,2,2],[0,2,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,3],[0,2,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[0,2,4,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,3],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,2],[1,1,1,2]],[[0,2,0,2],[2,3,2,2],[0,2,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,3],[0,2,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[0,2,4,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[0,2,3,3],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[0,2,3,2],[1,1,3,0]],[[0,2,0,2],[2,3,2,2],[0,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,2,3],[0,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[0,2,4,2],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,3],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[0,2,3,2],[1,2,0,2]],[[0,2,0,2],[2,3,2,2],[0,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,2,3],[0,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,2,2],[0,2,4,2],[1,2,1,0]],[[0,2,0,1],[2,3,2,2],[0,2,3,3],[1,2,1,0]],[[0,3,0,1],[2,3,2,2],[0,3,0,2],[1,2,2,1]],[[0,2,0,2],[2,3,2,2],[0,3,0,2],[1,2,2,1]],[[0,2,0,1],[3,3,2,2],[0,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,4,2,2],[0,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,3],[0,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,4,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,0,3],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,0,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,0,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,0,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[0,3,0,2],[1,2,2,2]],[[0,3,0,1],[2,3,2,2],[0,3,2,0],[1,2,2,1]],[[0,2,0,1],[3,3,2,2],[0,3,2,0],[1,2,2,1]],[[0,2,0,1],[2,4,2,2],[0,3,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,4,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,2,0],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,2,0],[1,3,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,2,0],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[0,3,2,0],[1,2,2,2]],[[0,3,0,1],[2,3,2,2],[0,3,2,1],[1,2,2,0]],[[0,2,0,1],[3,3,2,2],[0,3,2,1],[1,2,2,0]],[[0,2,0,1],[2,4,2,2],[0,3,2,1],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[0,4,2,1],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[0,3,2,1],[2,2,2,0]],[[0,2,0,1],[2,3,2,2],[0,3,2,1],[1,3,2,0]],[[0,2,0,1],[2,3,2,2],[0,3,2,1],[1,2,3,0]],[[0,2,0,2],[2,3,2,2],[0,3,2,2],[0,1,2,1]],[[0,2,0,1],[2,3,2,3],[0,3,2,2],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,2,3],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,2,2],[0,1,3,1]],[[0,2,0,1],[2,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,2,2,1],[2,0,3,2],[2,2,1,0],[1,3,2,0]],[[1,2,2,1],[2,0,3,2],[2,2,1,0],[2,2,2,0]],[[1,2,2,1],[2,0,3,2],[3,2,1,0],[1,2,2,0]],[[1,2,2,1],[2,0,4,2],[2,2,1,0],[1,2,2,0]],[[0,3,0,1],[2,3,2,2],[0,3,3,0],[1,1,2,1]],[[0,2,0,1],[3,3,2,2],[0,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,4,2,2],[0,3,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[0,4,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,4,0],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,0],[1,1,3,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,0],[1,1,2,2]],[[0,3,0,1],[2,3,2,2],[0,3,3,0],[1,2,1,1]],[[0,2,0,1],[3,3,2,2],[0,3,3,0],[1,2,1,1]],[[0,2,0,1],[2,4,2,2],[0,3,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,2,2],[0,4,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,2,2],[0,3,4,0],[1,2,1,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,0],[2,2,1,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,0],[1,3,1,1]],[[0,2,0,1],[2,3,2,2],[0,3,4,1],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,1],[0,1,3,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,1],[0,1,2,2]],[[0,3,0,1],[2,3,2,2],[0,3,3,1],[1,1,1,1]],[[0,2,0,1],[3,3,2,2],[0,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,4,2,2],[0,3,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[0,4,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[0,3,4,1],[1,1,1,1]],[[0,3,0,1],[2,3,2,2],[0,3,3,1],[1,1,2,0]],[[0,2,0,1],[3,3,2,2],[0,3,3,1],[1,1,2,0]],[[0,2,0,1],[2,4,2,2],[0,3,3,1],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[0,4,3,1],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[0,3,4,1],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[0,3,3,1],[1,1,3,0]],[[0,3,0,1],[2,3,2,2],[0,3,3,1],[1,2,0,1]],[[0,2,0,1],[3,3,2,2],[0,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,4,2,2],[0,3,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[0,4,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[0,3,4,1],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,1],[2,2,0,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,1],[1,3,0,1]],[[0,3,0,1],[2,3,2,2],[0,3,3,1],[1,2,1,0]],[[0,2,0,1],[3,3,2,2],[0,3,3,1],[1,2,1,0]],[[0,2,0,1],[2,4,2,2],[0,3,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,2,2],[0,4,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,2,2],[0,3,4,1],[1,2,1,0]],[[0,2,0,1],[2,3,2,2],[0,3,3,1],[2,2,1,0]],[[0,2,0,1],[2,3,2,2],[0,3,3,1],[1,3,1,0]],[[1,2,2,1],[3,0,3,2],[2,2,1,0],[1,2,2,0]],[[1,2,2,2],[2,0,3,2],[2,2,1,0],[1,2,2,0]],[[1,2,3,1],[2,0,3,2],[2,2,1,0],[1,2,2,0]],[[1,3,2,1],[2,0,3,2],[2,2,1,0],[1,2,2,0]],[[2,2,2,1],[2,0,3,2],[2,2,1,0],[1,2,2,0]],[[0,2,0,2],[2,3,2,2],[0,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,2,3],[0,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,4,2],[0,0,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,3],[0,0,2,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,2],[0,0,2,2]],[[0,2,0,2],[2,3,2,2],[0,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,3],[0,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[0,3,4,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,3],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,2],[0,1,1,2]],[[0,2,0,2],[2,3,2,2],[0,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,3],[0,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[0,3,4,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[0,3,3,3],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[0,3,3,2],[0,1,3,0]],[[0,2,0,2],[2,3,2,2],[0,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,3],[0,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[0,3,4,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,3],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[0,3,3,2],[0,2,0,2]],[[0,2,0,2],[2,3,2,2],[0,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,3],[0,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,2],[0,3,4,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,0,3,2],[2,2,0,2],[2,2,1,0]],[[1,2,2,1],[2,0,3,2],[3,2,0,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,3],[2,2,0,2],[1,2,1,0]],[[1,2,2,1],[3,0,3,2],[2,2,0,2],[1,2,1,0]],[[1,2,2,2],[2,0,3,2],[2,2,0,2],[1,2,1,0]],[[1,2,3,1],[2,0,3,2],[2,2,0,2],[1,2,1,0]],[[1,3,2,1],[2,0,3,2],[2,2,0,2],[1,2,1,0]],[[2,2,2,1],[2,0,3,2],[2,2,0,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,2],[2,2,0,2],[2,2,0,1]],[[1,2,2,1],[2,0,3,2],[3,2,0,2],[1,2,0,1]],[[1,2,2,1],[2,0,3,3],[2,2,0,2],[1,2,0,1]],[[1,2,2,1],[3,0,3,2],[2,2,0,2],[1,2,0,1]],[[1,2,2,2],[2,0,3,2],[2,2,0,2],[1,2,0,1]],[[1,2,3,1],[2,0,3,2],[2,2,0,2],[1,2,0,1]],[[1,3,2,1],[2,0,3,2],[2,2,0,2],[1,2,0,1]],[[2,2,2,1],[2,0,3,2],[2,2,0,2],[1,2,0,1]],[[0,2,0,2],[2,3,2,2],[1,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,3],[1,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,0,2,3],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,0,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,0,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,2],[1,0,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[1,0,2,2],[1,2,2,2]],[[0,2,0,1],[2,3,2,2],[1,0,4,1],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,0,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,0,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,2,2],[1,0,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[1,0,3,1],[1,2,2,2]],[[0,2,0,2],[2,3,2,2],[1,0,3,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,3],[1,0,3,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,0,3,3],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,0,3,2],[0,2,3,1]],[[0,2,0,1],[2,3,2,2],[1,0,3,2],[0,2,2,2]],[[0,2,0,2],[2,3,2,2],[1,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,3],[1,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,2],[1,0,4,2],[1,2,1,1]],[[0,2,0,1],[2,3,2,2],[1,0,3,3],[1,2,1,1]],[[0,2,0,1],[2,3,2,2],[1,0,3,2],[1,2,1,2]],[[0,2,0,2],[2,3,2,2],[1,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,3],[1,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[1,0,4,2],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[1,0,3,3],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[1,0,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,2,2],[1,0,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,2,2],[1,0,3,2],[1,2,3,0]],[[0,2,0,2],[2,3,2,2],[1,1,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,3],[1,1,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,1,2,3],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,1,2,2],[0,3,2,1]],[[0,2,0,1],[2,3,2,2],[1,1,2,2],[0,2,3,1]],[[0,2,0,1],[2,3,2,2],[1,1,2,2],[0,2,2,2]],[[0,2,0,1],[2,3,2,2],[1,1,4,1],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,1,3,1],[0,3,2,1]],[[0,2,0,1],[2,3,2,2],[1,1,3,1],[0,2,3,1]],[[0,2,0,1],[2,3,2,2],[1,1,3,1],[0,2,2,2]],[[0,2,0,2],[2,3,2,2],[1,1,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,2,3],[1,1,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,2,2],[1,1,4,2],[0,2,1,1]],[[0,2,0,1],[2,3,2,2],[1,1,3,3],[0,2,1,1]],[[0,2,0,1],[2,3,2,2],[1,1,3,2],[0,2,1,2]],[[0,2,0,2],[2,3,2,2],[1,1,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,2,3],[1,1,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,2,2],[1,1,4,2],[0,2,2,0]],[[0,2,0,1],[2,3,2,2],[1,1,3,3],[0,2,2,0]],[[0,2,0,1],[2,3,2,2],[1,1,3,2],[0,3,2,0]],[[0,2,0,1],[2,3,2,2],[1,1,3,2],[0,2,3,0]],[[0,2,0,2],[2,3,2,2],[1,2,2,2],[0,1,2,1]],[[0,2,0,1],[2,3,2,3],[1,2,2,2],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[1,2,2,3],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[1,2,2,2],[0,1,3,1]],[[0,2,0,1],[2,3,2,2],[1,2,2,2],[0,1,2,2]],[[0,2,0,2],[2,3,2,2],[1,2,2,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,3],[1,2,2,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[1,2,2,3],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[1,2,2,2],[1,0,3,1]],[[0,2,0,1],[2,3,2,2],[1,2,2,2],[1,0,2,2]],[[0,2,0,1],[2,3,2,2],[1,2,4,0],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,0],[0,3,2,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,0],[0,2,3,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,0],[0,2,2,2]],[[0,2,0,1],[2,3,2,2],[1,2,4,1],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,1],[0,1,3,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,1],[0,1,2,2]],[[0,2,0,1],[2,3,2,2],[1,2,4,1],[0,2,2,0]],[[0,2,0,1],[2,3,2,2],[1,2,3,1],[0,3,2,0]],[[0,2,0,1],[2,3,2,2],[1,2,3,1],[0,2,3,0]],[[0,2,0,1],[2,3,2,2],[1,2,4,1],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,1],[1,0,3,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,1],[1,0,2,2]],[[0,2,0,2],[2,3,2,2],[1,2,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,2,3],[1,2,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,2,2],[1,2,4,2],[0,0,2,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,3],[0,0,2,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,2],[0,0,2,2]],[[0,2,0,2],[2,3,2,2],[1,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,3],[1,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[1,2,4,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,3],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,2],[0,1,1,2]],[[0,2,0,2],[2,3,2,2],[1,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,3],[1,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[1,2,4,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[1,2,3,3],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[1,2,3,2],[0,1,3,0]],[[0,2,0,2],[2,3,2,2],[1,2,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,3],[1,2,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[1,2,4,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,3],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,2],[0,2,0,2]],[[0,2,0,2],[2,3,2,2],[1,2,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,3],[1,2,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,2],[1,2,4,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,2],[1,2,3,3],[0,2,1,0]],[[0,2,0,2],[2,3,2,2],[1,2,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,2,3],[1,2,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,2,2],[1,2,4,2],[1,0,1,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,3],[1,0,1,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,2],[1,0,1,2]],[[0,2,0,2],[2,3,2,2],[1,2,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,2,3],[1,2,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,2,2],[1,2,4,2],[1,0,2,0]],[[0,2,0,1],[2,3,2,2],[1,2,3,3],[1,0,2,0]],[[0,2,0,1],[2,3,2,2],[1,2,3,2],[1,0,3,0]],[[0,2,0,2],[2,3,2,2],[1,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,2,3],[1,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,2,2],[1,2,4,2],[1,1,0,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,3],[1,1,0,1]],[[0,2,0,1],[2,3,2,2],[1,2,3,2],[1,1,0,2]],[[0,2,0,2],[2,3,2,2],[1,2,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,2,3],[1,2,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,2,2],[1,2,4,2],[1,1,1,0]],[[0,2,0,1],[2,3,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,1],[2,0,3,3],[2,1,3,2],[1,0,0,1]],[[1,2,2,2],[2,0,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,3,1],[2,0,3,2],[2,1,3,2],[1,0,0,1]],[[0,3,0,1],[2,3,2,2],[1,3,0,2],[0,2,2,1]],[[0,2,0,2],[2,3,2,2],[1,3,0,2],[0,2,2,1]],[[0,2,0,1],[3,3,2,2],[1,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,4,2,2],[1,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,3],[1,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,4,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,3,0,3],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,3,0,2],[0,3,2,1]],[[0,2,0,1],[2,3,2,2],[1,3,0,2],[0,2,3,1]],[[0,2,0,1],[2,3,2,2],[1,3,0,2],[0,2,2,2]],[[0,3,0,1],[2,3,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,0,1],[3,3,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,4,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[1,4,0,2],[1,1,2,1]],[[1,2,2,1],[2,0,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,1],[2,0,3,3],[2,1,3,2],[0,1,0,1]],[[1,2,2,2],[2,0,3,2],[2,1,3,2],[0,1,0,1]],[[1,2,3,1],[2,0,3,2],[2,1,3,2],[0,1,0,1]],[[0,3,0,1],[2,3,2,2],[1,3,2,0],[0,2,2,1]],[[0,2,0,1],[3,3,2,2],[1,3,2,0],[0,2,2,1]],[[0,2,0,1],[2,4,2,2],[1,3,2,0],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,4,2,0],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[1,3,2,0],[0,3,2,1]],[[0,2,0,1],[2,3,2,2],[1,3,2,0],[0,2,3,1]],[[0,2,0,1],[2,3,2,2],[1,3,2,0],[0,2,2,2]],[[0,3,0,1],[2,3,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,0,1],[3,3,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,4,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[1,4,2,0],[1,1,2,1]],[[0,3,0,1],[2,3,2,2],[1,3,2,1],[0,2,2,0]],[[0,2,0,1],[3,3,2,2],[1,3,2,1],[0,2,2,0]],[[0,2,0,1],[2,4,2,2],[1,3,2,1],[0,2,2,0]],[[0,2,0,1],[2,3,2,2],[1,4,2,1],[0,2,2,0]],[[0,2,0,1],[2,3,2,2],[1,3,2,1],[0,3,2,0]],[[0,2,0,1],[2,3,2,2],[1,3,2,1],[0,2,3,0]],[[0,3,0,1],[2,3,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,0,1],[3,3,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,4,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[1,4,2,1],[1,1,2,0]],[[0,3,0,1],[2,3,2,2],[1,3,3,0],[0,1,2,1]],[[0,2,0,1],[3,3,2,2],[1,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,4,2,2],[1,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[1,4,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[1,3,4,0],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[1,3,3,0],[0,1,3,1]],[[0,2,0,1],[2,3,2,2],[1,3,3,0],[0,1,2,2]],[[0,3,0,1],[2,3,2,2],[1,3,3,0],[0,2,1,1]],[[0,2,0,1],[3,3,2,2],[1,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,4,2,2],[1,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,2,2],[1,4,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,2,2],[1,3,4,0],[0,2,1,1]],[[0,2,0,1],[2,3,2,2],[1,3,3,0],[0,3,1,1]],[[0,3,0,1],[2,3,2,2],[1,3,3,0],[1,0,2,1]],[[0,2,0,1],[3,3,2,2],[1,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,4,2,2],[1,3,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[1,4,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[1,3,4,0],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[1,3,3,0],[1,0,3,1]],[[0,2,0,1],[2,3,2,2],[1,3,3,0],[1,0,2,2]],[[0,3,0,1],[2,3,2,2],[1,3,3,0],[1,1,1,1]],[[0,2,0,1],[3,3,2,2],[1,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,4,2,2],[1,3,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[1,4,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[1,3,4,0],[1,1,1,1]],[[0,3,0,1],[2,3,2,2],[1,3,3,0],[1,2,0,1]],[[0,2,0,1],[3,3,2,2],[1,3,3,0],[1,2,0,1]],[[0,2,0,1],[2,4,2,2],[1,3,3,0],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[1,4,3,0],[1,2,0,1]],[[1,2,2,1],[2,0,3,3],[2,1,3,1],[1,1,1,0]],[[1,2,2,2],[2,0,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[2,0,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,3,3],[2,1,3,1],[1,1,0,1]],[[1,2,2,2],[2,0,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[2,0,3,2],[2,1,3,1],[1,1,0,1]],[[0,3,0,1],[2,3,2,2],[1,3,3,1],[0,1,1,1]],[[0,2,0,1],[3,3,2,2],[1,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,4,2,2],[1,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[1,4,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[1,3,4,1],[0,1,1,1]],[[0,3,0,1],[2,3,2,2],[1,3,3,1],[0,1,2,0]],[[0,2,0,1],[3,3,2,2],[1,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,4,2,2],[1,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[1,4,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[1,3,4,1],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[1,3,3,1],[0,1,3,0]],[[0,3,0,1],[2,3,2,2],[1,3,3,1],[0,2,0,1]],[[0,2,0,1],[3,3,2,2],[1,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,4,2,2],[1,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[1,4,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[1,3,4,1],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[1,3,3,1],[0,3,0,1]],[[0,3,0,1],[2,3,2,2],[1,3,3,1],[0,2,1,0]],[[0,2,0,1],[3,3,2,2],[1,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,4,2,2],[1,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,2,2],[1,4,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,2,2],[1,3,4,1],[0,2,1,0]],[[0,2,0,1],[2,3,2,2],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,0,3,3],[2,1,3,1],[1,0,2,0]],[[1,2,2,2],[2,0,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[2,0,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,3,3],[2,1,3,1],[1,0,1,1]],[[1,2,2,2],[2,0,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[2,0,3,2],[2,1,3,1],[1,0,1,1]],[[0,3,0,1],[2,3,2,2],[1,3,3,1],[1,0,1,1]],[[0,2,0,1],[3,3,2,2],[1,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,4,2,2],[1,3,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,2,2],[1,4,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,2,2],[1,3,4,1],[1,0,1,1]],[[0,3,0,1],[2,3,2,2],[1,3,3,1],[1,0,2,0]],[[0,2,0,1],[3,3,2,2],[1,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,4,2,2],[1,3,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,2,2],[1,4,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,2,2],[1,3,4,1],[1,0,2,0]],[[0,2,0,1],[2,3,2,2],[1,3,3,1],[1,0,3,0]],[[0,3,0,1],[2,3,2,2],[1,3,3,1],[1,1,0,1]],[[0,2,0,1],[3,3,2,2],[1,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,4,2,2],[1,3,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,2,2],[1,4,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,2,2],[1,3,4,1],[1,1,0,1]],[[0,3,0,1],[2,3,2,2],[1,3,3,1],[1,1,1,0]],[[0,2,0,1],[3,3,2,2],[1,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,4,2,2],[1,3,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,2,2],[1,4,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,2,2],[1,3,4,1],[1,1,1,0]],[[0,3,0,1],[2,3,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,0,1],[3,3,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,4,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,0,3,3],[2,1,3,1],[0,2,1,0]],[[1,2,2,2],[2,0,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[2,0,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,3,3],[2,1,3,1],[0,2,0,1]],[[1,2,2,2],[2,0,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[2,0,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,3,3],[2,1,3,1],[0,1,2,0]],[[1,2,2,2],[2,0,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[2,0,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,0,2],[2,3,2,2],[1,3,3,2],[0,0,1,1]],[[0,2,0,1],[2,3,2,3],[1,3,3,2],[0,0,1,1]],[[0,2,0,1],[2,3,2,2],[1,3,4,2],[0,0,1,1]],[[0,2,0,1],[2,3,2,2],[1,3,3,3],[0,0,1,1]],[[0,2,0,1],[2,3,2,2],[1,3,3,2],[0,0,1,2]],[[0,2,0,2],[2,3,2,2],[1,3,3,2],[0,0,2,0]],[[0,2,0,1],[2,3,2,3],[1,3,3,2],[0,0,2,0]],[[0,2,0,1],[2,3,2,2],[1,3,4,2],[0,0,2,0]],[[0,2,0,1],[2,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,0,3,3],[2,1,3,1],[0,1,1,1]],[[1,2,2,2],[2,0,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,3,1],[2,0,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,3,3],[2,1,3,1],[0,0,2,1]],[[1,2,2,2],[2,0,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,3,1],[2,0,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[2,0,3,2],[2,1,3,0],[1,3,1,0]],[[1,2,2,1],[2,0,3,2],[2,1,3,0],[2,2,1,0]],[[1,2,2,1],[2,0,3,2],[3,1,3,0],[1,2,1,0]],[[1,2,2,1],[2,0,4,2],[2,1,3,0],[1,2,1,0]],[[1,2,2,1],[3,0,3,2],[2,1,3,0],[1,2,1,0]],[[1,2,2,2],[2,0,3,2],[2,1,3,0],[1,2,1,0]],[[1,2,3,1],[2,0,3,2],[2,1,3,0],[1,2,1,0]],[[1,3,2,1],[2,0,3,2],[2,1,3,0],[1,2,1,0]],[[2,2,2,1],[2,0,3,2],[2,1,3,0],[1,2,1,0]],[[1,2,2,1],[2,0,3,2],[2,1,3,0],[2,2,0,1]],[[1,2,2,1],[2,0,3,2],[3,1,3,0],[1,2,0,1]],[[1,2,2,1],[2,0,4,2],[2,1,3,0],[1,2,0,1]],[[1,2,2,1],[3,0,3,2],[2,1,3,0],[1,2,0,1]],[[1,2,2,2],[2,0,3,2],[2,1,3,0],[1,2,0,1]],[[1,2,3,1],[2,0,3,2],[2,1,3,0],[1,2,0,1]],[[1,3,2,1],[2,0,3,2],[2,1,3,0],[1,2,0,1]],[[2,2,2,1],[2,0,3,2],[2,1,3,0],[1,2,0,1]],[[1,2,2,1],[2,0,3,2],[2,1,3,0],[2,1,2,0]],[[1,2,2,1],[2,0,3,2],[3,1,3,0],[1,1,2,0]],[[1,2,2,1],[2,0,4,2],[2,1,3,0],[1,1,2,0]],[[1,2,2,1],[3,0,3,2],[2,1,3,0],[1,1,2,0]],[[1,2,2,2],[2,0,3,2],[2,1,3,0],[1,1,2,0]],[[1,2,3,1],[2,0,3,2],[2,1,3,0],[1,1,2,0]],[[1,3,2,1],[2,0,3,2],[2,1,3,0],[1,1,2,0]],[[2,2,2,1],[2,0,3,2],[2,1,3,0],[1,1,2,0]],[[1,2,2,1],[2,0,3,3],[2,1,3,0],[1,0,2,1]],[[1,2,2,2],[2,0,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[2,0,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[2,0,3,2],[3,1,3,0],[0,2,2,0]],[[1,2,2,1],[2,0,4,2],[2,1,3,0],[0,2,2,0]],[[1,2,2,1],[3,0,3,2],[2,1,3,0],[0,2,2,0]],[[1,2,2,2],[2,0,3,2],[2,1,3,0],[0,2,2,0]],[[1,2,3,1],[2,0,3,2],[2,1,3,0],[0,2,2,0]],[[1,3,2,1],[2,0,3,2],[2,1,3,0],[0,2,2,0]],[[2,2,2,1],[2,0,3,2],[2,1,3,0],[0,2,2,0]],[[1,2,2,1],[2,0,3,3],[2,1,3,0],[0,1,2,1]],[[1,2,2,2],[2,0,3,2],[2,1,3,0],[0,1,2,1]],[[1,2,3,1],[2,0,3,2],[2,1,3,0],[0,1,2,1]],[[1,2,2,1],[2,0,3,3],[2,1,2,2],[1,1,1,0]],[[1,2,2,2],[2,0,3,2],[2,1,2,2],[1,1,1,0]],[[0,3,0,1],[2,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,0,2],[2,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[3,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,4,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,3],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[3,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,1,3],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[2,0,1,2],[1,2,2,2]],[[0,2,0,2],[2,3,2,2],[2,0,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,3],[2,0,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,2,3],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,2,2],[0,3,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,2,2],[0,2,3,1]],[[0,2,0,1],[2,3,2,2],[2,0,2,2],[0,2,2,2]],[[0,2,0,2],[2,3,2,2],[2,0,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,3],[2,0,2,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,2,3],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,2,2],[1,1,3,1]],[[0,2,0,1],[2,3,2,2],[2,0,2,2],[1,1,2,2]],[[0,3,0,1],[2,3,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[3,3,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[2,4,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[3,0,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,4,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,0],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,0],[1,3,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,0],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,0],[1,2,2,2]],[[0,2,0,1],[2,3,2,2],[2,0,4,1],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,1],[0,3,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,1],[0,2,3,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,1],[0,2,2,2]],[[0,2,0,1],[2,3,2,2],[2,0,4,1],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,1],[1,1,3,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,1],[1,1,2,2]],[[0,3,0,1],[2,3,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,1],[3,3,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,1],[2,4,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[3,0,3,1],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[2,0,4,1],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[2,0,3,1],[2,2,2,0]],[[0,2,0,1],[2,3,2,2],[2,0,3,1],[1,3,2,0]],[[0,2,0,1],[2,3,2,2],[2,0,3,1],[1,2,3,0]],[[0,2,0,2],[2,3,2,2],[2,0,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,2,3],[2,0,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,2,2],[2,0,4,2],[0,2,1,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,3],[0,2,1,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,2],[0,2,1,2]],[[0,2,0,2],[2,3,2,2],[2,0,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,2,3],[2,0,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,2,2],[2,0,4,2],[0,2,2,0]],[[0,2,0,1],[2,3,2,2],[2,0,3,3],[0,2,2,0]],[[0,2,0,1],[2,3,2,2],[2,0,3,2],[0,3,2,0]],[[0,2,0,1],[2,3,2,2],[2,0,3,2],[0,2,3,0]],[[0,2,0,2],[2,3,2,2],[2,0,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,3],[2,0,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[2,0,4,2],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,3],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,2],[1,1,1,2]],[[0,2,0,2],[2,3,2,2],[2,0,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,3],[2,0,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[2,0,4,2],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[2,0,3,3],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[2,0,3,2],[1,1,3,0]],[[0,2,0,2],[2,3,2,2],[2,0,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,2,3],[2,0,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[2,0,4,2],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,3],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[2,0,3,2],[1,2,0,2]],[[0,2,0,2],[2,3,2,2],[2,0,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,2,3],[2,0,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,2,2],[2,0,4,2],[1,2,1,0]],[[0,2,0,1],[2,3,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,3,1],[2,0,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,2],[2,1,2,3],[1,1,0,1]],[[1,2,2,1],[2,0,3,3],[2,1,2,2],[1,1,0,1]],[[1,2,2,2],[2,0,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,3,1],[2,0,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,2],[2,1,2,3],[1,0,2,0]],[[1,2,2,1],[2,0,3,3],[2,1,2,2],[1,0,2,0]],[[0,3,0,1],[2,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,0,2],[2,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[3,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,4,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,3],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[3,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,0,3],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,0,2],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,0,2],[1,3,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,0,2],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[2,1,0,2],[1,2,2,2]],[[0,3,0,1],[2,3,2,2],[2,1,2,0],[1,2,2,1]],[[0,2,0,1],[3,3,2,2],[2,1,2,0],[1,2,2,1]],[[0,2,0,1],[2,4,2,2],[2,1,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[3,1,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,2,0],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,2,0],[1,3,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,2,0],[1,2,3,1]],[[0,2,0,1],[2,3,2,2],[2,1,2,0],[1,2,2,2]],[[0,3,0,1],[2,3,2,2],[2,1,2,1],[1,2,2,0]],[[0,2,0,1],[3,3,2,2],[2,1,2,1],[1,2,2,0]],[[0,2,0,1],[2,4,2,2],[2,1,2,1],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[3,1,2,1],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[2,1,2,1],[2,2,2,0]],[[0,2,0,1],[2,3,2,2],[2,1,2,1],[1,3,2,0]],[[0,2,0,1],[2,3,2,2],[2,1,2,1],[1,2,3,0]],[[0,2,0,2],[2,3,2,2],[2,1,2,2],[0,1,2,1]],[[0,2,0,1],[2,3,2,3],[2,1,2,2],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,2,3],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,2,2],[0,1,3,1]],[[0,2,0,1],[2,3,2,2],[2,1,2,2],[0,1,2,2]],[[0,2,0,2],[2,3,2,2],[2,1,2,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,3],[2,1,2,2],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,2,3],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,2,2],[1,0,3,1]],[[0,2,0,1],[2,3,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,2],[2,0,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,3,1],[2,0,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,2],[2,1,2,2],[1,0,1,2]],[[1,2,2,1],[2,0,3,2],[2,1,2,3],[1,0,1,1]],[[1,2,2,1],[2,0,3,3],[2,1,2,2],[1,0,1,1]],[[1,2,2,2],[2,0,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,3,1],[2,0,3,2],[2,1,2,2],[1,0,1,1]],[[0,3,0,1],[2,3,2,2],[2,1,3,0],[1,2,1,1]],[[0,2,0,1],[3,3,2,2],[2,1,3,0],[1,2,1,1]],[[0,2,0,1],[2,4,2,2],[2,1,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,2,2],[3,1,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,0],[2,2,1,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,0],[1,3,1,1]],[[0,2,0,1],[2,3,2,2],[2,1,4,1],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,1],[0,1,3,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,1],[0,1,2,2]],[[0,2,0,1],[2,3,2,2],[2,1,4,1],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,1],[1,0,3,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,1],[1,0,2,2]],[[0,3,0,1],[2,3,2,2],[2,1,3,1],[1,2,0,1]],[[0,2,0,1],[3,3,2,2],[2,1,3,1],[1,2,0,1]],[[0,2,0,1],[2,4,2,2],[2,1,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[3,1,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,1],[2,2,0,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,1],[1,3,0,1]],[[0,3,0,1],[2,3,2,2],[2,1,3,1],[1,2,1,0]],[[0,2,0,1],[3,3,2,2],[2,1,3,1],[1,2,1,0]],[[0,2,0,1],[2,4,2,2],[2,1,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,2,2],[3,1,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,2,2],[2,1,3,1],[2,2,1,0]],[[0,2,0,1],[2,3,2,2],[2,1,3,1],[1,3,1,0]],[[0,2,0,2],[2,3,2,2],[2,1,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,2,3],[2,1,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,4,2],[0,0,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,3],[0,0,2,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,2],[0,0,2,2]],[[0,2,0,2],[2,3,2,2],[2,1,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,3],[2,1,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[2,1,4,2],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,3],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,2],[0,1,1,2]],[[0,2,0,2],[2,3,2,2],[2,1,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,3],[2,1,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[2,1,4,2],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[2,1,3,3],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[2,1,3,2],[0,1,3,0]],[[0,2,0,2],[2,3,2,2],[2,1,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,3],[2,1,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[2,1,4,2],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,3],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,2],[0,2,0,2]],[[0,2,0,2],[2,3,2,2],[2,1,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,3],[2,1,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,2],[2,1,4,2],[0,2,1,0]],[[0,2,0,1],[2,3,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[2,0,3,3],[2,1,2,2],[0,2,1,0]],[[0,2,0,2],[2,3,2,2],[2,1,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,2,3],[2,1,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,2,2],[2,1,4,2],[1,0,1,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,3],[1,0,1,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,2],[1,0,1,2]],[[0,2,0,2],[2,3,2,2],[2,1,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,2,3],[2,1,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,2,2],[2,1,4,2],[1,0,2,0]],[[0,2,0,1],[2,3,2,2],[2,1,3,3],[1,0,2,0]],[[0,2,0,1],[2,3,2,2],[2,1,3,2],[1,0,3,0]],[[0,2,0,2],[2,3,2,2],[2,1,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,2,3],[2,1,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,2,2],[2,1,4,2],[1,1,0,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,3],[1,1,0,1]],[[0,2,0,1],[2,3,2,2],[2,1,3,2],[1,1,0,2]],[[0,2,0,2],[2,3,2,2],[2,1,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,2,3],[2,1,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,2,2],[2,1,4,2],[1,1,1,0]],[[0,2,0,1],[2,3,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,2],[2,0,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,3,1],[2,0,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,2],[2,1,2,3],[0,2,0,1]],[[1,2,2,1],[2,0,3,3],[2,1,2,2],[0,2,0,1]],[[1,2,2,2],[2,0,3,2],[2,1,2,2],[0,2,0,1]],[[1,2,3,1],[2,0,3,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,2],[2,1,2,3],[0,1,2,0]],[[1,2,2,1],[2,0,3,3],[2,1,2,2],[0,1,2,0]],[[1,2,2,2],[2,0,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,3,1],[2,0,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,2],[2,1,2,2],[0,1,1,2]],[[1,2,2,1],[2,0,3,2],[2,1,2,3],[0,1,1,1]],[[1,2,2,1],[2,0,3,3],[2,1,2,2],[0,1,1,1]],[[1,2,2,2],[2,0,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,3,1],[2,0,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,2],[2,1,2,2],[0,0,2,2]],[[1,2,2,1],[2,0,3,2],[2,1,2,3],[0,0,2,1]],[[1,2,2,1],[2,0,3,3],[2,1,2,2],[0,0,2,1]],[[1,2,2,2],[2,0,3,2],[2,1,2,2],[0,0,2,1]],[[1,2,3,1],[2,0,3,2],[2,1,2,2],[0,0,2,1]],[[0,3,0,1],[2,3,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[3,3,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[2,4,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[3,2,0,2],[0,2,2,1]],[[0,3,0,1],[2,3,2,2],[2,2,0,2],[1,1,2,1]],[[0,2,0,1],[3,3,2,2],[2,2,0,2],[1,1,2,1]],[[0,2,0,1],[2,4,2,2],[2,2,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[3,2,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[2,0,3,2],[2,1,2,0],[1,3,2,0]],[[1,2,2,1],[2,0,3,2],[2,1,2,0],[2,2,2,0]],[[1,2,2,1],[2,0,3,2],[3,1,2,0],[1,2,2,0]],[[0,3,0,1],[2,3,2,2],[2,2,2,0],[0,2,2,1]],[[0,2,0,1],[3,3,2,2],[2,2,2,0],[0,2,2,1]],[[0,2,0,1],[2,4,2,2],[2,2,2,0],[0,2,2,1]],[[0,2,0,1],[2,3,2,2],[3,2,2,0],[0,2,2,1]],[[0,3,0,1],[2,3,2,2],[2,2,2,0],[1,1,2,1]],[[0,2,0,1],[3,3,2,2],[2,2,2,0],[1,1,2,1]],[[0,2,0,1],[2,4,2,2],[2,2,2,0],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[3,2,2,0],[1,1,2,1]],[[0,2,0,1],[2,3,2,2],[2,2,2,0],[2,1,2,1]],[[0,3,0,1],[2,3,2,2],[2,2,2,1],[0,2,2,0]],[[0,2,0,1],[3,3,2,2],[2,2,2,1],[0,2,2,0]],[[0,2,0,1],[2,4,2,2],[2,2,2,1],[0,2,2,0]],[[0,2,0,1],[2,3,2,2],[3,2,2,1],[0,2,2,0]],[[0,3,0,1],[2,3,2,2],[2,2,2,1],[1,1,2,0]],[[0,2,0,1],[3,3,2,2],[2,2,2,1],[1,1,2,0]],[[0,2,0,1],[2,4,2,2],[2,2,2,1],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[3,2,2,1],[1,1,2,0]],[[0,2,0,1],[2,3,2,2],[2,2,2,1],[2,1,2,0]],[[1,2,2,1],[2,0,4,2],[2,1,2,0],[1,2,2,0]],[[1,2,2,1],[3,0,3,2],[2,1,2,0],[1,2,2,0]],[[1,2,2,2],[2,0,3,2],[2,1,2,0],[1,2,2,0]],[[1,2,3,1],[2,0,3,2],[2,1,2,0],[1,2,2,0]],[[1,3,2,1],[2,0,3,2],[2,1,2,0],[1,2,2,0]],[[2,2,2,1],[2,0,3,2],[2,1,2,0],[1,2,2,0]],[[1,2,2,1],[2,0,3,2],[2,1,1,2],[1,0,2,2]],[[1,2,2,1],[2,0,3,2],[2,1,1,3],[1,0,2,1]],[[1,2,2,1],[2,0,3,3],[2,1,1,2],[1,0,2,1]],[[1,2,2,2],[2,0,3,2],[2,1,1,2],[1,0,2,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,0,1],[3,3,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,0,1],[2,4,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,2,2],[3,2,3,0],[0,1,2,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,0],[0,2,1,1]],[[0,2,0,1],[3,3,2,2],[2,2,3,0],[0,2,1,1]],[[0,2,0,1],[2,4,2,2],[2,2,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,2,2],[3,2,3,0],[0,2,1,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,0],[1,0,2,1]],[[0,2,0,1],[3,3,2,2],[2,2,3,0],[1,0,2,1]],[[0,2,0,1],[2,4,2,2],[2,2,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[3,2,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,2,2],[2,2,3,0],[2,0,2,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,0,1],[3,3,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,0,1],[2,4,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[3,2,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,2,2],[2,2,3,0],[2,1,1,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,0],[1,2,0,1]],[[0,2,0,1],[3,3,2,2],[2,2,3,0],[1,2,0,1]],[[0,2,0,1],[2,4,2,2],[2,2,3,0],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[3,2,3,0],[1,2,0,1]],[[0,2,0,1],[2,3,2,2],[2,2,3,0],[2,2,0,1]],[[1,2,3,1],[2,0,3,2],[2,1,1,2],[1,0,2,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,1],[0,1,1,1]],[[0,2,0,1],[3,3,2,2],[2,2,3,1],[0,1,1,1]],[[0,2,0,1],[2,4,2,2],[2,2,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,2,2],[3,2,3,1],[0,1,1,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,1],[0,1,2,0]],[[0,2,0,1],[3,3,2,2],[2,2,3,1],[0,1,2,0]],[[0,2,0,1],[2,4,2,2],[2,2,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,2,2],[3,2,3,1],[0,1,2,0]],[[0,3,0,1],[2,3,2,2],[2,2,3,1],[0,2,0,1]],[[0,2,0,1],[3,3,2,2],[2,2,3,1],[0,2,0,1]],[[0,2,0,1],[2,4,2,2],[2,2,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,2,2],[3,2,3,1],[0,2,0,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,1],[0,2,1,0]],[[0,2,0,1],[3,3,2,2],[2,2,3,1],[0,2,1,0]],[[0,2,0,1],[2,4,2,2],[2,2,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,2,2],[3,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,3,2],[2,1,1,2],[0,1,2,2]],[[1,2,2,1],[2,0,3,2],[2,1,1,3],[0,1,2,1]],[[1,2,2,1],[2,0,3,3],[2,1,1,2],[0,1,2,1]],[[1,2,2,2],[2,0,3,2],[2,1,1,2],[0,1,2,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,0,1],[3,3,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,0,1],[2,4,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,2,2],[3,2,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,2,2],[2,2,3,1],[2,0,1,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,1],[1,0,2,0]],[[0,2,0,1],[3,3,2,2],[2,2,3,1],[1,0,2,0]],[[0,2,0,1],[2,4,2,2],[2,2,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,2,2],[3,2,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,2,2],[2,2,3,1],[2,0,2,0]],[[0,3,0,1],[2,3,2,2],[2,2,3,1],[1,1,0,1]],[[0,2,0,1],[3,3,2,2],[2,2,3,1],[1,1,0,1]],[[0,2,0,1],[2,4,2,2],[2,2,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,2,2],[3,2,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,2,2],[2,2,3,1],[2,1,0,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,1],[1,1,1,0]],[[0,2,0,1],[3,3,2,2],[2,2,3,1],[1,1,1,0]],[[0,2,0,1],[2,4,2,2],[2,2,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,2,2],[3,2,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,2,2],[2,2,3,1],[2,1,1,0]],[[1,2,3,1],[2,0,3,2],[2,1,1,2],[0,1,2,1]],[[0,3,0,1],[2,3,2,2],[2,2,3,1],[1,2,0,0]],[[0,2,0,1],[3,3,2,2],[2,2,3,1],[1,2,0,0]],[[0,2,0,1],[2,4,2,2],[2,2,3,1],[1,2,0,0]],[[0,2,0,1],[2,3,2,2],[3,2,3,1],[1,2,0,0]],[[0,2,0,1],[2,3,2,2],[2,2,3,1],[2,2,0,0]],[[1,2,2,1],[2,0,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[2,0,3,3],[2,0,3,2],[1,0,2,0]],[[1,2,2,2],[2,0,3,2],[2,0,3,2],[1,0,2,0]],[[1,2,3,1],[2,0,3,2],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,2],[2,0,3,2],[1,0,1,2]],[[1,2,2,1],[2,0,3,2],[2,0,3,3],[1,0,1,1]],[[1,2,2,1],[2,0,3,3],[2,0,3,2],[1,0,1,1]],[[1,2,2,2],[2,0,3,2],[2,0,3,2],[1,0,1,1]],[[1,2,3,1],[2,0,3,2],[2,0,3,2],[1,0,1,1]],[[1,2,2,1],[2,0,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,2,1],[2,0,3,3],[2,0,3,2],[0,1,2,0]],[[1,2,2,2],[2,0,3,2],[2,0,3,2],[0,1,2,0]],[[1,2,3,1],[2,0,3,2],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,2],[2,0,3,2],[0,1,1,2]],[[1,2,2,1],[2,0,3,2],[2,0,3,3],[0,1,1,1]],[[1,2,2,1],[2,0,3,3],[2,0,3,2],[0,1,1,1]],[[1,2,2,2],[2,0,3,2],[2,0,3,2],[0,1,1,1]],[[1,2,3,1],[2,0,3,2],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,2],[2,0,3,2],[0,0,2,2]],[[1,2,2,1],[2,0,3,2],[2,0,3,3],[0,0,2,1]],[[1,2,2,1],[2,0,3,3],[2,0,3,2],[0,0,2,1]],[[1,2,2,2],[2,0,3,2],[2,0,3,2],[0,0,2,1]],[[1,2,3,1],[2,0,3,2],[2,0,3,2],[0,0,2,1]],[[1,2,2,1],[2,0,3,3],[2,0,3,1],[1,2,1,0]],[[1,2,2,2],[2,0,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[2,0,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,3,3],[2,0,3,1],[1,2,0,1]],[[1,2,2,2],[2,0,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,3,1],[2,0,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,3,3],[2,0,3,1],[1,1,2,0]],[[1,2,2,2],[2,0,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[2,0,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[2,0,3,3],[2,0,3,1],[1,1,1,1]],[[1,2,2,2],[2,0,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,3,1],[2,0,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,3],[2,0,3,1],[0,2,2,0]],[[1,2,2,2],[2,0,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,3,1],[2,0,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[2,0,3,3],[2,0,3,1],[0,2,1,1]],[[1,2,2,2],[2,0,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,3,1],[2,0,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,3,3],[2,0,3,0],[1,2,1,1]],[[1,2,2,2],[2,0,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,3,1],[2,0,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,3,3],[2,0,3,0],[1,1,2,1]],[[1,2,2,2],[2,0,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[2,0,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[2,0,3,3],[2,0,3,0],[0,2,2,1]],[[1,2,2,2],[2,0,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[2,0,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[2,0,3,2],[2,0,2,3],[1,2,1,0]],[[1,2,2,1],[2,0,3,3],[2,0,2,2],[1,2,1,0]],[[1,2,2,2],[2,0,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,3,1],[2,0,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,2],[2,0,2,2],[1,2,0,2]],[[1,2,2,1],[2,0,3,2],[2,0,2,3],[1,2,0,1]],[[1,2,2,1],[2,0,3,3],[2,0,2,2],[1,2,0,1]],[[1,2,2,2],[2,0,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,3,1],[2,0,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[2,0,3,2],[2,0,2,3],[1,1,2,0]],[[1,2,2,1],[2,0,3,3],[2,0,2,2],[1,1,2,0]],[[1,2,2,2],[2,0,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,3,1],[2,0,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,2],[2,0,2,2],[1,1,1,2]],[[1,2,2,1],[2,0,3,2],[2,0,2,3],[1,1,1,1]],[[1,2,2,1],[2,0,3,3],[2,0,2,2],[1,1,1,1]],[[1,2,2,2],[2,0,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,3,1],[2,0,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,2,1],[2,0,3,2],[2,0,2,3],[0,2,2,0]],[[1,2,2,1],[2,0,3,3],[2,0,2,2],[0,2,2,0]],[[1,2,2,2],[2,0,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,3,1],[2,0,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,2],[2,0,2,2],[0,2,1,2]],[[1,2,2,1],[2,0,3,2],[2,0,2,3],[0,2,1,1]],[[1,2,2,1],[2,0,3,3],[2,0,2,2],[0,2,1,1]],[[1,2,2,2],[2,0,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,3,1],[2,0,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[2,0,3,3],[2,0,2,1],[1,2,2,0]],[[1,2,2,2],[2,0,3,2],[2,0,2,1],[1,2,2,0]],[[0,2,0,1],[3,3,2,2],[2,3,0,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[3,3,0,0],[1,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,3,0,0],[2,2,2,1]],[[0,2,0,1],[2,3,2,2],[2,3,0,0],[1,3,2,1]],[[0,2,0,1],[3,3,2,2],[2,3,0,1],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[3,3,0,1],[1,2,2,0]],[[0,2,0,1],[2,3,2,2],[2,3,0,1],[2,2,2,0]],[[0,2,0,1],[2,3,2,2],[2,3,0,1],[1,3,2,0]],[[1,2,3,1],[2,0,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,3,3],[2,0,2,0],[1,2,2,1]],[[1,2,2,2],[2,0,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,3,1],[2,0,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[2,0,3,2],[2,0,1,3],[1,2,2,0]],[[1,2,2,1],[2,0,3,3],[2,0,1,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,2],[2,0,1,2],[1,2,1,2]],[[1,2,2,1],[2,0,3,2],[2,0,1,3],[1,2,1,1]],[[1,2,2,1],[2,0,3,3],[2,0,1,2],[1,2,1,1]],[[1,2,2,2],[2,0,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,3,1],[2,0,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[2,0,3,2],[2,0,1,2],[1,1,2,2]],[[1,2,2,1],[2,0,3,2],[2,0,1,2],[1,1,3,1]],[[1,2,2,1],[2,0,3,2],[2,0,1,3],[1,1,2,1]],[[1,2,2,1],[2,0,3,3],[2,0,1,2],[1,1,2,1]],[[1,2,2,2],[2,0,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,3,1],[2,0,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,3,2],[2,0,1,2],[0,2,2,2]],[[1,2,2,1],[2,0,3,2],[2,0,1,2],[0,2,3,1]],[[1,2,2,1],[2,0,3,2],[2,0,1,3],[0,2,2,1]],[[1,2,2,1],[2,0,3,3],[2,0,1,2],[0,2,2,1]],[[1,2,2,2],[2,0,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,3,1],[2,0,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,3,3],[2,0,1,1],[1,2,2,1]],[[1,2,2,2],[2,0,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,3,1],[2,0,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,2,1],[2,0,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,0,3,3],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[2,0,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[2,0,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[2,0,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[2,0,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[2,0,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[2,0,3,3],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[2,0,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[2,0,3,2],[1,3,3,1],[0,0,1,1]],[[0,3,0,1],[2,3,2,2],[2,3,3,0],[1,0,1,1]],[[0,2,0,1],[3,3,2,2],[2,3,3,0],[1,0,1,1]],[[0,2,0,1],[2,4,2,2],[2,3,3,0],[1,0,1,1]],[[0,2,0,1],[2,3,2,2],[3,3,3,0],[1,0,1,1]],[[1,2,2,1],[2,0,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[3,0,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,2],[2,0,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,3,1],[2,0,3,2],[1,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,0,3,2],[1,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,0,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,0,4,2],[1,3,3,0],[1,1,0,1]],[[1,2,2,1],[3,0,3,2],[1,3,3,0],[1,1,0,1]],[[1,2,2,2],[2,0,3,2],[1,3,3,0],[1,1,0,1]],[[1,2,3,1],[2,0,3,2],[1,3,3,0],[1,1,0,1]],[[1,3,2,1],[2,0,3,2],[1,3,3,0],[1,1,0,1]],[[2,2,2,1],[2,0,3,2],[1,3,3,0],[1,1,0,1]],[[1,2,2,1],[2,0,4,2],[1,3,3,0],[1,0,2,0]],[[1,2,2,1],[3,0,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,2,2],[2,0,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,3,1],[2,0,3,2],[1,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,0,3,2],[1,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,0,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,2,1],[2,0,4,2],[1,3,3,0],[1,0,1,1]],[[1,2,2,1],[3,0,3,2],[1,3,3,0],[1,0,1,1]],[[1,2,2,2],[2,0,3,2],[1,3,3,0],[1,0,1,1]],[[1,2,3,1],[2,0,3,2],[1,3,3,0],[1,0,1,1]],[[1,3,2,1],[2,0,3,2],[1,3,3,0],[1,0,1,1]],[[2,2,2,1],[2,0,3,2],[1,3,3,0],[1,0,1,1]],[[0,3,0,1],[2,3,2,2],[2,3,3,1],[1,0,0,1]],[[0,2,0,1],[3,3,2,2],[2,3,3,1],[1,0,0,1]],[[0,2,0,1],[2,4,2,2],[2,3,3,1],[1,0,0,1]],[[0,2,0,1],[2,3,2,2],[3,3,3,1],[1,0,0,1]],[[0,3,0,1],[2,3,2,2],[2,3,3,1],[1,0,1,0]],[[0,2,0,1],[3,3,2,2],[2,3,3,1],[1,0,1,0]],[[0,2,0,1],[2,4,2,2],[2,3,3,1],[1,0,1,0]],[[0,2,0,1],[2,3,2,2],[3,3,3,1],[1,0,1,0]],[[1,2,2,1],[2,0,4,2],[1,3,3,0],[0,2,1,0]],[[1,2,2,1],[3,0,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,2,2],[2,0,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,3,1],[2,0,3,2],[1,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,0,3,2],[1,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,0,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,2,1],[2,0,4,2],[1,3,3,0],[0,2,0,1]],[[1,2,2,1],[3,0,3,2],[1,3,3,0],[0,2,0,1]],[[1,2,2,2],[2,0,3,2],[1,3,3,0],[0,2,0,1]],[[1,2,3,1],[2,0,3,2],[1,3,3,0],[0,2,0,1]],[[1,3,2,1],[2,0,3,2],[1,3,3,0],[0,2,0,1]],[[2,2,2,1],[2,0,3,2],[1,3,3,0],[0,2,0,1]],[[1,2,2,1],[2,0,4,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,1],[3,0,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,2],[2,0,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,3,1],[2,0,3,2],[1,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,0,3,2],[1,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,0,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,1],[2,0,4,2],[1,3,3,0],[0,1,1,1]],[[1,2,2,1],[3,0,3,2],[1,3,3,0],[0,1,1,1]],[[1,2,2,2],[2,0,3,2],[1,3,3,0],[0,1,1,1]],[[1,2,3,1],[2,0,3,2],[1,3,3,0],[0,1,1,1]],[[1,3,2,1],[2,0,3,2],[1,3,3,0],[0,1,1,1]],[[2,2,2,1],[2,0,3,2],[1,3,3,0],[0,1,1,1]],[[1,2,2,1],[2,0,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[2,0,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[2,0,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[2,0,3,2],[1,3,2,3],[0,0,1,1]],[[1,2,2,1],[2,0,3,3],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[2,0,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[2,0,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[2,0,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,2,1],[2,0,3,2],[1,3,2,0],[2,2,1,0]],[[1,2,2,1],[2,0,3,2],[1,4,2,0],[1,2,1,0]],[[1,2,2,1],[2,0,3,2],[1,3,1,0],[1,3,2,0]],[[1,2,2,1],[2,0,3,2],[1,3,1,0],[2,2,2,0]],[[1,2,2,1],[2,0,3,2],[1,4,1,0],[1,2,2,0]],[[1,2,2,1],[2,0,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[2,0,3,3],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,0,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,0,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[2,0,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,1],[2,0,3,3],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,0,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,1],[2,0,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,2,1],[2,0,3,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,0,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,0,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,3,3],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,0,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,0,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,0,3,3],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,0,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,0,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,3,3],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,0,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,0,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,0,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,0,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,3,3],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,0,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,0,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,3,3],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,0,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,0,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,3,3],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,0,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,0,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,3,3],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,0,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[2,0,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,3,0],[0,1,4,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,0],[0,1,3,2],[2,2,2,1]],[[0,2,0,1],[2,3,3,0],[0,1,3,2],[1,3,2,1]],[[0,2,0,1],[2,3,3,0],[0,1,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,0],[0,1,3,2],[1,2,2,2]],[[0,2,0,1],[2,3,3,0],[0,2,4,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,0],[0,2,3,2],[1,1,3,1]],[[0,2,0,1],[2,3,3,0],[0,2,3,2],[1,1,2,2]],[[0,2,0,1],[2,3,3,0],[0,3,4,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,0],[0,3,3,2],[0,1,3,1]],[[0,2,0,1],[2,3,3,0],[0,3,3,2],[0,1,2,2]],[[0,2,0,1],[2,3,3,0],[1,0,4,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,0],[1,0,3,2],[2,2,2,1]],[[0,2,0,1],[2,3,3,0],[1,0,3,2],[1,3,2,1]],[[0,2,0,1],[2,3,3,0],[1,0,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,0],[1,0,3,2],[1,2,2,2]],[[0,2,0,1],[2,3,3,0],[1,1,4,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,0],[1,1,3,2],[0,3,2,1]],[[0,2,0,1],[2,3,3,0],[1,1,3,2],[0,2,3,1]],[[0,2,0,1],[2,3,3,0],[1,1,3,2],[0,2,2,2]],[[0,2,0,1],[2,3,3,0],[1,2,4,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,0],[1,2,3,2],[0,1,3,1]],[[0,2,0,1],[2,3,3,0],[1,2,3,2],[0,1,2,2]],[[0,2,0,1],[2,3,3,0],[1,2,4,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,0],[1,2,3,2],[1,0,3,1]],[[0,2,0,1],[2,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,2,1],[2,0,3,3],[1,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,0,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,0,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,0,4,2],[1,2,3,0],[0,2,2,0]],[[1,2,2,1],[3,0,3,2],[1,2,3,0],[0,2,2,0]],[[1,2,2,2],[2,0,3,2],[1,2,3,0],[0,2,2,0]],[[1,2,3,1],[2,0,3,2],[1,2,3,0],[0,2,2,0]],[[1,3,2,1],[2,0,3,2],[1,2,3,0],[0,2,2,0]],[[2,2,2,1],[2,0,3,2],[1,2,3,0],[0,2,2,0]],[[1,2,2,1],[2,0,3,3],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,0,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,0,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,0],[2,0,4,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,0],[2,0,3,2],[0,3,2,1]],[[0,2,0,1],[2,3,3,0],[2,0,3,2],[0,2,3,1]],[[0,2,0,1],[2,3,3,0],[2,0,3,2],[0,2,2,2]],[[0,2,0,1],[2,3,3,0],[2,0,4,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,0],[2,0,3,2],[1,1,3,1]],[[0,2,0,1],[2,3,3,0],[2,0,3,2],[1,1,2,2]],[[0,2,0,1],[2,3,3,0],[2,1,4,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,0],[2,1,3,2],[0,1,3,1]],[[0,2,0,1],[2,3,3,0],[2,1,3,2],[0,1,2,2]],[[0,2,0,1],[2,3,3,0],[2,1,4,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,0],[2,1,3,2],[1,0,3,1]],[[0,2,0,1],[2,3,3,0],[2,1,3,2],[1,0,2,2]],[[1,2,2,1],[2,0,3,3],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,0,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,0,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,2],[1,2,2,3],[1,1,0,1]],[[1,2,2,1],[2,0,3,3],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,0,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,0,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,2],[1,2,2,3],[1,0,2,0]],[[1,2,2,1],[2,0,3,3],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,0,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,0,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,2],[1,2,2,2],[1,0,1,2]],[[1,2,2,1],[2,0,3,2],[1,2,2,3],[1,0,1,1]],[[1,2,2,1],[2,0,3,3],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,0,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,0,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,0,3,3],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,0,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,0,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,2],[1,2,2,3],[0,2,0,1]],[[1,2,2,1],[2,0,3,3],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,0,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,0,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,2],[1,2,2,3],[0,1,2,0]],[[1,2,2,1],[2,0,3,3],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,0,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,0,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,2],[1,2,2,2],[0,1,1,2]],[[1,2,2,1],[2,0,3,2],[1,2,2,3],[0,1,1,1]],[[1,2,2,1],[2,0,3,3],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,0,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,0,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,2],[1,2,2,2],[0,0,2,2]],[[1,2,2,1],[2,0,3,2],[1,2,2,3],[0,0,2,1]],[[1,2,2,1],[2,0,3,3],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,0,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,0,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[2,0,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,1],[2,0,3,2],[1,2,1,3],[1,0,2,1]],[[1,2,2,1],[2,0,3,3],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[2,0,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,3,1],[2,0,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,0,3,2],[1,2,1,2],[0,1,2,2]],[[1,2,2,1],[2,0,3,2],[1,2,1,3],[0,1,2,1]],[[1,2,2,1],[2,0,3,3],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,0,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,0,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[2,0,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,1],[2,0,3,3],[1,1,3,2],[1,0,2,0]],[[1,2,2,2],[2,0,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,3,1],[2,0,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,2],[1,1,3,2],[1,0,1,2]],[[1,2,2,1],[2,0,3,2],[1,1,3,3],[1,0,1,1]],[[1,2,2,1],[2,0,3,3],[1,1,3,2],[1,0,1,1]],[[1,2,2,2],[2,0,3,2],[1,1,3,2],[1,0,1,1]],[[1,2,3,1],[2,0,3,2],[1,1,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[0,0,3,3],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,0,3,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,1],[0,0,3,2],[1,2,2,2]],[[0,2,0,1],[2,3,3,1],[0,1,2,3],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,1,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,1,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,3,1],[0,1,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,1],[0,1,2,2],[1,2,2,2]],[[0,3,0,1],[2,3,3,1],[0,1,3,1],[1,2,2,1]],[[0,2,0,1],[3,3,3,1],[0,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,4,3,1],[0,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,4,1],[0,1,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,1,4,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,1,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,1,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,3,1],[0,1,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,3,1],[0,1,3,1],[1,2,2,2]],[[0,3,0,1],[2,3,3,1],[0,1,3,2],[1,2,1,1]],[[0,2,0,1],[3,3,3,1],[0,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,4,3,1],[0,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,4,1],[0,1,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[0,1,4,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[0,1,3,3],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[0,1,3,2],[1,2,1,2]],[[0,3,0,1],[2,3,3,1],[0,1,3,2],[1,2,2,0]],[[0,2,0,1],[3,3,3,1],[0,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,4,3,1],[0,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,4,1],[0,1,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[0,1,4,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[0,1,3,3],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[0,1,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,3,1],[0,1,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,3,1],[0,1,3,2],[1,2,3,0]],[[0,2,0,1],[2,3,3,1],[0,2,2,3],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[0,2,2,2],[1,1,3,1]],[[0,2,0,1],[2,3,3,1],[0,2,2,2],[1,1,2,2]],[[0,3,0,1],[2,3,3,1],[0,2,3,1],[1,1,2,1]],[[0,2,0,1],[3,3,3,1],[0,2,3,1],[1,1,2,1]],[[0,2,0,1],[2,4,3,1],[0,2,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,4,1],[0,2,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[0,2,4,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[0,2,3,1],[1,1,3,1]],[[0,2,0,1],[2,3,3,1],[0,2,3,1],[1,1,2,2]],[[0,3,0,1],[2,3,3,1],[0,2,3,1],[1,2,1,1]],[[0,2,0,1],[3,3,3,1],[0,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,4,3,1],[0,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,4,1],[0,2,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[0,2,4,1],[1,2,1,1]],[[0,3,0,1],[2,3,3,1],[0,2,3,2],[1,0,2,1]],[[0,2,0,1],[2,4,3,1],[0,2,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,4,1],[0,2,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[0,2,4,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[0,2,3,3],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[0,2,3,2],[1,0,2,2]],[[0,3,0,1],[2,3,3,1],[0,2,3,2],[1,1,1,1]],[[0,2,0,1],[3,3,3,1],[0,2,3,2],[1,1,1,1]],[[0,2,0,1],[2,4,3,1],[0,2,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,4,1],[0,2,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[0,2,4,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[0,2,3,3],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[0,2,3,2],[1,1,1,2]],[[0,3,0,1],[2,3,3,1],[0,2,3,2],[1,1,2,0]],[[0,2,0,1],[3,3,3,1],[0,2,3,2],[1,1,2,0]],[[0,2,0,1],[2,4,3,1],[0,2,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,4,1],[0,2,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[0,2,4,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[0,2,3,3],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[0,2,3,2],[1,1,3,0]],[[0,3,0,1],[2,3,3,1],[0,2,3,2],[1,2,0,1]],[[0,2,0,1],[3,3,3,1],[0,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,4,3,1],[0,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,4,1],[0,2,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[0,2,4,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[0,2,3,3],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[0,2,3,2],[1,2,0,2]],[[0,3,0,1],[2,3,3,1],[0,2,3,2],[1,2,1,0]],[[0,2,0,1],[3,3,3,1],[0,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,4,3,1],[0,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,4,1],[0,2,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[0,2,4,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[0,2,3,3],[1,2,1,0]],[[0,3,0,1],[2,3,3,1],[0,3,0,2],[1,2,2,1]],[[0,2,0,1],[3,3,3,1],[0,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,4,3,1],[0,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,4,1],[0,3,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,4,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,0,3],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,0,2],[2,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,0,2],[1,3,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,0,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,1],[0,3,0,2],[1,2,2,2]],[[0,3,0,1],[2,3,3,1],[0,3,1,1],[1,2,2,1]],[[0,2,0,1],[3,3,3,1],[0,3,1,1],[1,2,2,1]],[[0,2,0,1],[2,4,3,1],[0,3,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,4,1],[0,3,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,4,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,1,1],[2,2,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,1,1],[1,3,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,1,1],[1,2,3,1]],[[0,2,0,1],[2,3,3,1],[0,3,1,1],[1,2,2,2]],[[0,3,0,1],[2,3,3,1],[0,3,1,2],[1,2,2,0]],[[0,2,0,1],[3,3,3,1],[0,3,1,2],[1,2,2,0]],[[0,2,0,1],[2,4,3,1],[0,3,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,4,1],[0,3,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[0,4,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[0,3,1,2],[2,2,2,0]],[[0,2,0,1],[2,3,3,1],[0,3,1,2],[1,3,2,0]],[[0,2,0,1],[2,3,3,1],[0,3,1,2],[1,2,3,0]],[[0,3,0,1],[2,3,3,1],[0,3,2,1],[1,1,2,1]],[[0,2,0,1],[3,3,3,1],[0,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,4,3,1],[0,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,4,1],[0,3,2,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[0,4,2,1],[1,1,2,1]],[[0,3,0,1],[2,3,3,1],[0,3,2,1],[1,2,1,1]],[[0,2,0,1],[3,3,3,1],[0,3,2,1],[1,2,1,1]],[[0,2,0,1],[2,4,3,1],[0,3,2,1],[1,2,1,1]],[[0,2,0,1],[2,3,4,1],[0,3,2,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[0,4,2,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[0,3,2,1],[2,2,1,1]],[[0,2,0,1],[2,3,3,1],[0,3,2,1],[1,3,1,1]],[[0,2,0,1],[2,3,3,1],[0,3,2,3],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,2,2],[0,1,3,1]],[[0,2,0,1],[2,3,3,1],[0,3,2,2],[0,1,2,2]],[[0,3,0,1],[2,3,3,1],[0,3,2,2],[1,1,1,1]],[[0,2,0,1],[3,3,3,1],[0,3,2,2],[1,1,1,1]],[[0,2,0,1],[2,4,3,1],[0,3,2,2],[1,1,1,1]],[[0,2,0,1],[2,3,4,1],[0,3,2,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[0,4,2,2],[1,1,1,1]],[[0,3,0,1],[2,3,3,1],[0,3,2,2],[1,1,2,0]],[[0,2,0,1],[3,3,3,1],[0,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,4,3,1],[0,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,4,1],[0,3,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[0,4,2,2],[1,1,2,0]],[[0,3,0,1],[2,3,3,1],[0,3,2,2],[1,2,0,1]],[[0,2,0,1],[3,3,3,1],[0,3,2,2],[1,2,0,1]],[[0,2,0,1],[2,4,3,1],[0,3,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,4,1],[0,3,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[0,4,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[0,3,2,2],[2,2,0,1]],[[0,2,0,1],[2,3,3,1],[0,3,2,2],[1,3,0,1]],[[0,3,0,1],[2,3,3,1],[0,3,2,2],[1,2,1,0]],[[0,2,0,1],[3,3,3,1],[0,3,2,2],[1,2,1,0]],[[0,2,0,1],[2,4,3,1],[0,3,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,4,1],[0,3,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[0,4,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[0,3,2,2],[2,2,1,0]],[[0,2,0,1],[2,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,1],[2,0,3,3],[1,1,3,2],[0,1,2,0]],[[1,2,2,2],[2,0,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,3,1],[2,0,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,2],[1,1,3,2],[0,1,1,2]],[[1,2,2,1],[2,0,3,2],[1,1,3,3],[0,1,1,1]],[[1,2,2,1],[2,0,3,3],[1,1,3,2],[0,1,1,1]],[[1,2,2,2],[2,0,3,2],[1,1,3,2],[0,1,1,1]],[[0,3,0,1],[2,3,3,1],[0,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,4,3,1],[0,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,4,1],[0,3,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,4,1],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,3,1],[0,1,3,1]],[[0,2,0,1],[2,3,3,1],[0,3,3,1],[0,1,2,2]],[[0,3,0,1],[2,3,3,1],[0,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,4,3,1],[0,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,4,1],[0,3,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,2,3,1],[2,0,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,2],[1,1,3,2],[0,0,2,2]],[[1,2,2,1],[2,0,3,2],[1,1,3,3],[0,0,2,1]],[[1,2,2,1],[2,0,3,3],[1,1,3,2],[0,0,2,1]],[[1,2,2,2],[2,0,3,2],[1,1,3,2],[0,0,2,1]],[[1,2,3,1],[2,0,3,2],[1,1,3,2],[0,0,2,1]],[[0,3,0,1],[2,3,3,1],[0,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,4,3,1],[0,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,4,1],[0,3,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,4,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,3,3],[0,0,2,1]],[[0,2,0,1],[2,3,3,1],[0,3,3,2],[0,0,2,2]],[[0,3,0,1],[2,3,3,1],[0,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,4,3,1],[0,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,1],[0,3,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[0,3,4,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[0,3,3,3],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[0,3,3,2],[0,1,1,2]],[[0,3,0,1],[2,3,3,1],[0,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,4,3,1],[0,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,1],[0,3,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[0,3,4,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[0,3,3,3],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[0,3,3,2],[0,1,3,0]],[[0,3,0,1],[2,3,3,1],[0,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,1],[0,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,4,1],[0,3,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[0,3,4,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[0,3,3,3],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[0,3,3,2],[0,2,0,2]],[[0,3,0,1],[2,3,3,1],[0,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,1],[0,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,4,1],[0,3,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,1],[0,3,4,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,1],[0,3,3,3],[0,2,1,0]],[[0,3,0,1],[2,3,3,1],[0,3,3,2],[1,2,0,0]],[[0,2,0,1],[3,3,3,1],[0,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,4,3,1],[0,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,4,1],[0,3,3,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,0,3,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,0,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,0,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,0,3,3],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,0,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,0,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,4,2],[1,1,3,0],[1,2,2,0]],[[1,2,2,1],[3,0,3,2],[1,1,3,0],[1,2,2,0]],[[1,2,2,2],[2,0,3,2],[1,1,3,0],[1,2,2,0]],[[1,2,3,1],[2,0,3,2],[1,1,3,0],[1,2,2,0]],[[1,3,2,1],[2,0,3,2],[1,1,3,0],[1,2,2,0]],[[2,2,2,1],[2,0,3,2],[1,1,3,0],[1,2,2,0]],[[1,2,2,1],[2,0,3,3],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,0,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,0,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,0,2,3],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,0,2,2],[2,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,0,2,2],[1,3,2,1]],[[0,2,0,1],[2,3,3,1],[1,0,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,1],[1,0,2,2],[1,2,2,2]],[[0,3,0,1],[2,3,3,1],[1,0,3,1],[1,2,2,1]],[[0,2,0,1],[3,3,3,1],[1,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,4,3,1],[1,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,4,1],[1,0,3,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,0,4,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,0,3,1],[2,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,0,3,1],[1,3,2,1]],[[0,2,0,1],[2,3,3,1],[1,0,3,1],[1,2,3,1]],[[0,2,0,1],[2,3,3,1],[1,0,3,1],[1,2,2,2]],[[0,2,0,1],[2,3,3,1],[1,0,3,3],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,0,3,2],[0,2,3,1]],[[0,2,0,1],[2,3,3,1],[1,0,3,2],[0,2,2,2]],[[0,3,0,1],[2,3,3,1],[1,0,3,2],[1,2,1,1]],[[0,2,0,1],[3,3,3,1],[1,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,4,3,1],[1,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,4,1],[1,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[1,0,4,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[1,0,3,3],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[1,0,3,2],[1,2,1,2]],[[0,3,0,1],[2,3,3,1],[1,0,3,2],[1,2,2,0]],[[0,2,0,1],[3,3,3,1],[1,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,4,3,1],[1,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,4,1],[1,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[1,0,4,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[1,0,3,3],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[1,0,3,2],[2,2,2,0]],[[0,2,0,1],[2,3,3,1],[1,0,3,2],[1,3,2,0]],[[0,2,0,1],[2,3,3,1],[1,0,3,2],[1,2,3,0]],[[0,2,0,1],[2,3,3,1],[1,1,2,3],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,1,2,2],[0,3,2,1]],[[0,2,0,1],[2,3,3,1],[1,1,2,2],[0,2,3,1]],[[0,2,0,1],[2,3,3,1],[1,1,2,2],[0,2,2,2]],[[0,3,0,1],[2,3,3,1],[1,1,3,1],[0,2,2,1]],[[0,2,0,1],[3,3,3,1],[1,1,3,1],[0,2,2,1]],[[0,2,0,1],[2,4,3,1],[1,1,3,1],[0,2,2,1]],[[0,2,0,1],[2,3,4,1],[1,1,3,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,1,4,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,1,3,1],[0,3,2,1]],[[0,2,0,1],[2,3,3,1],[1,1,3,1],[0,2,3,1]],[[0,2,0,1],[2,3,3,1],[1,1,3,1],[0,2,2,2]],[[0,3,0,1],[2,3,3,1],[1,1,3,2],[0,2,1,1]],[[0,2,0,1],[3,3,3,1],[1,1,3,2],[0,2,1,1]],[[0,2,0,1],[2,4,3,1],[1,1,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,4,1],[1,1,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[1,1,4,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[1,1,3,3],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[1,1,3,2],[0,2,1,2]],[[0,3,0,1],[2,3,3,1],[1,1,3,2],[0,2,2,0]],[[0,2,0,1],[3,3,3,1],[1,1,3,2],[0,2,2,0]],[[0,2,0,1],[2,4,3,1],[1,1,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,4,1],[1,1,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,1],[1,1,4,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,1],[1,1,3,3],[0,2,2,0]],[[0,2,0,1],[2,3,3,1],[1,1,3,2],[0,3,2,0]],[[0,2,0,1],[2,3,3,1],[1,1,3,2],[0,2,3,0]],[[0,2,0,1],[2,3,3,1],[1,2,2,3],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[1,2,2,2],[0,1,3,1]],[[0,2,0,1],[2,3,3,1],[1,2,2,2],[0,1,2,2]],[[0,2,0,1],[2,3,3,1],[1,2,2,3],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[1,2,2,2],[1,0,3,1]],[[0,2,0,1],[2,3,3,1],[1,2,2,2],[1,0,2,2]],[[0,3,0,1],[2,3,3,1],[1,2,3,1],[0,1,2,1]],[[0,2,0,1],[3,3,3,1],[1,2,3,1],[0,1,2,1]],[[0,2,0,1],[2,4,3,1],[1,2,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,4,1],[1,2,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[1,2,4,1],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,1],[0,1,3,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,1],[0,1,2,2]],[[0,3,0,1],[2,3,3,1],[1,2,3,1],[0,2,1,1]],[[0,2,0,1],[3,3,3,1],[1,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,4,3,1],[1,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,4,1],[1,2,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[1,2,4,1],[0,2,1,1]],[[0,3,0,1],[2,3,3,1],[1,2,3,1],[1,0,2,1]],[[0,2,0,1],[3,3,3,1],[1,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,4,3,1],[1,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,4,1],[1,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[1,2,4,1],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,1],[1,0,3,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,1],[1,0,2,2]],[[0,3,0,1],[2,3,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,0,1],[3,3,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,4,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,4,1],[1,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[1,2,4,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,1],[2,0,3,3],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,0,3,2],[1,1,2,2],[0,2,2,0]],[[0,3,0,1],[2,3,3,1],[1,2,3,2],[0,0,2,1]],[[0,2,0,1],[3,3,3,1],[1,2,3,2],[0,0,2,1]],[[0,2,0,1],[2,4,3,1],[1,2,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,4,1],[1,2,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,1],[1,2,4,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,3],[0,0,2,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,2],[0,0,2,2]],[[0,3,0,1],[2,3,3,1],[1,2,3,2],[0,1,1,1]],[[0,2,0,1],[3,3,3,1],[1,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,4,3,1],[1,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,1],[1,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[1,2,4,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,3],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,2],[0,1,1,2]],[[0,3,0,1],[2,3,3,1],[1,2,3,2],[0,1,2,0]],[[0,2,0,1],[3,3,3,1],[1,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,4,3,1],[1,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,1],[1,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[1,2,4,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[1,2,3,3],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[1,2,3,2],[0,1,3,0]],[[0,3,0,1],[2,3,3,1],[1,2,3,2],[0,2,0,1]],[[0,2,0,1],[3,3,3,1],[1,2,3,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,1],[1,2,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,4,1],[1,2,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[1,2,4,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,3],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,2],[0,2,0,2]],[[0,3,0,1],[2,3,3,1],[1,2,3,2],[0,2,1,0]],[[0,2,0,1],[3,3,3,1],[1,2,3,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,1],[1,2,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,4,1],[1,2,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,1],[1,2,4,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,3,1],[2,0,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,2],[1,1,2,2],[0,2,1,2]],[[1,2,2,1],[2,0,3,2],[1,1,2,3],[0,2,1,1]],[[1,2,2,1],[2,0,3,3],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,0,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[2,0,3,2],[1,1,2,2],[0,2,1,1]],[[0,3,0,1],[2,3,3,1],[1,2,3,2],[1,0,1,1]],[[0,2,0,1],[3,3,3,1],[1,2,3,2],[1,0,1,1]],[[0,2,0,1],[2,4,3,1],[1,2,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,4,1],[1,2,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[1,2,4,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,3],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,2],[1,0,1,2]],[[0,3,0,1],[2,3,3,1],[1,2,3,2],[1,0,2,0]],[[0,2,0,1],[3,3,3,1],[1,2,3,2],[1,0,2,0]],[[0,2,0,1],[2,4,3,1],[1,2,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,4,1],[1,2,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,1],[1,2,4,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,1],[1,2,3,3],[1,0,2,0]],[[0,2,0,1],[2,3,3,1],[1,2,3,2],[1,0,3,0]],[[0,3,0,1],[2,3,3,1],[1,2,3,2],[1,1,0,1]],[[0,2,0,1],[3,3,3,1],[1,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,4,3,1],[1,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,4,1],[1,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[1,2,4,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,3],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[1,2,3,2],[1,1,0,2]],[[0,3,0,1],[2,3,3,1],[1,2,3,2],[1,1,1,0]],[[0,2,0,1],[3,3,3,1],[1,2,3,2],[1,1,1,0]],[[0,2,0,1],[2,4,3,1],[1,2,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,4,1],[1,2,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,1],[1,2,4,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,3,2],[1,1,1,2],[0,2,2,2]],[[1,2,2,1],[2,0,3,2],[1,1,1,2],[0,2,3,1]],[[1,2,2,1],[2,0,3,2],[1,1,1,3],[0,2,2,1]],[[1,2,2,1],[2,0,3,3],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,0,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,0,3,2],[1,1,1,2],[0,2,2,1]],[[0,3,0,1],[2,3,3,1],[1,3,0,2],[0,2,2,1]],[[0,2,0,1],[3,3,3,1],[1,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,4,3,1],[1,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,4,1],[1,3,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,4,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,3,0,3],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,3,0,2],[0,3,2,1]],[[0,2,0,1],[2,3,3,1],[1,3,0,2],[0,2,3,1]],[[0,2,0,1],[2,3,3,1],[1,3,0,2],[0,2,2,2]],[[0,3,0,1],[2,3,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,0,1],[3,3,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,4,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,4,1],[1,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[1,4,0,2],[1,1,2,1]],[[0,3,0,1],[2,3,3,1],[1,3,1,1],[0,2,2,1]],[[0,2,0,1],[3,3,3,1],[1,3,1,1],[0,2,2,1]],[[0,2,0,1],[2,4,3,1],[1,3,1,1],[0,2,2,1]],[[0,2,0,1],[2,3,4,1],[1,3,1,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,4,1,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[1,3,1,1],[0,3,2,1]],[[0,2,0,1],[2,3,3,1],[1,3,1,1],[0,2,3,1]],[[0,2,0,1],[2,3,3,1],[1,3,1,1],[0,2,2,2]],[[0,3,0,1],[2,3,3,1],[1,3,1,1],[1,1,2,1]],[[0,2,0,1],[3,3,3,1],[1,3,1,1],[1,1,2,1]],[[0,2,0,1],[2,4,3,1],[1,3,1,1],[1,1,2,1]],[[0,2,0,1],[2,3,4,1],[1,3,1,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[1,4,1,1],[1,1,2,1]],[[0,3,0,1],[2,3,3,1],[1,3,1,2],[0,2,2,0]],[[0,2,0,1],[3,3,3,1],[1,3,1,2],[0,2,2,0]],[[0,2,0,1],[2,4,3,1],[1,3,1,2],[0,2,2,0]],[[0,2,0,1],[2,3,4,1],[1,3,1,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,1],[1,4,1,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,1],[1,3,1,2],[0,3,2,0]],[[0,2,0,1],[2,3,3,1],[1,3,1,2],[0,2,3,0]],[[0,3,0,1],[2,3,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,0,1],[3,3,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,0,1],[2,4,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,0,1],[2,3,4,1],[1,3,1,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[2,0,3,3],[1,0,3,2],[0,2,2,0]],[[1,2,2,2],[2,0,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,3,1],[2,0,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,2],[1,0,3,2],[0,2,1,2]],[[1,2,2,1],[2,0,3,2],[1,0,3,3],[0,2,1,1]],[[1,2,2,1],[2,0,3,3],[1,0,3,2],[0,2,1,1]],[[1,2,2,2],[2,0,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,3,1],[2,0,3,2],[1,0,3,2],[0,2,1,1]],[[0,3,0,1],[2,3,3,1],[1,3,2,1],[0,1,2,1]],[[0,2,0,1],[3,3,3,1],[1,3,2,1],[0,1,2,1]],[[0,2,0,1],[2,4,3,1],[1,3,2,1],[0,1,2,1]],[[0,2,0,1],[2,3,4,1],[1,3,2,1],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[1,4,2,1],[0,1,2,1]],[[0,3,0,1],[2,3,3,1],[1,3,2,1],[0,2,1,1]],[[0,2,0,1],[3,3,3,1],[1,3,2,1],[0,2,1,1]],[[0,2,0,1],[2,4,3,1],[1,3,2,1],[0,2,1,1]],[[0,2,0,1],[2,3,4,1],[1,3,2,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[1,4,2,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[1,3,2,1],[0,3,1,1]],[[0,3,0,1],[2,3,3,1],[1,3,2,1],[1,0,2,1]],[[0,2,0,1],[3,3,3,1],[1,3,2,1],[1,0,2,1]],[[0,2,0,1],[2,4,3,1],[1,3,2,1],[1,0,2,1]],[[0,2,0,1],[2,3,4,1],[1,3,2,1],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[1,4,2,1],[1,0,2,1]],[[0,3,0,1],[2,3,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,0,1],[3,3,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,0,1],[2,4,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,0,1],[2,3,4,1],[1,3,2,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[1,4,2,1],[1,1,1,1]],[[0,2,0,1],[3,3,3,1],[1,3,2,1],[1,2,0,1]],[[0,2,0,1],[2,4,3,1],[1,3,2,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[1,4,2,1],[1,2,0,1]],[[1,2,2,1],[2,0,3,2],[1,0,3,2],[0,1,2,2]],[[1,2,2,1],[2,0,3,2],[1,0,3,3],[0,1,2,1]],[[1,2,2,1],[2,0,3,3],[1,0,3,2],[0,1,2,1]],[[1,2,2,2],[2,0,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,3,1],[2,0,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,2,1],[2,0,3,3],[1,0,3,1],[1,2,2,0]],[[0,3,0,1],[2,3,3,1],[1,3,2,2],[0,1,1,1]],[[0,2,0,1],[3,3,3,1],[1,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,4,3,1],[1,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,1],[1,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[1,4,2,2],[0,1,1,1]],[[0,3,0,1],[2,3,3,1],[1,3,2,2],[0,1,2,0]],[[0,2,0,1],[3,3,3,1],[1,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,4,3,1],[1,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,1],[1,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[1,4,2,2],[0,1,2,0]],[[0,3,0,1],[2,3,3,1],[1,3,2,2],[0,2,0,1]],[[0,2,0,1],[3,3,3,1],[1,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,1],[1,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,4,1],[1,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[1,4,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[1,3,2,2],[0,3,0,1]],[[0,3,0,1],[2,3,3,1],[1,3,2,2],[0,2,1,0]],[[0,2,0,1],[3,3,3,1],[1,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,1],[1,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,4,1],[1,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,1],[1,4,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,1],[1,3,2,2],[0,3,1,0]],[[1,2,2,2],[2,0,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[2,0,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[2,0,3,3],[1,0,3,1],[1,2,1,1]],[[1,2,2,2],[2,0,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,3,1],[2,0,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,3,3],[1,0,3,0],[1,2,2,1]],[[1,2,2,2],[2,0,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,3,1],[2,0,3,2],[1,0,3,0],[1,2,2,1]],[[0,3,0,1],[2,3,3,1],[1,3,2,2],[1,0,1,1]],[[0,2,0,1],[3,3,3,1],[1,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,4,3,1],[1,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,4,1],[1,3,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[1,4,2,2],[1,0,1,1]],[[0,3,0,1],[2,3,3,1],[1,3,2,2],[1,0,2,0]],[[0,2,0,1],[3,3,3,1],[1,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,4,3,1],[1,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,4,1],[1,3,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,1],[1,4,2,2],[1,0,2,0]],[[0,3,0,1],[2,3,3,1],[1,3,2,2],[1,1,0,1]],[[0,2,0,1],[3,3,3,1],[1,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,4,3,1],[1,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,4,1],[1,3,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[1,4,2,2],[1,1,0,1]],[[0,3,0,1],[2,3,3,1],[1,3,2,2],[1,1,1,0]],[[0,2,0,1],[3,3,3,1],[1,3,2,2],[1,1,1,0]],[[0,2,0,1],[2,4,3,1],[1,3,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,4,1],[1,3,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,1],[1,4,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,2],[1,0,2,3],[1,2,2,0]],[[1,2,2,1],[2,0,3,3],[1,0,2,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,2],[1,0,2,2],[1,2,2,0]],[[0,3,0,1],[2,3,3,1],[1,3,2,2],[1,2,0,0]],[[0,2,0,1],[3,3,3,1],[1,3,2,2],[1,2,0,0]],[[0,2,0,1],[2,4,3,1],[1,3,2,2],[1,2,0,0]],[[0,2,0,1],[2,3,4,1],[1,3,2,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,1],[1,4,2,2],[1,2,0,0]],[[1,2,3,1],[2,0,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,2],[1,0,2,2],[1,2,1,2]],[[1,2,2,1],[2,0,3,2],[1,0,2,3],[1,2,1,1]],[[1,2,2,1],[2,0,3,3],[1,0,2,2],[1,2,1,1]],[[1,2,2,2],[2,0,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,3,1],[2,0,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[2,0,3,2],[1,0,2,2],[0,2,2,2]],[[1,2,2,1],[2,0,3,2],[1,0,2,2],[0,2,3,1]],[[1,2,2,1],[2,0,3,2],[1,0,2,3],[0,2,2,1]],[[1,2,2,1],[2,0,3,3],[1,0,2,2],[0,2,2,1]],[[1,2,2,2],[2,0,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,3,1],[2,0,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,2,1],[2,0,3,2],[1,0,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,3,2],[1,0,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,3,2],[1,0,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,3,3],[1,0,1,2],[1,2,2,1]],[[1,2,2,2],[2,0,3,2],[1,0,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,3,2],[1,0,1,2],[1,2,2,1]],[[0,3,0,1],[2,3,3,1],[1,3,3,1],[0,0,2,1]],[[0,2,0,1],[3,3,3,1],[1,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,4,3,1],[1,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,4,1],[1,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,3,1],[1,3,4,1],[0,0,2,1]],[[0,3,0,1],[2,3,3,1],[1,3,3,2],[0,0,1,1]],[[0,2,0,1],[3,3,3,1],[1,3,3,2],[0,0,1,1]],[[0,2,0,1],[2,4,3,1],[1,3,3,2],[0,0,1,1]],[[0,2,0,1],[2,3,4,1],[1,3,3,2],[0,0,1,1]],[[0,2,0,1],[2,3,3,1],[1,3,4,2],[0,0,1,1]],[[0,2,0,1],[2,3,3,1],[1,3,3,3],[0,0,1,1]],[[0,2,0,1],[2,3,3,1],[1,3,3,2],[0,0,1,2]],[[0,3,0,1],[2,3,3,1],[1,3,3,2],[0,0,2,0]],[[0,2,0,1],[3,3,3,1],[1,3,3,2],[0,0,2,0]],[[0,2,0,1],[2,4,3,1],[1,3,3,2],[0,0,2,0]],[[0,2,0,1],[2,3,4,1],[1,3,3,2],[0,0,2,0]],[[0,2,0,1],[2,3,3,1],[1,3,4,2],[0,0,2,0]],[[0,2,0,1],[2,3,3,1],[1,3,3,3],[0,0,2,0]],[[0,3,0,1],[2,3,3,1],[1,3,3,2],[0,2,0,0]],[[0,2,0,1],[3,3,3,1],[1,3,3,2],[0,2,0,0]],[[0,2,0,1],[2,4,3,1],[1,3,3,2],[0,2,0,0]],[[0,2,0,1],[2,3,4,1],[1,3,3,2],[0,2,0,0]],[[0,2,0,1],[2,3,3,1],[1,4,3,2],[0,2,0,0]],[[1,2,2,1],[2,0,4,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,1],[3,0,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,2],[2,0,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,3,1],[2,0,3,2],[0,3,3,0],[1,2,1,0]],[[1,3,2,1],[2,0,3,2],[0,3,3,0],[1,2,1,0]],[[2,2,2,1],[2,0,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,1],[2,0,4,2],[0,3,3,0],[1,2,0,1]],[[1,2,2,1],[3,0,3,2],[0,3,3,0],[1,2,0,1]],[[0,3,0,1],[2,3,3,1],[1,3,3,2],[1,1,0,0]],[[0,2,0,1],[3,3,3,1],[1,3,3,2],[1,1,0,0]],[[0,2,0,1],[2,4,3,1],[1,3,3,2],[1,1,0,0]],[[0,2,0,1],[2,3,4,1],[1,3,3,2],[1,1,0,0]],[[0,2,0,1],[2,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,2,2],[2,0,3,2],[0,3,3,0],[1,2,0,1]],[[1,2,3,1],[2,0,3,2],[0,3,3,0],[1,2,0,1]],[[1,3,2,1],[2,0,3,2],[0,3,3,0],[1,2,0,1]],[[2,2,2,1],[2,0,3,2],[0,3,3,0],[1,2,0,1]],[[1,2,2,1],[2,0,4,2],[0,3,3,0],[1,1,2,0]],[[1,2,2,1],[3,0,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,2,2],[2,0,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,3,1],[2,0,3,2],[0,3,3,0],[1,1,2,0]],[[1,3,2,1],[2,0,3,2],[0,3,3,0],[1,1,2,0]],[[2,2,2,1],[2,0,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,2,1],[2,0,4,2],[0,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,0,3,2],[0,3,3,0],[1,1,1,1]],[[1,2,3,1],[2,0,3,2],[0,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,0,3,2],[0,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,0,3,2],[0,3,3,0],[1,1,1,1]],[[0,3,0,1],[2,3,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[3,3,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,4,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,4,1],[2,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[3,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,1,3],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,1],[2,0,1,2],[1,2,2,2]],[[0,3,0,1],[2,3,3,1],[2,0,2,1],[1,2,2,1]],[[0,2,0,1],[3,3,3,1],[2,0,2,1],[1,2,2,1]],[[0,2,0,1],[2,4,3,1],[2,0,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,4,1],[2,0,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[3,0,2,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,2,1],[2,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,2,1],[1,3,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,2,1],[1,2,3,1]],[[0,2,0,1],[2,3,3,1],[2,0,2,1],[1,2,2,2]],[[0,2,0,1],[2,3,3,1],[2,0,2,3],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,2,2],[0,3,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,2,2],[0,2,3,1]],[[0,2,0,1],[2,3,3,1],[2,0,2,2],[0,2,2,2]],[[0,2,0,1],[2,3,3,1],[2,0,2,3],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,2,2],[1,1,3,1]],[[0,2,0,1],[2,3,3,1],[2,0,2,2],[1,1,2,2]],[[0,3,0,1],[2,3,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[3,3,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[2,4,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,4,1],[2,0,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[3,0,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[2,0,2,2],[2,2,2,0]],[[0,2,0,1],[2,3,3,1],[2,0,2,2],[1,3,2,0]],[[0,2,0,1],[2,3,3,1],[2,0,2,2],[1,2,3,0]],[[0,3,0,1],[2,3,3,1],[2,0,3,1],[0,2,2,1]],[[0,2,0,1],[3,3,3,1],[2,0,3,1],[0,2,2,1]],[[0,2,0,1],[2,4,3,1],[2,0,3,1],[0,2,2,1]],[[0,2,0,1],[2,3,4,1],[2,0,3,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[3,0,3,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,4,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,1],[0,3,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,1],[0,2,3,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,1],[0,2,2,2]],[[0,3,0,1],[2,3,3,1],[2,0,3,1],[1,1,2,1]],[[0,2,0,1],[3,3,3,1],[2,0,3,1],[1,1,2,1]],[[0,2,0,1],[2,4,3,1],[2,0,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,4,1],[2,0,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[3,0,3,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,4,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,1],[2,1,2,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,1],[1,1,3,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,1],[1,1,2,2]],[[0,3,0,1],[2,3,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,0,1],[3,3,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,0,1],[2,4,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,4,1],[2,0,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[3,0,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[2,0,4,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,1],[2,2,1,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,1],[1,3,1,1]],[[0,3,0,1],[2,3,3,1],[2,0,3,2],[0,2,1,1]],[[0,2,0,1],[3,3,3,1],[2,0,3,2],[0,2,1,1]],[[0,2,0,1],[2,4,3,1],[2,0,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,4,1],[2,0,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[3,0,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[2,0,4,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,3],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[0,2,1,2]],[[0,3,0,1],[2,3,3,1],[2,0,3,2],[0,2,2,0]],[[0,2,0,1],[3,3,3,1],[2,0,3,2],[0,2,2,0]],[[0,2,0,1],[2,4,3,1],[2,0,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,4,1],[2,0,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,1],[3,0,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,1],[2,0,4,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,1],[2,0,3,3],[0,2,2,0]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[0,3,2,0]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[0,2,3,0]],[[0,3,0,1],[2,3,3,1],[2,0,3,2],[1,1,1,1]],[[0,2,0,1],[3,3,3,1],[2,0,3,2],[1,1,1,1]],[[0,2,0,1],[2,4,3,1],[2,0,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,4,1],[2,0,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[3,0,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[2,0,4,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,3],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[2,1,1,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[1,1,1,2]],[[0,3,0,1],[2,3,3,1],[2,0,3,2],[1,1,2,0]],[[0,2,0,1],[3,3,3,1],[2,0,3,2],[1,1,2,0]],[[0,2,0,1],[2,4,3,1],[2,0,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,4,1],[2,0,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[3,0,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[2,0,4,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[2,0,3,3],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[2,1,2,0]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[1,1,3,0]],[[0,3,0,1],[2,3,3,1],[2,0,3,2],[1,2,0,1]],[[0,2,0,1],[3,3,3,1],[2,0,3,2],[1,2,0,1]],[[0,2,0,1],[2,4,3,1],[2,0,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,4,1],[2,0,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[3,0,3,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[2,0,4,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,3],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[2,2,0,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[1,3,0,1]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[1,2,0,2]],[[0,3,0,1],[2,3,3,1],[2,0,3,2],[1,2,1,0]],[[0,2,0,1],[3,3,3,1],[2,0,3,2],[1,2,1,0]],[[0,2,0,1],[2,4,3,1],[2,0,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,4,1],[2,0,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[3,0,3,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[2,0,4,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[2,0,3,3],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[2,2,1,0]],[[0,2,0,1],[2,3,3,1],[2,0,3,2],[1,3,1,0]],[[0,3,0,1],[2,3,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[3,3,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,4,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,4,1],[2,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[3,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,0,3],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,0,2],[2,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,0,2],[1,3,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,0,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,1],[2,1,0,2],[1,2,2,2]],[[0,3,0,1],[2,3,3,1],[2,1,1,1],[1,2,2,1]],[[0,2,0,1],[3,3,3,1],[2,1,1,1],[1,2,2,1]],[[0,2,0,1],[2,4,3,1],[2,1,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,4,1],[2,1,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[3,1,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,1,1],[2,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,1,1],[1,3,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,1,1],[1,2,3,1]],[[0,2,0,1],[2,3,3,1],[2,1,1,1],[1,2,2,2]],[[0,3,0,1],[2,3,3,1],[2,1,1,2],[1,2,2,0]],[[0,2,0,1],[3,3,3,1],[2,1,1,2],[1,2,2,0]],[[0,2,0,1],[2,4,3,1],[2,1,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,4,1],[2,1,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[3,1,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[2,1,1,2],[2,2,2,0]],[[0,2,0,1],[2,3,3,1],[2,1,1,2],[1,3,2,0]],[[0,2,0,1],[2,3,3,1],[2,1,1,2],[1,2,3,0]],[[0,3,0,1],[2,3,3,1],[2,1,2,1],[1,2,1,1]],[[0,2,0,1],[3,3,3,1],[2,1,2,1],[1,2,1,1]],[[0,2,0,1],[2,4,3,1],[2,1,2,1],[1,2,1,1]],[[0,2,0,1],[2,3,4,1],[2,1,2,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[3,1,2,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,2,1],[2,2,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,2,1],[1,3,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,2,3],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,2,2],[0,1,3,1]],[[0,2,0,1],[2,3,3,1],[2,1,2,2],[0,1,2,2]],[[0,2,0,1],[2,3,3,1],[2,1,2,3],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,2,2],[1,0,3,1]],[[0,2,0,1],[2,3,3,1],[2,1,2,2],[1,0,2,2]],[[0,3,0,1],[2,3,3,1],[2,1,2,2],[1,2,0,1]],[[0,2,0,1],[3,3,3,1],[2,1,2,2],[1,2,0,1]],[[0,2,0,1],[2,4,3,1],[2,1,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,4,1],[2,1,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[3,1,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[2,1,2,2],[2,2,0,1]],[[0,2,0,1],[2,3,3,1],[2,1,2,2],[1,3,0,1]],[[0,3,0,1],[2,3,3,1],[2,1,2,2],[1,2,1,0]],[[0,2,0,1],[3,3,3,1],[2,1,2,2],[1,2,1,0]],[[0,2,0,1],[2,4,3,1],[2,1,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,4,1],[2,1,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[3,1,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[2,1,2,2],[2,2,1,0]],[[0,2,0,1],[2,3,3,1],[2,1,2,2],[1,3,1,0]],[[0,3,0,1],[2,3,3,1],[2,1,3,1],[0,1,2,1]],[[0,2,0,1],[3,3,3,1],[2,1,3,1],[0,1,2,1]],[[0,2,0,1],[2,4,3,1],[2,1,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,4,1],[2,1,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[3,1,3,1],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,4,1],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,1],[0,1,3,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,1],[0,1,2,2]],[[0,3,0,1],[2,3,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,0,1],[3,3,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,0,1],[2,4,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,4,1],[2,1,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[3,1,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,4,1],[0,2,1,1]],[[0,3,0,1],[2,3,3,1],[2,1,3,1],[1,0,2,1]],[[0,2,0,1],[3,3,3,1],[2,1,3,1],[1,0,2,1]],[[0,2,0,1],[2,4,3,1],[2,1,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,4,1],[2,1,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[3,1,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,4,1],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,1],[2,0,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,1],[1,0,3,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,1],[1,0,2,2]],[[0,3,0,1],[2,3,3,1],[2,1,3,1],[1,1,1,1]],[[0,2,0,1],[3,3,3,1],[2,1,3,1],[1,1,1,1]],[[0,2,0,1],[2,4,3,1],[2,1,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,4,1],[2,1,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[3,1,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,4,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,1],[2,1,1,1]],[[0,3,0,1],[2,3,3,1],[2,1,3,2],[0,0,2,1]],[[0,2,0,1],[3,3,3,1],[2,1,3,2],[0,0,2,1]],[[0,2,0,1],[2,4,3,1],[2,1,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,4,1],[2,1,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,4,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,3],[0,0,2,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,2],[0,0,2,2]],[[0,3,0,1],[2,3,3,1],[2,1,3,2],[0,1,1,1]],[[0,2,0,1],[3,3,3,1],[2,1,3,2],[0,1,1,1]],[[0,2,0,1],[2,4,3,1],[2,1,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,1],[2,1,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[3,1,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,4,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,3],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,2],[0,1,1,2]],[[0,3,0,1],[2,3,3,1],[2,1,3,2],[0,1,2,0]],[[0,2,0,1],[3,3,3,1],[2,1,3,2],[0,1,2,0]],[[0,2,0,1],[2,4,3,1],[2,1,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,1],[2,1,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[3,1,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[2,1,4,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[2,1,3,3],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[2,1,3,2],[0,1,3,0]],[[0,3,0,1],[2,3,3,1],[2,1,3,2],[0,2,0,1]],[[0,2,0,1],[3,3,3,1],[2,1,3,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,1],[2,1,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,4,1],[2,1,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[3,1,3,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[2,1,4,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,3],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,2],[0,2,0,2]],[[0,3,0,1],[2,3,3,1],[2,1,3,2],[0,2,1,0]],[[0,2,0,1],[3,3,3,1],[2,1,3,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,1],[2,1,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,4,1],[2,1,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,1],[3,1,3,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,1],[2,1,4,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,1],[2,1,3,3],[0,2,1,0]],[[0,3,0,1],[2,3,3,1],[2,1,3,2],[1,0,1,1]],[[0,2,0,1],[3,3,3,1],[2,1,3,2],[1,0,1,1]],[[0,2,0,1],[2,4,3,1],[2,1,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,4,1],[2,1,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[3,1,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,4,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,3],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,2],[2,0,1,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,2],[1,0,1,2]],[[0,3,0,1],[2,3,3,1],[2,1,3,2],[1,0,2,0]],[[0,2,0,1],[3,3,3,1],[2,1,3,2],[1,0,2,0]],[[0,2,0,1],[2,4,3,1],[2,1,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,4,1],[2,1,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,1],[3,1,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,1],[2,1,4,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,1],[2,1,3,3],[1,0,2,0]],[[0,2,0,1],[2,3,3,1],[2,1,3,2],[2,0,2,0]],[[0,2,0,1],[2,3,3,1],[2,1,3,2],[1,0,3,0]],[[0,3,0,1],[2,3,3,1],[2,1,3,2],[1,1,0,1]],[[0,2,0,1],[3,3,3,1],[2,1,3,2],[1,1,0,1]],[[0,2,0,1],[2,4,3,1],[2,1,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,4,1],[2,1,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[3,1,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[2,1,4,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,3],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,2],[2,1,0,1]],[[0,2,0,1],[2,3,3,1],[2,1,3,2],[1,1,0,2]],[[0,3,0,1],[2,3,3,1],[2,1,3,2],[1,1,1,0]],[[0,2,0,1],[3,3,3,1],[2,1,3,2],[1,1,1,0]],[[0,2,0,1],[2,4,3,1],[2,1,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,4,1],[2,1,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,1],[3,1,3,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,1],[2,1,4,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,1],[2,1,3,3],[1,1,1,0]],[[0,2,0,1],[2,3,3,1],[2,1,3,2],[2,1,1,0]],[[1,2,2,1],[2,0,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,0,3,3],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,0,3,2],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,0,3,2],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[2,0,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[2,0,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,3,3],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[2,0,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[2,0,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,3,3],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[2,0,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[2,0,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[2,0,3,3],[0,2,3,1],[1,1,1,1]],[[0,2,0,1],[3,3,3,1],[2,2,0,1],[1,2,2,1]],[[0,2,0,1],[2,4,3,1],[2,2,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[3,2,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,2,0,1],[2,2,2,1]],[[0,2,0,1],[2,3,3,1],[2,2,0,1],[1,3,2,1]],[[0,3,0,1],[2,3,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[3,3,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[2,4,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,4,1],[2,2,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[3,2,0,2],[0,2,2,1]],[[0,3,0,1],[2,3,3,1],[2,2,0,2],[1,1,2,1]],[[0,2,0,1],[3,3,3,1],[2,2,0,2],[1,1,2,1]],[[0,2,0,1],[2,4,3,1],[2,2,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,4,1],[2,2,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[3,2,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[2,2,0,2],[2,1,2,1]],[[0,2,0,1],[3,3,3,1],[2,2,0,2],[1,2,2,0]],[[0,2,0,1],[2,4,3,1],[2,2,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[3,2,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,1],[2,2,0,2],[2,2,2,0]],[[0,2,0,1],[2,3,3,1],[2,2,0,2],[1,3,2,0]],[[0,3,0,1],[2,3,3,1],[2,2,1,1],[0,2,2,1]],[[0,2,0,1],[3,3,3,1],[2,2,1,1],[0,2,2,1]],[[0,2,0,1],[2,4,3,1],[2,2,1,1],[0,2,2,1]],[[0,2,0,1],[2,3,4,1],[2,2,1,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[3,2,1,1],[0,2,2,1]],[[0,3,0,1],[2,3,3,1],[2,2,1,1],[1,1,2,1]],[[0,2,0,1],[3,3,3,1],[2,2,1,1],[1,1,2,1]],[[0,2,0,1],[2,4,3,1],[2,2,1,1],[1,1,2,1]],[[0,2,0,1],[2,3,4,1],[2,2,1,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[3,2,1,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[2,2,1,1],[2,1,2,1]],[[0,3,0,1],[2,3,3,1],[2,2,1,2],[0,2,2,0]],[[0,2,0,1],[3,3,3,1],[2,2,1,2],[0,2,2,0]],[[0,2,0,1],[2,4,3,1],[2,2,1,2],[0,2,2,0]],[[0,2,0,1],[2,3,4,1],[2,2,1,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,1],[3,2,1,2],[0,2,2,0]],[[0,3,0,1],[2,3,3,1],[2,2,1,2],[1,1,2,0]],[[0,2,0,1],[3,3,3,1],[2,2,1,2],[1,1,2,0]],[[0,2,0,1],[2,4,3,1],[2,2,1,2],[1,1,2,0]],[[0,2,0,1],[2,3,4,1],[2,2,1,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[3,2,1,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[2,2,1,2],[2,1,2,0]],[[1,2,2,2],[2,0,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[2,0,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,3],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[2,0,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[2,0,3,2],[0,2,3,1],[1,0,2,1]],[[0,3,0,1],[2,3,3,1],[2,2,2,1],[0,1,2,1]],[[0,2,0,1],[3,3,3,1],[2,2,2,1],[0,1,2,1]],[[0,2,0,1],[2,4,3,1],[2,2,2,1],[0,1,2,1]],[[0,2,0,1],[2,3,4,1],[2,2,2,1],[0,1,2,1]],[[0,2,0,1],[2,3,3,1],[3,2,2,1],[0,1,2,1]],[[0,3,0,1],[2,3,3,1],[2,2,2,1],[0,2,1,1]],[[0,2,0,1],[3,3,3,1],[2,2,2,1],[0,2,1,1]],[[0,2,0,1],[2,4,3,1],[2,2,2,1],[0,2,1,1]],[[0,2,0,1],[2,3,4,1],[2,2,2,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[3,2,2,1],[0,2,1,1]],[[0,3,0,1],[2,3,3,1],[2,2,2,1],[1,0,2,1]],[[0,2,0,1],[3,3,3,1],[2,2,2,1],[1,0,2,1]],[[0,2,0,1],[2,4,3,1],[2,2,2,1],[1,0,2,1]],[[0,2,0,1],[2,3,4,1],[2,2,2,1],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[3,2,2,1],[1,0,2,1]],[[0,2,0,1],[2,3,3,1],[2,2,2,1],[2,0,2,1]],[[0,3,0,1],[2,3,3,1],[2,2,2,1],[1,1,1,1]],[[0,2,0,1],[3,3,3,1],[2,2,2,1],[1,1,1,1]],[[0,2,0,1],[2,4,3,1],[2,2,2,1],[1,1,1,1]],[[0,2,0,1],[2,3,4,1],[2,2,2,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[3,2,2,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[2,2,2,1],[2,1,1,1]],[[0,2,0,1],[3,3,3,1],[2,2,2,1],[1,2,0,1]],[[0,2,0,1],[2,4,3,1],[2,2,2,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[3,2,2,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[2,0,4,2],[0,2,3,0],[1,2,2,0]],[[1,2,2,1],[3,0,3,2],[0,2,3,0],[1,2,2,0]],[[0,3,0,1],[2,3,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,0,1],[3,3,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,0,1],[2,4,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,1],[2,2,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,1],[3,2,2,2],[0,1,1,1]],[[0,3,0,1],[2,3,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,0,1],[3,3,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,0,1],[2,4,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,1],[2,2,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,1],[3,2,2,2],[0,1,2,0]],[[0,3,0,1],[2,3,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,0,1],[3,3,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,4,1],[2,2,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[3,2,2,2],[0,2,0,1]],[[0,3,0,1],[2,3,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,0,1],[3,3,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,4,1],[2,2,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,1],[3,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,0,3,2],[0,2,3,0],[1,2,2,0]],[[1,2,3,1],[2,0,3,2],[0,2,3,0],[1,2,2,0]],[[1,3,2,1],[2,0,3,2],[0,2,3,0],[1,2,2,0]],[[2,2,2,1],[2,0,3,2],[0,2,3,0],[1,2,2,0]],[[1,2,2,1],[2,0,3,3],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[2,0,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[2,0,3,2],[0,2,3,0],[1,1,2,1]],[[0,3,0,1],[2,3,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,0,1],[3,3,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,0,1],[2,4,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,4,1],[2,2,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[3,2,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[2,2,2,2],[2,0,1,1]],[[0,3,0,1],[2,3,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,0,1],[3,3,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,0,1],[2,4,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,4,1],[2,2,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,1],[3,2,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,1],[2,2,2,2],[2,0,2,0]],[[0,3,0,1],[2,3,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,0,1],[3,3,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,0,1],[2,4,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,4,1],[2,2,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[3,2,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[2,2,2,2],[2,1,0,1]],[[0,3,0,1],[2,3,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,0,1],[3,3,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,0,1],[2,4,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,4,1],[2,2,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,1],[3,2,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,1],[2,2,2,2],[2,1,1,0]],[[0,3,0,1],[2,3,3,1],[2,2,2,2],[1,2,0,0]],[[0,2,0,1],[3,3,3,1],[2,2,2,2],[1,2,0,0]],[[0,2,0,1],[2,4,3,1],[2,2,2,2],[1,2,0,0]],[[0,2,0,1],[2,3,4,1],[2,2,2,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,1],[3,2,2,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,1],[2,2,2,2],[2,2,0,0]],[[1,2,2,1],[2,0,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[2,0,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[2,0,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,2],[0,2,2,3],[1,2,0,1]],[[1,2,2,1],[2,0,3,3],[0,2,2,2],[1,2,0,1]],[[1,2,2,2],[2,0,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[2,0,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[2,0,3,2],[0,2,2,3],[1,1,2,0]],[[1,2,2,1],[2,0,3,3],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[2,0,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[2,0,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,2],[0,2,2,2],[1,1,1,2]],[[1,2,2,1],[2,0,3,2],[0,2,2,3],[1,1,1,1]],[[1,2,2,1],[2,0,3,3],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[2,0,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[2,0,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[2,0,3,2],[0,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,0,3,2],[0,2,2,3],[1,0,2,1]],[[1,2,2,1],[2,0,3,3],[0,2,2,2],[1,0,2,1]],[[1,2,2,2],[2,0,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[2,0,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[2,0,3,2],[0,2,1,2],[1,1,2,2]],[[1,2,2,1],[2,0,3,2],[0,2,1,3],[1,1,2,1]],[[1,2,2,1],[2,0,3,3],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[2,0,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[2,0,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,1],[2,0,3,3],[0,1,3,2],[1,1,2,0]],[[1,2,2,2],[2,0,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,3,1],[2,0,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,2],[0,1,3,2],[1,1,1,2]],[[1,2,2,1],[2,0,3,2],[0,1,3,3],[1,1,1,1]],[[1,2,2,1],[2,0,3,3],[0,1,3,2],[1,1,1,1]],[[1,2,2,2],[2,0,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,3,1],[2,0,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,2,1],[2,0,3,2],[0,1,3,2],[1,0,2,2]],[[1,2,2,1],[2,0,3,2],[0,1,3,3],[1,0,2,1]],[[1,2,2,1],[2,0,3,3],[0,1,3,2],[1,0,2,1]],[[1,2,2,2],[2,0,3,2],[0,1,3,2],[1,0,2,1]],[[0,3,0,1],[2,3,3,1],[2,2,3,2],[0,2,0,0]],[[0,2,0,1],[3,3,3,1],[2,2,3,2],[0,2,0,0]],[[0,2,0,1],[2,4,3,1],[2,2,3,2],[0,2,0,0]],[[0,2,0,1],[2,3,4,1],[2,2,3,2],[0,2,0,0]],[[0,2,0,1],[2,3,3,1],[3,2,3,2],[0,2,0,0]],[[1,2,3,1],[2,0,3,2],[0,1,3,2],[1,0,2,1]],[[1,2,2,1],[2,0,3,3],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[2,0,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[2,0,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,0,3,3],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[2,0,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[2,0,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,3,3],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[2,0,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,0,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[2,0,3,2],[0,1,2,3],[1,2,2,0]],[[1,2,2,1],[2,0,3,3],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,2],[0,1,2,2],[1,2,1,2]],[[1,2,2,1],[2,0,3,2],[0,1,2,3],[1,2,1,1]],[[1,2,2,1],[2,0,3,3],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[2,0,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[2,0,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[2,0,3,2],[0,1,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,3,2],[0,1,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,3,2],[0,1,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,3,3],[0,1,1,2],[1,2,2,1]],[[0,3,0,1],[2,3,3,1],[2,2,3,2],[1,1,0,0]],[[0,2,0,1],[3,3,3,1],[2,2,3,2],[1,1,0,0]],[[0,2,0,1],[2,4,3,1],[2,2,3,2],[1,1,0,0]],[[0,2,0,1],[2,3,4,1],[2,2,3,2],[1,1,0,0]],[[0,2,0,1],[2,3,3,1],[3,2,3,2],[1,1,0,0]],[[0,2,0,1],[2,3,3,1],[2,2,3,2],[2,1,0,0]],[[1,2,2,2],[2,0,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,3,2],[0,0,3,3],[1,2,2,0]],[[1,2,2,1],[2,0,3,3],[0,0,3,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,2],[0,0,3,2],[1,2,1,2]],[[1,2,2,1],[2,0,3,2],[0,0,3,3],[1,2,1,1]],[[1,2,2,1],[2,0,3,3],[0,0,3,2],[1,2,1,1]],[[1,2,2,2],[2,0,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,3,1],[2,0,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,2,1],[2,0,3,2],[0,0,3,2],[1,1,2,2]],[[1,2,2,1],[2,0,3,2],[0,0,3,3],[1,1,2,1]],[[1,2,2,1],[2,0,3,3],[0,0,3,2],[1,1,2,1]],[[1,2,2,2],[2,0,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,3,1],[2,0,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,2,1],[2,0,3,2],[0,0,3,2],[0,2,2,2]],[[1,2,2,1],[2,0,3,2],[0,0,3,3],[0,2,2,1]],[[1,2,2,1],[2,0,3,3],[0,0,3,2],[0,2,2,1]],[[1,2,2,2],[2,0,3,2],[0,0,3,2],[0,2,2,1]],[[1,2,3,1],[2,0,3,2],[0,0,3,2],[0,2,2,1]],[[1,2,2,1],[2,0,3,2],[0,0,2,2],[1,2,2,2]],[[1,2,2,1],[2,0,3,2],[0,0,2,2],[1,2,3,1]],[[1,2,2,1],[2,0,3,2],[0,0,2,3],[1,2,2,1]],[[1,2,2,1],[2,0,3,3],[0,0,2,2],[1,2,2,1]],[[1,2,2,2],[2,0,3,2],[0,0,2,2],[1,2,2,1]],[[1,2,3,1],[2,0,3,2],[0,0,2,2],[1,2,2,1]],[[0,2,0,1],[3,3,3,1],[2,3,0,1],[0,2,2,1]],[[0,2,0,1],[2,4,3,1],[2,3,0,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,1],[3,3,0,1],[0,2,2,1]],[[0,2,0,1],[3,3,3,1],[2,3,0,1],[1,1,2,1]],[[0,2,0,1],[2,4,3,1],[2,3,0,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[3,3,0,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,1],[2,3,0,1],[2,1,2,1]],[[0,2,0,1],[3,3,3,1],[2,3,0,1],[1,2,1,1]],[[0,2,0,1],[2,4,3,1],[2,3,0,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[3,3,0,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,1],[2,3,0,1],[2,2,1,1]],[[0,2,0,1],[3,3,3,1],[2,3,0,2],[0,2,2,0]],[[0,2,0,1],[2,4,3,1],[2,3,0,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,1],[3,3,0,2],[0,2,2,0]],[[0,2,0,1],[3,3,3,1],[2,3,0,2],[1,1,2,0]],[[0,2,0,1],[2,4,3,1],[2,3,0,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[3,3,0,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,1],[2,3,0,2],[2,1,2,0]],[[0,2,0,1],[3,3,3,1],[2,3,0,2],[1,2,1,0]],[[0,2,0,1],[2,4,3,1],[2,3,0,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[3,3,0,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,1],[2,3,0,2],[2,2,1,0]],[[0,2,0,1],[3,3,3,1],[2,3,1,1],[0,2,1,1]],[[0,2,0,1],[2,4,3,1],[2,3,1,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,1],[3,3,1,1],[0,2,1,1]],[[0,2,0,1],[3,3,3,1],[2,3,1,1],[1,1,1,1]],[[0,2,0,1],[2,4,3,1],[2,3,1,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[3,3,1,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,1],[2,3,1,1],[2,1,1,1]],[[0,2,0,1],[3,3,3,1],[2,3,1,1],[1,2,0,1]],[[0,2,0,1],[2,4,3,1],[2,3,1,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[3,3,1,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,1],[2,3,1,1],[2,2,0,1]],[[1,2,2,1],[2,0,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[2,0,3,1],[2,4,3,1],[1,1,0,0]],[[1,2,2,1],[2,0,3,1],[3,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,0,4,1],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[3,0,3,1],[2,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,0,3,1],[2,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,0,3,1],[2,3,3,1],[1,1,0,0]],[[0,2,0,1],[3,3,3,1],[2,3,1,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,1],[2,3,1,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,1],[3,3,1,2],[0,2,0,1]],[[0,2,0,1],[3,3,3,1],[2,3,1,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,1],[2,3,1,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,1],[3,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,0,3,1],[2,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,0,3,1],[2,3,3,1],[1,1,0,0]],[[0,2,0,1],[3,3,3,1],[2,3,1,2],[1,1,0,1]],[[0,2,0,1],[2,4,3,1],[2,3,1,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[3,3,1,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,1],[2,3,1,2],[2,1,0,1]],[[0,2,0,1],[3,3,3,1],[2,3,1,2],[1,1,1,0]],[[0,2,0,1],[2,4,3,1],[2,3,1,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,1],[3,3,1,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,1],[2,3,1,2],[2,1,1,0]],[[0,2,0,1],[3,3,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,0,1],[2,4,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,1],[3,3,1,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,0,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,0,3,1],[3,3,3,1],[0,2,0,0]],[[1,2,2,1],[2,0,4,1],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[3,0,3,1],[2,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,0,3,1],[2,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,0,3,1],[2,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,0,3,1],[2,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,0,3,1],[2,3,3,1],[0,2,0,0]],[[0,2,0,1],[3,3,3,1],[2,3,2,1],[1,0,1,1]],[[0,2,0,1],[2,4,3,1],[2,3,2,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,1],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,0,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[2,0,3,1],[2,4,3,0],[1,2,0,0]],[[1,2,2,1],[2,0,3,1],[3,3,3,0],[1,2,0,0]],[[1,2,2,1],[2,0,4,1],[2,3,3,0],[1,2,0,0]],[[1,2,2,1],[3,0,3,1],[2,3,3,0],[1,2,0,0]],[[1,2,2,2],[2,0,3,1],[2,3,3,0],[1,2,0,0]],[[1,2,3,1],[2,0,3,1],[2,3,3,0],[1,2,0,0]],[[1,3,2,1],[2,0,3,1],[2,3,3,0],[1,2,0,0]],[[2,2,2,1],[2,0,3,1],[2,3,3,0],[1,2,0,0]],[[0,3,0,1],[2,3,3,1],[2,3,2,2],[1,0,0,1]],[[0,2,0,1],[3,3,3,1],[2,3,2,2],[1,0,0,1]],[[0,2,0,1],[2,4,3,1],[2,3,2,2],[1,0,0,1]],[[0,2,0,1],[2,3,4,1],[2,3,2,2],[1,0,0,1]],[[0,2,0,1],[2,3,3,1],[3,3,2,2],[1,0,0,1]],[[0,3,0,1],[2,3,3,1],[2,3,2,2],[1,0,1,0]],[[0,2,0,1],[3,3,3,1],[2,3,2,2],[1,0,1,0]],[[0,2,0,1],[2,4,3,1],[2,3,2,2],[1,0,1,0]],[[0,2,0,1],[2,3,4,1],[2,3,2,2],[1,0,1,0]],[[0,2,0,1],[2,3,3,1],[3,3,2,2],[1,0,1,0]],[[1,2,2,1],[2,0,3,1],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[2,0,3,1],[2,4,3,0],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[3,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,0,4,1],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[3,0,3,1],[2,3,3,0],[1,1,1,0]],[[1,2,2,2],[2,0,3,1],[2,3,3,0],[1,1,1,0]],[[1,2,3,1],[2,0,3,1],[2,3,3,0],[1,1,1,0]],[[1,3,2,1],[2,0,3,1],[2,3,3,0],[1,1,1,0]],[[2,2,2,1],[2,0,3,1],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[2,3,3,0],[2,0,2,0]],[[1,2,2,1],[2,0,3,1],[2,4,3,0],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[3,3,3,0],[1,0,2,0]],[[1,2,2,1],[2,0,4,1],[2,3,3,0],[1,0,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,3,0],[1,0,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,3,0],[1,0,2,0]],[[1,2,3,1],[2,0,3,1],[2,3,3,0],[1,0,2,0]],[[1,3,2,1],[2,0,3,1],[2,3,3,0],[1,0,2,0]],[[2,2,2,1],[2,0,3,1],[2,3,3,0],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[2,3,3,0],[0,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,4,3,0],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[3,3,3,0],[0,2,1,0]],[[1,2,2,1],[2,0,4,1],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[3,0,3,1],[2,3,3,0],[0,2,1,0]],[[1,2,2,2],[2,0,3,1],[2,3,3,0],[0,2,1,0]],[[1,2,3,1],[2,0,3,1],[2,3,3,0],[0,2,1,0]],[[1,3,2,1],[2,0,3,1],[2,3,3,0],[0,2,1,0]],[[2,2,2,1],[2,0,3,1],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,4,3,0],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[3,3,3,0],[0,1,2,0]],[[1,2,2,1],[2,0,4,1],[2,3,3,0],[0,1,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,3,0],[0,1,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,3,0],[0,1,2,0]],[[1,2,3,1],[2,0,3,1],[2,3,3,0],[0,1,2,0]],[[1,3,2,1],[2,0,3,1],[2,3,3,0],[0,1,2,0]],[[2,2,2,1],[2,0,3,1],[2,3,3,0],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[2,0,3,1],[2,4,2,1],[1,2,0,0]],[[1,2,2,1],[2,0,3,1],[3,3,2,1],[1,2,0,0]],[[1,2,2,1],[2,0,4,1],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,0,3,1],[2,3,2,1],[1,2,0,0]],[[1,2,2,2],[2,0,3,1],[2,3,2,1],[1,2,0,0]],[[1,2,3,1],[2,0,3,1],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,0,3,1],[2,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,0,3,1],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[2,0,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,2,1],[2,0,3,1],[2,4,2,1],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[3,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,0,4,1],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,0,3,1],[2,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,0,3,1],[2,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,0,3,1],[2,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,0,3,1],[2,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,0,3,1],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[2,3,2,1],[2,1,0,1]],[[1,2,2,1],[2,0,3,1],[2,4,2,1],[1,1,0,1]],[[1,2,2,1],[2,0,3,1],[3,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,0,4,1],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,0,3,1],[2,3,2,1],[1,1,0,1]],[[1,2,2,2],[2,0,3,1],[2,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,0,3,1],[2,3,2,1],[1,1,0,1]],[[1,3,2,1],[2,0,3,1],[2,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,0,3,1],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,0,3,1],[2,3,2,1],[2,0,2,0]],[[1,2,2,1],[2,0,3,1],[2,4,2,1],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[3,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,0,4,1],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,2,1],[1,0,2,0]],[[1,2,3,1],[2,0,3,1],[2,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,0,3,1],[2,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,0,3,1],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[2,3,2,1],[2,0,1,1]],[[1,2,2,1],[2,0,3,1],[2,4,2,1],[1,0,1,1]],[[1,2,2,1],[2,0,3,1],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,0,4,1],[2,3,2,1],[1,0,1,1]],[[0,3,0,1],[2,3,3,1],[2,3,3,2],[1,0,0,0]],[[0,2,0,1],[3,3,3,1],[2,3,3,2],[1,0,0,0]],[[0,2,0,1],[2,4,3,1],[2,3,3,2],[1,0,0,0]],[[0,2,0,1],[2,3,4,1],[2,3,3,2],[1,0,0,0]],[[0,2,0,1],[2,3,3,1],[3,3,3,2],[1,0,0,0]],[[1,2,2,1],[3,0,3,1],[2,3,2,1],[1,0,1,1]],[[1,2,2,2],[2,0,3,1],[2,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,0,3,1],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,0,3,1],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,0,3,1],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,0,3,1],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,4,2,1],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[3,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,0,4,1],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,0,3,1],[2,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,0,3,1],[2,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,0,3,1],[2,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,0,3,1],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,0,3,1],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,3,2,1],[0,3,0,1]],[[1,2,2,1],[2,0,3,1],[2,4,2,1],[0,2,0,1]],[[1,2,2,1],[2,0,3,1],[3,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,0,4,1],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,0,3,1],[2,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,0,3,1],[2,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,0,3,1],[2,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,0,3,1],[2,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,0,3,1],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,0,3,1],[2,4,2,1],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[3,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,0,4,1],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,0,3,1],[2,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,0,3,1],[2,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,0,3,1],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,4,2,1],[0,1,1,1]],[[1,2,2,1],[2,0,3,1],[3,3,2,1],[0,1,1,1]],[[1,2,2,1],[2,0,4,1],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[3,0,3,1],[2,3,2,1],[0,1,1,1]],[[1,2,2,2],[2,0,3,1],[2,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,0,3,1],[2,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,0,3,1],[2,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,0,3,1],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[2,0,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[2,0,3,1],[2,4,2,0],[1,2,0,1]],[[1,2,2,1],[2,0,3,1],[3,3,2,0],[1,2,0,1]],[[1,2,2,1],[2,0,4,1],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[3,0,3,1],[2,3,2,0],[1,2,0,1]],[[1,2,2,2],[2,0,3,1],[2,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,0,3,1],[2,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,0,3,1],[2,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,0,3,1],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[2,0,3,1],[2,3,2,0],[2,1,1,1]],[[1,2,2,1],[2,0,3,1],[2,4,2,0],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[3,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,0,4,1],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,0,3,1],[2,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,0,3,1],[2,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,0,3,1],[2,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,0,3,1],[2,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,0,3,1],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[2,3,2,0],[2,0,2,1]],[[1,2,2,1],[2,0,3,1],[2,4,2,0],[1,0,2,1]],[[1,2,2,1],[2,0,3,1],[3,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,0,4,1],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,0,3,1],[2,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,0,3,1],[2,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,0,3,1],[2,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,0,3,1],[2,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,0,3,1],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,0,3,1],[2,3,2,0],[0,3,1,1]],[[1,2,2,1],[2,0,3,1],[2,4,2,0],[0,2,1,1]],[[1,2,2,1],[2,0,3,1],[3,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,0,4,1],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,0,3,1],[2,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,0,3,1],[2,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,0,3,1],[2,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,0,3,1],[2,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,0,3,1],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,0,3,1],[2,4,2,0],[0,1,2,1]],[[1,2,2,1],[2,0,3,1],[3,3,2,0],[0,1,2,1]],[[1,2,2,1],[2,0,4,1],[2,3,2,0],[0,1,2,1]],[[1,2,2,1],[3,0,3,1],[2,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,0,3,1],[2,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,0,3,1],[2,3,2,0],[0,1,2,1]],[[1,3,2,1],[2,0,3,1],[2,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,0,3,1],[2,3,2,0],[0,1,2,1]],[[0,2,0,2],[2,3,3,2],[0,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[0,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[0,0,2,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,0,2,3],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,0,2,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[0,0,2,2],[1,2,2,2]],[[0,2,0,2],[2,3,3,2],[0,0,3,2],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[0,0,3,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[0,0,3,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,0,3,3],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,0,3,2],[0,2,2,2]],[[0,2,0,2],[2,3,3,2],[0,0,3,2],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[0,0,3,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[0,0,3,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,0,3,3],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,0,3,2],[1,1,2,2]],[[0,2,0,2],[2,3,3,2],[0,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[0,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[0,0,3,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,0,3,3],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,0,3,2],[1,2,1,2]],[[0,2,0,2],[2,3,3,2],[0,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,4,2],[0,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,3],[0,0,3,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,0,3,3],[1,2,2,0]],[[0,3,0,1],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[0,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[0,1,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,1,1,3],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,1,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,1,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[0,1,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[0,1,1,2],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,0,2],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[0,1,2,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[0,1,2,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,1,2,3],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,1,2,2],[1,2,1,2]],[[0,3,0,1],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,0,2],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,0,1],[3,3,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,4,2],[0,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,3],[0,1,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,1,2,3],[1,2,2,0]],[[0,3,0,1],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[0,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[0,1,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,1,4,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,1,3,0],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,1,3,0],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[0,1,3,0],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[0,1,3,0],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,0,2],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[0,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[0,1,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,1,4,1],[1,2,1,1]],[[0,3,0,1],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,0,2],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,0,1],[3,3,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,0,1],[2,3,4,2],[0,1,3,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,3],[0,1,3,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,1,4,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,1,3,1],[2,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,1,3,1],[1,3,2,0]],[[0,2,0,1],[2,3,3,2],[0,1,3,1],[1,2,3,0]],[[0,2,0,2],[2,3,3,2],[0,1,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,4,2],[0,1,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,3],[0,1,3,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[0,1,3,3],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[0,1,3,2],[1,0,2,2]],[[0,2,0,2],[2,3,3,2],[0,1,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[0,1,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[0,1,3,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,1,3,3],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,1,3,2],[1,1,1,2]],[[0,2,0,2],[2,3,3,2],[0,1,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[0,1,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,3],[0,1,3,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,1,3,3],[1,1,2,0]],[[0,3,0,1],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[0,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[0,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[0,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[0,2,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,0,3],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,0,2],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,0,2],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,0,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[0,2,0,2],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,0,2],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[0,2,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[0,2,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,1,3],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,1,2],[1,1,3,1]],[[0,2,0,1],[2,3,3,2],[0,2,1,2],[1,1,2,2]],[[0,3,0,1],[2,3,3,2],[0,2,2,2],[1,0,2,1]],[[0,2,0,2],[2,3,3,2],[0,2,2,2],[1,0,2,1]],[[0,2,0,1],[2,4,3,2],[0,2,2,2],[1,0,2,1]],[[0,2,0,1],[2,3,4,2],[0,2,2,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,3],[0,2,2,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,2,3],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,2,2],[1,0,2,2]],[[0,3,0,1],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[0,2,2,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[0,2,2,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,2,2,3],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,2,2,2],[1,1,1,2]],[[0,3,0,1],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,0,2],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[0,2,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,3],[0,2,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,2,2,3],[1,1,2,0]],[[0,3,0,1],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,0,2],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,0,1],[3,3,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,0,1],[2,4,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,4,2],[0,2,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,3],[0,2,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,2,2,3],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,2,2,2],[1,2,0,2]],[[0,3,0,1],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,0,2],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,0,1],[3,3,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,0,1],[2,4,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,4,2],[0,2,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,3],[0,2,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,0,3,1],[2,4,1,2],[1,2,0,0]],[[1,2,2,1],[2,0,3,1],[3,3,1,2],[1,2,0,0]],[[1,2,2,1],[2,0,4,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[3,0,3,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,2],[2,0,3,1],[2,3,1,2],[1,2,0,0]],[[0,3,0,1],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,0,2],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[0,2,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[0,2,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,4,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,3,0],[1,1,3,1]],[[0,2,0,1],[2,3,3,2],[0,2,3,0],[1,1,2,2]],[[0,3,0,1],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[0,2,0,2],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[0,2,3,0],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[0,2,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[0,2,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[0,2,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,2,4,0],[1,2,1,1]],[[0,3,0,1],[2,3,3,2],[0,2,3,1],[1,0,2,1]],[[0,2,0,2],[2,3,3,2],[0,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,4,3,2],[0,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,4,2],[0,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,3,3],[0,2,3,1],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,4,1],[1,0,2,1]],[[0,3,0,1],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[0,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[0,2,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,2,4,1],[1,1,1,1]],[[0,3,0,1],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,0,2],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[0,2,3,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,3],[0,2,3,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,2,4,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,2,3,1],[1,1,3,0]],[[0,3,0,1],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,0,2],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,0,1],[3,3,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,0,1],[2,4,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,4,2],[0,2,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,3],[0,2,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,2,4,1],[1,2,0,1]],[[0,3,0,1],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,0,2],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,0,1],[3,3,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,0,1],[2,4,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,4,2],[0,2,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,3],[0,2,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,3,1],[2,0,3,1],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,0,3,1],[2,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,0,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,0,2],[2,3,3,2],[0,2,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,4,2],[0,2,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,3],[0,2,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,3,3],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[0,2,3,2],[0,0,2,2]],[[0,2,0,2],[2,3,3,2],[0,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[0,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[0,2,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,2,3,3],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,2,3,2],[0,1,1,2]],[[0,2,0,2],[2,3,3,2],[0,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[0,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[0,2,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,2,3,3],[0,1,2,0]],[[0,3,0,1],[2,3,3,2],[0,2,3,2],[1,1,0,1]],[[0,2,0,2],[2,3,3,2],[0,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,4,3,2],[0,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,4,2],[0,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,3],[0,2,3,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,0,3,1],[2,3,1,2],[2,1,1,0]],[[1,2,2,1],[2,0,3,1],[2,4,1,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[3,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,0,4,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[3,0,3,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,0,3,1],[2,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,0,3,1],[2,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,0,3,1],[2,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,0,3,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[2,3,1,2],[2,1,0,1]],[[1,2,2,1],[2,0,3,1],[2,4,1,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,1],[3,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,0,4,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,0,3,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,2],[2,0,3,1],[2,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,0,3,1],[2,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,0,3,1],[2,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,0,3,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,1],[2,3,1,2],[2,0,2,0]],[[1,2,2,1],[2,0,3,1],[2,4,1,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[3,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,0,4,1],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,1,2],[1,0,2,0]],[[1,2,3,1],[2,0,3,1],[2,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,0,3,1],[2,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,0,3,1],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[2,3,1,2],[2,0,1,1]],[[0,3,0,1],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[0,3,0,1],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[0,3,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[0,3,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[0,3,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,4,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,0,1],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,0,1],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,0,1],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[0,3,0,1],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[0,2,0,2],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[0,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[0,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[0,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[0,3,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,4,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,0,3],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,0,2],[1,1,3,1]],[[0,2,0,1],[2,3,3,2],[0,3,0,2],[1,1,2,2]],[[0,3,0,1],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[0,2,0,2],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[0,3,0,2],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[0,3,0,2],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[0,3,0,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[0,3,0,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,4,0,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,0,3],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,0,2],[2,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,0,2],[1,3,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,0,2],[1,2,1,2]],[[0,3,0,1],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[0,2,0,2],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[0,2,0,1],[3,3,3,2],[0,3,0,2],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[0,3,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,4,2],[0,3,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,3],[0,3,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,4,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,3,0,3],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,3,0,2],[2,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,3,0,2],[1,3,2,0]],[[0,2,0,1],[2,3,3,2],[0,3,0,2],[1,2,3,0]],[[0,3,0,1],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[0,3,1,0],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[0,3,1,0],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[0,3,1,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[0,3,1,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,4,1,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,0],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,0],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,0],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,0],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[0,2,0,2],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[0,2,0,1],[3,3,3,2],[0,3,1,1],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[0,3,1,1],[1,2,2,0]],[[0,2,0,1],[2,3,4,2],[0,3,1,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,3],[0,3,1,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,4,1,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,3,1,1],[2,2,2,0]],[[0,2,0,1],[2,3,3,2],[0,3,1,1],[1,3,2,0]],[[0,2,0,1],[2,3,3,2],[0,3,1,1],[1,2,3,0]],[[0,3,0,1],[2,3,3,2],[0,3,1,2],[0,1,2,1]],[[0,2,0,2],[2,3,3,2],[0,3,1,2],[0,1,2,1]],[[0,2,0,1],[2,4,3,2],[0,3,1,2],[0,1,2,1]],[[0,2,0,1],[2,3,4,2],[0,3,1,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,3],[0,3,1,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,3],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,2],[0,1,3,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,2],[0,1,2,2]],[[0,3,0,1],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[0,3,1,2],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[0,3,1,2],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[0,3,1,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[0,3,1,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,4,1,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,3],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,2],[1,1,1,2]],[[0,3,0,1],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[0,2,0,2],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[0,3,1,2],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[0,3,1,2],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[0,3,1,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,3],[0,3,1,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,4,1,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,3,1,3],[1,1,2,0]],[[0,3,0,1],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[0,2,0,2],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[0,2,0,1],[3,3,3,2],[0,3,1,2],[1,2,0,1]],[[0,2,0,1],[2,4,3,2],[0,3,1,2],[1,2,0,1]],[[0,2,0,1],[2,3,4,2],[0,3,1,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,3],[0,3,1,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,4,1,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,3],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,2],[2,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,2],[1,3,0,1]],[[0,2,0,1],[2,3,3,2],[0,3,1,2],[1,2,0,2]],[[0,3,0,1],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[0,2,0,2],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[0,2,0,1],[3,3,3,2],[0,3,1,2],[1,2,1,0]],[[0,2,0,1],[2,4,3,2],[0,3,1,2],[1,2,1,0]],[[0,2,0,1],[2,3,4,2],[0,3,1,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,3],[0,3,1,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,4,1,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,3,1,3],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,3,1,2],[2,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,3,1,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,4,1,2],[1,0,1,1]],[[1,2,2,1],[2,0,3,1],[3,3,1,2],[1,0,1,1]],[[1,2,2,1],[2,0,4,1],[2,3,1,2],[1,0,1,1]],[[1,2,2,1],[3,0,3,1],[2,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,0,3,1],[2,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,0,3,1],[2,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,0,3,1],[2,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,0,3,1],[2,3,1,2],[1,0,1,1]],[[0,3,0,1],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[0,2,0,2],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[0,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[0,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[0,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[0,3,2,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,4,2,0],[1,1,2,1]],[[0,3,0,1],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[0,2,0,2],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[0,3,2,0],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[0,3,2,0],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[0,3,2,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[0,3,2,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,4,2,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,2,0],[2,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,2,0],[1,3,1,1]],[[0,3,0,1],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[0,3,2,1],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[0,3,2,1],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[0,3,2,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[0,3,2,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,4,2,1],[1,1,1,1]],[[0,3,0,1],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[0,2,0,2],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[0,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[0,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[0,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,3],[0,3,2,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,4,2,1],[1,1,2,0]],[[0,3,0,1],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[0,2,0,2],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[0,2,0,1],[3,3,3,2],[0,3,2,1],[1,2,0,1]],[[0,2,0,1],[2,4,3,2],[0,3,2,1],[1,2,0,1]],[[0,2,0,1],[2,3,4,2],[0,3,2,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,3],[0,3,2,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,4,2,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,3,2,1],[2,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,3,2,1],[1,3,0,1]],[[0,3,0,1],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[0,2,0,2],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[0,2,0,1],[3,3,3,2],[0,3,2,1],[1,2,1,0]],[[0,2,0,1],[2,4,3,2],[0,3,2,1],[1,2,1,0]],[[0,2,0,1],[2,3,4,2],[0,3,2,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,3],[0,3,2,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,4,2,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,3,2,1],[2,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,3,2,1],[1,3,1,0]],[[0,3,0,1],[2,3,3,2],[0,3,2,2],[0,0,2,1]],[[0,2,0,2],[2,3,3,2],[0,3,2,2],[0,0,2,1]],[[0,2,0,1],[2,4,3,2],[0,3,2,2],[0,0,2,1]],[[0,2,0,1],[2,3,4,2],[0,3,2,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,3],[0,3,2,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,2,3],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,2,2],[0,0,2,2]],[[0,3,0,1],[2,3,3,2],[0,3,2,2],[0,1,1,1]],[[0,2,0,2],[2,3,3,2],[0,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,4,3,2],[0,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[0,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[0,3,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,2,3],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,2,2],[0,1,1,2]],[[0,3,0,1],[2,3,3,2],[0,3,2,2],[0,1,2,0]],[[0,2,0,2],[2,3,3,2],[0,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[0,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[0,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[0,3,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,3,2,3],[0,1,2,0]],[[0,3,0,1],[2,3,3,2],[0,3,2,2],[0,2,0,1]],[[0,2,0,2],[2,3,3,2],[0,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[0,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,4,2],[0,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,3],[0,3,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,3,2,3],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,3,2,2],[0,2,0,2]],[[0,3,0,1],[2,3,3,2],[0,3,2,2],[0,2,1,0]],[[0,2,0,2],[2,3,3,2],[0,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[0,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[0,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,3],[0,3,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,4,1,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[3,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,0,4,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,0,3,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,0,3,1],[2,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,0,3,1],[2,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,0,3,1],[2,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,0,3,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,3,1,2],[0,3,0,1]],[[1,2,2,1],[2,0,3,1],[2,4,1,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,1],[3,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,0,4,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[3,0,3,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,2],[2,0,3,1],[2,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,0,3,1],[2,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,0,3,1],[2,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,0,3,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,1],[2,4,1,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[3,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,0,4,1],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,0,3,1],[2,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,0,3,1],[2,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,0,3,1],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,4,1,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,1],[3,3,1,2],[0,1,1,1]],[[1,2,2,1],[2,0,4,1],[2,3,1,2],[0,1,1,1]],[[1,2,2,1],[3,0,3,1],[2,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,0,3,1],[2,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,0,3,1],[2,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,0,3,1],[2,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,0,3,1],[2,3,1,2],[0,1,1,1]],[[0,3,0,1],[2,3,3,2],[0,3,3,0],[0,1,2,1]],[[0,2,0,2],[2,3,3,2],[0,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,4,3,2],[0,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,4,2],[0,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,3],[0,3,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,4,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,3,0],[0,1,3,1]],[[0,2,0,1],[2,3,3,2],[0,3,3,0],[0,1,2,2]],[[0,3,0,1],[2,3,3,2],[0,3,3,0],[0,2,1,1]],[[0,2,0,2],[2,3,3,2],[0,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[0,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[0,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[0,3,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,4,0],[0,2,1,1]],[[0,3,0,1],[2,3,3,2],[0,3,3,0],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[0,3,3,0],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[0,3,3,0],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[0,3,3,0],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,4,3,0],[1,1,2,0]],[[0,3,0,1],[2,3,3,2],[0,3,3,0],[1,2,1,0]],[[0,2,0,1],[3,3,3,2],[0,3,3,0],[1,2,1,0]],[[0,2,0,1],[2,4,3,2],[0,3,3,0],[1,2,1,0]],[[0,2,0,1],[2,3,4,2],[0,3,3,0],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,4,3,0],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,3,3,0],[2,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,3,3,0],[1,3,1,0]],[[0,3,0,1],[2,3,3,2],[0,3,3,1],[0,0,2,1]],[[0,2,0,2],[2,3,3,2],[0,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,4,3,2],[0,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,4,2],[0,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,3,3],[0,3,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[0,3,4,1],[0,0,2,1]],[[0,3,0,1],[2,3,3,2],[0,3,3,1],[0,1,1,1]],[[0,2,0,2],[2,3,3,2],[0,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,4,3,2],[0,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[0,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[0,3,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[0,3,4,1],[0,1,1,1]],[[0,3,0,1],[2,3,3,2],[0,3,3,1],[0,1,2,0]],[[0,2,0,2],[2,3,3,2],[0,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[0,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[0,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[0,3,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,3,4,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[0,3,3,1],[0,1,3,0]],[[0,3,0,1],[2,3,3,2],[0,3,3,1],[0,2,0,1]],[[0,2,0,2],[2,3,3,2],[0,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[0,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,4,2],[0,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,3],[0,3,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[0,3,4,1],[0,2,0,1]],[[0,3,0,1],[2,3,3,2],[0,3,3,1],[0,2,1,0]],[[0,2,0,2],[2,3,3,2],[0,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[0,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[0,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,3],[0,3,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,4,1,1],[1,1,2,0]],[[1,2,2,1],[2,0,3,1],[3,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,0,4,1],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,1,1],[1,1,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,0,3,1],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,0,3,1],[2,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,0,3,1],[2,3,1,1],[1,1,2,0]],[[0,3,0,1],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[0,2,0,2],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[0,2,0,1],[3,3,3,2],[0,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,4,3,2],[0,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,3,4,2],[0,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,3,3,3],[0,3,3,1],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[0,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,0,3,1],[2,3,1,1],[0,2,3,0]],[[1,2,2,1],[2,0,3,1],[2,3,1,1],[0,3,2,0]],[[1,2,2,1],[2,0,3,1],[2,4,1,1],[0,2,2,0]],[[1,2,2,1],[2,0,3,1],[3,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,0,4,1],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,0,3,1],[2,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,0,3,1],[2,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,0,3,1],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,0,3,1],[2,3,1,0],[2,1,2,1]],[[1,2,2,1],[2,0,3,1],[2,4,1,0],[1,1,2,1]],[[1,2,2,1],[2,0,3,1],[3,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,0,4,1],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,0,3,1],[2,3,1,0],[1,1,2,1]],[[1,2,2,2],[2,0,3,1],[2,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,0,3,1],[2,3,1,0],[1,1,2,1]],[[0,3,0,1],[2,3,3,2],[0,3,3,2],[0,1,0,1]],[[0,2,0,2],[2,3,3,2],[0,3,3,2],[0,1,0,1]],[[0,2,0,1],[2,4,3,2],[0,3,3,2],[0,1,0,1]],[[0,2,0,1],[2,3,4,2],[0,3,3,2],[0,1,0,1]],[[0,2,0,1],[2,3,3,3],[0,3,3,2],[0,1,0,1]],[[0,2,0,1],[2,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,3,2,1],[2,0,3,1],[2,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,0,3,1],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,0,3,1],[2,3,1,0],[0,2,2,2]],[[1,2,2,1],[2,0,3,1],[2,3,1,0],[0,2,3,1]],[[1,2,2,1],[2,0,3,1],[2,3,1,0],[0,3,2,1]],[[1,2,2,1],[2,0,3,1],[2,4,1,0],[0,2,2,1]],[[1,2,2,1],[2,0,3,1],[3,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,0,4,1],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[3,0,3,1],[2,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,0,3,1],[2,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,0,3,1],[2,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,0,3,1],[2,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,0,3,1],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,0,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,4,0,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,1],[3,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,0,4,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,0,3,1],[2,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,0,3,1],[2,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,0,3,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,3,0,2],[2,1,1,1]],[[1,2,2,1],[2,0,3,1],[2,4,0,2],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[3,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,0,4,1],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[3,0,3,1],[2,3,0,2],[1,1,1,1]],[[1,2,2,2],[2,0,3,1],[2,3,0,2],[1,1,1,1]],[[1,2,3,1],[2,0,3,1],[2,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,0,3,1],[2,3,0,2],[1,1,1,1]],[[2,2,2,1],[2,0,3,1],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[2,3,0,2],[2,0,2,1]],[[1,2,2,1],[2,0,3,1],[2,4,0,2],[1,0,2,1]],[[1,2,2,1],[2,0,3,1],[3,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,0,4,1],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[3,0,3,1],[2,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,0,3,1],[2,3,0,2],[1,0,2,1]],[[1,2,3,1],[2,0,3,1],[2,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,0,3,1],[2,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,0,3,1],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,0,3,1],[2,3,0,2],[0,2,3,0]],[[1,2,2,1],[2,0,3,1],[2,3,0,2],[0,3,2,0]],[[1,2,2,1],[2,0,3,1],[2,4,0,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,1],[3,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,0,4,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,0,3,1],[2,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,0,3,1],[2,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,0,3,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,1],[2,3,0,2],[0,3,1,1]],[[1,2,2,1],[2,0,3,1],[2,4,0,2],[0,2,1,1]],[[1,2,2,1],[2,0,3,1],[3,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,0,4,1],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[3,0,3,1],[2,3,0,2],[0,2,1,1]],[[1,2,2,2],[2,0,3,1],[2,3,0,2],[0,2,1,1]],[[1,2,3,1],[2,0,3,1],[2,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,0,3,1],[2,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,0,3,1],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,0,3,1],[2,4,0,2],[0,1,2,1]],[[1,2,2,1],[2,0,3,1],[3,3,0,2],[0,1,2,1]],[[1,2,2,1],[2,0,4,1],[2,3,0,2],[0,1,2,1]],[[1,2,2,1],[3,0,3,1],[2,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,0,3,1],[2,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,0,3,1],[2,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,0,3,1],[2,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,0,3,1],[2,3,0,2],[0,1,2,1]],[[1,2,2,1],[2,0,3,1],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[2,0,3,1],[2,3,0,1],[2,2,2,0]],[[1,2,2,1],[2,0,3,1],[3,3,0,1],[1,2,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,0,1],[1,2,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,0,1],[1,2,2,0]],[[1,2,3,1],[2,0,3,1],[2,3,0,1],[1,2,2,0]],[[1,3,2,1],[2,0,3,1],[2,3,0,1],[1,2,2,0]],[[2,2,2,1],[2,0,3,1],[2,3,0,1],[1,2,2,0]],[[1,2,2,1],[2,0,3,1],[2,3,0,1],[2,1,2,1]],[[1,2,2,1],[2,0,3,1],[2,4,0,1],[1,1,2,1]],[[1,2,2,1],[2,0,3,1],[3,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,0,4,1],[2,3,0,1],[1,1,2,1]],[[0,3,0,1],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[1,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[1,0,1,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,1,3],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,1,2],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,1,2],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,1,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[1,0,1,2],[1,2,2,2]],[[0,2,0,2],[2,3,3,2],[1,0,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[1,0,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[1,0,2,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,2,3],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,2,2],[0,2,3,1]],[[0,2,0,1],[2,3,3,2],[1,0,2,2],[0,2,2,2]],[[0,3,0,1],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,0,2],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[1,0,2,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[1,0,2,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,0,2,3],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,0,2,2],[1,2,1,2]],[[0,3,0,1],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,0,2],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,0,1],[3,3,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,4,2],[1,0,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,3],[1,0,2,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,0,2,3],[1,2,2,0]],[[0,3,0,1],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[1,0,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[1,0,3,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,4,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,3,0],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,3,0],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,3,0],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[1,0,3,0],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,0,2],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[1,0,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[1,0,3,1],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,0,4,1],[1,2,1,1]],[[0,3,0,1],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,0,2],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,0,1],[3,3,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,0,1],[2,3,4,2],[1,0,3,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,3],[1,0,3,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,0,4,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,0,3,1],[2,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,0,3,1],[1,3,2,0]],[[0,2,0,1],[2,3,3,2],[1,0,3,1],[1,2,3,0]],[[0,2,0,2],[2,3,3,2],[1,0,3,2],[0,1,2,1]],[[0,2,0,1],[2,3,4,2],[1,0,3,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,3],[1,0,3,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,3,3],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,0,3,2],[0,1,2,2]],[[0,2,0,2],[2,3,3,2],[1,0,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[1,0,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[1,0,3,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,0,3,3],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,0,3,2],[0,2,1,2]],[[0,2,0,2],[2,3,3,2],[1,0,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,4,2],[1,0,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,3],[1,0,3,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[3,0,3,1],[2,3,0,1],[1,1,2,1]],[[1,2,2,2],[2,0,3,1],[2,3,0,1],[1,1,2,1]],[[1,2,3,1],[2,0,3,1],[2,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,0,3,1],[2,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,0,3,1],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,0,3,1],[2,3,0,1],[0,2,2,2]],[[1,2,2,1],[2,0,3,1],[2,3,0,1],[0,2,3,1]],[[1,2,2,1],[2,0,3,1],[2,3,0,1],[0,3,2,1]],[[1,2,2,1],[2,0,3,1],[2,4,0,1],[0,2,2,1]],[[1,2,2,1],[2,0,3,1],[3,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,0,4,1],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[3,0,3,1],[2,3,0,1],[0,2,2,1]],[[0,3,0,1],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[1,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[1,1,0,2],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,0,3],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,0,2],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,0,2],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,0,2],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[1,1,0,2],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,0,2],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,0,1],[3,3,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,0,1],[2,4,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[1,1,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[1,1,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,1,3],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,1,2],[0,3,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,1,2],[0,2,3,1]],[[0,2,0,1],[2,3,3,2],[1,1,1,2],[0,2,2,2]],[[0,3,0,1],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,0,2],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,0,1],[3,3,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[1,1,2,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[1,1,2,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,1,2,3],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,1,2,2],[0,2,1,2]],[[0,3,0,1],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,0,2],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,0,1],[3,3,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,0,1],[2,4,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,4,2],[1,1,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,3],[1,1,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,2],[2,0,3,1],[2,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,0,3,1],[2,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,0,3,1],[2,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,0,3,1],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,0,3,1],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[2,0,3,1],[2,3,0,0],[2,2,2,1]],[[1,2,2,1],[2,0,3,1],[3,3,0,0],[1,2,2,1]],[[1,2,2,1],[3,0,3,1],[2,3,0,0],[1,2,2,1]],[[1,2,2,2],[2,0,3,1],[2,3,0,0],[1,2,2,1]],[[1,2,3,1],[2,0,3,1],[2,3,0,0],[1,2,2,1]],[[1,3,2,1],[2,0,3,1],[2,3,0,0],[1,2,2,1]],[[0,3,0,1],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,0,2],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,0,1],[3,3,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,0,1],[2,4,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[1,1,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[1,1,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,4,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,3,0],[0,3,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,3,0],[0,2,3,1]],[[0,2,0,1],[2,3,3,2],[1,1,3,0],[0,2,2,2]],[[0,3,0,1],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,0,2],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,0,1],[3,3,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[1,1,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[1,1,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,1,4,1],[0,2,1,1]],[[0,3,0,1],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,0,2],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,0,1],[3,3,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,0,1],[2,4,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,0,1],[2,3,4,2],[1,1,3,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,3],[1,1,3,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,1,4,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,1,3,1],[0,3,2,0]],[[0,2,0,1],[2,3,3,2],[1,1,3,1],[0,2,3,0]],[[2,2,2,1],[2,0,3,1],[2,3,0,0],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[1,1,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,4,2],[1,1,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,3],[1,1,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,3,3],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,1,3,2],[0,0,2,2]],[[0,2,0,2],[2,3,3,2],[1,1,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[1,1,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[1,1,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,1,3,3],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,1,3,2],[0,1,1,2]],[[0,2,0,2],[2,3,3,2],[1,1,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[1,1,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[1,1,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[1,1,3,3],[0,1,2,0]],[[0,2,0,2],[2,3,3,2],[1,1,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,4,2],[1,1,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,3],[1,1,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,1,3,3],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,1,3,2],[1,0,1,2]],[[0,2,0,2],[2,3,3,2],[1,1,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[1,1,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,3],[1,1,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[3,2,3,2],[1,0,0,1]],[[1,2,2,1],[2,0,4,1],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,0,3,1],[2,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,0,3,1],[2,2,3,2],[1,0,0,1]],[[1,3,2,1],[2,0,3,1],[2,2,3,2],[1,0,0,1]],[[2,2,2,1],[2,0,3,1],[2,2,3,2],[1,0,0,1]],[[0,3,0,1],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[0,2,0,2],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[0,2,0,1],[3,3,3,2],[1,2,0,2],[0,2,2,1]],[[0,2,0,1],[2,4,3,2],[1,2,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[1,2,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[1,2,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,0,3],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,0,2],[0,3,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,0,2],[0,2,3,1]],[[0,2,0,1],[2,3,3,2],[1,2,0,2],[0,2,2,2]],[[0,3,0,1],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,0,2],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,0,1],[3,3,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,0,1],[2,4,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,0,1],[2,3,4,2],[1,2,1,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,3],[1,2,1,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,1,3],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,1,2],[0,1,3,1]],[[0,2,0,1],[2,3,3,2],[1,2,1,2],[0,1,2,2]],[[0,3,0,1],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,0,2],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,0,1],[3,3,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,0,1],[2,4,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,0,1],[2,3,4,2],[1,2,1,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,3],[1,2,1,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,1,3],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,1,2],[1,0,3,1]],[[0,2,0,1],[2,3,3,2],[1,2,1,2],[1,0,2,2]],[[0,3,0,1],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,0,2],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,0,1],[3,3,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,0,1],[2,4,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,0,1],[2,3,4,2],[1,2,2,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,3],[1,2,2,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,2,3],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,2,2],[0,0,2,2]],[[0,3,0,1],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,0,2],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,0,1],[3,3,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,0,1],[2,4,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[1,2,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[1,2,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,2,2,3],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,2,2,2],[0,1,1,2]],[[0,3,0,1],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,0,2],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,0,1],[3,3,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[1,2,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[1,2,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[1,2,2,3],[0,1,2,0]],[[0,3,0,1],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,0,2],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,0,1],[3,3,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,4,2],[1,2,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,3],[1,2,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[1,2,2,3],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[1,2,2,2],[0,2,0,2]],[[0,3,0,1],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,0,2],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[1,2,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,3],[1,2,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[1,2,2,3],[0,2,1,0]],[[0,3,0,1],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,0,2],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,0,1],[3,3,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,0,1],[2,4,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,4,2],[1,2,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,3],[1,2,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,2,2,3],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,2,2,2],[1,0,1,2]],[[0,3,0,1],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,0,2],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,0,1],[3,3,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,0,1],[2,4,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[1,2,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,3],[1,2,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[1,2,2,3],[1,0,2,0]],[[0,3,0,1],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,0,2],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,0,1],[3,3,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,0,1],[2,4,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,4,2],[1,2,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,3],[1,2,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[1,2,2,3],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[1,2,2,2],[1,1,0,2]],[[0,3,0,1],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,0,2],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,4,2],[1,2,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,3],[1,2,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,1],[2,0,4,1],[2,2,3,2],[0,1,0,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,0,3,1],[2,2,3,2],[0,1,0,1]],[[1,2,3,1],[2,0,3,1],[2,2,3,2],[0,1,0,1]],[[1,3,2,1],[2,0,3,1],[2,2,3,2],[0,1,0,1]],[[2,2,2,1],[2,0,3,1],[2,2,3,2],[0,1,0,1]],[[0,3,0,1],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,0,2],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,0,1],[3,3,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,0,1],[2,4,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,4,2],[1,2,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,3],[1,2,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,4,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,3,0],[0,1,3,1]],[[0,2,0,1],[2,3,3,2],[1,2,3,0],[0,1,2,2]],[[0,3,0,1],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[0,2,0,2],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[0,2,0,1],[3,3,3,2],[1,2,3,0],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[1,2,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[1,2,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[1,2,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,2,4,0],[0,2,1,1]],[[0,3,0,1],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,0,2],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,0,1],[3,3,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,0,1],[2,4,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,4,2],[1,2,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,3],[1,2,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,4,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,3,0],[1,0,3,1]],[[0,2,0,1],[2,3,3,2],[1,2,3,0],[1,0,2,2]],[[0,3,0,1],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[1,2,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[1,2,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,2,4,0],[1,1,1,1]],[[0,3,0,1],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,0,2],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,0,1],[3,3,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,0,1],[2,4,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,4,2],[1,2,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,3,3],[1,2,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,2,4,1],[0,0,2,1]],[[0,3,0,1],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,0,2],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,0,1],[3,3,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,0,1],[2,4,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[1,2,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[1,2,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,2,4,1],[0,1,1,1]],[[0,3,0,1],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,0,2],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,0,1],[3,3,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[1,2,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[1,2,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[1,2,4,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[1,2,3,1],[0,1,3,0]],[[0,3,0,1],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,0,2],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,0,1],[3,3,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,4,2],[1,2,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,3],[1,2,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[1,2,4,1],[0,2,0,1]],[[0,3,0,1],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,0,2],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[1,2,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,3],[1,2,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[1,2,4,1],[0,2,1,0]],[[0,3,0,1],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,0,2],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,0,1],[3,3,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,0,1],[2,4,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,4,2],[1,2,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,3],[1,2,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,2,4,1],[1,0,1,1]],[[0,3,0,1],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,0,2],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,0,1],[3,3,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,0,1],[2,4,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[1,2,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,3],[1,2,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[1,2,4,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[1,2,3,1],[1,0,3,0]],[[0,3,0,1],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,0,2],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,0,1],[3,3,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,0,1],[2,4,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,4,2],[1,2,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,3],[1,2,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[1,2,4,1],[1,1,0,1]],[[0,3,0,1],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,0,2],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,4,2],[1,2,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,3],[1,2,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,3,1],[2,1,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,4,1],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[3,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,4,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[3,0,3,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,0,3,1],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,0,3,1],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,0,3,1],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,0,3,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,3,1],[2,1,0,1]],[[1,2,2,1],[2,0,3,1],[2,2,4,1],[1,1,0,1]],[[1,2,2,1],[2,0,3,1],[3,2,3,1],[1,1,0,1]],[[1,2,2,1],[2,0,4,1],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,0,3,1],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,0,3,1],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,0,3,1],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,0,3,1],[2,2,3,1],[1,1,0,1]],[[0,3,0,1],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,0,2],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,0,1],[3,3,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,0,1],[2,4,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,0,1],[2,3,4,2],[1,2,3,2],[0,1,0,1]],[[0,2,0,1],[2,3,3,3],[1,2,3,2],[0,1,0,1]],[[0,2,0,1],[2,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,1],[2,0,3,1],[2,2,3,1],[1,0,3,0]],[[1,2,2,1],[2,0,3,1],[2,2,3,1],[2,0,2,0]],[[1,2,2,1],[2,0,3,1],[2,2,4,1],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[3,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,4,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[3,0,3,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,0,3,1],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,0,3,1],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,0,3,1],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,0,3,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[2,2,3,1],[2,0,1,1]],[[1,2,2,1],[2,0,3,1],[2,2,4,1],[1,0,1,1]],[[1,2,2,1],[2,0,3,1],[3,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,4,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,0,3,1],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,0,3,1],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,0,3,1],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,0,3,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,3,1],[2,2,4,1],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[3,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,4,1],[2,2,3,1],[0,2,1,0]],[[0,3,0,1],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,0,2],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,0,1],[3,3,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,0,1],[2,4,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,0,1],[2,3,4,2],[1,2,3,2],[1,0,0,1]],[[0,2,0,1],[2,3,3,3],[1,2,3,2],[1,0,0,1]],[[0,2,0,1],[2,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,0,3,1],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,0,3,1],[2,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,0,3,1],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,0,3,1],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,4,1],[0,2,0,1]],[[1,2,2,1],[2,0,3,1],[3,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,4,1],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,0,3,1],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,0,3,1],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,0,3,1],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,0,3,1],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,3,1],[2,2,3,1],[0,1,3,0]],[[1,2,2,1],[2,0,3,1],[2,2,4,1],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[3,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,4,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[3,0,3,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,0,3,1],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,0,3,1],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,0,3,1],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,0,3,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,2,4,1],[0,1,1,1]],[[1,2,2,1],[2,0,3,1],[3,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,4,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,0,3,1],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,0,3,1],[2,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,0,3,1],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,0,3,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,3,1],[2,2,4,1],[0,0,2,1]],[[1,2,2,1],[2,0,4,1],[2,2,3,1],[0,0,2,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,0,3,1],[2,2,3,1],[0,0,2,1]],[[1,2,3,1],[2,0,3,1],[2,2,3,1],[0,0,2,1]],[[1,3,2,1],[2,0,3,1],[2,2,3,1],[0,0,2,1]],[[2,2,2,1],[2,0,3,1],[2,2,3,1],[0,0,2,1]],[[1,2,2,1],[2,0,3,1],[2,2,3,0],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,3,0],[2,2,1,0]],[[1,2,2,1],[2,0,3,1],[3,2,3,0],[1,2,1,0]],[[1,2,2,1],[2,0,4,1],[2,2,3,0],[1,2,1,0]],[[1,2,2,1],[3,0,3,1],[2,2,3,0],[1,2,1,0]],[[1,2,2,2],[2,0,3,1],[2,2,3,0],[1,2,1,0]],[[1,2,3,1],[2,0,3,1],[2,2,3,0],[1,2,1,0]],[[1,3,2,1],[2,0,3,1],[2,2,3,0],[1,2,1,0]],[[2,2,2,1],[2,0,3,1],[2,2,3,0],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,3,0],[2,1,1,1]],[[0,3,0,1],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[0,2,0,2],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[0,2,0,1],[3,3,3,2],[1,3,0,1],[0,2,2,1]],[[0,2,0,1],[2,4,3,2],[1,3,0,1],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[1,3,0,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[1,3,0,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,4,0,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,1],[0,3,2,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,1],[0,2,3,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,1],[0,2,2,2]],[[0,3,0,1],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[0,2,0,2],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[1,3,0,1],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[1,3,0,1],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[1,3,0,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[1,3,0,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,4,0,1],[1,1,2,1]],[[0,3,0,1],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[0,2,0,2],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[0,2,0,1],[3,3,3,2],[1,3,0,2],[0,1,2,1]],[[0,2,0,1],[2,4,3,2],[1,3,0,2],[0,1,2,1]],[[0,2,0,1],[2,3,4,2],[1,3,0,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,3],[1,3,0,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,4,0,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,3],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,2],[0,1,3,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,2],[0,1,2,2]],[[0,3,0,1],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[0,2,0,2],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[0,2,0,1],[3,3,3,2],[1,3,0,2],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[1,3,0,2],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[1,3,0,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[1,3,0,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,4,0,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,3],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,2],[0,3,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,2],[0,2,1,2]],[[0,3,0,1],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[0,2,0,2],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,0,2],[0,2,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,0,2],[0,2,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,0,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,3],[1,3,0,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,4,0,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,3,0,3],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,3,0,2],[0,3,2,0]],[[0,2,0,1],[2,3,3,2],[1,3,0,2],[0,2,3,0]],[[0,3,0,1],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[0,2,0,2],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[0,2,0,1],[3,3,3,2],[1,3,0,2],[1,0,2,1]],[[0,2,0,1],[2,4,3,2],[1,3,0,2],[1,0,2,1]],[[0,2,0,1],[2,3,4,2],[1,3,0,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,3],[1,3,0,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,4,0,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,3],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,2],[1,0,3,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,2],[1,0,2,2]],[[0,3,0,1],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[1,3,0,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[1,3,0,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,4,0,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,3],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,0,2],[1,1,1,2]],[[0,3,0,1],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,0,2],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,0,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,3],[1,3,0,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[1,4,0,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,2,4,0],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[3,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,4,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,2],[2,0,3,1],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,0,3,1],[2,2,3,0],[1,1,1,1]],[[1,3,2,1],[2,0,3,1],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,0,3,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[2,2,3,0],[1,0,2,2]],[[1,2,2,1],[2,0,3,1],[2,2,3,0],[1,0,3,1]],[[1,2,2,1],[2,0,3,1],[2,2,3,0],[2,0,2,1]],[[1,2,2,1],[2,0,3,1],[2,2,4,0],[1,0,2,1]],[[0,3,0,1],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[0,2,0,2],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[0,2,0,1],[3,3,3,2],[1,3,1,0],[0,2,2,1]],[[0,2,0,1],[2,4,3,2],[1,3,1,0],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[1,3,1,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[1,3,1,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,4,1,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,0],[0,3,2,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,0],[0,2,3,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,0],[0,2,2,2]],[[0,3,0,1],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[0,2,0,2],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[1,3,1,0],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[1,3,1,0],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[1,3,1,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[1,3,1,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,4,1,0],[1,1,2,1]],[[0,3,0,1],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[0,2,0,2],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,1,1],[0,2,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,1,1],[0,2,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,1,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,3],[1,3,1,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,4,1,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[1,3,1,1],[0,3,2,0]],[[0,2,0,1],[2,3,3,2],[1,3,1,1],[0,2,3,0]],[[0,3,0,1],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[0,2,0,2],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,1,1],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,1,1],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,1,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,3],[1,3,1,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[1,4,1,1],[1,1,2,0]],[[1,2,2,1],[2,0,3,1],[3,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,0,4,1],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,0,3,1],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,0,3,1],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,0,3,1],[2,2,3,0],[1,0,2,1]],[[2,2,2,1],[2,0,3,1],[2,2,3,0],[1,0,2,1]],[[0,3,0,1],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[0,2,0,2],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[0,2,0,1],[3,3,3,2],[1,3,1,2],[0,1,1,1]],[[0,2,0,1],[2,4,3,2],[1,3,1,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[1,3,1,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[1,3,1,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,4,1,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,3],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,2],[0,1,1,2]],[[0,3,0,1],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[0,2,0,2],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,1,2],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,1,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,1,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[1,3,1,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[1,4,1,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[1,3,1,3],[0,1,2,0]],[[0,3,0,1],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[0,2,0,2],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[0,2,0,1],[3,3,3,2],[1,3,1,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[1,3,1,2],[0,2,0,1]],[[0,2,0,1],[2,3,4,2],[1,3,1,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,3],[1,3,1,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[1,4,1,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,3],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,2],[0,3,0,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,2],[0,2,0,2]],[[0,3,0,1],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[0,2,0,2],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[1,3,1,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[1,3,1,2],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[1,3,1,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,3],[1,3,1,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[1,4,1,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[1,3,1,3],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[1,3,1,2],[0,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,4,0],[0,2,1,1]],[[1,2,2,1],[2,0,3,1],[3,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,0,4,1],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,0],[0,2,1,1]],[[0,3,0,1],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[0,2,0,2],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[0,2,0,1],[3,3,3,2],[1,3,1,2],[1,0,1,1]],[[0,2,0,1],[2,4,3,2],[1,3,1,2],[1,0,1,1]],[[0,2,0,1],[2,3,4,2],[1,3,1,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,3],[1,3,1,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,4,1,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,3],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,2],[1,0,1,2]],[[0,3,0,1],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[0,2,0,2],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,1,2],[1,0,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,1,2],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,1,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,3],[1,3,1,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[1,4,1,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[1,3,1,3],[1,0,2,0]],[[0,3,0,1],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[0,2,0,2],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[0,2,0,1],[3,3,3,2],[1,3,1,2],[1,1,0,1]],[[0,2,0,1],[2,4,3,2],[1,3,1,2],[1,1,0,1]],[[0,2,0,1],[2,3,4,2],[1,3,1,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,3],[1,3,1,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[1,4,1,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,3],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[1,3,1,2],[1,1,0,2]],[[0,3,0,1],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[0,2,0,2],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[1,3,1,2],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[1,3,1,2],[1,1,1,0]],[[0,2,0,1],[2,3,4,2],[1,3,1,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,3],[1,3,1,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[1,4,1,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[1,3,1,3],[1,1,1,0]],[[1,2,2,2],[2,0,3,1],[2,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,0,3,1],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,0,3,1],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,0,3,1],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,0,3,1],[2,2,3,0],[0,1,2,2]],[[1,2,2,1],[2,0,3,1],[2,2,3,0],[0,1,3,1]],[[1,2,2,1],[2,0,3,1],[2,2,4,0],[0,1,2,1]],[[1,2,2,1],[2,0,3,1],[3,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,0,4,1],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[3,0,3,1],[2,2,3,0],[0,1,2,1]],[[0,3,0,1],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[0,2,0,2],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[0,2,0,1],[3,3,3,2],[1,3,1,2],[1,2,0,0]],[[0,2,0,1],[2,4,3,2],[1,3,1,2],[1,2,0,0]],[[0,2,0,1],[2,3,4,2],[1,3,1,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,3],[1,3,1,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[1,4,1,2],[1,2,0,0]],[[1,2,2,2],[2,0,3,1],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,0,3,1],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,0,3,1],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,0,3,1],[2,2,3,0],[0,1,2,1]],[[0,3,0,1],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[0,2,0,2],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[0,2,0,1],[3,3,3,2],[1,3,2,0],[0,1,2,1]],[[0,2,0,1],[2,4,3,2],[1,3,2,0],[0,1,2,1]],[[0,2,0,1],[2,3,4,2],[1,3,2,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,3],[1,3,2,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[1,4,2,0],[0,1,2,1]],[[0,3,0,1],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[0,2,0,2],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[0,2,0,1],[3,3,3,2],[1,3,2,0],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[1,3,2,0],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[1,3,2,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[1,3,2,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,4,2,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,2,0],[0,3,1,1]],[[0,3,0,1],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[0,2,0,2],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[0,2,0,1],[3,3,3,2],[1,3,2,0],[1,0,2,1]],[[0,2,0,1],[2,4,3,2],[1,3,2,0],[1,0,2,1]],[[0,2,0,1],[2,3,4,2],[1,3,2,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,3],[1,3,2,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,4,2,0],[1,0,2,1]],[[0,3,0,1],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[1,3,2,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[1,3,2,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,4,2,0],[1,1,1,1]],[[0,3,0,1],[2,3,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,0,1],[3,3,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,0,1],[2,4,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,0,1],[2,3,4,2],[1,3,2,0],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,2,2,1],[2,0,3,1],[2,2,2,2],[2,1,1,0]],[[1,2,2,1],[2,0,3,1],[3,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[3,0,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[2,0,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,0,3,1],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,0,3,1],[2,2,2,2],[1,1,1,0]],[[0,3,0,1],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[0,2,0,2],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[0,2,0,1],[3,3,3,2],[1,3,2,1],[0,1,1,1]],[[0,2,0,1],[2,4,3,2],[1,3,2,1],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[1,3,2,1],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[1,3,2,1],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[1,4,2,1],[0,1,1,1]],[[0,3,0,1],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[0,2,0,2],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,2,1],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,2,1],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,2,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[1,3,2,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[1,4,2,1],[0,1,2,0]],[[0,3,0,1],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[0,2,0,2],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[0,2,0,1],[3,3,3,2],[1,3,2,1],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[1,3,2,1],[0,2,0,1]],[[0,2,0,1],[2,3,4,2],[1,3,2,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,3],[1,3,2,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[1,4,2,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[1,3,2,1],[0,3,0,1]],[[0,3,0,1],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[0,2,0,2],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[1,3,2,1],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[1,3,2,1],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[1,3,2,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,3],[1,3,2,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[1,4,2,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[1,3,2,1],[0,3,1,0]],[[2,2,2,1],[2,0,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,2,2],[2,1,0,1]],[[1,2,2,1],[2,0,3,1],[3,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,4,1],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[3,0,3,1],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,0,3,1],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,0,3,1],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,0,3,1],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,0,3,1],[2,2,2,2],[1,1,0,1]],[[0,3,0,1],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[0,2,0,2],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[0,2,0,1],[3,3,3,2],[1,3,2,1],[1,0,1,1]],[[0,2,0,1],[2,4,3,2],[1,3,2,1],[1,0,1,1]],[[0,2,0,1],[2,3,4,2],[1,3,2,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,3],[1,3,2,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,4,2,1],[1,0,1,1]],[[0,3,0,1],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[0,2,0,2],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,2,1],[1,0,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,2,1],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,2,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,3],[1,3,2,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[1,4,2,1],[1,0,2,0]],[[0,3,0,1],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[0,2,0,2],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[0,2,0,1],[3,3,3,2],[1,3,2,1],[1,1,0,1]],[[0,2,0,1],[2,4,3,2],[1,3,2,1],[1,1,0,1]],[[0,2,0,1],[2,3,4,2],[1,3,2,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,3],[1,3,2,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[1,4,2,1],[1,1,0,1]],[[0,3,0,1],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[0,2,0,2],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[1,3,2,1],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[1,3,2,1],[1,1,1,0]],[[0,2,0,1],[2,3,4,2],[1,3,2,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,3],[1,3,2,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[1,4,2,1],[1,1,1,0]],[[0,3,0,1],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[0,2,0,2],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[0,2,0,1],[3,3,3,2],[1,3,2,1],[1,2,0,0]],[[0,2,0,1],[2,4,3,2],[1,3,2,1],[1,2,0,0]],[[0,2,0,1],[2,3,4,2],[1,3,2,1],[1,2,0,0]],[[0,2,0,1],[2,3,3,3],[1,3,2,1],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[1,4,2,1],[1,2,0,0]],[[1,2,2,1],[2,0,3,1],[2,2,2,2],[2,0,2,0]],[[1,2,2,1],[2,0,3,1],[3,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,4,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[3,0,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,0,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,0,3,1],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,0,3,1],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,0,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[2,2,2,2],[2,0,1,1]],[[1,2,2,1],[2,0,3,1],[3,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,0,4,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[3,0,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,0,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[2,0,3,1],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,0,3,1],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,0,3,1],[2,2,2,2],[1,0,1,1]],[[0,3,0,1],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,0,2],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,0,1],[3,3,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,0,1],[2,4,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,0,1],[2,3,4,2],[1,3,2,2],[0,0,1,1]],[[0,2,0,1],[2,3,3,3],[1,3,2,2],[0,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,2,3],[0,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,2,2],[0,0,1,2]],[[0,3,0,1],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,0,2],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,2,2],[0,0,2,0]],[[0,2,0,1],[2,3,3,3],[1,3,2,2],[0,0,2,0]],[[0,2,0,1],[2,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[2,0,3,1],[3,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,4,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[3,0,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,0,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,0,3,1],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,0,3,1],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,0,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[3,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,4,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[3,0,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,0,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,0,3,1],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,0,3,1],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[2,0,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,1],[3,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,4,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[3,0,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,0,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,0,3,1],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,0,3,1],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,0,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[3,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,4,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[3,0,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,0,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,0,3,1],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,0,3,1],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,0,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,4,1],[2,2,2,2],[0,0,2,1]],[[1,2,2,1],[3,0,3,1],[2,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,0,3,1],[2,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,0,3,1],[2,2,2,2],[0,0,2,1]],[[1,3,2,1],[2,0,3,1],[2,2,2,2],[0,0,2,1]],[[2,2,2,1],[2,0,3,1],[2,2,2,2],[0,0,2,1]],[[1,2,2,1],[2,0,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,2,1],[2,2,1,0]],[[1,2,2,1],[2,0,3,1],[3,2,2,1],[1,2,1,0]],[[1,2,2,1],[2,0,4,1],[2,2,2,1],[1,2,1,0]],[[1,2,2,1],[3,0,3,1],[2,2,2,1],[1,2,1,0]],[[1,2,2,2],[2,0,3,1],[2,2,2,1],[1,2,1,0]],[[1,2,3,1],[2,0,3,1],[2,2,2,1],[1,2,1,0]],[[1,3,2,1],[2,0,3,1],[2,2,2,1],[1,2,1,0]],[[2,2,2,1],[2,0,3,1],[2,2,2,1],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,2,1],[1,3,0,1]],[[1,2,2,1],[2,0,3,1],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[2,0,3,1],[3,2,2,1],[1,2,0,1]],[[1,2,2,1],[2,0,4,1],[2,2,2,1],[1,2,0,1]],[[1,2,2,1],[3,0,3,1],[2,2,2,1],[1,2,0,1]],[[1,2,2,2],[2,0,3,1],[2,2,2,1],[1,2,0,1]],[[1,2,3,1],[2,0,3,1],[2,2,2,1],[1,2,0,1]],[[1,3,2,1],[2,0,3,1],[2,2,2,1],[1,2,0,1]],[[2,2,2,1],[2,0,3,1],[2,2,2,1],[1,2,0,1]],[[1,2,2,1],[2,0,3,1],[2,2,2,0],[1,3,1,1]],[[1,2,2,1],[2,0,3,1],[2,2,2,0],[2,2,1,1]],[[1,2,2,1],[2,0,3,1],[3,2,2,0],[1,2,1,1]],[[1,2,2,1],[2,0,4,1],[2,2,2,0],[1,2,1,1]],[[1,2,2,1],[3,0,3,1],[2,2,2,0],[1,2,1,1]],[[1,2,2,2],[2,0,3,1],[2,2,2,0],[1,2,1,1]],[[1,2,3,1],[2,0,3,1],[2,2,2,0],[1,2,1,1]],[[1,3,2,1],[2,0,3,1],[2,2,2,0],[1,2,1,1]],[[2,2,2,1],[2,0,3,1],[2,2,2,0],[1,2,1,1]],[[1,2,2,1],[2,0,3,1],[2,2,1,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,1,2],[2,2,1,0]],[[1,2,2,1],[2,0,3,1],[3,2,1,2],[1,2,1,0]],[[1,2,2,1],[2,0,4,1],[2,2,1,2],[1,2,1,0]],[[1,2,2,1],[3,0,3,1],[2,2,1,2],[1,2,1,0]],[[1,2,2,2],[2,0,3,1],[2,2,1,2],[1,2,1,0]],[[1,2,3,1],[2,0,3,1],[2,2,1,2],[1,2,1,0]],[[1,3,2,1],[2,0,3,1],[2,2,1,2],[1,2,1,0]],[[2,2,2,1],[2,0,3,1],[2,2,1,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,1,2],[1,3,0,1]],[[0,3,0,1],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[0,2,0,2],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[0,2,0,1],[3,3,3,2],[1,3,3,0],[0,0,2,1]],[[0,2,0,1],[2,4,3,2],[1,3,3,0],[0,0,2,1]],[[0,2,0,1],[2,3,4,2],[1,3,3,0],[0,0,2,1]],[[0,2,0,1],[2,3,3,3],[1,3,3,0],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[1,3,4,0],[0,0,2,1]],[[0,3,0,1],[2,3,3,2],[1,3,3,0],[0,1,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,3,0],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,3,0],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,3,0],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[1,4,3,0],[0,1,2,0]],[[0,3,0,1],[2,3,3,2],[1,3,3,0],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[1,3,3,0],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[1,3,3,0],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[1,3,3,0],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[1,4,3,0],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[1,3,3,0],[0,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,1,2],[2,2,0,1]],[[1,2,2,1],[2,0,3,1],[3,2,1,2],[1,2,0,1]],[[1,2,2,1],[2,0,4,1],[2,2,1,2],[1,2,0,1]],[[1,2,2,1],[3,0,3,1],[2,2,1,2],[1,2,0,1]],[[1,2,2,2],[2,0,3,1],[2,2,1,2],[1,2,0,1]],[[1,2,3,1],[2,0,3,1],[2,2,1,2],[1,2,0,1]],[[1,3,2,1],[2,0,3,1],[2,2,1,2],[1,2,0,1]],[[2,2,2,1],[2,0,3,1],[2,2,1,2],[1,2,0,1]],[[0,3,0,1],[2,3,3,2],[1,3,3,0],[1,0,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,3,0],[1,0,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,3,0],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,3,0],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[1,4,3,0],[1,0,2,0]],[[0,3,0,1],[2,3,3,2],[1,3,3,0],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[1,3,3,0],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[1,3,3,0],[1,1,1,0]],[[0,2,0,1],[2,3,4,2],[1,3,3,0],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[1,4,3,0],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[2,2,1,2],[2,0,2,1]],[[1,2,2,1],[2,0,3,1],[3,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,0,4,1],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[3,0,3,1],[2,2,1,2],[1,0,2,1]],[[1,2,2,2],[2,0,3,1],[2,2,1,2],[1,0,2,1]],[[0,3,0,1],[2,3,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,0,1],[3,3,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,0,1],[2,4,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,0,1],[2,3,4,2],[1,3,3,0],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,3,1],[2,0,3,1],[2,2,1,2],[1,0,2,1]],[[1,3,2,1],[2,0,3,1],[2,2,1,2],[1,0,2,1]],[[2,2,2,1],[2,0,3,1],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,0,3,1],[3,2,1,2],[0,1,2,1]],[[1,2,2,1],[2,0,4,1],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[3,0,3,1],[2,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,0,3,1],[2,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,0,3,1],[2,2,1,2],[0,1,2,1]],[[1,3,2,1],[2,0,3,1],[2,2,1,2],[0,1,2,1]],[[2,2,2,1],[2,0,3,1],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[2,0,3,1],[2,2,1,1],[1,2,3,0]],[[0,3,0,1],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,0,2],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,0,1],[3,3,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,0,1],[2,4,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,0,1],[2,3,4,2],[1,3,3,1],[0,0,1,1]],[[0,2,0,1],[2,3,3,3],[1,3,3,1],[0,0,1,1]],[[0,2,0,1],[2,3,3,2],[1,3,4,1],[0,0,1,1]],[[0,3,0,1],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,0,2],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,0,1],[3,3,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,0,1],[2,4,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,0,1],[2,3,4,2],[1,3,3,1],[0,0,2,0]],[[0,2,0,1],[2,3,3,3],[1,3,3,1],[0,0,2,0]],[[0,2,0,1],[2,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,2,1],[2,0,3,1],[2,2,1,1],[1,3,2,0]],[[1,2,2,1],[2,0,3,1],[2,2,1,1],[2,2,2,0]],[[1,2,2,1],[2,0,3,1],[3,2,1,1],[1,2,2,0]],[[1,2,2,1],[2,0,4,1],[2,2,1,1],[1,2,2,0]],[[1,2,2,1],[3,0,3,1],[2,2,1,1],[1,2,2,0]],[[1,2,2,2],[2,0,3,1],[2,2,1,1],[1,2,2,0]],[[1,2,3,1],[2,0,3,1],[2,2,1,1],[1,2,2,0]],[[1,3,2,1],[2,0,3,1],[2,2,1,1],[1,2,2,0]],[[2,2,2,1],[2,0,3,1],[2,2,1,1],[1,2,2,0]],[[1,2,2,1],[2,0,3,1],[2,2,1,0],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[0,2,0,2],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[0,2,0,1],[3,3,3,2],[1,3,3,1],[0,2,0,0]],[[0,2,0,1],[2,4,3,2],[1,3,3,1],[0,2,0,0]],[[0,2,0,1],[2,3,4,2],[1,3,3,1],[0,2,0,0]],[[0,2,0,1],[2,3,3,3],[1,3,3,1],[0,2,0,0]],[[0,2,0,1],[2,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,0,3,1],[2,2,1,0],[1,2,3,1]],[[1,2,2,1],[2,0,3,1],[2,2,1,0],[1,3,2,1]],[[1,2,2,1],[2,0,3,1],[2,2,1,0],[2,2,2,1]],[[1,2,2,1],[2,0,3,1],[3,2,1,0],[1,2,2,1]],[[1,2,2,1],[2,0,4,1],[2,2,1,0],[1,2,2,1]],[[1,2,2,1],[3,0,3,1],[2,2,1,0],[1,2,2,1]],[[1,2,2,2],[2,0,3,1],[2,2,1,0],[1,2,2,1]],[[1,2,3,1],[2,0,3,1],[2,2,1,0],[1,2,2,1]],[[1,3,2,1],[2,0,3,1],[2,2,1,0],[1,2,2,1]],[[2,2,2,1],[2,0,3,1],[2,2,1,0],[1,2,2,1]],[[1,2,2,1],[2,0,3,1],[2,2,0,2],[1,2,3,0]],[[1,2,2,1],[2,0,3,1],[2,2,0,2],[1,3,2,0]],[[1,2,2,1],[2,0,3,1],[2,2,0,2],[2,2,2,0]],[[1,2,2,1],[2,0,3,1],[3,2,0,2],[1,2,2,0]],[[1,2,2,1],[2,0,4,1],[2,2,0,2],[1,2,2,0]],[[1,2,2,1],[3,0,3,1],[2,2,0,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,1],[2,2,0,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,1],[2,2,0,2],[1,2,2,0]],[[1,3,2,1],[2,0,3,1],[2,2,0,2],[1,2,2,0]],[[2,2,2,1],[2,0,3,1],[2,2,0,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,1],[2,2,0,2],[1,3,1,1]],[[1,2,2,1],[2,0,3,1],[2,2,0,2],[2,2,1,1]],[[1,2,2,1],[2,0,3,1],[3,2,0,2],[1,2,1,1]],[[1,2,2,1],[2,0,4,1],[2,2,0,2],[1,2,1,1]],[[1,2,2,1],[3,0,3,1],[2,2,0,2],[1,2,1,1]],[[1,2,2,2],[2,0,3,1],[2,2,0,2],[1,2,1,1]],[[1,2,3,1],[2,0,3,1],[2,2,0,2],[1,2,1,1]],[[1,3,2,1],[2,0,3,1],[2,2,0,2],[1,2,1,1]],[[0,3,0,1],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[0,2,0,2],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[0,2,0,1],[3,3,3,2],[1,3,3,1],[1,1,0,0]],[[0,2,0,1],[2,4,3,2],[1,3,3,1],[1,1,0,0]],[[0,2,0,1],[2,3,4,2],[1,3,3,1],[1,1,0,0]],[[0,2,0,1],[2,3,3,3],[1,3,3,1],[1,1,0,0]],[[0,2,0,1],[2,3,3,2],[1,4,3,1],[1,1,0,0]],[[2,2,2,1],[2,0,3,1],[2,2,0,2],[1,2,1,1]],[[1,2,2,1],[2,0,3,1],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[2,0,3,1],[3,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,0,4,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[3,0,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,2],[2,0,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,3,1],[2,0,3,1],[2,2,0,2],[1,1,2,1]],[[1,3,2,1],[2,0,3,1],[2,2,0,2],[1,1,2,1]],[[2,2,2,1],[2,0,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,0,3,1],[3,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,0,4,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[3,0,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,0,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,0,3,1],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,0,3,1],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,0,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,0,3,1],[2,2,0,1],[1,2,2,2]],[[1,2,2,1],[2,0,3,1],[2,2,0,1],[1,2,3,1]],[[1,2,2,1],[2,0,3,1],[2,2,0,1],[1,3,2,1]],[[1,2,2,1],[2,0,3,1],[2,2,0,1],[2,2,2,1]],[[1,2,2,1],[2,0,3,1],[3,2,0,1],[1,2,2,1]],[[1,2,2,1],[2,0,4,1],[2,2,0,1],[1,2,2,1]],[[1,2,2,1],[3,0,3,1],[2,2,0,1],[1,2,2,1]],[[1,2,2,2],[2,0,3,1],[2,2,0,1],[1,2,2,1]],[[1,2,3,1],[2,0,3,1],[2,2,0,1],[1,2,2,1]],[[1,3,2,1],[2,0,3,1],[2,2,0,1],[1,2,2,1]],[[2,2,2,1],[2,0,3,1],[2,2,0,1],[1,2,2,1]],[[0,3,0,1],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,0,2],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,0,1],[3,3,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,0,1],[2,4,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,0,1],[2,3,4,2],[1,3,3,2],[0,0,0,1]],[[0,2,0,1],[2,3,3,3],[1,3,3,2],[0,0,0,1]],[[0,2,0,1],[2,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,0,3,1],[2,1,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,1,3,1],[2,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,1,4,1],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[3,1,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,4,1],[2,1,3,1],[1,2,1,0]],[[1,2,2,1],[3,0,3,1],[2,1,3,1],[1,2,1,0]],[[1,2,2,2],[2,0,3,1],[2,1,3,1],[1,2,1,0]],[[1,2,3,1],[2,0,3,1],[2,1,3,1],[1,2,1,0]],[[1,3,2,1],[2,0,3,1],[2,1,3,1],[1,2,1,0]],[[2,2,2,1],[2,0,3,1],[2,1,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,1,3,1],[1,3,0,1]],[[1,2,2,1],[2,0,3,1],[2,1,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,3,1],[2,1,4,1],[1,2,0,1]],[[1,2,2,1],[2,0,3,1],[3,1,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,4,1],[2,1,3,1],[1,2,0,1]],[[1,2,2,1],[3,0,3,1],[2,1,3,1],[1,2,0,1]],[[1,2,2,2],[2,0,3,1],[2,1,3,1],[1,2,0,1]],[[1,2,3,1],[2,0,3,1],[2,1,3,1],[1,2,0,1]],[[1,3,2,1],[2,0,3,1],[2,1,3,1],[1,2,0,1]],[[2,2,2,1],[2,0,3,1],[2,1,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,3,1],[2,1,3,1],[1,1,3,0]],[[1,2,2,1],[2,0,3,1],[2,1,3,1],[2,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,1,4,1],[1,1,2,0]],[[1,2,2,1],[2,0,3,1],[3,1,3,1],[1,1,2,0]],[[1,2,2,1],[2,0,4,1],[2,1,3,1],[1,1,2,0]],[[1,2,2,1],[3,0,3,1],[2,1,3,1],[1,1,2,0]],[[1,2,2,2],[2,0,3,1],[2,1,3,1],[1,1,2,0]],[[1,2,3,1],[2,0,3,1],[2,1,3,1],[1,1,2,0]],[[1,3,2,1],[2,0,3,1],[2,1,3,1],[1,1,2,0]],[[2,2,2,1],[2,0,3,1],[2,1,3,1],[1,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,1,3,1],[2,1,1,1]],[[1,2,2,1],[2,0,3,1],[2,1,4,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[3,1,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,4,1],[2,1,3,1],[1,1,1,1]],[[1,2,2,1],[3,0,3,1],[2,1,3,1],[1,1,1,1]],[[1,2,2,2],[2,0,3,1],[2,1,3,1],[1,1,1,1]],[[1,2,3,1],[2,0,3,1],[2,1,3,1],[1,1,1,1]],[[1,3,2,1],[2,0,3,1],[2,1,3,1],[1,1,1,1]],[[2,2,2,1],[2,0,3,1],[2,1,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[2,1,3,1],[0,2,3,0]],[[1,2,2,1],[2,0,3,1],[2,1,3,1],[0,3,2,0]],[[1,2,2,1],[2,0,3,1],[2,1,4,1],[0,2,2,0]],[[1,2,2,1],[2,0,3,1],[3,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,0,4,1],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[3,0,3,1],[2,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,0,3,1],[2,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,0,3,1],[2,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,0,3,1],[2,1,3,1],[0,2,2,0]],[[2,2,2,1],[2,0,3,1],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,0,3,1],[2,1,4,1],[0,2,1,1]],[[1,2,2,1],[2,0,3,1],[3,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,4,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[3,0,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,0,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,3,1],[2,0,3,1],[2,1,3,1],[0,2,1,1]],[[1,3,2,1],[2,0,3,1],[2,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,0,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,3,1],[2,1,3,0],[1,3,1,1]],[[1,2,2,1],[2,0,3,1],[2,1,3,0],[2,2,1,1]],[[1,2,2,1],[2,0,3,1],[2,1,4,0],[1,2,1,1]],[[1,2,2,1],[2,0,3,1],[3,1,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,4,1],[2,1,3,0],[1,2,1,1]],[[1,2,2,1],[3,0,3,1],[2,1,3,0],[1,2,1,1]],[[1,2,2,2],[2,0,3,1],[2,1,3,0],[1,2,1,1]],[[1,2,3,1],[2,0,3,1],[2,1,3,0],[1,2,1,1]],[[1,3,2,1],[2,0,3,1],[2,1,3,0],[1,2,1,1]],[[2,2,2,1],[2,0,3,1],[2,1,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,3,1],[2,1,3,0],[1,1,2,2]],[[1,2,2,1],[2,0,3,1],[2,1,3,0],[1,1,3,1]],[[1,2,2,1],[2,0,3,1],[2,1,3,0],[2,1,2,1]],[[1,2,2,1],[2,0,3,1],[2,1,4,0],[1,1,2,1]],[[1,2,2,1],[2,0,3,1],[3,1,3,0],[1,1,2,1]],[[1,2,2,1],[2,0,4,1],[2,1,3,0],[1,1,2,1]],[[1,2,2,1],[3,0,3,1],[2,1,3,0],[1,1,2,1]],[[1,2,2,2],[2,0,3,1],[2,1,3,0],[1,1,2,1]],[[1,2,3,1],[2,0,3,1],[2,1,3,0],[1,1,2,1]],[[1,3,2,1],[2,0,3,1],[2,1,3,0],[1,1,2,1]],[[2,2,2,1],[2,0,3,1],[2,1,3,0],[1,1,2,1]],[[1,2,2,1],[2,0,3,1],[2,1,3,0],[0,2,2,2]],[[1,2,2,1],[2,0,3,1],[2,1,3,0],[0,2,3,1]],[[1,2,2,1],[2,0,3,1],[2,1,3,0],[0,3,2,1]],[[1,2,2,1],[2,0,3,1],[2,1,4,0],[0,2,2,1]],[[1,2,2,1],[2,0,3,1],[3,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,0,4,1],[2,1,3,0],[0,2,2,1]],[[1,2,2,1],[3,0,3,1],[2,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,0,3,1],[2,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,0,3,1],[2,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,0,3,1],[2,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,0,3,1],[2,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,0,3,1],[2,1,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,1,2,2],[2,2,1,0]],[[1,2,2,1],[2,0,3,1],[3,1,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,4,1],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[3,0,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,2,2],[2,0,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,3,1],[2,0,3,1],[2,1,2,2],[1,2,1,0]],[[1,3,2,1],[2,0,3,1],[2,1,2,2],[1,2,1,0]],[[2,2,2,1],[2,0,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[2,1,2,2],[1,3,0,1]],[[1,2,2,1],[2,0,3,1],[2,1,2,2],[2,2,0,1]],[[1,2,2,1],[2,0,3,1],[3,1,2,2],[1,2,0,1]],[[1,2,2,1],[2,0,4,1],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[3,0,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,2,2],[2,0,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,3,1],[2,0,3,1],[2,1,2,2],[1,2,0,1]],[[1,3,2,1],[2,0,3,1],[2,1,2,2],[1,2,0,1]],[[2,2,2,1],[2,0,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[2,0,3,1],[2,1,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,3,1],[3,1,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,4,1],[2,1,2,2],[1,1,2,0]],[[1,2,2,1],[3,0,3,1],[2,1,2,2],[1,1,2,0]],[[1,2,2,2],[2,0,3,1],[2,1,2,2],[1,1,2,0]],[[1,2,3,1],[2,0,3,1],[2,1,2,2],[1,1,2,0]],[[1,3,2,1],[2,0,3,1],[2,1,2,2],[1,1,2,0]],[[2,2,2,1],[2,0,3,1],[2,1,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,1,2,2],[2,1,1,1]],[[1,2,2,1],[2,0,3,1],[3,1,2,2],[1,1,1,1]],[[1,2,2,1],[2,0,4,1],[2,1,2,2],[1,1,1,1]],[[1,2,2,1],[3,0,3,1],[2,1,2,2],[1,1,1,1]],[[1,2,2,2],[2,0,3,1],[2,1,2,2],[1,1,1,1]],[[1,2,3,1],[2,0,3,1],[2,1,2,2],[1,1,1,1]],[[1,3,2,1],[2,0,3,1],[2,1,2,2],[1,1,1,1]],[[2,2,2,1],[2,0,3,1],[2,1,2,2],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[3,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,4,1],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[3,0,3,1],[2,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,0,3,1],[2,1,2,2],[0,2,2,0]],[[1,2,3,1],[2,0,3,1],[2,1,2,2],[0,2,2,0]],[[1,3,2,1],[2,0,3,1],[2,1,2,2],[0,2,2,0]],[[2,2,2,1],[2,0,3,1],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,1],[3,1,2,2],[0,2,1,1]],[[1,2,2,1],[2,0,4,1],[2,1,2,2],[0,2,1,1]],[[1,2,2,1],[3,0,3,1],[2,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,0,3,1],[2,1,2,2],[0,2,1,1]],[[0,3,0,1],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[2,0,1,1],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[2,0,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[2,0,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[2,0,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[3,0,1,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,1],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,1],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,1],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,1],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,0,2],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,0,1],[3,3,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,0,1],[2,4,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[2,0,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[2,0,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[3,0,1,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,3],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[0,3,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[0,2,3,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[0,2,2,2]],[[0,3,0,1],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,0,2],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[2,0,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[2,0,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[3,0,1,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,3],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[2,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[1,1,3,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[1,1,2,2]],[[0,3,0,1],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,0,2],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[2,0,1,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[2,0,1,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[3,0,1,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,3],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[2,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[1,3,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[1,2,1,2]],[[0,3,0,1],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,0,2],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,0,1],[3,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,4,2],[2,0,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,3],[2,0,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[3,0,1,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,1,3],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[2,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[1,3,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,1,2],[1,2,3,0]],[[0,3,0,1],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[2,0,2,0],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[2,0,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[2,0,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[2,0,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[3,0,2,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,0],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,0],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,0],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,0],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[0,2,0,2],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[0,2,0,1],[3,3,3,2],[2,0,2,1],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[2,0,2,1],[1,2,2,0]],[[0,2,0,1],[2,3,4,2],[2,0,2,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,3],[2,0,2,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[3,0,2,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,2,1],[2,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,2,1],[1,3,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,2,1],[1,2,3,0]],[[0,3,0,1],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,0,2],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[2,0,2,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[2,0,2,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[3,0,2,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,3],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,2],[0,2,1,2]],[[0,3,0,1],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,0,2],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,0,1],[3,3,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,0,1],[2,4,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,4,2],[2,0,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,3],[2,0,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[3,0,2,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,2,3],[0,2,2,0]],[[0,3,0,1],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[2,0,2,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[2,0,2,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[3,0,2,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,3],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,2],[2,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,2],[1,1,1,2]],[[0,3,0,1],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,0,2],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[2,0,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,3],[2,0,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[3,0,2,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,2,3],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,2,2],[2,1,2,0]],[[0,3,0,1],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,0,2],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,4,2],[2,0,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,3],[2,0,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,0,2,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,3],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,2],[2,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,2],[1,3,0,1]],[[0,2,0,1],[2,3,3,2],[2,0,2,2],[1,2,0,2]],[[0,3,0,1],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,0,2],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,4,2],[2,0,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,3],[2,0,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,0,2,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,0,2,3],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,0,2,2],[2,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,0,2,2],[1,3,1,0]],[[1,2,3,1],[2,0,3,1],[2,1,2,2],[0,2,1,1]],[[1,3,2,1],[2,0,3,1],[2,1,2,2],[0,2,1,1]],[[2,2,2,1],[2,0,3,1],[2,1,2,2],[0,2,1,1]],[[0,3,0,1],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,0,2],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,0,1],[3,3,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,0,1],[2,4,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[2,0,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[2,0,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[3,0,3,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,4,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,0],[0,3,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,0],[0,2,3,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,0],[0,2,2,2]],[[0,3,0,1],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,0,2],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[2,0,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[2,0,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[3,0,3,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,4,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,0],[2,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,0],[1,1,3,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,0],[1,1,2,2]],[[0,3,0,1],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,0,2],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[2,0,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[2,0,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[3,0,3,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,4,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,0],[2,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,0],[1,3,1,1]],[[0,3,0,1],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,0,2],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[2,0,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[2,0,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[3,0,3,1],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,4,1],[0,2,1,1]],[[0,3,0,1],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,0,2],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,0,1],[3,3,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,0,1],[2,4,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,0,1],[2,3,4,2],[2,0,3,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,3],[2,0,3,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[3,0,3,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,4,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,3,1],[0,3,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,3,1],[0,2,3,0]],[[0,3,0,1],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[2,0,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[2,0,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[3,0,3,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,4,1],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,1],[2,1,1,1]],[[0,3,0,1],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,0,2],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[2,0,3,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,3],[2,0,3,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[3,0,3,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,4,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,3,1],[2,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,3,1],[1,1,3,0]],[[0,3,0,1],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,0,2],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,4,2],[2,0,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,3],[2,0,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,0,3,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,0,4,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,1],[2,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,1],[1,3,0,1]],[[0,3,0,1],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,0,2],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,4,2],[2,0,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,3],[2,0,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,0,3,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,0,4,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,0,3,1],[2,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,0,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[2,1,2,1],[1,2,3,0]],[[1,2,2,1],[2,0,3,1],[2,1,2,1],[1,3,2,0]],[[1,2,2,1],[2,0,3,1],[2,1,2,1],[2,2,2,0]],[[1,2,2,1],[2,0,3,1],[3,1,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,4,1],[2,1,2,1],[1,2,2,0]],[[1,2,2,1],[3,0,3,1],[2,1,2,1],[1,2,2,0]],[[1,2,2,2],[2,0,3,1],[2,1,2,1],[1,2,2,0]],[[1,2,3,1],[2,0,3,1],[2,1,2,1],[1,2,2,0]],[[1,3,2,1],[2,0,3,1],[2,1,2,1],[1,2,2,0]],[[2,2,2,1],[2,0,3,1],[2,1,2,1],[1,2,2,0]],[[0,2,0,2],[2,3,3,2],[2,0,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,4,2],[2,0,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,3],[2,0,3,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,3],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,2],[0,0,2,2]],[[0,2,0,2],[2,3,3,2],[2,0,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[2,0,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[2,0,3,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,3],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,2],[0,1,1,2]],[[0,2,0,2],[2,3,3,2],[2,0,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[2,0,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[2,0,3,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[2,1,2,0],[1,2,2,2]],[[1,2,2,1],[2,0,3,1],[2,1,2,0],[1,2,3,1]],[[1,2,2,1],[2,0,3,1],[2,1,2,0],[1,3,2,1]],[[1,2,2,1],[2,0,3,1],[2,1,2,0],[2,2,2,1]],[[1,2,2,1],[2,0,3,1],[3,1,2,0],[1,2,2,1]],[[1,2,2,1],[2,0,4,1],[2,1,2,0],[1,2,2,1]],[[1,2,2,1],[3,0,3,1],[2,1,2,0],[1,2,2,1]],[[1,2,2,2],[2,0,3,1],[2,1,2,0],[1,2,2,1]],[[1,2,3,1],[2,0,3,1],[2,1,2,0],[1,2,2,1]],[[1,3,2,1],[2,0,3,1],[2,1,2,0],[1,2,2,1]],[[2,2,2,1],[2,0,3,1],[2,1,2,0],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[2,0,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,4,2],[2,0,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,3],[2,0,3,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,3],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[2,0,3,2],[1,0,1,2]],[[0,2,0,2],[2,3,3,2],[2,0,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[2,0,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,3],[2,0,3,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[2,1,1,2],[1,2,3,0]],[[1,2,2,1],[2,0,3,1],[2,1,1,2],[1,3,2,0]],[[1,2,2,1],[2,0,3,1],[2,1,1,2],[2,2,2,0]],[[1,2,2,1],[2,0,3,1],[3,1,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,4,1],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[3,0,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,1],[2,1,1,2],[1,2,2,0]],[[1,3,2,1],[2,0,3,1],[2,1,1,2],[1,2,2,0]],[[2,2,2,1],[2,0,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,1],[2,1,1,2],[1,3,1,1]],[[1,2,2,1],[2,0,3,1],[2,1,1,2],[2,2,1,1]],[[1,2,2,1],[2,0,3,1],[3,1,1,2],[1,2,1,1]],[[1,2,2,1],[2,0,4,1],[2,1,1,2],[1,2,1,1]],[[1,2,2,1],[3,0,3,1],[2,1,1,2],[1,2,1,1]],[[1,2,2,2],[2,0,3,1],[2,1,1,2],[1,2,1,1]],[[1,2,3,1],[2,0,3,1],[2,1,1,2],[1,2,1,1]],[[1,3,2,1],[2,0,3,1],[2,1,1,2],[1,2,1,1]],[[2,2,2,1],[2,0,3,1],[2,1,1,2],[1,2,1,1]],[[1,2,2,1],[2,0,3,1],[2,1,1,2],[2,1,2,1]],[[1,2,2,1],[2,0,3,1],[3,1,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,4,1],[2,1,1,2],[1,1,2,1]],[[1,2,2,1],[3,0,3,1],[2,1,1,2],[1,1,2,1]],[[1,2,2,2],[2,0,3,1],[2,1,1,2],[1,1,2,1]],[[1,2,3,1],[2,0,3,1],[2,1,1,2],[1,1,2,1]],[[1,3,2,1],[2,0,3,1],[2,1,1,2],[1,1,2,1]],[[2,2,2,1],[2,0,3,1],[2,1,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,3,1],[3,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,4,1],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[3,0,3,1],[2,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,0,3,1],[2,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,0,3,1],[2,1,1,2],[0,2,2,1]],[[1,3,2,1],[2,0,3,1],[2,1,1,2],[0,2,2,1]],[[2,2,2,1],[2,0,3,1],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,3,1],[2,1,1,1],[1,2,2,2]],[[1,2,2,1],[2,0,3,1],[2,1,1,1],[1,2,3,1]],[[1,2,2,1],[2,0,3,1],[2,1,1,1],[1,3,2,1]],[[1,2,2,1],[2,0,3,1],[2,1,1,1],[2,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[2,1,0,1],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[2,1,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[2,1,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[2,1,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[3,1,0,1],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,1],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,1],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,1],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,1],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,0,2],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,0,1],[3,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,0,1],[2,4,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[2,1,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[2,1,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[3,1,0,2],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,3],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[0,3,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[0,2,3,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[0,2,2,2]],[[0,3,0,1],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[0,2,0,2],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[2,1,0,2],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[2,1,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[2,1,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[2,1,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[3,1,0,2],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,3],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[2,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[1,1,3,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[1,1,2,2]],[[0,3,0,1],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[0,2,0,2],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,1,0,2],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[2,1,0,2],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[2,1,0,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[2,1,0,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[3,1,0,2],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,3],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[2,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[1,3,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[1,2,1,2]],[[0,3,0,1],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[0,2,0,2],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[0,2,0,1],[3,3,3,2],[2,1,0,2],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[2,1,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,4,2],[2,1,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,3],[2,1,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[3,1,0,2],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,0,3],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[2,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[1,3,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,0,2],[1,2,3,0]],[[0,3,0,1],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[0,2,0,2],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[2,1,1,0],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[2,1,1,0],[1,2,2,1]],[[0,2,0,1],[2,3,4,2],[2,1,1,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,3],[2,1,1,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[3,1,1,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,0],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,0],[1,3,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,0],[1,2,3,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,0],[1,2,2,2]],[[0,3,0,1],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[0,2,0,2],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[0,2,0,1],[3,3,3,2],[2,1,1,1],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[2,1,1,1],[1,2,2,0]],[[0,2,0,1],[2,3,4,2],[2,1,1,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,3],[2,1,1,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[3,1,1,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,1,1],[2,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,1,1],[1,3,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,1,1],[1,2,3,0]],[[0,3,0,1],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,0,2],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,0,1],[3,3,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,0,1],[2,4,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,0,1],[2,3,4,2],[2,1,1,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,3],[2,1,1,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[3,1,1,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,3],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,2],[0,1,3,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,2],[0,1,2,2]],[[0,3,0,1],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,0,2],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,0,1],[3,3,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,0,1],[2,4,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,0,1],[2,3,4,2],[2,1,1,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,3],[2,1,1,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[3,1,1,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,3],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,2],[2,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,2],[1,0,3,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,2],[1,0,2,2]],[[0,3,0,1],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[0,2,0,2],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,1,1,2],[1,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,1,1,2],[1,2,0,1]],[[0,2,0,1],[2,3,4,2],[2,1,1,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,3],[2,1,1,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,1,1,2],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,3],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,2],[2,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,2],[1,3,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,1,2],[1,2,0,2]],[[0,3,0,1],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[0,2,0,2],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,1,1,2],[1,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,1,1,2],[1,2,1,0]],[[0,2,0,1],[2,3,4,2],[2,1,1,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,3],[2,1,1,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,1,1,2],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,1,3],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,1,2],[2,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,1,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[3,1,1,1],[1,2,2,1]],[[1,2,2,1],[2,0,4,1],[2,1,1,1],[1,2,2,1]],[[1,2,2,1],[3,0,3,1],[2,1,1,1],[1,2,2,1]],[[1,2,2,2],[2,0,3,1],[2,1,1,1],[1,2,2,1]],[[1,2,3,1],[2,0,3,1],[2,1,1,1],[1,2,2,1]],[[1,3,2,1],[2,0,3,1],[2,1,1,1],[1,2,2,1]],[[2,2,2,1],[2,0,3,1],[2,1,1,1],[1,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[0,2,0,2],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,1,2,0],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[2,1,2,0],[1,2,1,1]],[[0,2,0,1],[2,3,4,2],[2,1,2,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,3],[2,1,2,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[3,1,2,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,0],[2,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,0],[1,3,1,1]],[[0,3,0,1],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[0,2,0,2],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,1,2,1],[1,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,1,2,1],[1,2,0,1]],[[0,2,0,1],[2,3,4,2],[2,1,2,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,3],[2,1,2,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,1,2,1],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,1],[2,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,1],[1,3,0,1]],[[0,3,0,1],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[0,2,0,2],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,1,2,1],[1,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,1,2,1],[1,2,1,0]],[[0,2,0,1],[2,3,4,2],[2,1,2,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,3],[2,1,2,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,1,2,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,2,1],[2,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,2,1],[1,3,1,0]],[[0,3,0,1],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,0,2],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,0,1],[3,3,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,0,1],[2,4,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,0,1],[2,3,4,2],[2,1,2,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,3],[2,1,2,2],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,3],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,2],[0,0,2,2]],[[0,3,0,1],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,0,2],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,0,1],[3,3,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,0,1],[2,4,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[2,1,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[2,1,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[3,1,2,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,3],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,2],[0,1,1,2]],[[0,3,0,1],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,0,2],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,0,1],[3,3,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[2,1,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[2,1,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[3,1,2,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,2,3],[0,1,2,0]],[[0,3,0,1],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,0,2],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,4,2],[2,1,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,3],[2,1,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,1,2,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,3],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,2],[0,2,0,2]],[[0,3,0,1],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,0,2],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[2,1,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,3],[2,1,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,1,2,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,2,3],[0,2,1,0]],[[0,3,0,1],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,0,2],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,0,1],[3,3,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,0,1],[2,4,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,4,2],[2,1,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,3],[2,1,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[3,1,2,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,3],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,2],[2,0,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,2],[1,0,1,2]],[[0,3,0,1],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,0,2],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,0,1],[3,3,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,0,1],[2,4,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[2,1,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,3],[2,1,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[3,1,2,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,2,3],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,2,2],[2,0,2,0]],[[0,3,0,1],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,0,2],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,0,1],[3,3,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,0,1],[2,4,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,4,2],[2,1,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,3],[2,1,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[3,1,2,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,3],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,2],[2,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,2,2],[1,1,0,2]],[[0,3,0,1],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,0,2],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,4,2],[2,1,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,3],[2,1,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[3,1,2,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,2,3],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,2,2],[2,1,1,0]],[[1,2,2,1],[2,0,4,1],[1,3,3,2],[1,0,0,1]],[[1,2,2,1],[3,0,3,1],[1,3,3,2],[1,0,0,1]],[[1,2,2,2],[2,0,3,1],[1,3,3,2],[1,0,0,1]],[[1,2,3,1],[2,0,3,1],[1,3,3,2],[1,0,0,1]],[[1,3,2,1],[2,0,3,1],[1,3,3,2],[1,0,0,1]],[[2,2,2,1],[2,0,3,1],[1,3,3,2],[1,0,0,1]],[[0,3,0,1],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,0,2],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,0,1],[3,3,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,0,1],[2,4,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,4,2],[2,1,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,3],[2,1,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[3,1,3,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,4,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,3,0],[0,1,3,1]],[[0,2,0,1],[2,3,3,2],[2,1,3,0],[0,1,2,2]],[[0,3,0,1],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,0,2],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[2,1,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[2,1,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[3,1,3,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,4,0],[0,2,1,1]],[[0,3,0,1],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,0,2],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,0,1],[3,3,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,0,1],[2,4,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,4,2],[2,1,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,3],[2,1,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[3,1,3,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,4,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,3,0],[2,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,3,0],[1,0,3,1]],[[0,2,0,1],[2,3,3,2],[2,1,3,0],[1,0,2,2]],[[0,3,0,1],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[2,1,3,0],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[2,1,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[2,1,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[2,1,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[3,1,3,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,4,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,3,0],[2,1,1,1]],[[0,3,0,1],[2,3,3,2],[2,1,3,0],[1,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,1,3,0],[1,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,1,3,0],[1,2,1,0]],[[0,2,0,1],[2,3,4,2],[2,1,3,0],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,1,3,0],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,3,0],[2,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,3,0],[1,3,1,0]],[[0,3,0,1],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,0,2],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,0,1],[3,3,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,0,1],[2,4,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,4,2],[2,1,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,3,3],[2,1,3,1],[0,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,1,4,1],[0,0,2,1]],[[0,3,0,1],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,0,2],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,0,1],[3,3,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,0,1],[2,4,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[2,1,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[2,1,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[3,1,3,1],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,4,1],[0,1,1,1]],[[0,3,0,1],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,0,2],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,0,1],[3,3,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[2,1,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[2,1,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[3,1,3,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,4,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,3,1],[0,1,3,0]],[[0,3,0,1],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,0,2],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,4,2],[2,1,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,3],[2,1,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,1,3,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,4,1],[0,2,0,1]],[[0,3,0,1],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,0,2],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[2,1,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,3],[2,1,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,1,3,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,2,1],[2,0,4,1],[1,3,3,2],[0,1,0,1]],[[1,2,2,1],[3,0,3,1],[1,3,3,2],[0,1,0,1]],[[1,2,2,2],[2,0,3,1],[1,3,3,2],[0,1,0,1]],[[0,3,0,1],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,0,2],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,0,1],[3,3,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,0,1],[2,4,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,4,2],[2,1,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,3],[2,1,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[3,1,3,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,4,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[2,1,3,1],[2,0,1,1]],[[0,3,0,1],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,0,2],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,0,1],[3,3,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,0,1],[2,4,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[2,1,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,3],[2,1,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[3,1,3,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,4,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,3,1],[2,0,2,0]],[[0,2,0,1],[2,3,3,2],[2,1,3,1],[1,0,3,0]],[[0,3,0,1],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,0,2],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,0,1],[3,3,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,0,1],[2,4,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,4,2],[2,1,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,3],[2,1,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[3,1,3,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,4,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,3,1],[2,1,0,1]],[[0,3,0,1],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,0,2],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,4,2],[2,1,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,3],[2,1,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[3,1,3,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,4,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[2,1,3,1],[2,1,1,0]],[[1,2,3,1],[2,0,3,1],[1,3,3,2],[0,1,0,1]],[[1,3,2,1],[2,0,3,1],[1,3,3,2],[0,1,0,1]],[[2,2,2,1],[2,0,3,1],[1,3,3,2],[0,1,0,1]],[[0,3,0,1],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,0,2],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,0,1],[3,3,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,0,1],[2,4,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,0,1],[2,3,4,2],[2,1,3,2],[0,1,0,1]],[[0,2,0,1],[2,3,3,3],[2,1,3,2],[0,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,1],[2,0,3,1],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[1,4,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,4,1],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[3,0,3,1],[1,3,3,1],[1,1,1,0]],[[1,2,2,2],[2,0,3,1],[1,3,3,1],[1,1,1,0]],[[1,2,3,1],[2,0,3,1],[1,3,3,1],[1,1,1,0]],[[1,3,2,1],[2,0,3,1],[1,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,0,3,1],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,3,1],[1,3,4,1],[1,1,0,1]],[[1,2,2,1],[2,0,3,1],[1,4,3,1],[1,1,0,1]],[[1,2,2,1],[2,0,4,1],[1,3,3,1],[1,1,0,1]],[[1,2,2,1],[3,0,3,1],[1,3,3,1],[1,1,0,1]],[[1,2,2,2],[2,0,3,1],[1,3,3,1],[1,1,0,1]],[[1,2,3,1],[2,0,3,1],[1,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,0,3,1],[1,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,0,3,1],[1,3,3,1],[1,1,0,1]],[[1,2,2,1],[2,0,3,1],[1,3,3,1],[1,0,3,0]],[[1,2,2,1],[2,0,3,1],[1,3,4,1],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[1,4,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,4,1],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[3,0,3,1],[1,3,3,1],[1,0,2,0]],[[1,2,2,2],[2,0,3,1],[1,3,3,1],[1,0,2,0]],[[1,2,3,1],[2,0,3,1],[1,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,0,3,1],[1,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,0,3,1],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,3,1],[1,3,4,1],[1,0,1,1]],[[1,2,2,1],[2,0,3,1],[1,4,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,4,1],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[3,0,3,1],[1,3,3,1],[1,0,1,1]],[[0,3,0,1],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,0,2],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,0,1],[3,3,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,0,1],[2,4,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,0,1],[2,3,4,2],[2,1,3,2],[1,0,0,1]],[[0,2,0,1],[2,3,3,3],[2,1,3,2],[1,0,0,1]],[[0,2,0,1],[2,3,3,2],[3,1,3,2],[1,0,0,1]],[[0,2,0,1],[2,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,2],[2,0,3,1],[1,3,3,1],[1,0,1,1]],[[1,2,3,1],[2,0,3,1],[1,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,0,3,1],[1,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,0,3,1],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,3,1],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,0,3,1],[1,3,4,1],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[1,4,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,4,1],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[3,0,3,1],[1,3,3,1],[0,2,1,0]],[[1,2,2,2],[2,0,3,1],[1,3,3,1],[0,2,1,0]],[[1,2,3,1],[2,0,3,1],[1,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,0,3,1],[1,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,0,3,1],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[1,3,3,1],[0,3,0,1]],[[1,2,2,1],[2,0,3,1],[1,3,4,1],[0,2,0,1]],[[1,2,2,1],[2,0,3,1],[1,4,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,4,1],[1,3,3,1],[0,2,0,1]],[[1,2,2,1],[3,0,3,1],[1,3,3,1],[0,2,0,1]],[[1,2,2,2],[2,0,3,1],[1,3,3,1],[0,2,0,1]],[[1,2,3,1],[2,0,3,1],[1,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,0,3,1],[1,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,0,3,1],[1,3,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,3,1],[1,3,3,1],[0,1,3,0]],[[1,2,2,1],[2,0,3,1],[1,3,4,1],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[1,4,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,4,1],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[3,0,3,1],[1,3,3,1],[0,1,2,0]],[[1,2,2,2],[2,0,3,1],[1,3,3,1],[0,1,2,0]],[[1,2,3,1],[2,0,3,1],[1,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,0,3,1],[1,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,0,3,1],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,3,1],[1,3,4,1],[0,1,1,1]],[[1,2,2,1],[2,0,3,1],[1,4,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,4,1],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[3,0,3,1],[1,3,3,1],[0,1,1,1]],[[1,2,2,2],[2,0,3,1],[1,3,3,1],[0,1,1,1]],[[1,2,3,1],[2,0,3,1],[1,3,3,1],[0,1,1,1]],[[1,3,2,1],[2,0,3,1],[1,3,3,1],[0,1,1,1]],[[2,2,2,1],[2,0,3,1],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,2,1],[2,0,4,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[3,0,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,2],[2,0,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,3,1],[2,0,3,1],[1,3,3,1],[0,0,2,1]],[[1,3,2,1],[2,0,3,1],[1,3,3,1],[0,0,2,1]],[[2,2,2,1],[2,0,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[2,0,3,1],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[1,3,3,0],[2,2,1,0]],[[1,2,2,1],[2,0,3,1],[1,4,3,0],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[1,3,4,0],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[1,4,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,4,1],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[3,0,3,1],[1,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,0,3,1],[1,3,3,0],[1,1,1,1]],[[0,3,0,1],[2,3,3,2],[2,2,0,0],[1,2,2,1]],[[0,2,0,1],[3,3,3,2],[2,2,0,0],[1,2,2,1]],[[0,2,0,1],[2,4,3,2],[2,2,0,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[3,2,0,0],[1,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,0],[2,2,2,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,0],[1,3,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[0,2,0,2],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[0,2,0,1],[3,3,3,2],[2,2,0,1],[0,2,2,1]],[[0,2,0,1],[2,4,3,2],[2,2,0,1],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[2,2,0,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[2,2,0,1],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[3,2,0,1],[0,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[0,2,0,2],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[2,2,0,1],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[2,2,0,1],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[2,2,0,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[2,2,0,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[3,2,0,1],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,1],[2,1,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,0,1],[1,2,2,0]],[[0,2,0,1],[3,3,3,2],[2,2,0,1],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[2,2,0,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[3,2,0,1],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,2,0,1],[2,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,2,0,1],[1,3,2,0]],[[0,3,0,1],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,0,2],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,0,1],[3,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,0,1],[2,4,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,0,1],[2,3,4,2],[2,2,0,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,3],[2,2,0,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[3,2,0,2],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,3],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,2],[0,1,3,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,2],[0,1,2,2]],[[0,3,0,1],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[0,2,0,2],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,2,0,2],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[2,2,0,2],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[2,2,0,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[2,2,0,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[3,2,0,2],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,3],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,2],[0,2,1,2]],[[0,3,0,1],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[0,2,0,2],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[0,2,0,1],[3,3,3,2],[2,2,0,2],[0,2,2,0]],[[0,2,0,1],[2,4,3,2],[2,2,0,2],[0,2,2,0]],[[0,2,0,1],[2,3,4,2],[2,2,0,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,3],[2,2,0,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[3,2,0,2],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,2,0,3],[0,2,2,0]],[[0,3,0,1],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,0,2],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,0,1],[3,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,0,1],[2,4,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,0,1],[2,3,4,2],[2,2,0,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,3],[2,2,0,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[3,2,0,2],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,3],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,2],[2,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,2],[1,0,3,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,2],[1,0,2,2]],[[0,3,0,1],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[2,2,0,2],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[2,2,0,2],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[2,2,0,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[2,2,0,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[3,2,0,2],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,3],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,2],[2,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,0,2],[1,1,1,2]],[[0,3,0,1],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[0,2,0,2],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[2,2,0,2],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[2,2,0,2],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[2,2,0,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,3],[2,2,0,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[3,2,0,2],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,2,0,3],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,2,0,2],[2,1,2,0]],[[1,2,3,1],[2,0,3,1],[1,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,0,3,1],[1,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,0,3,1],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[1,3,3,0],[1,0,2,2]],[[1,2,2,1],[2,0,3,1],[1,3,3,0],[1,0,3,1]],[[1,2,2,1],[2,0,3,1],[1,3,4,0],[1,0,2,1]],[[1,2,2,1],[2,0,3,1],[1,4,3,0],[1,0,2,1]],[[1,2,2,1],[2,0,4,1],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[3,0,3,1],[1,3,3,0],[1,0,2,1]],[[1,2,2,2],[2,0,3,1],[1,3,3,0],[1,0,2,1]],[[1,2,3,1],[2,0,3,1],[1,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,0,3,1],[1,3,3,0],[1,0,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[0,2,0,2],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[0,2,0,1],[3,3,3,2],[2,2,1,0],[0,2,2,1]],[[0,2,0,1],[2,4,3,2],[2,2,1,0],[0,2,2,1]],[[0,2,0,1],[2,3,4,2],[2,2,1,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,3],[2,2,1,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[3,2,1,0],[0,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[0,2,0,2],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[2,2,1,0],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[2,2,1,0],[1,1,2,1]],[[0,2,0,1],[2,3,4,2],[2,2,1,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,3],[2,2,1,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[3,2,1,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,2,1,0],[2,1,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[0,2,0,2],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[0,2,0,1],[3,3,3,2],[2,2,1,1],[0,2,2,0]],[[0,2,0,1],[2,4,3,2],[2,2,1,1],[0,2,2,0]],[[0,2,0,1],[2,3,4,2],[2,2,1,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,3],[2,2,1,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[3,2,1,1],[0,2,2,0]],[[0,3,0,1],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[0,2,0,2],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[2,2,1,1],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[2,2,1,1],[1,1,2,0]],[[0,2,0,1],[2,3,4,2],[2,2,1,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,3],[2,2,1,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[3,2,1,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,2,1,1],[2,1,2,0]],[[2,2,2,1],[2,0,3,1],[1,3,3,0],[1,0,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,0,2],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,0,1],[3,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,0,1],[2,4,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[2,2,1,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[2,2,1,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[3,2,1,2],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,1,3],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,1,2],[0,1,1,2]],[[0,3,0,1],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,0,2],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,0,1],[3,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[2,2,1,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[2,2,1,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[3,2,1,2],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,2,1,3],[0,1,2,0]],[[0,3,0,1],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,0,2],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,0,1],[2,3,4,2],[2,2,1,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,3],[2,2,1,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,2,1,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,2,1,3],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,2,1,2],[0,2,0,2]],[[0,3,0,1],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,0,2],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[2,2,1,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,3],[2,2,1,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,2,1,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,2,1,3],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[1,3,3,0],[0,3,1,1]],[[1,2,2,1],[2,0,3,1],[1,3,4,0],[0,2,1,1]],[[1,2,2,1],[2,0,3,1],[1,4,3,0],[0,2,1,1]],[[1,2,2,1],[2,0,4,1],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[3,0,3,1],[1,3,3,0],[0,2,1,1]],[[1,2,2,2],[2,0,3,1],[1,3,3,0],[0,2,1,1]],[[1,2,3,1],[2,0,3,1],[1,3,3,0],[0,2,1,1]],[[1,3,2,1],[2,0,3,1],[1,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,0,3,1],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,0,3,1],[1,3,3,0],[0,1,2,2]],[[0,3,0,1],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,0,2],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,0,1],[3,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,0,1],[2,4,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,0,1],[2,3,4,2],[2,2,1,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,3],[2,2,1,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[3,2,1,2],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,1,3],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,1,2],[2,0,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,1,2],[1,0,1,2]],[[0,3,0,1],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,0,2],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,0,1],[3,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,0,1],[2,4,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[2,2,1,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,3],[2,2,1,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[3,2,1,2],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[2,2,1,3],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[2,2,1,2],[2,0,2,0]],[[0,3,0,1],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,0,2],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,0,1],[3,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,0,1],[2,4,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,0,1],[2,3,4,2],[2,2,1,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,3],[2,2,1,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[3,2,1,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,2,1,3],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,2,1,2],[2,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,2,1,2],[1,1,0,2]],[[0,3,0,1],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,0,2],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,0,1],[2,3,4,2],[2,2,1,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,3],[2,2,1,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[3,2,1,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[2,2,1,3],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[2,2,1,2],[2,1,1,0]],[[1,2,2,1],[2,0,3,1],[1,3,3,0],[0,1,3,1]],[[1,2,2,1],[2,0,3,1],[1,3,4,0],[0,1,2,1]],[[1,2,2,1],[2,0,3,1],[1,4,3,0],[0,1,2,1]],[[1,2,2,1],[2,0,4,1],[1,3,3,0],[0,1,2,1]],[[1,2,2,1],[3,0,3,1],[1,3,3,0],[0,1,2,1]],[[1,2,2,2],[2,0,3,1],[1,3,3,0],[0,1,2,1]],[[1,2,3,1],[2,0,3,1],[1,3,3,0],[0,1,2,1]],[[1,3,2,1],[2,0,3,1],[1,3,3,0],[0,1,2,1]],[[2,2,2,1],[2,0,3,1],[1,3,3,0],[0,1,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[0,2,0,2],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[0,2,0,1],[3,3,3,2],[2,2,1,2],[1,2,0,0]],[[0,2,0,1],[2,4,3,2],[2,2,1,2],[1,2,0,0]],[[0,2,0,1],[2,3,4,2],[2,2,1,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,3],[2,2,1,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[3,2,1,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,1],[2,0,4,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[3,0,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,0,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,3,1],[2,0,3,1],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,0,3,1],[1,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,0,3,1],[1,3,2,2],[1,1,1,0]],[[0,3,0,1],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[0,2,0,2],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[0,2,0,1],[3,3,3,2],[2,2,2,0],[0,1,2,1]],[[0,2,0,1],[2,4,3,2],[2,2,2,0],[0,1,2,1]],[[0,2,0,1],[2,3,4,2],[2,2,2,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,3],[2,2,2,0],[0,1,2,1]],[[0,2,0,1],[2,3,3,2],[3,2,2,0],[0,1,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[0,2,0,2],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,2,2,0],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[2,2,2,0],[0,2,1,1]],[[0,2,0,1],[2,3,4,2],[2,2,2,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,3],[2,2,2,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[3,2,2,0],[0,2,1,1]],[[0,3,0,1],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[0,2,0,2],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[0,2,0,1],[3,3,3,2],[2,2,2,0],[1,0,2,1]],[[0,2,0,1],[2,4,3,2],[2,2,2,0],[1,0,2,1]],[[0,2,0,1],[2,3,4,2],[2,2,2,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,3],[2,2,2,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[3,2,2,0],[1,0,2,1]],[[0,2,0,1],[2,3,3,2],[2,2,2,0],[2,0,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[0,2,0,2],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[2,2,2,0],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[2,2,2,0],[1,1,1,1]],[[0,2,0,1],[2,3,4,2],[2,2,2,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,3],[2,2,2,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[3,2,2,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,2,0],[2,1,1,1]],[[0,3,0,1],[2,3,3,2],[2,2,2,0],[1,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,2,2,0],[1,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,2,2,0],[1,2,0,1]],[[0,2,0,1],[2,3,4,2],[2,2,2,0],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,2,2,0],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,2,2,0],[2,2,0,1]],[[1,2,2,1],[2,0,4,1],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[3,0,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,0,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,0,3,1],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,0,3,1],[1,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,0,3,1],[1,3,2,2],[1,1,0,1]],[[0,3,0,1],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[0,2,0,2],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[0,2,0,1],[3,3,3,2],[2,2,2,1],[0,1,1,1]],[[0,2,0,1],[2,4,3,2],[2,2,2,1],[0,1,1,1]],[[0,2,0,1],[2,3,4,2],[2,2,2,1],[0,1,1,1]],[[0,2,0,1],[2,3,3,3],[2,2,2,1],[0,1,1,1]],[[0,2,0,1],[2,3,3,2],[3,2,2,1],[0,1,1,1]],[[0,3,0,1],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[0,2,0,2],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[0,2,0,1],[3,3,3,2],[2,2,2,1],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[2,2,2,1],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[2,2,2,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,3],[2,2,2,1],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[3,2,2,1],[0,1,2,0]],[[0,3,0,1],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[0,2,0,2],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,2,2,1],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,2,2,1],[0,2,0,1]],[[0,2,0,1],[2,3,4,2],[2,2,2,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,3],[2,2,2,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,2,2,1],[0,2,0,1]],[[0,3,0,1],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[0,2,0,2],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,2,2,1],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,2,2,1],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[2,2,2,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,3],[2,2,2,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,2,2,1],[0,2,1,0]],[[1,2,2,1],[2,0,4,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[3,0,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,0,3,1],[1,3,2,2],[1,0,2,0]],[[0,3,0,1],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[0,2,0,2],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[0,2,0,1],[3,3,3,2],[2,2,2,1],[1,0,1,1]],[[0,2,0,1],[2,4,3,2],[2,2,2,1],[1,0,1,1]],[[0,2,0,1],[2,3,4,2],[2,2,2,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,3],[2,2,2,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[3,2,2,1],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[2,2,2,1],[2,0,1,1]],[[0,3,0,1],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[0,2,0,2],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[0,2,0,1],[3,3,3,2],[2,2,2,1],[1,0,2,0]],[[0,2,0,1],[2,4,3,2],[2,2,2,1],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[2,2,2,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,3],[2,2,2,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[3,2,2,1],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[2,2,2,1],[2,0,2,0]],[[0,3,0,1],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[0,2,0,2],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[0,2,0,1],[3,3,3,2],[2,2,2,1],[1,1,0,1]],[[0,2,0,1],[2,4,3,2],[2,2,2,1],[1,1,0,1]],[[0,2,0,1],[2,3,4,2],[2,2,2,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,3],[2,2,2,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[3,2,2,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,2,2,1],[2,1,0,1]],[[0,3,0,1],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[0,2,0,2],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[2,2,2,1],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[2,2,2,1],[1,1,1,0]],[[0,2,0,1],[2,3,4,2],[2,2,2,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,3],[2,2,2,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[3,2,2,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[2,2,2,1],[2,1,1,0]],[[1,2,3,1],[2,0,3,1],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,0,3,1],[1,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,0,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,4,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[3,0,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,0,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[2,0,3,1],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,0,3,1],[1,3,2,2],[1,0,1,1]],[[0,3,0,1],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[0,2,0,2],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[0,2,0,1],[3,3,3,2],[2,2,2,1],[1,2,0,0]],[[0,2,0,1],[2,4,3,2],[2,2,2,1],[1,2,0,0]],[[0,2,0,1],[2,3,4,2],[2,2,2,1],[1,2,0,0]],[[0,2,0,1],[2,3,3,3],[2,2,2,1],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[3,2,2,1],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[2,2,2,1],[2,2,0,0]],[[2,2,2,1],[2,0,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[2,0,4,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[3,0,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,0,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,0,3,1],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,0,3,1],[1,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,0,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,4,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[3,0,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,0,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[2,0,3,1],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,0,3,1],[1,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,0,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,4,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[3,0,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,2],[2,0,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,0,3,1],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,0,3,1],[1,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,0,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,4,1],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,0,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,0,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,0,3,1],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,0,3,1],[1,3,2,2],[0,1,1,1]],[[2,2,2,1],[2,0,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,4,1],[1,3,2,2],[0,0,2,1]],[[1,2,2,1],[3,0,3,1],[1,3,2,2],[0,0,2,1]],[[1,2,2,2],[2,0,3,1],[1,3,2,2],[0,0,2,1]],[[1,2,3,1],[2,0,3,1],[1,3,2,2],[0,0,2,1]],[[1,3,2,1],[2,0,3,1],[1,3,2,2],[0,0,2,1]],[[2,2,2,1],[2,0,3,1],[1,3,2,2],[0,0,2,1]],[[1,2,2,1],[2,0,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[1,3,2,1],[2,2,1,0]],[[1,2,2,1],[2,0,3,1],[1,4,2,1],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[1,3,2,1],[1,3,0,1]],[[1,2,2,1],[2,0,3,1],[1,3,2,1],[2,2,0,1]],[[1,2,2,1],[2,0,3,1],[1,4,2,1],[1,2,0,1]],[[1,2,2,1],[2,0,3,1],[1,3,2,1],[0,2,3,0]],[[1,2,2,1],[2,0,3,1],[1,3,2,1],[0,3,2,0]],[[1,2,2,1],[2,0,3,1],[1,4,2,1],[0,2,2,0]],[[1,2,2,1],[2,0,3,1],[1,3,2,0],[1,3,1,1]],[[1,2,2,1],[2,0,3,1],[1,3,2,0],[2,2,1,1]],[[1,2,2,1],[2,0,3,1],[1,4,2,0],[1,2,1,1]],[[1,2,2,1],[2,0,3,1],[1,3,2,0],[0,2,2,2]],[[1,2,2,1],[2,0,3,1],[1,3,2,0],[0,2,3,1]],[[1,2,2,1],[2,0,3,1],[1,3,2,0],[0,3,2,1]],[[1,2,2,1],[2,0,3,1],[1,4,2,0],[0,2,2,1]],[[1,2,2,1],[2,0,3,1],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[1,3,1,2],[2,2,1,0]],[[1,2,2,1],[2,0,3,1],[1,4,1,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[1,3,1,2],[1,3,0,1]],[[1,2,2,1],[2,0,3,1],[1,3,1,2],[2,2,0,1]],[[1,2,2,1],[2,0,3,1],[1,4,1,2],[1,2,0,1]],[[1,2,2,1],[2,0,4,1],[1,3,1,2],[1,0,2,1]],[[1,2,2,1],[3,0,3,1],[1,3,1,2],[1,0,2,1]],[[1,2,2,2],[2,0,3,1],[1,3,1,2],[1,0,2,1]],[[1,2,3,1],[2,0,3,1],[1,3,1,2],[1,0,2,1]],[[1,3,2,1],[2,0,3,1],[1,3,1,2],[1,0,2,1]],[[2,2,2,1],[2,0,3,1],[1,3,1,2],[1,0,2,1]],[[1,2,2,1],[2,0,4,1],[1,3,1,2],[0,1,2,1]],[[1,2,2,1],[3,0,3,1],[1,3,1,2],[0,1,2,1]],[[1,2,2,2],[2,0,3,1],[1,3,1,2],[0,1,2,1]],[[1,2,3,1],[2,0,3,1],[1,3,1,2],[0,1,2,1]],[[1,3,2,1],[2,0,3,1],[1,3,1,2],[0,1,2,1]],[[2,2,2,1],[2,0,3,1],[1,3,1,2],[0,1,2,1]],[[1,2,2,1],[2,0,3,1],[1,3,1,1],[1,2,3,0]],[[1,2,2,1],[2,0,3,1],[1,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,0,3,1],[1,3,1,1],[2,2,2,0]],[[1,2,2,1],[2,0,3,1],[1,4,1,1],[1,2,2,0]],[[1,2,2,1],[2,0,3,1],[1,3,1,0],[1,2,2,2]],[[1,2,2,1],[2,0,3,1],[1,3,1,0],[1,2,3,1]],[[1,2,2,1],[2,0,3,1],[1,3,1,0],[1,3,2,1]],[[1,2,2,1],[2,0,3,1],[1,3,1,0],[2,2,2,1]],[[1,2,2,1],[2,0,3,1],[1,4,1,0],[1,2,2,1]],[[1,2,2,1],[2,0,3,1],[1,3,0,2],[1,2,3,0]],[[1,2,2,1],[2,0,3,1],[1,3,0,2],[1,3,2,0]],[[1,2,2,1],[2,0,3,1],[1,3,0,2],[2,2,2,0]],[[1,2,2,1],[2,0,3,1],[1,4,0,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,1],[1,3,0,2],[1,3,1,1]],[[1,2,2,1],[2,0,3,1],[1,3,0,2],[2,2,1,1]],[[1,2,2,1],[2,0,3,1],[1,4,0,2],[1,2,1,1]],[[1,2,2,1],[2,0,4,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,0,3,1],[1,3,0,2],[0,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,0,1],[3,3,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,0,1],[2,4,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,0,1],[2,3,4,2],[2,2,3,0],[0,1,2,0]],[[0,2,0,1],[2,3,3,2],[3,2,3,0],[0,1,2,0]],[[0,3,0,1],[2,3,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,0,1],[2,3,4,2],[2,2,3,0],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,2,3,0],[0,2,1,0]],[[1,2,2,2],[2,0,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,0,3,1],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,0,3,1],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,0,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[2,0,3,1],[1,3,0,1],[1,2,2,2]],[[1,2,2,1],[2,0,3,1],[1,3,0,1],[1,2,3,1]],[[1,2,2,1],[2,0,3,1],[1,3,0,1],[1,3,2,1]],[[1,2,2,1],[2,0,3,1],[1,3,0,1],[2,2,2,1]],[[1,2,2,1],[2,0,3,1],[1,4,0,1],[1,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,0,1],[3,3,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,0,1],[2,4,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,0,1],[2,3,4,2],[2,2,3,0],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[3,2,3,0],[1,0,2,0]],[[0,2,0,1],[2,3,3,2],[2,2,3,0],[2,0,2,0]],[[0,3,0,1],[2,3,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,0,1],[2,3,4,2],[2,2,3,0],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[3,2,3,0],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[2,2,3,0],[2,1,1,0]],[[0,3,0,1],[2,3,3,2],[2,2,3,0],[1,2,0,0]],[[0,2,0,1],[3,3,3,2],[2,2,3,0],[1,2,0,0]],[[0,2,0,1],[2,4,3,2],[2,2,3,0],[1,2,0,0]],[[0,2,0,1],[2,3,4,2],[2,2,3,0],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[3,2,3,0],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[2,2,3,0],[2,2,0,0]],[[1,2,2,1],[2,0,3,1],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,0,3,1],[1,2,3,1],[0,3,2,0]],[[1,2,2,1],[2,0,3,1],[1,2,4,1],[0,2,2,0]],[[1,2,2,1],[2,0,4,1],[1,2,3,1],[0,2,2,0]],[[1,2,2,1],[3,0,3,1],[1,2,3,1],[0,2,2,0]],[[1,2,2,2],[2,0,3,1],[1,2,3,1],[0,2,2,0]],[[0,3,0,1],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[0,2,0,2],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[0,2,0,1],[3,3,3,2],[2,2,3,1],[0,2,0,0]],[[0,2,0,1],[2,4,3,2],[2,2,3,1],[0,2,0,0]],[[0,2,0,1],[2,3,4,2],[2,2,3,1],[0,2,0,0]],[[0,2,0,1],[2,3,3,3],[2,2,3,1],[0,2,0,0]],[[0,2,0,1],[2,3,3,2],[3,2,3,1],[0,2,0,0]],[[1,2,3,1],[2,0,3,1],[1,2,3,1],[0,2,2,0]],[[1,3,2,1],[2,0,3,1],[1,2,3,1],[0,2,2,0]],[[2,2,2,1],[2,0,3,1],[1,2,3,1],[0,2,2,0]],[[1,2,2,1],[2,0,3,1],[1,2,4,1],[0,2,1,1]],[[1,2,2,1],[2,0,4,1],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[3,0,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,2,2],[2,0,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,3,1],[2,0,3,1],[1,2,3,1],[0,2,1,1]],[[1,3,2,1],[2,0,3,1],[1,2,3,1],[0,2,1,1]],[[2,2,2,1],[2,0,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,3,1],[1,2,3,0],[0,2,2,2]],[[1,2,2,1],[2,0,3,1],[1,2,3,0],[0,2,3,1]],[[1,2,2,1],[2,0,3,1],[1,2,3,0],[0,3,2,1]],[[1,2,2,1],[2,0,3,1],[1,2,4,0],[0,2,2,1]],[[1,2,2,1],[2,0,4,1],[1,2,3,0],[0,2,2,1]],[[1,2,2,1],[3,0,3,1],[1,2,3,0],[0,2,2,1]],[[1,2,2,2],[2,0,3,1],[1,2,3,0],[0,2,2,1]],[[1,2,3,1],[2,0,3,1],[1,2,3,0],[0,2,2,1]],[[1,3,2,1],[2,0,3,1],[1,2,3,0],[0,2,2,1]],[[2,2,2,1],[2,0,3,1],[1,2,3,0],[0,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[0,2,0,2],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[0,2,0,1],[3,3,3,2],[2,2,3,1],[1,1,0,0]],[[0,2,0,1],[2,4,3,2],[2,2,3,1],[1,1,0,0]],[[0,2,0,1],[2,3,4,2],[2,2,3,1],[1,1,0,0]],[[0,2,0,1],[2,3,3,3],[2,2,3,1],[1,1,0,0]],[[0,2,0,1],[2,3,3,2],[3,2,3,1],[1,1,0,0]],[[0,2,0,1],[2,3,3,2],[2,2,3,1],[2,1,0,0]],[[1,2,2,1],[2,0,4,1],[1,2,2,2],[0,2,2,0]],[[1,2,2,1],[3,0,3,1],[1,2,2,2],[0,2,2,0]],[[1,2,2,2],[2,0,3,1],[1,2,2,2],[0,2,2,0]],[[1,2,3,1],[2,0,3,1],[1,2,2,2],[0,2,2,0]],[[1,3,2,1],[2,0,3,1],[1,2,2,2],[0,2,2,0]],[[2,2,2,1],[2,0,3,1],[1,2,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,4,1],[1,2,2,2],[0,2,1,1]],[[1,2,2,1],[3,0,3,1],[1,2,2,2],[0,2,1,1]],[[1,2,2,2],[2,0,3,1],[1,2,2,2],[0,2,1,1]],[[1,2,3,1],[2,0,3,1],[1,2,2,2],[0,2,1,1]],[[1,3,2,1],[2,0,3,1],[1,2,2,2],[0,2,1,1]],[[2,2,2,1],[2,0,3,1],[1,2,2,2],[0,2,1,1]],[[1,2,2,1],[2,0,4,1],[1,2,1,2],[0,2,2,1]],[[1,2,2,1],[3,0,3,1],[1,2,1,2],[0,2,2,1]],[[1,2,2,2],[2,0,3,1],[1,2,1,2],[0,2,2,1]],[[1,2,3,1],[2,0,3,1],[1,2,1,2],[0,2,2,1]],[[1,3,2,1],[2,0,3,1],[1,2,1,2],[0,2,2,1]],[[2,2,2,1],[2,0,3,1],[1,2,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,4,1],[1,2,0,2],[1,2,2,1]],[[1,2,2,1],[3,0,3,1],[1,2,0,2],[1,2,2,1]],[[1,2,2,2],[2,0,3,1],[1,2,0,2],[1,2,2,1]],[[1,2,3,1],[2,0,3,1],[1,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,0,3,1],[1,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,0,3,1],[1,2,0,2],[1,2,2,1]],[[1,2,2,1],[2,0,3,1],[1,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,3,1],[1,1,3,1],[1,3,2,0]],[[1,2,2,1],[2,0,3,1],[1,1,3,1],[2,2,2,0]],[[1,2,2,1],[2,0,3,1],[1,1,4,1],[1,2,2,0]],[[1,2,2,1],[2,0,4,1],[1,1,3,1],[1,2,2,0]],[[1,2,2,1],[3,0,3,1],[1,1,3,1],[1,2,2,0]],[[1,2,2,2],[2,0,3,1],[1,1,3,1],[1,2,2,0]],[[1,2,3,1],[2,0,3,1],[1,1,3,1],[1,2,2,0]],[[1,3,2,1],[2,0,3,1],[1,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,0,3,1],[1,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,0,3,1],[1,1,4,1],[1,2,1,1]],[[1,2,2,1],[2,0,4,1],[1,1,3,1],[1,2,1,1]],[[1,2,2,1],[3,0,3,1],[1,1,3,1],[1,2,1,1]],[[1,2,2,2],[2,0,3,1],[1,1,3,1],[1,2,1,1]],[[1,2,3,1],[2,0,3,1],[1,1,3,1],[1,2,1,1]],[[1,3,2,1],[2,0,3,1],[1,1,3,1],[1,2,1,1]],[[2,2,2,1],[2,0,3,1],[1,1,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,3,1],[1,1,3,0],[1,2,2,2]],[[1,2,2,1],[2,0,3,1],[1,1,3,0],[1,2,3,1]],[[1,2,2,1],[2,0,3,1],[1,1,3,0],[1,3,2,1]],[[1,2,2,1],[2,0,3,1],[1,1,3,0],[2,2,2,1]],[[1,2,2,1],[2,0,3,1],[1,1,4,0],[1,2,2,1]],[[1,2,2,1],[2,0,4,1],[1,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,0,3,1],[1,1,3,0],[1,2,2,1]],[[1,2,2,2],[2,0,3,1],[1,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,0,3,1],[1,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,0,3,1],[1,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,0,3,1],[1,1,3,0],[1,2,2,1]],[[1,2,2,1],[2,0,4,1],[1,1,2,2],[1,2,2,0]],[[1,2,2,1],[3,0,3,1],[1,1,2,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,1],[1,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,1],[1,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,0,3,1],[1,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,0,3,1],[1,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,4,1],[1,1,2,2],[1,2,1,1]],[[1,2,2,1],[3,0,3,1],[1,1,2,2],[1,2,1,1]],[[1,2,2,2],[2,0,3,1],[1,1,2,2],[1,2,1,1]],[[1,2,3,1],[2,0,3,1],[1,1,2,2],[1,2,1,1]],[[1,3,2,1],[2,0,3,1],[1,1,2,2],[1,2,1,1]],[[2,2,2,1],[2,0,3,1],[1,1,2,2],[1,2,1,1]],[[1,2,2,1],[2,0,4,1],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[3,0,3,1],[1,1,1,2],[1,2,2,1]],[[1,2,2,2],[2,0,3,1],[1,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,3,1],[1,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,0,3,1],[1,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,0,3,1],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,4,1],[0,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,0,3,1],[0,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,0,3,1],[0,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,0,3,1],[0,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,0,3,1],[0,3,3,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,1],[0,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,3,1],[0,3,3,1],[2,2,1,0]],[[1,2,2,1],[2,0,3,1],[0,3,4,1],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[0,4,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,4,1],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[3,0,3,1],[0,3,3,1],[1,2,1,0]],[[1,2,2,2],[2,0,3,1],[0,3,3,1],[1,2,1,0]],[[1,2,3,1],[2,0,3,1],[0,3,3,1],[1,2,1,0]],[[1,3,2,1],[2,0,3,1],[0,3,3,1],[1,2,1,0]],[[2,2,2,1],[2,0,3,1],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,3,1],[0,3,3,1],[1,3,0,1]],[[1,2,2,1],[2,0,3,1],[0,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,3,1],[0,3,4,1],[1,2,0,1]],[[1,2,2,1],[2,0,3,1],[0,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,4,1],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[3,0,3,1],[0,3,3,1],[1,2,0,1]],[[1,2,2,2],[2,0,3,1],[0,3,3,1],[1,2,0,1]],[[1,2,3,1],[2,0,3,1],[0,3,3,1],[1,2,0,1]],[[1,3,2,1],[2,0,3,1],[0,3,3,1],[1,2,0,1]],[[2,2,2,1],[2,0,3,1],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,3,1],[0,3,3,1],[1,1,3,0]],[[1,2,2,1],[2,0,3,1],[0,3,4,1],[1,1,2,0]],[[1,2,2,1],[2,0,3,1],[0,4,3,1],[1,1,2,0]],[[1,2,2,1],[2,0,4,1],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[3,0,3,1],[0,3,3,1],[1,1,2,0]],[[1,2,2,2],[2,0,3,1],[0,3,3,1],[1,1,2,0]],[[1,2,3,1],[2,0,3,1],[0,3,3,1],[1,1,2,0]],[[1,3,2,1],[2,0,3,1],[0,3,3,1],[1,1,2,0]],[[2,2,2,1],[2,0,3,1],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[2,0,3,1],[0,3,4,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[0,4,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,4,1],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,0,3,1],[0,3,3,1],[1,1,1,1]],[[1,2,2,2],[2,0,3,1],[0,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,0,3,1],[0,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,0,3,1],[0,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,0,3,1],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,1],[0,3,4,1],[1,0,2,1]],[[1,2,2,1],[2,0,4,1],[0,3,3,1],[1,0,2,1]],[[1,2,2,2],[2,0,3,1],[0,3,3,1],[1,0,2,1]],[[1,2,3,1],[2,0,3,1],[0,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,0,3,1],[0,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,0,3,1],[0,3,3,1],[1,0,2,1]],[[1,2,2,1],[2,0,3,1],[0,3,3,0],[1,3,1,1]],[[1,2,2,1],[2,0,3,1],[0,3,3,0],[2,2,1,1]],[[1,2,2,1],[2,0,3,1],[0,3,4,0],[1,2,1,1]],[[1,2,2,1],[2,0,3,1],[0,4,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,4,1],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[3,0,3,1],[0,3,3,0],[1,2,1,1]],[[1,2,2,2],[2,0,3,1],[0,3,3,0],[1,2,1,1]],[[1,2,3,1],[2,0,3,1],[0,3,3,0],[1,2,1,1]],[[1,3,2,1],[2,0,3,1],[0,3,3,0],[1,2,1,1]],[[2,2,2,1],[2,0,3,1],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,3,1],[0,3,3,0],[1,1,2,2]],[[1,2,2,1],[2,0,3,1],[0,3,3,0],[1,1,3,1]],[[1,2,2,1],[2,0,3,1],[0,3,4,0],[1,1,2,1]],[[1,2,2,1],[2,0,3,1],[0,4,3,0],[1,1,2,1]],[[1,2,2,1],[2,0,4,1],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[3,0,3,1],[0,3,3,0],[1,1,2,1]],[[1,2,2,2],[2,0,3,1],[0,3,3,0],[1,1,2,1]],[[1,2,3,1],[2,0,3,1],[0,3,3,0],[1,1,2,1]],[[1,3,2,1],[2,0,3,1],[0,3,3,0],[1,1,2,1]],[[2,2,2,1],[2,0,3,1],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[2,0,4,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[3,0,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[2,0,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[2,0,3,1],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[2,0,3,1],[0,3,2,2],[1,2,1,0]],[[2,2,2,1],[2,0,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,4,1],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[3,0,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[2,0,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[2,0,3,1],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[2,0,3,1],[0,3,2,2],[1,2,0,1]],[[2,2,2,1],[2,0,3,1],[0,3,2,2],[1,2,0,1]],[[0,3,0,1],[2,3,3,2],[2,3,0,0],[0,2,2,1]],[[0,2,0,1],[3,3,3,2],[2,3,0,0],[0,2,2,1]],[[0,2,0,1],[2,4,3,2],[2,3,0,0],[0,2,2,1]],[[0,2,0,1],[2,3,3,2],[3,3,0,0],[0,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,3,0,0],[1,1,2,1]],[[0,2,0,1],[3,3,3,2],[2,3,0,0],[1,1,2,1]],[[0,2,0,1],[2,4,3,2],[2,3,0,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[3,3,0,0],[1,1,2,1]],[[0,2,0,1],[2,3,3,2],[2,3,0,0],[2,1,2,1]],[[0,3,0,1],[2,3,3,2],[2,3,0,0],[1,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,3,0,0],[1,2,1,1]],[[0,2,0,1],[2,4,3,2],[2,3,0,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[3,3,0,0],[1,2,1,1]],[[0,2,0,1],[2,3,3,2],[2,3,0,0],[2,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,3,0,0],[1,2,2,0]],[[0,2,0,1],[2,4,3,2],[2,3,0,0],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[3,3,0,0],[1,2,2,0]],[[0,2,0,1],[2,3,3,2],[2,3,0,0],[2,2,2,0]],[[0,3,0,1],[2,3,3,2],[2,3,0,1],[0,2,2,0]],[[0,2,0,1],[3,3,3,2],[2,3,0,1],[0,2,2,0]],[[0,2,0,1],[2,4,3,2],[2,3,0,1],[0,2,2,0]],[[0,2,0,1],[2,3,3,2],[3,3,0,1],[0,2,2,0]],[[0,3,0,1],[2,3,3,2],[2,3,0,1],[1,1,2,0]],[[0,2,0,1],[3,3,3,2],[2,3,0,1],[1,1,2,0]],[[0,2,0,1],[2,4,3,2],[2,3,0,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[3,3,0,1],[1,1,2,0]],[[0,2,0,1],[2,3,3,2],[2,3,0,1],[2,1,2,0]],[[0,3,0,1],[2,3,3,2],[2,3,0,1],[1,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,3,0,1],[1,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,3,0,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,3,0,1],[1,2,1,0]],[[0,2,0,1],[2,3,3,2],[2,3,0,1],[2,2,1,0]],[[1,2,2,1],[2,0,4,1],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,0,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[2,0,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,3,1],[2,0,3,1],[0,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,0,3,1],[0,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,0,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,4,1],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[3,0,3,1],[0,3,2,2],[1,1,1,1]],[[0,3,0,1],[2,3,3,2],[2,3,0,2],[0,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,3,0,2],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,3,0,2],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,3,0,2],[0,2,0,1]],[[0,3,0,1],[2,3,3,2],[2,3,0,2],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,3,0,2],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,3,0,2],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,3,0,2],[0,2,1,0]],[[1,2,2,2],[2,0,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[2,0,3,1],[0,3,2,2],[1,1,1,1]],[[1,3,2,1],[2,0,3,1],[0,3,2,2],[1,1,1,1]],[[2,2,2,1],[2,0,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[2,0,4,1],[0,3,2,2],[1,0,2,1]],[[1,2,2,2],[2,0,3,1],[0,3,2,2],[1,0,2,1]],[[1,2,3,1],[2,0,3,1],[0,3,2,2],[1,0,2,1]],[[1,3,2,1],[2,0,3,1],[0,3,2,2],[1,0,2,1]],[[2,2,2,1],[2,0,3,1],[0,3,2,2],[1,0,2,1]],[[0,3,0,1],[2,3,3,2],[2,3,0,2],[1,1,0,1]],[[0,2,0,1],[3,3,3,2],[2,3,0,2],[1,1,0,1]],[[0,2,0,1],[2,4,3,2],[2,3,0,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[3,3,0,2],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,3,0,2],[2,1,0,1]],[[0,3,0,1],[2,3,3,2],[2,3,0,2],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[2,3,0,2],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[2,3,0,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[3,3,0,2],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[2,3,0,2],[2,1,1,0]],[[1,2,2,1],[2,0,3,1],[0,3,2,1],[1,2,3,0]],[[1,2,2,1],[2,0,3,1],[0,3,2,1],[1,3,2,0]],[[1,2,2,1],[2,0,3,1],[0,3,2,1],[2,2,2,0]],[[1,2,2,1],[2,0,3,1],[0,4,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,3,1],[0,3,2,0],[1,2,2,2]],[[1,2,2,1],[2,0,3,1],[0,3,2,0],[1,2,3,1]],[[1,2,2,1],[2,0,3,1],[0,3,2,0],[1,3,2,1]],[[1,2,2,1],[2,0,3,1],[0,3,2,0],[2,2,2,1]],[[1,2,2,1],[2,0,3,1],[0,4,2,0],[1,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,0,1],[3,3,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,0,1],[2,4,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[3,3,0,2],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[2,3,0,2],[2,2,0,0]],[[1,2,2,1],[2,0,4,1],[0,3,1,2],[1,1,2,1]],[[1,2,2,1],[3,0,3,1],[0,3,1,2],[1,1,2,1]],[[1,2,2,2],[2,0,3,1],[0,3,1,2],[1,1,2,1]],[[1,2,3,1],[2,0,3,1],[0,3,1,2],[1,1,2,1]],[[1,3,2,1],[2,0,3,1],[0,3,1,2],[1,1,2,1]],[[2,2,2,1],[2,0,3,1],[0,3,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,4,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[3,0,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[2,0,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[2,0,3,1],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[2,0,3,1],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[2,0,3,1],[0,3,0,2],[1,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,3,1,0],[0,2,1,1]],[[0,2,0,1],[3,3,3,2],[2,3,1,0],[0,2,1,1]],[[0,2,0,1],[2,4,3,2],[2,3,1,0],[0,2,1,1]],[[0,2,0,1],[2,3,3,2],[3,3,1,0],[0,2,1,1]],[[0,3,0,1],[2,3,3,2],[2,3,1,0],[1,1,1,1]],[[0,2,0,1],[3,3,3,2],[2,3,1,0],[1,1,1,1]],[[0,2,0,1],[2,4,3,2],[2,3,1,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[3,3,1,0],[1,1,1,1]],[[0,2,0,1],[2,3,3,2],[2,3,1,0],[2,1,1,1]],[[0,3,0,1],[2,3,3,2],[2,3,1,0],[1,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,3,1,0],[1,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,3,1,0],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,3,1,0],[1,2,0,1]],[[0,2,0,1],[2,3,3,2],[2,3,1,0],[2,2,0,1]],[[0,3,0,1],[2,3,3,2],[2,3,1,1],[0,2,0,1]],[[0,2,0,1],[3,3,3,2],[2,3,1,1],[0,2,0,1]],[[0,2,0,1],[2,4,3,2],[2,3,1,1],[0,2,0,1]],[[0,2,0,1],[2,3,3,2],[3,3,1,1],[0,2,0,1]],[[0,3,0,1],[2,3,3,2],[2,3,1,1],[0,2,1,0]],[[0,2,0,1],[3,3,3,2],[2,3,1,1],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,3,1,1],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,3,1,1],[0,2,1,0]],[[1,2,2,1],[2,0,3,1],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,3,1],[0,2,3,1],[1,3,2,0]],[[1,2,2,1],[2,0,3,1],[0,2,3,1],[2,2,2,0]],[[1,2,2,1],[2,0,3,1],[0,2,4,1],[1,2,2,0]],[[1,2,2,1],[2,0,4,1],[0,2,3,1],[1,2,2,0]],[[1,2,2,1],[3,0,3,1],[0,2,3,1],[1,2,2,0]],[[0,3,0,1],[2,3,3,2],[2,3,1,1],[1,1,0,1]],[[0,2,0,1],[3,3,3,2],[2,3,1,1],[1,1,0,1]],[[0,2,0,1],[2,4,3,2],[2,3,1,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[3,3,1,1],[1,1,0,1]],[[0,2,0,1],[2,3,3,2],[2,3,1,1],[2,1,0,1]],[[0,3,0,1],[2,3,3,2],[2,3,1,1],[1,1,1,0]],[[0,2,0,1],[3,3,3,2],[2,3,1,1],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[2,3,1,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[3,3,1,1],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[2,3,1,1],[2,1,1,0]],[[1,2,2,2],[2,0,3,1],[0,2,3,1],[1,2,2,0]],[[1,2,3,1],[2,0,3,1],[0,2,3,1],[1,2,2,0]],[[1,3,2,1],[2,0,3,1],[0,2,3,1],[1,2,2,0]],[[2,2,2,1],[2,0,3,1],[0,2,3,1],[1,2,2,0]],[[1,2,2,1],[2,0,3,1],[0,2,4,1],[1,2,1,1]],[[1,2,2,1],[2,0,4,1],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[3,0,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,2,2],[2,0,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,3,1],[2,0,3,1],[0,2,3,1],[1,2,1,1]],[[0,3,0,1],[2,3,3,2],[2,3,1,1],[1,2,0,0]],[[0,2,0,1],[3,3,3,2],[2,3,1,1],[1,2,0,0]],[[0,2,0,1],[2,4,3,2],[2,3,1,1],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[3,3,1,1],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[2,3,1,1],[2,2,0,0]],[[1,3,2,1],[2,0,3,1],[0,2,3,1],[1,2,1,1]],[[2,2,2,1],[2,0,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,3,1],[0,2,3,0],[1,2,2,2]],[[1,2,2,1],[2,0,3,1],[0,2,3,0],[1,2,3,1]],[[1,2,2,1],[2,0,3,1],[0,2,3,0],[1,3,2,1]],[[1,2,2,1],[2,0,3,1],[0,2,3,0],[2,2,2,1]],[[1,2,2,1],[2,0,3,1],[0,2,4,0],[1,2,2,1]],[[1,2,2,1],[2,0,4,1],[0,2,3,0],[1,2,2,1]],[[1,2,2,1],[3,0,3,1],[0,2,3,0],[1,2,2,1]],[[1,2,2,2],[2,0,3,1],[0,2,3,0],[1,2,2,1]],[[1,2,3,1],[2,0,3,1],[0,2,3,0],[1,2,2,1]],[[1,3,2,1],[2,0,3,1],[0,2,3,0],[1,2,2,1]],[[2,2,2,1],[2,0,3,1],[0,2,3,0],[1,2,2,1]],[[1,2,2,1],[2,0,4,1],[0,2,2,2],[1,2,2,0]],[[1,2,2,1],[3,0,3,1],[0,2,2,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,1],[0,2,2,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,1],[0,2,2,2],[1,2,2,0]],[[1,3,2,1],[2,0,3,1],[0,2,2,2],[1,2,2,0]],[[2,2,2,1],[2,0,3,1],[0,2,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,4,1],[0,2,2,2],[1,2,1,1]],[[1,2,2,1],[3,0,3,1],[0,2,2,2],[1,2,1,1]],[[1,2,2,2],[2,0,3,1],[0,2,2,2],[1,2,1,1]],[[1,2,3,1],[2,0,3,1],[0,2,2,2],[1,2,1,1]],[[1,3,2,1],[2,0,3,1],[0,2,2,2],[1,2,1,1]],[[2,2,2,1],[2,0,3,1],[0,2,2,2],[1,2,1,1]],[[1,2,2,1],[2,0,4,1],[0,2,1,2],[1,2,2,1]],[[1,2,2,1],[3,0,3,1],[0,2,1,2],[1,2,2,1]],[[1,2,2,2],[2,0,3,1],[0,2,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,3,1],[0,2,1,2],[1,2,2,1]],[[1,3,2,1],[2,0,3,1],[0,2,1,2],[1,2,2,1]],[[2,2,2,1],[2,0,3,1],[0,2,1,2],[1,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[0,2,0,2],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[0,2,0,1],[3,3,3,2],[2,3,1,2],[1,0,0,1]],[[0,2,0,1],[2,4,3,2],[2,3,1,2],[1,0,0,1]],[[0,2,0,1],[2,3,4,2],[2,3,1,2],[1,0,0,1]],[[0,2,0,1],[2,3,3,3],[2,3,1,2],[1,0,0,1]],[[0,2,0,1],[2,3,3,2],[3,3,1,2],[1,0,0,1]],[[0,2,0,1],[2,3,3,2],[2,3,1,3],[1,0,0,1]],[[0,3,0,1],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[0,2,0,2],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[0,2,0,1],[3,3,3,2],[2,3,1,2],[1,0,1,0]],[[0,2,0,1],[2,4,3,2],[2,3,1,2],[1,0,1,0]],[[0,2,0,1],[2,3,4,2],[2,3,1,2],[1,0,1,0]],[[0,2,0,1],[2,3,3,3],[2,3,1,2],[1,0,1,0]],[[0,2,0,1],[2,3,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[2,0,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[2,0,3,0],[2,4,3,2],[1,1,0,0]],[[1,2,2,1],[2,0,3,0],[3,3,3,2],[1,1,0,0]],[[1,2,2,1],[2,0,4,0],[2,3,3,2],[1,1,0,0]],[[1,2,2,1],[3,0,3,0],[2,3,3,2],[1,1,0,0]],[[1,2,2,2],[2,0,3,0],[2,3,3,2],[1,1,0,0]],[[1,2,3,1],[2,0,3,0],[2,3,3,2],[1,1,0,0]],[[1,3,2,1],[2,0,3,0],[2,3,3,2],[1,1,0,0]],[[2,2,2,1],[2,0,3,0],[2,3,3,2],[1,1,0,0]],[[1,2,2,1],[2,0,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[2,0,3,0],[3,3,3,2],[0,2,0,0]],[[1,2,2,1],[2,0,4,0],[2,3,3,2],[0,2,0,0]],[[1,2,2,1],[3,0,3,0],[2,3,3,2],[0,2,0,0]],[[1,2,2,2],[2,0,3,0],[2,3,3,2],[0,2,0,0]],[[1,2,3,1],[2,0,3,0],[2,3,3,2],[0,2,0,0]],[[1,3,2,1],[2,0,3,0],[2,3,3,2],[0,2,0,0]],[[2,2,2,1],[2,0,3,0],[2,3,3,2],[0,2,0,0]],[[0,2,0,1],[3,3,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,0,1],[2,4,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,0,1],[2,3,3,2],[3,3,2,0],[0,2,1,0]],[[0,3,0,1],[2,3,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,0,1],[3,3,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,0,1],[2,4,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,0,1],[2,3,4,2],[2,3,2,0],[1,0,1,1]],[[0,2,0,1],[2,3,3,2],[3,3,2,0],[1,0,1,1]],[[0,2,0,1],[3,3,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,0,1],[2,4,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[3,3,2,0],[1,1,1,0]],[[0,2,0,1],[2,3,3,2],[2,3,2,0],[2,1,1,0]],[[0,2,0,1],[3,3,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,0,1],[2,4,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[3,3,2,0],[1,2,0,0]],[[0,2,0,1],[2,3,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[2,0,3,0],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[2,0,3,0],[2,4,2,2],[1,2,0,0]],[[1,2,2,1],[2,0,3,0],[3,3,2,2],[1,2,0,0]],[[1,2,2,1],[2,0,4,0],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[3,0,3,0],[2,3,2,2],[1,2,0,0]],[[0,3,0,1],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[0,2,0,2],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[0,2,0,1],[3,3,3,2],[2,3,2,1],[1,0,0,1]],[[0,2,0,1],[2,4,3,2],[2,3,2,1],[1,0,0,1]],[[0,2,0,1],[2,3,4,2],[2,3,2,1],[1,0,0,1]],[[0,2,0,1],[2,3,3,3],[2,3,2,1],[1,0,0,1]],[[0,2,0,1],[2,3,3,2],[3,3,2,1],[1,0,0,1]],[[0,3,0,1],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[0,2,0,2],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[0,2,0,1],[3,3,3,2],[2,3,2,1],[1,0,1,0]],[[0,2,0,1],[2,4,3,2],[2,3,2,1],[1,0,1,0]],[[0,2,0,1],[2,3,4,2],[2,3,2,1],[1,0,1,0]],[[0,2,0,1],[2,3,3,3],[2,3,2,1],[1,0,1,0]],[[0,2,0,1],[2,3,3,2],[3,3,2,1],[1,0,1,0]],[[1,2,2,2],[2,0,3,0],[2,3,2,2],[1,2,0,0]],[[1,2,3,1],[2,0,3,0],[2,3,2,2],[1,2,0,0]],[[1,3,2,1],[2,0,3,0],[2,3,2,2],[1,2,0,0]],[[2,2,2,1],[2,0,3,0],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[2,0,3,0],[2,3,2,2],[2,1,1,0]],[[1,2,2,1],[2,0,3,0],[2,4,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,0],[3,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,4,0],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[3,0,3,0],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,0,3,0],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[2,0,3,0],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,0,3,0],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,0,3,0],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,0],[2,3,2,2],[2,1,0,1]],[[1,2,2,1],[2,0,3,0],[2,4,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,0],[3,3,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,4,0],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[3,0,3,0],[2,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,0,3,0],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,0,3,0],[2,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,0,3,0],[2,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,0,3,0],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,0],[2,3,2,2],[2,0,2,0]],[[1,2,2,1],[2,0,3,0],[2,4,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,0],[3,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,4,0],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[3,0,3,0],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,0,3,0],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[2,0,3,0],[2,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,0,3,0],[2,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,0,3,0],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,0],[2,3,2,2],[2,0,1,1]],[[1,2,2,1],[2,0,3,0],[2,4,2,2],[1,0,1,1]],[[1,2,2,1],[2,0,3,0],[3,3,2,2],[1,0,1,1]],[[1,2,2,1],[2,0,4,0],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[3,0,3,0],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,0,3,0],[2,3,2,2],[1,0,1,1]],[[1,2,3,1],[2,0,3,0],[2,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,0,3,0],[2,3,2,2],[1,0,1,1]],[[2,2,2,1],[2,0,3,0],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[2,0,3,0],[2,3,2,2],[0,3,1,0]],[[1,2,2,1],[2,0,3,0],[2,4,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,0],[3,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,4,0],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[3,0,3,0],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,0,3,0],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,0,3,0],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,0,3,0],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,0,3,0],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,0],[2,3,2,2],[0,3,0,1]],[[1,2,2,1],[2,0,3,0],[2,4,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,0],[3,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,4,0],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[3,0,3,0],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,0,3,0],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[2,0,3,0],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,0,3,0],[2,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,0,3,0],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,0],[2,4,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,0],[3,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,4,0],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[3,0,3,0],[2,3,2,2],[0,1,2,0]],[[1,2,2,2],[2,0,3,0],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,0,3,0],[2,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,0,3,0],[2,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,0,3,0],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,0],[2,4,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,0],[3,3,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,4,0],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,0,3,0],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,0,3,0],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,0,3,0],[2,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,0,3,0],[2,3,2,2],[0,1,1,1]],[[2,2,2,1],[2,0,3,0],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,2,1],[2,0,3,0],[2,4,2,1],[1,2,0,1]],[[1,2,2,1],[2,0,3,0],[3,3,2,1],[1,2,0,1]],[[1,2,2,1],[3,0,3,0],[2,3,2,1],[1,2,0,1]],[[1,2,3,1],[2,0,3,0],[2,3,2,1],[1,2,0,1]],[[1,3,2,1],[2,0,3,0],[2,3,2,1],[1,2,0,1]],[[2,2,2,1],[2,0,3,0],[2,3,2,1],[1,2,0,1]],[[1,2,2,1],[2,0,3,0],[2,3,2,1],[2,1,1,1]],[[1,2,2,1],[2,0,3,0],[2,4,2,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[3,3,2,1],[1,1,1,1]],[[1,2,2,1],[2,0,4,0],[2,3,2,1],[1,1,1,1]],[[1,2,2,1],[3,0,3,0],[2,3,2,1],[1,1,1,1]],[[1,2,2,2],[2,0,3,0],[2,3,2,1],[1,1,1,1]],[[1,2,3,1],[2,0,3,0],[2,3,2,1],[1,1,1,1]],[[1,3,2,1],[2,0,3,0],[2,3,2,1],[1,1,1,1]],[[2,2,2,1],[2,0,3,0],[2,3,2,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[2,3,2,1],[2,0,2,1]],[[1,2,2,1],[2,0,3,0],[2,4,2,1],[1,0,2,1]],[[1,2,2,1],[2,0,3,0],[3,3,2,1],[1,0,2,1]],[[1,2,2,1],[2,0,4,0],[2,3,2,1],[1,0,2,1]],[[1,2,2,1],[3,0,3,0],[2,3,2,1],[1,0,2,1]],[[1,2,2,2],[2,0,3,0],[2,3,2,1],[1,0,2,1]],[[1,2,3,1],[2,0,3,0],[2,3,2,1],[1,0,2,1]],[[1,3,2,1],[2,0,3,0],[2,3,2,1],[1,0,2,1]],[[2,2,2,1],[2,0,3,0],[2,3,2,1],[1,0,2,1]],[[1,2,2,1],[2,0,3,0],[2,3,2,1],[0,3,1,1]],[[1,2,2,1],[2,0,3,0],[2,4,2,1],[0,2,1,1]],[[1,2,2,1],[2,0,3,0],[3,3,2,1],[0,2,1,1]],[[1,2,2,1],[2,0,4,0],[2,3,2,1],[0,2,1,1]],[[1,2,2,1],[3,0,3,0],[2,3,2,1],[0,2,1,1]],[[1,2,2,2],[2,0,3,0],[2,3,2,1],[0,2,1,1]],[[1,2,3,1],[2,0,3,0],[2,3,2,1],[0,2,1,1]],[[1,3,2,1],[2,0,3,0],[2,3,2,1],[0,2,1,1]],[[2,2,2,1],[2,0,3,0],[2,3,2,1],[0,2,1,1]],[[1,2,2,1],[2,0,3,0],[2,4,2,1],[0,1,2,1]],[[1,2,2,1],[2,0,3,0],[3,3,2,1],[0,1,2,1]],[[1,2,2,1],[2,0,4,0],[2,3,2,1],[0,1,2,1]],[[1,2,2,1],[3,0,3,0],[2,3,2,1],[0,1,2,1]],[[1,2,2,2],[2,0,3,0],[2,3,2,1],[0,1,2,1]],[[1,2,3,1],[2,0,3,0],[2,3,2,1],[0,1,2,1]],[[1,3,2,1],[2,0,3,0],[2,3,2,1],[0,1,2,1]],[[2,2,2,1],[2,0,3,0],[2,3,2,1],[0,1,2,1]],[[1,2,2,1],[2,0,3,0],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[2,0,3,0],[2,4,1,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,0],[3,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,0,4,0],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,0,3,0],[2,3,1,2],[1,1,2,0]],[[1,2,2,2],[2,0,3,0],[2,3,1,2],[1,1,2,0]],[[1,2,3,1],[2,0,3,0],[2,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,0,3,0],[2,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,0,3,0],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,0],[2,3,1,2],[0,2,3,0]],[[1,2,2,1],[2,0,3,0],[2,3,1,2],[0,3,2,0]],[[1,2,2,1],[2,0,3,0],[2,4,1,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,0],[3,3,1,2],[0,2,2,0]],[[1,2,2,1],[2,0,4,0],[2,3,1,2],[0,2,2,0]],[[1,2,2,1],[3,0,3,0],[2,3,1,2],[0,2,2,0]],[[1,2,2,2],[2,0,3,0],[2,3,1,2],[0,2,2,0]],[[1,2,3,1],[2,0,3,0],[2,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,0,3,0],[2,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,0,3,0],[2,3,1,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,0],[2,3,1,1],[2,1,2,1]],[[1,2,2,1],[2,0,3,0],[2,4,1,1],[1,1,2,1]],[[1,2,2,1],[2,0,3,0],[3,3,1,1],[1,1,2,1]],[[1,2,2,1],[2,0,4,0],[2,3,1,1],[1,1,2,1]],[[1,2,2,1],[3,0,3,0],[2,3,1,1],[1,1,2,1]],[[1,2,2,2],[2,0,3,0],[2,3,1,1],[1,1,2,1]],[[1,2,3,1],[2,0,3,0],[2,3,1,1],[1,1,2,1]],[[1,3,2,1],[2,0,3,0],[2,3,1,1],[1,1,2,1]],[[2,2,2,1],[2,0,3,0],[2,3,1,1],[1,1,2,1]],[[1,2,2,1],[2,0,3,0],[2,3,1,1],[0,2,2,2]],[[1,2,2,1],[2,0,3,0],[2,3,1,1],[0,2,3,1]],[[1,2,2,1],[2,0,3,0],[2,3,1,1],[0,3,2,1]],[[1,2,2,1],[2,0,3,0],[2,4,1,1],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[3,3,1,1],[0,2,2,1]],[[1,2,2,1],[2,0,4,0],[2,3,1,1],[0,2,2,1]],[[1,2,2,1],[3,0,3,0],[2,3,1,1],[0,2,2,1]],[[1,2,2,2],[2,0,3,0],[2,3,1,1],[0,2,2,1]],[[1,2,3,1],[2,0,3,0],[2,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,0,3,0],[2,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,0,3,0],[2,3,1,1],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[2,3,0,2],[1,3,2,0]],[[1,2,2,1],[2,0,3,0],[2,3,0,2],[2,2,2,0]],[[1,2,2,1],[2,0,3,0],[3,3,0,2],[1,2,2,0]],[[1,2,2,1],[3,0,3,0],[2,3,0,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,0],[2,3,0,2],[1,2,2,0]],[[1,3,2,1],[2,0,3,0],[2,3,0,2],[1,2,2,0]],[[2,2,2,1],[2,0,3,0],[2,3,0,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,0],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[2,0,3,0],[2,4,0,2],[1,1,2,1]],[[1,2,2,1],[2,0,3,0],[3,3,0,2],[1,1,2,1]],[[1,2,2,1],[2,0,4,0],[2,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,0,3,0],[2,3,0,2],[1,1,2,1]],[[1,2,2,2],[2,0,3,0],[2,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,0,3,0],[2,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,0,3,0],[2,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,0,3,0],[2,3,0,2],[1,1,2,1]],[[1,2,2,1],[2,0,3,0],[2,3,0,2],[0,2,2,2]],[[1,2,2,1],[2,0,3,0],[2,3,0,2],[0,2,3,1]],[[1,2,2,1],[2,0,3,0],[2,3,0,2],[0,3,2,1]],[[1,2,2,1],[2,0,3,0],[2,3,0,3],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[2,4,0,2],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[3,3,0,2],[0,2,2,1]],[[1,2,2,1],[2,0,4,0],[2,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,0,3,0],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,0,3,0],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,0,3,0],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,0,3,0],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,0,3,0],[2,3,0,2],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[2,3,0,1],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[2,3,0,1],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[3,3,0,1],[1,2,2,1]],[[1,2,2,1],[3,0,3,0],[2,3,0,1],[1,2,2,1]],[[1,2,3,1],[2,0,3,0],[2,3,0,1],[1,2,2,1]],[[1,3,2,1],[2,0,3,0],[2,3,0,1],[1,2,2,1]],[[2,2,2,1],[2,0,3,0],[2,3,0,1],[1,2,2,1]],[[0,3,0,1],[2,3,3,2],[2,3,3,0],[1,0,1,0]],[[0,2,0,1],[3,3,3,2],[2,3,3,0],[1,0,1,0]],[[0,2,0,1],[2,4,3,2],[2,3,3,0],[1,0,1,0]],[[0,2,0,1],[2,3,4,2],[2,3,3,0],[1,0,1,0]],[[0,2,0,1],[2,3,3,2],[3,3,3,0],[1,0,1,0]],[[1,2,2,1],[2,0,3,0],[2,2,3,2],[2,1,1,0]],[[1,2,2,1],[2,0,3,0],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,3,0],[2,2,4,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,0],[3,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,0,4,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[3,0,3,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,0,3,0],[2,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,0,3,0],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,0,3,0],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,0,3,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,0],[2,2,3,2],[1,1,0,2]],[[1,2,2,1],[2,0,3,0],[2,2,3,2],[2,1,0,1]],[[1,2,2,1],[2,0,3,0],[2,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,0,3,0],[2,2,4,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,0],[3,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,0,4,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[3,0,3,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,0,3,0],[2,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,0,3,0],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,0,3,0],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,0,3,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,0],[2,2,3,2],[1,0,3,0]],[[1,2,2,1],[2,0,3,0],[2,2,3,2],[2,0,2,0]],[[1,2,2,1],[2,0,3,0],[2,2,3,3],[1,0,2,0]],[[1,2,2,1],[2,0,3,0],[2,2,4,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,0],[3,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,4,0],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[3,0,3,0],[2,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,0,3,0],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,0,3,0],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,0,3,0],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,0,3,0],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,0],[2,2,3,2],[1,0,1,2]],[[1,2,2,1],[2,0,3,0],[2,2,3,2],[2,0,1,1]],[[1,2,2,1],[2,0,3,0],[2,2,3,3],[1,0,1,1]],[[1,2,2,1],[2,0,3,0],[2,2,4,2],[1,0,1,1]],[[1,2,2,1],[2,0,3,0],[3,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,0,4,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[3,0,3,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,0,3,0],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,0,3,0],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,0,3,0],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,0,3,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,0,3,0],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,0,3,0],[2,2,4,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,0],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,4,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,0,3,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,2],[2,0,3,0],[2,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,0,3,0],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,0,3,0],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,0,3,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,0],[2,2,3,2],[0,2,0,2]],[[1,2,2,1],[2,0,3,0],[2,2,3,3],[0,2,0,1]],[[1,2,2,1],[2,0,3,0],[2,2,4,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,0],[3,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,0,4,0],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[3,0,3,0],[2,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,0,3,0],[2,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,0,3,0],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,0,3,0],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,0,3,0],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,0],[2,2,3,2],[0,1,3,0]],[[1,2,2,1],[2,0,3,0],[2,2,3,3],[0,1,2,0]],[[1,2,2,1],[2,0,3,0],[2,2,4,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,0],[3,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,4,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[3,0,3,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,0,3,0],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[2,0,3,0],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,0,3,0],[2,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,0,3,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,0],[2,2,3,2],[0,1,1,2]],[[1,2,2,1],[2,0,3,0],[2,2,3,3],[0,1,1,1]],[[1,2,2,1],[2,0,3,0],[2,2,4,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,0],[3,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,4,0],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[3,0,3,0],[2,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,0,3,0],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,0,3,0],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,0,3,0],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,0,3,0],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,0],[2,2,3,2],[0,0,2,2]],[[1,2,2,1],[2,0,3,0],[2,2,3,3],[0,0,2,1]],[[1,2,2,1],[2,0,3,0],[2,2,4,2],[0,0,2,1]],[[1,2,2,1],[2,0,4,0],[2,2,3,2],[0,0,2,1]],[[1,2,2,1],[3,0,3,0],[2,2,3,2],[0,0,2,1]],[[1,2,2,2],[2,0,3,0],[2,2,3,2],[0,0,2,1]],[[1,2,3,1],[2,0,3,0],[2,2,3,2],[0,0,2,1]],[[1,3,2,1],[2,0,3,0],[2,2,3,2],[0,0,2,1]],[[2,2,2,1],[2,0,3,0],[2,2,3,2],[0,0,2,1]],[[1,2,2,1],[2,0,3,0],[2,2,3,1],[2,1,1,1]],[[1,2,2,1],[2,0,3,0],[2,2,4,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[3,2,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,4,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,1],[3,0,3,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,2],[2,0,3,0],[2,2,3,1],[1,1,1,1]],[[1,2,3,1],[2,0,3,0],[2,2,3,1],[1,1,1,1]],[[1,3,2,1],[2,0,3,0],[2,2,3,1],[1,1,1,1]],[[2,2,2,1],[2,0,3,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[2,2,3,1],[1,0,2,2]],[[1,2,2,1],[2,0,3,0],[2,2,3,1],[1,0,3,1]],[[1,2,2,1],[2,0,3,0],[2,2,3,1],[2,0,2,1]],[[1,2,2,1],[2,0,3,0],[2,2,4,1],[1,0,2,1]],[[1,2,2,1],[2,0,3,0],[3,2,3,1],[1,0,2,1]],[[1,2,2,1],[2,0,4,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,1],[3,0,3,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,2],[2,0,3,0],[2,2,3,1],[1,0,2,1]],[[1,2,3,1],[2,0,3,0],[2,2,3,1],[1,0,2,1]],[[0,3,0,1],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[0,2,0,2],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[0,2,0,1],[3,3,3,2],[2,3,3,1],[1,0,0,0]],[[0,2,0,1],[2,4,3,2],[2,3,3,1],[1,0,0,0]],[[0,2,0,1],[2,3,4,2],[2,3,3,1],[1,0,0,0]],[[0,2,0,1],[2,3,3,3],[2,3,3,1],[1,0,0,0]],[[0,2,0,1],[2,3,3,2],[3,3,3,1],[1,0,0,0]],[[1,3,2,1],[2,0,3,0],[2,2,3,1],[1,0,2,1]],[[2,2,2,1],[2,0,3,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,1],[2,0,3,0],[2,2,4,1],[0,2,1,1]],[[1,2,2,1],[2,0,3,0],[3,2,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,4,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[3,0,3,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[2,0,3,0],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[2,0,3,0],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[2,0,3,0],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[2,0,3,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,3,0],[2,2,3,1],[0,1,2,2]],[[1,2,2,1],[2,0,3,0],[2,2,3,1],[0,1,3,1]],[[1,2,2,1],[2,0,3,0],[2,2,4,1],[0,1,2,1]],[[1,2,2,1],[2,0,3,0],[3,2,3,1],[0,1,2,1]],[[1,2,2,1],[2,0,4,0],[2,2,3,1],[0,1,2,1]],[[1,2,2,1],[3,0,3,0],[2,2,3,1],[0,1,2,1]],[[1,2,2,2],[2,0,3,0],[2,2,3,1],[0,1,2,1]],[[1,2,3,1],[2,0,3,0],[2,2,3,1],[0,1,2,1]],[[1,3,2,1],[2,0,3,0],[2,2,3,1],[0,1,2,1]],[[2,2,2,1],[2,0,3,0],[2,2,3,1],[0,1,2,1]],[[1,2,2,1],[2,0,3,0],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[2,2,2,2],[2,2,1,0]],[[1,2,2,1],[2,0,3,0],[3,2,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,4,0],[2,2,2,2],[1,2,1,0]],[[1,2,2,1],[3,0,3,0],[2,2,2,2],[1,2,1,0]],[[1,2,2,2],[2,0,3,0],[2,2,2,2],[1,2,1,0]],[[1,2,3,1],[2,0,3,0],[2,2,2,2],[1,2,1,0]],[[1,3,2,1],[2,0,3,0],[2,2,2,2],[1,2,1,0]],[[2,2,2,1],[2,0,3,0],[2,2,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,0],[2,2,2,2],[1,3,0,1]],[[1,2,2,1],[2,0,3,0],[2,2,2,2],[2,2,0,1]],[[1,2,2,1],[2,0,3,0],[3,2,2,2],[1,2,0,1]],[[1,2,2,1],[2,0,4,0],[2,2,2,2],[1,2,0,1]],[[1,2,2,1],[3,0,3,0],[2,2,2,2],[1,2,0,1]],[[1,2,2,2],[2,0,3,0],[2,2,2,2],[1,2,0,1]],[[1,2,3,1],[2,0,3,0],[2,2,2,2],[1,2,0,1]],[[1,3,2,1],[2,0,3,0],[2,2,2,2],[1,2,0,1]],[[2,2,2,1],[2,0,3,0],[2,2,2,2],[1,2,0,1]],[[1,2,2,1],[2,0,3,0],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,0,3,0],[2,2,2,2],[1,0,3,1]],[[1,2,2,1],[2,0,3,0],[2,2,2,3],[1,0,2,1]],[[1,2,2,1],[2,0,3,0],[2,2,2,2],[0,1,2,2]],[[1,2,2,1],[2,0,3,0],[2,2,2,2],[0,1,3,1]],[[1,2,2,1],[2,0,3,0],[2,2,2,3],[0,1,2,1]],[[1,2,2,1],[2,0,3,0],[2,2,2,1],[1,3,1,1]],[[1,2,2,1],[2,0,3,0],[2,2,2,1],[2,2,1,1]],[[1,2,2,1],[2,0,3,0],[3,2,2,1],[1,2,1,1]],[[1,2,2,1],[2,0,4,0],[2,2,2,1],[1,2,1,1]],[[1,2,2,1],[3,0,3,0],[2,2,2,1],[1,2,1,1]],[[1,2,2,2],[2,0,3,0],[2,2,2,1],[1,2,1,1]],[[1,2,3,1],[2,0,3,0],[2,2,2,1],[1,2,1,1]],[[1,3,2,1],[2,0,3,0],[2,2,2,1],[1,2,1,1]],[[2,2,2,1],[2,0,3,0],[2,2,2,1],[1,2,1,1]],[[1,2,2,1],[2,0,3,0],[2,2,1,2],[1,2,3,0]],[[1,2,2,1],[2,0,3,0],[2,2,1,2],[1,3,2,0]],[[1,2,2,1],[2,0,3,0],[2,2,1,2],[2,2,2,0]],[[1,2,2,1],[2,0,3,0],[3,2,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,4,0],[2,2,1,2],[1,2,2,0]],[[1,2,2,1],[3,0,3,0],[2,2,1,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,0],[2,2,1,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,0],[2,2,1,2],[1,2,2,0]],[[1,3,2,1],[2,0,3,0],[2,2,1,2],[1,2,2,0]],[[2,2,2,1],[2,0,3,0],[2,2,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,0],[2,2,1,1],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[2,2,1,1],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[2,2,1,1],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[2,2,1,1],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[3,2,1,1],[1,2,2,1]],[[1,2,2,1],[2,0,4,0],[2,2,1,1],[1,2,2,1]],[[1,2,2,1],[3,0,3,0],[2,2,1,1],[1,2,2,1]],[[1,2,2,2],[2,0,3,0],[2,2,1,1],[1,2,2,1]],[[1,2,3,1],[2,0,3,0],[2,2,1,1],[1,2,2,1]],[[1,3,2,1],[2,0,3,0],[2,2,1,1],[1,2,2,1]],[[2,2,2,1],[2,0,3,0],[2,2,1,1],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[2,2,0,2],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[2,2,0,2],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[2,2,0,3],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[3,2,0,2],[1,2,2,1]],[[1,2,2,1],[2,0,4,0],[2,2,0,2],[1,2,2,1]],[[1,2,2,1],[3,0,3,0],[2,2,0,2],[1,2,2,1]],[[1,2,2,2],[2,0,3,0],[2,2,0,2],[1,2,2,1]],[[1,2,3,1],[2,0,3,0],[2,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,0,3,0],[2,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,0,3,0],[2,2,0,2],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[2,2,1,0]],[[1,2,2,1],[2,0,3,0],[2,1,3,3],[1,2,1,0]],[[1,2,2,1],[2,0,3,0],[2,1,4,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,0],[3,1,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,4,0],[2,1,3,2],[1,2,1,0]],[[1,2,2,1],[3,0,3,0],[2,1,3,2],[1,2,1,0]],[[1,2,2,2],[2,0,3,0],[2,1,3,2],[1,2,1,0]],[[1,2,3,1],[2,0,3,0],[2,1,3,2],[1,2,1,0]],[[1,3,2,1],[2,0,3,0],[2,1,3,2],[1,2,1,0]],[[2,2,2,1],[2,0,3,0],[2,1,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[1,2,0,2]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[1,3,0,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[2,2,0,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,3],[1,2,0,1]],[[1,2,2,1],[2,0,3,0],[2,1,4,2],[1,2,0,1]],[[1,2,2,1],[2,0,3,0],[3,1,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,4,0],[2,1,3,2],[1,2,0,1]],[[1,2,2,1],[3,0,3,0],[2,1,3,2],[1,2,0,1]],[[1,2,2,2],[2,0,3,0],[2,1,3,2],[1,2,0,1]],[[1,2,3,1],[2,0,3,0],[2,1,3,2],[1,2,0,1]],[[1,3,2,1],[2,0,3,0],[2,1,3,2],[1,2,0,1]],[[2,2,2,1],[2,0,3,0],[2,1,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[1,1,3,0]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[2,1,2,0]],[[1,2,2,1],[2,0,3,0],[2,1,3,3],[1,1,2,0]],[[1,2,2,1],[2,0,3,0],[2,1,4,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,0],[3,1,3,2],[1,1,2,0]],[[1,2,2,1],[2,0,4,0],[2,1,3,2],[1,1,2,0]],[[1,2,2,1],[3,0,3,0],[2,1,3,2],[1,1,2,0]],[[1,2,2,2],[2,0,3,0],[2,1,3,2],[1,1,2,0]],[[1,2,3,1],[2,0,3,0],[2,1,3,2],[1,1,2,0]],[[1,3,2,1],[2,0,3,0],[2,1,3,2],[1,1,2,0]],[[2,2,2,1],[2,0,3,0],[2,1,3,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[1,1,1,2]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[2,1,1,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,3],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[2,1,4,2],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[3,1,3,2],[1,1,1,1]],[[1,2,2,1],[2,0,4,0],[2,1,3,2],[1,1,1,1]],[[1,2,2,1],[3,0,3,0],[2,1,3,2],[1,1,1,1]],[[1,2,2,2],[2,0,3,0],[2,1,3,2],[1,1,1,1]],[[1,2,3,1],[2,0,3,0],[2,1,3,2],[1,1,1,1]],[[1,3,2,1],[2,0,3,0],[2,1,3,2],[1,1,1,1]],[[2,2,2,1],[2,0,3,0],[2,1,3,2],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[0,3,2,0]],[[1,2,2,1],[2,0,3,0],[2,1,3,3],[0,2,2,0]],[[1,2,2,1],[2,0,3,0],[2,1,4,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,0],[3,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,0,4,0],[2,1,3,2],[0,2,2,0]],[[1,2,2,1],[3,0,3,0],[2,1,3,2],[0,2,2,0]],[[1,2,2,2],[2,0,3,0],[2,1,3,2],[0,2,2,0]],[[1,2,3,1],[2,0,3,0],[2,1,3,2],[0,2,2,0]],[[1,3,2,1],[2,0,3,0],[2,1,3,2],[0,2,2,0]],[[2,2,2,1],[2,0,3,0],[2,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,0],[2,1,3,2],[0,2,1,2]],[[1,2,2,1],[2,0,3,0],[2,1,3,3],[0,2,1,1]],[[1,2,2,1],[2,0,3,0],[2,1,4,2],[0,2,1,1]],[[1,2,2,1],[2,0,3,0],[3,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,0,4,0],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[3,0,3,0],[2,1,3,2],[0,2,1,1]],[[1,2,2,2],[2,0,3,0],[2,1,3,2],[0,2,1,1]],[[1,2,3,1],[2,0,3,0],[2,1,3,2],[0,2,1,1]],[[1,3,2,1],[2,0,3,0],[2,1,3,2],[0,2,1,1]],[[2,2,2,1],[2,0,3,0],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,1],[1,3,1,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,1],[2,2,1,1]],[[1,2,2,1],[2,0,3,0],[2,1,4,1],[1,2,1,1]],[[1,2,2,1],[2,0,3,0],[3,1,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,4,0],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[3,0,3,0],[2,1,3,1],[1,2,1,1]],[[1,2,2,2],[2,0,3,0],[2,1,3,1],[1,2,1,1]],[[1,2,3,1],[2,0,3,0],[2,1,3,1],[1,2,1,1]],[[1,3,2,1],[2,0,3,0],[2,1,3,1],[1,2,1,1]],[[2,2,2,1],[2,0,3,0],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,1],[1,1,2,2]],[[1,2,2,1],[2,0,3,0],[2,1,3,1],[1,1,3,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,1],[2,1,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,4,1],[1,1,2,1]],[[1,2,2,1],[2,0,3,0],[3,1,3,1],[1,1,2,1]],[[1,2,2,1],[2,0,4,0],[2,1,3,1],[1,1,2,1]],[[1,2,2,1],[3,0,3,0],[2,1,3,1],[1,1,2,1]],[[1,2,2,2],[2,0,3,0],[2,1,3,1],[1,1,2,1]],[[1,2,3,1],[2,0,3,0],[2,1,3,1],[1,1,2,1]],[[1,3,2,1],[2,0,3,0],[2,1,3,1],[1,1,2,1]],[[2,2,2,1],[2,0,3,0],[2,1,3,1],[1,1,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,1],[0,2,2,2]],[[1,2,2,1],[2,0,3,0],[2,1,3,1],[0,2,3,1]],[[1,2,2,1],[2,0,3,0],[2,1,3,1],[0,3,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,4,1],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[3,1,3,1],[0,2,2,1]],[[1,2,2,1],[2,0,4,0],[2,1,3,1],[0,2,2,1]],[[1,2,2,1],[3,0,3,0],[2,1,3,1],[0,2,2,1]],[[1,2,2,2],[2,0,3,0],[2,1,3,1],[0,2,2,1]],[[1,2,3,1],[2,0,3,0],[2,1,3,1],[0,2,2,1]],[[1,3,2,1],[2,0,3,0],[2,1,3,1],[0,2,2,1]],[[2,2,2,1],[2,0,3,0],[2,1,3,1],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,2,2],[1,2,3,0]],[[1,2,2,1],[2,0,3,0],[2,1,2,2],[1,3,2,0]],[[1,2,2,1],[2,0,3,0],[2,1,2,2],[2,2,2,0]],[[1,2,2,1],[2,0,3,0],[3,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,4,0],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[3,0,3,0],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,0],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,0],[2,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,0,3,0],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,0,3,0],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,0],[2,1,2,2],[1,1,2,2]],[[1,2,2,1],[2,0,3,0],[2,1,2,2],[1,1,3,1]],[[1,2,2,1],[2,0,3,0],[2,1,2,3],[1,1,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,2,2],[0,2,2,2]],[[1,2,2,1],[2,0,3,0],[2,1,2,2],[0,2,3,1]],[[1,2,2,1],[2,0,3,0],[2,1,2,2],[0,3,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,2,3],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,2,1],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[2,1,2,1],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[2,1,2,1],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,2,1],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[3,1,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,4,0],[2,1,2,1],[1,2,2,1]],[[1,2,2,1],[3,0,3,0],[2,1,2,1],[1,2,2,1]],[[1,2,2,2],[2,0,3,0],[2,1,2,1],[1,2,2,1]],[[1,2,3,1],[2,0,3,0],[2,1,2,1],[1,2,2,1]],[[1,3,2,1],[2,0,3,0],[2,1,2,1],[1,2,2,1]],[[2,2,2,1],[2,0,3,0],[2,1,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[2,1,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[2,1,1,2],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[2,1,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[3,1,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,4,0],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[3,0,3,0],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[2,0,3,0],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,3,0],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,0,3,0],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,0,3,0],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[2,0,3,2],[1,1,2,2]],[[1,2,2,1],[2,0,3,0],[2,0,3,2],[1,1,3,1]],[[1,2,2,1],[2,0,3,0],[2,0,3,3],[1,1,2,1]],[[1,2,2,1],[2,0,3,0],[2,0,3,2],[0,2,2,2]],[[1,2,2,1],[2,0,3,0],[2,0,3,2],[0,2,3,1]],[[1,2,2,1],[2,0,3,0],[2,0,3,3],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,4,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,0],[1,4,3,2],[1,1,1,0]],[[1,2,2,1],[2,0,4,0],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[3,0,3,0],[1,3,3,2],[1,1,1,0]],[[1,2,2,2],[2,0,3,0],[1,3,3,2],[1,1,1,0]],[[1,2,3,1],[2,0,3,0],[1,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,0,3,0],[1,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,0,3,0],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,3,2],[1,1,0,2]],[[1,2,2,1],[2,0,3,0],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,0,3,0],[1,3,4,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,0],[1,4,3,2],[1,1,0,1]],[[1,2,2,1],[2,0,4,0],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,0,3,0],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,0,3,0],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,0,3,0],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,0,3,0],[1,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,0,3,0],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[2,0,3,0],[1,3,3,2],[1,0,3,0]],[[1,2,2,1],[2,0,3,0],[1,3,3,3],[1,0,2,0]],[[1,2,2,1],[2,0,3,0],[1,3,4,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,0],[1,4,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,4,0],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[3,0,3,0],[1,3,3,2],[1,0,2,0]],[[1,2,2,2],[2,0,3,0],[1,3,3,2],[1,0,2,0]],[[1,2,3,1],[2,0,3,0],[1,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,0,3,0],[1,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,0,3,0],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,3,0],[1,3,3,2],[1,0,1,2]],[[1,2,2,1],[2,0,3,0],[1,3,3,3],[1,0,1,1]],[[1,2,2,1],[2,0,3,0],[1,3,4,2],[1,0,1,1]],[[1,2,2,1],[2,0,3,0],[1,4,3,2],[1,0,1,1]],[[1,2,2,1],[2,0,4,0],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[3,0,3,0],[1,3,3,2],[1,0,1,1]],[[1,2,2,2],[2,0,3,0],[1,3,3,2],[1,0,1,1]],[[1,2,3,1],[2,0,3,0],[1,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,0,3,0],[1,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,0,3,0],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[0,1,1,2],[2,3,3,3],[1,2,2,1]],[[0,2,1,0],[0,1,1,2],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[0,1,1,2],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[0,1,1,2],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[0,1,1,2],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[0,1,2,2],[2,3,2,3],[1,2,2,1]],[[0,2,1,0],[0,1,2,2],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[0,1,2,2],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[0,1,2,2],[2,3,2,2],[1,2,3,1]],[[0,2,1,0],[0,1,2,2],[2,3,2,2],[1,2,2,2]],[[0,2,1,0],[0,1,2,2],[2,3,4,1],[1,2,2,1]],[[0,2,1,0],[0,1,2,2],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[0,1,2,2],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[0,1,2,2],[2,3,3,1],[1,2,3,1]],[[0,2,1,0],[0,1,2,2],[2,3,3,1],[1,2,2,2]],[[0,2,1,0],[0,1,2,2],[2,3,4,2],[1,2,1,1]],[[0,2,1,0],[0,1,2,2],[2,3,3,3],[1,2,1,1]],[[0,2,1,0],[0,1,2,2],[2,3,3,2],[1,2,1,2]],[[0,2,1,0],[0,1,2,2],[2,3,4,2],[1,2,2,0]],[[0,2,1,0],[0,1,2,2],[2,3,3,3],[1,2,2,0]],[[0,2,1,0],[0,1,2,2],[2,3,3,2],[2,2,2,0]],[[0,2,1,0],[0,1,2,2],[2,3,3,2],[1,3,2,0]],[[0,2,1,0],[0,1,2,2],[2,3,3,2],[1,2,3,0]],[[0,2,1,0],[0,1,3,0],[2,3,4,2],[1,2,2,1]],[[0,2,1,0],[0,1,3,0],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[0,1,3,0],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[0,1,3,0],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[0,1,3,0],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[0,1,3,1],[2,3,2,3],[1,2,2,1]],[[0,2,1,0],[0,1,3,1],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[0,1,3,1],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[0,1,3,1],[2,3,2,2],[1,2,3,1]],[[0,2,1,0],[0,1,3,1],[2,3,2,2],[1,2,2,2]],[[0,2,1,0],[0,1,3,1],[2,3,4,1],[1,2,2,1]],[[0,2,1,0],[0,1,3,1],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[0,1,3,1],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[0,1,3,1],[2,3,3,1],[1,2,3,1]],[[0,2,1,0],[0,1,3,1],[2,3,3,1],[1,2,2,2]],[[0,2,1,0],[0,1,3,1],[2,3,4,2],[1,2,1,1]],[[0,2,1,0],[0,1,3,1],[2,3,3,3],[1,2,1,1]],[[0,2,1,0],[0,1,3,1],[2,3,3,2],[1,2,1,2]],[[0,2,1,0],[0,1,3,1],[2,3,4,2],[1,2,2,0]],[[0,2,1,0],[0,1,3,1],[2,3,3,3],[1,2,2,0]],[[0,2,1,0],[0,1,3,1],[2,3,3,2],[2,2,2,0]],[[0,2,1,0],[0,1,3,1],[2,3,3,2],[1,3,2,0]],[[0,2,1,0],[0,1,3,1],[2,3,3,2],[1,2,3,0]],[[0,2,1,0],[0,1,3,2],[2,3,4,0],[1,2,2,1]],[[0,2,1,0],[0,1,3,2],[2,3,3,0],[2,2,2,1]],[[0,2,1,0],[0,1,3,2],[2,3,3,0],[1,3,2,1]],[[0,2,1,0],[0,1,3,2],[2,3,3,0],[1,2,3,1]],[[0,2,1,0],[0,1,3,2],[2,3,3,0],[1,2,2,2]],[[0,2,1,0],[0,1,3,2],[2,3,4,1],[1,2,2,0]],[[0,2,1,0],[0,1,3,2],[2,3,3,1],[2,2,2,0]],[[0,2,1,0],[0,1,3,2],[2,3,3,1],[1,3,2,0]],[[0,2,1,0],[0,1,3,2],[2,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,3,0],[1,3,3,2],[0,3,1,0]],[[0,2,1,0],[0,2,0,2],[2,3,3,3],[1,2,2,1]],[[0,2,1,0],[0,2,0,2],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[0,2,0,2],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[0,2,0,2],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[0,2,0,2],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[0,2,1,2],[2,2,3,3],[1,2,2,1]],[[0,2,1,0],[0,2,1,2],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[0,2,1,2],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[0,2,1,2],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[0,2,1,2],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[0,2,1,2],[2,3,3,3],[1,1,2,1]],[[0,2,1,0],[0,2,1,2],[2,3,3,2],[1,1,3,1]],[[0,2,1,0],[0,2,1,2],[2,3,3,2],[1,1,2,2]],[[0,2,1,0],[0,2,2,2],[2,1,3,3],[1,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,1,3,2],[1,2,3,1]],[[0,2,1,0],[0,2,2,2],[2,1,3,2],[1,2,2,2]],[[0,2,1,0],[0,2,2,3],[2,2,2,2],[1,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,2,2,3],[1,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[0,2,2,2],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[0,2,2,2],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[0,2,2,2],[2,2,4,1],[1,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[0,2,2,2],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[0,2,2,2],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[0,2,2,3],[2,2,3,2],[1,2,1,1]],[[0,2,1,0],[0,2,2,2],[2,2,4,2],[1,2,1,1]],[[0,2,1,0],[0,2,2,2],[2,2,3,3],[1,2,1,1]],[[0,2,1,0],[0,2,2,2],[2,2,3,2],[1,2,1,2]],[[0,2,1,0],[0,2,2,3],[2,2,3,2],[1,2,2,0]],[[0,2,1,0],[0,2,2,2],[2,2,4,2],[1,2,2,0]],[[0,2,1,0],[0,2,2,2],[2,2,3,3],[1,2,2,0]],[[0,2,1,0],[0,2,2,2],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[0,2,2,2],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[0,2,2,2],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[0,2,2,3],[2,3,1,2],[1,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,4,1,2],[1,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,1,3],[1,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,1,2],[2,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,1,2],[1,3,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,1,2],[1,2,3,1]],[[0,2,1,0],[0,2,2,2],[2,3,1,2],[1,2,2,2]],[[0,2,1,0],[0,2,2,2],[2,4,2,1],[1,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,2,1],[2,2,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,2,1],[1,3,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,2,1],[1,2,3,1]],[[0,2,1,0],[0,2,2,2],[2,3,2,1],[1,2,2,2]],[[0,2,1,0],[0,2,2,3],[2,3,2,2],[1,1,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,2,3],[1,1,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,2,2],[1,1,3,1]],[[0,2,1,0],[0,2,2,2],[2,3,2,2],[1,1,2,2]],[[0,2,1,0],[0,2,2,2],[2,4,2,2],[1,2,2,0]],[[0,2,1,0],[0,2,2,2],[2,3,2,2],[2,2,2,0]],[[0,2,1,0],[0,2,2,2],[2,3,2,2],[1,3,2,0]],[[0,2,1,0],[0,2,2,2],[2,3,2,2],[1,2,3,0]],[[0,2,1,0],[0,2,2,2],[2,4,3,1],[1,1,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,4,1],[1,1,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,1],[1,1,3,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,1],[1,1,2,2]],[[0,2,1,0],[0,2,2,2],[2,4,3,1],[1,2,1,1]],[[0,2,1,0],[0,2,2,2],[2,3,4,1],[1,2,1,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,1],[2,2,1,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,1],[1,3,1,1]],[[0,2,1,0],[0,2,2,2],[2,3,4,2],[1,0,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,3],[1,0,2,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,2],[1,0,2,2]],[[0,2,1,0],[0,2,2,3],[2,3,3,2],[1,1,1,1]],[[0,2,1,0],[0,2,2,2],[2,4,3,2],[1,1,1,1]],[[0,2,1,0],[0,2,2,2],[2,3,4,2],[1,1,1,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,3],[1,1,1,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,2],[1,1,1,2]],[[0,2,1,0],[0,2,2,3],[2,3,3,2],[1,1,2,0]],[[0,2,1,0],[0,2,2,2],[2,4,3,2],[1,1,2,0]],[[0,2,1,0],[0,2,2,2],[2,3,4,2],[1,1,2,0]],[[0,2,1,0],[0,2,2,2],[2,3,3,3],[1,1,2,0]],[[0,2,1,0],[0,2,2,2],[2,3,3,2],[1,1,3,0]],[[0,2,1,0],[0,2,2,3],[2,3,3,2],[1,2,0,1]],[[0,2,1,0],[0,2,2,2],[2,4,3,2],[1,2,0,1]],[[0,2,1,0],[0,2,2,2],[2,3,4,2],[1,2,0,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,3],[1,2,0,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,2],[2,2,0,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,2],[1,3,0,1]],[[0,2,1,0],[0,2,2,2],[2,3,3,2],[1,2,0,2]],[[0,2,1,0],[0,2,2,3],[2,3,3,2],[1,2,1,0]],[[0,2,1,0],[0,2,2,2],[2,4,3,2],[1,2,1,0]],[[0,2,1,0],[0,2,2,2],[2,3,4,2],[1,2,1,0]],[[0,2,1,0],[0,2,2,2],[2,3,3,3],[1,2,1,0]],[[0,2,1,0],[0,2,2,2],[2,3,3,2],[2,2,1,0]],[[0,2,1,0],[0,2,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,4,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,0],[1,4,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,4,0],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[3,0,3,0],[1,3,3,2],[0,2,1,0]],[[1,2,2,2],[2,0,3,0],[1,3,3,2],[0,2,1,0]],[[1,2,3,1],[2,0,3,0],[1,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,0,3,0],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[0,2,3,0],[2,2,4,2],[1,2,2,1]],[[0,2,1,0],[0,2,3,0],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[0,2,3,0],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[0,2,3,0],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[0,2,3,0],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[0,2,3,0],[2,4,2,2],[1,2,2,1]],[[0,2,1,0],[0,2,3,0],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[0,2,3,0],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[0,2,3,0],[2,3,2,2],[1,2,3,1]],[[0,2,1,0],[0,2,3,0],[2,3,2,2],[1,2,2,2]],[[0,2,1,0],[0,2,3,0],[2,4,3,2],[1,1,2,1]],[[0,2,1,0],[0,2,3,0],[2,3,4,2],[1,1,2,1]],[[0,2,1,0],[0,2,3,0],[2,3,3,2],[1,1,3,1]],[[0,2,1,0],[0,2,3,0],[2,3,3,2],[1,1,2,2]],[[0,2,1,0],[0,2,3,0],[2,4,3,2],[1,2,1,1]],[[0,2,1,0],[0,2,3,0],[2,3,4,2],[1,2,1,1]],[[0,2,1,0],[0,2,3,0],[2,3,3,2],[2,2,1,1]],[[0,2,1,0],[0,2,3,0],[2,3,3,2],[1,3,1,1]],[[0,2,1,0],[0,2,3,1],[2,1,3,3],[1,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,1,3,2],[1,2,3,1]],[[0,2,1,0],[0,2,3,1],[2,1,3,2],[1,2,2,2]],[[0,2,1,0],[0,2,3,1],[2,2,2,3],[1,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[0,2,3,1],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[0,2,3,1],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[0,2,4,1],[2,2,3,1],[1,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,2,4,1],[1,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[0,2,3,1],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[0,2,3,1],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[0,2,4,1],[2,2,3,2],[1,2,1,1]],[[0,2,1,0],[0,2,3,1],[2,2,4,2],[1,2,1,1]],[[0,2,1,0],[0,2,3,1],[2,2,3,3],[1,2,1,1]],[[0,2,1,0],[0,2,3,1],[2,2,3,2],[1,2,1,2]],[[0,2,1,0],[0,2,4,1],[2,2,3,2],[1,2,2,0]],[[0,2,1,0],[0,2,3,1],[2,2,4,2],[1,2,2,0]],[[0,2,1,0],[0,2,3,1],[2,2,3,3],[1,2,2,0]],[[0,2,1,0],[0,2,3,1],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[0,2,3,1],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[0,2,3,1],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[0,2,3,1],[2,4,1,2],[1,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,1,3],[1,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,1,2],[2,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,1,2],[1,3,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,1,2],[1,2,3,1]],[[0,2,1,0],[0,2,3,1],[2,3,1,2],[1,2,2,2]],[[0,2,1,0],[0,2,3,1],[2,4,2,1],[1,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,2,1],[2,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,2,1],[1,3,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,2,1],[1,2,3,1]],[[0,2,1,0],[0,2,3,1],[2,3,2,1],[1,2,2,2]],[[0,2,1,0],[0,2,3,1],[2,3,2,3],[1,1,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,2,2],[1,1,3,1]],[[0,2,1,0],[0,2,3,1],[2,3,2,2],[1,1,2,2]],[[0,2,1,0],[0,2,3,1],[2,4,2,2],[1,2,2,0]],[[0,2,1,0],[0,2,3,1],[2,3,2,2],[2,2,2,0]],[[0,2,1,0],[0,2,3,1],[2,3,2,2],[1,3,2,0]],[[0,2,1,0],[0,2,3,1],[2,3,2,2],[1,2,3,0]],[[0,2,1,0],[0,2,3,1],[2,4,3,0],[1,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,0],[2,2,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,0],[1,3,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,0],[1,2,3,1]],[[0,2,1,0],[0,2,4,1],[2,3,3,1],[1,1,2,1]],[[0,2,1,0],[0,2,3,1],[2,4,3,1],[1,1,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,4,1],[1,1,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,1],[1,1,3,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,1],[1,1,2,2]],[[0,2,1,0],[0,2,4,1],[2,3,3,1],[1,2,1,1]],[[0,2,1,0],[0,2,3,1],[2,4,3,1],[1,2,1,1]],[[0,2,1,0],[0,2,3,1],[2,3,4,1],[1,2,1,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,1],[2,2,1,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,1],[1,3,1,1]],[[0,2,1,0],[0,2,3,1],[2,3,4,2],[1,0,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,3],[1,0,2,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,2],[1,0,2,2]],[[0,2,1,0],[0,2,4,1],[2,3,3,2],[1,1,1,1]],[[0,2,1,0],[0,2,3,1],[2,4,3,2],[1,1,1,1]],[[0,2,1,0],[0,2,3,1],[2,3,4,2],[1,1,1,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,3],[1,1,1,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,2],[1,1,1,2]],[[0,2,1,0],[0,2,4,1],[2,3,3,2],[1,1,2,0]],[[0,2,1,0],[0,2,3,1],[2,4,3,2],[1,1,2,0]],[[0,2,1,0],[0,2,3,1],[2,3,4,2],[1,1,2,0]],[[0,2,1,0],[0,2,3,1],[2,3,3,3],[1,1,2,0]],[[0,2,1,0],[0,2,3,1],[2,3,3,2],[1,1,3,0]],[[0,2,1,0],[0,2,4,1],[2,3,3,2],[1,2,0,1]],[[0,2,1,0],[0,2,3,1],[2,4,3,2],[1,2,0,1]],[[0,2,1,0],[0,2,3,1],[2,3,4,2],[1,2,0,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,3],[1,2,0,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,2],[2,2,0,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,2],[1,3,0,1]],[[0,2,1,0],[0,2,3,1],[2,3,3,2],[1,2,0,2]],[[0,2,1,0],[0,2,4,1],[2,3,3,2],[1,2,1,0]],[[0,2,1,0],[0,2,3,1],[2,4,3,2],[1,2,1,0]],[[0,2,1,0],[0,2,3,1],[2,3,4,2],[1,2,1,0]],[[0,2,1,0],[0,2,3,1],[2,3,3,3],[1,2,1,0]],[[0,2,1,0],[0,2,3,1],[2,3,3,2],[2,2,1,0]],[[0,2,1,0],[0,2,3,1],[2,3,3,2],[1,3,1,0]],[[2,2,2,1],[2,0,3,0],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,3,2],[0,2,0,2]],[[1,2,2,1],[2,0,3,0],[1,3,3,2],[0,3,0,1]],[[1,2,2,1],[2,0,3,0],[1,3,3,3],[0,2,0,1]],[[1,2,2,1],[2,0,3,0],[1,3,4,2],[0,2,0,1]],[[1,2,2,1],[2,0,3,0],[1,4,3,2],[0,2,0,1]],[[1,2,2,1],[2,0,4,0],[1,3,3,2],[0,2,0,1]],[[1,2,2,1],[3,0,3,0],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[0,2,4,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[0,2,3,3],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,2,1,3],[1,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,2,1,2],[2,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,2,1,2],[1,3,2,1]],[[0,2,1,0],[0,2,3,2],[2,2,1,2],[1,2,3,1]],[[0,2,1,0],[0,2,3,2],[2,2,1,2],[1,2,2,2]],[[0,2,1,0],[0,2,4,2],[2,2,2,2],[1,2,1,1]],[[0,2,1,0],[0,2,3,3],[2,2,2,2],[1,2,1,1]],[[0,2,1,0],[0,2,3,2],[2,2,2,3],[1,2,1,1]],[[0,2,1,0],[0,2,3,2],[2,2,2,2],[1,2,1,2]],[[0,2,1,0],[0,2,4,2],[2,2,2,2],[1,2,2,0]],[[0,2,1,0],[0,2,3,3],[2,2,2,2],[1,2,2,0]],[[0,2,1,0],[0,2,3,2],[2,2,2,3],[1,2,2,0]],[[0,2,1,0],[0,2,4,2],[2,2,3,0],[1,2,2,1]],[[0,2,1,0],[0,2,3,3],[2,2,3,0],[1,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,2,4,0],[1,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,2,3,0],[2,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,2,3,0],[1,3,2,1]],[[0,2,1,0],[0,2,3,2],[2,2,3,0],[1,2,3,1]],[[0,2,1,0],[0,2,3,2],[2,2,3,0],[1,2,2,2]],[[0,2,1,0],[0,2,4,2],[2,2,3,1],[1,2,1,1]],[[0,2,1,0],[0,2,3,3],[2,2,3,1],[1,2,1,1]],[[0,2,1,0],[0,2,3,2],[2,2,4,1],[1,2,1,1]],[[0,2,1,0],[0,2,4,2],[2,2,3,1],[1,2,2,0]],[[0,2,1,0],[0,2,3,3],[2,2,3,1],[1,2,2,0]],[[0,2,1,0],[0,2,3,2],[2,2,4,1],[1,2,2,0]],[[0,2,1,0],[0,2,3,2],[2,2,3,1],[2,2,2,0]],[[0,2,1,0],[0,2,3,2],[2,2,3,1],[1,3,2,0]],[[0,2,1,0],[0,2,3,2],[2,2,3,1],[1,2,3,0]],[[1,2,2,2],[2,0,3,0],[1,3,3,2],[0,2,0,1]],[[1,2,3,1],[2,0,3,0],[1,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,0,3,0],[1,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,0,3,0],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[0,2,4,2],[2,3,0,2],[1,2,2,1]],[[0,2,1,0],[0,2,3,3],[2,3,0,2],[1,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,4,0,2],[1,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,3,0,3],[1,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,3,0,2],[2,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,3,0,2],[1,3,2,1]],[[0,2,1,0],[0,2,3,2],[2,3,0,2],[1,2,3,1]],[[0,2,1,0],[0,2,3,2],[2,3,0,2],[1,2,2,2]],[[0,2,1,0],[0,2,4,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[0,2,3,3],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[0,2,3,2],[2,3,1,3],[1,1,2,1]],[[0,2,1,0],[0,2,3,2],[2,3,1,2],[1,1,3,1]],[[0,2,1,0],[0,2,3,2],[2,3,1,2],[1,1,2,2]],[[0,2,1,0],[0,2,3,2],[2,4,2,0],[1,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,3,2,0],[2,2,2,1]],[[0,2,1,0],[0,2,3,2],[2,3,2,0],[1,3,2,1]],[[0,2,1,0],[0,2,3,2],[2,3,2,0],[1,2,3,1]],[[0,2,1,0],[0,2,3,2],[2,3,2,0],[1,2,2,2]],[[0,2,1,0],[0,2,3,2],[2,4,2,1],[1,2,2,0]],[[0,2,1,0],[0,2,3,2],[2,3,2,1],[2,2,2,0]],[[0,2,1,0],[0,2,3,2],[2,3,2,1],[1,3,2,0]],[[0,2,1,0],[0,2,3,2],[2,3,2,1],[1,2,3,0]],[[0,2,1,0],[0,2,4,2],[2,3,2,2],[1,1,1,1]],[[0,2,1,0],[0,2,3,3],[2,3,2,2],[1,1,1,1]],[[0,2,1,0],[0,2,3,2],[2,3,2,3],[1,1,1,1]],[[0,2,1,0],[0,2,3,2],[2,3,2,2],[1,1,1,2]],[[0,2,1,0],[0,2,4,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[0,2,3,3],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[0,2,3,2],[2,3,2,3],[1,1,2,0]],[[0,2,1,0],[0,2,4,2],[2,3,2,2],[1,2,0,1]],[[0,2,1,0],[0,2,3,3],[2,3,2,2],[1,2,0,1]],[[0,2,1,0],[0,2,3,2],[2,3,2,3],[1,2,0,1]],[[0,2,1,0],[0,2,3,2],[2,3,2,2],[1,2,0,2]],[[0,2,1,0],[0,2,4,2],[2,3,2,2],[1,2,1,0]],[[0,2,1,0],[0,2,3,3],[2,3,2,2],[1,2,1,0]],[[0,2,1,0],[0,2,3,2],[2,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,3,2],[0,1,3,0]],[[0,2,1,0],[0,2,4,2],[2,3,3,0],[1,1,2,1]],[[0,2,1,0],[0,2,3,3],[2,3,3,0],[1,1,2,1]],[[0,2,1,0],[0,2,3,2],[2,4,3,0],[1,1,2,1]],[[0,2,1,0],[0,2,3,2],[2,3,4,0],[1,1,2,1]],[[0,2,1,0],[0,2,3,2],[2,3,3,0],[1,1,3,1]],[[0,2,1,0],[0,2,3,2],[2,3,3,0],[1,1,2,2]],[[0,2,1,0],[0,2,4,2],[2,3,3,0],[1,2,1,1]],[[0,2,1,0],[0,2,3,3],[2,3,3,0],[1,2,1,1]],[[0,2,1,0],[0,2,3,2],[2,4,3,0],[1,2,1,1]],[[0,2,1,0],[0,2,3,2],[2,3,4,0],[1,2,1,1]],[[0,2,1,0],[0,2,3,2],[2,3,3,0],[2,2,1,1]],[[0,2,1,0],[0,2,3,2],[2,3,3,0],[1,3,1,1]],[[0,2,1,0],[0,2,4,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[0,2,3,3],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[0,2,3,2],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[0,2,3,2],[2,3,4,1],[1,1,1,1]],[[0,2,1,0],[0,2,4,2],[2,3,3,1],[1,1,2,0]],[[0,2,1,0],[0,2,3,3],[2,3,3,1],[1,1,2,0]],[[0,2,1,0],[0,2,3,2],[2,4,3,1],[1,1,2,0]],[[0,2,1,0],[0,2,3,2],[2,3,4,1],[1,1,2,0]],[[0,2,1,0],[0,2,3,2],[2,3,3,1],[1,1,3,0]],[[0,2,1,0],[0,2,4,2],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[0,2,3,3],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[0,2,3,2],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[0,2,3,2],[2,3,4,1],[1,2,0,1]],[[0,2,1,0],[0,2,3,2],[2,3,3,1],[2,2,0,1]],[[0,2,1,0],[0,2,3,2],[2,3,3,1],[1,3,0,1]],[[0,2,1,0],[0,2,4,2],[2,3,3,1],[1,2,1,0]],[[0,2,1,0],[0,2,3,3],[2,3,3,1],[1,2,1,0]],[[0,2,1,0],[0,2,3,2],[2,4,3,1],[1,2,1,0]],[[0,2,1,0],[0,2,3,2],[2,3,4,1],[1,2,1,0]],[[0,2,1,0],[0,2,3,2],[2,3,3,1],[2,2,1,0]],[[0,2,1,0],[0,2,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,3,3],[0,1,2,0]],[[1,2,2,1],[2,0,3,0],[1,3,4,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,0],[1,4,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,4,0],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[3,0,3,0],[1,3,3,2],[0,1,2,0]],[[1,2,2,2],[2,0,3,0],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[2,0,3,0],[1,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,0,3,0],[1,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,0,3,0],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,3,0],[1,3,3,2],[0,1,1,2]],[[1,2,2,1],[2,0,3,0],[1,3,3,3],[0,1,1,1]],[[1,2,2,1],[2,0,3,0],[1,3,4,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,0],[1,4,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,4,0],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[3,0,3,0],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[2,0,3,0],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[2,0,3,0],[1,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,0,3,0],[1,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,0,3,0],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,3,0],[1,3,3,2],[0,0,2,2]],[[1,2,2,1],[2,0,3,0],[1,3,3,3],[0,0,2,1]],[[1,2,2,1],[2,0,3,0],[1,3,4,2],[0,0,2,1]],[[1,2,2,1],[2,0,4,0],[1,3,3,2],[0,0,2,1]],[[1,2,2,1],[3,0,3,0],[1,3,3,2],[0,0,2,1]],[[1,2,2,2],[2,0,3,0],[1,3,3,2],[0,0,2,1]],[[1,2,3,1],[2,0,3,0],[1,3,3,2],[0,0,2,1]],[[1,3,2,1],[2,0,3,0],[1,3,3,2],[0,0,2,1]],[[2,2,2,1],[2,0,3,0],[1,3,3,2],[0,0,2,1]],[[0,2,1,0],[0,3,0,1],[2,4,3,2],[1,2,2,1]],[[0,2,1,0],[0,3,0,1],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[0,3,0,1],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[0,3,0,1],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,0,1],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,0,2],[2,2,3,3],[1,2,2,1]],[[0,2,1,0],[0,3,0,2],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[0,3,0,2],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[0,3,0,2],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,0,2],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,0,2],[2,4,2,2],[1,2,2,1]],[[0,2,1,0],[0,3,0,2],[2,3,2,3],[1,2,2,1]],[[0,2,1,0],[0,3,0,2],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[0,3,0,2],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[0,3,0,2],[2,3,2,2],[1,2,3,1]],[[0,2,1,0],[0,3,0,2],[2,3,2,2],[1,2,2,2]],[[0,2,1,0],[0,3,0,2],[2,4,3,1],[1,2,2,1]],[[0,2,1,0],[0,3,0,2],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[0,3,0,2],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[0,3,0,2],[2,3,3,1],[1,2,3,1]],[[0,2,1,0],[0,3,0,2],[2,3,3,1],[1,2,2,2]],[[0,2,1,0],[0,3,0,2],[2,3,3,3],[1,1,2,1]],[[0,2,1,0],[0,3,0,2],[2,3,3,2],[1,1,3,1]],[[0,2,1,0],[0,3,0,2],[2,3,3,2],[1,1,2,2]],[[0,2,1,0],[0,3,0,2],[2,4,3,2],[1,2,2,0]],[[0,2,1,0],[0,3,0,2],[2,3,3,2],[2,2,2,0]],[[0,2,1,0],[0,3,0,2],[2,3,3,2],[1,3,2,0]],[[0,2,1,0],[0,3,0,2],[2,3,3,2],[1,2,3,0]],[[0,2,1,0],[0,3,1,0],[2,4,3,2],[1,2,2,1]],[[0,2,1,0],[0,3,1,0],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[0,3,1,0],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[0,3,1,0],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,1,0],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,1,1],[2,4,3,1],[1,2,2,1]],[[0,2,1,0],[0,3,1,1],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[0,3,1,1],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[0,3,1,1],[2,3,3,1],[1,2,3,1]],[[0,2,1,0],[0,3,1,1],[2,3,3,1],[1,2,2,2]],[[0,2,1,0],[0,3,1,1],[2,4,3,2],[1,2,2,0]],[[0,2,1,0],[0,3,1,1],[2,3,3,2],[2,2,2,0]],[[0,2,1,0],[0,3,1,1],[2,3,3,2],[1,3,2,0]],[[0,2,1,0],[0,3,1,1],[2,3,3,2],[1,2,3,0]],[[0,2,1,0],[0,3,1,2],[0,3,3,3],[1,2,2,1]],[[0,2,1,0],[0,3,1,2],[0,3,3,2],[1,3,2,1]],[[0,2,1,0],[0,3,1,2],[0,3,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,1,2],[0,3,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,1,2],[1,2,3,3],[1,2,2,1]],[[0,2,1,0],[0,3,1,2],[1,2,3,2],[1,3,2,1]],[[0,2,1,0],[0,3,1,2],[1,2,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,1,2],[1,2,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,1,2],[1,3,3,3],[1,1,2,1]],[[0,2,1,0],[0,3,1,2],[1,3,3,2],[1,1,3,1]],[[0,2,1,0],[0,3,1,2],[1,3,3,2],[1,1,2,2]],[[0,2,1,0],[0,3,1,3],[2,2,2,2],[1,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,2,2,3],[1,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[0,3,1,2],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[0,3,1,2],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[0,3,1,2],[2,2,4,1],[1,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[0,3,1,2],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[0,3,1,2],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[0,3,1,2],[2,2,3,3],[0,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,2,3,2],[0,2,3,1]],[[0,2,1,0],[0,3,1,2],[2,2,3,2],[0,2,2,2]],[[0,2,1,0],[0,3,1,3],[2,2,3,2],[1,2,1,1]],[[0,2,1,0],[0,3,1,2],[2,2,4,2],[1,2,1,1]],[[0,2,1,0],[0,3,1,2],[2,2,3,3],[1,2,1,1]],[[0,2,1,0],[0,3,1,2],[2,2,3,2],[1,2,1,2]],[[0,2,1,0],[0,3,1,3],[2,2,3,2],[1,2,2,0]],[[0,2,1,0],[0,3,1,2],[2,2,4,2],[1,2,2,0]],[[0,2,1,0],[0,3,1,2],[2,2,3,3],[1,2,2,0]],[[0,2,1,0],[0,3,1,2],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[0,3,1,2],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[0,3,1,2],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[0,3,1,3],[2,3,1,2],[1,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,4,1,2],[1,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,1,3],[1,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,1,2],[2,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,1,2],[1,3,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,1,2],[1,2,3,1]],[[0,2,1,0],[0,3,1,2],[2,3,1,2],[1,2,2,2]],[[0,2,1,0],[0,3,1,2],[2,4,2,1],[1,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,2,1],[2,2,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,2,1],[1,3,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,2,1],[1,2,3,1]],[[0,2,1,0],[0,3,1,2],[2,3,2,1],[1,2,2,2]],[[0,2,1,0],[0,3,1,3],[2,3,2,2],[1,1,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,2,3],[1,1,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,2,2],[1,1,3,1]],[[0,2,1,0],[0,3,1,2],[2,3,2,2],[1,1,2,2]],[[0,2,1,0],[0,3,1,2],[2,4,2,2],[1,2,2,0]],[[0,2,1,0],[0,3,1,2],[2,3,2,2],[2,2,2,0]],[[0,2,1,0],[0,3,1,2],[2,3,2,2],[1,3,2,0]],[[0,2,1,0],[0,3,1,2],[2,3,2,2],[1,2,3,0]],[[0,2,1,0],[0,3,1,2],[2,4,3,1],[1,1,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,4,1],[1,1,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,1],[1,1,3,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,1],[1,1,2,2]],[[0,2,1,0],[0,3,1,2],[2,4,3,1],[1,2,1,1]],[[0,2,1,0],[0,3,1,2],[2,3,4,1],[1,2,1,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,1],[2,2,1,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,1],[1,3,1,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,3],[0,1,2,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,2],[0,1,3,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,2],[0,1,2,2]],[[0,2,1,0],[0,3,1,3],[2,3,3,2],[1,1,1,1]],[[0,2,1,0],[0,3,1,2],[2,4,3,2],[1,1,1,1]],[[0,2,1,0],[0,3,1,2],[2,3,4,2],[1,1,1,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,3],[1,1,1,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,2],[1,1,1,2]],[[0,2,1,0],[0,3,1,3],[2,3,3,2],[1,1,2,0]],[[0,2,1,0],[0,3,1,2],[2,4,3,2],[1,1,2,0]],[[0,2,1,0],[0,3,1,2],[2,3,4,2],[1,1,2,0]],[[0,2,1,0],[0,3,1,2],[2,3,3,3],[1,1,2,0]],[[0,2,1,0],[0,3,1,2],[2,3,3,2],[1,1,3,0]],[[0,2,1,0],[0,3,1,3],[2,3,3,2],[1,2,0,1]],[[0,2,1,0],[0,3,1,2],[2,4,3,2],[1,2,0,1]],[[0,2,1,0],[0,3,1,2],[2,3,4,2],[1,2,0,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,3],[1,2,0,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,2],[2,2,0,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,2],[1,3,0,1]],[[0,2,1,0],[0,3,1,2],[2,3,3,2],[1,2,0,2]],[[0,2,1,0],[0,3,1,3],[2,3,3,2],[1,2,1,0]],[[0,2,1,0],[0,3,1,2],[2,4,3,2],[1,2,1,0]],[[0,2,1,0],[0,3,1,2],[2,3,4,2],[1,2,1,0]],[[0,2,1,0],[0,3,1,2],[2,3,3,3],[1,2,1,0]],[[0,2,1,0],[0,3,1,2],[2,3,3,2],[2,2,1,0]],[[0,2,1,0],[0,3,1,2],[2,3,3,2],[1,3,1,0]],[[0,2,1,0],[0,3,2,0],[2,2,4,2],[1,2,2,1]],[[0,2,1,0],[0,3,2,0],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[0,3,2,0],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[0,3,2,0],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,2,0],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,2,0],[2,4,2,2],[1,2,2,1]],[[0,2,1,0],[0,3,2,0],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[0,3,2,0],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[0,3,2,0],[2,3,2,2],[1,2,3,1]],[[0,2,1,0],[0,3,2,0],[2,3,2,2],[1,2,2,2]],[[0,2,1,0],[0,3,2,0],[2,4,3,2],[1,1,2,1]],[[0,2,1,0],[0,3,2,0],[2,3,4,2],[1,1,2,1]],[[0,2,1,0],[0,3,2,0],[2,3,3,2],[1,1,3,1]],[[0,2,1,0],[0,3,2,0],[2,3,3,2],[1,1,2,2]],[[0,2,1,0],[0,3,2,0],[2,4,3,2],[1,2,1,1]],[[0,2,1,0],[0,3,2,0],[2,3,4,2],[1,2,1,1]],[[0,2,1,0],[0,3,2,0],[2,3,3,2],[2,2,1,1]],[[0,2,1,0],[0,3,2,0],[2,3,3,2],[1,3,1,1]],[[0,2,1,0],[0,3,2,1],[2,2,2,3],[1,2,2,1]],[[0,2,1,0],[0,3,2,1],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[0,3,2,1],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[0,3,2,1],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[0,3,2,1],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[0,3,2,1],[2,2,4,1],[1,2,2,1]],[[0,2,1,0],[0,3,2,1],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[0,3,2,1],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[0,3,2,1],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[0,3,2,1],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[0,3,2,1],[2,2,4,2],[1,2,1,1]],[[0,2,1,0],[0,3,2,1],[2,2,3,3],[1,2,1,1]],[[0,2,1,0],[0,3,2,1],[2,2,3,2],[1,2,1,2]],[[0,2,1,0],[0,3,2,1],[2,2,4,2],[1,2,2,0]],[[0,2,1,0],[0,3,2,1],[2,2,3,3],[1,2,2,0]],[[0,2,1,0],[0,3,2,1],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[0,3,2,1],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[0,3,2,1],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[0,3,2,1],[2,4,1,2],[1,2,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,1,3],[1,2,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,1,2],[2,2,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,1,2],[1,3,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,1,2],[1,2,3,1]],[[0,2,1,0],[0,3,2,1],[2,3,1,2],[1,2,2,2]],[[0,2,1,0],[0,3,2,1],[2,4,2,1],[1,2,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,2,1],[2,2,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,2,1],[1,3,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,2,1],[1,2,3,1]],[[0,2,1,0],[0,3,2,1],[2,3,2,1],[1,2,2,2]],[[0,2,1,0],[0,3,2,1],[2,3,2,3],[1,1,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,2,2],[1,1,3,1]],[[0,2,1,0],[0,3,2,1],[2,3,2,2],[1,1,2,2]],[[0,2,1,0],[0,3,2,1],[2,4,2,2],[1,2,2,0]],[[0,2,1,0],[0,3,2,1],[2,3,2,2],[2,2,2,0]],[[0,2,1,0],[0,3,2,1],[2,3,2,2],[1,3,2,0]],[[0,2,1,0],[0,3,2,1],[2,3,2,2],[1,2,3,0]],[[0,2,1,0],[0,3,2,1],[2,4,3,0],[1,2,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,0],[2,2,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,0],[1,3,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,0],[1,2,3,1]],[[0,2,1,0],[0,3,2,1],[2,4,3,1],[1,1,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,4,1],[1,1,2,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,1],[1,1,3,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,1],[1,1,2,2]],[[0,2,1,0],[0,3,2,1],[2,4,3,1],[1,2,1,1]],[[0,2,1,0],[0,3,2,1],[2,3,4,1],[1,2,1,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,1],[2,2,1,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,1],[1,3,1,1]],[[0,2,1,0],[0,3,2,1],[2,4,3,2],[1,1,1,1]],[[0,2,1,0],[0,3,2,1],[2,3,4,2],[1,1,1,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,3],[1,1,1,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,2],[1,1,1,2]],[[0,2,1,0],[0,3,2,1],[2,4,3,2],[1,1,2,0]],[[0,2,1,0],[0,3,2,1],[2,3,4,2],[1,1,2,0]],[[0,2,1,0],[0,3,2,1],[2,3,3,3],[1,1,2,0]],[[0,2,1,0],[0,3,2,1],[2,3,3,2],[1,1,3,0]],[[0,2,1,0],[0,3,2,1],[2,4,3,2],[1,2,0,1]],[[0,2,1,0],[0,3,2,1],[2,3,4,2],[1,2,0,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,3],[1,2,0,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,2],[2,2,0,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,2],[1,3,0,1]],[[0,2,1,0],[0,3,2,1],[2,3,3,2],[1,2,0,2]],[[0,2,1,0],[0,3,2,1],[2,4,3,2],[1,2,1,0]],[[0,2,1,0],[0,3,2,1],[2,3,4,2],[1,2,1,0]],[[0,2,1,0],[0,3,2,1],[2,3,3,3],[1,2,1,0]],[[0,2,1,0],[0,3,2,1],[2,3,3,2],[2,2,1,0]],[[0,2,1,0],[0,3,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[1,4,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,4,0],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,0,3,0],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[2,0,3,0],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,0,3,0],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,0,3,0],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[0,3,2,2],[0,2,3,3],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[0,2,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,2,2],[0,2,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,2,3],[0,3,2,2],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[0,3,2,3],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[0,3,2,2],[1,3,2,1]],[[0,2,1,0],[0,3,2,2],[0,3,2,2],[1,2,3,1]],[[0,2,1,0],[0,3,2,2],[0,3,2,2],[1,2,2,2]],[[0,2,1,0],[0,3,2,2],[0,3,4,1],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[0,3,3,1],[1,3,2,1]],[[0,2,1,0],[0,3,2,2],[0,3,3,1],[1,2,3,1]],[[0,2,1,0],[0,3,2,2],[0,3,3,1],[1,2,2,2]],[[0,2,1,0],[0,3,2,3],[0,3,3,2],[1,2,1,1]],[[0,2,1,0],[0,3,2,2],[0,3,4,2],[1,2,1,1]],[[0,2,1,0],[0,3,2,2],[0,3,3,3],[1,2,1,1]],[[0,2,1,0],[0,3,2,2],[0,3,3,2],[1,2,1,2]],[[0,2,1,0],[0,3,2,3],[0,3,3,2],[1,2,2,0]],[[0,2,1,0],[0,3,2,2],[0,3,4,2],[1,2,2,0]],[[0,2,1,0],[0,3,2,2],[0,3,3,3],[1,2,2,0]],[[0,2,1,0],[0,3,2,2],[0,3,3,2],[1,3,2,0]],[[0,2,1,0],[0,3,2,2],[0,3,3,2],[1,2,3,0]],[[0,2,1,0],[0,3,2,2],[1,1,3,3],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,1,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,2,2],[1,1,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,2,3],[1,2,2,2],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,2,2,3],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,2,2,2],[2,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,2,2,2],[1,3,2,1]],[[0,2,1,0],[0,3,2,2],[1,2,2,2],[1,2,3,1]],[[0,2,1,0],[0,3,2,2],[1,2,2,2],[1,2,2,2]],[[0,2,1,0],[0,3,2,2],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[0,3,2,2],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[0,3,2,2],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[0,3,2,3],[1,2,3,2],[1,2,1,1]],[[0,2,1,0],[0,3,2,2],[1,2,4,2],[1,2,1,1]],[[0,2,1,0],[0,3,2,2],[1,2,3,3],[1,2,1,1]],[[0,2,1,0],[0,3,2,2],[1,2,3,2],[1,2,1,2]],[[0,2,1,0],[0,3,2,3],[1,2,3,2],[1,2,2,0]],[[0,2,1,0],[0,3,2,2],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[0,3,2,2],[1,2,3,3],[1,2,2,0]],[[0,2,1,0],[0,3,2,2],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[0,3,2,2],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[0,3,2,2],[1,2,3,2],[1,2,3,0]],[[0,2,1,0],[0,3,2,3],[1,3,1,2],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,1,3],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[0,3,2,2],[1,3,1,2],[1,2,2,2]],[[0,2,1,0],[0,3,2,2],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[0,3,2,2],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[0,3,2,3],[1,3,2,2],[1,1,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,2,3],[1,1,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,2,2],[1,1,3,1]],[[0,2,1,0],[0,3,2,2],[1,3,2,2],[1,1,2,2]],[[0,2,1,0],[0,3,2,2],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[0,3,2,2],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[0,3,2,2],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[0,3,2,2],[1,3,2,2],[1,2,3,0]],[[0,2,1,0],[0,3,2,2],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,1],[1,1,2,2]],[[0,2,1,0],[0,3,2,2],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[0,3,2,2],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[0,3,2,3],[1,3,3,2],[1,0,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,4,2],[1,0,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,3],[1,0,2,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,2],[1,0,2,2]],[[0,2,1,0],[0,3,2,3],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[0,3,2,2],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[0,3,2,2],[1,3,4,2],[1,1,1,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,3],[1,1,1,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,2],[1,1,1,2]],[[0,2,1,0],[0,3,2,3],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[0,3,2,2],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[0,3,2,2],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[0,3,2,2],[1,3,3,3],[1,1,2,0]],[[0,2,1,0],[0,3,2,2],[1,3,3,2],[1,1,3,0]],[[0,2,1,0],[0,3,2,3],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[0,3,2,2],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[0,3,2,2],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,3],[1,2,0,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[0,3,2,2],[1,3,3,2],[1,2,0,2]],[[0,2,1,0],[0,3,2,3],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[0,3,2,2],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[0,3,2,2],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[0,3,2,2],[1,3,3,3],[1,2,1,0]],[[0,2,1,0],[0,3,2,2],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[0,3,2,2],[1,3,3,2],[1,3,1,0]],[[2,2,2,1],[2,0,3,0],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[1,3,3,1],[1,0,2,2]],[[1,2,2,1],[2,0,3,0],[1,3,3,1],[1,0,3,1]],[[1,2,2,1],[2,0,3,0],[1,3,4,1],[1,0,2,1]],[[1,2,2,1],[2,0,3,0],[1,4,3,1],[1,0,2,1]],[[1,2,2,1],[2,0,4,0],[1,3,3,1],[1,0,2,1]],[[1,2,2,1],[3,0,3,0],[1,3,3,1],[1,0,2,1]],[[1,2,2,2],[2,0,3,0],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[0,3,2,2],[2,1,3,3],[0,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,1,3,2],[0,2,3,1]],[[0,2,1,0],[0,3,2,2],[2,1,3,2],[0,2,2,2]],[[0,2,1,0],[0,3,2,3],[2,2,2,2],[0,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,2,2,3],[0,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,2,2,2],[0,3,2,1]],[[0,2,1,0],[0,3,2,2],[2,2,2,2],[0,2,3,1]],[[0,2,1,0],[0,3,2,2],[2,2,2,2],[0,2,2,2]],[[0,2,1,0],[0,3,2,2],[2,2,4,0],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,2,3,0],[2,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,2,3,0],[1,3,2,1]],[[0,2,1,0],[0,3,2,2],[2,2,3,0],[1,2,3,1]],[[0,2,1,0],[0,3,2,2],[2,2,3,0],[1,2,2,2]],[[0,2,1,0],[0,3,2,2],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[0,3,2,2],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[0,3,2,2],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[0,3,2,2],[2,2,4,1],[1,2,2,0]],[[0,2,1,0],[0,3,2,2],[2,2,3,1],[2,2,2,0]],[[0,2,1,0],[0,3,2,2],[2,2,3,1],[1,3,2,0]],[[0,2,1,0],[0,3,2,2],[2,2,3,1],[1,2,3,0]],[[0,2,1,0],[0,3,2,3],[2,2,3,2],[0,2,1,1]],[[0,2,1,0],[0,3,2,2],[2,2,4,2],[0,2,1,1]],[[0,2,1,0],[0,3,2,2],[2,2,3,3],[0,2,1,1]],[[0,2,1,0],[0,3,2,2],[2,2,3,2],[0,2,1,2]],[[0,2,1,0],[0,3,2,3],[2,2,3,2],[0,2,2,0]],[[0,2,1,0],[0,3,2,2],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[0,3,2,2],[2,2,3,3],[0,2,2,0]],[[0,2,1,0],[0,3,2,2],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[0,3,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,3,1],[2,0,3,0],[1,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,0,3,0],[1,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,0,3,0],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[0,3,2,3],[2,3,0,2],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,4,0,2],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,0,3],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,0,2],[2,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,0,2],[1,3,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,0,2],[1,2,3,1]],[[0,2,1,0],[0,3,2,2],[2,3,0,2],[1,2,2,2]],[[0,2,1,0],[0,3,2,3],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,1,3],[0,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[0,3,2,2],[2,3,1,2],[0,2,2,2]],[[0,2,1,0],[0,3,2,2],[2,4,2,0],[1,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,0],[2,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,0],[1,3,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,0],[1,2,3,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,0],[1,2,2,2]],[[0,2,1,0],[0,3,2,2],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,1],[0,2,2,2]],[[0,2,1,0],[0,3,2,2],[2,4,2,1],[1,2,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,2,1],[2,2,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,2,1],[1,3,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,2,1],[1,2,3,0]],[[0,2,1,0],[0,3,2,3],[2,3,2,2],[0,1,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,3],[0,1,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,2],[0,1,3,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,2],[0,1,2,2]],[[0,2,1,0],[0,3,2,2],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[0,3,2,3],[2,3,2,2],[1,0,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,3],[1,0,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,2],[1,0,3,1]],[[0,2,1,0],[0,3,2,2],[2,3,2,2],[1,0,2,2]],[[0,2,1,0],[0,3,2,2],[2,4,3,0],[1,1,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,4,0],[1,1,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,0],[1,1,3,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,0],[1,1,2,2]],[[0,2,1,0],[0,3,2,2],[2,4,3,0],[1,2,1,1]],[[0,2,1,0],[0,3,2,2],[2,3,4,0],[1,2,1,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,0],[2,2,1,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,0],[1,3,1,1]],[[0,2,1,0],[0,3,2,2],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,1],[0,1,2,2]],[[0,2,1,0],[0,3,2,2],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[0,3,2,2],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[0,3,2,2],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,1],[1,0,2,2]],[[0,2,1,0],[0,3,2,2],[2,4,3,1],[1,1,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,4,1],[1,1,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,3,1],[1,1,3,0]],[[0,2,1,0],[0,3,2,2],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[0,3,2,2],[2,3,4,1],[1,2,0,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,1],[2,2,0,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,1],[1,3,0,1]],[[0,2,1,0],[0,3,2,2],[2,4,3,1],[1,2,1,0]],[[0,2,1,0],[0,3,2,2],[2,3,4,1],[1,2,1,0]],[[0,2,1,0],[0,3,2,2],[2,3,3,1],[2,2,1,0]],[[0,2,1,0],[0,3,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,3,1],[0,3,1,1]],[[1,2,2,1],[2,0,3,0],[1,3,4,1],[0,2,1,1]],[[1,2,2,1],[2,0,3,0],[1,4,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,4,0],[1,3,3,1],[0,2,1,1]],[[1,2,2,1],[3,0,3,0],[1,3,3,1],[0,2,1,1]],[[1,2,2,2],[2,0,3,0],[1,3,3,1],[0,2,1,1]],[[0,2,1,0],[0,3,2,3],[2,3,3,2],[0,0,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,4,2],[0,0,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,3],[0,0,2,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,2],[0,0,2,2]],[[0,2,1,0],[0,3,2,3],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[0,3,2,2],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[0,3,2,2],[2,3,4,2],[0,1,1,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,3],[0,1,1,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,2],[0,1,1,2]],[[0,2,1,0],[0,3,2,3],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[0,3,2,2],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,3,3],[0,1,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,3,2],[0,1,3,0]],[[0,2,1,0],[0,3,2,3],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[0,3,2,2],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[0,3,2,2],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,3],[0,2,0,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,2],[0,2,0,2]],[[0,2,1,0],[0,3,2,3],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[0,3,2,2],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[0,3,2,2],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[0,3,2,2],[2,3,3,3],[0,2,1,0]],[[0,2,1,0],[0,3,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,3,1],[2,0,3,0],[1,3,3,1],[0,2,1,1]],[[1,3,2,1],[2,0,3,0],[1,3,3,1],[0,2,1,1]],[[2,2,2,1],[2,0,3,0],[1,3,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,3,0],[1,3,3,1],[0,1,2,2]],[[1,2,2,1],[2,0,3,0],[1,3,3,1],[0,1,3,1]],[[1,2,2,1],[2,0,3,0],[1,3,4,1],[0,1,2,1]],[[1,2,2,1],[2,0,3,0],[1,4,3,1],[0,1,2,1]],[[0,2,1,0],[0,3,2,3],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[0,3,2,2],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[0,3,2,2],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,3],[1,0,1,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,2],[1,0,1,2]],[[0,2,1,0],[0,3,2,3],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[0,3,2,2],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,3,3],[1,0,2,0]],[[0,2,1,0],[0,3,2,2],[2,3,3,2],[1,0,3,0]],[[0,2,1,0],[0,3,2,3],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[0,3,2,2],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[0,3,2,2],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,3],[1,1,0,1]],[[0,2,1,0],[0,3,2,2],[2,3,3,2],[1,1,0,2]],[[0,2,1,0],[0,3,2,3],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[0,3,2,2],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[0,3,2,2],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[0,3,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,4,0],[1,3,3,1],[0,1,2,1]],[[1,2,2,1],[3,0,3,0],[1,3,3,1],[0,1,2,1]],[[1,2,2,2],[2,0,3,0],[1,3,3,1],[0,1,2,1]],[[1,2,3,1],[2,0,3,0],[1,3,3,1],[0,1,2,1]],[[1,3,2,1],[2,0,3,0],[1,3,3,1],[0,1,2,1]],[[2,2,2,1],[2,0,3,0],[1,3,3,1],[0,1,2,1]],[[1,2,2,1],[2,0,3,0],[1,3,3,0],[0,2,3,1]],[[1,2,2,1],[2,0,3,0],[1,3,3,0],[0,3,2,1]],[[1,2,2,1],[2,0,3,0],[1,4,3,0],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,2,2],[2,2,1,0]],[[1,2,2,1],[2,0,3,0],[1,4,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,2,2],[1,3,0,1]],[[1,2,2,1],[2,0,3,0],[1,3,2,2],[2,2,0,1]],[[1,2,2,1],[2,0,3,0],[1,4,2,2],[1,2,0,1]],[[0,2,1,0],[0,3,3,0],[0,3,4,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,0],[0,3,3,2],[1,3,2,1]],[[0,2,1,0],[0,3,3,0],[0,3,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,0],[0,3,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,1,0],[0,3,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,1,0],[0,3,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,3,0],[1,4,2,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,0],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[0,3,3,0],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[0,3,3,0],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,0],[1,3,2,2],[1,2,2,2]],[[0,2,1,0],[0,3,3,0],[1,4,3,2],[1,1,2,1]],[[0,2,1,0],[0,3,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,1,0],[0,3,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,1,0],[0,3,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,1,0],[0,3,3,0],[1,4,3,2],[1,2,1,1]],[[0,2,1,0],[0,3,3,0],[1,3,4,2],[1,2,1,1]],[[0,2,1,0],[0,3,3,0],[1,3,3,2],[2,2,1,1]],[[0,2,1,0],[0,3,3,0],[1,3,3,2],[1,3,1,1]],[[0,2,1,0],[0,3,3,0],[2,2,4,1],[1,2,2,1]],[[0,2,1,0],[0,3,3,0],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[0,3,3,0],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[0,3,3,0],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[0,3,3,0],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[0,3,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,1,0],[0,3,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,1,0],[0,3,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,1,0],[0,3,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,1,0],[0,3,3,0],[2,2,4,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,0],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[0,3,3,0],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[0,3,3,0],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[0,3,3,0],[2,4,2,1],[1,2,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,2,1],[2,2,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,2,1],[1,3,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,2,1],[1,2,3,1]],[[0,2,1,0],[0,3,3,0],[2,3,2,1],[1,2,2,2]],[[0,2,1,0],[0,3,3,0],[2,4,2,2],[0,2,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[0,3,3,0],[2,3,2,2],[0,2,2,2]],[[0,2,1,0],[0,3,3,0],[2,4,2,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,0],[2,3,2,2],[2,2,2,0]],[[0,2,1,0],[0,3,3,0],[2,3,2,2],[1,3,2,0]],[[0,2,1,0],[0,3,3,0],[2,3,2,2],[1,2,3,0]],[[0,2,1,0],[0,3,3,0],[2,4,3,0],[1,2,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,0],[2,2,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,0],[1,3,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,0],[1,2,3,1]],[[0,2,1,0],[0,3,3,0],[2,4,3,1],[1,1,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,4,1],[1,1,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,1],[1,1,3,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,1],[1,1,2,2]],[[0,2,1,0],[0,3,3,0],[2,4,3,1],[1,2,1,1]],[[0,2,1,0],[0,3,3,0],[2,3,4,1],[1,2,1,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,1],[2,2,1,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,1],[1,3,1,1]],[[0,2,1,0],[0,3,3,0],[2,4,3,2],[0,1,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,1,0],[0,3,3,0],[2,4,3,2],[0,2,1,1]],[[0,2,1,0],[0,3,3,0],[2,3,4,2],[0,2,1,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,2],[0,3,1,1]],[[0,2,1,0],[0,3,3,0],[2,4,3,2],[1,0,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,1,0],[0,3,3,0],[2,4,3,2],[1,1,2,0]],[[0,2,1,0],[0,3,3,0],[2,3,4,2],[1,1,2,0]],[[0,2,1,0],[0,3,3,0],[2,3,3,2],[1,1,3,0]],[[0,2,1,0],[0,3,3,0],[2,4,3,2],[1,2,0,1]],[[0,2,1,0],[0,3,3,0],[2,3,4,2],[1,2,0,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,2],[2,2,0,1]],[[0,2,1,0],[0,3,3,0],[2,3,3,2],[1,3,0,1]],[[0,2,1,0],[0,3,3,0],[2,4,3,2],[1,2,1,0]],[[0,2,1,0],[0,3,3,0],[2,3,4,2],[1,2,1,0]],[[0,2,1,0],[0,3,3,0],[2,3,3,2],[2,2,1,0]],[[0,2,1,0],[0,3,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,0,3,0],[1,3,2,2],[1,0,3,1]],[[1,2,2,1],[2,0,3,0],[1,3,2,3],[1,0,2,1]],[[0,2,1,0],[0,3,3,1],[0,2,3,3],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[0,2,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,1],[0,2,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,3,1],[0,3,2,3],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[0,3,2,2],[1,3,2,1]],[[0,2,1,0],[0,3,3,1],[0,3,2,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,1],[0,3,2,2],[1,2,2,2]],[[0,2,1,0],[0,3,4,1],[0,3,3,1],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[0,3,4,1],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[0,3,3,1],[1,3,2,1]],[[0,2,1,0],[0,3,3,1],[0,3,3,1],[1,2,3,1]],[[0,2,1,0],[0,3,3,1],[0,3,3,1],[1,2,2,2]],[[0,2,1,0],[0,3,4,1],[0,3,3,2],[1,2,1,1]],[[0,2,1,0],[0,3,3,1],[0,3,4,2],[1,2,1,1]],[[0,2,1,0],[0,3,3,1],[0,3,3,3],[1,2,1,1]],[[0,2,1,0],[0,3,3,1],[0,3,3,2],[1,2,1,2]],[[0,2,1,0],[0,3,4,1],[0,3,3,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,1],[0,3,4,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,1],[0,3,3,3],[1,2,2,0]],[[0,2,1,0],[0,3,3,1],[0,3,3,2],[1,3,2,0]],[[0,2,1,0],[0,3,3,1],[0,3,3,2],[1,2,3,0]],[[0,2,1,0],[0,3,3,1],[1,1,3,3],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,1,3,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,1],[1,1,3,2],[1,2,2,2]],[[0,2,1,0],[0,3,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,1,0],[0,3,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,1],[1,2,2,2],[1,2,2,2]],[[0,2,1,0],[0,3,4,1],[1,2,3,1],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[0,3,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[0,3,3,1],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[0,3,4,1],[1,2,3,2],[1,2,1,1]],[[0,2,1,0],[0,3,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,1,0],[0,3,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,1,0],[0,3,3,1],[1,2,3,2],[1,2,1,2]],[[0,2,1,0],[0,3,4,1],[1,2,3,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,1,0],[0,3,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[0,3,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[0,3,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,1,0],[0,3,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,1,0],[0,3,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[0,3,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[0,3,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,1,0],[0,3,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,1,0],[0,3,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[0,3,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[0,3,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,1,0],[0,3,3,1],[1,4,3,0],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,0],[2,2,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,0],[1,3,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,0],[1,2,3,1]],[[0,2,1,0],[0,3,4,1],[1,3,3,1],[1,1,2,1]],[[0,2,1,0],[0,3,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,1],[1,1,2,2]],[[0,2,1,0],[0,3,4,1],[1,3,3,1],[1,2,1,1]],[[0,2,1,0],[0,3,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[0,3,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[0,3,4,1],[1,3,3,2],[1,0,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,4,2],[1,0,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,3],[1,0,2,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,2],[1,0,2,2]],[[0,2,1,0],[0,3,4,1],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[0,3,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[0,3,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,2],[1,1,1,2]],[[0,2,1,0],[0,3,4,1],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[0,3,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[0,3,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[0,3,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,1,0],[0,3,3,1],[1,3,3,2],[1,1,3,0]],[[0,2,1,0],[0,3,4,1],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[0,3,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[0,3,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[0,3,3,1],[1,3,3,2],[1,2,0,2]],[[0,2,1,0],[0,3,4,1],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[0,3,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[0,3,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[0,3,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,1,0],[0,3,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[0,3,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,2,2],[0,2,3,0]],[[1,2,2,1],[2,0,3,0],[1,3,2,2],[0,3,2,0]],[[1,2,2,1],[2,0,3,0],[1,4,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,0],[1,3,2,2],[0,1,2,2]],[[1,2,2,1],[2,0,3,0],[1,3,2,2],[0,1,3,1]],[[0,2,1,0],[0,3,3,1],[2,1,3,3],[0,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,1,3,2],[0,2,3,1]],[[0,2,1,0],[0,3,3,1],[2,1,3,2],[0,2,2,2]],[[0,2,1,0],[0,3,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,1,0],[0,3,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,1,0],[0,3,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,1,0],[0,3,4,1],[2,2,3,1],[0,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[0,3,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[0,3,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[0,3,4,1],[2,2,3,2],[0,2,1,1]],[[0,2,1,0],[0,3,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,1,0],[0,3,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,1,0],[0,3,3,1],[2,2,3,2],[0,2,1,2]],[[0,2,1,0],[0,3,4,1],[2,2,3,2],[0,2,2,0]],[[0,2,1,0],[0,3,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[0,3,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,1,0],[0,3,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[0,3,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,3,0],[1,3,2,3],[0,1,2,1]],[[1,2,2,1],[2,0,3,0],[1,3,2,1],[1,3,1,1]],[[0,2,1,0],[0,3,3,1],[2,4,0,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,0,3],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,0,2],[2,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,0,2],[1,3,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,0,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,1],[2,3,0,2],[1,2,2,2]],[[0,2,1,0],[0,3,3,1],[2,4,1,1],[1,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,1,1],[2,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,1,1],[1,3,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,1,1],[1,2,3,1]],[[0,2,1,0],[0,3,3,1],[2,3,1,1],[1,2,2,2]],[[0,2,1,0],[0,3,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[0,3,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,1,0],[0,3,3,1],[2,4,1,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,1],[2,3,1,2],[2,2,2,0]],[[0,2,1,0],[0,3,3,1],[2,3,1,2],[1,3,2,0]],[[0,2,1,0],[0,3,3,1],[2,3,1,2],[1,2,3,0]],[[0,2,1,0],[0,3,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,1,0],[0,3,3,1],[2,4,2,1],[1,2,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,1],[2,2,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,1],[1,3,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,1,0],[0,3,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[0,3,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[0,3,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[0,3,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,1,0],[0,3,3,1],[2,4,2,2],[1,2,0,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,2],[2,2,0,1]],[[0,2,1,0],[0,3,3,1],[2,3,2,2],[1,3,0,1]],[[0,2,1,0],[0,3,3,1],[2,4,2,2],[1,2,1,0]],[[0,2,1,0],[0,3,3,1],[2,3,2,2],[2,2,1,0]],[[0,2,1,0],[0,3,3,1],[2,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,2,1],[2,2,1,1]],[[1,2,2,1],[2,0,3,0],[1,4,2,1],[1,2,1,1]],[[1,2,2,1],[2,0,3,0],[1,3,2,1],[0,2,2,2]],[[1,2,2,1],[2,0,3,0],[1,3,2,1],[0,2,3,1]],[[1,2,2,1],[2,0,3,0],[1,3,2,1],[0,3,2,1]],[[1,2,2,1],[2,0,3,0],[1,4,2,1],[0,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,4,3,0],[0,2,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,0],[0,3,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,0],[0,2,3,1]],[[0,2,1,0],[0,3,4,1],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[0,3,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,1],[0,1,2,2]],[[0,2,1,0],[0,3,4,1],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[0,3,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[0,3,4,1],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[0,3,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,1],[1,0,2,2]],[[0,2,1,0],[0,3,4,1],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[0,3,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[1,3,1,2],[1,2,3,0]],[[0,2,1,0],[0,3,4,1],[2,3,3,2],[0,0,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,2],[0,0,2,2]],[[0,2,1,0],[0,3,4,1],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[0,3,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,2],[0,1,1,2]],[[0,2,1,0],[0,3,4,1],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[0,3,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[0,3,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[0,3,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,1,0],[0,3,3,1],[2,3,3,2],[0,1,3,0]],[[0,2,1,0],[0,3,4,1],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[0,3,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[0,3,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,2],[0,2,0,2]],[[0,2,1,0],[0,3,4,1],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[0,3,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[0,3,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[0,3,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,1,0],[0,3,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,3,0],[1,3,1,2],[1,3,2,0]],[[1,2,2,1],[2,0,3,0],[1,3,1,2],[2,2,2,0]],[[1,2,2,1],[2,0,3,0],[1,4,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,0],[1,3,1,2],[0,2,2,2]],[[1,2,2,1],[2,0,3,0],[1,3,1,2],[0,2,3,1]],[[1,2,2,1],[2,0,3,0],[1,3,1,2],[0,3,2,1]],[[1,2,2,1],[2,0,3,0],[1,3,1,3],[0,2,2,1]],[[0,2,1,0],[0,3,4,1],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[0,3,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,2],[1,0,1,2]],[[0,2,1,0],[0,3,4,1],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[0,3,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[0,3,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[0,3,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,1,0],[0,3,3,1],[2,3,3,2],[1,0,3,0]],[[0,2,1,0],[0,3,4,1],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[0,3,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[0,3,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,1,0],[0,3,3,1],[2,3,3,2],[1,1,0,2]],[[0,2,1,0],[0,3,4,1],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[0,3,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[0,3,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[0,3,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,3,0],[1,4,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,3,1,1],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[1,3,1,1],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[1,3,1,1],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[1,3,1,1],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,4,1,1],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[1,3,0,2],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[1,3,0,2],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[1,3,0,2],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,3,0,3],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,4,0,2],[1,2,2,1]],[[0,2,1,0],[0,3,4,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,3],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[0,3,1,3],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[0,3,1,2],[1,3,2,1]],[[0,2,1,0],[0,3,3,2],[0,3,1,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,2],[0,3,1,2],[1,2,2,2]],[[0,2,1,0],[0,3,4,2],[0,3,2,2],[1,2,1,1]],[[0,2,1,0],[0,3,3,3],[0,3,2,2],[1,2,1,1]],[[0,2,1,0],[0,3,3,2],[0,3,2,3],[1,2,1,1]],[[0,2,1,0],[0,3,3,2],[0,3,2,2],[1,2,1,2]],[[0,2,1,0],[0,3,4,2],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,3],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,2],[0,3,2,3],[1,2,2,0]],[[0,2,1,0],[0,3,4,2],[0,3,3,0],[1,2,2,1]],[[0,2,1,0],[0,3,3,3],[0,3,3,0],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[0,3,4,0],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[0,3,3,0],[1,3,2,1]],[[0,2,1,0],[0,3,3,2],[0,3,3,0],[1,2,3,1]],[[0,2,1,0],[0,3,3,2],[0,3,3,0],[1,2,2,2]],[[0,2,1,0],[0,3,4,2],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[0,3,3,3],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[0,3,3,2],[0,3,4,1],[1,2,1,1]],[[0,2,1,0],[0,3,4,2],[0,3,3,1],[1,2,2,0]],[[0,2,1,0],[0,3,3,3],[0,3,3,1],[1,2,2,0]],[[0,2,1,0],[0,3,3,2],[0,3,4,1],[1,2,2,0]],[[0,2,1,0],[0,3,3,2],[0,3,3,1],[1,3,2,0]],[[0,2,1,0],[0,3,3,2],[0,3,3,1],[1,2,3,0]],[[0,2,1,0],[0,3,4,2],[1,2,1,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,3],[1,2,1,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,2,1,3],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,2,1,2],[2,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,2,1,2],[1,3,2,1]],[[0,2,1,0],[0,3,3,2],[1,2,1,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,2],[1,2,1,2],[1,2,2,2]],[[0,2,1,0],[0,3,4,2],[1,2,2,2],[1,2,1,1]],[[0,2,1,0],[0,3,3,3],[1,2,2,2],[1,2,1,1]],[[0,2,1,0],[0,3,3,2],[1,2,2,3],[1,2,1,1]],[[0,2,1,0],[0,3,3,2],[1,2,2,2],[1,2,1,2]],[[0,2,1,0],[0,3,4,2],[1,2,2,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,3],[1,2,2,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,2],[1,2,2,3],[1,2,2,0]],[[0,2,1,0],[0,3,4,2],[1,2,3,0],[1,2,2,1]],[[0,2,1,0],[0,3,3,3],[1,2,3,0],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,1,0],[0,3,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,1,0],[0,3,3,2],[1,2,3,0],[1,2,2,2]],[[0,2,1,0],[0,3,4,2],[1,2,3,1],[1,2,1,1]],[[0,2,1,0],[0,3,3,3],[1,2,3,1],[1,2,1,1]],[[0,2,1,0],[0,3,3,2],[1,2,4,1],[1,2,1,1]],[[0,2,1,0],[0,3,4,2],[1,2,3,1],[1,2,2,0]],[[0,2,1,0],[0,3,3,3],[1,2,3,1],[1,2,2,0]],[[0,2,1,0],[0,3,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,1,0],[0,3,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,1,0],[0,3,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,1,0],[0,3,3,2],[1,2,3,1],[1,2,3,0]],[[0,2,1,0],[0,3,4,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,3],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,4,0,2],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,0,3],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,0,2],[2,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,0,2],[1,3,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,0,2],[1,2,3,1]],[[0,2,1,0],[0,3,3,2],[1,3,0,2],[1,2,2,2]],[[0,2,1,0],[0,3,4,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[0,3,3,3],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,1,3],[1,1,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,1,2],[1,1,3,1]],[[0,2,1,0],[0,3,3,2],[1,3,1,2],[1,1,2,2]],[[0,2,1,0],[0,3,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,1,0],[0,3,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,1,0],[0,3,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,1,0],[0,3,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,1,0],[0,3,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,1,0],[0,3,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,1,0],[0,3,4,2],[1,3,2,2],[1,0,2,1]],[[0,2,1,0],[0,3,3,3],[1,3,2,2],[1,0,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,2,3],[1,0,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,2,2],[1,0,2,2]],[[0,2,1,0],[0,3,4,2],[1,3,2,2],[1,1,1,1]],[[0,2,1,0],[0,3,3,3],[1,3,2,2],[1,1,1,1]],[[0,2,1,0],[0,3,3,2],[1,3,2,3],[1,1,1,1]],[[0,2,1,0],[0,3,3,2],[1,3,2,2],[1,1,1,2]],[[0,2,1,0],[0,3,4,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[0,3,3,3],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[0,3,3,2],[1,3,2,3],[1,1,2,0]],[[0,2,1,0],[0,3,4,2],[1,3,2,2],[1,2,0,1]],[[0,2,1,0],[0,3,3,3],[1,3,2,2],[1,2,0,1]],[[0,2,1,0],[0,3,3,2],[1,3,2,3],[1,2,0,1]],[[0,2,1,0],[0,3,3,2],[1,3,2,2],[1,2,0,2]],[[0,2,1,0],[0,3,4,2],[1,3,2,2],[1,2,1,0]],[[0,2,1,0],[0,3,3,3],[1,3,2,2],[1,2,1,0]],[[0,2,1,0],[0,3,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,0,3,0],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,3,0],[1,2,3,2],[0,3,2,0]],[[1,2,2,1],[2,0,3,0],[1,2,3,3],[0,2,2,0]],[[1,2,2,1],[2,0,3,0],[1,2,4,2],[0,2,2,0]],[[1,2,2,1],[2,0,4,0],[1,2,3,2],[0,2,2,0]],[[1,2,2,1],[3,0,3,0],[1,2,3,2],[0,2,2,0]],[[1,2,2,2],[2,0,3,0],[1,2,3,2],[0,2,2,0]],[[1,2,3,1],[2,0,3,0],[1,2,3,2],[0,2,2,0]],[[0,2,1,0],[0,3,4,2],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[0,3,3,3],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[0,3,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,1,0],[0,3,3,2],[1,3,3,0],[1,1,2,2]],[[0,2,1,0],[0,3,4,2],[1,3,3,0],[1,2,1,1]],[[0,2,1,0],[0,3,3,3],[1,3,3,0],[1,2,1,1]],[[0,2,1,0],[0,3,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,1,0],[0,3,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,1,0],[0,3,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,1,0],[0,3,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,1,0],[0,3,4,2],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[0,3,3,3],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[0,3,3,2],[1,3,4,1],[1,0,2,1]],[[0,2,1,0],[0,3,4,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[0,3,3,3],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[0,3,3,2],[1,4,3,1],[1,1,1,1]],[[0,2,1,0],[0,3,3,2],[1,3,4,1],[1,1,1,1]],[[0,2,1,0],[0,3,4,2],[1,3,3,1],[1,1,2,0]],[[0,2,1,0],[0,3,3,3],[1,3,3,1],[1,1,2,0]],[[0,2,1,0],[0,3,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,1,0],[0,3,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,1,0],[0,3,3,2],[1,3,3,1],[1,1,3,0]],[[0,2,1,0],[0,3,4,2],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[0,3,3,3],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[0,3,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,1,0],[0,3,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,1,0],[0,3,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,1,0],[0,3,3,2],[1,3,3,1],[1,3,0,1]],[[0,2,1,0],[0,3,4,2],[1,3,3,1],[1,2,1,0]],[[0,2,1,0],[0,3,3,3],[1,3,3,1],[1,2,1,0]],[[0,2,1,0],[0,3,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,1,0],[0,3,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,1,0],[0,3,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,1,0],[0,3,3,2],[1,3,3,1],[1,3,1,0]],[[1,3,2,1],[2,0,3,0],[1,2,3,2],[0,2,2,0]],[[2,2,2,1],[2,0,3,0],[1,2,3,2],[0,2,2,0]],[[1,2,2,1],[2,0,3,0],[1,2,3,2],[0,2,1,2]],[[1,2,2,1],[2,0,3,0],[1,2,3,3],[0,2,1,1]],[[1,2,2,1],[2,0,3,0],[1,2,4,2],[0,2,1,1]],[[1,2,2,1],[2,0,4,0],[1,2,3,2],[0,2,1,1]],[[1,2,2,1],[3,0,3,0],[1,2,3,2],[0,2,1,1]],[[1,2,2,2],[2,0,3,0],[1,2,3,2],[0,2,1,1]],[[0,2,1,0],[0,3,4,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[0,3,3,3],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[0,3,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,3,1],[2,0,3,0],[1,2,3,2],[0,2,1,1]],[[1,3,2,1],[2,0,3,0],[1,2,3,2],[0,2,1,1]],[[2,2,2,1],[2,0,3,0],[1,2,3,2],[0,2,1,1]],[[1,2,2,1],[2,0,3,0],[1,2,3,1],[0,2,2,2]],[[1,2,2,1],[2,0,3,0],[1,2,3,1],[0,2,3,1]],[[1,2,2,1],[2,0,3,0],[1,2,3,1],[0,3,2,1]],[[1,2,2,1],[2,0,3,0],[1,2,4,1],[0,2,2,1]],[[1,2,2,1],[2,0,4,0],[1,2,3,1],[0,2,2,1]],[[1,2,2,1],[3,0,3,0],[1,2,3,1],[0,2,2,1]],[[1,2,2,2],[2,0,3,0],[1,2,3,1],[0,2,2,1]],[[1,2,3,1],[2,0,3,0],[1,2,3,1],[0,2,2,1]],[[1,3,2,1],[2,0,3,0],[1,2,3,1],[0,2,2,1]],[[2,2,2,1],[2,0,3,0],[1,2,3,1],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,2,2,2],[0,2,2,2]],[[1,2,2,1],[2,0,3,0],[1,2,2,2],[0,2,3,1]],[[1,2,2,1],[2,0,3,0],[1,2,2,2],[0,3,2,1]],[[1,2,2,1],[2,0,3,0],[1,2,2,3],[0,2,2,1]],[[0,2,1,0],[0,3,4,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[0,3,3,3],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,2,1,3],[0,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,2,1,2],[0,3,2,1]],[[0,2,1,0],[0,3,3,2],[2,2,1,2],[0,2,3,1]],[[0,2,1,0],[0,3,3,2],[2,2,1,2],[0,2,2,2]],[[0,2,1,0],[0,3,4,2],[2,2,2,2],[0,2,1,1]],[[0,2,1,0],[0,3,3,3],[2,2,2,2],[0,2,1,1]],[[0,2,1,0],[0,3,3,2],[2,2,2,3],[0,2,1,1]],[[0,2,1,0],[0,3,3,2],[2,2,2,2],[0,2,1,2]],[[0,2,1,0],[0,3,4,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[0,3,3,3],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[0,3,3,2],[2,2,2,3],[0,2,2,0]],[[0,2,1,0],[0,3,4,2],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[0,3,3,3],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,1,0],[0,3,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,1,0],[0,3,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,1,0],[0,3,4,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[0,3,3,3],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[0,3,3,2],[2,2,4,1],[0,2,1,1]],[[0,2,1,0],[0,3,4,2],[2,2,3,1],[0,2,2,0]],[[0,2,1,0],[0,3,3,3],[2,2,3,1],[0,2,2,0]],[[0,2,1,0],[0,3,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,1,0],[0,3,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,1,0],[0,3,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,0,3,0],[1,1,3,2],[1,2,3,0]],[[1,2,2,1],[2,0,3,0],[1,1,3,2],[1,3,2,0]],[[1,2,2,1],[2,0,3,0],[1,1,3,2],[2,2,2,0]],[[1,2,2,1],[2,0,3,0],[1,1,3,3],[1,2,2,0]],[[1,2,2,1],[2,0,3,0],[1,1,4,2],[1,2,2,0]],[[1,2,2,1],[2,0,4,0],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[3,0,3,0],[1,1,3,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,0],[1,1,3,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,0],[1,1,3,2],[1,2,2,0]],[[1,3,2,1],[2,0,3,0],[1,1,3,2],[1,2,2,0]],[[2,2,2,1],[2,0,3,0],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,0],[1,1,3,2],[1,2,1,2]],[[1,2,2,1],[2,0,3,0],[1,1,3,3],[1,2,1,1]],[[1,2,2,1],[2,0,3,0],[1,1,4,2],[1,2,1,1]],[[1,2,2,1],[2,0,4,0],[1,1,3,2],[1,2,1,1]],[[1,2,2,1],[3,0,3,0],[1,1,3,2],[1,2,1,1]],[[1,2,2,2],[2,0,3,0],[1,1,3,2],[1,2,1,1]],[[1,2,3,1],[2,0,3,0],[1,1,3,2],[1,2,1,1]],[[1,3,2,1],[2,0,3,0],[1,1,3,2],[1,2,1,1]],[[2,2,2,1],[2,0,3,0],[1,1,3,2],[1,2,1,1]],[[1,2,2,1],[2,0,3,0],[1,1,3,2],[0,2,2,2]],[[1,2,2,1],[2,0,3,0],[1,1,3,2],[0,2,3,1]],[[1,2,2,1],[2,0,3,0],[1,1,3,3],[0,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,1,3,1],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[1,1,3,1],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[1,1,3,1],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[1,1,3,1],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,1,4,1],[1,2,2,1]],[[1,2,2,1],[2,0,4,0],[1,1,3,1],[1,2,2,1]],[[1,2,2,1],[3,0,3,0],[1,1,3,1],[1,2,2,1]],[[1,2,2,2],[2,0,3,0],[1,1,3,1],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,4,0,1],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,0,1],[2,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,0,1],[1,3,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,0,1],[1,2,3,1]],[[0,2,1,0],[0,3,3,2],[2,3,0,1],[1,2,2,2]],[[0,2,1,0],[0,3,4,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[0,3,3,3],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,4,0,2],[0,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,0,3],[0,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,0,2],[0,3,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,0,2],[0,2,3,1]],[[0,2,1,0],[0,3,3,2],[2,3,0,2],[0,2,2,2]],[[0,2,1,0],[0,3,3,2],[2,4,0,2],[1,2,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,0,2],[2,2,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,0,2],[1,3,1,1]],[[0,2,1,0],[0,3,3,2],[2,4,0,2],[1,2,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,0,2],[2,2,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,0,2],[1,3,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,0,2],[1,2,3,0]],[[0,2,1,0],[0,3,3,2],[2,4,1,0],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,0],[2,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,0],[1,3,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,0],[1,2,3,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,0],[1,2,2,2]],[[0,2,1,0],[0,3,3,2],[2,4,1,1],[1,2,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,1,1],[2,2,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,1,1],[1,3,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,1,1],[1,2,3,0]],[[0,2,1,0],[0,3,4,2],[2,3,1,2],[0,1,2,1]],[[0,2,1,0],[0,3,3,3],[2,3,1,2],[0,1,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,3],[0,1,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,2],[0,1,3,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,2],[0,1,2,2]],[[0,2,1,0],[0,3,4,2],[2,3,1,2],[1,0,2,1]],[[0,2,1,0],[0,3,3,3],[2,3,1,2],[1,0,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,2],[1,0,3,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,2],[1,0,2,2]],[[0,2,1,0],[0,3,3,2],[2,4,1,2],[1,2,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,2],[2,2,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,1,2],[1,3,0,1]],[[0,2,1,0],[0,3,3,2],[2,4,1,2],[1,2,1,0]],[[0,2,1,0],[0,3,3,2],[2,3,1,2],[2,2,1,0]],[[0,2,1,0],[0,3,3,2],[2,3,1,2],[1,3,1,0]],[[1,2,3,1],[2,0,3,0],[1,1,3,1],[1,2,2,1]],[[1,3,2,1],[2,0,3,0],[1,1,3,1],[1,2,2,1]],[[2,2,2,1],[2,0,3,0],[1,1,3,1],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,1,2,2],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[1,1,2,2],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[1,1,2,2],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[1,1,2,2],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[1,1,2,3],[1,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,1,0],[0,3,3,2],[2,4,2,0],[1,2,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,0],[2,2,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,0],[1,3,1,1]],[[0,2,1,0],[0,3,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,1,0],[0,3,3,2],[2,4,2,1],[1,2,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,1],[2,2,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,1],[1,3,0,1]],[[0,2,1,0],[0,3,3,2],[2,4,2,1],[1,2,1,0]],[[0,2,1,0],[0,3,3,2],[2,3,2,1],[2,2,1,0]],[[0,2,1,0],[0,3,3,2],[2,3,2,1],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[1,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[1,0,3,2],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[1,0,3,3],[1,2,2,1]],[[0,2,1,0],[0,3,4,2],[2,3,2,2],[0,0,2,1]],[[0,2,1,0],[0,3,3,3],[2,3,2,2],[0,0,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,3],[0,0,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,2],[0,0,2,2]],[[0,2,1,0],[0,3,4,2],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[0,3,3,3],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,3],[0,1,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,2],[0,1,1,2]],[[0,2,1,0],[0,3,4,2],[2,3,2,2],[0,1,2,0]],[[0,2,1,0],[0,3,3,3],[2,3,2,2],[0,1,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,2,3],[0,1,2,0]],[[0,2,1,0],[0,3,4,2],[2,3,2,2],[0,2,0,1]],[[0,2,1,0],[0,3,3,3],[2,3,2,2],[0,2,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,3],[0,2,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,2],[0,2,0,2]],[[0,2,1,0],[0,3,4,2],[2,3,2,2],[0,2,1,0]],[[0,2,1,0],[0,3,3,3],[2,3,2,2],[0,2,1,0]],[[0,2,1,0],[0,3,3,2],[2,3,2,3],[0,2,1,0]],[[0,2,1,0],[0,3,4,2],[2,3,2,2],[1,0,1,1]],[[0,2,1,0],[0,3,3,3],[2,3,2,2],[1,0,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,3],[1,0,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,2],[1,0,1,2]],[[0,2,1,0],[0,3,4,2],[2,3,2,2],[1,0,2,0]],[[0,2,1,0],[0,3,3,3],[2,3,2,2],[1,0,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,2,3],[1,0,2,0]],[[0,2,1,0],[0,3,4,2],[2,3,2,2],[1,1,0,1]],[[0,2,1,0],[0,3,3,3],[2,3,2,2],[1,1,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,3],[1,1,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,2,2],[1,1,0,2]],[[0,2,1,0],[0,3,4,2],[2,3,2,2],[1,1,1,0]],[[0,2,1,0],[0,3,3,3],[2,3,2,2],[1,1,1,0]],[[0,2,1,0],[0,3,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,0,3,0],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[0,3,3,2],[2,2,1,0]],[[1,2,2,1],[2,0,3,0],[0,3,3,3],[1,2,1,0]],[[1,2,2,1],[2,0,3,0],[0,3,4,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,0],[0,4,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,4,0],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[3,0,3,0],[0,3,3,2],[1,2,1,0]],[[1,2,2,2],[2,0,3,0],[0,3,3,2],[1,2,1,0]],[[1,2,3,1],[2,0,3,0],[0,3,3,2],[1,2,1,0]],[[1,3,2,1],[2,0,3,0],[0,3,3,2],[1,2,1,0]],[[2,2,2,1],[2,0,3,0],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,3,0],[0,3,3,2],[1,2,0,2]],[[0,2,1,0],[0,3,4,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[0,3,3,3],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[0,3,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,1,0],[0,3,3,2],[2,3,3,0],[0,1,2,2]],[[0,2,1,0],[0,3,4,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[0,3,3,3],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[0,3,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,3,0],[0,3,1,1]],[[0,2,1,0],[0,3,4,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[0,3,3,3],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[0,3,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,1,0],[0,3,3,2],[2,3,3,0],[1,0,2,2]],[[0,2,1,0],[0,3,4,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,0],[0,3,3,3],[2,3,3,0],[1,1,1,1]],[[0,2,1,0],[0,3,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,1,0],[0,3,3,2],[2,4,3,0],[1,2,1,0]],[[0,2,1,0],[0,3,3,2],[2,3,3,0],[2,2,1,0]],[[0,2,1,0],[0,3,3,2],[2,3,3,0],[1,3,1,0]],[[1,2,2,1],[2,0,3,0],[0,3,3,2],[1,3,0,1]],[[1,2,2,1],[2,0,3,0],[0,3,3,2],[2,2,0,1]],[[1,2,2,1],[2,0,3,0],[0,3,3,3],[1,2,0,1]],[[1,2,2,1],[2,0,3,0],[0,3,4,2],[1,2,0,1]],[[1,2,2,1],[2,0,3,0],[0,4,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,4,0],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[3,0,3,0],[0,3,3,2],[1,2,0,1]],[[1,2,2,2],[2,0,3,0],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[0,3,4,2],[2,3,3,1],[0,0,2,1]],[[0,2,1,0],[0,3,3,3],[2,3,3,1],[0,0,2,1]],[[0,2,1,0],[0,3,3,2],[2,3,4,1],[0,0,2,1]],[[0,2,1,0],[0,3,4,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[0,3,3,3],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[0,3,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,4,1],[0,1,1,1]],[[0,2,1,0],[0,3,4,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[0,3,3,3],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[0,3,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,3,1],[0,1,3,0]],[[0,2,1,0],[0,3,4,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[0,3,3,3],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[0,3,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,3,1],[0,3,0,1]],[[0,2,1,0],[0,3,4,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,0],[0,3,3,3],[2,3,3,1],[0,2,1,0]],[[0,2,1,0],[0,3,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,1,0],[0,3,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,1,0],[0,3,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,3,1],[2,0,3,0],[0,3,3,2],[1,2,0,1]],[[1,3,2,1],[2,0,3,0],[0,3,3,2],[1,2,0,1]],[[2,2,2,1],[2,0,3,0],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[0,3,4,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[0,3,3,3],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[0,3,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,1,0],[0,3,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,1,0],[0,3,4,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[0,3,3,3],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[0,3,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,1,0],[0,3,3,2],[2,3,3,1],[1,0,3,0]],[[0,2,1,0],[0,3,4,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[0,3,3,3],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[0,3,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,1,0],[0,3,4,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[0,3,3,3],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[0,3,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,1,0],[0,3,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,0,3,0],[0,3,3,2],[1,1,3,0]],[[1,2,2,1],[2,0,3,0],[0,3,3,3],[1,1,2,0]],[[1,2,2,1],[2,0,3,0],[0,3,4,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,0],[0,4,3,2],[1,1,2,0]],[[1,2,2,1],[2,0,4,0],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[3,0,3,0],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[2,0,3,0],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[2,0,3,0],[0,3,3,2],[1,1,2,0]],[[1,3,2,1],[2,0,3,0],[0,3,3,2],[1,1,2,0]],[[2,2,2,1],[2,0,3,0],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[2,0,3,0],[0,3,3,2],[1,1,1,2]],[[1,2,2,1],[2,0,3,0],[0,3,3,3],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[0,3,4,2],[1,1,1,1]],[[1,2,2,1],[2,0,3,0],[0,4,3,2],[1,1,1,1]],[[1,2,2,1],[2,0,4,0],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[3,0,3,0],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[2,0,3,0],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[2,0,3,0],[0,3,3,2],[1,1,1,1]],[[1,3,2,1],[2,0,3,0],[0,3,3,2],[1,1,1,1]],[[2,2,2,1],[2,0,3,0],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[0,3,4,2],[2,3,3,2],[0,1,0,1]],[[0,2,1,0],[0,3,3,3],[2,3,3,2],[0,1,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,0,3,0],[0,3,3,2],[1,0,2,2]],[[1,2,2,1],[2,0,3,0],[0,3,3,3],[1,0,2,1]],[[1,2,2,1],[2,0,3,0],[0,3,4,2],[1,0,2,1]],[[1,2,2,1],[2,0,4,0],[0,3,3,2],[1,0,2,1]],[[1,2,2,2],[2,0,3,0],[0,3,3,2],[1,0,2,1]],[[1,2,3,1],[2,0,3,0],[0,3,3,2],[1,0,2,1]],[[1,3,2,1],[2,0,3,0],[0,3,3,2],[1,0,2,1]],[[2,2,2,1],[2,0,3,0],[0,3,3,2],[1,0,2,1]],[[1,2,2,1],[2,0,3,0],[0,3,3,1],[1,3,1,1]],[[1,2,2,1],[2,0,3,0],[0,3,3,1],[2,2,1,1]],[[1,2,2,1],[2,0,3,0],[0,3,4,1],[1,2,1,1]],[[1,2,2,1],[2,0,3,0],[0,4,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,4,0],[0,3,3,1],[1,2,1,1]],[[1,2,2,1],[3,0,3,0],[0,3,3,1],[1,2,1,1]],[[1,2,2,2],[2,0,3,0],[0,3,3,1],[1,2,1,1]],[[1,2,3,1],[2,0,3,0],[0,3,3,1],[1,2,1,1]],[[1,3,2,1],[2,0,3,0],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[0,3,4,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[0,3,3,3],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[0,3,3,2],[2,3,3,3],[1,0,0,1]],[[2,2,2,1],[2,0,3,0],[0,3,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,3,0],[0,3,3,1],[1,1,2,2]],[[1,2,2,1],[2,0,3,0],[0,3,3,1],[1,1,3,1]],[[1,2,2,1],[2,0,3,0],[0,3,4,1],[1,1,2,1]],[[1,2,2,1],[2,0,3,0],[0,4,3,1],[1,1,2,1]],[[1,2,2,1],[2,0,4,0],[0,3,3,1],[1,1,2,1]],[[1,2,2,1],[3,0,3,0],[0,3,3,1],[1,1,2,1]],[[1,2,2,2],[2,0,3,0],[0,3,3,1],[1,1,2,1]],[[1,2,3,1],[2,0,3,0],[0,3,3,1],[1,1,2,1]],[[1,3,2,1],[2,0,3,0],[0,3,3,1],[1,1,2,1]],[[2,2,2,1],[2,0,3,0],[0,3,3,1],[1,1,2,1]],[[1,2,2,1],[2,0,3,0],[0,3,3,0],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[0,3,3,0],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[0,3,3,0],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[0,4,3,0],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[0,3,2,2],[1,2,3,0]],[[1,2,2,1],[2,0,3,0],[0,3,2,2],[1,3,2,0]],[[1,2,2,1],[2,0,3,0],[0,3,2,2],[2,2,2,0]],[[1,2,2,1],[2,0,3,0],[0,4,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,0],[0,3,2,2],[1,1,2,2]],[[1,2,2,1],[2,0,3,0],[0,3,2,2],[1,1,3,1]],[[1,2,2,1],[2,0,3,0],[0,3,2,3],[1,1,2,1]],[[1,2,2,1],[2,0,3,0],[0,3,2,1],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[0,3,2,1],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[0,3,2,1],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[0,3,2,1],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[0,4,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[0,3,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[0,3,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[0,3,1,2],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[0,3,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[0,3,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[0,4,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[0,2,3,2],[1,2,3,0]],[[1,2,2,1],[2,0,3,0],[0,2,3,2],[1,3,2,0]],[[1,2,2,1],[2,0,3,0],[0,2,3,2],[2,2,2,0]],[[1,2,2,1],[2,0,3,0],[0,2,3,3],[1,2,2,0]],[[1,2,2,1],[2,0,3,0],[0,2,4,2],[1,2,2,0]],[[1,2,2,1],[2,0,4,0],[0,2,3,2],[1,2,2,0]],[[1,2,2,1],[3,0,3,0],[0,2,3,2],[1,2,2,0]],[[1,2,2,2],[2,0,3,0],[0,2,3,2],[1,2,2,0]],[[1,2,3,1],[2,0,3,0],[0,2,3,2],[1,2,2,0]],[[1,3,2,1],[2,0,3,0],[0,2,3,2],[1,2,2,0]],[[2,2,2,1],[2,0,3,0],[0,2,3,2],[1,2,2,0]],[[1,2,2,1],[2,0,3,0],[0,2,3,2],[1,2,1,2]],[[1,2,2,1],[2,0,3,0],[0,2,3,3],[1,2,1,1]],[[1,2,2,1],[2,0,3,0],[0,2,4,2],[1,2,1,1]],[[1,2,2,1],[2,0,4,0],[0,2,3,2],[1,2,1,1]],[[0,2,1,0],[1,0,1,2],[2,3,3,3],[1,2,2,1]],[[0,2,1,0],[1,0,1,2],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[1,0,1,2],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,0,1,2],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,0,1,2],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,0,2,2],[2,3,2,3],[1,2,2,1]],[[0,2,1,0],[1,0,2,2],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[1,0,2,2],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[1,0,2,2],[2,3,2,2],[1,2,3,1]],[[0,2,1,0],[1,0,2,2],[2,3,2,2],[1,2,2,2]],[[0,2,1,0],[1,0,2,2],[2,3,4,1],[1,2,2,1]],[[0,2,1,0],[1,0,2,2],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[1,0,2,2],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[1,0,2,2],[2,3,3,1],[1,2,3,1]],[[0,2,1,0],[1,0,2,2],[2,3,3,1],[1,2,2,2]],[[0,2,1,0],[1,0,2,2],[2,3,4,2],[1,2,1,1]],[[0,2,1,0],[1,0,2,2],[2,3,3,3],[1,2,1,1]],[[0,2,1,0],[1,0,2,2],[2,3,3,2],[1,2,1,2]],[[0,2,1,0],[1,0,2,2],[2,3,4,2],[1,2,2,0]],[[0,2,1,0],[1,0,2,2],[2,3,3,3],[1,2,2,0]],[[0,2,1,0],[1,0,2,2],[2,3,3,2],[2,2,2,0]],[[0,2,1,0],[1,0,2,2],[2,3,3,2],[1,3,2,0]],[[0,2,1,0],[1,0,2,2],[2,3,3,2],[1,2,3,0]],[[0,2,1,0],[1,0,3,0],[2,3,4,2],[1,2,2,1]],[[0,2,1,0],[1,0,3,0],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[1,0,3,0],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,0,3,0],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,0,3,0],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,0,3,1],[2,3,2,3],[1,2,2,1]],[[0,2,1,0],[1,0,3,1],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[1,0,3,1],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[1,0,3,1],[2,3,2,2],[1,2,3,1]],[[0,2,1,0],[1,0,3,1],[2,3,2,2],[1,2,2,2]],[[0,2,1,0],[1,0,3,1],[2,3,4,1],[1,2,2,1]],[[0,2,1,0],[1,0,3,1],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[1,0,3,1],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[1,0,3,1],[2,3,3,1],[1,2,3,1]],[[0,2,1,0],[1,0,3,1],[2,3,3,1],[1,2,2,2]],[[0,2,1,0],[1,0,3,1],[2,3,4,2],[1,2,1,1]],[[0,2,1,0],[1,0,3,1],[2,3,3,3],[1,2,1,1]],[[0,2,1,0],[1,0,3,1],[2,3,3,2],[1,2,1,2]],[[0,2,1,0],[1,0,3,1],[2,3,4,2],[1,2,2,0]],[[0,2,1,0],[1,0,3,1],[2,3,3,3],[1,2,2,0]],[[0,2,1,0],[1,0,3,1],[2,3,3,2],[2,2,2,0]],[[0,2,1,0],[1,0,3,1],[2,3,3,2],[1,3,2,0]],[[0,2,1,0],[1,0,3,1],[2,3,3,2],[1,2,3,0]],[[0,2,1,0],[1,0,3,2],[2,3,4,0],[1,2,2,1]],[[0,2,1,0],[1,0,3,2],[2,3,3,0],[2,2,2,1]],[[0,2,1,0],[1,0,3,2],[2,3,3,0],[1,3,2,1]],[[0,2,1,0],[1,0,3,2],[2,3,3,0],[1,2,3,1]],[[0,2,1,0],[1,0,3,2],[2,3,3,0],[1,2,2,2]],[[0,2,1,0],[1,0,3,2],[2,3,4,1],[1,2,2,0]],[[0,2,1,0],[1,0,3,2],[2,3,3,1],[2,2,2,0]],[[0,2,1,0],[1,0,3,2],[2,3,3,1],[1,3,2,0]],[[0,2,1,0],[1,0,3,2],[2,3,3,1],[1,2,3,0]],[[1,2,2,1],[3,0,3,0],[0,2,3,2],[1,2,1,1]],[[1,2,2,2],[2,0,3,0],[0,2,3,2],[1,2,1,1]],[[1,2,3,1],[2,0,3,0],[0,2,3,2],[1,2,1,1]],[[1,3,2,1],[2,0,3,0],[0,2,3,2],[1,2,1,1]],[[2,2,2,1],[2,0,3,0],[0,2,3,2],[1,2,1,1]],[[1,2,2,1],[2,0,3,0],[0,2,3,1],[1,2,2,2]],[[0,2,1,0],[1,1,0,2],[2,3,3,3],[1,2,2,1]],[[0,2,1,0],[1,1,0,2],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[1,1,0,2],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,1,0,2],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,1,0,2],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,1,1,2],[1,3,3,3],[1,2,2,1]],[[0,2,1,0],[1,1,1,2],[1,3,3,2],[2,2,2,1]],[[0,2,1,0],[1,1,1,2],[1,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,1,1,2],[1,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,1,1,2],[1,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,1,1,2],[2,3,3,3],[0,2,2,1]],[[0,2,1,0],[1,1,1,2],[2,3,3,2],[0,3,2,1]],[[0,2,1,0],[1,1,1,2],[2,3,3,2],[0,2,3,1]],[[0,2,1,0],[1,1,1,2],[2,3,3,2],[0,2,2,2]],[[0,2,1,0],[1,1,2,2],[1,3,2,3],[1,2,2,1]],[[0,2,1,0],[1,1,2,2],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[1,1,2,2],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[1,1,2,2],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[1,1,2,2],[1,3,2,2],[1,2,2,2]],[[0,2,1,0],[1,1,2,2],[1,3,4,1],[1,2,2,1]],[[0,2,1,0],[1,1,2,2],[1,3,3,1],[2,2,2,1]],[[0,2,1,0],[1,1,2,2],[1,3,3,1],[1,3,2,1]],[[0,2,1,0],[1,1,2,2],[1,3,3,1],[1,2,3,1]],[[0,2,1,0],[1,1,2,2],[1,3,3,1],[1,2,2,2]],[[0,2,1,0],[1,1,2,2],[1,3,4,2],[1,2,1,1]],[[0,2,1,0],[1,1,2,2],[1,3,3,3],[1,2,1,1]],[[0,2,1,0],[1,1,2,2],[1,3,3,2],[1,2,1,2]],[[0,2,1,0],[1,1,2,2],[1,3,4,2],[1,2,2,0]],[[0,2,1,0],[1,1,2,2],[1,3,3,3],[1,2,2,0]],[[0,2,1,0],[1,1,2,2],[1,3,3,2],[2,2,2,0]],[[0,2,1,0],[1,1,2,2],[1,3,3,2],[1,3,2,0]],[[0,2,1,0],[1,1,2,2],[1,3,3,2],[1,2,3,0]],[[0,2,1,0],[1,1,2,2],[2,3,2,3],[0,2,2,1]],[[0,2,1,0],[1,1,2,2],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[1,1,2,2],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[1,1,2,2],[2,3,2,2],[0,2,2,2]],[[0,2,1,0],[1,1,2,2],[2,3,4,1],[0,2,2,1]],[[0,2,1,0],[1,1,2,2],[2,3,3,1],[0,3,2,1]],[[0,2,1,0],[1,1,2,2],[2,3,3,1],[0,2,3,1]],[[0,2,1,0],[1,1,2,2],[2,3,3,1],[0,2,2,2]],[[0,2,1,0],[1,1,2,2],[2,3,4,2],[0,2,1,1]],[[0,2,1,0],[1,1,2,2],[2,3,3,3],[0,2,1,1]],[[0,2,1,0],[1,1,2,2],[2,3,3,2],[0,2,1,2]],[[0,2,1,0],[1,1,2,2],[2,3,4,2],[0,2,2,0]],[[0,2,1,0],[1,1,2,2],[2,3,3,3],[0,2,2,0]],[[0,2,1,0],[1,1,2,2],[2,3,3,2],[0,3,2,0]],[[0,2,1,0],[1,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,3,0],[0,2,3,1],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[0,2,3,1],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[0,2,3,1],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[0,2,4,1],[1,2,2,1]],[[1,2,2,1],[2,0,4,0],[0,2,3,1],[1,2,2,1]],[[1,2,2,1],[3,0,3,0],[0,2,3,1],[1,2,2,1]],[[0,2,1,0],[1,1,3,0],[1,3,4,2],[1,2,2,1]],[[0,2,1,0],[1,1,3,0],[1,3,3,2],[2,2,2,1]],[[0,2,1,0],[1,1,3,0],[1,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,1,3,0],[1,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,1,3,0],[1,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,1,3,0],[2,3,4,2],[0,2,2,1]],[[0,2,1,0],[1,1,3,0],[2,3,3,2],[0,3,2,1]],[[0,2,1,0],[1,1,3,0],[2,3,3,2],[0,2,3,1]],[[0,2,1,0],[1,1,3,0],[2,3,3,2],[0,2,2,2]],[[0,2,1,0],[1,1,3,1],[1,3,2,3],[1,2,2,1]],[[0,2,1,0],[1,1,3,1],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[1,1,3,1],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[1,1,3,1],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[1,1,3,1],[1,3,2,2],[1,2,2,2]],[[0,2,1,0],[1,1,3,1],[1,3,4,1],[1,2,2,1]],[[0,2,1,0],[1,1,3,1],[1,3,3,1],[2,2,2,1]],[[0,2,1,0],[1,1,3,1],[1,3,3,1],[1,3,2,1]],[[0,2,1,0],[1,1,3,1],[1,3,3,1],[1,2,3,1]],[[0,2,1,0],[1,1,3,1],[1,3,3,1],[1,2,2,2]],[[0,2,1,0],[1,1,3,1],[1,3,4,2],[1,2,1,1]],[[0,2,1,0],[1,1,3,1],[1,3,3,3],[1,2,1,1]],[[0,2,1,0],[1,1,3,1],[1,3,3,2],[1,2,1,2]],[[0,2,1,0],[1,1,3,1],[1,3,4,2],[1,2,2,0]],[[0,2,1,0],[1,1,3,1],[1,3,3,3],[1,2,2,0]],[[0,2,1,0],[1,1,3,1],[1,3,3,2],[2,2,2,0]],[[0,2,1,0],[1,1,3,1],[1,3,3,2],[1,3,2,0]],[[0,2,1,0],[1,1,3,1],[1,3,3,2],[1,2,3,0]],[[0,2,1,0],[1,1,3,1],[2,3,2,3],[0,2,2,1]],[[0,2,1,0],[1,1,3,1],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[1,1,3,1],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[1,1,3,1],[2,3,2,2],[0,2,2,2]],[[0,2,1,0],[1,1,3,1],[2,3,4,1],[0,2,2,1]],[[0,2,1,0],[1,1,3,1],[2,3,3,1],[0,3,2,1]],[[0,2,1,0],[1,1,3,1],[2,3,3,1],[0,2,3,1]],[[0,2,1,0],[1,1,3,1],[2,3,3,1],[0,2,2,2]],[[0,2,1,0],[1,1,3,1],[2,3,4,2],[0,2,1,1]],[[0,2,1,0],[1,1,3,1],[2,3,3,3],[0,2,1,1]],[[0,2,1,0],[1,1,3,1],[2,3,3,2],[0,2,1,2]],[[0,2,1,0],[1,1,3,1],[2,3,4,2],[0,2,2,0]],[[0,2,1,0],[1,1,3,1],[2,3,3,3],[0,2,2,0]],[[0,2,1,0],[1,1,3,1],[2,3,3,2],[0,3,2,0]],[[0,2,1,0],[1,1,3,1],[2,3,3,2],[0,2,3,0]],[[1,2,2,2],[2,0,3,0],[0,2,3,1],[1,2,2,1]],[[1,2,3,1],[2,0,3,0],[0,2,3,1],[1,2,2,1]],[[1,3,2,1],[2,0,3,0],[0,2,3,1],[1,2,2,1]],[[2,2,2,1],[2,0,3,0],[0,2,3,1],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[0,2,2,2],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[0,2,2,2],[1,2,3,1]],[[0,2,1,0],[1,1,3,2],[1,3,4,0],[1,2,2,1]],[[0,2,1,0],[1,1,3,2],[1,3,3,0],[2,2,2,1]],[[0,2,1,0],[1,1,3,2],[1,3,3,0],[1,3,2,1]],[[0,2,1,0],[1,1,3,2],[1,3,3,0],[1,2,3,1]],[[0,2,1,0],[1,1,3,2],[1,3,3,0],[1,2,2,2]],[[0,2,1,0],[1,1,3,2],[1,3,4,1],[1,2,2,0]],[[0,2,1,0],[1,1,3,2],[1,3,3,1],[2,2,2,0]],[[0,2,1,0],[1,1,3,2],[1,3,3,1],[1,3,2,0]],[[0,2,1,0],[1,1,3,2],[1,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,3,0],[0,2,2,2],[1,3,2,1]],[[1,2,2,1],[2,0,3,0],[0,2,2,2],[2,2,2,1]],[[1,2,2,1],[2,0,3,0],[0,2,2,3],[1,2,2,1]],[[1,2,2,1],[2,0,3,0],[0,1,3,2],[1,2,2,2]],[[1,2,2,1],[2,0,3,0],[0,1,3,2],[1,2,3,1]],[[1,2,2,1],[2,0,3,0],[0,1,3,3],[1,2,2,1]],[[0,2,1,0],[1,1,3,2],[2,3,4,0],[0,2,2,1]],[[0,2,1,0],[1,1,3,2],[2,3,3,0],[0,3,2,1]],[[0,2,1,0],[1,1,3,2],[2,3,3,0],[0,2,3,1]],[[0,2,1,0],[1,1,3,2],[2,3,3,0],[0,2,2,2]],[[0,2,1,0],[1,1,3,2],[2,3,4,1],[0,2,2,0]],[[0,2,1,0],[1,1,3,2],[2,3,3,1],[0,3,2,0]],[[0,2,1,0],[1,1,3,2],[2,3,3,1],[0,2,3,0]],[[0,2,1,0],[1,2,0,2],[1,3,3,3],[1,2,2,1]],[[0,2,1,0],[1,2,0,2],[1,3,3,2],[2,2,2,1]],[[0,2,1,0],[1,2,0,2],[1,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,2,0,2],[1,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,0,2],[1,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,0,2],[2,3,3,3],[0,2,2,1]],[[0,2,1,0],[1,2,0,2],[2,3,3,2],[0,3,2,1]],[[0,2,1,0],[1,2,0,2],[2,3,3,2],[0,2,3,1]],[[0,2,1,0],[1,2,0,2],[2,3,3,2],[0,2,2,2]],[[0,2,1,0],[1,2,1,2],[0,3,3,3],[1,2,2,1]],[[0,2,1,0],[1,2,1,2],[0,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,2,1,2],[0,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,1,2],[0,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,1,2],[1,2,3,3],[1,2,2,1]],[[0,2,1,0],[1,2,1,2],[1,2,3,2],[2,2,2,1]],[[0,2,1,0],[1,2,1,2],[1,2,3,2],[1,3,2,1]],[[0,2,1,0],[1,2,1,2],[1,2,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,1,2],[1,2,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,1,2],[1,3,3,3],[1,1,2,1]],[[0,2,1,0],[1,2,1,2],[1,3,3,2],[1,1,3,1]],[[0,2,1,0],[1,2,1,2],[1,3,3,2],[1,1,2,2]],[[0,2,1,0],[1,2,1,2],[2,1,3,3],[1,2,2,1]],[[0,2,1,0],[1,2,1,2],[2,1,3,2],[2,2,2,1]],[[0,2,1,0],[1,2,1,2],[2,1,3,2],[1,3,2,1]],[[0,2,1,0],[1,2,1,2],[2,1,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,1,2],[2,1,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,1,2],[2,2,3,3],[0,2,2,1]],[[0,2,1,0],[1,2,1,2],[2,2,3,2],[0,3,2,1]],[[0,2,1,0],[1,2,1,2],[2,2,3,2],[0,2,3,1]],[[0,2,1,0],[1,2,1,2],[2,2,3,2],[0,2,2,2]],[[0,2,1,0],[1,2,1,2],[2,3,3,3],[0,1,2,1]],[[0,2,1,0],[1,2,1,2],[2,3,3,2],[0,1,3,1]],[[0,2,1,0],[1,2,1,2],[2,3,3,2],[0,1,2,2]],[[0,2,1,0],[1,2,1,2],[2,3,3,3],[1,0,2,1]],[[0,2,1,0],[1,2,1,2],[2,3,3,2],[1,0,3,1]],[[0,2,1,0],[1,2,1,2],[2,3,3,2],[1,0,2,2]],[[0,2,1,0],[1,2,2,2],[0,2,3,3],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[0,2,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[0,2,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,2,3],[0,3,2,2],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[0,3,2,3],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[0,3,2,2],[1,3,2,1]],[[0,2,1,0],[1,2,2,2],[0,3,2,2],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[0,3,2,2],[1,2,2,2]],[[0,2,1,0],[1,2,2,2],[0,3,4,1],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[0,3,3,1],[1,3,2,1]],[[0,2,1,0],[1,2,2,2],[0,3,3,1],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[0,3,3,1],[1,2,2,2]],[[0,2,1,0],[1,2,2,3],[0,3,3,2],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[0,3,4,2],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[0,3,3,3],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[0,3,3,2],[1,2,1,2]],[[0,2,1,0],[1,2,2,3],[0,3,3,2],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[0,3,4,2],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[0,3,3,3],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[0,3,3,2],[1,3,2,0]],[[0,2,1,0],[1,2,2,2],[0,3,3,2],[1,2,3,0]],[[0,2,1,0],[1,2,2,2],[1,1,3,3],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,1,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[1,1,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,2,3],[1,2,2,2],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,2,2,3],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,2,2,2],[2,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,2,2,2],[1,3,2,1]],[[0,2,1,0],[1,2,2,2],[1,2,2,2],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[1,2,2,2],[1,2,2,2]],[[0,2,1,0],[1,2,2,2],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[1,2,2,2],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[1,2,2,3],[1,2,3,2],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[1,2,4,2],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[1,2,3,3],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[1,2,3,2],[1,2,1,2]],[[0,2,1,0],[1,2,2,3],[1,2,3,2],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[1,2,3,3],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[1,2,2,2],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[1,2,2,2],[1,2,3,2],[1,2,3,0]],[[0,2,1,0],[1,2,2,3],[1,3,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,1,3],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[1,3,1,2],[1,2,2,2]],[[0,2,1,0],[1,2,2,2],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[1,2,2,3],[1,3,2,2],[1,1,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,2,3],[1,1,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,2,2],[1,1,3,1]],[[0,2,1,0],[1,2,2,2],[1,3,2,2],[1,1,2,2]],[[0,2,1,0],[1,2,2,2],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[1,2,2,2],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[1,2,2,2],[1,3,2,2],[1,2,3,0]],[[0,2,1,0],[1,2,2,2],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,1],[1,1,2,2]],[[0,2,1,0],[1,2,2,2],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[1,2,2,3],[1,3,3,2],[1,0,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,4,2],[1,0,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,3],[1,0,2,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,2],[1,0,2,2]],[[0,2,1,0],[1,2,2,3],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,2,2,2],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[1,2,2,2],[1,3,4,2],[1,1,1,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,3],[1,1,1,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,2],[1,1,1,2]],[[0,2,1,0],[1,2,2,3],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[1,2,2,2],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[1,2,2,2],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[1,2,2,2],[1,3,3,3],[1,1,2,0]],[[0,2,1,0],[1,2,2,2],[1,3,3,2],[1,1,3,0]],[[0,2,1,0],[1,2,2,3],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[1,2,2,2],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[1,2,2,2],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,3],[1,2,0,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[1,2,2,2],[1,3,3,2],[1,2,0,2]],[[0,2,1,0],[1,2,2,3],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[1,2,2,2],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[1,2,2,2],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[1,2,2,2],[1,3,3,3],[1,2,1,0]],[[0,2,1,0],[1,2,2,2],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[1,2,2,2],[1,3,3,2],[1,3,1,0]],[[0,2,1,0],[1,2,2,2],[2,0,3,3],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,0,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[2,0,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,2,3],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[3,1,2,2],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,1,2,3],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,1,2,2],[2,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,1,2,2],[1,3,2,1]],[[0,2,1,0],[1,2,2,2],[2,1,2,2],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[2,1,2,2],[1,2,2,2]],[[0,2,1,0],[1,2,2,2],[3,1,3,1],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,1,4,1],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,1,3,1],[2,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,1,3,1],[1,3,2,1]],[[0,2,1,0],[1,2,2,2],[2,1,3,1],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[2,1,3,1],[1,2,2,2]],[[0,2,1,0],[1,2,2,2],[2,1,3,3],[0,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,1,3,2],[0,2,3,1]],[[0,2,1,0],[1,2,2,2],[2,1,3,2],[0,2,2,2]],[[0,2,1,0],[1,2,2,3],[2,1,3,2],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[2,1,4,2],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[2,1,3,3],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[2,1,3,2],[1,2,1,2]],[[0,2,1,0],[1,2,2,3],[2,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[3,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[2,1,4,2],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[2,1,3,3],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[2,1,3,2],[2,2,2,0]],[[0,2,1,0],[1,2,2,2],[2,1,3,2],[1,3,2,0]],[[0,2,1,0],[1,2,2,2],[2,1,3,2],[1,2,3,0]],[[0,2,1,0],[1,2,2,3],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[3,2,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,1,3],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,1,2],[2,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,1,2],[1,3,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,1,2],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[2,2,1,2],[1,2,2,2]],[[0,2,1,0],[1,2,2,2],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[1,2,2,2],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[1,2,2,3],[2,2,2,2],[0,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,2,3],[0,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,2,2],[0,3,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,2,2],[0,2,3,1]],[[0,2,1,0],[1,2,2,2],[2,2,2,2],[0,2,2,2]],[[0,2,1,0],[1,2,2,2],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[1,2,2,2],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[1,2,2,2],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[1,2,2,2],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[1,2,2,2],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[1,2,2,2],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[1,2,2,2],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[1,2,2,2],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[1,2,2,2],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[1,2,2,2],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[1,2,2,3],[2,2,3,2],[0,2,1,1]],[[0,2,1,0],[1,2,2,2],[2,2,4,2],[0,2,1,1]],[[0,2,1,0],[1,2,2,2],[2,2,3,3],[0,2,1,1]],[[0,2,1,0],[1,2,2,2],[2,2,3,2],[0,2,1,2]],[[0,2,1,0],[1,2,2,3],[2,2,3,2],[0,2,2,0]],[[0,2,1,0],[1,2,2,2],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[1,2,2,2],[2,2,3,3],[0,2,2,0]],[[0,2,1,0],[1,2,2,2],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[1,2,2,2],[2,2,3,2],[0,2,3,0]],[[0,2,1,0],[1,2,2,2],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[1,2,2,2],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[1,2,2,2],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[1,2,2,2],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[1,2,2,2],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[1,2,2,2],[2,2,3,2],[1,3,1,0]],[[0,2,1,0],[1,2,2,3],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[1,2,2,2],[3,3,1,2],[0,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,1,3],[0,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[1,2,2,2],[2,3,1,2],[0,2,2,2]],[[0,2,1,0],[1,2,2,2],[3,3,1,2],[1,1,2,1]],[[0,2,1,0],[1,2,2,2],[2,4,1,2],[1,1,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,1,2],[2,1,2,1]],[[0,2,1,0],[1,2,2,2],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[1,2,2,2],[2,3,2,1],[0,2,2,2]],[[0,2,1,0],[1,2,2,2],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,2,2,2],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[1,2,2,3],[2,3,2,2],[0,1,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,2,3],[0,1,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,2,2],[0,1,3,1]],[[0,2,1,0],[1,2,2,2],[2,3,2,2],[0,1,2,2]],[[0,2,1,0],[1,2,2,2],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[1,2,2,2],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[1,2,2,2],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[1,2,2,2],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[1,2,2,3],[2,3,2,2],[1,0,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,2,3],[1,0,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,2,2],[1,0,3,1]],[[0,2,1,0],[1,2,2,2],[2,3,2,2],[1,0,2,2]],[[0,2,1,0],[1,2,2,2],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,2,2,2],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[1,2,2,2],[2,3,2,2],[2,1,2,0]],[[0,2,1,0],[1,2,2,2],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,2,2,2],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,1],[0,1,2,2]],[[0,2,1,0],[1,2,2,2],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,2,2,2],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[1,2,2,2],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[1,2,2,2],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,2,2,2],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,1],[1,0,2,2]],[[0,2,1,0],[1,2,2,2],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,2,2,2],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[1,2,2,2],[2,3,4,1],[1,1,1,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[2,0,2,2],[2,4,3,1],[1,1,0,0]],[[1,2,2,1],[2,0,2,2],[3,3,3,1],[1,1,0,0]],[[1,2,2,1],[2,0,2,3],[2,3,3,1],[1,1,0,0]],[[0,2,1,0],[1,2,2,3],[2,3,3,2],[0,0,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,4,2],[0,0,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,3],[0,0,2,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[0,0,2,2]],[[0,2,1,0],[1,2,2,3],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,2,2,2],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,2,2,2],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[1,2,2,2],[2,3,4,2],[0,1,1,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,3],[0,1,1,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[0,1,1,2]],[[0,2,1,0],[1,2,2,3],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,2,2,2],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,2,2,2],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[1,2,2,2],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[1,2,2,2],[2,3,3,3],[0,1,2,0]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[0,1,3,0]],[[0,2,1,0],[1,2,2,3],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,2,2,2],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,2,2,2],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[1,2,2,2],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,3],[0,2,0,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[0,2,0,2]],[[0,2,1,0],[1,2,2,3],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,2,2,2],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,2,2,2],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[1,2,2,2],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[1,2,2,2],[2,3,3,3],[0,2,1,0]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,0,2,2],[2,3,3,1],[1,1,0,0]],[[1,2,2,2],[2,0,2,2],[2,3,3,1],[1,1,0,0]],[[1,2,3,1],[2,0,2,2],[2,3,3,1],[1,1,0,0]],[[1,3,2,1],[2,0,2,2],[2,3,3,1],[1,1,0,0]],[[2,2,2,1],[2,0,2,2],[2,3,3,1],[1,1,0,0]],[[0,2,1,0],[1,2,2,3],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,2,2,2],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,2,2,2],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[1,2,2,2],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,3],[1,0,1,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[2,0,1,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[1,0,1,2]],[[0,2,1,0],[1,2,2,3],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,2,2,2],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,2,2,2],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[1,2,2,2],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[1,2,2,2],[2,3,3,3],[1,0,2,0]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[1,0,3,0]],[[0,2,1,0],[1,2,2,3],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,2,2,2],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,2,2,2],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[1,2,2,2],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,3],[1,1,0,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[1,1,0,2]],[[0,2,1,0],[1,2,2,3],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,2,2,2],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,2,2,2],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[1,2,2,2],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[1,2,2,2],[2,3,3,3],[1,1,1,0]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[2,1,1,0]],[[0,2,1,0],[1,2,2,2],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,2,2,2],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[1,2,2,2],[2,3,3,2],[2,2,0,0]],[[0,2,1,0],[1,2,3,0],[0,3,4,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,0],[0,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,0],[0,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,0],[0,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,3,0],[1,4,2,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,0],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,0],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,0],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,0],[1,3,2,2],[1,2,2,2]],[[0,2,1,0],[1,2,3,0],[1,4,3,2],[1,1,2,1]],[[0,2,1,0],[1,2,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,1,0],[1,2,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,1,0],[1,2,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,1,0],[1,2,3,0],[1,4,3,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,0],[1,3,4,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,0],[1,3,3,2],[2,2,1,1]],[[0,2,1,0],[1,2,3,0],[1,3,3,2],[1,3,1,1]],[[0,2,1,0],[1,2,3,0],[3,1,3,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,0],[2,1,4,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,0],[2,1,3,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,0],[2,1,3,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,0],[2,1,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,0],[2,1,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,3,0],[3,2,2,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,0],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,0],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,0],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,0],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[1,2,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,1,0],[1,2,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,1,0],[1,2,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,1,0],[1,2,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,1,0],[1,2,3,0],[3,2,3,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,0],[2,2,3,2],[2,2,1,1]],[[0,2,1,0],[1,2,3,0],[2,2,3,2],[1,3,1,1]],[[0,2,1,0],[1,2,3,0],[3,3,2,2],[0,2,2,1]],[[0,2,1,0],[1,2,3,0],[2,4,2,2],[0,2,2,1]],[[0,2,1,0],[1,2,3,0],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[1,2,3,0],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[1,2,3,0],[2,3,2,2],[0,2,2,2]],[[0,2,1,0],[1,2,3,0],[3,3,2,2],[1,1,2,1]],[[0,2,1,0],[1,2,3,0],[2,4,2,2],[1,1,2,1]],[[0,2,1,0],[1,2,3,0],[2,3,2,2],[2,1,2,1]],[[0,2,1,0],[1,2,3,0],[3,3,3,2],[0,1,2,1]],[[0,2,1,0],[1,2,3,0],[2,4,3,2],[0,1,2,1]],[[0,2,1,0],[1,2,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,1,0],[1,2,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,1,0],[1,2,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,1,0],[1,2,3,0],[3,3,3,2],[0,2,1,1]],[[0,2,1,0],[1,2,3,0],[2,4,3,2],[0,2,1,1]],[[0,2,1,0],[1,2,3,0],[2,3,4,2],[0,2,1,1]],[[0,2,1,0],[1,2,3,0],[2,3,3,2],[0,3,1,1]],[[0,2,1,0],[1,2,3,0],[3,3,3,2],[1,0,2,1]],[[0,2,1,0],[1,2,3,0],[2,4,3,2],[1,0,2,1]],[[0,2,1,0],[1,2,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,1,0],[1,2,3,0],[2,3,3,2],[2,0,2,1]],[[0,2,1,0],[1,2,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,1,0],[1,2,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,1,0],[1,2,3,0],[3,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,2,3,0],[2,4,3,2],[1,1,1,1]],[[0,2,1,0],[1,2,3,0],[2,3,4,2],[1,1,1,1]],[[0,2,1,0],[1,2,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,0,2,2],[3,3,3,1],[0,2,0,0]],[[0,2,1,0],[1,2,3,1],[0,2,3,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[0,2,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[0,2,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,3,1],[0,3,2,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[0,3,2,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[0,3,2,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[0,3,2,2],[1,2,2,2]],[[0,2,1,0],[1,2,4,1],[0,3,3,1],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[0,3,4,1],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[0,3,3,1],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[0,3,3,1],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[0,3,3,1],[1,2,2,2]],[[0,2,1,0],[1,2,4,1],[0,3,3,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[0,3,4,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[0,3,3,3],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[0,3,3,2],[1,2,1,2]],[[0,2,1,0],[1,2,4,1],[0,3,3,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[0,3,4,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[0,3,3,3],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[0,3,3,2],[1,3,2,0]],[[0,2,1,0],[1,2,3,1],[0,3,3,2],[1,2,3,0]],[[0,2,1,0],[1,2,3,1],[1,1,3,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,1,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[1,1,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[1,2,2,2],[1,2,2,2]],[[0,2,1,0],[1,2,4,1],[1,2,3,1],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[1,2,4,1],[1,2,3,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[1,2,3,2],[1,2,1,2]],[[0,2,1,0],[1,2,4,1],[1,2,3,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[1,2,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[1,2,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,1,0],[1,2,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,1,0],[1,2,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[1,2,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,1,0],[1,2,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,1,0],[1,2,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[1,2,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[1,2,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,1,0],[1,2,3,1],[1,4,3,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,0],[2,2,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,0],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,0],[1,2,3,1]],[[0,2,1,0],[1,2,4,1],[1,3,3,1],[1,1,2,1]],[[0,2,1,0],[1,2,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,1],[1,1,2,2]],[[0,2,1,0],[1,2,4,1],[1,3,3,1],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[1,2,4,1],[1,3,3,2],[1,0,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,4,2],[1,0,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,3],[1,0,2,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,2],[1,0,2,2]],[[0,2,1,0],[1,2,4,1],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,2,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[1,2,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,2],[1,1,1,2]],[[0,2,1,0],[1,2,4,1],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[1,2,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[1,2,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[1,2,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,1,0],[1,2,3,1],[1,3,3,2],[1,1,3,0]],[[0,2,1,0],[1,2,4,1],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[1,2,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[1,2,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[1,2,3,1],[1,3,3,2],[1,2,0,2]],[[0,2,1,0],[1,2,4,1],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[1,2,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[1,2,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[1,2,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,1,0],[1,2,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[1,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,3],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[3,0,2,2],[2,3,3,1],[0,2,0,0]],[[1,2,2,2],[2,0,2,2],[2,3,3,1],[0,2,0,0]],[[1,2,3,1],[2,0,2,2],[2,3,3,1],[0,2,0,0]],[[1,3,2,1],[2,0,2,2],[2,3,3,1],[0,2,0,0]],[[2,2,2,1],[2,0,2,2],[2,3,3,1],[0,2,0,0]],[[0,2,1,0],[1,2,3,1],[2,0,3,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,0,3,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[2,0,3,2],[1,2,2,2]],[[0,2,1,0],[1,2,3,1],[3,1,2,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,1,2,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,1,2,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,1,2,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[2,1,2,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[2,1,2,2],[1,2,2,2]],[[0,2,1,0],[1,2,4,1],[2,1,3,1],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[3,1,3,1],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,1,4,1],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,1,3,1],[2,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,1,3,1],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[2,1,3,1],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[2,1,3,1],[1,2,2,2]],[[0,2,1,0],[1,2,3,1],[2,1,3,3],[0,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,1,3,2],[0,2,3,1]],[[0,2,1,0],[1,2,3,1],[2,1,3,2],[0,2,2,2]],[[0,2,1,0],[1,2,4,1],[2,1,3,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[2,1,4,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[2,1,3,3],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[2,1,3,2],[1,2,1,2]],[[0,2,1,0],[1,2,4,1],[2,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[3,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[2,1,4,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[2,1,3,3],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[2,1,3,2],[2,2,2,0]],[[0,2,1,0],[1,2,3,1],[2,1,3,2],[1,3,2,0]],[[0,2,1,0],[1,2,3,1],[2,1,3,2],[1,2,3,0]],[[0,2,1,0],[1,2,3,1],[3,2,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,1,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,1,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,1,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,1,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[2,2,1,2],[1,2,2,2]],[[0,2,1,0],[1,2,3,1],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[1,2,3,1],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[1,2,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,1,0],[1,2,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,1,0],[1,2,3,1],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,1],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[1,2,3,1],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[1,2,3,1],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[1,2,3,1],[3,2,3,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,0],[2,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,0],[1,3,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,0],[1,2,3,1]],[[0,2,1,0],[1,2,4,1],[2,2,3,1],[0,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[1,2,3,1],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[1,2,4,1],[2,2,3,2],[0,2,1,1]],[[0,2,1,0],[1,2,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,2],[0,2,1,2]],[[0,2,1,0],[1,2,4,1],[2,2,3,2],[0,2,2,0]],[[0,2,1,0],[1,2,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[1,2,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,1,0],[1,2,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[1,2,3,1],[2,2,3,2],[0,2,3,0]],[[0,2,1,0],[1,2,3,1],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[1,2,3,1],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[1,2,3,1],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[1,2,3,1],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[1,2,3,1],[2,2,3,2],[1,3,1,0]],[[0,2,1,0],[1,2,3,1],[3,3,1,2],[0,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[1,2,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,1,0],[1,2,3,1],[3,3,1,2],[1,1,2,1]],[[0,2,1,0],[1,2,3,1],[2,4,1,2],[1,1,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,1,2],[2,1,2,1]],[[0,2,1,0],[1,2,3,1],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[1,2,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,1,0],[1,2,3,1],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,2,3,1],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,1,0],[1,2,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,1,0],[1,2,3,1],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[1,2,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[1,2,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[1,2,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[1,2,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,1,0],[1,2,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,1,0],[1,2,3,1],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,2,3,1],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[1,2,3,1],[2,3,2,2],[2,1,2,0]],[[0,2,1,0],[1,2,3,1],[3,3,3,0],[0,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,4,3,0],[0,2,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,0],[0,3,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,0],[0,2,3,1]],[[0,2,1,0],[1,2,3,1],[3,3,3,0],[1,1,2,1]],[[0,2,1,0],[1,2,3,1],[2,4,3,0],[1,1,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,0],[2,1,2,1]],[[0,2,1,0],[1,2,4,1],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,2,3,1],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,2,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,1],[0,1,2,2]],[[0,2,1,0],[1,2,4,1],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,2,3,1],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,2,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[1,2,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[1,2,4,1],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,2,3,1],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,2,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,1],[1,0,2,2]],[[0,2,1,0],[1,2,4,1],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,2,3,1],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,2,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[1,2,3,1],[2,3,4,1],[1,1,1,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,1],[2,1,1,1]],[[0,2,1,0],[1,2,3,1],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,2,3,1],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,1],[2,2,0,1]],[[0,2,1,0],[1,2,4,1],[2,3,3,2],[0,0,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[0,0,2,2]],[[0,2,1,0],[1,2,4,1],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,2,3,1],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,2,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[1,2,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[0,1,1,2]],[[0,2,1,0],[1,2,4,1],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,2,3,1],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,2,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[1,2,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[1,2,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[0,1,3,0]],[[0,2,1,0],[1,2,4,1],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,2,3,1],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,2,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[1,2,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[0,2,0,2]],[[0,2,1,0],[1,2,4,1],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,2,3,1],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,2,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[1,2,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[1,2,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[0,3,1,0]],[[0,2,1,0],[1,2,4,1],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,2,3,1],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,2,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[1,2,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[2,0,1,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[1,0,1,2]],[[0,2,1,0],[1,2,4,1],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,2,3,1],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,2,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[1,2,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[1,2,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[1,0,3,0]],[[0,2,1,0],[1,2,4,1],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,2,3,1],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,2,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[1,2,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[1,1,0,2]],[[0,2,1,0],[1,2,4,1],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,2,3,1],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,2,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[1,2,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[1,2,3,1],[2,3,3,3],[1,1,1,0]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[2,1,1,0]],[[0,2,1,0],[1,2,3,1],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,2,3,1],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[1,2,3,1],[2,3,3,2],[2,2,0,0]],[[0,2,1,0],[1,2,4,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,3],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[0,3,1,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[0,3,1,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,2],[0,3,1,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,2],[0,3,1,2],[1,2,2,2]],[[0,2,1,0],[1,2,4,2],[0,3,2,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,3],[0,3,2,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[0,3,2,3],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[0,3,2,2],[1,2,1,2]],[[0,2,1,0],[1,2,4,2],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,3],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[0,3,2,3],[1,2,2,0]],[[0,2,1,0],[1,2,4,2],[0,3,3,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,3],[0,3,3,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[0,3,4,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[0,3,3,0],[1,3,2,1]],[[0,2,1,0],[1,2,3,2],[0,3,3,0],[1,2,3,1]],[[0,2,1,0],[1,2,3,2],[0,3,3,0],[1,2,2,2]],[[0,2,1,0],[1,2,4,2],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[1,2,3,3],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[0,3,4,1],[1,2,1,1]],[[0,2,1,0],[1,2,4,2],[0,3,3,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,3],[0,3,3,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[0,3,4,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[0,3,3,1],[1,3,2,0]],[[0,2,1,0],[1,2,3,2],[0,3,3,1],[1,2,3,0]],[[0,2,1,0],[1,2,4,2],[1,2,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,3],[1,2,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,2,1,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,2,1,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,2,1,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,2],[1,2,1,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,2],[1,2,1,2],[1,2,2,2]],[[0,2,1,0],[1,2,4,2],[1,2,2,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,3],[1,2,2,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[1,2,2,3],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[1,2,2,2],[1,2,1,2]],[[0,2,1,0],[1,2,4,2],[1,2,2,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,3],[1,2,2,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[1,2,2,3],[1,2,2,0]],[[0,2,1,0],[1,2,4,2],[1,2,3,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,3],[1,2,3,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,1,0],[1,2,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,1,0],[1,2,3,2],[1,2,3,0],[1,2,2,2]],[[0,2,1,0],[1,2,4,2],[1,2,3,1],[1,2,1,1]],[[0,2,1,0],[1,2,3,3],[1,2,3,1],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[1,2,4,1],[1,2,1,1]],[[0,2,1,0],[1,2,4,2],[1,2,3,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,3],[1,2,3,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,1,0],[1,2,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,1,0],[1,2,3,2],[1,2,3,1],[1,2,3,0]],[[0,2,1,0],[1,2,4,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,3],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,4,0,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,0,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,0,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,0,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,0,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,2],[1,3,0,2],[1,2,2,2]],[[0,2,1,0],[1,2,4,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[1,2,3,3],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,1,3],[1,1,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,1,2],[1,1,3,1]],[[0,2,1,0],[1,2,3,2],[1,3,1,2],[1,1,2,2]],[[0,2,1,0],[1,2,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,1,0],[1,2,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,1,0],[1,2,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,1,0],[1,2,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,1,0],[1,2,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,1,0],[1,2,4,2],[1,3,2,2],[1,0,2,1]],[[0,2,1,0],[1,2,3,3],[1,3,2,2],[1,0,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,2,3],[1,0,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,2,2],[1,0,2,2]],[[0,2,1,0],[1,2,4,2],[1,3,2,2],[1,1,1,1]],[[0,2,1,0],[1,2,3,3],[1,3,2,2],[1,1,1,1]],[[0,2,1,0],[1,2,3,2],[1,3,2,3],[1,1,1,1]],[[0,2,1,0],[1,2,3,2],[1,3,2,2],[1,1,1,2]],[[0,2,1,0],[1,2,4,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,2,3,3],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,2,3,2],[1,3,2,3],[1,1,2,0]],[[0,2,1,0],[1,2,4,2],[1,3,2,2],[1,2,0,1]],[[0,2,1,0],[1,2,3,3],[1,3,2,2],[1,2,0,1]],[[0,2,1,0],[1,2,3,2],[1,3,2,3],[1,2,0,1]],[[0,2,1,0],[1,2,3,2],[1,3,2,2],[1,2,0,2]],[[0,2,1,0],[1,2,4,2],[1,3,2,2],[1,2,1,0]],[[0,2,1,0],[1,2,3,3],[1,3,2,2],[1,2,1,0]],[[0,2,1,0],[1,2,3,2],[1,3,2,3],[1,2,1,0]],[[0,2,1,0],[1,2,4,2],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[1,2,3,3],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[1,2,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,1,0],[1,2,3,2],[1,3,3,0],[1,1,2,2]],[[0,2,1,0],[1,2,4,2],[1,3,3,0],[1,2,1,1]],[[0,2,1,0],[1,2,3,3],[1,3,3,0],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,1,0],[1,2,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,1,0],[1,2,4,2],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,2,3,3],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,2,3,2],[1,3,4,1],[1,0,2,1]],[[0,2,1,0],[1,2,4,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,2,3,3],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,2,3,2],[1,4,3,1],[1,1,1,1]],[[0,2,1,0],[1,2,3,2],[1,3,4,1],[1,1,1,1]],[[0,2,1,0],[1,2,4,2],[1,3,3,1],[1,1,2,0]],[[0,2,1,0],[1,2,3,3],[1,3,3,1],[1,1,2,0]],[[0,2,1,0],[1,2,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,1,0],[1,2,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,1,0],[1,2,3,2],[1,3,3,1],[1,1,3,0]],[[0,2,1,0],[1,2,4,2],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,2,3,3],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,2,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,1,0],[1,2,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,1,0],[1,2,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,1,0],[1,2,3,2],[1,3,3,1],[1,3,0,1]],[[0,2,1,0],[1,2,4,2],[1,3,3,1],[1,2,1,0]],[[0,2,1,0],[1,2,3,3],[1,3,3,1],[1,2,1,0]],[[0,2,1,0],[1,2,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,1,0],[1,2,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,1,0],[1,2,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,1,0],[1,2,3,2],[1,3,3,1],[1,3,1,0]],[[0,2,1,0],[1,2,4,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,2,3,3],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,2,3,2],[1,3,3,3],[1,1,0,1]],[[0,2,1,0],[1,2,4,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,3],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[3,1,1,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,1,1,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,1,1,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,1,1,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,2],[2,1,1,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,2],[2,1,1,2],[1,2,2,2]],[[0,2,1,0],[1,2,4,2],[2,1,2,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,3],[2,1,2,2],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[2,1,2,3],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[2,1,2,2],[1,2,1,2]],[[0,2,1,0],[1,2,4,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,3],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[2,1,2,3],[1,2,2,0]],[[0,2,1,0],[1,2,4,2],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,3],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[3,1,3,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,1,4,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,1,3,0],[2,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,1,3,0],[1,3,2,1]],[[0,2,1,0],[1,2,3,2],[2,1,3,0],[1,2,3,1]],[[0,2,1,0],[1,2,3,2],[2,1,3,0],[1,2,2,2]],[[0,2,1,0],[1,2,4,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[1,2,3,3],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[2,1,4,1],[1,2,1,1]],[[0,2,1,0],[1,2,4,2],[2,1,3,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,3],[2,1,3,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[3,1,3,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[2,1,4,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[2,1,3,1],[2,2,2,0]],[[0,2,1,0],[1,2,3,2],[2,1,3,1],[1,3,2,0]],[[0,2,1,0],[1,2,3,2],[2,1,3,1],[1,2,3,0]],[[0,2,1,0],[1,2,4,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,3],[2,2,0,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[3,2,0,2],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,0,3],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,0,2],[2,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,0,2],[1,3,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,0,2],[1,2,3,1]],[[0,2,1,0],[1,2,3,2],[2,2,0,2],[1,2,2,2]],[[0,2,1,0],[1,2,4,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[1,2,3,3],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,1,3],[0,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,1,2],[0,3,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,1,2],[0,2,3,1]],[[0,2,1,0],[1,2,3,2],[2,2,1,2],[0,2,2,2]],[[0,2,1,0],[1,2,3,2],[3,2,2,0],[1,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,2,0],[2,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,2,0],[1,3,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,2,0],[1,2,3,1]],[[0,2,1,0],[1,2,3,2],[2,2,2,0],[1,2,2,2]],[[0,2,1,0],[1,2,3,2],[3,2,2,1],[1,2,2,0]],[[0,2,1,0],[1,2,3,2],[2,2,2,1],[2,2,2,0]],[[0,2,1,0],[1,2,3,2],[2,2,2,1],[1,3,2,0]],[[0,2,1,0],[1,2,3,2],[2,2,2,1],[1,2,3,0]],[[0,2,1,0],[1,2,4,2],[2,2,2,2],[0,2,1,1]],[[0,2,1,0],[1,2,3,3],[2,2,2,2],[0,2,1,1]],[[0,2,1,0],[1,2,3,2],[2,2,2,3],[0,2,1,1]],[[0,2,1,0],[1,2,3,2],[2,2,2,2],[0,2,1,2]],[[0,2,1,0],[1,2,4,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[1,2,3,3],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[1,2,3,2],[2,2,2,3],[0,2,2,0]],[[0,2,1,0],[1,2,4,2],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[1,2,3,3],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,1,0],[1,2,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,1,0],[1,2,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,1,0],[1,2,3,2],[3,2,3,0],[1,2,1,1]],[[0,2,1,0],[1,2,3,2],[2,2,3,0],[2,2,1,1]],[[0,2,1,0],[1,2,3,2],[2,2,3,0],[1,3,1,1]],[[0,2,1,0],[1,2,4,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[1,2,3,3],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[1,2,3,2],[2,2,4,1],[0,2,1,1]],[[0,2,1,0],[1,2,4,2],[2,2,3,1],[0,2,2,0]],[[0,2,1,0],[1,2,3,3],[2,2,3,1],[0,2,2,0]],[[0,2,1,0],[1,2,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,1,0],[1,2,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,1,0],[1,2,3,2],[2,2,3,1],[0,2,3,0]],[[0,2,1,0],[1,2,3,2],[3,2,3,1],[1,2,0,1]],[[0,2,1,0],[1,2,3,2],[2,2,3,1],[2,2,0,1]],[[0,2,1,0],[1,2,3,2],[2,2,3,1],[1,3,0,1]],[[0,2,1,0],[1,2,3,2],[3,2,3,1],[1,2,1,0]],[[0,2,1,0],[1,2,3,2],[2,2,3,1],[2,2,1,0]],[[0,2,1,0],[1,2,3,2],[2,2,3,1],[1,3,1,0]],[[0,2,1,0],[1,2,4,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[1,2,3,3],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[1,2,3,2],[3,3,0,2],[0,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,4,0,2],[0,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,0,3],[0,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,0,2],[0,3,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,0,2],[0,2,3,1]],[[0,2,1,0],[1,2,3,2],[2,3,0,2],[0,2,2,2]],[[0,2,1,0],[1,2,3,2],[3,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,2,3,2],[2,4,0,2],[1,1,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,0,2],[2,1,2,1]],[[0,2,1,0],[1,2,4,2],[2,3,1,2],[0,1,2,1]],[[0,2,1,0],[1,2,3,3],[2,3,1,2],[0,1,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,1,3],[0,1,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,1,2],[0,1,3,1]],[[0,2,1,0],[1,2,3,2],[2,3,1,2],[0,1,2,2]],[[0,2,1,0],[1,2,4,2],[2,3,1,2],[1,0,2,1]],[[0,2,1,0],[1,2,3,3],[2,3,1,2],[1,0,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,1,2],[1,0,3,1]],[[0,2,1,0],[1,2,3,2],[2,3,1,2],[1,0,2,2]],[[0,2,1,0],[1,2,3,2],[3,3,2,0],[0,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,1,0],[1,2,3,2],[3,3,2,0],[1,1,2,1]],[[0,2,1,0],[1,2,3,2],[2,4,2,0],[1,1,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,0],[2,1,2,1]],[[0,2,1,0],[1,2,3,2],[3,3,2,1],[0,2,2,0]],[[0,2,1,0],[1,2,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,1,0],[1,2,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,1,0],[1,2,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,1,0],[1,2,3,2],[3,3,2,1],[1,1,2,0]],[[0,2,1,0],[1,2,3,2],[2,4,2,1],[1,1,2,0]],[[0,2,1,0],[1,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[2,0,2,2],[2,4,2,1],[1,2,0,0]],[[1,2,2,1],[2,0,2,2],[3,3,2,1],[1,2,0,0]],[[1,2,2,1],[2,0,2,3],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[3,0,2,2],[2,3,2,1],[1,2,0,0]],[[1,2,2,2],[2,0,2,2],[2,3,2,1],[1,2,0,0]],[[0,2,1,0],[1,2,4,2],[2,3,2,2],[0,0,2,1]],[[0,2,1,0],[1,2,3,3],[2,3,2,2],[0,0,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,3],[0,0,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,2],[0,0,2,2]],[[0,2,1,0],[1,2,4,2],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[1,2,3,3],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,3],[0,1,1,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,2],[0,1,1,2]],[[0,2,1,0],[1,2,4,2],[2,3,2,2],[0,1,2,0]],[[0,2,1,0],[1,2,3,3],[2,3,2,2],[0,1,2,0]],[[0,2,1,0],[1,2,3,2],[2,3,2,3],[0,1,2,0]],[[0,2,1,0],[1,2,4,2],[2,3,2,2],[0,2,0,1]],[[0,2,1,0],[1,2,3,3],[2,3,2,2],[0,2,0,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,3],[0,2,0,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,2],[0,2,0,2]],[[0,2,1,0],[1,2,4,2],[2,3,2,2],[0,2,1,0]],[[0,2,1,0],[1,2,3,3],[2,3,2,2],[0,2,1,0]],[[0,2,1,0],[1,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,3,1],[2,0,2,2],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[2,0,2,2],[2,3,2,1],[1,2,0,0]],[[2,2,2,1],[2,0,2,2],[2,3,2,1],[1,2,0,0]],[[0,2,1,0],[1,2,4,2],[2,3,2,2],[1,0,1,1]],[[0,2,1,0],[1,2,3,3],[2,3,2,2],[1,0,1,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,3],[1,0,1,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,2],[1,0,1,2]],[[0,2,1,0],[1,2,4,2],[2,3,2,2],[1,0,2,0]],[[0,2,1,0],[1,2,3,3],[2,3,2,2],[1,0,2,0]],[[0,2,1,0],[1,2,3,2],[2,3,2,3],[1,0,2,0]],[[0,2,1,0],[1,2,4,2],[2,3,2,2],[1,1,0,1]],[[0,2,1,0],[1,2,3,3],[2,3,2,2],[1,1,0,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,3],[1,1,0,1]],[[0,2,1,0],[1,2,3,2],[2,3,2,2],[1,1,0,2]],[[0,2,1,0],[1,2,4,2],[2,3,2,2],[1,1,1,0]],[[0,2,1,0],[1,2,3,3],[2,3,2,2],[1,1,1,0]],[[0,2,1,0],[1,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,2,1],[2,1,1,0]],[[1,2,2,1],[2,0,2,2],[2,4,2,1],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[3,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,0,2,3],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[3,0,2,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,2],[2,0,2,2],[2,3,2,1],[1,1,1,0]],[[1,2,3,1],[2,0,2,2],[2,3,2,1],[1,1,1,0]],[[1,3,2,1],[2,0,2,2],[2,3,2,1],[1,1,1,0]],[[2,2,2,1],[2,0,2,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,2,1],[2,1,0,1]],[[1,2,2,1],[2,0,2,2],[2,4,2,1],[1,1,0,1]],[[1,2,2,1],[2,0,2,2],[3,3,2,1],[1,1,0,1]],[[1,2,2,1],[2,0,2,3],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[3,0,2,2],[2,3,2,1],[1,1,0,1]],[[1,2,2,2],[2,0,2,2],[2,3,2,1],[1,1,0,1]],[[1,2,3,1],[2,0,2,2],[2,3,2,1],[1,1,0,1]],[[0,2,1,0],[1,2,4,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[1,2,3,3],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[1,2,3,2],[3,3,3,0],[0,1,2,1]],[[0,2,1,0],[1,2,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,0],[0,1,2,2]],[[0,2,1,0],[1,2,4,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[1,2,3,3],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[1,2,3,2],[3,3,3,0],[0,2,1,1]],[[0,2,1,0],[1,2,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,1,0],[1,2,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,0],[0,3,1,1]],[[0,2,1,0],[1,2,4,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[1,2,3,3],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[1,2,3,2],[3,3,3,0],[1,0,2,1]],[[0,2,1,0],[1,2,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,0],[2,0,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,0],[1,0,2,2]],[[0,2,1,0],[1,2,4,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,0],[1,2,3,3],[2,3,3,0],[1,1,1,1]],[[0,2,1,0],[1,2,3,2],[3,3,3,0],[1,1,1,1]],[[0,2,1,0],[1,2,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,1,0],[1,2,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,0],[2,1,1,1]],[[0,2,1,0],[1,2,3,2],[3,3,3,0],[1,2,0,1]],[[0,2,1,0],[1,2,3,2],[2,4,3,0],[1,2,0,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,3,2,1],[2,0,2,2],[2,3,2,1],[1,1,0,1]],[[2,2,2,1],[2,0,2,2],[2,3,2,1],[1,1,0,1]],[[0,2,1,0],[1,2,4,2],[2,3,3,1],[0,0,2,1]],[[0,2,1,0],[1,2,3,3],[2,3,3,1],[0,0,2,1]],[[0,2,1,0],[1,2,3,2],[2,3,4,1],[0,0,2,1]],[[0,2,1,0],[1,2,4,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[1,2,3,3],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[1,2,3,2],[3,3,3,1],[0,1,1,1]],[[0,2,1,0],[1,2,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,1,0],[1,2,3,2],[2,3,4,1],[0,1,1,1]],[[0,2,1,0],[1,2,4,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[1,2,3,3],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[1,2,3,2],[3,3,3,1],[0,1,2,0]],[[0,2,1,0],[1,2,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,1,0],[1,2,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,1,0],[1,2,3,2],[2,3,3,1],[0,1,3,0]],[[0,2,1,0],[1,2,4,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[1,2,3,3],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[1,2,3,2],[3,3,3,1],[0,2,0,1]],[[0,2,1,0],[1,2,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,1,0],[1,2,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,1],[0,3,0,1]],[[0,2,1,0],[1,2,4,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,0],[1,2,3,3],[2,3,3,1],[0,2,1,0]],[[0,2,1,0],[1,2,3,2],[3,3,3,1],[0,2,1,0]],[[0,2,1,0],[1,2,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,1,0],[1,2,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,1,0],[1,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,2,1],[2,0,2,0]],[[1,2,2,1],[2,0,2,2],[2,4,2,1],[1,0,2,0]],[[1,2,2,1],[2,0,2,2],[3,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,0,2,3],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[3,0,2,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,2],[2,0,2,2],[2,3,2,1],[1,0,2,0]],[[0,2,1,0],[1,2,4,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[1,2,3,3],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[1,2,3,2],[3,3,3,1],[1,0,1,1]],[[0,2,1,0],[1,2,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,1,0],[1,2,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,1],[2,0,1,1]],[[0,2,1,0],[1,2,4,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[1,2,3,3],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[1,2,3,2],[3,3,3,1],[1,0,2,0]],[[0,2,1,0],[1,2,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,1,0],[1,2,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,1,0],[1,2,3,2],[2,3,3,1],[2,0,2,0]],[[0,2,1,0],[1,2,3,2],[2,3,3,1],[1,0,3,0]],[[0,2,1,0],[1,2,4,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[1,2,3,3],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[1,2,3,2],[3,3,3,1],[1,1,0,1]],[[0,2,1,0],[1,2,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,1,0],[1,2,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,1],[2,1,0,1]],[[0,2,1,0],[1,2,4,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[1,2,3,3],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[1,2,3,2],[3,3,3,1],[1,1,1,0]],[[0,2,1,0],[1,2,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,1,0],[1,2,3,2],[2,3,4,1],[1,1,1,0]],[[0,2,1,0],[1,2,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,3,1],[2,0,2,2],[2,3,2,1],[1,0,2,0]],[[1,3,2,1],[2,0,2,2],[2,3,2,1],[1,0,2,0]],[[2,2,2,1],[2,0,2,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,2,1],[2,0,1,1]],[[1,2,2,1],[2,0,2,2],[2,4,2,1],[1,0,1,1]],[[1,2,2,1],[2,0,2,2],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,0,2,3],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[3,0,2,2],[2,3,2,1],[1,0,1,1]],[[0,2,1,0],[1,2,3,2],[3,3,3,1],[1,2,0,0]],[[0,2,1,0],[1,2,3,2],[2,4,3,1],[1,2,0,0]],[[0,2,1,0],[1,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,2],[2,0,2,2],[2,3,2,1],[1,0,1,1]],[[1,2,3,1],[2,0,2,2],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[2,0,2,2],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[2,0,2,2],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[2,0,2,2],[2,3,2,1],[0,3,1,0]],[[0,2,1,0],[1,2,4,2],[2,3,3,2],[0,1,0,1]],[[0,2,1,0],[1,2,3,3],[2,3,3,2],[0,1,0,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,0,2,2],[2,4,2,1],[0,2,1,0]],[[1,2,2,1],[2,0,2,2],[3,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,0,2,3],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[3,0,2,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,2],[2,0,2,2],[2,3,2,1],[0,2,1,0]],[[1,2,3,1],[2,0,2,2],[2,3,2,1],[0,2,1,0]],[[1,3,2,1],[2,0,2,2],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[2,0,2,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,2,1],[0,3,0,1]],[[1,2,2,1],[2,0,2,2],[2,4,2,1],[0,2,0,1]],[[1,2,2,1],[2,0,2,2],[3,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,0,2,3],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[3,0,2,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,2],[2,0,2,2],[2,3,2,1],[0,2,0,1]],[[1,2,3,1],[2,0,2,2],[2,3,2,1],[0,2,0,1]],[[1,3,2,1],[2,0,2,2],[2,3,2,1],[0,2,0,1]],[[2,2,2,1],[2,0,2,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[2,0,2,2],[2,4,2,1],[0,1,2,0]],[[1,2,2,1],[2,0,2,2],[3,3,2,1],[0,1,2,0]],[[1,2,2,1],[2,0,2,3],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[3,0,2,2],[2,3,2,1],[0,1,2,0]],[[1,2,2,2],[2,0,2,2],[2,3,2,1],[0,1,2,0]],[[1,2,3,1],[2,0,2,2],[2,3,2,1],[0,1,2,0]],[[1,3,2,1],[2,0,2,2],[2,3,2,1],[0,1,2,0]],[[2,2,2,1],[2,0,2,2],[2,3,2,1],[0,1,2,0]],[[0,2,1,0],[1,2,4,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[1,2,3,3],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[1,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,0,2,2],[2,4,2,1],[0,1,1,1]],[[1,2,2,1],[2,0,2,2],[3,3,2,1],[0,1,1,1]],[[1,2,2,1],[2,0,2,3],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[3,0,2,2],[2,3,2,1],[0,1,1,1]],[[1,2,2,2],[2,0,2,2],[2,3,2,1],[0,1,1,1]],[[1,2,3,1],[2,0,2,2],[2,3,2,1],[0,1,1,1]],[[1,3,2,1],[2,0,2,2],[2,3,2,1],[0,1,1,1]],[[2,2,2,1],[2,0,2,2],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[2,0,2,2],[2,4,2,0],[1,2,0,1]],[[1,2,2,1],[2,0,2,2],[3,3,2,0],[1,2,0,1]],[[1,2,2,1],[3,0,2,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,2],[2,0,2,2],[2,3,2,0],[1,2,0,1]],[[1,2,3,1],[2,0,2,2],[2,3,2,0],[1,2,0,1]],[[1,3,2,1],[2,0,2,2],[2,3,2,0],[1,2,0,1]],[[2,2,2,1],[2,0,2,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[2,0,2,2],[2,3,2,0],[2,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,4,2,0],[1,1,1,1]],[[1,2,2,1],[2,0,2,2],[3,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,0,2,3],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[3,0,2,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,2],[2,0,2,2],[2,3,2,0],[1,1,1,1]],[[1,2,3,1],[2,0,2,2],[2,3,2,0],[1,1,1,1]],[[1,3,2,1],[2,0,2,2],[2,3,2,0],[1,1,1,1]],[[2,2,2,1],[2,0,2,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,3,2,0],[2,0,2,1]],[[1,2,2,1],[2,0,2,2],[2,4,2,0],[1,0,2,1]],[[1,2,2,1],[2,0,2,2],[3,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,0,2,3],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[3,0,2,2],[2,3,2,0],[1,0,2,1]],[[1,2,2,2],[2,0,2,2],[2,3,2,0],[1,0,2,1]],[[1,2,3,1],[2,0,2,2],[2,3,2,0],[1,0,2,1]],[[1,3,2,1],[2,0,2,2],[2,3,2,0],[1,0,2,1]],[[2,2,2,1],[2,0,2,2],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[2,0,2,2],[2,3,2,0],[0,3,1,1]],[[1,2,2,1],[2,0,2,2],[2,4,2,0],[0,2,1,1]],[[1,2,2,1],[2,0,2,2],[3,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,0,2,3],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[3,0,2,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,2],[2,0,2,2],[2,3,2,0],[0,2,1,1]],[[1,2,3,1],[2,0,2,2],[2,3,2,0],[0,2,1,1]],[[1,3,2,1],[2,0,2,2],[2,3,2,0],[0,2,1,1]],[[2,2,2,1],[2,0,2,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[2,0,2,2],[2,4,2,0],[0,1,2,1]],[[1,2,2,1],[2,0,2,2],[3,3,2,0],[0,1,2,1]],[[1,2,2,1],[2,0,2,3],[2,3,2,0],[0,1,2,1]],[[1,2,2,1],[3,0,2,2],[2,3,2,0],[0,1,2,1]],[[1,2,2,2],[2,0,2,2],[2,3,2,0],[0,1,2,1]],[[1,2,3,1],[2,0,2,2],[2,3,2,0],[0,1,2,1]],[[0,2,1,0],[1,3,0,1],[1,4,3,2],[1,2,2,1]],[[0,2,1,0],[1,3,0,1],[1,3,3,2],[2,2,2,1]],[[0,2,1,0],[1,3,0,1],[1,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,0,1],[1,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,0,1],[1,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,0,1],[3,2,3,2],[1,2,2,1]],[[0,2,1,0],[1,3,0,1],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[1,3,0,1],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,0,1],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,0,1],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,0,1],[3,3,3,2],[0,2,2,1]],[[0,2,1,0],[1,3,0,1],[2,4,3,2],[0,2,2,1]],[[0,2,1,0],[1,3,0,1],[2,3,3,2],[0,3,2,1]],[[0,2,1,0],[1,3,0,1],[2,3,3,2],[0,2,3,1]],[[0,2,1,0],[1,3,0,1],[2,3,3,2],[0,2,2,2]],[[0,2,1,0],[1,3,0,1],[3,3,3,2],[1,1,2,1]],[[0,2,1,0],[1,3,0,1],[2,4,3,2],[1,1,2,1]],[[0,2,1,0],[1,3,0,1],[2,3,3,2],[2,1,2,1]],[[0,2,1,0],[1,3,0,2],[0,3,3,3],[1,2,2,1]],[[0,2,1,0],[1,3,0,2],[0,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,0,2],[0,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,0,2],[0,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,0,2],[1,2,3,3],[1,2,2,1]],[[0,2,1,0],[1,3,0,2],[1,2,3,2],[2,2,2,1]],[[0,2,1,0],[1,3,0,2],[1,2,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,0,2],[1,2,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,0,2],[1,2,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,0,2],[1,4,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,0,2],[1,3,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,0,2],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,0,2],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,0,2],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,0,2],[1,3,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,0,2],[1,4,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,0,2],[1,3,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,0,2],[1,3,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,0,2],[1,3,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,0,2],[1,3,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,0,2],[1,3,3,3],[1,1,2,1]],[[0,2,1,0],[1,3,0,2],[1,3,3,2],[1,1,3,1]],[[0,2,1,0],[1,3,0,2],[1,3,3,2],[1,1,2,2]],[[0,2,1,0],[1,3,0,2],[1,4,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,0,2],[1,3,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,0,2],[1,3,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,0,2],[1,3,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,0,2],[3,1,3,2],[1,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,1,3,3],[1,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,1,3,2],[2,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,1,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,0,2],[2,1,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,0,2],[2,1,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,0,2],[3,2,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,2,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,0,2],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,0,2],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,0,2],[3,2,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,0,2],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,0,2],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,0,2],[2,2,3,3],[0,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,2,3,2],[0,3,2,1]],[[0,2,1,0],[1,3,0,2],[2,2,3,2],[0,2,3,1]],[[0,2,1,0],[1,3,0,2],[2,2,3,2],[0,2,2,2]],[[0,2,1,0],[1,3,0,2],[3,2,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,0,2],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,0,2],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,0,2],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,0,2],[3,3,2,2],[0,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,4,2,2],[0,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,3,2,3],[0,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[1,3,0,2],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[1,3,0,2],[2,3,2,2],[0,2,2,2]],[[0,2,1,0],[1,3,0,2],[3,3,2,2],[1,1,2,1]],[[0,2,1,0],[1,3,0,2],[2,4,2,2],[1,1,2,1]],[[0,2,1,0],[1,3,0,2],[2,3,2,2],[2,1,2,1]],[[0,2,1,0],[1,3,0,2],[3,3,3,1],[0,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,4,3,1],[0,2,2,1]],[[0,2,1,0],[1,3,0,2],[2,3,3,1],[0,3,2,1]],[[0,2,1,0],[1,3,0,2],[2,3,3,1],[0,2,3,1]],[[0,2,1,0],[1,3,0,2],[2,3,3,1],[0,2,2,2]],[[0,2,1,0],[1,3,0,2],[3,3,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,0,2],[2,4,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,0,2],[2,3,3,1],[2,1,2,1]],[[0,2,1,0],[1,3,0,2],[2,3,3,3],[0,1,2,1]],[[0,2,1,0],[1,3,0,2],[2,3,3,2],[0,1,3,1]],[[0,2,1,0],[1,3,0,2],[2,3,3,2],[0,1,2,2]],[[0,2,1,0],[1,3,0,2],[3,3,3,2],[0,2,2,0]],[[0,2,1,0],[1,3,0,2],[2,4,3,2],[0,2,2,0]],[[0,2,1,0],[1,3,0,2],[2,3,3,2],[0,3,2,0]],[[0,2,1,0],[1,3,0,2],[2,3,3,2],[0,2,3,0]],[[0,2,1,0],[1,3,0,2],[2,3,3,3],[1,0,2,1]],[[0,2,1,0],[1,3,0,2],[2,3,3,2],[1,0,3,1]],[[0,2,1,0],[1,3,0,2],[2,3,3,2],[1,0,2,2]],[[0,2,1,0],[1,3,0,2],[3,3,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,0,2],[2,4,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,0,2],[2,3,3,2],[2,1,2,0]],[[1,3,2,1],[2,0,2,2],[2,3,2,0],[0,1,2,1]],[[2,2,2,1],[2,0,2,2],[2,3,2,0],[0,1,2,1]],[[0,2,1,0],[1,3,1,0],[1,4,3,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,0],[1,3,3,2],[2,2,2,1]],[[0,2,1,0],[1,3,1,0],[1,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,1,0],[1,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,1,0],[1,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,1,0],[3,2,3,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,0],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[1,3,1,0],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,1,0],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,1,0],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,1,0],[3,3,3,2],[0,2,2,1]],[[0,2,1,0],[1,3,1,0],[2,4,3,2],[0,2,2,1]],[[0,2,1,0],[1,3,1,0],[2,3,3,2],[0,3,2,1]],[[0,2,1,0],[1,3,1,0],[2,3,3,2],[0,2,3,1]],[[0,2,1,0],[1,3,1,0],[2,3,3,2],[0,2,2,2]],[[0,2,1,0],[1,3,1,0],[3,3,3,2],[1,1,2,1]],[[0,2,1,0],[1,3,1,0],[2,4,3,2],[1,1,2,1]],[[0,2,1,0],[1,3,1,0],[2,3,3,2],[2,1,2,1]],[[0,2,1,0],[1,3,1,1],[1,4,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,1,1],[1,3,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,1,1],[1,3,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,1,1],[1,3,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,1,1],[1,3,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,1,1],[1,4,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,1],[1,3,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,1,1],[1,3,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,1,1],[1,3,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,1,1],[3,2,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,1,1],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,1,1],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,1,1],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,1,1],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,1,1],[3,2,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,1],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,1,1],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,1,1],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,1,1],[3,3,3,1],[0,2,2,1]],[[0,2,1,0],[1,3,1,1],[2,4,3,1],[0,2,2,1]],[[0,2,1,0],[1,3,1,1],[2,3,3,1],[0,3,2,1]],[[0,2,1,0],[1,3,1,1],[2,3,3,1],[0,2,3,1]],[[0,2,1,0],[1,3,1,1],[2,3,3,1],[0,2,2,2]],[[0,2,1,0],[1,3,1,1],[3,3,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,1,1],[2,4,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,1,1],[2,3,3,1],[2,1,2,1]],[[0,2,1,0],[1,3,1,1],[3,3,3,2],[0,2,2,0]],[[0,2,1,0],[1,3,1,1],[2,4,3,2],[0,2,2,0]],[[0,2,1,0],[1,3,1,1],[2,3,3,2],[0,3,2,0]],[[0,2,1,0],[1,3,1,1],[2,3,3,2],[0,2,3,0]],[[0,2,1,0],[1,3,1,1],[3,3,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,1,1],[2,4,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,1,1],[2,3,3,2],[2,1,2,0]],[[0,2,1,0],[1,3,1,3],[0,3,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[0,3,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[0,3,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,1,2],[0,3,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,1,2],[0,3,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,1,2],[0,3,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[0,3,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,1,2],[0,3,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,1,2],[0,3,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,1,3],[0,3,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[0,3,4,2],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[0,3,3,3],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[0,3,3,2],[1,2,1,2]],[[0,2,1,0],[1,3,1,3],[0,3,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[0,3,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[0,3,3,3],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[0,3,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,1,2],[0,3,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,1,3],[1,2,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,2,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,2,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,2,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,1,2],[1,2,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,1,2],[1,2,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,1,2],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,1,2],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,1,2],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,1,3],[1,2,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[1,2,4,2],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[1,2,3,3],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[1,2,3,2],[1,2,1,2]],[[0,2,1,0],[1,3,1,3],[1,2,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[1,2,3,3],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,1,2],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,1,2],[1,2,3,2],[1,2,3,0]],[[0,3,1,0],[1,3,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,1,0],[1,4,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,3],[1,3,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,1,3],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[1,3,1,2],[1,3,1,2],[1,2,2,2]],[[0,3,1,0],[1,3,1,2],[1,3,2,1],[1,2,2,1]],[[0,2,1,0],[1,4,1,2],[1,3,2,1],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[1,3,1,2],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[1,3,1,3],[1,3,2,2],[1,1,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,2,3],[1,1,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,2,2],[1,1,3,1]],[[0,2,1,0],[1,3,1,2],[1,3,2,2],[1,1,2,2]],[[0,3,1,0],[1,3,1,2],[1,3,2,2],[1,2,2,0]],[[0,2,1,0],[1,4,1,2],[1,3,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[1,3,1,2],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[1,3,1,2],[1,3,2,2],[1,2,3,0]],[[0,3,1,0],[1,3,1,2],[1,3,3,1],[1,1,2,1]],[[0,2,1,0],[1,4,1,2],[1,3,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,1,2],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,1],[1,1,2,2]],[[0,3,1,0],[1,3,1,2],[1,3,3,1],[1,2,1,1]],[[0,2,1,0],[1,4,1,2],[1,3,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[1,3,1,3],[1,3,3,2],[1,0,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,4,2],[1,0,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,3],[1,0,2,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,2],[1,0,2,2]],[[0,3,1,0],[1,3,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,4,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,1,3],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,1,2],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,1,2],[1,3,4,2],[1,1,1,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,3],[1,1,1,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,2],[1,1,1,2]],[[0,3,1,0],[1,3,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[1,4,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,1,3],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,1,2],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,1,2],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[1,3,1,2],[1,3,3,3],[1,1,2,0]],[[0,2,1,0],[1,3,1,2],[1,3,3,2],[1,1,3,0]],[[0,3,1,0],[1,3,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[1,4,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,1,3],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,1,2],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,1,2],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,3],[1,2,0,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[1,3,1,2],[1,3,3,2],[1,2,0,2]],[[0,3,1,0],[1,3,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[1,4,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,1,3],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,1,2],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,1,2],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[1,3,1,2],[1,3,3,3],[1,2,1,0]],[[0,2,1,0],[1,3,1,2],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[1,3,1,2],[1,3,3,2],[1,3,1,0]],[[0,2,1,0],[1,3,1,3],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[3,1,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,1,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,1,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,1,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,1,2],[2,1,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,1,2],[2,1,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,1,2],[3,1,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,1,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,1,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,1,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,1,2],[2,1,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,1,2],[2,1,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,1,3],[2,1,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[2,1,4,2],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[2,1,3,3],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[2,1,3,2],[1,2,1,2]],[[0,2,1,0],[1,3,1,3],[2,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[3,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,1,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,1,3,3],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,1,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,1,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,1,2],[2,1,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,1,3],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[3,2,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,1,3],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,1,2],[2,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,1,2],[1,3,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,1,2],[1,2,3,1]],[[0,2,1,0],[1,3,1,2],[2,2,1,2],[1,2,2,2]],[[0,2,1,0],[1,3,1,2],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[1,3,1,2],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[1,3,1,3],[2,2,2,2],[0,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,2,3],[0,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,2,2],[0,3,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,2,2],[0,2,3,1]],[[0,2,1,0],[1,3,1,2],[2,2,2,2],[0,2,2,2]],[[0,2,1,0],[1,3,1,2],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[1,3,1,2],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[1,3,1,2],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[1,3,1,2],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[1,3,1,2],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[1,3,1,2],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,1,2],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[1,3,1,2],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[1,3,1,3],[2,2,3,2],[0,2,1,1]],[[0,2,1,0],[1,3,1,2],[2,2,4,2],[0,2,1,1]],[[0,2,1,0],[1,3,1,2],[2,2,3,3],[0,2,1,1]],[[0,2,1,0],[1,3,1,2],[2,2,3,2],[0,2,1,2]],[[0,2,1,0],[1,3,1,3],[2,2,3,2],[0,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,2,3,3],[0,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[1,3,1,2],[2,2,3,2],[0,2,3,0]],[[0,2,1,0],[1,3,1,2],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,1,2],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[1,3,1,2],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[1,3,1,2],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,1,2],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[1,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[2,0,2,2],[2,4,1,2],[1,2,0,0]],[[1,2,2,1],[2,0,2,2],[3,3,1,2],[1,2,0,0]],[[1,2,2,1],[2,0,2,3],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[3,0,2,2],[2,3,1,2],[1,2,0,0]],[[1,2,2,2],[2,0,2,2],[2,3,1,2],[1,2,0,0]],[[0,2,1,0],[1,3,1,2],[3,3,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,0,2],[2,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,0,2],[1,3,2,1]],[[0,2,1,0],[1,3,1,2],[3,3,1,1],[1,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,1,1],[2,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,1,1],[1,3,2,1]],[[0,3,1,0],[1,3,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[1,4,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[1,3,1,3],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[1,3,1,2],[3,3,1,2],[0,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,1,3],[0,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[1,3,1,2],[2,3,1,2],[0,2,2,2]],[[0,3,1,0],[1,3,1,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[1,4,1,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[1,3,1,2],[3,3,1,2],[1,1,2,1]],[[0,2,1,0],[1,3,1,2],[2,4,1,2],[1,1,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,1,2],[2,1,2,1]],[[0,2,1,0],[1,3,1,2],[3,3,1,2],[1,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,1,2],[2,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,1,2],[1,3,2,0]],[[0,3,1,0],[1,3,1,2],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[1,4,1,2],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[1,3,1,2],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[1,3,1,2],[2,3,2,1],[0,2,2,2]],[[0,3,1,0],[1,3,1,2],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,4,1,2],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,3,1,2],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,3,1,2],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[1,3,1,3],[2,3,2,2],[0,1,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,2,3],[0,1,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,2,2],[0,1,3,1]],[[0,2,1,0],[1,3,1,2],[2,3,2,2],[0,1,2,2]],[[0,3,1,0],[1,3,1,2],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[1,4,1,2],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,1,2],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[1,3,1,3],[2,3,2,2],[1,0,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,2,3],[1,0,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,2,2],[1,0,3,1]],[[0,2,1,0],[1,3,1,2],[2,3,2,2],[1,0,2,2]],[[0,3,1,0],[1,3,1,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,4,1,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,1,2],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,1,2],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,3,1],[2,0,2,2],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[2,0,2,2],[2,3,1,2],[1,2,0,0]],[[2,2,2,1],[2,0,2,2],[2,3,1,2],[1,2,0,0]],[[0,3,1,0],[1,3,1,2],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,4,1,2],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,3,1,2],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,3,1,2],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,1],[0,1,2,2]],[[0,3,1,0],[1,3,1,2],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,4,1,2],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,1,2],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,1,2],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,1,2],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,1],[0,3,1,1]],[[0,3,1,0],[1,3,1,2],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,4,1,2],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,1,2],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,1,2],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,1],[1,0,2,2]],[[0,3,1,0],[1,3,1,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,4,1,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,1,2],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,1,2],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,1,2],[2,3,4,1],[1,1,1,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,1],[2,1,1,1]],[[0,2,1,0],[1,3,1,2],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,1,2],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,1],[2,2,0,1]],[[0,2,1,0],[1,3,1,3],[2,3,3,2],[0,0,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,4,2],[0,0,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,3],[0,0,2,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[0,0,2,2]],[[0,3,1,0],[1,3,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,4,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,1,3],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,1,2],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,1,2],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,1,2],[2,3,4,2],[0,1,1,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,3],[0,1,1,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[0,1,1,2]],[[0,3,1,0],[1,3,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,4,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,1,3],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,1,2],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,1,2],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,3,3],[0,1,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[0,1,3,0]],[[0,3,1,0],[1,3,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,4,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,1,3],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,1,2],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,1,2],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,1,2],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,3],[0,2,0,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[0,2,0,2]],[[0,3,1,0],[1,3,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,4,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,1,3],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,1,2],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,1,2],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,1,2],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[1,3,1,2],[2,3,3,3],[0,2,1,0]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,3],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[2,4,1,2],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[3,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,0,2,3],[2,3,1,2],[1,1,1,0]],[[0,3,1,0],[1,3,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,4,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,1,3],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,1,2],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,1,2],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,1,2],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,3],[1,0,1,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[2,0,1,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[1,0,1,2]],[[0,3,1,0],[1,3,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,4,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,1,3],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,1,2],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,1,2],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,3,3],[1,0,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[1,0,3,0]],[[0,3,1,0],[1,3,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,4,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,1,3],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,1,2],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,1,2],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,1,2],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,3],[1,1,0,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[1,1,0,2]],[[0,3,1,0],[1,3,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,4,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,1,3],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,1,2],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,1,2],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,1,2],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[1,3,1,2],[2,3,3,3],[1,1,1,0]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[3,0,2,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,2],[2,0,2,2],[2,3,1,2],[1,1,1,0]],[[1,2,3,1],[2,0,2,2],[2,3,1,2],[1,1,1,0]],[[1,3,2,1],[2,0,2,2],[2,3,1,2],[1,1,1,0]],[[2,2,2,1],[2,0,2,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,2],[1,1,0,2]],[[1,2,2,1],[2,0,2,2],[2,3,1,2],[2,1,0,1]],[[1,2,2,1],[2,0,2,2],[2,3,1,3],[1,1,0,1]],[[1,2,2,1],[2,0,2,2],[2,4,1,2],[1,1,0,1]],[[1,2,2,1],[2,0,2,2],[3,3,1,2],[1,1,0,1]],[[0,3,1,0],[1,3,1,2],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,4,1,2],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,3,1,2],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,3,1,2],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[1,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,2,3],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[3,0,2,2],[2,3,1,2],[1,1,0,1]],[[1,2,2,2],[2,0,2,2],[2,3,1,2],[1,1,0,1]],[[1,2,3,1],[2,0,2,2],[2,3,1,2],[1,1,0,1]],[[1,3,2,1],[2,0,2,2],[2,3,1,2],[1,1,0,1]],[[2,2,2,1],[2,0,2,2],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[2,0,2,2],[2,3,1,2],[2,0,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,3],[1,0,2,0]],[[1,2,2,1],[2,0,2,2],[2,4,1,2],[1,0,2,0]],[[1,2,2,1],[2,0,2,2],[3,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,0,2,3],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[3,0,2,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,2],[2,0,2,2],[2,3,1,2],[1,0,2,0]],[[1,2,3,1],[2,0,2,2],[2,3,1,2],[1,0,2,0]],[[1,3,2,1],[2,0,2,2],[2,3,1,2],[1,0,2,0]],[[2,2,2,1],[2,0,2,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,2],[1,0,1,2]],[[1,2,2,1],[2,0,2,2],[2,3,1,2],[2,0,1,1]],[[1,2,2,1],[2,0,2,2],[2,3,1,3],[1,0,1,1]],[[0,2,1,0],[1,3,2,0],[0,3,4,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,0],[0,3,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,0],[0,3,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,0],[0,3,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,2,0],[1,2,4,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,0],[1,2,3,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,0],[1,2,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,0],[1,2,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,0],[1,2,3,2],[1,2,2,2]],[[0,3,1,0],[1,3,2,0],[1,3,2,2],[1,2,2,1]],[[0,2,1,0],[1,4,2,0],[1,3,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,0],[1,4,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,0],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,0],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,0],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,0],[1,3,2,2],[1,2,2,2]],[[0,3,1,0],[1,3,2,0],[1,3,3,2],[1,1,2,1]],[[0,2,1,0],[1,4,2,0],[1,3,3,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,0],[1,4,3,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,0],[1,3,4,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,0],[1,3,3,2],[1,1,3,1]],[[0,2,1,0],[1,3,2,0],[1,3,3,2],[1,1,2,2]],[[0,3,1,0],[1,3,2,0],[1,3,3,2],[1,2,1,1]],[[0,2,1,0],[1,4,2,0],[1,3,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,2,0],[1,4,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,2,0],[1,3,4,2],[1,2,1,1]],[[0,2,1,0],[1,3,2,0],[1,3,3,2],[2,2,1,1]],[[0,2,1,0],[1,3,2,0],[1,3,3,2],[1,3,1,1]],[[0,2,1,0],[1,3,2,0],[3,1,3,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,0],[2,1,4,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,0],[2,1,3,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,0],[2,1,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,0],[2,1,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,0],[2,1,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,2,0],[3,2,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,0],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,0],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,0],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,0],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,2,0],[2,2,4,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,0],[2,2,3,2],[0,3,2,1]],[[0,2,1,0],[1,3,2,0],[2,2,3,2],[0,2,3,1]],[[0,2,1,0],[1,3,2,0],[2,2,3,2],[0,2,2,2]],[[0,2,1,0],[1,3,2,0],[3,2,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,2,0],[2,2,3,2],[2,2,1,1]],[[0,2,1,0],[1,3,2,0],[2,2,3,2],[1,3,1,1]],[[0,2,1,0],[1,3,2,0],[3,3,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,0],[2,3,1,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,0],[2,3,1,2],[1,3,2,1]],[[0,3,1,0],[1,3,2,0],[2,3,2,2],[0,2,2,1]],[[0,2,1,0],[1,4,2,0],[2,3,2,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,0],[3,3,2,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,0],[2,4,2,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,0],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[1,3,2,0],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[1,3,2,0],[2,3,2,2],[0,2,2,2]],[[0,3,1,0],[1,3,2,0],[2,3,2,2],[1,1,2,1]],[[0,2,1,0],[1,4,2,0],[2,3,2,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,0],[3,3,2,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,0],[2,4,2,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,0],[2,3,2,2],[2,1,2,1]],[[0,3,1,0],[1,3,2,0],[2,3,3,2],[0,1,2,1]],[[0,2,1,0],[1,4,2,0],[2,3,3,2],[0,1,2,1]],[[0,2,1,0],[1,3,2,0],[3,3,3,2],[0,1,2,1]],[[0,2,1,0],[1,3,2,0],[2,4,3,2],[0,1,2,1]],[[0,2,1,0],[1,3,2,0],[2,3,4,2],[0,1,2,1]],[[0,2,1,0],[1,3,2,0],[2,3,3,2],[0,1,3,1]],[[0,2,1,0],[1,3,2,0],[2,3,3,2],[0,1,2,2]],[[0,3,1,0],[1,3,2,0],[2,3,3,2],[0,2,1,1]],[[0,2,1,0],[1,4,2,0],[2,3,3,2],[0,2,1,1]],[[0,2,1,0],[1,3,2,0],[3,3,3,2],[0,2,1,1]],[[0,2,1,0],[1,3,2,0],[2,4,3,2],[0,2,1,1]],[[0,2,1,0],[1,3,2,0],[2,3,4,2],[0,2,1,1]],[[0,2,1,0],[1,3,2,0],[2,3,3,2],[0,3,1,1]],[[0,3,1,0],[1,3,2,0],[2,3,3,2],[1,0,2,1]],[[0,2,1,0],[1,4,2,0],[2,3,3,2],[1,0,2,1]],[[0,2,1,0],[1,3,2,0],[3,3,3,2],[1,0,2,1]],[[0,2,1,0],[1,3,2,0],[2,4,3,2],[1,0,2,1]],[[0,2,1,0],[1,3,2,0],[2,3,4,2],[1,0,2,1]],[[0,2,1,0],[1,3,2,0],[2,3,3,2],[2,0,2,1]],[[0,2,1,0],[1,3,2,0],[2,3,3,2],[1,0,3,1]],[[0,2,1,0],[1,3,2,0],[2,3,3,2],[1,0,2,2]],[[0,3,1,0],[1,3,2,0],[2,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,4,2,0],[2,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,2,0],[3,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,2,0],[2,4,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,2,0],[2,3,4,2],[1,1,1,1]],[[0,2,1,0],[1,3,2,0],[2,3,3,2],[2,1,1,1]],[[0,2,1,0],[1,3,2,0],[3,3,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,2,0],[2,4,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,1],[2,0,2,2],[2,4,1,2],[1,0,1,1]],[[1,2,2,1],[2,0,2,2],[3,3,1,2],[1,0,1,1]],[[1,2,2,1],[2,0,2,3],[2,3,1,2],[1,0,1,1]],[[1,2,2,1],[3,0,2,2],[2,3,1,2],[1,0,1,1]],[[1,2,2,2],[2,0,2,2],[2,3,1,2],[1,0,1,1]],[[1,2,3,1],[2,0,2,2],[2,3,1,2],[1,0,1,1]],[[1,3,2,1],[2,0,2,2],[2,3,1,2],[1,0,1,1]],[[2,2,2,1],[2,0,2,2],[2,3,1,2],[1,0,1,1]],[[0,2,1,0],[1,3,2,1],[0,3,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[0,3,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[0,3,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,1],[0,3,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,2,1],[0,3,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[0,3,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[0,3,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,2,1],[0,3,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,2,1],[0,3,4,2],[1,2,1,1]],[[0,2,1,0],[1,3,2,1],[0,3,3,3],[1,2,1,1]],[[0,2,1,0],[1,3,2,1],[0,3,3,2],[1,2,1,2]],[[0,2,1,0],[1,3,2,1],[0,3,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,1],[0,3,3,3],[1,2,2,0]],[[0,2,1,0],[1,3,2,1],[0,3,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,2,1],[0,3,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,2,1],[1,2,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,2,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,2,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[1,2,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,1],[1,2,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,2,1],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,2,1],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,2,1],[1,2,4,2],[1,2,1,1]],[[0,2,1,0],[1,3,2,1],[1,2,3,3],[1,2,1,1]],[[0,2,1,0],[1,3,2,1],[1,2,3,2],[1,2,1,2]],[[0,2,1,0],[1,3,2,1],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,1],[1,2,3,3],[1,2,2,0]],[[0,2,1,0],[1,3,2,1],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,2,1],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,2,1],[1,2,3,2],[1,2,3,0]],[[0,3,1,0],[1,3,2,1],[1,3,1,2],[1,2,2,1]],[[0,2,1,0],[1,4,2,1],[1,3,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,1,3],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,1],[1,3,1,2],[1,2,2,2]],[[0,3,1,0],[1,3,2,1],[1,3,2,1],[1,2,2,1]],[[0,2,1,0],[1,4,2,1],[1,3,2,1],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[1,3,2,1],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[1,3,2,1],[1,3,2,3],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,2,2],[1,1,3,1]],[[0,2,1,0],[1,3,2,1],[1,3,2,2],[1,1,2,2]],[[0,3,1,0],[1,3,2,1],[1,3,2,2],[1,2,2,0]],[[0,2,1,0],[1,4,2,1],[1,3,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,1],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,1],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[1,3,2,1],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[1,3,2,1],[1,3,2,2],[1,2,3,0]],[[0,3,1,0],[1,3,2,1],[1,3,3,0],[1,2,2,1]],[[0,2,1,0],[1,4,2,1],[1,3,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,4,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,0],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,0],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,0],[1,2,3,1]],[[0,3,1,0],[1,3,2,1],[1,3,3,1],[1,1,2,1]],[[0,2,1,0],[1,4,2,1],[1,3,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,1],[1,1,2,2]],[[0,3,1,0],[1,3,2,1],[1,3,3,1],[1,2,1,1]],[[0,2,1,0],[1,4,2,1],[1,3,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,2,1],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,2,1],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[1,3,2,1],[1,3,4,2],[1,0,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,3],[1,0,2,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,2],[1,0,2,2]],[[0,3,1,0],[1,3,2,1],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,4,2,1],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,2,1],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,2,1],[1,3,4,2],[1,1,1,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,3],[1,1,1,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,2],[1,1,1,2]],[[0,3,1,0],[1,3,2,1],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[1,4,2,1],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,2,1],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,2,1],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[1,3,2,1],[1,3,3,3],[1,1,2,0]],[[0,2,1,0],[1,3,2,1],[1,3,3,2],[1,1,3,0]],[[0,3,1,0],[1,3,2,1],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[1,4,2,1],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,2,1],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,2,1],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,3],[1,2,0,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[1,3,2,1],[1,3,3,2],[1,2,0,2]],[[0,3,1,0],[1,3,2,1],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[1,4,2,1],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,2,1],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,2,1],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[1,3,2,1],[1,3,3,3],[1,2,1,0]],[[0,2,1,0],[1,3,2,1],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[1,3,2,1],[1,3,3,2],[1,3,1,0]],[[0,2,1,0],[1,3,2,1],[3,1,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,1,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,1,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,1,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[2,1,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,1],[2,1,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,2,1],[3,1,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,1,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,1,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,1,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[2,1,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,2,1],[2,1,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,2,1],[2,1,4,2],[1,2,1,1]],[[0,2,1,0],[1,3,2,1],[2,1,3,3],[1,2,1,1]],[[0,2,1,0],[1,3,2,1],[2,1,3,2],[1,2,1,2]],[[0,2,1,0],[1,3,2,1],[3,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,1,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,1,3,3],[1,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,1,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,1,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,2,1],[2,1,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,2,1],[3,2,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,1,3],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,1,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,1,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,1,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,1],[2,2,1,2],[1,2,2,2]],[[0,2,1,0],[1,3,2,1],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[1,3,2,1],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[1,3,2,1],[2,2,2,3],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,2,2],[0,3,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,2,2],[0,2,3,1]],[[0,2,1,0],[1,3,2,1],[2,2,2,2],[0,2,2,2]],[[0,2,1,0],[1,3,2,1],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[1,3,2,1],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[1,3,2,1],[3,2,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,0],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,0],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,0],[1,2,3,1]],[[0,2,1,0],[1,3,2,1],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[1,3,2,1],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[1,3,2,1],[2,2,4,2],[0,2,1,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,3],[0,2,1,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,2],[0,2,1,2]],[[0,2,1,0],[1,3,2,1],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,2,3,3],[0,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[1,3,2,1],[2,2,3,2],[0,2,3,0]],[[0,2,1,0],[1,3,2,1],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[1,3,2,1],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[1,3,2,1],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,2,1],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[1,3,2,1],[2,2,3,2],[1,3,1,0]],[[0,2,1,0],[1,3,2,1],[3,3,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,0,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,0,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,1],[3,3,1,1],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,1,1],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,1,1],[1,3,2,1]],[[0,3,1,0],[1,3,2,1],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[1,4,2,1],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[3,3,1,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,1,3],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[1,3,2,1],[2,3,1,2],[0,2,2,2]],[[0,3,1,0],[1,3,2,1],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[1,4,2,1],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[3,3,1,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[2,4,1,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,1,2],[2,1,2,1]],[[0,2,1,0],[1,3,2,1],[3,3,1,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,1,2],[2,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,1,2],[1,3,2,0]],[[0,2,1,0],[1,3,2,1],[3,3,2,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,2,0],[2,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,2,0],[1,3,2,1]],[[0,3,1,0],[1,3,2,1],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[1,4,2,1],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[1,3,2,1],[2,3,2,1],[0,2,2,2]],[[0,3,1,0],[1,3,2,1],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,4,2,1],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,2,3],[0,1,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,2,2],[0,1,3,1]],[[0,2,1,0],[1,3,2,1],[2,3,2,2],[0,1,2,2]],[[0,3,1,0],[1,3,2,1],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[1,4,2,1],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,2,1],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[1,3,2,1],[2,3,2,3],[1,0,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,2,2],[1,0,3,1]],[[0,2,1,0],[1,3,2,1],[2,3,2,2],[1,0,2,2]],[[0,3,1,0],[1,3,2,1],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,4,2,1],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,2,1],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,2,1],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,3],[0,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,4,1,2],[0,2,1,0]],[[1,2,2,1],[2,0,2,2],[3,3,1,2],[0,2,1,0]],[[0,3,1,0],[1,3,2,1],[2,3,3,0],[0,2,2,1]],[[0,2,1,0],[1,4,2,1],[2,3,3,0],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[3,3,3,0],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,4,3,0],[0,2,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,0],[0,3,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,0],[0,2,3,1]],[[0,3,1,0],[1,3,2,1],[2,3,3,0],[1,1,2,1]],[[0,2,1,0],[1,4,2,1],[2,3,3,0],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[3,3,3,0],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[2,4,3,0],[1,1,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,0],[2,1,2,1]],[[0,3,1,0],[1,3,2,1],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,4,2,1],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,3,2,1],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,3,2,1],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,1],[0,1,2,2]],[[0,3,1,0],[1,3,2,1],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,4,2,1],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,2,1],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,2,1],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,2,1],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,1],[0,3,1,1]],[[0,3,1,0],[1,3,2,1],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,4,2,1],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,2,1],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,2,1],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,1],[1,0,2,2]],[[0,3,1,0],[1,3,2,1],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,4,2,1],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,2,1],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,2,1],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,2,1],[2,3,4,1],[1,1,1,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,1],[2,1,1,1]],[[0,3,1,0],[1,3,2,1],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,4,2,1],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,2,1],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,2,1],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,2,3],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[3,0,2,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,2],[2,0,2,2],[2,3,1,2],[0,2,1,0]],[[1,2,3,1],[2,0,2,2],[2,3,1,2],[0,2,1,0]],[[1,3,2,1],[2,0,2,2],[2,3,1,2],[0,2,1,0]],[[2,2,2,1],[2,0,2,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,2],[0,2,0,2]],[[1,2,2,1],[2,0,2,2],[2,3,1,2],[0,3,0,1]],[[1,2,2,1],[2,0,2,2],[2,3,1,3],[0,2,0,1]],[[0,2,1,0],[1,3,2,1],[2,3,4,2],[0,0,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,3],[0,0,2,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[0,0,2,2]],[[0,3,1,0],[1,3,2,1],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,4,2,1],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,2,1],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,2,1],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,2,1],[2,3,4,2],[0,1,1,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,3],[0,1,1,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[0,1,1,2]],[[0,3,1,0],[1,3,2,1],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,4,2,1],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,2,1],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,2,1],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,3,3],[0,1,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[0,1,3,0]],[[0,3,1,0],[1,3,2,1],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,4,2,1],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,2,1],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,2,1],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,2,1],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,3],[0,2,0,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[0,2,0,2]],[[0,3,1,0],[1,3,2,1],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,4,2,1],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,2,1],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,2,1],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,2,1],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[1,3,2,1],[2,3,3,3],[0,2,1,0]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,4,1,2],[0,2,0,1]],[[1,2,2,1],[2,0,2,2],[3,3,1,2],[0,2,0,1]],[[1,2,2,1],[2,0,2,3],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[3,0,2,2],[2,3,1,2],[0,2,0,1]],[[1,2,2,2],[2,0,2,2],[2,3,1,2],[0,2,0,1]],[[1,2,3,1],[2,0,2,2],[2,3,1,2],[0,2,0,1]],[[1,3,2,1],[2,0,2,2],[2,3,1,2],[0,2,0,1]],[[2,2,2,1],[2,0,2,2],[2,3,1,2],[0,2,0,1]],[[0,3,1,0],[1,3,2,1],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,4,2,1],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,2,1],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,2,1],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,2,1],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,3],[1,0,1,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[2,0,1,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[1,0,1,2]],[[0,3,1,0],[1,3,2,1],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,4,2,1],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,2,1],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,2,1],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,3,3],[1,0,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[1,0,3,0]],[[0,3,1,0],[1,3,2,1],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,4,2,1],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,2,1],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,2,1],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,2,1],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,3],[1,1,0,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[1,1,0,2]],[[0,3,1,0],[1,3,2,1],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,4,2,1],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,2,1],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,2,1],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,2,1],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[1,3,2,1],[2,3,3,3],[1,1,1,0]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[2,1,1,0]],[[0,3,1,0],[1,3,2,1],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,4,2,1],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,3,2,1],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,3,2,1],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[1,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,3],[0,1,2,0]],[[1,2,2,1],[2,0,2,2],[2,4,1,2],[0,1,2,0]],[[1,2,2,1],[2,0,2,2],[3,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,0,2,3],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[3,0,2,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,2],[2,0,2,2],[2,3,1,2],[0,1,2,0]],[[1,2,3,1],[2,0,2,2],[2,3,1,2],[0,1,2,0]],[[1,3,2,1],[2,0,2,2],[2,3,1,2],[0,1,2,0]],[[2,2,2,1],[2,0,2,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,2],[0,1,1,2]],[[1,2,2,1],[2,0,2,2],[2,3,1,3],[0,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,4,1,2],[0,1,1,1]],[[1,2,2,1],[2,0,2,2],[3,3,1,2],[0,1,1,1]],[[1,2,2,1],[2,0,2,3],[2,3,1,2],[0,1,1,1]],[[1,2,2,1],[3,0,2,2],[2,3,1,2],[0,1,1,1]],[[1,2,2,2],[2,0,2,2],[2,3,1,2],[0,1,1,1]],[[1,2,3,1],[2,0,2,2],[2,3,1,2],[0,1,1,1]],[[1,3,2,1],[2,0,2,2],[2,3,1,2],[0,1,1,1]],[[2,2,2,1],[2,0,2,2],[2,3,1,2],[0,1,1,1]],[[0,2,1,0],[1,3,2,2],[0,3,4,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[0,3,3,0],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[0,3,3,0],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[0,3,3,0],[1,2,2,2]],[[0,2,1,0],[1,3,2,2],[0,3,4,1],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[0,3,3,1],[1,3,2,0]],[[0,2,1,0],[1,3,2,2],[0,3,3,1],[1,2,3,0]],[[0,2,1,0],[1,3,2,3],[1,0,3,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,0,3,3],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,0,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[1,0,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,2,3],[1,1,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,1,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,1,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,1,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[1,1,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[1,1,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,2,2],[1,1,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,1,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,1,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[1,1,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[1,1,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,2,3],[1,1,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,2,2],[1,1,4,2],[1,2,1,1]],[[0,2,1,0],[1,3,2,2],[1,1,3,3],[1,2,1,1]],[[0,2,1,0],[1,3,2,2],[1,1,3,2],[1,2,1,2]],[[0,2,1,0],[1,3,2,3],[1,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[1,1,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[1,1,3,3],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[1,1,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,2,2],[1,1,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,2,2],[1,1,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,2,3],[1,2,2,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[1,2,2,3],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[1,2,2,2],[1,1,3,1]],[[0,2,1,0],[1,3,2,2],[1,2,2,2],[1,1,2,2]],[[0,2,1,0],[1,3,2,2],[1,2,4,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,0],[2,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,0],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,0],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,0],[1,2,2,2]],[[0,2,1,0],[1,3,2,2],[1,2,4,1],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,1],[1,1,3,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,1],[1,1,2,2]],[[0,2,1,0],[1,3,2,2],[1,2,4,1],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[1,2,3,1],[2,2,2,0]],[[0,2,1,0],[1,3,2,2],[1,2,3,1],[1,3,2,0]],[[0,2,1,0],[1,3,2,2],[1,2,3,1],[1,2,3,0]],[[0,2,1,0],[1,3,2,3],[1,2,3,2],[1,0,2,1]],[[0,2,1,0],[1,3,2,2],[1,2,4,2],[1,0,2,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,3],[1,0,2,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,2],[1,0,2,2]],[[0,2,1,0],[1,3,2,3],[1,2,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,2,2],[1,2,4,2],[1,1,1,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,3],[1,1,1,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,2],[1,1,1,2]],[[0,2,1,0],[1,3,2,3],[1,2,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,2,2],[1,2,4,2],[1,1,2,0]],[[0,2,1,0],[1,3,2,2],[1,2,3,3],[1,1,2,0]],[[0,2,1,0],[1,3,2,2],[1,2,3,2],[1,1,3,0]],[[0,2,1,0],[1,3,2,3],[1,2,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,2,2],[1,2,4,2],[1,2,0,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,3],[1,2,0,1]],[[0,2,1,0],[1,3,2,2],[1,2,3,2],[1,2,0,2]],[[0,2,1,0],[1,3,2,3],[1,2,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,2,2],[1,2,4,2],[1,2,1,0]],[[0,2,1,0],[1,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,1],[2,1,2,0]],[[0,3,1,0],[1,3,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[1,4,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,3],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,4,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,3,0,3],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,3,0,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,3,0,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[1,3,0,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[1,3,0,2],[1,2,2,2]],[[0,3,1,0],[1,3,2,2],[1,3,2,0],[1,2,2,1]],[[0,2,1,0],[1,4,2,2],[1,3,2,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,4,2,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,3,2,0],[2,2,2,1]],[[0,2,1,0],[1,3,2,2],[1,3,2,0],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[1,3,2,0],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[1,3,2,0],[1,2,2,2]],[[0,3,1,0],[1,3,2,2],[1,3,2,1],[1,2,2,0]],[[0,2,1,0],[1,4,2,2],[1,3,2,1],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[1,4,2,1],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[1,3,2,1],[2,2,2,0]],[[0,2,1,0],[1,3,2,2],[1,3,2,1],[1,3,2,0]],[[0,2,1,0],[1,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,2],[2,4,1,1],[1,1,2,0]],[[1,2,2,1],[2,0,2,2],[3,3,1,1],[1,1,2,0]],[[1,2,2,1],[2,0,2,3],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[3,0,2,2],[2,3,1,1],[1,1,2,0]],[[1,2,2,2],[2,0,2,2],[2,3,1,1],[1,1,2,0]],[[1,2,3,1],[2,0,2,2],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[2,0,2,2],[2,3,1,1],[1,1,2,0]],[[2,2,2,1],[2,0,2,2],[2,3,1,1],[1,1,2,0]],[[0,3,1,0],[1,3,2,2],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[1,4,2,2],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[1,4,3,0],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[1,3,4,0],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[1,3,3,0],[1,1,3,1]],[[0,2,1,0],[1,3,2,2],[1,3,3,0],[1,1,2,2]],[[0,3,1,0],[1,3,2,2],[1,3,3,0],[1,2,1,1]],[[0,2,1,0],[1,4,2,2],[1,3,3,0],[1,2,1,1]],[[0,2,1,0],[1,3,2,2],[1,4,3,0],[1,2,1,1]],[[0,2,1,0],[1,3,2,2],[1,3,4,0],[1,2,1,1]],[[0,2,1,0],[1,3,2,2],[1,3,3,0],[2,2,1,1]],[[0,2,1,0],[1,3,2,2],[1,3,3,0],[1,3,1,1]],[[0,3,1,0],[1,3,2,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,4,2,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,2,2],[1,4,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,2,2],[1,3,4,1],[1,1,1,1]],[[0,3,1,0],[1,3,2,2],[1,3,3,1],[1,1,2,0]],[[0,2,1,0],[1,4,2,2],[1,3,3,1],[1,1,2,0]],[[0,2,1,0],[1,3,2,2],[1,4,3,1],[1,1,2,0]],[[0,2,1,0],[1,3,2,2],[1,3,4,1],[1,1,2,0]],[[0,2,1,0],[1,3,2,2],[1,3,3,1],[1,1,3,0]],[[0,3,1,0],[1,3,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,4,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,2,2],[1,4,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,2,2],[1,3,4,1],[1,2,0,1]],[[0,2,1,0],[1,3,2,2],[1,3,3,1],[2,2,0,1]],[[0,2,1,0],[1,3,2,2],[1,3,3,1],[1,3,0,1]],[[0,3,1,0],[1,3,2,2],[1,3,3,1],[1,2,1,0]],[[0,2,1,0],[1,4,2,2],[1,3,3,1],[1,2,1,0]],[[0,2,1,0],[1,3,2,2],[1,4,3,1],[1,2,1,0]],[[0,2,1,0],[1,3,2,2],[1,3,4,1],[1,2,1,0]],[[0,2,1,0],[1,3,2,2],[1,3,3,1],[2,2,1,0]],[[0,2,1,0],[1,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,1],[0,2,3,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,1],[0,3,2,0]],[[1,2,2,1],[2,0,2,2],[2,4,1,1],[0,2,2,0]],[[1,2,2,1],[2,0,2,2],[3,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,0,2,3],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[3,0,2,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,2],[2,0,2,2],[2,3,1,1],[0,2,2,0]],[[1,2,3,1],[2,0,2,2],[2,3,1,1],[0,2,2,0]],[[1,3,2,1],[2,0,2,2],[2,3,1,1],[0,2,2,0]],[[2,2,2,1],[2,0,2,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,1,0],[2,1,2,1]],[[1,2,2,1],[2,0,2,2],[2,4,1,0],[1,1,2,1]],[[1,2,2,1],[2,0,2,2],[3,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,0,2,3],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[3,0,2,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,2],[2,0,2,2],[2,3,1,0],[1,1,2,1]],[[1,2,3,1],[2,0,2,2],[2,3,1,0],[1,1,2,1]],[[1,3,2,1],[2,0,2,2],[2,3,1,0],[1,1,2,1]],[[2,2,2,1],[2,0,2,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[2,0,2,2],[2,3,1,0],[0,2,2,2]],[[1,2,2,1],[2,0,2,2],[2,3,1,0],[0,2,3,1]],[[1,2,2,1],[2,0,2,2],[2,3,1,0],[0,3,2,1]],[[0,2,1,0],[1,3,2,3],[2,0,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[3,0,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,0,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,0,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,0,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[2,0,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[2,0,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,2,2],[3,0,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,0,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,0,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,0,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[2,0,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[2,0,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,2,3],[2,0,3,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,0,3,3],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,0,3,2],[0,2,3,1]],[[0,2,1,0],[1,3,2,2],[2,0,3,2],[0,2,2,2]],[[0,2,1,0],[1,3,2,3],[2,0,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,2,2],[2,0,4,2],[1,2,1,1]],[[0,2,1,0],[1,3,2,2],[2,0,3,3],[1,2,1,1]],[[0,2,1,0],[1,3,2,2],[2,0,3,2],[1,2,1,2]],[[0,2,1,0],[1,3,2,3],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[3,0,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,0,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,0,3,3],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,0,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,0,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,2,2],[2,0,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,2,3],[2,1,2,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,1,2,3],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,1,2,2],[0,3,2,1]],[[0,2,1,0],[1,3,2,2],[2,1,2,2],[0,2,3,1]],[[0,2,1,0],[1,3,2,2],[2,1,2,2],[0,2,2,2]],[[0,2,1,0],[1,3,2,2],[3,1,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,1,4,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,1,3,0],[2,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,1,3,0],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[2,1,3,0],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[2,1,3,0],[1,2,2,2]],[[0,2,1,0],[1,3,2,2],[2,1,4,1],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,1,3,1],[0,3,2,1]],[[0,2,1,0],[1,3,2,2],[2,1,3,1],[0,2,3,1]],[[0,2,1,0],[1,3,2,2],[2,1,3,1],[0,2,2,2]],[[0,2,1,0],[1,3,2,2],[3,1,3,1],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,1,4,1],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,1,3,1],[2,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,1,3,1],[1,3,2,0]],[[0,2,1,0],[1,3,2,2],[2,1,3,1],[1,2,3,0]],[[0,2,1,0],[1,3,2,3],[2,1,3,2],[0,2,1,1]],[[0,2,1,0],[1,3,2,2],[2,1,4,2],[0,2,1,1]],[[0,2,1,0],[1,3,2,2],[2,1,3,3],[0,2,1,1]],[[0,2,1,0],[1,3,2,2],[2,1,3,2],[0,2,1,2]],[[0,2,1,0],[1,3,2,3],[2,1,3,2],[0,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,1,4,2],[0,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,1,3,3],[0,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,1,3,2],[0,3,2,0]],[[0,2,1,0],[1,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,2,2],[2,4,1,0],[0,2,2,1]],[[1,2,2,1],[2,0,2,2],[3,3,1,0],[0,2,2,1]],[[1,2,2,1],[2,0,2,3],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[3,0,2,2],[2,3,1,0],[0,2,2,1]],[[1,2,2,2],[2,0,2,2],[2,3,1,0],[0,2,2,1]],[[1,2,3,1],[2,0,2,2],[2,3,1,0],[0,2,2,1]],[[1,3,2,1],[2,0,2,2],[2,3,1,0],[0,2,2,1]],[[2,2,2,1],[2,0,2,2],[2,3,1,0],[0,2,2,1]],[[0,2,1,0],[1,3,2,3],[2,2,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[3,2,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,0,3],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,0,2],[2,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,0,2],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,0,2],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[2,2,0,2],[1,2,2,2]],[[0,2,1,0],[1,3,2,2],[3,2,2,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,2,0],[2,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,2,0],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,2,0],[1,2,3,1]],[[0,2,1,0],[1,3,2,2],[2,2,2,0],[1,2,2,2]],[[0,2,1,0],[1,3,2,2],[3,2,2,1],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,2,2,1],[2,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,2,2,1],[1,3,2,0]],[[0,2,1,0],[1,3,2,2],[2,2,2,1],[1,2,3,0]],[[0,2,1,0],[1,3,2,3],[2,2,2,2],[0,1,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,2,3],[0,1,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,2,2],[0,1,3,1]],[[0,2,1,0],[1,3,2,2],[2,2,2,2],[0,1,2,2]],[[0,2,1,0],[1,3,2,3],[2,2,2,2],[1,0,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,2,3],[1,0,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,2,2],[1,0,3,1]],[[0,2,1,0],[1,3,2,2],[2,2,2,2],[1,0,2,2]],[[0,2,1,0],[1,3,2,2],[2,2,4,0],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,0],[0,3,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,0],[0,2,3,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,0],[0,2,2,2]],[[0,2,1,0],[1,3,2,2],[3,2,3,0],[1,2,1,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,0],[2,2,1,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,0],[1,3,1,1]],[[0,2,1,0],[1,3,2,2],[2,2,4,1],[0,1,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,1],[0,1,3,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,1],[0,1,2,2]],[[0,2,1,0],[1,3,2,2],[2,2,4,1],[0,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,2,3,1],[0,3,2,0]],[[0,2,1,0],[1,3,2,2],[2,2,3,1],[0,2,3,0]],[[0,2,1,0],[1,3,2,2],[2,2,4,1],[1,0,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,1],[1,0,3,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,1],[1,0,2,2]],[[0,2,1,0],[1,3,2,2],[3,2,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,1],[2,2,0,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,1],[1,3,0,1]],[[0,2,1,0],[1,3,2,2],[3,2,3,1],[1,2,1,0]],[[0,2,1,0],[1,3,2,2],[2,2,3,1],[2,2,1,0]],[[0,2,1,0],[1,3,2,2],[2,2,3,1],[1,3,1,0]],[[0,2,1,0],[1,3,2,3],[2,2,3,2],[0,0,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,4,2],[0,0,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,3],[0,0,2,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,2],[0,0,2,2]],[[0,2,1,0],[1,3,2,3],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,2,2],[2,2,4,2],[0,1,1,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,3],[0,1,1,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,2],[0,1,1,2]],[[0,2,1,0],[1,3,2,3],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,2,2],[2,2,4,2],[0,1,2,0]],[[0,2,1,0],[1,3,2,2],[2,2,3,3],[0,1,2,0]],[[0,2,1,0],[1,3,2,2],[2,2,3,2],[0,1,3,0]],[[0,2,1,0],[1,3,2,3],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,2,2],[2,2,4,2],[0,2,0,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,3],[0,2,0,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,2],[0,2,0,2]],[[0,2,1,0],[1,3,2,3],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,2,2],[2,2,4,2],[0,2,1,0]],[[0,2,1,0],[1,3,2,2],[2,2,3,3],[0,2,1,0]],[[0,2,1,0],[1,3,2,3],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,2,2],[2,2,4,2],[1,0,1,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,3],[1,0,1,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,2],[1,0,1,2]],[[0,2,1,0],[1,3,2,3],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,2,2],[2,2,4,2],[1,0,2,0]],[[0,2,1,0],[1,3,2,2],[2,2,3,3],[1,0,2,0]],[[0,2,1,0],[1,3,2,2],[2,2,3,2],[1,0,3,0]],[[0,2,1,0],[1,3,2,3],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,2,2],[2,2,4,2],[1,1,0,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,3],[1,1,0,1]],[[0,2,1,0],[1,3,2,2],[2,2,3,2],[1,1,0,2]],[[0,2,1,0],[1,3,2,3],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,2,2],[2,2,4,2],[1,1,1,0]],[[0,2,1,0],[1,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,0,3],[1,1,2,0]],[[1,2,2,1],[2,0,2,2],[2,4,0,2],[1,1,2,0]],[[1,2,2,1],[2,0,2,2],[3,3,0,2],[1,1,2,0]],[[1,2,2,1],[2,0,2,3],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[3,0,2,2],[2,3,0,2],[1,1,2,0]],[[1,2,2,2],[2,0,2,2],[2,3,0,2],[1,1,2,0]],[[1,2,3,1],[2,0,2,2],[2,3,0,2],[1,1,2,0]],[[1,3,2,1],[2,0,2,2],[2,3,0,2],[1,1,2,0]],[[2,2,2,1],[2,0,2,2],[2,3,0,2],[1,1,2,0]],[[0,3,1,0],[1,3,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[1,4,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,3],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[3,3,0,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,4,0,2],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,0,3],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,0,2],[0,3,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,0,2],[0,2,3,1]],[[0,2,1,0],[1,3,2,2],[2,3,0,2],[0,2,2,2]],[[0,3,1,0],[1,3,2,2],[2,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,4,2,2],[2,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[3,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[2,4,0,2],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,0,2],[2,1,2,1]],[[0,2,1,0],[1,3,2,2],[3,3,1,0],[1,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,1,0],[2,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,1,0],[1,3,2,1]],[[0,2,1,0],[1,3,2,2],[3,3,1,1],[1,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,1,1],[2,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[1,1,1,2]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[2,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,3],[1,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,4,0,2],[1,1,1,1]],[[1,2,2,1],[2,0,2,2],[3,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,0,2,3],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[3,0,2,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,2],[2,0,2,2],[2,3,0,2],[1,1,1,1]],[[1,2,3,1],[2,0,2,2],[2,3,0,2],[1,1,1,1]],[[1,3,2,1],[2,0,2,2],[2,3,0,2],[1,1,1,1]],[[0,3,1,0],[1,3,2,2],[2,3,2,0],[0,2,2,1]],[[0,2,1,0],[1,4,2,2],[2,3,2,0],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[3,3,2,0],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,4,2,0],[0,2,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,2,0],[0,3,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,2,0],[0,2,3,1]],[[0,2,1,0],[1,3,2,2],[2,3,2,0],[0,2,2,2]],[[0,3,1,0],[1,3,2,2],[2,3,2,0],[1,1,2,1]],[[0,2,1,0],[1,4,2,2],[2,3,2,0],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[3,3,2,0],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[2,4,2,0],[1,1,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,2,0],[2,1,2,1]],[[0,3,1,0],[1,3,2,2],[2,3,2,1],[0,2,2,0]],[[0,2,1,0],[1,4,2,2],[2,3,2,1],[0,2,2,0]],[[0,2,1,0],[1,3,2,2],[3,3,2,1],[0,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,4,2,1],[0,2,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,2,1],[0,3,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,2,1],[0,2,3,0]],[[0,3,1,0],[1,3,2,2],[2,3,2,1],[1,1,2,0]],[[0,2,1,0],[1,4,2,2],[2,3,2,1],[1,1,2,0]],[[0,2,1,0],[1,3,2,2],[3,3,2,1],[1,1,2,0]],[[0,2,1,0],[1,3,2,2],[2,4,2,1],[1,1,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,2,1],[2,1,2,0]],[[2,2,2,1],[2,0,2,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[1,0,2,2]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[1,0,3,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[2,0,2,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,3],[1,0,2,1]],[[1,2,2,1],[2,0,2,2],[2,4,0,2],[1,0,2,1]],[[1,2,2,1],[2,0,2,2],[3,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,0,2,3],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[3,0,2,2],[2,3,0,2],[1,0,2,1]],[[1,2,2,2],[2,0,2,2],[2,3,0,2],[1,0,2,1]],[[1,2,3,1],[2,0,2,2],[2,3,0,2],[1,0,2,1]],[[1,3,2,1],[2,0,2,2],[2,3,0,2],[1,0,2,1]],[[2,2,2,1],[2,0,2,2],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[0,2,3,0]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[0,3,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,0,3],[0,2,2,0]],[[1,2,2,1],[2,0,2,2],[2,4,0,2],[0,2,2,0]],[[1,2,2,1],[2,0,2,2],[3,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,0,2,3],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[3,0,2,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,2],[2,0,2,2],[2,3,0,2],[0,2,2,0]],[[1,2,3,1],[2,0,2,2],[2,3,0,2],[0,2,2,0]],[[1,3,2,1],[2,0,2,2],[2,3,0,2],[0,2,2,0]],[[2,2,2,1],[2,0,2,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[0,2,1,2]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[0,3,1,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,3],[0,2,1,1]],[[1,2,2,1],[2,0,2,2],[2,4,0,2],[0,2,1,1]],[[1,2,2,1],[2,0,2,2],[3,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,0,2,3],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[3,0,2,2],[2,3,0,2],[0,2,1,1]],[[0,3,1,0],[1,3,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[1,4,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[1,3,2,2],[3,3,3,0],[0,1,2,1]],[[0,2,1,0],[1,3,2,2],[2,4,3,0],[0,1,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,4,0],[0,1,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,0],[0,1,3,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,0],[0,1,2,2]],[[0,3,1,0],[1,3,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[1,4,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[1,3,2,2],[3,3,3,0],[0,2,1,1]],[[0,2,1,0],[1,3,2,2],[2,4,3,0],[0,2,1,1]],[[0,2,1,0],[1,3,2,2],[2,3,4,0],[0,2,1,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,0],[0,3,1,1]],[[0,3,1,0],[1,3,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[1,4,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[1,3,2,2],[3,3,3,0],[1,0,2,1]],[[0,2,1,0],[1,3,2,2],[2,4,3,0],[1,0,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,4,0],[1,0,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,0],[2,0,2,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,0],[1,0,3,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,0],[1,0,2,2]],[[0,3,1,0],[1,3,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,0],[1,4,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,0],[1,3,2,2],[3,3,3,0],[1,1,1,1]],[[0,2,1,0],[1,3,2,2],[2,4,3,0],[1,1,1,1]],[[0,2,1,0],[1,3,2,2],[2,3,4,0],[1,1,1,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,0],[2,1,1,1]],[[0,3,1,0],[1,3,2,2],[2,3,3,0],[1,2,0,1]],[[0,2,1,0],[1,4,2,2],[2,3,3,0],[1,2,0,1]],[[0,2,1,0],[1,3,2,2],[3,3,3,0],[1,2,0,1]],[[0,2,1,0],[1,3,2,2],[2,4,3,0],[1,2,0,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,2],[2,0,2,2],[2,3,0,2],[0,2,1,1]],[[1,2,3,1],[2,0,2,2],[2,3,0,2],[0,2,1,1]],[[1,3,2,1],[2,0,2,2],[2,3,0,2],[0,2,1,1]],[[2,2,2,1],[2,0,2,2],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[0,1,2,2]],[[1,2,2,1],[2,0,2,2],[2,3,0,2],[0,1,3,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,3],[0,1,2,1]],[[1,2,2,1],[2,0,2,2],[2,4,0,2],[0,1,2,1]],[[1,2,2,1],[2,0,2,2],[3,3,0,2],[0,1,2,1]],[[0,3,1,0],[1,3,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[1,4,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[1,3,2,2],[3,3,3,1],[0,1,1,1]],[[0,2,1,0],[1,3,2,2],[2,4,3,1],[0,1,1,1]],[[0,2,1,0],[1,3,2,2],[2,3,4,1],[0,1,1,1]],[[0,3,1,0],[1,3,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[1,4,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[1,3,2,2],[3,3,3,1],[0,1,2,0]],[[0,2,1,0],[1,3,2,2],[2,4,3,1],[0,1,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,4,1],[0,1,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,3,1],[0,1,3,0]],[[0,3,1,0],[1,3,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[1,4,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[1,3,2,2],[3,3,3,1],[0,2,0,1]],[[0,2,1,0],[1,3,2,2],[2,4,3,1],[0,2,0,1]],[[0,2,1,0],[1,3,2,2],[2,3,4,1],[0,2,0,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,1],[0,3,0,1]],[[0,3,1,0],[1,3,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,0],[1,4,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,0],[1,3,2,2],[3,3,3,1],[0,2,1,0]],[[0,2,1,0],[1,3,2,2],[2,4,3,1],[0,2,1,0]],[[0,2,1,0],[1,3,2,2],[2,3,4,1],[0,2,1,0]],[[0,2,1,0],[1,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,0,2,3],[2,3,0,2],[0,1,2,1]],[[1,2,2,1],[3,0,2,2],[2,3,0,2],[0,1,2,1]],[[1,2,2,2],[2,0,2,2],[2,3,0,2],[0,1,2,1]],[[1,2,3,1],[2,0,2,2],[2,3,0,2],[0,1,2,1]],[[1,3,2,1],[2,0,2,2],[2,3,0,2],[0,1,2,1]],[[2,2,2,1],[2,0,2,2],[2,3,0,2],[0,1,2,1]],[[0,3,1,0],[1,3,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[1,4,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[1,3,2,2],[3,3,3,1],[1,0,1,1]],[[0,2,1,0],[1,3,2,2],[2,4,3,1],[1,0,1,1]],[[0,2,1,0],[1,3,2,2],[2,3,4,1],[1,0,1,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,1],[2,0,1,1]],[[0,3,1,0],[1,3,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[1,4,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[1,3,2,2],[3,3,3,1],[1,0,2,0]],[[0,2,1,0],[1,3,2,2],[2,4,3,1],[1,0,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,4,1],[1,0,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,3,1],[2,0,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,3,1],[1,0,3,0]],[[0,3,1,0],[1,3,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[1,4,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[1,3,2,2],[3,3,3,1],[1,1,0,1]],[[0,2,1,0],[1,3,2,2],[2,4,3,1],[1,1,0,1]],[[0,2,1,0],[1,3,2,2],[2,3,4,1],[1,1,0,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,1],[2,1,0,1]],[[0,3,1,0],[1,3,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[1,4,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[1,3,2,2],[3,3,3,1],[1,1,1,0]],[[0,2,1,0],[1,3,2,2],[2,4,3,1],[1,1,1,0]],[[0,2,1,0],[1,3,2,2],[2,3,4,1],[1,1,1,0]],[[0,2,1,0],[1,3,2,2],[2,3,3,1],[2,1,1,0]],[[0,3,1,0],[1,3,2,2],[2,3,3,1],[1,2,0,0]],[[0,2,1,0],[1,4,2,2],[2,3,3,1],[1,2,0,0]],[[0,2,1,0],[1,3,2,2],[3,3,3,1],[1,2,0,0]],[[0,2,1,0],[1,3,2,2],[2,4,3,1],[1,2,0,0]],[[0,2,1,0],[1,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,0,2,2],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,0,1],[2,2,2,0]],[[1,2,2,1],[2,0,2,2],[3,3,0,1],[1,2,2,0]],[[1,2,2,1],[3,0,2,2],[2,3,0,1],[1,2,2,0]],[[1,2,2,2],[2,0,2,2],[2,3,0,1],[1,2,2,0]],[[1,2,3,1],[2,0,2,2],[2,3,0,1],[1,2,2,0]],[[1,3,2,1],[2,0,2,2],[2,3,0,1],[1,2,2,0]],[[2,2,2,1],[2,0,2,2],[2,3,0,1],[1,2,2,0]],[[1,2,2,1],[2,0,2,2],[2,3,0,1],[2,1,2,1]],[[1,2,2,1],[2,0,2,2],[2,4,0,1],[1,1,2,1]],[[1,2,2,1],[2,0,2,2],[3,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,0,2,3],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[3,0,2,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,2],[2,0,2,2],[2,3,0,1],[1,1,2,1]],[[1,2,3,1],[2,0,2,2],[2,3,0,1],[1,1,2,1]],[[1,3,2,1],[2,0,2,2],[2,3,0,1],[1,1,2,1]],[[2,2,2,1],[2,0,2,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,1],[0,2,2,2]],[[1,2,2,1],[2,0,2,2],[2,3,0,1],[0,2,3,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,1],[0,3,2,1]],[[1,2,2,1],[2,0,2,2],[2,4,0,1],[0,2,2,1]],[[1,2,2,1],[2,0,2,2],[3,3,0,1],[0,2,2,1]],[[0,2,1,0],[1,3,2,3],[2,3,3,2],[0,0,1,1]],[[0,2,1,0],[1,3,2,2],[2,3,4,2],[0,0,1,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,3],[0,0,1,1]],[[0,2,1,0],[1,3,2,2],[2,3,3,2],[0,0,1,2]],[[0,2,1,0],[1,3,2,3],[2,3,3,2],[0,0,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,4,2],[0,0,2,0]],[[0,2,1,0],[1,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,0,2,3],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[3,0,2,2],[2,3,0,1],[0,2,2,1]],[[1,2,2,2],[2,0,2,2],[2,3,0,1],[0,2,2,1]],[[1,2,3,1],[2,0,2,2],[2,3,0,1],[0,2,2,1]],[[1,3,2,1],[2,0,2,2],[2,3,0,1],[0,2,2,1]],[[2,2,2,1],[2,0,2,2],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[2,0,2,2],[2,3,0,0],[2,2,2,1]],[[1,2,2,1],[2,0,2,2],[3,3,0,0],[1,2,2,1]],[[1,2,2,1],[3,0,2,2],[2,3,0,0],[1,2,2,1]],[[1,2,2,2],[2,0,2,2],[2,3,0,0],[1,2,2,1]],[[1,2,3,1],[2,0,2,2],[2,3,0,0],[1,2,2,1]],[[1,3,2,1],[2,0,2,2],[2,3,0,0],[1,2,2,1]],[[2,2,2,1],[2,0,2,2],[2,3,0,0],[1,2,2,1]],[[1,2,2,1],[2,0,2,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[2,0,2,2],[3,2,3,2],[1,0,0,1]],[[1,2,2,1],[2,0,2,3],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[3,0,2,2],[2,2,3,2],[1,0,0,1]],[[1,2,2,2],[2,0,2,2],[2,2,3,2],[1,0,0,1]],[[1,2,3,1],[2,0,2,2],[2,2,3,2],[1,0,0,1]],[[1,3,2,1],[2,0,2,2],[2,2,3,2],[1,0,0,1]],[[2,2,2,1],[2,0,2,2],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[2,0,2,2],[2,2,3,3],[0,1,0,1]],[[1,2,2,1],[2,0,2,3],[2,2,3,2],[0,1,0,1]],[[1,2,2,1],[3,0,2,2],[2,2,3,2],[0,1,0,1]],[[1,2,2,2],[2,0,2,2],[2,2,3,2],[0,1,0,1]],[[1,2,3,1],[2,0,2,2],[2,2,3,2],[0,1,0,1]],[[1,3,2,1],[2,0,2,2],[2,2,3,2],[0,1,0,1]],[[2,2,2,1],[2,0,2,2],[2,2,3,2],[0,1,0,1]],[[0,2,1,0],[1,3,3,0],[0,3,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[0,3,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,0],[0,3,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,3,0],[0,3,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,3,0],[0,3,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,0],[0,3,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,0],[0,3,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,3,0],[1,1,4,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[1,1,3,2],[2,2,2,1]],[[0,2,1,0],[1,3,3,0],[1,1,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,3,0],[1,1,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,0],[1,1,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,3,0],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,0],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,0],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,3,0],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,3,0],[1,2,4,2],[1,1,2,1]],[[0,2,1,0],[1,3,3,0],[1,2,3,2],[1,1,3,1]],[[0,2,1,0],[1,3,3,0],[1,2,3,2],[1,1,2,2]],[[0,2,1,0],[1,3,3,0],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,0],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,0],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,0],[1,2,3,2],[1,2,3,0]],[[0,3,1,0],[1,3,3,0],[1,3,2,1],[1,2,2,1]],[[0,2,1,0],[1,4,3,0],[1,3,2,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,0],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,0],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[1,3,3,0],[1,3,2,1],[1,2,2,2]],[[0,3,1,0],[1,3,3,0],[1,3,2,2],[1,2,2,0]],[[0,2,1,0],[1,4,3,0],[1,3,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,0],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,0],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,0],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,0],[1,3,2,2],[1,2,3,0]],[[0,3,1,0],[1,3,3,0],[1,3,3,0],[1,2,2,1]],[[0,2,1,0],[1,4,3,0],[1,3,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[1,4,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[1,3,3,0],[2,2,2,1]],[[0,2,1,0],[1,3,3,0],[1,3,3,0],[1,3,2,1]],[[0,2,1,0],[1,3,3,0],[1,3,3,0],[1,2,3,1]],[[0,3,1,0],[1,3,3,0],[1,3,3,1],[1,1,2,1]],[[0,2,1,0],[1,4,3,0],[1,3,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,0],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,0],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,0],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[1,3,3,0],[1,3,3,1],[1,1,2,2]],[[0,3,1,0],[1,3,3,0],[1,3,3,1],[1,2,1,1]],[[0,2,1,0],[1,4,3,0],[1,3,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,0],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,0],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,0],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[1,3,3,0],[1,3,3,1],[1,3,1,1]],[[0,3,1,0],[1,3,3,0],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,4,3,0],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,0],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,0],[1,3,4,2],[1,1,1,1]],[[0,3,1,0],[1,3,3,0],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[1,4,3,0],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,0],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,0],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,0],[1,3,3,2],[1,1,3,0]],[[0,3,1,0],[1,3,3,0],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[1,4,3,0],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,0],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,0],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,0],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[1,3,3,0],[1,3,3,2],[1,3,0,1]],[[0,3,1,0],[1,3,3,0],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[1,4,3,0],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,0],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,0],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,0],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[1,3,3,0],[1,3,3,2],[1,3,1,0]],[[0,2,1,0],[1,3,3,0],[3,0,3,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,0,4,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,0,3,2],[2,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,0,3,2],[1,3,2,1]],[[0,2,1,0],[1,3,3,0],[2,0,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,0],[2,0,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,3,0],[3,1,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,1,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,1,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,1,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,0],[2,1,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,3,0],[2,1,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,3,0],[2,1,4,2],[0,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,1,3,2],[0,3,2,1]],[[0,2,1,0],[1,3,3,0],[2,1,3,2],[0,2,3,1]],[[0,2,1,0],[1,3,3,0],[2,1,3,2],[0,2,2,2]],[[0,2,1,0],[1,3,3,0],[3,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,0],[2,1,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,0],[2,1,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,0],[2,1,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,0],[2,1,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,3,0],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,0],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[1,3,3,0],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[1,3,3,0],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,0],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,0],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,0],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[1,3,3,0],[3,2,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,0],[2,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,0],[1,3,2,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,0],[1,2,3,1]],[[0,2,1,0],[1,3,3,0],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[1,3,3,0],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[1,3,3,0],[2,2,4,2],[0,1,2,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,2],[0,1,3,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,2],[0,1,2,2]],[[0,2,1,0],[1,3,3,0],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,0],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[1,3,3,0],[2,2,3,2],[0,2,3,0]],[[0,2,1,0],[1,3,3,0],[2,2,4,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,2],[1,0,3,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,2],[1,0,2,2]],[[0,2,1,0],[1,3,3,0],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[1,3,3,0],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[1,3,3,0],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,0],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[1,3,3,0],[2,2,3,2],[1,3,1,0]],[[0,2,1,0],[1,3,3,0],[3,3,1,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,1,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,1,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,0],[3,3,1,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,0],[2,3,1,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,0],[2,3,1,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,0],[3,3,2,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,2,0],[2,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,2,0],[1,3,2,1]],[[0,3,1,0],[1,3,3,0],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[1,4,3,0],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,0],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[1,3,3,0],[2,3,2,1],[0,2,2,2]],[[0,3,1,0],[1,3,3,0],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,4,3,0],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,0],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,0],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,2,1],[2,1,2,1]],[[0,3,1,0],[1,3,3,0],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[1,4,3,0],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,0],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,0],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,0],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[1,3,3,0],[2,3,2,2],[0,2,3,0]],[[0,3,1,0],[1,3,3,0],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,4,3,0],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,0],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,0],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,0],[2,3,2,2],[2,1,2,0]],[[0,3,1,0],[1,3,3,0],[2,3,3,0],[0,2,2,1]],[[0,2,1,0],[1,4,3,0],[2,3,3,0],[0,2,2,1]],[[0,2,1,0],[1,3,3,0],[3,3,3,0],[0,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,4,3,0],[0,2,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,0],[0,3,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,0],[0,2,3,1]],[[0,3,1,0],[1,3,3,0],[2,3,3,0],[1,1,2,1]],[[0,2,1,0],[1,4,3,0],[2,3,3,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,0],[3,3,3,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,0],[2,4,3,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,0],[2,1,2,1]],[[0,3,1,0],[1,3,3,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,4,3,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,3,3,0],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[1,3,3,0],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,1],[0,1,2,2]],[[0,3,1,0],[1,3,3,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,4,3,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,3,0],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,3,0],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,3,0],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,1],[0,3,1,1]],[[0,3,1,0],[1,3,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,4,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,3,0],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,3,0],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,1],[1,0,2,2]],[[0,3,1,0],[1,3,3,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,4,3,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,0],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,0],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,0],[2,3,4,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,1],[2,1,1,1]],[[0,3,1,0],[1,3,3,0],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,4,3,0],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,0],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,0],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,2,2],[2,2,3,1],[2,1,1,0]],[[1,2,2,1],[2,0,2,2],[3,2,3,1],[1,1,1,0]],[[0,3,1,0],[1,3,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,4,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,0],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,0],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,0],[2,3,4,2],[0,1,1,1]],[[0,3,1,0],[1,3,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,4,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,0],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,0],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,0],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,0],[2,3,3,2],[0,1,3,0]],[[0,3,1,0],[1,3,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,4,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,0],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,0],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,0],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,2],[0,3,0,1]],[[0,3,1,0],[1,3,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,4,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,0],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,0],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,0],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,2,3],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[3,0,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,2],[2,0,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[2,0,2,2],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[2,0,2,2],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[2,0,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,3,1],[2,1,0,1]],[[1,2,2,1],[2,0,2,2],[3,2,3,1],[1,1,0,1]],[[0,3,1,0],[1,3,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,4,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,0],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,0],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,0],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,2],[2,0,1,1]],[[0,3,1,0],[1,3,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,4,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,0],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,0],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,0],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,0],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[1,3,3,0],[2,3,3,2],[1,0,3,0]],[[0,3,1,0],[1,3,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,4,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,0],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,0],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,0],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,0],[2,3,3,2],[2,1,0,1]],[[0,3,1,0],[1,3,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,4,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,0],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,0],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,0],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,0,2,3],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[3,0,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,2],[2,0,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[2,0,2,2],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[2,0,2,2],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[2,0,2,2],[2,2,3,1],[1,1,0,1]],[[0,3,1,0],[1,3,3,0],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,4,3,0],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,3,3,0],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,3,3,0],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[1,3,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,2,2],[2,2,3,1],[2,0,2,0]],[[1,2,2,1],[2,0,2,2],[3,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,2,3],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[3,0,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,2],[2,0,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[2,0,2,2],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[2,0,2,2],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[2,0,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,2,2],[2,2,3,1],[2,0,1,1]],[[1,2,2,1],[2,0,2,2],[3,2,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,2,3],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[3,0,2,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,2],[2,0,2,2],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[2,0,2,2],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[2,0,2,2],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[2,0,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,1,0],[1,3,3,1],[1,0,3,3],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,0,3,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,1],[1,0,3,2],[1,2,2,2]],[[0,2,1,0],[1,3,3,1],[1,1,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,1,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,1,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,3,1],[1,1,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,1],[1,1,2,2],[1,2,2,2]],[[0,3,1,0],[1,3,3,1],[1,1,3,1],[1,2,2,1]],[[0,2,1,0],[1,4,3,1],[1,1,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,4,1],[1,1,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,1,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,1,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,1,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,1],[1,1,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,3,1],[1,1,3,1],[1,2,2,2]],[[0,3,1,0],[1,3,3,1],[1,1,3,2],[1,2,1,1]],[[0,2,1,0],[1,4,3,1],[1,1,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,4,1],[1,1,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,1],[1,1,4,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,1],[1,1,3,3],[1,2,1,1]],[[0,2,1,0],[1,3,3,1],[1,1,3,2],[1,2,1,2]],[[0,3,1,0],[1,3,3,1],[1,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,4,3,1],[1,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,4,1],[1,1,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,1],[1,1,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,1],[1,1,3,3],[1,2,2,0]],[[0,2,1,0],[1,3,3,1],[1,1,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,1],[1,1,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,1],[1,1,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,3,1],[1,2,2,3],[1,1,2,1]],[[0,2,1,0],[1,3,3,1],[1,2,2,2],[1,1,3,1]],[[0,2,1,0],[1,3,3,1],[1,2,2,2],[1,1,2,2]],[[0,3,1,0],[1,3,3,1],[1,2,3,1],[1,1,2,1]],[[0,2,1,0],[1,4,3,1],[1,2,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,4,1],[1,2,3,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,1],[1,2,4,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,1],[1,2,3,1],[1,1,3,1]],[[0,2,1,0],[1,3,3,1],[1,2,3,1],[1,1,2,2]],[[0,3,1,0],[1,3,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,1,0],[1,4,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,4,1],[1,2,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,1],[1,2,4,1],[1,2,1,1]],[[0,2,1,0],[1,3,4,1],[1,2,3,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,1],[1,2,4,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,1],[1,2,3,3],[1,0,2,1]],[[0,2,1,0],[1,3,3,1],[1,2,3,2],[1,0,2,2]],[[0,3,1,0],[1,3,3,1],[1,2,3,2],[1,1,1,1]],[[0,2,1,0],[1,4,3,1],[1,2,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,4,1],[1,2,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,1],[1,2,4,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,1],[1,2,3,3],[1,1,1,1]],[[0,2,1,0],[1,3,3,1],[1,2,3,2],[1,1,1,2]],[[0,3,1,0],[1,3,3,1],[1,2,3,2],[1,1,2,0]],[[0,2,1,0],[1,4,3,1],[1,2,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,4,1],[1,2,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,1],[1,2,4,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,1],[1,2,3,3],[1,1,2,0]],[[0,2,1,0],[1,3,3,1],[1,2,3,2],[1,1,3,0]],[[0,3,1,0],[1,3,3,1],[1,2,3,2],[1,2,0,1]],[[0,2,1,0],[1,4,3,1],[1,2,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,4,1],[1,2,3,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,1],[1,2,4,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,1],[1,2,3,3],[1,2,0,1]],[[0,2,1,0],[1,3,3,1],[1,2,3,2],[1,2,0,2]],[[0,3,1,0],[1,3,3,1],[1,2,3,2],[1,2,1,0]],[[0,2,1,0],[1,4,3,1],[1,2,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,4,1],[1,2,3,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,1],[1,2,4,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,1],[1,2,3,3],[1,2,1,0]],[[0,3,1,0],[1,3,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[1,4,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,4,1],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,4,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,3,0,3],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,3,0,2],[2,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,3,0,2],[1,3,2,1]],[[0,2,1,0],[1,3,3,1],[1,3,0,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,1],[1,3,0,2],[1,2,2,2]],[[0,3,1,0],[1,3,3,1],[1,3,1,1],[1,2,2,1]],[[0,2,1,0],[1,4,3,1],[1,3,1,1],[1,2,2,1]],[[0,2,1,0],[1,3,4,1],[1,3,1,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,4,1,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,3,1,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,1],[1,3,1,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,1],[1,3,1,1],[1,2,3,1]],[[0,2,1,0],[1,3,3,1],[1,3,1,1],[1,2,2,2]],[[0,3,1,0],[1,3,3,1],[1,3,1,2],[1,2,2,0]],[[0,2,1,0],[1,4,3,1],[1,3,1,2],[1,2,2,0]],[[0,2,1,0],[1,3,4,1],[1,3,1,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,1],[1,4,1,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,1],[1,3,1,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,1],[1,3,1,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,1],[1,3,1,2],[1,2,3,0]],[[0,3,1,0],[1,3,3,1],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,4,3,1],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,3,4,1],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,1],[1,4,2,1],[1,1,2,1]],[[0,3,1,0],[1,3,3,1],[1,3,2,1],[1,2,1,1]],[[0,2,1,0],[1,4,3,1],[1,3,2,1],[1,2,1,1]],[[0,2,1,0],[1,3,4,1],[1,3,2,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,1],[1,4,2,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,1],[1,3,2,1],[2,2,1,1]],[[0,2,1,0],[1,3,3,1],[1,3,2,1],[1,3,1,1]],[[0,3,1,0],[1,3,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,1,0],[1,4,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,1,0],[1,3,4,1],[1,3,2,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,1],[1,4,2,2],[1,1,1,1]],[[0,3,1,0],[1,3,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,4,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,4,1],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,1],[1,4,2,2],[1,1,2,0]],[[0,3,1,0],[1,3,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,1,0],[1,4,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,1,0],[1,3,4,1],[1,3,2,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,1],[1,4,2,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,1],[1,3,2,2],[2,2,0,1]],[[0,2,1,0],[1,3,3,1],[1,3,2,2],[1,3,0,1]],[[0,3,1,0],[1,3,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,1,0],[1,4,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,1,0],[1,3,4,1],[1,3,2,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,1],[1,4,2,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,1],[1,3,2,2],[2,2,1,0]],[[0,2,1,0],[1,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[3,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,2,3],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[3,0,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[2,0,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[2,0,2,2],[2,2,3,1],[0,2,1,0]],[[1,3,2,1],[2,0,2,2],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[2,0,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,2,2],[3,2,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,2,3],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[3,0,2,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,2],[2,0,2,2],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[2,0,2,2],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[2,0,2,2],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[2,0,2,2],[2,2,3,1],[0,2,0,1]],[[0,3,1,0],[1,3,3,1],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,4,3,1],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,3,4,1],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[1,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,0,2,2],[3,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,2,3],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[3,0,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,2],[2,0,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[2,0,2,2],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[2,0,2,2],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[2,0,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,2,2],[3,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,2,3],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[3,0,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,2],[2,0,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[2,0,2,2],[2,2,3,1],[0,1,1,1]],[[1,3,2,1],[2,0,2,2],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[2,0,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,2,3],[2,2,3,1],[0,0,2,1]],[[1,2,2,1],[3,0,2,2],[2,2,3,1],[0,0,2,1]],[[1,2,2,2],[2,0,2,2],[2,2,3,1],[0,0,2,1]],[[1,2,3,1],[2,0,2,2],[2,2,3,1],[0,0,2,1]],[[1,3,2,1],[2,0,2,2],[2,2,3,1],[0,0,2,1]],[[2,2,2,1],[2,0,2,2],[2,2,3,1],[0,0,2,1]],[[0,2,1,0],[1,3,3,1],[3,0,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,0,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,0,2,2],[2,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,0,2,2],[1,3,2,1]],[[0,2,1,0],[1,3,3,1],[2,0,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,1],[2,0,2,2],[1,2,2,2]],[[0,3,1,0],[1,3,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[1,4,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,4,1],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[3,0,3,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,0,4,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,0,3,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,0,3,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,1],[2,0,3,1],[1,2,3,1]],[[0,2,1,0],[1,3,3,1],[2,0,3,1],[1,2,2,2]],[[0,2,1,0],[1,3,3,1],[2,0,3,3],[0,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,0,3,2],[0,2,3,1]],[[0,2,1,0],[1,3,3,1],[2,0,3,2],[0,2,2,2]],[[0,3,1,0],[1,3,3,1],[2,0,3,2],[1,2,1,1]],[[0,2,1,0],[1,4,3,1],[2,0,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,4,1],[2,0,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,1],[2,0,4,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,1],[2,0,3,3],[1,2,1,1]],[[0,2,1,0],[1,3,3,1],[2,0,3,2],[1,2,1,2]],[[0,3,1,0],[1,3,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[1,4,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,4,1],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,1],[3,0,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,0,4,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,0,3,3],[1,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,0,3,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,0,3,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,1],[2,0,3,2],[1,2,3,0]],[[0,2,1,0],[1,3,3,1],[2,1,2,3],[0,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,1,2,2],[0,3,2,1]],[[0,2,1,0],[1,3,3,1],[2,1,2,2],[0,2,3,1]],[[0,2,1,0],[1,3,3,1],[2,1,2,2],[0,2,2,2]],[[0,3,1,0],[1,3,3,1],[2,1,3,1],[0,2,2,1]],[[0,2,1,0],[1,4,3,1],[2,1,3,1],[0,2,2,1]],[[0,2,1,0],[1,3,4,1],[2,1,3,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,1,4,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,1,3,1],[0,3,2,1]],[[0,2,1,0],[1,3,3,1],[2,1,3,1],[0,2,3,1]],[[0,2,1,0],[1,3,3,1],[2,1,3,1],[0,2,2,2]],[[0,3,1,0],[1,3,3,1],[2,1,3,2],[0,2,1,1]],[[0,2,1,0],[1,4,3,1],[2,1,3,2],[0,2,1,1]],[[0,2,1,0],[1,3,4,1],[2,1,3,2],[0,2,1,1]],[[0,2,1,0],[1,3,3,1],[2,1,4,2],[0,2,1,1]],[[0,2,1,0],[1,3,3,1],[2,1,3,3],[0,2,1,1]],[[0,2,1,0],[1,3,3,1],[2,1,3,2],[0,2,1,2]],[[0,3,1,0],[1,3,3,1],[2,1,3,2],[0,2,2,0]],[[0,2,1,0],[1,4,3,1],[2,1,3,2],[0,2,2,0]],[[0,2,1,0],[1,3,4,1],[2,1,3,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,1,4,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,1,3,3],[0,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,1,3,2],[0,3,2,0]],[[0,2,1,0],[1,3,3,1],[2,1,3,2],[0,2,3,0]],[[0,2,1,0],[1,3,3,1],[3,2,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,0,3],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,0,2],[2,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,0,2],[1,3,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,0,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,1],[2,2,0,2],[1,2,2,2]],[[0,2,1,0],[1,3,3,1],[3,2,1,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,1,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,1,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,1,1],[1,2,3,1]],[[0,2,1,0],[1,3,3,1],[2,2,1,1],[1,2,2,2]],[[0,2,1,0],[1,3,3,1],[3,2,1,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,2,1,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,2,1,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,1],[2,2,1,2],[1,2,3,0]],[[0,2,1,0],[1,3,3,1],[3,2,2,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,1],[2,2,2,1],[2,2,1,1]],[[0,2,1,0],[1,3,3,1],[2,2,2,1],[1,3,1,1]],[[0,2,1,0],[1,3,3,1],[2,2,2,3],[0,1,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,2,2],[0,1,3,1]],[[0,2,1,0],[1,3,3,1],[2,2,2,2],[0,1,2,2]],[[0,2,1,0],[1,3,3,1],[2,2,2,3],[1,0,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,2,2],[1,0,3,1]],[[0,2,1,0],[1,3,3,1],[2,2,2,2],[1,0,2,2]],[[0,2,1,0],[1,3,3,1],[3,2,2,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,1],[2,2,2,2],[2,2,0,1]],[[0,2,1,0],[1,3,3,1],[2,2,2,2],[1,3,0,1]],[[0,2,1,0],[1,3,3,1],[3,2,2,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,1],[2,2,2,2],[2,2,1,0]],[[0,2,1,0],[1,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,3,0],[2,1,1,1]],[[1,2,2,1],[2,0,2,2],[3,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,2,3],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[3,0,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,2],[2,0,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[2,0,2,2],[2,2,3,0],[1,1,1,1]],[[0,3,1,0],[1,3,3,1],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[1,4,3,1],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[1,3,4,1],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,4,1],[0,1,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,1],[0,1,3,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,1],[0,1,2,2]],[[0,3,1,0],[1,3,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[1,4,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,4,1],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,3,1],[2,2,4,1],[0,2,1,1]],[[0,3,1,0],[1,3,3,1],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[1,4,3,1],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,4,1],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,4,1],[1,0,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,1],[1,0,3,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,1],[1,0,2,2]],[[0,3,1,0],[1,3,3,1],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[1,4,3,1],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,4,1],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,1],[2,2,4,1],[1,1,1,1]],[[1,3,2,1],[2,0,2,2],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[2,0,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,2,3,0],[2,0,2,1]],[[1,2,2,1],[2,0,2,2],[3,2,3,0],[1,0,2,1]],[[1,2,2,1],[2,0,2,3],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[3,0,2,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,2],[2,0,2,2],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[2,0,2,2],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[2,0,2,2],[2,2,3,0],[1,0,2,1]],[[0,3,1,0],[1,3,3,1],[2,2,3,2],[0,0,2,1]],[[0,2,1,0],[1,4,3,1],[2,2,3,2],[0,0,2,1]],[[0,2,1,0],[1,3,4,1],[2,2,3,2],[0,0,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,4,2],[0,0,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,3],[0,0,2,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,2],[0,0,2,2]],[[0,3,1,0],[1,3,3,1],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[1,4,3,1],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,4,1],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,1],[2,2,4,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,3],[0,1,1,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,2],[0,1,1,2]],[[0,3,1,0],[1,3,3,1],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[1,4,3,1],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,4,1],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,1],[2,2,4,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,1],[2,2,3,3],[0,1,2,0]],[[0,2,1,0],[1,3,3,1],[2,2,3,2],[0,1,3,0]],[[0,3,1,0],[1,3,3,1],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[1,4,3,1],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,4,1],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,1],[2,2,4,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,3],[0,2,0,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,2],[0,2,0,2]],[[0,3,1,0],[1,3,3,1],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[1,4,3,1],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,4,1],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,1],[2,2,4,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,1],[2,2,3,3],[0,2,1,0]],[[2,2,2,1],[2,0,2,2],[2,2,3,0],[1,0,2,1]],[[0,3,1,0],[1,3,3,1],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[1,4,3,1],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,4,1],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,1],[2,2,4,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,3],[1,0,1,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,2],[1,0,1,2]],[[0,3,1,0],[1,3,3,1],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[1,4,3,1],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,4,1],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,1],[2,2,4,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,1],[2,2,3,3],[1,0,2,0]],[[0,2,1,0],[1,3,3,1],[2,2,3,2],[1,0,3,0]],[[0,3,1,0],[1,3,3,1],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[1,4,3,1],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,4,1],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,1],[2,2,4,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,3],[1,1,0,1]],[[0,2,1,0],[1,3,3,1],[2,2,3,2],[1,1,0,2]],[[0,3,1,0],[1,3,3,1],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[1,4,3,1],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,4,1],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,1],[2,2,4,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[3,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,0,2,3],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[3,0,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,2],[2,0,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,3,1],[2,0,2,2],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[2,0,2,2],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[2,0,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[2,0,2,2],[3,2,3,0],[0,1,2,1]],[[1,2,2,1],[2,0,2,3],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[3,0,2,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,2],[2,0,2,2],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[2,0,2,2],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[2,0,2,2],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[2,0,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,1,0],[1,3,3,1],[3,3,0,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,3,0,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,3,0,1],[1,3,2,1]],[[0,3,1,0],[1,3,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[1,4,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[1,3,4,1],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[1,3,3,1],[3,3,0,2],[0,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,4,0,2],[0,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,3,0,3],[0,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,3,0,2],[0,3,2,1]],[[0,2,1,0],[1,3,3,1],[2,3,0,2],[0,2,3,1]],[[0,2,1,0],[1,3,3,1],[2,3,0,2],[0,2,2,2]],[[0,3,1,0],[1,3,3,1],[2,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,4,3,1],[2,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,3,4,1],[2,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,3,3,1],[3,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,3,3,1],[2,4,0,2],[1,1,2,1]],[[0,2,1,0],[1,3,3,1],[2,3,0,2],[2,1,2,1]],[[0,2,1,0],[1,3,3,1],[3,3,0,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,3,0,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,3,0,2],[1,3,2,0]],[[0,3,1,0],[1,3,3,1],[2,3,1,1],[0,2,2,1]],[[0,2,1,0],[1,4,3,1],[2,3,1,1],[0,2,2,1]],[[0,2,1,0],[1,3,4,1],[2,3,1,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,1],[3,3,1,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,4,1,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,1],[2,3,1,1],[0,3,2,1]],[[0,2,1,0],[1,3,3,1],[2,3,1,1],[0,2,3,1]],[[0,2,1,0],[1,3,3,1],[2,3,1,1],[0,2,2,2]],[[0,3,1,0],[1,3,3,1],[2,3,1,1],[1,1,2,1]],[[0,2,1,0],[1,4,3,1],[2,3,1,1],[1,1,2,1]],[[0,2,1,0],[1,3,4,1],[2,3,1,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,1],[3,3,1,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,1],[2,4,1,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,1],[2,3,1,1],[2,1,2,1]],[[0,3,1,0],[1,3,3,1],[2,3,1,2],[0,2,2,0]],[[0,2,1,0],[1,4,3,1],[2,3,1,2],[0,2,2,0]],[[0,2,1,0],[1,3,4,1],[2,3,1,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,1],[3,3,1,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,4,1,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,1],[2,3,1,2],[0,3,2,0]],[[0,2,1,0],[1,3,3,1],[2,3,1,2],[0,2,3,0]],[[0,3,1,0],[1,3,3,1],[2,3,1,2],[1,1,2,0]],[[0,2,1,0],[1,4,3,1],[2,3,1,2],[1,1,2,0]],[[0,2,1,0],[1,3,4,1],[2,3,1,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,1],[3,3,1,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,1],[2,4,1,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,1],[2,3,1,2],[2,1,2,0]],[[0,3,1,0],[1,3,3,1],[2,3,2,1],[0,1,2,1]],[[0,2,1,0],[1,4,3,1],[2,3,2,1],[0,1,2,1]],[[0,2,1,0],[1,3,4,1],[2,3,2,1],[0,1,2,1]],[[0,2,1,0],[1,3,3,1],[3,3,2,1],[0,1,2,1]],[[0,2,1,0],[1,3,3,1],[2,4,2,1],[0,1,2,1]],[[0,3,1,0],[1,3,3,1],[2,3,2,1],[0,2,1,1]],[[0,2,1,0],[1,4,3,1],[2,3,2,1],[0,2,1,1]],[[0,2,1,0],[1,3,4,1],[2,3,2,1],[0,2,1,1]],[[0,2,1,0],[1,3,3,1],[3,3,2,1],[0,2,1,1]],[[0,2,1,0],[1,3,3,1],[2,4,2,1],[0,2,1,1]],[[0,2,1,0],[1,3,3,1],[2,3,2,1],[0,3,1,1]],[[0,3,1,0],[1,3,3,1],[2,3,2,1],[1,0,2,1]],[[0,2,1,0],[1,4,3,1],[2,3,2,1],[1,0,2,1]],[[0,2,1,0],[1,3,4,1],[2,3,2,1],[1,0,2,1]],[[0,2,1,0],[1,3,3,1],[3,3,2,1],[1,0,2,1]],[[0,2,1,0],[1,3,3,1],[2,4,2,1],[1,0,2,1]],[[0,2,1,0],[1,3,3,1],[2,3,2,1],[2,0,2,1]],[[0,3,1,0],[1,3,3,1],[2,3,2,1],[1,1,1,1]],[[0,2,1,0],[1,4,3,1],[2,3,2,1],[1,1,1,1]],[[0,2,1,0],[1,3,4,1],[2,3,2,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,1],[3,3,2,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,1],[2,4,2,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,1],[2,3,2,1],[2,1,1,1]],[[0,3,1,0],[1,3,3,1],[2,3,2,1],[1,2,0,1]],[[0,2,1,0],[1,4,3,1],[2,3,2,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,1],[3,3,2,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,1],[2,4,2,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,1],[2,3,2,1],[2,2,0,1]],[[0,3,1,0],[1,3,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[1,4,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[1,3,4,1],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,1],[3,3,2,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,1],[2,4,2,2],[0,1,1,1]],[[0,3,1,0],[1,3,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,1,0],[1,4,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,1,0],[1,3,4,1],[2,3,2,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,1],[3,3,2,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,1],[2,4,2,2],[0,1,2,0]],[[0,3,1,0],[1,3,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,1,0],[1,4,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,1,0],[1,3,4,1],[2,3,2,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,1],[3,3,2,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,1],[2,4,2,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,1],[2,3,2,2],[0,3,0,1]],[[0,3,1,0],[1,3,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,1,0],[1,4,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,1,0],[1,3,4,1],[2,3,2,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,1],[3,3,2,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,1],[2,4,2,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,2,2],[2,1,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[3,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,2,3],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[3,0,2,2],[2,2,2,2],[1,1,1,0]],[[0,3,1,0],[1,3,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,1,0],[1,4,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,1,0],[1,3,4,1],[2,3,2,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,1],[3,3,2,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,1],[2,4,2,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,1],[2,3,2,2],[2,0,1,1]],[[0,3,1,0],[1,3,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,1,0],[1,4,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,1,0],[1,3,4,1],[2,3,2,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,1],[3,3,2,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,1],[2,4,2,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,1],[2,3,2,2],[2,0,2,0]],[[0,3,1,0],[1,3,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,1,0],[1,4,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,1,0],[1,3,4,1],[2,3,2,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,1],[3,3,2,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,1],[2,4,2,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,1],[2,3,2,2],[2,1,0,1]],[[0,3,1,0],[1,3,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,1,0],[1,4,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,1,0],[1,3,4,1],[2,3,2,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,1],[3,3,2,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,1],[2,4,2,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,2,2],[2,0,2,2],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[2,0,2,2],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[2,0,2,2],[2,2,2,2],[1,1,1,0]],[[2,2,2,1],[2,0,2,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,2,2],[1,1,0,2]],[[1,2,2,1],[2,0,2,2],[2,2,2,2],[2,1,0,1]],[[1,2,2,1],[2,0,2,2],[2,2,2,3],[1,1,0,1]],[[1,2,2,1],[2,0,2,2],[3,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,2,3],[2,2,2,2],[1,1,0,1]],[[0,3,1,0],[1,3,3,1],[2,3,2,2],[1,2,0,0]],[[0,2,1,0],[1,4,3,1],[2,3,2,2],[1,2,0,0]],[[0,2,1,0],[1,3,4,1],[2,3,2,2],[1,2,0,0]],[[0,2,1,0],[1,3,3,1],[3,3,2,2],[1,2,0,0]],[[0,2,1,0],[1,3,3,1],[2,4,2,2],[1,2,0,0]],[[0,2,1,0],[1,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[3,0,2,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[2,0,2,2],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[2,0,2,2],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[2,0,2,2],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[2,0,2,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,2,2],[2,2,2,2],[2,0,2,0]],[[1,2,2,1],[2,0,2,2],[2,2,2,3],[1,0,2,0]],[[1,2,2,1],[2,0,2,2],[3,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,2,3],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[3,0,2,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[2,0,2,2],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[2,0,2,2],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[2,0,2,2],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[2,0,2,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,2,2],[2,2,2,2],[1,0,1,2]],[[1,2,2,1],[2,0,2,2],[2,2,2,2],[2,0,1,1]],[[1,2,2,1],[2,0,2,2],[2,2,2,3],[1,0,1,1]],[[1,2,2,1],[2,0,2,2],[3,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,0,2,3],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[3,0,2,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[2,0,2,2],[2,2,2,2],[1,0,1,1]],[[0,3,1,0],[1,3,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,1,0],[1,4,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,1,0],[1,3,4,1],[2,3,3,1],[0,0,2,1]],[[0,2,1,0],[1,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,3,1],[2,0,2,2],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[2,0,2,2],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[2,0,2,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[2,0,2,2],[2,2,2,3],[0,2,1,0]],[[1,2,2,1],[2,0,2,2],[3,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,2,3],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[3,0,2,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[2,0,2,2],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[2,0,2,2],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[2,0,2,2],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[2,0,2,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,2,2],[0,2,0,2]],[[1,2,2,1],[2,0,2,2],[2,2,2,3],[0,2,0,1]],[[1,2,2,1],[2,0,2,2],[3,2,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,2,3],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[3,0,2,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[2,0,2,2],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[2,0,2,2],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[2,0,2,2],[2,2,2,2],[0,2,0,1]],[[0,3,1,0],[1,3,3,1],[2,3,3,2],[0,0,1,1]],[[0,2,1,0],[1,4,3,1],[2,3,3,2],[0,0,1,1]],[[0,2,1,0],[1,3,4,1],[2,3,3,2],[0,0,1,1]],[[0,2,1,0],[1,3,3,1],[2,3,4,2],[0,0,1,1]],[[0,2,1,0],[1,3,3,1],[2,3,3,3],[0,0,1,1]],[[0,2,1,0],[1,3,3,1],[2,3,3,2],[0,0,1,2]],[[0,3,1,0],[1,3,3,1],[2,3,3,2],[0,0,2,0]],[[0,2,1,0],[1,4,3,1],[2,3,3,2],[0,0,2,0]],[[0,2,1,0],[1,3,4,1],[2,3,3,2],[0,0,2,0]],[[0,2,1,0],[1,3,3,1],[2,3,4,2],[0,0,2,0]],[[0,2,1,0],[1,3,3,1],[2,3,3,3],[0,0,2,0]],[[2,2,2,1],[2,0,2,2],[2,2,2,2],[0,2,0,1]],[[0,3,1,0],[1,3,3,1],[2,3,3,2],[0,2,0,0]],[[0,2,1,0],[1,4,3,1],[2,3,3,2],[0,2,0,0]],[[0,2,1,0],[1,3,4,1],[2,3,3,2],[0,2,0,0]],[[0,2,1,0],[1,3,3,1],[3,3,3,2],[0,2,0,0]],[[0,2,1,0],[1,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[2,0,2,2],[2,2,2,3],[0,1,2,0]],[[1,2,2,1],[2,0,2,2],[3,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,2,3],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[3,0,2,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[2,0,2,2],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[2,0,2,2],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[2,0,2,2],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[2,0,2,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,2,2],[2,2,2,2],[0,1,1,2]],[[1,2,2,1],[2,0,2,2],[2,2,2,3],[0,1,1,1]],[[1,2,2,1],[2,0,2,2],[3,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,2,3],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[3,0,2,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[2,0,2,2],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[2,0,2,2],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[2,0,2,2],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[2,0,2,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,2,2,2],[0,0,2,2]],[[1,2,2,1],[2,0,2,2],[2,2,2,3],[0,0,2,1]],[[1,2,2,1],[2,0,2,3],[2,2,2,2],[0,0,2,1]],[[1,2,2,1],[3,0,2,2],[2,2,2,2],[0,0,2,1]],[[1,2,2,2],[2,0,2,2],[2,2,2,2],[0,0,2,1]],[[1,2,3,1],[2,0,2,2],[2,2,2,2],[0,0,2,1]],[[1,3,2,1],[2,0,2,2],[2,2,2,2],[0,0,2,1]],[[2,2,2,1],[2,0,2,2],[2,2,2,2],[0,0,2,1]],[[0,3,1,0],[1,3,3,1],[2,3,3,2],[1,1,0,0]],[[0,2,1,0],[1,4,3,1],[2,3,3,2],[1,1,0,0]],[[0,2,1,0],[1,3,4,1],[2,3,3,2],[1,1,0,0]],[[0,2,1,0],[1,3,3,1],[3,3,3,2],[1,1,0,0]],[[0,2,1,0],[1,3,3,1],[2,4,3,2],[1,1,0,0]],[[0,2,1,0],[1,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[2,0,2,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,2,1],[2,2,1,0]],[[1,2,2,1],[2,0,2,2],[3,2,2,1],[1,2,1,0]],[[1,2,2,1],[2,0,2,3],[2,2,2,1],[1,2,1,0]],[[1,2,2,1],[3,0,2,2],[2,2,2,1],[1,2,1,0]],[[1,2,2,2],[2,0,2,2],[2,2,2,1],[1,2,1,0]],[[1,2,3,1],[2,0,2,2],[2,2,2,1],[1,2,1,0]],[[1,3,2,1],[2,0,2,2],[2,2,2,1],[1,2,1,0]],[[2,2,2,1],[2,0,2,2],[2,2,2,1],[1,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,2,1],[1,3,0,1]],[[1,2,2,1],[2,0,2,2],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[2,0,2,2],[3,2,2,1],[1,2,0,1]],[[1,2,2,1],[2,0,2,3],[2,2,2,1],[1,2,0,1]],[[1,2,2,1],[3,0,2,2],[2,2,2,1],[1,2,0,1]],[[1,2,2,2],[2,0,2,2],[2,2,2,1],[1,2,0,1]],[[1,2,3,1],[2,0,2,2],[2,2,2,1],[1,2,0,1]],[[1,3,2,1],[2,0,2,2],[2,2,2,1],[1,2,0,1]],[[2,2,2,1],[2,0,2,2],[2,2,2,1],[1,2,0,1]],[[1,2,2,1],[2,0,2,2],[2,2,2,0],[1,3,1,1]],[[1,2,2,1],[2,0,2,2],[2,2,2,0],[2,2,1,1]],[[1,2,2,1],[2,0,2,2],[3,2,2,0],[1,2,1,1]],[[1,2,2,1],[2,0,2,3],[2,2,2,0],[1,2,1,1]],[[1,2,2,1],[3,0,2,2],[2,2,2,0],[1,2,1,1]],[[1,2,2,2],[2,0,2,2],[2,2,2,0],[1,2,1,1]],[[1,2,3,1],[2,0,2,2],[2,2,2,0],[1,2,1,1]],[[1,3,2,1],[2,0,2,2],[2,2,2,0],[1,2,1,1]],[[2,2,2,1],[2,0,2,2],[2,2,2,0],[1,2,1,1]],[[1,2,2,1],[2,0,2,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,1,2],[2,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,1,3],[1,2,1,0]],[[1,2,2,1],[2,0,2,2],[3,2,1,2],[1,2,1,0]],[[1,2,2,1],[2,0,2,3],[2,2,1,2],[1,2,1,0]],[[1,2,2,1],[3,0,2,2],[2,2,1,2],[1,2,1,0]],[[1,2,2,2],[2,0,2,2],[2,2,1,2],[1,2,1,0]],[[1,2,3,1],[2,0,2,2],[2,2,1,2],[1,2,1,0]],[[1,3,2,1],[2,0,2,2],[2,2,1,2],[1,2,1,0]],[[2,2,2,1],[2,0,2,2],[2,2,1,2],[1,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,1,2],[1,2,0,2]],[[1,2,2,1],[2,0,2,2],[2,2,1,2],[1,3,0,1]],[[1,2,2,1],[2,0,2,2],[2,2,1,2],[2,2,0,1]],[[1,2,2,1],[2,0,2,2],[2,2,1,3],[1,2,0,1]],[[1,2,2,1],[2,0,2,2],[3,2,1,2],[1,2,0,1]],[[1,2,2,1],[2,0,2,3],[2,2,1,2],[1,2,0,1]],[[1,2,2,1],[3,0,2,2],[2,2,1,2],[1,2,0,1]],[[1,2,2,2],[2,0,2,2],[2,2,1,2],[1,2,0,1]],[[1,2,3,1],[2,0,2,2],[2,2,1,2],[1,2,0,1]],[[1,3,2,1],[2,0,2,2],[2,2,1,2],[1,2,0,1]],[[2,2,2,1],[2,0,2,2],[2,2,1,2],[1,2,0,1]],[[1,2,2,1],[2,0,2,2],[2,2,1,2],[1,0,2,2]],[[1,2,2,1],[2,0,2,2],[2,2,1,2],[1,0,3,1]],[[1,2,2,1],[2,0,2,2],[2,2,1,2],[2,0,2,1]],[[1,2,2,1],[2,0,2,2],[2,2,1,3],[1,0,2,1]],[[1,2,2,1],[2,0,2,2],[3,2,1,2],[1,0,2,1]],[[1,2,2,1],[2,0,2,3],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[3,0,2,2],[2,2,1,2],[1,0,2,1]],[[1,2,2,2],[2,0,2,2],[2,2,1,2],[1,0,2,1]],[[1,2,3,1],[2,0,2,2],[2,2,1,2],[1,0,2,1]],[[1,3,2,1],[2,0,2,2],[2,2,1,2],[1,0,2,1]],[[2,2,2,1],[2,0,2,2],[2,2,1,2],[1,0,2,1]],[[0,2,1,0],[1,3,4,2],[1,0,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,3],[1,0,2,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,0,2,3],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,0,2,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,2],[1,0,2,2],[1,2,2,2]],[[0,2,1,0],[1,3,4,2],[1,0,3,2],[1,1,2,1]],[[0,2,1,0],[1,3,3,3],[1,0,3,2],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[1,0,3,3],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[1,0,3,2],[1,1,2,2]],[[0,2,1,0],[1,3,4,2],[1,0,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,3],[1,0,3,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,0,3,3],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,0,3,2],[1,2,1,2]],[[0,2,1,0],[1,3,4,2],[1,0,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,3],[1,0,3,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,0,3,3],[1,2,2,0]],[[0,3,1,0],[1,3,3,2],[1,1,1,2],[1,2,2,1]],[[0,2,1,0],[1,4,3,2],[1,1,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,4,2],[1,1,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,3],[1,1,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,1,1,3],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,1,1,2],[2,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,1,1,2],[1,3,2,1]],[[0,2,1,0],[1,3,3,2],[1,1,1,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,2],[1,1,1,2],[1,2,2,2]],[[0,3,1,0],[1,3,3,2],[1,1,2,2],[1,2,1,1]],[[0,2,1,0],[1,4,3,2],[1,1,2,2],[1,2,1,1]],[[0,2,1,0],[1,3,4,2],[1,1,2,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,3],[1,1,2,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,1,2,3],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,1,2,2],[1,2,1,2]],[[0,3,1,0],[1,3,3,2],[1,1,2,2],[1,2,2,0]],[[0,2,1,0],[1,4,3,2],[1,1,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,4,2],[1,1,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,3],[1,1,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,1,2,3],[1,2,2,0]],[[0,3,1,0],[1,3,3,2],[1,1,3,0],[1,2,2,1]],[[0,2,1,0],[1,4,3,2],[1,1,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,4,2],[1,1,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,3],[1,1,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,1,4,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,1,3,0],[2,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,1,3,0],[1,3,2,1]],[[0,2,1,0],[1,3,3,2],[1,1,3,0],[1,2,3,1]],[[0,2,1,0],[1,3,3,2],[1,1,3,0],[1,2,2,2]],[[0,3,1,0],[1,3,3,2],[1,1,3,1],[1,2,1,1]],[[0,2,1,0],[1,4,3,2],[1,1,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,4,2],[1,1,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,3],[1,1,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,1,4,1],[1,2,1,1]],[[0,3,1,0],[1,3,3,2],[1,1,3,1],[1,2,2,0]],[[0,2,1,0],[1,4,3,2],[1,1,3,1],[1,2,2,0]],[[0,2,1,0],[1,3,4,2],[1,1,3,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,3],[1,1,3,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,1,4,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,1,3,1],[2,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,1,3,1],[1,3,2,0]],[[0,2,1,0],[1,3,3,2],[1,1,3,1],[1,2,3,0]],[[0,2,1,0],[1,3,4,2],[1,1,3,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,3],[1,1,3,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[1,1,3,3],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[1,1,3,2],[1,0,2,2]],[[0,2,1,0],[1,3,4,2],[1,1,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,3],[1,1,3,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[1,1,3,3],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[1,1,3,2],[1,1,1,2]],[[0,2,1,0],[1,3,4,2],[1,1,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,3],[1,1,3,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[1,1,3,3],[1,1,2,0]],[[0,3,1,0],[1,3,3,2],[1,2,0,2],[1,2,2,1]],[[0,2,1,0],[1,4,3,2],[1,2,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,4,2],[1,2,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,3],[1,2,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,2,0,3],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,2,0,2],[2,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,2,0,2],[1,3,2,1]],[[0,2,1,0],[1,3,3,2],[1,2,0,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,2],[1,2,0,2],[1,2,2,2]],[[0,3,1,0],[1,3,3,2],[1,2,1,2],[1,1,2,1]],[[0,2,1,0],[1,4,3,2],[1,2,1,2],[1,1,2,1]],[[0,2,1,0],[1,3,4,2],[1,2,1,2],[1,1,2,1]],[[0,2,1,0],[1,3,3,3],[1,2,1,2],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[1,2,1,3],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[1,2,1,2],[1,1,3,1]],[[0,2,1,0],[1,3,3,2],[1,2,1,2],[1,1,2,2]],[[0,2,1,0],[1,3,4,2],[1,2,2,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,3],[1,2,2,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[1,2,2,3],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[1,2,2,2],[1,0,2,2]],[[0,3,1,0],[1,3,3,2],[1,2,2,2],[1,1,1,1]],[[0,2,1,0],[1,4,3,2],[1,2,2,2],[1,1,1,1]],[[0,2,1,0],[1,3,4,2],[1,2,2,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,3],[1,2,2,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[1,2,2,3],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[1,2,2,2],[1,1,1,2]],[[0,3,1,0],[1,3,3,2],[1,2,2,2],[1,1,2,0]],[[0,2,1,0],[1,4,3,2],[1,2,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,4,2],[1,2,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,3],[1,2,2,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[1,2,2,3],[1,1,2,0]],[[0,3,1,0],[1,3,3,2],[1,2,2,2],[1,2,0,1]],[[0,2,1,0],[1,4,3,2],[1,2,2,2],[1,2,0,1]],[[0,2,1,0],[1,3,4,2],[1,2,2,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,3],[1,2,2,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[1,2,2,3],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[1,2,2,2],[1,2,0,2]],[[0,3,1,0],[1,3,3,2],[1,2,2,2],[1,2,1,0]],[[0,2,1,0],[1,4,3,2],[1,2,2,2],[1,2,1,0]],[[0,2,1,0],[1,3,4,2],[1,2,2,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,3],[1,2,2,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,2,2,3],[1,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,1,2],[0,1,2,2]],[[1,2,2,1],[2,0,2,2],[2,2,1,2],[0,1,3,1]],[[1,2,2,1],[2,0,2,2],[2,2,1,3],[0,1,2,1]],[[1,2,2,1],[2,0,2,2],[3,2,1,2],[0,1,2,1]],[[1,2,2,1],[2,0,2,3],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[3,0,2,2],[2,2,1,2],[0,1,2,1]],[[1,2,2,2],[2,0,2,2],[2,2,1,2],[0,1,2,1]],[[1,2,3,1],[2,0,2,2],[2,2,1,2],[0,1,2,1]],[[0,3,1,0],[1,3,3,2],[1,2,3,0],[1,1,2,1]],[[0,2,1,0],[1,4,3,2],[1,2,3,0],[1,1,2,1]],[[0,2,1,0],[1,3,4,2],[1,2,3,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,3],[1,2,3,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[1,2,4,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[1,2,3,0],[1,1,3,1]],[[0,2,1,0],[1,3,3,2],[1,2,3,0],[1,1,2,2]],[[0,3,1,0],[1,3,3,2],[1,2,3,0],[1,2,1,1]],[[0,2,1,0],[1,4,3,2],[1,2,3,0],[1,2,1,1]],[[0,2,1,0],[1,3,4,2],[1,2,3,0],[1,2,1,1]],[[0,2,1,0],[1,3,3,3],[1,2,3,0],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,2,4,0],[1,2,1,1]],[[0,2,1,0],[1,3,4,2],[1,2,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,3,3],[1,2,3,1],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[1,2,4,1],[1,0,2,1]],[[0,3,1,0],[1,3,3,2],[1,2,3,1],[1,1,1,1]],[[0,2,1,0],[1,4,3,2],[1,2,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,4,2],[1,2,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,3],[1,2,3,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[1,2,4,1],[1,1,1,1]],[[0,3,1,0],[1,3,3,2],[1,2,3,1],[1,1,2,0]],[[0,2,1,0],[1,4,3,2],[1,2,3,1],[1,1,2,0]],[[0,2,1,0],[1,3,4,2],[1,2,3,1],[1,1,2,0]],[[0,2,1,0],[1,3,3,3],[1,2,3,1],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[1,2,4,1],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[1,2,3,1],[1,1,3,0]],[[0,3,1,0],[1,3,3,2],[1,2,3,1],[1,2,0,1]],[[0,2,1,0],[1,4,3,2],[1,2,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,4,2],[1,2,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,3],[1,2,3,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[1,2,4,1],[1,2,0,1]],[[0,3,1,0],[1,3,3,2],[1,2,3,1],[1,2,1,0]],[[0,2,1,0],[1,4,3,2],[1,2,3,1],[1,2,1,0]],[[0,2,1,0],[1,3,4,2],[1,2,3,1],[1,2,1,0]],[[0,2,1,0],[1,3,3,3],[1,2,3,1],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,2,4,1],[1,2,1,0]],[[1,3,2,1],[2,0,2,2],[2,2,1,2],[0,1,2,1]],[[2,2,2,1],[2,0,2,2],[2,2,1,2],[0,1,2,1]],[[0,2,1,0],[1,3,4,2],[1,2,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,3],[1,2,3,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,0,2,2],[2,2,1,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,2],[2,2,1,1],[1,3,2,0]],[[1,2,2,1],[2,0,2,2],[2,2,1,1],[2,2,2,0]],[[1,2,2,1],[2,0,2,2],[3,2,1,1],[1,2,2,0]],[[1,2,2,1],[2,0,2,3],[2,2,1,1],[1,2,2,0]],[[1,2,2,1],[3,0,2,2],[2,2,1,1],[1,2,2,0]],[[1,2,2,2],[2,0,2,2],[2,2,1,1],[1,2,2,0]],[[1,2,3,1],[2,0,2,2],[2,2,1,1],[1,2,2,0]],[[1,3,2,1],[2,0,2,2],[2,2,1,1],[1,2,2,0]],[[2,2,2,1],[2,0,2,2],[2,2,1,1],[1,2,2,0]],[[1,2,2,1],[2,0,2,2],[2,2,1,0],[1,2,2,2]],[[1,2,2,1],[2,0,2,2],[2,2,1,0],[1,2,3,1]],[[1,2,2,1],[2,0,2,2],[2,2,1,0],[1,3,2,1]],[[1,2,2,1],[2,0,2,2],[2,2,1,0],[2,2,2,1]],[[1,2,2,1],[2,0,2,2],[3,2,1,0],[1,2,2,1]],[[1,2,2,1],[2,0,2,3],[2,2,1,0],[1,2,2,1]],[[1,2,2,1],[3,0,2,2],[2,2,1,0],[1,2,2,1]],[[1,2,2,2],[2,0,2,2],[2,2,1,0],[1,2,2,1]],[[1,2,3,1],[2,0,2,2],[2,2,1,0],[1,2,2,1]],[[1,3,2,1],[2,0,2,2],[2,2,1,0],[1,2,2,1]],[[2,2,2,1],[2,0,2,2],[2,2,1,0],[1,2,2,1]],[[0,3,1,0],[1,3,3,2],[1,3,0,1],[1,2,2,1]],[[0,2,1,0],[1,4,3,2],[1,3,0,1],[1,2,2,1]],[[0,2,1,0],[1,3,4,2],[1,3,0,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,3],[1,3,0,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,4,0,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,3,0,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,3,0,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,2],[1,3,0,1],[1,2,3,1]],[[0,2,1,0],[1,3,3,2],[1,3,0,1],[1,2,2,2]],[[0,3,1,0],[1,3,3,2],[1,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,4,3,2],[1,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,3,4,2],[1,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,3,3,3],[1,3,0,2],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[1,4,0,2],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[1,3,0,3],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[1,3,0,2],[1,1,3,1]],[[0,2,1,0],[1,3,3,2],[1,3,0,2],[1,1,2,2]],[[0,3,1,0],[1,3,3,2],[1,3,0,2],[1,2,1,1]],[[0,2,1,0],[1,4,3,2],[1,3,0,2],[1,2,1,1]],[[0,2,1,0],[1,3,4,2],[1,3,0,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,3],[1,3,0,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,4,0,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,3,0,3],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,3,0,2],[2,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,3,0,2],[1,3,1,1]],[[0,2,1,0],[1,3,3,2],[1,3,0,2],[1,2,1,2]],[[0,3,1,0],[1,3,3,2],[1,3,0,2],[1,2,2,0]],[[0,2,1,0],[1,4,3,2],[1,3,0,2],[1,2,2,0]],[[0,2,1,0],[1,3,4,2],[1,3,0,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,3],[1,3,0,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,4,0,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,3,0,3],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,3,0,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,3,0,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,2],[1,3,0,2],[1,2,3,0]],[[0,3,1,0],[1,3,3,2],[1,3,1,0],[1,2,2,1]],[[0,2,1,0],[1,4,3,2],[1,3,1,0],[1,2,2,1]],[[0,2,1,0],[1,3,4,2],[1,3,1,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,3],[1,3,1,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,4,1,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,3,1,0],[2,2,2,1]],[[0,2,1,0],[1,3,3,2],[1,3,1,0],[1,3,2,1]],[[0,2,1,0],[1,3,3,2],[1,3,1,0],[1,2,3,1]],[[0,2,1,0],[1,3,3,2],[1,3,1,0],[1,2,2,2]],[[0,3,1,0],[1,3,3,2],[1,3,1,1],[1,2,2,0]],[[0,2,1,0],[1,4,3,2],[1,3,1,1],[1,2,2,0]],[[0,2,1,0],[1,3,4,2],[1,3,1,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,3],[1,3,1,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,4,1,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,3,1,1],[2,2,2,0]],[[0,2,1,0],[1,3,3,2],[1,3,1,1],[1,3,2,0]],[[0,2,1,0],[1,3,3,2],[1,3,1,1],[1,2,3,0]],[[0,3,1,0],[1,3,3,2],[1,3,1,2],[1,1,1,1]],[[0,2,1,0],[1,4,3,2],[1,3,1,2],[1,1,1,1]],[[0,2,1,0],[1,3,4,2],[1,3,1,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,3],[1,3,1,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[1,4,1,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[1,3,1,3],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[1,3,1,2],[1,1,1,2]],[[0,3,1,0],[1,3,3,2],[1,3,1,2],[1,1,2,0]],[[0,2,1,0],[1,4,3,2],[1,3,1,2],[1,1,2,0]],[[0,2,1,0],[1,3,4,2],[1,3,1,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,3],[1,3,1,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[1,4,1,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[1,3,1,3],[1,1,2,0]],[[0,3,1,0],[1,3,3,2],[1,3,1,2],[1,2,0,1]],[[0,2,1,0],[1,4,3,2],[1,3,1,2],[1,2,0,1]],[[0,2,1,0],[1,3,4,2],[1,3,1,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,3],[1,3,1,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[1,4,1,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[1,3,1,3],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[1,3,1,2],[2,2,0,1]],[[0,2,1,0],[1,3,3,2],[1,3,1,2],[1,3,0,1]],[[0,2,1,0],[1,3,3,2],[1,3,1,2],[1,2,0,2]],[[0,3,1,0],[1,3,3,2],[1,3,1,2],[1,2,1,0]],[[0,2,1,0],[1,4,3,2],[1,3,1,2],[1,2,1,0]],[[0,2,1,0],[1,3,4,2],[1,3,1,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,3],[1,3,1,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,4,1,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,3,1,3],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,3,1,2],[2,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[1,2,3,0]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[1,3,2,0]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[2,2,2,0]],[[1,2,2,1],[2,0,2,2],[2,2,0,3],[1,2,2,0]],[[1,2,2,1],[2,0,2,2],[3,2,0,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,3],[2,2,0,2],[1,2,2,0]],[[1,2,2,1],[3,0,2,2],[2,2,0,2],[1,2,2,0]],[[0,3,1,0],[1,3,3,2],[1,3,2,0],[1,1,2,1]],[[0,2,1,0],[1,4,3,2],[1,3,2,0],[1,1,2,1]],[[0,2,1,0],[1,3,4,2],[1,3,2,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,3],[1,3,2,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[1,4,2,0],[1,1,2,1]],[[0,3,1,0],[1,3,3,2],[1,3,2,0],[1,2,1,1]],[[0,2,1,0],[1,4,3,2],[1,3,2,0],[1,2,1,1]],[[0,2,1,0],[1,3,4,2],[1,3,2,0],[1,2,1,1]],[[0,2,1,0],[1,3,3,3],[1,3,2,0],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,4,2,0],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,3,2,0],[2,2,1,1]],[[0,2,1,0],[1,3,3,2],[1,3,2,0],[1,3,1,1]],[[0,3,1,0],[1,3,3,2],[1,3,2,1],[1,1,1,1]],[[0,2,1,0],[1,4,3,2],[1,3,2,1],[1,1,1,1]],[[0,2,1,0],[1,3,4,2],[1,3,2,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,3],[1,3,2,1],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[1,4,2,1],[1,1,1,1]],[[0,3,1,0],[1,3,3,2],[1,3,2,1],[1,1,2,0]],[[0,2,1,0],[1,4,3,2],[1,3,2,1],[1,1,2,0]],[[0,2,1,0],[1,3,4,2],[1,3,2,1],[1,1,2,0]],[[0,2,1,0],[1,3,3,3],[1,3,2,1],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[1,4,2,1],[1,1,2,0]],[[0,3,1,0],[1,3,3,2],[1,3,2,1],[1,2,0,1]],[[0,2,1,0],[1,4,3,2],[1,3,2,1],[1,2,0,1]],[[0,2,1,0],[1,3,4,2],[1,3,2,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,3],[1,3,2,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[1,4,2,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[1,3,2,1],[2,2,0,1]],[[0,2,1,0],[1,3,3,2],[1,3,2,1],[1,3,0,1]],[[0,3,1,0],[1,3,3,2],[1,3,2,1],[1,2,1,0]],[[0,2,1,0],[1,4,3,2],[1,3,2,1],[1,2,1,0]],[[0,2,1,0],[1,3,4,2],[1,3,2,1],[1,2,1,0]],[[0,2,1,0],[1,3,3,3],[1,3,2,1],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,4,2,1],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,3,2,1],[2,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,2],[2,0,2,2],[2,2,0,2],[1,2,2,0]],[[1,2,3,1],[2,0,2,2],[2,2,0,2],[1,2,2,0]],[[1,3,2,1],[2,0,2,2],[2,2,0,2],[1,2,2,0]],[[2,2,2,1],[2,0,2,2],[2,2,0,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[1,2,1,2]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[1,3,1,1]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[2,2,1,1]],[[1,2,2,1],[2,0,2,2],[2,2,0,3],[1,2,1,1]],[[1,2,2,1],[2,0,2,2],[3,2,0,2],[1,2,1,1]],[[1,2,2,1],[2,0,2,3],[2,2,0,2],[1,2,1,1]],[[1,2,2,1],[3,0,2,2],[2,2,0,2],[1,2,1,1]],[[1,2,2,2],[2,0,2,2],[2,2,0,2],[1,2,1,1]],[[1,2,3,1],[2,0,2,2],[2,2,0,2],[1,2,1,1]],[[1,3,2,1],[2,0,2,2],[2,2,0,2],[1,2,1,1]],[[2,2,2,1],[2,0,2,2],[2,2,0,2],[1,2,1,1]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[1,1,2,2]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[1,1,3,1]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[2,0,2,2],[2,2,0,3],[1,1,2,1]],[[1,2,2,1],[2,0,2,2],[3,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,0,2,3],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[3,0,2,2],[2,2,0,2],[1,1,2,1]],[[1,2,2,2],[2,0,2,2],[2,2,0,2],[1,1,2,1]],[[1,2,3,1],[2,0,2,2],[2,2,0,2],[1,1,2,1]],[[1,3,2,1],[2,0,2,2],[2,2,0,2],[1,1,2,1]],[[2,2,2,1],[2,0,2,2],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[0,2,2,2]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[0,2,3,1]],[[1,2,2,1],[2,0,2,2],[2,2,0,2],[0,3,2,1]],[[1,2,2,1],[2,0,2,2],[2,2,0,3],[0,2,2,1]],[[1,2,2,1],[2,0,2,2],[3,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,0,2,3],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[3,0,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[2,0,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[2,0,2,2],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[2,0,2,2],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[2,0,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[2,0,2,2],[2,2,0,1],[1,2,2,2]],[[1,2,2,1],[2,0,2,2],[2,2,0,1],[1,2,3,1]],[[1,2,2,1],[2,0,2,2],[2,2,0,1],[1,3,2,1]],[[1,2,2,1],[2,0,2,2],[2,2,0,1],[2,2,2,1]],[[1,2,2,1],[2,0,2,2],[3,2,0,1],[1,2,2,1]],[[1,2,2,1],[2,0,2,3],[2,2,0,1],[1,2,2,1]],[[1,2,2,1],[3,0,2,2],[2,2,0,1],[1,2,2,1]],[[1,2,2,2],[2,0,2,2],[2,2,0,1],[1,2,2,1]],[[0,3,1,0],[1,3,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,1,0],[1,4,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,1,0],[1,3,4,2],[1,3,3,0],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[1,4,3,0],[1,1,2,0]],[[0,3,1,0],[1,3,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,1,0],[1,4,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,1,0],[1,3,4,2],[1,3,3,0],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,4,3,0],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,3,3,0],[2,2,1,0]],[[0,2,1,0],[1,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,3,1],[2,0,2,2],[2,2,0,1],[1,2,2,1]],[[1,3,2,1],[2,0,2,2],[2,2,0,1],[1,2,2,1]],[[2,2,2,1],[2,0,2,2],[2,2,0,1],[1,2,2,1]],[[0,3,1,0],[1,3,3,2],[1,3,3,1],[1,2,0,0]],[[0,2,1,0],[1,4,3,2],[1,3,3,1],[1,2,0,0]],[[0,2,1,0],[1,3,4,2],[1,3,3,1],[1,2,0,0]],[[0,2,1,0],[1,3,3,3],[1,3,3,1],[1,2,0,0]],[[0,2,1,0],[1,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,0,2,2],[2,1,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,1,3,1],[2,2,1,0]],[[1,2,2,1],[2,0,2,2],[3,1,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,2,3],[2,1,3,1],[1,2,1,0]],[[1,2,2,1],[3,0,2,2],[2,1,3,1],[1,2,1,0]],[[1,2,2,2],[2,0,2,2],[2,1,3,1],[1,2,1,0]],[[1,2,3,1],[2,0,2,2],[2,1,3,1],[1,2,1,0]],[[1,3,2,1],[2,0,2,2],[2,1,3,1],[1,2,1,0]],[[2,2,2,1],[2,0,2,2],[2,1,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,1,3,1],[1,3,0,1]],[[1,2,2,1],[2,0,2,2],[2,1,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,2,2],[3,1,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,2,3],[2,1,3,1],[1,2,0,1]],[[1,2,2,1],[3,0,2,2],[2,1,3,1],[1,2,0,1]],[[1,2,2,2],[2,0,2,2],[2,1,3,1],[1,2,0,1]],[[1,2,3,1],[2,0,2,2],[2,1,3,1],[1,2,0,1]],[[1,3,2,1],[2,0,2,2],[2,1,3,1],[1,2,0,1]],[[2,2,2,1],[2,0,2,2],[2,1,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,2,2],[2,1,3,1],[2,1,2,0]],[[1,2,2,1],[2,0,2,2],[3,1,3,1],[1,1,2,0]],[[1,2,2,1],[2,0,2,3],[2,1,3,1],[1,1,2,0]],[[1,2,2,1],[3,0,2,2],[2,1,3,1],[1,1,2,0]],[[1,2,2,2],[2,0,2,2],[2,1,3,1],[1,1,2,0]],[[1,2,3,1],[2,0,2,2],[2,1,3,1],[1,1,2,0]],[[1,3,2,1],[2,0,2,2],[2,1,3,1],[1,1,2,0]],[[0,3,1,0],[1,3,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[1,4,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,4,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,3],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[3,0,1,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,1,3],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,1,2],[2,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,1,2],[1,3,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,1,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,2],[2,0,1,2],[1,2,2,2]],[[0,2,1,0],[1,3,4,2],[2,0,2,2],[0,2,2,1]],[[0,2,1,0],[1,3,3,3],[2,0,2,2],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,2,3],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,2,2],[0,2,3,1]],[[0,2,1,0],[1,3,3,2],[2,0,2,2],[0,2,2,2]],[[0,3,1,0],[1,3,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,1,0],[1,4,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,1,0],[1,3,4,2],[2,0,2,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,3],[2,0,2,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,0,2,3],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,0,2,2],[1,2,1,2]],[[0,3,1,0],[1,3,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,1,0],[1,4,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,4,2],[2,0,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,3],[2,0,2,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,0,2,3],[1,2,2,0]],[[0,3,1,0],[1,3,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,0],[1,4,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,4,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,3],[2,0,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[3,0,3,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,4,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,3,0],[2,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,3,0],[1,3,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,3,0],[1,2,3,1]],[[0,2,1,0],[1,3,3,2],[2,0,3,0],[1,2,2,2]],[[0,3,1,0],[1,3,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,1,0],[1,4,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,4,2],[2,0,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,3],[2,0,3,1],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,0,4,1],[1,2,1,1]],[[0,3,1,0],[1,3,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,0],[1,4,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,0],[1,3,4,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,3],[2,0,3,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[3,0,3,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,0,4,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,0,3,1],[2,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,0,3,1],[1,3,2,0]],[[0,2,1,0],[1,3,3,2],[2,0,3,1],[1,2,3,0]],[[0,2,1,0],[1,3,4,2],[2,0,3,2],[0,1,2,1]],[[0,2,1,0],[1,3,3,3],[2,0,3,2],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,3,3],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,0,3,2],[0,1,2,2]],[[0,2,1,0],[1,3,4,2],[2,0,3,2],[0,2,1,1]],[[0,2,1,0],[1,3,3,3],[2,0,3,2],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,0,3,3],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,0,3,2],[0,2,1,2]],[[0,2,1,0],[1,3,4,2],[2,0,3,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,3],[2,0,3,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,0,3,3],[0,2,2,0]],[[2,2,2,1],[2,0,2,2],[2,1,3,1],[1,1,2,0]],[[1,2,2,1],[2,0,2,2],[2,1,3,1],[2,1,1,1]],[[1,2,2,1],[2,0,2,2],[3,1,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,2,3],[2,1,3,1],[1,1,1,1]],[[1,2,2,1],[3,0,2,2],[2,1,3,1],[1,1,1,1]],[[1,2,2,2],[2,0,2,2],[2,1,3,1],[1,1,1,1]],[[1,2,3,1],[2,0,2,2],[2,1,3,1],[1,1,1,1]],[[1,3,2,1],[2,0,2,2],[2,1,3,1],[1,1,1,1]],[[2,2,2,1],[2,0,2,2],[2,1,3,1],[1,1,1,1]],[[0,3,1,0],[1,3,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[1,4,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,4,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,3],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[3,1,0,2],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,0,3],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,0,2],[2,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,0,2],[1,3,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,0,2],[1,2,3,1]],[[0,2,1,0],[1,3,3,2],[2,1,0,2],[1,2,2,2]],[[0,3,1,0],[1,3,3,2],[2,1,1,2],[0,2,2,1]],[[0,2,1,0],[1,4,3,2],[2,1,1,2],[0,2,2,1]],[[0,2,1,0],[1,3,4,2],[2,1,1,2],[0,2,2,1]],[[0,2,1,0],[1,3,3,3],[2,1,1,2],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,1,3],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,1,2],[0,3,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,1,2],[0,2,3,1]],[[0,2,1,0],[1,3,3,2],[2,1,1,2],[0,2,2,2]],[[0,3,1,0],[1,3,3,2],[2,1,2,2],[0,2,1,1]],[[0,2,1,0],[1,4,3,2],[2,1,2,2],[0,2,1,1]],[[0,2,1,0],[1,3,4,2],[2,1,2,2],[0,2,1,1]],[[0,2,1,0],[1,3,3,3],[2,1,2,2],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,1,2,3],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,1,2,2],[0,2,1,2]],[[0,3,1,0],[1,3,3,2],[2,1,2,2],[0,2,2,0]],[[0,2,1,0],[1,4,3,2],[2,1,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,4,2],[2,1,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,3],[2,1,2,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,1],[2,0,2,2],[3,1,3,1],[0,2,2,0]],[[0,3,1,0],[1,3,3,2],[2,1,3,0],[0,2,2,1]],[[0,2,1,0],[1,4,3,2],[2,1,3,0],[0,2,2,1]],[[0,2,1,0],[1,3,4,2],[2,1,3,0],[0,2,2,1]],[[0,2,1,0],[1,3,3,3],[2,1,3,0],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,4,0],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,3,0],[0,3,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,3,0],[0,2,3,1]],[[0,2,1,0],[1,3,3,2],[2,1,3,0],[0,2,2,2]],[[0,3,1,0],[1,3,3,2],[2,1,3,1],[0,2,1,1]],[[0,2,1,0],[1,4,3,2],[2,1,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,4,2],[2,1,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,3,3],[2,1,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,1,4,1],[0,2,1,1]],[[0,3,1,0],[1,3,3,2],[2,1,3,1],[0,2,2,0]],[[0,2,1,0],[1,4,3,2],[2,1,3,1],[0,2,2,0]],[[0,2,1,0],[1,3,4,2],[2,1,3,1],[0,2,2,0]],[[0,2,1,0],[1,3,3,3],[2,1,3,1],[0,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,1,4,1],[0,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,1,3,1],[0,3,2,0]],[[0,2,1,0],[1,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,2,1],[2,0,2,3],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[3,0,2,2],[2,1,3,1],[0,2,2,0]],[[1,2,2,2],[2,0,2,2],[2,1,3,1],[0,2,2,0]],[[1,2,3,1],[2,0,2,2],[2,1,3,1],[0,2,2,0]],[[1,3,2,1],[2,0,2,2],[2,1,3,1],[0,2,2,0]],[[2,2,2,1],[2,0,2,2],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[2,0,2,2],[3,1,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,2,3],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[3,0,2,2],[2,1,3,1],[0,2,1,1]],[[1,2,2,2],[2,0,2,2],[2,1,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,4,2],[2,1,3,2],[0,0,2,1]],[[0,2,1,0],[1,3,3,3],[2,1,3,2],[0,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,3,3],[0,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,1,3,2],[0,0,2,2]],[[0,2,1,0],[1,3,4,2],[2,1,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,3],[2,1,3,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,1,3,3],[0,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,1,3,2],[0,1,1,2]],[[0,2,1,0],[1,3,4,2],[2,1,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,3],[2,1,3,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,3,1],[2,0,2,2],[2,1,3,1],[0,2,1,1]],[[1,3,2,1],[2,0,2,2],[2,1,3,1],[0,2,1,1]],[[2,2,2,1],[2,0,2,2],[2,1,3,1],[0,2,1,1]],[[0,2,1,0],[1,3,4,2],[2,1,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,3],[2,1,3,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,1,3,3],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,1,3,2],[1,0,1,2]],[[0,2,1,0],[1,3,4,2],[2,1,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,3],[2,1,3,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[2,0,2,2],[2,1,3,0],[1,3,1,1]],[[1,2,2,1],[2,0,2,2],[2,1,3,0],[2,2,1,1]],[[1,2,2,1],[2,0,2,2],[3,1,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,2,3],[2,1,3,0],[1,2,1,1]],[[1,2,2,1],[3,0,2,2],[2,1,3,0],[1,2,1,1]],[[1,2,2,2],[2,0,2,2],[2,1,3,0],[1,2,1,1]],[[1,2,3,1],[2,0,2,2],[2,1,3,0],[1,2,1,1]],[[1,3,2,1],[2,0,2,2],[2,1,3,0],[1,2,1,1]],[[2,2,2,1],[2,0,2,2],[2,1,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,2,2],[2,1,3,0],[2,1,2,1]],[[1,2,2,1],[2,0,2,2],[3,1,3,0],[1,1,2,1]],[[1,2,2,1],[2,0,2,3],[2,1,3,0],[1,1,2,1]],[[1,2,2,1],[3,0,2,2],[2,1,3,0],[1,1,2,1]],[[1,2,2,2],[2,0,2,2],[2,1,3,0],[1,1,2,1]],[[1,2,3,1],[2,0,2,2],[2,1,3,0],[1,1,2,1]],[[1,3,2,1],[2,0,2,2],[2,1,3,0],[1,1,2,1]],[[2,2,2,1],[2,0,2,2],[2,1,3,0],[1,1,2,1]],[[1,2,2,1],[2,0,2,2],[3,1,3,0],[0,2,2,1]],[[1,2,2,1],[2,0,2,3],[2,1,3,0],[0,2,2,1]],[[1,2,2,1],[3,0,2,2],[2,1,3,0],[0,2,2,1]],[[1,2,2,2],[2,0,2,2],[2,1,3,0],[0,2,2,1]],[[1,2,3,1],[2,0,2,2],[2,1,3,0],[0,2,2,1]],[[1,3,2,1],[2,0,2,2],[2,1,3,0],[0,2,2,1]],[[2,2,2,1],[2,0,2,2],[2,1,3,0],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[3,2,0,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,0,1],[2,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,0,1],[1,3,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,0,1],[1,2,3,1]],[[0,2,1,0],[1,3,3,2],[2,2,0,1],[1,2,2,2]],[[0,3,1,0],[1,3,3,2],[2,2,0,2],[0,2,2,1]],[[0,2,1,0],[1,4,3,2],[2,2,0,2],[0,2,2,1]],[[0,2,1,0],[1,3,4,2],[2,2,0,2],[0,2,2,1]],[[0,2,1,0],[1,3,3,3],[2,2,0,2],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,0,3],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,0,2],[0,3,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,0,2],[0,2,3,1]],[[0,2,1,0],[1,3,3,2],[2,2,0,2],[0,2,2,2]],[[0,2,1,0],[1,3,3,2],[3,2,0,2],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,0,2],[2,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,0,2],[1,3,1,1]],[[0,2,1,0],[1,3,3,2],[3,2,0,2],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,0,2],[2,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,0,2],[1,3,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,0,2],[1,2,3,0]],[[0,2,1,0],[1,3,3,2],[3,2,1,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,0],[2,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,0],[1,3,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,0],[1,2,3,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,0],[1,2,2,2]],[[0,2,1,0],[1,3,3,2],[3,2,1,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,1,1],[2,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,1,1],[1,3,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,1,1],[1,2,3,0]],[[0,3,1,0],[1,3,3,2],[2,2,1,2],[0,1,2,1]],[[0,2,1,0],[1,4,3,2],[2,2,1,2],[0,1,2,1]],[[0,2,1,0],[1,3,4,2],[2,2,1,2],[0,1,2,1]],[[0,2,1,0],[1,3,3,3],[2,2,1,2],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,3],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,2],[0,1,3,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,2],[0,1,2,2]],[[0,3,1,0],[1,3,3,2],[2,2,1,2],[1,0,2,1]],[[0,2,1,0],[1,4,3,2],[2,2,1,2],[1,0,2,1]],[[0,2,1,0],[1,3,4,2],[2,2,1,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,3],[2,2,1,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,3],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,2],[1,0,3,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,2],[1,0,2,2]],[[0,2,1,0],[1,3,3,2],[3,2,1,2],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,2],[2,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,1,2],[1,3,0,1]],[[0,2,1,0],[1,3,3,2],[3,2,1,2],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,2,1,2],[2,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,2,1,2],[1,3,1,0]],[[0,2,1,0],[1,3,3,2],[3,2,2,0],[1,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,0],[2,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,0],[1,3,1,1]],[[0,2,1,0],[1,3,3,2],[3,2,2,1],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,1],[2,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,1],[1,3,0,1]],[[0,2,1,0],[1,3,3,2],[3,2,2,1],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,2,2,1],[2,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,2,2,1],[1,3,1,0]],[[0,3,1,0],[1,3,3,2],[2,2,2,2],[0,0,2,1]],[[0,2,1,0],[1,4,3,2],[2,2,2,2],[0,0,2,1]],[[0,2,1,0],[1,3,4,2],[2,2,2,2],[0,0,2,1]],[[0,2,1,0],[1,3,3,3],[2,2,2,2],[0,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,3],[0,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,2],[0,0,2,2]],[[0,3,1,0],[1,3,3,2],[2,2,2,2],[0,1,1,1]],[[0,2,1,0],[1,4,3,2],[2,2,2,2],[0,1,1,1]],[[0,2,1,0],[1,3,4,2],[2,2,2,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,3],[2,2,2,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,3],[0,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,2],[0,1,1,2]],[[0,3,1,0],[1,3,3,2],[2,2,2,2],[0,1,2,0]],[[0,2,1,0],[1,4,3,2],[2,2,2,2],[0,1,2,0]],[[0,2,1,0],[1,3,4,2],[2,2,2,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,3],[2,2,2,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,2,3],[0,1,2,0]],[[0,3,1,0],[1,3,3,2],[2,2,2,2],[0,2,0,1]],[[0,2,1,0],[1,4,3,2],[2,2,2,2],[0,2,0,1]],[[0,2,1,0],[1,3,4,2],[2,2,2,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,3],[2,2,2,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,3],[0,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,2],[0,2,0,2]],[[0,3,1,0],[1,3,3,2],[2,2,2,2],[0,2,1,0]],[[0,2,1,0],[1,4,3,2],[2,2,2,2],[0,2,1,0]],[[0,2,1,0],[1,3,4,2],[2,2,2,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,3],[2,2,2,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,1,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[2,1,2,2],[2,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,1,2,3],[1,2,1,0]],[[0,3,1,0],[1,3,3,2],[2,2,2,2],[1,0,1,1]],[[0,2,1,0],[1,4,3,2],[2,2,2,2],[1,0,1,1]],[[0,2,1,0],[1,3,4,2],[2,2,2,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,3],[2,2,2,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,3],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,2],[1,0,1,2]],[[0,3,1,0],[1,3,3,2],[2,2,2,2],[1,0,2,0]],[[0,2,1,0],[1,4,3,2],[2,2,2,2],[1,0,2,0]],[[0,2,1,0],[1,3,4,2],[2,2,2,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,3],[2,2,2,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,2,3],[1,0,2,0]],[[0,3,1,0],[1,3,3,2],[2,2,2,2],[1,1,0,1]],[[0,2,1,0],[1,4,3,2],[2,2,2,2],[1,1,0,1]],[[0,2,1,0],[1,3,4,2],[2,2,2,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,3],[2,2,2,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,3],[1,1,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,2,2],[1,1,0,2]],[[0,3,1,0],[1,3,3,2],[2,2,2,2],[1,1,1,0]],[[0,2,1,0],[1,4,3,2],[2,2,2,2],[1,1,1,0]],[[0,2,1,0],[1,3,4,2],[2,2,2,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,3],[2,2,2,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[3,1,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,2,3],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[3,0,2,2],[2,1,2,2],[1,2,1,0]],[[1,2,2,2],[2,0,2,2],[2,1,2,2],[1,2,1,0]],[[1,2,3,1],[2,0,2,2],[2,1,2,2],[1,2,1,0]],[[1,3,2,1],[2,0,2,2],[2,1,2,2],[1,2,1,0]],[[2,2,2,1],[2,0,2,2],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,2,2],[2,1,2,2],[1,2,0,2]],[[1,2,2,1],[2,0,2,2],[2,1,2,2],[1,3,0,1]],[[1,2,2,1],[2,0,2,2],[2,1,2,2],[2,2,0,1]],[[1,2,2,1],[2,0,2,2],[2,1,2,3],[1,2,0,1]],[[1,2,2,1],[2,0,2,2],[3,1,2,2],[1,2,0,1]],[[1,2,2,1],[2,0,2,3],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[3,0,2,2],[2,1,2,2],[1,2,0,1]],[[1,2,2,2],[2,0,2,2],[2,1,2,2],[1,2,0,1]],[[1,2,3,1],[2,0,2,2],[2,1,2,2],[1,2,0,1]],[[1,3,2,1],[2,0,2,2],[2,1,2,2],[1,2,0,1]],[[2,2,2,1],[2,0,2,2],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[2,0,2,2],[2,1,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,2,2],[2,1,2,3],[1,1,2,0]],[[1,2,2,1],[2,0,2,2],[3,1,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,2,3],[2,1,2,2],[1,1,2,0]],[[1,2,2,1],[3,0,2,2],[2,1,2,2],[1,1,2,0]],[[1,2,2,2],[2,0,2,2],[2,1,2,2],[1,1,2,0]],[[0,3,1,0],[1,3,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,1,0],[1,4,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,1,0],[1,3,4,2],[2,2,3,0],[0,1,2,1]],[[0,2,1,0],[1,3,3,3],[2,2,3,0],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,4,0],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,3,0],[0,1,3,1]],[[0,2,1,0],[1,3,3,2],[2,2,3,0],[0,1,2,2]],[[0,3,1,0],[1,3,3,2],[2,2,3,0],[0,2,1,1]],[[0,2,1,0],[1,4,3,2],[2,2,3,0],[0,2,1,1]],[[0,2,1,0],[1,3,4,2],[2,2,3,0],[0,2,1,1]],[[0,2,1,0],[1,3,3,3],[2,2,3,0],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,4,0],[0,2,1,1]],[[0,3,1,0],[1,3,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,1,0],[1,4,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,1,0],[1,3,4,2],[2,2,3,0],[1,0,2,1]],[[0,2,1,0],[1,3,3,3],[2,2,3,0],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,4,0],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,3,0],[1,0,3,1]],[[0,2,1,0],[1,3,3,2],[2,2,3,0],[1,0,2,2]],[[0,3,1,0],[1,3,3,2],[2,2,3,0],[1,1,1,1]],[[0,2,1,0],[1,4,3,2],[2,2,3,0],[1,1,1,1]],[[0,2,1,0],[1,3,4,2],[2,2,3,0],[1,1,1,1]],[[0,2,1,0],[1,3,3,3],[2,2,3,0],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,4,0],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[3,2,3,0],[1,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,2,3,0],[2,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,3,1],[2,0,2,2],[2,1,2,2],[1,1,2,0]],[[1,3,2,1],[2,0,2,2],[2,1,2,2],[1,1,2,0]],[[2,2,2,1],[2,0,2,2],[2,1,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,2,2],[2,1,2,2],[1,1,1,2]],[[1,2,2,1],[2,0,2,2],[2,1,2,2],[2,1,1,1]],[[1,2,2,1],[2,0,2,2],[2,1,2,3],[1,1,1,1]],[[1,2,2,1],[2,0,2,2],[3,1,2,2],[1,1,1,1]],[[1,2,2,1],[2,0,2,3],[2,1,2,2],[1,1,1,1]],[[1,2,2,1],[3,0,2,2],[2,1,2,2],[1,1,1,1]],[[1,2,2,2],[2,0,2,2],[2,1,2,2],[1,1,1,1]],[[0,3,1,0],[1,3,3,2],[2,2,3,1],[0,0,2,1]],[[0,2,1,0],[1,4,3,2],[2,2,3,1],[0,0,2,1]],[[0,2,1,0],[1,3,4,2],[2,2,3,1],[0,0,2,1]],[[0,2,1,0],[1,3,3,3],[2,2,3,1],[0,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,2,4,1],[0,0,2,1]],[[0,3,1,0],[1,3,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,1,0],[1,4,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,1,0],[1,3,4,2],[2,2,3,1],[0,1,1,1]],[[0,2,1,0],[1,3,3,3],[2,2,3,1],[0,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,4,1],[0,1,1,1]],[[0,3,1,0],[1,3,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,1,0],[1,4,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,1,0],[1,3,4,2],[2,2,3,1],[0,1,2,0]],[[0,2,1,0],[1,3,3,3],[2,2,3,1],[0,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,4,1],[0,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,3,1],[0,1,3,0]],[[0,3,1,0],[1,3,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,1,0],[1,4,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,1,0],[1,3,4,2],[2,2,3,1],[0,2,0,1]],[[0,2,1,0],[1,3,3,3],[2,2,3,1],[0,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,4,1],[0,2,0,1]],[[0,3,1,0],[1,3,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,1,0],[1,4,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,1,0],[1,3,4,2],[2,2,3,1],[0,2,1,0]],[[0,2,1,0],[1,3,3,3],[2,2,3,1],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,3,1],[2,0,2,2],[2,1,2,2],[1,1,1,1]],[[1,3,2,1],[2,0,2,2],[2,1,2,2],[1,1,1,1]],[[2,2,2,1],[2,0,2,2],[2,1,2,2],[1,1,1,1]],[[0,3,1,0],[1,3,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,1,0],[1,4,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,1,0],[1,3,4,2],[2,2,3,1],[1,0,1,1]],[[0,2,1,0],[1,3,3,3],[2,2,3,1],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,2,4,1],[1,0,1,1]],[[0,3,1,0],[1,3,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,1,0],[1,4,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,1,0],[1,3,4,2],[2,2,3,1],[1,0,2,0]],[[0,2,1,0],[1,3,3,3],[2,2,3,1],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,4,1],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,2,3,1],[1,0,3,0]],[[0,3,1,0],[1,3,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,1,0],[1,4,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,1,0],[1,3,4,2],[2,2,3,1],[1,1,0,1]],[[0,2,1,0],[1,3,3,3],[2,2,3,1],[1,1,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,4,1],[1,1,0,1]],[[0,3,1,0],[1,3,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,1,0],[1,4,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,1,0],[1,3,4,2],[2,2,3,1],[1,1,1,0]],[[0,2,1,0],[1,3,3,3],[2,2,3,1],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,1],[2,0,2,2],[3,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,2,3],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[3,0,2,2],[2,1,2,2],[0,2,2,0]],[[1,2,2,2],[2,0,2,2],[2,1,2,2],[0,2,2,0]],[[1,2,3,1],[2,0,2,2],[2,1,2,2],[0,2,2,0]],[[1,3,2,1],[2,0,2,2],[2,1,2,2],[0,2,2,0]],[[2,2,2,1],[2,0,2,2],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,2,2],[2,1,2,2],[0,2,1,2]],[[1,2,2,1],[2,0,2,2],[2,1,2,3],[0,2,1,1]],[[1,2,2,1],[2,0,2,2],[3,1,2,2],[0,2,1,1]],[[1,2,2,1],[2,0,2,3],[2,1,2,2],[0,2,1,1]],[[1,2,2,1],[3,0,2,2],[2,1,2,2],[0,2,1,1]],[[1,2,2,2],[2,0,2,2],[2,1,2,2],[0,2,1,1]],[[1,2,3,1],[2,0,2,2],[2,1,2,2],[0,2,1,1]],[[1,3,2,1],[2,0,2,2],[2,1,2,2],[0,2,1,1]],[[2,2,2,1],[2,0,2,2],[2,1,2,2],[0,2,1,1]],[[0,3,1,0],[1,3,3,2],[2,2,3,2],[0,1,0,1]],[[0,2,1,0],[1,4,3,2],[2,2,3,2],[0,1,0,1]],[[0,2,1,0],[1,3,4,2],[2,2,3,2],[0,1,0,1]],[[0,2,1,0],[1,3,3,3],[2,2,3,2],[0,1,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,2,1],[2,0,2,2],[2,1,2,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,2],[2,1,2,1],[1,3,2,0]],[[1,2,2,1],[2,0,2,2],[2,1,2,1],[2,2,2,0]],[[1,2,2,1],[2,0,2,2],[3,1,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,2,3],[2,1,2,1],[1,2,2,0]],[[1,2,2,1],[3,0,2,2],[2,1,2,1],[1,2,2,0]],[[1,2,2,2],[2,0,2,2],[2,1,2,1],[1,2,2,0]],[[1,2,3,1],[2,0,2,2],[2,1,2,1],[1,2,2,0]],[[1,3,2,1],[2,0,2,2],[2,1,2,1],[1,2,2,0]],[[2,2,2,1],[2,0,2,2],[2,1,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,2,2],[2,1,2,0],[1,2,2,2]],[[1,2,2,1],[2,0,2,2],[2,1,2,0],[1,2,3,1]],[[1,2,2,1],[2,0,2,2],[2,1,2,0],[1,3,2,1]],[[1,2,2,1],[2,0,2,2],[2,1,2,0],[2,2,2,1]],[[1,2,2,1],[2,0,2,2],[3,1,2,0],[1,2,2,1]],[[1,2,2,1],[2,0,2,3],[2,1,2,0],[1,2,2,1]],[[1,2,2,1],[3,0,2,2],[2,1,2,0],[1,2,2,1]],[[1,2,2,2],[2,0,2,2],[2,1,2,0],[1,2,2,1]],[[1,2,3,1],[2,0,2,2],[2,1,2,0],[1,2,2,1]],[[1,3,2,1],[2,0,2,2],[2,1,2,0],[1,2,2,1]],[[2,2,2,1],[2,0,2,2],[2,1,2,0],[1,2,2,1]],[[0,3,1,0],[1,3,3,2],[2,2,3,2],[1,0,0,1]],[[0,2,1,0],[1,4,3,2],[2,2,3,2],[1,0,0,1]],[[0,2,1,0],[1,3,4,2],[2,2,3,2],[1,0,0,1]],[[0,2,1,0],[1,3,3,3],[2,2,3,2],[1,0,0,1]],[[0,2,1,0],[1,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[1,2,3,0]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[1,3,2,0]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[2,2,2,0]],[[1,2,2,1],[2,0,2,2],[2,1,1,3],[1,2,2,0]],[[1,2,2,1],[2,0,2,2],[3,1,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,3],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[3,0,2,2],[2,1,1,2],[1,2,2,0]],[[1,2,2,2],[2,0,2,2],[2,1,1,2],[1,2,2,0]],[[1,2,3,1],[2,0,2,2],[2,1,1,2],[1,2,2,0]],[[1,3,2,1],[2,0,2,2],[2,1,1,2],[1,2,2,0]],[[2,2,2,1],[2,0,2,2],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[1,2,1,2]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[1,3,1,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[2,2,1,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,3],[1,2,1,1]],[[1,2,2,1],[2,0,2,2],[3,1,1,2],[1,2,1,1]],[[1,2,2,1],[2,0,2,3],[2,1,1,2],[1,2,1,1]],[[1,2,2,1],[3,0,2,2],[2,1,1,2],[1,2,1,1]],[[1,2,2,2],[2,0,2,2],[2,1,1,2],[1,2,1,1]],[[1,2,3,1],[2,0,2,2],[2,1,1,2],[1,2,1,1]],[[1,3,2,1],[2,0,2,2],[2,1,1,2],[1,2,1,1]],[[2,2,2,1],[2,0,2,2],[2,1,1,2],[1,2,1,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[1,1,2,2]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[1,1,3,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[2,1,2,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,3],[1,1,2,1]],[[1,2,2,1],[2,0,2,2],[3,1,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,2,3],[2,1,1,2],[1,1,2,1]],[[1,2,2,1],[3,0,2,2],[2,1,1,2],[1,1,2,1]],[[1,2,2,2],[2,0,2,2],[2,1,1,2],[1,1,2,1]],[[1,2,3,1],[2,0,2,2],[2,1,1,2],[1,1,2,1]],[[1,3,2,1],[2,0,2,2],[2,1,1,2],[1,1,2,1]],[[2,2,2,1],[2,0,2,2],[2,1,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[0,2,2,2]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[0,2,3,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,2],[0,3,2,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,3],[0,2,2,1]],[[1,2,2,1],[2,0,2,2],[3,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,2,3],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[3,0,2,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,2],[2,0,2,2],[2,1,1,2],[0,2,2,1]],[[1,2,3,1],[2,0,2,2],[2,1,1,2],[0,2,2,1]],[[1,3,2,1],[2,0,2,2],[2,1,1,2],[0,2,2,1]],[[2,2,2,1],[2,0,2,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,1],[1,2,2,2]],[[1,2,2,1],[2,0,2,2],[2,1,1,1],[1,2,3,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,1],[1,3,2,1]],[[1,2,2,1],[2,0,2,2],[2,1,1,1],[2,2,2,1]],[[1,2,2,1],[2,0,2,2],[3,1,1,1],[1,2,2,1]],[[1,2,2,1],[2,0,2,3],[2,1,1,1],[1,2,2,1]],[[1,2,2,1],[3,0,2,2],[2,1,1,1],[1,2,2,1]],[[1,2,2,2],[2,0,2,2],[2,1,1,1],[1,2,2,1]],[[1,2,3,1],[2,0,2,2],[2,1,1,1],[1,2,2,1]],[[1,3,2,1],[2,0,2,2],[2,1,1,1],[1,2,2,1]],[[2,2,2,1],[2,0,2,2],[2,1,1,1],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[3,3,0,0],[1,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,0],[2,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,0],[1,3,2,1]],[[0,3,1,0],[1,3,3,2],[2,3,0,1],[0,2,2,1]],[[0,2,1,0],[1,4,3,2],[2,3,0,1],[0,2,2,1]],[[0,2,1,0],[1,3,4,2],[2,3,0,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,3],[2,3,0,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[3,3,0,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,4,0,1],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,1],[0,3,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,1],[0,2,3,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,1],[0,2,2,2]],[[0,3,1,0],[1,3,3,2],[2,3,0,1],[1,1,2,1]],[[0,2,1,0],[1,4,3,2],[2,3,0,1],[1,1,2,1]],[[0,2,1,0],[1,3,4,2],[2,3,0,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,3],[2,3,0,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[3,3,0,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,4,0,1],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,1],[2,1,2,1]],[[0,2,1,0],[1,3,3,2],[3,3,0,1],[1,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,0,1],[2,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,0,1],[1,3,2,0]],[[0,3,1,0],[1,3,3,2],[2,3,0,2],[0,1,2,1]],[[0,2,1,0],[1,4,3,2],[2,3,0,2],[0,1,2,1]],[[0,2,1,0],[1,3,4,2],[2,3,0,2],[0,1,2,1]],[[0,2,1,0],[1,3,3,3],[2,3,0,2],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[3,3,0,2],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,4,0,2],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,3],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[0,1,3,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[0,1,2,2]],[[0,3,1,0],[1,3,3,2],[2,3,0,2],[0,2,1,1]],[[0,2,1,0],[1,4,3,2],[2,3,0,2],[0,2,1,1]],[[0,2,1,0],[1,3,4,2],[2,3,0,2],[0,2,1,1]],[[0,2,1,0],[1,3,3,3],[2,3,0,2],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[3,3,0,2],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,4,0,2],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,3],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[0,3,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[0,2,1,2]],[[0,3,1,0],[1,3,3,2],[2,3,0,2],[0,2,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,0,2],[0,2,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,0,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,3],[2,3,0,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,2],[3,3,0,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,4,0,2],[0,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,0,3],[0,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[0,3,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[0,2,3,0]],[[0,3,1,0],[1,3,3,2],[2,3,0,2],[1,0,2,1]],[[0,2,1,0],[1,4,3,2],[2,3,0,2],[1,0,2,1]],[[0,2,1,0],[1,3,4,2],[2,3,0,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,3],[2,3,0,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[3,3,0,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,4,0,2],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,3],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[2,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[1,0,3,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[1,0,2,2]],[[0,3,1,0],[1,3,3,2],[2,3,0,2],[1,1,1,1]],[[0,2,1,0],[1,4,3,2],[2,3,0,2],[1,1,1,1]],[[0,2,1,0],[1,3,4,2],[2,3,0,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,3],[2,3,0,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[3,3,0,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,4,0,2],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,3],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[2,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[1,1,1,2]],[[0,3,1,0],[1,3,3,2],[2,3,0,2],[1,1,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,0,2],[1,1,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,0,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,3],[2,3,0,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[3,3,0,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,4,0,2],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,0,3],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,0,2],[2,1,2,0]],[[0,3,1,0],[1,3,3,2],[2,3,1,0],[0,2,2,1]],[[0,2,1,0],[1,4,3,2],[2,3,1,0],[0,2,2,1]],[[0,2,1,0],[1,3,4,2],[2,3,1,0],[0,2,2,1]],[[0,2,1,0],[1,3,3,3],[2,3,1,0],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[3,3,1,0],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,4,1,0],[0,2,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,0],[0,3,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,0],[0,2,3,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,0],[0,2,2,2]],[[0,3,1,0],[1,3,3,2],[2,3,1,0],[1,1,2,1]],[[0,2,1,0],[1,4,3,2],[2,3,1,0],[1,1,2,1]],[[0,2,1,0],[1,3,4,2],[2,3,1,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,3],[2,3,1,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[3,3,1,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,4,1,0],[1,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,0],[2,1,2,1]],[[0,3,1,0],[1,3,3,2],[2,3,1,1],[0,2,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,1,1],[0,2,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,1,1],[0,2,2,0]],[[0,2,1,0],[1,3,3,3],[2,3,1,1],[0,2,2,0]],[[0,2,1,0],[1,3,3,2],[3,3,1,1],[0,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,4,1,1],[0,2,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,1,1],[0,3,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,1,1],[0,2,3,0]],[[0,3,1,0],[1,3,3,2],[2,3,1,1],[1,1,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,1,1],[1,1,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,1,1],[1,1,2,0]],[[0,2,1,0],[1,3,3,3],[2,3,1,1],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[3,3,1,1],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,4,1,1],[1,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,1,1],[2,1,2,0]],[[0,3,1,0],[1,3,3,2],[2,3,1,2],[0,1,1,1]],[[0,2,1,0],[1,4,3,2],[2,3,1,2],[0,1,1,1]],[[0,2,1,0],[1,3,4,2],[2,3,1,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,3],[2,3,1,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,2],[3,3,1,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,4,1,2],[0,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,3],[0,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,2],[0,1,1,2]],[[0,3,1,0],[1,3,3,2],[2,3,1,2],[0,1,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,1,2],[0,1,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,1,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,3],[2,3,1,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,2],[3,3,1,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,4,1,2],[0,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,1,3],[0,1,2,0]],[[0,3,1,0],[1,3,3,2],[2,3,1,2],[0,2,0,1]],[[0,2,1,0],[1,4,3,2],[2,3,1,2],[0,2,0,1]],[[0,2,1,0],[1,3,4,2],[2,3,1,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,3],[2,3,1,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,2],[3,3,1,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,4,1,2],[0,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,3],[0,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,2],[0,3,0,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,2],[0,2,0,2]],[[0,3,1,0],[1,3,3,2],[2,3,1,2],[0,2,1,0]],[[0,2,1,0],[1,4,3,2],[2,3,1,2],[0,2,1,0]],[[0,2,1,0],[1,3,4,2],[2,3,1,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,3],[2,3,1,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[3,3,1,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,4,1,2],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,3,1,3],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[2,0,2,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,0,2,3],[1,3,3,2],[1,0,0,1]],[[1,2,2,1],[3,0,2,2],[1,3,3,2],[1,0,0,1]],[[1,2,2,2],[2,0,2,2],[1,3,3,2],[1,0,0,1]],[[0,3,1,0],[1,3,3,2],[2,3,1,2],[1,0,1,1]],[[0,2,1,0],[1,4,3,2],[2,3,1,2],[1,0,1,1]],[[0,2,1,0],[1,3,4,2],[2,3,1,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,3],[2,3,1,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[3,3,1,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,4,1,2],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,3],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,2],[2,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,2],[1,0,1,2]],[[0,3,1,0],[1,3,3,2],[2,3,1,2],[1,0,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,1,2],[1,0,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,1,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,3],[2,3,1,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[3,3,1,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,4,1,2],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,1,3],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,1,2],[2,0,2,0]],[[0,3,1,0],[1,3,3,2],[2,3,1,2],[1,1,0,1]],[[0,2,1,0],[1,4,3,2],[2,3,1,2],[1,1,0,1]],[[0,2,1,0],[1,3,4,2],[2,3,1,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,3],[2,3,1,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,2],[3,3,1,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,2],[2,4,1,2],[1,1,0,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,3],[1,1,0,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,2],[2,1,0,1]],[[0,2,1,0],[1,3,3,2],[2,3,1,2],[1,1,0,2]],[[0,3,1,0],[1,3,3,2],[2,3,1,2],[1,1,1,0]],[[0,2,1,0],[1,4,3,2],[2,3,1,2],[1,1,1,0]],[[0,2,1,0],[1,3,4,2],[2,3,1,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,3],[2,3,1,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[3,3,1,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[2,4,1,2],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[2,3,1,3],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,3,1],[2,0,2,2],[1,3,3,2],[1,0,0,1]],[[1,3,2,1],[2,0,2,2],[1,3,3,2],[1,0,0,1]],[[2,2,2,1],[2,0,2,2],[1,3,3,2],[1,0,0,1]],[[0,3,1,0],[1,3,3,2],[2,3,1,2],[1,2,0,0]],[[0,2,1,0],[1,4,3,2],[2,3,1,2],[1,2,0,0]],[[0,2,1,0],[1,3,4,2],[2,3,1,2],[1,2,0,0]],[[0,2,1,0],[1,3,3,3],[2,3,1,2],[1,2,0,0]],[[0,2,1,0],[1,3,3,2],[3,3,1,2],[1,2,0,0]],[[0,2,1,0],[1,3,3,2],[2,4,1,2],[1,2,0,0]],[[0,2,1,0],[1,3,3,2],[2,3,1,2],[2,2,0,0]],[[0,3,1,0],[1,3,3,2],[2,3,2,0],[0,1,2,1]],[[0,2,1,0],[1,4,3,2],[2,3,2,0],[0,1,2,1]],[[0,2,1,0],[1,3,4,2],[2,3,2,0],[0,1,2,1]],[[0,2,1,0],[1,3,3,3],[2,3,2,0],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[3,3,2,0],[0,1,2,1]],[[0,2,1,0],[1,3,3,2],[2,4,2,0],[0,1,2,1]],[[0,3,1,0],[1,3,3,2],[2,3,2,0],[0,2,1,1]],[[0,2,1,0],[1,4,3,2],[2,3,2,0],[0,2,1,1]],[[0,2,1,0],[1,3,4,2],[2,3,2,0],[0,2,1,1]],[[0,2,1,0],[1,3,3,3],[2,3,2,0],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[3,3,2,0],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,4,2,0],[0,2,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,2,0],[0,3,1,1]],[[0,3,1,0],[1,3,3,2],[2,3,2,0],[1,0,2,1]],[[0,2,1,0],[1,4,3,2],[2,3,2,0],[1,0,2,1]],[[0,2,1,0],[1,3,4,2],[2,3,2,0],[1,0,2,1]],[[0,2,1,0],[1,3,3,3],[2,3,2,0],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[3,3,2,0],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,4,2,0],[1,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,2,0],[2,0,2,1]],[[0,3,1,0],[1,3,3,2],[2,3,2,0],[1,1,1,1]],[[0,2,1,0],[1,4,3,2],[2,3,2,0],[1,1,1,1]],[[0,2,1,0],[1,3,4,2],[2,3,2,0],[1,1,1,1]],[[0,2,1,0],[1,3,3,3],[2,3,2,0],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[3,3,2,0],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,4,2,0],[1,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,2,0],[2,1,1,1]],[[0,3,1,0],[1,3,3,2],[2,3,2,0],[1,2,0,1]],[[0,2,1,0],[1,4,3,2],[2,3,2,0],[1,2,0,1]],[[0,2,1,0],[1,3,4,2],[2,3,2,0],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[3,3,2,0],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,4,2,0],[1,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[2,0,2,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,0,2,3],[1,3,3,2],[0,1,0,1]],[[1,2,2,1],[3,0,2,2],[1,3,3,2],[0,1,0,1]],[[1,2,2,2],[2,0,2,2],[1,3,3,2],[0,1,0,1]],[[1,2,3,1],[2,0,2,2],[1,3,3,2],[0,1,0,1]],[[1,3,2,1],[2,0,2,2],[1,3,3,2],[0,1,0,1]],[[2,2,2,1],[2,0,2,2],[1,3,3,2],[0,1,0,1]],[[0,3,1,0],[1,3,3,2],[2,3,2,1],[0,1,1,1]],[[0,2,1,0],[1,4,3,2],[2,3,2,1],[0,1,1,1]],[[0,2,1,0],[1,3,4,2],[2,3,2,1],[0,1,1,1]],[[0,2,1,0],[1,3,3,3],[2,3,2,1],[0,1,1,1]],[[0,2,1,0],[1,3,3,2],[3,3,2,1],[0,1,1,1]],[[0,2,1,0],[1,3,3,2],[2,4,2,1],[0,1,1,1]],[[0,3,1,0],[1,3,3,2],[2,3,2,1],[0,1,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,2,1],[0,1,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,2,1],[0,1,2,0]],[[0,2,1,0],[1,3,3,3],[2,3,2,1],[0,1,2,0]],[[0,2,1,0],[1,3,3,2],[3,3,2,1],[0,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,4,2,1],[0,1,2,0]],[[0,3,1,0],[1,3,3,2],[2,3,2,1],[0,2,0,1]],[[0,2,1,0],[1,4,3,2],[2,3,2,1],[0,2,0,1]],[[0,2,1,0],[1,3,4,2],[2,3,2,1],[0,2,0,1]],[[0,2,1,0],[1,3,3,3],[2,3,2,1],[0,2,0,1]],[[0,2,1,0],[1,3,3,2],[3,3,2,1],[0,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,4,2,1],[0,2,0,1]],[[0,2,1,0],[1,3,3,2],[2,3,2,1],[0,3,0,1]],[[0,3,1,0],[1,3,3,2],[2,3,2,1],[0,2,1,0]],[[0,2,1,0],[1,4,3,2],[2,3,2,1],[0,2,1,0]],[[0,2,1,0],[1,3,4,2],[2,3,2,1],[0,2,1,0]],[[0,2,1,0],[1,3,3,3],[2,3,2,1],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[3,3,2,1],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,4,2,1],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,3,2,1],[0,3,1,0]],[[0,3,1,0],[1,3,3,2],[2,3,2,1],[1,0,1,1]],[[0,2,1,0],[1,4,3,2],[2,3,2,1],[1,0,1,1]],[[0,2,1,0],[1,3,4,2],[2,3,2,1],[1,0,1,1]],[[0,2,1,0],[1,3,3,3],[2,3,2,1],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[3,3,2,1],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,4,2,1],[1,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,2,1],[2,0,1,1]],[[0,3,1,0],[1,3,3,2],[2,3,2,1],[1,0,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,2,1],[1,0,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,2,1],[1,0,2,0]],[[0,2,1,0],[1,3,3,3],[2,3,2,1],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[3,3,2,1],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,4,2,1],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,2,1],[2,0,2,0]],[[0,3,1,0],[1,3,3,2],[2,3,2,1],[1,1,0,1]],[[0,2,1,0],[1,4,3,2],[2,3,2,1],[1,1,0,1]],[[0,2,1,0],[1,3,4,2],[2,3,2,1],[1,1,0,1]],[[0,2,1,0],[1,3,3,3],[2,3,2,1],[1,1,0,1]],[[0,2,1,0],[1,3,3,2],[3,3,2,1],[1,1,0,1]],[[0,2,1,0],[1,3,3,2],[2,4,2,1],[1,1,0,1]],[[0,2,1,0],[1,3,3,2],[2,3,2,1],[2,1,0,1]],[[0,3,1,0],[1,3,3,2],[2,3,2,1],[1,1,1,0]],[[0,2,1,0],[1,4,3,2],[2,3,2,1],[1,1,1,0]],[[0,2,1,0],[1,3,4,2],[2,3,2,1],[1,1,1,0]],[[0,2,1,0],[1,3,3,3],[2,3,2,1],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[3,3,2,1],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[2,4,2,1],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[2,3,2,1],[2,1,1,0]],[[0,3,1,0],[1,3,3,2],[2,3,2,1],[1,2,0,0]],[[0,2,1,0],[1,4,3,2],[2,3,2,1],[1,2,0,0]],[[0,2,1,0],[1,3,4,2],[2,3,2,1],[1,2,0,0]],[[0,2,1,0],[1,3,3,3],[2,3,2,1],[1,2,0,0]],[[0,2,1,0],[1,3,3,2],[3,3,2,1],[1,2,0,0]],[[0,2,1,0],[1,3,3,2],[2,4,2,1],[1,2,0,0]],[[0,2,1,0],[1,3,3,2],[2,3,2,1],[2,2,0,0]],[[0,3,1,0],[1,3,3,2],[2,3,2,2],[0,0,1,1]],[[0,2,1,0],[1,4,3,2],[2,3,2,2],[0,0,1,1]],[[0,2,1,0],[1,3,4,2],[2,3,2,2],[0,0,1,1]],[[0,2,1,0],[1,3,3,3],[2,3,2,2],[0,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,2,3],[0,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,2,2],[0,0,1,2]],[[0,3,1,0],[1,3,3,2],[2,3,2,2],[0,0,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,2,2],[0,0,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,2,2],[0,0,2,0]],[[0,2,1,0],[1,3,3,3],[2,3,2,2],[0,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,1],[2,0,2,3],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[3,0,2,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,2],[2,0,2,2],[1,3,3,1],[1,1,1,0]],[[1,2,3,1],[2,0,2,2],[1,3,3,1],[1,1,1,0]],[[1,3,2,1],[2,0,2,2],[1,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,0,2,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,2,3],[1,3,3,1],[1,1,0,1]],[[1,2,2,1],[3,0,2,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,2],[2,0,2,2],[1,3,3,1],[1,1,0,1]],[[1,2,3,1],[2,0,2,2],[1,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,0,2,2],[1,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,0,2,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,1],[2,0,2,3],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[3,0,2,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,2],[2,0,2,2],[1,3,3,1],[1,0,2,0]],[[1,2,3,1],[2,0,2,2],[1,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,0,2,2],[1,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,0,2,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,2,3],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[3,0,2,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,2],[2,0,2,2],[1,3,3,1],[1,0,1,1]],[[1,2,3,1],[2,0,2,2],[1,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,0,2,2],[1,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,0,2,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,2,3],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[3,0,2,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,2],[2,0,2,2],[1,3,3,1],[0,2,1,0]],[[1,2,3,1],[2,0,2,2],[1,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,0,2,2],[1,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,0,2,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,2,3],[1,3,3,1],[0,2,0,1]],[[1,2,2,1],[3,0,2,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,2],[2,0,2,2],[1,3,3,1],[0,2,0,1]],[[1,2,3,1],[2,0,2,2],[1,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,0,2,2],[1,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,0,2,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,2,3],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[3,0,2,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,2],[2,0,2,2],[1,3,3,1],[0,1,2,0]],[[1,2,3,1],[2,0,2,2],[1,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,0,2,2],[1,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,0,2,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,2,3],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[3,0,2,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,2],[2,0,2,2],[1,3,3,1],[0,1,1,1]],[[1,2,3,1],[2,0,2,2],[1,3,3,1],[0,1,1,1]],[[1,3,2,1],[2,0,2,2],[1,3,3,1],[0,1,1,1]],[[2,2,2,1],[2,0,2,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,2,3],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[3,0,2,2],[1,3,3,1],[0,0,2,1]],[[1,2,2,2],[2,0,2,2],[1,3,3,1],[0,0,2,1]],[[1,2,3,1],[2,0,2,2],[1,3,3,1],[0,0,2,1]],[[1,3,2,1],[2,0,2,2],[1,3,3,1],[0,0,2,1]],[[2,2,2,1],[2,0,2,2],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[2,0,2,3],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[3,0,2,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,0,2,2],[1,3,3,0],[1,1,1,1]],[[1,2,3,1],[2,0,2,2],[1,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,0,2,2],[1,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,0,2,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,2,3],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[3,0,2,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,2],[2,0,2,2],[1,3,3,0],[1,0,2,1]],[[1,2,3,1],[2,0,2,2],[1,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,0,2,2],[1,3,3,0],[1,0,2,1]],[[2,2,2,1],[2,0,2,2],[1,3,3,0],[1,0,2,1]],[[0,3,1,0],[1,3,3,2],[2,3,3,0],[0,0,2,1]],[[0,2,1,0],[1,4,3,2],[2,3,3,0],[0,0,2,1]],[[0,2,1,0],[1,3,4,2],[2,3,3,0],[0,0,2,1]],[[0,2,1,0],[1,3,3,3],[2,3,3,0],[0,0,2,1]],[[0,2,1,0],[1,3,3,2],[2,3,4,0],[0,0,2,1]],[[0,3,1,0],[1,3,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,3,0],[0,1,2,0]],[[0,2,1,0],[1,3,3,2],[3,3,3,0],[0,1,2,0]],[[0,2,1,0],[1,3,3,2],[2,4,3,0],[0,1,2,0]],[[0,3,1,0],[1,3,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,1,0],[1,4,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,1,0],[1,3,4,2],[2,3,3,0],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[3,3,3,0],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,4,3,0],[0,2,1,0]],[[0,2,1,0],[1,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,1],[2,0,2,3],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[3,0,2,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,2],[2,0,2,2],[1,3,3,0],[0,2,1,1]],[[1,2,3,1],[2,0,2,2],[1,3,3,0],[0,2,1,1]],[[1,3,2,1],[2,0,2,2],[1,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,0,2,2],[1,3,3,0],[0,2,1,1]],[[0,3,1,0],[1,3,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,3,0],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[3,3,3,0],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,4,3,0],[1,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,3,0],[2,0,2,0]],[[0,3,1,0],[1,3,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,1,0],[1,4,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,1,0],[1,3,4,2],[2,3,3,0],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[3,3,3,0],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[2,4,3,0],[1,1,1,0]],[[0,2,1,0],[1,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[2,0,2,3],[1,3,3,0],[0,1,2,1]],[[1,2,2,1],[3,0,2,2],[1,3,3,0],[0,1,2,1]],[[1,2,2,2],[2,0,2,2],[1,3,3,0],[0,1,2,1]],[[1,2,3,1],[2,0,2,2],[1,3,3,0],[0,1,2,1]],[[1,3,2,1],[2,0,2,2],[1,3,3,0],[0,1,2,1]],[[2,2,2,1],[2,0,2,2],[1,3,3,0],[0,1,2,1]],[[0,3,1,0],[1,3,3,2],[2,3,3,0],[1,2,0,0]],[[0,2,1,0],[1,4,3,2],[2,3,3,0],[1,2,0,0]],[[0,2,1,0],[1,3,4,2],[2,3,3,0],[1,2,0,0]],[[0,2,1,0],[1,3,3,2],[3,3,3,0],[1,2,0,0]],[[0,2,1,0],[1,3,3,2],[2,4,3,0],[1,2,0,0]],[[0,2,1,0],[1,3,3,2],[2,3,3,0],[2,2,0,0]],[[0,3,1,0],[1,3,3,2],[2,3,3,1],[0,0,1,1]],[[0,2,1,0],[1,4,3,2],[2,3,3,1],[0,0,1,1]],[[0,2,1,0],[1,3,4,2],[2,3,3,1],[0,0,1,1]],[[0,2,1,0],[1,3,3,3],[2,3,3,1],[0,0,1,1]],[[0,2,1,0],[1,3,3,2],[2,3,4,1],[0,0,1,1]],[[0,3,1,0],[1,3,3,2],[2,3,3,1],[0,0,2,0]],[[0,2,1,0],[1,4,3,2],[2,3,3,1],[0,0,2,0]],[[0,2,1,0],[1,3,4,2],[2,3,3,1],[0,0,2,0]],[[0,2,1,0],[1,3,3,3],[2,3,3,1],[0,0,2,0]],[[0,2,1,0],[1,3,3,2],[2,3,4,1],[0,0,2,0]],[[1,2,2,1],[2,0,2,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,0,2,3],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[3,0,2,2],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,0,2,2],[1,3,2,2],[1,1,1,0]],[[0,3,1,0],[1,3,3,2],[2,3,3,1],[0,2,0,0]],[[0,2,1,0],[1,4,3,2],[2,3,3,1],[0,2,0,0]],[[0,2,1,0],[1,3,4,2],[2,3,3,1],[0,2,0,0]],[[0,2,1,0],[1,3,3,3],[2,3,3,1],[0,2,0,0]],[[0,2,1,0],[1,3,3,2],[3,3,3,1],[0,2,0,0]],[[0,2,1,0],[1,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,3,1],[2,0,2,2],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,0,2,2],[1,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,0,2,2],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,2,2],[1,3,2,2],[1,1,0,2]],[[1,2,2,1],[2,0,2,2],[1,3,2,3],[1,1,0,1]],[[1,2,2,1],[2,0,2,3],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[3,0,2,2],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,0,2,2],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,0,2,2],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,0,2,2],[1,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,0,2,2],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,2,2],[1,3,2,3],[1,0,2,0]],[[1,2,2,1],[2,0,2,3],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[3,0,2,2],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,0,2,2],[1,3,2,2],[1,0,2,0]],[[1,2,3,1],[2,0,2,2],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,0,2,2],[1,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,0,2,2],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,2,2],[1,3,2,2],[1,0,1,2]],[[1,2,2,1],[2,0,2,2],[1,3,2,3],[1,0,1,1]],[[1,2,2,1],[2,0,2,3],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[3,0,2,2],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,0,2,2],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[2,0,2,2],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,0,2,2],[1,3,2,2],[1,0,1,1]],[[2,2,2,1],[2,0,2,2],[1,3,2,2],[1,0,1,1]],[[0,3,1,0],[1,3,3,2],[2,3,3,1],[1,1,0,0]],[[0,2,1,0],[1,4,3,2],[2,3,3,1],[1,1,0,0]],[[0,2,1,0],[1,3,4,2],[2,3,3,1],[1,1,0,0]],[[0,2,1,0],[1,3,3,3],[2,3,3,1],[1,1,0,0]],[[0,2,1,0],[1,3,3,2],[3,3,3,1],[1,1,0,0]],[[0,2,1,0],[1,3,3,2],[2,4,3,1],[1,1,0,0]],[[0,2,1,0],[1,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[2,0,2,2],[1,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,0,2,3],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[3,0,2,2],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,0,2,2],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,0,2,2],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,0,2,2],[1,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,0,2,2],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,2,2],[1,3,2,2],[0,2,0,2]],[[1,2,2,1],[2,0,2,2],[1,3,2,3],[0,2,0,1]],[[1,2,2,1],[2,0,2,3],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[3,0,2,2],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,0,2,2],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[2,0,2,2],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,0,2,2],[1,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,0,2,2],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,2,2],[1,3,2,3],[0,1,2,0]],[[1,2,2,1],[2,0,2,3],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[3,0,2,2],[1,3,2,2],[0,1,2,0]],[[1,2,2,2],[2,0,2,2],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,0,2,2],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,0,2,2],[1,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,0,2,2],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,2,2],[1,3,2,2],[0,1,1,2]],[[1,2,2,1],[2,0,2,2],[1,3,2,3],[0,1,1,1]],[[1,2,2,1],[2,0,2,3],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,0,2,2],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,0,2,2],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,0,2,2],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,0,2,2],[1,3,2,2],[0,1,1,1]],[[2,2,2,1],[2,0,2,2],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,2,2],[1,3,2,2],[0,0,2,2]],[[1,2,2,1],[2,0,2,2],[1,3,2,3],[0,0,2,1]],[[1,2,2,1],[2,0,2,3],[1,3,2,2],[0,0,2,1]],[[1,2,2,1],[3,0,2,2],[1,3,2,2],[0,0,2,1]],[[1,2,2,2],[2,0,2,2],[1,3,2,2],[0,0,2,1]],[[1,2,3,1],[2,0,2,2],[1,3,2,2],[0,0,2,1]],[[1,3,2,1],[2,0,2,2],[1,3,2,2],[0,0,2,1]],[[2,2,2,1],[2,0,2,2],[1,3,2,2],[0,0,2,1]],[[1,2,2,1],[2,0,2,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[1,3,2,1],[2,2,1,0]],[[1,2,2,1],[2,0,2,2],[1,4,2,1],[1,2,1,0]],[[1,2,2,1],[2,0,2,2],[1,3,2,1],[1,3,0,1]],[[1,2,2,1],[2,0,2,2],[1,3,2,1],[2,2,0,1]],[[0,3,1,0],[1,3,3,2],[2,3,3,2],[0,0,0,1]],[[0,2,1,0],[1,4,3,2],[2,3,3,2],[0,0,0,1]],[[0,2,1,0],[1,3,4,2],[2,3,3,2],[0,0,0,1]],[[0,2,1,0],[1,3,3,3],[2,3,3,2],[0,0,0,1]],[[0,2,1,0],[1,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,1],[2,0,2,2],[1,4,2,1],[1,2,0,1]],[[1,2,2,1],[2,0,2,2],[1,3,2,0],[1,3,1,1]],[[1,2,2,1],[2,0,2,2],[1,3,2,0],[2,2,1,1]],[[1,2,2,1],[2,0,2,2],[1,4,2,0],[1,2,1,1]],[[1,2,2,1],[2,0,2,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[1,3,1,2],[2,2,1,0]],[[1,2,2,1],[2,0,2,2],[1,4,1,2],[1,2,1,0]],[[1,2,2,1],[2,0,2,2],[1,3,1,2],[1,3,0,1]],[[1,2,2,1],[2,0,2,2],[1,3,1,2],[2,2,0,1]],[[1,2,2,1],[2,0,2,2],[1,4,1,2],[1,2,0,1]],[[1,2,2,1],[2,0,2,2],[1,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,0,2,2],[1,3,1,2],[1,0,3,1]],[[1,2,2,1],[2,0,2,2],[1,3,1,3],[1,0,2,1]],[[1,2,2,1],[2,0,2,3],[1,3,1,2],[1,0,2,1]],[[1,2,2,1],[3,0,2,2],[1,3,1,2],[1,0,2,1]],[[1,2,2,2],[2,0,2,2],[1,3,1,2],[1,0,2,1]],[[1,2,3,1],[2,0,2,2],[1,3,1,2],[1,0,2,1]],[[1,3,2,1],[2,0,2,2],[1,3,1,2],[1,0,2,1]],[[2,2,2,1],[2,0,2,2],[1,3,1,2],[1,0,2,1]],[[1,2,2,1],[2,0,2,2],[1,3,1,2],[0,1,2,2]],[[1,2,2,1],[2,0,2,2],[1,3,1,2],[0,1,3,1]],[[1,2,2,1],[2,0,2,2],[1,3,1,3],[0,1,2,1]],[[1,2,2,1],[2,0,2,3],[1,3,1,2],[0,1,2,1]],[[1,2,2,1],[3,0,2,2],[1,3,1,2],[0,1,2,1]],[[1,2,2,2],[2,0,2,2],[1,3,1,2],[0,1,2,1]],[[1,2,3,1],[2,0,2,2],[1,3,1,2],[0,1,2,1]],[[1,3,2,1],[2,0,2,2],[1,3,1,2],[0,1,2,1]],[[2,2,2,1],[2,0,2,2],[1,3,1,2],[0,1,2,1]],[[1,2,2,1],[2,0,2,2],[1,3,1,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,2],[1,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,0,2,2],[1,3,1,1],[2,2,2,0]],[[1,2,2,1],[2,0,2,2],[1,4,1,1],[1,2,2,0]],[[1,2,2,1],[2,0,2,2],[1,3,1,0],[1,2,2,2]],[[1,2,2,1],[2,0,2,2],[1,3,1,0],[1,2,3,1]],[[1,2,2,1],[2,0,2,2],[1,3,1,0],[1,3,2,1]],[[1,2,2,1],[2,0,2,2],[1,3,1,0],[2,2,2,1]],[[1,2,2,1],[2,0,2,2],[1,4,1,0],[1,2,2,1]],[[1,2,2,1],[2,0,2,2],[1,3,0,2],[1,2,3,0]],[[1,2,2,1],[2,0,2,2],[1,3,0,2],[1,3,2,0]],[[1,2,2,1],[2,0,2,2],[1,3,0,2],[2,2,2,0]],[[1,2,2,1],[2,0,2,2],[1,4,0,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,2],[1,3,0,2],[1,3,1,1]],[[1,2,2,1],[2,0,2,2],[1,3,0,2],[2,2,1,1]],[[1,2,2,1],[2,0,2,2],[1,4,0,2],[1,2,1,1]],[[1,2,2,1],[2,0,2,2],[1,3,0,2],[0,2,2,2]],[[1,2,2,1],[2,0,2,2],[1,3,0,2],[0,2,3,1]],[[1,2,2,1],[2,0,2,2],[1,3,0,2],[0,3,2,1]],[[1,2,2,1],[2,0,2,2],[1,3,0,3],[0,2,2,1]],[[1,2,2,1],[2,0,2,2],[1,4,0,2],[0,2,2,1]],[[1,2,2,1],[2,0,2,3],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,0,2,2],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,0,2,2],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,0,2,2],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,0,2,2],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,0,2,2],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[2,0,2,2],[1,3,0,1],[1,2,2,2]],[[1,2,2,1],[2,0,2,2],[1,3,0,1],[1,2,3,1]],[[1,2,2,1],[2,0,2,2],[1,3,0,1],[1,3,2,1]],[[1,2,2,1],[2,0,2,2],[1,3,0,1],[2,2,2,1]],[[1,2,2,1],[2,0,2,2],[1,4,0,1],[1,2,2,1]],[[1,2,2,1],[2,0,2,3],[1,2,3,1],[0,2,2,0]],[[1,2,2,1],[3,0,2,2],[1,2,3,1],[0,2,2,0]],[[1,2,2,2],[2,0,2,2],[1,2,3,1],[0,2,2,0]],[[1,2,3,1],[2,0,2,2],[1,2,3,1],[0,2,2,0]],[[1,3,2,1],[2,0,2,2],[1,2,3,1],[0,2,2,0]],[[2,2,2,1],[2,0,2,2],[1,2,3,1],[0,2,2,0]],[[1,2,2,1],[2,0,2,3],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[3,0,2,2],[1,2,3,1],[0,2,1,1]],[[1,2,2,2],[2,0,2,2],[1,2,3,1],[0,2,1,1]],[[1,2,3,1],[2,0,2,2],[1,2,3,1],[0,2,1,1]],[[1,3,2,1],[2,0,2,2],[1,2,3,1],[0,2,1,1]],[[2,2,2,1],[2,0,2,2],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,2,3],[1,2,3,0],[0,2,2,1]],[[1,2,2,1],[3,0,2,2],[1,2,3,0],[0,2,2,1]],[[1,2,2,2],[2,0,2,2],[1,2,3,0],[0,2,2,1]],[[1,2,3,1],[2,0,2,2],[1,2,3,0],[0,2,2,1]],[[1,3,2,1],[2,0,2,2],[1,2,3,0],[0,2,2,1]],[[2,2,2,1],[2,0,2,2],[1,2,3,0],[0,2,2,1]],[[1,2,2,1],[2,0,2,2],[1,2,2,3],[0,2,2,0]],[[1,2,2,1],[2,0,2,3],[1,2,2,2],[0,2,2,0]],[[1,2,2,1],[3,0,2,2],[1,2,2,2],[0,2,2,0]],[[1,2,2,2],[2,0,2,2],[1,2,2,2],[0,2,2,0]],[[1,2,3,1],[2,0,2,2],[1,2,2,2],[0,2,2,0]],[[1,3,2,1],[2,0,2,2],[1,2,2,2],[0,2,2,0]],[[2,2,2,1],[2,0,2,2],[1,2,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,2,2],[1,2,2,2],[0,2,1,2]],[[1,2,2,1],[2,0,2,2],[1,2,2,3],[0,2,1,1]],[[1,2,2,1],[2,0,2,3],[1,2,2,2],[0,2,1,1]],[[1,2,2,1],[3,0,2,2],[1,2,2,2],[0,2,1,1]],[[1,2,2,2],[2,0,2,2],[1,2,2,2],[0,2,1,1]],[[1,2,3,1],[2,0,2,2],[1,2,2,2],[0,2,1,1]],[[1,3,2,1],[2,0,2,2],[1,2,2,2],[0,2,1,1]],[[2,2,2,1],[2,0,2,2],[1,2,2,2],[0,2,1,1]],[[0,2,1,0],[2,0,1,1],[3,3,3,2],[1,2,2,1]],[[0,2,1,0],[2,0,1,1],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,0,1,1],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,0,1,1],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,0,1,1],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[2,0,1,2],[1,3,3,3],[1,2,2,1]],[[0,2,1,0],[2,0,1,2],[1,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,0,1,2],[1,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,0,1,2],[1,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,0,1,2],[1,3,3,2],[1,2,2,2]],[[0,2,1,0],[2,0,1,2],[3,2,3,2],[1,2,2,1]],[[0,2,1,0],[2,0,1,2],[2,2,3,3],[1,2,2,1]],[[0,2,1,0],[2,0,1,2],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,0,1,2],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,0,1,2],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,0,1,2],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,0,1,2],[3,3,2,2],[1,2,2,1]],[[0,2,1,0],[2,0,1,2],[2,3,2,3],[1,2,2,1]],[[0,2,1,0],[2,0,1,2],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,0,1,2],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,0,1,2],[2,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,0,1,2],[2,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,0,1,2],[3,3,3,1],[1,2,2,1]],[[0,2,1,0],[2,0,1,2],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,0,1,2],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,0,1,2],[2,3,3,1],[1,2,3,1]],[[0,2,1,0],[2,0,1,2],[2,3,3,1],[1,2,2,2]],[[0,2,1,0],[2,0,1,2],[2,3,3,3],[0,2,2,1]],[[0,2,1,0],[2,0,1,2],[2,3,3,2],[0,3,2,1]],[[0,2,1,0],[2,0,1,2],[2,3,3,2],[0,2,3,1]],[[0,2,1,0],[2,0,1,2],[2,3,3,2],[0,2,2,2]],[[0,2,1,0],[2,0,1,2],[3,3,3,2],[1,2,2,0]],[[0,2,1,0],[2,0,1,2],[2,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,0,1,2],[2,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,0,1,2],[2,3,3,2],[1,2,3,0]],[[0,2,1,0],[2,0,2,0],[3,3,3,2],[1,2,2,1]],[[0,2,1,0],[2,0,2,0],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,0,2,0],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,0,2,0],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,0,2,0],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[2,0,2,1],[3,3,3,1],[1,2,2,1]],[[0,2,1,0],[2,0,2,1],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,0,2,1],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,0,2,1],[2,3,3,1],[1,2,3,1]],[[0,2,1,0],[2,0,2,1],[2,3,3,1],[1,2,2,2]],[[0,2,1,0],[2,0,2,1],[3,3,3,2],[1,2,2,0]],[[0,2,1,0],[2,0,2,1],[2,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,0,2,1],[2,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,0,2,1],[2,3,3,2],[1,2,3,0]],[[0,2,1,0],[2,0,2,2],[1,3,2,3],[1,2,2,1]],[[0,2,1,0],[2,0,2,2],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,0,2,2],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,0,2,2],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,0,2,2],[1,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,0,2,2],[1,3,4,1],[1,2,2,1]],[[0,2,1,0],[2,0,2,2],[1,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,0,2,2],[1,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,0,2,2],[1,3,3,1],[1,2,3,1]],[[0,2,1,0],[2,0,2,2],[1,3,3,1],[1,2,2,2]],[[0,2,1,0],[2,0,2,2],[1,3,4,2],[1,2,1,1]],[[0,2,1,0],[2,0,2,2],[1,3,3,3],[1,2,1,1]],[[0,2,1,0],[2,0,2,2],[1,3,3,2],[1,2,1,2]],[[0,2,1,0],[2,0,2,2],[1,3,4,2],[1,2,2,0]],[[0,2,1,0],[2,0,2,2],[1,3,3,3],[1,2,2,0]],[[0,2,1,0],[2,0,2,2],[1,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,0,2,2],[1,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,0,2,2],[1,3,3,2],[1,2,3,0]],[[0,2,1,0],[2,0,2,2],[3,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,2,2,3],[1,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,0,2,2],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,0,2,2],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,0,2,2],[3,2,3,1],[1,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,0,2,2],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,0,2,2],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,0,2,2],[2,2,4,2],[1,2,1,1]],[[0,2,1,0],[2,0,2,2],[2,2,3,3],[1,2,1,1]],[[0,2,1,0],[2,0,2,2],[2,2,3,2],[1,2,1,2]],[[0,2,1,0],[2,0,2,2],[3,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,0,2,2],[2,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,0,2,2],[2,2,3,3],[1,2,2,0]],[[0,2,1,0],[2,0,2,2],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,0,2,2],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,0,2,2],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[2,0,2,2],[3,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,0,2,2],[2,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,0,2,2],[2,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,0,2,2],[3,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,0,2,2],[2,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,0,2,2],[2,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,0,2,2],[2,3,2,3],[0,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[2,0,2,2],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[2,0,2,2],[2,3,2,2],[0,2,2,2]],[[0,2,1,0],[2,0,2,2],[3,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,0,2,2],[2,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,0,2,2],[2,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,0,2,2],[2,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,0,2,2],[2,3,4,1],[0,2,2,1]],[[0,2,1,0],[2,0,2,2],[2,3,3,1],[0,3,2,1]],[[0,2,1,0],[2,0,2,2],[2,3,3,1],[0,2,3,1]],[[0,2,1,0],[2,0,2,2],[2,3,3,1],[0,2,2,2]],[[0,2,1,0],[2,0,2,2],[3,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,0,2,2],[2,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,0,2,2],[2,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,0,2,2],[2,3,4,2],[0,2,1,1]],[[0,2,1,0],[2,0,2,2],[2,3,3,3],[0,2,1,1]],[[0,2,1,0],[2,0,2,2],[2,3,3,2],[0,2,1,2]],[[0,2,1,0],[2,0,2,2],[2,3,4,2],[0,2,2,0]],[[0,2,1,0],[2,0,2,2],[2,3,3,3],[0,2,2,0]],[[0,2,1,0],[2,0,2,2],[2,3,3,2],[0,3,2,0]],[[0,2,1,0],[2,0,2,2],[2,3,3,2],[0,2,3,0]],[[0,2,1,0],[2,0,2,2],[3,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,0,2,2],[2,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,0,2,2],[2,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,0,2,2],[3,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,0,2,2],[2,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,0,2,2],[2,3,3,2],[1,3,1,0]],[[0,2,1,0],[2,0,3,0],[1,3,4,2],[1,2,2,1]],[[0,2,1,0],[2,0,3,0],[1,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,0,3,0],[1,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,0,3,0],[1,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,0,3,0],[1,3,3,2],[1,2,2,2]],[[0,2,1,0],[2,0,3,0],[3,2,3,2],[1,2,2,1]],[[0,2,1,0],[2,0,3,0],[2,2,4,2],[1,2,2,1]],[[0,2,1,0],[2,0,3,0],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,0,3,0],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,0,3,0],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,0,3,0],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,0,3,0],[3,3,2,2],[1,2,2,1]],[[0,2,1,0],[2,0,3,0],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,0,3,0],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,0,3,0],[2,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,0,3,0],[2,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,0,3,0],[2,3,4,2],[0,2,2,1]],[[0,2,1,0],[2,0,3,0],[2,3,3,2],[0,3,2,1]],[[0,2,1,0],[2,0,3,0],[2,3,3,2],[0,2,3,1]],[[0,2,1,0],[2,0,3,0],[2,3,3,2],[0,2,2,2]],[[0,2,1,0],[2,0,3,0],[3,3,3,2],[1,2,1,1]],[[0,2,1,0],[2,0,3,0],[2,3,3,2],[2,2,1,1]],[[0,2,1,0],[2,0,3,0],[2,3,3,2],[1,3,1,1]],[[0,2,1,0],[2,0,3,1],[1,3,2,3],[1,2,2,1]],[[0,2,1,0],[2,0,3,1],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,0,3,1],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,0,3,1],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,0,3,1],[1,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,0,3,1],[1,3,4,1],[1,2,2,1]],[[0,2,1,0],[2,0,3,1],[1,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,0,3,1],[1,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,0,3,1],[1,3,3,1],[1,2,3,1]],[[0,2,1,0],[2,0,3,1],[1,3,3,1],[1,2,2,2]],[[0,2,1,0],[2,0,3,1],[1,3,4,2],[1,2,1,1]],[[0,2,1,0],[2,0,3,1],[1,3,3,3],[1,2,1,1]],[[0,2,1,0],[2,0,3,1],[1,3,3,2],[1,2,1,2]],[[0,2,1,0],[2,0,3,1],[1,3,4,2],[1,2,2,0]],[[0,2,1,0],[2,0,3,1],[1,3,3,3],[1,2,2,0]],[[0,2,1,0],[2,0,3,1],[1,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,0,3,1],[1,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,0,3,1],[1,3,3,2],[1,2,3,0]],[[0,2,1,0],[2,0,3,1],[3,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,2,2,3],[1,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,0,3,1],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,0,3,1],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,0,3,1],[3,2,3,1],[1,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,0,3,1],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,0,3,1],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,0,3,1],[2,2,4,2],[1,2,1,1]],[[0,2,1,0],[2,0,3,1],[2,2,3,3],[1,2,1,1]],[[0,2,1,0],[2,0,3,1],[2,2,3,2],[1,2,1,2]],[[0,2,1,0],[2,0,3,1],[3,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,0,3,1],[2,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,0,3,1],[2,2,3,3],[1,2,2,0]],[[0,2,1,0],[2,0,3,1],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,0,3,1],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,0,3,1],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[2,0,3,1],[3,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,0,3,1],[2,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,0,3,1],[3,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,0,3,1],[2,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,0,3,1],[2,3,2,3],[0,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[2,0,3,1],[2,3,2,2],[0,2,2,2]],[[0,2,1,0],[2,0,3,1],[3,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,0,3,1],[2,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,0,3,1],[2,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,0,3,1],[2,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,0,3,1],[3,3,3,0],[1,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,0],[1,2,3,1]],[[0,2,1,0],[2,0,3,1],[2,3,4,1],[0,2,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,1],[0,3,2,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,1],[0,2,3,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,1],[0,2,2,2]],[[0,2,1,0],[2,0,3,1],[3,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,0,3,1],[2,3,4,2],[0,2,1,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,3],[0,2,1,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,2],[0,2,1,2]],[[0,2,1,0],[2,0,3,1],[2,3,4,2],[0,2,2,0]],[[0,2,1,0],[2,0,3,1],[2,3,3,3],[0,2,2,0]],[[0,2,1,0],[2,0,3,1],[2,3,3,2],[0,3,2,0]],[[0,2,1,0],[2,0,3,1],[2,3,3,2],[0,2,3,0]],[[0,2,1,0],[2,0,3,1],[3,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,0,3,1],[2,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,0,3,1],[3,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,0,3,1],[2,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,0,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[1,2,1,2],[0,2,2,2]],[[1,2,2,1],[2,0,2,2],[1,2,1,2],[0,2,3,1]],[[1,2,2,1],[2,0,2,2],[1,2,1,2],[0,3,2,1]],[[1,2,2,1],[2,0,2,2],[1,2,1,3],[0,2,2,1]],[[0,2,1,0],[2,0,3,2],[1,3,4,0],[1,2,2,1]],[[0,2,1,0],[2,0,3,2],[1,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,0,3,2],[1,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,0,3,2],[1,3,3,0],[1,2,3,1]],[[0,2,1,0],[2,0,3,2],[1,3,3,0],[1,2,2,2]],[[0,2,1,0],[2,0,3,2],[1,3,4,1],[1,2,2,0]],[[0,2,1,0],[2,0,3,2],[1,3,3,1],[2,2,2,0]],[[0,2,1,0],[2,0,3,2],[1,3,3,1],[1,3,2,0]],[[0,2,1,0],[2,0,3,2],[1,3,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,3],[1,2,1,2],[0,2,2,1]],[[1,2,2,1],[3,0,2,2],[1,2,1,2],[0,2,2,1]],[[1,2,2,2],[2,0,2,2],[1,2,1,2],[0,2,2,1]],[[1,2,3,1],[2,0,2,2],[1,2,1,2],[0,2,2,1]],[[1,3,2,1],[2,0,2,2],[1,2,1,2],[0,2,2,1]],[[2,2,2,1],[2,0,2,2],[1,2,1,2],[0,2,2,1]],[[0,2,1,0],[2,0,3,2],[3,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,0,3,2],[2,2,4,0],[1,2,2,1]],[[0,2,1,0],[2,0,3,2],[2,2,3,0],[2,2,2,1]],[[0,2,1,0],[2,0,3,2],[2,2,3,0],[1,3,2,1]],[[0,2,1,0],[2,0,3,2],[2,2,3,0],[1,2,3,1]],[[0,2,1,0],[2,0,3,2],[2,2,3,0],[1,2,2,2]],[[0,2,1,0],[2,0,3,2],[3,2,3,1],[1,2,2,0]],[[0,2,1,0],[2,0,3,2],[2,2,4,1],[1,2,2,0]],[[0,2,1,0],[2,0,3,2],[2,2,3,1],[2,2,2,0]],[[0,2,1,0],[2,0,3,2],[2,2,3,1],[1,3,2,0]],[[0,2,1,0],[2,0,3,2],[2,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,2],[1,2,0,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,2],[1,2,0,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,2],[1,2,0,2],[1,3,2,1]],[[1,2,2,1],[2,0,2,2],[1,2,0,2],[2,2,2,1]],[[1,2,2,1],[2,0,2,2],[1,2,0,3],[1,2,2,1]],[[1,2,2,1],[2,0,2,3],[1,2,0,2],[1,2,2,1]],[[1,2,2,1],[3,0,2,2],[1,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,0,3,2],[3,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,0,3,2],[2,3,0,3],[1,2,2,1]],[[0,2,1,0],[2,0,3,2],[2,3,0,2],[2,2,2,1]],[[0,2,1,0],[2,0,3,2],[2,3,0,2],[1,3,2,1]],[[0,2,1,0],[2,0,3,2],[2,3,0,2],[1,2,3,1]],[[0,2,1,0],[2,0,3,2],[2,3,0,2],[1,2,2,2]],[[0,2,1,0],[2,0,3,2],[3,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,0,3,2],[2,3,2,0],[2,2,2,1]],[[0,2,1,0],[2,0,3,2],[2,3,2,0],[1,3,2,1]],[[0,2,1,0],[2,0,3,2],[2,3,2,0],[1,2,3,1]],[[0,2,1,0],[2,0,3,2],[2,3,2,0],[1,2,2,2]],[[0,2,1,0],[2,0,3,2],[3,3,2,1],[1,2,2,0]],[[0,2,1,0],[2,0,3,2],[2,3,2,1],[2,2,2,0]],[[0,2,1,0],[2,0,3,2],[2,3,2,1],[1,3,2,0]],[[0,2,1,0],[2,0,3,2],[2,3,2,1],[1,2,3,0]],[[1,2,2,2],[2,0,2,2],[1,2,0,2],[1,2,2,1]],[[1,2,3,1],[2,0,2,2],[1,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,0,2,2],[1,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,0,2,2],[1,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,0,3,2],[2,3,4,0],[0,2,2,1]],[[0,2,1,0],[2,0,3,2],[2,3,3,0],[0,3,2,1]],[[0,2,1,0],[2,0,3,2],[2,3,3,0],[0,2,3,1]],[[0,2,1,0],[2,0,3,2],[2,3,3,0],[0,2,2,2]],[[0,2,1,0],[2,0,3,2],[3,3,3,0],[1,2,1,1]],[[0,2,1,0],[2,0,3,2],[2,3,3,0],[2,2,1,1]],[[0,2,1,0],[2,0,3,2],[2,3,3,0],[1,3,1,1]],[[0,2,1,0],[2,0,3,2],[2,3,4,1],[0,2,2,0]],[[0,2,1,0],[2,0,3,2],[2,3,3,1],[0,3,2,0]],[[0,2,1,0],[2,0,3,2],[2,3,3,1],[0,2,3,0]],[[0,2,1,0],[2,0,3,2],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,0,3,2],[2,3,3,1],[2,2,0,1]],[[0,2,1,0],[2,0,3,2],[2,3,3,1],[1,3,0,1]],[[0,2,1,0],[2,0,3,2],[3,3,3,1],[1,2,1,0]],[[0,2,1,0],[2,0,3,2],[2,3,3,1],[2,2,1,0]],[[0,2,1,0],[2,0,3,2],[2,3,3,1],[1,3,1,0]],[[0,2,1,0],[2,1,0,1],[3,3,3,2],[1,2,2,1]],[[0,2,1,0],[2,1,0,1],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,1,0,1],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,1,0,1],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,0,1],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[2,1,0,2],[1,3,3,3],[1,2,2,1]],[[0,2,1,0],[2,1,0,2],[1,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,1,0,2],[1,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,1,0,2],[1,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,0,2],[1,3,3,2],[1,2,2,2]],[[0,2,1,0],[2,1,0,2],[3,2,3,2],[1,2,2,1]],[[0,2,1,0],[2,1,0,2],[2,2,3,3],[1,2,2,1]],[[0,2,1,0],[2,1,0,2],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,1,0,2],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,1,0,2],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,0,2],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,1,0,2],[3,3,2,2],[1,2,2,1]],[[0,2,1,0],[2,1,0,2],[2,3,2,3],[1,2,2,1]],[[0,2,1,0],[2,1,0,2],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,1,0,2],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,1,0,2],[2,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,1,0,2],[2,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,1,0,2],[3,3,3,1],[1,2,2,1]],[[0,2,1,0],[2,1,0,2],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,1,0,2],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,1,0,2],[2,3,3,1],[1,2,3,1]],[[0,2,1,0],[2,1,0,2],[2,3,3,1],[1,2,2,2]],[[0,2,1,0],[2,1,0,2],[2,3,3,3],[0,2,2,1]],[[0,2,1,0],[2,1,0,2],[2,3,3,2],[0,3,2,1]],[[0,2,1,0],[2,1,0,2],[2,3,3,2],[0,2,3,1]],[[0,2,1,0],[2,1,0,2],[2,3,3,2],[0,2,2,2]],[[0,2,1,0],[2,1,0,2],[3,3,3,2],[1,2,2,0]],[[0,2,1,0],[2,1,0,2],[2,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,1,0,2],[2,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,1,0,2],[2,3,3,2],[1,2,3,0]],[[0,2,1,0],[2,1,1,0],[3,3,3,2],[1,2,2,1]],[[0,2,1,0],[2,1,1,0],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,1,1,0],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,1,1,0],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,1,0],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[2,1,1,1],[3,3,3,1],[1,2,2,1]],[[0,2,1,0],[2,1,1,1],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,1,1,1],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,1,1,1],[2,3,3,1],[1,2,3,1]],[[0,2,1,0],[2,1,1,1],[2,3,3,1],[1,2,2,2]],[[0,2,1,0],[2,1,1,1],[3,3,3,2],[1,2,2,0]],[[0,2,1,0],[2,1,1,1],[2,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,1,1,1],[2,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,1,1,1],[2,3,3,2],[1,2,3,0]],[[0,2,1,0],[2,1,1,2],[1,2,3,3],[1,2,2,1]],[[0,2,1,0],[2,1,1,2],[1,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,1,1,2],[1,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,1,1,2],[1,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,1,2],[1,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,1,1,2],[1,3,3,3],[1,1,2,1]],[[0,2,1,0],[2,1,1,2],[1,3,3,2],[1,1,3,1]],[[0,2,1,0],[2,1,1,2],[1,3,3,2],[1,1,2,2]],[[0,2,1,0],[2,1,1,2],[3,1,3,2],[1,2,2,1]],[[0,2,1,0],[2,1,1,2],[2,1,3,3],[1,2,2,1]],[[0,2,1,0],[2,1,1,2],[2,1,3,2],[2,2,2,1]],[[0,2,1,0],[2,1,1,2],[2,1,3,2],[1,3,2,1]],[[0,2,1,0],[2,1,1,2],[2,1,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,1,2],[2,1,3,2],[1,2,2,2]],[[0,2,1,0],[2,1,1,2],[2,2,3,3],[0,2,2,1]],[[0,2,1,0],[2,1,1,2],[2,2,3,2],[0,3,2,1]],[[0,2,1,0],[2,1,1,2],[2,2,3,2],[0,2,3,1]],[[0,2,1,0],[2,1,1,2],[2,2,3,2],[0,2,2,2]],[[0,2,1,0],[2,1,1,2],[3,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,1,2],[2,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,1,1,2],[2,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,1,1,2],[2,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,1,1,2],[2,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,1,1,2],[2,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,1,1,2],[3,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,1,1,2],[2,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,1,1,2],[2,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,1,1,2],[2,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,1,1,2],[2,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,1,1,2],[3,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,1,2],[2,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,1,1,2],[2,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,1,1,2],[2,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,1,1,2],[3,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,1,2],[2,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,1,1,2],[2,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,1,1,2],[2,3,3,3],[0,1,2,1]],[[0,2,1,0],[2,1,1,2],[2,3,3,2],[0,1,3,1]],[[0,2,1,0],[2,1,1,2],[2,3,3,2],[0,1,2,2]],[[0,2,1,0],[2,1,1,2],[2,3,3,3],[1,0,2,1]],[[0,2,1,0],[2,1,1,2],[2,3,3,2],[1,0,3,1]],[[0,2,1,0],[2,1,1,2],[2,3,3,2],[1,0,2,2]],[[0,2,1,0],[2,1,1,2],[3,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,1,1,2],[2,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,1,1,2],[2,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,1,1,2],[3,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,1,1,2],[2,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,1,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,3],[1,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,1,2,0],[3,3,2,2],[1,2,2,1]],[[0,2,1,0],[2,1,2,0],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,1,2,0],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,1,2,0],[2,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,1,2,0],[2,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,1,2,0],[3,3,3,2],[1,2,1,1]],[[0,2,1,0],[2,1,2,0],[2,3,3,2],[2,2,1,1]],[[0,2,1,0],[2,1,2,0],[2,3,3,2],[1,3,1,1]],[[0,2,1,0],[2,1,2,1],[3,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,2,1],[2,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,1,2,1],[2,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,1,2,1],[2,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,1,2,1],[2,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,1,2,1],[3,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,1,2,1],[2,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,1,2,1],[2,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,1,2,1],[2,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,1,2,1],[2,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,1,2,1],[3,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,2,1],[2,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,1,2,1],[2,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,1,2,1],[2,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,1,2,1],[3,3,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,2,1],[2,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,1,2,1],[2,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,1,2,1],[2,3,3,0],[1,2,3,1]],[[0,2,1,0],[2,1,2,1],[3,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,2,1],[2,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,1,2,1],[2,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,1,2,1],[3,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,1,2,1],[2,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,1,2,1],[2,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,1,2,1],[3,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,1,2,1],[2,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,1,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[3,0,2,2],[1,1,3,1],[1,2,2,0]],[[1,2,2,2],[2,0,2,2],[1,1,3,1],[1,2,2,0]],[[1,2,3,1],[2,0,2,2],[1,1,3,1],[1,2,2,0]],[[1,3,2,1],[2,0,2,2],[1,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,0,2,2],[1,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[1,1,3,3],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,1,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,2,2],[1,1,3,2],[1,2,2,2]],[[0,2,1,0],[2,1,2,3],[1,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,2,2,3],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,1,2,2],[1,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,1,2,2],[1,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,1,2,2],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,1,2,2],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,1,2,2],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,1,2,3],[1,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,1,2,2],[1,2,4,2],[1,2,1,1]],[[0,2,1,0],[2,1,2,2],[1,2,3,3],[1,2,1,1]],[[0,2,1,0],[2,1,2,2],[1,2,3,2],[1,2,1,2]],[[0,2,1,0],[2,1,2,3],[1,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[1,2,3,3],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,1,2,2],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,1,2,2],[1,2,3,2],[1,2,3,0]],[[0,2,1,0],[2,1,2,3],[1,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,1,2,2],[1,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,1,2,2],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,1,2,2],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,1,2,3],[1,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,2,3],[1,1,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,2,2],[1,1,3,1]],[[0,2,1,0],[2,1,2,2],[1,3,2,2],[1,1,2,2]],[[0,2,1,0],[2,1,2,2],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,1,2,2],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,1,2,2],[1,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,1,2,2],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,1],[1,1,2,2]],[[0,2,1,0],[2,1,2,2],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,2,2],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,1,2,2],[1,3,4,2],[1,0,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,3],[1,0,2,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,2],[1,0,2,2]],[[0,2,1,0],[2,1,2,3],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,1,2,2],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,1,2,2],[1,3,4,2],[1,1,1,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,3],[1,1,1,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,2],[1,1,1,2]],[[0,2,1,0],[2,1,2,3],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,1,2,2],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,1,2,2],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[2,1,2,2],[1,3,3,3],[1,1,2,0]],[[0,2,1,0],[2,1,2,2],[1,3,3,2],[1,1,3,0]],[[0,2,1,0],[2,1,2,3],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,1,2,2],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,1,2,2],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,3],[1,2,0,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,1,2,2],[1,3,3,2],[1,2,0,2]],[[0,2,1,0],[2,1,2,3],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,1,2,2],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,1,2,2],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[2,1,2,2],[1,3,3,3],[1,2,1,0]],[[0,2,1,0],[2,1,2,2],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,1,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,3],[1,1,3,1],[1,2,1,1]],[[1,2,2,1],[3,0,2,2],[1,1,3,1],[1,2,1,1]],[[1,2,2,2],[2,0,2,2],[1,1,3,1],[1,2,1,1]],[[1,2,3,1],[2,0,2,2],[1,1,3,1],[1,2,1,1]],[[1,3,2,1],[2,0,2,2],[1,1,3,1],[1,2,1,1]],[[2,2,2,1],[2,0,2,2],[1,1,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,2,3],[1,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,0,2,2],[1,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,0,3,3],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,0,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,2,2],[2,0,3,2],[1,2,2,2]],[[0,2,1,0],[3,1,2,2],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,1,2,3],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[3,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,1,2,3],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,1,2,2],[2,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,1,2,2],[1,3,2,1]],[[0,2,1,0],[2,1,2,2],[2,1,2,2],[1,2,3,1]],[[0,2,1,0],[2,1,2,2],[2,1,2,2],[1,2,2,2]],[[0,2,1,0],[3,1,2,2],[2,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[3,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,1,4,1],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,1,3,1],[2,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,1,3,1],[1,3,2,1]],[[0,2,1,0],[2,1,2,2],[2,1,3,1],[1,2,3,1]],[[0,2,1,0],[2,1,2,2],[2,1,3,1],[1,2,2,2]],[[0,2,1,0],[2,1,2,2],[2,1,3,3],[0,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,1,3,2],[0,2,3,1]],[[0,2,1,0],[2,1,2,2],[2,1,3,2],[0,2,2,2]],[[0,2,1,0],[2,1,2,3],[2,1,3,2],[1,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,1,4,2],[1,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,1,3,3],[1,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,1,3,2],[1,2,1,2]],[[0,2,1,0],[3,1,2,2],[2,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,1,2,3],[2,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[3,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,1,4,2],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,1,3,3],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,1,3,2],[2,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,1,3,2],[1,3,2,0]],[[0,2,1,0],[2,1,2,2],[2,1,3,2],[1,2,3,0]],[[0,2,1,0],[3,1,2,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,2,3],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[3,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,1,3],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,1,2],[2,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,1,2],[1,3,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,1,2],[1,2,3,1]],[[0,2,1,0],[2,1,2,2],[2,2,1,2],[1,2,2,2]],[[0,2,1,0],[3,1,2,2],[2,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[2,1,2,2],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[2,1,2,3],[2,2,2,2],[0,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,2,3],[0,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,2,2],[0,3,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,2,2],[0,2,3,1]],[[0,2,1,0],[2,1,2,2],[2,2,2,2],[0,2,2,2]],[[0,2,1,0],[3,1,2,2],[2,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[2,1,2,2],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[2,1,2,2],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[2,1,2,2],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[2,1,2,2],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[3,1,2,2],[2,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,2,2],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[2,1,2,3],[2,2,3,2],[0,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,2,4,2],[0,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,2,3,3],[0,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,2,3,2],[0,2,1,2]],[[0,2,1,0],[2,1,2,3],[2,2,3,2],[0,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,2,3,3],[0,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[2,1,2,2],[2,2,3,2],[0,2,3,0]],[[0,2,1,0],[3,1,2,2],[2,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,1,2,2],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,1,2,2],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[2,1,2,2],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[3,1,2,2],[2,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,1,2,2],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,1,2,2],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[2,1,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,2],[2,0,2,2],[1,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,0,2,2],[1,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,0,2,2],[1,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,0,2,2],[1,1,3,0],[1,2,2,1]],[[0,2,1,0],[3,1,2,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,1,2,3],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,1,2,2],[3,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,1,3],[0,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[2,1,2,2],[2,3,1,2],[0,2,2,2]],[[0,2,1,0],[3,1,2,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,1,2,2],[3,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,1,2,2],[2,4,1,2],[1,1,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,1,2],[2,1,2,1]],[[0,2,1,0],[2,1,2,2],[3,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,0],[2,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,0],[1,3,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,0],[1,2,3,1]],[[0,2,1,0],[3,1,2,2],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,1,2,2],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,1],[0,2,2,2]],[[0,2,1,0],[3,1,2,2],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,1,2,2],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,1,2,2],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[2,1,2,2],[3,3,2,1],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,2,1],[2,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,2,1],[1,3,2,0]],[[0,2,1,0],[2,1,2,3],[2,3,2,2],[0,1,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,3],[0,1,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,2],[0,1,3,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,2],[0,1,2,2]],[[0,2,1,0],[3,1,2,2],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,1,2,2],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[2,1,2,3],[2,3,2,2],[1,0,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,3],[1,0,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,2],[1,0,3,1]],[[0,2,1,0],[2,1,2,2],[2,3,2,2],[1,0,2,2]],[[0,2,1,0],[3,1,2,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,1,2,2],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,1,2,2],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,2,2],[1,1,2,3],[1,2,2,0]],[[1,2,2,1],[2,0,2,3],[1,1,2,2],[1,2,2,0]],[[1,2,2,1],[3,0,2,2],[1,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,2,2],[3,3,3,0],[1,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,0],[2,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,0],[1,3,1,1]],[[0,2,1,0],[3,1,2,2],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,1,2,2],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,1,2,2],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,1],[0,1,2,2]],[[0,2,1,0],[3,1,2,2],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,1,2,2],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[3,1,2,2],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,1,2,2],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,1,2,2],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,1],[1,0,2,2]],[[0,2,1,0],[3,1,2,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,1,2,2],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,1,2,2],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,4,1],[1,1,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,1],[2,1,1,1]],[[0,2,1,0],[2,1,2,2],[3,3,3,1],[1,2,1,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,1],[2,2,1,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,2],[2,0,2,2],[1,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,0,2,2],[1,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,0,2,2],[1,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,0,2,2],[1,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,2],[1,1,2,2],[1,2,1,2]],[[1,2,2,1],[2,0,2,2],[1,1,2,3],[1,2,1,1]],[[1,2,2,1],[2,0,2,3],[1,1,2,2],[1,2,1,1]],[[1,2,2,1],[3,0,2,2],[1,1,2,2],[1,2,1,1]],[[0,2,1,0],[2,1,2,3],[2,3,3,2],[0,0,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,4,2],[0,0,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,3],[0,0,2,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[0,0,2,2]],[[0,2,1,0],[3,1,2,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,1,2,3],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,1,2,2],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,1,2,2],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,4,2],[0,1,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,3],[0,1,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[0,1,1,2]],[[0,2,1,0],[3,1,2,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,1,2,3],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,1,2,2],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,1,2,2],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,3],[0,1,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[0,1,3,0]],[[0,2,1,0],[3,1,2,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,1,2,3],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,1,2,2],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,1,2,2],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,1,2,2],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,3],[0,2,0,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[0,2,0,2]],[[0,2,1,0],[3,1,2,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,1,2,3],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,1,2,2],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,1,2,2],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,1,2,2],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,3],[0,2,1,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,2],[2,0,2,2],[1,1,2,2],[1,2,1,1]],[[1,2,3,1],[2,0,2,2],[1,1,2,2],[1,2,1,1]],[[1,3,2,1],[2,0,2,2],[1,1,2,2],[1,2,1,1]],[[2,2,2,1],[2,0,2,2],[1,1,2,2],[1,2,1,1]],[[1,2,2,1],[2,0,2,2],[1,1,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,2],[1,1,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,2],[1,1,1,2],[1,3,2,1]],[[1,2,2,1],[2,0,2,2],[1,1,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,2,2],[1,1,1,3],[1,2,2,1]],[[0,2,1,0],[3,1,2,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,1,2,3],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,1,2,2],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,1,2,2],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,3],[1,0,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[2,0,1,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[1,0,1,2]],[[0,2,1,0],[3,1,2,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,1,2,3],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,1,2,2],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,1,2,2],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,3],[1,0,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[1,0,3,0]],[[0,2,1,0],[3,1,2,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,1,2,3],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,1,2,2],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,1,2,2],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,1,2,2],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,3],[1,1,0,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[1,1,0,2]],[[0,2,1,0],[3,1,2,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,1,2,3],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,1,2,2],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,1,2,2],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,1,2,2],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,3],[1,1,1,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,0,2,3],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[3,0,2,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,2],[2,0,2,2],[1,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,2,2],[1,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,0,2,2],[1,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,0,2,2],[1,1,1,2],[1,2,2,1]],[[0,2,1,0],[3,1,2,2],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,1,2,2],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,1,2,2],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[2,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,2,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[2,0,2,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,1],[2,0,2,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,1],[2,0,2,3],[1,0,3,2],[0,2,2,1]],[[1,2,2,2],[2,0,2,2],[1,0,3,2],[0,2,2,1]],[[1,2,3,1],[2,0,2,2],[1,0,3,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,1,3,0],[1,4,2,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,0],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,0],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,0],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,0],[1,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,1,3,0],[1,4,3,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,1,0],[2,1,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,1,0],[2,1,3,0],[1,4,3,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,0],[1,3,4,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,0],[1,3,3,2],[2,2,1,1]],[[0,2,1,0],[2,1,3,0],[1,3,3,2],[1,3,1,1]],[[0,2,1,0],[3,1,3,0],[2,1,3,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,0],[3,1,3,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,1,4,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,1,3,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,1,3,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,0],[2,1,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,0],[2,1,3,2],[1,2,2,2]],[[0,2,1,0],[3,1,3,0],[2,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,0],[3,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,0],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,0],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,1,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,1,0],[2,1,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,1,0],[2,1,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,1,0],[3,1,3,0],[2,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,0],[3,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,0],[2,2,3,2],[2,2,1,1]],[[0,2,1,0],[2,1,3,0],[2,2,3,2],[1,3,1,1]],[[0,2,1,0],[2,1,3,0],[3,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,2,1],[1,2,3,1]],[[0,2,1,0],[3,1,3,0],[2,3,2,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,0],[3,3,2,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,4,2,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[2,1,3,0],[2,3,2,2],[0,2,2,2]],[[0,2,1,0],[3,1,3,0],[2,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,0],[3,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,0],[2,4,2,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,2,2],[2,1,2,1]],[[0,2,1,0],[2,1,3,0],[3,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,0],[2,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,1,3,0],[2,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,1,3,0],[3,3,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,0],[1,2,3,1]],[[0,2,1,0],[2,1,3,0],[3,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,1],[1,3,1,1]],[[0,2,1,0],[3,1,3,0],[2,3,3,2],[0,1,2,1]],[[0,2,1,0],[2,1,3,0],[3,3,3,2],[0,1,2,1]],[[0,2,1,0],[2,1,3,0],[2,4,3,2],[0,1,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,1,0],[3,1,3,0],[2,3,3,2],[0,2,1,1]],[[0,2,1,0],[2,1,3,0],[3,3,3,2],[0,2,1,1]],[[0,2,1,0],[2,1,3,0],[2,4,3,2],[0,2,1,1]],[[0,2,1,0],[2,1,3,0],[2,3,4,2],[0,2,1,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,2],[0,3,1,1]],[[0,2,1,0],[3,1,3,0],[2,3,3,2],[1,0,2,1]],[[0,2,1,0],[2,1,3,0],[3,3,3,2],[1,0,2,1]],[[0,2,1,0],[2,1,3,0],[2,4,3,2],[1,0,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,2],[2,0,2,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,1,0],[3,1,3,0],[2,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,1,3,0],[3,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,1,3,0],[2,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,1,3,0],[2,3,4,2],[1,1,1,1]],[[0,2,1,0],[2,1,3,0],[2,3,3,2],[2,1,1,1]],[[0,2,1,0],[2,1,3,0],[3,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,1,3,0],[2,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,1,3,0],[2,3,3,2],[1,3,1,0]],[[0,2,1,0],[2,1,3,1],[1,1,3,3],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,1,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,1],[1,1,3,2],[1,2,2,2]],[[0,2,1,0],[2,1,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,1],[1,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,1,4,1],[1,2,3,1],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,1,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,1,3,1],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,1,4,1],[1,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,1,0],[2,1,3,1],[1,2,3,2],[1,2,1,2]],[[0,2,1,0],[2,1,4,1],[1,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,1,0],[2,1,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,1,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,1,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,1,0],[2,1,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,1,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,1,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,1,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,1,0],[2,1,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,1,0],[2,1,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,1,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,1,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,1,3,1],[1,4,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,0],[1,2,3,1]],[[0,2,1,0],[2,1,4,1],[1,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,1],[1,1,2,2]],[[0,2,1,0],[2,1,4,1],[1,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,1,3,1],[1,3,4,2],[1,0,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,3],[1,0,2,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,2],[1,0,2,2]],[[0,2,1,0],[2,1,4,1],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,1,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,1,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,2],[1,1,1,2]],[[0,2,1,0],[2,1,4,1],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,1,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,1,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[2,1,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,1,0],[2,1,3,1],[1,3,3,2],[1,1,3,0]],[[0,2,1,0],[2,1,4,1],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,1,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,1,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,1,3,1],[1,3,3,2],[1,2,0,2]],[[0,2,1,0],[2,1,4,1],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,1,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,1,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[2,1,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,1,0],[2,1,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,1,3,1],[1,3,3,2],[1,3,1,0]],[[0,2,1,0],[2,1,3,1],[2,0,3,3],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,0,3,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,1],[2,0,3,2],[1,2,2,2]],[[0,2,1,0],[3,1,3,1],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[3,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,1,2,3],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,1,2,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,1,2,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,1],[2,1,2,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,1],[2,1,2,2],[1,2,2,2]],[[0,2,1,0],[3,1,3,1],[2,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,1,4,1],[2,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[3,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,1,4,1],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,1,3,1],[2,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,1,3,1],[1,3,2,1]],[[0,2,1,0],[2,1,3,1],[2,1,3,1],[1,2,3,1]],[[0,2,1,0],[2,1,3,1],[2,1,3,1],[1,2,2,2]],[[0,2,1,0],[2,1,3,1],[2,1,3,3],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,1,3,2],[0,2,3,1]],[[0,2,1,0],[2,1,3,1],[2,1,3,2],[0,2,2,2]],[[0,2,1,0],[2,1,4,1],[2,1,3,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,1],[2,1,4,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,1],[2,1,3,3],[1,2,1,1]],[[0,2,1,0],[2,1,3,1],[2,1,3,2],[1,2,1,2]],[[0,2,1,0],[3,1,3,1],[2,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,1,4,1],[2,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,1],[3,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,1],[2,1,4,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,1],[2,1,3,3],[1,2,2,0]],[[0,2,1,0],[2,1,3,1],[2,1,3,2],[2,2,2,0]],[[0,2,1,0],[2,1,3,1],[2,1,3,2],[1,3,2,0]],[[0,2,1,0],[2,1,3,1],[2,1,3,2],[1,2,3,0]],[[0,2,1,0],[3,1,3,1],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[3,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,1,3],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,1,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,1,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,1,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,1],[2,2,1,2],[1,2,2,2]],[[0,2,1,0],[3,1,3,1],[2,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[2,1,3,1],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[2,1,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,1,0],[2,1,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,1,0],[3,1,3,1],[2,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,1],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,1],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[2,1,3,1],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[2,1,3,1],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[3,1,3,1],[2,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[3,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,0],[2,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,0],[1,3,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,0],[1,2,3,1]],[[0,2,1,0],[2,1,4,1],[2,2,3,1],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[3,1,3,1],[2,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,3,1],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[2,1,4,1],[2,2,3,2],[0,2,1,1]],[[0,2,1,0],[2,1,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,2],[0,2,1,2]],[[0,2,1,0],[2,1,4,1],[2,2,3,2],[0,2,2,0]],[[0,2,1,0],[2,1,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[2,1,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,1,0],[2,1,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[2,1,3,1],[2,2,3,2],[0,2,3,0]],[[0,2,1,0],[3,1,3,1],[2,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,1,3,1],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[2,1,3,1],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[3,1,3,1],[2,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,1,3,1],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,1,3,1],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[2,1,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,2],[0,3,3,3],[1,1,0,1]],[[0,2,1,0],[3,1,3,1],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[3,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[2,1,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,1,0],[3,1,3,1],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[3,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[2,4,1,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,1,2],[2,1,2,1]],[[0,2,1,0],[3,1,3,1],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,1,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,1,0],[3,1,3,1],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,1,0],[2,1,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,1,0],[3,1,3,1],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,1,3,1],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,1,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,1,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,1,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[2,1,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,1,0],[2,1,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,1,0],[3,1,3,1],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,1,3,1],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,1,3,1],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[2,1,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,2,3],[0,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,0,2,2],[0,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,0,2,2],[0,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,0,2,2],[0,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,0,2,2],[0,3,3,2],[1,1,0,1]],[[0,2,1,0],[3,1,3,1],[2,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[3,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,4,3,0],[0,2,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,0],[0,3,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,0],[0,2,3,1]],[[0,2,1,0],[3,1,3,1],[2,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[3,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[2,4,3,0],[1,1,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,0],[2,1,2,1]],[[0,2,1,0],[3,1,3,1],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,1,4,1],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,1,3,1],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,1,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,1],[0,1,2,2]],[[0,2,1,0],[3,1,3,1],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,1,4,1],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,1,3,1],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,1,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,1,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[3,1,3,1],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,1,4,1],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,1,3,1],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,1,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,1],[1,0,2,2]],[[0,2,1,0],[3,1,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,1,4,1],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,1,3,1],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,1,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,1,3,1],[2,3,4,1],[1,1,1,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,1],[2,1,1,1]],[[0,2,1,0],[3,1,3,1],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,1,3,1],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,1,3,1],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,1],[2,2,0,1]],[[0,2,1,0],[2,1,4,1],[2,3,3,2],[0,0,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[0,0,2,2]],[[0,2,1,0],[3,1,3,1],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,1,4,1],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,1,3,1],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,1,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[2,1,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[0,1,1,2]],[[0,2,1,0],[3,1,3,1],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,1,4,1],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,1,3,1],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,1,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[2,1,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,1,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[0,1,3,0]],[[0,2,1,0],[3,1,3,1],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,1,4,1],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,1,3,1],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,1,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,1,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[0,2,0,2]],[[0,2,1,0],[3,1,3,1],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,1,4,1],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,1,3,1],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,1,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,1,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,1,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[0,3,1,0]],[[0,2,1,0],[3,1,3,1],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,1,4,1],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,1,3,1],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,1,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,1,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[2,0,1,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[1,0,1,2]],[[0,2,1,0],[3,1,3,1],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,1,4,1],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,1,3,1],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,1,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,1,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[2,1,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[1,0,3,0]],[[0,2,1,0],[3,1,3,1],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,1,4,1],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,1,3,1],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,1,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,1,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[1,1,0,2]],[[0,2,1,0],[3,1,3,1],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,1,4,1],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,1,3,1],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,1,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,1,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[2,1,3,1],[2,3,3,3],[1,1,1,0]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,0,2,3],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[3,0,2,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,2],[2,0,2,2],[0,3,3,1],[1,2,1,0]],[[1,2,3,1],[2,0,2,2],[0,3,3,1],[1,2,1,0]],[[1,3,2,1],[2,0,2,2],[0,3,3,1],[1,2,1,0]],[[2,2,2,1],[2,0,2,2],[0,3,3,1],[1,2,1,0]],[[0,2,1,0],[3,1,3,1],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,1,3,1],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,1,3,1],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[2,1,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,2,3],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[3,0,2,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,2],[2,0,2,2],[0,3,3,1],[1,2,0,1]],[[1,2,3,1],[2,0,2,2],[0,3,3,1],[1,2,0,1]],[[1,3,2,1],[2,0,2,2],[0,3,3,1],[1,2,0,1]],[[2,2,2,1],[2,0,2,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,2,3],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[3,0,2,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,2],[2,0,2,2],[0,3,3,1],[1,1,2,0]],[[1,2,3,1],[2,0,2,2],[0,3,3,1],[1,1,2,0]],[[1,3,2,1],[2,0,2,2],[0,3,3,1],[1,1,2,0]],[[2,2,2,1],[2,0,2,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[2,0,2,3],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,0,2,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,2],[2,0,2,2],[0,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,0,2,2],[0,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,0,2,2],[0,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,0,2,2],[0,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,1,4,2],[1,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,3],[1,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,2,1,3],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,2,1,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,2,1,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,2],[1,2,1,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,2],[1,2,1,2],[1,2,2,2]],[[0,2,1,0],[2,1,4,2],[1,2,2,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,3],[1,2,2,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,2],[1,2,2,3],[1,2,1,1]],[[0,2,1,0],[2,1,3,2],[1,2,2,2],[1,2,1,2]],[[0,2,1,0],[2,1,4,2],[1,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,3],[1,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,2],[1,2,2,3],[1,2,2,0]],[[0,2,1,0],[2,1,4,2],[1,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,3],[1,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,1,0],[2,1,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,1,0],[2,1,3,2],[1,2,3,0],[1,2,2,2]],[[0,2,1,0],[2,1,4,2],[1,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,3,3],[1,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,3,2],[1,2,4,1],[1,2,1,1]],[[0,2,1,0],[2,1,4,2],[1,2,3,1],[1,2,2,0]],[[0,2,1,0],[2,1,3,3],[1,2,3,1],[1,2,2,0]],[[0,2,1,0],[2,1,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,1,0],[2,1,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,1,0],[2,1,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,1,0],[2,1,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,3],[0,3,3,1],[1,0,2,1]],[[1,2,2,2],[2,0,2,2],[0,3,3,1],[1,0,2,1]],[[1,2,3,1],[2,0,2,2],[0,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,0,2,2],[0,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,0,2,2],[0,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,1,4,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,3],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,4,0,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,3,0,3],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,3,0,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,3,0,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,2],[1,3,0,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,2],[1,3,0,2],[1,2,2,2]],[[0,2,1,0],[2,1,4,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,3],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,2],[1,3,1,3],[1,1,2,1]],[[0,2,1,0],[2,1,3,2],[1,3,1,2],[1,1,3,1]],[[0,2,1,0],[2,1,3,2],[1,3,1,2],[1,1,2,2]],[[0,2,1,0],[2,1,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,1,0],[2,1,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,1,0],[2,1,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,1,0],[2,1,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,1,0],[2,1,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,1,0],[2,1,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,1,0],[2,1,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,1,0],[2,1,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,1,0],[2,1,4,2],[1,3,2,2],[1,1,1,1]],[[0,2,1,0],[2,1,3,3],[1,3,2,2],[1,1,1,1]],[[0,2,1,0],[2,1,3,2],[1,3,2,3],[1,1,1,1]],[[0,2,1,0],[2,1,3,2],[1,3,2,2],[1,1,1,2]],[[0,2,1,0],[2,1,4,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,1,3,3],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,1,3,2],[1,3,2,3],[1,1,2,0]],[[0,2,1,0],[2,1,4,2],[1,3,2,2],[1,2,0,1]],[[0,2,1,0],[2,1,3,3],[1,3,2,2],[1,2,0,1]],[[0,2,1,0],[2,1,3,2],[1,3,2,3],[1,2,0,1]],[[0,2,1,0],[2,1,3,2],[1,3,2,2],[1,2,0,2]],[[0,2,1,0],[2,1,4,2],[1,3,2,2],[1,2,1,0]],[[0,2,1,0],[2,1,3,3],[1,3,2,2],[1,2,1,0]],[[0,2,1,0],[2,1,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,0,2,3],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[3,0,2,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,2],[2,0,2,2],[0,3,3,0],[1,2,1,1]],[[1,2,3,1],[2,0,2,2],[0,3,3,0],[1,2,1,1]],[[1,3,2,1],[2,0,2,2],[0,3,3,0],[1,2,1,1]],[[0,2,1,0],[2,1,4,2],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,1,3,3],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,1,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,1,0],[2,1,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,1,0],[2,1,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,1,0],[2,1,3,2],[1,3,3,0],[1,1,2,2]],[[0,2,1,0],[2,1,4,2],[1,3,3,0],[1,2,1,1]],[[0,2,1,0],[2,1,3,3],[1,3,3,0],[1,2,1,1]],[[0,2,1,0],[2,1,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,1,0],[2,1,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,1,0],[2,1,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,1,0],[2,1,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,1,0],[2,1,4,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,1,3,3],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,1,3,2],[1,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,1,3,2],[1,3,4,1],[1,1,1,1]],[[0,2,1,0],[2,1,4,2],[1,3,3,1],[1,1,2,0]],[[0,2,1,0],[2,1,3,3],[1,3,3,1],[1,1,2,0]],[[0,2,1,0],[2,1,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,1,0],[2,1,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,1,0],[2,1,3,2],[1,3,3,1],[1,1,3,0]],[[0,2,1,0],[2,1,4,2],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,1,3,3],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,1,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,1,0],[2,1,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,1,0],[2,1,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,1,0],[2,1,3,2],[1,3,3,1],[1,3,0,1]],[[0,2,1,0],[2,1,4,2],[1,3,3,1],[1,2,1,0]],[[0,2,1,0],[2,1,3,3],[1,3,3,1],[1,2,1,0]],[[0,2,1,0],[2,1,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,1,0],[2,1,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,1,0],[2,1,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,1,0],[2,1,3,2],[1,3,3,1],[1,3,1,0]],[[2,2,2,1],[2,0,2,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,2,3],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[3,0,2,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,2],[2,0,2,2],[0,3,3,0],[1,1,2,1]],[[1,2,3,1],[2,0,2,2],[0,3,3,0],[1,1,2,1]],[[1,3,2,1],[2,0,2,2],[0,3,3,0],[1,1,2,1]],[[2,2,2,1],[2,0,2,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[2,0,2,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,0,2,3],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[3,0,2,2],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[2,0,2,2],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[2,0,2,2],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[2,0,2,2],[0,3,2,2],[1,2,1,0]],[[2,2,2,1],[2,0,2,2],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,2,2],[0,3,2,2],[1,2,0,2]],[[1,2,2,1],[2,0,2,2],[0,3,2,3],[1,2,0,1]],[[1,2,2,1],[2,0,2,3],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[3,0,2,2],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[2,0,2,2],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[2,0,2,2],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[2,0,2,2],[0,3,2,2],[1,2,0,1]],[[0,2,1,0],[3,1,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,4,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,3],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[3,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,1,1,3],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,1,1,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,1,1,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,2],[2,1,1,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,2],[2,1,1,2],[1,2,2,2]],[[0,2,1,0],[2,1,4,2],[2,1,2,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,3],[2,1,2,2],[1,2,1,1]],[[0,2,1,0],[2,1,3,2],[2,1,2,3],[1,2,1,1]],[[0,2,1,0],[2,1,3,2],[2,1,2,2],[1,2,1,2]],[[0,2,1,0],[2,1,4,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,3],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,1,3,2],[2,1,2,3],[1,2,2,0]],[[0,2,1,0],[3,1,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,4,2],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,3],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[3,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,1,4,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,1,3,0],[2,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,1,3,0],[1,3,2,1]],[[0,2,1,0],[2,1,3,2],[2,1,3,0],[1,2,3,1]],[[0,2,1,0],[2,1,3,2],[2,1,3,0],[1,2,2,2]],[[0,2,1,0],[2,1,4,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,3,3],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,1,3,2],[2,1,4,1],[1,2,1,1]],[[0,2,1,0],[3,1,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,1,4,2],[2,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,1,3,3],[2,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,1,3,2],[3,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,1,3,2],[2,1,4,1],[1,2,2,0]],[[0,2,1,0],[2,1,3,2],[2,1,3,1],[2,2,2,0]],[[0,2,1,0],[2,1,3,2],[2,1,3,1],[1,3,2,0]],[[0,2,1,0],[2,1,3,2],[2,1,3,1],[1,2,3,0]],[[2,2,2,1],[2,0,2,2],[0,3,2,2],[1,2,0,1]],[[0,2,1,0],[3,1,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,1,4,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,3],[2,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[3,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,0,3],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,0,2],[2,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,0,2],[1,3,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,0,2],[1,2,3,1]],[[0,2,1,0],[2,1,3,2],[2,2,0,2],[1,2,2,2]],[[0,2,1,0],[2,1,4,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,3],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,1,3],[0,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,1,2],[0,3,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,1,2],[0,2,3,1]],[[0,2,1,0],[2,1,3,2],[2,2,1,2],[0,2,2,2]],[[0,2,1,0],[3,1,3,2],[2,2,2,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[3,2,2,0],[1,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,2,0],[2,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,2,0],[1,3,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,2,0],[1,2,3,1]],[[0,2,1,0],[2,1,3,2],[2,2,2,0],[1,2,2,2]],[[0,2,1,0],[3,1,3,2],[2,2,2,1],[1,2,2,0]],[[0,2,1,0],[2,1,3,2],[3,2,2,1],[1,2,2,0]],[[0,2,1,0],[2,1,3,2],[2,2,2,1],[2,2,2,0]],[[0,2,1,0],[2,1,3,2],[2,2,2,1],[1,3,2,0]],[[0,2,1,0],[2,1,3,2],[2,2,2,1],[1,2,3,0]],[[0,2,1,0],[2,1,4,2],[2,2,2,2],[0,2,1,1]],[[0,2,1,0],[2,1,3,3],[2,2,2,2],[0,2,1,1]],[[0,2,1,0],[2,1,3,2],[2,2,2,3],[0,2,1,1]],[[0,2,1,0],[2,1,3,2],[2,2,2,2],[0,2,1,2]],[[0,2,1,0],[2,1,4,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[2,1,3,3],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[2,1,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,1],[2,0,2,2],[0,3,2,3],[1,1,2,0]],[[1,2,2,1],[2,0,2,3],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,0,2,2],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[2,0,2,2],[0,3,2,2],[1,1,2,0]],[[1,2,3,1],[2,0,2,2],[0,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,0,2,2],[0,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,0,2,2],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,2,2],[0,3,2,2],[1,1,1,2]],[[1,2,2,1],[2,0,2,2],[0,3,2,3],[1,1,1,1]],[[0,2,1,0],[2,1,4,2],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[2,1,3,3],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,1,0],[2,1,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,1,0],[2,1,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,1,0],[3,1,3,2],[2,2,3,0],[1,2,1,1]],[[0,2,1,0],[2,1,3,2],[3,2,3,0],[1,2,1,1]],[[0,2,1,0],[2,1,3,2],[2,2,3,0],[2,2,1,1]],[[0,2,1,0],[2,1,3,2],[2,2,3,0],[1,3,1,1]],[[0,2,1,0],[2,1,4,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,1,3,3],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,1,3,2],[2,2,4,1],[0,2,1,1]],[[0,2,1,0],[2,1,4,2],[2,2,3,1],[0,2,2,0]],[[0,2,1,0],[2,1,3,3],[2,2,3,1],[0,2,2,0]],[[0,2,1,0],[2,1,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,1,0],[2,1,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,1,0],[2,1,3,2],[2,2,3,1],[0,2,3,0]],[[0,2,1,0],[3,1,3,2],[2,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,1,3,2],[3,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,1,3,2],[2,2,3,1],[2,2,0,1]],[[0,2,1,0],[2,1,3,2],[2,2,3,1],[1,3,0,1]],[[0,2,1,0],[3,1,3,2],[2,2,3,1],[1,2,1,0]],[[0,2,1,0],[2,1,3,2],[3,2,3,1],[1,2,1,0]],[[0,2,1,0],[2,1,3,2],[2,2,3,1],[2,2,1,0]],[[0,2,1,0],[2,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,2,3],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[3,0,2,2],[0,3,2,2],[1,1,1,1]],[[1,2,2,2],[2,0,2,2],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[2,0,2,2],[0,3,2,2],[1,1,1,1]],[[1,3,2,1],[2,0,2,2],[0,3,2,2],[1,1,1,1]],[[2,2,2,1],[2,0,2,2],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[2,0,2,2],[0,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,0,2,2],[0,3,2,3],[1,0,2,1]],[[1,2,2,1],[2,0,2,3],[0,3,2,2],[1,0,2,1]],[[1,2,2,2],[2,0,2,2],[0,3,2,2],[1,0,2,1]],[[1,2,3,1],[2,0,2,2],[0,3,2,2],[1,0,2,1]],[[1,3,2,1],[2,0,2,2],[0,3,2,2],[1,0,2,1]],[[2,2,2,1],[2,0,2,2],[0,3,2,2],[1,0,2,1]],[[1,2,2,1],[2,0,2,2],[0,3,1,2],[1,1,2,2]],[[1,2,2,1],[2,0,2,2],[0,3,1,2],[1,1,3,1]],[[1,2,2,1],[2,0,2,2],[0,3,1,3],[1,1,2,1]],[[1,2,2,1],[2,0,2,3],[0,3,1,2],[1,1,2,1]],[[1,2,2,1],[3,0,2,2],[0,3,1,2],[1,1,2,1]],[[1,2,2,2],[2,0,2,2],[0,3,1,2],[1,1,2,1]],[[1,2,3,1],[2,0,2,2],[0,3,1,2],[1,1,2,1]],[[1,3,2,1],[2,0,2,2],[0,3,1,2],[1,1,2,1]],[[2,2,2,1],[2,0,2,2],[0,3,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,2,2],[0,3,0,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,2],[0,3,0,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,2],[0,3,0,2],[1,3,2,1]],[[1,2,2,1],[2,0,2,2],[0,3,0,2],[2,2,2,1]],[[1,2,2,1],[2,0,2,2],[0,3,0,3],[1,2,2,1]],[[0,2,1,0],[3,1,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,1,4,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,3],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,2],[3,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,4,0,2],[0,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,0,3],[0,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,0,2],[0,3,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,0,2],[0,2,3,1]],[[0,2,1,0],[2,1,3,2],[2,3,0,2],[0,2,2,2]],[[0,2,1,0],[3,1,3,2],[2,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,2],[3,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,2],[2,4,0,2],[1,1,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,0,2],[2,1,2,1]],[[0,2,1,0],[2,1,4,2],[2,3,1,2],[0,1,2,1]],[[0,2,1,0],[2,1,3,3],[2,3,1,2],[0,1,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,1,3],[0,1,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,1,2],[0,1,3,1]],[[0,2,1,0],[2,1,3,2],[2,3,1,2],[0,1,2,2]],[[0,2,1,0],[2,1,4,2],[2,3,1,2],[1,0,2,1]],[[0,2,1,0],[2,1,3,3],[2,3,1,2],[1,0,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,1,2],[1,0,3,1]],[[0,2,1,0],[2,1,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,0,2,2],[0,4,0,2],[1,2,2,1]],[[1,2,2,1],[2,0,2,3],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[3,0,2,2],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[2,0,2,2],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[2,0,2,2],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[2,0,2,2],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[2,0,2,2],[0,3,0,2],[1,2,2,1]],[[0,2,1,0],[3,1,3,2],[2,3,2,0],[0,2,2,1]],[[0,2,1,0],[2,1,3,2],[3,3,2,0],[0,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,1,0],[3,1,3,2],[2,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,1,3,2],[3,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,1,3,2],[2,4,2,0],[1,1,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,0],[2,1,2,1]],[[0,2,1,0],[3,1,3,2],[2,3,2,1],[0,2,2,0]],[[0,2,1,0],[2,1,3,2],[3,3,2,1],[0,2,2,0]],[[0,2,1,0],[2,1,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,1,0],[2,1,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,1,0],[2,1,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,1,0],[3,1,3,2],[2,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,1,3,2],[3,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,1,3,2],[2,4,2,1],[1,1,2,0]],[[0,2,1,0],[2,1,3,2],[2,3,2,1],[2,1,2,0]],[[0,2,1,0],[2,1,4,2],[2,3,2,2],[0,0,2,1]],[[0,2,1,0],[2,1,3,3],[2,3,2,2],[0,0,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,3],[0,0,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,2],[0,0,2,2]],[[0,2,1,0],[2,1,4,2],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,1,3,3],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,3],[0,1,1,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,2],[0,1,1,2]],[[0,2,1,0],[2,1,4,2],[2,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,1,3,3],[2,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,1,3,2],[2,3,2,3],[0,1,2,0]],[[0,2,1,0],[2,1,4,2],[2,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,1,3,3],[2,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,3],[0,2,0,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,2],[0,2,0,2]],[[0,2,1,0],[2,1,4,2],[2,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,1,3,3],[2,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,1,3,2],[2,3,2,3],[0,2,1,0]],[[0,2,1,0],[2,1,4,2],[2,3,2,2],[1,0,1,1]],[[0,2,1,0],[2,1,3,3],[2,3,2,2],[1,0,1,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,3],[1,0,1,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,2],[1,0,1,2]],[[0,2,1,0],[2,1,4,2],[2,3,2,2],[1,0,2,0]],[[0,2,1,0],[2,1,3,3],[2,3,2,2],[1,0,2,0]],[[0,2,1,0],[2,1,3,2],[2,3,2,3],[1,0,2,0]],[[0,2,1,0],[2,1,4,2],[2,3,2,2],[1,1,0,1]],[[0,2,1,0],[2,1,3,3],[2,3,2,2],[1,1,0,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,3],[1,1,0,1]],[[0,2,1,0],[2,1,3,2],[2,3,2,2],[1,1,0,2]],[[0,2,1,0],[2,1,4,2],[2,3,2,2],[1,1,1,0]],[[0,2,1,0],[2,1,3,3],[2,3,2,2],[1,1,1,0]],[[0,2,1,0],[2,1,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,0,2,3],[0,2,3,1],[1,2,2,0]],[[1,2,2,1],[3,0,2,2],[0,2,3,1],[1,2,2,0]],[[1,2,2,2],[2,0,2,2],[0,2,3,1],[1,2,2,0]],[[1,2,3,1],[2,0,2,2],[0,2,3,1],[1,2,2,0]],[[1,3,2,1],[2,0,2,2],[0,2,3,1],[1,2,2,0]],[[2,2,2,1],[2,0,2,2],[0,2,3,1],[1,2,2,0]],[[1,2,2,1],[2,0,2,3],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[3,0,2,2],[0,2,3,1],[1,2,1,1]],[[1,2,2,2],[2,0,2,2],[0,2,3,1],[1,2,1,1]],[[1,2,3,1],[2,0,2,2],[0,2,3,1],[1,2,1,1]],[[1,3,2,1],[2,0,2,2],[0,2,3,1],[1,2,1,1]],[[2,2,2,1],[2,0,2,2],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,2,3],[0,2,3,0],[1,2,2,1]],[[1,2,2,1],[3,0,2,2],[0,2,3,0],[1,2,2,1]],[[1,2,2,2],[2,0,2,2],[0,2,3,0],[1,2,2,1]],[[1,2,3,1],[2,0,2,2],[0,2,3,0],[1,2,2,1]],[[1,3,2,1],[2,0,2,2],[0,2,3,0],[1,2,2,1]],[[2,2,2,1],[2,0,2,2],[0,2,3,0],[1,2,2,1]],[[0,2,1,0],[3,1,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,1,4,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,1,3,3],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,1,3,2],[3,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,1,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,0],[0,1,2,2]],[[0,2,1,0],[3,1,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,1,4,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,1,3,3],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,1,3,2],[3,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,1,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,1,0],[2,1,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,0],[0,3,1,1]],[[0,2,1,0],[3,1,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,1,4,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,1,3,3],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,1,3,2],[3,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,1,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,0],[2,0,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,0],[1,0,2,2]],[[0,2,1,0],[3,1,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,1,4,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,1,3,3],[2,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,1,3,2],[3,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,1,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,1,0],[2,1,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,0],[2,1,1,1]],[[0,2,1,0],[3,1,3,2],[2,3,3,0],[1,2,0,1]],[[0,2,1,0],[2,1,3,2],[3,3,3,0],[1,2,0,1]],[[0,2,1,0],[2,1,3,2],[2,4,3,0],[1,2,0,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,0,2,2],[0,2,2,3],[1,2,2,0]],[[0,2,1,0],[2,1,4,2],[2,3,3,1],[0,0,2,1]],[[0,2,1,0],[2,1,3,3],[2,3,3,1],[0,0,2,1]],[[0,2,1,0],[2,1,3,2],[2,3,4,1],[0,0,2,1]],[[0,2,1,0],[3,1,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,1,4,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,1,3,3],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,1,3,2],[3,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,1,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,1,0],[2,1,3,2],[2,3,4,1],[0,1,1,1]],[[0,2,1,0],[3,1,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,1,4,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,1,3,3],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,1,3,2],[3,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,1,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,1,0],[2,1,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,1,0],[2,1,3,2],[2,3,3,1],[0,1,3,0]],[[0,2,1,0],[3,1,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,1,4,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,1,3,3],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,1,3,2],[3,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,1,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,1,0],[2,1,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,1],[0,3,0,1]],[[0,2,1,0],[3,1,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,1,4,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,1,3,3],[2,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,1,3,2],[3,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,1,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,1,0],[2,1,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,1,0],[2,1,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,0,2,3],[0,2,2,2],[1,2,2,0]],[[1,2,2,1],[3,0,2,2],[0,2,2,2],[1,2,2,0]],[[1,2,2,2],[2,0,2,2],[0,2,2,2],[1,2,2,0]],[[1,2,3,1],[2,0,2,2],[0,2,2,2],[1,2,2,0]],[[1,3,2,1],[2,0,2,2],[0,2,2,2],[1,2,2,0]],[[2,2,2,1],[2,0,2,2],[0,2,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,2],[0,2,2,2],[1,2,1,2]],[[1,2,2,1],[2,0,2,2],[0,2,2,3],[1,2,1,1]],[[1,2,2,1],[2,0,2,3],[0,2,2,2],[1,2,1,1]],[[0,2,1,0],[3,1,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,1,4,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,1,3,3],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,1,3,2],[3,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,1,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,1,0],[2,1,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,1],[2,0,1,1]],[[0,2,1,0],[3,1,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,1,4,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,1,3,3],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,1,3,2],[3,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,1,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,1,0],[2,1,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,1,0],[2,1,3,2],[2,3,3,1],[2,0,2,0]],[[0,2,1,0],[2,1,3,2],[2,3,3,1],[1,0,3,0]],[[0,2,1,0],[3,1,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,1,4,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,1,3,3],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,1,3,2],[3,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,1,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,1,0],[2,1,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,1],[2,1,0,1]],[[0,2,1,0],[3,1,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,1,4,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,1,3,3],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,1,3,2],[3,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,1,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,1,0],[2,1,3,2],[2,3,4,1],[1,1,1,0]],[[0,2,1,0],[2,1,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[3,0,2,2],[0,2,2,2],[1,2,1,1]],[[1,2,2,2],[2,0,2,2],[0,2,2,2],[1,2,1,1]],[[1,2,3,1],[2,0,2,2],[0,2,2,2],[1,2,1,1]],[[1,3,2,1],[2,0,2,2],[0,2,2,2],[1,2,1,1]],[[2,2,2,1],[2,0,2,2],[0,2,2,2],[1,2,1,1]],[[1,2,2,1],[2,0,2,2],[0,2,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,2],[0,2,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,2],[0,2,1,2],[1,3,2,1]],[[1,2,2,1],[2,0,2,2],[0,2,1,2],[2,2,2,1]],[[0,2,1,0],[3,1,3,2],[2,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,1,3,2],[3,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,1,3,2],[2,4,3,1],[1,2,0,0]],[[0,2,1,0],[2,1,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,0,2,2],[0,2,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,2,3],[0,2,1,2],[1,2,2,1]],[[1,2,2,1],[3,0,2,2],[0,2,1,2],[1,2,2,1]],[[1,2,2,2],[2,0,2,2],[0,2,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,2,2],[0,2,1,2],[1,2,2,1]],[[1,3,2,1],[2,0,2,2],[0,2,1,2],[1,2,2,1]],[[2,2,2,1],[2,0,2,2],[0,2,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,2,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,1],[2,0,2,3],[0,0,3,2],[1,2,2,1]],[[1,2,2,2],[2,0,2,2],[0,0,3,2],[1,2,2,1]],[[1,2,3,1],[2,0,2,2],[0,0,3,2],[1,2,2,1]],[[0,2,1,0],[2,1,4,2],[2,3,3,2],[0,1,0,1]],[[0,2,1,0],[2,1,3,3],[2,3,3,2],[0,1,0,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,3],[0,1,0,1]],[[0,2,1,0],[2,1,4,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[2,1,3,3],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[2,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,0,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,0,2,1],[2,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,0,2,1],[3,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,0,2,1],[2,3,3,1],[1,2,0,0]],[[1,2,2,2],[2,0,2,1],[2,3,3,1],[1,2,0,0]],[[1,2,3,1],[2,0,2,1],[2,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,0,2,1],[2,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,0,2,1],[2,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,2,0,0],[3,3,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,0,0],[2,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,2,0,0],[2,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,0,0],[2,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,0,0],[2,3,3,2],[1,2,2,2]],[[0,2,1,0],[2,2,0,1],[1,4,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,0,1],[1,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,2,0,1],[1,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,0,1],[1,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,0,1],[1,3,3,2],[1,2,2,2]],[[0,2,1,0],[3,2,0,1],[2,2,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,0,1],[3,2,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,0,1],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,2,0,1],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,0,1],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,0,1],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,2,0,1],[3,3,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,0,1],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,0,1],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,0,1],[2,3,3,1],[1,2,3,1]],[[0,2,1,0],[3,2,0,1],[2,3,3,2],[0,2,2,1]],[[0,2,1,0],[2,2,0,1],[3,3,3,2],[0,2,2,1]],[[0,2,1,0],[2,2,0,1],[2,4,3,2],[0,2,2,1]],[[0,2,1,0],[2,2,0,1],[2,3,3,2],[0,3,2,1]],[[0,2,1,0],[2,2,0,1],[2,3,3,2],[0,2,3,1]],[[0,2,1,0],[2,2,0,1],[2,3,3,2],[0,2,2,2]],[[0,2,1,0],[3,2,0,1],[2,3,3,2],[1,1,2,1]],[[0,2,1,0],[2,2,0,1],[3,3,3,2],[1,1,2,1]],[[0,2,1,0],[2,2,0,1],[2,4,3,2],[1,1,2,1]],[[0,2,1,0],[2,2,0,1],[2,3,3,2],[2,1,2,1]],[[0,2,1,0],[2,2,0,1],[3,3,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,0,1],[2,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,0,1],[2,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,0,2],[1,2,3,3],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[1,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,2,0,2],[1,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,0,2],[1,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,0,2],[1,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,2,0,2],[1,4,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[1,3,2,3],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,0,2],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,0,2],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,0,2],[1,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,2,0,2],[1,4,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[1,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,0,2],[1,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,0,2],[1,3,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,0,2],[1,3,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,0,2],[1,3,3,3],[1,1,2,1]],[[0,2,1,0],[2,2,0,2],[1,3,3,2],[1,1,3,1]],[[0,2,1,0],[2,2,0,2],[1,3,3,2],[1,1,2,2]],[[0,2,1,0],[2,2,0,2],[1,4,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,0,2],[1,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,0,2],[1,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,0,2],[1,3,3,2],[1,2,3,0]],[[0,2,1,0],[3,2,0,2],[2,1,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[3,1,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,1,3,3],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,1,3,2],[2,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,1,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,0,2],[2,1,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,0,2],[2,1,3,2],[1,2,2,2]],[[0,2,1,0],[3,2,0,2],[2,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[3,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,2,2,3],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,0,2],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,0,2],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[3,2,0,2],[2,2,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[3,2,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,0,2],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,0,2],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,0,2],[2,2,3,3],[0,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,2,3,2],[0,3,2,1]],[[0,2,1,0],[2,2,0,2],[2,2,3,2],[0,2,3,1]],[[0,2,1,0],[2,2,0,2],[2,2,3,2],[0,2,2,2]],[[0,2,1,0],[3,2,0,2],[2,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,0,2],[3,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,0,2],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,0,2],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,0,2],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[3,2,0,2],[2,3,2,2],[0,2,2,1]],[[0,2,1,0],[2,2,0,2],[3,3,2,2],[0,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,4,2,2],[0,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,3,2,3],[0,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[2,2,0,2],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[2,2,0,2],[2,3,2,2],[0,2,2,2]],[[0,2,1,0],[3,2,0,2],[2,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,2,0,2],[3,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,2,0,2],[2,4,2,2],[1,1,2,1]],[[0,2,1,0],[2,2,0,2],[2,3,2,2],[2,1,2,1]],[[0,2,1,0],[3,2,0,2],[2,3,3,1],[0,2,2,1]],[[0,2,1,0],[2,2,0,2],[3,3,3,1],[0,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,4,3,1],[0,2,2,1]],[[0,2,1,0],[2,2,0,2],[2,3,3,1],[0,3,2,1]],[[0,2,1,0],[2,2,0,2],[2,3,3,1],[0,2,3,1]],[[0,2,1,0],[2,2,0,2],[2,3,3,1],[0,2,2,2]],[[0,2,1,0],[3,2,0,2],[2,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,0,2],[3,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,0,2],[2,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,0,2],[2,3,3,1],[2,1,2,1]],[[0,2,1,0],[2,2,0,2],[2,3,3,3],[0,1,2,1]],[[0,2,1,0],[2,2,0,2],[2,3,3,2],[0,1,3,1]],[[0,2,1,0],[2,2,0,2],[2,3,3,2],[0,1,2,2]],[[0,2,1,0],[3,2,0,2],[2,3,3,2],[0,2,2,0]],[[0,2,1,0],[2,2,0,2],[3,3,3,2],[0,2,2,0]],[[0,2,1,0],[2,2,0,2],[2,4,3,2],[0,2,2,0]],[[0,2,1,0],[2,2,0,2],[2,3,3,2],[0,3,2,0]],[[0,2,1,0],[2,2,0,2],[2,3,3,2],[0,2,3,0]],[[0,2,1,0],[2,2,0,2],[2,3,3,3],[1,0,2,1]],[[0,2,1,0],[2,2,0,2],[2,3,3,2],[1,0,3,1]],[[0,2,1,0],[2,2,0,2],[2,3,3,2],[1,0,2,2]],[[0,2,1,0],[3,2,0,2],[2,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,0,2],[3,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,0,2],[2,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,0,2],[2,3,3,2],[2,1,2,0]],[[0,2,1,0],[2,2,1,0],[1,4,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,0],[1,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,2,1,0],[1,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,1,0],[1,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,1,0],[1,3,3,2],[1,2,2,2]],[[0,2,1,0],[3,2,1,0],[2,2,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,0],[3,2,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,0],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,2,1,0],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,1,0],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,1,0],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[3,2,1,0],[2,3,3,2],[0,2,2,1]],[[0,2,1,0],[2,2,1,0],[3,3,3,2],[0,2,2,1]],[[0,2,1,0],[2,2,1,0],[2,4,3,2],[0,2,2,1]],[[0,2,1,0],[2,2,1,0],[2,3,3,2],[0,3,2,1]],[[0,2,1,0],[2,2,1,0],[2,3,3,2],[0,2,3,1]],[[0,2,1,0],[2,2,1,0],[2,3,3,2],[0,2,2,2]],[[0,2,1,0],[3,2,1,0],[2,3,3,2],[1,1,2,1]],[[0,2,1,0],[2,2,1,0],[3,3,3,2],[1,1,2,1]],[[0,2,1,0],[2,2,1,0],[2,4,3,2],[1,1,2,1]],[[0,2,1,0],[2,2,1,0],[2,3,3,2],[2,1,2,1]],[[0,2,1,0],[2,2,1,1],[1,4,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,1],[1,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,1,1],[1,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,1,1],[1,3,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,1,1],[1,3,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,1,1],[1,4,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,1],[1,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,1,1],[1,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,1,1],[1,3,3,2],[1,2,3,0]],[[0,2,1,0],[3,2,1,1],[2,2,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,1],[3,2,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,1],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,1,1],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,1,1],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,1,1],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[3,2,1,1],[2,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,1],[3,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,1],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,1,1],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,1,1],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[3,2,1,1],[2,3,3,1],[0,2,2,1]],[[0,2,1,0],[2,2,1,1],[3,3,3,1],[0,2,2,1]],[[0,2,1,0],[2,2,1,1],[2,4,3,1],[0,2,2,1]],[[0,2,1,0],[2,2,1,1],[2,3,3,1],[0,3,2,1]],[[0,2,1,0],[2,2,1,1],[2,3,3,1],[0,2,3,1]],[[0,2,1,0],[2,2,1,1],[2,3,3,1],[0,2,2,2]],[[0,2,1,0],[3,2,1,1],[2,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,1,1],[3,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,1,1],[2,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,1,1],[2,3,3,1],[2,1,2,1]],[[0,2,1,0],[3,2,1,1],[2,3,3,2],[0,2,2,0]],[[0,2,1,0],[2,2,1,1],[3,3,3,2],[0,2,2,0]],[[0,2,1,0],[2,2,1,1],[2,4,3,2],[0,2,2,0]],[[0,2,1,0],[2,2,1,1],[2,3,3,2],[0,3,2,0]],[[0,2,1,0],[2,2,1,1],[2,3,3,2],[0,2,3,0]],[[0,2,1,0],[3,2,1,1],[2,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,1,1],[3,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,1,1],[2,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[2,0,2,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[2,0,2,1],[2,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,0,2,1],[2,4,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,2,1],[3,3,3,1],[1,1,1,0]],[[1,2,2,1],[3,0,2,1],[2,3,3,1],[1,1,1,0]],[[1,2,2,2],[2,0,2,1],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,2,1,2],[0,2,3,3],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[0,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,1,2],[0,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,1,2],[0,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,2,1,2],[0,3,3,3],[1,1,2,1]],[[0,2,1,0],[2,2,1,2],[0,3,3,2],[1,1,3,1]],[[0,2,1,0],[2,2,1,2],[0,3,3,2],[1,1,2,2]],[[0,2,1,0],[2,2,1,3],[1,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,2,2,3],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,1,2],[1,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,1,2],[1,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,2,1,2],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,1,2],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,1,2],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,1,2],[1,2,3,3],[0,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,2,3,2],[0,2,3,1]],[[0,2,1,0],[2,2,1,2],[1,2,3,2],[0,2,2,2]],[[0,2,1,0],[2,2,1,3],[1,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,2,1,2],[1,2,4,2],[1,2,1,1]],[[0,2,1,0],[2,2,1,2],[1,2,3,3],[1,2,1,1]],[[0,2,1,0],[2,2,1,2],[1,2,3,2],[1,2,1,2]],[[0,2,1,0],[2,2,1,3],[1,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[1,2,3,3],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,1,2],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,1,2],[1,2,3,2],[1,2,3,0]],[[0,2,1,0],[2,2,1,3],[1,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,2,1,2],[1,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,2,1,2],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,2,1,2],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,2,1,3],[1,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,2,3],[1,1,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,2,2],[1,1,3,1]],[[0,2,1,0],[2,2,1,2],[1,3,2,2],[1,1,2,2]],[[0,2,1,0],[2,2,1,2],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,2,1,2],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,2,1,2],[1,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,2,1,2],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,1],[1,1,2,2]],[[0,2,1,0],[2,2,1,2],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,1,2],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,3],[0,1,2,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,2],[0,1,3,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,2],[0,1,2,2]],[[0,2,1,0],[2,2,1,3],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,2,1,2],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,2,1,2],[1,3,4,2],[1,1,1,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,3],[1,1,1,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,2],[1,1,1,2]],[[0,2,1,0],[2,2,1,3],[1,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,1,2],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,1,2],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[2,2,1,2],[1,3,3,3],[1,1,2,0]],[[0,2,1,0],[2,2,1,2],[1,3,3,2],[1,1,3,0]],[[0,2,1,0],[2,2,1,3],[1,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,1,2],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,1,2],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,3],[1,2,0,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,2,1,2],[1,3,3,2],[1,2,0,2]],[[0,2,1,0],[2,2,1,3],[1,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,1,2],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,1,2],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[2,2,1,2],[1,3,3,3],[1,2,1,0]],[[0,2,1,0],[2,2,1,2],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,2,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,3,1],[2,0,2,1],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[2,0,2,1],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,0,2,1],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,2,1],[2,3,3,1],[2,1,0,1]],[[1,2,2,1],[2,0,2,1],[2,3,4,1],[1,1,0,1]],[[1,2,2,1],[2,0,2,1],[2,4,3,1],[1,1,0,1]],[[1,2,2,1],[2,0,2,1],[3,3,3,1],[1,1,0,1]],[[1,2,2,1],[3,0,2,1],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[3,2,1,2],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,3],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[3,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,1,2,3],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,1,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,1,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,1,2],[2,1,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,1,2],[2,1,2,2],[1,2,2,2]],[[0,2,1,0],[3,2,1,2],[2,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[3,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,1,4,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,1,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,1,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,1,2],[2,1,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,1,2],[2,1,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,1,3],[2,1,3,2],[1,2,1,1]],[[0,2,1,0],[2,2,1,2],[2,1,4,2],[1,2,1,1]],[[0,2,1,0],[2,2,1,2],[2,1,3,3],[1,2,1,1]],[[0,2,1,0],[2,2,1,2],[2,1,3,2],[1,2,1,2]],[[0,2,1,0],[3,2,1,2],[2,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,3],[2,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[3,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,1,4,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,1,3,3],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,1,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,1,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,1,2],[2,1,3,2],[1,2,3,0]],[[0,2,1,0],[3,2,1,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,3],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[3,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,1,3],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,1,2],[2,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,1,2],[1,3,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,1,2],[1,2,3,1]],[[0,2,1,0],[2,2,1,2],[2,2,1,2],[1,2,2,2]],[[0,2,1,0],[3,2,1,2],[2,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[2,2,1,2],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[2,2,1,3],[2,2,2,2],[0,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,2,3],[0,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,2,2],[0,3,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,2,2],[0,2,3,1]],[[0,2,1,0],[2,2,1,2],[2,2,2,2],[0,2,2,2]],[[0,2,1,0],[3,2,1,2],[2,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[2,2,1,2],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[2,2,1,2],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[2,2,1,2],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[2,2,1,2],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[3,2,1,2],[2,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,1,2],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,1,2],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[2,2,1,2],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[2,2,1,3],[2,2,3,2],[0,2,1,1]],[[0,2,1,0],[2,2,1,2],[2,2,4,2],[0,2,1,1]],[[0,2,1,0],[2,2,1,2],[2,2,3,3],[0,2,1,1]],[[0,2,1,0],[2,2,1,2],[2,2,3,2],[0,2,1,2]],[[0,2,1,0],[2,2,1,3],[2,2,3,2],[0,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,2,3,3],[0,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[2,2,1,2],[2,2,3,2],[0,2,3,0]],[[0,2,1,0],[3,2,1,2],[2,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,1,2],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,1,2],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[2,2,1,2],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[3,2,1,2],[2,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,1,2],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,1,2],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[2,2,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,2],[2,0,2,1],[2,3,3,1],[1,1,0,1]],[[1,2,3,1],[2,0,2,1],[2,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,0,2,1],[2,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,0,2,1],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[3,2,1,2],[2,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[3,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,0,2],[2,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,0,2],[1,3,2,1]],[[0,2,1,0],[3,2,1,2],[2,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[3,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,1,1],[2,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,1,1],[1,3,2,1]],[[0,2,1,0],[3,2,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,1,3],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,1,2],[3,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,1,3],[0,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[2,2,1,2],[2,3,1,2],[0,2,2,2]],[[0,2,1,0],[3,2,1,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,2,1,2],[3,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,2,1,2],[2,4,1,2],[1,1,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,1,2],[2,1,2,1]],[[0,2,1,0],[3,2,1,2],[2,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[3,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,1,2],[2,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,1,2],[1,3,2,0]],[[0,2,1,0],[3,2,1,2],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,1,2],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,2,1,2],[2,3,2,1],[0,2,2,2]],[[0,2,1,0],[3,2,1,2],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,2,1,2],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,2,1,2],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[2,2,1,3],[2,3,2,2],[0,1,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,2,3],[0,1,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,2,2],[0,1,3,1]],[[0,2,1,0],[2,2,1,2],[2,3,2,2],[0,1,2,2]],[[0,2,1,0],[3,2,1,2],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,1,2],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[2,2,1,3],[2,3,2,2],[1,0,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,2,3],[1,0,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,2,2],[1,0,3,1]],[[0,2,1,0],[2,2,1,2],[2,3,2,2],[1,0,2,2]],[[0,2,1,0],[3,2,1,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,2,1,2],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,2,1,2],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,2,1],[2,3,3,1],[1,0,3,0]],[[1,2,2,1],[2,0,2,1],[2,3,3,1],[2,0,2,0]],[[1,2,2,1],[2,0,2,1],[2,3,4,1],[1,0,2,0]],[[0,2,1,0],[3,2,1,2],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,1,2],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,1,2],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,1],[0,1,2,2]],[[0,2,1,0],[3,2,1,2],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,1,2],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,1,2],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,1,2],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[3,2,1,2],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,1,2],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,1,2],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,1],[1,0,2,2]],[[0,2,1,0],[3,2,1,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,1,2],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,1,2],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,1,2],[2,3,4,1],[1,1,1,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,1],[2,1,1,1]],[[0,2,1,0],[3,2,1,2],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,1,2],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,1,2],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,2,1],[2,4,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,2,1],[3,3,3,1],[1,0,2,0]],[[1,2,2,1],[3,0,2,1],[2,3,3,1],[1,0,2,0]],[[1,2,2,2],[2,0,2,1],[2,3,3,1],[1,0,2,0]],[[1,2,3,1],[2,0,2,1],[2,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,0,2,1],[2,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,0,2,1],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,2,1],[2,3,3,1],[2,0,1,1]],[[0,2,1,0],[2,2,1,3],[2,3,3,2],[0,0,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,4,2],[0,0,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,3],[0,0,2,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[0,0,2,2]],[[0,2,1,0],[3,2,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,1,3],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,1,2],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,1,2],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,1,2],[2,3,4,2],[0,1,1,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,3],[0,1,1,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[0,1,1,2]],[[0,2,1,0],[3,2,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,1,3],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,1,2],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,1,2],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,3,3],[0,1,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[0,1,3,0]],[[0,2,1,0],[3,2,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,1,3],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,1,2],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,1,2],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,1,2],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,3],[0,2,0,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[0,2,0,2]],[[0,2,1,0],[3,2,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,1,3],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,1,2],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,1,2],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,1,2],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,2,1,2],[2,3,3,3],[0,2,1,0]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,2,1],[2,3,4,1],[1,0,1,1]],[[1,2,2,1],[2,0,2,1],[2,4,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,2,1],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[3,0,2,1],[2,3,3,1],[1,0,1,1]],[[1,2,2,2],[2,0,2,1],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[2,0,2,1],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,0,2,1],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,0,2,1],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[3,2,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,1,3],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,1,2],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,1,2],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,1,2],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,3],[1,0,1,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[2,0,1,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[1,0,1,2]],[[0,2,1,0],[3,2,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,1,3],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,1,2],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,1,2],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,3,3],[1,0,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[1,0,3,0]],[[0,2,1,0],[3,2,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,1,3],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,1,2],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,1,2],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,1,2],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,3],[1,1,0,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[1,1,0,2]],[[0,2,1,0],[3,2,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,1,3],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,1,2],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,1,2],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,1,2],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[2,2,1,2],[2,3,3,3],[1,1,1,0]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[2,1,1,0]],[[0,2,1,0],[3,2,1,2],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,2,1,2],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,2,1,2],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[2,2,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,2,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,0,2,1],[2,3,4,1],[0,2,1,0]],[[1,2,2,1],[2,0,2,1],[2,4,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,2,1],[3,3,3,1],[0,2,1,0]],[[1,2,2,1],[3,0,2,1],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[2,0,2,1],[2,3,3,1],[0,2,1,0]],[[1,2,3,1],[2,0,2,1],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,0,2,1],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,0,2,1],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,2,1],[2,3,3,1],[0,3,0,1]],[[1,2,2,1],[2,0,2,1],[2,3,4,1],[0,2,0,1]],[[1,2,2,1],[2,0,2,1],[2,4,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,2,1],[3,3,3,1],[0,2,0,1]],[[1,2,2,1],[3,0,2,1],[2,3,3,1],[0,2,0,1]],[[1,2,2,2],[2,0,2,1],[2,3,3,1],[0,2,0,1]],[[1,2,3,1],[2,0,2,1],[2,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,0,2,1],[2,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,0,2,1],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,2,2,0],[1,2,4,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,0],[1,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,0],[1,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,0],[1,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,0],[1,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,2,2,0],[1,4,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,0],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,0],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,0],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,0],[1,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,2,2,0],[1,4,3,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,0],[1,3,4,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,0],[1,3,3,2],[1,1,3,1]],[[0,2,1,0],[2,2,2,0],[1,3,3,2],[1,1,2,2]],[[0,2,1,0],[2,2,2,0],[1,4,3,2],[1,2,1,1]],[[0,2,1,0],[2,2,2,0],[1,3,4,2],[1,2,1,1]],[[0,2,1,0],[2,2,2,0],[1,3,3,2],[2,2,1,1]],[[0,2,1,0],[2,2,2,0],[1,3,3,2],[1,3,1,1]],[[0,2,1,0],[3,2,2,0],[2,1,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,0],[3,1,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,0],[2,1,4,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,0],[2,1,3,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,0],[2,1,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,0],[2,1,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,0],[2,1,3,2],[1,2,2,2]],[[0,2,1,0],[3,2,2,0],[2,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,0],[3,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,0],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,0],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,0],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,0],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,2,2,0],[2,2,4,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,0],[2,2,3,2],[0,3,2,1]],[[0,2,1,0],[2,2,2,0],[2,2,3,2],[0,2,3,1]],[[0,2,1,0],[2,2,2,0],[2,2,3,2],[0,2,2,2]],[[0,2,1,0],[3,2,2,0],[2,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,2,2,0],[3,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,2,2,0],[2,2,3,2],[2,2,1,1]],[[0,2,1,0],[2,2,2,0],[2,2,3,2],[1,3,1,1]],[[0,2,1,0],[3,2,2,0],[2,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,0],[3,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,0],[2,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,0],[2,3,1,2],[1,3,2,1]],[[0,2,1,0],[3,2,2,0],[2,3,2,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,0],[3,3,2,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,0],[2,4,2,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,0],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[2,2,2,0],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[2,2,2,0],[2,3,2,2],[0,2,2,2]],[[0,2,1,0],[3,2,2,0],[2,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,0],[3,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,0],[2,4,2,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,0],[2,3,2,2],[2,1,2,1]],[[0,2,1,0],[3,2,2,0],[2,3,3,2],[0,1,2,1]],[[0,2,1,0],[2,2,2,0],[3,3,3,2],[0,1,2,1]],[[0,2,1,0],[2,2,2,0],[2,4,3,2],[0,1,2,1]],[[0,2,1,0],[2,2,2,0],[2,3,4,2],[0,1,2,1]],[[0,2,1,0],[2,2,2,0],[2,3,3,2],[0,1,3,1]],[[0,2,1,0],[2,2,2,0],[2,3,3,2],[0,1,2,2]],[[0,2,1,0],[3,2,2,0],[2,3,3,2],[0,2,1,1]],[[0,2,1,0],[2,2,2,0],[3,3,3,2],[0,2,1,1]],[[0,2,1,0],[2,2,2,0],[2,4,3,2],[0,2,1,1]],[[0,2,1,0],[2,2,2,0],[2,3,4,2],[0,2,1,1]],[[0,2,1,0],[2,2,2,0],[2,3,3,2],[0,3,1,1]],[[0,2,1,0],[3,2,2,0],[2,3,3,2],[1,0,2,1]],[[0,2,1,0],[2,2,2,0],[3,3,3,2],[1,0,2,1]],[[0,2,1,0],[2,2,2,0],[2,4,3,2],[1,0,2,1]],[[0,2,1,0],[2,2,2,0],[2,3,4,2],[1,0,2,1]],[[0,2,1,0],[2,2,2,0],[2,3,3,2],[2,0,2,1]],[[0,2,1,0],[2,2,2,0],[2,3,3,2],[1,0,3,1]],[[0,2,1,0],[2,2,2,0],[2,3,3,2],[1,0,2,2]],[[0,2,1,0],[3,2,2,0],[2,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,2,2,0],[3,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,2,2,0],[2,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,2,2,0],[2,3,4,2],[1,1,1,1]],[[0,2,1,0],[2,2,2,0],[2,3,3,2],[2,1,1,1]],[[0,2,1,0],[3,2,2,0],[2,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,2,0],[3,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,2,0],[2,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,2,0],[2,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,2,2,1],[1,2,2,3],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[1,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[1,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,1],[1,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,1],[1,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,2,2,1],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,2,1],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,2,1],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,2,1],[1,2,4,2],[1,2,1,1]],[[0,2,1,0],[2,2,2,1],[1,2,3,3],[1,2,1,1]],[[0,2,1,0],[2,2,2,1],[1,2,3,2],[1,2,1,2]],[[0,2,1,0],[2,2,2,1],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,1],[1,2,3,3],[1,2,2,0]],[[0,2,1,0],[2,2,2,1],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,2,1],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,2,1],[1,2,3,2],[1,2,3,0]],[[0,2,1,0],[2,2,2,1],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,1],[1,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,2,2,1],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,2,2,1],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,2,2,1],[1,3,2,3],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,2,2],[1,1,3,1]],[[0,2,1,0],[2,2,2,1],[1,3,2,2],[1,1,2,2]],[[0,2,1,0],[2,2,2,1],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,1],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,2,2,1],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,2,2,1],[1,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,2,2,1],[1,4,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,0],[1,2,3,1]],[[0,2,1,0],[2,2,2,1],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,1],[1,1,2,2]],[[0,2,1,0],[2,2,2,1],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,2,1],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,2,2,1],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,2,2,1],[1,3,4,2],[1,1,1,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,3],[1,1,1,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,2],[1,1,1,2]],[[0,2,1,0],[2,2,2,1],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,2,1],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[2,2,2,1],[1,3,3,3],[1,1,2,0]],[[0,2,1,0],[2,2,2,1],[1,3,3,2],[1,1,3,0]],[[0,2,1,0],[2,2,2,1],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,2,1],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,3],[1,2,0,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,2,2,1],[1,3,3,2],[1,2,0,2]],[[0,2,1,0],[2,2,2,1],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,2,1],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[2,2,2,1],[1,3,3,3],[1,2,1,0]],[[0,2,1,0],[2,2,2,1],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,2,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,1],[2,3,3,1],[0,1,3,0]],[[1,2,2,1],[2,0,2,1],[2,3,4,1],[0,1,2,0]],[[1,2,2,1],[2,0,2,1],[2,4,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,2,1],[3,3,3,1],[0,1,2,0]],[[1,2,2,1],[3,0,2,1],[2,3,3,1],[0,1,2,0]],[[1,2,2,2],[2,0,2,1],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[3,2,2,1],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[3,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,1,2,3],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,1,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,1,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,1],[2,1,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,1],[2,1,2,2],[1,2,2,2]],[[0,2,1,0],[3,2,2,1],[2,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[3,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,1,4,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,1,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,1,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,2,1],[2,1,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,2,1],[2,1,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,2,1],[2,1,4,2],[1,2,1,1]],[[0,2,1,0],[2,2,2,1],[2,1,3,3],[1,2,1,1]],[[0,2,1,0],[2,2,2,1],[2,1,3,2],[1,2,1,2]],[[0,2,1,0],[3,2,2,1],[2,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,1],[3,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,1,4,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,1,3,3],[1,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,1,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,1,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,2,1],[2,1,3,2],[1,2,3,0]],[[0,2,1,0],[3,2,2,1],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[3,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,1,3],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,1,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,1,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,1,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,1],[2,2,1,2],[1,2,2,2]],[[0,2,1,0],[3,2,2,1],[2,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[2,2,2,1],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[2,2,2,1],[2,2,2,3],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,2,2],[0,3,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,2,2],[0,2,3,1]],[[0,2,1,0],[2,2,2,1],[2,2,2,2],[0,2,2,2]],[[0,2,1,0],[3,2,2,1],[2,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,1],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[2,2,2,1],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[3,2,2,1],[2,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[3,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,0],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,0],[1,3,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,0],[1,2,3,1]],[[0,2,1,0],[2,2,2,1],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[3,2,2,1],[2,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,2,1],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[2,2,2,1],[2,2,4,2],[0,2,1,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,3],[0,2,1,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,2],[0,2,1,2]],[[0,2,1,0],[2,2,2,1],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,2,3,3],[0,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[2,2,2,1],[2,2,3,2],[0,2,3,0]],[[0,2,1,0],[3,2,2,1],[2,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,2,1],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[2,2,2,1],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[3,2,2,1],[2,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,2,1],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,2,1],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[2,2,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,3,1],[2,0,2,1],[2,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,0,2,1],[2,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,0,2,1],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,2,1],[2,3,4,1],[0,1,1,1]],[[1,2,2,1],[2,0,2,1],[2,4,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,2,1],[3,3,3,1],[0,1,1,1]],[[1,2,2,1],[3,0,2,1],[2,3,3,1],[0,1,1,1]],[[1,2,2,2],[2,0,2,1],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[3,2,2,1],[2,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[3,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,0,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,0,2],[1,3,2,1]],[[0,2,1,0],[3,2,2,1],[2,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[3,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,1,1],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,1,1],[1,3,2,1]],[[0,2,1,0],[3,2,2,1],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[3,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,1,3],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[2,2,2,1],[2,3,1,2],[0,2,2,2]],[[0,2,1,0],[3,2,2,1],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[3,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[2,4,1,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,1,2],[2,1,2,1]],[[0,2,1,0],[3,2,2,1],[2,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,1],[3,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,1,2],[2,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,1,2],[1,3,2,0]],[[0,2,1,0],[3,2,2,1],[2,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[3,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,2,0],[2,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,2,0],[1,3,2,1]],[[0,2,1,0],[3,2,2,1],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,2,2,1],[2,3,2,1],[0,2,2,2]],[[0,2,1,0],[3,2,2,1],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,2,3],[0,1,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,2,2],[0,1,3,1]],[[0,2,1,0],[2,2,2,1],[2,3,2,2],[0,1,2,2]],[[0,2,1,0],[3,2,2,1],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,2,1],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[2,2,2,1],[2,3,2,3],[1,0,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,2,2],[1,0,3,1]],[[0,2,1,0],[2,2,2,1],[2,3,2,2],[1,0,2,2]],[[0,2,1,0],[3,2,2,1],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,2,2,1],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,2,2,1],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,3,1],[2,0,2,1],[2,3,3,1],[0,1,1,1]],[[1,3,2,1],[2,0,2,1],[2,3,3,1],[0,1,1,1]],[[2,2,2,1],[2,0,2,1],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[3,2,2,1],[2,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[3,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,4,3,0],[0,2,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,0],[0,3,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,0],[0,2,3,1]],[[0,2,1,0],[3,2,2,1],[2,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[3,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[2,4,3,0],[1,1,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,0],[2,1,2,1]],[[0,2,1,0],[3,2,2,1],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,2,1],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,2,1],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,1],[0,1,2,2]],[[0,2,1,0],[3,2,2,1],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,2,1],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,2,1],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,2,1],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[3,2,2,1],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,2,1],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,2,1],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,1],[1,0,2,2]],[[0,2,1,0],[3,2,2,1],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,2,1],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,2,1],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,2,1],[2,3,4,1],[1,1,1,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,1],[2,1,1,1]],[[0,2,1,0],[3,2,2,1],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,2,1],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,2,1],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,2,1],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,0,2,1],[2,4,3,0],[1,2,0,1]],[[1,2,2,1],[2,0,2,1],[3,3,3,0],[1,2,0,1]],[[0,2,1,0],[2,2,2,1],[2,3,4,2],[0,0,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,3],[0,0,2,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[0,0,2,2]],[[0,2,1,0],[3,2,2,1],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,2,1],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,2,1],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,2,1],[2,3,4,2],[0,1,1,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,3],[0,1,1,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[0,1,1,2]],[[0,2,1,0],[3,2,2,1],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,2,1],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,2,1],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,3,3],[0,1,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[0,1,3,0]],[[0,2,1,0],[3,2,2,1],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,2,1],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,2,1],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,2,1],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,3],[0,2,0,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[0,2,0,2]],[[0,2,1,0],[3,2,2,1],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,2,1],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,2,1],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,2,1],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,2,2,1],[2,3,3,3],[0,2,1,0]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[3,0,2,1],[2,3,3,0],[1,2,0,1]],[[1,2,2,2],[2,0,2,1],[2,3,3,0],[1,2,0,1]],[[1,2,3,1],[2,0,2,1],[2,3,3,0],[1,2,0,1]],[[1,3,2,1],[2,0,2,1],[2,3,3,0],[1,2,0,1]],[[2,2,2,1],[2,0,2,1],[2,3,3,0],[1,2,0,1]],[[0,2,1,0],[3,2,2,1],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,2,1],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,2,1],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,2,1],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,3],[1,0,1,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[2,0,1,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[1,0,1,2]],[[0,2,1,0],[3,2,2,1],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,2,1],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,2,1],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,3,3],[1,0,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[1,0,3,0]],[[0,2,1,0],[3,2,2,1],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,2,1],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,2,1],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,2,1],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,3],[1,1,0,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[1,1,0,2]],[[0,2,1,0],[3,2,2,1],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,2,1],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,2,1],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,2,1],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[2,2,2,1],[2,3,3,3],[1,1,1,0]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[2,1,1,0]],[[0,2,1,0],[3,2,2,1],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,2,2,1],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,2,2,1],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[2,2,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,2,1],[2,3,3,0],[2,1,1,1]],[[1,2,2,1],[2,0,2,1],[2,3,4,0],[1,1,1,1]],[[1,2,2,1],[2,0,2,1],[2,4,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,2,1],[3,3,3,0],[1,1,1,1]],[[1,2,2,1],[3,0,2,1],[2,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,0,2,1],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[2,0,2,1],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,0,2,1],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,0,2,1],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,2,1],[2,3,3,0],[1,0,2,2]],[[1,2,2,1],[2,0,2,1],[2,3,3,0],[1,0,3,1]],[[1,2,2,1],[2,0,2,1],[2,3,3,0],[2,0,2,1]],[[1,2,2,1],[2,0,2,1],[2,3,4,0],[1,0,2,1]],[[1,2,2,1],[2,0,2,1],[2,4,3,0],[1,0,2,1]],[[1,2,2,1],[2,0,2,1],[3,3,3,0],[1,0,2,1]],[[1,2,2,1],[3,0,2,1],[2,3,3,0],[1,0,2,1]],[[1,2,2,2],[2,0,2,1],[2,3,3,0],[1,0,2,1]],[[1,2,3,1],[2,0,2,1],[2,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,0,2,1],[2,3,3,0],[1,0,2,1]],[[2,2,2,1],[2,0,2,1],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[0,1,3,3],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,1,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[0,1,3,2],[1,2,2,2]],[[0,2,1,0],[2,2,2,3],[0,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,2,2,3],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[0,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[0,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,2,2,2],[0,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[0,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[0,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,2,3],[0,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[0,2,4,2],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[0,2,3,3],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[0,2,3,2],[1,2,1,2]],[[0,2,1,0],[2,2,2,3],[0,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[0,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[0,2,3,3],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[0,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,2,2],[0,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,2,2],[0,2,3,2],[1,2,3,0]],[[0,2,1,0],[2,2,2,3],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,4,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[0,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,2,2,2],[0,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[0,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,2,2,3],[0,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,2,3],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,2,2],[1,1,3,1]],[[0,2,1,0],[2,2,2,2],[0,3,2,2],[1,1,2,2]],[[0,2,1,0],[2,2,2,2],[0,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[0,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,2,2,2],[0,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,2,2,2],[0,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,2,2,2],[0,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,4,1],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,1],[1,1,3,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,1],[1,1,2,2]],[[0,2,1,0],[2,2,2,2],[0,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[0,3,4,1],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,2,2,3],[0,3,3,2],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,4,2],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,3],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,2],[1,0,2,2]],[[0,2,1,0],[2,2,2,3],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,2,2,2],[0,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,2,2,2],[0,3,4,2],[1,1,1,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,3],[1,1,1,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,2],[1,1,1,2]],[[0,2,1,0],[2,2,2,3],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,2,2],[0,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,2,2],[0,3,4,2],[1,1,2,0]],[[0,2,1,0],[2,2,2,2],[0,3,3,3],[1,1,2,0]],[[0,2,1,0],[2,2,2,2],[0,3,3,2],[1,1,3,0]],[[0,2,1,0],[2,2,2,3],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,2,2],[0,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,2,2],[0,3,4,2],[1,2,0,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,3],[1,2,0,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,2,2,2],[0,3,3,2],[1,2,0,2]],[[0,2,1,0],[2,2,2,3],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,2,2],[0,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,2,2],[0,3,4,2],[1,2,1,0]],[[0,2,1,0],[2,2,2,2],[0,3,3,3],[1,2,1,0]],[[0,2,1,0],[2,2,2,2],[0,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,1],[2,3,3,0],[0,3,1,1]],[[1,2,2,1],[2,0,2,1],[2,3,4,0],[0,2,1,1]],[[0,2,1,0],[2,2,2,2],[1,1,3,3],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,1,3,2],[0,2,3,1]],[[0,2,1,0],[2,2,2,2],[1,1,3,2],[0,2,2,2]],[[0,2,1,0],[2,2,2,3],[1,2,2,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,2,2,3],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,2,2,2],[0,3,2,1]],[[0,2,1,0],[2,2,2,2],[1,2,2,2],[0,2,3,1]],[[0,2,1,0],[2,2,2,2],[1,2,2,2],[0,2,2,2]],[[0,2,1,0],[2,2,2,2],[1,2,4,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,2,3,0],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,2,3,0],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[1,2,3,0],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[1,2,3,0],[1,2,2,2]],[[0,2,1,0],[2,2,2,2],[1,2,4,1],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,2,3,1],[0,3,2,1]],[[0,2,1,0],[2,2,2,2],[1,2,3,1],[0,2,3,1]],[[0,2,1,0],[2,2,2,2],[1,2,3,1],[0,2,2,2]],[[0,2,1,0],[2,2,2,2],[1,2,4,1],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[1,2,3,1],[2,2,2,0]],[[0,2,1,0],[2,2,2,2],[1,2,3,1],[1,3,2,0]],[[0,2,1,0],[2,2,2,2],[1,2,3,1],[1,2,3,0]],[[0,2,1,0],[2,2,2,3],[1,2,3,2],[0,2,1,1]],[[0,2,1,0],[2,2,2,2],[1,2,4,2],[0,2,1,1]],[[0,2,1,0],[2,2,2,2],[1,2,3,3],[0,2,1,1]],[[0,2,1,0],[2,2,2,2],[1,2,3,2],[0,2,1,2]],[[0,2,1,0],[2,2,2,3],[1,2,3,2],[0,2,2,0]],[[0,2,1,0],[2,2,2,2],[1,2,4,2],[0,2,2,0]],[[0,2,1,0],[2,2,2,2],[1,2,3,3],[0,2,2,0]],[[0,2,1,0],[2,2,2,2],[1,2,3,2],[0,3,2,0]],[[0,2,1,0],[2,2,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,2,1],[2,4,3,0],[0,2,1,1]],[[1,2,2,1],[2,0,2,1],[3,3,3,0],[0,2,1,1]],[[1,2,2,1],[3,0,2,1],[2,3,3,0],[0,2,1,1]],[[1,2,2,2],[2,0,2,1],[2,3,3,0],[0,2,1,1]],[[1,2,3,1],[2,0,2,1],[2,3,3,0],[0,2,1,1]],[[1,3,2,1],[2,0,2,1],[2,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,0,2,1],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,2,2,3],[1,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,4,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,0,3],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,0,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,0,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,0,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[1,3,0,2],[1,2,2,2]],[[0,2,1,0],[2,2,2,3],[1,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,4,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,1,3],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,1,2],[0,3,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,1,2],[0,2,3,1]],[[0,2,1,0],[2,2,2,2],[1,3,1,2],[0,2,2,2]],[[0,2,1,0],[2,2,2,2],[1,4,2,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,0],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,0],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,0],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,0],[1,2,2,2]],[[0,2,1,0],[2,2,2,2],[1,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,1],[0,2,2,2]],[[0,2,1,0],[2,2,2,2],[1,4,2,1],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,2,1],[2,2,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,2,1],[1,3,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,2,1],[1,2,3,0]],[[0,2,1,0],[2,2,2,3],[1,3,2,2],[0,1,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,3],[0,1,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,2],[0,1,3,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,2],[0,1,2,2]],[[0,2,1,0],[2,2,2,2],[1,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,2,2],[0,2,3,0]],[[0,2,1,0],[2,2,2,3],[1,3,2,2],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,3],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,2],[1,0,3,1]],[[0,2,1,0],[2,2,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,0,2,1],[2,3,3,0],[0,1,2,2]],[[1,2,2,1],[2,0,2,1],[2,3,3,0],[0,1,3,1]],[[1,2,2,1],[2,0,2,1],[2,3,4,0],[0,1,2,1]],[[1,2,2,1],[2,0,2,1],[2,4,3,0],[0,1,2,1]],[[1,2,2,1],[2,0,2,1],[3,3,3,0],[0,1,2,1]],[[1,2,2,1],[3,0,2,1],[2,3,3,0],[0,1,2,1]],[[1,2,2,2],[2,0,2,1],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,2,2,2],[1,4,3,0],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,4,0],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,0],[1,1,3,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,0],[1,1,2,2]],[[0,2,1,0],[2,2,2,2],[1,4,3,0],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[1,3,4,0],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,0],[2,2,1,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,0],[1,3,1,1]],[[0,2,1,0],[2,2,2,2],[1,4,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,1],[0,1,2,2]],[[0,2,1,0],[2,2,2,2],[1,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,2,2],[1,3,4,1],[0,2,1,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,1],[0,3,1,1]],[[0,2,1,0],[2,2,2,2],[1,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,4,1],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,1],[1,0,3,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,1],[1,0,2,2]],[[0,2,1,0],[2,2,2,2],[1,4,3,1],[1,1,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,4,1],[1,1,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,3,1],[1,1,3,0]],[[0,2,1,0],[2,2,2,2],[1,4,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,2,2],[1,3,4,1],[1,2,0,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,1],[2,2,0,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,1],[1,3,0,1]],[[0,2,1,0],[2,2,2,2],[1,4,3,1],[1,2,1,0]],[[0,2,1,0],[2,2,2,2],[1,3,4,1],[1,2,1,0]],[[0,2,1,0],[2,2,2,2],[1,3,3,1],[2,2,1,0]],[[0,2,1,0],[2,2,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,3,1],[2,0,2,1],[2,3,3,0],[0,1,2,1]],[[1,3,2,1],[2,0,2,1],[2,3,3,0],[0,1,2,1]],[[2,2,2,1],[2,0,2,1],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,2,2,3],[1,3,3,2],[0,0,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,4,2],[0,0,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,3],[0,0,2,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,2],[0,0,2,2]],[[0,2,1,0],[2,2,2,3],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,2,2],[1,4,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,2,2],[1,3,4,2],[0,1,1,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,3],[0,1,1,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,2],[0,1,1,2]],[[0,2,1,0],[2,2,2,3],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,2,2],[1,4,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,3,3],[0,1,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,3,2],[0,1,3,0]],[[0,2,1,0],[2,2,2,3],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,2,2],[1,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,2,2],[1,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,3],[0,2,0,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,2],[0,3,0,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,2],[0,2,0,2]],[[0,2,1,0],[2,2,2,3],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,2,2],[1,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,2,2],[1,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,2,2,2],[1,3,3,3],[0,2,1,0]],[[0,2,1,0],[2,2,2,2],[1,3,3,2],[0,3,1,0]],[[0,2,1,0],[2,2,2,3],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,2,2],[1,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,2,2],[1,3,4,2],[1,0,1,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,3],[1,0,1,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,2],[1,0,1,2]],[[0,2,1,0],[2,2,2,3],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,2,2],[1,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,4,2],[1,0,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,3,3],[1,0,2,0]],[[0,2,1,0],[2,2,2,2],[1,3,3,2],[1,0,3,0]],[[0,2,1,0],[2,2,2,3],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,2,2],[1,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,2,2],[1,3,4,2],[1,1,0,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,3],[1,1,0,1]],[[0,2,1,0],[2,2,2,2],[1,3,3,2],[1,1,0,2]],[[0,2,1,0],[2,2,2,3],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,2,2],[1,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,2,2],[1,3,4,2],[1,1,1,0]],[[0,2,1,0],[2,2,2,2],[1,3,3,3],[1,1,1,0]],[[0,2,1,0],[3,2,2,2],[2,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,3],[2,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[3,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,0,2,3],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,0,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,0,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[2,0,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[2,0,2,2],[1,2,2,2]],[[0,2,1,0],[3,2,2,2],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[3,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,0,4,1],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,0,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,0,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[2,0,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[2,0,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,2,3],[2,0,3,2],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[2,0,4,2],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[2,0,3,3],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[2,0,3,2],[1,2,1,2]],[[0,2,1,0],[3,2,2,2],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,3],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[3,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,0,4,2],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,0,3,3],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,0,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,0,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,2,2],[2,0,3,2],[1,2,3,0]],[[0,2,1,0],[3,2,2,2],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[3,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,1,4,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,1,3,0],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,1,3,0],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[2,1,3,0],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[2,1,3,0],[1,2,2,2]],[[0,2,1,0],[3,2,2,2],[2,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[3,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,1,4,1],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,1,3,1],[2,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,1,3,1],[1,3,2,0]],[[0,2,1,0],[2,2,2,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,0,2,1],[2,4,2,1],[1,1,2,0]],[[1,2,2,1],[2,0,2,1],[3,3,2,1],[1,1,2,0]],[[1,2,2,1],[3,0,2,1],[2,3,2,1],[1,1,2,0]],[[1,2,2,2],[2,0,2,1],[2,3,2,1],[1,1,2,0]],[[1,2,3,1],[2,0,2,1],[2,3,2,1],[1,1,2,0]],[[0,2,1,0],[3,2,2,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,3],[2,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[3,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,2,0,3],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,2,0,2],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,2,0,2],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[2,2,0,2],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[2,2,0,2],[1,2,2,2]],[[0,2,1,0],[3,2,2,2],[2,2,2,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[3,2,2,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,2,2,0],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,2,2,0],[1,3,2,1]],[[0,2,1,0],[2,2,2,2],[2,2,2,0],[1,2,3,1]],[[0,2,1,0],[2,2,2,2],[2,2,2,0],[1,2,2,2]],[[0,2,1,0],[3,2,2,2],[2,2,2,1],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[3,2,2,1],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,2,2,1],[2,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,2,2,1],[1,3,2,0]],[[0,2,1,0],[2,2,2,2],[2,2,2,1],[1,2,3,0]],[[1,3,2,1],[2,0,2,1],[2,3,2,1],[1,1,2,0]],[[2,2,2,1],[2,0,2,1],[2,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,2,2,2],[2,2,4,0],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,2,3,0],[0,3,2,1]],[[0,2,1,0],[2,2,2,2],[2,2,3,0],[0,2,3,1]],[[0,2,1,0],[2,2,2,2],[2,2,3,0],[0,2,2,2]],[[0,2,1,0],[3,2,2,2],[2,2,3,0],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[3,2,3,0],[1,2,1,1]],[[0,2,1,0],[2,2,2,2],[2,2,3,0],[2,2,1,1]],[[0,2,1,0],[2,2,2,2],[2,2,3,0],[1,3,1,1]],[[0,2,1,0],[2,2,2,2],[2,2,4,1],[0,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,2,3,1],[0,3,2,0]],[[0,2,1,0],[2,2,2,2],[2,2,3,1],[0,2,3,0]],[[0,2,1,0],[3,2,2,2],[2,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,2,2],[3,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,2,2],[2,2,3,1],[2,2,0,1]],[[0,2,1,0],[2,2,2,2],[2,2,3,1],[1,3,0,1]],[[0,2,1,0],[3,2,2,2],[2,2,3,1],[1,2,1,0]],[[0,2,1,0],[2,2,2,2],[3,2,3,1],[1,2,1,0]],[[0,2,1,0],[2,2,2,2],[2,2,3,1],[2,2,1,0]],[[0,2,1,0],[2,2,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,2,1],[2,3,2,1],[0,2,3,0]],[[1,2,2,1],[2,0,2,1],[2,3,2,1],[0,3,2,0]],[[1,2,2,1],[2,0,2,1],[2,4,2,1],[0,2,2,0]],[[1,2,2,1],[2,0,2,1],[3,3,2,1],[0,2,2,0]],[[1,2,2,1],[3,0,2,1],[2,3,2,1],[0,2,2,0]],[[1,2,2,2],[2,0,2,1],[2,3,2,1],[0,2,2,0]],[[1,2,3,1],[2,0,2,1],[2,3,2,1],[0,2,2,0]],[[1,3,2,1],[2,0,2,1],[2,3,2,1],[0,2,2,0]],[[2,2,2,1],[2,0,2,1],[2,3,2,1],[0,2,2,0]],[[1,2,2,1],[2,0,2,1],[2,3,2,0],[2,1,2,1]],[[1,2,2,1],[2,0,2,1],[2,4,2,0],[1,1,2,1]],[[1,2,2,1],[2,0,2,1],[3,3,2,0],[1,1,2,1]],[[1,2,2,1],[3,0,2,1],[2,3,2,0],[1,1,2,1]],[[1,2,2,2],[2,0,2,1],[2,3,2,0],[1,1,2,1]],[[1,2,3,1],[2,0,2,1],[2,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,0,2,1],[2,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,0,2,1],[2,3,2,0],[1,1,2,1]],[[1,2,2,1],[2,0,2,1],[2,3,2,0],[0,2,2,2]],[[1,2,2,1],[2,0,2,1],[2,3,2,0],[0,2,3,1]],[[1,2,2,1],[2,0,2,1],[2,3,2,0],[0,3,2,1]],[[1,2,2,1],[2,0,2,1],[2,4,2,0],[0,2,2,1]],[[1,2,2,1],[2,0,2,1],[3,3,2,0],[0,2,2,1]],[[1,2,2,1],[3,0,2,1],[2,3,2,0],[0,2,2,1]],[[0,2,1,0],[3,2,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,3],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[3,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,4,0,2],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,0,3],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,0,2],[0,3,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,0,2],[0,2,3,1]],[[0,2,1,0],[2,2,2,2],[2,3,0,2],[0,2,2,2]],[[0,2,1,0],[3,2,2,2],[2,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[3,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[2,4,0,2],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,0,2],[2,1,2,1]],[[0,2,1,0],[3,2,2,2],[2,3,1,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[3,3,1,0],[1,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,1,0],[2,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,1,0],[1,3,2,1]],[[0,2,1,0],[3,2,2,2],[2,3,1,1],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[3,3,1,1],[1,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,3,1,1],[2,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,2],[2,0,2,1],[2,3,2,0],[0,2,2,1]],[[1,2,3,1],[2,0,2,1],[2,3,2,0],[0,2,2,1]],[[1,3,2,1],[2,0,2,1],[2,3,2,0],[0,2,2,1]],[[2,2,2,1],[2,0,2,1],[2,3,2,0],[0,2,2,1]],[[0,2,1,0],[3,2,2,2],[2,3,2,0],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[3,3,2,0],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,4,2,0],[0,2,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,2,0],[0,3,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,2,0],[0,2,3,1]],[[0,2,1,0],[2,2,2,2],[2,3,2,0],[0,2,2,2]],[[0,2,1,0],[3,2,2,2],[2,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[3,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[2,4,2,0],[1,1,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,2,0],[2,1,2,1]],[[0,2,1,0],[3,2,2,2],[2,3,2,1],[0,2,2,0]],[[0,2,1,0],[2,2,2,2],[3,3,2,1],[0,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,4,2,1],[0,2,2,0]],[[0,2,1,0],[2,2,2,2],[2,3,2,1],[0,3,2,0]],[[0,2,1,0],[2,2,2,2],[2,3,2,1],[0,2,3,0]],[[0,2,1,0],[3,2,2,2],[2,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,2,2,2],[3,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,2,2,2],[2,4,2,1],[1,1,2,0]],[[0,2,1,0],[2,2,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,0,2,1],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[2,0,2,1],[2,4,0,2],[1,1,2,1]],[[1,2,2,1],[2,0,2,1],[3,3,0,2],[1,1,2,1]],[[1,2,2,1],[3,0,2,1],[2,3,0,2],[1,1,2,1]],[[1,2,2,2],[2,0,2,1],[2,3,0,2],[1,1,2,1]],[[1,2,3,1],[2,0,2,1],[2,3,0,2],[1,1,2,1]],[[1,3,2,1],[2,0,2,1],[2,3,0,2],[1,1,2,1]],[[2,2,2,1],[2,0,2,1],[2,3,0,2],[1,1,2,1]],[[1,2,2,1],[2,0,2,1],[2,3,0,2],[0,2,2,2]],[[1,2,2,1],[2,0,2,1],[2,3,0,2],[0,2,3,1]],[[1,2,2,1],[2,0,2,1],[2,3,0,2],[0,3,2,1]],[[1,2,2,1],[2,0,2,1],[2,3,0,3],[0,2,2,1]],[[0,2,1,0],[3,2,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,2,2,2],[3,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,2,2,2],[2,4,3,0],[0,1,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,4,0],[0,1,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,3,0],[0,1,3,1]],[[0,2,1,0],[2,2,2,2],[2,3,3,0],[0,1,2,2]],[[0,2,1,0],[3,2,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,2,2,2],[3,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,2,2,2],[2,4,3,0],[0,2,1,1]],[[0,2,1,0],[2,2,2,2],[2,3,4,0],[0,2,1,1]],[[0,2,1,0],[2,2,2,2],[2,3,3,0],[0,3,1,1]],[[0,2,1,0],[3,2,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[3,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[2,4,3,0],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,4,0],[1,0,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,3,0],[2,0,2,1]],[[0,2,1,0],[2,2,2,2],[2,3,3,0],[1,0,3,1]],[[0,2,1,0],[2,2,2,2],[2,3,3,0],[1,0,2,2]],[[0,2,1,0],[3,2,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,2,2,2],[3,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,2,2,2],[2,4,3,0],[1,1,1,1]],[[0,2,1,0],[2,2,2,2],[2,3,4,0],[1,1,1,1]],[[0,2,1,0],[2,2,2,2],[2,3,3,0],[2,1,1,1]],[[0,2,1,0],[3,2,2,2],[2,3,3,0],[1,2,0,1]],[[0,2,1,0],[2,2,2,2],[3,3,3,0],[1,2,0,1]],[[0,2,1,0],[2,2,2,2],[2,4,3,0],[1,2,0,1]],[[0,2,1,0],[2,2,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,0,2,1],[2,4,0,2],[0,2,2,1]],[[1,2,2,1],[2,0,2,1],[3,3,0,2],[0,2,2,1]],[[1,2,2,1],[3,0,2,1],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[2,0,2,1],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[2,0,2,1],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[2,0,2,1],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[2,0,2,1],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[3,2,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,2,2,2],[3,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,2,2,2],[2,4,3,1],[0,1,1,1]],[[0,2,1,0],[2,2,2,2],[2,3,4,1],[0,1,1,1]],[[0,2,1,0],[3,2,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,2,2,2],[3,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,2,2,2],[2,4,3,1],[0,1,2,0]],[[0,2,1,0],[2,2,2,2],[2,3,4,1],[0,1,2,0]],[[0,2,1,0],[2,2,2,2],[2,3,3,1],[0,1,3,0]],[[0,2,1,0],[3,2,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,2,2,2],[3,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,2,2,2],[2,4,3,1],[0,2,0,1]],[[0,2,1,0],[2,2,2,2],[2,3,4,1],[0,2,0,1]],[[0,2,1,0],[2,2,2,2],[2,3,3,1],[0,3,0,1]],[[0,2,1,0],[3,2,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,2,2,2],[3,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,2,2,2],[2,4,3,1],[0,2,1,0]],[[0,2,1,0],[2,2,2,2],[2,3,4,1],[0,2,1,0]],[[0,2,1,0],[2,2,2,2],[2,3,3,1],[0,3,1,0]],[[0,2,1,0],[3,2,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,2,2,2],[3,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,2,2,2],[2,4,3,1],[1,0,1,1]],[[0,2,1,0],[2,2,2,2],[2,3,4,1],[1,0,1,1]],[[0,2,1,0],[2,2,2,2],[2,3,3,1],[2,0,1,1]],[[0,2,1,0],[3,2,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,2,2,2],[3,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,2,2,2],[2,4,3,1],[1,0,2,0]],[[0,2,1,0],[2,2,2,2],[2,3,4,1],[1,0,2,0]],[[0,2,1,0],[2,2,2,2],[2,3,3,1],[2,0,2,0]],[[0,2,1,0],[2,2,2,2],[2,3,3,1],[1,0,3,0]],[[0,2,1,0],[3,2,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,2,2,2],[3,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,2,2,2],[2,4,3,1],[1,1,0,1]],[[0,2,1,0],[2,2,2,2],[2,3,4,1],[1,1,0,1]],[[0,2,1,0],[2,2,2,2],[2,3,3,1],[2,1,0,1]],[[0,2,1,0],[3,2,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,2,2,2],[3,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,2,2,2],[2,4,3,1],[1,1,1,0]],[[0,2,1,0],[2,2,2,2],[2,3,4,1],[1,1,1,0]],[[0,2,1,0],[2,2,2,2],[2,3,3,1],[2,1,1,0]],[[0,2,1,0],[3,2,2,2],[2,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,2,2,2],[3,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,2,2,2],[2,4,3,1],[1,2,0,0]],[[0,2,1,0],[2,2,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,0,2,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,2,1],[2,2,3,1],[2,2,1,0]],[[1,2,2,1],[2,0,2,1],[3,2,3,1],[1,2,1,0]],[[1,2,2,1],[3,0,2,1],[2,2,3,1],[1,2,1,0]],[[1,2,2,2],[2,0,2,1],[2,2,3,1],[1,2,1,0]],[[1,2,3,1],[2,0,2,1],[2,2,3,1],[1,2,1,0]],[[1,3,2,1],[2,0,2,1],[2,2,3,1],[1,2,1,0]],[[2,2,2,1],[2,0,2,1],[2,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,2,1],[2,2,3,1],[1,3,0,1]],[[1,2,2,1],[2,0,2,1],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,2,1],[3,2,3,1],[1,2,0,1]],[[1,2,2,1],[3,0,2,1],[2,2,3,1],[1,2,0,1]],[[1,2,2,2],[2,0,2,1],[2,2,3,1],[1,2,0,1]],[[1,2,3,1],[2,0,2,1],[2,2,3,1],[1,2,0,1]],[[1,3,2,1],[2,0,2,1],[2,2,3,1],[1,2,0,1]],[[2,2,2,1],[2,0,2,1],[2,2,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,2,1],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,0,2,1],[2,2,3,1],[0,3,2,0]],[[1,2,2,1],[2,0,2,1],[2,2,4,1],[0,2,2,0]],[[1,2,2,1],[2,0,2,1],[2,2,3,0],[1,3,1,1]],[[1,2,2,1],[2,0,2,1],[2,2,3,0],[2,2,1,1]],[[1,2,2,1],[2,0,2,1],[3,2,3,0],[1,2,1,1]],[[1,2,2,1],[3,0,2,1],[2,2,3,0],[1,2,1,1]],[[1,2,2,2],[2,0,2,1],[2,2,3,0],[1,2,1,1]],[[1,2,3,1],[2,0,2,1],[2,2,3,0],[1,2,1,1]],[[1,3,2,1],[2,0,2,1],[2,2,3,0],[1,2,1,1]],[[2,2,2,1],[2,0,2,1],[2,2,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,2,1],[2,2,3,0],[0,2,2,2]],[[1,2,2,1],[2,0,2,1],[2,2,3,0],[0,2,3,1]],[[1,2,2,1],[2,0,2,1],[2,2,3,0],[0,3,2,1]],[[1,2,2,1],[2,0,2,1],[2,2,4,0],[0,2,2,1]],[[1,2,2,1],[2,0,2,1],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,1],[2,2,2,1],[1,3,2,0]],[[1,2,2,1],[2,0,2,1],[2,2,2,1],[2,2,2,0]],[[1,2,2,1],[2,0,2,1],[3,2,2,1],[1,2,2,0]],[[1,2,2,1],[3,0,2,1],[2,2,2,1],[1,2,2,0]],[[1,2,2,2],[2,0,2,1],[2,2,2,1],[1,2,2,0]],[[1,2,3,1],[2,0,2,1],[2,2,2,1],[1,2,2,0]],[[1,3,2,1],[2,0,2,1],[2,2,2,1],[1,2,2,0]],[[2,2,2,1],[2,0,2,1],[2,2,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,2,1],[2,2,2,0],[1,2,2,2]],[[1,2,2,1],[2,0,2,1],[2,2,2,0],[1,2,3,1]],[[1,2,2,1],[2,0,2,1],[2,2,2,0],[1,3,2,1]],[[1,2,2,1],[2,0,2,1],[2,2,2,0],[2,2,2,1]],[[1,2,2,1],[2,0,2,1],[3,2,2,0],[1,2,2,1]],[[1,2,2,1],[3,0,2,1],[2,2,2,0],[1,2,2,1]],[[1,2,2,2],[2,0,2,1],[2,2,2,0],[1,2,2,1]],[[1,2,3,1],[2,0,2,1],[2,2,2,0],[1,2,2,1]],[[1,3,2,1],[2,0,2,1],[2,2,2,0],[1,2,2,1]],[[2,2,2,1],[2,0,2,1],[2,2,2,0],[1,2,2,1]],[[1,2,2,1],[2,0,2,1],[2,2,0,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,1],[2,2,0,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,1],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[2,0,2,1],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[2,0,2,1],[2,2,0,3],[1,2,2,1]],[[1,2,2,1],[2,0,2,1],[3,2,0,2],[1,2,2,1]],[[1,2,2,1],[3,0,2,1],[2,2,0,2],[1,2,2,1]],[[1,2,2,2],[2,0,2,1],[2,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[0,2,4,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[0,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,0],[0,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,0],[0,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,0],[0,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,2,3,0],[0,4,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[0,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,0],[0,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,0],[0,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,0],[0,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,2,3,0],[0,4,3,2],[1,1,2,1]],[[0,2,1,0],[2,2,3,0],[0,3,4,2],[1,1,2,1]],[[0,2,1,0],[2,2,3,0],[0,3,3,2],[1,1,3,1]],[[0,2,1,0],[2,2,3,0],[0,3,3,2],[1,1,2,2]],[[0,2,1,0],[2,2,3,0],[0,4,3,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,0],[0,3,4,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,0],[0,3,3,2],[2,2,1,1]],[[0,2,1,0],[2,2,3,0],[0,3,3,2],[1,3,1,1]],[[0,2,1,0],[2,2,3,0],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[1,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,0],[1,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,3,0],[1,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,3,0],[1,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,3,0],[1,2,4,2],[0,2,2,1]],[[0,2,1,0],[2,2,3,0],[1,2,3,2],[0,3,2,1]],[[0,2,1,0],[2,2,3,0],[1,2,3,2],[0,2,3,1]],[[0,2,1,0],[2,2,3,0],[1,2,3,2],[0,2,2,2]],[[0,2,1,0],[2,2,3,0],[1,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,0],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,0],[1,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,3,0],[1,2,3,2],[1,2,3,0]],[[0,2,1,0],[2,2,3,0],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,2,3,0],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,2,3,0],[1,4,2,2],[0,2,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,2,2],[0,3,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,2,2],[0,2,3,1]],[[0,2,1,0],[2,2,3,0],[1,3,2,2],[0,2,2,2]],[[0,2,1,0],[2,2,3,0],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,0],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,0],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,2,3,0],[1,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,2,3,0],[1,4,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,0],[1,2,3,1]],[[0,2,1,0],[2,2,3,0],[1,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,4,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,1],[1,1,3,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,1],[1,1,2,2]],[[0,2,1,0],[2,2,3,0],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,0],[1,3,4,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,2,3,0],[1,4,3,2],[0,1,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,4,2],[0,1,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,2],[0,1,3,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,2],[0,1,2,2]],[[0,2,1,0],[2,2,3,0],[1,4,3,2],[0,2,1,1]],[[0,2,1,0],[2,2,3,0],[1,3,4,2],[0,2,1,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,2],[0,3,1,1]],[[0,2,1,0],[2,2,3,0],[1,4,3,2],[1,0,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,4,2],[1,0,2,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,2],[1,0,3,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,2],[1,0,2,2]],[[0,2,1,0],[2,2,3,0],[1,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,0],[1,3,4,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,0],[1,3,3,2],[1,1,3,0]],[[0,2,1,0],[2,2,3,0],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,0],[1,3,4,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,2,3,0],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,2,3,0],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,0],[1,3,4,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,0],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,2,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,3,1],[2,0,2,1],[2,2,0,2],[1,2,2,1]],[[1,3,2,1],[2,0,2,1],[2,2,0,2],[1,2,2,1]],[[2,2,2,1],[2,0,2,1],[2,2,0,2],[1,2,2,1]],[[0,2,1,0],[3,2,3,0],[2,0,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[3,0,3,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,0,4,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,0,3,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,0,3,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,0],[2,0,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,0],[2,0,3,2],[1,2,2,2]],[[0,2,1,0],[3,2,3,0],[2,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[3,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,1,4,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,1,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,1,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,3,0],[2,1,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,3,0],[2,1,3,1],[1,2,2,2]],[[0,2,1,0],[3,2,3,0],[2,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,0],[3,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,0],[2,1,4,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,0],[2,1,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,0],[2,1,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,3,0],[2,1,3,2],[1,2,3,0]],[[0,2,1,0],[3,2,3,0],[2,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[2,2,3,0],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[2,2,3,0],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[3,2,3,0],[2,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,0],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,0],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,0],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[2,2,3,0],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[3,2,3,0],[2,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[3,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,2,3,0],[2,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,2,3,0],[1,3,2,1]],[[0,2,1,0],[2,2,3,0],[2,2,3,0],[1,2,3,1]],[[0,2,1,0],[2,2,3,0],[2,2,4,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,2,3,1],[0,3,2,1]],[[0,2,1,0],[2,2,3,0],[2,2,3,1],[0,2,3,1]],[[0,2,1,0],[2,2,3,0],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[3,2,3,0],[2,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,0],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,0],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[2,2,3,0],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[2,2,3,0],[2,2,4,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,0],[2,2,3,2],[0,3,2,0]],[[0,2,1,0],[2,2,3,0],[2,2,3,2],[0,2,3,0]],[[0,2,1,0],[3,2,3,0],[2,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,0],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,0],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[2,2,3,0],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[3,2,3,0],[2,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,0],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,0],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[2,2,3,0],[2,2,3,2],[1,3,1,0]],[[0,2,1,0],[3,2,3,0],[2,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[3,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,1,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,1,1],[1,3,2,1]],[[0,2,1,0],[3,2,3,0],[2,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,0],[3,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,0],[2,3,1,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,0],[2,3,1,2],[1,3,2,0]],[[0,2,1,0],[3,2,3,0],[2,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[3,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,2,0],[2,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,2,0],[1,3,2,1]],[[0,2,1,0],[3,2,3,0],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,0],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,2,3,0],[2,3,2,1],[0,2,2,2]],[[0,2,1,0],[3,2,3,0],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,0],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,0],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[3,2,3,0],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,0],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,0],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,0],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,2,3,0],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[3,2,3,0],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,0],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,0],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,0],[2,3,2,2],[2,1,2,0]],[[0,2,1,0],[3,2,3,0],[2,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,0],[3,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,4,3,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,0],[0,3,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,0],[0,2,3,1]],[[0,2,1,0],[3,2,3,0],[2,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,2,3,0],[3,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,2,3,0],[2,4,3,0],[1,1,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,0],[2,1,2,1]],[[0,2,1,0],[3,2,3,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,3,0],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,3,0],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,1],[0,1,2,2]],[[0,2,1,0],[3,2,3,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,0],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,0],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,0],[2,3,4,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[3,2,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,0],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,0],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,4,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,1],[1,0,3,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,1],[1,0,2,2]],[[0,2,1,0],[3,2,3,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,0],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,0],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,0],[2,3,4,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,1],[2,1,1,1]],[[0,2,1,0],[3,2,3,0],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,0],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,0],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,1],[2,2,0,1]],[[0,2,1,0],[3,2,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,0],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,0],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,0],[2,3,4,2],[0,1,1,1]],[[0,2,1,0],[3,2,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,0],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,0],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,0],[2,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,0],[2,3,3,2],[0,1,3,0]],[[0,2,1,0],[3,2,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,0],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,0],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,0],[2,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[3,2,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,0],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,0],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,0],[2,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,2,1],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,1],[2,1,3,1],[1,3,2,0]],[[1,2,2,1],[2,0,2,1],[2,1,3,1],[2,2,2,0]],[[1,2,2,1],[2,0,2,1],[2,1,4,1],[1,2,2,0]],[[1,2,2,1],[2,0,2,1],[3,1,3,1],[1,2,2,0]],[[1,2,2,1],[3,0,2,1],[2,1,3,1],[1,2,2,0]],[[1,2,2,2],[2,0,2,1],[2,1,3,1],[1,2,2,0]],[[0,2,1,0],[3,2,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,0],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,0],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,0],[2,3,4,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,2],[2,0,1,1]],[[0,2,1,0],[3,2,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,0],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,0],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,0],[2,3,4,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,0],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[2,2,3,0],[2,3,3,2],[1,0,3,0]],[[0,2,1,0],[3,2,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,0],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,0],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,0],[2,3,4,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,0],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[3,2,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,0],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,0],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,0],[2,3,4,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,3,1],[2,0,2,1],[2,1,3,1],[1,2,2,0]],[[1,3,2,1],[2,0,2,1],[2,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,0,2,1],[2,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,0,2,1],[2,1,3,0],[1,2,2,2]],[[1,2,2,1],[2,0,2,1],[2,1,3,0],[1,2,3,1]],[[1,2,2,1],[2,0,2,1],[2,1,3,0],[1,3,2,1]],[[1,2,2,1],[2,0,2,1],[2,1,3,0],[2,2,2,1]],[[0,2,1,0],[3,2,3,0],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,2,3,0],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,2,3,0],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[2,2,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,2,1],[2,1,4,0],[1,2,2,1]],[[1,2,2,1],[2,0,2,1],[3,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,0,2,1],[2,1,3,0],[1,2,2,1]],[[1,2,2,2],[2,0,2,1],[2,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,0,2,1],[2,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,0,2,1],[2,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,0,2,1],[2,1,3,0],[1,2,2,1]],[[1,2,2,1],[2,0,2,1],[2,1,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,1],[2,1,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,1],[2,1,1,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[0,1,3,3],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,1,3,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,1],[0,1,3,2],[1,2,2,2]],[[0,2,1,0],[2,2,3,1],[0,2,2,3],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[0,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,1],[0,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,2,4,1],[0,2,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[0,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,3,1],[0,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,4,1],[0,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[0,2,4,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[0,2,3,3],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[0,2,3,2],[1,2,1,2]],[[0,2,1,0],[2,2,4,1],[0,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[0,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[0,2,3,3],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[0,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,1],[0,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,3,1],[0,2,3,2],[1,2,3,0]],[[0,2,1,0],[2,2,3,1],[0,4,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,1],[0,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,2,3,1],[0,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,2,3,1],[0,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,2,3,1],[0,3,2,3],[1,1,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,2,2],[1,1,3,1]],[[0,2,1,0],[2,2,3,1],[0,3,2,2],[1,1,2,2]],[[0,2,1,0],[2,2,3,1],[0,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[0,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,1],[0,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,2,3,1],[0,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,2,3,1],[0,4,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,0],[1,2,3,1]],[[0,2,1,0],[2,2,4,1],[0,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,1],[0,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,4,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,1],[1,1,3,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,1],[1,1,2,2]],[[0,2,1,0],[2,2,4,1],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[0,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[0,3,4,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,2,4,1],[0,3,3,2],[1,0,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,4,2],[1,0,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,3],[1,0,2,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,2],[1,0,2,2]],[[0,2,1,0],[2,2,4,1],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,2,3,1],[0,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,2,3,1],[0,3,4,2],[1,1,1,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,3],[1,1,1,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,2],[1,1,1,2]],[[0,2,1,0],[2,2,4,1],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,1],[0,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,1],[0,3,4,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,1],[0,3,3,3],[1,1,2,0]],[[0,2,1,0],[2,2,3,1],[0,3,3,2],[1,1,3,0]],[[0,2,1,0],[2,2,4,1],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,1],[0,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,1],[0,3,4,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,3],[1,2,0,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,2,3,1],[0,3,3,2],[1,2,0,2]],[[0,2,1,0],[2,2,4,1],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,1],[0,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,1],[0,3,4,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,1],[0,3,3,3],[1,2,1,0]],[[0,2,1,0],[2,2,3,1],[0,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,2,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,1],[2,1,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,2,1],[2,1,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,2,1],[3,1,1,2],[1,2,2,1]],[[1,2,2,1],[3,0,2,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[2,0,2,1],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,2,1],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[2,0,2,1],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[2,0,2,1],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,1,3,3],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,1,3,2],[0,2,3,1]],[[0,2,1,0],[2,2,3,1],[1,1,3,2],[0,2,2,2]],[[0,2,1,0],[2,2,3,1],[1,2,2,3],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,2,2,2],[0,3,2,1]],[[0,2,1,0],[2,2,3,1],[1,2,2,2],[0,2,3,1]],[[0,2,1,0],[2,2,3,1],[1,2,2,2],[0,2,2,2]],[[0,2,1,0],[2,2,4,1],[1,2,3,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,2,4,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,2,3,1],[0,3,2,1]],[[0,2,1,0],[2,2,3,1],[1,2,3,1],[0,2,3,1]],[[0,2,1,0],[2,2,3,1],[1,2,3,1],[0,2,2,2]],[[0,2,1,0],[2,2,4,1],[1,2,3,2],[0,2,1,1]],[[0,2,1,0],[2,2,3,1],[1,2,4,2],[0,2,1,1]],[[0,2,1,0],[2,2,3,1],[1,2,3,3],[0,2,1,1]],[[0,2,1,0],[2,2,3,1],[1,2,3,2],[0,2,1,2]],[[0,2,1,0],[2,2,4,1],[1,2,3,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,1],[1,2,4,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,1],[1,2,3,3],[0,2,2,0]],[[0,2,1,0],[2,2,3,1],[1,2,3,2],[0,3,2,0]],[[0,2,1,0],[2,2,3,1],[1,2,3,2],[0,2,3,0]],[[0,2,1,0],[2,2,3,1],[1,4,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,0,3],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,0,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,0,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,0,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,1],[1,3,0,2],[1,2,2,2]],[[0,2,1,0],[2,2,3,1],[1,4,1,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,1,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,1,1],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,1,1],[1,2,3,1]],[[0,2,1,0],[2,2,3,1],[1,3,1,1],[1,2,2,2]],[[0,2,1,0],[2,2,3,1],[1,4,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,1,3],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,1,2],[0,3,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,1,2],[0,2,3,1]],[[0,2,1,0],[2,2,3,1],[1,3,1,2],[0,2,2,2]],[[0,2,1,0],[2,2,3,1],[1,4,1,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[1,3,1,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,1],[1,3,1,2],[1,3,2,0]],[[0,2,1,0],[2,2,3,1],[1,3,1,2],[1,2,3,0]],[[0,2,1,0],[2,2,3,1],[1,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,1],[0,2,2,2]],[[0,2,1,0],[2,2,3,1],[1,4,2,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,1],[2,2,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,1],[1,3,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,3],[0,1,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,2],[0,1,3,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,2],[0,1,2,2]],[[0,2,1,0],[2,2,3,1],[1,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,1],[1,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,2,3,1],[1,3,2,2],[0,2,3,0]],[[0,2,1,0],[2,2,3,1],[1,3,2,3],[1,0,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,2],[1,0,3,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,2],[1,0,2,2]],[[0,2,1,0],[2,2,3,1],[1,4,2,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,2],[2,2,0,1]],[[0,2,1,0],[2,2,3,1],[1,3,2,2],[1,3,0,1]],[[0,2,1,0],[2,2,3,1],[1,4,2,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,1],[1,3,2,2],[2,2,1,0]],[[0,2,1,0],[2,2,3,1],[1,3,2,2],[1,3,1,0]],[[0,2,1,0],[2,2,3,1],[1,4,3,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,0],[0,3,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,0],[0,2,3,1]],[[0,2,1,0],[2,2,4,1],[1,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,3,1],[1,4,3,1],[0,1,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,1],[0,1,2,2]],[[0,2,1,0],[2,2,4,1],[1,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,1],[1,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,4,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,1],[0,3,1,1]],[[0,2,1,0],[2,2,4,1],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,1],[1,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,4,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,1],[1,0,3,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,1],[1,0,2,2]],[[0,2,1,0],[2,2,4,1],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,1],[1,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,4,1],[1,1,1,1]],[[0,2,1,0],[2,2,4,1],[1,3,3,2],[0,0,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,4,2],[0,0,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,3],[0,0,2,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,2],[0,0,2,2]],[[0,2,1,0],[2,2,4,1],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,1],[1,4,3,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,4,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,3],[0,1,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,2],[0,1,1,2]],[[0,2,1,0],[2,2,4,1],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,1],[1,4,3,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,1],[1,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,1],[1,3,3,3],[0,1,2,0]],[[0,2,1,0],[2,2,3,1],[1,3,3,2],[0,1,3,0]],[[0,2,1,0],[2,2,4,1],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,1],[1,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,1],[1,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,3],[0,2,0,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,2],[0,3,0,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,2],[0,2,0,2]],[[0,2,1,0],[2,2,4,1],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,1],[1,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,1],[1,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,1],[1,3,3,3],[0,2,1,0]],[[0,2,1,0],[2,2,3,1],[1,3,3,2],[0,3,1,0]],[[0,2,1,0],[2,2,4,1],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,1],[1,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,4,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,3],[1,0,1,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,2],[1,0,1,2]],[[0,2,1,0],[2,2,4,1],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,1],[1,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,1],[1,3,4,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,1],[1,3,3,3],[1,0,2,0]],[[0,2,1,0],[2,2,3,1],[1,3,3,2],[1,0,3,0]],[[0,2,1,0],[2,2,4,1],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,1],[1,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,1],[1,3,4,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,3],[1,1,0,1]],[[0,2,1,0],[2,2,3,1],[1,3,3,2],[1,1,0,2]],[[0,2,1,0],[2,2,4,1],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,1],[1,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,1],[1,3,4,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,2,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,2,1],[1,3,3,1],[2,2,1,0]],[[1,2,2,1],[2,0,2,1],[1,3,4,1],[1,2,1,0]],[[1,2,2,1],[2,0,2,1],[1,4,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,2,1],[1,3,3,1],[1,3,0,1]],[[1,2,2,1],[2,0,2,1],[1,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,2,1],[1,3,4,1],[1,2,0,1]],[[1,2,2,1],[2,0,2,1],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,2,1],[1,3,3,1],[1,1,3,0]],[[1,2,2,1],[2,0,2,1],[1,3,4,1],[1,1,2,0]],[[1,2,2,1],[2,0,2,1],[1,4,3,1],[1,1,2,0]],[[1,2,2,1],[2,0,2,1],[1,3,3,0],[1,3,1,1]],[[1,2,2,1],[2,0,2,1],[1,3,3,0],[2,2,1,1]],[[1,2,2,1],[2,0,2,1],[1,3,4,0],[1,2,1,1]],[[0,2,1,0],[3,2,3,1],[2,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[3,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,0,2,3],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,0,2,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,0,2,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[2,0,2,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,1],[2,0,2,2],[1,2,2,2]],[[0,2,1,0],[3,2,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,4,1],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[3,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,0,4,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,0,3,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,0,3,1],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[2,0,3,1],[1,2,3,1]],[[0,2,1,0],[2,2,3,1],[2,0,3,1],[1,2,2,2]],[[0,2,1,0],[2,2,4,1],[2,0,3,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[2,0,4,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[2,0,3,3],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[2,0,3,2],[1,2,1,2]],[[0,2,1,0],[3,2,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,4,1],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[3,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[2,0,4,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[2,0,3,3],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[2,0,3,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,1],[2,0,3,2],[1,3,2,0]],[[0,2,1,0],[2,2,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[2,0,2,1],[1,4,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,2,1],[1,3,3,0],[1,1,2,2]],[[1,2,2,1],[2,0,2,1],[1,3,3,0],[1,1,3,1]],[[1,2,2,1],[2,0,2,1],[1,3,4,0],[1,1,2,1]],[[1,2,2,1],[2,0,2,1],[1,4,3,0],[1,1,2,1]],[[0,2,1,0],[3,2,3,1],[2,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[3,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,2,0,3],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,2,0,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,2,0,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[2,2,0,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,1],[2,2,0,2],[1,2,2,2]],[[0,2,1,0],[3,2,3,1],[2,2,1,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[3,2,1,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,2,1,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,2,1,1],[1,3,2,1]],[[0,2,1,0],[2,2,3,1],[2,2,1,1],[1,2,3,1]],[[0,2,1,0],[2,2,3,1],[2,2,1,1],[1,2,2,2]],[[0,2,1,0],[3,2,3,1],[2,2,1,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[3,2,1,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[2,2,1,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,1],[2,2,1,2],[1,3,2,0]],[[0,2,1,0],[2,2,3,1],[2,2,1,2],[1,2,3,0]],[[0,2,1,0],[3,2,3,1],[2,2,2,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[3,2,2,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,1],[2,2,2,1],[2,2,1,1]],[[0,2,1,0],[2,2,3,1],[2,2,2,1],[1,3,1,1]],[[0,2,1,0],[3,2,3,1],[2,2,2,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,1],[3,2,2,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,1],[2,2,2,2],[2,2,0,1]],[[0,2,1,0],[2,2,3,1],[2,2,2,2],[1,3,0,1]],[[0,2,1,0],[3,2,3,1],[2,2,2,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,1],[3,2,2,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,1],[2,2,2,2],[2,2,1,0]],[[0,2,1,0],[2,2,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,1],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,1],[1,3,2,1],[1,3,2,0]],[[1,2,2,1],[2,0,2,1],[1,3,2,1],[2,2,2,0]],[[1,2,2,1],[2,0,2,1],[1,4,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,2,1],[1,3,2,0],[1,2,2,2]],[[1,2,2,1],[2,0,2,1],[1,3,2,0],[1,2,3,1]],[[1,2,2,1],[2,0,2,1],[1,3,2,0],[1,3,2,1]],[[1,2,2,1],[2,0,2,1],[1,3,2,0],[2,2,2,1]],[[1,2,2,1],[2,0,2,1],[1,4,2,0],[1,2,2,1]],[[1,2,2,1],[2,0,2,1],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,1],[1,3,0,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,1],[1,3,0,2],[1,3,2,1]],[[1,2,2,1],[2,0,2,1],[1,3,0,2],[2,2,2,1]],[[1,2,2,1],[2,0,2,1],[1,3,0,3],[1,2,2,1]],[[1,2,2,1],[2,0,2,1],[1,4,0,2],[1,2,2,1]],[[1,2,2,1],[2,0,2,1],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,1],[1,2,3,1],[1,3,2,0]],[[1,2,2,1],[2,0,2,1],[1,2,3,1],[2,2,2,0]],[[1,2,2,1],[2,0,2,1],[1,2,4,1],[1,2,2,0]],[[0,2,1,0],[3,2,3,1],[2,3,0,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[3,3,0,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,3,0,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,3,0,1],[1,3,2,1]],[[0,2,1,0],[3,2,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[3,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,4,0,2],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,3,0,3],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,3,0,2],[0,3,2,1]],[[0,2,1,0],[2,2,3,1],[2,3,0,2],[0,2,3,1]],[[0,2,1,0],[2,2,3,1],[2,3,0,2],[0,2,2,2]],[[0,2,1,0],[3,2,3,1],[2,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,2,3,1],[3,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,2,3,1],[2,4,0,2],[1,1,2,1]],[[0,2,1,0],[2,2,3,1],[2,3,0,2],[2,1,2,1]],[[0,2,1,0],[3,2,3,1],[2,3,0,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[3,3,0,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,1],[2,3,0,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,1],[2,3,0,2],[1,3,2,0]],[[0,2,1,0],[3,2,3,1],[2,3,1,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[3,3,1,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,4,1,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,1],[2,3,1,1],[0,3,2,1]],[[0,2,1,0],[2,2,3,1],[2,3,1,1],[0,2,3,1]],[[0,2,1,0],[2,2,3,1],[2,3,1,1],[0,2,2,2]],[[0,2,1,0],[3,2,3,1],[2,3,1,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,1],[3,3,1,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,1],[2,4,1,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,1],[2,3,1,1],[2,1,2,1]],[[0,2,1,0],[3,2,3,1],[2,3,1,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,1],[3,3,1,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,1],[2,4,1,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,1],[2,3,1,2],[0,3,2,0]],[[0,2,1,0],[2,2,3,1],[2,3,1,2],[0,2,3,0]],[[0,2,1,0],[3,2,3,1],[2,3,1,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,1],[3,3,1,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,1],[2,4,1,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[2,0,2,1],[1,2,3,0],[1,2,2,2]],[[1,2,2,1],[2,0,2,1],[1,2,3,0],[1,2,3,1]],[[1,2,2,1],[2,0,2,1],[1,2,3,0],[1,3,2,1]],[[1,2,2,1],[2,0,2,1],[1,2,3,0],[2,2,2,1]],[[1,2,2,1],[2,0,2,1],[1,2,4,0],[1,2,2,1]],[[0,2,1,0],[3,2,3,1],[2,3,2,1],[0,1,2,1]],[[0,2,1,0],[2,2,3,1],[3,3,2,1],[0,1,2,1]],[[0,2,1,0],[2,2,3,1],[2,4,2,1],[0,1,2,1]],[[0,2,1,0],[3,2,3,1],[2,3,2,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,1],[3,3,2,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,1],[2,4,2,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,1],[2,3,2,1],[0,3,1,1]],[[0,2,1,0],[3,2,3,1],[2,3,2,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,1],[3,3,2,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,1],[2,4,2,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,1],[2,3,2,1],[2,0,2,1]],[[0,2,1,0],[3,2,3,1],[2,3,2,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,1],[3,3,2,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,1],[2,4,2,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,1],[2,3,2,1],[2,1,1,1]],[[0,2,1,0],[3,2,3,1],[2,3,2,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,1],[3,3,2,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,1],[2,4,2,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,1],[2,3,2,1],[2,2,0,1]],[[0,2,1,0],[3,2,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,1],[3,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,1],[2,4,2,2],[0,1,1,1]],[[0,2,1,0],[3,2,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,1],[3,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,1],[2,4,2,2],[0,1,2,0]],[[0,2,1,0],[3,2,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,1],[3,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,1],[2,4,2,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,1],[2,3,2,2],[0,3,0,1]],[[0,2,1,0],[3,2,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,1],[3,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,1],[2,4,2,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,1],[2,3,2,2],[0,3,1,0]],[[0,2,1,0],[3,2,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,1],[3,3,2,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,1],[2,4,2,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,1],[2,3,2,2],[2,0,1,1]],[[0,2,1,0],[3,2,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,1],[3,3,2,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,1],[2,4,2,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,1],[2,3,2,2],[2,0,2,0]],[[0,2,1,0],[3,2,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,1],[3,3,2,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,1],[2,4,2,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,1],[2,3,2,2],[2,1,0,1]],[[0,2,1,0],[3,2,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,1],[3,3,2,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,1],[2,4,2,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,1],[2,3,2,2],[2,1,1,0]],[[0,2,1,0],[3,2,3,1],[2,3,2,2],[1,2,0,0]],[[0,2,1,0],[2,2,3,1],[3,3,2,2],[1,2,0,0]],[[0,2,1,0],[2,2,3,1],[2,4,2,2],[1,2,0,0]],[[0,2,1,0],[2,2,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,2,0],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,0,2,0],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[3,0,2,0],[2,3,3,2],[1,2,0,0]],[[1,2,2,2],[2,0,2,0],[2,3,3,2],[1,2,0,0]],[[1,2,3,1],[2,0,2,0],[2,3,3,2],[1,2,0,0]],[[1,3,2,1],[2,0,2,0],[2,3,3,2],[1,2,0,0]],[[2,2,2,1],[2,0,2,0],[2,3,3,2],[1,2,0,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,2,0],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[2,0,2,0],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[2,0,2,0],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[3,0,2,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[2,0,2,0],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[2,0,2,0],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,0,2,0],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,0,2,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,0,2,0],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[2,0,2,0],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[2,0,2,0],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,0,2,0],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,0,2,0],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,0,2,0],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,0,2,0],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,0,2,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[3,2,3,1],[2,3,3,2],[0,2,0,0]],[[0,2,1,0],[2,2,3,1],[3,3,3,2],[0,2,0,0]],[[0,2,1,0],[2,2,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[2,0,2,0],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[2,0,2,0],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,2,0],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[3,0,2,0],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[2,0,2,0],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[2,0,2,0],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,0,2,0],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,0,2,0],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[1,0,1,2]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[2,0,2,0],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[2,0,2,0],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[2,0,2,0],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[3,0,2,0],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[2,0,2,0],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[2,0,2,0],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,0,2,0],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,0,2,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[3,2,3,1],[2,3,3,2],[1,1,0,0]],[[0,2,1,0],[2,2,3,1],[3,3,3,2],[1,1,0,0]],[[0,2,1,0],[2,2,3,1],[2,4,3,2],[1,1,0,0]],[[0,2,1,0],[2,2,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,0,2,0],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[2,0,2,0],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,2,0],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[3,0,2,0],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[2,0,2,0],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[2,0,2,0],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,0,2,0],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,0,2,0],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[2,0,2,0],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[2,0,2,0],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[2,0,2,0],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[3,0,2,0],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[2,0,2,0],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[2,0,2,0],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,0,2,0],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,0,2,0],[2,3,3,2],[0,2,0,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[0,1,3,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[2,0,2,0],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[2,0,2,0],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,2,0],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[3,0,2,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[2,0,2,0],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[2,0,2,0],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,0,2,0],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,0,2,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[2,0,2,0],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[2,0,2,0],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[2,0,2,0],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,2,0],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[3,0,2,0],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[2,0,2,0],[2,3,3,2],[0,1,1,1]],[[1,2,3,1],[2,0,2,0],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,0,2,0],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,0,2,0],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[2,0,2,0],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[2,0,2,0],[2,3,4,2],[0,0,2,1]],[[0,2,1,0],[2,2,4,2],[0,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,3],[0,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,2,1,3],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,2,1,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,2,1,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,2],[0,2,1,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,2],[0,2,1,2],[1,2,2,2]],[[0,2,1,0],[2,2,4,2],[0,2,2,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,3],[0,2,2,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[0,2,2,3],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[0,2,2,2],[1,2,1,2]],[[0,2,1,0],[2,2,4,2],[0,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,3],[0,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[0,2,2,3],[1,2,2,0]],[[0,2,1,0],[2,2,4,2],[0,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,3],[0,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,2,4,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,2,3,0],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,2,3,0],[1,3,2,1]],[[0,2,1,0],[2,2,3,2],[0,2,3,0],[1,2,3,1]],[[0,2,1,0],[2,2,3,2],[0,2,3,0],[1,2,2,2]],[[0,2,1,0],[2,2,4,2],[0,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,3],[0,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[0,2,4,1],[1,2,1,1]],[[0,2,1,0],[2,2,4,2],[0,2,3,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,3],[0,2,3,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[0,2,4,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[0,2,3,1],[2,2,2,0]],[[0,2,1,0],[2,2,3,2],[0,2,3,1],[1,3,2,0]],[[0,2,1,0],[2,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,1],[2,2,0,1]],[[0,2,1,0],[2,2,4,2],[0,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,3],[0,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,4,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,0,3],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,0,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,0,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,0,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,2],[0,3,0,2],[1,2,2,2]],[[0,2,1,0],[2,2,4,2],[0,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,2,3,3],[0,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,1,3],[1,1,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,1,2],[1,1,3,1]],[[0,2,1,0],[2,2,3,2],[0,3,1,2],[1,1,2,2]],[[0,2,1,0],[2,2,3,2],[0,4,2,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,2,0],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,2,0],[1,3,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,2,0],[1,2,3,1]],[[0,2,1,0],[2,2,3,2],[0,3,2,0],[1,2,2,2]],[[0,2,1,0],[2,2,3,2],[0,4,2,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[0,3,2,1],[2,2,2,0]],[[0,2,1,0],[2,2,3,2],[0,3,2,1],[1,3,2,0]],[[0,2,1,0],[2,2,3,2],[0,3,2,1],[1,2,3,0]],[[0,2,1,0],[2,2,4,2],[0,3,2,2],[1,0,2,1]],[[0,2,1,0],[2,2,3,3],[0,3,2,2],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,2,3],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,2,2],[1,0,2,2]],[[0,2,1,0],[2,2,4,2],[0,3,2,2],[1,1,1,1]],[[0,2,1,0],[2,2,3,3],[0,3,2,2],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[0,3,2,3],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[0,3,2,2],[1,1,1,2]],[[0,2,1,0],[2,2,4,2],[0,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,3],[0,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,2],[0,3,2,3],[1,1,2,0]],[[0,2,1,0],[2,2,4,2],[0,3,2,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,3],[0,3,2,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[0,3,2,3],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[0,3,2,2],[1,2,0,2]],[[0,2,1,0],[2,2,4,2],[0,3,2,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,3],[0,3,2,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,1],[2,0,2,0],[2,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,2,0],[3,3,3,1],[1,2,0,1]],[[1,2,2,1],[3,0,2,0],[2,3,3,1],[1,2,0,1]],[[1,2,3,1],[2,0,2,0],[2,3,3,1],[1,2,0,1]],[[1,3,2,1],[2,0,2,0],[2,3,3,1],[1,2,0,1]],[[2,2,2,1],[2,0,2,0],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,4,2],[0,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,2,3,3],[0,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,2,3,2],[0,4,3,0],[1,1,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,4,0],[1,1,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,3,0],[1,1,3,1]],[[0,2,1,0],[2,2,3,2],[0,3,3,0],[1,1,2,2]],[[0,2,1,0],[2,2,4,2],[0,3,3,0],[1,2,1,1]],[[0,2,1,0],[2,2,3,3],[0,3,3,0],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[0,4,3,0],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[0,3,4,0],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[0,3,3,0],[2,2,1,1]],[[0,2,1,0],[2,2,3,2],[0,3,3,0],[1,3,1,1]],[[0,2,1,0],[2,2,4,2],[0,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,3],[0,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[0,3,4,1],[1,0,2,1]],[[0,2,1,0],[2,2,4,2],[0,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,3],[0,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[0,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[0,3,4,1],[1,1,1,1]],[[0,2,1,0],[2,2,4,2],[0,3,3,1],[1,1,2,0]],[[0,2,1,0],[2,2,3,3],[0,3,3,1],[1,1,2,0]],[[0,2,1,0],[2,2,3,2],[0,4,3,1],[1,1,2,0]],[[0,2,1,0],[2,2,3,2],[0,3,4,1],[1,1,2,0]],[[0,2,1,0],[2,2,3,2],[0,3,3,1],[1,1,3,0]],[[0,2,1,0],[2,2,4,2],[0,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,3],[0,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[0,4,3,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[0,3,4,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[0,3,3,1],[2,2,0,1]],[[0,2,1,0],[2,2,3,2],[0,3,3,1],[1,3,0,1]],[[0,2,1,0],[2,2,4,2],[0,3,3,1],[1,2,1,0]],[[0,2,1,0],[2,2,3,3],[0,3,3,1],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[0,4,3,1],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[0,3,4,1],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[0,3,3,1],[2,2,1,0]],[[0,2,1,0],[2,2,3,2],[0,3,3,1],[1,3,1,0]],[[0,2,1,0],[2,2,4,2],[0,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,3],[0,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[2,0,2,0],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[2,0,2,0],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,2,0],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,0,2,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,2],[2,0,2,0],[2,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,0,2,0],[2,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,0,2,0],[2,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,0,2,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[2,0,2,0],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[2,0,2,0],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[2,0,2,0],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[2,0,2,0],[3,3,3,1],[1,0,2,1]],[[1,2,2,1],[3,0,2,0],[2,3,3,1],[1,0,2,1]],[[1,2,2,2],[2,0,2,0],[2,3,3,1],[1,0,2,1]],[[1,2,3,1],[2,0,2,0],[2,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,0,2,0],[2,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,0,2,0],[2,3,3,1],[1,0,2,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[2,0,2,0],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[2,0,2,0],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,4,2],[1,2,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,3,3],[1,2,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,2,1,3],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,2,1,2],[0,3,2,1]],[[0,2,1,0],[2,2,3,2],[1,2,1,2],[0,2,3,1]],[[0,2,1,0],[2,2,3,2],[1,2,1,2],[0,2,2,2]],[[0,2,1,0],[2,2,4,2],[1,2,2,2],[0,2,1,1]],[[0,2,1,0],[2,2,3,3],[1,2,2,2],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[1,2,2,3],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[1,2,2,2],[0,2,1,2]],[[0,2,1,0],[2,2,4,2],[1,2,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,3],[1,2,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,2,1],[2,0,2,0],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[3,0,2,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,2],[2,0,2,0],[2,3,3,1],[0,2,1,1]],[[1,2,3,1],[2,0,2,0],[2,3,3,1],[0,2,1,1]],[[1,3,2,1],[2,0,2,0],[2,3,3,1],[0,2,1,1]],[[2,2,2,1],[2,0,2,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,1],[0,1,2,2]],[[0,2,1,0],[2,2,4,2],[1,2,3,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,3],[1,2,3,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,2,4,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,2,3,0],[0,3,2,1]],[[0,2,1,0],[2,2,3,2],[1,2,3,0],[0,2,3,1]],[[0,2,1,0],[2,2,3,2],[1,2,3,0],[0,2,2,2]],[[0,2,1,0],[2,2,4,2],[1,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,3],[1,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[1,2,4,1],[0,2,1,1]],[[0,2,1,0],[2,2,4,2],[1,2,3,1],[0,2,2,0]],[[0,2,1,0],[2,2,3,3],[1,2,3,1],[0,2,2,0]],[[0,2,1,0],[2,2,3,2],[1,2,4,1],[0,2,2,0]],[[0,2,1,0],[2,2,3,2],[1,2,3,1],[0,3,2,0]],[[0,2,1,0],[2,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,0,2,0],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[2,0,2,0],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[2,0,2,0],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[2,0,2,0],[3,3,3,1],[0,1,2,1]],[[1,2,2,1],[3,0,2,0],[2,3,3,1],[0,1,2,1]],[[1,2,2,2],[2,0,2,0],[2,3,3,1],[0,1,2,1]],[[1,2,3,1],[2,0,2,0],[2,3,3,1],[0,1,2,1]],[[1,3,2,1],[2,0,2,0],[2,3,3,1],[0,1,2,1]],[[2,2,2,1],[2,0,2,0],[2,3,3,1],[0,1,2,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,0],[2,1,2,1]],[[1,2,2,1],[2,0,2,0],[2,4,3,0],[1,1,2,1]],[[1,2,2,1],[2,0,2,0],[3,3,3,0],[1,1,2,1]],[[1,2,2,1],[3,0,2,0],[2,3,3,0],[1,1,2,1]],[[1,2,3,1],[2,0,2,0],[2,3,3,0],[1,1,2,1]],[[1,3,2,1],[2,0,2,0],[2,3,3,0],[1,1,2,1]],[[2,2,2,1],[2,0,2,0],[2,3,3,0],[1,1,2,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,0],[0,2,3,1]],[[1,2,2,1],[2,0,2,0],[2,3,3,0],[0,3,2,1]],[[1,2,2,1],[2,0,2,0],[2,4,3,0],[0,2,2,1]],[[1,2,2,1],[2,0,2,0],[3,3,3,0],[0,2,2,1]],[[1,2,2,1],[3,0,2,0],[2,3,3,0],[0,2,2,1]],[[1,2,3,1],[2,0,2,0],[2,3,3,0],[0,2,2,1]],[[1,3,2,1],[2,0,2,0],[2,3,3,0],[0,2,2,1]],[[2,2,2,1],[2,0,2,0],[2,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,4,0,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,0,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,0,1],[1,3,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,0,1],[1,2,3,1]],[[0,2,1,0],[2,2,3,2],[1,3,0,1],[1,2,2,2]],[[0,2,1,0],[2,2,4,2],[1,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,2,3,3],[1,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,4,0,2],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,0,3],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,0,2],[0,3,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,0,2],[0,2,3,1]],[[0,2,1,0],[2,2,3,2],[1,3,0,2],[0,2,2,2]],[[0,2,1,0],[2,2,3,2],[1,4,0,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,0,2],[2,2,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,0,2],[1,3,1,1]],[[0,2,1,0],[2,2,3,2],[1,4,0,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,0,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,0,2],[1,3,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,0,2],[1,2,3,0]],[[0,2,1,0],[2,2,3,2],[1,4,1,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,0],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,0],[1,3,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,0],[1,2,3,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,0],[1,2,2,2]],[[0,2,1,0],[2,2,3,2],[1,4,1,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,1,1],[2,2,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,1,1],[1,3,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,1,1],[1,2,3,0]],[[0,2,1,0],[2,2,4,2],[1,3,1,2],[0,1,2,1]],[[0,2,1,0],[2,2,3,3],[1,3,1,2],[0,1,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,3],[0,1,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,2],[0,1,3,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,2],[0,1,2,2]],[[0,2,1,0],[2,2,4,2],[1,3,1,2],[1,0,2,1]],[[0,2,1,0],[2,2,3,3],[1,3,1,2],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,3],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,2],[1,0,3,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,2],[1,0,2,2]],[[0,2,1,0],[2,2,3,2],[1,4,1,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,2],[2,2,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,1,2],[1,3,0,1]],[[0,2,1,0],[2,2,3,2],[1,4,1,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[1,3,1,2],[2,2,1,0]],[[0,2,1,0],[2,2,3,2],[1,3,1,2],[1,3,1,0]],[[0,2,1,0],[2,2,3,2],[1,4,2,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,0],[0,3,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,0],[0,2,3,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,0],[0,2,2,2]],[[0,2,1,0],[2,2,3,2],[1,4,2,0],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,0],[2,2,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,0],[1,3,1,1]],[[0,2,1,0],[2,2,3,2],[1,4,2,1],[0,2,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,2,1],[0,3,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,2,1],[0,2,3,0]],[[0,2,1,0],[2,2,3,2],[1,4,2,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,1],[2,2,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,1],[1,3,0,1]],[[0,2,1,0],[2,2,3,2],[1,4,2,1],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[1,3,2,1],[2,2,1,0]],[[0,2,1,0],[2,2,3,2],[1,3,2,1],[1,3,1,0]],[[0,2,1,0],[2,2,4,2],[1,3,2,2],[0,0,2,1]],[[0,2,1,0],[2,2,3,3],[1,3,2,2],[0,0,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,3],[0,0,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,2],[0,0,2,2]],[[0,2,1,0],[2,2,4,2],[1,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,3],[1,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,3],[0,1,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,2],[0,1,1,2]],[[0,2,1,0],[2,2,4,2],[1,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,3],[1,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,2,3],[0,1,2,0]],[[0,2,1,0],[2,2,4,2],[1,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,3],[1,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,3],[0,2,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,2],[0,2,0,2]],[[0,2,1,0],[2,2,4,2],[1,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,3],[1,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[1,3,2,3],[0,2,1,0]],[[0,2,1,0],[2,2,4,2],[1,3,2,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,3],[1,3,2,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,3],[1,0,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,2],[1,0,1,2]],[[0,2,1,0],[2,2,4,2],[1,3,2,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,3],[1,3,2,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,2,3],[1,0,2,0]],[[0,2,1,0],[2,2,4,2],[1,3,2,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,3],[1,3,2,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,3],[1,1,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,2,2],[1,1,0,2]],[[0,2,1,0],[2,2,4,2],[1,3,2,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,3],[1,3,2,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,0,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,2,0],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,2,0],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,0,2,0],[2,3,2,2],[1,1,2,0]],[[1,2,2,2],[2,0,2,0],[2,3,2,2],[1,1,2,0]],[[1,2,3,1],[2,0,2,0],[2,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,0,2,0],[2,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,0,2,0],[2,3,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,2,0],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,0,2,0],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[2,0,2,0],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[2,0,2,0],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[2,0,2,0],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[2,0,2,0],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,2,0],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[3,0,2,0],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,2,4,2],[1,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,2,3,3],[1,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,2,3,2],[1,4,3,0],[0,1,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,4,0],[0,1,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,3,0],[0,1,3,1]],[[0,2,1,0],[2,2,3,2],[1,3,3,0],[0,1,2,2]],[[0,2,1,0],[2,2,4,2],[1,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,2,3,3],[1,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[1,4,3,0],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,4,0],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,3,0],[0,3,1,1]],[[0,2,1,0],[2,2,4,2],[1,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,2,3,3],[1,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[1,4,3,0],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,4,0],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,3,0],[1,0,3,1]],[[0,2,1,0],[2,2,3,2],[1,3,3,0],[1,0,2,2]],[[0,2,1,0],[2,2,4,2],[1,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,2,3,3],[1,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[1,4,3,0],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,4,0],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[1,4,3,0],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[1,3,3,0],[2,2,1,0]],[[0,2,1,0],[2,2,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,2],[2,0,2,0],[2,3,2,2],[0,2,2,0]],[[1,2,3,1],[2,0,2,0],[2,3,2,2],[0,2,2,0]],[[1,3,2,1],[2,0,2,0],[2,3,2,2],[0,2,2,0]],[[2,2,2,1],[2,0,2,0],[2,3,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,2,0],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[2,0,2,0],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[2,0,2,0],[2,3,2,3],[0,1,2,1]],[[0,2,1,0],[2,2,4,2],[1,3,3,1],[0,0,2,1]],[[0,2,1,0],[2,2,3,3],[1,3,3,1],[0,0,2,1]],[[0,2,1,0],[2,2,3,2],[1,3,4,1],[0,0,2,1]],[[0,2,1,0],[2,2,4,2],[1,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,2,3,3],[1,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,2,3,2],[1,4,3,1],[0,1,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,4,1],[0,1,1,1]],[[0,2,1,0],[2,2,4,2],[1,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,2,3,3],[1,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,2,3,2],[1,4,3,1],[0,1,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,4,1],[0,1,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,3,1],[0,1,3,0]],[[0,2,1,0],[2,2,4,2],[1,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,2,3,3],[1,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,2,3,2],[1,4,3,1],[0,2,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,4,1],[0,2,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,3,1],[0,3,0,1]],[[0,2,1,0],[2,2,4,2],[1,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,2,3,3],[1,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[1,4,3,1],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[1,3,4,1],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[1,3,3,1],[0,3,1,0]],[[0,2,1,0],[2,2,4,2],[1,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,2,3,3],[1,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,2,3,2],[1,4,3,1],[1,0,1,1]],[[0,2,1,0],[2,2,3,2],[1,3,4,1],[1,0,1,1]],[[0,2,1,0],[2,2,4,2],[1,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,2,3,3],[1,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[1,4,3,1],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,4,1],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[1,3,3,1],[1,0,3,0]],[[0,2,1,0],[2,2,4,2],[1,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,2,3,3],[1,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,2,3,2],[1,4,3,1],[1,1,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,4,1],[1,1,0,1]],[[0,2,1,0],[2,2,4,2],[1,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,2,3,3],[1,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[1,4,3,1],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,0,2,0],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[2,0,2,0],[2,4,2,1],[1,1,2,1]],[[1,2,2,1],[2,0,2,0],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[3,0,2,0],[2,3,2,1],[1,1,2,1]],[[1,2,2,2],[2,0,2,0],[2,3,2,1],[1,1,2,1]],[[1,2,3,1],[2,0,2,0],[2,3,2,1],[1,1,2,1]],[[1,3,2,1],[2,0,2,0],[2,3,2,1],[1,1,2,1]],[[2,2,2,1],[2,0,2,0],[2,3,2,1],[1,1,2,1]],[[1,2,2,1],[2,0,2,0],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[2,0,2,0],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[2,0,2,0],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[2,0,2,0],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[2,0,2,0],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[3,0,2,0],[2,3,2,1],[0,2,2,1]],[[1,2,2,2],[2,0,2,0],[2,3,2,1],[0,2,2,1]],[[1,2,3,1],[2,0,2,0],[2,3,2,1],[0,2,2,1]],[[1,3,2,1],[2,0,2,0],[2,3,2,1],[0,2,2,1]],[[2,2,2,1],[2,0,2,0],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,2,4,2],[1,3,3,2],[0,1,0,1]],[[0,2,1,0],[2,2,3,3],[1,3,3,2],[0,1,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,1],[2,0,2,0],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[2,0,2,0],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,2,0],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[3,0,2,0],[2,3,1,2],[1,1,2,1]],[[1,2,2,2],[2,0,2,0],[2,3,1,2],[1,1,2,1]],[[1,2,3,1],[2,0,2,0],[2,3,1,2],[1,1,2,1]],[[1,3,2,1],[2,0,2,0],[2,3,1,2],[1,1,2,1]],[[2,2,2,1],[2,0,2,0],[2,3,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,2,0],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[2,0,2,0],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[2,0,2,0],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[2,0,2,0],[2,3,1,3],[0,2,2,1]],[[1,2,2,1],[2,0,2,0],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,2,0],[3,3,1,2],[0,2,2,1]],[[1,2,2,1],[3,0,2,0],[2,3,1,2],[0,2,2,1]],[[1,2,2,2],[2,0,2,0],[2,3,1,2],[0,2,2,1]],[[1,2,3,1],[2,0,2,0],[2,3,1,2],[0,2,2,1]],[[1,3,2,1],[2,0,2,0],[2,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,0,2,0],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,2,4,2],[1,3,3,2],[1,0,0,1]],[[0,2,1,0],[2,2,3,3],[1,3,3,2],[1,0,0,1]],[[0,2,1,0],[2,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,1],[2,0,2,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,0],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[2,0,2,0],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[3,0,2,0],[2,2,3,2],[1,2,1,0]],[[1,2,2,2],[2,0,2,0],[2,2,3,2],[1,2,1,0]],[[1,2,3,1],[2,0,2,0],[2,2,3,2],[1,2,1,0]],[[1,3,2,1],[2,0,2,0],[2,2,3,2],[1,2,1,0]],[[2,2,2,1],[2,0,2,0],[2,2,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,2,0],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[2,0,2,0],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[2,0,2,0],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[3,0,2,0],[2,2,3,2],[1,2,0,1]],[[1,2,2,2],[2,0,2,0],[2,2,3,2],[1,2,0,1]],[[1,2,3,1],[2,0,2,0],[2,2,3,2],[1,2,0,1]],[[1,3,2,1],[2,0,2,0],[2,2,3,2],[1,2,0,1]],[[2,2,2,1],[2,0,2,0],[2,2,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,2,0],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,2,0],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[2,0,2,0],[2,2,3,3],[0,2,2,0]],[[1,2,2,1],[2,0,2,0],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[2,0,2,0],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[2,0,2,0],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[2,0,2,0],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[2,0,2,0],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[2,0,2,0],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[2,0,2,0],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[3,0,2,0],[2,2,3,1],[1,2,1,1]],[[1,2,2,2],[2,0,2,0],[2,2,3,1],[1,2,1,1]],[[1,2,3,1],[2,0,2,0],[2,2,3,1],[1,2,1,1]],[[1,3,2,1],[2,0,2,0],[2,2,3,1],[1,2,1,1]],[[2,2,2,1],[2,0,2,0],[2,2,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,2,0],[2,2,3,1],[0,2,2,2]],[[0,2,1,0],[3,2,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,4,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,3],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[3,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,0,1,3],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,0,1,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,0,1,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,2],[2,0,1,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,2],[2,0,1,2],[1,2,2,2]],[[0,2,1,0],[2,2,4,2],[2,0,2,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,3],[2,0,2,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[2,0,2,3],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[2,0,2,2],[1,2,1,2]],[[0,2,1,0],[2,2,4,2],[2,0,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,3],[2,0,2,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,0,2,3],[1,2,2,0]],[[0,2,1,0],[3,2,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,4,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,3],[2,0,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[3,0,3,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,0,4,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,0,3,0],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,0,3,0],[1,3,2,1]],[[0,2,1,0],[2,2,3,2],[2,0,3,0],[1,2,3,1]],[[0,2,1,0],[2,2,3,2],[2,0,3,0],[1,2,2,2]],[[0,2,1,0],[2,2,4,2],[2,0,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,3],[2,0,3,1],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[2,0,4,1],[1,2,1,1]],[[0,2,1,0],[3,2,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,0],[2,2,4,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,3],[2,0,3,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[3,0,3,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,0,4,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,0,3,1],[2,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,0,3,1],[1,3,2,0]],[[0,2,1,0],[2,2,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,2,0],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[2,0,2,0],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[2,0,2,0],[2,2,4,1],[0,2,2,1]],[[1,2,2,1],[2,0,2,0],[2,2,3,0],[1,2,3,1]],[[1,2,2,1],[2,0,2,0],[2,2,3,0],[1,3,2,1]],[[1,2,2,1],[2,0,2,0],[2,2,3,0],[2,2,2,1]],[[1,2,2,1],[2,0,2,0],[3,2,3,0],[1,2,2,1]],[[1,2,2,1],[3,0,2,0],[2,2,3,0],[1,2,2,1]],[[1,2,3,1],[2,0,2,0],[2,2,3,0],[1,2,2,1]],[[1,3,2,1],[2,0,2,0],[2,2,3,0],[1,2,2,1]],[[0,2,1,0],[3,2,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,4,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,3],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[3,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,1,0,3],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,1,0,2],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,1,0,2],[1,3,2,1]],[[0,2,1,0],[2,2,3,2],[2,1,0,2],[1,2,3,1]],[[0,2,1,0],[2,2,3,2],[2,1,0,2],[1,2,2,2]],[[2,2,2,1],[2,0,2,0],[2,2,3,0],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[2,0,2,0],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[2,0,2,0],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[2,0,2,0],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[3,0,2,0],[2,2,2,2],[1,2,2,0]],[[1,2,2,2],[2,0,2,0],[2,2,2,2],[1,2,2,0]],[[1,2,3,1],[2,0,2,0],[2,2,2,2],[1,2,2,0]],[[1,3,2,1],[2,0,2,0],[2,2,2,2],[1,2,2,0]],[[2,2,2,1],[2,0,2,0],[2,2,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,0],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[2,0,2,0],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[2,0,2,0],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[2,0,2,0],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[2,0,2,0],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[2,0,2,0],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[2,0,2,0],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[2,0,2,0],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[2,0,2,0],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[3,0,2,0],[2,2,2,1],[1,2,2,1]],[[1,2,2,2],[2,0,2,0],[2,2,2,1],[1,2,2,1]],[[1,2,3,1],[2,0,2,0],[2,2,2,1],[1,2,2,1]],[[1,3,2,1],[2,0,2,0],[2,2,2,1],[1,2,2,1]],[[2,2,2,1],[2,0,2,0],[2,2,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,0],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,0],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[2,0,2,0],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,2,0],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[3,0,2,0],[2,2,1,2],[1,2,2,1]],[[1,2,2,2],[2,0,2,0],[2,2,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,2,0],[2,2,1,2],[1,2,2,1]],[[1,3,2,1],[2,0,2,0],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[3,2,3,2],[2,2,0,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[3,2,0,1],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,2,0,1],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,2,0,1],[1,3,2,1]],[[0,2,1,0],[2,2,3,2],[2,2,0,1],[1,2,3,1]],[[0,2,1,0],[2,2,3,2],[2,2,0,1],[1,2,2,2]],[[0,2,1,0],[3,2,3,2],[2,2,0,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[3,2,0,2],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[2,2,0,2],[2,2,1,1]],[[0,2,1,0],[2,2,3,2],[2,2,0,2],[1,3,1,1]],[[0,2,1,0],[3,2,3,2],[2,2,0,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[3,2,0,2],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,2,0,2],[2,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,2,0,2],[1,3,2,0]],[[0,2,1,0],[2,2,3,2],[2,2,0,2],[1,2,3,0]],[[0,2,1,0],[3,2,3,2],[2,2,1,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[3,2,1,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,2,1,0],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,2,1,0],[1,3,2,1]],[[0,2,1,0],[2,2,3,2],[2,2,1,0],[1,2,3,1]],[[0,2,1,0],[2,2,3,2],[2,2,1,0],[1,2,2,2]],[[0,2,1,0],[3,2,3,2],[2,2,1,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[3,2,1,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,2,1,1],[2,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,2,1,1],[1,3,2,0]],[[0,2,1,0],[2,2,3,2],[2,2,1,1],[1,2,3,0]],[[0,2,1,0],[3,2,3,2],[2,2,1,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[3,2,1,2],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[2,2,1,2],[2,2,0,1]],[[0,2,1,0],[2,2,3,2],[2,2,1,2],[1,3,0,1]],[[0,2,1,0],[3,2,3,2],[2,2,1,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[3,2,1,2],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,2,1,2],[2,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,2,1,2],[1,3,1,0]],[[2,2,2,1],[2,0,2,0],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[3,2,3,2],[2,2,2,0],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[3,2,2,0],[1,2,1,1]],[[0,2,1,0],[2,2,3,2],[2,2,2,0],[2,2,1,1]],[[0,2,1,0],[2,2,3,2],[2,2,2,0],[1,3,1,1]],[[0,2,1,0],[3,2,3,2],[2,2,2,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[3,2,2,1],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[2,2,2,1],[2,2,0,1]],[[0,2,1,0],[2,2,3,2],[2,2,2,1],[1,3,0,1]],[[0,2,1,0],[3,2,3,2],[2,2,2,1],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[3,2,2,1],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,2,2,1],[2,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[2,0,2,0],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[2,0,2,0],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[2,0,2,0],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[2,0,2,0],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[2,0,2,0],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,0],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[3,0,2,0],[2,1,3,2],[1,2,2,0]],[[1,2,2,2],[2,0,2,0],[2,1,3,2],[1,2,2,0]],[[1,2,3,1],[2,0,2,0],[2,1,3,2],[1,2,2,0]],[[1,3,2,1],[2,0,2,0],[2,1,3,2],[1,2,2,0]],[[2,2,2,1],[2,0,2,0],[2,1,3,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,0],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[2,0,2,0],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[2,0,2,0],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[2,0,2,0],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[2,0,2,0],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[2,0,2,0],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[2,0,2,0],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[2,0,2,0],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[3,0,2,0],[2,1,3,1],[1,2,2,1]],[[1,2,2,2],[2,0,2,0],[2,1,3,1],[1,2,2,1]],[[1,2,3,1],[2,0,2,0],[2,1,3,1],[1,2,2,1]],[[1,3,2,1],[2,0,2,0],[2,1,3,1],[1,2,2,1]],[[2,2,2,1],[2,0,2,0],[2,1,3,1],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,0],[2,1,2,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,0],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[2,0,2,0],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[2,0,2,0],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[3,0,2,0],[2,1,2,2],[1,2,2,1]],[[1,2,2,2],[2,0,2,0],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[3,2,3,2],[2,2,3,0],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[3,2,3,0],[1,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,2,3,0],[2,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,3,1],[2,0,2,0],[2,1,2,2],[1,2,2,1]],[[1,3,2,1],[2,0,2,0],[2,1,2,2],[1,2,2,1]],[[2,2,2,1],[2,0,2,0],[2,1,2,2],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,0],[2,0,3,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,0],[2,0,3,3],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,2,0],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[2,0,2,0],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[2,0,2,0],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[2,0,2,0],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,2,0],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[2,0,2,0],[1,3,3,2],[1,3,0,1]],[[1,2,2,1],[2,0,2,0],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[2,0,2,0],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[2,0,2,0],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[2,0,2,0],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,2,0],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[2,0,2,0],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[2,0,2,0],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[2,0,2,0],[1,4,3,2],[1,1,2,0]],[[1,2,2,1],[2,0,2,0],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[2,0,2,0],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[2,0,2,0],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[2,0,2,0],[1,4,3,2],[1,1,1,1]],[[1,2,2,1],[2,0,2,0],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[2,0,2,0],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[2,0,2,0],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[2,0,2,0],[1,4,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,2,0],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[2,0,2,0],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[2,0,2,0],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[2,0,2,0],[1,4,3,1],[1,1,2,1]],[[1,2,2,1],[2,0,2,0],[1,3,3,0],[1,2,3,1]],[[1,2,2,1],[2,0,2,0],[1,3,3,0],[1,3,2,1]],[[1,2,2,1],[2,0,2,0],[1,3,3,0],[2,2,2,1]],[[1,2,2,1],[2,0,2,0],[1,4,3,0],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[2,0,2,0],[1,3,2,2],[1,3,2,0]],[[1,2,2,1],[2,0,2,0],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[2,0,2,0],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,0],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[2,0,2,0],[1,3,2,2],[1,1,3,1]],[[1,2,2,1],[2,0,2,0],[1,3,2,3],[1,1,2,1]],[[1,2,2,1],[2,0,2,0],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[2,0,2,0],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[2,0,2,0],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[2,0,2,0],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[2,0,2,0],[1,4,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,0],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,0],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[2,0,2,0],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,2,0],[1,3,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[1,4,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,2,0],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[2,0,2,0],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[2,0,2,0],[1,2,3,2],[2,2,2,0]],[[0,2,1,0],[3,2,3,2],[2,3,0,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[3,3,0,0],[1,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,3,0,0],[2,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,3,0,0],[1,3,2,1]],[[0,2,1,0],[3,2,3,2],[2,3,0,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[3,3,0,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,4,0,1],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,3,0,1],[0,3,2,1]],[[0,2,1,0],[2,2,3,2],[2,3,0,1],[0,2,3,1]],[[0,2,1,0],[2,2,3,2],[2,3,0,1],[0,2,2,2]],[[0,2,1,0],[3,2,3,2],[2,3,0,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,2],[3,3,0,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,2],[2,4,0,1],[1,1,2,1]],[[0,2,1,0],[2,2,3,2],[2,3,0,1],[2,1,2,1]],[[0,2,1,0],[3,2,3,2],[2,3,0,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[3,3,0,1],[1,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,3,0,1],[2,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,3,0,1],[1,3,2,0]],[[0,2,1,0],[3,2,3,2],[2,3,0,2],[0,1,2,1]],[[0,2,1,0],[2,2,3,2],[3,3,0,2],[0,1,2,1]],[[0,2,1,0],[2,2,3,2],[2,4,0,2],[0,1,2,1]],[[0,2,1,0],[3,2,3,2],[2,3,0,2],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[3,3,0,2],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[2,4,0,2],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[2,3,0,2],[0,3,1,1]],[[0,2,1,0],[3,2,3,2],[2,3,0,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,2],[3,3,0,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,4,0,2],[0,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,3,0,2],[0,3,2,0]],[[0,2,1,0],[2,2,3,2],[2,3,0,2],[0,2,3,0]],[[0,2,1,0],[3,2,3,2],[2,3,0,2],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[3,3,0,2],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[2,4,0,2],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[2,3,0,2],[2,0,2,1]],[[0,2,1,0],[3,2,3,2],[2,3,0,2],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[3,3,0,2],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[2,4,0,2],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[2,3,0,2],[2,1,1,1]],[[0,2,1,0],[3,2,3,2],[2,3,0,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,2],[3,3,0,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,2],[2,4,0,2],[1,1,2,0]],[[0,2,1,0],[2,2,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[2,0,2,0],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[2,0,2,0],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[2,0,2,0],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[2,0,2,0],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[2,0,2,0],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[2,0,2,0],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[2,0,2,0],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[2,0,2,0],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[2,0,2,0],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[2,0,2,0],[1,2,4,1],[1,2,2,1]],[[0,2,1,0],[3,2,3,2],[2,3,1,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[3,3,1,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,4,1,0],[0,2,2,1]],[[0,2,1,0],[2,2,3,2],[2,3,1,0],[0,3,2,1]],[[0,2,1,0],[2,2,3,2],[2,3,1,0],[0,2,3,1]],[[0,2,1,0],[2,2,3,2],[2,3,1,0],[0,2,2,2]],[[0,2,1,0],[3,2,3,2],[2,3,1,0],[1,1,2,1]],[[0,2,1,0],[2,2,3,2],[3,3,1,0],[1,1,2,1]],[[0,2,1,0],[2,2,3,2],[2,4,1,0],[1,1,2,1]],[[0,2,1,0],[2,2,3,2],[2,3,1,0],[2,1,2,1]],[[0,2,1,0],[3,2,3,2],[2,3,1,1],[0,2,2,0]],[[0,2,1,0],[2,2,3,2],[3,3,1,1],[0,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,4,1,1],[0,2,2,0]],[[0,2,1,0],[2,2,3,2],[2,3,1,1],[0,3,2,0]],[[0,2,1,0],[2,2,3,2],[2,3,1,1],[0,2,3,0]],[[0,2,1,0],[3,2,3,2],[2,3,1,1],[1,1,2,0]],[[0,2,1,0],[2,2,3,2],[3,3,1,1],[1,1,2,0]],[[0,2,1,0],[2,2,3,2],[2,4,1,1],[1,1,2,0]],[[0,2,1,0],[2,2,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[2,0,2,0],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[2,0,2,0],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[2,0,2,0],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[2,0,2,0],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[2,0,2,0],[1,2,2,3],[1,2,2,1]],[[0,2,1,0],[3,2,3,2],[2,3,1,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,2],[3,3,1,2],[0,1,1,1]],[[0,2,1,0],[2,2,3,2],[2,4,1,2],[0,1,1,1]],[[0,2,1,0],[3,2,3,2],[2,3,1,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,2],[3,3,1,2],[0,1,2,0]],[[0,2,1,0],[2,2,3,2],[2,4,1,2],[0,1,2,0]],[[0,2,1,0],[3,2,3,2],[2,3,1,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,2],[3,3,1,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,2],[2,4,1,2],[0,2,0,1]],[[0,2,1,0],[2,2,3,2],[2,3,1,2],[0,3,0,1]],[[0,2,1,0],[3,2,3,2],[2,3,1,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[3,3,1,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,4,1,2],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,3,1,2],[0,3,1,0]],[[0,2,1,0],[3,2,3,2],[2,3,1,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,2],[3,3,1,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,2],[2,4,1,2],[1,0,1,1]],[[0,2,1,0],[2,2,3,2],[2,3,1,2],[2,0,1,1]],[[0,2,1,0],[3,2,3,2],[2,3,1,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[3,3,1,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[2,4,1,2],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[2,3,1,2],[2,0,2,0]],[[0,2,1,0],[3,2,3,2],[2,3,1,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,2],[3,3,1,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,2],[2,4,1,2],[1,1,0,1]],[[0,2,1,0],[2,2,3,2],[2,3,1,2],[2,1,0,1]],[[0,2,1,0],[3,2,3,2],[2,3,1,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[3,3,1,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[2,4,1,2],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[2,3,1,2],[2,1,1,0]],[[0,2,1,0],[3,2,3,2],[2,3,1,2],[1,2,0,0]],[[0,2,1,0],[2,2,3,2],[3,3,1,2],[1,2,0,0]],[[0,2,1,0],[2,2,3,2],[2,4,1,2],[1,2,0,0]],[[0,2,1,0],[2,2,3,2],[2,3,1,2],[2,2,0,0]],[[0,2,1,0],[3,2,3,2],[2,3,2,0],[0,1,2,1]],[[0,2,1,0],[2,2,3,2],[3,3,2,0],[0,1,2,1]],[[0,2,1,0],[2,2,3,2],[2,4,2,0],[0,1,2,1]],[[0,2,1,0],[3,2,3,2],[2,3,2,0],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[3,3,2,0],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[2,4,2,0],[0,2,1,1]],[[0,2,1,0],[2,2,3,2],[2,3,2,0],[0,3,1,1]],[[0,2,1,0],[3,2,3,2],[2,3,2,0],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[3,3,2,0],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[2,4,2,0],[1,0,2,1]],[[0,2,1,0],[2,2,3,2],[2,3,2,0],[2,0,2,1]],[[0,2,1,0],[3,2,3,2],[2,3,2,0],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[3,3,2,0],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[2,4,2,0],[1,1,1,1]],[[0,2,1,0],[2,2,3,2],[2,3,2,0],[2,1,1,1]],[[0,2,1,0],[3,2,3,2],[2,3,2,0],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[3,3,2,0],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[2,4,2,0],[1,2,0,1]],[[0,2,1,0],[2,2,3,2],[2,3,2,0],[2,2,0,1]],[[0,2,1,0],[3,2,3,2],[2,3,2,1],[0,1,1,1]],[[0,2,1,0],[2,2,3,2],[3,3,2,1],[0,1,1,1]],[[0,2,1,0],[2,2,3,2],[2,4,2,1],[0,1,1,1]],[[0,2,1,0],[3,2,3,2],[2,3,2,1],[0,1,2,0]],[[0,2,1,0],[2,2,3,2],[3,3,2,1],[0,1,2,0]],[[0,2,1,0],[2,2,3,2],[2,4,2,1],[0,1,2,0]],[[0,2,1,0],[3,2,3,2],[2,3,2,1],[0,2,0,1]],[[0,2,1,0],[2,2,3,2],[3,3,2,1],[0,2,0,1]],[[0,2,1,0],[2,2,3,2],[2,4,2,1],[0,2,0,1]],[[0,2,1,0],[2,2,3,2],[2,3,2,1],[0,3,0,1]],[[0,2,1,0],[3,2,3,2],[2,3,2,1],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[3,3,2,1],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,4,2,1],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,3,2,1],[0,3,1,0]],[[0,2,1,0],[3,2,3,2],[2,3,2,1],[1,0,1,1]],[[0,2,1,0],[2,2,3,2],[3,3,2,1],[1,0,1,1]],[[0,2,1,0],[2,2,3,2],[2,4,2,1],[1,0,1,1]],[[0,2,1,0],[2,2,3,2],[2,3,2,1],[2,0,1,1]],[[0,2,1,0],[3,2,3,2],[2,3,2,1],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[3,3,2,1],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[2,4,2,1],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[2,3,2,1],[2,0,2,0]],[[0,2,1,0],[3,2,3,2],[2,3,2,1],[1,1,0,1]],[[0,2,1,0],[2,2,3,2],[3,3,2,1],[1,1,0,1]],[[0,2,1,0],[2,2,3,2],[2,4,2,1],[1,1,0,1]],[[0,2,1,0],[2,2,3,2],[2,3,2,1],[2,1,0,1]],[[0,2,1,0],[3,2,3,2],[2,3,2,1],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[3,3,2,1],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[2,4,2,1],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[2,3,2,1],[2,1,1,0]],[[0,2,1,0],[3,2,3,2],[2,3,2,1],[1,2,0,0]],[[0,2,1,0],[2,2,3,2],[3,3,2,1],[1,2,0,0]],[[0,2,1,0],[2,2,3,2],[2,4,2,1],[1,2,0,0]],[[0,2,1,0],[2,2,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[2,0,1,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,0,1,2],[2,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,0,1,2],[3,3,3,1],[1,2,0,0]],[[1,2,2,1],[2,0,1,3],[2,3,3,1],[1,2,0,0]],[[1,2,2,1],[3,0,1,2],[2,3,3,1],[1,2,0,0]],[[1,2,2,2],[2,0,1,2],[2,3,3,1],[1,2,0,0]],[[1,2,3,1],[2,0,1,2],[2,3,3,1],[1,2,0,0]],[[1,3,2,1],[2,0,1,2],[2,3,3,1],[1,2,0,0]],[[2,2,2,1],[2,0,1,2],[2,3,3,1],[1,2,0,0]],[[1,2,2,1],[2,0,1,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,4,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[3,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,1,3],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[3,0,1,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,2],[2,0,1,2],[2,3,3,1],[1,1,1,0]],[[1,2,3,1],[2,0,1,2],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[2,0,1,2],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[2,0,1,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,3,1],[2,1,0,1]],[[1,2,2,1],[2,0,1,2],[2,3,4,1],[1,1,0,1]],[[1,2,2,1],[2,0,1,2],[2,4,3,1],[1,1,0,1]],[[1,2,2,1],[2,0,1,2],[3,3,3,1],[1,1,0,1]],[[1,2,2,1],[2,0,1,3],[2,3,3,1],[1,1,0,1]],[[1,2,2,1],[3,0,1,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,2],[2,0,1,2],[2,3,3,1],[1,1,0,1]],[[1,2,3,1],[2,0,1,2],[2,3,3,1],[1,1,0,1]],[[1,3,2,1],[2,0,1,2],[2,3,3,1],[1,1,0,1]],[[2,2,2,1],[2,0,1,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[3,2,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,1,0],[2,2,3,2],[3,3,3,0],[0,1,2,0]],[[0,2,1,0],[2,2,3,2],[2,4,3,0],[0,1,2,0]],[[0,2,1,0],[3,2,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[3,3,3,0],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,4,3,0],[0,2,1,0]],[[0,2,1,0],[2,2,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,3,1],[1,0,3,0]],[[1,2,2,1],[2,0,1,2],[2,3,3,1],[2,0,2,0]],[[0,2,1,0],[3,2,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[3,3,3,0],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[2,4,3,0],[1,0,2,0]],[[0,2,1,0],[2,2,3,2],[2,3,3,0],[2,0,2,0]],[[0,2,1,0],[3,2,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[3,3,3,0],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[2,4,3,0],[1,1,1,0]],[[0,2,1,0],[2,2,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,4,1],[1,0,2,0]],[[1,2,2,1],[2,0,1,2],[2,4,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,1,2],[3,3,3,1],[1,0,2,0]],[[1,2,2,1],[2,0,1,3],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[3,0,1,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,2],[2,0,1,2],[2,3,3,1],[1,0,2,0]],[[1,2,3,1],[2,0,1,2],[2,3,3,1],[1,0,2,0]],[[1,3,2,1],[2,0,1,2],[2,3,3,1],[1,0,2,0]],[[2,2,2,1],[2,0,1,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[3,2,3,2],[2,3,3,0],[1,2,0,0]],[[0,2,1,0],[2,2,3,2],[3,3,3,0],[1,2,0,0]],[[0,2,1,0],[2,2,3,2],[2,4,3,0],[1,2,0,0]],[[0,2,1,0],[2,2,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[2,0,1,2],[2,3,3,1],[2,0,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,4,1],[1,0,1,1]],[[1,2,2,1],[2,0,1,2],[2,4,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,1,2],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,1,3],[2,3,3,1],[1,0,1,1]],[[1,2,2,1],[3,0,1,2],[2,3,3,1],[1,0,1,1]],[[1,2,2,2],[2,0,1,2],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[2,0,1,2],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[2,0,1,2],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[2,0,1,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[3,2,3,2],[2,3,3,1],[0,2,0,0]],[[0,2,1,0],[2,2,3,2],[3,3,3,1],[0,2,0,0]],[[0,2,1,0],[2,2,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[2,0,1,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,4,1],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,4,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[3,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,1,3],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[3,0,1,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[2,0,1,2],[2,3,3,1],[0,2,1,0]],[[1,2,3,1],[2,0,1,2],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[2,0,1,2],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[2,0,1,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,3,1],[0,3,0,1]],[[1,2,2,1],[2,0,1,2],[2,3,4,1],[0,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,4,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,1,2],[3,3,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,1,3],[2,3,3,1],[0,2,0,1]],[[1,2,2,1],[3,0,1,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,2],[2,0,1,2],[2,3,3,1],[0,2,0,1]],[[1,2,3,1],[2,0,1,2],[2,3,3,1],[0,2,0,1]],[[1,3,2,1],[2,0,1,2],[2,3,3,1],[0,2,0,1]],[[2,2,2,1],[2,0,1,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,3,3,1],[0,1,3,0]],[[1,2,2,1],[2,0,1,2],[2,3,4,1],[0,1,2,0]],[[0,2,1,0],[3,2,3,2],[2,3,3,1],[1,1,0,0]],[[0,2,1,0],[2,2,3,2],[3,3,3,1],[1,1,0,0]],[[0,2,1,0],[2,2,3,2],[2,4,3,1],[1,1,0,0]],[[0,2,1,0],[2,2,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[2,0,1,2],[2,4,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,1,2],[3,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,1,3],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[3,0,1,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,2],[2,0,1,2],[2,3,3,1],[0,1,2,0]],[[1,2,3,1],[2,0,1,2],[2,3,3,1],[0,1,2,0]],[[1,3,2,1],[2,0,1,2],[2,3,3,1],[0,1,2,0]],[[2,2,2,1],[2,0,1,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,3,4,1],[0,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,4,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,1,2],[3,3,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,1,3],[2,3,3,1],[0,1,1,1]],[[1,2,2,1],[3,0,1,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,2],[2,0,1,2],[2,3,3,1],[0,1,1,1]],[[1,2,3,1],[2,0,1,2],[2,3,3,1],[0,1,1,1]],[[1,3,2,1],[2,0,1,2],[2,3,3,1],[0,1,1,1]],[[2,2,2,1],[2,0,1,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,4,3,0],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[3,3,3,0],[1,2,0,1]],[[1,2,2,1],[3,0,1,2],[2,3,3,0],[1,2,0,1]],[[1,2,2,2],[2,0,1,2],[2,3,3,0],[1,2,0,1]],[[1,2,3,1],[2,0,1,2],[2,3,3,0],[1,2,0,1]],[[1,3,2,1],[2,0,1,2],[2,3,3,0],[1,2,0,1]],[[2,2,2,1],[2,0,1,2],[2,3,3,0],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,3,3,0],[2,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,4,0],[1,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,4,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,1,2],[3,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,1,3],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[3,0,1,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,2],[2,0,1,2],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[2,0,1,2],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[2,0,1,2],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[2,0,1,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,3,0],[1,0,2,2]],[[1,2,2,1],[2,0,1,2],[2,3,3,0],[1,0,3,1]],[[1,2,2,1],[2,0,1,2],[2,3,3,0],[2,0,2,1]],[[1,2,2,1],[2,0,1,2],[2,3,4,0],[1,0,2,1]],[[1,2,2,1],[2,0,1,2],[2,4,3,0],[1,0,2,1]],[[1,2,2,1],[2,0,1,2],[3,3,3,0],[1,0,2,1]],[[1,2,2,1],[2,0,1,3],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[3,0,1,2],[2,3,3,0],[1,0,2,1]],[[1,2,2,2],[2,0,1,2],[2,3,3,0],[1,0,2,1]],[[1,2,3,1],[2,0,1,2],[2,3,3,0],[1,0,2,1]],[[1,3,2,1],[2,0,1,2],[2,3,3,0],[1,0,2,1]],[[2,2,2,1],[2,0,1,2],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[2,0,1,2],[2,3,3,0],[0,3,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,4,0],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[2,4,3,0],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[3,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,0,1,3],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[3,0,1,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,2],[2,0,1,2],[2,3,3,0],[0,2,1,1]],[[1,2,3,1],[2,0,1,2],[2,3,3,0],[0,2,1,1]],[[1,3,2,1],[2,0,1,2],[2,3,3,0],[0,2,1,1]],[[2,2,2,1],[2,0,1,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,3,0],[0,1,2,2]],[[1,2,2,1],[2,0,1,2],[2,3,3,0],[0,1,3,1]],[[1,2,2,1],[2,0,1,2],[2,3,4,0],[0,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,4,3,0],[0,1,2,1]],[[1,2,2,1],[2,0,1,2],[3,3,3,0],[0,1,2,1]],[[1,2,2,1],[2,0,1,3],[2,3,3,0],[0,1,2,1]],[[1,2,2,1],[3,0,1,2],[2,3,3,0],[0,1,2,1]],[[1,2,2,2],[2,0,1,2],[2,3,3,0],[0,1,2,1]],[[1,2,3,1],[2,0,1,2],[2,3,3,0],[0,1,2,1]],[[1,3,2,1],[2,0,1,2],[2,3,3,0],[0,1,2,1]],[[2,2,2,1],[2,0,1,2],[2,3,3,0],[0,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[2,0,1,2],[2,4,2,2],[1,2,0,0]],[[1,2,2,1],[2,0,1,2],[3,3,2,2],[1,2,0,0]],[[1,2,2,1],[2,0,1,3],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[3,0,1,2],[2,3,2,2],[1,2,0,0]],[[1,2,2,2],[2,0,1,2],[2,3,2,2],[1,2,0,0]],[[1,2,3,1],[2,0,1,2],[2,3,2,2],[1,2,0,0]],[[1,3,2,1],[2,0,1,2],[2,3,2,2],[1,2,0,0]],[[2,2,2,1],[2,0,1,2],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,2],[2,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,4,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[3,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,3],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[3,0,1,2],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[2,0,1,2],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[2,0,1,2],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[2,0,1,2],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[2,0,1,2],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,2],[1,1,0,2]],[[1,2,2,1],[2,0,1,2],[2,3,2,2],[2,1,0,1]],[[1,2,2,1],[2,0,1,2],[2,3,2,3],[1,1,0,1]],[[1,2,2,1],[2,0,1,2],[2,4,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,1,2],[3,3,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,1,3],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[3,0,1,2],[2,3,2,2],[1,1,0,1]],[[1,2,2,2],[2,0,1,2],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[2,0,1,2],[2,3,2,2],[1,1,0,1]],[[1,3,2,1],[2,0,1,2],[2,3,2,2],[1,1,0,1]],[[2,2,2,1],[2,0,1,2],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[2,0,1,2],[2,3,2,2],[2,0,2,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,3],[1,0,2,0]],[[1,2,2,1],[2,0,1,2],[2,4,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,2],[3,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,3],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[3,0,1,2],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[2,0,1,2],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[2,0,1,2],[2,3,2,2],[1,0,2,0]],[[1,3,2,1],[2,0,1,2],[2,3,2,2],[1,0,2,0]],[[2,2,2,1],[2,0,1,2],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,2],[1,0,1,2]],[[1,2,2,1],[2,0,1,2],[2,3,2,2],[2,0,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,2,3],[1,0,1,1]],[[1,2,2,1],[2,0,1,2],[2,4,2,2],[1,0,1,1]],[[1,2,2,1],[2,0,1,2],[3,3,2,2],[1,0,1,1]],[[1,2,2,1],[2,0,1,3],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[3,0,1,2],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[2,0,1,2],[2,3,2,2],[1,0,1,1]],[[1,2,3,1],[2,0,1,2],[2,3,2,2],[1,0,1,1]],[[1,3,2,1],[2,0,1,2],[2,3,2,2],[1,0,1,1]],[[2,2,2,1],[2,0,1,2],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,2,2],[0,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,4,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[3,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,3],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[3,0,1,2],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[2,0,1,2],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[2,0,1,2],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[2,0,1,2],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[2,0,1,2],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,2],[0,2,0,2]],[[1,2,2,1],[2,0,1,2],[2,3,2,2],[0,3,0,1]],[[1,2,2,1],[2,0,1,2],[2,3,2,3],[0,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,4,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,1,2],[3,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,1,3],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[3,0,1,2],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[2,0,1,2],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[2,0,1,2],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[2,0,1,2],[2,3,2,2],[0,2,0,1]],[[2,2,2,1],[2,0,1,2],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,3,2,3],[0,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,4,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,1,2],[3,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,1,3],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[3,0,1,2],[2,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,0,0],[1,4,3,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,0],[1,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,3,0,0],[1,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,3,0,0],[1,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,0,0],[1,3,3,2],[1,2,2,2]],[[0,2,1,0],[3,3,0,0],[2,2,3,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,0],[3,2,3,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,0],[2,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,3,0,0],[2,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,3,0,0],[2,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,0,0],[2,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,3,0,0],[3,3,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,0],[2,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,0,0],[2,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,0,0],[3,3,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,0,0],[2,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,0,0],[2,3,3,1],[1,3,2,1]],[[0,2,1,0],[3,3,0,0],[2,3,3,2],[0,2,2,1]],[[0,2,1,0],[2,3,0,0],[3,3,3,2],[0,2,2,1]],[[0,2,1,0],[2,3,0,0],[2,4,3,2],[0,2,2,1]],[[0,2,1,0],[2,3,0,0],[2,3,3,2],[0,3,2,1]],[[0,2,1,0],[2,3,0,0],[2,3,3,2],[0,2,3,1]],[[0,2,1,0],[2,3,0,0],[2,3,3,2],[0,2,2,2]],[[0,2,1,0],[3,3,0,0],[2,3,3,2],[1,1,2,1]],[[0,2,1,0],[2,3,0,0],[3,3,3,2],[1,1,2,1]],[[0,2,1,0],[2,3,0,0],[2,4,3,2],[1,1,2,1]],[[0,2,1,0],[2,3,0,0],[2,3,3,2],[2,1,2,1]],[[0,2,1,0],[2,3,0,1],[0,4,3,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,1],[0,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,3,0,1],[0,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,3,0,1],[0,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,0,1],[0,3,3,2],[1,2,2,2]],[[0,2,1,0],[2,3,0,1],[1,4,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,0,1],[1,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,0,1],[1,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,0,1],[1,3,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,0,1],[1,3,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,0,1],[1,4,3,2],[0,2,2,1]],[[0,2,1,0],[2,3,0,1],[1,3,3,2],[0,3,2,1]],[[0,2,1,0],[2,3,0,1],[1,3,3,2],[0,2,3,1]],[[0,2,1,0],[2,3,0,1],[1,3,3,2],[0,2,2,2]],[[0,2,1,0],[2,3,0,1],[1,4,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,0,1],[1,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,0,1],[1,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,0,1],[1,3,3,2],[1,2,3,0]],[[0,2,1,0],[3,3,0,1],[2,2,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,0,1],[3,2,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,0,1],[2,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,0,1],[2,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,0,1],[2,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,0,1],[2,2,3,1],[1,2,2,2]],[[0,2,1,0],[3,3,0,1],[2,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,0,1],[3,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,0,1],[2,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,0,1],[2,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,0,1],[2,2,3,2],[1,2,3,0]],[[0,2,1,0],[2,3,0,1],[3,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,0,1],[2,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,0,1],[2,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,0,1],[3,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,0,1],[2,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,0,1],[2,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,0,1],[3,3,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,0,1],[2,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,0,1],[2,3,3,0],[1,3,2,1]],[[0,2,1,0],[3,3,0,1],[2,3,3,1],[0,2,2,1]],[[0,2,1,0],[2,3,0,1],[3,3,3,1],[0,2,2,1]],[[0,2,1,0],[2,3,0,1],[2,4,3,1],[0,2,2,1]],[[0,2,1,0],[2,3,0,1],[2,3,3,1],[0,3,2,1]],[[0,2,1,0],[2,3,0,1],[2,3,3,1],[0,2,3,1]],[[0,2,1,0],[2,3,0,1],[2,3,3,1],[0,2,2,2]],[[0,2,1,0],[3,3,0,1],[2,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,0,1],[3,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,0,1],[2,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,0,1],[2,3,3,1],[2,1,2,1]],[[0,2,1,0],[3,3,0,1],[2,3,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,0,1],[3,3,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,0,1],[2,4,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,0,1],[2,3,3,2],[0,3,2,0]],[[0,2,1,0],[2,3,0,1],[2,3,3,2],[0,2,3,0]],[[0,2,1,0],[3,3,0,1],[2,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,0,1],[3,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,0,1],[2,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,0,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,2],[2,0,1,2],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[2,0,1,2],[2,3,2,2],[0,1,2,0]],[[1,3,2,1],[2,0,1,2],[2,3,2,2],[0,1,2,0]],[[2,2,2,1],[2,0,1,2],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,2],[0,1,1,2]],[[1,2,2,1],[2,0,1,2],[2,3,2,3],[0,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,4,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,0,2],[0,2,3,3],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[0,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,3,0,2],[0,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,3,0,2],[0,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,0,2],[0,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,3,0,2],[0,4,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[0,3,2,3],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[0,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,0,2],[0,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,0,2],[0,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,0,2],[0,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,3,0,2],[0,4,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[0,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,0,2],[0,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,0,2],[0,3,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,0,2],[0,3,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,0,2],[0,3,3,3],[1,1,2,1]],[[0,2,1,0],[2,3,0,2],[0,3,3,2],[1,1,3,1]],[[0,2,1,0],[2,3,0,2],[0,3,3,2],[1,1,2,2]],[[0,2,1,0],[2,3,0,2],[0,4,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,0,2],[0,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,0,2],[0,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,0,2],[0,3,3,2],[1,2,3,0]],[[0,2,1,0],[2,3,0,2],[1,2,3,3],[0,2,2,1]],[[0,2,1,0],[2,3,0,2],[1,2,3,2],[0,3,2,1]],[[0,2,1,0],[2,3,0,2],[1,2,3,2],[0,2,3,1]],[[0,2,1,0],[2,3,0,2],[1,2,3,2],[0,2,2,2]],[[0,2,1,0],[2,3,0,2],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,0,2],[1,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,3,0,2],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,3,0,2],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,3,0,2],[1,4,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,2,3],[0,2,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,2,2],[0,3,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,2,2],[0,2,3,1]],[[0,2,1,0],[2,3,0,2],[1,3,2,2],[0,2,2,2]],[[0,2,1,0],[2,3,0,2],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,0,2],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,0,2],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,0,2],[1,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,3,0,2],[1,4,3,1],[0,2,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,1],[0,3,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,1],[0,2,3,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,1],[0,2,2,2]],[[0,2,1,0],[2,3,0,2],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,3],[0,1,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,2],[0,1,3,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,2],[0,1,2,2]],[[0,2,1,0],[2,3,0,2],[1,4,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,0,2],[1,3,3,2],[0,3,2,0]],[[0,2,1,0],[2,3,0,2],[1,3,3,2],[0,2,3,0]],[[0,2,1,0],[2,3,0,2],[1,3,3,3],[1,0,2,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,2],[1,0,3,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,2],[1,0,2,2]],[[0,2,1,0],[2,3,0,2],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,0,2],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,3,0,2],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,0,2],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[3,3,2,2],[0,1,1,1]],[[1,2,2,1],[2,0,1,3],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[3,0,1,2],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[2,0,1,2],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[2,0,1,2],[2,3,2,2],[0,1,1,1]],[[1,3,2,1],[2,0,1,2],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[3,3,0,2],[2,0,3,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[3,0,3,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,0,3,3],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,0,3,2],[2,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,0,3,2],[1,3,2,1]],[[0,2,1,0],[2,3,0,2],[2,0,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,0,2],[2,0,3,2],[1,2,2,2]],[[0,2,1,0],[3,3,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[3,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,2,1,3],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,2,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,2,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,0,2],[2,2,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,0,2],[2,2,1,2],[1,2,2,2]],[[0,2,1,0],[3,3,0,2],[2,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,0,2],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[2,3,0,2],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[3,3,0,2],[2,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,0,2],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,0,2],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,0,2],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,0,2],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[3,3,0,2],[2,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,0,2],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,0,2],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,0,2],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[3,3,0,2],[2,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,0,2],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,0,2],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,0,2],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[3,3,0,2],[2,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,0,2],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,0,2],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,0,2],[2,2,3,2],[1,3,1,0]],[[2,2,2,1],[2,0,1,2],[2,3,2,2],[0,1,1,1]],[[0,2,1,0],[3,3,0,2],[2,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[3,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,0,2],[2,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,0,2],[1,3,2,1]],[[0,2,1,0],[3,3,0,2],[2,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[3,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,1,1],[2,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,1,1],[1,3,2,1]],[[0,2,1,0],[3,3,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,0,2],[3,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,1,3],[0,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[2,3,0,2],[2,3,1,2],[0,2,2,2]],[[0,2,1,0],[3,3,0,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,0,2],[3,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,0,2],[2,4,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,1,2],[2,1,2,1]],[[0,2,1,0],[3,3,0,2],[2,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,0,2],[3,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,0,2],[2,3,1,2],[2,2,2,0]],[[0,2,1,0],[2,3,0,2],[2,3,1,2],[1,3,2,0]],[[0,2,1,0],[3,3,0,2],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,0,2],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,3,0,2],[2,3,2,1],[0,2,2,2]],[[0,2,1,0],[3,3,0,2],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,0,2],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,0,2],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[3,3,0,2],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,0,2],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,0,2],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,0,2],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,3,0,2],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[3,3,0,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,0,2],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,0,2],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,0,2],[2,3,2,2],[2,1,2,0]],[[0,2,1,0],[3,3,0,2],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,0,2],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,0,2],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[3,3,0,2],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,0,2],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,0,2],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,0,2],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[3,3,0,2],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,0,2],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,0,2],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,0,2],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[3,3,0,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,0,2],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,0,2],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,0,2],[2,3,3,1],[2,1,1,1]],[[0,2,1,0],[3,3,0,2],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,0,2],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,0,2],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,3,2,1],[2,1,2,0]],[[0,2,1,0],[3,3,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,0,2],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,0,2],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[3,3,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,0,2],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,0,2],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[3,3,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,0,2],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,0,2],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,0,2],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[3,3,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,0,2],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,0,2],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,4,2,1],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[3,3,2,1],[1,1,2,0]],[[1,2,2,1],[2,0,1,3],[2,3,2,1],[1,1,2,0]],[[1,2,2,1],[3,0,1,2],[2,3,2,1],[1,1,2,0]],[[1,2,2,2],[2,0,1,2],[2,3,2,1],[1,1,2,0]],[[1,2,3,1],[2,0,1,2],[2,3,2,1],[1,1,2,0]],[[1,3,2,1],[2,0,1,2],[2,3,2,1],[1,1,2,0]],[[0,2,1,0],[3,3,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,0,2],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,0,2],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,0,2],[2,3,3,2],[2,0,1,1]],[[0,2,1,0],[3,3,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,0,2],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,0,2],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,0,2],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[3,3,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,0,2],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,0,2],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,0,2],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[3,3,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,0,2],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,0,2],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,0,2],[2,3,3,2],[2,1,1,0]],[[2,2,2,1],[2,0,1,2],[2,3,2,1],[1,1,2,0]],[[0,2,1,0],[3,3,0,2],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,0,2],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,0,2],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,1],[0,2,3,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,1],[0,3,2,0]],[[1,2,2,1],[2,0,1,2],[2,4,2,1],[0,2,2,0]],[[1,2,2,1],[2,0,1,2],[3,3,2,1],[0,2,2,0]],[[1,2,2,1],[2,0,1,3],[2,3,2,1],[0,2,2,0]],[[1,2,2,1],[3,0,1,2],[2,3,2,1],[0,2,2,0]],[[1,2,2,2],[2,0,1,2],[2,3,2,1],[0,2,2,0]],[[1,2,3,1],[2,0,1,2],[2,3,2,1],[0,2,2,0]],[[1,3,2,1],[2,0,1,2],[2,3,2,1],[0,2,2,0]],[[2,2,2,1],[2,0,1,2],[2,3,2,1],[0,2,2,0]],[[0,2,1,0],[2,3,1,0],[0,4,3,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,0],[0,3,3,2],[2,2,2,1]],[[0,2,1,0],[2,3,1,0],[0,3,3,2],[1,3,2,1]],[[0,2,1,0],[2,3,1,0],[0,3,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,1,0],[0,3,3,2],[1,2,2,2]],[[0,2,1,0],[2,3,1,0],[1,4,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,0],[1,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,1,0],[1,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,1,0],[1,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,1,0],[1,3,2,2],[1,2,2,2]],[[0,2,1,0],[2,3,1,0],[1,4,3,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,0],[1,3,3,2],[0,3,2,1]],[[0,2,1,0],[2,3,1,0],[1,3,3,2],[0,2,3,1]],[[0,2,1,0],[2,3,1,0],[1,3,3,2],[0,2,2,2]],[[0,2,1,0],[2,3,1,0],[1,4,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,1,0],[1,3,3,2],[2,2,1,1]],[[0,2,1,0],[2,3,1,0],[1,3,3,2],[1,3,1,1]],[[0,2,1,0],[3,3,1,0],[2,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,0],[3,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,0],[2,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,1,0],[2,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,1,0],[2,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,1,0],[2,2,2,2],[1,2,2,2]],[[0,2,1,0],[3,3,1,0],[2,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,1,0],[3,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,1,0],[2,2,3,2],[2,2,1,1]],[[0,2,1,0],[2,3,1,0],[2,2,3,2],[1,3,1,1]],[[0,2,1,0],[3,3,1,0],[2,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,0],[3,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,0],[2,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,1,0],[2,3,1,2],[1,3,2,1]],[[0,2,1,0],[3,3,1,0],[2,3,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,0],[3,3,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,0],[2,4,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,0],[2,3,2,2],[0,3,2,1]],[[0,2,1,0],[2,3,1,0],[2,3,2,2],[0,2,3,1]],[[0,2,1,0],[2,3,1,0],[2,3,2,2],[0,2,2,2]],[[0,2,1,0],[3,3,1,0],[2,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,3,1,0],[3,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,3,1,0],[2,4,2,2],[1,1,2,1]],[[0,2,1,0],[2,3,1,0],[2,3,2,2],[2,1,2,1]],[[0,2,1,0],[2,3,1,0],[3,3,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,1,0],[2,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,1,0],[2,3,3,0],[1,3,2,1]],[[0,2,1,0],[3,3,1,0],[2,3,3,2],[0,1,2,1]],[[0,2,1,0],[2,3,1,0],[3,3,3,2],[0,1,2,1]],[[0,2,1,0],[2,3,1,0],[2,4,3,2],[0,1,2,1]],[[0,2,1,0],[3,3,1,0],[2,3,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,1,0],[3,3,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,1,0],[2,4,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,1,0],[2,3,3,2],[0,3,1,1]],[[0,2,1,0],[3,3,1,0],[2,3,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,1,0],[3,3,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,1,0],[2,4,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,1,0],[2,3,3,2],[2,0,2,1]],[[0,2,1,0],[3,3,1,0],[2,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,1,0],[3,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,1,0],[2,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,1,0],[2,3,3,2],[2,1,1,1]],[[0,2,1,0],[3,3,1,0],[2,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,0],[3,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,0],[2,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,0],[2,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,1,1],[0,4,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[0,3,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,1,1],[0,3,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,1,1],[0,3,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,1,1],[0,3,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,1,1],[0,4,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,1],[0,3,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,1,1],[0,3,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,1,1],[0,3,3,2],[1,2,3,0]],[[0,2,1,0],[2,3,1,1],[1,4,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[1,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,1,1],[1,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,1,1],[1,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,1,1],[1,3,1,2],[1,2,2,2]],[[0,2,1,0],[2,3,1,1],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,1,1],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,1,1],[1,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,3,1,1],[1,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,3,1,1],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,1],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,1,1],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,1,1],[1,3,2,2],[1,2,3,0]],[[0,2,1,0],[2,3,1,1],[1,4,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[1,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,1,1],[1,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,1,1],[1,3,3,0],[1,2,3,1]],[[0,2,1,0],[2,3,1,1],[1,4,3,1],[0,2,2,1]],[[0,2,1,0],[2,3,1,1],[1,3,3,1],[0,3,2,1]],[[0,2,1,0],[2,3,1,1],[1,3,3,1],[0,2,3,1]],[[0,2,1,0],[2,3,1,1],[1,3,3,1],[0,2,2,2]],[[0,2,1,0],[2,3,1,1],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,1,1],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,1,1],[1,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,3,1,1],[1,4,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,1,1],[1,3,3,2],[0,3,2,0]],[[0,2,1,0],[2,3,1,1],[1,3,3,2],[0,2,3,0]],[[0,2,1,0],[2,3,1,1],[1,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,1],[1,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,1,1],[1,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,3,1,1],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,1,1],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,1,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,0],[2,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,4,2,0],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[3,3,2,0],[1,1,2,1]],[[1,2,2,1],[2,0,1,3],[2,3,2,0],[1,1,2,1]],[[0,2,1,0],[3,3,1,1],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[3,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,2,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,2,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,1,1],[2,2,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,1,1],[2,2,1,2],[1,2,2,2]],[[0,2,1,0],[3,3,1,1],[2,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,1,1],[2,2,2,1],[1,2,3,1]],[[0,2,1,0],[2,3,1,1],[2,2,2,1],[1,2,2,2]],[[0,2,1,0],[3,3,1,1],[2,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,1],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,1],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,1,1],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,1,1],[2,2,2,2],[1,2,3,0]],[[0,2,1,0],[3,3,1,1],[2,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[3,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,2,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,2,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,1,1],[2,2,3,0],[1,2,3,1]],[[0,2,1,0],[3,3,1,1],[2,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,1,1],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,1,1],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,1,1],[2,2,3,1],[1,3,1,1]],[[0,2,1,0],[3,3,1,1],[2,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,1],[3,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,1],[2,2,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,1,1],[2,2,3,2],[1,3,0,1]],[[0,2,1,0],[3,3,1,1],[2,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,1,1],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,1,1],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,1,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[3,0,1,2],[2,3,2,0],[1,1,2,1]],[[1,2,2,2],[2,0,1,2],[2,3,2,0],[1,1,2,1]],[[1,2,3,1],[2,0,1,2],[2,3,2,0],[1,1,2,1]],[[1,3,2,1],[2,0,1,2],[2,3,2,0],[1,1,2,1]],[[2,2,2,1],[2,0,1,2],[2,3,2,0],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,3,2,0],[0,2,2,2]],[[0,2,1,0],[3,3,1,1],[2,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[3,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,0,2],[2,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,0,2],[1,3,2,1]],[[0,2,1,0],[3,3,1,1],[2,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[3,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,1,1],[2,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,1,1],[1,3,2,1]],[[0,2,1,0],[3,3,1,1],[2,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,1],[3,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,4,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,1,2],[0,3,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,1,2],[0,2,3,1]],[[0,2,1,0],[2,3,1,1],[2,3,1,2],[0,2,2,2]],[[0,2,1,0],[3,3,1,1],[2,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,1,1],[3,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,1,1],[2,4,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,1,2],[2,1,2,1]],[[0,2,1,0],[3,3,1,1],[2,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,1],[3,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,1],[2,3,1,2],[2,2,2,0]],[[0,2,1,0],[2,3,1,1],[2,3,1,2],[1,3,2,0]],[[0,2,1,0],[3,3,1,1],[2,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[3,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,2,0],[2,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,2,0],[1,3,2,1]],[[0,2,1,0],[3,3,1,1],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,1,1],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,3,1,1],[2,3,2,1],[0,2,2,2]],[[0,2,1,0],[3,3,1,1],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,1,1],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,1,1],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[3,3,1,1],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,1,1],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,1,1],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,1,1],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,3,1,1],[2,3,2,2],[0,2,3,0]],[[0,2,1,0],[3,3,1,1],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,1,1],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,1,1],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,1,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,3,2,0],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[2,3,2,0],[0,3,2,1]],[[1,2,2,1],[2,0,1,2],[2,4,2,0],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[3,3,2,0],[0,2,2,1]],[[1,2,2,1],[2,0,1,3],[2,3,2,0],[0,2,2,1]],[[1,2,2,1],[3,0,1,2],[2,3,2,0],[0,2,2,1]],[[1,2,2,2],[2,0,1,2],[2,3,2,0],[0,2,2,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,1,1],[3,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,4,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,3,0],[0,3,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,3,0],[0,2,3,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,1,1],[3,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,1,1],[2,4,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,3,0],[2,1,2,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,1,1],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,1,1],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,1,1],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,1,1],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,1,1],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,1,1],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,1,1],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,1,1],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,1,1],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,1,1],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,1,1],[2,3,3,1],[2,1,1,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,1,1],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,1,1],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,1,1],[2,3,3,1],[2,2,0,1]],[[1,2,3,1],[2,0,1,2],[2,3,2,0],[0,2,2,1]],[[1,3,2,1],[2,0,1,2],[2,3,2,0],[0,2,2,1]],[[2,2,2,1],[2,0,1,2],[2,3,2,0],[0,2,2,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,1,1],[3,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,1,1],[2,4,3,2],[0,1,1,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,1,1],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,1,1],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[3,3,1,1],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,1,1],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,1,1],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,1,1],[2,3,3,2],[0,3,0,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,1,1],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,1,1],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,1,1],[2,3,3,2],[0,3,1,0]],[[0,2,1,0],[3,3,1,1],[2,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,1,1],[3,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,1,1],[2,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,1,1],[2,3,3,2],[2,0,1,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,1,1],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,1,1],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,1,1],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[3,3,1,1],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,1,1],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,1,1],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,1,1],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[3,3,1,1],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,1,1],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,1,1],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,1,1],[2,3,3,2],[2,1,1,0]],[[0,2,1,0],[3,3,1,1],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,1,1],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,1,1],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,1,1],[2,3,3,2],[2,2,0,0]],[[0,2,1,0],[2,3,1,3],[0,2,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,2,2,3],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,1,2],[0,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,1,2],[0,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,3,1,2],[0,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,1,2],[0,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,1,2],[0,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,1,3],[0,2,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[0,2,4,2],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[0,2,3,3],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[0,2,3,2],[1,2,1,2]],[[0,2,1,0],[2,3,1,3],[0,2,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[0,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[0,2,3,3],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[0,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,1,2],[0,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,1,2],[0,2,3,2],[1,2,3,0]],[[0,3,1,0],[2,3,1,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[3,3,1,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,4,1,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,3],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,4,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,1,2],[0,3,1,2],[1,2,2,2]],[[0,3,1,0],[2,3,1,2],[0,3,2,1],[1,2,2,1]],[[0,2,1,0],[3,3,1,2],[0,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,4,1,2],[0,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,3,1,2],[0,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,3,1,3],[0,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,2,3],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,2,2],[1,1,3,1]],[[0,2,1,0],[2,3,1,2],[0,3,2,2],[1,1,2,2]],[[0,3,1,0],[2,3,1,2],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[3,3,1,2],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,4,1,2],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[0,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[0,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,1,2],[0,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,1,2],[0,3,2,2],[1,2,3,0]],[[0,3,1,0],[2,3,1,2],[0,3,3,1],[1,1,2,1]],[[0,2,1,0],[3,3,1,2],[0,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,4,1,2],[0,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[0,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,4,1],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,1],[1,1,3,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,1],[1,1,2,2]],[[0,3,1,0],[2,3,1,2],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[3,3,1,2],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,4,1,2],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[0,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[0,3,4,1],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,3,1,3],[0,3,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,4,2],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,3],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,2],[1,0,2,2]],[[0,3,1,0],[2,3,1,2],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[3,3,1,2],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,4,1,2],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,1,3],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[0,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[0,3,4,2],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,3],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,2],[1,1,1,2]],[[0,3,1,0],[2,3,1,2],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[3,3,1,2],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,4,1,2],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,1,3],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,1,2],[0,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,1,2],[0,3,4,2],[1,1,2,0]],[[0,2,1,0],[2,3,1,2],[0,3,3,3],[1,1,2,0]],[[0,2,1,0],[2,3,1,2],[0,3,3,2],[1,1,3,0]],[[0,3,1,0],[2,3,1,2],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[3,3,1,2],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,4,1,2],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,3],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,2],[0,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,2],[0,3,4,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,3],[1,2,0,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,3,1,2],[0,3,3,2],[1,2,0,2]],[[0,3,1,0],[2,3,1,2],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[3,3,1,2],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,4,1,2],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,1,3],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,1,2],[0,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,1,2],[0,3,4,2],[1,2,1,0]],[[0,2,1,0],[2,3,1,2],[0,3,3,3],[1,2,1,0]],[[0,2,1,0],[2,3,1,2],[0,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,3,1,3],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,4,1,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[3,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,3],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[3,0,1,2],[2,3,1,2],[1,1,2,0]],[[1,2,2,2],[2,0,1,2],[2,3,1,2],[1,1,2,0]],[[0,2,1,0],[2,3,1,3],[1,2,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[1,2,2,3],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[1,2,2,2],[0,3,2,1]],[[0,2,1,0],[2,3,1,2],[1,2,2,2],[0,2,3,1]],[[0,2,1,0],[2,3,1,2],[1,2,2,2],[0,2,2,2]],[[0,2,1,0],[2,3,1,2],[1,2,4,1],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[1,2,3,1],[0,3,2,1]],[[0,2,1,0],[2,3,1,2],[1,2,3,1],[0,2,3,1]],[[0,2,1,0],[2,3,1,2],[1,2,3,1],[0,2,2,2]],[[0,2,1,0],[2,3,1,3],[1,2,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,1,2],[1,2,4,2],[0,2,1,1]],[[0,2,1,0],[2,3,1,2],[1,2,3,3],[0,2,1,1]],[[0,2,1,0],[2,3,1,2],[1,2,3,2],[0,2,1,2]],[[0,2,1,0],[2,3,1,3],[1,2,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,1,2],[1,2,4,2],[0,2,2,0]],[[0,2,1,0],[2,3,1,2],[1,2,3,3],[0,2,2,0]],[[0,2,1,0],[2,3,1,2],[1,2,3,2],[0,3,2,0]],[[0,2,1,0],[2,3,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,3,1],[2,0,1,2],[2,3,1,2],[1,1,2,0]],[[1,3,2,1],[2,0,1,2],[2,3,1,2],[1,1,2,0]],[[2,2,2,1],[2,0,1,2],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[1,1,1,2]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[2,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,1,3],[1,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,4,1,2],[1,1,1,1]],[[0,3,1,0],[2,3,1,2],[1,3,1,2],[0,2,2,1]],[[0,2,1,0],[3,3,1,2],[1,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,4,1,2],[1,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,3],[1,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[1,4,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,1,3],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,1,2],[0,3,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,1,2],[0,2,3,1]],[[0,2,1,0],[2,3,1,2],[1,3,1,2],[0,2,2,2]],[[0,3,1,0],[2,3,1,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[3,3,1,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,4,1,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[1,4,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[1,4,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,0],[2,2,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,0],[1,3,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,0],[1,2,3,1]],[[0,3,1,0],[2,3,1,2],[1,3,2,1],[0,2,2,1]],[[0,2,1,0],[3,3,1,2],[1,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,4,1,2],[1,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[1,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,1],[0,2,2,2]],[[0,3,1,0],[2,3,1,2],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[3,3,1,2],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,4,1,2],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[1,4,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[1,4,2,1],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[1,3,2,1],[2,2,2,0]],[[0,2,1,0],[2,3,1,2],[1,3,2,1],[1,3,2,0]],[[0,2,1,0],[2,3,1,3],[1,3,2,2],[0,1,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,3],[0,1,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,2],[0,1,3,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,2],[0,1,2,2]],[[0,3,1,0],[2,3,1,2],[1,3,2,2],[0,2,2,0]],[[0,2,1,0],[3,3,1,2],[1,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,4,1,2],[1,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,1,2],[1,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,1,2],[1,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,3,1,2],[1,3,2,2],[0,2,3,0]],[[0,2,1,0],[2,3,1,3],[1,3,2,2],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,3],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,2],[1,0,3,1]],[[0,2,1,0],[2,3,1,2],[1,3,2,2],[1,0,2,2]],[[0,3,1,0],[2,3,1,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[3,3,1,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,4,1,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,1,2],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[3,3,1,2],[1,1,1,1]],[[1,2,2,1],[2,0,1,3],[2,3,1,2],[1,1,1,1]],[[1,2,2,1],[3,0,1,2],[2,3,1,2],[1,1,1,1]],[[1,2,2,2],[2,0,1,2],[2,3,1,2],[1,1,1,1]],[[1,2,3,1],[2,0,1,2],[2,3,1,2],[1,1,1,1]],[[1,3,2,1],[2,0,1,2],[2,3,1,2],[1,1,1,1]],[[2,2,2,1],[2,0,1,2],[2,3,1,2],[1,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[1,0,3,1]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[2,0,2,1]],[[0,2,1,0],[2,3,1,2],[1,4,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,0],[2,2,1,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,0],[1,3,1,1]],[[0,3,1,0],[2,3,1,2],[1,3,3,1],[0,1,2,1]],[[0,2,1,0],[3,3,1,2],[1,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,4,1,2],[1,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,1,2],[1,4,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,1],[0,1,2,2]],[[0,3,1,0],[2,3,1,2],[1,3,3,1],[0,2,1,1]],[[0,2,1,0],[3,3,1,2],[1,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,4,1,2],[1,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,1,2],[1,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,1,2],[1,3,4,1],[0,2,1,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,1],[0,3,1,1]],[[0,3,1,0],[2,3,1,2],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[3,3,1,2],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,4,1,2],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[1,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,4,1],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,1],[1,0,3,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,1],[1,0,2,2]],[[0,3,1,0],[2,3,1,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[3,3,1,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,4,1,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[1,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[1,3,4,1],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[1,4,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,1,2],[1,3,3,1],[2,2,1,0]],[[0,2,1,0],[2,3,1,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,1,3],[1,0,2,1]],[[1,2,2,1],[2,0,1,2],[2,4,1,2],[1,0,2,1]],[[1,2,2,1],[2,0,1,2],[3,3,1,2],[1,0,2,1]],[[1,2,2,1],[2,0,1,3],[2,3,1,2],[1,0,2,1]],[[1,2,2,1],[3,0,1,2],[2,3,1,2],[1,0,2,1]],[[1,2,2,2],[2,0,1,2],[2,3,1,2],[1,0,2,1]],[[1,2,3,1],[2,0,1,2],[2,3,1,2],[1,0,2,1]],[[1,3,2,1],[2,0,1,2],[2,3,1,2],[1,0,2,1]],[[2,2,2,1],[2,0,1,2],[2,3,1,2],[1,0,2,1]],[[0,2,1,0],[2,3,1,3],[1,3,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,4,2],[0,0,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,3],[0,0,2,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,2],[0,0,2,2]],[[0,3,1,0],[2,3,1,2],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[3,3,1,2],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,4,1,2],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,1,3],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,1,2],[1,4,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,1,2],[1,3,4,2],[0,1,1,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,3],[0,1,1,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,2],[0,1,1,2]],[[0,3,1,0],[2,3,1,2],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[3,3,1,2],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,4,1,2],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,1,3],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,1,2],[1,4,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,1,2],[1,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,3,1,2],[1,3,3,3],[0,1,2,0]],[[0,2,1,0],[2,3,1,2],[1,3,3,2],[0,1,3,0]],[[0,3,1,0],[2,3,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[3,3,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,4,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,1,3],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,1,2],[1,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,1,2],[1,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,3],[0,2,0,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,2],[0,3,0,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,2],[0,2,0,2]],[[0,3,1,0],[2,3,1,2],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[3,3,1,2],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,4,1,2],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,1,3],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,1,2],[1,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,1,2],[1,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,3,1,2],[1,3,3,3],[0,2,1,0]],[[0,2,1,0],[2,3,1,2],[1,3,3,2],[0,3,1,0]],[[0,3,1,0],[2,3,1,2],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[3,3,1,2],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,4,1,2],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,1,3],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,1,2],[1,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,1,2],[1,3,4,2],[1,0,1,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,3],[1,0,1,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,2],[1,0,1,2]],[[0,3,1,0],[2,3,1,2],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[3,3,1,2],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,4,1,2],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,1,3],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,1,2],[1,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,1,2],[1,3,4,2],[1,0,2,0]],[[0,2,1,0],[2,3,1,2],[1,3,3,3],[1,0,2,0]],[[0,2,1,0],[2,3,1,2],[1,3,3,2],[1,0,3,0]],[[0,3,1,0],[2,3,1,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[3,3,1,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,4,1,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,1,3],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,1,2],[1,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,1,2],[1,3,4,2],[1,1,0,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,3],[1,1,0,1]],[[0,2,1,0],[2,3,1,2],[1,3,3,2],[1,1,0,2]],[[0,3,1,0],[2,3,1,2],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[3,3,1,2],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,4,1,2],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,1,3],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,1,2],[1,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,1,2],[1,3,4,2],[1,1,1,0]],[[0,2,1,0],[2,3,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[0,2,3,0]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[0,3,2,0]],[[1,2,2,1],[2,0,1,2],[2,3,1,3],[0,2,2,0]],[[1,2,2,1],[2,0,1,2],[2,4,1,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,2],[3,3,1,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,3],[2,3,1,2],[0,2,2,0]],[[1,2,2,1],[3,0,1,2],[2,3,1,2],[0,2,2,0]],[[0,3,1,0],[2,3,1,2],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[3,3,1,2],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,4,1,2],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,1,2],[1,4,3,2],[1,2,0,0]],[[1,2,2,2],[2,0,1,2],[2,3,1,2],[0,2,2,0]],[[1,2,3,1],[2,0,1,2],[2,3,1,2],[0,2,2,0]],[[1,3,2,1],[2,0,1,2],[2,3,1,2],[0,2,2,0]],[[2,2,2,1],[2,0,1,2],[2,3,1,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[0,2,1,2]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[0,3,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,1,3],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[2,4,1,2],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[3,3,1,2],[0,2,1,1]],[[1,2,2,1],[2,0,1,3],[2,3,1,2],[0,2,1,1]],[[1,2,2,1],[3,0,1,2],[2,3,1,2],[0,2,1,1]],[[1,2,2,2],[2,0,1,2],[2,3,1,2],[0,2,1,1]],[[1,2,3,1],[2,0,1,2],[2,3,1,2],[0,2,1,1]],[[1,3,2,1],[2,0,1,2],[2,3,1,2],[0,2,1,1]],[[2,2,2,1],[2,0,1,2],[2,3,1,2],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[0,1,2,2]],[[1,2,2,1],[2,0,1,2],[2,3,1,2],[0,1,3,1]],[[1,2,2,1],[2,0,1,2],[2,3,1,3],[0,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,4,1,2],[0,1,2,1]],[[1,2,2,1],[2,0,1,2],[3,3,1,2],[0,1,2,1]],[[1,2,2,1],[2,0,1,3],[2,3,1,2],[0,1,2,1]],[[1,2,2,1],[3,0,1,2],[2,3,1,2],[0,1,2,1]],[[1,2,2,2],[2,0,1,2],[2,3,1,2],[0,1,2,1]],[[1,2,3,1],[2,0,1,2],[2,3,1,2],[0,1,2,1]],[[1,3,2,1],[2,0,1,2],[2,3,1,2],[0,1,2,1]],[[2,2,2,1],[2,0,1,2],[2,3,1,2],[0,1,2,1]],[[0,3,1,0],[2,3,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,1,0],[3,3,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,4,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,3],[2,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[3,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,0,2,3],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,0,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,0,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,1,2],[2,0,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,1,2],[2,0,2,2],[1,2,2,2]],[[0,3,1,0],[2,3,1,2],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[3,3,1,2],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,4,1,2],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[3,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,0,4,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,0,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,0,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,1,2],[2,0,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,1,2],[2,0,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,1,3],[2,0,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[2,0,4,2],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[2,0,3,3],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[2,0,3,2],[1,2,1,2]],[[0,3,1,0],[2,3,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[3,3,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,4,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,3],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[3,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,0,4,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,0,3,3],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,0,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,0,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,1,2],[2,0,3,2],[1,2,3,0]],[[0,3,1,0],[2,3,1,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[3,3,1,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,4,1,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,3],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[3,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,1,1,3],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,1,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,1,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,1,2],[2,1,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,1,2],[2,1,1,2],[1,2,2,2]],[[0,3,1,0],[2,3,1,2],[2,1,2,1],[1,2,2,1]],[[0,2,1,0],[3,3,1,2],[2,1,2,1],[1,2,2,1]],[[0,2,1,0],[2,4,1,2],[2,1,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[3,1,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,1,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,1,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,1,2],[2,1,2,1],[1,2,3,1]],[[0,2,1,0],[2,3,1,2],[2,1,2,1],[1,2,2,2]],[[0,3,1,0],[2,3,1,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[3,3,1,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,4,1,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[3,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,1,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,1,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,1,2],[2,1,2,2],[1,2,3,0]],[[0,3,1,0],[2,3,1,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[3,3,1,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,4,1,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[3,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[2,1,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,1,2],[2,1,3,1],[1,3,1,1]],[[0,3,1,0],[2,3,1,2],[2,1,3,2],[1,2,0,1]],[[0,2,1,0],[3,3,1,2],[2,1,3,2],[1,2,0,1]],[[0,2,1,0],[2,4,1,2],[2,1,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,2],[3,1,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,1,2],[2,1,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,1,2],[2,1,3,2],[1,3,0,1]],[[0,3,1,0],[2,3,1,2],[2,1,3,2],[1,2,1,0]],[[0,2,1,0],[3,3,1,2],[2,1,3,2],[1,2,1,0]],[[0,2,1,0],[2,4,1,2],[2,1,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,1,2],[3,1,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,1,2],[2,1,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,1,2],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,3,1,1],[2,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,4,1,1],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[3,3,1,1],[1,1,2,1]],[[1,2,2,1],[2,0,1,3],[2,3,1,1],[1,1,2,1]],[[0,3,1,0],[2,3,1,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[3,3,1,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[2,4,1,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[3,2,1,2],[0,2,2,1]],[[0,3,1,0],[2,3,1,2],[2,2,1,2],[1,1,2,1]],[[0,2,1,0],[3,3,1,2],[2,2,1,2],[1,1,2,1]],[[0,2,1,0],[2,4,1,2],[2,2,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[3,2,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[2,2,1,2],[2,1,2,1]],[[0,2,1,0],[3,3,1,2],[2,2,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[3,2,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,2,2,0],[2,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,2,2,0],[1,3,2,1]],[[0,2,1,0],[2,3,1,2],[2,2,2,0],[1,2,3,1]],[[0,3,1,0],[2,3,1,2],[2,2,2,1],[0,2,2,1]],[[0,2,1,0],[3,3,1,2],[2,2,2,1],[0,2,2,1]],[[0,2,1,0],[2,4,1,2],[2,2,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[3,2,2,1],[0,2,2,1]],[[0,3,1,0],[2,3,1,2],[2,2,2,1],[1,1,2,1]],[[0,2,1,0],[3,3,1,2],[2,2,2,1],[1,1,2,1]],[[0,2,1,0],[2,4,1,2],[2,2,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[3,2,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[2,2,2,1],[2,1,2,1]],[[0,2,1,0],[3,3,1,2],[2,2,2,1],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[3,2,2,1],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,2,2,1],[2,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,2,2,1],[1,3,2,0]],[[0,3,1,0],[2,3,1,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[3,3,1,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[2,4,1,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,1,2],[3,2,2,2],[0,2,2,0]],[[0,3,1,0],[2,3,1,2],[2,2,2,2],[1,1,2,0]],[[0,2,1,0],[3,3,1,2],[2,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,4,1,2],[2,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,1,2],[3,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,1,2],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[3,0,1,2],[2,3,1,1],[1,1,2,1]],[[1,2,2,2],[2,0,1,2],[2,3,1,1],[1,1,2,1]],[[1,2,3,1],[2,0,1,2],[2,3,1,1],[1,1,2,1]],[[1,3,2,1],[2,0,1,2],[2,3,1,1],[1,1,2,1]],[[2,2,2,1],[2,0,1,2],[2,3,1,1],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,3,1,1],[0,2,2,2]],[[1,2,2,1],[2,0,1,2],[2,3,1,1],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[2,3,1,1],[0,3,2,1]],[[1,2,2,1],[2,0,1,2],[2,4,1,1],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[3,3,1,1],[0,2,2,1]],[[0,2,1,0],[3,3,1,2],[2,2,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[3,2,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,1,2],[2,2,3,0],[2,2,1,1]],[[0,2,1,0],[2,3,1,2],[2,2,3,0],[1,3,1,1]],[[0,3,1,0],[2,3,1,2],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[3,3,1,2],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[2,4,1,2],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,1,2],[3,2,3,1],[0,1,2,1]],[[0,3,1,0],[2,3,1,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[3,3,1,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,4,1,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,1,2],[3,2,3,1],[0,2,1,1]],[[0,3,1,0],[2,3,1,2],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[3,3,1,2],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,4,1,2],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[3,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[2,2,3,1],[2,0,2,1]],[[0,3,1,0],[2,3,1,2],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[3,3,1,2],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,4,1,2],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[3,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[2,2,3,1],[2,1,1,1]],[[0,2,1,0],[3,3,1,2],[2,2,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,1,2],[3,2,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,1,2],[2,2,3,1],[2,2,1,0]],[[0,2,1,0],[2,3,1,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,1,3],[2,3,1,1],[0,2,2,1]],[[1,2,2,1],[3,0,1,2],[2,3,1,1],[0,2,2,1]],[[1,2,2,2],[2,0,1,2],[2,3,1,1],[0,2,2,1]],[[1,2,3,1],[2,0,1,2],[2,3,1,1],[0,2,2,1]],[[1,3,2,1],[2,0,1,2],[2,3,1,1],[0,2,2,1]],[[2,2,2,1],[2,0,1,2],[2,3,1,1],[0,2,2,1]],[[0,3,1,0],[2,3,1,2],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[3,3,1,2],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,4,1,2],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,1,2],[3,2,3,2],[0,1,1,1]],[[0,3,1,0],[2,3,1,2],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[3,3,1,2],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,4,1,2],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,1,2],[3,2,3,2],[0,1,2,0]],[[0,3,1,0],[2,3,1,2],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[3,3,1,2],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[2,4,1,2],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,1,2],[3,2,3,2],[0,2,0,1]],[[0,3,1,0],[2,3,1,2],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[3,3,1,2],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[2,4,1,2],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,1,2],[3,2,3,2],[0,2,1,0]],[[0,3,1,0],[2,3,1,2],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[3,3,1,2],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,4,1,2],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,1,2],[3,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,1,2],[2,2,3,2],[2,0,1,1]],[[0,3,1,0],[2,3,1,2],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[3,3,1,2],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,4,1,2],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,1,2],[3,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,1,2],[2,2,3,2],[2,0,2,0]],[[0,3,1,0],[2,3,1,2],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[3,3,1,2],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,4,1,2],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,1,2],[3,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,1,2],[2,2,3,2],[2,1,0,1]],[[0,3,1,0],[2,3,1,2],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[3,3,1,2],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,4,1,2],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,1,2],[3,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,1,2],[2,2,3,2],[2,1,1,0]],[[0,3,1,0],[2,3,1,2],[2,2,3,2],[1,2,0,0]],[[0,2,1,0],[3,3,1,2],[2,2,3,2],[1,2,0,0]],[[0,2,1,0],[2,4,1,2],[2,2,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,1,2],[3,2,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,1,2],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,2],[2,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,4,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[3,2,3,2],[1,1,1,0]],[[0,2,1,0],[3,3,1,2],[2,3,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[3,3,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,3,1,0],[2,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,3,1,0],[1,3,2,1]],[[0,2,1,0],[3,3,1,2],[2,3,1,1],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[3,3,1,1],[1,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,3,1,1],[2,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[2,0,1,3],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[3,0,1,2],[2,2,3,2],[1,1,1,0]],[[1,2,2,2],[2,0,1,2],[2,2,3,2],[1,1,1,0]],[[1,2,3,1],[2,0,1,2],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[2,0,1,2],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[2,0,1,2],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,2],[1,1,0,2]],[[1,2,2,1],[2,0,1,2],[2,2,3,2],[2,1,0,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,3],[1,1,0,1]],[[1,2,2,1],[2,0,1,2],[2,2,4,2],[1,1,0,1]],[[1,2,2,1],[2,0,1,2],[3,2,3,2],[1,1,0,1]],[[0,2,1,0],[3,3,1,2],[2,3,2,0],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[3,3,2,0],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,4,2,0],[0,2,2,1]],[[0,2,1,0],[2,3,1,2],[2,3,2,0],[0,3,2,1]],[[0,2,1,0],[2,3,1,2],[2,3,2,0],[0,2,3,1]],[[0,2,1,0],[3,3,1,2],[2,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[3,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[2,4,2,0],[1,1,2,1]],[[0,2,1,0],[2,3,1,2],[2,3,2,0],[2,1,2,1]],[[0,2,1,0],[3,3,1,2],[2,3,2,1],[0,2,2,0]],[[0,2,1,0],[2,3,1,2],[3,3,2,1],[0,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,4,2,1],[0,2,2,0]],[[0,2,1,0],[2,3,1,2],[2,3,2,1],[0,3,2,0]],[[0,2,1,0],[3,3,1,2],[2,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,3,1,2],[3,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,3,1,2],[2,4,2,1],[1,1,2,0]],[[0,2,1,0],[2,3,1,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[2,0,1,3],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[3,0,1,2],[2,2,3,2],[1,1,0,1]],[[1,2,2,2],[2,0,1,2],[2,2,3,2],[1,1,0,1]],[[1,2,3,1],[2,0,1,2],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[2,0,1,2],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[2,0,1,2],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,2],[1,0,3,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,2],[2,0,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,3],[1,0,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,4,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,2],[3,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,3],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[3,0,1,2],[2,2,3,2],[1,0,2,0]],[[1,2,2,2],[2,0,1,2],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[2,0,1,2],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[2,0,1,2],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[2,0,1,2],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,2],[1,0,1,2]],[[1,2,2,1],[2,0,1,2],[2,2,3,2],[2,0,1,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,3],[1,0,1,1]],[[1,2,2,1],[2,0,1,2],[2,2,4,2],[1,0,1,1]],[[1,2,2,1],[2,0,1,2],[3,2,3,2],[1,0,1,1]],[[1,2,2,1],[2,0,1,3],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[3,0,1,2],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[2,0,1,2],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[2,0,1,2],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[2,0,1,2],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[2,0,1,2],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[3,3,1,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,1,2],[3,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,1,2],[2,4,3,0],[0,1,2,1]],[[0,2,1,0],[3,3,1,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,1,2],[3,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,1,2],[2,4,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,1,2],[2,3,3,0],[0,3,1,1]],[[0,2,1,0],[3,3,1,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[3,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[2,4,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,1,2],[2,3,3,0],[2,0,2,1]],[[0,2,1,0],[3,3,1,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[3,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[2,4,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,1,2],[2,3,3,0],[2,1,1,1]],[[0,2,1,0],[3,3,1,2],[2,3,3,0],[1,2,0,1]],[[0,2,1,0],[2,3,1,2],[3,3,3,0],[1,2,0,1]],[[0,2,1,0],[2,3,1,2],[2,4,3,0],[1,2,0,1]],[[0,2,1,0],[2,3,1,2],[2,3,3,0],[2,2,0,1]],[[0,2,1,0],[3,3,1,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,1,2],[3,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,1,2],[2,4,3,1],[0,1,2,0]],[[0,2,1,0],[3,3,1,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,1,2],[3,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,1,2],[2,4,3,1],[0,2,0,1]],[[0,2,1,0],[3,3,1,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,1,2],[3,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,1,2],[2,4,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,1,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,4,2],[0,2,1,0]],[[0,2,1,0],[3,3,1,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,1,2],[3,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,1,2],[2,4,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,1,2],[2,3,3,1],[2,0,2,0]],[[0,2,1,0],[3,3,1,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,1,2],[3,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,1,2],[2,4,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,1,2],[2,3,3,1],[2,1,0,1]],[[0,2,1,0],[3,3,1,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,1,2],[3,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,1,2],[2,4,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,1,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[2,0,1,2],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,3],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,0,1,2],[2,2,3,2],[0,2,1,0]],[[1,2,2,2],[2,0,1,2],[2,2,3,2],[0,2,1,0]],[[1,2,3,1],[2,0,1,2],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[2,0,1,2],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[2,0,1,2],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,2],[0,2,0,2]],[[1,2,2,1],[2,0,1,2],[2,2,3,3],[0,2,0,1]],[[0,2,1,0],[3,3,1,2],[2,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,3,1,2],[3,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,3,1,2],[2,4,3,1],[1,2,0,0]],[[0,2,1,0],[2,3,1,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[2,0,1,2],[2,2,4,2],[0,2,0,1]],[[1,2,2,1],[2,0,1,2],[3,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,0,1,3],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[3,0,1,2],[2,2,3,2],[0,2,0,1]],[[1,2,2,2],[2,0,1,2],[2,2,3,2],[0,2,0,1]],[[1,2,3,1],[2,0,1,2],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[2,0,1,2],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[2,0,1,2],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,2],[0,1,3,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,3],[0,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,4,2],[0,1,2,0]],[[1,2,2,1],[2,0,1,2],[3,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,1,3],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[3,0,1,2],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[2,0,1,2],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[2,0,1,2],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[2,0,1,2],[2,2,3,2],[0,1,2,0]],[[2,2,2,1],[2,0,1,2],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,2],[0,1,1,2]],[[1,2,2,1],[2,0,1,2],[2,2,3,3],[0,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,2,4,2],[0,1,1,1]],[[1,2,2,1],[2,0,1,2],[3,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,1,3],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[3,0,1,2],[2,2,3,2],[0,1,1,1]],[[1,2,2,2],[2,0,1,2],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[2,0,1,2],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[2,0,1,2],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[2,0,1,2],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,2],[0,0,2,2]],[[1,2,2,1],[2,0,1,2],[2,2,3,3],[0,0,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,4,2],[0,0,2,1]],[[1,2,2,1],[2,0,1,3],[2,2,3,2],[0,0,2,1]],[[1,2,2,1],[3,0,1,2],[2,2,3,2],[0,0,2,1]],[[1,2,2,2],[2,0,1,2],[2,2,3,2],[0,0,2,1]],[[1,2,3,1],[2,0,1,2],[2,2,3,2],[0,0,2,1]],[[1,3,2,1],[2,0,1,2],[2,2,3,2],[0,0,2,1]],[[2,2,2,1],[2,0,1,2],[2,2,3,2],[0,0,2,1]],[[0,3,1,0],[2,3,1,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[3,3,1,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[2,4,1,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[2,3,1,2],[3,3,3,2],[1,0,0,1]],[[0,3,1,0],[2,3,1,2],[2,3,3,2],[1,0,1,0]],[[0,2,1,0],[3,3,1,2],[2,3,3,2],[1,0,1,0]],[[0,2,1,0],[2,4,1,2],[2,3,3,2],[1,0,1,0]],[[0,2,1,0],[2,3,1,2],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,1],[2,2,1,0]],[[1,2,2,1],[2,0,1,2],[3,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,1,3],[2,2,3,1],[1,2,1,0]],[[1,2,2,1],[3,0,1,2],[2,2,3,1],[1,2,1,0]],[[1,2,2,2],[2,0,1,2],[2,2,3,1],[1,2,1,0]],[[1,2,3,1],[2,0,1,2],[2,2,3,1],[1,2,1,0]],[[1,3,2,1],[2,0,1,2],[2,2,3,1],[1,2,1,0]],[[2,2,2,1],[2,0,1,2],[2,2,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,1],[1,3,0,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,1,2],[3,2,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,1,3],[2,2,3,1],[1,2,0,1]],[[1,2,2,1],[3,0,1,2],[2,2,3,1],[1,2,0,1]],[[1,2,2,2],[2,0,1,2],[2,2,3,1],[1,2,0,1]],[[1,2,3,1],[2,0,1,2],[2,2,3,1],[1,2,0,1]],[[1,3,2,1],[2,0,1,2],[2,2,3,1],[1,2,0,1]],[[2,2,2,1],[2,0,1,2],[2,2,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,1],[1,0,2,2]],[[1,2,2,1],[2,0,1,2],[2,2,3,1],[1,0,3,1]],[[1,2,2,1],[2,0,1,2],[2,2,4,1],[1,0,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,1],[0,3,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,4,1],[0,2,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,3,1],[0,1,2,2]],[[1,2,2,1],[2,0,1,2],[2,2,3,1],[0,1,3,1]],[[1,2,2,1],[2,0,1,2],[2,2,4,1],[0,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,0],[1,3,1,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,0],[2,2,1,1]],[[1,2,2,1],[2,0,1,2],[3,2,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,1,3],[2,2,3,0],[1,2,1,1]],[[1,2,2,1],[3,0,1,2],[2,2,3,0],[1,2,1,1]],[[1,2,2,2],[2,0,1,2],[2,2,3,0],[1,2,1,1]],[[1,2,3,1],[2,0,1,2],[2,2,3,0],[1,2,1,1]],[[1,3,2,1],[2,0,1,2],[2,2,3,0],[1,2,1,1]],[[2,2,2,1],[2,0,1,2],[2,2,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,0],[0,2,2,2]],[[1,2,2,1],[2,0,1,2],[2,2,3,0],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[2,2,3,0],[0,3,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,4,0],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,2,2],[2,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,2,3],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[3,2,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,3],[2,2,2,2],[1,2,1,0]],[[1,2,2,1],[3,0,1,2],[2,2,2,2],[1,2,1,0]],[[1,2,2,2],[2,0,1,2],[2,2,2,2],[1,2,1,0]],[[1,2,3,1],[2,0,1,2],[2,2,2,2],[1,2,1,0]],[[1,3,2,1],[2,0,1,2],[2,2,2,2],[1,2,1,0]],[[2,2,2,1],[2,0,1,2],[2,2,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,2,2],[1,2,0,2]],[[1,2,2,1],[2,0,1,2],[2,2,2,2],[1,3,0,1]],[[0,2,1,0],[2,3,2,0],[0,2,4,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[0,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,0],[0,2,3,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,0],[0,2,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,0],[0,2,3,2],[1,2,2,2]],[[0,3,1,0],[2,3,2,0],[0,3,2,2],[1,2,2,1]],[[0,2,1,0],[3,3,2,0],[0,3,2,2],[1,2,2,1]],[[0,2,1,0],[2,4,2,0],[0,3,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[0,4,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[0,3,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,0],[0,3,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,0],[0,3,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,0],[0,3,2,2],[1,2,2,2]],[[0,3,1,0],[2,3,2,0],[0,3,3,2],[1,1,2,1]],[[0,2,1,0],[3,3,2,0],[0,3,3,2],[1,1,2,1]],[[0,2,1,0],[2,4,2,0],[0,3,3,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[0,4,3,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[0,3,4,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[0,3,3,2],[1,1,3,1]],[[0,2,1,0],[2,3,2,0],[0,3,3,2],[1,1,2,2]],[[0,3,1,0],[2,3,2,0],[0,3,3,2],[1,2,1,1]],[[0,2,1,0],[3,3,2,0],[0,3,3,2],[1,2,1,1]],[[0,2,1,0],[2,4,2,0],[0,3,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,2,0],[0,4,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,2,0],[0,3,4,2],[1,2,1,1]],[[0,2,1,0],[2,3,2,0],[0,3,3,2],[2,2,1,1]],[[0,2,1,0],[2,3,2,0],[0,3,3,2],[1,3,1,1]],[[0,2,1,0],[2,3,2,0],[1,2,4,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,0],[1,2,3,2],[0,3,2,1]],[[0,2,1,0],[2,3,2,0],[1,2,3,2],[0,2,3,1]],[[0,2,1,0],[2,3,2,0],[1,2,3,2],[0,2,2,2]],[[0,2,1,0],[2,3,2,0],[1,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,2,1],[1,2,3,1]],[[0,3,1,0],[2,3,2,0],[1,3,2,2],[0,2,2,1]],[[0,2,1,0],[3,3,2,0],[1,3,2,2],[0,2,2,1]],[[0,2,1,0],[2,4,2,0],[1,3,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,0],[1,4,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,2,2],[0,3,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,2,2],[0,2,3,1]],[[0,2,1,0],[2,3,2,0],[1,3,2,2],[0,2,2,2]],[[0,3,1,0],[2,3,2,0],[1,3,2,2],[1,1,2,1]],[[0,2,1,0],[3,3,2,0],[1,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,4,2,0],[1,3,2,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[1,4,2,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[1,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,0],[1,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,2,0],[1,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,2,0],[1,4,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,3,0],[1,2,3,1]],[[0,2,1,0],[2,3,2,0],[1,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,2,0],[1,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,2,0],[1,3,3,1],[1,3,1,1]],[[0,3,1,0],[2,3,2,0],[1,3,3,2],[0,1,2,1]],[[0,2,1,0],[3,3,2,0],[1,3,3,2],[0,1,2,1]],[[0,2,1,0],[2,4,2,0],[1,3,3,2],[0,1,2,1]],[[0,2,1,0],[2,3,2,0],[1,4,3,2],[0,1,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,4,2],[0,1,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,3,2],[0,1,3,1]],[[0,2,1,0],[2,3,2,0],[1,3,3,2],[0,1,2,2]],[[0,3,1,0],[2,3,2,0],[1,3,3,2],[0,2,1,1]],[[0,2,1,0],[3,3,2,0],[1,3,3,2],[0,2,1,1]],[[0,2,1,0],[2,4,2,0],[1,3,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,2,0],[1,4,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,2,0],[1,3,4,2],[0,2,1,1]],[[0,2,1,0],[2,3,2,0],[1,3,3,2],[0,3,1,1]],[[0,3,1,0],[2,3,2,0],[1,3,3,2],[1,0,2,1]],[[0,2,1,0],[3,3,2,0],[1,3,3,2],[1,0,2,1]],[[0,2,1,0],[2,4,2,0],[1,3,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,2,0],[1,4,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,4,2],[1,0,2,1]],[[0,2,1,0],[2,3,2,0],[1,3,3,2],[1,0,3,1]],[[0,2,1,0],[2,3,2,0],[1,3,3,2],[1,0,2,2]],[[0,3,1,0],[2,3,2,0],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[3,3,2,0],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,4,2,0],[1,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,0],[1,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,0],[1,3,4,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,0],[1,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,0],[1,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,2,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,2,2],[2,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,2,2,3],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[3,2,2,2],[1,2,0,1]],[[1,2,2,1],[2,0,1,3],[2,2,2,2],[1,2,0,1]],[[1,2,2,1],[3,0,1,2],[2,2,2,2],[1,2,0,1]],[[1,2,2,2],[2,0,1,2],[2,2,2,2],[1,2,0,1]],[[1,2,3,1],[2,0,1,2],[2,2,2,2],[1,2,0,1]],[[1,3,2,1],[2,0,1,2],[2,2,2,2],[1,2,0,1]],[[2,2,2,1],[2,0,1,2],[2,2,2,2],[1,2,0,1]],[[0,3,1,0],[2,3,2,0],[2,0,3,2],[1,2,2,1]],[[0,2,1,0],[3,3,2,0],[2,0,3,2],[1,2,2,1]],[[0,2,1,0],[2,4,2,0],[2,0,3,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[3,0,3,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,0,4,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,0,3,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,0,3,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,0],[2,0,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,0],[2,0,3,2],[1,2,2,2]],[[0,3,1,0],[2,3,2,0],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[3,3,2,0],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,4,2,0],[2,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[3,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,1,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,1,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,0],[2,1,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,0],[2,1,2,2],[1,2,2,2]],[[0,3,1,0],[2,3,2,0],[2,1,3,2],[1,2,1,1]],[[0,2,1,0],[3,3,2,0],[2,1,3,2],[1,2,1,1]],[[0,2,1,0],[2,4,2,0],[2,1,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,2,0],[3,1,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,2,0],[2,1,3,2],[2,2,1,1]],[[0,2,1,0],[2,3,2,0],[2,1,3,2],[1,3,1,1]],[[0,2,1,0],[3,3,2,0],[2,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[3,2,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,2,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,2,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,2,0],[2,2,2,1],[1,2,3,1]],[[0,3,1,0],[2,3,2,0],[2,2,2,2],[0,2,2,1]],[[0,2,1,0],[3,3,2,0],[2,2,2,2],[0,2,2,1]],[[0,2,1,0],[2,4,2,0],[2,2,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,0],[3,2,2,2],[0,2,2,1]],[[0,3,1,0],[2,3,2,0],[2,2,2,2],[1,1,2,1]],[[0,2,1,0],[3,3,2,0],[2,2,2,2],[1,1,2,1]],[[0,2,1,0],[2,4,2,0],[2,2,2,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[3,2,2,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[2,2,2,2],[2,1,2,1]],[[0,2,1,0],[3,3,2,0],[2,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,0],[3,2,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,0],[2,2,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,2,0],[2,2,2,2],[1,3,2,0]],[[0,2,1,0],[3,3,2,0],[2,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[3,2,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,2,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,2,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,2,0],[2,2,3,0],[1,2,3,1]],[[0,2,1,0],[3,3,2,0],[2,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,2,0],[3,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,2,0],[2,2,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,2,0],[2,2,3,1],[1,3,1,1]],[[0,3,1,0],[2,3,2,0],[2,2,3,2],[0,1,2,1]],[[0,2,1,0],[3,3,2,0],[2,2,3,2],[0,1,2,1]],[[0,2,1,0],[2,4,2,0],[2,2,3,2],[0,1,2,1]],[[0,2,1,0],[2,3,2,0],[3,2,3,2],[0,1,2,1]],[[0,3,1,0],[2,3,2,0],[2,2,3,2],[0,2,1,1]],[[0,2,1,0],[3,3,2,0],[2,2,3,2],[0,2,1,1]],[[0,2,1,0],[2,4,2,0],[2,2,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,2,0],[3,2,3,2],[0,2,1,1]],[[0,3,1,0],[2,3,2,0],[2,2,3,2],[1,0,2,1]],[[0,2,1,0],[3,3,2,0],[2,2,3,2],[1,0,2,1]],[[0,2,1,0],[2,4,2,0],[2,2,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,2,0],[3,2,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,2,0],[2,2,3,2],[2,0,2,1]],[[0,3,1,0],[2,3,2,0],[2,2,3,2],[1,1,1,1]],[[0,2,1,0],[3,3,2,0],[2,2,3,2],[1,1,1,1]],[[0,2,1,0],[2,4,2,0],[2,2,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,0],[3,2,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,0],[2,2,3,2],[2,1,1,1]],[[0,2,1,0],[3,3,2,0],[2,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,0],[3,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,0],[2,2,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,2,0],[2,2,3,2],[1,3,1,0]],[[0,2,1,0],[3,3,2,0],[2,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[3,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,3,1,1],[2,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,3,1,1],[1,3,2,1]],[[0,2,1,0],[3,3,2,0],[2,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,0],[3,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,0],[2,3,1,2],[2,2,2,0]],[[0,2,1,0],[2,3,2,0],[2,3,1,2],[1,3,2,0]],[[0,2,1,0],[3,3,2,0],[2,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[3,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,3,2,0],[2,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,3,2,0],[1,3,2,1]],[[0,2,1,0],[3,3,2,0],[2,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,2,0],[3,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,3,2,0],[2,3,2,1],[0,2,3,1]],[[0,2,1,0],[3,3,2,0],[2,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[3,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[2,4,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[2,3,2,1],[2,1,2,1]],[[0,2,1,0],[3,3,2,0],[2,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,2,0],[3,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,2,0],[2,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,2,0],[2,3,2,2],[0,3,2,0]],[[0,2,1,0],[3,3,2,0],[2,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,0],[3,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,0],[2,4,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,0,1,2],[2,2,2,2],[1,0,3,1]],[[1,2,2,1],[2,0,1,2],[2,2,2,2],[2,0,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,2,3],[1,0,2,1]],[[1,2,2,1],[2,0,1,2],[3,2,2,2],[1,0,2,1]],[[1,2,2,1],[2,0,1,3],[2,2,2,2],[1,0,2,1]],[[1,2,2,1],[3,0,1,2],[2,2,2,2],[1,0,2,1]],[[0,2,1,0],[3,3,2,0],[2,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,2,0],[3,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,4,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,2,0],[2,3,3,0],[0,3,2,1]],[[0,2,1,0],[2,3,2,0],[2,3,3,0],[0,2,3,1]],[[0,2,1,0],[3,3,2,0],[2,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[3,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[2,4,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,0],[2,3,3,0],[2,1,2,1]],[[0,2,1,0],[3,3,2,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,2,0],[3,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,2,0],[2,4,3,1],[0,1,2,1]],[[0,2,1,0],[3,3,2,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,2,0],[3,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,2,0],[2,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,2,0],[2,3,3,1],[0,3,1,1]],[[0,2,1,0],[3,3,2,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,2,0],[3,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,2,0],[2,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,2,0],[2,3,3,1],[2,0,2,1]],[[0,2,1,0],[3,3,2,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,2,0],[3,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,2,0],[2,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,2,0],[2,3,3,1],[2,1,1,1]],[[0,2,1,0],[3,3,2,0],[2,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,2,0],[3,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,2,0],[2,4,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,2],[2,0,1,2],[2,2,2,2],[1,0,2,1]],[[1,2,3,1],[2,0,1,2],[2,2,2,2],[1,0,2,1]],[[1,3,2,1],[2,0,1,2],[2,2,2,2],[1,0,2,1]],[[2,2,2,1],[2,0,1,2],[2,2,2,2],[1,0,2,1]],[[0,2,1,0],[3,3,2,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,0],[3,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,0],[2,4,3,2],[0,1,2,0]],[[0,2,1,0],[3,3,2,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,0],[3,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,0],[2,4,3,2],[0,2,0,1]],[[0,2,1,0],[3,3,2,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,0],[3,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,0],[2,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,0],[2,3,3,2],[0,3,1,0]],[[0,2,1,0],[3,3,2,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,0],[3,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,0],[2,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,0],[2,3,3,2],[2,0,2,0]],[[0,2,1,0],[3,3,2,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,0],[3,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,0],[2,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,0],[2,3,3,2],[2,1,0,1]],[[0,2,1,0],[3,3,2,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,0],[3,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,0],[2,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,2,2],[0,1,2,2]],[[1,2,2,1],[2,0,1,2],[2,2,2,2],[0,1,3,1]],[[1,2,2,1],[2,0,1,2],[2,2,2,3],[0,1,2,1]],[[1,2,2,1],[2,0,1,2],[3,2,2,2],[0,1,2,1]],[[1,2,2,1],[2,0,1,3],[2,2,2,2],[0,1,2,1]],[[1,2,2,1],[3,0,1,2],[2,2,2,2],[0,1,2,1]],[[1,2,2,2],[2,0,1,2],[2,2,2,2],[0,1,2,1]],[[1,2,3,1],[2,0,1,2],[2,2,2,2],[0,1,2,1]],[[1,3,2,1],[2,0,1,2],[2,2,2,2],[0,1,2,1]],[[0,2,1,0],[3,3,2,0],[2,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,2,0],[3,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,2,0],[2,4,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,2,0],[2,3,3,2],[2,2,0,0]],[[2,2,2,1],[2,0,1,2],[2,2,2,2],[0,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[2,0,1,2],[2,2,2,1],[1,3,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,2,1],[2,2,2,0]],[[1,2,2,1],[2,0,1,2],[3,2,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,1,3],[2,2,2,1],[1,2,2,0]],[[1,2,2,1],[3,0,1,2],[2,2,2,1],[1,2,2,0]],[[1,2,2,2],[2,0,1,2],[2,2,2,1],[1,2,2,0]],[[1,2,3,1],[2,0,1,2],[2,2,2,1],[1,2,2,0]],[[1,3,2,1],[2,0,1,2],[2,2,2,1],[1,2,2,0]],[[2,2,2,1],[2,0,1,2],[2,2,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,2,0],[1,2,2,2]],[[0,2,1,0],[2,3,2,1],[0,2,2,3],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,2,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,2,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,1],[0,2,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,1],[0,2,2,2],[1,2,2,2]],[[0,2,1,0],[2,3,2,1],[0,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,2,1],[0,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,2,1],[0,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,2,1],[0,2,4,2],[1,2,1,1]],[[0,2,1,0],[2,3,2,1],[0,2,3,3],[1,2,1,1]],[[0,2,1,0],[2,3,2,1],[0,2,3,2],[1,2,1,2]],[[0,2,1,0],[2,3,2,1],[0,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[0,2,3,3],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[0,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,2,1],[0,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,2,1],[0,2,3,2],[1,2,3,0]],[[0,3,1,0],[2,3,2,1],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[3,3,2,1],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,4,2,1],[0,3,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,4,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,1,3],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,1],[0,3,1,2],[1,2,2,2]],[[0,3,1,0],[2,3,2,1],[0,3,2,1],[1,2,2,1]],[[0,2,1,0],[3,3,2,1],[0,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,4,2,1],[0,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,3,2,1],[0,3,2,1],[1,2,2,2]],[[0,2,1,0],[2,3,2,1],[0,3,2,3],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,2,2],[1,1,3,1]],[[0,2,1,0],[2,3,2,1],[0,3,2,2],[1,1,2,2]],[[0,3,1,0],[2,3,2,1],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[3,3,2,1],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,4,2,1],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[0,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[0,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,2,1],[0,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,2,1],[0,3,2,2],[1,2,3,0]],[[0,3,1,0],[2,3,2,1],[0,3,3,0],[1,2,2,1]],[[0,2,1,0],[3,3,2,1],[0,3,3,0],[1,2,2,1]],[[0,2,1,0],[2,4,2,1],[0,3,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,4,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,0],[1,2,3,1]],[[0,3,1,0],[2,3,2,1],[0,3,3,1],[1,1,2,1]],[[0,2,1,0],[3,3,2,1],[0,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,4,2,1],[0,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[0,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,4,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,1],[1,1,3,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,1],[1,1,2,2]],[[0,3,1,0],[2,3,2,1],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[3,3,2,1],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,4,2,1],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,2,1],[0,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,2,1],[0,3,4,1],[1,2,1,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,3,2,1],[0,3,4,2],[1,0,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,3],[1,0,2,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,2],[1,0,2,2]],[[0,3,1,0],[2,3,2,1],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[3,3,2,1],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,4,2,1],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,1],[0,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,1],[0,3,4,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,3],[1,1,1,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,2],[1,1,1,2]],[[0,3,1,0],[2,3,2,1],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[3,3,2,1],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,4,2,1],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,1],[0,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,1],[0,3,4,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,1],[0,3,3,3],[1,1,2,0]],[[0,2,1,0],[2,3,2,1],[0,3,3,2],[1,1,3,0]],[[0,3,1,0],[2,3,2,1],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[3,3,2,1],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,4,2,1],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,2,1],[0,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,2,1],[0,3,4,2],[1,2,0,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,3],[1,2,0,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,2],[1,3,0,1]],[[0,2,1,0],[2,3,2,1],[0,3,3,2],[1,2,0,2]],[[0,3,1,0],[2,3,2,1],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[3,3,2,1],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,4,2,1],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,1],[0,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,1],[0,3,4,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,1],[0,3,3,3],[1,2,1,0]],[[0,2,1,0],[2,3,2,1],[0,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,2,0],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[2,2,2,0],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,2,0],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[3,2,2,0],[1,2,2,1]],[[1,2,2,1],[2,0,1,3],[2,2,2,0],[1,2,2,1]],[[1,2,2,1],[3,0,1,2],[2,2,2,0],[1,2,2,1]],[[1,2,2,2],[2,0,1,2],[2,2,2,0],[1,2,2,1]],[[1,2,3,1],[2,0,1,2],[2,2,2,0],[1,2,2,1]],[[1,3,2,1],[2,0,1,2],[2,2,2,0],[1,2,2,1]],[[2,2,2,1],[2,0,1,2],[2,2,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[1,2,2,3],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[1,2,2,2],[0,3,2,1]],[[0,2,1,0],[2,3,2,1],[1,2,2,2],[0,2,3,1]],[[0,2,1,0],[2,3,2,1],[1,2,2,2],[0,2,2,2]],[[0,2,1,0],[2,3,2,1],[1,2,4,1],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[1,2,3,1],[0,3,2,1]],[[0,2,1,0],[2,3,2,1],[1,2,3,1],[0,2,3,1]],[[0,2,1,0],[2,3,2,1],[1,2,3,1],[0,2,2,2]],[[0,2,1,0],[2,3,2,1],[1,2,4,2],[0,2,1,1]],[[0,2,1,0],[2,3,2,1],[1,2,3,3],[0,2,1,1]],[[0,2,1,0],[2,3,2,1],[1,2,3,2],[0,2,1,2]],[[0,2,1,0],[2,3,2,1],[1,2,4,2],[0,2,2,0]],[[0,2,1,0],[2,3,2,1],[1,2,3,3],[0,2,2,0]],[[0,2,1,0],[2,3,2,1],[1,2,3,2],[0,3,2,0]],[[0,2,1,0],[2,3,2,1],[1,2,3,2],[0,2,3,0]],[[0,3,1,0],[2,3,2,1],[1,3,1,2],[0,2,2,1]],[[0,2,1,0],[3,3,2,1],[1,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,4,2,1],[1,3,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[1,4,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,1,3],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,1,2],[0,3,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,1,2],[0,2,3,1]],[[0,2,1,0],[2,3,2,1],[1,3,1,2],[0,2,2,2]],[[0,3,1,0],[2,3,2,1],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[3,3,2,1],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,4,2,1],[1,3,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[1,4,1,2],[1,1,2,1]],[[0,3,1,0],[2,3,2,1],[1,3,2,1],[0,2,2,1]],[[0,2,1,0],[3,3,2,1],[1,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,4,2,1],[1,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[1,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,3,2,1],[1,3,2,1],[0,2,2,2]],[[0,3,1,0],[2,3,2,1],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[3,3,2,1],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,4,2,1],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[1,4,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,2,3],[0,1,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,2,2],[0,1,3,1]],[[0,2,1,0],[2,3,2,1],[1,3,2,2],[0,1,2,2]],[[0,3,1,0],[2,3,2,1],[1,3,2,2],[0,2,2,0]],[[0,2,1,0],[3,3,2,1],[1,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,4,2,1],[1,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,2,1],[1,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,2,1],[1,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,3,2,1],[1,3,2,2],[0,2,3,0]],[[0,2,1,0],[2,3,2,1],[1,3,2,3],[1,0,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,2,2],[1,0,3,1]],[[0,2,1,0],[2,3,2,1],[1,3,2,2],[1,0,2,2]],[[0,3,1,0],[2,3,2,1],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[3,3,2,1],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,4,2,1],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,1],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[1,2,3,0]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[2,2,2,0]],[[0,3,1,0],[2,3,2,1],[1,3,3,0],[0,2,2,1]],[[0,2,1,0],[3,3,2,1],[1,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,4,2,1],[1,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[1,4,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,0],[0,3,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,0],[0,2,3,1]],[[0,3,1,0],[2,3,2,1],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[3,3,2,1],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,4,2,1],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[1,4,3,0],[1,1,2,1]],[[0,3,1,0],[2,3,2,1],[1,3,3,1],[0,1,2,1]],[[0,2,1,0],[3,3,2,1],[1,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,4,2,1],[1,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,2,1],[1,4,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,1],[0,1,2,2]],[[0,3,1,0],[2,3,2,1],[1,3,3,1],[0,2,1,1]],[[0,2,1,0],[3,3,2,1],[1,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,4,2,1],[1,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,2,1],[1,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,2,1],[1,3,4,1],[0,2,1,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,1],[0,3,1,1]],[[0,3,1,0],[2,3,2,1],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[3,3,2,1],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,4,2,1],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,2,1],[1,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,4,1],[1,0,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,1],[1,0,3,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,1],[1,0,2,2]],[[0,3,1,0],[2,3,2,1],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[3,3,2,1],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,4,2,1],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,2,1],[1,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,2,1],[1,3,4,1],[1,1,1,1]],[[0,3,1,0],[2,3,2,1],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[3,3,2,1],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,4,2,1],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,2,1],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,3],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[3,2,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,3],[2,2,1,2],[1,2,2,0]],[[1,2,2,1],[3,0,1,2],[2,2,1,2],[1,2,2,0]],[[1,2,2,2],[2,0,1,2],[2,2,1,2],[1,2,2,0]],[[1,2,3,1],[2,0,1,2],[2,2,1,2],[1,2,2,0]],[[1,3,2,1],[2,0,1,2],[2,2,1,2],[1,2,2,0]],[[2,2,2,1],[2,0,1,2],[2,2,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[1,2,1,2]],[[0,2,1,0],[2,3,2,1],[1,3,4,2],[0,0,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,3],[0,0,2,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,2],[0,0,2,2]],[[0,3,1,0],[2,3,2,1],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[3,3,2,1],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,4,2,1],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,2,1],[1,4,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,2,1],[1,3,4,2],[0,1,1,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,3],[0,1,1,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,2],[0,1,1,2]],[[0,3,1,0],[2,3,2,1],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[3,3,2,1],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,4,2,1],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,1],[1,4,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,1],[1,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,1],[1,3,3,3],[0,1,2,0]],[[0,2,1,0],[2,3,2,1],[1,3,3,2],[0,1,3,0]],[[0,3,1,0],[2,3,2,1],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[3,3,2,1],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,4,2,1],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,1],[1,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,1],[1,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,3],[0,2,0,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,2],[0,3,0,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,2],[0,2,0,2]],[[0,3,1,0],[2,3,2,1],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[3,3,2,1],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,4,2,1],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,1],[1,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,1],[1,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,1],[1,3,3,3],[0,2,1,0]],[[0,2,1,0],[2,3,2,1],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[1,3,1,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[2,2,1,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,3],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[3,2,1,2],[1,2,1,1]],[[1,2,2,1],[2,0,1,3],[2,2,1,2],[1,2,1,1]],[[1,2,2,1],[3,0,1,2],[2,2,1,2],[1,2,1,1]],[[1,2,2,2],[2,0,1,2],[2,2,1,2],[1,2,1,1]],[[1,2,3,1],[2,0,1,2],[2,2,1,2],[1,2,1,1]],[[1,3,2,1],[2,0,1,2],[2,2,1,2],[1,2,1,1]],[[0,3,1,0],[2,3,2,1],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[3,3,2,1],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,4,2,1],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,2,1],[1,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,2,1],[1,3,4,2],[1,0,1,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,3],[1,0,1,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,2],[1,0,1,2]],[[0,3,1,0],[2,3,2,1],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[3,3,2,1],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,4,2,1],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,1],[1,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,1],[1,3,4,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,1],[1,3,3,3],[1,0,2,0]],[[0,2,1,0],[2,3,2,1],[1,3,3,2],[1,0,3,0]],[[0,3,1,0],[2,3,2,1],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[3,3,2,1],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,4,2,1],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,1],[1,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,1],[1,3,4,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,3],[1,1,0,1]],[[0,2,1,0],[2,3,2,1],[1,3,3,2],[1,1,0,2]],[[0,3,1,0],[2,3,2,1],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[3,3,2,1],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,4,2,1],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,1],[1,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,1],[1,3,4,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,1],[1,3,3,3],[1,1,1,0]],[[2,2,2,1],[2,0,1,2],[2,2,1,2],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[1,1,2,2]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[1,1,3,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[2,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,3],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[3,2,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,1,3],[2,2,1,2],[1,1,2,1]],[[1,2,2,1],[3,0,1,2],[2,2,1,2],[1,1,2,1]],[[0,3,1,0],[2,3,2,1],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[3,3,2,1],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,4,2,1],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,2],[2,0,1,2],[2,2,1,2],[1,1,2,1]],[[1,2,3,1],[2,0,1,2],[2,2,1,2],[1,1,2,1]],[[1,3,2,1],[2,0,1,2],[2,2,1,2],[1,1,2,1]],[[2,2,2,1],[2,0,1,2],[2,2,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[0,2,2,2]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,2],[0,3,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,3],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[3,2,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,1,3],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[3,0,1,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[2,0,1,2],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[2,0,1,2],[2,2,1,2],[0,2,2,1]],[[1,3,2,1],[2,0,1,2],[2,2,1,2],[0,2,2,1]],[[2,2,2,1],[2,0,1,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,1],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[2,2,1,1],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,1],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[2,2,1,1],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[3,2,1,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,3],[2,2,1,1],[1,2,2,1]],[[1,2,2,1],[3,0,1,2],[2,2,1,1],[1,2,2,1]],[[1,2,2,2],[2,0,1,2],[2,2,1,1],[1,2,2,1]],[[1,2,3,1],[2,0,1,2],[2,2,1,1],[1,2,2,1]],[[1,3,2,1],[2,0,1,2],[2,2,1,1],[1,2,2,1]],[[2,2,2,1],[2,0,1,2],[2,2,1,1],[1,2,2,1]],[[0,3,1,0],[2,3,2,1],[2,0,2,2],[1,2,2,1]],[[0,2,1,0],[3,3,2,1],[2,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,4,2,1],[2,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[3,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,0,2,3],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,0,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,0,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,1],[2,0,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,1],[2,0,2,2],[1,2,2,2]],[[0,3,1,0],[2,3,2,1],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[3,3,2,1],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,4,2,1],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[3,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,0,4,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,0,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,0,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,2,1],[2,0,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,2,1],[2,0,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,2,1],[2,0,4,2],[1,2,1,1]],[[0,2,1,0],[2,3,2,1],[2,0,3,3],[1,2,1,1]],[[0,2,1,0],[2,3,2,1],[2,0,3,2],[1,2,1,2]],[[0,3,1,0],[2,3,2,1],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[3,3,2,1],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,4,2,1],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[3,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[2,0,4,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[2,0,3,3],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[2,0,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,2,1],[2,0,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,2,1],[2,0,3,2],[1,2,3,0]],[[0,3,1,0],[2,3,2,1],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[3,3,2,1],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,4,2,1],[2,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[3,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,1,1,3],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,1,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,1,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,1],[2,1,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,1],[2,1,1,2],[1,2,2,2]],[[0,3,1,0],[2,3,2,1],[2,1,2,1],[1,2,2,1]],[[0,2,1,0],[3,3,2,1],[2,1,2,1],[1,2,2,1]],[[0,2,1,0],[2,4,2,1],[2,1,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[3,1,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,1,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,1,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,2,1],[2,1,2,1],[1,2,3,1]],[[0,2,1,0],[2,3,2,1],[2,1,2,1],[1,2,2,2]],[[0,3,1,0],[2,3,2,1],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[3,3,2,1],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,4,2,1],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[3,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[2,1,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,2,1],[2,1,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,2,1],[2,1,2,2],[1,2,3,0]],[[0,3,1,0],[2,3,2,1],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[3,3,2,1],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,4,2,1],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[3,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,1,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,1,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,2,1],[2,1,3,0],[1,2,3,1]],[[0,3,1,0],[2,3,2,1],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[3,3,2,1],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,4,2,1],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,2,1],[3,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,2,1],[2,1,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,2,1],[2,1,3,1],[1,3,1,1]],[[0,3,1,0],[2,3,2,1],[2,1,3,2],[1,2,0,1]],[[0,2,1,0],[3,3,2,1],[2,1,3,2],[1,2,0,1]],[[0,2,1,0],[2,4,2,1],[2,1,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,2,1],[3,1,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,2,1],[2,1,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,2,1],[2,1,3,2],[1,3,0,1]],[[0,3,1,0],[2,3,2,1],[2,1,3,2],[1,2,1,0]],[[0,2,1,0],[3,3,2,1],[2,1,3,2],[1,2,1,0]],[[0,2,1,0],[2,4,2,1],[2,1,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,1],[3,1,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,1],[2,1,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,2,1],[2,1,3,2],[1,3,1,0]],[[0,3,1,0],[2,3,2,1],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[3,3,2,1],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[2,4,2,1],[2,2,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[3,2,1,2],[0,2,2,1]],[[0,3,1,0],[2,3,2,1],[2,2,1,2],[1,1,2,1]],[[0,2,1,0],[3,3,2,1],[2,2,1,2],[1,1,2,1]],[[0,2,1,0],[2,4,2,1],[2,2,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[3,2,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[2,2,1,2],[2,1,2,1]],[[0,3,1,0],[2,3,2,1],[2,2,2,1],[0,2,2,1]],[[0,2,1,0],[3,3,2,1],[2,2,2,1],[0,2,2,1]],[[0,2,1,0],[2,4,2,1],[2,2,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[3,2,2,1],[0,2,2,1]],[[0,3,1,0],[2,3,2,1],[2,2,2,1],[1,1,2,1]],[[0,2,1,0],[3,3,2,1],[2,2,2,1],[1,1,2,1]],[[0,2,1,0],[2,4,2,1],[2,2,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[3,2,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[2,2,2,1],[2,1,2,1]],[[0,3,1,0],[2,3,2,1],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[3,3,2,1],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[2,4,2,1],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,2,1],[3,2,2,2],[0,2,2,0]],[[0,3,1,0],[2,3,2,1],[2,2,2,2],[1,1,2,0]],[[0,2,1,0],[3,3,2,1],[2,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,4,2,1],[2,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,1],[3,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,1],[2,2,2,2],[2,1,2,0]],[[0,3,1,0],[2,3,2,1],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[3,3,2,1],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[2,4,2,1],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,2,1],[3,2,3,0],[0,2,2,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,0],[1,1,2,1]],[[0,2,1,0],[3,3,2,1],[2,2,3,0],[1,1,2,1]],[[0,2,1,0],[2,4,2,1],[2,2,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[3,2,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,1],[2,2,3,0],[2,1,2,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[3,3,2,1],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[2,4,2,1],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,2,1],[3,2,3,1],[0,1,2,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[3,3,2,1],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,4,2,1],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,2,1],[3,2,3,1],[0,2,1,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[3,3,2,1],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,4,2,1],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,2,1],[3,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,2,1],[2,2,3,1],[2,0,2,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[3,3,2,1],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,4,2,1],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,2,1],[3,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,2,1],[2,2,3,1],[2,1,1,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,1],[1,2,0,1]],[[0,2,1,0],[3,3,2,1],[2,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,4,2,1],[2,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,2,1],[3,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,2,1],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[2,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,3],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,1,4,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[3,1,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,3],[2,1,3,2],[1,2,1,0]],[[0,3,1,0],[2,3,2,1],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[3,3,2,1],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,4,2,1],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,2,1],[3,2,3,2],[0,1,1,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[3,3,2,1],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,4,2,1],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,1],[3,2,3,2],[0,1,2,0]],[[0,3,1,0],[2,3,2,1],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[3,3,2,1],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[2,4,2,1],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,1],[3,2,3,2],[0,2,0,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[3,3,2,1],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[2,4,2,1],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,1],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[3,0,1,2],[2,1,3,2],[1,2,1,0]],[[1,2,2,2],[2,0,1,2],[2,1,3,2],[1,2,1,0]],[[1,2,3,1],[2,0,1,2],[2,1,3,2],[1,2,1,0]],[[1,3,2,1],[2,0,1,2],[2,1,3,2],[1,2,1,0]],[[2,2,2,1],[2,0,1,2],[2,1,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[1,2,0,2]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[1,3,0,1]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[2,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,1,3,3],[1,2,0,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[3,3,2,1],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,4,2,1],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,2,1],[3,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,2,1],[2,2,3,2],[2,0,1,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[3,3,2,1],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,4,2,1],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,1],[3,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,1],[2,2,3,2],[2,0,2,0]],[[0,3,1,0],[2,3,2,1],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[3,3,2,1],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,4,2,1],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,1],[3,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,1],[2,2,3,2],[2,1,0,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[3,3,2,1],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,4,2,1],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,1],[3,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,1],[2,2,3,2],[2,1,1,0]],[[1,2,2,1],[2,0,1,2],[2,1,4,2],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[3,1,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,1,3],[2,1,3,2],[1,2,0,1]],[[1,2,2,1],[3,0,1,2],[2,1,3,2],[1,2,0,1]],[[1,2,2,2],[2,0,1,2],[2,1,3,2],[1,2,0,1]],[[0,3,1,0],[2,3,2,1],[2,2,3,2],[1,2,0,0]],[[0,2,1,0],[3,3,2,1],[2,2,3,2],[1,2,0,0]],[[0,2,1,0],[2,4,2,1],[2,2,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,2,1],[3,2,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,2,1],[2,2,3,2],[2,2,0,0]],[[1,2,3,1],[2,0,1,2],[2,1,3,2],[1,2,0,1]],[[1,3,2,1],[2,0,1,2],[2,1,3,2],[1,2,0,1]],[[2,2,2,1],[2,0,1,2],[2,1,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[1,1,3,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[2,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,3],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,4,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[3,1,3,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,3],[2,1,3,2],[1,1,2,0]],[[1,2,2,1],[3,0,1,2],[2,1,3,2],[1,1,2,0]],[[1,2,2,2],[2,0,1,2],[2,1,3,2],[1,1,2,0]],[[1,2,3,1],[2,0,1,2],[2,1,3,2],[1,1,2,0]],[[1,3,2,1],[2,0,1,2],[2,1,3,2],[1,1,2,0]],[[2,2,2,1],[2,0,1,2],[2,1,3,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[1,1,1,2]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[2,1,1,1]],[[0,2,1,0],[3,3,2,1],[2,3,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[3,3,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,3,0,1],[2,2,2,1]],[[0,2,1,0],[2,3,2,1],[2,3,0,1],[1,3,2,1]],[[0,2,1,0],[3,3,2,1],[2,3,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[3,3,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,1],[2,3,0,2],[2,2,2,0]],[[0,2,1,0],[2,3,2,1],[2,3,0,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,3],[1,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,1,4,2],[1,1,1,1]],[[1,2,2,1],[2,0,1,2],[3,1,3,2],[1,1,1,1]],[[1,2,2,1],[2,0,1,3],[2,1,3,2],[1,1,1,1]],[[1,2,2,1],[3,0,1,2],[2,1,3,2],[1,1,1,1]],[[1,2,2,2],[2,0,1,2],[2,1,3,2],[1,1,1,1]],[[1,2,3,1],[2,0,1,2],[2,1,3,2],[1,1,1,1]],[[1,3,2,1],[2,0,1,2],[2,1,3,2],[1,1,1,1]],[[2,2,2,1],[2,0,1,2],[2,1,3,2],[1,1,1,1]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[0,3,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,3],[0,2,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,4,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,2],[3,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,3],[2,1,3,2],[0,2,2,0]],[[1,2,2,1],[3,0,1,2],[2,1,3,2],[0,2,2,0]],[[1,2,2,2],[2,0,1,2],[2,1,3,2],[0,2,2,0]],[[1,2,3,1],[2,0,1,2],[2,1,3,2],[0,2,2,0]],[[1,3,2,1],[2,0,1,2],[2,1,3,2],[0,2,2,0]],[[2,2,2,1],[2,0,1,2],[2,1,3,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,2],[0,2,1,2]],[[1,2,2,1],[2,0,1,2],[2,1,3,3],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[2,1,4,2],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[3,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,0,1,3],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[3,0,1,2],[2,1,3,2],[0,2,1,1]],[[1,2,2,2],[2,0,1,2],[2,1,3,2],[0,2,1,1]],[[1,2,3,1],[2,0,1,2],[2,1,3,2],[0,2,1,1]],[[1,3,2,1],[2,0,1,2],[2,1,3,2],[0,2,1,1]],[[2,2,2,1],[2,0,1,2],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,1],[1,3,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,1],[2,2,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,4,1],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[3,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,0,1,3],[2,1,3,1],[1,2,2,0]],[[1,2,2,1],[3,0,1,2],[2,1,3,1],[1,2,2,0]],[[1,2,2,2],[2,0,1,2],[2,1,3,1],[1,2,2,0]],[[1,2,3,1],[2,0,1,2],[2,1,3,1],[1,2,2,0]],[[1,3,2,1],[2,0,1,2],[2,1,3,1],[1,2,2,0]],[[2,2,2,1],[2,0,1,2],[2,1,3,1],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,3,1],[1,1,2,2]],[[1,2,2,1],[2,0,1,2],[2,1,3,1],[1,1,3,1]],[[1,2,2,1],[2,0,1,2],[2,1,4,1],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,1,3,1],[0,2,2,2]],[[1,2,2,1],[2,0,1,2],[2,1,3,1],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[2,1,3,1],[0,3,2,1]],[[1,2,2,1],[2,0,1,2],[2,1,4,1],[0,2,2,1]],[[0,3,1,0],[2,3,2,1],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[3,3,2,1],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,4,2,1],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,2,1],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,1,2],[2,1,3,0],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[2,1,3,0],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[2,1,3,0],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[2,1,3,0],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[2,1,4,0],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[3,1,3,0],[1,2,2,1]],[[1,2,2,1],[2,0,1,3],[2,1,3,0],[1,2,2,1]],[[1,2,2,1],[3,0,1,2],[2,1,3,0],[1,2,2,1]],[[1,2,2,2],[2,0,1,2],[2,1,3,0],[1,2,2,1]],[[1,2,3,1],[2,0,1,2],[2,1,3,0],[1,2,2,1]],[[1,3,2,1],[2,0,1,2],[2,1,3,0],[1,2,2,1]],[[2,2,2,1],[2,0,1,2],[2,1,3,0],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[1,2,3,0]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[2,2,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,2,3],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[3,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,3],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[3,0,1,2],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[2,0,1,2],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[2,0,1,2],[2,1,2,2],[1,2,2,0]],[[1,3,2,1],[2,0,1,2],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[2,0,1,2],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[1,2,1,2]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[1,3,1,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[2,2,1,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,3],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[3,1,2,2],[1,2,1,1]],[[1,2,2,1],[2,0,1,3],[2,1,2,2],[1,2,1,1]],[[1,2,2,1],[3,0,1,2],[2,1,2,2],[1,2,1,1]],[[1,2,2,2],[2,0,1,2],[2,1,2,2],[1,2,1,1]],[[1,2,3,1],[2,0,1,2],[2,1,2,2],[1,2,1,1]],[[1,3,2,1],[2,0,1,2],[2,1,2,2],[1,2,1,1]],[[2,2,2,1],[2,0,1,2],[2,1,2,2],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[1,1,2,2]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[1,1,3,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[2,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,3],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[3,1,2,2],[1,1,2,1]],[[1,2,2,1],[2,0,1,3],[2,1,2,2],[1,1,2,1]],[[1,2,2,1],[3,0,1,2],[2,1,2,2],[1,1,2,1]],[[1,2,2,2],[2,0,1,2],[2,1,2,2],[1,1,2,1]],[[1,2,3,1],[2,0,1,2],[2,1,2,2],[1,1,2,1]],[[1,3,2,1],[2,0,1,2],[2,1,2,2],[1,1,2,1]],[[2,2,2,1],[2,0,1,2],[2,1,2,2],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[0,2,2,2]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,2],[0,3,2,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,3],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[3,1,2,2],[0,2,2,1]],[[1,2,2,1],[2,0,1,3],[2,1,2,2],[0,2,2,1]],[[1,2,2,1],[3,0,1,2],[2,1,2,2],[0,2,2,1]],[[0,3,1,0],[2,3,2,1],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[3,3,2,1],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[2,4,2,1],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[2,3,2,1],[3,3,3,2],[1,0,0,1]],[[0,3,1,0],[2,3,2,1],[2,3,3,2],[1,0,1,0]],[[0,2,1,0],[3,3,2,1],[2,3,3,2],[1,0,1,0]],[[0,2,1,0],[2,4,2,1],[2,3,3,2],[1,0,1,0]],[[0,2,1,0],[2,3,2,1],[3,3,3,2],[1,0,1,0]],[[1,2,2,2],[2,0,1,2],[2,1,2,2],[0,2,2,1]],[[1,2,3,1],[2,0,1,2],[2,1,2,2],[0,2,2,1]],[[1,3,2,1],[2,0,1,2],[2,1,2,2],[0,2,2,1]],[[2,2,2,1],[2,0,1,2],[2,1,2,2],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,1],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[2,1,2,1],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,1],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[2,1,2,1],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[3,1,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,3],[2,1,2,1],[1,2,2,1]],[[1,2,2,1],[3,0,1,2],[2,1,2,1],[1,2,2,1]],[[1,2,2,2],[2,0,1,2],[2,1,2,1],[1,2,2,1]],[[1,2,3,1],[2,0,1,2],[2,1,2,1],[1,2,2,1]],[[1,3,2,1],[2,0,1,2],[2,1,2,1],[1,2,2,1]],[[2,2,2,1],[2,0,1,2],[2,1,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[2,0,3,2],[1,1,2,2]],[[1,2,2,1],[2,0,1,2],[2,0,3,2],[1,1,3,1]],[[1,2,2,1],[2,0,1,2],[2,0,3,3],[1,1,2,1]],[[1,2,2,1],[2,0,1,3],[2,0,3,2],[1,1,2,1]],[[1,2,2,2],[2,0,1,2],[2,0,3,2],[1,1,2,1]],[[1,2,3,1],[2,0,1,2],[2,0,3,2],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[2,0,3,2],[0,2,2,2]],[[1,2,2,1],[2,0,1,2],[2,0,3,2],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[2,0,3,3],[0,2,2,1]],[[1,2,2,1],[2,0,1,3],[2,0,3,2],[0,2,2,1]],[[1,2,2,2],[2,0,1,2],[2,0,3,2],[0,2,2,1]],[[1,2,3,1],[2,0,1,2],[2,0,3,2],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,4,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[1,4,3,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,3],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[3,0,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,2,2],[2,0,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,3,1],[2,0,1,2],[1,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,0,1,2],[1,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,0,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,2],[1,1,0,2]],[[1,2,2,1],[2,0,1,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,0,1,2],[1,3,4,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,3],[0,0,3,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,0,3,3],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,0,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[0,0,3,2],[1,2,2,2]],[[0,2,1,0],[2,3,2,3],[0,1,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,1,2,3],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,1,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,1,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,2],[0,1,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[0,1,2,2],[1,2,2,2]],[[0,2,1,0],[2,3,2,2],[0,1,4,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,1,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,1,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,2,2],[0,1,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[0,1,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,2,3],[0,1,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,2,2],[0,1,4,2],[1,2,1,1]],[[0,2,1,0],[2,3,2,2],[0,1,3,3],[1,2,1,1]],[[0,2,1,0],[2,3,2,2],[0,1,3,2],[1,2,1,2]],[[0,2,1,0],[2,3,2,3],[0,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[0,1,4,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[0,1,3,3],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[0,1,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,2,2],[0,1,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,2,2],[0,1,3,2],[1,2,3,0]],[[0,2,1,0],[2,3,2,3],[0,2,2,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[0,2,2,3],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[0,2,2,2],[1,1,3,1]],[[0,2,1,0],[2,3,2,2],[0,2,2,2],[1,1,2,2]],[[0,2,1,0],[2,3,2,2],[0,2,4,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,0],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,0],[1,2,2,2]],[[0,2,1,0],[2,3,2,2],[0,2,4,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,1],[1,1,3,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,1],[1,1,2,2]],[[0,2,1,0],[2,3,2,2],[0,2,4,1],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[0,2,3,1],[2,2,2,0]],[[0,2,1,0],[2,3,2,2],[0,2,3,1],[1,3,2,0]],[[0,2,1,0],[2,3,2,2],[0,2,3,1],[1,2,3,0]],[[0,2,1,0],[2,3,2,3],[0,2,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[0,2,4,2],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,3],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,2],[1,0,2,2]],[[0,2,1,0],[2,3,2,3],[0,2,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[0,2,4,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,3],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,2],[1,1,1,2]],[[0,2,1,0],[2,3,2,3],[0,2,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[0,2,4,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[0,2,3,3],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[0,2,3,2],[1,1,3,0]],[[0,2,1,0],[2,3,2,3],[0,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[0,2,4,2],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,3],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[0,2,3,2],[1,2,0,2]],[[0,2,1,0],[2,3,2,3],[0,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,2],[0,2,4,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[1,4,3,2],[1,1,0,1]],[[1,2,2,1],[2,0,1,3],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,0,1,2],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,0,1,2],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,0,1,2],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,0,1,2],[1,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,0,1,2],[1,3,3,2],[1,1,0,1]],[[0,3,1,0],[2,3,2,2],[0,3,0,2],[1,2,2,1]],[[0,2,1,0],[3,3,2,2],[0,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,4,2,2],[0,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,3],[0,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,4,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,0,3],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,0,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,0,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,0,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[0,3,0,2],[1,2,2,2]],[[0,3,1,0],[2,3,2,2],[0,3,2,0],[1,2,2,1]],[[0,2,1,0],[3,3,2,2],[0,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,4,2,2],[0,3,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,4,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,2,0],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,2,0],[1,3,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,2,0],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[0,3,2,0],[1,2,2,2]],[[0,3,1,0],[2,3,2,2],[0,3,2,1],[1,2,2,0]],[[0,2,1,0],[3,3,2,2],[0,3,2,1],[1,2,2,0]],[[0,2,1,0],[2,4,2,2],[0,3,2,1],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[0,4,2,1],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[0,3,2,1],[2,2,2,0]],[[0,2,1,0],[2,3,2,2],[0,3,2,1],[1,3,2,0]],[[0,2,1,0],[2,3,2,2],[0,3,2,1],[1,2,3,0]],[[0,2,1,0],[2,3,2,3],[0,3,2,2],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,2,3],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,2,2],[0,1,3,1]],[[0,2,1,0],[2,3,2,2],[0,3,2,2],[0,1,2,2]],[[0,3,1,0],[2,3,2,2],[0,3,3,0],[1,1,2,1]],[[0,2,1,0],[3,3,2,2],[0,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,4,2,2],[0,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[0,4,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,4,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,0],[1,1,3,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,0],[1,1,2,2]],[[0,3,1,0],[2,3,2,2],[0,3,3,0],[1,2,1,1]],[[0,2,1,0],[3,3,2,2],[0,3,3,0],[1,2,1,1]],[[0,2,1,0],[2,4,2,2],[0,3,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,2,2],[0,4,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,2,2],[0,3,4,0],[1,2,1,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,0],[2,2,1,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,0],[1,3,1,1]],[[0,2,1,0],[2,3,2,2],[0,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,1],[0,1,2,2]],[[0,3,1,0],[2,3,2,2],[0,3,3,1],[1,1,1,1]],[[0,2,1,0],[3,3,2,2],[0,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,4,2,2],[0,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[0,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[0,3,4,1],[1,1,1,1]],[[0,3,1,0],[2,3,2,2],[0,3,3,1],[1,1,2,0]],[[0,2,1,0],[3,3,2,2],[0,3,3,1],[1,1,2,0]],[[0,2,1,0],[2,4,2,2],[0,3,3,1],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[0,4,3,1],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[0,3,4,1],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[0,3,3,1],[1,1,3,0]],[[0,3,1,0],[2,3,2,2],[0,3,3,1],[1,2,0,1]],[[0,2,1,0],[3,3,2,2],[0,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,4,2,2],[0,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[0,4,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[0,3,4,1],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,1],[2,2,0,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,1],[1,3,0,1]],[[0,3,1,0],[2,3,2,2],[0,3,3,1],[1,2,1,0]],[[0,2,1,0],[3,3,2,2],[0,3,3,1],[1,2,1,0]],[[0,2,1,0],[2,4,2,2],[0,3,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,2,2],[0,4,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,2,2],[0,3,4,1],[1,2,1,0]],[[0,2,1,0],[2,3,2,2],[0,3,3,1],[2,2,1,0]],[[0,2,1,0],[2,3,2,2],[0,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,2],[1,0,3,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,4,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,2],[1,4,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,3],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[3,0,1,2],[1,3,3,2],[1,0,2,0]],[[1,2,2,2],[2,0,1,2],[1,3,3,2],[1,0,2,0]],[[1,2,3,1],[2,0,1,2],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,3],[0,3,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,4,2],[0,0,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,3],[0,0,2,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,2],[0,0,2,2]],[[0,2,1,0],[2,3,2,3],[0,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[0,3,4,2],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,3],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,2],[0,1,1,2]],[[0,2,1,0],[2,3,2,3],[0,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[0,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[0,3,3,3],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[0,3,3,2],[0,1,3,0]],[[0,2,1,0],[2,3,2,3],[0,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[0,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,3],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[0,3,3,2],[0,2,0,2]],[[0,2,1,0],[2,3,2,3],[0,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,2],[0,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,3,2,1],[2,0,1,2],[1,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,0,1,2],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,2],[1,0,1,2]],[[1,2,2,1],[2,0,1,2],[1,3,3,3],[1,0,1,1]],[[1,2,2,1],[2,0,1,2],[1,3,4,2],[1,0,1,1]],[[1,2,2,1],[2,0,1,2],[1,4,3,2],[1,0,1,1]],[[1,2,2,1],[2,0,1,3],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[3,0,1,2],[1,3,3,2],[1,0,1,1]],[[1,2,2,2],[2,0,1,2],[1,3,3,2],[1,0,1,1]],[[1,2,3,1],[2,0,1,2],[1,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,0,1,2],[1,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,0,1,2],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[2,0,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,4,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[1,4,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,3],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[3,0,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,2,2],[2,0,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,3,1],[2,0,1,2],[1,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,0,1,2],[1,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,0,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,2],[0,2,0,2]],[[0,2,1,0],[2,3,2,3],[1,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,0,2,3],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,0,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,0,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,2],[1,0,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[1,0,2,2],[1,2,2,2]],[[0,2,1,0],[2,3,2,2],[1,0,4,1],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,0,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,0,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,2,2],[1,0,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[1,0,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,2,3],[1,0,3,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,0,3,3],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,0,3,2],[0,2,3,1]],[[0,2,1,0],[2,3,2,2],[1,0,3,2],[0,2,2,2]],[[0,2,1,0],[2,3,2,3],[1,0,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,2,2],[1,0,4,2],[1,2,1,1]],[[0,2,1,0],[2,3,2,2],[1,0,3,3],[1,2,1,1]],[[0,2,1,0],[2,3,2,2],[1,0,3,2],[1,2,1,2]],[[0,2,1,0],[2,3,2,3],[1,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[1,0,4,2],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[1,0,3,3],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[1,0,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,2,2],[1,0,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,2,2],[1,0,3,2],[1,2,3,0]],[[0,2,1,0],[2,3,2,3],[1,1,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,1,2,3],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,1,2,2],[0,3,2,1]],[[0,2,1,0],[2,3,2,2],[1,1,2,2],[0,2,3,1]],[[0,2,1,0],[2,3,2,2],[1,1,2,2],[0,2,2,2]],[[0,2,1,0],[2,3,2,2],[1,1,4,1],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,1,3,1],[0,3,2,1]],[[0,2,1,0],[2,3,2,2],[1,1,3,1],[0,2,3,1]],[[0,2,1,0],[2,3,2,2],[1,1,3,1],[0,2,2,2]],[[0,2,1,0],[2,3,2,3],[1,1,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,2,2],[1,1,4,2],[0,2,1,1]],[[0,2,1,0],[2,3,2,2],[1,1,3,3],[0,2,1,1]],[[0,2,1,0],[2,3,2,2],[1,1,3,2],[0,2,1,2]],[[0,2,1,0],[2,3,2,3],[1,1,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,2,2],[1,1,4,2],[0,2,2,0]],[[0,2,1,0],[2,3,2,2],[1,1,3,3],[0,2,2,0]],[[0,2,1,0],[2,3,2,2],[1,1,3,2],[0,3,2,0]],[[0,2,1,0],[2,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,2],[0,3,0,1]],[[1,2,2,1],[2,0,1,2],[1,3,3,3],[0,2,0,1]],[[1,2,2,1],[2,0,1,2],[1,3,4,2],[0,2,0,1]],[[1,2,2,1],[2,0,1,2],[1,4,3,2],[0,2,0,1]],[[1,2,2,1],[2,0,1,3],[1,3,3,2],[0,2,0,1]],[[1,2,2,1],[3,0,1,2],[1,3,3,2],[0,2,0,1]],[[1,2,2,2],[2,0,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,3],[1,2,2,2],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[1,2,2,3],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[1,2,2,2],[0,1,3,1]],[[0,2,1,0],[2,3,2,2],[1,2,2,2],[0,1,2,2]],[[0,2,1,0],[2,3,2,3],[1,2,2,2],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[1,2,2,3],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[1,2,2,2],[1,0,3,1]],[[0,2,1,0],[2,3,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,3,1],[2,0,1,2],[1,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,0,1,2],[1,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,0,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[1,2,4,0],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,0],[0,3,2,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,0],[0,2,3,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,0],[0,2,2,2]],[[0,2,1,0],[2,3,2,2],[1,2,4,1],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,1],[0,1,3,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,1],[0,1,2,2]],[[0,2,1,0],[2,3,2,2],[1,2,4,1],[0,2,2,0]],[[0,2,1,0],[2,3,2,2],[1,2,3,1],[0,3,2,0]],[[0,2,1,0],[2,3,2,2],[1,2,3,1],[0,2,3,0]],[[0,2,1,0],[2,3,2,2],[1,2,4,1],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,1],[1,0,3,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,1],[1,0,2,2]],[[0,2,1,0],[2,3,2,3],[1,2,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,2,2],[1,2,4,2],[0,0,2,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,3],[0,0,2,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,2],[0,0,2,2]],[[0,2,1,0],[2,3,2,3],[1,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[1,2,4,2],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,3],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,2],[0,1,1,2]],[[0,2,1,0],[2,3,2,3],[1,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[1,2,4,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[1,2,3,3],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[1,2,3,2],[0,1,3,0]],[[0,2,1,0],[2,3,2,3],[1,2,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[1,2,4,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,3],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,2],[0,2,0,2]],[[0,2,1,0],[2,3,2,3],[1,2,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,2],[1,2,4,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,2],[0,1,3,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,3],[0,1,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,3],[1,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,2,2],[1,2,4,2],[1,0,1,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,3],[1,0,1,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,2],[1,0,1,2]],[[0,2,1,0],[2,3,2,3],[1,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,2],[1,2,4,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,2],[1,2,3,3],[1,0,2,0]],[[0,2,1,0],[2,3,2,2],[1,2,3,2],[1,0,3,0]],[[0,2,1,0],[2,3,2,3],[1,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,2],[1,2,4,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,3],[1,1,0,1]],[[0,2,1,0],[2,3,2,2],[1,2,3,2],[1,1,0,2]],[[0,2,1,0],[2,3,2,3],[1,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,2],[1,2,4,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[1,4,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,1,3],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[3,0,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,2,2],[2,0,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[2,0,1,2],[1,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,0,1,2],[1,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,0,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,2],[0,1,1,2]],[[1,2,2,1],[2,0,1,2],[1,3,3,3],[0,1,1,1]],[[1,2,2,1],[2,0,1,2],[1,3,4,2],[0,1,1,1]],[[1,2,2,1],[2,0,1,2],[1,4,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,1,3],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[3,0,1,2],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[2,0,1,2],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[2,0,1,2],[1,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,0,1,2],[1,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,0,1,2],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,1,2],[1,3,3,2],[0,0,2,2]],[[1,2,2,1],[2,0,1,2],[1,3,3,3],[0,0,2,1]],[[1,2,2,1],[2,0,1,2],[1,3,4,2],[0,0,2,1]],[[1,2,2,1],[2,0,1,3],[1,3,3,2],[0,0,2,1]],[[1,2,2,1],[3,0,1,2],[1,3,3,2],[0,0,2,1]],[[0,3,1,0],[2,3,2,2],[1,3,0,2],[0,2,2,1]],[[0,2,1,0],[3,3,2,2],[1,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,4,2,2],[1,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,3],[1,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,4,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,3,0,3],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,3,0,2],[0,3,2,1]],[[0,2,1,0],[2,3,2,2],[1,3,0,2],[0,2,3,1]],[[0,2,1,0],[2,3,2,2],[1,3,0,2],[0,2,2,2]],[[0,3,1,0],[2,3,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,1,0],[3,3,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,4,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[1,4,0,2],[1,1,2,1]],[[1,2,2,2],[2,0,1,2],[1,3,3,2],[0,0,2,1]],[[1,2,3,1],[2,0,1,2],[1,3,3,2],[0,0,2,1]],[[1,3,2,1],[2,0,1,2],[1,3,3,2],[0,0,2,1]],[[2,2,2,1],[2,0,1,2],[1,3,3,2],[0,0,2,1]],[[0,3,1,0],[2,3,2,2],[1,3,2,0],[0,2,2,1]],[[0,2,1,0],[3,3,2,2],[1,3,2,0],[0,2,2,1]],[[0,2,1,0],[2,4,2,2],[1,3,2,0],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,4,2,0],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[1,3,2,0],[0,3,2,1]],[[0,2,1,0],[2,3,2,2],[1,3,2,0],[0,2,3,1]],[[0,2,1,0],[2,3,2,2],[1,3,2,0],[0,2,2,2]],[[0,3,1,0],[2,3,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,1,0],[3,3,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,4,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[1,4,2,0],[1,1,2,1]],[[0,3,1,0],[2,3,2,2],[1,3,2,1],[0,2,2,0]],[[0,2,1,0],[3,3,2,2],[1,3,2,1],[0,2,2,0]],[[0,2,1,0],[2,4,2,2],[1,3,2,1],[0,2,2,0]],[[0,2,1,0],[2,3,2,2],[1,4,2,1],[0,2,2,0]],[[0,2,1,0],[2,3,2,2],[1,3,2,1],[0,3,2,0]],[[0,2,1,0],[2,3,2,2],[1,3,2,1],[0,2,3,0]],[[0,3,1,0],[2,3,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,1,0],[3,3,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,4,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[1,4,2,1],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,1],[2,2,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,4,1],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[1,4,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,1],[1,3,0,1]],[[1,2,2,1],[2,0,1,2],[1,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,1,2],[1,3,4,1],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[1,3,3,1],[1,1,3,0]],[[1,2,2,1],[2,0,1,2],[1,3,4,1],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[1,4,3,1],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,1],[2,0,1,2],[1,3,3,1],[1,0,3,1]],[[1,2,2,1],[2,0,1,2],[1,3,4,1],[1,0,2,1]],[[1,2,2,1],[2,0,1,2],[1,4,3,1],[1,0,2,1]],[[1,2,2,1],[2,0,1,2],[1,3,3,1],[0,3,1,1]],[[1,2,2,1],[2,0,1,2],[1,3,4,1],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[1,4,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[1,3,3,1],[0,1,2,2]],[[1,2,2,1],[2,0,1,2],[1,3,3,1],[0,1,3,1]],[[1,2,2,1],[2,0,1,2],[1,3,4,1],[0,1,2,1]],[[1,2,2,1],[2,0,1,2],[1,4,3,1],[0,1,2,1]],[[1,2,2,1],[2,0,1,2],[1,3,3,0],[1,3,1,1]],[[1,2,2,1],[2,0,1,2],[1,3,3,0],[2,2,1,1]],[[0,3,1,0],[2,3,2,2],[1,3,3,0],[0,1,2,1]],[[0,2,1,0],[3,3,2,2],[1,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,4,2,2],[1,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[1,4,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[1,3,4,0],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[1,3,3,0],[0,1,3,1]],[[0,2,1,0],[2,3,2,2],[1,3,3,0],[0,1,2,2]],[[0,3,1,0],[2,3,2,2],[1,3,3,0],[0,2,1,1]],[[0,2,1,0],[3,3,2,2],[1,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,4,2,2],[1,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,2,2],[1,4,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,2,2],[1,3,4,0],[0,2,1,1]],[[0,2,1,0],[2,3,2,2],[1,3,3,0],[0,3,1,1]],[[0,3,1,0],[2,3,2,2],[1,3,3,0],[1,0,2,1]],[[0,2,1,0],[3,3,2,2],[1,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,4,2,2],[1,3,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[1,4,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[1,3,4,0],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[1,3,3,0],[1,0,3,1]],[[0,2,1,0],[2,3,2,2],[1,3,3,0],[1,0,2,2]],[[0,3,1,0],[2,3,2,2],[1,3,3,0],[1,1,1,1]],[[0,2,1,0],[3,3,2,2],[1,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,4,2,2],[1,3,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[1,4,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[1,3,4,0],[1,1,1,1]],[[0,3,1,0],[2,3,2,2],[1,3,3,0],[1,2,0,1]],[[0,2,1,0],[3,3,2,2],[1,3,3,0],[1,2,0,1]],[[0,2,1,0],[2,4,2,2],[1,3,3,0],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[1,4,3,0],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[1,3,4,0],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[1,4,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[1,3,3,0],[1,1,2,2]],[[1,2,2,1],[2,0,1,2],[1,3,3,0],[1,1,3,1]],[[1,2,2,1],[2,0,1,2],[1,3,4,0],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[1,4,3,0],[1,1,2,1]],[[0,3,1,0],[2,3,2,2],[1,3,3,1],[0,1,1,1]],[[0,2,1,0],[3,3,2,2],[1,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,4,2,2],[1,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[1,4,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[1,3,4,1],[0,1,1,1]],[[0,3,1,0],[2,3,2,2],[1,3,3,1],[0,1,2,0]],[[0,2,1,0],[3,3,2,2],[1,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,4,2,2],[1,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[1,4,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[1,3,4,1],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[1,3,3,1],[0,1,3,0]],[[0,3,1,0],[2,3,2,2],[1,3,3,1],[0,2,0,1]],[[0,2,1,0],[3,3,2,2],[1,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,4,2,2],[1,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[1,4,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[1,3,4,1],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[1,3,3,1],[0,3,0,1]],[[0,3,1,0],[2,3,2,2],[1,3,3,1],[0,2,1,0]],[[0,2,1,0],[3,3,2,2],[1,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,4,2,2],[1,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,2,2],[1,4,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,2,2],[1,3,4,1],[0,2,1,0]],[[0,2,1,0],[2,3,2,2],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,2,2],[2,2,1,0]],[[1,2,2,1],[2,0,1,2],[1,4,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,2,2],[1,3,0,1]],[[0,3,1,0],[2,3,2,2],[1,3,3,1],[1,0,1,1]],[[0,2,1,0],[3,3,2,2],[1,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,4,2,2],[1,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,2,2],[1,4,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,2,2],[1,3,4,1],[1,0,1,1]],[[0,3,1,0],[2,3,2,2],[1,3,3,1],[1,0,2,0]],[[0,2,1,0],[3,3,2,2],[1,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,4,2,2],[1,3,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,2,2],[1,4,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,2,2],[1,3,4,1],[1,0,2,0]],[[0,2,1,0],[2,3,2,2],[1,3,3,1],[1,0,3,0]],[[0,3,1,0],[2,3,2,2],[1,3,3,1],[1,1,0,1]],[[0,2,1,0],[3,3,2,2],[1,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,4,2,2],[1,3,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,2,2],[1,4,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,2,2],[1,3,4,1],[1,1,0,1]],[[0,3,1,0],[2,3,2,2],[1,3,3,1],[1,1,1,0]],[[0,2,1,0],[3,3,2,2],[1,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,4,2,2],[1,3,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,2,2],[1,4,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,2,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[1,3,2,2],[2,2,0,1]],[[1,2,2,1],[2,0,1,2],[1,4,2,2],[1,2,0,1]],[[0,3,1,0],[2,3,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,1,0],[3,3,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,4,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[2,0,1,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,0,1,2],[1,3,2,2],[1,0,3,1]],[[1,2,2,1],[2,0,1,2],[1,3,2,3],[1,0,2,1]],[[1,2,2,1],[2,0,1,3],[1,3,2,2],[1,0,2,1]],[[1,2,2,1],[3,0,1,2],[1,3,2,2],[1,0,2,1]],[[1,2,2,2],[2,0,1,2],[1,3,2,2],[1,0,2,1]],[[1,2,3,1],[2,0,1,2],[1,3,2,2],[1,0,2,1]],[[1,3,2,1],[2,0,1,2],[1,3,2,2],[1,0,2,1]],[[2,2,2,1],[2,0,1,2],[1,3,2,2],[1,0,2,1]],[[0,2,1,0],[2,3,2,3],[1,3,3,2],[0,0,1,1]],[[0,2,1,0],[2,3,2,2],[1,3,4,2],[0,0,1,1]],[[0,2,1,0],[2,3,2,2],[1,3,3,3],[0,0,1,1]],[[0,2,1,0],[2,3,2,2],[1,3,3,2],[0,0,1,2]],[[0,2,1,0],[2,3,2,3],[1,3,3,2],[0,0,2,0]],[[0,2,1,0],[2,3,2,2],[1,3,4,2],[0,0,2,0]],[[0,2,1,0],[2,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,2,2],[0,2,3,0]],[[1,2,2,1],[2,0,1,2],[1,3,2,2],[0,3,2,0]],[[1,2,2,1],[2,0,1,2],[1,4,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,2,2],[0,1,2,2]],[[1,2,2,1],[2,0,1,2],[1,3,2,2],[0,1,3,1]],[[1,2,2,1],[2,0,1,2],[1,3,2,3],[0,1,2,1]],[[1,2,2,1],[2,0,1,3],[1,3,2,2],[0,1,2,1]],[[1,2,2,1],[3,0,1,2],[1,3,2,2],[0,1,2,1]],[[1,2,2,2],[2,0,1,2],[1,3,2,2],[0,1,2,1]],[[1,2,3,1],[2,0,1,2],[1,3,2,2],[0,1,2,1]],[[1,3,2,1],[2,0,1,2],[1,3,2,2],[0,1,2,1]],[[2,2,2,1],[2,0,1,2],[1,3,2,2],[0,1,2,1]],[[1,2,2,1],[2,0,1,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[2,0,1,2],[1,3,2,1],[1,3,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,2,1],[2,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,4,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,2,1],[0,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,3,2,1],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,3,2,1],[0,3,2,1]],[[1,2,2,1],[2,0,1,2],[1,4,2,1],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,3,2,0],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,3,2,0],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,3,2,0],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[1,3,2,0],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,4,2,0],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,3,1,2],[1,2,3,0]],[[1,2,2,1],[2,0,1,2],[1,3,1,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,1,2],[2,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,4,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,3,1,2],[1,3,1,1]],[[1,2,2,1],[2,0,1,2],[1,3,1,2],[2,2,1,1]],[[1,2,2,1],[2,0,1,2],[1,4,1,2],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[1,3,1,2],[0,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,3,1,2],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,3,1,2],[0,3,2,1]],[[1,2,2,1],[2,0,1,2],[1,3,1,3],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,4,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,1,3],[1,3,1,2],[0,2,2,1]],[[1,2,2,1],[3,0,1,2],[1,3,1,2],[0,2,2,1]],[[1,2,2,2],[2,0,1,2],[1,3,1,2],[0,2,2,1]],[[1,2,3,1],[2,0,1,2],[1,3,1,2],[0,2,2,1]],[[1,3,2,1],[2,0,1,2],[1,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,0,1,2],[1,3,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,3,1,1],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,3,1,1],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,3,1,1],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[1,3,1,1],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,4,1,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,1,2],[1,2,3,2],[0,3,2,0]],[[1,2,2,1],[2,0,1,2],[1,2,3,3],[0,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,2,4,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,3],[1,2,3,2],[0,2,2,0]],[[1,2,2,1],[3,0,1,2],[1,2,3,2],[0,2,2,0]],[[1,2,2,2],[2,0,1,2],[1,2,3,2],[0,2,2,0]],[[1,2,3,1],[2,0,1,2],[1,2,3,2],[0,2,2,0]],[[1,3,2,1],[2,0,1,2],[1,2,3,2],[0,2,2,0]],[[2,2,2,1],[2,0,1,2],[1,2,3,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,2,3,2],[0,2,1,2]],[[1,2,2,1],[2,0,1,2],[1,2,3,3],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[1,2,4,2],[0,2,1,1]],[[1,2,2,1],[2,0,1,3],[1,2,3,2],[0,2,1,1]],[[1,2,2,1],[3,0,1,2],[1,2,3,2],[0,2,1,1]],[[1,2,2,2],[2,0,1,2],[1,2,3,2],[0,2,1,1]],[[1,2,3,1],[2,0,1,2],[1,2,3,2],[0,2,1,1]],[[1,3,2,1],[2,0,1,2],[1,2,3,2],[0,2,1,1]],[[2,2,2,1],[2,0,1,2],[1,2,3,2],[0,2,1,1]],[[1,2,2,1],[2,0,1,2],[1,2,3,1],[1,2,3,0]],[[0,3,1,0],[2,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[3,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,4,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,3],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[3,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,1,3],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[2,0,1,2],[1,2,2,2]],[[0,2,1,0],[2,3,2,3],[2,0,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,2,3],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,2,2],[0,3,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,2,2],[0,2,3,1]],[[0,2,1,0],[2,3,2,2],[2,0,2,2],[0,2,2,2]],[[0,2,1,0],[2,3,2,3],[2,0,2,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,2,3],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,2,2],[1,1,3,1]],[[0,2,1,0],[2,3,2,2],[2,0,2,2],[1,1,2,2]],[[0,3,1,0],[2,3,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,0],[3,3,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,0],[2,4,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[3,0,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,4,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,0],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,0],[1,2,2,2]],[[0,2,1,0],[2,3,2,2],[2,0,4,1],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,1],[0,3,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,1],[0,2,3,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,1],[0,2,2,2]],[[0,2,1,0],[2,3,2,2],[2,0,4,1],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,1],[1,1,3,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,1],[1,1,2,2]],[[0,3,1,0],[2,3,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,0],[3,3,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,0],[2,4,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[3,0,3,1],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[2,0,4,1],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[2,0,3,1],[2,2,2,0]],[[0,2,1,0],[2,3,2,2],[2,0,3,1],[1,3,2,0]],[[0,2,1,0],[2,3,2,2],[2,0,3,1],[1,2,3,0]],[[0,2,1,0],[2,3,2,3],[2,0,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,2,2],[2,0,4,2],[0,2,1,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,3],[0,2,1,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,2],[0,2,1,2]],[[0,2,1,0],[2,3,2,3],[2,0,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,2,2],[2,0,4,2],[0,2,2,0]],[[0,2,1,0],[2,3,2,2],[2,0,3,3],[0,2,2,0]],[[0,2,1,0],[2,3,2,2],[2,0,3,2],[0,3,2,0]],[[0,2,1,0],[2,3,2,2],[2,0,3,2],[0,2,3,0]],[[0,2,1,0],[2,3,2,3],[2,0,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[2,0,4,2],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,3],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,2],[1,1,1,2]],[[0,2,1,0],[2,3,2,3],[2,0,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[2,0,4,2],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[2,0,3,3],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[2,0,3,2],[1,1,3,0]],[[0,2,1,0],[2,3,2,3],[2,0,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[2,0,4,2],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,3],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[2,0,3,2],[1,2,0,2]],[[0,2,1,0],[2,3,2,3],[2,0,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,2],[2,0,4,2],[1,2,1,0]],[[0,2,1,0],[2,3,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[1,2,3,1],[1,3,2,0]],[[1,2,2,1],[2,0,1,2],[1,2,3,1],[2,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,2,4,1],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,2,3,1],[0,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,2,3,1],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,2,3,1],[0,3,2,1]],[[1,2,2,1],[2,0,1,2],[1,2,4,1],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,2,3,0],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,2,3,0],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,2,3,0],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[1,2,3,0],[2,2,2,1]],[[0,3,1,0],[2,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[3,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,4,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,3],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[3,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,0,3],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,0,2],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,0,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,0,2],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[2,1,0,2],[1,2,2,2]],[[0,3,1,0],[2,3,2,2],[2,1,2,0],[1,2,2,1]],[[0,2,1,0],[3,3,2,2],[2,1,2,0],[1,2,2,1]],[[0,2,1,0],[2,4,2,2],[2,1,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[3,1,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,2,0],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,2,0],[1,3,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,2,0],[1,2,3,1]],[[0,2,1,0],[2,3,2,2],[2,1,2,0],[1,2,2,2]],[[0,3,1,0],[2,3,2,2],[2,1,2,1],[1,2,2,0]],[[0,2,1,0],[3,3,2,2],[2,1,2,1],[1,2,2,0]],[[0,2,1,0],[2,4,2,2],[2,1,2,1],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[3,1,2,1],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[2,1,2,1],[2,2,2,0]],[[0,2,1,0],[2,3,2,2],[2,1,2,1],[1,3,2,0]],[[0,2,1,0],[2,3,2,2],[2,1,2,1],[1,2,3,0]],[[0,2,1,0],[2,3,2,3],[2,1,2,2],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,2,3],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,2,2],[0,1,3,1]],[[0,2,1,0],[2,3,2,2],[2,1,2,2],[0,1,2,2]],[[0,2,1,0],[2,3,2,3],[2,1,2,2],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,2,3],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,2,2],[1,0,3,1]],[[0,2,1,0],[2,3,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[2,0,1,2],[1,2,4,0],[1,2,2,1]],[[0,3,1,0],[2,3,2,2],[2,1,3,0],[1,2,1,1]],[[0,2,1,0],[3,3,2,2],[2,1,3,0],[1,2,1,1]],[[0,2,1,0],[2,4,2,2],[2,1,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,2,2],[3,1,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,0],[2,2,1,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,0],[1,3,1,1]],[[0,2,1,0],[2,3,2,2],[2,1,4,1],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,1],[0,1,3,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,1],[0,1,2,2]],[[0,2,1,0],[2,3,2,2],[2,1,4,1],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,1],[1,0,3,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,1],[1,0,2,2]],[[0,3,1,0],[2,3,2,2],[2,1,3,1],[1,2,0,1]],[[0,2,1,0],[3,3,2,2],[2,1,3,1],[1,2,0,1]],[[0,2,1,0],[2,4,2,2],[2,1,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[3,1,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,1],[2,2,0,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,1],[1,3,0,1]],[[0,3,1,0],[2,3,2,2],[2,1,3,1],[1,2,1,0]],[[0,2,1,0],[3,3,2,2],[2,1,3,1],[1,2,1,0]],[[0,2,1,0],[2,4,2,2],[2,1,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,2,2],[3,1,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,2,2],[2,1,3,1],[2,2,1,0]],[[0,2,1,0],[2,3,2,2],[2,1,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[1,2,2,2],[0,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,2,2,2],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,2,2,2],[0,3,2,1]],[[1,2,2,1],[2,0,1,2],[1,2,2,3],[0,2,2,1]],[[1,2,2,1],[2,0,1,3],[1,2,2,2],[0,2,2,1]],[[1,2,2,1],[3,0,1,2],[1,2,2,2],[0,2,2,1]],[[1,2,2,2],[2,0,1,2],[1,2,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,3],[2,1,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,4,2],[0,0,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,3],[0,0,2,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,2],[0,0,2,2]],[[0,2,1,0],[2,3,2,3],[2,1,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[2,1,4,2],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,3],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,2],[0,1,1,2]],[[0,2,1,0],[2,3,2,3],[2,1,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[2,1,4,2],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[2,1,3,3],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[2,1,3,2],[0,1,3,0]],[[0,2,1,0],[2,3,2,3],[2,1,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[2,1,4,2],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,3],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,2],[0,2,0,2]],[[0,2,1,0],[2,3,2,3],[2,1,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,2],[2,1,4,2],[0,2,1,0]],[[0,2,1,0],[2,3,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,3,1],[2,0,1,2],[1,2,2,2],[0,2,2,1]],[[1,3,2,1],[2,0,1,2],[1,2,2,2],[0,2,2,1]],[[2,2,2,1],[2,0,1,2],[1,2,2,2],[0,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,2,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,2,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,2,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,2,3],[2,1,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,2,2],[2,1,4,2],[1,0,1,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,3],[1,0,1,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,2],[1,0,1,2]],[[0,2,1,0],[2,3,2,3],[2,1,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,2],[2,1,4,2],[1,0,2,0]],[[0,2,1,0],[2,3,2,2],[2,1,3,3],[1,0,2,0]],[[0,2,1,0],[2,3,2,2],[2,1,3,2],[1,0,3,0]],[[0,2,1,0],[2,3,2,3],[2,1,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,2],[2,1,4,2],[1,1,0,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,3],[1,1,0,1]],[[0,2,1,0],[2,3,2,2],[2,1,3,2],[1,1,0,2]],[[0,2,1,0],[2,3,2,3],[2,1,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,2],[2,1,4,2],[1,1,1,0]],[[0,2,1,0],[2,3,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,1,2],[1,2,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,2,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,1,3],[1,2,1,2],[1,2,2,1]],[[1,2,2,1],[3,0,1,2],[1,2,1,2],[1,2,2,1]],[[1,2,2,2],[2,0,1,2],[1,2,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,1,2],[1,2,1,2],[1,2,2,1]],[[1,3,2,1],[2,0,1,2],[1,2,1,2],[1,2,2,1]],[[2,2,2,1],[2,0,1,2],[1,2,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,1,3,2],[1,2,3,0]],[[1,2,2,1],[2,0,1,2],[1,1,3,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,2],[1,1,3,2],[2,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,1,3,3],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,1,4,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,3],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[3,0,1,2],[1,1,3,2],[1,2,2,0]],[[1,2,2,2],[2,0,1,2],[1,1,3,2],[1,2,2,0]],[[1,2,3,1],[2,0,1,2],[1,1,3,2],[1,2,2,0]],[[1,3,2,1],[2,0,1,2],[1,1,3,2],[1,2,2,0]],[[2,2,2,1],[2,0,1,2],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[1,1,3,2],[1,2,1,2]],[[1,2,2,1],[2,0,1,2],[1,1,3,3],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[1,1,4,2],[1,2,1,1]],[[1,2,2,1],[2,0,1,3],[1,1,3,2],[1,2,1,1]],[[1,2,2,1],[3,0,1,2],[1,1,3,2],[1,2,1,1]],[[0,3,1,0],[2,3,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,1,0],[3,3,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,1,0],[2,4,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[3,2,0,2],[0,2,2,1]],[[0,3,1,0],[2,3,2,2],[2,2,0,2],[1,1,2,1]],[[0,2,1,0],[3,3,2,2],[2,2,0,2],[1,1,2,1]],[[0,2,1,0],[2,4,2,2],[2,2,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[3,2,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[2,2,0,2],[2,1,2,1]],[[1,2,2,2],[2,0,1,2],[1,1,3,2],[1,2,1,1]],[[1,2,3,1],[2,0,1,2],[1,1,3,2],[1,2,1,1]],[[1,3,2,1],[2,0,1,2],[1,1,3,2],[1,2,1,1]],[[2,2,2,1],[2,0,1,2],[1,1,3,2],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[1,1,3,2],[0,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,1,3,2],[0,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,1,3,3],[0,2,2,1]],[[1,2,2,1],[2,0,1,3],[1,1,3,2],[0,2,2,1]],[[1,2,2,2],[2,0,1,2],[1,1,3,2],[0,2,2,1]],[[1,2,3,1],[2,0,1,2],[1,1,3,2],[0,2,2,1]],[[0,3,1,0],[2,3,2,2],[2,2,2,0],[0,2,2,1]],[[0,2,1,0],[3,3,2,2],[2,2,2,0],[0,2,2,1]],[[0,2,1,0],[2,4,2,2],[2,2,2,0],[0,2,2,1]],[[0,2,1,0],[2,3,2,2],[3,2,2,0],[0,2,2,1]],[[0,3,1,0],[2,3,2,2],[2,2,2,0],[1,1,2,1]],[[0,2,1,0],[3,3,2,2],[2,2,2,0],[1,1,2,1]],[[0,2,1,0],[2,4,2,2],[2,2,2,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[3,2,2,0],[1,1,2,1]],[[0,2,1,0],[2,3,2,2],[2,2,2,0],[2,1,2,1]],[[0,3,1,0],[2,3,2,2],[2,2,2,1],[0,2,2,0]],[[0,2,1,0],[3,3,2,2],[2,2,2,1],[0,2,2,0]],[[0,2,1,0],[2,4,2,2],[2,2,2,1],[0,2,2,0]],[[0,2,1,0],[2,3,2,2],[3,2,2,1],[0,2,2,0]],[[0,3,1,0],[2,3,2,2],[2,2,2,1],[1,1,2,0]],[[0,2,1,0],[3,3,2,2],[2,2,2,1],[1,1,2,0]],[[0,2,1,0],[2,4,2,2],[2,2,2,1],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[3,2,2,1],[1,1,2,0]],[[0,2,1,0],[2,3,2,2],[2,2,2,1],[2,1,2,0]],[[1,2,2,1],[2,0,1,2],[1,1,3,1],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,1,3,1],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,1,3,1],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[1,1,3,1],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,1,4,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,1,2,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,1,2,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,1,2,2],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[1,1,2,2],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,1,2,3],[1,2,2,1]],[[1,2,2,1],[2,0,1,3],[1,1,2,2],[1,2,2,1]],[[1,2,2,1],[3,0,1,2],[1,1,2,2],[1,2,2,1]],[[1,2,2,2],[2,0,1,2],[1,1,2,2],[1,2,2,1]],[[1,2,3,1],[2,0,1,2],[1,1,2,2],[1,2,2,1]],[[1,3,2,1],[2,0,1,2],[1,1,2,2],[1,2,2,1]],[[2,2,2,1],[2,0,1,2],[1,1,2,2],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[1,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[1,0,3,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[1,0,3,3],[1,2,2,1]],[[1,2,2,1],[2,0,1,3],[1,0,3,2],[1,2,2,1]],[[1,2,2,2],[2,0,1,2],[1,0,3,2],[1,2,2,1]],[[1,2,3,1],[2,0,1,2],[1,0,3,2],[1,2,2,1]],[[0,3,1,0],[2,3,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,1,0],[3,3,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,1,0],[2,4,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,2,2],[3,2,3,0],[0,1,2,1]],[[0,3,1,0],[2,3,2,2],[2,2,3,0],[0,2,1,1]],[[0,2,1,0],[3,3,2,2],[2,2,3,0],[0,2,1,1]],[[0,2,1,0],[2,4,2,2],[2,2,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,2,2],[3,2,3,0],[0,2,1,1]],[[0,3,1,0],[2,3,2,2],[2,2,3,0],[1,0,2,1]],[[0,2,1,0],[3,3,2,2],[2,2,3,0],[1,0,2,1]],[[0,2,1,0],[2,4,2,2],[2,2,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[3,2,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,2,2],[2,2,3,0],[2,0,2,1]],[[0,3,1,0],[2,3,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,1,0],[3,3,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,1,0],[2,4,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[3,2,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,2,2],[2,2,3,0],[2,1,1,1]],[[0,3,1,0],[2,3,2,2],[2,2,3,0],[1,2,0,1]],[[0,2,1,0],[3,3,2,2],[2,2,3,0],[1,2,0,1]],[[0,2,1,0],[2,4,2,2],[2,2,3,0],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[3,2,3,0],[1,2,0,1]],[[0,2,1,0],[2,3,2,2],[2,2,3,0],[2,2,0,1]],[[1,2,2,1],[2,0,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,2],[0,3,3,2],[2,2,1,0]],[[1,2,2,1],[2,0,1,2],[0,3,3,3],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[0,3,4,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[0,4,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,3],[0,3,3,2],[1,2,1,0]],[[0,3,1,0],[2,3,2,2],[2,2,3,1],[0,1,1,1]],[[0,2,1,0],[3,3,2,2],[2,2,3,1],[0,1,1,1]],[[0,2,1,0],[2,4,2,2],[2,2,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,2,2],[3,2,3,1],[0,1,1,1]],[[0,3,1,0],[2,3,2,2],[2,2,3,1],[0,1,2,0]],[[0,2,1,0],[3,3,2,2],[2,2,3,1],[0,1,2,0]],[[0,2,1,0],[2,4,2,2],[2,2,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,2,2],[3,2,3,1],[0,1,2,0]],[[0,3,1,0],[2,3,2,2],[2,2,3,1],[0,2,0,1]],[[0,2,1,0],[3,3,2,2],[2,2,3,1],[0,2,0,1]],[[0,2,1,0],[2,4,2,2],[2,2,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,2,2],[3,2,3,1],[0,2,0,1]],[[0,3,1,0],[2,3,2,2],[2,2,3,1],[0,2,1,0]],[[0,2,1,0],[3,3,2,2],[2,2,3,1],[0,2,1,0]],[[0,2,1,0],[2,4,2,2],[2,2,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,2,2],[3,2,3,1],[0,2,1,0]],[[1,2,2,1],[3,0,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,2,2],[2,0,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,3,1],[2,0,1,2],[0,3,3,2],[1,2,1,0]],[[1,3,2,1],[2,0,1,2],[0,3,3,2],[1,2,1,0]],[[2,2,2,1],[2,0,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,2],[0,3,3,2],[1,2,0,2]],[[1,2,2,1],[2,0,1,2],[0,3,3,2],[1,3,0,1]],[[1,2,2,1],[2,0,1,2],[0,3,3,2],[2,2,0,1]],[[0,3,1,0],[2,3,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,1,0],[3,3,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,1,0],[2,4,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,2,2],[3,2,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,2,2],[2,2,3,1],[2,0,1,1]],[[0,3,1,0],[2,3,2,2],[2,2,3,1],[1,0,2,0]],[[0,2,1,0],[3,3,2,2],[2,2,3,1],[1,0,2,0]],[[0,2,1,0],[2,4,2,2],[2,2,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,2,2],[3,2,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,2,2],[2,2,3,1],[2,0,2,0]],[[0,3,1,0],[2,3,2,2],[2,2,3,1],[1,1,0,1]],[[0,2,1,0],[3,3,2,2],[2,2,3,1],[1,1,0,1]],[[0,2,1,0],[2,4,2,2],[2,2,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,2,2],[3,2,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,2,2],[2,2,3,1],[2,1,0,1]],[[0,3,1,0],[2,3,2,2],[2,2,3,1],[1,1,1,0]],[[0,2,1,0],[3,3,2,2],[2,2,3,1],[1,1,1,0]],[[0,2,1,0],[2,4,2,2],[2,2,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,2,2],[3,2,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,2,2],[2,2,3,1],[2,1,1,0]],[[1,2,2,1],[2,0,1,2],[0,3,3,3],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[0,3,4,2],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[0,4,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,1,3],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[3,0,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,2,2],[2,0,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,3,1],[2,0,1,2],[0,3,3,2],[1,2,0,1]],[[1,3,2,1],[2,0,1,2],[0,3,3,2],[1,2,0,1]],[[0,3,1,0],[2,3,2,2],[2,2,3,1],[1,2,0,0]],[[0,2,1,0],[3,3,2,2],[2,2,3,1],[1,2,0,0]],[[0,2,1,0],[2,4,2,2],[2,2,3,1],[1,2,0,0]],[[0,2,1,0],[2,3,2,2],[3,2,3,1],[1,2,0,0]],[[0,2,1,0],[2,3,2,2],[2,2,3,1],[2,2,0,0]],[[2,2,2,1],[2,0,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,1,2],[0,3,3,2],[1,1,3,0]],[[1,2,2,1],[2,0,1,2],[0,3,3,3],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[0,3,4,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[0,4,3,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,3],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[3,0,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[2,0,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[2,0,1,2],[0,3,3,2],[1,1,2,0]],[[1,3,2,1],[2,0,1,2],[0,3,3,2],[1,1,2,0]],[[2,2,2,1],[2,0,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,2],[0,3,3,2],[1,1,1,2]],[[1,2,2,1],[2,0,1,2],[0,3,3,3],[1,1,1,1]],[[1,2,2,1],[2,0,1,2],[0,3,4,2],[1,1,1,1]],[[1,2,2,1],[2,0,1,2],[0,4,3,2],[1,1,1,1]],[[1,2,2,1],[2,0,1,3],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[3,0,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[2,0,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[2,0,1,2],[0,3,3,2],[1,1,1,1]],[[1,3,2,1],[2,0,1,2],[0,3,3,2],[1,1,1,1]],[[2,2,2,1],[2,0,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[2,0,1,2],[0,3,3,2],[1,0,2,2]],[[1,2,2,1],[2,0,1,2],[0,3,3,3],[1,0,2,1]],[[1,2,2,1],[2,0,1,2],[0,3,4,2],[1,0,2,1]],[[1,2,2,1],[2,0,1,3],[0,3,3,2],[1,0,2,1]],[[1,2,2,2],[2,0,1,2],[0,3,3,2],[1,0,2,1]],[[1,2,3,1],[2,0,1,2],[0,3,3,2],[1,0,2,1]],[[1,3,2,1],[2,0,1,2],[0,3,3,2],[1,0,2,1]],[[2,2,2,1],[2,0,1,2],[0,3,3,2],[1,0,2,1]],[[1,2,2,1],[2,0,1,2],[0,3,3,1],[1,3,1,1]],[[1,2,2,1],[2,0,1,2],[0,3,3,1],[2,2,1,1]],[[1,2,2,1],[2,0,1,2],[0,3,4,1],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[0,4,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[0,3,3,1],[1,1,2,2]],[[1,2,2,1],[2,0,1,2],[0,3,3,1],[1,1,3,1]],[[1,2,2,1],[2,0,1,2],[0,3,4,1],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[0,4,3,1],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[0,3,2,2],[1,2,3,0]],[[1,2,2,1],[2,0,1,2],[0,3,2,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,2],[0,3,2,2],[2,2,2,0]],[[1,2,2,1],[2,0,1,2],[0,4,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[0,3,2,2],[1,1,2,2]],[[1,2,2,1],[2,0,1,2],[0,3,2,2],[1,1,3,1]],[[1,2,2,1],[2,0,1,2],[0,3,2,3],[1,1,2,1]],[[1,2,2,1],[2,0,1,3],[0,3,2,2],[1,1,2,1]],[[1,2,2,1],[3,0,1,2],[0,3,2,2],[1,1,2,1]],[[1,2,2,2],[2,0,1,2],[0,3,2,2],[1,1,2,1]],[[1,2,3,1],[2,0,1,2],[0,3,2,2],[1,1,2,1]],[[1,3,2,1],[2,0,1,2],[0,3,2,2],[1,1,2,1]],[[2,2,2,1],[2,0,1,2],[0,3,2,2],[1,1,2,1]],[[1,2,2,1],[2,0,1,2],[0,3,2,1],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[0,3,2,1],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[0,3,2,1],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[0,3,2,1],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[0,4,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[0,3,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[0,3,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[0,3,1,2],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[0,3,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[0,3,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[0,4,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,1,3],[0,3,1,2],[1,2,2,1]],[[1,2,2,1],[3,0,1,2],[0,3,1,2],[1,2,2,1]],[[1,2,2,2],[2,0,1,2],[0,3,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,1,2],[0,3,1,2],[1,2,2,1]],[[1,3,2,1],[2,0,1,2],[0,3,1,2],[1,2,2,1]],[[2,2,2,1],[2,0,1,2],[0,3,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[0,2,3,2],[1,2,3,0]],[[1,2,2,1],[2,0,1,2],[0,2,3,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,2],[0,2,3,2],[2,2,2,0]],[[1,2,2,1],[2,0,1,2],[0,2,3,3],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[0,2,4,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,3],[0,2,3,2],[1,2,2,0]],[[1,2,2,1],[3,0,1,2],[0,2,3,2],[1,2,2,0]],[[1,2,2,2],[2,0,1,2],[0,2,3,2],[1,2,2,0]],[[1,2,3,1],[2,0,1,2],[0,2,3,2],[1,2,2,0]],[[1,3,2,1],[2,0,1,2],[0,2,3,2],[1,2,2,0]],[[2,2,2,1],[2,0,1,2],[0,2,3,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,2],[0,2,3,2],[1,2,1,2]],[[1,2,2,1],[2,0,1,2],[0,2,3,3],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[0,2,4,2],[1,2,1,1]],[[1,2,2,1],[2,0,1,3],[0,2,3,2],[1,2,1,1]],[[1,2,2,1],[3,0,1,2],[0,2,3,2],[1,2,1,1]],[[1,2,2,2],[2,0,1,2],[0,2,3,2],[1,2,1,1]],[[1,2,3,1],[2,0,1,2],[0,2,3,2],[1,2,1,1]],[[1,3,2,1],[2,0,1,2],[0,2,3,2],[1,2,1,1]],[[2,2,2,1],[2,0,1,2],[0,2,3,2],[1,2,1,1]],[[1,2,2,1],[2,0,1,2],[0,2,3,1],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[0,2,3,1],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[0,2,3,1],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[0,2,3,1],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[0,2,4,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[0,2,2,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[0,2,2,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[0,2,2,2],[1,3,2,1]],[[1,2,2,1],[2,0,1,2],[0,2,2,2],[2,2,2,1]],[[1,2,2,1],[2,0,1,2],[0,2,2,3],[1,2,2,1]],[[1,2,2,1],[2,0,1,3],[0,2,2,2],[1,2,2,1]],[[1,2,2,1],[3,0,1,2],[0,2,2,2],[1,2,2,1]],[[1,2,2,2],[2,0,1,2],[0,2,2,2],[1,2,2,1]],[[1,2,3,1],[2,0,1,2],[0,2,2,2],[1,2,2,1]],[[1,3,2,1],[2,0,1,2],[0,2,2,2],[1,2,2,1]],[[2,2,2,1],[2,0,1,2],[0,2,2,2],[1,2,2,1]],[[1,2,2,1],[2,0,1,2],[0,1,3,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,2],[0,1,3,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,2],[0,1,3,3],[1,2,2,1]],[[0,2,1,0],[3,3,2,2],[2,3,0,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[3,3,0,0],[1,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,3,0,0],[2,2,2,1]],[[0,2,1,0],[2,3,2,2],[2,3,0,0],[1,3,2,1]],[[0,2,1,0],[3,3,2,2],[2,3,0,1],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[3,3,0,1],[1,2,2,0]],[[0,2,1,0],[2,3,2,2],[2,3,0,1],[2,2,2,0]],[[0,2,1,0],[2,3,2,2],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[2,0,1,3],[0,1,3,2],[1,2,2,1]],[[1,2,2,2],[2,0,1,2],[0,1,3,2],[1,2,2,1]],[[1,2,3,1],[2,0,1,2],[0,1,3,2],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,1,1],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,0,1,1],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[3,0,1,1],[2,3,3,2],[1,2,0,0]],[[1,2,2,2],[2,0,1,1],[2,3,3,2],[1,2,0,0]],[[1,2,3,1],[2,0,1,1],[2,3,3,2],[1,2,0,0]],[[1,3,2,1],[2,0,1,1],[2,3,3,2],[1,2,0,0]],[[2,2,2,1],[2,0,1,1],[2,3,3,2],[1,2,0,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[2,0,1,1],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,1],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,1],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[3,0,1,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[2,0,1,1],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[2,0,1,1],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[2,0,1,1],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[2,0,1,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[2,0,1,1],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[2,0,1,1],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[2,0,1,1],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[3,0,1,1],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[2,0,1,1],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[2,0,1,1],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[2,0,1,1],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[2,0,1,1],[2,3,3,2],[1,1,0,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[2,0,1,1],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,1],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,1],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[3,0,1,1],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[2,0,1,1],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[2,0,1,1],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[2,0,1,1],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[2,0,1,1],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[1,0,1,2]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[2,0,1,1],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[2,0,1,1],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[3,0,1,1],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[2,0,1,1],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[2,0,1,1],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[2,0,1,1],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[2,0,1,1],[2,3,3,2],[1,0,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,0,1,1],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,1],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,1],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[3,0,1,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[2,0,1,1],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[2,0,1,1],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[2,0,1,1],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[2,0,1,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[2,0,1,1],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[2,0,1,1],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[2,0,1,1],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[3,0,1,1],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[2,0,1,1],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[2,0,1,1],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[2,0,1,1],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[2,0,1,1],[2,3,3,2],[0,2,0,1]],[[0,3,1,0],[2,3,2,2],[2,3,3,0],[1,0,1,1]],[[0,2,1,0],[3,3,2,2],[2,3,3,0],[1,0,1,1]],[[0,2,1,0],[2,4,2,2],[2,3,3,0],[1,0,1,1]],[[0,2,1,0],[2,3,2,2],[3,3,3,0],[1,0,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[0,1,3,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[2,0,1,1],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[2,0,1,1],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,1,1],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[3,0,1,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[2,0,1,1],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[2,0,1,1],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[2,0,1,1],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[2,0,1,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[2,0,1,1],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[2,0,1,1],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,1,1],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[3,0,1,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[2,0,1,1],[2,3,3,2],[0,1,1,1]],[[1,2,3,1],[2,0,1,1],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[2,0,1,1],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[2,0,1,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[2,0,1,1],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,4,2],[0,0,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,1],[2,2,1,0]],[[1,2,2,1],[2,0,1,1],[3,3,3,1],[1,2,1,0]],[[0,3,1,0],[2,3,2,2],[2,3,3,1],[1,0,0,1]],[[0,2,1,0],[3,3,2,2],[2,3,3,1],[1,0,0,1]],[[0,2,1,0],[2,4,2,2],[2,3,3,1],[1,0,0,1]],[[0,2,1,0],[2,3,2,2],[3,3,3,1],[1,0,0,1]],[[0,3,1,0],[2,3,2,2],[2,3,3,1],[1,0,1,0]],[[0,2,1,0],[3,3,2,2],[2,3,3,1],[1,0,1,0]],[[0,2,1,0],[2,4,2,2],[2,3,3,1],[1,0,1,0]],[[0,2,1,0],[2,3,2,2],[3,3,3,1],[1,0,1,0]],[[1,2,2,1],[2,0,1,1],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[2,0,1,1],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,1,1],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[3,0,1,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,2],[2,0,1,1],[2,3,3,1],[1,1,1,1]],[[1,2,3,1],[2,0,1,1],[2,3,3,1],[1,1,1,1]],[[1,3,2,1],[2,0,1,1],[2,3,3,1],[1,1,1,1]],[[2,2,2,1],[2,0,1,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[2,0,1,1],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[2,0,1,1],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[2,0,1,1],[3,3,3,1],[1,0,2,1]],[[1,2,2,1],[3,0,1,1],[2,3,3,1],[1,0,2,1]],[[1,2,2,2],[2,0,1,1],[2,3,3,1],[1,0,2,1]],[[1,2,3,1],[2,0,1,1],[2,3,3,1],[1,0,2,1]],[[1,3,2,1],[2,0,1,1],[2,3,3,1],[1,0,2,1]],[[2,2,2,1],[2,0,1,1],[2,3,3,1],[1,0,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[2,0,1,1],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,1,1],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[3,0,1,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,2],[2,0,1,1],[2,3,3,1],[0,2,1,1]],[[1,2,3,1],[2,0,1,1],[2,3,3,1],[0,2,1,1]],[[1,3,2,1],[2,0,1,1],[2,3,3,1],[0,2,1,1]],[[2,2,2,1],[2,0,1,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[2,0,1,1],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[2,0,1,1],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[2,0,1,1],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[2,0,1,1],[3,3,3,1],[0,1,2,1]],[[1,2,2,1],[3,0,1,1],[2,3,3,1],[0,1,2,1]],[[1,2,2,2],[2,0,1,1],[2,3,3,1],[0,1,2,1]],[[1,2,3,1],[2,0,1,1],[2,3,3,1],[0,1,2,1]],[[1,3,2,1],[2,0,1,1],[2,3,3,1],[0,1,2,1]],[[2,2,2,1],[2,0,1,1],[2,3,3,1],[0,1,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,0],[1,3,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,3,0],[2,2,1,1]],[[1,2,2,1],[2,0,1,1],[3,3,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,1,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,1,1],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,1],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[3,0,1,1],[2,3,2,2],[1,1,2,0]],[[1,2,2,2],[2,0,1,1],[2,3,2,2],[1,1,2,0]],[[1,2,3,1],[2,0,1,1],[2,3,2,2],[1,1,2,0]],[[1,3,2,1],[2,0,1,1],[2,3,2,2],[1,1,2,0]],[[2,2,2,1],[2,0,1,1],[2,3,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,1],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[2,0,1,1],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[2,0,1,1],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[2,0,1,1],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[2,0,1,1],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,1],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[3,0,1,1],[2,3,2,2],[0,2,2,0]],[[1,2,2,2],[2,0,1,1],[2,3,2,2],[0,2,2,0]],[[1,2,3,1],[2,0,1,1],[2,3,2,2],[0,2,2,0]],[[1,3,2,1],[2,0,1,1],[2,3,2,2],[0,2,2,0]],[[2,2,2,1],[2,0,1,1],[2,3,2,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,1],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[2,0,1,1],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[2,0,1,1],[2,3,2,3],[0,1,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,2,1],[1,3,2,0]],[[1,2,2,1],[2,0,1,1],[2,3,2,1],[2,2,2,0]],[[1,2,2,1],[2,0,1,1],[3,3,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,1,1],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[2,0,1,1],[2,4,2,1],[1,1,2,1]],[[1,2,2,1],[2,0,1,1],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[3,0,1,1],[2,3,2,1],[1,1,2,1]],[[1,2,2,2],[2,0,1,1],[2,3,2,1],[1,1,2,1]],[[1,2,3,1],[2,0,1,1],[2,3,2,1],[1,1,2,1]],[[1,3,2,1],[2,0,1,1],[2,3,2,1],[1,1,2,1]],[[2,2,2,1],[2,0,1,1],[2,3,2,1],[1,1,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[2,0,1,1],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[2,0,1,1],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[2,0,1,1],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[2,0,1,1],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[3,0,1,1],[2,3,2,1],[0,2,2,1]],[[1,2,2,2],[2,0,1,1],[2,3,2,1],[0,2,2,1]],[[1,2,3,1],[2,0,1,1],[2,3,2,1],[0,2,2,1]],[[1,3,2,1],[2,0,1,1],[2,3,2,1],[0,2,2,1]],[[2,2,2,1],[2,0,1,1],[2,3,2,1],[0,2,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,2,0],[1,2,3,1]],[[1,2,2,1],[2,0,1,1],[2,3,2,0],[1,3,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,2,0],[2,2,2,1]],[[1,2,2,1],[2,0,1,1],[3,3,2,0],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[2,0,1,1],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,1,1],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[3,0,1,1],[2,3,1,2],[1,1,2,1]],[[1,2,2,2],[2,0,1,1],[2,3,1,2],[1,1,2,1]],[[1,2,3,1],[2,0,1,1],[2,3,1,2],[1,1,2,1]],[[1,3,2,1],[2,0,1,1],[2,3,1,2],[1,1,2,1]],[[2,2,2,1],[2,0,1,1],[2,3,1,2],[1,1,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[2,0,1,1],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[2,0,1,1],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[2,0,1,1],[2,3,1,3],[0,2,2,1]],[[1,2,2,1],[2,0,1,1],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,1,1],[3,3,1,2],[0,2,2,1]],[[1,2,2,1],[3,0,1,1],[2,3,1,2],[0,2,2,1]],[[1,2,2,2],[2,0,1,1],[2,3,1,2],[0,2,2,1]],[[1,2,3,1],[2,0,1,1],[2,3,1,2],[0,2,2,1]],[[1,3,2,1],[2,0,1,1],[2,3,1,2],[0,2,2,1]],[[2,2,2,1],[2,0,1,1],[2,3,1,2],[0,2,2,1]],[[1,2,2,1],[2,0,1,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,1],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[2,0,1,1],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[3,0,1,1],[2,2,3,2],[1,2,1,0]],[[1,2,2,2],[2,0,1,1],[2,2,3,2],[1,2,1,0]],[[1,2,3,1],[2,0,1,1],[2,2,3,2],[1,2,1,0]],[[1,3,2,1],[2,0,1,1],[2,2,3,2],[1,2,1,0]],[[2,2,2,1],[2,0,1,1],[2,2,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,1],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[2,0,1,1],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[2,0,1,1],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[3,0,1,1],[2,2,3,2],[1,2,0,1]],[[1,2,2,2],[2,0,1,1],[2,2,3,2],[1,2,0,1]],[[1,2,3,1],[2,0,1,1],[2,2,3,2],[1,2,0,1]],[[1,3,2,1],[2,0,1,1],[2,2,3,2],[1,2,0,1]],[[2,2,2,1],[2,0,1,1],[2,2,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,1,1],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,1,1],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[2,0,1,1],[2,2,3,3],[0,2,2,0]],[[1,2,2,1],[2,0,1,1],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[2,0,1,1],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[2,0,1,1],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[2,0,1,1],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[2,0,1,1],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[2,0,1,1],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[2,0,1,1],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[3,0,1,1],[2,2,3,1],[1,2,1,1]],[[1,2,2,2],[2,0,1,1],[2,2,3,1],[1,2,1,1]],[[1,2,3,1],[2,0,1,1],[2,2,3,1],[1,2,1,1]],[[1,3,2,1],[2,0,1,1],[2,2,3,1],[1,2,1,1]],[[2,2,2,1],[2,0,1,1],[2,2,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,1,1],[2,2,3,1],[0,2,2,2]],[[1,2,2,1],[2,0,1,1],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[2,0,1,1],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[2,0,1,1],[2,2,4,1],[0,2,2,1]],[[1,2,2,1],[2,0,1,1],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[2,0,1,1],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,1],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[2,0,1,1],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[3,0,1,1],[2,2,2,2],[1,2,2,0]],[[1,2,2,2],[2,0,1,1],[2,2,2,2],[1,2,2,0]],[[1,2,3,1],[2,0,1,1],[2,2,2,2],[1,2,2,0]],[[1,3,2,1],[2,0,1,1],[2,2,2,2],[1,2,2,0]],[[2,2,2,1],[2,0,1,1],[2,2,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,1],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[2,0,1,1],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[2,0,1,1],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[2,0,1,1],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[2,0,1,1],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[2,0,1,1],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[2,0,1,1],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[2,0,1,1],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[2,0,1,1],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[3,0,1,1],[2,2,2,1],[1,2,2,1]],[[1,2,2,2],[2,0,1,1],[2,2,2,1],[1,2,2,1]],[[1,2,3,1],[2,0,1,1],[2,2,2,1],[1,2,2,1]],[[1,3,2,1],[2,0,1,1],[2,2,2,1],[1,2,2,1]],[[2,2,2,1],[2,0,1,1],[2,2,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,1],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,1],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[2,0,1,1],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,1,1],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[3,0,1,1],[2,2,1,2],[1,2,2,1]],[[1,2,2,2],[2,0,1,1],[2,2,1,2],[1,2,2,1]],[[1,2,3,1],[2,0,1,1],[2,2,1,2],[1,2,2,1]],[[1,3,2,1],[2,0,1,1],[2,2,1,2],[1,2,2,1]],[[2,2,2,1],[2,0,1,1],[2,2,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[0,1,4,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[0,1,3,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,0],[0,1,3,2],[1,3,2,1]],[[0,2,1,0],[2,3,3,0],[0,1,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,0],[0,1,3,2],[1,2,2,2]],[[0,2,1,0],[2,3,3,0],[0,2,4,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[0,2,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,0],[0,2,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,0],[0,2,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,0],[0,2,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,3,0],[0,2,4,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,0],[0,2,3,2],[1,1,3,1]],[[0,2,1,0],[2,3,3,0],[0,2,3,2],[1,1,2,2]],[[0,2,1,0],[2,3,3,0],[0,2,4,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,0],[0,2,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,0],[0,2,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,0],[0,2,3,2],[1,2,3,0]],[[0,3,1,0],[2,3,3,0],[0,3,2,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,0],[0,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,0],[0,3,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[0,4,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[0,3,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,0],[0,3,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,0],[0,3,2,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,0],[0,3,2,1],[1,2,2,2]],[[0,3,1,0],[2,3,3,0],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,0],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,0],[0,3,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,0],[0,4,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,0],[0,3,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,0],[0,3,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,0],[0,3,2,2],[1,2,3,0]],[[0,3,1,0],[2,3,3,0],[0,3,3,0],[1,2,2,1]],[[0,2,1,0],[3,3,3,0],[0,3,3,0],[1,2,2,1]],[[0,2,1,0],[2,4,3,0],[0,3,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[0,4,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[0,3,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,3,0],[0,3,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,3,0],[0,3,3,0],[1,2,3,1]],[[0,3,1,0],[2,3,3,0],[0,3,3,1],[1,1,2,1]],[[0,2,1,0],[3,3,3,0],[0,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,4,3,0],[0,3,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,0],[0,4,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,0],[0,3,4,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,0],[0,3,3,1],[1,1,3,1]],[[0,2,1,0],[2,3,3,0],[0,3,3,1],[1,1,2,2]],[[0,3,1,0],[2,3,3,0],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[3,3,3,0],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,4,3,0],[0,3,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,0],[0,4,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,0],[0,3,4,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,0],[0,3,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,3,0],[0,3,3,1],[1,3,1,1]],[[0,2,1,0],[2,3,3,0],[0,3,4,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,0],[0,3,3,2],[0,1,3,1]],[[0,2,1,0],[2,3,3,0],[0,3,3,2],[0,1,2,2]],[[0,3,1,0],[2,3,3,0],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[3,3,3,0],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,4,3,0],[0,3,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,0],[0,4,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,0],[0,3,4,2],[1,1,1,1]],[[0,3,1,0],[2,3,3,0],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,0],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,0],[0,3,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,0],[0,4,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,0],[0,3,4,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,0],[0,3,3,2],[1,1,3,0]],[[0,3,1,0],[2,3,3,0],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[3,3,3,0],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,4,3,0],[0,3,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,0],[0,4,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,0],[0,3,4,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,0],[0,3,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,3,0],[0,3,3,2],[1,3,0,1]],[[0,3,1,0],[2,3,3,0],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[3,3,3,0],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,4,3,0],[0,3,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,0],[0,4,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,0],[0,3,4,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,0],[0,3,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,3,0],[0,3,3,2],[1,3,1,0]],[[0,2,1,0],[2,3,3,0],[1,0,4,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[1,0,3,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,0],[1,0,3,2],[1,3,2,1]],[[0,2,1,0],[2,3,3,0],[1,0,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,0],[1,0,3,2],[1,2,2,2]],[[0,2,1,0],[2,3,3,0],[1,1,4,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,0],[1,1,3,2],[0,3,2,1]],[[0,2,1,0],[2,3,3,0],[1,1,3,2],[0,2,3,1]],[[0,2,1,0],[2,3,3,0],[1,1,3,2],[0,2,2,2]],[[0,2,1,0],[2,3,3,0],[1,2,4,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,0],[1,2,3,1],[0,3,2,1]],[[0,2,1,0],[2,3,3,0],[1,2,3,1],[0,2,3,1]],[[0,2,1,0],[2,3,3,0],[1,2,3,1],[0,2,2,2]],[[0,2,1,0],[2,3,3,0],[1,2,4,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,0],[1,2,3,2],[0,1,3,1]],[[0,2,1,0],[2,3,3,0],[1,2,3,2],[0,1,2,2]],[[0,2,1,0],[2,3,3,0],[1,2,4,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,0],[1,2,3,2],[0,3,2,0]],[[0,2,1,0],[2,3,3,0],[1,2,3,2],[0,2,3,0]],[[0,2,1,0],[2,3,3,0],[1,2,4,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,0],[1,2,3,2],[1,0,3,1]],[[0,2,1,0],[2,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,2,1],[2,0,1,1],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[2,0,1,1],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,1],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[2,0,1,1],[2,1,3,3],[1,2,2,0]],[[0,3,1,0],[2,3,3,0],[1,3,2,1],[0,2,2,1]],[[0,2,1,0],[3,3,3,0],[1,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,4,3,0],[1,3,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,0],[1,4,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,0],[1,3,2,1],[0,3,2,1]],[[0,2,1,0],[2,3,3,0],[1,3,2,1],[0,2,3,1]],[[0,2,1,0],[2,3,3,0],[1,3,2,1],[0,2,2,2]],[[0,3,1,0],[2,3,3,0],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[3,3,3,0],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,4,3,0],[1,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,0],[1,4,2,1],[1,1,2,1]],[[0,3,1,0],[2,3,3,0],[1,3,2,2],[0,2,2,0]],[[0,2,1,0],[3,3,3,0],[1,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,4,3,0],[1,3,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,0],[1,4,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,0],[1,3,2,2],[0,3,2,0]],[[0,2,1,0],[2,3,3,0],[1,3,2,2],[0,2,3,0]],[[0,3,1,0],[2,3,3,0],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,0],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,0],[1,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,0],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,1],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,1],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[3,0,1,1],[2,1,3,2],[1,2,2,0]],[[1,2,2,2],[2,0,1,1],[2,1,3,2],[1,2,2,0]],[[1,2,3,1],[2,0,1,1],[2,1,3,2],[1,2,2,0]],[[1,3,2,1],[2,0,1,1],[2,1,3,2],[1,2,2,0]],[[2,2,2,1],[2,0,1,1],[2,1,3,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,1],[2,1,3,2],[1,2,1,2]],[[0,3,1,0],[2,3,3,0],[1,3,3,0],[0,2,2,1]],[[0,2,1,0],[3,3,3,0],[1,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,4,3,0],[1,3,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,0],[1,4,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,0],[1,3,3,0],[0,3,2,1]],[[0,2,1,0],[2,3,3,0],[1,3,3,0],[0,2,3,1]],[[0,3,1,0],[2,3,3,0],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[3,3,3,0],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,4,3,0],[1,3,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,0],[1,4,3,0],[1,1,2,1]],[[0,3,1,0],[2,3,3,0],[1,3,3,1],[0,1,2,1]],[[0,2,1,0],[3,3,3,0],[1,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,4,3,0],[1,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,0],[1,4,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,0],[1,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,0],[1,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,3,3,0],[1,3,3,1],[0,1,2,2]],[[0,3,1,0],[2,3,3,0],[1,3,3,1],[0,2,1,1]],[[0,2,1,0],[3,3,3,0],[1,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,4,3,0],[1,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,0],[1,4,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,0],[1,3,4,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,0],[1,3,3,1],[0,3,1,1]],[[0,3,1,0],[2,3,3,0],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[3,3,3,0],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,4,3,0],[1,3,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,0],[1,4,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,0],[1,3,4,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,0],[1,3,3,1],[1,0,3,1]],[[0,2,1,0],[2,3,3,0],[1,3,3,1],[1,0,2,2]],[[0,3,1,0],[2,3,3,0],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[3,3,3,0],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,4,3,0],[1,3,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,0],[1,4,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,0],[1,3,4,1],[1,1,1,1]],[[0,3,1,0],[2,3,3,0],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[3,3,3,0],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,4,3,0],[1,3,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,0],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,1,1],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[2,0,1,1],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[2,0,1,1],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[2,0,1,1],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[2,0,1,1],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[2,0,1,1],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[2,0,1,1],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[3,0,1,1],[2,1,3,1],[1,2,2,1]],[[0,3,1,0],[2,3,3,0],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[3,3,3,0],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,0],[1,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,0],[1,4,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,0],[1,3,4,2],[0,1,1,1]],[[0,3,1,0],[2,3,3,0],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[3,3,3,0],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,0],[1,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,0],[1,4,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,0],[1,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,0],[1,3,3,2],[0,1,3,0]],[[0,3,1,0],[2,3,3,0],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,0],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,0],[1,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,0],[1,4,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,0],[1,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,0],[1,3,3,2],[0,3,0,1]],[[0,3,1,0],[2,3,3,0],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,0],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,0],[1,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,0],[1,4,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,0],[1,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,0],[1,3,3,2],[0,3,1,0]],[[1,2,2,2],[2,0,1,1],[2,1,3,1],[1,2,2,1]],[[1,2,3,1],[2,0,1,1],[2,1,3,1],[1,2,2,1]],[[1,3,2,1],[2,0,1,1],[2,1,3,1],[1,2,2,1]],[[2,2,2,1],[2,0,1,1],[2,1,3,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,1],[2,1,2,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,1],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[2,0,1,1],[2,1,2,2],[2,2,2,1]],[[0,3,1,0],[2,3,3,0],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[3,3,3,0],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,4,3,0],[1,3,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,0],[1,4,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,0],[1,3,4,2],[1,0,1,1]],[[0,3,1,0],[2,3,3,0],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[3,3,3,0],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,4,3,0],[1,3,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,0],[1,4,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,0],[1,3,4,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,0],[1,3,3,2],[1,0,3,0]],[[0,3,1,0],[2,3,3,0],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,0],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,0],[1,3,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,0],[1,4,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,0],[1,3,4,2],[1,1,0,1]],[[0,3,1,0],[2,3,3,0],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,0],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,0],[1,3,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,0],[1,4,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,0],[1,3,4,2],[1,1,1,0]],[[1,2,2,1],[2,0,1,1],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[3,0,1,1],[2,1,2,2],[1,2,2,1]],[[1,2,2,2],[2,0,1,1],[2,1,2,2],[1,2,2,1]],[[1,2,3,1],[2,0,1,1],[2,1,2,2],[1,2,2,1]],[[1,3,2,1],[2,0,1,1],[2,1,2,2],[1,2,2,1]],[[2,2,2,1],[2,0,1,1],[2,1,2,2],[1,2,2,1]],[[0,3,1,0],[2,3,3,0],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[3,3,3,0],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,4,3,0],[1,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,0],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,0,1,1],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,1],[2,0,3,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,1],[2,0,3,3],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,1],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[2,0,1,1],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[2,0,1,1],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,1],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,1],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[2,0,1,1],[1,3,3,2],[1,3,0,1]],[[1,2,2,1],[2,0,1,1],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[2,0,1,1],[1,3,3,3],[1,2,0,1]],[[0,3,1,0],[2,3,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[3,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,0,4,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,0,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,0,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,0],[2,0,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,0],[2,0,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,3,0],[2,0,4,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,0,3,2],[0,3,2,1]],[[0,2,1,0],[2,3,3,0],[2,0,3,2],[0,2,3,1]],[[0,2,1,0],[2,3,3,0],[2,0,3,2],[0,2,2,2]],[[0,2,1,0],[2,3,3,0],[2,0,4,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,0],[2,0,3,2],[1,1,3,1]],[[0,2,1,0],[2,3,3,0],[2,0,3,2],[1,1,2,2]],[[0,3,1,0],[2,3,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,0],[3,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,0],[2,0,4,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,0],[2,0,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,0],[2,0,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,0],[2,0,3,2],[1,2,3,0]],[[0,3,1,0],[2,3,3,0],[2,1,2,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,0],[2,1,2,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,0],[2,1,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[3,1,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,1,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,1,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,0],[2,1,2,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,0],[2,1,2,1],[1,2,2,2]],[[0,3,1,0],[2,3,3,0],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,0],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,0],[2,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,0],[3,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,0],[2,1,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,0],[2,1,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,0],[2,1,2,2],[1,2,3,0]],[[0,3,1,0],[2,3,3,0],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[3,3,3,0],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,4,3,0],[2,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[3,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,1,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,1,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,3,0],[2,1,3,0],[1,2,3,1]],[[0,3,1,0],[2,3,3,0],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[3,3,3,0],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,4,3,0],[2,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,0],[3,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,0],[2,1,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,3,0],[2,1,3,1],[1,3,1,1]],[[0,2,1,0],[2,3,3,0],[2,1,4,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,0],[2,1,3,2],[0,1,3,1]],[[0,2,1,0],[2,3,3,0],[2,1,3,2],[0,1,2,2]],[[0,2,1,0],[2,3,3,0],[2,1,4,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,0],[2,1,3,2],[1,0,3,1]],[[0,2,1,0],[2,3,3,0],[2,1,3,2],[1,0,2,2]],[[0,3,1,0],[2,3,3,0],[2,1,3,2],[1,2,0,1]],[[0,2,1,0],[3,3,3,0],[2,1,3,2],[1,2,0,1]],[[0,2,1,0],[2,4,3,0],[2,1,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,0],[3,1,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,0],[2,1,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,3,0],[2,1,3,2],[1,3,0,1]],[[0,3,1,0],[2,3,3,0],[2,1,3,2],[1,2,1,0]],[[0,2,1,0],[3,3,3,0],[2,1,3,2],[1,2,1,0]],[[0,2,1,0],[2,4,3,0],[2,1,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,0],[3,1,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,0],[2,1,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,3,0],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,1],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[2,0,1,1],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,1,1],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[2,0,1,1],[1,3,3,3],[1,1,2,0]],[[0,3,1,0],[2,3,3,0],[2,2,2,1],[0,2,2,1]],[[0,2,1,0],[3,3,3,0],[2,2,2,1],[0,2,2,1]],[[0,2,1,0],[2,4,3,0],[2,2,2,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,0],[3,2,2,1],[0,2,2,1]],[[0,3,1,0],[2,3,3,0],[2,2,2,1],[1,1,2,1]],[[0,2,1,0],[3,3,3,0],[2,2,2,1],[1,1,2,1]],[[0,2,1,0],[2,4,3,0],[2,2,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,0],[3,2,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,0],[2,2,2,1],[2,1,2,1]],[[0,3,1,0],[2,3,3,0],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[3,3,3,0],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[2,4,3,0],[2,2,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,0],[3,2,2,2],[0,2,2,0]],[[0,3,1,0],[2,3,3,0],[2,2,2,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,0],[2,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,0],[2,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,0],[3,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,0],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[2,0,1,1],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,1],[1,4,3,2],[1,1,2,0]],[[1,2,2,1],[2,0,1,1],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[2,0,1,1],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[2,0,1,1],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[2,0,1,1],[1,4,3,2],[1,1,1,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[3,3,3,0],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[2,4,3,0],[2,2,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,0],[3,2,3,0],[0,2,2,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,0],[1,1,2,1]],[[0,2,1,0],[3,3,3,0],[2,2,3,0],[1,1,2,1]],[[0,2,1,0],[2,4,3,0],[2,2,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,0],[3,2,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,0],[2,2,3,0],[2,1,2,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[3,3,3,0],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[2,4,3,0],[2,2,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,0],[3,2,3,1],[0,1,2,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[3,3,3,0],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,4,3,0],[2,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,0],[3,2,3,1],[0,2,1,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[3,3,3,0],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,4,3,0],[2,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,0],[3,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,0],[2,2,3,1],[2,0,2,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[3,3,3,0],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,4,3,0],[2,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,0],[3,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,0],[2,2,3,1],[2,1,1,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,1],[1,2,0,1]],[[0,2,1,0],[3,3,3,0],[2,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,4,3,0],[2,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,0],[3,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,0],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,1,1],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[2,0,1,1],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[2,0,1,1],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[2,0,1,1],[1,4,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,1,1],[1,3,3,1],[1,1,2,2]],[[0,3,1,0],[2,3,3,0],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[3,3,3,0],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,0],[2,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,0],[3,2,3,2],[0,1,1,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[3,3,3,0],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,0],[2,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,0],[3,2,3,2],[0,1,2,0]],[[0,3,1,0],[2,3,3,0],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,0],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,0],[2,2,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,0],[3,2,3,2],[0,2,0,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,0],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,0],[2,2,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,0],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[2,0,1,1],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[2,0,1,1],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[2,0,1,1],[1,4,3,1],[1,1,2,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[3,3,3,0],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,4,3,0],[2,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,0],[3,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,0],[2,2,3,2],[2,0,1,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[3,3,3,0],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,4,3,0],[2,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,0],[3,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,0],[2,2,3,2],[2,0,2,0]],[[0,3,1,0],[2,3,3,0],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,0],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,0],[2,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,0],[3,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,0],[2,2,3,2],[2,1,0,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,0],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,0],[2,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,0],[3,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,0],[2,2,3,2],[2,1,1,0]],[[1,2,2,1],[2,0,1,1],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[2,0,1,1],[1,3,2,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,1],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[2,0,1,1],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,1],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[2,0,1,1],[1,3,2,2],[1,1,3,1]],[[1,2,2,1],[2,0,1,1],[1,3,2,3],[1,1,2,1]],[[0,3,1,0],[2,3,3,0],[2,2,3,2],[1,2,0,0]],[[0,2,1,0],[3,3,3,0],[2,2,3,2],[1,2,0,0]],[[0,2,1,0],[2,4,3,0],[2,2,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,0],[3,2,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,0],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[2,0,1,1],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[2,0,1,1],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[2,0,1,1],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[2,0,1,1],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[2,0,1,1],[1,4,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,1],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,1],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[2,0,1,1],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,1,1],[1,3,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[1,4,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[2,0,1,1],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,1],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[2,0,1,1],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[2,0,1,1],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,1],[1,2,3,2],[1,2,1,2]],[[0,2,1,0],[3,3,3,0],[2,3,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[3,3,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,3,0,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,3,0,1],[1,3,2,1]],[[0,2,1,0],[3,3,3,0],[2,3,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,0],[3,3,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,0],[2,3,0,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,0],[2,3,0,2],[1,3,2,0]],[[0,2,1,0],[3,3,3,0],[2,3,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[3,3,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,3,1,0],[2,2,2,1]],[[0,2,1,0],[2,3,3,0],[2,3,1,0],[1,3,2,1]],[[1,2,2,1],[2,0,1,1],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[2,0,1,1],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[2,0,1,1],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[2,0,1,1],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[2,0,1,1],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[2,0,1,1],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[2,0,1,1],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,1],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,1],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,1],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[2,0,1,1],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[2,0,1,1],[1,2,2,3],[1,2,2,1]],[[1,2,2,1],[2,0,1,0],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,1,0],[2,3,3,2],[2,2,1,0]],[[1,2,2,1],[2,0,1,0],[3,3,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,1,0],[2,3,3,2],[1,3,0,1]],[[1,2,2,1],[2,0,1,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,1],[2,0,1,0],[3,3,3,2],[1,2,0,1]],[[1,2,2,1],[2,0,1,0],[2,3,3,1],[1,3,1,1]],[[1,2,2,1],[2,0,1,0],[2,3,3,1],[2,2,1,1]],[[1,2,2,1],[2,0,1,0],[3,3,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,1,0],[2,3,3,0],[1,2,3,1]],[[1,2,2,1],[2,0,1,0],[2,3,3,0],[1,3,2,1]],[[1,2,2,1],[2,0,1,0],[2,3,3,0],[2,2,2,1]],[[1,2,2,1],[2,0,1,0],[3,3,3,0],[1,2,2,1]],[[1,2,2,1],[2,0,1,0],[2,3,2,2],[1,2,3,0]],[[1,2,2,1],[2,0,1,0],[2,3,2,2],[1,3,2,0]],[[1,2,2,1],[2,0,1,0],[2,3,2,2],[2,2,2,0]],[[1,2,2,1],[2,0,1,0],[3,3,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,1,0],[2,3,2,1],[1,2,2,2]],[[1,2,2,1],[2,0,1,0],[2,3,2,1],[1,2,3,1]],[[1,2,2,1],[2,0,1,0],[2,3,2,1],[1,3,2,1]],[[1,2,2,1],[2,0,1,0],[2,3,2,1],[2,2,2,1]],[[1,2,2,1],[2,0,1,0],[3,3,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,1,0],[2,3,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,1,0],[2,3,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,1,0],[2,3,1,2],[1,3,2,1]],[[1,2,2,1],[2,0,1,0],[2,3,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,1,0],[3,3,1,2],[1,2,2,1]],[[0,3,1,0],[2,3,3,0],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[3,3,3,0],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,4,3,0],[2,3,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,0],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[2,0,0,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[2,0,0,2],[2,3,3,1],[2,2,1,0]],[[1,2,2,1],[2,0,0,2],[3,3,3,1],[1,2,1,0]],[[1,2,2,1],[2,0,0,2],[2,3,3,1],[1,3,0,1]],[[1,2,2,1],[2,0,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[2,0,0,2],[3,3,3,1],[1,2,0,1]],[[1,2,2,1],[2,0,0,2],[2,3,3,0],[1,3,1,1]],[[1,2,2,1],[2,0,0,2],[2,3,3,0],[2,2,1,1]],[[1,2,2,1],[2,0,0,2],[3,3,3,0],[1,2,1,1]],[[1,2,2,1],[2,0,0,2],[2,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,0,2],[2,3,2,2],[2,2,1,0]],[[1,2,2,1],[2,0,0,2],[3,3,2,2],[1,2,1,0]],[[1,2,2,1],[2,0,0,2],[2,3,2,2],[1,3,0,1]],[[1,2,2,1],[2,0,0,2],[2,3,2,2],[2,2,0,1]],[[1,2,2,1],[2,0,0,2],[3,3,2,2],[1,2,0,1]],[[1,2,2,1],[2,0,0,2],[2,3,2,1],[1,2,3,0]],[[1,2,2,1],[2,0,0,2],[2,3,2,1],[1,3,2,0]],[[1,2,2,1],[2,0,0,2],[2,3,2,1],[2,2,2,0]],[[1,2,2,1],[2,0,0,2],[3,3,2,1],[1,2,2,0]],[[1,2,2,1],[2,0,0,2],[2,3,2,0],[1,2,2,2]],[[1,2,2,1],[2,0,0,2],[2,3,2,0],[1,2,3,1]],[[1,2,2,1],[2,0,0,2],[2,3,2,0],[1,3,2,1]],[[1,2,2,1],[2,0,0,2],[2,3,2,0],[2,2,2,1]],[[1,2,2,1],[2,0,0,2],[3,3,2,0],[1,2,2,1]],[[0,3,1,0],[2,3,3,0],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[3,3,3,0],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[2,4,3,0],[2,3,3,2],[1,0,0,1]],[[0,2,1,0],[2,3,3,0],[3,3,3,2],[1,0,0,1]],[[0,3,1,0],[2,3,3,0],[2,3,3,2],[1,0,1,0]],[[0,2,1,0],[3,3,3,0],[2,3,3,2],[1,0,1,0]],[[0,2,1,0],[2,4,3,0],[2,3,3,2],[1,0,1,0]],[[0,2,1,0],[2,3,3,0],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[2,0,0,2],[2,3,1,2],[1,2,3,0]],[[1,2,2,1],[2,0,0,2],[2,3,1,2],[1,3,2,0]],[[1,2,2,1],[2,0,0,2],[2,3,1,2],[2,2,2,0]],[[1,2,2,1],[2,0,0,2],[3,3,1,2],[1,2,2,0]],[[1,2,2,1],[2,0,0,2],[2,3,1,2],[1,3,1,1]],[[1,2,2,1],[2,0,0,2],[2,3,1,2],[2,2,1,1]],[[1,2,2,1],[2,0,0,2],[3,3,1,2],[1,2,1,1]],[[1,2,2,1],[2,0,0,2],[2,3,1,1],[1,2,2,2]],[[1,2,2,1],[2,0,0,2],[2,3,1,1],[1,2,3,1]],[[1,2,2,1],[2,0,0,2],[2,3,1,1],[1,3,2,1]],[[1,2,2,1],[2,0,0,2],[2,3,1,1],[2,2,2,1]],[[1,2,2,1],[2,0,0,2],[3,3,1,1],[1,2,2,1]],[[1,2,2,1],[2,0,0,2],[2,2,3,2],[1,0,2,2]],[[1,2,2,1],[2,0,0,2],[2,2,3,2],[1,0,3,1]],[[1,2,2,1],[2,0,0,2],[2,2,3,3],[1,0,2,1]],[[1,2,2,1],[2,0,0,2],[2,2,3,2],[0,1,2,2]],[[1,2,2,1],[2,0,0,2],[2,2,3,2],[0,1,3,1]],[[1,2,2,1],[2,0,0,2],[2,2,3,3],[0,1,2,1]],[[1,2,2,1],[2,0,0,2],[2,1,3,2],[1,1,2,2]],[[1,2,2,1],[2,0,0,2],[2,1,3,2],[1,1,3,1]],[[1,2,2,1],[2,0,0,2],[2,1,3,3],[1,1,2,1]],[[1,2,2,1],[2,0,0,2],[2,1,3,2],[0,2,2,2]],[[1,2,2,1],[2,0,0,2],[2,1,3,2],[0,2,3,1]],[[1,2,2,1],[2,0,0,2],[2,1,3,2],[0,3,2,1]],[[1,2,2,1],[2,0,0,2],[2,1,3,3],[0,2,2,1]],[[1,2,2,1],[2,0,0,2],[1,3,3,2],[1,0,2,2]],[[1,2,2,1],[2,0,0,2],[1,3,3,2],[1,0,3,1]],[[1,2,2,1],[2,0,0,2],[1,3,3,3],[1,0,2,1]],[[1,2,2,1],[2,0,0,2],[1,3,3,2],[0,1,2,2]],[[1,2,2,1],[2,0,0,2],[1,3,3,2],[0,1,3,1]],[[1,2,2,1],[2,0,0,2],[1,3,3,3],[0,1,2,1]],[[1,2,2,1],[2,0,0,2],[1,2,3,2],[0,2,2,2]],[[1,2,2,1],[2,0,0,2],[1,2,3,2],[0,2,3,1]],[[1,2,2,1],[2,0,0,2],[1,2,3,2],[0,3,2,1]],[[1,2,2,1],[2,0,0,2],[1,2,3,3],[0,2,2,1]],[[1,2,2,1],[2,0,0,2],[1,1,3,2],[1,2,2,2]],[[1,2,2,1],[2,0,0,2],[1,1,3,2],[1,2,3,1]],[[1,2,2,1],[2,0,0,2],[1,1,3,2],[1,3,2,1]],[[1,2,2,1],[2,0,0,2],[1,1,3,2],[2,2,2,1]],[[1,2,2,1],[2,0,0,2],[1,1,3,3],[1,2,2,1]],[[1,2,2,1],[2,0,0,2],[0,3,3,2],[1,1,2,2]],[[1,2,2,1],[2,0,0,2],[0,3,3,2],[1,1,3,1]],[[1,2,2,1],[2,0,0,2],[0,3,3,3],[1,1,2,1]],[[1,2,2,1],[2,0,0,2],[0,2,3,2],[1,2,2,2]],[[0,2,1,0],[2,3,3,1],[0,0,3,3],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,0,3,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,1],[0,0,3,2],[1,2,2,2]],[[0,2,1,0],[2,3,3,1],[0,1,2,3],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,1,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,1,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,3,1],[0,1,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,1],[0,1,2,2],[1,2,2,2]],[[0,3,1,0],[2,3,3,1],[0,1,3,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,1],[0,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,1],[0,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,4,1],[0,1,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,1,4,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,1,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,1,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,1],[0,1,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,1],[0,1,3,1],[1,2,2,2]],[[0,3,1,0],[2,3,3,1],[0,1,3,2],[1,2,1,1]],[[0,2,1,0],[3,3,3,1],[0,1,3,2],[1,2,1,1]],[[0,2,1,0],[2,4,3,1],[0,1,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,4,1],[0,1,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[0,1,4,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[0,1,3,3],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[0,1,3,2],[1,2,1,2]],[[0,3,1,0],[2,3,3,1],[0,1,3,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,1],[0,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,1],[0,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,4,1],[0,1,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[0,1,4,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[0,1,3,3],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[0,1,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,1],[0,1,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,1],[0,1,3,2],[1,2,3,0]],[[0,2,1,0],[2,3,3,1],[0,2,2,3],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[0,2,2,2],[1,1,3,1]],[[0,2,1,0],[2,3,3,1],[0,2,2,2],[1,1,2,2]],[[0,3,1,0],[2,3,3,1],[0,2,3,1],[1,1,2,1]],[[0,2,1,0],[3,3,3,1],[0,2,3,1],[1,1,2,1]],[[0,2,1,0],[2,4,3,1],[0,2,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,4,1],[0,2,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[0,2,4,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[0,2,3,1],[1,1,3,1]],[[0,2,1,0],[2,3,3,1],[0,2,3,1],[1,1,2,2]],[[0,3,1,0],[2,3,3,1],[0,2,3,1],[1,2,1,1]],[[0,2,1,0],[3,3,3,1],[0,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,4,3,1],[0,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,4,1],[0,2,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[0,2,4,1],[1,2,1,1]],[[0,3,1,0],[2,3,3,1],[0,2,3,2],[1,0,2,1]],[[0,2,1,0],[2,4,3,1],[0,2,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,4,1],[0,2,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[0,2,4,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[0,2,3,3],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[0,2,3,2],[1,0,2,2]],[[0,3,1,0],[2,3,3,1],[0,2,3,2],[1,1,1,1]],[[0,2,1,0],[3,3,3,1],[0,2,3,2],[1,1,1,1]],[[0,2,1,0],[2,4,3,1],[0,2,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,4,1],[0,2,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[0,2,4,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[0,2,3,3],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[0,2,3,2],[1,1,1,2]],[[0,3,1,0],[2,3,3,1],[0,2,3,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,1],[0,2,3,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,1],[0,2,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,4,1],[0,2,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[0,2,4,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[0,2,3,3],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[0,2,3,2],[1,1,3,0]],[[0,3,1,0],[2,3,3,1],[0,2,3,2],[1,2,0,1]],[[0,2,1,0],[3,3,3,1],[0,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,4,3,1],[0,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,4,1],[0,2,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[0,2,4,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[0,2,3,3],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[0,2,3,2],[1,2,0,2]],[[0,3,1,0],[2,3,3,1],[0,2,3,2],[1,2,1,0]],[[0,2,1,0],[3,3,3,1],[0,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,4,3,1],[0,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,4,1],[0,2,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[0,2,4,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[2,0,0,2],[0,2,3,2],[1,2,3,1]],[[1,2,2,1],[2,0,0,2],[0,2,3,2],[1,3,2,1]],[[1,2,2,1],[2,0,0,2],[0,2,3,2],[2,2,2,1]],[[1,2,2,1],[2,0,0,2],[0,2,3,3],[1,2,2,1]],[[0,3,1,0],[2,3,3,1],[0,3,0,2],[1,2,2,1]],[[0,2,1,0],[3,3,3,1],[0,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,4,3,1],[0,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,4,1],[0,3,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,4,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,0,3],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,0,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,0,2],[1,3,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,0,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,1],[0,3,0,2],[1,2,2,2]],[[0,3,1,0],[2,3,3,1],[0,3,1,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,1],[0,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,1],[0,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,4,1],[0,3,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,4,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,1,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,1,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,1,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,1],[0,3,1,1],[1,2,2,2]],[[0,3,1,0],[2,3,3,1],[0,3,1,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,1],[0,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,1],[0,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,4,1],[0,3,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[0,4,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[0,3,1,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,1],[0,3,1,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,1],[0,3,1,2],[1,2,3,0]],[[0,3,1,0],[2,3,3,1],[0,3,2,1],[1,1,2,1]],[[0,2,1,0],[3,3,3,1],[0,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,4,3,1],[0,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,4,1],[0,3,2,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[0,4,2,1],[1,1,2,1]],[[0,3,1,0],[2,3,3,1],[0,3,2,1],[1,2,1,1]],[[0,2,1,0],[3,3,3,1],[0,3,2,1],[1,2,1,1]],[[0,2,1,0],[2,4,3,1],[0,3,2,1],[1,2,1,1]],[[0,2,1,0],[2,3,4,1],[0,3,2,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[0,4,2,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[0,3,2,1],[2,2,1,1]],[[0,2,1,0],[2,3,3,1],[0,3,2,1],[1,3,1,1]],[[0,2,1,0],[2,3,3,1],[0,3,2,3],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,2,2],[0,1,3,1]],[[0,2,1,0],[2,3,3,1],[0,3,2,2],[0,1,2,2]],[[0,3,1,0],[2,3,3,1],[0,3,2,2],[1,1,1,1]],[[0,2,1,0],[3,3,3,1],[0,3,2,2],[1,1,1,1]],[[0,2,1,0],[2,4,3,1],[0,3,2,2],[1,1,1,1]],[[0,2,1,0],[2,3,4,1],[0,3,2,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[0,4,2,2],[1,1,1,1]],[[0,3,1,0],[2,3,3,1],[0,3,2,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,1],[0,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,1],[0,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,4,1],[0,3,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[0,4,2,2],[1,1,2,0]],[[0,3,1,0],[2,3,3,1],[0,3,2,2],[1,2,0,1]],[[0,2,1,0],[3,3,3,1],[0,3,2,2],[1,2,0,1]],[[0,2,1,0],[2,4,3,1],[0,3,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,4,1],[0,3,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[0,4,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[0,3,2,2],[2,2,0,1]],[[0,2,1,0],[2,3,3,1],[0,3,2,2],[1,3,0,1]],[[0,3,1,0],[2,3,3,1],[0,3,2,2],[1,2,1,0]],[[0,2,1,0],[3,3,3,1],[0,3,2,2],[1,2,1,0]],[[0,2,1,0],[2,4,3,1],[0,3,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,4,1],[0,3,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[0,4,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[0,3,2,2],[2,2,1,0]],[[0,2,1,0],[2,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,2,2,1],[2,0,0,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[2,0,0,1],[2,3,3,2],[2,2,1,0]],[[1,2,2,1],[2,0,0,1],[3,3,3,2],[1,2,1,0]],[[1,2,2,1],[2,0,0,1],[2,3,3,2],[1,3,0,1]],[[1,2,2,1],[2,0,0,1],[2,3,3,2],[2,2,0,1]],[[1,2,2,1],[2,0,0,1],[3,3,3,2],[1,2,0,1]],[[0,3,1,0],[2,3,3,1],[0,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,4,3,1],[0,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,4,1],[0,3,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,4,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,3,1],[0,1,3,1]],[[0,2,1,0],[2,3,3,1],[0,3,3,1],[0,1,2,2]],[[0,3,1,0],[2,3,3,1],[0,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,4,3,1],[0,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,4,1],[0,3,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,2,2,1],[2,0,0,1],[2,3,3,2],[1,0,2,2]],[[1,2,2,1],[2,0,0,1],[2,3,3,2],[1,0,3,1]],[[1,2,2,1],[2,0,0,1],[2,3,3,3],[1,0,2,1]],[[1,2,2,1],[2,0,0,1],[2,3,3,2],[0,1,2,2]],[[1,2,2,1],[2,0,0,1],[2,3,3,2],[0,1,3,1]],[[1,2,2,1],[2,0,0,1],[2,3,3,3],[0,1,2,1]],[[0,3,1,0],[2,3,3,1],[0,3,3,2],[0,0,2,1]],[[0,2,1,0],[2,4,3,1],[0,3,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,4,1],[0,3,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,4,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,3,3],[0,0,2,1]],[[0,2,1,0],[2,3,3,1],[0,3,3,2],[0,0,2,2]],[[0,3,1,0],[2,3,3,1],[0,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,1],[0,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,4,1],[0,3,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[0,3,4,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[0,3,3,3],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[0,3,3,2],[0,1,1,2]],[[0,3,1,0],[2,3,3,1],[0,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,1],[0,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,4,1],[0,3,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[0,3,4,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[0,3,3,3],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[0,3,3,2],[0,1,3,0]],[[0,3,1,0],[2,3,3,1],[0,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,1],[0,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,4,1],[0,3,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[0,3,4,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[0,3,3,3],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[0,3,3,2],[0,2,0,2]],[[0,3,1,0],[2,3,3,1],[0,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,1],[0,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,4,1],[0,3,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,1],[0,3,4,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[2,0,0,1],[2,3,3,1],[1,3,1,1]],[[1,2,2,1],[2,0,0,1],[2,3,3,1],[2,2,1,1]],[[1,2,2,1],[2,0,0,1],[3,3,3,1],[1,2,1,1]],[[1,2,2,1],[2,0,0,1],[2,3,2,2],[1,2,3,0]],[[1,2,2,1],[2,0,0,1],[2,3,2,2],[1,3,2,0]],[[0,3,1,0],[2,3,3,1],[0,3,3,2],[1,2,0,0]],[[0,2,1,0],[3,3,3,1],[0,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,4,3,1],[0,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,4,1],[0,3,3,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,2,2,1],[2,0,0,1],[2,3,2,2],[2,2,2,0]],[[1,2,2,1],[2,0,0,1],[3,3,2,2],[1,2,2,0]],[[1,2,2,1],[2,0,0,1],[2,3,2,1],[1,2,2,2]],[[1,2,2,1],[2,0,0,1],[2,3,2,1],[1,2,3,1]],[[1,2,2,1],[2,0,0,1],[2,3,2,1],[1,3,2,1]],[[1,2,2,1],[2,0,0,1],[2,3,2,1],[2,2,2,1]],[[1,2,2,1],[2,0,0,1],[3,3,2,1],[1,2,2,1]],[[1,2,2,1],[2,0,0,1],[2,3,1,2],[1,2,2,2]],[[1,2,2,1],[2,0,0,1],[2,3,1,2],[1,2,3,1]],[[1,2,2,1],[2,0,0,1],[2,3,1,2],[1,3,2,1]],[[1,2,2,1],[2,0,0,1],[2,3,1,2],[2,2,2,1]],[[1,2,2,1],[2,0,0,1],[2,3,1,3],[1,2,2,1]],[[1,2,2,1],[2,0,0,1],[3,3,1,2],[1,2,2,1]],[[1,2,2,1],[2,0,0,1],[2,2,3,2],[0,2,2,2]],[[1,2,2,1],[2,0,0,1],[2,2,3,2],[0,2,3,1]],[[1,2,2,1],[2,0,0,1],[2,2,3,2],[0,3,2,1]],[[1,2,2,1],[2,0,0,1],[2,2,3,3],[0,2,2,1]],[[1,2,2,1],[2,0,0,1],[2,1,3,2],[1,2,2,2]],[[1,2,2,1],[2,0,0,1],[2,1,3,2],[1,2,3,1]],[[1,2,2,1],[2,0,0,1],[2,1,3,2],[1,3,2,1]],[[1,2,2,1],[2,0,0,1],[2,1,3,2],[2,2,2,1]],[[1,2,2,1],[2,0,0,1],[2,1,3,3],[1,2,2,1]],[[1,2,2,1],[2,0,0,1],[3,1,3,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,0,2,3],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,0,2,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,0,2,2],[1,3,2,1]],[[0,2,1,0],[2,3,3,1],[1,0,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,1],[1,0,2,2],[1,2,2,2]],[[0,3,1,0],[2,3,3,1],[1,0,3,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,1],[1,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,1],[1,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,4,1],[1,0,3,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,0,4,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,0,3,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,0,3,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,1],[1,0,3,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,1],[1,0,3,1],[1,2,2,2]],[[0,2,1,0],[2,3,3,1],[1,0,3,3],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,0,3,2],[0,2,3,1]],[[0,2,1,0],[2,3,3,1],[1,0,3,2],[0,2,2,2]],[[0,3,1,0],[2,3,3,1],[1,0,3,2],[1,2,1,1]],[[0,2,1,0],[3,3,3,1],[1,0,3,2],[1,2,1,1]],[[0,2,1,0],[2,4,3,1],[1,0,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,4,1],[1,0,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[1,0,4,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[1,0,3,3],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[1,0,3,2],[1,2,1,2]],[[0,3,1,0],[2,3,3,1],[1,0,3,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,1],[1,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,1],[1,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,4,1],[1,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[1,0,4,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[1,0,3,3],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[1,0,3,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,1],[1,0,3,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,1],[1,0,3,2],[1,2,3,0]],[[0,2,1,0],[2,3,3,1],[1,1,2,3],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,1,2,2],[0,3,2,1]],[[0,2,1,0],[2,3,3,1],[1,1,2,2],[0,2,3,1]],[[0,2,1,0],[2,3,3,1],[1,1,2,2],[0,2,2,2]],[[0,3,1,0],[2,3,3,1],[1,1,3,1],[0,2,2,1]],[[0,2,1,0],[3,3,3,1],[1,1,3,1],[0,2,2,1]],[[0,2,1,0],[2,4,3,1],[1,1,3,1],[0,2,2,1]],[[0,2,1,0],[2,3,4,1],[1,1,3,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,1,4,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,1,3,1],[0,3,2,1]],[[0,2,1,0],[2,3,3,1],[1,1,3,1],[0,2,3,1]],[[0,2,1,0],[2,3,3,1],[1,1,3,1],[0,2,2,2]],[[0,3,1,0],[2,3,3,1],[1,1,3,2],[0,2,1,1]],[[0,2,1,0],[3,3,3,1],[1,1,3,2],[0,2,1,1]],[[0,2,1,0],[2,4,3,1],[1,1,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,4,1],[1,1,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[1,1,4,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[1,1,3,3],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[1,1,3,2],[0,2,1,2]],[[0,3,1,0],[2,3,3,1],[1,1,3,2],[0,2,2,0]],[[0,2,1,0],[3,3,3,1],[1,1,3,2],[0,2,2,0]],[[0,2,1,0],[2,4,3,1],[1,1,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,4,1],[1,1,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,1],[1,1,4,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,1],[1,1,3,3],[0,2,2,0]],[[0,2,1,0],[2,3,3,1],[1,1,3,2],[0,3,2,0]],[[0,2,1,0],[2,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[2,0,0,1],[1,3,3,2],[1,1,2,2]],[[1,2,2,1],[2,0,0,1],[1,3,3,2],[1,1,3,1]],[[1,2,2,1],[2,0,0,1],[1,3,3,3],[1,1,2,1]],[[1,2,2,1],[2,0,0,1],[1,2,3,2],[1,2,2,2]],[[1,2,2,1],[2,0,0,1],[1,2,3,2],[1,2,3,1]],[[1,2,2,1],[2,0,0,1],[1,2,3,2],[1,3,2,1]],[[1,2,2,1],[2,0,0,1],[1,2,3,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,2,2,3],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[1,2,2,2],[0,1,3,1]],[[0,2,1,0],[2,3,3,1],[1,2,2,2],[0,1,2,2]],[[0,2,1,0],[2,3,3,1],[1,2,2,3],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[1,2,2,2],[1,0,3,1]],[[0,2,1,0],[2,3,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[2,0,0,1],[1,2,3,3],[1,2,2,1]],[[0,3,1,0],[2,3,3,1],[1,2,3,1],[0,1,2,1]],[[0,2,1,0],[3,3,3,1],[1,2,3,1],[0,1,2,1]],[[0,2,1,0],[2,4,3,1],[1,2,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,4,1],[1,2,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[1,2,4,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,1],[0,1,3,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,1],[0,1,2,2]],[[0,3,1,0],[2,3,3,1],[1,2,3,1],[0,2,1,1]],[[0,2,1,0],[3,3,3,1],[1,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,4,3,1],[1,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,4,1],[1,2,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[1,2,4,1],[0,2,1,1]],[[0,3,1,0],[2,3,3,1],[1,2,3,1],[1,0,2,1]],[[0,2,1,0],[3,3,3,1],[1,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,4,3,1],[1,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,4,1],[1,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[1,2,4,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,1],[1,0,3,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,1],[1,0,2,2]],[[0,3,1,0],[2,3,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,1,0],[3,3,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,4,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,4,1],[1,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[1,2,4,1],[1,1,1,1]],[[1,2,2,1],[2,0,0,0],[2,3,3,2],[1,2,3,0]],[[1,2,2,1],[2,0,0,0],[2,3,3,2],[1,3,2,0]],[[1,2,2,1],[2,0,0,0],[2,3,3,2],[2,2,2,0]],[[1,2,2,1],[2,0,0,0],[3,3,3,2],[1,2,2,0]],[[1,2,2,1],[2,0,0,0],[2,3,3,1],[1,2,2,2]],[[1,2,2,1],[2,0,0,0],[2,3,3,1],[1,2,3,1]],[[1,2,2,1],[2,0,0,0],[2,3,3,1],[1,3,2,1]],[[1,2,2,1],[2,0,0,0],[2,3,3,1],[2,2,2,1]],[[0,3,1,0],[2,3,3,1],[1,2,3,2],[0,0,2,1]],[[0,2,1,0],[3,3,3,1],[1,2,3,2],[0,0,2,1]],[[0,2,1,0],[2,4,3,1],[1,2,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,4,1],[1,2,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,1],[1,2,4,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,3],[0,0,2,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,2],[0,0,2,2]],[[0,3,1,0],[2,3,3,1],[1,2,3,2],[0,1,1,1]],[[0,2,1,0],[3,3,3,1],[1,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,1],[1,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,4,1],[1,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[1,2,4,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,3],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,2],[0,1,1,2]],[[0,3,1,0],[2,3,3,1],[1,2,3,2],[0,1,2,0]],[[0,2,1,0],[3,3,3,1],[1,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,1],[1,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,4,1],[1,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[1,2,4,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[1,2,3,3],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[1,2,3,2],[0,1,3,0]],[[0,3,1,0],[2,3,3,1],[1,2,3,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,1],[1,2,3,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,1],[1,2,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,4,1],[1,2,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[1,2,4,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,3],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,2],[0,2,0,2]],[[0,3,1,0],[2,3,3,1],[1,2,3,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,1],[1,2,3,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,1],[1,2,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,4,1],[1,2,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,1],[1,2,4,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[2,0,0,0],[3,3,3,1],[1,2,2,1]],[[0,3,1,0],[2,3,3,1],[1,2,3,2],[1,0,1,1]],[[0,2,1,0],[3,3,3,1],[1,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,4,3,1],[1,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,4,1],[1,2,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,1],[1,2,4,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,3],[1,0,1,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,2],[1,0,1,2]],[[0,3,1,0],[2,3,3,1],[1,2,3,2],[1,0,2,0]],[[0,2,1,0],[3,3,3,1],[1,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,4,3,1],[1,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,4,1],[1,2,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,1],[1,2,4,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,1],[1,2,3,3],[1,0,2,0]],[[0,2,1,0],[2,3,3,1],[1,2,3,2],[1,0,3,0]],[[0,3,1,0],[2,3,3,1],[1,2,3,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,1],[1,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,1],[1,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,4,1],[1,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[1,2,4,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,3],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[1,2,3,2],[1,1,0,2]],[[0,3,1,0],[2,3,3,1],[1,2,3,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,1],[1,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,1],[1,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,4,1],[1,2,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,1],[1,2,4,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[1,4,3,2],[2,3,2,0],[1,0,0,0]],[[1,2,2,2],[1,3,3,2],[2,3,2,0],[1,0,0,0]],[[1,2,3,1],[1,3,3,2],[2,3,2,0],[1,0,0,0]],[[1,3,2,1],[1,3,3,2],[2,3,2,0],[1,0,0,0]],[[2,2,2,1],[1,3,3,2],[2,3,2,0],[1,0,0,0]],[[0,3,1,0],[2,3,3,1],[1,3,0,2],[0,2,2,1]],[[0,2,1,0],[3,3,3,1],[1,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,4,3,1],[1,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,4,1],[1,3,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,4,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,3,0,3],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,3,0,2],[0,3,2,1]],[[0,2,1,0],[2,3,3,1],[1,3,0,2],[0,2,3,1]],[[0,2,1,0],[2,3,3,1],[1,3,0,2],[0,2,2,2]],[[0,3,1,0],[2,3,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,1,0],[3,3,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,4,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,4,1],[1,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[1,4,0,2],[1,1,2,1]],[[0,3,1,0],[2,3,3,1],[1,3,1,1],[0,2,2,1]],[[0,2,1,0],[3,3,3,1],[1,3,1,1],[0,2,2,1]],[[0,2,1,0],[2,4,3,1],[1,3,1,1],[0,2,2,1]],[[0,2,1,0],[2,3,4,1],[1,3,1,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,4,1,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[1,3,1,1],[0,3,2,1]],[[0,2,1,0],[2,3,3,1],[1,3,1,1],[0,2,3,1]],[[0,2,1,0],[2,3,3,1],[1,3,1,1],[0,2,2,2]],[[0,3,1,0],[2,3,3,1],[1,3,1,1],[1,1,2,1]],[[0,2,1,0],[3,3,3,1],[1,3,1,1],[1,1,2,1]],[[0,2,1,0],[2,4,3,1],[1,3,1,1],[1,1,2,1]],[[0,2,1,0],[2,3,4,1],[1,3,1,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[1,4,1,1],[1,1,2,1]],[[0,3,1,0],[2,3,3,1],[1,3,1,2],[0,2,2,0]],[[0,2,1,0],[3,3,3,1],[1,3,1,2],[0,2,2,0]],[[0,2,1,0],[2,4,3,1],[1,3,1,2],[0,2,2,0]],[[0,2,1,0],[2,3,4,1],[1,3,1,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,1],[1,4,1,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,1],[1,3,1,2],[0,3,2,0]],[[0,2,1,0],[2,3,3,1],[1,3,1,2],[0,2,3,0]],[[0,3,1,0],[2,3,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,1,0],[2,3,4,1],[1,3,1,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[1,4,1,2],[1,1,2,0]],[[0,3,1,0],[2,3,3,1],[1,3,2,1],[0,1,2,1]],[[0,2,1,0],[3,3,3,1],[1,3,2,1],[0,1,2,1]],[[0,2,1,0],[2,4,3,1],[1,3,2,1],[0,1,2,1]],[[0,2,1,0],[2,3,4,1],[1,3,2,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[1,4,2,1],[0,1,2,1]],[[0,3,1,0],[2,3,3,1],[1,3,2,1],[0,2,1,1]],[[0,2,1,0],[3,3,3,1],[1,3,2,1],[0,2,1,1]],[[0,2,1,0],[2,4,3,1],[1,3,2,1],[0,2,1,1]],[[0,2,1,0],[2,3,4,1],[1,3,2,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[1,4,2,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[1,3,2,1],[0,3,1,1]],[[0,3,1,0],[2,3,3,1],[1,3,2,1],[1,0,2,1]],[[0,2,1,0],[3,3,3,1],[1,3,2,1],[1,0,2,1]],[[0,2,1,0],[2,4,3,1],[1,3,2,1],[1,0,2,1]],[[0,2,1,0],[2,3,4,1],[1,3,2,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[1,4,2,1],[1,0,2,1]],[[0,3,1,0],[2,3,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,1,0],[3,3,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,1,0],[2,4,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,1,0],[2,3,4,1],[1,3,2,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[1,4,2,1],[1,1,1,1]],[[0,3,1,0],[2,3,3,1],[1,3,2,1],[1,2,0,1]],[[0,2,1,0],[3,3,3,1],[1,3,2,1],[1,2,0,1]],[[0,2,1,0],[2,4,3,1],[1,3,2,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[1,4,2,1],[1,2,0,1]],[[0,3,1,0],[2,3,3,1],[1,3,2,2],[0,1,1,1]],[[0,2,1,0],[3,3,3,1],[1,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,1],[1,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,4,1],[1,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[1,4,2,2],[0,1,1,1]],[[0,3,1,0],[2,3,3,1],[1,3,2,2],[0,1,2,0]],[[0,2,1,0],[3,3,3,1],[1,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,1],[1,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,4,1],[1,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[1,4,2,2],[0,1,2,0]],[[0,3,1,0],[2,3,3,1],[1,3,2,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,1],[1,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,1],[1,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,4,1],[1,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[1,4,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[1,3,2,2],[0,3,0,1]],[[0,3,1,0],[2,3,3,1],[1,3,2,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,1],[1,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,1],[1,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,4,1],[1,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,1],[1,4,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,1],[1,3,2,2],[0,3,1,0]],[[0,3,1,0],[2,3,3,1],[1,3,2,2],[1,0,1,1]],[[0,2,1,0],[3,3,3,1],[1,3,2,2],[1,0,1,1]],[[0,2,1,0],[2,4,3,1],[1,3,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,4,1],[1,3,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,1],[1,4,2,2],[1,0,1,1]],[[0,3,1,0],[2,3,3,1],[1,3,2,2],[1,0,2,0]],[[0,2,1,0],[3,3,3,1],[1,3,2,2],[1,0,2,0]],[[0,2,1,0],[2,4,3,1],[1,3,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,4,1],[1,3,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,1],[1,4,2,2],[1,0,2,0]],[[0,3,1,0],[2,3,3,1],[1,3,2,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,1],[1,3,2,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,1],[1,3,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,4,1],[1,3,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[1,4,2,2],[1,1,0,1]],[[0,3,1,0],[2,3,3,1],[1,3,2,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,1],[1,3,2,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,1],[1,3,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,4,1],[1,3,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,1],[1,4,2,2],[1,1,1,0]],[[0,3,1,0],[2,3,3,1],[1,3,2,2],[1,2,0,0]],[[0,2,1,0],[3,3,3,1],[1,3,2,2],[1,2,0,0]],[[0,2,1,0],[2,4,3,1],[1,3,2,2],[1,2,0,0]],[[0,2,1,0],[2,3,4,1],[1,3,2,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,1],[1,4,2,2],[1,2,0,0]],[[1,2,2,1],[1,4,3,2],[2,3,1,0],[1,0,1,0]],[[1,2,2,2],[1,3,3,2],[2,3,1,0],[1,0,1,0]],[[1,2,3,1],[1,3,3,2],[2,3,1,0],[1,0,1,0]],[[1,3,2,1],[1,3,3,2],[2,3,1,0],[1,0,1,0]],[[2,2,2,1],[1,3,3,2],[2,3,1,0],[1,0,1,0]],[[1,2,2,1],[1,4,3,2],[2,3,1,0],[1,0,0,1]],[[1,2,2,2],[1,3,3,2],[2,3,1,0],[1,0,0,1]],[[1,2,3,1],[1,3,3,2],[2,3,1,0],[1,0,0,1]],[[1,3,2,1],[1,3,3,2],[2,3,1,0],[1,0,0,1]],[[2,2,2,1],[1,3,3,2],[2,3,1,0],[1,0,0,1]],[[0,3,1,0],[2,3,3,1],[1,3,3,1],[0,0,2,1]],[[0,2,1,0],[3,3,3,1],[1,3,3,1],[0,0,2,1]],[[0,2,1,0],[2,4,3,1],[1,3,3,1],[0,0,2,1]],[[0,2,1,0],[2,3,4,1],[1,3,3,1],[0,0,2,1]],[[0,2,1,0],[2,3,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,2,1],[1,4,3,2],[2,3,0,2],[1,0,0,0]],[[1,2,2,2],[1,3,3,2],[2,3,0,2],[1,0,0,0]],[[1,2,3,1],[1,3,3,2],[2,3,0,2],[1,0,0,0]],[[1,3,2,1],[1,3,3,2],[2,3,0,2],[1,0,0,0]],[[2,2,2,1],[1,3,3,2],[2,3,0,2],[1,0,0,0]],[[0,3,1,0],[2,3,3,1],[1,3,3,2],[0,0,1,1]],[[0,2,1,0],[3,3,3,1],[1,3,3,2],[0,0,1,1]],[[0,2,1,0],[2,4,3,1],[1,3,3,2],[0,0,1,1]],[[0,2,1,0],[2,3,4,1],[1,3,3,2],[0,0,1,1]],[[0,2,1,0],[2,3,3,1],[1,3,4,2],[0,0,1,1]],[[0,2,1,0],[2,3,3,1],[1,3,3,3],[0,0,1,1]],[[0,2,1,0],[2,3,3,1],[1,3,3,2],[0,0,1,2]],[[0,3,1,0],[2,3,3,1],[1,3,3,2],[0,0,2,0]],[[0,2,1,0],[3,3,3,1],[1,3,3,2],[0,0,2,0]],[[0,2,1,0],[2,4,3,1],[1,3,3,2],[0,0,2,0]],[[0,2,1,0],[2,3,4,1],[1,3,3,2],[0,0,2,0]],[[0,2,1,0],[2,3,3,1],[1,3,4,2],[0,0,2,0]],[[0,2,1,0],[2,3,3,1],[1,3,3,3],[0,0,2,0]],[[0,3,1,0],[2,3,3,1],[1,3,3,2],[0,2,0,0]],[[0,2,1,0],[3,3,3,1],[1,3,3,2],[0,2,0,0]],[[0,2,1,0],[2,4,3,1],[1,3,3,2],[0,2,0,0]],[[0,2,1,0],[2,3,4,1],[1,3,3,2],[0,2,0,0]],[[0,2,1,0],[2,3,3,1],[1,4,3,2],[0,2,0,0]],[[1,2,2,1],[1,3,3,3],[2,3,0,2],[0,0,0,1]],[[1,2,2,2],[1,3,3,2],[2,3,0,2],[0,0,0,1]],[[1,2,3,1],[1,3,3,2],[2,3,0,2],[0,0,0,1]],[[1,3,2,1],[1,3,3,2],[2,3,0,2],[0,0,0,1]],[[2,2,2,1],[1,3,3,2],[2,3,0,2],[0,0,0,1]],[[1,2,2,1],[1,4,3,2],[2,3,0,1],[1,0,1,0]],[[1,2,2,2],[1,3,3,2],[2,3,0,1],[1,0,1,0]],[[1,2,3,1],[1,3,3,2],[2,3,0,1],[1,0,1,0]],[[1,3,2,1],[1,3,3,2],[2,3,0,1],[1,0,1,0]],[[2,2,2,1],[1,3,3,2],[2,3,0,1],[1,0,1,0]],[[1,2,2,1],[1,4,3,2],[2,3,0,1],[1,0,0,1]],[[0,3,1,0],[2,3,3,1],[1,3,3,2],[1,1,0,0]],[[0,2,1,0],[3,3,3,1],[1,3,3,2],[1,1,0,0]],[[0,2,1,0],[2,4,3,1],[1,3,3,2],[1,1,0,0]],[[0,2,1,0],[2,3,4,1],[1,3,3,2],[1,1,0,0]],[[0,2,1,0],[2,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,2,2],[1,3,3,2],[2,3,0,1],[1,0,0,1]],[[1,2,3,1],[1,3,3,2],[2,3,0,1],[1,0,0,1]],[[1,3,2,1],[1,3,3,2],[2,3,0,1],[1,0,0,1]],[[2,2,2,1],[1,3,3,2],[2,3,0,1],[1,0,0,1]],[[1,2,2,1],[1,4,3,2],[2,3,0,0],[1,2,0,0]],[[1,2,2,2],[1,3,3,2],[2,3,0,0],[1,2,0,0]],[[1,2,3,1],[1,3,3,2],[2,3,0,0],[1,2,0,0]],[[1,3,2,1],[1,3,3,2],[2,3,0,0],[1,2,0,0]],[[2,2,2,1],[1,3,3,2],[2,3,0,0],[1,2,0,0]],[[1,2,2,1],[1,4,3,2],[2,3,0,0],[1,1,1,0]],[[1,2,2,2],[1,3,3,2],[2,3,0,0],[1,1,1,0]],[[1,2,3,1],[1,3,3,2],[2,3,0,0],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[2,3,0,0],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[2,3,0,0],[1,1,1,0]],[[1,2,2,1],[1,4,3,2],[2,3,0,0],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[2,3,0,0],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[2,3,0,0],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[2,3,0,0],[1,1,0,1]],[[2,2,2,1],[1,3,3,2],[2,3,0,0],[1,1,0,1]],[[1,2,2,1],[1,4,3,2],[2,3,0,0],[0,2,1,0]],[[1,2,2,2],[1,3,3,2],[2,3,0,0],[0,2,1,0]],[[1,2,3,1],[1,3,3,2],[2,3,0,0],[0,2,1,0]],[[1,3,2,1],[1,3,3,2],[2,3,0,0],[0,2,1,0]],[[2,2,2,1],[1,3,3,2],[2,3,0,0],[0,2,1,0]],[[1,2,2,1],[1,4,3,2],[2,3,0,0],[0,2,0,1]],[[0,3,1,0],[2,3,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[3,3,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,4,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,4,1],[2,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[3,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,1,3],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,1],[2,0,1,2],[1,2,2,2]],[[0,3,1,0],[2,3,3,1],[2,0,2,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,1],[2,0,2,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,1],[2,0,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,4,1],[2,0,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[3,0,2,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,2,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,2,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,2,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,1],[2,0,2,1],[1,2,2,2]],[[0,2,1,0],[2,3,3,1],[2,0,2,3],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,2,2],[0,3,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,2,2],[0,2,3,1]],[[0,2,1,0],[2,3,3,1],[2,0,2,2],[0,2,2,2]],[[0,2,1,0],[2,3,3,1],[2,0,2,3],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,2,2],[1,1,3,1]],[[0,2,1,0],[2,3,3,1],[2,0,2,2],[1,1,2,2]],[[0,3,1,0],[2,3,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,4,1],[2,0,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[3,0,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[2,0,2,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,1],[2,0,2,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,1],[2,0,2,2],[1,2,3,0]],[[0,3,1,0],[2,3,3,1],[2,0,3,1],[0,2,2,1]],[[0,2,1,0],[3,3,3,1],[2,0,3,1],[0,2,2,1]],[[0,2,1,0],[2,4,3,1],[2,0,3,1],[0,2,2,1]],[[0,2,1,0],[2,3,4,1],[2,0,3,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[3,0,3,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,4,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,1],[0,3,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,1],[0,2,3,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,1],[0,2,2,2]],[[0,3,1,0],[2,3,3,1],[2,0,3,1],[1,1,2,1]],[[0,2,1,0],[3,3,3,1],[2,0,3,1],[1,1,2,1]],[[0,2,1,0],[2,4,3,1],[2,0,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,4,1],[2,0,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[3,0,3,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,4,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,1],[2,1,2,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,1],[1,1,3,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,1],[1,1,2,2]],[[0,3,1,0],[2,3,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,1,0],[3,3,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,1,0],[2,4,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,4,1],[2,0,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[3,0,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[2,0,4,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,1],[2,2,1,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,1],[1,3,1,1]],[[0,3,1,0],[2,3,3,1],[2,0,3,2],[0,2,1,1]],[[0,2,1,0],[3,3,3,1],[2,0,3,2],[0,2,1,1]],[[0,2,1,0],[2,4,3,1],[2,0,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,4,1],[2,0,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[3,0,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[2,0,4,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,3],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[0,2,1,2]],[[0,3,1,0],[2,3,3,1],[2,0,3,2],[0,2,2,0]],[[0,2,1,0],[3,3,3,1],[2,0,3,2],[0,2,2,0]],[[0,2,1,0],[2,4,3,1],[2,0,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,4,1],[2,0,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,1],[3,0,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,1],[2,0,4,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,1],[2,0,3,3],[0,2,2,0]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[0,3,2,0]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[0,2,3,0]],[[0,3,1,0],[2,3,3,1],[2,0,3,2],[1,1,1,1]],[[0,2,1,0],[3,3,3,1],[2,0,3,2],[1,1,1,1]],[[0,2,1,0],[2,4,3,1],[2,0,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,4,1],[2,0,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[3,0,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[2,0,4,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,3],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[2,1,1,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[1,1,1,2]],[[0,3,1,0],[2,3,3,1],[2,0,3,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,1],[2,0,3,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,1],[2,0,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,4,1],[2,0,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[3,0,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[2,0,4,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[2,0,3,3],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[2,1,2,0]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[1,1,3,0]],[[0,3,1,0],[2,3,3,1],[2,0,3,2],[1,2,0,1]],[[0,2,1,0],[3,3,3,1],[2,0,3,2],[1,2,0,1]],[[0,2,1,0],[2,4,3,1],[2,0,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,4,1],[2,0,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[3,0,3,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[2,0,4,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,3],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[2,2,0,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[1,3,0,1]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[1,2,0,2]],[[0,3,1,0],[2,3,3,1],[2,0,3,2],[1,2,1,0]],[[0,2,1,0],[3,3,3,1],[2,0,3,2],[1,2,1,0]],[[0,2,1,0],[2,4,3,1],[2,0,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,4,1],[2,0,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[3,0,3,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[2,0,4,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[2,0,3,3],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[2,2,1,0]],[[0,2,1,0],[2,3,3,1],[2,0,3,2],[1,3,1,0]],[[1,2,2,2],[1,3,3,2],[2,3,0,0],[0,2,0,1]],[[1,2,3,1],[1,3,3,2],[2,3,0,0],[0,2,0,1]],[[1,3,2,1],[1,3,3,2],[2,3,0,0],[0,2,0,1]],[[2,2,2,1],[1,3,3,2],[2,3,0,0],[0,2,0,1]],[[0,3,1,0],[2,3,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[3,3,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,4,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,4,1],[2,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[3,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,0,3],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,0,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,0,2],[1,3,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,0,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,1],[2,1,0,2],[1,2,2,2]],[[0,3,1,0],[2,3,3,1],[2,1,1,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,1],[2,1,1,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,1],[2,1,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,4,1],[2,1,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[3,1,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,1,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,1,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,1,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,1],[2,1,1,1],[1,2,2,2]],[[0,3,1,0],[2,3,3,1],[2,1,1,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,1],[2,1,1,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,1],[2,1,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,4,1],[2,1,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[3,1,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[2,1,1,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,1],[2,1,1,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,1],[2,1,1,2],[1,2,3,0]],[[0,3,1,0],[2,3,3,1],[2,1,2,1],[1,2,1,1]],[[0,2,1,0],[3,3,3,1],[2,1,2,1],[1,2,1,1]],[[0,2,1,0],[2,4,3,1],[2,1,2,1],[1,2,1,1]],[[0,2,1,0],[2,3,4,1],[2,1,2,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[3,1,2,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,2,1],[2,2,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,2,1],[1,3,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,2,3],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,2,2],[0,1,3,1]],[[0,2,1,0],[2,3,3,1],[2,1,2,2],[0,1,2,2]],[[0,2,1,0],[2,3,3,1],[2,1,2,3],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,2,2],[1,0,3,1]],[[0,2,1,0],[2,3,3,1],[2,1,2,2],[1,0,2,2]],[[0,3,1,0],[2,3,3,1],[2,1,2,2],[1,2,0,1]],[[0,2,1,0],[3,3,3,1],[2,1,2,2],[1,2,0,1]],[[0,2,1,0],[2,4,3,1],[2,1,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,4,1],[2,1,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[3,1,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[2,1,2,2],[2,2,0,1]],[[0,2,1,0],[2,3,3,1],[2,1,2,2],[1,3,0,1]],[[0,3,1,0],[2,3,3,1],[2,1,2,2],[1,2,1,0]],[[0,2,1,0],[3,3,3,1],[2,1,2,2],[1,2,1,0]],[[0,2,1,0],[2,4,3,1],[2,1,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,4,1],[2,1,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[3,1,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[2,1,2,2],[2,2,1,0]],[[0,2,1,0],[2,3,3,1],[2,1,2,2],[1,3,1,0]],[[0,3,1,0],[2,3,3,1],[2,1,3,1],[0,1,2,1]],[[0,2,1,0],[3,3,3,1],[2,1,3,1],[0,1,2,1]],[[0,2,1,0],[2,4,3,1],[2,1,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,4,1],[2,1,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[3,1,3,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,4,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,1],[0,1,3,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,1],[0,1,2,2]],[[0,3,1,0],[2,3,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,1,0],[3,3,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,1,0],[2,4,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,4,1],[2,1,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[3,1,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,4,1],[0,2,1,1]],[[0,3,1,0],[2,3,3,1],[2,1,3,1],[1,0,2,1]],[[0,2,1,0],[3,3,3,1],[2,1,3,1],[1,0,2,1]],[[0,2,1,0],[2,4,3,1],[2,1,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,4,1],[2,1,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[3,1,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,4,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,1],[2,0,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,1],[1,0,3,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,1],[1,0,2,2]],[[0,3,1,0],[2,3,3,1],[2,1,3,1],[1,1,1,1]],[[0,2,1,0],[3,3,3,1],[2,1,3,1],[1,1,1,1]],[[0,2,1,0],[2,4,3,1],[2,1,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,4,1],[2,1,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[3,1,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,4,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,1],[2,1,1,1]],[[0,3,1,0],[2,3,3,1],[2,1,3,2],[0,0,2,1]],[[0,2,1,0],[3,3,3,1],[2,1,3,2],[0,0,2,1]],[[0,2,1,0],[2,4,3,1],[2,1,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,4,1],[2,1,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,4,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,3],[0,0,2,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,2],[0,0,2,2]],[[0,3,1,0],[2,3,3,1],[2,1,3,2],[0,1,1,1]],[[0,2,1,0],[3,3,3,1],[2,1,3,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,1],[2,1,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,4,1],[2,1,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[3,1,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,4,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,3],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,2],[0,1,1,2]],[[0,3,1,0],[2,3,3,1],[2,1,3,2],[0,1,2,0]],[[0,2,1,0],[3,3,3,1],[2,1,3,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,1],[2,1,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,4,1],[2,1,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[3,1,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[2,1,4,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[2,1,3,3],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[2,1,3,2],[0,1,3,0]],[[0,3,1,0],[2,3,3,1],[2,1,3,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,1],[2,1,3,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,1],[2,1,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,4,1],[2,1,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[3,1,3,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[2,1,4,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,3],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,2],[0,2,0,2]],[[0,3,1,0],[2,3,3,1],[2,1,3,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,1],[2,1,3,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,1],[2,1,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,4,1],[2,1,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,1],[3,1,3,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,1],[2,1,4,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,1],[2,1,3,3],[0,2,1,0]],[[0,3,1,0],[2,3,3,1],[2,1,3,2],[1,0,1,1]],[[0,2,1,0],[3,3,3,1],[2,1,3,2],[1,0,1,1]],[[0,2,1,0],[2,4,3,1],[2,1,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,4,1],[2,1,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,1],[3,1,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,4,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,3],[1,0,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,2],[2,0,1,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,2],[1,0,1,2]],[[0,3,1,0],[2,3,3,1],[2,1,3,2],[1,0,2,0]],[[0,2,1,0],[3,3,3,1],[2,1,3,2],[1,0,2,0]],[[0,2,1,0],[2,4,3,1],[2,1,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,4,1],[2,1,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,1],[3,1,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,1],[2,1,4,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,1],[2,1,3,3],[1,0,2,0]],[[0,2,1,0],[2,3,3,1],[2,1,3,2],[2,0,2,0]],[[0,2,1,0],[2,3,3,1],[2,1,3,2],[1,0,3,0]],[[0,3,1,0],[2,3,3,1],[2,1,3,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,1],[2,1,3,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,1],[2,1,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,4,1],[2,1,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[3,1,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[2,1,4,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,3],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,2],[2,1,0,1]],[[0,2,1,0],[2,3,3,1],[2,1,3,2],[1,1,0,2]],[[0,3,1,0],[2,3,3,1],[2,1,3,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,1],[2,1,3,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,1],[2,1,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,4,1],[2,1,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,1],[3,1,3,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,1],[2,1,4,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,1],[2,1,3,3],[1,1,1,0]],[[0,2,1,0],[2,3,3,1],[2,1,3,2],[2,1,1,0]],[[1,2,2,1],[1,4,3,2],[2,2,2,0],[1,1,0,0]],[[1,2,2,2],[1,3,3,2],[2,2,2,0],[1,1,0,0]],[[1,2,3,1],[1,3,3,2],[2,2,2,0],[1,1,0,0]],[[1,3,2,1],[1,3,3,2],[2,2,2,0],[1,1,0,0]],[[2,2,2,1],[1,3,3,2],[2,2,2,0],[1,1,0,0]],[[0,3,1,0],[2,3,3,1],[2,2,0,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,1],[2,2,0,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,1],[2,2,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[3,2,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,2,0,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,2,0,1],[1,3,2,1]],[[0,3,1,0],[2,3,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,1,0],[3,3,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,1,0],[2,4,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,4,1],[2,2,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[3,2,0,2],[0,2,2,1]],[[0,3,1,0],[2,3,3,1],[2,2,0,2],[1,1,2,1]],[[0,2,1,0],[3,3,3,1],[2,2,0,2],[1,1,2,1]],[[0,2,1,0],[2,4,3,1],[2,2,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,4,1],[2,2,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[3,2,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[2,2,0,2],[2,1,2,1]],[[0,3,1,0],[2,3,3,1],[2,2,0,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,1],[2,2,0,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,1],[2,2,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[3,2,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,1],[2,2,0,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,1],[2,2,0,2],[1,3,2,0]],[[0,3,1,0],[2,3,3,1],[2,2,1,1],[0,2,2,1]],[[0,2,1,0],[3,3,3,1],[2,2,1,1],[0,2,2,1]],[[0,2,1,0],[2,4,3,1],[2,2,1,1],[0,2,2,1]],[[0,2,1,0],[2,3,4,1],[2,2,1,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[3,2,1,1],[0,2,2,1]],[[0,3,1,0],[2,3,3,1],[2,2,1,1],[1,1,2,1]],[[0,2,1,0],[3,3,3,1],[2,2,1,1],[1,1,2,1]],[[0,2,1,0],[2,4,3,1],[2,2,1,1],[1,1,2,1]],[[0,2,1,0],[2,3,4,1],[2,2,1,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[3,2,1,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[2,2,1,1],[2,1,2,1]],[[0,3,1,0],[2,3,3,1],[2,2,1,2],[0,2,2,0]],[[0,2,1,0],[3,3,3,1],[2,2,1,2],[0,2,2,0]],[[0,2,1,0],[2,4,3,1],[2,2,1,2],[0,2,2,0]],[[0,2,1,0],[2,3,4,1],[2,2,1,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,1],[3,2,1,2],[0,2,2,0]],[[0,3,1,0],[2,3,3,1],[2,2,1,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,1],[2,2,1,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,1],[2,2,1,2],[1,1,2,0]],[[0,2,1,0],[2,3,4,1],[2,2,1,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[3,2,1,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[2,2,1,2],[2,1,2,0]],[[1,2,2,1],[1,4,3,2],[2,2,2,0],[0,2,0,0]],[[1,2,2,2],[1,3,3,2],[2,2,2,0],[0,2,0,0]],[[1,2,3,1],[1,3,3,2],[2,2,2,0],[0,2,0,0]],[[1,3,2,1],[1,3,3,2],[2,2,2,0],[0,2,0,0]],[[0,3,1,0],[2,3,3,1],[2,2,2,1],[0,1,2,1]],[[0,2,1,0],[3,3,3,1],[2,2,2,1],[0,1,2,1]],[[0,2,1,0],[2,4,3,1],[2,2,2,1],[0,1,2,1]],[[0,2,1,0],[2,3,4,1],[2,2,2,1],[0,1,2,1]],[[0,2,1,0],[2,3,3,1],[3,2,2,1],[0,1,2,1]],[[0,3,1,0],[2,3,3,1],[2,2,2,1],[0,2,1,1]],[[0,2,1,0],[3,3,3,1],[2,2,2,1],[0,2,1,1]],[[0,2,1,0],[2,4,3,1],[2,2,2,1],[0,2,1,1]],[[0,2,1,0],[2,3,4,1],[2,2,2,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[3,2,2,1],[0,2,1,1]],[[0,3,1,0],[2,3,3,1],[2,2,2,1],[1,0,2,1]],[[0,2,1,0],[3,3,3,1],[2,2,2,1],[1,0,2,1]],[[0,2,1,0],[2,4,3,1],[2,2,2,1],[1,0,2,1]],[[0,2,1,0],[2,3,4,1],[2,2,2,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[3,2,2,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,1],[2,2,2,1],[2,0,2,1]],[[0,3,1,0],[2,3,3,1],[2,2,2,1],[1,1,1,1]],[[0,2,1,0],[3,3,3,1],[2,2,2,1],[1,1,1,1]],[[0,2,1,0],[2,4,3,1],[2,2,2,1],[1,1,1,1]],[[0,2,1,0],[2,3,4,1],[2,2,2,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[3,2,2,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[2,2,2,1],[2,1,1,1]],[[0,3,1,0],[2,3,3,1],[2,2,2,1],[1,2,0,1]],[[0,2,1,0],[3,3,3,1],[2,2,2,1],[1,2,0,1]],[[0,2,1,0],[2,4,3,1],[2,2,2,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[3,2,2,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[2,2,2,1],[2,2,0,1]],[[2,2,2,1],[1,3,3,2],[2,2,2,0],[0,2,0,0]],[[0,3,1,0],[2,3,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,1,0],[3,3,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,4,1],[2,2,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,1],[3,2,2,2],[0,1,1,1]],[[0,3,1,0],[2,3,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,1,0],[3,3,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,4,1],[2,2,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,1],[3,2,2,2],[0,1,2,0]],[[0,3,1,0],[2,3,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,4,1],[2,2,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[3,2,2,2],[0,2,0,1]],[[0,3,1,0],[2,3,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,4,1],[2,2,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,1],[3,2,2,2],[0,2,1,0]],[[0,3,1,0],[2,3,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,1,0],[3,3,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,1,0],[2,4,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,4,1],[2,2,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,1],[3,2,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,1],[2,2,2,2],[2,0,1,1]],[[0,3,1,0],[2,3,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,1,0],[3,3,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,1,0],[2,4,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,4,1],[2,2,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,1],[3,2,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,1],[2,2,2,2],[2,0,2,0]],[[0,3,1,0],[2,3,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,4,1],[2,2,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[3,2,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[2,2,2,2],[2,1,0,1]],[[0,3,1,0],[2,3,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,4,1],[2,2,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,1],[3,2,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,1],[2,2,2,2],[2,1,1,0]],[[0,3,1,0],[2,3,3,1],[2,2,2,2],[1,2,0,0]],[[0,2,1,0],[3,3,3,1],[2,2,2,2],[1,2,0,0]],[[0,2,1,0],[2,4,3,1],[2,2,2,2],[1,2,0,0]],[[0,2,1,0],[2,3,4,1],[2,2,2,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,1],[3,2,2,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,1],[2,2,2,2],[2,2,0,0]],[[1,2,2,1],[1,4,3,2],[2,2,1,0],[1,2,0,0]],[[1,2,2,2],[1,3,3,2],[2,2,1,0],[1,2,0,0]],[[1,2,3,1],[1,3,3,2],[2,2,1,0],[1,2,0,0]],[[1,3,2,1],[1,3,3,2],[2,2,1,0],[1,2,0,0]],[[2,2,2,1],[1,3,3,2],[2,2,1,0],[1,2,0,0]],[[0,3,1,0],[2,3,3,1],[2,2,3,2],[0,2,0,0]],[[0,2,1,0],[3,3,3,1],[2,2,3,2],[0,2,0,0]],[[0,2,1,0],[2,4,3,1],[2,2,3,2],[0,2,0,0]],[[0,2,1,0],[2,3,4,1],[2,2,3,2],[0,2,0,0]],[[0,2,1,0],[2,3,3,1],[3,2,3,2],[0,2,0,0]],[[1,2,2,1],[1,4,3,2],[2,2,1,0],[1,1,1,0]],[[1,2,2,2],[1,3,3,2],[2,2,1,0],[1,1,1,0]],[[1,2,3,1],[1,3,3,2],[2,2,1,0],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[2,2,1,0],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[2,2,1,0],[1,1,1,0]],[[1,2,2,1],[1,4,3,2],[2,2,1,0],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[2,2,1,0],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[2,2,1,0],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[2,2,1,0],[1,1,0,1]],[[2,2,2,1],[1,3,3,2],[2,2,1,0],[1,1,0,1]],[[1,2,2,1],[1,4,3,2],[2,2,1,0],[1,0,2,0]],[[1,2,2,2],[1,3,3,2],[2,2,1,0],[1,0,2,0]],[[1,2,3,1],[1,3,3,2],[2,2,1,0],[1,0,2,0]],[[1,3,2,1],[1,3,3,2],[2,2,1,0],[1,0,2,0]],[[2,2,2,1],[1,3,3,2],[2,2,1,0],[1,0,2,0]],[[1,2,2,1],[1,4,3,2],[2,2,1,0],[1,0,1,1]],[[1,2,2,2],[1,3,3,2],[2,2,1,0],[1,0,1,1]],[[1,2,3,1],[1,3,3,2],[2,2,1,0],[1,0,1,1]],[[1,3,2,1],[1,3,3,2],[2,2,1,0],[1,0,1,1]],[[2,2,2,1],[1,3,3,2],[2,2,1,0],[1,0,1,1]],[[0,3,1,0],[2,3,3,1],[2,2,3,2],[1,1,0,0]],[[0,2,1,0],[3,3,3,1],[2,2,3,2],[1,1,0,0]],[[0,2,1,0],[2,4,3,1],[2,2,3,2],[1,1,0,0]],[[0,2,1,0],[2,3,4,1],[2,2,3,2],[1,1,0,0]],[[0,2,1,0],[2,3,3,1],[3,2,3,2],[1,1,0,0]],[[0,2,1,0],[2,3,3,1],[2,2,3,2],[2,1,0,0]],[[1,2,2,1],[1,4,3,2],[2,2,1,0],[0,2,1,0]],[[1,2,2,2],[1,3,3,2],[2,2,1,0],[0,2,1,0]],[[1,2,3,1],[1,3,3,2],[2,2,1,0],[0,2,1,0]],[[1,3,2,1],[1,3,3,2],[2,2,1,0],[0,2,1,0]],[[2,2,2,1],[1,3,3,2],[2,2,1,0],[0,2,1,0]],[[1,2,2,1],[1,4,3,2],[2,2,1,0],[0,2,0,1]],[[1,2,2,2],[1,3,3,2],[2,2,1,0],[0,2,0,1]],[[1,2,3,1],[1,3,3,2],[2,2,1,0],[0,2,0,1]],[[1,3,2,1],[1,3,3,2],[2,2,1,0],[0,2,0,1]],[[2,2,2,1],[1,3,3,2],[2,2,1,0],[0,2,0,1]],[[1,2,2,1],[1,4,3,2],[2,2,1,0],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[2,2,1,0],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[2,2,1,0],[0,1,2,0]],[[1,3,2,1],[1,3,3,2],[2,2,1,0],[0,1,2,0]],[[2,2,2,1],[1,3,3,2],[2,2,1,0],[0,1,2,0]],[[1,2,2,1],[1,4,3,2],[2,2,1,0],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[2,2,1,0],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[2,2,1,0],[0,1,1,1]],[[1,3,2,1],[1,3,3,2],[2,2,1,0],[0,1,1,1]],[[2,2,2,1],[1,3,3,2],[2,2,1,0],[0,1,1,1]],[[1,2,2,1],[1,4,3,2],[2,2,0,2],[1,1,0,0]],[[1,2,2,2],[1,3,3,2],[2,2,0,2],[1,1,0,0]],[[1,2,3,1],[1,3,3,2],[2,2,0,2],[1,1,0,0]],[[1,3,2,1],[1,3,3,2],[2,2,0,2],[1,1,0,0]],[[2,2,2,1],[1,3,3,2],[2,2,0,2],[1,1,0,0]],[[1,2,2,1],[1,3,3,3],[2,2,0,2],[1,0,0,1]],[[1,2,2,2],[1,3,3,2],[2,2,0,2],[1,0,0,1]],[[1,2,3,1],[1,3,3,2],[2,2,0,2],[1,0,0,1]],[[1,3,2,1],[1,3,3,2],[2,2,0,2],[1,0,0,1]],[[2,2,2,1],[1,3,3,2],[2,2,0,2],[1,0,0,1]],[[0,2,1,0],[3,3,3,1],[2,3,0,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[3,3,0,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,3,0,0],[2,2,2,1]],[[0,2,1,0],[2,3,3,1],[2,3,0,0],[1,3,2,1]],[[0,3,1,0],[2,3,3,1],[2,3,0,1],[0,2,2,1]],[[0,2,1,0],[3,3,3,1],[2,3,0,1],[0,2,2,1]],[[0,2,1,0],[2,4,3,1],[2,3,0,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,1],[3,3,0,1],[0,2,2,1]],[[0,3,1,0],[2,3,3,1],[2,3,0,1],[1,1,2,1]],[[0,2,1,0],[3,3,3,1],[2,3,0,1],[1,1,2,1]],[[0,2,1,0],[2,4,3,1],[2,3,0,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[3,3,0,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,1],[2,3,0,1],[2,1,2,1]],[[0,3,1,0],[2,3,3,1],[2,3,0,1],[1,2,1,1]],[[0,2,1,0],[3,3,3,1],[2,3,0,1],[1,2,1,1]],[[0,2,1,0],[2,4,3,1],[2,3,0,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[3,3,0,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,1],[2,3,0,1],[2,2,1,1]],[[0,3,1,0],[2,3,3,1],[2,3,0,2],[0,2,2,0]],[[0,2,1,0],[3,3,3,1],[2,3,0,2],[0,2,2,0]],[[0,2,1,0],[2,4,3,1],[2,3,0,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,1],[3,3,0,2],[0,2,2,0]],[[0,3,1,0],[2,3,3,1],[2,3,0,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,1],[2,3,0,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,1],[2,3,0,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[3,3,0,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,1],[2,3,0,2],[2,1,2,0]],[[0,3,1,0],[2,3,3,1],[2,3,0,2],[1,2,1,0]],[[0,2,1,0],[3,3,3,1],[2,3,0,2],[1,2,1,0]],[[0,2,1,0],[2,4,3,1],[2,3,0,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[3,3,0,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,1],[2,3,0,2],[2,2,1,0]],[[1,2,2,1],[1,4,3,2],[2,2,0,2],[0,2,0,0]],[[1,2,2,2],[1,3,3,2],[2,2,0,2],[0,2,0,0]],[[1,2,3,1],[1,3,3,2],[2,2,0,2],[0,2,0,0]],[[1,3,2,1],[1,3,3,2],[2,2,0,2],[0,2,0,0]],[[2,2,2,1],[1,3,3,2],[2,2,0,2],[0,2,0,0]],[[0,3,1,0],[2,3,3,1],[2,3,1,1],[0,2,1,1]],[[0,2,1,0],[3,3,3,1],[2,3,1,1],[0,2,1,1]],[[0,2,1,0],[2,4,3,1],[2,3,1,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,1],[3,3,1,1],[0,2,1,1]],[[0,3,1,0],[2,3,3,1],[2,3,1,1],[1,1,1,1]],[[0,2,1,0],[3,3,3,1],[2,3,1,1],[1,1,1,1]],[[0,2,1,0],[2,4,3,1],[2,3,1,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[3,3,1,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,1],[2,3,1,1],[2,1,1,1]],[[0,3,1,0],[2,3,3,1],[2,3,1,1],[1,2,0,1]],[[0,2,1,0],[3,3,3,1],[2,3,1,1],[1,2,0,1]],[[0,2,1,0],[2,4,3,1],[2,3,1,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[3,3,1,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,1],[2,3,1,1],[2,2,0,1]],[[0,3,1,0],[2,3,3,1],[2,3,1,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,1],[2,3,1,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,1],[2,3,1,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,1],[3,3,1,2],[0,2,0,1]],[[0,3,1,0],[2,3,3,1],[2,3,1,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,1],[2,3,1,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,1],[2,3,1,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,1],[3,3,1,2],[0,2,1,0]],[[1,2,2,1],[1,4,3,2],[2,2,0,1],[1,2,0,0]],[[0,3,1,0],[2,3,3,1],[2,3,1,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,1],[2,3,1,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,1],[2,3,1,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[3,3,1,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,1],[2,3,1,2],[2,1,0,1]],[[0,3,1,0],[2,3,3,1],[2,3,1,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,1],[2,3,1,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,1],[2,3,1,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,1],[3,3,1,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,1],[2,3,1,2],[2,1,1,0]],[[1,2,2,2],[1,3,3,2],[2,2,0,1],[1,2,0,0]],[[1,2,3,1],[1,3,3,2],[2,2,0,1],[1,2,0,0]],[[1,3,2,1],[1,3,3,2],[2,2,0,1],[1,2,0,0]],[[2,2,2,1],[1,3,3,2],[2,2,0,1],[1,2,0,0]],[[0,3,1,0],[2,3,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,1,0],[3,3,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,1,0],[2,4,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,1],[3,3,1,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[1,4,3,2],[2,2,0,1],[1,1,1,0]],[[1,2,2,2],[1,3,3,2],[2,2,0,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,2],[2,2,0,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[2,2,0,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[2,2,0,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,2],[2,2,0,1],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[2,2,0,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[2,2,0,1],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[2,2,0,1],[1,1,0,1]],[[2,2,2,1],[1,3,3,2],[2,2,0,1],[1,1,0,1]],[[1,2,2,1],[1,4,3,2],[2,2,0,1],[1,0,2,0]],[[1,2,2,2],[1,3,3,2],[2,2,0,1],[1,0,2,0]],[[1,2,3,1],[1,3,3,2],[2,2,0,1],[1,0,2,0]],[[1,3,2,1],[1,3,3,2],[2,2,0,1],[1,0,2,0]],[[2,2,2,1],[1,3,3,2],[2,2,0,1],[1,0,2,0]],[[1,2,2,1],[1,4,3,2],[2,2,0,1],[1,0,1,1]],[[1,2,2,2],[1,3,3,2],[2,2,0,1],[1,0,1,1]],[[1,2,3,1],[1,3,3,2],[2,2,0,1],[1,0,1,1]],[[1,3,2,1],[1,3,3,2],[2,2,0,1],[1,0,1,1]],[[2,2,2,1],[1,3,3,2],[2,2,0,1],[1,0,1,1]],[[0,3,1,0],[2,3,3,1],[2,3,2,1],[1,0,1,1]],[[0,2,1,0],[3,3,3,1],[2,3,2,1],[1,0,1,1]],[[0,2,1,0],[2,4,3,1],[2,3,2,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,1],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[1,4,3,2],[2,2,0,1],[0,2,1,0]],[[1,2,2,2],[1,3,3,2],[2,2,0,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,2],[2,2,0,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,2],[2,2,0,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,2],[2,2,0,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,2],[2,2,0,1],[0,2,0,1]],[[1,2,2,2],[1,3,3,2],[2,2,0,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,2],[2,2,0,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,2],[2,2,0,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,2],[2,2,0,1],[0,2,0,1]],[[1,2,2,1],[1,4,3,2],[2,2,0,1],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[2,2,0,1],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[2,2,0,1],[0,1,2,0]],[[1,3,2,1],[1,3,3,2],[2,2,0,1],[0,1,2,0]],[[2,2,2,1],[1,3,3,2],[2,2,0,1],[0,1,2,0]],[[1,2,2,1],[1,4,3,2],[2,2,0,1],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[2,2,0,1],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[2,2,0,1],[0,1,1,1]],[[1,3,2,1],[1,3,3,2],[2,2,0,1],[0,1,1,1]],[[2,2,2,1],[1,3,3,2],[2,2,0,1],[0,1,1,1]],[[1,2,2,1],[1,4,3,2],[2,2,0,0],[1,1,2,0]],[[1,2,2,2],[1,3,3,2],[2,2,0,0],[1,1,2,0]],[[1,2,3,1],[1,3,3,2],[2,2,0,0],[1,1,2,0]],[[1,3,2,1],[1,3,3,2],[2,2,0,0],[1,1,2,0]],[[2,2,2,1],[1,3,3,2],[2,2,0,0],[1,1,2,0]],[[1,2,2,1],[1,4,3,2],[2,2,0,0],[0,2,2,0]],[[1,2,2,2],[1,3,3,2],[2,2,0,0],[0,2,2,0]],[[1,2,3,1],[1,3,3,2],[2,2,0,0],[0,2,2,0]],[[1,3,2,1],[1,3,3,2],[2,2,0,0],[0,2,2,0]],[[2,2,2,1],[1,3,3,2],[2,2,0,0],[0,2,2,0]],[[0,3,1,0],[2,3,3,1],[2,3,2,2],[1,0,0,1]],[[0,2,1,0],[3,3,3,1],[2,3,2,2],[1,0,0,1]],[[0,2,1,0],[2,4,3,1],[2,3,2,2],[1,0,0,1]],[[0,2,1,0],[2,3,4,1],[2,3,2,2],[1,0,0,1]],[[0,2,1,0],[2,3,3,1],[3,3,2,2],[1,0,0,1]],[[0,3,1,0],[2,3,3,1],[2,3,2,2],[1,0,1,0]],[[0,2,1,0],[3,3,3,1],[2,3,2,2],[1,0,1,0]],[[0,2,1,0],[2,4,3,1],[2,3,2,2],[1,0,1,0]],[[0,2,1,0],[2,3,4,1],[2,3,2,2],[1,0,1,0]],[[0,2,1,0],[2,3,3,1],[3,3,2,2],[1,0,1,0]],[[1,2,2,1],[1,4,3,2],[2,1,1,0],[1,2,1,0]],[[1,2,2,2],[1,3,3,2],[2,1,1,0],[1,2,1,0]],[[1,2,3,1],[1,3,3,2],[2,1,1,0],[1,2,1,0]],[[1,3,2,1],[1,3,3,2],[2,1,1,0],[1,2,1,0]],[[2,2,2,1],[1,3,3,2],[2,1,1,0],[1,2,1,0]],[[1,2,2,1],[1,4,3,2],[2,1,1,0],[1,2,0,1]],[[1,2,2,2],[1,3,3,2],[2,1,1,0],[1,2,0,1]],[[1,2,3,1],[1,3,3,2],[2,1,1,0],[1,2,0,1]],[[1,3,2,1],[1,3,3,2],[2,1,1,0],[1,2,0,1]],[[2,2,2,1],[1,3,3,2],[2,1,1,0],[1,2,0,1]],[[1,2,2,1],[1,3,3,3],[2,1,0,2],[1,1,1,0]],[[1,2,2,2],[1,3,3,2],[2,1,0,2],[1,1,1,0]],[[1,2,3,1],[1,3,3,2],[2,1,0,2],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[2,1,0,2],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[2,1,0,2],[1,1,1,0]],[[1,2,2,1],[1,3,3,3],[2,1,0,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[2,1,0,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[2,1,0,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[2,1,0,2],[1,1,0,1]],[[2,2,2,1],[1,3,3,2],[2,1,0,2],[1,1,0,1]],[[1,2,2,1],[1,3,3,3],[2,1,0,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,2],[2,1,0,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,2],[2,1,0,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,2],[2,1,0,2],[1,0,2,0]],[[2,2,2,1],[1,3,3,2],[2,1,0,2],[1,0,2,0]],[[1,2,2,1],[1,3,3,3],[2,1,0,2],[1,0,1,1]],[[1,2,2,2],[1,3,3,2],[2,1,0,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,2],[2,1,0,2],[1,0,1,1]],[[1,3,2,1],[1,3,3,2],[2,1,0,2],[1,0,1,1]],[[2,2,2,1],[1,3,3,2],[2,1,0,2],[1,0,1,1]],[[1,2,2,1],[1,3,3,3],[2,1,0,2],[0,2,1,0]],[[1,2,2,2],[1,3,3,2],[2,1,0,2],[0,2,1,0]],[[1,2,3,1],[1,3,3,2],[2,1,0,2],[0,2,1,0]],[[1,3,2,1],[1,3,3,2],[2,1,0,2],[0,2,1,0]],[[2,2,2,1],[1,3,3,2],[2,1,0,2],[0,2,1,0]],[[1,2,2,1],[1,3,3,3],[2,1,0,2],[0,2,0,1]],[[1,2,2,2],[1,3,3,2],[2,1,0,2],[0,2,0,1]],[[1,2,3,1],[1,3,3,2],[2,1,0,2],[0,2,0,1]],[[1,3,2,1],[1,3,3,2],[2,1,0,2],[0,2,0,1]],[[2,2,2,1],[1,3,3,2],[2,1,0,2],[0,2,0,1]],[[1,2,2,1],[1,3,3,3],[2,1,0,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[2,1,0,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[2,1,0,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,2],[2,1,0,2],[0,1,2,0]],[[2,2,2,1],[1,3,3,2],[2,1,0,2],[0,1,2,0]],[[1,2,2,1],[1,3,3,3],[2,1,0,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[2,1,0,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[2,1,0,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,2],[2,1,0,2],[0,1,1,1]],[[2,2,2,1],[1,3,3,2],[2,1,0,2],[0,1,1,1]],[[1,2,2,1],[1,4,3,2],[2,1,0,1],[1,2,1,0]],[[1,2,2,2],[1,3,3,2],[2,1,0,1],[1,2,1,0]],[[1,2,3,1],[1,3,3,2],[2,1,0,1],[1,2,1,0]],[[1,3,2,1],[1,3,3,2],[2,1,0,1],[1,2,1,0]],[[2,2,2,1],[1,3,3,2],[2,1,0,1],[1,2,1,0]],[[1,2,2,1],[1,4,3,2],[2,1,0,1],[1,2,0,1]],[[1,2,2,2],[1,3,3,2],[2,1,0,1],[1,2,0,1]],[[1,2,3,1],[1,3,3,2],[2,1,0,1],[1,2,0,1]],[[1,3,2,1],[1,3,3,2],[2,1,0,1],[1,2,0,1]],[[2,2,2,1],[1,3,3,2],[2,1,0,1],[1,2,0,1]],[[1,2,2,1],[1,4,3,2],[2,1,0,0],[1,2,2,0]],[[1,2,2,2],[1,3,3,2],[2,1,0,0],[1,2,2,0]],[[1,2,3,1],[1,3,3,2],[2,1,0,0],[1,2,2,0]],[[1,3,2,1],[1,3,3,2],[2,1,0,0],[1,2,2,0]],[[2,2,2,1],[1,3,3,2],[2,1,0,0],[1,2,2,0]],[[0,3,1,0],[2,3,3,1],[2,3,3,2],[1,0,0,0]],[[0,2,1,0],[3,3,3,1],[2,3,3,2],[1,0,0,0]],[[0,2,1,0],[2,4,3,1],[2,3,3,2],[1,0,0,0]],[[0,2,1,0],[2,3,4,1],[2,3,3,2],[1,0,0,0]],[[0,2,1,0],[2,3,3,1],[3,3,3,2],[1,0,0,0]],[[1,2,2,1],[1,3,4,2],[2,0,3,0],[1,1,1,0]],[[1,2,2,2],[1,3,3,2],[2,0,3,0],[1,1,1,0]],[[1,2,3,1],[1,3,3,2],[2,0,3,0],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[2,0,3,0],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[2,0,3,0],[1,1,1,0]],[[1,2,2,1],[1,3,4,2],[2,0,3,0],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[2,0,3,0],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[2,0,3,0],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[2,0,3,0],[1,1,0,1]],[[2,2,2,1],[1,3,3,2],[2,0,3,0],[1,1,0,1]],[[1,2,2,1],[1,3,4,2],[2,0,3,0],[1,0,2,0]],[[1,2,2,2],[1,3,3,2],[2,0,3,0],[1,0,2,0]],[[1,2,3,1],[1,3,3,2],[2,0,3,0],[1,0,2,0]],[[1,3,2,1],[1,3,3,2],[2,0,3,0],[1,0,2,0]],[[2,2,2,1],[1,3,3,2],[2,0,3,0],[1,0,2,0]],[[1,2,2,1],[1,3,4,2],[2,0,3,0],[1,0,1,1]],[[1,2,2,2],[1,3,3,2],[2,0,3,0],[1,0,1,1]],[[1,2,3,1],[1,3,3,2],[2,0,3,0],[1,0,1,1]],[[1,3,2,1],[1,3,3,2],[2,0,3,0],[1,0,1,1]],[[2,2,2,1],[1,3,3,2],[2,0,3,0],[1,0,1,1]],[[1,2,2,1],[1,3,4,2],[2,0,3,0],[0,2,1,0]],[[1,2,2,2],[1,3,3,2],[2,0,3,0],[0,2,1,0]],[[1,2,3,1],[1,3,3,2],[2,0,3,0],[0,2,1,0]],[[1,3,2,1],[1,3,3,2],[2,0,3,0],[0,2,1,0]],[[2,2,2,1],[1,3,3,2],[2,0,3,0],[0,2,1,0]],[[1,2,2,1],[1,3,4,2],[2,0,3,0],[0,2,0,1]],[[1,2,2,2],[1,3,3,2],[2,0,3,0],[0,2,0,1]],[[1,2,3,1],[1,3,3,2],[2,0,3,0],[0,2,0,1]],[[1,3,2,1],[1,3,3,2],[2,0,3,0],[0,2,0,1]],[[2,2,2,1],[1,3,3,2],[2,0,3,0],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[0,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[0,0,2,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,0,2,3],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,0,2,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[0,0,2,2],[1,2,2,2]],[[0,2,1,0],[2,3,4,2],[0,0,3,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[0,0,3,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,0,3,3],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,0,3,2],[0,2,2,2]],[[0,2,1,0],[2,3,4,2],[0,0,3,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[0,0,3,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,0,3,3],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,0,3,2],[1,1,2,2]],[[0,2,1,0],[2,3,4,2],[0,0,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[0,0,3,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,0,3,3],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,0,3,2],[1,2,1,2]],[[0,2,1,0],[2,3,4,2],[0,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,3],[0,0,3,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,0,3,3],[1,2,2,0]],[[0,3,1,0],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[0,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[0,1,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,1,1,3],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,1,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,1,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[0,1,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[0,1,1,2],[1,2,2,2]],[[0,3,1,0],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,1,0],[2,3,4,2],[0,1,2,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[0,1,2,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,1,2,3],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,1,2,2],[1,2,1,2]],[[0,3,1,0],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,4,2],[0,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,3],[0,1,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,1,2,3],[1,2,2,0]],[[0,3,1,0],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[0,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[0,1,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,1,4,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,1,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,1,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[0,1,3,0],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[0,1,3,0],[1,2,2,2]],[[0,3,1,0],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,4,2],[0,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[0,1,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,1,4,1],[1,2,1,1]],[[0,3,1,0],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,3,4,2],[0,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,3],[0,1,3,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,1,4,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,1,3,1],[2,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,1,3,1],[1,3,2,0]],[[0,2,1,0],[2,3,3,2],[0,1,3,1],[1,2,3,0]],[[0,2,1,0],[2,3,4,2],[0,1,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,3],[0,1,3,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[0,1,3,3],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[0,1,3,2],[1,0,2,2]],[[0,2,1,0],[2,3,4,2],[0,1,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[0,1,3,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,1,3,3],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,1,3,2],[1,1,1,2]],[[0,2,1,0],[2,3,4,2],[0,1,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,3],[0,1,3,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,1],[1,3,4,2],[2,0,3,0],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[2,0,3,0],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[2,0,3,0],[0,1,2,0]],[[1,3,2,1],[1,3,3,2],[2,0,3,0],[0,1,2,0]],[[2,2,2,1],[1,3,3,2],[2,0,3,0],[0,1,2,0]],[[1,2,2,1],[1,3,4,2],[2,0,3,0],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[2,0,3,0],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[2,0,3,0],[0,1,1,1]],[[1,3,2,1],[1,3,3,2],[2,0,3,0],[0,1,1,1]],[[0,3,1,0],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[0,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[0,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[0,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[0,2,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,0,3],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,0,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,0,2],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,0,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[0,2,0,2],[1,2,2,2]],[[0,3,1,0],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,4,2],[0,2,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[0,2,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,1,3],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,1,2],[1,1,3,1]],[[0,2,1,0],[2,3,3,2],[0,2,1,2],[1,1,2,2]],[[0,3,1,0],[2,3,3,2],[0,2,2,2],[1,0,2,1]],[[0,2,1,0],[2,4,3,2],[0,2,2,2],[1,0,2,1]],[[0,2,1,0],[2,3,4,2],[0,2,2,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,3],[0,2,2,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,2,3],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,2,2],[1,0,2,2]],[[0,3,1,0],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[0,2,2,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[0,2,2,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,2,2,3],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,2,2,2],[1,1,1,2]],[[0,3,1,0],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,4,2],[0,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,3],[0,2,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,2,2,3],[1,1,2,0]],[[0,3,1,0],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,1,0],[3,3,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,1,0],[2,4,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,4,2],[0,2,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,3],[0,2,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,2,2,3],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,2,2,2],[1,2,0,2]],[[0,3,1,0],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,1,0],[3,3,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,1,0],[2,4,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,4,2],[0,2,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,3],[0,2,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,2,2,3],[1,2,1,0]],[[2,2,2,1],[1,3,3,2],[2,0,3,0],[0,1,1,1]],[[1,2,2,1],[1,3,4,2],[2,0,3,0],[0,0,2,1]],[[1,2,2,2],[1,3,3,2],[2,0,3,0],[0,0,2,1]],[[1,2,3,1],[1,3,3,2],[2,0,3,0],[0,0,2,1]],[[1,3,2,1],[1,3,3,2],[2,0,3,0],[0,0,2,1]],[[2,2,2,1],[1,3,3,2],[2,0,3,0],[0,0,2,1]],[[0,3,1,0],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,4,2],[0,2,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[0,2,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,4,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,3,0],[1,1,3,1]],[[0,2,1,0],[2,3,3,2],[0,2,3,0],[1,1,2,2]],[[0,3,1,0],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[0,2,3,0],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[0,2,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,4,2],[0,2,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[0,2,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,2,4,0],[1,2,1,1]],[[0,3,1,0],[2,3,3,2],[0,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,4,3,2],[0,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,4,2],[0,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,3],[0,2,3,1],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,4,1],[1,0,2,1]],[[0,3,1,0],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[0,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[0,2,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,2,4,1],[1,1,1,1]],[[0,3,1,0],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,1,0],[2,3,4,2],[0,2,3,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,3],[0,2,3,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,2,4,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,2,3,1],[1,1,3,0]],[[0,3,1,0],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,1,0],[3,3,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,4,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,4,2],[0,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,3],[0,2,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,2,4,1],[1,2,0,1]],[[0,3,1,0],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,1,0],[3,3,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,1,0],[2,4,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,4,2],[0,2,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,3],[0,2,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,2,4,1],[1,2,1,0]],[[0,2,1,0],[2,3,4,2],[0,2,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,3],[0,2,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,3,3],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[0,2,3,2],[0,0,2,2]],[[0,2,1,0],[2,3,4,2],[0,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[0,2,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,2,3,3],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,2,3,2],[0,1,1,2]],[[0,2,1,0],[2,3,4,2],[0,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[0,2,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,2,3,3],[0,1,2,0]],[[0,3,1,0],[2,3,3,2],[0,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,2],[0,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,4,2],[0,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,3],[0,2,3,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[1,3,3,3],[2,0,2,2],[1,0,0,1]],[[1,2,2,2],[1,3,3,2],[2,0,2,2],[1,0,0,1]],[[1,2,3,1],[1,3,3,2],[2,0,2,2],[1,0,0,1]],[[1,3,2,1],[1,3,3,2],[2,0,2,2],[1,0,0,1]],[[2,2,2,1],[1,3,3,2],[2,0,2,2],[1,0,0,1]],[[0,3,1,0],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[0,3,0,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[0,3,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[0,3,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[0,3,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,4,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,0,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,0,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,0,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[0,3,0,1],[1,2,2,2]],[[0,3,1,0],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[0,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[0,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,4,2],[0,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[0,3,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,4,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,0,3],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,0,2],[1,1,3,1]],[[0,2,1,0],[2,3,3,2],[0,3,0,2],[1,1,2,2]],[[0,3,1,0],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[0,3,0,2],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[0,3,0,2],[1,2,1,1]],[[0,2,1,0],[2,3,4,2],[0,3,0,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[0,3,0,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,4,0,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,0,3],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,0,2],[2,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,0,2],[1,3,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,0,2],[1,2,1,2]],[[0,3,1,0],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[0,3,0,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[0,3,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,4,2],[0,3,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,3],[0,3,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,4,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,3,0,3],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,3,0,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,3,0,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,2],[0,3,0,2],[1,2,3,0]],[[0,3,1,0],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[0,3,1,0],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[0,3,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[0,3,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[0,3,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,4,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,0],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,0],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,0],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,0],[1,2,2,2]],[[0,3,1,0],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[0,3,1,1],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[0,3,1,1],[1,2,2,0]],[[0,2,1,0],[2,3,4,2],[0,3,1,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,3],[0,3,1,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,4,1,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,3,1,1],[2,2,2,0]],[[0,2,1,0],[2,3,3,2],[0,3,1,1],[1,3,2,0]],[[0,2,1,0],[2,3,3,2],[0,3,1,1],[1,2,3,0]],[[0,3,1,0],[2,3,3,2],[0,3,1,2],[0,1,2,1]],[[0,2,1,0],[2,4,3,2],[0,3,1,2],[0,1,2,1]],[[0,2,1,0],[2,3,4,2],[0,3,1,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,3],[0,3,1,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,3],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,2],[0,1,3,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,2],[0,1,2,2]],[[0,3,1,0],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[0,3,1,2],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[0,3,1,2],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[0,3,1,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[0,3,1,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,4,1,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,3],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,2],[1,1,1,2]],[[0,3,1,0],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[0,3,1,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[0,3,1,2],[1,1,2,0]],[[0,2,1,0],[2,3,4,2],[0,3,1,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,3],[0,3,1,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,4,1,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,3,1,3],[1,1,2,0]],[[0,3,1,0],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[0,2,1,0],[3,3,3,2],[0,3,1,2],[1,2,0,1]],[[0,2,1,0],[2,4,3,2],[0,3,1,2],[1,2,0,1]],[[0,2,1,0],[2,3,4,2],[0,3,1,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,3],[0,3,1,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,4,1,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,3],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,2],[2,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,2],[1,3,0,1]],[[0,2,1,0],[2,3,3,2],[0,3,1,2],[1,2,0,2]],[[0,3,1,0],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[0,2,1,0],[3,3,3,2],[0,3,1,2],[1,2,1,0]],[[0,2,1,0],[2,4,3,2],[0,3,1,2],[1,2,1,0]],[[0,2,1,0],[2,3,4,2],[0,3,1,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,3],[0,3,1,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,4,1,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,3,1,3],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,3,1,2],[2,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,3,1,2],[1,3,1,0]],[[1,2,2,1],[1,3,3,3],[2,0,2,2],[0,1,0,1]],[[1,2,2,2],[1,3,3,2],[2,0,2,2],[0,1,0,1]],[[1,2,3,1],[1,3,3,2],[2,0,2,2],[0,1,0,1]],[[1,3,2,1],[1,3,3,2],[2,0,2,2],[0,1,0,1]],[[2,2,2,1],[1,3,3,2],[2,0,2,2],[0,1,0,1]],[[0,3,1,0],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[0,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[0,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,3,4,2],[0,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[0,3,2,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,4,2,0],[1,1,2,1]],[[0,3,1,0],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[0,3,2,0],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[0,3,2,0],[1,2,1,1]],[[0,2,1,0],[2,3,4,2],[0,3,2,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[0,3,2,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,4,2,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,2,0],[2,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,2,0],[1,3,1,1]],[[0,3,1,0],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[0,3,2,1],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[0,3,2,1],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[0,3,2,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[0,3,2,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,4,2,1],[1,1,1,1]],[[0,3,1,0],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[0,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[0,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,3,4,2],[0,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,3],[0,3,2,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,4,2,1],[1,1,2,0]],[[0,3,1,0],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[0,2,1,0],[3,3,3,2],[0,3,2,1],[1,2,0,1]],[[0,2,1,0],[2,4,3,2],[0,3,2,1],[1,2,0,1]],[[0,2,1,0],[2,3,4,2],[0,3,2,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,3],[0,3,2,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,4,2,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,3,2,1],[2,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,3,2,1],[1,3,0,1]],[[0,3,1,0],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[0,2,1,0],[3,3,3,2],[0,3,2,1],[1,2,1,0]],[[0,2,1,0],[2,4,3,2],[0,3,2,1],[1,2,1,0]],[[0,2,1,0],[2,3,4,2],[0,3,2,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,3],[0,3,2,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,4,2,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,3,2,1],[2,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,3,2,1],[1,3,1,0]],[[0,3,1,0],[2,3,3,2],[0,3,2,2],[0,0,2,1]],[[0,2,1,0],[2,4,3,2],[0,3,2,2],[0,0,2,1]],[[0,2,1,0],[2,3,4,2],[0,3,2,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,3],[0,3,2,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,2,3],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,2,2],[0,0,2,2]],[[0,3,1,0],[2,3,3,2],[0,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,2],[0,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,4,2],[0,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[0,3,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,2,3],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,2,2],[0,1,1,2]],[[0,3,1,0],[2,3,3,2],[0,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[0,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[0,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[0,3,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,3,2,3],[0,1,2,0]],[[0,3,1,0],[2,3,3,2],[0,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[0,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[0,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,3],[0,3,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,3,2,3],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,3,2,2],[0,2,0,2]],[[0,3,1,0],[2,3,3,2],[0,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[0,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[0,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,3],[0,3,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,1],[1,3,3,3],[2,0,1,2],[1,1,1,0]],[[1,2,2,2],[1,3,3,2],[2,0,1,2],[1,1,1,0]],[[1,2,3,1],[1,3,3,2],[2,0,1,2],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[2,0,1,2],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[2,0,1,2],[1,1,1,0]],[[1,2,2,1],[1,3,3,3],[2,0,1,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[2,0,1,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[2,0,1,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[2,0,1,2],[1,1,0,1]],[[2,2,2,1],[1,3,3,2],[2,0,1,2],[1,1,0,1]],[[1,2,2,1],[1,3,3,3],[2,0,1,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,2],[2,0,1,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,2],[2,0,1,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,2],[2,0,1,2],[1,0,2,0]],[[2,2,2,1],[1,3,3,2],[2,0,1,2],[1,0,2,0]],[[1,2,2,1],[1,3,3,3],[2,0,1,2],[1,0,1,1]],[[0,3,1,0],[2,3,3,2],[0,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,4,3,2],[0,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,4,2],[0,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,3],[0,3,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,4,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,3,0],[0,1,3,1]],[[0,2,1,0],[2,3,3,2],[0,3,3,0],[0,1,2,2]],[[0,3,1,0],[2,3,3,2],[0,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[0,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,4,2],[0,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[0,3,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,4,0],[0,2,1,1]],[[0,3,1,0],[2,3,3,2],[0,3,3,0],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[0,3,3,0],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[0,3,3,0],[1,1,2,0]],[[0,2,1,0],[2,3,4,2],[0,3,3,0],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,4,3,0],[1,1,2,0]],[[0,3,1,0],[2,3,3,2],[0,3,3,0],[1,2,1,0]],[[0,2,1,0],[3,3,3,2],[0,3,3,0],[1,2,1,0]],[[0,2,1,0],[2,4,3,2],[0,3,3,0],[1,2,1,0]],[[0,2,1,0],[2,3,4,2],[0,3,3,0],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,4,3,0],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,3,3,0],[2,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,3,3,0],[1,3,1,0]],[[1,2,2,2],[1,3,3,2],[2,0,1,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,2],[2,0,1,2],[1,0,1,1]],[[1,3,2,1],[1,3,3,2],[2,0,1,2],[1,0,1,1]],[[2,2,2,1],[1,3,3,2],[2,0,1,2],[1,0,1,1]],[[0,3,1,0],[2,3,3,2],[0,3,3,1],[0,0,2,1]],[[0,2,1,0],[2,4,3,2],[0,3,3,1],[0,0,2,1]],[[0,2,1,0],[2,3,4,2],[0,3,3,1],[0,0,2,1]],[[0,2,1,0],[2,3,3,3],[0,3,3,1],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[0,3,4,1],[0,0,2,1]],[[0,3,1,0],[2,3,3,2],[0,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,4,3,2],[0,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,4,2],[0,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[0,3,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[0,3,4,1],[0,1,1,1]],[[0,3,1,0],[2,3,3,2],[0,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[0,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[0,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[0,3,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,3,4,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[0,3,3,1],[0,1,3,0]],[[0,3,1,0],[2,3,3,2],[0,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[0,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[0,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,3],[0,3,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[0,3,4,1],[0,2,0,1]],[[0,3,1,0],[2,3,3,2],[0,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[0,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[0,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,3],[0,3,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,2,1],[1,3,3,3],[2,0,1,2],[0,2,1,0]],[[1,2,2,2],[1,3,3,2],[2,0,1,2],[0,2,1,0]],[[1,2,3,1],[1,3,3,2],[2,0,1,2],[0,2,1,0]],[[1,3,2,1],[1,3,3,2],[2,0,1,2],[0,2,1,0]],[[2,2,2,1],[1,3,3,2],[2,0,1,2],[0,2,1,0]],[[1,2,2,1],[1,3,3,3],[2,0,1,2],[0,2,0,1]],[[1,2,2,2],[1,3,3,2],[2,0,1,2],[0,2,0,1]],[[1,2,3,1],[1,3,3,2],[2,0,1,2],[0,2,0,1]],[[1,3,2,1],[1,3,3,2],[2,0,1,2],[0,2,0,1]],[[2,2,2,1],[1,3,3,2],[2,0,1,2],[0,2,0,1]],[[0,3,1,0],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[0,2,1,0],[3,3,3,2],[0,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,4,3,2],[0,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,3,4,2],[0,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,3,3,3],[0,3,3,1],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[0,4,3,1],[1,2,0,0]],[[1,2,2,1],[1,3,3,3],[2,0,1,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[2,0,1,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[2,0,1,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,2],[2,0,1,2],[0,1,2,0]],[[2,2,2,1],[1,3,3,2],[2,0,1,2],[0,1,2,0]],[[1,2,2,1],[1,3,3,3],[2,0,1,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[2,0,1,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[2,0,1,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,2],[2,0,1,2],[0,1,1,1]],[[2,2,2,1],[1,3,3,2],[2,0,1,2],[0,1,1,1]],[[1,2,2,1],[1,3,3,3],[2,0,1,2],[0,0,2,1]],[[1,2,2,2],[1,3,3,2],[2,0,1,2],[0,0,2,1]],[[1,2,3,1],[1,3,3,2],[2,0,1,2],[0,0,2,1]],[[1,3,2,1],[1,3,3,2],[2,0,1,2],[0,0,2,1]],[[2,2,2,1],[1,3,3,2],[2,0,1,2],[0,0,2,1]],[[0,3,1,0],[2,3,3,2],[0,3,3,2],[0,1,0,1]],[[0,2,1,0],[2,4,3,2],[0,3,3,2],[0,1,0,1]],[[0,2,1,0],[2,3,4,2],[0,3,3,2],[0,1,0,1]],[[0,2,1,0],[2,3,3,3],[0,3,3,2],[0,1,0,1]],[[0,2,1,0],[2,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,3,3,3],[2,0,0,2],[1,2,1,0]],[[1,2,2,2],[1,3,3,2],[2,0,0,2],[1,2,1,0]],[[1,2,3,1],[1,3,3,2],[2,0,0,2],[1,2,1,0]],[[1,3,2,1],[1,3,3,2],[2,0,0,2],[1,2,1,0]],[[2,2,2,1],[1,3,3,2],[2,0,0,2],[1,2,1,0]],[[1,2,2,1],[1,3,3,3],[2,0,0,2],[1,2,0,1]],[[1,2,2,2],[1,3,3,2],[2,0,0,2],[1,2,0,1]],[[1,2,3,1],[1,3,3,2],[2,0,0,2],[1,2,0,1]],[[1,3,2,1],[1,3,3,2],[2,0,0,2],[1,2,0,1]],[[2,2,2,1],[1,3,3,2],[2,0,0,2],[1,2,0,1]],[[1,2,2,1],[1,3,3,3],[2,0,0,2],[1,0,2,1]],[[1,2,2,2],[1,3,3,2],[2,0,0,2],[1,0,2,1]],[[1,2,3,1],[1,3,3,2],[2,0,0,2],[1,0,2,1]],[[1,3,2,1],[1,3,3,2],[2,0,0,2],[1,0,2,1]],[[2,2,2,1],[1,3,3,2],[2,0,0,2],[1,0,2,1]],[[1,2,2,1],[1,3,3,3],[2,0,0,2],[0,1,2,1]],[[1,2,2,2],[1,3,3,2],[2,0,0,2],[0,1,2,1]],[[1,2,3,1],[1,3,3,2],[2,0,0,2],[0,1,2,1]],[[1,3,2,1],[1,3,3,2],[2,0,0,2],[0,1,2,1]],[[2,2,2,1],[1,3,3,2],[2,0,0,2],[0,1,2,1]],[[1,2,2,1],[1,4,3,2],[1,3,2,0],[1,1,0,0]],[[1,2,2,2],[1,3,3,2],[1,3,2,0],[1,1,0,0]],[[1,2,3,1],[1,3,3,2],[1,3,2,0],[1,1,0,0]],[[1,3,2,1],[1,3,3,2],[1,3,2,0],[1,1,0,0]],[[2,2,2,1],[1,3,3,2],[1,3,2,0],[1,1,0,0]],[[0,3,1,0],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[1,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[1,0,1,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,1,3],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,1,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,1,2],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,1,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[1,0,1,2],[1,2,2,2]],[[0,2,1,0],[2,3,4,2],[1,0,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[1,0,2,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,2,3],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,2,2],[0,2,3,1]],[[0,2,1,0],[2,3,3,2],[1,0,2,2],[0,2,2,2]],[[0,3,1,0],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,1,0],[2,3,4,2],[1,0,2,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[1,0,2,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,0,2,3],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,0,2,2],[1,2,1,2]],[[0,3,1,0],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,4,2],[1,0,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,3],[1,0,2,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,0,2,3],[1,2,2,0]],[[0,3,1,0],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[1,0,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[1,0,3,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,4,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,3,0],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,3,0],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,3,0],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[1,0,3,0],[1,2,2,2]],[[0,3,1,0],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,4,2],[1,0,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[1,0,3,1],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,0,4,1],[1,2,1,1]],[[0,3,1,0],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,1,0],[2,3,4,2],[1,0,3,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,3],[1,0,3,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,0,4,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,0,3,1],[2,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,0,3,1],[1,3,2,0]],[[0,2,1,0],[2,3,3,2],[1,0,3,1],[1,2,3,0]],[[0,2,1,0],[2,3,4,2],[1,0,3,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,3],[1,0,3,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,3,3],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,0,3,2],[0,1,2,2]],[[0,2,1,0],[2,3,4,2],[1,0,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[1,0,3,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,0,3,3],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,0,3,2],[0,2,1,2]],[[0,2,1,0],[2,3,4,2],[1,0,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,3],[1,0,3,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[1,4,3,2],[1,3,2,0],[0,2,0,0]],[[0,3,1,0],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[1,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[1,1,0,2],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,0,3],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,0,2],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,0,2],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,0,2],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[1,1,0,2],[1,2,2,2]],[[0,3,1,0],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,1,0],[3,3,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,1,0],[2,4,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,4,2],[1,1,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[1,1,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,1,3],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,1,2],[0,3,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,1,2],[0,2,3,1]],[[0,2,1,0],[2,3,3,2],[1,1,1,2],[0,2,2,2]],[[0,3,1,0],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,1,0],[3,3,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,1,0],[2,3,4,2],[1,1,2,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[1,1,2,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,1,2,3],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,1,2,2],[0,2,1,2]],[[0,3,1,0],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,1,0],[3,3,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,1,0],[2,4,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,4,2],[1,1,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,3],[1,1,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,2],[1,3,3,2],[1,3,2,0],[0,2,0,0]],[[1,2,3,1],[1,3,3,2],[1,3,2,0],[0,2,0,0]],[[1,3,2,1],[1,3,3,2],[1,3,2,0],[0,2,0,0]],[[2,2,2,1],[1,3,3,2],[1,3,2,0],[0,2,0,0]],[[0,3,1,0],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,1,0],[3,3,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,1,0],[2,4,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,4,2],[1,1,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[1,1,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,4,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,3,0],[0,3,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,3,0],[0,2,3,1]],[[0,2,1,0],[2,3,3,2],[1,1,3,0],[0,2,2,2]],[[0,3,1,0],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,1,0],[3,3,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,4,2],[1,1,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[1,1,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,1,4,1],[0,2,1,1]],[[0,3,1,0],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,1,0],[3,3,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,1,0],[2,4,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,1,0],[2,3,4,2],[1,1,3,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,3],[1,1,3,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,1,4,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,1,3,1],[0,3,2,0]],[[0,2,1,0],[2,3,3,2],[1,1,3,1],[0,2,3,0]],[[0,2,1,0],[2,3,4,2],[1,1,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,3],[1,1,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,3,3],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,1,3,2],[0,0,2,2]],[[0,2,1,0],[2,3,4,2],[1,1,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[1,1,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,1,3,3],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,1,3,2],[0,1,1,2]],[[0,2,1,0],[2,3,4,2],[1,1,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[1,1,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[1,1,3,3],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[1,1,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,3],[1,1,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,1,3,3],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,1,3,2],[1,0,1,2]],[[0,2,1,0],[2,3,4,2],[1,1,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,3],[1,1,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,1],[1,3,3,3],[1,3,1,2],[0,0,0,1]],[[1,2,2,2],[1,3,3,2],[1,3,1,2],[0,0,0,1]],[[1,2,3,1],[1,3,3,2],[1,3,1,2],[0,0,0,1]],[[1,3,2,1],[1,3,3,2],[1,3,1,2],[0,0,0,1]],[[2,2,2,1],[1,3,3,2],[1,3,1,2],[0,0,0,1]],[[0,3,1,0],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[0,2,1,0],[3,3,3,2],[1,2,0,2],[0,2,2,1]],[[0,2,1,0],[2,4,3,2],[1,2,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,4,2],[1,2,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[1,2,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,0,3],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,0,2],[0,3,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,0,2],[0,2,3,1]],[[0,2,1,0],[2,3,3,2],[1,2,0,2],[0,2,2,2]],[[0,3,1,0],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,1,0],[3,3,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,1,0],[2,4,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,1,0],[2,3,4,2],[1,2,1,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,3],[1,2,1,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,1,3],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,1,2],[0,1,3,1]],[[0,2,1,0],[2,3,3,2],[1,2,1,2],[0,1,2,2]],[[0,3,1,0],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,1,0],[3,3,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,1,0],[2,4,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,1,0],[2,3,4,2],[1,2,1,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,3],[1,2,1,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,1,3],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,1,2],[1,0,3,1]],[[0,2,1,0],[2,3,3,2],[1,2,1,2],[1,0,2,2]],[[0,3,1,0],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,1,0],[3,3,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,1,0],[2,4,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,1,0],[2,3,4,2],[1,2,2,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,3],[1,2,2,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,2,3],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,2,2],[0,0,2,2]],[[0,3,1,0],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,1,0],[3,3,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,4,2],[1,2,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[1,2,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,2,2,3],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,2,2,2],[0,1,1,2]],[[0,3,1,0],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,1,0],[3,3,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[1,2,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[1,2,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[1,2,2,3],[0,1,2,0]],[[0,3,1,0],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[1,2,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,3],[1,2,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[1,2,2,3],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[1,2,2,2],[0,2,0,2]],[[0,3,1,0],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[1,2,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,3],[1,2,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[1,2,2,3],[0,2,1,0]],[[0,3,1,0],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,1,0],[3,3,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,1,0],[2,4,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,4,2],[1,2,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,3],[1,2,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,2,2,3],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,2,2,2],[1,0,1,2]],[[0,3,1,0],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,1,0],[3,3,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,1,0],[2,4,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,4,2],[1,2,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,3],[1,2,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[1,2,2,3],[1,0,2,0]],[[0,3,1,0],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,4,2],[1,2,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,3],[1,2,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[1,2,2,3],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[1,2,2,2],[1,1,0,2]],[[0,3,1,0],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,4,2],[1,2,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,3],[1,2,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,1],[1,4,3,2],[1,3,1,0],[1,2,0,0]],[[1,2,2,2],[1,3,3,2],[1,3,1,0],[1,2,0,0]],[[1,2,3,1],[1,3,3,2],[1,3,1,0],[1,2,0,0]],[[1,3,2,1],[1,3,3,2],[1,3,1,0],[1,2,0,0]],[[2,2,2,1],[1,3,3,2],[1,3,1,0],[1,2,0,0]],[[0,3,1,0],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,1,0],[3,3,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,1,0],[2,4,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,4,2],[1,2,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,3],[1,2,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,4,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,3,0],[0,1,3,1]],[[0,2,1,0],[2,3,3,2],[1,2,3,0],[0,1,2,2]],[[0,3,1,0],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[0,2,1,0],[3,3,3,2],[1,2,3,0],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[1,2,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,4,2],[1,2,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[1,2,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,2,4,0],[0,2,1,1]],[[0,3,1,0],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,1,0],[3,3,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,1,0],[2,4,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,4,2],[1,2,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,3],[1,2,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,4,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,3,0],[1,0,3,1]],[[0,2,1,0],[2,3,3,2],[1,2,3,0],[1,0,2,2]],[[0,3,1,0],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[1,2,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[1,2,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,2,4,0],[1,1,1,1]],[[0,3,1,0],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,1,0],[3,3,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,1,0],[2,4,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,1,0],[2,3,4,2],[1,2,3,1],[0,0,2,1]],[[0,2,1,0],[2,3,3,3],[1,2,3,1],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,2,4,1],[0,0,2,1]],[[0,3,1,0],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,1,0],[3,3,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,1,0],[2,4,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,4,2],[1,2,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[1,2,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,2,4,1],[0,1,1,1]],[[0,3,1,0],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,1,0],[3,3,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[1,2,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[1,2,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[1,2,4,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[1,2,3,1],[0,1,3,0]],[[0,3,1,0],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,1,0],[3,3,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[1,2,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,3],[1,2,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[1,2,4,1],[0,2,0,1]],[[0,3,1,0],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[1,2,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,3],[1,2,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[1,2,4,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,2],[1,3,1,0],[1,1,1,0]],[[1,2,2,2],[1,3,3,2],[1,3,1,0],[1,1,1,0]],[[1,2,3,1],[1,3,3,2],[1,3,1,0],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[1,3,1,0],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[1,3,1,0],[1,1,1,0]],[[1,2,2,1],[1,4,3,2],[1,3,1,0],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[1,3,1,0],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[1,3,1,0],[1,1,0,1]],[[0,3,1,0],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,1,0],[3,3,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,1,0],[2,4,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,4,2],[1,2,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,3],[1,2,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,2,4,1],[1,0,1,1]],[[0,3,1,0],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,1,0],[3,3,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,1,0],[2,4,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,4,2],[1,2,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,3],[1,2,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[1,2,4,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[1,2,3,1],[1,0,3,0]],[[0,3,1,0],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,1,0],[3,3,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,1,0],[2,4,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,4,2],[1,2,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,3],[1,2,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[1,2,4,1],[1,1,0,1]],[[0,3,1,0],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,4,2],[1,2,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,3],[1,2,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[1,3,1,0],[1,1,0,1]],[[2,2,2,1],[1,3,3,2],[1,3,1,0],[1,1,0,1]],[[1,2,2,1],[1,4,3,2],[1,3,1,0],[1,0,2,0]],[[1,2,2,2],[1,3,3,2],[1,3,1,0],[1,0,2,0]],[[1,2,3,1],[1,3,3,2],[1,3,1,0],[1,0,2,0]],[[1,3,2,1],[1,3,3,2],[1,3,1,0],[1,0,2,0]],[[2,2,2,1],[1,3,3,2],[1,3,1,0],[1,0,2,0]],[[1,2,2,1],[1,4,3,2],[1,3,1,0],[1,0,1,1]],[[1,2,2,2],[1,3,3,2],[1,3,1,0],[1,0,1,1]],[[1,2,3,1],[1,3,3,2],[1,3,1,0],[1,0,1,1]],[[1,3,2,1],[1,3,3,2],[1,3,1,0],[1,0,1,1]],[[2,2,2,1],[1,3,3,2],[1,3,1,0],[1,0,1,1]],[[1,2,2,1],[1,4,3,2],[1,3,1,0],[0,2,1,0]],[[1,2,2,2],[1,3,3,2],[1,3,1,0],[0,2,1,0]],[[1,2,3,1],[1,3,3,2],[1,3,1,0],[0,2,1,0]],[[0,3,1,0],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,1,0],[3,3,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,1,0],[2,4,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,1,0],[2,3,4,2],[1,2,3,2],[0,1,0,1]],[[0,2,1,0],[2,3,3,3],[1,2,3,2],[0,1,0,1]],[[0,2,1,0],[2,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,3,2,1],[1,3,3,2],[1,3,1,0],[0,2,1,0]],[[2,2,2,1],[1,3,3,2],[1,3,1,0],[0,2,1,0]],[[1,2,2,1],[1,4,3,2],[1,3,1,0],[0,2,0,1]],[[1,2,2,2],[1,3,3,2],[1,3,1,0],[0,2,0,1]],[[1,2,3,1],[1,3,3,2],[1,3,1,0],[0,2,0,1]],[[1,3,2,1],[1,3,3,2],[1,3,1,0],[0,2,0,1]],[[2,2,2,1],[1,3,3,2],[1,3,1,0],[0,2,0,1]],[[1,2,2,1],[1,4,3,2],[1,3,1,0],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[1,3,1,0],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[1,3,1,0],[0,1,2,0]],[[1,3,2,1],[1,3,3,2],[1,3,1,0],[0,1,2,0]],[[2,2,2,1],[1,3,3,2],[1,3,1,0],[0,1,2,0]],[[1,2,2,1],[1,4,3,2],[1,3,1,0],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[1,3,1,0],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[1,3,1,0],[0,1,1,1]],[[1,3,2,1],[1,3,3,2],[1,3,1,0],[0,1,1,1]],[[2,2,2,1],[1,3,3,2],[1,3,1,0],[0,1,1,1]],[[0,3,1,0],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,1,0],[3,3,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,1,0],[2,4,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,1,0],[2,3,4,2],[1,2,3,2],[1,0,0,1]],[[0,2,1,0],[2,3,3,3],[1,2,3,2],[1,0,0,1]],[[0,2,1,0],[2,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[1,4,3,2],[1,3,0,2],[1,1,0,0]],[[1,2,2,2],[1,3,3,2],[1,3,0,2],[1,1,0,0]],[[1,2,3,1],[1,3,3,2],[1,3,0,2],[1,1,0,0]],[[1,3,2,1],[1,3,3,2],[1,3,0,2],[1,1,0,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,2],[1,1,0,0]],[[1,2,2,1],[1,3,3,3],[1,3,0,2],[1,0,0,1]],[[1,2,2,2],[1,3,3,2],[1,3,0,2],[1,0,0,1]],[[1,2,3,1],[1,3,3,2],[1,3,0,2],[1,0,0,1]],[[1,3,2,1],[1,3,3,2],[1,3,0,2],[1,0,0,1]],[[2,2,2,1],[1,3,3,2],[1,3,0,2],[1,0,0,1]],[[1,2,2,1],[1,4,3,2],[1,3,0,2],[0,2,0,0]],[[1,2,2,2],[1,3,3,2],[1,3,0,2],[0,2,0,0]],[[1,2,3,1],[1,3,3,2],[1,3,0,2],[0,2,0,0]],[[1,3,2,1],[1,3,3,2],[1,3,0,2],[0,2,0,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,2],[0,2,0,0]],[[1,2,2,1],[1,3,3,3],[1,3,0,2],[0,1,0,1]],[[1,2,2,2],[1,3,3,2],[1,3,0,2],[0,1,0,1]],[[1,2,3,1],[1,3,3,2],[1,3,0,2],[0,1,0,1]],[[1,3,2,1],[1,3,3,2],[1,3,0,2],[0,1,0,1]],[[2,2,2,1],[1,3,3,2],[1,3,0,2],[0,1,0,1]],[[1,2,2,1],[1,3,3,3],[1,3,0,2],[0,0,2,0]],[[1,2,2,2],[1,3,3,2],[1,3,0,2],[0,0,2,0]],[[1,2,3,1],[1,3,3,2],[1,3,0,2],[0,0,2,0]],[[1,3,2,1],[1,3,3,2],[1,3,0,2],[0,0,2,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,2],[0,0,2,0]],[[1,2,2,1],[1,3,3,3],[1,3,0,2],[0,0,1,1]],[[1,2,2,2],[1,3,3,2],[1,3,0,2],[0,0,1,1]],[[1,2,3,1],[1,3,3,2],[1,3,0,2],[0,0,1,1]],[[1,3,2,1],[1,3,3,2],[1,3,0,2],[0,0,1,1]],[[2,2,2,1],[1,3,3,2],[1,3,0,2],[0,0,1,1]],[[0,3,1,0],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[0,2,1,0],[3,3,3,2],[1,3,0,1],[0,2,2,1]],[[0,2,1,0],[2,4,3,2],[1,3,0,1],[0,2,2,1]],[[0,2,1,0],[2,3,4,2],[1,3,0,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[1,3,0,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,4,0,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,1],[0,3,2,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,1],[0,2,3,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,1],[0,2,2,2]],[[0,3,1,0],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[1,3,0,1],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[1,3,0,1],[1,1,2,1]],[[0,2,1,0],[2,3,4,2],[1,3,0,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[1,3,0,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,4,0,1],[1,1,2,1]],[[0,3,1,0],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[0,2,1,0],[3,3,3,2],[1,3,0,2],[0,1,2,1]],[[0,2,1,0],[2,4,3,2],[1,3,0,2],[0,1,2,1]],[[0,2,1,0],[2,3,4,2],[1,3,0,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,3],[1,3,0,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,4,0,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,3],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,2],[0,1,3,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,2],[0,1,2,2]],[[0,3,1,0],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[0,2,1,0],[3,3,3,2],[1,3,0,2],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[1,3,0,2],[0,2,1,1]],[[0,2,1,0],[2,3,4,2],[1,3,0,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[1,3,0,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,4,0,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,3],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,2],[0,3,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,2],[0,2,1,2]],[[0,3,1,0],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,0,2],[0,2,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,0,2],[0,2,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,0,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,3],[1,3,0,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,4,0,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,3,0,3],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,3,0,2],[0,3,2,0]],[[0,2,1,0],[2,3,3,2],[1,3,0,2],[0,2,3,0]],[[0,3,1,0],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[0,2,1,0],[3,3,3,2],[1,3,0,2],[1,0,2,1]],[[0,2,1,0],[2,4,3,2],[1,3,0,2],[1,0,2,1]],[[0,2,1,0],[2,3,4,2],[1,3,0,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,3],[1,3,0,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,4,0,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,3],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,2],[1,0,3,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,2],[1,0,2,2]],[[0,3,1,0],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[1,3,0,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[1,3,0,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,4,0,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,3],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,0,2],[1,1,1,2]],[[0,3,1,0],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,0,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,3],[1,3,0,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[1,4,0,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,2,1],[1,4,3,2],[1,3,0,1],[1,2,0,0]],[[1,2,2,2],[1,3,3,2],[1,3,0,1],[1,2,0,0]],[[1,2,3,1],[1,3,3,2],[1,3,0,1],[1,2,0,0]],[[1,3,2,1],[1,3,3,2],[1,3,0,1],[1,2,0,0]],[[0,3,1,0],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[0,2,1,0],[3,3,3,2],[1,3,1,0],[0,2,2,1]],[[0,2,1,0],[2,4,3,2],[1,3,1,0],[0,2,2,1]],[[0,2,1,0],[2,3,4,2],[1,3,1,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[1,3,1,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,4,1,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,0],[0,3,2,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,0],[0,2,3,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,0],[0,2,2,2]],[[0,3,1,0],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[1,3,1,0],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[1,3,1,0],[1,1,2,1]],[[0,2,1,0],[2,3,4,2],[1,3,1,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[1,3,1,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,4,1,0],[1,1,2,1]],[[0,3,1,0],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,1,1],[0,2,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,1,1],[0,2,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,1,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,3],[1,3,1,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,4,1,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[1,3,1,1],[0,3,2,0]],[[0,2,1,0],[2,3,3,2],[1,3,1,1],[0,2,3,0]],[[0,3,1,0],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,1,1],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,1,1],[1,1,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,1,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,3],[1,3,1,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[1,4,1,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,1],[1,2,0,0]],[[0,3,1,0],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[0,2,1,0],[3,3,3,2],[1,3,1,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,2],[1,3,1,2],[0,1,1,1]],[[0,2,1,0],[2,3,4,2],[1,3,1,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[1,3,1,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,4,1,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,3],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,2],[0,1,1,2]],[[0,3,1,0],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,1,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,1,2],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,1,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[1,3,1,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[1,4,1,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[1,3,1,3],[0,1,2,0]],[[0,3,1,0],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,2],[1,3,1,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[1,3,1,2],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[1,3,1,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,3],[1,3,1,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[1,4,1,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,3],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,2],[0,3,0,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,2],[0,2,0,2]],[[0,3,1,0],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[1,3,1,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[1,3,1,2],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[1,3,1,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,3],[1,3,1,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[1,4,1,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[1,3,1,3],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[1,3,1,2],[0,3,1,0]],[[1,2,2,1],[1,4,3,2],[1,3,0,1],[1,1,1,0]],[[1,2,2,2],[1,3,3,2],[1,3,0,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,2],[1,3,0,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[1,3,0,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,2],[1,3,0,1],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[1,3,0,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[1,3,0,1],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[1,3,0,1],[1,1,0,1]],[[0,3,1,0],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[0,2,1,0],[3,3,3,2],[1,3,1,2],[1,0,1,1]],[[0,2,1,0],[2,4,3,2],[1,3,1,2],[1,0,1,1]],[[0,2,1,0],[2,3,4,2],[1,3,1,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,3],[1,3,1,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,4,1,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,3],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,2],[1,0,1,2]],[[0,3,1,0],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,1,2],[1,0,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,1,2],[1,0,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,1,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,3],[1,3,1,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[1,4,1,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[1,3,1,3],[1,0,2,0]],[[0,3,1,0],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,2],[1,3,1,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,2],[1,3,1,2],[1,1,0,1]],[[0,2,1,0],[2,3,4,2],[1,3,1,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,3],[1,3,1,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[1,4,1,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,3],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[1,3,1,2],[1,1,0,2]],[[0,3,1,0],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[1,3,1,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[1,3,1,2],[1,1,1,0]],[[0,2,1,0],[2,3,4,2],[1,3,1,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,3],[1,3,1,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[1,4,1,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[1,3,1,3],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,1],[1,1,0,1]],[[1,2,2,1],[1,4,3,2],[1,3,0,1],[1,0,2,0]],[[1,2,2,2],[1,3,3,2],[1,3,0,1],[1,0,2,0]],[[1,2,3,1],[1,3,3,2],[1,3,0,1],[1,0,2,0]],[[0,3,1,0],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[0,2,1,0],[3,3,3,2],[1,3,1,2],[1,2,0,0]],[[0,2,1,0],[2,4,3,2],[1,3,1,2],[1,2,0,0]],[[0,2,1,0],[2,3,4,2],[1,3,1,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,3],[1,3,1,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[1,4,1,2],[1,2,0,0]],[[1,3,2,1],[1,3,3,2],[1,3,0,1],[1,0,2,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,1],[1,0,2,0]],[[1,2,2,1],[1,4,3,2],[1,3,0,1],[1,0,1,1]],[[1,2,2,2],[1,3,3,2],[1,3,0,1],[1,0,1,1]],[[1,2,3,1],[1,3,3,2],[1,3,0,1],[1,0,1,1]],[[1,3,2,1],[1,3,3,2],[1,3,0,1],[1,0,1,1]],[[2,2,2,1],[1,3,3,2],[1,3,0,1],[1,0,1,1]],[[1,2,2,1],[1,4,3,2],[1,3,0,1],[0,2,1,0]],[[1,2,2,2],[1,3,3,2],[1,3,0,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,2],[1,3,0,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,2],[1,3,0,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,2],[1,3,0,1],[0,2,0,1]],[[1,2,2,2],[1,3,3,2],[1,3,0,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,2],[1,3,0,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,2],[1,3,0,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,2],[1,3,0,1],[0,2,0,1]],[[0,3,1,0],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[0,2,1,0],[3,3,3,2],[1,3,2,0],[0,1,2,1]],[[0,2,1,0],[2,4,3,2],[1,3,2,0],[0,1,2,1]],[[0,2,1,0],[2,3,4,2],[1,3,2,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,3],[1,3,2,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[1,4,2,0],[0,1,2,1]],[[0,3,1,0],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[0,2,1,0],[3,3,3,2],[1,3,2,0],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[1,3,2,0],[0,2,1,1]],[[0,2,1,0],[2,3,4,2],[1,3,2,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[1,3,2,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,4,2,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,2,0],[0,3,1,1]],[[0,3,1,0],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[0,2,1,0],[3,3,3,2],[1,3,2,0],[1,0,2,1]],[[0,2,1,0],[2,4,3,2],[1,3,2,0],[1,0,2,1]],[[0,2,1,0],[2,3,4,2],[1,3,2,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,3],[1,3,2,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,4,2,0],[1,0,2,1]],[[0,3,1,0],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[1,3,2,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[1,3,2,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,4,2,0],[1,1,1,1]],[[0,3,1,0],[2,3,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,1,0],[3,3,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,1,0],[2,4,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,1,0],[2,3,4,2],[1,3,2,0],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,2,2,1],[1,4,3,2],[1,3,0,1],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[1,3,0,1],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[1,3,0,1],[0,1,2,0]],[[1,3,2,1],[1,3,3,2],[1,3,0,1],[0,1,2,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,1],[0,1,2,0]],[[1,2,2,1],[1,4,3,2],[1,3,0,1],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[1,3,0,1],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[1,3,0,1],[0,1,1,1]],[[1,3,2,1],[1,3,3,2],[1,3,0,1],[0,1,1,1]],[[0,3,1,0],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[0,2,1,0],[3,3,3,2],[1,3,2,1],[0,1,1,1]],[[0,2,1,0],[2,4,3,2],[1,3,2,1],[0,1,1,1]],[[0,2,1,0],[2,3,4,2],[1,3,2,1],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[1,3,2,1],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[1,4,2,1],[0,1,1,1]],[[0,3,1,0],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,2,1],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,2,1],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,2,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[1,3,2,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[1,4,2,1],[0,1,2,0]],[[0,3,1,0],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[0,2,1,0],[3,3,3,2],[1,3,2,1],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[1,3,2,1],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[1,3,2,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,3],[1,3,2,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[1,4,2,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[1,3,2,1],[0,3,0,1]],[[0,3,1,0],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[1,3,2,1],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[1,3,2,1],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[1,3,2,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,3],[1,3,2,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[1,4,2,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[1,3,2,1],[0,3,1,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,1],[0,1,1,1]],[[0,3,1,0],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[0,2,1,0],[3,3,3,2],[1,3,2,1],[1,0,1,1]],[[0,2,1,0],[2,4,3,2],[1,3,2,1],[1,0,1,1]],[[0,2,1,0],[2,3,4,2],[1,3,2,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,3],[1,3,2,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,4,2,1],[1,0,1,1]],[[0,3,1,0],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,2,1],[1,0,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,2,1],[1,0,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,2,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,3],[1,3,2,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[1,4,2,1],[1,0,2,0]],[[0,3,1,0],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[0,2,1,0],[3,3,3,2],[1,3,2,1],[1,1,0,1]],[[0,2,1,0],[2,4,3,2],[1,3,2,1],[1,1,0,1]],[[0,2,1,0],[2,3,4,2],[1,3,2,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,3],[1,3,2,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[1,4,2,1],[1,1,0,1]],[[0,3,1,0],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[1,3,2,1],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[1,3,2,1],[1,1,1,0]],[[0,2,1,0],[2,3,4,2],[1,3,2,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,3],[1,3,2,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[1,4,2,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,2],[1,3,0,0],[1,1,2,0]],[[1,2,2,2],[1,3,3,2],[1,3,0,0],[1,1,2,0]],[[1,2,3,1],[1,3,3,2],[1,3,0,0],[1,1,2,0]],[[1,3,2,1],[1,3,3,2],[1,3,0,0],[1,1,2,0]],[[0,3,1,0],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[0,2,1,0],[3,3,3,2],[1,3,2,1],[1,2,0,0]],[[0,2,1,0],[2,4,3,2],[1,3,2,1],[1,2,0,0]],[[0,2,1,0],[2,3,4,2],[1,3,2,1],[1,2,0,0]],[[0,2,1,0],[2,3,3,3],[1,3,2,1],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[1,4,2,1],[1,2,0,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,0],[1,1,2,0]],[[1,2,2,1],[1,4,3,2],[1,3,0,0],[0,2,2,0]],[[1,2,2,2],[1,3,3,2],[1,3,0,0],[0,2,2,0]],[[1,2,3,1],[1,3,3,2],[1,3,0,0],[0,2,2,0]],[[1,3,2,1],[1,3,3,2],[1,3,0,0],[0,2,2,0]],[[2,2,2,1],[1,3,3,2],[1,3,0,0],[0,2,2,0]],[[0,3,1,0],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,1,0],[3,3,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,1,0],[2,4,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,1,0],[2,3,4,2],[1,3,2,2],[0,0,1,1]],[[0,2,1,0],[2,3,3,3],[1,3,2,2],[0,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,2,3],[0,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,2,2],[0,0,1,2]],[[0,3,1,0],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,2,2],[0,0,2,0]],[[0,2,1,0],[2,3,3,3],[1,3,2,2],[0,0,2,0]],[[0,2,1,0],[2,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[1,3,4,2],[1,2,3,0],[0,0,2,0]],[[1,2,2,2],[1,3,3,2],[1,2,3,0],[0,0,2,0]],[[1,2,3,1],[1,3,3,2],[1,2,3,0],[0,0,2,0]],[[1,3,2,1],[1,3,3,2],[1,2,3,0],[0,0,2,0]],[[2,2,2,1],[1,3,3,2],[1,2,3,0],[0,0,2,0]],[[1,2,2,1],[1,3,4,2],[1,2,3,0],[0,0,1,1]],[[1,2,2,2],[1,3,3,2],[1,2,3,0],[0,0,1,1]],[[1,2,3,1],[1,3,3,2],[1,2,3,0],[0,0,1,1]],[[1,3,2,1],[1,3,3,2],[1,2,3,0],[0,0,1,1]],[[2,2,2,1],[1,3,3,2],[1,2,3,0],[0,0,1,1]],[[1,2,2,1],[1,3,3,3],[1,2,2,2],[0,0,0,1]],[[1,2,2,2],[1,3,3,2],[1,2,2,2],[0,0,0,1]],[[1,2,3,1],[1,3,3,2],[1,2,2,2],[0,0,0,1]],[[1,3,2,1],[1,3,3,2],[1,2,2,2],[0,0,0,1]],[[2,2,2,1],[1,3,3,2],[1,2,2,2],[0,0,0,1]],[[0,3,1,0],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[0,2,1,0],[3,3,3,2],[1,3,3,0],[0,0,2,1]],[[0,2,1,0],[2,4,3,2],[1,3,3,0],[0,0,2,1]],[[0,2,1,0],[2,3,4,2],[1,3,3,0],[0,0,2,1]],[[0,2,1,0],[2,3,3,3],[1,3,3,0],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[1,3,4,0],[0,0,2,1]],[[0,3,1,0],[2,3,3,2],[1,3,3,0],[0,1,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,3,0],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,3,0],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,3,0],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[1,4,3,0],[0,1,2,0]],[[0,3,1,0],[2,3,3,2],[1,3,3,0],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[1,3,3,0],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[1,3,3,0],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[1,3,3,0],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[1,4,3,0],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[1,3,3,0],[0,3,1,0]],[[0,3,1,0],[2,3,3,2],[1,3,3,0],[1,0,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,3,0],[1,0,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,3,0],[1,0,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,3,0],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[1,4,3,0],[1,0,2,0]],[[0,3,1,0],[2,3,3,2],[1,3,3,0],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[1,3,3,0],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[1,3,3,0],[1,1,1,0]],[[0,2,1,0],[2,3,4,2],[1,3,3,0],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[1,4,3,0],[1,1,1,0]],[[0,3,1,0],[2,3,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,1,0],[3,3,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,1,0],[2,4,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,1,0],[2,3,4,2],[1,3,3,0],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,2,1],[1,3,3,3],[1,2,1,2],[0,0,2,0]],[[1,2,2,2],[1,3,3,2],[1,2,1,2],[0,0,2,0]],[[1,2,3,1],[1,3,3,2],[1,2,1,2],[0,0,2,0]],[[1,3,2,1],[1,3,3,2],[1,2,1,2],[0,0,2,0]],[[2,2,2,1],[1,3,3,2],[1,2,1,2],[0,0,2,0]],[[1,2,2,1],[1,3,3,3],[1,2,1,2],[0,0,1,1]],[[1,2,2,2],[1,3,3,2],[1,2,1,2],[0,0,1,1]],[[1,2,3,1],[1,3,3,2],[1,2,1,2],[0,0,1,1]],[[1,3,2,1],[1,3,3,2],[1,2,1,2],[0,0,1,1]],[[2,2,2,1],[1,3,3,2],[1,2,1,2],[0,0,1,1]],[[0,3,1,0],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,1,0],[3,3,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,1,0],[2,4,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,1,0],[2,3,4,2],[1,3,3,1],[0,0,1,1]],[[0,2,1,0],[2,3,3,3],[1,3,3,1],[0,0,1,1]],[[0,2,1,0],[2,3,3,2],[1,3,4,1],[0,0,1,1]],[[0,3,1,0],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,1,0],[3,3,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,1,0],[2,4,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,1,0],[2,3,4,2],[1,3,3,1],[0,0,2,0]],[[0,2,1,0],[2,3,3,3],[1,3,3,1],[0,0,2,0]],[[0,2,1,0],[2,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,2,1],[1,3,3,3],[1,2,0,2],[1,1,1,0]],[[1,2,2,2],[1,3,3,2],[1,2,0,2],[1,1,1,0]],[[1,2,3,1],[1,3,3,2],[1,2,0,2],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[1,2,0,2],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[1,2,0,2],[1,1,1,0]],[[1,2,2,1],[1,3,3,3],[1,2,0,2],[1,1,0,1]],[[0,3,1,0],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[0,2,1,0],[3,3,3,2],[1,3,3,1],[0,2,0,0]],[[0,2,1,0],[2,4,3,2],[1,3,3,1],[0,2,0,0]],[[0,2,1,0],[2,3,4,2],[1,3,3,1],[0,2,0,0]],[[0,2,1,0],[2,3,3,3],[1,3,3,1],[0,2,0,0]],[[0,2,1,0],[2,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,2,2,2],[1,3,3,2],[1,2,0,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[1,2,0,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[1,2,0,2],[1,1,0,1]],[[2,2,2,1],[1,3,3,2],[1,2,0,2],[1,1,0,1]],[[1,2,2,1],[1,3,3,3],[1,2,0,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,2],[1,2,0,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,2],[1,2,0,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,2],[1,2,0,2],[1,0,2,0]],[[2,2,2,1],[1,3,3,2],[1,2,0,2],[1,0,2,0]],[[1,2,2,1],[1,3,3,3],[1,2,0,2],[1,0,1,1]],[[1,2,2,2],[1,3,3,2],[1,2,0,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,2],[1,2,0,2],[1,0,1,1]],[[1,3,2,1],[1,3,3,2],[1,2,0,2],[1,0,1,1]],[[2,2,2,1],[1,3,3,2],[1,2,0,2],[1,0,1,1]],[[1,2,2,1],[1,3,3,3],[1,2,0,2],[0,2,1,0]],[[1,2,2,2],[1,3,3,2],[1,2,0,2],[0,2,1,0]],[[1,2,3,1],[1,3,3,2],[1,2,0,2],[0,2,1,0]],[[1,3,2,1],[1,3,3,2],[1,2,0,2],[0,2,1,0]],[[2,2,2,1],[1,3,3,2],[1,2,0,2],[0,2,1,0]],[[1,2,2,1],[1,3,3,3],[1,2,0,2],[0,2,0,1]],[[1,2,2,2],[1,3,3,2],[1,2,0,2],[0,2,0,1]],[[0,3,1,0],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[0,2,1,0],[3,3,3,2],[1,3,3,1],[1,1,0,0]],[[0,2,1,0],[2,4,3,2],[1,3,3,1],[1,1,0,0]],[[0,2,1,0],[2,3,4,2],[1,3,3,1],[1,1,0,0]],[[0,2,1,0],[2,3,3,3],[1,3,3,1],[1,1,0,0]],[[0,2,1,0],[2,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,3,1],[1,3,3,2],[1,2,0,2],[0,2,0,1]],[[1,3,2,1],[1,3,3,2],[1,2,0,2],[0,2,0,1]],[[2,2,2,1],[1,3,3,2],[1,2,0,2],[0,2,0,1]],[[1,2,2,1],[1,3,3,3],[1,2,0,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[1,2,0,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[1,2,0,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,2],[1,2,0,2],[0,1,2,0]],[[2,2,2,1],[1,3,3,2],[1,2,0,2],[0,1,2,0]],[[1,2,2,1],[1,3,3,3],[1,2,0,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[1,2,0,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[1,2,0,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,2],[1,2,0,2],[0,1,1,1]],[[2,2,2,1],[1,3,3,2],[1,2,0,2],[0,1,1,1]],[[1,2,2,1],[1,3,3,3],[1,1,3,2],[0,0,0,1]],[[1,2,2,2],[1,3,3,2],[1,1,3,2],[0,0,0,1]],[[1,2,3,1],[1,3,3,2],[1,1,3,2],[0,0,0,1]],[[1,3,2,1],[1,3,3,2],[1,1,3,2],[0,0,0,1]],[[0,3,1,0],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,1,0],[3,3,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,1,0],[2,4,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,1,0],[2,3,4,2],[1,3,3,2],[0,0,0,1]],[[0,2,1,0],[2,3,3,3],[1,3,3,2],[0,0,0,1]],[[0,2,1,0],[2,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[1,3,4,2],[1,1,3,0],[1,1,1,0]],[[1,2,2,2],[1,3,3,2],[1,1,3,0],[1,1,1,0]],[[1,2,3,1],[1,3,3,2],[1,1,3,0],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[1,1,3,0],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[1,1,3,0],[1,1,1,0]],[[1,2,2,1],[1,3,4,2],[1,1,3,0],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[1,1,3,0],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[1,1,3,0],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[1,1,3,0],[1,1,0,1]],[[2,2,2,1],[1,3,3,2],[1,1,3,0],[1,1,0,1]],[[1,2,2,1],[1,3,4,2],[1,1,3,0],[1,0,2,0]],[[1,2,2,2],[1,3,3,2],[1,1,3,0],[1,0,2,0]],[[1,2,3,1],[1,3,3,2],[1,1,3,0],[1,0,2,0]],[[1,3,2,1],[1,3,3,2],[1,1,3,0],[1,0,2,0]],[[2,2,2,1],[1,3,3,2],[1,1,3,0],[1,0,2,0]],[[1,2,2,1],[1,3,4,2],[1,1,3,0],[1,0,1,1]],[[1,2,2,2],[1,3,3,2],[1,1,3,0],[1,0,1,1]],[[1,2,3,1],[1,3,3,2],[1,1,3,0],[1,0,1,1]],[[1,3,2,1],[1,3,3,2],[1,1,3,0],[1,0,1,1]],[[2,2,2,1],[1,3,3,2],[1,1,3,0],[1,0,1,1]],[[1,2,2,1],[1,3,4,2],[1,1,3,0],[0,2,1,0]],[[1,2,2,2],[1,3,3,2],[1,1,3,0],[0,2,1,0]],[[1,2,3,1],[1,3,3,2],[1,1,3,0],[0,2,1,0]],[[1,3,2,1],[1,3,3,2],[1,1,3,0],[0,2,1,0]],[[2,2,2,1],[1,3,3,2],[1,1,3,0],[0,2,1,0]],[[1,2,2,1],[1,3,4,2],[1,1,3,0],[0,2,0,1]],[[1,2,2,2],[1,3,3,2],[1,1,3,0],[0,2,0,1]],[[1,2,3,1],[1,3,3,2],[1,1,3,0],[0,2,0,1]],[[1,3,2,1],[1,3,3,2],[1,1,3,0],[0,2,0,1]],[[2,2,2,1],[1,3,3,2],[1,1,3,0],[0,2,0,1]],[[1,2,2,1],[1,3,4,2],[1,1,3,0],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[1,1,3,0],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[1,1,3,0],[0,1,2,0]],[[1,3,2,1],[1,3,3,2],[1,1,3,0],[0,1,2,0]],[[2,2,2,1],[1,3,3,2],[1,1,3,0],[0,1,2,0]],[[1,2,2,1],[1,3,4,2],[1,1,3,0],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[1,1,3,0],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[1,1,3,0],[0,1,1,1]],[[1,3,2,1],[1,3,3,2],[1,1,3,0],[0,1,1,1]],[[2,2,2,1],[1,3,3,2],[1,1,3,0],[0,1,1,1]],[[1,2,2,1],[1,3,4,2],[1,1,3,0],[0,0,2,1]],[[1,2,2,2],[1,3,3,2],[1,1,3,0],[0,0,2,1]],[[1,2,3,1],[1,3,3,2],[1,1,3,0],[0,0,2,1]],[[1,3,2,1],[1,3,3,2],[1,1,3,0],[0,0,2,1]],[[2,2,2,1],[1,3,3,2],[1,1,3,0],[0,0,2,1]],[[1,2,2,1],[1,3,3,3],[1,1,2,2],[1,0,0,1]],[[1,2,2,2],[1,3,3,2],[1,1,2,2],[1,0,0,1]],[[1,2,3,1],[1,3,3,2],[1,1,2,2],[1,0,0,1]],[[1,3,2,1],[1,3,3,2],[1,1,2,2],[1,0,0,1]],[[2,2,2,1],[1,3,3,2],[1,1,2,2],[1,0,0,1]],[[1,2,2,1],[1,3,3,3],[1,1,2,2],[0,1,0,1]],[[1,2,2,2],[1,3,3,2],[1,1,2,2],[0,1,0,1]],[[1,2,3,1],[1,3,3,2],[1,1,2,2],[0,1,0,1]],[[1,3,2,1],[1,3,3,2],[1,1,2,2],[0,1,0,1]],[[2,2,2,1],[1,3,3,2],[1,1,2,2],[0,1,0,1]],[[1,2,2,1],[1,3,3,3],[1,1,1,2],[1,1,1,0]],[[1,2,2,2],[1,3,3,2],[1,1,1,2],[1,1,1,0]],[[1,2,3,1],[1,3,3,2],[1,1,1,2],[1,1,1,0]],[[1,3,2,1],[1,3,3,2],[1,1,1,2],[1,1,1,0]],[[2,2,2,1],[1,3,3,2],[1,1,1,2],[1,1,1,0]],[[1,2,2,1],[1,3,3,3],[1,1,1,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[1,1,1,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[1,1,1,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[1,1,1,2],[1,1,0,1]],[[2,2,2,1],[1,3,3,2],[1,1,1,2],[1,1,0,1]],[[0,3,1,0],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[2,0,1,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[2,0,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[2,0,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[2,0,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[3,0,1,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,1],[1,2,2,2]],[[0,3,1,0],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,1,0],[3,3,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,1,0],[2,4,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,4,2],[2,0,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[2,0,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[3,0,1,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,3],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[0,3,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[0,2,3,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[0,2,2,2]],[[0,3,1,0],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,4,2],[2,0,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[2,0,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[3,0,1,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,3],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[2,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[1,1,3,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[1,1,2,2]],[[0,3,1,0],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,1,0],[2,3,4,2],[2,0,1,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[2,0,1,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[3,0,1,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,3],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[2,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[1,3,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[1,2,1,2]],[[0,3,1,0],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,4,2],[2,0,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,3],[2,0,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[3,0,1,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,1,3],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,1,2],[1,2,3,0]],[[0,3,1,0],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[2,0,2,0],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[2,0,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[2,0,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[2,0,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[3,0,2,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,0],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,0],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,0],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,0],[1,2,2,2]],[[0,3,1,0],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[2,0,2,1],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[2,0,2,1],[1,2,2,0]],[[0,2,1,0],[2,3,4,2],[2,0,2,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,3],[2,0,2,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[3,0,2,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,2,1],[2,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,2,1],[1,3,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,2,1],[1,2,3,0]],[[0,3,1,0],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,1,0],[3,3,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,1,0],[2,3,4,2],[2,0,2,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[2,0,2,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[3,0,2,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,3],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,2],[0,2,1,2]],[[0,3,1,0],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,1,0],[3,3,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,1,0],[2,4,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,4,2],[2,0,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,3],[2,0,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[3,0,2,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,2,3],[0,2,2,0]],[[0,3,1,0],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[2,0,2,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[2,0,2,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[3,0,2,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,3],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,2],[2,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,2],[1,1,1,2]],[[0,3,1,0],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,4,2],[2,0,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,3],[2,0,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[3,0,2,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,2,3],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,2,2],[2,1,2,0]],[[0,3,1,0],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,4,2],[2,0,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,3],[2,0,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,0,2,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,3],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,2],[2,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,2],[1,3,0,1]],[[0,2,1,0],[2,3,3,2],[2,0,2,2],[1,2,0,2]],[[0,3,1,0],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,4,2],[2,0,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,3],[2,0,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,0,2,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,0,2,3],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,0,2,2],[2,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,0,2,2],[1,3,1,0]],[[1,2,2,1],[1,3,3,3],[1,1,1,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,2],[1,1,1,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,2],[1,1,1,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,2],[1,1,1,2],[1,0,2,0]],[[2,2,2,1],[1,3,3,2],[1,1,1,2],[1,0,2,0]],[[1,2,2,1],[1,3,3,3],[1,1,1,2],[1,0,1,1]],[[1,2,2,2],[1,3,3,2],[1,1,1,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,2],[1,1,1,2],[1,0,1,1]],[[1,3,2,1],[1,3,3,2],[1,1,1,2],[1,0,1,1]],[[0,3,1,0],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,1,0],[3,3,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,1,0],[2,4,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,4,2],[2,0,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[2,0,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[3,0,3,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,4,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,0],[0,3,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,0],[0,2,3,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,0],[0,2,2,2]],[[0,3,1,0],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,4,2],[2,0,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[2,0,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[3,0,3,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,4,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,0],[2,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,0],[1,1,3,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,0],[1,1,2,2]],[[0,3,1,0],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,4,2],[2,0,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[2,0,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[3,0,3,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,4,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,0],[2,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,0],[1,3,1,1]],[[0,3,1,0],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,1,0],[3,3,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,4,2],[2,0,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[2,0,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[3,0,3,1],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,4,1],[0,2,1,1]],[[0,3,1,0],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,1,0],[3,3,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,1,0],[2,4,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,1,0],[2,3,4,2],[2,0,3,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,3],[2,0,3,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[3,0,3,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,4,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,3,1],[0,3,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,3,1],[0,2,3,0]],[[0,3,1,0],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[2,0,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[2,0,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[3,0,3,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,4,1],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,1],[2,1,1,1]],[[0,3,1,0],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,1,0],[2,3,4,2],[2,0,3,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,3],[2,0,3,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[3,0,3,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,4,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,3,1],[2,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,3,1],[1,1,3,0]],[[0,3,1,0],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,4,2],[2,0,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,3],[2,0,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,0,3,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,0,4,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,1],[2,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,1],[1,3,0,1]],[[0,3,1,0],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,4,2],[2,0,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,3],[2,0,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,0,3,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,0,4,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,0,3,1],[2,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,0,3,1],[1,3,1,0]],[[2,2,2,1],[1,3,3,2],[1,1,1,2],[1,0,1,1]],[[0,2,1,0],[2,3,4,2],[2,0,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,3],[2,0,3,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,3],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,2],[0,0,2,2]],[[0,2,1,0],[2,3,4,2],[2,0,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[2,0,3,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,3],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,2],[0,1,1,2]],[[0,2,1,0],[2,3,4,2],[2,0,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[2,0,3,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,2,1],[1,3,3,3],[1,1,1,2],[0,2,1,0]],[[1,2,2,2],[1,3,3,2],[1,1,1,2],[0,2,1,0]],[[1,2,3,1],[1,3,3,2],[1,1,1,2],[0,2,1,0]],[[1,3,2,1],[1,3,3,2],[1,1,1,2],[0,2,1,0]],[[2,2,2,1],[1,3,3,2],[1,1,1,2],[0,2,1,0]],[[1,2,2,1],[1,3,3,3],[1,1,1,2],[0,2,0,1]],[[1,2,2,2],[1,3,3,2],[1,1,1,2],[0,2,0,1]],[[1,2,3,1],[1,3,3,2],[1,1,1,2],[0,2,0,1]],[[1,3,2,1],[1,3,3,2],[1,1,1,2],[0,2,0,1]],[[2,2,2,1],[1,3,3,2],[1,1,1,2],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[2,0,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,3],[2,0,3,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,3],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[2,0,3,2],[1,0,1,2]],[[0,2,1,0],[2,3,4,2],[2,0,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,3],[2,0,3,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[1,3,3,3],[1,1,1,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[1,1,1,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[1,1,1,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,2],[1,1,1,2],[0,1,2,0]],[[2,2,2,1],[1,3,3,2],[1,1,1,2],[0,1,2,0]],[[1,2,2,1],[1,3,3,3],[1,1,1,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[1,1,1,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[1,1,1,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,2],[1,1,1,2],[0,1,1,1]],[[2,2,2,1],[1,3,3,2],[1,1,1,2],[0,1,1,1]],[[1,2,2,1],[1,3,3,3],[1,1,1,2],[0,0,2,1]],[[1,2,2,2],[1,3,3,2],[1,1,1,2],[0,0,2,1]],[[1,2,3,1],[1,3,3,2],[1,1,1,2],[0,0,2,1]],[[1,3,2,1],[1,3,3,2],[1,1,1,2],[0,0,2,1]],[[2,2,2,1],[1,3,3,2],[1,1,1,2],[0,0,2,1]],[[1,2,2,1],[1,3,3,3],[1,1,0,2],[1,0,2,1]],[[1,2,2,2],[1,3,3,2],[1,1,0,2],[1,0,2,1]],[[1,2,3,1],[1,3,3,2],[1,1,0,2],[1,0,2,1]],[[1,3,2,1],[1,3,3,2],[1,1,0,2],[1,0,2,1]],[[2,2,2,1],[1,3,3,2],[1,1,0,2],[1,0,2,1]],[[1,2,2,1],[1,3,3,3],[1,1,0,2],[0,1,2,1]],[[1,2,2,2],[1,3,3,2],[1,1,0,2],[0,1,2,1]],[[1,2,3,1],[1,3,3,2],[1,1,0,2],[0,1,2,1]],[[1,3,2,1],[1,3,3,2],[1,1,0,2],[0,1,2,1]],[[2,2,2,1],[1,3,3,2],[1,1,0,2],[0,1,2,1]],[[0,3,1,0],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[2,1,0,1],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[2,1,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[2,1,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[2,1,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[3,1,0,1],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,1],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,1],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,1],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,1],[1,2,2,2]],[[0,3,1,0],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,1,0],[3,3,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,1,0],[2,4,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,4,2],[2,1,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[2,1,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[3,1,0,2],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,3],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[0,3,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[0,2,3,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[0,2,2,2]],[[0,3,1,0],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[2,1,0,2],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[2,1,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,4,2],[2,1,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[2,1,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[3,1,0,2],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,3],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[2,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[1,1,3,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[1,1,2,2]],[[0,3,1,0],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[2,1,0,2],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[2,1,0,2],[1,2,1,1]],[[0,2,1,0],[2,3,4,2],[2,1,0,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[2,1,0,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[3,1,0,2],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,3],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[2,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[1,3,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[1,2,1,2]],[[0,3,1,0],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[2,1,0,2],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[2,1,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,4,2],[2,1,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,3],[2,1,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[3,1,0,2],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,0,3],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[2,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[1,3,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,0,2],[1,2,3,0]],[[0,3,1,0],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[2,1,1,0],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[2,1,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,4,2],[2,1,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,3],[2,1,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[3,1,1,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,0],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,0],[1,3,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,0],[1,2,3,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,0],[1,2,2,2]],[[0,3,1,0],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[2,1,1,1],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[2,1,1,1],[1,2,2,0]],[[0,2,1,0],[2,3,4,2],[2,1,1,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,3],[2,1,1,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[3,1,1,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,1,1],[2,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,1,1],[1,3,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,1,1],[1,2,3,0]],[[0,3,1,0],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,1,0],[3,3,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,1,0],[2,4,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,1,0],[2,3,4,2],[2,1,1,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,3],[2,1,1,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[3,1,1,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,3],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,2],[0,1,3,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,2],[0,1,2,2]],[[0,3,1,0],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,1,0],[3,3,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,1,0],[2,4,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,1,0],[2,3,4,2],[2,1,1,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,3],[2,1,1,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[3,1,1,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,3],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,2],[2,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,2],[1,0,3,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,2],[1,0,2,2]],[[0,3,1,0],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,1,1,2],[1,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,1,1,2],[1,2,0,1]],[[0,2,1,0],[2,3,4,2],[2,1,1,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,3],[2,1,1,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,1,1,2],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,3],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,2],[2,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,2],[1,3,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,1,2],[1,2,0,2]],[[0,3,1,0],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,1,1,2],[1,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,1,1,2],[1,2,1,0]],[[0,2,1,0],[2,3,4,2],[2,1,1,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,3],[2,1,1,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,1,1,2],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,1,3],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,1,2],[2,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,1,2],[1,3,1,0]],[[0,3,1,0],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[2,1,2,0],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[2,1,2,0],[1,2,1,1]],[[0,2,1,0],[2,3,4,2],[2,1,2,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,3],[2,1,2,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[3,1,2,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,0],[2,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,0],[1,3,1,1]],[[0,3,1,0],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,1,2,1],[1,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,1,2,1],[1,2,0,1]],[[0,2,1,0],[2,3,4,2],[2,1,2,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,3],[2,1,2,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,1,2,1],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,1],[2,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,1],[1,3,0,1]],[[0,3,1,0],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,1,2,1],[1,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,1,2,1],[1,2,1,0]],[[0,2,1,0],[2,3,4,2],[2,1,2,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,3],[2,1,2,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,1,2,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,2,1],[2,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,2,1],[1,3,1,0]],[[1,2,2,1],[1,3,3,3],[1,0,3,2],[1,0,0,1]],[[1,2,2,2],[1,3,3,2],[1,0,3,2],[1,0,0,1]],[[1,2,3,1],[1,3,3,2],[1,0,3,2],[1,0,0,1]],[[1,3,2,1],[1,3,3,2],[1,0,3,2],[1,0,0,1]],[[0,3,1,0],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,1,0],[3,3,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,1,0],[2,4,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,1,0],[2,3,4,2],[2,1,2,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,3],[2,1,2,2],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,3],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,2],[0,0,2,2]],[[0,3,1,0],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,1,0],[3,3,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,4,2],[2,1,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[2,1,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[3,1,2,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,3],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,2],[0,1,1,2]],[[0,3,1,0],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,1,0],[3,3,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[2,1,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[2,1,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[3,1,2,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,2,3],[0,1,2,0]],[[0,3,1,0],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[2,1,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,3],[2,1,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,1,2,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,3],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,2],[0,2,0,2]],[[0,3,1,0],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[2,1,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,3],[2,1,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,1,2,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,2,3],[0,2,1,0]],[[0,3,1,0],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,1,0],[3,3,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,1,0],[2,4,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,4,2],[2,1,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,3],[2,1,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[3,1,2,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,3],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,2],[2,0,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,2],[1,0,1,2]],[[0,3,1,0],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,1,0],[3,3,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,1,0],[2,4,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,4,2],[2,1,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,3],[2,1,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[3,1,2,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,2,3],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,2,2],[2,0,2,0]],[[0,3,1,0],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,4,2],[2,1,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,3],[2,1,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[3,1,2,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,3],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,2],[2,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,2,2],[1,1,0,2]],[[0,3,1,0],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,4,2],[2,1,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,3],[2,1,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[3,1,2,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,2,3],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,2,2],[2,1,1,0]],[[1,2,2,1],[1,3,3,3],[1,0,3,2],[0,1,0,1]],[[1,2,2,2],[1,3,3,2],[1,0,3,2],[0,1,0,1]],[[1,2,3,1],[1,3,3,2],[1,0,3,2],[0,1,0,1]],[[1,3,2,1],[1,3,3,2],[1,0,3,2],[0,1,0,1]],[[1,2,2,1],[1,3,3,3],[1,0,3,2],[0,0,1,1]],[[1,2,2,2],[1,3,3,2],[1,0,3,2],[0,0,1,1]],[[1,2,3,1],[1,3,3,2],[1,0,3,2],[0,0,1,1]],[[1,3,2,1],[1,3,3,2],[1,0,3,2],[0,0,1,1]],[[0,3,1,0],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,1,0],[3,3,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,1,0],[2,4,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,4,2],[2,1,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,3],[2,1,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[3,1,3,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,4,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,3,0],[0,1,3,1]],[[0,2,1,0],[2,3,3,2],[2,1,3,0],[0,1,2,2]],[[0,3,1,0],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,1,0],[3,3,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,4,2],[2,1,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[2,1,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[3,1,3,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,4,0],[0,2,1,1]],[[0,3,1,0],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,1,0],[3,3,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,1,0],[2,4,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,4,2],[2,1,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,3],[2,1,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[3,1,3,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,4,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,3,0],[2,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,3,0],[1,0,3,1]],[[0,2,1,0],[2,3,3,2],[2,1,3,0],[1,0,2,2]],[[0,3,1,0],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[2,1,3,0],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[2,1,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[2,1,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[2,1,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[3,1,3,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,4,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,3,0],[2,1,1,1]],[[0,3,1,0],[2,3,3,2],[2,1,3,0],[1,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,1,3,0],[1,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,1,3,0],[1,2,1,0]],[[0,2,1,0],[2,3,4,2],[2,1,3,0],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,1,3,0],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,3,0],[2,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,3,0],[1,3,1,0]],[[0,3,1,0],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,1,0],[3,3,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,1,0],[2,4,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,1,0],[2,3,4,2],[2,1,3,1],[0,0,2,1]],[[0,2,1,0],[2,3,3,3],[2,1,3,1],[0,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,1,4,1],[0,0,2,1]],[[0,3,1,0],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,1,0],[3,3,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,1,0],[2,4,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,4,2],[2,1,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[2,1,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[3,1,3,1],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,4,1],[0,1,1,1]],[[0,3,1,0],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,1,0],[3,3,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[2,1,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[2,1,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[3,1,3,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,4,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,3,1],[0,1,3,0]],[[0,3,1,0],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[2,1,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,3],[2,1,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,1,3,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,4,1],[0,2,0,1]],[[0,3,1,0],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[2,1,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,3],[2,1,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,1,3,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,2,1],[1,3,4,2],[1,0,3,0],[0,2,2,0]],[[1,2,2,2],[1,3,3,2],[1,0,3,0],[0,2,2,0]],[[1,2,3,1],[1,3,3,2],[1,0,3,0],[0,2,2,0]],[[1,3,2,1],[1,3,3,2],[1,0,3,0],[0,2,2,0]],[[2,2,2,1],[1,3,3,2],[1,0,3,0],[0,2,2,0]],[[1,2,2,1],[1,3,4,2],[1,0,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,3,2],[1,0,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,2],[1,0,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,2],[1,0,3,0],[0,2,1,1]],[[0,3,1,0],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,1,0],[3,3,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,1,0],[2,4,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,4,2],[2,1,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,3],[2,1,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[3,1,3,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,4,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[2,1,3,1],[2,0,1,1]],[[0,3,1,0],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,1,0],[3,3,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,1,0],[2,4,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,4,2],[2,1,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,3],[2,1,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[3,1,3,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,4,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,3,1],[2,0,2,0]],[[0,2,1,0],[2,3,3,2],[2,1,3,1],[1,0,3,0]],[[0,3,1,0],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,1,0],[3,3,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,1,0],[2,4,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,4,2],[2,1,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,3],[2,1,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[3,1,3,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,4,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,3,1],[2,1,0,1]],[[0,3,1,0],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,4,2],[2,1,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,3],[2,1,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[3,1,3,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,4,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[2,1,3,1],[2,1,1,0]],[[2,2,2,1],[1,3,3,2],[1,0,3,0],[0,2,1,1]],[[1,2,2,1],[1,3,3,3],[1,0,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,2],[1,0,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,2],[1,0,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,2],[1,0,2,2],[1,0,2,0]],[[1,2,2,1],[1,3,3,3],[1,0,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,3,2],[1,0,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,2],[1,0,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,3,2],[1,0,2,2],[1,0,1,1]],[[0,3,1,0],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,1,0],[3,3,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,1,0],[2,4,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,1,0],[2,3,4,2],[2,1,3,2],[0,1,0,1]],[[0,2,1,0],[2,3,3,3],[2,1,3,2],[0,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,1],[1,3,3,3],[1,0,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[1,0,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[1,0,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,2],[1,0,2,2],[0,1,2,0]],[[1,2,2,1],[1,3,3,3],[1,0,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[1,0,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[1,0,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,2],[1,0,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,3,3],[1,0,2,2],[0,0,2,1]],[[1,2,2,2],[1,3,3,2],[1,0,2,2],[0,0,2,1]],[[1,2,3,1],[1,3,3,2],[1,0,2,2],[0,0,2,1]],[[1,3,2,1],[1,3,3,2],[1,0,2,2],[0,0,2,1]],[[1,2,2,1],[1,3,3,3],[1,0,1,2],[0,2,2,0]],[[1,2,2,2],[1,3,3,2],[1,0,1,2],[0,2,2,0]],[[1,2,3,1],[1,3,3,2],[1,0,1,2],[0,2,2,0]],[[1,3,2,1],[1,3,3,2],[1,0,1,2],[0,2,2,0]],[[2,2,2,1],[1,3,3,2],[1,0,1,2],[0,2,2,0]],[[1,2,2,1],[1,3,3,3],[1,0,1,2],[0,2,1,1]],[[1,2,2,2],[1,3,3,2],[1,0,1,2],[0,2,1,1]],[[1,2,3,1],[1,3,3,2],[1,0,1,2],[0,2,1,1]],[[1,3,2,1],[1,3,3,2],[1,0,1,2],[0,2,1,1]],[[0,3,1,0],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,1,0],[3,3,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,1,0],[2,4,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,1,0],[2,3,4,2],[2,1,3,2],[1,0,0,1]],[[0,2,1,0],[2,3,3,3],[2,1,3,2],[1,0,0,1]],[[0,2,1,0],[2,3,3,2],[3,1,3,2],[1,0,0,1]],[[0,2,1,0],[2,3,3,2],[2,1,3,3],[1,0,0,1]],[[2,2,2,1],[1,3,3,2],[1,0,1,2],[0,2,1,1]],[[1,2,2,1],[1,3,3,3],[1,0,0,2],[0,2,2,1]],[[1,2,2,2],[1,3,3,2],[1,0,0,2],[0,2,2,1]],[[1,2,3,1],[1,3,3,2],[1,0,0,2],[0,2,2,1]],[[1,3,2,1],[1,3,3,2],[1,0,0,2],[0,2,2,1]],[[2,2,2,1],[1,3,3,2],[1,0,0,2],[0,2,2,1]],[[1,2,2,1],[1,4,3,2],[0,3,2,0],[1,2,0,0]],[[1,2,2,2],[1,3,3,2],[0,3,2,0],[1,2,0,0]],[[1,2,3,1],[1,3,3,2],[0,3,2,0],[1,2,0,0]],[[1,3,2,1],[1,3,3,2],[0,3,2,0],[1,2,0,0]],[[2,2,2,1],[1,3,3,2],[0,3,2,0],[1,2,0,0]],[[0,3,1,0],[2,3,3,2],[2,2,0,0],[1,2,2,1]],[[0,2,1,0],[3,3,3,2],[2,2,0,0],[1,2,2,1]],[[0,2,1,0],[2,4,3,2],[2,2,0,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[3,2,0,0],[1,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,0],[2,2,2,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,0],[1,3,2,1]],[[0,3,1,0],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[0,2,1,0],[3,3,3,2],[2,2,0,1],[0,2,2,1]],[[0,2,1,0],[2,4,3,2],[2,2,0,1],[0,2,2,1]],[[0,2,1,0],[2,3,4,2],[2,2,0,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[2,2,0,1],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[3,2,0,1],[0,2,2,1]],[[0,3,1,0],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[2,2,0,1],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[2,2,0,1],[1,1,2,1]],[[0,2,1,0],[2,3,4,2],[2,2,0,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[2,2,0,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[3,2,0,1],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,1],[2,1,2,1]],[[0,3,1,0],[2,3,3,2],[2,2,0,1],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[2,2,0,1],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[2,2,0,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[3,2,0,1],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,2,0,1],[2,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,2,0,1],[1,3,2,0]],[[0,3,1,0],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,1,0],[3,3,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,1,0],[2,4,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,1,0],[2,3,4,2],[2,2,0,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,3],[2,2,0,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[3,2,0,2],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,3],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,2],[0,1,3,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,2],[0,1,2,2]],[[0,3,1,0],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[0,2,1,0],[3,3,3,2],[2,2,0,2],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[2,2,0,2],[0,2,1,1]],[[0,2,1,0],[2,3,4,2],[2,2,0,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[2,2,0,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[3,2,0,2],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,3],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,2],[0,2,1,2]],[[0,3,1,0],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[0,2,1,0],[3,3,3,2],[2,2,0,2],[0,2,2,0]],[[0,2,1,0],[2,4,3,2],[2,2,0,2],[0,2,2,0]],[[0,2,1,0],[2,3,4,2],[2,2,0,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,3],[2,2,0,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[3,2,0,2],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,2,0,3],[0,2,2,0]],[[0,3,1,0],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,1,0],[3,3,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,1,0],[2,4,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,1,0],[2,3,4,2],[2,2,0,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,3],[2,2,0,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[3,2,0,2],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,3],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,2],[2,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,2],[1,0,3,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,2],[1,0,2,2]],[[0,3,1,0],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[2,2,0,2],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[2,2,0,2],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[2,2,0,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[2,2,0,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[3,2,0,2],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,3],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,2],[2,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,0,2],[1,1,1,2]],[[0,3,1,0],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[2,2,0,2],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[2,2,0,2],[1,1,2,0]],[[0,2,1,0],[2,3,4,2],[2,2,0,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,3],[2,2,0,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[3,2,0,2],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,2,0,3],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,2,0,2],[2,1,2,0]],[[0,3,1,0],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[0,2,1,0],[3,3,3,2],[2,2,1,0],[0,2,2,1]],[[0,2,1,0],[2,4,3,2],[2,2,1,0],[0,2,2,1]],[[0,2,1,0],[2,3,4,2],[2,2,1,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,3],[2,2,1,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[3,2,1,0],[0,2,2,1]],[[0,3,1,0],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[2,2,1,0],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[2,2,1,0],[1,1,2,1]],[[0,2,1,0],[2,3,4,2],[2,2,1,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,3],[2,2,1,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[3,2,1,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,2,1,0],[2,1,2,1]],[[0,3,1,0],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[0,2,1,0],[3,3,3,2],[2,2,1,1],[0,2,2,0]],[[0,2,1,0],[2,4,3,2],[2,2,1,1],[0,2,2,0]],[[0,2,1,0],[2,3,4,2],[2,2,1,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,3],[2,2,1,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[3,2,1,1],[0,2,2,0]],[[0,3,1,0],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[2,2,1,1],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[2,2,1,1],[1,1,2,0]],[[0,2,1,0],[2,3,4,2],[2,2,1,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,3],[2,2,1,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[3,2,1,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,2,1,1],[2,1,2,0]],[[0,3,1,0],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,1,0],[3,3,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,1,0],[2,4,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,1,0],[2,3,4,2],[2,2,1,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[2,2,1,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[3,2,1,2],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,1,3],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,1,2],[0,1,1,2]],[[0,3,1,0],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,1,0],[3,3,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[2,2,1,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[2,2,1,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[3,2,1,2],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,2,1,3],[0,1,2,0]],[[0,3,1,0],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[2,2,1,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,3],[2,2,1,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,2,1,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,2,1,3],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,2,1,2],[0,2,0,2]],[[0,3,1,0],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[2,2,1,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,3],[2,2,1,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,2,1,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,2,1,3],[0,2,1,0]],[[0,3,1,0],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,1,0],[3,3,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,1,0],[2,4,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,1,0],[2,3,4,2],[2,2,1,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,3],[2,2,1,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[3,2,1,2],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,1,3],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,1,2],[2,0,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,1,2],[1,0,1,2]],[[0,3,1,0],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,1,0],[3,3,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,1,0],[2,4,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,1,0],[2,3,4,2],[2,2,1,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,3],[2,2,1,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[3,2,1,2],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[2,2,1,3],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[2,2,1,2],[2,0,2,0]],[[0,3,1,0],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,1,0],[2,3,4,2],[2,2,1,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,3],[2,2,1,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[3,2,1,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,2,1,3],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,2,1,2],[2,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,2,1,2],[1,1,0,2]],[[0,3,1,0],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,1,0],[2,3,4,2],[2,2,1,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,3],[2,2,1,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[3,2,1,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[2,2,1,3],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[2,2,1,2],[2,1,1,0]],[[0,3,1,0],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[0,2,1,0],[3,3,3,2],[2,2,1,2],[1,2,0,0]],[[0,2,1,0],[2,4,3,2],[2,2,1,2],[1,2,0,0]],[[0,2,1,0],[2,3,4,2],[2,2,1,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,3],[2,2,1,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[3,2,1,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,1],[1,4,3,2],[0,3,1,0],[1,2,1,0]],[[1,2,2,2],[1,3,3,2],[0,3,1,0],[1,2,1,0]],[[1,2,3,1],[1,3,3,2],[0,3,1,0],[1,2,1,0]],[[1,3,2,1],[1,3,3,2],[0,3,1,0],[1,2,1,0]],[[2,2,2,1],[1,3,3,2],[0,3,1,0],[1,2,1,0]],[[1,2,2,1],[1,4,3,2],[0,3,1,0],[1,2,0,1]],[[1,2,2,2],[1,3,3,2],[0,3,1,0],[1,2,0,1]],[[1,2,3,1],[1,3,3,2],[0,3,1,0],[1,2,0,1]],[[1,3,2,1],[1,3,3,2],[0,3,1,0],[1,2,0,1]],[[2,2,2,1],[1,3,3,2],[0,3,1,0],[1,2,0,1]],[[1,2,2,1],[1,4,3,2],[0,3,1,0],[1,1,2,0]],[[1,2,2,2],[1,3,3,2],[0,3,1,0],[1,1,2,0]],[[1,2,3,1],[1,3,3,2],[0,3,1,0],[1,1,2,0]],[[1,3,2,1],[1,3,3,2],[0,3,1,0],[1,1,2,0]],[[2,2,2,1],[1,3,3,2],[0,3,1,0],[1,1,2,0]],[[1,2,2,1],[1,4,3,2],[0,3,1,0],[1,1,1,1]],[[0,3,1,0],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[0,2,1,0],[3,3,3,2],[2,2,2,0],[0,1,2,1]],[[0,2,1,0],[2,4,3,2],[2,2,2,0],[0,1,2,1]],[[0,2,1,0],[2,3,4,2],[2,2,2,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,3],[2,2,2,0],[0,1,2,1]],[[0,2,1,0],[2,3,3,2],[3,2,2,0],[0,1,2,1]],[[0,3,1,0],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[0,2,1,0],[3,3,3,2],[2,2,2,0],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[2,2,2,0],[0,2,1,1]],[[0,2,1,0],[2,3,4,2],[2,2,2,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,3],[2,2,2,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[3,2,2,0],[0,2,1,1]],[[0,3,1,0],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[0,2,1,0],[3,3,3,2],[2,2,2,0],[1,0,2,1]],[[0,2,1,0],[2,4,3,2],[2,2,2,0],[1,0,2,1]],[[0,2,1,0],[2,3,4,2],[2,2,2,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,3],[2,2,2,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[3,2,2,0],[1,0,2,1]],[[0,2,1,0],[2,3,3,2],[2,2,2,0],[2,0,2,1]],[[0,3,1,0],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[2,2,2,0],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[2,2,2,0],[1,1,1,1]],[[0,2,1,0],[2,3,4,2],[2,2,2,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,3],[2,2,2,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[3,2,2,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,2,0],[2,1,1,1]],[[0,3,1,0],[2,3,3,2],[2,2,2,0],[1,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,2,2,0],[1,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,2,2,0],[1,2,0,1]],[[0,2,1,0],[2,3,4,2],[2,2,2,0],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,2,2,0],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,2,2,0],[2,2,0,1]],[[1,2,2,2],[1,3,3,2],[0,3,1,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,2],[0,3,1,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,2],[0,3,1,0],[1,1,1,1]],[[2,2,2,1],[1,3,3,2],[0,3,1,0],[1,1,1,1]],[[0,3,1,0],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[0,2,1,0],[3,3,3,2],[2,2,2,1],[0,1,1,1]],[[0,2,1,0],[2,4,3,2],[2,2,2,1],[0,1,1,1]],[[0,2,1,0],[2,3,4,2],[2,2,2,1],[0,1,1,1]],[[0,2,1,0],[2,3,3,3],[2,2,2,1],[0,1,1,1]],[[0,2,1,0],[2,3,3,2],[3,2,2,1],[0,1,1,1]],[[0,3,1,0],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[0,2,1,0],[3,3,3,2],[2,2,2,1],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[2,2,2,1],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[2,2,2,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,3],[2,2,2,1],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[3,2,2,1],[0,1,2,0]],[[0,3,1,0],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,2,2,1],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,2,2,1],[0,2,0,1]],[[0,2,1,0],[2,3,4,2],[2,2,2,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,3],[2,2,2,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,2,2,1],[0,2,0,1]],[[0,3,1,0],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,2,2,1],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,2,2,1],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[2,2,2,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,3],[2,2,2,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,2,2,1],[0,2,1,0]],[[0,3,1,0],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[0,2,1,0],[3,3,3,2],[2,2,2,1],[1,0,1,1]],[[0,2,1,0],[2,4,3,2],[2,2,2,1],[1,0,1,1]],[[0,2,1,0],[2,3,4,2],[2,2,2,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,3],[2,2,2,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[3,2,2,1],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[2,2,2,1],[2,0,1,1]],[[0,3,1,0],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[0,2,1,0],[3,3,3,2],[2,2,2,1],[1,0,2,0]],[[0,2,1,0],[2,4,3,2],[2,2,2,1],[1,0,2,0]],[[0,2,1,0],[2,3,4,2],[2,2,2,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,3],[2,2,2,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[3,2,2,1],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[2,2,2,1],[2,0,2,0]],[[0,3,1,0],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[0,2,1,0],[3,3,3,2],[2,2,2,1],[1,1,0,1]],[[0,2,1,0],[2,4,3,2],[2,2,2,1],[1,1,0,1]],[[0,2,1,0],[2,3,4,2],[2,2,2,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,3],[2,2,2,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[3,2,2,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,2,2,1],[2,1,0,1]],[[0,3,1,0],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[2,2,2,1],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[2,2,2,1],[1,1,1,0]],[[0,2,1,0],[2,3,4,2],[2,2,2,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,3],[2,2,2,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[3,2,2,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[2,2,2,1],[2,1,1,0]],[[1,2,2,1],[1,4,3,2],[0,3,0,2],[1,2,0,0]],[[1,2,2,2],[1,3,3,2],[0,3,0,2],[1,2,0,0]],[[1,2,3,1],[1,3,3,2],[0,3,0,2],[1,2,0,0]],[[1,3,2,1],[1,3,3,2],[0,3,0,2],[1,2,0,0]],[[2,2,2,1],[1,3,3,2],[0,3,0,2],[1,2,0,0]],[[0,3,1,0],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[0,2,1,0],[3,3,3,2],[2,2,2,1],[1,2,0,0]],[[0,2,1,0],[2,4,3,2],[2,2,2,1],[1,2,0,0]],[[0,2,1,0],[2,3,4,2],[2,2,2,1],[1,2,0,0]],[[0,2,1,0],[2,3,3,3],[2,2,2,1],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[3,2,2,1],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[1,4,3,2],[0,3,0,1],[1,2,1,0]],[[1,2,2,2],[1,3,3,2],[0,3,0,1],[1,2,1,0]],[[1,2,3,1],[1,3,3,2],[0,3,0,1],[1,2,1,0]],[[1,3,2,1],[1,3,3,2],[0,3,0,1],[1,2,1,0]],[[2,2,2,1],[1,3,3,2],[0,3,0,1],[1,2,1,0]],[[1,2,2,1],[1,4,3,2],[0,3,0,1],[1,2,0,1]],[[1,2,2,2],[1,3,3,2],[0,3,0,1],[1,2,0,1]],[[1,2,3,1],[1,3,3,2],[0,3,0,1],[1,2,0,1]],[[1,3,2,1],[1,3,3,2],[0,3,0,1],[1,2,0,1]],[[2,2,2,1],[1,3,3,2],[0,3,0,1],[1,2,0,1]],[[1,2,2,1],[1,4,3,2],[0,3,0,1],[1,1,2,0]],[[1,2,2,2],[1,3,3,2],[0,3,0,1],[1,1,2,0]],[[1,2,3,1],[1,3,3,2],[0,3,0,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,2],[0,3,0,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,2],[0,3,0,1],[1,1,2,0]],[[1,2,2,1],[1,4,3,2],[0,3,0,1],[1,1,1,1]],[[1,2,2,2],[1,3,3,2],[0,3,0,1],[1,1,1,1]],[[1,2,3,1],[1,3,3,2],[0,3,0,1],[1,1,1,1]],[[1,3,2,1],[1,3,3,2],[0,3,0,1],[1,1,1,1]],[[2,2,2,1],[1,3,3,2],[0,3,0,1],[1,1,1,1]],[[1,2,2,1],[1,4,3,2],[0,3,0,0],[1,2,2,0]],[[1,2,2,2],[1,3,3,2],[0,3,0,0],[1,2,2,0]],[[1,2,3,1],[1,3,3,2],[0,3,0,0],[1,2,2,0]],[[1,3,2,1],[1,3,3,2],[0,3,0,0],[1,2,2,0]],[[2,2,2,1],[1,3,3,2],[0,3,0,0],[1,2,2,0]],[[1,2,2,1],[1,3,3,3],[0,2,0,2],[1,2,1,0]],[[1,2,2,2],[1,3,3,2],[0,2,0,2],[1,2,1,0]],[[1,2,3,1],[1,3,3,2],[0,2,0,2],[1,2,1,0]],[[1,3,2,1],[1,3,3,2],[0,2,0,2],[1,2,1,0]],[[2,2,2,1],[1,3,3,2],[0,2,0,2],[1,2,1,0]],[[1,2,2,1],[1,3,3,3],[0,2,0,2],[1,2,0,1]],[[1,2,2,2],[1,3,3,2],[0,2,0,2],[1,2,0,1]],[[1,2,3,1],[1,3,3,2],[0,2,0,2],[1,2,0,1]],[[1,3,2,1],[1,3,3,2],[0,2,0,2],[1,2,0,1]],[[2,2,2,1],[1,3,3,2],[0,2,0,2],[1,2,0,1]],[[1,2,2,1],[1,3,3,3],[0,2,0,2],[1,1,2,0]],[[1,2,2,2],[1,3,3,2],[0,2,0,2],[1,1,2,0]],[[1,2,3,1],[1,3,3,2],[0,2,0,2],[1,1,2,0]],[[1,3,2,1],[1,3,3,2],[0,2,0,2],[1,1,2,0]],[[2,2,2,1],[1,3,3,2],[0,2,0,2],[1,1,2,0]],[[1,2,2,1],[1,3,3,3],[0,2,0,2],[1,1,1,1]],[[1,2,2,2],[1,3,3,2],[0,2,0,2],[1,1,1,1]],[[1,2,3,1],[1,3,3,2],[0,2,0,2],[1,1,1,1]],[[0,3,1,0],[2,3,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,1,0],[3,3,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,1,0],[2,4,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,1,0],[2,3,4,2],[2,2,3,0],[0,1,2,0]],[[0,2,1,0],[2,3,3,2],[3,2,3,0],[0,1,2,0]],[[0,3,1,0],[2,3,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,1,0],[2,3,4,2],[2,2,3,0],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,2,3,0],[0,2,1,0]],[[1,3,2,1],[1,3,3,2],[0,2,0,2],[1,1,1,1]],[[2,2,2,1],[1,3,3,2],[0,2,0,2],[1,1,1,1]],[[0,3,1,0],[2,3,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,1,0],[3,3,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,1,0],[2,4,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,1,0],[2,3,4,2],[2,2,3,0],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[3,2,3,0],[1,0,2,0]],[[0,2,1,0],[2,3,3,2],[2,2,3,0],[2,0,2,0]],[[0,3,1,0],[2,3,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,1,0],[2,3,4,2],[2,2,3,0],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[3,2,3,0],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[2,2,3,0],[2,1,1,0]],[[0,3,1,0],[2,3,3,2],[2,2,3,0],[1,2,0,0]],[[0,2,1,0],[3,3,3,2],[2,2,3,0],[1,2,0,0]],[[0,2,1,0],[2,4,3,2],[2,2,3,0],[1,2,0,0]],[[0,2,1,0],[2,3,4,2],[2,2,3,0],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[3,2,3,0],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[2,2,3,0],[2,2,0,0]],[[0,3,1,0],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[0,2,1,0],[3,3,3,2],[2,2,3,1],[0,2,0,0]],[[0,2,1,0],[2,4,3,2],[2,2,3,1],[0,2,0,0]],[[0,2,1,0],[2,3,4,2],[2,2,3,1],[0,2,0,0]],[[0,2,1,0],[2,3,3,3],[2,2,3,1],[0,2,0,0]],[[0,2,1,0],[2,3,3,2],[3,2,3,1],[0,2,0,0]],[[1,2,2,1],[1,3,4,2],[0,1,3,0],[1,2,1,0]],[[1,2,2,2],[1,3,3,2],[0,1,3,0],[1,2,1,0]],[[1,2,3,1],[1,3,3,2],[0,1,3,0],[1,2,1,0]],[[1,3,2,1],[1,3,3,2],[0,1,3,0],[1,2,1,0]],[[2,2,2,1],[1,3,3,2],[0,1,3,0],[1,2,1,0]],[[1,2,2,1],[1,3,4,2],[0,1,3,0],[1,2,0,1]],[[1,2,2,2],[1,3,3,2],[0,1,3,0],[1,2,0,1]],[[1,2,3,1],[1,3,3,2],[0,1,3,0],[1,2,0,1]],[[1,3,2,1],[1,3,3,2],[0,1,3,0],[1,2,0,1]],[[2,2,2,1],[1,3,3,2],[0,1,3,0],[1,2,0,1]],[[1,2,2,1],[1,3,4,2],[0,1,3,0],[1,1,2,0]],[[1,2,2,2],[1,3,3,2],[0,1,3,0],[1,1,2,0]],[[1,2,3,1],[1,3,3,2],[0,1,3,0],[1,1,2,0]],[[1,3,2,1],[1,3,3,2],[0,1,3,0],[1,1,2,0]],[[2,2,2,1],[1,3,3,2],[0,1,3,0],[1,1,2,0]],[[1,2,2,1],[1,3,4,2],[0,1,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,3,2],[0,1,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,2],[0,1,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,2],[0,1,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,3,2],[0,1,3,0],[1,1,1,1]],[[1,2,2,1],[1,3,4,2],[0,1,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,3,2],[0,1,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,3,2],[0,1,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,3,2],[0,1,3,0],[1,0,2,1]],[[0,3,1,0],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[0,2,1,0],[3,3,3,2],[2,2,3,1],[1,1,0,0]],[[0,2,1,0],[2,4,3,2],[2,2,3,1],[1,1,0,0]],[[0,2,1,0],[2,3,4,2],[2,2,3,1],[1,1,0,0]],[[0,2,1,0],[2,3,3,3],[2,2,3,1],[1,1,0,0]],[[0,2,1,0],[2,3,3,2],[3,2,3,1],[1,1,0,0]],[[0,2,1,0],[2,3,3,2],[2,2,3,1],[2,1,0,0]],[[1,2,2,1],[1,3,3,3],[0,1,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[0,1,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[0,1,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[0,1,2,2],[1,1,0,1]],[[1,2,2,1],[1,3,3,3],[0,1,1,2],[1,2,1,0]],[[1,2,2,2],[1,3,3,2],[0,1,1,2],[1,2,1,0]],[[1,2,3,1],[1,3,3,2],[0,1,1,2],[1,2,1,0]],[[1,3,2,1],[1,3,3,2],[0,1,1,2],[1,2,1,0]],[[2,2,2,1],[1,3,3,2],[0,1,1,2],[1,2,1,0]],[[1,2,2,1],[1,3,3,3],[0,1,1,2],[1,2,0,1]],[[1,2,2,2],[1,3,3,2],[0,1,1,2],[1,2,0,1]],[[1,2,3,1],[1,3,3,2],[0,1,1,2],[1,2,0,1]],[[1,3,2,1],[1,3,3,2],[0,1,1,2],[1,2,0,1]],[[2,2,2,1],[1,3,3,2],[0,1,1,2],[1,2,0,1]],[[1,2,2,1],[1,3,3,3],[0,1,1,2],[1,1,2,0]],[[1,2,2,2],[1,3,3,2],[0,1,1,2],[1,1,2,0]],[[1,2,3,1],[1,3,3,2],[0,1,1,2],[1,1,2,0]],[[1,3,2,1],[1,3,3,2],[0,1,1,2],[1,1,2,0]],[[2,2,2,1],[1,3,3,2],[0,1,1,2],[1,1,2,0]],[[1,2,2,1],[1,3,3,3],[0,1,1,2],[1,1,1,1]],[[1,2,2,2],[1,3,3,2],[0,1,1,2],[1,1,1,1]],[[1,2,3,1],[1,3,3,2],[0,1,1,2],[1,1,1,1]],[[1,3,2,1],[1,3,3,2],[0,1,1,2],[1,1,1,1]],[[2,2,2,1],[1,3,3,2],[0,1,1,2],[1,1,1,1]],[[1,2,2,1],[1,3,3,3],[0,1,1,2],[1,0,2,1]],[[1,2,2,2],[1,3,3,2],[0,1,1,2],[1,0,2,1]],[[1,2,3,1],[1,3,3,2],[0,1,1,2],[1,0,2,1]],[[1,3,2,1],[1,3,3,2],[0,1,1,2],[1,0,2,1]],[[1,2,2,1],[1,3,3,3],[0,1,0,2],[1,1,2,1]],[[1,2,2,2],[1,3,3,2],[0,1,0,2],[1,1,2,1]],[[1,2,3,1],[1,3,3,2],[0,1,0,2],[1,1,2,1]],[[1,3,2,1],[1,3,3,2],[0,1,0,2],[1,1,2,1]],[[2,2,2,1],[1,3,3,2],[0,1,0,2],[1,1,2,1]],[[1,2,2,1],[1,3,3,3],[0,0,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,2],[0,0,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,2],[0,0,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,2],[0,0,3,2],[1,1,0,1]],[[1,2,2,1],[1,3,3,3],[0,0,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,2],[0,0,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,2],[0,0,3,2],[0,1,2,0]],[[1,2,2,1],[1,3,3,2],[0,0,3,3],[0,1,1,1]],[[1,2,2,1],[1,3,3,3],[0,0,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,2],[0,0,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,2],[0,0,3,2],[0,1,1,1]],[[1,2,2,1],[1,3,3,2],[0,0,3,2],[0,0,2,2]],[[1,2,2,1],[1,3,3,2],[0,0,3,3],[0,0,2,1]],[[1,2,2,1],[1,3,3,3],[0,0,3,2],[0,0,2,1]],[[1,2,2,2],[1,3,3,2],[0,0,3,2],[0,0,2,1]],[[1,2,3,1],[1,3,3,2],[0,0,3,2],[0,0,2,1]],[[1,2,2,1],[1,3,4,2],[0,0,3,0],[1,2,2,0]],[[1,2,2,2],[1,3,3,2],[0,0,3,0],[1,2,2,0]],[[1,2,3,1],[1,3,3,2],[0,0,3,0],[1,2,2,0]],[[1,3,2,1],[1,3,3,2],[0,0,3,0],[1,2,2,0]],[[2,2,2,1],[1,3,3,2],[0,0,3,0],[1,2,2,0]],[[1,2,2,1],[1,3,4,2],[0,0,3,0],[1,2,1,1]],[[1,2,2,2],[1,3,3,2],[0,0,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,3,2],[0,0,3,0],[1,2,1,1]],[[1,3,2,1],[1,3,3,2],[0,0,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,3,2],[0,0,3,0],[1,2,1,1]],[[1,2,2,1],[1,3,3,3],[0,0,2,2],[1,1,2,0]],[[1,2,2,2],[1,3,3,2],[0,0,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,3,2],[0,0,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,3,2],[0,0,2,2],[1,1,2,0]],[[1,2,2,1],[1,3,3,3],[0,0,2,2],[1,1,1,1]],[[1,2,2,2],[1,3,3,2],[0,0,2,2],[1,1,1,1]],[[1,2,3,1],[1,3,3,2],[0,0,2,2],[1,1,1,1]],[[1,3,2,1],[1,3,3,2],[0,0,2,2],[1,1,1,1]],[[1,2,2,1],[1,3,3,3],[0,0,2,2],[1,0,2,1]],[[1,2,2,2],[1,3,3,2],[0,0,2,2],[1,0,2,1]],[[1,2,3,1],[1,3,3,2],[0,0,2,2],[1,0,2,1]],[[1,3,2,1],[1,3,3,2],[0,0,2,2],[1,0,2,1]],[[1,2,2,1],[1,3,3,3],[0,0,1,2],[1,2,2,0]],[[1,2,2,2],[1,3,3,2],[0,0,1,2],[1,2,2,0]],[[1,2,3,1],[1,3,3,2],[0,0,1,2],[1,2,2,0]],[[1,3,2,1],[1,3,3,2],[0,0,1,2],[1,2,2,0]],[[2,2,2,1],[1,3,3,2],[0,0,1,2],[1,2,2,0]],[[1,2,2,1],[1,3,3,3],[0,0,1,2],[1,2,1,1]],[[1,2,2,2],[1,3,3,2],[0,0,1,2],[1,2,1,1]],[[1,2,3,1],[1,3,3,2],[0,0,1,2],[1,2,1,1]],[[1,3,2,1],[1,3,3,2],[0,0,1,2],[1,2,1,1]],[[2,2,2,1],[1,3,3,2],[0,0,1,2],[1,2,1,1]],[[1,2,2,1],[1,3,3,3],[0,0,0,2],[1,2,2,1]],[[1,2,2,2],[1,3,3,2],[0,0,0,2],[1,2,2,1]],[[1,2,3,1],[1,3,3,2],[0,0,0,2],[1,2,2,1]],[[1,3,2,1],[1,3,3,2],[0,0,0,2],[1,2,2,1]],[[2,2,2,1],[1,3,3,2],[0,0,0,2],[1,2,2,1]],[[1,2,2,1],[1,4,3,1],[2,3,2,1],[1,0,0,0]],[[1,2,2,2],[1,3,3,1],[2,3,2,1],[1,0,0,0]],[[1,2,3,1],[1,3,3,1],[2,3,2,1],[1,0,0,0]],[[1,3,2,1],[1,3,3,1],[2,3,2,1],[1,0,0,0]],[[2,2,2,1],[1,3,3,1],[2,3,2,1],[1,0,0,0]],[[0,3,1,0],[2,3,3,2],[2,3,0,0],[0,2,2,1]],[[0,2,1,0],[3,3,3,2],[2,3,0,0],[0,2,2,1]],[[0,2,1,0],[2,4,3,2],[2,3,0,0],[0,2,2,1]],[[0,2,1,0],[2,3,3,2],[3,3,0,0],[0,2,2,1]],[[0,3,1,0],[2,3,3,2],[2,3,0,0],[1,1,2,1]],[[0,2,1,0],[3,3,3,2],[2,3,0,0],[1,1,2,1]],[[0,2,1,0],[2,4,3,2],[2,3,0,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[3,3,0,0],[1,1,2,1]],[[0,2,1,0],[2,3,3,2],[2,3,0,0],[2,1,2,1]],[[0,3,1,0],[2,3,3,2],[2,3,0,0],[1,2,1,1]],[[0,2,1,0],[3,3,3,2],[2,3,0,0],[1,2,1,1]],[[0,2,1,0],[2,4,3,2],[2,3,0,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[3,3,0,0],[1,2,1,1]],[[0,2,1,0],[2,3,3,2],[2,3,0,0],[2,2,1,1]],[[0,3,1,0],[2,3,3,2],[2,3,0,0],[1,2,2,0]],[[0,2,1,0],[3,3,3,2],[2,3,0,0],[1,2,2,0]],[[0,2,1,0],[2,4,3,2],[2,3,0,0],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[3,3,0,0],[1,2,2,0]],[[0,2,1,0],[2,3,3,2],[2,3,0,0],[2,2,2,0]],[[0,3,1,0],[2,3,3,2],[2,3,0,1],[0,2,2,0]],[[0,2,1,0],[3,3,3,2],[2,3,0,1],[0,2,2,0]],[[0,2,1,0],[2,4,3,2],[2,3,0,1],[0,2,2,0]],[[0,2,1,0],[2,3,3,2],[3,3,0,1],[0,2,2,0]],[[0,3,1,0],[2,3,3,2],[2,3,0,1],[1,1,2,0]],[[0,2,1,0],[3,3,3,2],[2,3,0,1],[1,1,2,0]],[[0,2,1,0],[2,4,3,2],[2,3,0,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[3,3,0,1],[1,1,2,0]],[[0,2,1,0],[2,3,3,2],[2,3,0,1],[2,1,2,0]],[[0,3,1,0],[2,3,3,2],[2,3,0,1],[1,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,3,0,1],[1,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,3,0,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,3,0,1],[1,2,1,0]],[[0,2,1,0],[2,3,3,2],[2,3,0,1],[2,2,1,0]],[[0,3,1,0],[2,3,3,2],[2,3,0,2],[0,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,3,0,2],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,3,0,2],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,3,0,2],[0,2,0,1]],[[0,3,1,0],[2,3,3,2],[2,3,0,2],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,3,0,2],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,3,0,2],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,3,0,2],[0,2,1,0]],[[0,3,1,0],[2,3,3,2],[2,3,0,2],[1,1,0,1]],[[0,2,1,0],[3,3,3,2],[2,3,0,2],[1,1,0,1]],[[0,2,1,0],[2,4,3,2],[2,3,0,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[3,3,0,2],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,3,0,2],[2,1,0,1]],[[0,3,1,0],[2,3,3,2],[2,3,0,2],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[2,3,0,2],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[2,3,0,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[3,3,0,2],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[2,3,0,2],[2,1,1,0]],[[1,2,2,1],[1,4,3,1],[2,3,1,1],[1,0,1,0]],[[1,2,2,2],[1,3,3,1],[2,3,1,1],[1,0,1,0]],[[1,2,3,1],[1,3,3,1],[2,3,1,1],[1,0,1,0]],[[1,3,2,1],[1,3,3,1],[2,3,1,1],[1,0,1,0]],[[2,2,2,1],[1,3,3,1],[2,3,1,1],[1,0,1,0]],[[0,3,1,0],[2,3,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,1,0],[3,3,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,1,0],[2,4,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[3,3,0,2],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[2,3,0,2],[2,2,0,0]],[[1,2,2,1],[1,4,3,1],[2,3,1,1],[1,0,0,1]],[[1,2,2,2],[1,3,3,1],[2,3,1,1],[1,0,0,1]],[[1,2,3,1],[1,3,3,1],[2,3,1,1],[1,0,0,1]],[[1,3,2,1],[1,3,3,1],[2,3,1,1],[1,0,0,1]],[[2,2,2,1],[1,3,3,1],[2,3,1,1],[1,0,0,1]],[[0,3,1,0],[2,3,3,2],[2,3,1,0],[0,2,1,1]],[[0,2,1,0],[3,3,3,2],[2,3,1,0],[0,2,1,1]],[[0,2,1,0],[2,4,3,2],[2,3,1,0],[0,2,1,1]],[[0,2,1,0],[2,3,3,2],[3,3,1,0],[0,2,1,1]],[[0,3,1,0],[2,3,3,2],[2,3,1,0],[1,1,1,1]],[[0,2,1,0],[3,3,3,2],[2,3,1,0],[1,1,1,1]],[[0,2,1,0],[2,4,3,2],[2,3,1,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[3,3,1,0],[1,1,1,1]],[[0,2,1,0],[2,3,3,2],[2,3,1,0],[2,1,1,1]],[[0,3,1,0],[2,3,3,2],[2,3,1,0],[1,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,3,1,0],[1,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,3,1,0],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,3,1,0],[1,2,0,1]],[[0,2,1,0],[2,3,3,2],[2,3,1,0],[2,2,0,1]],[[1,2,2,1],[1,4,3,1],[2,3,1,0],[1,0,1,1]],[[1,2,2,2],[1,3,3,1],[2,3,1,0],[1,0,1,1]],[[1,2,3,1],[1,3,3,1],[2,3,1,0],[1,0,1,1]],[[1,3,2,1],[1,3,3,1],[2,3,1,0],[1,0,1,1]],[[2,2,2,1],[1,3,3,1],[2,3,1,0],[1,0,1,1]],[[0,3,1,0],[2,3,3,2],[2,3,1,1],[0,2,0,1]],[[0,2,1,0],[3,3,3,2],[2,3,1,1],[0,2,0,1]],[[0,2,1,0],[2,4,3,2],[2,3,1,1],[0,2,0,1]],[[0,2,1,0],[2,3,3,2],[3,3,1,1],[0,2,0,1]],[[0,3,1,0],[2,3,3,2],[2,3,1,1],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,3,1,1],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,3,1,1],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,3,1,1],[0,2,1,0]],[[0,3,1,0],[2,3,3,2],[2,3,1,1],[1,1,0,1]],[[0,2,1,0],[3,3,3,2],[2,3,1,1],[1,1,0,1]],[[0,2,1,0],[2,4,3,2],[2,3,1,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[3,3,1,1],[1,1,0,1]],[[0,2,1,0],[2,3,3,2],[2,3,1,1],[2,1,0,1]],[[0,3,1,0],[2,3,3,2],[2,3,1,1],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[2,3,1,1],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[2,3,1,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[3,3,1,1],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[2,3,1,1],[2,1,1,0]],[[0,3,1,0],[2,3,3,2],[2,3,1,1],[1,2,0,0]],[[0,2,1,0],[3,3,3,2],[2,3,1,1],[1,2,0,0]],[[0,2,1,0],[2,4,3,2],[2,3,1,1],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[3,3,1,1],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[2,3,1,1],[2,2,0,0]],[[1,2,2,1],[1,4,3,1],[2,3,0,2],[1,0,1,0]],[[1,2,2,2],[1,3,3,1],[2,3,0,2],[1,0,1,0]],[[1,2,3,1],[1,3,3,1],[2,3,0,2],[1,0,1,0]],[[1,3,2,1],[1,3,3,1],[2,3,0,2],[1,0,1,0]],[[2,2,2,1],[1,3,3,1],[2,3,0,2],[1,0,1,0]],[[1,2,2,1],[1,4,3,1],[2,3,0,2],[1,0,0,1]],[[1,2,2,2],[1,3,3,1],[2,3,0,2],[1,0,0,1]],[[1,2,3,1],[1,3,3,1],[2,3,0,2],[1,0,0,1]],[[1,3,2,1],[1,3,3,1],[2,3,0,2],[1,0,0,1]],[[2,2,2,1],[1,3,3,1],[2,3,0,2],[1,0,0,1]],[[1,2,2,1],[1,4,3,1],[2,3,0,1],[1,2,0,0]],[[1,2,2,2],[1,3,3,1],[2,3,0,1],[1,2,0,0]],[[1,2,3,1],[1,3,3,1],[2,3,0,1],[1,2,0,0]],[[1,3,2,1],[1,3,3,1],[2,3,0,1],[1,2,0,0]],[[2,2,2,1],[1,3,3,1],[2,3,0,1],[1,2,0,0]],[[0,3,1,0],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[0,2,1,0],[3,3,3,2],[2,3,1,2],[1,0,0,1]],[[0,2,1,0],[2,4,3,2],[2,3,1,2],[1,0,0,1]],[[0,2,1,0],[2,3,4,2],[2,3,1,2],[1,0,0,1]],[[0,2,1,0],[2,3,3,3],[2,3,1,2],[1,0,0,1]],[[0,2,1,0],[2,3,3,2],[3,3,1,2],[1,0,0,1]],[[0,2,1,0],[2,3,3,2],[2,3,1,3],[1,0,0,1]],[[0,3,1,0],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[0,2,1,0],[3,3,3,2],[2,3,1,2],[1,0,1,0]],[[0,2,1,0],[2,4,3,2],[2,3,1,2],[1,0,1,0]],[[0,2,1,0],[2,3,4,2],[2,3,1,2],[1,0,1,0]],[[0,2,1,0],[2,3,3,3],[2,3,1,2],[1,0,1,0]],[[0,2,1,0],[2,3,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[1,4,3,1],[2,3,0,1],[1,1,1,0]],[[1,2,2,2],[1,3,3,1],[2,3,0,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,1],[2,3,0,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,1],[2,3,0,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,1],[2,3,0,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,1],[2,3,0,1],[1,1,0,1]],[[1,2,2,2],[1,3,3,1],[2,3,0,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,1],[2,3,0,1],[1,1,0,1]],[[1,3,2,1],[1,3,3,1],[2,3,0,1],[1,1,0,1]],[[2,2,2,1],[1,3,3,1],[2,3,0,1],[1,1,0,1]],[[1,2,2,1],[1,4,3,1],[2,3,0,1],[0,2,1,0]],[[1,2,2,2],[1,3,3,1],[2,3,0,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,1],[2,3,0,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,1],[2,3,0,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,1],[2,3,0,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,1],[2,3,0,1],[0,2,0,1]],[[1,2,2,2],[1,3,3,1],[2,3,0,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,1],[2,3,0,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,1],[2,3,0,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,1],[2,3,0,1],[0,2,0,1]],[[1,2,2,1],[1,4,3,1],[2,3,0,0],[1,2,0,1]],[[1,2,2,2],[1,3,3,1],[2,3,0,0],[1,2,0,1]],[[1,2,3,1],[1,3,3,1],[2,3,0,0],[1,2,0,1]],[[1,3,2,1],[1,3,3,1],[2,3,0,0],[1,2,0,1]],[[2,2,2,1],[1,3,3,1],[2,3,0,0],[1,2,0,1]],[[1,2,2,1],[1,4,3,1],[2,3,0,0],[1,1,1,1]],[[1,2,2,2],[1,3,3,1],[2,3,0,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,1],[2,3,0,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,1],[2,3,0,0],[1,1,1,1]],[[2,2,2,1],[1,3,3,1],[2,3,0,0],[1,1,1,1]],[[1,2,2,1],[1,4,3,1],[2,3,0,0],[0,2,1,1]],[[1,2,2,2],[1,3,3,1],[2,3,0,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,1],[2,3,0,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,1],[2,3,0,0],[0,2,1,1]],[[2,2,2,1],[1,3,3,1],[2,3,0,0],[0,2,1,1]],[[0,3,1,0],[2,3,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,1,0],[3,3,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,1,0],[2,4,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,1,0],[2,3,3,2],[3,3,2,0],[0,2,1,0]],[[0,3,1,0],[2,3,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,1,0],[3,3,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,1,0],[2,4,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,1,0],[2,3,4,2],[2,3,2,0],[1,0,1,1]],[[0,2,1,0],[2,3,3,2],[3,3,2,0],[1,0,1,1]],[[0,3,1,0],[2,3,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,1,0],[3,3,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,1,0],[2,4,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[3,3,2,0],[1,1,1,0]],[[0,2,1,0],[2,3,3,2],[2,3,2,0],[2,1,1,0]],[[0,3,1,0],[2,3,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,1,0],[3,3,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,1,0],[2,4,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[3,3,2,0],[1,2,0,0]],[[0,2,1,0],[2,3,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[1,4,3,1],[2,2,2,1],[1,1,0,0]],[[1,2,2,2],[1,3,3,1],[2,2,2,1],[1,1,0,0]],[[1,2,3,1],[1,3,3,1],[2,2,2,1],[1,1,0,0]],[[1,3,2,1],[1,3,3,1],[2,2,2,1],[1,1,0,0]],[[0,3,1,0],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[0,2,1,0],[3,3,3,2],[2,3,2,1],[1,0,0,1]],[[0,2,1,0],[2,4,3,2],[2,3,2,1],[1,0,0,1]],[[0,2,1,0],[2,3,4,2],[2,3,2,1],[1,0,0,1]],[[0,2,1,0],[2,3,3,3],[2,3,2,1],[1,0,0,1]],[[0,2,1,0],[2,3,3,2],[3,3,2,1],[1,0,0,1]],[[0,3,1,0],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[0,2,1,0],[3,3,3,2],[2,3,2,1],[1,0,1,0]],[[0,2,1,0],[2,4,3,2],[2,3,2,1],[1,0,1,0]],[[0,2,1,0],[2,3,4,2],[2,3,2,1],[1,0,1,0]],[[0,2,1,0],[2,3,3,3],[2,3,2,1],[1,0,1,0]],[[0,2,1,0],[2,3,3,2],[3,3,2,1],[1,0,1,0]],[[2,2,2,1],[1,3,3,1],[2,2,2,1],[1,1,0,0]],[[1,2,2,1],[1,4,3,1],[2,2,2,1],[0,2,0,0]],[[1,2,2,2],[1,3,3,1],[2,2,2,1],[0,2,0,0]],[[1,2,3,1],[1,3,3,1],[2,2,2,1],[0,2,0,0]],[[1,3,2,1],[1,3,3,1],[2,2,2,1],[0,2,0,0]],[[2,2,2,1],[1,3,3,1],[2,2,2,1],[0,2,0,0]],[[1,2,2,1],[1,4,3,1],[2,2,1,1],[1,2,0,0]],[[1,2,2,2],[1,3,3,1],[2,2,1,1],[1,2,0,0]],[[1,2,3,1],[1,3,3,1],[2,2,1,1],[1,2,0,0]],[[1,3,2,1],[1,3,3,1],[2,2,1,1],[1,2,0,0]],[[2,2,2,1],[1,3,3,1],[2,2,1,1],[1,2,0,0]],[[1,2,2,1],[1,4,3,1],[2,2,1,1],[1,1,1,0]],[[1,2,2,2],[1,3,3,1],[2,2,1,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,1],[2,2,1,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,1],[2,2,1,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,1],[2,2,1,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,1],[2,2,1,1],[1,1,0,1]],[[1,2,2,2],[1,3,3,1],[2,2,1,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,1],[2,2,1,1],[1,1,0,1]],[[1,3,2,1],[1,3,3,1],[2,2,1,1],[1,1,0,1]],[[2,2,2,1],[1,3,3,1],[2,2,1,1],[1,1,0,1]],[[1,2,2,1],[1,4,3,1],[2,2,1,1],[1,0,2,0]],[[1,2,2,2],[1,3,3,1],[2,2,1,1],[1,0,2,0]],[[1,2,3,1],[1,3,3,1],[2,2,1,1],[1,0,2,0]],[[1,3,2,1],[1,3,3,1],[2,2,1,1],[1,0,2,0]],[[2,2,2,1],[1,3,3,1],[2,2,1,1],[1,0,2,0]],[[1,2,2,1],[1,4,3,1],[2,2,1,1],[1,0,1,1]],[[1,2,2,2],[1,3,3,1],[2,2,1,1],[1,0,1,1]],[[1,2,3,1],[1,3,3,1],[2,2,1,1],[1,0,1,1]],[[1,3,2,1],[1,3,3,1],[2,2,1,1],[1,0,1,1]],[[2,2,2,1],[1,3,3,1],[2,2,1,1],[1,0,1,1]],[[1,2,2,1],[1,4,3,1],[2,2,1,1],[0,2,1,0]],[[1,2,2,2],[1,3,3,1],[2,2,1,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,1],[2,2,1,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,1],[2,2,1,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,1],[2,2,1,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,1],[2,2,1,1],[0,2,0,1]],[[1,2,2,2],[1,3,3,1],[2,2,1,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,1],[2,2,1,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,1],[2,2,1,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,1],[2,2,1,1],[0,2,0,1]],[[1,2,2,1],[1,4,3,1],[2,2,1,1],[0,1,2,0]],[[1,2,2,2],[1,3,3,1],[2,2,1,1],[0,1,2,0]],[[1,2,3,1],[1,3,3,1],[2,2,1,1],[0,1,2,0]],[[1,3,2,1],[1,3,3,1],[2,2,1,1],[0,1,2,0]],[[2,2,2,1],[1,3,3,1],[2,2,1,1],[0,1,2,0]],[[1,2,2,1],[1,4,3,1],[2,2,1,1],[0,1,1,1]],[[1,2,2,2],[1,3,3,1],[2,2,1,1],[0,1,1,1]],[[1,2,3,1],[1,3,3,1],[2,2,1,1],[0,1,1,1]],[[1,3,2,1],[1,3,3,1],[2,2,1,1],[0,1,1,1]],[[2,2,2,1],[1,3,3,1],[2,2,1,1],[0,1,1,1]],[[1,2,2,1],[1,4,3,1],[2,2,1,0],[1,2,0,1]],[[1,2,2,2],[1,3,3,1],[2,2,1,0],[1,2,0,1]],[[1,2,3,1],[1,3,3,1],[2,2,1,0],[1,2,0,1]],[[1,3,2,1],[1,3,3,1],[2,2,1,0],[1,2,0,1]],[[2,2,2,1],[1,3,3,1],[2,2,1,0],[1,2,0,1]],[[1,2,2,1],[1,4,3,1],[2,2,1,0],[1,1,1,1]],[[1,2,2,2],[1,3,3,1],[2,2,1,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,1],[2,2,1,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,1],[2,2,1,0],[1,1,1,1]],[[2,2,2,1],[1,3,3,1],[2,2,1,0],[1,1,1,1]],[[1,2,2,1],[1,4,3,1],[2,2,1,0],[1,0,2,1]],[[1,2,2,2],[1,3,3,1],[2,2,1,0],[1,0,2,1]],[[1,2,3,1],[1,3,3,1],[2,2,1,0],[1,0,2,1]],[[1,3,2,1],[1,3,3,1],[2,2,1,0],[1,0,2,1]],[[2,2,2,1],[1,3,3,1],[2,2,1,0],[1,0,2,1]],[[1,2,2,1],[1,4,3,1],[2,2,1,0],[0,2,1,1]],[[1,2,2,2],[1,3,3,1],[2,2,1,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,1],[2,2,1,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,1],[2,2,1,0],[0,2,1,1]],[[2,2,2,1],[1,3,3,1],[2,2,1,0],[0,2,1,1]],[[1,2,2,1],[1,4,3,1],[2,2,1,0],[0,1,2,1]],[[1,2,2,2],[1,3,3,1],[2,2,1,0],[0,1,2,1]],[[1,2,3,1],[1,3,3,1],[2,2,1,0],[0,1,2,1]],[[1,3,2,1],[1,3,3,1],[2,2,1,0],[0,1,2,1]],[[2,2,2,1],[1,3,3,1],[2,2,1,0],[0,1,2,1]],[[1,2,2,1],[1,4,3,1],[2,2,0,2],[1,2,0,0]],[[1,2,2,2],[1,3,3,1],[2,2,0,2],[1,2,0,0]],[[1,2,3,1],[1,3,3,1],[2,2,0,2],[1,2,0,0]],[[1,3,2,1],[1,3,3,1],[2,2,0,2],[1,2,0,0]],[[2,2,2,1],[1,3,3,1],[2,2,0,2],[1,2,0,0]],[[1,2,2,1],[1,4,3,1],[2,2,0,2],[1,1,1,0]],[[1,2,2,2],[1,3,3,1],[2,2,0,2],[1,1,1,0]],[[1,2,3,1],[1,3,3,1],[2,2,0,2],[1,1,1,0]],[[1,3,2,1],[1,3,3,1],[2,2,0,2],[1,1,1,0]],[[2,2,2,1],[1,3,3,1],[2,2,0,2],[1,1,1,0]],[[1,2,2,1],[1,4,3,1],[2,2,0,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,1],[2,2,0,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,1],[2,2,0,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,1],[2,2,0,2],[1,1,0,1]],[[2,2,2,1],[1,3,3,1],[2,2,0,2],[1,1,0,1]],[[1,2,2,1],[1,4,3,1],[2,2,0,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,1],[2,2,0,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,1],[2,2,0,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,1],[2,2,0,2],[1,0,2,0]],[[2,2,2,1],[1,3,3,1],[2,2,0,2],[1,0,2,0]],[[1,2,2,1],[1,4,3,1],[2,2,0,2],[1,0,1,1]],[[1,2,2,2],[1,3,3,1],[2,2,0,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,1],[2,2,0,2],[1,0,1,1]],[[1,3,2,1],[1,3,3,1],[2,2,0,2],[1,0,1,1]],[[2,2,2,1],[1,3,3,1],[2,2,0,2],[1,0,1,1]],[[1,2,2,1],[1,4,3,1],[2,2,0,2],[0,2,1,0]],[[1,2,2,2],[1,3,3,1],[2,2,0,2],[0,2,1,0]],[[1,2,3,1],[1,3,3,1],[2,2,0,2],[0,2,1,0]],[[1,3,2,1],[1,3,3,1],[2,2,0,2],[0,2,1,0]],[[2,2,2,1],[1,3,3,1],[2,2,0,2],[0,2,1,0]],[[1,2,2,1],[1,4,3,1],[2,2,0,2],[0,2,0,1]],[[1,2,2,2],[1,3,3,1],[2,2,0,2],[0,2,0,1]],[[1,2,3,1],[1,3,3,1],[2,2,0,2],[0,2,0,1]],[[1,3,2,1],[1,3,3,1],[2,2,0,2],[0,2,0,1]],[[2,2,2,1],[1,3,3,1],[2,2,0,2],[0,2,0,1]],[[1,2,2,1],[1,4,3,1],[2,2,0,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,1],[2,2,0,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,1],[2,2,0,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,1],[2,2,0,2],[0,1,2,0]],[[2,2,2,1],[1,3,3,1],[2,2,0,2],[0,1,2,0]],[[1,2,2,1],[1,4,3,1],[2,2,0,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,1],[2,2,0,2],[0,1,1,1]],[[0,3,1,0],[2,3,3,2],[2,3,3,0],[1,0,1,0]],[[0,2,1,0],[3,3,3,2],[2,3,3,0],[1,0,1,0]],[[0,2,1,0],[2,4,3,2],[2,3,3,0],[1,0,1,0]],[[0,2,1,0],[2,3,4,2],[2,3,3,0],[1,0,1,0]],[[0,2,1,0],[2,3,3,2],[3,3,3,0],[1,0,1,0]],[[1,2,3,1],[1,3,3,1],[2,2,0,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,1],[2,2,0,2],[0,1,1,1]],[[2,2,2,1],[1,3,3,1],[2,2,0,2],[0,1,1,1]],[[1,2,2,1],[1,4,3,1],[2,2,0,1],[1,1,2,0]],[[1,2,2,2],[1,3,3,1],[2,2,0,1],[1,1,2,0]],[[1,2,3,1],[1,3,3,1],[2,2,0,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,1],[2,2,0,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,1],[2,2,0,1],[1,1,2,0]],[[1,2,2,1],[1,4,3,1],[2,2,0,1],[0,2,2,0]],[[1,2,2,2],[1,3,3,1],[2,2,0,1],[0,2,2,0]],[[1,2,3,1],[1,3,3,1],[2,2,0,1],[0,2,2,0]],[[1,3,2,1],[1,3,3,1],[2,2,0,1],[0,2,2,0]],[[2,2,2,1],[1,3,3,1],[2,2,0,1],[0,2,2,0]],[[1,2,2,1],[1,4,3,1],[2,2,0,0],[1,1,2,1]],[[1,2,2,2],[1,3,3,1],[2,2,0,0],[1,1,2,1]],[[1,2,3,1],[1,3,3,1],[2,2,0,0],[1,1,2,1]],[[1,3,2,1],[1,3,3,1],[2,2,0,0],[1,1,2,1]],[[2,2,2,1],[1,3,3,1],[2,2,0,0],[1,1,2,1]],[[1,2,2,1],[1,4,3,1],[2,2,0,0],[0,2,2,1]],[[1,2,2,2],[1,3,3,1],[2,2,0,0],[0,2,2,1]],[[1,2,3,1],[1,3,3,1],[2,2,0,0],[0,2,2,1]],[[1,3,2,1],[1,3,3,1],[2,2,0,0],[0,2,2,1]],[[2,2,2,1],[1,3,3,1],[2,2,0,0],[0,2,2,1]],[[0,3,1,0],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[0,2,1,0],[3,3,3,2],[2,3,3,1],[1,0,0,0]],[[0,2,1,0],[2,4,3,2],[2,3,3,1],[1,0,0,0]],[[0,2,1,0],[2,3,4,2],[2,3,3,1],[1,0,0,0]],[[0,2,1,0],[2,3,3,3],[2,3,3,1],[1,0,0,0]],[[0,2,1,0],[2,3,3,2],[3,3,3,1],[1,0,0,0]],[[1,2,2,1],[1,4,3,1],[2,1,1,1],[1,2,1,0]],[[1,2,2,2],[1,3,3,1],[2,1,1,1],[1,2,1,0]],[[1,2,3,1],[1,3,3,1],[2,1,1,1],[1,2,1,0]],[[1,3,2,1],[1,3,3,1],[2,1,1,1],[1,2,1,0]],[[2,2,2,1],[1,3,3,1],[2,1,1,1],[1,2,1,0]],[[1,2,2,1],[1,4,3,1],[2,1,1,1],[1,2,0,1]],[[1,2,2,2],[1,3,3,1],[2,1,1,1],[1,2,0,1]],[[1,2,3,1],[1,3,3,1],[2,1,1,1],[1,2,0,1]],[[1,3,2,1],[1,3,3,1],[2,1,1,1],[1,2,0,1]],[[2,2,2,1],[1,3,3,1],[2,1,1,1],[1,2,0,1]],[[1,2,2,1],[1,4,3,1],[2,1,1,0],[1,2,1,1]],[[1,2,2,2],[1,3,3,1],[2,1,1,0],[1,2,1,1]],[[1,2,3,1],[1,3,3,1],[2,1,1,0],[1,2,1,1]],[[1,3,2,1],[1,3,3,1],[2,1,1,0],[1,2,1,1]],[[2,2,2,1],[1,3,3,1],[2,1,1,0],[1,2,1,1]],[[1,2,2,1],[1,4,3,1],[2,1,0,2],[1,2,1,0]],[[1,2,2,2],[1,3,3,1],[2,1,0,2],[1,2,1,0]],[[1,2,3,1],[1,3,3,1],[2,1,0,2],[1,2,1,0]],[[1,3,2,1],[1,3,3,1],[2,1,0,2],[1,2,1,0]],[[2,2,2,1],[1,3,3,1],[2,1,0,2],[1,2,1,0]],[[1,2,2,1],[1,4,3,1],[2,1,0,2],[1,2,0,1]],[[1,2,2,2],[1,3,3,1],[2,1,0,2],[1,2,0,1]],[[1,2,3,1],[1,3,3,1],[2,1,0,2],[1,2,0,1]],[[1,3,2,1],[1,3,3,1],[2,1,0,2],[1,2,0,1]],[[2,2,2,1],[1,3,3,1],[2,1,0,2],[1,2,0,1]],[[1,2,2,1],[1,4,3,1],[2,1,0,1],[1,2,2,0]],[[1,2,2,2],[1,3,3,1],[2,1,0,1],[1,2,2,0]],[[1,2,3,1],[1,3,3,1],[2,1,0,1],[1,2,2,0]],[[1,3,2,1],[1,3,3,1],[2,1,0,1],[1,2,2,0]],[[2,2,2,1],[1,3,3,1],[2,1,0,1],[1,2,2,0]],[[1,2,2,1],[1,4,3,1],[2,1,0,0],[1,2,2,1]],[[1,2,2,2],[1,3,3,1],[2,1,0,0],[1,2,2,1]],[[1,2,3,1],[1,3,3,1],[2,1,0,0],[1,2,2,1]],[[1,3,2,1],[1,3,3,1],[2,1,0,0],[1,2,2,1]],[[2,2,2,1],[1,3,3,1],[2,1,0,0],[1,2,2,1]],[[1,2,2,1],[1,3,4,1],[2,0,3,2],[1,0,0,1]],[[1,2,2,2],[1,3,3,1],[2,0,3,2],[1,0,0,1]],[[1,2,3,1],[1,3,3,1],[2,0,3,2],[1,0,0,1]],[[1,3,2,1],[1,3,3,1],[2,0,3,2],[1,0,0,1]],[[2,2,2,1],[1,3,3,1],[2,0,3,2],[1,0,0,1]],[[1,2,2,1],[1,3,4,1],[2,0,3,2],[0,1,0,1]],[[1,2,2,2],[1,3,3,1],[2,0,3,2],[0,1,0,1]],[[1,2,3,1],[1,3,3,1],[2,0,3,2],[0,1,0,1]],[[1,3,2,1],[1,3,3,1],[2,0,3,2],[0,1,0,1]],[[2,2,2,1],[1,3,3,1],[2,0,3,2],[0,1,0,1]],[[1,2,2,1],[1,3,4,1],[2,0,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,3,1],[2,0,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,1],[2,0,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,1],[2,0,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,1],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[1,3,4,1],[2,0,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,3,1],[2,0,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,1],[2,0,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,3,1],[2,0,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,3,1],[2,0,3,1],[1,1,0,1]],[[1,2,2,1],[1,3,4,1],[2,0,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,3,1],[2,0,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,3,1],[2,0,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,3,1],[2,0,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,3,1],[2,0,3,1],[1,0,2,0]],[[1,2,2,1],[1,3,4,1],[2,0,3,1],[1,0,1,1]],[[1,2,2,2],[1,3,3,1],[2,0,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,3,1],[2,0,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,3,1],[2,0,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,3,1],[2,0,3,1],[1,0,1,1]],[[1,2,2,1],[1,3,4,1],[2,0,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,3,1],[2,0,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,1],[2,0,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,1],[2,0,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,1],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[1,3,4,1],[2,0,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,3,1],[2,0,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,1],[2,0,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,1],[2,0,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,1],[2,0,3,1],[0,2,0,1]],[[1,2,2,1],[1,3,4,1],[2,0,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,3,1],[2,0,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,3,1],[2,0,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,3,1],[2,0,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,3,1],[2,0,3,1],[0,1,2,0]],[[1,2,2,1],[1,3,4,1],[2,0,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,3,1],[2,0,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,3,1],[2,0,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,3,1],[2,0,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,3,1],[2,0,3,1],[0,1,1,1]],[[1,2,2,1],[1,3,4,1],[2,0,3,1],[0,0,2,1]],[[1,2,2,2],[1,3,3,1],[2,0,3,1],[0,0,2,1]],[[1,2,3,1],[1,3,3,1],[2,0,3,1],[0,0,2,1]],[[1,3,2,1],[1,3,3,1],[2,0,3,1],[0,0,2,1]],[[2,2,2,1],[1,3,3,1],[2,0,3,1],[0,0,2,1]],[[1,2,2,1],[1,3,4,1],[2,0,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,3,1],[2,0,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,1],[2,0,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,1],[2,0,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,3,1],[2,0,3,0],[1,1,1,1]],[[1,2,2,1],[1,3,4,1],[2,0,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,3,1],[2,0,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,3,1],[2,0,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,3,1],[2,0,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,3,1],[2,0,3,0],[1,0,2,1]],[[1,2,2,1],[1,3,4,1],[2,0,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,3,1],[2,0,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,1],[2,0,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,1],[2,0,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,3,1],[2,0,3,0],[0,2,1,1]],[[1,2,2,1],[1,3,4,1],[2,0,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,3,1],[2,0,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,3,1],[2,0,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,3,1],[2,0,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,3,1],[2,0,3,0],[0,1,2,1]],[[1,2,2,1],[1,3,4,1],[2,0,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,3,1],[2,0,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,3,1],[2,0,2,2],[1,1,1,0]],[[1,3,2,1],[1,3,3,1],[2,0,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,3,1],[2,0,2,2],[1,1,1,0]],[[1,2,2,1],[1,3,4,1],[2,0,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,1],[2,0,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,1],[2,0,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,1],[2,0,2,2],[1,1,0,1]],[[2,2,2,1],[1,3,3,1],[2,0,2,2],[1,1,0,1]],[[1,2,2,1],[1,3,4,1],[2,0,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,1],[2,0,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,1],[2,0,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,1],[2,0,2,2],[1,0,2,0]],[[2,2,2,1],[1,3,3,1],[2,0,2,2],[1,0,2,0]],[[1,2,2,1],[1,3,4,1],[2,0,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,3,1],[2,0,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,1],[2,0,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,3,1],[2,0,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,3,1],[2,0,2,2],[1,0,1,1]],[[1,2,2,1],[1,3,4,1],[2,0,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,3,1],[2,0,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,3,1],[2,0,2,2],[0,2,1,0]],[[0,2,1,1],[0,0,1,2],[2,3,3,3],[1,2,2,1]],[[0,2,1,1],[0,0,1,2],[2,3,3,2],[2,2,2,1]],[[0,2,1,1],[0,0,1,2],[2,3,3,2],[1,3,2,1]],[[0,2,1,1],[0,0,1,2],[2,3,3,2],[1,2,3,1]],[[0,2,1,1],[0,0,1,2],[2,3,3,2],[1,2,2,2]],[[0,2,1,2],[0,0,2,2],[2,3,2,2],[1,2,2,1]],[[0,2,1,1],[0,0,2,3],[2,3,2,2],[1,2,2,1]],[[0,2,1,1],[0,0,2,2],[2,3,2,3],[1,2,2,1]],[[0,2,1,1],[0,0,2,2],[2,3,2,2],[2,2,2,1]],[[0,2,1,1],[0,0,2,2],[2,3,2,2],[1,3,2,1]],[[0,2,1,1],[0,0,2,2],[2,3,2,2],[1,2,3,1]],[[0,2,1,1],[0,0,2,2],[2,3,2,2],[1,2,2,2]],[[0,2,1,1],[0,0,2,2],[2,3,4,1],[1,2,2,1]],[[0,2,1,1],[0,0,2,2],[2,3,3,1],[2,2,2,1]],[[0,2,1,1],[0,0,2,2],[2,3,3,1],[1,3,2,1]],[[0,2,1,1],[0,0,2,2],[2,3,3,1],[1,2,3,1]],[[0,2,1,1],[0,0,2,2],[2,3,3,1],[1,2,2,2]],[[0,2,1,2],[0,0,2,2],[2,3,3,2],[1,2,1,1]],[[0,2,1,1],[0,0,2,3],[2,3,3,2],[1,2,1,1]],[[0,2,1,1],[0,0,2,2],[2,3,4,2],[1,2,1,1]],[[0,2,1,1],[0,0,2,2],[2,3,3,3],[1,2,1,1]],[[0,2,1,1],[0,0,2,2],[2,3,3,2],[1,2,1,2]],[[0,2,1,2],[0,0,2,2],[2,3,3,2],[1,2,2,0]],[[0,2,1,1],[0,0,2,3],[2,3,3,2],[1,2,2,0]],[[0,2,1,1],[0,0,2,2],[2,3,4,2],[1,2,2,0]],[[0,2,1,1],[0,0,2,2],[2,3,3,3],[1,2,2,0]],[[0,2,1,1],[0,0,2,2],[2,3,3,2],[2,2,2,0]],[[0,2,1,1],[0,0,2,2],[2,3,3,2],[1,3,2,0]],[[0,2,1,1],[0,0,2,2],[2,3,3,2],[1,2,3,0]],[[0,2,1,1],[0,0,3,0],[2,3,4,2],[1,2,2,1]],[[0,2,1,1],[0,0,3,0],[2,3,3,2],[2,2,2,1]],[[0,2,1,1],[0,0,3,0],[2,3,3,2],[1,3,2,1]],[[0,2,1,1],[0,0,3,0],[2,3,3,2],[1,2,3,1]],[[0,2,1,1],[0,0,3,0],[2,3,3,2],[1,2,2,2]],[[0,2,1,1],[0,0,3,1],[2,3,2,3],[1,2,2,1]],[[0,2,1,1],[0,0,3,1],[2,3,2,2],[2,2,2,1]],[[0,2,1,1],[0,0,3,1],[2,3,2,2],[1,3,2,1]],[[0,2,1,1],[0,0,3,1],[2,3,2,2],[1,2,3,1]],[[0,2,1,1],[0,0,3,1],[2,3,2,2],[1,2,2,2]],[[0,2,1,1],[0,0,3,1],[2,3,4,1],[1,2,2,1]],[[0,2,1,1],[0,0,3,1],[2,3,3,1],[2,2,2,1]],[[0,2,1,1],[0,0,3,1],[2,3,3,1],[1,3,2,1]],[[0,2,1,1],[0,0,3,1],[2,3,3,1],[1,2,3,1]],[[0,2,1,1],[0,0,3,1],[2,3,3,1],[1,2,2,2]],[[0,2,1,1],[0,0,3,1],[2,3,4,2],[1,2,1,1]],[[0,2,1,1],[0,0,3,1],[2,3,3,3],[1,2,1,1]],[[0,2,1,1],[0,0,3,1],[2,3,3,2],[1,2,1,2]],[[0,2,1,1],[0,0,3,1],[2,3,4,2],[1,2,2,0]],[[0,2,1,1],[0,0,3,1],[2,3,3,3],[1,2,2,0]],[[0,2,1,1],[0,0,3,1],[2,3,3,2],[2,2,2,0]],[[0,2,1,1],[0,0,3,1],[2,3,3,2],[1,3,2,0]],[[0,2,1,1],[0,0,3,1],[2,3,3,2],[1,2,3,0]],[[0,2,1,2],[0,0,3,2],[2,1,3,2],[1,2,2,1]],[[0,2,1,1],[0,0,3,3],[2,1,3,2],[1,2,2,1]],[[0,2,1,1],[0,0,3,2],[2,1,3,3],[1,2,2,1]],[[0,2,1,1],[0,0,3,2],[2,1,3,2],[1,2,3,1]],[[0,2,1,1],[0,0,3,2],[2,1,3,2],[1,2,2,2]],[[0,2,1,2],[0,0,3,2],[2,2,2,2],[1,2,2,1]],[[0,2,1,1],[0,0,3,3],[2,2,2,2],[1,2,2,1]],[[0,2,1,1],[0,0,3,2],[2,2,2,3],[1,2,2,1]],[[0,2,1,1],[0,0,3,2],[2,2,2,2],[2,2,2,1]],[[0,2,1,1],[0,0,3,2],[2,2,2,2],[1,3,2,1]],[[0,2,1,1],[0,0,3,2],[2,2,2,2],[1,2,3,1]],[[0,2,1,1],[0,0,3,2],[2,2,2,2],[1,2,2,2]],[[0,2,1,1],[0,0,3,2],[2,2,4,1],[1,2,2,1]],[[0,2,1,1],[0,0,3,2],[2,2,3,1],[2,2,2,1]],[[0,2,1,1],[0,0,3,2],[2,2,3,1],[1,3,2,1]],[[0,2,1,1],[0,0,3,2],[2,2,3,1],[1,2,3,1]],[[0,2,1,1],[0,0,3,2],[2,2,3,1],[1,2,2,2]],[[0,2,1,2],[0,0,3,2],[2,2,3,2],[1,2,1,1]],[[0,2,1,1],[0,0,3,3],[2,2,3,2],[1,2,1,1]],[[0,2,1,1],[0,0,3,2],[2,2,4,2],[1,2,1,1]],[[0,2,1,1],[0,0,3,2],[2,2,3,3],[1,2,1,1]],[[0,2,1,1],[0,0,3,2],[2,2,3,2],[1,2,1,2]],[[0,2,1,2],[0,0,3,2],[2,2,3,2],[1,2,2,0]],[[0,2,1,1],[0,0,3,3],[2,2,3,2],[1,2,2,0]],[[0,2,1,1],[0,0,3,2],[2,2,4,2],[1,2,2,0]],[[0,2,1,1],[0,0,3,2],[2,2,3,3],[1,2,2,0]],[[0,2,1,1],[0,0,3,2],[2,2,3,2],[2,2,2,0]],[[0,2,1,1],[0,0,3,2],[2,2,3,2],[1,3,2,0]],[[0,2,1,1],[0,0,3,2],[2,2,3,2],[1,2,3,0]],[[0,2,1,2],[0,0,3,2],[2,3,2,2],[1,1,2,1]],[[0,2,1,1],[0,0,3,3],[2,3,2,2],[1,1,2,1]],[[0,2,1,1],[0,0,3,2],[2,3,2,3],[1,1,2,1]],[[0,2,1,1],[0,0,3,2],[2,3,2,2],[1,1,3,1]],[[0,2,1,1],[0,0,3,2],[2,3,2,2],[1,1,2,2]],[[0,2,1,1],[0,0,3,2],[2,3,4,0],[1,2,2,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,0],[2,2,2,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,0],[1,3,2,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,0],[1,2,3,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,0],[1,2,2,2]],[[0,2,1,1],[0,0,3,2],[2,3,4,1],[1,1,2,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,1],[1,1,3,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,1],[1,1,2,2]],[[0,2,1,1],[0,0,3,2],[2,3,4,1],[1,2,2,0]],[[0,2,1,1],[0,0,3,2],[2,3,3,1],[2,2,2,0]],[[0,2,1,1],[0,0,3,2],[2,3,3,1],[1,3,2,0]],[[0,2,1,1],[0,0,3,2],[2,3,3,1],[1,2,3,0]],[[0,2,1,2],[0,0,3,2],[2,3,3,2],[1,0,2,1]],[[0,2,1,1],[0,0,3,3],[2,3,3,2],[1,0,2,1]],[[0,2,1,1],[0,0,3,2],[2,3,4,2],[1,0,2,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,3],[1,0,2,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,2],[1,0,2,2]],[[0,2,1,2],[0,0,3,2],[2,3,3,2],[1,1,1,1]],[[0,2,1,1],[0,0,3,3],[2,3,3,2],[1,1,1,1]],[[0,2,1,1],[0,0,3,2],[2,3,4,2],[1,1,1,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,3],[1,1,1,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,2],[1,1,1,2]],[[0,2,1,2],[0,0,3,2],[2,3,3,2],[1,1,2,0]],[[0,2,1,1],[0,0,3,3],[2,3,3,2],[1,1,2,0]],[[0,2,1,1],[0,0,3,2],[2,3,4,2],[1,1,2,0]],[[0,2,1,1],[0,0,3,2],[2,3,3,3],[1,1,2,0]],[[0,2,1,1],[0,0,3,2],[2,3,3,2],[1,1,3,0]],[[0,2,1,2],[0,0,3,2],[2,3,3,2],[1,2,0,1]],[[0,2,1,1],[0,0,3,3],[2,3,3,2],[1,2,0,1]],[[0,2,1,1],[0,0,3,2],[2,3,4,2],[1,2,0,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,3],[1,2,0,1]],[[0,2,1,1],[0,0,3,2],[2,3,3,2],[1,2,0,2]],[[0,2,1,2],[0,0,3,2],[2,3,3,2],[1,2,1,0]],[[0,2,1,1],[0,0,3,3],[2,3,3,2],[1,2,1,0]],[[0,2,1,1],[0,0,3,2],[2,3,4,2],[1,2,1,0]],[[0,2,1,1],[0,0,3,2],[2,3,3,3],[1,2,1,0]],[[1,3,2,1],[1,3,3,1],[2,0,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,3,1],[2,0,2,2],[0,2,1,0]],[[1,2,2,1],[1,3,4,1],[2,0,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,3,1],[2,0,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,3,1],[2,0,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,3,1],[2,0,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,3,1],[2,0,2,2],[0,2,0,1]],[[0,2,1,1],[0,1,1,2],[2,2,3,3],[1,2,2,1]],[[0,2,1,1],[0,1,1,2],[2,2,3,2],[2,2,2,1]],[[0,2,1,1],[0,1,1,2],[2,2,3,2],[1,3,2,1]],[[0,2,1,1],[0,1,1,2],[2,2,3,2],[1,2,3,1]],[[0,2,1,1],[0,1,1,2],[2,2,3,2],[1,2,2,2]],[[0,2,1,1],[0,1,1,2],[2,3,3,3],[1,1,2,1]],[[0,2,1,1],[0,1,1,2],[2,3,3,2],[1,1,3,1]],[[0,2,1,1],[0,1,1,2],[2,3,3,2],[1,1,2,2]],[[0,2,1,2],[0,1,2,2],[2,1,3,2],[1,2,2,1]],[[0,2,1,1],[0,1,2,3],[2,1,3,2],[1,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,1,3,3],[1,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,1,3,2],[1,2,3,1]],[[0,2,1,1],[0,1,2,2],[2,1,3,2],[1,2,2,2]],[[0,2,1,2],[0,1,2,2],[2,2,2,2],[1,2,2,1]],[[0,2,1,1],[0,1,2,3],[2,2,2,2],[1,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,2,2,3],[1,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,2,2,2],[2,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,2,2,2],[1,3,2,1]],[[0,2,1,1],[0,1,2,2],[2,2,2,2],[1,2,3,1]],[[0,2,1,1],[0,1,2,2],[2,2,2,2],[1,2,2,2]],[[0,2,1,1],[0,1,2,2],[2,2,4,1],[1,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,2,3,1],[2,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,2,3,1],[1,3,2,1]],[[0,2,1,1],[0,1,2,2],[2,2,3,1],[1,2,3,1]],[[0,2,1,1],[0,1,2,2],[2,2,3,1],[1,2,2,2]],[[0,2,1,2],[0,1,2,2],[2,2,3,2],[1,2,1,1]],[[0,2,1,1],[0,1,2,3],[2,2,3,2],[1,2,1,1]],[[0,2,1,1],[0,1,2,2],[2,2,4,2],[1,2,1,1]],[[0,2,1,1],[0,1,2,2],[2,2,3,3],[1,2,1,1]],[[0,2,1,1],[0,1,2,2],[2,2,3,2],[1,2,1,2]],[[0,2,1,2],[0,1,2,2],[2,2,3,2],[1,2,2,0]],[[0,2,1,1],[0,1,2,3],[2,2,3,2],[1,2,2,0]],[[0,2,1,1],[0,1,2,2],[2,2,4,2],[1,2,2,0]],[[0,2,1,1],[0,1,2,2],[2,2,3,3],[1,2,2,0]],[[0,2,1,1],[0,1,2,2],[2,2,3,2],[2,2,2,0]],[[0,2,1,1],[0,1,2,2],[2,2,3,2],[1,3,2,0]],[[0,2,1,1],[0,1,2,2],[2,2,3,2],[1,2,3,0]],[[0,2,1,2],[0,1,2,2],[2,3,1,2],[1,2,2,1]],[[0,2,1,1],[0,1,2,3],[2,3,1,2],[1,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,4,1,2],[1,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,1,3],[1,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,1,2],[2,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,1,2],[1,3,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,1,2],[1,2,3,1]],[[0,2,1,1],[0,1,2,2],[2,3,1,2],[1,2,2,2]],[[0,2,1,1],[0,1,2,2],[2,4,2,1],[1,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,2,1],[2,2,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,2,1],[1,3,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,2,1],[1,2,3,1]],[[0,2,1,1],[0,1,2,2],[2,3,2,1],[1,2,2,2]],[[0,2,1,2],[0,1,2,2],[2,3,2,2],[1,1,2,1]],[[0,2,1,1],[0,1,2,3],[2,3,2,2],[1,1,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,2,3],[1,1,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,2,2],[1,1,3,1]],[[0,2,1,1],[0,1,2,2],[2,3,2,2],[1,1,2,2]],[[0,2,1,1],[0,1,2,2],[2,4,2,2],[1,2,2,0]],[[0,2,1,1],[0,1,2,2],[2,3,2,2],[2,2,2,0]],[[0,2,1,1],[0,1,2,2],[2,3,2,2],[1,3,2,0]],[[0,2,1,1],[0,1,2,2],[2,3,2,2],[1,2,3,0]],[[0,2,1,1],[0,1,2,2],[2,4,3,1],[1,1,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,4,1],[1,1,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,1],[1,1,3,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,1],[1,1,2,2]],[[0,2,1,1],[0,1,2,2],[2,4,3,1],[1,2,1,1]],[[0,2,1,1],[0,1,2,2],[2,3,4,1],[1,2,1,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,1],[2,2,1,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,1],[1,3,1,1]],[[0,2,1,2],[0,1,2,2],[2,3,3,2],[1,0,2,1]],[[0,2,1,1],[0,1,2,3],[2,3,3,2],[1,0,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,4,2],[1,0,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,3],[1,0,2,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,2],[1,0,2,2]],[[0,2,1,2],[0,1,2,2],[2,3,3,2],[1,1,1,1]],[[0,2,1,1],[0,1,2,3],[2,3,3,2],[1,1,1,1]],[[0,2,1,1],[0,1,2,2],[2,4,3,2],[1,1,1,1]],[[0,2,1,1],[0,1,2,2],[2,3,4,2],[1,1,1,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,3],[1,1,1,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,2],[1,1,1,2]],[[0,2,1,2],[0,1,2,2],[2,3,3,2],[1,1,2,0]],[[0,2,1,1],[0,1,2,3],[2,3,3,2],[1,1,2,0]],[[0,2,1,1],[0,1,2,2],[2,4,3,2],[1,1,2,0]],[[0,2,1,1],[0,1,2,2],[2,3,4,2],[1,1,2,0]],[[0,2,1,1],[0,1,2,2],[2,3,3,3],[1,1,2,0]],[[0,2,1,1],[0,1,2,2],[2,3,3,2],[1,1,3,0]],[[0,2,1,2],[0,1,2,2],[2,3,3,2],[1,2,0,1]],[[0,2,1,1],[0,1,2,3],[2,3,3,2],[1,2,0,1]],[[0,2,1,1],[0,1,2,2],[2,4,3,2],[1,2,0,1]],[[0,2,1,1],[0,1,2,2],[2,3,4,2],[1,2,0,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,3],[1,2,0,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,2],[2,2,0,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,2],[1,3,0,1]],[[0,2,1,1],[0,1,2,2],[2,3,3,2],[1,2,0,2]],[[0,2,1,2],[0,1,2,2],[2,3,3,2],[1,2,1,0]],[[0,2,1,1],[0,1,2,3],[2,3,3,2],[1,2,1,0]],[[0,2,1,1],[0,1,2,2],[2,4,3,2],[1,2,1,0]],[[0,2,1,1],[0,1,2,2],[2,3,4,2],[1,2,1,0]],[[0,2,1,1],[0,1,2,2],[2,3,3,3],[1,2,1,0]],[[0,2,1,1],[0,1,2,2],[2,3,3,2],[2,2,1,0]],[[0,2,1,1],[0,1,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,3,4,1],[2,0,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,1],[2,0,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,1],[2,0,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,1],[2,0,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,3,1],[2,0,2,2],[0,1,2,0]],[[0,2,1,1],[0,1,3,0],[2,2,4,2],[1,2,2,1]],[[0,2,1,1],[0,1,3,0],[2,2,3,2],[2,2,2,1]],[[0,2,1,1],[0,1,3,0],[2,2,3,2],[1,3,2,1]],[[0,2,1,1],[0,1,3,0],[2,2,3,2],[1,2,3,1]],[[0,2,1,1],[0,1,3,0],[2,2,3,2],[1,2,2,2]],[[0,2,1,1],[0,1,3,0],[2,3,4,1],[1,2,2,1]],[[0,2,1,1],[0,1,3,0],[2,3,3,1],[2,2,2,1]],[[0,2,1,1],[0,1,3,0],[2,3,3,1],[1,3,2,1]],[[0,2,1,1],[0,1,3,0],[2,3,3,1],[1,2,3,1]],[[0,2,1,1],[0,1,3,0],[2,3,3,1],[1,2,2,2]],[[0,2,1,1],[0,1,3,0],[2,3,4,2],[1,1,2,1]],[[0,2,1,1],[0,1,3,0],[2,3,3,2],[1,1,3,1]],[[0,2,1,1],[0,1,3,0],[2,3,3,2],[1,1,2,2]],[[0,2,1,1],[0,1,3,0],[2,3,4,2],[1,2,2,0]],[[0,2,1,1],[0,1,3,0],[2,3,3,2],[2,2,2,0]],[[0,2,1,1],[0,1,3,0],[2,3,3,2],[1,3,2,0]],[[0,2,1,1],[0,1,3,0],[2,3,3,2],[1,2,3,0]],[[0,2,1,1],[0,1,3,1],[2,1,3,3],[1,2,2,1]],[[0,2,1,1],[0,1,3,1],[2,1,3,2],[1,2,3,1]],[[0,2,1,1],[0,1,3,1],[2,1,3,2],[1,2,2,2]],[[0,2,1,1],[0,1,3,1],[2,2,2,3],[1,2,2,1]],[[0,2,1,1],[0,1,3,1],[2,2,2,2],[2,2,2,1]],[[0,2,1,1],[0,1,3,1],[2,2,2,2],[1,3,2,1]],[[0,2,1,1],[0,1,3,1],[2,2,2,2],[1,2,3,1]],[[0,2,1,1],[0,1,3,1],[2,2,2,2],[1,2,2,2]],[[0,2,1,1],[0,1,4,1],[2,2,3,1],[1,2,2,1]],[[0,2,1,1],[0,1,3,1],[2,2,4,1],[1,2,2,1]],[[0,2,1,1],[0,1,3,1],[2,2,3,1],[2,2,2,1]],[[0,2,1,1],[0,1,3,1],[2,2,3,1],[1,3,2,1]],[[0,2,1,1],[0,1,3,1],[2,2,3,1],[1,2,3,1]],[[0,2,1,1],[0,1,3,1],[2,2,3,1],[1,2,2,2]],[[0,2,1,1],[0,1,4,1],[2,2,3,2],[1,2,1,1]],[[0,2,1,1],[0,1,3,1],[2,2,4,2],[1,2,1,1]],[[0,2,1,1],[0,1,3,1],[2,2,3,3],[1,2,1,1]],[[0,2,1,1],[0,1,3,1],[2,2,3,2],[1,2,1,2]],[[0,2,1,1],[0,1,4,1],[2,2,3,2],[1,2,2,0]],[[0,2,1,1],[0,1,3,1],[2,2,4,2],[1,2,2,0]],[[0,2,1,1],[0,1,3,1],[2,2,3,3],[1,2,2,0]],[[0,2,1,1],[0,1,3,1],[2,2,3,2],[2,2,2,0]],[[0,2,1,1],[0,1,3,1],[2,2,3,2],[1,3,2,0]],[[0,2,1,1],[0,1,3,1],[2,2,3,2],[1,2,3,0]],[[0,2,1,1],[0,1,3,1],[2,4,1,2],[1,2,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,1,3],[1,2,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,1,2],[2,2,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,1,2],[1,3,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,1,2],[1,2,3,1]],[[0,2,1,1],[0,1,3,1],[2,3,1,2],[1,2,2,2]],[[0,2,1,1],[0,1,3,1],[2,4,2,1],[1,2,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,2,1],[2,2,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,2,1],[1,3,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,2,1],[1,2,3,1]],[[0,2,1,1],[0,1,3,1],[2,3,2,1],[1,2,2,2]],[[0,2,1,1],[0,1,3,1],[2,3,2,3],[1,1,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,2,2],[1,1,3,1]],[[0,2,1,1],[0,1,3,1],[2,3,2,2],[1,1,2,2]],[[0,2,1,1],[0,1,3,1],[2,4,2,2],[1,2,2,0]],[[0,2,1,1],[0,1,3,1],[2,3,2,2],[2,2,2,0]],[[0,2,1,1],[0,1,3,1],[2,3,2,2],[1,3,2,0]],[[0,2,1,1],[0,1,3,1],[2,3,2,2],[1,2,3,0]],[[0,2,1,1],[0,1,4,1],[2,3,3,1],[1,1,2,1]],[[0,2,1,1],[0,1,3,1],[2,4,3,1],[1,1,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,4,1],[1,1,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,1],[1,1,3,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,1],[1,1,2,2]],[[0,2,1,1],[0,1,4,1],[2,3,3,1],[1,2,1,1]],[[0,2,1,1],[0,1,3,1],[2,4,3,1],[1,2,1,1]],[[0,2,1,1],[0,1,3,1],[2,3,4,1],[1,2,1,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,1],[2,2,1,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,1],[1,3,1,1]],[[0,2,1,1],[0,1,3,1],[2,3,4,2],[1,0,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,3],[1,0,2,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,2],[1,0,2,2]],[[0,2,1,1],[0,1,4,1],[2,3,3,2],[1,1,1,1]],[[0,2,1,1],[0,1,3,1],[2,4,3,2],[1,1,1,1]],[[0,2,1,1],[0,1,3,1],[2,3,4,2],[1,1,1,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,3],[1,1,1,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,2],[1,1,1,2]],[[0,2,1,1],[0,1,4,1],[2,3,3,2],[1,1,2,0]],[[0,2,1,1],[0,1,3,1],[2,4,3,2],[1,1,2,0]],[[0,2,1,1],[0,1,3,1],[2,3,4,2],[1,1,2,0]],[[0,2,1,1],[0,1,3,1],[2,3,3,3],[1,1,2,0]],[[0,2,1,1],[0,1,3,1],[2,3,3,2],[1,1,3,0]],[[0,2,1,1],[0,1,4,1],[2,3,3,2],[1,2,0,1]],[[0,2,1,1],[0,1,3,1],[2,4,3,2],[1,2,0,1]],[[0,2,1,1],[0,1,3,1],[2,3,4,2],[1,2,0,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,3],[1,2,0,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,2],[2,2,0,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,2],[1,3,0,1]],[[0,2,1,1],[0,1,3,1],[2,3,3,2],[1,2,0,2]],[[0,2,1,1],[0,1,4,1],[2,3,3,2],[1,2,1,0]],[[0,2,1,1],[0,1,3,1],[2,4,3,2],[1,2,1,0]],[[0,2,1,1],[0,1,3,1],[2,3,4,2],[1,2,1,0]],[[0,2,1,1],[0,1,3,1],[2,3,3,3],[1,2,1,0]],[[0,2,1,1],[0,1,3,1],[2,3,3,2],[2,2,1,0]],[[0,2,1,1],[0,1,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,3,4,1],[2,0,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,1],[2,0,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,1],[2,0,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,1],[2,0,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,3,1],[2,0,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,4,1],[2,0,2,2],[0,0,2,1]],[[1,2,2,2],[1,3,3,1],[2,0,2,2],[0,0,2,1]],[[1,2,3,1],[1,3,3,1],[2,0,2,2],[0,0,2,1]],[[1,3,2,1],[1,3,3,1],[2,0,2,2],[0,0,2,1]],[[2,2,2,1],[1,3,3,1],[2,0,2,2],[0,0,2,1]],[[0,2,1,2],[0,1,3,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[0,1,4,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[0,1,3,3],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,2,1,3],[1,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[0,1,3,2],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[0,1,3,2],[2,2,1,2],[1,2,2,2]],[[0,2,1,2],[0,1,3,2],[2,2,2,2],[1,2,1,1]],[[0,2,1,1],[0,1,4,2],[2,2,2,2],[1,2,1,1]],[[0,2,1,1],[0,1,3,3],[2,2,2,2],[1,2,1,1]],[[0,2,1,1],[0,1,3,2],[2,2,2,3],[1,2,1,1]],[[0,2,1,1],[0,1,3,2],[2,2,2,2],[1,2,1,2]],[[0,2,1,2],[0,1,3,2],[2,2,2,2],[1,2,2,0]],[[0,2,1,1],[0,1,4,2],[2,2,2,2],[1,2,2,0]],[[0,2,1,1],[0,1,3,3],[2,2,2,2],[1,2,2,0]],[[0,2,1,1],[0,1,3,2],[2,2,2,3],[1,2,2,0]],[[0,2,1,2],[0,1,3,2],[2,2,3,0],[1,2,2,1]],[[0,2,1,1],[0,1,4,2],[2,2,3,0],[1,2,2,1]],[[0,2,1,1],[0,1,3,3],[2,2,3,0],[1,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,2,4,0],[1,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,2,3,0],[2,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,2,3,0],[1,3,2,1]],[[0,2,1,1],[0,1,3,2],[2,2,3,0],[1,2,3,1]],[[0,2,1,1],[0,1,3,2],[2,2,3,0],[1,2,2,2]],[[0,2,1,2],[0,1,3,2],[2,2,3,1],[1,2,1,1]],[[0,2,1,1],[0,1,4,2],[2,2,3,1],[1,2,1,1]],[[0,2,1,1],[0,1,3,3],[2,2,3,1],[1,2,1,1]],[[0,2,1,1],[0,1,3,2],[2,2,4,1],[1,2,1,1]],[[0,2,1,2],[0,1,3,2],[2,2,3,1],[1,2,2,0]],[[0,2,1,1],[0,1,4,2],[2,2,3,1],[1,2,2,0]],[[0,2,1,1],[0,1,3,3],[2,2,3,1],[1,2,2,0]],[[0,2,1,1],[0,1,3,2],[2,2,4,1],[1,2,2,0]],[[0,2,1,1],[0,1,3,2],[2,2,3,1],[2,2,2,0]],[[0,2,1,1],[0,1,3,2],[2,2,3,1],[1,3,2,0]],[[0,2,1,1],[0,1,3,2],[2,2,3,1],[1,2,3,0]],[[0,2,1,2],[0,1,3,2],[2,3,0,2],[1,2,2,1]],[[0,2,1,1],[0,1,4,2],[2,3,0,2],[1,2,2,1]],[[0,2,1,1],[0,1,3,3],[2,3,0,2],[1,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,4,0,2],[1,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,3,0,3],[1,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,3,0,2],[2,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,3,0,2],[1,3,2,1]],[[0,2,1,1],[0,1,3,2],[2,3,0,2],[1,2,3,1]],[[0,2,1,1],[0,1,3,2],[2,3,0,2],[1,2,2,2]],[[0,2,1,2],[0,1,3,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[0,1,4,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[0,1,3,3],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[0,1,3,2],[2,3,1,3],[1,1,2,1]],[[0,2,1,1],[0,1,3,2],[2,3,1,2],[1,1,3,1]],[[0,2,1,1],[0,1,3,2],[2,3,1,2],[1,1,2,2]],[[0,2,1,1],[0,1,3,2],[2,4,2,0],[1,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,3,2,0],[2,2,2,1]],[[0,2,1,1],[0,1,3,2],[2,3,2,0],[1,3,2,1]],[[0,2,1,1],[0,1,3,2],[2,3,2,0],[1,2,3,1]],[[0,2,1,1],[0,1,3,2],[2,3,2,0],[1,2,2,2]],[[0,2,1,1],[0,1,3,2],[2,4,2,1],[1,2,2,0]],[[0,2,1,1],[0,1,3,2],[2,3,2,1],[2,2,2,0]],[[0,2,1,1],[0,1,3,2],[2,3,2,1],[1,3,2,0]],[[0,2,1,1],[0,1,3,2],[2,3,2,1],[1,2,3,0]],[[0,2,1,2],[0,1,3,2],[2,3,2,2],[1,1,1,1]],[[0,2,1,1],[0,1,4,2],[2,3,2,2],[1,1,1,1]],[[0,2,1,1],[0,1,3,3],[2,3,2,2],[1,1,1,1]],[[0,2,1,1],[0,1,3,2],[2,3,2,3],[1,1,1,1]],[[0,2,1,1],[0,1,3,2],[2,3,2,2],[1,1,1,2]],[[0,2,1,2],[0,1,3,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[0,1,4,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[0,1,3,3],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[0,1,3,2],[2,3,2,3],[1,1,2,0]],[[0,2,1,2],[0,1,3,2],[2,3,2,2],[1,2,0,1]],[[0,2,1,1],[0,1,4,2],[2,3,2,2],[1,2,0,1]],[[0,2,1,1],[0,1,3,3],[2,3,2,2],[1,2,0,1]],[[0,2,1,1],[0,1,3,2],[2,3,2,3],[1,2,0,1]],[[0,2,1,1],[0,1,3,2],[2,3,2,2],[1,2,0,2]],[[0,2,1,2],[0,1,3,2],[2,3,2,2],[1,2,1,0]],[[0,2,1,1],[0,1,4,2],[2,3,2,2],[1,2,1,0]],[[0,2,1,1],[0,1,3,3],[2,3,2,2],[1,2,1,0]],[[0,2,1,1],[0,1,3,2],[2,3,2,3],[1,2,1,0]],[[0,2,1,2],[0,1,3,2],[2,3,3,0],[1,1,2,1]],[[0,2,1,1],[0,1,4,2],[2,3,3,0],[1,1,2,1]],[[0,2,1,1],[0,1,3,3],[2,3,3,0],[1,1,2,1]],[[0,2,1,1],[0,1,3,2],[2,4,3,0],[1,1,2,1]],[[0,2,1,1],[0,1,3,2],[2,3,4,0],[1,1,2,1]],[[0,2,1,1],[0,1,3,2],[2,3,3,0],[1,1,3,1]],[[0,2,1,1],[0,1,3,2],[2,3,3,0],[1,1,2,2]],[[0,2,1,2],[0,1,3,2],[2,3,3,0],[1,2,1,1]],[[0,2,1,1],[0,1,4,2],[2,3,3,0],[1,2,1,1]],[[0,2,1,1],[0,1,3,3],[2,3,3,0],[1,2,1,1]],[[0,2,1,1],[0,1,3,2],[2,4,3,0],[1,2,1,1]],[[0,2,1,1],[0,1,3,2],[2,3,4,0],[1,2,1,1]],[[0,2,1,1],[0,1,3,2],[2,3,3,0],[2,2,1,1]],[[0,2,1,1],[0,1,3,2],[2,3,3,0],[1,3,1,1]],[[0,2,1,2],[0,1,3,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[0,1,4,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[0,1,3,3],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[0,1,3,2],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[0,1,3,2],[2,3,4,1],[1,1,1,1]],[[0,2,1,2],[0,1,3,2],[2,3,3,1],[1,1,2,0]],[[0,2,1,1],[0,1,4,2],[2,3,3,1],[1,1,2,0]],[[0,2,1,1],[0,1,3,3],[2,3,3,1],[1,1,2,0]],[[0,2,1,1],[0,1,3,2],[2,4,3,1],[1,1,2,0]],[[0,2,1,1],[0,1,3,2],[2,3,4,1],[1,1,2,0]],[[0,2,1,1],[0,1,3,2],[2,3,3,1],[1,1,3,0]],[[0,2,1,2],[0,1,3,2],[2,3,3,1],[1,2,0,1]],[[0,2,1,1],[0,1,4,2],[2,3,3,1],[1,2,0,1]],[[0,2,1,1],[0,1,3,3],[2,3,3,1],[1,2,0,1]],[[0,2,1,1],[0,1,3,2],[2,4,3,1],[1,2,0,1]],[[0,2,1,1],[0,1,3,2],[2,3,4,1],[1,2,0,1]],[[0,2,1,1],[0,1,3,2],[2,3,3,1],[2,2,0,1]],[[0,2,1,1],[0,1,3,2],[2,3,3,1],[1,3,0,1]],[[0,2,1,2],[0,1,3,2],[2,3,3,1],[1,2,1,0]],[[0,2,1,1],[0,1,4,2],[2,3,3,1],[1,2,1,0]],[[0,2,1,1],[0,1,3,3],[2,3,3,1],[1,2,1,0]],[[0,2,1,1],[0,1,3,2],[2,4,3,1],[1,2,1,0]],[[0,2,1,1],[0,1,3,2],[2,3,4,1],[1,2,1,0]],[[0,2,1,1],[0,1,3,2],[2,3,3,1],[2,2,1,0]],[[0,2,1,1],[0,1,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,3,4,1],[2,0,1,2],[1,0,2,1]],[[1,2,2,2],[1,3,3,1],[2,0,1,2],[1,0,2,1]],[[1,2,3,1],[1,3,3,1],[2,0,1,2],[1,0,2,1]],[[1,3,2,1],[1,3,3,1],[2,0,1,2],[1,0,2,1]],[[2,2,2,1],[1,3,3,1],[2,0,1,2],[1,0,2,1]],[[1,2,2,1],[1,3,4,1],[2,0,1,2],[0,1,2,1]],[[1,2,2,2],[1,3,3,1],[2,0,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,3,1],[2,0,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,3,1],[2,0,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,3,1],[2,0,1,2],[0,1,2,1]],[[0,2,1,1],[0,2,3,0],[2,2,2,3],[1,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,2,2,2],[2,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,2,2,2],[1,3,2,1]],[[0,2,1,1],[0,2,3,0],[2,2,2,2],[1,2,3,1]],[[0,2,1,1],[0,2,3,0],[2,2,2,2],[1,2,2,2]],[[0,2,1,1],[0,2,4,0],[2,2,3,1],[1,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,2,4,1],[1,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,2,3,1],[2,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,2,3,1],[1,3,2,1]],[[0,2,1,1],[0,2,3,0],[2,2,3,1],[1,2,3,1]],[[0,2,1,1],[0,2,3,0],[2,2,3,1],[1,2,2,2]],[[0,2,1,1],[0,2,4,0],[2,2,3,2],[1,2,1,1]],[[0,2,1,1],[0,2,3,0],[2,2,4,2],[1,2,1,1]],[[0,2,1,1],[0,2,3,0],[2,2,3,3],[1,2,1,1]],[[0,2,1,1],[0,2,3,0],[2,2,3,2],[1,2,1,2]],[[0,2,1,1],[0,2,4,0],[2,2,3,2],[1,2,2,0]],[[0,2,1,1],[0,2,3,0],[2,2,4,2],[1,2,2,0]],[[0,2,1,1],[0,2,3,0],[2,2,3,3],[1,2,2,0]],[[0,2,1,1],[0,2,3,0],[2,2,3,2],[2,2,2,0]],[[0,2,1,1],[0,2,3,0],[2,2,3,2],[1,3,2,0]],[[0,2,1,1],[0,2,3,0],[2,2,3,2],[1,2,3,0]],[[0,2,1,1],[0,2,3,0],[2,4,1,2],[1,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,1,3],[1,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,1,2],[2,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,1,2],[1,3,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,1,2],[1,2,3,1]],[[0,2,1,1],[0,2,3,0],[2,3,1,2],[1,2,2,2]],[[0,2,1,1],[0,2,3,0],[2,4,2,1],[1,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,2,1],[2,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,2,1],[1,3,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,2,1],[1,2,3,1]],[[0,2,1,1],[0,2,3,0],[2,3,2,1],[1,2,2,2]],[[0,2,1,1],[0,2,3,0],[2,3,2,3],[1,1,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,2,2],[1,1,3,1]],[[0,2,1,1],[0,2,3,0],[2,3,2,2],[1,1,2,2]],[[0,2,1,1],[0,2,3,0],[2,4,2,2],[1,2,2,0]],[[0,2,1,1],[0,2,3,0],[2,3,2,2],[2,2,2,0]],[[0,2,1,1],[0,2,3,0],[2,3,2,2],[1,3,2,0]],[[0,2,1,1],[0,2,3,0],[2,3,2,2],[1,2,3,0]],[[0,2,1,1],[0,2,3,0],[2,4,3,0],[1,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,0],[2,2,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,0],[1,3,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,0],[1,2,3,1]],[[0,2,1,1],[0,2,4,0],[2,3,3,1],[1,1,2,1]],[[0,2,1,1],[0,2,3,0],[2,4,3,1],[1,1,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,4,1],[1,1,2,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,1],[1,1,3,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,1],[1,1,2,2]],[[0,2,1,1],[0,2,4,0],[2,3,3,1],[1,2,1,1]],[[0,2,1,1],[0,2,3,0],[2,4,3,1],[1,2,1,1]],[[0,2,1,1],[0,2,3,0],[2,3,4,1],[1,2,1,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,1],[2,2,1,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,1],[1,3,1,1]],[[0,2,1,1],[0,2,4,0],[2,3,3,2],[1,1,1,1]],[[0,2,1,1],[0,2,3,0],[2,4,3,2],[1,1,1,1]],[[0,2,1,1],[0,2,3,0],[2,3,4,2],[1,1,1,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,3],[1,1,1,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,2],[1,1,1,2]],[[0,2,1,1],[0,2,4,0],[2,3,3,2],[1,1,2,0]],[[0,2,1,1],[0,2,3,0],[2,4,3,2],[1,1,2,0]],[[0,2,1,1],[0,2,3,0],[2,3,4,2],[1,1,2,0]],[[0,2,1,1],[0,2,3,0],[2,3,3,3],[1,1,2,0]],[[0,2,1,1],[0,2,3,0],[2,3,3,2],[1,1,3,0]],[[0,2,1,1],[0,2,4,0],[2,3,3,2],[1,2,0,1]],[[0,2,1,1],[0,2,3,0],[2,4,3,2],[1,2,0,1]],[[0,2,1,1],[0,2,3,0],[2,3,4,2],[1,2,0,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,3],[1,2,0,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,2],[2,2,0,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,2],[1,3,0,1]],[[0,2,1,1],[0,2,3,0],[2,3,3,2],[1,2,0,2]],[[0,2,1,1],[0,2,4,0],[2,3,3,2],[1,2,1,0]],[[0,2,1,1],[0,2,3,0],[2,4,3,2],[1,2,1,0]],[[0,2,1,1],[0,2,3,0],[2,3,4,2],[1,2,1,0]],[[0,2,1,1],[0,2,3,0],[2,3,3,3],[1,2,1,0]],[[0,2,1,1],[0,2,3,0],[2,3,3,2],[2,2,1,0]],[[0,2,1,1],[0,2,3,0],[2,3,3,2],[1,3,1,0]],[[0,2,1,1],[0,2,4,1],[2,2,3,0],[1,2,2,1]],[[0,2,1,1],[0,2,3,1],[2,2,4,0],[1,2,2,1]],[[0,2,1,1],[0,2,3,1],[2,2,3,0],[2,2,2,1]],[[0,2,1,1],[0,2,3,1],[2,2,3,0],[1,3,2,1]],[[0,2,1,1],[0,2,3,1],[2,2,3,0],[1,2,3,1]],[[0,2,1,1],[0,2,3,1],[2,2,3,0],[1,2,2,2]],[[0,2,1,1],[0,2,4,1],[2,2,3,1],[1,2,2,0]],[[0,2,1,1],[0,2,3,1],[2,2,4,1],[1,2,2,0]],[[0,2,1,1],[0,2,3,1],[2,2,3,1],[2,2,2,0]],[[0,2,1,1],[0,2,3,1],[2,2,3,1],[1,3,2,0]],[[0,2,1,1],[0,2,3,1],[2,2,3,1],[1,2,3,0]],[[0,2,1,1],[0,2,3,1],[2,4,2,0],[1,2,2,1]],[[0,2,1,1],[0,2,3,1],[2,3,2,0],[2,2,2,1]],[[0,2,1,1],[0,2,3,1],[2,3,2,0],[1,3,2,1]],[[0,2,1,1],[0,2,3,1],[2,3,2,0],[1,2,3,1]],[[0,2,1,1],[0,2,3,1],[2,3,2,0],[1,2,2,2]],[[0,2,1,1],[0,2,3,1],[2,4,2,1],[1,2,2,0]],[[0,2,1,1],[0,2,3,1],[2,3,2,1],[2,2,2,0]],[[0,2,1,1],[0,2,3,1],[2,3,2,1],[1,3,2,0]],[[0,2,1,1],[0,2,3,1],[2,3,2,1],[1,2,3,0]],[[0,2,1,1],[0,2,4,1],[2,3,3,0],[1,1,2,1]],[[0,2,1,1],[0,2,3,1],[2,4,3,0],[1,1,2,1]],[[0,2,1,1],[0,2,3,1],[2,3,4,0],[1,1,2,1]],[[0,2,1,1],[0,2,3,1],[2,3,3,0],[1,1,3,1]],[[0,2,1,1],[0,2,3,1],[2,3,3,0],[1,1,2,2]],[[0,2,1,1],[0,2,4,1],[2,3,3,0],[1,2,1,1]],[[0,2,1,1],[0,2,3,1],[2,4,3,0],[1,2,1,1]],[[0,2,1,1],[0,2,3,1],[2,3,4,0],[1,2,1,1]],[[0,2,1,1],[0,2,3,1],[2,3,3,0],[2,2,1,1]],[[0,2,1,1],[0,2,3,1],[2,3,3,0],[1,3,1,1]],[[0,2,1,1],[0,2,4,1],[2,3,3,1],[1,1,2,0]],[[0,2,1,1],[0,2,3,1],[2,4,3,1],[1,1,2,0]],[[0,2,1,1],[0,2,3,1],[2,3,4,1],[1,1,2,0]],[[0,2,1,1],[0,2,3,1],[2,3,3,1],[1,1,3,0]],[[0,2,1,1],[0,2,4,1],[2,3,3,1],[1,2,0,1]],[[0,2,1,1],[0,2,3,1],[2,4,3,1],[1,2,0,1]],[[0,2,1,1],[0,2,3,1],[2,3,4,1],[1,2,0,1]],[[0,2,1,1],[0,2,3,1],[2,3,3,1],[2,2,0,1]],[[0,2,1,1],[0,2,3,1],[2,3,3,1],[1,3,0,1]],[[0,2,1,1],[0,2,4,1],[2,3,3,1],[1,2,1,0]],[[0,2,1,1],[0,2,3,1],[2,4,3,1],[1,2,1,0]],[[0,2,1,1],[0,2,3,1],[2,3,4,1],[1,2,1,0]],[[0,2,1,1],[0,2,3,1],[2,3,3,1],[2,2,1,0]],[[0,2,1,1],[0,2,3,1],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,4,3,1],[1,3,2,1],[1,1,0,0]],[[1,2,2,2],[1,3,3,1],[1,3,2,1],[1,1,0,0]],[[1,2,3,1],[1,3,3,1],[1,3,2,1],[1,1,0,0]],[[1,3,2,1],[1,3,3,1],[1,3,2,1],[1,1,0,0]],[[2,2,2,1],[1,3,3,1],[1,3,2,1],[1,1,0,0]],[[1,2,2,1],[1,4,3,1],[1,3,2,1],[0,2,0,0]],[[1,2,2,2],[1,3,3,1],[1,3,2,1],[0,2,0,0]],[[1,2,3,1],[1,3,3,1],[1,3,2,1],[0,2,0,0]],[[1,3,2,1],[1,3,3,1],[1,3,2,1],[0,2,0,0]],[[2,2,2,1],[1,3,3,1],[1,3,2,1],[0,2,0,0]],[[1,2,2,1],[1,4,3,1],[1,3,1,1],[1,2,0,0]],[[1,2,2,2],[1,3,3,1],[1,3,1,1],[1,2,0,0]],[[1,2,3,1],[1,3,3,1],[1,3,1,1],[1,2,0,0]],[[1,3,2,1],[1,3,3,1],[1,3,1,1],[1,2,0,0]],[[2,2,2,1],[1,3,3,1],[1,3,1,1],[1,2,0,0]],[[1,2,2,1],[1,4,3,1],[1,3,1,1],[1,1,1,0]],[[1,2,2,2],[1,3,3,1],[1,3,1,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,1],[1,3,1,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,1],[1,3,1,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,1],[1,3,1,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,1],[1,3,1,1],[1,1,0,1]],[[1,2,2,2],[1,3,3,1],[1,3,1,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,1],[1,3,1,1],[1,1,0,1]],[[1,3,2,1],[1,3,3,1],[1,3,1,1],[1,1,0,1]],[[2,2,2,1],[1,3,3,1],[1,3,1,1],[1,1,0,1]],[[1,2,2,1],[1,4,3,1],[1,3,1,1],[1,0,2,0]],[[1,2,2,2],[1,3,3,1],[1,3,1,1],[1,0,2,0]],[[1,2,3,1],[1,3,3,1],[1,3,1,1],[1,0,2,0]],[[1,3,2,1],[1,3,3,1],[1,3,1,1],[1,0,2,0]],[[2,2,2,1],[1,3,3,1],[1,3,1,1],[1,0,2,0]],[[1,2,2,1],[1,4,3,1],[1,3,1,1],[1,0,1,1]],[[1,2,2,2],[1,3,3,1],[1,3,1,1],[1,0,1,1]],[[1,2,3,1],[1,3,3,1],[1,3,1,1],[1,0,1,1]],[[1,3,2,1],[1,3,3,1],[1,3,1,1],[1,0,1,1]],[[2,2,2,1],[1,3,3,1],[1,3,1,1],[1,0,1,1]],[[1,2,2,1],[1,4,3,1],[1,3,1,1],[0,2,1,0]],[[1,2,2,2],[1,3,3,1],[1,3,1,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,1],[1,3,1,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,1],[1,3,1,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,1],[1,3,1,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,1],[1,3,1,1],[0,2,0,1]],[[1,2,2,2],[1,3,3,1],[1,3,1,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,1],[1,3,1,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,1],[1,3,1,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,1],[1,3,1,1],[0,2,0,1]],[[1,2,2,1],[1,4,3,1],[1,3,1,1],[0,1,2,0]],[[1,2,2,2],[1,3,3,1],[1,3,1,1],[0,1,2,0]],[[1,2,3,1],[1,3,3,1],[1,3,1,1],[0,1,2,0]],[[1,3,2,1],[1,3,3,1],[1,3,1,1],[0,1,2,0]],[[2,2,2,1],[1,3,3,1],[1,3,1,1],[0,1,2,0]],[[1,2,2,1],[1,4,3,1],[1,3,1,1],[0,1,1,1]],[[1,2,2,2],[1,3,3,1],[1,3,1,1],[0,1,1,1]],[[1,2,3,1],[1,3,3,1],[1,3,1,1],[0,1,1,1]],[[1,3,2,1],[1,3,3,1],[1,3,1,1],[0,1,1,1]],[[2,2,2,1],[1,3,3,1],[1,3,1,1],[0,1,1,1]],[[1,2,2,1],[1,4,3,1],[1,3,1,0],[1,2,0,1]],[[1,2,2,2],[1,3,3,1],[1,3,1,0],[1,2,0,1]],[[1,2,3,1],[1,3,3,1],[1,3,1,0],[1,2,0,1]],[[1,3,2,1],[1,3,3,1],[1,3,1,0],[1,2,0,1]],[[2,2,2,1],[1,3,3,1],[1,3,1,0],[1,2,0,1]],[[1,2,2,1],[1,4,3,1],[1,3,1,0],[1,1,1,1]],[[1,2,2,2],[1,3,3,1],[1,3,1,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,1],[1,3,1,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,1],[1,3,1,0],[1,1,1,1]],[[2,2,2,1],[1,3,3,1],[1,3,1,0],[1,1,1,1]],[[1,2,2,1],[1,4,3,1],[1,3,1,0],[1,0,2,1]],[[1,2,2,2],[1,3,3,1],[1,3,1,0],[1,0,2,1]],[[1,2,3,1],[1,3,3,1],[1,3,1,0],[1,0,2,1]],[[1,3,2,1],[1,3,3,1],[1,3,1,0],[1,0,2,1]],[[2,2,2,1],[1,3,3,1],[1,3,1,0],[1,0,2,1]],[[1,2,2,1],[1,4,3,1],[1,3,1,0],[0,2,1,1]],[[1,2,2,2],[1,3,3,1],[1,3,1,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,1],[1,3,1,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,1],[1,3,1,0],[0,2,1,1]],[[2,2,2,1],[1,3,3,1],[1,3,1,0],[0,2,1,1]],[[1,2,2,1],[1,4,3,1],[1,3,1,0],[0,1,2,1]],[[1,2,2,2],[1,3,3,1],[1,3,1,0],[0,1,2,1]],[[0,2,1,2],[0,3,0,2],[2,2,2,2],[1,2,2,1]],[[0,2,1,1],[0,3,0,3],[2,2,2,2],[1,2,2,1]],[[0,2,1,1],[0,3,0,2],[2,2,2,3],[1,2,2,1]],[[0,2,1,1],[0,3,0,2],[2,2,2,2],[2,2,2,1]],[[0,2,1,1],[0,3,0,2],[2,2,2,2],[1,3,2,1]],[[0,2,1,1],[0,3,0,2],[2,2,2,2],[1,2,3,1]],[[0,2,1,1],[0,3,0,2],[2,2,2,2],[1,2,2,2]],[[0,2,1,1],[0,3,0,2],[2,2,4,1],[1,2,2,1]],[[0,2,1,1],[0,3,0,2],[2,2,3,1],[2,2,2,1]],[[0,2,1,1],[0,3,0,2],[2,2,3,1],[1,3,2,1]],[[0,2,1,1],[0,3,0,2],[2,2,3,1],[1,2,3,1]],[[0,2,1,1],[0,3,0,2],[2,2,3,1],[1,2,2,2]],[[0,2,1,2],[0,3,0,2],[2,2,3,2],[1,2,1,1]],[[0,2,1,1],[0,3,0,3],[2,2,3,2],[1,2,1,1]],[[0,2,1,1],[0,3,0,2],[2,2,4,2],[1,2,1,1]],[[0,2,1,1],[0,3,0,2],[2,2,3,3],[1,2,1,1]],[[0,2,1,1],[0,3,0,2],[2,2,3,2],[1,2,1,2]],[[0,2,1,2],[0,3,0,2],[2,2,3,2],[1,2,2,0]],[[0,2,1,1],[0,3,0,3],[2,2,3,2],[1,2,2,0]],[[0,2,1,1],[0,3,0,2],[2,2,4,2],[1,2,2,0]],[[0,2,1,1],[0,3,0,2],[2,2,3,3],[1,2,2,0]],[[0,2,1,1],[0,3,0,2],[2,2,3,2],[2,2,2,0]],[[0,2,1,1],[0,3,0,2],[2,2,3,2],[1,3,2,0]],[[0,2,1,1],[0,3,0,2],[2,2,3,2],[1,2,3,0]],[[0,2,1,2],[0,3,0,2],[2,3,1,2],[1,2,2,1]],[[0,2,1,1],[0,3,0,3],[2,3,1,2],[1,2,2,1]],[[0,2,1,1],[0,3,0,2],[2,4,1,2],[1,2,2,1]],[[0,2,1,1],[0,3,0,2],[2,3,1,3],[1,2,2,1]],[[0,2,1,1],[0,3,0,2],[2,3,1,2],[2,2,2,1]],[[0,2,1,1],[0,3,0,2],[2,3,1,2],[1,3,2,1]],[[0,2,1,1],[0,3,0,2],[2,3,1,2],[1,2,3,1]],[[0,2,1,1],[0,3,0,2],[2,3,1,2],[1,2,2,2]],[[0,2,1,1],[0,3,0,2],[2,4,2,1],[1,2,2,1]],[[0,2,1,1],[0,3,0,2],[2,3,2,1],[2,2,2,1]],[[0,2,1,1],[0,3,0,2],[2,3,2,1],[1,3,2,1]],[[0,2,1,1],[0,3,0,2],[2,3,2,1],[1,2,3,1]],[[0,2,1,1],[0,3,0,2],[2,3,2,1],[1,2,2,2]],[[0,2,1,2],[0,3,0,2],[2,3,2,2],[1,1,2,1]],[[0,2,1,1],[0,3,0,3],[2,3,2,2],[1,1,2,1]],[[0,2,1,1],[0,3,0,2],[2,3,2,3],[1,1,2,1]],[[0,2,1,1],[0,3,0,2],[2,3,2,2],[1,1,3,1]],[[0,2,1,1],[0,3,0,2],[2,3,2,2],[1,1,2,2]],[[0,2,1,1],[0,3,0,2],[2,4,2,2],[1,2,2,0]],[[0,2,1,1],[0,3,0,2],[2,3,2,2],[2,2,2,0]],[[0,2,1,1],[0,3,0,2],[2,3,2,2],[1,3,2,0]],[[0,2,1,1],[0,3,0,2],[2,3,2,2],[1,2,3,0]],[[0,2,1,1],[0,3,0,2],[2,4,3,1],[1,1,2,1]],[[0,2,1,1],[0,3,0,2],[2,3,4,1],[1,1,2,1]],[[0,2,1,1],[0,3,0,2],[2,3,3,1],[1,1,3,1]],[[0,2,1,1],[0,3,0,2],[2,3,3,1],[1,1,2,2]],[[0,2,1,1],[0,3,0,2],[2,4,3,1],[1,2,1,1]],[[0,2,1,1],[0,3,0,2],[2,3,4,1],[1,2,1,1]],[[0,2,1,1],[0,3,0,2],[2,3,3,1],[2,2,1,1]],[[0,2,1,1],[0,3,0,2],[2,3,3,1],[1,3,1,1]],[[0,2,1,2],[0,3,0,2],[2,3,3,2],[1,1,1,1]],[[0,2,1,1],[0,3,0,3],[2,3,3,2],[1,1,1,1]],[[0,2,1,1],[0,3,0,2],[2,4,3,2],[1,1,1,1]],[[0,2,1,1],[0,3,0,2],[2,3,4,2],[1,1,1,1]],[[0,2,1,1],[0,3,0,2],[2,3,3,3],[1,1,1,1]],[[0,2,1,1],[0,3,0,2],[2,3,3,2],[1,1,1,2]],[[0,2,1,2],[0,3,0,2],[2,3,3,2],[1,1,2,0]],[[0,2,1,1],[0,3,0,3],[2,3,3,2],[1,1,2,0]],[[0,2,1,1],[0,3,0,2],[2,4,3,2],[1,1,2,0]],[[0,2,1,1],[0,3,0,2],[2,3,4,2],[1,1,2,0]],[[0,2,1,1],[0,3,0,2],[2,3,3,3],[1,1,2,0]],[[0,2,1,1],[0,3,0,2],[2,3,3,2],[1,1,3,0]],[[0,2,1,2],[0,3,0,2],[2,3,3,2],[1,2,0,1]],[[0,2,1,1],[0,3,0,3],[2,3,3,2],[1,2,0,1]],[[0,2,1,1],[0,3,0,2],[2,4,3,2],[1,2,0,1]],[[0,2,1,1],[0,3,0,2],[2,3,4,2],[1,2,0,1]],[[0,2,1,1],[0,3,0,2],[2,3,3,3],[1,2,0,1]],[[0,2,1,1],[0,3,0,2],[2,3,3,2],[2,2,0,1]],[[0,2,1,1],[0,3,0,2],[2,3,3,2],[1,3,0,1]],[[0,2,1,1],[0,3,0,2],[2,3,3,2],[1,2,0,2]],[[0,2,1,2],[0,3,0,2],[2,3,3,2],[1,2,1,0]],[[0,2,1,1],[0,3,0,3],[2,3,3,2],[1,2,1,0]],[[0,2,1,1],[0,3,0,2],[2,4,3,2],[1,2,1,0]],[[0,2,1,1],[0,3,0,2],[2,3,4,2],[1,2,1,0]],[[0,2,1,1],[0,3,0,2],[2,3,3,3],[1,2,1,0]],[[0,2,1,1],[0,3,0,2],[2,3,3,2],[2,2,1,0]],[[0,2,1,1],[0,3,0,2],[2,3,3,2],[1,3,1,0]],[[1,2,3,1],[1,3,3,1],[1,3,1,0],[0,1,2,1]],[[1,3,2,1],[1,3,3,1],[1,3,1,0],[0,1,2,1]],[[2,2,2,1],[1,3,3,1],[1,3,1,0],[0,1,2,1]],[[0,2,1,1],[0,3,1,0],[2,4,3,1],[1,2,2,1]],[[0,2,1,1],[0,3,1,0],[2,3,3,1],[2,2,2,1]],[[0,2,1,1],[0,3,1,0],[2,3,3,1],[1,3,2,1]],[[0,2,1,1],[0,3,1,0],[2,3,3,1],[1,2,3,1]],[[0,2,1,1],[0,3,1,0],[2,3,3,1],[1,2,2,2]],[[0,2,1,1],[0,3,1,0],[2,4,3,2],[1,2,2,0]],[[0,2,1,1],[0,3,1,0],[2,3,3,2],[2,2,2,0]],[[0,2,1,1],[0,3,1,0],[2,3,3,2],[1,3,2,0]],[[0,2,1,1],[0,3,1,0],[2,3,3,2],[1,2,3,0]],[[1,2,2,1],[1,4,3,1],[1,3,0,2],[1,2,0,0]],[[1,2,2,2],[1,3,3,1],[1,3,0,2],[1,2,0,0]],[[1,2,3,1],[1,3,3,1],[1,3,0,2],[1,2,0,0]],[[1,3,2,1],[1,3,3,1],[1,3,0,2],[1,2,0,0]],[[2,2,2,1],[1,3,3,1],[1,3,0,2],[1,2,0,0]],[[0,2,1,2],[0,3,1,2],[2,3,0,2],[1,2,2,1]],[[0,2,1,1],[0,3,1,3],[2,3,0,2],[1,2,2,1]],[[0,2,1,1],[0,3,1,2],[2,4,0,2],[1,2,2,1]],[[0,2,1,1],[0,3,1,2],[2,3,0,3],[1,2,2,1]],[[0,2,1,1],[0,3,1,2],[2,3,0,2],[2,2,2,1]],[[0,2,1,1],[0,3,1,2],[2,3,0,2],[1,3,2,1]],[[0,2,1,1],[0,3,1,2],[2,3,0,2],[1,2,3,1]],[[0,2,1,1],[0,3,1,2],[2,3,0,2],[1,2,2,2]],[[1,2,2,1],[1,4,3,1],[1,3,0,2],[1,1,1,0]],[[1,2,2,2],[1,3,3,1],[1,3,0,2],[1,1,1,0]],[[1,2,3,1],[1,3,3,1],[1,3,0,2],[1,1,1,0]],[[1,3,2,1],[1,3,3,1],[1,3,0,2],[1,1,1,0]],[[2,2,2,1],[1,3,3,1],[1,3,0,2],[1,1,1,0]],[[1,2,2,1],[1,4,3,1],[1,3,0,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,1],[1,3,0,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,1],[1,3,0,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,1],[1,3,0,2],[1,1,0,1]],[[2,2,2,1],[1,3,3,1],[1,3,0,2],[1,1,0,1]],[[1,2,2,1],[1,4,3,1],[1,3,0,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,1],[1,3,0,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,1],[1,3,0,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,1],[1,3,0,2],[1,0,2,0]],[[2,2,2,1],[1,3,3,1],[1,3,0,2],[1,0,2,0]],[[1,2,2,1],[1,4,3,1],[1,3,0,2],[1,0,1,1]],[[1,2,2,2],[1,3,3,1],[1,3,0,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,1],[1,3,0,2],[1,0,1,1]],[[1,3,2,1],[1,3,3,1],[1,3,0,2],[1,0,1,1]],[[2,2,2,1],[1,3,3,1],[1,3,0,2],[1,0,1,1]],[[0,2,1,1],[0,3,2,0],[2,2,2,3],[1,2,2,1]],[[0,2,1,1],[0,3,2,0],[2,2,2,2],[2,2,2,1]],[[0,2,1,1],[0,3,2,0],[2,2,2,2],[1,3,2,1]],[[0,2,1,1],[0,3,2,0],[2,2,2,2],[1,2,3,1]],[[0,2,1,1],[0,3,2,0],[2,2,2,2],[1,2,2,2]],[[0,2,1,1],[0,3,2,0],[2,2,4,1],[1,2,2,1]],[[0,2,1,1],[0,3,2,0],[2,2,3,1],[2,2,2,1]],[[0,2,1,1],[0,3,2,0],[2,2,3,1],[1,3,2,1]],[[0,2,1,1],[0,3,2,0],[2,2,3,1],[1,2,3,1]],[[0,2,1,1],[0,3,2,0],[2,2,3,1],[1,2,2,2]],[[0,2,1,1],[0,3,2,0],[2,2,4,2],[1,2,1,1]],[[0,2,1,1],[0,3,2,0],[2,2,3,3],[1,2,1,1]],[[0,2,1,1],[0,3,2,0],[2,2,3,2],[1,2,1,2]],[[0,2,1,1],[0,3,2,0],[2,2,4,2],[1,2,2,0]],[[0,2,1,1],[0,3,2,0],[2,2,3,3],[1,2,2,0]],[[0,2,1,1],[0,3,2,0],[2,2,3,2],[2,2,2,0]],[[0,2,1,1],[0,3,2,0],[2,2,3,2],[1,3,2,0]],[[0,2,1,1],[0,3,2,0],[2,2,3,2],[1,2,3,0]],[[0,2,1,1],[0,3,2,0],[2,4,1,2],[1,2,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,1,3],[1,2,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,1,2],[2,2,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,1,2],[1,3,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,1,2],[1,2,3,1]],[[0,2,1,1],[0,3,2,0],[2,3,1,2],[1,2,2,2]],[[0,2,1,1],[0,3,2,0],[2,4,2,1],[1,2,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,2,1],[2,2,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,2,1],[1,3,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,2,1],[1,2,3,1]],[[0,2,1,1],[0,3,2,0],[2,3,2,1],[1,2,2,2]],[[0,2,1,1],[0,3,2,0],[2,3,2,3],[1,1,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,2,2],[1,1,3,1]],[[0,2,1,1],[0,3,2,0],[2,3,2,2],[1,1,2,2]],[[0,2,1,1],[0,3,2,0],[2,4,2,2],[1,2,2,0]],[[0,2,1,1],[0,3,2,0],[2,3,2,2],[2,2,2,0]],[[0,2,1,1],[0,3,2,0],[2,3,2,2],[1,3,2,0]],[[0,2,1,1],[0,3,2,0],[2,3,2,2],[1,2,3,0]],[[0,2,1,1],[0,3,2,0],[2,4,3,0],[1,2,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,0],[2,2,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,0],[1,3,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,0],[1,2,3,1]],[[0,2,1,1],[0,3,2,0],[2,4,3,1],[1,1,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,4,1],[1,1,2,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,1],[1,1,3,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,1],[1,1,2,2]],[[0,2,1,1],[0,3,2,0],[2,4,3,1],[1,2,1,1]],[[0,2,1,1],[0,3,2,0],[2,3,4,1],[1,2,1,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,1],[2,2,1,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,1],[1,3,1,1]],[[0,2,1,1],[0,3,2,0],[2,4,3,2],[1,1,1,1]],[[0,2,1,1],[0,3,2,0],[2,3,4,2],[1,1,1,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,3],[1,1,1,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,2],[1,1,1,2]],[[0,2,1,1],[0,3,2,0],[2,4,3,2],[1,1,2,0]],[[0,2,1,1],[0,3,2,0],[2,3,4,2],[1,1,2,0]],[[0,2,1,1],[0,3,2,0],[2,3,3,3],[1,1,2,0]],[[0,2,1,1],[0,3,2,0],[2,3,3,2],[1,1,3,0]],[[0,2,1,1],[0,3,2,0],[2,4,3,2],[1,2,0,1]],[[0,2,1,1],[0,3,2,0],[2,3,4,2],[1,2,0,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,3],[1,2,0,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,2],[2,2,0,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,2],[1,3,0,1]],[[0,2,1,1],[0,3,2,0],[2,3,3,2],[1,2,0,2]],[[0,2,1,1],[0,3,2,0],[2,4,3,2],[1,2,1,0]],[[0,2,1,1],[0,3,2,0],[2,3,4,2],[1,2,1,0]],[[0,2,1,1],[0,3,2,0],[2,3,3,3],[1,2,1,0]],[[0,2,1,1],[0,3,2,0],[2,3,3,2],[2,2,1,0]],[[0,2,1,1],[0,3,2,0],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,4,3,1],[1,3,0,2],[0,2,1,0]],[[1,2,2,2],[1,3,3,1],[1,3,0,2],[0,2,1,0]],[[1,2,3,1],[1,3,3,1],[1,3,0,2],[0,2,1,0]],[[1,3,2,1],[1,3,3,1],[1,3,0,2],[0,2,1,0]],[[2,2,2,1],[1,3,3,1],[1,3,0,2],[0,2,1,0]],[[1,2,2,1],[1,4,3,1],[1,3,0,2],[0,2,0,1]],[[0,2,1,1],[0,3,2,1],[2,2,4,0],[1,2,2,1]],[[0,2,1,1],[0,3,2,1],[2,2,3,0],[2,2,2,1]],[[0,2,1,1],[0,3,2,1],[2,2,3,0],[1,3,2,1]],[[0,2,1,1],[0,3,2,1],[2,2,3,0],[1,2,3,1]],[[0,2,1,1],[0,3,2,1],[2,2,3,0],[1,2,2,2]],[[0,2,1,1],[0,3,2,1],[2,2,4,1],[1,2,2,0]],[[0,2,1,1],[0,3,2,1],[2,2,3,1],[2,2,2,0]],[[0,2,1,1],[0,3,2,1],[2,2,3,1],[1,3,2,0]],[[0,2,1,1],[0,3,2,1],[2,2,3,1],[1,2,3,0]],[[1,2,2,2],[1,3,3,1],[1,3,0,2],[0,2,0,1]],[[1,2,3,1],[1,3,3,1],[1,3,0,2],[0,2,0,1]],[[1,3,2,1],[1,3,3,1],[1,3,0,2],[0,2,0,1]],[[2,2,2,1],[1,3,3,1],[1,3,0,2],[0,2,0,1]],[[0,2,1,1],[0,3,2,1],[2,4,2,0],[1,2,2,1]],[[0,2,1,1],[0,3,2,1],[2,3,2,0],[2,2,2,1]],[[0,2,1,1],[0,3,2,1],[2,3,2,0],[1,3,2,1]],[[0,2,1,1],[0,3,2,1],[2,3,2,0],[1,2,3,1]],[[0,2,1,1],[0,3,2,1],[2,3,2,0],[1,2,2,2]],[[0,2,1,1],[0,3,2,1],[2,4,2,1],[1,2,2,0]],[[0,2,1,1],[0,3,2,1],[2,3,2,1],[2,2,2,0]],[[0,2,1,1],[0,3,2,1],[2,3,2,1],[1,3,2,0]],[[0,2,1,1],[0,3,2,1],[2,3,2,1],[1,2,3,0]],[[1,2,2,1],[1,4,3,1],[1,3,0,2],[0,1,2,0]],[[0,2,1,1],[0,3,2,1],[2,4,3,0],[1,1,2,1]],[[0,2,1,1],[0,3,2,1],[2,3,4,0],[1,1,2,1]],[[0,2,1,1],[0,3,2,1],[2,3,3,0],[1,1,3,1]],[[0,2,1,1],[0,3,2,1],[2,3,3,0],[1,1,2,2]],[[0,2,1,1],[0,3,2,1],[2,4,3,0],[1,2,1,1]],[[0,2,1,1],[0,3,2,1],[2,3,4,0],[1,2,1,1]],[[0,2,1,1],[0,3,2,1],[2,3,3,0],[2,2,1,1]],[[0,2,1,1],[0,3,2,1],[2,3,3,0],[1,3,1,1]],[[0,2,1,1],[0,3,2,1],[2,4,3,1],[1,1,2,0]],[[0,2,1,1],[0,3,2,1],[2,3,4,1],[1,1,2,0]],[[0,2,1,1],[0,3,2,1],[2,3,3,1],[1,1,3,0]],[[0,2,1,1],[0,3,2,1],[2,4,3,1],[1,2,0,1]],[[0,2,1,1],[0,3,2,1],[2,3,4,1],[1,2,0,1]],[[0,2,1,1],[0,3,2,1],[2,3,3,1],[2,2,0,1]],[[0,2,1,1],[0,3,2,1],[2,3,3,1],[1,3,0,1]],[[0,2,1,1],[0,3,2,1],[2,4,3,1],[1,2,1,0]],[[0,2,1,1],[0,3,2,1],[2,3,4,1],[1,2,1,0]],[[0,2,1,1],[0,3,2,1],[2,3,3,1],[2,2,1,0]],[[0,2,1,1],[0,3,2,1],[2,3,3,1],[1,3,1,0]],[[1,2,2,2],[1,3,3,1],[1,3,0,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,1],[1,3,0,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,1],[1,3,0,2],[0,1,2,0]],[[2,2,2,1],[1,3,3,1],[1,3,0,2],[0,1,2,0]],[[1,2,2,1],[1,4,3,1],[1,3,0,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,1],[1,3,0,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,1],[1,3,0,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,1],[1,3,0,2],[0,1,1,1]],[[2,2,2,1],[1,3,3,1],[1,3,0,2],[0,1,1,1]],[[1,2,2,1],[1,4,3,1],[1,3,0,1],[1,1,2,0]],[[1,2,2,2],[1,3,3,1],[1,3,0,1],[1,1,2,0]],[[1,2,3,1],[1,3,3,1],[1,3,0,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,1],[1,3,0,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,1],[1,3,0,1],[1,1,2,0]],[[1,2,2,1],[1,4,3,1],[1,3,0,1],[0,2,2,0]],[[1,2,2,2],[1,3,3,1],[1,3,0,1],[0,2,2,0]],[[1,2,3,1],[1,3,3,1],[1,3,0,1],[0,2,2,0]],[[1,3,2,1],[1,3,3,1],[1,3,0,1],[0,2,2,0]],[[2,2,2,1],[1,3,3,1],[1,3,0,1],[0,2,2,0]],[[1,2,2,1],[1,4,3,1],[1,3,0,0],[1,1,2,1]],[[1,2,2,2],[1,3,3,1],[1,3,0,0],[1,1,2,1]],[[1,2,3,1],[1,3,3,1],[1,3,0,0],[1,1,2,1]],[[1,3,2,1],[1,3,3,1],[1,3,0,0],[1,1,2,1]],[[2,2,2,1],[1,3,3,1],[1,3,0,0],[1,1,2,1]],[[1,2,2,1],[1,4,3,1],[1,3,0,0],[0,2,2,1]],[[1,2,2,2],[1,3,3,1],[1,3,0,0],[0,2,2,1]],[[1,2,3,1],[1,3,3,1],[1,3,0,0],[0,2,2,1]],[[1,3,2,1],[1,3,3,1],[1,3,0,0],[0,2,2,1]],[[2,2,2,1],[1,3,3,1],[1,3,0,0],[0,2,2,1]],[[1,2,2,1],[1,3,4,1],[1,2,3,2],[0,0,0,1]],[[1,2,2,2],[1,3,3,1],[1,2,3,2],[0,0,0,1]],[[1,2,3,1],[1,3,3,1],[1,2,3,2],[0,0,0,1]],[[1,3,2,1],[1,3,3,1],[1,2,3,2],[0,0,0,1]],[[2,2,2,1],[1,3,3,1],[1,2,3,2],[0,0,0,1]],[[1,2,2,1],[1,3,4,1],[1,2,3,1],[0,0,2,0]],[[1,2,2,2],[1,3,3,1],[1,2,3,1],[0,0,2,0]],[[1,2,3,1],[1,3,3,1],[1,2,3,1],[0,0,2,0]],[[1,3,2,1],[1,3,3,1],[1,2,3,1],[0,0,2,0]],[[2,2,2,1],[1,3,3,1],[1,2,3,1],[0,0,2,0]],[[1,2,2,1],[1,3,4,1],[1,2,3,1],[0,0,1,1]],[[1,2,2,2],[1,3,3,1],[1,2,3,1],[0,0,1,1]],[[1,2,3,1],[1,3,3,1],[1,2,3,1],[0,0,1,1]],[[1,3,2,1],[1,3,3,1],[1,2,3,1],[0,0,1,1]],[[2,2,2,1],[1,3,3,1],[1,2,3,1],[0,0,1,1]],[[1,2,2,1],[1,3,4,1],[1,2,3,0],[0,0,2,1]],[[1,2,2,2],[1,3,3,1],[1,2,3,0],[0,0,2,1]],[[1,2,3,1],[1,3,3,1],[1,2,3,0],[0,0,2,1]],[[1,3,2,1],[1,3,3,1],[1,2,3,0],[0,0,2,1]],[[2,2,2,1],[1,3,3,1],[1,2,3,0],[0,0,2,1]],[[1,2,2,1],[1,3,4,1],[1,2,2,2],[0,0,2,0]],[[1,2,2,2],[1,3,3,1],[1,2,2,2],[0,0,2,0]],[[1,2,3,1],[1,3,3,1],[1,2,2,2],[0,0,2,0]],[[1,3,2,1],[1,3,3,1],[1,2,2,2],[0,0,2,0]],[[2,2,2,1],[1,3,3,1],[1,2,2,2],[0,0,2,0]],[[1,2,2,1],[1,3,4,1],[1,2,2,2],[0,0,1,1]],[[1,2,2,2],[1,3,3,1],[1,2,2,2],[0,0,1,1]],[[1,2,3,1],[1,3,3,1],[1,2,2,2],[0,0,1,1]],[[1,3,2,1],[1,3,3,1],[1,2,2,2],[0,0,1,1]],[[2,2,2,1],[1,3,3,1],[1,2,2,2],[0,0,1,1]],[[0,2,1,1],[0,3,3,0],[0,3,2,3],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[0,3,2,2],[1,3,2,1]],[[0,2,1,1],[0,3,3,0],[0,3,2,2],[1,2,3,1]],[[0,2,1,1],[0,3,3,0],[0,3,2,2],[1,2,2,2]],[[0,2,1,1],[0,3,4,0],[0,3,3,1],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[0,3,4,1],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[0,3,3,1],[1,3,2,1]],[[0,2,1,1],[0,3,3,0],[0,3,3,1],[1,2,3,1]],[[0,2,1,1],[0,3,3,0],[0,3,3,1],[1,2,2,2]],[[0,2,1,1],[0,3,4,0],[0,3,3,2],[1,2,1,1]],[[0,2,1,1],[0,3,3,0],[0,3,4,2],[1,2,1,1]],[[0,2,1,1],[0,3,3,0],[0,3,3,3],[1,2,1,1]],[[0,2,1,1],[0,3,3,0],[0,3,3,2],[1,2,1,2]],[[0,2,1,1],[0,3,4,0],[0,3,3,2],[1,2,2,0]],[[0,2,1,1],[0,3,3,0],[0,3,4,2],[1,2,2,0]],[[0,2,1,1],[0,3,3,0],[0,3,3,3],[1,2,2,0]],[[0,2,1,1],[0,3,3,0],[0,3,3,2],[1,3,2,0]],[[0,2,1,1],[0,3,3,0],[0,3,3,2],[1,2,3,0]],[[0,2,1,1],[0,3,3,0],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[0,3,3,0],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[0,3,3,0],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[0,3,4,0],[1,2,3,1],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[0,3,3,0],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[0,3,3,0],[1,2,3,1],[1,2,2,2]],[[0,2,1,1],[0,3,4,0],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[0,3,3,0],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[0,3,3,0],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[0,3,3,0],[1,2,3,2],[1,2,1,2]],[[0,2,1,1],[0,3,4,0],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[0,3,3,0],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[0,3,3,0],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[0,3,3,0],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[0,3,3,0],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[0,3,3,0],[1,2,3,2],[1,2,3,0]],[[0,2,1,1],[0,3,3,0],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,1,3],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[0,3,3,0],[1,3,1,2],[1,2,2,2]],[[0,2,1,1],[0,3,3,0],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[0,3,3,0],[1,3,2,1],[1,2,2,2]],[[0,2,1,1],[0,3,3,0],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[0,3,3,0],[1,3,2,2],[1,1,2,2]],[[0,2,1,1],[0,3,3,0],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[0,3,3,0],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[0,3,3,0],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[0,3,3,0],[1,3,2,2],[1,2,3,0]],[[0,2,1,1],[0,3,3,0],[1,4,3,0],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,0],[2,2,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,0],[1,3,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,0],[1,2,3,1]],[[0,2,1,1],[0,3,4,0],[1,3,3,1],[1,1,2,1]],[[0,2,1,1],[0,3,3,0],[1,4,3,1],[1,1,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,1],[1,1,2,2]],[[0,2,1,1],[0,3,4,0],[1,3,3,1],[1,2,1,1]],[[0,2,1,1],[0,3,3,0],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[0,3,3,0],[1,3,4,1],[1,2,1,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,1],[1,3,1,1]],[[0,2,1,1],[0,3,4,0],[1,3,3,2],[1,0,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,4,2],[1,0,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,3],[1,0,2,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,2],[1,0,2,2]],[[0,2,1,1],[0,3,4,0],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[0,3,3,0],[1,4,3,2],[1,1,1,1]],[[0,2,1,1],[0,3,3,0],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,2],[1,1,1,2]],[[0,2,1,1],[0,3,4,0],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[0,3,3,0],[1,4,3,2],[1,1,2,0]],[[0,2,1,1],[0,3,3,0],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[0,3,3,0],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[0,3,3,0],[1,3,3,2],[1,1,3,0]],[[0,2,1,1],[0,3,4,0],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[0,3,3,0],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[0,3,3,0],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[0,3,3,0],[1,3,3,2],[1,2,0,2]],[[0,2,1,1],[0,3,4,0],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[0,3,3,0],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[0,3,3,0],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[0,3,3,0],[1,3,3,3],[1,2,1,0]],[[0,2,1,1],[0,3,3,0],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[0,3,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,3,4,1],[1,1,3,2],[1,0,0,1]],[[1,2,2,2],[1,3,3,1],[1,1,3,2],[1,0,0,1]],[[1,2,3,1],[1,3,3,1],[1,1,3,2],[1,0,0,1]],[[1,3,2,1],[1,3,3,1],[1,1,3,2],[1,0,0,1]],[[2,2,2,1],[1,3,3,1],[1,1,3,2],[1,0,0,1]],[[0,2,1,1],[0,3,3,0],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[0,3,3,0],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[0,3,3,0],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[0,3,4,0],[2,2,3,1],[0,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[0,3,3,0],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[0,3,3,0],[2,2,3,1],[0,2,2,2]],[[0,2,1,1],[0,3,4,0],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[0,3,3,0],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[0,3,3,0],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[0,3,3,0],[2,2,3,2],[0,2,1,2]],[[0,2,1,1],[0,3,4,0],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[0,3,3,0],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[0,3,3,0],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[0,3,3,0],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[0,3,3,0],[2,2,3,2],[0,2,3,0]],[[0,2,1,1],[0,3,3,0],[2,4,0,2],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,0,3],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,0,2],[2,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,0,2],[1,3,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,0,2],[1,2,3,1]],[[0,2,1,1],[0,3,3,0],[2,3,0,2],[1,2,2,2]],[[0,2,1,1],[0,3,3,0],[2,4,1,1],[1,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,1,1],[2,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,1,1],[1,3,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,1,1],[1,2,3,1]],[[0,2,1,1],[0,3,3,0],[2,3,1,1],[1,2,2,2]],[[0,2,1,1],[0,3,3,0],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,1,3],[0,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[0,3,3,0],[2,3,1,2],[0,2,2,2]],[[0,2,1,1],[0,3,3,0],[2,4,1,2],[1,2,2,0]],[[0,2,1,1],[0,3,3,0],[2,3,1,2],[2,2,2,0]],[[0,2,1,1],[0,3,3,0],[2,3,1,2],[1,3,2,0]],[[0,2,1,1],[0,3,3,0],[2,3,1,2],[1,2,3,0]],[[0,2,1,1],[0,3,3,0],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,1],[0,2,2,2]],[[0,2,1,1],[0,3,3,0],[2,4,2,1],[1,2,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,1],[2,2,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,1],[1,3,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,2],[0,1,2,2]],[[0,2,1,1],[0,3,3,0],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[0,3,3,0],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[0,3,3,0],[2,3,2,2],[0,2,3,0]],[[0,2,1,1],[0,3,3,0],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,2],[1,0,2,2]],[[0,2,1,1],[0,3,3,0],[2,4,2,2],[1,2,0,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,2],[2,2,0,1]],[[0,2,1,1],[0,3,3,0],[2,3,2,2],[1,3,0,1]],[[0,2,1,1],[0,3,3,0],[2,4,2,2],[1,2,1,0]],[[0,2,1,1],[0,3,3,0],[2,3,2,2],[2,2,1,0]],[[0,2,1,1],[0,3,3,0],[2,3,2,2],[1,3,1,0]],[[0,2,1,1],[0,3,3,0],[2,4,3,0],[0,2,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,0],[0,3,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,0],[0,2,3,1]],[[0,2,1,1],[0,3,4,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[0,3,3,0],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,1],[0,1,2,2]],[[0,2,1,1],[0,3,4,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[0,3,3,0],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,4,1],[0,2,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,1],[0,3,1,1]],[[0,2,1,1],[0,3,4,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[0,3,3,0],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,1],[1,0,2,2]],[[0,2,1,1],[0,3,4,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[0,3,3,0],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,3,4,1],[1,1,3,2],[0,1,0,1]],[[1,2,2,2],[1,3,3,1],[1,1,3,2],[0,1,0,1]],[[1,2,3,1],[1,3,3,1],[1,1,3,2],[0,1,0,1]],[[0,2,1,1],[0,3,4,0],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,2],[0,0,2,2]],[[0,2,1,1],[0,3,4,0],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[0,3,3,0],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,2],[0,1,1,2]],[[0,2,1,1],[0,3,4,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[0,3,3,0],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[0,3,3,0],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[0,3,3,0],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[0,3,3,0],[2,3,3,2],[0,1,3,0]],[[0,2,1,1],[0,3,4,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[0,3,3,0],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[0,3,3,0],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,2],[0,2,0,2]],[[0,2,1,1],[0,3,4,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[0,3,3,0],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[0,3,3,0],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[0,3,3,0],[2,3,3,3],[0,2,1,0]],[[0,2,1,1],[0,3,3,0],[2,3,3,2],[0,3,1,0]],[[1,3,2,1],[1,3,3,1],[1,1,3,2],[0,1,0,1]],[[2,2,2,1],[1,3,3,1],[1,1,3,2],[0,1,0,1]],[[0,2,1,1],[0,3,4,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[0,3,3,0],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,2],[1,0,1,2]],[[0,2,1,1],[0,3,4,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[0,3,3,0],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[0,3,3,0],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[0,3,3,0],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[0,3,3,0],[2,3,3,2],[1,0,3,0]],[[0,2,1,1],[0,3,4,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[0,3,3,0],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[0,3,3,0],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[0,3,3,0],[2,3,3,2],[1,1,0,2]],[[0,2,1,1],[0,3,4,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[0,3,3,0],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[0,3,3,0],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[0,3,3,0],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,3,4,1],[1,1,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,3,1],[1,1,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,1],[1,1,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,1],[1,1,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,1],[1,1,3,1],[1,1,1,0]],[[1,2,2,1],[1,3,4,1],[1,1,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,3,1],[1,1,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,1],[1,1,3,1],[1,1,0,1]],[[0,2,1,1],[0,3,4,1],[0,3,3,0],[1,2,2,1]],[[0,2,1,1],[0,3,3,1],[0,3,4,0],[1,2,2,1]],[[0,2,1,1],[0,3,3,1],[0,3,3,0],[1,3,2,1]],[[0,2,1,1],[0,3,3,1],[0,3,3,0],[1,2,3,1]],[[0,2,1,1],[0,3,3,1],[0,3,3,0],[1,2,2,2]],[[0,2,1,1],[0,3,4,1],[0,3,3,1],[1,2,2,0]],[[0,2,1,1],[0,3,3,1],[0,3,4,1],[1,2,2,0]],[[0,2,1,1],[0,3,3,1],[0,3,3,1],[1,3,2,0]],[[0,2,1,1],[0,3,3,1],[0,3,3,1],[1,2,3,0]],[[1,3,2,1],[1,3,3,1],[1,1,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,3,1],[1,1,3,1],[1,1,0,1]],[[0,2,1,1],[0,3,4,1],[1,2,3,0],[1,2,2,1]],[[0,2,1,1],[0,3,3,1],[1,2,4,0],[1,2,2,1]],[[0,2,1,1],[0,3,3,1],[1,2,3,0],[2,2,2,1]],[[0,2,1,1],[0,3,3,1],[1,2,3,0],[1,3,2,1]],[[0,2,1,1],[0,3,3,1],[1,2,3,0],[1,2,3,1]],[[0,2,1,1],[0,3,3,1],[1,2,3,0],[1,2,2,2]],[[0,2,1,1],[0,3,4,1],[1,2,3,1],[1,2,2,0]],[[0,2,1,1],[0,3,3,1],[1,2,4,1],[1,2,2,0]],[[0,2,1,1],[0,3,3,1],[1,2,3,1],[2,2,2,0]],[[0,2,1,1],[0,3,3,1],[1,2,3,1],[1,3,2,0]],[[0,2,1,1],[0,3,3,1],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[1,3,4,1],[1,1,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,3,1],[1,1,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,3,1],[1,1,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,3,1],[1,1,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,3,1],[1,1,3,1],[1,0,2,0]],[[1,2,2,1],[1,3,4,1],[1,1,3,1],[1,0,1,1]],[[0,2,1,1],[0,3,3,1],[1,4,2,0],[1,2,2,1]],[[0,2,1,1],[0,3,3,1],[1,3,2,0],[2,2,2,1]],[[0,2,1,1],[0,3,3,1],[1,3,2,0],[1,3,2,1]],[[0,2,1,1],[0,3,3,1],[1,3,2,0],[1,2,3,1]],[[0,2,1,1],[0,3,3,1],[1,3,2,0],[1,2,2,2]],[[0,2,1,1],[0,3,3,1],[1,4,2,1],[1,2,2,0]],[[0,2,1,1],[0,3,3,1],[1,3,2,1],[2,2,2,0]],[[0,2,1,1],[0,3,3,1],[1,3,2,1],[1,3,2,0]],[[0,2,1,1],[0,3,3,1],[1,3,2,1],[1,2,3,0]],[[1,2,2,2],[1,3,3,1],[1,1,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,3,1],[1,1,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,3,1],[1,1,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,3,1],[1,1,3,1],[1,0,1,1]],[[0,2,1,1],[0,3,4,1],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[0,3,3,1],[1,4,3,0],[1,1,2,1]],[[0,2,1,1],[0,3,3,1],[1,3,4,0],[1,1,2,1]],[[0,2,1,1],[0,3,3,1],[1,3,3,0],[1,1,3,1]],[[0,2,1,1],[0,3,3,1],[1,3,3,0],[1,1,2,2]],[[0,2,1,1],[0,3,4,1],[1,3,3,0],[1,2,1,1]],[[0,2,1,1],[0,3,3,1],[1,4,3,0],[1,2,1,1]],[[0,2,1,1],[0,3,3,1],[1,3,4,0],[1,2,1,1]],[[0,2,1,1],[0,3,3,1],[1,3,3,0],[2,2,1,1]],[[0,2,1,1],[0,3,3,1],[1,3,3,0],[1,3,1,1]],[[0,2,1,1],[0,3,4,1],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[0,3,3,1],[1,4,3,1],[1,1,1,1]],[[0,2,1,1],[0,3,3,1],[1,3,4,1],[1,1,1,1]],[[0,2,1,1],[0,3,4,1],[1,3,3,1],[1,1,2,0]],[[0,2,1,1],[0,3,3,1],[1,4,3,1],[1,1,2,0]],[[0,2,1,1],[0,3,3,1],[1,3,4,1],[1,1,2,0]],[[0,2,1,1],[0,3,3,1],[1,3,3,1],[1,1,3,0]],[[0,2,1,1],[0,3,4,1],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[0,3,3,1],[1,4,3,1],[1,2,0,1]],[[0,2,1,1],[0,3,3,1],[1,3,4,1],[1,2,0,1]],[[0,2,1,1],[0,3,3,1],[1,3,3,1],[2,2,0,1]],[[0,2,1,1],[0,3,3,1],[1,3,3,1],[1,3,0,1]],[[0,2,1,1],[0,3,4,1],[1,3,3,1],[1,2,1,0]],[[0,2,1,1],[0,3,3,1],[1,4,3,1],[1,2,1,0]],[[0,2,1,1],[0,3,3,1],[1,3,4,1],[1,2,1,0]],[[0,2,1,1],[0,3,3,1],[1,3,3,1],[2,2,1,0]],[[0,2,1,1],[0,3,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,3,4,1],[1,1,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,3,1],[1,1,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,1],[1,1,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,1],[1,1,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,1],[1,1,3,1],[0,2,1,0]],[[1,2,2,1],[1,3,4,1],[1,1,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,3,1],[1,1,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,1],[1,1,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,1],[1,1,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,1],[1,1,3,1],[0,2,0,1]],[[1,2,2,1],[1,3,4,1],[1,1,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,3,1],[1,1,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,3,1],[1,1,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,3,1],[1,1,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,3,1],[1,1,3,1],[0,1,2,0]],[[1,2,2,1],[1,3,4,1],[1,1,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,3,1],[1,1,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,3,1],[1,1,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,3,1],[1,1,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,3,1],[1,1,3,1],[0,1,1,1]],[[1,2,2,1],[1,3,4,1],[1,1,3,1],[0,0,2,1]],[[1,2,2,2],[1,3,3,1],[1,1,3,1],[0,0,2,1]],[[1,2,3,1],[1,3,3,1],[1,1,3,1],[0,0,2,1]],[[1,3,2,1],[1,3,3,1],[1,1,3,1],[0,0,2,1]],[[0,2,1,1],[0,3,4,1],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[0,3,3,1],[2,2,4,0],[0,2,2,1]],[[0,2,1,1],[0,3,3,1],[2,2,3,0],[0,3,2,1]],[[0,2,1,1],[0,3,3,1],[2,2,3,0],[0,2,3,1]],[[0,2,1,1],[0,3,3,1],[2,2,3,0],[0,2,2,2]],[[0,2,1,1],[0,3,4,1],[2,2,3,1],[0,2,2,0]],[[0,2,1,1],[0,3,3,1],[2,2,4,1],[0,2,2,0]],[[0,2,1,1],[0,3,3,1],[2,2,3,1],[0,3,2,0]],[[0,2,1,1],[0,3,3,1],[2,2,3,1],[0,2,3,0]],[[2,2,2,1],[1,3,3,1],[1,1,3,1],[0,0,2,1]],[[1,2,2,1],[1,3,4,1],[1,1,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,3,1],[1,1,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,1],[1,1,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,1],[1,1,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,3,1],[1,1,3,0],[1,1,1,1]],[[1,2,2,1],[1,3,4,1],[1,1,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,3,1],[1,1,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,3,1],[1,1,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,3,1],[1,1,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,3,1],[1,1,3,0],[1,0,2,1]],[[0,2,1,1],[0,3,3,1],[2,4,0,1],[1,2,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,0,1],[2,2,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,0,1],[1,3,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,0,1],[1,2,3,1]],[[0,2,1,1],[0,3,3,1],[2,3,0,1],[1,2,2,2]],[[0,2,1,1],[0,3,3,1],[2,4,0,2],[1,2,1,1]],[[0,2,1,1],[0,3,3,1],[2,3,0,2],[2,2,1,1]],[[0,2,1,1],[0,3,3,1],[2,3,0,2],[1,3,1,1]],[[0,2,1,1],[0,3,3,1],[2,4,0,2],[1,2,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,0,2],[2,2,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,0,2],[1,3,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,0,2],[1,2,3,0]],[[0,2,1,1],[0,3,3,1],[2,4,1,0],[1,2,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,1,0],[2,2,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,1,0],[1,3,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,1,0],[1,2,3,1]],[[0,2,1,1],[0,3,3,1],[2,3,1,0],[1,2,2,2]],[[0,2,1,1],[0,3,3,1],[2,4,1,1],[1,2,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,1,1],[2,2,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,1,1],[1,3,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,1,1],[1,2,3,0]],[[0,2,1,1],[0,3,3,1],[2,4,1,2],[1,2,0,1]],[[0,2,1,1],[0,3,3,1],[2,3,1,2],[2,2,0,1]],[[0,2,1,1],[0,3,3,1],[2,3,1,2],[1,3,0,1]],[[0,2,1,1],[0,3,3,1],[2,4,1,2],[1,2,1,0]],[[0,2,1,1],[0,3,3,1],[2,3,1,2],[2,2,1,0]],[[0,2,1,1],[0,3,3,1],[2,3,1,2],[1,3,1,0]],[[1,2,2,1],[1,3,4,1],[1,1,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,3,1],[1,1,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,1],[1,1,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,1],[1,1,3,0],[0,2,1,1]],[[0,2,1,1],[0,3,3,1],[2,4,2,0],[0,2,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,2,0],[0,3,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,2,0],[0,2,3,1]],[[0,2,1,1],[0,3,3,1],[2,3,2,0],[0,2,2,2]],[[0,2,1,1],[0,3,3,1],[2,4,2,0],[1,2,1,1]],[[0,2,1,1],[0,3,3,1],[2,3,2,0],[2,2,1,1]],[[0,2,1,1],[0,3,3,1],[2,3,2,0],[1,3,1,1]],[[0,2,1,1],[0,3,3,1],[2,4,2,1],[0,2,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,2,1],[0,3,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,2,1],[0,2,3,0]],[[0,2,1,1],[0,3,3,1],[2,4,2,1],[1,2,0,1]],[[0,2,1,1],[0,3,3,1],[2,3,2,1],[2,2,0,1]],[[0,2,1,1],[0,3,3,1],[2,3,2,1],[1,3,0,1]],[[0,2,1,1],[0,3,3,1],[2,4,2,1],[1,2,1,0]],[[0,2,1,1],[0,3,3,1],[2,3,2,1],[2,2,1,0]],[[0,2,1,1],[0,3,3,1],[2,3,2,1],[1,3,1,0]],[[2,2,2,1],[1,3,3,1],[1,1,3,0],[0,2,1,1]],[[1,2,2,1],[1,3,4,1],[1,1,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,3,1],[1,1,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,3,1],[1,1,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,3,1],[1,1,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,3,1],[1,1,3,0],[0,1,2,1]],[[0,2,1,1],[0,3,4,1],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[0,3,3,1],[2,4,3,0],[0,1,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,4,0],[0,1,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,3,0],[0,1,3,1]],[[0,2,1,1],[0,3,3,1],[2,3,3,0],[0,1,2,2]],[[0,2,1,1],[0,3,4,1],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[0,3,3,1],[2,4,3,0],[0,2,1,1]],[[0,2,1,1],[0,3,3,1],[2,3,4,0],[0,2,1,1]],[[0,2,1,1],[0,3,3,1],[2,3,3,0],[0,3,1,1]],[[0,2,1,1],[0,3,4,1],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[0,3,3,1],[2,4,3,0],[1,0,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,4,0],[1,0,2,1]],[[0,2,1,1],[0,3,3,1],[2,3,3,0],[1,0,3,1]],[[0,2,1,1],[0,3,3,1],[2,3,3,0],[1,0,2,2]],[[0,2,1,1],[0,3,4,1],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[0,3,3,1],[2,4,3,0],[1,1,1,1]],[[0,2,1,1],[0,3,3,1],[2,3,4,0],[1,1,1,1]],[[0,2,1,1],[0,3,3,1],[2,4,3,0],[1,2,1,0]],[[0,2,1,1],[0,3,3,1],[2,3,3,0],[2,2,1,0]],[[0,2,1,1],[0,3,3,1],[2,3,3,0],[1,3,1,0]],[[1,2,2,1],[1,3,4,1],[1,1,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,3,1],[1,1,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,3,1],[1,1,2,2],[1,1,1,0]],[[1,3,2,1],[1,3,3,1],[1,1,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,3,1],[1,1,2,2],[1,1,1,0]],[[1,2,2,1],[1,3,4,1],[1,1,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,1],[1,1,2,2],[1,1,0,1]],[[0,2,1,1],[0,3,4,1],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[0,3,3,1],[2,4,3,1],[0,1,1,1]],[[0,2,1,1],[0,3,3,1],[2,3,4,1],[0,1,1,1]],[[0,2,1,1],[0,3,4,1],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[0,3,3,1],[2,4,3,1],[0,1,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,4,1],[0,1,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,3,1],[0,1,3,0]],[[0,2,1,1],[0,3,4,1],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[0,3,3,1],[2,4,3,1],[0,2,0,1]],[[0,2,1,1],[0,3,3,1],[2,3,4,1],[0,2,0,1]],[[0,2,1,1],[0,3,3,1],[2,3,3,1],[0,3,0,1]],[[0,2,1,1],[0,3,4,1],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[0,3,3,1],[2,4,3,1],[0,2,1,0]],[[0,2,1,1],[0,3,3,1],[2,3,4,1],[0,2,1,0]],[[0,2,1,1],[0,3,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,3,1],[1,3,3,1],[1,1,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,1],[1,1,2,2],[1,1,0,1]],[[2,2,2,1],[1,3,3,1],[1,1,2,2],[1,1,0,1]],[[0,2,1,1],[0,3,4,1],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[0,3,3,1],[2,4,3,1],[1,0,1,1]],[[0,2,1,1],[0,3,3,1],[2,3,4,1],[1,0,1,1]],[[0,2,1,1],[0,3,4,1],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[0,3,3,1],[2,4,3,1],[1,0,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,4,1],[1,0,2,0]],[[0,2,1,1],[0,3,3,1],[2,3,3,1],[1,0,3,0]],[[0,2,1,1],[0,3,4,1],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[0,3,3,1],[2,4,3,1],[1,1,0,1]],[[0,2,1,1],[0,3,3,1],[2,3,4,1],[1,1,0,1]],[[0,2,1,1],[0,3,4,1],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[0,3,3,1],[2,4,3,1],[1,1,1,0]],[[0,2,1,1],[0,3,3,1],[2,3,4,1],[1,1,1,0]],[[1,2,2,1],[1,3,4,1],[1,1,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,1],[1,1,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,1],[1,1,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,1],[1,1,2,2],[1,0,2,0]],[[2,2,2,1],[1,3,3,1],[1,1,2,2],[1,0,2,0]],[[1,2,2,1],[1,3,4,1],[1,1,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,3,1],[1,1,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,1],[1,1,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,3,1],[1,1,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,3,1],[1,1,2,2],[1,0,1,1]],[[1,2,2,1],[1,3,4,1],[1,1,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,3,1],[1,1,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,3,1],[1,1,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,3,1],[1,1,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,3,1],[1,1,2,2],[0,2,1,0]],[[1,2,2,1],[1,3,4,1],[1,1,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,3,1],[1,1,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,3,1],[1,1,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,3,1],[1,1,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,3,1],[1,1,2,2],[0,2,0,1]],[[1,2,2,1],[1,3,4,1],[1,1,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,1],[1,1,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,1],[1,1,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,1],[1,1,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,3,1],[1,1,2,2],[0,1,2,0]],[[1,2,2,1],[1,3,4,1],[1,1,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,1],[1,1,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,1],[1,1,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,1],[1,1,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,3,1],[1,1,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,4,1],[1,1,2,2],[0,0,2,1]],[[1,2,2,2],[1,3,3,1],[1,1,2,2],[0,0,2,1]],[[1,2,3,1],[1,3,3,1],[1,1,2,2],[0,0,2,1]],[[1,3,2,1],[1,3,3,1],[1,1,2,2],[0,0,2,1]],[[2,2,2,1],[1,3,3,1],[1,1,2,2],[0,0,2,1]],[[1,2,2,1],[1,3,4,1],[1,1,1,2],[1,0,2,1]],[[1,2,2,2],[1,3,3,1],[1,1,1,2],[1,0,2,1]],[[1,2,3,1],[1,3,3,1],[1,1,1,2],[1,0,2,1]],[[1,3,2,1],[1,3,3,1],[1,1,1,2],[1,0,2,1]],[[2,2,2,1],[1,3,3,1],[1,1,1,2],[1,0,2,1]],[[1,2,2,1],[1,3,4,1],[1,1,1,2],[0,1,2,1]],[[1,2,2,2],[1,3,3,1],[1,1,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,3,1],[1,1,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,3,1],[1,1,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,3,1],[1,1,1,2],[0,1,2,1]],[[1,2,2,1],[1,3,4,1],[1,0,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,1],[1,0,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,1],[1,0,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,1],[1,0,3,2],[1,0,2,0]],[[2,2,2,1],[1,3,3,1],[1,0,3,2],[1,0,2,0]],[[1,2,2,1],[1,3,4,1],[1,0,3,2],[1,0,1,1]],[[1,2,2,2],[1,3,3,1],[1,0,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,1],[1,0,3,2],[1,0,1,1]],[[1,3,2,1],[1,3,3,1],[1,0,3,2],[1,0,1,1]],[[0,2,1,2],[0,3,3,2],[0,0,3,2],[1,2,2,1]],[[0,2,1,1],[0,3,3,3],[0,0,3,2],[1,2,2,1]],[[0,2,1,1],[0,3,3,2],[0,0,3,3],[1,2,2,1]],[[0,2,1,1],[0,3,3,2],[0,0,3,2],[1,2,3,1]],[[0,2,1,1],[0,3,3,2],[0,0,3,2],[1,2,2,2]],[[2,2,2,1],[1,3,3,1],[1,0,3,2],[1,0,1,1]],[[1,2,2,1],[1,3,4,1],[1,0,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,1],[1,0,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,1],[1,0,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,1],[1,0,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,3,1],[1,0,3,2],[0,1,2,0]],[[1,2,2,1],[1,3,4,1],[1,0,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,1],[1,0,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,1],[1,0,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,1],[1,0,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,3,1],[1,0,3,2],[0,1,1,1]],[[1,2,2,1],[1,3,4,1],[1,0,3,2],[0,0,2,1]],[[1,2,2,2],[1,3,3,1],[1,0,3,2],[0,0,2,1]],[[1,2,3,1],[1,3,3,1],[1,0,3,2],[0,0,2,1]],[[1,3,2,1],[1,3,3,1],[1,0,3,2],[0,0,2,1]],[[2,2,2,1],[1,3,3,1],[1,0,3,2],[0,0,2,1]],[[1,2,2,1],[1,3,4,1],[1,0,3,1],[0,2,2,0]],[[1,2,2,2],[1,3,3,1],[1,0,3,1],[0,2,2,0]],[[1,2,3,1],[1,3,3,1],[1,0,3,1],[0,2,2,0]],[[1,3,2,1],[1,3,3,1],[1,0,3,1],[0,2,2,0]],[[2,2,2,1],[1,3,3,1],[1,0,3,1],[0,2,2,0]],[[1,2,2,1],[1,3,4,1],[1,0,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,3,1],[1,0,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,3,1],[1,0,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,3,1],[1,0,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,3,1],[1,0,3,1],[0,2,1,1]],[[1,2,2,1],[1,3,4,1],[1,0,3,0],[0,2,2,1]],[[1,2,2,2],[1,3,3,1],[1,0,3,0],[0,2,2,1]],[[1,2,3,1],[1,3,3,1],[1,0,3,0],[0,2,2,1]],[[1,3,2,1],[1,3,3,1],[1,0,3,0],[0,2,2,1]],[[2,2,2,1],[1,3,3,1],[1,0,3,0],[0,2,2,1]],[[1,2,2,1],[1,3,4,1],[1,0,2,2],[0,2,2,0]],[[1,2,2,2],[1,3,3,1],[1,0,2,2],[0,2,2,0]],[[1,2,3,1],[1,3,3,1],[1,0,2,2],[0,2,2,0]],[[1,3,2,1],[1,3,3,1],[1,0,2,2],[0,2,2,0]],[[2,2,2,1],[1,3,3,1],[1,0,2,2],[0,2,2,0]],[[1,2,2,1],[1,3,4,1],[1,0,2,2],[0,2,1,1]],[[1,2,2,2],[1,3,3,1],[1,0,2,2],[0,2,1,1]],[[1,2,3,1],[1,3,3,1],[1,0,2,2],[0,2,1,1]],[[1,3,2,1],[1,3,3,1],[1,0,2,2],[0,2,1,1]],[[2,2,2,1],[1,3,3,1],[1,0,2,2],[0,2,1,1]],[[1,2,2,1],[1,3,4,1],[1,0,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,3,1],[1,0,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,3,1],[1,0,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,3,1],[1,0,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,3,1],[1,0,1,2],[0,2,2,1]],[[1,2,2,1],[1,4,3,1],[0,3,2,1],[1,2,0,0]],[[1,2,2,2],[1,3,3,1],[0,3,2,1],[1,2,0,0]],[[1,2,3,1],[1,3,3,1],[0,3,2,1],[1,2,0,0]],[[1,3,2,1],[1,3,3,1],[0,3,2,1],[1,2,0,0]],[[2,2,2,1],[1,3,3,1],[0,3,2,1],[1,2,0,0]],[[1,2,2,1],[1,4,3,1],[0,3,1,1],[1,2,1,0]],[[1,2,2,2],[1,3,3,1],[0,3,1,1],[1,2,1,0]],[[1,2,3,1],[1,3,3,1],[0,3,1,1],[1,2,1,0]],[[1,3,2,1],[1,3,3,1],[0,3,1,1],[1,2,1,0]],[[2,2,2,1],[1,3,3,1],[0,3,1,1],[1,2,1,0]],[[1,2,2,1],[1,4,3,1],[0,3,1,1],[1,2,0,1]],[[1,2,2,2],[1,3,3,1],[0,3,1,1],[1,2,0,1]],[[1,2,3,1],[1,3,3,1],[0,3,1,1],[1,2,0,1]],[[1,3,2,1],[1,3,3,1],[0,3,1,1],[1,2,0,1]],[[2,2,2,1],[1,3,3,1],[0,3,1,1],[1,2,0,1]],[[1,2,2,1],[1,4,3,1],[0,3,1,1],[1,1,2,0]],[[1,2,2,2],[1,3,3,1],[0,3,1,1],[1,1,2,0]],[[1,2,3,1],[1,3,3,1],[0,3,1,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,1],[0,3,1,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,1],[0,3,1,1],[1,1,2,0]],[[1,2,2,1],[1,4,3,1],[0,3,1,1],[1,1,1,1]],[[1,2,2,2],[1,3,3,1],[0,3,1,1],[1,1,1,1]],[[1,2,3,1],[1,3,3,1],[0,3,1,1],[1,1,1,1]],[[1,3,2,1],[1,3,3,1],[0,3,1,1],[1,1,1,1]],[[2,2,2,1],[1,3,3,1],[0,3,1,1],[1,1,1,1]],[[0,2,1,1],[0,3,3,2],[2,4,1,0],[1,2,2,0]],[[0,2,1,1],[0,3,3,2],[2,3,1,0],[2,2,2,0]],[[0,2,1,1],[0,3,3,2],[2,3,1,0],[1,3,2,0]],[[1,2,2,1],[1,4,3,1],[0,3,1,0],[1,2,1,1]],[[1,2,2,2],[1,3,3,1],[0,3,1,0],[1,2,1,1]],[[1,2,3,1],[1,3,3,1],[0,3,1,0],[1,2,1,1]],[[1,3,2,1],[1,3,3,1],[0,3,1,0],[1,2,1,1]],[[2,2,2,1],[1,3,3,1],[0,3,1,0],[1,2,1,1]],[[1,2,2,1],[1,4,3,1],[0,3,1,0],[1,1,2,1]],[[1,2,2,2],[1,3,3,1],[0,3,1,0],[1,1,2,1]],[[1,2,3,1],[1,3,3,1],[0,3,1,0],[1,1,2,1]],[[1,3,2,1],[1,3,3,1],[0,3,1,0],[1,1,2,1]],[[2,2,2,1],[1,3,3,1],[0,3,1,0],[1,1,2,1]],[[1,2,2,1],[1,4,3,1],[0,3,0,2],[1,2,1,0]],[[1,2,2,2],[1,3,3,1],[0,3,0,2],[1,2,1,0]],[[1,2,3,1],[1,3,3,1],[0,3,0,2],[1,2,1,0]],[[1,3,2,1],[1,3,3,1],[0,3,0,2],[1,2,1,0]],[[0,2,1,1],[0,3,3,2],[2,4,2,0],[1,2,1,0]],[[0,2,1,1],[0,3,3,2],[2,3,2,0],[2,2,1,0]],[[0,2,1,1],[0,3,3,2],[2,3,2,0],[1,3,1,0]],[[2,2,2,1],[1,3,3,1],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[1,4,3,1],[0,3,0,2],[1,2,0,1]],[[1,2,2,2],[1,3,3,1],[0,3,0,2],[1,2,0,1]],[[1,2,3,1],[1,3,3,1],[0,3,0,2],[1,2,0,1]],[[1,3,2,1],[1,3,3,1],[0,3,0,2],[1,2,0,1]],[[2,2,2,1],[1,3,3,1],[0,3,0,2],[1,2,0,1]],[[1,2,2,1],[1,4,3,1],[0,3,0,2],[1,1,2,0]],[[1,2,2,2],[1,3,3,1],[0,3,0,2],[1,1,2,0]],[[1,2,3,1],[1,3,3,1],[0,3,0,2],[1,1,2,0]],[[1,3,2,1],[1,3,3,1],[0,3,0,2],[1,1,2,0]],[[2,2,2,1],[1,3,3,1],[0,3,0,2],[1,1,2,0]],[[1,2,2,1],[1,4,3,1],[0,3,0,2],[1,1,1,1]],[[1,2,2,2],[1,3,3,1],[0,3,0,2],[1,1,1,1]],[[1,2,3,1],[1,3,3,1],[0,3,0,2],[1,1,1,1]],[[1,3,2,1],[1,3,3,1],[0,3,0,2],[1,1,1,1]],[[2,2,2,1],[1,3,3,1],[0,3,0,2],[1,1,1,1]],[[1,2,2,1],[1,4,3,1],[0,3,0,1],[1,2,2,0]],[[1,2,2,2],[1,3,3,1],[0,3,0,1],[1,2,2,0]],[[1,2,3,1],[1,3,3,1],[0,3,0,1],[1,2,2,0]],[[1,3,2,1],[1,3,3,1],[0,3,0,1],[1,2,2,0]],[[2,2,2,1],[1,3,3,1],[0,3,0,1],[1,2,2,0]],[[1,2,2,1],[1,4,3,1],[0,3,0,0],[1,2,2,1]],[[1,2,2,2],[1,3,3,1],[0,3,0,0],[1,2,2,1]],[[1,2,3,1],[1,3,3,1],[0,3,0,0],[1,2,2,1]],[[1,3,2,1],[1,3,3,1],[0,3,0,0],[1,2,2,1]],[[2,2,2,1],[1,3,3,1],[0,3,0,0],[1,2,2,1]],[[1,2,2,1],[1,3,4,1],[0,1,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,1],[0,1,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,1],[0,1,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,1],[0,1,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,3,1],[0,1,3,2],[1,1,0,1]],[[1,2,2,1],[1,3,4,1],[0,1,3,1],[1,2,1,0]],[[1,2,2,2],[1,3,3,1],[0,1,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,3,1],[0,1,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,3,1],[0,1,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,3,1],[0,1,3,1],[1,2,1,0]],[[1,2,2,1],[1,3,4,1],[0,1,3,1],[1,2,0,1]],[[1,2,2,2],[1,3,3,1],[0,1,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,3,1],[0,1,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,3,1],[0,1,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,3,1],[0,1,3,1],[1,2,0,1]],[[1,2,2,1],[1,3,4,1],[0,1,3,1],[1,1,2,0]],[[1,2,2,2],[1,3,3,1],[0,1,3,1],[1,1,2,0]],[[1,2,3,1],[1,3,3,1],[0,1,3,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,1],[0,1,3,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,1],[0,1,3,1],[1,1,2,0]],[[1,2,2,1],[1,3,4,1],[0,1,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,3,1],[0,1,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,3,1],[0,1,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,3,1],[0,1,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,3,1],[0,1,3,1],[1,1,1,1]],[[1,2,2,1],[1,3,4,1],[0,1,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,3,1],[0,1,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,3,1],[0,1,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,3,1],[0,1,3,1],[1,0,2,1]],[[2,2,2,1],[1,3,3,1],[0,1,3,1],[1,0,2,1]],[[1,2,2,1],[1,3,4,1],[0,1,3,0],[1,2,1,1]],[[1,2,2,2],[1,3,3,1],[0,1,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,3,1],[0,1,3,0],[1,2,1,1]],[[1,3,2,1],[1,3,3,1],[0,1,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,3,1],[0,1,3,0],[1,2,1,1]],[[1,2,2,1],[1,3,4,1],[0,1,3,0],[1,1,2,1]],[[1,2,2,2],[1,3,3,1],[0,1,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,3,1],[0,1,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,3,1],[0,1,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,3,1],[0,1,3,0],[1,1,2,1]],[[1,2,2,1],[1,3,4,1],[0,1,2,2],[1,2,1,0]],[[1,2,2,2],[1,3,3,1],[0,1,2,2],[1,2,1,0]],[[1,2,3,1],[1,3,3,1],[0,1,2,2],[1,2,1,0]],[[1,3,2,1],[1,3,3,1],[0,1,2,2],[1,2,1,0]],[[2,2,2,1],[1,3,3,1],[0,1,2,2],[1,2,1,0]],[[1,2,2,1],[1,3,4,1],[0,1,2,2],[1,2,0,1]],[[1,2,2,2],[1,3,3,1],[0,1,2,2],[1,2,0,1]],[[1,2,3,1],[1,3,3,1],[0,1,2,2],[1,2,0,1]],[[1,3,2,1],[1,3,3,1],[0,1,2,2],[1,2,0,1]],[[2,2,2,1],[1,3,3,1],[0,1,2,2],[1,2,0,1]],[[1,2,2,1],[1,3,4,1],[0,1,2,2],[1,1,2,0]],[[1,2,2,2],[1,3,3,1],[0,1,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,3,1],[0,1,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,3,1],[0,1,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,3,1],[0,1,2,2],[1,1,2,0]],[[1,2,2,1],[1,3,4,1],[0,1,2,2],[1,1,1,1]],[[1,2,2,2],[1,3,3,1],[0,1,2,2],[1,1,1,1]],[[1,2,3,1],[1,3,3,1],[0,1,2,2],[1,1,1,1]],[[1,3,2,1],[1,3,3,1],[0,1,2,2],[1,1,1,1]],[[2,2,2,1],[1,3,3,1],[0,1,2,2],[1,1,1,1]],[[1,2,2,1],[1,3,4,1],[0,1,2,2],[1,0,2,1]],[[1,2,2,2],[1,3,3,1],[0,1,2,2],[1,0,2,1]],[[1,2,3,1],[1,3,3,1],[0,1,2,2],[1,0,2,1]],[[1,3,2,1],[1,3,3,1],[0,1,2,2],[1,0,2,1]],[[2,2,2,1],[1,3,3,1],[0,1,2,2],[1,0,2,1]],[[1,2,2,1],[1,3,4,1],[0,1,1,2],[1,1,2,1]],[[1,2,2,2],[1,3,3,1],[0,1,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,3,1],[0,1,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,3,1],[0,1,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,3,1],[0,1,1,2],[1,1,2,1]],[[1,2,2,1],[1,3,4,1],[0,0,3,2],[1,1,2,0]],[[1,2,2,2],[1,3,3,1],[0,0,3,2],[1,1,2,0]],[[1,2,3,1],[1,3,3,1],[0,0,3,2],[1,1,2,0]],[[1,3,2,1],[1,3,3,1],[0,0,3,2],[1,1,2,0]],[[2,2,2,1],[1,3,3,1],[0,0,3,2],[1,1,2,0]],[[1,2,2,1],[1,3,4,1],[0,0,3,2],[1,1,1,1]],[[1,2,2,2],[1,3,3,1],[0,0,3,2],[1,1,1,1]],[[1,2,3,1],[1,3,3,1],[0,0,3,2],[1,1,1,1]],[[1,3,2,1],[1,3,3,1],[0,0,3,2],[1,1,1,1]],[[2,2,2,1],[1,3,3,1],[0,0,3,2],[1,1,1,1]],[[1,2,2,1],[1,3,4,1],[0,0,3,2],[1,0,2,1]],[[1,2,2,2],[1,3,3,1],[0,0,3,2],[1,0,2,1]],[[1,2,3,1],[1,3,3,1],[0,0,3,2],[1,0,2,1]],[[1,3,2,1],[1,3,3,1],[0,0,3,2],[1,0,2,1]],[[2,2,2,1],[1,3,3,1],[0,0,3,2],[1,0,2,1]],[[1,2,2,1],[1,3,4,1],[0,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,3,3,1],[0,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,3,3,1],[0,0,3,1],[1,2,2,0]],[[1,3,2,1],[1,3,3,1],[0,0,3,1],[1,2,2,0]],[[2,2,2,1],[1,3,3,1],[0,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,3,4,1],[0,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,3,1],[0,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,3,1],[0,0,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,3,1],[0,0,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,3,1],[0,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,3,4,1],[0,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,3,3,1],[0,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,3,1],[0,0,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,3,1],[0,0,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,3,1],[0,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,3,4,1],[0,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,3,1],[0,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,3,1],[0,0,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,3,1],[0,0,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,3,1],[0,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,3,4,1],[0,0,2,2],[1,2,1,1]],[[1,2,2,2],[1,3,3,1],[0,0,2,2],[1,2,1,1]],[[1,2,3,1],[1,3,3,1],[0,0,2,2],[1,2,1,1]],[[1,3,2,1],[1,3,3,1],[0,0,2,2],[1,2,1,1]],[[2,2,2,1],[1,3,3,1],[0,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,3,4,1],[0,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,3,1],[0,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,3,1],[0,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,3,1],[0,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,3,1],[0,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,3,0],[2,3,3,1],[1,0,0,0]],[[0,2,1,1],[1,0,1,2],[1,3,3,3],[1,2,2,1]],[[0,2,1,1],[1,0,1,2],[1,3,3,2],[2,2,2,1]],[[0,2,1,1],[1,0,1,2],[1,3,3,2],[1,3,2,1]],[[0,2,1,1],[1,0,1,2],[1,3,3,2],[1,2,3,1]],[[0,2,1,1],[1,0,1,2],[1,3,3,2],[1,2,2,2]],[[0,2,1,1],[1,0,1,2],[2,3,3,3],[0,2,2,1]],[[0,2,1,1],[1,0,1,2],[2,3,3,2],[0,3,2,1]],[[0,2,1,1],[1,0,1,2],[2,3,3,2],[0,2,3,1]],[[0,2,1,1],[1,0,1,2],[2,3,3,2],[0,2,2,2]],[[0,2,1,2],[1,0,2,2],[1,3,2,2],[1,2,2,1]],[[0,2,1,1],[1,0,2,3],[1,3,2,2],[1,2,2,1]],[[0,2,1,1],[1,0,2,2],[1,3,2,3],[1,2,2,1]],[[0,2,1,1],[1,0,2,2],[1,3,2,2],[2,2,2,1]],[[0,2,1,1],[1,0,2,2],[1,3,2,2],[1,3,2,1]],[[0,2,1,1],[1,0,2,2],[1,3,2,2],[1,2,3,1]],[[0,2,1,1],[1,0,2,2],[1,3,2,2],[1,2,2,2]],[[0,2,1,1],[1,0,2,2],[1,3,4,1],[1,2,2,1]],[[0,2,1,1],[1,0,2,2],[1,3,3,1],[2,2,2,1]],[[0,2,1,1],[1,0,2,2],[1,3,3,1],[1,3,2,1]],[[0,2,1,1],[1,0,2,2],[1,3,3,1],[1,2,3,1]],[[0,2,1,1],[1,0,2,2],[1,3,3,1],[1,2,2,2]],[[0,2,1,2],[1,0,2,2],[1,3,3,2],[1,2,1,1]],[[0,2,1,1],[1,0,2,3],[1,3,3,2],[1,2,1,1]],[[0,2,1,1],[1,0,2,2],[1,3,4,2],[1,2,1,1]],[[0,2,1,1],[1,0,2,2],[1,3,3,3],[1,2,1,1]],[[0,2,1,1],[1,0,2,2],[1,3,3,2],[1,2,1,2]],[[0,2,1,2],[1,0,2,2],[1,3,3,2],[1,2,2,0]],[[0,2,1,1],[1,0,2,3],[1,3,3,2],[1,2,2,0]],[[0,2,1,1],[1,0,2,2],[1,3,4,2],[1,2,2,0]],[[0,2,1,1],[1,0,2,2],[1,3,3,3],[1,2,2,0]],[[0,2,1,1],[1,0,2,2],[1,3,3,2],[2,2,2,0]],[[0,2,1,1],[1,0,2,2],[1,3,3,2],[1,3,2,0]],[[0,2,1,1],[1,0,2,2],[1,3,3,2],[1,2,3,0]],[[0,2,1,2],[1,0,2,2],[2,3,2,2],[0,2,2,1]],[[0,2,1,1],[1,0,2,3],[2,3,2,2],[0,2,2,1]],[[0,2,1,1],[1,0,2,2],[2,3,2,3],[0,2,2,1]],[[0,2,1,1],[1,0,2,2],[2,3,2,2],[0,3,2,1]],[[0,2,1,1],[1,0,2,2],[2,3,2,2],[0,2,3,1]],[[0,2,1,1],[1,0,2,2],[2,3,2,2],[0,2,2,2]],[[0,2,1,1],[1,0,2,2],[2,3,4,1],[0,2,2,1]],[[0,2,1,1],[1,0,2,2],[2,3,3,1],[0,3,2,1]],[[0,2,1,1],[1,0,2,2],[2,3,3,1],[0,2,3,1]],[[0,2,1,1],[1,0,2,2],[2,3,3,1],[0,2,2,2]],[[0,2,1,2],[1,0,2,2],[2,3,3,2],[0,2,1,1]],[[0,2,1,1],[1,0,2,3],[2,3,3,2],[0,2,1,1]],[[0,2,1,1],[1,0,2,2],[2,3,4,2],[0,2,1,1]],[[0,2,1,1],[1,0,2,2],[2,3,3,3],[0,2,1,1]],[[0,2,1,1],[1,0,2,2],[2,3,3,2],[0,2,1,2]],[[0,2,1,2],[1,0,2,2],[2,3,3,2],[0,2,2,0]],[[0,2,1,1],[1,0,2,3],[2,3,3,2],[0,2,2,0]],[[0,2,1,1],[1,0,2,2],[2,3,4,2],[0,2,2,0]],[[0,2,1,1],[1,0,2,2],[2,3,3,3],[0,2,2,0]],[[0,2,1,1],[1,0,2,2],[2,3,3,2],[0,3,2,0]],[[0,2,1,1],[1,0,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,3,1],[1,3,3,0],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[1,3,3,0],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[1,3,3,0],[2,3,3,1],[1,0,0,0]],[[0,2,1,1],[1,0,3,0],[1,3,4,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,0],[1,3,3,2],[2,2,2,1]],[[0,2,1,1],[1,0,3,0],[1,3,3,2],[1,3,2,1]],[[0,2,1,1],[1,0,3,0],[1,3,3,2],[1,2,3,1]],[[0,2,1,1],[1,0,3,0],[1,3,3,2],[1,2,2,2]],[[0,2,1,1],[1,0,3,0],[2,3,4,1],[1,2,2,1]],[[0,2,1,1],[1,0,3,0],[2,3,3,1],[2,2,2,1]],[[0,2,1,1],[1,0,3,0],[2,3,3,1],[1,3,2,1]],[[0,2,1,1],[1,0,3,0],[2,3,3,1],[1,2,3,1]],[[0,2,1,1],[1,0,3,0],[2,3,3,1],[1,2,2,2]],[[0,2,1,1],[1,0,3,0],[2,3,4,2],[0,2,2,1]],[[0,2,1,1],[1,0,3,0],[2,3,3,2],[0,3,2,1]],[[0,2,1,1],[1,0,3,0],[2,3,3,2],[0,2,3,1]],[[0,2,1,1],[1,0,3,0],[2,3,3,2],[0,2,2,2]],[[0,2,1,1],[1,0,3,0],[2,3,4,2],[1,2,2,0]],[[0,2,1,1],[1,0,3,0],[2,3,3,2],[2,2,2,0]],[[0,2,1,1],[1,0,3,0],[2,3,3,2],[1,3,2,0]],[[0,2,1,1],[1,0,3,0],[2,3,3,2],[1,2,3,0]],[[0,2,1,1],[1,0,3,1],[1,3,2,3],[1,2,2,1]],[[0,2,1,1],[1,0,3,1],[1,3,2,2],[2,2,2,1]],[[0,2,1,1],[1,0,3,1],[1,3,2,2],[1,3,2,1]],[[0,2,1,1],[1,0,3,1],[1,3,2,2],[1,2,3,1]],[[0,2,1,1],[1,0,3,1],[1,3,2,2],[1,2,2,2]],[[0,2,1,1],[1,0,3,1],[1,3,4,1],[1,2,2,1]],[[0,2,1,1],[1,0,3,1],[1,3,3,1],[2,2,2,1]],[[0,2,1,1],[1,0,3,1],[1,3,3,1],[1,3,2,1]],[[0,2,1,1],[1,0,3,1],[1,3,3,1],[1,2,3,1]],[[0,2,1,1],[1,0,3,1],[1,3,3,1],[1,2,2,2]],[[0,2,1,1],[1,0,3,1],[1,3,4,2],[1,2,1,1]],[[0,2,1,1],[1,0,3,1],[1,3,3,3],[1,2,1,1]],[[0,2,1,1],[1,0,3,1],[1,3,3,2],[1,2,1,2]],[[0,2,1,1],[1,0,3,1],[1,3,4,2],[1,2,2,0]],[[0,2,1,1],[1,0,3,1],[1,3,3,3],[1,2,2,0]],[[0,2,1,1],[1,0,3,1],[1,3,3,2],[2,2,2,0]],[[0,2,1,1],[1,0,3,1],[1,3,3,2],[1,3,2,0]],[[0,2,1,1],[1,0,3,1],[1,3,3,2],[1,2,3,0]],[[0,2,1,1],[1,0,3,1],[2,3,2,3],[0,2,2,1]],[[0,2,1,1],[1,0,3,1],[2,3,2,2],[0,3,2,1]],[[0,2,1,1],[1,0,3,1],[2,3,2,2],[0,2,3,1]],[[0,2,1,1],[1,0,3,1],[2,3,2,2],[0,2,2,2]],[[0,2,1,1],[1,0,3,1],[2,3,4,1],[0,2,2,1]],[[0,2,1,1],[1,0,3,1],[2,3,3,1],[0,3,2,1]],[[0,2,1,1],[1,0,3,1],[2,3,3,1],[0,2,3,1]],[[0,2,1,1],[1,0,3,1],[2,3,3,1],[0,2,2,2]],[[0,2,1,1],[1,0,3,1],[2,3,4,2],[0,2,1,1]],[[0,2,1,1],[1,0,3,1],[2,3,3,3],[0,2,1,1]],[[0,2,1,1],[1,0,3,1],[2,3,3,2],[0,2,1,2]],[[0,2,1,1],[1,0,3,1],[2,3,4,2],[0,2,2,0]],[[0,2,1,1],[1,0,3,1],[2,3,3,3],[0,2,2,0]],[[0,2,1,1],[1,0,3,1],[2,3,3,2],[0,3,2,0]],[[0,2,1,1],[1,0,3,1],[2,3,3,2],[0,2,3,0]],[[0,2,1,2],[1,0,3,2],[0,2,3,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,3],[0,2,3,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[0,2,3,3],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[0,2,3,2],[1,2,3,1]],[[0,2,1,1],[1,0,3,2],[0,2,3,2],[1,2,2,2]],[[0,2,1,2],[1,0,3,2],[0,3,2,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,3],[0,3,2,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[0,3,2,3],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[0,3,2,2],[1,3,2,1]],[[0,2,1,1],[1,0,3,2],[0,3,2,2],[1,2,3,1]],[[0,2,1,1],[1,0,3,2],[0,3,2,2],[1,2,2,2]],[[0,2,1,1],[1,0,3,2],[0,3,4,1],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[0,3,3,1],[1,3,2,1]],[[0,2,1,1],[1,0,3,2],[0,3,3,1],[1,2,3,1]],[[0,2,1,1],[1,0,3,2],[0,3,3,1],[1,2,2,2]],[[0,2,1,2],[1,0,3,2],[0,3,3,2],[1,2,1,1]],[[0,2,1,1],[1,0,3,3],[0,3,3,2],[1,2,1,1]],[[0,2,1,1],[1,0,3,2],[0,3,4,2],[1,2,1,1]],[[0,2,1,1],[1,0,3,2],[0,3,3,3],[1,2,1,1]],[[0,2,1,1],[1,0,3,2],[0,3,3,2],[1,2,1,2]],[[0,2,1,2],[1,0,3,2],[0,3,3,2],[1,2,2,0]],[[0,2,1,1],[1,0,3,3],[0,3,3,2],[1,2,2,0]],[[0,2,1,1],[1,0,3,2],[0,3,4,2],[1,2,2,0]],[[0,2,1,1],[1,0,3,2],[0,3,3,3],[1,2,2,0]],[[0,2,1,1],[1,0,3,2],[0,3,3,2],[1,3,2,0]],[[0,2,1,1],[1,0,3,2],[0,3,3,2],[1,2,3,0]],[[0,2,1,2],[1,0,3,2],[1,1,3,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,3],[1,1,3,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[1,1,3,3],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[1,1,3,2],[1,2,3,1]],[[0,2,1,1],[1,0,3,2],[1,1,3,2],[1,2,2,2]],[[0,2,1,2],[1,0,3,2],[1,2,2,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,3],[1,2,2,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[1,0,3,2],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[1,0,3,2],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[1,0,3,2],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[1,0,3,2],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[1,0,3,2],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[1,0,3,2],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[1,0,3,2],[1,2,3,1],[1,2,2,2]],[[0,2,1,2],[1,0,3,2],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[1,0,3,3],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[1,0,3,2],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[1,0,3,2],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[1,0,3,2],[1,2,3,2],[1,2,1,2]],[[0,2,1,2],[1,0,3,2],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[1,0,3,3],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[1,0,3,2],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[1,0,3,2],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[1,0,3,2],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[1,0,3,2],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[1,0,3,2],[1,2,3,2],[1,2,3,0]],[[0,2,1,2],[1,0,3,2],[1,3,2,2],[1,1,2,1]],[[0,2,1,1],[1,0,3,3],[1,3,2,2],[1,1,2,1]],[[0,2,1,1],[1,0,3,2],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[1,0,3,2],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[1,0,3,2],[1,3,2,2],[1,1,2,2]],[[0,2,1,1],[1,0,3,2],[1,3,4,0],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,0],[2,2,2,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,0],[1,3,2,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,0],[1,2,3,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,0],[1,2,2,2]],[[0,2,1,1],[1,0,3,2],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,1],[1,1,2,2]],[[0,2,1,1],[1,0,3,2],[1,3,4,1],[1,2,2,0]],[[0,2,1,1],[1,0,3,2],[1,3,3,1],[2,2,2,0]],[[0,2,1,1],[1,0,3,2],[1,3,3,1],[1,3,2,0]],[[0,2,1,1],[1,0,3,2],[1,3,3,1],[1,2,3,0]],[[0,2,1,2],[1,0,3,2],[1,3,3,2],[1,0,2,1]],[[0,2,1,1],[1,0,3,3],[1,3,3,2],[1,0,2,1]],[[0,2,1,1],[1,0,3,2],[1,3,4,2],[1,0,2,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,3],[1,0,2,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,2],[1,0,2,2]],[[0,2,1,2],[1,0,3,2],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[1,0,3,3],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[1,0,3,2],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,2],[1,1,1,2]],[[0,2,1,2],[1,0,3,2],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,0,3,3],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,0,3,2],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[1,0,3,2],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[1,0,3,2],[1,3,3,2],[1,1,3,0]],[[0,2,1,2],[1,0,3,2],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[1,0,3,3],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[1,0,3,2],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[1,0,3,2],[1,3,3,2],[1,2,0,2]],[[0,2,1,2],[1,0,3,2],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[1,0,3,3],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[1,0,3,2],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[1,0,3,2],[1,3,3,3],[1,2,1,0]],[[0,2,1,2],[1,0,3,2],[2,0,3,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,3],[2,0,3,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,0,3,3],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,0,3,2],[1,2,3,1]],[[0,2,1,1],[1,0,3,2],[2,0,3,2],[1,2,2,2]],[[0,2,1,2],[1,0,3,2],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,3],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,1,2,3],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,1,2,2],[2,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,1,2,2],[1,3,2,1]],[[0,2,1,1],[1,0,3,2],[2,1,2,2],[1,2,3,1]],[[0,2,1,1],[1,0,3,2],[2,1,2,2],[1,2,2,2]],[[0,2,1,1],[1,0,3,2],[2,1,4,1],[1,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,1,3,1],[2,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,1,3,1],[1,3,2,1]],[[0,2,1,1],[1,0,3,2],[2,1,3,1],[1,2,3,1]],[[0,2,1,1],[1,0,3,2],[2,1,3,1],[1,2,2,2]],[[0,2,1,2],[1,0,3,2],[2,1,3,2],[0,2,2,1]],[[0,2,1,1],[1,0,3,3],[2,1,3,2],[0,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,1,3,3],[0,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,1,3,2],[0,2,3,1]],[[0,2,1,1],[1,0,3,2],[2,1,3,2],[0,2,2,2]],[[0,2,1,2],[1,0,3,2],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,0,3,3],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,0,3,2],[2,1,4,2],[1,2,1,1]],[[0,2,1,1],[1,0,3,2],[2,1,3,3],[1,2,1,1]],[[0,2,1,1],[1,0,3,2],[2,1,3,2],[1,2,1,2]],[[0,2,1,2],[1,0,3,2],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,0,3,3],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,0,3,2],[2,1,4,2],[1,2,2,0]],[[0,2,1,1],[1,0,3,2],[2,1,3,3],[1,2,2,0]],[[0,2,1,1],[1,0,3,2],[2,1,3,2],[2,2,2,0]],[[0,2,1,1],[1,0,3,2],[2,1,3,2],[1,3,2,0]],[[0,2,1,1],[1,0,3,2],[2,1,3,2],[1,2,3,0]],[[0,2,1,2],[1,0,3,2],[2,2,2,2],[0,2,2,1]],[[0,2,1,1],[1,0,3,3],[2,2,2,2],[0,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[1,0,3,2],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[1,0,3,2],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[1,0,3,2],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[1,0,3,2],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[1,0,3,2],[2,2,3,1],[0,2,2,2]],[[0,2,1,2],[1,0,3,2],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[1,0,3,3],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[1,0,3,2],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[1,0,3,2],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[1,0,3,2],[2,2,3,2],[0,2,1,2]],[[0,2,1,2],[1,0,3,2],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[1,0,3,3],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[1,0,3,2],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[1,0,3,2],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[1,0,3,2],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[1,0,3,2],[2,2,3,2],[0,2,3,0]],[[0,2,1,2],[1,0,3,2],[2,3,2,2],[0,1,2,1]],[[0,2,1,1],[1,0,3,3],[2,3,2,2],[0,1,2,1]],[[0,2,1,1],[1,0,3,2],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[1,0,3,2],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[1,0,3,2],[2,3,2,2],[0,1,2,2]],[[0,2,1,2],[1,0,3,2],[2,3,2,2],[1,0,2,1]],[[0,2,1,1],[1,0,3,3],[2,3,2,2],[1,0,2,1]],[[0,2,1,1],[1,0,3,2],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[1,0,3,2],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[1,0,3,2],[2,3,2,2],[1,0,2,2]],[[0,2,1,1],[1,0,3,2],[2,3,4,0],[0,2,2,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,0],[0,3,2,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,0],[0,2,3,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,0],[0,2,2,2]],[[0,2,1,1],[1,0,3,2],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,1],[0,1,2,2]],[[0,2,1,1],[1,0,3,2],[2,3,4,1],[0,2,2,0]],[[0,2,1,1],[1,0,3,2],[2,3,3,1],[0,3,2,0]],[[0,2,1,1],[1,0,3,2],[2,3,3,1],[0,2,3,0]],[[0,2,1,1],[1,0,3,2],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,1],[1,0,2,2]],[[0,2,1,2],[1,0,3,2],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[1,0,3,3],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[1,0,3,2],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,2],[0,0,2,2]],[[0,2,1,2],[1,0,3,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,0,3,3],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,0,3,2],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,2],[0,1,1,2]],[[0,2,1,2],[1,0,3,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,0,3,3],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,0,3,2],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[1,0,3,2],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[1,0,3,2],[2,3,3,2],[0,1,3,0]],[[0,2,1,2],[1,0,3,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,0,3,3],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,0,3,2],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,2],[0,2,0,2]],[[0,2,1,2],[1,0,3,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,0,3,3],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,0,3,2],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[1,0,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,4,3,0],[2,3,3,0],[1,0,1,0]],[[1,2,3,1],[1,3,3,0],[2,3,3,0],[1,0,1,0]],[[1,3,2,1],[1,3,3,0],[2,3,3,0],[1,0,1,0]],[[2,2,2,1],[1,3,3,0],[2,3,3,0],[1,0,1,0]],[[0,2,1,2],[1,0,3,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,0,3,3],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,0,3,2],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,2],[1,0,1,2]],[[0,2,1,2],[1,0,3,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,0,3,3],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,0,3,2],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[1,0,3,2],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[1,0,3,2],[2,3,3,2],[1,0,3,0]],[[0,2,1,2],[1,0,3,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,0,3,3],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,0,3,2],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[1,0,3,2],[2,3,3,2],[1,1,0,2]],[[0,2,1,2],[1,0,3,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,0,3,3],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,0,3,2],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[1,0,3,2],[2,3,3,3],[1,1,1,0]],[[0,2,1,1],[1,1,1,2],[0,3,3,3],[1,2,2,1]],[[0,2,1,1],[1,1,1,2],[0,3,3,2],[1,3,2,1]],[[0,2,1,1],[1,1,1,2],[0,3,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,1,2],[0,3,3,2],[1,2,2,2]],[[0,2,1,1],[1,1,1,2],[1,2,3,3],[1,2,2,1]],[[0,2,1,1],[1,1,1,2],[1,2,3,2],[2,2,2,1]],[[0,2,1,1],[1,1,1,2],[1,2,3,2],[1,3,2,1]],[[0,2,1,1],[1,1,1,2],[1,2,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,1,2],[1,2,3,2],[1,2,2,2]],[[0,2,1,1],[1,1,1,2],[1,3,3,3],[1,1,2,1]],[[0,2,1,1],[1,1,1,2],[1,3,3,2],[1,1,3,1]],[[0,2,1,1],[1,1,1,2],[1,3,3,2],[1,1,2,2]],[[0,2,1,1],[1,1,1,2],[2,1,3,3],[1,2,2,1]],[[0,2,1,1],[1,1,1,2],[2,1,3,2],[2,2,2,1]],[[0,2,1,1],[1,1,1,2],[2,1,3,2],[1,3,2,1]],[[0,2,1,1],[1,1,1,2],[2,1,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,1,2],[2,1,3,2],[1,2,2,2]],[[0,2,1,1],[1,1,1,2],[2,2,3,3],[0,2,2,1]],[[0,2,1,1],[1,1,1,2],[2,2,3,2],[0,3,2,1]],[[0,2,1,1],[1,1,1,2],[2,2,3,2],[0,2,3,1]],[[0,2,1,1],[1,1,1,2],[2,2,3,2],[0,2,2,2]],[[0,2,1,1],[1,1,1,2],[2,3,3,3],[0,1,2,1]],[[0,2,1,1],[1,1,1,2],[2,3,3,2],[0,1,3,1]],[[0,2,1,1],[1,1,1,2],[2,3,3,2],[0,1,2,2]],[[0,2,1,1],[1,1,1,2],[2,3,3,3],[1,0,2,1]],[[0,2,1,1],[1,1,1,2],[2,3,3,2],[1,0,3,1]],[[0,2,1,1],[1,1,1,2],[2,3,3,2],[1,0,2,2]],[[0,2,1,2],[1,1,2,2],[0,2,3,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,3],[0,2,3,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[0,2,3,3],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[0,2,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[0,2,3,2],[1,2,2,2]],[[0,2,1,2],[1,1,2,2],[0,3,2,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,3],[0,3,2,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[0,3,2,3],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[0,3,2,2],[1,3,2,1]],[[0,2,1,1],[1,1,2,2],[0,3,2,2],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[0,3,2,2],[1,2,2,2]],[[0,2,1,1],[1,1,2,2],[0,3,4,1],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[0,3,3,1],[1,3,2,1]],[[0,2,1,1],[1,1,2,2],[0,3,3,1],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[0,3,3,1],[1,2,2,2]],[[0,2,1,2],[1,1,2,2],[0,3,3,2],[1,2,1,1]],[[0,2,1,1],[1,1,2,3],[0,3,3,2],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[0,3,4,2],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[0,3,3,3],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[0,3,3,2],[1,2,1,2]],[[0,2,1,2],[1,1,2,2],[0,3,3,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,3],[0,3,3,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[0,3,4,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[0,3,3,3],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[0,3,3,2],[1,3,2,0]],[[0,2,1,1],[1,1,2,2],[0,3,3,2],[1,2,3,0]],[[0,2,1,2],[1,1,2,2],[1,1,3,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,3],[1,1,3,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,1,3,3],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,1,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[1,1,3,2],[1,2,2,2]],[[0,2,1,2],[1,1,2,2],[1,2,2,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,3],[1,2,2,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[1,1,2,2],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[1,1,2,2],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[1,1,2,2],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[1,2,3,1],[1,2,2,2]],[[0,2,1,2],[1,1,2,2],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[1,1,2,3],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[1,2,3,2],[1,2,1,2]],[[0,2,1,2],[1,1,2,2],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,3],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[1,1,2,2],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[1,1,2,2],[1,2,3,2],[1,2,3,0]],[[0,2,1,2],[1,1,2,2],[1,3,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,3],[1,3,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,1,3],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[1,3,1,2],[1,2,2,2]],[[0,2,1,1],[1,1,2,2],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[1,3,2,1],[1,2,2,2]],[[0,2,1,2],[1,1,2,2],[1,3,2,2],[1,1,2,1]],[[0,2,1,1],[1,1,2,3],[1,3,2,2],[1,1,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[1,1,2,2],[1,3,2,2],[1,1,2,2]],[[0,2,1,1],[1,1,2,2],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[1,1,2,2],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[1,1,2,2],[1,3,2,2],[1,2,3,0]],[[0,2,1,1],[1,1,2,2],[1,4,3,1],[1,1,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,1],[1,1,2,2]],[[0,2,1,1],[1,1,2,2],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[1,3,4,1],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,1],[1,3,1,1]],[[0,2,1,2],[1,1,2,2],[1,3,3,2],[1,0,2,1]],[[0,2,1,1],[1,1,2,3],[1,3,3,2],[1,0,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,4,2],[1,0,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,3],[1,0,2,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,2],[1,0,2,2]],[[0,2,1,2],[1,1,2,2],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[1,1,2,3],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[1,1,2,2],[1,4,3,2],[1,1,1,1]],[[0,2,1,1],[1,1,2,2],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,2],[1,1,1,2]],[[0,2,1,2],[1,1,2,2],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,1,2,3],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,1,2,2],[1,4,3,2],[1,1,2,0]],[[0,2,1,1],[1,1,2,2],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[1,1,2,2],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[1,1,2,2],[1,3,3,2],[1,1,3,0]],[[0,2,1,2],[1,1,2,2],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[1,1,2,3],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[1,1,2,2],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[1,1,2,2],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[1,1,2,2],[1,3,3,2],[1,2,0,2]],[[0,2,1,2],[1,1,2,2],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[1,1,2,3],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[1,1,2,2],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[1,1,2,2],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[1,1,2,2],[1,3,3,3],[1,2,1,0]],[[0,2,1,1],[1,1,2,2],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[1,1,2,2],[1,3,3,2],[1,3,1,0]],[[0,2,1,2],[1,1,2,2],[2,0,3,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,3],[2,0,3,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,0,3,3],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,0,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[2,0,3,2],[1,2,2,2]],[[0,2,1,2],[1,1,2,2],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,3],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[3,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,1,2,3],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,1,2,2],[2,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,1,2,2],[1,3,2,1]],[[0,2,1,1],[1,1,2,2],[2,1,2,2],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[2,1,2,2],[1,2,2,2]],[[0,2,1,1],[1,1,2,2],[3,1,3,1],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,1,4,1],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,1,3,1],[2,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,1,3,1],[1,3,2,1]],[[0,2,1,1],[1,1,2,2],[2,1,3,1],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[2,1,3,1],[1,2,2,2]],[[0,2,1,2],[1,1,2,2],[2,1,3,2],[0,2,2,1]],[[0,2,1,1],[1,1,2,3],[2,1,3,2],[0,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,1,3,3],[0,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,1,3,2],[0,2,3,1]],[[0,2,1,1],[1,1,2,2],[2,1,3,2],[0,2,2,2]],[[0,2,1,2],[1,1,2,2],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,1,2,3],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[2,1,4,2],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[2,1,3,3],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[2,1,3,2],[1,2,1,2]],[[0,2,1,2],[1,1,2,2],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,3],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[3,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[2,1,4,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[2,1,3,3],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[2,1,3,2],[2,2,2,0]],[[0,2,1,1],[1,1,2,2],[2,1,3,2],[1,3,2,0]],[[0,2,1,1],[1,1,2,2],[2,1,3,2],[1,2,3,0]],[[0,2,1,2],[1,1,2,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,3],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[3,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,1,3],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[2,2,1,2],[1,2,2,2]],[[0,2,1,1],[1,1,2,2],[3,2,2,1],[1,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,2,1],[2,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,2,1],[1,3,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,2,1],[1,2,3,1]],[[0,2,1,1],[1,1,2,2],[2,2,2,1],[1,2,2,2]],[[0,2,1,2],[1,1,2,2],[2,2,2,2],[0,2,2,1]],[[0,2,1,1],[1,1,2,3],[2,2,2,2],[0,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[1,1,2,2],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[1,1,2,2],[3,2,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,2,2],[2,2,2,2],[2,2,2,0]],[[0,2,1,1],[1,1,2,2],[2,2,2,2],[1,3,2,0]],[[0,2,1,1],[1,1,2,2],[2,2,2,2],[1,2,3,0]],[[0,2,1,1],[1,1,2,2],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[1,1,2,2],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[1,1,2,2],[2,2,3,1],[0,2,2,2]],[[0,2,1,1],[1,1,2,2],[3,2,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,2,2],[2,2,3,1],[2,2,1,1]],[[0,2,1,1],[1,1,2,2],[2,2,3,1],[1,3,1,1]],[[0,2,1,2],[1,1,2,2],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[1,1,2,3],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[1,1,2,2],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[1,1,2,2],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[1,1,2,2],[2,2,3,2],[0,2,1,2]],[[0,2,1,2],[1,1,2,2],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[1,1,2,3],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[1,1,2,2],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[1,1,2,2],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[1,1,2,2],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[1,1,2,2],[2,2,3,2],[0,2,3,0]],[[0,2,1,1],[1,1,2,2],[3,2,3,2],[1,2,0,1]],[[0,2,1,1],[1,1,2,2],[2,2,3,2],[2,2,0,1]],[[0,2,1,1],[1,1,2,2],[2,2,3,2],[1,3,0,1]],[[0,2,1,1],[1,1,2,2],[3,2,3,2],[1,2,1,0]],[[0,2,1,1],[1,1,2,2],[2,2,3,2],[2,2,1,0]],[[0,2,1,1],[1,1,2,2],[2,2,3,2],[1,3,1,0]],[[0,2,1,2],[1,1,2,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,1,2,3],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,1,2,2],[3,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,1,3],[0,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[1,1,2,2],[2,3,1,2],[0,2,2,2]],[[0,2,1,1],[1,1,2,2],[3,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,1,2,2],[2,4,1,2],[1,1,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,1,2],[2,1,2,1]],[[0,2,1,1],[1,1,2,2],[3,3,2,1],[0,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[1,1,2,2],[2,3,2,1],[0,2,2,2]],[[0,2,1,1],[1,1,2,2],[3,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,1,2,2],[2,4,2,1],[1,1,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,2,1],[2,1,2,1]],[[0,2,1,2],[1,1,2,2],[2,3,2,2],[0,1,2,1]],[[0,2,1,1],[1,1,2,3],[2,3,2,2],[0,1,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[1,1,2,2],[2,3,2,2],[0,1,2,2]],[[0,2,1,1],[1,1,2,2],[3,3,2,2],[0,2,2,0]],[[0,2,1,1],[1,1,2,2],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[1,1,2,2],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[1,1,2,2],[2,3,2,2],[0,2,3,0]],[[0,2,1,2],[1,1,2,2],[2,3,2,2],[1,0,2,1]],[[0,2,1,1],[1,1,2,3],[2,3,2,2],[1,0,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[1,1,2,2],[2,3,2,2],[1,0,2,2]],[[0,2,1,1],[1,1,2,2],[3,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,1,2,2],[2,4,2,2],[1,1,2,0]],[[0,2,1,1],[1,1,2,2],[2,3,2,2],[2,1,2,0]],[[0,2,1,1],[1,1,2,2],[3,3,3,1],[0,1,2,1]],[[0,2,1,1],[1,1,2,2],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,1],[0,1,2,2]],[[0,2,1,1],[1,1,2,2],[3,3,3,1],[0,2,1,1]],[[0,2,1,1],[1,1,2,2],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[1,1,2,2],[2,3,4,1],[0,2,1,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,1],[0,3,1,1]],[[0,2,1,1],[1,1,2,2],[3,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,1,2,2],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,1],[2,0,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,1],[1,0,2,2]],[[0,2,1,1],[1,1,2,2],[3,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,1,2,2],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[1,1,2,2],[2,3,4,1],[1,1,1,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[1,4,3,0],[2,3,2,1],[1,0,1,0]],[[1,2,3,1],[1,3,3,0],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[1,3,3,0],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[1,3,3,0],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[1,4,3,0],[2,3,2,1],[1,0,0,1]],[[1,2,3,1],[1,3,3,0],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[1,3,3,0],[2,3,2,1],[1,0,0,1]],[[0,2,1,2],[1,1,2,2],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[1,1,2,3],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[0,0,2,2]],[[0,2,1,2],[1,1,2,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,1,2,3],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,1,2,2],[3,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,1,2,2],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[1,1,2,2],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[0,1,1,2]],[[0,2,1,2],[1,1,2,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,1,2,3],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,1,2,2],[3,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,1,2,2],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[1,1,2,2],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[1,1,2,2],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[0,1,3,0]],[[0,2,1,2],[1,1,2,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,1,2,3],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,1,2,2],[3,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,1,2,2],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[1,1,2,2],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[0,2,0,2]],[[0,2,1,2],[1,1,2,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,1,2,3],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,1,2,2],[3,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,1,2,2],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[1,1,2,2],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[1,1,2,2],[2,3,3,3],[0,2,1,0]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[0,3,1,0]],[[2,2,2,1],[1,3,3,0],[2,3,2,1],[1,0,0,1]],[[0,2,1,2],[1,1,2,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,1,2,3],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,1,2,2],[3,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,1,2,2],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[1,1,2,2],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[2,0,1,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[1,0,1,2]],[[0,2,1,2],[1,1,2,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,1,2,3],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,1,2,2],[3,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,1,2,2],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[1,1,2,2],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[1,1,2,2],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[2,0,2,0]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[1,0,3,0]],[[0,2,1,2],[1,1,2,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,1,2,3],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,1,2,2],[3,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,1,2,2],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[1,1,2,2],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[2,1,0,1]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[1,1,0,2]],[[0,2,1,2],[1,1,2,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,1,2,3],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,1,2,2],[3,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,1,2,2],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[1,1,2,2],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[1,1,2,2],[2,3,3,3],[1,1,1,0]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[2,1,1,0]],[[0,2,1,1],[1,1,2,2],[3,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,1,2,2],[2,4,3,2],[1,2,0,0]],[[0,2,1,1],[1,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,4,3,0],[2,3,2,0],[1,2,0,0]],[[1,2,3,1],[1,3,3,0],[2,3,2,0],[1,2,0,0]],[[1,3,2,1],[1,3,3,0],[2,3,2,0],[1,2,0,0]],[[2,2,2,1],[1,3,3,0],[2,3,2,0],[1,2,0,0]],[[0,2,1,1],[1,1,3,0],[0,3,4,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,0],[0,3,3,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,0],[0,3,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,0],[0,3,3,2],[1,2,2,2]],[[0,2,1,1],[1,1,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,1,1],[1,1,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,1,1],[1,1,3,0],[1,3,4,1],[1,2,2,1]],[[0,2,1,1],[1,1,3,0],[1,3,3,1],[2,2,2,1]],[[0,2,1,1],[1,1,3,0],[1,3,3,1],[1,3,2,1]],[[0,2,1,1],[1,1,3,0],[1,3,3,1],[1,2,3,1]],[[0,2,1,1],[1,1,3,0],[1,3,3,1],[1,2,2,2]],[[0,2,1,1],[1,1,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,1,1],[1,1,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,1,1],[1,1,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,1,1],[1,1,3,0],[1,3,4,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,0],[1,3,3,2],[2,2,2,0]],[[0,2,1,1],[1,1,3,0],[1,3,3,2],[1,3,2,0]],[[0,2,1,1],[1,1,3,0],[1,3,3,2],[1,2,3,0]],[[0,2,1,1],[1,1,3,0],[2,1,4,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,0],[2,1,3,2],[2,2,2,1]],[[0,2,1,1],[1,1,3,0],[2,1,3,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,0],[2,1,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,0],[2,1,3,2],[1,2,2,2]],[[0,2,1,1],[1,1,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,1,1],[1,1,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,1,1],[1,1,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,1,1],[1,1,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,1,1],[1,1,3,0],[2,3,4,1],[0,2,2,1]],[[0,2,1,1],[1,1,3,0],[2,3,3,1],[0,3,2,1]],[[0,2,1,1],[1,1,3,0],[2,3,3,1],[0,2,3,1]],[[0,2,1,1],[1,1,3,0],[2,3,3,1],[0,2,2,2]],[[0,2,1,1],[1,1,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,1,1],[1,1,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,1,1],[1,1,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,1,1],[1,1,3,0],[2,3,4,2],[0,2,2,0]],[[0,2,1,1],[1,1,3,0],[2,3,3,2],[0,3,2,0]],[[0,2,1,1],[1,1,3,0],[2,3,3,2],[0,2,3,0]],[[0,2,1,1],[1,1,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,1,1],[1,1,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,1,1],[1,1,3,0],[2,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,4,3,0],[2,3,2,0],[1,1,1,0]],[[0,2,1,1],[1,1,3,1],[0,2,3,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[0,2,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[0,2,3,2],[1,2,2,2]],[[0,2,1,1],[1,1,3,1],[0,3,2,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[0,3,2,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,1],[0,3,2,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[0,3,2,2],[1,2,2,2]],[[0,2,1,1],[1,1,4,1],[0,3,3,1],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[0,3,4,1],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[0,3,3,1],[1,3,2,1]],[[0,2,1,1],[1,1,3,1],[0,3,3,1],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[0,3,3,1],[1,2,2,2]],[[0,2,1,1],[1,1,4,1],[0,3,3,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[0,3,4,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[0,3,3,3],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[0,3,3,2],[1,2,1,2]],[[0,2,1,1],[1,1,4,1],[0,3,3,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[0,3,4,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[0,3,3,3],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[0,3,3,2],[1,3,2,0]],[[0,2,1,1],[1,1,3,1],[0,3,3,2],[1,2,3,0]],[[0,2,1,1],[1,1,3,1],[1,1,3,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[1,1,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[1,1,3,2],[1,2,2,2]],[[0,2,1,1],[1,1,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[1,1,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[1,1,4,1],[1,2,3,1],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[1,1,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[1,1,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[1,2,3,1],[1,2,2,2]],[[0,2,1,1],[1,1,4,1],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[1,2,3,2],[1,2,1,2]],[[0,2,1,1],[1,1,4,1],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[1,1,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[1,1,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,1,1],[1,1,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,1,1],[1,1,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,1,1],[1,1,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[1,1,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,1,1],[1,1,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[1,1,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[1,1,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,1,1],[1,1,4,1],[1,3,3,1],[1,1,2,1]],[[0,2,1,1],[1,1,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,1],[1,1,2,2]],[[0,2,1,1],[1,1,4,1],[1,3,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,1,1],[1,1,4,1],[1,3,3,2],[1,0,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,4,2],[1,0,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,3],[1,0,2,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,2],[1,0,2,2]],[[0,2,1,1],[1,1,4,1],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[1,1,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,1,1],[1,1,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,2],[1,1,1,2]],[[0,2,1,1],[1,1,4,1],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,1,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,1,1],[1,1,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[1,1,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[1,1,3,1],[1,3,3,2],[1,1,3,0]],[[0,2,1,1],[1,1,4,1],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[1,1,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[1,1,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[1,1,3,1],[1,3,3,2],[1,2,0,2]],[[0,2,1,1],[1,1,4,1],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[1,1,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[1,1,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[1,1,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,1,1],[1,1,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[1,1,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,3,1],[1,3,3,0],[2,3,2,0],[1,1,1,0]],[[1,3,2,1],[1,3,3,0],[2,3,2,0],[1,1,1,0]],[[2,2,2,1],[1,3,3,0],[2,3,2,0],[1,1,1,0]],[[0,2,1,1],[1,1,3,1],[2,0,3,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,0,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[2,0,3,2],[1,2,2,2]],[[0,2,1,1],[1,1,3,1],[3,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,1,2,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,1,2,2],[2,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,1,2,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,1],[2,1,2,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[2,1,2,2],[1,2,2,2]],[[0,2,1,1],[1,1,4,1],[2,1,3,1],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[3,1,3,1],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,1,4,1],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,1,3,1],[2,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,1,3,1],[1,3,2,1]],[[0,2,1,1],[1,1,3,1],[2,1,3,1],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[2,1,3,1],[1,2,2,2]],[[0,2,1,1],[1,1,3,1],[2,1,3,3],[0,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,1,3,2],[0,2,3,1]],[[0,2,1,1],[1,1,3,1],[2,1,3,2],[0,2,2,2]],[[0,2,1,1],[1,1,4,1],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[2,1,4,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[2,1,3,3],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[2,1,3,2],[1,2,1,2]],[[0,2,1,1],[1,1,4,1],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[3,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[2,1,4,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[2,1,3,3],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[2,1,3,2],[2,2,2,0]],[[0,2,1,1],[1,1,3,1],[2,1,3,2],[1,3,2,0]],[[0,2,1,1],[1,1,3,1],[2,1,3,2],[1,2,3,0]],[[0,2,1,1],[1,1,3,1],[3,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,1,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[2,2,1,2],[1,2,2,2]],[[0,2,1,1],[1,1,3,1],[3,2,2,1],[1,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,2,1],[2,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,2,1],[1,3,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,2,1],[1,2,3,1]],[[0,2,1,1],[1,1,3,1],[2,2,2,1],[1,2,2,2]],[[0,2,1,1],[1,1,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[1,1,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[1,1,3,1],[3,2,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,1],[2,2,2,2],[2,2,2,0]],[[0,2,1,1],[1,1,3,1],[2,2,2,2],[1,3,2,0]],[[0,2,1,1],[1,1,3,1],[2,2,2,2],[1,2,3,0]],[[0,2,1,1],[1,1,4,1],[2,2,3,1],[0,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[1,1,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[1,1,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,1,1],[1,1,3,1],[3,2,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,3,1],[2,2,3,1],[2,2,1,1]],[[0,2,1,1],[1,1,3,1],[2,2,3,1],[1,3,1,1]],[[0,2,1,1],[1,1,4,1],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[1,1,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[1,1,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[1,1,3,1],[2,2,3,2],[0,2,1,2]],[[0,2,1,1],[1,1,4,1],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[1,1,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[1,1,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[1,1,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[1,1,3,1],[2,2,3,2],[0,2,3,0]],[[0,2,1,1],[1,1,3,1],[3,2,3,2],[1,2,0,1]],[[0,2,1,1],[1,1,3,1],[2,2,3,2],[2,2,0,1]],[[0,2,1,1],[1,1,3,1],[2,2,3,2],[1,3,0,1]],[[0,2,1,1],[1,1,3,1],[3,2,3,2],[1,2,1,0]],[[0,2,1,1],[1,1,3,1],[2,2,3,2],[2,2,1,0]],[[0,2,1,1],[1,1,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,4,3,0],[2,3,2,0],[1,0,1,1]],[[1,2,3,1],[1,3,3,0],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[1,3,3,0],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[1,3,3,0],[2,3,2,0],[1,0,1,1]],[[0,2,1,1],[1,1,3,1],[3,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[1,1,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,1,1],[1,1,3,1],[3,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,1,3,1],[2,4,1,2],[1,1,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,1,2],[2,1,2,1]],[[0,2,1,1],[1,1,3,1],[3,3,2,1],[0,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[1,1,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,1,1],[1,1,3,1],[3,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,1,3,1],[2,4,2,1],[1,1,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,2,1],[2,1,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[1,1,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,1,1],[1,1,3,1],[3,3,2,2],[0,2,2,0]],[[0,2,1,1],[1,1,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[1,1,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[1,1,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,1,1],[1,1,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[1,1,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,1,1],[1,1,3,1],[3,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,1,3,1],[2,4,2,2],[1,1,2,0]],[[0,2,1,1],[1,1,3,1],[2,3,2,2],[2,1,2,0]],[[0,2,1,1],[1,1,4,1],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[1,1,3,1],[3,3,3,1],[0,1,2,1]],[[0,2,1,1],[1,1,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,1],[0,1,2,2]],[[0,2,1,1],[1,1,4,1],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[1,1,3,1],[3,3,3,1],[0,2,1,1]],[[0,2,1,1],[1,1,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[1,1,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,1],[0,3,1,1]],[[0,2,1,1],[1,1,4,1],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,1,3,1],[3,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,1,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,1],[2,0,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,1],[1,0,2,2]],[[0,2,1,1],[1,1,4,1],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,1,3,1],[3,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,1,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[1,1,3,1],[2,3,4,1],[1,1,1,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[1,4,3,0],[2,3,2,0],[0,2,1,0]],[[1,2,3,1],[1,3,3,0],[2,3,2,0],[0,2,1,0]],[[1,3,2,1],[1,3,3,0],[2,3,2,0],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[2,3,2,0],[0,2,1,0]],[[0,2,1,1],[1,1,4,1],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[0,0,2,2]],[[0,2,1,1],[1,1,4,1],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,1,3,1],[3,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,1,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[1,1,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[0,1,1,2]],[[0,2,1,1],[1,1,4,1],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,1,3,1],[3,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,1,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[1,1,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[1,1,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[0,1,3,0]],[[0,2,1,1],[1,1,4,1],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,1,3,1],[3,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,1,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[1,1,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[0,2,0,2]],[[0,2,1,1],[1,1,4,1],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,1,3,1],[3,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,1,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[1,1,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[1,1,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[0,3,1,0]],[[0,2,1,1],[1,1,4,1],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,1,3,1],[3,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,1,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[1,1,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[2,0,1,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[1,0,1,2]],[[0,2,1,1],[1,1,4,1],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,1,3,1],[3,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,1,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[1,1,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[1,1,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[2,0,2,0]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[1,0,3,0]],[[0,2,1,1],[1,1,4,1],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,1,3,1],[3,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,1,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[1,1,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[2,1,0,1]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[1,1,0,2]],[[0,2,1,1],[1,1,4,1],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,1,3,1],[3,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,1,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[1,1,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[1,1,3,1],[2,3,3,3],[1,1,1,0]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[2,1,1,0]],[[0,2,1,1],[1,1,3,1],[3,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,1,3,1],[2,4,3,2],[1,2,0,0]],[[0,2,1,1],[1,1,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,4,3,0],[2,3,1,1],[1,2,0,0]],[[1,2,3,1],[1,3,3,0],[2,3,1,1],[1,2,0,0]],[[1,3,2,1],[1,3,3,0],[2,3,1,1],[1,2,0,0]],[[2,2,2,1],[1,3,3,0],[2,3,1,1],[1,2,0,0]],[[0,2,1,2],[1,1,3,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,4,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,3],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[0,3,1,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[0,3,1,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,2],[0,3,1,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,2],[0,3,1,2],[1,2,2,2]],[[0,2,1,2],[1,1,3,2],[0,3,2,2],[1,2,1,1]],[[0,2,1,1],[1,1,4,2],[0,3,2,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,3],[0,3,2,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[0,3,2,3],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[0,3,2,2],[1,2,1,2]],[[0,2,1,2],[1,1,3,2],[0,3,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,4,2],[0,3,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,3],[0,3,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[0,3,2,3],[1,2,2,0]],[[0,2,1,2],[1,1,3,2],[0,3,3,0],[1,2,2,1]],[[0,2,1,1],[1,1,4,2],[0,3,3,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,3],[0,3,3,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[0,3,4,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[0,3,3,0],[1,3,2,1]],[[0,2,1,1],[1,1,3,2],[0,3,3,0],[1,2,3,1]],[[0,2,1,1],[1,1,3,2],[0,3,3,0],[1,2,2,2]],[[0,2,1,2],[1,1,3,2],[0,3,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,4,2],[0,3,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,3,3],[0,3,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[0,3,4,1],[1,2,1,1]],[[0,2,1,2],[1,1,3,2],[0,3,3,1],[1,2,2,0]],[[0,2,1,1],[1,1,4,2],[0,3,3,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,3],[0,3,3,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[0,3,4,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[0,3,3,1],[1,3,2,0]],[[0,2,1,1],[1,1,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,1],[1,4,3,0],[2,3,1,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,0],[2,3,1,1],[1,1,1,0]],[[0,2,1,2],[1,1,3,2],[1,0,3,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,3],[1,0,3,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,0,3,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,0,3,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,2],[1,0,3,2],[1,2,2,2]],[[0,2,1,2],[1,1,3,2],[1,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,4,2],[1,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,3],[1,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,2,1,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,2,1,2],[2,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,2,1,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,2],[1,2,1,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,2],[1,2,1,2],[1,2,2,2]],[[0,2,1,2],[1,1,3,2],[1,2,2,2],[1,2,1,1]],[[0,2,1,1],[1,1,4,2],[1,2,2,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,3],[1,2,2,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[1,2,2,3],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[1,2,2,2],[1,2,1,2]],[[0,2,1,2],[1,1,3,2],[1,2,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,4,2],[1,2,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,3],[1,2,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[1,2,2,3],[1,2,2,0]],[[0,2,1,2],[1,1,3,2],[1,2,3,0],[1,2,2,1]],[[0,2,1,1],[1,1,4,2],[1,2,3,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,3],[1,2,3,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,1,1],[1,1,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,1,1],[1,1,3,2],[1,2,3,0],[1,2,2,2]],[[0,2,1,2],[1,1,3,2],[1,2,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,4,2],[1,2,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,3,3],[1,2,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[1,2,4,1],[1,2,1,1]],[[0,2,1,2],[1,1,3,2],[1,2,3,1],[1,2,2,0]],[[0,2,1,1],[1,1,4,2],[1,2,3,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,3],[1,2,3,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,1,1],[1,1,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,1,1],[1,1,3,2],[1,2,3,1],[1,2,3,0]],[[1,3,2,1],[1,3,3,0],[2,3,1,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,0],[2,3,1,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,0],[2,3,1,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,0],[2,3,1,1],[1,1,0,1]],[[1,3,2,1],[1,3,3,0],[2,3,1,1],[1,1,0,1]],[[2,2,2,1],[1,3,3,0],[2,3,1,1],[1,1,0,1]],[[0,2,1,2],[1,1,3,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[1,1,4,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,3],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,4,0,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,0,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,0,2],[2,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,0,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,0,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,2],[1,3,0,2],[1,2,2,2]],[[0,2,1,2],[1,1,3,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,1,4,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,1,3,3],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,1,3],[1,1,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,1,2],[1,1,3,1]],[[0,2,1,1],[1,1,3,2],[1,3,1,2],[1,1,2,2]],[[0,2,1,1],[1,1,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,1,1],[1,1,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,1,1],[1,1,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,1,1],[1,1,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,1,1],[1,1,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,1,2],[1,1,3,2],[1,3,2,2],[1,0,2,1]],[[0,2,1,1],[1,1,4,2],[1,3,2,2],[1,0,2,1]],[[0,2,1,1],[1,1,3,3],[1,3,2,2],[1,0,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,2,3],[1,0,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,2,2],[1,0,2,2]],[[0,2,1,2],[1,1,3,2],[1,3,2,2],[1,1,1,1]],[[0,2,1,1],[1,1,4,2],[1,3,2,2],[1,1,1,1]],[[0,2,1,1],[1,1,3,3],[1,3,2,2],[1,1,1,1]],[[0,2,1,1],[1,1,3,2],[1,3,2,3],[1,1,1,1]],[[0,2,1,1],[1,1,3,2],[1,3,2,2],[1,1,1,2]],[[0,2,1,2],[1,1,3,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,1,4,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,1,3,3],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,1,3,2],[1,3,2,3],[1,1,2,0]],[[0,2,1,2],[1,1,3,2],[1,3,2,2],[1,2,0,1]],[[0,2,1,1],[1,1,4,2],[1,3,2,2],[1,2,0,1]],[[0,2,1,1],[1,1,3,3],[1,3,2,2],[1,2,0,1]],[[0,2,1,1],[1,1,3,2],[1,3,2,3],[1,2,0,1]],[[0,2,1,1],[1,1,3,2],[1,3,2,2],[1,2,0,2]],[[0,2,1,2],[1,1,3,2],[1,3,2,2],[1,2,1,0]],[[0,2,1,1],[1,1,4,2],[1,3,2,2],[1,2,1,0]],[[0,2,1,1],[1,1,3,3],[1,3,2,2],[1,2,1,0]],[[0,2,1,1],[1,1,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[1,4,3,0],[2,3,1,1],[0,2,1,0]],[[0,2,1,2],[1,1,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[1,1,4,2],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[1,1,3,3],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[1,1,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,1,1],[1,1,3,2],[1,3,3,0],[1,1,2,2]],[[0,2,1,2],[1,1,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,1,1],[1,1,4,2],[1,3,3,0],[1,2,1,1]],[[0,2,1,1],[1,1,3,3],[1,3,3,0],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,1,1],[1,1,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,1,2],[1,1,3,2],[1,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,1,4,2],[1,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,1,3,3],[1,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,1,3,2],[1,3,4,1],[1,0,2,1]],[[0,2,1,2],[1,1,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,1,4,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,1,3,3],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,1,3,2],[1,4,3,1],[1,1,1,1]],[[0,2,1,1],[1,1,3,2],[1,3,4,1],[1,1,1,1]],[[0,2,1,2],[1,1,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,1,1],[1,1,4,2],[1,3,3,1],[1,1,2,0]],[[0,2,1,1],[1,1,3,3],[1,3,3,1],[1,1,2,0]],[[0,2,1,1],[1,1,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,1,1],[1,1,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,1,1],[1,1,3,2],[1,3,3,1],[1,1,3,0]],[[0,2,1,2],[1,1,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[1,1,4,2],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[1,1,3,3],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[1,1,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,1,1],[1,1,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,1,1],[1,1,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,1,1],[1,1,3,2],[1,3,3,1],[1,3,0,1]],[[0,2,1,2],[1,1,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,1,1],[1,1,4,2],[1,3,3,1],[1,2,1,0]],[[0,2,1,1],[1,1,3,3],[1,3,3,1],[1,2,1,0]],[[0,2,1,1],[1,1,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,1,1],[1,1,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,1,1],[1,1,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,1,1],[1,1,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,3,1],[1,3,3,0],[2,3,1,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,0],[2,3,1,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[2,3,1,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,0],[2,3,1,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,0],[2,3,1,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,0],[2,3,1,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,0],[2,3,1,1],[0,2,0,1]],[[0,2,1,2],[1,1,3,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,1,4,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,1,3,3],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,1,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,4,3,0],[2,3,1,0],[1,2,0,1]],[[1,2,3,1],[1,3,3,0],[2,3,1,0],[1,2,0,1]],[[1,3,2,1],[1,3,3,0],[2,3,1,0],[1,2,0,1]],[[2,2,2,1],[1,3,3,0],[2,3,1,0],[1,2,0,1]],[[1,2,2,1],[1,4,3,0],[2,3,1,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,0],[2,3,1,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,0],[2,3,1,0],[1,1,1,1]],[[2,2,2,1],[1,3,3,0],[2,3,1,0],[1,1,1,1]],[[1,2,2,1],[1,4,3,0],[2,3,1,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,0],[2,3,1,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,0],[2,3,1,0],[0,2,1,1]],[[2,2,2,1],[1,3,3,0],[2,3,1,0],[0,2,1,1]],[[0,2,1,2],[1,1,3,2],[2,0,3,2],[0,2,2,1]],[[0,2,1,1],[1,1,3,3],[2,0,3,2],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,0,3,3],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,0,3,2],[0,2,3,1]],[[0,2,1,1],[1,1,3,2],[2,0,3,2],[0,2,2,2]],[[0,2,1,2],[1,1,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,4,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,3],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[3,1,1,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,1,1,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,1,1,2],[2,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,1,1,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,2],[2,1,1,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,2],[2,1,1,2],[1,2,2,2]],[[0,2,1,2],[1,1,3,2],[2,1,2,2],[1,2,1,1]],[[0,2,1,1],[1,1,4,2],[2,1,2,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,3],[2,1,2,2],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[2,1,2,3],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[2,1,2,2],[1,2,1,2]],[[0,2,1,2],[1,1,3,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,4,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,3],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[2,1,2,3],[1,2,2,0]],[[0,2,1,2],[1,1,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,1,4,2],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,3],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[3,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,1,4,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,1,3,0],[2,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,1,3,0],[1,3,2,1]],[[0,2,1,1],[1,1,3,2],[2,1,3,0],[1,2,3,1]],[[0,2,1,1],[1,1,3,2],[2,1,3,0],[1,2,2,2]],[[0,2,1,2],[1,1,3,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,4,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,3,3],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[2,1,4,1],[1,2,1,1]],[[0,2,1,2],[1,1,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,1,4,2],[2,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,3],[2,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[3,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[2,1,4,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[2,1,3,1],[2,2,2,0]],[[0,2,1,1],[1,1,3,2],[2,1,3,1],[1,3,2,0]],[[0,2,1,1],[1,1,3,2],[2,1,3,1],[1,2,3,0]],[[0,2,1,2],[1,1,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,1,4,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,3],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[3,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,0,3],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,0,2],[2,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,0,2],[1,3,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,0,2],[1,2,3,1]],[[0,2,1,1],[1,1,3,2],[2,2,0,2],[1,2,2,2]],[[0,2,1,2],[1,1,3,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[1,1,4,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[1,1,3,3],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,1,3],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,1,2],[0,3,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,1,2],[0,2,3,1]],[[0,2,1,1],[1,1,3,2],[2,2,1,2],[0,2,2,2]],[[0,2,1,1],[1,1,3,2],[3,2,2,0],[1,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,2,0],[2,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,2,0],[1,3,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,2,0],[1,2,3,1]],[[0,2,1,1],[1,1,3,2],[2,2,2,0],[1,2,2,2]],[[0,2,1,1],[1,1,3,2],[3,2,2,1],[1,2,2,0]],[[0,2,1,1],[1,1,3,2],[2,2,2,1],[2,2,2,0]],[[0,2,1,1],[1,1,3,2],[2,2,2,1],[1,3,2,0]],[[0,2,1,1],[1,1,3,2],[2,2,2,1],[1,2,3,0]],[[0,2,1,2],[1,1,3,2],[2,2,2,2],[0,2,1,1]],[[0,2,1,1],[1,1,4,2],[2,2,2,2],[0,2,1,1]],[[0,2,1,1],[1,1,3,3],[2,2,2,2],[0,2,1,1]],[[0,2,1,1],[1,1,3,2],[2,2,2,3],[0,2,1,1]],[[0,2,1,1],[1,1,3,2],[2,2,2,2],[0,2,1,2]],[[0,2,1,2],[1,1,3,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[1,1,4,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[1,1,3,3],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[1,1,3,2],[2,2,2,3],[0,2,2,0]],[[0,2,1,2],[1,1,3,2],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[1,1,4,2],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[1,1,3,3],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,1,1],[1,1,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,1,1],[1,1,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,1,1],[1,1,3,2],[3,2,3,0],[1,2,1,1]],[[0,2,1,1],[1,1,3,2],[2,2,3,0],[2,2,1,1]],[[0,2,1,1],[1,1,3,2],[2,2,3,0],[1,3,1,1]],[[0,2,1,2],[1,1,3,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[1,1,4,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[1,1,3,3],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[1,1,3,2],[2,2,4,1],[0,2,1,1]],[[0,2,1,2],[1,1,3,2],[2,2,3,1],[0,2,2,0]],[[0,2,1,1],[1,1,4,2],[2,2,3,1],[0,2,2,0]],[[0,2,1,1],[1,1,3,3],[2,2,3,1],[0,2,2,0]],[[0,2,1,1],[1,1,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,1,1],[1,1,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,1,1],[1,1,3,2],[2,2,3,1],[0,2,3,0]],[[0,2,1,1],[1,1,3,2],[3,2,3,1],[1,2,0,1]],[[0,2,1,1],[1,1,3,2],[2,2,3,1],[2,2,0,1]],[[0,2,1,1],[1,1,3,2],[2,2,3,1],[1,3,0,1]],[[0,2,1,1],[1,1,3,2],[3,2,3,1],[1,2,1,0]],[[0,2,1,1],[1,1,3,2],[2,2,3,1],[2,2,1,0]],[[0,2,1,1],[1,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[1,4,3,0],[2,3,0,1],[1,2,1,0]],[[1,2,3,1],[1,3,3,0],[2,3,0,1],[1,2,1,0]],[[1,3,2,1],[1,3,3,0],[2,3,0,1],[1,2,1,0]],[[2,2,2,1],[1,3,3,0],[2,3,0,1],[1,2,1,0]],[[1,2,2,1],[1,4,3,0],[2,3,0,1],[1,1,2,0]],[[1,2,3,1],[1,3,3,0],[2,3,0,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,0],[2,3,0,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,0],[2,3,0,1],[1,1,2,0]],[[1,2,2,1],[1,4,3,0],[2,3,0,1],[0,2,2,0]],[[1,2,3,1],[1,3,3,0],[2,3,0,1],[0,2,2,0]],[[1,3,2,1],[1,3,3,0],[2,3,0,1],[0,2,2,0]],[[2,2,2,1],[1,3,3,0],[2,3,0,1],[0,2,2,0]],[[1,2,2,1],[1,4,3,0],[2,3,0,0],[1,2,2,0]],[[1,2,3,1],[1,3,3,0],[2,3,0,0],[1,2,2,0]],[[1,3,2,1],[1,3,3,0],[2,3,0,0],[1,2,2,0]],[[2,2,2,1],[1,3,3,0],[2,3,0,0],[1,2,2,0]],[[1,2,2,1],[1,4,3,0],[2,3,0,0],[1,2,1,1]],[[1,2,3,1],[1,3,3,0],[2,3,0,0],[1,2,1,1]],[[1,3,2,1],[1,3,3,0],[2,3,0,0],[1,2,1,1]],[[2,2,2,1],[1,3,3,0],[2,3,0,0],[1,2,1,1]],[[1,2,2,1],[1,4,3,0],[2,3,0,0],[1,1,2,1]],[[1,2,3,1],[1,3,3,0],[2,3,0,0],[1,1,2,1]],[[1,3,2,1],[1,3,3,0],[2,3,0,0],[1,1,2,1]],[[2,2,2,1],[1,3,3,0],[2,3,0,0],[1,1,2,1]],[[1,2,2,1],[1,4,3,0],[2,3,0,0],[0,2,2,1]],[[1,2,3,1],[1,3,3,0],[2,3,0,0],[0,2,2,1]],[[1,3,2,1],[1,3,3,0],[2,3,0,0],[0,2,2,1]],[[2,2,2,1],[1,3,3,0],[2,3,0,0],[0,2,2,1]],[[0,2,1,2],[1,1,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,1,4,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,1,3,3],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[3,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,4,0,2],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,0,3],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,0,2],[0,3,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,0,2],[0,2,3,1]],[[0,2,1,1],[1,1,3,2],[2,3,0,2],[0,2,2,2]],[[0,2,1,1],[1,1,3,2],[3,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,1,3,2],[2,4,0,2],[1,1,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,0,2],[2,1,2,1]],[[0,2,1,2],[1,1,3,2],[2,3,1,2],[0,1,2,1]],[[0,2,1,1],[1,1,4,2],[2,3,1,2],[0,1,2,1]],[[0,2,1,1],[1,1,3,3],[2,3,1,2],[0,1,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,1,3],[0,1,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,1,2],[0,1,3,1]],[[0,2,1,1],[1,1,3,2],[2,3,1,2],[0,1,2,2]],[[0,2,1,2],[1,1,3,2],[2,3,1,2],[1,0,2,1]],[[0,2,1,1],[1,1,4,2],[2,3,1,2],[1,0,2,1]],[[0,2,1,1],[1,1,3,3],[2,3,1,2],[1,0,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,1,2],[1,0,3,1]],[[0,2,1,1],[1,1,3,2],[2,3,1,2],[1,0,2,2]],[[0,2,1,1],[1,1,3,2],[3,3,2,0],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,1,1],[1,1,3,2],[3,3,2,0],[1,1,2,1]],[[0,2,1,1],[1,1,3,2],[2,4,2,0],[1,1,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,0],[2,1,2,1]],[[0,2,1,1],[1,1,3,2],[3,3,2,1],[0,2,2,0]],[[0,2,1,1],[1,1,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,1,1],[1,1,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,1,1],[1,1,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,1,1],[1,1,3,2],[3,3,2,1],[1,1,2,0]],[[0,2,1,1],[1,1,3,2],[2,4,2,1],[1,1,2,0]],[[0,2,1,1],[1,1,3,2],[2,3,2,1],[2,1,2,0]],[[0,2,1,2],[1,1,3,2],[2,3,2,2],[0,0,2,1]],[[0,2,1,1],[1,1,4,2],[2,3,2,2],[0,0,2,1]],[[0,2,1,1],[1,1,3,3],[2,3,2,2],[0,0,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,3],[0,0,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,2],[0,0,2,2]],[[0,2,1,2],[1,1,3,2],[2,3,2,2],[0,1,1,1]],[[0,2,1,1],[1,1,4,2],[2,3,2,2],[0,1,1,1]],[[0,2,1,1],[1,1,3,3],[2,3,2,2],[0,1,1,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,3],[0,1,1,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,2],[0,1,1,2]],[[0,2,1,2],[1,1,3,2],[2,3,2,2],[0,1,2,0]],[[0,2,1,1],[1,1,4,2],[2,3,2,2],[0,1,2,0]],[[0,2,1,1],[1,1,3,3],[2,3,2,2],[0,1,2,0]],[[0,2,1,1],[1,1,3,2],[2,3,2,3],[0,1,2,0]],[[0,2,1,2],[1,1,3,2],[2,3,2,2],[0,2,0,1]],[[0,2,1,1],[1,1,4,2],[2,3,2,2],[0,2,0,1]],[[0,2,1,1],[1,1,3,3],[2,3,2,2],[0,2,0,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,3],[0,2,0,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,2],[0,2,0,2]],[[0,2,1,2],[1,1,3,2],[2,3,2,2],[0,2,1,0]],[[0,2,1,1],[1,1,4,2],[2,3,2,2],[0,2,1,0]],[[0,2,1,1],[1,1,3,3],[2,3,2,2],[0,2,1,0]],[[0,2,1,1],[1,1,3,2],[2,3,2,3],[0,2,1,0]],[[0,2,1,2],[1,1,3,2],[2,3,2,2],[1,0,1,1]],[[0,2,1,1],[1,1,4,2],[2,3,2,2],[1,0,1,1]],[[0,2,1,1],[1,1,3,3],[2,3,2,2],[1,0,1,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,3],[1,0,1,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,2],[1,0,1,2]],[[0,2,1,2],[1,1,3,2],[2,3,2,2],[1,0,2,0]],[[0,2,1,1],[1,1,4,2],[2,3,2,2],[1,0,2,0]],[[0,2,1,1],[1,1,3,3],[2,3,2,2],[1,0,2,0]],[[0,2,1,1],[1,1,3,2],[2,3,2,3],[1,0,2,0]],[[0,2,1,2],[1,1,3,2],[2,3,2,2],[1,1,0,1]],[[0,2,1,1],[1,1,4,2],[2,3,2,2],[1,1,0,1]],[[0,2,1,1],[1,1,3,3],[2,3,2,2],[1,1,0,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,3],[1,1,0,1]],[[0,2,1,1],[1,1,3,2],[2,3,2,2],[1,1,0,2]],[[0,2,1,2],[1,1,3,2],[2,3,2,2],[1,1,1,0]],[[0,2,1,1],[1,1,4,2],[2,3,2,2],[1,1,1,0]],[[0,2,1,1],[1,1,3,3],[2,3,2,2],[1,1,1,0]],[[0,2,1,1],[1,1,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[1,4,3,0],[2,2,3,1],[1,1,0,0]],[[1,2,3,1],[1,3,3,0],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[1,3,3,0],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[1,3,3,0],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[1,4,3,0],[2,2,3,1],[0,2,0,0]],[[1,2,3,1],[1,3,3,0],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[1,3,3,0],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[1,3,3,0],[2,2,3,1],[0,2,0,0]],[[0,2,1,2],[1,1,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[1,1,4,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[1,1,3,3],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[1,1,3,2],[3,3,3,0],[0,1,2,1]],[[0,2,1,1],[1,1,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,0],[0,1,2,2]],[[0,2,1,2],[1,1,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[1,1,4,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[1,1,3,3],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[1,1,3,2],[3,3,3,0],[0,2,1,1]],[[0,2,1,1],[1,1,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,1,1],[1,1,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,0],[0,3,1,1]],[[0,2,1,2],[1,1,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[1,1,4,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[1,1,3,3],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[1,1,3,2],[3,3,3,0],[1,0,2,1]],[[0,2,1,1],[1,1,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,0],[2,0,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,0],[1,0,2,2]],[[0,2,1,2],[1,1,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[1,1,4,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[1,1,3,3],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[1,1,3,2],[3,3,3,0],[1,1,1,1]],[[0,2,1,1],[1,1,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,1,1],[1,1,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,0],[2,1,1,1]],[[0,2,1,1],[1,1,3,2],[3,3,3,0],[1,2,0,1]],[[0,2,1,1],[1,1,3,2],[2,4,3,0],[1,2,0,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,0],[2,2,0,1]],[[0,2,1,2],[1,1,3,2],[2,3,3,1],[0,0,2,1]],[[0,2,1,1],[1,1,4,2],[2,3,3,1],[0,0,2,1]],[[0,2,1,1],[1,1,3,3],[2,3,3,1],[0,0,2,1]],[[0,2,1,1],[1,1,3,2],[2,3,4,1],[0,0,2,1]],[[0,2,1,2],[1,1,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[1,1,4,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[1,1,3,3],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[1,1,3,2],[3,3,3,1],[0,1,1,1]],[[0,2,1,1],[1,1,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,1,1],[1,1,3,2],[2,3,4,1],[0,1,1,1]],[[0,2,1,2],[1,1,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[1,1,4,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[1,1,3,3],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[1,1,3,2],[3,3,3,1],[0,1,2,0]],[[0,2,1,1],[1,1,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,1,1],[1,1,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,1,1],[1,1,3,2],[2,3,3,1],[0,1,3,0]],[[0,2,1,2],[1,1,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[1,1,4,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[1,1,3,3],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[1,1,3,2],[3,3,3,1],[0,2,0,1]],[[0,2,1,1],[1,1,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,1,1],[1,1,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,1],[0,3,0,1]],[[0,2,1,2],[1,1,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[1,1,4,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[1,1,3,3],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[1,1,3,2],[3,3,3,1],[0,2,1,0]],[[0,2,1,1],[1,1,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,1,1],[1,1,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,1,1],[1,1,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[1,4,3,0],[2,2,3,0],[1,2,0,0]],[[0,2,1,2],[1,1,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[1,1,4,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[1,1,3,3],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[1,1,3,2],[3,3,3,1],[1,0,1,1]],[[0,2,1,1],[1,1,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,1,1],[1,1,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,1],[2,0,1,1]],[[0,2,1,2],[1,1,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[1,1,4,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[1,1,3,3],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[1,1,3,2],[3,3,3,1],[1,0,2,0]],[[0,2,1,1],[1,1,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,1,1],[1,1,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,1,1],[1,1,3,2],[2,3,3,1],[2,0,2,0]],[[0,2,1,1],[1,1,3,2],[2,3,3,1],[1,0,3,0]],[[0,2,1,2],[1,1,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[1,1,4,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[1,1,3,3],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[1,1,3,2],[3,3,3,1],[1,1,0,1]],[[0,2,1,1],[1,1,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,1,1],[1,1,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,1],[2,1,0,1]],[[0,2,1,2],[1,1,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[1,1,4,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[1,1,3,3],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[1,1,3,2],[3,3,3,1],[1,1,1,0]],[[0,2,1,1],[1,1,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,1,1],[1,1,3,2],[2,3,4,1],[1,1,1,0]],[[0,2,1,1],[1,1,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,3,1],[1,3,3,0],[2,2,3,0],[1,2,0,0]],[[1,3,2,1],[1,3,3,0],[2,2,3,0],[1,2,0,0]],[[2,2,2,1],[1,3,3,0],[2,2,3,0],[1,2,0,0]],[[0,2,1,1],[1,1,3,2],[3,3,3,1],[1,2,0,0]],[[0,2,1,1],[1,1,3,2],[2,4,3,1],[1,2,0,0]],[[0,2,1,1],[1,1,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[1,4,3,0],[2,2,3,0],[1,1,1,0]],[[1,2,3,1],[1,3,3,0],[2,2,3,0],[1,1,1,0]],[[1,3,2,1],[1,3,3,0],[2,2,3,0],[1,1,1,0]],[[2,2,2,1],[1,3,3,0],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[1,4,3,0],[2,2,3,0],[1,0,2,0]],[[1,2,3,1],[1,3,3,0],[2,2,3,0],[1,0,2,0]],[[1,3,2,1],[1,3,3,0],[2,2,3,0],[1,0,2,0]],[[2,2,2,1],[1,3,3,0],[2,2,3,0],[1,0,2,0]],[[1,2,2,1],[1,4,3,0],[2,2,3,0],[0,2,1,0]],[[1,2,3,1],[1,3,3,0],[2,2,3,0],[0,2,1,0]],[[1,3,2,1],[1,3,3,0],[2,2,3,0],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[2,2,3,0],[0,2,1,0]],[[0,2,1,2],[1,1,3,2],[2,3,3,2],[0,1,0,1]],[[0,2,1,1],[1,1,4,2],[2,3,3,2],[0,1,0,1]],[[0,2,1,1],[1,1,3,3],[2,3,3,2],[0,1,0,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,4,3,0],[2,2,3,0],[0,1,2,0]],[[1,2,3,1],[1,3,3,0],[2,2,3,0],[0,1,2,0]],[[1,3,2,1],[1,3,3,0],[2,2,3,0],[0,1,2,0]],[[2,2,2,1],[1,3,3,0],[2,2,3,0],[0,1,2,0]],[[0,2,1,2],[1,1,3,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[1,1,4,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[1,1,3,3],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[1,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[1,4,3,0],[2,2,2,1],[1,2,0,0]],[[1,2,3,1],[1,3,3,0],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[1,3,3,0],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[1,3,3,0],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[1,4,3,0],[2,2,2,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,0],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,0],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,0],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,0],[2,2,2,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,0],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[1,3,3,0],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[1,3,3,0],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[1,4,3,0],[2,2,2,1],[1,0,2,0]],[[1,2,3,1],[1,3,3,0],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[1,3,3,0],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[1,3,3,0],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[1,4,3,0],[2,2,2,1],[1,0,1,1]],[[1,2,3,1],[1,3,3,0],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[1,3,3,0],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[1,3,3,0],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[1,4,3,0],[2,2,2,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,0],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,0],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,0],[2,2,2,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,0],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,0],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,0],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[1,4,3,0],[2,2,2,1],[0,1,2,0]],[[1,2,3,1],[1,3,3,0],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[1,3,3,0],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[1,3,3,0],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[1,4,3,0],[2,2,2,1],[0,1,1,1]],[[1,2,3,1],[1,3,3,0],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[1,3,3,0],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[1,3,3,0],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[1,4,3,0],[2,2,2,0],[1,2,0,1]],[[1,2,3,1],[1,3,3,0],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[1,3,3,0],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[1,3,3,0],[2,2,2,0],[1,2,0,1]],[[1,2,2,1],[1,4,3,0],[2,2,2,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,0],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,0],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[1,3,3,0],[2,2,2,0],[1,1,1,1]],[[0,2,1,2],[1,2,2,2],[1,0,3,2],[1,2,2,1]],[[0,2,1,1],[1,2,2,3],[1,0,3,2],[1,2,2,1]],[[0,2,1,1],[1,2,2,2],[1,0,3,3],[1,2,2,1]],[[0,2,1,1],[1,2,2,2],[1,0,3,2],[1,2,3,1]],[[0,2,1,1],[1,2,2,2],[1,0,3,2],[1,2,2,2]],[[0,2,1,2],[1,2,2,2],[1,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,2,2,3],[1,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,2,2,2],[1,1,2,3],[1,2,2,1]],[[0,2,1,1],[1,2,2,2],[1,1,2,2],[2,2,2,1]],[[0,2,1,1],[1,2,2,2],[1,1,2,2],[1,3,2,1]],[[0,2,1,1],[1,2,2,2],[1,1,2,2],[1,2,3,1]],[[0,2,1,1],[1,2,2,2],[1,1,2,2],[1,2,2,2]],[[0,2,1,1],[1,2,2,2],[1,1,4,1],[1,2,2,1]],[[0,2,1,1],[1,2,2,2],[1,1,3,1],[2,2,2,1]],[[0,2,1,1],[1,2,2,2],[1,1,3,1],[1,3,2,1]],[[0,2,1,1],[1,2,2,2],[1,1,3,1],[1,2,3,1]],[[0,2,1,1],[1,2,2,2],[1,1,3,1],[1,2,2,2]],[[0,2,1,2],[1,2,2,2],[1,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,2,3],[1,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,2,2],[1,1,4,2],[1,2,1,1]],[[0,2,1,1],[1,2,2,2],[1,1,3,3],[1,2,1,1]],[[0,2,1,1],[1,2,2,2],[1,1,3,2],[1,2,1,2]],[[0,2,1,2],[1,2,2,2],[1,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,2,3],[1,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,2,2],[1,1,4,2],[1,2,2,0]],[[0,2,1,1],[1,2,2,2],[1,1,3,3],[1,2,2,0]],[[0,2,1,1],[1,2,2,2],[1,1,3,2],[2,2,2,0]],[[0,2,1,1],[1,2,2,2],[1,1,3,2],[1,3,2,0]],[[0,2,1,1],[1,2,2,2],[1,1,3,2],[1,2,3,0]],[[0,2,1,2],[1,2,2,2],[1,2,2,2],[1,1,2,1]],[[0,2,1,1],[1,2,2,3],[1,2,2,2],[1,1,2,1]],[[0,2,1,1],[1,2,2,2],[1,2,2,3],[1,1,2,1]],[[0,2,1,1],[1,2,2,2],[1,2,2,2],[1,1,3,1]],[[0,2,1,1],[1,2,2,2],[1,2,2,2],[1,1,2,2]],[[0,2,1,1],[1,2,2,2],[1,2,4,1],[1,1,2,1]],[[0,2,1,1],[1,2,2,2],[1,2,3,1],[1,1,3,1]],[[0,2,1,1],[1,2,2,2],[1,2,3,1],[1,1,2,2]],[[0,2,1,2],[1,2,2,2],[1,2,3,2],[1,0,2,1]],[[0,2,1,1],[1,2,2,3],[1,2,3,2],[1,0,2,1]],[[0,2,1,1],[1,2,2,2],[1,2,4,2],[1,0,2,1]],[[0,2,1,1],[1,2,2,2],[1,2,3,3],[1,0,2,1]],[[0,2,1,1],[1,2,2,2],[1,2,3,2],[1,0,2,2]],[[0,2,1,2],[1,2,2,2],[1,2,3,2],[1,1,1,1]],[[0,2,1,1],[1,2,2,3],[1,2,3,2],[1,1,1,1]],[[0,2,1,1],[1,2,2,2],[1,2,4,2],[1,1,1,1]],[[0,2,1,1],[1,2,2,2],[1,2,3,3],[1,1,1,1]],[[0,2,1,1],[1,2,2,2],[1,2,3,2],[1,1,1,2]],[[0,2,1,2],[1,2,2,2],[1,2,3,2],[1,1,2,0]],[[0,2,1,1],[1,2,2,3],[1,2,3,2],[1,1,2,0]],[[0,2,1,1],[1,2,2,2],[1,2,4,2],[1,1,2,0]],[[0,2,1,1],[1,2,2,2],[1,2,3,3],[1,1,2,0]],[[0,2,1,1],[1,2,2,2],[1,2,3,2],[1,1,3,0]],[[0,2,1,2],[1,2,2,2],[1,2,3,2],[1,2,0,1]],[[0,2,1,1],[1,2,2,3],[1,2,3,2],[1,2,0,1]],[[0,2,1,1],[1,2,2,2],[1,2,4,2],[1,2,0,1]],[[0,2,1,1],[1,2,2,2],[1,2,3,3],[1,2,0,1]],[[0,2,1,1],[1,2,2,2],[1,2,3,2],[1,2,0,2]],[[0,2,1,2],[1,2,2,2],[1,2,3,2],[1,2,1,0]],[[0,2,1,1],[1,2,2,3],[1,2,3,2],[1,2,1,0]],[[0,2,1,1],[1,2,2,2],[1,2,4,2],[1,2,1,0]],[[0,2,1,1],[1,2,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[1,4,3,0],[2,2,2,0],[1,0,2,1]],[[1,2,3,1],[1,3,3,0],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[1,3,3,0],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[1,3,3,0],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[1,4,3,0],[2,2,2,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,0],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,0],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[1,3,3,0],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[1,4,3,0],[2,2,2,0],[0,1,2,1]],[[1,2,3,1],[1,3,3,0],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[1,3,3,0],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[1,3,3,0],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[1,4,3,0],[2,2,1,1],[1,1,2,0]],[[1,2,3,1],[1,3,3,0],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,0],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,0],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[1,4,3,0],[2,2,1,1],[0,2,2,0]],[[1,2,3,1],[1,3,3,0],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[1,3,3,0],[2,2,1,1],[0,2,2,0]],[[0,2,1,2],[1,2,2,2],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[1,2,2,3],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[1,2,2,2],[3,0,2,2],[1,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,0,2,3],[1,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,0,2,2],[2,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,0,2,2],[1,3,2,1]],[[0,2,1,1],[1,2,2,2],[2,0,2,2],[1,2,3,1]],[[0,2,1,1],[1,2,2,2],[2,0,2,2],[1,2,2,2]],[[0,2,1,1],[1,2,2,2],[3,0,3,1],[1,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,0,4,1],[1,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,0,3,1],[2,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,0,3,1],[1,3,2,1]],[[0,2,1,1],[1,2,2,2],[2,0,3,1],[1,2,3,1]],[[0,2,1,1],[1,2,2,2],[2,0,3,1],[1,2,2,2]],[[0,2,1,2],[1,2,2,2],[2,0,3,2],[0,2,2,1]],[[0,2,1,1],[1,2,2,3],[2,0,3,2],[0,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,0,3,3],[0,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,0,3,2],[0,2,3,1]],[[0,2,1,1],[1,2,2,2],[2,0,3,2],[0,2,2,2]],[[0,2,1,2],[1,2,2,2],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,2,3],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,2,2],[2,0,4,2],[1,2,1,1]],[[0,2,1,1],[1,2,2,2],[2,0,3,3],[1,2,1,1]],[[0,2,1,1],[1,2,2,2],[2,0,3,2],[1,2,1,2]],[[0,2,1,2],[1,2,2,2],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,2,3],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,2,2],[3,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,2,2],[2,0,4,2],[1,2,2,0]],[[0,2,1,1],[1,2,2,2],[2,0,3,3],[1,2,2,0]],[[0,2,1,1],[1,2,2,2],[2,0,3,2],[2,2,2,0]],[[0,2,1,1],[1,2,2,2],[2,0,3,2],[1,3,2,0]],[[0,2,1,1],[1,2,2,2],[2,0,3,2],[1,2,3,0]],[[0,2,1,2],[1,2,2,2],[2,1,2,2],[0,2,2,1]],[[0,2,1,1],[1,2,2,3],[2,1,2,2],[0,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,1,2,3],[0,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,1,2,2],[0,3,2,1]],[[0,2,1,1],[1,2,2,2],[2,1,2,2],[0,2,3,1]],[[0,2,1,1],[1,2,2,2],[2,1,2,2],[0,2,2,2]],[[0,2,1,1],[1,2,2,2],[2,1,4,1],[0,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,1,3,1],[0,3,2,1]],[[0,2,1,1],[1,2,2,2],[2,1,3,1],[0,2,3,1]],[[0,2,1,1],[1,2,2,2],[2,1,3,1],[0,2,2,2]],[[0,2,1,2],[1,2,2,2],[2,1,3,2],[0,2,1,1]],[[0,2,1,1],[1,2,2,3],[2,1,3,2],[0,2,1,1]],[[0,2,1,1],[1,2,2,2],[2,1,4,2],[0,2,1,1]],[[0,2,1,1],[1,2,2,2],[2,1,3,3],[0,2,1,1]],[[0,2,1,1],[1,2,2,2],[2,1,3,2],[0,2,1,2]],[[0,2,1,2],[1,2,2,2],[2,1,3,2],[0,2,2,0]],[[0,2,1,1],[1,2,2,3],[2,1,3,2],[0,2,2,0]],[[0,2,1,1],[1,2,2,2],[2,1,4,2],[0,2,2,0]],[[0,2,1,1],[1,2,2,2],[2,1,3,3],[0,2,2,0]],[[0,2,1,1],[1,2,2,2],[2,1,3,2],[0,3,2,0]],[[0,2,1,1],[1,2,2,2],[2,1,3,2],[0,2,3,0]],[[2,2,2,1],[1,3,3,0],[2,2,1,1],[0,2,2,0]],[[0,2,1,2],[1,2,2,2],[2,2,2,2],[0,1,2,1]],[[0,2,1,1],[1,2,2,3],[2,2,2,2],[0,1,2,1]],[[0,2,1,1],[1,2,2,2],[2,2,2,3],[0,1,2,1]],[[0,2,1,1],[1,2,2,2],[2,2,2,2],[0,1,3,1]],[[0,2,1,1],[1,2,2,2],[2,2,2,2],[0,1,2,2]],[[0,2,1,2],[1,2,2,2],[2,2,2,2],[1,0,2,1]],[[0,2,1,1],[1,2,2,3],[2,2,2,2],[1,0,2,1]],[[0,2,1,1],[1,2,2,2],[2,2,2,3],[1,0,2,1]],[[0,2,1,1],[1,2,2,2],[2,2,2,2],[1,0,3,1]],[[0,2,1,1],[1,2,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[1,4,3,0],[2,2,1,0],[1,1,2,1]],[[1,2,3,1],[1,3,3,0],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[1,3,3,0],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[1,3,3,0],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[1,4,3,0],[2,2,1,0],[0,2,2,1]],[[1,2,3,1],[1,3,3,0],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[1,3,3,0],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[1,3,3,0],[2,2,1,0],[0,2,2,1]],[[0,2,1,1],[1,2,2,2],[2,2,4,1],[0,1,2,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,1],[0,1,3,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,1],[0,1,2,2]],[[0,2,1,1],[1,2,2,2],[2,2,4,1],[1,0,2,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,1],[1,0,3,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,1],[1,0,2,2]],[[0,2,1,2],[1,2,2,2],[2,2,3,2],[0,0,2,1]],[[0,2,1,1],[1,2,2,3],[2,2,3,2],[0,0,2,1]],[[0,2,1,1],[1,2,2,2],[2,2,4,2],[0,0,2,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,3],[0,0,2,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,2],[0,0,2,2]],[[0,2,1,2],[1,2,2,2],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[1,2,2,3],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[1,2,2,2],[2,2,4,2],[0,1,1,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,3],[0,1,1,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,2],[0,1,1,2]],[[0,2,1,2],[1,2,2,2],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[1,2,2,3],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[1,2,2,2],[2,2,4,2],[0,1,2,0]],[[0,2,1,1],[1,2,2,2],[2,2,3,3],[0,1,2,0]],[[0,2,1,1],[1,2,2,2],[2,2,3,2],[0,1,3,0]],[[0,2,1,2],[1,2,2,2],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[1,2,2,3],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[1,2,2,2],[2,2,4,2],[0,2,0,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,3],[0,2,0,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,2],[0,2,0,2]],[[0,2,1,2],[1,2,2,2],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[1,2,2,3],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[1,2,2,2],[2,2,4,2],[0,2,1,0]],[[0,2,1,1],[1,2,2,2],[2,2,3,3],[0,2,1,0]],[[0,2,1,2],[1,2,2,2],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[1,2,2,3],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[1,2,2,2],[2,2,4,2],[1,0,1,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,3],[1,0,1,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,2],[1,0,1,2]],[[0,2,1,2],[1,2,2,2],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[1,2,2,3],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[1,2,2,2],[2,2,4,2],[1,0,2,0]],[[0,2,1,1],[1,2,2,2],[2,2,3,3],[1,0,2,0]],[[0,2,1,1],[1,2,2,2],[2,2,3,2],[1,0,3,0]],[[0,2,1,2],[1,2,2,2],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[1,2,2,3],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[1,2,2,2],[2,2,4,2],[1,1,0,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,3],[1,1,0,1]],[[0,2,1,1],[1,2,2,2],[2,2,3,2],[1,1,0,2]],[[0,2,1,2],[1,2,2,2],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[1,2,2,3],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[1,2,2,2],[2,2,4,2],[1,1,1,0]],[[0,2,1,1],[1,2,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[1,4,3,0],[2,2,0,1],[1,2,2,0]],[[1,2,3,1],[1,3,3,0],[2,2,0,1],[1,2,2,0]],[[1,3,2,1],[1,3,3,0],[2,2,0,1],[1,2,2,0]],[[2,2,2,1],[1,3,3,0],[2,2,0,1],[1,2,2,0]],[[1,2,2,1],[1,4,3,0],[2,2,0,0],[1,2,2,1]],[[1,2,3,1],[1,3,3,0],[2,2,0,0],[1,2,2,1]],[[1,3,2,1],[1,3,3,0],[2,2,0,0],[1,2,2,1]],[[2,2,2,1],[1,3,3,0],[2,2,0,0],[1,2,2,1]],[[0,2,1,2],[1,2,2,2],[2,3,3,2],[0,0,1,1]],[[0,2,1,1],[1,2,2,3],[2,3,3,2],[0,0,1,1]],[[0,2,1,1],[1,2,2,2],[2,3,4,2],[0,0,1,1]],[[0,2,1,1],[1,2,2,2],[2,3,3,3],[0,0,1,1]],[[0,2,1,1],[1,2,2,2],[2,3,3,2],[0,0,1,2]],[[0,2,1,2],[1,2,2,2],[2,3,3,2],[0,0,2,0]],[[0,2,1,1],[1,2,2,3],[2,3,3,2],[0,0,2,0]],[[0,2,1,1],[1,2,2,2],[2,3,4,2],[0,0,2,0]],[[0,2,1,1],[1,2,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,4,3,0],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,0],[2,1,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,0],[2,1,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,0],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,0],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,0],[2,1,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,3,0],[2,1,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,3,0],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[1,4,3,0],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,3,0],[2,1,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,3,0],[2,1,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,3,0],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[1,4,3,0],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,3,0],[2,1,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,3,0],[2,1,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,3,0],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[1,4,3,0],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,0],[2,1,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,0],[2,1,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,0],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,0],[2,1,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,0],[2,1,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,0],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[1,4,3,0],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,3,0],[2,1,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,3,0],[2,1,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,3,0],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,3,0],[2,1,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,3,0],[2,1,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,3,0],[2,1,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,3,0],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,3,0],[2,1,3,0],[1,2,1,0]],[[1,2,3,1],[1,3,3,0],[2,1,3,0],[1,2,1,0]],[[1,3,2,1],[1,3,3,0],[2,1,3,0],[1,2,1,0]],[[2,2,2,1],[1,3,3,0],[2,1,3,0],[1,2,1,0]],[[1,2,2,1],[1,4,3,0],[2,1,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,0],[2,1,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,0],[2,1,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,3,0],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[1,4,3,0],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,3,0],[2,1,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,3,0],[2,1,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,3,0],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[1,4,3,0],[2,1,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,0],[2,1,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,0],[2,1,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,3,0],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,3,0],[2,1,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,3,0],[2,1,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,3,0],[2,1,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,3,0],[2,1,3,0],[0,1,2,1]],[[0,2,1,1],[1,2,3,0],[0,3,2,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[0,3,2,2],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[0,3,2,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,0],[0,3,2,2],[1,2,2,2]],[[0,2,1,1],[1,2,4,0],[0,3,3,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[0,3,4,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[0,3,3,1],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[0,3,3,1],[1,2,3,1]],[[0,2,1,1],[1,2,3,0],[0,3,3,1],[1,2,2,2]],[[0,2,1,1],[1,2,4,0],[0,3,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[0,3,4,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[0,3,3,3],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[0,3,3,2],[1,2,1,2]],[[0,2,1,1],[1,2,4,0],[0,3,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[0,3,4,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[0,3,3,3],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[0,3,3,2],[1,3,2,0]],[[0,2,1,1],[1,2,3,0],[0,3,3,2],[1,2,3,0]],[[0,2,1,1],[1,2,3,0],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,0],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[1,2,4,0],[1,2,3,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[1,2,3,0],[1,2,3,1],[1,2,2,2]],[[0,2,1,1],[1,2,4,0],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[1,2,3,2],[1,2,1,2]],[[0,2,1,1],[1,2,4,0],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[1,2,3,0],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[1,2,3,0],[1,2,3,2],[1,2,3,0]],[[0,2,1,1],[1,2,3,0],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,1,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,0],[1,3,1,2],[1,2,2,2]],[[0,2,1,1],[1,2,3,0],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[1,2,3,0],[1,3,2,1],[1,2,2,2]],[[0,2,1,1],[1,2,3,0],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[1,2,3,0],[1,3,2,2],[1,1,2,2]],[[0,2,1,1],[1,2,3,0],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[1,2,3,0],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[1,2,3,0],[1,3,2,2],[1,2,3,0]],[[0,2,1,1],[1,2,3,0],[1,4,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,0],[2,2,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,0],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,0],[1,2,3,1]],[[0,2,1,1],[1,2,4,0],[1,3,3,1],[1,1,2,1]],[[0,2,1,1],[1,2,3,0],[1,4,3,1],[1,1,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,1],[1,1,2,2]],[[0,2,1,1],[1,2,4,0],[1,3,3,1],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[1,3,4,1],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,1],[1,3,1,1]],[[0,2,1,1],[1,2,4,0],[1,3,3,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,4,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,3],[1,0,2,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,2],[1,0,2,2]],[[0,2,1,1],[1,2,4,0],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,0],[1,4,3,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,0],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,2],[1,1,1,2]],[[0,2,1,1],[1,2,4,0],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,0],[1,4,3,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,0],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,0],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[1,2,3,0],[1,3,3,2],[1,1,3,0]],[[0,2,1,1],[1,2,4,0],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[1,2,3,0],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[1,2,3,0],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[1,2,3,0],[1,3,3,2],[1,2,0,2]],[[0,2,1,1],[1,2,4,0],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[1,2,3,0],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[1,2,3,0],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[1,2,3,0],[1,3,3,3],[1,2,1,0]],[[0,2,1,1],[1,2,3,0],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[1,2,3,0],[1,3,3,2],[1,3,1,0]],[[0,2,1,1],[1,2,3,0],[3,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,1,2,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,1,2,2],[2,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,1,2,2],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[2,1,2,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,0],[2,1,2,2],[1,2,2,2]],[[0,2,1,1],[1,2,4,0],[2,1,3,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[3,1,3,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,1,4,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,1,3,1],[2,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,1,3,1],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[2,1,3,1],[1,2,3,1]],[[0,2,1,1],[1,2,3,0],[2,1,3,1],[1,2,2,2]],[[0,2,1,1],[1,2,4,0],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[2,1,4,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[2,1,3,3],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[2,1,3,2],[1,2,1,2]],[[0,2,1,1],[1,2,4,0],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[3,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[2,1,4,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[2,1,3,3],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[2,1,3,2],[2,2,2,0]],[[0,2,1,1],[1,2,3,0],[2,1,3,2],[1,3,2,0]],[[0,2,1,1],[1,2,3,0],[2,1,3,2],[1,2,3,0]],[[0,2,1,1],[1,2,3,0],[3,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,1,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,0],[2,2,1,2],[1,2,2,2]],[[0,2,1,1],[1,2,3,0],[3,2,2,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,2,1],[2,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,2,1],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,2,1],[1,2,3,1]],[[0,2,1,1],[1,2,3,0],[2,2,2,1],[1,2,2,2]],[[0,2,1,1],[1,2,3,0],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[1,2,3,0],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[1,2,3,0],[3,2,2,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,0],[2,2,2,2],[2,2,2,0]],[[0,2,1,1],[1,2,3,0],[2,2,2,2],[1,3,2,0]],[[0,2,1,1],[1,2,3,0],[2,2,2,2],[1,2,3,0]],[[0,2,1,1],[1,2,3,0],[3,2,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,0],[2,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,0],[1,3,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,0],[1,2,3,1]],[[0,2,1,1],[1,2,4,0],[2,2,3,1],[0,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,1],[0,2,2,2]],[[0,2,1,1],[1,2,3,0],[3,2,3,1],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,1],[2,2,1,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,1],[1,3,1,1]],[[0,2,1,1],[1,2,4,0],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[1,2,3,0],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,2],[0,2,1,2]],[[0,2,1,1],[1,2,4,0],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,0],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,0],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[1,2,3,0],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[1,2,3,0],[2,2,3,2],[0,2,3,0]],[[0,2,1,1],[1,2,3,0],[3,2,3,2],[1,2,0,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,2],[2,2,0,1]],[[0,2,1,1],[1,2,3,0],[2,2,3,2],[1,3,0,1]],[[0,2,1,1],[1,2,3,0],[3,2,3,2],[1,2,1,0]],[[0,2,1,1],[1,2,3,0],[2,2,3,2],[2,2,1,0]],[[0,2,1,1],[1,2,3,0],[2,2,3,2],[1,3,1,0]],[[0,2,1,1],[1,2,3,0],[3,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,1,3],[0,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[1,2,3,0],[2,3,1,2],[0,2,2,2]],[[0,2,1,1],[1,2,3,0],[3,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,2,3,0],[2,4,1,2],[1,1,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,1,2],[2,1,2,1]],[[0,2,1,1],[1,2,3,0],[3,3,2,1],[0,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[1,2,3,0],[2,3,2,1],[0,2,2,2]],[[0,2,1,1],[1,2,3,0],[3,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,2,3,0],[2,4,2,1],[1,1,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,2,1],[2,1,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[1,2,3,0],[2,3,2,2],[0,1,2,2]],[[0,2,1,1],[1,2,3,0],[3,3,2,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,0],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,0],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[1,2,3,0],[2,3,2,2],[0,2,3,0]],[[0,2,1,1],[1,2,3,0],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[1,2,3,0],[2,3,2,2],[1,0,2,2]],[[0,2,1,1],[1,2,3,0],[3,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,0],[2,4,2,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,0],[2,3,2,2],[2,1,2,0]],[[0,2,1,1],[1,2,3,0],[3,3,3,0],[0,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,4,3,0],[0,2,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,0],[0,3,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,0],[0,2,3,1]],[[0,2,1,1],[1,2,3,0],[3,3,3,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,0],[2,4,3,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,0],[2,1,2,1]],[[0,2,1,1],[1,2,4,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[1,2,3,0],[3,3,3,1],[0,1,2,1]],[[0,2,1,1],[1,2,3,0],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,1],[0,1,2,2]],[[0,2,1,1],[1,2,4,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[1,2,3,0],[3,3,3,1],[0,2,1,1]],[[0,2,1,1],[1,2,3,0],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[1,2,3,0],[2,3,4,1],[0,2,1,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,1],[0,3,1,1]],[[0,2,1,1],[1,2,4,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,2,3,0],[3,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,2,3,0],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,1],[2,0,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,1],[1,0,2,2]],[[0,2,1,1],[1,2,4,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,2,3,0],[3,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,2,3,0],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[1,2,3,0],[2,3,4,1],[1,1,1,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,1],[2,1,1,1]],[[0,2,1,1],[1,2,3,0],[3,3,3,1],[1,2,0,1]],[[0,2,1,1],[1,2,3,0],[2,4,3,1],[1,2,0,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[1,4,3,0],[2,1,2,1],[1,2,1,0]],[[1,2,3,1],[1,3,3,0],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[1,3,3,0],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[1,3,3,0],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[1,4,3,0],[2,1,2,1],[1,2,0,1]],[[0,2,1,1],[1,2,4,0],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[0,0,2,2]],[[0,2,1,1],[1,2,4,0],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,0],[3,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,0],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,0],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[0,1,1,2]],[[0,2,1,1],[1,2,4,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,0],[3,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,0],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,0],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,0],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[0,1,3,0]],[[0,2,1,1],[1,2,4,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,2,3,0],[3,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,2,3,0],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[1,2,3,0],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[0,2,0,2]],[[0,2,1,1],[1,2,4,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,2,3,0],[3,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,2,3,0],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[1,2,3,0],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[1,2,3,0],[2,3,3,3],[0,2,1,0]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,3,1],[1,3,3,0],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[1,3,3,0],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[1,3,3,0],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[1,4,3,0],[2,1,2,0],[1,2,1,1]],[[0,2,1,1],[1,2,4,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,0],[3,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,0],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,0],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[2,0,1,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[1,0,1,2]],[[0,2,1,1],[1,2,4,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,0],[3,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,0],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,0],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,0],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[2,0,2,0]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[1,0,3,0]],[[0,2,1,1],[1,2,4,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,0],[3,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,0],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,0],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[2,1,0,1]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[1,1,0,2]],[[0,2,1,1],[1,2,4,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,2,3,0],[3,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,2,3,0],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[1,2,3,0],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[1,2,3,0],[2,3,3,3],[1,1,1,0]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,3,1],[1,3,3,0],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[1,3,3,0],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[1,3,3,0],[2,1,2,0],[1,2,1,1]],[[0,2,1,1],[1,2,3,0],[3,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,2,3,0],[2,4,3,2],[1,2,0,0]],[[0,2,1,1],[1,2,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,4,3,0],[2,1,1,1],[1,2,2,0]],[[1,2,3,1],[1,3,3,0],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[1,3,3,0],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[1,3,3,0],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[1,4,3,0],[2,1,1,0],[1,2,2,1]],[[1,2,3,1],[1,3,3,0],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[1,3,3,0],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[1,3,3,0],[2,1,1,0],[1,2,2,1]],[[0,2,1,1],[1,2,4,1],[0,3,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[0,3,4,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[0,3,3,0],[1,3,2,1]],[[0,2,1,1],[1,2,3,1],[0,3,3,0],[1,2,3,1]],[[0,2,1,1],[1,2,3,1],[0,3,3,0],[1,2,2,2]],[[0,2,1,1],[1,2,4,1],[0,3,3,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[0,3,4,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[0,3,3,1],[1,3,2,0]],[[0,2,1,1],[1,2,3,1],[0,3,3,1],[1,2,3,0]],[[0,2,1,1],[1,2,3,1],[1,0,3,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[1,0,3,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,1],[1,0,3,2],[1,2,2,2]],[[0,2,1,1],[1,2,3,1],[1,1,2,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[1,1,2,2],[2,2,2,1]],[[0,2,1,1],[1,2,3,1],[1,1,2,2],[1,3,2,1]],[[0,2,1,1],[1,2,3,1],[1,1,2,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,1],[1,1,2,2],[1,2,2,2]],[[0,2,1,1],[1,2,4,1],[1,1,3,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[1,1,4,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[1,1,3,1],[2,2,2,1]],[[0,2,1,1],[1,2,3,1],[1,1,3,1],[1,3,2,1]],[[0,2,1,1],[1,2,3,1],[1,1,3,1],[1,2,3,1]],[[0,2,1,1],[1,2,3,1],[1,1,3,1],[1,2,2,2]],[[0,2,1,1],[1,2,4,1],[1,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,1],[1,1,4,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,1],[1,1,3,3],[1,2,1,1]],[[0,2,1,1],[1,2,3,1],[1,1,3,2],[1,2,1,2]],[[0,2,1,1],[1,2,4,1],[1,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[1,1,4,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[1,1,3,3],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[1,1,3,2],[2,2,2,0]],[[0,2,1,1],[1,2,3,1],[1,1,3,2],[1,3,2,0]],[[0,2,1,1],[1,2,3,1],[1,1,3,2],[1,2,3,0]],[[0,2,1,1],[1,2,3,1],[1,2,2,3],[1,1,2,1]],[[0,2,1,1],[1,2,3,1],[1,2,2,2],[1,1,3,1]],[[0,2,1,1],[1,2,3,1],[1,2,2,2],[1,1,2,2]],[[0,2,1,1],[1,2,4,1],[1,2,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[1,2,4,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,0],[2,2,2,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,0],[1,3,2,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,0],[1,2,3,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,0],[1,2,2,2]],[[0,2,1,1],[1,2,4,1],[1,2,3,1],[1,1,2,1]],[[0,2,1,1],[1,2,3,1],[1,2,4,1],[1,1,2,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,1],[1,1,3,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,1],[1,1,2,2]],[[0,2,1,1],[1,2,4,1],[1,2,3,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[1,2,4,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[1,2,3,1],[2,2,2,0]],[[0,2,1,1],[1,2,3,1],[1,2,3,1],[1,3,2,0]],[[0,2,1,1],[1,2,3,1],[1,2,3,1],[1,2,3,0]],[[0,2,1,1],[1,2,4,1],[1,2,3,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,1],[1,2,4,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,3],[1,0,2,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,2],[1,0,2,2]],[[0,2,1,1],[1,2,4,1],[1,2,3,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,1],[1,2,4,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,3],[1,1,1,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,2],[1,1,1,2]],[[0,2,1,1],[1,2,4,1],[1,2,3,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,1],[1,2,4,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,1],[1,2,3,3],[1,1,2,0]],[[0,2,1,1],[1,2,3,1],[1,2,3,2],[1,1,3,0]],[[0,2,1,1],[1,2,4,1],[1,2,3,2],[1,2,0,1]],[[0,2,1,1],[1,2,3,1],[1,2,4,2],[1,2,0,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,3],[1,2,0,1]],[[0,2,1,1],[1,2,3,1],[1,2,3,2],[1,2,0,2]],[[0,2,1,1],[1,2,4,1],[1,2,3,2],[1,2,1,0]],[[0,2,1,1],[1,2,3,1],[1,2,4,2],[1,2,1,0]],[[0,2,1,1],[1,2,3,1],[1,2,3,3],[1,2,1,0]],[[0,2,1,1],[1,2,3,1],[1,4,2,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[1,3,2,0],[2,2,2,1]],[[0,2,1,1],[1,2,3,1],[1,3,2,0],[1,3,2,1]],[[0,2,1,1],[1,2,3,1],[1,3,2,0],[1,2,3,1]],[[0,2,1,1],[1,2,3,1],[1,3,2,0],[1,2,2,2]],[[0,2,1,1],[1,2,3,1],[1,4,2,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[1,3,2,1],[2,2,2,0]],[[0,2,1,1],[1,2,3,1],[1,3,2,1],[1,3,2,0]],[[0,2,1,1],[1,2,3,1],[1,3,2,1],[1,2,3,0]],[[0,2,1,1],[1,2,4,1],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,1],[1,4,3,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,1],[1,3,4,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,1],[1,3,3,0],[1,1,3,1]],[[0,2,1,1],[1,2,3,1],[1,3,3,0],[1,1,2,2]],[[0,2,1,1],[1,2,4,1],[1,3,3,0],[1,2,1,1]],[[0,2,1,1],[1,2,3,1],[1,4,3,0],[1,2,1,1]],[[0,2,1,1],[1,2,3,1],[1,3,4,0],[1,2,1,1]],[[0,2,1,1],[1,2,3,1],[1,3,3,0],[2,2,1,1]],[[0,2,1,1],[1,2,3,1],[1,3,3,0],[1,3,1,1]],[[0,2,1,1],[1,2,4,1],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,2,3,1],[1,4,3,1],[1,1,1,1]],[[0,2,1,1],[1,2,3,1],[1,3,4,1],[1,1,1,1]],[[0,2,1,1],[1,2,4,1],[1,3,3,1],[1,1,2,0]],[[0,2,1,1],[1,2,3,1],[1,4,3,1],[1,1,2,0]],[[0,2,1,1],[1,2,3,1],[1,3,4,1],[1,1,2,0]],[[0,2,1,1],[1,2,3,1],[1,3,3,1],[1,1,3,0]],[[0,2,1,1],[1,2,4,1],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[1,2,3,1],[1,4,3,1],[1,2,0,1]],[[0,2,1,1],[1,2,3,1],[1,3,4,1],[1,2,0,1]],[[0,2,1,1],[1,2,3,1],[1,3,3,1],[2,2,0,1]],[[0,2,1,1],[1,2,3,1],[1,3,3,1],[1,3,0,1]],[[0,2,1,1],[1,2,4,1],[1,3,3,1],[1,2,1,0]],[[0,2,1,1],[1,2,3,1],[1,4,3,1],[1,2,1,0]],[[0,2,1,1],[1,2,3,1],[1,3,4,1],[1,2,1,0]],[[0,2,1,1],[1,2,3,1],[1,3,3,1],[2,2,1,0]],[[0,2,1,1],[1,2,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,3,4,0],[2,0,3,2],[1,1,1,0]],[[1,2,2,2],[1,3,3,0],[2,0,3,2],[1,1,1,0]],[[1,2,3,1],[1,3,3,0],[2,0,3,2],[1,1,1,0]],[[1,3,2,1],[1,3,3,0],[2,0,3,2],[1,1,1,0]],[[2,2,2,1],[1,3,3,0],[2,0,3,2],[1,1,1,0]],[[1,2,2,1],[1,3,4,0],[2,0,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,0],[2,0,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,0],[2,0,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,0],[2,0,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,3,0],[2,0,3,2],[1,1,0,1]],[[1,2,2,1],[1,3,4,0],[2,0,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,0],[2,0,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,0],[2,0,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,0],[2,0,3,2],[1,0,2,0]],[[2,2,2,1],[1,3,3,0],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[1,3,4,0],[2,0,3,2],[1,0,1,1]],[[1,2,2,2],[1,3,3,0],[2,0,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,0],[2,0,3,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,1],[3,0,2,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,0,2,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,0,2,2],[2,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,0,2,2],[1,3,2,1]],[[0,2,1,1],[1,2,3,1],[2,0,2,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,1],[2,0,2,2],[1,2,2,2]],[[0,2,1,1],[1,2,4,1],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[3,0,3,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,0,4,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,0,3,1],[2,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,0,3,1],[1,3,2,1]],[[0,2,1,1],[1,2,3,1],[2,0,3,1],[1,2,3,1]],[[0,2,1,1],[1,2,3,1],[2,0,3,1],[1,2,2,2]],[[0,2,1,1],[1,2,3,1],[2,0,3,3],[0,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,0,3,2],[0,2,3,1]],[[0,2,1,1],[1,2,3,1],[2,0,3,2],[0,2,2,2]],[[0,2,1,1],[1,2,4,1],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,1],[2,0,4,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,1],[2,0,3,3],[1,2,1,1]],[[0,2,1,1],[1,2,3,1],[2,0,3,2],[1,2,1,2]],[[0,2,1,1],[1,2,4,1],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[3,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,0,4,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,0,3,3],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,0,3,2],[2,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,0,3,2],[1,3,2,0]],[[0,2,1,1],[1,2,3,1],[2,0,3,2],[1,2,3,0]],[[0,2,1,1],[1,2,3,1],[2,1,2,3],[0,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,1,2,2],[0,3,2,1]],[[0,2,1,1],[1,2,3,1],[2,1,2,2],[0,2,3,1]],[[0,2,1,1],[1,2,3,1],[2,1,2,2],[0,2,2,2]],[[0,2,1,1],[1,2,4,1],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[3,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,1,4,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,1,3,0],[2,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,1,3,0],[1,3,2,1]],[[0,2,1,1],[1,2,3,1],[2,1,3,0],[1,2,3,1]],[[0,2,1,1],[1,2,3,1],[2,1,3,0],[1,2,2,2]],[[0,2,1,1],[1,2,4,1],[2,1,3,1],[0,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,1,4,1],[0,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,1,3,1],[0,3,2,1]],[[0,2,1,1],[1,2,3,1],[2,1,3,1],[0,2,3,1]],[[0,2,1,1],[1,2,3,1],[2,1,3,1],[0,2,2,2]],[[0,2,1,1],[1,2,4,1],[2,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[3,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,1,4,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,1,3,1],[2,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,1,3,1],[1,3,2,0]],[[0,2,1,1],[1,2,3,1],[2,1,3,1],[1,2,3,0]],[[0,2,1,1],[1,2,4,1],[2,1,3,2],[0,2,1,1]],[[0,2,1,1],[1,2,3,1],[2,1,4,2],[0,2,1,1]],[[0,2,1,1],[1,2,3,1],[2,1,3,3],[0,2,1,1]],[[0,2,1,1],[1,2,3,1],[2,1,3,2],[0,2,1,2]],[[0,2,1,1],[1,2,4,1],[2,1,3,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,1,4,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,1,3,3],[0,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,1,3,2],[0,3,2,0]],[[0,2,1,1],[1,2,3,1],[2,1,3,2],[0,2,3,0]],[[1,3,2,1],[1,3,3,0],[2,0,3,2],[1,0,1,1]],[[2,2,2,1],[1,3,3,0],[2,0,3,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,1],[3,2,2,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,2,0],[2,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,2,0],[1,3,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,2,0],[1,2,3,1]],[[0,2,1,1],[1,2,3,1],[2,2,2,0],[1,2,2,2]],[[0,2,1,1],[1,2,3,1],[3,2,2,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,2,1],[2,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,2,1],[1,3,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,2,1],[1,2,3,0]],[[0,2,1,1],[1,2,3,1],[2,2,2,3],[0,1,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,2,2],[0,1,3,1]],[[0,2,1,1],[1,2,3,1],[2,2,2,2],[0,1,2,2]],[[0,2,1,1],[1,2,3,1],[2,2,2,3],[1,0,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,2,2],[1,0,3,1]],[[0,2,1,1],[1,2,3,1],[2,2,2,2],[1,0,2,2]],[[0,2,1,1],[1,2,4,1],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,4,0],[0,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,0],[0,3,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,0],[0,2,3,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,0],[0,2,2,2]],[[0,2,1,1],[1,2,3,1],[3,2,3,0],[1,2,1,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,0],[2,2,1,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,0],[1,3,1,1]],[[0,2,1,1],[1,2,4,1],[2,2,3,1],[0,1,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,4,1],[0,1,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,1],[0,1,3,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,1],[0,1,2,2]],[[0,2,1,1],[1,2,4,1],[2,2,3,1],[0,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,4,1],[0,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,3,1],[0,3,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,3,1],[0,2,3,0]],[[0,2,1,1],[1,2,4,1],[2,2,3,1],[1,0,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,4,1],[1,0,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,1],[1,0,3,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,1],[1,0,2,2]],[[0,2,1,1],[1,2,3,1],[3,2,3,1],[1,2,0,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,1],[2,2,0,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,1],[1,3,0,1]],[[0,2,1,1],[1,2,3,1],[3,2,3,1],[1,2,1,0]],[[0,2,1,1],[1,2,3,1],[2,2,3,1],[2,2,1,0]],[[0,2,1,1],[1,2,3,1],[2,2,3,1],[1,3,1,0]],[[0,2,1,1],[1,2,4,1],[2,2,3,2],[0,0,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,4,2],[0,0,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,3],[0,0,2,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,2],[0,0,2,2]],[[0,2,1,1],[1,2,4,1],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,1],[2,2,4,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,3],[0,1,1,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,2],[0,1,1,2]],[[0,2,1,1],[1,2,4,1],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,4,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,3,3],[0,1,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,3,2],[0,1,3,0]],[[0,2,1,1],[1,2,4,1],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[1,2,3,1],[2,2,4,2],[0,2,0,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,3],[0,2,0,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,2],[0,2,0,2]],[[0,2,1,1],[1,2,4,1],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[1,2,3,1],[2,2,4,2],[0,2,1,0]],[[0,2,1,1],[1,2,3,1],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[1,3,4,0],[2,0,3,2],[0,2,1,0]],[[1,2,2,2],[1,3,3,0],[2,0,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,3,0],[2,0,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,3,0],[2,0,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[2,0,3,2],[0,2,1,0]],[[1,2,2,1],[1,3,4,0],[2,0,3,2],[0,2,0,1]],[[0,2,1,1],[1,2,4,1],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,1],[2,2,4,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,3],[1,0,1,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,2],[1,0,1,2]],[[0,2,1,1],[1,2,4,1],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,4,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,3,3],[1,0,2,0]],[[0,2,1,1],[1,2,3,1],[2,2,3,2],[1,0,3,0]],[[0,2,1,1],[1,2,4,1],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,1],[2,2,4,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,3],[1,1,0,1]],[[0,2,1,1],[1,2,3,1],[2,2,3,2],[1,1,0,2]],[[0,2,1,1],[1,2,4,1],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[1,2,3,1],[2,2,4,2],[1,1,1,0]],[[0,2,1,1],[1,2,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,2,2],[1,3,3,0],[2,0,3,2],[0,2,0,1]],[[1,2,3,1],[1,3,3,0],[2,0,3,2],[0,2,0,1]],[[1,3,2,1],[1,3,3,0],[2,0,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,3,0],[2,0,3,2],[0,2,0,1]],[[1,2,2,1],[1,3,4,0],[2,0,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,0],[2,0,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,0],[2,0,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,0],[2,0,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,3,0],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[1,3,4,0],[2,0,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,0],[2,0,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,0],[2,0,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,0],[2,0,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,3,0],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[1,3,4,0],[2,0,3,2],[0,0,2,1]],[[1,2,2,2],[1,3,3,0],[2,0,3,2],[0,0,2,1]],[[1,2,3,1],[1,3,3,0],[2,0,3,2],[0,0,2,1]],[[1,3,2,1],[1,3,3,0],[2,0,3,2],[0,0,2,1]],[[2,2,2,1],[1,3,3,0],[2,0,3,2],[0,0,2,1]],[[0,2,1,1],[1,2,3,1],[3,3,2,0],[0,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,4,2,0],[0,2,2,1]],[[0,2,1,1],[1,2,3,1],[2,3,2,0],[0,3,2,1]],[[0,2,1,1],[1,2,3,1],[2,3,2,0],[0,2,3,1]],[[0,2,1,1],[1,2,3,1],[2,3,2,0],[0,2,2,2]],[[0,2,1,1],[1,2,3,1],[3,3,2,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,1],[2,4,2,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,1],[2,3,2,0],[2,1,2,1]],[[0,2,1,1],[1,2,3,1],[3,3,2,1],[0,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,4,2,1],[0,2,2,0]],[[0,2,1,1],[1,2,3,1],[2,3,2,1],[0,3,2,0]],[[0,2,1,1],[1,2,3,1],[2,3,2,1],[0,2,3,0]],[[0,2,1,1],[1,2,3,1],[3,3,2,1],[1,1,2,0]],[[0,2,1,1],[1,2,3,1],[2,4,2,1],[1,1,2,0]],[[0,2,1,1],[1,2,3,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[1,4,3,0],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,3,0],[2,0,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,3,0],[2,0,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,3,0],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[1,4,3,0],[2,0,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,3,0],[2,0,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,3,0],[2,0,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,3,0],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[1,4,3,0],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[1,3,3,0],[2,0,3,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,0],[2,0,3,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,0],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[1,3,4,0],[2,0,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,3,0],[2,0,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,3,0],[2,0,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,3,0],[2,0,3,1],[1,0,2,1]],[[2,2,2,1],[1,3,3,0],[2,0,3,1],[1,0,2,1]],[[0,2,1,1],[1,2,4,1],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[1,2,3,1],[3,3,3,0],[0,1,2,1]],[[0,2,1,1],[1,2,3,1],[2,4,3,0],[0,1,2,1]],[[0,2,1,1],[1,2,3,1],[2,3,4,0],[0,1,2,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,0],[0,1,3,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,0],[0,1,2,2]],[[0,2,1,1],[1,2,4,1],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[1,2,3,1],[3,3,3,0],[0,2,1,1]],[[0,2,1,1],[1,2,3,1],[2,4,3,0],[0,2,1,1]],[[0,2,1,1],[1,2,3,1],[2,3,4,0],[0,2,1,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,0],[0,3,1,1]],[[0,2,1,1],[1,2,4,1],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[1,2,3,1],[3,3,3,0],[1,0,2,1]],[[0,2,1,1],[1,2,3,1],[2,4,3,0],[1,0,2,1]],[[0,2,1,1],[1,2,3,1],[2,3,4,0],[1,0,2,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,0],[2,0,2,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,0],[1,0,3,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,0],[1,0,2,2]],[[0,2,1,1],[1,2,4,1],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[1,2,3,1],[3,3,3,0],[1,1,1,1]],[[0,2,1,1],[1,2,3,1],[2,4,3,0],[1,1,1,1]],[[0,2,1,1],[1,2,3,1],[2,3,4,0],[1,1,1,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,0],[2,1,1,1]],[[0,2,1,1],[1,2,3,1],[3,3,3,0],[1,2,0,1]],[[0,2,1,1],[1,2,3,1],[2,4,3,0],[1,2,0,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[1,4,3,0],[2,0,3,1],[0,2,2,0]],[[0,2,1,1],[1,2,4,1],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[1,2,3,1],[3,3,3,1],[0,1,1,1]],[[0,2,1,1],[1,2,3,1],[2,4,3,1],[0,1,1,1]],[[0,2,1,1],[1,2,3,1],[2,3,4,1],[0,1,1,1]],[[0,2,1,1],[1,2,4,1],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[1,2,3,1],[3,3,3,1],[0,1,2,0]],[[0,2,1,1],[1,2,3,1],[2,4,3,1],[0,1,2,0]],[[0,2,1,1],[1,2,3,1],[2,3,4,1],[0,1,2,0]],[[0,2,1,1],[1,2,3,1],[2,3,3,1],[0,1,3,0]],[[0,2,1,1],[1,2,4,1],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[1,2,3,1],[3,3,3,1],[0,2,0,1]],[[0,2,1,1],[1,2,3,1],[2,4,3,1],[0,2,0,1]],[[0,2,1,1],[1,2,3,1],[2,3,4,1],[0,2,0,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,1],[0,3,0,1]],[[0,2,1,1],[1,2,4,1],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[1,2,3,1],[3,3,3,1],[0,2,1,0]],[[0,2,1,1],[1,2,3,1],[2,4,3,1],[0,2,1,0]],[[0,2,1,1],[1,2,3,1],[2,3,4,1],[0,2,1,0]],[[0,2,1,1],[1,2,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,3,1],[1,3,3,0],[2,0,3,1],[0,2,2,0]],[[1,3,2,1],[1,3,3,0],[2,0,3,1],[0,2,2,0]],[[2,2,2,1],[1,3,3,0],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[1,3,4,0],[2,0,3,1],[0,1,2,1]],[[1,2,2,2],[1,3,3,0],[2,0,3,1],[0,1,2,1]],[[1,2,3,1],[1,3,3,0],[2,0,3,1],[0,1,2,1]],[[1,3,2,1],[1,3,3,0],[2,0,3,1],[0,1,2,1]],[[0,2,1,1],[1,2,4,1],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[1,2,3,1],[3,3,3,1],[1,0,1,1]],[[0,2,1,1],[1,2,3,1],[2,4,3,1],[1,0,1,1]],[[0,2,1,1],[1,2,3,1],[2,3,4,1],[1,0,1,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,1],[2,0,1,1]],[[0,2,1,1],[1,2,4,1],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[1,2,3,1],[3,3,3,1],[1,0,2,0]],[[0,2,1,1],[1,2,3,1],[2,4,3,1],[1,0,2,0]],[[0,2,1,1],[1,2,3,1],[2,3,4,1],[1,0,2,0]],[[0,2,1,1],[1,2,3,1],[2,3,3,1],[2,0,2,0]],[[0,2,1,1],[1,2,3,1],[2,3,3,1],[1,0,3,0]],[[0,2,1,1],[1,2,4,1],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[1,2,3,1],[3,3,3,1],[1,1,0,1]],[[0,2,1,1],[1,2,3,1],[2,4,3,1],[1,1,0,1]],[[0,2,1,1],[1,2,3,1],[2,3,4,1],[1,1,0,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,1],[2,1,0,1]],[[0,2,1,1],[1,2,4,1],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[1,2,3,1],[3,3,3,1],[1,1,1,0]],[[0,2,1,1],[1,2,3,1],[2,4,3,1],[1,1,1,0]],[[0,2,1,1],[1,2,3,1],[2,3,4,1],[1,1,1,0]],[[0,2,1,1],[1,2,3,1],[2,3,3,1],[2,1,1,0]],[[2,2,2,1],[1,3,3,0],[2,0,3,1],[0,1,2,1]],[[1,2,2,1],[1,4,3,0],[2,0,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,3,0],[2,0,3,0],[1,2,1,1]],[[0,2,1,1],[1,2,3,1],[3,3,3,1],[1,2,0,0]],[[0,2,1,1],[1,2,3,1],[2,4,3,1],[1,2,0,0]],[[0,2,1,1],[1,2,3,1],[2,3,3,1],[2,2,0,0]],[[1,3,2,1],[1,3,3,0],[2,0,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,3,0],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[1,4,3,0],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,3,0],[2,0,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,3,0],[2,0,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,3,0],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[1,4,3,0],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[1,3,3,0],[2,0,3,0],[0,2,2,1]],[[1,3,2,1],[1,3,3,0],[2,0,3,0],[0,2,2,1]],[[2,2,2,1],[1,3,3,0],[2,0,3,0],[0,2,2,1]],[[0,2,1,1],[1,2,4,1],[2,3,3,2],[0,0,1,1]],[[0,2,1,1],[1,2,3,1],[2,3,4,2],[0,0,1,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,3],[0,0,1,1]],[[0,2,1,1],[1,2,3,1],[2,3,3,2],[0,0,1,2]],[[0,2,1,1],[1,2,4,1],[2,3,3,2],[0,0,2,0]],[[0,2,1,1],[1,2,3,1],[2,3,4,2],[0,0,2,0]],[[0,2,1,1],[1,2,3,1],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,4,3,0],[2,0,2,1],[1,2,2,0]],[[1,2,3,1],[1,3,3,0],[2,0,2,1],[1,2,2,0]],[[1,3,2,1],[1,3,3,0],[2,0,2,1],[1,2,2,0]],[[2,2,2,1],[1,3,3,0],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[1,4,3,0],[2,0,2,0],[1,2,2,1]],[[1,2,3,1],[1,3,3,0],[2,0,2,0],[1,2,2,1]],[[1,3,2,1],[1,3,3,0],[2,0,2,0],[1,2,2,1]],[[2,2,2,1],[1,3,3,0],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[1,3,3,0],[1,4,3,1],[1,1,0,0]],[[1,2,2,1],[1,4,3,0],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[1,3,3,0],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[1,3,3,0],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[1,3,3,0],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[1,3,3,0],[1,4,3,1],[0,2,0,0]],[[1,2,2,1],[1,4,3,0],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[1,3,3,0],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[1,3,3,0],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[1,3,3,0],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[1,4,3,0],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[1,3,3,0],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[1,3,3,0],[1,3,3,1],[0,0,2,0]],[[2,2,2,1],[1,3,3,0],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[1,4,3,0],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[1,3,3,0],[1,3,3,1],[0,0,1,1]],[[1,3,2,1],[1,3,3,0],[1,3,3,1],[0,0,1,1]],[[2,2,2,1],[1,3,3,0],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[1,3,3,0],[1,4,3,0],[1,2,0,0]],[[1,2,2,1],[1,4,3,0],[1,3,3,0],[1,2,0,0]],[[1,2,3,1],[1,3,3,0],[1,3,3,0],[1,2,0,0]],[[1,3,2,1],[1,3,3,0],[1,3,3,0],[1,2,0,0]],[[2,2,2,1],[1,3,3,0],[1,3,3,0],[1,2,0,0]],[[0,2,1,2],[1,2,3,2],[1,0,2,2],[1,2,2,1]],[[0,2,1,1],[1,2,4,2],[1,0,2,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,3],[1,0,2,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[1,0,2,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[1,0,2,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,2],[1,0,2,2],[1,2,2,2]],[[0,2,1,2],[1,2,3,2],[1,0,3,2],[1,1,2,1]],[[0,2,1,1],[1,2,4,2],[1,0,3,2],[1,1,2,1]],[[0,2,1,1],[1,2,3,3],[1,0,3,2],[1,1,2,1]],[[0,2,1,1],[1,2,3,2],[1,0,3,3],[1,1,2,1]],[[0,2,1,1],[1,2,3,2],[1,0,3,2],[1,1,2,2]],[[0,2,1,2],[1,2,3,2],[1,0,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,4,2],[1,0,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,3],[1,0,3,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,2],[1,0,3,3],[1,2,1,1]],[[0,2,1,1],[1,2,3,2],[1,0,3,2],[1,2,1,2]],[[0,2,1,2],[1,2,3,2],[1,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,4,2],[1,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,3],[1,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,2],[1,0,3,3],[1,2,2,0]],[[0,2,1,2],[1,2,3,2],[1,1,1,2],[1,2,2,1]],[[0,2,1,1],[1,2,4,2],[1,1,1,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,3],[1,1,1,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[1,1,1,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[1,1,1,2],[2,2,2,1]],[[0,2,1,1],[1,2,3,2],[1,1,1,2],[1,3,2,1]],[[0,2,1,1],[1,2,3,2],[1,1,1,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,2],[1,1,1,2],[1,2,2,2]],[[0,2,1,2],[1,2,3,2],[1,1,2,2],[1,2,1,1]],[[0,2,1,1],[1,2,4,2],[1,1,2,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,3],[1,1,2,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,2],[1,1,2,3],[1,2,1,1]],[[0,2,1,1],[1,2,3,2],[1,1,2,2],[1,2,1,2]],[[0,2,1,2],[1,2,3,2],[1,1,2,2],[1,2,2,0]],[[0,2,1,1],[1,2,4,2],[1,1,2,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,3],[1,1,2,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,2],[1,1,2,3],[1,2,2,0]],[[0,2,1,2],[1,2,3,2],[1,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,4,2],[1,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,3],[1,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[1,1,4,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[1,1,3,0],[2,2,2,1]],[[0,2,1,1],[1,2,3,2],[1,1,3,0],[1,3,2,1]],[[0,2,1,1],[1,2,3,2],[1,1,3,0],[1,2,3,1]],[[0,2,1,1],[1,2,3,2],[1,1,3,0],[1,2,2,2]],[[0,2,1,2],[1,2,3,2],[1,1,3,1],[1,2,1,1]],[[0,2,1,1],[1,2,4,2],[1,1,3,1],[1,2,1,1]],[[0,2,1,1],[1,2,3,3],[1,1,3,1],[1,2,1,1]],[[0,2,1,1],[1,2,3,2],[1,1,4,1],[1,2,1,1]],[[0,2,1,2],[1,2,3,2],[1,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,2,4,2],[1,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,3],[1,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,2],[1,1,4,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,2],[1,1,3,1],[2,2,2,0]],[[0,2,1,1],[1,2,3,2],[1,1,3,1],[1,3,2,0]],[[0,2,1,1],[1,2,3,2],[1,1,3,1],[1,2,3,0]],[[0,2,1,2],[1,2,3,2],[1,1,3,2],[1,0,2,1]],[[0,2,1,1],[1,2,4,2],[1,1,3,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,3],[1,1,3,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,2],[1,1,3,3],[1,0,2,1]],[[0,2,1,1],[1,2,3,2],[1,1,3,2],[1,0,2,2]],[[0,2,1,2],[1,2,3,2],[1,1,3,2],[1,1,1,1]],[[0,2,1,1],[1,2,4,2],[1,1,3,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,3],[1,1,3,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,2],[1,1,3,3],[1,1,1,1]],[[0,2,1,1],[1,2,3,2],[1,1,3,2],[1,1,1,2]],[[0,2,1,2],[1,2,3,2],[1,1,3,2],[1,1,2,0]],[[0,2,1,1],[1,2,4,2],[1,1,3,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,3],[1,1,3,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,2],[1,1,3,3],[1,1,2,0]],[[0,2,1,2],[1,2,3,2],[1,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,2,4,2],[1,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,3],[1,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[1,2,0,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[1,2,0,2],[2,2,2,1]],[[0,2,1,1],[1,2,3,2],[1,2,0,2],[1,3,2,1]],[[0,2,1,1],[1,2,3,2],[1,2,0,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,2],[1,2,0,2],[1,2,2,2]],[[0,2,1,2],[1,2,3,2],[1,2,1,2],[1,1,2,1]],[[0,2,1,1],[1,2,4,2],[1,2,1,2],[1,1,2,1]],[[0,2,1,1],[1,2,3,3],[1,2,1,2],[1,1,2,1]],[[0,2,1,1],[1,2,3,2],[1,2,1,3],[1,1,2,1]],[[0,2,1,1],[1,2,3,2],[1,2,1,2],[1,1,3,1]],[[0,2,1,1],[1,2,3,2],[1,2,1,2],[1,1,2,2]],[[0,2,1,2],[1,2,3,2],[1,2,2,2],[1,0,2,1]],[[0,2,1,1],[1,2,4,2],[1,2,2,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,3],[1,2,2,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,2],[1,2,2,3],[1,0,2,1]],[[0,2,1,1],[1,2,3,2],[1,2,2,2],[1,0,2,2]],[[0,2,1,2],[1,2,3,2],[1,2,2,2],[1,1,1,1]],[[0,2,1,1],[1,2,4,2],[1,2,2,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,3],[1,2,2,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,2],[1,2,2,3],[1,1,1,1]],[[0,2,1,1],[1,2,3,2],[1,2,2,2],[1,1,1,2]],[[0,2,1,2],[1,2,3,2],[1,2,2,2],[1,1,2,0]],[[0,2,1,1],[1,2,4,2],[1,2,2,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,3],[1,2,2,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,2],[1,2,2,3],[1,1,2,0]],[[0,2,1,2],[1,2,3,2],[1,2,2,2],[1,2,0,1]],[[0,2,1,1],[1,2,4,2],[1,2,2,2],[1,2,0,1]],[[0,2,1,1],[1,2,3,3],[1,2,2,2],[1,2,0,1]],[[0,2,1,1],[1,2,3,2],[1,2,2,3],[1,2,0,1]],[[0,2,1,1],[1,2,3,2],[1,2,2,2],[1,2,0,2]],[[0,2,1,2],[1,2,3,2],[1,2,2,2],[1,2,1,0]],[[0,2,1,1],[1,2,4,2],[1,2,2,2],[1,2,1,0]],[[0,2,1,1],[1,2,3,3],[1,2,2,2],[1,2,1,0]],[[0,2,1,1],[1,2,3,2],[1,2,2,3],[1,2,1,0]],[[1,2,2,1],[1,3,3,0],[1,4,3,0],[1,1,1,0]],[[1,2,2,1],[1,4,3,0],[1,3,3,0],[1,1,1,0]],[[1,2,3,1],[1,3,3,0],[1,3,3,0],[1,1,1,0]],[[1,3,2,1],[1,3,3,0],[1,3,3,0],[1,1,1,0]],[[2,2,2,1],[1,3,3,0],[1,3,3,0],[1,1,1,0]],[[0,2,1,2],[1,2,3,2],[1,2,3,0],[1,1,2,1]],[[0,2,1,1],[1,2,4,2],[1,2,3,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,3],[1,2,3,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,2],[1,2,4,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,2],[1,2,3,0],[1,1,3,1]],[[0,2,1,1],[1,2,3,2],[1,2,3,0],[1,1,2,2]],[[0,2,1,2],[1,2,3,2],[1,2,3,0],[1,2,1,1]],[[0,2,1,1],[1,2,4,2],[1,2,3,0],[1,2,1,1]],[[0,2,1,1],[1,2,3,3],[1,2,3,0],[1,2,1,1]],[[0,2,1,1],[1,2,3,2],[1,2,4,0],[1,2,1,1]],[[0,2,1,2],[1,2,3,2],[1,2,3,1],[1,0,2,1]],[[0,2,1,1],[1,2,4,2],[1,2,3,1],[1,0,2,1]],[[0,2,1,1],[1,2,3,3],[1,2,3,1],[1,0,2,1]],[[0,2,1,1],[1,2,3,2],[1,2,4,1],[1,0,2,1]],[[0,2,1,2],[1,2,3,2],[1,2,3,1],[1,1,1,1]],[[0,2,1,1],[1,2,4,2],[1,2,3,1],[1,1,1,1]],[[0,2,1,1],[1,2,3,3],[1,2,3,1],[1,1,1,1]],[[0,2,1,1],[1,2,3,2],[1,2,4,1],[1,1,1,1]],[[0,2,1,2],[1,2,3,2],[1,2,3,1],[1,1,2,0]],[[0,2,1,1],[1,2,4,2],[1,2,3,1],[1,1,2,0]],[[0,2,1,1],[1,2,3,3],[1,2,3,1],[1,1,2,0]],[[0,2,1,1],[1,2,3,2],[1,2,4,1],[1,1,2,0]],[[0,2,1,1],[1,2,3,2],[1,2,3,1],[1,1,3,0]],[[0,2,1,2],[1,2,3,2],[1,2,3,1],[1,2,0,1]],[[0,2,1,1],[1,2,4,2],[1,2,3,1],[1,2,0,1]],[[0,2,1,1],[1,2,3,3],[1,2,3,1],[1,2,0,1]],[[0,2,1,1],[1,2,3,2],[1,2,4,1],[1,2,0,1]],[[0,2,1,2],[1,2,3,2],[1,2,3,1],[1,2,1,0]],[[0,2,1,1],[1,2,4,2],[1,2,3,1],[1,2,1,0]],[[0,2,1,1],[1,2,3,3],[1,2,3,1],[1,2,1,0]],[[0,2,1,1],[1,2,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,2,1],[1,3,3,0],[1,4,3,0],[1,0,2,0]],[[1,2,2,1],[1,4,3,0],[1,3,3,0],[1,0,2,0]],[[1,2,3,1],[1,3,3,0],[1,3,3,0],[1,0,2,0]],[[1,3,2,1],[1,3,3,0],[1,3,3,0],[1,0,2,0]],[[2,2,2,1],[1,3,3,0],[1,3,3,0],[1,0,2,0]],[[0,2,1,2],[1,2,3,2],[1,2,3,2],[1,1,0,1]],[[0,2,1,1],[1,2,4,2],[1,2,3,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,3],[1,2,3,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[1,3,3,0],[1,3,3,0],[0,3,1,0]],[[1,2,2,1],[1,3,3,0],[1,4,3,0],[0,2,1,0]],[[1,2,2,1],[1,4,3,0],[1,3,3,0],[0,2,1,0]],[[1,2,3,1],[1,3,3,0],[1,3,3,0],[0,2,1,0]],[[1,3,2,1],[1,3,3,0],[1,3,3,0],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[1,3,3,0],[0,2,1,0]],[[1,2,2,1],[1,3,3,0],[1,4,3,0],[0,1,2,0]],[[1,2,2,1],[1,4,3,0],[1,3,3,0],[0,1,2,0]],[[1,2,3,1],[1,3,3,0],[1,3,3,0],[0,1,2,0]],[[1,3,2,1],[1,3,3,0],[1,3,3,0],[0,1,2,0]],[[2,2,2,1],[1,3,3,0],[1,3,3,0],[0,1,2,0]],[[1,2,2,1],[1,4,3,0],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[1,3,3,0],[1,3,3,0],[0,0,2,1]],[[0,2,1,2],[1,2,3,2],[1,3,0,1],[1,2,2,1]],[[0,2,1,1],[1,2,4,2],[1,3,0,1],[1,2,2,1]],[[0,2,1,1],[1,2,3,3],[1,3,0,1],[1,2,2,1]],[[0,2,1,2],[1,2,3,2],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,2,4,2],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,2,3,3],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,2,3,2],[1,3,0,3],[1,1,2,1]],[[0,2,1,1],[1,2,3,2],[1,3,0,2],[1,1,3,1]],[[0,2,1,1],[1,2,3,2],[1,3,0,2],[1,1,2,2]],[[0,2,1,2],[1,2,3,2],[1,3,0,2],[1,2,1,1]],[[0,2,1,1],[1,2,4,2],[1,3,0,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,3],[1,3,0,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,2],[1,3,0,3],[1,2,1,1]],[[0,2,1,1],[1,2,3,2],[1,3,0,2],[1,2,1,2]],[[0,2,1,2],[1,2,3,2],[1,3,0,2],[1,2,2,0]],[[0,2,1,1],[1,2,4,2],[1,3,0,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,3],[1,3,0,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,2],[1,3,0,3],[1,2,2,0]],[[0,2,1,2],[1,2,3,2],[1,3,1,0],[1,2,2,1]],[[0,2,1,1],[1,2,4,2],[1,3,1,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,3],[1,3,1,0],[1,2,2,1]],[[0,2,1,2],[1,2,3,2],[1,3,1,1],[1,2,2,0]],[[0,2,1,1],[1,2,4,2],[1,3,1,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,3],[1,3,1,1],[1,2,2,0]],[[0,2,1,2],[1,2,3,2],[1,3,1,2],[1,1,1,1]],[[0,2,1,1],[1,2,4,2],[1,3,1,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,3],[1,3,1,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,2],[1,3,1,3],[1,1,1,1]],[[0,2,1,1],[1,2,3,2],[1,3,1,2],[1,1,1,2]],[[0,2,1,2],[1,2,3,2],[1,3,1,2],[1,1,2,0]],[[0,2,1,1],[1,2,4,2],[1,3,1,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,3],[1,3,1,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,2],[1,3,1,3],[1,1,2,0]],[[0,2,1,2],[1,2,3,2],[1,3,1,2],[1,2,0,1]],[[0,2,1,1],[1,2,4,2],[1,3,1,2],[1,2,0,1]],[[0,2,1,1],[1,2,3,3],[1,3,1,2],[1,2,0,1]],[[0,2,1,1],[1,2,3,2],[1,3,1,3],[1,2,0,1]],[[0,2,1,1],[1,2,3,2],[1,3,1,2],[1,2,0,2]],[[0,2,1,2],[1,2,3,2],[1,3,1,2],[1,2,1,0]],[[0,2,1,1],[1,2,4,2],[1,3,1,2],[1,2,1,0]],[[0,2,1,1],[1,2,3,3],[1,3,1,2],[1,2,1,0]],[[0,2,1,1],[1,2,3,2],[1,3,1,3],[1,2,1,0]],[[1,3,2,1],[1,3,3,0],[1,3,3,0],[0,0,2,1]],[[2,2,2,1],[1,3,3,0],[1,3,3,0],[0,0,2,1]],[[0,2,1,2],[1,2,3,2],[1,3,2,0],[1,1,2,1]],[[0,2,1,1],[1,2,4,2],[1,3,2,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,3],[1,3,2,0],[1,1,2,1]],[[0,2,1,2],[1,2,3,2],[1,3,2,0],[1,2,1,1]],[[0,2,1,1],[1,2,4,2],[1,3,2,0],[1,2,1,1]],[[0,2,1,1],[1,2,3,3],[1,3,2,0],[1,2,1,1]],[[0,2,1,2],[1,2,3,2],[1,3,2,1],[1,1,1,1]],[[0,2,1,1],[1,2,4,2],[1,3,2,1],[1,1,1,1]],[[0,2,1,1],[1,2,3,3],[1,3,2,1],[1,1,1,1]],[[0,2,1,2],[1,2,3,2],[1,3,2,1],[1,1,2,0]],[[0,2,1,1],[1,2,4,2],[1,3,2,1],[1,1,2,0]],[[0,2,1,1],[1,2,3,3],[1,3,2,1],[1,1,2,0]],[[0,2,1,2],[1,2,3,2],[1,3,2,1],[1,2,0,1]],[[0,2,1,1],[1,2,4,2],[1,3,2,1],[1,2,0,1]],[[0,2,1,1],[1,2,3,3],[1,3,2,1],[1,2,0,1]],[[0,2,1,2],[1,2,3,2],[1,3,2,1],[1,2,1,0]],[[0,2,1,1],[1,2,4,2],[1,3,2,1],[1,2,1,0]],[[0,2,1,1],[1,2,3,3],[1,3,2,1],[1,2,1,0]],[[0,2,1,2],[1,2,3,2],[1,3,3,1],[1,2,0,0]],[[0,2,1,1],[1,2,4,2],[1,3,3,1],[1,2,0,0]],[[0,2,1,1],[1,2,3,3],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[1,3,3,0],[1,4,2,1],[1,2,0,0]],[[1,2,2,1],[1,4,3,0],[1,3,2,1],[1,2,0,0]],[[1,2,3,1],[1,3,3,0],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[1,3,3,0],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[1,3,3,0],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[1,3,3,0],[1,4,2,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,0],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,0],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,0],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,0],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[1,3,3,0],[1,4,2,1],[1,1,0,1]],[[1,2,2,1],[1,4,3,0],[1,3,2,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,0],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[1,3,3,0],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[1,3,3,0],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[1,3,3,0],[1,4,2,1],[1,0,2,0]],[[1,2,2,1],[1,4,3,0],[1,3,2,1],[1,0,2,0]],[[1,2,3,1],[1,3,3,0],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[1,3,3,0],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[1,3,3,0],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[1,4,3,0],[1,3,2,1],[1,0,1,1]],[[1,2,3,1],[1,3,3,0],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[1,3,3,0],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[1,3,3,0],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[1,3,3,0],[1,3,2,1],[0,3,1,0]],[[1,2,2,1],[1,3,3,0],[1,4,2,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,0],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,0],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,0],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[1,3,3,0],[1,4,2,1],[0,2,0,1]],[[1,2,2,1],[1,4,3,0],[1,3,2,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,0],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,0],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,0],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[1,3,3,0],[1,4,2,1],[0,1,2,0]],[[1,2,2,1],[1,4,3,0],[1,3,2,1],[0,1,2,0]],[[1,2,3,1],[1,3,3,0],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[1,3,3,0],[1,3,2,1],[0,1,2,0]],[[0,2,1,2],[1,2,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[1,2,4,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,3],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[3,0,1,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,1,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,1,2],[2,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,1,2],[1,3,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,1,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,2],[2,0,1,2],[1,2,2,2]],[[0,2,1,2],[1,2,3,2],[2,0,2,2],[0,2,2,1]],[[0,2,1,1],[1,2,4,2],[2,0,2,2],[0,2,2,1]],[[0,2,1,1],[1,2,3,3],[2,0,2,2],[0,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,2,3],[0,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,2,2],[0,2,3,1]],[[0,2,1,1],[1,2,3,2],[2,0,2,2],[0,2,2,2]],[[0,2,1,2],[1,2,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,1,1],[1,2,4,2],[2,0,2,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,3],[2,0,2,2],[1,2,1,1]],[[0,2,1,1],[1,2,3,2],[2,0,2,3],[1,2,1,1]],[[0,2,1,1],[1,2,3,2],[2,0,2,2],[1,2,1,2]],[[0,2,1,2],[1,2,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[1,2,4,2],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,3],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[1,2,3,2],[2,0,2,3],[1,2,2,0]],[[0,2,1,2],[1,2,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,4,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,3],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[3,0,3,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,4,0],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,3,0],[2,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,3,0],[1,3,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,3,0],[1,2,3,1]],[[0,2,1,1],[1,2,3,2],[2,0,3,0],[1,2,2,2]],[[0,2,1,2],[1,2,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[1,2,4,2],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[1,2,3,3],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[1,2,3,2],[2,0,4,1],[1,2,1,1]],[[0,2,1,2],[1,2,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[1,2,4,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,3],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,2],[3,0,3,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,2],[2,0,4,1],[1,2,2,0]],[[0,2,1,1],[1,2,3,2],[2,0,3,1],[2,2,2,0]],[[0,2,1,1],[1,2,3,2],[2,0,3,1],[1,3,2,0]],[[0,2,1,1],[1,2,3,2],[2,0,3,1],[1,2,3,0]],[[0,2,1,2],[1,2,3,2],[2,0,3,2],[0,1,2,1]],[[0,2,1,1],[1,2,4,2],[2,0,3,2],[0,1,2,1]],[[0,2,1,1],[1,2,3,3],[2,0,3,2],[0,1,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,3,3],[0,1,2,1]],[[0,2,1,1],[1,2,3,2],[2,0,3,2],[0,1,2,2]],[[0,2,1,2],[1,2,3,2],[2,0,3,2],[0,2,1,1]],[[0,2,1,1],[1,2,4,2],[2,0,3,2],[0,2,1,1]],[[0,2,1,1],[1,2,3,3],[2,0,3,2],[0,2,1,1]],[[0,2,1,1],[1,2,3,2],[2,0,3,3],[0,2,1,1]],[[0,2,1,1],[1,2,3,2],[2,0,3,2],[0,2,1,2]],[[0,2,1,2],[1,2,3,2],[2,0,3,2],[0,2,2,0]],[[0,2,1,1],[1,2,4,2],[2,0,3,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,3],[2,0,3,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,2],[2,0,3,3],[0,2,2,0]],[[2,2,2,1],[1,3,3,0],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[1,4,3,0],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[1,3,3,0],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[1,3,3,0],[1,3,2,1],[0,1,1,1]],[[2,2,2,1],[1,3,3,0],[1,3,2,1],[0,1,1,1]],[[0,2,1,2],[1,2,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[1,2,4,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,3],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[3,1,0,2],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,0,3],[1,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,0,2],[2,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,0,2],[1,3,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,0,2],[1,2,3,1]],[[0,2,1,1],[1,2,3,2],[2,1,0,2],[1,2,2,2]],[[0,2,1,2],[1,2,3,2],[2,1,1,2],[0,2,2,1]],[[0,2,1,1],[1,2,4,2],[2,1,1,2],[0,2,2,1]],[[0,2,1,1],[1,2,3,3],[2,1,1,2],[0,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,1,3],[0,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,1,2],[0,3,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,1,2],[0,2,3,1]],[[0,2,1,1],[1,2,3,2],[2,1,1,2],[0,2,2,2]],[[0,2,1,2],[1,2,3,2],[2,1,2,2],[0,2,1,1]],[[0,2,1,1],[1,2,4,2],[2,1,2,2],[0,2,1,1]],[[0,2,1,1],[1,2,3,3],[2,1,2,2],[0,2,1,1]],[[0,2,1,1],[1,2,3,2],[2,1,2,3],[0,2,1,1]],[[0,2,1,1],[1,2,3,2],[2,1,2,2],[0,2,1,2]],[[0,2,1,2],[1,2,3,2],[2,1,2,2],[0,2,2,0]],[[0,2,1,1],[1,2,4,2],[2,1,2,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,3],[2,1,2,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,1],[1,3,3,0],[1,4,2,0],[1,2,0,1]],[[1,2,2,1],[1,4,3,0],[1,3,2,0],[1,2,0,1]],[[1,2,3,1],[1,3,3,0],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[1,3,3,0],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[1,3,3,0],[1,3,2,0],[1,2,0,1]],[[0,2,1,2],[1,2,3,2],[2,1,3,0],[0,2,2,1]],[[0,2,1,1],[1,2,4,2],[2,1,3,0],[0,2,2,1]],[[0,2,1,1],[1,2,3,3],[2,1,3,0],[0,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,4,0],[0,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,3,0],[0,3,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,3,0],[0,2,3,1]],[[0,2,1,1],[1,2,3,2],[2,1,3,0],[0,2,2,2]],[[0,2,1,2],[1,2,3,2],[2,1,3,1],[0,2,1,1]],[[0,2,1,1],[1,2,4,2],[2,1,3,1],[0,2,1,1]],[[0,2,1,1],[1,2,3,3],[2,1,3,1],[0,2,1,1]],[[0,2,1,1],[1,2,3,2],[2,1,4,1],[0,2,1,1]],[[0,2,1,2],[1,2,3,2],[2,1,3,1],[0,2,2,0]],[[0,2,1,1],[1,2,4,2],[2,1,3,1],[0,2,2,0]],[[0,2,1,1],[1,2,3,3],[2,1,3,1],[0,2,2,0]],[[0,2,1,1],[1,2,3,2],[2,1,4,1],[0,2,2,0]],[[0,2,1,1],[1,2,3,2],[2,1,3,1],[0,3,2,0]],[[0,2,1,1],[1,2,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,2,1],[1,3,3,0],[1,4,2,0],[1,1,1,1]],[[1,2,2,1],[1,4,3,0],[1,3,2,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,0],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,0],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[1,3,3,0],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[1,3,3,0],[1,4,2,0],[1,0,2,1]],[[0,2,1,2],[1,2,3,2],[2,1,3,2],[0,0,2,1]],[[0,2,1,1],[1,2,4,2],[2,1,3,2],[0,0,2,1]],[[0,2,1,1],[1,2,3,3],[2,1,3,2],[0,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,3,3],[0,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,1,3,2],[0,0,2,2]],[[0,2,1,2],[1,2,3,2],[2,1,3,2],[0,1,1,1]],[[0,2,1,1],[1,2,4,2],[2,1,3,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,3],[2,1,3,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,2],[2,1,3,3],[0,1,1,1]],[[0,2,1,1],[1,2,3,2],[2,1,3,2],[0,1,1,2]],[[0,2,1,2],[1,2,3,2],[2,1,3,2],[0,1,2,0]],[[0,2,1,1],[1,2,4,2],[2,1,3,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,3],[2,1,3,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[1,4,3,0],[1,3,2,0],[1,0,2,1]],[[1,2,3,1],[1,3,3,0],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[1,3,3,0],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[1,3,3,0],[1,3,2,0],[1,0,2,1]],[[0,2,1,2],[1,2,3,2],[2,1,3,2],[1,0,1,1]],[[0,2,1,1],[1,2,4,2],[2,1,3,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,3],[2,1,3,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,2],[2,1,3,3],[1,0,1,1]],[[0,2,1,1],[1,2,3,2],[2,1,3,2],[1,0,1,2]],[[0,2,1,2],[1,2,3,2],[2,1,3,2],[1,0,2,0]],[[0,2,1,1],[1,2,4,2],[2,1,3,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,3],[2,1,3,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[1,3,3,0],[1,3,2,0],[0,3,1,1]],[[1,2,2,1],[1,3,3,0],[1,4,2,0],[0,2,1,1]],[[1,2,2,1],[1,4,3,0],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,0],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,0],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[1,3,3,0],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[1,3,3,0],[1,4,2,0],[0,1,2,1]],[[1,2,2,1],[1,4,3,0],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[1,3,3,0],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[1,3,3,0],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[1,3,3,0],[1,3,2,0],[0,1,2,1]],[[0,2,1,2],[1,2,3,2],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[1,2,4,2],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[1,2,3,3],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,0,3],[0,2,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,0,2],[0,3,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,0,2],[0,2,3,1]],[[0,2,1,1],[1,2,3,2],[2,2,0,2],[0,2,2,2]],[[0,2,1,2],[1,2,3,2],[2,2,1,2],[0,1,2,1]],[[0,2,1,1],[1,2,4,2],[2,2,1,2],[0,1,2,1]],[[0,2,1,1],[1,2,3,3],[2,2,1,2],[0,1,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,1,3],[0,1,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,1,2],[0,1,3,1]],[[0,2,1,1],[1,2,3,2],[2,2,1,2],[0,1,2,2]],[[0,2,1,2],[1,2,3,2],[2,2,1,2],[1,0,2,1]],[[0,2,1,1],[1,2,4,2],[2,2,1,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,3],[2,2,1,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,1,3],[1,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,1,2],[1,0,3,1]],[[0,2,1,1],[1,2,3,2],[2,2,1,2],[1,0,2,2]],[[0,2,1,2],[1,2,3,2],[2,2,2,2],[0,0,2,1]],[[0,2,1,1],[1,2,4,2],[2,2,2,2],[0,0,2,1]],[[0,2,1,1],[1,2,3,3],[2,2,2,2],[0,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,2,3],[0,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,2,2],[0,0,2,2]],[[0,2,1,2],[1,2,3,2],[2,2,2,2],[0,1,1,1]],[[0,2,1,1],[1,2,4,2],[2,2,2,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,3],[2,2,2,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,2],[2,2,2,3],[0,1,1,1]],[[0,2,1,1],[1,2,3,2],[2,2,2,2],[0,1,1,2]],[[0,2,1,2],[1,2,3,2],[2,2,2,2],[0,1,2,0]],[[0,2,1,1],[1,2,4,2],[2,2,2,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,3],[2,2,2,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,2],[2,2,2,3],[0,1,2,0]],[[0,2,1,2],[1,2,3,2],[2,2,2,2],[0,2,0,1]],[[0,2,1,1],[1,2,4,2],[2,2,2,2],[0,2,0,1]],[[0,2,1,1],[1,2,3,3],[2,2,2,2],[0,2,0,1]],[[0,2,1,1],[1,2,3,2],[2,2,2,3],[0,2,0,1]],[[0,2,1,1],[1,2,3,2],[2,2,2,2],[0,2,0,2]],[[0,2,1,2],[1,2,3,2],[2,2,2,2],[0,2,1,0]],[[0,2,1,1],[1,2,4,2],[2,2,2,2],[0,2,1,0]],[[0,2,1,1],[1,2,3,3],[2,2,2,2],[0,2,1,0]],[[0,2,1,1],[1,2,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,2,1],[1,3,3,0],[1,4,1,1],[1,1,2,0]],[[1,2,2,1],[1,4,3,0],[1,3,1,1],[1,1,2,0]],[[1,2,3,1],[1,3,3,0],[1,3,1,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,0],[1,3,1,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,0],[1,3,1,1],[1,1,2,0]],[[0,2,1,2],[1,2,3,2],[2,2,2,2],[1,0,1,1]],[[0,2,1,1],[1,2,4,2],[2,2,2,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,3],[2,2,2,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,2],[2,2,2,3],[1,0,1,1]],[[0,2,1,1],[1,2,3,2],[2,2,2,2],[1,0,1,2]],[[0,2,1,2],[1,2,3,2],[2,2,2,2],[1,0,2,0]],[[0,2,1,1],[1,2,4,2],[2,2,2,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,3],[2,2,2,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,2],[2,2,2,3],[1,0,2,0]],[[0,2,1,2],[1,2,3,2],[2,2,2,2],[1,1,0,1]],[[0,2,1,1],[1,2,4,2],[2,2,2,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,3],[2,2,2,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,2],[2,2,2,3],[1,1,0,1]],[[0,2,1,1],[1,2,3,2],[2,2,2,2],[1,1,0,2]],[[0,2,1,2],[1,2,3,2],[2,2,2,2],[1,1,1,0]],[[0,2,1,1],[1,2,4,2],[2,2,2,2],[1,1,1,0]],[[0,2,1,1],[1,2,3,3],[2,2,2,2],[1,1,1,0]],[[0,2,1,1],[1,2,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,1],[1,3,3,0],[1,3,1,1],[0,3,2,0]],[[1,2,2,1],[1,3,3,0],[1,4,1,1],[0,2,2,0]],[[1,2,2,1],[1,4,3,0],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[1,3,3,0],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[1,3,3,0],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[1,3,3,0],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[1,3,3,0],[1,4,1,0],[1,1,2,1]],[[1,2,2,1],[1,4,3,0],[1,3,1,0],[1,1,2,1]],[[1,2,3,1],[1,3,3,0],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[1,3,3,0],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[1,3,3,0],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[1,3,3,0],[1,3,1,0],[0,2,3,1]],[[0,2,1,2],[1,2,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,1,1],[1,2,4,2],[2,2,3,0],[0,1,2,1]],[[0,2,1,1],[1,2,3,3],[2,2,3,0],[0,1,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,4,0],[0,1,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,3,0],[0,1,3,1]],[[0,2,1,1],[1,2,3,2],[2,2,3,0],[0,1,2,2]],[[0,2,1,2],[1,2,3,2],[2,2,3,0],[0,2,1,1]],[[0,2,1,1],[1,2,4,2],[2,2,3,0],[0,2,1,1]],[[0,2,1,1],[1,2,3,3],[2,2,3,0],[0,2,1,1]],[[0,2,1,1],[1,2,3,2],[2,2,4,0],[0,2,1,1]],[[0,2,1,2],[1,2,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,1,1],[1,2,4,2],[2,2,3,0],[1,0,2,1]],[[0,2,1,1],[1,2,3,3],[2,2,3,0],[1,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,4,0],[1,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,3,0],[1,0,3,1]],[[0,2,1,1],[1,2,3,2],[2,2,3,0],[1,0,2,2]],[[0,2,1,2],[1,2,3,2],[2,2,3,0],[1,1,1,1]],[[0,2,1,1],[1,2,4,2],[2,2,3,0],[1,1,1,1]],[[0,2,1,1],[1,2,3,3],[2,2,3,0],[1,1,1,1]],[[0,2,1,1],[1,2,3,2],[2,2,4,0],[1,1,1,1]],[[1,2,2,1],[1,3,3,0],[1,3,1,0],[0,3,2,1]],[[1,2,2,1],[1,3,3,0],[1,4,1,0],[0,2,2,1]],[[1,2,2,1],[1,4,3,0],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[1,3,3,0],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[1,3,3,0],[1,3,1,0],[0,2,2,1]],[[2,2,2,1],[1,3,3,0],[1,3,1,0],[0,2,2,1]],[[0,2,1,2],[1,2,3,2],[2,2,3,1],[0,0,2,1]],[[0,2,1,1],[1,2,4,2],[2,2,3,1],[0,0,2,1]],[[0,2,1,1],[1,2,3,3],[2,2,3,1],[0,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,2,4,1],[0,0,2,1]],[[0,2,1,2],[1,2,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,1,1],[1,2,4,2],[2,2,3,1],[0,1,1,1]],[[0,2,1,1],[1,2,3,3],[2,2,3,1],[0,1,1,1]],[[0,2,1,1],[1,2,3,2],[2,2,4,1],[0,1,1,1]],[[0,2,1,2],[1,2,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,1,1],[1,2,4,2],[2,2,3,1],[0,1,2,0]],[[0,2,1,1],[1,2,3,3],[2,2,3,1],[0,1,2,0]],[[0,2,1,1],[1,2,3,2],[2,2,4,1],[0,1,2,0]],[[0,2,1,1],[1,2,3,2],[2,2,3,1],[0,1,3,0]],[[0,2,1,2],[1,2,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,1,1],[1,2,4,2],[2,2,3,1],[0,2,0,1]],[[0,2,1,1],[1,2,3,3],[2,2,3,1],[0,2,0,1]],[[0,2,1,1],[1,2,3,2],[2,2,4,1],[0,2,0,1]],[[0,2,1,2],[1,2,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,1,1],[1,2,4,2],[2,2,3,1],[0,2,1,0]],[[0,2,1,1],[1,2,3,3],[2,2,3,1],[0,2,1,0]],[[0,2,1,1],[1,2,3,2],[2,2,4,1],[0,2,1,0]],[[0,2,1,2],[1,2,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,1,1],[1,2,4,2],[2,2,3,1],[1,0,1,1]],[[0,2,1,1],[1,2,3,3],[2,2,3,1],[1,0,1,1]],[[0,2,1,1],[1,2,3,2],[2,2,4,1],[1,0,1,1]],[[0,2,1,2],[1,2,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,1,1],[1,2,4,2],[2,2,3,1],[1,0,2,0]],[[0,2,1,1],[1,2,3,3],[2,2,3,1],[1,0,2,0]],[[0,2,1,1],[1,2,3,2],[2,2,4,1],[1,0,2,0]],[[0,2,1,1],[1,2,3,2],[2,2,3,1],[1,0,3,0]],[[0,2,1,2],[1,2,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,1,1],[1,2,4,2],[2,2,3,1],[1,1,0,1]],[[0,2,1,1],[1,2,3,3],[2,2,3,1],[1,1,0,1]],[[0,2,1,1],[1,2,3,2],[2,2,4,1],[1,1,0,1]],[[0,2,1,2],[1,2,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,1,1],[1,2,4,2],[2,2,3,1],[1,1,1,0]],[[0,2,1,1],[1,2,3,3],[2,2,3,1],[1,1,1,0]],[[0,2,1,1],[1,2,3,2],[2,2,4,1],[1,1,1,0]],[[0,2,1,2],[1,2,3,2],[2,2,3,2],[0,1,0,1]],[[0,2,1,1],[1,2,4,2],[2,2,3,2],[0,1,0,1]],[[0,2,1,1],[1,2,3,3],[2,2,3,2],[0,1,0,1]],[[0,2,1,1],[1,2,3,2],[2,2,3,3],[0,1,0,1]],[[0,2,1,2],[1,2,3,2],[2,2,3,2],[1,0,0,1]],[[0,2,1,1],[1,2,4,2],[2,2,3,2],[1,0,0,1]],[[0,2,1,1],[1,2,3,3],[2,2,3,2],[1,0,0,1]],[[0,2,1,1],[1,2,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[1,3,4,0],[1,2,3,2],[0,0,2,0]],[[1,2,2,2],[1,3,3,0],[1,2,3,2],[0,0,2,0]],[[1,2,3,1],[1,3,3,0],[1,2,3,2],[0,0,2,0]],[[1,3,2,1],[1,3,3,0],[1,2,3,2],[0,0,2,0]],[[2,2,2,1],[1,3,3,0],[1,2,3,2],[0,0,2,0]],[[1,2,2,1],[1,3,4,0],[1,2,3,2],[0,0,1,1]],[[1,2,2,2],[1,3,3,0],[1,2,3,2],[0,0,1,1]],[[1,2,3,1],[1,3,3,0],[1,2,3,2],[0,0,1,1]],[[1,3,2,1],[1,3,3,0],[1,2,3,2],[0,0,1,1]],[[2,2,2,1],[1,3,3,0],[1,2,3,2],[0,0,1,1]],[[1,2,2,1],[1,4,3,0],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,3,0],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,3,0],[1,2,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,3,0],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,0],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,3,0],[1,2,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,3,0],[1,2,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,3,0],[1,2,3,1],[1,1,0,1]],[[0,2,1,2],[1,2,3,2],[2,3,0,1],[0,2,2,1]],[[0,2,1,1],[1,2,4,2],[2,3,0,1],[0,2,2,1]],[[0,2,1,1],[1,2,3,3],[2,3,0,1],[0,2,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,0,1],[1,1,2,1]],[[0,2,1,1],[1,2,4,2],[2,3,0,1],[1,1,2,1]],[[0,2,1,1],[1,2,3,3],[2,3,0,1],[1,1,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,0,2],[0,1,2,1]],[[0,2,1,1],[1,2,4,2],[2,3,0,2],[0,1,2,1]],[[0,2,1,1],[1,2,3,3],[2,3,0,2],[0,1,2,1]],[[0,2,1,1],[1,2,3,2],[2,3,0,3],[0,1,2,1]],[[0,2,1,1],[1,2,3,2],[2,3,0,2],[0,1,3,1]],[[0,2,1,1],[1,2,3,2],[2,3,0,2],[0,1,2,2]],[[0,2,1,2],[1,2,3,2],[2,3,0,2],[0,2,1,1]],[[0,2,1,1],[1,2,4,2],[2,3,0,2],[0,2,1,1]],[[0,2,1,1],[1,2,3,3],[2,3,0,2],[0,2,1,1]],[[0,2,1,1],[1,2,3,2],[2,3,0,3],[0,2,1,1]],[[0,2,1,1],[1,2,3,2],[2,3,0,2],[0,2,1,2]],[[0,2,1,2],[1,2,3,2],[2,3,0,2],[0,2,2,0]],[[0,2,1,1],[1,2,4,2],[2,3,0,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,3],[2,3,0,2],[0,2,2,0]],[[0,2,1,1],[1,2,3,2],[2,3,0,3],[0,2,2,0]],[[0,2,1,2],[1,2,3,2],[2,3,0,2],[1,0,2,1]],[[0,2,1,1],[1,2,4,2],[2,3,0,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,3],[2,3,0,2],[1,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,3,0,3],[1,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,3,0,2],[1,0,3,1]],[[0,2,1,1],[1,2,3,2],[2,3,0,2],[1,0,2,2]],[[0,2,1,2],[1,2,3,2],[2,3,0,2],[1,1,1,1]],[[0,2,1,1],[1,2,4,2],[2,3,0,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,3],[2,3,0,2],[1,1,1,1]],[[0,2,1,1],[1,2,3,2],[2,3,0,3],[1,1,1,1]],[[0,2,1,1],[1,2,3,2],[2,3,0,2],[1,1,1,2]],[[0,2,1,2],[1,2,3,2],[2,3,0,2],[1,1,2,0]],[[0,2,1,1],[1,2,4,2],[2,3,0,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,3],[2,3,0,2],[1,1,2,0]],[[0,2,1,1],[1,2,3,2],[2,3,0,3],[1,1,2,0]],[[1,2,2,1],[1,4,3,0],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,3,0],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,3,0],[1,2,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,3,0],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[1,4,3,0],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,3,0],[1,2,3,1],[1,0,1,1]],[[0,2,1,2],[1,2,3,2],[2,3,1,0],[0,2,2,1]],[[0,2,1,1],[1,2,4,2],[2,3,1,0],[0,2,2,1]],[[0,2,1,1],[1,2,3,3],[2,3,1,0],[0,2,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,1,0],[1,1,2,1]],[[0,2,1,1],[1,2,4,2],[2,3,1,0],[1,1,2,1]],[[0,2,1,1],[1,2,3,3],[2,3,1,0],[1,1,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,1,1],[0,2,2,0]],[[0,2,1,1],[1,2,4,2],[2,3,1,1],[0,2,2,0]],[[0,2,1,1],[1,2,3,3],[2,3,1,1],[0,2,2,0]],[[0,2,1,2],[1,2,3,2],[2,3,1,1],[1,1,2,0]],[[0,2,1,1],[1,2,4,2],[2,3,1,1],[1,1,2,0]],[[0,2,1,1],[1,2,3,3],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,0],[1,2,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,3,0],[1,2,3,1],[1,0,1,1]],[[0,2,1,2],[1,2,3,2],[2,3,1,2],[0,1,1,1]],[[0,2,1,1],[1,2,4,2],[2,3,1,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,3],[2,3,1,2],[0,1,1,1]],[[0,2,1,1],[1,2,3,2],[2,3,1,3],[0,1,1,1]],[[0,2,1,1],[1,2,3,2],[2,3,1,2],[0,1,1,2]],[[0,2,1,2],[1,2,3,2],[2,3,1,2],[0,1,2,0]],[[0,2,1,1],[1,2,4,2],[2,3,1,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,3],[2,3,1,2],[0,1,2,0]],[[0,2,1,1],[1,2,3,2],[2,3,1,3],[0,1,2,0]],[[0,2,1,2],[1,2,3,2],[2,3,1,2],[0,2,0,1]],[[0,2,1,1],[1,2,4,2],[2,3,1,2],[0,2,0,1]],[[0,2,1,1],[1,2,3,3],[2,3,1,2],[0,2,0,1]],[[0,2,1,1],[1,2,3,2],[2,3,1,3],[0,2,0,1]],[[0,2,1,1],[1,2,3,2],[2,3,1,2],[0,2,0,2]],[[0,2,1,2],[1,2,3,2],[2,3,1,2],[0,2,1,0]],[[0,2,1,1],[1,2,4,2],[2,3,1,2],[0,2,1,0]],[[0,2,1,1],[1,2,3,3],[2,3,1,2],[0,2,1,0]],[[0,2,1,1],[1,2,3,2],[2,3,1,3],[0,2,1,0]],[[0,2,1,2],[1,2,3,2],[2,3,1,2],[1,0,1,1]],[[0,2,1,1],[1,2,4,2],[2,3,1,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,3],[2,3,1,2],[1,0,1,1]],[[0,2,1,1],[1,2,3,2],[2,3,1,3],[1,0,1,1]],[[0,2,1,1],[1,2,3,2],[2,3,1,2],[1,0,1,2]],[[0,2,1,2],[1,2,3,2],[2,3,1,2],[1,0,2,0]],[[0,2,1,1],[1,2,4,2],[2,3,1,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,3],[2,3,1,2],[1,0,2,0]],[[0,2,1,1],[1,2,3,2],[2,3,1,3],[1,0,2,0]],[[0,2,1,2],[1,2,3,2],[2,3,1,2],[1,1,0,1]],[[0,2,1,1],[1,2,4,2],[2,3,1,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,3],[2,3,1,2],[1,1,0,1]],[[0,2,1,1],[1,2,3,2],[2,3,1,3],[1,1,0,1]],[[0,2,1,1],[1,2,3,2],[2,3,1,2],[1,1,0,2]],[[0,2,1,2],[1,2,3,2],[2,3,1,2],[1,1,1,0]],[[0,2,1,1],[1,2,4,2],[2,3,1,2],[1,1,1,0]],[[0,2,1,1],[1,2,3,3],[2,3,1,2],[1,1,1,0]],[[0,2,1,1],[1,2,3,2],[2,3,1,3],[1,1,1,0]],[[1,2,2,1],[1,4,3,0],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,0],[1,2,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,0],[1,2,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,0],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,0],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,0],[1,2,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,0],[1,2,3,1],[0,2,0,1]],[[0,2,1,2],[1,2,3,2],[2,3,1,2],[1,2,0,0]],[[0,2,1,1],[1,2,4,2],[2,3,1,2],[1,2,0,0]],[[0,2,1,1],[1,2,3,3],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[1,4,3,0],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,3,0],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,3,0],[1,2,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,3,0],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,3,0],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,3,0],[1,2,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,3,0],[1,2,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,3,0],[1,2,3,1],[0,1,1,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,0],[0,1,2,1]],[[0,2,1,1],[1,2,4,2],[2,3,2,0],[0,1,2,1]],[[0,2,1,1],[1,2,3,3],[2,3,2,0],[0,1,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,0],[0,2,1,1]],[[0,2,1,1],[1,2,4,2],[2,3,2,0],[0,2,1,1]],[[0,2,1,1],[1,2,3,3],[2,3,2,0],[0,2,1,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,0],[1,0,2,1]],[[0,2,1,1],[1,2,4,2],[2,3,2,0],[1,0,2,1]],[[0,2,1,1],[1,2,3,3],[2,3,2,0],[1,0,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,0],[1,1,1,1]],[[0,2,1,1],[1,2,4,2],[2,3,2,0],[1,1,1,1]],[[0,2,1,1],[1,2,3,3],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[1,4,3,0],[1,2,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,3,0],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,3,0],[1,2,3,0],[1,1,1,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,1],[0,1,1,1]],[[0,2,1,1],[1,2,4,2],[2,3,2,1],[0,1,1,1]],[[0,2,1,1],[1,2,3,3],[2,3,2,1],[0,1,1,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,1],[0,1,2,0]],[[0,2,1,1],[1,2,4,2],[2,3,2,1],[0,1,2,0]],[[0,2,1,1],[1,2,3,3],[2,3,2,1],[0,1,2,0]],[[0,2,1,2],[1,2,3,2],[2,3,2,1],[0,2,0,1]],[[0,2,1,1],[1,2,4,2],[2,3,2,1],[0,2,0,1]],[[0,2,1,1],[1,2,3,3],[2,3,2,1],[0,2,0,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,1],[0,2,1,0]],[[0,2,1,1],[1,2,4,2],[2,3,2,1],[0,2,1,0]],[[0,2,1,1],[1,2,3,3],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[1,4,3,0],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,3,0],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,3,0],[1,2,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,3,0],[1,2,3,0],[1,0,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,1],[1,0,1,1]],[[0,2,1,1],[1,2,4,2],[2,3,2,1],[1,0,1,1]],[[0,2,1,1],[1,2,3,3],[2,3,2,1],[1,0,1,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,1],[1,0,2,0]],[[0,2,1,1],[1,2,4,2],[2,3,2,1],[1,0,2,0]],[[0,2,1,1],[1,2,3,3],[2,3,2,1],[1,0,2,0]],[[0,2,1,2],[1,2,3,2],[2,3,2,1],[1,1,0,1]],[[0,2,1,1],[1,2,4,2],[2,3,2,1],[1,1,0,1]],[[0,2,1,1],[1,2,3,3],[2,3,2,1],[1,1,0,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,1],[1,1,1,0]],[[0,2,1,1],[1,2,4,2],[2,3,2,1],[1,1,1,0]],[[0,2,1,1],[1,2,3,3],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[1,4,3,0],[1,2,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,0],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,0],[1,2,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,3,0],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,3,0],[1,2,3,0],[0,1,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,1],[1,2,0,0]],[[0,2,1,1],[1,2,4,2],[2,3,2,1],[1,2,0,0]],[[0,2,1,1],[1,2,3,3],[2,3,2,1],[1,2,0,0]],[[1,2,3,1],[1,3,3,0],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,3,0],[1,2,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,3,0],[1,2,3,0],[0,1,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,2,2],[0,0,1,1]],[[0,2,1,1],[1,2,4,2],[2,3,2,2],[0,0,1,1]],[[0,2,1,1],[1,2,3,3],[2,3,2,2],[0,0,1,1]],[[0,2,1,1],[1,2,3,2],[2,3,2,3],[0,0,1,1]],[[0,2,1,1],[1,2,3,2],[2,3,2,2],[0,0,1,2]],[[0,2,1,2],[1,2,3,2],[2,3,2,2],[0,0,2,0]],[[0,2,1,1],[1,2,4,2],[2,3,2,2],[0,0,2,0]],[[0,2,1,1],[1,2,3,3],[2,3,2,2],[0,0,2,0]],[[0,2,1,1],[1,2,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,1],[1,3,4,0],[1,1,3,2],[1,1,1,0]],[[1,2,2,2],[1,3,3,0],[1,1,3,2],[1,1,1,0]],[[1,2,3,1],[1,3,3,0],[1,1,3,2],[1,1,1,0]],[[1,3,2,1],[1,3,3,0],[1,1,3,2],[1,1,1,0]],[[2,2,2,1],[1,3,3,0],[1,1,3,2],[1,1,1,0]],[[1,2,2,1],[1,3,4,0],[1,1,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,3,0],[1,1,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,3,0],[1,1,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,3,0],[1,1,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,3,0],[1,1,3,2],[1,1,0,1]],[[1,2,2,1],[1,3,4,0],[1,1,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,3,0],[1,1,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,3,0],[1,1,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,3,0],[1,1,3,2],[1,0,2,0]],[[2,2,2,1],[1,3,3,0],[1,1,3,2],[1,0,2,0]],[[1,2,2,1],[1,3,4,0],[1,1,3,2],[1,0,1,1]],[[1,2,2,2],[1,3,3,0],[1,1,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,3,0],[1,1,3,2],[1,0,1,1]],[[1,3,2,1],[1,3,3,0],[1,1,3,2],[1,0,1,1]],[[2,2,2,1],[1,3,3,0],[1,1,3,2],[1,0,1,1]],[[1,2,2,1],[1,3,4,0],[1,1,3,2],[0,2,1,0]],[[1,2,2,2],[1,3,3,0],[1,1,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,3,0],[1,1,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,3,0],[1,1,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[1,1,3,2],[0,2,1,0]],[[1,2,2,1],[1,3,4,0],[1,1,3,2],[0,2,0,1]],[[1,2,2,2],[1,3,3,0],[1,1,3,2],[0,2,0,1]],[[1,2,3,1],[1,3,3,0],[1,1,3,2],[0,2,0,1]],[[1,3,2,1],[1,3,3,0],[1,1,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,3,0],[1,1,3,2],[0,2,0,1]],[[1,2,2,1],[1,3,4,0],[1,1,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,3,0],[1,1,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,3,0],[1,1,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,3,0],[1,1,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,3,0],[1,1,3,2],[0,1,2,0]],[[1,2,2,1],[1,3,4,0],[1,1,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,3,0],[1,1,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,3,0],[1,1,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,3,0],[1,1,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,3,0],[1,1,3,2],[0,1,1,1]],[[1,2,2,1],[1,3,4,0],[1,1,3,2],[0,0,2,1]],[[1,2,2,2],[1,3,3,0],[1,1,3,2],[0,0,2,1]],[[1,2,3,1],[1,3,3,0],[1,1,3,2],[0,0,2,1]],[[1,3,2,1],[1,3,3,0],[1,1,3,2],[0,0,2,1]],[[2,2,2,1],[1,3,3,0],[1,1,3,2],[0,0,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,3,0],[0,0,2,1]],[[0,2,1,1],[1,2,4,2],[2,3,3,0],[0,0,2,1]],[[0,2,1,1],[1,2,3,3],[2,3,3,0],[0,0,2,1]],[[0,2,1,1],[1,2,3,2],[2,3,4,0],[0,0,2,1]],[[1,2,2,1],[1,3,4,0],[1,1,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,3,0],[1,1,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,3,0],[1,1,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,3,0],[1,1,3,1],[1,0,2,1]],[[2,2,2,1],[1,3,3,0],[1,1,3,1],[1,0,2,1]],[[1,2,2,1],[1,4,3,0],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[1,3,3,0],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[1,3,3,0],[1,1,3,1],[0,2,2,0]],[[2,2,2,1],[1,3,3,0],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[1,3,4,0],[1,1,3,1],[0,1,2,1]],[[1,2,2,2],[1,3,3,0],[1,1,3,1],[0,1,2,1]],[[1,2,3,1],[1,3,3,0],[1,1,3,1],[0,1,2,1]],[[1,3,2,1],[1,3,3,0],[1,1,3,1],[0,1,2,1]],[[2,2,2,1],[1,3,3,0],[1,1,3,1],[0,1,2,1]],[[1,2,2,1],[1,4,3,0],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[1,3,3,0],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[1,3,3,0],[1,1,3,0],[0,2,2,1]],[[2,2,2,1],[1,3,3,0],[1,1,3,0],[0,2,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,3,1],[0,0,1,1]],[[0,2,1,1],[1,2,4,2],[2,3,3,1],[0,0,1,1]],[[0,2,1,1],[1,2,3,3],[2,3,3,1],[0,0,1,1]],[[0,2,1,1],[1,2,3,2],[2,3,4,1],[0,0,1,1]],[[0,2,1,2],[1,2,3,2],[2,3,3,1],[0,0,2,0]],[[0,2,1,1],[1,2,4,2],[2,3,3,1],[0,0,2,0]],[[0,2,1,1],[1,2,3,3],[2,3,3,1],[0,0,2,0]],[[0,2,1,1],[1,2,3,2],[2,3,4,1],[0,0,2,0]],[[0,2,1,2],[1,2,3,2],[2,3,3,1],[0,2,0,0]],[[0,2,1,1],[1,2,4,2],[2,3,3,1],[0,2,0,0]],[[0,2,1,1],[1,2,3,3],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[1,3,4,0],[1,0,3,2],[0,2,2,0]],[[1,2,2,2],[1,3,3,0],[1,0,3,2],[0,2,2,0]],[[1,2,3,1],[1,3,3,0],[1,0,3,2],[0,2,2,0]],[[1,3,2,1],[1,3,3,0],[1,0,3,2],[0,2,2,0]],[[2,2,2,1],[1,3,3,0],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[1,3,4,0],[1,0,3,2],[0,2,1,1]],[[1,2,2,2],[1,3,3,0],[1,0,3,2],[0,2,1,1]],[[1,2,3,1],[1,3,3,0],[1,0,3,2],[0,2,1,1]],[[1,3,2,1],[1,3,3,0],[1,0,3,2],[0,2,1,1]],[[0,2,1,2],[1,2,3,2],[2,3,3,1],[1,1,0,0]],[[0,2,1,1],[1,2,4,2],[2,3,3,1],[1,1,0,0]],[[0,2,1,1],[1,2,3,3],[2,3,3,1],[1,1,0,0]],[[2,2,2,1],[1,3,3,0],[1,0,3,2],[0,2,1,1]],[[1,2,2,1],[1,4,3,0],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,3,3,0],[1,0,3,1],[1,2,2,0]],[[1,3,2,1],[1,3,3,0],[1,0,3,1],[1,2,2,0]],[[2,2,2,1],[1,3,3,0],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,3,4,0],[1,0,3,1],[0,2,2,1]],[[1,2,2,2],[1,3,3,0],[1,0,3,1],[0,2,2,1]],[[1,2,3,1],[1,3,3,0],[1,0,3,1],[0,2,2,1]],[[1,3,2,1],[1,3,3,0],[1,0,3,1],[0,2,2,1]],[[2,2,2,1],[1,3,3,0],[1,0,3,1],[0,2,2,1]],[[1,2,2,1],[1,4,3,0],[1,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,3,0],[1,0,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,3,0],[1,0,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,3,0],[1,0,3,0],[1,2,2,1]],[[0,2,1,2],[1,2,3,2],[2,3,3,2],[0,0,0,1]],[[0,2,1,1],[1,2,4,2],[2,3,3,2],[0,0,0,1]],[[0,2,1,1],[1,2,3,3],[2,3,3,2],[0,0,0,1]],[[0,2,1,1],[1,2,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,1],[1,3,3,0],[0,4,3,1],[1,2,0,0]],[[1,2,2,1],[1,4,3,0],[0,3,3,1],[1,2,0,0]],[[1,2,3,1],[1,3,3,0],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[1,3,3,0],[0,3,3,1],[1,2,0,0]],[[2,2,2,1],[1,3,3,0],[0,3,3,1],[1,2,0,0]],[[1,2,2,1],[1,4,3,0],[0,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,3,0],[0,3,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,3,0],[0,3,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,3,0],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,3,0],[0,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,3,0],[0,3,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,3,0],[0,3,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,3,0],[0,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,4,3,0],[0,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,3,0],[0,3,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,3,0],[0,3,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,3,0],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,3,0],[0,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,3,0],[0,3,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,3,0],[0,3,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,3,0],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,3,3,0],[0,3,3,0],[1,3,1,0]],[[1,2,2,1],[1,3,3,0],[0,3,3,0],[2,2,1,0]],[[1,2,2,1],[1,3,3,0],[0,4,3,0],[1,2,1,0]],[[1,2,2,1],[1,4,3,0],[0,3,3,0],[1,2,1,0]],[[1,2,3,1],[1,3,3,0],[0,3,3,0],[1,2,1,0]],[[1,3,2,1],[1,3,3,0],[0,3,3,0],[1,2,1,0]],[[2,2,2,1],[1,3,3,0],[0,3,3,0],[1,2,1,0]],[[1,2,2,1],[1,3,3,0],[0,4,3,0],[1,1,2,0]],[[1,2,2,1],[1,4,3,0],[0,3,3,0],[1,1,2,0]],[[1,2,3,1],[1,3,3,0],[0,3,3,0],[1,1,2,0]],[[1,3,2,1],[1,3,3,0],[0,3,3,0],[1,1,2,0]],[[2,2,2,1],[1,3,3,0],[0,3,3,0],[1,1,2,0]],[[1,2,2,1],[1,4,3,0],[0,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,3,0],[0,3,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,3,0],[0,3,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,3,0],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,3,0],[0,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,3,0],[0,3,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,3,0],[0,3,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,3,0],[0,3,3,0],[0,1,2,1]],[[1,2,2,1],[1,3,3,0],[0,3,2,1],[1,3,1,0]],[[1,2,2,1],[1,3,3,0],[0,3,2,1],[2,2,1,0]],[[1,2,2,1],[1,3,3,0],[0,4,2,1],[1,2,1,0]],[[1,2,2,1],[1,4,3,0],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[1,3,3,0],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[1,3,3,0],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[1,3,3,0],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[1,3,3,0],[0,4,2,1],[1,2,0,1]],[[1,2,2,1],[1,4,3,0],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[1,3,3,0],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[1,3,3,0],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[1,3,3,0],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[1,3,3,0],[0,4,2,1],[1,1,2,0]],[[1,2,2,1],[1,4,3,0],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[1,3,3,0],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,0],[0,3,2,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,0],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[1,4,3,0],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[1,3,3,0],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[1,3,3,0],[0,3,2,1],[1,1,1,1]],[[2,2,2,1],[1,3,3,0],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[1,3,3,0],[0,3,2,0],[1,3,1,1]],[[1,2,2,1],[1,3,3,0],[0,3,2,0],[2,2,1,1]],[[1,2,2,1],[1,3,3,0],[0,4,2,0],[1,2,1,1]],[[1,2,2,1],[1,4,3,0],[0,3,2,0],[1,2,1,1]],[[1,2,3,1],[1,3,3,0],[0,3,2,0],[1,2,1,1]],[[0,2,1,2],[1,3,0,2],[0,3,2,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,3],[0,3,2,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[0,3,2,3],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[0,3,2,2],[1,3,2,1]],[[0,2,1,1],[1,3,0,2],[0,3,2,2],[1,2,3,1]],[[0,2,1,1],[1,3,0,2],[0,3,2,2],[1,2,2,2]],[[0,2,1,1],[1,3,0,2],[0,3,4,1],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[0,3,3,1],[1,3,2,1]],[[0,2,1,1],[1,3,0,2],[0,3,3,1],[1,2,3,1]],[[0,2,1,1],[1,3,0,2],[0,3,3,1],[1,2,2,2]],[[0,2,1,2],[1,3,0,2],[0,3,3,2],[1,2,1,1]],[[0,2,1,1],[1,3,0,3],[0,3,3,2],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[0,3,4,2],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[0,3,3,3],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[0,3,3,2],[1,2,1,2]],[[0,2,1,2],[1,3,0,2],[0,3,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,3],[0,3,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[0,3,4,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[0,3,3,3],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[0,3,3,2],[1,3,2,0]],[[0,2,1,1],[1,3,0,2],[0,3,3,2],[1,2,3,0]],[[0,2,1,2],[1,3,0,2],[1,2,2,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,3],[1,2,2,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[1,3,0,2],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[1,3,0,2],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[1,3,0,2],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[1,3,0,2],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[1,3,0,2],[1,2,3,1],[1,2,2,2]],[[0,2,1,2],[1,3,0,2],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[1,3,0,3],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[1,2,3,2],[1,2,1,2]],[[0,2,1,2],[1,3,0,2],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,3],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[1,3,0,2],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[1,3,0,2],[1,2,3,2],[1,2,3,0]],[[0,3,1,1],[1,3,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,1,2],[1,3,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,1,1],[1,4,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,3],[1,3,1,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,1,3],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[1,3,0,2],[1,3,1,2],[1,2,2,2]],[[0,3,1,1],[1,3,0,2],[1,3,2,1],[1,2,2,1]],[[0,2,1,1],[1,4,0,2],[1,3,2,1],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[1,3,0,2],[1,3,2,1],[1,2,2,2]],[[0,2,1,2],[1,3,0,2],[1,3,2,2],[1,1,2,1]],[[0,2,1,1],[1,3,0,3],[1,3,2,2],[1,1,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[1,3,0,2],[1,3,2,2],[1,1,2,2]],[[0,3,1,1],[1,3,0,2],[1,3,2,2],[1,2,2,0]],[[0,2,1,1],[1,4,0,2],[1,3,2,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[1,3,0,2],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[1,3,0,2],[1,3,2,2],[1,2,3,0]],[[0,3,1,1],[1,3,0,2],[1,3,3,1],[1,1,2,1]],[[0,2,1,1],[1,4,0,2],[1,3,3,1],[1,1,2,1]],[[0,2,1,1],[1,3,0,2],[1,4,3,1],[1,1,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,1],[1,1,2,2]],[[0,3,1,1],[1,3,0,2],[1,3,3,1],[1,2,1,1]],[[0,2,1,1],[1,4,0,2],[1,3,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[1,3,4,1],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,1],[1,3,1,1]],[[0,2,1,2],[1,3,0,2],[1,3,3,2],[1,0,2,1]],[[0,2,1,1],[1,3,0,3],[1,3,3,2],[1,0,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,4,2],[1,0,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,3],[1,0,2,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,2],[1,0,2,2]],[[0,3,1,1],[1,3,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,1,2],[1,3,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[1,4,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[1,3,0,3],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[1,3,0,2],[1,4,3,2],[1,1,1,1]],[[0,2,1,1],[1,3,0,2],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,2],[1,1,1,2]],[[0,3,1,1],[1,3,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,1,2],[1,3,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,4,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,3,0,3],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,3,0,2],[1,4,3,2],[1,1,2,0]],[[0,2,1,1],[1,3,0,2],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[1,3,0,2],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[1,3,0,2],[1,3,3,2],[1,1,3,0]],[[0,3,1,1],[1,3,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,1,2],[1,3,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[1,4,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[1,3,0,3],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[1,3,0,2],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[1,3,0,2],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[1,3,0,2],[1,3,3,2],[1,2,0,2]],[[0,3,1,1],[1,3,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,1,2],[1,3,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[1,4,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[1,3,0,3],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[1,3,0,2],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[1,3,0,2],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[1,3,0,2],[1,3,3,3],[1,2,1,0]],[[0,2,1,1],[1,3,0,2],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[1,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,3,2,1],[1,3,3,0],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[1,3,3,0],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[1,3,3,0],[0,4,2,0],[1,1,2,1]],[[1,2,2,1],[1,4,3,0],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[1,3,3,0],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[1,3,3,0],[0,3,2,0],[1,1,2,1]],[[2,2,2,1],[1,3,3,0],[0,3,2,0],[1,1,2,1]],[[0,2,1,2],[1,3,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,3],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[3,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,1,2,3],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,1,2,2],[2,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,1,2,2],[1,3,2,1]],[[0,2,1,1],[1,3,0,2],[2,1,2,2],[1,2,3,1]],[[0,2,1,1],[1,3,0,2],[2,1,2,2],[1,2,2,2]],[[0,2,1,1],[1,3,0,2],[3,1,3,1],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,1,4,1],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,1,3,1],[2,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,1,3,1],[1,3,2,1]],[[0,2,1,1],[1,3,0,2],[2,1,3,1],[1,2,3,1]],[[0,2,1,1],[1,3,0,2],[2,1,3,1],[1,2,2,2]],[[0,2,1,2],[1,3,0,2],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,3,0,3],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[2,1,4,2],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[2,1,3,3],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[2,1,3,2],[1,2,1,2]],[[0,2,1,2],[1,3,0,2],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,3],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[3,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,1,4,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,1,3,3],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,1,3,2],[2,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,1,3,2],[1,3,2,0]],[[0,2,1,1],[1,3,0,2],[2,1,3,2],[1,2,3,0]],[[0,2,1,2],[1,3,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,3],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[3,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,1,3],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[1,3,0,2],[2,2,1,2],[1,2,2,2]],[[0,2,1,1],[1,3,0,2],[3,2,2,1],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,2,1],[2,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,2,1],[1,3,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,2,1],[1,2,3,1]],[[0,2,1,1],[1,3,0,2],[2,2,2,1],[1,2,2,2]],[[0,2,1,2],[1,3,0,2],[2,2,2,2],[0,2,2,1]],[[0,2,1,1],[1,3,0,3],[2,2,2,2],[0,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[1,3,0,2],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[1,3,0,2],[3,2,2,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,2,2,2],[2,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,2,2,2],[1,3,2,0]],[[0,2,1,1],[1,3,0,2],[2,2,2,2],[1,2,3,0]],[[0,2,1,1],[1,3,0,2],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[1,3,0,2],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[1,3,0,2],[2,2,3,1],[0,2,2,2]],[[0,2,1,1],[1,3,0,2],[3,2,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,0,2],[2,2,3,1],[2,2,1,1]],[[0,2,1,1],[1,3,0,2],[2,2,3,1],[1,3,1,1]],[[0,2,1,2],[1,3,0,2],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[1,3,0,3],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[1,3,0,2],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[1,3,0,2],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[1,3,0,2],[2,2,3,2],[0,2,1,2]],[[0,2,1,2],[1,3,0,2],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[1,3,0,3],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[1,3,0,2],[2,2,3,2],[0,2,3,0]],[[0,2,1,1],[1,3,0,2],[3,2,3,2],[1,2,0,1]],[[0,2,1,1],[1,3,0,2],[2,2,3,2],[2,2,0,1]],[[0,2,1,1],[1,3,0,2],[2,2,3,2],[1,3,0,1]],[[0,2,1,1],[1,3,0,2],[3,2,3,2],[1,2,1,0]],[[0,2,1,1],[1,3,0,2],[2,2,3,2],[2,2,1,0]],[[0,2,1,1],[1,3,0,2],[2,2,3,2],[1,3,1,0]],[[0,2,1,1],[1,3,0,2],[3,3,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,0,2],[2,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,0,2],[1,3,2,1]],[[0,2,1,1],[1,3,0,2],[3,3,1,1],[1,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,1,1],[2,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,1,1],[1,3,2,1]],[[0,3,1,1],[1,3,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,2],[1,3,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,4,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,3,0,3],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,3,0,2],[3,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,1,3],[0,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[1,3,0,2],[2,3,1,2],[0,2,2,2]],[[0,3,1,1],[1,3,0,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,4,0,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,3,0,2],[3,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,3,0,2],[2,4,1,2],[1,1,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,1,2],[2,1,2,1]],[[0,2,1,1],[1,3,0,2],[3,3,1,2],[1,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,1,2],[2,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,1,2],[1,3,2,0]],[[0,3,1,1],[1,3,0,2],[2,3,2,1],[0,2,2,1]],[[0,2,1,1],[1,4,0,2],[2,3,2,1],[0,2,2,1]],[[0,2,1,1],[1,3,0,2],[3,3,2,1],[0,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[1,3,0,2],[2,3,2,1],[0,2,2,2]],[[0,3,1,1],[1,3,0,2],[2,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,4,0,2],[2,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,3,0,2],[3,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,3,0,2],[2,4,2,1],[1,1,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,2,1],[2,1,2,1]],[[0,2,1,2],[1,3,0,2],[2,3,2,2],[0,1,2,1]],[[0,2,1,1],[1,3,0,3],[2,3,2,2],[0,1,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[1,3,0,2],[2,3,2,2],[0,1,2,2]],[[0,3,1,1],[1,3,0,2],[2,3,2,2],[0,2,2,0]],[[0,2,1,1],[1,4,0,2],[2,3,2,2],[0,2,2,0]],[[0,2,1,1],[1,3,0,2],[3,3,2,2],[0,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,2,2],[0,2,3,0]],[[0,2,1,2],[1,3,0,2],[2,3,2,2],[1,0,2,1]],[[0,2,1,1],[1,3,0,3],[2,3,2,2],[1,0,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[1,3,0,2],[2,3,2,2],[1,0,2,2]],[[0,3,1,1],[1,3,0,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,4,0,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,3,0,2],[3,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,3,0,2],[2,4,2,2],[1,1,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[1,3,3,0],[0,3,1,1],[1,3,2,0]],[[1,2,2,1],[1,3,3,0],[0,3,1,1],[2,2,2,0]],[[1,2,2,1],[1,3,3,0],[0,4,1,1],[1,2,2,0]],[[0,3,1,1],[1,3,0,2],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[1,4,0,2],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[1,3,0,2],[3,3,3,1],[0,1,2,1]],[[0,2,1,1],[1,3,0,2],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,1],[0,1,2,2]],[[0,3,1,1],[1,3,0,2],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[1,4,0,2],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[1,3,0,2],[3,3,3,1],[0,2,1,1]],[[0,2,1,1],[1,3,0,2],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[1,3,0,2],[2,3,4,1],[0,2,1,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,1],[0,3,1,1]],[[0,3,1,1],[1,3,0,2],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,4,0,2],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,3,0,2],[3,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,3,0,2],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,1],[2,0,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,1],[1,0,2,2]],[[0,3,1,1],[1,3,0,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,4,0,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,0,2],[3,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,0,2],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,0,2],[2,3,4,1],[1,1,1,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,1],[2,1,1,1]],[[0,2,1,1],[1,3,0,2],[3,3,3,1],[1,2,0,1]],[[0,2,1,1],[1,3,0,2],[2,4,3,1],[1,2,0,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[1,4,3,0],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[1,3,3,0],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[1,3,3,0],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[1,3,3,0],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[1,3,3,0],[0,3,1,0],[1,2,3,1]],[[1,2,2,1],[1,3,3,0],[0,3,1,0],[1,3,2,1]],[[1,2,2,1],[1,3,3,0],[0,3,1,0],[2,2,2,1]],[[1,2,2,1],[1,3,3,0],[0,4,1,0],[1,2,2,1]],[[1,2,2,1],[1,4,3,0],[0,3,1,0],[1,2,2,1]],[[0,2,1,2],[1,3,0,2],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[1,3,0,3],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[0,0,2,2]],[[0,3,1,1],[1,3,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,2],[1,3,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,4,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,3,0,3],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,3,0,2],[3,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,3,0,2],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[1,3,0,2],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[0,1,1,2]],[[0,3,1,1],[1,3,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,2],[1,3,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,4,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,3,0,3],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,3,0,2],[3,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,3,0,2],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[0,1,3,0]],[[0,3,1,1],[1,3,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,2],[1,3,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,4,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,3,0,3],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,3,0,2],[3,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,3,0,2],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[1,3,0,2],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[0,2,0,2]],[[0,3,1,1],[1,3,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,2],[1,3,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,4,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,3,0,3],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,3,0,2],[3,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,3,0,2],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[1,3,0,2],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[1,3,0,2],[2,3,3,3],[0,2,1,0]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,3,1],[1,3,3,0],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[1,3,3,0],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[1,3,3,0],[0,3,1,0],[1,2,2,1]],[[0,3,1,1],[1,3,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,2],[1,3,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,4,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,3,0,3],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,3,0,2],[3,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,3,0,2],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[1,3,0,2],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[2,0,1,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[1,0,1,2]],[[0,3,1,1],[1,3,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,2],[1,3,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,4,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,3,0,3],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,3,0,2],[3,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,3,0,2],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[2,0,2,0]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[1,0,3,0]],[[0,3,1,1],[1,3,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,2],[1,3,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,4,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,3,0,3],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,3,0,2],[3,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,3,0,2],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[1,3,0,2],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[2,1,0,1]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[1,1,0,2]],[[0,3,1,1],[1,3,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,2],[1,3,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,4,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,3,0,3],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,3,0,2],[3,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,3,0,2],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[1,3,0,2],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[1,3,0,2],[2,3,3,3],[1,1,1,0]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[2,1,1,0]],[[0,3,1,1],[1,3,0,2],[2,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,4,0,2],[2,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,3,0,2],[3,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,3,0,2],[2,4,3,2],[1,2,0,0]],[[0,2,1,1],[1,3,0,2],[2,3,3,2],[2,2,0,0]],[[0,2,1,1],[1,3,1,0],[1,4,3,1],[1,2,2,1]],[[0,2,1,1],[1,3,1,0],[1,3,3,1],[2,2,2,1]],[[0,2,1,1],[1,3,1,0],[1,3,3,1],[1,3,2,1]],[[0,2,1,1],[1,3,1,0],[1,3,3,1],[1,2,3,1]],[[0,2,1,1],[1,3,1,0],[1,3,3,1],[1,2,2,2]],[[0,2,1,1],[1,3,1,0],[1,4,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,1,0],[1,3,3,2],[2,2,2,0]],[[0,2,1,1],[1,3,1,0],[1,3,3,2],[1,3,2,0]],[[0,2,1,1],[1,3,1,0],[1,3,3,2],[1,2,3,0]],[[0,2,1,1],[1,3,1,0],[3,2,3,1],[1,2,2,1]],[[0,2,1,1],[1,3,1,0],[2,2,3,1],[2,2,2,1]],[[0,2,1,1],[1,3,1,0],[2,2,3,1],[1,3,2,1]],[[0,2,1,1],[1,3,1,0],[2,2,3,1],[1,2,3,1]],[[0,2,1,1],[1,3,1,0],[2,2,3,1],[1,2,2,2]],[[0,2,1,1],[1,3,1,0],[3,2,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,1,0],[2,2,3,2],[2,2,2,0]],[[0,2,1,1],[1,3,1,0],[2,2,3,2],[1,3,2,0]],[[0,2,1,1],[1,3,1,0],[2,2,3,2],[1,2,3,0]],[[0,2,1,1],[1,3,1,0],[3,3,3,1],[0,2,2,1]],[[0,2,1,1],[1,3,1,0],[2,4,3,1],[0,2,2,1]],[[0,2,1,1],[1,3,1,0],[2,3,3,1],[0,3,2,1]],[[0,2,1,1],[1,3,1,0],[2,3,3,1],[0,2,3,1]],[[0,2,1,1],[1,3,1,0],[2,3,3,1],[0,2,2,2]],[[0,2,1,1],[1,3,1,0],[3,3,3,1],[1,1,2,1]],[[0,2,1,1],[1,3,1,0],[2,4,3,1],[1,1,2,1]],[[0,2,1,1],[1,3,1,0],[2,3,3,1],[2,1,2,1]],[[0,2,1,1],[1,3,1,0],[3,3,3,2],[0,2,2,0]],[[0,2,1,1],[1,3,1,0],[2,4,3,2],[0,2,2,0]],[[0,2,1,1],[1,3,1,0],[2,3,3,2],[0,3,2,0]],[[0,2,1,1],[1,3,1,0],[2,3,3,2],[0,2,3,0]],[[0,2,1,1],[1,3,1,0],[3,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,3,1,0],[2,4,3,2],[1,1,2,0]],[[0,2,1,1],[1,3,1,0],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[1,4,3,0],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,3,0],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,3,0],[0,2,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,3,0],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[1,4,3,0],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,3,0],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,3,0],[0,2,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,3,0],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[1,4,3,0],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[1,3,3,0],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[1,3,3,0],[0,2,3,1],[1,1,2,0]],[[2,2,2,1],[1,3,3,0],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[1,4,3,0],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,3,0],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,3,0],[0,2,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,3,0],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,3,0],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,3,0],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[1,3,3,0],[0,2,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,3,0],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[1,4,3,0],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,3,0],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,3,0],[0,2,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,3,0],[0,2,3,0],[1,1,2,1]],[[0,3,1,1],[1,3,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,2],[1,3,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[1,4,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,1,3],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,1,2],[1,4,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,1,2],[1,3,0,3],[1,2,2,1]],[[0,2,1,1],[1,3,1,2],[1,3,0,2],[2,2,2,1]],[[0,2,1,1],[1,3,1,2],[1,3,0,2],[1,3,2,1]],[[0,2,1,1],[1,3,1,2],[1,3,0,2],[1,2,3,1]],[[0,2,1,1],[1,3,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[1,3,4,0],[0,1,3,2],[1,2,1,0]],[[1,2,2,2],[1,3,3,0],[0,1,3,2],[1,2,1,0]],[[1,2,3,1],[1,3,3,0],[0,1,3,2],[1,2,1,0]],[[1,3,2,1],[1,3,3,0],[0,1,3,2],[1,2,1,0]],[[2,2,2,1],[1,3,3,0],[0,1,3,2],[1,2,1,0]],[[1,2,2,1],[1,3,4,0],[0,1,3,2],[1,2,0,1]],[[1,2,2,2],[1,3,3,0],[0,1,3,2],[1,2,0,1]],[[1,2,3,1],[1,3,3,0],[0,1,3,2],[1,2,0,1]],[[1,3,2,1],[1,3,3,0],[0,1,3,2],[1,2,0,1]],[[2,2,2,1],[1,3,3,0],[0,1,3,2],[1,2,0,1]],[[1,2,2,1],[1,3,4,0],[0,1,3,2],[1,1,2,0]],[[1,2,2,2],[1,3,3,0],[0,1,3,2],[1,1,2,0]],[[1,2,3,1],[1,3,3,0],[0,1,3,2],[1,1,2,0]],[[1,3,2,1],[1,3,3,0],[0,1,3,2],[1,1,2,0]],[[2,2,2,1],[1,3,3,0],[0,1,3,2],[1,1,2,0]],[[1,2,2,1],[1,3,4,0],[0,1,3,2],[1,1,1,1]],[[1,2,2,2],[1,3,3,0],[0,1,3,2],[1,1,1,1]],[[1,2,3,1],[1,3,3,0],[0,1,3,2],[1,1,1,1]],[[1,3,2,1],[1,3,3,0],[0,1,3,2],[1,1,1,1]],[[2,2,2,1],[1,3,3,0],[0,1,3,2],[1,1,1,1]],[[1,2,2,1],[1,3,4,0],[0,1,3,2],[1,0,2,1]],[[1,2,2,2],[1,3,3,0],[0,1,3,2],[1,0,2,1]],[[1,2,3,1],[1,3,3,0],[0,1,3,2],[1,0,2,1]],[[1,3,2,1],[1,3,3,0],[0,1,3,2],[1,0,2,1]],[[2,2,2,1],[1,3,3,0],[0,1,3,2],[1,0,2,1]],[[1,2,2,1],[1,4,3,0],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[1,3,3,0],[0,1,3,1],[1,2,2,0]],[[1,3,2,1],[1,3,3,0],[0,1,3,1],[1,2,2,0]],[[2,2,2,1],[1,3,3,0],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[1,3,4,0],[0,1,3,1],[1,1,2,1]],[[1,2,2,2],[1,3,3,0],[0,1,3,1],[1,1,2,1]],[[1,2,3,1],[1,3,3,0],[0,1,3,1],[1,1,2,1]],[[1,3,2,1],[1,3,3,0],[0,1,3,1],[1,1,2,1]],[[0,2,1,2],[1,3,1,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,1,3],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,1,2],[3,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,1,2],[2,2,0,3],[1,2,2,1]],[[0,2,1,1],[1,3,1,2],[2,2,0,2],[2,2,2,1]],[[0,2,1,1],[1,3,1,2],[2,2,0,2],[1,3,2,1]],[[0,2,1,1],[1,3,1,2],[2,2,0,2],[1,2,3,1]],[[0,2,1,1],[1,3,1,2],[2,2,0,2],[1,2,2,2]],[[2,2,2,1],[1,3,3,0],[0,1,3,1],[1,1,2,1]],[[1,2,2,1],[1,4,3,0],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,3,0],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,3,0],[0,1,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,3,0],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[1,3,4,0],[0,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,3,3,0],[0,0,3,2],[1,2,2,0]],[[1,2,3,1],[1,3,3,0],[0,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,3,3,0],[0,0,3,2],[1,2,2,0]],[[2,2,2,1],[1,3,3,0],[0,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,3,4,0],[0,0,3,2],[1,2,1,1]],[[1,2,2,2],[1,3,3,0],[0,0,3,2],[1,2,1,1]],[[1,2,3,1],[1,3,3,0],[0,0,3,2],[1,2,1,1]],[[1,3,2,1],[1,3,3,0],[0,0,3,2],[1,2,1,1]],[[2,2,2,1],[1,3,3,0],[0,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,3,4,0],[0,0,3,1],[1,2,2,1]],[[1,2,2,2],[1,3,3,0],[0,0,3,1],[1,2,2,1]],[[1,2,3,1],[1,3,3,0],[0,0,3,1],[1,2,2,1]],[[1,3,2,1],[1,3,3,0],[0,0,3,1],[1,2,2,1]],[[2,2,2,1],[1,3,3,0],[0,0,3,1],[1,2,2,1]],[[0,3,1,1],[1,3,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,2],[1,3,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,4,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,3,1,3],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,3,1,2],[3,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,3,1,2],[2,4,0,2],[0,2,2,1]],[[0,2,1,1],[1,3,1,2],[2,3,0,3],[0,2,2,1]],[[0,2,1,1],[1,3,1,2],[2,3,0,2],[0,3,2,1]],[[0,2,1,1],[1,3,1,2],[2,3,0,2],[0,2,3,1]],[[0,2,1,1],[1,3,1,2],[2,3,0,2],[0,2,2,2]],[[0,3,1,1],[1,3,1,2],[2,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,4,1,2],[2,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,3,1,2],[3,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,3,1,2],[2,4,0,2],[1,1,2,1]],[[0,2,1,1],[1,3,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[1,4,2,2],[2,3,3,0],[1,0,0,0]],[[1,2,2,2],[1,3,2,2],[2,3,3,0],[1,0,0,0]],[[1,2,3,1],[1,3,2,2],[2,3,3,0],[1,0,0,0]],[[1,3,2,1],[1,3,2,2],[2,3,3,0],[1,0,0,0]],[[2,2,2,1],[1,3,2,2],[2,3,3,0],[1,0,0,0]],[[1,2,2,1],[1,4,2,2],[2,3,2,0],[1,0,1,0]],[[1,2,2,2],[1,3,2,2],[2,3,2,0],[1,0,1,0]],[[1,2,3,1],[1,3,2,2],[2,3,2,0],[1,0,1,0]],[[1,3,2,1],[1,3,2,2],[2,3,2,0],[1,0,1,0]],[[2,2,2,1],[1,3,2,2],[2,3,2,0],[1,0,1,0]],[[1,2,2,1],[1,4,2,2],[2,3,2,0],[1,0,0,1]],[[1,2,2,2],[1,3,2,2],[2,3,2,0],[1,0,0,1]],[[1,2,3,1],[1,3,2,2],[2,3,2,0],[1,0,0,1]],[[1,3,2,1],[1,3,2,2],[2,3,2,0],[1,0,0,1]],[[2,2,2,1],[1,3,2,2],[2,3,2,0],[1,0,0,1]],[[1,2,2,1],[1,4,2,2],[2,3,1,0],[1,2,0,0]],[[1,2,2,2],[1,3,2,2],[2,3,1,0],[1,2,0,0]],[[1,2,3,1],[1,3,2,2],[2,3,1,0],[1,2,0,0]],[[1,3,2,1],[1,3,2,2],[2,3,1,0],[1,2,0,0]],[[2,2,2,1],[1,3,2,2],[2,3,1,0],[1,2,0,0]],[[1,2,2,1],[1,4,2,2],[2,3,1,0],[1,1,1,0]],[[1,2,2,2],[1,3,2,2],[2,3,1,0],[1,1,1,0]],[[1,2,3,1],[1,3,2,2],[2,3,1,0],[1,1,1,0]],[[1,3,2,1],[1,3,2,2],[2,3,1,0],[1,1,1,0]],[[2,2,2,1],[1,3,2,2],[2,3,1,0],[1,1,1,0]],[[1,2,2,1],[1,4,2,2],[2,3,1,0],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[2,3,1,0],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[2,3,1,0],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[2,3,1,0],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[2,3,1,0],[1,1,0,1]],[[1,2,2,1],[1,4,2,2],[2,3,1,0],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[2,3,1,0],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[2,3,1,0],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[2,3,1,0],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[2,3,1,0],[0,2,1,0]],[[1,2,2,1],[1,4,2,2],[2,3,1,0],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[2,3,1,0],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[2,3,1,0],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[2,3,1,0],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[2,3,1,0],[0,2,0,1]],[[0,2,1,1],[1,3,2,0],[0,3,2,3],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[0,3,2,2],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[0,3,2,2],[1,2,3,1]],[[0,2,1,1],[1,3,2,0],[0,3,2,2],[1,2,2,2]],[[0,2,1,1],[1,3,2,0],[0,3,4,1],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[0,3,3,1],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[0,3,3,1],[1,2,3,1]],[[0,2,1,1],[1,3,2,0],[0,3,3,1],[1,2,2,2]],[[0,2,1,1],[1,3,2,0],[0,3,4,2],[1,2,1,1]],[[0,2,1,1],[1,3,2,0],[0,3,3,3],[1,2,1,1]],[[0,2,1,1],[1,3,2,0],[0,3,3,2],[1,2,1,2]],[[0,2,1,1],[1,3,2,0],[0,3,4,2],[1,2,2,0]],[[0,2,1,1],[1,3,2,0],[0,3,3,3],[1,2,2,0]],[[0,2,1,1],[1,3,2,0],[0,3,3,2],[1,3,2,0]],[[0,2,1,1],[1,3,2,0],[0,3,3,2],[1,2,3,0]],[[0,2,1,1],[1,3,2,0],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[1,3,2,0],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[1,3,2,0],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[1,3,2,0],[1,2,3,1],[1,2,2,2]],[[0,2,1,1],[1,3,2,0],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[1,3,2,0],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[1,3,2,0],[1,2,3,2],[1,2,1,2]],[[0,2,1,1],[1,3,2,0],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[1,3,2,0],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[1,3,2,0],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[1,3,2,0],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[1,3,2,0],[1,2,3,2],[1,2,3,0]],[[0,3,1,1],[1,3,2,0],[1,3,1,2],[1,2,2,1]],[[0,2,1,1],[1,4,2,0],[1,3,1,2],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,1,3],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[1,3,2,0],[1,3,1,2],[1,2,2,2]],[[0,3,1,1],[1,3,2,0],[1,3,2,1],[1,2,2,1]],[[0,2,1,1],[1,4,2,0],[1,3,2,1],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[1,3,2,0],[1,3,2,1],[1,2,2,2]],[[0,2,1,1],[1,3,2,0],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[1,3,2,0],[1,3,2,2],[1,1,2,2]],[[0,3,1,1],[1,3,2,0],[1,3,2,2],[1,2,2,0]],[[0,2,1,1],[1,4,2,0],[1,3,2,2],[1,2,2,0]],[[0,2,1,1],[1,3,2,0],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[1,3,2,0],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[1,3,2,0],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[1,3,2,0],[1,3,2,2],[1,2,3,0]],[[0,3,1,1],[1,3,2,0],[1,3,3,0],[1,2,2,1]],[[0,2,1,1],[1,4,2,0],[1,3,3,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,4,3,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,0],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,0],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,0],[1,2,3,1]],[[0,3,1,1],[1,3,2,0],[1,3,3,1],[1,1,2,1]],[[0,2,1,1],[1,4,2,0],[1,3,3,1],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[1,4,3,1],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,1],[1,1,2,2]],[[0,3,1,1],[1,3,2,0],[1,3,3,1],[1,2,1,1]],[[0,2,1,1],[1,4,2,0],[1,3,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,2,0],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,2,0],[1,3,4,1],[1,2,1,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,1],[1,3,1,1]],[[0,2,1,1],[1,3,2,0],[1,3,4,2],[1,0,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,3],[1,0,2,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,2],[1,0,2,2]],[[0,3,1,1],[1,3,2,0],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[1,4,2,0],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[1,3,2,0],[1,4,3,2],[1,1,1,1]],[[0,2,1,1],[1,3,2,0],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,2],[1,1,1,2]],[[0,3,1,1],[1,3,2,0],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,4,2,0],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[1,3,2,0],[1,4,3,2],[1,1,2,0]],[[0,2,1,1],[1,3,2,0],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[1,3,2,0],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[1,3,2,0],[1,3,3,2],[1,1,3,0]],[[0,3,1,1],[1,3,2,0],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[1,4,2,0],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[1,3,2,0],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[1,3,2,0],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[1,3,2,0],[1,3,3,2],[1,2,0,2]],[[0,3,1,1],[1,3,2,0],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[1,4,2,0],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[1,3,2,0],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[1,3,2,0],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[1,3,2,0],[1,3,3,3],[1,2,1,0]],[[0,2,1,1],[1,3,2,0],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[1,3,2,0],[1,3,3,2],[1,3,1,0]],[[0,2,1,1],[1,3,2,0],[3,1,2,2],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,1,2,3],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,1,2,2],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,1,2,2],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[2,1,2,2],[1,2,3,1]],[[0,2,1,1],[1,3,2,0],[2,1,2,2],[1,2,2,2]],[[0,2,1,1],[1,3,2,0],[3,1,3,1],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,1,4,1],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,1,3,1],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,1,3,1],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[2,1,3,1],[1,2,3,1]],[[0,2,1,1],[1,3,2,0],[2,1,3,1],[1,2,2,2]],[[0,2,1,1],[1,3,2,0],[2,1,4,2],[1,2,1,1]],[[0,2,1,1],[1,3,2,0],[2,1,3,3],[1,2,1,1]],[[0,2,1,1],[1,3,2,0],[2,1,3,2],[1,2,1,2]],[[0,2,1,1],[1,3,2,0],[3,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,1,4,2],[1,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,1,3,3],[1,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,1,3,2],[2,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,1,3,2],[1,3,2,0]],[[0,2,1,1],[1,3,2,0],[2,1,3,2],[1,2,3,0]],[[0,2,1,1],[1,3,2,0],[3,2,1,2],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,1,3],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[1,3,2,0],[2,2,1,2],[1,2,2,2]],[[0,2,1,1],[1,3,2,0],[3,2,2,1],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,2,1],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,2,1],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,2,1],[1,2,3,1]],[[0,2,1,1],[1,3,2,0],[2,2,2,1],[1,2,2,2]],[[0,2,1,1],[1,3,2,0],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[1,3,2,0],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[1,3,2,0],[3,2,2,2],[1,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,2,2,2],[2,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,2,2,2],[1,3,2,0]],[[0,2,1,1],[1,3,2,0],[2,2,2,2],[1,2,3,0]],[[0,2,1,1],[1,3,2,0],[3,2,3,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,0],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,0],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,0],[1,2,3,1]],[[0,2,1,1],[1,3,2,0],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,1],[0,2,2,2]],[[0,2,1,1],[1,3,2,0],[3,2,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,1],[2,2,1,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,1],[1,3,1,1]],[[0,2,1,1],[1,3,2,0],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,2],[0,2,1,2]],[[0,2,1,1],[1,3,2,0],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[1,3,2,0],[2,2,3,2],[0,2,3,0]],[[0,2,1,1],[1,3,2,0],[3,2,3,2],[1,2,0,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,2],[2,2,0,1]],[[0,2,1,1],[1,3,2,0],[2,2,3,2],[1,3,0,1]],[[0,2,1,1],[1,3,2,0],[3,2,3,2],[1,2,1,0]],[[0,2,1,1],[1,3,2,0],[2,2,3,2],[2,2,1,0]],[[0,2,1,1],[1,3,2,0],[2,2,3,2],[1,3,1,0]],[[0,2,1,1],[1,3,2,0],[3,3,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,0,2],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,0,2],[1,3,2,1]],[[0,2,1,1],[1,3,2,0],[3,3,1,1],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,1,1],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,1,1],[1,3,2,1]],[[0,3,1,1],[1,3,2,0],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,4,2,0],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[3,3,1,2],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,1,3],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[1,3,2,0],[2,3,1,2],[0,2,2,2]],[[0,3,1,1],[1,3,2,0],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,4,2,0],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[3,3,1,2],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[2,4,1,2],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,1,2],[2,1,2,1]],[[0,2,1,1],[1,3,2,0],[3,3,1,2],[1,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,1,2],[2,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,1,2],[1,3,2,0]],[[0,2,1,1],[1,3,2,0],[3,3,2,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,2,0],[2,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,2,0],[1,3,2,1]],[[0,3,1,1],[1,3,2,0],[2,3,2,1],[0,2,2,1]],[[0,2,1,1],[1,4,2,0],[2,3,2,1],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[3,3,2,1],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[1,3,2,0],[2,3,2,1],[0,2,2,2]],[[0,3,1,1],[1,3,2,0],[2,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,4,2,0],[2,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[3,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[2,4,2,1],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,2,1],[2,1,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[1,3,2,0],[2,3,2,2],[0,1,2,2]],[[0,3,1,1],[1,3,2,0],[2,3,2,2],[0,2,2,0]],[[0,2,1,1],[1,4,2,0],[2,3,2,2],[0,2,2,0]],[[0,2,1,1],[1,3,2,0],[3,3,2,2],[0,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,2,2],[0,2,3,0]],[[0,2,1,1],[1,3,2,0],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[1,3,2,0],[2,3,2,2],[1,0,2,2]],[[0,3,1,1],[1,3,2,0],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,4,2,0],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,3,2,0],[3,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,3,2,0],[2,4,2,2],[1,1,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[1,3,2,3],[2,3,0,2],[1,0,1,0]],[[1,2,2,1],[1,4,2,2],[2,3,0,2],[1,0,1,0]],[[1,2,2,2],[1,3,2,2],[2,3,0,2],[1,0,1,0]],[[1,2,3,1],[1,3,2,2],[2,3,0,2],[1,0,1,0]],[[0,3,1,1],[1,3,2,0],[2,3,3,0],[0,2,2,1]],[[0,2,1,1],[1,4,2,0],[2,3,3,0],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[3,3,3,0],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,4,3,0],[0,2,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,0],[0,3,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,0],[0,2,3,1]],[[0,3,1,1],[1,3,2,0],[2,3,3,0],[1,1,2,1]],[[0,2,1,1],[1,4,2,0],[2,3,3,0],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[3,3,3,0],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[2,4,3,0],[1,1,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,0],[2,1,2,1]],[[0,3,1,1],[1,3,2,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[1,4,2,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[1,3,2,0],[3,3,3,1],[0,1,2,1]],[[0,2,1,1],[1,3,2,0],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,1],[0,1,2,2]],[[0,3,1,1],[1,3,2,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[1,4,2,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[1,3,2,0],[3,3,3,1],[0,2,1,1]],[[0,2,1,1],[1,3,2,0],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[1,3,2,0],[2,3,4,1],[0,2,1,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,1],[0,3,1,1]],[[0,3,1,1],[1,3,2,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,4,2,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,3,2,0],[3,3,3,1],[1,0,2,1]],[[0,2,1,1],[1,3,2,0],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,1],[2,0,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,1],[1,0,2,2]],[[0,3,1,1],[1,3,2,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,4,2,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,2,0],[3,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,2,0],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,2,0],[2,3,4,1],[1,1,1,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,1],[2,1,1,1]],[[0,3,1,1],[1,3,2,0],[2,3,3,1],[1,2,0,1]],[[0,2,1,1],[1,4,2,0],[2,3,3,1],[1,2,0,1]],[[0,2,1,1],[1,3,2,0],[3,3,3,1],[1,2,0,1]],[[0,2,1,1],[1,3,2,0],[2,4,3,1],[1,2,0,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,1],[2,2,0,1]],[[1,3,2,1],[1,3,2,2],[2,3,0,2],[1,0,1,0]],[[2,2,2,1],[1,3,2,2],[2,3,0,2],[1,0,1,0]],[[1,2,2,1],[1,3,2,3],[2,3,0,2],[1,0,0,1]],[[1,2,2,1],[1,4,2,2],[2,3,0,2],[1,0,0,1]],[[1,2,2,2],[1,3,2,2],[2,3,0,2],[1,0,0,1]],[[1,2,3,1],[1,3,2,2],[2,3,0,2],[1,0,0,1]],[[1,3,2,1],[1,3,2,2],[2,3,0,2],[1,0,0,1]],[[2,2,2,1],[1,3,2,2],[2,3,0,2],[1,0,0,1]],[[0,2,1,1],[1,3,2,0],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[0,0,2,2]],[[0,3,1,1],[1,3,2,0],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,4,2,0],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,3,2,0],[3,3,3,2],[0,1,1,1]],[[0,2,1,1],[1,3,2,0],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[1,3,2,0],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[0,1,1,2]],[[0,3,1,1],[1,3,2,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,4,2,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,3,2,0],[3,3,3,2],[0,1,2,0]],[[0,2,1,1],[1,3,2,0],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[0,1,3,0]],[[0,3,1,1],[1,3,2,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,4,2,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,3,2,0],[3,3,3,2],[0,2,0,1]],[[0,2,1,1],[1,3,2,0],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[1,3,2,0],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[0,2,0,2]],[[0,3,1,1],[1,3,2,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,4,2,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,3,2,0],[3,3,3,2],[0,2,1,0]],[[0,2,1,1],[1,3,2,0],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[1,3,2,0],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[1,3,2,0],[2,3,3,3],[0,2,1,0]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[0,3,1,0]],[[0,3,1,1],[1,3,2,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,4,2,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,3,2,0],[3,3,3,2],[1,0,1,1]],[[0,2,1,1],[1,3,2,0],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[1,3,2,0],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[2,0,1,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[1,0,1,2]],[[0,3,1,1],[1,3,2,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,4,2,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,3,2,0],[3,3,3,2],[1,0,2,0]],[[0,2,1,1],[1,3,2,0],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[2,0,2,0]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[1,0,3,0]],[[0,3,1,1],[1,3,2,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,4,2,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,3,2,0],[3,3,3,2],[1,1,0,1]],[[0,2,1,1],[1,3,2,0],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[1,3,2,0],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[2,1,0,1]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[1,1,0,2]],[[0,3,1,1],[1,3,2,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,4,2,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,3,2,0],[3,3,3,2],[1,1,1,0]],[[0,2,1,1],[1,3,2,0],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[1,3,2,0],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[1,3,2,0],[2,3,3,3],[1,1,1,0]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[2,1,1,0]],[[0,3,1,1],[1,3,2,0],[2,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,4,2,0],[2,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,3,2,0],[3,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,3,2,0],[2,4,3,2],[1,2,0,0]],[[0,2,1,1],[1,3,2,0],[2,3,3,2],[2,2,0,0]],[[0,2,1,1],[1,3,2,1],[0,3,4,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,1],[0,3,3,0],[1,3,2,1]],[[0,2,1,1],[1,3,2,1],[0,3,3,0],[1,2,3,1]],[[0,2,1,1],[1,3,2,1],[0,3,3,0],[1,2,2,2]],[[0,2,1,1],[1,3,2,1],[0,3,4,1],[1,2,2,0]],[[0,2,1,1],[1,3,2,1],[0,3,3,1],[1,3,2,0]],[[0,2,1,1],[1,3,2,1],[0,3,3,1],[1,2,3,0]],[[0,2,1,1],[1,3,2,1],[1,2,4,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,1],[1,2,3,0],[2,2,2,1]],[[0,2,1,1],[1,3,2,1],[1,2,3,0],[1,3,2,1]],[[0,2,1,1],[1,3,2,1],[1,2,3,0],[1,2,3,1]],[[0,2,1,1],[1,3,2,1],[1,2,3,0],[1,2,2,2]],[[0,2,1,1],[1,3,2,1],[1,2,4,1],[1,2,2,0]],[[0,2,1,1],[1,3,2,1],[1,2,3,1],[2,2,2,0]],[[0,2,1,1],[1,3,2,1],[1,2,3,1],[1,3,2,0]],[[0,2,1,1],[1,3,2,1],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[1,4,2,2],[2,3,0,0],[1,2,1,0]],[[1,2,2,2],[1,3,2,2],[2,3,0,0],[1,2,1,0]],[[1,2,3,1],[1,3,2,2],[2,3,0,0],[1,2,1,0]],[[1,3,2,1],[1,3,2,2],[2,3,0,0],[1,2,1,0]],[[2,2,2,1],[1,3,2,2],[2,3,0,0],[1,2,1,0]],[[0,3,1,1],[1,3,2,1],[1,3,2,0],[1,2,2,1]],[[0,2,1,1],[1,4,2,1],[1,3,2,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,1],[1,4,2,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,1],[1,3,2,0],[2,2,2,1]],[[0,2,1,1],[1,3,2,1],[1,3,2,0],[1,3,2,1]],[[0,2,1,1],[1,3,2,1],[1,3,2,0],[1,2,3,1]],[[0,2,1,1],[1,3,2,1],[1,3,2,0],[1,2,2,2]],[[0,3,1,1],[1,3,2,1],[1,3,2,1],[1,2,2,0]],[[0,2,1,1],[1,4,2,1],[1,3,2,1],[1,2,2,0]],[[0,2,1,1],[1,3,2,1],[1,4,2,1],[1,2,2,0]],[[0,2,1,1],[1,3,2,1],[1,3,2,1],[2,2,2,0]],[[0,2,1,1],[1,3,2,1],[1,3,2,1],[1,3,2,0]],[[0,2,1,1],[1,3,2,1],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[1,4,2,2],[2,3,0,0],[1,1,2,0]],[[1,2,2,2],[1,3,2,2],[2,3,0,0],[1,1,2,0]],[[1,2,3,1],[1,3,2,2],[2,3,0,0],[1,1,2,0]],[[1,3,2,1],[1,3,2,2],[2,3,0,0],[1,1,2,0]],[[0,3,1,1],[1,3,2,1],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[1,4,2,1],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[1,3,2,1],[1,4,3,0],[1,1,2,1]],[[0,2,1,1],[1,3,2,1],[1,3,4,0],[1,1,2,1]],[[0,2,1,1],[1,3,2,1],[1,3,3,0],[1,1,3,1]],[[0,2,1,1],[1,3,2,1],[1,3,3,0],[1,1,2,2]],[[0,3,1,1],[1,3,2,1],[1,3,3,0],[1,2,1,1]],[[0,2,1,1],[1,4,2,1],[1,3,3,0],[1,2,1,1]],[[0,2,1,1],[1,3,2,1],[1,4,3,0],[1,2,1,1]],[[0,2,1,1],[1,3,2,1],[1,3,4,0],[1,2,1,1]],[[0,2,1,1],[1,3,2,1],[1,3,3,0],[2,2,1,1]],[[0,2,1,1],[1,3,2,1],[1,3,3,0],[1,3,1,1]],[[0,3,1,1],[1,3,2,1],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,4,2,1],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,2,1],[1,4,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,2,1],[1,3,4,1],[1,1,1,1]],[[0,3,1,1],[1,3,2,1],[1,3,3,1],[1,1,2,0]],[[0,2,1,1],[1,4,2,1],[1,3,3,1],[1,1,2,0]],[[0,2,1,1],[1,3,2,1],[1,4,3,1],[1,1,2,0]],[[0,2,1,1],[1,3,2,1],[1,3,4,1],[1,1,2,0]],[[0,2,1,1],[1,3,2,1],[1,3,3,1],[1,1,3,0]],[[0,3,1,1],[1,3,2,1],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[1,4,2,1],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[1,3,2,1],[1,4,3,1],[1,2,0,1]],[[0,2,1,1],[1,3,2,1],[1,3,4,1],[1,2,0,1]],[[0,2,1,1],[1,3,2,1],[1,3,3,1],[2,2,0,1]],[[0,2,1,1],[1,3,2,1],[1,3,3,1],[1,3,0,1]],[[0,3,1,1],[1,3,2,1],[1,3,3,1],[1,2,1,0]],[[0,2,1,1],[1,4,2,1],[1,3,3,1],[1,2,1,0]],[[0,2,1,1],[1,3,2,1],[1,4,3,1],[1,2,1,0]],[[0,2,1,1],[1,3,2,1],[1,3,4,1],[1,2,1,0]],[[0,2,1,1],[1,3,2,1],[1,3,3,1],[2,2,1,0]],[[0,2,1,1],[1,3,2,1],[1,3,3,1],[1,3,1,0]],[[2,2,2,1],[1,3,2,2],[2,3,0,0],[1,1,2,0]],[[1,2,2,1],[1,4,2,2],[2,3,0,0],[0,2,2,0]],[[1,2,2,2],[1,3,2,2],[2,3,0,0],[0,2,2,0]],[[1,2,3,1],[1,3,2,2],[2,3,0,0],[0,2,2,0]],[[1,3,2,1],[1,3,2,2],[2,3,0,0],[0,2,2,0]],[[2,2,2,1],[1,3,2,2],[2,3,0,0],[0,2,2,0]],[[0,2,1,1],[1,3,2,1],[3,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,1],[2,1,4,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,1],[2,1,3,0],[2,2,2,1]],[[0,2,1,1],[1,3,2,1],[2,1,3,0],[1,3,2,1]],[[0,2,1,1],[1,3,2,1],[2,1,3,0],[1,2,3,1]],[[0,2,1,1],[1,3,2,1],[2,1,3,0],[1,2,2,2]],[[0,2,1,1],[1,3,2,1],[3,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,3,2,1],[2,1,4,1],[1,2,2,0]],[[0,2,1,1],[1,3,2,1],[2,1,3,1],[2,2,2,0]],[[0,2,1,1],[1,3,2,1],[2,1,3,1],[1,3,2,0]],[[0,2,1,1],[1,3,2,1],[2,1,3,1],[1,2,3,0]],[[0,2,1,1],[1,3,2,1],[3,2,2,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,1],[2,2,2,0],[2,2,2,1]],[[0,2,1,1],[1,3,2,1],[2,2,2,0],[1,3,2,1]],[[0,2,1,1],[1,3,2,1],[2,2,2,0],[1,2,3,1]],[[0,2,1,1],[1,3,2,1],[2,2,2,0],[1,2,2,2]],[[0,2,1,1],[1,3,2,1],[3,2,2,1],[1,2,2,0]],[[0,2,1,1],[1,3,2,1],[2,2,2,1],[2,2,2,0]],[[0,2,1,1],[1,3,2,1],[2,2,2,1],[1,3,2,0]],[[0,2,1,1],[1,3,2,1],[2,2,2,1],[1,2,3,0]],[[0,2,1,1],[1,3,2,1],[2,2,4,0],[0,2,2,1]],[[0,2,1,1],[1,3,2,1],[2,2,3,0],[0,3,2,1]],[[0,2,1,1],[1,3,2,1],[2,2,3,0],[0,2,3,1]],[[0,2,1,1],[1,3,2,1],[2,2,3,0],[0,2,2,2]],[[0,2,1,1],[1,3,2,1],[3,2,3,0],[1,2,1,1]],[[0,2,1,1],[1,3,2,1],[2,2,3,0],[2,2,1,1]],[[0,2,1,1],[1,3,2,1],[2,2,3,0],[1,3,1,1]],[[0,2,1,1],[1,3,2,1],[2,2,4,1],[0,2,2,0]],[[0,2,1,1],[1,3,2,1],[2,2,3,1],[0,3,2,0]],[[0,2,1,1],[1,3,2,1],[2,2,3,1],[0,2,3,0]],[[0,2,1,1],[1,3,2,1],[3,2,3,1],[1,2,0,1]],[[0,2,1,1],[1,3,2,1],[2,2,3,1],[2,2,0,1]],[[0,2,1,1],[1,3,2,1],[2,2,3,1],[1,3,0,1]],[[0,2,1,1],[1,3,2,1],[3,2,3,1],[1,2,1,0]],[[0,2,1,1],[1,3,2,1],[2,2,3,1],[2,2,1,0]],[[0,2,1,1],[1,3,2,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[1,4,2,2],[2,2,3,0],[1,1,0,0]],[[1,2,2,2],[1,3,2,2],[2,2,3,0],[1,1,0,0]],[[1,2,3,1],[1,3,2,2],[2,2,3,0],[1,1,0,0]],[[1,3,2,1],[1,3,2,2],[2,2,3,0],[1,1,0,0]],[[2,2,2,1],[1,3,2,2],[2,2,3,0],[1,1,0,0]],[[1,2,2,1],[1,4,2,2],[2,2,3,0],[0,2,0,0]],[[1,2,2,2],[1,3,2,2],[2,2,3,0],[0,2,0,0]],[[1,2,3,1],[1,3,2,2],[2,2,3,0],[0,2,0,0]],[[1,3,2,1],[1,3,2,2],[2,2,3,0],[0,2,0,0]],[[0,2,1,1],[1,3,2,1],[3,3,1,0],[1,2,2,1]],[[0,2,1,1],[1,3,2,1],[2,3,1,0],[2,2,2,1]],[[0,2,1,1],[1,3,2,1],[2,3,1,0],[1,3,2,1]],[[0,2,1,1],[1,3,2,1],[3,3,1,1],[1,2,2,0]],[[0,2,1,1],[1,3,2,1],[2,3,1,1],[2,2,2,0]],[[0,2,1,1],[1,3,2,1],[2,3,1,1],[1,3,2,0]],[[2,2,2,1],[1,3,2,2],[2,2,3,0],[0,2,0,0]],[[0,3,1,1],[1,3,2,1],[2,3,2,0],[0,2,2,1]],[[0,2,1,1],[1,4,2,1],[2,3,2,0],[0,2,2,1]],[[0,2,1,1],[1,3,2,1],[3,3,2,0],[0,2,2,1]],[[0,2,1,1],[1,3,2,1],[2,4,2,0],[0,2,2,1]],[[0,2,1,1],[1,3,2,1],[2,3,2,0],[0,3,2,1]],[[0,2,1,1],[1,3,2,1],[2,3,2,0],[0,2,3,1]],[[0,2,1,1],[1,3,2,1],[2,3,2,0],[0,2,2,2]],[[0,3,1,1],[1,3,2,1],[2,3,2,0],[1,1,2,1]],[[0,2,1,1],[1,4,2,1],[2,3,2,0],[1,1,2,1]],[[0,2,1,1],[1,3,2,1],[3,3,2,0],[1,1,2,1]],[[0,2,1,1],[1,3,2,1],[2,4,2,0],[1,1,2,1]],[[0,2,1,1],[1,3,2,1],[2,3,2,0],[2,1,2,1]],[[0,3,1,1],[1,3,2,1],[2,3,2,1],[0,2,2,0]],[[0,2,1,1],[1,4,2,1],[2,3,2,1],[0,2,2,0]],[[0,2,1,1],[1,3,2,1],[3,3,2,1],[0,2,2,0]],[[0,2,1,1],[1,3,2,1],[2,4,2,1],[0,2,2,0]],[[0,2,1,1],[1,3,2,1],[2,3,2,1],[0,3,2,0]],[[0,2,1,1],[1,3,2,1],[2,3,2,1],[0,2,3,0]],[[0,3,1,1],[1,3,2,1],[2,3,2,1],[1,1,2,0]],[[0,2,1,1],[1,4,2,1],[2,3,2,1],[1,1,2,0]],[[0,2,1,1],[1,3,2,1],[3,3,2,1],[1,1,2,0]],[[0,2,1,1],[1,3,2,1],[2,4,2,1],[1,1,2,0]],[[0,2,1,1],[1,3,2,1],[2,3,2,1],[2,1,2,0]],[[0,3,1,1],[1,3,2,1],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[1,4,2,1],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[1,3,2,1],[3,3,3,0],[0,1,2,1]],[[0,2,1,1],[1,3,2,1],[2,4,3,0],[0,1,2,1]],[[0,2,1,1],[1,3,2,1],[2,3,4,0],[0,1,2,1]],[[0,2,1,1],[1,3,2,1],[2,3,3,0],[0,1,3,1]],[[0,2,1,1],[1,3,2,1],[2,3,3,0],[0,1,2,2]],[[0,3,1,1],[1,3,2,1],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[1,4,2,1],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[1,3,2,1],[3,3,3,0],[0,2,1,1]],[[0,2,1,1],[1,3,2,1],[2,4,3,0],[0,2,1,1]],[[0,2,1,1],[1,3,2,1],[2,3,4,0],[0,2,1,1]],[[0,2,1,1],[1,3,2,1],[2,3,3,0],[0,3,1,1]],[[0,3,1,1],[1,3,2,1],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[1,4,2,1],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[1,3,2,1],[3,3,3,0],[1,0,2,1]],[[0,2,1,1],[1,3,2,1],[2,4,3,0],[1,0,2,1]],[[0,2,1,1],[1,3,2,1],[2,3,4,0],[1,0,2,1]],[[0,2,1,1],[1,3,2,1],[2,3,3,0],[2,0,2,1]],[[0,2,1,1],[1,3,2,1],[2,3,3,0],[1,0,3,1]],[[0,2,1,1],[1,3,2,1],[2,3,3,0],[1,0,2,2]],[[0,3,1,1],[1,3,2,1],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[1,4,2,1],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[1,3,2,1],[3,3,3,0],[1,1,1,1]],[[0,2,1,1],[1,3,2,1],[2,4,3,0],[1,1,1,1]],[[0,2,1,1],[1,3,2,1],[2,3,4,0],[1,1,1,1]],[[0,2,1,1],[1,3,2,1],[2,3,3,0],[2,1,1,1]],[[0,3,1,1],[1,3,2,1],[2,3,3,0],[1,2,0,1]],[[0,2,1,1],[1,4,2,1],[2,3,3,0],[1,2,0,1]],[[0,2,1,1],[1,3,2,1],[3,3,3,0],[1,2,0,1]],[[0,2,1,1],[1,3,2,1],[2,4,3,0],[1,2,0,1]],[[0,2,1,1],[1,3,2,1],[2,3,3,0],[2,2,0,1]],[[0,3,1,1],[1,3,2,1],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[1,4,2,1],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[1,3,2,1],[3,3,3,1],[0,1,1,1]],[[0,2,1,1],[1,3,2,1],[2,4,3,1],[0,1,1,1]],[[0,2,1,1],[1,3,2,1],[2,3,4,1],[0,1,1,1]],[[0,3,1,1],[1,3,2,1],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[1,4,2,1],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[1,3,2,1],[3,3,3,1],[0,1,2,0]],[[0,2,1,1],[1,3,2,1],[2,4,3,1],[0,1,2,0]],[[0,2,1,1],[1,3,2,1],[2,3,4,1],[0,1,2,0]],[[0,2,1,1],[1,3,2,1],[2,3,3,1],[0,1,3,0]],[[0,3,1,1],[1,3,2,1],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[1,4,2,1],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[1,3,2,1],[3,3,3,1],[0,2,0,1]],[[0,2,1,1],[1,3,2,1],[2,4,3,1],[0,2,0,1]],[[0,2,1,1],[1,3,2,1],[2,3,4,1],[0,2,0,1]],[[0,2,1,1],[1,3,2,1],[2,3,3,1],[0,3,0,1]],[[0,3,1,1],[1,3,2,1],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[1,4,2,1],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[1,3,2,1],[3,3,3,1],[0,2,1,0]],[[0,2,1,1],[1,3,2,1],[2,4,3,1],[0,2,1,0]],[[0,2,1,1],[1,3,2,1],[2,3,4,1],[0,2,1,0]],[[0,2,1,1],[1,3,2,1],[2,3,3,1],[0,3,1,0]],[[0,3,1,1],[1,3,2,1],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[1,4,2,1],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[1,3,2,1],[3,3,3,1],[1,0,1,1]],[[0,2,1,1],[1,3,2,1],[2,4,3,1],[1,0,1,1]],[[0,2,1,1],[1,3,2,1],[2,3,4,1],[1,0,1,1]],[[0,2,1,1],[1,3,2,1],[2,3,3,1],[2,0,1,1]],[[0,3,1,1],[1,3,2,1],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[1,4,2,1],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[1,3,2,1],[3,3,3,1],[1,0,2,0]],[[0,2,1,1],[1,3,2,1],[2,4,3,1],[1,0,2,0]],[[0,2,1,1],[1,3,2,1],[2,3,4,1],[1,0,2,0]],[[0,2,1,1],[1,3,2,1],[2,3,3,1],[2,0,2,0]],[[0,2,1,1],[1,3,2,1],[2,3,3,1],[1,0,3,0]],[[0,3,1,1],[1,3,2,1],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[1,4,2,1],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[1,3,2,1],[3,3,3,1],[1,1,0,1]],[[0,2,1,1],[1,3,2,1],[2,4,3,1],[1,1,0,1]],[[0,2,1,1],[1,3,2,1],[2,3,4,1],[1,1,0,1]],[[0,2,1,1],[1,3,2,1],[2,3,3,1],[2,1,0,1]],[[0,3,1,1],[1,3,2,1],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[1,4,2,1],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[1,3,2,1],[3,3,3,1],[1,1,1,0]],[[0,2,1,1],[1,3,2,1],[2,4,3,1],[1,1,1,0]],[[0,2,1,1],[1,3,2,1],[2,3,4,1],[1,1,1,0]],[[0,2,1,1],[1,3,2,1],[2,3,3,1],[2,1,1,0]],[[0,3,1,1],[1,3,2,1],[2,3,3,1],[1,2,0,0]],[[0,2,1,1],[1,4,2,1],[2,3,3,1],[1,2,0,0]],[[0,2,1,1],[1,3,2,1],[3,3,3,1],[1,2,0,0]],[[0,2,1,1],[1,3,2,1],[2,4,3,1],[1,2,0,0]],[[0,2,1,1],[1,3,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[1,4,2,2],[2,2,2,0],[1,2,0,0]],[[1,2,2,2],[1,3,2,2],[2,2,2,0],[1,2,0,0]],[[1,2,3,1],[1,3,2,2],[2,2,2,0],[1,2,0,0]],[[1,3,2,1],[1,3,2,2],[2,2,2,0],[1,2,0,0]],[[2,2,2,1],[1,3,2,2],[2,2,2,0],[1,2,0,0]],[[1,2,2,1],[1,4,2,2],[2,2,2,0],[1,1,1,0]],[[1,2,2,2],[1,3,2,2],[2,2,2,0],[1,1,1,0]],[[1,2,3,1],[1,3,2,2],[2,2,2,0],[1,1,1,0]],[[1,3,2,1],[1,3,2,2],[2,2,2,0],[1,1,1,0]],[[2,2,2,1],[1,3,2,2],[2,2,2,0],[1,1,1,0]],[[1,2,2,1],[1,4,2,2],[2,2,2,0],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[2,2,2,0],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[2,2,2,0],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[2,2,2,0],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[2,2,2,0],[1,1,0,1]],[[1,2,2,1],[1,4,2,2],[2,2,2,0],[1,0,2,0]],[[1,2,2,2],[1,3,2,2],[2,2,2,0],[1,0,2,0]],[[1,2,3,1],[1,3,2,2],[2,2,2,0],[1,0,2,0]],[[1,3,2,1],[1,3,2,2],[2,2,2,0],[1,0,2,0]],[[2,2,2,1],[1,3,2,2],[2,2,2,0],[1,0,2,0]],[[1,2,2,1],[1,4,2,2],[2,2,2,0],[1,0,1,1]],[[1,2,2,2],[1,3,2,2],[2,2,2,0],[1,0,1,1]],[[1,2,3,1],[1,3,2,2],[2,2,2,0],[1,0,1,1]],[[1,3,2,1],[1,3,2,2],[2,2,2,0],[1,0,1,1]],[[2,2,2,1],[1,3,2,2],[2,2,2,0],[1,0,1,1]],[[1,2,2,1],[1,4,2,2],[2,2,2,0],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[2,2,2,0],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[2,2,2,0],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[2,2,2,0],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[2,2,2,0],[0,2,1,0]],[[1,2,2,1],[1,4,2,2],[2,2,2,0],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[2,2,2,0],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[2,2,2,0],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[2,2,2,0],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[2,2,2,0],[0,2,0,1]],[[1,2,2,1],[1,4,2,2],[2,2,2,0],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[2,2,2,0],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[2,2,2,0],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[2,2,2,0],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[2,2,2,0],[0,1,2,0]],[[1,2,2,1],[1,4,2,2],[2,2,2,0],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[2,2,2,0],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[2,2,2,0],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[2,2,2,0],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[2,2,2,0],[0,1,1,1]],[[1,2,2,1],[1,4,2,2],[2,2,1,0],[1,1,2,0]],[[1,2,2,2],[1,3,2,2],[2,2,1,0],[1,1,2,0]],[[1,2,3,1],[1,3,2,2],[2,2,1,0],[1,1,2,0]],[[1,3,2,1],[1,3,2,2],[2,2,1,0],[1,1,2,0]],[[2,2,2,1],[1,3,2,2],[2,2,1,0],[1,1,2,0]],[[1,2,2,1],[1,4,2,2],[2,2,1,0],[0,2,2,0]],[[1,2,2,2],[1,3,2,2],[2,2,1,0],[0,2,2,0]],[[1,2,3,1],[1,3,2,2],[2,2,1,0],[0,2,2,0]],[[1,3,2,1],[1,3,2,2],[2,2,1,0],[0,2,2,0]],[[2,2,2,1],[1,3,2,2],[2,2,1,0],[0,2,2,0]],[[1,2,2,1],[1,3,2,3],[2,2,0,2],[1,2,0,0]],[[1,2,2,1],[1,4,2,2],[2,2,0,2],[1,2,0,0]],[[1,2,2,2],[1,3,2,2],[2,2,0,2],[1,2,0,0]],[[1,2,3,1],[1,3,2,2],[2,2,0,2],[1,2,0,0]],[[1,3,2,1],[1,3,2,2],[2,2,0,2],[1,2,0,0]],[[2,2,2,1],[1,3,2,2],[2,2,0,2],[1,2,0,0]],[[1,2,2,1],[1,3,2,3],[2,2,0,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,2],[2,2,0,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,2],[2,2,0,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,2],[2,2,0,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,2],[2,2,0,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,2],[2,2,0,2],[1,1,1,0]],[[1,2,2,1],[1,3,2,3],[2,2,0,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,2],[2,2,0,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[2,2,0,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[2,2,0,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[2,2,0,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[2,2,0,2],[1,1,0,1]],[[1,2,2,1],[1,3,2,3],[2,2,0,2],[1,0,2,0]],[[1,2,2,1],[1,4,2,2],[2,2,0,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,2],[2,2,0,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,2],[2,2,0,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,2],[2,2,0,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,2],[2,2,0,2],[1,0,2,0]],[[1,2,2,1],[1,3,2,3],[2,2,0,2],[1,0,1,1]],[[1,2,2,1],[1,4,2,2],[2,2,0,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,2],[2,2,0,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,2],[2,2,0,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,2],[2,2,0,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,2],[2,2,0,2],[1,0,1,1]],[[1,2,2,1],[1,3,2,3],[2,2,0,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,2],[2,2,0,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[2,2,0,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[2,2,0,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[2,2,0,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[2,2,0,2],[0,2,1,0]],[[1,2,2,1],[1,3,2,3],[2,2,0,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,2],[2,2,0,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[2,2,0,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[2,2,0,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[2,2,0,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[2,2,0,2],[0,2,0,1]],[[1,2,2,1],[1,3,2,3],[2,2,0,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,2],[2,2,0,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[2,2,0,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[2,2,0,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[2,2,0,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[2,2,0,2],[0,1,2,0]],[[1,2,2,1],[1,3,2,3],[2,2,0,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,2],[2,2,0,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[2,2,0,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[2,2,0,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[2,2,0,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[2,2,0,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,2],[2,2,0,0],[1,2,2,0]],[[1,2,2,2],[1,3,2,2],[2,2,0,0],[1,2,2,0]],[[1,2,3,1],[1,3,2,2],[2,2,0,0],[1,2,2,0]],[[1,3,2,1],[1,3,2,2],[2,2,0,0],[1,2,2,0]],[[2,2,2,1],[1,3,2,2],[2,2,0,0],[1,2,2,0]],[[1,2,2,1],[1,4,2,2],[2,1,3,0],[1,1,1,0]],[[1,2,2,2],[1,3,2,2],[2,1,3,0],[1,1,1,0]],[[1,2,3,1],[1,3,2,2],[2,1,3,0],[1,1,1,0]],[[1,3,2,1],[1,3,2,2],[2,1,3,0],[1,1,1,0]],[[2,2,2,1],[1,3,2,2],[2,1,3,0],[1,1,1,0]],[[1,2,2,1],[1,4,2,2],[2,1,3,0],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[2,1,3,0],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[2,1,3,0],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[2,1,3,0],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[2,1,3,0],[1,1,0,1]],[[1,2,2,1],[1,4,2,2],[2,1,3,0],[1,0,2,0]],[[1,2,2,2],[1,3,2,2],[2,1,3,0],[1,0,2,0]],[[1,2,3,1],[1,3,2,2],[2,1,3,0],[1,0,2,0]],[[1,3,2,1],[1,3,2,2],[2,1,3,0],[1,0,2,0]],[[2,2,2,1],[1,3,2,2],[2,1,3,0],[1,0,2,0]],[[1,2,2,1],[1,4,2,2],[2,1,3,0],[1,0,1,1]],[[1,2,2,2],[1,3,2,2],[2,1,3,0],[1,0,1,1]],[[1,2,3,1],[1,3,2,2],[2,1,3,0],[1,0,1,1]],[[1,3,2,1],[1,3,2,2],[2,1,3,0],[1,0,1,1]],[[2,2,2,1],[1,3,2,2],[2,1,3,0],[1,0,1,1]],[[1,2,2,1],[1,4,2,2],[2,1,3,0],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[2,1,3,0],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[2,1,3,0],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[2,1,3,0],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[2,1,3,0],[0,2,1,0]],[[1,2,2,1],[1,4,2,2],[2,1,3,0],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[2,1,3,0],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[2,1,3,0],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[2,1,3,0],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[2,1,3,0],[0,2,0,1]],[[1,2,2,1],[1,4,2,2],[2,1,3,0],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[2,1,3,0],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[2,1,3,0],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[2,1,3,0],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[2,1,3,0],[0,1,2,0]],[[1,2,2,1],[1,4,2,2],[2,1,3,0],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[2,1,3,0],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[2,1,3,0],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[2,1,3,0],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[2,1,3,0],[0,1,1,1]],[[1,2,2,1],[1,4,2,2],[2,1,2,0],[1,2,1,0]],[[1,2,2,2],[1,3,2,2],[2,1,2,0],[1,2,1,0]],[[1,2,3,1],[1,3,2,2],[2,1,2,0],[1,2,1,0]],[[1,3,2,1],[1,3,2,2],[2,1,2,0],[1,2,1,0]],[[2,2,2,1],[1,3,2,2],[2,1,2,0],[1,2,1,0]],[[1,2,2,1],[1,4,2,2],[2,1,2,0],[1,2,0,1]],[[1,2,2,2],[1,3,2,2],[2,1,2,0],[1,2,0,1]],[[1,2,3,1],[1,3,2,2],[2,1,2,0],[1,2,0,1]],[[1,3,2,1],[1,3,2,2],[2,1,2,0],[1,2,0,1]],[[2,2,2,1],[1,3,2,2],[2,1,2,0],[1,2,0,1]],[[1,2,2,1],[1,4,2,2],[2,1,1,0],[1,2,2,0]],[[1,2,2,2],[1,3,2,2],[2,1,1,0],[1,2,2,0]],[[1,2,3,1],[1,3,2,2],[2,1,1,0],[1,2,2,0]],[[1,3,2,1],[1,3,2,2],[2,1,1,0],[1,2,2,0]],[[2,2,2,1],[1,3,2,2],[2,1,1,0],[1,2,2,0]],[[1,2,2,1],[1,3,2,3],[2,1,0,2],[1,2,1,0]],[[1,2,2,1],[1,4,2,2],[2,1,0,2],[1,2,1,0]],[[1,2,2,2],[1,3,2,2],[2,1,0,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,2],[2,1,0,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,2],[2,1,0,2],[1,2,1,0]],[[2,2,2,1],[1,3,2,2],[2,1,0,2],[1,2,1,0]],[[1,2,2,1],[1,3,2,3],[2,1,0,2],[1,2,0,1]],[[1,2,2,1],[1,4,2,2],[2,1,0,2],[1,2,0,1]],[[1,2,2,2],[1,3,2,2],[2,1,0,2],[1,2,0,1]],[[1,2,3,1],[1,3,2,2],[2,1,0,2],[1,2,0,1]],[[1,3,2,1],[1,3,2,2],[2,1,0,2],[1,2,0,1]],[[2,2,2,1],[1,3,2,2],[2,1,0,2],[1,2,0,1]],[[1,2,2,1],[1,3,2,2],[2,0,3,3],[1,0,0,1]],[[1,2,2,1],[1,3,2,3],[2,0,3,2],[1,0,0,1]],[[1,2,2,2],[1,3,2,2],[2,0,3,2],[1,0,0,1]],[[1,2,3,1],[1,3,2,2],[2,0,3,2],[1,0,0,1]],[[1,3,2,1],[1,3,2,2],[2,0,3,2],[1,0,0,1]],[[2,2,2,1],[1,3,2,2],[2,0,3,2],[1,0,0,1]],[[1,2,2,1],[1,3,2,2],[2,0,3,3],[0,1,0,1]],[[1,2,2,1],[1,3,2,3],[2,0,3,2],[0,1,0,1]],[[1,2,2,2],[1,3,2,2],[2,0,3,2],[0,1,0,1]],[[1,2,3,1],[1,3,2,2],[2,0,3,2],[0,1,0,1]],[[1,3,2,1],[1,3,2,2],[2,0,3,2],[0,1,0,1]],[[2,2,2,1],[1,3,2,2],[2,0,3,2],[0,1,0,1]],[[1,2,2,1],[1,3,2,3],[2,0,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,2,2],[2,0,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,2,2],[2,0,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,2,2],[2,0,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,2,2],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[1,3,2,3],[2,0,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[2,0,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[2,0,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[2,0,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[2,0,3,1],[1,1,0,1]],[[1,2,2,1],[1,3,2,3],[2,0,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,2,2],[2,0,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,2,2],[2,0,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,2,2],[2,0,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,2,2],[2,0,3,1],[1,0,2,0]],[[1,2,2,1],[1,3,2,3],[2,0,3,1],[1,0,1,1]],[[1,2,2,2],[1,3,2,2],[2,0,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,2,2],[2,0,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,2,2],[2,0,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,2,2],[2,0,3,1],[1,0,1,1]],[[1,2,2,1],[1,3,2,3],[2,0,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[2,0,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[2,0,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[2,0,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[1,3,2,3],[2,0,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[2,0,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[2,0,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[2,0,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[2,0,3,1],[0,2,0,1]],[[1,2,2,1],[1,3,2,3],[2,0,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[2,0,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[2,0,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[2,0,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[2,0,3,1],[0,1,2,0]],[[1,2,2,1],[1,3,2,3],[2,0,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[2,0,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[2,0,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[2,0,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[2,0,3,1],[0,1,1,1]],[[1,2,2,1],[1,3,2,3],[2,0,3,1],[0,0,2,1]],[[1,2,2,2],[1,3,2,2],[2,0,3,1],[0,0,2,1]],[[1,2,3,1],[1,3,2,2],[2,0,3,1],[0,0,2,1]],[[1,3,2,1],[1,3,2,2],[2,0,3,1],[0,0,2,1]],[[2,2,2,1],[1,3,2,2],[2,0,3,1],[0,0,2,1]],[[1,2,2,1],[1,4,2,2],[2,0,3,0],[1,2,1,0]],[[1,2,2,2],[1,3,2,2],[2,0,3,0],[1,2,1,0]],[[1,2,3,1],[1,3,2,2],[2,0,3,0],[1,2,1,0]],[[1,3,2,1],[1,3,2,2],[2,0,3,0],[1,2,1,0]],[[2,2,2,1],[1,3,2,2],[2,0,3,0],[1,2,1,0]],[[1,2,2,1],[1,4,2,2],[2,0,3,0],[1,2,0,1]],[[1,2,2,2],[1,3,2,2],[2,0,3,0],[1,2,0,1]],[[1,2,3,1],[1,3,2,2],[2,0,3,0],[1,2,0,1]],[[1,3,2,1],[1,3,2,2],[2,0,3,0],[1,2,0,1]],[[2,2,2,1],[1,3,2,2],[2,0,3,0],[1,2,0,1]],[[1,2,2,1],[1,4,2,2],[2,0,3,0],[1,1,2,0]],[[1,2,2,2],[1,3,2,2],[2,0,3,0],[1,1,2,0]],[[1,2,3,1],[1,3,2,2],[2,0,3,0],[1,1,2,0]],[[1,3,2,1],[1,3,2,2],[2,0,3,0],[1,1,2,0]],[[2,2,2,1],[1,3,2,2],[2,0,3,0],[1,1,2,0]],[[1,2,2,1],[1,3,2,3],[2,0,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,2,2],[2,0,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,2,2],[2,0,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,2,2],[2,0,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,2,2],[2,0,3,0],[1,0,2,1]],[[1,2,2,1],[1,4,2,2],[2,0,3,0],[0,2,2,0]],[[1,2,2,2],[1,3,2,2],[2,0,3,0],[0,2,2,0]],[[1,2,3,1],[1,3,2,2],[2,0,3,0],[0,2,2,0]],[[1,3,2,1],[1,3,2,2],[2,0,3,0],[0,2,2,0]],[[2,2,2,1],[1,3,2,2],[2,0,3,0],[0,2,2,0]],[[1,2,2,1],[1,3,2,3],[2,0,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,2,2],[2,0,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,2,2],[2,0,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,2,2],[2,0,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,2,2],[2,0,3,0],[0,1,2,1]],[[1,2,2,1],[1,3,2,3],[2,0,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,2],[2,0,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,2],[2,0,2,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,2],[2,0,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,2],[2,0,2,2],[1,1,1,0]],[[1,2,2,1],[1,3,2,2],[2,0,2,3],[1,1,0,1]],[[1,2,2,1],[1,3,2,3],[2,0,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[2,0,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[2,0,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[2,0,2,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[2,0,2,2],[1,1,0,1]],[[1,2,2,1],[1,3,2,2],[2,0,2,3],[1,0,2,0]],[[1,2,2,1],[1,3,2,3],[2,0,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,2],[2,0,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,2],[2,0,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,2],[2,0,2,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,2],[2,0,2,2],[1,0,2,0]],[[1,2,2,1],[1,3,2,2],[2,0,2,2],[1,0,1,2]],[[1,2,2,1],[1,3,2,2],[2,0,2,3],[1,0,1,1]],[[1,2,2,1],[1,3,2,3],[2,0,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,2],[2,0,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,2],[2,0,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,2],[2,0,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,2],[2,0,2,2],[1,0,1,1]],[[1,2,2,1],[1,3,2,3],[2,0,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[2,0,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[2,0,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[2,0,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[2,0,2,2],[0,2,1,0]],[[1,2,2,1],[1,3,2,2],[2,0,2,3],[0,2,0,1]],[[1,2,2,1],[1,3,2,3],[2,0,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[2,0,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[2,0,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[2,0,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[2,0,2,2],[0,2,0,1]],[[1,2,2,1],[1,3,2,2],[2,0,2,3],[0,1,2,0]],[[1,2,2,1],[1,3,2,3],[2,0,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[2,0,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[2,0,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[2,0,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[2,0,2,2],[0,1,2,0]],[[1,2,2,1],[1,3,2,2],[2,0,2,2],[0,1,1,2]],[[1,2,2,1],[1,3,2,2],[2,0,2,3],[0,1,1,1]],[[1,2,2,1],[1,3,2,3],[2,0,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[2,0,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[2,0,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[2,0,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[2,0,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,2,2],[2,0,2,2],[0,0,2,2]],[[1,2,2,1],[1,3,2,2],[2,0,2,3],[0,0,2,1]],[[1,2,2,1],[1,3,2,3],[2,0,2,2],[0,0,2,1]],[[1,2,2,2],[1,3,2,2],[2,0,2,2],[0,0,2,1]],[[1,2,3,1],[1,3,2,2],[2,0,2,2],[0,0,2,1]],[[1,3,2,1],[1,3,2,2],[2,0,2,2],[0,0,2,1]],[[2,2,2,1],[1,3,2,2],[2,0,2,2],[0,0,2,1]],[[1,2,2,1],[1,4,2,2],[2,0,2,0],[1,2,2,0]],[[1,2,2,2],[1,3,2,2],[2,0,2,0],[1,2,2,0]],[[1,2,3,1],[1,3,2,2],[2,0,2,0],[1,2,2,0]],[[1,3,2,1],[1,3,2,2],[2,0,2,0],[1,2,2,0]],[[2,2,2,1],[1,3,2,2],[2,0,2,0],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[1,0,3,3],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,0,3,2],[1,2,3,1]],[[0,2,1,1],[1,3,3,0],[1,0,3,2],[1,2,2,2]],[[0,2,1,1],[1,3,3,0],[1,1,2,3],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,1,2,2],[2,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,1,2,2],[1,3,2,1]],[[0,2,1,1],[1,3,3,0],[1,1,2,2],[1,2,3,1]],[[0,2,1,1],[1,3,3,0],[1,1,2,2],[1,2,2,2]],[[0,3,1,1],[1,3,3,0],[1,1,3,1],[1,2,2,1]],[[0,2,1,1],[1,4,3,0],[1,1,3,1],[1,2,2,1]],[[0,2,1,1],[1,3,4,0],[1,1,3,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,1,4,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,1,3,1],[2,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,1,3,1],[1,3,2,1]],[[0,2,1,1],[1,3,3,0],[1,1,3,1],[1,2,3,1]],[[0,2,1,1],[1,3,3,0],[1,1,3,1],[1,2,2,2]],[[0,3,1,1],[1,3,3,0],[1,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,4,3,0],[1,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,3,4,0],[1,1,3,2],[1,2,1,1]],[[0,2,1,1],[1,3,3,0],[1,1,4,2],[1,2,1,1]],[[0,2,1,1],[1,3,3,0],[1,1,3,3],[1,2,1,1]],[[0,2,1,1],[1,3,3,0],[1,1,3,2],[1,2,1,2]],[[0,3,1,1],[1,3,3,0],[1,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,4,3,0],[1,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,4,0],[1,1,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[1,1,4,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[1,1,3,3],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[1,1,3,2],[2,2,2,0]],[[0,2,1,1],[1,3,3,0],[1,1,3,2],[1,3,2,0]],[[0,2,1,1],[1,3,3,0],[1,1,3,2],[1,2,3,0]],[[0,2,1,1],[1,3,3,0],[1,2,2,3],[1,1,2,1]],[[0,2,1,1],[1,3,3,0],[1,2,2,2],[1,1,3,1]],[[0,2,1,1],[1,3,3,0],[1,2,2,2],[1,1,2,2]],[[0,3,1,1],[1,3,3,0],[1,2,3,1],[1,1,2,1]],[[0,2,1,1],[1,4,3,0],[1,2,3,1],[1,1,2,1]],[[0,2,1,1],[1,3,4,0],[1,2,3,1],[1,1,2,1]],[[0,2,1,1],[1,3,3,0],[1,2,4,1],[1,1,2,1]],[[0,2,1,1],[1,3,3,0],[1,2,3,1],[1,1,3,1]],[[0,2,1,1],[1,3,3,0],[1,2,3,1],[1,1,2,2]],[[0,3,1,1],[1,3,3,0],[1,2,3,1],[1,2,1,1]],[[0,2,1,1],[1,4,3,0],[1,2,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,4,0],[1,2,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,3,0],[1,2,4,1],[1,2,1,1]],[[0,2,1,1],[1,3,4,0],[1,2,3,2],[1,0,2,1]],[[0,2,1,1],[1,3,3,0],[1,2,4,2],[1,0,2,1]],[[0,2,1,1],[1,3,3,0],[1,2,3,3],[1,0,2,1]],[[0,2,1,1],[1,3,3,0],[1,2,3,2],[1,0,2,2]],[[0,3,1,1],[1,3,3,0],[1,2,3,2],[1,1,1,1]],[[0,2,1,1],[1,4,3,0],[1,2,3,2],[1,1,1,1]],[[0,2,1,1],[1,3,4,0],[1,2,3,2],[1,1,1,1]],[[0,2,1,1],[1,3,3,0],[1,2,4,2],[1,1,1,1]],[[0,2,1,1],[1,3,3,0],[1,2,3,3],[1,1,1,1]],[[0,2,1,1],[1,3,3,0],[1,2,3,2],[1,1,1,2]],[[0,3,1,1],[1,3,3,0],[1,2,3,2],[1,1,2,0]],[[0,2,1,1],[1,4,3,0],[1,2,3,2],[1,1,2,0]],[[0,2,1,1],[1,3,4,0],[1,2,3,2],[1,1,2,0]],[[0,2,1,1],[1,3,3,0],[1,2,4,2],[1,1,2,0]],[[0,2,1,1],[1,3,3,0],[1,2,3,3],[1,1,2,0]],[[0,2,1,1],[1,3,3,0],[1,2,3,2],[1,1,3,0]],[[0,3,1,1],[1,3,3,0],[1,2,3,2],[1,2,0,1]],[[0,2,1,1],[1,4,3,0],[1,2,3,2],[1,2,0,1]],[[0,2,1,1],[1,3,4,0],[1,2,3,2],[1,2,0,1]],[[0,2,1,1],[1,3,3,0],[1,2,4,2],[1,2,0,1]],[[0,2,1,1],[1,3,3,0],[1,2,3,3],[1,2,0,1]],[[0,2,1,1],[1,3,3,0],[1,2,3,2],[1,2,0,2]],[[0,3,1,1],[1,3,3,0],[1,2,3,2],[1,2,1,0]],[[0,2,1,1],[1,4,3,0],[1,2,3,2],[1,2,1,0]],[[0,2,1,1],[1,3,4,0],[1,2,3,2],[1,2,1,0]],[[0,2,1,1],[1,3,3,0],[1,2,4,2],[1,2,1,0]],[[0,2,1,1],[1,3,3,0],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[1,3,2,2],[2,0,1,2],[1,0,2,2]],[[1,2,2,1],[1,3,2,2],[2,0,1,3],[1,0,2,1]],[[1,2,2,1],[1,3,2,3],[2,0,1,2],[1,0,2,1]],[[1,2,2,2],[1,3,2,2],[2,0,1,2],[1,0,2,1]],[[1,2,3,1],[1,3,2,2],[2,0,1,2],[1,0,2,1]],[[1,3,2,1],[1,3,2,2],[2,0,1,2],[1,0,2,1]],[[2,2,2,1],[1,3,2,2],[2,0,1,2],[1,0,2,1]],[[0,3,1,1],[1,3,3,0],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[1,4,3,0],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,4,0],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,4,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,3,0,3],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,3,0,2],[2,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,3,0,2],[1,3,2,1]],[[0,2,1,1],[1,3,3,0],[1,3,0,2],[1,2,3,1]],[[0,2,1,1],[1,3,3,0],[1,3,0,2],[1,2,2,2]],[[0,3,1,1],[1,3,3,0],[1,3,1,1],[1,2,2,1]],[[0,2,1,1],[1,4,3,0],[1,3,1,1],[1,2,2,1]],[[0,2,1,1],[1,3,4,0],[1,3,1,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,4,1,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,3,1,1],[2,2,2,1]],[[0,2,1,1],[1,3,3,0],[1,3,1,1],[1,3,2,1]],[[0,2,1,1],[1,3,3,0],[1,3,1,1],[1,2,3,1]],[[0,2,1,1],[1,3,3,0],[1,3,1,1],[1,2,2,2]],[[0,3,1,1],[1,3,3,0],[1,3,1,2],[1,2,2,0]],[[0,2,1,1],[1,4,3,0],[1,3,1,2],[1,2,2,0]],[[0,2,1,1],[1,3,4,0],[1,3,1,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[1,4,1,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[1,3,1,2],[2,2,2,0]],[[0,2,1,1],[1,3,3,0],[1,3,1,2],[1,3,2,0]],[[0,2,1,1],[1,3,3,0],[1,3,1,2],[1,2,3,0]],[[0,3,1,1],[1,3,3,0],[1,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,4,3,0],[1,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,3,4,0],[1,3,2,1],[1,1,2,1]],[[0,2,1,1],[1,3,3,0],[1,4,2,1],[1,1,2,1]],[[0,3,1,1],[1,3,3,0],[1,3,2,1],[1,2,1,1]],[[0,2,1,1],[1,4,3,0],[1,3,2,1],[1,2,1,1]],[[0,2,1,1],[1,3,4,0],[1,3,2,1],[1,2,1,1]],[[0,2,1,1],[1,3,3,0],[1,4,2,1],[1,2,1,1]],[[0,2,1,1],[1,3,3,0],[1,3,2,1],[2,2,1,1]],[[0,2,1,1],[1,3,3,0],[1,3,2,1],[1,3,1,1]],[[0,3,1,1],[1,3,3,0],[1,3,2,2],[1,1,1,1]],[[0,2,1,1],[1,4,3,0],[1,3,2,2],[1,1,1,1]],[[0,2,1,1],[1,3,4,0],[1,3,2,2],[1,1,1,1]],[[0,2,1,1],[1,3,3,0],[1,4,2,2],[1,1,1,1]],[[0,3,1,1],[1,3,3,0],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,4,3,0],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,3,4,0],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[1,3,3,0],[1,4,2,2],[1,1,2,0]],[[0,3,1,1],[1,3,3,0],[1,3,2,2],[1,2,0,1]],[[0,2,1,1],[1,4,3,0],[1,3,2,2],[1,2,0,1]],[[0,2,1,1],[1,3,4,0],[1,3,2,2],[1,2,0,1]],[[0,2,1,1],[1,3,3,0],[1,4,2,2],[1,2,0,1]],[[0,2,1,1],[1,3,3,0],[1,3,2,2],[2,2,0,1]],[[0,2,1,1],[1,3,3,0],[1,3,2,2],[1,3,0,1]],[[0,3,1,1],[1,3,3,0],[1,3,2,2],[1,2,1,0]],[[0,2,1,1],[1,4,3,0],[1,3,2,2],[1,2,1,0]],[[0,2,1,1],[1,3,4,0],[1,3,2,2],[1,2,1,0]],[[0,2,1,1],[1,3,3,0],[1,4,2,2],[1,2,1,0]],[[0,2,1,1],[1,3,3,0],[1,3,2,2],[2,2,1,0]],[[0,2,1,1],[1,3,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[1,3,2,2],[2,0,1,2],[0,1,2,2]],[[1,2,2,1],[1,3,2,2],[2,0,1,3],[0,1,2,1]],[[1,2,2,1],[1,3,2,3],[2,0,1,2],[0,1,2,1]],[[1,2,2,2],[1,3,2,2],[2,0,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,2,2],[2,0,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,2,2],[2,0,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,2,2],[2,0,1,2],[0,1,2,1]],[[0,3,1,1],[1,3,3,0],[1,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,4,3,0],[1,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,3,4,0],[1,3,3,2],[1,2,0,0]],[[0,2,1,1],[1,3,3,0],[1,4,3,2],[1,2,0,0]],[[0,2,1,1],[1,3,3,0],[3,0,2,2],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,0,2,3],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,0,2,2],[2,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,0,2,2],[1,3,2,1]],[[0,2,1,1],[1,3,3,0],[2,0,2,2],[1,2,3,1]],[[0,2,1,1],[1,3,3,0],[2,0,2,2],[1,2,2,2]],[[0,3,1,1],[1,3,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[1,4,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[1,3,4,0],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[3,0,3,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,0,4,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,0,3,1],[2,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,0,3,1],[1,3,2,1]],[[0,2,1,1],[1,3,3,0],[2,0,3,1],[1,2,3,1]],[[0,2,1,1],[1,3,3,0],[2,0,3,1],[1,2,2,2]],[[0,2,1,1],[1,3,3,0],[2,0,3,3],[0,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,0,3,2],[0,2,3,1]],[[0,2,1,1],[1,3,3,0],[2,0,3,2],[0,2,2,2]],[[0,3,1,1],[1,3,3,0],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[1,4,3,0],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[1,3,4,0],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[1,3,3,0],[2,0,4,2],[1,2,1,1]],[[0,2,1,1],[1,3,3,0],[2,0,3,3],[1,2,1,1]],[[0,2,1,1],[1,3,3,0],[2,0,3,2],[1,2,1,2]],[[0,3,1,1],[1,3,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,4,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,4,0],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[3,0,3,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,0,4,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,0,3,3],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,0,3,2],[2,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,0,3,2],[1,3,2,0]],[[0,2,1,1],[1,3,3,0],[2,0,3,2],[1,2,3,0]],[[0,2,1,1],[1,3,3,0],[2,1,2,3],[0,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,1,2,2],[0,3,2,1]],[[0,2,1,1],[1,3,3,0],[2,1,2,2],[0,2,3,1]],[[0,2,1,1],[1,3,3,0],[2,1,2,2],[0,2,2,2]],[[0,3,1,1],[1,3,3,0],[2,1,3,1],[0,2,2,1]],[[0,2,1,1],[1,4,3,0],[2,1,3,1],[0,2,2,1]],[[0,2,1,1],[1,3,4,0],[2,1,3,1],[0,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,1,4,1],[0,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,1,3,1],[0,3,2,1]],[[0,2,1,1],[1,3,3,0],[2,1,3,1],[0,2,3,1]],[[0,2,1,1],[1,3,3,0],[2,1,3,1],[0,2,2,2]],[[0,3,1,1],[1,3,3,0],[2,1,3,2],[0,2,1,1]],[[0,2,1,1],[1,4,3,0],[2,1,3,2],[0,2,1,1]],[[0,2,1,1],[1,3,4,0],[2,1,3,2],[0,2,1,1]],[[0,2,1,1],[1,3,3,0],[2,1,4,2],[0,2,1,1]],[[0,2,1,1],[1,3,3,0],[2,1,3,3],[0,2,1,1]],[[0,2,1,1],[1,3,3,0],[2,1,3,2],[0,2,1,2]],[[0,3,1,1],[1,3,3,0],[2,1,3,2],[0,2,2,0]],[[0,2,1,1],[1,4,3,0],[2,1,3,2],[0,2,2,0]],[[0,2,1,1],[1,3,4,0],[2,1,3,2],[0,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,1,4,2],[0,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,1,3,3],[0,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,1,3,2],[0,3,2,0]],[[0,2,1,1],[1,3,3,0],[2,1,3,2],[0,2,3,0]],[[0,2,1,1],[1,3,3,0],[3,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,0,3],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,0,2],[2,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,0,2],[1,3,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,0,2],[1,2,3,1]],[[0,2,1,1],[1,3,3,0],[2,2,0,2],[1,2,2,2]],[[0,2,1,1],[1,3,3,0],[3,2,1,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,1,1],[2,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,1,1],[1,3,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,1,1],[1,2,3,1]],[[0,2,1,1],[1,3,3,0],[2,2,1,1],[1,2,2,2]],[[0,2,1,1],[1,3,3,0],[3,2,1,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,2,1,2],[2,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,2,1,2],[1,3,2,0]],[[0,2,1,1],[1,3,3,0],[2,2,1,2],[1,2,3,0]],[[0,2,1,1],[1,3,3,0],[3,2,2,1],[1,2,1,1]],[[0,2,1,1],[1,3,3,0],[2,2,2,1],[2,2,1,1]],[[0,2,1,1],[1,3,3,0],[2,2,2,1],[1,3,1,1]],[[0,2,1,1],[1,3,3,0],[2,2,2,3],[0,1,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,2,2],[0,1,3,1]],[[0,2,1,1],[1,3,3,0],[2,2,2,2],[0,1,2,2]],[[0,2,1,1],[1,3,3,0],[2,2,2,3],[1,0,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,2,2],[1,0,3,1]],[[0,2,1,1],[1,3,3,0],[2,2,2,2],[1,0,2,2]],[[0,2,1,1],[1,3,3,0],[3,2,2,2],[1,2,0,1]],[[0,2,1,1],[1,3,3,0],[2,2,2,2],[2,2,0,1]],[[0,2,1,1],[1,3,3,0],[2,2,2,2],[1,3,0,1]],[[0,2,1,1],[1,3,3,0],[3,2,2,2],[1,2,1,0]],[[0,2,1,1],[1,3,3,0],[2,2,2,2],[2,2,1,0]],[[0,2,1,1],[1,3,3,0],[2,2,2,2],[1,3,1,0]],[[0,3,1,1],[1,3,3,0],[2,2,3,1],[0,1,2,1]],[[0,2,1,1],[1,4,3,0],[2,2,3,1],[0,1,2,1]],[[0,2,1,1],[1,3,4,0],[2,2,3,1],[0,1,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,4,1],[0,1,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,1],[0,1,3,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,1],[0,1,2,2]],[[0,3,1,1],[1,3,3,0],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[1,4,3,0],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[1,3,4,0],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[1,3,3,0],[2,2,4,1],[0,2,1,1]],[[0,3,1,1],[1,3,3,0],[2,2,3,1],[1,0,2,1]],[[0,2,1,1],[1,4,3,0],[2,2,3,1],[1,0,2,1]],[[0,2,1,1],[1,3,4,0],[2,2,3,1],[1,0,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,4,1],[1,0,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,1],[1,0,3,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,1],[1,0,2,2]],[[0,3,1,1],[1,3,3,0],[2,2,3,1],[1,1,1,1]],[[0,2,1,1],[1,4,3,0],[2,2,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,4,0],[2,2,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,3,0],[2,2,4,1],[1,1,1,1]],[[1,2,2,1],[1,3,2,2],[1,4,3,0],[1,1,0,0]],[[1,2,2,1],[1,4,2,2],[1,3,3,0],[1,1,0,0]],[[1,2,2,2],[1,3,2,2],[1,3,3,0],[1,1,0,0]],[[1,2,3,1],[1,3,2,2],[1,3,3,0],[1,1,0,0]],[[1,3,2,1],[1,3,2,2],[1,3,3,0],[1,1,0,0]],[[2,2,2,1],[1,3,2,2],[1,3,3,0],[1,1,0,0]],[[0,3,1,1],[1,3,3,0],[2,2,3,2],[0,0,2,1]],[[0,2,1,1],[1,4,3,0],[2,2,3,2],[0,0,2,1]],[[0,2,1,1],[1,3,4,0],[2,2,3,2],[0,0,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,4,2],[0,0,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,3],[0,0,2,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,2],[0,0,2,2]],[[0,3,1,1],[1,3,3,0],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[1,4,3,0],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[1,3,4,0],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[1,3,3,0],[2,2,4,2],[0,1,1,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,3],[0,1,1,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,2],[0,1,1,2]],[[0,3,1,1],[1,3,3,0],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[1,4,3,0],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[1,3,4,0],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[1,3,3,0],[2,2,4,2],[0,1,2,0]],[[0,2,1,1],[1,3,3,0],[2,2,3,3],[0,1,2,0]],[[0,2,1,1],[1,3,3,0],[2,2,3,2],[0,1,3,0]],[[0,3,1,1],[1,3,3,0],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[1,4,3,0],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[1,3,4,0],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[1,3,3,0],[2,2,4,2],[0,2,0,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,3],[0,2,0,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,2],[0,2,0,2]],[[0,3,1,1],[1,3,3,0],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[1,4,3,0],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[1,3,4,0],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[1,3,3,0],[2,2,4,2],[0,2,1,0]],[[0,2,1,1],[1,3,3,0],[2,2,3,3],[0,2,1,0]],[[0,3,1,1],[1,3,3,0],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[1,4,3,0],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[1,3,4,0],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[1,3,3,0],[2,2,4,2],[1,0,1,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,3],[1,0,1,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,2],[1,0,1,2]],[[0,3,1,1],[1,3,3,0],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[1,4,3,0],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[1,3,4,0],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[1,3,3,0],[2,2,4,2],[1,0,2,0]],[[0,2,1,1],[1,3,3,0],[2,2,3,3],[1,0,2,0]],[[0,2,1,1],[1,3,3,0],[2,2,3,2],[1,0,3,0]],[[0,3,1,1],[1,3,3,0],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[1,4,3,0],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[1,3,4,0],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[1,3,3,0],[2,2,4,2],[1,1,0,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,3],[1,1,0,1]],[[0,2,1,1],[1,3,3,0],[2,2,3,2],[1,1,0,2]],[[0,3,1,1],[1,3,3,0],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[1,4,3,0],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[1,3,4,0],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[1,3,3,0],[2,2,4,2],[1,1,1,0]],[[0,2,1,1],[1,3,3,0],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[1,3,2,2],[1,4,3,0],[0,2,0,0]],[[1,2,2,1],[1,4,2,2],[1,3,3,0],[0,2,0,0]],[[1,2,2,2],[1,3,2,2],[1,3,3,0],[0,2,0,0]],[[1,2,3,1],[1,3,2,2],[1,3,3,0],[0,2,0,0]],[[1,3,2,1],[1,3,2,2],[1,3,3,0],[0,2,0,0]],[[2,2,2,1],[1,3,2,2],[1,3,3,0],[0,2,0,0]],[[0,2,1,1],[1,3,3,0],[3,3,0,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,3,0,1],[2,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,3,0,1],[1,3,2,1]],[[0,3,1,1],[1,3,3,0],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,4,3,0],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,3,4,0],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,3,3,0],[3,3,0,2],[0,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,4,0,2],[0,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,3,0,3],[0,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,3,0,2],[0,3,2,1]],[[0,2,1,1],[1,3,3,0],[2,3,0,2],[0,2,3,1]],[[0,2,1,1],[1,3,3,0],[2,3,0,2],[0,2,2,2]],[[0,3,1,1],[1,3,3,0],[2,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,4,3,0],[2,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,3,4,0],[2,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,3,3,0],[3,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,3,3,0],[2,4,0,2],[1,1,2,1]],[[0,2,1,1],[1,3,3,0],[2,3,0,2],[2,1,2,1]],[[0,2,1,1],[1,3,3,0],[3,3,0,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,3,0,2],[2,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,3,0,2],[1,3,2,0]],[[0,3,1,1],[1,3,3,0],[2,3,1,1],[0,2,2,1]],[[0,2,1,1],[1,4,3,0],[2,3,1,1],[0,2,2,1]],[[0,2,1,1],[1,3,4,0],[2,3,1,1],[0,2,2,1]],[[0,2,1,1],[1,3,3,0],[3,3,1,1],[0,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,4,1,1],[0,2,2,1]],[[0,2,1,1],[1,3,3,0],[2,3,1,1],[0,3,2,1]],[[0,2,1,1],[1,3,3,0],[2,3,1,1],[0,2,3,1]],[[0,2,1,1],[1,3,3,0],[2,3,1,1],[0,2,2,2]],[[0,3,1,1],[1,3,3,0],[2,3,1,1],[1,1,2,1]],[[0,2,1,1],[1,4,3,0],[2,3,1,1],[1,1,2,1]],[[0,2,1,1],[1,3,4,0],[2,3,1,1],[1,1,2,1]],[[0,2,1,1],[1,3,3,0],[3,3,1,1],[1,1,2,1]],[[0,2,1,1],[1,3,3,0],[2,4,1,1],[1,1,2,1]],[[0,2,1,1],[1,3,3,0],[2,3,1,1],[2,1,2,1]],[[0,3,1,1],[1,3,3,0],[2,3,1,2],[0,2,2,0]],[[0,2,1,1],[1,4,3,0],[2,3,1,2],[0,2,2,0]],[[0,2,1,1],[1,3,4,0],[2,3,1,2],[0,2,2,0]],[[0,2,1,1],[1,3,3,0],[3,3,1,2],[0,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,4,1,2],[0,2,2,0]],[[0,2,1,1],[1,3,3,0],[2,3,1,2],[0,3,2,0]],[[0,2,1,1],[1,3,3,0],[2,3,1,2],[0,2,3,0]],[[0,3,1,1],[1,3,3,0],[2,3,1,2],[1,1,2,0]],[[0,2,1,1],[1,4,3,0],[2,3,1,2],[1,1,2,0]],[[0,2,1,1],[1,3,4,0],[2,3,1,2],[1,1,2,0]],[[0,2,1,1],[1,3,3,0],[3,3,1,2],[1,1,2,0]],[[0,2,1,1],[1,3,3,0],[2,4,1,2],[1,1,2,0]],[[0,2,1,1],[1,3,3,0],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[1,4,2,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,2],[1,3,2,2],[1,3,3,0],[0,0,2,0]],[[1,2,3,1],[1,3,2,2],[1,3,3,0],[0,0,2,0]],[[1,3,2,1],[1,3,2,2],[1,3,3,0],[0,0,2,0]],[[2,2,2,1],[1,3,2,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,1],[1,4,2,2],[1,3,3,0],[0,0,1,1]],[[0,3,1,1],[1,3,3,0],[2,3,2,1],[0,1,2,1]],[[0,2,1,1],[1,4,3,0],[2,3,2,1],[0,1,2,1]],[[0,2,1,1],[1,3,4,0],[2,3,2,1],[0,1,2,1]],[[0,2,1,1],[1,3,3,0],[3,3,2,1],[0,1,2,1]],[[0,2,1,1],[1,3,3,0],[2,4,2,1],[0,1,2,1]],[[0,3,1,1],[1,3,3,0],[2,3,2,1],[0,2,1,1]],[[0,2,1,1],[1,4,3,0],[2,3,2,1],[0,2,1,1]],[[0,2,1,1],[1,3,4,0],[2,3,2,1],[0,2,1,1]],[[0,2,1,1],[1,3,3,0],[3,3,2,1],[0,2,1,1]],[[0,2,1,1],[1,3,3,0],[2,4,2,1],[0,2,1,1]],[[0,2,1,1],[1,3,3,0],[2,3,2,1],[0,3,1,1]],[[0,3,1,1],[1,3,3,0],[2,3,2,1],[1,0,2,1]],[[0,2,1,1],[1,4,3,0],[2,3,2,1],[1,0,2,1]],[[0,2,1,1],[1,3,4,0],[2,3,2,1],[1,0,2,1]],[[0,2,1,1],[1,3,3,0],[3,3,2,1],[1,0,2,1]],[[0,2,1,1],[1,3,3,0],[2,4,2,1],[1,0,2,1]],[[0,2,1,1],[1,3,3,0],[2,3,2,1],[2,0,2,1]],[[0,3,1,1],[1,3,3,0],[2,3,2,1],[1,1,1,1]],[[0,2,1,1],[1,4,3,0],[2,3,2,1],[1,1,1,1]],[[0,2,1,1],[1,3,4,0],[2,3,2,1],[1,1,1,1]],[[0,2,1,1],[1,3,3,0],[3,3,2,1],[1,1,1,1]],[[0,2,1,1],[1,3,3,0],[2,4,2,1],[1,1,1,1]],[[0,2,1,1],[1,3,3,0],[2,3,2,1],[2,1,1,1]],[[0,3,1,1],[1,3,3,0],[2,3,2,1],[1,2,0,1]],[[0,2,1,1],[1,4,3,0],[2,3,2,1],[1,2,0,1]],[[0,2,1,1],[1,3,3,0],[3,3,2,1],[1,2,0,1]],[[0,2,1,1],[1,3,3,0],[2,4,2,1],[1,2,0,1]],[[0,2,1,1],[1,3,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,2,2],[1,3,2,2],[1,3,3,0],[0,0,1,1]],[[1,2,3,1],[1,3,2,2],[1,3,3,0],[0,0,1,1]],[[1,3,2,1],[1,3,2,2],[1,3,3,0],[0,0,1,1]],[[2,2,2,1],[1,3,2,2],[1,3,3,0],[0,0,1,1]],[[0,3,1,1],[1,3,3,0],[2,3,2,2],[0,1,1,1]],[[0,2,1,1],[1,4,3,0],[2,3,2,2],[0,1,1,1]],[[0,2,1,1],[1,3,4,0],[2,3,2,2],[0,1,1,1]],[[0,2,1,1],[1,3,3,0],[3,3,2,2],[0,1,1,1]],[[0,2,1,1],[1,3,3,0],[2,4,2,2],[0,1,1,1]],[[0,3,1,1],[1,3,3,0],[2,3,2,2],[0,1,2,0]],[[0,2,1,1],[1,4,3,0],[2,3,2,2],[0,1,2,0]],[[0,2,1,1],[1,3,4,0],[2,3,2,2],[0,1,2,0]],[[0,2,1,1],[1,3,3,0],[3,3,2,2],[0,1,2,0]],[[0,2,1,1],[1,3,3,0],[2,4,2,2],[0,1,2,0]],[[0,3,1,1],[1,3,3,0],[2,3,2,2],[0,2,0,1]],[[0,2,1,1],[1,4,3,0],[2,3,2,2],[0,2,0,1]],[[0,2,1,1],[1,3,4,0],[2,3,2,2],[0,2,0,1]],[[0,2,1,1],[1,3,3,0],[3,3,2,2],[0,2,0,1]],[[0,2,1,1],[1,3,3,0],[2,4,2,2],[0,2,0,1]],[[0,2,1,1],[1,3,3,0],[2,3,2,2],[0,3,0,1]],[[0,3,1,1],[1,3,3,0],[2,3,2,2],[0,2,1,0]],[[0,2,1,1],[1,4,3,0],[2,3,2,2],[0,2,1,0]],[[0,2,1,1],[1,3,4,0],[2,3,2,2],[0,2,1,0]],[[0,2,1,1],[1,3,3,0],[3,3,2,2],[0,2,1,0]],[[0,2,1,1],[1,3,3,0],[2,4,2,2],[0,2,1,0]],[[0,2,1,1],[1,3,3,0],[2,3,2,2],[0,3,1,0]],[[0,3,1,1],[1,3,3,0],[2,3,2,2],[1,0,1,1]],[[0,2,1,1],[1,4,3,0],[2,3,2,2],[1,0,1,1]],[[0,2,1,1],[1,3,4,0],[2,3,2,2],[1,0,1,1]],[[0,2,1,1],[1,3,3,0],[3,3,2,2],[1,0,1,1]],[[0,2,1,1],[1,3,3,0],[2,4,2,2],[1,0,1,1]],[[0,2,1,1],[1,3,3,0],[2,3,2,2],[2,0,1,1]],[[0,3,1,1],[1,3,3,0],[2,3,2,2],[1,0,2,0]],[[0,2,1,1],[1,4,3,0],[2,3,2,2],[1,0,2,0]],[[0,2,1,1],[1,3,4,0],[2,3,2,2],[1,0,2,0]],[[0,2,1,1],[1,3,3,0],[3,3,2,2],[1,0,2,0]],[[0,2,1,1],[1,3,3,0],[2,4,2,2],[1,0,2,0]],[[0,2,1,1],[1,3,3,0],[2,3,2,2],[2,0,2,0]],[[0,3,1,1],[1,3,3,0],[2,3,2,2],[1,1,0,1]],[[0,2,1,1],[1,4,3,0],[2,3,2,2],[1,1,0,1]],[[0,2,1,1],[1,3,4,0],[2,3,2,2],[1,1,0,1]],[[0,2,1,1],[1,3,3,0],[3,3,2,2],[1,1,0,1]],[[0,2,1,1],[1,3,3,0],[2,4,2,2],[1,1,0,1]],[[0,2,1,1],[1,3,3,0],[2,3,2,2],[2,1,0,1]],[[0,3,1,1],[1,3,3,0],[2,3,2,2],[1,1,1,0]],[[0,2,1,1],[1,4,3,0],[2,3,2,2],[1,1,1,0]],[[0,2,1,1],[1,3,4,0],[2,3,2,2],[1,1,1,0]],[[0,2,1,1],[1,3,3,0],[3,3,2,2],[1,1,1,0]],[[0,2,1,1],[1,3,3,0],[2,4,2,2],[1,1,1,0]],[[0,2,1,1],[1,3,3,0],[2,3,2,2],[2,1,1,0]],[[0,3,1,1],[1,3,3,0],[2,3,2,2],[1,2,0,0]],[[0,2,1,1],[1,4,3,0],[2,3,2,2],[1,2,0,0]],[[0,2,1,1],[1,3,4,0],[2,3,2,2],[1,2,0,0]],[[0,2,1,1],[1,3,3,0],[3,3,2,2],[1,2,0,0]],[[0,2,1,1],[1,3,3,0],[2,4,2,2],[1,2,0,0]],[[0,2,1,1],[1,3,3,0],[2,3,2,2],[2,2,0,0]],[[0,3,1,1],[1,3,3,0],[2,3,3,1],[0,0,2,1]],[[0,2,1,1],[1,4,3,0],[2,3,3,1],[0,0,2,1]],[[0,2,1,1],[1,3,4,0],[2,3,3,1],[0,0,2,1]],[[0,2,1,1],[1,3,3,0],[2,3,4,1],[0,0,2,1]],[[0,3,1,1],[1,3,3,0],[2,3,3,2],[0,0,1,1]],[[0,2,1,1],[1,4,3,0],[2,3,3,2],[0,0,1,1]],[[0,2,1,1],[1,3,4,0],[2,3,3,2],[0,0,1,1]],[[0,2,1,1],[1,3,3,0],[2,3,4,2],[0,0,1,1]],[[0,2,1,1],[1,3,3,0],[2,3,3,3],[0,0,1,1]],[[0,2,1,1],[1,3,3,0],[2,3,3,2],[0,0,1,2]],[[0,3,1,1],[1,3,3,0],[2,3,3,2],[0,0,2,0]],[[0,2,1,1],[1,4,3,0],[2,3,3,2],[0,0,2,0]],[[0,2,1,1],[1,3,4,0],[2,3,3,2],[0,0,2,0]],[[0,2,1,1],[1,3,3,0],[2,3,4,2],[0,0,2,0]],[[0,2,1,1],[1,3,3,0],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,3,2,2],[1,4,2,0],[1,2,0,0]],[[1,2,2,1],[1,4,2,2],[1,3,2,0],[1,2,0,0]],[[1,2,2,2],[1,3,2,2],[1,3,2,0],[1,2,0,0]],[[1,2,3,1],[1,3,2,2],[1,3,2,0],[1,2,0,0]],[[1,3,2,1],[1,3,2,2],[1,3,2,0],[1,2,0,0]],[[2,2,2,1],[1,3,2,2],[1,3,2,0],[1,2,0,0]],[[0,3,1,1],[1,3,3,0],[2,3,3,2],[0,2,0,0]],[[0,2,1,1],[1,4,3,0],[2,3,3,2],[0,2,0,0]],[[0,2,1,1],[1,3,4,0],[2,3,3,2],[0,2,0,0]],[[0,2,1,1],[1,3,3,0],[3,3,3,2],[0,2,0,0]],[[0,2,1,1],[1,3,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[1,3,2,2],[1,4,2,0],[1,1,1,0]],[[1,2,2,1],[1,4,2,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,2],[1,3,2,2],[1,3,2,0],[1,1,1,0]],[[1,2,3,1],[1,3,2,2],[1,3,2,0],[1,1,1,0]],[[1,3,2,1],[1,3,2,2],[1,3,2,0],[1,1,1,0]],[[2,2,2,1],[1,3,2,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,1],[1,3,2,2],[1,4,2,0],[1,1,0,1]],[[1,2,2,1],[1,4,2,2],[1,3,2,0],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[1,3,2,0],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[1,3,2,0],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[1,3,2,0],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[1,3,2,0],[1,1,0,1]],[[1,2,2,1],[1,3,2,2],[1,4,2,0],[1,0,2,0]],[[1,2,2,1],[1,4,2,2],[1,3,2,0],[1,0,2,0]],[[1,2,2,2],[1,3,2,2],[1,3,2,0],[1,0,2,0]],[[1,2,3,1],[1,3,2,2],[1,3,2,0],[1,0,2,0]],[[1,3,2,1],[1,3,2,2],[1,3,2,0],[1,0,2,0]],[[2,2,2,1],[1,3,2,2],[1,3,2,0],[1,0,2,0]],[[0,3,1,1],[1,3,3,0],[2,3,3,2],[1,1,0,0]],[[0,2,1,1],[1,4,3,0],[2,3,3,2],[1,1,0,0]],[[0,2,1,1],[1,3,4,0],[2,3,3,2],[1,1,0,0]],[[0,2,1,1],[1,3,3,0],[3,3,3,2],[1,1,0,0]],[[0,2,1,1],[1,3,3,0],[2,4,3,2],[1,1,0,0]],[[0,2,1,1],[1,3,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[1,4,2,2],[1,3,2,0],[1,0,1,1]],[[1,2,2,2],[1,3,2,2],[1,3,2,0],[1,0,1,1]],[[1,2,3,1],[1,3,2,2],[1,3,2,0],[1,0,1,1]],[[1,3,2,1],[1,3,2,2],[1,3,2,0],[1,0,1,1]],[[2,2,2,1],[1,3,2,2],[1,3,2,0],[1,0,1,1]],[[1,2,2,1],[1,3,2,2],[1,3,2,0],[0,3,1,0]],[[1,2,2,1],[1,3,2,2],[1,4,2,0],[0,2,1,0]],[[1,2,2,1],[1,4,2,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[1,3,2,0],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[1,3,2,0],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[1,3,2,0],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,1],[1,3,2,2],[1,4,2,0],[0,2,0,1]],[[1,2,2,1],[1,4,2,2],[1,3,2,0],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[1,3,2,0],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[1,3,2,0],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[1,3,2,0],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[1,3,2,0],[0,2,0,1]],[[1,2,2,1],[1,3,2,2],[1,4,2,0],[0,1,2,0]],[[1,2,2,1],[1,4,2,2],[1,3,2,0],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[1,3,2,0],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[1,3,2,0],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[1,3,2,0],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[1,3,2,0],[0,1,2,0]],[[1,2,2,1],[1,4,2,2],[1,3,2,0],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[1,3,2,0],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[1,3,2,0],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[1,3,2,0],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[1,3,2,0],[0,1,1,1]],[[0,3,1,1],[1,3,3,1],[1,1,1,2],[1,2,2,1]],[[0,2,1,1],[1,4,3,1],[1,1,1,2],[1,2,2,1]],[[0,2,1,1],[1,3,4,1],[1,1,1,2],[1,2,2,1]],[[0,3,1,1],[1,3,3,1],[1,1,2,2],[1,2,1,1]],[[0,2,1,1],[1,4,3,1],[1,1,2,2],[1,2,1,1]],[[0,2,1,1],[1,3,4,1],[1,1,2,2],[1,2,1,1]],[[0,3,1,1],[1,3,3,1],[1,1,2,2],[1,2,2,0]],[[0,2,1,1],[1,4,3,1],[1,1,2,2],[1,2,2,0]],[[0,2,1,1],[1,3,4,1],[1,1,2,2],[1,2,2,0]],[[0,3,1,1],[1,3,3,1],[1,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,4,3,1],[1,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,3,4,1],[1,1,3,0],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[1,1,4,0],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[1,1,3,0],[2,2,2,1]],[[0,2,1,1],[1,3,3,1],[1,1,3,0],[1,3,2,1]],[[0,2,1,1],[1,3,3,1],[1,1,3,0],[1,2,3,1]],[[0,2,1,1],[1,3,3,1],[1,1,3,0],[1,2,2,2]],[[0,3,1,1],[1,3,3,1],[1,1,3,1],[1,2,1,1]],[[0,2,1,1],[1,4,3,1],[1,1,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,4,1],[1,1,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,3,1],[1,1,4,1],[1,2,1,1]],[[0,3,1,1],[1,3,3,1],[1,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,4,3,1],[1,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,3,4,1],[1,1,3,1],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[1,1,4,1],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[1,1,3,1],[2,2,2,0]],[[0,2,1,1],[1,3,3,1],[1,1,3,1],[1,3,2,0]],[[0,2,1,1],[1,3,3,1],[1,1,3,1],[1,2,3,0]],[[0,3,1,1],[1,3,3,1],[1,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,4,3,1],[1,2,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,4,1],[1,2,0,2],[1,2,2,1]],[[0,3,1,1],[1,3,3,1],[1,2,1,2],[1,1,2,1]],[[0,2,1,1],[1,4,3,1],[1,2,1,2],[1,1,2,1]],[[0,2,1,1],[1,3,4,1],[1,2,1,2],[1,1,2,1]],[[0,3,1,1],[1,3,3,1],[1,2,2,2],[1,1,1,1]],[[0,2,1,1],[1,4,3,1],[1,2,2,2],[1,1,1,1]],[[0,2,1,1],[1,3,4,1],[1,2,2,2],[1,1,1,1]],[[0,3,1,1],[1,3,3,1],[1,2,2,2],[1,1,2,0]],[[0,2,1,1],[1,4,3,1],[1,2,2,2],[1,1,2,0]],[[0,2,1,1],[1,3,4,1],[1,2,2,2],[1,1,2,0]],[[0,3,1,1],[1,3,3,1],[1,2,2,2],[1,2,0,1]],[[0,2,1,1],[1,4,3,1],[1,2,2,2],[1,2,0,1]],[[0,2,1,1],[1,3,4,1],[1,2,2,2],[1,2,0,1]],[[0,3,1,1],[1,3,3,1],[1,2,2,2],[1,2,1,0]],[[0,2,1,1],[1,4,3,1],[1,2,2,2],[1,2,1,0]],[[0,2,1,1],[1,3,4,1],[1,2,2,2],[1,2,1,0]],[[0,3,1,1],[1,3,3,1],[1,2,3,0],[1,1,2,1]],[[0,2,1,1],[1,4,3,1],[1,2,3,0],[1,1,2,1]],[[0,2,1,1],[1,3,4,1],[1,2,3,0],[1,1,2,1]],[[0,2,1,1],[1,3,3,1],[1,2,4,0],[1,1,2,1]],[[0,2,1,1],[1,3,3,1],[1,2,3,0],[1,1,3,1]],[[0,2,1,1],[1,3,3,1],[1,2,3,0],[1,1,2,2]],[[0,3,1,1],[1,3,3,1],[1,2,3,0],[1,2,1,1]],[[0,2,1,1],[1,4,3,1],[1,2,3,0],[1,2,1,1]],[[0,2,1,1],[1,3,4,1],[1,2,3,0],[1,2,1,1]],[[0,2,1,1],[1,3,3,1],[1,2,4,0],[1,2,1,1]],[[0,3,1,1],[1,3,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,1,1],[1,4,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,4,1],[1,2,3,1],[1,1,1,1]],[[0,2,1,1],[1,3,3,1],[1,2,4,1],[1,1,1,1]],[[0,3,1,1],[1,3,3,1],[1,2,3,1],[1,1,2,0]],[[0,2,1,1],[1,4,3,1],[1,2,3,1],[1,1,2,0]],[[0,2,1,1],[1,3,4,1],[1,2,3,1],[1,1,2,0]],[[0,2,1,1],[1,3,3,1],[1,2,4,1],[1,1,2,0]],[[0,2,1,1],[1,3,3,1],[1,2,3,1],[1,1,3,0]],[[0,3,1,1],[1,3,3,1],[1,2,3,1],[1,2,0,1]],[[0,2,1,1],[1,4,3,1],[1,2,3,1],[1,2,0,1]],[[0,2,1,1],[1,3,4,1],[1,2,3,1],[1,2,0,1]],[[0,2,1,1],[1,3,3,1],[1,2,4,1],[1,2,0,1]],[[0,3,1,1],[1,3,3,1],[1,2,3,1],[1,2,1,0]],[[0,2,1,1],[1,4,3,1],[1,2,3,1],[1,2,1,0]],[[0,2,1,1],[1,3,4,1],[1,2,3,1],[1,2,1,0]],[[0,2,1,1],[1,3,3,1],[1,2,4,1],[1,2,1,0]],[[1,2,2,1],[1,3,2,2],[1,4,1,0],[1,1,2,0]],[[0,3,1,1],[1,3,3,1],[1,3,0,1],[1,2,2,1]],[[0,2,1,1],[1,4,3,1],[1,3,0,1],[1,2,2,1]],[[0,2,1,1],[1,3,4,1],[1,3,0,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[1,4,0,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[1,3,0,1],[2,2,2,1]],[[0,2,1,1],[1,3,3,1],[1,3,0,1],[1,3,2,1]],[[0,2,1,1],[1,3,3,1],[1,3,0,1],[1,2,3,1]],[[0,2,1,1],[1,3,3,1],[1,3,0,1],[1,2,2,2]],[[0,3,1,1],[1,3,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,4,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,3,4,1],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[1,3,3,1],[1,4,0,2],[1,1,2,1]],[[0,3,1,1],[1,3,3,1],[1,3,0,2],[1,2,1,1]],[[0,2,1,1],[1,4,3,1],[1,3,0,2],[1,2,1,1]],[[0,2,1,1],[1,3,4,1],[1,3,0,2],[1,2,1,1]],[[0,2,1,1],[1,3,3,1],[1,4,0,2],[1,2,1,1]],[[0,2,1,1],[1,3,3,1],[1,3,0,2],[2,2,1,1]],[[0,2,1,1],[1,3,3,1],[1,3,0,2],[1,3,1,1]],[[0,3,1,1],[1,3,3,1],[1,3,0,2],[1,2,2,0]],[[0,2,1,1],[1,4,3,1],[1,3,0,2],[1,2,2,0]],[[0,2,1,1],[1,3,4,1],[1,3,0,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[1,4,0,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[1,3,0,2],[2,2,2,0]],[[0,2,1,1],[1,3,3,1],[1,3,0,2],[1,3,2,0]],[[0,2,1,1],[1,3,3,1],[1,3,0,2],[1,2,3,0]],[[0,3,1,1],[1,3,3,1],[1,3,1,0],[1,2,2,1]],[[0,2,1,1],[1,4,3,1],[1,3,1,0],[1,2,2,1]],[[0,2,1,1],[1,3,4,1],[1,3,1,0],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[1,4,1,0],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[1,3,1,0],[2,2,2,1]],[[0,2,1,1],[1,3,3,1],[1,3,1,0],[1,3,2,1]],[[0,2,1,1],[1,3,3,1],[1,3,1,0],[1,2,3,1]],[[0,2,1,1],[1,3,3,1],[1,3,1,0],[1,2,2,2]],[[0,3,1,1],[1,3,3,1],[1,3,1,1],[1,2,2,0]],[[0,2,1,1],[1,4,3,1],[1,3,1,1],[1,2,2,0]],[[0,2,1,1],[1,3,4,1],[1,3,1,1],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[1,4,1,1],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[1,3,1,1],[2,2,2,0]],[[0,2,1,1],[1,3,3,1],[1,3,1,1],[1,3,2,0]],[[0,2,1,1],[1,3,3,1],[1,3,1,1],[1,2,3,0]],[[0,3,1,1],[1,3,3,1],[1,3,1,2],[1,1,1,1]],[[0,2,1,1],[1,4,3,1],[1,3,1,2],[1,1,1,1]],[[0,2,1,1],[1,3,4,1],[1,3,1,2],[1,1,1,1]],[[0,2,1,1],[1,3,3,1],[1,4,1,2],[1,1,1,1]],[[0,3,1,1],[1,3,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,1,1],[1,4,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,1,1],[1,3,4,1],[1,3,1,2],[1,1,2,0]],[[0,2,1,1],[1,3,3,1],[1,4,1,2],[1,1,2,0]],[[0,3,1,1],[1,3,3,1],[1,3,1,2],[1,2,0,1]],[[0,2,1,1],[1,4,3,1],[1,3,1,2],[1,2,0,1]],[[0,2,1,1],[1,3,4,1],[1,3,1,2],[1,2,0,1]],[[0,2,1,1],[1,3,3,1],[1,4,1,2],[1,2,0,1]],[[0,2,1,1],[1,3,3,1],[1,3,1,2],[2,2,0,1]],[[0,2,1,1],[1,3,3,1],[1,3,1,2],[1,3,0,1]],[[0,3,1,1],[1,3,3,1],[1,3,1,2],[1,2,1,0]],[[0,2,1,1],[1,4,3,1],[1,3,1,2],[1,2,1,0]],[[0,2,1,1],[1,3,4,1],[1,3,1,2],[1,2,1,0]],[[0,2,1,1],[1,3,3,1],[1,4,1,2],[1,2,1,0]],[[0,2,1,1],[1,3,3,1],[1,3,1,2],[2,2,1,0]],[[0,2,1,1],[1,3,3,1],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[1,4,2,2],[1,3,1,0],[1,1,2,0]],[[1,2,2,2],[1,3,2,2],[1,3,1,0],[1,1,2,0]],[[1,2,3,1],[1,3,2,2],[1,3,1,0],[1,1,2,0]],[[1,3,2,1],[1,3,2,2],[1,3,1,0],[1,1,2,0]],[[2,2,2,1],[1,3,2,2],[1,3,1,0],[1,1,2,0]],[[0,3,1,1],[1,3,3,1],[1,3,2,0],[1,1,2,1]],[[0,2,1,1],[1,4,3,1],[1,3,2,0],[1,1,2,1]],[[0,2,1,1],[1,3,4,1],[1,3,2,0],[1,1,2,1]],[[0,2,1,1],[1,3,3,1],[1,4,2,0],[1,1,2,1]],[[0,3,1,1],[1,3,3,1],[1,3,2,0],[1,2,1,1]],[[0,2,1,1],[1,4,3,1],[1,3,2,0],[1,2,1,1]],[[0,2,1,1],[1,3,4,1],[1,3,2,0],[1,2,1,1]],[[0,2,1,1],[1,3,3,1],[1,4,2,0],[1,2,1,1]],[[0,2,1,1],[1,3,3,1],[1,3,2,0],[2,2,1,1]],[[0,2,1,1],[1,3,3,1],[1,3,2,0],[1,3,1,1]],[[0,3,1,1],[1,3,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,1,1],[1,4,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,1,1],[1,3,4,1],[1,3,2,1],[1,1,1,1]],[[0,2,1,1],[1,3,3,1],[1,4,2,1],[1,1,1,1]],[[0,3,1,1],[1,3,3,1],[1,3,2,1],[1,1,2,0]],[[0,2,1,1],[1,4,3,1],[1,3,2,1],[1,1,2,0]],[[0,2,1,1],[1,3,4,1],[1,3,2,1],[1,1,2,0]],[[0,2,1,1],[1,3,3,1],[1,4,2,1],[1,1,2,0]],[[0,3,1,1],[1,3,3,1],[1,3,2,1],[1,2,0,1]],[[0,2,1,1],[1,4,3,1],[1,3,2,1],[1,2,0,1]],[[0,2,1,1],[1,3,4,1],[1,3,2,1],[1,2,0,1]],[[0,2,1,1],[1,3,3,1],[1,4,2,1],[1,2,0,1]],[[0,2,1,1],[1,3,3,1],[1,3,2,1],[2,2,0,1]],[[0,2,1,1],[1,3,3,1],[1,3,2,1],[1,3,0,1]],[[0,3,1,1],[1,3,3,1],[1,3,2,1],[1,2,1,0]],[[0,2,1,1],[1,4,3,1],[1,3,2,1],[1,2,1,0]],[[0,2,1,1],[1,3,4,1],[1,3,2,1],[1,2,1,0]],[[0,2,1,1],[1,3,3,1],[1,4,2,1],[1,2,1,0]],[[0,2,1,1],[1,3,3,1],[1,3,2,1],[2,2,1,0]],[[0,2,1,1],[1,3,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[1,3,2,2],[1,3,1,0],[0,3,2,0]],[[1,2,2,1],[1,3,2,2],[1,4,1,0],[0,2,2,0]],[[1,2,2,1],[1,4,2,2],[1,3,1,0],[0,2,2,0]],[[1,2,2,2],[1,3,2,2],[1,3,1,0],[0,2,2,0]],[[1,2,3,1],[1,3,2,2],[1,3,1,0],[0,2,2,0]],[[1,3,2,1],[1,3,2,2],[1,3,1,0],[0,2,2,0]],[[2,2,2,1],[1,3,2,2],[1,3,1,0],[0,2,2,0]],[[1,2,2,1],[1,3,2,3],[1,3,0,2],[1,2,0,0]],[[1,2,2,1],[1,4,2,2],[1,3,0,2],[1,2,0,0]],[[1,2,2,2],[1,3,2,2],[1,3,0,2],[1,2,0,0]],[[1,2,3,1],[1,3,2,2],[1,3,0,2],[1,2,0,0]],[[1,3,2,1],[1,3,2,2],[1,3,0,2],[1,2,0,0]],[[2,2,2,1],[1,3,2,2],[1,3,0,2],[1,2,0,0]],[[0,3,1,1],[1,3,3,1],[1,3,3,0],[1,1,2,0]],[[0,2,1,1],[1,4,3,1],[1,3,3,0],[1,1,2,0]],[[0,2,1,1],[1,3,4,1],[1,3,3,0],[1,1,2,0]],[[0,2,1,1],[1,3,3,1],[1,4,3,0],[1,1,2,0]],[[0,3,1,1],[1,3,3,1],[1,3,3,0],[1,2,1,0]],[[0,2,1,1],[1,4,3,1],[1,3,3,0],[1,2,1,0]],[[0,2,1,1],[1,3,4,1],[1,3,3,0],[1,2,1,0]],[[0,2,1,1],[1,3,3,1],[1,4,3,0],[1,2,1,0]],[[0,2,1,1],[1,3,3,1],[1,3,3,0],[2,2,1,0]],[[0,2,1,1],[1,3,3,1],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[1,3,2,3],[1,3,0,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,2],[1,3,0,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,2],[1,3,0,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,2],[1,3,0,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,2],[1,3,0,2],[1,1,1,0]],[[0,3,1,1],[1,3,3,1],[1,3,3,1],[1,2,0,0]],[[0,2,1,1],[1,4,3,1],[1,3,3,1],[1,2,0,0]],[[0,2,1,1],[1,3,4,1],[1,3,3,1],[1,2,0,0]],[[0,2,1,1],[1,3,3,1],[1,4,3,1],[1,2,0,0]],[[2,2,2,1],[1,3,2,2],[1,3,0,2],[1,1,1,0]],[[1,2,2,1],[1,3,2,3],[1,3,0,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,2],[1,3,0,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[1,3,0,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[1,3,0,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[1,3,0,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[1,3,0,2],[1,1,0,1]],[[1,2,2,1],[1,3,2,3],[1,3,0,2],[1,0,2,0]],[[1,2,2,1],[1,4,2,2],[1,3,0,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,2],[1,3,0,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,2],[1,3,0,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,2],[1,3,0,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,2],[1,3,0,2],[1,0,2,0]],[[1,2,2,1],[1,3,2,3],[1,3,0,2],[1,0,1,1]],[[1,2,2,1],[1,4,2,2],[1,3,0,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,2],[1,3,0,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,2],[1,3,0,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,2],[1,3,0,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,2],[1,3,0,2],[1,0,1,1]],[[1,2,2,1],[1,3,2,3],[1,3,0,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,2],[1,3,0,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[1,3,0,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[1,3,0,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[1,3,0,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[1,3,0,2],[0,2,1,0]],[[1,2,2,1],[1,3,2,3],[1,3,0,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,2],[1,3,0,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[1,3,0,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[1,3,0,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[1,3,0,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[1,3,0,2],[0,2,0,1]],[[1,2,2,1],[1,3,2,3],[1,3,0,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,2],[1,3,0,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[1,3,0,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[1,3,0,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[1,3,0,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[1,3,0,2],[0,1,2,0]],[[1,2,2,1],[1,3,2,3],[1,3,0,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,2],[1,3,0,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[1,3,0,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[1,3,0,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[1,3,0,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[1,3,0,2],[0,1,1,1]],[[0,3,1,1],[1,3,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[1,4,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[1,3,4,1],[2,0,1,2],[1,2,2,1]],[[0,3,1,1],[1,3,3,1],[2,0,2,2],[1,2,1,1]],[[0,2,1,1],[1,4,3,1],[2,0,2,2],[1,2,1,1]],[[0,2,1,1],[1,3,4,1],[2,0,2,2],[1,2,1,1]],[[0,3,1,1],[1,3,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[1,4,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[1,3,4,1],[2,0,2,2],[1,2,2,0]],[[0,3,1,1],[1,3,3,1],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[1,4,3,1],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[1,3,4,1],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[3,0,3,0],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,0,4,0],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,0,3,0],[2,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,0,3,0],[1,3,2,1]],[[0,2,1,1],[1,3,3,1],[2,0,3,0],[1,2,3,1]],[[0,2,1,1],[1,3,3,1],[2,0,3,0],[1,2,2,2]],[[0,3,1,1],[1,3,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[1,4,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,4,1],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[1,3,3,1],[2,0,4,1],[1,2,1,1]],[[0,3,1,1],[1,3,3,1],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[1,4,3,1],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[1,3,4,1],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[3,0,3,1],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,0,4,1],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,0,3,1],[2,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,0,3,1],[1,3,2,0]],[[0,2,1,1],[1,3,3,1],[2,0,3,1],[1,2,3,0]],[[0,3,1,1],[1,3,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[1,4,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[1,3,4,1],[2,1,0,2],[1,2,2,1]],[[0,3,1,1],[1,3,3,1],[2,1,1,2],[0,2,2,1]],[[0,2,1,1],[1,4,3,1],[2,1,1,2],[0,2,2,1]],[[0,2,1,1],[1,3,4,1],[2,1,1,2],[0,2,2,1]],[[0,3,1,1],[1,3,3,1],[2,1,2,2],[0,2,1,1]],[[0,2,1,1],[1,4,3,1],[2,1,2,2],[0,2,1,1]],[[0,2,1,1],[1,3,4,1],[2,1,2,2],[0,2,1,1]],[[0,3,1,1],[1,3,3,1],[2,1,2,2],[0,2,2,0]],[[0,2,1,1],[1,4,3,1],[2,1,2,2],[0,2,2,0]],[[0,2,1,1],[1,3,4,1],[2,1,2,2],[0,2,2,0]],[[0,3,1,1],[1,3,3,1],[2,1,3,0],[0,2,2,1]],[[0,2,1,1],[1,4,3,1],[2,1,3,0],[0,2,2,1]],[[0,2,1,1],[1,3,4,1],[2,1,3,0],[0,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,1,4,0],[0,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,1,3,0],[0,3,2,1]],[[0,2,1,1],[1,3,3,1],[2,1,3,0],[0,2,3,1]],[[0,2,1,1],[1,3,3,1],[2,1,3,0],[0,2,2,2]],[[0,3,1,1],[1,3,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,1,1],[1,4,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,1,1],[1,3,4,1],[2,1,3,1],[0,2,1,1]],[[0,2,1,1],[1,3,3,1],[2,1,4,1],[0,2,1,1]],[[0,3,1,1],[1,3,3,1],[2,1,3,1],[0,2,2,0]],[[0,2,1,1],[1,4,3,1],[2,1,3,1],[0,2,2,0]],[[0,2,1,1],[1,3,4,1],[2,1,3,1],[0,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,1,4,1],[0,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,1,3,1],[0,3,2,0]],[[0,2,1,1],[1,3,3,1],[2,1,3,1],[0,2,3,0]],[[1,2,2,1],[1,3,2,2],[1,2,3,3],[0,0,0,1]],[[1,2,2,1],[1,3,2,3],[1,2,3,2],[0,0,0,1]],[[1,2,2,2],[1,3,2,2],[1,2,3,2],[0,0,0,1]],[[1,2,3,1],[1,3,2,2],[1,2,3,2],[0,0,0,1]],[[1,3,2,1],[1,3,2,2],[1,2,3,2],[0,0,0,1]],[[2,2,2,1],[1,3,2,2],[1,2,3,2],[0,0,0,1]],[[0,2,1,1],[1,3,3,1],[3,2,0,1],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,2,0,1],[2,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,2,0,1],[1,3,2,1]],[[0,2,1,1],[1,3,3,1],[2,2,0,1],[1,2,3,1]],[[0,2,1,1],[1,3,3,1],[2,2,0,1],[1,2,2,2]],[[0,3,1,1],[1,3,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[1,4,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[1,3,4,1],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[1,3,3,1],[3,2,0,2],[1,2,1,1]],[[0,2,1,1],[1,3,3,1],[2,2,0,2],[2,2,1,1]],[[0,2,1,1],[1,3,3,1],[2,2,0,2],[1,3,1,1]],[[0,2,1,1],[1,3,3,1],[3,2,0,2],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,2,0,2],[2,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,2,0,2],[1,3,2,0]],[[0,2,1,1],[1,3,3,1],[2,2,0,2],[1,2,3,0]],[[0,2,1,1],[1,3,3,1],[3,2,1,0],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,2,1,0],[2,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,2,1,0],[1,3,2,1]],[[0,2,1,1],[1,3,3,1],[2,2,1,0],[1,2,3,1]],[[0,2,1,1],[1,3,3,1],[2,2,1,0],[1,2,2,2]],[[0,2,1,1],[1,3,3,1],[3,2,1,1],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,2,1,1],[2,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,2,1,1],[1,3,2,0]],[[0,2,1,1],[1,3,3,1],[2,2,1,1],[1,2,3,0]],[[0,3,1,1],[1,3,3,1],[2,2,1,2],[0,1,2,1]],[[0,2,1,1],[1,4,3,1],[2,2,1,2],[0,1,2,1]],[[0,2,1,1],[1,3,4,1],[2,2,1,2],[0,1,2,1]],[[0,3,1,1],[1,3,3,1],[2,2,1,2],[1,0,2,1]],[[0,2,1,1],[1,4,3,1],[2,2,1,2],[1,0,2,1]],[[0,2,1,1],[1,3,4,1],[2,2,1,2],[1,0,2,1]],[[0,2,1,1],[1,3,3,1],[3,2,1,2],[1,2,0,1]],[[0,2,1,1],[1,3,3,1],[2,2,1,2],[2,2,0,1]],[[0,2,1,1],[1,3,3,1],[2,2,1,2],[1,3,0,1]],[[0,2,1,1],[1,3,3,1],[3,2,1,2],[1,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,2,1,2],[2,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,2,1,2],[1,3,1,0]],[[0,2,1,1],[1,3,3,1],[3,2,2,0],[1,2,1,1]],[[0,2,1,1],[1,3,3,1],[2,2,2,0],[2,2,1,1]],[[0,2,1,1],[1,3,3,1],[2,2,2,0],[1,3,1,1]],[[0,2,1,1],[1,3,3,1],[3,2,2,1],[1,2,0,1]],[[0,2,1,1],[1,3,3,1],[2,2,2,1],[2,2,0,1]],[[0,2,1,1],[1,3,3,1],[2,2,2,1],[1,3,0,1]],[[0,2,1,1],[1,3,3,1],[3,2,2,1],[1,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,2,2,1],[2,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,2,2,1],[1,3,1,0]],[[0,3,1,1],[1,3,3,1],[2,2,2,2],[0,0,2,1]],[[0,2,1,1],[1,4,3,1],[2,2,2,2],[0,0,2,1]],[[0,2,1,1],[1,3,4,1],[2,2,2,2],[0,0,2,1]],[[0,3,1,1],[1,3,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,1,1],[1,4,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,1,1],[1,3,4,1],[2,2,2,2],[0,1,1,1]],[[0,3,1,1],[1,3,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,1,1],[1,4,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,1,1],[1,3,4,1],[2,2,2,2],[0,1,2,0]],[[0,3,1,1],[1,3,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,1,1],[1,4,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,1,1],[1,3,4,1],[2,2,2,2],[0,2,0,1]],[[0,3,1,1],[1,3,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,1,1],[1,4,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,1,1],[1,3,4,1],[2,2,2,2],[0,2,1,0]],[[0,3,1,1],[1,3,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,1,1],[1,4,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,1,1],[1,3,4,1],[2,2,2,2],[1,0,1,1]],[[0,3,1,1],[1,3,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,1,1],[1,4,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,1,1],[1,3,4,1],[2,2,2,2],[1,0,2,0]],[[0,3,1,1],[1,3,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,1,1],[1,4,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,1,1],[1,3,4,1],[2,2,2,2],[1,1,0,1]],[[0,3,1,1],[1,3,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,1,1],[1,4,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,1,1],[1,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,3,2,3],[1,2,3,1],[0,0,2,0]],[[1,2,2,2],[1,3,2,2],[1,2,3,1],[0,0,2,0]],[[1,2,3,1],[1,3,2,2],[1,2,3,1],[0,0,2,0]],[[1,3,2,1],[1,3,2,2],[1,2,3,1],[0,0,2,0]],[[2,2,2,1],[1,3,2,2],[1,2,3,1],[0,0,2,0]],[[1,2,2,1],[1,3,2,3],[1,2,3,1],[0,0,1,1]],[[1,2,2,2],[1,3,2,2],[1,2,3,1],[0,0,1,1]],[[1,2,3,1],[1,3,2,2],[1,2,3,1],[0,0,1,1]],[[1,3,2,1],[1,3,2,2],[1,2,3,1],[0,0,1,1]],[[2,2,2,1],[1,3,2,2],[1,2,3,1],[0,0,1,1]],[[0,3,1,1],[1,3,3,1],[2,2,3,0],[0,1,2,1]],[[0,2,1,1],[1,4,3,1],[2,2,3,0],[0,1,2,1]],[[0,2,1,1],[1,3,4,1],[2,2,3,0],[0,1,2,1]],[[0,2,1,1],[1,3,3,1],[2,2,4,0],[0,1,2,1]],[[0,2,1,1],[1,3,3,1],[2,2,3,0],[0,1,3,1]],[[0,2,1,1],[1,3,3,1],[2,2,3,0],[0,1,2,2]],[[0,3,1,1],[1,3,3,1],[2,2,3,0],[0,2,1,1]],[[0,2,1,1],[1,4,3,1],[2,2,3,0],[0,2,1,1]],[[0,2,1,1],[1,3,4,1],[2,2,3,0],[0,2,1,1]],[[0,2,1,1],[1,3,3,1],[2,2,4,0],[0,2,1,1]],[[0,3,1,1],[1,3,3,1],[2,2,3,0],[1,0,2,1]],[[0,2,1,1],[1,4,3,1],[2,2,3,0],[1,0,2,1]],[[0,2,1,1],[1,3,4,1],[2,2,3,0],[1,0,2,1]],[[0,2,1,1],[1,3,3,1],[2,2,4,0],[1,0,2,1]],[[0,2,1,1],[1,3,3,1],[2,2,3,0],[1,0,3,1]],[[0,2,1,1],[1,3,3,1],[2,2,3,0],[1,0,2,2]],[[0,3,1,1],[1,3,3,1],[2,2,3,0],[1,1,1,1]],[[0,2,1,1],[1,4,3,1],[2,2,3,0],[1,1,1,1]],[[0,2,1,1],[1,3,4,1],[2,2,3,0],[1,1,1,1]],[[0,2,1,1],[1,3,3,1],[2,2,4,0],[1,1,1,1]],[[0,2,1,1],[1,3,3,1],[3,2,3,0],[1,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,2,3,0],[2,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,2,3,0],[1,3,1,0]],[[0,3,1,1],[1,3,3,1],[2,2,3,1],[0,0,2,1]],[[0,2,1,1],[1,4,3,1],[2,2,3,1],[0,0,2,1]],[[0,2,1,1],[1,3,4,1],[2,2,3,1],[0,0,2,1]],[[0,2,1,1],[1,3,3,1],[2,2,4,1],[0,0,2,1]],[[0,3,1,1],[1,3,3,1],[2,2,3,1],[0,1,1,1]],[[0,2,1,1],[1,4,3,1],[2,2,3,1],[0,1,1,1]],[[0,2,1,1],[1,3,4,1],[2,2,3,1],[0,1,1,1]],[[0,2,1,1],[1,3,3,1],[2,2,4,1],[0,1,1,1]],[[0,3,1,1],[1,3,3,1],[2,2,3,1],[0,1,2,0]],[[0,2,1,1],[1,4,3,1],[2,2,3,1],[0,1,2,0]],[[0,2,1,1],[1,3,4,1],[2,2,3,1],[0,1,2,0]],[[0,2,1,1],[1,3,3,1],[2,2,4,1],[0,1,2,0]],[[0,2,1,1],[1,3,3,1],[2,2,3,1],[0,1,3,0]],[[0,3,1,1],[1,3,3,1],[2,2,3,1],[0,2,0,1]],[[0,2,1,1],[1,4,3,1],[2,2,3,1],[0,2,0,1]],[[0,2,1,1],[1,3,4,1],[2,2,3,1],[0,2,0,1]],[[0,2,1,1],[1,3,3,1],[2,2,4,1],[0,2,0,1]],[[0,3,1,1],[1,3,3,1],[2,2,3,1],[0,2,1,0]],[[0,2,1,1],[1,4,3,1],[2,2,3,1],[0,2,1,0]],[[0,2,1,1],[1,3,4,1],[2,2,3,1],[0,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,2,4,1],[0,2,1,0]],[[1,2,2,1],[1,4,2,2],[1,2,3,0],[1,1,1,0]],[[1,2,2,2],[1,3,2,2],[1,2,3,0],[1,1,1,0]],[[1,2,3,1],[1,3,2,2],[1,2,3,0],[1,1,1,0]],[[1,3,2,1],[1,3,2,2],[1,2,3,0],[1,1,1,0]],[[2,2,2,1],[1,3,2,2],[1,2,3,0],[1,1,1,0]],[[0,3,1,1],[1,3,3,1],[2,2,3,1],[1,0,1,1]],[[0,2,1,1],[1,4,3,1],[2,2,3,1],[1,0,1,1]],[[0,2,1,1],[1,3,4,1],[2,2,3,1],[1,0,1,1]],[[0,2,1,1],[1,3,3,1],[2,2,4,1],[1,0,1,1]],[[0,3,1,1],[1,3,3,1],[2,2,3,1],[1,0,2,0]],[[0,2,1,1],[1,4,3,1],[2,2,3,1],[1,0,2,0]],[[0,2,1,1],[1,3,4,1],[2,2,3,1],[1,0,2,0]],[[0,2,1,1],[1,3,3,1],[2,2,4,1],[1,0,2,0]],[[0,2,1,1],[1,3,3,1],[2,2,3,1],[1,0,3,0]],[[0,3,1,1],[1,3,3,1],[2,2,3,1],[1,1,0,1]],[[0,2,1,1],[1,4,3,1],[2,2,3,1],[1,1,0,1]],[[0,2,1,1],[1,3,4,1],[2,2,3,1],[1,1,0,1]],[[0,2,1,1],[1,3,3,1],[2,2,4,1],[1,1,0,1]],[[0,3,1,1],[1,3,3,1],[2,2,3,1],[1,1,1,0]],[[0,2,1,1],[1,4,3,1],[2,2,3,1],[1,1,1,0]],[[0,2,1,1],[1,3,4,1],[2,2,3,1],[1,1,1,0]],[[0,2,1,1],[1,3,3,1],[2,2,4,1],[1,1,1,0]],[[1,2,2,1],[1,4,2,2],[1,2,3,0],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[1,2,3,0],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[1,2,3,0],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[1,2,3,0],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[1,2,3,0],[1,1,0,1]],[[1,2,2,1],[1,4,2,2],[1,2,3,0],[1,0,2,0]],[[1,2,2,2],[1,3,2,2],[1,2,3,0],[1,0,2,0]],[[1,2,3,1],[1,3,2,2],[1,2,3,0],[1,0,2,0]],[[1,3,2,1],[1,3,2,2],[1,2,3,0],[1,0,2,0]],[[2,2,2,1],[1,3,2,2],[1,2,3,0],[1,0,2,0]],[[1,2,2,1],[1,4,2,2],[1,2,3,0],[1,0,1,1]],[[1,2,2,2],[1,3,2,2],[1,2,3,0],[1,0,1,1]],[[1,2,3,1],[1,3,2,2],[1,2,3,0],[1,0,1,1]],[[1,3,2,1],[1,3,2,2],[1,2,3,0],[1,0,1,1]],[[2,2,2,1],[1,3,2,2],[1,2,3,0],[1,0,1,1]],[[0,3,1,1],[1,3,3,1],[2,2,3,2],[0,1,0,1]],[[0,2,1,1],[1,4,3,1],[2,2,3,2],[0,1,0,1]],[[0,2,1,1],[1,3,4,1],[2,2,3,2],[0,1,0,1]],[[1,2,2,1],[1,4,2,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[1,2,3,0],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[1,2,3,0],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[1,2,3,0],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,1],[1,4,2,2],[1,2,3,0],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[1,2,3,0],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[1,2,3,0],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[1,2,3,0],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[1,2,3,0],[0,2,0,1]],[[1,2,2,1],[1,4,2,2],[1,2,3,0],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[1,2,3,0],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[1,2,3,0],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[1,2,3,0],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[1,2,3,0],[0,1,2,0]],[[1,2,2,1],[1,4,2,2],[1,2,3,0],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[1,2,3,0],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[1,2,3,0],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[1,2,3,0],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[1,2,3,0],[0,1,1,1]],[[0,3,1,1],[1,3,3,1],[2,2,3,2],[1,0,0,1]],[[0,2,1,1],[1,4,3,1],[2,2,3,2],[1,0,0,1]],[[0,2,1,1],[1,3,4,1],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[1,3,2,3],[1,2,2,2],[0,0,2,0]],[[1,2,2,2],[1,3,2,2],[1,2,2,2],[0,0,2,0]],[[1,2,3,1],[1,3,2,2],[1,2,2,2],[0,0,2,0]],[[0,2,1,1],[1,3,3,1],[3,3,0,0],[1,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,3,0,0],[2,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,3,0,0],[1,3,2,1]],[[0,3,1,1],[1,3,3,1],[2,3,0,1],[0,2,2,1]],[[0,2,1,1],[1,4,3,1],[2,3,0,1],[0,2,2,1]],[[0,2,1,1],[1,3,4,1],[2,3,0,1],[0,2,2,1]],[[0,2,1,1],[1,3,3,1],[3,3,0,1],[0,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,4,0,1],[0,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,3,0,1],[0,3,2,1]],[[0,2,1,1],[1,3,3,1],[2,3,0,1],[0,2,3,1]],[[0,2,1,1],[1,3,3,1],[2,3,0,1],[0,2,2,2]],[[0,3,1,1],[1,3,3,1],[2,3,0,1],[1,1,2,1]],[[0,2,1,1],[1,4,3,1],[2,3,0,1],[1,1,2,1]],[[0,2,1,1],[1,3,4,1],[2,3,0,1],[1,1,2,1]],[[0,2,1,1],[1,3,3,1],[3,3,0,1],[1,1,2,1]],[[0,2,1,1],[1,3,3,1],[2,4,0,1],[1,1,2,1]],[[0,2,1,1],[1,3,3,1],[2,3,0,1],[2,1,2,1]],[[0,2,1,1],[1,3,3,1],[3,3,0,1],[1,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,0,1],[2,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,0,1],[1,3,2,0]],[[0,3,1,1],[1,3,3,1],[2,3,0,2],[0,1,2,1]],[[0,2,1,1],[1,4,3,1],[2,3,0,2],[0,1,2,1]],[[0,2,1,1],[1,3,4,1],[2,3,0,2],[0,1,2,1]],[[0,2,1,1],[1,3,3,1],[3,3,0,2],[0,1,2,1]],[[0,2,1,1],[1,3,3,1],[2,4,0,2],[0,1,2,1]],[[0,3,1,1],[1,3,3,1],[2,3,0,2],[0,2,1,1]],[[0,2,1,1],[1,4,3,1],[2,3,0,2],[0,2,1,1]],[[0,2,1,1],[1,3,4,1],[2,3,0,2],[0,2,1,1]],[[0,2,1,1],[1,3,3,1],[3,3,0,2],[0,2,1,1]],[[0,2,1,1],[1,3,3,1],[2,4,0,2],[0,2,1,1]],[[0,2,1,1],[1,3,3,1],[2,3,0,2],[0,3,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,0,2],[0,2,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,0,2],[0,2,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,0,2],[0,2,2,0]],[[0,2,1,1],[1,3,3,1],[3,3,0,2],[0,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,4,0,2],[0,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,0,2],[0,3,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,0,2],[0,2,3,0]],[[0,3,1,1],[1,3,3,1],[2,3,0,2],[1,0,2,1]],[[0,2,1,1],[1,4,3,1],[2,3,0,2],[1,0,2,1]],[[0,2,1,1],[1,3,4,1],[2,3,0,2],[1,0,2,1]],[[0,2,1,1],[1,3,3,1],[3,3,0,2],[1,0,2,1]],[[0,2,1,1],[1,3,3,1],[2,4,0,2],[1,0,2,1]],[[0,2,1,1],[1,3,3,1],[2,3,0,2],[2,0,2,1]],[[0,3,1,1],[1,3,3,1],[2,3,0,2],[1,1,1,1]],[[0,2,1,1],[1,4,3,1],[2,3,0,2],[1,1,1,1]],[[0,2,1,1],[1,3,4,1],[2,3,0,2],[1,1,1,1]],[[0,2,1,1],[1,3,3,1],[3,3,0,2],[1,1,1,1]],[[0,2,1,1],[1,3,3,1],[2,4,0,2],[1,1,1,1]],[[0,2,1,1],[1,3,3,1],[2,3,0,2],[2,1,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,0,2],[1,1,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,0,2],[1,1,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,0,2],[1,1,2,0]],[[0,2,1,1],[1,3,3,1],[3,3,0,2],[1,1,2,0]],[[0,2,1,1],[1,3,3,1],[2,4,0,2],[1,1,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,0,2],[2,1,2,0]],[[1,3,2,1],[1,3,2,2],[1,2,2,2],[0,0,2,0]],[[2,2,2,1],[1,3,2,2],[1,2,2,2],[0,0,2,0]],[[1,2,2,1],[1,3,2,2],[1,2,2,3],[0,0,1,1]],[[1,2,2,1],[1,3,2,3],[1,2,2,2],[0,0,1,1]],[[1,2,2,2],[1,3,2,2],[1,2,2,2],[0,0,1,1]],[[1,2,3,1],[1,3,2,2],[1,2,2,2],[0,0,1,1]],[[1,3,2,1],[1,3,2,2],[1,2,2,2],[0,0,1,1]],[[2,2,2,1],[1,3,2,2],[1,2,2,2],[0,0,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,1,0],[0,2,2,1]],[[0,2,1,1],[1,4,3,1],[2,3,1,0],[0,2,2,1]],[[0,2,1,1],[1,3,4,1],[2,3,1,0],[0,2,2,1]],[[0,2,1,1],[1,3,3,1],[3,3,1,0],[0,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,4,1,0],[0,2,2,1]],[[0,2,1,1],[1,3,3,1],[2,3,1,0],[0,3,2,1]],[[0,2,1,1],[1,3,3,1],[2,3,1,0],[0,2,3,1]],[[0,2,1,1],[1,3,3,1],[2,3,1,0],[0,2,2,2]],[[0,3,1,1],[1,3,3,1],[2,3,1,0],[1,1,2,1]],[[0,2,1,1],[1,4,3,1],[2,3,1,0],[1,1,2,1]],[[0,2,1,1],[1,3,4,1],[2,3,1,0],[1,1,2,1]],[[0,2,1,1],[1,3,3,1],[3,3,1,0],[1,1,2,1]],[[0,2,1,1],[1,3,3,1],[2,4,1,0],[1,1,2,1]],[[0,2,1,1],[1,3,3,1],[2,3,1,0],[2,1,2,1]],[[0,3,1,1],[1,3,3,1],[2,3,1,1],[0,2,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,1,1],[0,2,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,1,1],[0,2,2,0]],[[0,2,1,1],[1,3,3,1],[3,3,1,1],[0,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,4,1,1],[0,2,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,1,1],[0,3,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,1,1],[0,2,3,0]],[[0,3,1,1],[1,3,3,1],[2,3,1,1],[1,1,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,1,1],[1,1,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,1,1],[1,1,2,0]],[[0,2,1,1],[1,3,3,1],[3,3,1,1],[1,1,2,0]],[[0,2,1,1],[1,3,3,1],[2,4,1,1],[1,1,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,1,1],[2,1,2,0]],[[0,3,1,1],[1,3,3,1],[2,3,1,2],[0,1,1,1]],[[0,2,1,1],[1,4,3,1],[2,3,1,2],[0,1,1,1]],[[0,2,1,1],[1,3,4,1],[2,3,1,2],[0,1,1,1]],[[0,2,1,1],[1,3,3,1],[3,3,1,2],[0,1,1,1]],[[0,2,1,1],[1,3,3,1],[2,4,1,2],[0,1,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,1,2],[0,1,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,1,2],[0,1,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,1,2],[0,1,2,0]],[[0,2,1,1],[1,3,3,1],[3,3,1,2],[0,1,2,0]],[[0,2,1,1],[1,3,3,1],[2,4,1,2],[0,1,2,0]],[[0,3,1,1],[1,3,3,1],[2,3,1,2],[0,2,0,1]],[[0,2,1,1],[1,4,3,1],[2,3,1,2],[0,2,0,1]],[[0,2,1,1],[1,3,4,1],[2,3,1,2],[0,2,0,1]],[[0,2,1,1],[1,3,3,1],[3,3,1,2],[0,2,0,1]],[[0,2,1,1],[1,3,3,1],[2,4,1,2],[0,2,0,1]],[[0,2,1,1],[1,3,3,1],[2,3,1,2],[0,3,0,1]],[[0,3,1,1],[1,3,3,1],[2,3,1,2],[0,2,1,0]],[[0,2,1,1],[1,4,3,1],[2,3,1,2],[0,2,1,0]],[[0,2,1,1],[1,3,4,1],[2,3,1,2],[0,2,1,0]],[[0,2,1,1],[1,3,3,1],[3,3,1,2],[0,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,4,1,2],[0,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,3,1,2],[0,3,1,0]],[[0,3,1,1],[1,3,3,1],[2,3,1,2],[1,0,1,1]],[[0,2,1,1],[1,4,3,1],[2,3,1,2],[1,0,1,1]],[[0,2,1,1],[1,3,4,1],[2,3,1,2],[1,0,1,1]],[[0,2,1,1],[1,3,3,1],[3,3,1,2],[1,0,1,1]],[[0,2,1,1],[1,3,3,1],[2,4,1,2],[1,0,1,1]],[[0,2,1,1],[1,3,3,1],[2,3,1,2],[2,0,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,1,2],[1,0,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,1,2],[1,0,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,1,2],[1,0,2,0]],[[0,2,1,1],[1,3,3,1],[3,3,1,2],[1,0,2,0]],[[0,2,1,1],[1,3,3,1],[2,4,1,2],[1,0,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,1,2],[2,0,2,0]],[[0,3,1,1],[1,3,3,1],[2,3,1,2],[1,1,0,1]],[[0,2,1,1],[1,4,3,1],[2,3,1,2],[1,1,0,1]],[[0,2,1,1],[1,3,4,1],[2,3,1,2],[1,1,0,1]],[[0,2,1,1],[1,3,3,1],[3,3,1,2],[1,1,0,1]],[[0,2,1,1],[1,3,3,1],[2,4,1,2],[1,1,0,1]],[[0,2,1,1],[1,3,3,1],[2,3,1,2],[2,1,0,1]],[[0,3,1,1],[1,3,3,1],[2,3,1,2],[1,1,1,0]],[[0,2,1,1],[1,4,3,1],[2,3,1,2],[1,1,1,0]],[[0,2,1,1],[1,3,4,1],[2,3,1,2],[1,1,1,0]],[[0,2,1,1],[1,3,3,1],[3,3,1,2],[1,1,1,0]],[[0,2,1,1],[1,3,3,1],[2,4,1,2],[1,1,1,0]],[[0,2,1,1],[1,3,3,1],[2,3,1,2],[2,1,1,0]],[[0,3,1,1],[1,3,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,1,1],[1,4,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,1,1],[1,3,4,1],[2,3,1,2],[1,2,0,0]],[[0,2,1,1],[1,3,3,1],[3,3,1,2],[1,2,0,0]],[[0,2,1,1],[1,3,3,1],[2,4,1,2],[1,2,0,0]],[[0,2,1,1],[1,3,3,1],[2,3,1,2],[2,2,0,0]],[[0,3,1,1],[1,3,3,1],[2,3,2,0],[0,1,2,1]],[[0,2,1,1],[1,4,3,1],[2,3,2,0],[0,1,2,1]],[[0,2,1,1],[1,3,4,1],[2,3,2,0],[0,1,2,1]],[[0,2,1,1],[1,3,3,1],[3,3,2,0],[0,1,2,1]],[[0,2,1,1],[1,3,3,1],[2,4,2,0],[0,1,2,1]],[[0,3,1,1],[1,3,3,1],[2,3,2,0],[0,2,1,1]],[[0,2,1,1],[1,4,3,1],[2,3,2,0],[0,2,1,1]],[[0,2,1,1],[1,3,4,1],[2,3,2,0],[0,2,1,1]],[[0,2,1,1],[1,3,3,1],[3,3,2,0],[0,2,1,1]],[[0,2,1,1],[1,3,3,1],[2,4,2,0],[0,2,1,1]],[[0,2,1,1],[1,3,3,1],[2,3,2,0],[0,3,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,2,0],[1,0,2,1]],[[0,2,1,1],[1,4,3,1],[2,3,2,0],[1,0,2,1]],[[0,2,1,1],[1,3,4,1],[2,3,2,0],[1,0,2,1]],[[0,2,1,1],[1,3,3,1],[3,3,2,0],[1,0,2,1]],[[0,2,1,1],[1,3,3,1],[2,4,2,0],[1,0,2,1]],[[0,2,1,1],[1,3,3,1],[2,3,2,0],[2,0,2,1]],[[0,3,1,1],[1,3,3,1],[2,3,2,0],[1,1,1,1]],[[0,2,1,1],[1,4,3,1],[2,3,2,0],[1,1,1,1]],[[0,2,1,1],[1,3,4,1],[2,3,2,0],[1,1,1,1]],[[0,2,1,1],[1,3,3,1],[3,3,2,0],[1,1,1,1]],[[0,2,1,1],[1,3,3,1],[2,4,2,0],[1,1,1,1]],[[0,2,1,1],[1,3,3,1],[2,3,2,0],[2,1,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,2,0],[1,2,0,1]],[[0,2,1,1],[1,4,3,1],[2,3,2,0],[1,2,0,1]],[[0,2,1,1],[1,3,4,1],[2,3,2,0],[1,2,0,1]],[[0,2,1,1],[1,3,3,1],[3,3,2,0],[1,2,0,1]],[[0,2,1,1],[1,3,3,1],[2,4,2,0],[1,2,0,1]],[[0,2,1,1],[1,3,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[1,3,2,2],[1,1,3,3],[1,0,0,1]],[[1,2,2,1],[1,3,2,3],[1,1,3,2],[1,0,0,1]],[[1,2,2,2],[1,3,2,2],[1,1,3,2],[1,0,0,1]],[[1,2,3,1],[1,3,2,2],[1,1,3,2],[1,0,0,1]],[[1,3,2,1],[1,3,2,2],[1,1,3,2],[1,0,0,1]],[[2,2,2,1],[1,3,2,2],[1,1,3,2],[1,0,0,1]],[[0,3,1,1],[1,3,3,1],[2,3,2,1],[0,1,1,1]],[[0,2,1,1],[1,4,3,1],[2,3,2,1],[0,1,1,1]],[[0,2,1,1],[1,3,4,1],[2,3,2,1],[0,1,1,1]],[[0,2,1,1],[1,3,3,1],[3,3,2,1],[0,1,1,1]],[[0,2,1,1],[1,3,3,1],[2,4,2,1],[0,1,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,2,1],[0,1,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,2,1],[0,1,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,2,1],[0,1,2,0]],[[0,2,1,1],[1,3,3,1],[3,3,2,1],[0,1,2,0]],[[0,2,1,1],[1,3,3,1],[2,4,2,1],[0,1,2,0]],[[0,3,1,1],[1,3,3,1],[2,3,2,1],[0,2,0,1]],[[0,2,1,1],[1,4,3,1],[2,3,2,1],[0,2,0,1]],[[0,2,1,1],[1,3,4,1],[2,3,2,1],[0,2,0,1]],[[0,2,1,1],[1,3,3,1],[3,3,2,1],[0,2,0,1]],[[0,2,1,1],[1,3,3,1],[2,4,2,1],[0,2,0,1]],[[0,2,1,1],[1,3,3,1],[2,3,2,1],[0,3,0,1]],[[0,3,1,1],[1,3,3,1],[2,3,2,1],[0,2,1,0]],[[0,2,1,1],[1,4,3,1],[2,3,2,1],[0,2,1,0]],[[0,2,1,1],[1,3,4,1],[2,3,2,1],[0,2,1,0]],[[0,2,1,1],[1,3,3,1],[3,3,2,1],[0,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,4,2,1],[0,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,3,2,1],[0,3,1,0]],[[0,3,1,1],[1,3,3,1],[2,3,2,1],[1,0,1,1]],[[0,2,1,1],[1,4,3,1],[2,3,2,1],[1,0,1,1]],[[0,2,1,1],[1,3,4,1],[2,3,2,1],[1,0,1,1]],[[0,2,1,1],[1,3,3,1],[3,3,2,1],[1,0,1,1]],[[0,2,1,1],[1,3,3,1],[2,4,2,1],[1,0,1,1]],[[0,2,1,1],[1,3,3,1],[2,3,2,1],[2,0,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,2,1],[1,0,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,2,1],[1,0,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,2,1],[1,0,2,0]],[[0,2,1,1],[1,3,3,1],[3,3,2,1],[1,0,2,0]],[[0,2,1,1],[1,3,3,1],[2,4,2,1],[1,0,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,2,1],[2,0,2,0]],[[0,3,1,1],[1,3,3,1],[2,3,2,1],[1,1,0,1]],[[0,2,1,1],[1,4,3,1],[2,3,2,1],[1,1,0,1]],[[0,2,1,1],[1,3,4,1],[2,3,2,1],[1,1,0,1]],[[0,2,1,1],[1,3,3,1],[3,3,2,1],[1,1,0,1]],[[0,2,1,1],[1,3,3,1],[2,4,2,1],[1,1,0,1]],[[0,2,1,1],[1,3,3,1],[2,3,2,1],[2,1,0,1]],[[0,3,1,1],[1,3,3,1],[2,3,2,1],[1,1,1,0]],[[0,2,1,1],[1,4,3,1],[2,3,2,1],[1,1,1,0]],[[0,2,1,1],[1,3,4,1],[2,3,2,1],[1,1,1,0]],[[0,2,1,1],[1,3,3,1],[3,3,2,1],[1,1,1,0]],[[0,2,1,1],[1,3,3,1],[2,4,2,1],[1,1,1,0]],[[0,2,1,1],[1,3,3,1],[2,3,2,1],[2,1,1,0]],[[0,3,1,1],[1,3,3,1],[2,3,2,1],[1,2,0,0]],[[0,2,1,1],[1,4,3,1],[2,3,2,1],[1,2,0,0]],[[0,2,1,1],[1,3,4,1],[2,3,2,1],[1,2,0,0]],[[0,2,1,1],[1,3,3,1],[3,3,2,1],[1,2,0,0]],[[0,2,1,1],[1,3,3,1],[2,4,2,1],[1,2,0,0]],[[0,2,1,1],[1,3,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[1,3,2,2],[1,1,3,3],[0,1,0,1]],[[1,2,2,1],[1,3,2,3],[1,1,3,2],[0,1,0,1]],[[1,2,2,2],[1,3,2,2],[1,1,3,2],[0,1,0,1]],[[1,2,3,1],[1,3,2,2],[1,1,3,2],[0,1,0,1]],[[1,3,2,1],[1,3,2,2],[1,1,3,2],[0,1,0,1]],[[2,2,2,1],[1,3,2,2],[1,1,3,2],[0,1,0,1]],[[0,3,1,1],[1,3,3,1],[2,3,2,2],[0,0,1,1]],[[0,2,1,1],[1,4,3,1],[2,3,2,2],[0,0,1,1]],[[0,2,1,1],[1,3,4,1],[2,3,2,2],[0,0,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,2,2],[0,0,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,2,2],[0,0,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,2,2],[0,0,2,0]],[[1,2,2,1],[1,3,2,3],[1,1,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,2,2],[1,1,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,2,2],[1,1,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,2,2],[1,1,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,2,2],[1,1,3,1],[1,1,1,0]],[[1,2,2,1],[1,3,2,3],[1,1,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[1,1,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[1,1,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[1,1,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[1,1,3,1],[1,1,0,1]],[[1,2,2,1],[1,3,2,3],[1,1,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,2,2],[1,1,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,2,2],[1,1,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,2,2],[1,1,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,2,2],[1,1,3,1],[1,0,2,0]],[[1,2,2,1],[1,3,2,3],[1,1,3,1],[1,0,1,1]],[[1,2,2,2],[1,3,2,2],[1,1,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,2,2],[1,1,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,2,2],[1,1,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,2,2],[1,1,3,1],[1,0,1,1]],[[1,2,2,1],[1,3,2,3],[1,1,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[1,1,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[1,1,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[1,1,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[1,1,3,1],[0,2,1,0]],[[1,2,2,1],[1,3,2,3],[1,1,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[1,1,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[1,1,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[1,1,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[1,1,3,1],[0,2,0,1]],[[1,2,2,1],[1,3,2,3],[1,1,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[1,1,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[1,1,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[1,1,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[1,1,3,1],[0,1,2,0]],[[1,2,2,1],[1,3,2,3],[1,1,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[1,1,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[1,1,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[1,1,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[1,1,3,1],[0,1,1,1]],[[1,2,2,1],[1,3,2,3],[1,1,3,1],[0,0,2,1]],[[1,2,2,2],[1,3,2,2],[1,1,3,1],[0,0,2,1]],[[1,2,3,1],[1,3,2,2],[1,1,3,1],[0,0,2,1]],[[1,3,2,1],[1,3,2,2],[1,1,3,1],[0,0,2,1]],[[2,2,2,1],[1,3,2,2],[1,1,3,1],[0,0,2,1]],[[1,2,2,1],[1,3,2,3],[1,1,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,2,2],[1,1,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,2,2],[1,1,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,2,2],[1,1,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,2,2],[1,1,3,0],[1,0,2,1]],[[0,3,1,1],[1,3,3,1],[2,3,3,0],[0,0,2,1]],[[0,2,1,1],[1,4,3,1],[2,3,3,0],[0,0,2,1]],[[0,2,1,1],[1,3,4,1],[2,3,3,0],[0,0,2,1]],[[0,2,1,1],[1,3,3,1],[2,3,4,0],[0,0,2,1]],[[0,3,1,1],[1,3,3,1],[2,3,3,0],[0,1,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,3,0],[0,1,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,3,0],[0,1,2,0]],[[0,2,1,1],[1,3,3,1],[3,3,3,0],[0,1,2,0]],[[0,2,1,1],[1,3,3,1],[2,4,3,0],[0,1,2,0]],[[0,3,1,1],[1,3,3,1],[2,3,3,0],[0,2,1,0]],[[0,2,1,1],[1,4,3,1],[2,3,3,0],[0,2,1,0]],[[0,2,1,1],[1,3,4,1],[2,3,3,0],[0,2,1,0]],[[0,2,1,1],[1,3,3,1],[3,3,3,0],[0,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,4,3,0],[0,2,1,0]],[[0,2,1,1],[1,3,3,1],[2,3,3,0],[0,3,1,0]],[[1,2,2,1],[1,4,2,2],[1,1,3,0],[0,2,2,0]],[[1,2,2,2],[1,3,2,2],[1,1,3,0],[0,2,2,0]],[[1,2,3,1],[1,3,2,2],[1,1,3,0],[0,2,2,0]],[[0,3,1,1],[1,3,3,1],[2,3,3,0],[1,0,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,3,0],[1,0,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,3,0],[1,0,2,0]],[[0,2,1,1],[1,3,3,1],[3,3,3,0],[1,0,2,0]],[[0,2,1,1],[1,3,3,1],[2,4,3,0],[1,0,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,3,0],[2,0,2,0]],[[0,3,1,1],[1,3,3,1],[2,3,3,0],[1,1,1,0]],[[0,2,1,1],[1,4,3,1],[2,3,3,0],[1,1,1,0]],[[0,2,1,1],[1,3,4,1],[2,3,3,0],[1,1,1,0]],[[0,2,1,1],[1,3,3,1],[3,3,3,0],[1,1,1,0]],[[0,2,1,1],[1,3,3,1],[2,4,3,0],[1,1,1,0]],[[0,2,1,1],[1,3,3,1],[2,3,3,0],[2,1,1,0]],[[1,3,2,1],[1,3,2,2],[1,1,3,0],[0,2,2,0]],[[2,2,2,1],[1,3,2,2],[1,1,3,0],[0,2,2,0]],[[1,2,2,1],[1,3,2,3],[1,1,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,2,2],[1,1,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,2,2],[1,1,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,2,2],[1,1,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,2,2],[1,1,3,0],[0,1,2,1]],[[0,3,1,1],[1,3,3,1],[2,3,3,0],[1,2,0,0]],[[0,2,1,1],[1,4,3,1],[2,3,3,0],[1,2,0,0]],[[0,2,1,1],[1,3,4,1],[2,3,3,0],[1,2,0,0]],[[0,2,1,1],[1,3,3,1],[3,3,3,0],[1,2,0,0]],[[0,2,1,1],[1,3,3,1],[2,4,3,0],[1,2,0,0]],[[0,2,1,1],[1,3,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[1,3,2,3],[1,1,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,2],[1,1,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,2],[1,1,2,2],[1,1,1,0]],[[0,3,1,1],[1,3,3,1],[2,3,3,1],[0,0,1,1]],[[0,2,1,1],[1,4,3,1],[2,3,3,1],[0,0,1,1]],[[0,2,1,1],[1,3,4,1],[2,3,3,1],[0,0,1,1]],[[0,2,1,1],[1,3,3,1],[2,3,4,1],[0,0,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,3,1],[0,0,2,0]],[[0,2,1,1],[1,4,3,1],[2,3,3,1],[0,0,2,0]],[[0,2,1,1],[1,3,4,1],[2,3,3,1],[0,0,2,0]],[[0,2,1,1],[1,3,3,1],[2,3,4,1],[0,0,2,0]],[[1,3,2,1],[1,3,2,2],[1,1,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,2],[1,1,2,2],[1,1,1,0]],[[1,2,2,1],[1,3,2,2],[1,1,2,3],[1,1,0,1]],[[1,2,2,1],[1,3,2,3],[1,1,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[1,1,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[1,1,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[1,1,2,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[1,1,2,2],[1,1,0,1]],[[0,3,1,1],[1,3,3,1],[2,3,3,1],[0,2,0,0]],[[0,2,1,1],[1,4,3,1],[2,3,3,1],[0,2,0,0]],[[0,2,1,1],[1,3,4,1],[2,3,3,1],[0,2,0,0]],[[0,2,1,1],[1,3,3,1],[3,3,3,1],[0,2,0,0]],[[0,2,1,1],[1,3,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[1,3,2,2],[1,1,2,3],[1,0,2,0]],[[1,2,2,1],[1,3,2,3],[1,1,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,2],[1,1,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,2],[1,1,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,2],[1,1,2,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,2],[1,1,2,2],[1,0,2,0]],[[1,2,2,1],[1,3,2,2],[1,1,2,2],[1,0,1,2]],[[1,2,2,1],[1,3,2,2],[1,1,2,3],[1,0,1,1]],[[1,2,2,1],[1,3,2,3],[1,1,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,2],[1,1,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,2],[1,1,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,2],[1,1,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,2],[1,1,2,2],[1,0,1,1]],[[0,3,1,1],[1,3,3,1],[2,3,3,1],[1,1,0,0]],[[0,2,1,1],[1,4,3,1],[2,3,3,1],[1,1,0,0]],[[0,2,1,1],[1,3,4,1],[2,3,3,1],[1,1,0,0]],[[0,2,1,1],[1,3,3,1],[3,3,3,1],[1,1,0,0]],[[0,2,1,1],[1,3,3,1],[2,4,3,1],[1,1,0,0]],[[0,2,1,1],[1,3,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[1,3,2,3],[1,1,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[1,1,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[1,1,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[1,1,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[1,1,2,2],[0,2,1,0]],[[1,2,2,1],[1,3,2,2],[1,1,2,3],[0,2,0,1]],[[1,2,2,1],[1,3,2,3],[1,1,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[1,1,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[1,1,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[1,1,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[1,1,2,2],[0,2,0,1]],[[1,2,2,1],[1,3,2,2],[1,1,2,3],[0,1,2,0]],[[1,2,2,1],[1,3,2,3],[1,1,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[1,1,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[1,1,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[1,1,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[1,1,2,2],[0,1,2,0]],[[1,2,2,1],[1,3,2,2],[1,1,2,2],[0,1,1,2]],[[1,2,2,1],[1,3,2,2],[1,1,2,3],[0,1,1,1]],[[1,2,2,1],[1,3,2,3],[1,1,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[1,1,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[1,1,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[1,1,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[1,1,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,2,2],[1,1,2,2],[0,0,2,2]],[[1,2,2,1],[1,3,2,2],[1,1,2,3],[0,0,2,1]],[[1,2,2,1],[1,3,2,3],[1,1,2,2],[0,0,2,1]],[[1,2,2,2],[1,3,2,2],[1,1,2,2],[0,0,2,1]],[[1,2,3,1],[1,3,2,2],[1,1,2,2],[0,0,2,1]],[[1,3,2,1],[1,3,2,2],[1,1,2,2],[0,0,2,1]],[[2,2,2,1],[1,3,2,2],[1,1,2,2],[0,0,2,1]],[[1,2,2,1],[1,3,2,2],[1,1,1,2],[1,0,2,2]],[[1,2,2,1],[1,3,2,2],[1,1,1,3],[1,0,2,1]],[[1,2,2,1],[1,3,2,3],[1,1,1,2],[1,0,2,1]],[[1,2,2,2],[1,3,2,2],[1,1,1,2],[1,0,2,1]],[[1,2,3,1],[1,3,2,2],[1,1,1,2],[1,0,2,1]],[[1,3,2,1],[1,3,2,2],[1,1,1,2],[1,0,2,1]],[[2,2,2,1],[1,3,2,2],[1,1,1,2],[1,0,2,1]],[[1,2,2,1],[1,3,2,2],[1,1,1,2],[0,1,2,2]],[[1,2,2,1],[1,3,2,2],[1,1,1,3],[0,1,2,1]],[[1,2,2,1],[1,3,2,3],[1,1,1,2],[0,1,2,1]],[[0,3,1,1],[1,3,3,1],[2,3,3,2],[0,0,0,1]],[[0,2,1,1],[1,4,3,1],[2,3,3,2],[0,0,0,1]],[[0,2,1,1],[1,3,4,1],[2,3,3,2],[0,0,0,1]],[[1,2,2,2],[1,3,2,2],[1,1,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,2,2],[1,1,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,2,2],[1,1,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,2,2],[1,1,1,2],[0,1,2,1]],[[1,2,2,1],[1,3,2,2],[1,0,3,3],[1,0,2,0]],[[1,2,2,1],[1,3,2,3],[1,0,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,2],[1,0,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,2],[1,0,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,2],[1,0,3,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,2],[1,0,3,2],[1,0,2,0]],[[1,2,2,1],[1,3,2,2],[1,0,3,2],[1,0,1,2]],[[1,2,2,1],[1,3,2,2],[1,0,3,3],[1,0,1,1]],[[1,2,2,1],[1,3,2,3],[1,0,3,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,2],[1,0,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,2],[1,0,3,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,2],[1,0,3,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,2],[1,0,3,2],[1,0,1,1]],[[1,2,2,1],[1,3,2,2],[1,0,3,3],[0,1,2,0]],[[1,2,2,1],[1,3,2,3],[1,0,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[1,0,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[1,0,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[1,0,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[1,0,3,2],[0,1,2,0]],[[1,2,2,1],[1,3,2,2],[1,0,3,2],[0,1,1,2]],[[1,2,2,1],[1,3,2,2],[1,0,3,3],[0,1,1,1]],[[1,2,2,1],[1,3,2,3],[1,0,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[1,0,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[1,0,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[1,0,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[1,0,3,2],[0,1,1,1]],[[1,2,2,1],[1,3,2,2],[1,0,3,2],[0,0,2,2]],[[1,2,2,1],[1,3,2,2],[1,0,3,3],[0,0,2,1]],[[1,2,2,1],[1,3,2,3],[1,0,3,2],[0,0,2,1]],[[1,2,2,2],[1,3,2,2],[1,0,3,2],[0,0,2,1]],[[1,2,3,1],[1,3,2,2],[1,0,3,2],[0,0,2,1]],[[1,3,2,1],[1,3,2,2],[1,0,3,2],[0,0,2,1]],[[2,2,2,1],[1,3,2,2],[1,0,3,2],[0,0,2,1]],[[1,2,2,1],[1,3,2,3],[1,0,3,1],[0,2,2,0]],[[1,2,2,2],[1,3,2,2],[1,0,3,1],[0,2,2,0]],[[1,2,3,1],[1,3,2,2],[1,0,3,1],[0,2,2,0]],[[1,3,2,1],[1,3,2,2],[1,0,3,1],[0,2,2,0]],[[2,2,2,1],[1,3,2,2],[1,0,3,1],[0,2,2,0]],[[1,2,2,1],[1,3,2,3],[1,0,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,2,2],[1,0,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,2,2],[1,0,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,2,2],[1,0,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,2,2],[1,0,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,2,2],[1,0,3,0],[1,2,2,0]],[[1,2,2,2],[1,3,2,2],[1,0,3,0],[1,2,2,0]],[[1,2,3,1],[1,3,2,2],[1,0,3,0],[1,2,2,0]],[[1,3,2,1],[1,3,2,2],[1,0,3,0],[1,2,2,0]],[[2,2,2,1],[1,3,2,2],[1,0,3,0],[1,2,2,0]],[[1,2,2,1],[1,3,2,3],[1,0,3,0],[0,2,2,1]],[[1,2,2,2],[1,3,2,2],[1,0,3,0],[0,2,2,1]],[[1,2,3,1],[1,3,2,2],[1,0,3,0],[0,2,2,1]],[[1,3,2,1],[1,3,2,2],[1,0,3,0],[0,2,2,1]],[[2,2,2,1],[1,3,2,2],[1,0,3,0],[0,2,2,1]],[[1,2,2,1],[1,3,2,2],[1,0,2,3],[0,2,2,0]],[[1,2,2,1],[1,3,2,3],[1,0,2,2],[0,2,2,0]],[[1,2,2,2],[1,3,2,2],[1,0,2,2],[0,2,2,0]],[[1,2,3,1],[1,3,2,2],[1,0,2,2],[0,2,2,0]],[[1,3,2,1],[1,3,2,2],[1,0,2,2],[0,2,2,0]],[[2,2,2,1],[1,3,2,2],[1,0,2,2],[0,2,2,0]],[[1,2,2,1],[1,3,2,2],[1,0,2,2],[0,2,1,2]],[[1,2,2,1],[1,3,2,2],[1,0,2,3],[0,2,1,1]],[[1,2,2,1],[1,3,2,3],[1,0,2,2],[0,2,1,1]],[[1,2,2,2],[1,3,2,2],[1,0,2,2],[0,2,1,1]],[[1,2,3,1],[1,3,2,2],[1,0,2,2],[0,2,1,1]],[[1,3,2,1],[1,3,2,2],[1,0,2,2],[0,2,1,1]],[[2,2,2,1],[1,3,2,2],[1,0,2,2],[0,2,1,1]],[[1,2,2,1],[1,3,2,2],[1,0,1,2],[0,2,2,2]],[[1,2,2,1],[1,3,2,2],[1,0,1,2],[0,2,3,1]],[[1,2,2,1],[1,3,2,2],[1,0,1,3],[0,2,2,1]],[[1,2,2,1],[1,3,2,3],[1,0,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,2,2],[1,0,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,2,2],[1,0,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,2,2],[1,0,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,2,2],[1,0,1,2],[0,2,2,1]],[[1,2,2,1],[1,3,2,2],[0,4,3,0],[1,2,0,0]],[[1,2,2,1],[1,4,2,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,2],[1,3,2,2],[0,3,3,0],[1,2,0,0]],[[1,2,3,1],[1,3,2,2],[0,3,3,0],[1,2,0,0]],[[1,3,2,1],[1,3,2,2],[0,3,3,0],[1,2,0,0]],[[2,2,2,1],[1,3,2,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,1],[1,4,2,2],[0,3,3,0],[0,2,1,0]],[[1,2,2,2],[1,3,2,2],[0,3,3,0],[0,2,1,0]],[[1,2,3,1],[1,3,2,2],[0,3,3,0],[0,2,1,0]],[[1,3,2,1],[1,3,2,2],[0,3,3,0],[0,2,1,0]],[[2,2,2,1],[1,3,2,2],[0,3,3,0],[0,2,1,0]],[[1,2,2,1],[1,4,2,2],[0,3,3,0],[0,2,0,1]],[[1,2,2,2],[1,3,2,2],[0,3,3,0],[0,2,0,1]],[[1,2,3,1],[1,3,2,2],[0,3,3,0],[0,2,0,1]],[[1,3,2,1],[1,3,2,2],[0,3,3,0],[0,2,0,1]],[[2,2,2,1],[1,3,2,2],[0,3,3,0],[0,2,0,1]],[[1,2,2,1],[1,4,2,2],[0,3,3,0],[0,1,2,0]],[[1,2,2,2],[1,3,2,2],[0,3,3,0],[0,1,2,0]],[[1,2,3,1],[1,3,2,2],[0,3,3,0],[0,1,2,0]],[[1,3,2,1],[1,3,2,2],[0,3,3,0],[0,1,2,0]],[[2,2,2,1],[1,3,2,2],[0,3,3,0],[0,1,2,0]],[[1,2,2,1],[1,4,2,2],[0,3,3,0],[0,1,1,1]],[[1,2,2,2],[1,3,2,2],[0,3,3,0],[0,1,1,1]],[[1,2,3,1],[1,3,2,2],[0,3,3,0],[0,1,1,1]],[[1,3,2,1],[1,3,2,2],[0,3,3,0],[0,1,1,1]],[[2,2,2,1],[1,3,2,2],[0,3,3,0],[0,1,1,1]],[[0,3,1,1],[1,3,3,2],[1,1,3,0],[1,2,2,0]],[[0,2,1,1],[1,4,3,2],[1,1,3,0],[1,2,2,0]],[[0,2,1,1],[1,3,4,2],[1,1,3,0],[1,2,2,0]],[[0,3,1,1],[1,3,3,2],[1,2,3,0],[1,1,2,0]],[[0,2,1,1],[1,4,3,2],[1,2,3,0],[1,1,2,0]],[[0,2,1,1],[1,3,4,2],[1,2,3,0],[1,1,2,0]],[[0,3,1,1],[1,3,3,2],[1,2,3,0],[1,2,0,1]],[[0,2,1,1],[1,4,3,2],[1,2,3,0],[1,2,0,1]],[[0,2,1,1],[1,3,4,2],[1,2,3,0],[1,2,0,1]],[[0,3,1,1],[1,3,3,2],[1,2,3,0],[1,2,1,0]],[[0,2,1,1],[1,4,3,2],[1,2,3,0],[1,2,1,0]],[[0,2,1,1],[1,3,4,2],[1,2,3,0],[1,2,1,0]],[[1,2,2,1],[1,3,2,2],[0,3,2,0],[1,3,1,0]],[[1,2,2,1],[1,3,2,2],[0,3,2,0],[2,2,1,0]],[[1,2,2,1],[1,3,2,2],[0,4,2,0],[1,2,1,0]],[[1,2,2,1],[1,4,2,2],[0,3,2,0],[1,2,1,0]],[[1,2,2,2],[1,3,2,2],[0,3,2,0],[1,2,1,0]],[[1,2,3,1],[1,3,2,2],[0,3,2,0],[1,2,1,0]],[[1,3,2,1],[1,3,2,2],[0,3,2,0],[1,2,1,0]],[[2,2,2,1],[1,3,2,2],[0,3,2,0],[1,2,1,0]],[[1,2,2,1],[1,3,2,2],[0,4,2,0],[1,2,0,1]],[[1,2,2,1],[1,4,2,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,2],[1,3,2,2],[0,3,2,0],[1,2,0,1]],[[1,2,3,1],[1,3,2,2],[0,3,2,0],[1,2,0,1]],[[1,3,2,1],[1,3,2,2],[0,3,2,0],[1,2,0,1]],[[2,2,2,1],[1,3,2,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,1],[1,3,2,2],[0,4,2,0],[1,1,2,0]],[[1,2,2,1],[1,4,2,2],[0,3,2,0],[1,1,2,0]],[[1,2,2,2],[1,3,2,2],[0,3,2,0],[1,1,2,0]],[[1,2,3,1],[1,3,2,2],[0,3,2,0],[1,1,2,0]],[[1,3,2,1],[1,3,2,2],[0,3,2,0],[1,1,2,0]],[[2,2,2,1],[1,3,2,2],[0,3,2,0],[1,1,2,0]],[[1,2,2,1],[1,4,2,2],[0,3,2,0],[1,1,1,1]],[[1,2,2,2],[1,3,2,2],[0,3,2,0],[1,1,1,1]],[[1,2,3,1],[1,3,2,2],[0,3,2,0],[1,1,1,1]],[[1,3,2,1],[1,3,2,2],[0,3,2,0],[1,1,1,1]],[[2,2,2,1],[1,3,2,2],[0,3,2,0],[1,1,1,1]],[[1,2,2,1],[1,3,2,2],[0,3,1,0],[1,3,2,0]],[[1,2,2,1],[1,3,2,2],[0,3,1,0],[2,2,2,0]],[[1,2,2,1],[1,3,2,2],[0,4,1,0],[1,2,2,0]],[[1,2,2,1],[1,4,2,2],[0,3,1,0],[1,2,2,0]],[[1,2,2,2],[1,3,2,2],[0,3,1,0],[1,2,2,0]],[[1,2,3,1],[1,3,2,2],[0,3,1,0],[1,2,2,0]],[[1,3,2,1],[1,3,2,2],[0,3,1,0],[1,2,2,0]],[[2,2,2,1],[1,3,2,2],[0,3,1,0],[1,2,2,0]],[[0,3,1,1],[1,3,3,2],[1,3,1,0],[1,2,2,0]],[[0,2,1,1],[1,4,3,2],[1,3,1,0],[1,2,2,0]],[[0,2,1,1],[1,3,4,2],[1,3,1,0],[1,2,2,0]],[[0,2,1,1],[1,3,3,2],[1,4,1,0],[1,2,2,0]],[[0,2,1,1],[1,3,3,2],[1,3,1,0],[2,2,2,0]],[[0,2,1,1],[1,3,3,2],[1,3,1,0],[1,3,2,0]],[[1,2,2,1],[1,3,2,3],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[1,4,2,2],[0,3,0,2],[1,2,1,0]],[[1,2,2,2],[1,3,2,2],[0,3,0,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,2],[0,3,0,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,2],[0,3,0,2],[1,2,1,0]],[[2,2,2,1],[1,3,2,2],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[1,3,2,3],[0,3,0,2],[1,2,0,1]],[[1,2,2,1],[1,4,2,2],[0,3,0,2],[1,2,0,1]],[[1,2,2,2],[1,3,2,2],[0,3,0,2],[1,2,0,1]],[[1,2,3,1],[1,3,2,2],[0,3,0,2],[1,2,0,1]],[[1,3,2,1],[1,3,2,2],[0,3,0,2],[1,2,0,1]],[[2,2,2,1],[1,3,2,2],[0,3,0,2],[1,2,0,1]],[[1,2,2,1],[1,3,2,3],[0,3,0,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,2],[0,3,0,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,2],[0,3,0,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,2],[0,3,0,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,2],[0,3,0,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,2],[0,3,0,2],[1,1,2,0]],[[1,2,2,1],[1,3,2,3],[0,3,0,2],[1,1,1,1]],[[1,2,2,1],[1,4,2,2],[0,3,0,2],[1,1,1,1]],[[1,2,2,2],[1,3,2,2],[0,3,0,2],[1,1,1,1]],[[1,2,3,1],[1,3,2,2],[0,3,0,2],[1,1,1,1]],[[1,3,2,1],[1,3,2,2],[0,3,0,2],[1,1,1,1]],[[2,2,2,1],[1,3,2,2],[0,3,0,2],[1,1,1,1]],[[0,3,1,1],[1,3,3,2],[1,3,2,0],[1,1,2,0]],[[0,2,1,1],[1,4,3,2],[1,3,2,0],[1,1,2,0]],[[0,2,1,1],[1,3,4,2],[1,3,2,0],[1,1,2,0]],[[0,2,1,1],[1,3,3,2],[1,4,2,0],[1,1,2,0]],[[0,3,1,1],[1,3,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,1,1],[1,4,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,1,1],[1,3,4,2],[1,3,2,0],[1,2,0,1]],[[0,2,1,1],[1,3,3,2],[1,4,2,0],[1,2,0,1]],[[0,3,1,1],[1,3,3,2],[1,3,2,0],[1,2,1,0]],[[0,2,1,1],[1,4,3,2],[1,3,2,0],[1,2,1,0]],[[0,2,1,1],[1,3,4,2],[1,3,2,0],[1,2,1,0]],[[0,2,1,1],[1,3,3,2],[1,4,2,0],[1,2,1,0]],[[0,2,1,1],[1,3,3,2],[1,3,2,0],[2,2,1,0]],[[0,2,1,1],[1,3,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,2,1],[1,4,2,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,2],[1,3,2,2],[0,2,3,0],[1,2,1,0]],[[1,2,3,1],[1,3,2,2],[0,2,3,0],[1,2,1,0]],[[1,3,2,1],[1,3,2,2],[0,2,3,0],[1,2,1,0]],[[2,2,2,1],[1,3,2,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,1],[1,4,2,2],[0,2,3,0],[1,2,0,1]],[[1,2,2,2],[1,3,2,2],[0,2,3,0],[1,2,0,1]],[[1,2,3,1],[1,3,2,2],[0,2,3,0],[1,2,0,1]],[[1,3,2,1],[1,3,2,2],[0,2,3,0],[1,2,0,1]],[[2,2,2,1],[1,3,2,2],[0,2,3,0],[1,2,0,1]],[[1,2,2,1],[1,4,2,2],[0,2,3,0],[1,1,2,0]],[[1,2,2,2],[1,3,2,2],[0,2,3,0],[1,1,2,0]],[[1,2,3,1],[1,3,2,2],[0,2,3,0],[1,1,2,0]],[[1,3,2,1],[1,3,2,2],[0,2,3,0],[1,1,2,0]],[[2,2,2,1],[1,3,2,2],[0,2,3,0],[1,1,2,0]],[[1,2,2,1],[1,4,2,2],[0,2,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,2,2],[0,2,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,2,2],[0,2,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,2,2],[0,2,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,2,2],[0,2,3,0],[1,1,1,1]],[[0,3,1,1],[1,3,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,1,1],[1,4,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,1,1],[1,3,4,2],[1,3,3,0],[1,2,0,0]],[[0,2,1,1],[1,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,2,1],[1,3,2,2],[0,1,3,3],[1,1,0,1]],[[1,2,2,1],[1,3,2,3],[0,1,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,2],[0,1,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,2],[0,1,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,2],[0,1,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,2],[0,1,3,2],[1,1,0,1]],[[1,2,2,1],[1,3,2,3],[0,1,3,1],[1,2,1,0]],[[1,2,2,2],[1,3,2,2],[0,1,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,2,2],[0,1,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,2,2],[0,1,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,2,2],[0,1,3,1],[1,2,1,0]],[[1,2,2,1],[1,3,2,3],[0,1,3,1],[1,2,0,1]],[[1,2,2,2],[1,3,2,2],[0,1,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,2,2],[0,1,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,2,2],[0,1,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,2,2],[0,1,3,1],[1,2,0,1]],[[1,2,2,1],[1,3,2,3],[0,1,3,1],[1,1,2,0]],[[1,2,2,2],[1,3,2,2],[0,1,3,1],[1,1,2,0]],[[1,2,3,1],[1,3,2,2],[0,1,3,1],[1,1,2,0]],[[1,3,2,1],[1,3,2,2],[0,1,3,1],[1,1,2,0]],[[2,2,2,1],[1,3,2,2],[0,1,3,1],[1,1,2,0]],[[1,2,2,1],[1,3,2,3],[0,1,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,2,2],[0,1,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,2,2],[0,1,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,2,2],[0,1,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,2,2],[0,1,3,1],[1,1,1,1]],[[1,2,2,1],[1,3,2,3],[0,1,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,2,2],[0,1,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,2,2],[0,1,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,2,2],[0,1,3,1],[1,0,2,1]],[[2,2,2,1],[1,3,2,2],[0,1,3,1],[1,0,2,1]],[[1,2,2,1],[1,4,2,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,2],[1,3,2,2],[0,1,3,0],[1,2,2,0]],[[1,2,3,1],[1,3,2,2],[0,1,3,0],[1,2,2,0]],[[1,3,2,1],[1,3,2,2],[0,1,3,0],[1,2,2,0]],[[2,2,2,1],[1,3,2,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,1],[1,3,2,3],[0,1,3,0],[1,1,2,1]],[[1,2,2,2],[1,3,2,2],[0,1,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,2,2],[0,1,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,2,2],[0,1,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,2,2],[0,1,3,0],[1,1,2,1]],[[1,2,2,1],[1,3,2,3],[0,1,2,2],[1,2,1,0]],[[1,2,2,2],[1,3,2,2],[0,1,2,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,2],[0,1,2,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,2],[0,1,2,2],[1,2,1,0]],[[2,2,2,1],[1,3,2,2],[0,1,2,2],[1,2,1,0]],[[1,2,2,1],[1,3,2,2],[0,1,2,3],[1,2,0,1]],[[1,2,2,1],[1,3,2,3],[0,1,2,2],[1,2,0,1]],[[1,2,2,2],[1,3,2,2],[0,1,2,2],[1,2,0,1]],[[1,2,3,1],[1,3,2,2],[0,1,2,2],[1,2,0,1]],[[1,3,2,1],[1,3,2,2],[0,1,2,2],[1,2,0,1]],[[2,2,2,1],[1,3,2,2],[0,1,2,2],[1,2,0,1]],[[1,2,2,1],[1,3,2,2],[0,1,2,3],[1,1,2,0]],[[1,2,2,1],[1,3,2,3],[0,1,2,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,2],[0,1,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,2],[0,1,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,2],[0,1,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,2],[0,1,2,2],[1,1,2,0]],[[1,2,2,1],[1,3,2,2],[0,1,2,2],[1,1,1,2]],[[1,2,2,1],[1,3,2,2],[0,1,2,3],[1,1,1,1]],[[1,2,2,1],[1,3,2,3],[0,1,2,2],[1,1,1,1]],[[1,2,2,2],[1,3,2,2],[0,1,2,2],[1,1,1,1]],[[1,2,3,1],[1,3,2,2],[0,1,2,2],[1,1,1,1]],[[1,3,2,1],[1,3,2,2],[0,1,2,2],[1,1,1,1]],[[2,2,2,1],[1,3,2,2],[0,1,2,2],[1,1,1,1]],[[1,2,2,1],[1,3,2,2],[0,1,2,2],[1,0,2,2]],[[1,2,2,1],[1,3,2,2],[0,1,2,3],[1,0,2,1]],[[1,2,2,1],[1,3,2,3],[0,1,2,2],[1,0,2,1]],[[1,2,2,2],[1,3,2,2],[0,1,2,2],[1,0,2,1]],[[1,2,3,1],[1,3,2,2],[0,1,2,2],[1,0,2,1]],[[1,3,2,1],[1,3,2,2],[0,1,2,2],[1,0,2,1]],[[2,2,2,1],[1,3,2,2],[0,1,2,2],[1,0,2,1]],[[1,2,2,1],[1,3,2,2],[0,1,1,2],[1,1,2,2]],[[1,2,2,1],[1,3,2,2],[0,1,1,3],[1,1,2,1]],[[1,2,2,1],[1,3,2,3],[0,1,1,2],[1,1,2,1]],[[1,2,2,2],[1,3,2,2],[0,1,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,2,2],[0,1,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,2,2],[0,1,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,2,2],[0,1,1,2],[1,1,2,1]],[[1,2,2,1],[1,3,2,2],[0,0,3,3],[1,1,2,0]],[[1,2,2,1],[1,3,2,3],[0,0,3,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,2],[0,0,3,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,2],[0,0,3,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,2],[0,0,3,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,2],[0,0,3,2],[1,1,2,0]],[[1,2,2,1],[1,3,2,2],[0,0,3,2],[1,1,1,2]],[[1,2,2,1],[1,3,2,2],[0,0,3,3],[1,1,1,1]],[[1,2,2,1],[1,3,2,3],[0,0,3,2],[1,1,1,1]],[[1,2,2,2],[1,3,2,2],[0,0,3,2],[1,1,1,1]],[[1,2,3,1],[1,3,2,2],[0,0,3,2],[1,1,1,1]],[[0,3,1,1],[1,3,3,2],[2,0,3,0],[1,2,2,0]],[[0,2,1,1],[1,4,3,2],[2,0,3,0],[1,2,2,0]],[[0,2,1,1],[1,3,4,2],[2,0,3,0],[1,2,2,0]],[[1,3,2,1],[1,3,2,2],[0,0,3,2],[1,1,1,1]],[[2,2,2,1],[1,3,2,2],[0,0,3,2],[1,1,1,1]],[[1,2,2,1],[1,3,2,2],[0,0,3,2],[1,0,2,2]],[[1,2,2,1],[1,3,2,2],[0,0,3,3],[1,0,2,1]],[[1,2,2,1],[1,3,2,3],[0,0,3,2],[1,0,2,1]],[[1,2,2,2],[1,3,2,2],[0,0,3,2],[1,0,2,1]],[[1,2,3,1],[1,3,2,2],[0,0,3,2],[1,0,2,1]],[[1,3,2,1],[1,3,2,2],[0,0,3,2],[1,0,2,1]],[[2,2,2,1],[1,3,2,2],[0,0,3,2],[1,0,2,1]],[[1,2,2,1],[1,3,2,3],[0,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,3,2,2],[0,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,3,2,2],[0,0,3,1],[1,2,2,0]],[[1,3,2,1],[1,3,2,2],[0,0,3,1],[1,2,2,0]],[[2,2,2,1],[1,3,2,2],[0,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,3,2,3],[0,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,2,2],[0,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,2,2],[0,0,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,2,2],[0,0,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,2,2],[0,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,3,2,3],[0,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,3,2,2],[0,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,2,2],[0,0,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,2,2],[0,0,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,2,2],[0,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,3,2,2],[0,0,2,3],[1,2,2,0]],[[1,2,2,1],[1,3,2,3],[0,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,2,2],[0,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,2],[0,0,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,2],[0,0,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,2],[0,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,3,2,2],[0,0,2,2],[1,2,1,2]],[[1,2,2,1],[1,3,2,2],[0,0,2,3],[1,2,1,1]],[[1,2,2,1],[1,3,2,3],[0,0,2,2],[1,2,1,1]],[[1,2,2,2],[1,3,2,2],[0,0,2,2],[1,2,1,1]],[[1,2,3,1],[1,3,2,2],[0,0,2,2],[1,2,1,1]],[[1,3,2,1],[1,3,2,2],[0,0,2,2],[1,2,1,1]],[[2,2,2,1],[1,3,2,2],[0,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,3,2,2],[0,0,1,2],[1,2,2,2]],[[1,2,2,1],[1,3,2,2],[0,0,1,2],[1,2,3,1]],[[1,2,2,1],[1,3,2,2],[0,0,1,3],[1,2,2,1]],[[1,2,2,1],[1,3,2,3],[0,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,2,2],[0,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,2,2],[0,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,2,2],[0,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,2,2],[0,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[2,3,3,1],[1,0,0,0]],[[1,2,2,2],[1,3,2,1],[2,3,3,1],[1,0,0,0]],[[1,2,3,1],[1,3,2,1],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[1,3,2,1],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[1,3,2,1],[2,3,3,1],[1,0,0,0]],[[0,3,1,1],[1,3,3,2],[2,1,3,0],[0,2,2,0]],[[0,2,1,1],[1,4,3,2],[2,1,3,0],[0,2,2,0]],[[0,2,1,1],[1,3,4,2],[2,1,3,0],[0,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,3,3,0],[1,0,1,0]],[[1,2,2,2],[1,3,2,1],[2,3,3,0],[1,0,1,0]],[[1,2,3,1],[1,3,2,1],[2,3,3,0],[1,0,1,0]],[[1,3,2,1],[1,3,2,1],[2,3,3,0],[1,0,1,0]],[[2,2,2,1],[1,3,2,1],[2,3,3,0],[1,0,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,2,1],[1,0,1,0]],[[1,2,2,2],[1,3,2,1],[2,3,2,1],[1,0,1,0]],[[1,2,3,1],[1,3,2,1],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[1,3,2,1],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[1,3,2,1],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,2,1],[1,0,0,1]],[[1,2,2,2],[1,3,2,1],[2,3,2,1],[1,0,0,1]],[[1,2,3,1],[1,3,2,1],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[1,3,2,1],[2,3,2,1],[1,0,0,1]],[[0,2,1,1],[1,3,3,2],[3,2,1,0],[1,2,2,0]],[[0,2,1,1],[1,3,3,2],[2,2,1,0],[2,2,2,0]],[[0,2,1,1],[1,3,3,2],[2,2,1,0],[1,3,2,0]],[[2,2,2,1],[1,3,2,1],[2,3,2,1],[1,0,0,1]],[[0,2,1,1],[1,3,3,2],[3,2,2,0],[1,2,1,0]],[[0,2,1,1],[1,3,3,2],[2,2,2,0],[2,2,1,0]],[[0,2,1,1],[1,3,3,2],[2,2,2,0],[1,3,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,2,0],[1,2,0,0]],[[1,2,3,1],[1,3,2,1],[2,3,2,0],[1,2,0,0]],[[1,3,2,1],[1,3,2,1],[2,3,2,0],[1,2,0,0]],[[2,2,2,1],[1,3,2,1],[2,3,2,0],[1,2,0,0]],[[1,2,2,1],[1,4,2,1],[2,3,2,0],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[2,3,2,0],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[2,3,2,0],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[2,3,2,0],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,2,0],[1,0,1,1]],[[1,2,2,2],[1,3,2,1],[2,3,2,0],[1,0,1,1]],[[1,2,3,1],[1,3,2,1],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[1,3,2,1],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[1,3,2,1],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[1,4,2,1],[2,3,2,0],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,3,2,0],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,3,2,0],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,3,2,0],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,1,2],[1,0,1,0]],[[1,2,2,2],[1,3,2,1],[2,3,1,2],[1,0,1,0]],[[1,2,3,1],[1,3,2,1],[2,3,1,2],[1,0,1,0]],[[1,3,2,1],[1,3,2,1],[2,3,1,2],[1,0,1,0]],[[2,2,2,1],[1,3,2,1],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,1,2],[1,0,0,1]],[[1,2,2,2],[1,3,2,1],[2,3,1,2],[1,0,0,1]],[[1,2,3,1],[1,3,2,1],[2,3,1,2],[1,0,0,1]],[[1,3,2,1],[1,3,2,1],[2,3,1,2],[1,0,0,1]],[[2,2,2,1],[1,3,2,1],[2,3,1,2],[1,0,0,1]],[[0,3,1,1],[1,3,3,2],[2,2,3,0],[0,1,1,1]],[[0,2,1,1],[1,4,3,2],[2,2,3,0],[0,1,1,1]],[[0,2,1,1],[1,3,4,2],[2,2,3,0],[0,1,1,1]],[[0,3,1,1],[1,3,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,1,1],[1,4,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,1,1],[1,3,4,2],[2,2,3,0],[0,1,2,0]],[[0,3,1,1],[1,3,3,2],[2,2,3,0],[0,2,0,1]],[[0,2,1,1],[1,4,3,2],[2,2,3,0],[0,2,0,1]],[[0,2,1,1],[1,3,4,2],[2,2,3,0],[0,2,0,1]],[[0,3,1,1],[1,3,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,1,1],[1,4,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,1,1],[1,3,4,2],[2,2,3,0],[0,2,1,0]],[[0,3,1,1],[1,3,3,2],[2,2,3,0],[1,0,1,1]],[[0,2,1,1],[1,4,3,2],[2,2,3,0],[1,0,1,1]],[[0,2,1,1],[1,3,4,2],[2,2,3,0],[1,0,1,1]],[[0,3,1,1],[1,3,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,1,1],[1,4,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,1,1],[1,3,4,2],[2,2,3,0],[1,0,2,0]],[[0,3,1,1],[1,3,3,2],[2,2,3,0],[1,1,0,1]],[[0,2,1,1],[1,4,3,2],[2,2,3,0],[1,1,0,1]],[[0,2,1,1],[1,3,4,2],[2,2,3,0],[1,1,0,1]],[[0,3,1,1],[1,3,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,1,1],[1,4,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,1,1],[1,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,1,1],[1,2,0,0]],[[1,2,2,2],[1,3,2,1],[2,3,1,1],[1,2,0,0]],[[1,2,3,1],[1,3,2,1],[2,3,1,1],[1,2,0,0]],[[1,3,2,1],[1,3,2,1],[2,3,1,1],[1,2,0,0]],[[2,2,2,1],[1,3,2,1],[2,3,1,1],[1,2,0,0]],[[1,2,2,1],[1,4,2,1],[2,3,1,1],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[2,3,1,1],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[2,3,1,1],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[2,3,1,1],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[2,3,1,1],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,1,1],[1,1,0,1]],[[1,2,2,2],[1,3,2,1],[2,3,1,1],[1,1,0,1]],[[1,2,3,1],[1,3,2,1],[2,3,1,1],[1,1,0,1]],[[1,3,2,1],[1,3,2,1],[2,3,1,1],[1,1,0,1]],[[2,2,2,1],[1,3,2,1],[2,3,1,1],[1,1,0,1]],[[1,2,2,1],[1,4,2,1],[2,3,1,1],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,3,1,1],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,3,1,1],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,3,1,1],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,3,1,1],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,1,1],[0,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,3,1,1],[0,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,3,1,1],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,3,1,1],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,3,1,1],[0,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,3,1,0],[1,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,3,1,0],[1,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,3,1,0],[1,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,3,1,0],[1,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,3,1,0],[1,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,3,1,0],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[2,3,1,0],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[2,3,1,0],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[2,3,1,0],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[2,3,1,0],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[2,3,1,0],[0,2,1,1]],[[1,2,2,2],[1,3,2,1],[2,3,1,0],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[2,3,1,0],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[2,3,1,0],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[2,3,1,0],[0,2,1,1]],[[1,2,2,1],[1,4,2,1],[2,3,0,2],[1,2,0,0]],[[1,2,2,2],[1,3,2,1],[2,3,0,2],[1,2,0,0]],[[1,2,3,1],[1,3,2,1],[2,3,0,2],[1,2,0,0]],[[1,3,2,1],[1,3,2,1],[2,3,0,2],[1,2,0,0]],[[2,2,2,1],[1,3,2,1],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[1,4,2,1],[2,3,0,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[2,3,0,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[2,3,0,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[2,3,0,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,0,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,1],[2,3,0,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,1],[2,3,0,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,1],[2,3,0,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,1],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,1],[2,3,0,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,3,0,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,3,0,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,3,0,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,0,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,3,0,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,3,0,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,3,0,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,3,0,1],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,3,0,1],[1,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,3,0,1],[1,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,3,0,1],[1,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,3,0,1],[1,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,3,0,1],[1,1,2,0]],[[1,2,2,2],[1,3,2,1],[2,3,0,1],[1,1,2,0]],[[1,2,3,1],[1,3,2,1],[2,3,0,1],[1,1,2,0]],[[1,3,2,1],[1,3,2,1],[2,3,0,1],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[2,3,0,1],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[2,3,0,1],[0,2,2,0]],[[1,2,2,2],[1,3,2,1],[2,3,0,1],[0,2,2,0]],[[1,2,3,1],[1,3,2,1],[2,3,0,1],[0,2,2,0]],[[1,3,2,1],[1,3,2,1],[2,3,0,1],[0,2,2,0]],[[2,2,2,1],[1,3,2,1],[2,3,0,1],[0,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,3,0,0],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[2,3,0,0],[1,2,2,0]],[[1,3,2,1],[1,3,2,1],[2,3,0,0],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[2,3,0,0],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,3,0,0],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[2,3,0,0],[1,2,1,1]],[[1,2,3,1],[1,3,2,1],[2,3,0,0],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[2,3,0,0],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[2,3,0,0],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[2,3,0,0],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[2,3,0,0],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[2,3,0,0],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[2,3,0,0],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[2,3,0,0],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[2,3,0,0],[0,2,2,1]],[[1,2,2,2],[1,3,2,1],[2,3,0,0],[0,2,2,1]],[[1,2,3,1],[1,3,2,1],[2,3,0,0],[0,2,2,1]],[[1,3,2,1],[1,3,2,1],[2,3,0,0],[0,2,2,1]],[[2,2,2,1],[1,3,2,1],[2,3,0,0],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[2,2,3,1],[1,1,0,0]],[[1,2,2,2],[1,3,2,1],[2,2,3,1],[1,1,0,0]],[[1,2,3,1],[1,3,2,1],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[1,3,2,1],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[1,3,2,1],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[1,4,2,1],[2,2,3,1],[0,2,0,0]],[[1,2,2,2],[1,3,2,1],[2,2,3,1],[0,2,0,0]],[[1,2,3,1],[1,3,2,1],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[1,3,2,1],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[1,3,2,1],[2,2,3,1],[0,2,0,0]],[[0,2,1,1],[1,3,3,2],[3,3,0,0],[1,2,2,0]],[[0,2,1,1],[1,3,3,2],[2,3,0,0],[2,2,2,0]],[[0,2,1,1],[1,3,3,2],[2,3,0,0],[1,3,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,3,0],[1,2,0,0]],[[1,2,2,2],[1,3,2,1],[2,2,3,0],[1,2,0,0]],[[1,2,3,1],[1,3,2,1],[2,2,3,0],[1,2,0,0]],[[1,3,2,1],[1,3,2,1],[2,2,3,0],[1,2,0,0]],[[2,2,2,1],[1,3,2,1],[2,2,3,0],[1,2,0,0]],[[1,2,2,1],[1,4,2,1],[2,2,3,0],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[2,2,3,0],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[2,2,3,0],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[2,2,3,0],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[2,2,3,0],[1,0,2,0]],[[1,2,2,2],[1,3,2,1],[2,2,3,0],[1,0,2,0]],[[1,2,3,1],[1,3,2,1],[2,2,3,0],[1,0,2,0]],[[1,3,2,1],[1,3,2,1],[2,2,3,0],[1,0,2,0]],[[2,2,2,1],[1,3,2,1],[2,2,3,0],[1,0,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,3,0],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,2,3,0],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,2,3,0],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,2,3,0],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,2,3,0],[0,2,1,0]],[[0,3,1,1],[1,3,3,2],[2,3,1,0],[0,2,2,0]],[[0,2,1,1],[1,4,3,2],[2,3,1,0],[0,2,2,0]],[[0,2,1,1],[1,3,4,2],[2,3,1,0],[0,2,2,0]],[[0,2,1,1],[1,3,3,2],[3,3,1,0],[0,2,2,0]],[[0,2,1,1],[1,3,3,2],[2,4,1,0],[0,2,2,0]],[[0,2,1,1],[1,3,3,2],[2,3,1,0],[0,3,2,0]],[[0,3,1,1],[1,3,3,2],[2,3,1,0],[1,1,2,0]],[[0,2,1,1],[1,4,3,2],[2,3,1,0],[1,1,2,0]],[[0,2,1,1],[1,3,4,2],[2,3,1,0],[1,1,2,0]],[[0,2,1,1],[1,3,3,2],[3,3,1,0],[1,1,2,0]],[[0,2,1,1],[1,3,3,2],[2,4,1,0],[1,1,2,0]],[[0,2,1,1],[1,3,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,3,0],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[2,2,3,0],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[2,2,3,0],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[2,2,3,0],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[2,2,3,0],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,2,1],[1,2,0,0]],[[1,2,2,2],[1,3,2,1],[2,2,2,1],[1,2,0,0]],[[1,2,3,1],[1,3,2,1],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[1,3,2,1],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[1,3,2,1],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[1,4,2,1],[2,2,2,1],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[2,2,2,1],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[2,2,2,1],[1,1,0,1]],[[1,2,2,2],[1,3,2,1],[2,2,2,1],[1,1,0,1]],[[1,2,3,1],[1,3,2,1],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[1,3,2,1],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[1,3,2,1],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[1,4,2,1],[2,2,2,1],[1,0,2,0]],[[1,2,2,2],[1,3,2,1],[2,2,2,1],[1,0,2,0]],[[1,2,3,1],[1,3,2,1],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[1,3,2,1],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[1,3,2,1],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,2,1],[1,0,1,1]],[[1,2,2,2],[1,3,2,1],[2,2,2,1],[1,0,1,1]],[[1,2,3,1],[1,3,2,1],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[1,3,2,1],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[1,3,2,1],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[1,4,2,1],[2,2,2,1],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,2,2,1],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,2,2,1],[0,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,2,2,1],[0,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,2,2,1],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[2,2,2,1],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,2,1],[0,1,1,1]],[[1,2,2,2],[1,3,2,1],[2,2,2,1],[0,1,1,1]],[[1,2,3,1],[1,3,2,1],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[1,3,2,1],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[1,3,2,1],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[1,4,2,1],[2,2,2,0],[1,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,2,2,0],[1,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,2,2,0],[1,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,2,2,0],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[2,2,2,0],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[2,2,2,0],[1,0,2,1]],[[1,2,2,2],[1,3,2,1],[2,2,2,0],[1,0,2,1]],[[1,2,3,1],[1,3,2,1],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[1,3,2,1],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[1,3,2,1],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[1,4,2,1],[2,2,2,0],[0,2,1,1]],[[1,2,2,2],[1,3,2,1],[2,2,2,0],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[2,2,2,0],[0,2,1,1]],[[0,3,1,1],[1,3,3,2],[2,3,2,0],[0,1,1,1]],[[0,2,1,1],[1,4,3,2],[2,3,2,0],[0,1,1,1]],[[0,2,1,1],[1,3,4,2],[2,3,2,0],[0,1,1,1]],[[0,3,1,1],[1,3,3,2],[2,3,2,0],[0,1,2,0]],[[0,2,1,1],[1,4,3,2],[2,3,2,0],[0,1,2,0]],[[0,2,1,1],[1,3,4,2],[2,3,2,0],[0,1,2,0]],[[0,2,1,1],[1,3,3,2],[3,3,2,0],[0,1,2,0]],[[0,2,1,1],[1,3,3,2],[2,4,2,0],[0,1,2,0]],[[0,3,1,1],[1,3,3,2],[2,3,2,0],[0,2,0,1]],[[0,2,1,1],[1,4,3,2],[2,3,2,0],[0,2,0,1]],[[0,2,1,1],[1,3,4,2],[2,3,2,0],[0,2,0,1]],[[0,2,1,1],[1,3,3,2],[3,3,2,0],[0,2,0,1]],[[0,2,1,1],[1,3,3,2],[2,4,2,0],[0,2,0,1]],[[0,3,1,1],[1,3,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,1,1],[1,4,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,1,1],[1,3,4,2],[2,3,2,0],[0,2,1,0]],[[0,2,1,1],[1,3,3,2],[3,3,2,0],[0,2,1,0]],[[0,2,1,1],[1,3,3,2],[2,4,2,0],[0,2,1,0]],[[0,2,1,1],[1,3,3,2],[2,3,2,0],[0,3,1,0]],[[1,2,2,1],[1,4,2,1],[2,2,2,0],[0,1,2,1]],[[1,2,2,2],[1,3,2,1],[2,2,2,0],[0,1,2,1]],[[1,2,3,1],[1,3,2,1],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[1,3,2,1],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[1,3,2,1],[2,2,2,0],[0,1,2,1]],[[0,3,1,1],[1,3,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,1,1],[1,4,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,1,1],[1,3,4,2],[2,3,2,0],[1,0,1,1]],[[0,3,1,1],[1,3,3,2],[2,3,2,0],[1,0,2,0]],[[0,2,1,1],[1,4,3,2],[2,3,2,0],[1,0,2,0]],[[0,2,1,1],[1,3,4,2],[2,3,2,0],[1,0,2,0]],[[0,2,1,1],[1,3,3,2],[3,3,2,0],[1,0,2,0]],[[0,2,1,1],[1,3,3,2],[2,4,2,0],[1,0,2,0]],[[0,2,1,1],[1,3,3,2],[2,3,2,0],[2,0,2,0]],[[0,3,1,1],[1,3,3,2],[2,3,2,0],[1,1,0,1]],[[0,2,1,1],[1,4,3,2],[2,3,2,0],[1,1,0,1]],[[0,2,1,1],[1,3,4,2],[2,3,2,0],[1,1,0,1]],[[0,2,1,1],[1,3,3,2],[3,3,2,0],[1,1,0,1]],[[0,2,1,1],[1,3,3,2],[2,4,2,0],[1,1,0,1]],[[0,2,1,1],[1,3,3,2],[2,3,2,0],[2,1,0,1]],[[0,3,1,1],[1,3,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,1,1],[1,4,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,1,1],[1,3,4,2],[2,3,2,0],[1,1,1,0]],[[0,2,1,1],[1,3,3,2],[3,3,2,0],[1,1,1,0]],[[0,2,1,1],[1,3,3,2],[2,4,2,0],[1,1,1,0]],[[0,2,1,1],[1,3,3,2],[2,3,2,0],[2,1,1,0]],[[0,3,1,1],[1,3,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,1,1],[1,4,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,1,1],[1,3,4,2],[2,3,2,0],[1,2,0,0]],[[0,2,1,1],[1,3,3,2],[3,3,2,0],[1,2,0,0]],[[0,2,1,1],[1,3,3,2],[2,4,2,0],[1,2,0,0]],[[0,2,1,1],[1,3,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[1,4,2,1],[2,2,1,2],[1,2,0,0]],[[1,2,2,2],[1,3,2,1],[2,2,1,2],[1,2,0,0]],[[1,2,3,1],[1,3,2,1],[2,2,1,2],[1,2,0,0]],[[1,3,2,1],[1,3,2,1],[2,2,1,2],[1,2,0,0]],[[2,2,2,1],[1,3,2,1],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[1,4,2,1],[2,2,1,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[2,2,1,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[2,2,1,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[2,2,1,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[2,2,1,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,1],[2,2,1,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,1],[2,2,1,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,1],[2,2,1,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,1],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,1],[2,2,1,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,1],[2,2,1,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,1],[2,2,1,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,1],[2,2,1,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,1],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,1,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,1],[2,2,1,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,1],[2,2,1,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,1],[2,2,1,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,1],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[1,4,2,1],[2,2,1,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,2,1,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,2,1,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,2,1,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,2,1,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,2,1,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,2,1,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,2,1,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,2,1,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[2,2,1,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[2,2,1,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[2,2,1,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,1,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,1],[2,2,1,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,1],[2,2,1,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,1],[2,2,1,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,1],[2,2,1,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,1],[2,2,1,1],[1,1,2,0]],[[1,2,2,2],[1,3,2,1],[2,2,1,1],[1,1,2,0]],[[1,2,3,1],[1,3,2,1],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[1,3,2,1],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,1,1],[0,2,2,0]],[[1,2,2,2],[1,3,2,1],[2,2,1,1],[0,2,2,0]],[[1,2,3,1],[1,3,2,1],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[1,3,2,1],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[1,3,2,1],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,1,0],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[2,2,1,0],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[2,2,1,0],[0,2,2,1]],[[1,2,2,2],[1,3,2,1],[2,2,1,0],[0,2,2,1]],[[1,2,3,1],[1,3,2,1],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[1,3,2,1],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[1,3,2,1],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[2,2,0,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,1],[2,2,0,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,1],[2,2,0,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,1],[2,2,0,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,0,2],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[2,2,0,2],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[2,2,0,2],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[2,2,0,2],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[2,2,0,2],[1,0,2,1]],[[1,2,2,2],[1,3,2,1],[2,2,0,2],[1,0,2,1]],[[1,2,3,1],[1,3,2,1],[2,2,0,2],[1,0,2,1]],[[1,3,2,1],[1,3,2,1],[2,2,0,2],[1,0,2,1]],[[2,2,2,1],[1,3,2,1],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[1,4,2,1],[2,2,0,2],[0,2,2,0]],[[1,2,2,2],[1,3,2,1],[2,2,0,2],[0,2,2,0]],[[1,2,3,1],[1,3,2,1],[2,2,0,2],[0,2,2,0]],[[1,3,2,1],[1,3,2,1],[2,2,0,2],[0,2,2,0]],[[2,2,2,1],[1,3,2,1],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,0,2],[0,2,1,1]],[[1,2,2,2],[1,3,2,1],[2,2,0,2],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[2,2,0,2],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[2,2,0,2],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[1,4,2,1],[2,2,0,2],[0,1,2,1]],[[1,2,2,2],[1,3,2,1],[2,2,0,2],[0,1,2,1]],[[1,2,3,1],[1,3,2,1],[2,2,0,2],[0,1,2,1]],[[1,3,2,1],[1,3,2,1],[2,2,0,2],[0,1,2,1]],[[2,2,2,1],[1,3,2,1],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[1,4,2,1],[2,2,0,1],[1,2,2,0]],[[1,2,2,2],[1,3,2,1],[2,2,0,1],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[2,2,0,1],[1,2,2,0]],[[1,3,2,1],[1,3,2,1],[2,2,0,1],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[2,2,0,1],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,2,0,1],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[2,2,0,1],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[2,2,0,1],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[2,2,0,1],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[2,2,0,1],[0,2,2,1]],[[1,2,2,2],[1,3,2,1],[2,2,0,1],[0,2,2,1]],[[1,2,3,1],[1,3,2,1],[2,2,0,1],[0,2,2,1]],[[1,3,2,1],[1,3,2,1],[2,2,0,1],[0,2,2,1]],[[2,2,2,1],[1,3,2,1],[2,2,0,1],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[2,2,0,0],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[2,2,0,0],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[2,2,0,0],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[2,2,0,0],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[2,2,0,0],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[2,1,3,2],[1,0,0,1]],[[1,2,2,2],[1,3,2,1],[2,1,3,2],[1,0,0,1]],[[1,2,3,1],[1,3,2,1],[2,1,3,2],[1,0,0,1]],[[1,3,2,1],[1,3,2,1],[2,1,3,2],[1,0,0,1]],[[2,2,2,1],[1,3,2,1],[2,1,3,2],[1,0,0,1]],[[1,2,2,1],[1,4,2,1],[2,1,3,2],[0,1,0,1]],[[1,2,2,2],[1,3,2,1],[2,1,3,2],[0,1,0,1]],[[1,2,3,1],[1,3,2,1],[2,1,3,2],[0,1,0,1]],[[1,3,2,1],[1,3,2,1],[2,1,3,2],[0,1,0,1]],[[2,2,2,1],[1,3,2,1],[2,1,3,2],[0,1,0,1]],[[1,2,2,1],[1,4,2,1],[2,1,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[2,1,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[2,1,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[2,1,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,2,1],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,2,1],[2,1,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,2,1],[2,1,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,2,1],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[1,4,2,1],[2,1,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,2,1],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,2,1],[2,1,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,2,1],[2,1,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,2,1],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[1,4,2,1],[2,1,3,1],[1,0,1,1]],[[1,2,2,2],[1,3,2,1],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,2,1],[2,1,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,2,1],[2,1,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,2,1],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[1,4,2,1],[2,1,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,1,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,1,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,1,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,1,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,1,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,1,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[2,1,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[2,1,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[2,1,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,2,1],[2,1,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,2,1],[2,1,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,2,1],[2,1,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,2,1],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,2,1],[2,1,3,1],[0,0,2,1]],[[1,2,2,2],[1,3,2,1],[2,1,3,1],[0,0,2,1]],[[1,2,3,1],[1,3,2,1],[2,1,3,1],[0,0,2,1]],[[1,3,2,1],[1,3,2,1],[2,1,3,1],[0,0,2,1]],[[2,2,2,1],[1,3,2,1],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[1,4,2,1],[2,1,3,0],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,1,3,0],[1,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,1,3,0],[1,2,1,0]],[[0,3,1,1],[1,3,3,2],[2,3,3,0],[0,0,1,1]],[[0,2,1,1],[1,4,3,2],[2,3,3,0],[0,0,1,1]],[[0,2,1,1],[1,3,4,2],[2,3,3,0],[0,0,1,1]],[[0,3,1,1],[1,3,3,2],[2,3,3,0],[0,0,2,0]],[[0,2,1,1],[1,4,3,2],[2,3,3,0],[0,0,2,0]],[[0,2,1,1],[1,3,4,2],[2,3,3,0],[0,0,2,0]],[[1,3,2,1],[1,3,2,1],[2,1,3,0],[1,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,1,3,0],[1,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,1,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[2,1,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[2,1,3,0],[1,1,1,1]],[[0,3,1,1],[1,3,3,2],[2,3,3,0],[0,2,0,0]],[[0,2,1,1],[1,4,3,2],[2,3,3,0],[0,2,0,0]],[[0,2,1,1],[1,3,4,2],[2,3,3,0],[0,2,0,0]],[[0,2,1,1],[1,3,3,2],[3,3,3,0],[0,2,0,0]],[[0,2,1,1],[1,3,3,2],[2,4,3,0],[0,2,0,0]],[[1,3,2,1],[1,3,2,1],[2,1,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[2,1,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,2,1],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,2,1],[2,1,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,2,1],[2,1,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,2,1],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[1,4,2,1],[2,1,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,2,1],[2,1,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[2,1,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[2,1,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,2,1],[2,1,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,2,1],[2,1,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,2,1],[2,1,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,2,1],[2,1,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,2,1],[2,1,3,0],[0,1,2,1]],[[0,3,1,1],[1,3,3,2],[2,3,3,0],[1,1,0,0]],[[0,2,1,1],[1,4,3,2],[2,3,3,0],[1,1,0,0]],[[0,2,1,1],[1,3,4,2],[2,3,3,0],[1,1,0,0]],[[0,2,1,1],[1,3,3,2],[3,3,3,0],[1,1,0,0]],[[0,2,1,1],[1,3,3,2],[2,4,3,0],[1,1,0,0]],[[0,2,1,1],[1,3,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,2,1],[1,4,2,1],[2,1,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[2,1,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[2,1,2,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[2,1,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[2,1,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,1],[2,1,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,1],[2,1,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,1],[2,1,2,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,1],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,1],[2,1,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,1],[2,1,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,1],[2,1,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,1],[2,1,2,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,1],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[1,4,2,1],[2,1,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,1],[2,1,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,1],[2,1,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,1],[2,1,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,1],[2,1,2,2],[1,0,1,1]],[[1,2,2,1],[1,4,2,1],[2,1,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,1,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,1,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,1,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,1,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,1,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,1,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,1,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,1,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[2,1,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[2,1,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[2,1,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[2,1,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,1],[2,1,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,1],[2,1,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,1],[2,1,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,1],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,1],[2,1,2,2],[0,0,2,1]],[[1,2,2,2],[1,3,2,1],[2,1,2,2],[0,0,2,1]],[[1,2,3,1],[1,3,2,1],[2,1,2,2],[0,0,2,1]],[[1,3,2,1],[1,3,2,1],[2,1,2,2],[0,0,2,1]],[[2,2,2,1],[1,3,2,1],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[1,4,2,1],[2,1,2,1],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,1,2,1],[1,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,1,2,1],[1,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,1,2,1],[1,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,1,2,0],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[2,1,2,0],[1,2,1,1]],[[1,2,3,1],[1,3,2,1],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[2,1,2,0],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[2,1,1,2],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,1,1,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,1,1,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,1,1,2],[1,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,1,1,2],[1,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,1,1,2],[1,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,1,1,2],[1,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,1,1,2],[1,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,1,1,2],[1,0,2,1]],[[1,2,2,2],[1,3,2,1],[2,1,1,2],[1,0,2,1]],[[1,2,3,1],[1,3,2,1],[2,1,1,2],[1,0,2,1]],[[1,3,2,1],[1,3,2,1],[2,1,1,2],[1,0,2,1]],[[2,2,2,1],[1,3,2,1],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[1,4,2,1],[2,1,1,2],[0,1,2,1]],[[1,2,2,2],[1,3,2,1],[2,1,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,2,1],[2,1,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,2,1],[2,1,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,2,1],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[1,4,2,1],[2,1,1,1],[1,2,2,0]],[[1,2,2,2],[1,3,2,1],[2,1,1,1],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[1,3,2,1],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,1,1,0],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[2,1,1,0],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[2,1,0,2],[1,2,2,0]],[[1,2,2,2],[1,3,2,1],[2,1,0,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[2,1,0,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,1],[2,1,0,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,1,0,2],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[2,1,0,2],[1,2,1,1]],[[1,2,3,1],[1,3,2,1],[2,1,0,2],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[2,1,0,2],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[2,1,0,2],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[2,1,0,2],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[2,1,0,2],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[2,1,0,2],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[2,1,0,2],[0,2,2,1]],[[1,2,2,2],[1,3,2,1],[2,1,0,2],[0,2,2,1]],[[1,2,3,1],[1,3,2,1],[2,1,0,2],[0,2,2,1]],[[1,3,2,1],[1,3,2,1],[2,1,0,2],[0,2,2,1]],[[2,2,2,1],[1,3,2,1],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[2,1,0,1],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[2,1,0,1],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[2,1,0,1],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[2,1,0,1],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[2,1,0,1],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[2,0,3,1],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,0,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,0,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,0,3,1],[1,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,0,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,0,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,0,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,0,3,1],[1,1,2,0]],[[1,2,2,2],[1,3,2,1],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[1,3,2,1],[2,0,3,1],[1,1,2,0]],[[1,3,2,1],[1,3,2,1],[2,0,3,1],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[2,0,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[2,0,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[2,0,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[2,0,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[2,0,3,1],[0,2,2,0]],[[1,2,2,2],[1,3,2,1],[2,0,3,1],[0,2,2,0]],[[1,2,3,1],[1,3,2,1],[2,0,3,1],[0,2,2,0]],[[1,3,2,1],[1,3,2,1],[2,0,3,1],[0,2,2,0]],[[2,2,2,1],[1,3,2,1],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,0,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,2,1],[2,0,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[2,0,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[2,0,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,2,1],[2,0,3,0],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[2,0,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,2,1],[2,0,3,0],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[2,0,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[2,0,3,0],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[2,0,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[2,0,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[2,0,3,0],[0,2,2,1]],[[1,2,2,2],[1,3,2,1],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[1,3,2,1],[2,0,3,0],[0,2,2,1]],[[1,3,2,1],[1,3,2,1],[2,0,3,0],[0,2,2,1]],[[2,2,2,1],[1,3,2,1],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[2,0,2,2],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[2,0,2,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,1],[2,0,2,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,1],[2,0,2,2],[1,2,1,0]],[[2,2,2,1],[1,3,2,1],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[1,4,2,1],[2,0,2,2],[1,2,0,1]],[[1,2,2,2],[1,3,2,1],[2,0,2,2],[1,2,0,1]],[[1,2,3,1],[1,3,2,1],[2,0,2,2],[1,2,0,1]],[[1,3,2,1],[1,3,2,1],[2,0,2,2],[1,2,0,1]],[[2,2,2,1],[1,3,2,1],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[1,4,2,1],[2,0,2,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,1],[2,0,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,1],[2,0,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,1],[2,0,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[2,0,2,2],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[2,0,2,2],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[2,0,2,2],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[2,0,2,2],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[2,0,2,2],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[2,0,2,2],[0,2,2,0]],[[1,2,2,2],[1,3,2,1],[2,0,2,2],[0,2,2,0]],[[1,2,3,1],[1,3,2,1],[2,0,2,2],[0,2,2,0]],[[1,3,2,1],[1,3,2,1],[2,0,2,2],[0,2,2,0]],[[2,2,2,1],[1,3,2,1],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,0,2,2],[0,2,1,1]],[[1,2,2,2],[1,3,2,1],[2,0,2,2],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[2,0,2,2],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[2,0,2,2],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[1,4,2,1],[2,0,2,1],[1,2,2,0]],[[1,2,2,2],[1,3,2,1],[2,0,2,1],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[2,0,2,1],[1,2,2,0]],[[1,3,2,1],[1,3,2,1],[2,0,2,1],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,0,2,0],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[2,0,2,0],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[2,0,2,0],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[2,0,2,0],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[2,0,1,2],[1,2,2,0]],[[1,2,2,2],[1,3,2,1],[2,0,1,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[2,0,1,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,1],[2,0,1,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[2,0,1,2],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[2,0,1,2],[1,2,1,1]],[[1,2,3,1],[1,3,2,1],[2,0,1,2],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[2,0,1,2],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[2,0,1,2],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[2,0,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[2,0,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[2,0,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[2,0,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,2,1],[2,0,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,2,1],[2,0,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,2,1],[2,0,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,2,1],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[2,0,1,1],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[2,0,1,1],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[2,0,1,1],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[2,0,1,1],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[2,0,1,1],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[1,3,2,1],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[1,3,2,1],[1,3,3,2],[0,0,0,1]],[[1,3,2,1],[1,3,2,1],[1,3,3,2],[0,0,0,1]],[[2,2,2,1],[1,3,2,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[1,3,2,1],[1,4,3,1],[1,1,0,0]],[[1,2,2,1],[1,4,2,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,2],[1,3,2,1],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[1,3,2,1],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[1,3,2,1],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[1,3,2,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[1,3,2,1],[1,4,3,1],[0,2,0,0]],[[1,2,2,1],[1,4,2,1],[1,3,3,1],[0,2,0,0]],[[1,2,2,2],[1,3,2,1],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[1,3,2,1],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[1,3,2,1],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[1,3,2,1],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[1,4,2,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[1,3,2,1],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,3,1],[0,0,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[1,3,2,1],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[1,3,2,1],[1,3,3,1],[0,0,1,1]],[[1,3,2,1],[1,3,2,1],[1,3,3,1],[0,0,1,1]],[[2,2,2,1],[1,3,2,1],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[1,3,2,1],[1,4,3,0],[1,2,0,0]],[[1,2,2,1],[1,4,2,1],[1,3,3,0],[1,2,0,0]],[[1,2,2,2],[1,3,2,1],[1,3,3,0],[1,2,0,0]],[[1,2,3,1],[1,3,2,1],[1,3,3,0],[1,2,0,0]],[[1,3,2,1],[1,3,2,1],[1,3,3,0],[1,2,0,0]],[[2,2,2,1],[1,3,2,1],[1,3,3,0],[1,2,0,0]],[[1,2,2,1],[1,3,2,1],[1,4,3,0],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[1,3,3,0],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[1,3,3,0],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[1,3,3,0],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,3,0],[1,0,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,3,0],[1,0,2,0]],[[1,2,2,2],[1,3,2,1],[1,3,3,0],[1,0,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,3,0],[1,0,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,3,0],[1,0,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,3,0],[1,0,2,0]],[[1,2,2,1],[1,3,2,1],[1,3,3,0],[0,3,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,3,0],[0,2,1,0]],[[0,2,1,1],[2,0,1,2],[1,2,3,3],[1,2,2,1]],[[0,2,1,1],[2,0,1,2],[1,2,3,2],[2,2,2,1]],[[0,2,1,1],[2,0,1,2],[1,2,3,2],[1,3,2,1]],[[0,2,1,1],[2,0,1,2],[1,2,3,2],[1,2,3,1]],[[0,2,1,1],[2,0,1,2],[1,2,3,2],[1,2,2,2]],[[0,2,1,1],[2,0,1,2],[1,3,3,3],[1,1,2,1]],[[0,2,1,1],[2,0,1,2],[1,3,3,2],[1,1,3,1]],[[0,2,1,1],[2,0,1,2],[1,3,3,2],[1,1,2,2]],[[0,2,1,1],[2,0,1,2],[3,1,3,2],[1,2,2,1]],[[0,2,1,1],[2,0,1,2],[2,1,3,3],[1,2,2,1]],[[0,2,1,1],[2,0,1,2],[2,1,3,2],[2,2,2,1]],[[0,2,1,1],[2,0,1,2],[2,1,3,2],[1,3,2,1]],[[0,2,1,1],[2,0,1,2],[2,1,3,2],[1,2,3,1]],[[0,2,1,1],[2,0,1,2],[2,1,3,2],[1,2,2,2]],[[0,2,1,1],[2,0,1,2],[2,2,3,3],[0,2,2,1]],[[0,2,1,1],[2,0,1,2],[2,2,3,2],[0,3,2,1]],[[0,2,1,1],[2,0,1,2],[2,2,3,2],[0,2,3,1]],[[0,2,1,1],[2,0,1,2],[2,2,3,2],[0,2,2,2]],[[0,2,1,1],[2,0,1,2],[2,3,3,3],[0,1,2,1]],[[0,2,1,1],[2,0,1,2],[2,3,3,2],[0,1,3,1]],[[0,2,1,1],[2,0,1,2],[2,3,3,2],[0,1,2,2]],[[0,2,1,1],[2,0,1,2],[2,3,3,3],[1,0,2,1]],[[0,2,1,1],[2,0,1,2],[2,3,3,2],[1,0,3,1]],[[0,2,1,1],[2,0,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,4,2,1],[1,3,3,0],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[1,3,3,0],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[1,3,3,0],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[1,3,3,0],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[1,3,3,0],[0,2,1,0]],[[0,2,1,1],[2,0,2,0],[3,3,3,1],[1,2,2,1]],[[0,2,1,1],[2,0,2,0],[2,3,3,1],[2,2,2,1]],[[0,2,1,1],[2,0,2,0],[2,3,3,1],[1,3,2,1]],[[0,2,1,1],[2,0,2,0],[2,3,3,1],[1,2,3,1]],[[0,2,1,1],[2,0,2,0],[2,3,3,1],[1,2,2,2]],[[0,2,1,1],[2,0,2,0],[3,3,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,2,0],[2,3,3,2],[2,2,2,0]],[[0,2,1,1],[2,0,2,0],[2,3,3,2],[1,3,2,0]],[[0,2,1,1],[2,0,2,0],[2,3,3,2],[1,2,3,0]],[[0,2,1,2],[2,0,2,2],[1,1,3,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,3],[1,1,3,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,1,3,3],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,1,3,2],[1,2,3,1]],[[0,2,1,1],[2,0,2,2],[1,1,3,2],[1,2,2,2]],[[0,2,1,2],[2,0,2,2],[1,2,2,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,3],[1,2,2,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[2,0,2,2],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[2,0,2,2],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[2,0,2,2],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,0,2,2],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,0,2,2],[1,2,3,1],[1,2,2,2]],[[0,2,1,2],[2,0,2,2],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,0,2,3],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,0,2,2],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[2,0,2,2],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[2,0,2,2],[1,2,3,2],[1,2,1,2]],[[0,2,1,2],[2,0,2,2],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,2,3],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,2,2],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,0,2,2],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[2,0,2,2],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,0,2,2],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,0,2,2],[1,2,3,2],[1,2,3,0]],[[0,2,1,2],[2,0,2,2],[1,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,3],[1,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,1,3],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,0,2,2],[1,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,0,2,2],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,0,2,2],[1,3,2,1],[1,2,2,2]],[[0,2,1,2],[2,0,2,2],[1,3,2,2],[1,1,2,1]],[[0,2,1,1],[2,0,2,3],[1,3,2,2],[1,1,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[2,0,2,2],[1,3,2,2],[1,1,2,2]],[[0,2,1,1],[2,0,2,2],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,2,2],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,0,2,2],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,0,2,2],[1,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,0,2,2],[1,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,1],[1,1,2,2]],[[0,2,1,1],[2,0,2,2],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,2,2],[1,3,4,1],[1,2,1,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,1],[1,3,1,1]],[[0,2,1,2],[2,0,2,2],[1,3,3,2],[1,0,2,1]],[[0,2,1,1],[2,0,2,3],[1,3,3,2],[1,0,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,4,2],[1,0,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,3],[1,0,2,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,2],[1,0,2,2]],[[0,2,1,2],[2,0,2,2],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,0,2,3],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,0,2,2],[1,4,3,2],[1,1,1,1]],[[0,2,1,1],[2,0,2,2],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,2],[1,1,1,2]],[[0,2,1,2],[2,0,2,2],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,0,2,3],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,0,2,2],[1,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,0,2,2],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[2,0,2,2],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[2,0,2,2],[1,3,3,2],[1,1,3,0]],[[0,2,1,2],[2,0,2,2],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,2,3],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,2,2],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,2,2],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,0,2,2],[1,3,3,2],[1,2,0,2]],[[0,2,1,2],[2,0,2,2],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,2,3],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,2,2],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,2,2],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[2,0,2,2],[1,3,3,3],[1,2,1,0]],[[0,2,1,1],[2,0,2,2],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,0,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,3,0],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,3,0],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[1,3,3,0],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,3,0],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,3,0],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,3,0],[0,1,2,0]],[[0,2,1,2],[2,0,2,2],[2,0,3,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,3],[2,0,3,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,0,3,3],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,0,3,2],[1,2,3,1]],[[0,2,1,1],[2,0,2,2],[2,0,3,2],[1,2,2,2]],[[0,2,1,2],[2,0,2,2],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[3,0,2,2],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,3],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[3,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,1,2,3],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,1,2,2],[2,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,1,2,2],[1,3,2,1]],[[0,2,1,1],[2,0,2,2],[2,1,2,2],[1,2,3,1]],[[0,2,1,1],[2,0,2,2],[2,1,2,2],[1,2,2,2]],[[0,2,1,1],[3,0,2,2],[2,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[3,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,1,4,1],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,1,3,1],[2,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,1,3,1],[1,3,2,1]],[[0,2,1,1],[2,0,2,2],[2,1,3,1],[1,2,3,1]],[[0,2,1,1],[2,0,2,2],[2,1,3,1],[1,2,2,2]],[[0,2,1,2],[2,0,2,2],[2,1,3,2],[0,2,2,1]],[[0,2,1,1],[2,0,2,3],[2,1,3,2],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,1,3,3],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,1,3,2],[0,2,3,1]],[[0,2,1,1],[2,0,2,2],[2,1,3,2],[0,2,2,2]],[[0,2,1,2],[2,0,2,2],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,0,2,3],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,0,2,2],[2,1,4,2],[1,2,1,1]],[[0,2,1,1],[2,0,2,2],[2,1,3,3],[1,2,1,1]],[[0,2,1,1],[2,0,2,2],[2,1,3,2],[1,2,1,2]],[[0,2,1,2],[2,0,2,2],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[3,0,2,2],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,2,3],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,2,2],[3,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,2,2],[2,1,4,2],[1,2,2,0]],[[0,2,1,1],[2,0,2,2],[2,1,3,3],[1,2,2,0]],[[0,2,1,1],[2,0,2,2],[2,1,3,2],[2,2,2,0]],[[0,2,1,1],[2,0,2,2],[2,1,3,2],[1,3,2,0]],[[0,2,1,1],[2,0,2,2],[2,1,3,2],[1,2,3,0]],[[0,2,1,2],[2,0,2,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[3,0,2,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,3],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[3,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,1,3],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[2,0,2,2],[2,2,1,2],[1,2,2,2]],[[0,2,1,1],[3,0,2,2],[2,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[3,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,2,1],[2,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,2,1],[1,3,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,2,1],[1,2,3,1]],[[0,2,1,1],[2,0,2,2],[2,2,2,1],[1,2,2,2]],[[0,2,1,2],[2,0,2,2],[2,2,2,2],[0,2,2,1]],[[0,2,1,1],[2,0,2,3],[2,2,2,2],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[2,0,2,2],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[3,0,2,2],[2,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,2,2],[3,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,2,2],[2,2,2,2],[2,2,2,0]],[[0,2,1,1],[2,0,2,2],[2,2,2,2],[1,3,2,0]],[[0,2,1,1],[2,0,2,2],[2,2,2,2],[1,2,3,0]],[[0,2,1,1],[2,0,2,2],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[2,0,2,2],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[2,0,2,2],[2,2,3,1],[0,2,2,2]],[[0,2,1,1],[3,0,2,2],[2,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,2,2],[3,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,2,2],[2,2,3,1],[2,2,1,1]],[[0,2,1,1],[2,0,2,2],[2,2,3,1],[1,3,1,1]],[[0,2,1,2],[2,0,2,2],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,0,2,3],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,0,2,2],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[2,0,2,2],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[2,0,2,2],[2,2,3,2],[0,2,1,2]],[[0,2,1,2],[2,0,2,2],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,0,2,3],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,0,2,2],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[2,0,2,2],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[2,0,2,2],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[2,0,2,2],[2,2,3,2],[0,2,3,0]],[[0,2,1,1],[3,0,2,2],[2,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,2,2],[3,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,2,2],[2,2,3,2],[2,2,0,1]],[[0,2,1,1],[2,0,2,2],[2,2,3,2],[1,3,0,1]],[[0,2,1,1],[3,0,2,2],[2,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,2,2],[3,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,2,2],[2,2,3,2],[2,2,1,0]],[[0,2,1,1],[2,0,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,4,2,1],[1,3,3,0],[0,0,2,1]],[[1,2,2,2],[1,3,2,1],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[1,3,2,1],[1,3,3,0],[0,0,2,1]],[[1,3,2,1],[1,3,2,1],[1,3,3,0],[0,0,2,1]],[[2,2,2,1],[1,3,2,1],[1,3,3,0],[0,0,2,1]],[[0,2,1,2],[2,0,2,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[3,0,2,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,0,2,3],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[3,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,1,3],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[2,0,2,2],[2,3,1,2],[0,2,2,2]],[[0,2,1,1],[3,0,2,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,0,2,2],[3,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,0,2,2],[2,4,1,2],[1,1,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,1,2],[2,1,2,1]],[[0,2,1,1],[3,0,2,2],[2,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[3,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[2,0,2,2],[2,3,2,1],[0,2,2,2]],[[0,2,1,1],[3,0,2,2],[2,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,0,2,2],[3,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,0,2,2],[2,4,2,1],[1,1,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,2,1],[2,1,2,1]],[[0,2,1,2],[2,0,2,2],[2,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,0,2,3],[2,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,0,2,2],[2,3,2,2],[0,1,2,2]],[[0,2,1,1],[3,0,2,2],[2,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,0,2,2],[3,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,0,2,2],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[2,0,2,2],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[2,0,2,2],[2,3,2,2],[0,2,3,0]],[[0,2,1,2],[2,0,2,2],[2,3,2,2],[1,0,2,1]],[[0,2,1,1],[2,0,2,3],[2,3,2,2],[1,0,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[2,0,2,2],[2,3,2,2],[1,0,2,2]],[[0,2,1,1],[3,0,2,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,0,2,2],[3,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,0,2,2],[2,4,2,2],[1,1,2,0]],[[0,2,1,1],[2,0,2,2],[2,3,2,2],[2,1,2,0]],[[0,2,1,1],[3,0,2,2],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,0,2,2],[3,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,0,2,2],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,1],[0,1,2,2]],[[0,2,1,1],[3,0,2,2],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,0,2,2],[3,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,0,2,2],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[2,0,2,2],[2,3,4,1],[0,2,1,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,1],[0,3,1,1]],[[0,2,1,1],[3,0,2,2],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,0,2,2],[3,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,0,2,2],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,1],[2,0,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,1],[1,0,2,2]],[[0,2,1,1],[3,0,2,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,0,2,2],[3,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,0,2,2],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,0,2,2],[2,3,4,1],[1,1,1,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,1],[2,1,1,1]],[[0,2,1,2],[2,0,2,2],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,0,2,3],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[0,0,2,2]],[[0,2,1,2],[2,0,2,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[3,0,2,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,0,2,3],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,0,2,2],[3,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,0,2,2],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[2,0,2,2],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[0,1,1,2]],[[0,2,1,2],[2,0,2,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[3,0,2,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,0,2,3],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,0,2,2],[3,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,0,2,2],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[2,0,2,2],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,0,2,2],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[0,1,3,0]],[[0,2,1,2],[2,0,2,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[3,0,2,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,0,2,3],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,0,2,2],[3,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,0,2,2],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[2,0,2,2],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[0,2,0,2]],[[0,2,1,2],[2,0,2,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[3,0,2,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,0,2,3],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,0,2,2],[3,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,0,2,2],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[2,0,2,2],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,0,2,2],[2,3,3,3],[0,2,1,0]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[0,3,1,0]],[[0,2,1,2],[2,0,2,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[3,0,2,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,0,2,3],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,0,2,2],[3,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,0,2,2],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[2,0,2,2],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[2,0,1,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[1,0,1,2]],[[0,2,1,2],[2,0,2,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[3,0,2,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,0,2,3],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,0,2,2],[3,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,0,2,2],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[2,0,2,2],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[2,0,2,2],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[2,0,2,0]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[1,0,3,0]],[[0,2,1,2],[2,0,2,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[3,0,2,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,0,2,3],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,0,2,2],[3,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,0,2,2],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[2,0,2,2],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[2,1,0,1]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[1,1,0,2]],[[0,2,1,2],[2,0,2,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[3,0,2,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,0,2,3],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,0,2,2],[3,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,0,2,2],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[2,0,2,2],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[2,0,2,2],[2,3,3,3],[1,1,1,0]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[2,1,1,0]],[[0,2,1,1],[3,0,2,2],[2,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,0,2,2],[3,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,0,2,2],[2,4,3,2],[1,2,0,0]],[[0,2,1,1],[2,0,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,4,2,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[1,3,2,1],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,2,2],[0,0,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,2,2],[0,0,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[1,3,2,1],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[1,3,2,1],[1,3,2,2],[0,0,1,1]],[[1,3,2,1],[1,3,2,1],[1,3,2,2],[0,0,1,1]],[[2,2,2,1],[1,3,2,1],[1,3,2,2],[0,0,1,1]],[[0,2,1,1],[2,0,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,1,1],[2,0,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,1,1],[2,0,3,0],[1,3,4,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,0],[1,3,3,1],[2,2,2,1]],[[0,2,1,1],[2,0,3,0],[1,3,3,1],[1,3,2,1]],[[0,2,1,1],[2,0,3,0],[1,3,3,1],[1,2,3,1]],[[0,2,1,1],[2,0,3,0],[1,3,3,1],[1,2,2,2]],[[0,2,1,1],[2,0,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,1,1],[2,0,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,1,1],[2,0,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,1,1],[2,0,3,0],[1,3,4,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,0],[1,3,3,2],[2,2,2,0]],[[0,2,1,1],[2,0,3,0],[1,3,3,2],[1,3,2,0]],[[0,2,1,1],[2,0,3,0],[1,3,3,2],[1,2,3,0]],[[0,2,1,1],[2,0,3,0],[3,1,3,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,1,4,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,1,3,2],[2,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,1,3,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,0],[2,1,3,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,0],[2,1,3,2],[1,2,2,2]],[[0,2,1,1],[2,0,3,0],[3,2,3,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,0,3,0],[2,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,0,3,0],[2,2,3,1],[1,2,2,2]],[[0,2,1,1],[2,0,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,1,1],[2,0,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,1,1],[2,0,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,1,1],[2,0,3,0],[3,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,0],[2,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,0],[2,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,0,3,0],[2,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,0,3,0],[2,2,3,2],[1,2,3,0]],[[0,2,1,1],[2,0,3,0],[3,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,0],[2,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,0,3,0],[3,3,2,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,0,3,0],[2,3,2,1],[1,2,2,2]],[[0,2,1,1],[2,0,3,0],[3,3,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,0],[2,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,0,3,0],[2,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,0,3,0],[2,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,0,3,0],[3,3,3,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,0],[2,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,0],[1,3,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,0],[1,2,3,1]],[[0,2,1,1],[2,0,3,0],[2,3,4,1],[0,2,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,1],[0,3,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,1],[0,2,3,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,1],[0,2,2,2]],[[0,2,1,1],[2,0,3,0],[3,3,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,1],[1,3,1,1]],[[0,2,1,1],[2,0,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,1,1],[2,0,3,0],[2,3,4,2],[0,2,2,0]],[[0,2,1,1],[2,0,3,0],[2,3,3,2],[0,3,2,0]],[[0,2,1,1],[2,0,3,0],[2,3,3,2],[0,2,3,0]],[[0,2,1,1],[2,0,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,1,1],[2,0,3,0],[3,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,0,3,0],[2,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,0,3,0],[3,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,3,0],[2,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,0,3,0],[2,3,3,2],[1,3,1,0]],[[0,2,1,1],[2,0,3,1],[1,1,3,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[1,1,3,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,1],[1,1,3,2],[1,2,2,2]],[[0,2,1,1],[2,0,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[2,0,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,1],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[2,0,4,1],[1,2,3,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,0,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,0,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,0,3,1],[1,2,3,1],[1,2,2,2]],[[0,2,1,1],[2,0,4,1],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[1,2,3,2],[1,2,1,2]],[[0,2,1,1],[2,0,4,1],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[2,0,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,0,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,0,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,1,1],[2,0,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,0,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,0,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,1,1],[2,0,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[2,0,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,1,1],[2,0,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,0,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,0,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,0,4,1],[1,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,0,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,1],[1,1,2,2]],[[0,2,1,1],[2,0,4,1],[1,3,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,1,1],[2,0,3,1],[1,3,4,2],[1,0,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,3],[1,0,2,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,2],[1,0,2,2]],[[0,2,1,1],[2,0,4,1],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,0,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,1,1],[2,0,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,2],[1,1,1,2]],[[0,2,1,1],[2,0,4,1],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,0,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,0,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[2,0,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[2,0,3,1],[1,3,3,2],[1,1,3,0]],[[0,2,1,1],[2,0,4,1],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,0,3,1],[1,3,3,2],[1,2,0,2]],[[0,2,1,1],[2,0,4,1],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[2,0,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,1,1],[2,0,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,0,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,2,1],[1,2,0,0]],[[0,2,1,1],[2,0,3,1],[2,0,3,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,0,3,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,1],[2,0,3,2],[1,2,2,2]],[[0,2,1,1],[3,0,3,1],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[3,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,1,2,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,1,2,2],[2,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,1,2,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,1],[2,1,2,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,1],[2,1,2,2],[1,2,2,2]],[[0,2,1,1],[3,0,3,1],[2,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,0,4,1],[2,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[3,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,1,4,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,1,3,1],[2,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,1,3,1],[1,3,2,1]],[[0,2,1,1],[2,0,3,1],[2,1,3,1],[1,2,3,1]],[[0,2,1,1],[2,0,3,1],[2,1,3,1],[1,2,2,2]],[[0,2,1,1],[2,0,3,1],[2,1,3,3],[0,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,1,3,2],[0,2,3,1]],[[0,2,1,1],[2,0,3,1],[2,1,3,2],[0,2,2,2]],[[0,2,1,1],[2,0,4,1],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,1,4,2],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,1,3,3],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,1,3,2],[1,2,1,2]],[[0,2,1,1],[3,0,3,1],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,4,1],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,1],[3,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,1,4,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,1,3,3],[1,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,1,3,2],[2,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,1,3,2],[1,3,2,0]],[[0,2,1,1],[2,0,3,1],[2,1,3,2],[1,2,3,0]],[[0,2,1,1],[3,0,3,1],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[3,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,1,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,1],[2,2,1,2],[1,2,2,2]],[[0,2,1,1],[3,0,3,1],[2,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[3,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,2,1],[2,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,2,1],[1,3,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,2,1],[1,2,3,1]],[[0,2,1,1],[2,0,3,1],[2,2,2,1],[1,2,2,2]],[[0,2,1,1],[2,0,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[2,0,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[3,0,3,1],[2,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,1],[3,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,2,2,2],[2,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,2,2,2],[1,3,2,0]],[[0,2,1,1],[2,0,3,1],[2,2,2,2],[1,2,3,0]],[[0,2,1,1],[2,0,4,1],[2,2,3,1],[0,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[2,0,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[2,0,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,1,1],[3,0,3,1],[2,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[3,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,2,3,1],[2,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,2,3,1],[1,3,1,1]],[[0,2,1,1],[2,0,4,1],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,2,3,2],[0,2,1,2]],[[0,2,1,1],[2,0,4,1],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[2,0,3,1],[2,2,3,2],[0,2,3,0]],[[0,2,1,1],[3,0,3,1],[2,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,3,1],[3,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,3,1],[2,2,3,2],[2,2,0,1]],[[0,2,1,1],[2,0,3,1],[2,2,3,2],[1,3,0,1]],[[0,2,1,1],[3,0,3,1],[2,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,3,1],[3,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,3,1],[2,2,3,2],[2,2,1,0]],[[0,2,1,1],[2,0,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,4,2,1],[1,3,2,1],[1,2,0,0]],[[1,2,2,2],[1,3,2,1],[1,3,2,1],[1,2,0,0]],[[1,2,3,1],[1,3,2,1],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[1,3,2,1],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[1,3,2,1],[1,3,2,1],[1,2,0,0]],[[0,2,1,1],[3,0,3,1],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,1],[3,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[2,0,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,1,1],[3,0,3,1],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,0,3,1],[3,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,0,3,1],[2,4,1,2],[1,1,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,1,2],[2,1,2,1]],[[0,2,1,1],[2,0,3,1],[3,3,2,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,2,0],[2,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,2,0],[1,3,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,2,0],[1,2,3,1]],[[0,2,1,1],[3,0,3,1],[2,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,0,3,1],[3,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[2,0,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,1,1],[3,0,3,1],[2,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,0,3,1],[3,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,0,3,1],[2,4,2,1],[1,1,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,2,1],[2,1,2,1]],[[0,2,1,1],[2,0,3,1],[3,3,2,1],[1,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,2,1],[2,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,2,1],[1,3,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,0,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,1,1],[3,0,3,1],[2,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,0,3,1],[3,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,1,1],[2,0,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[2,0,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,1,1],[3,0,3,1],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,0,3,1],[3,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,0,3,1],[2,4,2,2],[1,1,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,2,2],[2,1,2,0]],[[0,2,1,1],[2,0,3,1],[3,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,0],[2,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,0],[1,3,1,1]],[[0,2,1,1],[3,0,3,1],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,0,4,1],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,0,3,1],[3,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,0,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,1],[0,1,2,2]],[[0,2,1,1],[3,0,3,1],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,0,4,1],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,0,3,1],[3,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,1],[0,3,1,1]],[[0,2,1,1],[3,0,3,1],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,0,4,1],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,0,3,1],[3,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,0,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,1],[2,0,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,1],[1,0,2,2]],[[0,2,1,1],[3,0,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,0,4,1],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,0,3,1],[3,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,0,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,4,1],[1,1,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,1],[2,1,1,1]],[[0,2,1,1],[2,0,3,1],[3,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,1],[2,2,1,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,2,1],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,2,1],[1,1,0,1]],[[1,2,2,1],[1,4,2,1],[1,3,2,1],[1,1,0,1]],[[1,2,2,2],[1,3,2,1],[1,3,2,1],[1,1,0,1]],[[0,2,1,1],[2,0,4,1],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[0,0,2,2]],[[0,2,1,1],[3,0,3,1],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,0,4,1],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,0,3,1],[3,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,0,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[0,1,1,2]],[[0,2,1,1],[3,0,3,1],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,0,4,1],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,0,3,1],[3,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,0,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[0,1,3,0]],[[0,2,1,1],[3,0,3,1],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,0,4,1],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,0,3,1],[3,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,0,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[2,0,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[0,2,0,2]],[[0,2,1,1],[3,0,3,1],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,0,4,1],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,0,3,1],[3,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,0,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[2,0,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,3,1],[1,3,2,1],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[1,3,2,1],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[1,3,2,1],[1,3,2,1],[1,1,0,1]],[[0,2,1,1],[3,0,3,1],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,0,4,1],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,0,3,1],[3,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,0,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[2,0,1,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[1,0,1,2]],[[0,2,1,1],[3,0,3,1],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,0,4,1],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,0,3,1],[3,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,0,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[2,0,2,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[1,0,3,0]],[[0,2,1,1],[3,0,3,1],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,0,4,1],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,0,3,1],[3,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,0,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[2,0,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[2,1,0,1]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[1,1,0,2]],[[0,2,1,1],[3,0,3,1],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,0,4,1],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,0,3,1],[3,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,0,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[2,0,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,3],[1,1,1,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,2,1],[1,0,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,2],[1,3,2,1],[1,3,2,1],[1,0,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[1,3,2,1],[1,4,2,1],[1,0,1,1]],[[1,2,2,1],[1,4,2,1],[1,3,2,1],[1,0,1,1]],[[1,2,2,2],[1,3,2,1],[1,3,2,1],[1,0,1,1]],[[0,2,1,1],[3,0,3,1],[2,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,0,3,1],[3,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,0,3,1],[2,4,3,2],[1,2,0,0]],[[0,2,1,1],[2,0,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,3,1],[1,3,2,1],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[1,3,2,1],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[1,3,2,1],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[1,3,2,1],[1,3,2,1],[0,3,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,2,1],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[1,3,2,1],[1,3,2,1],[0,3,0,1]],[[1,2,2,1],[1,3,2,1],[1,4,2,1],[0,2,0,1]],[[1,2,2,1],[1,4,2,1],[1,3,2,1],[0,2,0,1]],[[0,2,1,2],[2,0,3,2],[0,1,3,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,3],[0,1,3,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[0,1,3,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[0,1,3,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,2],[0,1,3,2],[1,2,2,2]],[[0,2,1,2],[2,0,3,2],[0,2,2,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,3],[0,2,2,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[0,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[0,2,2,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,2],[0,2,2,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,2],[0,2,2,2],[1,2,2,2]],[[0,2,1,1],[2,0,3,2],[0,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[0,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,0,3,2],[0,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,0,3,2],[0,2,3,1],[1,2,2,2]],[[0,2,1,2],[2,0,3,2],[0,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,0,3,3],[0,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[0,2,4,2],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[0,2,3,3],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[0,2,3,2],[1,2,1,2]],[[0,2,1,2],[2,0,3,2],[0,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,3],[0,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[0,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[0,2,3,3],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[0,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,0,3,2],[0,2,3,2],[1,2,3,0]],[[0,2,1,2],[2,0,3,2],[0,3,2,2],[1,1,2,1]],[[0,2,1,1],[2,0,3,3],[0,3,2,2],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[0,3,2,3],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[0,3,2,2],[1,1,3,1]],[[0,2,1,1],[2,0,3,2],[0,3,2,2],[1,1,2,2]],[[0,2,1,1],[2,0,3,2],[0,3,4,1],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[0,3,3,1],[1,1,3,1]],[[0,2,1,1],[2,0,3,2],[0,3,3,1],[1,1,2,2]],[[0,2,1,2],[2,0,3,2],[0,3,3,2],[1,0,2,1]],[[0,2,1,1],[2,0,3,3],[0,3,3,2],[1,0,2,1]],[[0,2,1,1],[2,0,3,2],[0,3,4,2],[1,0,2,1]],[[0,2,1,1],[2,0,3,2],[0,3,3,3],[1,0,2,1]],[[0,2,1,1],[2,0,3,2],[0,3,3,2],[1,0,2,2]],[[0,2,1,2],[2,0,3,2],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,0,3,3],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,0,3,2],[0,3,4,2],[1,1,1,1]],[[0,2,1,1],[2,0,3,2],[0,3,3,3],[1,1,1,1]],[[0,2,1,1],[2,0,3,2],[0,3,3,2],[1,1,1,2]],[[0,2,1,2],[2,0,3,2],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,0,3,3],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,0,3,2],[0,3,4,2],[1,1,2,0]],[[0,2,1,1],[2,0,3,2],[0,3,3,3],[1,1,2,0]],[[0,2,1,1],[2,0,3,2],[0,3,3,2],[1,1,3,0]],[[0,2,1,2],[2,0,3,2],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,3,3],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[0,3,4,2],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[0,3,3,3],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[0,3,3,2],[1,2,0,2]],[[0,2,1,2],[2,0,3,2],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,3,3],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,0,3,2],[0,3,4,2],[1,2,1,0]],[[0,2,1,1],[2,0,3,2],[0,3,3,3],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[1,3,2,1],[0,2,0,1]],[[1,2,3,1],[1,3,2,1],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[1,3,2,1],[0,2,0,1]],[[0,2,1,2],[2,0,3,2],[1,1,3,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,3],[1,1,3,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,1,3,3],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,1,3,2],[0,2,3,1]],[[0,2,1,1],[2,0,3,2],[1,1,3,2],[0,2,2,2]],[[0,2,1,2],[2,0,3,2],[1,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,4,2],[1,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,3],[1,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,2,1,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,2,1,2],[2,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,2,1,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,2],[1,2,1,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,2],[1,2,1,2],[1,2,2,2]],[[0,2,1,2],[2,0,3,2],[1,2,2,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,3],[1,2,2,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,2,2,3],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,2,2,2],[0,2,3,1]],[[0,2,1,1],[2,0,3,2],[1,2,2,2],[0,2,2,2]],[[0,2,1,2],[2,0,3,2],[1,2,2,2],[1,2,1,1]],[[0,2,1,1],[2,0,4,2],[1,2,2,2],[1,2,1,1]],[[0,2,1,1],[2,0,3,3],[1,2,2,2],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[1,2,2,3],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[1,2,2,2],[1,2,1,2]],[[0,2,1,2],[2,0,3,2],[1,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,4,2],[1,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,3],[1,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[1,2,2,3],[1,2,2,0]],[[0,2,1,2],[2,0,3,2],[1,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,0,4,2],[1,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,3],[1,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,1,1],[2,0,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,1,1],[2,0,3,2],[1,2,3,0],[1,2,2,2]],[[0,2,1,1],[2,0,3,2],[1,2,4,1],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,2,3,1],[0,2,3,1]],[[0,2,1,1],[2,0,3,2],[1,2,3,1],[0,2,2,2]],[[0,2,1,2],[2,0,3,2],[1,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,4,2],[1,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,3,3],[1,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[1,2,4,1],[1,2,1,1]],[[0,2,1,2],[2,0,3,2],[1,2,3,1],[1,2,2,0]],[[0,2,1,1],[2,0,4,2],[1,2,3,1],[1,2,2,0]],[[0,2,1,1],[2,0,3,3],[1,2,3,1],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,1,1],[2,0,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,1,1],[2,0,3,2],[1,2,3,1],[1,2,3,0]],[[0,2,1,2],[2,0,3,2],[1,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,0,3,3],[1,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,0,3,2],[1,2,4,2],[0,2,1,1]],[[0,2,1,1],[2,0,3,2],[1,2,3,3],[0,2,1,1]],[[0,2,1,1],[2,0,3,2],[1,2,3,2],[0,2,1,2]],[[0,2,1,2],[2,0,3,2],[1,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,0,3,3],[1,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,0,3,2],[1,2,4,2],[0,2,2,0]],[[0,2,1,1],[2,0,3,2],[1,2,3,3],[0,2,2,0]],[[0,2,1,1],[2,0,3,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,3,2,1],[1,4,2,1],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,2,1],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[1,3,2,1],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,2,1],[0,1,2,0]],[[0,2,1,2],[2,0,3,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,0,4,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,3],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,4,0,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,0,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,0,2],[2,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,0,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,0,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,2],[1,3,0,2],[1,2,2,2]],[[0,2,1,2],[2,0,3,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,0,4,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,0,3,3],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,1,3],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,1,2],[1,1,3,1]],[[0,2,1,1],[2,0,3,2],[1,3,1,2],[1,1,2,2]],[[0,2,1,1],[2,0,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,1,1],[2,0,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,1,1],[2,0,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,1,1],[2,0,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,1,1],[2,0,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,1,2],[2,0,3,2],[1,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,0,3,3],[1,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,0,3,2],[1,3,2,2],[0,1,2,2]],[[0,2,1,2],[2,0,3,2],[1,3,2,2],[1,1,1,1]],[[0,2,1,1],[2,0,4,2],[1,3,2,2],[1,1,1,1]],[[0,2,1,1],[2,0,3,3],[1,3,2,2],[1,1,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,2,3],[1,1,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,2,2],[1,1,1,2]],[[0,2,1,2],[2,0,3,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,0,4,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,0,3,3],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,0,3,2],[1,3,2,3],[1,1,2,0]],[[0,2,1,2],[2,0,3,2],[1,3,2,2],[1,2,0,1]],[[0,2,1,1],[2,0,4,2],[1,3,2,2],[1,2,0,1]],[[0,2,1,1],[2,0,3,3],[1,3,2,2],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[1,3,2,3],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[1,3,2,2],[1,2,0,2]],[[0,2,1,2],[2,0,3,2],[1,3,2,2],[1,2,1,0]],[[0,2,1,1],[2,0,4,2],[1,3,2,2],[1,2,1,0]],[[0,2,1,1],[2,0,3,3],[1,3,2,2],[1,2,1,0]],[[0,2,1,1],[2,0,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,2,1],[0,1,1,1]],[[1,2,2,1],[1,4,2,1],[1,3,2,1],[0,1,1,1]],[[1,2,2,2],[1,3,2,1],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[1,3,2,1],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[1,3,2,1],[1,3,2,1],[0,1,1,1]],[[2,2,2,1],[1,3,2,1],[1,3,2,1],[0,1,1,1]],[[0,2,1,2],[2,0,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,0,4,2],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,0,3,3],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,0],[1,1,2,2]],[[0,2,1,2],[2,0,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,0,4,2],[1,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,0,3,3],[1,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,1],[0,1,2,2]],[[0,2,1,2],[2,0,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,0,4,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,0,3,3],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,0,3,2],[1,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,4,1],[1,1,1,1]],[[0,2,1,2],[2,0,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,1,1],[2,0,4,2],[1,3,3,1],[1,1,2,0]],[[0,2,1,1],[2,0,3,3],[1,3,3,1],[1,1,2,0]],[[0,2,1,1],[2,0,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,1,1],[2,0,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,1,1],[2,0,3,2],[1,3,3,1],[1,1,3,0]],[[0,2,1,2],[2,0,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,0,4,2],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,0,3,3],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,1],[1,3,0,1]],[[0,2,1,2],[2,0,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,0,4,2],[1,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,0,3,3],[1,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,0,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,1,1],[2,0,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,1,1],[2,0,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,1,1],[2,0,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,2,0],[1,2,0,1]],[[1,2,2,1],[1,4,2,1],[1,3,2,0],[1,2,0,1]],[[1,2,2,2],[1,3,2,1],[1,3,2,0],[1,2,0,1]],[[1,2,3,1],[1,3,2,1],[1,3,2,0],[1,2,0,1]],[[0,2,1,2],[2,0,3,2],[1,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,0,3,3],[1,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,2],[0,0,2,2]],[[0,2,1,2],[2,0,3,2],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,0,3,3],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,2],[0,1,1,2]],[[0,2,1,2],[2,0,3,2],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,0,3,3],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,0,3,2],[1,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,0,3,2],[1,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,0,3,2],[1,3,3,2],[0,1,3,0]],[[0,2,1,2],[2,0,3,2],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,0,3,3],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,0,3,2],[1,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,2],[0,2,0,2]],[[0,2,1,2],[2,0,3,2],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,0,3,3],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,0,3,2],[1,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,0,3,2],[1,3,3,3],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[1,3,2,1],[1,3,2,0],[1,2,0,1]],[[0,2,1,2],[2,0,3,2],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,0,3,3],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,4,2],[1,0,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,3],[1,0,1,1]],[[0,2,1,1],[2,0,3,2],[1,3,3,2],[1,0,1,2]],[[0,2,1,2],[2,0,3,2],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,0,3,3],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,0,3,2],[1,3,4,2],[1,0,2,0]],[[0,2,1,1],[2,0,3,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,1],[1,3,2,1],[1,4,2,0],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[1,3,2,0],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[1,3,2,0],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[1,3,2,1],[1,4,2,0],[1,0,2,1]],[[1,2,2,1],[1,4,2,1],[1,3,2,0],[1,0,2,1]],[[1,2,2,2],[1,3,2,1],[1,3,2,0],[1,0,2,1]],[[1,2,3,1],[1,3,2,1],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[1,3,2,1],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[1,3,2,1],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[1,3,2,1],[1,3,2,0],[0,3,1,1]],[[1,2,2,1],[1,3,2,1],[1,4,2,0],[0,2,1,1]],[[1,2,2,1],[1,4,2,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,2],[1,3,2,1],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[1,3,2,1],[1,4,2,0],[0,1,2,1]],[[1,2,2,1],[1,4,2,1],[1,3,2,0],[0,1,2,1]],[[1,2,2,2],[1,3,2,1],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[1,3,2,1],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[1,3,2,1],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[1,3,2,1],[1,3,2,0],[0,1,2,1]],[[0,2,1,2],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[3,0,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,4,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,3],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[3,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,1,1,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,1,1,2],[2,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,1,1,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,2],[2,1,1,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,2],[2,1,1,2],[1,2,2,2]],[[0,2,1,2],[2,0,3,2],[2,1,2,2],[1,2,1,1]],[[0,2,1,1],[2,0,4,2],[2,1,2,2],[1,2,1,1]],[[0,2,1,1],[2,0,3,3],[2,1,2,2],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[2,1,2,3],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[2,1,2,2],[1,2,1,2]],[[0,2,1,2],[2,0,3,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,4,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,3],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[2,1,2,3],[1,2,2,0]],[[0,2,1,2],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[3,0,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,0,4,2],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,3],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[3,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,1,4,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,1,3,0],[2,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,1,3,0],[1,3,2,1]],[[0,2,1,1],[2,0,3,2],[2,1,3,0],[1,2,3,1]],[[0,2,1,1],[2,0,3,2],[2,1,3,0],[1,2,2,2]],[[0,2,1,2],[2,0,3,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,4,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,3,3],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[2,1,4,1],[1,2,1,1]],[[0,2,1,2],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,1,1],[3,0,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,0,4,2],[2,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,0,3,3],[2,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[3,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[2,1,4,1],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[2,1,3,1],[2,2,2,0]],[[0,2,1,1],[2,0,3,2],[2,1,3,1],[1,3,2,0]],[[0,2,1,1],[2,0,3,2],[2,1,3,1],[1,2,3,0]],[[0,2,1,2],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[3,0,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,0,4,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,3],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[3,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,0,3],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,0,2],[2,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,0,2],[1,3,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,0,2],[1,2,3,1]],[[0,2,1,1],[2,0,3,2],[2,2,0,2],[1,2,2,2]],[[0,2,1,2],[2,0,3,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[2,0,4,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,3],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,1,3],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,1,2],[0,3,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,1,2],[0,2,3,1]],[[0,2,1,1],[2,0,3,2],[2,2,1,2],[0,2,2,2]],[[0,2,1,1],[3,0,3,2],[2,2,2,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[3,2,2,0],[1,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,2,0],[2,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,2,0],[1,3,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,2,0],[1,2,3,1]],[[0,2,1,1],[2,0,3,2],[2,2,2,0],[1,2,2,2]],[[0,2,1,1],[3,0,3,2],[2,2,2,1],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[3,2,2,1],[1,2,2,0]],[[0,2,1,1],[2,0,3,2],[2,2,2,1],[2,2,2,0]],[[0,2,1,1],[2,0,3,2],[2,2,2,1],[1,3,2,0]],[[0,2,1,1],[2,0,3,2],[2,2,2,1],[1,2,3,0]],[[0,2,1,2],[2,0,3,2],[2,2,2,2],[0,2,1,1]],[[0,2,1,1],[2,0,4,2],[2,2,2,2],[0,2,1,1]],[[0,2,1,1],[2,0,3,3],[2,2,2,2],[0,2,1,1]],[[0,2,1,1],[2,0,3,2],[2,2,2,3],[0,2,1,1]],[[0,2,1,1],[2,0,3,2],[2,2,2,2],[0,2,1,2]],[[0,2,1,2],[2,0,3,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[2,0,4,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[2,0,3,3],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[2,0,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,1],[1,3,2,1],[1,4,1,2],[1,2,0,0]],[[1,2,2,1],[1,4,2,1],[1,3,1,2],[1,2,0,0]],[[1,2,2,2],[1,3,2,1],[1,3,1,2],[1,2,0,0]],[[1,2,3,1],[1,3,2,1],[1,3,1,2],[1,2,0,0]],[[1,3,2,1],[1,3,2,1],[1,3,1,2],[1,2,0,0]],[[0,2,1,2],[2,0,3,2],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[2,0,4,2],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[2,0,3,3],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,1,1],[2,0,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,1,1],[2,0,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,1,1],[3,0,3,2],[2,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[3,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,0,3,2],[2,2,3,0],[2,2,1,1]],[[0,2,1,1],[2,0,3,2],[2,2,3,0],[1,3,1,1]],[[0,2,1,2],[2,0,3,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,0,4,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,0,3,3],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,0,3,2],[2,2,4,1],[0,2,1,1]],[[0,2,1,2],[2,0,3,2],[2,2,3,1],[0,2,2,0]],[[0,2,1,1],[2,0,4,2],[2,2,3,1],[0,2,2,0]],[[0,2,1,1],[2,0,3,3],[2,2,3,1],[0,2,2,0]],[[0,2,1,1],[2,0,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,1,1],[2,0,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,1,1],[2,0,3,2],[2,2,3,1],[0,2,3,0]],[[0,2,1,1],[3,0,3,2],[2,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[3,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[2,2,3,1],[2,2,0,1]],[[0,2,1,1],[2,0,3,2],[2,2,3,1],[1,3,0,1]],[[0,2,1,1],[3,0,3,2],[2,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,0,3,2],[3,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,0,3,2],[2,2,3,1],[2,2,1,0]],[[0,2,1,1],[2,0,3,2],[2,2,3,1],[1,3,1,0]],[[2,2,2,1],[1,3,2,1],[1,3,1,2],[1,2,0,0]],[[1,2,2,1],[1,3,2,1],[1,4,1,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[1,3,1,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[1,3,1,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,1,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,1],[1,3,1,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,1],[1,3,1,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,1],[1,3,1,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,1],[1,3,1,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,1],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[1,3,2,1],[1,4,1,2],[1,0,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,1],[1,3,1,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,1,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,1,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[1,3,2,1],[1,4,1,2],[1,0,1,1]],[[1,2,2,1],[1,4,2,1],[1,3,1,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,1],[1,3,1,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,1],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,1],[1,3,1,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,1],[1,3,1,2],[1,0,1,1]],[[0,2,1,2],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[3,0,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,0,4,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,3],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[3,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,4,0,2],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,0,3],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,0,2],[0,3,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,0,2],[0,2,3,1]],[[0,2,1,1],[2,0,3,2],[2,3,0,2],[0,2,2,2]],[[0,2,1,1],[3,0,3,2],[2,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[3,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[2,4,0,2],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,0,2],[2,1,2,1]],[[0,2,1,2],[2,0,3,2],[2,3,1,2],[0,1,2,1]],[[0,2,1,1],[2,0,4,2],[2,3,1,2],[0,1,2,1]],[[0,2,1,1],[2,0,3,3],[2,3,1,2],[0,1,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,1,3],[0,1,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,1,2],[0,1,3,1]],[[0,2,1,1],[2,0,3,2],[2,3,1,2],[0,1,2,2]],[[0,2,1,2],[2,0,3,2],[2,3,1,2],[1,0,2,1]],[[0,2,1,1],[2,0,4,2],[2,3,1,2],[1,0,2,1]],[[0,2,1,1],[2,0,3,3],[2,3,1,2],[1,0,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,1,2],[1,0,3,1]],[[0,2,1,1],[2,0,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[1,3,2,1],[1,3,1,2],[0,3,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,1,2],[0,2,1,0]],[[0,2,1,1],[3,0,3,2],[2,3,2,0],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[3,3,2,0],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,1,1],[3,0,3,2],[2,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[3,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[2,4,2,0],[1,1,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,0],[2,1,2,1]],[[0,2,1,1],[3,0,3,2],[2,3,2,1],[0,2,2,0]],[[0,2,1,1],[2,0,3,2],[3,3,2,1],[0,2,2,0]],[[0,2,1,1],[2,0,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,1,1],[2,0,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,1,1],[2,0,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,1,1],[3,0,3,2],[2,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,0,3,2],[3,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,0,3,2],[2,4,2,1],[1,1,2,0]],[[0,2,1,1],[2,0,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[1,3,1,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[1,3,1,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[1,3,2,1],[1,3,1,2],[0,3,0,1]],[[1,2,2,1],[1,3,2,1],[1,4,1,2],[0,2,0,1]],[[0,2,1,2],[2,0,3,2],[2,3,2,2],[0,0,2,1]],[[0,2,1,1],[2,0,4,2],[2,3,2,2],[0,0,2,1]],[[0,2,1,1],[2,0,3,3],[2,3,2,2],[0,0,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,3],[0,0,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,2],[0,0,2,2]],[[0,2,1,2],[2,0,3,2],[2,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,0,4,2],[2,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,0,3,3],[2,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,3],[0,1,1,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,2],[0,1,1,2]],[[0,2,1,2],[2,0,3,2],[2,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,0,4,2],[2,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,0,3,3],[2,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,0,3,2],[2,3,2,3],[0,1,2,0]],[[0,2,1,2],[2,0,3,2],[2,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,0,4,2],[2,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,0,3,3],[2,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,3],[0,2,0,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,2],[0,2,0,2]],[[0,2,1,2],[2,0,3,2],[2,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,0,4,2],[2,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,0,3,3],[2,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,0,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[1,3,1,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,1],[1,3,1,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,1],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[1,3,1,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[1,3,1,2],[0,2,0,1]],[[0,2,1,2],[2,0,3,2],[2,3,2,2],[1,0,1,1]],[[0,2,1,1],[2,0,4,2],[2,3,2,2],[1,0,1,1]],[[0,2,1,1],[2,0,3,3],[2,3,2,2],[1,0,1,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,3],[1,0,1,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,2],[1,0,1,2]],[[0,2,1,2],[2,0,3,2],[2,3,2,2],[1,0,2,0]],[[0,2,1,1],[2,0,4,2],[2,3,2,2],[1,0,2,0]],[[0,2,1,1],[2,0,3,3],[2,3,2,2],[1,0,2,0]],[[0,2,1,1],[2,0,3,2],[2,3,2,3],[1,0,2,0]],[[0,2,1,2],[2,0,3,2],[2,3,2,2],[1,1,0,1]],[[0,2,1,1],[2,0,4,2],[2,3,2,2],[1,1,0,1]],[[0,2,1,1],[2,0,3,3],[2,3,2,2],[1,1,0,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,3],[1,1,0,1]],[[0,2,1,1],[2,0,3,2],[2,3,2,2],[1,1,0,2]],[[0,2,1,2],[2,0,3,2],[2,3,2,2],[1,1,1,0]],[[0,2,1,1],[2,0,4,2],[2,3,2,2],[1,1,1,0]],[[0,2,1,1],[2,0,3,3],[2,3,2,2],[1,1,1,0]],[[0,2,1,1],[2,0,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,1,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[1,3,1,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,1,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[1,3,2,1],[1,4,1,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,1],[1,3,1,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,1],[1,3,1,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,1],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,1],[1,3,1,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,1],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[1,3,2,1],[1,4,1,1],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,1,1],[1,1,2,0]],[[1,2,2,2],[1,3,2,1],[1,3,1,1],[1,1,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,1,1],[1,1,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,1,1],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,1,1],[1,1,2,0]],[[0,2,1,2],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[3,0,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,0,4,2],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,0,3,3],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,0,3,2],[3,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,0,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,0],[0,1,2,2]],[[0,2,1,2],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[3,0,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,0,4,2],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,0,3,3],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,0,3,2],[3,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,0,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,1,1],[2,0,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,0],[0,3,1,1]],[[0,2,1,2],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[3,0,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,0,4,2],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,0,3,3],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,0,3,2],[3,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,0,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,0],[2,0,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,0],[1,0,2,2]],[[0,2,1,2],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[3,0,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,0,4,2],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,0,3,3],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,0,3,2],[3,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,0,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,1,1],[2,0,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,0],[2,1,1,1]],[[0,2,1,1],[3,0,3,2],[2,3,3,0],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[3,3,3,0],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[2,4,3,0],[1,2,0,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[1,3,2,1],[1,3,1,1],[0,2,3,0]],[[1,2,2,1],[1,3,2,1],[1,3,1,1],[0,3,2,0]],[[1,2,2,1],[1,3,2,1],[1,4,1,1],[0,2,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,1,1],[0,2,2,0]],[[0,2,1,2],[2,0,3,2],[2,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,0,4,2],[2,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,0,3,3],[2,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,0,3,2],[2,3,4,1],[0,0,2,1]],[[0,2,1,2],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[3,0,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,0,4,2],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,0,3,3],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,0,3,2],[3,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,0,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,1,1],[2,0,3,2],[2,3,4,1],[0,1,1,1]],[[0,2,1,2],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[3,0,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,0,4,2],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,0,3,3],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,0,3,2],[3,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,0,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,1,1],[2,0,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,1,1],[2,0,3,2],[2,3,3,1],[0,1,3,0]],[[0,2,1,2],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[3,0,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,0,4,2],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,0,3,3],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,0,3,2],[3,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,0,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,1,1],[2,0,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,1],[0,3,0,1]],[[0,2,1,2],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[3,0,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,0,4,2],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,0,3,3],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,0,3,2],[3,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,0,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,1,1],[2,0,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,1,1],[2,0,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,2],[1,3,2,1],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,1,1],[0,2,2,0]],[[0,2,1,2],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[3,0,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,0,4,2],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,0,3,3],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,0,3,2],[3,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,0,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,1,1],[2,0,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,1],[2,0,1,1]],[[0,2,1,2],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[3,0,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,0,4,2],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,0,3,3],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,0,3,2],[3,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,0,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,1,1],[2,0,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,1,1],[2,0,3,2],[2,3,3,1],[2,0,2,0]],[[0,2,1,1],[2,0,3,2],[2,3,3,1],[1,0,3,0]],[[0,2,1,2],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[3,0,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,0,4,2],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,0,3,3],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,0,3,2],[3,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,0,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,1,1],[2,0,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,1],[2,1,0,1]],[[0,2,1,2],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[3,0,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,0,4,2],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,0,3,3],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,0,3,2],[3,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,0,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,1,1],[2,0,3,2],[2,3,4,1],[1,1,1,0]],[[0,2,1,1],[2,0,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[1,3,2,1],[1,4,1,0],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[1,3,1,0],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[1,3,1,0],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[1,3,1,0],[1,1,2,1]],[[0,2,1,1],[3,0,3,2],[2,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,0,3,2],[3,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,0,3,2],[2,4,3,1],[1,2,0,0]],[[0,2,1,1],[2,0,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[1,3,2,1],[1,3,1,0],[0,2,2,2]],[[1,2,2,1],[1,3,2,1],[1,3,1,0],[0,2,3,1]],[[1,2,2,1],[1,3,2,1],[1,3,1,0],[0,3,2,1]],[[1,2,2,1],[1,3,2,1],[1,4,1,0],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[1,3,1,0],[0,2,2,1]],[[1,2,2,2],[1,3,2,1],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[1,3,2,1],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[1,3,2,1],[1,3,1,0],[0,2,2,1]],[[2,2,2,1],[1,3,2,1],[1,3,1,0],[0,2,2,1]],[[0,2,1,2],[2,0,3,2],[2,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,0,4,2],[2,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,0,3,3],[2,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,3,2,1],[1,4,0,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,0,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,1],[1,3,0,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,0,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,0,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[1,3,2,1],[1,4,0,2],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[1,3,0,2],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[1,3,0,2],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[1,3,0,2],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[1,3,0,2],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[1,3,2,1],[1,4,0,2],[1,0,2,1]],[[1,2,2,1],[1,4,2,1],[1,3,0,2],[1,0,2,1]],[[1,2,2,2],[1,3,2,1],[1,3,0,2],[1,0,2,1]],[[1,2,3,1],[1,3,2,1],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[1,3,2,1],[1,3,0,2],[1,0,2,1]],[[2,2,2,1],[1,3,2,1],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[1,3,2,1],[1,3,0,2],[0,2,3,0]],[[1,2,2,1],[1,3,2,1],[1,3,0,2],[0,3,2,0]],[[1,2,2,1],[1,3,2,1],[1,4,0,2],[0,2,2,0]],[[1,2,2,1],[1,4,2,1],[1,3,0,2],[0,2,2,0]],[[1,2,2,2],[1,3,2,1],[1,3,0,2],[0,2,2,0]],[[1,2,3,1],[1,3,2,1],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[1,3,2,1],[1,3,0,2],[0,2,2,0]],[[2,2,2,1],[1,3,2,1],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[1,3,2,1],[1,3,0,2],[0,3,1,1]],[[1,2,2,1],[1,3,2,1],[1,4,0,2],[0,2,1,1]],[[1,2,2,1],[1,4,2,1],[1,3,0,2],[0,2,1,1]],[[0,2,1,2],[2,0,3,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[2,0,4,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[2,0,3,3],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[2,0,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,2],[1,3,2,1],[1,3,0,2],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[1,3,0,2],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[1,3,2,1],[1,4,0,2],[0,1,2,1]],[[1,2,2,1],[1,4,2,1],[1,3,0,2],[0,1,2,1]],[[1,2,2,2],[1,3,2,1],[1,3,0,2],[0,1,2,1]],[[1,2,3,1],[1,3,2,1],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[1,3,2,1],[1,3,0,2],[0,1,2,1]],[[2,2,2,1],[1,3,2,1],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[1,3,2,1],[1,4,0,1],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[1,3,0,1],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[1,3,0,1],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[1,3,0,1],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[1,3,0,1],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[1,3,2,1],[1,3,0,1],[0,2,2,2]],[[1,2,2,1],[1,3,2,1],[1,3,0,1],[0,2,3,1]],[[1,2,2,1],[1,3,2,1],[1,3,0,1],[0,3,2,1]],[[1,2,2,1],[1,3,2,1],[1,4,0,1],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[1,3,0,1],[0,2,2,1]],[[1,2,2,2],[1,3,2,1],[1,3,0,1],[0,2,2,1]],[[1,2,3,1],[1,3,2,1],[1,3,0,1],[0,2,2,1]],[[1,3,2,1],[1,3,2,1],[1,3,0,1],[0,2,2,1]],[[2,2,2,1],[1,3,2,1],[1,3,0,1],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[1,3,2,1],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[1,3,2,1],[1,2,3,2],[1,0,0,1]],[[1,3,2,1],[1,3,2,1],[1,2,3,2],[1,0,0,1]],[[2,2,2,1],[1,3,2,1],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[1,4,2,1],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[1,3,2,1],[1,2,3,2],[0,1,0,1]],[[1,2,3,1],[1,3,2,1],[1,2,3,2],[0,1,0,1]],[[1,3,2,1],[1,3,2,1],[1,2,3,2],[0,1,0,1]],[[2,2,2,1],[1,3,2,1],[1,2,3,2],[0,1,0,1]],[[0,2,1,1],[2,1,0,2],[3,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,0,2],[2,3,1,3],[1,2,2,1]],[[0,2,1,1],[2,1,0,2],[2,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,1,0,2],[2,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,1,0,2],[2,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,1,0,2],[2,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,1,0,2],[3,3,2,1],[1,2,2,1]],[[0,2,1,1],[2,1,0,2],[2,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,1,0,2],[2,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,1,0,2],[2,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,1,0,2],[2,3,2,1],[1,2,2,2]],[[0,2,1,1],[2,1,0,2],[3,3,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,0,2],[2,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,1,0,2],[2,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,1,0,2],[2,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,1,0,2],[3,3,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,0,2],[2,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,1,0,2],[2,3,3,1],[1,3,1,1]],[[0,2,1,1],[2,1,0,2],[3,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,1,0,2],[2,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,1,0,2],[2,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,1,0,2],[3,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,1,0,2],[2,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,1,0,2],[2,3,3,2],[1,3,1,0]],[[0,2,1,1],[2,1,1,0],[3,3,3,1],[1,2,2,1]],[[0,2,1,1],[2,1,1,0],[2,3,3,1],[2,2,2,1]],[[0,2,1,1],[2,1,1,0],[2,3,3,1],[1,3,2,1]],[[0,2,1,1],[2,1,1,0],[2,3,3,1],[1,2,3,1]],[[0,2,1,1],[2,1,1,0],[2,3,3,1],[1,2,2,2]],[[0,2,1,1],[2,1,1,0],[3,3,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,1,0],[2,3,3,2],[2,2,2,0]],[[0,2,1,1],[2,1,1,0],[2,3,3,2],[1,3,2,0]],[[0,2,1,1],[2,1,1,0],[2,3,3,2],[1,2,3,0]],[[0,2,1,1],[2,1,1,2],[0,2,3,3],[1,2,2,1]],[[0,2,1,1],[2,1,1,2],[0,2,3,2],[1,3,2,1]],[[0,2,1,1],[2,1,1,2],[0,2,3,2],[1,2,3,1]],[[0,2,1,1],[2,1,1,2],[0,2,3,2],[1,2,2,2]],[[0,2,1,1],[2,1,1,2],[0,3,3,3],[1,1,2,1]],[[0,2,1,1],[2,1,1,2],[0,3,3,2],[1,1,3,1]],[[0,2,1,1],[2,1,1,2],[0,3,3,2],[1,1,2,2]],[[0,2,1,1],[2,1,1,2],[1,2,3,3],[0,2,2,1]],[[0,2,1,1],[2,1,1,2],[1,2,3,2],[0,2,3,1]],[[0,2,1,1],[2,1,1,2],[1,2,3,2],[0,2,2,2]],[[0,2,1,1],[2,1,1,2],[1,3,3,3],[0,1,2,1]],[[0,2,1,1],[2,1,1,2],[1,3,3,2],[0,1,3,1]],[[0,2,1,1],[2,1,1,2],[1,3,3,2],[0,1,2,2]],[[1,2,2,1],[1,4,2,1],[1,2,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[1,2,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,2,1],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,2,1],[1,2,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,2,1],[1,2,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,2,1],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[1,4,2,1],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,2,1],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,2,1],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,2,1],[1,2,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,2,1],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[1,4,2,1],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[1,3,2,1],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,2,1],[1,2,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,2,1],[1,2,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,2,1],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[1,4,2,1],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[1,2,3,1],[0,2,1,0]],[[0,2,1,1],[2,1,2,0],[3,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,2,0],[2,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,1,2,0],[2,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,1,2,0],[2,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,1,2,0],[2,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,1,2,0],[3,3,2,1],[1,2,2,1]],[[0,2,1,1],[2,1,2,0],[2,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,1,2,0],[2,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,1,2,0],[2,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,1,2,0],[2,3,2,1],[1,2,2,2]],[[0,2,1,1],[2,1,2,0],[3,3,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,2,0],[2,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,1,2,0],[2,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,1,2,0],[2,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,1,2,0],[3,3,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,2,0],[2,3,3,0],[2,2,2,1]],[[0,2,1,1],[2,1,2,0],[2,3,3,0],[1,3,2,1]],[[0,2,1,1],[2,1,2,0],[2,3,3,0],[1,2,3,1]],[[0,2,1,1],[2,1,2,0],[3,3,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,2,0],[2,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,1,2,0],[2,3,3,1],[1,3,1,1]],[[0,2,1,1],[2,1,2,0],[3,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,1,2,0],[2,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,1,2,0],[2,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,1,2,0],[3,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,1,2,0],[2,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,1,2,0],[2,3,3,2],[1,3,1,0]],[[1,2,3,1],[1,3,2,1],[1,2,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[1,2,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,2,1],[1,2,3,1],[0,2,0,1]],[[0,2,1,1],[2,1,2,1],[3,3,2,0],[1,2,2,1]],[[0,2,1,1],[2,1,2,1],[2,3,2,0],[2,2,2,1]],[[0,2,1,1],[2,1,2,1],[2,3,2,0],[1,3,2,1]],[[0,2,1,1],[2,1,2,1],[2,3,2,0],[1,2,3,1]],[[0,2,1,1],[2,1,2,1],[3,3,2,1],[1,2,2,0]],[[0,2,1,1],[2,1,2,1],[2,3,2,1],[2,2,2,0]],[[0,2,1,1],[2,1,2,1],[2,3,2,1],[1,3,2,0]],[[1,2,3,1],[1,3,2,1],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[1,2,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[1,2,3,1],[0,2,0,1]],[[0,2,1,1],[2,1,2,1],[3,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,1,2,1],[2,3,3,0],[2,2,1,1]],[[0,2,1,1],[2,1,2,1],[2,3,3,0],[1,3,1,1]],[[0,2,1,1],[2,1,2,1],[3,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,1,2,1],[2,3,3,1],[2,2,1,0]],[[0,2,1,1],[2,1,2,1],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,4,2,1],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[1,2,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,2,1],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,2,1],[1,2,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,2,1],[1,2,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,2,1],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,2,1],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[1,3,2,1],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[1,3,2,1],[1,2,3,1],[0,0,2,1]],[[1,3,2,1],[1,3,2,1],[1,2,3,1],[0,0,2,1]],[[0,2,1,2],[2,1,2,2],[0,1,3,2],[1,2,2,1]],[[0,2,1,1],[2,1,2,3],[0,1,3,2],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,1,3,3],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,1,3,2],[1,2,3,1]],[[0,2,1,1],[2,1,2,2],[0,1,3,2],[1,2,2,2]],[[0,2,1,2],[2,1,2,2],[0,2,2,2],[1,2,2,1]],[[0,2,1,1],[2,1,2,3],[0,2,2,2],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,2,2,2],[2,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,2,2,2],[1,3,2,1]],[[0,2,1,1],[2,1,2,2],[0,2,2,2],[1,2,3,1]],[[0,2,1,1],[2,1,2,2],[0,2,2,2],[1,2,2,2]],[[0,2,1,1],[2,1,2,2],[0,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,1,2,2],[0,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,1,2,2],[0,2,3,1],[1,2,2,2]],[[0,2,1,2],[2,1,2,2],[0,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,1,2,3],[0,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,1,2,2],[0,2,4,2],[1,2,1,1]],[[0,2,1,1],[2,1,2,2],[0,2,3,3],[1,2,1,1]],[[0,2,1,1],[2,1,2,2],[0,2,3,2],[1,2,1,2]],[[0,2,1,2],[2,1,2,2],[0,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,2,3],[0,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,2,2],[0,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,1,2,2],[0,2,3,3],[1,2,2,0]],[[0,2,1,1],[2,1,2,2],[0,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,1,2,2],[0,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,1,2,2],[0,2,3,2],[1,2,3,0]],[[0,2,1,2],[2,1,2,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,2,3],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,4,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,1,3],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,1,2,2],[0,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,1,2,2],[0,4,2,1],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,1,2,2],[0,3,2,1],[1,2,2,2]],[[0,2,1,2],[2,1,2,2],[0,3,2,2],[1,1,2,1]],[[0,2,1,1],[2,1,2,3],[0,3,2,2],[1,1,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,2,3],[1,1,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,2,2],[1,1,3,1]],[[0,2,1,1],[2,1,2,2],[0,3,2,2],[1,1,2,2]],[[0,2,1,1],[2,1,2,2],[0,4,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,2,2],[0,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,1,2,2],[0,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,1,2,2],[0,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,1,2,2],[0,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,4,1],[1,1,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,1],[1,1,3,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,1],[1,1,2,2]],[[0,2,1,1],[2,1,2,2],[0,4,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,2,2],[0,3,4,1],[1,2,1,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,1],[1,3,1,1]],[[0,2,1,2],[2,1,2,2],[0,3,3,2],[1,0,2,1]],[[0,2,1,1],[2,1,2,3],[0,3,3,2],[1,0,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,4,2],[1,0,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,3],[1,0,2,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,2],[1,0,2,2]],[[0,2,1,2],[2,1,2,2],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,1,2,3],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,1,2,2],[0,4,3,2],[1,1,1,1]],[[0,2,1,1],[2,1,2,2],[0,3,4,2],[1,1,1,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,3],[1,1,1,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,2],[1,1,1,2]],[[0,2,1,2],[2,1,2,2],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,1,2,3],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,1,2,2],[0,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,1,2,2],[0,3,4,2],[1,1,2,0]],[[0,2,1,1],[2,1,2,2],[0,3,3,3],[1,1,2,0]],[[0,2,1,1],[2,1,2,2],[0,3,3,2],[1,1,3,0]],[[0,2,1,2],[2,1,2,2],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,1,2,3],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,1,2,2],[0,4,3,2],[1,2,0,1]],[[0,2,1,1],[2,1,2,2],[0,3,4,2],[1,2,0,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,3],[1,2,0,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,1,2,2],[0,3,3,2],[1,2,0,2]],[[0,2,1,2],[2,1,2,2],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,1,2,3],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,1,2,2],[0,4,3,2],[1,2,1,0]],[[0,2,1,1],[2,1,2,2],[0,3,4,2],[1,2,1,0]],[[0,2,1,1],[2,1,2,2],[0,3,3,3],[1,2,1,0]],[[0,2,1,1],[2,1,2,2],[0,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,1,2,2],[0,3,3,2],[1,3,1,0]],[[2,2,2,1],[1,3,2,1],[1,2,3,1],[0,0,2,1]],[[0,2,1,2],[2,1,2,2],[1,1,3,2],[0,2,2,1]],[[0,2,1,1],[2,1,2,3],[1,1,3,2],[0,2,2,1]],[[0,2,1,1],[2,1,2,2],[1,1,3,3],[0,2,2,1]],[[0,2,1,1],[2,1,2,2],[1,1,3,2],[0,2,3,1]],[[0,2,1,1],[2,1,2,2],[1,1,3,2],[0,2,2,2]],[[0,2,1,2],[2,1,2,2],[1,2,2,2],[0,2,2,1]],[[0,2,1,1],[2,1,2,3],[1,2,2,2],[0,2,2,1]],[[0,2,1,1],[2,1,2,2],[1,2,2,3],[0,2,2,1]],[[0,2,1,1],[2,1,2,2],[1,2,2,2],[0,3,2,1]],[[0,2,1,1],[2,1,2,2],[1,2,2,2],[0,2,3,1]],[[0,2,1,1],[2,1,2,2],[1,2,2,2],[0,2,2,2]],[[0,2,1,1],[2,1,2,2],[1,2,4,1],[0,2,2,1]],[[0,2,1,1],[2,1,2,2],[1,2,3,1],[0,3,2,1]],[[0,2,1,1],[2,1,2,2],[1,2,3,1],[0,2,3,1]],[[0,2,1,1],[2,1,2,2],[1,2,3,1],[0,2,2,2]],[[0,2,1,2],[2,1,2,2],[1,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,1,2,3],[1,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,1,2,2],[1,2,4,2],[0,2,1,1]],[[0,2,1,1],[2,1,2,2],[1,2,3,3],[0,2,1,1]],[[0,2,1,1],[2,1,2,2],[1,2,3,2],[0,2,1,2]],[[0,2,1,2],[2,1,2,2],[1,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,1,2,3],[1,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,1,2,2],[1,2,4,2],[0,2,2,0]],[[0,2,1,1],[2,1,2,2],[1,2,3,3],[0,2,2,0]],[[0,2,1,1],[2,1,2,2],[1,2,3,2],[0,3,2,0]],[[0,2,1,1],[2,1,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,4,2,1],[1,2,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[1,2,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[1,2,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[1,2,3,0],[1,0,2,1]],[[0,2,1,2],[2,1,2,2],[1,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,1,2,3],[1,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,1,2,2],[1,4,1,2],[0,2,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,1,3],[0,2,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,1,2],[0,3,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,1,2],[0,2,3,1]],[[0,2,1,1],[2,1,2,2],[1,3,1,2],[0,2,2,2]],[[0,2,1,1],[2,1,2,2],[1,4,2,1],[0,2,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,2,1],[0,3,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,2,1],[0,2,3,1]],[[0,2,1,1],[2,1,2,2],[1,3,2,1],[0,2,2,2]],[[0,2,1,2],[2,1,2,2],[1,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,1,2,3],[1,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,1,2,2],[1,3,2,2],[0,1,2,2]],[[0,2,1,1],[2,1,2,2],[1,4,2,2],[0,2,2,0]],[[0,2,1,1],[2,1,2,2],[1,3,2,2],[0,3,2,0]],[[0,2,1,1],[2,1,2,2],[1,3,2,2],[0,2,3,0]],[[0,2,1,2],[2,1,2,2],[1,3,2,2],[1,0,2,1]],[[0,2,1,1],[2,1,2,3],[1,3,2,2],[1,0,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,2,2],[1,0,3,1]],[[0,2,1,1],[2,1,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,2],[1,3,2,1],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,2,1],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,2,1],[1,2,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,2,1],[1,2,3,0],[1,0,2,1]],[[0,2,1,1],[2,1,2,2],[1,4,3,1],[0,1,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,1],[0,1,2,2]],[[0,2,1,1],[2,1,2,2],[1,4,3,1],[0,2,1,1]],[[0,2,1,1],[2,1,2,2],[1,3,4,1],[0,2,1,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,1],[0,3,1,1]],[[0,2,1,1],[2,1,2,2],[1,4,3,1],[1,0,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,4,1],[1,0,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,1],[1,0,3,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,1],[1,4,2,1],[1,2,3,0],[0,2,1,1]],[[0,2,1,2],[2,1,2,2],[1,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,1,2,3],[1,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,2],[0,0,2,2]],[[0,2,1,2],[2,1,2,2],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,1,2,3],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,1,2,2],[1,4,3,2],[0,1,1,1]],[[0,2,1,1],[2,1,2,2],[1,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,2],[0,1,1,2]],[[0,2,1,2],[2,1,2,2],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,1,2,3],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,1,2,2],[1,4,3,2],[0,1,2,0]],[[0,2,1,1],[2,1,2,2],[1,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,1,2,2],[1,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,1,2,2],[1,3,3,2],[0,1,3,0]],[[0,2,1,2],[2,1,2,2],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,1,2,3],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,1,2,2],[1,4,3,2],[0,2,0,1]],[[0,2,1,1],[2,1,2,2],[1,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,2],[0,3,0,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,2],[0,2,0,2]],[[0,2,1,2],[2,1,2,2],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,1,2,3],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,1,2,2],[1,4,3,2],[0,2,1,0]],[[0,2,1,1],[2,1,2,2],[1,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,1,2,2],[1,3,3,3],[0,2,1,0]],[[0,2,1,1],[2,1,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,2],[1,3,2,1],[1,2,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[1,2,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,2,1],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,2,1],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,2,1],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,2,1],[1,2,3,0],[0,1,2,1]],[[0,2,1,2],[2,1,2,2],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,1,2,3],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,1,2,2],[1,4,3,2],[1,0,1,1]],[[0,2,1,1],[2,1,2,2],[1,3,4,2],[1,0,1,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,3],[1,0,1,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,2],[1,0,1,2]],[[0,2,1,2],[2,1,2,2],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,1,2,3],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,1,2,2],[1,4,3,2],[1,0,2,0]],[[0,2,1,1],[2,1,2,2],[1,3,4,2],[1,0,2,0]],[[0,2,1,1],[2,1,2,2],[1,3,3,3],[1,0,2,0]],[[0,2,1,1],[2,1,2,2],[1,3,3,2],[1,0,3,0]],[[0,2,1,2],[2,1,2,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,2,3],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,2,2],[1,4,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,2,2],[1,3,4,2],[1,1,0,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,3],[1,1,0,1]],[[0,2,1,1],[2,1,2,2],[1,3,3,2],[1,1,0,2]],[[0,2,1,2],[2,1,2,2],[1,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,1,2,3],[1,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,1,2,2],[1,4,3,2],[1,1,1,0]],[[0,2,1,1],[2,1,2,2],[1,3,4,2],[1,1,1,0]],[[0,2,1,1],[2,1,2,2],[1,3,3,3],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[1,2,3,0],[0,1,2,1]],[[1,2,2,1],[1,4,2,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[1,2,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,1],[1,2,2,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,1],[1,2,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,1],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,1],[1,2,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,1],[1,2,2,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,1],[1,2,2,2],[1,1,0,1]],[[0,2,1,2],[2,1,2,2],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[3,1,2,2],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,1,2,3],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[3,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[2,0,2,3],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[2,0,2,2],[2,2,2,1]],[[0,2,1,1],[2,1,2,2],[2,0,2,2],[1,3,2,1]],[[0,2,1,1],[2,1,2,2],[2,0,2,2],[1,2,3,1]],[[0,2,1,1],[2,1,2,2],[2,0,2,2],[1,2,2,2]],[[0,2,1,1],[3,1,2,2],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[3,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[2,0,4,1],[1,2,2,1]],[[0,2,1,1],[2,1,2,2],[2,0,3,1],[2,2,2,1]],[[0,2,1,1],[2,1,2,2],[2,0,3,1],[1,3,2,1]],[[0,2,1,1],[2,1,2,2],[2,0,3,1],[1,2,3,1]],[[0,2,1,1],[2,1,2,2],[2,0,3,1],[1,2,2,2]],[[0,2,1,2],[2,1,2,2],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,1,2,3],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,1,2,2],[2,0,4,2],[1,2,1,1]],[[0,2,1,1],[2,1,2,2],[2,0,3,3],[1,2,1,1]],[[0,2,1,1],[2,1,2,2],[2,0,3,2],[1,2,1,2]],[[0,2,1,2],[2,1,2,2],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[3,1,2,2],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,2,3],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,2,2],[3,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,2,2],[2,0,4,2],[1,2,2,0]],[[0,2,1,1],[2,1,2,2],[2,0,3,3],[1,2,2,0]],[[0,2,1,1],[2,1,2,2],[2,0,3,2],[2,2,2,0]],[[0,2,1,1],[2,1,2,2],[2,0,3,2],[1,3,2,0]],[[0,2,1,1],[2,1,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[1,4,2,1],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,1],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,1],[1,2,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,1],[1,2,2,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,1],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[1,4,2,1],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,1],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,1],[1,2,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,1],[1,2,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,1],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[1,4,2,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[1,2,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[1,2,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,1],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,1],[1,2,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[1,2,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,1],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[1,2,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[1,2,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,1],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,1],[1,2,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,1],[1,2,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,1],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,1],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[1,3,2,1],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[1,3,2,1],[1,2,2,2],[0,0,2,1]],[[1,3,2,1],[1,3,2,1],[1,2,2,2],[0,0,2,1]],[[2,2,2,1],[1,3,2,1],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[1,4,2,1],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[1,3,2,1],[1,2,1,2],[1,0,2,1]],[[1,2,3,1],[1,3,2,1],[1,2,1,2],[1,0,2,1]],[[1,3,2,1],[1,3,2,1],[1,2,1,2],[1,0,2,1]],[[2,2,2,1],[1,3,2,1],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[1,4,2,1],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[1,3,2,1],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,2,1],[1,2,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,2,1],[1,2,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,2,1],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[1,4,2,1],[1,2,0,2],[0,2,2,1]],[[1,2,2,2],[1,3,2,1],[1,2,0,2],[0,2,2,1]],[[1,2,3,1],[1,3,2,1],[1,2,0,2],[0,2,2,1]],[[1,3,2,1],[1,3,2,1],[1,2,0,2],[0,2,2,1]],[[2,2,2,1],[1,3,2,1],[1,2,0,2],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[1,3,2,1],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[1,3,2,1],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[1,3,2,1],[1,1,3,1],[0,2,2,0]],[[2,2,2,1],[1,3,2,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[1,4,2,1],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,2,1],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[1,1,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[1,1,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,2,1],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[1,3,2,1],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[1,3,2,1],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[1,3,2,1],[1,1,3,0],[0,2,2,1]],[[2,2,2,1],[1,3,2,1],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[1,3,2,1],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[1,3,2,1],[1,1,2,2],[0,2,2,0]],[[1,3,2,1],[1,3,2,1],[1,1,2,2],[0,2,2,0]],[[2,2,2,1],[1,3,2,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[1,4,2,1],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[1,3,2,1],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[1,1,2,2],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[1,1,2,2],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[1,4,2,1],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,2,1],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,2,1],[1,1,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,2,1],[1,1,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,2,1],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[1,4,2,1],[1,1,0,2],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[1,1,0,2],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[1,1,0,2],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[1,1,0,2],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[1,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[1,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,3,2,1],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[1,0,3,1],[1,2,2,0]],[[1,3,2,1],[1,3,2,1],[1,0,3,1],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[1,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[1,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,2,1],[1,0,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[1,0,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[1,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[1,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[1,0,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[1,0,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[1,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,2,1],[1,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[1,0,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,1],[1,0,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[1,0,2,2],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[1,0,2,2],[1,2,1,1]],[[1,2,3,1],[1,3,2,1],[1,0,2,2],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[1,0,2,2],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[1,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[1,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[1,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[1,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[1,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[0,3,3,2],[0,1,0,1]],[[1,2,2,2],[1,3,2,1],[0,3,3,2],[0,1,0,1]],[[1,2,3,1],[1,3,2,1],[0,3,3,2],[0,1,0,1]],[[1,3,2,1],[1,3,2,1],[0,3,3,2],[0,1,0,1]],[[2,2,2,1],[1,3,2,1],[0,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,1,3,0],[0,2,4,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[0,2,3,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,0],[0,2,3,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,0],[0,2,3,2],[1,2,2,2]],[[0,2,1,1],[2,1,3,0],[0,3,4,2],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[0,3,3,2],[1,1,3,1]],[[0,2,1,1],[2,1,3,0],[0,3,3,2],[1,1,2,2]],[[0,2,1,1],[2,1,3,0],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,0],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,0],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[2,1,4,0],[1,2,3,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,1,3,0],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,1,3,0],[1,2,3,1],[1,2,2,2]],[[0,2,1,1],[2,1,3,0],[1,2,4,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,2,3,2],[0,2,3,1]],[[0,2,1,1],[2,1,3,0],[1,2,3,2],[0,2,2,2]],[[0,2,1,1],[2,1,4,0],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,0],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,0],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[2,1,3,0],[1,2,3,2],[1,2,1,2]],[[0,2,1,1],[2,1,4,0],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,0],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,0],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[2,1,3,0],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,1,3,0],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,1,3,0],[1,2,3,2],[1,2,3,0]],[[0,2,1,1],[2,1,3,0],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,1,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,0],[1,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,1,3,0],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,1,3,0],[1,3,2,1],[1,2,2,2]],[[0,2,1,1],[2,1,3,0],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[2,1,3,0],[1,3,2,2],[1,1,2,2]],[[0,2,1,1],[2,1,3,0],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,0],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,1,3,0],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,1,3,0],[1,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,1,3,0],[1,4,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,0],[2,2,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,0],[1,3,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,0],[1,2,3,1]],[[0,2,1,1],[2,1,4,0],[1,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[1,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,1],[1,1,2,2]],[[0,2,1,1],[2,1,4,0],[1,3,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,0],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,0],[1,3,4,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,1],[1,3,1,1]],[[0,2,1,1],[2,1,3,0],[1,3,4,2],[0,1,2,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,2],[0,1,3,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,2],[0,1,2,2]],[[0,2,1,1],[2,1,4,0],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,1,3,0],[1,4,3,2],[1,1,1,1]],[[0,2,1,1],[2,1,3,0],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,2],[1,1,1,2]],[[0,2,1,1],[2,1,4,0],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,1,3,0],[1,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,1,3,0],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[2,1,3,0],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[2,1,3,0],[1,3,3,2],[1,1,3,0]],[[0,2,1,1],[2,1,4,0],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,1,3,0],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[2,1,3,0],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,1,3,0],[1,3,3,2],[1,2,0,2]],[[0,2,1,1],[2,1,4,0],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,1,3,0],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[2,1,3,0],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[2,1,3,0],[1,3,3,3],[1,2,1,0]],[[0,2,1,1],[2,1,3,0],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,1,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,3,2,1],[0,4,3,1],[1,2,0,0]],[[1,2,2,1],[1,4,2,1],[0,3,3,1],[1,2,0,0]],[[0,2,1,1],[3,1,3,0],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[3,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,1,2,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,1,2,2],[2,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,1,2,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,0],[2,1,2,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,0],[2,1,2,2],[1,2,2,2]],[[0,2,1,1],[3,1,3,0],[2,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,1,4,0],[2,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[3,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,1,4,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,1,3,1],[2,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,1,3,1],[1,3,2,1]],[[0,2,1,1],[2,1,3,0],[2,1,3,1],[1,2,3,1]],[[0,2,1,1],[2,1,3,0],[2,1,3,1],[1,2,2,2]],[[0,2,1,1],[2,1,4,0],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,0],[2,1,4,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,0],[2,1,3,3],[1,2,1,1]],[[0,2,1,1],[2,1,3,0],[2,1,3,2],[1,2,1,2]],[[0,2,1,1],[3,1,3,0],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,4,0],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,0],[3,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,0],[2,1,4,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,0],[2,1,3,3],[1,2,2,0]],[[0,2,1,1],[2,1,3,0],[2,1,3,2],[2,2,2,0]],[[0,2,1,1],[2,1,3,0],[2,1,3,2],[1,3,2,0]],[[0,2,1,1],[2,1,3,0],[2,1,3,2],[1,2,3,0]],[[0,2,1,1],[3,1,3,0],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[3,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,1,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,0],[2,2,1,2],[1,2,2,2]],[[0,2,1,1],[3,1,3,0],[2,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[3,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,2,1],[2,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,2,1],[1,3,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,2,1],[1,2,3,1]],[[0,2,1,1],[2,1,3,0],[2,2,2,1],[1,2,2,2]],[[0,2,1,1],[2,1,3,0],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[2,1,3,0],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[3,1,3,0],[2,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,0],[3,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,0],[2,2,2,2],[2,2,2,0]],[[0,2,1,1],[2,1,3,0],[2,2,2,2],[1,3,2,0]],[[0,2,1,1],[2,1,3,0],[2,2,2,2],[1,2,3,0]],[[0,2,1,1],[3,1,3,0],[2,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[3,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,0],[2,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,0],[1,3,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,0],[1,2,3,1]],[[0,2,1,1],[2,1,4,0],[2,2,3,1],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,1],[0,2,2,2]],[[0,2,1,1],[3,1,3,0],[2,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,0],[3,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,1],[2,2,1,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,1],[1,3,1,1]],[[0,2,1,1],[2,1,4,0],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,1,3,0],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,2],[0,2,1,2]],[[0,2,1,1],[2,1,4,0],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,1,3,0],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[2,1,3,0],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[2,1,3,0],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[2,1,3,0],[2,2,3,2],[0,2,3,0]],[[0,2,1,1],[3,1,3,0],[2,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,1,3,0],[3,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,2],[2,2,0,1]],[[0,2,1,1],[2,1,3,0],[2,2,3,2],[1,3,0,1]],[[0,2,1,1],[3,1,3,0],[2,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,1,3,0],[3,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,1,3,0],[2,2,3,2],[2,2,1,0]],[[0,2,1,1],[2,1,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,2],[1,3,2,1],[0,3,3,1],[1,2,0,0]],[[1,2,3,1],[1,3,2,1],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[1,3,2,1],[0,3,3,1],[1,2,0,0]],[[2,2,2,1],[1,3,2,1],[0,3,3,1],[1,2,0,0]],[[0,2,1,1],[3,1,3,0],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[3,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,1,3],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[2,1,3,0],[2,3,1,2],[0,2,2,2]],[[0,2,1,1],[3,1,3,0],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[3,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[2,4,1,2],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,1,2],[2,1,2,1]],[[0,2,1,1],[3,1,3,0],[2,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[3,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[2,1,3,0],[2,3,2,1],[0,2,2,2]],[[0,2,1,1],[3,1,3,0],[2,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[3,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[2,4,2,1],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,2,1],[2,1,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,1,3,0],[2,3,2,2],[0,1,2,2]],[[0,2,1,1],[3,1,3,0],[2,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,1,3,0],[3,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,1,3,0],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[2,1,3,0],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[2,1,3,0],[2,3,2,2],[0,2,3,0]],[[0,2,1,1],[2,1,3,0],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[2,1,3,0],[2,3,2,2],[1,0,2,2]],[[0,2,1,1],[3,1,3,0],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,1,3,0],[3,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,1,3,0],[2,4,2,2],[1,1,2,0]],[[0,2,1,1],[2,1,3,0],[2,3,2,2],[2,1,2,0]],[[0,2,1,1],[3,1,3,0],[2,3,3,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[3,3,3,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,4,3,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,0],[0,3,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,0],[0,2,3,1]],[[0,2,1,1],[3,1,3,0],[2,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[3,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[2,4,3,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,0],[2,1,2,1]],[[0,2,1,1],[3,1,3,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,1,4,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,1,3,0],[3,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,1,3,0],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,1],[0,1,2,2]],[[0,2,1,1],[3,1,3,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,1,4,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,1,3,0],[3,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,1,3,0],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[2,1,3,0],[2,3,4,1],[0,2,1,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,1],[0,3,1,1]],[[0,2,1,1],[3,1,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,1,4,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,1,3,0],[3,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,1,3,0],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,1],[2,0,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,1],[1,0,2,2]],[[0,2,1,1],[3,1,3,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,1,4,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,1,3,0],[3,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,1,3,0],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,1,3,0],[2,3,4,1],[1,1,1,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,1],[2,1,1,1]],[[0,2,1,1],[3,1,3,0],[2,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,0],[3,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,0],[2,4,3,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,1],[2,2,0,1]],[[0,2,1,1],[2,1,4,0],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[0,0,2,2]],[[0,2,1,1],[3,1,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,1,4,0],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,1,3,0],[3,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,1,3,0],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[2,1,3,0],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[0,1,1,2]],[[0,2,1,1],[3,1,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,1,4,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,1,3,0],[3,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,1,3,0],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[2,1,3,0],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,1,3,0],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[0,1,3,0]],[[0,2,1,1],[3,1,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,1,4,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,1,3,0],[3,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,1,3,0],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[2,1,3,0],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[0,2,0,2]],[[0,2,1,1],[3,1,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,1,4,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,1,3,0],[3,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,1,3,0],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[2,1,3,0],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,1,3,0],[2,3,3,3],[0,2,1,0]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,4,2,1],[0,3,3,1],[0,2,1,0]],[[0,2,1,1],[3,1,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,1,4,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,1,3,0],[3,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,1,3,0],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[2,1,3,0],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[2,0,1,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[1,0,1,2]],[[0,2,1,1],[3,1,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,1,4,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,1,3,0],[3,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,1,3,0],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[2,1,3,0],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[2,1,3,0],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[2,0,2,0]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[1,0,3,0]],[[0,2,1,1],[3,1,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,4,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,3,0],[3,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,3,0],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,3,0],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[2,1,0,1]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[1,1,0,2]],[[0,2,1,1],[3,1,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,1,4,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,1,3,0],[3,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,1,3,0],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[2,1,3,0],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[2,1,3,0],[2,3,3,3],[1,1,1,0]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,2],[1,3,2,1],[0,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[0,3,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[0,3,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[0,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,2,1],[0,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,2,1],[0,3,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[0,3,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[0,3,3,1],[0,2,0,1]],[[0,2,1,1],[3,1,3,0],[2,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,1,3,0],[3,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,1,3,0],[2,4,3,2],[1,2,0,0]],[[0,2,1,1],[2,1,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,4,2,1],[0,3,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[0,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[0,3,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[0,3,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[0,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,2,1],[0,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,2,1],[0,3,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,2,1],[0,3,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,2,1],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,2,1],[0,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,3,2,1],[0,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,3,2,1],[0,3,3,1],[0,0,2,1]],[[1,3,2,1],[1,3,2,1],[0,3,3,1],[0,0,2,1]],[[2,2,2,1],[1,3,2,1],[0,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,1,3,1],[0,1,3,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[0,1,3,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,1],[0,1,3,2],[1,2,2,2]],[[0,2,1,1],[2,1,3,1],[0,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[0,2,2,2],[2,2,2,1]],[[0,2,1,1],[2,1,3,1],[0,2,2,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,1],[0,2,2,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,1],[0,2,2,2],[1,2,2,2]],[[0,2,1,1],[2,1,4,1],[0,2,3,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[0,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[0,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,1,3,1],[0,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,1,3,1],[0,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,1,3,1],[0,2,3,1],[1,2,2,2]],[[0,2,1,1],[2,1,4,1],[0,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[0,2,4,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[0,2,3,3],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[0,2,3,2],[1,2,1,2]],[[0,2,1,1],[2,1,4,1],[0,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[0,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[0,2,3,3],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[0,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,1,3,1],[0,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,1,3,1],[0,2,3,2],[1,2,3,0]],[[0,2,1,1],[2,1,3,1],[0,4,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,1,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,1],[0,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,1,3,1],[0,4,2,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,1,3,1],[0,3,2,1],[1,2,2,2]],[[0,2,1,1],[2,1,3,1],[0,3,2,3],[1,1,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,2,2],[1,1,3,1]],[[0,2,1,1],[2,1,3,1],[0,3,2,2],[1,1,2,2]],[[0,2,1,1],[2,1,3,1],[0,4,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[0,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,1,3,1],[0,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,1,3,1],[0,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,1,4,1],[0,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,1,3,1],[0,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,4,1],[1,1,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,1],[1,1,3,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,1],[1,1,2,2]],[[0,2,1,1],[2,1,4,1],[0,3,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[0,4,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[0,3,4,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,1],[1,3,1,1]],[[0,2,1,1],[2,1,4,1],[0,3,3,2],[1,0,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,4,2],[1,0,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,3],[1,0,2,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,2],[1,0,2,2]],[[0,2,1,1],[2,1,4,1],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,1,3,1],[0,4,3,2],[1,1,1,1]],[[0,2,1,1],[2,1,3,1],[0,3,4,2],[1,1,1,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,3],[1,1,1,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,2],[1,1,1,2]],[[0,2,1,1],[2,1,4,1],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,1,3,1],[0,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,1,3,1],[0,3,4,2],[1,1,2,0]],[[0,2,1,1],[2,1,3,1],[0,3,3,3],[1,1,2,0]],[[0,2,1,1],[2,1,3,1],[0,3,3,2],[1,1,3,0]],[[0,2,1,1],[2,1,4,1],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[0,4,3,2],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[0,3,4,2],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,3],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,1,3,1],[0,3,3,2],[1,2,0,2]],[[0,2,1,1],[2,1,4,1],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,1,3,1],[0,4,3,2],[1,2,1,0]],[[0,2,1,1],[2,1,3,1],[0,3,4,2],[1,2,1,0]],[[0,2,1,1],[2,1,3,1],[0,3,3,3],[1,2,1,0]],[[0,2,1,1],[2,1,3,1],[0,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,1,3,1],[0,3,3,2],[1,3,1,0]],[[0,2,1,1],[2,1,3,1],[1,1,3,3],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,1,3,2],[0,2,3,1]],[[0,2,1,1],[2,1,3,1],[1,1,3,2],[0,2,2,2]],[[0,2,1,1],[2,1,3,1],[1,2,2,3],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,2,2,2],[0,3,2,1]],[[0,2,1,1],[2,1,3,1],[1,2,2,2],[0,2,3,1]],[[0,2,1,1],[2,1,3,1],[1,2,2,2],[0,2,2,2]],[[0,2,1,1],[2,1,4,1],[1,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,2,4,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,2,3,0],[2,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,2,3,0],[1,3,2,1]],[[0,2,1,1],[2,1,3,1],[1,2,3,0],[1,2,3,1]],[[0,2,1,1],[2,1,3,1],[1,2,3,0],[1,2,2,2]],[[0,2,1,1],[2,1,4,1],[1,2,3,1],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,2,4,1],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,2,3,1],[0,3,2,1]],[[0,2,1,1],[2,1,3,1],[1,2,3,1],[0,2,3,1]],[[0,2,1,1],[2,1,3,1],[1,2,3,1],[0,2,2,2]],[[0,2,1,1],[2,1,4,1],[1,2,3,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[1,2,4,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[1,2,3,1],[2,2,2,0]],[[0,2,1,1],[2,1,3,1],[1,2,3,1],[1,3,2,0]],[[0,2,1,1],[2,1,3,1],[1,2,3,1],[1,2,3,0]],[[0,2,1,1],[2,1,4,1],[1,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,1,3,1],[1,2,4,2],[0,2,1,1]],[[0,2,1,1],[2,1,3,1],[1,2,3,3],[0,2,1,1]],[[0,2,1,1],[2,1,3,1],[1,2,3,2],[0,2,1,2]],[[0,2,1,1],[2,1,4,1],[1,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,1,3,1],[1,2,4,2],[0,2,2,0]],[[0,2,1,1],[2,1,3,1],[1,2,3,3],[0,2,2,0]],[[0,2,1,1],[2,1,3,1],[1,2,3,2],[0,3,2,0]],[[0,2,1,1],[2,1,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,3,2,1],[0,3,3,0],[1,3,1,0]],[[1,2,2,1],[1,3,2,1],[0,3,3,0],[2,2,1,0]],[[1,2,2,1],[1,3,2,1],[0,4,3,0],[1,2,1,0]],[[1,2,2,1],[1,4,2,1],[0,3,3,0],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[0,3,3,0],[1,2,1,0]],[[1,2,3,1],[1,3,2,1],[0,3,3,0],[1,2,1,0]],[[0,2,1,1],[2,1,3,1],[1,4,1,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,1,3],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,1,2],[0,3,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,1,2],[0,2,3,1]],[[0,2,1,1],[2,1,3,1],[1,3,1,2],[0,2,2,2]],[[0,2,1,1],[2,1,3,1],[1,4,2,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,2,0],[2,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,2,0],[1,3,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,2,0],[1,2,3,1]],[[0,2,1,1],[2,1,3,1],[1,3,2,0],[1,2,2,2]],[[0,2,1,1],[2,1,3,1],[1,4,2,1],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,2,1],[0,3,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,2,1],[0,2,3,1]],[[0,2,1,1],[2,1,3,1],[1,3,2,1],[0,2,2,2]],[[0,2,1,1],[2,1,3,1],[1,4,2,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,2,1],[2,2,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,2,1],[1,3,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,2,1],[1,2,3,0]],[[0,2,1,1],[2,1,3,1],[1,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,1,3,1],[1,3,2,2],[0,1,2,2]],[[0,2,1,1],[2,1,3,1],[1,4,2,2],[0,2,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,2,2],[0,3,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,2,2],[0,2,3,0]],[[0,2,1,1],[2,1,3,1],[1,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,2,2],[1,0,3,1]],[[0,2,1,1],[2,1,3,1],[1,3,2,2],[1,0,2,2]],[[1,3,2,1],[1,3,2,1],[0,3,3,0],[1,2,1,0]],[[2,2,2,1],[1,3,2,1],[0,3,3,0],[1,2,1,0]],[[0,2,1,1],[2,1,4,1],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,1],[1,4,3,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,4,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,0],[1,1,3,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,0],[1,1,2,2]],[[0,2,1,1],[2,1,4,1],[1,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[1,4,3,0],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[1,3,4,0],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,0],[2,2,1,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,0],[1,3,1,1]],[[0,2,1,1],[2,1,4,1],[1,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,1,3,1],[1,4,3,1],[0,1,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,1],[0,1,2,2]],[[0,2,1,1],[2,1,4,1],[1,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,1,3,1],[1,4,3,1],[0,2,1,1]],[[0,2,1,1],[2,1,3,1],[1,3,4,1],[0,2,1,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,1],[0,3,1,1]],[[0,2,1,1],[2,1,4,1],[1,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,1,3,1],[1,4,3,1],[1,0,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,4,1],[1,0,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,1],[1,0,3,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,1],[1,0,2,2]],[[0,2,1,1],[2,1,4,1],[1,3,3,1],[1,1,2,0]],[[0,2,1,1],[2,1,3,1],[1,4,3,1],[1,1,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,4,1],[1,1,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,3,1],[1,1,3,0]],[[0,2,1,1],[2,1,4,1],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[1,4,3,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[1,3,4,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,1],[2,2,0,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,1],[1,3,0,1]],[[0,2,1,1],[2,1,4,1],[1,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,1,3,1],[1,4,3,1],[1,2,1,0]],[[0,2,1,1],[2,1,3,1],[1,3,4,1],[1,2,1,0]],[[0,2,1,1],[2,1,3,1],[1,3,3,1],[2,2,1,0]],[[0,2,1,1],[2,1,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,3,2,1],[0,4,3,0],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[0,3,3,0],[1,1,2,0]],[[0,2,1,1],[2,1,4,1],[1,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,2],[0,0,2,2]],[[0,2,1,1],[2,1,4,1],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,1,3,1],[1,4,3,2],[0,1,1,1]],[[0,2,1,1],[2,1,3,1],[1,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,2],[0,1,1,2]],[[0,2,1,1],[2,1,4,1],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,1,3,1],[1,4,3,2],[0,1,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,3,2],[0,1,3,0]],[[0,2,1,1],[2,1,4,1],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,1,3,1],[1,4,3,2],[0,2,0,1]],[[0,2,1,1],[2,1,3,1],[1,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,2],[0,3,0,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,2],[0,2,0,2]],[[0,2,1,1],[2,1,4,1],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,1,3,1],[1,4,3,2],[0,2,1,0]],[[0,2,1,1],[2,1,3,1],[1,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,1,3,1],[1,3,3,3],[0,2,1,0]],[[0,2,1,1],[2,1,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,2,2],[1,3,2,1],[0,3,3,0],[1,1,2,0]],[[1,2,3,1],[1,3,2,1],[0,3,3,0],[1,1,2,0]],[[1,3,2,1],[1,3,2,1],[0,3,3,0],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[0,3,3,0],[1,1,2,0]],[[0,2,1,1],[2,1,4,1],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,1,3,1],[1,4,3,2],[1,0,1,1]],[[0,2,1,1],[2,1,3,1],[1,3,4,2],[1,0,1,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,3],[1,0,1,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,2],[1,0,1,2]],[[0,2,1,1],[2,1,4,1],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,1,3,1],[1,4,3,2],[1,0,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,4,2],[1,0,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,3,3],[1,0,2,0]],[[0,2,1,1],[2,1,3,1],[1,3,3,2],[1,0,3,0]],[[0,2,1,1],[2,1,4,1],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,3,1],[1,4,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,3,1],[1,3,4,2],[1,1,0,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,3],[1,1,0,1]],[[0,2,1,1],[2,1,3,1],[1,3,3,2],[1,1,0,2]],[[0,2,1,1],[2,1,4,1],[1,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,1,3,1],[1,4,3,2],[1,1,1,0]],[[0,2,1,1],[2,1,3,1],[1,3,4,2],[1,1,1,0]],[[0,2,1,1],[2,1,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,4,2,1],[0,3,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,2,1],[0,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,2,1],[0,3,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,2,1],[0,3,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,2,1],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,2,1],[0,3,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,2,1],[0,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,2,1],[0,3,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,2,1],[0,3,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,2,1],[0,3,3,0],[0,1,2,1]],[[0,2,1,1],[3,1,3,1],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[3,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,0,2,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,0,2,2],[2,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,0,2,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,1],[2,0,2,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,1],[2,0,2,2],[1,2,2,2]],[[0,2,1,1],[3,1,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,1,4,1],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[3,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,0,4,1],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,0,3,1],[2,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,0,3,1],[1,3,2,1]],[[0,2,1,1],[2,1,3,1],[2,0,3,1],[1,2,3,1]],[[0,2,1,1],[2,1,3,1],[2,0,3,1],[1,2,2,2]],[[0,2,1,1],[2,1,4,1],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[2,0,4,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[2,0,3,3],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[2,0,3,2],[1,2,1,2]],[[0,2,1,1],[3,1,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,4,1],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[3,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,0,4,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,0,3,3],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,0,3,2],[2,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,0,3,2],[1,3,2,0]],[[0,2,1,1],[2,1,3,1],[2,0,3,2],[1,2,3,0]],[[0,2,1,1],[3,1,3,1],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,4,1],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[3,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,1,4,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,1,3,0],[2,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,1,3,0],[1,3,2,1]],[[0,2,1,1],[2,1,3,1],[2,1,3,0],[1,2,3,1]],[[0,2,1,1],[2,1,3,1],[2,1,3,0],[1,2,2,2]],[[0,2,1,1],[3,1,3,1],[2,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,1,4,1],[2,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[3,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,1,4,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,1,3,1],[2,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,1,3,1],[1,3,2,0]],[[0,2,1,1],[2,1,3,1],[2,1,3,1],[1,2,3,0]],[[0,2,1,1],[3,1,3,1],[2,2,2,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[3,2,2,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,2,2,0],[2,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,2,2,0],[1,3,2,1]],[[0,2,1,1],[2,1,3,1],[2,2,2,0],[1,2,3,1]],[[0,2,1,1],[2,1,3,1],[2,2,2,0],[1,2,2,2]],[[0,2,1,1],[3,1,3,1],[2,2,2,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[3,2,2,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,2,2,1],[2,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,2,2,1],[1,3,2,0]],[[0,2,1,1],[2,1,3,1],[2,2,2,1],[1,2,3,0]],[[0,2,1,1],[2,1,4,1],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,2,4,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,2,3,0],[0,3,2,1]],[[0,2,1,1],[2,1,3,1],[2,2,3,0],[0,2,3,1]],[[0,2,1,1],[2,1,3,1],[2,2,3,0],[0,2,2,2]],[[0,2,1,1],[3,1,3,1],[2,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[3,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,1,3,1],[2,2,3,0],[2,2,1,1]],[[0,2,1,1],[2,1,3,1],[2,2,3,0],[1,3,1,1]],[[0,2,1,1],[2,1,4,1],[2,2,3,1],[0,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,2,4,1],[0,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,2,3,1],[0,3,2,0]],[[0,2,1,1],[2,1,3,1],[2,2,3,1],[0,2,3,0]],[[0,2,1,1],[3,1,3,1],[2,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[3,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[2,2,3,1],[2,2,0,1]],[[0,2,1,1],[2,1,3,1],[2,2,3,1],[1,3,0,1]],[[0,2,1,1],[3,1,3,1],[2,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,1,3,1],[3,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,1,3,1],[2,2,3,1],[2,2,1,0]],[[0,2,1,1],[2,1,3,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[1,4,2,1],[0,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,1],[0,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,1],[0,3,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[0,3,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,1],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,1],[0,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,1],[0,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,1],[0,3,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,1],[0,3,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,1],[0,3,2,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,1],[0,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,1],[0,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,1],[0,3,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,1],[0,3,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,1],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,1],[0,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,1],[0,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,1],[0,3,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,1],[0,3,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,1],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,1],[0,3,2,2],[0,0,2,1]],[[1,2,2,2],[1,3,2,1],[0,3,2,2],[0,0,2,1]],[[1,2,3,1],[1,3,2,1],[0,3,2,2],[0,0,2,1]],[[1,3,2,1],[1,3,2,1],[0,3,2,2],[0,0,2,1]],[[2,2,2,1],[1,3,2,1],[0,3,2,2],[0,0,2,1]],[[0,2,1,1],[3,1,3,1],[2,3,2,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[3,3,2,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,4,2,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,1],[2,3,2,0],[0,3,2,1]],[[0,2,1,1],[2,1,3,1],[2,3,2,0],[0,2,3,1]],[[0,2,1,1],[2,1,3,1],[2,3,2,0],[0,2,2,2]],[[0,2,1,1],[3,1,3,1],[2,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,1],[3,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,1],[2,4,2,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,1],[2,3,2,0],[2,1,2,1]],[[0,2,1,1],[3,1,3,1],[2,3,2,1],[0,2,2,0]],[[0,2,1,1],[2,1,3,1],[3,3,2,1],[0,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,4,2,1],[0,2,2,0]],[[0,2,1,1],[2,1,3,1],[2,3,2,1],[0,3,2,0]],[[0,2,1,1],[2,1,3,1],[2,3,2,1],[0,2,3,0]],[[0,2,1,1],[3,1,3,1],[2,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,1,3,1],[3,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,1,3,1],[2,4,2,1],[1,1,2,0]],[[0,2,1,1],[2,1,3,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[1,3,2,1],[0,3,2,1],[1,3,1,0]],[[1,2,2,1],[1,3,2,1],[0,3,2,1],[2,2,1,0]],[[1,2,2,1],[1,3,2,1],[0,4,2,1],[1,2,1,0]],[[1,2,2,1],[1,4,2,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[1,3,2,1],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[1,3,2,1],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[1,3,2,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[1,3,2,1],[0,3,2,1],[1,3,0,1]],[[1,2,2,1],[1,3,2,1],[0,3,2,1],[2,2,0,1]],[[1,2,2,1],[1,3,2,1],[0,4,2,1],[1,2,0,1]],[[1,2,2,1],[1,4,2,1],[0,3,2,1],[1,2,0,1]],[[1,2,2,2],[1,3,2,1],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[1,3,2,1],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[1,3,2,1],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[1,3,2,1],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[1,3,2,1],[0,4,2,1],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[0,3,2,1],[1,1,2,0]],[[0,2,1,1],[3,1,3,1],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,1,4,1],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,1,3,1],[3,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,1,3,1],[2,4,3,0],[0,1,2,1]],[[0,2,1,1],[2,1,3,1],[2,3,4,0],[0,1,2,1]],[[0,2,1,1],[2,1,3,1],[2,3,3,0],[0,1,3,1]],[[0,2,1,1],[2,1,3,1],[2,3,3,0],[0,1,2,2]],[[0,2,1,1],[3,1,3,1],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,1,4,1],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,1,3,1],[3,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,1,3,1],[2,4,3,0],[0,2,1,1]],[[0,2,1,1],[2,1,3,1],[2,3,4,0],[0,2,1,1]],[[0,2,1,1],[2,1,3,1],[2,3,3,0],[0,3,1,1]],[[0,2,1,1],[3,1,3,1],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,1,4,1],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,1,3,1],[3,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,1,3,1],[2,4,3,0],[1,0,2,1]],[[0,2,1,1],[2,1,3,1],[2,3,4,0],[1,0,2,1]],[[0,2,1,1],[2,1,3,1],[2,3,3,0],[2,0,2,1]],[[0,2,1,1],[2,1,3,1],[2,3,3,0],[1,0,3,1]],[[0,2,1,1],[2,1,3,1],[2,3,3,0],[1,0,2,2]],[[0,2,1,1],[3,1,3,1],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,1,4,1],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,1,3,1],[3,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,1,3,1],[2,4,3,0],[1,1,1,1]],[[0,2,1,1],[2,1,3,1],[2,3,4,0],[1,1,1,1]],[[0,2,1,1],[2,1,3,1],[2,3,3,0],[2,1,1,1]],[[0,2,1,1],[3,1,3,1],[2,3,3,0],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[3,3,3,0],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[2,4,3,0],[1,2,0,1]],[[0,2,1,1],[2,1,3,1],[2,3,3,0],[2,2,0,1]],[[1,2,2,2],[1,3,2,1],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[1,3,2,1],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[1,3,2,1],[0,3,2,1],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[1,3,2,1],[0,4,2,1],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[0,3,2,1],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[0,3,2,1],[1,1,1,1]],[[0,2,1,1],[3,1,3,1],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,1,4,1],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,1,3,1],[3,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,1,3,1],[2,4,3,1],[0,1,1,1]],[[0,2,1,1],[2,1,3,1],[2,3,4,1],[0,1,1,1]],[[0,2,1,1],[3,1,3,1],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,1,4,1],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,1,3,1],[3,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,1,3,1],[2,4,3,1],[0,1,2,0]],[[0,2,1,1],[2,1,3,1],[2,3,4,1],[0,1,2,0]],[[0,2,1,1],[2,1,3,1],[2,3,3,1],[0,1,3,0]],[[0,2,1,1],[3,1,3,1],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,1,4,1],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,1,3,1],[3,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,1,3,1],[2,4,3,1],[0,2,0,1]],[[0,2,1,1],[2,1,3,1],[2,3,4,1],[0,2,0,1]],[[0,2,1,1],[2,1,3,1],[2,3,3,1],[0,3,0,1]],[[0,2,1,1],[3,1,3,1],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,1,4,1],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,1,3,1],[3,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,1,3,1],[2,4,3,1],[0,2,1,0]],[[0,2,1,1],[2,1,3,1],[2,3,4,1],[0,2,1,0]],[[0,2,1,1],[2,1,3,1],[2,3,3,1],[0,3,1,0]],[[2,2,2,1],[1,3,2,1],[0,3,2,1],[1,1,1,1]],[[0,2,1,1],[3,1,3,1],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,1,4,1],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,1,3,1],[3,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,1,3,1],[2,4,3,1],[1,0,1,1]],[[0,2,1,1],[2,1,3,1],[2,3,4,1],[1,0,1,1]],[[0,2,1,1],[2,1,3,1],[2,3,3,1],[2,0,1,1]],[[0,2,1,1],[3,1,3,1],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,1,4,1],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,1,3,1],[3,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,1,3,1],[2,4,3,1],[1,0,2,0]],[[0,2,1,1],[2,1,3,1],[2,3,4,1],[1,0,2,0]],[[0,2,1,1],[2,1,3,1],[2,3,3,1],[2,0,2,0]],[[0,2,1,1],[2,1,3,1],[2,3,3,1],[1,0,3,0]],[[0,2,1,1],[3,1,3,1],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,1,4,1],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,1,3,1],[3,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,1,3,1],[2,4,3,1],[1,1,0,1]],[[0,2,1,1],[2,1,3,1],[2,3,4,1],[1,1,0,1]],[[0,2,1,1],[2,1,3,1],[2,3,3,1],[2,1,0,1]],[[0,2,1,1],[3,1,3,1],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,1,4,1],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,1,3,1],[3,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,1,3,1],[2,4,3,1],[1,1,1,0]],[[0,2,1,1],[2,1,3,1],[2,3,4,1],[1,1,1,0]],[[0,2,1,1],[2,1,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[1,3,2,1],[0,3,2,0],[1,3,1,1]],[[1,2,2,1],[1,3,2,1],[0,3,2,0],[2,2,1,1]],[[1,2,2,1],[1,3,2,1],[0,4,2,0],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[0,3,2,0],[1,2,1,1]],[[0,2,1,1],[3,1,3,1],[2,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,1,3,1],[3,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,1,3,1],[2,4,3,1],[1,2,0,0]],[[0,2,1,1],[2,1,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,3,1],[1,3,2,1],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[1,3,2,1],[0,4,2,0],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[0,3,2,0],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[0,3,2,0],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[0,3,2,0],[1,1,2,1]],[[1,2,2,1],[1,3,2,1],[0,3,1,2],[1,3,1,0]],[[1,2,2,1],[1,3,2,1],[0,3,1,2],[2,2,1,0]],[[1,2,2,1],[1,3,2,1],[0,4,1,2],[1,2,1,0]],[[1,2,2,1],[1,4,2,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[0,3,1,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,1],[0,3,1,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,1],[0,3,1,2],[1,2,1,0]],[[2,2,2,1],[1,3,2,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[1,3,2,1],[0,3,1,2],[1,3,0,1]],[[1,2,2,1],[1,3,2,1],[0,3,1,2],[2,2,0,1]],[[1,2,2,1],[1,3,2,1],[0,4,1,2],[1,2,0,1]],[[1,2,2,1],[1,4,2,1],[0,3,1,2],[1,2,0,1]],[[1,2,2,2],[1,3,2,1],[0,3,1,2],[1,2,0,1]],[[1,2,3,1],[1,3,2,1],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[1,3,2,1],[0,3,1,2],[1,2,0,1]],[[2,2,2,1],[1,3,2,1],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[1,3,2,1],[0,4,1,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,1],[0,3,1,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,1],[0,3,1,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,1],[0,3,1,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[1,3,2,1],[0,4,1,2],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[0,3,1,2],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[0,3,1,2],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[0,3,1,2],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[0,3,1,2],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[0,3,1,2],[0,1,2,1]],[[1,2,2,2],[1,3,2,1],[0,3,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,2,1],[0,3,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,2,1],[0,3,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,2,1],[0,3,1,2],[0,1,2,1]],[[1,2,2,1],[1,3,2,1],[0,3,1,1],[1,2,3,0]],[[1,2,2,1],[1,3,2,1],[0,3,1,1],[1,3,2,0]],[[1,2,2,1],[1,3,2,1],[0,3,1,1],[2,2,2,0]],[[1,2,2,1],[1,3,2,1],[0,4,1,1],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[0,3,1,1],[1,2,2,0]],[[1,2,2,2],[1,3,2,1],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[1,3,2,1],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[1,3,2,1],[0,3,1,0],[1,2,2,2]],[[1,2,2,1],[1,3,2,1],[0,3,1,0],[1,2,3,1]],[[1,2,2,1],[1,3,2,1],[0,3,1,0],[1,3,2,1]],[[1,2,2,1],[1,3,2,1],[0,3,1,0],[2,2,2,1]],[[1,2,2,1],[1,3,2,1],[0,4,1,0],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[0,3,1,0],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[1,3,2,1],[0,3,0,2],[1,2,3,0]],[[1,2,2,1],[1,3,2,1],[0,3,0,2],[1,3,2,0]],[[1,2,2,1],[1,3,2,1],[0,3,0,2],[2,2,2,0]],[[1,2,2,1],[1,3,2,1],[0,4,0,2],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[0,3,0,2],[1,2,2,0]],[[1,2,2,2],[1,3,2,1],[0,3,0,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[0,3,0,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,1],[0,3,0,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[1,3,2,1],[0,3,0,2],[1,3,1,1]],[[1,2,2,1],[1,3,2,1],[0,3,0,2],[2,2,1,1]],[[1,2,2,1],[1,3,2,1],[0,4,0,2],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[0,3,0,2],[1,2,1,1]],[[1,2,3,1],[1,3,2,1],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[0,3,0,2],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[1,3,2,1],[0,4,0,2],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[0,3,0,2],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[0,3,0,2],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[0,3,0,2],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[1,3,2,1],[0,3,0,1],[1,2,2,2]],[[1,2,2,1],[1,3,2,1],[0,3,0,1],[1,2,3,1]],[[1,2,2,1],[1,3,2,1],[0,3,0,1],[1,3,2,1]],[[0,2,1,2],[2,1,3,2],[0,0,3,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,3],[0,0,3,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,0,3,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,0,3,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,2],[0,0,3,2],[1,2,2,2]],[[0,2,1,2],[2,1,3,2],[0,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,4,2],[0,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,3],[0,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,2,1,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,2,1,2],[2,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,2,1,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,2],[0,2,1,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,2],[0,2,1,2],[1,2,2,2]],[[0,2,1,2],[2,1,3,2],[0,2,2,2],[1,2,1,1]],[[0,2,1,1],[2,1,4,2],[0,2,2,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,3],[0,2,2,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,2],[0,2,2,3],[1,2,1,1]],[[0,2,1,1],[2,1,3,2],[0,2,2,2],[1,2,1,2]],[[0,2,1,2],[2,1,3,2],[0,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,4,2],[0,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,3],[0,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,2],[0,2,2,3],[1,2,2,0]],[[0,2,1,2],[2,1,3,2],[0,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,4,2],[0,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,3],[0,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,2,4,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,2,3,0],[2,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,2,3,0],[1,3,2,1]],[[0,2,1,1],[2,1,3,2],[0,2,3,0],[1,2,3,1]],[[0,2,1,1],[2,1,3,2],[0,2,3,0],[1,2,2,2]],[[0,2,1,2],[2,1,3,2],[0,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,4,2],[0,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,3],[0,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,2],[0,2,4,1],[1,2,1,1]],[[0,2,1,2],[2,1,3,2],[0,2,3,1],[1,2,2,0]],[[0,2,1,1],[2,1,4,2],[0,2,3,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,3],[0,2,3,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,2],[0,2,4,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,2],[0,2,3,1],[2,2,2,0]],[[0,2,1,1],[2,1,3,2],[0,2,3,1],[1,3,2,0]],[[0,2,1,1],[2,1,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[1,3,2,1],[0,3,0,1],[2,2,2,1]],[[1,2,2,1],[1,3,2,1],[0,4,0,1],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[0,3,0,1],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[0,3,0,1],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[0,3,0,1],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[0,3,0,1],[1,2,2,1]],[[0,2,1,2],[2,1,3,2],[0,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,1,4,2],[0,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,3],[0,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,4,0,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,0,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,0,2],[2,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,0,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,0,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,2],[0,3,0,2],[1,2,2,2]],[[0,2,1,2],[2,1,3,2],[0,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,1,4,2],[0,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,1,3,3],[0,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,1,3],[1,1,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,1,2],[1,1,3,1]],[[0,2,1,1],[2,1,3,2],[0,3,1,2],[1,1,2,2]],[[0,2,1,1],[2,1,3,2],[0,4,2,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,2,0],[2,2,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,2,0],[1,3,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,2,0],[1,2,3,1]],[[0,2,1,1],[2,1,3,2],[0,3,2,0],[1,2,2,2]],[[0,2,1,1],[2,1,3,2],[0,4,2,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,2],[0,3,2,1],[2,2,2,0]],[[0,2,1,1],[2,1,3,2],[0,3,2,1],[1,3,2,0]],[[0,2,1,1],[2,1,3,2],[0,3,2,1],[1,2,3,0]],[[0,2,1,2],[2,1,3,2],[0,3,2,2],[1,0,2,1]],[[0,2,1,1],[2,1,4,2],[0,3,2,2],[1,0,2,1]],[[0,2,1,1],[2,1,3,3],[0,3,2,2],[1,0,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,2,2],[1,0,2,2]],[[0,2,1,2],[2,1,3,2],[0,3,2,2],[1,1,1,1]],[[0,2,1,1],[2,1,4,2],[0,3,2,2],[1,1,1,1]],[[0,2,1,1],[2,1,3,3],[0,3,2,2],[1,1,1,1]],[[0,2,1,1],[2,1,3,2],[0,3,2,3],[1,1,1,1]],[[0,2,1,1],[2,1,3,2],[0,3,2,2],[1,1,1,2]],[[0,2,1,2],[2,1,3,2],[0,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,1,4,2],[0,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,1,3,3],[0,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,1,3,2],[0,3,2,3],[1,1,2,0]],[[0,2,1,2],[2,1,3,2],[0,3,2,2],[1,2,0,1]],[[0,2,1,1],[2,1,4,2],[0,3,2,2],[1,2,0,1]],[[0,2,1,1],[2,1,3,3],[0,3,2,2],[1,2,0,1]],[[0,2,1,1],[2,1,3,2],[0,3,2,3],[1,2,0,1]],[[0,2,1,1],[2,1,3,2],[0,3,2,2],[1,2,0,2]],[[0,2,1,2],[2,1,3,2],[0,3,2,2],[1,2,1,0]],[[0,2,1,1],[2,1,4,2],[0,3,2,2],[1,2,1,0]],[[0,2,1,1],[2,1,3,3],[0,3,2,2],[1,2,1,0]],[[0,2,1,1],[2,1,3,2],[0,3,2,3],[1,2,1,0]],[[0,2,1,2],[2,1,3,2],[0,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,1,4,2],[0,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,3],[0,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,2],[0,4,3,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,4,0],[1,1,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,3,0],[1,1,3,1]],[[0,2,1,1],[2,1,3,2],[0,3,3,0],[1,1,2,2]],[[0,2,1,2],[2,1,3,2],[0,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,1,4,2],[0,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,1,3,3],[0,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,1,3,2],[0,4,3,0],[1,2,1,1]],[[0,2,1,1],[2,1,3,2],[0,3,4,0],[1,2,1,1]],[[0,2,1,1],[2,1,3,2],[0,3,3,0],[2,2,1,1]],[[0,2,1,1],[2,1,3,2],[0,3,3,0],[1,3,1,1]],[[0,2,1,2],[2,1,3,2],[0,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,1,4,2],[0,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,1,3,3],[0,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,1,3,2],[0,3,4,1],[1,0,2,1]],[[0,2,1,2],[2,1,3,2],[0,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,1,4,2],[0,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,1,3,3],[0,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,1,3,2],[0,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,1,3,2],[0,3,4,1],[1,1,1,1]],[[0,2,1,2],[2,1,3,2],[0,3,3,1],[1,1,2,0]],[[0,2,1,1],[2,1,4,2],[0,3,3,1],[1,1,2,0]],[[0,2,1,1],[2,1,3,3],[0,3,3,1],[1,1,2,0]],[[0,2,1,1],[2,1,3,2],[0,4,3,1],[1,1,2,0]],[[0,2,1,1],[2,1,3,2],[0,3,4,1],[1,1,2,0]],[[0,2,1,1],[2,1,3,2],[0,3,3,1],[1,1,3,0]],[[0,2,1,2],[2,1,3,2],[0,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,1,4,2],[0,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,3],[0,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,2],[0,4,3,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,2],[0,3,4,1],[1,2,0,1]],[[0,2,1,1],[2,1,3,2],[0,3,3,1],[2,2,0,1]],[[0,2,1,1],[2,1,3,2],[0,3,3,1],[1,3,0,1]],[[0,2,1,2],[2,1,3,2],[0,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,1,4,2],[0,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,1,3,3],[0,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,1,3,2],[0,4,3,1],[1,2,1,0]],[[0,2,1,1],[2,1,3,2],[0,3,4,1],[1,2,1,0]],[[0,2,1,1],[2,1,3,2],[0,3,3,1],[2,2,1,0]],[[0,2,1,1],[2,1,3,2],[0,3,3,1],[1,3,1,0]],[[0,2,1,2],[2,1,3,2],[0,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,4,2],[0,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,3,3],[0,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,1,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,4,2,1],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,1],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,1],[0,2,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,1],[0,2,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,1],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,1],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,2,1],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,2,1],[0,2,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,2,1],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[1,4,2,1],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[1,3,2,1],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,2,1],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,2,1],[0,2,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,2,1],[0,2,3,1],[1,2,0,1]],[[0,2,1,2],[2,1,3,2],[1,0,3,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,3],[1,0,3,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,2],[1,0,3,3],[0,2,2,1]],[[0,2,1,1],[2,1,3,2],[1,0,3,2],[0,2,3,1]],[[0,2,1,1],[2,1,3,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[1,4,2,1],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[1,3,2,1],[0,2,3,1],[1,1,2,0]],[[0,2,1,2],[2,1,3,2],[1,2,1,2],[0,2,2,1]],[[0,2,1,1],[2,1,4,2],[1,2,1,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,3],[1,2,1,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,2],[1,2,1,3],[0,2,2,1]],[[0,2,1,1],[2,1,3,2],[1,2,1,2],[0,3,2,1]],[[0,2,1,1],[2,1,3,2],[1,2,1,2],[0,2,3,1]],[[0,2,1,1],[2,1,3,2],[1,2,1,2],[0,2,2,2]],[[0,2,1,2],[2,1,3,2],[1,2,2,2],[0,2,1,1]],[[0,2,1,1],[2,1,4,2],[1,2,2,2],[0,2,1,1]],[[0,2,1,1],[2,1,3,3],[1,2,2,2],[0,2,1,1]],[[0,2,1,1],[2,1,3,2],[1,2,2,3],[0,2,1,1]],[[0,2,1,1],[2,1,3,2],[1,2,2,2],[0,2,1,2]],[[0,2,1,2],[2,1,3,2],[1,2,2,2],[0,2,2,0]],[[0,2,1,1],[2,1,4,2],[1,2,2,2],[0,2,2,0]],[[0,2,1,1],[2,1,3,3],[1,2,2,2],[0,2,2,0]],[[0,2,1,1],[2,1,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,3,1],[1,3,2,1],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[1,3,2,1],[0,2,3,1],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[0,2,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[0,2,3,1],[1,1,1,1]],[[0,2,1,2],[2,1,3,2],[1,2,3,0],[0,2,2,1]],[[0,2,1,1],[2,1,4,2],[1,2,3,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,3],[1,2,3,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,2],[1,2,4,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,2],[1,2,3,0],[0,3,2,1]],[[0,2,1,1],[2,1,3,2],[1,2,3,0],[0,2,3,1]],[[0,2,1,1],[2,1,3,2],[1,2,3,0],[0,2,2,2]],[[0,2,1,2],[2,1,3,2],[1,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,1,4,2],[1,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,1,3,3],[1,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,1,3,2],[1,2,4,1],[0,2,1,1]],[[0,2,1,2],[2,1,3,2],[1,2,3,1],[0,2,2,0]],[[0,2,1,1],[2,1,4,2],[1,2,3,1],[0,2,2,0]],[[0,2,1,1],[2,1,3,3],[1,2,3,1],[0,2,2,0]],[[0,2,1,1],[2,1,3,2],[1,2,4,1],[0,2,2,0]],[[0,2,1,1],[2,1,3,2],[1,2,3,1],[0,3,2,0]],[[0,2,1,1],[2,1,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[1,4,2,1],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,2,1],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,2,1],[0,2,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,2,1],[0,2,3,1],[1,0,2,1]],[[2,2,2,1],[1,3,2,1],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[1,4,2,1],[0,2,3,0],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,2,1],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[0,2,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[0,2,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[1,3,2,1],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,1],[0,2,2,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,1],[0,2,2,2],[1,2,1,0]],[[0,2,1,2],[2,1,3,2],[1,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,1,4,2],[1,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,3],[1,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,2],[1,4,0,2],[0,2,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,0,3],[0,2,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,0,2],[0,3,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,0,2],[0,2,3,1]],[[0,2,1,1],[2,1,3,2],[1,3,0,2],[0,2,2,2]],[[0,2,1,2],[2,1,3,2],[1,3,1,2],[0,1,2,1]],[[0,2,1,1],[2,1,4,2],[1,3,1,2],[0,1,2,1]],[[0,2,1,1],[2,1,3,3],[1,3,1,2],[0,1,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,1,3],[0,1,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,1,2],[0,1,3,1]],[[0,2,1,1],[2,1,3,2],[1,3,1,2],[0,1,2,2]],[[0,2,1,2],[2,1,3,2],[1,3,1,2],[1,0,2,1]],[[0,2,1,1],[2,1,4,2],[1,3,1,2],[1,0,2,1]],[[0,2,1,1],[2,1,3,3],[1,3,1,2],[1,0,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,1,3],[1,0,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,1,2],[1,0,3,1]],[[0,2,1,1],[2,1,3,2],[1,3,1,2],[1,0,2,2]],[[2,2,2,1],[1,3,2,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[1,4,2,1],[0,2,2,2],[1,2,0,1]],[[1,2,2,2],[1,3,2,1],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[1,3,2,1],[0,2,2,2],[1,2,0,1]],[[1,3,2,1],[1,3,2,1],[0,2,2,2],[1,2,0,1]],[[2,2,2,1],[1,3,2,1],[0,2,2,2],[1,2,0,1]],[[0,2,1,1],[2,1,3,2],[1,4,2,0],[0,2,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,0],[0,3,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,0],[0,2,3,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,0],[0,2,2,2]],[[0,2,1,1],[2,1,3,2],[1,4,2,1],[0,2,2,0]],[[0,2,1,1],[2,1,3,2],[1,3,2,1],[0,3,2,0]],[[0,2,1,1],[2,1,3,2],[1,3,2,1],[0,2,3,0]],[[1,2,2,1],[1,4,2,1],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,1],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,1],[0,2,2,2],[1,1,2,0]],[[0,2,1,2],[2,1,3,2],[1,3,2,2],[0,0,2,1]],[[0,2,1,1],[2,1,4,2],[1,3,2,2],[0,0,2,1]],[[0,2,1,1],[2,1,3,3],[1,3,2,2],[0,0,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,3],[0,0,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,2],[0,0,2,2]],[[0,2,1,2],[2,1,3,2],[1,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,1,4,2],[1,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,1,3,3],[1,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,3],[0,1,1,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,2],[0,1,1,2]],[[0,2,1,2],[2,1,3,2],[1,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,1,4,2],[1,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,1,3,3],[1,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,1,3,2],[1,3,2,3],[0,1,2,0]],[[0,2,1,2],[2,1,3,2],[1,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,1,4,2],[1,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,1,3,3],[1,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,3],[0,2,0,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,2],[0,2,0,2]],[[0,2,1,2],[2,1,3,2],[1,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,1,4,2],[1,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,1,3,3],[1,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,1,3,2],[1,3,2,3],[0,2,1,0]],[[1,3,2,1],[1,3,2,1],[0,2,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,1],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,1],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[1,3,2,1],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[1,3,2,1],[0,2,2,2],[1,1,1,1]],[[1,3,2,1],[1,3,2,1],[0,2,2,2],[1,1,1,1]],[[2,2,2,1],[1,3,2,1],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[0,2,2,2],[1,0,2,1]],[[0,2,1,2],[2,1,3,2],[1,3,2,2],[1,0,1,1]],[[0,2,1,1],[2,1,4,2],[1,3,2,2],[1,0,1,1]],[[0,2,1,1],[2,1,3,3],[1,3,2,2],[1,0,1,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,3],[1,0,1,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,2],[1,0,1,2]],[[0,2,1,2],[2,1,3,2],[1,3,2,2],[1,0,2,0]],[[0,2,1,1],[2,1,4,2],[1,3,2,2],[1,0,2,0]],[[0,2,1,1],[2,1,3,3],[1,3,2,2],[1,0,2,0]],[[0,2,1,1],[2,1,3,2],[1,3,2,3],[1,0,2,0]],[[0,2,1,2],[2,1,3,2],[1,3,2,2],[1,1,0,1]],[[0,2,1,1],[2,1,4,2],[1,3,2,2],[1,1,0,1]],[[0,2,1,1],[2,1,3,3],[1,3,2,2],[1,1,0,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,3],[1,1,0,1]],[[0,2,1,1],[2,1,3,2],[1,3,2,2],[1,1,0,2]],[[0,2,1,2],[2,1,3,2],[1,3,2,2],[1,1,1,0]],[[0,2,1,1],[2,1,4,2],[1,3,2,2],[1,1,1,0]],[[0,2,1,1],[2,1,3,3],[1,3,2,2],[1,1,1,0]],[[0,2,1,1],[2,1,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[1,3,2,1],[0,2,2,2],[1,0,2,1]],[[1,3,2,1],[1,3,2,1],[0,2,2,2],[1,0,2,1]],[[2,2,2,1],[1,3,2,1],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[1,4,2,1],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[1,3,2,1],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,2,1],[0,2,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,2,1],[0,2,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,2,1],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[1,4,2,1],[0,2,0,2],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[0,2,0,2],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[0,2,0,2],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[0,2,0,2],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[0,2,0,2],[1,2,2,1]],[[0,2,1,2],[2,1,3,2],[1,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,1,4,2],[1,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,1,3,3],[1,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,1,3,2],[1,4,3,0],[0,1,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,4,0],[0,1,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,3,0],[0,1,3,1]],[[0,2,1,1],[2,1,3,2],[1,3,3,0],[0,1,2,2]],[[0,2,1,2],[2,1,3,2],[1,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,1,4,2],[1,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,1,3,3],[1,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,1,3,2],[1,4,3,0],[0,2,1,1]],[[0,2,1,1],[2,1,3,2],[1,3,4,0],[0,2,1,1]],[[0,2,1,1],[2,1,3,2],[1,3,3,0],[0,3,1,1]],[[0,2,1,2],[2,1,3,2],[1,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,1,4,2],[1,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,1,3,3],[1,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,1,3,2],[1,4,3,0],[1,0,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,4,0],[1,0,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,3,0],[1,0,3,1]],[[0,2,1,1],[2,1,3,2],[1,3,3,0],[1,0,2,2]],[[0,2,1,2],[2,1,3,2],[1,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,1,4,2],[1,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,1,3,3],[1,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,1,3,2],[1,4,3,0],[1,1,1,1]],[[0,2,1,1],[2,1,3,2],[1,3,4,0],[1,1,1,1]],[[1,2,2,1],[1,4,2,1],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[1,3,2,1],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[0,1,3,1],[1,2,2,0]],[[0,2,1,2],[2,1,3,2],[1,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,1,4,2],[1,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,1,3,3],[1,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,1,3,2],[1,3,4,1],[0,0,2,1]],[[0,2,1,2],[2,1,3,2],[1,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,1,4,2],[1,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,1,3,3],[1,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,1,3,2],[1,4,3,1],[0,1,1,1]],[[0,2,1,1],[2,1,3,2],[1,3,4,1],[0,1,1,1]],[[0,2,1,2],[2,1,3,2],[1,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,1,4,2],[1,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,1,3,3],[1,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,1,3,2],[1,4,3,1],[0,1,2,0]],[[0,2,1,1],[2,1,3,2],[1,3,4,1],[0,1,2,0]],[[0,2,1,1],[2,1,3,2],[1,3,3,1],[0,1,3,0]],[[0,2,1,2],[2,1,3,2],[1,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,1,4,2],[1,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,1,3,3],[1,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,1,3,2],[1,4,3,1],[0,2,0,1]],[[0,2,1,1],[2,1,3,2],[1,3,4,1],[0,2,0,1]],[[0,2,1,1],[2,1,3,2],[1,3,3,1],[0,3,0,1]],[[0,2,1,2],[2,1,3,2],[1,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,1,4,2],[1,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,1,3,3],[1,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,1,3,2],[1,4,3,1],[0,2,1,0]],[[0,2,1,1],[2,1,3,2],[1,3,4,1],[0,2,1,0]],[[0,2,1,1],[2,1,3,2],[1,3,3,1],[0,3,1,0]],[[1,3,2,1],[1,3,2,1],[0,1,3,1],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,2,1],[0,1,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[0,1,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[0,1,3,0],[1,2,2,1]],[[0,2,1,2],[2,1,3,2],[1,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,1,4,2],[1,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,1,3,3],[1,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,1,3,2],[1,4,3,1],[1,0,1,1]],[[0,2,1,1],[2,1,3,2],[1,3,4,1],[1,0,1,1]],[[0,2,1,2],[2,1,3,2],[1,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,1,4,2],[1,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,1,3,3],[1,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,1,3,2],[1,4,3,1],[1,0,2,0]],[[0,2,1,1],[2,1,3,2],[1,3,4,1],[1,0,2,0]],[[0,2,1,1],[2,1,3,2],[1,3,3,1],[1,0,3,0]],[[0,2,1,2],[2,1,3,2],[1,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,1,4,2],[1,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,1,3,3],[1,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,1,3,2],[1,4,3,1],[1,1,0,1]],[[0,2,1,1],[2,1,3,2],[1,3,4,1],[1,1,0,1]],[[0,2,1,2],[2,1,3,2],[1,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,1,4,2],[1,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,1,3,3],[1,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,1,3,2],[1,4,3,1],[1,1,1,0]],[[0,2,1,1],[2,1,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,2],[1,3,2,1],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[0,1,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[1,4,2,1],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,2,1],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,1],[0,1,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,1],[0,1,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,1],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[1,4,2,1],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[1,3,2,1],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[1,3,2,1],[0,1,2,2],[1,2,1,1]],[[1,3,2,1],[1,3,2,1],[0,1,2,2],[1,2,1,1]],[[2,2,2,1],[1,3,2,1],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[1,4,2,1],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,2,1],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,2,1],[0,1,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,2,1],[0,1,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,2,1],[0,1,1,2],[1,2,2,1]],[[0,2,1,2],[2,1,3,2],[1,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,1,4,2],[1,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,1,3,3],[1,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,1,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,4,2,0],[2,3,3,2],[1,0,0,0]],[[1,2,2,2],[1,3,2,0],[2,3,3,2],[1,0,0,0]],[[1,2,3,1],[1,3,2,0],[2,3,3,2],[1,0,0,0]],[[1,3,2,1],[1,3,2,0],[2,3,3,2],[1,0,0,0]],[[2,2,2,1],[1,3,2,0],[2,3,3,2],[1,0,0,0]],[[0,2,1,2],[2,1,3,2],[1,3,3,2],[1,0,0,1]],[[0,2,1,1],[2,1,4,2],[1,3,3,2],[1,0,0,1]],[[0,2,1,1],[2,1,3,3],[1,3,3,2],[1,0,0,1]],[[0,2,1,1],[2,1,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,1],[1,4,2,0],[2,3,2,2],[1,0,1,0]],[[1,2,2,2],[1,3,2,0],[2,3,2,2],[1,0,1,0]],[[1,2,3,1],[1,3,2,0],[2,3,2,2],[1,0,1,0]],[[1,3,2,1],[1,3,2,0],[2,3,2,2],[1,0,1,0]],[[2,2,2,1],[1,3,2,0],[2,3,2,2],[1,0,1,0]],[[1,2,2,1],[1,4,2,0],[2,3,2,2],[1,0,0,1]],[[1,2,2,2],[1,3,2,0],[2,3,2,2],[1,0,0,1]],[[1,2,3,1],[1,3,2,0],[2,3,2,2],[1,0,0,1]],[[1,3,2,1],[1,3,2,0],[2,3,2,2],[1,0,0,1]],[[2,2,2,1],[1,3,2,0],[2,3,2,2],[1,0,0,1]],[[0,2,1,2],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[3,1,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,4,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,3],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[3,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[2,0,1,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[2,0,1,2],[2,2,2,1]],[[0,2,1,1],[2,1,3,2],[2,0,1,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,2],[2,0,1,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,2],[2,0,1,2],[1,2,2,2]],[[0,2,1,2],[2,1,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,1,1],[2,1,4,2],[2,0,2,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,3],[2,0,2,2],[1,2,1,1]],[[0,2,1,1],[2,1,3,2],[2,0,2,3],[1,2,1,1]],[[0,2,1,1],[2,1,3,2],[2,0,2,2],[1,2,1,2]],[[0,2,1,2],[2,1,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,4,2],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,3],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,1,3,2],[2,0,2,3],[1,2,2,0]],[[0,2,1,2],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[3,1,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,4,2],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,3],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[3,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[2,0,4,0],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[2,0,3,0],[2,2,2,1]],[[0,2,1,1],[2,1,3,2],[2,0,3,0],[1,3,2,1]],[[0,2,1,1],[2,1,3,2],[2,0,3,0],[1,2,3,1]],[[0,2,1,1],[2,1,3,2],[2,0,3,0],[1,2,2,2]],[[0,2,1,2],[2,1,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,4,2],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,3],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,1,3,2],[2,0,4,1],[1,2,1,1]],[[0,2,1,2],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[3,1,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,1,4,2],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,3],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,2],[3,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,2],[2,0,4,1],[1,2,2,0]],[[0,2,1,1],[2,1,3,2],[2,0,3,1],[2,2,2,0]],[[0,2,1,1],[2,1,3,2],[2,0,3,1],[1,3,2,0]],[[0,2,1,1],[2,1,3,2],[2,0,3,1],[1,2,3,0]],[[0,2,1,2],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[3,1,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,1,4,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,3],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[3,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[2,1,0,3],[1,2,2,1]],[[0,2,1,1],[2,1,3,2],[2,1,0,2],[2,2,2,1]],[[0,2,1,1],[2,1,3,2],[2,1,0,2],[1,3,2,1]],[[0,2,1,1],[2,1,3,2],[2,1,0,2],[1,2,3,1]],[[0,2,1,1],[2,1,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[1,4,2,0],[2,3,2,1],[1,0,1,1]],[[1,2,3,1],[1,3,2,0],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[1,3,2,0],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[1,3,2,0],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[1,4,2,0],[2,3,1,2],[1,2,0,0]],[[1,2,3,1],[1,3,2,0],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[1,3,2,0],[2,3,1,2],[1,2,0,0]],[[2,2,2,1],[1,3,2,0],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[1,4,2,0],[2,3,1,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,0],[2,3,1,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,0],[2,3,1,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,0],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,0],[2,3,1,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,0],[2,3,1,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,0],[2,3,1,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,0],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,0],[2,3,1,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,0],[2,3,1,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,0],[2,3,1,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,0],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,0],[2,3,1,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,0],[2,3,1,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,0],[2,3,1,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,0],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,0],[2,3,1,1],[1,2,0,1]],[[1,2,3,1],[1,3,2,0],[2,3,1,1],[1,2,0,1]],[[1,3,2,1],[1,3,2,0],[2,3,1,1],[1,2,0,1]],[[2,2,2,1],[1,3,2,0],[2,3,1,1],[1,2,0,1]],[[1,2,2,1],[1,4,2,0],[2,3,1,1],[1,1,1,1]],[[1,2,3,1],[1,3,2,0],[2,3,1,1],[1,1,1,1]],[[1,3,2,1],[1,3,2,0],[2,3,1,1],[1,1,1,1]],[[2,2,2,1],[1,3,2,0],[2,3,1,1],[1,1,1,1]],[[1,2,2,1],[1,4,2,0],[2,3,1,1],[0,2,1,1]],[[1,2,3,1],[1,3,2,0],[2,3,1,1],[0,2,1,1]],[[1,3,2,1],[1,3,2,0],[2,3,1,1],[0,2,1,1]],[[2,2,2,1],[1,3,2,0],[2,3,1,1],[0,2,1,1]],[[1,2,2,1],[1,4,2,0],[2,3,0,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,0],[2,3,0,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,0],[2,3,0,2],[1,2,1,0]],[[2,2,2,1],[1,3,2,0],[2,3,0,2],[1,2,1,0]],[[1,2,2,1],[1,4,2,0],[2,3,0,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,0],[2,3,0,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,0],[2,3,0,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,0],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,0],[2,3,0,2],[0,2,2,0]],[[1,2,3,1],[1,3,2,0],[2,3,0,2],[0,2,2,0]],[[1,3,2,1],[1,3,2,0],[2,3,0,2],[0,2,2,0]],[[2,2,2,1],[1,3,2,0],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[1,4,2,0],[2,3,0,1],[1,2,1,1]],[[1,2,3,1],[1,3,2,0],[2,3,0,1],[1,2,1,1]],[[1,3,2,1],[1,3,2,0],[2,3,0,1],[1,2,1,1]],[[2,2,2,1],[1,3,2,0],[2,3,0,1],[1,2,1,1]],[[1,2,2,1],[1,4,2,0],[2,3,0,1],[1,1,2,1]],[[1,2,3,1],[1,3,2,0],[2,3,0,1],[1,1,2,1]],[[1,3,2,1],[1,3,2,0],[2,3,0,1],[1,1,2,1]],[[2,2,2,1],[1,3,2,0],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[1,4,2,0],[2,3,0,1],[0,2,2,1]],[[1,2,3,1],[1,3,2,0],[2,3,0,1],[0,2,2,1]],[[1,3,2,1],[1,3,2,0],[2,3,0,1],[0,2,2,1]],[[2,2,2,1],[1,3,2,0],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[1,4,2,0],[2,2,3,2],[1,1,0,0]],[[1,2,2,2],[1,3,2,0],[2,2,3,2],[1,1,0,0]],[[1,2,3,1],[1,3,2,0],[2,2,3,2],[1,1,0,0]],[[1,3,2,1],[1,3,2,0],[2,2,3,2],[1,1,0,0]],[[2,2,2,1],[1,3,2,0],[2,2,3,2],[1,1,0,0]],[[1,2,2,1],[1,4,2,0],[2,2,3,2],[0,2,0,0]],[[1,2,2,2],[1,3,2,0],[2,2,3,2],[0,2,0,0]],[[1,2,3,1],[1,3,2,0],[2,2,3,2],[0,2,0,0]],[[1,3,2,1],[1,3,2,0],[2,2,3,2],[0,2,0,0]],[[2,2,2,1],[1,3,2,0],[2,2,3,2],[0,2,0,0]],[[1,2,2,1],[1,4,2,0],[2,2,2,2],[1,2,0,0]],[[1,2,2,2],[1,3,2,0],[2,2,2,2],[1,2,0,0]],[[1,2,3,1],[1,3,2,0],[2,2,2,2],[1,2,0,0]],[[1,3,2,1],[1,3,2,0],[2,2,2,2],[1,2,0,0]],[[2,2,2,1],[1,3,2,0],[2,2,2,2],[1,2,0,0]],[[1,2,2,1],[1,4,2,0],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,0],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,0],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,0],[2,2,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,0],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,0],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,0],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,0],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,0],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,0],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,0],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,0],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,0],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,0],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,0],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[1,4,2,0],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,0],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,0],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,0],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,0],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[1,4,2,0],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,0],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,0],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,0],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,0],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,0],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,0],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,0],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,0],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,0],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,0],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,0],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,0],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,0],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,0],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,0],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,0],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,0],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,0],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,0],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,0],[2,2,2,1],[1,2,0,1]],[[1,2,3,1],[1,3,2,0],[2,2,2,1],[1,2,0,1]],[[1,3,2,1],[1,3,2,0],[2,2,2,1],[1,2,0,1]],[[2,2,2,1],[1,3,2,0],[2,2,2,1],[1,2,0,1]],[[1,2,2,1],[1,4,2,0],[2,2,2,1],[1,1,1,1]],[[1,2,2,2],[1,3,2,0],[2,2,2,1],[1,1,1,1]],[[1,2,3,1],[1,3,2,0],[2,2,2,1],[1,1,1,1]],[[1,3,2,1],[1,3,2,0],[2,2,2,1],[1,1,1,1]],[[2,2,2,1],[1,3,2,0],[2,2,2,1],[1,1,1,1]],[[1,2,2,1],[1,4,2,0],[2,2,2,1],[1,0,2,1]],[[1,2,2,2],[1,3,2,0],[2,2,2,1],[1,0,2,1]],[[1,2,3,1],[1,3,2,0],[2,2,2,1],[1,0,2,1]],[[1,3,2,1],[1,3,2,0],[2,2,2,1],[1,0,2,1]],[[2,2,2,1],[1,3,2,0],[2,2,2,1],[1,0,2,1]],[[1,2,2,1],[1,4,2,0],[2,2,2,1],[0,2,1,1]],[[1,2,2,2],[1,3,2,0],[2,2,2,1],[0,2,1,1]],[[1,2,3,1],[1,3,2,0],[2,2,2,1],[0,2,1,1]],[[1,3,2,1],[1,3,2,0],[2,2,2,1],[0,2,1,1]],[[2,2,2,1],[1,3,2,0],[2,2,2,1],[0,2,1,1]],[[1,2,2,1],[1,4,2,0],[2,2,2,1],[0,1,2,1]],[[1,2,2,2],[1,3,2,0],[2,2,2,1],[0,1,2,1]],[[1,2,3,1],[1,3,2,0],[2,2,2,1],[0,1,2,1]],[[1,3,2,1],[1,3,2,0],[2,2,2,1],[0,1,2,1]],[[2,2,2,1],[1,3,2,0],[2,2,2,1],[0,1,2,1]],[[1,2,2,1],[1,4,2,0],[2,2,1,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,0],[2,2,1,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,0],[2,2,1,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,0],[2,2,1,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,0],[2,2,1,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,0],[2,2,1,2],[0,2,2,0]],[[1,2,2,2],[1,3,2,0],[2,2,1,2],[0,2,2,0]],[[1,2,3,1],[1,3,2,0],[2,2,1,2],[0,2,2,0]],[[1,3,2,1],[1,3,2,0],[2,2,1,2],[0,2,2,0]],[[2,2,2,1],[1,3,2,0],[2,2,1,2],[0,2,2,0]],[[1,2,2,1],[1,4,2,0],[2,2,1,1],[1,1,2,1]],[[1,2,2,2],[1,3,2,0],[2,2,1,1],[1,1,2,1]],[[1,2,3,1],[1,3,2,0],[2,2,1,1],[1,1,2,1]],[[1,3,2,1],[1,3,2,0],[2,2,1,1],[1,1,2,1]],[[2,2,2,1],[1,3,2,0],[2,2,1,1],[1,1,2,1]],[[1,2,2,1],[1,4,2,0],[2,2,1,1],[0,2,2,1]],[[1,2,2,2],[1,3,2,0],[2,2,1,1],[0,2,2,1]],[[1,2,3,1],[1,3,2,0],[2,2,1,1],[0,2,2,1]],[[1,3,2,1],[1,3,2,0],[2,2,1,1],[0,2,2,1]],[[2,2,2,1],[1,3,2,0],[2,2,1,1],[0,2,2,1]],[[1,2,2,1],[1,4,2,0],[2,2,0,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,0],[2,2,0,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,0],[2,2,0,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,0],[2,2,0,2],[1,2,2,0]],[[1,2,2,1],[1,4,2,0],[2,2,0,2],[1,1,2,1]],[[1,2,2,2],[1,3,2,0],[2,2,0,2],[1,1,2,1]],[[1,2,3,1],[1,3,2,0],[2,2,0,2],[1,1,2,1]],[[1,3,2,1],[1,3,2,0],[2,2,0,2],[1,1,2,1]],[[2,2,2,1],[1,3,2,0],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[1,4,2,0],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[1,3,2,0],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[1,3,2,0],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[1,3,2,0],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[1,3,2,0],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[1,4,2,0],[2,2,0,1],[1,2,2,1]],[[1,2,3,1],[1,3,2,0],[2,2,0,1],[1,2,2,1]],[[1,3,2,1],[1,3,2,0],[2,2,0,1],[1,2,2,1]],[[2,2,2,1],[1,3,2,0],[2,2,0,1],[1,2,2,1]],[[1,2,2,1],[1,4,2,0],[2,1,3,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,0],[2,1,3,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,0],[2,1,3,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,0],[2,1,3,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,0],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,0],[2,1,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,0],[2,1,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,0],[2,1,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,0],[2,1,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,0],[2,1,3,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,0],[2,1,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,0],[2,1,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,0],[2,1,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,0],[2,1,3,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,0],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[1,4,2,0],[2,1,3,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,0],[2,1,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,0],[2,1,3,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,0],[2,1,3,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,0],[2,1,3,2],[1,0,1,1]],[[1,2,2,1],[1,4,2,0],[2,1,3,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,0],[2,1,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,0],[2,1,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,0],[2,1,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,0],[2,1,3,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,0],[2,1,3,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,0],[2,1,3,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,0],[2,1,3,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,0],[2,1,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,0],[2,1,3,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,0],[2,1,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,0],[2,1,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,0],[2,1,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,0],[2,1,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,0],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,0],[2,1,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,0],[2,1,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,0],[2,1,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,0],[2,1,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,0],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,0],[2,1,3,2],[0,0,2,1]],[[1,2,2,2],[1,3,2,0],[2,1,3,2],[0,0,2,1]],[[1,2,3,1],[1,3,2,0],[2,1,3,2],[0,0,2,1]],[[1,3,2,1],[1,3,2,0],[2,1,3,2],[0,0,2,1]],[[2,2,2,1],[1,3,2,0],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[1,4,2,0],[2,1,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,2,0],[2,1,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,2,0],[2,1,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,2,0],[2,1,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,2,0],[2,1,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,2,0],[2,1,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,2,0],[2,1,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,2,0],[2,1,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,2,0],[2,1,3,1],[1,0,2,1]],[[2,2,2,1],[1,3,2,0],[2,1,3,1],[1,0,2,1]],[[1,2,2,1],[1,4,2,0],[2,1,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,2,0],[2,1,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,2,0],[2,1,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,2,0],[2,1,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,2,0],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,2,0],[2,1,3,1],[0,1,2,1]],[[1,2,2,2],[1,3,2,0],[2,1,3,1],[0,1,2,1]],[[1,2,3,1],[1,3,2,0],[2,1,3,1],[0,1,2,1]],[[1,3,2,1],[1,3,2,0],[2,1,3,1],[0,1,2,1]],[[2,2,2,1],[1,3,2,0],[2,1,3,1],[0,1,2,1]],[[1,2,2,1],[1,4,2,0],[2,1,2,2],[1,2,1,0]],[[1,2,2,2],[1,3,2,0],[2,1,2,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,0],[2,1,2,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,0],[2,1,2,2],[1,2,1,0]],[[2,2,2,1],[1,3,2,0],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[1,4,2,0],[2,1,2,2],[1,2,0,1]],[[1,2,2,2],[1,3,2,0],[2,1,2,2],[1,2,0,1]],[[1,2,3,1],[1,3,2,0],[2,1,2,2],[1,2,0,1]],[[1,3,2,1],[1,3,2,0],[2,1,2,2],[1,2,0,1]],[[2,2,2,1],[1,3,2,0],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[1,4,2,0],[2,1,2,1],[1,2,1,1]],[[1,2,2,2],[1,3,2,0],[2,1,2,1],[1,2,1,1]],[[1,2,3,1],[1,3,2,0],[2,1,2,1],[1,2,1,1]],[[1,3,2,1],[1,3,2,0],[2,1,2,1],[1,2,1,1]],[[2,2,2,1],[1,3,2,0],[2,1,2,1],[1,2,1,1]],[[1,2,2,1],[1,4,2,0],[2,1,1,2],[1,2,2,0]],[[1,2,2,2],[1,3,2,0],[2,1,1,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,0],[2,1,1,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,0],[2,1,1,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,0],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[1,4,2,0],[2,1,1,1],[1,2,2,1]],[[1,2,2,2],[1,3,2,0],[2,1,1,1],[1,2,2,1]],[[1,2,3,1],[1,3,2,0],[2,1,1,1],[1,2,2,1]],[[1,3,2,1],[1,3,2,0],[2,1,1,1],[1,2,2,1]],[[2,2,2,1],[1,3,2,0],[2,1,1,1],[1,2,2,1]],[[1,2,2,1],[1,4,2,0],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[1,3,2,0],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[1,3,2,0],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[1,3,2,0],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[1,3,2,0],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,4,2,0],[2,0,3,2],[1,2,1,0]],[[1,2,2,2],[1,3,2,0],[2,0,3,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,0],[2,0,3,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,0],[2,0,3,2],[1,2,1,0]],[[2,2,2,1],[1,3,2,0],[2,0,3,2],[1,2,1,0]],[[1,2,2,1],[1,4,2,0],[2,0,3,2],[1,2,0,1]],[[1,2,2,2],[1,3,2,0],[2,0,3,2],[1,2,0,1]],[[1,2,3,1],[1,3,2,0],[2,0,3,2],[1,2,0,1]],[[1,3,2,1],[1,3,2,0],[2,0,3,2],[1,2,0,1]],[[2,2,2,1],[1,3,2,0],[2,0,3,2],[1,2,0,1]],[[1,2,2,1],[1,4,2,0],[2,0,3,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,0],[2,0,3,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,0],[2,0,3,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,0],[2,0,3,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,0],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,0],[2,0,3,2],[1,1,1,1]],[[1,2,2,2],[1,3,2,0],[2,0,3,2],[1,1,1,1]],[[1,2,3,1],[1,3,2,0],[2,0,3,2],[1,1,1,1]],[[1,3,2,1],[1,3,2,0],[2,0,3,2],[1,1,1,1]],[[2,2,2,1],[1,3,2,0],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[1,4,2,0],[2,0,3,2],[0,2,2,0]],[[1,2,2,2],[1,3,2,0],[2,0,3,2],[0,2,2,0]],[[1,2,3,1],[1,3,2,0],[2,0,3,2],[0,2,2,0]],[[1,3,2,1],[1,3,2,0],[2,0,3,2],[0,2,2,0]],[[2,2,2,1],[1,3,2,0],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[1,4,2,0],[2,0,3,2],[0,2,1,1]],[[1,2,2,2],[1,3,2,0],[2,0,3,2],[0,2,1,1]],[[1,2,3,1],[1,3,2,0],[2,0,3,2],[0,2,1,1]],[[1,3,2,1],[1,3,2,0],[2,0,3,2],[0,2,1,1]],[[2,2,2,1],[1,3,2,0],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[1,4,2,0],[2,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,2,0],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,2,0],[2,0,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,2,0],[2,0,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,2,0],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,4,2,0],[2,0,3,1],[1,1,2,1]],[[1,2,2,2],[1,3,2,0],[2,0,3,1],[1,1,2,1]],[[1,2,3,1],[1,3,2,0],[2,0,3,1],[1,1,2,1]],[[1,3,2,1],[1,3,2,0],[2,0,3,1],[1,1,2,1]],[[2,2,2,1],[1,3,2,0],[2,0,3,1],[1,1,2,1]],[[1,2,2,1],[1,4,2,0],[2,0,3,1],[0,2,2,1]],[[1,2,2,2],[1,3,2,0],[2,0,3,1],[0,2,2,1]],[[1,2,3,1],[1,3,2,0],[2,0,3,1],[0,2,2,1]],[[1,3,2,1],[1,3,2,0],[2,0,3,1],[0,2,2,1]],[[2,2,2,1],[1,3,2,0],[2,0,3,1],[0,2,2,1]],[[1,2,2,1],[1,4,2,0],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,2,0],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,0],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,0],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,0],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,4,2,0],[2,0,2,1],[1,2,2,1]],[[1,2,2,2],[1,3,2,0],[2,0,2,1],[1,2,2,1]],[[1,2,3,1],[1,3,2,0],[2,0,2,1],[1,2,2,1]],[[1,3,2,1],[1,3,2,0],[2,0,2,1],[1,2,2,1]],[[0,2,1,1],[2,2,0,0],[3,3,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,0,0],[2,3,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,0,0],[2,3,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,0,0],[2,3,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,0,0],[3,3,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,0],[2,3,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,0,0],[2,3,3,2],[1,3,2,0]],[[2,2,2,1],[1,3,2,0],[2,0,2,1],[1,2,2,1]],[[1,2,2,1],[1,4,2,0],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,2,0],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,2,0],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,2,0],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,2,0],[2,0,1,2],[1,2,2,1]],[[0,2,1,2],[2,2,0,2],[1,2,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,3],[1,2,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[2,2,0,2],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[2,2,0,2],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[2,2,0,2],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[2,2,0,2],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,0,2],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,0,2],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,0,2],[1,2,3,1],[1,2,2,2]],[[0,2,1,2],[2,2,0,2],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,0,3],[1,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,0,2],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[2,2,0,2],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[2,2,0,2],[1,2,3,2],[1,2,1,2]],[[0,2,1,2],[2,2,0,2],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,3],[1,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,0,2],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,0,2],[1,2,3,2],[1,2,3,0]],[[0,2,1,2],[2,2,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,3],[1,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[1,3,1,3],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,2,0,2],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,2,0,2],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,2,0,2],[1,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,2,0,2],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,2,0,2],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,2,0,2],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,2,0,2],[1,3,2,1],[1,2,2,2]],[[0,2,1,2],[2,2,0,2],[1,3,2,2],[1,1,2,1]],[[0,2,1,1],[2,2,0,3],[1,3,2,2],[1,1,2,1]],[[0,2,1,1],[2,2,0,2],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[2,2,0,2],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[2,2,0,2],[1,3,2,2],[1,1,2,2]],[[0,2,1,1],[2,2,0,2],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,2,0,2],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,2,0,2],[1,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,2,0,2],[1,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,2,0,2],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[2,2,0,2],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[2,2,0,2],[1,3,3,1],[1,1,2,2]],[[0,2,1,1],[2,2,0,2],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,0,2],[1,3,4,1],[1,2,1,1]],[[0,2,1,1],[2,2,0,2],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,2,0,2],[1,3,3,1],[1,3,1,1]],[[0,2,1,2],[2,2,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,0,3],[1,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,0,2],[1,4,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,0,2],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[2,2,0,2],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[2,2,0,2],[1,3,3,2],[1,1,1,2]],[[0,2,1,2],[2,2,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,0,3],[1,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,0,2],[1,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,0,2],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[2,2,0,2],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[2,2,0,2],[1,3,3,2],[1,1,3,0]],[[0,2,1,2],[2,2,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,0,3],[1,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,0,2],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,0,2],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[2,2,0,2],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[2,2,0,2],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,2,0,2],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,2,0,2],[1,3,3,2],[1,2,0,2]],[[0,2,1,2],[2,2,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,0,3],[1,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,0,2],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,0,2],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[2,2,0,2],[1,3,3,3],[1,2,1,0]],[[0,2,1,1],[2,2,0,2],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,2,0,2],[1,3,3,2],[1,3,1,0]],[[0,2,1,2],[2,2,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[3,2,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,3],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[3,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,1,2,3],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,1,2,2],[2,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,1,2,2],[1,3,2,1]],[[0,2,1,1],[2,2,0,2],[2,1,2,2],[1,2,3,1]],[[0,2,1,1],[2,2,0,2],[2,1,2,2],[1,2,2,2]],[[0,2,1,1],[3,2,0,2],[2,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[3,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,1,4,1],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,1,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,1,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,0,2],[2,1,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,0,2],[2,1,3,1],[1,2,2,2]],[[0,2,1,2],[2,2,0,2],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,0,3],[2,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,0,2],[2,1,4,2],[1,2,1,1]],[[0,2,1,1],[2,2,0,2],[2,1,3,3],[1,2,1,1]],[[0,2,1,1],[2,2,0,2],[2,1,3,2],[1,2,1,2]],[[0,2,1,2],[2,2,0,2],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[3,2,0,2],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,3],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[3,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,1,4,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,1,3,3],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,1,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,1,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,0,2],[2,1,3,2],[1,2,3,0]],[[0,2,1,2],[2,2,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[3,2,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,3],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[3,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,1,3],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[2,2,0,2],[2,2,1,2],[1,2,2,2]],[[0,2,1,1],[3,2,0,2],[2,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[3,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,2,1],[2,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,2,1],[1,3,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,2,1],[1,2,3,1]],[[0,2,1,1],[2,2,0,2],[2,2,2,1],[1,2,2,2]],[[0,2,1,2],[2,2,0,2],[2,2,2,2],[0,2,2,1]],[[0,2,1,1],[2,2,0,3],[2,2,2,2],[0,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[2,2,0,2],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[3,2,0,2],[2,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[3,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,2,2,2],[2,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,2,2,2],[1,3,2,0]],[[0,2,1,1],[2,2,0,2],[2,2,2,2],[1,2,3,0]],[[0,2,1,1],[2,2,0,2],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[2,2,0,2],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[2,2,0,2],[2,2,3,1],[0,2,2,2]],[[0,2,1,1],[3,2,0,2],[2,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,0,2],[3,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,0,2],[2,2,3,1],[2,2,1,1]],[[0,2,1,1],[2,2,0,2],[2,2,3,1],[1,3,1,1]],[[0,2,1,2],[2,2,0,2],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,0,3],[2,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,0,2],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[2,2,0,2],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[2,2,0,2],[2,2,3,2],[0,2,1,2]],[[0,2,1,2],[2,2,0,2],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,0,3],[2,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[2,2,0,2],[2,2,3,2],[0,2,3,0]],[[0,2,1,1],[3,2,0,2],[2,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,0,2],[3,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,0,2],[2,2,3,2],[2,2,0,1]],[[0,2,1,1],[2,2,0,2],[2,2,3,2],[1,3,0,1]],[[0,2,1,1],[3,2,0,2],[2,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,0,2],[3,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,0,2],[2,2,3,2],[2,2,1,0]],[[0,2,1,1],[2,2,0,2],[2,2,3,2],[1,3,1,0]],[[0,2,1,1],[3,2,0,2],[2,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[3,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,0,2],[2,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,0,2],[1,3,2,1]],[[0,2,1,1],[3,2,0,2],[2,3,1,1],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[3,3,1,1],[1,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,1,1],[2,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,1,1],[1,3,2,1]],[[0,2,1,2],[2,2,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[3,2,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,0,3],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,0,2],[3,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,1,3],[0,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[2,2,0,2],[2,3,1,2],[0,2,2,2]],[[0,2,1,1],[3,2,0,2],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,0,2],[3,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,0,2],[2,4,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,1,2],[2,1,2,1]],[[0,2,1,1],[3,2,0,2],[2,3,1,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[3,3,1,2],[1,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,1,2],[2,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,1,2],[1,3,2,0]],[[0,2,1,1],[3,2,0,2],[2,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,2,0,2],[3,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[2,2,0,2],[2,3,2,1],[0,2,2,2]],[[0,2,1,1],[3,2,0,2],[2,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,2,0,2],[3,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,2,0,2],[2,4,2,1],[1,1,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,2,1],[2,1,2,1]],[[0,2,1,2],[2,2,0,2],[2,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,2,0,3],[2,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,2,0,2],[2,3,2,2],[0,1,2,2]],[[0,2,1,1],[3,2,0,2],[2,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,0,2],[3,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,2,2],[0,2,3,0]],[[0,2,1,2],[2,2,0,2],[2,3,2,2],[1,0,2,1]],[[0,2,1,1],[2,2,0,3],[2,3,2,2],[1,0,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[2,2,0,2],[2,3,2,2],[1,0,2,2]],[[0,2,1,1],[3,2,0,2],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,0,2],[3,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,0,2],[2,4,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[1,3,2,0],[1,4,3,2],[1,1,0,0]],[[1,2,2,1],[1,4,2,0],[1,3,3,2],[1,1,0,0]],[[1,2,2,2],[1,3,2,0],[1,3,3,2],[1,1,0,0]],[[1,2,3,1],[1,3,2,0],[1,3,3,2],[1,1,0,0]],[[1,3,2,1],[1,3,2,0],[1,3,3,2],[1,1,0,0]],[[2,2,2,1],[1,3,2,0],[1,3,3,2],[1,1,0,0]],[[0,2,1,1],[3,2,0,2],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,2,0,2],[3,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,2,0,2],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,1],[0,1,2,2]],[[0,2,1,1],[3,2,0,2],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,0,2],[3,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,0,2],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,0,2],[2,3,4,1],[0,2,1,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,1],[0,3,1,1]],[[0,2,1,1],[3,2,0,2],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,0,2],[3,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,0,2],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,1],[2,0,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,1],[1,0,2,2]],[[0,2,1,1],[3,2,0,2],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,0,2],[3,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,0,2],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,0,2],[2,3,4,1],[1,1,1,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,1],[2,1,1,1]],[[0,2,1,1],[3,2,0,2],[2,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,0,2],[3,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,0,2],[2,4,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,1],[2,2,0,1]],[[0,2,1,2],[2,2,0,2],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,0,3],[2,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[0,0,2,2]],[[0,2,1,2],[2,2,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[3,2,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,0,3],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,0,2],[3,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,0,2],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,0,2],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[0,1,1,2]],[[0,2,1,2],[2,2,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[3,2,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,0,3],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,0,2],[3,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,0,2],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[0,1,3,0]],[[0,2,1,2],[2,2,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[3,2,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,0,3],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,0,2],[3,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,0,2],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,0,2],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[0,2,0,2]],[[0,2,1,2],[2,2,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[3,2,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,0,3],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,0,2],[3,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,0,2],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,0,2],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,2,0,2],[2,3,3,3],[0,2,1,0]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[0,3,1,0]],[[0,2,1,2],[2,2,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[3,2,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,0,3],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,0,2],[3,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,0,2],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,0,2],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[2,0,1,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[1,0,1,2]],[[0,2,1,2],[2,2,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[3,2,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,0,3],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,0,2],[3,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,0,2],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[2,0,2,0]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[1,0,3,0]],[[0,2,1,2],[2,2,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[3,2,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,0,3],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,0,2],[3,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,0,2],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,0,2],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[2,1,0,1]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[1,1,0,2]],[[0,2,1,2],[2,2,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[3,2,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,0,3],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,0,2],[3,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,0,2],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,0,2],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[2,2,0,2],[2,3,3,3],[1,1,1,0]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[2,1,1,0]],[[0,2,1,1],[3,2,0,2],[2,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,2,0,2],[3,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,2,0,2],[2,4,3,2],[1,2,0,0]],[[0,2,1,1],[2,2,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,3,2,0],[1,4,3,2],[0,2,0,0]],[[1,2,2,1],[1,4,2,0],[1,3,3,2],[0,2,0,0]],[[1,2,2,2],[1,3,2,0],[1,3,3,2],[0,2,0,0]],[[1,2,3,1],[1,3,2,0],[1,3,3,2],[0,2,0,0]],[[1,3,2,1],[1,3,2,0],[1,3,3,2],[0,2,0,0]],[[2,2,2,1],[1,3,2,0],[1,3,3,2],[0,2,0,0]],[[0,2,1,1],[2,2,1,0],[1,4,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,1,0],[1,3,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,1,0],[1,3,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,1,0],[1,3,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,1,0],[1,3,3,1],[1,2,2,2]],[[0,2,1,1],[2,2,1,0],[1,4,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,1,0],[1,3,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,1,0],[1,3,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,1,0],[1,3,3,2],[1,2,3,0]],[[0,2,1,1],[3,2,1,0],[2,2,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,1,0],[3,2,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,1,0],[2,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,1,0],[2,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,1,0],[2,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,1,0],[2,2,3,1],[1,2,2,2]],[[0,2,1,1],[3,2,1,0],[2,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,1,0],[3,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,1,0],[2,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,1,0],[2,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,1,0],[2,2,3,2],[1,2,3,0]],[[0,2,1,1],[3,2,1,0],[2,3,3,1],[0,2,2,1]],[[0,2,1,1],[2,2,1,0],[3,3,3,1],[0,2,2,1]],[[0,2,1,1],[2,2,1,0],[2,4,3,1],[0,2,2,1]],[[0,2,1,1],[2,2,1,0],[2,3,3,1],[0,3,2,1]],[[0,2,1,1],[2,2,1,0],[2,3,3,1],[0,2,3,1]],[[0,2,1,1],[2,2,1,0],[2,3,3,1],[0,2,2,2]],[[0,2,1,1],[3,2,1,0],[2,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,2,1,0],[3,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,2,1,0],[2,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,2,1,0],[2,3,3,1],[2,1,2,1]],[[0,2,1,1],[3,2,1,0],[2,3,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,1,0],[3,3,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,1,0],[2,4,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,1,0],[2,3,3,2],[0,3,2,0]],[[0,2,1,1],[2,2,1,0],[2,3,3,2],[0,2,3,0]],[[0,2,1,1],[3,2,1,0],[2,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,1,0],[3,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,1,0],[2,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,1,0],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[1,4,2,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,2],[1,3,2,0],[1,3,3,2],[0,0,2,0]],[[1,2,3,1],[1,3,2,0],[1,3,3,2],[0,0,2,0]],[[1,3,2,1],[1,3,2,0],[1,3,3,2],[0,0,2,0]],[[2,2,2,1],[1,3,2,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[1,4,2,0],[1,3,3,2],[0,0,1,1]],[[1,2,2,2],[1,3,2,0],[1,3,3,2],[0,0,1,1]],[[1,2,3,1],[1,3,2,0],[1,3,3,2],[0,0,1,1]],[[1,3,2,1],[1,3,2,0],[1,3,3,2],[0,0,1,1]],[[2,2,2,1],[1,3,2,0],[1,3,3,2],[0,0,1,1]],[[1,2,2,1],[1,4,2,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,3,2,0],[1,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,3,2,0],[1,3,3,1],[0,0,2,1]],[[0,2,1,2],[2,2,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,1,3],[1,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,1,2],[1,4,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,1,2],[1,3,0,3],[1,2,2,1]],[[0,2,1,1],[2,2,1,2],[1,3,0,2],[2,2,2,1]],[[0,2,1,1],[2,2,1,2],[1,3,0,2],[1,3,2,1]],[[0,2,1,1],[2,2,1,2],[1,3,0,2],[1,2,3,1]],[[0,2,1,1],[2,2,1,2],[1,3,0,2],[1,2,2,2]],[[1,3,2,1],[1,3,2,0],[1,3,3,1],[0,0,2,1]],[[2,2,2,1],[1,3,2,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[1,3,2,0],[1,4,2,2],[1,2,0,0]],[[1,2,2,1],[1,4,2,0],[1,3,2,2],[1,2,0,0]],[[1,2,2,2],[1,3,2,0],[1,3,2,2],[1,2,0,0]],[[1,2,3,1],[1,3,2,0],[1,3,2,2],[1,2,0,0]],[[1,3,2,1],[1,3,2,0],[1,3,2,2],[1,2,0,0]],[[2,2,2,1],[1,3,2,0],[1,3,2,2],[1,2,0,0]],[[1,2,2,1],[1,3,2,0],[1,4,2,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,0],[1,3,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,0],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,0],[1,3,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[1,3,2,0],[1,4,2,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,0],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,0],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,0],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,0],[1,3,2,2],[1,1,0,1]],[[0,2,1,2],[2,2,1,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[3,2,1,2],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,1,3],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,1,2],[3,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,1,2],[2,2,0,3],[1,2,2,1]],[[0,2,1,1],[2,2,1,2],[2,2,0,2],[2,2,2,1]],[[0,2,1,1],[2,2,1,2],[2,2,0,2],[1,3,2,1]],[[0,2,1,1],[2,2,1,2],[2,2,0,2],[1,2,3,1]],[[0,2,1,1],[2,2,1,2],[2,2,0,2],[1,2,2,2]],[[2,2,2,1],[1,3,2,0],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[1,3,2,0],[1,4,2,2],[1,0,2,0]],[[1,2,2,1],[1,4,2,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,0],[1,3,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,0],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,0],[1,3,2,2],[1,0,2,0]],[[2,2,2,1],[1,3,2,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[1,3,2,0],[1,4,2,2],[1,0,1,1]],[[1,2,2,1],[1,4,2,0],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,0],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,0],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,0],[1,3,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,0],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[1,3,2,0],[1,3,2,2],[0,3,1,0]],[[1,2,2,1],[1,3,2,0],[1,4,2,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,0],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,0],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,0],[1,3,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,3,2,0],[1,3,2,2],[0,3,0,1]],[[1,2,2,1],[1,3,2,0],[1,4,2,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,0],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,0],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,0],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,0],[1,3,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,0],[1,3,2,2],[0,2,0,1]],[[0,2,1,2],[2,2,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[3,2,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,1,3],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,1,2],[3,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,1,2],[2,4,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,1,2],[2,3,0,3],[0,2,2,1]],[[0,2,1,1],[2,2,1,2],[2,3,0,2],[0,3,2,1]],[[0,2,1,1],[2,2,1,2],[2,3,0,2],[0,2,3,1]],[[0,2,1,1],[2,2,1,2],[2,3,0,2],[0,2,2,2]],[[0,2,1,1],[3,2,1,2],[2,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,1,2],[3,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,1,2],[2,4,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[1,3,2,0],[1,4,2,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,0],[1,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,0],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,0],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,0],[1,3,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,0],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,3,2,0],[1,4,2,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,0],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,0],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,0],[1,3,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,2,0],[1,4,2,1],[1,2,0,1]],[[1,2,2,1],[1,4,2,0],[1,3,2,1],[1,2,0,1]],[[1,2,3,1],[1,3,2,0],[1,3,2,1],[1,2,0,1]],[[1,3,2,1],[1,3,2,0],[1,3,2,1],[1,2,0,1]],[[2,2,2,1],[1,3,2,0],[1,3,2,1],[1,2,0,1]],[[1,2,2,1],[1,3,2,0],[1,4,2,1],[1,1,1,1]],[[1,2,2,1],[1,4,2,0],[1,3,2,1],[1,1,1,1]],[[1,2,2,2],[1,3,2,0],[1,3,2,1],[1,1,1,1]],[[1,2,3,1],[1,3,2,0],[1,3,2,1],[1,1,1,1]],[[1,3,2,1],[1,3,2,0],[1,3,2,1],[1,1,1,1]],[[2,2,2,1],[1,3,2,0],[1,3,2,1],[1,1,1,1]],[[1,2,2,1],[1,3,2,0],[1,4,2,1],[1,0,2,1]],[[1,2,2,1],[1,4,2,0],[1,3,2,1],[1,0,2,1]],[[1,2,2,2],[1,3,2,0],[1,3,2,1],[1,0,2,1]],[[1,2,3,1],[1,3,2,0],[1,3,2,1],[1,0,2,1]],[[1,3,2,1],[1,3,2,0],[1,3,2,1],[1,0,2,1]],[[2,2,2,1],[1,3,2,0],[1,3,2,1],[1,0,2,1]],[[1,2,2,1],[1,3,2,0],[1,3,2,1],[0,3,1,1]],[[1,2,2,1],[1,3,2,0],[1,4,2,1],[0,2,1,1]],[[1,2,2,1],[1,4,2,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,2],[1,3,2,0],[1,3,2,1],[0,2,1,1]],[[1,2,3,1],[1,3,2,0],[1,3,2,1],[0,2,1,1]],[[1,3,2,1],[1,3,2,0],[1,3,2,1],[0,2,1,1]],[[2,2,2,1],[1,3,2,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,1],[1,3,2,0],[1,4,2,1],[0,1,2,1]],[[1,2,2,1],[1,4,2,0],[1,3,2,1],[0,1,2,1]],[[1,2,2,2],[1,3,2,0],[1,3,2,1],[0,1,2,1]],[[1,2,3,1],[1,3,2,0],[1,3,2,1],[0,1,2,1]],[[1,3,2,1],[1,3,2,0],[1,3,2,1],[0,1,2,1]],[[2,2,2,1],[1,3,2,0],[1,3,2,1],[0,1,2,1]],[[1,2,2,1],[1,3,2,0],[1,4,1,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,0],[1,3,1,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,0],[1,3,1,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,0],[1,3,1,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,0],[1,3,1,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,0],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[1,3,2,0],[1,3,1,2],[0,2,3,0]],[[1,2,2,1],[1,3,2,0],[1,3,1,2],[0,3,2,0]],[[1,2,2,1],[1,3,2,0],[1,4,1,2],[0,2,2,0]],[[1,2,2,1],[1,4,2,0],[1,3,1,2],[0,2,2,0]],[[1,2,2,2],[1,3,2,0],[1,3,1,2],[0,2,2,0]],[[1,2,3,1],[1,3,2,0],[1,3,1,2],[0,2,2,0]],[[1,3,2,1],[1,3,2,0],[1,3,1,2],[0,2,2,0]],[[2,2,2,1],[1,3,2,0],[1,3,1,2],[0,2,2,0]],[[1,2,2,1],[1,3,2,0],[1,4,1,1],[1,1,2,1]],[[1,2,2,1],[1,4,2,0],[1,3,1,1],[1,1,2,1]],[[1,2,2,2],[1,3,2,0],[1,3,1,1],[1,1,2,1]],[[1,2,3,1],[1,3,2,0],[1,3,1,1],[1,1,2,1]],[[1,3,2,1],[1,3,2,0],[1,3,1,1],[1,1,2,1]],[[2,2,2,1],[1,3,2,0],[1,3,1,1],[1,1,2,1]],[[1,2,2,1],[1,3,2,0],[1,3,1,1],[0,2,2,2]],[[1,2,2,1],[1,3,2,0],[1,3,1,1],[0,2,3,1]],[[1,2,2,1],[1,3,2,0],[1,3,1,1],[0,3,2,1]],[[1,2,2,1],[1,3,2,0],[1,4,1,1],[0,2,2,1]],[[1,2,2,1],[1,4,2,0],[1,3,1,1],[0,2,2,1]],[[1,2,2,2],[1,3,2,0],[1,3,1,1],[0,2,2,1]],[[1,2,3,1],[1,3,2,0],[1,3,1,1],[0,2,2,1]],[[1,3,2,1],[1,3,2,0],[1,3,1,1],[0,2,2,1]],[[2,2,2,1],[1,3,2,0],[1,3,1,1],[0,2,2,1]],[[1,2,2,1],[1,3,2,0],[1,4,0,2],[1,1,2,1]],[[1,2,2,1],[1,4,2,0],[1,3,0,2],[1,1,2,1]],[[1,2,2,2],[1,3,2,0],[1,3,0,2],[1,1,2,1]],[[1,2,3,1],[1,3,2,0],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[1,3,2,0],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[1,3,2,0],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[1,3,2,0],[1,3,0,2],[0,2,2,2]],[[1,2,2,1],[1,3,2,0],[1,3,0,2],[0,2,3,1]],[[1,2,2,1],[1,3,2,0],[1,3,0,2],[0,3,2,1]],[[1,2,2,1],[1,3,2,0],[1,3,0,3],[0,2,2,1]],[[1,2,2,1],[1,3,2,0],[1,4,0,2],[0,2,2,1]],[[1,2,2,1],[1,4,2,0],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[1,3,2,0],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[1,3,2,0],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[1,3,2,0],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[1,3,2,0],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[1,4,2,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,2],[1,3,2,0],[1,2,3,2],[1,1,1,0]],[[1,2,3,1],[1,3,2,0],[1,2,3,2],[1,1,1,0]],[[1,3,2,1],[1,3,2,0],[1,2,3,2],[1,1,1,0]],[[2,2,2,1],[1,3,2,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[1,4,2,0],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,2,0],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,2,0],[1,2,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,2,0],[1,2,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,2,0],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,4,2,0],[1,2,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,2,0],[1,2,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,2,0],[1,2,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,2,0],[1,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,2,0],[1,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[1,2,2,2],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[1,2,2,2],[1,3,2,1]],[[0,2,1,1],[2,2,2,0],[1,2,2,2],[1,2,3,1]],[[0,2,1,1],[2,2,2,0],[1,2,2,2],[1,2,2,2]],[[0,2,1,1],[2,2,2,0],[1,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[1,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[1,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,2,0],[1,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,2,0],[1,2,3,1],[1,2,2,2]],[[0,2,1,1],[2,2,2,0],[1,2,4,2],[1,2,1,1]],[[0,2,1,1],[2,2,2,0],[1,2,3,3],[1,2,1,1]],[[0,2,1,1],[2,2,2,0],[1,2,3,2],[1,2,1,2]],[[0,2,1,1],[2,2,2,0],[1,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,0],[1,2,3,3],[1,2,2,0]],[[0,2,1,1],[2,2,2,0],[1,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,2,0],[1,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,2,0],[1,2,3,2],[1,2,3,0]],[[0,2,1,1],[2,2,2,0],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,1,3],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,2,2,0],[1,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,2,2,0],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,2,2,0],[1,3,2,1],[1,2,2,2]],[[0,2,1,1],[2,2,2,0],[1,3,2,3],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,2,2],[1,1,3,1]],[[0,2,1,1],[2,2,2,0],[1,3,2,2],[1,1,2,2]],[[0,2,1,1],[2,2,2,0],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,0],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,2,2,0],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,2,2,0],[1,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,2,2,0],[1,4,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,0],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,0],[1,3,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,0],[1,2,3,1]],[[0,2,1,1],[2,2,2,0],[1,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,4,1],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,1],[1,1,3,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,1],[1,1,2,2]],[[0,2,1,1],[2,2,2,0],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,2,0],[1,3,4,1],[1,2,1,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,1],[1,3,1,1]],[[0,2,1,1],[2,2,2,0],[1,4,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,2,0],[1,3,4,2],[1,1,1,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,3],[1,1,1,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,2],[1,1,1,2]],[[0,2,1,1],[2,2,2,0],[1,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,2,0],[1,3,4,2],[1,1,2,0]],[[0,2,1,1],[2,2,2,0],[1,3,3,3],[1,1,2,0]],[[0,2,1,1],[2,2,2,0],[1,3,3,2],[1,1,3,0]],[[0,2,1,1],[2,2,2,0],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,2,0],[1,3,4,2],[1,2,0,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,3],[1,2,0,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,2,2,0],[1,3,3,2],[1,2,0,2]],[[0,2,1,1],[2,2,2,0],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,2,0],[1,3,4,2],[1,2,1,0]],[[0,2,1,1],[2,2,2,0],[1,3,3,3],[1,2,1,0]],[[0,2,1,1],[2,2,2,0],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,2,2,0],[1,3,3,2],[1,3,1,0]],[[2,2,2,1],[1,3,2,0],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[1,4,2,0],[1,2,3,2],[1,0,1,1]],[[1,2,2,2],[1,3,2,0],[1,2,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,2,0],[1,2,3,2],[1,0,1,1]],[[1,3,2,1],[1,3,2,0],[1,2,3,2],[1,0,1,1]],[[2,2,2,1],[1,3,2,0],[1,2,3,2],[1,0,1,1]],[[0,2,1,1],[3,2,2,0],[2,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[3,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,1,2,3],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,1,2,2],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,1,2,2],[1,3,2,1]],[[0,2,1,1],[2,2,2,0],[2,1,2,2],[1,2,3,1]],[[0,2,1,1],[2,2,2,0],[2,1,2,2],[1,2,2,2]],[[0,2,1,1],[3,2,2,0],[2,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[3,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,1,4,1],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,1,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,1,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,2,0],[2,1,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,2,0],[2,1,3,1],[1,2,2,2]],[[0,2,1,1],[2,2,2,0],[2,1,4,2],[1,2,1,1]],[[0,2,1,1],[2,2,2,0],[2,1,3,3],[1,2,1,1]],[[0,2,1,1],[2,2,2,0],[2,1,3,2],[1,2,1,2]],[[0,2,1,1],[3,2,2,0],[2,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,0],[3,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,1,4,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,1,3,3],[1,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,1,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,1,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,2,0],[2,1,3,2],[1,2,3,0]],[[0,2,1,1],[3,2,2,0],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[3,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,1,3],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[2,2,2,0],[2,2,1,2],[1,2,2,2]],[[0,2,1,1],[3,2,2,0],[2,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[3,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,2,1],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,2,1],[1,3,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,2,1],[1,2,3,1]],[[0,2,1,1],[2,2,2,0],[2,2,2,1],[1,2,2,2]],[[0,2,1,1],[2,2,2,0],[2,2,2,3],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,2,2],[0,3,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,2,2],[0,2,3,1]],[[0,2,1,1],[2,2,2,0],[2,2,2,2],[0,2,2,2]],[[0,2,1,1],[3,2,2,0],[2,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,0],[3,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,2,2,2],[2,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,2,2,2],[1,3,2,0]],[[0,2,1,1],[2,2,2,0],[2,2,2,2],[1,2,3,0]],[[0,2,1,1],[3,2,2,0],[2,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[3,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,0],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,0],[1,3,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,0],[1,2,3,1]],[[0,2,1,1],[2,2,2,0],[2,2,4,1],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,1],[0,3,2,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,1],[0,2,3,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,1],[0,2,2,2]],[[0,2,1,1],[3,2,2,0],[2,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,2,0],[3,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,1],[2,2,1,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,1],[1,3,1,1]],[[0,2,1,1],[2,2,2,0],[2,2,4,2],[0,2,1,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,3],[0,2,1,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,2],[0,2,1,2]],[[0,2,1,1],[2,2,2,0],[2,2,4,2],[0,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,2,3,3],[0,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,2,3,2],[0,3,2,0]],[[0,2,1,1],[2,2,2,0],[2,2,3,2],[0,2,3,0]],[[0,2,1,1],[3,2,2,0],[2,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,2,0],[3,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,2],[2,2,0,1]],[[0,2,1,1],[2,2,2,0],[2,2,3,2],[1,3,0,1]],[[0,2,1,1],[3,2,2,0],[2,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,2,0],[3,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,2,0],[2,2,3,2],[2,2,1,0]],[[0,2,1,1],[2,2,2,0],[2,2,3,2],[1,3,1,0]],[[0,2,1,1],[3,2,2,0],[2,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[3,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,0,2],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,0,2],[1,3,2,1]],[[0,2,1,1],[3,2,2,0],[2,3,1,1],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[3,3,1,1],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,1,1],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,1,1],[1,3,2,1]],[[0,2,1,1],[3,2,2,0],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[3,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,1,3],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[2,2,2,0],[2,3,1,2],[0,2,2,2]],[[0,2,1,1],[3,2,2,0],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[3,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[2,4,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,1,2],[2,1,2,1]],[[0,2,1,1],[3,2,2,0],[2,3,1,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,0],[3,3,1,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,1,2],[2,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,1,2],[1,3,2,0]],[[0,2,1,1],[3,2,2,0],[2,3,2,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[3,3,2,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,2,0],[2,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,2,0],[1,3,2,1]],[[0,2,1,1],[3,2,2,0],[2,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[3,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[2,2,2,0],[2,3,2,1],[0,2,2,2]],[[0,2,1,1],[3,2,2,0],[2,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[3,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[2,4,2,1],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,2,1],[2,1,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,2,2,0],[2,3,2,2],[0,1,2,2]],[[0,2,1,1],[3,2,2,0],[2,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,2,0],[3,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,2,2],[0,2,3,0]],[[0,2,1,1],[2,2,2,0],[2,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,2,2],[1,0,3,1]],[[0,2,1,1],[2,2,2,0],[2,3,2,2],[1,0,2,2]],[[0,2,1,1],[3,2,2,0],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,2,0],[3,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,2,0],[2,4,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,2,2],[2,1,2,0]],[[0,2,1,1],[3,2,2,0],[2,3,3,0],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[3,3,3,0],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,4,3,0],[0,2,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,0],[0,3,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,0],[0,2,3,1]],[[0,2,1,1],[3,2,2,0],[2,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[3,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[2,4,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,0],[2,1,2,1]],[[0,2,1,1],[3,2,2,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,2,2,0],[3,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,2,2,0],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,1],[0,1,2,2]],[[0,2,1,1],[3,2,2,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,2,0],[3,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,2,0],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,2,0],[2,3,4,1],[0,2,1,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,1],[0,3,1,1]],[[0,2,1,1],[3,2,2,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,2,0],[3,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,2,0],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,4,1],[1,0,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,1],[2,0,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,1],[1,0,3,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,1],[1,0,2,2]],[[0,2,1,1],[3,2,2,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,2,0],[3,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,2,0],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,2,0],[2,3,4,1],[1,1,1,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,1],[2,1,1,1]],[[0,2,1,1],[3,2,2,0],[2,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,2,0],[3,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,2,0],[2,4,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[1,4,2,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,0],[1,2,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,0],[1,2,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,0],[1,2,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,0],[1,2,3,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,0],[1,2,3,2],[0,2,0,1]],[[1,2,3,1],[1,3,2,0],[1,2,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,0],[2,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[0,0,2,2]],[[0,2,1,1],[3,2,2,0],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,0],[3,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,0],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,0],[2,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[0,1,1,2]],[[0,2,1,1],[3,2,2,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,0],[3,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,0],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[0,1,3,0]],[[0,2,1,1],[3,2,2,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,0],[3,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,0],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,0],[2,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[0,2,0,2]],[[0,2,1,1],[3,2,2,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,0],[3,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,0],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,0],[2,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,0],[2,3,3,3],[0,2,1,0]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[0,3,1,0]],[[1,3,2,1],[1,3,2,0],[1,2,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,0],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[1,4,2,0],[1,2,3,2],[0,1,2,0]],[[0,2,1,1],[3,2,2,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,2,0],[3,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,2,0],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,2,0],[2,3,4,2],[1,0,1,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,3],[1,0,1,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[2,0,1,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[1,0,1,2]],[[0,2,1,1],[3,2,2,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,2,0],[3,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,2,0],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,4,2],[1,0,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,3,3],[1,0,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[2,0,2,0]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[1,0,3,0]],[[0,2,1,1],[3,2,2,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,2,0],[3,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,2,0],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,2,0],[2,3,4,2],[1,1,0,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,3],[1,1,0,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[2,1,0,1]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[1,1,0,2]],[[0,2,1,1],[3,2,2,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,2,0],[3,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,2,0],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,2,0],[2,3,4,2],[1,1,1,0]],[[0,2,1,1],[2,2,2,0],[2,3,3,3],[1,1,1,0]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,2],[1,3,2,0],[1,2,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,0],[1,2,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,0],[1,2,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,0],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,0],[1,2,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,0],[1,2,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,0],[1,2,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,0],[1,2,3,2],[0,1,1,1]],[[0,2,1,1],[3,2,2,0],[2,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,2,2,0],[3,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,2,2,0],[2,4,3,2],[1,2,0,0]],[[0,2,1,1],[2,2,2,0],[2,3,3,2],[2,2,0,0]],[[2,2,2,1],[1,3,2,0],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,0],[1,2,3,2],[0,0,2,1]],[[1,2,2,2],[1,3,2,0],[1,2,3,2],[0,0,2,1]],[[1,2,3,1],[1,3,2,0],[1,2,3,2],[0,0,2,1]],[[1,3,2,1],[1,3,2,0],[1,2,3,2],[0,0,2,1]],[[2,2,2,1],[1,3,2,0],[1,2,3,2],[0,0,2,1]],[[1,2,2,1],[1,4,2,0],[1,2,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,2,0],[1,2,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,2,0],[1,2,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,2,0],[1,2,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,2,0],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,2,0],[1,2,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,2,0],[1,2,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,2,0],[1,2,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,2,0],[1,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,2,1],[1,2,4,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,1],[1,2,3,0],[2,2,2,1]],[[0,2,1,1],[2,2,2,1],[1,2,3,0],[1,3,2,1]],[[0,2,1,1],[2,2,2,1],[1,2,3,0],[1,2,3,1]],[[0,2,1,1],[2,2,2,1],[1,2,3,0],[1,2,2,2]],[[0,2,1,1],[2,2,2,1],[1,2,4,1],[1,2,2,0]],[[0,2,1,1],[2,2,2,1],[1,2,3,1],[2,2,2,0]],[[0,2,1,1],[2,2,2,1],[1,2,3,1],[1,3,2,0]],[[0,2,1,1],[2,2,2,1],[1,2,3,1],[1,2,3,0]],[[2,2,2,1],[1,3,2,0],[1,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,2,1],[1,4,2,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,1],[1,3,2,0],[2,2,2,1]],[[0,2,1,1],[2,2,2,1],[1,3,2,0],[1,3,2,1]],[[0,2,1,1],[2,2,2,1],[1,3,2,0],[1,2,3,1]],[[0,2,1,1],[2,2,2,1],[1,3,2,0],[1,2,2,2]],[[0,2,1,1],[2,2,2,1],[1,4,2,1],[1,2,2,0]],[[0,2,1,1],[2,2,2,1],[1,3,2,1],[2,2,2,0]],[[0,2,1,1],[2,2,2,1],[1,3,2,1],[1,3,2,0]],[[0,2,1,1],[2,2,2,1],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[1,4,2,0],[1,2,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,2,0],[1,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,2,1],[1,4,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,2,1],[1,3,4,0],[1,1,2,1]],[[0,2,1,1],[2,2,2,1],[1,3,3,0],[1,1,3,1]],[[0,2,1,1],[2,2,2,1],[1,3,3,0],[1,1,2,2]],[[0,2,1,1],[2,2,2,1],[1,4,3,0],[1,2,1,1]],[[0,2,1,1],[2,2,2,1],[1,3,4,0],[1,2,1,1]],[[0,2,1,1],[2,2,2,1],[1,3,3,0],[2,2,1,1]],[[0,2,1,1],[2,2,2,1],[1,3,3,0],[1,3,1,1]],[[0,2,1,1],[2,2,2,1],[1,4,3,1],[1,1,2,0]],[[0,2,1,1],[2,2,2,1],[1,3,4,1],[1,1,2,0]],[[0,2,1,1],[2,2,2,1],[1,3,3,1],[1,1,3,0]],[[0,2,1,1],[2,2,2,1],[1,4,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,2,1],[1,3,4,1],[1,2,0,1]],[[0,2,1,1],[2,2,2,1],[1,3,3,1],[2,2,0,1]],[[0,2,1,1],[2,2,2,1],[1,3,3,1],[1,3,0,1]],[[0,2,1,1],[2,2,2,1],[1,4,3,1],[1,2,1,0]],[[0,2,1,1],[2,2,2,1],[1,3,4,1],[1,2,1,0]],[[0,2,1,1],[2,2,2,1],[1,3,3,1],[2,2,1,0]],[[0,2,1,1],[2,2,2,1],[1,3,3,1],[1,3,1,0]],[[1,2,3,1],[1,3,2,0],[1,2,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,2,0],[1,2,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,2,0],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,2,0],[1,2,3,1],[0,1,2,1]],[[1,2,2,2],[1,3,2,0],[1,2,3,1],[0,1,2,1]],[[1,2,3,1],[1,3,2,0],[1,2,3,1],[0,1,2,1]],[[1,3,2,1],[1,3,2,0],[1,2,3,1],[0,1,2,1]],[[2,2,2,1],[1,3,2,0],[1,2,3,1],[0,1,2,1]],[[1,2,2,1],[1,4,2,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,2],[1,3,2,0],[1,1,3,2],[0,2,2,0]],[[1,2,3,1],[1,3,2,0],[1,1,3,2],[0,2,2,0]],[[0,2,1,1],[3,2,2,1],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,1],[3,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,1],[2,1,4,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,1],[2,1,3,0],[2,2,2,1]],[[0,2,1,1],[2,2,2,1],[2,1,3,0],[1,3,2,1]],[[0,2,1,1],[2,2,2,1],[2,1,3,0],[1,2,3,1]],[[0,2,1,1],[2,2,2,1],[2,1,3,0],[1,2,2,2]],[[0,2,1,1],[3,2,2,1],[2,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,2,1],[3,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,2,1],[2,1,4,1],[1,2,2,0]],[[0,2,1,1],[2,2,2,1],[2,1,3,1],[2,2,2,0]],[[0,2,1,1],[2,2,2,1],[2,1,3,1],[1,3,2,0]],[[0,2,1,1],[2,2,2,1],[2,1,3,1],[1,2,3,0]],[[1,3,2,1],[1,3,2,0],[1,1,3,2],[0,2,2,0]],[[2,2,2,1],[1,3,2,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[1,4,2,0],[1,1,3,2],[0,2,1,1]],[[1,2,2,2],[1,3,2,0],[1,1,3,2],[0,2,1,1]],[[1,2,3,1],[1,3,2,0],[1,1,3,2],[0,2,1,1]],[[1,3,2,1],[1,3,2,0],[1,1,3,2],[0,2,1,1]],[[2,2,2,1],[1,3,2,0],[1,1,3,2],[0,2,1,1]],[[0,2,1,1],[3,2,2,1],[2,2,2,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,1],[3,2,2,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,1],[2,2,2,0],[2,2,2,1]],[[0,2,1,1],[2,2,2,1],[2,2,2,0],[1,3,2,1]],[[0,2,1,1],[2,2,2,1],[2,2,2,0],[1,2,3,1]],[[0,2,1,1],[2,2,2,1],[2,2,2,0],[1,2,2,2]],[[0,2,1,1],[3,2,2,1],[2,2,2,1],[1,2,2,0]],[[0,2,1,1],[2,2,2,1],[3,2,2,1],[1,2,2,0]],[[0,2,1,1],[2,2,2,1],[2,2,2,1],[2,2,2,0]],[[0,2,1,1],[2,2,2,1],[2,2,2,1],[1,3,2,0]],[[0,2,1,1],[2,2,2,1],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[1,4,2,0],[1,1,3,1],[0,2,2,1]],[[1,2,2,2],[1,3,2,0],[1,1,3,1],[0,2,2,1]],[[1,2,3,1],[1,3,2,0],[1,1,3,1],[0,2,2,1]],[[0,2,1,1],[2,2,2,1],[2,2,4,0],[0,2,2,1]],[[0,2,1,1],[2,2,2,1],[2,2,3,0],[0,3,2,1]],[[0,2,1,1],[2,2,2,1],[2,2,3,0],[0,2,3,1]],[[0,2,1,1],[2,2,2,1],[2,2,3,0],[0,2,2,2]],[[0,2,1,1],[3,2,2,1],[2,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,2,2,1],[3,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,2,2,1],[2,2,3,0],[2,2,1,1]],[[0,2,1,1],[2,2,2,1],[2,2,3,0],[1,3,1,1]],[[0,2,1,1],[2,2,2,1],[2,2,4,1],[0,2,2,0]],[[0,2,1,1],[2,2,2,1],[2,2,3,1],[0,3,2,0]],[[0,2,1,1],[2,2,2,1],[2,2,3,1],[0,2,3,0]],[[0,2,1,1],[3,2,2,1],[2,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,2,1],[3,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,2,1],[2,2,3,1],[2,2,0,1]],[[0,2,1,1],[2,2,2,1],[2,2,3,1],[1,3,0,1]],[[0,2,1,1],[3,2,2,1],[2,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,2,2,1],[3,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,2,2,1],[2,2,3,1],[2,2,1,0]],[[0,2,1,1],[2,2,2,1],[2,2,3,1],[1,3,1,0]],[[1,3,2,1],[1,3,2,0],[1,1,3,1],[0,2,2,1]],[[2,2,2,1],[1,3,2,0],[1,1,3,1],[0,2,2,1]],[[1,2,2,1],[1,4,2,0],[1,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,3,2,0],[1,0,3,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,0],[1,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,0],[1,0,3,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,0],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,4,2,0],[1,0,3,2],[1,2,1,1]],[[1,2,2,2],[1,3,2,0],[1,0,3,2],[1,2,1,1]],[[1,2,3,1],[1,3,2,0],[1,0,3,2],[1,2,1,1]],[[1,3,2,1],[1,3,2,0],[1,0,3,2],[1,2,1,1]],[[2,2,2,1],[1,3,2,0],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,4,2,0],[1,0,3,1],[1,2,2,1]],[[1,2,2,2],[1,3,2,0],[1,0,3,1],[1,2,2,1]],[[1,2,3,1],[1,3,2,0],[1,0,3,1],[1,2,2,1]],[[1,3,2,1],[1,3,2,0],[1,0,3,1],[1,2,2,1]],[[2,2,2,1],[1,3,2,0],[1,0,3,1],[1,2,2,1]],[[0,2,1,1],[3,2,2,1],[2,3,1,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,1],[3,3,1,0],[1,2,2,1]],[[0,2,1,1],[2,2,2,1],[2,3,1,0],[2,2,2,1]],[[0,2,1,1],[2,2,2,1],[2,3,1,0],[1,3,2,1]],[[0,2,1,1],[3,2,2,1],[2,3,1,1],[1,2,2,0]],[[0,2,1,1],[2,2,2,1],[3,3,1,1],[1,2,2,0]],[[0,2,1,1],[2,2,2,1],[2,3,1,1],[2,2,2,0]],[[0,2,1,1],[2,2,2,1],[2,3,1,1],[1,3,2,0]],[[0,2,1,1],[3,2,2,1],[2,3,2,0],[0,2,2,1]],[[0,2,1,1],[2,2,2,1],[3,3,2,0],[0,2,2,1]],[[0,2,1,1],[2,2,2,1],[2,4,2,0],[0,2,2,1]],[[0,2,1,1],[2,2,2,1],[2,3,2,0],[0,3,2,1]],[[0,2,1,1],[2,2,2,1],[2,3,2,0],[0,2,3,1]],[[0,2,1,1],[2,2,2,1],[2,3,2,0],[0,2,2,2]],[[0,2,1,1],[3,2,2,1],[2,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,2,2,1],[3,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,2,2,1],[2,4,2,0],[1,1,2,1]],[[0,2,1,1],[2,2,2,1],[2,3,2,0],[2,1,2,1]],[[0,2,1,1],[3,2,2,1],[2,3,2,1],[0,2,2,0]],[[0,2,1,1],[2,2,2,1],[3,3,2,1],[0,2,2,0]],[[0,2,1,1],[2,2,2,1],[2,4,2,1],[0,2,2,0]],[[0,2,1,1],[2,2,2,1],[2,3,2,1],[0,3,2,0]],[[0,2,1,1],[2,2,2,1],[2,3,2,1],[0,2,3,0]],[[0,2,1,1],[3,2,2,1],[2,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,2,2,1],[3,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,2,2,1],[2,4,2,1],[1,1,2,0]],[[0,2,1,1],[2,2,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[1,3,2,0],[0,4,3,2],[1,2,0,0]],[[1,2,2,1],[1,4,2,0],[0,3,3,2],[1,2,0,0]],[[1,2,2,2],[1,3,2,0],[0,3,3,2],[1,2,0,0]],[[1,2,3,1],[1,3,2,0],[0,3,3,2],[1,2,0,0]],[[1,3,2,1],[1,3,2,0],[0,3,3,2],[1,2,0,0]],[[2,2,2,1],[1,3,2,0],[0,3,3,2],[1,2,0,0]],[[0,2,1,1],[3,2,2,1],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,2,1],[3,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,2,1],[2,4,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,2,1],[2,3,4,0],[0,1,2,1]],[[0,2,1,1],[2,2,2,1],[2,3,3,0],[0,1,3,1]],[[0,2,1,1],[2,2,2,1],[2,3,3,0],[0,1,2,2]],[[0,2,1,1],[3,2,2,1],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,2,1],[3,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,2,1],[2,4,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,2,1],[2,3,4,0],[0,2,1,1]],[[0,2,1,1],[2,2,2,1],[2,3,3,0],[0,3,1,1]],[[0,2,1,1],[3,2,2,1],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,2,2,1],[3,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,2,2,1],[2,4,3,0],[1,0,2,1]],[[0,2,1,1],[2,2,2,1],[2,3,4,0],[1,0,2,1]],[[0,2,1,1],[2,2,2,1],[2,3,3,0],[2,0,2,1]],[[0,2,1,1],[2,2,2,1],[2,3,3,0],[1,0,3,1]],[[0,2,1,1],[2,2,2,1],[2,3,3,0],[1,0,2,2]],[[0,2,1,1],[3,2,2,1],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,2,2,1],[3,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,2,2,1],[2,4,3,0],[1,1,1,1]],[[0,2,1,1],[2,2,2,1],[2,3,4,0],[1,1,1,1]],[[0,2,1,1],[2,2,2,1],[2,3,3,0],[2,1,1,1]],[[0,2,1,1],[3,2,2,1],[2,3,3,0],[1,2,0,1]],[[0,2,1,1],[2,2,2,1],[3,3,3,0],[1,2,0,1]],[[0,2,1,1],[2,2,2,1],[2,4,3,0],[1,2,0,1]],[[0,2,1,1],[2,2,2,1],[2,3,3,0],[2,2,0,1]],[[0,2,1,1],[3,2,2,1],[2,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,2,1],[3,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,2,1],[2,4,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,2,1],[2,3,4,1],[0,1,1,1]],[[0,2,1,1],[3,2,2,1],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,2,1],[3,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,2,1],[2,4,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,2,1],[2,3,4,1],[0,1,2,0]],[[0,2,1,1],[2,2,2,1],[2,3,3,1],[0,1,3,0]],[[0,2,1,1],[3,2,2,1],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,2,1],[3,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,2,1],[2,4,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,2,1],[2,3,4,1],[0,2,0,1]],[[0,2,1,1],[2,2,2,1],[2,3,3,1],[0,3,0,1]],[[0,2,1,1],[3,2,2,1],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,2,1],[3,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,2,1],[2,4,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,2,1],[2,3,4,1],[0,2,1,0]],[[0,2,1,1],[2,2,2,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[1,4,2,0],[0,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,3,2,0],[0,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,2,0],[0,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,2,0],[0,3,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,2,0],[0,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,4,2,0],[0,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,3,2,0],[0,3,3,2],[0,2,0,1]],[[0,2,1,1],[3,2,2,1],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,2,2,1],[3,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,2,2,1],[2,4,3,1],[1,0,1,1]],[[0,2,1,1],[2,2,2,1],[2,3,4,1],[1,0,1,1]],[[0,2,1,1],[2,2,2,1],[2,3,3,1],[2,0,1,1]],[[0,2,1,1],[3,2,2,1],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,2,2,1],[3,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,2,2,1],[2,4,3,1],[1,0,2,0]],[[0,2,1,1],[2,2,2,1],[2,3,4,1],[1,0,2,0]],[[0,2,1,1],[2,2,2,1],[2,3,3,1],[2,0,2,0]],[[0,2,1,1],[2,2,2,1],[2,3,3,1],[1,0,3,0]],[[0,2,1,1],[3,2,2,1],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,2,2,1],[3,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,2,2,1],[2,4,3,1],[1,1,0,1]],[[0,2,1,1],[2,2,2,1],[2,3,4,1],[1,1,0,1]],[[0,2,1,1],[2,2,2,1],[2,3,3,1],[2,1,0,1]],[[0,2,1,1],[3,2,2,1],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,2,2,1],[3,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,2,2,1],[2,4,3,1],[1,1,1,0]],[[0,2,1,1],[2,2,2,1],[2,3,4,1],[1,1,1,0]],[[0,2,1,1],[2,2,2,1],[2,3,3,1],[2,1,1,0]],[[1,2,3,1],[1,3,2,0],[0,3,3,2],[0,2,0,1]],[[1,3,2,1],[1,3,2,0],[0,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,2,0],[0,3,3,2],[0,2,0,1]],[[0,2,1,1],[3,2,2,1],[2,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,2,2,1],[3,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,2,2,1],[2,4,3,1],[1,2,0,0]],[[0,2,1,1],[2,2,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[1,4,2,0],[0,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,2,0],[0,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,2,0],[0,3,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,2,0],[0,3,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,2,0],[0,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,4,2,0],[0,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,2,0],[0,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,2,0],[0,3,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,2,0],[0,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,2,0],[0,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,4,2,0],[0,3,3,2],[0,0,2,1]],[[1,2,2,2],[1,3,2,0],[0,3,3,2],[0,0,2,1]],[[1,2,3,1],[1,3,2,0],[0,3,3,2],[0,0,2,1]],[[1,3,2,1],[1,3,2,0],[0,3,3,2],[0,0,2,1]],[[2,2,2,1],[1,3,2,0],[0,3,3,2],[0,0,2,1]],[[1,2,2,1],[1,4,2,0],[0,3,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,2,0],[0,3,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,2,0],[0,3,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,2,0],[0,3,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,2,0],[0,3,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,2,0],[0,3,3,1],[0,1,2,1]],[[1,2,2,2],[1,3,2,0],[0,3,3,1],[0,1,2,1]],[[1,2,3,1],[1,3,2,0],[0,3,3,1],[0,1,2,1]],[[1,3,2,1],[1,3,2,0],[0,3,3,1],[0,1,2,1]],[[2,2,2,1],[1,3,2,0],[0,3,3,1],[0,1,2,1]],[[1,2,2,1],[1,3,2,0],[0,3,2,2],[1,3,1,0]],[[1,2,2,1],[1,3,2,0],[0,3,2,2],[2,2,1,0]],[[1,2,2,1],[1,3,2,0],[0,4,2,2],[1,2,1,0]],[[1,2,2,1],[1,4,2,0],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[1,3,2,0],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,0],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,0],[0,3,2,2],[1,2,1,0]],[[2,2,2,1],[1,3,2,0],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[1,3,2,0],[0,3,2,2],[1,3,0,1]],[[1,2,2,1],[1,3,2,0],[0,3,2,2],[2,2,0,1]],[[1,2,2,1],[1,3,2,0],[0,4,2,2],[1,2,0,1]],[[1,2,2,1],[1,4,2,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[1,3,2,0],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[1,3,2,0],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[1,3,2,0],[0,3,2,2],[1,2,0,1]],[[2,2,2,1],[1,3,2,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[1,3,2,0],[0,4,2,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,0],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,0],[0,3,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,0],[0,3,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,0],[0,3,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,0],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,3,2,0],[0,4,2,2],[1,1,1,1]],[[1,2,2,1],[1,4,2,0],[0,3,2,2],[1,1,1,1]],[[1,2,2,2],[1,3,2,0],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[1,3,2,0],[0,3,2,2],[1,1,1,1]],[[1,3,2,1],[1,3,2,0],[0,3,2,2],[1,1,1,1]],[[2,2,2,1],[1,3,2,0],[0,3,2,2],[1,1,1,1]],[[0,2,1,2],[2,2,2,2],[0,0,3,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,3],[0,0,3,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,2],[0,0,3,3],[1,2,2,1]],[[0,2,1,1],[2,2,2,2],[0,0,3,2],[1,2,3,1]],[[0,2,1,1],[2,2,2,2],[0,0,3,2],[1,2,2,2]],[[0,2,1,2],[2,2,2,2],[0,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,3],[0,1,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,2],[0,1,2,3],[1,2,2,1]],[[0,2,1,1],[2,2,2,2],[0,1,2,2],[2,2,2,1]],[[0,2,1,1],[2,2,2,2],[0,1,2,2],[1,3,2,1]],[[0,2,1,1],[2,2,2,2],[0,1,2,2],[1,2,3,1]],[[0,2,1,1],[2,2,2,2],[0,1,2,2],[1,2,2,2]],[[0,2,1,1],[2,2,2,2],[0,1,4,1],[1,2,2,1]],[[0,2,1,1],[2,2,2,2],[0,1,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,2,2],[0,1,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,2,2],[0,1,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,2,2],[0,1,3,1],[1,2,2,2]],[[0,2,1,2],[2,2,2,2],[0,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,2,3],[0,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,2,2],[0,1,4,2],[1,2,1,1]],[[0,2,1,1],[2,2,2,2],[0,1,3,3],[1,2,1,1]],[[0,2,1,1],[2,2,2,2],[0,1,3,2],[1,2,1,2]],[[0,2,1,2],[2,2,2,2],[0,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,3],[0,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,2],[0,1,4,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,2],[0,1,3,3],[1,2,2,0]],[[0,2,1,1],[2,2,2,2],[0,1,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,2,2],[0,1,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,2,2],[0,1,3,2],[1,2,3,0]],[[0,2,1,2],[2,2,2,2],[0,2,2,2],[1,1,2,1]],[[0,2,1,1],[2,2,2,3],[0,2,2,2],[1,1,2,1]],[[0,2,1,1],[2,2,2,2],[0,2,2,3],[1,1,2,1]],[[0,2,1,1],[2,2,2,2],[0,2,2,2],[1,1,3,1]],[[0,2,1,1],[2,2,2,2],[0,2,2,2],[1,1,2,2]],[[0,2,1,1],[2,2,2,2],[0,2,4,1],[1,1,2,1]],[[0,2,1,1],[2,2,2,2],[0,2,3,1],[1,1,3,1]],[[0,2,1,1],[2,2,2,2],[0,2,3,1],[1,1,2,2]],[[0,2,1,2],[2,2,2,2],[0,2,3,2],[1,0,2,1]],[[0,2,1,1],[2,2,2,3],[0,2,3,2],[1,0,2,1]],[[0,2,1,1],[2,2,2,2],[0,2,4,2],[1,0,2,1]],[[0,2,1,1],[2,2,2,2],[0,2,3,3],[1,0,2,1]],[[0,2,1,1],[2,2,2,2],[0,2,3,2],[1,0,2,2]],[[0,2,1,2],[2,2,2,2],[0,2,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,2,3],[0,2,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,2,2],[0,2,4,2],[1,1,1,1]],[[0,2,1,1],[2,2,2,2],[0,2,3,3],[1,1,1,1]],[[0,2,1,1],[2,2,2,2],[0,2,3,2],[1,1,1,2]],[[0,2,1,2],[2,2,2,2],[0,2,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,2,3],[0,2,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,2,2],[0,2,4,2],[1,1,2,0]],[[0,2,1,1],[2,2,2,2],[0,2,3,3],[1,1,2,0]],[[0,2,1,1],[2,2,2,2],[0,2,3,2],[1,1,3,0]],[[0,2,1,2],[2,2,2,2],[0,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,2,3],[0,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,2,2],[0,2,4,2],[1,2,0,1]],[[0,2,1,1],[2,2,2,2],[0,2,3,3],[1,2,0,1]],[[0,2,1,1],[2,2,2,2],[0,2,3,2],[1,2,0,2]],[[0,2,1,2],[2,2,2,2],[0,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,2,3],[0,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,2,2],[0,2,4,2],[1,2,1,0]],[[0,2,1,1],[2,2,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[1,3,2,0],[0,3,2,1],[1,3,1,1]],[[1,2,2,1],[1,3,2,0],[0,3,2,1],[2,2,1,1]],[[1,2,2,1],[1,3,2,0],[0,4,2,1],[1,2,1,1]],[[1,2,2,1],[1,4,2,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,2],[1,3,2,0],[0,3,2,1],[1,2,1,1]],[[1,2,3,1],[1,3,2,0],[0,3,2,1],[1,2,1,1]],[[1,3,2,1],[1,3,2,0],[0,3,2,1],[1,2,1,1]],[[0,2,1,2],[2,2,2,2],[0,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,2,2,3],[0,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,2,2,2],[0,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,2,2,2],[0,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,2,2,2],[0,3,2,2],[0,1,2,2]],[[2,2,2,1],[1,3,2,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,1],[1,3,2,0],[0,4,2,1],[1,1,2,1]],[[1,2,2,1],[1,4,2,0],[0,3,2,1],[1,1,2,1]],[[1,2,2,2],[1,3,2,0],[0,3,2,1],[1,1,2,1]],[[1,2,3,1],[1,3,2,0],[0,3,2,1],[1,1,2,1]],[[1,3,2,1],[1,3,2,0],[0,3,2,1],[1,1,2,1]],[[2,2,2,1],[1,3,2,0],[0,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,2,2,2],[0,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,2,2,2],[0,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,2,2,2],[0,3,3,1],[0,1,2,2]],[[0,2,1,2],[2,2,2,2],[0,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,2,3],[0,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,2,2],[0,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,2,2,2],[0,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,2,2],[0,3,3,2],[0,0,2,2]],[[0,2,1,2],[2,2,2,2],[0,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,3],[0,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,2],[0,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,2],[0,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,2,2],[0,3,3,2],[0,1,1,2]],[[0,2,1,2],[2,2,2,2],[0,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,3],[0,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,2],[0,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,2],[0,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,2,2,2],[0,3,3,2],[0,1,3,0]],[[0,2,1,2],[2,2,2,2],[0,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,3],[0,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,2],[0,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,2],[0,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,2,2,2],[0,3,3,2],[0,2,0,2]],[[0,2,1,2],[2,2,2,2],[0,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,3],[0,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,2],[0,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,3,2,0],[0,3,1,2],[1,2,3,0]],[[1,2,2,1],[1,3,2,0],[0,3,1,2],[1,3,2,0]],[[1,2,2,1],[1,3,2,0],[0,3,1,2],[2,2,2,0]],[[1,2,2,1],[1,3,2,0],[0,4,1,2],[1,2,2,0]],[[1,2,2,1],[1,4,2,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,2],[1,3,2,0],[0,3,1,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,0],[0,3,1,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,0],[0,3,1,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,1],[1,3,2,0],[0,3,1,1],[1,2,2,2]],[[1,2,2,1],[1,3,2,0],[0,3,1,1],[1,2,3,1]],[[1,2,2,1],[1,3,2,0],[0,3,1,1],[1,3,2,1]],[[1,2,2,1],[1,3,2,0],[0,3,1,1],[2,2,2,1]],[[1,2,2,1],[1,3,2,0],[0,4,1,1],[1,2,2,1]],[[1,2,2,1],[1,4,2,0],[0,3,1,1],[1,2,2,1]],[[1,2,2,2],[1,3,2,0],[0,3,1,1],[1,2,2,1]],[[1,2,3,1],[1,3,2,0],[0,3,1,1],[1,2,2,1]],[[1,3,2,1],[1,3,2,0],[0,3,1,1],[1,2,2,1]],[[2,2,2,1],[1,3,2,0],[0,3,1,1],[1,2,2,1]],[[1,2,2,1],[1,3,2,0],[0,3,0,2],[1,2,2,2]],[[1,2,2,1],[1,3,2,0],[0,3,0,2],[1,2,3,1]],[[1,2,2,1],[1,3,2,0],[0,3,0,2],[1,3,2,1]],[[1,2,2,1],[1,3,2,0],[0,3,0,2],[2,2,2,1]],[[1,2,2,1],[1,3,2,0],[0,3,0,3],[1,2,2,1]],[[1,2,2,1],[1,3,2,0],[0,4,0,2],[1,2,2,1]],[[1,2,2,1],[1,4,2,0],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[1,3,2,0],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[1,3,2,0],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[1,3,2,0],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[1,3,2,0],[0,3,0,2],[1,2,2,1]],[[0,2,1,2],[2,2,2,2],[1,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,3],[1,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,2,2],[1,0,2,3],[1,2,2,1]],[[0,2,1,1],[2,2,2,2],[1,0,2,2],[2,2,2,1]],[[0,2,1,1],[2,2,2,2],[1,0,2,2],[1,3,2,1]],[[0,2,1,1],[2,2,2,2],[1,0,2,2],[1,2,3,1]],[[0,2,1,1],[2,2,2,2],[1,0,2,2],[1,2,2,2]],[[0,2,1,1],[2,2,2,2],[1,0,4,1],[1,2,2,1]],[[0,2,1,1],[2,2,2,2],[1,0,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,2,2],[1,0,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,2,2],[1,0,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,2,2],[1,0,3,1],[1,2,2,2]],[[0,2,1,2],[2,2,2,2],[1,0,3,2],[0,2,2,1]],[[0,2,1,1],[2,2,2,3],[1,0,3,2],[0,2,2,1]],[[0,2,1,1],[2,2,2,2],[1,0,3,3],[0,2,2,1]],[[0,2,1,1],[2,2,2,2],[1,0,3,2],[0,2,3,1]],[[0,2,1,1],[2,2,2,2],[1,0,3,2],[0,2,2,2]],[[0,2,1,2],[2,2,2,2],[1,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,2,3],[1,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,2,2],[1,0,4,2],[1,2,1,1]],[[0,2,1,1],[2,2,2,2],[1,0,3,3],[1,2,1,1]],[[0,2,1,1],[2,2,2,2],[1,0,3,2],[1,2,1,2]],[[0,2,1,2],[2,2,2,2],[1,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,3],[1,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,2],[1,0,4,2],[1,2,2,0]],[[0,2,1,1],[2,2,2,2],[1,0,3,3],[1,2,2,0]],[[0,2,1,1],[2,2,2,2],[1,0,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,2,2],[1,0,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,2,2],[1,0,3,2],[1,2,3,0]],[[0,2,1,2],[2,2,2,2],[1,1,2,2],[0,2,2,1]],[[0,2,1,1],[2,2,2,3],[1,1,2,2],[0,2,2,1]],[[0,2,1,1],[2,2,2,2],[1,1,2,3],[0,2,2,1]],[[0,2,1,1],[2,2,2,2],[1,1,2,2],[0,3,2,1]],[[0,2,1,1],[2,2,2,2],[1,1,2,2],[0,2,3,1]],[[0,2,1,1],[2,2,2,2],[1,1,2,2],[0,2,2,2]],[[0,2,1,1],[2,2,2,2],[1,1,4,1],[0,2,2,1]],[[0,2,1,1],[2,2,2,2],[1,1,3,1],[0,3,2,1]],[[0,2,1,1],[2,2,2,2],[1,1,3,1],[0,2,3,1]],[[0,2,1,1],[2,2,2,2],[1,1,3,1],[0,2,2,2]],[[0,2,1,2],[2,2,2,2],[1,1,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,2,3],[1,1,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,2,2],[1,1,4,2],[0,2,1,1]],[[0,2,1,1],[2,2,2,2],[1,1,3,3],[0,2,1,1]],[[0,2,1,1],[2,2,2,2],[1,1,3,2],[0,2,1,2]],[[0,2,1,2],[2,2,2,2],[1,1,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,2,3],[1,1,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,2,2],[1,1,4,2],[0,2,2,0]],[[0,2,1,1],[2,2,2,2],[1,1,3,3],[0,2,2,0]],[[0,2,1,1],[2,2,2,2],[1,1,3,2],[0,3,2,0]],[[0,2,1,1],[2,2,2,2],[1,1,3,2],[0,2,3,0]],[[0,2,1,2],[2,2,2,2],[1,2,2,2],[0,1,2,1]],[[0,2,1,1],[2,2,2,3],[1,2,2,2],[0,1,2,1]],[[0,2,1,1],[2,2,2,2],[1,2,2,3],[0,1,2,1]],[[0,2,1,1],[2,2,2,2],[1,2,2,2],[0,1,3,1]],[[0,2,1,1],[2,2,2,2],[1,2,2,2],[0,1,2,2]],[[0,2,1,2],[2,2,2,2],[1,2,2,2],[1,0,2,1]],[[0,2,1,1],[2,2,2,3],[1,2,2,2],[1,0,2,1]],[[0,2,1,1],[2,2,2,2],[1,2,2,3],[1,0,2,1]],[[0,2,1,1],[2,2,2,2],[1,2,2,2],[1,0,3,1]],[[0,2,1,1],[2,2,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[1,4,2,0],[0,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,2,2],[1,2,4,1],[0,1,2,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,1],[0,1,3,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,1],[0,1,2,2]],[[0,2,1,1],[2,2,2,2],[1,2,4,1],[1,0,2,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,1],[1,0,3,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,1],[1,0,2,2]],[[1,2,2,2],[1,3,2,0],[0,2,3,2],[1,2,1,0]],[[1,2,3,1],[1,3,2,0],[0,2,3,2],[1,2,1,0]],[[1,3,2,1],[1,3,2,0],[0,2,3,2],[1,2,1,0]],[[2,2,2,1],[1,3,2,0],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[1,4,2,0],[0,2,3,2],[1,2,0,1]],[[0,2,1,2],[2,2,2,2],[1,2,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,2,3],[1,2,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,2,2],[1,2,4,2],[0,0,2,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,2],[0,0,2,2]],[[0,2,1,2],[2,2,2,2],[1,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,3],[1,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,2],[1,2,4,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,2],[0,1,1,2]],[[0,2,1,2],[2,2,2,2],[1,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,3],[1,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,2],[1,2,4,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,2],[1,2,3,3],[0,1,2,0]],[[0,2,1,1],[2,2,2,2],[1,2,3,2],[0,1,3,0]],[[0,2,1,2],[2,2,2,2],[1,2,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,3],[1,2,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,2],[1,2,4,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,3],[0,2,0,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,2],[0,2,0,2]],[[0,2,1,2],[2,2,2,2],[1,2,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,3],[1,2,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,2],[1,2,4,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,2],[1,3,2,0],[0,2,3,2],[1,2,0,1]],[[1,2,3,1],[1,3,2,0],[0,2,3,2],[1,2,0,1]],[[1,3,2,1],[1,3,2,0],[0,2,3,2],[1,2,0,1]],[[2,2,2,1],[1,3,2,0],[0,2,3,2],[1,2,0,1]],[[0,2,1,2],[2,2,2,2],[1,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,2,3],[1,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,2,2],[1,2,4,2],[1,0,1,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,3],[1,0,1,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,2],[1,0,1,2]],[[0,2,1,2],[2,2,2,2],[1,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,2,3],[1,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,2,2],[1,2,4,2],[1,0,2,0]],[[0,2,1,1],[2,2,2,2],[1,2,3,3],[1,0,2,0]],[[0,2,1,1],[2,2,2,2],[1,2,3,2],[1,0,3,0]],[[0,2,1,2],[2,2,2,2],[1,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,2,3],[1,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,2,2],[1,2,4,2],[1,1,0,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,3],[1,1,0,1]],[[0,2,1,1],[2,2,2,2],[1,2,3,2],[1,1,0,2]],[[0,2,1,2],[2,2,2,2],[1,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,2,3],[1,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,2,2],[1,2,4,2],[1,1,1,0]],[[0,2,1,1],[2,2,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[1,4,2,0],[0,2,3,2],[1,1,2,0]],[[1,2,2,2],[1,3,2,0],[0,2,3,2],[1,1,2,0]],[[1,2,3,1],[1,3,2,0],[0,2,3,2],[1,1,2,0]],[[1,3,2,1],[1,3,2,0],[0,2,3,2],[1,1,2,0]],[[2,2,2,1],[1,3,2,0],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[1,4,2,0],[0,2,3,2],[1,1,1,1]],[[1,2,2,2],[1,3,2,0],[0,2,3,2],[1,1,1,1]],[[1,2,3,1],[1,3,2,0],[0,2,3,2],[1,1,1,1]],[[1,3,2,1],[1,3,2,0],[0,2,3,2],[1,1,1,1]],[[2,2,2,1],[1,3,2,0],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[1,4,2,0],[0,2,3,2],[1,0,2,1]],[[1,2,2,2],[1,3,2,0],[0,2,3,2],[1,0,2,1]],[[1,2,3,1],[1,3,2,0],[0,2,3,2],[1,0,2,1]],[[1,3,2,1],[1,3,2,0],[0,2,3,2],[1,0,2,1]],[[2,2,2,1],[1,3,2,0],[0,2,3,2],[1,0,2,1]],[[1,2,2,1],[1,4,2,0],[0,2,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,2,0],[0,2,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,2,0],[0,2,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,2,0],[0,2,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,2,0],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[1,4,2,0],[0,2,3,1],[1,1,2,1]],[[1,2,2,2],[1,3,2,0],[0,2,3,1],[1,1,2,1]],[[1,2,3,1],[1,3,2,0],[0,2,3,1],[1,1,2,1]],[[1,3,2,1],[1,3,2,0],[0,2,3,1],[1,1,2,1]],[[2,2,2,1],[1,3,2,0],[0,2,3,1],[1,1,2,1]],[[1,2,2,1],[1,4,2,0],[0,1,3,2],[1,2,2,0]],[[1,2,2,2],[1,3,2,0],[0,1,3,2],[1,2,2,0]],[[1,2,3,1],[1,3,2,0],[0,1,3,2],[1,2,2,0]],[[1,3,2,1],[1,3,2,0],[0,1,3,2],[1,2,2,0]],[[2,2,2,1],[1,3,2,0],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,4,2,0],[0,1,3,2],[1,2,1,1]],[[1,2,2,2],[1,3,2,0],[0,1,3,2],[1,2,1,1]],[[1,2,3,1],[1,3,2,0],[0,1,3,2],[1,2,1,1]],[[1,3,2,1],[1,3,2,0],[0,1,3,2],[1,2,1,1]],[[2,2,2,1],[1,3,2,0],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[1,4,2,0],[0,1,3,1],[1,2,2,1]],[[1,2,2,2],[1,3,2,0],[0,1,3,1],[1,2,2,1]],[[1,2,3,1],[1,3,2,0],[0,1,3,1],[1,2,2,1]],[[1,3,2,1],[1,3,2,0],[0,1,3,1],[1,2,2,1]],[[2,2,2,1],[1,3,2,0],[0,1,3,1],[1,2,2,1]],[[0,2,1,2],[2,2,2,2],[1,3,3,2],[0,0,1,1]],[[0,2,1,1],[2,2,2,3],[1,3,3,2],[0,0,1,1]],[[0,2,1,1],[2,2,2,2],[1,3,4,2],[0,0,1,1]],[[0,2,1,1],[2,2,2,2],[1,3,3,3],[0,0,1,1]],[[0,2,1,1],[2,2,2,2],[1,3,3,2],[0,0,1,2]],[[0,2,1,2],[2,2,2,2],[1,3,3,2],[0,0,2,0]],[[0,2,1,1],[2,2,2,3],[1,3,3,2],[0,0,2,0]],[[0,2,1,1],[2,2,2,2],[1,3,4,2],[0,0,2,0]],[[0,2,1,1],[2,2,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,3,1,3],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[1,4,1,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,2],[1,3,1,2],[2,3,3,1],[1,0,0,0]],[[1,2,3,1],[1,3,1,2],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[1,3,1,2],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[1,3,1,2],[2,3,3,1],[1,0,0,0]],[[0,2,1,2],[2,2,2,2],[2,0,2,2],[0,2,2,1]],[[0,2,1,1],[2,2,2,3],[2,0,2,2],[0,2,2,1]],[[0,2,1,1],[2,2,2,2],[2,0,2,3],[0,2,2,1]],[[0,2,1,1],[2,2,2,2],[2,0,2,2],[0,3,2,1]],[[0,2,1,1],[2,2,2,2],[2,0,2,2],[0,2,3,1]],[[0,2,1,1],[2,2,2,2],[2,0,2,2],[0,2,2,2]],[[0,2,1,2],[2,2,2,2],[2,0,2,2],[1,1,2,1]],[[0,2,1,1],[2,2,2,3],[2,0,2,2],[1,1,2,1]],[[0,2,1,1],[2,2,2,2],[2,0,2,3],[1,1,2,1]],[[0,2,1,1],[2,2,2,2],[2,0,2,2],[1,1,3,1]],[[0,2,1,1],[2,2,2,2],[2,0,2,2],[1,1,2,2]],[[0,2,1,1],[2,2,2,2],[2,0,4,1],[0,2,2,1]],[[0,2,1,1],[2,2,2,2],[2,0,3,1],[0,3,2,1]],[[0,2,1,1],[2,2,2,2],[2,0,3,1],[0,2,3,1]],[[0,2,1,1],[2,2,2,2],[2,0,3,1],[0,2,2,2]],[[0,2,1,1],[2,2,2,2],[2,0,4,1],[1,1,2,1]],[[0,2,1,1],[2,2,2,2],[2,0,3,1],[1,1,3,1]],[[0,2,1,1],[2,2,2,2],[2,0,3,1],[1,1,2,2]],[[0,2,1,2],[2,2,2,2],[2,0,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,2,3],[2,0,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,2,2],[2,0,4,2],[0,2,1,1]],[[0,2,1,1],[2,2,2,2],[2,0,3,3],[0,2,1,1]],[[0,2,1,1],[2,2,2,2],[2,0,3,2],[0,2,1,2]],[[0,2,1,2],[2,2,2,2],[2,0,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,2,3],[2,0,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,2,2],[2,0,4,2],[0,2,2,0]],[[0,2,1,1],[2,2,2,2],[2,0,3,3],[0,2,2,0]],[[0,2,1,1],[2,2,2,2],[2,0,3,2],[0,3,2,0]],[[0,2,1,1],[2,2,2,2],[2,0,3,2],[0,2,3,0]],[[0,2,1,2],[2,2,2,2],[2,0,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,2,3],[2,0,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,2,2],[2,0,4,2],[1,1,1,1]],[[0,2,1,1],[2,2,2,2],[2,0,3,3],[1,1,1,1]],[[0,2,1,1],[2,2,2,2],[2,0,3,2],[1,1,1,2]],[[0,2,1,2],[2,2,2,2],[2,0,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,2,3],[2,0,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,2,2],[2,0,4,2],[1,1,2,0]],[[0,2,1,1],[2,2,2,2],[2,0,3,3],[1,1,2,0]],[[0,2,1,1],[2,2,2,2],[2,0,3,2],[1,1,3,0]],[[0,2,1,2],[2,2,2,2],[2,0,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,2,3],[2,0,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,2,2],[2,0,4,2],[1,2,0,1]],[[0,2,1,1],[2,2,2,2],[2,0,3,3],[1,2,0,1]],[[0,2,1,1],[2,2,2,2],[2,0,3,2],[1,2,0,2]],[[0,2,1,2],[2,2,2,2],[2,0,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,2,3],[2,0,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,2,2],[2,0,4,2],[1,2,1,0]],[[0,2,1,1],[2,2,2,2],[2,0,3,3],[1,2,1,0]],[[0,2,1,2],[2,2,2,2],[2,1,2,2],[0,1,2,1]],[[0,2,1,1],[2,2,2,3],[2,1,2,2],[0,1,2,1]],[[0,2,1,1],[2,2,2,2],[2,1,2,3],[0,1,2,1]],[[0,2,1,1],[2,2,2,2],[2,1,2,2],[0,1,3,1]],[[0,2,1,1],[2,2,2,2],[2,1,2,2],[0,1,2,2]],[[0,2,1,2],[2,2,2,2],[2,1,2,2],[1,0,2,1]],[[0,2,1,1],[2,2,2,3],[2,1,2,2],[1,0,2,1]],[[0,2,1,1],[2,2,2,2],[2,1,2,3],[1,0,2,1]],[[0,2,1,1],[2,2,2,2],[2,1,2,2],[1,0,3,1]],[[0,2,1,1],[2,2,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[1,3,1,3],[2,3,2,1],[1,0,1,0]],[[0,2,1,1],[2,2,2,2],[2,1,4,1],[0,1,2,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,1],[0,1,3,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,1],[0,1,2,2]],[[0,2,1,1],[2,2,2,2],[2,1,4,1],[1,0,2,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,1],[1,0,3,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,1],[1,0,2,2]],[[1,2,2,1],[1,4,1,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,2],[1,3,1,2],[2,3,2,1],[1,0,1,0]],[[1,2,3,1],[1,3,1,2],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[1,3,1,2],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[1,3,1,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[1,3,1,3],[2,3,2,1],[1,0,0,1]],[[1,2,2,1],[1,4,1,2],[2,3,2,1],[1,0,0,1]],[[0,2,1,2],[2,2,2,2],[2,1,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,2,3],[2,1,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,2,2],[2,1,4,2],[0,0,2,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,2],[0,0,2,2]],[[0,2,1,2],[2,2,2,2],[2,1,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,3],[2,1,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,2],[2,1,4,2],[0,1,1,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,2],[0,1,1,2]],[[0,2,1,2],[2,2,2,2],[2,1,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,3],[2,1,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,2],[2,1,4,2],[0,1,2,0]],[[0,2,1,1],[2,2,2,2],[2,1,3,3],[0,1,2,0]],[[0,2,1,1],[2,2,2,2],[2,1,3,2],[0,1,3,0]],[[0,2,1,2],[2,2,2,2],[2,1,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,3],[2,1,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,2],[2,1,4,2],[0,2,0,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,3],[0,2,0,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,2],[0,2,0,2]],[[0,2,1,2],[2,2,2,2],[2,1,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,3],[2,1,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,2],[2,1,4,2],[0,2,1,0]],[[0,2,1,1],[2,2,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,3,2,1],[1,0,0,1]],[[1,2,3,1],[1,3,1,2],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[1,3,1,2],[2,3,2,1],[1,0,0,1]],[[2,2,2,1],[1,3,1,2],[2,3,2,1],[1,0,0,1]],[[0,2,1,2],[2,2,2,2],[2,1,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,2,3],[2,1,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,2,2],[2,1,4,2],[1,0,1,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,3],[1,0,1,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,2],[1,0,1,2]],[[0,2,1,2],[2,2,2,2],[2,1,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,2,3],[2,1,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,2,2],[2,1,4,2],[1,0,2,0]],[[0,2,1,1],[2,2,2,2],[2,1,3,3],[1,0,2,0]],[[0,2,1,1],[2,2,2,2],[2,1,3,2],[1,0,3,0]],[[0,2,1,2],[2,2,2,2],[2,1,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,2,3],[2,1,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,2,2],[2,1,4,2],[1,1,0,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,3],[1,1,0,1]],[[0,2,1,1],[2,2,2,2],[2,1,3,2],[1,1,0,2]],[[0,2,1,2],[2,2,2,2],[2,1,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,2,3],[2,1,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,2,2],[2,1,4,2],[1,1,1,0]],[[0,2,1,1],[2,2,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[1,4,1,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,2],[1,3,1,2],[2,3,2,0],[1,0,1,1]],[[1,2,3,1],[1,3,1,2],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[1,3,1,2],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[1,3,1,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[1,3,1,3],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[1,4,1,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,2],[1,3,1,2],[2,3,1,2],[1,0,1,0]],[[1,2,3,1],[1,3,1,2],[2,3,1,2],[1,0,1,0]],[[1,3,2,1],[1,3,1,2],[2,3,1,2],[1,0,1,0]],[[2,2,2,1],[1,3,1,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[1,3,1,2],[2,3,1,3],[1,0,0,1]],[[1,2,2,1],[1,3,1,3],[2,3,1,2],[1,0,0,1]],[[1,2,2,1],[1,4,1,2],[2,3,1,2],[1,0,0,1]],[[1,2,2,2],[1,3,1,2],[2,3,1,2],[1,0,0,1]],[[1,2,3,1],[1,3,1,2],[2,3,1,2],[1,0,0,1]],[[1,3,2,1],[1,3,1,2],[2,3,1,2],[1,0,0,1]],[[2,2,2,1],[1,3,1,2],[2,3,1,2],[1,0,0,1]],[[1,2,2,1],[1,4,1,2],[2,3,1,1],[1,2,0,0]],[[1,2,2,2],[1,3,1,2],[2,3,1,1],[1,2,0,0]],[[1,2,3,1],[1,3,1,2],[2,3,1,1],[1,2,0,0]],[[1,3,2,1],[1,3,1,2],[2,3,1,1],[1,2,0,0]],[[2,2,2,1],[1,3,1,2],[2,3,1,1],[1,2,0,0]],[[1,2,2,1],[1,4,1,2],[2,3,1,1],[1,1,1,0]],[[1,2,2,2],[1,3,1,2],[2,3,1,1],[1,1,1,0]],[[1,2,3,1],[1,3,1,2],[2,3,1,1],[1,1,1,0]],[[1,3,2,1],[1,3,1,2],[2,3,1,1],[1,1,1,0]],[[2,2,2,1],[1,3,1,2],[2,3,1,1],[1,1,1,0]],[[1,2,2,1],[1,4,1,2],[2,3,1,1],[1,1,0,1]],[[1,2,2,2],[1,3,1,2],[2,3,1,1],[1,1,0,1]],[[1,2,3,1],[1,3,1,2],[2,3,1,1],[1,1,0,1]],[[1,3,2,1],[1,3,1,2],[2,3,1,1],[1,1,0,1]],[[2,2,2,1],[1,3,1,2],[2,3,1,1],[1,1,0,1]],[[1,2,2,1],[1,4,1,2],[2,3,1,1],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,3,1,1],[0,2,1,0]],[[1,2,3,1],[1,3,1,2],[2,3,1,1],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,3,1,1],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[2,3,1,1],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[2,3,1,1],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,3,1,1],[0,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,3,1,1],[0,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,3,1,1],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,3,1,1],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,3,1,0],[1,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,3,1,0],[1,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,3,1,0],[1,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,3,1,0],[1,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,3,1,0],[1,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,3,1,0],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[2,3,1,0],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[2,3,1,0],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[2,3,1,0],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[2,3,1,0],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[2,3,1,0],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[2,3,1,0],[0,2,1,1]],[[1,2,3,1],[1,3,1,2],[2,3,1,0],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[2,3,1,0],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[2,3,1,0],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[1,4,1,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,2],[1,3,1,2],[2,3,0,2],[1,2,0,0]],[[1,2,3,1],[1,3,1,2],[2,3,0,2],[1,2,0,0]],[[1,3,2,1],[1,3,1,2],[2,3,0,2],[1,2,0,0]],[[2,2,2,1],[1,3,1,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[1,3,1,3],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[1,4,1,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,2],[1,3,1,2],[2,3,0,2],[1,1,1,0]],[[1,2,3,1],[1,3,1,2],[2,3,0,2],[1,1,1,0]],[[1,3,2,1],[1,3,1,2],[2,3,0,2],[1,1,1,0]],[[2,2,2,1],[1,3,1,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[1,4,1,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,2],[1,3,1,2],[2,3,0,2],[1,1,0,1]],[[1,2,3,1],[1,3,1,2],[2,3,0,2],[1,1,0,1]],[[1,3,2,1],[1,3,1,2],[2,3,0,2],[1,1,0,1]],[[2,2,2,1],[1,3,1,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[1,3,1,3],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,3,0,2],[0,2,1,0]],[[1,2,3,1],[1,3,1,2],[2,3,0,2],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,3,0,2],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,3,0,2],[0,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,3,0,2],[0,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,3,0,2],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,3,0,1],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,3,0,1],[1,2,1,0]],[[1,2,3,1],[1,3,1,2],[2,3,0,1],[1,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,3,0,1],[1,2,1,0]],[[2,2,2,1],[1,3,1,2],[2,3,0,1],[1,2,1,0]],[[1,2,2,1],[1,4,1,2],[2,3,0,1],[1,1,2,0]],[[1,2,2,2],[1,3,1,2],[2,3,0,1],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[2,3,0,1],[1,1,2,0]],[[1,3,2,1],[1,3,1,2],[2,3,0,1],[1,1,2,0]],[[2,2,2,1],[1,3,1,2],[2,3,0,1],[1,1,2,0]],[[1,2,2,1],[1,4,1,2],[2,3,0,1],[0,2,2,0]],[[1,2,2,2],[1,3,1,2],[2,3,0,1],[0,2,2,0]],[[1,2,3,1],[1,3,1,2],[2,3,0,1],[0,2,2,0]],[[1,3,2,1],[1,3,1,2],[2,3,0,1],[0,2,2,0]],[[2,2,2,1],[1,3,1,2],[2,3,0,1],[0,2,2,0]],[[1,2,2,1],[1,4,1,2],[2,3,0,0],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[2,3,0,0],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[2,3,0,0],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[2,3,0,0],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[2,3,0,0],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[2,3,0,0],[1,1,2,1]],[[1,2,2,2],[1,3,1,2],[2,3,0,0],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[2,3,0,0],[1,1,2,1]],[[1,3,2,1],[1,3,1,2],[2,3,0,0],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[2,3,0,0],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[2,3,0,0],[0,2,2,1]],[[1,2,2,2],[1,3,1,2],[2,3,0,0],[0,2,2,1]],[[1,2,3,1],[1,3,1,2],[2,3,0,0],[0,2,2,1]],[[1,3,2,1],[1,3,1,2],[2,3,0,0],[0,2,2,1]],[[2,2,2,1],[1,3,1,2],[2,3,0,0],[0,2,2,1]],[[1,2,2,1],[1,3,1,3],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[1,4,1,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,2],[1,3,1,2],[2,2,3,1],[1,1,0,0]],[[1,2,3,1],[1,3,1,2],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[1,3,1,2],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[1,3,1,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[1,3,1,3],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[1,4,1,2],[2,2,3,1],[0,2,0,0]],[[1,2,2,2],[1,3,1,2],[2,2,3,1],[0,2,0,0]],[[1,2,3,1],[1,3,1,2],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[1,3,1,2],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[1,3,1,2],[2,2,3,1],[0,2,0,0]],[[0,2,1,1],[2,2,3,0],[0,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,2,2,2],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,2,2,2],[1,3,2,1]],[[0,2,1,1],[2,2,3,0],[0,2,2,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,0],[0,2,2,2],[1,2,2,2]],[[0,2,1,1],[2,2,4,0],[0,2,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,3,0],[0,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,3,0],[0,2,3,1],[1,2,2,2]],[[0,2,1,1],[2,2,4,0],[0,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[0,2,4,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[0,2,3,3],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[0,2,3,2],[1,2,1,2]],[[0,2,1,1],[2,2,4,0],[0,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[0,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[0,2,3,3],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[0,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,3,0],[0,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,3,0],[0,2,3,2],[1,2,3,0]],[[0,2,1,1],[2,2,3,0],[0,4,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,1,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,0],[0,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,2,3,0],[0,4,2,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,2,3,0],[0,3,2,1],[1,2,2,2]],[[0,2,1,1],[2,2,3,0],[0,3,2,3],[1,1,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,2,2],[1,1,3,1]],[[0,2,1,1],[2,2,3,0],[0,3,2,2],[1,1,2,2]],[[0,2,1,1],[2,2,3,0],[0,4,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[0,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,2,3,0],[0,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,2,3,0],[0,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,2,3,0],[0,4,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,0],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,0],[1,3,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,0],[1,2,3,1]],[[0,2,1,1],[2,2,4,0],[0,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,0],[0,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,4,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,1],[1,1,3,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,1],[1,1,2,2]],[[0,2,1,1],[2,2,4,0],[0,3,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[0,4,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[0,3,4,1],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,1],[1,3,1,1]],[[0,2,1,1],[2,2,4,0],[0,3,3,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,4,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,3],[1,0,2,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,2],[1,0,2,2]],[[0,2,1,1],[2,2,4,0],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,0],[0,4,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,0],[0,3,4,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,3],[1,1,1,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,2],[1,1,1,2]],[[0,2,1,1],[2,2,4,0],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,0],[0,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,0],[0,3,4,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,0],[0,3,3,3],[1,1,2,0]],[[0,2,1,1],[2,2,3,0],[0,3,3,2],[1,1,3,0]],[[0,2,1,1],[2,2,4,0],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,0],[0,4,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,0],[0,3,4,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,3],[1,2,0,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,2,3,0],[0,3,3,2],[1,2,0,2]],[[0,2,1,1],[2,2,4,0],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,0],[0,4,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,0],[0,3,4,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,0],[0,3,3,3],[1,2,1,0]],[[0,2,1,1],[2,2,3,0],[0,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,2,3,0],[0,3,3,2],[1,3,1,0]],[[0,2,1,1],[2,2,3,0],[1,2,2,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,2,2,2],[0,3,2,1]],[[0,2,1,1],[2,2,3,0],[1,2,2,2],[0,2,3,1]],[[0,2,1,1],[2,2,3,0],[1,2,2,2],[0,2,2,2]],[[0,2,1,1],[2,2,4,0],[1,2,3,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,2,4,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,2,3,1],[0,3,2,1]],[[0,2,1,1],[2,2,3,0],[1,2,3,1],[0,2,3,1]],[[0,2,1,1],[2,2,3,0],[1,2,3,1],[0,2,2,2]],[[0,2,1,1],[2,2,4,0],[1,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,0],[1,2,4,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,0],[1,2,3,3],[0,2,1,1]],[[0,2,1,1],[2,2,3,0],[1,2,3,2],[0,2,1,2]],[[0,2,1,1],[2,2,4,0],[1,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,0],[1,2,4,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,0],[1,2,3,3],[0,2,2,0]],[[0,2,1,1],[2,2,3,0],[1,2,3,2],[0,3,2,0]],[[0,2,1,1],[2,2,3,0],[1,2,3,2],[0,2,3,0]],[[0,2,1,1],[2,2,3,0],[1,4,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,0,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,0,2],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,0,2],[1,3,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,0,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,0],[1,3,0,2],[1,2,2,2]],[[0,2,1,1],[2,2,3,0],[1,4,1,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,1,1],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,1,1],[1,3,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,1,1],[1,2,3,1]],[[0,2,1,1],[2,2,3,0],[1,3,1,1],[1,2,2,2]],[[0,2,1,1],[2,2,3,0],[1,4,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,1,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,1,2],[0,3,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,1,2],[0,2,3,1]],[[0,2,1,1],[2,2,3,0],[1,3,1,2],[0,2,2,2]],[[0,2,1,1],[2,2,3,0],[1,4,1,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[1,3,1,2],[2,2,2,0]],[[0,2,1,1],[2,2,3,0],[1,3,1,2],[1,3,2,0]],[[0,2,1,1],[2,2,3,0],[1,3,1,2],[1,2,3,0]],[[0,2,1,1],[2,2,3,0],[1,4,2,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,1],[0,3,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,1],[0,2,3,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,1],[0,2,2,2]],[[0,2,1,1],[2,2,3,0],[1,4,2,1],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,1],[2,2,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,1],[1,3,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,2],[0,1,2,2]],[[0,2,1,1],[2,2,3,0],[1,4,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,0],[1,3,2,2],[0,3,2,0]],[[0,2,1,1],[2,2,3,0],[1,3,2,2],[0,2,3,0]],[[0,2,1,1],[2,2,3,0],[1,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,2],[1,0,3,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,2],[1,0,2,2]],[[0,2,1,1],[2,2,3,0],[1,4,2,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,2],[2,2,0,1]],[[0,2,1,1],[2,2,3,0],[1,3,2,2],[1,3,0,1]],[[0,2,1,1],[2,2,3,0],[1,4,2,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,0],[1,3,2,2],[2,2,1,0]],[[0,2,1,1],[2,2,3,0],[1,3,2,2],[1,3,1,0]],[[0,2,1,1],[2,2,3,0],[1,4,3,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,0],[0,3,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,0],[0,2,3,1]],[[0,2,1,1],[2,2,4,0],[1,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,2,3,0],[1,4,3,1],[0,1,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,1],[0,1,2,2]],[[0,2,1,1],[2,2,4,0],[1,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,3,0],[1,4,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,4,1],[0,2,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,1],[0,3,1,1]],[[0,2,1,1],[2,2,4,0],[1,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,0],[1,4,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,4,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,1],[1,0,3,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,1],[1,0,2,2]],[[0,2,1,1],[2,2,4,0],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,0],[1,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,4,1],[1,1,1,1]],[[0,2,1,1],[2,2,4,0],[1,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,2],[0,0,2,2]],[[0,2,1,1],[2,2,4,0],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,0],[1,4,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,2],[0,1,1,2]],[[0,2,1,1],[2,2,4,0],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,0],[1,4,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,0],[1,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,0],[1,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,2,3,0],[1,3,3,2],[0,1,3,0]],[[0,2,1,1],[2,2,4,0],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,0],[1,4,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,0],[1,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,2],[0,3,0,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,2],[0,2,0,2]],[[0,2,1,1],[2,2,4,0],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,0],[1,4,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,0],[1,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,0],[1,3,3,3],[0,2,1,0]],[[0,2,1,1],[2,2,3,0],[1,3,3,2],[0,3,1,0]],[[0,2,1,1],[2,2,4,0],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,0],[1,4,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,4,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,3],[1,0,1,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,2],[1,0,1,2]],[[0,2,1,1],[2,2,4,0],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,0],[1,4,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,0],[1,3,4,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,0],[1,3,3,3],[1,0,2,0]],[[0,2,1,1],[2,2,3,0],[1,3,3,2],[1,0,3,0]],[[0,2,1,1],[2,2,4,0],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,0],[1,4,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,0],[1,3,4,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,3],[1,1,0,1]],[[0,2,1,1],[2,2,3,0],[1,3,3,2],[1,1,0,2]],[[0,2,1,1],[2,2,4,0],[1,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,0],[1,4,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,0],[1,3,4,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,0],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[1,4,1,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,2],[1,3,1,2],[2,2,2,1],[1,2,0,0]],[[1,2,3,1],[1,3,1,2],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[1,3,1,2],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[1,3,1,2],[2,2,2,1],[1,2,0,0]],[[0,2,1,1],[3,2,3,0],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[3,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,0,2,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,0,2,2],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,0,2,2],[1,3,2,1]],[[0,2,1,1],[2,2,3,0],[2,0,2,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,0],[2,0,2,2],[1,2,2,2]],[[0,2,1,1],[3,2,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,4,0],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[3,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,0,4,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,0,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,0,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,3,0],[2,0,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,3,0],[2,0,3,1],[1,2,2,2]],[[0,2,1,1],[2,2,4,0],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[2,0,4,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[2,0,3,3],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[2,0,3,2],[1,2,1,2]],[[0,2,1,1],[3,2,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,4,0],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[3,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[2,0,4,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[2,0,3,3],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[2,0,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,3,0],[2,0,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,3,0],[2,0,3,2],[1,2,3,0]],[[0,2,1,1],[3,2,3,0],[2,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[3,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,2,0,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,2,0,2],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,2,0,2],[1,3,2,1]],[[0,2,1,1],[2,2,3,0],[2,2,0,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,0],[2,2,0,2],[1,2,2,2]],[[0,2,1,1],[3,2,3,0],[2,2,1,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[3,2,1,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,2,1,1],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,2,1,1],[1,3,2,1]],[[0,2,1,1],[2,2,3,0],[2,2,1,1],[1,2,3,1]],[[0,2,1,1],[2,2,3,0],[2,2,1,1],[1,2,2,2]],[[0,2,1,1],[3,2,3,0],[2,2,1,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[3,2,1,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[2,2,1,2],[2,2,2,0]],[[0,2,1,1],[2,2,3,0],[2,2,1,2],[1,3,2,0]],[[0,2,1,1],[2,2,3,0],[2,2,1,2],[1,2,3,0]],[[0,2,1,1],[3,2,3,0],[2,2,2,1],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[3,2,2,1],[1,2,1,1]],[[0,2,1,1],[2,2,3,0],[2,2,2,1],[2,2,1,1]],[[0,2,1,1],[2,2,3,0],[2,2,2,1],[1,3,1,1]],[[0,2,1,1],[3,2,3,0],[2,2,2,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,0],[3,2,2,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,0],[2,2,2,2],[2,2,0,1]],[[0,2,1,1],[2,2,3,0],[2,2,2,2],[1,3,0,1]],[[0,2,1,1],[3,2,3,0],[2,2,2,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,0],[3,2,2,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,0],[2,2,2,2],[2,2,1,0]],[[0,2,1,1],[2,2,3,0],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[1,3,1,3],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[1,4,1,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,2],[1,3,1,2],[2,2,2,1],[1,1,1,0]],[[1,2,3,1],[1,3,1,2],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[1,3,1,2],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[1,3,1,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[1,4,1,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,2],[1,3,1,2],[2,2,2,1],[1,1,0,1]],[[1,2,3,1],[1,3,1,2],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[1,3,1,2],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[1,3,1,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[1,3,1,3],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[1,4,1,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,2],[1,3,1,2],[2,2,2,1],[1,0,2,0]],[[1,2,3,1],[1,3,1,2],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[1,3,1,2],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[1,3,1,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[1,3,1,3],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[1,4,1,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,2],[1,3,1,2],[2,2,2,1],[1,0,1,1]],[[1,2,3,1],[1,3,1,2],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[1,3,1,2],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[1,3,1,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[1,3,1,3],[2,2,2,1],[0,2,1,0]],[[0,2,1,1],[3,2,3,0],[2,3,0,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[3,3,0,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,3,0,1],[2,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,3,0,1],[1,3,2,1]],[[0,2,1,1],[3,2,3,0],[2,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[3,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,4,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,3,0,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,3,0,2],[0,3,2,1]],[[0,2,1,1],[2,2,3,0],[2,3,0,2],[0,2,3,1]],[[0,2,1,1],[2,2,3,0],[2,3,0,2],[0,2,2,2]],[[0,2,1,1],[3,2,3,0],[2,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,0],[3,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,0],[2,4,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,0],[2,3,0,2],[2,1,2,1]],[[0,2,1,1],[3,2,3,0],[2,3,0,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[3,3,0,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,0],[2,3,0,2],[2,2,2,0]],[[0,2,1,1],[2,2,3,0],[2,3,0,2],[1,3,2,0]],[[0,2,1,1],[3,2,3,0],[2,3,1,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[3,3,1,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,4,1,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,0],[2,3,1,1],[0,3,2,1]],[[0,2,1,1],[2,2,3,0],[2,3,1,1],[0,2,3,1]],[[0,2,1,1],[2,2,3,0],[2,3,1,1],[0,2,2,2]],[[0,2,1,1],[3,2,3,0],[2,3,1,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,0],[3,3,1,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,0],[2,4,1,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,0],[2,3,1,1],[2,1,2,1]],[[0,2,1,1],[3,2,3,0],[2,3,1,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,0],[3,3,1,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,0],[2,4,1,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,0],[2,3,1,2],[0,3,2,0]],[[0,2,1,1],[2,2,3,0],[2,3,1,2],[0,2,3,0]],[[0,2,1,1],[3,2,3,0],[2,3,1,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,0],[3,3,1,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,0],[2,4,1,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,0],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[1,4,1,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,2,2,1],[0,2,1,0]],[[1,2,3,1],[1,3,1,2],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,2,2,1],[0,2,0,1]],[[0,2,1,1],[3,2,3,0],[2,3,2,1],[0,1,2,1]],[[0,2,1,1],[2,2,3,0],[3,3,2,1],[0,1,2,1]],[[0,2,1,1],[2,2,3,0],[2,4,2,1],[0,1,2,1]],[[0,2,1,1],[3,2,3,0],[2,3,2,1],[0,2,1,1]],[[0,2,1,1],[2,2,3,0],[3,3,2,1],[0,2,1,1]],[[0,2,1,1],[2,2,3,0],[2,4,2,1],[0,2,1,1]],[[0,2,1,1],[2,2,3,0],[2,3,2,1],[0,3,1,1]],[[0,2,1,1],[3,2,3,0],[2,3,2,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,0],[3,3,2,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,0],[2,4,2,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,0],[2,3,2,1],[2,0,2,1]],[[0,2,1,1],[3,2,3,0],[2,3,2,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,0],[3,3,2,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,0],[2,4,2,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,0],[2,3,2,1],[2,1,1,1]],[[0,2,1,1],[3,2,3,0],[2,3,2,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,0],[3,3,2,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,0],[2,4,2,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,2,2,1],[0,2,0,1]],[[0,2,1,1],[3,2,3,0],[2,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,0],[3,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,0],[2,4,2,2],[0,1,1,1]],[[0,2,1,1],[3,2,3,0],[2,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,0],[3,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,0],[2,4,2,2],[0,1,2,0]],[[0,2,1,1],[3,2,3,0],[2,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,0],[3,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,0],[2,4,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,0],[2,3,2,2],[0,3,0,1]],[[0,2,1,1],[3,2,3,0],[2,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,0],[3,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,0],[2,4,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,0],[2,3,2,2],[0,3,1,0]],[[1,2,2,1],[1,3,1,3],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[1,4,1,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,2],[1,3,1,2],[2,2,2,1],[0,1,2,0]],[[1,2,3,1],[1,3,1,2],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[1,3,1,2],[2,2,2,1],[0,1,2,0]],[[0,2,1,1],[3,2,3,0],[2,3,2,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,0],[3,3,2,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,0],[2,4,2,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,0],[2,3,2,2],[2,0,1,1]],[[0,2,1,1],[3,2,3,0],[2,3,2,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,0],[3,3,2,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,0],[2,4,2,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,0],[2,3,2,2],[2,0,2,0]],[[0,2,1,1],[3,2,3,0],[2,3,2,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,0],[3,3,2,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,0],[2,4,2,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,0],[2,3,2,2],[2,1,0,1]],[[0,2,1,1],[3,2,3,0],[2,3,2,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,0],[3,3,2,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,0],[2,4,2,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,0],[2,3,2,2],[2,1,1,0]],[[2,2,2,1],[1,3,1,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[1,3,1,3],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[1,4,1,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,2],[1,3,1,2],[2,2,2,1],[0,1,1,1]],[[1,2,3,1],[1,3,1,2],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[1,3,1,2],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[1,3,1,2],[2,2,2,1],[0,1,1,1]],[[0,2,1,1],[3,2,3,0],[2,3,2,2],[1,2,0,0]],[[0,2,1,1],[2,2,3,0],[3,3,2,2],[1,2,0,0]],[[0,2,1,1],[2,2,3,0],[2,4,2,2],[1,2,0,0]],[[0,2,1,1],[2,2,3,0],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[1,4,1,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,2,2,0],[1,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,1],[1,3,1,3],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[2,2,2,0],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[1,4,1,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,2],[1,3,1,2],[2,2,2,0],[1,0,2,1]],[[1,2,3,1],[1,3,1,2],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[1,3,1,2],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[1,3,1,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[1,3,1,3],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[2,2,2,0],[0,2,1,1]],[[1,2,3,1],[1,3,1,2],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[1,4,1,2],[2,2,2,0],[0,1,2,1]],[[1,2,2,2],[1,3,1,2],[2,2,2,0],[0,1,2,1]],[[1,2,3,1],[1,3,1,2],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[1,3,1,2],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[1,3,1,2],[2,2,2,0],[0,1,2,1]],[[0,2,1,1],[3,2,3,0],[2,3,3,2],[0,2,0,0]],[[0,2,1,1],[2,2,3,0],[3,3,3,2],[0,2,0,0]],[[0,2,1,1],[2,2,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[1,3,1,3],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[1,4,1,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,2],[1,3,1,2],[2,2,1,2],[1,2,0,0]],[[1,2,3,1],[1,3,1,2],[2,2,1,2],[1,2,0,0]],[[1,3,2,1],[1,3,1,2],[2,2,1,2],[1,2,0,0]],[[2,2,2,1],[1,3,1,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[1,3,1,2],[2,2,1,3],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[1,4,1,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,2],[1,3,1,2],[2,2,1,2],[1,1,1,0]],[[1,2,3,1],[1,3,1,2],[2,2,1,2],[1,1,1,0]],[[1,3,2,1],[1,3,1,2],[2,2,1,2],[1,1,1,0]],[[2,2,2,1],[1,3,1,2],[2,2,1,2],[1,1,1,0]],[[0,2,1,1],[3,2,3,0],[2,3,3,2],[1,1,0,0]],[[0,2,1,1],[2,2,3,0],[3,3,3,2],[1,1,0,0]],[[0,2,1,1],[2,2,3,0],[2,4,3,2],[1,1,0,0]],[[0,2,1,1],[2,2,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[1,3,1,2],[2,2,1,2],[1,1,0,2]],[[1,2,2,1],[1,3,1,2],[2,2,1,3],[1,1,0,1]],[[1,2,2,1],[1,3,1,3],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[1,4,1,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,2],[1,3,1,2],[2,2,1,2],[1,1,0,1]],[[1,2,3,1],[1,3,1,2],[2,2,1,2],[1,1,0,1]],[[1,3,2,1],[1,3,1,2],[2,2,1,2],[1,1,0,1]],[[2,2,2,1],[1,3,1,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[1,3,1,2],[2,2,1,3],[1,0,2,0]],[[1,2,2,1],[1,3,1,3],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[1,4,1,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,2],[1,3,1,2],[2,2,1,2],[1,0,2,0]],[[1,2,3,1],[1,3,1,2],[2,2,1,2],[1,0,2,0]],[[1,3,2,1],[1,3,1,2],[2,2,1,2],[1,0,2,0]],[[2,2,2,1],[1,3,1,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[1,3,1,2],[2,2,1,2],[1,0,1,2]],[[1,2,2,1],[1,3,1,2],[2,2,1,3],[1,0,1,1]],[[1,2,2,1],[1,3,1,3],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[1,4,1,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,2],[1,3,1,2],[2,2,1,2],[1,0,1,1]],[[1,2,3,1],[1,3,1,2],[2,2,1,2],[1,0,1,1]],[[1,3,2,1],[1,3,1,2],[2,2,1,2],[1,0,1,1]],[[2,2,2,1],[1,3,1,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[1,3,1,2],[2,2,1,3],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,2,1,2],[0,2,1,0]],[[1,2,3,1],[1,3,1,2],[2,2,1,2],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,2,1,2],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[1,3,1,2],[2,2,1,2],[0,2,0,2]],[[1,2,2,1],[1,3,1,2],[2,2,1,3],[0,2,0,1]],[[1,2,2,1],[1,3,1,3],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,2,1,2],[0,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,2,1,2],[0,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,2,1,2],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,2,1,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[0,0,3,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[0,0,3,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[0,0,3,2],[1,2,2,2]],[[0,2,1,1],[2,2,3,1],[0,1,2,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[0,1,2,2],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[0,1,2,2],[1,3,2,1]],[[0,2,1,1],[2,2,3,1],[0,1,2,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[0,1,2,2],[1,2,2,2]],[[0,2,1,1],[2,2,4,1],[0,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[0,1,4,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[0,1,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[0,1,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,3,1],[0,1,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[0,1,3,1],[1,2,2,2]],[[0,2,1,1],[2,2,4,1],[0,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[0,1,4,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[0,1,3,3],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[0,1,3,2],[1,2,1,2]],[[0,2,1,1],[2,2,4,1],[0,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[0,1,4,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[0,1,3,3],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[0,1,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,3,1],[0,1,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,3,1],[0,1,3,2],[1,2,3,0]],[[0,2,1,1],[2,2,3,1],[0,2,2,3],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[0,2,2,2],[1,1,3,1]],[[0,2,1,1],[2,2,3,1],[0,2,2,2],[1,1,2,2]],[[0,2,1,1],[2,2,4,1],[0,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[0,2,4,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,0],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,0],[1,3,2,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,0],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,0],[1,2,2,2]],[[0,2,1,1],[2,2,4,1],[0,2,3,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[0,2,4,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,1],[1,1,3,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,1],[1,1,2,2]],[[0,2,1,1],[2,2,4,1],[0,2,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[0,2,4,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[0,2,3,1],[2,2,2,0]],[[0,2,1,1],[2,2,3,1],[0,2,3,1],[1,3,2,0]],[[0,2,1,1],[2,2,3,1],[0,2,3,1],[1,2,3,0]],[[0,2,1,1],[2,2,4,1],[0,2,3,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[0,2,4,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,3],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,2],[1,0,2,2]],[[0,2,1,1],[2,2,4,1],[0,2,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[0,2,4,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,3],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,2],[1,1,1,2]],[[0,2,1,1],[2,2,4,1],[0,2,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[0,2,4,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[0,2,3,3],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[0,2,3,2],[1,1,3,0]],[[0,2,1,1],[2,2,4,1],[0,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[0,2,4,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,3],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[0,2,3,2],[1,2,0,2]],[[0,2,1,1],[2,2,4,1],[0,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[0,2,4,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[1,3,1,2],[2,2,1,3],[0,1,2,0]],[[1,2,2,1],[1,3,1,3],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[1,4,1,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,2],[1,3,1,2],[2,2,1,2],[0,1,2,0]],[[1,2,3,1],[1,3,1,2],[2,2,1,2],[0,1,2,0]],[[1,3,2,1],[1,3,1,2],[2,2,1,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[0,4,2,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[0,3,2,0],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[0,3,2,0],[1,3,2,1]],[[0,2,1,1],[2,2,3,1],[0,3,2,0],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[0,3,2,0],[1,2,2,2]],[[0,2,1,1],[2,2,3,1],[0,4,2,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[0,3,2,1],[2,2,2,0]],[[0,2,1,1],[2,2,3,1],[0,3,2,1],[1,3,2,0]],[[0,2,1,1],[2,2,3,1],[0,3,2,1],[1,2,3,0]],[[0,2,1,1],[2,2,3,1],[0,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[0,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,2,3,1],[0,3,2,2],[0,1,2,2]],[[2,2,2,1],[1,3,1,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[1,3,1,2],[2,2,1,2],[0,1,1,2]],[[1,2,2,1],[1,3,1,2],[2,2,1,3],[0,1,1,1]],[[1,2,2,1],[1,3,1,3],[2,2,1,2],[0,1,1,1]],[[1,2,2,1],[1,4,1,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,2],[1,3,1,2],[2,2,1,2],[0,1,1,1]],[[0,2,1,1],[2,2,4,1],[0,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[0,4,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[0,3,4,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,0],[1,1,3,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,0],[1,1,2,2]],[[0,2,1,1],[2,2,4,1],[0,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[0,4,3,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[0,3,4,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,0],[2,2,1,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,0],[1,3,1,1]],[[0,2,1,1],[2,2,4,1],[0,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[0,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,1],[0,1,2,2]],[[0,2,1,1],[2,2,4,1],[0,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[0,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[0,3,4,1],[1,1,1,1]],[[0,2,1,1],[2,2,4,1],[0,3,3,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[0,4,3,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[0,3,4,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[0,3,3,1],[1,1,3,0]],[[0,2,1,1],[2,2,4,1],[0,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[0,4,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[0,3,4,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,1],[2,2,0,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,1],[1,3,0,1]],[[0,2,1,1],[2,2,4,1],[0,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[0,4,3,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[0,3,4,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[0,3,3,1],[2,2,1,0]],[[0,2,1,1],[2,2,3,1],[0,3,3,1],[1,3,1,0]],[[1,2,3,1],[1,3,1,2],[2,2,1,2],[0,1,1,1]],[[1,3,2,1],[1,3,1,2],[2,2,1,2],[0,1,1,1]],[[2,2,2,1],[1,3,1,2],[2,2,1,2],[0,1,1,1]],[[0,2,1,1],[2,2,4,1],[0,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,1],[0,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,2],[0,0,2,2]],[[0,2,1,1],[2,2,4,1],[0,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[0,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,2],[0,1,1,2]],[[0,2,1,1],[2,2,4,1],[0,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[0,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[0,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[0,3,3,2],[0,1,3,0]],[[0,2,1,1],[2,2,4,1],[0,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[0,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[0,3,3,2],[0,2,0,2]],[[0,2,1,1],[2,2,4,1],[0,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[0,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[1,4,1,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,2],[1,3,1,2],[2,2,1,1],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[1,3,1,2],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[1,3,1,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[1,3,1,3],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[1,4,1,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,2],[1,3,1,2],[2,2,1,1],[0,2,2,0]],[[1,2,3,1],[1,3,1,2],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[1,3,1,2],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[1,3,1,2],[2,2,1,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,0,2,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,0,2,2],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,0,2,2],[1,3,2,1]],[[0,2,1,1],[2,2,3,1],[1,0,2,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[1,0,2,2],[1,2,2,2]],[[0,2,1,1],[2,2,4,1],[1,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,0,4,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,0,3,1],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,0,3,1],[1,3,2,1]],[[0,2,1,1],[2,2,3,1],[1,0,3,1],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[1,0,3,1],[1,2,2,2]],[[0,2,1,1],[2,2,3,1],[1,0,3,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,0,3,2],[0,2,3,1]],[[0,2,1,1],[2,2,3,1],[1,0,3,2],[0,2,2,2]],[[0,2,1,1],[2,2,4,1],[1,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,0,4,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,0,3,3],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,0,3,2],[1,2,1,2]],[[0,2,1,1],[2,2,4,1],[1,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,0,4,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,0,3,3],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,0,3,2],[2,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,0,3,2],[1,3,2,0]],[[0,2,1,1],[2,2,3,1],[1,0,3,2],[1,2,3,0]],[[0,2,1,1],[2,2,3,1],[1,1,2,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,1,2,2],[0,3,2,1]],[[0,2,1,1],[2,2,3,1],[1,1,2,2],[0,2,3,1]],[[0,2,1,1],[2,2,3,1],[1,1,2,2],[0,2,2,2]],[[0,2,1,1],[2,2,4,1],[1,1,3,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,1,4,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,1,3,1],[0,3,2,1]],[[0,2,1,1],[2,2,3,1],[1,1,3,1],[0,2,3,1]],[[0,2,1,1],[2,2,3,1],[1,1,3,1],[0,2,2,2]],[[0,2,1,1],[2,2,4,1],[1,1,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,1,4,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,1,3,3],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,1,3,2],[0,2,1,2]],[[0,2,1,1],[2,2,4,1],[1,1,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,1,4,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,1,3,3],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,1,3,2],[0,3,2,0]],[[0,2,1,1],[2,2,3,1],[1,1,3,2],[0,2,3,0]],[[0,2,1,1],[2,2,3,1],[1,2,2,3],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,2,2],[0,1,3,1]],[[0,2,1,1],[2,2,3,1],[1,2,2,2],[0,1,2,2]],[[0,2,1,1],[2,2,3,1],[1,2,2,3],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,2,2],[1,0,3,1]],[[0,2,1,1],[2,2,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[1,3,1,3],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,2],[1,3,1,2],[2,2,1,0],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[2,2,1,0],[1,1,2,1]],[[0,2,1,1],[2,2,4,1],[1,2,3,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,4,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,0],[0,3,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,0],[0,2,3,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,0],[0,2,2,2]],[[0,2,1,1],[2,2,4,1],[1,2,3,1],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,4,1],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,1],[0,1,3,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,1],[0,1,2,2]],[[0,2,1,1],[2,2,4,1],[1,2,3,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,2,4,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,2,3,1],[0,3,2,0]],[[0,2,1,1],[2,2,3,1],[1,2,3,1],[0,2,3,0]],[[0,2,1,1],[2,2,4,1],[1,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,4,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,1],[1,0,3,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,1],[1,0,2,2]],[[1,3,2,1],[1,3,1,2],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[1,3,1,3],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[1,4,1,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,2],[1,3,1,2],[2,2,1,0],[0,2,2,1]],[[1,2,3,1],[1,3,1,2],[2,2,1,0],[0,2,2,1]],[[0,2,1,1],[2,2,4,1],[1,2,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,4,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,2],[0,0,2,2]],[[0,2,1,1],[2,2,4,1],[1,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[1,2,4,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,2],[0,1,1,2]],[[0,2,1,1],[2,2,4,1],[1,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[1,2,4,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[1,2,3,3],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[1,2,3,2],[0,1,3,0]],[[0,2,1,1],[2,2,4,1],[1,2,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[1,2,4,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,3],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,2],[0,2,0,2]],[[0,2,1,1],[2,2,4,1],[1,2,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[1,2,4,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[1,2,3,3],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[1,3,1,2],[2,2,1,0],[0,2,2,1]],[[0,2,1,1],[2,2,4,1],[1,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[1,2,4,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,3],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,2],[1,0,1,2]],[[0,2,1,1],[2,2,4,1],[1,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[1,2,4,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[1,2,3,3],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[1,2,3,2],[1,0,3,0]],[[0,2,1,1],[2,2,4,1],[1,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[1,2,4,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,3],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[1,2,3,2],[1,1,0,2]],[[0,2,1,1],[2,2,4,1],[1,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[1,2,4,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[1,2,3,3],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[1,4,0,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,0,1],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,0,1],[1,3,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,0,1],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[1,3,0,1],[1,2,2,2]],[[0,2,1,1],[2,2,3,1],[1,4,0,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,0,2],[2,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,0,2],[1,3,1,1]],[[0,2,1,1],[2,2,3,1],[1,4,0,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,0,2],[2,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,0,2],[1,3,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,0,2],[1,2,3,0]],[[0,2,1,1],[2,2,3,1],[1,4,1,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,1,0],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,1,0],[1,3,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,1,0],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[1,3,1,0],[1,2,2,2]],[[0,2,1,1],[2,2,3,1],[1,4,1,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,1,1],[2,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,1,1],[1,3,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,1,1],[1,2,3,0]],[[0,2,1,1],[2,2,3,1],[1,4,1,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[1,3,1,2],[2,2,0,1]],[[0,2,1,1],[2,2,3,1],[1,3,1,2],[1,3,0,1]],[[0,2,1,1],[2,2,3,1],[1,4,1,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[1,3,1,2],[2,2,1,0]],[[0,2,1,1],[2,2,3,1],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[1,3,1,2],[2,2,0,3],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[1,4,2,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,2,0],[0,3,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,2,0],[0,2,3,1]],[[0,2,1,1],[2,2,3,1],[1,3,2,0],[0,2,2,2]],[[0,2,1,1],[2,2,3,1],[1,4,2,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,2,0],[2,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,2,0],[1,3,1,1]],[[0,2,1,1],[2,2,3,1],[1,4,2,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,2,1],[0,3,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,2,1],[0,2,3,0]],[[0,2,1,1],[2,2,3,1],[1,4,2,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[1,3,2,1],[2,2,0,1]],[[0,2,1,1],[2,2,3,1],[1,3,2,1],[1,3,0,1]],[[0,2,1,1],[2,2,3,1],[1,4,2,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[1,3,2,1],[2,2,1,0]],[[0,2,1,1],[2,2,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[1,3,1,3],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[1,4,1,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,2],[1,3,1,2],[2,2,0,2],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[2,2,0,2],[1,1,2,0]],[[1,3,2,1],[1,3,1,2],[2,2,0,2],[1,1,2,0]],[[2,2,2,1],[1,3,1,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[1,3,1,2],[2,2,0,2],[1,1,1,2]],[[1,2,2,1],[1,3,1,2],[2,2,0,3],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[2,2,0,2],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[2,2,0,2],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[2,2,0,2],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[1,3,1,2],[2,2,0,2],[1,0,2,2]],[[1,2,2,1],[1,3,1,2],[2,2,0,2],[1,0,3,1]],[[1,2,2,1],[1,3,1,2],[2,2,0,3],[1,0,2,1]],[[1,2,2,1],[1,3,1,3],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[1,4,1,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,2],[1,3,1,2],[2,2,0,2],[1,0,2,1]],[[1,2,3,1],[1,3,1,2],[2,2,0,2],[1,0,2,1]],[[1,3,2,1],[1,3,1,2],[2,2,0,2],[1,0,2,1]],[[2,2,2,1],[1,3,1,2],[2,2,0,2],[1,0,2,1]],[[0,2,1,1],[2,2,4,1],[1,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[1,4,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,4,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,3,0],[0,1,3,1]],[[0,2,1,1],[2,2,3,1],[1,3,3,0],[0,1,2,2]],[[0,2,1,1],[2,2,4,1],[1,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,4,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,4,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,3,0],[0,3,1,1]],[[0,2,1,1],[2,2,4,1],[1,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[1,4,3,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,4,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[1,3,3,0],[1,0,3,1]],[[0,2,1,1],[2,2,3,1],[1,3,3,0],[1,0,2,2]],[[0,2,1,1],[2,2,4,1],[1,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[1,4,3,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,4,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[1,4,3,0],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[1,3,3,0],[2,2,1,0]],[[0,2,1,1],[2,2,3,1],[1,3,3,0],[1,3,1,0]],[[0,2,1,1],[2,2,4,1],[1,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[1,4,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,4,1],[0,1,1,1]],[[0,2,1,1],[2,2,4,1],[1,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[1,4,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,4,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,3,1],[0,1,3,0]],[[0,2,1,1],[2,2,4,1],[1,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[1,4,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[1,3,4,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[1,3,3,1],[0,3,0,1]],[[0,2,1,1],[2,2,4,1],[1,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[1,4,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[1,3,4,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[1,3,1,2],[2,2,0,3],[0,2,2,0]],[[1,2,2,1],[1,3,1,3],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[1,4,1,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,2],[1,3,1,2],[2,2,0,2],[0,2,2,0]],[[1,2,3,1],[1,3,1,2],[2,2,0,2],[0,2,2,0]],[[1,3,2,1],[1,3,1,2],[2,2,0,2],[0,2,2,0]],[[0,2,1,1],[2,2,4,1],[1,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[1,4,3,1],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,4,1],[1,0,1,1]],[[0,2,1,1],[2,2,4,1],[1,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[1,4,3,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,4,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,3,1],[1,0,3,0]],[[0,2,1,1],[2,2,4,1],[1,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[1,4,3,1],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[1,3,4,1],[1,1,0,1]],[[0,2,1,1],[2,2,4,1],[1,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[1,4,3,1],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[1,3,4,1],[1,1,1,0]],[[2,2,2,1],[1,3,1,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[1,3,1,2],[2,2,0,2],[0,2,1,2]],[[1,2,2,1],[1,3,1,2],[2,2,0,3],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[2,2,0,2],[0,2,1,1]],[[1,2,3,1],[1,3,1,2],[2,2,0,2],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[2,2,0,2],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[1,3,1,2],[2,2,0,2],[0,1,2,2]],[[1,2,2,1],[1,3,1,2],[2,2,0,2],[0,1,3,1]],[[1,2,2,1],[1,3,1,2],[2,2,0,3],[0,1,2,1]],[[1,2,2,1],[1,3,1,3],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[1,4,1,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,2],[1,3,1,2],[2,2,0,2],[0,1,2,1]],[[1,2,3,1],[1,3,1,2],[2,2,0,2],[0,1,2,1]],[[1,3,2,1],[1,3,1,2],[2,2,0,2],[0,1,2,1]],[[2,2,2,1],[1,3,1,2],[2,2,0,2],[0,1,2,1]],[[0,2,1,1],[2,2,4,1],[1,3,3,2],[0,0,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,4,2],[0,0,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,3,3],[0,0,1,1]],[[0,2,1,1],[2,2,3,1],[1,3,3,2],[0,0,1,2]],[[0,2,1,1],[2,2,4,1],[1,3,3,2],[0,0,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,4,2],[0,0,2,0]],[[0,2,1,1],[2,2,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,4,1,2],[2,2,0,1],[1,2,2,0]],[[1,2,2,2],[1,3,1,2],[2,2,0,1],[1,2,2,0]],[[1,2,3,1],[1,3,1,2],[2,2,0,1],[1,2,2,0]],[[1,3,2,1],[1,3,1,2],[2,2,0,1],[1,2,2,0]],[[2,2,2,1],[1,3,1,2],[2,2,0,1],[1,2,2,0]],[[1,2,2,1],[1,3,1,3],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,2],[1,3,1,2],[2,2,0,1],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[2,2,0,1],[1,1,2,1]],[[1,3,2,1],[1,3,1,2],[2,2,0,1],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[1,3,1,3],[2,2,0,1],[0,2,2,1]],[[1,2,2,1],[1,4,1,2],[2,2,0,1],[0,2,2,1]],[[1,2,2,2],[1,3,1,2],[2,2,0,1],[0,2,2,1]],[[1,2,3,1],[1,3,1,2],[2,2,0,1],[0,2,2,1]],[[1,3,2,1],[1,3,1,2],[2,2,0,1],[0,2,2,1]],[[2,2,2,1],[1,3,1,2],[2,2,0,1],[0,2,2,1]],[[1,2,2,1],[1,4,1,2],[2,2,0,0],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[2,2,0,0],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[2,2,0,0],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[2,2,0,0],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[2,2,0,0],[1,2,2,1]],[[1,2,2,1],[1,3,1,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,1],[1,3,1,3],[2,1,3,2],[1,0,0,1]],[[1,2,2,1],[1,4,1,2],[2,1,3,2],[1,0,0,1]],[[1,2,2,2],[1,3,1,2],[2,1,3,2],[1,0,0,1]],[[1,2,3,1],[1,3,1,2],[2,1,3,2],[1,0,0,1]],[[1,3,2,1],[1,3,1,2],[2,1,3,2],[1,0,0,1]],[[2,2,2,1],[1,3,1,2],[2,1,3,2],[1,0,0,1]],[[0,2,1,1],[2,2,3,1],[2,0,2,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,2,2],[0,3,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,2,2],[0,2,3,1]],[[0,2,1,1],[2,2,3,1],[2,0,2,2],[0,2,2,2]],[[0,2,1,1],[2,2,3,1],[2,0,2,3],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,2,2],[1,1,3,1]],[[0,2,1,1],[2,2,3,1],[2,0,2,2],[1,1,2,2]],[[0,2,1,1],[3,2,3,1],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,4,1],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[3,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,4,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,0],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,0],[1,3,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,0],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,0],[1,2,2,2]],[[0,2,1,1],[2,2,4,1],[2,0,3,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,4,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,1],[0,3,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,1],[0,2,3,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,1],[0,2,2,2]],[[0,2,1,1],[2,2,4,1],[2,0,3,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,4,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,1],[1,1,3,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,1],[1,1,2,2]],[[0,2,1,1],[3,2,3,1],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,4,1],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[3,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,0,4,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,0,3,1],[2,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,0,3,1],[1,3,2,0]],[[0,2,1,1],[2,2,3,1],[2,0,3,1],[1,2,3,0]],[[0,2,1,1],[2,2,4,1],[2,0,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[2,0,4,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,3],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,2],[0,2,1,2]],[[0,2,1,1],[2,2,4,1],[2,0,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,0,4,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,0,3,3],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,0,3,2],[0,3,2,0]],[[0,2,1,1],[2,2,3,1],[2,0,3,2],[0,2,3,0]],[[0,2,1,1],[2,2,4,1],[2,0,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,0,4,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,3],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,2],[1,1,1,2]],[[0,2,1,1],[2,2,4,1],[2,0,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,0,4,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,0,3,3],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,0,3,2],[1,1,3,0]],[[0,2,1,1],[2,2,4,1],[2,0,3,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,0,4,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,3],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,0,3,2],[1,2,0,2]],[[0,2,1,1],[2,2,4,1],[2,0,3,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,0,4,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,0,3,3],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,1,2,3],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,1,2,2],[0,1,3,1]],[[0,2,1,1],[2,2,3,1],[2,1,2,2],[0,1,2,2]],[[0,2,1,1],[2,2,3,1],[2,1,2,3],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[2,1,2,2],[1,0,3,1]],[[0,2,1,1],[2,2,3,1],[2,1,2,2],[1,0,2,2]],[[0,2,1,1],[2,2,4,1],[2,1,3,1],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,1,4,1],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,1],[0,1,3,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,1],[0,1,2,2]],[[0,2,1,1],[2,2,4,1],[2,1,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[2,1,4,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,1],[1,0,3,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,1],[1,0,2,2]],[[1,2,2,1],[1,3,1,2],[2,1,3,3],[0,1,0,1]],[[0,2,1,1],[2,2,4,1],[2,1,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,1],[2,1,4,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,2],[0,0,2,2]],[[0,2,1,1],[2,2,4,1],[2,1,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,1,4,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,2],[0,1,1,2]],[[0,2,1,1],[2,2,4,1],[2,1,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,1,4,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,1,3,3],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,1,3,2],[0,1,3,0]],[[0,2,1,1],[2,2,4,1],[2,1,3,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,1,4,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,3],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,2],[0,2,0,2]],[[0,2,1,1],[2,2,4,1],[2,1,3,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,1,4,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,1,3,2],[0,1,0,1]],[[1,2,2,1],[1,4,1,2],[2,1,3,2],[0,1,0,1]],[[1,2,2,2],[1,3,1,2],[2,1,3,2],[0,1,0,1]],[[1,2,3,1],[1,3,1,2],[2,1,3,2],[0,1,0,1]],[[1,3,2,1],[1,3,1,2],[2,1,3,2],[0,1,0,1]],[[2,2,2,1],[1,3,1,2],[2,1,3,2],[0,1,0,1]],[[0,2,1,1],[2,2,4,1],[2,1,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[2,1,4,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,3],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,2],[1,0,1,2]],[[0,2,1,1],[2,2,4,1],[2,1,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[2,1,4,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[2,1,3,3],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[2,1,3,2],[1,0,3,0]],[[0,2,1,1],[2,2,4,1],[2,1,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[2,1,4,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,3],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[2,1,3,2],[1,1,0,2]],[[0,2,1,1],[2,2,4,1],[2,1,3,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[2,1,4,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[2,1,3,3],[1,1,1,0]],[[0,2,1,1],[3,2,3,1],[2,2,0,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[3,2,0,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,2,0,1],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,2,0,1],[1,3,2,1]],[[0,2,1,1],[2,2,3,1],[2,2,0,1],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[2,2,0,1],[1,2,2,2]],[[0,2,1,1],[3,2,3,1],[2,2,0,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[3,2,0,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[2,2,0,2],[2,2,1,1]],[[0,2,1,1],[2,2,3,1],[2,2,0,2],[1,3,1,1]],[[0,2,1,1],[3,2,3,1],[2,2,0,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[3,2,0,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,2,0,2],[2,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,2,0,2],[1,3,2,0]],[[0,2,1,1],[2,2,3,1],[2,2,0,2],[1,2,3,0]],[[0,2,1,1],[3,2,3,1],[2,2,1,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[3,2,1,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,2,1,0],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,2,1,0],[1,3,2,1]],[[0,2,1,1],[2,2,3,1],[2,2,1,0],[1,2,3,1]],[[0,2,1,1],[2,2,3,1],[2,2,1,0],[1,2,2,2]],[[0,2,1,1],[3,2,3,1],[2,2,1,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[3,2,1,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,2,1,1],[2,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,2,1,1],[1,3,2,0]],[[0,2,1,1],[2,2,3,1],[2,2,1,1],[1,2,3,0]],[[0,2,1,1],[3,2,3,1],[2,2,1,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[3,2,1,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,2,1,2],[2,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,2,1,2],[1,3,0,1]],[[0,2,1,1],[3,2,3,1],[2,2,1,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[3,2,1,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,2,1,2],[2,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,2,1,2],[1,3,1,0]],[[0,2,1,1],[3,2,3,1],[2,2,2,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[3,2,2,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,1],[2,2,2,0],[2,2,1,1]],[[0,2,1,1],[2,2,3,1],[2,2,2,0],[1,3,1,1]],[[0,2,1,1],[3,2,3,1],[2,2,2,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[3,2,2,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,2,2,1],[2,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,2,2,1],[1,3,0,1]],[[0,2,1,1],[3,2,3,1],[2,2,2,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[3,2,2,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,2,2,1],[2,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[1,3,1,3],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[1,4,1,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,1,2],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,1,2],[2,1,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,1,2],[2,1,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,1,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[1,4,1,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,1,2],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,1,2],[2,1,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,1,2],[2,1,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,1,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[1,3,1,3],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[1,4,1,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,1,2],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,1,2],[2,1,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,1,2],[2,1,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,1,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[1,3,1,3],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[1,4,1,2],[2,1,3,1],[1,0,1,1]],[[0,2,1,1],[3,2,3,1],[2,2,3,0],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[3,2,3,0],[1,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,2,3,0],[2,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,2,3,0],[1,3,1,0]],[[1,2,2,2],[1,3,1,2],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,1,2],[2,1,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,1,2],[2,1,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,1,2],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[1,3,1,3],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,1,2],[2,1,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,1,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,1,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,1,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[1,3,1,3],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,1,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,1,2],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,1,2],[2,1,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,1,2],[2,1,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,1,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[1,3,1,3],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,1,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,1,2],[2,1,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,1,2],[2,1,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,1,2],[2,1,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,1,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[1,3,1,3],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[1,4,1,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,2],[1,3,1,2],[2,1,3,1],[0,0,2,1]],[[1,2,3,1],[1,3,1,2],[2,1,3,1],[0,0,2,1]],[[1,3,2,1],[1,3,1,2],[2,1,3,1],[0,0,2,1]],[[2,2,2,1],[1,3,1,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[1,3,1,3],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[2,1,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[2,1,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[2,1,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[1,4,1,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,1,2],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,1,2],[2,1,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,1,2],[2,1,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,1,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[1,3,1,3],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[2,1,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,1,2],[2,1,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[2,1,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[2,1,3,0],[0,1,2,1]],[[1,2,2,1],[1,4,1,2],[2,1,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,1,2],[2,1,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,1,2],[2,1,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,1,2],[2,1,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,1,2],[2,1,3,0],[0,1,2,1]],[[0,2,1,1],[3,2,3,1],[2,3,0,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[3,3,0,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,3,0,0],[2,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,3,0,0],[1,3,2,1]],[[0,2,1,1],[3,2,3,1],[2,3,0,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[3,3,0,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,4,0,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,3,0,1],[0,3,2,1]],[[0,2,1,1],[2,2,3,1],[2,3,0,1],[0,2,3,1]],[[0,2,1,1],[2,2,3,1],[2,3,0,1],[0,2,2,2]],[[0,2,1,1],[3,2,3,1],[2,3,0,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[3,3,0,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,4,0,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,3,0,1],[2,1,2,1]],[[0,2,1,1],[3,2,3,1],[2,3,0,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[3,3,0,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,3,0,1],[2,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,3,0,1],[1,3,2,0]],[[0,2,1,1],[3,2,3,1],[2,3,0,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[3,3,0,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,4,0,2],[0,1,2,1]],[[0,2,1,1],[3,2,3,1],[2,3,0,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[3,3,0,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[2,4,0,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[2,3,0,2],[0,3,1,1]],[[0,2,1,1],[3,2,3,1],[2,3,0,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[3,3,0,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,4,0,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,3,0,2],[0,3,2,0]],[[0,2,1,1],[2,2,3,1],[2,3,0,2],[0,2,3,0]],[[0,2,1,1],[3,2,3,1],[2,3,0,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[3,3,0,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[2,4,0,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[2,3,0,2],[2,0,2,1]],[[0,2,1,1],[3,2,3,1],[2,3,0,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[3,3,0,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,4,0,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,3,0,2],[2,1,1,1]],[[0,2,1,1],[3,2,3,1],[2,3,0,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[3,3,0,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,4,0,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,3,0,2],[2,1,2,0]],[[0,2,1,1],[3,2,3,1],[2,3,1,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[3,3,1,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,4,1,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,1],[2,3,1,0],[0,3,2,1]],[[0,2,1,1],[2,2,3,1],[2,3,1,0],[0,2,3,1]],[[0,2,1,1],[2,2,3,1],[2,3,1,0],[0,2,2,2]],[[0,2,1,1],[3,2,3,1],[2,3,1,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[3,3,1,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,4,1,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,3,1,0],[2,1,2,1]],[[0,2,1,1],[3,2,3,1],[2,3,1,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[3,3,1,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,4,1,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,1],[2,3,1,1],[0,3,2,0]],[[0,2,1,1],[2,2,3,1],[2,3,1,1],[0,2,3,0]],[[0,2,1,1],[3,2,3,1],[2,3,1,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[3,3,1,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,4,1,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[1,3,1,2],[2,1,2,3],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[2,1,2,2],[1,1,1,0]],[[0,2,1,1],[3,2,3,1],[2,3,1,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[3,3,1,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,4,1,2],[0,1,1,1]],[[0,2,1,1],[3,2,3,1],[2,3,1,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[3,3,1,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,4,1,2],[0,1,2,0]],[[0,2,1,1],[3,2,3,1],[2,3,1,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[3,3,1,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,4,1,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,3,1,2],[0,3,0,1]],[[0,2,1,1],[3,2,3,1],[2,3,1,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[3,3,1,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,4,1,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[1,4,1,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,1,2],[2,1,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,1,2],[2,1,2,2],[1,1,1,0]],[[1,3,2,1],[1,3,1,2],[2,1,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,1,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[1,3,1,2],[2,1,2,2],[1,1,0,2]],[[1,2,2,1],[1,3,1,2],[2,1,2,3],[1,1,0,1]],[[0,2,1,1],[3,2,3,1],[2,3,1,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[3,3,1,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[2,4,1,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[2,3,1,2],[2,0,1,1]],[[0,2,1,1],[3,2,3,1],[2,3,1,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[3,3,1,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[2,4,1,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[2,3,1,2],[2,0,2,0]],[[0,2,1,1],[3,2,3,1],[2,3,1,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[3,3,1,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[2,4,1,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[2,3,1,2],[2,1,0,1]],[[0,2,1,1],[3,2,3,1],[2,3,1,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[3,3,1,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[2,4,1,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[2,3,1,2],[2,1,1,0]],[[1,2,2,1],[1,3,1,3],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[1,4,1,2],[2,1,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,1,2],[2,1,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,1,2],[2,1,2,2],[1,1,0,1]],[[0,2,1,1],[3,2,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,1,1],[2,2,3,1],[3,3,1,2],[1,2,0,0]],[[0,2,1,1],[2,2,3,1],[2,4,1,2],[1,2,0,0]],[[0,2,1,1],[2,2,3,1],[2,3,1,2],[2,2,0,0]],[[1,3,2,1],[1,3,1,2],[2,1,2,2],[1,1,0,1]],[[2,2,2,1],[1,3,1,2],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[1,3,1,2],[2,1,2,3],[1,0,2,0]],[[1,2,2,1],[1,3,1,3],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[1,4,1,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,1,2],[2,1,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,1,2],[2,1,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,1,2],[2,1,2,2],[1,0,2,0]],[[2,2,2,1],[1,3,1,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[1,3,1,2],[2,1,2,2],[1,0,1,2]],[[0,2,1,1],[3,2,3,1],[2,3,2,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[3,3,2,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,1],[2,4,2,0],[0,1,2,1]],[[0,2,1,1],[3,2,3,1],[2,3,2,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[3,3,2,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[2,4,2,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,1],[2,3,2,0],[0,3,1,1]],[[0,2,1,1],[3,2,3,1],[2,3,2,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[3,3,2,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[2,4,2,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,1],[2,3,2,0],[2,0,2,1]],[[0,2,1,1],[3,2,3,1],[2,3,2,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[3,3,2,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,4,2,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,3,2,0],[2,1,1,1]],[[0,2,1,1],[3,2,3,1],[2,3,2,0],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[3,3,2,0],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,4,2,0],[1,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[1,3,1,2],[2,1,2,3],[1,0,1,1]],[[1,2,2,1],[1,3,1,3],[2,1,2,2],[1,0,1,1]],[[1,2,2,1],[1,4,1,2],[2,1,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,1,2],[2,1,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,1,2],[2,1,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,1,2],[2,1,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,1,2],[2,1,2,2],[1,0,1,1]],[[0,2,1,1],[3,2,3,1],[2,3,2,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[3,3,2,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,1],[2,4,2,1],[0,1,1,1]],[[0,2,1,1],[3,2,3,1],[2,3,2,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[3,3,2,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,4,2,1],[0,1,2,0]],[[0,2,1,1],[3,2,3,1],[2,3,2,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[3,3,2,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,4,2,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,1],[2,3,2,1],[0,3,0,1]],[[0,2,1,1],[3,2,3,1],[2,3,2,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[3,3,2,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,4,2,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,3,2,1],[0,3,1,0]],[[0,2,1,1],[3,2,3,1],[2,3,2,1],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[3,3,2,1],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[2,4,2,1],[1,0,1,1]],[[0,2,1,1],[2,2,3,1],[2,3,2,1],[2,0,1,1]],[[0,2,1,1],[3,2,3,1],[2,3,2,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[3,3,2,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[2,4,2,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[2,3,2,1],[2,0,2,0]],[[0,2,1,1],[3,2,3,1],[2,3,2,1],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[3,3,2,1],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[2,4,2,1],[1,1,0,1]],[[0,2,1,1],[2,2,3,1],[2,3,2,1],[2,1,0,1]],[[0,2,1,1],[3,2,3,1],[2,3,2,1],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[3,3,2,1],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[2,4,2,1],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[2,3,2,1],[2,1,1,0]],[[0,2,1,1],[3,2,3,1],[2,3,2,1],[1,2,0,0]],[[0,2,1,1],[2,2,3,1],[3,3,2,1],[1,2,0,0]],[[0,2,1,1],[2,2,3,1],[2,4,2,1],[1,2,0,0]],[[0,2,1,1],[2,2,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[1,3,1,2],[2,1,2,3],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,1,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,1,2],[2,1,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,1,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[1,3,1,2],[2,1,2,2],[0,2,0,2]],[[1,2,2,1],[1,3,1,2],[2,1,2,3],[0,2,0,1]],[[1,2,2,1],[1,3,1,3],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,1,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,1,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,1,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[1,3,1,2],[2,1,2,3],[0,1,2,0]],[[1,2,2,1],[1,3,1,3],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[1,4,1,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,1,2],[2,1,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,1,2],[2,1,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,1,2],[2,1,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,1,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[1,3,1,2],[2,1,2,2],[0,1,1,2]],[[1,2,2,1],[1,3,1,2],[2,1,2,3],[0,1,1,1]],[[1,2,2,1],[1,3,1,3],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[1,4,1,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,1,2],[2,1,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,1,2],[2,1,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,1,2],[2,1,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,1,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,1,2],[2,1,2,2],[0,0,2,2]],[[1,2,2,1],[1,3,1,2],[2,1,2,3],[0,0,2,1]],[[1,2,2,1],[1,3,1,3],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[1,4,1,2],[2,1,2,2],[0,0,2,1]],[[1,2,2,2],[1,3,1,2],[2,1,2,2],[0,0,2,1]],[[1,2,3,1],[1,3,1,2],[2,1,2,2],[0,0,2,1]],[[1,3,2,1],[1,3,1,2],[2,1,2,2],[0,0,2,1]],[[2,2,2,1],[1,3,1,2],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[1,3,1,3],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[1,4,1,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,1,2,1],[1,2,1,0]],[[1,2,3,1],[1,3,1,2],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[1,3,1,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,1,2,1],[1,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[1,3,1,3],[2,1,2,0],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[2,1,2,0],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[2,1,2,0],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[2,1,2,0],[1,2,1,1]],[[0,2,1,1],[3,2,3,1],[2,3,3,0],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[3,3,3,0],[0,1,2,0]],[[0,2,1,1],[2,2,3,1],[2,4,3,0],[0,1,2,0]],[[0,2,1,1],[3,2,3,1],[2,3,3,0],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[3,3,3,0],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,4,3,0],[0,2,1,0]],[[0,2,1,1],[2,2,3,1],[2,3,3,0],[0,3,1,0]],[[0,2,1,1],[3,2,3,1],[2,3,3,0],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[3,3,3,0],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[2,4,3,0],[1,0,2,0]],[[0,2,1,1],[2,2,3,1],[2,3,3,0],[2,0,2,0]],[[0,2,1,1],[3,2,3,1],[2,3,3,0],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[3,3,3,0],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[2,4,3,0],[1,1,1,0]],[[0,2,1,1],[2,2,3,1],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[1,3,1,2],[2,1,1,3],[1,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[1,4,1,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,1,1,2],[1,2,1,0]],[[0,2,1,1],[3,2,3,1],[2,3,3,0],[1,2,0,0]],[[0,2,1,1],[2,2,3,1],[3,3,3,0],[1,2,0,0]],[[0,2,1,1],[2,2,3,1],[2,4,3,0],[1,2,0,0]],[[0,2,1,1],[2,2,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,3,1],[1,3,1,2],[2,1,1,2],[1,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,1,1,2],[1,2,1,0]],[[2,2,2,1],[1,3,1,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[1,3,1,2],[2,1,1,2],[1,2,0,2]],[[1,2,2,1],[1,3,1,2],[2,1,1,3],[1,2,0,1]],[[1,2,2,1],[1,3,1,3],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,1,1,2],[1,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,1,1,2],[1,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,1,1,2],[1,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[1,3,1,2],[2,1,1,2],[1,0,2,2]],[[1,2,2,1],[1,3,1,2],[2,1,1,2],[1,0,3,1]],[[1,2,2,1],[1,3,1,2],[2,1,1,3],[1,0,2,1]],[[1,2,2,1],[1,3,1,3],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[1,4,1,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,2],[1,3,1,2],[2,1,1,2],[1,0,2,1]],[[1,2,3,1],[1,3,1,2],[2,1,1,2],[1,0,2,1]],[[1,3,2,1],[1,3,1,2],[2,1,1,2],[1,0,2,1]],[[0,2,1,1],[3,2,3,1],[2,3,3,1],[0,2,0,0]],[[0,2,1,1],[2,2,3,1],[3,3,3,1],[0,2,0,0]],[[0,2,1,1],[2,2,3,1],[2,4,3,1],[0,2,0,0]],[[2,2,2,1],[1,3,1,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[1,3,1,2],[2,1,1,2],[0,1,2,2]],[[1,2,2,1],[1,3,1,2],[2,1,1,2],[0,1,3,1]],[[1,2,2,1],[1,3,1,2],[2,1,1,3],[0,1,2,1]],[[1,2,2,1],[1,3,1,3],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[1,4,1,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,2],[1,3,1,2],[2,1,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,1,2],[2,1,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,1,2],[2,1,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,1,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[1,3,1,3],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[1,4,1,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,2],[1,3,1,2],[2,1,1,1],[1,2,2,0]],[[0,2,1,1],[3,2,3,1],[2,3,3,1],[1,1,0,0]],[[0,2,1,1],[2,2,3,1],[3,3,3,1],[1,1,0,0]],[[0,2,1,1],[2,2,3,1],[2,4,3,1],[1,1,0,0]],[[0,2,1,1],[2,2,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,3,1],[1,3,1,2],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[1,3,1,2],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[1,3,1,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[1,3,1,3],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[1,4,1,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[2,1,1,0],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[1,3,1,2],[2,1,0,3],[1,2,2,0]],[[1,2,2,1],[1,3,1,3],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[1,4,1,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,2],[1,3,1,2],[2,1,0,2],[1,2,2,0]],[[1,2,3,1],[1,3,1,2],[2,1,0,2],[1,2,2,0]],[[1,3,2,1],[1,3,1,2],[2,1,0,2],[1,2,2,0]],[[2,2,2,1],[1,3,1,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[1,3,1,2],[2,1,0,2],[1,2,1,2]],[[1,2,2,1],[1,3,1,2],[2,1,0,3],[1,2,1,1]],[[1,2,2,1],[1,3,1,3],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[2,1,0,2],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[2,1,0,2],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[2,1,0,2],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[1,3,1,2],[2,1,0,2],[1,1,2,2]],[[1,2,2,1],[1,3,1,2],[2,1,0,2],[1,1,3,1]],[[1,2,2,1],[1,3,1,2],[2,1,0,3],[1,1,2,1]],[[1,2,2,1],[1,3,1,3],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,2],[1,3,1,2],[2,1,0,2],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[2,1,0,2],[1,1,2,1]],[[1,3,2,1],[1,3,1,2],[2,1,0,2],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[1,3,1,2],[2,1,0,2],[0,2,2,2]],[[1,2,2,1],[1,3,1,2],[2,1,0,2],[0,2,3,1]],[[1,2,2,1],[1,3,1,2],[2,1,0,2],[0,3,2,1]],[[1,2,2,1],[1,3,1,2],[2,1,0,3],[0,2,2,1]],[[1,2,2,1],[1,3,1,3],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[1,4,1,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,2],[1,3,1,2],[2,1,0,2],[0,2,2,1]],[[1,2,3,1],[1,3,1,2],[2,1,0,2],[0,2,2,1]],[[1,3,2,1],[1,3,1,2],[2,1,0,2],[0,2,2,1]],[[2,2,2,1],[1,3,1,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[1,3,1,3],[2,1,0,1],[1,2,2,1]],[[1,2,2,1],[1,4,1,2],[2,1,0,1],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[2,1,0,1],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[2,1,0,1],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[2,1,0,1],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[2,1,0,1],[1,2,2,1]],[[1,2,2,1],[1,3,1,3],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[1,4,1,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,1,2],[2,0,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,0,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,1,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,0,3,1],[1,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,0,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,0,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,0,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[1,3,1,3],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[1,4,1,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,2],[1,3,1,2],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[2,0,3,1],[1,1,2,0]],[[1,3,2,1],[1,3,1,2],[2,0,3,1],[1,1,2,0]],[[2,2,2,1],[1,3,1,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[1,3,1,3],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[2,0,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[2,0,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[2,0,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[1,4,1,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,2],[1,3,1,2],[2,0,3,1],[0,2,2,0]],[[1,2,3,1],[1,3,1,2],[2,0,3,1],[0,2,2,0]],[[1,3,2,1],[1,3,1,2],[2,0,3,1],[0,2,2,0]],[[2,2,2,1],[1,3,1,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[1,3,1,3],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[2,0,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[2,0,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,1,2],[2,0,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[2,0,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[2,0,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[2,0,3,0],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[2,0,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[1,3,1,3],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,2],[1,3,1,2],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[2,0,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,1,2],[2,0,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[1,3,1,3],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[1,4,1,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,2],[1,3,1,2],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[1,3,1,2],[2,0,3,0],[0,2,2,1]],[[1,3,2,1],[1,3,1,2],[2,0,3,0],[0,2,2,1]],[[2,2,2,1],[1,3,1,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[1,3,1,2],[2,0,2,3],[1,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[1,4,1,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,0,2,2],[1,2,1,0]],[[1,2,3,1],[1,3,1,2],[2,0,2,2],[1,2,1,0]],[[1,3,2,1],[1,3,1,2],[2,0,2,2],[1,2,1,0]],[[2,2,2,1],[1,3,1,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[1,3,1,2],[2,0,2,2],[1,2,0,2]],[[1,2,2,1],[1,3,1,2],[2,0,2,3],[1,2,0,1]],[[1,2,2,1],[1,3,1,3],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[1,4,1,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,2],[1,3,1,2],[2,0,2,2],[1,2,0,1]],[[1,2,3,1],[1,3,1,2],[2,0,2,2],[1,2,0,1]],[[1,3,2,1],[1,3,1,2],[2,0,2,2],[1,2,0,1]],[[2,2,2,1],[1,3,1,2],[2,0,2,2],[1,2,0,1]],[[0,2,1,2],[2,2,3,2],[0,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[0,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[0,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,0,2,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,0,2,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,2],[0,0,2,2],[1,2,2,2]],[[0,2,1,2],[2,2,3,2],[0,0,3,2],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[0,0,3,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[0,0,3,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,0,3,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,0,3,2],[0,2,2,2]],[[0,2,1,2],[2,2,3,2],[0,0,3,2],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[0,0,3,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[0,0,3,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,0,3,3],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,0,3,2],[1,1,2,2]],[[0,2,1,2],[2,2,3,2],[0,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[0,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[0,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[0,0,3,3],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[0,0,3,2],[1,2,1,2]],[[0,2,1,2],[2,2,3,2],[0,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,4,2],[0,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,3],[0,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[0,0,3,3],[1,2,2,0]],[[0,2,1,2],[2,2,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[0,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[0,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,1,1,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,1,1,2],[2,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,1,1,2],[1,3,2,1]],[[0,2,1,1],[2,2,3,2],[0,1,1,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,2],[0,1,1,2],[1,2,2,2]],[[0,2,1,2],[2,2,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[0,1,2,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[0,1,2,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[0,1,2,3],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[0,1,2,2],[1,2,1,2]],[[0,2,1,2],[2,2,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,4,2],[0,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,3],[0,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[0,1,2,3],[1,2,2,0]],[[0,2,1,2],[2,2,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[0,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[0,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,1,4,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,1,3,0],[2,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,1,3,0],[1,3,2,1]],[[0,2,1,1],[2,2,3,2],[0,1,3,0],[1,2,3,1]],[[0,2,1,1],[2,2,3,2],[0,1,3,0],[1,2,2,2]],[[0,2,1,2],[2,2,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[0,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[0,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[0,1,4,1],[1,2,1,1]],[[0,2,1,2],[2,2,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,4,2],[0,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,3],[0,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[0,1,4,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[0,1,3,1],[2,2,2,0]],[[0,2,1,1],[2,2,3,2],[0,1,3,1],[1,3,2,0]],[[0,2,1,1],[2,2,3,2],[0,1,3,1],[1,2,3,0]],[[0,2,1,2],[2,2,3,2],[0,1,3,2],[1,0,2,1]],[[0,2,1,1],[2,2,4,2],[0,1,3,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,3],[0,1,3,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[0,1,3,3],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[0,1,3,2],[1,0,2,2]],[[0,2,1,2],[2,2,3,2],[0,1,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[0,1,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[0,1,3,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,1,3,3],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,1,3,2],[1,1,1,2]],[[0,2,1,2],[2,2,3,2],[0,1,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,4,2],[0,1,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,3],[0,1,3,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,1],[1,3,1,2],[2,0,2,3],[1,1,2,0]],[[1,2,2,1],[1,3,1,3],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[1,4,1,2],[2,0,2,2],[1,1,2,0]],[[0,2,1,2],[2,2,3,2],[0,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[0,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[0,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,0,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,0,2],[2,2,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,0,2],[1,3,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,0,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,2],[0,2,0,2],[1,2,2,2]],[[0,2,1,2],[2,2,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[0,2,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[0,2,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,1,3],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,1,2],[1,1,3,1]],[[0,2,1,1],[2,2,3,2],[0,2,1,2],[1,1,2,2]],[[0,2,1,2],[2,2,3,2],[0,2,2,2],[1,0,2,1]],[[0,2,1,1],[2,2,4,2],[0,2,2,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,3],[0,2,2,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,2,3],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,2,2],[1,0,2,2]],[[0,2,1,2],[2,2,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[0,2,2,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[0,2,2,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,2,2,3],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,2,2,2],[1,1,1,2]],[[0,2,1,2],[2,2,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,4,2],[0,2,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,3],[0,2,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[0,2,2,3],[1,1,2,0]],[[0,2,1,2],[2,2,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,1,1],[2,2,4,2],[0,2,2,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,3],[0,2,2,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,2],[0,2,2,3],[1,2,0,1]],[[0,2,1,1],[2,2,3,2],[0,2,2,2],[1,2,0,2]],[[0,2,1,2],[2,2,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,1,1],[2,2,4,2],[0,2,2,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,3],[0,2,2,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,0,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[2,0,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,1,2],[2,0,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,1,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[1,3,1,2],[2,0,2,2],[1,1,1,2]],[[1,2,2,1],[1,3,1,2],[2,0,2,3],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[2,0,2,2],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[2,0,2,2],[1,1,1,1]],[[0,2,1,2],[2,2,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[0,2,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[0,2,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,4,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,3,0],[1,1,3,1]],[[0,2,1,1],[2,2,3,2],[0,2,3,0],[1,1,2,2]],[[0,2,1,2],[2,2,3,2],[0,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[0,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[0,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[0,2,4,0],[1,2,1,1]],[[0,2,1,2],[2,2,3,2],[0,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,4,2],[0,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,3],[0,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,4,1],[1,0,2,1]],[[0,2,1,2],[2,2,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[0,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[0,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,2,4,1],[1,1,1,1]],[[0,2,1,2],[2,2,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,1,1],[2,2,4,2],[0,2,3,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,3],[0,2,3,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[0,2,4,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[0,2,3,1],[1,1,3,0]],[[0,2,1,2],[2,2,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,4,2],[0,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,3],[0,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,2],[0,2,4,1],[1,2,0,1]],[[0,2,1,2],[2,2,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,2,4,2],[0,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,3],[0,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,0,2,2],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[2,0,2,2],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[2,0,2,2],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[2,0,2,2],[1,1,1,1]],[[0,2,1,2],[2,2,3,2],[0,2,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,4,2],[0,2,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,3],[0,2,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[0,2,3,2],[0,0,2,2]],[[0,2,1,2],[2,2,3,2],[0,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[0,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[0,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,2,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,2,3,2],[0,1,1,2]],[[0,2,1,2],[2,2,3,2],[0,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[0,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[0,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[0,2,3,3],[0,1,2,0]],[[0,2,1,2],[2,2,3,2],[0,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,4,2],[0,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,3],[0,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[1,3,1,2],[2,0,2,3],[0,2,2,0]],[[1,2,2,1],[1,3,1,3],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[1,4,1,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,2],[1,3,1,2],[2,0,2,2],[0,2,2,0]],[[1,2,3,1],[1,3,1,2],[2,0,2,2],[0,2,2,0]],[[1,3,2,1],[1,3,1,2],[2,0,2,2],[0,2,2,0]],[[2,2,2,1],[1,3,1,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[1,3,1,2],[2,0,2,2],[0,2,1,2]],[[1,2,2,1],[1,3,1,2],[2,0,2,3],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[2,0,2,2],[0,2,1,1]],[[1,2,3,1],[1,3,1,2],[2,0,2,2],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[2,0,2,2],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[1,4,1,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,2],[1,3,1,2],[2,0,2,1],[1,2,2,0]],[[1,2,3,1],[1,3,1,2],[2,0,2,1],[1,2,2,0]],[[1,3,2,1],[1,3,1,2],[2,0,2,1],[1,2,2,0]],[[2,2,2,1],[1,3,1,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[1,3,1,3],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[1,4,1,2],[2,0,2,0],[1,2,2,1]],[[0,2,1,2],[2,2,3,2],[0,3,0,1],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[0,3,0,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[0,3,0,1],[1,2,2,1]],[[0,2,1,2],[2,2,3,2],[0,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[0,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[0,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,3,0,3],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,3,0,2],[1,1,3,1]],[[0,2,1,1],[2,2,3,2],[0,3,0,2],[1,1,2,2]],[[0,2,1,2],[2,2,3,2],[0,3,0,2],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[0,3,0,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[0,3,0,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[0,3,0,3],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[0,3,0,2],[1,2,1,2]],[[0,2,1,2],[2,2,3,2],[0,3,0,2],[1,2,2,0]],[[0,2,1,1],[2,2,4,2],[0,3,0,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,3],[0,3,0,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[0,3,0,3],[1,2,2,0]],[[0,2,1,2],[2,2,3,2],[0,3,1,0],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[0,3,1,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[0,3,1,0],[1,2,2,1]],[[0,2,1,2],[2,2,3,2],[0,3,1,1],[1,2,2,0]],[[0,2,1,1],[2,2,4,2],[0,3,1,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,3],[0,3,1,1],[1,2,2,0]],[[0,2,1,2],[2,2,3,2],[0,3,1,2],[0,1,2,1]],[[0,2,1,1],[2,2,4,2],[0,3,1,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,3],[0,3,1,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,3,1,3],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,3,1,2],[0,1,3,1]],[[0,2,1,1],[2,2,3,2],[0,3,1,2],[0,1,2,2]],[[0,2,1,2],[2,2,3,2],[0,3,1,2],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[0,3,1,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[0,3,1,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,3,1,3],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,3,1,2],[1,1,1,2]],[[0,2,1,2],[2,2,3,2],[0,3,1,2],[1,1,2,0]],[[0,2,1,1],[2,2,4,2],[0,3,1,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,3],[0,3,1,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[0,3,1,3],[1,1,2,0]],[[0,2,1,2],[2,2,3,2],[0,3,1,2],[1,2,0,1]],[[0,2,1,1],[2,2,4,2],[0,3,1,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,3],[0,3,1,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,2],[0,3,1,3],[1,2,0,1]],[[0,2,1,1],[2,2,3,2],[0,3,1,2],[1,2,0,2]],[[0,2,1,2],[2,2,3,2],[0,3,1,2],[1,2,1,0]],[[0,2,1,1],[2,2,4,2],[0,3,1,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,3],[0,3,1,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,2],[0,3,1,3],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[2,0,2,0],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[2,0,2,0],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[2,0,2,0],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[2,0,2,0],[1,2,2,1]],[[0,2,1,2],[2,2,3,2],[0,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[0,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[0,3,2,0],[1,1,2,1]],[[0,2,1,2],[2,2,3,2],[0,3,2,0],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[0,3,2,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[0,3,2,0],[1,2,1,1]],[[0,2,1,2],[2,2,3,2],[0,3,2,1],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[0,3,2,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[0,3,2,1],[1,1,1,1]],[[0,2,1,2],[2,2,3,2],[0,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,2,4,2],[0,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,3],[0,3,2,1],[1,1,2,0]],[[0,2,1,2],[2,2,3,2],[0,3,2,1],[1,2,0,1]],[[0,2,1,1],[2,2,4,2],[0,3,2,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,3],[0,3,2,1],[1,2,0,1]],[[0,2,1,2],[2,2,3,2],[0,3,2,1],[1,2,1,0]],[[0,2,1,1],[2,2,4,2],[0,3,2,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,3],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[1,3,1,2],[2,0,1,3],[1,2,2,0]],[[0,2,1,2],[2,2,3,2],[0,3,2,2],[0,0,2,1]],[[0,2,1,1],[2,2,4,2],[0,3,2,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,3],[0,3,2,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[0,3,2,3],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[0,3,2,2],[0,0,2,2]],[[0,2,1,2],[2,2,3,2],[0,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[0,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[0,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,3,2,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,3,2,2],[0,1,1,2]],[[0,2,1,2],[2,2,3,2],[0,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[0,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[0,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[0,3,2,3],[0,1,2,0]],[[0,2,1,2],[2,2,3,2],[0,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,4,2],[0,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,3],[0,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[0,3,2,3],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[0,3,2,2],[0,2,0,2]],[[0,2,1,2],[2,2,3,2],[0,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,4,2],[0,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,3],[0,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[1,4,1,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,2],[1,3,1,2],[2,0,1,2],[1,2,2,0]],[[1,2,3,1],[1,3,1,2],[2,0,1,2],[1,2,2,0]],[[1,3,2,1],[1,3,1,2],[2,0,1,2],[1,2,2,0]],[[2,2,2,1],[1,3,1,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[1,3,1,2],[2,0,1,2],[1,2,1,2]],[[1,2,2,1],[1,3,1,2],[2,0,1,3],[1,2,1,1]],[[1,2,2,1],[1,3,1,3],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[2,0,1,2],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[2,0,1,2],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[2,0,1,2],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[1,3,1,2],[2,0,1,2],[1,1,2,2]],[[1,2,2,1],[1,3,1,2],[2,0,1,2],[1,1,3,1]],[[1,2,2,1],[1,3,1,2],[2,0,1,3],[1,1,2,1]],[[1,2,2,1],[1,3,1,3],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,2],[1,3,1,2],[2,0,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[2,0,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,1,2],[2,0,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[1,3,1,2],[2,0,1,2],[0,2,2,2]],[[1,2,2,1],[1,3,1,2],[2,0,1,2],[0,2,3,1]],[[1,2,2,1],[1,3,1,2],[2,0,1,2],[0,3,2,1]],[[1,2,2,1],[1,3,1,2],[2,0,1,3],[0,2,2,1]],[[1,2,2,1],[1,3,1,3],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[1,4,1,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,1,2],[2,0,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,1,2],[2,0,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,1,2],[2,0,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,1,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[1,3,1,3],[2,0,1,1],[1,2,2,1]],[[0,2,1,2],[2,2,3,2],[0,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,4,2],[0,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,3],[0,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,3,4,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[0,3,3,0],[0,1,3,1]],[[0,2,1,1],[2,2,3,2],[0,3,3,0],[0,1,2,2]],[[0,2,1,2],[2,2,3,2],[0,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[0,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[0,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[0,3,4,0],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[2,0,1,1],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[2,0,1,1],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[2,0,1,1],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[2,0,1,1],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[2,0,1,1],[1,2,2,1]],[[0,2,1,2],[2,2,3,2],[0,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,2,4,2],[0,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,2,3,3],[0,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[0,3,4,1],[0,0,2,1]],[[0,2,1,2],[2,2,3,2],[0,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[0,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[0,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[0,3,4,1],[0,1,1,1]],[[0,2,1,2],[2,2,3,2],[0,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[0,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[0,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[0,3,4,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[0,3,3,1],[0,1,3,0]],[[0,2,1,2],[2,2,3,2],[0,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,4,2],[0,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,3],[0,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[0,3,4,1],[0,2,0,1]],[[0,2,1,2],[2,2,3,2],[0,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,4,2],[0,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,3],[0,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,2],[0,3,4,1],[0,2,1,0]],[[0,2,1,2],[2,2,3,2],[0,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,2,4,2],[0,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,2,3,3],[0,3,3,1],[1,2,0,0]],[[0,2,1,2],[2,2,3,2],[0,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,2,4,2],[0,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,2,3,3],[0,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,2,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,3,1,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[1,3,1,3],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[1,4,1,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[1,3,1,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[1,3,1,2],[1,3,3,2],[0,0,0,1]],[[1,3,2,1],[1,3,1,2],[1,3,3,2],[0,0,0,1]],[[2,2,2,1],[1,3,1,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[1,3,1,2],[1,4,3,1],[1,1,0,0]],[[1,2,2,1],[1,3,1,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[1,4,1,2],[1,3,3,1],[1,1,0,0]],[[1,2,2,2],[1,3,1,2],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[1,3,1,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[1,3,1,2],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[1,3,1,2],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[1,3,1,2],[1,4,3,1],[0,2,0,0]],[[1,2,2,1],[1,3,1,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[1,4,1,2],[1,3,3,1],[0,2,0,0]],[[1,2,2,2],[1,3,1,2],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[1,3,1,2],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[1,3,1,2],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[1,3,1,2],[1,3,3,1],[0,2,0,0]],[[0,2,1,2],[2,2,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[1,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[1,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,1,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,1,2],[2,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,1,2],[1,3,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,1,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,2],[1,0,1,2],[1,2,2,2]],[[0,2,1,2],[2,2,3,2],[1,0,2,2],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[1,0,2,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[1,0,2,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,2,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,2,2],[0,2,3,1]],[[0,2,1,1],[2,2,3,2],[1,0,2,2],[0,2,2,2]],[[0,2,1,2],[2,2,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[1,0,2,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[1,0,2,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[1,0,2,3],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[1,0,2,2],[1,2,1,2]],[[0,2,1,2],[2,2,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,4,2],[1,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,3],[1,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[1,0,2,3],[1,2,2,0]],[[0,2,1,2],[2,2,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[1,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[1,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,4,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,3,0],[2,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,3,0],[1,3,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,3,0],[1,2,3,1]],[[0,2,1,1],[2,2,3,2],[1,0,3,0],[1,2,2,2]],[[0,2,1,2],[2,2,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[1,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[1,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[1,0,4,1],[1,2,1,1]],[[0,2,1,2],[2,2,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,4,2],[1,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,3],[1,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[1,0,4,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[1,0,3,1],[2,2,2,0]],[[0,2,1,1],[2,2,3,2],[1,0,3,1],[1,3,2,0]],[[0,2,1,1],[2,2,3,2],[1,0,3,1],[1,2,3,0]],[[0,2,1,2],[2,2,3,2],[1,0,3,2],[0,1,2,1]],[[0,2,1,1],[2,2,4,2],[1,0,3,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,3],[1,0,3,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,3,3],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[1,0,3,2],[0,1,2,2]],[[0,2,1,2],[2,2,3,2],[1,0,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[1,0,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[1,0,3,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[1,0,3,3],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[1,0,3,2],[0,2,1,2]],[[0,2,1,2],[2,2,3,2],[1,0,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,4,2],[1,0,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,3],[1,0,3,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[1,3,1,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[1,4,1,2],[1,3,3,1],[0,0,2,0]],[[0,2,1,2],[2,2,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[1,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[1,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,0,3],[1,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,0,2],[2,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,0,2],[1,3,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,0,2],[1,2,3,1]],[[0,2,1,1],[2,2,3,2],[1,1,0,2],[1,2,2,2]],[[0,2,1,2],[2,2,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[1,1,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[1,1,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,1,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,1,2],[0,3,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,1,2],[0,2,3,1]],[[0,2,1,1],[2,2,3,2],[1,1,1,2],[0,2,2,2]],[[0,2,1,2],[2,2,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[1,1,2,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[1,1,2,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[1,1,2,3],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[1,1,2,2],[0,2,1,2]],[[0,2,1,2],[2,2,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,4,2],[1,1,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,3],[1,1,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,2],[1,3,1,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[1,3,1,2],[1,3,3,1],[0,0,2,0]],[[2,2,2,1],[1,3,1,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[1,3,1,3],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[1,4,1,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[1,3,1,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[1,3,1,2],[1,3,3,1],[0,0,1,1]],[[0,2,1,2],[2,2,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[1,1,3,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[1,1,3,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,4,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,3,0],[0,3,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,3,0],[0,2,3,1]],[[0,2,1,1],[2,2,3,2],[1,1,3,0],[0,2,2,2]],[[0,2,1,2],[2,2,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[1,1,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[1,1,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[1,1,4,1],[0,2,1,1]],[[0,2,1,2],[2,2,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,1,1],[2,2,4,2],[1,1,3,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,3],[1,1,3,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[1,1,4,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[1,1,3,1],[0,3,2,0]],[[0,2,1,1],[2,2,3,2],[1,1,3,1],[0,2,3,0]],[[1,3,2,1],[1,3,1,2],[1,3,3,1],[0,0,1,1]],[[2,2,2,1],[1,3,1,2],[1,3,3,1],[0,0,1,1]],[[0,2,1,2],[2,2,3,2],[1,1,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,4,2],[1,1,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,3],[1,1,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,1,3,2],[0,0,2,2]],[[0,2,1,2],[2,2,3,2],[1,1,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[1,1,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[1,1,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[1,1,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[1,1,3,2],[0,1,1,2]],[[0,2,1,2],[2,2,3,2],[1,1,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[1,1,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[1,1,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[1,1,3,3],[0,1,2,0]],[[0,2,1,2],[2,2,3,2],[1,1,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,4,2],[1,1,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,3],[1,1,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[1,1,3,3],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[1,1,3,2],[1,0,1,2]],[[0,2,1,2],[2,2,3,2],[1,1,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,4,2],[1,1,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,3],[1,1,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[1,1,3,3],[1,0,2,0]],[[0,2,1,2],[2,2,3,2],[1,2,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[1,2,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[1,2,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,0,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,0,2],[0,3,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,0,2],[0,2,3,1]],[[0,2,1,1],[2,2,3,2],[1,2,0,2],[0,2,2,2]],[[0,2,1,2],[2,2,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,1,1],[2,2,4,2],[1,2,1,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,3],[1,2,1,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,1,3],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,1,2],[0,1,3,1]],[[0,2,1,1],[2,2,3,2],[1,2,1,2],[0,1,2,2]],[[0,2,1,2],[2,2,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,1,1],[2,2,4,2],[1,2,1,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,3],[1,2,1,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,1,3],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,1,2],[1,0,3,1]],[[0,2,1,1],[2,2,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,1],[1,3,1,3],[1,3,3,0],[0,0,2,1]],[[1,2,2,1],[1,4,1,2],[1,3,3,0],[0,0,2,1]],[[1,2,2,2],[1,3,1,2],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[1,3,1,2],[1,3,3,0],[0,0,2,1]],[[1,3,2,1],[1,3,1,2],[1,3,3,0],[0,0,2,1]],[[2,2,2,1],[1,3,1,2],[1,3,3,0],[0,0,2,1]],[[0,2,1,2],[2,2,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,1,1],[2,2,4,2],[1,2,2,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,3],[1,2,2,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,2,3],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,2,2],[0,0,2,2]],[[0,2,1,2],[2,2,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[1,2,2,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[1,2,2,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[1,2,2,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[1,2,2,2],[0,1,1,2]],[[0,2,1,2],[2,2,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[1,2,2,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[1,2,2,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[1,2,2,3],[0,1,2,0]],[[0,2,1,2],[2,2,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,4,2],[1,2,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,3],[1,2,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[1,2,2,3],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[1,2,2,2],[0,2,0,2]],[[0,2,1,2],[2,2,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,4,2],[1,2,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,3],[1,2,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,2],[1,2,2,3],[0,2,1,0]],[[0,2,1,2],[2,2,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,1,1],[2,2,4,2],[1,2,2,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,3],[1,2,2,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[1,2,2,3],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[1,2,2,2],[1,0,1,2]],[[0,2,1,2],[2,2,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,1,1],[2,2,4,2],[1,2,2,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,3],[1,2,2,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[1,2,2,3],[1,0,2,0]],[[0,2,1,2],[2,2,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,1,1],[2,2,4,2],[1,2,2,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,3],[1,2,2,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[1,2,2,3],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[1,2,2,2],[1,1,0,2]],[[0,2,1,2],[2,2,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,1,1],[2,2,4,2],[1,2,2,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,3],[1,2,2,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,2],[1,2,2,3],[1,1,1,0]],[[0,2,1,2],[2,2,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,4,2],[1,2,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,3],[1,2,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,4,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,3,0],[0,1,3,1]],[[0,2,1,1],[2,2,3,2],[1,2,3,0],[0,1,2,2]],[[0,2,1,2],[2,2,3,2],[1,2,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[1,2,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[1,2,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[1,2,4,0],[0,2,1,1]],[[0,2,1,2],[2,2,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,1,1],[2,2,4,2],[1,2,3,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,3],[1,2,3,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,4,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,3,0],[1,0,3,1]],[[0,2,1,1],[2,2,3,2],[1,2,3,0],[1,0,2,2]],[[0,2,1,2],[2,2,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[1,2,3,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[1,2,3,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[1,2,4,0],[1,1,1,1]],[[0,2,1,2],[2,2,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,1,1],[2,2,4,2],[1,2,3,1],[0,0,2,1]],[[0,2,1,1],[2,2,3,3],[1,2,3,1],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,2,4,1],[0,0,2,1]],[[0,2,1,2],[2,2,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[1,2,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[1,2,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[1,2,4,1],[0,1,1,1]],[[0,2,1,2],[2,2,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[1,2,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[1,2,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[1,2,4,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[1,2,3,1],[0,1,3,0]],[[0,2,1,2],[2,2,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,4,2],[1,2,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,3],[1,2,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[1,2,4,1],[0,2,0,1]],[[0,2,1,2],[2,2,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,4,2],[1,2,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,3],[1,2,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,2],[1,2,4,1],[0,2,1,0]],[[0,2,1,2],[2,2,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,1,1],[2,2,4,2],[1,2,3,1],[1,0,1,1]],[[0,2,1,1],[2,2,3,3],[1,2,3,1],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[1,2,4,1],[1,0,1,1]],[[0,2,1,2],[2,2,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,1,1],[2,2,4,2],[1,2,3,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,3],[1,2,3,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[1,2,4,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[1,2,3,1],[1,0,3,0]],[[0,2,1,2],[2,2,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,1,1],[2,2,4,2],[1,2,3,1],[1,1,0,1]],[[0,2,1,1],[2,2,3,3],[1,2,3,1],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[1,2,4,1],[1,1,0,1]],[[0,2,1,2],[2,2,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,1,1],[2,2,4,2],[1,2,3,1],[1,1,1,0]],[[0,2,1,1],[2,2,3,3],[1,2,3,1],[1,1,1,0]],[[0,2,1,1],[2,2,3,2],[1,2,4,1],[1,1,1,0]],[[0,2,1,2],[2,2,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,1,1],[2,2,4,2],[1,2,3,2],[0,1,0,1]],[[0,2,1,1],[2,2,3,3],[1,2,3,2],[0,1,0,1]],[[0,2,1,1],[2,2,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,1],[1,3,1,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[1,3,1,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[1,4,1,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[1,3,1,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,2,2],[0,0,2,0]],[[1,3,2,1],[1,3,1,2],[1,3,2,2],[0,0,2,0]],[[2,2,2,1],[1,3,1,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[1,3,1,2],[1,3,2,2],[0,0,1,2]],[[1,2,2,1],[1,3,1,2],[1,3,2,3],[0,0,1,1]],[[1,2,2,1],[1,3,1,3],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[1,4,1,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[1,3,1,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[1,3,1,2],[1,3,2,2],[0,0,1,1]],[[1,3,2,1],[1,3,1,2],[1,3,2,2],[0,0,1,1]],[[0,2,1,2],[2,2,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,1,1],[2,2,4,2],[1,2,3,2],[1,0,0,1]],[[0,2,1,1],[2,2,3,3],[1,2,3,2],[1,0,0,1]],[[0,2,1,1],[2,2,3,2],[1,2,3,3],[1,0,0,1]],[[2,2,2,1],[1,3,1,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[1,3,1,2],[1,4,2,1],[1,2,0,0]],[[1,2,2,1],[1,3,1,3],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[1,4,1,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,2],[1,3,1,2],[1,3,2,1],[1,2,0,0]],[[1,2,3,1],[1,3,1,2],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[1,3,1,2],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[1,3,1,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[1,3,1,2],[1,4,2,1],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[1,4,1,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,2],[1,3,1,2],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[1,3,1,2],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[1,3,1,2],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[1,3,1,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[1,3,1,2],[1,4,2,1],[1,1,0,1]],[[1,2,2,1],[1,3,1,3],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[1,4,1,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,2],[1,3,1,2],[1,3,2,1],[1,1,0,1]],[[1,2,3,1],[1,3,1,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[1,3,1,2],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[1,3,1,2],[1,3,2,1],[1,1,0,1]],[[0,2,1,2],[2,2,3,2],[1,3,0,1],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[1,3,0,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[1,3,0,1],[0,2,2,1]],[[0,2,1,2],[2,2,3,2],[1,3,0,1],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[1,3,0,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[1,3,0,1],[1,1,2,1]],[[0,2,1,2],[2,2,3,2],[1,3,0,2],[0,1,2,1]],[[0,2,1,1],[2,2,4,2],[1,3,0,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,3],[1,3,0,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[1,3,0,3],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[1,3,0,2],[0,1,3,1]],[[0,2,1,1],[2,2,3,2],[1,3,0,2],[0,1,2,2]],[[0,2,1,2],[2,2,3,2],[1,3,0,2],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[1,3,0,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[1,3,0,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[1,3,0,3],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[1,3,0,2],[0,2,1,2]],[[0,2,1,2],[2,2,3,2],[1,3,0,2],[0,2,2,0]],[[0,2,1,1],[2,2,4,2],[1,3,0,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,3],[1,3,0,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[1,3,0,3],[0,2,2,0]],[[0,2,1,2],[2,2,3,2],[1,3,0,2],[1,0,2,1]],[[0,2,1,1],[2,2,4,2],[1,3,0,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,3],[1,3,0,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,3,0,3],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,3,0,2],[1,0,3,1]],[[0,2,1,1],[2,2,3,2],[1,3,0,2],[1,0,2,2]],[[0,2,1,2],[2,2,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[1,3,0,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[1,3,0,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[1,3,0,3],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[1,3,0,2],[1,1,1,2]],[[0,2,1,2],[2,2,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,1,1],[2,2,4,2],[1,3,0,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,3],[1,3,0,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,2,1],[1,3,1,2],[1,4,2,1],[1,0,2,0]],[[1,2,2,1],[1,3,1,3],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[1,4,1,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,2],[1,3,1,2],[1,3,2,1],[1,0,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[1,3,1,2],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[1,3,1,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[1,3,1,2],[1,4,2,1],[1,0,1,1]],[[0,2,1,2],[2,2,3,2],[1,3,1,0],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[1,3,1,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[1,3,1,0],[0,2,2,1]],[[0,2,1,2],[2,2,3,2],[1,3,1,0],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[1,3,1,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[1,3,1,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[1,4,1,0],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[1,3,1,0],[2,2,2,0]],[[0,2,1,1],[2,2,3,2],[1,3,1,0],[1,3,2,0]],[[0,2,1,2],[2,2,3,2],[1,3,1,1],[0,2,2,0]],[[0,2,1,1],[2,2,4,2],[1,3,1,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,3],[1,3,1,1],[0,2,2,0]],[[0,2,1,2],[2,2,3,2],[1,3,1,1],[1,1,2,0]],[[0,2,1,1],[2,2,4,2],[1,3,1,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,3],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[1,3,1,3],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[1,4,1,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,2],[1,3,1,2],[1,3,2,1],[1,0,1,1]],[[1,2,3,1],[1,3,1,2],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[1,3,1,2],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[1,3,1,2],[1,3,2,1],[1,0,1,1]],[[0,2,1,2],[2,2,3,2],[1,3,1,2],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[1,3,1,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[1,3,1,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[1,3,1,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[1,3,1,2],[0,1,1,2]],[[0,2,1,2],[2,2,3,2],[1,3,1,2],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[1,3,1,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[1,3,1,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[1,3,1,3],[0,1,2,0]],[[0,2,1,2],[2,2,3,2],[1,3,1,2],[0,2,0,1]],[[0,2,1,1],[2,2,4,2],[1,3,1,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,3],[1,3,1,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[1,3,1,3],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[1,3,1,2],[0,2,0,2]],[[0,2,1,2],[2,2,3,2],[1,3,1,2],[0,2,1,0]],[[0,2,1,1],[2,2,4,2],[1,3,1,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,3],[1,3,1,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,2],[1,3,1,3],[0,2,1,0]],[[0,2,1,2],[2,2,3,2],[1,3,1,2],[1,0,1,1]],[[0,2,1,1],[2,2,4,2],[1,3,1,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,3],[1,3,1,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[1,3,1,3],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[1,3,1,2],[1,0,1,2]],[[0,2,1,2],[2,2,3,2],[1,3,1,2],[1,0,2,0]],[[0,2,1,1],[2,2,4,2],[1,3,1,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,3],[1,3,1,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[1,3,1,3],[1,0,2,0]],[[0,2,1,2],[2,2,3,2],[1,3,1,2],[1,1,0,1]],[[0,2,1,1],[2,2,4,2],[1,3,1,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,3],[1,3,1,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[1,3,1,3],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[1,3,1,2],[1,1,0,2]],[[0,2,1,2],[2,2,3,2],[1,3,1,2],[1,1,1,0]],[[0,2,1,1],[2,2,4,2],[1,3,1,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,3],[1,3,1,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,2],[1,3,1,3],[1,1,1,0]],[[0,2,1,2],[2,2,3,2],[1,3,1,2],[1,2,0,0]],[[0,2,1,1],[2,2,4,2],[1,3,1,2],[1,2,0,0]],[[0,2,1,1],[2,2,3,3],[1,3,1,2],[1,2,0,0]],[[1,2,2,1],[1,3,1,2],[1,3,2,1],[0,3,1,0]],[[1,2,2,1],[1,3,1,2],[1,4,2,1],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[1,3,1,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[1,3,1,2],[1,3,2,1],[0,3,0,1]],[[1,2,2,1],[1,3,1,2],[1,4,2,1],[0,2,0,1]],[[1,2,2,1],[1,3,1,3],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[1,3,2,1],[0,2,0,1]],[[1,2,3,1],[1,3,1,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[1,3,1,2],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[1,3,1,2],[1,4,2,1],[0,1,2,0]],[[0,2,1,2],[2,2,3,2],[1,3,2,0],[0,1,2,1]],[[0,2,1,1],[2,2,4,2],[1,3,2,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,3],[1,3,2,0],[0,1,2,1]],[[0,2,1,2],[2,2,3,2],[1,3,2,0],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[1,3,2,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[1,3,2,0],[0,2,1,1]],[[0,2,1,2],[2,2,3,2],[1,3,2,0],[1,0,2,1]],[[0,2,1,1],[2,2,4,2],[1,3,2,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,3],[1,3,2,0],[1,0,2,1]],[[0,2,1,2],[2,2,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[1,3,2,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[1,3,2,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[1,4,2,0],[1,2,1,0]],[[0,2,1,1],[2,2,3,2],[1,3,2,0],[2,2,1,0]],[[0,2,1,1],[2,2,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,2,1],[1,3,1,3],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[1,4,1,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,2],[1,3,1,2],[1,3,2,1],[0,1,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[1,3,1,2],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[1,3,1,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[1,3,1,2],[1,4,2,1],[0,1,1,1]],[[1,2,2,1],[1,3,1,3],[1,3,2,1],[0,1,1,1]],[[0,2,1,2],[2,2,3,2],[1,3,2,1],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[1,3,2,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[1,3,2,1],[0,1,1,1]],[[0,2,1,2],[2,2,3,2],[1,3,2,1],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[1,3,2,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[1,3,2,1],[0,1,2,0]],[[0,2,1,2],[2,2,3,2],[1,3,2,1],[0,2,0,1]],[[0,2,1,1],[2,2,4,2],[1,3,2,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,3],[1,3,2,1],[0,2,0,1]],[[0,2,1,2],[2,2,3,2],[1,3,2,1],[0,2,1,0]],[[0,2,1,1],[2,2,4,2],[1,3,2,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,3],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,2],[1,3,1,2],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[1,3,1,2],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[1,3,1,2],[1,3,2,1],[0,1,1,1]],[[2,2,2,1],[1,3,1,2],[1,3,2,1],[0,1,1,1]],[[0,2,1,2],[2,2,3,2],[1,3,2,1],[1,0,1,1]],[[0,2,1,1],[2,2,4,2],[1,3,2,1],[1,0,1,1]],[[0,2,1,1],[2,2,3,3],[1,3,2,1],[1,0,1,1]],[[0,2,1,2],[2,2,3,2],[1,3,2,1],[1,0,2,0]],[[0,2,1,1],[2,2,4,2],[1,3,2,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,3],[1,3,2,1],[1,0,2,0]],[[0,2,1,2],[2,2,3,2],[1,3,2,1],[1,1,0,1]],[[0,2,1,1],[2,2,4,2],[1,3,2,1],[1,1,0,1]],[[0,2,1,1],[2,2,3,3],[1,3,2,1],[1,1,0,1]],[[0,2,1,2],[2,2,3,2],[1,3,2,1],[1,1,1,0]],[[0,2,1,1],[2,2,4,2],[1,3,2,1],[1,1,1,0]],[[0,2,1,1],[2,2,3,3],[1,3,2,1],[1,1,1,0]],[[0,2,1,2],[2,2,3,2],[1,3,2,1],[1,2,0,0]],[[0,2,1,1],[2,2,4,2],[1,3,2,1],[1,2,0,0]],[[0,2,1,1],[2,2,3,3],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[1,3,1,2],[1,4,2,0],[1,2,0,1]],[[1,2,2,1],[1,4,1,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,2],[1,3,1,2],[1,3,2,0],[1,2,0,1]],[[1,2,3,1],[1,3,1,2],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[1,3,1,2],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[1,3,1,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,1],[1,3,1,2],[1,4,2,0],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[1,3,2,0],[1,1,1,1]],[[0,2,1,2],[2,2,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,1,1],[2,2,4,2],[1,3,2,2],[0,0,1,1]],[[0,2,1,1],[2,2,3,3],[1,3,2,2],[0,0,1,1]],[[0,2,1,1],[2,2,3,2],[1,3,2,3],[0,0,1,1]],[[0,2,1,1],[2,2,3,2],[1,3,2,2],[0,0,1,2]],[[0,2,1,2],[2,2,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,1,1],[2,2,4,2],[1,3,2,2],[0,0,2,0]],[[0,2,1,1],[2,2,3,3],[1,3,2,2],[0,0,2,0]],[[0,2,1,1],[2,2,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[1,3,1,2],[1,4,2,0],[1,0,2,1]],[[1,2,2,1],[1,3,1,3],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[1,4,1,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,2],[1,3,1,2],[1,3,2,0],[1,0,2,1]],[[1,2,3,1],[1,3,1,2],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[1,3,1,2],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[1,3,1,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[1,3,1,2],[1,3,2,0],[0,3,1,1]],[[1,2,2,1],[1,3,1,2],[1,4,2,0],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[1,3,1,2],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[1,3,1,2],[1,4,2,0],[0,1,2,1]],[[1,2,2,1],[1,3,1,3],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[1,4,1,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,2],[1,3,1,2],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[1,3,1,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[1,3,1,2],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[1,3,1,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[1,3,1,2],[1,4,1,2],[1,2,0,0]],[[1,2,2,1],[1,3,1,3],[1,3,1,2],[1,2,0,0]],[[1,2,2,1],[1,4,1,2],[1,3,1,2],[1,2,0,0]],[[1,2,2,2],[1,3,1,2],[1,3,1,2],[1,2,0,0]],[[1,2,3,1],[1,3,1,2],[1,3,1,2],[1,2,0,0]],[[1,3,2,1],[1,3,1,2],[1,3,1,2],[1,2,0,0]],[[2,2,2,1],[1,3,1,2],[1,3,1,2],[1,2,0,0]],[[1,2,2,1],[1,3,1,2],[1,3,1,3],[1,1,1,0]],[[1,2,2,1],[1,3,1,2],[1,4,1,2],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[1,4,1,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,2],[1,3,1,2],[1,3,1,2],[1,1,1,0]],[[1,2,3,1],[1,3,1,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[1,3,1,2],[1,3,1,2],[1,1,1,0]],[[0,2,1,2],[2,2,3,2],[1,3,3,0],[0,0,2,1]],[[0,2,1,1],[2,2,4,2],[1,3,3,0],[0,0,2,1]],[[0,2,1,1],[2,2,3,3],[1,3,3,0],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[1,3,4,0],[0,0,2,1]],[[2,2,2,1],[1,3,1,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[1,3,1,2],[1,3,1,2],[1,1,0,2]],[[1,2,2,1],[1,3,1,2],[1,3,1,3],[1,1,0,1]],[[1,2,2,1],[1,3,1,2],[1,4,1,2],[1,1,0,1]],[[1,2,2,1],[1,3,1,3],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[1,4,1,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,2],[1,3,1,2],[1,3,1,2],[1,1,0,1]],[[1,2,3,1],[1,3,1,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,1],[1,3,1,2],[1,3,1,2],[1,1,0,1]],[[2,2,2,1],[1,3,1,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[1,3,1,2],[1,3,1,3],[1,0,2,0]],[[1,2,2,1],[1,3,1,2],[1,4,1,2],[1,0,2,0]],[[1,2,2,1],[1,3,1,3],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[1,4,1,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,2],[1,3,1,2],[1,3,1,2],[1,0,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,1,2],[1,0,2,0]],[[1,3,2,1],[1,3,1,2],[1,3,1,2],[1,0,2,0]],[[2,2,2,1],[1,3,1,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[1,3,1,2],[1,3,1,2],[1,0,1,2]],[[1,2,2,1],[1,3,1,2],[1,3,1,3],[1,0,1,1]],[[1,2,2,1],[1,3,1,2],[1,4,1,2],[1,0,1,1]],[[1,2,2,1],[1,3,1,3],[1,3,1,2],[1,0,1,1]],[[1,2,2,1],[1,4,1,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,2],[1,3,1,2],[1,3,1,2],[1,0,1,1]],[[0,2,1,2],[2,2,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,1,1],[2,2,4,2],[1,3,3,1],[0,0,1,1]],[[0,2,1,1],[2,2,3,3],[1,3,3,1],[0,0,1,1]],[[0,2,1,1],[2,2,3,2],[1,3,4,1],[0,0,1,1]],[[0,2,1,2],[2,2,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,1,1],[2,2,4,2],[1,3,3,1],[0,0,2,0]],[[0,2,1,1],[2,2,3,3],[1,3,3,1],[0,0,2,0]],[[0,2,1,1],[2,2,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[1,3,1,2],[1,3,1,2],[1,0,1,1]],[[2,2,2,1],[1,3,1,2],[1,3,1,2],[1,0,1,1]],[[0,2,1,2],[2,2,3,2],[1,3,3,1],[0,2,0,0]],[[0,2,1,1],[2,2,4,2],[1,3,3,1],[0,2,0,0]],[[0,2,1,1],[2,2,3,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[1,3,1,2],[1,3,1,2],[0,3,1,0]],[[1,2,2,1],[1,3,1,2],[1,3,1,3],[0,2,1,0]],[[1,2,2,1],[1,3,1,2],[1,4,1,2],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[1,3,1,2],[0,2,1,0]],[[1,2,3,1],[1,3,1,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[1,3,1,2],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[1,3,1,2],[1,3,1,2],[0,2,0,2]],[[1,2,2,1],[1,3,1,2],[1,3,1,2],[0,3,0,1]],[[1,2,2,1],[1,3,1,2],[1,3,1,3],[0,2,0,1]],[[0,2,1,2],[2,2,3,2],[1,3,3,1],[1,1,0,0]],[[0,2,1,1],[2,2,4,2],[1,3,3,1],[1,1,0,0]],[[0,2,1,1],[2,2,3,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[1,3,1,2],[1,4,1,2],[0,2,0,1]],[[1,2,2,1],[1,3,1,3],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[1,3,1,2],[0,2,0,1]],[[1,2,3,1],[1,3,1,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[1,3,1,2],[1,3,1,2],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[1,3,1,2],[1,3,1,3],[0,1,2,0]],[[1,2,2,1],[1,3,1,2],[1,4,1,2],[0,1,2,0]],[[1,2,2,1],[1,3,1,3],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[1,4,1,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,2],[1,3,1,2],[1,3,1,2],[0,1,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[1,3,1,2],[1,3,1,2],[0,1,2,0]],[[2,2,2,1],[1,3,1,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[1,3,1,2],[1,3,1,2],[0,1,1,2]],[[1,2,2,1],[1,3,1,2],[1,3,1,3],[0,1,1,1]],[[1,2,2,1],[1,3,1,2],[1,4,1,2],[0,1,1,1]],[[1,2,2,1],[1,3,1,3],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[1,4,1,2],[1,3,1,2],[0,1,1,1]],[[1,2,2,2],[1,3,1,2],[1,3,1,2],[0,1,1,1]],[[1,2,3,1],[1,3,1,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[1,3,1,2],[1,3,1,2],[0,1,1,1]],[[2,2,2,1],[1,3,1,2],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[1,3,1,2],[1,4,1,1],[1,1,2,0]],[[1,2,2,1],[1,3,1,3],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[1,4,1,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,2],[1,3,1,2],[1,3,1,1],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,1,1],[1,1,2,0]],[[0,2,1,2],[2,2,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,1,1],[2,2,4,2],[1,3,3,2],[0,0,0,1]],[[0,2,1,1],[2,2,3,3],[1,3,3,2],[0,0,0,1]],[[0,2,1,1],[2,2,3,2],[1,3,3,3],[0,0,0,1]],[[1,3,2,1],[1,3,1,2],[1,3,1,1],[1,1,2,0]],[[2,2,2,1],[1,3,1,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[1,3,1,2],[1,3,1,1],[0,2,3,0]],[[1,2,2,1],[1,3,1,2],[1,3,1,1],[0,3,2,0]],[[1,2,2,1],[1,3,1,2],[1,4,1,1],[0,2,2,0]],[[1,2,2,1],[1,3,1,3],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[1,4,1,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,2],[1,3,1,2],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[1,3,1,2],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[1,3,1,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[1,3,1,2],[1,4,1,0],[1,1,2,1]],[[1,2,2,1],[1,3,1,3],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,2],[1,3,1,2],[1,3,1,0],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[1,3,1,2],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[1,3,1,2],[1,3,1,0],[0,2,2,2]],[[1,2,2,1],[1,3,1,2],[1,3,1,0],[0,2,3,1]],[[1,2,2,1],[1,3,1,2],[1,3,1,0],[0,3,2,1]],[[1,2,2,1],[1,3,1,2],[1,4,1,0],[0,2,2,1]],[[1,2,2,1],[1,3,1,3],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[1,4,1,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,2],[1,3,1,2],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[1,3,1,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[1,3,1,2],[1,3,1,0],[0,2,2,1]],[[2,2,2,1],[1,3,1,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[1,3,1,2],[1,3,0,3],[1,1,2,0]],[[1,2,2,1],[1,3,1,2],[1,4,0,2],[1,1,2,0]],[[1,2,2,1],[1,3,1,3],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[1,4,1,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,2],[1,3,1,2],[1,3,0,2],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,0,2],[1,1,2,0]],[[1,3,2,1],[1,3,1,2],[1,3,0,2],[1,1,2,0]],[[2,2,2,1],[1,3,1,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[1,3,1,2],[1,3,0,2],[1,1,1,2]],[[1,2,2,1],[1,3,1,2],[1,3,0,3],[1,1,1,1]],[[1,2,2,1],[1,3,1,2],[1,4,0,2],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[1,3,0,2],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[1,3,0,2],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[1,3,0,2],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[1,3,1,2],[1,3,0,2],[1,0,2,2]],[[1,2,2,1],[1,3,1,2],[1,3,0,2],[1,0,3,1]],[[1,2,2,1],[1,3,1,2],[1,3,0,3],[1,0,2,1]],[[1,2,2,1],[1,3,1,2],[1,4,0,2],[1,0,2,1]],[[1,2,2,1],[1,3,1,3],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[1,4,1,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,2],[1,3,1,2],[1,3,0,2],[1,0,2,1]],[[1,2,3,1],[1,3,1,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[1,3,1,2],[1,3,0,2],[1,0,2,1]],[[2,2,2,1],[1,3,1,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[1,3,1,2],[1,3,0,2],[0,2,3,0]],[[1,2,2,1],[1,3,1,2],[1,3,0,2],[0,3,2,0]],[[1,2,2,1],[1,3,1,2],[1,3,0,3],[0,2,2,0]],[[1,2,2,1],[1,3,1,2],[1,4,0,2],[0,2,2,0]],[[1,2,2,1],[1,3,1,3],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[1,4,1,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,2],[1,3,1,2],[1,3,0,2],[0,2,2,0]],[[1,2,3,1],[1,3,1,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[1,3,1,2],[1,3,0,2],[0,2,2,0]],[[2,2,2,1],[1,3,1,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[1,3,1,2],[1,3,0,2],[0,2,1,2]],[[1,2,2,1],[1,3,1,2],[1,3,0,2],[0,3,1,1]],[[1,2,2,1],[1,3,1,2],[1,3,0,3],[0,2,1,1]],[[1,2,2,1],[1,3,1,2],[1,4,0,2],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[1,3,0,2],[0,2,1,1]],[[1,2,3,1],[1,3,1,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[1,3,0,2],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[1,3,1,2],[1,3,0,2],[0,1,2,2]],[[1,2,2,1],[1,3,1,2],[1,3,0,2],[0,1,3,1]],[[1,2,2,1],[1,3,1,2],[1,3,0,3],[0,1,2,1]],[[1,2,2,1],[1,3,1,2],[1,4,0,2],[0,1,2,1]],[[1,2,2,1],[1,3,1,3],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[1,4,1,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,2],[1,3,1,2],[1,3,0,2],[0,1,2,1]],[[1,2,3,1],[1,3,1,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[1,3,1,2],[1,3,0,2],[0,1,2,1]],[[2,2,2,1],[1,3,1,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[1,3,1,2],[1,4,0,1],[1,1,2,1]],[[1,2,2,1],[1,3,1,3],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,2],[1,3,1,2],[1,3,0,1],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[1,3,0,1],[1,1,2,1]],[[1,3,2,1],[1,3,1,2],[1,3,0,1],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[1,3,1,2],[1,3,0,1],[0,2,2,2]],[[1,2,2,1],[1,3,1,2],[1,3,0,1],[0,2,3,1]],[[1,2,2,1],[1,3,1,2],[1,3,0,1],[0,3,2,1]],[[1,2,2,1],[1,3,1,2],[1,4,0,1],[0,2,2,1]],[[1,2,2,1],[1,3,1,3],[1,3,0,1],[0,2,2,1]],[[1,2,2,1],[1,4,1,2],[1,3,0,1],[0,2,2,1]],[[0,2,1,2],[2,2,3,2],[2,0,1,1],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[2,0,1,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[2,0,1,1],[1,2,2,1]],[[0,2,1,2],[2,2,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[2,0,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[2,0,1,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,1,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,1,2],[0,3,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,1,2],[0,2,3,1]],[[0,2,1,1],[2,2,3,2],[2,0,1,2],[0,2,2,2]],[[0,2,1,2],[2,2,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[2,0,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[2,0,1,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,1,3],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,1,2],[1,1,3,1]],[[0,2,1,1],[2,2,3,2],[2,0,1,2],[1,1,2,2]],[[0,2,1,2],[2,2,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[2,0,1,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[2,0,1,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,1,3],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,1,2],[1,2,1,2]],[[0,2,1,2],[2,2,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,1,1],[2,2,4,2],[2,0,1,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,3],[2,0,1,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,0,1,3],[1,2,2,0]],[[0,2,1,2],[2,2,3,2],[2,0,2,0],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[2,0,2,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[2,0,2,0],[1,2,2,1]],[[0,2,1,2],[2,2,3,2],[2,0,2,1],[1,2,2,0]],[[0,2,1,1],[2,2,4,2],[2,0,2,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,3],[2,0,2,1],[1,2,2,0]],[[0,2,1,2],[2,2,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[2,0,2,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[2,0,2,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,2,3],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,2,2],[0,2,1,2]],[[0,2,1,2],[2,2,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,4,2],[2,0,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,3],[2,0,2,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,0,2,3],[0,2,2,0]],[[0,2,1,2],[2,2,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[2,0,2,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[2,0,2,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,2,3],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,2,2],[1,1,1,2]],[[0,2,1,2],[2,2,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,4,2],[2,0,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,3],[2,0,2,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,0,2,3],[1,1,2,0]],[[0,2,1,2],[2,2,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,1,1],[2,2,4,2],[2,0,2,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,3],[2,0,2,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,2],[2,0,2,3],[1,2,0,1]],[[0,2,1,1],[2,2,3,2],[2,0,2,2],[1,2,0,2]],[[0,2,1,2],[2,2,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,1,1],[2,2,4,2],[2,0,2,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,3],[2,0,2,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,2],[2,0,2,3],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[1,3,0,1],[0,2,2,1]],[[1,2,3,1],[1,3,1,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,1],[1,3,1,2],[1,3,0,1],[0,2,2,1]],[[2,2,2,1],[1,3,1,2],[1,3,0,1],[0,2,2,1]],[[0,2,1,2],[2,2,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[2,0,3,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[2,0,3,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,4,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,3,0],[0,3,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,3,0],[0,2,3,1]],[[0,2,1,1],[2,2,3,2],[2,0,3,0],[0,2,2,2]],[[0,2,1,2],[2,2,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[2,0,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[2,0,3,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,4,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,3,0],[1,1,3,1]],[[0,2,1,1],[2,2,3,2],[2,0,3,0],[1,1,2,2]],[[0,2,1,2],[2,2,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[2,0,3,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[2,0,3,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,4,0],[1,2,1,1]],[[0,2,1,2],[2,2,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[2,0,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[2,0,3,1],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,4,1],[0,2,1,1]],[[0,2,1,2],[2,2,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,1,1],[2,2,4,2],[2,0,3,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,3],[2,0,3,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,0,4,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,0,3,1],[0,3,2,0]],[[0,2,1,1],[2,2,3,2],[2,0,3,1],[0,2,3,0]],[[0,2,1,2],[2,2,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[2,0,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[2,0,3,1],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,4,1],[1,1,1,1]],[[0,2,1,2],[2,2,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,1,1],[2,2,4,2],[2,0,3,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,3],[2,0,3,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,0,4,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,0,3,1],[1,1,3,0]],[[0,2,1,2],[2,2,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,4,2],[2,0,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,3],[2,0,3,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,2],[2,0,4,1],[1,2,0,1]],[[0,2,1,2],[2,2,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,1,1],[2,2,4,2],[2,0,3,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,3],[2,0,3,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,2],[2,0,4,1],[1,2,1,0]],[[0,2,1,2],[2,2,3,2],[2,0,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,4,2],[2,0,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,3],[2,0,3,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,3,3],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[2,0,3,2],[0,0,2,2]],[[0,2,1,2],[2,2,3,2],[2,0,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[2,0,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[2,0,3,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,3,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,3,2],[0,1,1,2]],[[0,2,1,2],[2,2,3,2],[2,0,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[2,0,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[2,0,3,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,0,3,3],[0,1,2,0]],[[0,2,1,2],[2,2,3,2],[2,0,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,4,2],[2,0,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,3],[2,0,3,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,3,3],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[2,0,3,2],[1,0,1,2]],[[0,2,1,2],[2,2,3,2],[2,0,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,4,2],[2,0,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,3],[2,0,3,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[1,3,1,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[1,3,1,3],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[1,4,1,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[1,3,1,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[1,3,1,2],[1,2,3,2],[1,0,0,1]],[[1,3,2,1],[1,3,1,2],[1,2,3,2],[1,0,0,1]],[[2,2,2,1],[1,3,1,2],[1,2,3,2],[1,0,0,1]],[[0,2,1,2],[2,2,3,2],[2,1,0,1],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[2,1,0,1],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[2,1,0,1],[1,2,2,1]],[[0,2,1,2],[2,2,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[2,1,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[2,1,0,2],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,0,3],[0,2,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,0,2],[0,3,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,0,2],[0,2,3,1]],[[0,2,1,1],[2,2,3,2],[2,1,0,2],[0,2,2,2]],[[0,2,1,2],[2,2,3,2],[2,1,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[2,1,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[2,1,0,2],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,0,3],[1,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,0,2],[1,1,3,1]],[[0,2,1,1],[2,2,3,2],[2,1,0,2],[1,1,2,2]],[[0,2,1,2],[2,2,3,2],[2,1,0,2],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[2,1,0,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[2,1,0,2],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[2,1,0,3],[1,2,1,1]],[[0,2,1,1],[2,2,3,2],[2,1,0,2],[1,2,1,2]],[[0,2,1,2],[2,2,3,2],[2,1,0,2],[1,2,2,0]],[[0,2,1,1],[2,2,4,2],[2,1,0,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,3],[2,1,0,2],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,1,0,3],[1,2,2,0]],[[0,2,1,2],[2,2,3,2],[2,1,1,0],[1,2,2,1]],[[0,2,1,1],[2,2,4,2],[2,1,1,0],[1,2,2,1]],[[0,2,1,1],[2,2,3,3],[2,1,1,0],[1,2,2,1]],[[0,2,1,2],[2,2,3,2],[2,1,1,1],[1,2,2,0]],[[0,2,1,1],[2,2,4,2],[2,1,1,1],[1,2,2,0]],[[0,2,1,1],[2,2,3,3],[2,1,1,1],[1,2,2,0]],[[0,2,1,2],[2,2,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,1,1],[2,2,4,2],[2,1,1,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,3],[2,1,1,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,1,3],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,1,2],[0,1,3,1]],[[0,2,1,1],[2,2,3,2],[2,1,1,2],[0,1,2,2]],[[0,2,1,2],[2,2,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,1,1],[2,2,4,2],[2,1,1,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,3],[2,1,1,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,1,3],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,1,2],[1,0,3,1]],[[0,2,1,1],[2,2,3,2],[2,1,1,2],[1,0,2,2]],[[0,2,1,2],[2,2,3,2],[2,1,1,2],[1,2,0,1]],[[0,2,1,1],[2,2,4,2],[2,1,1,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,3],[2,1,1,2],[1,2,0,1]],[[0,2,1,1],[2,2,3,2],[2,1,1,3],[1,2,0,1]],[[0,2,1,1],[2,2,3,2],[2,1,1,2],[1,2,0,2]],[[0,2,1,2],[2,2,3,2],[2,1,1,2],[1,2,1,0]],[[0,2,1,1],[2,2,4,2],[2,1,1,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,3],[2,1,1,2],[1,2,1,0]],[[0,2,1,1],[2,2,3,2],[2,1,1,3],[1,2,1,0]],[[0,2,1,2],[2,2,3,2],[2,1,2,0],[1,2,1,1]],[[0,2,1,1],[2,2,4,2],[2,1,2,0],[1,2,1,1]],[[0,2,1,1],[2,2,3,3],[2,1,2,0],[1,2,1,1]],[[0,2,1,2],[2,2,3,2],[2,1,2,1],[1,2,0,1]],[[0,2,1,1],[2,2,4,2],[2,1,2,1],[1,2,0,1]],[[0,2,1,1],[2,2,3,3],[2,1,2,1],[1,2,0,1]],[[0,2,1,2],[2,2,3,2],[2,1,2,1],[1,2,1,0]],[[0,2,1,1],[2,2,4,2],[2,1,2,1],[1,2,1,0]],[[0,2,1,1],[2,2,3,3],[2,1,2,1],[1,2,1,0]],[[0,2,1,2],[2,2,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,1,1],[2,2,4,2],[2,1,2,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,3],[2,1,2,2],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,2,3],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,2,2],[0,0,2,2]],[[0,2,1,2],[2,2,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[2,1,2,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[2,1,2,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,1,2,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,1,2,2],[0,1,1,2]],[[0,2,1,2],[2,2,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[2,1,2,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[2,1,2,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,1,2,3],[0,1,2,0]],[[0,2,1,2],[2,2,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,4,2],[2,1,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,3],[2,1,2,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[2,1,2,3],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[2,1,2,2],[0,2,0,2]],[[0,2,1,2],[2,2,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,4,2],[2,1,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,3],[2,1,2,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,2],[2,1,2,3],[0,2,1,0]],[[1,2,2,1],[1,3,1,2],[1,2,3,3],[0,1,0,1]],[[0,2,1,2],[2,2,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,1,1],[2,2,4,2],[2,1,2,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,3],[2,1,2,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[2,1,2,3],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[2,1,2,2],[1,0,1,2]],[[0,2,1,2],[2,2,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,1,1],[2,2,4,2],[2,1,2,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,3],[2,1,2,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[2,1,2,3],[1,0,2,0]],[[0,2,1,2],[2,2,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,1,1],[2,2,4,2],[2,1,2,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,3],[2,1,2,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[2,1,2,3],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[2,1,2,2],[1,1,0,2]],[[0,2,1,2],[2,2,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,1,1],[2,2,4,2],[2,1,2,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,3],[2,1,2,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,2],[2,1,2,3],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[1,2,3,2],[0,1,0,1]],[[1,2,2,1],[1,4,1,2],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[1,3,1,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,1],[1,3,1,2],[1,2,3,2],[0,1,0,1]],[[1,3,2,1],[1,3,1,2],[1,2,3,2],[0,1,0,1]],[[2,2,2,1],[1,3,1,2],[1,2,3,2],[0,1,0,1]],[[0,2,1,2],[2,2,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,4,2],[2,1,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,3],[2,1,3,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,4,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,3,0],[0,1,3,1]],[[0,2,1,1],[2,2,3,2],[2,1,3,0],[0,1,2,2]],[[0,2,1,2],[2,2,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[2,1,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[2,1,3,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[2,1,4,0],[0,2,1,1]],[[0,2,1,2],[2,2,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,1,1],[2,2,4,2],[2,1,3,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,3],[2,1,3,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,4,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,3,0],[1,0,3,1]],[[0,2,1,1],[2,2,3,2],[2,1,3,0],[1,0,2,2]],[[0,2,1,2],[2,2,3,2],[2,1,3,0],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[2,1,3,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[2,1,3,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,1,4,0],[1,1,1,1]],[[0,2,1,2],[2,2,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,1,1],[2,2,4,2],[2,1,3,1],[0,0,2,1]],[[0,2,1,1],[2,2,3,3],[2,1,3,1],[0,0,2,1]],[[0,2,1,1],[2,2,3,2],[2,1,4,1],[0,0,2,1]],[[0,2,1,2],[2,2,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[2,1,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[2,1,3,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,1,4,1],[0,1,1,1]],[[0,2,1,2],[2,2,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[2,1,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[2,1,3,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,1,4,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,1,3,1],[0,1,3,0]],[[0,2,1,2],[2,2,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,4,2],[2,1,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,3],[2,1,3,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[2,1,4,1],[0,2,0,1]],[[0,2,1,2],[2,2,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,4,2],[2,1,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,3],[2,1,3,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[1,4,1,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,1,2],[1,2,3,1],[1,1,1,0]],[[0,2,1,2],[2,2,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,1,1],[2,2,4,2],[2,1,3,1],[1,0,1,1]],[[0,2,1,1],[2,2,3,3],[2,1,3,1],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[2,1,4,1],[1,0,1,1]],[[0,2,1,2],[2,2,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,1,1],[2,2,4,2],[2,1,3,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,3],[2,1,3,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[2,1,4,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[2,1,3,1],[1,0,3,0]],[[0,2,1,2],[2,2,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,1,1],[2,2,4,2],[2,1,3,1],[1,1,0,1]],[[0,2,1,1],[2,2,3,3],[2,1,3,1],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[2,1,4,1],[1,1,0,1]],[[0,2,1,2],[2,2,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,1,1],[2,2,4,2],[2,1,3,1],[1,1,1,0]],[[0,2,1,1],[2,2,3,3],[2,1,3,1],[1,1,1,0]],[[0,2,1,1],[2,2,3,2],[2,1,4,1],[1,1,1,0]],[[1,2,3,1],[1,3,1,2],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,1,2],[1,2,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,1,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[1,4,1,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,1,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,1,2],[1,2,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,1,2],[1,2,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,1,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[1,3,1,3],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[1,4,1,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,1,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,1,2],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,1,2],[1,2,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,1,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[1,3,1,3],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[1,4,1,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[1,3,1,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,1,2],[1,2,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,1,2],[1,2,3,1],[1,0,1,1]],[[0,2,1,2],[2,2,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,1,1],[2,2,4,2],[2,1,3,2],[0,1,0,1]],[[0,2,1,1],[2,2,3,3],[2,1,3,2],[0,1,0,1]],[[0,2,1,1],[2,2,3,2],[2,1,3,3],[0,1,0,1]],[[2,2,2,1],[1,3,1,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[1,3,1,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,1,2],[1,2,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[1,2,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,1,2],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,1,2],[1,2,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[1,2,3,1],[0,2,0,1]],[[0,2,1,2],[2,2,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,1,1],[2,2,4,2],[2,1,3,2],[1,0,0,1]],[[0,2,1,1],[2,2,3,3],[2,1,3,2],[1,0,0,1]],[[0,2,1,1],[2,2,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,1],[1,3,1,3],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,1,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,1,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,1,2],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,1,2],[1,2,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,1,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[1,3,1,3],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,1,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,1,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,1,2],[1,2,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,1,2],[1,2,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,1,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[1,3,1,3],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[1,4,1,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[1,3,1,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[1,3,1,2],[1,2,3,1],[0,0,2,1]],[[1,3,2,1],[1,3,1,2],[1,2,3,1],[0,0,2,1]],[[2,2,2,1],[1,3,1,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[1,3,1,3],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[1,2,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[1,2,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[1,4,1,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,1,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,1,2],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,1,2],[1,2,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,1,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[1,3,1,3],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[1,2,3,0],[0,2,1,1]],[[0,2,1,2],[2,2,3,2],[2,2,0,1],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[2,2,0,1],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[2,2,0,1],[0,2,2,1]],[[0,2,1,2],[2,2,3,2],[2,2,0,1],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[2,2,0,1],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[2,2,0,1],[1,1,2,1]],[[0,2,1,2],[2,2,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,1,1],[2,2,4,2],[2,2,0,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,3],[2,2,0,2],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,2,0,3],[0,1,2,1]],[[0,2,1,1],[2,2,3,2],[2,2,0,2],[0,1,3,1]],[[0,2,1,1],[2,2,3,2],[2,2,0,2],[0,1,2,2]],[[0,2,1,2],[2,2,3,2],[2,2,0,2],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[2,2,0,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[2,2,0,2],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[2,2,0,3],[0,2,1,1]],[[0,2,1,1],[2,2,3,2],[2,2,0,2],[0,2,1,2]],[[0,2,1,2],[2,2,3,2],[2,2,0,2],[0,2,2,0]],[[0,2,1,1],[2,2,4,2],[2,2,0,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,3],[2,2,0,2],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,2,0,3],[0,2,2,0]],[[0,2,1,2],[2,2,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,1,1],[2,2,4,2],[2,2,0,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,3],[2,2,0,2],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[2,2,0,3],[1,0,2,1]],[[0,2,1,1],[2,2,3,2],[2,2,0,2],[1,0,3,1]],[[0,2,1,1],[2,2,3,2],[2,2,0,2],[1,0,2,2]],[[0,2,1,2],[2,2,3,2],[2,2,0,2],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[2,2,0,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[2,2,0,2],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,2,0,3],[1,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,2,0,2],[1,1,1,2]],[[0,2,1,2],[2,2,3,2],[2,2,0,2],[1,1,2,0]],[[0,2,1,1],[2,2,4,2],[2,2,0,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,3],[2,2,0,2],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,2,0,3],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[1,2,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[1,2,3,0],[0,1,2,1]],[[1,2,2,1],[1,4,1,2],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,1,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,1,2],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,1,2],[1,2,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,1,2],[1,2,3,0],[0,1,2,1]],[[0,2,1,2],[2,2,3,2],[2,2,1,0],[0,2,2,1]],[[0,2,1,1],[2,2,4,2],[2,2,1,0],[0,2,2,1]],[[0,2,1,1],[2,2,3,3],[2,2,1,0],[0,2,2,1]],[[0,2,1,2],[2,2,3,2],[2,2,1,0],[1,1,2,1]],[[0,2,1,1],[2,2,4,2],[2,2,1,0],[1,1,2,1]],[[0,2,1,1],[2,2,3,3],[2,2,1,0],[1,1,2,1]],[[0,2,1,1],[3,2,3,2],[2,2,1,0],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[3,2,1,0],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,2,1,0],[2,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,2,1,0],[1,3,2,0]],[[0,2,1,2],[2,2,3,2],[2,2,1,1],[0,2,2,0]],[[0,2,1,1],[2,2,4,2],[2,2,1,1],[0,2,2,0]],[[0,2,1,1],[2,2,3,3],[2,2,1,1],[0,2,2,0]],[[0,2,1,2],[2,2,3,2],[2,2,1,1],[1,1,2,0]],[[0,2,1,1],[2,2,4,2],[2,2,1,1],[1,1,2,0]],[[0,2,1,1],[2,2,3,3],[2,2,1,1],[1,1,2,0]],[[0,2,1,2],[2,2,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[2,2,1,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[2,2,1,2],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,2,1,3],[0,1,1,1]],[[0,2,1,1],[2,2,3,2],[2,2,1,2],[0,1,1,2]],[[0,2,1,2],[2,2,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[2,2,1,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[2,2,1,2],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,2,1,3],[0,1,2,0]],[[0,2,1,2],[2,2,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,1,1],[2,2,4,2],[2,2,1,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,3],[2,2,1,2],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[2,2,1,3],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[2,2,1,2],[0,2,0,2]],[[0,2,1,2],[2,2,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,1,1],[2,2,4,2],[2,2,1,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,3],[2,2,1,2],[0,2,1,0]],[[0,2,1,1],[2,2,3,2],[2,2,1,3],[0,2,1,0]],[[0,2,1,2],[2,2,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,1,1],[2,2,4,2],[2,2,1,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,3],[2,2,1,2],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[2,2,1,3],[1,0,1,1]],[[0,2,1,1],[2,2,3,2],[2,2,1,2],[1,0,1,2]],[[0,2,1,2],[2,2,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,1,1],[2,2,4,2],[2,2,1,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,3],[2,2,1,2],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[2,2,1,3],[1,0,2,0]],[[0,2,1,2],[2,2,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,1,1],[2,2,4,2],[2,2,1,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,3],[2,2,1,2],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[2,2,1,3],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[2,2,1,2],[1,1,0,2]],[[0,2,1,2],[2,2,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,1,1],[2,2,4,2],[2,2,1,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,3],[2,2,1,2],[1,1,1,0]],[[0,2,1,1],[2,2,3,2],[2,2,1,3],[1,1,1,0]],[[0,2,1,2],[2,2,3,2],[2,2,1,2],[1,2,0,0]],[[0,2,1,1],[2,2,4,2],[2,2,1,2],[1,2,0,0]],[[0,2,1,1],[2,2,3,3],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[1,3,1,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,4,1,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,1,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,1,2],[1,2,2,2],[1,1,1,0]],[[1,3,2,1],[1,3,1,2],[1,2,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,1,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,3,1,2],[1,2,2,2],[1,1,0,2]],[[1,2,2,1],[1,3,1,2],[1,2,2,3],[1,1,0,1]],[[1,2,2,1],[1,3,1,3],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[1,4,1,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,1,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,1,2],[1,2,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,1,2],[1,2,2,2],[1,1,0,1]],[[2,2,2,1],[1,3,1,2],[1,2,2,2],[1,1,0,1]],[[0,2,1,2],[2,2,3,2],[2,2,2,0],[0,1,2,1]],[[0,2,1,1],[2,2,4,2],[2,2,2,0],[0,1,2,1]],[[0,2,1,1],[2,2,3,3],[2,2,2,0],[0,1,2,1]],[[0,2,1,2],[2,2,3,2],[2,2,2,0],[0,2,1,1]],[[0,2,1,1],[2,2,4,2],[2,2,2,0],[0,2,1,1]],[[0,2,1,1],[2,2,3,3],[2,2,2,0],[0,2,1,1]],[[0,2,1,2],[2,2,3,2],[2,2,2,0],[1,0,2,1]],[[0,2,1,1],[2,2,4,2],[2,2,2,0],[1,0,2,1]],[[0,2,1,1],[2,2,3,3],[2,2,2,0],[1,0,2,1]],[[0,2,1,2],[2,2,3,2],[2,2,2,0],[1,1,1,1]],[[0,2,1,1],[2,2,4,2],[2,2,2,0],[1,1,1,1]],[[0,2,1,1],[2,2,3,3],[2,2,2,0],[1,1,1,1]],[[0,2,1,1],[3,2,3,2],[2,2,2,0],[1,2,1,0]],[[0,2,1,1],[2,2,3,2],[3,2,2,0],[1,2,1,0]],[[0,2,1,1],[2,2,3,2],[2,2,2,0],[2,2,1,0]],[[0,2,1,1],[2,2,3,2],[2,2,2,0],[1,3,1,0]],[[1,2,2,1],[1,3,1,2],[1,2,2,3],[1,0,2,0]],[[1,2,2,1],[1,3,1,3],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[1,4,1,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,1,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,1,2],[1,2,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,1,2],[1,2,2,2],[1,0,2,0]],[[0,2,1,2],[2,2,3,2],[2,2,2,1],[0,1,1,1]],[[0,2,1,1],[2,2,4,2],[2,2,2,1],[0,1,1,1]],[[0,2,1,1],[2,2,3,3],[2,2,2,1],[0,1,1,1]],[[0,2,1,2],[2,2,3,2],[2,2,2,1],[0,1,2,0]],[[0,2,1,1],[2,2,4,2],[2,2,2,1],[0,1,2,0]],[[0,2,1,1],[2,2,3,3],[2,2,2,1],[0,1,2,0]],[[0,2,1,2],[2,2,3,2],[2,2,2,1],[0,2,0,1]],[[0,2,1,1],[2,2,4,2],[2,2,2,1],[0,2,0,1]],[[0,2,1,1],[2,2,3,3],[2,2,2,1],[0,2,0,1]],[[0,2,1,2],[2,2,3,2],[2,2,2,1],[0,2,1,0]],[[0,2,1,1],[2,2,4,2],[2,2,2,1],[0,2,1,0]],[[0,2,1,1],[2,2,3,3],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[1,3,1,2],[1,2,2,2],[1,0,1,2]],[[1,2,2,1],[1,3,1,2],[1,2,2,3],[1,0,1,1]],[[0,2,1,2],[2,2,3,2],[2,2,2,1],[1,0,1,1]],[[0,2,1,1],[2,2,4,2],[2,2,2,1],[1,0,1,1]],[[0,2,1,1],[2,2,3,3],[2,2,2,1],[1,0,1,1]],[[0,2,1,2],[2,2,3,2],[2,2,2,1],[1,0,2,0]],[[0,2,1,1],[2,2,4,2],[2,2,2,1],[1,0,2,0]],[[0,2,1,1],[2,2,3,3],[2,2,2,1],[1,0,2,0]],[[0,2,1,2],[2,2,3,2],[2,2,2,1],[1,1,0,1]],[[0,2,1,1],[2,2,4,2],[2,2,2,1],[1,1,0,1]],[[0,2,1,1],[2,2,3,3],[2,2,2,1],[1,1,0,1]],[[0,2,1,2],[2,2,3,2],[2,2,2,1],[1,1,1,0]],[[0,2,1,1],[2,2,4,2],[2,2,2,1],[1,1,1,0]],[[0,2,1,1],[2,2,3,3],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[1,3,1,3],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[1,4,1,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,1,2],[1,2,2,2],[1,0,1,1]],[[0,2,1,2],[2,2,3,2],[2,2,2,1],[1,2,0,0]],[[0,2,1,1],[2,2,4,2],[2,2,2,1],[1,2,0,0]],[[0,2,1,1],[2,2,3,3],[2,2,2,1],[1,2,0,0]],[[1,2,3,1],[1,3,1,2],[1,2,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,1,2],[1,2,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,1,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[1,3,1,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,1,2],[1,2,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[1,2,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[1,3,1,2],[1,2,2,2],[0,2,0,2]],[[1,2,2,1],[1,3,1,2],[1,2,2,3],[0,2,0,1]],[[1,2,2,1],[1,3,1,3],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,1,2],[1,2,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,1,2],[1,2,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[1,3,1,2],[1,2,2,3],[0,1,2,0]],[[1,2,2,1],[1,3,1,3],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[1,4,1,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,1,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,1,2],[1,2,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,1,2],[1,2,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,1,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[1,3,1,2],[1,2,2,2],[0,1,1,2]],[[1,2,2,1],[1,3,1,2],[1,2,2,3],[0,1,1,1]],[[1,2,2,1],[1,3,1,3],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[1,4,1,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,1,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,1,2],[1,2,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,1,2],[1,2,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,1,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,1,2],[1,2,2,2],[0,0,2,2]],[[1,2,2,1],[1,3,1,2],[1,2,2,3],[0,0,2,1]],[[1,2,2,1],[1,3,1,3],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[1,4,1,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[1,3,1,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[1,3,1,2],[1,2,2,2],[0,0,2,1]],[[1,3,2,1],[1,3,1,2],[1,2,2,2],[0,0,2,1]],[[2,2,2,1],[1,3,1,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[1,3,1,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,1],[1,3,1,2],[1,2,1,2],[1,0,3,1]],[[1,2,2,1],[1,3,1,2],[1,2,1,3],[1,0,2,1]],[[1,2,2,1],[1,3,1,3],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[1,4,1,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[1,3,1,2],[1,2,1,2],[1,0,2,1]],[[1,2,3,1],[1,3,1,2],[1,2,1,2],[1,0,2,1]],[[1,3,2,1],[1,3,1,2],[1,2,1,2],[1,0,2,1]],[[2,2,2,1],[1,3,1,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[1,3,1,2],[1,2,1,2],[0,1,2,2]],[[1,2,2,1],[1,3,1,2],[1,2,1,2],[0,1,3,1]],[[1,2,2,1],[1,3,1,2],[1,2,1,3],[0,1,2,1]],[[1,2,2,1],[1,3,1,3],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[1,4,1,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[1,3,1,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,1,2],[1,2,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,1,2],[1,2,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,1,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[1,3,1,2],[1,2,0,2],[0,2,2,2]],[[1,2,2,1],[1,3,1,2],[1,2,0,2],[0,2,3,1]],[[1,2,2,1],[1,3,1,2],[1,2,0,2],[0,3,2,1]],[[1,2,2,1],[1,3,1,2],[1,2,0,3],[0,2,2,1]],[[1,2,2,1],[1,3,1,3],[1,2,0,2],[0,2,2,1]],[[1,2,2,1],[1,4,1,2],[1,2,0,2],[0,2,2,1]],[[1,2,2,2],[1,3,1,2],[1,2,0,2],[0,2,2,1]],[[1,2,3,1],[1,3,1,2],[1,2,0,2],[0,2,2,1]],[[1,3,2,1],[1,3,1,2],[1,2,0,2],[0,2,2,1]],[[2,2,2,1],[1,3,1,2],[1,2,0,2],[0,2,2,1]],[[0,2,1,2],[2,2,3,2],[2,2,3,1],[0,2,0,0]],[[0,2,1,1],[2,2,4,2],[2,2,3,1],[0,2,0,0]],[[0,2,1,1],[2,2,3,3],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[1,3,1,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[1,4,1,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[1,3,1,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[1,3,1,2],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[1,3,1,2],[1,1,3,1],[0,2,2,0]],[[2,2,2,1],[1,3,1,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[1,3,1,3],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,1,2],[1,1,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[1,1,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[1,1,3,1],[0,2,1,1]],[[0,2,1,2],[2,2,3,2],[2,2,3,1],[1,1,0,0]],[[0,2,1,1],[2,2,4,2],[2,2,3,1],[1,1,0,0]],[[0,2,1,1],[2,2,3,3],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[1,3,1,3],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[1,4,1,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[1,3,1,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[1,3,1,2],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[1,3,1,2],[1,1,3,0],[0,2,2,1]],[[2,2,2,1],[1,3,1,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[1,3,1,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,1],[1,3,1,3],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[1,4,1,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[1,3,1,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[1,3,1,2],[1,1,2,2],[0,2,2,0]],[[1,3,2,1],[1,3,1,2],[1,1,2,2],[0,2,2,0]],[[2,2,2,1],[1,3,1,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[1,3,1,2],[1,1,2,2],[0,2,1,2]],[[1,2,2,1],[1,3,1,2],[1,1,2,3],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[1,3,1,2],[1,1,2,2],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[1,1,2,2],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[1,3,1,2],[1,1,1,2],[0,2,2,2]],[[1,2,2,1],[1,3,1,2],[1,1,1,2],[0,2,3,1]],[[1,2,2,1],[1,3,1,2],[1,1,1,2],[0,3,2,1]],[[1,2,2,1],[1,3,1,2],[1,1,1,3],[0,2,2,1]],[[1,2,2,1],[1,3,1,3],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[1,4,1,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,1,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,1,2],[1,1,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,1,2],[1,1,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,1,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[1,3,1,2],[1,1,0,2],[1,2,2,2]],[[1,2,2,1],[1,3,1,2],[1,1,0,2],[1,2,3,1]],[[1,2,2,1],[1,3,1,2],[1,1,0,2],[1,3,2,1]],[[1,2,2,1],[1,3,1,2],[1,1,0,2],[2,2,2,1]],[[1,2,2,1],[1,3,1,2],[1,1,0,3],[1,2,2,1]],[[1,2,2,1],[1,3,1,3],[1,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,4,1,2],[1,1,0,2],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[1,1,0,2],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[1,1,0,2],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[1,1,0,2],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[1,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,3,1,3],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,4,1,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,3,1,2],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,3,1,2],[1,0,3,1],[1,2,2,0]],[[1,3,2,1],[1,3,1,2],[1,0,3,1],[1,2,2,0]],[[2,2,2,1],[1,3,1,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,3,1,3],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[1,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[1,0,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[1,0,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,3,1,3],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,4,1,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[1,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[1,0,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[1,0,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,3,1,2],[1,0,2,3],[1,2,2,0]],[[1,2,2,1],[1,3,1,3],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,4,1,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,1,2],[1,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,1,2],[1,0,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,1,2],[1,0,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,1,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,3,1,2],[1,0,2,2],[1,2,1,2]],[[1,2,2,1],[1,3,1,2],[1,0,2,3],[1,2,1,1]],[[1,2,2,1],[1,3,1,3],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[1,0,2,2],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[1,0,2,2],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[1,0,2,2],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,3,1,2],[1,0,1,2],[1,2,2,2]],[[1,2,2,1],[1,3,1,2],[1,0,1,2],[1,2,3,1]],[[1,2,2,1],[1,3,1,2],[1,0,1,2],[1,3,2,1]],[[1,2,2,1],[1,3,1,2],[1,0,1,2],[2,2,2,1]],[[1,2,2,1],[1,3,1,2],[1,0,1,3],[1,2,2,1]],[[1,2,2,1],[1,3,1,3],[1,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,1,2],[1,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[1,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[1,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[1,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[1,0,1,2],[1,2,2,1]],[[0,2,1,1],[3,2,3,2],[2,3,0,0],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[3,3,0,0],[1,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,3,0,0],[2,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,3,0,0],[1,3,2,0]],[[1,2,2,1],[1,3,1,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,3,1,3],[0,3,3,2],[0,1,0,1]],[[1,2,2,1],[1,4,1,2],[0,3,3,2],[0,1,0,1]],[[1,2,2,2],[1,3,1,2],[0,3,3,2],[0,1,0,1]],[[1,2,3,1],[1,3,1,2],[0,3,3,2],[0,1,0,1]],[[1,3,2,1],[1,3,1,2],[0,3,3,2],[0,1,0,1]],[[2,2,2,1],[1,3,1,2],[0,3,3,2],[0,1,0,1]],[[1,2,2,1],[1,3,1,2],[0,4,3,1],[1,2,0,0]],[[1,2,2,1],[1,3,1,3],[0,3,3,1],[1,2,0,0]],[[1,2,2,1],[1,4,1,2],[0,3,3,1],[1,2,0,0]],[[1,2,2,2],[1,3,1,2],[0,3,3,1],[1,2,0,0]],[[1,2,3,1],[1,3,1,2],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[1,3,1,2],[0,3,3,1],[1,2,0,0]],[[2,2,2,1],[1,3,1,2],[0,3,3,1],[1,2,0,0]],[[0,2,1,1],[3,2,3,2],[2,3,1,0],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[3,3,1,0],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,4,1,0],[0,2,2,0]],[[0,2,1,1],[2,2,3,2],[2,3,1,0],[0,3,2,0]],[[0,2,1,1],[3,2,3,2],[2,3,1,0],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[3,3,1,0],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,4,1,0],[1,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,2,1],[1,3,1,3],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[0,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,1,2],[0,3,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[0,3,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[0,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[0,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,1,2],[0,3,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,1,2],[0,3,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,3,1,3],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,1,2],[0,3,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,1,2],[0,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,1,2],[0,3,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,1,2],[0,3,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,1,2],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,3,1,3],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,1,2],[0,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,1,2],[0,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,1,2],[0,3,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,1,2],[0,3,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,1,2],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,3,1,3],[0,3,3,1],[0,0,2,1]],[[1,2,2,1],[1,4,1,2],[0,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,3,1,2],[0,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,3,1,2],[0,3,3,1],[0,0,2,1]],[[1,3,2,1],[1,3,1,2],[0,3,3,1],[0,0,2,1]],[[2,2,2,1],[1,3,1,2],[0,3,3,1],[0,0,2,1]],[[0,2,1,2],[2,2,3,2],[2,3,1,2],[1,0,0,1]],[[0,2,1,1],[2,2,4,2],[2,3,1,2],[1,0,0,1]],[[0,2,1,1],[2,2,3,3],[2,3,1,2],[1,0,0,1]],[[0,2,1,1],[2,2,3,2],[2,3,1,3],[1,0,0,1]],[[0,2,1,2],[2,2,3,2],[2,3,1,2],[1,0,1,0]],[[0,2,1,1],[2,2,4,2],[2,3,1,2],[1,0,1,0]],[[0,2,1,1],[2,2,3,3],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[1,3,1,3],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,1,2],[0,3,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,1,2],[0,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,1,2],[0,3,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,1,2],[0,3,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,1,2],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,3,1,3],[0,3,3,0],[0,1,2,1]],[[1,2,2,1],[1,4,1,2],[0,3,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,1,2],[0,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,1,2],[0,3,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,1,2],[0,3,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,1,2],[0,3,3,0],[0,1,2,1]],[[1,2,2,1],[1,3,1,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,1],[1,3,1,3],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,4,1,2],[0,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,1,2],[0,3,2,2],[0,2,1,0]],[[0,2,1,1],[3,2,3,2],[2,3,2,0],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[3,3,2,0],[0,1,2,0]],[[0,2,1,1],[2,2,3,2],[2,4,2,0],[0,1,2,0]],[[0,2,1,1],[3,2,3,2],[2,3,2,0],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[3,3,2,0],[0,2,0,1]],[[0,2,1,1],[2,2,3,2],[2,4,2,0],[0,2,0,1]],[[0,2,1,1],[3,2,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,1,1],[2,2,3,2],[3,3,2,0],[0,2,1,0]],[[0,2,1,1],[2,2,3,2],[2,4,2,0],[0,2,1,0]],[[0,2,1,1],[2,2,3,2],[2,3,2,0],[0,3,1,0]],[[1,2,3,1],[1,3,1,2],[0,3,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,1,2],[0,3,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,1,2],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,3,1,2],[0,3,2,2],[0,2,0,2]],[[1,2,2,1],[1,3,1,2],[0,3,2,3],[0,2,0,1]],[[1,2,2,1],[1,3,1,3],[0,3,2,2],[0,2,0,1]],[[1,2,2,1],[1,4,1,2],[0,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,1,2],[0,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,1,2],[0,3,2,2],[0,2,0,1]],[[0,2,1,1],[3,2,3,2],[2,3,2,0],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[3,3,2,0],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[2,4,2,0],[1,0,2,0]],[[0,2,1,1],[2,2,3,2],[2,3,2,0],[2,0,2,0]],[[0,2,1,1],[3,2,3,2],[2,3,2,0],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[3,3,2,0],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[2,4,2,0],[1,1,0,1]],[[0,2,1,1],[2,2,3,2],[2,3,2,0],[2,1,0,1]],[[0,2,1,1],[3,2,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,1,1],[2,2,3,2],[3,3,2,0],[1,1,1,0]],[[0,2,1,1],[2,2,3,2],[2,4,2,0],[1,1,1,0]],[[0,2,1,1],[2,2,3,2],[2,3,2,0],[2,1,1,0]],[[1,3,2,1],[1,3,1,2],[0,3,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,1,2],[0,3,2,2],[0,2,0,1]],[[0,2,1,1],[3,2,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,1,1],[2,2,3,2],[3,3,2,0],[1,2,0,0]],[[0,2,1,1],[2,2,3,2],[2,4,2,0],[1,2,0,0]],[[0,2,1,1],[2,2,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[1,3,1,2],[0,3,2,3],[0,1,2,0]],[[1,2,2,1],[1,3,1,3],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,4,1,2],[0,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,1,2],[0,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,1,2],[0,3,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,1,2],[0,3,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,1,2],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,3,1,2],[0,3,2,2],[0,1,1,2]],[[1,2,2,1],[1,3,1,2],[0,3,2,3],[0,1,1,1]],[[1,2,2,1],[1,3,1,3],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,4,1,2],[0,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,1,2],[0,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,1,2],[0,3,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,1,2],[0,3,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,1,2],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,1,2],[0,3,2,2],[0,0,2,2]],[[1,2,2,1],[1,3,1,2],[0,3,2,3],[0,0,2,1]],[[1,2,2,1],[1,3,1,3],[0,3,2,2],[0,0,2,1]],[[1,2,2,1],[1,4,1,2],[0,3,2,2],[0,0,2,1]],[[1,2,2,2],[1,3,1,2],[0,3,2,2],[0,0,2,1]],[[1,2,3,1],[1,3,1,2],[0,3,2,2],[0,0,2,1]],[[1,3,2,1],[1,3,1,2],[0,3,2,2],[0,0,2,1]],[[2,2,2,1],[1,3,1,2],[0,3,2,2],[0,0,2,1]],[[1,2,2,1],[1,3,1,2],[0,3,2,1],[1,3,1,0]],[[1,2,2,1],[1,3,1,2],[0,3,2,1],[2,2,1,0]],[[1,2,2,1],[1,3,1,2],[0,4,2,1],[1,2,1,0]],[[1,2,2,1],[1,3,1,3],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[1,4,1,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[1,3,1,2],[0,3,2,1],[1,2,1,0]],[[0,2,1,2],[2,2,3,2],[2,3,2,1],[1,0,0,1]],[[0,2,1,1],[2,2,4,2],[2,3,2,1],[1,0,0,1]],[[0,2,1,1],[2,2,3,3],[2,3,2,1],[1,0,0,1]],[[0,2,1,2],[2,2,3,2],[2,3,2,1],[1,0,1,0]],[[0,2,1,1],[2,2,4,2],[2,3,2,1],[1,0,1,0]],[[0,2,1,1],[2,2,3,3],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[1,3,1,2],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[1,3,1,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[1,3,1,2],[0,3,2,1],[1,3,0,1]],[[1,2,2,1],[1,3,1,2],[0,3,2,1],[2,2,0,1]],[[1,2,2,1],[1,3,1,2],[0,4,2,1],[1,2,0,1]],[[1,2,2,1],[1,3,1,3],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[1,4,1,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,2],[1,3,1,2],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[1,3,1,2],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[1,3,1,2],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[1,3,1,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[1,3,1,2],[0,4,2,1],[1,1,2,0]],[[1,2,2,1],[1,3,1,3],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[1,4,1,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,2],[1,3,1,2],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[1,3,1,2],[0,3,2,1],[1,1,2,0]],[[2,2,2,1],[1,3,1,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[1,3,1,2],[0,4,2,1],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[0,3,2,1],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[1,3,1,2],[0,3,2,0],[1,3,1,1]],[[1,2,2,1],[1,3,1,2],[0,3,2,0],[2,2,1,1]],[[1,2,2,1],[1,3,1,2],[0,4,2,0],[1,2,1,1]],[[1,2,2,1],[1,3,1,3],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[0,3,2,0],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[1,3,1,2],[0,4,2,0],[1,1,2,1]],[[1,2,2,1],[1,3,1,3],[0,3,2,0],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[0,3,2,0],[1,1,2,1]],[[1,2,2,2],[1,3,1,2],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[1,3,1,2],[0,3,2,0],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[0,3,2,0],[1,1,2,1]],[[1,2,2,1],[1,3,1,2],[0,3,1,2],[1,3,1,0]],[[1,2,2,1],[1,3,1,2],[0,3,1,2],[2,2,1,0]],[[1,2,2,1],[1,3,1,2],[0,3,1,3],[1,2,1,0]],[[1,2,2,1],[1,3,1,2],[0,4,1,2],[1,2,1,0]],[[1,2,2,1],[1,3,1,3],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[1,4,1,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[0,3,1,2],[1,2,1,0]],[[1,2,3,1],[1,3,1,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,1],[1,3,1,2],[0,3,1,2],[1,2,1,0]],[[2,2,2,1],[1,3,1,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[1,3,1,2],[0,3,1,2],[1,2,0,2]],[[1,2,2,1],[1,3,1,2],[0,3,1,2],[1,3,0,1]],[[1,2,2,1],[1,3,1,2],[0,3,1,2],[2,2,0,1]],[[1,2,2,1],[1,3,1,2],[0,3,1,3],[1,2,0,1]],[[1,2,2,1],[1,3,1,2],[0,4,1,2],[1,2,0,1]],[[1,2,2,1],[1,3,1,3],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[1,4,1,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,2],[1,3,1,2],[0,3,1,2],[1,2,0,1]],[[1,2,3,1],[1,3,1,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[1,3,1,2],[0,3,1,2],[1,2,0,1]],[[2,2,2,1],[1,3,1,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[1,3,1,2],[0,3,1,3],[1,1,2,0]],[[1,2,2,1],[1,3,1,2],[0,4,1,2],[1,1,2,0]],[[1,2,2,1],[1,3,1,3],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[1,4,1,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,2],[1,3,1,2],[0,3,1,2],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[0,3,1,2],[1,1,2,0]],[[1,3,2,1],[1,3,1,2],[0,3,1,2],[1,1,2,0]],[[2,2,2,1],[1,3,1,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[1,3,1,2],[0,3,1,2],[1,1,1,2]],[[1,2,2,1],[1,3,1,2],[0,3,1,3],[1,1,1,1]],[[1,2,2,1],[1,3,1,2],[0,4,1,2],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[0,3,1,2],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[0,3,1,2],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[0,3,1,2],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[1,3,1,2],[0,3,1,2],[0,1,2,2]],[[1,2,2,1],[1,3,1,2],[0,3,1,2],[0,1,3,1]],[[1,2,2,1],[1,3,1,2],[0,3,1,3],[0,1,2,1]],[[1,2,2,1],[1,3,1,3],[0,3,1,2],[0,1,2,1]],[[1,2,2,1],[1,4,1,2],[0,3,1,2],[0,1,2,1]],[[1,2,2,2],[1,3,1,2],[0,3,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,1,2],[0,3,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,1,2],[0,3,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,1,2],[0,3,1,2],[0,1,2,1]],[[1,2,2,1],[1,3,1,2],[0,3,1,1],[1,2,3,0]],[[1,2,2,1],[1,3,1,2],[0,3,1,1],[1,3,2,0]],[[1,2,2,1],[1,3,1,2],[0,3,1,1],[2,2,2,0]],[[1,2,2,1],[1,3,1,2],[0,4,1,1],[1,2,2,0]],[[1,2,2,1],[1,3,1,3],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[1,4,1,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,2],[1,3,1,2],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[1,3,1,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[1,3,1,2],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[1,3,1,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[1,3,1,2],[0,3,1,0],[1,2,2,2]],[[1,2,2,1],[1,3,1,2],[0,3,1,0],[1,2,3,1]],[[1,2,2,1],[1,3,1,2],[0,3,1,0],[1,3,2,1]],[[1,2,2,1],[1,3,1,2],[0,3,1,0],[2,2,2,1]],[[1,2,2,1],[1,3,1,2],[0,4,1,0],[1,2,2,1]],[[1,2,2,1],[1,3,1,3],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[1,4,1,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[0,3,1,0],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[1,3,1,2],[0,3,0,2],[1,2,3,0]],[[1,2,2,1],[1,3,1,2],[0,3,0,2],[1,3,2,0]],[[1,2,2,1],[1,3,1,2],[0,3,0,2],[2,2,2,0]],[[1,2,2,1],[1,3,1,2],[0,3,0,3],[1,2,2,0]],[[1,2,2,1],[1,3,1,2],[0,4,0,2],[1,2,2,0]],[[1,2,2,1],[1,3,1,3],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[1,4,1,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,2],[1,3,1,2],[0,3,0,2],[1,2,2,0]],[[1,2,3,1],[1,3,1,2],[0,3,0,2],[1,2,2,0]],[[1,3,2,1],[1,3,1,2],[0,3,0,2],[1,2,2,0]],[[2,2,2,1],[1,3,1,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[1,3,1,2],[0,3,0,2],[1,2,1,2]],[[1,2,2,1],[1,3,1,2],[0,3,0,2],[1,3,1,1]],[[1,2,2,1],[1,3,1,2],[0,3,0,2],[2,2,1,1]],[[1,2,2,1],[1,3,1,2],[0,3,0,3],[1,2,1,1]],[[1,2,2,1],[1,3,1,2],[0,4,0,2],[1,2,1,1]],[[1,2,2,1],[1,3,1,3],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[0,3,0,2],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[0,3,0,2],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[1,3,1,2],[0,3,0,2],[1,1,2,2]],[[1,2,2,1],[1,3,1,2],[0,3,0,2],[1,1,3,1]],[[1,2,2,1],[1,3,1,2],[0,3,0,3],[1,1,2,1]],[[1,2,2,1],[1,3,1,2],[0,4,0,2],[1,1,2,1]],[[1,2,2,1],[1,3,1,3],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,2],[1,3,1,2],[0,3,0,2],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[1,3,1,2],[0,3,0,2],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[1,3,1,2],[0,3,0,1],[1,2,2,2]],[[1,2,2,1],[1,3,1,2],[0,3,0,1],[1,2,3,1]],[[1,2,2,1],[1,3,1,2],[0,3,0,1],[1,3,2,1]],[[1,2,2,1],[1,3,1,2],[0,3,0,1],[2,2,2,1]],[[1,2,2,1],[1,3,1,2],[0,4,0,1],[1,2,2,1]],[[1,2,2,1],[1,3,1,3],[0,3,0,1],[1,2,2,1]],[[1,2,2,1],[1,4,1,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[0,3,0,1],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[0,3,0,1],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,1],[1,3,1,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[1,3,1,3],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,4,1,2],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,1,2],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,1,2],[0,2,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,1,2],[0,2,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,1,2],[0,2,3,2],[1,1,0,1]],[[0,2,1,1],[3,2,3,2],[2,3,3,0],[0,2,0,0]],[[0,2,1,1],[2,2,3,2],[3,3,3,0],[0,2,0,0]],[[0,2,1,1],[2,2,3,2],[2,4,3,0],[0,2,0,0]],[[1,2,2,1],[1,3,1,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[1,4,1,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,1,2],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,1,2],[0,2,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,1,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[1,3,1,3],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[1,4,1,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[1,3,1,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,1,2],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,1,2],[0,2,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,1,2],[0,2,3,1],[1,2,0,1]],[[0,2,1,1],[3,2,3,2],[2,3,3,0],[1,1,0,0]],[[0,2,1,1],[2,2,3,2],[3,3,3,0],[1,1,0,0]],[[0,2,1,1],[2,2,3,2],[2,4,3,0],[1,1,0,0]],[[0,2,1,1],[2,2,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,2,1],[1,3,1,3],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[1,4,1,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[1,3,1,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[1,3,1,2],[0,2,3,1],[1,1,2,0]],[[2,2,2,1],[1,3,1,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[1,3,1,3],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[0,2,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[1,4,1,2],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,1,2],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,1,2],[0,2,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,1,2],[0,2,3,1],[1,0,2,1]],[[2,2,2,1],[1,3,1,2],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[1,3,1,3],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[0,2,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[1,3,1,3],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[1,3,1,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,1,2],[0,2,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[1,3,1,2],[0,2,2,3],[1,2,1,0]],[[1,2,2,1],[1,3,1,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[1,4,1,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[1,3,1,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[1,3,1,2],[0,2,2,2],[1,2,1,0]],[[1,3,2,1],[1,3,1,2],[0,2,2,2],[1,2,1,0]],[[2,2,2,1],[1,3,1,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[1,3,1,2],[0,2,2,2],[1,2,0,2]],[[1,2,2,1],[1,3,1,2],[0,2,2,3],[1,2,0,1]],[[1,2,2,1],[1,3,1,3],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[1,4,1,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,2],[1,3,1,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[1,3,1,2],[0,2,2,2],[1,2,0,1]],[[1,3,2,1],[1,3,1,2],[0,2,2,2],[1,2,0,1]],[[2,2,2,1],[1,3,1,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[1,3,1,2],[0,2,2,3],[1,1,2,0]],[[1,2,2,1],[1,3,1,3],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[1,4,1,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[1,3,1,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,1,2],[0,2,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,1,2],[0,2,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,1,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[1,3,1,2],[0,2,2,2],[1,1,1,2]],[[1,2,2,1],[1,3,1,2],[0,2,2,3],[1,1,1,1]],[[1,2,2,1],[1,3,1,3],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[1,4,1,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[1,3,1,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[1,3,1,2],[0,2,2,2],[1,1,1,1]],[[1,3,2,1],[1,3,1,2],[0,2,2,2],[1,1,1,1]],[[2,2,2,1],[1,3,1,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[1,3,1,2],[0,2,2,2],[1,0,2,2]],[[1,2,2,1],[1,3,1,2],[0,2,2,3],[1,0,2,1]],[[1,2,2,1],[1,3,1,3],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[1,4,1,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,2],[1,3,1,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[1,3,1,2],[0,2,2,2],[1,0,2,1]],[[1,3,2,1],[1,3,1,2],[0,2,2,2],[1,0,2,1]],[[2,2,2,1],[1,3,1,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[1,3,1,2],[0,2,1,2],[1,1,2,2]],[[1,2,2,1],[1,3,1,2],[0,2,1,2],[1,1,3,1]],[[1,2,2,1],[1,3,1,2],[0,2,1,3],[1,1,2,1]],[[1,2,2,1],[1,3,1,3],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[1,4,1,2],[0,2,1,2],[1,1,2,1]],[[0,2,1,2],[2,2,3,2],[2,3,3,1],[1,0,0,0]],[[0,2,1,1],[2,2,4,2],[2,3,3,1],[1,0,0,0]],[[0,2,1,1],[2,2,3,3],[2,3,3,1],[1,0,0,0]],[[1,2,2,2],[1,3,1,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,1,2],[0,2,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,1,2],[0,2,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,1,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[1,3,1,2],[0,2,0,2],[1,2,2,2]],[[1,2,2,1],[1,3,1,2],[0,2,0,2],[1,2,3,1]],[[1,2,2,1],[1,3,1,2],[0,2,0,2],[1,3,2,1]],[[1,2,2,1],[1,3,1,2],[0,2,0,2],[2,2,2,1]],[[1,2,2,1],[1,3,1,2],[0,2,0,3],[1,2,2,1]],[[1,2,2,1],[1,3,1,3],[0,2,0,2],[1,2,2,1]],[[1,2,2,1],[1,4,1,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[0,2,0,2],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[0,2,0,2],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[0,2,0,2],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,1],[1,3,1,3],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[1,4,1,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[1,3,1,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[1,3,1,2],[0,1,3,1],[1,2,2,0]],[[1,3,2,1],[1,3,1,2],[0,1,3,1],[1,2,2,0]],[[2,2,2,1],[1,3,1,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[1,3,1,3],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[0,1,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[0,1,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[1,3,1,3],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[1,4,1,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[0,1,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[1,3,1,2],[0,1,2,3],[1,2,2,0]],[[1,2,2,1],[1,3,1,3],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[1,4,1,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,1,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,1,2],[0,1,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,1,2],[0,1,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,1,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[1,3,1,2],[0,1,2,2],[1,2,1,2]],[[1,2,2,1],[1,3,1,2],[0,1,2,3],[1,2,1,1]],[[1,2,2,1],[1,3,1,3],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[1,4,1,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[1,3,1,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[1,3,1,2],[0,1,2,2],[1,2,1,1]],[[1,3,2,1],[1,3,1,2],[0,1,2,2],[1,2,1,1]],[[2,2,2,1],[1,3,1,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[1,3,1,2],[0,1,1,2],[1,2,2,2]],[[1,2,2,1],[1,3,1,2],[0,1,1,2],[1,2,3,1]],[[1,2,2,1],[1,3,1,2],[0,1,1,2],[1,3,2,1]],[[1,2,2,1],[1,3,1,2],[0,1,1,2],[2,2,2,1]],[[1,2,2,1],[1,3,1,2],[0,1,1,3],[1,2,2,1]],[[1,2,2,1],[1,3,1,3],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,1,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,1,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,1,2],[0,1,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,1,2],[0,1,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,1,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,1,1],[2,3,3,1],[1,0,1,0]],[[1,2,2,2],[1,3,1,1],[2,3,3,1],[1,0,1,0]],[[1,2,3,1],[1,3,1,1],[2,3,3,1],[1,0,1,0]],[[1,3,2,1],[1,3,1,1],[2,3,3,1],[1,0,1,0]],[[2,2,2,1],[1,3,1,1],[2,3,3,1],[1,0,1,0]],[[1,2,2,1],[1,4,1,1],[2,3,3,1],[1,0,0,1]],[[1,2,2,2],[1,3,1,1],[2,3,3,1],[1,0,0,1]],[[1,2,3,1],[1,3,1,1],[2,3,3,1],[1,0,0,1]],[[1,3,2,1],[1,3,1,1],[2,3,3,1],[1,0,0,1]],[[2,2,2,1],[1,3,1,1],[2,3,3,1],[1,0,0,1]],[[1,2,2,1],[1,4,1,1],[2,3,3,0],[1,0,1,1]],[[1,2,2,2],[1,3,1,1],[2,3,3,0],[1,0,1,1]],[[1,2,3,1],[1,3,1,1],[2,3,3,0],[1,0,1,1]],[[1,3,2,1],[1,3,1,1],[2,3,3,0],[1,0,1,1]],[[2,2,2,1],[1,3,1,1],[2,3,3,0],[1,0,1,1]],[[1,2,2,1],[1,4,1,1],[2,2,3,1],[1,2,0,0]],[[1,2,2,2],[1,3,1,1],[2,2,3,1],[1,2,0,0]],[[1,2,3,1],[1,3,1,1],[2,2,3,1],[1,2,0,0]],[[1,3,2,1],[1,3,1,1],[2,2,3,1],[1,2,0,0]],[[2,2,2,1],[1,3,1,1],[2,2,3,1],[1,2,0,0]],[[0,2,1,1],[2,3,0,0],[1,4,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,0],[1,3,3,1],[2,2,2,1]],[[0,2,1,1],[2,3,0,0],[1,3,3,1],[1,3,2,1]],[[0,2,1,1],[2,3,0,0],[1,3,3,1],[1,2,3,1]],[[0,2,1,1],[2,3,0,0],[1,3,3,1],[1,2,2,2]],[[0,2,1,1],[2,3,0,0],[1,4,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,0],[1,3,3,2],[2,2,2,0]],[[0,2,1,1],[2,3,0,0],[1,3,3,2],[1,3,2,0]],[[0,2,1,1],[2,3,0,0],[1,3,3,2],[1,2,3,0]],[[0,2,1,1],[3,3,0,0],[2,2,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,0],[3,2,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,0],[2,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,3,0,0],[2,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,3,0,0],[2,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,3,0,0],[2,2,3,1],[1,2,2,2]],[[0,2,1,1],[3,3,0,0],[2,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,0],[3,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,0],[2,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,3,0,0],[2,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,3,0,0],[2,2,3,2],[1,2,3,0]],[[0,2,1,1],[2,3,0,0],[3,3,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,0],[2,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,3,0,0],[2,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,3,0,0],[3,3,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,0],[2,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,3,0,0],[2,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,3,0,0],[3,3,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,0,0],[2,3,3,0],[2,2,2,1]],[[0,2,1,1],[2,3,0,0],[2,3,3,0],[1,3,2,1]],[[0,2,1,1],[3,3,0,0],[2,3,3,1],[0,2,2,1]],[[0,2,1,1],[2,3,0,0],[3,3,3,1],[0,2,2,1]],[[0,2,1,1],[2,3,0,0],[2,4,3,1],[0,2,2,1]],[[0,2,1,1],[2,3,0,0],[2,3,3,1],[0,3,2,1]],[[0,2,1,1],[2,3,0,0],[2,3,3,1],[0,2,3,1]],[[0,2,1,1],[2,3,0,0],[2,3,3,1],[0,2,2,2]],[[0,2,1,1],[3,3,0,0],[2,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,0,0],[3,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,0,0],[2,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,0,0],[2,3,3,1],[2,1,2,1]],[[0,2,1,1],[3,3,0,0],[2,3,3,2],[0,2,2,0]],[[0,2,1,1],[2,3,0,0],[3,3,3,2],[0,2,2,0]],[[0,2,1,1],[2,3,0,0],[2,4,3,2],[0,2,2,0]],[[0,2,1,1],[2,3,0,0],[2,3,3,2],[0,3,2,0]],[[0,2,1,1],[2,3,0,0],[2,3,3,2],[0,2,3,0]],[[0,2,1,1],[3,3,0,0],[2,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,0,0],[3,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,0,0],[2,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,0,0],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[1,4,1,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,1,1],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,1,1],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,1,1],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,1,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[1,4,1,1],[2,2,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,1,1],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,1,1],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,1,1],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,1,1],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[1,4,1,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,1,1],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,1,1],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,1,1],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,1,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[1,4,1,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,2],[1,3,1,1],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,1,1],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,1,1],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,1,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[1,4,1,1],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,1,1],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,1,1],[2,2,3,1],[0,2,1,0]],[[0,2,1,2],[2,3,0,2],[0,2,2,2],[1,2,2,1]],[[0,2,1,1],[2,3,0,3],[0,2,2,2],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,2,2,2],[2,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,2,2,2],[1,3,2,1]],[[0,2,1,1],[2,3,0,2],[0,2,2,2],[1,2,3,1]],[[0,2,1,1],[2,3,0,2],[0,2,2,2],[1,2,2,2]],[[0,2,1,1],[2,3,0,2],[0,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,3,0,2],[0,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,3,0,2],[0,2,3,1],[1,2,2,2]],[[0,2,1,2],[2,3,0,2],[0,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,3,0,3],[0,2,3,2],[1,2,1,1]],[[0,2,1,1],[2,3,0,2],[0,2,4,2],[1,2,1,1]],[[0,2,1,1],[2,3,0,2],[0,2,3,3],[1,2,1,1]],[[0,2,1,1],[2,3,0,2],[0,2,3,2],[1,2,1,2]],[[0,2,1,2],[2,3,0,2],[0,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,3],[0,2,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,2],[0,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,2],[0,2,3,3],[1,2,2,0]],[[0,2,1,1],[2,3,0,2],[0,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,3,0,2],[0,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,3,0,2],[0,2,3,2],[1,2,3,0]],[[0,3,1,1],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,2],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[3,3,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,4,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,0,3],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,4,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,1,3],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,3,0,2],[0,3,1,2],[1,2,2,2]],[[0,3,1,1],[2,3,0,2],[0,3,2,1],[1,2,2,1]],[[0,2,1,1],[3,3,0,2],[0,3,2,1],[1,2,2,1]],[[0,2,1,1],[2,4,0,2],[0,3,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,4,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,3,0,2],[0,3,2,1],[1,2,2,2]],[[0,2,1,2],[2,3,0,2],[0,3,2,2],[1,1,2,1]],[[0,2,1,1],[2,3,0,3],[0,3,2,2],[1,1,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,2,3],[1,1,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,2,2],[1,1,3,1]],[[0,2,1,1],[2,3,0,2],[0,3,2,2],[1,1,2,2]],[[0,3,1,1],[2,3,0,2],[0,3,2,2],[1,2,2,0]],[[0,2,1,1],[3,3,0,2],[0,3,2,2],[1,2,2,0]],[[0,2,1,1],[2,4,0,2],[0,3,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,2],[0,4,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,2],[0,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,3,0,2],[0,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,3,0,2],[0,3,2,2],[1,2,3,0]],[[0,3,1,1],[2,3,0,2],[0,3,3,1],[1,1,2,1]],[[0,2,1,1],[3,3,0,2],[0,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,4,0,2],[0,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,0,2],[0,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,4,1],[1,1,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,1],[1,1,3,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,1],[1,1,2,2]],[[0,3,1,1],[2,3,0,2],[0,3,3,1],[1,2,1,1]],[[0,2,1,1],[3,3,0,2],[0,3,3,1],[1,2,1,1]],[[0,2,1,1],[2,4,0,2],[0,3,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,0,2],[0,4,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,0,2],[0,3,4,1],[1,2,1,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,1],[1,3,1,1]],[[0,2,1,2],[2,3,0,2],[0,3,3,2],[1,0,2,1]],[[0,2,1,1],[2,3,0,3],[0,3,3,2],[1,0,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,4,2],[1,0,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,3],[1,0,2,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,2],[1,0,2,2]],[[0,3,1,1],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[0,2,1,2],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[3,3,0,2],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,4,0,2],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,0,3],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,0,2],[0,4,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,0,2],[0,3,4,2],[1,1,1,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,3],[1,1,1,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,2],[1,1,1,2]],[[0,3,1,1],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[0,2,1,2],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[3,3,0,2],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,4,0,2],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,0,3],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,0,2],[0,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,0,2],[0,3,4,2],[1,1,2,0]],[[0,2,1,1],[2,3,0,2],[0,3,3,3],[1,1,2,0]],[[0,2,1,1],[2,3,0,2],[0,3,3,2],[1,1,3,0]],[[0,3,1,1],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,1,2],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[3,3,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,4,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,0,3],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,0,2],[0,4,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,0,2],[0,3,4,2],[1,2,0,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,3],[1,2,0,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,3,0,2],[0,3,3,2],[1,2,0,2]],[[0,3,1,1],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[0,2,1,2],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[3,3,0,2],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,4,0,2],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,0,3],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,0,2],[0,4,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,0,2],[0,3,4,2],[1,2,1,0]],[[0,2,1,1],[2,3,0,2],[0,3,3,3],[1,2,1,0]],[[0,2,1,1],[2,3,0,2],[0,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,3,0,2],[0,3,3,2],[1,3,1,0]],[[1,3,2,1],[1,3,1,1],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,1,1],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,1,1],[2,2,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,1,1],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,1,1],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,1,1],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,1,1],[2,2,3,1],[0,2,0,1]],[[0,2,1,2],[2,3,0,2],[1,2,2,2],[0,2,2,1]],[[0,2,1,1],[2,3,0,3],[1,2,2,2],[0,2,2,1]],[[0,2,1,1],[2,3,0,2],[1,2,2,3],[0,2,2,1]],[[0,2,1,1],[2,3,0,2],[1,2,2,2],[0,3,2,1]],[[0,2,1,1],[2,3,0,2],[1,2,2,2],[0,2,3,1]],[[0,2,1,1],[2,3,0,2],[1,2,2,2],[0,2,2,2]],[[0,2,1,1],[2,3,0,2],[1,2,4,1],[0,2,2,1]],[[0,2,1,1],[2,3,0,2],[1,2,3,1],[0,3,2,1]],[[0,2,1,1],[2,3,0,2],[1,2,3,1],[0,2,3,1]],[[0,2,1,1],[2,3,0,2],[1,2,3,1],[0,2,2,2]],[[0,2,1,2],[2,3,0,2],[1,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,3,0,3],[1,2,3,2],[0,2,1,1]],[[0,2,1,1],[2,3,0,2],[1,2,4,2],[0,2,1,1]],[[0,2,1,1],[2,3,0,2],[1,2,3,3],[0,2,1,1]],[[0,2,1,1],[2,3,0,2],[1,2,3,2],[0,2,1,2]],[[0,2,1,2],[2,3,0,2],[1,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,3,0,3],[1,2,3,2],[0,2,2,0]],[[0,2,1,1],[2,3,0,2],[1,2,4,2],[0,2,2,0]],[[0,2,1,1],[2,3,0,2],[1,2,3,3],[0,2,2,0]],[[0,2,1,1],[2,3,0,2],[1,2,3,2],[0,3,2,0]],[[0,2,1,1],[2,3,0,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,4,1,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,1,1],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,1,1],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,1,1],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,1,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,1,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,1,1],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,1,1],[2,2,3,1],[0,1,1,1]],[[0,3,1,1],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[0,2,1,2],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[0,2,1,1],[3,3,0,2],[1,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,4,0,2],[1,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,0,3],[1,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,0,2],[1,4,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,1,3],[0,2,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,1,2],[0,3,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,1,2],[0,2,3,1]],[[0,2,1,1],[2,3,0,2],[1,3,1,2],[0,2,2,2]],[[0,3,1,1],[2,3,0,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[3,3,0,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,4,0,2],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,0,2],[1,4,1,2],[1,1,2,1]],[[0,3,1,1],[2,3,0,2],[1,3,2,1],[0,2,2,1]],[[0,2,1,1],[3,3,0,2],[1,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,4,0,2],[1,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,3,0,2],[1,4,2,1],[0,2,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,2,1],[0,3,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,2,1],[0,2,3,1]],[[0,2,1,1],[2,3,0,2],[1,3,2,1],[0,2,2,2]],[[0,3,1,1],[2,3,0,2],[1,3,2,1],[1,1,2,1]],[[0,2,1,1],[3,3,0,2],[1,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,4,0,2],[1,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,0,2],[1,4,2,1],[1,1,2,1]],[[0,2,1,2],[2,3,0,2],[1,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,3,0,3],[1,3,2,2],[0,1,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,3,0,2],[1,3,2,2],[0,1,2,2]],[[0,3,1,1],[2,3,0,2],[1,3,2,2],[0,2,2,0]],[[0,2,1,1],[3,3,0,2],[1,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,4,0,2],[1,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,0,2],[1,4,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,0,2],[1,3,2,2],[0,3,2,0]],[[0,2,1,1],[2,3,0,2],[1,3,2,2],[0,2,3,0]],[[0,2,1,2],[2,3,0,2],[1,3,2,2],[1,0,2,1]],[[0,2,1,1],[2,3,0,3],[1,3,2,2],[1,0,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,2,2],[1,0,3,1]],[[0,2,1,1],[2,3,0,2],[1,3,2,2],[1,0,2,2]],[[0,3,1,1],[2,3,0,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[3,3,0,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,4,0,2],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,0,2],[1,4,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,1,1],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,1,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,1,1],[2,2,3,0],[1,2,0,1]],[[0,3,1,1],[2,3,0,2],[1,3,3,1],[0,1,2,1]],[[0,2,1,1],[3,3,0,2],[1,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,4,0,2],[1,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,0,2],[1,4,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,1],[0,1,2,2]],[[0,3,1,1],[2,3,0,2],[1,3,3,1],[0,2,1,1]],[[0,2,1,1],[3,3,0,2],[1,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,4,0,2],[1,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,0,2],[1,4,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,0,2],[1,3,4,1],[0,2,1,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,1],[0,3,1,1]],[[0,3,1,1],[2,3,0,2],[1,3,3,1],[1,0,2,1]],[[0,2,1,1],[3,3,0,2],[1,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,4,0,2],[1,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,0,2],[1,4,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,4,1],[1,0,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,1],[1,0,3,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,1],[1,0,2,2]],[[0,3,1,1],[2,3,0,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[3,3,0,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,4,0,2],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,0,2],[1,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,0,2],[1,3,4,1],[1,1,1,1]],[[1,2,2,2],[1,3,1,1],[2,2,3,0],[1,2,0,1]],[[1,2,3,1],[1,3,1,1],[2,2,3,0],[1,2,0,1]],[[1,3,2,1],[1,3,1,1],[2,2,3,0],[1,2,0,1]],[[2,2,2,1],[1,3,1,1],[2,2,3,0],[1,2,0,1]],[[0,2,1,2],[2,3,0,2],[1,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,3,0,3],[1,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,2],[0,0,2,2]],[[0,3,1,1],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,1,2],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[3,3,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,4,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,0,3],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,0,2],[1,4,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,0,2],[1,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,2],[0,1,1,2]],[[0,3,1,1],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,1,2],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[3,3,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,4,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,0,3],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,0,2],[1,4,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,0,2],[1,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,3,0,2],[1,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,3,0,2],[1,3,3,2],[0,1,3,0]],[[0,3,1,1],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,1,2],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[3,3,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,4,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,0,3],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,0,2],[1,4,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,0,2],[1,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,2],[0,3,0,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,2],[0,2,0,2]],[[0,3,1,1],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[0,2,1,2],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[3,3,0,2],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,4,0,2],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,0,3],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,0,2],[1,4,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,0,2],[1,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,3,0,2],[1,3,3,3],[0,2,1,0]],[[0,2,1,1],[2,3,0,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,4,1,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,1,1],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,1,1],[2,2,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,1,1],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,1,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[1,4,1,1],[2,2,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,1,1],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,1,1],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,1,1],[2,2,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,1,1],[2,2,3,0],[1,0,2,1]],[[0,3,1,1],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,1,2],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[3,3,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,4,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,0,3],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,0,2],[1,4,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,0,2],[1,3,4,2],[1,0,1,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,3],[1,0,1,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,2],[1,0,1,2]],[[0,3,1,1],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[0,2,1,2],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[3,3,0,2],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,4,0,2],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,0,3],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,0,2],[1,4,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,0,2],[1,3,4,2],[1,0,2,0]],[[0,2,1,1],[2,3,0,2],[1,3,3,3],[1,0,2,0]],[[0,2,1,1],[2,3,0,2],[1,3,3,2],[1,0,3,0]],[[0,3,1,1],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,2],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[3,3,0,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,4,0,2],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,0,3],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,0,2],[1,4,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,0,2],[1,3,4,2],[1,1,0,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,3],[1,1,0,1]],[[0,2,1,1],[2,3,0,2],[1,3,3,2],[1,1,0,2]],[[0,3,1,1],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[0,2,1,2],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[0,2,1,1],[3,3,0,2],[1,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,4,0,2],[1,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,0,3],[1,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,0,2],[1,4,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,0,2],[1,3,4,2],[1,1,1,0]],[[0,2,1,1],[2,3,0,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,4,1,1],[2,2,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,1,1],[2,2,3,0],[0,2,1,1]],[[0,3,1,1],[2,3,0,2],[1,3,3,2],[1,2,0,0]],[[0,2,1,1],[3,3,0,2],[1,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,4,0,2],[1,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,3,0,2],[1,4,3,2],[1,2,0,0]],[[1,2,3,1],[1,3,1,1],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,1,1],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,1,1],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,1,1],[2,2,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,1,1],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,1,1],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,1,1],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,1,1],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[1,4,1,1],[2,2,2,1],[1,1,2,0]],[[1,2,2,2],[1,3,1,1],[2,2,2,1],[1,1,2,0]],[[0,3,1,1],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,1,2],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[3,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,4,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,3,0,3],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[3,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[2,0,2,3],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[2,0,2,2],[2,2,2,1]],[[0,2,1,1],[2,3,0,2],[2,0,2,2],[1,3,2,1]],[[0,2,1,1],[2,3,0,2],[2,0,2,2],[1,2,3,1]],[[0,2,1,1],[2,3,0,2],[2,0,2,2],[1,2,2,2]],[[0,3,1,1],[2,3,0,2],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[3,3,0,2],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,4,0,2],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[3,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[2,0,4,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[2,0,3,1],[2,2,2,1]],[[0,2,1,1],[2,3,0,2],[2,0,3,1],[1,3,2,1]],[[0,2,1,1],[2,3,0,2],[2,0,3,1],[1,2,3,1]],[[0,2,1,1],[2,3,0,2],[2,0,3,1],[1,2,2,2]],[[0,2,1,2],[2,3,0,2],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,3,0,3],[2,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,3,0,2],[2,0,4,2],[1,2,1,1]],[[0,2,1,1],[2,3,0,2],[2,0,3,3],[1,2,1,1]],[[0,2,1,1],[2,3,0,2],[2,0,3,2],[1,2,1,2]],[[0,3,1,1],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,1,2],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[3,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,4,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,3],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,2],[3,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,2],[2,0,4,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,2],[2,0,3,3],[1,2,2,0]],[[0,2,1,1],[2,3,0,2],[2,0,3,2],[2,2,2,0]],[[0,2,1,1],[2,3,0,2],[2,0,3,2],[1,3,2,0]],[[0,2,1,1],[2,3,0,2],[2,0,3,2],[1,2,3,0]],[[0,3,1,1],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,2],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[3,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,4,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,0,3],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[3,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[2,1,1,3],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[2,1,1,2],[2,2,2,1]],[[0,2,1,1],[2,3,0,2],[2,1,1,2],[1,3,2,1]],[[0,2,1,1],[2,3,0,2],[2,1,1,2],[1,2,3,1]],[[0,2,1,1],[2,3,0,2],[2,1,1,2],[1,2,2,2]],[[0,3,1,1],[2,3,0,2],[2,1,2,1],[1,2,2,1]],[[0,2,1,1],[3,3,0,2],[2,1,2,1],[1,2,2,1]],[[0,2,1,1],[2,4,0,2],[2,1,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[3,1,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,0,2],[2,1,2,1],[2,2,2,1]],[[0,2,1,1],[2,3,0,2],[2,1,2,1],[1,3,2,1]],[[0,2,1,1],[2,3,0,2],[2,1,2,1],[1,2,3,1]],[[0,2,1,1],[2,3,0,2],[2,1,2,1],[1,2,2,2]],[[0,3,1,1],[2,3,0,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[3,3,0,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,4,0,2],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,2],[3,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,0,2],[2,1,2,2],[2,2,2,0]],[[0,2,1,1],[2,3,0,2],[2,1,2,2],[1,3,2,0]],[[0,2,1,1],[2,3,0,2],[2,1,2,2],[1,2,3,0]],[[0,3,1,1],[2,3,0,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[3,3,0,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,4,0,2],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,0,2],[3,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,0,2],[2,1,3,1],[2,2,1,1]],[[0,2,1,1],[2,3,0,2],[2,1,3,1],[1,3,1,1]],[[0,3,1,1],[2,3,0,2],[2,1,3,2],[1,2,0,1]],[[0,2,1,1],[3,3,0,2],[2,1,3,2],[1,2,0,1]],[[0,2,1,1],[2,4,0,2],[2,1,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,0,2],[3,1,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,0,2],[2,1,3,2],[2,2,0,1]],[[0,2,1,1],[2,3,0,2],[2,1,3,2],[1,3,0,1]],[[0,3,1,1],[2,3,0,2],[2,1,3,2],[1,2,1,0]],[[0,2,1,1],[3,3,0,2],[2,1,3,2],[1,2,1,0]],[[0,2,1,1],[2,4,0,2],[2,1,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,0,2],[3,1,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,0,2],[2,1,3,2],[2,2,1,0]],[[0,2,1,1],[2,3,0,2],[2,1,3,2],[1,3,1,0]],[[1,2,3,1],[1,3,1,1],[2,2,2,1],[1,1,2,0]],[[1,3,2,1],[1,3,1,1],[2,2,2,1],[1,1,2,0]],[[2,2,2,1],[1,3,1,1],[2,2,2,1],[1,1,2,0]],[[1,2,2,1],[1,4,1,1],[2,2,2,1],[0,2,2,0]],[[1,2,2,2],[1,3,1,1],[2,2,2,1],[0,2,2,0]],[[1,2,3,1],[1,3,1,1],[2,2,2,1],[0,2,2,0]],[[1,3,2,1],[1,3,1,1],[2,2,2,1],[0,2,2,0]],[[0,3,1,1],[2,3,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[3,3,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[2,4,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,0,2],[3,2,1,2],[0,2,2,1]],[[0,3,1,1],[2,3,0,2],[2,2,1,2],[1,1,2,1]],[[0,2,1,1],[3,3,0,2],[2,2,1,2],[1,1,2,1]],[[0,2,1,1],[2,4,0,2],[2,2,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,0,2],[3,2,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,0,2],[2,2,1,2],[2,1,2,1]],[[0,3,1,1],[2,3,0,2],[2,2,2,1],[0,2,2,1]],[[0,2,1,1],[3,3,0,2],[2,2,2,1],[0,2,2,1]],[[0,2,1,1],[2,4,0,2],[2,2,2,1],[0,2,2,1]],[[0,2,1,1],[2,3,0,2],[3,2,2,1],[0,2,2,1]],[[0,3,1,1],[2,3,0,2],[2,2,2,1],[1,1,2,1]],[[0,2,1,1],[3,3,0,2],[2,2,2,1],[1,1,2,1]],[[0,2,1,1],[2,4,0,2],[2,2,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,0,2],[3,2,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,0,2],[2,2,2,1],[2,1,2,1]],[[0,3,1,1],[2,3,0,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[3,3,0,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[2,4,0,2],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,0,2],[3,2,2,2],[0,2,2,0]],[[0,3,1,1],[2,3,0,2],[2,2,2,2],[1,1,2,0]],[[0,2,1,1],[3,3,0,2],[2,2,2,2],[1,1,2,0]],[[0,2,1,1],[2,4,0,2],[2,2,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,0,2],[3,2,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,0,2],[2,2,2,2],[2,1,2,0]],[[2,2,2,1],[1,3,1,1],[2,2,2,1],[0,2,2,0]],[[0,3,1,1],[2,3,0,2],[2,2,3,1],[0,1,2,1]],[[0,2,1,1],[3,3,0,2],[2,2,3,1],[0,1,2,1]],[[0,2,1,1],[2,4,0,2],[2,2,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,0,2],[3,2,3,1],[0,1,2,1]],[[0,3,1,1],[2,3,0,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[3,3,0,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,4,0,2],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,0,2],[3,2,3,1],[0,2,1,1]],[[0,3,1,1],[2,3,0,2],[2,2,3,1],[1,0,2,1]],[[0,2,1,1],[3,3,0,2],[2,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,4,0,2],[2,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,0,2],[3,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,0,2],[2,2,3,1],[2,0,2,1]],[[0,3,1,1],[2,3,0,2],[2,2,3,1],[1,1,1,1]],[[0,2,1,1],[3,3,0,2],[2,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,4,0,2],[2,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,0,2],[3,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,0,2],[2,2,3,1],[2,1,1,1]],[[1,2,2,1],[1,4,1,1],[2,2,2,0],[1,1,2,1]],[[1,2,2,2],[1,3,1,1],[2,2,2,0],[1,1,2,1]],[[1,2,3,1],[1,3,1,1],[2,2,2,0],[1,1,2,1]],[[1,3,2,1],[1,3,1,1],[2,2,2,0],[1,1,2,1]],[[2,2,2,1],[1,3,1,1],[2,2,2,0],[1,1,2,1]],[[1,2,2,1],[1,4,1,1],[2,2,2,0],[0,2,2,1]],[[1,2,2,2],[1,3,1,1],[2,2,2,0],[0,2,2,1]],[[1,2,3,1],[1,3,1,1],[2,2,2,0],[0,2,2,1]],[[1,3,2,1],[1,3,1,1],[2,2,2,0],[0,2,2,1]],[[0,3,1,1],[2,3,0,2],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[3,3,0,2],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,4,0,2],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,0,2],[3,2,3,2],[0,1,1,1]],[[0,3,1,1],[2,3,0,2],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[3,3,0,2],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,4,0,2],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,0,2],[3,2,3,2],[0,1,2,0]],[[0,3,1,1],[2,3,0,2],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[3,3,0,2],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[2,4,0,2],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,0,2],[3,2,3,2],[0,2,0,1]],[[0,3,1,1],[2,3,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[3,3,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[2,4,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,0,2],[3,2,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,1,1],[2,2,2,0],[0,2,2,1]],[[0,3,1,1],[2,3,0,2],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[3,3,0,2],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,4,0,2],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,0,2],[3,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,0,2],[2,2,3,2],[2,0,1,1]],[[0,3,1,1],[2,3,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[3,3,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,4,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,0,2],[3,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,0,2],[2,2,3,2],[2,0,2,0]],[[0,3,1,1],[2,3,0,2],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[3,3,0,2],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,4,0,2],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,0,2],[3,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,0,2],[2,2,3,2],[2,1,0,1]],[[0,3,1,1],[2,3,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[3,3,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,4,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,0,2],[3,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,0,2],[2,2,3,2],[2,1,1,0]],[[0,3,1,1],[2,3,0,2],[2,2,3,2],[1,2,0,0]],[[0,2,1,1],[3,3,0,2],[2,2,3,2],[1,2,0,0]],[[0,2,1,1],[2,4,0,2],[2,2,3,2],[1,2,0,0]],[[0,2,1,1],[2,3,0,2],[3,2,3,2],[1,2,0,0]],[[0,2,1,1],[2,3,0,2],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[1,4,1,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,2],[1,3,1,1],[2,2,0,2],[1,1,2,1]],[[1,2,3,1],[1,3,1,1],[2,2,0,2],[1,1,2,1]],[[1,3,2,1],[1,3,1,1],[2,2,0,2],[1,1,2,1]],[[2,2,2,1],[1,3,1,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[1,4,1,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[1,3,1,1],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[1,3,1,1],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[1,3,1,1],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[1,3,1,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[1,4,1,1],[2,1,3,1],[1,2,1,0]],[[1,2,2,2],[1,3,1,1],[2,1,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,1,1],[2,1,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,1,1],[2,1,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,1,1],[2,1,3,1],[1,2,1,0]],[[1,2,2,1],[1,4,1,1],[2,1,3,1],[1,2,0,1]],[[1,2,2,2],[1,3,1,1],[2,1,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,1,1],[2,1,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,1,1],[2,1,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,1,1],[2,1,3,1],[1,2,0,1]],[[1,2,2,1],[1,4,1,1],[2,1,3,0],[1,2,1,1]],[[1,2,2,2],[1,3,1,1],[2,1,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,1,1],[2,1,3,0],[1,2,1,1]],[[1,3,2,1],[1,3,1,1],[2,1,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,1,1],[2,1,3,0],[1,2,1,1]],[[1,2,2,1],[1,4,1,1],[2,1,2,1],[1,2,2,0]],[[1,2,2,2],[1,3,1,1],[2,1,2,1],[1,2,2,0]],[[1,2,3,1],[1,3,1,1],[2,1,2,1],[1,2,2,0]],[[1,3,2,1],[1,3,1,1],[2,1,2,1],[1,2,2,0]],[[2,2,2,1],[1,3,1,1],[2,1,2,1],[1,2,2,0]],[[1,2,2,1],[1,4,1,1],[2,1,2,0],[1,2,2,1]],[[1,2,2,2],[1,3,1,1],[2,1,2,0],[1,2,2,1]],[[1,2,3,1],[1,3,1,1],[2,1,2,0],[1,2,2,1]],[[1,3,2,1],[1,3,1,1],[2,1,2,0],[1,2,2,1]],[[2,2,2,1],[1,3,1,1],[2,1,2,0],[1,2,2,1]],[[1,2,2,1],[1,4,1,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[1,3,1,1],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[1,3,1,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[1,3,1,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[1,3,1,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,4,1,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,3,1,1],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,3,1,1],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[1,3,1,1],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[1,3,1,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,4,1,1],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,3,1,1],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,1,1],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,1,1],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,1,1],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,4,1,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,1,1],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,1,1],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,1,1],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,1,1],[2,0,1,2],[1,2,2,1]],[[0,3,1,1],[2,3,0,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[3,3,0,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[2,4,0,2],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,0,2],[3,3,3,2],[1,0,0,1]],[[0,3,1,1],[2,3,0,2],[2,3,3,2],[1,0,1,0]],[[0,2,1,1],[3,3,0,2],[2,3,3,2],[1,0,1,0]],[[0,2,1,1],[2,4,0,2],[2,3,3,2],[1,0,1,0]],[[0,2,1,1],[2,3,0,2],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[1,3,1,1],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[1,4,1,1],[1,3,3,1],[1,2,0,0]],[[1,2,2,2],[1,3,1,1],[1,3,3,1],[1,2,0,0]],[[1,2,3,1],[1,3,1,1],[1,3,3,1],[1,2,0,0]],[[1,3,2,1],[1,3,1,1],[1,3,3,1],[1,2,0,0]],[[2,2,2,1],[1,3,1,1],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[1,3,1,1],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[1,3,1,1],[1,4,3,1],[1,1,1,0]],[[1,2,2,1],[1,4,1,1],[1,3,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,1,1],[1,3,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,1,1],[1,3,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,1,1],[1,3,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,1,1],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[1,3,1,1],[1,3,4,1],[1,1,0,1]],[[1,2,2,1],[1,3,1,1],[1,4,3,1],[1,1,0,1]],[[1,2,2,1],[1,4,1,1],[1,3,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,1,1],[1,3,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,1,1],[1,3,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,1,1],[1,3,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,1,1],[1,3,3,1],[1,1,0,1]],[[1,2,2,1],[1,3,1,1],[1,3,3,1],[1,0,3,0]],[[1,2,2,1],[1,3,1,1],[1,3,4,1],[1,0,2,0]],[[1,2,2,1],[1,3,1,1],[1,4,3,1],[1,0,2,0]],[[1,2,2,1],[1,4,1,1],[1,3,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,1,1],[1,3,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,1,1],[1,3,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,1,1],[1,3,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,1,1],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[1,3,1,1],[1,3,4,1],[1,0,1,1]],[[1,2,2,1],[1,3,1,1],[1,4,3,1],[1,0,1,1]],[[1,2,2,1],[1,4,1,1],[1,3,3,1],[1,0,1,1]],[[1,2,2,2],[1,3,1,1],[1,3,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,1,1],[1,3,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,1,1],[1,3,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,1,1],[1,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,1,0],[0,4,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[0,3,3,1],[2,2,2,1]],[[0,2,1,1],[2,3,1,0],[0,3,3,1],[1,3,2,1]],[[0,2,1,1],[2,3,1,0],[0,3,3,1],[1,2,3,1]],[[0,2,1,1],[2,3,1,0],[0,3,3,1],[1,2,2,2]],[[0,2,1,1],[2,3,1,0],[0,4,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,1,0],[0,3,3,2],[2,2,2,0]],[[0,2,1,1],[2,3,1,0],[0,3,3,2],[1,3,2,0]],[[0,2,1,1],[2,3,1,0],[0,3,3,2],[1,2,3,0]],[[0,2,1,1],[2,3,1,0],[1,4,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[1,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,3,1,0],[1,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,3,1,0],[1,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,3,1,0],[1,3,1,2],[1,2,2,2]],[[0,2,1,1],[2,3,1,0],[1,4,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[1,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,3,1,0],[1,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,3,1,0],[1,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,3,1,0],[1,3,2,1],[1,2,2,2]],[[0,2,1,1],[2,3,1,0],[1,4,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,1,0],[1,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,3,1,0],[1,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,3,1,0],[1,3,2,2],[1,2,3,0]],[[0,2,1,1],[2,3,1,0],[1,4,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[1,3,3,0],[2,2,2,1]],[[0,2,1,1],[2,3,1,0],[1,3,3,0],[1,3,2,1]],[[0,2,1,1],[2,3,1,0],[1,3,3,0],[1,2,3,1]],[[0,2,1,1],[2,3,1,0],[1,4,3,1],[0,2,2,1]],[[0,2,1,1],[2,3,1,0],[1,3,3,1],[0,3,2,1]],[[0,2,1,1],[2,3,1,0],[1,3,3,1],[0,2,3,1]],[[0,2,1,1],[2,3,1,0],[1,3,3,1],[0,2,2,2]],[[0,2,1,1],[2,3,1,0],[1,4,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,1,0],[1,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,3,1,0],[1,3,3,1],[1,3,1,1]],[[0,2,1,1],[2,3,1,0],[1,4,3,2],[0,2,2,0]],[[0,2,1,1],[2,3,1,0],[1,3,3,2],[0,3,2,0]],[[0,2,1,1],[2,3,1,0],[1,3,3,2],[0,2,3,0]],[[0,2,1,1],[2,3,1,0],[1,4,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,1,0],[1,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,3,1,0],[1,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,3,1,0],[1,4,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,1,0],[1,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,3,1,0],[1,3,3,2],[1,3,1,0]],[[0,2,1,1],[3,3,1,0],[2,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[3,2,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,2,1,2],[2,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,2,1,2],[1,3,2,1]],[[0,2,1,1],[2,3,1,0],[2,2,1,2],[1,2,3,1]],[[0,2,1,1],[2,3,1,0],[2,2,1,2],[1,2,2,2]],[[0,2,1,1],[3,3,1,0],[2,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[3,2,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,2,2,1],[2,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,2,2,1],[1,3,2,1]],[[0,2,1,1],[2,3,1,0],[2,2,2,1],[1,2,3,1]],[[0,2,1,1],[2,3,1,0],[2,2,2,1],[1,2,2,2]],[[0,2,1,1],[3,3,1,0],[2,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,1,0],[3,2,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,1,0],[2,2,2,2],[2,2,2,0]],[[0,2,1,1],[2,3,1,0],[2,2,2,2],[1,3,2,0]],[[0,2,1,1],[2,3,1,0],[2,2,2,2],[1,2,3,0]],[[0,2,1,1],[3,3,1,0],[2,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[3,2,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,2,3,0],[2,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,2,3,0],[1,3,2,1]],[[0,2,1,1],[2,3,1,0],[2,2,3,0],[1,2,3,1]],[[0,2,1,1],[3,3,1,0],[2,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,1,0],[3,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,1,0],[2,2,3,1],[2,2,1,1]],[[0,2,1,1],[2,3,1,0],[2,2,3,1],[1,3,1,1]],[[0,2,1,1],[3,3,1,0],[2,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,1,0],[3,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,1,0],[2,2,3,2],[2,2,0,1]],[[0,2,1,1],[2,3,1,0],[2,2,3,2],[1,3,0,1]],[[0,2,1,1],[3,3,1,0],[2,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,1,0],[3,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,1,0],[2,2,3,2],[2,2,1,0]],[[0,2,1,1],[2,3,1,0],[2,2,3,2],[1,3,1,0]],[[0,2,1,1],[3,3,1,0],[2,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[3,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,0,2],[2,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,0,2],[1,3,2,1]],[[0,2,1,1],[3,3,1,0],[2,3,1,1],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[3,3,1,1],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,1,1],[2,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,1,1],[1,3,2,1]],[[0,2,1,1],[3,3,1,0],[2,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,1,0],[3,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,4,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,1,2],[0,3,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,1,2],[0,2,3,1]],[[0,2,1,1],[2,3,1,0],[2,3,1,2],[0,2,2,2]],[[0,2,1,1],[3,3,1,0],[2,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,1,0],[3,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,1,0],[2,4,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,1,2],[2,1,2,1]],[[0,2,1,1],[3,3,1,0],[2,3,1,2],[1,2,2,0]],[[0,2,1,1],[2,3,1,0],[3,3,1,2],[1,2,2,0]],[[0,2,1,1],[2,3,1,0],[2,3,1,2],[2,2,2,0]],[[0,2,1,1],[2,3,1,0],[2,3,1,2],[1,3,2,0]],[[0,2,1,1],[3,3,1,0],[2,3,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[3,3,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,2,0],[2,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,2,0],[1,3,2,1]],[[0,2,1,1],[3,3,1,0],[2,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,3,1,0],[3,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,4,2,1],[0,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,2,1],[0,3,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,2,1],[0,2,3,1]],[[0,2,1,1],[2,3,1,0],[2,3,2,1],[0,2,2,2]],[[0,2,1,1],[3,3,1,0],[2,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,1,0],[3,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,1,0],[2,4,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,2,1],[2,1,2,1]],[[0,2,1,1],[3,3,1,0],[2,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,1,0],[3,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,1,0],[2,4,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,1,0],[2,3,2,2],[0,3,2,0]],[[0,2,1,1],[2,3,1,0],[2,3,2,2],[0,2,3,0]],[[0,2,1,1],[3,3,1,0],[2,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,1,0],[3,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,1,0],[2,4,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,1,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[1,3,1,1],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[1,3,1,1],[1,3,4,1],[0,2,1,0]],[[1,2,2,1],[1,3,1,1],[1,4,3,1],[0,2,1,0]],[[0,2,1,1],[3,3,1,0],[2,3,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,1,0],[3,3,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,4,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,3,0],[0,3,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,3,0],[0,2,3,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,1,0],[3,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,1,0],[2,4,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,3,0],[2,1,2,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,1,0],[3,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,1,0],[2,4,3,1],[0,1,2,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,1,0],[3,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,1,0],[2,4,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,1,0],[2,3,3,1],[0,3,1,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,1,0],[3,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,1,0],[2,4,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,1,0],[2,3,3,1],[2,0,2,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,1,0],[3,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,1,0],[2,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,1,0],[2,3,3,1],[2,1,1,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,1,0],[3,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,1,0],[2,4,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,1,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[1,4,1,1],[1,3,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,1,1],[1,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,1,1],[1,3,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,1,1],[1,3,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,1,1],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,3,1,1],[1,3,3,1],[0,3,0,1]],[[1,2,2,1],[1,3,1,1],[1,3,4,1],[0,2,0,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,1,0],[3,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,1,0],[2,4,3,2],[0,1,1,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,1,0],[3,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,1,0],[2,4,3,2],[0,1,2,0]],[[0,2,1,1],[3,3,1,0],[2,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,1,0],[3,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,1,0],[2,4,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,1,0],[2,3,3,2],[0,3,0,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,1,0],[3,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,1,0],[2,4,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,1,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,3,1,1],[1,4,3,1],[0,2,0,1]],[[1,2,2,1],[1,4,1,1],[1,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,1,1],[1,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,1,1],[1,3,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,1,1],[1,3,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,1,1],[1,3,3,1],[0,2,0,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,1,0],[3,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,1,0],[2,4,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,1,0],[2,3,3,2],[2,0,1,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,1,0],[3,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,1,0],[2,4,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,1,0],[2,3,3,2],[2,0,2,0]],[[0,2,1,1],[3,3,1,0],[2,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,1,0],[3,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,1,0],[2,4,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,1,0],[2,3,3,2],[2,1,0,1]],[[0,2,1,1],[3,3,1,0],[2,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,1,0],[3,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,1,0],[2,4,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,1,0],[2,3,3,2],[2,1,1,0]],[[0,2,1,1],[3,3,1,0],[2,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,3,1,0],[3,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,3,1,0],[2,4,3,2],[1,2,0,0]],[[0,2,1,1],[2,3,1,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,3,1,1],[1,3,3,1],[0,1,3,0]],[[1,2,2,1],[1,3,1,1],[1,3,4,1],[0,1,2,0]],[[1,2,2,1],[1,3,1,1],[1,4,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,1,1],[1,3,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,1,1],[1,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,1,1],[1,3,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,1,1],[1,3,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,1,1],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,3,1,1],[1,3,4,1],[0,1,1,1]],[[1,2,2,1],[1,3,1,1],[1,4,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,1,1],[1,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,1,1],[1,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,1,1],[1,3,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,1,1],[1,3,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,1,1],[1,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,1,1],[1,4,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,1,1],[1,3,2,0],[2,2,2,1]],[[0,2,1,1],[2,3,1,1],[1,3,2,0],[1,3,2,1]],[[0,2,1,1],[2,3,1,1],[1,3,2,0],[1,2,3,1]],[[0,2,1,1],[2,3,1,1],[1,4,2,1],[1,2,2,0]],[[0,2,1,1],[2,3,1,1],[1,3,2,1],[2,2,2,0]],[[0,2,1,1],[2,3,1,1],[1,3,2,1],[1,3,2,0]],[[0,2,1,1],[2,3,1,1],[1,4,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,1,1],[1,3,3,0],[2,2,1,1]],[[0,2,1,1],[2,3,1,1],[1,3,3,0],[1,3,1,1]],[[0,2,1,1],[2,3,1,1],[1,4,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,1,1],[1,3,3,1],[2,2,1,0]],[[0,2,1,1],[2,3,1,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,3,1,1],[1,4,3,0],[1,2,0,1]],[[1,2,2,1],[1,4,1,1],[1,3,3,0],[1,2,0,1]],[[1,2,2,2],[1,3,1,1],[1,3,3,0],[1,2,0,1]],[[1,2,3,1],[1,3,1,1],[1,3,3,0],[1,2,0,1]],[[1,3,2,1],[1,3,1,1],[1,3,3,0],[1,2,0,1]],[[2,2,2,1],[1,3,1,1],[1,3,3,0],[1,2,0,1]],[[1,2,2,1],[1,3,1,1],[1,3,4,0],[1,1,1,1]],[[1,2,2,1],[1,3,1,1],[1,4,3,0],[1,1,1,1]],[[1,2,2,1],[1,4,1,1],[1,3,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,1,1],[1,3,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,1,1],[1,3,3,0],[1,1,1,1]],[[0,2,1,1],[3,3,1,1],[2,2,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,1,1],[3,2,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,1,1],[2,2,2,0],[2,2,2,1]],[[0,2,1,1],[2,3,1,1],[2,2,2,0],[1,3,2,1]],[[0,2,1,1],[2,3,1,1],[2,2,2,0],[1,2,3,1]],[[0,2,1,1],[3,3,1,1],[2,2,2,1],[1,2,2,0]],[[0,2,1,1],[2,3,1,1],[3,2,2,1],[1,2,2,0]],[[0,2,1,1],[2,3,1,1],[2,2,2,1],[2,2,2,0]],[[0,2,1,1],[2,3,1,1],[2,2,2,1],[1,3,2,0]],[[1,3,2,1],[1,3,1,1],[1,3,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,1,1],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[1,3,1,1],[1,3,3,0],[1,0,2,2]],[[1,2,2,1],[1,3,1,1],[1,3,3,0],[1,0,3,1]],[[1,2,2,1],[1,3,1,1],[1,3,4,0],[1,0,2,1]],[[1,2,2,1],[1,3,1,1],[1,4,3,0],[1,0,2,1]],[[0,2,1,1],[3,3,1,1],[2,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,1,1],[3,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,1,1],[2,2,3,0],[2,2,1,1]],[[0,2,1,1],[2,3,1,1],[2,2,3,0],[1,3,1,1]],[[0,2,1,1],[3,3,1,1],[2,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,1,1],[3,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,1,1],[2,2,3,1],[2,2,1,0]],[[0,2,1,1],[2,3,1,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[1,4,1,1],[1,3,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,1,1],[1,3,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,1,1],[1,3,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,1,1],[1,3,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,1,1],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[1,3,1,1],[1,3,3,0],[0,3,1,1]],[[1,2,2,1],[1,3,1,1],[1,3,4,0],[0,2,1,1]],[[1,2,2,1],[1,3,1,1],[1,4,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,1,1],[1,3,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,1,1],[1,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,1,1],[1,3,3,0],[0,2,1,1]],[[0,2,1,1],[3,3,1,1],[2,3,1,0],[1,2,2,1]],[[0,2,1,1],[2,3,1,1],[3,3,1,0],[1,2,2,1]],[[0,2,1,1],[2,3,1,1],[2,3,1,0],[2,2,2,1]],[[0,2,1,1],[2,3,1,1],[2,3,1,0],[1,3,2,1]],[[0,2,1,1],[3,3,1,1],[2,3,1,1],[1,2,2,0]],[[0,2,1,1],[2,3,1,1],[3,3,1,1],[1,2,2,0]],[[0,2,1,1],[2,3,1,1],[2,3,1,1],[2,2,2,0]],[[0,2,1,1],[2,3,1,1],[2,3,1,1],[1,3,2,0]],[[1,3,2,1],[1,3,1,1],[1,3,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,1,1],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,3,1,1],[1,3,3,0],[0,1,2,2]],[[1,2,2,1],[1,3,1,1],[1,3,3,0],[0,1,3,1]],[[1,2,2,1],[1,3,1,1],[1,3,4,0],[0,1,2,1]],[[1,2,2,1],[1,3,1,1],[1,4,3,0],[0,1,2,1]],[[1,2,2,1],[1,4,1,1],[1,3,3,0],[0,1,2,1]],[[0,2,1,1],[3,3,1,1],[2,3,2,0],[0,2,2,1]],[[0,2,1,1],[2,3,1,1],[3,3,2,0],[0,2,2,1]],[[0,2,1,1],[2,3,1,1],[2,4,2,0],[0,2,2,1]],[[0,2,1,1],[2,3,1,1],[2,3,2,0],[0,3,2,1]],[[0,2,1,1],[2,3,1,1],[2,3,2,0],[0,2,3,1]],[[0,2,1,1],[3,3,1,1],[2,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,3,1,1],[3,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,3,1,1],[2,4,2,0],[1,1,2,1]],[[0,2,1,1],[2,3,1,1],[2,3,2,0],[2,1,2,1]],[[0,2,1,1],[3,3,1,1],[2,3,2,1],[0,2,2,0]],[[0,2,1,1],[2,3,1,1],[3,3,2,1],[0,2,2,0]],[[0,2,1,1],[2,3,1,1],[2,4,2,1],[0,2,2,0]],[[0,2,1,1],[2,3,1,1],[2,3,2,1],[0,3,2,0]],[[0,2,1,1],[3,3,1,1],[2,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,3,1,1],[3,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,3,1,1],[2,4,2,1],[1,1,2,0]],[[0,2,1,1],[2,3,1,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,2],[1,3,1,1],[1,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,1,1],[1,3,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,1,1],[1,3,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,1,1],[1,3,3,0],[0,1,2,1]],[[0,2,1,1],[3,3,1,1],[2,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,1,1],[3,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,1,1],[2,4,3,0],[0,1,2,1]],[[0,2,1,1],[3,3,1,1],[2,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,1,1],[3,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,1,1],[2,4,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,1,1],[2,3,3,0],[0,3,1,1]],[[0,2,1,1],[3,3,1,1],[2,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,1,1],[3,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,1,1],[2,4,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,1,1],[2,3,3,0],[2,0,2,1]],[[0,2,1,1],[3,3,1,1],[2,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,1,1],[3,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,1,1],[2,4,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,1,1],[2,3,3,0],[2,1,1,1]],[[0,2,1,1],[3,3,1,1],[2,3,3,0],[1,2,0,1]],[[0,2,1,1],[2,3,1,1],[3,3,3,0],[1,2,0,1]],[[0,2,1,1],[2,3,1,1],[2,4,3,0],[1,2,0,1]],[[0,2,1,1],[2,3,1,1],[2,3,3,0],[2,2,0,1]],[[0,2,1,1],[3,3,1,1],[2,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,1,1],[3,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,1,1],[2,4,3,1],[0,1,2,0]],[[0,2,1,1],[3,3,1,1],[2,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,1,1],[3,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,1,1],[2,4,3,1],[0,2,0,1]],[[0,2,1,1],[3,3,1,1],[2,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,1,1],[3,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,1,1],[2,4,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,1,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[1,3,1,1],[1,4,2,1],[1,1,2,0]],[[1,2,2,1],[1,4,1,1],[1,3,2,1],[1,1,2,0]],[[1,2,2,2],[1,3,1,1],[1,3,2,1],[1,1,2,0]],[[0,2,1,1],[3,3,1,1],[2,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,1,1],[3,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,1,1],[2,4,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,1,1],[2,3,3,1],[2,0,2,0]],[[0,2,1,1],[3,3,1,1],[2,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,1,1],[3,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,1,1],[2,4,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,1,1],[2,3,3,1],[2,1,0,1]],[[0,2,1,1],[3,3,1,1],[2,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,1,1],[3,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,1,1],[2,4,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,1,1],[2,3,3,1],[2,1,1,0]],[[1,2,3,1],[1,3,1,1],[1,3,2,1],[1,1,2,0]],[[1,3,2,1],[1,3,1,1],[1,3,2,1],[1,1,2,0]],[[2,2,2,1],[1,3,1,1],[1,3,2,1],[1,1,2,0]],[[0,2,1,1],[3,3,1,1],[2,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,3,1,1],[3,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,3,1,1],[2,4,3,1],[1,2,0,0]],[[0,2,1,1],[2,3,1,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[1,3,1,1],[1,3,2,1],[0,2,3,0]],[[1,2,2,1],[1,3,1,1],[1,3,2,1],[0,3,2,0]],[[1,2,2,1],[1,3,1,1],[1,4,2,1],[0,2,2,0]],[[1,2,2,1],[1,4,1,1],[1,3,2,1],[0,2,2,0]],[[1,2,2,2],[1,3,1,1],[1,3,2,1],[0,2,2,0]],[[1,2,3,1],[1,3,1,1],[1,3,2,1],[0,2,2,0]],[[1,3,2,1],[1,3,1,1],[1,3,2,1],[0,2,2,0]],[[2,2,2,1],[1,3,1,1],[1,3,2,1],[0,2,2,0]],[[1,2,2,1],[1,3,1,1],[1,4,2,0],[1,1,2,1]],[[1,2,2,1],[1,4,1,1],[1,3,2,0],[1,1,2,1]],[[1,2,2,2],[1,3,1,1],[1,3,2,0],[1,1,2,1]],[[1,2,3,1],[1,3,1,1],[1,3,2,0],[1,1,2,1]],[[1,3,2,1],[1,3,1,1],[1,3,2,0],[1,1,2,1]],[[2,2,2,1],[1,3,1,1],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[1,3,1,1],[1,3,2,0],[0,2,2,2]],[[1,2,2,1],[1,3,1,1],[1,3,2,0],[0,2,3,1]],[[1,2,2,1],[1,3,1,1],[1,3,2,0],[0,3,2,1]],[[1,2,2,1],[1,3,1,1],[1,4,2,0],[0,2,2,1]],[[1,2,2,1],[1,4,1,1],[1,3,2,0],[0,2,2,1]],[[1,2,2,2],[1,3,1,1],[1,3,2,0],[0,2,2,1]],[[1,2,3,1],[1,3,1,1],[1,3,2,0],[0,2,2,1]],[[1,3,2,1],[1,3,1,1],[1,3,2,0],[0,2,2,1]],[[2,2,2,1],[1,3,1,1],[1,3,2,0],[0,2,2,1]],[[1,2,2,1],[1,3,1,1],[1,4,0,2],[1,1,2,1]],[[1,2,2,1],[1,4,1,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,2],[1,3,1,1],[1,3,0,2],[1,1,2,1]],[[1,2,3,1],[1,3,1,1],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[1,3,1,1],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[1,3,1,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[1,3,1,1],[1,3,0,2],[0,2,2,2]],[[1,2,2,1],[1,3,1,1],[1,3,0,2],[0,2,3,1]],[[1,2,2,1],[1,3,1,1],[1,3,0,2],[0,3,2,1]],[[1,2,2,1],[1,3,1,1],[1,3,0,3],[0,2,2,1]],[[1,2,2,1],[1,3,1,1],[1,4,0,2],[0,2,2,1]],[[1,2,2,1],[1,4,1,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[1,3,1,1],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[1,3,1,1],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[1,3,1,1],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[1,3,1,1],[1,3,0,2],[0,2,2,1]],[[0,3,1,1],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,1,2],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,1,1],[3,3,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,4,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,3],[0,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,2],[0,4,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,2],[0,3,0,3],[1,2,2,1]],[[0,2,1,1],[2,3,1,2],[0,3,0,2],[2,2,2,1]],[[0,2,1,1],[2,3,1,2],[0,3,0,2],[1,3,2,1]],[[0,2,1,1],[2,3,1,2],[0,3,0,2],[1,2,3,1]],[[0,2,1,1],[2,3,1,2],[0,3,0,2],[1,2,2,2]],[[1,2,2,1],[1,3,1,1],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[1,3,1,1],[1,2,3,1],[0,3,2,0]],[[1,2,2,1],[1,3,1,1],[1,2,4,1],[0,2,2,0]],[[1,2,2,1],[1,3,1,1],[1,2,3,0],[0,2,2,2]],[[1,2,2,1],[1,3,1,1],[1,2,3,0],[0,2,3,1]],[[1,2,2,1],[1,3,1,1],[1,2,3,0],[0,3,2,1]],[[1,2,2,1],[1,3,1,1],[1,2,4,0],[0,2,2,1]],[[1,2,2,1],[1,3,1,1],[0,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,3,1,1],[0,3,3,1],[2,2,1,0]],[[1,2,2,1],[1,3,1,1],[0,3,4,1],[1,2,1,0]],[[1,2,2,1],[1,3,1,1],[0,4,3,1],[1,2,1,0]],[[1,2,2,1],[1,4,1,1],[0,3,3,1],[1,2,1,0]],[[1,2,2,2],[1,3,1,1],[0,3,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,1,1],[0,3,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,1,1],[0,3,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,1,1],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[1,3,1,1],[0,3,3,1],[1,3,0,1]],[[1,2,2,1],[1,3,1,1],[0,3,3,1],[2,2,0,1]],[[1,2,2,1],[1,3,1,1],[0,3,4,1],[1,2,0,1]],[[1,2,2,1],[1,3,1,1],[0,4,3,1],[1,2,0,1]],[[1,2,2,1],[1,4,1,1],[0,3,3,1],[1,2,0,1]],[[0,3,1,1],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,1,2],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,1,1],[3,3,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,4,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,1,3],[1,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,1,2],[1,4,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,1,2],[1,3,0,3],[0,2,2,1]],[[0,2,1,1],[2,3,1,2],[1,3,0,2],[0,3,2,1]],[[0,2,1,1],[2,3,1,2],[1,3,0,2],[0,2,3,1]],[[0,2,1,1],[2,3,1,2],[1,3,0,2],[0,2,2,2]],[[0,3,1,1],[2,3,1,2],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[3,3,1,2],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,4,1,2],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,1,2],[1,4,0,2],[1,1,2,1]],[[1,2,2,2],[1,3,1,1],[0,3,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,1,1],[0,3,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,1,1],[0,3,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,1,1],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[1,3,1,1],[0,3,3,1],[1,1,3,0]],[[1,2,2,1],[1,3,1,1],[0,3,4,1],[1,1,2,0]],[[1,2,2,1],[1,3,1,1],[0,4,3,1],[1,1,2,0]],[[1,2,2,1],[1,4,1,1],[0,3,3,1],[1,1,2,0]],[[1,2,2,2],[1,3,1,1],[0,3,3,1],[1,1,2,0]],[[1,2,3,1],[1,3,1,1],[0,3,3,1],[1,1,2,0]],[[1,3,2,1],[1,3,1,1],[0,3,3,1],[1,1,2,0]],[[2,2,2,1],[1,3,1,1],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[1,3,1,1],[0,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,3,1,1],[0,4,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,1,1],[0,3,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,1,1],[0,3,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,1,1],[0,3,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,1,1],[0,3,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,1,1],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,3,1,1],[0,3,3,0],[1,3,1,1]],[[1,2,2,1],[1,3,1,1],[0,3,3,0],[2,2,1,1]],[[1,2,2,1],[1,3,1,1],[0,3,4,0],[1,2,1,1]],[[1,2,2,1],[1,3,1,1],[0,4,3,0],[1,2,1,1]],[[1,2,2,1],[1,4,1,1],[0,3,3,0],[1,2,1,1]],[[1,2,2,2],[1,3,1,1],[0,3,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,1,1],[0,3,3,0],[1,2,1,1]],[[1,3,2,1],[1,3,1,1],[0,3,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,1,1],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[1,3,1,1],[0,3,3,0],[1,1,2,2]],[[1,2,2,1],[1,3,1,1],[0,3,3,0],[1,1,3,1]],[[1,2,2,1],[1,3,1,1],[0,3,4,0],[1,1,2,1]],[[1,2,2,1],[1,3,1,1],[0,4,3,0],[1,1,2,1]],[[1,2,2,1],[1,4,1,1],[0,3,3,0],[1,1,2,1]],[[1,2,2,2],[1,3,1,1],[0,3,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,1,1],[0,3,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,1,1],[0,3,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,1,1],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[1,3,1,1],[0,3,2,1],[1,2,3,0]],[[1,2,2,1],[1,3,1,1],[0,3,2,1],[1,3,2,0]],[[1,2,2,1],[1,3,1,1],[0,3,2,1],[2,2,2,0]],[[1,2,2,1],[1,3,1,1],[0,4,2,1],[1,2,2,0]],[[1,2,2,1],[1,4,1,1],[0,3,2,1],[1,2,2,0]],[[1,2,2,2],[1,3,1,1],[0,3,2,1],[1,2,2,0]],[[1,2,3,1],[1,3,1,1],[0,3,2,1],[1,2,2,0]],[[1,3,2,1],[1,3,1,1],[0,3,2,1],[1,2,2,0]],[[2,2,2,1],[1,3,1,1],[0,3,2,1],[1,2,2,0]],[[1,2,2,1],[1,3,1,1],[0,3,2,0],[1,2,2,2]],[[1,2,2,1],[1,3,1,1],[0,3,2,0],[1,2,3,1]],[[1,2,2,1],[1,3,1,1],[0,3,2,0],[1,3,2,1]],[[1,2,2,1],[1,3,1,1],[0,3,2,0],[2,2,2,1]],[[1,2,2,1],[1,3,1,1],[0,4,2,0],[1,2,2,1]],[[1,2,2,1],[1,4,1,1],[0,3,2,0],[1,2,2,1]],[[1,2,2,2],[1,3,1,1],[0,3,2,0],[1,2,2,1]],[[1,2,3,1],[1,3,1,1],[0,3,2,0],[1,2,2,1]],[[1,3,2,1],[1,3,1,1],[0,3,2,0],[1,2,2,1]],[[2,2,2,1],[1,3,1,1],[0,3,2,0],[1,2,2,1]],[[1,2,2,1],[1,3,1,1],[0,3,0,2],[1,2,2,2]],[[1,2,2,1],[1,3,1,1],[0,3,0,2],[1,2,3,1]],[[1,2,2,1],[1,3,1,1],[0,3,0,2],[1,3,2,1]],[[1,2,2,1],[1,3,1,1],[0,3,0,2],[2,2,2,1]],[[1,2,2,1],[1,3,1,1],[0,3,0,3],[1,2,2,1]],[[1,2,2,1],[1,3,1,1],[0,4,0,2],[1,2,2,1]],[[1,2,2,1],[1,4,1,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[1,3,1,1],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[1,3,1,1],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[1,3,1,1],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[1,3,1,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[1,3,1,1],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[1,3,1,1],[0,2,3,1],[1,3,2,0]],[[1,2,2,1],[1,3,1,1],[0,2,3,1],[2,2,2,0]],[[1,2,2,1],[1,3,1,1],[0,2,4,1],[1,2,2,0]],[[1,2,2,1],[1,3,1,1],[0,2,3,0],[1,2,2,2]],[[1,2,2,1],[1,3,1,1],[0,2,3,0],[1,2,3,1]],[[1,2,2,1],[1,3,1,1],[0,2,3,0],[1,3,2,1]],[[1,2,2,1],[1,3,1,1],[0,2,3,0],[2,2,2,1]],[[1,2,2,1],[1,3,1,1],[0,2,4,0],[1,2,2,1]],[[1,2,2,1],[1,4,1,0],[2,3,3,2],[1,0,1,0]],[[1,2,2,2],[1,3,1,0],[2,3,3,2],[1,0,1,0]],[[1,2,3,1],[1,3,1,0],[2,3,3,2],[1,0,1,0]],[[1,3,2,1],[1,3,1,0],[2,3,3,2],[1,0,1,0]],[[2,2,2,1],[1,3,1,0],[2,3,3,2],[1,0,1,0]],[[1,2,2,1],[1,4,1,0],[2,3,3,2],[1,0,0,1]],[[1,2,2,2],[1,3,1,0],[2,3,3,2],[1,0,0,1]],[[1,2,3,1],[1,3,1,0],[2,3,3,2],[1,0,0,1]],[[1,3,2,1],[1,3,1,0],[2,3,3,2],[1,0,0,1]],[[2,2,2,1],[1,3,1,0],[2,3,3,2],[1,0,0,1]],[[0,3,1,1],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,2],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[3,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,4,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,3],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,2],[3,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,2],[2,0,1,3],[1,2,2,1]],[[0,2,1,1],[2,3,1,2],[2,0,1,2],[2,2,2,1]],[[0,2,1,1],[2,3,1,2],[2,0,1,2],[1,3,2,1]],[[0,2,1,1],[2,3,1,2],[2,0,1,2],[1,2,3,1]],[[0,2,1,1],[2,3,1,2],[2,0,1,2],[1,2,2,2]],[[0,3,1,1],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,2],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[3,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,4,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,3],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,2],[3,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,1,2],[2,1,0,3],[1,2,2,1]],[[0,2,1,1],[2,3,1,2],[2,1,0,2],[2,2,2,1]],[[0,2,1,1],[2,3,1,2],[2,1,0,2],[1,3,2,1]],[[0,2,1,1],[2,3,1,2],[2,1,0,2],[1,2,3,1]],[[0,2,1,1],[2,3,1,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[1,4,1,0],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,1,0],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,1,0],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,1,0],[2,3,3,1],[1,0,1,1]],[[0,3,1,1],[2,3,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[3,3,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[2,4,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,1,2],[3,2,0,2],[0,2,2,1]],[[0,3,1,1],[2,3,1,2],[2,2,0,2],[1,1,2,1]],[[0,2,1,1],[3,3,1,2],[2,2,0,2],[1,1,2,1]],[[0,2,1,1],[2,4,1,2],[2,2,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,1,2],[3,2,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,1,2],[2,2,0,2],[2,1,2,1]],[[1,2,2,1],[1,4,1,0],[2,2,3,2],[1,2,0,0]],[[1,2,2,2],[1,3,1,0],[2,2,3,2],[1,2,0,0]],[[1,2,3,1],[1,3,1,0],[2,2,3,2],[1,2,0,0]],[[1,3,2,1],[1,3,1,0],[2,2,3,2],[1,2,0,0]],[[2,2,2,1],[1,3,1,0],[2,2,3,2],[1,2,0,0]],[[1,2,2,1],[1,4,1,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,2],[1,3,1,0],[2,2,3,2],[1,1,1,0]],[[1,2,3,1],[1,3,1,0],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[1,3,1,0],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[1,3,1,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[1,4,1,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,1,0],[2,2,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,1,0],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,1,0],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,1,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,4,1,0],[2,2,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,1,0],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,1,0],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,1,0],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[1,3,1,0],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[1,4,1,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[1,3,1,0],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,1,0],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[1,3,1,0],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[1,3,1,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[1,4,1,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,2],[1,3,1,0],[2,2,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,1,0],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,1,0],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,1,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[1,4,1,0],[2,2,3,2],[0,2,0,1]],[[1,2,2,2],[1,3,1,0],[2,2,3,2],[0,2,0,1]],[[1,2,3,1],[1,3,1,0],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[1,3,1,0],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,1,0],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[1,4,1,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,1,0],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,1,0],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,1,0],[2,2,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,1,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[1,4,1,0],[2,2,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,1,0],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,1,0],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,1,0],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,1,0],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[1,4,1,0],[2,2,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,1,0],[2,2,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,1,0],[2,2,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,1,0],[2,2,3,1],[1,2,0,1]],[[1,2,2,1],[1,4,1,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,1,0],[2,2,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,1,0],[2,2,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,1,0],[2,2,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,1,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,1,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,1,0],[2,2,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,1,0],[2,2,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,1,0],[2,2,3,1],[1,0,2,1]],[[2,2,2,1],[1,3,1,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,1],[1,4,1,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,1,0],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,1,0],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,1,0],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,1,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,1,0],[2,2,3,1],[0,1,2,1]],[[1,2,2,2],[1,3,1,0],[2,2,3,1],[0,1,2,1]],[[1,2,3,1],[1,3,1,0],[2,2,3,1],[0,1,2,1]],[[1,3,2,1],[1,3,1,0],[2,2,3,1],[0,1,2,1]],[[2,2,2,1],[1,3,1,0],[2,2,3,1],[0,1,2,1]],[[1,2,2,1],[1,4,1,0],[2,2,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,1,0],[2,2,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,1,0],[2,2,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,1,0],[2,2,3,0],[1,1,2,1]],[[1,2,2,1],[1,4,1,0],[2,2,3,0],[0,2,2,1]],[[1,2,3,1],[1,3,1,0],[2,2,3,0],[0,2,2,1]],[[1,3,2,1],[1,3,1,0],[2,2,3,0],[0,2,2,1]],[[2,2,2,1],[1,3,1,0],[2,2,3,0],[0,2,2,1]],[[1,2,2,1],[1,4,1,0],[2,2,2,2],[1,1,2,0]],[[1,2,2,2],[1,3,1,0],[2,2,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,1,0],[2,2,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,1,0],[2,2,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,1,0],[2,2,2,2],[1,1,2,0]],[[1,2,2,1],[1,4,1,0],[2,2,2,2],[0,2,2,0]],[[1,2,2,2],[1,3,1,0],[2,2,2,2],[0,2,2,0]],[[1,2,3,1],[1,3,1,0],[2,2,2,2],[0,2,2,0]],[[1,3,2,1],[1,3,1,0],[2,2,2,2],[0,2,2,0]],[[2,2,2,1],[1,3,1,0],[2,2,2,2],[0,2,2,0]],[[1,2,2,1],[1,4,1,0],[2,2,2,1],[1,1,2,1]],[[1,2,2,2],[1,3,1,0],[2,2,2,1],[1,1,2,1]],[[1,2,3,1],[1,3,1,0],[2,2,2,1],[1,1,2,1]],[[1,3,2,1],[1,3,1,0],[2,2,2,1],[1,1,2,1]],[[2,2,2,1],[1,3,1,0],[2,2,2,1],[1,1,2,1]],[[1,2,2,1],[1,4,1,0],[2,2,2,1],[0,2,2,1]],[[1,2,2,2],[1,3,1,0],[2,2,2,1],[0,2,2,1]],[[1,2,3,1],[1,3,1,0],[2,2,2,1],[0,2,2,1]],[[1,3,2,1],[1,3,1,0],[2,2,2,1],[0,2,2,1]],[[2,2,2,1],[1,3,1,0],[2,2,2,1],[0,2,2,1]],[[1,2,2,1],[1,4,1,0],[2,2,1,2],[1,1,2,1]],[[1,2,2,2],[1,3,1,0],[2,2,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,1,0],[2,2,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,1,0],[2,2,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,1,0],[2,2,1,2],[1,1,2,1]],[[1,2,2,1],[1,4,1,0],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,1,0],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,1,0],[2,2,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,1,0],[2,2,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,1,0],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[1,4,1,0],[2,1,3,2],[1,2,1,0]],[[1,2,2,2],[1,3,1,0],[2,1,3,2],[1,2,1,0]],[[1,2,3,1],[1,3,1,0],[2,1,3,2],[1,2,1,0]],[[1,3,2,1],[1,3,1,0],[2,1,3,2],[1,2,1,0]],[[2,2,2,1],[1,3,1,0],[2,1,3,2],[1,2,1,0]],[[1,2,2,1],[1,4,1,0],[2,1,3,2],[1,2,0,1]],[[1,2,2,2],[1,3,1,0],[2,1,3,2],[1,2,0,1]],[[1,2,3,1],[1,3,1,0],[2,1,3,2],[1,2,0,1]],[[1,3,2,1],[1,3,1,0],[2,1,3,2],[1,2,0,1]],[[2,2,2,1],[1,3,1,0],[2,1,3,2],[1,2,0,1]],[[1,2,2,1],[1,4,1,0],[2,1,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,1,0],[2,1,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,1,0],[2,1,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,1,0],[2,1,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,1,0],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[1,4,1,0],[2,1,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,1,0],[2,1,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,1,0],[2,1,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,1,0],[2,1,3,0],[1,2,2,1]],[[1,2,2,1],[1,4,1,0],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,1,0],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,1,0],[2,1,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,1,0],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,1,0],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[1,4,1,0],[2,1,2,1],[1,2,2,1]],[[1,2,2,2],[1,3,1,0],[2,1,2,1],[1,2,2,1]],[[1,2,3,1],[1,3,1,0],[2,1,2,1],[1,2,2,1]],[[1,3,2,1],[1,3,1,0],[2,1,2,1],[1,2,2,1]],[[2,2,2,1],[1,3,1,0],[2,1,2,1],[1,2,2,1]],[[1,2,2,1],[1,4,1,0],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,1,0],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,1,0],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,1,0],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,1,0],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,1,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,3,1,0],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[1,3,1,0],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,3,1,0],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[1,3,1,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,4,1,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,2],[1,3,1,0],[2,0,3,1],[1,2,2,1]],[[1,2,3,1],[1,3,1,0],[2,0,3,1],[1,2,2,1]],[[1,3,2,1],[1,3,1,0],[2,0,3,1],[1,2,2,1]],[[2,2,2,1],[1,3,1,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,1],[1,4,1,0],[2,0,2,2],[1,2,2,1]],[[1,2,2,2],[1,3,1,0],[2,0,2,2],[1,2,2,1]],[[1,2,3,1],[1,3,1,0],[2,0,2,2],[1,2,2,1]],[[1,3,2,1],[1,3,1,0],[2,0,2,2],[1,2,2,1]],[[2,2,2,1],[1,3,1,0],[2,0,2,2],[1,2,2,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[1,4,1,0],[1,3,3,2],[1,2,0,0]],[[1,2,2,2],[1,3,1,0],[1,3,3,2],[1,2,0,0]],[[1,2,3,1],[1,3,1,0],[1,3,3,2],[1,2,0,0]],[[1,3,2,1],[1,3,1,0],[1,3,3,2],[1,2,0,0]],[[2,2,2,1],[1,3,1,0],[1,3,3,2],[1,2,0,0]],[[1,2,2,1],[1,3,1,0],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,3,1,0],[1,3,4,2],[1,1,1,0]],[[1,2,2,1],[1,3,1,0],[1,4,3,2],[1,1,1,0]],[[1,2,2,1],[1,4,1,0],[1,3,3,2],[1,1,1,0]],[[1,2,2,2],[1,3,1,0],[1,3,3,2],[1,1,1,0]],[[1,2,3,1],[1,3,1,0],[1,3,3,2],[1,1,1,0]],[[1,3,2,1],[1,3,1,0],[1,3,3,2],[1,1,1,0]],[[2,2,2,1],[1,3,1,0],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[1,3,1,0],[1,3,3,2],[1,1,0,2]],[[1,2,2,1],[1,3,1,0],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,3,1,0],[1,3,4,2],[1,1,0,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,2],[1,1,0,1]],[[1,2,2,1],[1,4,1,0],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,1,0],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,1,0],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,1,0],[1,3,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,1,0],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[1,3,1,0],[1,3,3,2],[1,0,3,0]],[[1,2,2,1],[1,3,1,0],[1,3,3,3],[1,0,2,0]],[[1,2,2,1],[1,3,1,0],[1,3,4,2],[1,0,2,0]],[[1,2,2,1],[1,3,1,0],[1,4,3,2],[1,0,2,0]],[[1,2,2,1],[1,4,1,0],[1,3,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,1,0],[1,3,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,1,0],[1,3,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,1,0],[1,3,3,2],[1,0,2,0]],[[2,2,2,1],[1,3,1,0],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,3,1,0],[1,3,3,2],[1,0,1,2]],[[1,2,2,1],[1,3,1,0],[1,3,3,3],[1,0,1,1]],[[1,2,2,1],[1,3,1,0],[1,3,4,2],[1,0,1,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,2],[1,0,1,1]],[[1,2,2,1],[1,4,1,0],[1,3,3,2],[1,0,1,1]],[[1,2,2,2],[1,3,1,0],[1,3,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,1,0],[1,3,3,2],[1,0,1,1]],[[1,3,2,1],[1,3,1,0],[1,3,3,2],[1,0,1,1]],[[2,2,2,1],[1,3,1,0],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[1,3,1,0],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,3,1,0],[1,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,3,1,0],[1,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,3,1,0],[1,4,3,2],[0,2,1,0]],[[1,2,2,1],[1,4,1,0],[1,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,3,1,0],[1,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,1,0],[1,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,1,0],[1,3,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,1,0],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,3,1,0],[1,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,3,1,0],[1,3,3,2],[0,3,0,1]],[[1,2,2,1],[1,3,1,0],[1,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,3,1,0],[1,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,2],[0,2,0,1]],[[1,2,2,1],[1,4,1,0],[1,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,3,1,0],[1,3,3,2],[0,2,0,1]],[[1,2,3,1],[1,3,1,0],[1,3,3,2],[0,2,0,1]],[[1,3,2,1],[1,3,1,0],[1,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,1,0],[1,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,3,1,0],[1,3,3,2],[0,1,3,0]],[[1,2,2,1],[1,3,1,0],[1,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,3,1,0],[1,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,3,1,0],[1,4,3,2],[0,1,2,0]],[[1,2,2,1],[1,4,1,0],[1,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,1,0],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,1,0],[1,3,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,1,0],[1,3,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,1,0],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,3,1,0],[1,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,3,1,0],[1,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,3,1,0],[1,3,4,2],[0,1,1,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,2],[0,1,1,1]],[[1,2,2,1],[1,4,1,0],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,1,0],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,1,0],[1,3,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,1,0],[1,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,1,0],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,3,1,0],[1,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,3,1,0],[1,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,3,1,0],[1,3,4,2],[0,0,2,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[1,4,1,0],[1,3,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,1,0],[1,3,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,1,0],[1,3,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,1,0],[1,3,3,1],[1,2,0,1]],[[1,2,2,1],[1,3,1,0],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,1,0],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,1,0],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,1,0],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,1,0],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,1,0],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,3,1,0],[1,3,3,1],[1,0,2,2]],[[1,2,2,1],[1,3,1,0],[1,3,3,1],[1,0,3,1]],[[1,2,2,1],[1,3,1,0],[1,3,4,1],[1,0,2,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,1],[1,0,2,1]],[[1,2,2,1],[1,4,1,0],[1,3,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,1,0],[1,3,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,1,0],[1,3,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,1,0],[1,3,3,1],[1,0,2,1]],[[2,2,2,1],[1,3,1,0],[1,3,3,1],[1,0,2,1]],[[1,2,2,1],[1,3,1,0],[1,3,3,1],[0,3,1,1]],[[1,2,2,1],[1,3,1,0],[1,3,4,1],[0,2,1,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,1,0],[1,3,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,1,0],[1,3,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,1,0],[1,3,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,1,0],[1,3,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,1,0],[1,3,3,1],[0,2,1,1]],[[1,2,2,1],[1,3,1,0],[1,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,3,1,0],[1,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,3,1,0],[1,3,4,1],[0,1,2,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,1],[0,1,2,1]],[[1,2,2,1],[1,4,1,0],[1,3,3,1],[0,1,2,1]],[[1,2,2,2],[1,3,1,0],[1,3,3,1],[0,1,2,1]],[[1,2,3,1],[1,3,1,0],[1,3,3,1],[0,1,2,1]],[[1,3,2,1],[1,3,1,0],[1,3,3,1],[0,1,2,1]],[[2,2,2,1],[1,3,1,0],[1,3,3,1],[0,1,2,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,0],[1,1,2,1]],[[1,2,2,1],[1,4,1,0],[1,3,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,1,0],[1,3,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,1,0],[1,3,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,1,0],[1,3,3,0],[1,1,2,1]],[[1,2,2,1],[1,3,1,0],[1,3,3,0],[0,2,3,1]],[[1,2,2,1],[1,3,1,0],[1,3,3,0],[0,3,2,1]],[[1,2,2,1],[1,3,1,0],[1,4,3,0],[0,2,2,1]],[[1,2,2,1],[1,4,1,0],[1,3,3,0],[0,2,2,1]],[[1,2,3,1],[1,3,1,0],[1,3,3,0],[0,2,2,1]],[[1,3,2,1],[1,3,1,0],[1,3,3,0],[0,2,2,1]],[[2,2,2,1],[1,3,1,0],[1,3,3,0],[0,2,2,1]],[[1,2,2,1],[1,3,1,0],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[1,4,1,0],[1,3,2,2],[1,1,2,0]],[[1,2,2,2],[1,3,1,0],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,1,0],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,2,0],[0,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,2,2,2],[2,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,2,2,2],[1,3,2,1]],[[0,2,1,1],[2,3,2,0],[0,2,2,2],[1,2,3,1]],[[0,2,1,1],[2,3,2,0],[0,2,2,2],[1,2,2,2]],[[0,2,1,1],[2,3,2,0],[0,2,4,1],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,2,3,1],[2,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,2,3,1],[1,3,2,1]],[[0,2,1,1],[2,3,2,0],[0,2,3,1],[1,2,3,1]],[[0,2,1,1],[2,3,2,0],[0,2,3,1],[1,2,2,2]],[[0,2,1,1],[2,3,2,0],[0,2,4,2],[1,2,1,1]],[[0,2,1,1],[2,3,2,0],[0,2,3,3],[1,2,1,1]],[[0,2,1,1],[2,3,2,0],[0,2,3,2],[1,2,1,2]],[[0,2,1,1],[2,3,2,0],[0,2,4,2],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[0,2,3,3],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[0,2,3,2],[2,2,2,0]],[[0,2,1,1],[2,3,2,0],[0,2,3,2],[1,3,2,0]],[[0,2,1,1],[2,3,2,0],[0,2,3,2],[1,2,3,0]],[[0,3,1,1],[2,3,2,0],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[3,3,2,0],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,4,2,0],[0,3,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,4,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,1,3],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,1,2],[2,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,1,2],[1,3,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,1,2],[1,2,3,1]],[[0,2,1,1],[2,3,2,0],[0,3,1,2],[1,2,2,2]],[[0,3,1,1],[2,3,2,0],[0,3,2,1],[1,2,2,1]],[[0,2,1,1],[3,3,2,0],[0,3,2,1],[1,2,2,1]],[[0,2,1,1],[2,4,2,0],[0,3,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,4,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,2,1],[2,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,2,1],[1,3,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,2,1],[1,2,3,1]],[[0,2,1,1],[2,3,2,0],[0,3,2,1],[1,2,2,2]],[[0,2,1,1],[2,3,2,0],[0,3,2,3],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,2,2],[1,1,3,1]],[[0,2,1,1],[2,3,2,0],[0,3,2,2],[1,1,2,2]],[[0,3,1,1],[2,3,2,0],[0,3,2,2],[1,2,2,0]],[[0,2,1,1],[3,3,2,0],[0,3,2,2],[1,2,2,0]],[[0,2,1,1],[2,4,2,0],[0,3,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[0,4,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[0,3,2,2],[2,2,2,0]],[[0,2,1,1],[2,3,2,0],[0,3,2,2],[1,3,2,0]],[[0,2,1,1],[2,3,2,0],[0,3,2,2],[1,2,3,0]],[[0,3,1,1],[2,3,2,0],[0,3,3,0],[1,2,2,1]],[[0,2,1,1],[3,3,2,0],[0,3,3,0],[1,2,2,1]],[[0,2,1,1],[2,4,2,0],[0,3,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,4,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,0],[2,2,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,0],[1,3,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,0],[1,2,3,1]],[[0,3,1,1],[2,3,2,0],[0,3,3,1],[1,1,2,1]],[[0,2,1,1],[3,3,2,0],[0,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,4,2,0],[0,3,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[0,4,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,4,1],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,1],[1,1,3,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,1],[1,1,2,2]],[[0,3,1,1],[2,3,2,0],[0,3,3,1],[1,2,1,1]],[[0,2,1,1],[3,3,2,0],[0,3,3,1],[1,2,1,1]],[[0,2,1,1],[2,4,2,0],[0,3,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,2,0],[0,4,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,2,0],[0,3,4,1],[1,2,1,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,1],[2,2,1,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,1],[1,3,1,1]],[[0,2,1,1],[2,3,2,0],[0,3,4,2],[1,0,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,3],[1,0,2,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,2],[1,0,2,2]],[[0,3,1,1],[2,3,2,0],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[3,3,2,0],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,4,2,0],[0,3,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,2,0],[0,4,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,2,0],[0,3,4,2],[1,1,1,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,3],[1,1,1,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,2],[1,1,1,2]],[[0,3,1,1],[2,3,2,0],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[3,3,2,0],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,4,2,0],[0,3,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,2,0],[0,4,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,2,0],[0,3,4,2],[1,1,2,0]],[[0,2,1,1],[2,3,2,0],[0,3,3,3],[1,1,2,0]],[[0,2,1,1],[2,3,2,0],[0,3,3,2],[1,1,3,0]],[[0,3,1,1],[2,3,2,0],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[3,3,2,0],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,4,2,0],[0,3,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,2,0],[0,4,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,2,0],[0,3,4,2],[1,2,0,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,3],[1,2,0,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,2],[2,2,0,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,2],[1,3,0,1]],[[0,2,1,1],[2,3,2,0],[0,3,3,2],[1,2,0,2]],[[0,3,1,1],[2,3,2,0],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[3,3,2,0],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,4,2,0],[0,3,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,2,0],[0,4,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,2,0],[0,3,4,2],[1,2,1,0]],[[0,2,1,1],[2,3,2,0],[0,3,3,3],[1,2,1,0]],[[0,2,1,1],[2,3,2,0],[0,3,3,2],[2,2,1,0]],[[0,2,1,1],[2,3,2,0],[0,3,3,2],[1,3,1,0]],[[1,3,2,1],[1,3,1,0],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,1,0],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,3,1,0],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[1,3,1,0],[1,3,2,2],[1,0,3,1]],[[1,2,2,1],[1,3,1,0],[1,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,3,2,0],[1,2,2,3],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[1,2,2,2],[0,3,2,1]],[[0,2,1,1],[2,3,2,0],[1,2,2,2],[0,2,3,1]],[[0,2,1,1],[2,3,2,0],[1,2,2,2],[0,2,2,2]],[[0,2,1,1],[2,3,2,0],[1,2,4,1],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[1,2,3,1],[0,3,2,1]],[[0,2,1,1],[2,3,2,0],[1,2,3,1],[0,2,3,1]],[[0,2,1,1],[2,3,2,0],[1,2,3,1],[0,2,2,2]],[[0,2,1,1],[2,3,2,0],[1,2,4,2],[0,2,1,1]],[[0,2,1,1],[2,3,2,0],[1,2,3,3],[0,2,1,1]],[[0,2,1,1],[2,3,2,0],[1,2,3,2],[0,2,1,2]],[[0,2,1,1],[2,3,2,0],[1,2,4,2],[0,2,2,0]],[[0,2,1,1],[2,3,2,0],[1,2,3,3],[0,2,2,0]],[[0,2,1,1],[2,3,2,0],[1,2,3,2],[0,3,2,0]],[[0,2,1,1],[2,3,2,0],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,3,1,0],[1,3,2,2],[0,2,3,0]],[[0,3,1,1],[2,3,2,0],[1,3,1,2],[0,2,2,1]],[[0,2,1,1],[3,3,2,0],[1,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,4,2,0],[1,3,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[1,4,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,1,3],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,1,2],[0,3,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,1,2],[0,2,3,1]],[[0,2,1,1],[2,3,2,0],[1,3,1,2],[0,2,2,2]],[[0,3,1,1],[2,3,2,0],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[3,3,2,0],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,4,2,0],[1,3,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[1,4,1,2],[1,1,2,1]],[[0,3,1,1],[2,3,2,0],[1,3,2,1],[0,2,2,1]],[[0,2,1,1],[3,3,2,0],[1,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,4,2,0],[1,3,2,1],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[1,4,2,1],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,2,1],[0,3,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,2,1],[0,2,3,1]],[[0,2,1,1],[2,3,2,0],[1,3,2,1],[0,2,2,2]],[[0,3,1,1],[2,3,2,0],[1,3,2,1],[1,1,2,1]],[[0,2,1,1],[3,3,2,0],[1,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,4,2,0],[1,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[1,4,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,3,2,0],[1,3,2,2],[0,1,2,2]],[[0,3,1,1],[2,3,2,0],[1,3,2,2],[0,2,2,0]],[[0,2,1,1],[3,3,2,0],[1,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,4,2,0],[1,3,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,2,0],[1,4,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,2,0],[1,3,2,2],[0,3,2,0]],[[0,2,1,1],[2,3,2,0],[1,3,2,2],[0,2,3,0]],[[0,2,1,1],[2,3,2,0],[1,3,2,3],[1,0,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,2,2],[1,0,3,1]],[[0,2,1,1],[2,3,2,0],[1,3,2,2],[1,0,2,2]],[[0,3,1,1],[2,3,2,0],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[3,3,2,0],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,4,2,0],[1,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,2,0],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[1,3,1,0],[1,3,2,2],[0,3,2,0]],[[1,2,2,1],[1,3,1,0],[1,4,2,2],[0,2,2,0]],[[1,2,2,1],[1,4,1,0],[1,3,2,2],[0,2,2,0]],[[1,2,2,2],[1,3,1,0],[1,3,2,2],[0,2,2,0]],[[1,2,3,1],[1,3,1,0],[1,3,2,2],[0,2,2,0]],[[1,3,2,1],[1,3,1,0],[1,3,2,2],[0,2,2,0]],[[2,2,2,1],[1,3,1,0],[1,3,2,2],[0,2,2,0]],[[1,2,2,1],[1,3,1,0],[1,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,3,1,0],[1,3,2,2],[0,1,3,1]],[[0,3,1,1],[2,3,2,0],[1,3,3,0],[0,2,2,1]],[[0,2,1,1],[3,3,2,0],[1,3,3,0],[0,2,2,1]],[[0,2,1,1],[2,4,2,0],[1,3,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[1,4,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,0],[0,3,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,0],[0,2,3,1]],[[0,3,1,1],[2,3,2,0],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[3,3,2,0],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,4,2,0],[1,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[1,4,3,0],[1,1,2,1]],[[0,3,1,1],[2,3,2,0],[1,3,3,1],[0,1,2,1]],[[0,2,1,1],[3,3,2,0],[1,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,4,2,0],[1,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,2,0],[1,4,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,1],[0,1,2,2]],[[0,3,1,1],[2,3,2,0],[1,3,3,1],[0,2,1,1]],[[0,2,1,1],[3,3,2,0],[1,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,4,2,0],[1,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,2,0],[1,4,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,2,0],[1,3,4,1],[0,2,1,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,1],[0,3,1,1]],[[0,3,1,1],[2,3,2,0],[1,3,3,1],[1,0,2,1]],[[0,2,1,1],[3,3,2,0],[1,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,4,2,0],[1,3,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,2,0],[1,4,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,4,1],[1,0,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,1],[1,0,3,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,1],[1,0,2,2]],[[0,3,1,1],[2,3,2,0],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[3,3,2,0],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,4,2,0],[1,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,2,0],[1,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,2,0],[1,3,4,1],[1,1,1,1]],[[0,3,1,1],[2,3,2,0],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[3,3,2,0],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,4,2,0],[1,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,2,0],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[1,3,1,0],[1,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,2],[0,0,2,2]],[[0,3,1,1],[2,3,2,0],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[3,3,2,0],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,4,2,0],[1,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,2,0],[1,4,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,2,0],[1,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,2],[0,1,1,2]],[[0,3,1,1],[2,3,2,0],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[3,3,2,0],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,4,2,0],[1,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,2,0],[1,4,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,2,0],[1,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,3,2,0],[1,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,3,2,0],[1,3,3,2],[0,1,3,0]],[[0,3,1,1],[2,3,2,0],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[3,3,2,0],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,4,2,0],[1,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,2,0],[1,4,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,2,0],[1,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,2],[0,3,0,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,2],[0,2,0,2]],[[0,3,1,1],[2,3,2,0],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[3,3,2,0],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,4,2,0],[1,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,2,0],[1,4,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,2,0],[1,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,3,2,0],[1,3,3,3],[0,2,1,0]],[[0,2,1,1],[2,3,2,0],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,3,1,0],[1,4,2,1],[1,1,2,1]],[[1,2,2,1],[1,4,1,0],[1,3,2,1],[1,1,2,1]],[[1,2,2,2],[1,3,1,0],[1,3,2,1],[1,1,2,1]],[[1,2,3,1],[1,3,1,0],[1,3,2,1],[1,1,2,1]],[[1,3,2,1],[1,3,1,0],[1,3,2,1],[1,1,2,1]],[[2,2,2,1],[1,3,1,0],[1,3,2,1],[1,1,2,1]],[[1,2,2,1],[1,3,1,0],[1,3,2,1],[0,2,2,2]],[[0,3,1,1],[2,3,2,0],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[3,3,2,0],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,4,2,0],[1,3,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,2,0],[1,4,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,2,0],[1,3,4,2],[1,0,1,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,3],[1,0,1,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,2],[1,0,1,2]],[[0,3,1,1],[2,3,2,0],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[3,3,2,0],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,4,2,0],[1,3,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,2,0],[1,4,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,2,0],[1,3,4,2],[1,0,2,0]],[[0,2,1,1],[2,3,2,0],[1,3,3,3],[1,0,2,0]],[[0,2,1,1],[2,3,2,0],[1,3,3,2],[1,0,3,0]],[[0,3,1,1],[2,3,2,0],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[3,3,2,0],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,4,2,0],[1,3,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,2,0],[1,4,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,2,0],[1,3,4,2],[1,1,0,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,3],[1,1,0,1]],[[0,2,1,1],[2,3,2,0],[1,3,3,2],[1,1,0,2]],[[0,3,1,1],[2,3,2,0],[1,3,3,2],[1,1,1,0]],[[0,2,1,1],[3,3,2,0],[1,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,4,2,0],[1,3,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,2,0],[1,4,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,2,0],[1,3,4,2],[1,1,1,0]],[[0,2,1,1],[2,3,2,0],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,3,1,0],[1,3,2,1],[0,2,3,1]],[[1,2,2,1],[1,3,1,0],[1,3,2,1],[0,3,2,1]],[[1,2,2,1],[1,3,1,0],[1,4,2,1],[0,2,2,1]],[[1,2,2,1],[1,4,1,0],[1,3,2,1],[0,2,2,1]],[[1,2,2,2],[1,3,1,0],[1,3,2,1],[0,2,2,1]],[[1,2,3,1],[1,3,1,0],[1,3,2,1],[0,2,2,1]],[[1,3,2,1],[1,3,1,0],[1,3,2,1],[0,2,2,1]],[[2,2,2,1],[1,3,1,0],[1,3,2,1],[0,2,2,1]],[[0,3,1,1],[2,3,2,0],[1,3,3,2],[1,2,0,0]],[[0,2,1,1],[3,3,2,0],[1,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,4,2,0],[1,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,3,2,0],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[1,3,1,0],[1,4,1,2],[1,1,2,1]],[[1,2,2,1],[1,4,1,0],[1,3,1,2],[1,1,2,1]],[[1,2,2,2],[1,3,1,0],[1,3,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,1,0],[1,3,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,1,0],[1,3,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,1,0],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[1,3,1,0],[1,3,1,2],[0,2,2,2]],[[1,2,2,1],[1,3,1,0],[1,3,1,2],[0,2,3,1]],[[1,2,2,1],[1,3,1,0],[1,3,1,2],[0,3,2,1]],[[1,2,2,1],[1,3,1,0],[1,3,1,3],[0,2,2,1]],[[1,2,2,1],[1,3,1,0],[1,4,1,2],[0,2,2,1]],[[1,2,2,1],[1,4,1,0],[1,3,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,1,0],[1,3,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,1,0],[1,3,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,1,0],[1,3,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,1,0],[1,3,1,2],[0,2,2,1]],[[0,3,1,1],[2,3,2,0],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[3,3,2,0],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,4,2,0],[2,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[3,0,2,2],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,0,2,3],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,0,2,2],[2,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,0,2,2],[1,3,2,1]],[[0,2,1,1],[2,3,2,0],[2,0,2,2],[1,2,3,1]],[[0,2,1,1],[2,3,2,0],[2,0,2,2],[1,2,2,2]],[[0,3,1,1],[2,3,2,0],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[3,3,2,0],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,4,2,0],[2,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[3,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,0,4,1],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,0,3,1],[2,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,0,3,1],[1,3,2,1]],[[0,2,1,1],[2,3,2,0],[2,0,3,1],[1,2,3,1]],[[0,2,1,1],[2,3,2,0],[2,0,3,1],[1,2,2,2]],[[0,2,1,1],[2,3,2,0],[2,0,4,2],[1,2,1,1]],[[0,2,1,1],[2,3,2,0],[2,0,3,3],[1,2,1,1]],[[0,2,1,1],[2,3,2,0],[2,0,3,2],[1,2,1,2]],[[0,3,1,1],[2,3,2,0],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[3,3,2,0],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,4,2,0],[2,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[3,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[2,0,4,2],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[2,0,3,3],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[2,0,3,2],[2,2,2,0]],[[0,2,1,1],[2,3,2,0],[2,0,3,2],[1,3,2,0]],[[0,2,1,1],[2,3,2,0],[2,0,3,2],[1,2,3,0]],[[0,3,1,1],[2,3,2,0],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[3,3,2,0],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,4,2,0],[2,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[3,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,1,1,3],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,1,1,2],[2,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,1,1,2],[1,3,2,1]],[[0,2,1,1],[2,3,2,0],[2,1,1,2],[1,2,3,1]],[[0,2,1,1],[2,3,2,0],[2,1,1,2],[1,2,2,2]],[[0,3,1,1],[2,3,2,0],[2,1,2,1],[1,2,2,1]],[[0,2,1,1],[3,3,2,0],[2,1,2,1],[1,2,2,1]],[[0,2,1,1],[2,4,2,0],[2,1,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[3,1,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,1,2,1],[2,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,1,2,1],[1,3,2,1]],[[0,2,1,1],[2,3,2,0],[2,1,2,1],[1,2,3,1]],[[0,2,1,1],[2,3,2,0],[2,1,2,1],[1,2,2,2]],[[0,3,1,1],[2,3,2,0],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[3,3,2,0],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,4,2,0],[2,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[3,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[2,1,2,2],[2,2,2,0]],[[0,2,1,1],[2,3,2,0],[2,1,2,2],[1,3,2,0]],[[0,2,1,1],[2,3,2,0],[2,1,2,2],[1,2,3,0]],[[0,3,1,1],[2,3,2,0],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[3,3,2,0],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,4,2,0],[2,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[3,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,1,3,0],[2,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,1,3,0],[1,3,2,1]],[[0,2,1,1],[2,3,2,0],[2,1,3,0],[1,2,3,1]],[[0,3,1,1],[2,3,2,0],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[3,3,2,0],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,4,2,0],[2,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,2,0],[3,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,2,0],[2,1,3,1],[2,2,1,1]],[[0,2,1,1],[2,3,2,0],[2,1,3,1],[1,3,1,1]],[[0,3,1,1],[2,3,2,0],[2,1,3,2],[1,2,0,1]],[[0,2,1,1],[3,3,2,0],[2,1,3,2],[1,2,0,1]],[[0,2,1,1],[2,4,2,0],[2,1,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,2,0],[3,1,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,2,0],[2,1,3,2],[2,2,0,1]],[[0,2,1,1],[2,3,2,0],[2,1,3,2],[1,3,0,1]],[[0,3,1,1],[2,3,2,0],[2,1,3,2],[1,2,1,0]],[[0,2,1,1],[3,3,2,0],[2,1,3,2],[1,2,1,0]],[[0,2,1,1],[2,4,2,0],[2,1,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,2,0],[3,1,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,2,0],[2,1,3,2],[2,2,1,0]],[[0,2,1,1],[2,3,2,0],[2,1,3,2],[1,3,1,0]],[[0,3,1,1],[2,3,2,0],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[3,3,2,0],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[2,4,2,0],[2,2,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[3,2,1,2],[0,2,2,1]],[[0,3,1,1],[2,3,2,0],[2,2,1,2],[1,1,2,1]],[[0,2,1,1],[3,3,2,0],[2,2,1,2],[1,1,2,1]],[[0,2,1,1],[2,4,2,0],[2,2,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[3,2,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[2,2,1,2],[2,1,2,1]],[[0,3,1,1],[2,3,2,0],[2,2,2,1],[0,2,2,1]],[[0,2,1,1],[3,3,2,0],[2,2,2,1],[0,2,2,1]],[[0,2,1,1],[2,4,2,0],[2,2,2,1],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[3,2,2,1],[0,2,2,1]],[[0,3,1,1],[2,3,2,0],[2,2,2,1],[1,1,2,1]],[[0,2,1,1],[3,3,2,0],[2,2,2,1],[1,1,2,1]],[[0,2,1,1],[2,4,2,0],[2,2,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[3,2,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[2,2,2,1],[2,1,2,1]],[[0,3,1,1],[2,3,2,0],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[3,3,2,0],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[2,4,2,0],[2,2,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,2,0],[3,2,2,2],[0,2,2,0]],[[0,3,1,1],[2,3,2,0],[2,2,2,2],[1,1,2,0]],[[0,2,1,1],[3,3,2,0],[2,2,2,2],[1,1,2,0]],[[0,2,1,1],[2,4,2,0],[2,2,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,2,0],[3,2,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,2,0],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[1,3,1,0],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,3,1,0],[1,2,3,2],[0,3,2,0]],[[1,2,2,1],[1,3,1,0],[1,2,3,3],[0,2,2,0]],[[1,2,2,1],[1,3,1,0],[1,2,4,2],[0,2,2,0]],[[1,2,2,1],[1,3,1,0],[1,2,3,2],[0,2,1,2]],[[1,2,2,1],[1,3,1,0],[1,2,3,3],[0,2,1,1]],[[1,2,2,1],[1,3,1,0],[1,2,4,2],[0,2,1,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[3,3,2,0],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[2,4,2,0],[2,2,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,2,0],[3,2,3,0],[0,2,2,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,0],[1,1,2,1]],[[0,2,1,1],[3,3,2,0],[2,2,3,0],[1,1,2,1]],[[0,2,1,1],[2,4,2,0],[2,2,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[3,2,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,2,0],[2,2,3,0],[2,1,2,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,1],[0,1,2,1]],[[0,2,1,1],[3,3,2,0],[2,2,3,1],[0,1,2,1]],[[0,2,1,1],[2,4,2,0],[2,2,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,2,0],[3,2,3,1],[0,1,2,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[3,3,2,0],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,4,2,0],[2,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,2,0],[3,2,3,1],[0,2,1,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,1],[1,0,2,1]],[[0,2,1,1],[3,3,2,0],[2,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,4,2,0],[2,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,2,0],[3,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,2,0],[2,2,3,1],[2,0,2,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,1],[1,1,1,1]],[[0,2,1,1],[3,3,2,0],[2,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,4,2,0],[2,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,2,0],[3,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,2,0],[2,2,3,1],[2,1,1,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,1],[1,2,0,1]],[[0,2,1,1],[3,3,2,0],[2,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,4,2,0],[2,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,2,0],[3,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,2,0],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[1,3,1,0],[1,2,3,1],[0,2,2,2]],[[1,2,2,1],[1,3,1,0],[1,2,3,1],[0,2,3,1]],[[1,2,2,1],[1,3,1,0],[1,2,3,1],[0,3,2,1]],[[1,2,2,1],[1,3,1,0],[1,2,4,1],[0,2,2,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[3,3,2,0],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,4,2,0],[2,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,2,0],[3,2,3,2],[0,1,1,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[3,3,2,0],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,4,2,0],[2,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,2,0],[3,2,3,2],[0,1,2,0]],[[0,3,1,1],[2,3,2,0],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[3,3,2,0],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[2,4,2,0],[2,2,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,2,0],[3,2,3,2],[0,2,0,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[3,3,2,0],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[2,4,2,0],[2,2,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,2,0],[3,2,3,2],[0,2,1,0]],[[1,2,2,1],[1,3,1,0],[1,2,2,2],[0,2,2,2]],[[1,2,2,1],[1,3,1,0],[1,2,2,2],[0,2,3,1]],[[1,2,2,1],[1,3,1,0],[1,2,2,2],[0,3,2,1]],[[1,2,2,1],[1,3,1,0],[1,2,2,3],[0,2,2,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[3,3,2,0],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,4,2,0],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,2,0],[3,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,2,0],[2,2,3,2],[2,0,1,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[3,3,2,0],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,4,2,0],[2,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,2,0],[3,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,2,0],[2,2,3,2],[2,0,2,0]],[[0,3,1,1],[2,3,2,0],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[3,3,2,0],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,4,2,0],[2,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,2,0],[3,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,2,0],[2,2,3,2],[2,1,0,1]],[[0,3,1,1],[2,3,2,0],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[3,3,2,0],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,4,2,0],[2,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,2,0],[3,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,2,0],[2,2,3,2],[2,1,1,0]],[[0,3,1,1],[2,3,2,0],[2,2,3,2],[1,2,0,0]],[[0,2,1,1],[3,3,2,0],[2,2,3,2],[1,2,0,0]],[[0,2,1,1],[2,4,2,0],[2,2,3,2],[1,2,0,0]],[[0,2,1,1],[2,3,2,0],[3,2,3,2],[1,2,0,0]],[[0,2,1,1],[2,3,2,0],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[1,3,1,0],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,3,1,0],[0,3,3,2],[2,2,1,0]],[[1,2,2,1],[1,3,1,0],[0,3,3,3],[1,2,1,0]],[[1,2,2,1],[1,3,1,0],[0,3,4,2],[1,2,1,0]],[[1,2,2,1],[1,3,1,0],[0,4,3,2],[1,2,1,0]],[[1,2,2,1],[1,4,1,0],[0,3,3,2],[1,2,1,0]],[[1,2,2,2],[1,3,1,0],[0,3,3,2],[1,2,1,0]],[[1,2,3,1],[1,3,1,0],[0,3,3,2],[1,2,1,0]],[[1,3,2,1],[1,3,1,0],[0,3,3,2],[1,2,1,0]],[[2,2,2,1],[1,3,1,0],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[1,3,1,0],[0,3,3,2],[1,2,0,2]],[[0,2,1,1],[3,3,2,0],[2,3,0,1],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[3,3,0,1],[1,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,3,0,1],[2,2,2,1]],[[0,2,1,1],[2,3,2,0],[2,3,0,1],[1,3,2,1]],[[0,2,1,1],[3,3,2,0],[2,3,0,2],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[3,3,0,2],[1,2,2,0]],[[0,2,1,1],[2,3,2,0],[2,3,0,2],[2,2,2,0]],[[0,2,1,1],[2,3,2,0],[2,3,0,2],[1,3,2,0]],[[1,2,2,1],[1,3,1,0],[0,3,3,2],[1,3,0,1]],[[1,2,2,1],[1,3,1,0],[0,3,3,2],[2,2,0,1]],[[1,2,2,1],[1,3,1,0],[0,3,3,3],[1,2,0,1]],[[1,2,2,1],[1,3,1,0],[0,3,4,2],[1,2,0,1]],[[1,2,2,1],[1,3,1,0],[0,4,3,2],[1,2,0,1]],[[1,2,2,1],[1,4,1,0],[0,3,3,2],[1,2,0,1]],[[1,2,2,2],[1,3,1,0],[0,3,3,2],[1,2,0,1]],[[1,2,3,1],[1,3,1,0],[0,3,3,2],[1,2,0,1]],[[1,3,2,1],[1,3,1,0],[0,3,3,2],[1,2,0,1]],[[2,2,2,1],[1,3,1,0],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[1,3,1,0],[0,3,3,2],[1,1,3,0]],[[1,2,2,1],[1,3,1,0],[0,3,3,3],[1,1,2,0]],[[1,2,2,1],[1,3,1,0],[0,3,4,2],[1,1,2,0]],[[1,2,2,1],[1,3,1,0],[0,4,3,2],[1,1,2,0]],[[1,2,2,1],[1,4,1,0],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[1,3,1,0],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[1,3,1,0],[0,3,3,2],[1,1,2,0]],[[1,3,2,1],[1,3,1,0],[0,3,3,2],[1,1,2,0]],[[2,2,2,1],[1,3,1,0],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[1,3,1,0],[0,3,3,2],[1,1,1,2]],[[1,2,2,1],[1,3,1,0],[0,3,3,3],[1,1,1,1]],[[1,2,2,1],[1,3,1,0],[0,3,4,2],[1,1,1,1]],[[1,2,2,1],[1,3,1,0],[0,4,3,2],[1,1,1,1]],[[1,2,2,1],[1,4,1,0],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[1,3,1,0],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[1,3,1,0],[0,3,3,2],[1,1,1,1]],[[1,3,2,1],[1,3,1,0],[0,3,3,2],[1,1,1,1]],[[2,2,2,1],[1,3,1,0],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[1,3,1,0],[0,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,3,1,0],[0,3,3,3],[1,0,2,1]],[[1,2,2,1],[1,3,1,0],[0,3,4,2],[1,0,2,1]],[[1,2,2,1],[1,3,1,0],[0,3,3,1],[1,3,1,1]],[[1,2,2,1],[1,3,1,0],[0,3,3,1],[2,2,1,1]],[[1,2,2,1],[1,3,1,0],[0,3,4,1],[1,2,1,1]],[[1,2,2,1],[1,3,1,0],[0,4,3,1],[1,2,1,1]],[[1,2,2,1],[1,4,1,0],[0,3,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,1,0],[0,3,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,1,0],[0,3,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,1,0],[0,3,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,1,0],[0,3,3,1],[1,2,1,1]],[[1,2,2,1],[1,3,1,0],[0,3,3,1],[1,1,2,2]],[[1,2,2,1],[1,3,1,0],[0,3,3,1],[1,1,3,1]],[[1,2,2,1],[1,3,1,0],[0,3,4,1],[1,1,2,1]],[[1,2,2,1],[1,3,1,0],[0,4,3,1],[1,1,2,1]],[[1,2,2,1],[1,4,1,0],[0,3,3,1],[1,1,2,1]],[[1,2,2,2],[1,3,1,0],[0,3,3,1],[1,1,2,1]],[[1,2,3,1],[1,3,1,0],[0,3,3,1],[1,1,2,1]],[[1,3,2,1],[1,3,1,0],[0,3,3,1],[1,1,2,1]],[[2,2,2,1],[1,3,1,0],[0,3,3,1],[1,1,2,1]],[[1,2,2,1],[1,3,1,0],[0,3,3,0],[1,2,3,1]],[[1,2,2,1],[1,3,1,0],[0,3,3,0],[1,3,2,1]],[[0,3,1,1],[2,3,2,0],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[3,3,2,0],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,4,2,0],[2,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,2,0],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[1,3,1,0],[0,3,3,0],[2,2,2,1]],[[1,2,2,1],[1,3,1,0],[0,4,3,0],[1,2,2,1]],[[1,2,2,1],[1,4,1,0],[0,3,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,1,0],[0,3,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,1,0],[0,3,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,1,0],[0,3,3,0],[1,2,2,1]],[[1,2,2,1],[1,3,1,0],[0,3,2,2],[1,2,3,0]],[[1,2,2,1],[1,3,1,0],[0,3,2,2],[1,3,2,0]],[[1,2,2,1],[1,3,1,0],[0,3,2,2],[2,2,2,0]],[[1,2,2,1],[1,3,1,0],[0,4,2,2],[1,2,2,0]],[[1,2,2,1],[1,4,1,0],[0,3,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,1,0],[0,3,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,1,0],[0,3,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,1,0],[0,3,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,1,0],[0,3,2,2],[1,2,2,0]],[[1,2,2,1],[1,3,1,0],[0,3,2,2],[1,1,2,2]],[[1,2,2,1],[1,3,1,0],[0,3,2,2],[1,1,3,1]],[[1,2,2,1],[1,3,1,0],[0,3,2,3],[1,1,2,1]],[[1,2,2,1],[1,3,1,0],[0,3,2,1],[1,2,2,2]],[[1,2,2,1],[1,3,1,0],[0,3,2,1],[1,2,3,1]],[[1,2,2,1],[1,3,1,0],[0,3,2,1],[1,3,2,1]],[[1,2,2,1],[1,3,1,0],[0,3,2,1],[2,2,2,1]],[[1,2,2,1],[1,3,1,0],[0,4,2,1],[1,2,2,1]],[[1,2,2,1],[1,4,1,0],[0,3,2,1],[1,2,2,1]],[[1,2,2,2],[1,3,1,0],[0,3,2,1],[1,2,2,1]],[[1,2,3,1],[1,3,1,0],[0,3,2,1],[1,2,2,1]],[[1,3,2,1],[1,3,1,0],[0,3,2,1],[1,2,2,1]],[[2,2,2,1],[1,3,1,0],[0,3,2,1],[1,2,2,1]],[[1,2,2,1],[1,3,1,0],[0,3,1,2],[1,2,2,2]],[[1,2,2,1],[1,3,1,0],[0,3,1,2],[1,2,3,1]],[[1,2,2,1],[1,3,1,0],[0,3,1,2],[1,3,2,1]],[[1,2,2,1],[1,3,1,0],[0,3,1,2],[2,2,2,1]],[[1,2,2,1],[1,3,1,0],[0,3,1,3],[1,2,2,1]],[[1,2,2,1],[1,3,1,0],[0,4,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,1,0],[0,3,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,1,0],[0,3,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,1,0],[0,3,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,1,0],[0,3,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,1,0],[0,3,1,2],[1,2,2,1]],[[1,2,2,1],[1,3,1,0],[0,2,3,2],[1,2,3,0]],[[1,2,2,1],[1,3,1,0],[0,2,3,2],[1,3,2,0]],[[1,2,2,1],[1,3,1,0],[0,2,3,2],[2,2,2,0]],[[1,2,2,1],[1,3,1,0],[0,2,3,3],[1,2,2,0]],[[1,2,2,1],[1,3,1,0],[0,2,4,2],[1,2,2,0]],[[1,2,2,1],[1,3,1,0],[0,2,3,2],[1,2,1,2]],[[1,2,2,1],[1,3,1,0],[0,2,3,3],[1,2,1,1]],[[1,2,2,1],[1,3,1,0],[0,2,4,2],[1,2,1,1]],[[0,3,1,1],[2,3,2,0],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[3,3,2,0],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[2,4,2,0],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,2,0],[3,3,3,2],[1,0,0,1]],[[0,3,1,1],[2,3,2,0],[2,3,3,2],[1,0,1,0]],[[0,2,1,1],[3,3,2,0],[2,3,3,2],[1,0,1,0]],[[0,2,1,1],[2,4,2,0],[2,3,3,2],[1,0,1,0]],[[0,2,1,1],[2,3,2,0],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[1,3,1,0],[0,2,3,1],[1,2,2,2]],[[1,2,2,1],[1,3,1,0],[0,2,3,1],[1,2,3,1]],[[1,2,2,1],[1,3,1,0],[0,2,3,1],[1,3,2,1]],[[1,2,2,1],[1,3,1,0],[0,2,3,1],[2,2,2,1]],[[1,2,2,1],[1,3,1,0],[0,2,4,1],[1,2,2,1]],[[1,2,2,1],[1,3,1,0],[0,2,2,2],[1,2,2,2]],[[1,2,2,1],[1,3,1,0],[0,2,2,2],[1,2,3,1]],[[1,2,2,1],[1,3,1,0],[0,2,2,2],[1,3,2,1]],[[1,2,2,1],[1,3,1,0],[0,2,2,2],[2,2,2,1]],[[1,2,2,1],[1,3,1,0],[0,2,2,3],[1,2,2,1]],[[0,2,1,1],[2,3,2,1],[0,2,4,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,1],[0,2,3,0],[2,2,2,1]],[[0,2,1,1],[2,3,2,1],[0,2,3,0],[1,3,2,1]],[[0,2,1,1],[2,3,2,1],[0,2,3,0],[1,2,3,1]],[[0,2,1,1],[2,3,2,1],[0,2,3,0],[1,2,2,2]],[[0,2,1,1],[2,3,2,1],[0,2,4,1],[1,2,2,0]],[[0,2,1,1],[2,3,2,1],[0,2,3,1],[2,2,2,0]],[[0,2,1,1],[2,3,2,1],[0,2,3,1],[1,3,2,0]],[[0,2,1,1],[2,3,2,1],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[1,3,0,3],[2,3,3,1],[1,0,1,0]],[[1,2,2,1],[1,4,0,2],[2,3,3,1],[1,0,1,0]],[[1,2,2,2],[1,3,0,2],[2,3,3,1],[1,0,1,0]],[[1,2,3,1],[1,3,0,2],[2,3,3,1],[1,0,1,0]],[[0,3,1,1],[2,3,2,1],[0,3,2,0],[1,2,2,1]],[[0,2,1,1],[3,3,2,1],[0,3,2,0],[1,2,2,1]],[[0,2,1,1],[2,4,2,1],[0,3,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,1],[0,4,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,1],[0,3,2,0],[2,2,2,1]],[[0,2,1,1],[2,3,2,1],[0,3,2,0],[1,3,2,1]],[[0,2,1,1],[2,3,2,1],[0,3,2,0],[1,2,3,1]],[[0,2,1,1],[2,3,2,1],[0,3,2,0],[1,2,2,2]],[[0,3,1,1],[2,3,2,1],[0,3,2,1],[1,2,2,0]],[[0,2,1,1],[3,3,2,1],[0,3,2,1],[1,2,2,0]],[[0,2,1,1],[2,4,2,1],[0,3,2,1],[1,2,2,0]],[[0,2,1,1],[2,3,2,1],[0,4,2,1],[1,2,2,0]],[[0,2,1,1],[2,3,2,1],[0,3,2,1],[2,2,2,0]],[[0,2,1,1],[2,3,2,1],[0,3,2,1],[1,3,2,0]],[[0,2,1,1],[2,3,2,1],[0,3,2,1],[1,2,3,0]],[[1,3,2,1],[1,3,0,2],[2,3,3,1],[1,0,1,0]],[[2,2,2,1],[1,3,0,2],[2,3,3,1],[1,0,1,0]],[[1,2,2,1],[1,3,0,3],[2,3,3,1],[1,0,0,1]],[[1,2,2,1],[1,4,0,2],[2,3,3,1],[1,0,0,1]],[[1,2,2,2],[1,3,0,2],[2,3,3,1],[1,0,0,1]],[[1,2,3,1],[1,3,0,2],[2,3,3,1],[1,0,0,1]],[[1,3,2,1],[1,3,0,2],[2,3,3,1],[1,0,0,1]],[[2,2,2,1],[1,3,0,2],[2,3,3,1],[1,0,0,1]],[[0,3,1,1],[2,3,2,1],[0,3,3,0],[1,1,2,1]],[[0,2,1,1],[3,3,2,1],[0,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,4,2,1],[0,3,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,2,1],[0,4,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,2,1],[0,3,4,0],[1,1,2,1]],[[0,2,1,1],[2,3,2,1],[0,3,3,0],[1,1,3,1]],[[0,2,1,1],[2,3,2,1],[0,3,3,0],[1,1,2,2]],[[0,3,1,1],[2,3,2,1],[0,3,3,0],[1,2,1,1]],[[0,2,1,1],[3,3,2,1],[0,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,4,2,1],[0,3,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,2,1],[0,4,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,2,1],[0,3,4,0],[1,2,1,1]],[[0,2,1,1],[2,3,2,1],[0,3,3,0],[2,2,1,1]],[[0,2,1,1],[2,3,2,1],[0,3,3,0],[1,3,1,1]],[[0,3,1,1],[2,3,2,1],[0,3,3,1],[1,1,1,1]],[[0,2,1,1],[3,3,2,1],[0,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,4,2,1],[0,3,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,2,1],[0,4,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,2,1],[0,3,4,1],[1,1,1,1]],[[0,3,1,1],[2,3,2,1],[0,3,3,1],[1,1,2,0]],[[0,2,1,1],[3,3,2,1],[0,3,3,1],[1,1,2,0]],[[0,2,1,1],[2,4,2,1],[0,3,3,1],[1,1,2,0]],[[0,2,1,1],[2,3,2,1],[0,4,3,1],[1,1,2,0]],[[0,2,1,1],[2,3,2,1],[0,3,4,1],[1,1,2,0]],[[0,2,1,1],[2,3,2,1],[0,3,3,1],[1,1,3,0]],[[0,3,1,1],[2,3,2,1],[0,3,3,1],[1,2,0,1]],[[0,2,1,1],[3,3,2,1],[0,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,4,2,1],[0,3,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,2,1],[0,4,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,2,1],[0,3,4,1],[1,2,0,1]],[[0,2,1,1],[2,3,2,1],[0,3,3,1],[2,2,0,1]],[[0,2,1,1],[2,3,2,1],[0,3,3,1],[1,3,0,1]],[[0,3,1,1],[2,3,2,1],[0,3,3,1],[1,2,1,0]],[[0,2,1,1],[3,3,2,1],[0,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,4,2,1],[0,3,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,2,1],[0,4,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,2,1],[0,3,4,1],[1,2,1,0]],[[0,2,1,1],[2,3,2,1],[0,3,3,1],[2,2,1,0]],[[0,2,1,1],[2,3,2,1],[0,3,3,1],[1,3,1,0]],[[0,2,1,1],[2,3,2,1],[1,2,4,0],[0,2,2,1]],[[0,2,1,1],[2,3,2,1],[1,2,3,0],[0,3,2,1]],[[0,2,1,1],[2,3,2,1],[1,2,3,0],[0,2,3,1]],[[0,2,1,1],[2,3,2,1],[1,2,3,0],[0,2,2,2]],[[0,2,1,1],[2,3,2,1],[1,2,4,1],[0,2,2,0]],[[0,2,1,1],[2,3,2,1],[1,2,3,1],[0,3,2,0]],[[0,2,1,1],[2,3,2,1],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[1,4,0,2],[2,3,3,0],[1,0,1,1]],[[1,2,2,2],[1,3,0,2],[2,3,3,0],[1,0,1,1]],[[1,2,3,1],[1,3,0,2],[2,3,3,0],[1,0,1,1]],[[1,3,2,1],[1,3,0,2],[2,3,3,0],[1,0,1,1]],[[2,2,2,1],[1,3,0,2],[2,3,3,0],[1,0,1,1]],[[0,3,1,1],[2,3,2,1],[1,3,2,0],[0,2,2,1]],[[0,2,1,1],[3,3,2,1],[1,3,2,0],[0,2,2,1]],[[0,2,1,1],[2,4,2,1],[1,3,2,0],[0,2,2,1]],[[0,2,1,1],[2,3,2,1],[1,4,2,0],[0,2,2,1]],[[0,2,1,1],[2,3,2,1],[1,3,2,0],[0,3,2,1]],[[0,2,1,1],[2,3,2,1],[1,3,2,0],[0,2,3,1]],[[0,2,1,1],[2,3,2,1],[1,3,2,0],[0,2,2,2]],[[0,3,1,1],[2,3,2,1],[1,3,2,0],[1,1,2,1]],[[0,2,1,1],[3,3,2,1],[1,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,4,2,1],[1,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,3,2,1],[1,4,2,0],[1,1,2,1]],[[0,3,1,1],[2,3,2,1],[1,3,2,1],[0,2,2,0]],[[0,2,1,1],[3,3,2,1],[1,3,2,1],[0,2,2,0]],[[0,2,1,1],[2,4,2,1],[1,3,2,1],[0,2,2,0]],[[0,2,1,1],[2,3,2,1],[1,4,2,1],[0,2,2,0]],[[0,2,1,1],[2,3,2,1],[1,3,2,1],[0,3,2,0]],[[0,2,1,1],[2,3,2,1],[1,3,2,1],[0,2,3,0]],[[0,3,1,1],[2,3,2,1],[1,3,2,1],[1,1,2,0]],[[0,2,1,1],[3,3,2,1],[1,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,4,2,1],[1,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,3,2,1],[1,4,2,1],[1,1,2,0]],[[0,3,1,1],[2,3,2,1],[1,3,3,0],[0,1,2,1]],[[0,2,1,1],[3,3,2,1],[1,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,4,2,1],[1,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,2,1],[1,4,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,2,1],[1,3,4,0],[0,1,2,1]],[[0,2,1,1],[2,3,2,1],[1,3,3,0],[0,1,3,1]],[[0,2,1,1],[2,3,2,1],[1,3,3,0],[0,1,2,2]],[[0,3,1,1],[2,3,2,1],[1,3,3,0],[0,2,1,1]],[[0,2,1,1],[3,3,2,1],[1,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,4,2,1],[1,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,2,1],[1,4,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,2,1],[1,3,4,0],[0,2,1,1]],[[0,2,1,1],[2,3,2,1],[1,3,3,0],[0,3,1,1]],[[0,3,1,1],[2,3,2,1],[1,3,3,0],[1,0,2,1]],[[0,2,1,1],[3,3,2,1],[1,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,4,2,1],[1,3,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,2,1],[1,4,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,2,1],[1,3,4,0],[1,0,2,1]],[[0,2,1,1],[2,3,2,1],[1,3,3,0],[1,0,3,1]],[[0,2,1,1],[2,3,2,1],[1,3,3,0],[1,0,2,2]],[[0,3,1,1],[2,3,2,1],[1,3,3,0],[1,1,1,1]],[[0,2,1,1],[3,3,2,1],[1,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,4,2,1],[1,3,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,2,1],[1,4,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,2,1],[1,3,4,0],[1,1,1,1]],[[0,3,1,1],[2,3,2,1],[1,3,3,0],[1,2,0,1]],[[0,2,1,1],[3,3,2,1],[1,3,3,0],[1,2,0,1]],[[0,2,1,1],[2,4,2,1],[1,3,3,0],[1,2,0,1]],[[0,2,1,1],[2,3,2,1],[1,4,3,0],[1,2,0,1]],[[0,3,1,1],[2,3,2,1],[1,3,3,1],[0,1,1,1]],[[0,2,1,1],[3,3,2,1],[1,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,4,2,1],[1,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,2,1],[1,4,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,2,1],[1,3,4,1],[0,1,1,1]],[[0,3,1,1],[2,3,2,1],[1,3,3,1],[0,1,2,0]],[[0,2,1,1],[3,3,2,1],[1,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,4,2,1],[1,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,2,1],[1,4,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,2,1],[1,3,4,1],[0,1,2,0]],[[0,2,1,1],[2,3,2,1],[1,3,3,1],[0,1,3,0]],[[0,3,1,1],[2,3,2,1],[1,3,3,1],[0,2,0,1]],[[0,2,1,1],[3,3,2,1],[1,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,4,2,1],[1,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,2,1],[1,4,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,2,1],[1,3,4,1],[0,2,0,1]],[[0,2,1,1],[2,3,2,1],[1,3,3,1],[0,3,0,1]],[[0,3,1,1],[2,3,2,1],[1,3,3,1],[0,2,1,0]],[[0,2,1,1],[3,3,2,1],[1,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,4,2,1],[1,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,2,1],[1,4,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,2,1],[1,3,4,1],[0,2,1,0]],[[0,2,1,1],[2,3,2,1],[1,3,3,1],[0,3,1,0]],[[0,3,1,1],[2,3,2,1],[1,3,3,1],[1,0,1,1]],[[0,2,1,1],[3,3,2,1],[1,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,4,2,1],[1,3,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,2,1],[1,4,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,2,1],[1,3,4,1],[1,0,1,1]],[[0,3,1,1],[2,3,2,1],[1,3,3,1],[1,0,2,0]],[[0,2,1,1],[3,3,2,1],[1,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,4,2,1],[1,3,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,2,1],[1,4,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,2,1],[1,3,4,1],[1,0,2,0]],[[0,2,1,1],[2,3,2,1],[1,3,3,1],[1,0,3,0]],[[0,3,1,1],[2,3,2,1],[1,3,3,1],[1,1,0,1]],[[0,2,1,1],[3,3,2,1],[1,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,4,2,1],[1,3,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,2,1],[1,4,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,2,1],[1,3,4,1],[1,1,0,1]],[[0,3,1,1],[2,3,2,1],[1,3,3,1],[1,1,1,0]],[[0,2,1,1],[3,3,2,1],[1,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,4,2,1],[1,3,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,2,1],[1,4,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,2,1],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[1,3,0,3],[2,3,2,2],[1,0,1,0]],[[0,3,1,1],[2,3,2,1],[1,3,3,1],[1,2,0,0]],[[0,2,1,1],[3,3,2,1],[1,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,4,2,1],[1,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,3,2,1],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[1,4,0,2],[2,3,2,2],[1,0,1,0]],[[1,2,2,2],[1,3,0,2],[2,3,2,2],[1,0,1,0]],[[1,2,3,1],[1,3,0,2],[2,3,2,2],[1,0,1,0]],[[1,3,2,1],[1,3,0,2],[2,3,2,2],[1,0,1,0]],[[2,2,2,1],[1,3,0,2],[2,3,2,2],[1,0,1,0]],[[1,2,2,1],[1,3,0,2],[2,3,2,3],[1,0,0,1]],[[1,2,2,1],[1,3,0,3],[2,3,2,2],[1,0,0,1]],[[1,2,2,1],[1,4,0,2],[2,3,2,2],[1,0,0,1]],[[1,2,2,2],[1,3,0,2],[2,3,2,2],[1,0,0,1]],[[1,2,3,1],[1,3,0,2],[2,3,2,2],[1,0,0,1]],[[1,3,2,1],[1,3,0,2],[2,3,2,2],[1,0,0,1]],[[2,2,2,1],[1,3,0,2],[2,3,2,2],[1,0,0,1]],[[0,3,1,1],[2,3,2,1],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[3,3,2,1],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,4,2,1],[2,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,1],[3,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,1],[2,0,4,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,1],[2,0,3,0],[2,2,2,1]],[[0,2,1,1],[2,3,2,1],[2,0,3,0],[1,3,2,1]],[[0,2,1,1],[2,3,2,1],[2,0,3,0],[1,2,3,1]],[[0,2,1,1],[2,3,2,1],[2,0,3,0],[1,2,2,2]],[[0,3,1,1],[2,3,2,1],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[3,3,2,1],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,4,2,1],[2,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,3,2,1],[3,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,3,2,1],[2,0,4,1],[1,2,2,0]],[[0,2,1,1],[2,3,2,1],[2,0,3,1],[2,2,2,0]],[[0,2,1,1],[2,3,2,1],[2,0,3,1],[1,3,2,0]],[[0,2,1,1],[2,3,2,1],[2,0,3,1],[1,2,3,0]],[[0,3,1,1],[2,3,2,1],[2,1,2,0],[1,2,2,1]],[[0,2,1,1],[3,3,2,1],[2,1,2,0],[1,2,2,1]],[[0,2,1,1],[2,4,2,1],[2,1,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,1],[3,1,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,1],[2,1,2,0],[2,2,2,1]],[[0,2,1,1],[2,3,2,1],[2,1,2,0],[1,3,2,1]],[[0,2,1,1],[2,3,2,1],[2,1,2,0],[1,2,3,1]],[[0,2,1,1],[2,3,2,1],[2,1,2,0],[1,2,2,2]],[[0,3,1,1],[2,3,2,1],[2,1,2,1],[1,2,2,0]],[[0,2,1,1],[3,3,2,1],[2,1,2,1],[1,2,2,0]],[[0,2,1,1],[2,4,2,1],[2,1,2,1],[1,2,2,0]],[[0,2,1,1],[2,3,2,1],[3,1,2,1],[1,2,2,0]],[[0,2,1,1],[2,3,2,1],[2,1,2,1],[2,2,2,0]],[[0,2,1,1],[2,3,2,1],[2,1,2,1],[1,3,2,0]],[[0,2,1,1],[2,3,2,1],[2,1,2,1],[1,2,3,0]],[[0,3,1,1],[2,3,2,1],[2,1,3,0],[1,2,1,1]],[[0,2,1,1],[3,3,2,1],[2,1,3,0],[1,2,1,1]],[[0,2,1,1],[2,4,2,1],[2,1,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,2,1],[3,1,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,2,1],[2,1,3,0],[2,2,1,1]],[[0,2,1,1],[2,3,2,1],[2,1,3,0],[1,3,1,1]],[[0,3,1,1],[2,3,2,1],[2,1,3,1],[1,2,0,1]],[[0,2,1,1],[3,3,2,1],[2,1,3,1],[1,2,0,1]],[[0,2,1,1],[2,4,2,1],[2,1,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,2,1],[3,1,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,2,1],[2,1,3,1],[2,2,0,1]],[[0,2,1,1],[2,3,2,1],[2,1,3,1],[1,3,0,1]],[[0,3,1,1],[2,3,2,1],[2,1,3,1],[1,2,1,0]],[[0,2,1,1],[3,3,2,1],[2,1,3,1],[1,2,1,0]],[[0,2,1,1],[2,4,2,1],[2,1,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,2,1],[3,1,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,2,1],[2,1,3,1],[2,2,1,0]],[[0,2,1,1],[2,3,2,1],[2,1,3,1],[1,3,1,0]],[[0,3,1,1],[2,3,2,1],[2,2,2,0],[0,2,2,1]],[[0,2,1,1],[3,3,2,1],[2,2,2,0],[0,2,2,1]],[[0,2,1,1],[2,4,2,1],[2,2,2,0],[0,2,2,1]],[[0,2,1,1],[2,3,2,1],[3,2,2,0],[0,2,2,1]],[[0,3,1,1],[2,3,2,1],[2,2,2,0],[1,1,2,1]],[[0,2,1,1],[3,3,2,1],[2,2,2,0],[1,1,2,1]],[[0,2,1,1],[2,4,2,1],[2,2,2,0],[1,1,2,1]],[[0,2,1,1],[2,3,2,1],[3,2,2,0],[1,1,2,1]],[[0,2,1,1],[2,3,2,1],[2,2,2,0],[2,1,2,1]],[[0,3,1,1],[2,3,2,1],[2,2,2,1],[0,2,2,0]],[[0,2,1,1],[3,3,2,1],[2,2,2,1],[0,2,2,0]],[[0,2,1,1],[2,4,2,1],[2,2,2,1],[0,2,2,0]],[[0,2,1,1],[2,3,2,1],[3,2,2,1],[0,2,2,0]],[[0,3,1,1],[2,3,2,1],[2,2,2,1],[1,1,2,0]],[[0,2,1,1],[3,3,2,1],[2,2,2,1],[1,1,2,0]],[[0,2,1,1],[2,4,2,1],[2,2,2,1],[1,1,2,0]],[[0,2,1,1],[2,3,2,1],[3,2,2,1],[1,1,2,0]],[[0,2,1,1],[2,3,2,1],[2,2,2,1],[2,1,2,0]],[[0,3,1,1],[2,3,2,1],[2,2,3,0],[0,1,2,1]],[[0,2,1,1],[3,3,2,1],[2,2,3,0],[0,1,2,1]],[[0,2,1,1],[2,4,2,1],[2,2,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,2,1],[3,2,3,0],[0,1,2,1]],[[0,3,1,1],[2,3,2,1],[2,2,3,0],[0,2,1,1]],[[0,2,1,1],[3,3,2,1],[2,2,3,0],[0,2,1,1]],[[0,2,1,1],[2,4,2,1],[2,2,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,2,1],[3,2,3,0],[0,2,1,1]],[[0,3,1,1],[2,3,2,1],[2,2,3,0],[1,0,2,1]],[[0,2,1,1],[3,3,2,1],[2,2,3,0],[1,0,2,1]],[[0,2,1,1],[2,4,2,1],[2,2,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,2,1],[3,2,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,2,1],[2,2,3,0],[2,0,2,1]],[[0,3,1,1],[2,3,2,1],[2,2,3,0],[1,1,1,1]],[[0,2,1,1],[3,3,2,1],[2,2,3,0],[1,1,1,1]],[[0,2,1,1],[2,4,2,1],[2,2,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,2,1],[3,2,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,2,1],[2,2,3,0],[2,1,1,1]],[[0,3,1,1],[2,3,2,1],[2,2,3,0],[1,2,0,1]],[[0,2,1,1],[3,3,2,1],[2,2,3,0],[1,2,0,1]],[[0,2,1,1],[2,4,2,1],[2,2,3,0],[1,2,0,1]],[[0,2,1,1],[2,3,2,1],[3,2,3,0],[1,2,0,1]],[[0,2,1,1],[2,3,2,1],[2,2,3,0],[2,2,0,1]],[[0,3,1,1],[2,3,2,1],[2,2,3,1],[0,1,1,1]],[[0,2,1,1],[3,3,2,1],[2,2,3,1],[0,1,1,1]],[[0,2,1,1],[2,4,2,1],[2,2,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,2,1],[3,2,3,1],[0,1,1,1]],[[0,3,1,1],[2,3,2,1],[2,2,3,1],[0,1,2,0]],[[0,2,1,1],[3,3,2,1],[2,2,3,1],[0,1,2,0]],[[0,2,1,1],[2,4,2,1],[2,2,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,2,1],[3,2,3,1],[0,1,2,0]],[[0,3,1,1],[2,3,2,1],[2,2,3,1],[0,2,0,1]],[[0,2,1,1],[3,3,2,1],[2,2,3,1],[0,2,0,1]],[[0,2,1,1],[2,4,2,1],[2,2,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,2,1],[3,2,3,1],[0,2,0,1]],[[0,3,1,1],[2,3,2,1],[2,2,3,1],[0,2,1,0]],[[0,2,1,1],[3,3,2,1],[2,2,3,1],[0,2,1,0]],[[0,2,1,1],[2,4,2,1],[2,2,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,2,1],[3,2,3,1],[0,2,1,0]],[[0,3,1,1],[2,3,2,1],[2,2,3,1],[1,0,1,1]],[[0,2,1,1],[3,3,2,1],[2,2,3,1],[1,0,1,1]],[[0,2,1,1],[2,4,2,1],[2,2,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,2,1],[3,2,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,2,1],[2,2,3,1],[2,0,1,1]],[[0,3,1,1],[2,3,2,1],[2,2,3,1],[1,0,2,0]],[[0,2,1,1],[3,3,2,1],[2,2,3,1],[1,0,2,0]],[[0,2,1,1],[2,4,2,1],[2,2,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,2,1],[3,2,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,2,1],[2,2,3,1],[2,0,2,0]],[[0,3,1,1],[2,3,2,1],[2,2,3,1],[1,1,0,1]],[[0,2,1,1],[3,3,2,1],[2,2,3,1],[1,1,0,1]],[[0,2,1,1],[2,4,2,1],[2,2,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,2,1],[3,2,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,2,1],[2,2,3,1],[2,1,0,1]],[[0,3,1,1],[2,3,2,1],[2,2,3,1],[1,1,1,0]],[[0,2,1,1],[3,3,2,1],[2,2,3,1],[1,1,1,0]],[[0,2,1,1],[2,4,2,1],[2,2,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,2,1],[3,2,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,2,1],[2,2,3,1],[2,1,1,0]],[[0,3,1,1],[2,3,2,1],[2,2,3,1],[1,2,0,0]],[[0,2,1,1],[3,3,2,1],[2,2,3,1],[1,2,0,0]],[[0,2,1,1],[2,4,2,1],[2,2,3,1],[1,2,0,0]],[[0,2,1,1],[2,3,2,1],[3,2,3,1],[1,2,0,0]],[[0,2,1,1],[2,3,2,1],[2,2,3,1],[2,2,0,0]],[[1,2,2,1],[1,3,0,3],[2,2,3,1],[1,2,0,0]],[[1,2,2,1],[1,4,0,2],[2,2,3,1],[1,2,0,0]],[[1,2,2,2],[1,3,0,2],[2,2,3,1],[1,2,0,0]],[[1,2,3,1],[1,3,0,2],[2,2,3,1],[1,2,0,0]],[[1,3,2,1],[1,3,0,2],[2,2,3,1],[1,2,0,0]],[[2,2,2,1],[1,3,0,2],[2,2,3,1],[1,2,0,0]],[[1,2,2,1],[1,3,0,3],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[1,4,0,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,0,2],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,0,2],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,0,2],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,0,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[1,3,0,3],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[1,4,0,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,0,2],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,0,2],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,0,2],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,0,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[1,3,0,3],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[1,4,0,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,0,2],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,0,2],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,0,2],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,0,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[1,3,0,3],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[1,4,0,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,2],[1,3,0,2],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,0,2],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,0,2],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,0,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[1,3,0,3],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,0,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,0,2],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,0,2],[2,2,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,0,2],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,0,2],[2,2,3,1],[0,2,1,0]],[[0,2,1,1],[3,3,2,1],[2,3,0,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,1],[3,3,0,0],[1,2,2,1]],[[0,2,1,1],[2,3,2,1],[2,3,0,0],[2,2,2,1]],[[0,2,1,1],[2,3,2,1],[2,3,0,0],[1,3,2,1]],[[0,2,1,1],[3,3,2,1],[2,3,0,1],[1,2,2,0]],[[0,2,1,1],[2,3,2,1],[3,3,0,1],[1,2,2,0]],[[0,2,1,1],[2,3,2,1],[2,3,0,1],[2,2,2,0]],[[0,2,1,1],[2,3,2,1],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[1,3,0,3],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[1,4,0,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,0,2],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,0,2],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,0,2],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,0,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[1,3,0,3],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,0,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,0,2],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,0,2],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,0,2],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,0,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[1,3,0,3],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,0,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,0,2],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,0,2],[2,2,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,0,2],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,0,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,0,2],[2,2,3,0],[1,2,0,1]],[[1,2,2,2],[1,3,0,2],[2,2,3,0],[1,2,0,1]],[[1,2,3,1],[1,3,0,2],[2,2,3,0],[1,2,0,1]],[[1,3,2,1],[1,3,0,2],[2,2,3,0],[1,2,0,1]],[[2,2,2,1],[1,3,0,2],[2,2,3,0],[1,2,0,1]],[[1,2,2,1],[1,3,0,3],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[1,4,0,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,0,2],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,0,2],[2,2,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,0,2],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,0,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[1,3,0,3],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[1,4,0,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,0,2],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,0,2],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,0,2],[2,2,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,0,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[1,3,0,3],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,0,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,0,2],[2,2,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,0,2],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,0,2],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,0,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[1,3,0,3],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[1,4,0,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,0,2],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,0,2],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,0,2],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,0,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[1,3,0,3],[2,2,2,2],[1,2,0,0]],[[1,2,2,1],[1,4,0,2],[2,2,2,2],[1,2,0,0]],[[1,2,2,2],[1,3,0,2],[2,2,2,2],[1,2,0,0]],[[1,2,3,1],[1,3,0,2],[2,2,2,2],[1,2,0,0]],[[1,3,2,1],[1,3,0,2],[2,2,2,2],[1,2,0,0]],[[2,2,2,1],[1,3,0,2],[2,2,2,2],[1,2,0,0]],[[1,2,2,1],[1,3,0,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,1],[1,3,0,3],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,4,0,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,0,2],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,0,2],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[1,3,0,2],[2,2,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,0,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,3,0,2],[2,2,2,2],[1,1,0,2]],[[1,2,2,1],[1,3,0,2],[2,2,2,3],[1,1,0,1]],[[1,2,2,1],[1,3,0,3],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[1,4,0,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,0,2],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,0,2],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,0,2],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[1,3,0,2],[2,2,2,2],[1,1,0,1]],[[0,3,1,1],[2,3,2,1],[2,3,3,0],[1,0,1,1]],[[0,2,1,1],[3,3,2,1],[2,3,3,0],[1,0,1,1]],[[0,2,1,1],[2,4,2,1],[2,3,3,0],[1,0,1,1]],[[0,2,1,1],[2,3,2,1],[3,3,3,0],[1,0,1,1]],[[1,2,2,1],[1,3,0,2],[2,2,2,3],[1,0,2,0]],[[1,2,2,1],[1,3,0,3],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[1,4,0,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,0,2],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,0,2],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,0,2],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[1,3,0,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[1,3,0,2],[2,2,2,2],[1,0,1,2]],[[1,2,2,1],[1,3,0,2],[2,2,2,3],[1,0,1,1]],[[1,2,2,1],[1,3,0,3],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[1,4,0,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,0,2],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,0,2],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,0,2],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,0,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[1,3,0,2],[2,2,2,3],[0,2,1,0]],[[1,2,2,1],[1,3,0,3],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[1,4,0,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,0,2],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,0,2],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,0,2],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,0,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,2],[2,2,2,2],[0,2,0,2]],[[1,2,2,1],[1,3,0,2],[2,2,2,3],[0,2,0,1]],[[1,2,2,1],[1,3,0,3],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[1,4,0,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,0,2],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,0,2],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,0,2],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,0,2],[2,2,2,2],[0,2,0,1]],[[0,3,1,1],[2,3,2,1],[2,3,3,1],[1,0,0,1]],[[0,2,1,1],[3,3,2,1],[2,3,3,1],[1,0,0,1]],[[0,2,1,1],[2,4,2,1],[2,3,3,1],[1,0,0,1]],[[0,2,1,1],[2,3,2,1],[3,3,3,1],[1,0,0,1]],[[0,3,1,1],[2,3,2,1],[2,3,3,1],[1,0,1,0]],[[0,2,1,1],[3,3,2,1],[2,3,3,1],[1,0,1,0]],[[0,2,1,1],[2,4,2,1],[2,3,3,1],[1,0,1,0]],[[0,2,1,1],[2,3,2,1],[3,3,3,1],[1,0,1,0]],[[1,2,2,1],[1,3,0,2],[2,2,2,3],[0,1,2,0]],[[1,2,2,1],[1,3,0,3],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[1,4,0,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,0,2],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,0,2],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,0,2],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,0,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[1,3,0,2],[2,2,2,2],[0,1,1,2]],[[1,2,2,1],[1,3,0,2],[2,2,2,3],[0,1,1,1]],[[1,2,2,1],[1,3,0,3],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[1,4,0,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,0,2],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,0,2],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,0,2],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,0,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,0,3],[2,2,2,1],[1,1,2,0]],[[1,2,2,1],[1,4,0,2],[2,2,2,1],[1,1,2,0]],[[1,2,2,2],[1,3,0,2],[2,2,2,1],[1,1,2,0]],[[1,2,3,1],[1,3,0,2],[2,2,2,1],[1,1,2,0]],[[1,3,2,1],[1,3,0,2],[2,2,2,1],[1,1,2,0]],[[2,2,2,1],[1,3,0,2],[2,2,2,1],[1,1,2,0]],[[1,2,2,1],[1,3,0,3],[2,2,2,1],[0,2,2,0]],[[1,2,2,1],[1,4,0,2],[2,2,2,1],[0,2,2,0]],[[1,2,2,2],[1,3,0,2],[2,2,2,1],[0,2,2,0]],[[1,2,3,1],[1,3,0,2],[2,2,2,1],[0,2,2,0]],[[1,3,2,1],[1,3,0,2],[2,2,2,1],[0,2,2,0]],[[2,2,2,1],[1,3,0,2],[2,2,2,1],[0,2,2,0]],[[1,2,2,1],[1,3,0,3],[2,2,2,0],[1,1,2,1]],[[1,2,2,1],[1,4,0,2],[2,2,2,0],[1,1,2,1]],[[1,2,2,2],[1,3,0,2],[2,2,2,0],[1,1,2,1]],[[1,2,3,1],[1,3,0,2],[2,2,2,0],[1,1,2,1]],[[1,3,2,1],[1,3,0,2],[2,2,2,0],[1,1,2,1]],[[2,2,2,1],[1,3,0,2],[2,2,2,0],[1,1,2,1]],[[1,2,2,1],[1,3,0,3],[2,2,2,0],[0,2,2,1]],[[1,2,2,1],[1,4,0,2],[2,2,2,0],[0,2,2,1]],[[1,2,2,2],[1,3,0,2],[2,2,2,0],[0,2,2,1]],[[1,2,3,1],[1,3,0,2],[2,2,2,0],[0,2,2,1]],[[1,3,2,1],[1,3,0,2],[2,2,2,0],[0,2,2,1]],[[2,2,2,1],[1,3,0,2],[2,2,2,0],[0,2,2,1]],[[1,2,2,1],[1,3,0,2],[2,2,1,3],[1,1,2,0]],[[1,2,2,1],[1,3,0,3],[2,2,1,2],[1,1,2,0]],[[1,2,2,1],[1,4,0,2],[2,2,1,2],[1,1,2,0]],[[1,2,2,2],[1,3,0,2],[2,2,1,2],[1,1,2,0]],[[1,2,3,1],[1,3,0,2],[2,2,1,2],[1,1,2,0]],[[1,3,2,1],[1,3,0,2],[2,2,1,2],[1,1,2,0]],[[2,2,2,1],[1,3,0,2],[2,2,1,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[2,2,1,2],[1,1,1,2]],[[1,2,2,1],[1,3,0,2],[2,2,1,3],[1,1,1,1]],[[1,2,2,1],[1,3,0,3],[2,2,1,2],[1,1,1,1]],[[1,2,2,1],[1,4,0,2],[2,2,1,2],[1,1,1,1]],[[1,2,2,2],[1,3,0,2],[2,2,1,2],[1,1,1,1]],[[1,2,3,1],[1,3,0,2],[2,2,1,2],[1,1,1,1]],[[1,3,2,1],[1,3,0,2],[2,2,1,2],[1,1,1,1]],[[2,2,2,1],[1,3,0,2],[2,2,1,2],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[2,2,1,2],[1,0,2,2]],[[1,2,2,1],[1,3,0,2],[2,2,1,2],[1,0,3,1]],[[1,2,2,1],[1,3,0,2],[2,2,1,3],[1,0,2,1]],[[1,2,2,1],[1,3,0,3],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[1,4,0,2],[2,2,1,2],[1,0,2,1]],[[1,2,2,2],[1,3,0,2],[2,2,1,2],[1,0,2,1]],[[1,2,3,1],[1,3,0,2],[2,2,1,2],[1,0,2,1]],[[1,3,2,1],[1,3,0,2],[2,2,1,2],[1,0,2,1]],[[2,2,2,1],[1,3,0,2],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[1,3,0,2],[2,2,1,3],[0,2,2,0]],[[1,2,2,1],[1,3,0,3],[2,2,1,2],[0,2,2,0]],[[1,2,2,1],[1,4,0,2],[2,2,1,2],[0,2,2,0]],[[1,2,2,2],[1,3,0,2],[2,2,1,2],[0,2,2,0]],[[1,2,3,1],[1,3,0,2],[2,2,1,2],[0,2,2,0]],[[1,3,2,1],[1,3,0,2],[2,2,1,2],[0,2,2,0]],[[2,2,2,1],[1,3,0,2],[2,2,1,2],[0,2,2,0]],[[1,2,2,1],[1,3,0,2],[2,2,1,2],[0,2,1,2]],[[1,2,2,1],[1,3,0,2],[2,2,1,3],[0,2,1,1]],[[1,2,2,1],[1,3,0,3],[2,2,1,2],[0,2,1,1]],[[1,2,2,1],[1,4,0,2],[2,2,1,2],[0,2,1,1]],[[1,2,2,2],[1,3,0,2],[2,2,1,2],[0,2,1,1]],[[1,2,3,1],[1,3,0,2],[2,2,1,2],[0,2,1,1]],[[1,3,2,1],[1,3,0,2],[2,2,1,2],[0,2,1,1]],[[2,2,2,1],[1,3,0,2],[2,2,1,2],[0,2,1,1]],[[1,2,2,1],[1,3,0,2],[2,2,1,2],[0,1,2,2]],[[1,2,2,1],[1,3,0,2],[2,2,1,2],[0,1,3,1]],[[1,2,2,1],[1,3,0,2],[2,2,1,3],[0,1,2,1]],[[1,2,2,1],[1,3,0,3],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[1,4,0,2],[2,2,1,2],[0,1,2,1]],[[1,2,2,2],[1,3,0,2],[2,2,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,0,2],[2,2,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,0,2],[2,2,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,0,2],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[1,3,0,3],[2,2,1,1],[1,1,2,1]],[[1,2,2,1],[1,4,0,2],[2,2,1,1],[1,1,2,1]],[[1,2,2,2],[1,3,0,2],[2,2,1,1],[1,1,2,1]],[[1,2,3,1],[1,3,0,2],[2,2,1,1],[1,1,2,1]],[[1,3,2,1],[1,3,0,2],[2,2,1,1],[1,1,2,1]],[[2,2,2,1],[1,3,0,2],[2,2,1,1],[1,1,2,1]],[[1,2,2,1],[1,3,0,3],[2,2,1,1],[0,2,2,1]],[[1,2,2,1],[1,4,0,2],[2,2,1,1],[0,2,2,1]],[[1,2,2,2],[1,3,0,2],[2,2,1,1],[0,2,2,1]],[[1,2,3,1],[1,3,0,2],[2,2,1,1],[0,2,2,1]],[[1,3,2,1],[1,3,0,2],[2,2,1,1],[0,2,2,1]],[[2,2,2,1],[1,3,0,2],[2,2,1,1],[0,2,2,1]],[[1,2,2,1],[1,3,0,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[1,3,0,2],[2,1,4,2],[1,1,1,0]],[[1,2,2,1],[1,3,0,3],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[1,4,0,2],[2,1,3,2],[1,1,1,0]],[[1,2,2,2],[1,3,0,2],[2,1,3,2],[1,1,1,0]],[[1,2,3,1],[1,3,0,2],[2,1,3,2],[1,1,1,0]],[[1,3,2,1],[1,3,0,2],[2,1,3,2],[1,1,1,0]],[[2,2,2,1],[1,3,0,2],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[1,3,0,2],[2,1,3,2],[1,1,0,2]],[[1,2,2,1],[1,3,0,2],[2,1,3,3],[1,1,0,1]],[[1,2,2,1],[1,3,0,2],[2,1,4,2],[1,1,0,1]],[[1,2,2,1],[1,3,0,3],[2,1,3,2],[1,1,0,1]],[[1,2,2,1],[1,4,0,2],[2,1,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,0,2],[2,1,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,0,2],[2,1,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,0,2],[2,1,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,0,2],[2,1,3,2],[1,1,0,1]],[[1,2,2,1],[1,3,0,2],[2,1,3,2],[1,0,3,0]],[[1,2,2,1],[1,3,0,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[1,3,0,2],[2,1,4,2],[1,0,2,0]],[[1,2,2,1],[1,3,0,3],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[1,4,0,2],[2,1,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,0,2],[2,1,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,0,2],[2,1,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,0,2],[2,1,3,2],[1,0,2,0]],[[2,2,2,1],[1,3,0,2],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[1,3,0,2],[2,1,3,2],[1,0,1,2]],[[1,2,2,1],[1,3,0,2],[2,1,3,3],[1,0,1,1]],[[1,2,2,1],[1,3,0,2],[2,1,4,2],[1,0,1,1]],[[1,2,2,1],[1,3,0,3],[2,1,3,2],[1,0,1,1]],[[1,2,2,1],[1,4,0,2],[2,1,3,2],[1,0,1,1]],[[1,2,2,2],[1,3,0,2],[2,1,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,0,2],[2,1,3,2],[1,0,1,1]],[[1,3,2,1],[1,3,0,2],[2,1,3,2],[1,0,1,1]],[[2,2,2,1],[1,3,0,2],[2,1,3,2],[1,0,1,1]],[[1,2,2,1],[1,3,0,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[1,3,0,2],[2,1,4,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,3],[2,1,3,2],[0,2,1,0]],[[1,2,2,1],[1,4,0,2],[2,1,3,2],[0,2,1,0]],[[1,2,2,2],[1,3,0,2],[2,1,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,0,2],[2,1,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,0,2],[2,1,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,0,2],[2,1,3,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,2],[2,1,3,2],[0,2,0,2]],[[1,2,2,1],[1,3,0,2],[2,1,3,3],[0,2,0,1]],[[1,2,2,1],[1,3,0,2],[2,1,4,2],[0,2,0,1]],[[1,2,2,1],[1,3,0,3],[2,1,3,2],[0,2,0,1]],[[1,2,2,1],[1,4,0,2],[2,1,3,2],[0,2,0,1]],[[1,2,2,2],[1,3,0,2],[2,1,3,2],[0,2,0,1]],[[1,2,3,1],[1,3,0,2],[2,1,3,2],[0,2,0,1]],[[1,3,2,1],[1,3,0,2],[2,1,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,0,2],[2,1,3,2],[0,2,0,1]],[[1,2,2,1],[1,3,0,2],[2,1,3,2],[0,1,3,0]],[[1,2,2,1],[1,3,0,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[1,3,0,2],[2,1,4,2],[0,1,2,0]],[[1,2,2,1],[1,3,0,3],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[1,4,0,2],[2,1,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,0,2],[2,1,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,0,2],[2,1,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,0,2],[2,1,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,0,2],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[1,3,0,2],[2,1,3,2],[0,1,1,2]],[[1,2,2,1],[1,3,0,2],[2,1,3,3],[0,1,1,1]],[[1,2,2,1],[1,3,0,2],[2,1,4,2],[0,1,1,1]],[[1,2,2,1],[1,3,0,3],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[1,4,0,2],[2,1,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,0,2],[2,1,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,0,2],[2,1,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,0,2],[2,1,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,0,2],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[1,3,0,2],[2,1,3,2],[0,0,2,2]],[[1,2,2,1],[1,3,0,2],[2,1,3,3],[0,0,2,1]],[[1,2,2,1],[1,3,0,2],[2,1,4,2],[0,0,2,1]],[[1,2,2,1],[1,3,0,3],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[1,4,0,2],[2,1,3,2],[0,0,2,1]],[[1,2,2,2],[1,3,0,2],[2,1,3,2],[0,0,2,1]],[[1,2,3,1],[1,3,0,2],[2,1,3,2],[0,0,2,1]],[[1,3,2,1],[1,3,0,2],[2,1,3,2],[0,0,2,1]],[[2,2,2,1],[1,3,0,2],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[1,3,0,3],[2,1,3,1],[1,2,1,0]],[[1,2,2,1],[1,4,0,2],[2,1,3,1],[1,2,1,0]],[[1,2,2,2],[1,3,0,2],[2,1,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,0,2],[2,1,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,0,2],[2,1,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,0,2],[2,1,3,1],[1,2,1,0]],[[1,2,2,1],[1,3,0,3],[2,1,3,1],[1,2,0,1]],[[1,2,2,1],[1,4,0,2],[2,1,3,1],[1,2,0,1]],[[1,2,2,2],[1,3,0,2],[2,1,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,0,2],[2,1,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,0,2],[2,1,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,0,2],[2,1,3,1],[1,2,0,1]],[[1,2,2,1],[1,3,0,2],[2,1,3,1],[1,0,2,2]],[[1,2,2,1],[1,3,0,2],[2,1,3,1],[1,0,3,1]],[[1,2,2,1],[1,3,0,2],[2,1,4,1],[1,0,2,1]],[[1,2,2,1],[1,3,0,2],[2,1,3,1],[0,1,2,2]],[[1,2,2,1],[1,3,0,2],[2,1,3,1],[0,1,3,1]],[[1,2,2,1],[1,3,0,2],[2,1,4,1],[0,1,2,1]],[[1,2,2,1],[1,3,0,3],[2,1,3,0],[1,2,1,1]],[[1,2,2,1],[1,4,0,2],[2,1,3,0],[1,2,1,1]],[[1,2,2,2],[1,3,0,2],[2,1,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,0,2],[2,1,3,0],[1,2,1,1]],[[1,3,2,1],[1,3,0,2],[2,1,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,0,2],[2,1,3,0],[1,2,1,1]],[[1,2,2,1],[1,3,0,2],[2,1,2,3],[1,2,1,0]],[[1,2,2,1],[1,3,0,3],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[1,4,0,2],[2,1,2,2],[1,2,1,0]],[[1,2,2,2],[1,3,0,2],[2,1,2,2],[1,2,1,0]],[[1,2,3,1],[1,3,0,2],[2,1,2,2],[1,2,1,0]],[[1,3,2,1],[1,3,0,2],[2,1,2,2],[1,2,1,0]],[[2,2,2,1],[1,3,0,2],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[1,3,0,2],[2,1,2,2],[1,2,0,2]],[[1,2,2,1],[1,3,0,2],[2,1,2,3],[1,2,0,1]],[[1,2,2,1],[1,3,0,3],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[1,4,0,2],[2,1,2,2],[1,2,0,1]],[[1,2,2,2],[1,3,0,2],[2,1,2,2],[1,2,0,1]],[[1,2,3,1],[1,3,0,2],[2,1,2,2],[1,2,0,1]],[[1,3,2,1],[1,3,0,2],[2,1,2,2],[1,2,0,1]],[[2,2,2,1],[1,3,0,2],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[1,3,0,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[1,3,0,2],[2,1,2,2],[1,0,3,1]],[[1,2,2,1],[1,3,0,2],[2,1,2,3],[1,0,2,1]],[[1,2,2,1],[1,3,0,3],[2,1,2,2],[1,0,2,1]],[[1,2,2,1],[1,4,0,2],[2,1,2,2],[1,0,2,1]],[[1,2,2,2],[1,3,0,2],[2,1,2,2],[1,0,2,1]],[[1,2,3,1],[1,3,0,2],[2,1,2,2],[1,0,2,1]],[[1,3,2,1],[1,3,0,2],[2,1,2,2],[1,0,2,1]],[[2,2,2,1],[1,3,0,2],[2,1,2,2],[1,0,2,1]],[[1,2,2,1],[1,3,0,2],[2,1,2,2],[0,1,2,2]],[[1,2,2,1],[1,3,0,2],[2,1,2,2],[0,1,3,1]],[[1,2,2,1],[1,3,0,2],[2,1,2,3],[0,1,2,1]],[[1,2,2,1],[1,3,0,3],[2,1,2,2],[0,1,2,1]],[[1,2,2,1],[1,4,0,2],[2,1,2,2],[0,1,2,1]],[[1,2,2,2],[1,3,0,2],[2,1,2,2],[0,1,2,1]],[[1,2,3,1],[1,3,0,2],[2,1,2,2],[0,1,2,1]],[[1,3,2,1],[1,3,0,2],[2,1,2,2],[0,1,2,1]],[[2,2,2,1],[1,3,0,2],[2,1,2,2],[0,1,2,1]],[[1,2,2,1],[1,3,0,3],[2,1,2,1],[1,2,2,0]],[[1,2,2,1],[1,4,0,2],[2,1,2,1],[1,2,2,0]],[[1,2,2,2],[1,3,0,2],[2,1,2,1],[1,2,2,0]],[[1,2,3,1],[1,3,0,2],[2,1,2,1],[1,2,2,0]],[[1,3,2,1],[1,3,0,2],[2,1,2,1],[1,2,2,0]],[[2,2,2,1],[1,3,0,2],[2,1,2,1],[1,2,2,0]],[[1,2,2,1],[1,3,0,3],[2,1,2,0],[1,2,2,1]],[[1,2,2,1],[1,4,0,2],[2,1,2,0],[1,2,2,1]],[[1,2,2,2],[1,3,0,2],[2,1,2,0],[1,2,2,1]],[[1,2,3,1],[1,3,0,2],[2,1,2,0],[1,2,2,1]],[[1,3,2,1],[1,3,0,2],[2,1,2,0],[1,2,2,1]],[[2,2,2,1],[1,3,0,2],[2,1,2,0],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[2,1,1,3],[1,2,2,0]],[[1,2,2,1],[1,3,0,3],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[1,4,0,2],[2,1,1,2],[1,2,2,0]],[[1,2,2,2],[1,3,0,2],[2,1,1,2],[1,2,2,0]],[[1,2,3,1],[1,3,0,2],[2,1,1,2],[1,2,2,0]],[[1,3,2,1],[1,3,0,2],[2,1,1,2],[1,2,2,0]],[[2,2,2,1],[1,3,0,2],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[1,3,0,2],[2,1,1,2],[1,2,1,2]],[[1,2,2,1],[1,3,0,2],[2,1,1,3],[1,2,1,1]],[[1,2,2,1],[1,3,0,3],[2,1,1,2],[1,2,1,1]],[[1,2,2,1],[1,4,0,2],[2,1,1,2],[1,2,1,1]],[[1,2,2,2],[1,3,0,2],[2,1,1,2],[1,2,1,1]],[[1,2,3,1],[1,3,0,2],[2,1,1,2],[1,2,1,1]],[[1,3,2,1],[1,3,0,2],[2,1,1,2],[1,2,1,1]],[[2,2,2,1],[1,3,0,2],[2,1,1,2],[1,2,1,1]],[[1,2,2,1],[1,3,0,2],[2,1,1,2],[1,1,2,2]],[[1,2,2,1],[1,3,0,2],[2,1,1,2],[1,1,3,1]],[[1,2,2,1],[1,3,0,2],[2,1,1,3],[1,1,2,1]],[[1,2,2,1],[1,3,0,3],[2,1,1,2],[1,1,2,1]],[[1,2,2,1],[1,4,0,2],[2,1,1,2],[1,1,2,1]],[[1,2,2,2],[1,3,0,2],[2,1,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,0,2],[2,1,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,0,2],[2,1,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,0,2],[2,1,1,2],[1,1,2,1]],[[1,2,2,1],[1,3,0,2],[2,1,1,2],[0,2,2,2]],[[1,2,2,1],[1,3,0,2],[2,1,1,2],[0,2,3,1]],[[1,2,2,1],[1,3,0,2],[2,1,1,2],[0,3,2,1]],[[1,2,2,1],[1,3,0,2],[2,1,1,3],[0,2,2,1]],[[1,2,2,1],[1,3,0,3],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[1,4,0,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,0,2],[2,1,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,0,2],[2,1,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,0,2],[2,1,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,0,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[1,3,0,3],[2,1,1,1],[1,2,2,1]],[[1,2,2,1],[1,4,0,2],[2,1,1,1],[1,2,2,1]],[[1,2,2,2],[1,3,0,2],[2,1,1,1],[1,2,2,1]],[[1,2,3,1],[1,3,0,2],[2,1,1,1],[1,2,2,1]],[[1,3,2,1],[1,3,0,2],[2,1,1,1],[1,2,2,1]],[[2,2,2,1],[1,3,0,2],[2,1,1,1],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[1,3,0,2],[2,0,4,2],[1,2,1,0]],[[1,2,2,1],[1,3,0,3],[2,0,3,2],[1,2,1,0]],[[1,2,2,1],[1,4,0,2],[2,0,3,2],[1,2,1,0]],[[1,2,2,2],[1,3,0,2],[2,0,3,2],[1,2,1,0]],[[1,2,3,1],[1,3,0,2],[2,0,3,2],[1,2,1,0]],[[1,3,2,1],[1,3,0,2],[2,0,3,2],[1,2,1,0]],[[2,2,2,1],[1,3,0,2],[2,0,3,2],[1,2,1,0]],[[1,2,2,1],[1,3,0,2],[2,0,3,2],[1,2,0,2]],[[1,2,2,1],[1,3,0,2],[2,0,3,3],[1,2,0,1]],[[1,2,2,1],[1,3,0,2],[2,0,4,2],[1,2,0,1]],[[1,2,2,1],[1,3,0,3],[2,0,3,2],[1,2,0,1]],[[1,2,2,1],[1,4,0,2],[2,0,3,2],[1,2,0,1]],[[1,2,2,2],[1,3,0,2],[2,0,3,2],[1,2,0,1]],[[1,2,3,1],[1,3,0,2],[2,0,3,2],[1,2,0,1]],[[1,3,2,1],[1,3,0,2],[2,0,3,2],[1,2,0,1]],[[2,2,2,1],[1,3,0,2],[2,0,3,2],[1,2,0,1]],[[1,2,2,1],[1,3,0,2],[2,0,3,2],[1,1,3,0]],[[1,2,2,1],[1,3,0,2],[2,0,3,3],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[2,0,4,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,3],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[1,4,0,2],[2,0,3,2],[1,1,2,0]],[[1,2,2,2],[1,3,0,2],[2,0,3,2],[1,1,2,0]],[[1,2,3,1],[1,3,0,2],[2,0,3,2],[1,1,2,0]],[[1,3,2,1],[1,3,0,2],[2,0,3,2],[1,1,2,0]],[[2,2,2,1],[1,3,0,2],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[2,0,3,2],[1,1,1,2]],[[1,2,2,1],[1,3,0,2],[2,0,3,3],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[2,0,4,2],[1,1,1,1]],[[1,2,2,1],[1,3,0,3],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[1,4,0,2],[2,0,3,2],[1,1,1,1]],[[1,2,2,2],[1,3,0,2],[2,0,3,2],[1,1,1,1]],[[1,2,3,1],[1,3,0,2],[2,0,3,2],[1,1,1,1]],[[1,3,2,1],[1,3,0,2],[2,0,3,2],[1,1,1,1]],[[2,2,2,1],[1,3,0,2],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[2,0,3,2],[0,2,3,0]],[[1,2,2,1],[1,3,0,2],[2,0,3,2],[0,3,2,0]],[[1,2,2,1],[1,3,0,2],[2,0,3,3],[0,2,2,0]],[[1,2,2,1],[1,3,0,2],[2,0,4,2],[0,2,2,0]],[[1,2,2,1],[1,3,0,3],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[1,4,0,2],[2,0,3,2],[0,2,2,0]],[[1,2,2,2],[1,3,0,2],[2,0,3,2],[0,2,2,0]],[[1,2,3,1],[1,3,0,2],[2,0,3,2],[0,2,2,0]],[[1,3,2,1],[1,3,0,2],[2,0,3,2],[0,2,2,0]],[[2,2,2,1],[1,3,0,2],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[1,3,0,2],[2,0,3,2],[0,2,1,2]],[[1,2,2,1],[1,3,0,2],[2,0,3,3],[0,2,1,1]],[[1,2,2,1],[1,3,0,2],[2,0,4,2],[0,2,1,1]],[[1,2,2,1],[1,3,0,3],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[1,4,0,2],[2,0,3,2],[0,2,1,1]],[[1,2,2,2],[1,3,0,2],[2,0,3,2],[0,2,1,1]],[[1,2,3,1],[1,3,0,2],[2,0,3,2],[0,2,1,1]],[[1,3,2,1],[1,3,0,2],[2,0,3,2],[0,2,1,1]],[[2,2,2,1],[1,3,0,2],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[1,3,0,3],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,4,0,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,3,0,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,3,0,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[1,3,0,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[1,3,0,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,3,0,2],[2,0,3,1],[1,1,2,2]],[[1,2,2,1],[1,3,0,2],[2,0,3,1],[1,1,3,1]],[[1,2,2,1],[1,3,0,2],[2,0,4,1],[1,1,2,1]],[[1,2,2,1],[1,3,0,2],[2,0,3,1],[0,2,2,2]],[[1,2,2,1],[1,3,0,2],[2,0,3,1],[0,2,3,1]],[[1,2,2,1],[1,3,0,2],[2,0,3,1],[0,3,2,1]],[[1,2,2,1],[1,3,0,2],[2,0,4,1],[0,2,2,1]],[[1,2,2,1],[1,3,0,3],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,4,0,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,3,0,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,3,0,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[1,3,0,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[1,3,0,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[2,0,2,3],[1,2,2,0]],[[1,2,2,1],[1,3,0,3],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,4,0,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,0,2],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,0,2],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,0,2],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,0,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,3,0,2],[2,0,2,2],[1,2,1,2]],[[1,2,2,1],[1,3,0,2],[2,0,2,3],[1,2,1,1]],[[1,2,2,1],[1,3,0,3],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,4,0,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,2],[1,3,0,2],[2,0,2,2],[1,2,1,1]],[[1,2,3,1],[1,3,0,2],[2,0,2,2],[1,2,1,1]],[[1,3,2,1],[1,3,0,2],[2,0,2,2],[1,2,1,1]],[[2,2,2,1],[1,3,0,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,3,0,2],[2,0,2,2],[1,1,2,2]],[[1,2,2,1],[1,3,0,2],[2,0,2,2],[1,1,3,1]],[[1,2,2,1],[1,3,0,2],[2,0,2,3],[1,1,2,1]],[[1,2,2,1],[1,3,0,3],[2,0,2,2],[1,1,2,1]],[[1,2,2,1],[1,4,0,2],[2,0,2,2],[1,1,2,1]],[[1,2,2,2],[1,3,0,2],[2,0,2,2],[1,1,2,1]],[[1,2,3,1],[1,3,0,2],[2,0,2,2],[1,1,2,1]],[[1,3,2,1],[1,3,0,2],[2,0,2,2],[1,1,2,1]],[[2,2,2,1],[1,3,0,2],[2,0,2,2],[1,1,2,1]],[[1,2,2,1],[1,3,0,2],[2,0,2,2],[0,2,2,2]],[[1,2,2,1],[1,3,0,2],[2,0,2,2],[0,2,3,1]],[[1,2,2,1],[1,3,0,2],[2,0,2,2],[0,3,2,1]],[[1,2,2,1],[1,3,0,2],[2,0,2,3],[0,2,2,1]],[[1,2,2,1],[1,3,0,3],[2,0,2,2],[0,2,2,1]],[[1,2,2,1],[1,4,0,2],[2,0,2,2],[0,2,2,1]],[[1,2,2,2],[1,3,0,2],[2,0,2,2],[0,2,2,1]],[[1,2,3,1],[1,3,0,2],[2,0,2,2],[0,2,2,1]],[[1,3,2,1],[1,3,0,2],[2,0,2,2],[0,2,2,1]],[[2,2,2,1],[1,3,0,2],[2,0,2,2],[0,2,2,1]],[[1,2,2,1],[1,3,0,3],[2,0,2,1],[1,2,2,1]],[[1,2,2,1],[1,4,0,2],[2,0,2,1],[1,2,2,1]],[[1,2,2,2],[1,3,0,2],[2,0,2,1],[1,2,2,1]],[[1,2,3,1],[1,3,0,2],[2,0,2,1],[1,2,2,1]],[[1,3,2,1],[1,3,0,2],[2,0,2,1],[1,2,2,1]],[[2,2,2,1],[1,3,0,2],[2,0,2,1],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,3,0,2],[1,3,4,2],[0,0,2,0]],[[1,2,2,1],[1,3,0,3],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[1,4,0,2],[1,3,3,2],[0,0,2,0]],[[1,2,2,2],[1,3,0,2],[1,3,3,2],[0,0,2,0]],[[1,2,3,1],[1,3,0,2],[1,3,3,2],[0,0,2,0]],[[1,3,2,1],[1,3,0,2],[1,3,3,2],[0,0,2,0]],[[2,2,2,1],[1,3,0,2],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[1,3,0,2],[1,3,3,2],[0,0,1,2]],[[1,2,2,1],[1,3,0,2],[1,3,3,3],[0,0,1,1]],[[1,2,2,1],[1,3,0,2],[1,3,4,2],[0,0,1,1]],[[1,2,2,1],[1,3,0,3],[1,3,3,2],[0,0,1,1]],[[1,2,2,1],[1,4,0,2],[1,3,3,2],[0,0,1,1]],[[1,2,2,2],[1,3,0,2],[1,3,3,2],[0,0,1,1]],[[1,2,3,1],[1,3,0,2],[1,3,3,2],[0,0,1,1]],[[1,3,2,1],[1,3,0,2],[1,3,3,2],[0,0,1,1]],[[2,2,2,1],[1,3,0,2],[1,3,3,2],[0,0,1,1]],[[1,2,2,1],[1,3,0,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[1,3,0,3],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[1,4,0,2],[1,3,3,1],[1,2,0,0]],[[1,2,2,2],[1,3,0,2],[1,3,3,1],[1,2,0,0]],[[1,2,3,1],[1,3,0,2],[1,3,3,1],[1,2,0,0]],[[1,3,2,1],[1,3,0,2],[1,3,3,1],[1,2,0,0]],[[2,2,2,1],[1,3,0,2],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[1,3,0,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[1,3,0,2],[1,4,3,1],[1,1,1,0]],[[1,2,2,1],[1,3,0,3],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[1,4,0,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,2],[1,3,0,2],[1,3,3,1],[1,1,1,0]],[[1,2,3,1],[1,3,0,2],[1,3,3,1],[1,1,1,0]],[[1,3,2,1],[1,3,0,2],[1,3,3,1],[1,1,1,0]],[[2,2,2,1],[1,3,0,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[1,3,0,2],[1,3,4,1],[1,1,0,1]],[[1,2,2,1],[1,3,0,2],[1,4,3,1],[1,1,0,1]],[[1,2,2,1],[1,3,0,3],[1,3,3,1],[1,1,0,1]],[[1,2,2,1],[1,4,0,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,2],[1,3,0,2],[1,3,3,1],[1,1,0,1]],[[1,2,3,1],[1,3,0,2],[1,3,3,1],[1,1,0,1]],[[1,3,2,1],[1,3,0,2],[1,3,3,1],[1,1,0,1]],[[2,2,2,1],[1,3,0,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,1],[1,3,0,2],[1,3,3,1],[1,0,3,0]],[[1,2,2,1],[1,3,0,2],[1,3,4,1],[1,0,2,0]],[[1,2,2,1],[1,3,0,2],[1,4,3,1],[1,0,2,0]],[[1,2,2,1],[1,3,0,3],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[1,4,0,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,2],[1,3,0,2],[1,3,3,1],[1,0,2,0]],[[1,2,3,1],[1,3,0,2],[1,3,3,1],[1,0,2,0]],[[1,3,2,1],[1,3,0,2],[1,3,3,1],[1,0,2,0]],[[2,2,2,1],[1,3,0,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[1,3,0,2],[1,3,4,1],[1,0,1,1]],[[1,2,2,1],[1,3,0,2],[1,4,3,1],[1,0,1,1]],[[1,2,2,1],[1,3,0,3],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[1,4,0,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,2],[1,3,0,2],[1,3,3,1],[1,0,1,1]],[[1,2,3,1],[1,3,0,2],[1,3,3,1],[1,0,1,1]],[[1,3,2,1],[1,3,0,2],[1,3,3,1],[1,0,1,1]],[[2,2,2,1],[1,3,0,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[1,3,0,2],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[1,3,0,2],[1,3,4,1],[0,2,1,0]],[[1,2,2,1],[1,3,0,2],[1,4,3,1],[0,2,1,0]],[[1,2,2,1],[1,3,0,3],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,4,0,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,2],[1,3,0,2],[1,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,3,0,2],[1,3,3,1],[0,2,1,0]],[[1,3,2,1],[1,3,0,2],[1,3,3,1],[0,2,1,0]],[[2,2,2,1],[1,3,0,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,3,0,2],[1,3,3,1],[0,3,0,1]],[[1,2,2,1],[1,3,0,2],[1,3,4,1],[0,2,0,1]],[[1,2,2,1],[1,3,0,2],[1,4,3,1],[0,2,0,1]],[[1,2,2,1],[1,3,0,3],[1,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,4,0,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,3,0,2],[1,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,3,0,2],[1,3,3,1],[0,2,0,1]],[[1,3,2,1],[1,3,0,2],[1,3,3,1],[0,2,0,1]],[[2,2,2,1],[1,3,0,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,3,0,2],[1,3,3,1],[0,1,3,0]],[[1,2,2,1],[1,3,0,2],[1,3,4,1],[0,1,2,0]],[[1,2,2,1],[1,3,0,2],[1,4,3,1],[0,1,2,0]],[[1,2,2,1],[1,3,0,3],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,4,0,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,2],[1,3,0,2],[1,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,3,0,2],[1,3,3,1],[0,1,2,0]],[[1,3,2,1],[1,3,0,2],[1,3,3,1],[0,1,2,0]],[[2,2,2,1],[1,3,0,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,3,0,2],[1,3,4,1],[0,1,1,1]],[[1,2,2,1],[1,3,0,2],[1,4,3,1],[0,1,1,1]],[[1,2,2,1],[1,3,0,3],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,4,0,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,3,0,2],[1,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,3,0,2],[1,3,3,1],[0,1,1,1]],[[1,3,2,1],[1,3,0,2],[1,3,3,1],[0,1,1,1]],[[2,2,2,1],[1,3,0,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,3,0,2],[1,4,3,0],[1,2,0,1]],[[1,2,2,1],[1,4,0,2],[1,3,3,0],[1,2,0,1]],[[1,2,2,2],[1,3,0,2],[1,3,3,0],[1,2,0,1]],[[1,2,3,1],[1,3,0,2],[1,3,3,0],[1,2,0,1]],[[1,3,2,1],[1,3,0,2],[1,3,3,0],[1,2,0,1]],[[2,2,2,1],[1,3,0,2],[1,3,3,0],[1,2,0,1]],[[1,2,2,1],[1,3,0,2],[1,3,4,0],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[1,4,3,0],[1,1,1,1]],[[1,2,2,1],[1,3,0,3],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[1,4,0,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,2],[1,3,0,2],[1,3,3,0],[1,1,1,1]],[[1,2,3,1],[1,3,0,2],[1,3,3,0],[1,1,1,1]],[[1,3,2,1],[1,3,0,2],[1,3,3,0],[1,1,1,1]],[[2,2,2,1],[1,3,0,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[1,3,3,0],[1,0,2,2]],[[1,2,2,1],[1,3,0,2],[1,3,3,0],[1,0,3,1]],[[1,2,2,1],[1,3,0,2],[1,3,4,0],[1,0,2,1]],[[1,2,2,1],[1,3,0,2],[1,4,3,0],[1,0,2,1]],[[1,2,2,1],[1,3,0,3],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[1,4,0,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,2],[1,3,0,2],[1,3,3,0],[1,0,2,1]],[[1,2,3,1],[1,3,0,2],[1,3,3,0],[1,0,2,1]],[[1,3,2,1],[1,3,0,2],[1,3,3,0],[1,0,2,1]],[[2,2,2,1],[1,3,0,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[1,3,0,2],[1,3,3,0],[0,3,1,1]],[[1,2,2,1],[1,3,0,2],[1,3,4,0],[0,2,1,1]],[[1,2,2,1],[1,3,0,2],[1,4,3,0],[0,2,1,1]],[[1,2,2,1],[1,3,0,3],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,4,0,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,2],[1,3,0,2],[1,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,3,0,2],[1,3,3,0],[0,2,1,1]],[[1,3,2,1],[1,3,0,2],[1,3,3,0],[0,2,1,1]],[[2,2,2,1],[1,3,0,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,3,0,2],[1,3,3,0],[0,1,2,2]],[[1,2,2,1],[1,3,0,2],[1,3,3,0],[0,1,3,1]],[[1,2,2,1],[1,3,0,2],[1,3,4,0],[0,1,2,1]],[[1,2,2,1],[1,3,0,2],[1,4,3,0],[0,1,2,1]],[[1,2,2,1],[1,3,0,3],[1,3,3,0],[0,1,2,1]],[[1,2,2,1],[1,4,0,2],[1,3,3,0],[0,1,2,1]],[[1,2,2,2],[1,3,0,2],[1,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,3,0,2],[1,3,3,0],[0,1,2,1]],[[1,3,2,1],[1,3,0,2],[1,3,3,0],[0,1,2,1]],[[2,2,2,1],[1,3,0,2],[1,3,3,0],[0,1,2,1]],[[1,2,2,1],[1,3,0,2],[1,4,2,2],[1,2,0,0]],[[1,2,2,1],[1,3,0,3],[1,3,2,2],[1,2,0,0]],[[1,2,2,1],[1,4,0,2],[1,3,2,2],[1,2,0,0]],[[1,2,2,2],[1,3,0,2],[1,3,2,2],[1,2,0,0]],[[1,2,3,1],[1,3,0,2],[1,3,2,2],[1,2,0,0]],[[1,3,2,1],[1,3,0,2],[1,3,2,2],[1,2,0,0]],[[2,2,2,1],[1,3,0,2],[1,3,2,2],[1,2,0,0]],[[1,2,2,1],[1,3,0,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,1],[1,3,0,2],[1,4,2,2],[1,1,1,0]],[[1,2,2,1],[1,3,0,3],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[1,4,0,2],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[1,3,0,2],[1,3,2,2],[1,1,1,0]],[[1,2,3,1],[1,3,0,2],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[1,3,0,2],[1,3,2,2],[1,1,1,0]],[[2,2,2,1],[1,3,0,2],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[1,3,0,2],[1,3,2,2],[1,1,0,2]],[[1,2,2,1],[1,3,0,2],[1,3,2,3],[1,1,0,1]],[[1,2,2,1],[1,3,0,2],[1,4,2,2],[1,1,0,1]],[[1,2,2,1],[1,3,0,3],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[1,4,0,2],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[1,3,0,2],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[1,3,0,2],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[1,3,0,2],[1,3,2,2],[1,1,0,1]],[[2,2,2,1],[1,3,0,2],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[1,3,0,2],[1,3,2,3],[1,0,2,0]],[[1,2,2,1],[1,3,0,2],[1,4,2,2],[1,0,2,0]],[[1,2,2,1],[1,3,0,3],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[1,4,0,2],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[1,3,0,2],[1,3,2,2],[1,0,2,0]],[[1,2,3,1],[1,3,0,2],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[1,3,0,2],[1,3,2,2],[1,0,2,0]],[[2,2,2,1],[1,3,0,2],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[1,3,0,2],[1,3,2,2],[1,0,1,2]],[[1,2,2,1],[1,3,0,2],[1,3,2,3],[1,0,1,1]],[[1,2,2,1],[1,3,0,2],[1,4,2,2],[1,0,1,1]],[[1,2,2,1],[1,3,0,3],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[1,4,0,2],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[1,3,0,2],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[1,3,0,2],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[1,3,0,2],[1,3,2,2],[1,0,1,1]],[[2,2,2,1],[1,3,0,2],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[1,3,0,2],[1,3,2,2],[0,3,1,0]],[[1,2,2,1],[1,3,0,2],[1,3,2,3],[0,2,1,0]],[[1,2,2,1],[1,3,0,2],[1,4,2,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,3],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,4,0,2],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,3,0,2],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,3,0,2],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,0,2],[1,3,2,2],[0,2,1,0]],[[2,2,2,1],[1,3,0,2],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,2],[1,3,2,2],[0,2,0,2]],[[1,2,2,1],[1,3,0,2],[1,3,2,2],[0,3,0,1]],[[1,2,2,1],[1,3,0,2],[1,3,2,3],[0,2,0,1]],[[1,2,2,1],[1,3,0,2],[1,4,2,2],[0,2,0,1]],[[1,2,2,1],[1,3,0,3],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[1,4,0,2],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,3,0,2],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,3,0,2],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[1,3,0,2],[1,3,2,2],[0,2,0,1]],[[2,2,2,1],[1,3,0,2],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[1,3,0,2],[1,3,2,3],[0,1,2,0]],[[1,2,2,1],[1,3,0,2],[1,4,2,2],[0,1,2,0]],[[1,2,2,1],[1,3,0,3],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,4,0,2],[1,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,3,0,2],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,3,0,2],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[1,3,0,2],[1,3,2,2],[0,1,2,0]],[[2,2,2,1],[1,3,0,2],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,3,0,2],[1,3,2,2],[0,1,1,2]],[[1,2,2,1],[1,3,0,2],[1,3,2,3],[0,1,1,1]],[[1,2,2,1],[1,3,0,2],[1,4,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,0,3],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,4,0,2],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,3,0,2],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,3,0,2],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[1,3,0,2],[1,3,2,2],[0,1,1,1]],[[2,2,2,1],[1,3,0,2],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,3,0,2],[1,4,2,1],[1,1,2,0]],[[1,2,2,1],[1,3,0,3],[1,3,2,1],[1,1,2,0]],[[1,2,2,1],[1,4,0,2],[1,3,2,1],[1,1,2,0]],[[1,2,2,2],[1,3,0,2],[1,3,2,1],[1,1,2,0]],[[1,2,3,1],[1,3,0,2],[1,3,2,1],[1,1,2,0]],[[1,3,2,1],[1,3,0,2],[1,3,2,1],[1,1,2,0]],[[2,2,2,1],[1,3,0,2],[1,3,2,1],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[1,3,2,1],[0,2,3,0]],[[1,2,2,1],[1,3,0,2],[1,3,2,1],[0,3,2,0]],[[1,2,2,1],[1,3,0,2],[1,4,2,1],[0,2,2,0]],[[1,2,2,1],[1,3,0,3],[1,3,2,1],[0,2,2,0]],[[1,2,2,1],[1,4,0,2],[1,3,2,1],[0,2,2,0]],[[1,2,2,2],[1,3,0,2],[1,3,2,1],[0,2,2,0]],[[1,2,3,1],[1,3,0,2],[1,3,2,1],[0,2,2,0]],[[1,3,2,1],[1,3,0,2],[1,3,2,1],[0,2,2,0]],[[2,2,2,1],[1,3,0,2],[1,3,2,1],[0,2,2,0]],[[1,2,2,1],[1,3,0,2],[1,4,2,0],[1,1,2,1]],[[1,2,2,1],[1,3,0,3],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[1,4,0,2],[1,3,2,0],[1,1,2,1]],[[1,2,2,2],[1,3,0,2],[1,3,2,0],[1,1,2,1]],[[1,2,3,1],[1,3,0,2],[1,3,2,0],[1,1,2,1]],[[1,3,2,1],[1,3,0,2],[1,3,2,0],[1,1,2,1]],[[2,2,2,1],[1,3,0,2],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[1,3,0,2],[1,3,2,0],[0,2,2,2]],[[1,2,2,1],[1,3,0,2],[1,3,2,0],[0,2,3,1]],[[1,2,2,1],[1,3,0,2],[1,3,2,0],[0,3,2,1]],[[1,2,2,1],[1,3,0,2],[1,4,2,0],[0,2,2,1]],[[1,2,2,1],[1,3,0,3],[1,3,2,0],[0,2,2,1]],[[1,2,2,1],[1,4,0,2],[1,3,2,0],[0,2,2,1]],[[1,2,2,2],[1,3,0,2],[1,3,2,0],[0,2,2,1]],[[1,2,3,1],[1,3,0,2],[1,3,2,0],[0,2,2,1]],[[1,3,2,1],[1,3,0,2],[1,3,2,0],[0,2,2,1]],[[2,2,2,1],[1,3,0,2],[1,3,2,0],[0,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,3,1,3],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[1,4,1,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,3],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[1,4,0,2],[1,3,1,2],[1,1,2,0]],[[1,2,2,2],[1,3,0,2],[1,3,1,2],[1,1,2,0]],[[1,2,3,1],[1,3,0,2],[1,3,1,2],[1,1,2,0]],[[1,3,2,1],[1,3,0,2],[1,3,1,2],[1,1,2,0]],[[2,2,2,1],[1,3,0,2],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[1,3,1,2],[1,1,1,2]],[[1,2,2,1],[1,3,0,2],[1,3,1,3],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[1,4,1,2],[1,1,1,1]],[[1,2,2,1],[1,3,0,3],[1,3,1,2],[1,1,1,1]],[[1,2,2,1],[1,4,0,2],[1,3,1,2],[1,1,1,1]],[[1,2,2,2],[1,3,0,2],[1,3,1,2],[1,1,1,1]],[[1,2,3,1],[1,3,0,2],[1,3,1,2],[1,1,1,1]],[[1,3,2,1],[1,3,0,2],[1,3,1,2],[1,1,1,1]],[[2,2,2,1],[1,3,0,2],[1,3,1,2],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[1,3,1,2],[1,0,2,2]],[[1,2,2,1],[1,3,0,2],[1,3,1,2],[1,0,3,1]],[[1,2,2,1],[1,3,0,2],[1,3,1,3],[1,0,2,1]],[[1,2,2,1],[1,3,0,2],[1,4,1,2],[1,0,2,1]],[[1,2,2,1],[1,3,0,3],[1,3,1,2],[1,0,2,1]],[[1,2,2,1],[1,4,0,2],[1,3,1,2],[1,0,2,1]],[[1,2,2,2],[1,3,0,2],[1,3,1,2],[1,0,2,1]],[[1,2,3,1],[1,3,0,2],[1,3,1,2],[1,0,2,1]],[[1,3,2,1],[1,3,0,2],[1,3,1,2],[1,0,2,1]],[[2,2,2,1],[1,3,0,2],[1,3,1,2],[1,0,2,1]],[[1,2,2,1],[1,3,0,2],[1,3,1,2],[0,2,3,0]],[[1,2,2,1],[1,3,0,2],[1,3,1,2],[0,3,2,0]],[[1,2,2,1],[1,3,0,2],[1,3,1,3],[0,2,2,0]],[[1,2,2,1],[1,3,0,2],[1,4,1,2],[0,2,2,0]],[[1,2,2,1],[1,3,0,3],[1,3,1,2],[0,2,2,0]],[[1,2,2,1],[1,4,0,2],[1,3,1,2],[0,2,2,0]],[[1,2,2,2],[1,3,0,2],[1,3,1,2],[0,2,2,0]],[[1,2,3,1],[1,3,0,2],[1,3,1,2],[0,2,2,0]],[[1,3,2,1],[1,3,0,2],[1,3,1,2],[0,2,2,0]],[[2,2,2,1],[1,3,0,2],[1,3,1,2],[0,2,2,0]],[[1,2,2,1],[1,3,0,2],[1,3,1,2],[0,2,1,2]],[[1,2,2,1],[1,3,0,2],[1,3,1,2],[0,3,1,1]],[[1,2,2,1],[1,3,0,2],[1,3,1,3],[0,2,1,1]],[[1,2,2,1],[1,3,0,2],[1,4,1,2],[0,2,1,1]],[[1,2,2,1],[1,3,0,3],[1,3,1,2],[0,2,1,1]],[[1,2,2,1],[1,4,0,2],[1,3,1,2],[0,2,1,1]],[[1,2,2,2],[1,3,0,2],[1,3,1,2],[0,2,1,1]],[[1,2,3,1],[1,3,0,2],[1,3,1,2],[0,2,1,1]],[[1,3,2,1],[1,3,0,2],[1,3,1,2],[0,2,1,1]],[[2,2,2,1],[1,3,0,2],[1,3,1,2],[0,2,1,1]],[[1,2,2,1],[1,3,0,2],[1,3,1,2],[0,1,2,2]],[[1,2,2,1],[1,3,0,2],[1,3,1,2],[0,1,3,1]],[[1,2,2,1],[1,3,0,2],[1,3,1,3],[0,1,2,1]],[[1,2,2,1],[1,3,0,2],[1,4,1,2],[0,1,2,1]],[[1,2,2,1],[1,3,0,3],[1,3,1,2],[0,1,2,1]],[[1,2,2,1],[1,4,0,2],[1,3,1,2],[0,1,2,1]],[[1,2,2,2],[1,3,0,2],[1,3,1,2],[0,1,2,1]],[[1,2,3,1],[1,3,0,2],[1,3,1,2],[0,1,2,1]],[[1,3,2,1],[1,3,0,2],[1,3,1,2],[0,1,2,1]],[[2,2,2,1],[1,3,0,2],[1,3,1,2],[0,1,2,1]],[[1,2,2,1],[1,3,0,2],[1,4,1,1],[1,1,2,1]],[[1,2,2,1],[1,3,0,3],[1,3,1,1],[1,1,2,1]],[[1,2,2,1],[1,4,0,2],[1,3,1,1],[1,1,2,1]],[[1,2,2,2],[1,3,0,2],[1,3,1,1],[1,1,2,1]],[[1,2,3,1],[1,3,0,2],[1,3,1,1],[1,1,2,1]],[[1,3,2,1],[1,3,0,2],[1,3,1,1],[1,1,2,1]],[[2,2,2,1],[1,3,0,2],[1,3,1,1],[1,1,2,1]],[[1,2,2,1],[1,3,0,2],[1,3,1,1],[0,2,2,2]],[[1,2,2,1],[1,3,0,2],[1,3,1,1],[0,2,3,1]],[[1,2,2,1],[1,3,0,2],[1,3,1,1],[0,3,2,1]],[[1,2,2,1],[1,3,0,2],[1,4,1,1],[0,2,2,1]],[[1,2,2,1],[1,3,0,3],[1,3,1,1],[0,2,2,1]],[[1,2,2,1],[1,4,0,2],[1,3,1,1],[0,2,2,1]],[[1,2,2,2],[1,3,0,2],[1,3,1,1],[0,2,2,1]],[[1,2,3,1],[1,3,0,2],[1,3,1,1],[0,2,2,1]],[[1,3,2,1],[1,3,0,2],[1,3,1,1],[0,2,2,1]],[[2,2,2,1],[1,3,0,2],[1,3,1,1],[0,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[1,3,0,2],[1,2,4,2],[1,1,1,0]],[[1,2,2,1],[1,3,0,3],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[1,4,0,2],[1,2,3,2],[1,1,1,0]],[[1,2,2,2],[1,3,0,2],[1,2,3,2],[1,1,1,0]],[[1,2,3,1],[1,3,0,2],[1,2,3,2],[1,1,1,0]],[[1,3,2,1],[1,3,0,2],[1,2,3,2],[1,1,1,0]],[[2,2,2,1],[1,3,0,2],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[1,3,0,2],[1,2,3,2],[1,1,0,2]],[[1,2,2,1],[1,3,0,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[1,3,0,2],[1,2,4,2],[1,1,0,1]],[[1,2,2,1],[1,3,0,3],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,4,0,2],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,0,2],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,0,2],[1,2,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,0,2],[1,2,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,0,2],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,3,0,2],[1,2,3,2],[1,0,3,0]],[[1,2,2,1],[1,3,0,2],[1,2,3,3],[1,0,2,0]],[[1,2,2,1],[1,3,0,2],[1,2,4,2],[1,0,2,0]],[[1,2,2,1],[1,3,0,3],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[1,4,0,2],[1,2,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,0,2],[1,2,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,0,2],[1,2,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,0,2],[1,2,3,2],[1,0,2,0]],[[2,2,2,1],[1,3,0,2],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[1,3,0,2],[1,2,3,2],[1,0,1,2]],[[1,2,2,1],[1,3,0,2],[1,2,3,3],[1,0,1,1]],[[1,2,2,1],[1,3,0,2],[1,2,4,2],[1,0,1,1]],[[1,2,2,1],[1,3,0,3],[1,2,3,2],[1,0,1,1]],[[1,2,2,1],[1,4,0,2],[1,2,3,2],[1,0,1,1]],[[1,2,2,2],[1,3,0,2],[1,2,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,0,2],[1,2,3,2],[1,0,1,1]],[[1,3,2,1],[1,3,0,2],[1,2,3,2],[1,0,1,1]],[[2,2,2,1],[1,3,0,2],[1,2,3,2],[1,0,1,1]],[[1,2,2,1],[1,3,0,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[1,3,0,2],[1,2,4,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,3],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[1,4,0,2],[1,2,3,2],[0,2,1,0]],[[1,2,2,2],[1,3,0,2],[1,2,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,0,2],[1,2,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,0,2],[1,2,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,0,2],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,2],[1,2,3,2],[0,2,0,2]],[[1,2,2,1],[1,3,0,2],[1,2,3,3],[0,2,0,1]],[[1,2,2,1],[1,3,0,2],[1,2,4,2],[0,2,0,1]],[[1,2,2,1],[1,3,0,3],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[1,4,0,2],[1,2,3,2],[0,2,0,1]],[[1,2,2,2],[1,3,0,2],[1,2,3,2],[0,2,0,1]],[[1,2,3,1],[1,3,0,2],[1,2,3,2],[0,2,0,1]],[[1,3,2,1],[1,3,0,2],[1,2,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,0,2],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[1,3,0,2],[1,2,3,2],[0,1,3,0]],[[1,2,2,1],[1,3,0,2],[1,2,3,3],[0,1,2,0]],[[1,2,2,1],[1,3,0,2],[1,2,4,2],[0,1,2,0]],[[1,2,2,1],[1,3,0,3],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[1,4,0,2],[1,2,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,0,2],[1,2,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,0,2],[1,2,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,0,2],[1,2,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,0,2],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[1,3,0,2],[1,2,3,2],[0,1,1,2]],[[1,2,2,1],[1,3,0,2],[1,2,3,3],[0,1,1,1]],[[1,2,2,1],[1,3,0,2],[1,2,4,2],[0,1,1,1]],[[1,2,2,1],[1,3,0,3],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[1,4,0,2],[1,2,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,0,2],[1,2,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,0,2],[1,2,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,0,2],[1,2,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,0,2],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[1,3,0,2],[1,2,3,2],[0,0,2,2]],[[1,2,2,1],[1,3,0,2],[1,2,3,3],[0,0,2,1]],[[1,2,2,1],[1,3,0,2],[1,2,4,2],[0,0,2,1]],[[1,2,2,1],[1,3,0,3],[1,2,3,2],[0,0,2,1]],[[1,2,2,1],[1,4,0,2],[1,2,3,2],[0,0,2,1]],[[1,2,2,2],[1,3,0,2],[1,2,3,2],[0,0,2,1]],[[1,2,3,1],[1,3,0,2],[1,2,3,2],[0,0,2,1]],[[1,3,2,1],[1,3,0,2],[1,2,3,2],[0,0,2,1]],[[2,2,2,1],[1,3,0,2],[1,2,3,2],[0,0,2,1]],[[1,2,2,1],[1,3,0,2],[1,2,3,1],[1,0,2,2]],[[1,2,2,1],[1,3,0,2],[1,2,3,1],[1,0,3,1]],[[1,2,2,1],[1,3,0,2],[1,2,4,1],[1,0,2,1]],[[1,2,2,1],[1,3,0,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[1,3,0,2],[1,2,3,1],[0,3,2,0]],[[1,2,2,1],[1,3,0,2],[1,2,4,1],[0,2,2,0]],[[1,2,2,1],[1,3,0,2],[1,2,3,1],[0,1,2,2]],[[1,2,2,1],[1,3,0,2],[1,2,3,1],[0,1,3,1]],[[1,2,2,1],[1,3,0,2],[1,2,4,1],[0,1,2,1]],[[1,2,2,1],[1,3,0,2],[1,2,3,0],[0,2,2,2]],[[1,2,2,1],[1,3,0,2],[1,2,3,0],[0,2,3,1]],[[1,2,2,1],[1,3,0,2],[1,2,3,0],[0,3,2,1]],[[1,2,2,1],[1,3,0,2],[1,2,4,0],[0,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[1,3,0,2],[1,2,2,2],[1,0,3,1]],[[1,2,2,1],[1,3,0,2],[1,2,2,3],[1,0,2,1]],[[1,2,2,1],[1,3,0,3],[1,2,2,2],[1,0,2,1]],[[1,2,2,1],[1,4,0,2],[1,2,2,2],[1,0,2,1]],[[1,2,2,2],[1,3,0,2],[1,2,2,2],[1,0,2,1]],[[1,2,3,1],[1,3,0,2],[1,2,2,2],[1,0,2,1]],[[1,3,2,1],[1,3,0,2],[1,2,2,2],[1,0,2,1]],[[2,2,2,1],[1,3,0,2],[1,2,2,2],[1,0,2,1]],[[1,2,2,1],[1,3,0,2],[1,2,2,2],[0,1,2,2]],[[1,2,2,1],[1,3,0,2],[1,2,2,2],[0,1,3,1]],[[1,2,2,1],[1,3,0,2],[1,2,2,3],[0,1,2,1]],[[1,2,2,1],[1,3,0,3],[1,2,2,2],[0,1,2,1]],[[1,2,2,1],[1,4,0,2],[1,2,2,2],[0,1,2,1]],[[1,2,2,2],[1,3,0,2],[1,2,2,2],[0,1,2,1]],[[1,2,3,1],[1,3,0,2],[1,2,2,2],[0,1,2,1]],[[1,3,2,1],[1,3,0,2],[1,2,2,2],[0,1,2,1]],[[2,2,2,1],[1,3,0,2],[1,2,2,2],[0,1,2,1]],[[1,2,2,1],[1,3,0,2],[1,2,1,2],[0,2,2,2]],[[1,2,2,1],[1,3,0,2],[1,2,1,2],[0,2,3,1]],[[1,2,2,1],[1,3,0,2],[1,2,1,2],[0,3,2,1]],[[1,2,2,1],[1,3,0,2],[1,2,1,3],[0,2,2,1]],[[1,2,2,1],[1,3,0,3],[1,2,1,2],[0,2,2,1]],[[1,2,2,1],[1,4,0,2],[1,2,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,0,2],[1,2,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,0,2],[1,2,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,0,2],[1,2,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,0,2],[1,2,1,2],[0,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[1,3,0,2],[1,1,3,2],[0,3,2,0]],[[1,2,2,1],[1,3,0,2],[1,1,3,3],[0,2,2,0]],[[1,2,2,1],[1,3,0,2],[1,1,4,2],[0,2,2,0]],[[1,2,2,1],[1,3,0,3],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[1,4,0,2],[1,1,3,2],[0,2,2,0]],[[1,2,2,2],[1,3,0,2],[1,1,3,2],[0,2,2,0]],[[1,2,3,1],[1,3,0,2],[1,1,3,2],[0,2,2,0]],[[1,3,2,1],[1,3,0,2],[1,1,3,2],[0,2,2,0]],[[2,2,2,1],[1,3,0,2],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[1,3,0,2],[1,1,3,2],[0,2,1,2]],[[1,2,2,1],[1,3,0,2],[1,1,3,3],[0,2,1,1]],[[1,2,2,1],[1,3,0,2],[1,1,4,2],[0,2,1,1]],[[1,2,2,1],[1,3,0,3],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[1,4,0,2],[1,1,3,2],[0,2,1,1]],[[1,2,2,2],[1,3,0,2],[1,1,3,2],[0,2,1,1]],[[1,2,3,1],[1,3,0,2],[1,1,3,2],[0,2,1,1]],[[1,3,2,1],[1,3,0,2],[1,1,3,2],[0,2,1,1]],[[2,2,2,1],[1,3,0,2],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[1,3,0,2],[1,1,3,1],[0,2,2,2]],[[1,2,2,1],[1,3,0,2],[1,1,3,1],[0,2,3,1]],[[1,2,2,1],[1,3,0,2],[1,1,3,1],[0,3,2,1]],[[1,2,2,1],[1,3,0,2],[1,1,4,1],[0,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,1,2,2],[0,2,2,2]],[[1,2,2,1],[1,3,0,2],[1,1,2,2],[0,2,3,1]],[[1,2,2,1],[1,3,0,2],[1,1,2,2],[0,3,2,1]],[[1,2,2,1],[1,3,0,2],[1,1,2,3],[0,2,2,1]],[[1,2,2,1],[1,3,0,3],[1,1,2,2],[0,2,2,1]],[[1,2,2,1],[1,4,0,2],[1,1,2,2],[0,2,2,1]],[[1,2,2,2],[1,3,0,2],[1,1,2,2],[0,2,2,1]],[[1,2,3,1],[1,3,0,2],[1,1,2,2],[0,2,2,1]],[[1,3,2,1],[1,3,0,2],[1,1,2,2],[0,2,2,1]],[[2,2,2,1],[1,3,0,2],[1,1,2,2],[0,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,1,1,2],[1,2,2,2]],[[1,2,2,1],[1,3,0,2],[1,1,1,2],[1,2,3,1]],[[1,2,2,1],[1,3,0,2],[1,1,1,2],[1,3,2,1]],[[1,2,2,1],[1,3,0,2],[1,1,1,2],[2,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,1,1,3],[1,2,2,1]],[[1,2,2,1],[1,3,0,3],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,0,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,0,2],[1,1,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,0,2],[1,1,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,0,2],[1,1,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,0,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,0,3,2],[1,2,3,0]],[[1,2,2,1],[1,3,0,2],[1,0,3,2],[1,3,2,0]],[[1,2,2,1],[1,3,0,2],[1,0,3,2],[2,2,2,0]],[[1,2,2,1],[1,3,0,2],[1,0,3,3],[1,2,2,0]],[[1,2,2,1],[1,3,0,2],[1,0,4,2],[1,2,2,0]],[[1,2,2,1],[1,3,0,3],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,4,0,2],[1,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,3,0,2],[1,0,3,2],[1,2,2,0]],[[1,2,3,1],[1,3,0,2],[1,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,3,0,2],[1,0,3,2],[1,2,2,0]],[[2,2,2,1],[1,3,0,2],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,3,0,2],[1,0,3,2],[1,2,1,2]],[[1,2,2,1],[1,3,0,2],[1,0,3,3],[1,2,1,1]],[[1,2,2,1],[1,3,0,2],[1,0,4,2],[1,2,1,1]],[[1,2,2,1],[1,3,0,3],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,4,0,2],[1,0,3,2],[1,2,1,1]],[[1,2,2,2],[1,3,0,2],[1,0,3,2],[1,2,1,1]],[[1,2,3,1],[1,3,0,2],[1,0,3,2],[1,2,1,1]],[[1,3,2,1],[1,3,0,2],[1,0,3,2],[1,2,1,1]],[[2,2,2,1],[1,3,0,2],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,3,0,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[1,3,0,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,1],[1,3,0,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,1],[1,3,0,3],[1,0,3,2],[0,2,2,1]],[[1,2,2,2],[1,3,0,2],[1,0,3,2],[0,2,2,1]],[[1,2,3,1],[1,3,0,2],[1,0,3,2],[0,2,2,1]],[[1,3,2,1],[1,3,0,2],[1,0,3,2],[0,2,2,1]],[[2,2,2,1],[1,3,0,2],[1,0,3,2],[0,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,0,3,1],[1,2,2,2]],[[1,2,2,1],[1,3,0,2],[1,0,3,1],[1,2,3,1]],[[1,2,2,1],[1,3,0,2],[1,0,3,1],[1,3,2,1]],[[1,2,2,1],[1,3,0,2],[1,0,3,1],[2,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,0,4,1],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,0,2,2],[1,2,2,2]],[[1,2,2,1],[1,3,0,2],[1,0,2,2],[1,2,3,1]],[[1,2,2,1],[1,3,0,2],[1,0,2,2],[1,3,2,1]],[[1,2,2,1],[1,3,0,2],[1,0,2,2],[2,2,2,1]],[[1,2,2,1],[1,3,0,2],[1,0,2,3],[1,2,2,1]],[[1,2,2,1],[1,3,0,3],[1,0,2,2],[1,2,2,1]],[[1,2,2,1],[1,4,0,2],[1,0,2,2],[1,2,2,1]],[[1,2,2,2],[1,3,0,2],[1,0,2,2],[1,2,2,1]],[[1,2,3,1],[1,3,0,2],[1,0,2,2],[1,2,2,1]],[[1,3,2,1],[1,3,0,2],[1,0,2,2],[1,2,2,1]],[[2,2,2,1],[1,3,0,2],[1,0,2,2],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,3,0,2],[0,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,3],[0,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,4,0,2],[0,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,3,0,2],[0,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,0,2],[0,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,0,2],[0,3,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,0,2],[0,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,2],[0,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,3,0,2],[0,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,3,0,2],[0,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,3,0,3],[0,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,4,0,2],[0,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,3,0,2],[0,3,3,2],[0,2,0,1]],[[1,2,3,1],[1,3,0,2],[0,3,3,2],[0,2,0,1]],[[1,3,2,1],[1,3,0,2],[0,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,0,2],[0,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,3,0,2],[0,3,3,2],[0,1,3,0]],[[1,2,2,1],[1,3,0,2],[0,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,3,0,2],[0,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,3,0,3],[0,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,4,0,2],[0,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,0,2],[0,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,0,2],[0,3,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,0,2],[0,3,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,0,2],[0,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,3,0,2],[0,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,3,0,2],[0,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,3,0,2],[0,3,4,2],[0,1,1,1]],[[1,2,2,1],[1,3,0,3],[0,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,4,0,2],[0,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,0,2],[0,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,0,2],[0,3,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,0,2],[0,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,0,2],[0,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,3,0,2],[0,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,3,0,2],[0,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,3,0,2],[0,3,4,2],[0,0,2,1]],[[1,2,2,1],[1,3,0,3],[0,3,3,2],[0,0,2,1]],[[1,2,2,1],[1,4,0,2],[0,3,3,2],[0,0,2,1]],[[1,2,2,2],[1,3,0,2],[0,3,3,2],[0,0,2,1]],[[1,2,3,1],[1,3,0,2],[0,3,3,2],[0,0,2,1]],[[1,3,2,1],[1,3,0,2],[0,3,3,2],[0,0,2,1]],[[2,2,2,1],[1,3,0,2],[0,3,3,2],[0,0,2,1]],[[1,2,2,1],[1,3,0,2],[0,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,3,0,2],[0,3,3,1],[2,2,1,0]],[[1,2,2,1],[1,3,0,2],[0,3,4,1],[1,2,1,0]],[[1,2,2,1],[1,3,0,2],[0,4,3,1],[1,2,1,0]],[[1,2,2,1],[1,3,0,3],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[1,4,0,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,2],[1,3,0,2],[0,3,3,1],[1,2,1,0]],[[1,2,3,1],[1,3,0,2],[0,3,3,1],[1,2,1,0]],[[1,3,2,1],[1,3,0,2],[0,3,3,1],[1,2,1,0]],[[2,2,2,1],[1,3,0,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[1,3,0,2],[0,3,3,1],[1,3,0,1]],[[1,2,2,1],[1,3,0,2],[0,3,3,1],[2,2,0,1]],[[1,2,2,1],[1,3,0,2],[0,3,4,1],[1,2,0,1]],[[1,2,2,1],[1,3,0,2],[0,4,3,1],[1,2,0,1]],[[1,2,2,1],[1,3,0,3],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[1,4,0,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,2],[1,3,0,2],[0,3,3,1],[1,2,0,1]],[[1,2,3,1],[1,3,0,2],[0,3,3,1],[1,2,0,1]],[[1,3,2,1],[1,3,0,2],[0,3,3,1],[1,2,0,1]],[[2,2,2,1],[1,3,0,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[1,3,0,2],[0,3,3,1],[1,1,3,0]],[[1,2,2,1],[1,3,0,2],[0,3,4,1],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[0,4,3,1],[1,1,2,0]],[[1,2,2,1],[1,3,0,3],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[1,4,0,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,2],[1,3,0,2],[0,3,3,1],[1,1,2,0]],[[1,2,3,1],[1,3,0,2],[0,3,3,1],[1,1,2,0]],[[1,3,2,1],[1,3,0,2],[0,3,3,1],[1,1,2,0]],[[2,2,2,1],[1,3,0,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[0,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[0,4,3,1],[1,1,1,1]],[[1,2,2,1],[1,3,0,3],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,0,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,0,2],[0,3,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,0,2],[0,3,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,0,2],[0,3,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,0,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[0,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,3,0,2],[0,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,3,0,2],[0,3,4,1],[0,1,2,1]],[[1,2,2,1],[1,3,0,2],[0,3,3,0],[1,3,1,1]],[[1,2,2,1],[1,3,0,2],[0,3,3,0],[2,2,1,1]],[[1,2,2,1],[1,3,0,2],[0,3,4,0],[1,2,1,1]],[[1,2,2,1],[1,3,0,2],[0,4,3,0],[1,2,1,1]],[[1,2,2,1],[1,3,0,3],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[1,4,0,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,2],[1,3,0,2],[0,3,3,0],[1,2,1,1]],[[1,2,3,1],[1,3,0,2],[0,3,3,0],[1,2,1,1]],[[1,3,2,1],[1,3,0,2],[0,3,3,0],[1,2,1,1]],[[2,2,2,1],[1,3,0,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[1,3,0,2],[0,3,3,0],[1,1,2,2]],[[1,2,2,1],[1,3,0,2],[0,3,3,0],[1,1,3,1]],[[1,2,2,1],[1,3,0,2],[0,3,4,0],[1,1,2,1]],[[1,2,2,1],[1,3,0,2],[0,4,3,0],[1,1,2,1]],[[1,2,2,1],[1,3,0,3],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[1,4,0,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,2],[1,3,0,2],[0,3,3,0],[1,1,2,1]],[[1,2,3,1],[1,3,0,2],[0,3,3,0],[1,1,2,1]],[[1,3,2,1],[1,3,0,2],[0,3,3,0],[1,1,2,1]],[[2,2,2,1],[1,3,0,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[1,3,0,2],[0,3,2,2],[1,3,1,0]],[[1,2,2,1],[1,3,0,2],[0,3,2,2],[2,2,1,0]],[[1,2,2,1],[1,3,0,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,1],[1,3,0,2],[0,4,2,2],[1,2,1,0]],[[1,2,2,1],[1,3,0,3],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[1,4,0,2],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[1,3,0,2],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[1,3,0,2],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[1,3,0,2],[0,3,2,2],[1,2,1,0]],[[2,2,2,1],[1,3,0,2],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[1,3,0,2],[0,3,2,2],[1,2,0,2]],[[1,2,2,1],[1,3,0,2],[0,3,2,2],[1,3,0,1]],[[1,2,2,1],[1,3,0,2],[0,3,2,2],[2,2,0,1]],[[1,2,2,1],[1,3,0,2],[0,3,2,3],[1,2,0,1]],[[1,2,2,1],[1,3,0,2],[0,4,2,2],[1,2,0,1]],[[1,2,2,1],[1,3,0,3],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[1,4,0,2],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[1,3,0,2],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[1,3,0,2],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[1,3,0,2],[0,3,2,2],[1,2,0,1]],[[2,2,2,1],[1,3,0,2],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[1,3,0,2],[0,3,2,3],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[0,4,2,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,3],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,4,0,2],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[1,3,0,2],[0,3,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,0,2],[0,3,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,0,2],[0,3,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,0,2],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[0,3,2,2],[1,1,1,2]],[[1,2,2,1],[1,3,0,2],[0,3,2,3],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[0,4,2,2],[1,1,1,1]],[[1,2,2,1],[1,3,0,3],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[1,4,0,2],[0,3,2,2],[1,1,1,1]],[[1,2,2,2],[1,3,0,2],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[1,3,0,2],[0,3,2,2],[1,1,1,1]],[[1,3,2,1],[1,3,0,2],[0,3,2,2],[1,1,1,1]],[[2,2,2,1],[1,3,0,2],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[0,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,3,0,2],[0,3,2,2],[0,1,3,1]],[[1,2,2,1],[1,3,0,2],[0,3,2,3],[0,1,2,1]],[[1,2,2,1],[1,3,0,3],[0,3,2,2],[0,1,2,1]],[[1,2,2,1],[1,4,0,2],[0,3,2,2],[0,1,2,1]],[[1,2,2,2],[1,3,0,2],[0,3,2,2],[0,1,2,1]],[[1,2,3,1],[1,3,0,2],[0,3,2,2],[0,1,2,1]],[[1,3,2,1],[1,3,0,2],[0,3,2,2],[0,1,2,1]],[[2,2,2,1],[1,3,0,2],[0,3,2,2],[0,1,2,1]],[[1,2,2,1],[1,3,0,2],[0,3,2,1],[1,2,3,0]],[[1,2,2,1],[1,3,0,2],[0,3,2,1],[1,3,2,0]],[[1,2,2,1],[1,3,0,2],[0,3,2,1],[2,2,2,0]],[[1,2,2,1],[1,3,0,2],[0,4,2,1],[1,2,2,0]],[[1,2,2,1],[1,3,0,3],[0,3,2,1],[1,2,2,0]],[[1,2,2,1],[1,4,0,2],[0,3,2,1],[1,2,2,0]],[[1,2,2,2],[1,3,0,2],[0,3,2,1],[1,2,2,0]],[[1,2,3,1],[1,3,0,2],[0,3,2,1],[1,2,2,0]],[[1,3,2,1],[1,3,0,2],[0,3,2,1],[1,2,2,0]],[[2,2,2,1],[1,3,0,2],[0,3,2,1],[1,2,2,0]],[[1,2,2,1],[1,3,0,2],[0,3,2,0],[1,2,2,2]],[[1,2,2,1],[1,3,0,2],[0,3,2,0],[1,2,3,1]],[[1,2,2,1],[1,3,0,2],[0,3,2,0],[1,3,2,1]],[[1,2,2,1],[1,3,0,2],[0,3,2,0],[2,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,4,2,0],[1,2,2,1]],[[1,2,2,1],[1,3,0,3],[0,3,2,0],[1,2,2,1]],[[1,2,2,1],[1,4,0,2],[0,3,2,0],[1,2,2,1]],[[1,2,2,2],[1,3,0,2],[0,3,2,0],[1,2,2,1]],[[1,2,3,1],[1,3,0,2],[0,3,2,0],[1,2,2,1]],[[1,3,2,1],[1,3,0,2],[0,3,2,0],[1,2,2,1]],[[2,2,2,1],[1,3,0,2],[0,3,2,0],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,3,1,2],[1,2,3,0]],[[1,2,2,1],[1,3,0,2],[0,3,1,2],[1,3,2,0]],[[1,2,2,1],[1,3,0,2],[0,3,1,2],[2,2,2,0]],[[1,2,2,1],[1,3,0,2],[0,3,1,3],[1,2,2,0]],[[1,2,2,1],[1,3,0,2],[0,4,1,2],[1,2,2,0]],[[1,2,2,1],[1,3,0,3],[0,3,1,2],[1,2,2,0]],[[1,2,2,1],[1,4,0,2],[0,3,1,2],[1,2,2,0]],[[1,2,2,2],[1,3,0,2],[0,3,1,2],[1,2,2,0]],[[1,2,3,1],[1,3,0,2],[0,3,1,2],[1,2,2,0]],[[1,3,2,1],[1,3,0,2],[0,3,1,2],[1,2,2,0]],[[2,2,2,1],[1,3,0,2],[0,3,1,2],[1,2,2,0]],[[1,2,2,1],[1,3,0,2],[0,3,1,2],[1,2,1,2]],[[1,2,2,1],[1,3,0,2],[0,3,1,2],[1,3,1,1]],[[1,2,2,1],[1,3,0,2],[0,3,1,2],[2,2,1,1]],[[1,2,2,1],[1,3,0,2],[0,3,1,3],[1,2,1,1]],[[1,2,2,1],[1,3,0,2],[0,4,1,2],[1,2,1,1]],[[1,2,2,1],[1,3,0,3],[0,3,1,2],[1,2,1,1]],[[1,2,2,1],[1,4,0,2],[0,3,1,2],[1,2,1,1]],[[1,2,2,2],[1,3,0,2],[0,3,1,2],[1,2,1,1]],[[1,2,3,1],[1,3,0,2],[0,3,1,2],[1,2,1,1]],[[1,3,2,1],[1,3,0,2],[0,3,1,2],[1,2,1,1]],[[2,2,2,1],[1,3,0,2],[0,3,1,2],[1,2,1,1]],[[1,2,2,1],[1,3,0,2],[0,3,1,2],[1,1,2,2]],[[1,2,2,1],[1,3,0,2],[0,3,1,2],[1,1,3,1]],[[1,2,2,1],[1,3,0,2],[0,3,1,3],[1,1,2,1]],[[1,2,2,1],[1,3,0,2],[0,4,1,2],[1,1,2,1]],[[1,2,2,1],[1,3,0,3],[0,3,1,2],[1,1,2,1]],[[1,2,2,1],[1,4,0,2],[0,3,1,2],[1,1,2,1]],[[1,2,2,2],[1,3,0,2],[0,3,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,0,2],[0,3,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,0,2],[0,3,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,0,2],[0,3,1,2],[1,1,2,1]],[[1,2,2,1],[1,3,0,2],[0,3,1,1],[1,2,2,2]],[[1,2,2,1],[1,3,0,2],[0,3,1,1],[1,2,3,1]],[[1,2,2,1],[1,3,0,2],[0,3,1,1],[1,3,2,1]],[[1,2,2,1],[1,3,0,2],[0,3,1,1],[2,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,4,1,1],[1,2,2,1]],[[1,2,2,1],[1,3,0,3],[0,3,1,1],[1,2,2,1]],[[1,2,2,1],[1,4,0,2],[0,3,1,1],[1,2,2,1]],[[1,2,2,2],[1,3,0,2],[0,3,1,1],[1,2,2,1]],[[1,2,3,1],[1,3,0,2],[0,3,1,1],[1,2,2,1]],[[1,3,2,1],[1,3,0,2],[0,3,1,1],[1,2,2,1]],[[2,2,2,1],[1,3,0,2],[0,3,1,1],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[1,3,0,2],[0,2,4,2],[1,2,1,0]],[[1,2,2,1],[1,3,0,3],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[1,4,0,2],[0,2,3,2],[1,2,1,0]],[[1,2,2,2],[1,3,0,2],[0,2,3,2],[1,2,1,0]],[[1,2,3,1],[1,3,0,2],[0,2,3,2],[1,2,1,0]],[[1,3,2,1],[1,3,0,2],[0,2,3,2],[1,2,1,0]],[[2,2,2,1],[1,3,0,2],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[1,3,0,2],[0,2,3,2],[1,2,0,2]],[[1,2,2,1],[1,3,0,2],[0,2,3,3],[1,2,0,1]],[[1,2,2,1],[1,3,0,2],[0,2,4,2],[1,2,0,1]],[[1,2,2,1],[1,3,0,3],[0,2,3,2],[1,2,0,1]],[[1,2,2,1],[1,4,0,2],[0,2,3,2],[1,2,0,1]],[[1,2,2,2],[1,3,0,2],[0,2,3,2],[1,2,0,1]],[[1,2,3,1],[1,3,0,2],[0,2,3,2],[1,2,0,1]],[[1,3,2,1],[1,3,0,2],[0,2,3,2],[1,2,0,1]],[[2,2,2,1],[1,3,0,2],[0,2,3,2],[1,2,0,1]],[[1,2,2,1],[1,3,0,2],[0,2,3,2],[1,1,3,0]],[[1,2,2,1],[1,3,0,2],[0,2,3,3],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[0,2,4,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,3],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[1,4,0,2],[0,2,3,2],[1,1,2,0]],[[1,2,2,2],[1,3,0,2],[0,2,3,2],[1,1,2,0]],[[1,2,3,1],[1,3,0,2],[0,2,3,2],[1,1,2,0]],[[1,3,2,1],[1,3,0,2],[0,2,3,2],[1,1,2,0]],[[2,2,2,1],[1,3,0,2],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,2],[0,2,3,2],[1,1,1,2]],[[1,2,2,1],[1,3,0,2],[0,2,3,3],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[0,2,4,2],[1,1,1,1]],[[1,2,2,1],[1,3,0,3],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[1,4,0,2],[0,2,3,2],[1,1,1,1]],[[1,2,2,2],[1,3,0,2],[0,2,3,2],[1,1,1,1]],[[1,2,3,1],[1,3,0,2],[0,2,3,2],[1,1,1,1]],[[1,3,2,1],[1,3,0,2],[0,2,3,2],[1,1,1,1]],[[2,2,2,1],[1,3,0,2],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[1,3,0,2],[0,2,3,2],[1,0,2,2]],[[1,2,2,1],[1,3,0,2],[0,2,3,3],[1,0,2,1]],[[1,2,2,1],[1,3,0,2],[0,2,4,2],[1,0,2,1]],[[1,2,2,1],[1,3,0,3],[0,2,3,2],[1,0,2,1]],[[1,2,2,1],[1,4,0,2],[0,2,3,2],[1,0,2,1]],[[1,2,2,2],[1,3,0,2],[0,2,3,2],[1,0,2,1]],[[1,2,3,1],[1,3,0,2],[0,2,3,2],[1,0,2,1]],[[1,3,2,1],[1,3,0,2],[0,2,3,2],[1,0,2,1]],[[2,2,2,1],[1,3,0,2],[0,2,3,2],[1,0,2,1]],[[1,2,2,1],[1,3,0,2],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[1,3,0,2],[0,2,3,1],[1,3,2,0]],[[1,2,2,1],[1,3,0,2],[0,2,3,1],[2,2,2,0]],[[1,2,2,1],[1,3,0,2],[0,2,4,1],[1,2,2,0]],[[1,2,2,1],[1,3,0,2],[0,2,3,1],[1,1,2,2]],[[1,2,2,1],[1,3,0,2],[0,2,3,1],[1,1,3,1]],[[1,2,2,1],[1,3,0,2],[0,2,4,1],[1,1,2,1]],[[1,2,2,1],[1,3,0,2],[0,2,3,0],[1,2,2,2]],[[1,2,2,1],[1,3,0,2],[0,2,3,0],[1,2,3,1]],[[1,2,2,1],[1,3,0,2],[0,2,3,0],[1,3,2,1]],[[1,2,2,1],[1,3,0,2],[0,2,3,0],[2,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,2,4,0],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,2,2,2],[1,1,2,2]],[[1,2,2,1],[1,3,0,2],[0,2,2,2],[1,1,3,1]],[[1,2,2,1],[1,3,0,2],[0,2,2,3],[1,1,2,1]],[[1,2,2,1],[1,3,0,3],[0,2,2,2],[1,1,2,1]],[[1,2,2,1],[1,4,0,2],[0,2,2,2],[1,1,2,1]],[[1,2,2,2],[1,3,0,2],[0,2,2,2],[1,1,2,1]],[[1,2,3,1],[1,3,0,2],[0,2,2,2],[1,1,2,1]],[[1,3,2,1],[1,3,0,2],[0,2,2,2],[1,1,2,1]],[[2,2,2,1],[1,3,0,2],[0,2,2,2],[1,1,2,1]],[[1,2,2,1],[1,3,0,2],[0,2,1,2],[1,2,2,2]],[[1,2,2,1],[1,3,0,2],[0,2,1,2],[1,2,3,1]],[[1,2,2,1],[1,3,0,2],[0,2,1,2],[1,3,2,1]],[[1,2,2,1],[1,3,0,2],[0,2,1,2],[2,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,2,1,3],[1,2,2,1]],[[1,2,2,1],[1,3,0,3],[0,2,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,0,2],[0,2,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,0,2],[0,2,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,0,2],[0,2,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,0,2],[0,2,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,0,2],[0,2,1,2],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,1,3,2],[1,2,3,0]],[[1,2,2,1],[1,3,0,2],[0,1,3,2],[1,3,2,0]],[[1,2,2,1],[1,3,0,2],[0,1,3,2],[2,2,2,0]],[[1,2,2,1],[1,3,0,2],[0,1,3,3],[1,2,2,0]],[[1,2,2,1],[1,3,0,2],[0,1,4,2],[1,2,2,0]],[[1,2,2,1],[1,3,0,3],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,4,0,2],[0,1,3,2],[1,2,2,0]],[[1,2,2,2],[1,3,0,2],[0,1,3,2],[1,2,2,0]],[[1,2,3,1],[1,3,0,2],[0,1,3,2],[1,2,2,0]],[[1,3,2,1],[1,3,0,2],[0,1,3,2],[1,2,2,0]],[[2,2,2,1],[1,3,0,2],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,3,0,2],[0,1,3,2],[1,2,1,2]],[[1,2,2,1],[1,3,0,2],[0,1,3,3],[1,2,1,1]],[[1,2,2,1],[1,3,0,2],[0,1,4,2],[1,2,1,1]],[[1,2,2,1],[1,3,0,3],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[1,4,0,2],[0,1,3,2],[1,2,1,1]],[[1,2,2,2],[1,3,0,2],[0,1,3,2],[1,2,1,1]],[[1,2,3,1],[1,3,0,2],[0,1,3,2],[1,2,1,1]],[[1,3,2,1],[1,3,0,2],[0,1,3,2],[1,2,1,1]],[[2,2,2,1],[1,3,0,2],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[1,3,0,2],[0,1,3,1],[1,2,2,2]],[[1,2,2,1],[1,3,0,2],[0,1,3,1],[1,2,3,1]],[[1,2,2,1],[1,3,0,2],[0,1,3,1],[1,3,2,1]],[[1,2,2,1],[1,3,0,2],[0,1,3,1],[2,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,1,4,1],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,1,2,2],[1,2,2,2]],[[1,2,2,1],[1,3,0,2],[0,1,2,2],[1,2,3,1]],[[1,2,2,1],[1,3,0,2],[0,1,2,2],[1,3,2,1]],[[1,2,2,1],[1,3,0,2],[0,1,2,2],[2,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,1,2,3],[1,2,2,1]],[[1,2,2,1],[1,3,0,3],[0,1,2,2],[1,2,2,1]],[[1,2,2,1],[1,4,0,2],[0,1,2,2],[1,2,2,1]],[[1,2,2,2],[1,3,0,2],[0,1,2,2],[1,2,2,1]],[[1,2,3,1],[1,3,0,2],[0,1,2,2],[1,2,2,1]],[[1,3,2,1],[1,3,0,2],[0,1,2,2],[1,2,2,1]],[[2,2,2,1],[1,3,0,2],[0,1,2,2],[1,2,2,1]],[[1,2,2,1],[1,3,0,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[1,3,0,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,1],[1,3,0,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,1],[1,3,0,3],[0,0,3,2],[1,2,2,1]],[[1,2,2,2],[1,3,0,2],[0,0,3,2],[1,2,2,1]],[[1,2,3,1],[1,3,0,2],[0,0,3,2],[1,2,2,1]],[[1,3,2,1],[1,3,0,2],[0,0,3,2],[1,2,2,1]],[[2,2,2,1],[1,3,0,2],[0,0,3,2],[1,2,2,1]],[[1,2,2,1],[1,4,0,1],[2,3,3,2],[1,0,1,0]],[[1,2,2,2],[1,3,0,1],[2,3,3,2],[1,0,1,0]],[[1,2,3,1],[1,3,0,1],[2,3,3,2],[1,0,1,0]],[[1,3,2,1],[1,3,0,1],[2,3,3,2],[1,0,1,0]],[[2,2,2,1],[1,3,0,1],[2,3,3,2],[1,0,1,0]],[[1,2,2,1],[1,4,0,1],[2,3,3,2],[1,0,0,1]],[[1,2,2,2],[1,3,0,1],[2,3,3,2],[1,0,0,1]],[[1,2,3,1],[1,3,0,1],[2,3,3,2],[1,0,0,1]],[[1,3,2,1],[1,3,0,1],[2,3,3,2],[1,0,0,1]],[[2,2,2,1],[1,3,0,1],[2,3,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,3,0],[0,0,3,3],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,0,3,2],[1,2,3,1]],[[0,2,1,1],[2,3,3,0],[0,0,3,2],[1,2,2,2]],[[0,2,1,1],[2,3,3,0],[0,1,2,3],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,1,2,2],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,1,2,2],[1,3,2,1]],[[0,2,1,1],[2,3,3,0],[0,1,2,2],[1,2,3,1]],[[0,2,1,1],[2,3,3,0],[0,1,2,2],[1,2,2,2]],[[0,3,1,1],[2,3,3,0],[0,1,3,1],[1,2,2,1]],[[0,2,1,1],[3,3,3,0],[0,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,4,3,0],[0,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,4,0],[0,1,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,1,4,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,1,3,1],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,1,3,1],[1,3,2,1]],[[0,2,1,1],[2,3,3,0],[0,1,3,1],[1,2,3,1]],[[0,2,1,1],[2,3,3,0],[0,1,3,1],[1,2,2,2]],[[0,3,1,1],[2,3,3,0],[0,1,3,2],[1,2,1,1]],[[0,2,1,1],[3,3,3,0],[0,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,4,3,0],[0,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,3,4,0],[0,1,3,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[0,1,4,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[0,1,3,3],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[0,1,3,2],[1,2,1,2]],[[0,3,1,1],[2,3,3,0],[0,1,3,2],[1,2,2,0]],[[0,2,1,1],[3,3,3,0],[0,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,4,3,0],[0,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,4,0],[0,1,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[0,1,4,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[0,1,3,3],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[0,1,3,2],[2,2,2,0]],[[0,2,1,1],[2,3,3,0],[0,1,3,2],[1,3,2,0]],[[0,2,1,1],[2,3,3,0],[0,1,3,2],[1,2,3,0]],[[0,2,1,1],[2,3,3,0],[0,2,2,3],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[0,2,2,2],[1,1,3,1]],[[0,2,1,1],[2,3,3,0],[0,2,2,2],[1,1,2,2]],[[0,3,1,1],[2,3,3,0],[0,2,3,1],[1,1,2,1]],[[0,2,1,1],[3,3,3,0],[0,2,3,1],[1,1,2,1]],[[0,2,1,1],[2,4,3,0],[0,2,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,4,0],[0,2,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[0,2,4,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[0,2,3,1],[1,1,3,1]],[[0,2,1,1],[2,3,3,0],[0,2,3,1],[1,1,2,2]],[[0,3,1,1],[2,3,3,0],[0,2,3,1],[1,2,1,1]],[[0,2,1,1],[3,3,3,0],[0,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,4,3,0],[0,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,4,0],[0,2,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[0,2,4,1],[1,2,1,1]],[[0,3,1,1],[2,3,3,0],[0,2,3,2],[1,0,2,1]],[[0,2,1,1],[2,4,3,0],[0,2,3,2],[1,0,2,1]],[[0,2,1,1],[2,3,4,0],[0,2,3,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[0,2,4,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[0,2,3,3],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[0,2,3,2],[1,0,2,2]],[[0,3,1,1],[2,3,3,0],[0,2,3,2],[1,1,1,1]],[[0,2,1,1],[3,3,3,0],[0,2,3,2],[1,1,1,1]],[[0,2,1,1],[2,4,3,0],[0,2,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,4,0],[0,2,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[0,2,4,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[0,2,3,3],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[0,2,3,2],[1,1,1,2]],[[0,3,1,1],[2,3,3,0],[0,2,3,2],[1,1,2,0]],[[0,2,1,1],[3,3,3,0],[0,2,3,2],[1,1,2,0]],[[0,2,1,1],[2,4,3,0],[0,2,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,0],[0,2,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[0,2,4,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[0,2,3,3],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[0,2,3,2],[1,1,3,0]],[[0,3,1,1],[2,3,3,0],[0,2,3,2],[1,2,0,1]],[[0,2,1,1],[3,3,3,0],[0,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,4,3,0],[0,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,4,0],[0,2,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[0,2,4,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[0,2,3,3],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[0,2,3,2],[1,2,0,2]],[[0,3,1,1],[2,3,3,0],[0,2,3,2],[1,2,1,0]],[[0,2,1,1],[3,3,3,0],[0,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,4,3,0],[0,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,4,0],[0,2,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[0,2,4,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[0,2,3,3],[1,2,1,0]],[[0,3,1,1],[2,3,3,0],[0,3,0,2],[1,2,2,1]],[[0,2,1,1],[3,3,3,0],[0,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,4,3,0],[0,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,4,0],[0,3,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,4,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,0,3],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,0,2],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,0,2],[1,3,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,0,2],[1,2,3,1]],[[0,2,1,1],[2,3,3,0],[0,3,0,2],[1,2,2,2]],[[0,3,1,1],[2,3,3,0],[0,3,1,1],[1,2,2,1]],[[0,2,1,1],[3,3,3,0],[0,3,1,1],[1,2,2,1]],[[0,2,1,1],[2,4,3,0],[0,3,1,1],[1,2,2,1]],[[0,2,1,1],[2,3,4,0],[0,3,1,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,4,1,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,1,1],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,1,1],[1,3,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,1,1],[1,2,3,1]],[[0,2,1,1],[2,3,3,0],[0,3,1,1],[1,2,2,2]],[[0,3,1,1],[2,3,3,0],[0,3,1,2],[1,2,2,0]],[[0,2,1,1],[3,3,3,0],[0,3,1,2],[1,2,2,0]],[[0,2,1,1],[2,4,3,0],[0,3,1,2],[1,2,2,0]],[[0,2,1,1],[2,3,4,0],[0,3,1,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[0,4,1,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[0,3,1,2],[2,2,2,0]],[[0,2,1,1],[2,3,3,0],[0,3,1,2],[1,3,2,0]],[[0,2,1,1],[2,3,3,0],[0,3,1,2],[1,2,3,0]],[[0,3,1,1],[2,3,3,0],[0,3,2,1],[1,1,2,1]],[[0,2,1,1],[3,3,3,0],[0,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,4,3,0],[0,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,4,0],[0,3,2,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[0,4,2,1],[1,1,2,1]],[[0,3,1,1],[2,3,3,0],[0,3,2,1],[1,2,1,1]],[[0,2,1,1],[3,3,3,0],[0,3,2,1],[1,2,1,1]],[[0,2,1,1],[2,4,3,0],[0,3,2,1],[1,2,1,1]],[[0,2,1,1],[2,3,4,0],[0,3,2,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[0,4,2,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[0,3,2,1],[2,2,1,1]],[[0,2,1,1],[2,3,3,0],[0,3,2,1],[1,3,1,1]],[[0,2,1,1],[2,3,3,0],[0,3,2,3],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,2,2],[0,1,3,1]],[[0,2,1,1],[2,3,3,0],[0,3,2,2],[0,1,2,2]],[[0,3,1,1],[2,3,3,0],[0,3,2,2],[1,1,1,1]],[[0,2,1,1],[3,3,3,0],[0,3,2,2],[1,1,1,1]],[[0,2,1,1],[2,4,3,0],[0,3,2,2],[1,1,1,1]],[[0,2,1,1],[2,3,4,0],[0,3,2,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[0,4,2,2],[1,1,1,1]],[[0,3,1,1],[2,3,3,0],[0,3,2,2],[1,1,2,0]],[[0,2,1,1],[3,3,3,0],[0,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,4,3,0],[0,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,0],[0,3,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[0,4,2,2],[1,1,2,0]],[[0,3,1,1],[2,3,3,0],[0,3,2,2],[1,2,0,1]],[[0,2,1,1],[3,3,3,0],[0,3,2,2],[1,2,0,1]],[[0,2,1,1],[2,4,3,0],[0,3,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,4,0],[0,3,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[0,4,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[0,3,2,2],[2,2,0,1]],[[0,2,1,1],[2,3,3,0],[0,3,2,2],[1,3,0,1]],[[0,3,1,1],[2,3,3,0],[0,3,2,2],[1,2,1,0]],[[0,2,1,1],[3,3,3,0],[0,3,2,2],[1,2,1,0]],[[0,2,1,1],[2,4,3,0],[0,3,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,4,0],[0,3,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[0,4,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[0,3,2,2],[2,2,1,0]],[[0,2,1,1],[2,3,3,0],[0,3,2,2],[1,3,1,0]],[[0,3,1,1],[2,3,3,0],[0,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,4,3,0],[0,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,4,0],[0,3,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,4,1],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,3,1],[0,1,3,1]],[[0,2,1,1],[2,3,3,0],[0,3,3,1],[0,1,2,2]],[[0,3,1,1],[2,3,3,0],[0,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,4,3,0],[0,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,4,0],[0,3,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[0,3,4,1],[0,2,1,1]],[[0,3,1,1],[2,3,3,0],[0,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,4,3,0],[0,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,3,4,0],[0,3,3,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,4,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,3,3],[0,0,2,1]],[[0,2,1,1],[2,3,3,0],[0,3,3,2],[0,0,2,2]],[[0,3,1,1],[2,3,3,0],[0,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,4,3,0],[0,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,0],[0,3,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[0,3,4,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[0,3,3,3],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[0,3,3,2],[0,1,1,2]],[[0,3,1,1],[2,3,3,0],[0,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,4,3,0],[0,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,0],[0,3,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[0,3,4,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[0,3,3,3],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[0,3,3,2],[0,1,3,0]],[[0,3,1,1],[2,3,3,0],[0,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,0],[0,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,0],[0,3,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[0,3,4,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[0,3,3,3],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[0,3,3,2],[0,2,0,2]],[[0,3,1,1],[2,3,3,0],[0,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,0],[0,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,0],[0,3,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,0],[0,3,4,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,0],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,4,0,1],[2,2,3,2],[1,2,0,0]],[[1,2,2,2],[1,3,0,1],[2,2,3,2],[1,2,0,0]],[[1,2,3,1],[1,3,0,1],[2,2,3,2],[1,2,0,0]],[[1,3,2,1],[1,3,0,1],[2,2,3,2],[1,2,0,0]],[[2,2,2,1],[1,3,0,1],[2,2,3,2],[1,2,0,0]],[[0,3,1,1],[2,3,3,0],[0,3,3,2],[1,2,0,0]],[[0,2,1,1],[3,3,3,0],[0,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,4,3,0],[0,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,3,4,0],[0,3,3,2],[1,2,0,0]],[[0,2,1,1],[2,3,3,0],[0,4,3,2],[1,2,0,0]],[[1,2,2,1],[1,4,0,1],[2,2,3,2],[1,1,1,0]],[[1,2,2,2],[1,3,0,1],[2,2,3,2],[1,1,1,0]],[[1,2,3,1],[1,3,0,1],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[1,3,0,1],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[1,3,0,1],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[1,4,0,1],[2,2,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,0,1],[2,2,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,0,1],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,0,1],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,0,1],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,4,0,1],[2,2,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,0,1],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,0,1],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,0,1],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[1,3,0,1],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[1,4,0,1],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[1,3,0,1],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,0,1],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[1,3,0,1],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[1,3,0,1],[2,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[1,0,2,3],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,0,2,2],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,0,2,2],[1,3,2,1]],[[0,2,1,1],[2,3,3,0],[1,0,2,2],[1,2,3,1]],[[0,2,1,1],[2,3,3,0],[1,0,2,2],[1,2,2,2]],[[0,3,1,1],[2,3,3,0],[1,0,3,1],[1,2,2,1]],[[0,2,1,1],[3,3,3,0],[1,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,4,3,0],[1,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,4,0],[1,0,3,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,0,4,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,0,3,1],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,0,3,1],[1,3,2,1]],[[0,2,1,1],[2,3,3,0],[1,0,3,1],[1,2,3,1]],[[0,2,1,1],[2,3,3,0],[1,0,3,1],[1,2,2,2]],[[0,2,1,1],[2,3,3,0],[1,0,3,3],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,0,3,2],[0,2,3,1]],[[0,2,1,1],[2,3,3,0],[1,0,3,2],[0,2,2,2]],[[0,3,1,1],[2,3,3,0],[1,0,3,2],[1,2,1,1]],[[0,2,1,1],[3,3,3,0],[1,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,4,3,0],[1,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,3,4,0],[1,0,3,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[1,0,4,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[1,0,3,3],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[1,0,3,2],[1,2,1,2]],[[0,3,1,1],[2,3,3,0],[1,0,3,2],[1,2,2,0]],[[0,2,1,1],[3,3,3,0],[1,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,4,3,0],[1,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,4,0],[1,0,3,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[1,0,4,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[1,0,3,3],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[1,0,3,2],[2,2,2,0]],[[0,2,1,1],[2,3,3,0],[1,0,3,2],[1,3,2,0]],[[0,2,1,1],[2,3,3,0],[1,0,3,2],[1,2,3,0]],[[0,2,1,1],[2,3,3,0],[1,1,2,3],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,1,2,2],[0,3,2,1]],[[0,2,1,1],[2,3,3,0],[1,1,2,2],[0,2,3,1]],[[0,2,1,1],[2,3,3,0],[1,1,2,2],[0,2,2,2]],[[0,3,1,1],[2,3,3,0],[1,1,3,1],[0,2,2,1]],[[0,2,1,1],[3,3,3,0],[1,1,3,1],[0,2,2,1]],[[0,2,1,1],[2,4,3,0],[1,1,3,1],[0,2,2,1]],[[0,2,1,1],[2,3,4,0],[1,1,3,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,1,4,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,1,3,1],[0,3,2,1]],[[0,2,1,1],[2,3,3,0],[1,1,3,1],[0,2,3,1]],[[0,2,1,1],[2,3,3,0],[1,1,3,1],[0,2,2,2]],[[0,3,1,1],[2,3,3,0],[1,1,3,2],[0,2,1,1]],[[0,2,1,1],[3,3,3,0],[1,1,3,2],[0,2,1,1]],[[0,2,1,1],[2,4,3,0],[1,1,3,2],[0,2,1,1]],[[0,2,1,1],[2,3,4,0],[1,1,3,2],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[1,1,4,2],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[1,1,3,3],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[1,1,3,2],[0,2,1,2]],[[0,3,1,1],[2,3,3,0],[1,1,3,2],[0,2,2,0]],[[0,2,1,1],[3,3,3,0],[1,1,3,2],[0,2,2,0]],[[0,2,1,1],[2,4,3,0],[1,1,3,2],[0,2,2,0]],[[0,2,1,1],[2,3,4,0],[1,1,3,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,0],[1,1,4,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,0],[1,1,3,3],[0,2,2,0]],[[0,2,1,1],[2,3,3,0],[1,1,3,2],[0,3,2,0]],[[0,2,1,1],[2,3,3,0],[1,1,3,2],[0,2,3,0]],[[0,2,1,1],[2,3,3,0],[1,2,2,3],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[1,2,2,2],[0,1,3,1]],[[0,2,1,1],[2,3,3,0],[1,2,2,2],[0,1,2,2]],[[0,2,1,1],[2,3,3,0],[1,2,2,3],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[1,2,2,2],[1,0,3,1]],[[0,2,1,1],[2,3,3,0],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[1,4,0,1],[2,2,3,2],[0,2,1,0]],[[0,3,1,1],[2,3,3,0],[1,2,3,1],[0,1,2,1]],[[0,2,1,1],[3,3,3,0],[1,2,3,1],[0,1,2,1]],[[0,2,1,1],[2,4,3,0],[1,2,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,4,0],[1,2,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[1,2,4,1],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,1],[0,1,3,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,1],[0,1,2,2]],[[0,3,1,1],[2,3,3,0],[1,2,3,1],[0,2,1,1]],[[0,2,1,1],[3,3,3,0],[1,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,4,3,0],[1,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,4,0],[1,2,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[1,2,4,1],[0,2,1,1]],[[0,3,1,1],[2,3,3,0],[1,2,3,1],[1,0,2,1]],[[0,2,1,1],[3,3,3,0],[1,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,4,3,0],[1,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,4,0],[1,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[1,2,4,1],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,1],[1,0,3,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,1],[1,0,2,2]],[[0,3,1,1],[2,3,3,0],[1,2,3,1],[1,1,1,1]],[[0,2,1,1],[3,3,3,0],[1,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,4,3,0],[1,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,4,0],[1,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[1,2,4,1],[1,1,1,1]],[[1,2,2,2],[1,3,0,1],[2,2,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,0,1],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,0,1],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,0,1],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[1,4,0,1],[2,2,3,2],[0,2,0,1]],[[1,2,2,2],[1,3,0,1],[2,2,3,2],[0,2,0,1]],[[1,2,3,1],[1,3,0,1],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[1,3,0,1],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,0,1],[2,2,3,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,0],[1,2,3,2],[0,0,2,1]],[[0,2,1,1],[3,3,3,0],[1,2,3,2],[0,0,2,1]],[[0,2,1,1],[2,4,3,0],[1,2,3,2],[0,0,2,1]],[[0,2,1,1],[2,3,4,0],[1,2,3,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,0],[1,2,4,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,3],[0,0,2,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,2],[0,0,2,2]],[[0,3,1,1],[2,3,3,0],[1,2,3,2],[0,1,1,1]],[[0,2,1,1],[3,3,3,0],[1,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,4,3,0],[1,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,0],[1,2,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[1,2,4,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,3],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,2],[0,1,1,2]],[[0,3,1,1],[2,3,3,0],[1,2,3,2],[0,1,2,0]],[[0,2,1,1],[3,3,3,0],[1,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,4,3,0],[1,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,0],[1,2,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[1,2,4,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[1,2,3,3],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[1,2,3,2],[0,1,3,0]],[[0,3,1,1],[2,3,3,0],[1,2,3,2],[0,2,0,1]],[[0,2,1,1],[3,3,3,0],[1,2,3,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,0],[1,2,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,0],[1,2,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[1,2,4,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,3],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,2],[0,2,0,2]],[[0,3,1,1],[2,3,3,0],[1,2,3,2],[0,2,1,0]],[[0,2,1,1],[3,3,3,0],[1,2,3,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,0],[1,2,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,0],[1,2,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,0],[1,2,4,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,0],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[1,4,0,1],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,0,1],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,0,1],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[1,3,0,1],[2,2,3,2],[0,1,2,0]],[[0,3,1,1],[2,3,3,0],[1,2,3,2],[1,0,1,1]],[[0,2,1,1],[3,3,3,0],[1,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,4,3,0],[1,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,4,0],[1,2,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[1,2,4,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,3],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,2],[1,0,1,2]],[[0,3,1,1],[2,3,3,0],[1,2,3,2],[1,0,2,0]],[[0,2,1,1],[3,3,3,0],[1,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,4,3,0],[1,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,4,0],[1,2,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,0],[1,2,4,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,0],[1,2,3,3],[1,0,2,0]],[[0,2,1,1],[2,3,3,0],[1,2,3,2],[1,0,3,0]],[[0,3,1,1],[2,3,3,0],[1,2,3,2],[1,1,0,1]],[[0,2,1,1],[3,3,3,0],[1,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,4,3,0],[1,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,0],[1,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[1,2,4,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,3],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[1,2,3,2],[1,1,0,2]],[[0,3,1,1],[2,3,3,0],[1,2,3,2],[1,1,1,0]],[[0,2,1,1],[3,3,3,0],[1,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,4,3,0],[1,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,4,0],[1,2,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,0],[1,2,4,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,0],[1,2,3,3],[1,1,1,0]],[[2,2,2,1],[1,3,0,1],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[1,4,0,1],[2,2,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,0,1],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,0,1],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[1,3,0,1],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,0,1],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[1,4,0,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,0,1],[2,2,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,0,1],[2,2,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,0,1],[2,2,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,0,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,0,1],[2,2,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,0,1],[2,2,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,0,1],[2,2,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,0,1],[2,2,3,1],[1,0,2,1]],[[2,2,2,1],[1,3,0,1],[2,2,3,1],[1,0,2,1]],[[0,3,1,1],[2,3,3,0],[1,3,0,2],[0,2,2,1]],[[0,2,1,1],[3,3,3,0],[1,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,4,3,0],[1,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,4,0],[1,3,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,4,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,3,0,3],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,3,0,2],[0,3,2,1]],[[0,2,1,1],[2,3,3,0],[1,3,0,2],[0,2,3,1]],[[0,2,1,1],[2,3,3,0],[1,3,0,2],[0,2,2,2]],[[0,3,1,1],[2,3,3,0],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[3,3,3,0],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,4,3,0],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,4,0],[1,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[1,4,0,2],[1,1,2,1]],[[0,3,1,1],[2,3,3,0],[1,3,1,1],[0,2,2,1]],[[0,2,1,1],[3,3,3,0],[1,3,1,1],[0,2,2,1]],[[0,2,1,1],[2,4,3,0],[1,3,1,1],[0,2,2,1]],[[0,2,1,1],[2,3,4,0],[1,3,1,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,4,1,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[1,3,1,1],[0,3,2,1]],[[0,2,1,1],[2,3,3,0],[1,3,1,1],[0,2,3,1]],[[0,2,1,1],[2,3,3,0],[1,3,1,1],[0,2,2,2]],[[0,3,1,1],[2,3,3,0],[1,3,1,1],[1,1,2,1]],[[0,2,1,1],[3,3,3,0],[1,3,1,1],[1,1,2,1]],[[0,2,1,1],[2,4,3,0],[1,3,1,1],[1,1,2,1]],[[0,2,1,1],[2,3,4,0],[1,3,1,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[1,4,1,1],[1,1,2,1]],[[0,3,1,1],[2,3,3,0],[1,3,1,2],[0,2,2,0]],[[0,2,1,1],[3,3,3,0],[1,3,1,2],[0,2,2,0]],[[0,2,1,1],[2,4,3,0],[1,3,1,2],[0,2,2,0]],[[0,2,1,1],[2,3,4,0],[1,3,1,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,0],[1,4,1,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,0],[1,3,1,2],[0,3,2,0]],[[0,2,1,1],[2,3,3,0],[1,3,1,2],[0,2,3,0]],[[0,3,1,1],[2,3,3,0],[1,3,1,2],[1,1,2,0]],[[0,2,1,1],[3,3,3,0],[1,3,1,2],[1,1,2,0]],[[0,2,1,1],[2,4,3,0],[1,3,1,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,0],[1,3,1,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[1,4,1,2],[1,1,2,0]],[[1,2,2,1],[1,4,0,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,0,1],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,0,1],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,0,1],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,0,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,0,1],[2,2,3,1],[0,1,2,1]],[[0,3,1,1],[2,3,3,0],[1,3,2,1],[0,1,2,1]],[[0,2,1,1],[3,3,3,0],[1,3,2,1],[0,1,2,1]],[[0,2,1,1],[2,4,3,0],[1,3,2,1],[0,1,2,1]],[[0,2,1,1],[2,3,4,0],[1,3,2,1],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[1,4,2,1],[0,1,2,1]],[[0,3,1,1],[2,3,3,0],[1,3,2,1],[0,2,1,1]],[[0,2,1,1],[3,3,3,0],[1,3,2,1],[0,2,1,1]],[[0,2,1,1],[2,4,3,0],[1,3,2,1],[0,2,1,1]],[[0,2,1,1],[2,3,4,0],[1,3,2,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[1,4,2,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[1,3,2,1],[0,3,1,1]],[[0,3,1,1],[2,3,3,0],[1,3,2,1],[1,0,2,1]],[[0,2,1,1],[3,3,3,0],[1,3,2,1],[1,0,2,1]],[[0,2,1,1],[2,4,3,0],[1,3,2,1],[1,0,2,1]],[[0,2,1,1],[2,3,4,0],[1,3,2,1],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[1,4,2,1],[1,0,2,1]],[[0,3,1,1],[2,3,3,0],[1,3,2,1],[1,1,1,1]],[[0,2,1,1],[3,3,3,0],[1,3,2,1],[1,1,1,1]],[[0,2,1,1],[2,4,3,0],[1,3,2,1],[1,1,1,1]],[[0,2,1,1],[2,3,4,0],[1,3,2,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[1,4,2,1],[1,1,1,1]],[[0,3,1,1],[2,3,3,0],[1,3,2,1],[1,2,0,1]],[[0,2,1,1],[3,3,3,0],[1,3,2,1],[1,2,0,1]],[[0,2,1,1],[2,4,3,0],[1,3,2,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[1,4,2,1],[1,2,0,1]],[[1,2,2,2],[1,3,0,1],[2,2,3,1],[0,1,2,1]],[[1,2,3,1],[1,3,0,1],[2,2,3,1],[0,1,2,1]],[[1,3,2,1],[1,3,0,1],[2,2,3,1],[0,1,2,1]],[[2,2,2,1],[1,3,0,1],[2,2,3,1],[0,1,2,1]],[[0,3,1,1],[2,3,3,0],[1,3,2,2],[0,1,1,1]],[[0,2,1,1],[3,3,3,0],[1,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,4,3,0],[1,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,0],[1,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[1,4,2,2],[0,1,1,1]],[[0,3,1,1],[2,3,3,0],[1,3,2,2],[0,1,2,0]],[[0,2,1,1],[3,3,3,0],[1,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,4,3,0],[1,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,0],[1,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[1,4,2,2],[0,1,2,0]],[[0,3,1,1],[2,3,3,0],[1,3,2,2],[0,2,0,1]],[[0,2,1,1],[3,3,3,0],[1,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,0],[1,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,0],[1,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[1,4,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[1,3,2,2],[0,3,0,1]],[[0,3,1,1],[2,3,3,0],[1,3,2,2],[0,2,1,0]],[[0,2,1,1],[3,3,3,0],[1,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,0],[1,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,0],[1,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,0],[1,4,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,0],[1,3,2,2],[0,3,1,0]],[[0,3,1,1],[2,3,3,0],[1,3,2,2],[1,0,1,1]],[[0,2,1,1],[3,3,3,0],[1,3,2,2],[1,0,1,1]],[[0,2,1,1],[2,4,3,0],[1,3,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,4,0],[1,3,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[1,4,2,2],[1,0,1,1]],[[0,3,1,1],[2,3,3,0],[1,3,2,2],[1,0,2,0]],[[0,2,1,1],[3,3,3,0],[1,3,2,2],[1,0,2,0]],[[0,2,1,1],[2,4,3,0],[1,3,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,4,0],[1,3,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,0],[1,4,2,2],[1,0,2,0]],[[0,3,1,1],[2,3,3,0],[1,3,2,2],[1,1,0,1]],[[0,2,1,1],[3,3,3,0],[1,3,2,2],[1,1,0,1]],[[0,2,1,1],[2,4,3,0],[1,3,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,0],[1,3,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[1,4,2,2],[1,1,0,1]],[[0,3,1,1],[2,3,3,0],[1,3,2,2],[1,1,1,0]],[[0,2,1,1],[3,3,3,0],[1,3,2,2],[1,1,1,0]],[[0,2,1,1],[2,4,3,0],[1,3,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,4,0],[1,3,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,0],[1,4,2,2],[1,1,1,0]],[[1,2,2,1],[1,4,0,1],[2,2,2,2],[1,1,2,0]],[[1,2,2,2],[1,3,0,1],[2,2,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,0,1],[2,2,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,0,1],[2,2,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,0,1],[2,2,2,2],[1,1,2,0]],[[0,3,1,1],[2,3,3,0],[1,3,2,2],[1,2,0,0]],[[0,2,1,1],[3,3,3,0],[1,3,2,2],[1,2,0,0]],[[0,2,1,1],[2,4,3,0],[1,3,2,2],[1,2,0,0]],[[0,2,1,1],[2,3,4,0],[1,3,2,2],[1,2,0,0]],[[0,2,1,1],[2,3,3,0],[1,4,2,2],[1,2,0,0]],[[1,2,2,1],[1,4,0,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,2],[1,3,0,1],[2,2,2,2],[0,2,2,0]],[[1,2,3,1],[1,3,0,1],[2,2,2,2],[0,2,2,0]],[[1,3,2,1],[1,3,0,1],[2,2,2,2],[0,2,2,0]],[[2,2,2,1],[1,3,0,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,1],[1,4,0,1],[2,2,2,1],[1,1,2,1]],[[1,2,2,2],[1,3,0,1],[2,2,2,1],[1,1,2,1]],[[1,2,3,1],[1,3,0,1],[2,2,2,1],[1,1,2,1]],[[1,3,2,1],[1,3,0,1],[2,2,2,1],[1,1,2,1]],[[2,2,2,1],[1,3,0,1],[2,2,2,1],[1,1,2,1]],[[1,2,2,1],[1,4,0,1],[2,2,2,1],[0,2,2,1]],[[1,2,2,2],[1,3,0,1],[2,2,2,1],[0,2,2,1]],[[1,2,3,1],[1,3,0,1],[2,2,2,1],[0,2,2,1]],[[1,3,2,1],[1,3,0,1],[2,2,2,1],[0,2,2,1]],[[2,2,2,1],[1,3,0,1],[2,2,2,1],[0,2,2,1]],[[0,3,1,1],[2,3,3,0],[1,3,3,1],[0,0,2,1]],[[0,2,1,1],[3,3,3,0],[1,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,4,3,0],[1,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,4,0],[1,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,3,0],[1,3,4,1],[0,0,2,1]],[[1,2,2,1],[1,4,0,1],[2,2,1,2],[1,1,2,1]],[[1,2,2,2],[1,3,0,1],[2,2,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,0,1],[2,2,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,0,1],[2,2,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,0,1],[2,2,1,2],[1,1,2,1]],[[1,2,2,1],[1,4,0,1],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,0,1],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,0,1],[2,2,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,0,1],[2,2,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,0,1],[2,2,1,2],[0,2,2,1]],[[0,3,1,1],[2,3,3,0],[1,3,3,2],[0,0,1,1]],[[0,2,1,1],[3,3,3,0],[1,3,3,2],[0,0,1,1]],[[0,2,1,1],[2,4,3,0],[1,3,3,2],[0,0,1,1]],[[0,2,1,1],[2,3,4,0],[1,3,3,2],[0,0,1,1]],[[0,2,1,1],[2,3,3,0],[1,3,4,2],[0,0,1,1]],[[0,2,1,1],[2,3,3,0],[1,3,3,3],[0,0,1,1]],[[0,2,1,1],[2,3,3,0],[1,3,3,2],[0,0,1,2]],[[0,3,1,1],[2,3,3,0],[1,3,3,2],[0,0,2,0]],[[0,2,1,1],[3,3,3,0],[1,3,3,2],[0,0,2,0]],[[0,2,1,1],[2,4,3,0],[1,3,3,2],[0,0,2,0]],[[0,2,1,1],[2,3,4,0],[1,3,3,2],[0,0,2,0]],[[0,2,1,1],[2,3,3,0],[1,3,4,2],[0,0,2,0]],[[0,2,1,1],[2,3,3,0],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,4,0,1],[2,1,3,2],[1,2,1,0]],[[1,2,2,2],[1,3,0,1],[2,1,3,2],[1,2,1,0]],[[1,2,3,1],[1,3,0,1],[2,1,3,2],[1,2,1,0]],[[1,3,2,1],[1,3,0,1],[2,1,3,2],[1,2,1,0]],[[2,2,2,1],[1,3,0,1],[2,1,3,2],[1,2,1,0]],[[0,3,1,1],[2,3,3,0],[1,3,3,2],[0,2,0,0]],[[0,2,1,1],[3,3,3,0],[1,3,3,2],[0,2,0,0]],[[0,2,1,1],[2,4,3,0],[1,3,3,2],[0,2,0,0]],[[0,2,1,1],[2,3,4,0],[1,3,3,2],[0,2,0,0]],[[0,2,1,1],[2,3,3,0],[1,4,3,2],[0,2,0,0]],[[1,2,2,1],[1,4,0,1],[2,1,3,2],[1,2,0,1]],[[1,2,2,2],[1,3,0,1],[2,1,3,2],[1,2,0,1]],[[1,2,3,1],[1,3,0,1],[2,1,3,2],[1,2,0,1]],[[1,3,2,1],[1,3,0,1],[2,1,3,2],[1,2,0,1]],[[2,2,2,1],[1,3,0,1],[2,1,3,2],[1,2,0,1]],[[1,2,2,1],[1,4,0,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,0,1],[2,1,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,0,1],[2,1,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,0,1],[2,1,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,0,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[1,4,0,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,0,1],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,0,1],[2,1,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,0,1],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,0,1],[2,1,2,2],[1,2,2,0]],[[0,3,1,1],[2,3,3,0],[1,3,3,2],[1,1,0,0]],[[0,2,1,1],[3,3,3,0],[1,3,3,2],[1,1,0,0]],[[0,2,1,1],[2,4,3,0],[1,3,3,2],[1,1,0,0]],[[0,2,1,1],[2,3,4,0],[1,3,3,2],[1,1,0,0]],[[0,2,1,1],[2,3,3,0],[1,4,3,2],[1,1,0,0]],[[1,2,2,1],[1,4,0,1],[2,1,2,1],[1,2,2,1]],[[1,2,2,2],[1,3,0,1],[2,1,2,1],[1,2,2,1]],[[1,2,3,1],[1,3,0,1],[2,1,2,1],[1,2,2,1]],[[1,3,2,1],[1,3,0,1],[2,1,2,1],[1,2,2,1]],[[2,2,2,1],[1,3,0,1],[2,1,2,1],[1,2,2,1]],[[1,2,2,1],[1,4,0,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,0,1],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,0,1],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,0,1],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,0,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,0,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,3,0,1],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[1,3,0,1],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,3,0,1],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[1,3,0,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,4,0,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,2],[1,3,0,1],[2,0,3,1],[1,2,2,1]],[[1,2,3,1],[1,3,0,1],[2,0,3,1],[1,2,2,1]],[[1,3,2,1],[1,3,0,1],[2,0,3,1],[1,2,2,1]],[[2,2,2,1],[1,3,0,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,1],[1,4,0,1],[2,0,2,2],[1,2,2,1]],[[1,2,2,2],[1,3,0,1],[2,0,2,2],[1,2,2,1]],[[1,2,3,1],[1,3,0,1],[2,0,2,2],[1,2,2,1]],[[1,3,2,1],[1,3,0,1],[2,0,2,2],[1,2,2,1]],[[2,2,2,1],[1,3,0,1],[2,0,2,2],[1,2,2,1]],[[1,2,2,1],[1,3,0,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[1,4,0,1],[1,3,3,2],[1,2,0,0]],[[1,2,2,2],[1,3,0,1],[1,3,3,2],[1,2,0,0]],[[1,2,3,1],[1,3,0,1],[1,3,3,2],[1,2,0,0]],[[1,3,2,1],[1,3,0,1],[1,3,3,2],[1,2,0,0]],[[2,2,2,1],[1,3,0,1],[1,3,3,2],[1,2,0,0]],[[0,3,1,1],[2,3,3,0],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[3,3,3,0],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,4,3,0],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,4,0],[2,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[3,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,1,3],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,1,2],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,1,2],[1,3,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,1,2],[1,2,3,1]],[[0,2,1,1],[2,3,3,0],[2,0,1,2],[1,2,2,2]],[[0,3,1,1],[2,3,3,0],[2,0,2,1],[1,2,2,1]],[[0,2,1,1],[3,3,3,0],[2,0,2,1],[1,2,2,1]],[[0,2,1,1],[2,4,3,0],[2,0,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,4,0],[2,0,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[3,0,2,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,2,1],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,2,1],[1,3,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,2,1],[1,2,3,1]],[[0,2,1,1],[2,3,3,0],[2,0,2,1],[1,2,2,2]],[[0,2,1,1],[2,3,3,0],[2,0,2,3],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,2,2],[0,3,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,2,2],[0,2,3,1]],[[0,2,1,1],[2,3,3,0],[2,0,2,2],[0,2,2,2]],[[0,2,1,1],[2,3,3,0],[2,0,2,3],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,2,2],[1,1,3,1]],[[0,2,1,1],[2,3,3,0],[2,0,2,2],[1,1,2,2]],[[0,3,1,1],[2,3,3,0],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[3,3,3,0],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,4,3,0],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,4,0],[2,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[3,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[2,0,2,2],[2,2,2,0]],[[0,2,1,1],[2,3,3,0],[2,0,2,2],[1,3,2,0]],[[0,2,1,1],[2,3,3,0],[2,0,2,2],[1,2,3,0]],[[0,3,1,1],[2,3,3,0],[2,0,3,1],[0,2,2,1]],[[0,2,1,1],[3,3,3,0],[2,0,3,1],[0,2,2,1]],[[0,2,1,1],[2,4,3,0],[2,0,3,1],[0,2,2,1]],[[0,2,1,1],[2,3,4,0],[2,0,3,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[3,0,3,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,4,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,1],[0,3,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,1],[0,2,3,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,1],[0,2,2,2]],[[0,3,1,1],[2,3,3,0],[2,0,3,1],[1,1,2,1]],[[0,2,1,1],[3,3,3,0],[2,0,3,1],[1,1,2,1]],[[0,2,1,1],[2,4,3,0],[2,0,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,4,0],[2,0,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[3,0,3,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,4,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,1],[2,1,2,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,1],[1,1,3,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,1],[1,1,2,2]],[[0,3,1,1],[2,3,3,0],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[3,3,3,0],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,4,3,0],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,4,0],[2,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[3,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[2,0,4,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,1],[2,2,1,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,1],[1,3,1,1]],[[0,3,1,1],[2,3,3,0],[2,0,3,2],[0,2,1,1]],[[0,2,1,1],[3,3,3,0],[2,0,3,2],[0,2,1,1]],[[0,2,1,1],[2,4,3,0],[2,0,3,2],[0,2,1,1]],[[0,2,1,1],[2,3,4,0],[2,0,3,2],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[3,0,3,2],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[2,0,4,2],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,3],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[0,2,1,2]],[[0,3,1,1],[2,3,3,0],[2,0,3,2],[0,2,2,0]],[[0,2,1,1],[3,3,3,0],[2,0,3,2],[0,2,2,0]],[[0,2,1,1],[2,4,3,0],[2,0,3,2],[0,2,2,0]],[[0,2,1,1],[2,3,4,0],[2,0,3,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,0],[3,0,3,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,0],[2,0,4,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,0],[2,0,3,3],[0,2,2,0]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[0,3,2,0]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[0,2,3,0]],[[0,3,1,1],[2,3,3,0],[2,0,3,2],[1,1,1,1]],[[0,2,1,1],[3,3,3,0],[2,0,3,2],[1,1,1,1]],[[0,2,1,1],[2,4,3,0],[2,0,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,4,0],[2,0,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[3,0,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[2,0,4,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,3],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[2,1,1,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[1,1,1,2]],[[0,3,1,1],[2,3,3,0],[2,0,3,2],[1,1,2,0]],[[0,2,1,1],[3,3,3,0],[2,0,3,2],[1,1,2,0]],[[0,2,1,1],[2,4,3,0],[2,0,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,0],[2,0,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[3,0,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[2,0,4,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[2,0,3,3],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[2,1,2,0]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[1,1,3,0]],[[0,3,1,1],[2,3,3,0],[2,0,3,2],[1,2,0,1]],[[0,2,1,1],[3,3,3,0],[2,0,3,2],[1,2,0,1]],[[0,2,1,1],[2,4,3,0],[2,0,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,4,0],[2,0,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[3,0,3,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[2,0,4,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,3],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[2,2,0,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[1,3,0,1]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[1,2,0,2]],[[0,3,1,1],[2,3,3,0],[2,0,3,2],[1,2,1,0]],[[0,2,1,1],[3,3,3,0],[2,0,3,2],[1,2,1,0]],[[0,2,1,1],[2,4,3,0],[2,0,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,4,0],[2,0,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[3,0,3,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[2,0,4,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[2,0,3,3],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[2,2,1,0]],[[0,2,1,1],[2,3,3,0],[2,0,3,2],[1,3,1,0]],[[1,2,2,1],[1,3,0,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,3,0,1],[1,3,4,2],[1,1,1,0]],[[1,2,2,1],[1,3,0,1],[1,4,3,2],[1,1,1,0]],[[1,2,2,1],[1,4,0,1],[1,3,3,2],[1,1,1,0]],[[1,2,2,2],[1,3,0,1],[1,3,3,2],[1,1,1,0]],[[1,2,3,1],[1,3,0,1],[1,3,3,2],[1,1,1,0]],[[1,3,2,1],[1,3,0,1],[1,3,3,2],[1,1,1,0]],[[2,2,2,1],[1,3,0,1],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[1,3,0,1],[1,3,3,2],[1,1,0,2]],[[1,2,2,1],[1,3,0,1],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,3,0,1],[1,3,4,2],[1,1,0,1]],[[0,3,1,1],[2,3,3,0],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[3,3,3,0],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,4,3,0],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,4,0],[2,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[3,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,0,3],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,0,2],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,0,2],[1,3,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,0,2],[1,2,3,1]],[[0,2,1,1],[2,3,3,0],[2,1,0,2],[1,2,2,2]],[[0,3,1,1],[2,3,3,0],[2,1,1,1],[1,2,2,1]],[[0,2,1,1],[3,3,3,0],[2,1,1,1],[1,2,2,1]],[[0,2,1,1],[2,4,3,0],[2,1,1,1],[1,2,2,1]],[[0,2,1,1],[2,3,4,0],[2,1,1,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[3,1,1,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,1,1],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,1,1],[1,3,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,1,1],[1,2,3,1]],[[0,2,1,1],[2,3,3,0],[2,1,1,1],[1,2,2,2]],[[0,3,1,1],[2,3,3,0],[2,1,1,2],[1,2,2,0]],[[0,2,1,1],[3,3,3,0],[2,1,1,2],[1,2,2,0]],[[0,2,1,1],[2,4,3,0],[2,1,1,2],[1,2,2,0]],[[0,2,1,1],[2,3,4,0],[2,1,1,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[3,1,1,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[2,1,1,2],[2,2,2,0]],[[0,2,1,1],[2,3,3,0],[2,1,1,2],[1,3,2,0]],[[0,2,1,1],[2,3,3,0],[2,1,1,2],[1,2,3,0]],[[0,3,1,1],[2,3,3,0],[2,1,2,1],[1,2,1,1]],[[0,2,1,1],[3,3,3,0],[2,1,2,1],[1,2,1,1]],[[0,2,1,1],[2,4,3,0],[2,1,2,1],[1,2,1,1]],[[0,2,1,1],[2,3,4,0],[2,1,2,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[3,1,2,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,2,1],[2,2,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,2,1],[1,3,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,2,3],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,2,2],[0,1,3,1]],[[0,2,1,1],[2,3,3,0],[2,1,2,2],[0,1,2,2]],[[0,2,1,1],[2,3,3,0],[2,1,2,3],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,2,2],[1,0,3,1]],[[0,2,1,1],[2,3,3,0],[2,1,2,2],[1,0,2,2]],[[0,3,1,1],[2,3,3,0],[2,1,2,2],[1,2,0,1]],[[0,2,1,1],[3,3,3,0],[2,1,2,2],[1,2,0,1]],[[0,2,1,1],[2,4,3,0],[2,1,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,4,0],[2,1,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[3,1,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[2,1,2,2],[2,2,0,1]],[[0,2,1,1],[2,3,3,0],[2,1,2,2],[1,3,0,1]],[[0,3,1,1],[2,3,3,0],[2,1,2,2],[1,2,1,0]],[[0,2,1,1],[3,3,3,0],[2,1,2,2],[1,2,1,0]],[[0,2,1,1],[2,4,3,0],[2,1,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,4,0],[2,1,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[3,1,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[2,1,2,2],[2,2,1,0]],[[0,2,1,1],[2,3,3,0],[2,1,2,2],[1,3,1,0]],[[1,2,2,1],[1,3,0,1],[1,4,3,2],[1,1,0,1]],[[1,2,2,1],[1,4,0,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[1,3,0,1],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[1,3,0,1],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[1,3,0,1],[1,3,3,2],[1,1,0,1]],[[2,2,2,1],[1,3,0,1],[1,3,3,2],[1,1,0,1]],[[0,3,1,1],[2,3,3,0],[2,1,3,1],[0,1,2,1]],[[0,2,1,1],[3,3,3,0],[2,1,3,1],[0,1,2,1]],[[0,2,1,1],[2,4,3,0],[2,1,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,4,0],[2,1,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[3,1,3,1],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,4,1],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,1],[0,1,3,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,1],[0,1,2,2]],[[0,3,1,1],[2,3,3,0],[2,1,3,1],[0,2,1,1]],[[0,2,1,1],[3,3,3,0],[2,1,3,1],[0,2,1,1]],[[0,2,1,1],[2,4,3,0],[2,1,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,4,0],[2,1,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[3,1,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,4,1],[0,2,1,1]],[[0,3,1,1],[2,3,3,0],[2,1,3,1],[1,0,2,1]],[[0,2,1,1],[3,3,3,0],[2,1,3,1],[1,0,2,1]],[[0,2,1,1],[2,4,3,0],[2,1,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,4,0],[2,1,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[3,1,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,4,1],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,1],[2,0,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,1],[1,0,3,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,1],[1,0,2,2]],[[0,3,1,1],[2,3,3,0],[2,1,3,1],[1,1,1,1]],[[0,2,1,1],[3,3,3,0],[2,1,3,1],[1,1,1,1]],[[0,2,1,1],[2,4,3,0],[2,1,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,4,0],[2,1,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[3,1,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,4,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,1],[2,1,1,1]],[[1,2,2,1],[1,3,0,1],[1,3,3,2],[1,0,3,0]],[[1,2,2,1],[1,3,0,1],[1,3,3,3],[1,0,2,0]],[[1,2,2,1],[1,3,0,1],[1,3,4,2],[1,0,2,0]],[[1,2,2,1],[1,3,0,1],[1,4,3,2],[1,0,2,0]],[[0,3,1,1],[2,3,3,0],[2,1,3,2],[0,0,2,1]],[[0,2,1,1],[3,3,3,0],[2,1,3,2],[0,0,2,1]],[[0,2,1,1],[2,4,3,0],[2,1,3,2],[0,0,2,1]],[[0,2,1,1],[2,3,4,0],[2,1,3,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,4,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,3],[0,0,2,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,2],[0,0,2,2]],[[0,3,1,1],[2,3,3,0],[2,1,3,2],[0,1,1,1]],[[0,2,1,1],[3,3,3,0],[2,1,3,2],[0,1,1,1]],[[0,2,1,1],[2,4,3,0],[2,1,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,0],[2,1,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[3,1,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,4,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,3],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,2],[0,1,1,2]],[[0,3,1,1],[2,3,3,0],[2,1,3,2],[0,1,2,0]],[[0,2,1,1],[3,3,3,0],[2,1,3,2],[0,1,2,0]],[[0,2,1,1],[2,4,3,0],[2,1,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,0],[2,1,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[3,1,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[2,1,4,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[2,1,3,3],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[2,1,3,2],[0,1,3,0]],[[0,3,1,1],[2,3,3,0],[2,1,3,2],[0,2,0,1]],[[0,2,1,1],[3,3,3,0],[2,1,3,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,0],[2,1,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,0],[2,1,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[3,1,3,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[2,1,4,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,3],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,2],[0,2,0,2]],[[0,3,1,1],[2,3,3,0],[2,1,3,2],[0,2,1,0]],[[0,2,1,1],[3,3,3,0],[2,1,3,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,0],[2,1,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,0],[2,1,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,0],[3,1,3,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,0],[2,1,4,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,0],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[1,4,0,1],[1,3,3,2],[1,0,2,0]],[[1,2,2,2],[1,3,0,1],[1,3,3,2],[1,0,2,0]],[[1,2,3,1],[1,3,0,1],[1,3,3,2],[1,0,2,0]],[[1,3,2,1],[1,3,0,1],[1,3,3,2],[1,0,2,0]],[[2,2,2,1],[1,3,0,1],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,3,0,1],[1,3,3,2],[1,0,1,2]],[[1,2,2,1],[1,3,0,1],[1,3,3,3],[1,0,1,1]],[[1,2,2,1],[1,3,0,1],[1,3,4,2],[1,0,1,1]],[[1,2,2,1],[1,3,0,1],[1,4,3,2],[1,0,1,1]],[[1,2,2,1],[1,4,0,1],[1,3,3,2],[1,0,1,1]],[[0,3,1,1],[2,3,3,0],[2,1,3,2],[1,0,1,1]],[[0,2,1,1],[3,3,3,0],[2,1,3,2],[1,0,1,1]],[[0,2,1,1],[2,4,3,0],[2,1,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,4,0],[2,1,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[3,1,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,4,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,3],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,2],[2,0,1,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,2],[1,0,1,2]],[[0,3,1,1],[2,3,3,0],[2,1,3,2],[1,0,2,0]],[[0,2,1,1],[3,3,3,0],[2,1,3,2],[1,0,2,0]],[[0,2,1,1],[2,4,3,0],[2,1,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,4,0],[2,1,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,0],[3,1,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,0],[2,1,4,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,0],[2,1,3,3],[1,0,2,0]],[[0,2,1,1],[2,3,3,0],[2,1,3,2],[2,0,2,0]],[[0,2,1,1],[2,3,3,0],[2,1,3,2],[1,0,3,0]],[[0,3,1,1],[2,3,3,0],[2,1,3,2],[1,1,0,1]],[[0,2,1,1],[3,3,3,0],[2,1,3,2],[1,1,0,1]],[[0,2,1,1],[2,4,3,0],[2,1,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,0],[2,1,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[3,1,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[2,1,4,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,3],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,2],[2,1,0,1]],[[0,2,1,1],[2,3,3,0],[2,1,3,2],[1,1,0,2]],[[0,3,1,1],[2,3,3,0],[2,1,3,2],[1,1,1,0]],[[0,2,1,1],[3,3,3,0],[2,1,3,2],[1,1,1,0]],[[0,2,1,1],[2,4,3,0],[2,1,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,4,0],[2,1,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,0],[3,1,3,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,0],[2,1,4,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,0],[2,1,3,3],[1,1,1,0]],[[0,2,1,1],[2,3,3,0],[2,1,3,2],[2,1,1,0]],[[1,2,2,2],[1,3,0,1],[1,3,3,2],[1,0,1,1]],[[1,2,3,1],[1,3,0,1],[1,3,3,2],[1,0,1,1]],[[1,3,2,1],[1,3,0,1],[1,3,3,2],[1,0,1,1]],[[2,2,2,1],[1,3,0,1],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[1,3,0,1],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,3,0,1],[1,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,3,0,1],[1,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,1],[1,4,3,2],[0,2,1,0]],[[1,2,2,1],[1,4,0,1],[1,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,3,0,1],[1,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,3,0,1],[1,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,3,0,1],[1,3,3,2],[0,2,1,0]],[[2,2,2,1],[1,3,0,1],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,1],[1,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,3,0,1],[1,3,3,2],[0,3,0,1]],[[1,2,2,1],[1,3,0,1],[1,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,3,0,1],[1,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,3,0,1],[1,4,3,2],[0,2,0,1]],[[1,2,2,1],[1,4,0,1],[1,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,3,0,1],[1,3,3,2],[0,2,0,1]],[[1,2,3,1],[1,3,0,1],[1,3,3,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,0],[2,2,0,1],[1,2,2,1]],[[0,2,1,1],[3,3,3,0],[2,2,0,1],[1,2,2,1]],[[0,2,1,1],[2,4,3,0],[2,2,0,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[3,2,0,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,2,0,1],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,2,0,1],[1,3,2,1]],[[0,3,1,1],[2,3,3,0],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[3,3,3,0],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[2,4,3,0],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,4,0],[2,2,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[3,2,0,2],[0,2,2,1]],[[0,3,1,1],[2,3,3,0],[2,2,0,2],[1,1,2,1]],[[0,2,1,1],[3,3,3,0],[2,2,0,2],[1,1,2,1]],[[0,2,1,1],[2,4,3,0],[2,2,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,4,0],[2,2,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[3,2,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[2,2,0,2],[2,1,2,1]],[[0,3,1,1],[2,3,3,0],[2,2,0,2],[1,2,2,0]],[[0,2,1,1],[3,3,3,0],[2,2,0,2],[1,2,2,0]],[[0,2,1,1],[2,4,3,0],[2,2,0,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[3,2,0,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,0],[2,2,0,2],[2,2,2,0]],[[0,2,1,1],[2,3,3,0],[2,2,0,2],[1,3,2,0]],[[0,3,1,1],[2,3,3,0],[2,2,1,1],[0,2,2,1]],[[0,2,1,1],[3,3,3,0],[2,2,1,1],[0,2,2,1]],[[0,2,1,1],[2,4,3,0],[2,2,1,1],[0,2,2,1]],[[0,2,1,1],[2,3,4,0],[2,2,1,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[3,2,1,1],[0,2,2,1]],[[0,3,1,1],[2,3,3,0],[2,2,1,1],[1,1,2,1]],[[0,2,1,1],[3,3,3,0],[2,2,1,1],[1,1,2,1]],[[0,2,1,1],[2,4,3,0],[2,2,1,1],[1,1,2,1]],[[0,2,1,1],[2,3,4,0],[2,2,1,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[3,2,1,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[2,2,1,1],[2,1,2,1]],[[0,3,1,1],[2,3,3,0],[2,2,1,2],[0,2,2,0]],[[0,2,1,1],[3,3,3,0],[2,2,1,2],[0,2,2,0]],[[0,2,1,1],[2,4,3,0],[2,2,1,2],[0,2,2,0]],[[0,2,1,1],[2,3,4,0],[2,2,1,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,0],[3,2,1,2],[0,2,2,0]],[[0,3,1,1],[2,3,3,0],[2,2,1,2],[1,1,2,0]],[[0,2,1,1],[3,3,3,0],[2,2,1,2],[1,1,2,0]],[[0,2,1,1],[2,4,3,0],[2,2,1,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,0],[2,2,1,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[3,2,1,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[2,2,1,2],[2,1,2,0]],[[1,3,2,1],[1,3,0,1],[1,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,3,0,1],[1,3,3,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,0],[2,2,2,1],[0,1,2,1]],[[0,2,1,1],[3,3,3,0],[2,2,2,1],[0,1,2,1]],[[0,2,1,1],[2,4,3,0],[2,2,2,1],[0,1,2,1]],[[0,2,1,1],[2,3,4,0],[2,2,2,1],[0,1,2,1]],[[0,2,1,1],[2,3,3,0],[3,2,2,1],[0,1,2,1]],[[0,3,1,1],[2,3,3,0],[2,2,2,1],[0,2,1,1]],[[0,2,1,1],[3,3,3,0],[2,2,2,1],[0,2,1,1]],[[0,2,1,1],[2,4,3,0],[2,2,2,1],[0,2,1,1]],[[0,2,1,1],[2,3,4,0],[2,2,2,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[3,2,2,1],[0,2,1,1]],[[0,3,1,1],[2,3,3,0],[2,2,2,1],[1,0,2,1]],[[0,2,1,1],[3,3,3,0],[2,2,2,1],[1,0,2,1]],[[0,2,1,1],[2,4,3,0],[2,2,2,1],[1,0,2,1]],[[0,2,1,1],[2,3,4,0],[2,2,2,1],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[3,2,2,1],[1,0,2,1]],[[0,2,1,1],[2,3,3,0],[2,2,2,1],[2,0,2,1]],[[0,3,1,1],[2,3,3,0],[2,2,2,1],[1,1,1,1]],[[0,2,1,1],[3,3,3,0],[2,2,2,1],[1,1,1,1]],[[0,2,1,1],[2,4,3,0],[2,2,2,1],[1,1,1,1]],[[0,2,1,1],[2,3,4,0],[2,2,2,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[3,2,2,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[2,2,2,1],[2,1,1,1]],[[0,3,1,1],[2,3,3,0],[2,2,2,1],[1,2,0,1]],[[0,2,1,1],[3,3,3,0],[2,2,2,1],[1,2,0,1]],[[0,2,1,1],[2,4,3,0],[2,2,2,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[3,2,2,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[1,3,0,1],[1,3,3,2],[0,1,3,0]],[[1,2,2,1],[1,3,0,1],[1,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,3,0,1],[1,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,3,0,1],[1,4,3,2],[0,1,2,0]],[[1,2,2,1],[1,4,0,1],[1,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,3,0,1],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,3,0,1],[1,3,3,2],[0,1,2,0]],[[0,3,1,1],[2,3,3,0],[2,2,2,2],[0,1,1,1]],[[0,2,1,1],[3,3,3,0],[2,2,2,2],[0,1,1,1]],[[0,2,1,1],[2,4,3,0],[2,2,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,0],[2,2,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,0],[3,2,2,2],[0,1,1,1]],[[0,3,1,1],[2,3,3,0],[2,2,2,2],[0,1,2,0]],[[0,2,1,1],[3,3,3,0],[2,2,2,2],[0,1,2,0]],[[0,2,1,1],[2,4,3,0],[2,2,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,0],[2,2,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,0],[3,2,2,2],[0,1,2,0]],[[0,3,1,1],[2,3,3,0],[2,2,2,2],[0,2,0,1]],[[0,2,1,1],[3,3,3,0],[2,2,2,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,0],[2,2,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,0],[2,2,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[3,2,2,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,0],[2,2,2,2],[0,2,1,0]],[[0,2,1,1],[3,3,3,0],[2,2,2,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,0],[2,2,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,0],[2,2,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,0],[3,2,2,2],[0,2,1,0]],[[1,3,2,1],[1,3,0,1],[1,3,3,2],[0,1,2,0]],[[2,2,2,1],[1,3,0,1],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,3,0,1],[1,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,3,0,1],[1,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,3,0,1],[1,3,4,2],[0,1,1,1]],[[1,2,2,1],[1,3,0,1],[1,4,3,2],[0,1,1,1]],[[1,2,2,1],[1,4,0,1],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,3,0,1],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,3,0,1],[1,3,3,2],[0,1,1,1]],[[0,3,1,1],[2,3,3,0],[2,2,2,2],[1,0,1,1]],[[0,2,1,1],[3,3,3,0],[2,2,2,2],[1,0,1,1]],[[0,2,1,1],[2,4,3,0],[2,2,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,4,0],[2,2,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[3,2,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[2,2,2,2],[2,0,1,1]],[[0,3,1,1],[2,3,3,0],[2,2,2,2],[1,0,2,0]],[[0,2,1,1],[3,3,3,0],[2,2,2,2],[1,0,2,0]],[[0,2,1,1],[2,4,3,0],[2,2,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,4,0],[2,2,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,0],[3,2,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,0],[2,2,2,2],[2,0,2,0]],[[0,3,1,1],[2,3,3,0],[2,2,2,2],[1,1,0,1]],[[0,2,1,1],[3,3,3,0],[2,2,2,2],[1,1,0,1]],[[0,2,1,1],[2,4,3,0],[2,2,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,0],[2,2,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[3,2,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[2,2,2,2],[2,1,0,1]],[[0,3,1,1],[2,3,3,0],[2,2,2,2],[1,1,1,0]],[[0,2,1,1],[3,3,3,0],[2,2,2,2],[1,1,1,0]],[[0,2,1,1],[2,4,3,0],[2,2,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,4,0],[2,2,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,0],[3,2,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,0],[2,2,2,2],[2,1,1,0]],[[1,3,2,1],[1,3,0,1],[1,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,3,0,1],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,3,0,1],[1,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,3,0,1],[1,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,3,0,1],[1,3,4,2],[0,0,2,1]],[[0,3,1,1],[2,3,3,0],[2,2,2,2],[1,2,0,0]],[[0,2,1,1],[3,3,3,0],[2,2,2,2],[1,2,0,0]],[[0,2,1,1],[2,4,3,0],[2,2,2,2],[1,2,0,0]],[[0,2,1,1],[2,3,4,0],[2,2,2,2],[1,2,0,0]],[[0,2,1,1],[2,3,3,0],[3,2,2,2],[1,2,0,0]],[[0,2,1,1],[2,3,3,0],[2,2,2,2],[2,2,0,0]],[[1,2,2,1],[1,3,0,1],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,3,0,1],[1,4,3,1],[1,1,1,1]],[[1,2,2,1],[1,4,0,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[1,3,0,1],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[1,3,0,1],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[1,3,0,1],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[1,3,0,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,3,0,1],[1,3,3,1],[1,0,2,2]],[[1,2,2,1],[1,3,0,1],[1,3,3,1],[1,0,3,1]],[[1,2,2,1],[1,3,0,1],[1,3,4,1],[1,0,2,1]],[[1,2,2,1],[1,3,0,1],[1,4,3,1],[1,0,2,1]],[[1,2,2,1],[1,4,0,1],[1,3,3,1],[1,0,2,1]],[[1,2,2,2],[1,3,0,1],[1,3,3,1],[1,0,2,1]],[[1,2,3,1],[1,3,0,1],[1,3,3,1],[1,0,2,1]],[[1,3,2,1],[1,3,0,1],[1,3,3,1],[1,0,2,1]],[[2,2,2,1],[1,3,0,1],[1,3,3,1],[1,0,2,1]],[[1,2,2,1],[1,3,0,1],[1,3,3,1],[0,3,1,1]],[[1,2,2,1],[1,3,0,1],[1,3,4,1],[0,2,1,1]],[[1,2,2,1],[1,3,0,1],[1,4,3,1],[0,2,1,1]],[[1,2,2,1],[1,4,0,1],[1,3,3,1],[0,2,1,1]],[[1,2,2,2],[1,3,0,1],[1,3,3,1],[0,2,1,1]],[[1,2,3,1],[1,3,0,1],[1,3,3,1],[0,2,1,1]],[[1,3,2,1],[1,3,0,1],[1,3,3,1],[0,2,1,1]],[[2,2,2,1],[1,3,0,1],[1,3,3,1],[0,2,1,1]],[[1,2,2,1],[1,3,0,1],[1,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,3,0,1],[1,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,3,0,1],[1,3,4,1],[0,1,2,1]],[[1,2,2,1],[1,3,0,1],[1,4,3,1],[0,1,2,1]],[[1,2,2,1],[1,4,0,1],[1,3,3,1],[0,1,2,1]],[[1,2,2,2],[1,3,0,1],[1,3,3,1],[0,1,2,1]],[[1,2,3,1],[1,3,0,1],[1,3,3,1],[0,1,2,1]],[[1,3,2,1],[1,3,0,1],[1,3,3,1],[0,1,2,1]],[[2,2,2,1],[1,3,0,1],[1,3,3,1],[0,1,2,1]],[[1,2,2,1],[1,3,0,1],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[1,4,0,1],[1,3,2,2],[1,1,2,0]],[[0,3,1,1],[2,3,3,0],[2,2,3,2],[0,2,0,0]],[[0,2,1,1],[3,3,3,0],[2,2,3,2],[0,2,0,0]],[[0,2,1,1],[2,4,3,0],[2,2,3,2],[0,2,0,0]],[[0,2,1,1],[2,3,4,0],[2,2,3,2],[0,2,0,0]],[[0,2,1,1],[2,3,3,0],[3,2,3,2],[0,2,0,0]],[[1,2,2,2],[1,3,0,1],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[1,3,0,1],[1,3,2,2],[1,1,2,0]],[[1,3,2,1],[1,3,0,1],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[1,3,0,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,1],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[1,3,0,1],[1,3,2,2],[1,0,3,1]],[[1,2,2,1],[1,3,0,1],[1,3,2,3],[1,0,2,1]],[[1,2,2,1],[1,3,0,1],[1,3,2,2],[0,2,3,0]],[[1,2,2,1],[1,3,0,1],[1,3,2,2],[0,3,2,0]],[[1,2,2,1],[1,3,0,1],[1,4,2,2],[0,2,2,0]],[[1,2,2,1],[1,4,0,1],[1,3,2,2],[0,2,2,0]],[[1,2,2,2],[1,3,0,1],[1,3,2,2],[0,2,2,0]],[[1,2,3,1],[1,3,0,1],[1,3,2,2],[0,2,2,0]],[[1,3,2,1],[1,3,0,1],[1,3,2,2],[0,2,2,0]],[[2,2,2,1],[1,3,0,1],[1,3,2,2],[0,2,2,0]],[[1,2,2,1],[1,3,0,1],[1,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,3,0,1],[1,3,2,2],[0,1,3,1]],[[1,2,2,1],[1,3,0,1],[1,3,2,3],[0,1,2,1]],[[0,3,1,1],[2,3,3,0],[2,2,3,2],[1,1,0,0]],[[0,2,1,1],[3,3,3,0],[2,2,3,2],[1,1,0,0]],[[0,2,1,1],[2,4,3,0],[2,2,3,2],[1,1,0,0]],[[0,2,1,1],[2,3,4,0],[2,2,3,2],[1,1,0,0]],[[0,2,1,1],[2,3,3,0],[3,2,3,2],[1,1,0,0]],[[0,2,1,1],[2,3,3,0],[2,2,3,2],[2,1,0,0]],[[1,2,2,1],[1,3,0,1],[1,4,2,1],[1,1,2,1]],[[1,2,2,1],[1,4,0,1],[1,3,2,1],[1,1,2,1]],[[1,2,2,2],[1,3,0,1],[1,3,2,1],[1,1,2,1]],[[1,2,3,1],[1,3,0,1],[1,3,2,1],[1,1,2,1]],[[1,3,2,1],[1,3,0,1],[1,3,2,1],[1,1,2,1]],[[2,2,2,1],[1,3,0,1],[1,3,2,1],[1,1,2,1]],[[1,2,2,1],[1,3,0,1],[1,3,2,1],[0,2,2,2]],[[1,2,2,1],[1,3,0,1],[1,3,2,1],[0,2,3,1]],[[1,2,2,1],[1,3,0,1],[1,3,2,1],[0,3,2,1]],[[1,2,2,1],[1,3,0,1],[1,4,2,1],[0,2,2,1]],[[1,2,2,1],[1,4,0,1],[1,3,2,1],[0,2,2,1]],[[1,2,2,2],[1,3,0,1],[1,3,2,1],[0,2,2,1]],[[1,2,3,1],[1,3,0,1],[1,3,2,1],[0,2,2,1]],[[1,3,2,1],[1,3,0,1],[1,3,2,1],[0,2,2,1]],[[2,2,2,1],[1,3,0,1],[1,3,2,1],[0,2,2,1]],[[1,2,2,1],[1,3,0,1],[1,4,1,2],[1,1,2,1]],[[1,2,2,1],[1,4,0,1],[1,3,1,2],[1,1,2,1]],[[1,2,2,2],[1,3,0,1],[1,3,1,2],[1,1,2,1]],[[1,2,3,1],[1,3,0,1],[1,3,1,2],[1,1,2,1]],[[1,3,2,1],[1,3,0,1],[1,3,1,2],[1,1,2,1]],[[2,2,2,1],[1,3,0,1],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[1,3,0,1],[1,3,1,2],[0,2,2,2]],[[1,2,2,1],[1,3,0,1],[1,3,1,2],[0,2,3,1]],[[1,2,2,1],[1,3,0,1],[1,3,1,2],[0,3,2,1]],[[1,2,2,1],[1,3,0,1],[1,3,1,3],[0,2,2,1]],[[1,2,2,1],[1,3,0,1],[1,4,1,2],[0,2,2,1]],[[1,2,2,1],[1,4,0,1],[1,3,1,2],[0,2,2,1]],[[1,2,2,2],[1,3,0,1],[1,3,1,2],[0,2,2,1]],[[1,2,3,1],[1,3,0,1],[1,3,1,2],[0,2,2,1]],[[1,3,2,1],[1,3,0,1],[1,3,1,2],[0,2,2,1]],[[2,2,2,1],[1,3,0,1],[1,3,1,2],[0,2,2,1]],[[1,2,2,1],[1,3,0,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,3,0,1],[1,2,3,2],[0,3,2,0]],[[1,2,2,1],[1,3,0,1],[1,2,3,3],[0,2,2,0]],[[1,2,2,1],[1,3,0,1],[1,2,4,2],[0,2,2,0]],[[1,2,2,1],[1,3,0,1],[1,2,3,2],[0,2,1,2]],[[1,2,2,1],[1,3,0,1],[1,2,3,3],[0,2,1,1]],[[1,2,2,1],[1,3,0,1],[1,2,4,2],[0,2,1,1]],[[1,2,2,1],[1,3,0,1],[1,2,3,1],[0,2,2,2]],[[1,2,2,1],[1,3,0,1],[1,2,3,1],[0,2,3,1]],[[1,2,2,1],[1,3,0,1],[1,2,3,1],[0,3,2,1]],[[1,2,2,1],[1,3,0,1],[1,2,4,1],[0,2,2,1]],[[1,2,2,1],[1,3,0,1],[1,2,2,2],[0,2,2,2]],[[0,2,1,1],[3,3,3,0],[2,3,0,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[3,3,0,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,3,0,0],[2,2,2,1]],[[0,2,1,1],[2,3,3,0],[2,3,0,0],[1,3,2,1]],[[0,3,1,1],[2,3,3,0],[2,3,0,1],[0,2,2,1]],[[0,2,1,1],[3,3,3,0],[2,3,0,1],[0,2,2,1]],[[0,2,1,1],[2,4,3,0],[2,3,0,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,0],[3,3,0,1],[0,2,2,1]],[[0,3,1,1],[2,3,3,0],[2,3,0,1],[1,1,2,1]],[[0,2,1,1],[3,3,3,0],[2,3,0,1],[1,1,2,1]],[[0,2,1,1],[2,4,3,0],[2,3,0,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[3,3,0,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,0],[2,3,0,1],[2,1,2,1]],[[0,3,1,1],[2,3,3,0],[2,3,0,1],[1,2,1,1]],[[0,2,1,1],[3,3,3,0],[2,3,0,1],[1,2,1,1]],[[0,2,1,1],[2,4,3,0],[2,3,0,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[3,3,0,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,0],[2,3,0,1],[2,2,1,1]],[[0,3,1,1],[2,3,3,0],[2,3,0,2],[0,2,2,0]],[[0,2,1,1],[3,3,3,0],[2,3,0,2],[0,2,2,0]],[[0,2,1,1],[2,4,3,0],[2,3,0,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,0],[3,3,0,2],[0,2,2,0]],[[0,3,1,1],[2,3,3,0],[2,3,0,2],[1,1,2,0]],[[0,2,1,1],[3,3,3,0],[2,3,0,2],[1,1,2,0]],[[0,2,1,1],[2,4,3,0],[2,3,0,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[3,3,0,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,0],[2,3,0,2],[2,1,2,0]],[[0,3,1,1],[2,3,3,0],[2,3,0,2],[1,2,1,0]],[[0,2,1,1],[3,3,3,0],[2,3,0,2],[1,2,1,0]],[[0,2,1,1],[2,4,3,0],[2,3,0,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[3,3,0,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,0],[2,3,0,2],[2,2,1,0]],[[1,2,2,1],[1,3,0,1],[1,2,2,2],[0,2,3,1]],[[1,2,2,1],[1,3,0,1],[1,2,2,2],[0,3,2,1]],[[1,2,2,1],[1,3,0,1],[1,2,2,3],[0,2,2,1]],[[0,3,1,1],[2,3,3,0],[2,3,1,1],[0,2,1,1]],[[0,2,1,1],[3,3,3,0],[2,3,1,1],[0,2,1,1]],[[0,2,1,1],[2,4,3,0],[2,3,1,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,0],[3,3,1,1],[0,2,1,1]],[[0,3,1,1],[2,3,3,0],[2,3,1,1],[1,1,1,1]],[[0,2,1,1],[3,3,3,0],[2,3,1,1],[1,1,1,1]],[[0,2,1,1],[2,4,3,0],[2,3,1,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[3,3,1,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,0],[2,3,1,1],[2,1,1,1]],[[0,3,1,1],[2,3,3,0],[2,3,1,1],[1,2,0,1]],[[0,2,1,1],[3,3,3,0],[2,3,1,1],[1,2,0,1]],[[0,2,1,1],[2,4,3,0],[2,3,1,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[3,3,1,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,0],[2,3,1,1],[2,2,0,1]],[[0,3,1,1],[2,3,3,0],[2,3,1,2],[0,2,0,1]],[[0,2,1,1],[3,3,3,0],[2,3,1,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,0],[2,3,1,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,0],[3,3,1,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,0],[2,3,1,2],[0,2,1,0]],[[0,2,1,1],[3,3,3,0],[2,3,1,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,0],[2,3,1,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,0],[3,3,1,2],[0,2,1,0]],[[1,2,2,1],[1,3,0,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,3,0,1],[0,3,3,2],[2,2,1,0]],[[1,2,2,1],[1,3,0,1],[0,3,3,3],[1,2,1,0]],[[1,2,2,1],[1,3,0,1],[0,3,4,2],[1,2,1,0]],[[1,2,2,1],[1,3,0,1],[0,4,3,2],[1,2,1,0]],[[1,2,2,1],[1,4,0,1],[0,3,3,2],[1,2,1,0]],[[0,3,1,1],[2,3,3,0],[2,3,1,2],[1,1,0,1]],[[0,2,1,1],[3,3,3,0],[2,3,1,2],[1,1,0,1]],[[0,2,1,1],[2,4,3,0],[2,3,1,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[3,3,1,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,0],[2,3,1,2],[2,1,0,1]],[[0,3,1,1],[2,3,3,0],[2,3,1,2],[1,1,1,0]],[[0,2,1,1],[3,3,3,0],[2,3,1,2],[1,1,1,0]],[[0,2,1,1],[2,4,3,0],[2,3,1,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,0],[3,3,1,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,0],[2,3,1,2],[2,1,1,0]],[[1,2,2,2],[1,3,0,1],[0,3,3,2],[1,2,1,0]],[[1,2,3,1],[1,3,0,1],[0,3,3,2],[1,2,1,0]],[[1,3,2,1],[1,3,0,1],[0,3,3,2],[1,2,1,0]],[[2,2,2,1],[1,3,0,1],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[1,3,0,1],[0,3,3,2],[1,2,0,2]],[[1,2,2,1],[1,3,0,1],[0,3,3,2],[1,3,0,1]],[[1,2,2,1],[1,3,0,1],[0,3,3,2],[2,2,0,1]],[[0,3,1,1],[2,3,3,0],[2,3,1,2],[1,2,0,0]],[[0,2,1,1],[3,3,3,0],[2,3,1,2],[1,2,0,0]],[[0,2,1,1],[2,4,3,0],[2,3,1,2],[1,2,0,0]],[[0,2,1,1],[2,3,3,0],[3,3,1,2],[1,2,0,0]],[[0,2,1,1],[2,3,3,0],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[1,3,0,1],[0,3,3,3],[1,2,0,1]],[[1,2,2,1],[1,3,0,1],[0,3,4,2],[1,2,0,1]],[[1,2,2,1],[1,3,0,1],[0,4,3,2],[1,2,0,1]],[[1,2,2,1],[1,4,0,1],[0,3,3,2],[1,2,0,1]],[[1,2,2,2],[1,3,0,1],[0,3,3,2],[1,2,0,1]],[[1,2,3,1],[1,3,0,1],[0,3,3,2],[1,2,0,1]],[[1,3,2,1],[1,3,0,1],[0,3,3,2],[1,2,0,1]],[[2,2,2,1],[1,3,0,1],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[1,3,0,1],[0,3,3,2],[1,1,3,0]],[[1,2,2,1],[1,3,0,1],[0,3,3,3],[1,1,2,0]],[[1,2,2,1],[1,3,0,1],[0,3,4,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,1],[0,4,3,2],[1,1,2,0]],[[1,2,2,1],[1,4,0,1],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[1,3,0,1],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[1,3,0,1],[0,3,3,2],[1,1,2,0]],[[1,3,2,1],[1,3,0,1],[0,3,3,2],[1,1,2,0]],[[2,2,2,1],[1,3,0,1],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[1,3,0,1],[0,3,3,2],[1,1,1,2]],[[1,2,2,1],[1,3,0,1],[0,3,3,3],[1,1,1,1]],[[1,2,2,1],[1,3,0,1],[0,3,4,2],[1,1,1,1]],[[1,2,2,1],[1,3,0,1],[0,4,3,2],[1,1,1,1]],[[1,2,2,1],[1,4,0,1],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[1,3,0,1],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[1,3,0,1],[0,3,3,2],[1,1,1,1]],[[1,3,2,1],[1,3,0,1],[0,3,3,2],[1,1,1,1]],[[2,2,2,1],[1,3,0,1],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[1,3,0,1],[0,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,3,0,1],[0,3,3,3],[1,0,2,1]],[[0,3,1,1],[2,3,3,0],[2,3,2,1],[1,0,1,1]],[[0,2,1,1],[3,3,3,0],[2,3,2,1],[1,0,1,1]],[[0,2,1,1],[2,4,3,0],[2,3,2,1],[1,0,1,1]],[[0,2,1,1],[2,3,3,0],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[1,3,0,1],[0,3,4,2],[1,0,2,1]],[[1,2,2,1],[1,3,0,1],[0,3,3,1],[1,3,1,1]],[[1,2,2,1],[1,3,0,1],[0,3,3,1],[2,2,1,1]],[[1,2,2,1],[1,3,0,1],[0,3,4,1],[1,2,1,1]],[[1,2,2,1],[1,3,0,1],[0,4,3,1],[1,2,1,1]],[[1,2,2,1],[1,4,0,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,2],[1,3,0,1],[0,3,3,1],[1,2,1,1]],[[1,2,3,1],[1,3,0,1],[0,3,3,1],[1,2,1,1]],[[1,3,2,1],[1,3,0,1],[0,3,3,1],[1,2,1,1]],[[2,2,2,1],[1,3,0,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,1],[1,3,0,1],[0,3,3,1],[1,1,2,2]],[[1,2,2,1],[1,3,0,1],[0,3,3,1],[1,1,3,1]],[[1,2,2,1],[1,3,0,1],[0,3,4,1],[1,1,2,1]],[[1,2,2,1],[1,3,0,1],[0,4,3,1],[1,1,2,1]],[[1,2,2,1],[1,4,0,1],[0,3,3,1],[1,1,2,1]],[[1,2,2,2],[1,3,0,1],[0,3,3,1],[1,1,2,1]],[[1,2,3,1],[1,3,0,1],[0,3,3,1],[1,1,2,1]],[[1,3,2,1],[1,3,0,1],[0,3,3,1],[1,1,2,1]],[[2,2,2,1],[1,3,0,1],[0,3,3,1],[1,1,2,1]],[[1,2,2,1],[1,3,0,1],[0,3,2,2],[1,2,3,0]],[[1,2,2,1],[1,3,0,1],[0,3,2,2],[1,3,2,0]],[[1,2,2,1],[1,3,0,1],[0,3,2,2],[2,2,2,0]],[[1,2,2,1],[1,3,0,1],[0,4,2,2],[1,2,2,0]],[[1,2,2,1],[1,4,0,1],[0,3,2,2],[1,2,2,0]],[[1,2,2,2],[1,3,0,1],[0,3,2,2],[1,2,2,0]],[[1,2,3,1],[1,3,0,1],[0,3,2,2],[1,2,2,0]],[[1,3,2,1],[1,3,0,1],[0,3,2,2],[1,2,2,0]],[[2,2,2,1],[1,3,0,1],[0,3,2,2],[1,2,2,0]],[[1,2,2,1],[1,3,0,1],[0,3,2,2],[1,1,2,2]],[[1,2,2,1],[1,3,0,1],[0,3,2,2],[1,1,3,1]],[[1,2,2,1],[1,3,0,1],[0,3,2,3],[1,1,2,1]],[[1,2,2,1],[1,3,0,1],[0,3,2,1],[1,2,2,2]],[[1,2,2,1],[1,3,0,1],[0,3,2,1],[1,2,3,1]],[[1,2,2,1],[1,3,0,1],[0,3,2,1],[1,3,2,1]],[[1,2,2,1],[1,3,0,1],[0,3,2,1],[2,2,2,1]],[[1,2,2,1],[1,3,0,1],[0,4,2,1],[1,2,2,1]],[[1,2,2,1],[1,4,0,1],[0,3,2,1],[1,2,2,1]],[[0,3,1,1],[2,3,3,0],[2,3,2,2],[1,0,0,1]],[[0,2,1,1],[3,3,3,0],[2,3,2,2],[1,0,0,1]],[[0,2,1,1],[2,4,3,0],[2,3,2,2],[1,0,0,1]],[[0,2,1,1],[2,3,4,0],[2,3,2,2],[1,0,0,1]],[[0,2,1,1],[2,3,3,0],[3,3,2,2],[1,0,0,1]],[[0,3,1,1],[2,3,3,0],[2,3,2,2],[1,0,1,0]],[[0,2,1,1],[3,3,3,0],[2,3,2,2],[1,0,1,0]],[[0,2,1,1],[2,4,3,0],[2,3,2,2],[1,0,1,0]],[[0,2,1,1],[2,3,4,0],[2,3,2,2],[1,0,1,0]],[[0,2,1,1],[2,3,3,0],[3,3,2,2],[1,0,1,0]],[[1,2,2,2],[1,3,0,1],[0,3,2,1],[1,2,2,1]],[[1,2,3,1],[1,3,0,1],[0,3,2,1],[1,2,2,1]],[[1,3,2,1],[1,3,0,1],[0,3,2,1],[1,2,2,1]],[[2,2,2,1],[1,3,0,1],[0,3,2,1],[1,2,2,1]],[[1,2,2,1],[1,3,0,1],[0,3,1,2],[1,2,2,2]],[[1,2,2,1],[1,3,0,1],[0,3,1,2],[1,2,3,1]],[[1,2,2,1],[1,3,0,1],[0,3,1,2],[1,3,2,1]],[[1,2,2,1],[1,3,0,1],[0,3,1,2],[2,2,2,1]],[[1,2,2,1],[1,3,0,1],[0,3,1,3],[1,2,2,1]],[[1,2,2,1],[1,3,0,1],[0,4,1,2],[1,2,2,1]],[[1,2,2,1],[1,4,0,1],[0,3,1,2],[1,2,2,1]],[[1,2,2,2],[1,3,0,1],[0,3,1,2],[1,2,2,1]],[[1,2,3,1],[1,3,0,1],[0,3,1,2],[1,2,2,1]],[[1,3,2,1],[1,3,0,1],[0,3,1,2],[1,2,2,1]],[[2,2,2,1],[1,3,0,1],[0,3,1,2],[1,2,2,1]],[[1,2,2,1],[1,3,0,1],[0,2,3,2],[1,2,3,0]],[[1,2,2,1],[1,3,0,1],[0,2,3,2],[1,3,2,0]],[[1,2,2,1],[1,3,0,1],[0,2,3,2],[2,2,2,0]],[[1,2,2,1],[1,3,0,1],[0,2,3,3],[1,2,2,0]],[[1,2,2,1],[1,3,0,1],[0,2,4,2],[1,2,2,0]],[[1,2,2,1],[1,3,0,1],[0,2,3,2],[1,2,1,2]],[[1,2,2,1],[1,3,0,1],[0,2,3,3],[1,2,1,1]],[[1,2,2,1],[1,3,0,1],[0,2,4,2],[1,2,1,1]],[[1,2,2,1],[1,3,0,1],[0,2,3,1],[1,2,2,2]],[[1,2,2,1],[1,3,0,1],[0,2,3,1],[1,2,3,1]],[[1,2,2,1],[1,3,0,1],[0,2,3,1],[1,3,2,1]],[[1,2,2,1],[1,3,0,1],[0,2,3,1],[2,2,2,1]],[[1,2,2,1],[1,3,0,1],[0,2,4,1],[1,2,2,1]],[[1,2,2,1],[1,3,0,1],[0,2,2,2],[1,2,2,2]],[[1,2,2,1],[1,3,0,1],[0,2,2,2],[1,2,3,1]],[[1,2,2,1],[1,3,0,1],[0,2,2,2],[1,3,2,1]],[[1,2,2,1],[1,3,0,1],[0,2,2,2],[2,2,2,1]],[[1,2,2,1],[1,3,0,1],[0,2,2,3],[1,2,2,1]],[[1,2,2,1],[1,3,0,0],[1,3,3,2],[0,2,3,0]],[[1,2,2,1],[1,3,0,0],[1,3,3,2],[0,3,2,0]],[[1,2,2,1],[1,3,0,0],[1,4,3,2],[0,2,2,0]],[[1,2,2,1],[1,3,0,0],[1,3,3,1],[0,2,2,2]],[[1,2,2,1],[1,3,0,0],[1,3,3,1],[0,2,3,1]],[[1,2,2,1],[1,3,0,0],[1,3,3,1],[0,3,2,1]],[[1,2,2,1],[1,3,0,0],[1,4,3,1],[0,2,2,1]],[[1,2,2,1],[1,3,0,0],[0,3,3,2],[1,2,3,0]],[[1,2,2,1],[1,3,0,0],[0,3,3,2],[1,3,2,0]],[[1,2,2,1],[1,3,0,0],[0,3,3,2],[2,2,2,0]],[[1,2,2,1],[1,3,0,0],[0,4,3,2],[1,2,2,0]],[[1,2,2,1],[1,3,0,0],[0,3,3,1],[1,2,2,2]],[[1,2,2,1],[1,3,0,0],[0,3,3,1],[1,2,3,1]],[[1,2,2,1],[1,3,0,0],[0,3,3,1],[1,3,2,1]],[[1,2,2,1],[1,3,0,0],[0,3,3,1],[2,2,2,1]],[[1,2,2,1],[1,3,0,0],[0,4,3,1],[1,2,2,1]],[[1,2,2,1],[1,2,4,2],[2,3,3,0],[1,0,0,0]],[[1,2,2,2],[1,2,3,2],[2,3,3,0],[1,0,0,0]],[[1,2,3,1],[1,2,3,2],[2,3,3,0],[1,0,0,0]],[[1,3,2,1],[1,2,3,2],[2,3,3,0],[1,0,0,0]],[[2,2,2,1],[1,2,3,2],[2,3,3,0],[1,0,0,0]],[[1,2,2,1],[1,2,4,2],[2,3,2,0],[1,0,1,0]],[[1,2,2,2],[1,2,3,2],[2,3,2,0],[1,0,1,0]],[[1,2,3,1],[1,2,3,2],[2,3,2,0],[1,0,1,0]],[[1,3,2,1],[1,2,3,2],[2,3,2,0],[1,0,1,0]],[[2,2,2,1],[1,2,3,2],[2,3,2,0],[1,0,1,0]],[[1,2,2,1],[1,2,4,2],[2,3,2,0],[1,0,0,1]],[[1,2,2,2],[1,2,3,2],[2,3,2,0],[1,0,0,1]],[[1,2,3,1],[1,2,3,2],[2,3,2,0],[1,0,0,1]],[[1,3,2,1],[1,2,3,2],[2,3,2,0],[1,0,0,1]],[[2,2,2,1],[1,2,3,2],[2,3,2,0],[1,0,0,1]],[[0,3,1,1],[2,3,3,0],[2,3,3,2],[1,0,0,0]],[[0,2,1,1],[3,3,3,0],[2,3,3,2],[1,0,0,0]],[[0,2,1,1],[2,4,3,0],[2,3,3,2],[1,0,0,0]],[[0,2,1,1],[2,3,4,0],[2,3,3,2],[1,0,0,0]],[[0,2,1,1],[2,3,3,0],[3,3,3,2],[1,0,0,0]],[[1,2,2,1],[1,2,3,3],[2,3,0,2],[1,0,1,0]],[[1,2,2,2],[1,2,3,2],[2,3,0,2],[1,0,1,0]],[[1,2,3,1],[1,2,3,2],[2,3,0,2],[1,0,1,0]],[[1,3,2,1],[1,2,3,2],[2,3,0,2],[1,0,1,0]],[[2,2,2,1],[1,2,3,2],[2,3,0,2],[1,0,1,0]],[[1,2,2,1],[1,2,3,3],[2,3,0,2],[1,0,0,1]],[[1,2,2,2],[1,2,3,2],[2,3,0,2],[1,0,0,1]],[[1,2,3,1],[1,2,3,2],[2,3,0,2],[1,0,0,1]],[[1,3,2,1],[1,2,3,2],[2,3,0,2],[1,0,0,1]],[[2,2,2,1],[1,2,3,2],[2,3,0,2],[1,0,0,1]],[[1,2,2,1],[1,2,4,2],[2,2,3,0],[1,1,0,0]],[[1,2,2,2],[1,2,3,2],[2,2,3,0],[1,1,0,0]],[[1,2,3,1],[1,2,3,2],[2,2,3,0],[1,1,0,0]],[[1,3,2,1],[1,2,3,2],[2,2,3,0],[1,1,0,0]],[[2,2,2,1],[1,2,3,2],[2,2,3,0],[1,1,0,0]],[[1,2,2,1],[1,2,4,2],[2,2,3,0],[0,2,0,0]],[[1,2,2,2],[1,2,3,2],[2,2,3,0],[0,2,0,0]],[[1,2,3,1],[1,2,3,2],[2,2,3,0],[0,2,0,0]],[[1,3,2,1],[1,2,3,2],[2,2,3,0],[0,2,0,0]],[[2,2,2,1],[1,2,3,2],[2,2,3,0],[0,2,0,0]],[[0,3,1,1],[2,3,3,1],[0,1,1,2],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[0,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[0,1,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[0,1,1,2],[1,2,2,1]],[[0,3,1,1],[2,3,3,1],[0,1,2,2],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[0,1,2,2],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[0,1,2,2],[1,2,1,1]],[[0,2,1,1],[2,3,4,1],[0,1,2,2],[1,2,1,1]],[[0,3,1,1],[2,3,3,1],[0,1,2,2],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[0,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[0,1,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,4,1],[0,1,2,2],[1,2,2,0]],[[0,3,1,1],[2,3,3,1],[0,1,3,0],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[0,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[0,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[0,1,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[0,1,4,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[0,1,3,0],[2,2,2,1]],[[0,2,1,1],[2,3,3,1],[0,1,3,0],[1,3,2,1]],[[0,2,1,1],[2,3,3,1],[0,1,3,0],[1,2,3,1]],[[0,2,1,1],[2,3,3,1],[0,1,3,0],[1,2,2,2]],[[0,3,1,1],[2,3,3,1],[0,1,3,1],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[0,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[0,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,4,1],[0,1,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[0,1,4,1],[1,2,1,1]],[[0,3,1,1],[2,3,3,1],[0,1,3,1],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[0,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[0,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,3,4,1],[0,1,3,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[0,1,4,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[0,1,3,1],[2,2,2,0]],[[0,2,1,1],[2,3,3,1],[0,1,3,1],[1,3,2,0]],[[0,2,1,1],[2,3,3,1],[0,1,3,1],[1,2,3,0]],[[0,3,1,1],[2,3,3,1],[0,2,0,2],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[0,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[0,2,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[0,2,0,2],[1,2,2,1]],[[0,3,1,1],[2,3,3,1],[0,2,1,2],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[0,2,1,2],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[0,2,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,4,1],[0,2,1,2],[1,1,2,1]],[[0,3,1,1],[2,3,3,1],[0,2,2,2],[1,0,2,1]],[[0,2,1,1],[2,4,3,1],[0,2,2,2],[1,0,2,1]],[[0,2,1,1],[2,3,4,1],[0,2,2,2],[1,0,2,1]],[[0,3,1,1],[2,3,3,1],[0,2,2,2],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[0,2,2,2],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[0,2,2,2],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[0,2,2,2],[1,1,1,1]],[[0,3,1,1],[2,3,3,1],[0,2,2,2],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[0,2,2,2],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[0,2,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,1],[0,2,2,2],[1,1,2,0]],[[0,3,1,1],[2,3,3,1],[0,2,2,2],[1,2,0,1]],[[0,2,1,1],[3,3,3,1],[0,2,2,2],[1,2,0,1]],[[0,2,1,1],[2,4,3,1],[0,2,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,4,1],[0,2,2,2],[1,2,0,1]],[[0,3,1,1],[2,3,3,1],[0,2,2,2],[1,2,1,0]],[[0,2,1,1],[3,3,3,1],[0,2,2,2],[1,2,1,0]],[[0,2,1,1],[2,4,3,1],[0,2,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,4,1],[0,2,2,2],[1,2,1,0]],[[0,3,1,1],[2,3,3,1],[0,2,3,0],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[0,2,3,0],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[0,2,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,4,1],[0,2,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[0,2,4,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[0,2,3,0],[1,1,3,1]],[[0,2,1,1],[2,3,3,1],[0,2,3,0],[1,1,2,2]],[[0,3,1,1],[2,3,3,1],[0,2,3,0],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[0,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[0,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,4,1],[0,2,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[0,2,4,0],[1,2,1,1]],[[0,3,1,1],[2,3,3,1],[0,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,4,3,1],[0,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,4,1],[0,2,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[0,2,4,1],[1,0,2,1]],[[0,3,1,1],[2,3,3,1],[0,2,3,1],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[0,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[0,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[0,2,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[0,2,4,1],[1,1,1,1]],[[0,3,1,1],[2,3,3,1],[0,2,3,1],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[0,2,3,1],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[0,2,3,1],[1,1,2,0]],[[0,2,1,1],[2,3,4,1],[0,2,3,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[0,2,4,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[0,2,3,1],[1,1,3,0]],[[0,3,1,1],[2,3,3,1],[0,2,3,1],[1,2,0,1]],[[0,2,1,1],[3,3,3,1],[0,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,4,3,1],[0,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,4,1],[0,2,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[0,2,4,1],[1,2,0,1]],[[0,3,1,1],[2,3,3,1],[0,2,3,1],[1,2,1,0]],[[0,2,1,1],[3,3,3,1],[0,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,4,3,1],[0,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,4,1],[0,2,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[0,2,4,1],[1,2,1,0]],[[0,3,1,1],[2,3,3,1],[0,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,4,3,1],[0,2,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,1],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,2,4,2],[2,2,2,0],[1,2,0,0]],[[1,2,2,2],[1,2,3,2],[2,2,2,0],[1,2,0,0]],[[1,2,3,1],[1,2,3,2],[2,2,2,0],[1,2,0,0]],[[1,3,2,1],[1,2,3,2],[2,2,2,0],[1,2,0,0]],[[2,2,2,1],[1,2,3,2],[2,2,2,0],[1,2,0,0]],[[1,2,2,1],[1,2,4,2],[2,2,2,0],[1,1,1,0]],[[1,2,2,2],[1,2,3,2],[2,2,2,0],[1,1,1,0]],[[1,2,3,1],[1,2,3,2],[2,2,2,0],[1,1,1,0]],[[1,3,2,1],[1,2,3,2],[2,2,2,0],[1,1,1,0]],[[2,2,2,1],[1,2,3,2],[2,2,2,0],[1,1,1,0]],[[1,2,2,1],[1,2,4,2],[2,2,2,0],[1,1,0,1]],[[1,2,2,2],[1,2,3,2],[2,2,2,0],[1,1,0,1]],[[1,2,3,1],[1,2,3,2],[2,2,2,0],[1,1,0,1]],[[1,3,2,1],[1,2,3,2],[2,2,2,0],[1,1,0,1]],[[2,2,2,1],[1,2,3,2],[2,2,2,0],[1,1,0,1]],[[0,3,1,1],[2,3,3,1],[0,3,0,1],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[0,3,0,1],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[0,3,0,1],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[0,3,0,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[0,4,0,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[0,3,0,1],[2,2,2,1]],[[0,2,1,1],[2,3,3,1],[0,3,0,1],[1,3,2,1]],[[0,2,1,1],[2,3,3,1],[0,3,0,1],[1,2,3,1]],[[0,2,1,1],[2,3,3,1],[0,3,0,1],[1,2,2,2]],[[0,3,1,1],[2,3,3,1],[0,3,0,2],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[0,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[0,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,4,1],[0,3,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[0,4,0,2],[1,1,2,1]],[[0,3,1,1],[2,3,3,1],[0,3,0,2],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[0,3,0,2],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[0,3,0,2],[1,2,1,1]],[[0,2,1,1],[2,3,4,1],[0,3,0,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[0,4,0,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[0,3,0,2],[2,2,1,1]],[[0,2,1,1],[2,3,3,1],[0,3,0,2],[1,3,1,1]],[[0,3,1,1],[2,3,3,1],[0,3,0,2],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[0,3,0,2],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[0,3,0,2],[1,2,2,0]],[[0,2,1,1],[2,3,4,1],[0,3,0,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[0,4,0,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[0,3,0,2],[2,2,2,0]],[[0,2,1,1],[2,3,3,1],[0,3,0,2],[1,3,2,0]],[[0,2,1,1],[2,3,3,1],[0,3,0,2],[1,2,3,0]],[[0,3,1,1],[2,3,3,1],[0,3,1,0],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[0,3,1,0],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[0,3,1,0],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[0,3,1,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[0,4,1,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[0,3,1,0],[2,2,2,1]],[[0,2,1,1],[2,3,3,1],[0,3,1,0],[1,3,2,1]],[[0,2,1,1],[2,3,3,1],[0,3,1,0],[1,2,3,1]],[[0,2,1,1],[2,3,3,1],[0,3,1,0],[1,2,2,2]],[[0,3,1,1],[2,3,3,1],[0,3,1,1],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[0,3,1,1],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[0,3,1,1],[1,2,2,0]],[[0,2,1,1],[2,3,4,1],[0,3,1,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[0,4,1,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[0,3,1,1],[2,2,2,0]],[[0,2,1,1],[2,3,3,1],[0,3,1,1],[1,3,2,0]],[[0,2,1,1],[2,3,3,1],[0,3,1,1],[1,2,3,0]],[[0,3,1,1],[2,3,3,1],[0,3,1,2],[0,1,2,1]],[[0,2,1,1],[2,4,3,1],[0,3,1,2],[0,1,2,1]],[[0,2,1,1],[2,3,4,1],[0,3,1,2],[0,1,2,1]],[[0,3,1,1],[2,3,3,1],[0,3,1,2],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[0,3,1,2],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[0,3,1,2],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[0,3,1,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[0,4,1,2],[1,1,1,1]],[[0,3,1,1],[2,3,3,1],[0,3,1,2],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[0,3,1,2],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[0,3,1,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,1],[0,3,1,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[0,4,1,2],[1,1,2,0]],[[0,3,1,1],[2,3,3,1],[0,3,1,2],[1,2,0,1]],[[0,2,1,1],[3,3,3,1],[0,3,1,2],[1,2,0,1]],[[0,2,1,1],[2,4,3,1],[0,3,1,2],[1,2,0,1]],[[0,2,1,1],[2,3,4,1],[0,3,1,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[0,4,1,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[0,3,1,2],[2,2,0,1]],[[0,2,1,1],[2,3,3,1],[0,3,1,2],[1,3,0,1]],[[0,3,1,1],[2,3,3,1],[0,3,1,2],[1,2,1,0]],[[0,2,1,1],[3,3,3,1],[0,3,1,2],[1,2,1,0]],[[0,2,1,1],[2,4,3,1],[0,3,1,2],[1,2,1,0]],[[0,2,1,1],[2,3,4,1],[0,3,1,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[0,4,1,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[0,3,1,2],[2,2,1,0]],[[0,2,1,1],[2,3,3,1],[0,3,1,2],[1,3,1,0]],[[1,2,2,1],[1,2,4,2],[2,2,2,0],[1,0,2,0]],[[1,2,2,2],[1,2,3,2],[2,2,2,0],[1,0,2,0]],[[1,2,3,1],[1,2,3,2],[2,2,2,0],[1,0,2,0]],[[1,3,2,1],[1,2,3,2],[2,2,2,0],[1,0,2,0]],[[0,3,1,1],[2,3,3,1],[0,3,2,0],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[0,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[0,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,3,4,1],[0,3,2,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[0,4,2,0],[1,1,2,1]],[[0,3,1,1],[2,3,3,1],[0,3,2,0],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[0,3,2,0],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[0,3,2,0],[1,2,1,1]],[[0,2,1,1],[2,3,4,1],[0,3,2,0],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[0,4,2,0],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[0,3,2,0],[2,2,1,1]],[[0,2,1,1],[2,3,3,1],[0,3,2,0],[1,3,1,1]],[[0,3,1,1],[2,3,3,1],[0,3,2,1],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[0,3,2,1],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[0,3,2,1],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[0,3,2,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[0,4,2,1],[1,1,1,1]],[[0,3,1,1],[2,3,3,1],[0,3,2,1],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[0,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[0,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,3,4,1],[0,3,2,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[0,4,2,1],[1,1,2,0]],[[0,3,1,1],[2,3,3,1],[0,3,2,1],[1,2,0,1]],[[0,2,1,1],[3,3,3,1],[0,3,2,1],[1,2,0,1]],[[0,2,1,1],[2,4,3,1],[0,3,2,1],[1,2,0,1]],[[0,2,1,1],[2,3,4,1],[0,3,2,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[0,4,2,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[0,3,2,1],[2,2,0,1]],[[0,2,1,1],[2,3,3,1],[0,3,2,1],[1,3,0,1]],[[0,3,1,1],[2,3,3,1],[0,3,2,1],[1,2,1,0]],[[0,2,1,1],[3,3,3,1],[0,3,2,1],[1,2,1,0]],[[0,2,1,1],[2,4,3,1],[0,3,2,1],[1,2,1,0]],[[0,2,1,1],[2,3,4,1],[0,3,2,1],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[0,4,2,1],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[0,3,2,1],[2,2,1,0]],[[0,2,1,1],[2,3,3,1],[0,3,2,1],[1,3,1,0]],[[2,2,2,1],[1,2,3,2],[2,2,2,0],[1,0,2,0]],[[1,2,2,1],[1,2,4,2],[2,2,2,0],[1,0,1,1]],[[1,2,2,2],[1,2,3,2],[2,2,2,0],[1,0,1,1]],[[1,2,3,1],[1,2,3,2],[2,2,2,0],[1,0,1,1]],[[1,3,2,1],[1,2,3,2],[2,2,2,0],[1,0,1,1]],[[2,2,2,1],[1,2,3,2],[2,2,2,0],[1,0,1,1]],[[0,3,1,1],[2,3,3,1],[0,3,2,2],[0,0,2,1]],[[0,2,1,1],[2,4,3,1],[0,3,2,2],[0,0,2,1]],[[0,2,1,1],[2,3,4,1],[0,3,2,2],[0,0,2,1]],[[0,3,1,1],[2,3,3,1],[0,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,4,3,1],[0,3,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,1],[0,3,2,2],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[0,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[0,3,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[0,3,2,2],[0,1,2,0]],[[0,3,1,1],[2,3,3,1],[0,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[0,3,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,1],[0,3,2,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[0,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[0,3,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,2],[2,2,2,0],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[2,2,2,0],[0,2,1,0]],[[1,2,3,1],[1,2,3,2],[2,2,2,0],[0,2,1,0]],[[1,3,2,1],[1,2,3,2],[2,2,2,0],[0,2,1,0]],[[2,2,2,1],[1,2,3,2],[2,2,2,0],[0,2,1,0]],[[1,2,2,1],[1,2,4,2],[2,2,2,0],[0,2,0,1]],[[1,2,2,2],[1,2,3,2],[2,2,2,0],[0,2,0,1]],[[1,2,3,1],[1,2,3,2],[2,2,2,0],[0,2,0,1]],[[1,3,2,1],[1,2,3,2],[2,2,2,0],[0,2,0,1]],[[2,2,2,1],[1,2,3,2],[2,2,2,0],[0,2,0,1]],[[1,2,2,1],[1,2,4,2],[2,2,2,0],[0,1,2,0]],[[1,2,2,2],[1,2,3,2],[2,2,2,0],[0,1,2,0]],[[1,2,3,1],[1,2,3,2],[2,2,2,0],[0,1,2,0]],[[1,3,2,1],[1,2,3,2],[2,2,2,0],[0,1,2,0]],[[2,2,2,1],[1,2,3,2],[2,2,2,0],[0,1,2,0]],[[1,2,2,1],[1,2,4,2],[2,2,2,0],[0,1,1,1]],[[1,2,2,2],[1,2,3,2],[2,2,2,0],[0,1,1,1]],[[1,2,3,1],[1,2,3,2],[2,2,2,0],[0,1,1,1]],[[1,3,2,1],[1,2,3,2],[2,2,2,0],[0,1,1,1]],[[2,2,2,1],[1,2,3,2],[2,2,2,0],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[0,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,4,3,1],[0,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,4,1],[0,3,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[0,3,4,0],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[0,3,3,0],[0,1,3,1]],[[0,2,1,1],[2,3,3,1],[0,3,3,0],[0,1,2,2]],[[0,3,1,1],[2,3,3,1],[0,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[0,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,4,1],[0,3,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[0,3,4,0],[0,2,1,1]],[[0,3,1,1],[2,3,3,1],[0,3,3,0],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[0,3,3,0],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[0,3,3,0],[1,1,2,0]],[[0,2,1,1],[2,3,4,1],[0,3,3,0],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[0,4,3,0],[1,1,2,0]],[[0,3,1,1],[2,3,3,1],[0,3,3,0],[1,2,1,0]],[[0,2,1,1],[3,3,3,1],[0,3,3,0],[1,2,1,0]],[[0,2,1,1],[2,4,3,1],[0,3,3,0],[1,2,1,0]],[[0,2,1,1],[2,3,4,1],[0,3,3,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[0,4,3,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[0,3,3,0],[2,2,1,0]],[[0,2,1,1],[2,3,3,1],[0,3,3,0],[1,3,1,0]],[[0,3,1,1],[2,3,3,1],[0,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,4,3,1],[0,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,4,1],[0,3,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,3,1],[0,3,4,1],[0,0,2,1]],[[0,3,1,1],[2,3,3,1],[0,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,4,3,1],[0,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,4,1],[0,3,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,3,1],[0,3,4,1],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[0,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[0,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[0,3,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[0,3,4,1],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[0,3,3,1],[0,1,3,0]],[[0,3,1,1],[2,3,3,1],[0,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[0,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,4,1],[0,3,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[0,3,4,1],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[0,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[0,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[0,3,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[0,3,4,1],[0,2,1,0]],[[0,3,1,1],[2,3,3,1],[0,3,3,1],[1,2,0,0]],[[0,2,1,1],[3,3,3,1],[0,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,4,3,1],[0,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,3,4,1],[0,3,3,1],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[0,4,3,1],[1,2,0,0]],[[0,3,1,1],[2,3,3,1],[0,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,4,3,1],[0,3,3,2],[0,1,0,1]],[[0,2,1,1],[2,3,4,1],[0,3,3,2],[0,1,0,1]],[[1,2,2,1],[1,2,4,2],[2,2,1,0],[1,1,2,0]],[[1,2,2,2],[1,2,3,2],[2,2,1,0],[1,1,2,0]],[[1,2,3,1],[1,2,3,2],[2,2,1,0],[1,1,2,0]],[[1,3,2,1],[1,2,3,2],[2,2,1,0],[1,1,2,0]],[[2,2,2,1],[1,2,3,2],[2,2,1,0],[1,1,2,0]],[[1,2,2,1],[1,2,4,2],[2,2,1,0],[0,2,2,0]],[[1,2,2,2],[1,2,3,2],[2,2,1,0],[0,2,2,0]],[[1,2,3,1],[1,2,3,2],[2,2,1,0],[0,2,2,0]],[[1,3,2,1],[1,2,3,2],[2,2,1,0],[0,2,2,0]],[[2,2,2,1],[1,2,3,2],[2,2,1,0],[0,2,2,0]],[[1,2,2,1],[1,2,3,3],[2,2,0,2],[1,2,0,0]],[[1,2,2,2],[1,2,3,2],[2,2,0,2],[1,2,0,0]],[[1,2,3,1],[1,2,3,2],[2,2,0,2],[1,2,0,0]],[[1,3,2,1],[1,2,3,2],[2,2,0,2],[1,2,0,0]],[[2,2,2,1],[1,2,3,2],[2,2,0,2],[1,2,0,0]],[[1,2,2,1],[1,2,3,3],[2,2,0,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,2],[2,2,0,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,2],[2,2,0,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,2],[2,2,0,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,2],[2,2,0,2],[1,1,1,0]],[[1,2,2,1],[1,2,3,3],[2,2,0,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,2],[2,2,0,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,2],[2,2,0,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,2],[2,2,0,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,2],[2,2,0,2],[1,1,0,1]],[[1,2,2,1],[1,2,3,3],[2,2,0,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,2],[2,2,0,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,2],[2,2,0,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,2],[2,2,0,2],[1,0,2,0]],[[0,3,1,1],[2,3,3,1],[1,0,1,2],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[1,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[1,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[1,0,1,2],[1,2,2,1]],[[0,3,1,1],[2,3,3,1],[1,0,2,2],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[1,0,2,2],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[1,0,2,2],[1,2,1,1]],[[0,2,1,1],[2,3,4,1],[1,0,2,2],[1,2,1,1]],[[0,3,1,1],[2,3,3,1],[1,0,2,2],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[1,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[1,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,4,1],[1,0,2,2],[1,2,2,0]],[[0,3,1,1],[2,3,3,1],[1,0,3,0],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[1,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[1,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[1,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[1,0,4,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[1,0,3,0],[2,2,2,1]],[[0,2,1,1],[2,3,3,1],[1,0,3,0],[1,3,2,1]],[[0,2,1,1],[2,3,3,1],[1,0,3,0],[1,2,3,1]],[[0,2,1,1],[2,3,3,1],[1,0,3,0],[1,2,2,2]],[[0,3,1,1],[2,3,3,1],[1,0,3,1],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[1,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[1,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,4,1],[1,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[1,0,4,1],[1,2,1,1]],[[0,3,1,1],[2,3,3,1],[1,0,3,1],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[1,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[1,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,3,4,1],[1,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[1,0,4,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[1,0,3,1],[2,2,2,0]],[[0,2,1,1],[2,3,3,1],[1,0,3,1],[1,3,2,0]],[[0,2,1,1],[2,3,3,1],[1,0,3,1],[1,2,3,0]],[[2,2,2,1],[1,2,3,2],[2,2,0,2],[1,0,2,0]],[[1,2,2,1],[1,2,3,3],[2,2,0,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,2],[2,2,0,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,2],[2,2,0,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,2],[2,2,0,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,2],[2,2,0,2],[1,0,1,1]],[[0,3,1,1],[2,3,3,1],[1,1,0,2],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[1,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[1,1,0,2],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[1,1,0,2],[1,2,2,1]],[[0,3,1,1],[2,3,3,1],[1,1,1,2],[0,2,2,1]],[[0,2,1,1],[3,3,3,1],[1,1,1,2],[0,2,2,1]],[[0,2,1,1],[2,4,3,1],[1,1,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,4,1],[1,1,1,2],[0,2,2,1]],[[0,3,1,1],[2,3,3,1],[1,1,2,2],[0,2,1,1]],[[0,2,1,1],[3,3,3,1],[1,1,2,2],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[1,1,2,2],[0,2,1,1]],[[0,2,1,1],[2,3,4,1],[1,1,2,2],[0,2,1,1]],[[0,3,1,1],[2,3,3,1],[1,1,2,2],[0,2,2,0]],[[0,2,1,1],[3,3,3,1],[1,1,2,2],[0,2,2,0]],[[0,2,1,1],[2,4,3,1],[1,1,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,4,1],[1,1,2,2],[0,2,2,0]],[[0,3,1,1],[2,3,3,1],[1,1,3,0],[0,2,2,1]],[[0,2,1,1],[3,3,3,1],[1,1,3,0],[0,2,2,1]],[[0,2,1,1],[2,4,3,1],[1,1,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,4,1],[1,1,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[1,1,4,0],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[1,1,3,0],[0,3,2,1]],[[0,2,1,1],[2,3,3,1],[1,1,3,0],[0,2,3,1]],[[0,2,1,1],[2,3,3,1],[1,1,3,0],[0,2,2,2]],[[0,3,1,1],[2,3,3,1],[1,1,3,1],[0,2,1,1]],[[0,2,1,1],[3,3,3,1],[1,1,3,1],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[1,1,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,4,1],[1,1,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[1,1,4,1],[0,2,1,1]],[[0,3,1,1],[2,3,3,1],[1,1,3,1],[0,2,2,0]],[[0,2,1,1],[3,3,3,1],[1,1,3,1],[0,2,2,0]],[[0,2,1,1],[2,4,3,1],[1,1,3,1],[0,2,2,0]],[[0,2,1,1],[2,3,4,1],[1,1,3,1],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[1,1,4,1],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[1,1,3,1],[0,3,2,0]],[[0,2,1,1],[2,3,3,1],[1,1,3,1],[0,2,3,0]],[[1,2,2,1],[1,2,3,3],[2,2,0,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[2,2,0,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,2],[2,2,0,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,2],[2,2,0,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,2],[2,2,0,2],[0,2,1,0]],[[1,2,2,1],[1,2,3,3],[2,2,0,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,2],[2,2,0,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,2],[2,2,0,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,2],[2,2,0,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,2],[2,2,0,2],[0,2,0,1]],[[1,2,2,1],[1,2,3,3],[2,2,0,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,2],[2,2,0,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,2],[2,2,0,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,2],[2,2,0,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,2],[2,2,0,2],[0,1,2,0]],[[1,2,2,1],[1,2,3,3],[2,2,0,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,2],[2,2,0,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,2],[2,2,0,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,2],[2,2,0,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,2],[2,2,0,2],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[1,2,0,2],[0,2,2,1]],[[0,2,1,1],[3,3,3,1],[1,2,0,2],[0,2,2,1]],[[0,2,1,1],[2,4,3,1],[1,2,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,4,1],[1,2,0,2],[0,2,2,1]],[[0,3,1,1],[2,3,3,1],[1,2,1,2],[0,1,2,1]],[[0,2,1,1],[3,3,3,1],[1,2,1,2],[0,1,2,1]],[[0,2,1,1],[2,4,3,1],[1,2,1,2],[0,1,2,1]],[[0,2,1,1],[2,3,4,1],[1,2,1,2],[0,1,2,1]],[[0,3,1,1],[2,3,3,1],[1,2,1,2],[1,0,2,1]],[[0,2,1,1],[3,3,3,1],[1,2,1,2],[1,0,2,1]],[[0,2,1,1],[2,4,3,1],[1,2,1,2],[1,0,2,1]],[[0,2,1,1],[2,3,4,1],[1,2,1,2],[1,0,2,1]],[[0,3,1,1],[2,3,3,1],[1,2,2,2],[0,0,2,1]],[[0,2,1,1],[3,3,3,1],[1,2,2,2],[0,0,2,1]],[[0,2,1,1],[2,4,3,1],[1,2,2,2],[0,0,2,1]],[[0,2,1,1],[2,3,4,1],[1,2,2,2],[0,0,2,1]],[[0,3,1,1],[2,3,3,1],[1,2,2,2],[0,1,1,1]],[[0,2,1,1],[3,3,3,1],[1,2,2,2],[0,1,1,1]],[[0,2,1,1],[2,4,3,1],[1,2,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,1],[1,2,2,2],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[1,2,2,2],[0,1,2,0]],[[0,2,1,1],[3,3,3,1],[1,2,2,2],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[1,2,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[1,2,2,2],[0,1,2,0]],[[0,3,1,1],[2,3,3,1],[1,2,2,2],[0,2,0,1]],[[0,2,1,1],[3,3,3,1],[1,2,2,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[1,2,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,1],[1,2,2,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[1,2,2,2],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[1,2,2,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[1,2,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[1,2,2,2],[0,2,1,0]],[[0,3,1,1],[2,3,3,1],[1,2,2,2],[1,0,1,1]],[[0,2,1,1],[3,3,3,1],[1,2,2,2],[1,0,1,1]],[[0,2,1,1],[2,4,3,1],[1,2,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,4,1],[1,2,2,2],[1,0,1,1]],[[0,3,1,1],[2,3,3,1],[1,2,2,2],[1,0,2,0]],[[0,2,1,1],[3,3,3,1],[1,2,2,2],[1,0,2,0]],[[0,2,1,1],[2,4,3,1],[1,2,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,4,1],[1,2,2,2],[1,0,2,0]],[[0,3,1,1],[2,3,3,1],[1,2,2,2],[1,1,0,1]],[[0,2,1,1],[3,3,3,1],[1,2,2,2],[1,1,0,1]],[[0,2,1,1],[2,4,3,1],[1,2,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,1],[1,2,2,2],[1,1,0,1]],[[0,3,1,1],[2,3,3,1],[1,2,2,2],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[1,2,2,2],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[1,2,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,4,1],[1,2,2,2],[1,1,1,0]],[[0,3,1,1],[2,3,3,1],[1,2,3,0],[0,1,2,1]],[[0,2,1,1],[3,3,3,1],[1,2,3,0],[0,1,2,1]],[[0,2,1,1],[2,4,3,1],[1,2,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,4,1],[1,2,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[1,2,4,0],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[1,2,3,0],[0,1,3,1]],[[0,2,1,1],[2,3,3,1],[1,2,3,0],[0,1,2,2]],[[0,3,1,1],[2,3,3,1],[1,2,3,0],[0,2,1,1]],[[0,2,1,1],[3,3,3,1],[1,2,3,0],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[1,2,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,4,1],[1,2,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[1,2,4,0],[0,2,1,1]],[[0,3,1,1],[2,3,3,1],[1,2,3,0],[1,0,2,1]],[[0,2,1,1],[3,3,3,1],[1,2,3,0],[1,0,2,1]],[[0,2,1,1],[2,4,3,1],[1,2,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,4,1],[1,2,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[1,2,4,0],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[1,2,3,0],[1,0,3,1]],[[0,2,1,1],[2,3,3,1],[1,2,3,0],[1,0,2,2]],[[0,3,1,1],[2,3,3,1],[1,2,3,0],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[1,2,3,0],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[1,2,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[1,2,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[1,2,4,0],[1,1,1,1]],[[0,3,1,1],[2,3,3,1],[1,2,3,1],[0,0,2,1]],[[0,2,1,1],[3,3,3,1],[1,2,3,1],[0,0,2,1]],[[0,2,1,1],[2,4,3,1],[1,2,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,4,1],[1,2,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,3,1],[1,2,4,1],[0,0,2,1]],[[0,3,1,1],[2,3,3,1],[1,2,3,1],[0,1,1,1]],[[0,2,1,1],[3,3,3,1],[1,2,3,1],[0,1,1,1]],[[0,2,1,1],[2,4,3,1],[1,2,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,4,1],[1,2,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,3,1],[1,2,4,1],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[1,2,3,1],[0,1,2,0]],[[0,2,1,1],[3,3,3,1],[1,2,3,1],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[1,2,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[1,2,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[1,2,4,1],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[1,2,3,1],[0,1,3,0]],[[0,3,1,1],[2,3,3,1],[1,2,3,1],[0,2,0,1]],[[0,2,1,1],[3,3,3,1],[1,2,3,1],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[1,2,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,4,1],[1,2,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[1,2,4,1],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[1,2,3,1],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[1,2,3,1],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[1,2,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[1,2,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[1,2,4,1],[0,2,1,0]],[[0,3,1,1],[2,3,3,1],[1,2,3,1],[1,0,1,1]],[[0,2,1,1],[3,3,3,1],[1,2,3,1],[1,0,1,1]],[[0,2,1,1],[2,4,3,1],[1,2,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,4,1],[1,2,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[1,2,4,1],[1,0,1,1]],[[0,3,1,1],[2,3,3,1],[1,2,3,1],[1,0,2,0]],[[0,2,1,1],[3,3,3,1],[1,2,3,1],[1,0,2,0]],[[0,2,1,1],[2,4,3,1],[1,2,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,4,1],[1,2,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[1,2,4,1],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[1,2,3,1],[1,0,3,0]],[[0,3,1,1],[2,3,3,1],[1,2,3,1],[1,1,0,1]],[[0,2,1,1],[3,3,3,1],[1,2,3,1],[1,1,0,1]],[[0,2,1,1],[2,4,3,1],[1,2,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,4,1],[1,2,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[1,2,4,1],[1,1,0,1]],[[0,3,1,1],[2,3,3,1],[1,2,3,1],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[1,2,3,1],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[1,2,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,4,1],[1,2,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[1,2,4,1],[1,1,1,0]],[[0,3,1,1],[2,3,3,1],[1,2,3,2],[0,1,0,1]],[[0,2,1,1],[3,3,3,1],[1,2,3,2],[0,1,0,1]],[[0,2,1,1],[2,4,3,1],[1,2,3,2],[0,1,0,1]],[[0,2,1,1],[2,3,4,1],[1,2,3,2],[0,1,0,1]],[[1,2,2,1],[1,2,4,2],[2,1,3,0],[1,1,1,0]],[[1,2,2,2],[1,2,3,2],[2,1,3,0],[1,1,1,0]],[[1,2,3,1],[1,2,3,2],[2,1,3,0],[1,1,1,0]],[[1,3,2,1],[1,2,3,2],[2,1,3,0],[1,1,1,0]],[[2,2,2,1],[1,2,3,2],[2,1,3,0],[1,1,1,0]],[[1,2,2,1],[1,2,4,2],[2,1,3,0],[1,1,0,1]],[[1,2,2,2],[1,2,3,2],[2,1,3,0],[1,1,0,1]],[[1,2,3,1],[1,2,3,2],[2,1,3,0],[1,1,0,1]],[[1,3,2,1],[1,2,3,2],[2,1,3,0],[1,1,0,1]],[[2,2,2,1],[1,2,3,2],[2,1,3,0],[1,1,0,1]],[[0,3,1,1],[2,3,3,1],[1,2,3,2],[1,0,0,1]],[[0,2,1,1],[3,3,3,1],[1,2,3,2],[1,0,0,1]],[[0,2,1,1],[2,4,3,1],[1,2,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,4,1],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[1,2,4,2],[2,1,3,0],[1,0,2,0]],[[1,2,2,2],[1,2,3,2],[2,1,3,0],[1,0,2,0]],[[1,2,3,1],[1,2,3,2],[2,1,3,0],[1,0,2,0]],[[1,3,2,1],[1,2,3,2],[2,1,3,0],[1,0,2,0]],[[2,2,2,1],[1,2,3,2],[2,1,3,0],[1,0,2,0]],[[1,2,2,1],[1,2,4,2],[2,1,3,0],[1,0,1,1]],[[1,2,2,2],[1,2,3,2],[2,1,3,0],[1,0,1,1]],[[1,2,3,1],[1,2,3,2],[2,1,3,0],[1,0,1,1]],[[1,3,2,1],[1,2,3,2],[2,1,3,0],[1,0,1,1]],[[2,2,2,1],[1,2,3,2],[2,1,3,0],[1,0,1,1]],[[1,2,2,1],[1,2,4,2],[2,1,3,0],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[2,1,3,0],[0,2,1,0]],[[1,2,3,1],[1,2,3,2],[2,1,3,0],[0,2,1,0]],[[1,3,2,1],[1,2,3,2],[2,1,3,0],[0,2,1,0]],[[2,2,2,1],[1,2,3,2],[2,1,3,0],[0,2,1,0]],[[1,2,2,1],[1,2,4,2],[2,1,3,0],[0,2,0,1]],[[1,2,2,2],[1,2,3,2],[2,1,3,0],[0,2,0,1]],[[1,2,3,1],[1,2,3,2],[2,1,3,0],[0,2,0,1]],[[1,3,2,1],[1,2,3,2],[2,1,3,0],[0,2,0,1]],[[2,2,2,1],[1,2,3,2],[2,1,3,0],[0,2,0,1]],[[1,2,2,1],[1,2,4,2],[2,1,3,0],[0,1,2,0]],[[1,2,2,2],[1,2,3,2],[2,1,3,0],[0,1,2,0]],[[1,2,3,1],[1,2,3,2],[2,1,3,0],[0,1,2,0]],[[1,3,2,1],[1,2,3,2],[2,1,3,0],[0,1,2,0]],[[2,2,2,1],[1,2,3,2],[2,1,3,0],[0,1,2,0]],[[1,2,2,1],[1,2,4,2],[2,1,3,0],[0,1,1,1]],[[1,2,2,2],[1,2,3,2],[2,1,3,0],[0,1,1,1]],[[1,2,3,1],[1,2,3,2],[2,1,3,0],[0,1,1,1]],[[1,3,2,1],[1,2,3,2],[2,1,3,0],[0,1,1,1]],[[2,2,2,1],[1,2,3,2],[2,1,3,0],[0,1,1,1]],[[1,2,2,1],[1,2,4,2],[2,1,3,0],[0,0,2,1]],[[1,2,2,2],[1,2,3,2],[2,1,3,0],[0,0,2,1]],[[1,2,3,1],[1,2,3,2],[2,1,3,0],[0,0,2,1]],[[1,3,2,1],[1,2,3,2],[2,1,3,0],[0,0,2,1]],[[2,2,2,1],[1,2,3,2],[2,1,3,0],[0,0,2,1]],[[0,3,1,1],[2,3,3,1],[1,3,0,1],[0,2,2,1]],[[0,2,1,1],[3,3,3,1],[1,3,0,1],[0,2,2,1]],[[0,2,1,1],[2,4,3,1],[1,3,0,1],[0,2,2,1]],[[0,2,1,1],[2,3,4,1],[1,3,0,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[1,4,0,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[1,3,0,1],[0,3,2,1]],[[0,2,1,1],[2,3,3,1],[1,3,0,1],[0,2,3,1]],[[0,2,1,1],[2,3,3,1],[1,3,0,1],[0,2,2,2]],[[0,3,1,1],[2,3,3,1],[1,3,0,1],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[1,3,0,1],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[1,3,0,1],[1,1,2,1]],[[0,2,1,1],[2,3,4,1],[1,3,0,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[1,4,0,1],[1,1,2,1]],[[0,3,1,1],[2,3,3,1],[1,3,0,2],[0,1,2,1]],[[0,2,1,1],[3,3,3,1],[1,3,0,2],[0,1,2,1]],[[0,2,1,1],[2,4,3,1],[1,3,0,2],[0,1,2,1]],[[0,2,1,1],[2,3,4,1],[1,3,0,2],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[1,4,0,2],[0,1,2,1]],[[0,3,1,1],[2,3,3,1],[1,3,0,2],[0,2,1,1]],[[0,2,1,1],[3,3,3,1],[1,3,0,2],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[1,3,0,2],[0,2,1,1]],[[0,2,1,1],[2,3,4,1],[1,3,0,2],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[1,4,0,2],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[1,3,0,2],[0,3,1,1]],[[0,3,1,1],[2,3,3,1],[1,3,0,2],[0,2,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,0,2],[0,2,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,0,2],[0,2,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,0,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[1,4,0,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[1,3,0,2],[0,3,2,0]],[[0,2,1,1],[2,3,3,1],[1,3,0,2],[0,2,3,0]],[[0,3,1,1],[2,3,3,1],[1,3,0,2],[1,0,2,1]],[[0,2,1,1],[3,3,3,1],[1,3,0,2],[1,0,2,1]],[[0,2,1,1],[2,4,3,1],[1,3,0,2],[1,0,2,1]],[[0,2,1,1],[2,3,4,1],[1,3,0,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[1,4,0,2],[1,0,2,1]],[[0,3,1,1],[2,3,3,1],[1,3,0,2],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[1,3,0,2],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[1,3,0,2],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[1,3,0,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[1,4,0,2],[1,1,1,1]],[[0,3,1,1],[2,3,3,1],[1,3,0,2],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,0,2],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,0,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,0,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[1,4,0,2],[1,1,2,0]],[[0,3,1,1],[2,3,3,1],[1,3,1,0],[0,2,2,1]],[[0,2,1,1],[3,3,3,1],[1,3,1,0],[0,2,2,1]],[[0,2,1,1],[2,4,3,1],[1,3,1,0],[0,2,2,1]],[[0,2,1,1],[2,3,4,1],[1,3,1,0],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[1,4,1,0],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[1,3,1,0],[0,3,2,1]],[[0,2,1,1],[2,3,3,1],[1,3,1,0],[0,2,3,1]],[[0,2,1,1],[2,3,3,1],[1,3,1,0],[0,2,2,2]],[[0,3,1,1],[2,3,3,1],[1,3,1,0],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[1,3,1,0],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[1,3,1,0],[1,1,2,1]],[[0,2,1,1],[2,3,4,1],[1,3,1,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[1,4,1,0],[1,1,2,1]],[[0,3,1,1],[2,3,3,1],[1,3,1,1],[0,2,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,1,1],[0,2,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,1,1],[0,2,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,1,1],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[1,4,1,1],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[1,3,1,1],[0,3,2,0]],[[0,2,1,1],[2,3,3,1],[1,3,1,1],[0,2,3,0]],[[0,3,1,1],[2,3,3,1],[1,3,1,1],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,1,1],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,1,1],[1,1,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,1,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[1,4,1,1],[1,1,2,0]],[[0,3,1,1],[2,3,3,1],[1,3,1,2],[0,1,1,1]],[[0,2,1,1],[3,3,3,1],[1,3,1,2],[0,1,1,1]],[[0,2,1,1],[2,4,3,1],[1,3,1,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,1],[1,3,1,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,1],[1,4,1,2],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[1,3,1,2],[0,1,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,1,2],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,1,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,1,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[1,4,1,2],[0,1,2,0]],[[0,3,1,1],[2,3,3,1],[1,3,1,2],[0,2,0,1]],[[0,2,1,1],[3,3,3,1],[1,3,1,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[1,3,1,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,1],[1,3,1,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[1,4,1,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[1,3,1,2],[0,3,0,1]],[[0,3,1,1],[2,3,3,1],[1,3,1,2],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[1,3,1,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[1,3,1,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[1,3,1,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[1,4,1,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[1,3,1,2],[0,3,1,0]],[[1,2,2,1],[1,2,3,3],[2,1,2,2],[1,0,0,1]],[[1,2,2,2],[1,2,3,2],[2,1,2,2],[1,0,0,1]],[[1,2,3,1],[1,2,3,2],[2,1,2,2],[1,0,0,1]],[[1,3,2,1],[1,2,3,2],[2,1,2,2],[1,0,0,1]],[[2,2,2,1],[1,2,3,2],[2,1,2,2],[1,0,0,1]],[[0,3,1,1],[2,3,3,1],[1,3,1,2],[1,0,1,1]],[[0,2,1,1],[3,3,3,1],[1,3,1,2],[1,0,1,1]],[[0,2,1,1],[2,4,3,1],[1,3,1,2],[1,0,1,1]],[[0,2,1,1],[2,3,4,1],[1,3,1,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[1,4,1,2],[1,0,1,1]],[[0,3,1,1],[2,3,3,1],[1,3,1,2],[1,0,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,1,2],[1,0,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,1,2],[1,0,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,1,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[1,4,1,2],[1,0,2,0]],[[0,3,1,1],[2,3,3,1],[1,3,1,2],[1,1,0,1]],[[0,2,1,1],[3,3,3,1],[1,3,1,2],[1,1,0,1]],[[0,2,1,1],[2,4,3,1],[1,3,1,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,1],[1,3,1,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[1,4,1,2],[1,1,0,1]],[[0,3,1,1],[2,3,3,1],[1,3,1,2],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[1,3,1,2],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[1,3,1,2],[1,1,1,0]],[[0,2,1,1],[2,3,4,1],[1,3,1,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[1,4,1,2],[1,1,1,0]],[[0,3,1,1],[2,3,3,1],[1,3,1,2],[1,2,0,0]],[[0,2,1,1],[3,3,3,1],[1,3,1,2],[1,2,0,0]],[[0,2,1,1],[2,4,3,1],[1,3,1,2],[1,2,0,0]],[[0,2,1,1],[2,3,4,1],[1,3,1,2],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[1,4,1,2],[1,2,0,0]],[[1,2,2,1],[1,2,3,3],[2,1,2,2],[0,1,0,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,0],[0,1,2,1]],[[0,2,1,1],[3,3,3,1],[1,3,2,0],[0,1,2,1]],[[0,2,1,1],[2,4,3,1],[1,3,2,0],[0,1,2,1]],[[0,2,1,1],[2,3,4,1],[1,3,2,0],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[1,4,2,0],[0,1,2,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,0],[0,2,1,1]],[[0,2,1,1],[3,3,3,1],[1,3,2,0],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[1,3,2,0],[0,2,1,1]],[[0,2,1,1],[2,3,4,1],[1,3,2,0],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[1,4,2,0],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[1,3,2,0],[0,3,1,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,0],[1,0,2,1]],[[0,2,1,1],[3,3,3,1],[1,3,2,0],[1,0,2,1]],[[0,2,1,1],[2,4,3,1],[1,3,2,0],[1,0,2,1]],[[0,2,1,1],[2,3,4,1],[1,3,2,0],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[1,4,2,0],[1,0,2,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,0],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[1,3,2,0],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[1,3,2,0],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[1,3,2,0],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[1,4,2,0],[1,1,1,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,0],[1,2,0,1]],[[0,2,1,1],[3,3,3,1],[1,3,2,0],[1,2,0,1]],[[0,2,1,1],[2,4,3,1],[1,3,2,0],[1,2,0,1]],[[0,2,1,1],[2,3,4,1],[1,3,2,0],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[1,4,2,0],[1,2,0,1]],[[1,2,2,2],[1,2,3,2],[2,1,2,2],[0,1,0,1]],[[1,2,3,1],[1,2,3,2],[2,1,2,2],[0,1,0,1]],[[1,3,2,1],[1,2,3,2],[2,1,2,2],[0,1,0,1]],[[2,2,2,1],[1,2,3,2],[2,1,2,2],[0,1,0,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,1],[0,1,1,1]],[[0,2,1,1],[3,3,3,1],[1,3,2,1],[0,1,1,1]],[[0,2,1,1],[2,4,3,1],[1,3,2,1],[0,1,1,1]],[[0,2,1,1],[2,3,4,1],[1,3,2,1],[0,1,1,1]],[[0,2,1,1],[2,3,3,1],[1,4,2,1],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,1],[0,1,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,2,1],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,2,1],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,2,1],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[1,4,2,1],[0,1,2,0]],[[0,3,1,1],[2,3,3,1],[1,3,2,1],[0,2,0,1]],[[0,2,1,1],[3,3,3,1],[1,3,2,1],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[1,3,2,1],[0,2,0,1]],[[0,2,1,1],[2,3,4,1],[1,3,2,1],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[1,4,2,1],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[1,3,2,1],[0,3,0,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,1],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[1,3,2,1],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[1,3,2,1],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[1,3,2,1],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[1,4,2,1],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[1,3,2,1],[0,3,1,0]],[[0,3,1,1],[2,3,3,1],[1,3,2,1],[1,0,1,1]],[[0,2,1,1],[3,3,3,1],[1,3,2,1],[1,0,1,1]],[[0,2,1,1],[2,4,3,1],[1,3,2,1],[1,0,1,1]],[[0,2,1,1],[2,3,4,1],[1,3,2,1],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[1,4,2,1],[1,0,1,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,1],[1,0,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,2,1],[1,0,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,2,1],[1,0,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,2,1],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[1,4,2,1],[1,0,2,0]],[[0,3,1,1],[2,3,3,1],[1,3,2,1],[1,1,0,1]],[[0,2,1,1],[3,3,3,1],[1,3,2,1],[1,1,0,1]],[[0,2,1,1],[2,4,3,1],[1,3,2,1],[1,1,0,1]],[[0,2,1,1],[2,3,4,1],[1,3,2,1],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[1,4,2,1],[1,1,0,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,1],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[1,3,2,1],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[1,3,2,1],[1,1,1,0]],[[0,2,1,1],[2,3,4,1],[1,3,2,1],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[1,4,2,1],[1,1,1,0]],[[0,3,1,1],[2,3,3,1],[1,3,2,1],[1,2,0,0]],[[0,2,1,1],[3,3,3,1],[1,3,2,1],[1,2,0,0]],[[0,2,1,1],[2,4,3,1],[1,3,2,1],[1,2,0,0]],[[0,2,1,1],[2,3,4,1],[1,3,2,1],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[1,4,2,1],[1,2,0,0]],[[1,2,2,1],[1,2,4,2],[2,1,2,0],[1,2,1,0]],[[1,2,2,2],[1,2,3,2],[2,1,2,0],[1,2,1,0]],[[1,2,3,1],[1,2,3,2],[2,1,2,0],[1,2,1,0]],[[1,3,2,1],[1,2,3,2],[2,1,2,0],[1,2,1,0]],[[2,2,2,1],[1,2,3,2],[2,1,2,0],[1,2,1,0]],[[1,2,2,1],[1,2,4,2],[2,1,2,0],[1,2,0,1]],[[1,2,2,2],[1,2,3,2],[2,1,2,0],[1,2,0,1]],[[1,2,3,1],[1,2,3,2],[2,1,2,0],[1,2,0,1]],[[1,3,2,1],[1,2,3,2],[2,1,2,0],[1,2,0,1]],[[2,2,2,1],[1,2,3,2],[2,1,2,0],[1,2,0,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,2],[0,0,1,1]],[[0,2,1,1],[3,3,3,1],[1,3,2,2],[0,0,1,1]],[[0,2,1,1],[2,4,3,1],[1,3,2,2],[0,0,1,1]],[[0,2,1,1],[2,3,4,1],[1,3,2,2],[0,0,1,1]],[[0,3,1,1],[2,3,3,1],[1,3,2,2],[0,0,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,2,2],[0,0,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,2,2],[0,0,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[1,2,3,3],[2,1,1,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,2],[2,1,1,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,2],[2,1,1,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,2],[2,1,1,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,2],[2,1,1,2],[1,1,1,0]],[[1,2,2,1],[1,2,3,3],[2,1,1,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,2],[2,1,1,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,2],[2,1,1,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,2],[2,1,1,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,2],[2,1,1,2],[1,1,0,1]],[[1,2,2,1],[1,2,3,3],[2,1,1,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,2],[2,1,1,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,2],[2,1,1,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,2],[2,1,1,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,2],[2,1,1,2],[1,0,2,0]],[[1,2,2,1],[1,2,3,3],[2,1,1,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,2],[2,1,1,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,2],[2,1,1,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,2],[2,1,1,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,2],[2,1,1,2],[1,0,1,1]],[[1,2,2,1],[1,2,3,3],[2,1,1,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[2,1,1,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,2],[2,1,1,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,2],[2,1,1,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,2],[2,1,1,2],[0,2,1,0]],[[1,2,2,1],[1,2,3,3],[2,1,1,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,2],[2,1,1,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,2],[2,1,1,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,2],[2,1,1,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,2],[2,1,1,2],[0,2,0,1]],[[1,2,2,1],[1,2,3,3],[2,1,1,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,2],[2,1,1,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,2],[2,1,1,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,2],[2,1,1,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,2],[2,1,1,2],[0,1,2,0]],[[1,2,2,1],[1,2,3,3],[2,1,1,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,2],[2,1,1,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,2],[2,1,1,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,2],[2,1,1,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,2],[2,1,1,2],[0,1,1,1]],[[1,2,2,1],[1,2,3,3],[2,1,1,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,2],[2,1,1,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,2],[2,1,1,2],[0,0,2,1]],[[0,3,1,1],[2,3,3,1],[1,3,3,0],[0,0,2,1]],[[0,2,1,1],[3,3,3,1],[1,3,3,0],[0,0,2,1]],[[0,2,1,1],[2,4,3,1],[1,3,3,0],[0,0,2,1]],[[0,2,1,1],[2,3,4,1],[1,3,3,0],[0,0,2,1]],[[0,2,1,1],[2,3,3,1],[1,3,4,0],[0,0,2,1]],[[0,3,1,1],[2,3,3,1],[1,3,3,0],[0,1,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,3,0],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,3,0],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,3,0],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[1,4,3,0],[0,1,2,0]],[[0,3,1,1],[2,3,3,1],[1,3,3,0],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[1,3,3,0],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[1,3,3,0],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[1,3,3,0],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[1,4,3,0],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[1,3,3,0],[0,3,1,0]],[[1,3,2,1],[1,2,3,2],[2,1,1,2],[0,0,2,1]],[[2,2,2,1],[1,2,3,2],[2,1,1,2],[0,0,2,1]],[[0,3,1,1],[2,3,3,1],[1,3,3,0],[1,0,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,3,0],[1,0,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,3,0],[1,0,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,3,0],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[1,4,3,0],[1,0,2,0]],[[0,3,1,1],[2,3,3,1],[1,3,3,0],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[1,3,3,0],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[1,3,3,0],[1,1,1,0]],[[0,2,1,1],[2,3,4,1],[1,3,3,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[1,4,3,0],[1,1,1,0]],[[1,2,2,1],[1,2,4,2],[2,1,1,0],[1,2,2,0]],[[1,2,2,2],[1,2,3,2],[2,1,1,0],[1,2,2,0]],[[1,2,3,1],[1,2,3,2],[2,1,1,0],[1,2,2,0]],[[0,3,1,1],[2,3,3,1],[1,3,3,0],[1,2,0,0]],[[0,2,1,1],[3,3,3,1],[1,3,3,0],[1,2,0,0]],[[0,2,1,1],[2,4,3,1],[1,3,3,0],[1,2,0,0]],[[0,2,1,1],[2,3,4,1],[1,3,3,0],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[1,4,3,0],[1,2,0,0]],[[1,3,2,1],[1,2,3,2],[2,1,1,0],[1,2,2,0]],[[2,2,2,1],[1,2,3,2],[2,1,1,0],[1,2,2,0]],[[1,2,2,1],[1,2,3,3],[2,1,0,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,2],[2,1,0,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,2],[2,1,0,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,2],[2,1,0,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,2],[2,1,0,2],[1,2,1,0]],[[1,2,2,1],[1,2,3,3],[2,1,0,2],[1,2,0,1]],[[1,2,2,2],[1,2,3,2],[2,1,0,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,2],[2,1,0,2],[1,2,0,1]],[[0,3,1,1],[2,3,3,1],[1,3,3,1],[0,0,1,1]],[[0,2,1,1],[3,3,3,1],[1,3,3,1],[0,0,1,1]],[[0,2,1,1],[2,4,3,1],[1,3,3,1],[0,0,1,1]],[[0,2,1,1],[2,3,4,1],[1,3,3,1],[0,0,1,1]],[[0,2,1,1],[2,3,3,1],[1,3,4,1],[0,0,1,1]],[[0,3,1,1],[2,3,3,1],[1,3,3,1],[0,0,2,0]],[[0,2,1,1],[3,3,3,1],[1,3,3,1],[0,0,2,0]],[[0,2,1,1],[2,4,3,1],[1,3,3,1],[0,0,2,0]],[[0,2,1,1],[2,3,4,1],[1,3,3,1],[0,0,2,0]],[[0,2,1,1],[2,3,3,1],[1,3,4,1],[0,0,2,0]],[[1,3,2,1],[1,2,3,2],[2,1,0,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,2],[2,1,0,2],[1,2,0,1]],[[0,3,1,1],[2,3,3,1],[1,3,3,1],[0,2,0,0]],[[0,2,1,1],[3,3,3,1],[1,3,3,1],[0,2,0,0]],[[0,2,1,1],[2,4,3,1],[1,3,3,1],[0,2,0,0]],[[0,2,1,1],[2,3,4,1],[1,3,3,1],[0,2,0,0]],[[0,2,1,1],[2,3,3,1],[1,4,3,1],[0,2,0,0]],[[1,2,2,1],[1,2,3,3],[2,1,0,2],[1,0,2,1]],[[1,2,2,2],[1,2,3,2],[2,1,0,2],[1,0,2,1]],[[1,2,3,1],[1,2,3,2],[2,1,0,2],[1,0,2,1]],[[1,3,2,1],[1,2,3,2],[2,1,0,2],[1,0,2,1]],[[2,2,2,1],[1,2,3,2],[2,1,0,2],[1,0,2,1]],[[1,2,2,1],[1,2,3,3],[2,1,0,2],[0,1,2,1]],[[1,2,2,2],[1,2,3,2],[2,1,0,2],[0,1,2,1]],[[1,2,3,1],[1,2,3,2],[2,1,0,2],[0,1,2,1]],[[1,3,2,1],[1,2,3,2],[2,1,0,2],[0,1,2,1]],[[2,2,2,1],[1,2,3,2],[2,1,0,2],[0,1,2,1]],[[0,3,1,1],[2,3,3,1],[1,3,3,1],[1,1,0,0]],[[0,2,1,1],[3,3,3,1],[1,3,3,1],[1,1,0,0]],[[0,2,1,1],[2,4,3,1],[1,3,3,1],[1,1,0,0]],[[0,2,1,1],[2,3,4,1],[1,3,3,1],[1,1,0,0]],[[0,2,1,1],[2,3,3,1],[1,4,3,1],[1,1,0,0]],[[0,3,1,1],[2,3,3,1],[1,3,3,2],[0,0,0,1]],[[0,2,1,1],[3,3,3,1],[1,3,3,2],[0,0,0,1]],[[0,2,1,1],[2,4,3,1],[1,3,3,2],[0,0,0,1]],[[0,2,1,1],[2,3,4,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[1,2,4,2],[2,0,3,0],[1,2,1,0]],[[1,2,2,2],[1,2,3,2],[2,0,3,0],[1,2,1,0]],[[1,2,3,1],[1,2,3,2],[2,0,3,0],[1,2,1,0]],[[1,3,2,1],[1,2,3,2],[2,0,3,0],[1,2,1,0]],[[2,2,2,1],[1,2,3,2],[2,0,3,0],[1,2,1,0]],[[1,2,2,1],[1,2,4,2],[2,0,3,0],[1,2,0,1]],[[1,2,2,2],[1,2,3,2],[2,0,3,0],[1,2,0,1]],[[1,2,3,1],[1,2,3,2],[2,0,3,0],[1,2,0,1]],[[1,3,2,1],[1,2,3,2],[2,0,3,0],[1,2,0,1]],[[2,2,2,1],[1,2,3,2],[2,0,3,0],[1,2,0,1]],[[1,2,2,1],[1,2,4,2],[2,0,3,0],[1,1,2,0]],[[1,2,2,2],[1,2,3,2],[2,0,3,0],[1,1,2,0]],[[1,2,3,1],[1,2,3,2],[2,0,3,0],[1,1,2,0]],[[1,3,2,1],[1,2,3,2],[2,0,3,0],[1,1,2,0]],[[2,2,2,1],[1,2,3,2],[2,0,3,0],[1,1,2,0]],[[1,2,2,1],[1,2,4,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,2],[1,2,3,2],[2,0,3,0],[1,1,1,1]],[[1,2,3,1],[1,2,3,2],[2,0,3,0],[1,1,1,1]],[[1,3,2,1],[1,2,3,2],[2,0,3,0],[1,1,1,1]],[[2,2,2,1],[1,2,3,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,1],[1,2,4,2],[2,0,3,0],[0,2,2,0]],[[1,2,2,2],[1,2,3,2],[2,0,3,0],[0,2,2,0]],[[1,2,3,1],[1,2,3,2],[2,0,3,0],[0,2,2,0]],[[1,3,2,1],[1,2,3,2],[2,0,3,0],[0,2,2,0]],[[2,2,2,1],[1,2,3,2],[2,0,3,0],[0,2,2,0]],[[1,2,2,1],[1,2,4,2],[2,0,3,0],[0,2,1,1]],[[1,2,2,2],[1,2,3,2],[2,0,3,0],[0,2,1,1]],[[1,2,3,1],[1,2,3,2],[2,0,3,0],[0,2,1,1]],[[1,3,2,1],[1,2,3,2],[2,0,3,0],[0,2,1,1]],[[2,2,2,1],[1,2,3,2],[2,0,3,0],[0,2,1,1]],[[1,2,2,1],[1,2,4,2],[2,0,2,0],[1,2,2,0]],[[1,2,2,2],[1,2,3,2],[2,0,2,0],[1,2,2,0]],[[1,2,3,1],[1,2,3,2],[2,0,2,0],[1,2,2,0]],[[1,3,2,1],[1,2,3,2],[2,0,2,0],[1,2,2,0]],[[2,2,2,1],[1,2,3,2],[2,0,2,0],[1,2,2,0]],[[1,2,2,1],[1,2,3,3],[2,0,1,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,2],[2,0,1,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,2],[2,0,1,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,2],[2,0,1,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,2],[2,0,1,2],[1,2,1,0]],[[1,2,2,1],[1,2,3,3],[2,0,1,2],[1,2,0,1]],[[1,2,2,2],[1,2,3,2],[2,0,1,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,2],[2,0,1,2],[1,2,0,1]],[[1,3,2,1],[1,2,3,2],[2,0,1,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,2],[2,0,1,2],[1,2,0,1]],[[1,2,2,1],[1,2,3,3],[2,0,1,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,2],[2,0,1,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,2],[2,0,1,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,2],[2,0,1,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,2],[2,0,1,2],[1,1,2,0]],[[1,2,2,1],[1,2,3,3],[2,0,1,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,2],[2,0,1,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,2],[2,0,1,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,2],[2,0,1,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,2],[2,0,1,2],[1,1,1,1]],[[1,2,2,1],[1,2,3,3],[2,0,1,2],[0,2,2,0]],[[1,2,2,2],[1,2,3,2],[2,0,1,2],[0,2,2,0]],[[1,2,3,1],[1,2,3,2],[2,0,1,2],[0,2,2,0]],[[1,3,2,1],[1,2,3,2],[2,0,1,2],[0,2,2,0]],[[0,3,1,1],[2,3,3,1],[2,0,1,1],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[2,0,1,1],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[2,0,1,1],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[2,0,1,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[3,0,1,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,1,1],[2,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,1,1],[1,3,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,1,1],[1,2,3,1]],[[0,2,1,1],[2,3,3,1],[2,0,1,1],[1,2,2,2]],[[0,3,1,1],[2,3,3,1],[2,0,1,2],[0,2,2,1]],[[0,2,1,1],[3,3,3,1],[2,0,1,2],[0,2,2,1]],[[0,2,1,1],[2,4,3,1],[2,0,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,4,1],[2,0,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[3,0,1,2],[0,2,2,1]],[[0,3,1,1],[2,3,3,1],[2,0,1,2],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[2,0,1,2],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[2,0,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,4,1],[2,0,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[3,0,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,1,2],[2,1,2,1]],[[0,3,1,1],[2,3,3,1],[2,0,1,2],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[2,0,1,2],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[2,0,1,2],[1,2,1,1]],[[0,2,1,1],[2,3,4,1],[2,0,1,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[3,0,1,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,0,1,2],[2,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,0,1,2],[1,3,1,1]],[[0,3,1,1],[2,3,3,1],[2,0,1,2],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[2,0,1,2],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[2,0,1,2],[1,2,2,0]],[[0,2,1,1],[2,3,4,1],[2,0,1,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[3,0,1,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,1,2],[2,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,1,2],[1,3,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,1,2],[1,2,3,0]],[[0,3,1,1],[2,3,3,1],[2,0,2,0],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[2,0,2,0],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[2,0,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[2,0,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[3,0,2,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,2,0],[2,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,2,0],[1,3,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,2,0],[1,2,3,1]],[[0,2,1,1],[2,3,3,1],[2,0,2,0],[1,2,2,2]],[[0,3,1,1],[2,3,3,1],[2,0,2,1],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[2,0,2,1],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[2,0,2,1],[1,2,2,0]],[[0,2,1,1],[2,3,4,1],[2,0,2,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[3,0,2,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,2,1],[2,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,2,1],[1,3,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,2,1],[1,2,3,0]],[[0,3,1,1],[2,3,3,1],[2,0,2,2],[0,2,1,1]],[[0,2,1,1],[3,3,3,1],[2,0,2,2],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[2,0,2,2],[0,2,1,1]],[[0,2,1,1],[2,3,4,1],[2,0,2,2],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[3,0,2,2],[0,2,1,1]],[[0,3,1,1],[2,3,3,1],[2,0,2,2],[0,2,2,0]],[[0,2,1,1],[3,3,3,1],[2,0,2,2],[0,2,2,0]],[[0,2,1,1],[2,4,3,1],[2,0,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,4,1],[2,0,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[3,0,2,2],[0,2,2,0]],[[0,3,1,1],[2,3,3,1],[2,0,2,2],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[2,0,2,2],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[2,0,2,2],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[2,0,2,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[3,0,2,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[2,0,2,2],[2,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,0,2,2],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[2,0,2,2],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[2,0,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,1],[2,0,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[3,0,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,2,2],[2,1,2,0]],[[0,3,1,1],[2,3,3,1],[2,0,2,2],[1,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,0,2,2],[1,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,0,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,4,1],[2,0,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,0,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,0,2,2],[2,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,0,2,2],[1,3,0,1]],[[0,3,1,1],[2,3,3,1],[2,0,2,2],[1,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,0,2,2],[1,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,0,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,4,1],[2,0,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,0,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,0,2,2],[2,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,0,2,2],[1,3,1,0]],[[2,2,2,1],[1,2,3,2],[2,0,1,2],[0,2,2,0]],[[1,2,2,1],[1,2,3,3],[2,0,1,2],[0,2,1,1]],[[1,2,2,2],[1,2,3,2],[2,0,1,2],[0,2,1,1]],[[1,2,3,1],[1,2,3,2],[2,0,1,2],[0,2,1,1]],[[1,3,2,1],[1,2,3,2],[2,0,1,2],[0,2,1,1]],[[2,2,2,1],[1,2,3,2],[2,0,1,2],[0,2,1,1]],[[0,3,1,1],[2,3,3,1],[2,0,3,0],[0,2,2,1]],[[0,2,1,1],[3,3,3,1],[2,0,3,0],[0,2,2,1]],[[0,2,1,1],[2,4,3,1],[2,0,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,4,1],[2,0,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[3,0,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,4,0],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,3,0],[0,3,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,3,0],[0,2,3,1]],[[0,2,1,1],[2,3,3,1],[2,0,3,0],[0,2,2,2]],[[0,3,1,1],[2,3,3,1],[2,0,3,0],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[2,0,3,0],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[2,0,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,4,1],[2,0,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[3,0,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,4,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,3,0],[2,1,2,1]],[[0,2,1,1],[2,3,3,1],[2,0,3,0],[1,1,3,1]],[[0,2,1,1],[2,3,3,1],[2,0,3,0],[1,1,2,2]],[[0,3,1,1],[2,3,3,1],[2,0,3,0],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[2,0,3,0],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[2,0,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,4,1],[2,0,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[3,0,3,0],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,0,4,0],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,0,3,0],[2,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,0,3,0],[1,3,1,1]],[[0,3,1,1],[2,3,3,1],[2,0,3,1],[0,2,1,1]],[[0,2,1,1],[3,3,3,1],[2,0,3,1],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[2,0,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,4,1],[2,0,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[3,0,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,0,4,1],[0,2,1,1]],[[0,3,1,1],[2,3,3,1],[2,0,3,1],[0,2,2,0]],[[0,2,1,1],[3,3,3,1],[2,0,3,1],[0,2,2,0]],[[0,2,1,1],[2,4,3,1],[2,0,3,1],[0,2,2,0]],[[0,2,1,1],[2,3,4,1],[2,0,3,1],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[3,0,3,1],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,4,1],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,3,1],[0,3,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,3,1],[0,2,3,0]],[[0,3,1,1],[2,3,3,1],[2,0,3,1],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[2,0,3,1],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[2,0,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[2,0,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[3,0,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[2,0,4,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[2,0,3,1],[2,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,0,3,1],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[2,0,3,1],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[2,0,3,1],[1,1,2,0]],[[0,2,1,1],[2,3,4,1],[2,0,3,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[3,0,3,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,4,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,3,1],[2,1,2,0]],[[0,2,1,1],[2,3,3,1],[2,0,3,1],[1,1,3,0]],[[0,3,1,1],[2,3,3,1],[2,0,3,1],[1,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,0,3,1],[1,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,0,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,4,1],[2,0,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,0,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,0,4,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,0,3,1],[2,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,0,3,1],[1,3,0,1]],[[0,3,1,1],[2,3,3,1],[2,0,3,1],[1,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,0,3,1],[1,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,0,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,4,1],[2,0,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,0,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,0,4,1],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,0,3,1],[2,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,0,3,1],[1,3,1,0]],[[1,2,2,1],[1,2,3,3],[2,0,0,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,2],[2,0,0,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,2],[2,0,0,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,2],[2,0,0,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,2],[2,0,0,2],[1,2,2,0]],[[1,2,2,1],[1,2,3,3],[2,0,0,2],[1,2,1,1]],[[1,2,2,2],[1,2,3,2],[2,0,0,2],[1,2,1,1]],[[1,2,3,1],[1,2,3,2],[2,0,0,2],[1,2,1,1]],[[1,3,2,1],[1,2,3,2],[2,0,0,2],[1,2,1,1]],[[2,2,2,1],[1,2,3,2],[2,0,0,2],[1,2,1,1]],[[1,2,2,1],[1,2,3,3],[2,0,0,2],[1,1,2,1]],[[1,2,2,2],[1,2,3,2],[2,0,0,2],[1,1,2,1]],[[1,2,3,1],[1,2,3,2],[2,0,0,2],[1,1,2,1]],[[1,3,2,1],[1,2,3,2],[2,0,0,2],[1,1,2,1]],[[2,2,2,1],[1,2,3,2],[2,0,0,2],[1,1,2,1]],[[1,2,2,1],[1,2,3,3],[2,0,0,2],[0,2,2,1]],[[1,2,2,2],[1,2,3,2],[2,0,0,2],[0,2,2,1]],[[1,2,3,1],[1,2,3,2],[2,0,0,2],[0,2,2,1]],[[1,3,2,1],[1,2,3,2],[2,0,0,2],[0,2,2,1]],[[2,2,2,1],[1,2,3,2],[2,0,0,2],[0,2,2,1]],[[1,2,2,1],[1,2,3,3],[2,0,0,1],[1,2,2,1]],[[1,2,2,2],[1,2,3,2],[2,0,0,1],[1,2,2,1]],[[1,2,3,1],[1,2,3,2],[2,0,0,1],[1,2,2,1]],[[1,3,2,1],[1,2,3,2],[2,0,0,1],[1,2,2,1]],[[2,2,2,1],[1,2,3,2],[2,0,0,1],[1,2,2,1]],[[0,3,1,1],[2,3,3,1],[2,1,0,1],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[2,1,0,1],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[2,1,0,1],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[2,1,0,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[3,1,0,1],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,0,1],[2,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,0,1],[1,3,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,0,1],[1,2,3,1]],[[0,2,1,1],[2,3,3,1],[2,1,0,1],[1,2,2,2]],[[0,3,1,1],[2,3,3,1],[2,1,0,2],[0,2,2,1]],[[0,2,1,1],[3,3,3,1],[2,1,0,2],[0,2,2,1]],[[0,2,1,1],[2,4,3,1],[2,1,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,4,1],[2,1,0,2],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[3,1,0,2],[0,2,2,1]],[[0,3,1,1],[2,3,3,1],[2,1,0,2],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[2,1,0,2],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[2,1,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,4,1],[2,1,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[3,1,0,2],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,0,2],[2,1,2,1]],[[0,3,1,1],[2,3,3,1],[2,1,0,2],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[2,1,0,2],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[2,1,0,2],[1,2,1,1]],[[0,2,1,1],[2,3,4,1],[2,1,0,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[3,1,0,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,1,0,2],[2,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,1,0,2],[1,3,1,1]],[[0,3,1,1],[2,3,3,1],[2,1,0,2],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[2,1,0,2],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[2,1,0,2],[1,2,2,0]],[[0,2,1,1],[2,3,4,1],[2,1,0,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[3,1,0,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,0,2],[2,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,0,2],[1,3,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,0,2],[1,2,3,0]],[[0,3,1,1],[2,3,3,1],[2,1,1,0],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[2,1,1,0],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[2,1,1,0],[1,2,2,1]],[[0,2,1,1],[2,3,4,1],[2,1,1,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[3,1,1,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,1,0],[2,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,1,0],[1,3,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,1,0],[1,2,3,1]],[[0,2,1,1],[2,3,3,1],[2,1,1,0],[1,2,2,2]],[[0,3,1,1],[2,3,3,1],[2,1,1,1],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[2,1,1,1],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[2,1,1,1],[1,2,2,0]],[[0,2,1,1],[2,3,4,1],[2,1,1,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[3,1,1,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,1,1],[2,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,1,1],[1,3,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,1,1],[1,2,3,0]],[[0,3,1,1],[2,3,3,1],[2,1,1,2],[0,1,2,1]],[[0,2,1,1],[3,3,3,1],[2,1,1,2],[0,1,2,1]],[[0,2,1,1],[2,4,3,1],[2,1,1,2],[0,1,2,1]],[[0,2,1,1],[2,3,4,1],[2,1,1,2],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[3,1,1,2],[0,1,2,1]],[[0,3,1,1],[2,3,3,1],[2,1,1,2],[1,0,2,1]],[[0,2,1,1],[3,3,3,1],[2,1,1,2],[1,0,2,1]],[[0,2,1,1],[2,4,3,1],[2,1,1,2],[1,0,2,1]],[[0,2,1,1],[2,3,4,1],[2,1,1,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[3,1,1,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,1,2],[2,0,2,1]],[[0,3,1,1],[2,3,3,1],[2,1,1,2],[1,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,1,1,2],[1,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,1,1,2],[1,2,0,1]],[[0,2,1,1],[2,3,4,1],[2,1,1,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,1,1,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,1,1,2],[2,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,1,1,2],[1,3,0,1]],[[0,3,1,1],[2,3,3,1],[2,1,1,2],[1,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,1,1,2],[1,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,1,1,2],[1,2,1,0]],[[0,2,1,1],[2,3,4,1],[2,1,1,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,1,1,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,1,1,2],[2,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,1,1,2],[1,3,1,0]],[[0,3,1,1],[2,3,3,1],[2,1,2,0],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[2,1,2,0],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[2,1,2,0],[1,2,1,1]],[[0,2,1,1],[2,3,4,1],[2,1,2,0],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[3,1,2,0],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,1,2,0],[2,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,1,2,0],[1,3,1,1]],[[0,3,1,1],[2,3,3,1],[2,1,2,1],[1,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,1,2,1],[1,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,1,2,1],[1,2,0,1]],[[0,2,1,1],[2,3,4,1],[2,1,2,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,1,2,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,1,2,1],[2,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,1,2,1],[1,3,0,1]],[[0,3,1,1],[2,3,3,1],[2,1,2,1],[1,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,1,2,1],[1,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,1,2,1],[1,2,1,0]],[[0,2,1,1],[2,3,4,1],[2,1,2,1],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,1,2,1],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,1,2,1],[2,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,1,2,1],[1,3,1,0]],[[0,3,1,1],[2,3,3,1],[2,1,2,2],[0,0,2,1]],[[0,2,1,1],[3,3,3,1],[2,1,2,2],[0,0,2,1]],[[0,2,1,1],[2,4,3,1],[2,1,2,2],[0,0,2,1]],[[0,2,1,1],[2,3,4,1],[2,1,2,2],[0,0,2,1]],[[0,3,1,1],[2,3,3,1],[2,1,2,2],[0,1,1,1]],[[0,2,1,1],[3,3,3,1],[2,1,2,2],[0,1,1,1]],[[0,2,1,1],[2,4,3,1],[2,1,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,1],[2,1,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,1],[3,1,2,2],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,1,2,2],[0,1,2,0]],[[0,2,1,1],[3,3,3,1],[2,1,2,2],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[2,1,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[2,1,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[3,1,2,2],[0,1,2,0]],[[0,3,1,1],[2,3,3,1],[2,1,2,2],[0,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,1,2,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,1,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,1],[2,1,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,1,2,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[2,1,2,2],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,1,2,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,1,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[2,1,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,1,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,2],[1,3,3,0],[1,1,0,0]],[[1,2,2,2],[1,2,3,2],[1,3,3,0],[1,1,0,0]],[[1,2,3,1],[1,2,3,2],[1,3,3,0],[1,1,0,0]],[[1,3,2,1],[1,2,3,2],[1,3,3,0],[1,1,0,0]],[[2,2,2,1],[1,2,3,2],[1,3,3,0],[1,1,0,0]],[[0,3,1,1],[2,3,3,1],[2,1,2,2],[1,0,1,1]],[[0,2,1,1],[3,3,3,1],[2,1,2,2],[1,0,1,1]],[[0,2,1,1],[2,4,3,1],[2,1,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,4,1],[2,1,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[3,1,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[2,1,2,2],[2,0,1,1]],[[0,3,1,1],[2,3,3,1],[2,1,2,2],[1,0,2,0]],[[0,2,1,1],[3,3,3,1],[2,1,2,2],[1,0,2,0]],[[0,2,1,1],[2,4,3,1],[2,1,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,4,1],[2,1,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[3,1,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,2,2],[2,0,2,0]],[[0,3,1,1],[2,3,3,1],[2,1,2,2],[1,1,0,1]],[[0,2,1,1],[3,3,3,1],[2,1,2,2],[1,1,0,1]],[[0,2,1,1],[2,4,3,1],[2,1,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,1],[2,1,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[3,1,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[2,1,2,2],[2,1,0,1]],[[0,3,1,1],[2,3,3,1],[2,1,2,2],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[2,1,2,2],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[2,1,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,4,1],[2,1,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[3,1,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[2,1,2,2],[2,1,1,0]],[[1,2,2,1],[1,2,4,2],[1,3,3,0],[0,2,0,0]],[[1,2,2,2],[1,2,3,2],[1,3,3,0],[0,2,0,0]],[[1,2,3,1],[1,2,3,2],[1,3,3,0],[0,2,0,0]],[[1,3,2,1],[1,2,3,2],[1,3,3,0],[0,2,0,0]],[[2,2,2,1],[1,2,3,2],[1,3,3,0],[0,2,0,0]],[[0,3,1,1],[2,3,3,1],[2,1,3,0],[0,1,2,1]],[[0,2,1,1],[3,3,3,1],[2,1,3,0],[0,1,2,1]],[[0,2,1,1],[2,4,3,1],[2,1,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,4,1],[2,1,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[3,1,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,4,0],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,3,0],[0,1,3,1]],[[0,2,1,1],[2,3,3,1],[2,1,3,0],[0,1,2,2]],[[0,3,1,1],[2,3,3,1],[2,1,3,0],[0,2,1,1]],[[0,2,1,1],[3,3,3,1],[2,1,3,0],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[2,1,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,4,1],[2,1,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[3,1,3,0],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,1,4,0],[0,2,1,1]],[[0,3,1,1],[2,3,3,1],[2,1,3,0],[1,0,2,1]],[[0,2,1,1],[3,3,3,1],[2,1,3,0],[1,0,2,1]],[[0,2,1,1],[2,4,3,1],[2,1,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,4,1],[2,1,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[3,1,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,4,0],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,3,0],[2,0,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,3,0],[1,0,3,1]],[[0,2,1,1],[2,3,3,1],[2,1,3,0],[1,0,2,2]],[[0,3,1,1],[2,3,3,1],[2,1,3,0],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[2,1,3,0],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[2,1,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[2,1,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[3,1,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[2,1,4,0],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[2,1,3,0],[2,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,1,3,0],[1,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,1,3,0],[1,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,1,3,0],[1,2,1,0]],[[0,2,1,1],[2,3,4,1],[2,1,3,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,1,3,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,1,3,0],[2,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,1,3,0],[1,3,1,0]],[[1,2,2,1],[1,2,4,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,2],[1,2,3,2],[1,3,3,0],[0,0,2,0]],[[1,2,3,1],[1,2,3,2],[1,3,3,0],[0,0,2,0]],[[1,3,2,1],[1,2,3,2],[1,3,3,0],[0,0,2,0]],[[2,2,2,1],[1,2,3,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,1],[1,2,4,2],[1,3,3,0],[0,0,1,1]],[[0,3,1,1],[2,3,3,1],[2,1,3,1],[0,0,2,1]],[[0,2,1,1],[3,3,3,1],[2,1,3,1],[0,0,2,1]],[[0,2,1,1],[2,4,3,1],[2,1,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,4,1],[2,1,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,3,1],[2,1,4,1],[0,0,2,1]],[[0,3,1,1],[2,3,3,1],[2,1,3,1],[0,1,1,1]],[[0,2,1,1],[3,3,3,1],[2,1,3,1],[0,1,1,1]],[[0,2,1,1],[2,4,3,1],[2,1,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,4,1],[2,1,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,3,1],[3,1,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,3,1],[2,1,4,1],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,1,3,1],[0,1,2,0]],[[0,2,1,1],[3,3,3,1],[2,1,3,1],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[2,1,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[2,1,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[3,1,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,4,1],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,3,1],[0,1,3,0]],[[0,3,1,1],[2,3,3,1],[2,1,3,1],[0,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,1,3,1],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,1,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,4,1],[2,1,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,1,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,1,4,1],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[2,1,3,1],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,1,3,1],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,1,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[2,1,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,1,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,1,4,1],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[1,3,3,0],[0,0,1,1]],[[1,2,3,1],[1,2,3,2],[1,3,3,0],[0,0,1,1]],[[1,3,2,1],[1,2,3,2],[1,3,3,0],[0,0,1,1]],[[2,2,2,1],[1,2,3,2],[1,3,3,0],[0,0,1,1]],[[0,3,1,1],[2,3,3,1],[2,1,3,1],[1,0,1,1]],[[0,2,1,1],[3,3,3,1],[2,1,3,1],[1,0,1,1]],[[0,2,1,1],[2,4,3,1],[2,1,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,4,1],[2,1,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[3,1,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[2,1,4,1],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[2,1,3,1],[2,0,1,1]],[[0,3,1,1],[2,3,3,1],[2,1,3,1],[1,0,2,0]],[[0,2,1,1],[3,3,3,1],[2,1,3,1],[1,0,2,0]],[[0,2,1,1],[2,4,3,1],[2,1,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,4,1],[2,1,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[3,1,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,4,1],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,3,1],[2,0,2,0]],[[0,2,1,1],[2,3,3,1],[2,1,3,1],[1,0,3,0]],[[0,3,1,1],[2,3,3,1],[2,1,3,1],[1,1,0,1]],[[0,2,1,1],[3,3,3,1],[2,1,3,1],[1,1,0,1]],[[0,2,1,1],[2,4,3,1],[2,1,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,4,1],[2,1,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[3,1,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[2,1,4,1],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[2,1,3,1],[2,1,0,1]],[[0,3,1,1],[2,3,3,1],[2,1,3,1],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[2,1,3,1],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[2,1,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,4,1],[2,1,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[3,1,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[2,1,4,1],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[2,1,3,1],[2,1,1,0]],[[1,2,2,1],[1,2,3,3],[1,3,2,2],[0,0,0,1]],[[1,2,2,2],[1,2,3,2],[1,3,2,2],[0,0,0,1]],[[1,2,3,1],[1,2,3,2],[1,3,2,2],[0,0,0,1]],[[1,3,2,1],[1,2,3,2],[1,3,2,2],[0,0,0,1]],[[2,2,2,1],[1,2,3,2],[1,3,2,2],[0,0,0,1]],[[0,3,1,1],[2,3,3,1],[2,1,3,2],[0,1,0,1]],[[0,2,1,1],[3,3,3,1],[2,1,3,2],[0,1,0,1]],[[0,2,1,1],[2,4,3,1],[2,1,3,2],[0,1,0,1]],[[0,2,1,1],[2,3,4,1],[2,1,3,2],[0,1,0,1]],[[0,3,1,1],[2,3,3,1],[2,1,3,2],[1,0,0,1]],[[0,2,1,1],[3,3,3,1],[2,1,3,2],[1,0,0,1]],[[0,2,1,1],[2,4,3,1],[2,1,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,4,1],[2,1,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,3,1],[3,1,3,2],[1,0,0,1]],[[1,2,2,1],[1,2,4,2],[1,3,2,0],[1,2,0,0]],[[1,2,2,2],[1,2,3,2],[1,3,2,0],[1,2,0,0]],[[1,2,3,1],[1,2,3,2],[1,3,2,0],[1,2,0,0]],[[1,3,2,1],[1,2,3,2],[1,3,2,0],[1,2,0,0]],[[2,2,2,1],[1,2,3,2],[1,3,2,0],[1,2,0,0]],[[1,2,2,1],[1,2,4,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,2],[1,2,3,2],[1,3,2,0],[1,1,1,0]],[[1,2,3,1],[1,2,3,2],[1,3,2,0],[1,1,1,0]],[[1,3,2,1],[1,2,3,2],[1,3,2,0],[1,1,1,0]],[[2,2,2,1],[1,2,3,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,1],[1,2,4,2],[1,3,2,0],[1,1,0,1]],[[1,2,2,2],[1,2,3,2],[1,3,2,0],[1,1,0,1]],[[1,2,3,1],[1,2,3,2],[1,3,2,0],[1,1,0,1]],[[1,3,2,1],[1,2,3,2],[1,3,2,0],[1,1,0,1]],[[2,2,2,1],[1,2,3,2],[1,3,2,0],[1,1,0,1]],[[1,2,2,1],[1,2,4,2],[1,3,2,0],[1,0,2,0]],[[1,2,2,2],[1,2,3,2],[1,3,2,0],[1,0,2,0]],[[1,2,3,1],[1,2,3,2],[1,3,2,0],[1,0,2,0]],[[1,3,2,1],[1,2,3,2],[1,3,2,0],[1,0,2,0]],[[2,2,2,1],[1,2,3,2],[1,3,2,0],[1,0,2,0]],[[1,2,2,1],[1,2,4,2],[1,3,2,0],[1,0,1,1]],[[1,2,2,2],[1,2,3,2],[1,3,2,0],[1,0,1,1]],[[1,2,3,1],[1,2,3,2],[1,3,2,0],[1,0,1,1]],[[1,3,2,1],[1,2,3,2],[1,3,2,0],[1,0,1,1]],[[2,2,2,1],[1,2,3,2],[1,3,2,0],[1,0,1,1]],[[1,2,2,1],[1,2,4,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[1,3,2,0],[0,2,1,0]],[[1,2,3,1],[1,2,3,2],[1,3,2,0],[0,2,1,0]],[[1,3,2,1],[1,2,3,2],[1,3,2,0],[0,2,1,0]],[[2,2,2,1],[1,2,3,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,1],[1,2,4,2],[1,3,2,0],[0,2,0,1]],[[1,2,2,2],[1,2,3,2],[1,3,2,0],[0,2,0,1]],[[1,2,3,1],[1,2,3,2],[1,3,2,0],[0,2,0,1]],[[1,3,2,1],[1,2,3,2],[1,3,2,0],[0,2,0,1]],[[2,2,2,1],[1,2,3,2],[1,3,2,0],[0,2,0,1]],[[1,2,2,1],[1,2,4,2],[1,3,2,0],[0,1,2,0]],[[1,2,2,2],[1,2,3,2],[1,3,2,0],[0,1,2,0]],[[0,3,1,1],[2,3,3,1],[2,2,0,0],[1,2,2,1]],[[0,2,1,1],[3,3,3,1],[2,2,0,0],[1,2,2,1]],[[0,2,1,1],[2,4,3,1],[2,2,0,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[3,2,0,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,2,0,0],[2,2,2,1]],[[0,2,1,1],[2,3,3,1],[2,2,0,0],[1,3,2,1]],[[0,3,1,1],[2,3,3,1],[2,2,0,1],[0,2,2,1]],[[0,2,1,1],[3,3,3,1],[2,2,0,1],[0,2,2,1]],[[0,2,1,1],[2,4,3,1],[2,2,0,1],[0,2,2,1]],[[0,2,1,1],[2,3,4,1],[2,2,0,1],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[3,2,0,1],[0,2,2,1]],[[0,3,1,1],[2,3,3,1],[2,2,0,1],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[2,2,0,1],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[2,2,0,1],[1,1,2,1]],[[0,2,1,1],[2,3,4,1],[2,2,0,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[3,2,0,1],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[2,2,0,1],[2,1,2,1]],[[0,3,1,1],[2,3,3,1],[2,2,0,1],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[2,2,0,1],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[2,2,0,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[3,2,0,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,2,0,1],[2,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,2,0,1],[1,3,2,0]],[[0,3,1,1],[2,3,3,1],[2,2,0,2],[0,1,2,1]],[[0,2,1,1],[3,3,3,1],[2,2,0,2],[0,1,2,1]],[[0,2,1,1],[2,4,3,1],[2,2,0,2],[0,1,2,1]],[[0,2,1,1],[2,3,4,1],[2,2,0,2],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[3,2,0,2],[0,1,2,1]],[[0,3,1,1],[2,3,3,1],[2,2,0,2],[0,2,1,1]],[[0,2,1,1],[3,3,3,1],[2,2,0,2],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[2,2,0,2],[0,2,1,1]],[[0,2,1,1],[2,3,4,1],[2,2,0,2],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[3,2,0,2],[0,2,1,1]],[[0,3,1,1],[2,3,3,1],[2,2,0,2],[0,2,2,0]],[[0,2,1,1],[3,3,3,1],[2,2,0,2],[0,2,2,0]],[[0,2,1,1],[2,4,3,1],[2,2,0,2],[0,2,2,0]],[[0,2,1,1],[2,3,4,1],[2,2,0,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[3,2,0,2],[0,2,2,0]],[[0,3,1,1],[2,3,3,1],[2,2,0,2],[1,0,2,1]],[[0,2,1,1],[3,3,3,1],[2,2,0,2],[1,0,2,1]],[[0,2,1,1],[2,4,3,1],[2,2,0,2],[1,0,2,1]],[[0,2,1,1],[2,3,4,1],[2,2,0,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[3,2,0,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[2,2,0,2],[2,0,2,1]],[[0,3,1,1],[2,3,3,1],[2,2,0,2],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[2,2,0,2],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[2,2,0,2],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[2,2,0,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[3,2,0,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[2,2,0,2],[2,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,2,0,2],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[2,2,0,2],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[2,2,0,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,1],[2,2,0,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[3,2,0,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[2,2,0,2],[2,1,2,0]],[[1,2,3,1],[1,2,3,2],[1,3,2,0],[0,1,2,0]],[[1,3,2,1],[1,2,3,2],[1,3,2,0],[0,1,2,0]],[[2,2,2,1],[1,2,3,2],[1,3,2,0],[0,1,2,0]],[[1,2,2,1],[1,2,4,2],[1,3,2,0],[0,1,1,1]],[[1,2,2,2],[1,2,3,2],[1,3,2,0],[0,1,1,1]],[[1,2,3,1],[1,2,3,2],[1,3,2,0],[0,1,1,1]],[[1,3,2,1],[1,2,3,2],[1,3,2,0],[0,1,1,1]],[[2,2,2,1],[1,2,3,2],[1,3,2,0],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,2,1,0],[0,2,2,1]],[[0,2,1,1],[3,3,3,1],[2,2,1,0],[0,2,2,1]],[[0,2,1,1],[2,4,3,1],[2,2,1,0],[0,2,2,1]],[[0,2,1,1],[2,3,4,1],[2,2,1,0],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[3,2,1,0],[0,2,2,1]],[[0,3,1,1],[2,3,3,1],[2,2,1,0],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[2,2,1,0],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[2,2,1,0],[1,1,2,1]],[[0,2,1,1],[2,3,4,1],[2,2,1,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[3,2,1,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[2,2,1,0],[2,1,2,1]],[[0,3,1,1],[2,3,3,1],[2,2,1,1],[0,2,2,0]],[[0,2,1,1],[3,3,3,1],[2,2,1,1],[0,2,2,0]],[[0,2,1,1],[2,4,3,1],[2,2,1,1],[0,2,2,0]],[[0,2,1,1],[2,3,4,1],[2,2,1,1],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[3,2,1,1],[0,2,2,0]],[[0,3,1,1],[2,3,3,1],[2,2,1,1],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[2,2,1,1],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[2,2,1,1],[1,1,2,0]],[[0,2,1,1],[2,3,4,1],[2,2,1,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[3,2,1,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[2,2,1,1],[2,1,2,0]],[[0,3,1,1],[2,3,3,1],[2,2,1,2],[0,1,1,1]],[[0,2,1,1],[3,3,3,1],[2,2,1,2],[0,1,1,1]],[[0,2,1,1],[2,4,3,1],[2,2,1,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,1],[2,2,1,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,1],[3,2,1,2],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,2,1,2],[0,1,2,0]],[[0,2,1,1],[3,3,3,1],[2,2,1,2],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[2,2,1,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[2,2,1,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[3,2,1,2],[0,1,2,0]],[[0,3,1,1],[2,3,3,1],[2,2,1,2],[0,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,2,1,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,2,1,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,1],[2,2,1,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,2,1,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[2,2,1,2],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,2,1,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,2,1,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[2,2,1,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,2,1,2],[0,2,1,0]],[[0,3,1,1],[2,3,3,1],[2,2,1,2],[1,0,1,1]],[[0,2,1,1],[3,3,3,1],[2,2,1,2],[1,0,1,1]],[[0,2,1,1],[2,4,3,1],[2,2,1,2],[1,0,1,1]],[[0,2,1,1],[2,3,4,1],[2,2,1,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[3,2,1,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[2,2,1,2],[2,0,1,1]],[[0,3,1,1],[2,3,3,1],[2,2,1,2],[1,0,2,0]],[[0,2,1,1],[3,3,3,1],[2,2,1,2],[1,0,2,0]],[[0,2,1,1],[2,4,3,1],[2,2,1,2],[1,0,2,0]],[[0,2,1,1],[2,3,4,1],[2,2,1,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[3,2,1,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[2,2,1,2],[2,0,2,0]],[[0,3,1,1],[2,3,3,1],[2,2,1,2],[1,1,0,1]],[[0,2,1,1],[3,3,3,1],[2,2,1,2],[1,1,0,1]],[[0,2,1,1],[2,4,3,1],[2,2,1,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,1],[2,2,1,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[3,2,1,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[2,2,1,2],[2,1,0,1]],[[0,3,1,1],[2,3,3,1],[2,2,1,2],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[2,2,1,2],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[2,2,1,2],[1,1,1,0]],[[0,2,1,1],[2,3,4,1],[2,2,1,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[3,2,1,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[2,2,1,2],[2,1,1,0]],[[0,3,1,1],[2,3,3,1],[2,2,1,2],[1,2,0,0]],[[0,2,1,1],[3,3,3,1],[2,2,1,2],[1,2,0,0]],[[0,2,1,1],[2,4,3,1],[2,2,1,2],[1,2,0,0]],[[0,2,1,1],[2,3,4,1],[2,2,1,2],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[3,2,1,2],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[2,2,1,2],[2,2,0,0]],[[0,3,1,1],[2,3,3,1],[2,2,2,0],[0,1,2,1]],[[0,2,1,1],[3,3,3,1],[2,2,2,0],[0,1,2,1]],[[0,2,1,1],[2,4,3,1],[2,2,2,0],[0,1,2,1]],[[0,2,1,1],[2,3,4,1],[2,2,2,0],[0,1,2,1]],[[0,2,1,1],[2,3,3,1],[3,2,2,0],[0,1,2,1]],[[0,3,1,1],[2,3,3,1],[2,2,2,0],[0,2,1,1]],[[0,2,1,1],[3,3,3,1],[2,2,2,0],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[2,2,2,0],[0,2,1,1]],[[0,2,1,1],[2,3,4,1],[2,2,2,0],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[3,2,2,0],[0,2,1,1]],[[0,3,1,1],[2,3,3,1],[2,2,2,0],[1,0,2,1]],[[0,2,1,1],[3,3,3,1],[2,2,2,0],[1,0,2,1]],[[0,2,1,1],[2,4,3,1],[2,2,2,0],[1,0,2,1]],[[0,2,1,1],[2,3,4,1],[2,2,2,0],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[3,2,2,0],[1,0,2,1]],[[0,2,1,1],[2,3,3,1],[2,2,2,0],[2,0,2,1]],[[0,3,1,1],[2,3,3,1],[2,2,2,0],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[2,2,2,0],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[2,2,2,0],[1,1,1,1]],[[0,2,1,1],[2,3,4,1],[2,2,2,0],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[3,2,2,0],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[2,2,2,0],[2,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,2,2,0],[1,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,2,2,0],[1,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,2,2,0],[1,2,0,1]],[[0,2,1,1],[2,3,4,1],[2,2,2,0],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,2,2,0],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,2,2,0],[2,2,0,1]],[[0,3,1,1],[2,3,3,1],[2,2,2,1],[0,1,1,1]],[[0,2,1,1],[3,3,3,1],[2,2,2,1],[0,1,1,1]],[[0,2,1,1],[2,4,3,1],[2,2,2,1],[0,1,1,1]],[[0,2,1,1],[2,3,4,1],[2,2,2,1],[0,1,1,1]],[[0,2,1,1],[2,3,3,1],[3,2,2,1],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,2,2,1],[0,1,2,0]],[[0,2,1,1],[3,3,3,1],[2,2,2,1],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[2,2,2,1],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[2,2,2,1],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[3,2,2,1],[0,1,2,0]],[[0,3,1,1],[2,3,3,1],[2,2,2,1],[0,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,2,2,1],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,2,2,1],[0,2,0,1]],[[0,2,1,1],[2,3,4,1],[2,2,2,1],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,2,2,1],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[2,2,2,1],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,2,2,1],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,2,2,1],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[2,2,2,1],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,2,2,1],[0,2,1,0]],[[0,3,1,1],[2,3,3,1],[2,2,2,1],[1,0,1,1]],[[0,2,1,1],[3,3,3,1],[2,2,2,1],[1,0,1,1]],[[0,2,1,1],[2,4,3,1],[2,2,2,1],[1,0,1,1]],[[0,2,1,1],[2,3,4,1],[2,2,2,1],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[3,2,2,1],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[2,2,2,1],[2,0,1,1]],[[0,3,1,1],[2,3,3,1],[2,2,2,1],[1,0,2,0]],[[0,2,1,1],[3,3,3,1],[2,2,2,1],[1,0,2,0]],[[0,2,1,1],[2,4,3,1],[2,2,2,1],[1,0,2,0]],[[0,2,1,1],[2,3,4,1],[2,2,2,1],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[3,2,2,1],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[2,2,2,1],[2,0,2,0]],[[0,3,1,1],[2,3,3,1],[2,2,2,1],[1,1,0,1]],[[0,2,1,1],[3,3,3,1],[2,2,2,1],[1,1,0,1]],[[0,2,1,1],[2,4,3,1],[2,2,2,1],[1,1,0,1]],[[0,2,1,1],[2,3,4,1],[2,2,2,1],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[3,2,2,1],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[2,2,2,1],[2,1,0,1]],[[0,3,1,1],[2,3,3,1],[2,2,2,1],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[2,2,2,1],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[2,2,2,1],[1,1,1,0]],[[0,2,1,1],[2,3,4,1],[2,2,2,1],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[3,2,2,1],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[2,2,2,1],[2,1,1,0]],[[0,3,1,1],[2,3,3,1],[2,2,2,1],[1,2,0,0]],[[0,2,1,1],[3,3,3,1],[2,2,2,1],[1,2,0,0]],[[0,2,1,1],[2,4,3,1],[2,2,2,1],[1,2,0,0]],[[0,2,1,1],[2,3,4,1],[2,2,2,1],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[3,2,2,1],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[1,2,3,3],[1,3,1,2],[0,0,2,0]],[[1,2,2,2],[1,2,3,2],[1,3,1,2],[0,0,2,0]],[[1,2,3,1],[1,2,3,2],[1,3,1,2],[0,0,2,0]],[[1,3,2,1],[1,2,3,2],[1,3,1,2],[0,0,2,0]],[[2,2,2,1],[1,2,3,2],[1,3,1,2],[0,0,2,0]],[[1,2,2,1],[1,2,3,3],[1,3,1,2],[0,0,1,1]],[[1,2,2,2],[1,2,3,2],[1,3,1,2],[0,0,1,1]],[[1,2,3,1],[1,2,3,2],[1,3,1,2],[0,0,1,1]],[[1,3,2,1],[1,2,3,2],[1,3,1,2],[0,0,1,1]],[[2,2,2,1],[1,2,3,2],[1,3,1,2],[0,0,1,1]],[[1,2,2,1],[1,2,4,2],[1,3,1,0],[1,1,2,0]],[[1,2,2,2],[1,2,3,2],[1,3,1,0],[1,1,2,0]],[[1,2,3,1],[1,2,3,2],[1,3,1,0],[1,1,2,0]],[[1,3,2,1],[1,2,3,2],[1,3,1,0],[1,1,2,0]],[[2,2,2,1],[1,2,3,2],[1,3,1,0],[1,1,2,0]],[[1,2,2,1],[1,2,4,2],[1,3,1,0],[0,2,2,0]],[[1,2,2,2],[1,2,3,2],[1,3,1,0],[0,2,2,0]],[[1,2,3,1],[1,2,3,2],[1,3,1,0],[0,2,2,0]],[[1,3,2,1],[1,2,3,2],[1,3,1,0],[0,2,2,0]],[[2,2,2,1],[1,2,3,2],[1,3,1,0],[0,2,2,0]],[[1,2,2,1],[1,2,3,3],[1,3,0,2],[1,2,0,0]],[[1,2,2,2],[1,2,3,2],[1,3,0,2],[1,2,0,0]],[[1,2,3,1],[1,2,3,2],[1,3,0,2],[1,2,0,0]],[[1,3,2,1],[1,2,3,2],[1,3,0,2],[1,2,0,0]],[[2,2,2,1],[1,2,3,2],[1,3,0,2],[1,2,0,0]],[[1,2,2,1],[1,2,3,3],[1,3,0,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,2],[1,3,0,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,2],[1,3,0,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,2,1],[1,2,3,3],[1,3,0,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,2],[1,3,0,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,2],[1,3,0,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,2],[1,3,0,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,2],[1,3,0,2],[1,1,0,1]],[[1,2,2,1],[1,2,3,3],[1,3,0,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,2],[1,3,0,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,2],[1,3,0,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,2],[1,3,0,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,2],[1,3,0,2],[1,0,2,0]],[[1,2,2,1],[1,2,3,3],[1,3,0,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,2],[1,3,0,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,2],[1,3,0,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,2],[1,3,0,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,2],[1,3,0,2],[1,0,1,1]],[[0,3,1,1],[2,3,3,1],[2,2,3,0],[0,1,2,0]],[[0,2,1,1],[3,3,3,1],[2,2,3,0],[0,1,2,0]],[[0,2,1,1],[2,4,3,1],[2,2,3,0],[0,1,2,0]],[[0,2,1,1],[2,3,4,1],[2,2,3,0],[0,1,2,0]],[[0,2,1,1],[2,3,3,1],[3,2,3,0],[0,1,2,0]],[[0,3,1,1],[2,3,3,1],[2,2,3,0],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,2,3,0],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,2,3,0],[0,2,1,0]],[[0,2,1,1],[2,3,4,1],[2,2,3,0],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,2,3,0],[0,2,1,0]],[[1,2,2,1],[1,2,3,3],[1,3,0,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[1,3,0,2],[0,2,1,0]],[[0,3,1,1],[2,3,3,1],[2,2,3,0],[1,0,2,0]],[[0,2,1,1],[3,3,3,1],[2,2,3,0],[1,0,2,0]],[[0,2,1,1],[2,4,3,1],[2,2,3,0],[1,0,2,0]],[[0,2,1,1],[2,3,4,1],[2,2,3,0],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[3,2,3,0],[1,0,2,0]],[[0,2,1,1],[2,3,3,1],[2,2,3,0],[2,0,2,0]],[[0,3,1,1],[2,3,3,1],[2,2,3,0],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[2,2,3,0],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[2,2,3,0],[1,1,1,0]],[[0,2,1,1],[2,3,4,1],[2,2,3,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[3,2,3,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[2,2,3,0],[2,1,1,0]],[[1,2,3,1],[1,2,3,2],[1,3,0,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,2],[1,3,0,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,2,1],[1,2,3,3],[1,3,0,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,2],[1,3,0,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,2],[1,3,0,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,2],[1,3,0,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,2],[1,3,0,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[2,2,3,0],[1,2,0,0]],[[0,2,1,1],[3,3,3,1],[2,2,3,0],[1,2,0,0]],[[0,2,1,1],[2,4,3,1],[2,2,3,0],[1,2,0,0]],[[0,2,1,1],[2,3,4,1],[2,2,3,0],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[3,2,3,0],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[2,2,3,0],[2,2,0,0]],[[1,2,2,1],[1,2,3,3],[1,3,0,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,2],[1,3,0,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,2],[1,3,0,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,2],[1,3,0,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,2],[1,3,0,2],[0,1,2,0]],[[1,2,2,1],[1,2,3,3],[1,3,0,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,2],[1,3,0,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,2],[1,3,0,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,2],[1,3,0,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,2],[1,3,0,2],[0,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,2,3,1],[0,2,0,0]],[[0,2,1,1],[3,3,3,1],[2,2,3,1],[0,2,0,0]],[[0,2,1,1],[2,4,3,1],[2,2,3,1],[0,2,0,0]],[[0,2,1,1],[2,3,4,1],[2,2,3,1],[0,2,0,0]],[[0,2,1,1],[2,3,3,1],[3,2,3,1],[0,2,0,0]],[[0,3,1,1],[2,3,3,1],[2,2,3,1],[1,1,0,0]],[[0,2,1,1],[3,3,3,1],[2,2,3,1],[1,1,0,0]],[[0,2,1,1],[2,4,3,1],[2,2,3,1],[1,1,0,0]],[[0,2,1,1],[2,3,4,1],[2,2,3,1],[1,1,0,0]],[[0,2,1,1],[2,3,3,1],[3,2,3,1],[1,1,0,0]],[[0,2,1,1],[2,3,3,1],[2,2,3,1],[2,1,0,0]],[[1,2,2,1],[1,2,4,2],[1,2,3,0],[1,1,1,0]],[[1,2,2,2],[1,2,3,2],[1,2,3,0],[1,1,1,0]],[[1,2,3,1],[1,2,3,2],[1,2,3,0],[1,1,1,0]],[[1,3,2,1],[1,2,3,2],[1,2,3,0],[1,1,1,0]],[[2,2,2,1],[1,2,3,2],[1,2,3,0],[1,1,1,0]],[[1,2,2,1],[1,2,4,2],[1,2,3,0],[1,1,0,1]],[[1,2,2,2],[1,2,3,2],[1,2,3,0],[1,1,0,1]],[[1,2,3,1],[1,2,3,2],[1,2,3,0],[1,1,0,1]],[[1,3,2,1],[1,2,3,2],[1,2,3,0],[1,1,0,1]],[[2,2,2,1],[1,2,3,2],[1,2,3,0],[1,1,0,1]],[[1,2,2,1],[1,2,4,2],[1,2,3,0],[1,0,2,0]],[[1,2,2,2],[1,2,3,2],[1,2,3,0],[1,0,2,0]],[[1,2,3,1],[1,2,3,2],[1,2,3,0],[1,0,2,0]],[[1,3,2,1],[1,2,3,2],[1,2,3,0],[1,0,2,0]],[[2,2,2,1],[1,2,3,2],[1,2,3,0],[1,0,2,0]],[[1,2,2,1],[1,2,4,2],[1,2,3,0],[1,0,1,1]],[[1,2,2,2],[1,2,3,2],[1,2,3,0],[1,0,1,1]],[[1,2,3,1],[1,2,3,2],[1,2,3,0],[1,0,1,1]],[[1,3,2,1],[1,2,3,2],[1,2,3,0],[1,0,1,1]],[[2,2,2,1],[1,2,3,2],[1,2,3,0],[1,0,1,1]],[[1,2,2,1],[1,2,4,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[1,2,3,0],[0,2,1,0]],[[1,2,3,1],[1,2,3,2],[1,2,3,0],[0,2,1,0]],[[1,3,2,1],[1,2,3,2],[1,2,3,0],[0,2,1,0]],[[2,2,2,1],[1,2,3,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,1],[1,2,4,2],[1,2,3,0],[0,2,0,1]],[[1,2,2,2],[1,2,3,2],[1,2,3,0],[0,2,0,1]],[[1,2,3,1],[1,2,3,2],[1,2,3,0],[0,2,0,1]],[[1,3,2,1],[1,2,3,2],[1,2,3,0],[0,2,0,1]],[[2,2,2,1],[1,2,3,2],[1,2,3,0],[0,2,0,1]],[[1,2,2,1],[1,2,4,2],[1,2,3,0],[0,1,2,0]],[[1,2,2,2],[1,2,3,2],[1,2,3,0],[0,1,2,0]],[[1,2,3,1],[1,2,3,2],[1,2,3,0],[0,1,2,0]],[[1,3,2,1],[1,2,3,2],[1,2,3,0],[0,1,2,0]],[[2,2,2,1],[1,2,3,2],[1,2,3,0],[0,1,2,0]],[[1,2,2,1],[1,2,4,2],[1,2,3,0],[0,1,1,1]],[[1,2,2,2],[1,2,3,2],[1,2,3,0],[0,1,1,1]],[[1,2,3,1],[1,2,3,2],[1,2,3,0],[0,1,1,1]],[[1,3,2,1],[1,2,3,2],[1,2,3,0],[0,1,1,1]],[[2,2,2,1],[1,2,3,2],[1,2,3,0],[0,1,1,1]],[[1,2,2,1],[1,2,4,2],[1,2,3,0],[0,0,2,1]],[[1,2,2,2],[1,2,3,2],[1,2,3,0],[0,0,2,1]],[[1,2,3,1],[1,2,3,2],[1,2,3,0],[0,0,2,1]],[[1,3,2,1],[1,2,3,2],[1,2,3,0],[0,0,2,1]],[[2,2,2,1],[1,2,3,2],[1,2,3,0],[0,0,2,1]],[[1,2,2,1],[1,2,3,3],[1,2,2,2],[1,0,0,1]],[[1,2,2,2],[1,2,3,2],[1,2,2,2],[1,0,0,1]],[[1,2,3,1],[1,2,3,2],[1,2,2,2],[1,0,0,1]],[[1,3,2,1],[1,2,3,2],[1,2,2,2],[1,0,0,1]],[[2,2,2,1],[1,2,3,2],[1,2,2,2],[1,0,0,1]],[[1,2,2,1],[1,2,3,3],[1,2,2,2],[0,1,0,1]],[[1,2,2,2],[1,2,3,2],[1,2,2,2],[0,1,0,1]],[[1,2,3,1],[1,2,3,2],[1,2,2,2],[0,1,0,1]],[[1,3,2,1],[1,2,3,2],[1,2,2,2],[0,1,0,1]],[[2,2,2,1],[1,2,3,2],[1,2,2,2],[0,1,0,1]],[[1,2,2,1],[1,2,3,3],[1,2,1,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,2],[1,2,1,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,2],[1,2,1,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,2],[1,2,1,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,2],[1,2,1,2],[1,1,1,0]],[[1,2,2,1],[1,2,3,3],[1,2,1,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,2],[1,2,1,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,2],[1,2,1,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,2],[1,2,1,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,2],[1,2,1,2],[1,1,0,1]],[[1,2,2,1],[1,2,3,3],[1,2,1,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,2],[1,2,1,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,2],[1,2,1,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,2],[1,2,1,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,2],[1,2,1,2],[1,0,2,0]],[[1,2,2,1],[1,2,3,3],[1,2,1,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,2],[1,2,1,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,2],[1,2,1,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,2],[1,2,1,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,2],[1,2,1,2],[1,0,1,1]],[[0,3,1,1],[2,3,3,1],[2,3,0,0],[0,2,2,1]],[[0,2,1,1],[3,3,3,1],[2,3,0,0],[0,2,2,1]],[[0,2,1,1],[2,4,3,1],[2,3,0,0],[0,2,2,1]],[[0,2,1,1],[2,3,3,1],[3,3,0,0],[0,2,2,1]],[[0,3,1,1],[2,3,3,1],[2,3,0,0],[1,1,2,1]],[[0,2,1,1],[3,3,3,1],[2,3,0,0],[1,1,2,1]],[[0,2,1,1],[2,4,3,1],[2,3,0,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[3,3,0,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,1],[2,3,0,0],[2,1,2,1]],[[0,3,1,1],[2,3,3,1],[2,3,0,0],[1,2,1,1]],[[0,2,1,1],[3,3,3,1],[2,3,0,0],[1,2,1,1]],[[0,2,1,1],[2,4,3,1],[2,3,0,0],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[3,3,0,0],[1,2,1,1]],[[0,2,1,1],[2,3,3,1],[2,3,0,0],[2,2,1,1]],[[0,3,1,1],[2,3,3,1],[2,3,0,0],[1,2,2,0]],[[0,2,1,1],[3,3,3,1],[2,3,0,0],[1,2,2,0]],[[0,2,1,1],[2,4,3,1],[2,3,0,0],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[3,3,0,0],[1,2,2,0]],[[0,2,1,1],[2,3,3,1],[2,3,0,0],[2,2,2,0]],[[0,3,1,1],[2,3,3,1],[2,3,0,1],[0,2,2,0]],[[0,2,1,1],[3,3,3,1],[2,3,0,1],[0,2,2,0]],[[0,2,1,1],[2,4,3,1],[2,3,0,1],[0,2,2,0]],[[0,2,1,1],[2,3,3,1],[3,3,0,1],[0,2,2,0]],[[0,3,1,1],[2,3,3,1],[2,3,0,1],[1,1,2,0]],[[0,2,1,1],[3,3,3,1],[2,3,0,1],[1,1,2,0]],[[0,2,1,1],[2,4,3,1],[2,3,0,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[3,3,0,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,1],[2,3,0,1],[2,1,2,0]],[[0,3,1,1],[2,3,3,1],[2,3,0,1],[1,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,3,0,1],[1,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,3,0,1],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,3,0,1],[1,2,1,0]],[[0,2,1,1],[2,3,3,1],[2,3,0,1],[2,2,1,0]],[[1,2,2,1],[1,2,3,3],[1,2,1,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[1,2,1,2],[0,2,1,0]],[[0,3,1,1],[2,3,3,1],[2,3,0,2],[0,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,3,0,2],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,3,0,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,3,0,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[2,3,0,2],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,3,0,2],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,3,0,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,3,0,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,2],[1,2,1,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,2],[1,2,1,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,2],[1,2,1,2],[0,2,1,0]],[[1,2,2,1],[1,2,3,3],[1,2,1,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,2],[1,2,1,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,2],[1,2,1,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,2],[1,2,1,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,2],[1,2,1,2],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[2,3,0,2],[1,1,0,1]],[[0,2,1,1],[3,3,3,1],[2,3,0,2],[1,1,0,1]],[[0,2,1,1],[2,4,3,1],[2,3,0,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[3,3,0,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[2,3,0,2],[2,1,0,1]],[[0,3,1,1],[2,3,3,1],[2,3,0,2],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[2,3,0,2],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[2,3,0,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[3,3,0,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[2,3,0,2],[2,1,1,0]],[[0,3,1,1],[2,3,3,1],[2,3,0,2],[1,2,0,0]],[[0,2,1,1],[3,3,3,1],[2,3,0,2],[1,2,0,0]],[[0,2,1,1],[2,4,3,1],[2,3,0,2],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[3,3,0,2],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[2,3,0,2],[2,2,0,0]],[[1,2,2,1],[1,2,3,3],[1,2,1,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,2],[1,2,1,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,2],[1,2,1,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,2],[1,2,1,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,2],[1,2,1,2],[0,1,2,0]],[[1,2,2,1],[1,2,3,3],[1,2,1,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,2],[1,2,1,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,2],[1,2,1,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,2],[1,2,1,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,2],[1,2,1,2],[0,1,1,1]],[[1,2,2,1],[1,2,3,3],[1,2,1,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,2],[1,2,1,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,2],[1,2,1,2],[0,0,2,1]],[[1,3,2,1],[1,2,3,2],[1,2,1,2],[0,0,2,1]],[[2,2,2,1],[1,2,3,2],[1,2,1,2],[0,0,2,1]],[[1,2,2,1],[1,2,3,3],[1,2,0,2],[1,0,2,1]],[[1,2,2,2],[1,2,3,2],[1,2,0,2],[1,0,2,1]],[[1,2,3,1],[1,2,3,2],[1,2,0,2],[1,0,2,1]],[[1,3,2,1],[1,2,3,2],[1,2,0,2],[1,0,2,1]],[[2,2,2,1],[1,2,3,2],[1,2,0,2],[1,0,2,1]],[[0,3,1,1],[2,3,3,1],[2,3,1,0],[0,2,1,1]],[[0,2,1,1],[3,3,3,1],[2,3,1,0],[0,2,1,1]],[[0,2,1,1],[2,4,3,1],[2,3,1,0],[0,2,1,1]],[[0,2,1,1],[2,3,3,1],[3,3,1,0],[0,2,1,1]],[[0,3,1,1],[2,3,3,1],[2,3,1,0],[1,1,1,1]],[[0,2,1,1],[3,3,3,1],[2,3,1,0],[1,1,1,1]],[[0,2,1,1],[2,4,3,1],[2,3,1,0],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[3,3,1,0],[1,1,1,1]],[[0,2,1,1],[2,3,3,1],[2,3,1,0],[2,1,1,1]],[[0,3,1,1],[2,3,3,1],[2,3,1,0],[1,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,3,1,0],[1,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,3,1,0],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,3,1,0],[1,2,0,1]],[[0,2,1,1],[2,3,3,1],[2,3,1,0],[2,2,0,1]],[[1,2,2,1],[1,2,3,3],[1,2,0,2],[0,1,2,1]],[[1,2,2,2],[1,2,3,2],[1,2,0,2],[0,1,2,1]],[[1,2,3,1],[1,2,3,2],[1,2,0,2],[0,1,2,1]],[[0,3,1,1],[2,3,3,1],[2,3,1,1],[0,2,0,1]],[[0,2,1,1],[3,3,3,1],[2,3,1,1],[0,2,0,1]],[[0,2,1,1],[2,4,3,1],[2,3,1,1],[0,2,0,1]],[[0,2,1,1],[2,3,3,1],[3,3,1,1],[0,2,0,1]],[[0,3,1,1],[2,3,3,1],[2,3,1,1],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,3,1,1],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,3,1,1],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,3,1,1],[0,2,1,0]],[[1,3,2,1],[1,2,3,2],[1,2,0,2],[0,1,2,1]],[[2,2,2,1],[1,2,3,2],[1,2,0,2],[0,1,2,1]],[[0,3,1,1],[2,3,3,1],[2,3,1,1],[1,1,0,1]],[[0,2,1,1],[3,3,3,1],[2,3,1,1],[1,1,0,1]],[[0,2,1,1],[2,4,3,1],[2,3,1,1],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[3,3,1,1],[1,1,0,1]],[[0,2,1,1],[2,3,3,1],[2,3,1,1],[2,1,0,1]],[[0,3,1,1],[2,3,3,1],[2,3,1,1],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[2,3,1,1],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[2,3,1,1],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[3,3,1,1],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[2,3,1,1],[2,1,1,0]],[[0,3,1,1],[2,3,3,1],[2,3,1,1],[1,2,0,0]],[[0,2,1,1],[3,3,3,1],[2,3,1,1],[1,2,0,0]],[[0,2,1,1],[2,4,3,1],[2,3,1,1],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[3,3,1,1],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[2,3,1,1],[2,2,0,0]],[[0,3,1,1],[2,3,3,1],[2,3,1,2],[1,0,0,1]],[[0,2,1,1],[3,3,3,1],[2,3,1,2],[1,0,0,1]],[[0,2,1,1],[2,4,3,1],[2,3,1,2],[1,0,0,1]],[[0,2,1,1],[2,3,4,1],[2,3,1,2],[1,0,0,1]],[[0,2,1,1],[2,3,3,1],[3,3,1,2],[1,0,0,1]],[[0,3,1,1],[2,3,3,1],[2,3,1,2],[1,0,1,0]],[[0,2,1,1],[3,3,3,1],[2,3,1,2],[1,0,1,0]],[[0,2,1,1],[2,4,3,1],[2,3,1,2],[1,0,1,0]],[[0,2,1,1],[2,3,4,1],[2,3,1,2],[1,0,1,0]],[[0,2,1,1],[2,3,3,1],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[1,2,4,2],[1,1,3,0],[0,2,2,0]],[[1,2,2,2],[1,2,3,2],[1,1,3,0],[0,2,2,0]],[[1,2,3,1],[1,2,3,2],[1,1,3,0],[0,2,2,0]],[[1,3,2,1],[1,2,3,2],[1,1,3,0],[0,2,2,0]],[[2,2,2,1],[1,2,3,2],[1,1,3,0],[0,2,2,0]],[[1,2,2,1],[1,2,4,2],[1,1,3,0],[0,2,1,1]],[[1,2,2,2],[1,2,3,2],[1,1,3,0],[0,2,1,1]],[[1,2,3,1],[1,2,3,2],[1,1,3,0],[0,2,1,1]],[[1,3,2,1],[1,2,3,2],[1,1,3,0],[0,2,1,1]],[[2,2,2,1],[1,2,3,2],[1,1,3,0],[0,2,1,1]],[[1,2,2,1],[1,2,3,3],[1,1,1,2],[0,2,2,0]],[[1,2,2,2],[1,2,3,2],[1,1,1,2],[0,2,2,0]],[[1,2,3,1],[1,2,3,2],[1,1,1,2],[0,2,2,0]],[[1,3,2,1],[1,2,3,2],[1,1,1,2],[0,2,2,0]],[[2,2,2,1],[1,2,3,2],[1,1,1,2],[0,2,2,0]],[[1,2,2,1],[1,2,3,3],[1,1,1,2],[0,2,1,1]],[[1,2,2,2],[1,2,3,2],[1,1,1,2],[0,2,1,1]],[[1,2,3,1],[1,2,3,2],[1,1,1,2],[0,2,1,1]],[[1,3,2,1],[1,2,3,2],[1,1,1,2],[0,2,1,1]],[[2,2,2,1],[1,2,3,2],[1,1,1,2],[0,2,1,1]],[[1,2,2,1],[1,2,3,3],[1,1,0,2],[0,2,2,1]],[[0,3,1,1],[2,3,3,1],[2,3,2,0],[0,2,1,0]],[[0,2,1,1],[3,3,3,1],[2,3,2,0],[0,2,1,0]],[[0,2,1,1],[2,4,3,1],[2,3,2,0],[0,2,1,0]],[[0,2,1,1],[2,3,3,1],[3,3,2,0],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[1,1,0,2],[0,2,2,1]],[[1,2,3,1],[1,2,3,2],[1,1,0,2],[0,2,2,1]],[[1,3,2,1],[1,2,3,2],[1,1,0,2],[0,2,2,1]],[[2,2,2,1],[1,2,3,2],[1,1,0,2],[0,2,2,1]],[[0,3,1,1],[2,3,3,1],[2,3,2,0],[1,0,1,1]],[[0,2,1,1],[3,3,3,1],[2,3,2,0],[1,0,1,1]],[[0,2,1,1],[2,4,3,1],[2,3,2,0],[1,0,1,1]],[[0,2,1,1],[2,3,4,1],[2,3,2,0],[1,0,1,1]],[[0,2,1,1],[2,3,3,1],[3,3,2,0],[1,0,1,1]],[[0,3,1,1],[2,3,3,1],[2,3,2,0],[1,1,1,0]],[[0,2,1,1],[3,3,3,1],[2,3,2,0],[1,1,1,0]],[[0,2,1,1],[2,4,3,1],[2,3,2,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[3,3,2,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,1],[2,3,2,0],[2,1,1,0]],[[0,3,1,1],[2,3,3,1],[2,3,2,0],[1,2,0,0]],[[0,2,1,1],[3,3,3,1],[2,3,2,0],[1,2,0,0]],[[0,2,1,1],[2,4,3,1],[2,3,2,0],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[3,3,2,0],[1,2,0,0]],[[0,2,1,1],[2,3,3,1],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[1,2,3,3],[1,0,3,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,2],[1,0,3,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,2],[1,0,3,2],[1,0,2,0]],[[1,2,2,1],[1,2,3,2],[1,0,3,3],[1,0,1,1]],[[1,2,2,1],[1,2,3,3],[1,0,3,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,2],[1,0,3,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,2],[1,0,3,2],[1,0,1,1]],[[1,2,2,1],[1,2,3,3],[1,0,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,2],[1,0,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,2],[1,0,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,3,2],[1,0,3,3],[0,1,1,1]],[[1,2,2,1],[1,2,3,3],[1,0,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,2],[1,0,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,2],[1,0,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,3,2],[1,0,3,2],[0,0,2,2]],[[1,2,2,1],[1,2,3,2],[1,0,3,3],[0,0,2,1]],[[1,2,2,1],[1,2,3,3],[1,0,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,2],[1,0,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,2],[1,0,3,2],[0,0,2,1]],[[0,3,1,1],[2,3,3,1],[2,3,2,1],[1,0,0,1]],[[0,2,1,1],[3,3,3,1],[2,3,2,1],[1,0,0,1]],[[0,2,1,1],[2,4,3,1],[2,3,2,1],[1,0,0,1]],[[0,2,1,1],[2,3,4,1],[2,3,2,1],[1,0,0,1]],[[0,2,1,1],[2,3,3,1],[3,3,2,1],[1,0,0,1]],[[0,3,1,1],[2,3,3,1],[2,3,2,1],[1,0,1,0]],[[0,2,1,1],[3,3,3,1],[2,3,2,1],[1,0,1,0]],[[0,2,1,1],[2,4,3,1],[2,3,2,1],[1,0,1,0]],[[0,2,1,1],[2,3,4,1],[2,3,2,1],[1,0,1,0]],[[0,2,1,1],[2,3,3,1],[3,3,2,1],[1,0,1,0]],[[1,2,2,1],[1,2,4,2],[1,0,3,0],[1,2,2,0]],[[1,2,2,2],[1,2,3,2],[1,0,3,0],[1,2,2,0]],[[1,2,3,1],[1,2,3,2],[1,0,3,0],[1,2,2,0]],[[1,3,2,1],[1,2,3,2],[1,0,3,0],[1,2,2,0]],[[2,2,2,1],[1,2,3,2],[1,0,3,0],[1,2,2,0]],[[1,2,2,1],[1,2,4,2],[1,0,3,0],[1,2,1,1]],[[1,2,2,2],[1,2,3,2],[1,0,3,0],[1,2,1,1]],[[1,2,3,1],[1,2,3,2],[1,0,3,0],[1,2,1,1]],[[1,3,2,1],[1,2,3,2],[1,0,3,0],[1,2,1,1]],[[2,2,2,1],[1,2,3,2],[1,0,3,0],[1,2,1,1]],[[1,2,2,1],[1,2,3,3],[1,0,1,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,2],[1,0,1,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,2],[1,0,1,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,2],[1,0,1,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,2],[1,0,1,2],[1,2,2,0]],[[1,2,2,1],[1,2,3,3],[1,0,1,2],[1,2,1,1]],[[1,2,2,2],[1,2,3,2],[1,0,1,2],[1,2,1,1]],[[1,2,3,1],[1,2,3,2],[1,0,1,2],[1,2,1,1]],[[1,3,2,1],[1,2,3,2],[1,0,1,2],[1,2,1,1]],[[2,2,2,1],[1,2,3,2],[1,0,1,2],[1,2,1,1]],[[1,2,2,1],[1,2,3,3],[1,0,0,2],[1,2,2,1]],[[1,2,2,2],[1,2,3,2],[1,0,0,2],[1,2,2,1]],[[1,2,3,1],[1,2,3,2],[1,0,0,2],[1,2,2,1]],[[1,3,2,1],[1,2,3,2],[1,0,0,2],[1,2,2,1]],[[2,2,2,1],[1,2,3,2],[1,0,0,2],[1,2,2,1]],[[1,2,2,1],[1,2,4,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,2],[1,2,3,2],[0,3,3,0],[1,2,0,0]],[[1,2,3,1],[1,2,3,2],[0,3,3,0],[1,2,0,0]],[[1,3,2,1],[1,2,3,2],[0,3,3,0],[1,2,0,0]],[[2,2,2,1],[1,2,3,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,1],[1,2,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[0,3,3,0],[0,2,1,0]],[[1,2,3,1],[1,2,3,2],[0,3,3,0],[0,2,1,0]],[[1,3,2,1],[1,2,3,2],[0,3,3,0],[0,2,1,0]],[[2,2,2,1],[1,2,3,2],[0,3,3,0],[0,2,1,0]],[[1,2,2,1],[1,2,4,2],[0,3,3,0],[0,2,0,1]],[[1,2,2,2],[1,2,3,2],[0,3,3,0],[0,2,0,1]],[[1,2,3,1],[1,2,3,2],[0,3,3,0],[0,2,0,1]],[[1,3,2,1],[1,2,3,2],[0,3,3,0],[0,2,0,1]],[[2,2,2,1],[1,2,3,2],[0,3,3,0],[0,2,0,1]],[[1,2,2,1],[1,2,4,2],[0,3,3,0],[0,1,2,0]],[[1,2,2,2],[1,2,3,2],[0,3,3,0],[0,1,2,0]],[[1,2,3,1],[1,2,3,2],[0,3,3,0],[0,1,2,0]],[[1,3,2,1],[1,2,3,2],[0,3,3,0],[0,1,2,0]],[[2,2,2,1],[1,2,3,2],[0,3,3,0],[0,1,2,0]],[[1,2,2,1],[1,2,4,2],[0,3,3,0],[0,1,1,1]],[[1,2,2,2],[1,2,3,2],[0,3,3,0],[0,1,1,1]],[[1,2,3,1],[1,2,3,2],[0,3,3,0],[0,1,1,1]],[[1,3,2,1],[1,2,3,2],[0,3,3,0],[0,1,1,1]],[[2,2,2,1],[1,2,3,2],[0,3,3,0],[0,1,1,1]],[[1,2,2,1],[1,2,4,2],[0,3,3,0],[0,0,2,1]],[[1,2,2,2],[1,2,3,2],[0,3,3,0],[0,0,2,1]],[[1,2,3,1],[1,2,3,2],[0,3,3,0],[0,0,2,1]],[[1,3,2,1],[1,2,3,2],[0,3,3,0],[0,0,2,1]],[[1,2,2,1],[1,2,3,3],[0,3,2,2],[0,1,0,1]],[[1,2,2,2],[1,2,3,2],[0,3,2,2],[0,1,0,1]],[[1,2,3,1],[1,2,3,2],[0,3,2,2],[0,1,0,1]],[[1,3,2,1],[1,2,3,2],[0,3,2,2],[0,1,0,1]],[[1,2,2,1],[1,2,4,2],[0,3,2,0],[1,2,1,0]],[[0,3,1,1],[2,3,3,1],[2,3,3,0],[1,0,1,0]],[[0,2,1,1],[3,3,3,1],[2,3,3,0],[1,0,1,0]],[[0,2,1,1],[2,4,3,1],[2,3,3,0],[1,0,1,0]],[[0,2,1,1],[2,3,4,1],[2,3,3,0],[1,0,1,0]],[[0,2,1,1],[2,3,3,1],[3,3,3,0],[1,0,1,0]],[[1,2,2,2],[1,2,3,2],[0,3,2,0],[1,2,1,0]],[[1,2,3,1],[1,2,3,2],[0,3,2,0],[1,2,1,0]],[[1,3,2,1],[1,2,3,2],[0,3,2,0],[1,2,1,0]],[[2,2,2,1],[1,2,3,2],[0,3,2,0],[1,2,1,0]],[[1,2,2,1],[1,2,4,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,2],[1,2,3,2],[0,3,2,0],[1,2,0,1]],[[1,2,3,1],[1,2,3,2],[0,3,2,0],[1,2,0,1]],[[1,3,2,1],[1,2,3,2],[0,3,2,0],[1,2,0,1]],[[2,2,2,1],[1,2,3,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,1],[1,2,4,2],[0,3,2,0],[1,1,2,0]],[[1,2,2,2],[1,2,3,2],[0,3,2,0],[1,1,2,0]],[[1,2,3,1],[1,2,3,2],[0,3,2,0],[1,1,2,0]],[[1,3,2,1],[1,2,3,2],[0,3,2,0],[1,1,2,0]],[[2,2,2,1],[1,2,3,2],[0,3,2,0],[1,1,2,0]],[[1,2,2,1],[1,2,4,2],[0,3,2,0],[1,1,1,1]],[[1,2,2,2],[1,2,3,2],[0,3,2,0],[1,1,1,1]],[[1,2,3,1],[1,2,3,2],[0,3,2,0],[1,1,1,1]],[[1,3,2,1],[1,2,3,2],[0,3,2,0],[1,1,1,1]],[[2,2,2,1],[1,2,3,2],[0,3,2,0],[1,1,1,1]],[[1,2,2,1],[1,2,3,3],[0,3,1,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,2],[0,3,1,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,2],[0,3,1,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,2],[0,3,1,2],[0,2,1,0]],[[1,2,2,1],[1,2,3,3],[0,3,1,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,2],[0,3,1,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,2],[0,3,1,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,2],[0,3,1,2],[0,2,0,1]],[[1,2,2,1],[1,2,3,3],[0,3,1,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,2],[0,3,1,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,2],[0,3,1,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,2],[0,3,1,2],[0,1,2,0]],[[1,2,2,1],[1,2,3,3],[0,3,1,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,2],[0,3,1,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,2],[0,3,1,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,2],[0,3,1,2],[0,1,1,1]],[[1,2,2,1],[1,2,3,3],[0,3,1,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,2],[0,3,1,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,2],[0,3,1,2],[0,0,2,1]],[[1,3,2,1],[1,2,3,2],[0,3,1,2],[0,0,2,1]],[[1,2,2,1],[1,2,4,2],[0,3,1,0],[1,2,2,0]],[[1,2,2,2],[1,2,3,2],[0,3,1,0],[1,2,2,0]],[[1,2,3,1],[1,2,3,2],[0,3,1,0],[1,2,2,0]],[[1,3,2,1],[1,2,3,2],[0,3,1,0],[1,2,2,0]],[[2,2,2,1],[1,2,3,2],[0,3,1,0],[1,2,2,0]],[[1,2,2,1],[1,2,3,3],[0,3,0,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,2],[0,3,0,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,2],[0,3,0,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[1,2,3,3],[0,3,0,2],[1,2,0,1]],[[1,2,2,2],[1,2,3,2],[0,3,0,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,2],[0,3,0,2],[1,2,0,1]],[[1,3,2,1],[1,2,3,2],[0,3,0,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,2],[0,3,0,2],[1,2,0,1]],[[1,2,2,1],[1,2,3,3],[0,3,0,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,2],[0,3,0,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,2],[0,3,0,2],[1,1,2,0]],[[0,3,1,1],[2,3,3,1],[2,3,3,1],[1,0,0,0]],[[0,2,1,1],[3,3,3,1],[2,3,3,1],[1,0,0,0]],[[0,2,1,1],[2,4,3,1],[2,3,3,1],[1,0,0,0]],[[0,2,1,1],[2,3,4,1],[2,3,3,1],[1,0,0,0]],[[0,2,1,1],[2,3,3,1],[3,3,3,1],[1,0,0,0]],[[1,3,2,1],[1,2,3,2],[0,3,0,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,2],[0,3,0,2],[1,1,2,0]],[[1,2,2,1],[1,2,3,3],[0,3,0,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,2],[0,3,0,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,2],[0,3,0,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,2],[0,3,0,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,2],[0,3,0,2],[1,1,1,1]],[[1,2,2,1],[1,2,3,3],[0,3,0,2],[0,1,2,1]],[[1,2,2,2],[1,2,3,2],[0,3,0,2],[0,1,2,1]],[[1,2,3,1],[1,2,3,2],[0,3,0,2],[0,1,2,1]],[[1,3,2,1],[1,2,3,2],[0,3,0,2],[0,1,2,1]],[[1,2,2,1],[1,2,4,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,2],[1,2,3,2],[0,2,3,0],[1,2,1,0]],[[1,2,3,1],[1,2,3,2],[0,2,3,0],[1,2,1,0]],[[1,3,2,1],[1,2,3,2],[0,2,3,0],[1,2,1,0]],[[2,2,2,1],[1,2,3,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,1],[1,2,4,2],[0,2,3,0],[1,2,0,1]],[[1,2,2,2],[1,2,3,2],[0,2,3,0],[1,2,0,1]],[[1,2,3,1],[1,2,3,2],[0,2,3,0],[1,2,0,1]],[[1,3,2,1],[1,2,3,2],[0,2,3,0],[1,2,0,1]],[[2,2,2,1],[1,2,3,2],[0,2,3,0],[1,2,0,1]],[[1,2,2,1],[1,2,4,2],[0,2,3,0],[1,1,2,0]],[[1,2,2,2],[1,2,3,2],[0,2,3,0],[1,1,2,0]],[[1,2,3,1],[1,2,3,2],[0,2,3,0],[1,1,2,0]],[[1,3,2,1],[1,2,3,2],[0,2,3,0],[1,1,2,0]],[[2,2,2,1],[1,2,3,2],[0,2,3,0],[1,1,2,0]],[[1,2,2,1],[1,2,4,2],[0,2,3,0],[1,1,1,1]],[[1,2,2,2],[1,2,3,2],[0,2,3,0],[1,1,1,1]],[[1,2,3,1],[1,2,3,2],[0,2,3,0],[1,1,1,1]],[[1,3,2,1],[1,2,3,2],[0,2,3,0],[1,1,1,1]],[[2,2,2,1],[1,2,3,2],[0,2,3,0],[1,1,1,1]],[[1,2,2,1],[1,2,4,2],[0,2,3,0],[1,0,2,1]],[[1,2,2,2],[1,2,3,2],[0,2,3,0],[1,0,2,1]],[[1,2,3,1],[1,2,3,2],[0,2,3,0],[1,0,2,1]],[[1,3,2,1],[1,2,3,2],[0,2,3,0],[1,0,2,1]],[[1,2,2,1],[1,2,3,3],[0,2,2,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,2],[0,2,2,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,2],[0,2,2,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,2],[0,2,2,2],[1,1,0,1]],[[1,2,2,1],[1,2,3,3],[0,2,1,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,2],[0,2,1,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,2],[0,2,1,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,2],[0,2,1,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,2],[0,2,1,2],[1,2,1,0]],[[1,2,2,1],[1,2,3,3],[0,2,1,2],[1,2,0,1]],[[1,2,2,2],[1,2,3,2],[0,2,1,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,2],[0,2,1,2],[1,2,0,1]],[[1,3,2,1],[1,2,3,2],[0,2,1,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,2],[0,2,1,2],[1,2,0,1]],[[1,2,2,1],[1,2,3,3],[0,2,1,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,2],[0,2,1,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,2],[0,2,1,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,2],[0,2,1,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,2],[0,2,1,2],[1,1,2,0]],[[1,2,2,1],[1,2,3,3],[0,2,1,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,2],[0,2,1,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,2],[0,2,1,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,2],[0,2,1,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,2],[0,2,1,2],[1,1,1,1]],[[1,2,2,1],[1,2,3,3],[0,2,1,2],[1,0,2,1]],[[1,2,2,2],[1,2,3,2],[0,2,1,2],[1,0,2,1]],[[1,2,3,1],[1,2,3,2],[0,2,1,2],[1,0,2,1]],[[1,3,2,1],[1,2,3,2],[0,2,1,2],[1,0,2,1]],[[1,2,2,1],[1,2,3,3],[0,2,0,2],[1,1,2,1]],[[1,2,2,2],[1,2,3,2],[0,2,0,2],[1,1,2,1]],[[1,2,3,1],[1,2,3,2],[0,2,0,2],[1,1,2,1]],[[1,3,2,1],[1,2,3,2],[0,2,0,2],[1,1,2,1]],[[2,2,2,1],[1,2,3,2],[0,2,0,2],[1,1,2,1]],[[1,2,2,1],[1,2,4,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,2],[1,2,3,2],[0,1,3,0],[1,2,2,0]],[[1,2,3,1],[1,2,3,2],[0,1,3,0],[1,2,2,0]],[[1,3,2,1],[1,2,3,2],[0,1,3,0],[1,2,2,0]],[[2,2,2,1],[1,2,3,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,1],[1,2,4,2],[0,1,3,0],[1,2,1,1]],[[1,2,2,2],[1,2,3,2],[0,1,3,0],[1,2,1,1]],[[1,2,3,1],[1,2,3,2],[0,1,3,0],[1,2,1,1]],[[1,3,2,1],[1,2,3,2],[0,1,3,0],[1,2,1,1]],[[2,2,2,1],[1,2,3,2],[0,1,3,0],[1,2,1,1]],[[1,2,2,1],[1,2,3,3],[0,1,1,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,2],[0,1,1,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,2],[0,1,1,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,2],[0,1,1,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,2],[0,1,1,2],[1,2,2,0]],[[1,2,2,1],[1,2,3,3],[0,1,1,2],[1,2,1,1]],[[1,2,2,2],[1,2,3,2],[0,1,1,2],[1,2,1,1]],[[1,2,3,1],[1,2,3,2],[0,1,1,2],[1,2,1,1]],[[1,3,2,1],[1,2,3,2],[0,1,1,2],[1,2,1,1]],[[2,2,2,1],[1,2,3,2],[0,1,1,2],[1,2,1,1]],[[1,2,2,1],[1,2,3,3],[0,1,0,2],[1,2,2,1]],[[1,2,2,2],[1,2,3,2],[0,1,0,2],[1,2,2,1]],[[1,2,3,1],[1,2,3,2],[0,1,0,2],[1,2,2,1]],[[1,3,2,1],[1,2,3,2],[0,1,0,2],[1,2,2,1]],[[2,2,2,1],[1,2,3,2],[0,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,2,3,3],[0,0,3,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,2],[0,0,3,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,2],[0,0,3,2],[1,1,2,0]],[[1,2,2,1],[1,2,3,2],[0,0,3,3],[1,1,1,1]],[[1,2,2,1],[1,2,3,3],[0,0,3,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,2],[0,0,3,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,2],[0,0,3,2],[1,1,1,1]],[[1,2,2,1],[1,2,3,2],[0,0,3,2],[1,0,2,2]],[[1,2,2,1],[1,2,3,2],[0,0,3,3],[1,0,2,1]],[[1,2,2,1],[1,2,3,3],[0,0,3,2],[1,0,2,1]],[[1,2,2,2],[1,2,3,2],[0,0,3,2],[1,0,2,1]],[[1,2,3,1],[1,2,3,2],[0,0,3,2],[1,0,2,1]],[[0,2,1,2],[2,3,3,2],[0,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,4,2],[0,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,3,3],[0,0,1,2],[1,2,2,1]],[[0,2,1,1],[2,3,3,2],[0,0,1,3],[1,2,2,1]],[[0,2,1,1],[2,3,3,2],[0,0,1,2],[1,2,3,1]],[[0,2,1,1],[2,3,3,2],[0,0,1,2],[1,2,2,2]],[[0,2,1,2],[2,3,3,2],[0,0,2,2],[1,2,1,1]],[[0,2,1,1],[2,3,4,2],[0,0,2,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,3],[0,0,2,2],[1,2,1,1]],[[0,2,1,1],[2,3,3,2],[0,0,2,3],[1,2,1,1]],[[0,2,1,1],[2,3,3,2],[0,0,2,2],[1,2,1,2]],[[0,2,1,2],[2,3,3,2],[0,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,4,2],[0,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,3],[0,0,2,2],[1,2,2,0]],[[0,2,1,1],[2,3,3,2],[0,0,2,3],[1,2,2,0]],[[0,2,1,2],[2,3,3,2],[0,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,4,2],[0,0,3,0],[1,2,2,1]],[[0,2,1,1],[2,3,3,3],[0,0,3,0],[1,2,2,1]],[[0,2,1,2],[2,3,3,2],[0,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,4,2],[0,0,3,1],[1,2,1,1]],[[0,2,1,1],[2,3,3,3],[0,0,3,1],[1,2,1,1]],[[0,2,1,2],[2,3,3,2],[0,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,3,4,2],[0,0,3,1],[1,2,2,0]],[[0,2,1,1],[2,3,3,3],[0,0,3,1],[1,2,2,0]],[[0,2,1,2],[2,3,3,2],[0,0,3,2],[1,0,2,1]],[[0,2,1,1],[2,3,4,2],[0,0,3,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,3],[0,0,3,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,2],[0,0,3,3],[1,0,2,1]],[[0,2,1,1],[2,3,3,2],[0,0,3,2],[1,0,2,2]],[[0,2,1,2],[2,3,3,2],[0,0,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,4,2],[0,0,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,3],[0,0,3,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,2],[0,0,3,3],[1,1,1,1]],[[0,2,1,1],[2,3,3,2],[0,0,3,2],[1,1,1,2]],[[0,2,1,2],[2,3,3,2],[0,0,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,2],[0,0,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,3],[0,0,3,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,2],[0,0,3,3],[1,1,2,0]],[[0,2,1,2],[2,3,3,2],[0,1,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,4,2],[0,1,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,3,3],[0,1,1,2],[1,1,2,1]],[[0,2,1,1],[2,3,3,2],[0,1,1,3],[1,1,2,1]],[[0,2,1,1],[2,3,3,2],[0,1,1,2],[1,1,2,2]],[[0,2,1,2],[2,3,3,2],[0,1,2,2],[1,0,2,1]],[[0,2,1,1],[2,3,4,2],[0,1,2,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,3],[0,1,2,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,2],[0,1,2,3],[1,0,2,1]],[[0,2,1,1],[2,3,3,2],[0,1,2,2],[1,0,2,2]],[[0,2,1,2],[2,3,3,2],[0,1,2,2],[1,1,1,1]],[[0,2,1,1],[2,3,4,2],[0,1,2,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,3],[0,1,2,2],[1,1,1,1]],[[0,2,1,1],[2,3,3,2],[0,1,2,3],[1,1,1,1]],[[0,2,1,1],[2,3,3,2],[0,1,2,2],[1,1,1,2]],[[0,2,1,2],[2,3,3,2],[0,1,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,4,2],[0,1,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,3],[0,1,2,2],[1,1,2,0]],[[0,2,1,1],[2,3,3,2],[0,1,2,3],[1,1,2,0]],[[0,2,1,2],[2,3,3,2],[0,1,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,4,2],[0,1,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,3],[0,1,2,2],[1,2,0,1]],[[0,2,1,1],[2,3,3,2],[0,1,2,3],[1,2,0,1]],[[0,2,1,2],[2,3,3,2],[0,1,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,4,2],[0,1,2,2],[1,2,1,0]],[[0,2,1,1],[2,3,3,3],[0,1,2,2],[1,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,3,3,1],[1,0,0,0]],[[1,2,2,2],[1,2,3,1],[2,3,3,1],[1,0,0,0]],[[0,2,1,2],[2,3,3,2],[0,1,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,4,2],[0,1,3,0],[1,1,2,1]],[[0,2,1,1],[2,3,3,3],[0,1,3,0],[1,1,2,1]],[[0,3,1,1],[2,3,3,2],[0,1,3,0],[1,2,2,0]],[[0,2,1,1],[3,3,3,2],[0,1,3,0],[1,2,2,0]],[[0,2,1,1],[2,4,3,2],[0,1,3,0],[1,2,2,0]],[[0,2,1,1],[2,3,4,2],[0,1,3,0],[1,2,2,0]],[[0,2,1,2],[2,3,3,2],[0,1,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,4,2],[0,1,3,1],[1,0,2,1]],[[0,2,1,1],[2,3,3,3],[0,1,3,1],[1,0,2,1]],[[0,2,1,2],[2,3,3,2],[0,1,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,4,2],[0,1,3,1],[1,1,1,1]],[[0,2,1,1],[2,3,3,3],[0,1,3,1],[1,1,1,1]],[[0,2,1,2],[2,3,3,2],[0,1,3,1],[1,1,2,0]],[[0,2,1,1],[2,3,4,2],[0,1,3,1],[1,1,2,0]],[[0,2,1,1],[2,3,3,3],[0,1,3,1],[1,1,2,0]],[[0,2,1,2],[2,3,3,2],[0,1,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,4,2],[0,1,3,1],[1,2,0,1]],[[0,2,1,1],[2,3,3,3],[0,1,3,1],[1,2,0,1]],[[0,2,1,2],[2,3,3,2],[0,1,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,4,2],[0,1,3,1],[1,2,1,0]],[[0,2,1,1],[2,3,3,3],[0,1,3,1],[1,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[1,2,3,1],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[1,2,3,1],[2,3,3,1],[1,0,0,0]],[[0,2,1,2],[2,3,3,2],[0,1,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,2],[0,1,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,3],[0,1,3,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,2],[0,1,3,3],[1,1,0,1]],[[1,2,2,1],[1,2,4,1],[2,3,3,0],[1,0,1,0]],[[1,2,2,2],[1,2,3,1],[2,3,3,0],[1,0,1,0]],[[1,2,3,1],[1,2,3,1],[2,3,3,0],[1,0,1,0]],[[1,3,2,1],[1,2,3,1],[2,3,3,0],[1,0,1,0]],[[2,2,2,1],[1,2,3,1],[2,3,3,0],[1,0,1,0]],[[0,3,1,1],[2,3,3,2],[0,2,3,0],[1,1,1,1]],[[0,2,1,1],[2,4,3,2],[0,2,3,0],[1,1,1,1]],[[0,2,1,1],[2,3,4,2],[0,2,3,0],[1,1,1,1]],[[0,3,1,1],[2,3,3,2],[0,2,3,0],[1,1,2,0]],[[0,2,1,1],[3,3,3,2],[0,2,3,0],[1,1,2,0]],[[0,2,1,1],[2,4,3,2],[0,2,3,0],[1,1,2,0]],[[0,2,1,1],[2,3,4,2],[0,2,3,0],[1,1,2,0]],[[0,3,1,1],[2,3,3,2],[0,2,3,0],[1,2,0,1]],[[0,2,1,1],[3,3,3,2],[0,2,3,0],[1,2,0,1]],[[0,2,1,1],[2,4,3,2],[0,2,3,0],[1,2,0,1]],[[0,2,1,1],[2,3,4,2],[0,2,3,0],[1,2,0,1]],[[0,3,1,1],[2,3,3,2],[0,2,3,0],[1,2,1,0]],[[0,2,1,1],[3,3,3,2],[0,2,3,0],[1,2,1,0]],[[0,2,1,1],[2,4,3,2],[0,2,3,0],[1,2,1,0]],[[0,2,1,1],[2,3,4,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,3,2,1],[1,0,1,0]],[[1,2,2,2],[1,2,3,1],[2,3,2,1],[1,0,1,0]],[[1,2,3,1],[1,2,3,1],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[1,2,3,1],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[1,2,3,1],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[1,2,4,1],[2,3,2,1],[1,0,0,1]],[[1,2,2,2],[1,2,3,1],[2,3,2,1],[1,0,0,1]],[[1,2,3,1],[1,2,3,1],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[1,2,3,1],[2,3,2,1],[1,0,0,1]],[[2,2,2,1],[1,2,3,1],[2,3,2,1],[1,0,0,1]],[[1,2,2,1],[1,2,4,1],[2,3,2,0],[1,0,1,1]],[[1,2,2,2],[1,2,3,1],[2,3,2,0],[1,0,1,1]],[[1,2,3,1],[1,2,3,1],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[1,2,3,1],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[1,2,3,1],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[1,2,4,1],[2,3,1,2],[1,0,1,0]],[[1,2,2,2],[1,2,3,1],[2,3,1,2],[1,0,1,0]],[[1,2,3,1],[1,2,3,1],[2,3,1,2],[1,0,1,0]],[[1,3,2,1],[1,2,3,1],[2,3,1,2],[1,0,1,0]],[[2,2,2,1],[1,2,3,1],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[1,2,4,1],[2,3,1,2],[1,0,0,1]],[[1,2,2,2],[1,2,3,1],[2,3,1,2],[1,0,0,1]],[[1,2,3,1],[1,2,3,1],[2,3,1,2],[1,0,0,1]],[[1,3,2,1],[1,2,3,1],[2,3,1,2],[1,0,0,1]],[[2,2,2,1],[1,2,3,1],[2,3,1,2],[1,0,0,1]],[[0,3,1,1],[2,3,3,2],[0,3,1,0],[1,2,2,0]],[[0,2,1,1],[3,3,3,2],[0,3,1,0],[1,2,2,0]],[[0,2,1,1],[2,4,3,2],[0,3,1,0],[1,2,2,0]],[[0,2,1,1],[2,3,4,2],[0,3,1,0],[1,2,2,0]],[[0,2,1,1],[2,3,3,2],[0,4,1,0],[1,2,2,0]],[[0,2,1,1],[2,3,3,2],[0,3,1,0],[2,2,2,0]],[[0,2,1,1],[2,3,3,2],[0,3,1,0],[1,3,2,0]],[[1,2,2,1],[1,2,4,1],[2,2,3,1],[1,1,0,0]],[[1,2,2,2],[1,2,3,1],[2,2,3,1],[1,1,0,0]],[[1,2,3,1],[1,2,3,1],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[1,2,3,1],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[1,2,3,1],[2,2,3,1],[1,1,0,0]],[[0,3,1,1],[2,3,3,2],[0,3,2,0],[1,1,1,1]],[[0,2,1,1],[2,4,3,2],[0,3,2,0],[1,1,1,1]],[[0,2,1,1],[2,3,4,2],[0,3,2,0],[1,1,1,1]],[[0,3,1,1],[2,3,3,2],[0,3,2,0],[1,1,2,0]],[[0,2,1,1],[3,3,3,2],[0,3,2,0],[1,1,2,0]],[[0,2,1,1],[2,4,3,2],[0,3,2,0],[1,1,2,0]],[[0,2,1,1],[2,3,4,2],[0,3,2,0],[1,1,2,0]],[[0,2,1,1],[2,3,3,2],[0,4,2,0],[1,1,2,0]],[[0,3,1,1],[2,3,3,2],[0,3,2,0],[1,2,0,1]],[[0,2,1,1],[3,3,3,2],[0,3,2,0],[1,2,0,1]],[[0,2,1,1],[2,4,3,2],[0,3,2,0],[1,2,0,1]],[[0,2,1,1],[2,3,4,2],[0,3,2,0],[1,2,0,1]],[[0,2,1,1],[2,3,3,2],[0,4,2,0],[1,2,0,1]],[[0,3,1,1],[2,3,3,2],[0,3,2,0],[1,2,1,0]],[[0,2,1,1],[3,3,3,2],[0,3,2,0],[1,2,1,0]],[[0,2,1,1],[2,4,3,2],[0,3,2,0],[1,2,1,0]],[[0,2,1,1],[2,3,4,2],[0,3,2,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,2],[0,4,2,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,2],[0,3,2,0],[2,2,1,0]],[[0,2,1,1],[2,3,3,2],[0,3,2,0],[1,3,1,0]],[[1,2,2,1],[1,2,4,1],[2,2,3,1],[0,2,0,0]],[[1,2,2,2],[1,2,3,1],[2,2,3,1],[0,2,0,0]],[[1,2,3,1],[1,2,3,1],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[1,2,3,1],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[1,2,3,1],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[1,2,4,1],[2,2,3,0],[1,2,0,0]],[[1,2,2,2],[1,2,3,1],[2,2,3,0],[1,2,0,0]],[[1,2,3,1],[1,2,3,1],[2,2,3,0],[1,2,0,0]],[[1,3,2,1],[1,2,3,1],[2,2,3,0],[1,2,0,0]],[[2,2,2,1],[1,2,3,1],[2,2,3,0],[1,2,0,0]],[[1,2,2,1],[1,2,4,1],[2,2,3,0],[1,1,1,0]],[[1,2,2,2],[1,2,3,1],[2,2,3,0],[1,1,1,0]],[[1,2,3,1],[1,2,3,1],[2,2,3,0],[1,1,1,0]],[[1,3,2,1],[1,2,3,1],[2,2,3,0],[1,1,1,0]],[[2,2,2,1],[1,2,3,1],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[1,2,4,1],[2,2,3,0],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[2,2,3,0],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[2,2,3,0],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[2,2,3,0],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[2,2,3,0],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[2,2,3,0],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[2,2,3,0],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,2,3,0],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[2,2,3,0],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,2,3,0],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[2,2,3,0],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[2,2,3,0],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[2,2,3,0],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[2,2,3,0],[0,1,2,0]],[[0,3,1,1],[2,3,3,2],[0,3,3,0],[0,1,1,1]],[[0,2,1,1],[2,4,3,2],[0,3,3,0],[0,1,1,1]],[[0,2,1,1],[2,3,4,2],[0,3,3,0],[0,1,1,1]],[[0,3,1,1],[2,3,3,2],[0,3,3,0],[0,1,2,0]],[[0,2,1,1],[2,4,3,2],[0,3,3,0],[0,1,2,0]],[[0,2,1,1],[2,3,4,2],[0,3,3,0],[0,1,2,0]],[[0,3,1,1],[2,3,3,2],[0,3,3,0],[0,2,0,1]],[[0,2,1,1],[2,4,3,2],[0,3,3,0],[0,2,0,1]],[[0,2,1,1],[2,3,4,2],[0,3,3,0],[0,2,0,1]],[[0,3,1,1],[2,3,3,2],[0,3,3,0],[0,2,1,0]],[[0,2,1,1],[2,4,3,2],[0,3,3,0],[0,2,1,0]],[[0,2,1,1],[2,3,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,2,2,1],[1,2,0,0]],[[1,2,2,2],[1,2,3,1],[2,2,2,1],[1,2,0,0]],[[1,2,3,1],[1,2,3,1],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[1,2,3,1],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[1,2,3,1],[2,2,2,1],[1,2,0,0]],[[0,3,1,1],[2,3,3,2],[0,3,3,0],[1,2,0,0]],[[0,2,1,1],[3,3,3,2],[0,3,3,0],[1,2,0,0]],[[0,2,1,1],[2,4,3,2],[0,3,3,0],[1,2,0,0]],[[0,2,1,1],[2,3,4,2],[0,3,3,0],[1,2,0,0]],[[0,2,1,1],[2,3,3,2],[0,4,3,0],[1,2,0,0]],[[1,2,2,1],[1,2,4,1],[2,2,2,1],[1,1,1,0]],[[1,2,2,2],[1,2,3,1],[2,2,2,1],[1,1,1,0]],[[1,2,3,1],[1,2,3,1],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[1,2,3,1],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[1,2,3,1],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[1,2,4,1],[2,2,2,1],[1,1,0,1]],[[1,2,2,2],[1,2,3,1],[2,2,2,1],[1,1,0,1]],[[1,2,3,1],[1,2,3,1],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[1,2,3,1],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[1,2,3,1],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[1,2,4,1],[2,2,2,1],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[2,2,2,1],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[2,2,2,1],[1,0,1,1]],[[1,2,2,2],[1,2,3,1],[2,2,2,1],[1,0,1,1]],[[1,2,3,1],[1,2,3,1],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[1,2,3,1],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[1,2,3,1],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[1,2,4,1],[2,2,2,1],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[2,2,2,1],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,2,2,1],[0,2,0,1]],[[1,2,2,2],[1,2,3,1],[2,2,2,1],[0,2,0,1]],[[1,2,3,1],[1,2,3,1],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[1,2,3,1],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[1,2,3,1],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[1,2,4,1],[2,2,2,1],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[2,2,2,1],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[2,2,2,1],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[2,2,2,1],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[2,2,2,0],[1,2,0,1]],[[1,2,2,2],[1,2,3,1],[2,2,2,0],[1,2,0,1]],[[1,2,3,1],[1,2,3,1],[2,2,2,0],[1,2,0,1]],[[1,3,2,1],[1,2,3,1],[2,2,2,0],[1,2,0,1]],[[2,2,2,1],[1,2,3,1],[2,2,2,0],[1,2,0,1]],[[1,2,2,1],[1,2,4,1],[2,2,2,0],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[2,2,2,0],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[2,2,2,0],[1,0,2,1]],[[1,2,2,2],[1,2,3,1],[2,2,2,0],[1,0,2,1]],[[1,2,3,1],[1,2,3,1],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[1,2,3,1],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[1,2,3,1],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[1,2,4,1],[2,2,2,0],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[2,2,2,0],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[2,2,2,0],[0,1,2,1]],[[1,2,2,2],[1,2,3,1],[2,2,2,0],[0,1,2,1]],[[1,2,3,1],[1,2,3,1],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[1,2,3,1],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[1,2,3,1],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[2,2,1,2],[1,2,0,0]],[[1,2,2,2],[1,2,3,1],[2,2,1,2],[1,2,0,0]],[[1,2,3,1],[1,2,3,1],[2,2,1,2],[1,2,0,0]],[[1,3,2,1],[1,2,3,1],[2,2,1,2],[1,2,0,0]],[[2,2,2,1],[1,2,3,1],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[1,2,4,1],[2,2,1,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,1],[2,2,1,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,1],[2,2,1,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,1],[2,2,1,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,1],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[1,2,4,1],[2,2,1,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,1],[2,2,1,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,1],[2,2,1,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,1],[2,2,1,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,1],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[1,2,4,1],[2,2,1,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[2,2,1,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[2,2,1,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[2,2,1,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[2,2,1,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,1],[2,2,1,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,1],[2,2,1,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,1],[2,2,1,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,1],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[1,2,4,1],[2,2,1,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[2,2,1,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,2,1,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[2,2,1,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,2,1,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,1],[2,2,1,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,1],[2,2,1,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,1],[2,2,1,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,1],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[1,2,4,1],[2,2,1,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[2,2,1,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[2,2,1,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[2,2,1,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[2,2,1,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[2,2,1,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[2,2,1,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[2,2,1,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[2,2,1,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[2,2,1,1],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[2,2,1,1],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[1,2,4,1],[2,2,1,1],[0,2,2,0]],[[1,2,2,2],[1,2,3,1],[2,2,1,1],[0,2,2,0]],[[1,2,3,1],[1,2,3,1],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[1,2,3,1],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[1,2,3,1],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[1,2,4,1],[2,2,1,0],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[2,2,1,0],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[2,2,1,0],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[2,2,1,0],[0,2,2,1]],[[1,2,3,1],[1,2,3,1],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[1,2,3,1],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[2,2,0,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[2,2,0,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[2,2,0,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[2,2,0,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[1,2,4,1],[2,2,0,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[2,2,0,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[2,2,0,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[2,2,0,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[2,2,0,2],[1,0,2,1]],[[1,2,2,2],[1,2,3,1],[2,2,0,2],[1,0,2,1]],[[1,2,3,1],[1,2,3,1],[2,2,0,2],[1,0,2,1]],[[1,3,2,1],[1,2,3,1],[2,2,0,2],[1,0,2,1]],[[2,2,2,1],[1,2,3,1],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[1,2,4,1],[2,2,0,2],[0,2,2,0]],[[1,2,2,2],[1,2,3,1],[2,2,0,2],[0,2,2,0]],[[1,2,3,1],[1,2,3,1],[2,2,0,2],[0,2,2,0]],[[1,3,2,1],[1,2,3,1],[2,2,0,2],[0,2,2,0]],[[2,2,2,1],[1,2,3,1],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[1,2,4,1],[2,2,0,2],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[2,2,0,2],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[2,2,0,2],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[2,2,0,2],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[2,2,0,2],[0,1,2,1]],[[1,2,2,2],[1,2,3,1],[2,2,0,2],[0,1,2,1]],[[1,2,3,1],[1,2,3,1],[2,2,0,2],[0,1,2,1]],[[1,3,2,1],[1,2,3,1],[2,2,0,2],[0,1,2,1]],[[2,2,2,1],[1,2,3,1],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[2,2,0,1],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[2,2,0,1],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[2,2,0,1],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[2,2,0,1],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[2,2,0,1],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[2,2,0,1],[0,2,2,1]],[[1,2,3,1],[1,2,3,1],[2,2,0,1],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[2,2,0,1],[0,2,2,1]],[[2,2,2,1],[1,2,3,1],[2,2,0,1],[0,2,2,1]],[[0,2,1,2],[2,3,3,2],[1,0,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,4,2],[1,0,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,3,3],[1,0,1,2],[0,2,2,1]],[[0,2,1,1],[2,3,3,2],[1,0,1,3],[0,2,2,1]],[[0,2,1,1],[2,3,3,2],[1,0,1,2],[0,2,3,1]],[[0,2,1,1],[2,3,3,2],[1,0,1,2],[0,2,2,2]],[[0,2,1,2],[2,3,3,2],[1,0,2,2],[0,2,1,1]],[[0,2,1,1],[2,3,4,2],[1,0,2,2],[0,2,1,1]],[[0,2,1,1],[2,3,3,3],[1,0,2,2],[0,2,1,1]],[[0,2,1,1],[2,3,3,2],[1,0,2,3],[0,2,1,1]],[[0,2,1,1],[2,3,3,2],[1,0,2,2],[0,2,1,2]],[[0,2,1,2],[2,3,3,2],[1,0,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,4,2],[1,0,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,3],[1,0,2,2],[0,2,2,0]],[[0,2,1,1],[2,3,3,2],[1,0,2,3],[0,2,2,0]],[[1,2,2,1],[1,2,4,1],[2,1,3,2],[1,0,0,1]],[[1,2,2,2],[1,2,3,1],[2,1,3,2],[1,0,0,1]],[[1,2,3,1],[1,2,3,1],[2,1,3,2],[1,0,0,1]],[[1,3,2,1],[1,2,3,1],[2,1,3,2],[1,0,0,1]],[[2,2,2,1],[1,2,3,1],[2,1,3,2],[1,0,0,1]],[[0,2,1,2],[2,3,3,2],[1,0,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,4,2],[1,0,3,0],[0,2,2,1]],[[0,2,1,1],[2,3,3,3],[1,0,3,0],[0,2,2,1]],[[0,3,1,1],[2,3,3,2],[1,0,3,0],[1,2,2,0]],[[0,2,1,1],[3,3,3,2],[1,0,3,0],[1,2,2,0]],[[0,2,1,1],[2,4,3,2],[1,0,3,0],[1,2,2,0]],[[0,2,1,1],[2,3,4,2],[1,0,3,0],[1,2,2,0]],[[0,2,1,2],[2,3,3,2],[1,0,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,4,2],[1,0,3,1],[0,2,1,1]],[[0,2,1,1],[2,3,3,3],[1,0,3,1],[0,2,1,1]],[[0,2,1,2],[2,3,3,2],[1,0,3,1],[0,2,2,0]],[[0,2,1,1],[2,3,4,2],[1,0,3,1],[0,2,2,0]],[[0,2,1,1],[2,3,3,3],[1,0,3,1],[0,2,2,0]],[[0,2,1,2],[2,3,3,2],[1,0,3,2],[0,0,2,1]],[[0,2,1,1],[2,3,4,2],[1,0,3,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,3],[1,0,3,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,2],[1,0,3,3],[0,0,2,1]],[[0,2,1,1],[2,3,3,2],[1,0,3,2],[0,0,2,2]],[[0,2,1,2],[2,3,3,2],[1,0,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,2],[1,0,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,3],[1,0,3,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,2],[1,0,3,3],[0,1,1,1]],[[0,2,1,1],[2,3,3,2],[1,0,3,2],[0,1,1,2]],[[0,2,1,2],[2,3,3,2],[1,0,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,2],[1,0,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,3],[1,0,3,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,2],[1,0,3,3],[0,1,2,0]],[[0,2,1,2],[2,3,3,2],[1,0,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,4,2],[1,0,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,3],[1,0,3,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,2],[1,0,3,3],[1,0,1,1]],[[0,2,1,1],[2,3,3,2],[1,0,3,2],[1,0,1,2]],[[0,2,1,2],[2,3,3,2],[1,0,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,4,2],[1,0,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,3],[1,0,3,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,2],[1,0,3,3],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[2,1,3,2],[0,1,0,1]],[[1,2,2,2],[1,2,3,1],[2,1,3,2],[0,1,0,1]],[[1,2,3,1],[1,2,3,1],[2,1,3,2],[0,1,0,1]],[[1,3,2,1],[1,2,3,1],[2,1,3,2],[0,1,0,1]],[[2,2,2,1],[1,2,3,1],[2,1,3,2],[0,1,0,1]],[[0,2,1,2],[2,3,3,2],[1,1,1,2],[0,1,2,1]],[[0,2,1,1],[2,3,4,2],[1,1,1,2],[0,1,2,1]],[[0,2,1,1],[2,3,3,3],[1,1,1,2],[0,1,2,1]],[[0,2,1,1],[2,3,3,2],[1,1,1,3],[0,1,2,1]],[[0,2,1,1],[2,3,3,2],[1,1,1,2],[0,1,2,2]],[[0,2,1,2],[2,3,3,2],[1,1,1,2],[1,0,2,1]],[[0,2,1,1],[2,3,4,2],[1,1,1,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,3],[1,1,1,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,2],[1,1,1,3],[1,0,2,1]],[[0,2,1,1],[2,3,3,2],[1,1,1,2],[1,0,2,2]],[[0,2,1,2],[2,3,3,2],[1,1,2,2],[0,0,2,1]],[[0,2,1,1],[2,3,4,2],[1,1,2,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,3],[1,1,2,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,2],[1,1,2,3],[0,0,2,1]],[[0,2,1,1],[2,3,3,2],[1,1,2,2],[0,0,2,2]],[[0,2,1,2],[2,3,3,2],[1,1,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,2],[1,1,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,3],[1,1,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,2],[1,1,2,3],[0,1,1,1]],[[0,2,1,1],[2,3,3,2],[1,1,2,2],[0,1,1,2]],[[0,2,1,2],[2,3,3,2],[1,1,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,2],[1,1,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,3],[1,1,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,2],[1,1,2,3],[0,1,2,0]],[[0,2,1,2],[2,3,3,2],[1,1,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,2],[1,1,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,3],[1,1,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,2],[1,1,2,3],[0,2,0,1]],[[0,2,1,2],[2,3,3,2],[1,1,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,2],[1,1,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,3],[1,1,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,3,1],[2,1,4,1],[1,1,1,0]],[[1,2,2,1],[1,2,4,1],[2,1,3,1],[1,1,1,0]],[[1,2,2,2],[1,2,3,1],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[1,2,3,1],[2,1,3,1],[1,1,1,0]],[[1,3,2,1],[1,2,3,1],[2,1,3,1],[1,1,1,0]],[[2,2,2,1],[1,2,3,1],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[1,2,3,1],[2,1,4,1],[1,1,0,1]],[[1,2,2,1],[1,2,4,1],[2,1,3,1],[1,1,0,1]],[[1,2,2,2],[1,2,3,1],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[1,2,3,1],[2,1,3,1],[1,1,0,1]],[[0,2,1,2],[2,3,3,2],[1,1,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,4,2],[1,1,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,3],[1,1,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,2],[1,1,2,3],[1,0,1,1]],[[0,2,1,1],[2,3,3,2],[1,1,2,2],[1,0,1,2]],[[0,2,1,2],[2,3,3,2],[1,1,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,4,2],[1,1,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,3],[1,1,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,2],[1,1,2,3],[1,0,2,0]],[[0,2,1,2],[2,3,3,2],[1,1,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,2],[1,1,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,3],[1,1,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,2],[1,1,2,3],[1,1,0,1]],[[0,2,1,2],[2,3,3,2],[1,1,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,4,2],[1,1,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,3],[1,1,2,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,1],[2,1,3,1],[1,1,0,1]],[[2,2,2,1],[1,2,3,1],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[1,2,3,1],[2,1,3,1],[1,0,3,0]],[[1,2,2,1],[1,2,3,1],[2,1,4,1],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[2,1,3,1],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[2,1,3,1],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[2,1,3,1],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[1,2,3,1],[2,1,4,1],[1,0,1,1]],[[1,2,2,1],[1,2,4,1],[2,1,3,1],[1,0,1,1]],[[1,2,2,2],[1,2,3,1],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[1,2,3,1],[2,1,3,1],[1,0,1,1]],[[1,3,2,1],[1,2,3,1],[2,1,3,1],[1,0,1,1]],[[2,2,2,1],[1,2,3,1],[2,1,3,1],[1,0,1,1]],[[0,2,1,2],[2,3,3,2],[1,1,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,4,2],[1,1,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,3,3],[1,1,3,0],[0,1,2,1]],[[0,3,1,1],[2,3,3,2],[1,1,3,0],[0,2,2,0]],[[0,2,1,1],[3,3,3,2],[1,1,3,0],[0,2,2,0]],[[0,2,1,1],[2,4,3,2],[1,1,3,0],[0,2,2,0]],[[0,2,1,1],[2,3,4,2],[1,1,3,0],[0,2,2,0]],[[0,2,1,2],[2,3,3,2],[1,1,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,4,2],[1,1,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,3,3],[1,1,3,0],[1,0,2,1]],[[1,2,2,1],[1,2,3,1],[2,1,4,1],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,1,3,1],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,1,3,1],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[2,1,3,1],[0,2,1,0]],[[0,2,1,2],[2,3,3,2],[1,1,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,4,2],[1,1,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,3,3],[1,1,3,1],[0,0,2,1]],[[0,2,1,2],[2,3,3,2],[1,1,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,4,2],[1,1,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,3,3],[1,1,3,1],[0,1,1,1]],[[0,2,1,2],[2,3,3,2],[1,1,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,4,2],[1,1,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,3,3],[1,1,3,1],[0,1,2,0]],[[0,2,1,2],[2,3,3,2],[1,1,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,4,2],[1,1,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,3,3],[1,1,3,1],[0,2,0,1]],[[0,2,1,2],[2,3,3,2],[1,1,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,4,2],[1,1,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,3,3],[1,1,3,1],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[1,2,3,1],[2,1,4,1],[0,2,0,1]],[[1,2,2,1],[1,2,4,1],[2,1,3,1],[0,2,0,1]],[[1,2,2,2],[1,2,3,1],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[1,2,3,1],[2,1,3,1],[0,2,0,1]],[[1,3,2,1],[1,2,3,1],[2,1,3,1],[0,2,0,1]],[[2,2,2,1],[1,2,3,1],[2,1,3,1],[0,2,0,1]],[[0,2,1,2],[2,3,3,2],[1,1,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,4,2],[1,1,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,3,3],[1,1,3,1],[1,0,1,1]],[[0,2,1,2],[2,3,3,2],[1,1,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,4,2],[1,1,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,3,3],[1,1,3,1],[1,0,2,0]],[[0,2,1,2],[2,3,3,2],[1,1,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,4,2],[1,1,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,3,3],[1,1,3,1],[1,1,0,1]],[[0,2,1,2],[2,3,3,2],[1,1,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,4,2],[1,1,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,3,3],[1,1,3,1],[1,1,1,0]],[[1,2,2,1],[1,2,3,1],[2,1,3,1],[0,1,3,0]],[[1,2,2,1],[1,2,3,1],[2,1,4,1],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[2,1,3,1],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[2,1,3,1],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[2,1,3,1],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[1,2,3,1],[2,1,4,1],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[2,1,3,1],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[2,1,3,1],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[2,1,3,1],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[2,1,3,1],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[1,2,3,1],[2,1,4,1],[0,0,2,1]],[[1,2,2,1],[1,2,4,1],[2,1,3,1],[0,0,2,1]],[[1,2,2,2],[1,2,3,1],[2,1,3,1],[0,0,2,1]],[[1,2,3,1],[1,2,3,1],[2,1,3,1],[0,0,2,1]],[[1,3,2,1],[1,2,3,1],[2,1,3,1],[0,0,2,1]],[[2,2,2,1],[1,2,3,1],[2,1,3,1],[0,0,2,1]],[[0,2,1,2],[2,3,3,2],[1,1,3,2],[0,1,0,1]],[[0,2,1,1],[2,3,4,2],[1,1,3,2],[0,1,0,1]],[[0,2,1,1],[2,3,3,3],[1,1,3,2],[0,1,0,1]],[[0,2,1,1],[2,3,3,2],[1,1,3,3],[0,1,0,1]],[[1,2,2,1],[1,2,4,1],[2,1,3,0],[1,2,1,0]],[[1,2,2,2],[1,2,3,1],[2,1,3,0],[1,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,1,3,0],[1,2,1,0]],[[1,3,2,1],[1,2,3,1],[2,1,3,0],[1,2,1,0]],[[2,2,2,1],[1,2,3,1],[2,1,3,0],[1,2,1,0]],[[1,2,2,1],[1,2,3,1],[2,1,4,0],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[2,1,3,0],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[2,1,3,0],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[2,1,3,0],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[2,1,3,0],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[1,2,3,1],[2,1,3,0],[1,0,2,2]],[[1,2,2,1],[1,2,3,1],[2,1,3,0],[1,0,3,1]],[[1,2,2,1],[1,2,3,1],[2,1,4,0],[1,0,2,1]],[[1,2,2,1],[1,2,4,1],[2,1,3,0],[1,0,2,1]],[[1,2,2,2],[1,2,3,1],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[1,2,3,1],[2,1,3,0],[1,0,2,1]],[[1,3,2,1],[1,2,3,1],[2,1,3,0],[1,0,2,1]],[[2,2,2,1],[1,2,3,1],[2,1,3,0],[1,0,2,1]],[[0,2,1,2],[2,3,3,2],[1,1,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,4,2],[1,1,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,3,3],[1,1,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,3,2],[1,1,3,3],[1,0,0,1]],[[1,2,2,1],[1,2,3,1],[2,1,4,0],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[2,1,3,0],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[2,1,3,0],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[2,1,3,0],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[2,1,3,0],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[1,2,3,1],[2,1,3,0],[0,1,2,2]],[[1,2,2,1],[1,2,3,1],[2,1,3,0],[0,1,3,1]],[[1,2,2,1],[1,2,3,1],[2,1,4,0],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[2,1,3,0],[0,1,2,1]],[[1,2,2,2],[1,2,3,1],[2,1,3,0],[0,1,2,1]],[[1,2,3,1],[1,2,3,1],[2,1,3,0],[0,1,2,1]],[[1,3,2,1],[1,2,3,1],[2,1,3,0],[0,1,2,1]],[[2,2,2,1],[1,2,3,1],[2,1,3,0],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[2,1,2,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,1],[2,1,2,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,1],[2,1,2,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,1],[2,1,2,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,1],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[1,2,4,1],[2,1,2,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,1],[2,1,2,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,1],[2,1,2,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,1],[2,1,2,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,1],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[1,2,4,1],[2,1,2,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[2,1,2,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[2,1,2,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[2,1,2,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[2,1,2,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,1],[2,1,2,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,1],[2,1,2,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,1],[2,1,2,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,1],[2,1,2,2],[1,0,1,1]],[[1,2,2,1],[1,2,4,1],[2,1,2,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[2,1,2,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,1,2,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[2,1,2,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,1,2,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,1],[2,1,2,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,1],[2,1,2,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,1],[2,1,2,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,1],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[1,2,4,1],[2,1,2,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[2,1,2,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[2,1,2,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[2,1,2,2],[0,1,2,0]],[[0,2,1,2],[2,3,3,2],[1,2,2,2],[0,0,1,1]],[[0,2,1,1],[2,3,4,2],[1,2,2,2],[0,0,1,1]],[[0,2,1,1],[2,3,3,3],[1,2,2,2],[0,0,1,1]],[[0,2,1,1],[2,3,3,2],[1,2,2,3],[0,0,1,1]],[[0,2,1,2],[2,3,3,2],[1,2,2,2],[0,0,2,0]],[[0,2,1,1],[2,3,4,2],[1,2,2,2],[0,0,2,0]],[[0,2,1,1],[2,3,3,3],[1,2,2,2],[0,0,2,0]],[[2,2,2,1],[1,2,3,1],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[2,1,2,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[2,1,2,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[2,1,2,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[2,1,2,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[2,1,2,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,1],[2,1,2,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,1],[2,1,2,2],[0,0,2,1]],[[1,3,2,1],[1,2,3,1],[2,1,2,2],[0,0,2,1]],[[2,2,2,1],[1,2,3,1],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[1,2,4,1],[2,1,2,1],[1,2,1,0]],[[1,2,2,2],[1,2,3,1],[2,1,2,1],[1,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[1,2,3,1],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[1,2,3,1],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,1,2,1],[1,2,0,1]],[[1,2,2,2],[1,2,3,1],[2,1,2,1],[1,2,0,1]],[[1,2,3,1],[1,2,3,1],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[1,2,3,1],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[1,2,3,1],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[1,2,4,1],[2,1,2,0],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[2,1,2,0],[1,2,1,1]],[[1,2,3,1],[1,2,3,1],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[2,1,2,0],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[2,1,1,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,1],[2,1,1,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,1,1,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,1],[2,1,1,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,1],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,1,1,2],[1,2,0,1]],[[1,2,2,2],[1,2,3,1],[2,1,1,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,1],[2,1,1,2],[1,2,0,1]],[[1,3,2,1],[1,2,3,1],[2,1,1,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,1],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[1,2,4,1],[2,1,1,2],[1,0,2,1]],[[1,2,2,2],[1,2,3,1],[2,1,1,2],[1,0,2,1]],[[1,2,3,1],[1,2,3,1],[2,1,1,2],[1,0,2,1]],[[1,3,2,1],[1,2,3,1],[2,1,1,2],[1,0,2,1]],[[2,2,2,1],[1,2,3,1],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[1,2,4,1],[2,1,1,2],[0,1,2,1]],[[1,2,2,2],[1,2,3,1],[2,1,1,2],[0,1,2,1]],[[1,2,3,1],[1,2,3,1],[2,1,1,2],[0,1,2,1]],[[1,3,2,1],[1,2,3,1],[2,1,1,2],[0,1,2,1]],[[2,2,2,1],[1,2,3,1],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[2,1,1,1],[1,2,2,0]],[[1,2,2,2],[1,2,3,1],[2,1,1,1],[1,2,2,0]],[[1,2,3,1],[1,2,3,1],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[1,2,3,1],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[1,2,3,1],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[1,2,4,1],[2,1,1,0],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[2,1,1,0],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[2,1,0,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,1],[2,1,0,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,1],[2,1,0,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,1],[2,1,0,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,1],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[1,2,4,1],[2,1,0,2],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[2,1,0,2],[1,2,1,1]],[[0,3,1,1],[2,3,3,2],[1,2,3,0],[0,1,1,1]],[[0,2,1,1],[3,3,3,2],[1,2,3,0],[0,1,1,1]],[[0,2,1,1],[2,4,3,2],[1,2,3,0],[0,1,1,1]],[[0,2,1,1],[2,3,4,2],[1,2,3,0],[0,1,1,1]],[[0,3,1,1],[2,3,3,2],[1,2,3,0],[0,1,2,0]],[[0,2,1,1],[3,3,3,2],[1,2,3,0],[0,1,2,0]],[[0,2,1,1],[2,4,3,2],[1,2,3,0],[0,1,2,0]],[[0,2,1,1],[2,3,4,2],[1,2,3,0],[0,1,2,0]],[[0,3,1,1],[2,3,3,2],[1,2,3,0],[0,2,0,1]],[[0,2,1,1],[3,3,3,2],[1,2,3,0],[0,2,0,1]],[[0,2,1,1],[2,4,3,2],[1,2,3,0],[0,2,0,1]],[[0,2,1,1],[2,3,4,2],[1,2,3,0],[0,2,0,1]],[[0,3,1,1],[2,3,3,2],[1,2,3,0],[0,2,1,0]],[[0,2,1,1],[3,3,3,2],[1,2,3,0],[0,2,1,0]],[[0,2,1,1],[2,4,3,2],[1,2,3,0],[0,2,1,0]],[[0,2,1,1],[2,3,4,2],[1,2,3,0],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,1,0,2],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[2,1,0,2],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[2,1,0,2],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[2,1,0,2],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[2,1,0,2],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[2,1,0,2],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[2,1,0,2],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[2,1,0,2],[0,2,2,1]],[[0,3,1,1],[2,3,3,2],[1,2,3,0],[1,0,1,1]],[[0,2,1,1],[3,3,3,2],[1,2,3,0],[1,0,1,1]],[[0,2,1,1],[2,4,3,2],[1,2,3,0],[1,0,1,1]],[[0,2,1,1],[2,3,4,2],[1,2,3,0],[1,0,1,1]],[[0,3,1,1],[2,3,3,2],[1,2,3,0],[1,0,2,0]],[[0,2,1,1],[3,3,3,2],[1,2,3,0],[1,0,2,0]],[[0,2,1,1],[2,4,3,2],[1,2,3,0],[1,0,2,0]],[[0,2,1,1],[2,3,4,2],[1,2,3,0],[1,0,2,0]],[[0,3,1,1],[2,3,3,2],[1,2,3,0],[1,1,0,1]],[[0,2,1,1],[3,3,3,2],[1,2,3,0],[1,1,0,1]],[[0,2,1,1],[2,4,3,2],[1,2,3,0],[1,1,0,1]],[[0,2,1,1],[2,3,4,2],[1,2,3,0],[1,1,0,1]],[[0,3,1,1],[2,3,3,2],[1,2,3,0],[1,1,1,0]],[[0,2,1,1],[3,3,3,2],[1,2,3,0],[1,1,1,0]],[[0,2,1,1],[2,4,3,2],[1,2,3,0],[1,1,1,0]],[[0,2,1,1],[2,3,4,2],[1,2,3,0],[1,1,1,0]],[[1,2,3,1],[1,2,3,1],[2,1,0,2],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[2,1,0,2],[0,2,2,1]],[[2,2,2,1],[1,2,3,1],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[2,1,0,1],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[2,1,0,1],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[2,1,0,1],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[2,1,0,1],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[2,1,0,1],[1,2,2,1]],[[0,2,1,2],[2,3,3,2],[1,2,3,1],[0,0,1,1]],[[0,2,1,1],[2,3,4,2],[1,2,3,1],[0,0,1,1]],[[0,2,1,1],[2,3,3,3],[1,2,3,1],[0,0,1,1]],[[0,2,1,2],[2,3,3,2],[1,2,3,1],[0,0,2,0]],[[0,2,1,1],[2,3,4,2],[1,2,3,1],[0,0,2,0]],[[0,2,1,1],[2,3,3,3],[1,2,3,1],[0,0,2,0]],[[1,2,2,1],[1,2,4,1],[2,0,3,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[2,0,3,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[2,0,3,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[2,0,3,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[2,0,3,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,1],[2,0,3,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,1],[2,0,3,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,1],[2,0,3,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,1],[2,0,3,2],[1,0,1,1]],[[1,2,2,1],[1,2,4,1],[2,0,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[2,0,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[2,0,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[2,0,3,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[2,0,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[2,0,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[2,0,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[2,0,3,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[2,0,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,1],[2,0,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,1],[2,0,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,3,1],[2,0,3,2],[0,0,2,1]],[[2,2,2,1],[1,2,3,1],[2,0,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,3,1],[2,0,4,1],[1,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,0,3,1],[1,2,1,0]],[[1,2,2,2],[1,2,3,1],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,0,3,1],[1,2,1,0]],[[1,3,2,1],[1,2,3,1],[2,0,3,1],[1,2,1,0]],[[2,2,2,1],[1,2,3,1],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[1,2,3,1],[2,0,4,1],[1,2,0,1]],[[1,2,2,1],[1,2,4,1],[2,0,3,1],[1,2,0,1]],[[1,2,2,2],[1,2,3,1],[2,0,3,1],[1,2,0,1]],[[1,2,3,1],[1,2,3,1],[2,0,3,1],[1,2,0,1]],[[1,3,2,1],[1,2,3,1],[2,0,3,1],[1,2,0,1]],[[2,2,2,1],[1,2,3,1],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[1,2,3,1],[2,0,3,1],[1,1,3,0]],[[1,2,2,1],[1,2,3,1],[2,0,4,1],[1,1,2,0]],[[1,2,2,1],[1,2,4,1],[2,0,3,1],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[2,0,3,1],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[2,0,3,1],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[1,2,3,1],[2,0,4,1],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[2,0,3,1],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[2,0,3,1],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[2,0,3,1],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[2,0,3,1],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[2,0,3,1],[1,1,1,1]],[[0,2,1,2],[2,3,3,2],[1,2,3,2],[0,0,0,1]],[[0,2,1,1],[2,3,4,2],[1,2,3,2],[0,0,0,1]],[[0,2,1,1],[2,3,3,3],[1,2,3,2],[0,0,0,1]],[[0,2,1,1],[2,3,3,2],[1,2,3,3],[0,0,0,1]],[[1,2,2,1],[1,2,3,1],[2,0,3,1],[0,2,3,0]],[[1,2,2,1],[1,2,3,1],[2,0,3,1],[0,3,2,0]],[[1,2,2,1],[1,2,3,1],[2,0,4,1],[0,2,2,0]],[[1,2,2,1],[1,2,4,1],[2,0,3,1],[0,2,2,0]],[[1,2,2,2],[1,2,3,1],[2,0,3,1],[0,2,2,0]],[[1,2,3,1],[1,2,3,1],[2,0,3,1],[0,2,2,0]],[[1,3,2,1],[1,2,3,1],[2,0,3,1],[0,2,2,0]],[[2,2,2,1],[1,2,3,1],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[1,2,3,1],[2,0,4,1],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[2,0,3,1],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[2,0,3,1],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[2,0,3,1],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[2,0,3,1],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[1,2,3,1],[2,0,4,0],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[2,0,3,0],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[2,0,3,0],[1,2,1,1]],[[1,2,3,1],[1,2,3,1],[2,0,3,0],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[2,0,3,0],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[1,2,3,1],[2,0,3,0],[1,1,2,2]],[[1,2,2,1],[1,2,3,1],[2,0,3,0],[1,1,3,1]],[[1,2,2,1],[1,2,3,1],[2,0,4,0],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[2,0,3,0],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[2,0,3,0],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[2,0,3,0],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[1,2,3,1],[2,0,3,0],[0,2,2,2]],[[1,2,2,1],[1,2,3,1],[2,0,3,0],[0,2,3,1]],[[1,2,2,1],[1,2,3,1],[2,0,3,0],[0,3,2,1]],[[1,2,2,1],[1,2,3,1],[2,0,4,0],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[2,0,3,0],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[1,2,3,1],[2,0,3,0],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[2,0,3,0],[0,2,2,1]],[[2,2,2,1],[1,2,3,1],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[2,0,2,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,1],[2,0,2,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,1],[2,0,2,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,1],[2,0,2,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,1],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[1,2,4,1],[2,0,2,2],[1,2,0,1]],[[1,2,2,2],[1,2,3,1],[2,0,2,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,1],[2,0,2,2],[1,2,0,1]],[[1,3,2,1],[1,2,3,1],[2,0,2,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,1],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[1,2,4,1],[2,0,2,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[2,0,2,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[2,0,2,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[2,0,2,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[1,2,4,1],[2,0,2,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[2,0,2,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[2,0,2,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[2,0,2,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[2,0,2,2],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[2,0,2,2],[0,2,2,0]],[[1,2,2,2],[1,2,3,1],[2,0,2,2],[0,2,2,0]],[[1,2,3,1],[1,2,3,1],[2,0,2,2],[0,2,2,0]],[[1,3,2,1],[1,2,3,1],[2,0,2,2],[0,2,2,0]],[[2,2,2,1],[1,2,3,1],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[1,2,4,1],[2,0,2,2],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[2,0,2,2],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[2,0,2,2],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[2,0,2,2],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[2,0,2,1],[1,2,2,0]],[[1,2,2,2],[1,2,3,1],[2,0,2,1],[1,2,2,0]],[[1,2,3,1],[1,2,3,1],[2,0,2,1],[1,2,2,0]],[[1,3,2,1],[1,2,3,1],[2,0,2,1],[1,2,2,0]],[[2,2,2,1],[1,2,3,1],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[1,2,4,1],[2,0,2,0],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[2,0,2,0],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[2,0,2,0],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[2,0,2,0],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[2,0,2,0],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[2,0,1,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,1],[2,0,1,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,1],[2,0,1,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,1],[2,0,1,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,1],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[1,2,4,1],[2,0,1,2],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[2,0,1,2],[1,2,1,1]],[[1,2,3,1],[1,2,3,1],[2,0,1,2],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[2,0,1,2],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[2,0,1,2],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[2,0,1,2],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[2,0,1,2],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[2,0,1,2],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[2,0,1,2],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[2,0,1,2],[0,2,2,1]],[[1,2,3,1],[1,2,3,1],[2,0,1,2],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[2,0,1,2],[0,2,2,1]],[[2,2,2,1],[1,2,3,1],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[2,0,1,1],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[2,0,1,1],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[2,0,1,1],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[2,0,1,1],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[2,0,1,1],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[1,2,3,1],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[1,2,3,1],[1,3,3,2],[0,0,0,1]],[[1,3,2,1],[1,2,3,1],[1,3,3,2],[0,0,0,1]],[[2,2,2,1],[1,2,3,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[1,2,4,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,2],[1,2,3,1],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[1,2,3,1],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[1,2,3,1],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[1,2,3,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[1,2,4,1],[1,3,3,1],[0,2,0,0]],[[1,2,2,2],[1,2,3,1],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[1,2,3,1],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[1,2,3,1],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[1,2,3,1],[1,3,3,1],[0,2,0,0]],[[0,3,1,1],[2,3,3,2],[1,3,1,0],[0,2,2,0]],[[0,2,1,1],[3,3,3,2],[1,3,1,0],[0,2,2,0]],[[0,2,1,1],[2,4,3,2],[1,3,1,0],[0,2,2,0]],[[0,2,1,1],[2,3,4,2],[1,3,1,0],[0,2,2,0]],[[0,2,1,1],[2,3,3,2],[1,4,1,0],[0,2,2,0]],[[0,2,1,1],[2,3,3,2],[1,3,1,0],[0,3,2,0]],[[0,3,1,1],[2,3,3,2],[1,3,1,0],[1,1,2,0]],[[0,2,1,1],[3,3,3,2],[1,3,1,0],[1,1,2,0]],[[0,2,1,1],[2,4,3,2],[1,3,1,0],[1,1,2,0]],[[0,2,1,1],[2,3,4,2],[1,3,1,0],[1,1,2,0]],[[0,2,1,1],[2,3,3,2],[1,4,1,0],[1,1,2,0]],[[1,2,2,1],[1,2,3,1],[1,3,4,1],[0,0,2,0]],[[1,2,2,1],[1,2,4,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,3,1],[0,0,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[1,2,3,1],[1,3,4,1],[0,0,1,1]],[[1,2,2,1],[1,2,4,1],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[1,2,3,1],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[1,2,3,1],[1,3,3,1],[0,0,1,1]],[[1,3,2,1],[1,2,3,1],[1,3,3,1],[0,0,1,1]],[[2,2,2,1],[1,2,3,1],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[1,2,4,1],[1,3,3,0],[1,2,0,0]],[[1,2,2,2],[1,2,3,1],[1,3,3,0],[1,2,0,0]],[[1,2,3,1],[1,2,3,1],[1,3,3,0],[1,2,0,0]],[[1,3,2,1],[1,2,3,1],[1,3,3,0],[1,2,0,0]],[[2,2,2,1],[1,2,3,1],[1,3,3,0],[1,2,0,0]],[[1,2,2,1],[1,2,4,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,2],[1,2,3,1],[1,3,3,0],[1,1,1,0]],[[1,2,3,1],[1,2,3,1],[1,3,3,0],[1,1,1,0]],[[1,3,2,1],[1,2,3,1],[1,3,3,0],[1,1,1,0]],[[2,2,2,1],[1,2,3,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[1,2,4,1],[1,3,3,0],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,3,0],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,3,0],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,3,0],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,3,0],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[1,3,3,0],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[1,3,3,0],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[1,3,3,0],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[1,3,3,0],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[1,3,3,0],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[1,3,3,0],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,3,0],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,3,0],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,3,0],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,3,0],[0,1,2,0]],[[1,2,2,1],[1,2,3,1],[1,3,4,0],[0,0,2,1]],[[1,2,2,1],[1,2,4,1],[1,3,3,0],[0,0,2,1]],[[1,2,2,2],[1,2,3,1],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[1,2,3,1],[1,3,3,0],[0,0,2,1]],[[1,3,2,1],[1,2,3,1],[1,3,3,0],[0,0,2,1]],[[2,2,2,1],[1,2,3,1],[1,3,3,0],[0,0,2,1]],[[1,2,2,1],[1,2,4,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,2,2],[0,0,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,2,2],[0,0,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[1,2,4,1],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[1,2,3,1],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[1,2,3,1],[1,3,2,2],[0,0,1,1]],[[1,3,2,1],[1,2,3,1],[1,3,2,2],[0,0,1,1]],[[2,2,2,1],[1,2,3,1],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[1,2,4,1],[1,3,2,1],[1,2,0,0]],[[1,2,2,2],[1,2,3,1],[1,3,2,1],[1,2,0,0]],[[1,2,3,1],[1,2,3,1],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[1,2,3,1],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[1,2,3,1],[1,3,2,1],[1,2,0,0]],[[0,3,1,1],[2,3,3,2],[1,3,2,0],[0,1,1,1]],[[0,2,1,1],[3,3,3,2],[1,3,2,0],[0,1,1,1]],[[0,2,1,1],[2,4,3,2],[1,3,2,0],[0,1,1,1]],[[0,2,1,1],[2,3,4,2],[1,3,2,0],[0,1,1,1]],[[0,3,1,1],[2,3,3,2],[1,3,2,0],[0,1,2,0]],[[0,2,1,1],[3,3,3,2],[1,3,2,0],[0,1,2,0]],[[0,2,1,1],[2,4,3,2],[1,3,2,0],[0,1,2,0]],[[0,2,1,1],[2,3,4,2],[1,3,2,0],[0,1,2,0]],[[0,2,1,1],[2,3,3,2],[1,4,2,0],[0,1,2,0]],[[0,3,1,1],[2,3,3,2],[1,3,2,0],[0,2,0,1]],[[0,2,1,1],[3,3,3,2],[1,3,2,0],[0,2,0,1]],[[0,2,1,1],[2,4,3,2],[1,3,2,0],[0,2,0,1]],[[0,2,1,1],[2,3,4,2],[1,3,2,0],[0,2,0,1]],[[0,2,1,1],[2,3,3,2],[1,4,2,0],[0,2,0,1]],[[0,3,1,1],[2,3,3,2],[1,3,2,0],[0,2,1,0]],[[0,2,1,1],[3,3,3,2],[1,3,2,0],[0,2,1,0]],[[0,2,1,1],[2,4,3,2],[1,3,2,0],[0,2,1,0]],[[0,2,1,1],[2,3,4,2],[1,3,2,0],[0,2,1,0]],[[0,2,1,1],[2,3,3,2],[1,4,2,0],[0,2,1,0]],[[0,2,1,1],[2,3,3,2],[1,3,2,0],[0,3,1,0]],[[1,2,2,1],[1,2,4,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,2],[1,2,3,1],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[1,2,3,1],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[1,2,3,1],[1,3,2,1],[1,1,1,0]],[[0,3,1,1],[2,3,3,2],[1,3,2,0],[1,0,1,1]],[[0,2,1,1],[3,3,3,2],[1,3,2,0],[1,0,1,1]],[[0,2,1,1],[2,4,3,2],[1,3,2,0],[1,0,1,1]],[[0,2,1,1],[2,3,4,2],[1,3,2,0],[1,0,1,1]],[[0,3,1,1],[2,3,3,2],[1,3,2,0],[1,0,2,0]],[[0,2,1,1],[3,3,3,2],[1,3,2,0],[1,0,2,0]],[[0,2,1,1],[2,4,3,2],[1,3,2,0],[1,0,2,0]],[[0,2,1,1],[2,3,4,2],[1,3,2,0],[1,0,2,0]],[[0,2,1,1],[2,3,3,2],[1,4,2,0],[1,0,2,0]],[[0,3,1,1],[2,3,3,2],[1,3,2,0],[1,1,0,1]],[[0,2,1,1],[3,3,3,2],[1,3,2,0],[1,1,0,1]],[[0,2,1,1],[2,4,3,2],[1,3,2,0],[1,1,0,1]],[[0,2,1,1],[2,3,4,2],[1,3,2,0],[1,1,0,1]],[[0,2,1,1],[2,3,3,2],[1,4,2,0],[1,1,0,1]],[[0,3,1,1],[2,3,3,2],[1,3,2,0],[1,1,1,0]],[[0,2,1,1],[3,3,3,2],[1,3,2,0],[1,1,1,0]],[[0,2,1,1],[2,4,3,2],[1,3,2,0],[1,1,1,0]],[[0,2,1,1],[2,3,4,2],[1,3,2,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,2],[1,4,2,0],[1,1,1,0]],[[2,2,2,1],[1,2,3,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[1,2,4,1],[1,3,2,1],[1,1,0,1]],[[1,2,2,2],[1,2,3,1],[1,3,2,1],[1,1,0,1]],[[1,2,3,1],[1,2,3,1],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[1,2,3,1],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[1,2,3,1],[1,3,2,1],[1,1,0,1]],[[0,3,1,1],[2,3,3,2],[1,3,2,0],[1,2,0,0]],[[0,2,1,1],[3,3,3,2],[1,3,2,0],[1,2,0,0]],[[0,2,1,1],[2,4,3,2],[1,3,2,0],[1,2,0,0]],[[0,2,1,1],[2,3,4,2],[1,3,2,0],[1,2,0,0]],[[0,2,1,1],[2,3,3,2],[1,4,2,0],[1,2,0,0]],[[1,2,2,1],[1,2,4,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,2,1],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[1,3,2,1],[1,0,1,1]],[[1,2,2,2],[1,2,3,1],[1,3,2,1],[1,0,1,1]],[[1,2,3,1],[1,2,3,1],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[1,2,3,1],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[1,2,3,1],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[1,2,4,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[1,3,2,1],[0,2,0,1]],[[1,2,2,2],[1,2,3,1],[1,3,2,1],[0,2,0,1]],[[1,2,3,1],[1,2,3,1],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[1,2,3,1],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[1,2,3,1],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[1,2,4,1],[1,3,2,1],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,2,1],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[1,3,2,1],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[1,3,2,1],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[1,3,2,0],[1,2,0,1]],[[1,2,2,2],[1,2,3,1],[1,3,2,0],[1,2,0,1]],[[1,2,3,1],[1,2,3,1],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[1,2,3,1],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[1,2,3,1],[1,3,2,0],[1,2,0,1]],[[1,2,2,1],[1,2,4,1],[1,3,2,0],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[1,3,2,0],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[1,3,2,0],[1,0,2,1]],[[1,2,2,2],[1,2,3,1],[1,3,2,0],[1,0,2,1]],[[1,2,3,1],[1,2,3,1],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[1,2,3,1],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[1,2,3,1],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[1,2,4,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[1,3,2,0],[0,1,2,1]],[[1,2,2,2],[1,2,3,1],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[1,2,3,1],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[1,2,3,1],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[1,2,3,1],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[1,3,1,2],[1,2,0,0]],[[1,2,2,2],[1,2,3,1],[1,3,1,2],[1,2,0,0]],[[1,2,3,1],[1,2,3,1],[1,3,1,2],[1,2,0,0]],[[1,3,2,1],[1,2,3,1],[1,3,1,2],[1,2,0,0]],[[2,2,2,1],[1,2,3,1],[1,3,1,2],[1,2,0,0]],[[1,2,2,1],[1,2,4,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,1],[1,3,1,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,1],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,1],[1,3,1,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[1,2,4,1],[1,3,1,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,1],[1,3,1,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,1],[1,3,1,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,1],[1,3,1,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,1],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[1,2,4,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,1,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,1,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,1,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[1,3,1,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,1],[1,3,1,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,1],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,1],[1,3,1,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,1],[1,3,1,2],[1,0,1,1]],[[1,2,2,1],[1,2,4,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[1,3,1,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[1,3,1,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[1,3,1,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,1],[1,3,1,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,1],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,1],[1,3,1,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,1],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[1,2,4,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,1,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,1,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[1,3,1,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[1,3,1,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[1,3,1,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[1,3,1,1],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,1,1],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,1,1],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,1,1],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[1,2,4,1],[1,3,1,1],[0,2,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[1,2,4,1],[1,3,1,0],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[1,3,1,0],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[1,3,1,0],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[1,2,3,1],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[1,3,1,0],[0,2,2,1]],[[2,2,2,1],[1,2,3,1],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[1,3,0,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,0,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,0,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,0,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[1,2,4,1],[1,3,0,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[1,3,0,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[1,3,0,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[1,3,0,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[1,3,0,2],[1,0,2,1]],[[1,2,2,2],[1,2,3,1],[1,3,0,2],[1,0,2,1]],[[1,2,3,1],[1,2,3,1],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[1,2,3,1],[1,3,0,2],[1,0,2,1]],[[2,2,2,1],[1,2,3,1],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[1,2,4,1],[1,3,0,2],[0,2,2,0]],[[1,2,2,2],[1,2,3,1],[1,3,0,2],[0,2,2,0]],[[1,2,3,1],[1,2,3,1],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[1,2,3,1],[1,3,0,2],[0,2,2,0]],[[2,2,2,1],[1,2,3,1],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[1,2,4,1],[1,3,0,2],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[1,3,0,2],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[1,3,0,2],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[1,3,0,2],[0,1,2,1]],[[1,2,2,2],[1,2,3,1],[1,3,0,2],[0,1,2,1]],[[1,2,3,1],[1,2,3,1],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[1,2,3,1],[1,3,0,2],[0,1,2,1]],[[2,2,2,1],[1,2,3,1],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[1,3,0,1],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[1,3,0,1],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[1,3,0,1],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[1,3,0,1],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[1,3,0,1],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[1,3,0,1],[0,2,2,1]],[[1,2,3,1],[1,2,3,1],[1,3,0,1],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[1,3,0,1],[0,2,2,1]],[[2,2,2,1],[1,2,3,1],[1,3,0,1],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[1,2,3,1],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[1,2,3,1],[1,2,3,2],[1,0,0,1]],[[1,3,2,1],[1,2,3,1],[1,2,3,2],[1,0,0,1]],[[2,2,2,1],[1,2,3,1],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[1,2,4,1],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[1,2,3,1],[1,2,3,2],[0,1,0,1]],[[0,3,1,1],[2,3,3,2],[1,3,3,0],[0,0,1,1]],[[0,2,1,1],[3,3,3,2],[1,3,3,0],[0,0,1,1]],[[0,2,1,1],[2,4,3,2],[1,3,3,0],[0,0,1,1]],[[0,2,1,1],[2,3,4,2],[1,3,3,0],[0,0,1,1]],[[0,3,1,1],[2,3,3,2],[1,3,3,0],[0,0,2,0]],[[0,2,1,1],[3,3,3,2],[1,3,3,0],[0,0,2,0]],[[0,2,1,1],[2,4,3,2],[1,3,3,0],[0,0,2,0]],[[0,2,1,1],[2,3,4,2],[1,3,3,0],[0,0,2,0]],[[1,2,3,1],[1,2,3,1],[1,2,3,2],[0,1,0,1]],[[1,3,2,1],[1,2,3,1],[1,2,3,2],[0,1,0,1]],[[2,2,2,1],[1,2,3,1],[1,2,3,2],[0,1,0,1]],[[0,3,1,1],[2,3,3,2],[1,3,3,0],[0,2,0,0]],[[0,2,1,1],[3,3,3,2],[1,3,3,0],[0,2,0,0]],[[0,2,1,1],[2,4,3,2],[1,3,3,0],[0,2,0,0]],[[0,2,1,1],[2,3,4,2],[1,3,3,0],[0,2,0,0]],[[0,2,1,1],[2,3,3,2],[1,4,3,0],[0,2,0,0]],[[1,2,2,1],[1,2,3,1],[1,2,4,1],[1,1,1,0]],[[1,2,2,1],[1,2,4,1],[1,2,3,1],[1,1,1,0]],[[1,2,2,2],[1,2,3,1],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[1,2,3,1],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[1,2,3,1],[1,2,3,1],[1,1,1,0]],[[2,2,2,1],[1,2,3,1],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[1,2,3,1],[1,2,4,1],[1,1,0,1]],[[1,2,2,1],[1,2,4,1],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[1,2,3,1],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[1,2,3,1],[1,2,3,1],[1,1,0,1]],[[0,3,1,1],[2,3,3,2],[1,3,3,0],[1,1,0,0]],[[0,2,1,1],[3,3,3,2],[1,3,3,0],[1,1,0,0]],[[0,2,1,1],[2,4,3,2],[1,3,3,0],[1,1,0,0]],[[0,2,1,1],[2,3,4,2],[1,3,3,0],[1,1,0,0]],[[0,2,1,1],[2,3,3,2],[1,4,3,0],[1,1,0,0]],[[1,3,2,1],[1,2,3,1],[1,2,3,1],[1,1,0,1]],[[2,2,2,1],[1,2,3,1],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[1,2,3,1],[1,2,3,1],[1,0,3,0]],[[1,2,2,1],[1,2,3,1],[1,2,4,1],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[1,2,3,1],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[1,2,3,1],[1,2,4,1],[1,0,1,1]],[[1,2,2,1],[1,2,4,1],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[1,2,3,1],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[1,2,3,1],[1,2,3,1],[1,0,1,1]],[[1,3,2,1],[1,2,3,1],[1,2,3,1],[1,0,1,1]],[[2,2,2,1],[1,2,3,1],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[1,2,3,1],[1,2,4,1],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[1,2,3,1],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[1,2,3,1],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[1,2,3,1],[1,2,4,1],[0,2,0,1]],[[1,2,2,1],[1,2,4,1],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[1,2,3,1],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[1,2,3,1],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[1,2,3,1],[1,2,3,1],[0,2,0,1]],[[2,2,2,1],[1,2,3,1],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[1,2,3,1],[1,2,3,1],[0,1,3,0]],[[1,2,2,1],[1,2,3,1],[1,2,4,1],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[1,2,3,1],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[1,2,3,1],[1,2,4,1],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[1,2,3,1],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[1,2,3,1],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[1,2,3,1],[1,2,4,1],[0,0,2,1]],[[1,2,2,1],[1,2,4,1],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[1,2,3,1],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[1,2,3,1],[1,2,3,1],[0,0,2,1]],[[1,3,2,1],[1,2,3,1],[1,2,3,1],[0,0,2,1]],[[2,2,2,1],[1,2,3,1],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[1,2,3,1],[1,2,4,0],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[1,2,3,0],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[1,2,3,0],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[1,2,3,0],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[1,2,3,1],[1,2,3,0],[1,0,2,2]],[[1,2,2,1],[1,2,3,1],[1,2,3,0],[1,0,3,1]],[[1,2,2,1],[1,2,3,1],[1,2,4,0],[1,0,2,1]],[[1,2,2,1],[1,2,4,1],[1,2,3,0],[1,0,2,1]],[[1,2,2,2],[1,2,3,1],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[1,2,3,1],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[1,2,3,1],[1,2,3,0],[1,0,2,1]],[[2,2,2,1],[1,2,3,1],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[1,2,3,1],[1,2,4,0],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[1,2,3,0],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[1,2,3,0],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[1,2,3,0],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[1,2,3,1],[1,2,3,0],[0,1,2,2]],[[1,2,2,1],[1,2,3,1],[1,2,3,0],[0,1,3,1]],[[1,2,2,1],[1,2,3,1],[1,2,4,0],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[1,2,3,1],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[1,2,3,1],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[1,2,3,1],[1,2,3,0],[0,1,2,1]],[[2,2,2,1],[1,2,3,1],[1,2,3,0],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,1],[1,2,2,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,1],[1,2,2,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,1],[1,2,2,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,2,4,1],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,1],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,1],[1,2,2,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,1],[1,2,2,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,1],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[1,2,4,1],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[1,2,2,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[1,2,2,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,1],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,1],[1,2,2,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,1],[1,2,2,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,1],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[1,2,4,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[1,2,2,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[1,2,2,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,1],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,1],[1,2,2,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,1],[1,2,2,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,1],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[1,2,4,1],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[1,2,2,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[1,2,2,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[1,2,2,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[1,2,2,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,1],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,1],[1,2,2,2],[0,0,2,1]],[[1,3,2,1],[1,2,3,1],[1,2,2,2],[0,0,2,1]],[[2,2,2,1],[1,2,3,1],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[1,2,4,1],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[1,2,3,1],[1,2,1,2],[1,0,2,1]],[[1,2,3,1],[1,2,3,1],[1,2,1,2],[1,0,2,1]],[[1,3,2,1],[1,2,3,1],[1,2,1,2],[1,0,2,1]],[[2,2,2,1],[1,2,3,1],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[1,2,4,1],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[1,2,3,1],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[1,2,3,1],[1,2,1,2],[0,1,2,1]],[[1,3,2,1],[1,2,3,1],[1,2,1,2],[0,1,2,1]],[[2,2,2,1],[1,2,3,1],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[1,2,0,2],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[1,2,0,2],[0,2,2,1]],[[1,2,3,1],[1,2,3,1],[1,2,0,2],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[1,2,0,2],[0,2,2,1]],[[2,2,2,1],[1,2,3,1],[1,2,0,2],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[1,1,3,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,1],[1,1,3,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,1],[1,1,3,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,1],[1,1,3,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,1],[1,1,3,2],[1,0,2,0]],[[1,2,2,1],[1,2,4,1],[1,1,3,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,1],[1,1,3,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,1],[1,1,3,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,1],[1,1,3,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,1],[1,1,3,2],[1,0,1,1]],[[1,2,2,1],[1,2,4,1],[1,1,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[1,1,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[1,1,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[1,1,3,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[1,1,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[1,1,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[1,1,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[1,1,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[1,1,3,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[1,1,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[1,1,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,1],[1,1,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,1],[1,1,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,3,1],[1,1,3,2],[0,0,2,1]],[[2,2,2,1],[1,2,3,1],[1,1,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,3,1],[1,1,3,1],[0,2,3,0]],[[1,2,2,1],[1,2,3,1],[1,1,3,1],[0,3,2,0]],[[1,2,2,1],[1,2,3,1],[1,1,4,1],[0,2,2,0]],[[1,2,2,1],[1,2,4,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[1,2,3,1],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[1,2,3,1],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[1,2,3,1],[1,1,3,1],[0,2,2,0]],[[2,2,2,1],[1,2,3,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[1,2,3,1],[1,1,4,1],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[1,1,3,1],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[1,1,3,1],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[1,2,3,1],[1,1,3,0],[0,2,2,2]],[[1,2,2,1],[1,2,3,1],[1,1,3,0],[0,2,3,1]],[[1,2,2,1],[1,2,3,1],[1,1,3,0],[0,3,2,1]],[[1,2,2,1],[1,2,3,1],[1,1,4,0],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[1,2,3,1],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[1,1,3,0],[0,2,2,1]],[[2,2,2,1],[1,2,3,1],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[1,2,3,1],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[1,2,3,1],[1,1,2,2],[0,2,2,0]],[[1,3,2,1],[1,2,3,1],[1,1,2,2],[0,2,2,0]],[[2,2,2,1],[1,2,3,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[1,2,4,1],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[1,1,2,2],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[1,1,2,2],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[1,2,3,1],[1,1,1,2],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[1,1,1,2],[0,2,2,1]],[[2,2,2,1],[1,2,3,1],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[1,1,0,2],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[1,1,0,2],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[1,1,0,2],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[1,1,0,2],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[1,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[1,0,3,2],[0,2,2,0]],[[1,2,2,2],[1,2,3,1],[1,0,3,2],[0,2,2,0]],[[1,2,3,1],[1,2,3,1],[1,0,3,2],[0,2,2,0]],[[1,3,2,1],[1,2,3,1],[1,0,3,2],[0,2,2,0]],[[2,2,2,1],[1,2,3,1],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[1,2,4,1],[1,0,3,2],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[1,0,3,2],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[1,0,3,2],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[1,0,3,2],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[1,0,3,2],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[1,0,3,2],[0,1,2,1]],[[1,2,2,2],[1,2,3,1],[1,0,3,2],[0,1,2,1]],[[1,2,3,1],[1,2,3,1],[1,0,3,2],[0,1,2,1]],[[1,3,2,1],[1,2,3,1],[1,0,3,2],[0,1,2,1]],[[2,2,2,1],[1,2,3,1],[1,0,3,2],[0,1,2,1]],[[1,2,2,1],[1,2,3,1],[1,0,3,1],[1,2,3,0]],[[1,2,2,1],[1,2,3,1],[1,0,3,1],[1,3,2,0]],[[1,2,2,1],[1,2,3,1],[1,0,3,1],[2,2,2,0]],[[1,2,2,1],[1,2,3,1],[1,0,4,1],[1,2,2,0]],[[1,2,2,1],[1,2,4,1],[1,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,2,3,1],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,2,3,1],[1,0,3,1],[1,2,2,0]],[[1,3,2,1],[1,2,3,1],[1,0,3,1],[1,2,2,0]],[[2,2,2,1],[1,2,3,1],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,2,3,1],[1,0,4,1],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[1,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[1,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,2,3,1],[1,0,3,1],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[1,0,3,1],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,2,3,1],[1,0,3,0],[1,2,2,2]],[[1,2,2,1],[1,2,3,1],[1,0,3,0],[1,2,3,1]],[[1,2,2,1],[1,2,3,1],[1,0,3,0],[1,3,2,1]],[[1,2,2,1],[1,2,3,1],[1,0,3,0],[2,2,2,1]],[[1,2,2,1],[1,2,3,1],[1,0,4,0],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[1,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[1,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[1,0,3,0],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[1,0,3,0],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[1,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,1],[1,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,1],[1,0,2,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,1],[1,0,2,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,1],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,2,4,1],[1,0,2,2],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[1,0,2,2],[1,2,1,1]],[[1,2,3,1],[1,2,3,1],[1,0,2,2],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[1,0,2,2],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[1,0,2,2],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[1,0,2,2],[0,2,2,1]],[[1,2,3,1],[1,2,3,1],[1,0,2,2],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[1,0,2,2],[0,2,2,1]],[[2,2,2,1],[1,2,3,1],[1,0,2,2],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[1,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[1,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[1,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[1,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[1,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[0,3,3,2],[0,1,0,1]],[[0,2,1,2],[2,3,3,2],[2,0,1,2],[0,1,2,1]],[[0,2,1,1],[2,3,4,2],[2,0,1,2],[0,1,2,1]],[[0,2,1,1],[2,3,3,3],[2,0,1,2],[0,1,2,1]],[[0,2,1,1],[2,3,3,2],[2,0,1,3],[0,1,2,1]],[[0,2,1,1],[2,3,3,2],[2,0,1,2],[0,1,2,2]],[[0,2,1,2],[2,3,3,2],[2,0,1,2],[1,0,2,1]],[[0,2,1,1],[2,3,4,2],[2,0,1,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,3],[2,0,1,2],[1,0,2,1]],[[0,2,1,1],[2,3,3,2],[2,0,1,3],[1,0,2,1]],[[0,2,1,1],[2,3,3,2],[2,0,1,2],[1,0,2,2]],[[1,2,2,2],[1,2,3,1],[0,3,3,2],[0,1,0,1]],[[1,2,3,1],[1,2,3,1],[0,3,3,2],[0,1,0,1]],[[1,3,2,1],[1,2,3,1],[0,3,3,2],[0,1,0,1]],[[2,2,2,1],[1,2,3,1],[0,3,3,2],[0,1,0,1]],[[0,3,1,1],[2,3,3,2],[2,0,2,0],[1,2,2,0]],[[0,2,1,1],[3,3,3,2],[2,0,2,0],[1,2,2,0]],[[0,2,1,1],[2,4,3,2],[2,0,2,0],[1,2,2,0]],[[0,2,1,1],[2,3,4,2],[2,0,2,0],[1,2,2,0]],[[0,2,1,1],[2,3,3,2],[3,0,2,0],[1,2,2,0]],[[0,2,1,1],[2,3,3,2],[2,0,2,0],[2,2,2,0]],[[0,2,1,1],[2,3,3,2],[2,0,2,0],[1,3,2,0]],[[0,2,1,2],[2,3,3,2],[2,0,2,2],[0,0,2,1]],[[0,2,1,1],[2,3,4,2],[2,0,2,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,3],[2,0,2,2],[0,0,2,1]],[[0,2,1,1],[2,3,3,2],[2,0,2,3],[0,0,2,1]],[[0,2,1,1],[2,3,3,2],[2,0,2,2],[0,0,2,2]],[[0,2,1,2],[2,3,3,2],[2,0,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,4,2],[2,0,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,3],[2,0,2,2],[0,1,1,1]],[[0,2,1,1],[2,3,3,2],[2,0,2,3],[0,1,1,1]],[[0,2,1,1],[2,3,3,2],[2,0,2,2],[0,1,1,2]],[[0,2,1,2],[2,3,3,2],[2,0,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,4,2],[2,0,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,3],[2,0,2,2],[0,1,2,0]],[[0,2,1,1],[2,3,3,2],[2,0,2,3],[0,1,2,0]],[[0,2,1,2],[2,3,3,2],[2,0,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,4,2],[2,0,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,3],[2,0,2,2],[0,2,0,1]],[[0,2,1,1],[2,3,3,2],[2,0,2,3],[0,2,0,1]],[[0,2,1,2],[2,3,3,2],[2,0,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,4,2],[2,0,2,2],[0,2,1,0]],[[0,2,1,1],[2,3,3,3],[2,0,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[0,3,3,1],[1,2,0,0]],[[1,2,2,2],[1,2,3,1],[0,3,3,1],[1,2,0,0]],[[1,2,3,1],[1,2,3,1],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[1,2,3,1],[0,3,3,1],[1,2,0,0]],[[0,2,1,2],[2,3,3,2],[2,0,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,4,2],[2,0,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,3],[2,0,2,2],[1,0,1,1]],[[0,2,1,1],[2,3,3,2],[2,0,2,3],[1,0,1,1]],[[0,2,1,1],[2,3,3,2],[2,0,2,2],[1,0,1,2]],[[0,2,1,2],[2,3,3,2],[2,0,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,4,2],[2,0,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,3],[2,0,2,2],[1,0,2,0]],[[0,2,1,1],[2,3,3,2],[2,0,2,3],[1,0,2,0]],[[0,2,1,2],[2,3,3,2],[2,0,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,4,2],[2,0,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,3],[2,0,2,2],[1,1,0,1]],[[0,2,1,1],[2,3,3,2],[2,0,2,3],[1,1,0,1]],[[0,2,1,2],[2,3,3,2],[2,0,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,4,2],[2,0,2,2],[1,1,1,0]],[[0,2,1,1],[2,3,3,3],[2,0,2,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,1],[0,3,3,1],[1,2,0,0]],[[1,2,2,1],[1,2,3,1],[0,3,4,1],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[0,3,3,1],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[0,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[0,3,3,1],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[0,3,3,1],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,2,3,1],[0,3,4,1],[0,2,0,1]],[[1,2,2,1],[1,2,4,1],[0,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,2,3,1],[0,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,2,3,1],[0,3,3,1],[0,2,0,1]],[[0,2,1,2],[2,3,3,2],[2,0,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,4,2],[2,0,3,0],[0,1,2,1]],[[0,2,1,1],[2,3,3,3],[2,0,3,0],[0,1,2,1]],[[0,3,1,1],[2,3,3,2],[2,0,3,0],[0,2,2,0]],[[0,2,1,1],[3,3,3,2],[2,0,3,0],[0,2,2,0]],[[0,2,1,1],[2,4,3,2],[2,0,3,0],[0,2,2,0]],[[0,2,1,1],[2,3,4,2],[2,0,3,0],[0,2,2,0]],[[0,2,1,1],[2,3,3,2],[3,0,3,0],[0,2,2,0]],[[0,2,1,2],[2,3,3,2],[2,0,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,4,2],[2,0,3,0],[1,0,2,1]],[[0,2,1,1],[2,3,3,3],[2,0,3,0],[1,0,2,1]],[[0,3,1,1],[2,3,3,2],[2,0,3,0],[1,1,2,0]],[[0,2,1,1],[3,3,3,2],[2,0,3,0],[1,1,2,0]],[[0,2,1,1],[2,4,3,2],[2,0,3,0],[1,1,2,0]],[[0,2,1,1],[2,3,4,2],[2,0,3,0],[1,1,2,0]],[[0,2,1,1],[2,3,3,2],[3,0,3,0],[1,1,2,0]],[[0,2,1,1],[2,3,3,2],[2,0,3,0],[2,1,2,0]],[[0,3,1,1],[2,3,3,2],[2,0,3,0],[1,2,0,1]],[[0,2,1,1],[3,3,3,2],[2,0,3,0],[1,2,0,1]],[[0,2,1,1],[2,4,3,2],[2,0,3,0],[1,2,0,1]],[[0,2,1,1],[2,3,4,2],[2,0,3,0],[1,2,0,1]],[[0,2,1,1],[2,3,3,2],[3,0,3,0],[1,2,0,1]],[[0,2,1,1],[2,3,3,2],[2,0,3,0],[2,2,0,1]],[[0,3,1,1],[2,3,3,2],[2,0,3,0],[1,2,1,0]],[[0,2,1,1],[3,3,3,2],[2,0,3,0],[1,2,1,0]],[[0,2,1,1],[2,4,3,2],[2,0,3,0],[1,2,1,0]],[[0,2,1,1],[2,3,4,2],[2,0,3,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,2],[3,0,3,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,2],[2,0,3,0],[2,2,1,0]],[[0,2,1,1],[2,3,3,2],[2,0,3,0],[1,3,1,0]],[[1,3,2,1],[1,2,3,1],[0,3,3,1],[0,2,0,1]],[[2,2,2,1],[1,2,3,1],[0,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,2,3,1],[0,3,3,1],[0,1,3,0]],[[1,2,2,1],[1,2,3,1],[0,3,4,1],[0,1,2,0]],[[0,2,1,2],[2,3,3,2],[2,0,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,4,2],[2,0,3,1],[0,0,2,1]],[[0,2,1,1],[2,3,3,3],[2,0,3,1],[0,0,2,1]],[[0,2,1,2],[2,3,3,2],[2,0,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,4,2],[2,0,3,1],[0,1,1,1]],[[0,2,1,1],[2,3,3,3],[2,0,3,1],[0,1,1,1]],[[0,2,1,2],[2,3,3,2],[2,0,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,4,2],[2,0,3,1],[0,1,2,0]],[[0,2,1,1],[2,3,3,3],[2,0,3,1],[0,1,2,0]],[[0,2,1,2],[2,3,3,2],[2,0,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,4,2],[2,0,3,1],[0,2,0,1]],[[0,2,1,1],[2,3,3,3],[2,0,3,1],[0,2,0,1]],[[0,2,1,2],[2,3,3,2],[2,0,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,4,2],[2,0,3,1],[0,2,1,0]],[[0,2,1,1],[2,3,3,3],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[0,3,3,1],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[0,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[0,3,3,1],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[0,3,3,1],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,2,3,1],[0,3,4,1],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[0,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[0,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[0,3,3,1],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[0,3,3,1],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[0,3,3,1],[0,1,1,1]],[[0,2,1,2],[2,3,3,2],[2,0,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,4,2],[2,0,3,1],[1,0,1,1]],[[0,2,1,1],[2,3,3,3],[2,0,3,1],[1,0,1,1]],[[0,2,1,2],[2,3,3,2],[2,0,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,4,2],[2,0,3,1],[1,0,2,0]],[[0,2,1,1],[2,3,3,3],[2,0,3,1],[1,0,2,0]],[[0,2,1,2],[2,3,3,2],[2,0,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,4,2],[2,0,3,1],[1,1,0,1]],[[0,2,1,1],[2,3,3,3],[2,0,3,1],[1,1,0,1]],[[0,2,1,2],[2,3,3,2],[2,0,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,4,2],[2,0,3,1],[1,1,1,0]],[[0,2,1,1],[2,3,3,3],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[1,2,3,1],[0,3,4,1],[0,0,2,1]],[[1,2,2,1],[1,2,4,1],[0,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,2,3,1],[0,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,2,3,1],[0,3,3,1],[0,0,2,1]],[[1,3,2,1],[1,2,3,1],[0,3,3,1],[0,0,2,1]],[[2,2,2,1],[1,2,3,1],[0,3,3,1],[0,0,2,1]],[[1,2,2,1],[1,2,4,1],[0,3,3,0],[1,2,1,0]],[[1,2,2,2],[1,2,3,1],[0,3,3,0],[1,2,1,0]],[[1,2,3,1],[1,2,3,1],[0,3,3,0],[1,2,1,0]],[[1,3,2,1],[1,2,3,1],[0,3,3,0],[1,2,1,0]],[[2,2,2,1],[1,2,3,1],[0,3,3,0],[1,2,1,0]],[[1,2,2,1],[1,2,4,1],[0,3,3,0],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[0,3,3,0],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[0,3,3,0],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[0,3,3,0],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[0,3,3,0],[1,1,2,0]],[[0,2,1,2],[2,3,3,2],[2,0,3,2],[0,1,0,1]],[[0,2,1,1],[2,3,4,2],[2,0,3,2],[0,1,0,1]],[[0,2,1,1],[2,3,3,3],[2,0,3,2],[0,1,0,1]],[[0,2,1,1],[2,3,3,2],[2,0,3,3],[0,1,0,1]],[[1,2,2,1],[1,2,3,1],[0,3,4,0],[0,2,1,1]],[[1,2,2,1],[1,2,4,1],[0,3,3,0],[0,2,1,1]],[[1,2,2,2],[1,2,3,1],[0,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,2,3,1],[0,3,3,0],[0,2,1,1]],[[1,3,2,1],[1,2,3,1],[0,3,3,0],[0,2,1,1]],[[2,2,2,1],[1,2,3,1],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,2,3,1],[0,3,3,0],[0,1,2,2]],[[1,2,2,1],[1,2,3,1],[0,3,3,0],[0,1,3,1]],[[1,2,2,1],[1,2,3,1],[0,3,4,0],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[0,3,3,0],[0,1,2,1]],[[1,2,2,2],[1,2,3,1],[0,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,2,3,1],[0,3,3,0],[0,1,2,1]],[[1,3,2,1],[1,2,3,1],[0,3,3,0],[0,1,2,1]],[[2,2,2,1],[1,2,3,1],[0,3,3,0],[0,1,2,1]],[[0,2,1,2],[2,3,3,2],[2,0,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,4,2],[2,0,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,3,3],[2,0,3,2],[1,0,0,1]],[[0,2,1,1],[2,3,3,2],[2,0,3,3],[1,0,0,1]],[[1,2,2,1],[1,2,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[0,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,1],[0,3,2,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,1],[0,3,2,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,1],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,1],[0,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,1],[0,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,1],[0,3,2,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,1],[0,3,2,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,1],[0,3,2,2],[0,2,0,1]],[[1,2,2,1],[1,2,4,1],[0,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[0,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[0,3,2,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[0,3,2,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,1],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[0,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[0,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[0,3,2,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[0,3,2,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,1],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[0,3,2,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,1],[0,3,2,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,1],[0,3,2,2],[0,0,2,1]],[[1,3,2,1],[1,2,3,1],[0,3,2,2],[0,0,2,1]],[[2,2,2,1],[1,2,3,1],[0,3,2,2],[0,0,2,1]],[[1,2,2,1],[1,2,4,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,2],[1,2,3,1],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[1,2,3,1],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[1,2,3,1],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[1,2,3,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[1,2,4,1],[0,3,2,1],[1,2,0,1]],[[1,2,2,2],[1,2,3,1],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[1,2,3,1],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[1,2,3,1],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[1,2,3,1],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[1,2,4,1],[0,3,2,1],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[0,3,2,1],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[1,2,4,1],[0,3,2,1],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[0,3,2,1],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[0,3,2,0],[1,2,1,1]],[[1,2,3,1],[1,2,3,1],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[0,3,2,0],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[0,3,2,0],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[0,3,2,0],[1,1,2,1]],[[0,3,1,1],[2,3,3,2],[2,1,1,0],[1,2,2,0]],[[0,2,1,1],[3,3,3,2],[2,1,1,0],[1,2,2,0]],[[0,2,1,1],[2,4,3,2],[2,1,1,0],[1,2,2,0]],[[0,2,1,1],[2,3,4,2],[2,1,1,0],[1,2,2,0]],[[0,2,1,1],[2,3,3,2],[3,1,1,0],[1,2,2,0]],[[0,2,1,1],[2,3,3,2],[2,1,1,0],[2,2,2,0]],[[0,2,1,1],[2,3,3,2],[2,1,1,0],[1,3,2,0]],[[1,2,2,1],[1,2,4,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,1],[0,3,1,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,1],[0,3,1,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,1],[0,3,1,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[1,2,4,1],[0,3,1,2],[1,2,0,1]],[[1,2,2,2],[1,2,3,1],[0,3,1,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,1],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[1,2,3,1],[0,3,1,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,1],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[1,2,4,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[0,3,1,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[0,3,1,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[0,3,1,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[1,2,4,1],[0,3,1,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[0,3,1,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[0,3,1,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[0,3,1,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[0,3,1,2],[0,1,2,1]],[[1,2,2,2],[1,2,3,1],[0,3,1,2],[0,1,2,1]],[[1,2,3,1],[1,2,3,1],[0,3,1,2],[0,1,2,1]],[[1,3,2,1],[1,2,3,1],[0,3,1,2],[0,1,2,1]],[[2,2,2,1],[1,2,3,1],[0,3,1,2],[0,1,2,1]],[[1,2,2,1],[1,2,4,1],[0,3,1,1],[1,2,2,0]],[[1,2,2,2],[1,2,3,1],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[1,2,3,1],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[1,2,3,1],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[1,2,3,1],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[1,2,4,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[0,3,1,0],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[0,3,0,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,1],[0,3,0,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,1],[0,3,0,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,1],[0,3,0,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,1],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[1,2,4,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[0,3,0,2],[1,2,1,1]],[[0,3,1,1],[2,3,3,2],[2,1,2,0],[1,2,0,1]],[[0,2,1,1],[3,3,3,2],[2,1,2,0],[1,2,0,1]],[[0,2,1,1],[2,4,3,2],[2,1,2,0],[1,2,0,1]],[[0,2,1,1],[2,3,4,2],[2,1,2,0],[1,2,0,1]],[[0,2,1,1],[2,3,3,2],[3,1,2,0],[1,2,0,1]],[[0,2,1,1],[2,3,3,2],[2,1,2,0],[2,2,0,1]],[[0,3,1,1],[2,3,3,2],[2,1,2,0],[1,2,1,0]],[[0,2,1,1],[3,3,3,2],[2,1,2,0],[1,2,1,0]],[[0,2,1,1],[2,4,3,2],[2,1,2,0],[1,2,1,0]],[[0,2,1,1],[2,3,4,2],[2,1,2,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,2],[3,1,2,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,2],[2,1,2,0],[2,2,1,0]],[[0,2,1,1],[2,3,3,2],[2,1,2,0],[1,3,1,0]],[[1,2,3,1],[1,2,3,1],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[0,3,0,2],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[0,3,0,2],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[0,3,0,2],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[0,3,0,2],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[0,3,0,1],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[0,3,0,1],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[0,3,0,1],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[0,3,0,1],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,1],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,1],[0,2,3,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,1],[0,2,3,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,1],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,2,4,1],[0,2,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,1],[0,2,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,1],[0,2,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,1],[0,2,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,1],[0,2,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,1],[0,2,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,1],[0,2,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,1],[0,2,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,1],[0,2,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,1],[0,2,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,1],[0,2,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,3,1],[0,2,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,3,1],[0,2,4,1],[1,2,1,0]],[[1,2,2,1],[1,2,4,1],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[1,2,3,1],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[1,2,3,1],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[1,2,3,1],[0,2,3,1],[1,2,1,0]],[[2,2,2,1],[1,2,3,1],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[1,2,3,1],[0,2,4,1],[1,2,0,1]],[[1,2,2,1],[1,2,4,1],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[1,2,3,1],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[1,2,3,1],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[1,2,3,1],[0,2,3,1],[1,2,0,1]],[[2,2,2,1],[1,2,3,1],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[1,2,3,1],[0,2,3,1],[1,1,3,0]],[[1,2,2,1],[1,2,3,1],[0,2,4,1],[1,1,2,0]],[[1,2,2,1],[1,2,4,1],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[0,2,3,1],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[1,2,3,1],[0,2,4,1],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[0,2,3,1],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[1,2,3,1],[0,2,4,1],[1,0,2,1]],[[1,2,2,1],[1,2,4,1],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[1,2,3,1],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[1,2,3,1],[0,2,3,1],[1,0,2,1]],[[1,3,2,1],[1,2,3,1],[0,2,3,1],[1,0,2,1]],[[2,2,2,1],[1,2,3,1],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[1,2,3,1],[0,2,4,0],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[0,2,3,0],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[1,2,3,1],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[0,2,3,0],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[1,2,3,1],[0,2,3,0],[1,1,2,2]],[[1,2,2,1],[1,2,3,1],[0,2,3,0],[1,1,3,1]],[[1,2,2,1],[1,2,3,1],[0,2,4,0],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[0,2,3,0],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,1],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,1],[0,2,2,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,1],[0,2,2,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[1,2,4,1],[0,2,2,2],[1,2,0,1]],[[0,3,1,1],[2,3,3,2],[2,1,3,0],[0,1,1,1]],[[0,2,1,1],[3,3,3,2],[2,1,3,0],[0,1,1,1]],[[0,2,1,1],[2,4,3,2],[2,1,3,0],[0,1,1,1]],[[0,2,1,1],[2,3,4,2],[2,1,3,0],[0,1,1,1]],[[0,3,1,1],[2,3,3,2],[2,1,3,0],[0,1,2,0]],[[0,2,1,1],[3,3,3,2],[2,1,3,0],[0,1,2,0]],[[0,2,1,1],[2,4,3,2],[2,1,3,0],[0,1,2,0]],[[0,2,1,1],[2,3,4,2],[2,1,3,0],[0,1,2,0]],[[0,2,1,1],[2,3,3,2],[3,1,3,0],[0,1,2,0]],[[0,3,1,1],[2,3,3,2],[2,1,3,0],[0,2,0,1]],[[0,2,1,1],[3,3,3,2],[2,1,3,0],[0,2,0,1]],[[0,2,1,1],[2,4,3,2],[2,1,3,0],[0,2,0,1]],[[0,2,1,1],[2,3,4,2],[2,1,3,0],[0,2,0,1]],[[0,2,1,1],[2,3,3,2],[3,1,3,0],[0,2,0,1]],[[0,3,1,1],[2,3,3,2],[2,1,3,0],[0,2,1,0]],[[0,2,1,1],[3,3,3,2],[2,1,3,0],[0,2,1,0]],[[0,2,1,1],[2,4,3,2],[2,1,3,0],[0,2,1,0]],[[0,2,1,1],[2,3,4,2],[2,1,3,0],[0,2,1,0]],[[0,2,1,1],[2,3,3,2],[3,1,3,0],[0,2,1,0]],[[1,2,2,2],[1,2,3,1],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,1],[0,2,2,2],[1,2,0,1]],[[1,3,2,1],[1,2,3,1],[0,2,2,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,1],[0,2,2,2],[1,2,0,1]],[[0,3,1,1],[2,3,3,2],[2,1,3,0],[1,0,1,1]],[[0,2,1,1],[3,3,3,2],[2,1,3,0],[1,0,1,1]],[[0,2,1,1],[2,4,3,2],[2,1,3,0],[1,0,1,1]],[[0,2,1,1],[2,3,4,2],[2,1,3,0],[1,0,1,1]],[[0,2,1,1],[2,3,3,2],[3,1,3,0],[1,0,1,1]],[[0,3,1,1],[2,3,3,2],[2,1,3,0],[1,0,2,0]],[[0,2,1,1],[3,3,3,2],[2,1,3,0],[1,0,2,0]],[[0,2,1,1],[2,4,3,2],[2,1,3,0],[1,0,2,0]],[[0,2,1,1],[2,3,4,2],[2,1,3,0],[1,0,2,0]],[[0,2,1,1],[2,3,3,2],[3,1,3,0],[1,0,2,0]],[[0,2,1,1],[2,3,3,2],[2,1,3,0],[2,0,2,0]],[[0,3,1,1],[2,3,3,2],[2,1,3,0],[1,1,0,1]],[[0,2,1,1],[3,3,3,2],[2,1,3,0],[1,1,0,1]],[[0,2,1,1],[2,4,3,2],[2,1,3,0],[1,1,0,1]],[[0,2,1,1],[2,3,4,2],[2,1,3,0],[1,1,0,1]],[[0,2,1,1],[2,3,3,2],[3,1,3,0],[1,1,0,1]],[[0,2,1,1],[2,3,3,2],[2,1,3,0],[2,1,0,1]],[[0,3,1,1],[2,3,3,2],[2,1,3,0],[1,1,1,0]],[[0,2,1,1],[3,3,3,2],[2,1,3,0],[1,1,1,0]],[[0,2,1,1],[2,4,3,2],[2,1,3,0],[1,1,1,0]],[[0,2,1,1],[2,3,4,2],[2,1,3,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,2],[3,1,3,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,2],[2,1,3,0],[2,1,1,0]],[[1,2,2,1],[1,2,4,1],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[0,2,2,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[0,2,2,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[1,2,4,1],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[0,2,2,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[0,2,2,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[0,2,2,2],[1,0,2,1]],[[1,2,2,2],[1,2,3,1],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[1,2,3,1],[0,2,2,2],[1,0,2,1]],[[1,3,2,1],[1,2,3,1],[0,2,2,2],[1,0,2,1]],[[2,2,2,1],[1,2,3,1],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[1,2,4,1],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[0,2,1,2],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[0,2,1,2],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[0,2,0,2],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[0,2,0,2],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[0,2,0,2],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[0,2,0,2],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[0,2,0,2],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[0,1,3,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,1],[0,1,3,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,1],[0,1,3,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,1],[0,1,3,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,1],[0,1,3,2],[1,1,2,0]],[[1,2,2,1],[1,2,4,1],[0,1,3,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,1],[0,1,3,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,1],[0,1,3,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,1],[0,1,3,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,1],[0,1,3,2],[1,1,1,1]],[[1,2,2,1],[1,2,4,1],[0,1,3,2],[1,0,2,1]],[[1,2,2,2],[1,2,3,1],[0,1,3,2],[1,0,2,1]],[[1,2,3,1],[1,2,3,1],[0,1,3,2],[1,0,2,1]],[[1,3,2,1],[1,2,3,1],[0,1,3,2],[1,0,2,1]],[[2,2,2,1],[1,2,3,1],[0,1,3,2],[1,0,2,1]],[[1,2,2,1],[1,2,3,1],[0,1,3,1],[1,2,3,0]],[[1,2,2,1],[1,2,3,1],[0,1,3,1],[1,3,2,0]],[[1,2,2,1],[1,2,3,1],[0,1,3,1],[2,2,2,0]],[[1,2,2,1],[1,2,3,1],[0,1,4,1],[1,2,2,0]],[[1,2,2,1],[1,2,4,1],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[1,2,3,1],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[1,2,3,1],[0,1,3,1],[1,2,2,0]],[[1,3,2,1],[1,2,3,1],[0,1,3,1],[1,2,2,0]],[[2,2,2,1],[1,2,3,1],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[1,2,3,1],[0,1,4,1],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[1,2,3,1],[0,1,3,1],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[0,1,3,1],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[1,2,3,1],[0,1,3,0],[1,2,2,2]],[[1,2,2,1],[1,2,3,1],[0,1,3,0],[1,2,3,1]],[[1,2,2,1],[1,2,3,1],[0,1,3,0],[1,3,2,1]],[[1,2,2,1],[1,2,3,1],[0,1,3,0],[2,2,2,1]],[[1,2,2,1],[1,2,3,1],[0,1,4,0],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[0,1,3,0],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,1],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,1],[0,1,2,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,1],[0,1,2,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,1],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[1,2,4,1],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[1,2,3,1],[0,1,2,2],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[0,1,2,2],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[0,1,1,2],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[0,1,1,2],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[1,2,4,1],[0,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,1],[0,0,3,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,1],[0,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,1],[0,0,3,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,1],[0,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,2,4,1],[0,0,3,2],[1,2,1,1]],[[1,2,2,2],[1,2,3,1],[0,0,3,2],[1,2,1,1]],[[1,2,3,1],[1,2,3,1],[0,0,3,2],[1,2,1,1]],[[1,3,2,1],[1,2,3,1],[0,0,3,2],[1,2,1,1]],[[2,2,2,1],[1,2,3,1],[0,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,2,4,1],[0,0,3,2],[1,1,2,1]],[[1,2,2,2],[1,2,3,1],[0,0,3,2],[1,1,2,1]],[[1,2,3,1],[1,2,3,1],[0,0,3,2],[1,1,2,1]],[[1,3,2,1],[1,2,3,1],[0,0,3,2],[1,1,2,1]],[[2,2,2,1],[1,2,3,1],[0,0,3,2],[1,1,2,1]],[[1,2,2,1],[1,2,4,1],[0,0,3,2],[0,2,2,1]],[[1,2,2,2],[1,2,3,1],[0,0,3,2],[0,2,2,1]],[[1,2,3,1],[1,2,3,1],[0,0,3,2],[0,2,2,1]],[[1,3,2,1],[1,2,3,1],[0,0,3,2],[0,2,2,1]],[[1,2,2,1],[1,2,4,1],[0,0,2,2],[1,2,2,1]],[[1,2,2,2],[1,2,3,1],[0,0,2,2],[1,2,2,1]],[[1,2,3,1],[1,2,3,1],[0,0,2,2],[1,2,2,1]],[[1,3,2,1],[1,2,3,1],[0,0,2,2],[1,2,2,1]],[[2,2,2,1],[1,2,3,1],[0,0,2,2],[1,2,2,1]],[[1,2,2,1],[1,2,4,0],[2,3,3,2],[1,0,0,0]],[[1,2,2,2],[1,2,3,0],[2,3,3,2],[1,0,0,0]],[[1,2,3,1],[1,2,3,0],[2,3,3,2],[1,0,0,0]],[[1,3,2,1],[1,2,3,0],[2,3,3,2],[1,0,0,0]],[[2,2,2,1],[1,2,3,0],[2,3,3,2],[1,0,0,0]],[[1,2,2,1],[1,2,4,0],[2,3,2,2],[1,0,1,0]],[[1,2,2,2],[1,2,3,0],[2,3,2,2],[1,0,1,0]],[[1,2,3,1],[1,2,3,0],[2,3,2,2],[1,0,1,0]],[[1,3,2,1],[1,2,3,0],[2,3,2,2],[1,0,1,0]],[[2,2,2,1],[1,2,3,0],[2,3,2,2],[1,0,1,0]],[[1,2,2,1],[1,2,4,0],[2,3,2,2],[1,0,0,1]],[[1,2,2,2],[1,2,3,0],[2,3,2,2],[1,0,0,1]],[[1,2,3,1],[1,2,3,0],[2,3,2,2],[1,0,0,1]],[[1,3,2,1],[1,2,3,0],[2,3,2,2],[1,0,0,1]],[[2,2,2,1],[1,2,3,0],[2,3,2,2],[1,0,0,1]],[[1,2,2,1],[1,2,4,0],[2,2,3,2],[1,1,0,0]],[[1,2,2,2],[1,2,3,0],[2,2,3,2],[1,1,0,0]],[[1,2,3,1],[1,2,3,0],[2,2,3,2],[1,1,0,0]],[[1,3,2,1],[1,2,3,0],[2,2,3,2],[1,1,0,0]],[[2,2,2,1],[1,2,3,0],[2,2,3,2],[1,1,0,0]],[[1,2,2,1],[1,2,4,0],[2,2,3,2],[0,2,0,0]],[[1,2,2,2],[1,2,3,0],[2,2,3,2],[0,2,0,0]],[[1,2,3,1],[1,2,3,0],[2,2,3,2],[0,2,0,0]],[[1,3,2,1],[1,2,3,0],[2,2,3,2],[0,2,0,0]],[[2,2,2,1],[1,2,3,0],[2,2,3,2],[0,2,0,0]],[[0,3,1,1],[2,3,3,2],[2,2,0,0],[1,2,2,0]],[[0,2,1,1],[3,3,3,2],[2,2,0,0],[1,2,2,0]],[[0,2,1,1],[2,4,3,2],[2,2,0,0],[1,2,2,0]],[[0,2,1,1],[2,3,3,2],[3,2,0,0],[1,2,2,0]],[[0,2,1,1],[2,3,3,2],[2,2,0,0],[2,2,2,0]],[[0,2,1,1],[2,3,3,2],[2,2,0,0],[1,3,2,0]],[[1,2,2,1],[1,2,4,0],[2,2,2,2],[1,2,0,0]],[[1,2,2,2],[1,2,3,0],[2,2,2,2],[1,2,0,0]],[[1,2,3,1],[1,2,3,0],[2,2,2,2],[1,2,0,0]],[[1,3,2,1],[1,2,3,0],[2,2,2,2],[1,2,0,0]],[[2,2,2,1],[1,2,3,0],[2,2,2,2],[1,2,0,0]],[[1,2,2,1],[1,2,4,0],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,0],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,0],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,0],[2,2,2,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,0],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,2,4,0],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,0],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,0],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,0],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,0],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[1,2,4,0],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,0],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,0],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,0],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,0],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[1,2,4,0],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,0],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,0],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,0],[2,2,2,2],[1,0,1,1]],[[0,3,1,1],[2,3,3,2],[2,2,1,0],[0,2,2,0]],[[0,2,1,1],[3,3,3,2],[2,2,1,0],[0,2,2,0]],[[0,2,1,1],[2,4,3,2],[2,2,1,0],[0,2,2,0]],[[0,2,1,1],[2,3,4,2],[2,2,1,0],[0,2,2,0]],[[0,2,1,1],[2,3,3,2],[3,2,1,0],[0,2,2,0]],[[0,3,1,1],[2,3,3,2],[2,2,1,0],[1,1,2,0]],[[0,2,1,1],[3,3,3,2],[2,2,1,0],[1,1,2,0]],[[0,2,1,1],[2,4,3,2],[2,2,1,0],[1,1,2,0]],[[0,2,1,1],[2,3,4,2],[2,2,1,0],[1,1,2,0]],[[0,2,1,1],[2,3,3,2],[3,2,1,0],[1,1,2,0]],[[0,2,1,1],[2,3,3,2],[2,2,1,0],[2,1,2,0]],[[2,2,2,1],[1,2,3,0],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[1,2,4,0],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,0],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,0],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,0],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,0],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,0],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,0],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,0],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,0],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,0],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[1,2,4,0],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,0],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,0],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,0],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,0],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,0],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,0],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,0],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,0],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,0],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,0],[2,2,2,1],[1,1,1,1]],[[1,2,2,2],[1,2,3,0],[2,2,2,1],[1,1,1,1]],[[1,2,3,1],[1,2,3,0],[2,2,2,1],[1,1,1,1]],[[1,3,2,1],[1,2,3,0],[2,2,2,1],[1,1,1,1]],[[2,2,2,1],[1,2,3,0],[2,2,2,1],[1,1,1,1]],[[1,2,2,1],[1,2,4,0],[2,2,2,1],[1,0,2,1]],[[1,2,2,2],[1,2,3,0],[2,2,2,1],[1,0,2,1]],[[1,2,3,1],[1,2,3,0],[2,2,2,1],[1,0,2,1]],[[1,3,2,1],[1,2,3,0],[2,2,2,1],[1,0,2,1]],[[2,2,2,1],[1,2,3,0],[2,2,2,1],[1,0,2,1]],[[1,2,2,1],[1,2,4,0],[2,2,2,1],[0,2,1,1]],[[1,2,2,2],[1,2,3,0],[2,2,2,1],[0,2,1,1]],[[1,2,3,1],[1,2,3,0],[2,2,2,1],[0,2,1,1]],[[1,3,2,1],[1,2,3,0],[2,2,2,1],[0,2,1,1]],[[2,2,2,1],[1,2,3,0],[2,2,2,1],[0,2,1,1]],[[1,2,2,1],[1,2,4,0],[2,2,2,1],[0,1,2,1]],[[1,2,2,2],[1,2,3,0],[2,2,2,1],[0,1,2,1]],[[1,2,3,1],[1,2,3,0],[2,2,2,1],[0,1,2,1]],[[1,3,2,1],[1,2,3,0],[2,2,2,1],[0,1,2,1]],[[2,2,2,1],[1,2,3,0],[2,2,2,1],[0,1,2,1]],[[1,2,2,1],[1,2,4,0],[2,2,1,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,0],[2,2,1,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,0],[2,2,1,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,0],[2,2,1,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,0],[2,2,1,2],[1,1,2,0]],[[1,2,2,1],[1,2,4,0],[2,2,1,2],[0,2,2,0]],[[1,2,2,2],[1,2,3,0],[2,2,1,2],[0,2,2,0]],[[1,2,3,1],[1,2,3,0],[2,2,1,2],[0,2,2,0]],[[1,3,2,1],[1,2,3,0],[2,2,1,2],[0,2,2,0]],[[2,2,2,1],[1,2,3,0],[2,2,1,2],[0,2,2,0]],[[1,2,2,1],[1,2,4,0],[2,2,1,1],[1,1,2,1]],[[1,2,2,2],[1,2,3,0],[2,2,1,1],[1,1,2,1]],[[1,2,3,1],[1,2,3,0],[2,2,1,1],[1,1,2,1]],[[1,3,2,1],[1,2,3,0],[2,2,1,1],[1,1,2,1]],[[2,2,2,1],[1,2,3,0],[2,2,1,1],[1,1,2,1]],[[1,2,2,1],[1,2,4,0],[2,2,1,1],[0,2,2,1]],[[1,2,2,2],[1,2,3,0],[2,2,1,1],[0,2,2,1]],[[1,2,3,1],[1,2,3,0],[2,2,1,1],[0,2,2,1]],[[1,3,2,1],[1,2,3,0],[2,2,1,1],[0,2,2,1]],[[2,2,2,1],[1,2,3,0],[2,2,1,1],[0,2,2,1]],[[1,2,2,1],[1,2,4,0],[2,2,0,2],[1,1,2,1]],[[1,2,2,2],[1,2,3,0],[2,2,0,2],[1,1,2,1]],[[1,2,3,1],[1,2,3,0],[2,2,0,2],[1,1,2,1]],[[1,3,2,1],[1,2,3,0],[2,2,0,2],[1,1,2,1]],[[2,2,2,1],[1,2,3,0],[2,2,0,2],[1,1,2,1]],[[1,2,2,1],[1,2,4,0],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[1,2,3,0],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[1,2,3,0],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[1,2,3,0],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[1,2,3,0],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[1,2,3,0],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[1,2,3,0],[2,1,4,2],[1,1,1,0]],[[1,2,2,1],[1,2,4,0],[2,1,3,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,0],[2,1,3,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,0],[2,1,3,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,0],[2,1,3,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,0],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[1,2,3,0],[2,1,3,2],[1,1,0,2]],[[1,2,2,1],[1,2,3,0],[2,1,3,3],[1,1,0,1]],[[1,2,2,1],[1,2,3,0],[2,1,4,2],[1,1,0,1]],[[1,2,2,1],[1,2,4,0],[2,1,3,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,0],[2,1,3,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,0],[2,1,3,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,0],[2,1,3,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,0],[2,1,3,2],[1,1,0,1]],[[0,3,1,1],[2,3,3,2],[2,2,2,0],[0,1,1,1]],[[0,2,1,1],[3,3,3,2],[2,2,2,0],[0,1,1,1]],[[0,2,1,1],[2,4,3,2],[2,2,2,0],[0,1,1,1]],[[0,2,1,1],[2,3,4,2],[2,2,2,0],[0,1,1,1]],[[0,3,1,1],[2,3,3,2],[2,2,2,0],[0,1,2,0]],[[0,2,1,1],[3,3,3,2],[2,2,2,0],[0,1,2,0]],[[0,2,1,1],[2,4,3,2],[2,2,2,0],[0,1,2,0]],[[0,2,1,1],[2,3,4,2],[2,2,2,0],[0,1,2,0]],[[0,2,1,1],[2,3,3,2],[3,2,2,0],[0,1,2,0]],[[0,3,1,1],[2,3,3,2],[2,2,2,0],[0,2,0,1]],[[0,2,1,1],[3,3,3,2],[2,2,2,0],[0,2,0,1]],[[0,2,1,1],[2,4,3,2],[2,2,2,0],[0,2,0,1]],[[0,2,1,1],[2,3,4,2],[2,2,2,0],[0,2,0,1]],[[0,2,1,1],[2,3,3,2],[3,2,2,0],[0,2,0,1]],[[0,3,1,1],[2,3,3,2],[2,2,2,0],[0,2,1,0]],[[0,2,1,1],[3,3,3,2],[2,2,2,0],[0,2,1,0]],[[0,2,1,1],[2,4,3,2],[2,2,2,0],[0,2,1,0]],[[0,2,1,1],[2,3,4,2],[2,2,2,0],[0,2,1,0]],[[0,2,1,1],[2,3,3,2],[3,2,2,0],[0,2,1,0]],[[1,2,2,1],[1,2,3,0],[2,1,3,2],[1,0,3,0]],[[1,2,2,1],[1,2,3,0],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[1,2,3,0],[2,1,4,2],[1,0,2,0]],[[1,2,2,1],[1,2,4,0],[2,1,3,2],[1,0,2,0]],[[0,3,1,1],[2,3,3,2],[2,2,2,0],[1,0,1,1]],[[0,2,1,1],[3,3,3,2],[2,2,2,0],[1,0,1,1]],[[0,2,1,1],[2,4,3,2],[2,2,2,0],[1,0,1,1]],[[0,2,1,1],[2,3,4,2],[2,2,2,0],[1,0,1,1]],[[0,2,1,1],[2,3,3,2],[3,2,2,0],[1,0,1,1]],[[0,3,1,1],[2,3,3,2],[2,2,2,0],[1,0,2,0]],[[0,2,1,1],[3,3,3,2],[2,2,2,0],[1,0,2,0]],[[0,2,1,1],[2,4,3,2],[2,2,2,0],[1,0,2,0]],[[0,2,1,1],[2,3,4,2],[2,2,2,0],[1,0,2,0]],[[0,2,1,1],[2,3,3,2],[3,2,2,0],[1,0,2,0]],[[0,2,1,1],[2,3,3,2],[2,2,2,0],[2,0,2,0]],[[0,3,1,1],[2,3,3,2],[2,2,2,0],[1,1,0,1]],[[0,2,1,1],[3,3,3,2],[2,2,2,0],[1,1,0,1]],[[0,2,1,1],[2,4,3,2],[2,2,2,0],[1,1,0,1]],[[0,2,1,1],[2,3,4,2],[2,2,2,0],[1,1,0,1]],[[0,2,1,1],[2,3,3,2],[3,2,2,0],[1,1,0,1]],[[0,2,1,1],[2,3,3,2],[2,2,2,0],[2,1,0,1]],[[0,3,1,1],[2,3,3,2],[2,2,2,0],[1,1,1,0]],[[0,2,1,1],[3,3,3,2],[2,2,2,0],[1,1,1,0]],[[0,2,1,1],[2,4,3,2],[2,2,2,0],[1,1,1,0]],[[0,2,1,1],[2,3,4,2],[2,2,2,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,2],[3,2,2,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,2],[2,2,2,0],[2,1,1,0]],[[1,2,2,2],[1,2,3,0],[2,1,3,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,0],[2,1,3,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,0],[2,1,3,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,0],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[1,2,3,0],[2,1,3,2],[1,0,1,2]],[[1,2,2,1],[1,2,3,0],[2,1,3,3],[1,0,1,1]],[[1,2,2,1],[1,2,3,0],[2,1,4,2],[1,0,1,1]],[[1,2,2,1],[1,2,4,0],[2,1,3,2],[1,0,1,1]],[[0,3,1,1],[2,3,3,2],[2,2,2,0],[1,2,0,0]],[[0,2,1,1],[3,3,3,2],[2,2,2,0],[1,2,0,0]],[[0,2,1,1],[2,4,3,2],[2,2,2,0],[1,2,0,0]],[[0,2,1,1],[2,3,4,2],[2,2,2,0],[1,2,0,0]],[[0,2,1,1],[2,3,3,2],[3,2,2,0],[1,2,0,0]],[[0,2,1,1],[2,3,3,2],[2,2,2,0],[2,2,0,0]],[[1,2,2,2],[1,2,3,0],[2,1,3,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,0],[2,1,3,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,0],[2,1,3,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,0],[2,1,3,2],[1,0,1,1]],[[1,2,2,1],[1,2,3,0],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[1,2,3,0],[2,1,4,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,0],[2,1,3,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,0],[2,1,3,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,0],[2,1,3,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,0],[2,1,3,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,0],[2,1,3,2],[0,2,1,0]],[[1,2,2,1],[1,2,3,0],[2,1,3,2],[0,2,0,2]],[[1,2,2,1],[1,2,3,0],[2,1,3,3],[0,2,0,1]],[[1,2,2,1],[1,2,3,0],[2,1,4,2],[0,2,0,1]],[[1,2,2,1],[1,2,4,0],[2,1,3,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,0],[2,1,3,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,0],[2,1,3,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,0],[2,1,3,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,0],[2,1,3,2],[0,2,0,1]],[[1,2,2,1],[1,2,3,0],[2,1,3,2],[0,1,3,0]],[[1,2,2,1],[1,2,3,0],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[1,2,3,0],[2,1,4,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,0],[2,1,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,0],[2,1,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,0],[2,1,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,0],[2,1,3,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,0],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,3,0],[2,1,3,2],[0,1,1,2]],[[1,2,2,1],[1,2,3,0],[2,1,3,3],[0,1,1,1]],[[1,2,2,1],[1,2,3,0],[2,1,4,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,0],[2,1,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,0],[2,1,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,0],[2,1,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,0],[2,1,3,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,0],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,3,0],[2,1,3,2],[0,0,2,2]],[[1,2,2,1],[1,2,3,0],[2,1,3,3],[0,0,2,1]],[[1,2,2,1],[1,2,3,0],[2,1,4,2],[0,0,2,1]],[[1,2,2,1],[1,2,4,0],[2,1,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,0],[2,1,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,0],[2,1,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,3,0],[2,1,3,2],[0,0,2,1]],[[2,2,2,1],[1,2,3,0],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,3,0],[2,1,4,1],[1,1,1,1]],[[1,2,2,1],[1,2,4,0],[2,1,3,1],[1,1,1,1]],[[1,2,2,2],[1,2,3,0],[2,1,3,1],[1,1,1,1]],[[1,2,3,1],[1,2,3,0],[2,1,3,1],[1,1,1,1]],[[1,3,2,1],[1,2,3,0],[2,1,3,1],[1,1,1,1]],[[2,2,2,1],[1,2,3,0],[2,1,3,1],[1,1,1,1]],[[1,2,2,1],[1,2,3,0],[2,1,3,1],[1,0,2,2]],[[1,2,2,1],[1,2,3,0],[2,1,3,1],[1,0,3,1]],[[1,2,2,1],[1,2,3,0],[2,1,4,1],[1,0,2,1]],[[1,2,2,1],[1,2,4,0],[2,1,3,1],[1,0,2,1]],[[1,2,2,2],[1,2,3,0],[2,1,3,1],[1,0,2,1]],[[1,2,3,1],[1,2,3,0],[2,1,3,1],[1,0,2,1]],[[1,3,2,1],[1,2,3,0],[2,1,3,1],[1,0,2,1]],[[2,2,2,1],[1,2,3,0],[2,1,3,1],[1,0,2,1]],[[1,2,2,1],[1,2,3,0],[2,1,4,1],[0,2,1,1]],[[1,2,2,1],[1,2,4,0],[2,1,3,1],[0,2,1,1]],[[1,2,2,2],[1,2,3,0],[2,1,3,1],[0,2,1,1]],[[1,2,3,1],[1,2,3,0],[2,1,3,1],[0,2,1,1]],[[1,3,2,1],[1,2,3,0],[2,1,3,1],[0,2,1,1]],[[2,2,2,1],[1,2,3,0],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[1,2,3,0],[2,1,3,1],[0,1,2,2]],[[1,2,2,1],[1,2,3,0],[2,1,3,1],[0,1,3,1]],[[1,2,2,1],[1,2,3,0],[2,1,4,1],[0,1,2,1]],[[1,2,2,1],[1,2,4,0],[2,1,3,1],[0,1,2,1]],[[1,2,2,2],[1,2,3,0],[2,1,3,1],[0,1,2,1]],[[1,2,3,1],[1,2,3,0],[2,1,3,1],[0,1,2,1]],[[1,3,2,1],[1,2,3,0],[2,1,3,1],[0,1,2,1]],[[2,2,2,1],[1,2,3,0],[2,1,3,1],[0,1,2,1]],[[1,2,2,1],[1,2,4,0],[2,1,2,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,0],[2,1,2,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,0],[2,1,2,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,0],[2,1,2,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,0],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[1,2,4,0],[2,1,2,2],[1,2,0,1]],[[1,2,2,2],[1,2,3,0],[2,1,2,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,0],[2,1,2,2],[1,2,0,1]],[[1,3,2,1],[1,2,3,0],[2,1,2,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,0],[2,1,2,2],[1,2,0,1]],[[1,2,2,1],[1,2,3,0],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[1,2,3,0],[2,1,2,2],[1,0,3,1]],[[1,2,2,1],[1,2,3,0],[2,1,2,3],[1,0,2,1]],[[1,2,2,1],[1,2,3,0],[2,1,2,2],[0,1,2,2]],[[1,2,2,1],[1,2,3,0],[2,1,2,2],[0,1,3,1]],[[1,2,2,1],[1,2,3,0],[2,1,2,3],[0,1,2,1]],[[1,2,2,1],[1,2,4,0],[2,1,2,1],[1,2,1,1]],[[1,2,2,2],[1,2,3,0],[2,1,2,1],[1,2,1,1]],[[1,2,3,1],[1,2,3,0],[2,1,2,1],[1,2,1,1]],[[1,3,2,1],[1,2,3,0],[2,1,2,1],[1,2,1,1]],[[2,2,2,1],[1,2,3,0],[2,1,2,1],[1,2,1,1]],[[1,2,2,1],[1,2,4,0],[2,1,1,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,0],[2,1,1,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,0],[2,1,1,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,0],[2,1,1,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,0],[2,1,1,2],[1,2,2,0]],[[1,2,2,1],[1,2,4,0],[2,1,1,1],[1,2,2,1]],[[1,2,2,2],[1,2,3,0],[2,1,1,1],[1,2,2,1]],[[1,2,3,1],[1,2,3,0],[2,1,1,1],[1,2,2,1]],[[1,3,2,1],[1,2,3,0],[2,1,1,1],[1,2,2,1]],[[2,2,2,1],[1,2,3,0],[2,1,1,1],[1,2,2,1]],[[1,2,2,1],[1,2,4,0],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[1,2,3,0],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[1,2,3,0],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[1,2,3,0],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[1,2,3,0],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,2,3,0],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[1,2,3,0],[2,0,4,2],[1,2,1,0]],[[1,2,2,1],[1,2,4,0],[2,0,3,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,0],[2,0,3,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,0],[2,0,3,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,0],[2,0,3,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,0],[2,0,3,2],[1,2,1,0]],[[1,2,2,1],[1,2,3,0],[2,0,3,2],[1,2,0,2]],[[1,2,2,1],[1,2,3,0],[2,0,3,3],[1,2,0,1]],[[1,2,2,1],[1,2,3,0],[2,0,4,2],[1,2,0,1]],[[1,2,2,1],[1,2,4,0],[2,0,3,2],[1,2,0,1]],[[1,2,2,2],[1,2,3,0],[2,0,3,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,0],[2,0,3,2],[1,2,0,1]],[[1,3,2,1],[1,2,3,0],[2,0,3,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,0],[2,0,3,2],[1,2,0,1]],[[1,2,2,1],[1,2,3,0],[2,0,3,2],[1,1,3,0]],[[1,2,2,1],[1,2,3,0],[2,0,3,3],[1,1,2,0]],[[1,2,2,1],[1,2,3,0],[2,0,4,2],[1,1,2,0]],[[1,2,2,1],[1,2,4,0],[2,0,3,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,0],[2,0,3,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,0],[2,0,3,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,0],[2,0,3,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,0],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[1,2,3,0],[2,0,3,2],[1,1,1,2]],[[1,2,2,1],[1,2,3,0],[2,0,3,3],[1,1,1,1]],[[1,2,2,1],[1,2,3,0],[2,0,4,2],[1,1,1,1]],[[1,2,2,1],[1,2,4,0],[2,0,3,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,0],[2,0,3,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,0],[2,0,3,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,0],[2,0,3,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,0],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[1,2,3,0],[2,0,3,2],[0,2,3,0]],[[1,2,2,1],[1,2,3,0],[2,0,3,2],[0,3,2,0]],[[1,2,2,1],[1,2,3,0],[2,0,3,3],[0,2,2,0]],[[1,2,2,1],[1,2,3,0],[2,0,4,2],[0,2,2,0]],[[1,2,2,1],[1,2,4,0],[2,0,3,2],[0,2,2,0]],[[1,2,2,2],[1,2,3,0],[2,0,3,2],[0,2,2,0]],[[1,2,3,1],[1,2,3,0],[2,0,3,2],[0,2,2,0]],[[1,3,2,1],[1,2,3,0],[2,0,3,2],[0,2,2,0]],[[2,2,2,1],[1,2,3,0],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[1,2,3,0],[2,0,3,2],[0,2,1,2]],[[1,2,2,1],[1,2,3,0],[2,0,3,3],[0,2,1,1]],[[1,2,2,1],[1,2,3,0],[2,0,4,2],[0,2,1,1]],[[1,2,2,1],[1,2,4,0],[2,0,3,2],[0,2,1,1]],[[1,2,2,2],[1,2,3,0],[2,0,3,2],[0,2,1,1]],[[1,2,3,1],[1,2,3,0],[2,0,3,2],[0,2,1,1]],[[1,3,2,1],[1,2,3,0],[2,0,3,2],[0,2,1,1]],[[2,2,2,1],[1,2,3,0],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[1,2,3,0],[2,0,4,1],[1,2,1,1]],[[1,2,2,1],[1,2,4,0],[2,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,2,3,0],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,2,3,0],[2,0,3,1],[1,2,1,1]],[[1,3,2,1],[1,2,3,0],[2,0,3,1],[1,2,1,1]],[[2,2,2,1],[1,2,3,0],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,2,3,0],[2,0,3,1],[1,1,2,2]],[[1,2,2,1],[1,2,3,0],[2,0,3,1],[1,1,3,1]],[[1,2,2,1],[1,2,3,0],[2,0,4,1],[1,1,2,1]],[[1,2,2,1],[1,2,4,0],[2,0,3,1],[1,1,2,1]],[[1,2,2,2],[1,2,3,0],[2,0,3,1],[1,1,2,1]],[[1,2,3,1],[1,2,3,0],[2,0,3,1],[1,1,2,1]],[[1,3,2,1],[1,2,3,0],[2,0,3,1],[1,1,2,1]],[[2,2,2,1],[1,2,3,0],[2,0,3,1],[1,1,2,1]],[[1,2,2,1],[1,2,3,0],[2,0,3,1],[0,2,2,2]],[[1,2,2,1],[1,2,3,0],[2,0,3,1],[0,2,3,1]],[[1,2,2,1],[1,2,3,0],[2,0,3,1],[0,3,2,1]],[[1,2,2,1],[1,2,3,0],[2,0,4,1],[0,2,2,1]],[[1,2,2,1],[1,2,4,0],[2,0,3,1],[0,2,2,1]],[[1,2,2,2],[1,2,3,0],[2,0,3,1],[0,2,2,1]],[[1,2,3,1],[1,2,3,0],[2,0,3,1],[0,2,2,1]],[[1,3,2,1],[1,2,3,0],[2,0,3,1],[0,2,2,1]],[[2,2,2,1],[1,2,3,0],[2,0,3,1],[0,2,2,1]],[[1,2,2,1],[1,2,4,0],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,0],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,0],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,0],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,0],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,2,3,0],[2,0,2,2],[1,1,2,2]],[[1,2,2,1],[1,2,3,0],[2,0,2,2],[1,1,3,1]],[[1,2,2,1],[1,2,3,0],[2,0,2,3],[1,1,2,1]],[[1,2,2,1],[1,2,3,0],[2,0,2,2],[0,2,2,2]],[[1,2,2,1],[1,2,3,0],[2,0,2,2],[0,2,3,1]],[[1,2,2,1],[1,2,3,0],[2,0,2,2],[0,3,2,1]],[[1,2,2,1],[1,2,3,0],[2,0,2,3],[0,2,2,1]],[[1,2,2,1],[1,2,4,0],[2,0,2,1],[1,2,2,1]],[[1,2,2,2],[1,2,3,0],[2,0,2,1],[1,2,2,1]],[[1,2,3,1],[1,2,3,0],[2,0,2,1],[1,2,2,1]],[[1,3,2,1],[1,2,3,0],[2,0,2,1],[1,2,2,1]],[[2,2,2,1],[1,2,3,0],[2,0,2,1],[1,2,2,1]],[[1,2,2,1],[1,2,4,0],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,2,3,0],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,2,3,0],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,2,3,0],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,2,3,0],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,2,4,0],[1,3,3,2],[1,1,0,0]],[[1,2,2,2],[1,2,3,0],[1,3,3,2],[1,1,0,0]],[[1,2,3,1],[1,2,3,0],[1,3,3,2],[1,1,0,0]],[[1,3,2,1],[1,2,3,0],[1,3,3,2],[1,1,0,0]],[[2,2,2,1],[1,2,3,0],[1,3,3,2],[1,1,0,0]],[[0,3,1,1],[2,3,3,2],[2,2,3,0],[0,2,0,0]],[[0,2,1,1],[3,3,3,2],[2,2,3,0],[0,2,0,0]],[[0,2,1,1],[2,4,3,2],[2,2,3,0],[0,2,0,0]],[[0,2,1,1],[2,3,4,2],[2,2,3,0],[0,2,0,0]],[[0,2,1,1],[2,3,3,2],[3,2,3,0],[0,2,0,0]],[[1,2,2,1],[1,2,4,0],[1,3,3,2],[0,2,0,0]],[[1,2,2,2],[1,2,3,0],[1,3,3,2],[0,2,0,0]],[[0,3,1,1],[2,3,3,2],[2,2,3,0],[1,1,0,0]],[[0,2,1,1],[3,3,3,2],[2,2,3,0],[1,1,0,0]],[[0,2,1,1],[2,4,3,2],[2,2,3,0],[1,1,0,0]],[[0,2,1,1],[2,3,4,2],[2,2,3,0],[1,1,0,0]],[[0,2,1,1],[2,3,3,2],[3,2,3,0],[1,1,0,0]],[[0,2,1,1],[2,3,3,2],[2,2,3,0],[2,1,0,0]],[[1,2,3,1],[1,2,3,0],[1,3,3,2],[0,2,0,0]],[[1,3,2,1],[1,2,3,0],[1,3,3,2],[0,2,0,0]],[[2,2,2,1],[1,2,3,0],[1,3,3,2],[0,2,0,0]],[[1,2,2,1],[1,2,3,0],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,2,3,0],[1,3,4,2],[0,0,2,0]],[[1,2,2,1],[1,2,4,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,2],[1,2,3,0],[1,3,3,2],[0,0,2,0]],[[1,2,3,1],[1,2,3,0],[1,3,3,2],[0,0,2,0]],[[1,3,2,1],[1,2,3,0],[1,3,3,2],[0,0,2,0]],[[2,2,2,1],[1,2,3,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[1,2,3,0],[1,3,3,2],[0,0,1,2]],[[1,2,2,1],[1,2,3,0],[1,3,3,3],[0,0,1,1]],[[1,2,2,1],[1,2,3,0],[1,3,4,2],[0,0,1,1]],[[1,2,2,1],[1,2,4,0],[1,3,3,2],[0,0,1,1]],[[1,2,2,2],[1,2,3,0],[1,3,3,2],[0,0,1,1]],[[1,2,3,1],[1,2,3,0],[1,3,3,2],[0,0,1,1]],[[1,3,2,1],[1,2,3,0],[1,3,3,2],[0,0,1,1]],[[2,2,2,1],[1,2,3,0],[1,3,3,2],[0,0,1,1]],[[1,2,2,1],[1,2,3,0],[1,3,4,1],[0,0,2,1]],[[1,2,2,1],[1,2,4,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,2,3,0],[1,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,2,3,0],[1,3,3,1],[0,0,2,1]],[[1,3,2,1],[1,2,3,0],[1,3,3,1],[0,0,2,1]],[[2,2,2,1],[1,2,3,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[1,2,4,0],[1,3,2,2],[1,2,0,0]],[[1,2,2,2],[1,2,3,0],[1,3,2,2],[1,2,0,0]],[[1,2,3,1],[1,2,3,0],[1,3,2,2],[1,2,0,0]],[[1,3,2,1],[1,2,3,0],[1,3,2,2],[1,2,0,0]],[[2,2,2,1],[1,2,3,0],[1,3,2,2],[1,2,0,0]],[[1,2,2,1],[1,2,4,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,0],[1,3,2,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,0],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,0],[1,3,2,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[1,2,4,0],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,0],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,0],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,0],[1,3,2,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,0],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[1,2,4,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,0],[1,3,2,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,0],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,0],[1,3,2,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[1,2,4,0],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,0],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,0],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,0],[1,3,2,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,0],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[1,2,4,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,0],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,0],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,0],[1,3,2,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,0],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,0],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,0],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,0],[1,3,2,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,0],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[1,2,4,0],[1,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,0],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,0],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,0],[1,3,2,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,0],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,0],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,0],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,0],[1,3,2,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,0],[1,3,2,1],[1,1,1,1]],[[1,2,2,2],[1,2,3,0],[1,3,2,1],[1,1,1,1]],[[1,2,3,1],[1,2,3,0],[1,3,2,1],[1,1,1,1]],[[1,3,2,1],[1,2,3,0],[1,3,2,1],[1,1,1,1]],[[2,2,2,1],[1,2,3,0],[1,3,2,1],[1,1,1,1]],[[1,2,2,1],[1,2,4,0],[1,3,2,1],[1,0,2,1]],[[1,2,2,2],[1,2,3,0],[1,3,2,1],[1,0,2,1]],[[1,2,3,1],[1,2,3,0],[1,3,2,1],[1,0,2,1]],[[1,3,2,1],[1,2,3,0],[1,3,2,1],[1,0,2,1]],[[2,2,2,1],[1,2,3,0],[1,3,2,1],[1,0,2,1]],[[1,2,2,1],[1,2,4,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,2],[1,2,3,0],[1,3,2,1],[0,2,1,1]],[[1,2,3,1],[1,2,3,0],[1,3,2,1],[0,2,1,1]],[[1,3,2,1],[1,2,3,0],[1,3,2,1],[0,2,1,1]],[[2,2,2,1],[1,2,3,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,1],[1,2,4,0],[1,3,2,1],[0,1,2,1]],[[1,2,2,2],[1,2,3,0],[1,3,2,1],[0,1,2,1]],[[1,2,3,1],[1,2,3,0],[1,3,2,1],[0,1,2,1]],[[1,3,2,1],[1,2,3,0],[1,3,2,1],[0,1,2,1]],[[2,2,2,1],[1,2,3,0],[1,3,2,1],[0,1,2,1]],[[1,2,2,1],[1,2,4,0],[1,3,1,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,0],[1,3,1,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,0],[1,3,1,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,0],[1,3,1,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,0],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[1,2,4,0],[1,3,1,2],[0,2,2,0]],[[1,2,2,2],[1,2,3,0],[1,3,1,2],[0,2,2,0]],[[1,2,3,1],[1,2,3,0],[1,3,1,2],[0,2,2,0]],[[1,3,2,1],[1,2,3,0],[1,3,1,2],[0,2,2,0]],[[2,2,2,1],[1,2,3,0],[1,3,1,2],[0,2,2,0]],[[1,2,2,1],[1,2,4,0],[1,3,1,1],[1,1,2,1]],[[1,2,2,2],[1,2,3,0],[1,3,1,1],[1,1,2,1]],[[1,2,3,1],[1,2,3,0],[1,3,1,1],[1,1,2,1]],[[1,3,2,1],[1,2,3,0],[1,3,1,1],[1,1,2,1]],[[2,2,2,1],[1,2,3,0],[1,3,1,1],[1,1,2,1]],[[1,2,2,1],[1,2,4,0],[1,3,1,1],[0,2,2,1]],[[1,2,2,2],[1,2,3,0],[1,3,1,1],[0,2,2,1]],[[1,2,3,1],[1,2,3,0],[1,3,1,1],[0,2,2,1]],[[1,3,2,1],[1,2,3,0],[1,3,1,1],[0,2,2,1]],[[2,2,2,1],[1,2,3,0],[1,3,1,1],[0,2,2,1]],[[1,2,2,1],[1,2,4,0],[1,3,0,2],[1,1,2,1]],[[1,2,2,2],[1,2,3,0],[1,3,0,2],[1,1,2,1]],[[1,2,3,1],[1,2,3,0],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[1,2,3,0],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[1,2,3,0],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[1,2,4,0],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[1,2,3,0],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[1,2,3,0],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[1,2,3,0],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[1,2,3,0],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[1,2,3,0],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[1,2,3,0],[1,2,4,2],[1,1,1,0]],[[1,2,2,1],[1,2,4,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,2],[1,2,3,0],[1,2,3,2],[1,1,1,0]],[[1,2,3,1],[1,2,3,0],[1,2,3,2],[1,1,1,0]],[[1,3,2,1],[1,2,3,0],[1,2,3,2],[1,1,1,0]],[[2,2,2,1],[1,2,3,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[1,2,3,0],[1,2,3,2],[1,1,0,2]],[[1,2,2,1],[1,2,3,0],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[1,2,3,0],[1,2,4,2],[1,1,0,1]],[[1,2,2,1],[1,2,4,0],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[1,2,3,0],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[1,2,3,0],[1,2,3,2],[1,1,0,1]],[[1,3,2,1],[1,2,3,0],[1,2,3,2],[1,1,0,1]],[[2,2,2,1],[1,2,3,0],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,2,3,0],[1,2,3,2],[1,0,3,0]],[[1,2,2,1],[1,2,3,0],[1,2,3,3],[1,0,2,0]],[[1,2,2,1],[1,2,3,0],[1,2,4,2],[1,0,2,0]],[[1,2,2,1],[1,2,4,0],[1,2,3,2],[1,0,2,0]],[[1,2,2,2],[1,2,3,0],[1,2,3,2],[1,0,2,0]],[[1,2,3,1],[1,2,3,0],[1,2,3,2],[1,0,2,0]],[[1,3,2,1],[1,2,3,0],[1,2,3,2],[1,0,2,0]],[[2,2,2,1],[1,2,3,0],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[1,2,3,0],[1,2,3,2],[1,0,1,2]],[[1,2,2,1],[1,2,3,0],[1,2,3,3],[1,0,1,1]],[[1,2,2,1],[1,2,3,0],[1,2,4,2],[1,0,1,1]],[[1,2,2,1],[1,2,4,0],[1,2,3,2],[1,0,1,1]],[[1,2,2,2],[1,2,3,0],[1,2,3,2],[1,0,1,1]],[[1,2,3,1],[1,2,3,0],[1,2,3,2],[1,0,1,1]],[[1,3,2,1],[1,2,3,0],[1,2,3,2],[1,0,1,1]],[[2,2,2,1],[1,2,3,0],[1,2,3,2],[1,0,1,1]],[[1,2,2,1],[1,2,3,0],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[1,2,3,0],[1,2,4,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,0],[1,2,3,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,0],[1,2,3,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,0],[1,2,3,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[1,2,3,0],[1,2,3,2],[0,2,0,2]],[[1,2,2,1],[1,2,3,0],[1,2,3,3],[0,2,0,1]],[[1,2,2,1],[1,2,3,0],[1,2,4,2],[0,2,0,1]],[[1,2,2,1],[1,2,4,0],[1,2,3,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,0],[1,2,3,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,0],[1,2,3,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,0],[1,2,3,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,0],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[1,2,3,0],[1,2,3,2],[0,1,3,0]],[[1,2,2,1],[1,2,3,0],[1,2,3,3],[0,1,2,0]],[[1,2,2,1],[1,2,3,0],[1,2,4,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,0],[1,2,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,0],[1,2,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,0],[1,2,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,0],[1,2,3,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,0],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,3,0],[1,2,3,2],[0,1,1,2]],[[1,2,2,1],[1,2,3,0],[1,2,3,3],[0,1,1,1]],[[1,2,2,1],[1,2,3,0],[1,2,4,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,0],[1,2,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,0],[1,2,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,0],[1,2,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,0],[1,2,3,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,0],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,3,0],[1,2,3,2],[0,0,2,2]],[[1,2,2,1],[1,2,3,0],[1,2,3,3],[0,0,2,1]],[[1,2,2,1],[1,2,3,0],[1,2,4,2],[0,0,2,1]],[[1,2,2,1],[1,2,4,0],[1,2,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,0],[1,2,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,0],[1,2,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,3,0],[1,2,3,2],[0,0,2,1]],[[2,2,2,1],[1,2,3,0],[1,2,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,3,0],[1,2,4,1],[1,1,1,1]],[[1,2,2,1],[1,2,4,0],[1,2,3,1],[1,1,1,1]],[[1,2,2,2],[1,2,3,0],[1,2,3,1],[1,1,1,1]],[[1,2,3,1],[1,2,3,0],[1,2,3,1],[1,1,1,1]],[[1,3,2,1],[1,2,3,0],[1,2,3,1],[1,1,1,1]],[[2,2,2,1],[1,2,3,0],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[1,2,3,0],[1,2,3,1],[1,0,2,2]],[[1,2,2,1],[1,2,3,0],[1,2,3,1],[1,0,3,1]],[[1,2,2,1],[1,2,3,0],[1,2,4,1],[1,0,2,1]],[[1,2,2,1],[1,2,4,0],[1,2,3,1],[1,0,2,1]],[[1,2,2,2],[1,2,3,0],[1,2,3,1],[1,0,2,1]],[[1,2,3,1],[1,2,3,0],[1,2,3,1],[1,0,2,1]],[[1,3,2,1],[1,2,3,0],[1,2,3,1],[1,0,2,1]],[[2,2,2,1],[1,2,3,0],[1,2,3,1],[1,0,2,1]],[[1,2,2,1],[1,2,3,0],[1,2,4,1],[0,2,1,1]],[[1,2,2,1],[1,2,4,0],[1,2,3,1],[0,2,1,1]],[[1,2,2,2],[1,2,3,0],[1,2,3,1],[0,2,1,1]],[[1,2,3,1],[1,2,3,0],[1,2,3,1],[0,2,1,1]],[[1,3,2,1],[1,2,3,0],[1,2,3,1],[0,2,1,1]],[[2,2,2,1],[1,2,3,0],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[1,2,3,0],[1,2,3,1],[0,1,2,2]],[[1,2,2,1],[1,2,3,0],[1,2,3,1],[0,1,3,1]],[[1,2,2,1],[1,2,3,0],[1,2,4,1],[0,1,2,1]],[[1,2,2,1],[1,2,4,0],[1,2,3,1],[0,1,2,1]],[[1,2,2,2],[1,2,3,0],[1,2,3,1],[0,1,2,1]],[[1,2,3,1],[1,2,3,0],[1,2,3,1],[0,1,2,1]],[[1,3,2,1],[1,2,3,0],[1,2,3,1],[0,1,2,1]],[[2,2,2,1],[1,2,3,0],[1,2,3,1],[0,1,2,1]],[[1,2,2,1],[1,2,3,0],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[1,2,3,0],[1,2,2,2],[1,0,3,1]],[[1,2,2,1],[1,2,3,0],[1,2,2,3],[1,0,2,1]],[[1,2,2,1],[1,2,3,0],[1,2,2,2],[0,1,2,2]],[[1,2,2,1],[1,2,3,0],[1,2,2,2],[0,1,3,1]],[[1,2,2,1],[1,2,3,0],[1,2,2,3],[0,1,2,1]],[[1,2,2,1],[1,2,3,0],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[1,2,3,0],[1,1,3,2],[0,3,2,0]],[[1,2,2,1],[1,2,3,0],[1,1,3,3],[0,2,2,0]],[[1,2,2,1],[1,2,3,0],[1,1,4,2],[0,2,2,0]],[[1,2,2,1],[1,2,4,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,2],[1,2,3,0],[1,1,3,2],[0,2,2,0]],[[1,2,3,1],[1,2,3,0],[1,1,3,2],[0,2,2,0]],[[1,3,2,1],[1,2,3,0],[1,1,3,2],[0,2,2,0]],[[2,2,2,1],[1,2,3,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[1,2,3,0],[1,1,3,2],[0,2,1,2]],[[1,2,2,1],[1,2,3,0],[1,1,3,3],[0,2,1,1]],[[1,2,2,1],[1,2,3,0],[1,1,4,2],[0,2,1,1]],[[1,2,2,1],[1,2,4,0],[1,1,3,2],[0,2,1,1]],[[1,2,2,2],[1,2,3,0],[1,1,3,2],[0,2,1,1]],[[1,2,3,1],[1,2,3,0],[1,1,3,2],[0,2,1,1]],[[1,3,2,1],[1,2,3,0],[1,1,3,2],[0,2,1,1]],[[2,2,2,1],[1,2,3,0],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[1,2,3,0],[1,1,3,1],[0,2,2,2]],[[1,2,2,1],[1,2,3,0],[1,1,3,1],[0,2,3,1]],[[1,2,2,1],[1,2,3,0],[1,1,3,1],[0,3,2,1]],[[1,2,2,1],[1,2,3,0],[1,1,4,1],[0,2,2,1]],[[1,2,2,1],[1,2,4,0],[1,1,3,1],[0,2,2,1]],[[1,2,2,2],[1,2,3,0],[1,1,3,1],[0,2,2,1]],[[1,2,3,1],[1,2,3,0],[1,1,3,1],[0,2,2,1]],[[1,3,2,1],[1,2,3,0],[1,1,3,1],[0,2,2,1]],[[2,2,2,1],[1,2,3,0],[1,1,3,1],[0,2,2,1]],[[1,2,2,1],[1,2,3,0],[1,1,2,2],[0,2,2,2]],[[1,2,2,1],[1,2,3,0],[1,1,2,2],[0,2,3,1]],[[1,2,2,1],[1,2,3,0],[1,1,2,2],[0,3,2,1]],[[1,2,2,1],[1,2,3,0],[1,1,2,3],[0,2,2,1]],[[1,2,2,1],[1,2,3,0],[1,0,3,2],[1,2,3,0]],[[1,2,2,1],[1,2,3,0],[1,0,3,2],[1,3,2,0]],[[1,2,2,1],[1,2,3,0],[1,0,3,2],[2,2,2,0]],[[1,2,2,1],[1,2,3,0],[1,0,3,3],[1,2,2,0]],[[1,2,2,1],[1,2,3,0],[1,0,4,2],[1,2,2,0]],[[1,2,2,1],[1,2,4,0],[1,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,0],[1,0,3,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,0],[1,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,0],[1,0,3,2],[1,2,2,0]],[[0,3,1,1],[2,3,3,2],[2,3,0,0],[0,2,2,0]],[[0,2,1,1],[3,3,3,2],[2,3,0,0],[0,2,2,0]],[[0,2,1,1],[2,4,3,2],[2,3,0,0],[0,2,2,0]],[[0,2,1,1],[2,3,3,2],[3,3,0,0],[0,2,2,0]],[[0,3,1,1],[2,3,3,2],[2,3,0,0],[1,1,2,0]],[[0,2,1,1],[3,3,3,2],[2,3,0,0],[1,1,2,0]],[[0,2,1,1],[2,4,3,2],[2,3,0,0],[1,1,2,0]],[[0,2,1,1],[2,3,3,2],[3,3,0,0],[1,1,2,0]],[[0,2,1,1],[2,3,3,2],[2,3,0,0],[2,1,2,0]],[[0,3,1,1],[2,3,3,2],[2,3,0,0],[1,2,1,0]],[[0,2,1,1],[3,3,3,2],[2,3,0,0],[1,2,1,0]],[[0,2,1,1],[2,4,3,2],[2,3,0,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,2],[3,3,0,0],[1,2,1,0]],[[0,2,1,1],[2,3,3,2],[2,3,0,0],[2,2,1,0]],[[2,2,2,1],[1,2,3,0],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,2,3,0],[1,0,3,2],[1,2,1,2]],[[1,2,2,1],[1,2,3,0],[1,0,3,3],[1,2,1,1]],[[1,2,2,1],[1,2,3,0],[1,0,4,2],[1,2,1,1]],[[1,2,2,1],[1,2,4,0],[1,0,3,2],[1,2,1,1]],[[1,2,2,2],[1,2,3,0],[1,0,3,2],[1,2,1,1]],[[1,2,3,1],[1,2,3,0],[1,0,3,2],[1,2,1,1]],[[1,3,2,1],[1,2,3,0],[1,0,3,2],[1,2,1,1]],[[2,2,2,1],[1,2,3,0],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,2,3,0],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[1,2,3,0],[1,0,3,2],[0,2,3,1]],[[1,2,2,1],[1,2,3,0],[1,0,3,3],[0,2,2,1]],[[1,2,2,1],[1,2,3,0],[1,0,3,1],[1,2,2,2]],[[1,2,2,1],[1,2,3,0],[1,0,3,1],[1,2,3,1]],[[1,2,2,1],[1,2,3,0],[1,0,3,1],[1,3,2,1]],[[1,2,2,1],[1,2,3,0],[1,0,3,1],[2,2,2,1]],[[1,2,2,1],[1,2,3,0],[1,0,4,1],[1,2,2,1]],[[1,2,2,1],[1,2,4,0],[1,0,3,1],[1,2,2,1]],[[1,2,2,2],[1,2,3,0],[1,0,3,1],[1,2,2,1]],[[1,2,3,1],[1,2,3,0],[1,0,3,1],[1,2,2,1]],[[1,3,2,1],[1,2,3,0],[1,0,3,1],[1,2,2,1]],[[2,2,2,1],[1,2,3,0],[1,0,3,1],[1,2,2,1]],[[1,2,2,1],[1,2,3,0],[1,0,2,2],[1,2,2,2]],[[1,2,2,1],[1,2,3,0],[1,0,2,2],[1,2,3,1]],[[1,2,2,1],[1,2,3,0],[1,0,2,2],[1,3,2,1]],[[1,2,2,1],[1,2,3,0],[1,0,2,2],[2,2,2,1]],[[1,2,2,1],[1,2,3,0],[1,0,2,3],[1,2,2,1]],[[1,2,2,1],[1,2,4,0],[0,3,3,2],[1,2,0,0]],[[1,2,2,2],[1,2,3,0],[0,3,3,2],[1,2,0,0]],[[1,2,3,1],[1,2,3,0],[0,3,3,2],[1,2,0,0]],[[1,3,2,1],[1,2,3,0],[0,3,3,2],[1,2,0,0]],[[2,2,2,1],[1,2,3,0],[0,3,3,2],[1,2,0,0]],[[1,2,2,1],[1,2,3,0],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,2,3,0],[0,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,2,4,0],[0,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,2,3,0],[0,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,2,3,0],[0,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,2,3,0],[0,3,3,2],[0,2,1,0]],[[2,2,2,1],[1,2,3,0],[0,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,2,3,0],[0,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,2,3,0],[0,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,2,3,0],[0,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,2,4,0],[0,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,2,3,0],[0,3,3,2],[0,2,0,1]],[[1,2,3,1],[1,2,3,0],[0,3,3,2],[0,2,0,1]],[[1,3,2,1],[1,2,3,0],[0,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,2,3,0],[0,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,2,3,0],[0,3,3,2],[0,1,3,0]],[[1,2,2,1],[1,2,3,0],[0,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,2,3,0],[0,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,2,4,0],[0,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,3,0],[0,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,3,0],[0,3,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,3,0],[0,3,3,2],[0,1,2,0]],[[2,2,2,1],[1,2,3,0],[0,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,3,0],[0,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,2,3,0],[0,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,2,3,0],[0,3,4,2],[0,1,1,1]],[[1,2,2,1],[1,2,4,0],[0,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,3,0],[0,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,3,0],[0,3,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,3,0],[0,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,2,3,0],[0,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,3,0],[0,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,2,3,0],[0,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,2,3,0],[0,3,4,2],[0,0,2,1]],[[1,2,2,1],[1,2,4,0],[0,3,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,3,0],[0,3,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,3,0],[0,3,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,3,0],[0,3,3,2],[0,0,2,1]],[[2,2,2,1],[1,2,3,0],[0,3,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,3,0],[0,3,4,1],[0,2,1,1]],[[1,2,2,1],[1,2,4,0],[0,3,3,1],[0,2,1,1]],[[1,2,2,2],[1,2,3,0],[0,3,3,1],[0,2,1,1]],[[1,2,3,1],[1,2,3,0],[0,3,3,1],[0,2,1,1]],[[1,3,2,1],[1,2,3,0],[0,3,3,1],[0,2,1,1]],[[2,2,2,1],[1,2,3,0],[0,3,3,1],[0,2,1,1]],[[1,2,2,1],[1,2,3,0],[0,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,2,3,0],[0,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,2,3,0],[0,3,4,1],[0,1,2,1]],[[1,2,2,1],[1,2,4,0],[0,3,3,1],[0,1,2,1]],[[1,2,2,2],[1,2,3,0],[0,3,3,1],[0,1,2,1]],[[1,2,3,1],[1,2,3,0],[0,3,3,1],[0,1,2,1]],[[1,3,2,1],[1,2,3,0],[0,3,3,1],[0,1,2,1]],[[2,2,2,1],[1,2,3,0],[0,3,3,1],[0,1,2,1]],[[0,3,1,1],[2,3,3,2],[2,3,1,0],[0,2,0,1]],[[0,2,1,1],[3,3,3,2],[2,3,1,0],[0,2,0,1]],[[0,2,1,1],[2,4,3,2],[2,3,1,0],[0,2,0,1]],[[0,2,1,1],[2,3,3,2],[3,3,1,0],[0,2,0,1]],[[0,3,1,1],[2,3,3,2],[2,3,1,0],[0,2,1,0]],[[0,2,1,1],[3,3,3,2],[2,3,1,0],[0,2,1,0]],[[0,2,1,1],[2,4,3,2],[2,3,1,0],[0,2,1,0]],[[0,2,1,1],[2,3,3,2],[3,3,1,0],[0,2,1,0]],[[0,3,1,1],[2,3,3,2],[2,3,1,0],[1,1,0,1]],[[0,2,1,1],[3,3,3,2],[2,3,1,0],[1,1,0,1]],[[0,2,1,1],[2,4,3,2],[2,3,1,0],[1,1,0,1]],[[0,2,1,1],[2,3,3,2],[3,3,1,0],[1,1,0,1]],[[0,2,1,1],[2,3,3,2],[2,3,1,0],[2,1,0,1]],[[0,3,1,1],[2,3,3,2],[2,3,1,0],[1,1,1,0]],[[0,2,1,1],[3,3,3,2],[2,3,1,0],[1,1,1,0]],[[0,2,1,1],[2,4,3,2],[2,3,1,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,2],[3,3,1,0],[1,1,1,0]],[[0,2,1,1],[2,3,3,2],[2,3,1,0],[2,1,1,0]],[[1,2,2,1],[1,2,4,0],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,0],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,0],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,0],[0,3,2,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,0],[0,3,2,2],[1,2,1,0]],[[0,3,1,1],[2,3,3,2],[2,3,1,0],[1,2,0,0]],[[0,2,1,1],[3,3,3,2],[2,3,1,0],[1,2,0,0]],[[0,2,1,1],[2,4,3,2],[2,3,1,0],[1,2,0,0]],[[0,2,1,1],[2,3,3,2],[3,3,1,0],[1,2,0,0]],[[0,2,1,1],[2,3,3,2],[2,3,1,0],[2,2,0,0]],[[1,2,2,1],[1,2,4,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[1,2,3,0],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,0],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[1,2,3,0],[0,3,2,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[1,2,4,0],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,0],[0,3,2,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,0],[0,3,2,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,0],[0,3,2,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,0],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,2,4,0],[0,3,2,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,0],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,0],[0,3,2,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,0],[0,3,2,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,0],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[1,2,3,0],[0,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,2,3,0],[0,3,2,2],[0,1,3,1]],[[1,2,2,1],[1,2,3,0],[0,3,2,3],[0,1,2,1]],[[1,2,2,1],[1,2,4,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,2],[1,2,3,0],[0,3,2,1],[1,2,1,1]],[[1,2,3,1],[1,2,3,0],[0,3,2,1],[1,2,1,1]],[[1,3,2,1],[1,2,3,0],[0,3,2,1],[1,2,1,1]],[[2,2,2,1],[1,2,3,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,1],[1,2,4,0],[0,3,2,1],[1,1,2,1]],[[1,2,2,2],[1,2,3,0],[0,3,2,1],[1,1,2,1]],[[1,2,3,1],[1,2,3,0],[0,3,2,1],[1,1,2,1]],[[1,3,2,1],[1,2,3,0],[0,3,2,1],[1,1,2,1]],[[2,2,2,1],[1,2,3,0],[0,3,2,1],[1,1,2,1]],[[1,2,2,1],[1,2,4,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,0],[0,3,1,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,0],[0,3,1,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,0],[0,3,1,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,1],[1,2,4,0],[0,3,1,1],[1,2,2,1]],[[1,2,2,2],[1,2,3,0],[0,3,1,1],[1,2,2,1]],[[1,2,3,1],[1,2,3,0],[0,3,1,1],[1,2,2,1]],[[1,3,2,1],[1,2,3,0],[0,3,1,1],[1,2,2,1]],[[2,2,2,1],[1,2,3,0],[0,3,1,1],[1,2,2,1]],[[1,2,2,1],[1,2,4,0],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[1,2,3,0],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[1,2,3,0],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[1,2,3,0],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[1,2,3,0],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[1,2,3,0],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[1,2,3,0],[0,2,4,2],[1,2,1,0]],[[1,2,2,1],[1,2,4,0],[0,2,3,2],[1,2,1,0]],[[1,2,2,2],[1,2,3,0],[0,2,3,2],[1,2,1,0]],[[1,2,3,1],[1,2,3,0],[0,2,3,2],[1,2,1,0]],[[1,3,2,1],[1,2,3,0],[0,2,3,2],[1,2,1,0]],[[2,2,2,1],[1,2,3,0],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[1,2,3,0],[0,2,3,2],[1,2,0,2]],[[1,2,2,1],[1,2,3,0],[0,2,3,3],[1,2,0,1]],[[1,2,2,1],[1,2,3,0],[0,2,4,2],[1,2,0,1]],[[1,2,2,1],[1,2,4,0],[0,2,3,2],[1,2,0,1]],[[1,2,2,2],[1,2,3,0],[0,2,3,2],[1,2,0,1]],[[1,2,3,1],[1,2,3,0],[0,2,3,2],[1,2,0,1]],[[1,3,2,1],[1,2,3,0],[0,2,3,2],[1,2,0,1]],[[2,2,2,1],[1,2,3,0],[0,2,3,2],[1,2,0,1]],[[1,2,2,1],[1,2,3,0],[0,2,3,2],[1,1,3,0]],[[1,2,2,1],[1,2,3,0],[0,2,3,3],[1,1,2,0]],[[1,2,2,1],[1,2,3,0],[0,2,4,2],[1,1,2,0]],[[1,2,2,1],[1,2,4,0],[0,2,3,2],[1,1,2,0]],[[1,2,2,2],[1,2,3,0],[0,2,3,2],[1,1,2,0]],[[1,2,3,1],[1,2,3,0],[0,2,3,2],[1,1,2,0]],[[1,3,2,1],[1,2,3,0],[0,2,3,2],[1,1,2,0]],[[2,2,2,1],[1,2,3,0],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[1,2,3,0],[0,2,3,2],[1,1,1,2]],[[1,2,2,1],[1,2,3,0],[0,2,3,3],[1,1,1,1]],[[1,2,2,1],[1,2,3,0],[0,2,4,2],[1,1,1,1]],[[1,2,2,1],[1,2,4,0],[0,2,3,2],[1,1,1,1]],[[1,2,2,2],[1,2,3,0],[0,2,3,2],[1,1,1,1]],[[1,2,3,1],[1,2,3,0],[0,2,3,2],[1,1,1,1]],[[1,3,2,1],[1,2,3,0],[0,2,3,2],[1,1,1,1]],[[2,2,2,1],[1,2,3,0],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[1,2,3,0],[0,2,3,2],[1,0,2,2]],[[1,2,2,1],[1,2,3,0],[0,2,3,3],[1,0,2,1]],[[1,2,2,1],[1,2,3,0],[0,2,4,2],[1,0,2,1]],[[1,2,2,1],[1,2,4,0],[0,2,3,2],[1,0,2,1]],[[1,2,2,2],[1,2,3,0],[0,2,3,2],[1,0,2,1]],[[1,2,3,1],[1,2,3,0],[0,2,3,2],[1,0,2,1]],[[1,3,2,1],[1,2,3,0],[0,2,3,2],[1,0,2,1]],[[2,2,2,1],[1,2,3,0],[0,2,3,2],[1,0,2,1]],[[1,2,2,1],[1,2,3,0],[0,2,4,1],[1,2,1,1]],[[1,2,2,1],[1,2,4,0],[0,2,3,1],[1,2,1,1]],[[1,2,2,2],[1,2,3,0],[0,2,3,1],[1,2,1,1]],[[1,2,3,1],[1,2,3,0],[0,2,3,1],[1,2,1,1]],[[1,3,2,1],[1,2,3,0],[0,2,3,1],[1,2,1,1]],[[2,2,2,1],[1,2,3,0],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[1,2,3,0],[0,2,3,1],[1,1,2,2]],[[1,2,2,1],[1,2,3,0],[0,2,3,1],[1,1,3,1]],[[1,2,2,1],[1,2,3,0],[0,2,4,1],[1,1,2,1]],[[1,2,2,1],[1,2,4,0],[0,2,3,1],[1,1,2,1]],[[1,2,2,2],[1,2,3,0],[0,2,3,1],[1,1,2,1]],[[1,2,3,1],[1,2,3,0],[0,2,3,1],[1,1,2,1]],[[1,3,2,1],[1,2,3,0],[0,2,3,1],[1,1,2,1]],[[2,2,2,1],[1,2,3,0],[0,2,3,1],[1,1,2,1]],[[1,2,2,1],[1,2,3,0],[0,2,2,2],[1,1,2,2]],[[1,2,2,1],[1,2,3,0],[0,2,2,2],[1,1,3,1]],[[1,2,2,1],[1,2,3,0],[0,2,2,3],[1,1,2,1]],[[1,2,2,1],[1,2,3,0],[0,1,3,2],[1,2,3,0]],[[1,2,2,1],[1,2,3,0],[0,1,3,2],[1,3,2,0]],[[1,2,2,1],[1,2,3,0],[0,1,3,2],[2,2,2,0]],[[1,2,2,1],[1,2,3,0],[0,1,3,3],[1,2,2,0]],[[1,2,2,1],[1,2,3,0],[0,1,4,2],[1,2,2,0]],[[1,2,2,1],[1,2,4,0],[0,1,3,2],[1,2,2,0]],[[1,2,2,2],[1,2,3,0],[0,1,3,2],[1,2,2,0]],[[1,2,3,1],[1,2,3,0],[0,1,3,2],[1,2,2,0]],[[1,3,2,1],[1,2,3,0],[0,1,3,2],[1,2,2,0]],[[2,2,2,1],[1,2,3,0],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,2,3,0],[0,1,3,2],[1,2,1,2]],[[1,2,2,1],[1,2,3,0],[0,1,3,3],[1,2,1,1]],[[1,2,2,1],[1,2,3,0],[0,1,4,2],[1,2,1,1]],[[1,2,2,1],[1,2,4,0],[0,1,3,2],[1,2,1,1]],[[1,2,2,2],[1,2,3,0],[0,1,3,2],[1,2,1,1]],[[1,2,3,1],[1,2,3,0],[0,1,3,2],[1,2,1,1]],[[1,3,2,1],[1,2,3,0],[0,1,3,2],[1,2,1,1]],[[2,2,2,1],[1,2,3,0],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[1,2,3,0],[0,1,3,1],[1,2,2,2]],[[1,2,2,1],[1,2,3,0],[0,1,3,1],[1,2,3,1]],[[1,2,2,1],[1,2,3,0],[0,1,3,1],[1,3,2,1]],[[1,2,2,1],[1,2,3,0],[0,1,3,1],[2,2,2,1]],[[1,2,2,1],[1,2,3,0],[0,1,4,1],[1,2,2,1]],[[1,2,2,1],[1,2,4,0],[0,1,3,1],[1,2,2,1]],[[1,2,2,2],[1,2,3,0],[0,1,3,1],[1,2,2,1]],[[1,2,3,1],[1,2,3,0],[0,1,3,1],[1,2,2,1]],[[1,3,2,1],[1,2,3,0],[0,1,3,1],[1,2,2,1]],[[2,2,2,1],[1,2,3,0],[0,1,3,1],[1,2,2,1]],[[1,2,2,1],[1,2,3,0],[0,1,2,2],[1,2,2,2]],[[1,2,2,1],[1,2,3,0],[0,1,2,2],[1,2,3,1]],[[1,2,2,1],[1,2,3,0],[0,1,2,2],[1,3,2,1]],[[1,2,2,1],[1,2,3,0],[0,1,2,2],[2,2,2,1]],[[1,2,2,1],[1,2,3,0],[0,1,2,3],[1,2,2,1]],[[1,2,2,1],[1,2,3,0],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[1,2,3,0],[0,0,3,2],[1,2,3,1]],[[1,2,2,1],[1,2,3,0],[0,0,3,3],[1,2,2,1]],[[1,2,2,1],[1,2,2,3],[2,3,3,1],[1,0,0,0]],[[1,2,2,2],[1,2,2,2],[2,3,3,1],[1,0,0,0]],[[1,2,3,1],[1,2,2,2],[2,3,3,1],[1,0,0,0]],[[1,3,2,1],[1,2,2,2],[2,3,3,1],[1,0,0,0]],[[2,2,2,1],[1,2,2,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[1,2,2,3],[2,3,2,1],[1,0,1,0]],[[1,2,2,2],[1,2,2,2],[2,3,2,1],[1,0,1,0]],[[1,2,3,1],[1,2,2,2],[2,3,2,1],[1,0,1,0]],[[1,3,2,1],[1,2,2,2],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[1,2,2,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,1],[1,2,2,3],[2,3,2,1],[1,0,0,1]],[[1,2,2,2],[1,2,2,2],[2,3,2,1],[1,0,0,1]],[[1,2,3,1],[1,2,2,2],[2,3,2,1],[1,0,0,1]],[[1,3,2,1],[1,2,2,2],[2,3,2,1],[1,0,0,1]],[[2,2,2,1],[1,2,2,2],[2,3,2,1],[1,0,0,1]],[[0,3,1,1],[2,3,3,2],[2,3,2,0],[1,0,0,1]],[[0,2,1,1],[3,3,3,2],[2,3,2,0],[1,0,0,1]],[[0,2,1,1],[2,4,3,2],[2,3,2,0],[1,0,0,1]],[[0,2,1,1],[2,3,4,2],[2,3,2,0],[1,0,0,1]],[[0,2,1,1],[2,3,3,2],[3,3,2,0],[1,0,0,1]],[[0,3,1,1],[2,3,3,2],[2,3,2,0],[1,0,1,0]],[[0,2,1,1],[3,3,3,2],[2,3,2,0],[1,0,1,0]],[[0,2,1,1],[2,4,3,2],[2,3,2,0],[1,0,1,0]],[[0,2,1,1],[2,3,4,2],[2,3,2,0],[1,0,1,0]],[[0,2,1,1],[2,3,3,2],[3,3,2,0],[1,0,1,0]],[[1,2,2,1],[1,2,2,3],[2,3,1,2],[1,0,1,0]],[[1,2,2,2],[1,2,2,2],[2,3,1,2],[1,0,1,0]],[[1,2,3,1],[1,2,2,2],[2,3,1,2],[1,0,1,0]],[[1,3,2,1],[1,2,2,2],[2,3,1,2],[1,0,1,0]],[[2,2,2,1],[1,2,2,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[1,2,2,2],[2,3,1,3],[1,0,0,1]],[[1,2,2,1],[1,2,2,3],[2,3,1,2],[1,0,0,1]],[[1,2,2,2],[1,2,2,2],[2,3,1,2],[1,0,0,1]],[[1,2,3,1],[1,2,2,2],[2,3,1,2],[1,0,0,1]],[[1,3,2,1],[1,2,2,2],[2,3,1,2],[1,0,0,1]],[[2,2,2,1],[1,2,2,2],[2,3,1,2],[1,0,0,1]],[[1,2,2,1],[1,2,2,3],[2,2,3,1],[1,1,0,0]],[[1,2,2,2],[1,2,2,2],[2,2,3,1],[1,1,0,0]],[[1,2,3,1],[1,2,2,2],[2,2,3,1],[1,1,0,0]],[[1,3,2,1],[1,2,2,2],[2,2,3,1],[1,1,0,0]],[[2,2,2,1],[1,2,2,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[1,2,2,3],[2,2,3,1],[0,2,0,0]],[[1,2,2,2],[1,2,2,2],[2,2,3,1],[0,2,0,0]],[[1,2,3,1],[1,2,2,2],[2,2,3,1],[0,2,0,0]],[[1,3,2,1],[1,2,2,2],[2,2,3,1],[0,2,0,0]],[[2,2,2,1],[1,2,2,2],[2,2,3,1],[0,2,0,0]],[[1,2,2,1],[1,2,2,3],[2,2,2,1],[1,2,0,0]],[[1,2,2,2],[1,2,2,2],[2,2,2,1],[1,2,0,0]],[[1,2,3,1],[1,2,2,2],[2,2,2,1],[1,2,0,0]],[[1,3,2,1],[1,2,2,2],[2,2,2,1],[1,2,0,0]],[[2,2,2,1],[1,2,2,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[1,2,2,3],[2,2,2,1],[1,1,1,0]],[[1,2,2,2],[1,2,2,2],[2,2,2,1],[1,1,1,0]],[[1,2,3,1],[1,2,2,2],[2,2,2,1],[1,1,1,0]],[[1,3,2,1],[1,2,2,2],[2,2,2,1],[1,1,1,0]],[[2,2,2,1],[1,2,2,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,1],[1,2,2,3],[2,2,2,1],[1,1,0,1]],[[1,2,2,2],[1,2,2,2],[2,2,2,1],[1,1,0,1]],[[1,2,3,1],[1,2,2,2],[2,2,2,1],[1,1,0,1]],[[1,3,2,1],[1,2,2,2],[2,2,2,1],[1,1,0,1]],[[2,2,2,1],[1,2,2,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,1],[1,2,2,3],[2,2,2,1],[1,0,2,0]],[[1,2,2,2],[1,2,2,2],[2,2,2,1],[1,0,2,0]],[[1,2,3,1],[1,2,2,2],[2,2,2,1],[1,0,2,0]],[[1,3,2,1],[1,2,2,2],[2,2,2,1],[1,0,2,0]],[[2,2,2,1],[1,2,2,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,1],[1,2,2,3],[2,2,2,1],[1,0,1,1]],[[1,2,2,2],[1,2,2,2],[2,2,2,1],[1,0,1,1]],[[1,2,3,1],[1,2,2,2],[2,2,2,1],[1,0,1,1]],[[1,3,2,1],[1,2,2,2],[2,2,2,1],[1,0,1,1]],[[2,2,2,1],[1,2,2,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,1],[1,2,2,3],[2,2,2,1],[0,2,1,0]],[[1,2,2,2],[1,2,2,2],[2,2,2,1],[0,2,1,0]],[[1,2,3,1],[1,2,2,2],[2,2,2,1],[0,2,1,0]],[[1,3,2,1],[1,2,2,2],[2,2,2,1],[0,2,1,0]],[[2,2,2,1],[1,2,2,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,1],[1,2,2,3],[2,2,2,1],[0,2,0,1]],[[1,2,2,2],[1,2,2,2],[2,2,2,1],[0,2,0,1]],[[1,2,3,1],[1,2,2,2],[2,2,2,1],[0,2,0,1]],[[1,3,2,1],[1,2,2,2],[2,2,2,1],[0,2,0,1]],[[2,2,2,1],[1,2,2,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,1],[1,2,2,3],[2,2,2,1],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[2,2,2,1],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[2,2,2,1],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[2,2,2,1],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[2,2,2,1],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[2,2,2,1],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[2,2,2,1],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[2,2,2,1],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[2,2,2,0],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[2,2,2,0],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[2,2,2,0],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[2,2,2,0],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[2,2,2,0],[1,0,2,1]],[[1,2,2,2],[1,2,2,2],[2,2,2,0],[1,0,2,1]],[[1,2,3,1],[1,2,2,2],[2,2,2,0],[1,0,2,1]],[[1,3,2,1],[1,2,2,2],[2,2,2,0],[1,0,2,1]],[[2,2,2,1],[1,2,2,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,1],[1,2,2,3],[2,2,2,0],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[2,2,2,0],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[2,2,2,0],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[2,2,2,0],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[2,2,2,0],[0,1,2,1]],[[1,2,2,2],[1,2,2,2],[2,2,2,0],[0,1,2,1]],[[1,2,3,1],[1,2,2,2],[2,2,2,0],[0,1,2,1]],[[1,3,2,1],[1,2,2,2],[2,2,2,0],[0,1,2,1]],[[2,2,2,1],[1,2,2,2],[2,2,2,0],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[2,2,1,2],[1,2,0,0]],[[1,2,2,2],[1,2,2,2],[2,2,1,2],[1,2,0,0]],[[1,2,3,1],[1,2,2,2],[2,2,1,2],[1,2,0,0]],[[1,3,2,1],[1,2,2,2],[2,2,1,2],[1,2,0,0]],[[2,2,2,1],[1,2,2,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[1,2,2,2],[2,2,1,3],[1,1,1,0]],[[1,2,2,1],[1,2,2,3],[2,2,1,2],[1,1,1,0]],[[1,2,2,2],[1,2,2,2],[2,2,1,2],[1,1,1,0]],[[1,2,3,1],[1,2,2,2],[2,2,1,2],[1,1,1,0]],[[1,3,2,1],[1,2,2,2],[2,2,1,2],[1,1,1,0]],[[2,2,2,1],[1,2,2,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[1,2,2,2],[2,2,1,2],[1,1,0,2]],[[1,2,2,1],[1,2,2,2],[2,2,1,3],[1,1,0,1]],[[1,2,2,1],[1,2,2,3],[2,2,1,2],[1,1,0,1]],[[1,2,2,2],[1,2,2,2],[2,2,1,2],[1,1,0,1]],[[1,2,3,1],[1,2,2,2],[2,2,1,2],[1,1,0,1]],[[1,3,2,1],[1,2,2,2],[2,2,1,2],[1,1,0,1]],[[2,2,2,1],[1,2,2,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[1,2,2,2],[2,2,1,3],[1,0,2,0]],[[1,2,2,1],[1,2,2,3],[2,2,1,2],[1,0,2,0]],[[1,2,2,2],[1,2,2,2],[2,2,1,2],[1,0,2,0]],[[1,2,3,1],[1,2,2,2],[2,2,1,2],[1,0,2,0]],[[1,3,2,1],[1,2,2,2],[2,2,1,2],[1,0,2,0]],[[2,2,2,1],[1,2,2,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[1,2,2,2],[2,2,1,2],[1,0,1,2]],[[1,2,2,1],[1,2,2,2],[2,2,1,3],[1,0,1,1]],[[1,2,2,1],[1,2,2,3],[2,2,1,2],[1,0,1,1]],[[1,2,2,2],[1,2,2,2],[2,2,1,2],[1,0,1,1]],[[1,2,3,1],[1,2,2,2],[2,2,1,2],[1,0,1,1]],[[1,3,2,1],[1,2,2,2],[2,2,1,2],[1,0,1,1]],[[2,2,2,1],[1,2,2,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[1,2,2,2],[2,2,1,3],[0,2,1,0]],[[1,2,2,1],[1,2,2,3],[2,2,1,2],[0,2,1,0]],[[1,2,2,2],[1,2,2,2],[2,2,1,2],[0,2,1,0]],[[1,2,3,1],[1,2,2,2],[2,2,1,2],[0,2,1,0]],[[1,3,2,1],[1,2,2,2],[2,2,1,2],[0,2,1,0]],[[2,2,2,1],[1,2,2,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[1,2,2,2],[2,2,1,2],[0,2,0,2]],[[1,2,2,1],[1,2,2,2],[2,2,1,3],[0,2,0,1]],[[1,2,2,1],[1,2,2,3],[2,2,1,2],[0,2,0,1]],[[1,2,2,2],[1,2,2,2],[2,2,1,2],[0,2,0,1]],[[1,2,3,1],[1,2,2,2],[2,2,1,2],[0,2,0,1]],[[1,3,2,1],[1,2,2,2],[2,2,1,2],[0,2,0,1]],[[2,2,2,1],[1,2,2,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[1,2,2,2],[2,2,1,3],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[2,2,1,2],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[2,2,1,2],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[2,2,1,2],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[2,2,1,2],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[1,2,2,2],[2,2,1,2],[0,1,1,2]],[[1,2,2,1],[1,2,2,2],[2,2,1,3],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[2,2,1,2],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[2,2,1,2],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[2,2,1,2],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[2,2,1,2],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[2,2,1,1],[1,1,2,0]],[[1,2,2,2],[1,2,2,2],[2,2,1,1],[1,1,2,0]],[[1,2,3,1],[1,2,2,2],[2,2,1,1],[1,1,2,0]],[[1,3,2,1],[1,2,2,2],[2,2,1,1],[1,1,2,0]],[[2,2,2,1],[1,2,2,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,1],[1,2,2,3],[2,2,1,1],[0,2,2,0]],[[1,2,2,2],[1,2,2,2],[2,2,1,1],[0,2,2,0]],[[1,2,3,1],[1,2,2,2],[2,2,1,1],[0,2,2,0]],[[1,3,2,1],[1,2,2,2],[2,2,1,1],[0,2,2,0]],[[2,2,2,1],[1,2,2,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,1],[1,2,2,3],[2,2,1,0],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[2,2,1,0],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[2,2,1,0],[1,1,2,1]],[[1,3,2,1],[1,2,2,2],[2,2,1,0],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,1],[1,2,2,3],[2,2,1,0],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[2,2,1,0],[0,2,2,1]],[[1,2,3,1],[1,2,2,2],[2,2,1,0],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[2,2,1,0],[0,2,2,1]],[[2,2,2,1],[1,2,2,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,1],[1,2,2,2],[2,2,0,3],[1,1,2,0]],[[1,2,2,1],[1,2,2,3],[2,2,0,2],[1,1,2,0]],[[1,2,2,2],[1,2,2,2],[2,2,0,2],[1,1,2,0]],[[1,2,3,1],[1,2,2,2],[2,2,0,2],[1,1,2,0]],[[1,3,2,1],[1,2,2,2],[2,2,0,2],[1,1,2,0]],[[2,2,2,1],[1,2,2,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,1],[1,2,2,2],[2,2,0,2],[1,1,1,2]],[[1,2,2,1],[1,2,2,2],[2,2,0,3],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[2,2,0,2],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[2,2,0,2],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[2,2,0,2],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[2,2,0,2],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,1],[1,2,2,2],[2,2,0,2],[1,0,2,2]],[[1,2,2,1],[1,2,2,2],[2,2,0,2],[1,0,3,1]],[[1,2,2,1],[1,2,2,2],[2,2,0,3],[1,0,2,1]],[[1,2,2,1],[1,2,2,3],[2,2,0,2],[1,0,2,1]],[[1,2,2,2],[1,2,2,2],[2,2,0,2],[1,0,2,1]],[[1,2,3,1],[1,2,2,2],[2,2,0,2],[1,0,2,1]],[[1,3,2,1],[1,2,2,2],[2,2,0,2],[1,0,2,1]],[[2,2,2,1],[1,2,2,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[1,2,2,2],[2,2,0,3],[0,2,2,0]],[[1,2,2,1],[1,2,2,3],[2,2,0,2],[0,2,2,0]],[[1,2,2,2],[1,2,2,2],[2,2,0,2],[0,2,2,0]],[[1,2,3,1],[1,2,2,2],[2,2,0,2],[0,2,2,0]],[[1,3,2,1],[1,2,2,2],[2,2,0,2],[0,2,2,0]],[[2,2,2,1],[1,2,2,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,1],[1,2,2,2],[2,2,0,2],[0,2,1,2]],[[1,2,2,1],[1,2,2,2],[2,2,0,3],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[2,2,0,2],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[2,2,0,2],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[2,2,0,2],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[2,2,0,2],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,1],[1,2,2,2],[2,2,0,2],[0,1,2,2]],[[1,2,2,1],[1,2,2,2],[2,2,0,2],[0,1,3,1]],[[1,2,2,1],[1,2,2,2],[2,2,0,3],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[2,2,0,2],[0,1,2,1]],[[1,2,2,2],[1,2,2,2],[2,2,0,2],[0,1,2,1]],[[1,2,3,1],[1,2,2,2],[2,2,0,2],[0,1,2,1]],[[1,3,2,1],[1,2,2,2],[2,2,0,2],[0,1,2,1]],[[2,2,2,1],[1,2,2,2],[2,2,0,2],[0,1,2,1]],[[0,3,1,1],[2,3,3,2],[2,3,3,0],[1,0,0,0]],[[0,2,1,1],[3,3,3,2],[2,3,3,0],[1,0,0,0]],[[0,2,1,1],[2,4,3,2],[2,3,3,0],[1,0,0,0]],[[0,2,1,1],[2,3,4,2],[2,3,3,0],[1,0,0,0]],[[0,2,1,1],[2,3,3,2],[3,3,3,0],[1,0,0,0]],[[1,2,2,1],[1,2,2,3],[2,2,0,1],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[2,2,0,1],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[2,2,0,1],[1,1,2,1]],[[1,3,2,1],[1,2,2,2],[2,2,0,1],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,1],[1,2,2,3],[2,2,0,1],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[2,2,0,1],[0,2,2,1]],[[1,2,3,1],[1,2,2,2],[2,2,0,1],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[2,2,0,1],[0,2,2,1]],[[2,2,2,1],[1,2,2,2],[2,2,0,1],[0,2,2,1]],[[1,2,2,1],[1,2,2,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,1],[1,2,2,3],[2,1,3,2],[1,0,0,1]],[[1,2,2,2],[1,2,2,2],[2,1,3,2],[1,0,0,1]],[[1,2,3,1],[1,2,2,2],[2,1,3,2],[1,0,0,1]],[[1,3,2,1],[1,2,2,2],[2,1,3,2],[1,0,0,1]],[[2,2,2,1],[1,2,2,2],[2,1,3,2],[1,0,0,1]],[[1,2,2,1],[1,2,2,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,1],[1,2,2,3],[2,1,3,2],[0,1,0,1]],[[1,2,2,2],[1,2,2,2],[2,1,3,2],[0,1,0,1]],[[1,2,3,1],[1,2,2,2],[2,1,3,2],[0,1,0,1]],[[1,3,2,1],[1,2,2,2],[2,1,3,2],[0,1,0,1]],[[2,2,2,1],[1,2,2,2],[2,1,3,2],[0,1,0,1]],[[1,2,2,1],[1,2,2,3],[2,1,3,1],[1,1,1,0]],[[1,2,2,2],[1,2,2,2],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[1,2,2,2],[2,1,3,1],[1,1,1,0]],[[1,3,2,1],[1,2,2,2],[2,1,3,1],[1,1,1,0]],[[2,2,2,1],[1,2,2,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[1,2,2,3],[2,1,3,1],[1,1,0,1]],[[1,2,2,2],[1,2,2,2],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[1,2,2,2],[2,1,3,1],[1,1,0,1]],[[1,3,2,1],[1,2,2,2],[2,1,3,1],[1,1,0,1]],[[2,2,2,1],[1,2,2,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[1,2,2,3],[2,1,3,1],[1,0,2,0]],[[1,2,2,2],[1,2,2,2],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[1,2,2,2],[2,1,3,1],[1,0,2,0]],[[1,3,2,1],[1,2,2,2],[2,1,3,1],[1,0,2,0]],[[2,2,2,1],[1,2,2,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[1,2,2,3],[2,1,3,1],[1,0,1,1]],[[1,2,2,2],[1,2,2,2],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[1,2,2,2],[2,1,3,1],[1,0,1,1]],[[1,3,2,1],[1,2,2,2],[2,1,3,1],[1,0,1,1]],[[2,2,2,1],[1,2,2,2],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[1,2,2,3],[2,1,3,1],[0,2,1,0]],[[1,2,2,2],[1,2,2,2],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[1,2,2,2],[2,1,3,1],[0,2,1,0]],[[1,3,2,1],[1,2,2,2],[2,1,3,1],[0,2,1,0]],[[2,2,2,1],[1,2,2,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[1,2,2,3],[2,1,3,1],[0,2,0,1]],[[1,2,2,2],[1,2,2,2],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[1,2,2,2],[2,1,3,1],[0,2,0,1]],[[1,3,2,1],[1,2,2,2],[2,1,3,1],[0,2,0,1]],[[2,2,2,1],[1,2,2,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[1,2,2,3],[2,1,3,1],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[2,1,3,1],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[2,1,3,1],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[2,1,3,1],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[2,1,3,1],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[2,1,3,1],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[2,1,3,1],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[2,1,3,1],[0,0,2,1]],[[1,2,2,2],[1,2,2,2],[2,1,3,1],[0,0,2,1]],[[1,2,3,1],[1,2,2,2],[2,1,3,1],[0,0,2,1]],[[1,3,2,1],[1,2,2,2],[2,1,3,1],[0,0,2,1]],[[2,2,2,1],[1,2,2,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[2,1,3,0],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[2,1,3,0],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[2,1,3,0],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[2,1,3,0],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[2,1,3,0],[1,0,2,1]],[[1,2,2,2],[1,2,2,2],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[1,2,2,2],[2,1,3,0],[1,0,2,1]],[[1,3,2,1],[1,2,2,2],[2,1,3,0],[1,0,2,1]],[[2,2,2,1],[1,2,2,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[1,2,2,3],[2,1,3,0],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[2,1,3,0],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[2,1,3,0],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[2,1,3,0],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[2,1,3,0],[0,1,2,1]],[[1,2,2,2],[1,2,2,2],[2,1,3,0],[0,1,2,1]],[[1,2,3,1],[1,2,2,2],[2,1,3,0],[0,1,2,1]],[[1,3,2,1],[1,2,2,2],[2,1,3,0],[0,1,2,1]],[[2,2,2,1],[1,2,2,2],[2,1,3,0],[0,1,2,1]],[[1,2,2,1],[1,2,2,2],[2,1,2,3],[1,1,1,0]],[[1,2,2,1],[1,2,2,3],[2,1,2,2],[1,1,1,0]],[[1,2,2,2],[1,2,2,2],[2,1,2,2],[1,1,1,0]],[[1,2,3,1],[1,2,2,2],[2,1,2,2],[1,1,1,0]],[[1,3,2,1],[1,2,2,2],[2,1,2,2],[1,1,1,0]],[[2,2,2,1],[1,2,2,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[1,2,2,2],[2,1,2,2],[1,1,0,2]],[[1,2,2,1],[1,2,2,2],[2,1,2,3],[1,1,0,1]],[[1,2,2,1],[1,2,2,3],[2,1,2,2],[1,1,0,1]],[[1,2,2,2],[1,2,2,2],[2,1,2,2],[1,1,0,1]],[[1,2,3,1],[1,2,2,2],[2,1,2,2],[1,1,0,1]],[[1,3,2,1],[1,2,2,2],[2,1,2,2],[1,1,0,1]],[[2,2,2,1],[1,2,2,2],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[1,2,2,2],[2,1,2,3],[1,0,2,0]],[[1,2,2,1],[1,2,2,3],[2,1,2,2],[1,0,2,0]],[[1,2,2,2],[1,2,2,2],[2,1,2,2],[1,0,2,0]],[[1,2,3,1],[1,2,2,2],[2,1,2,2],[1,0,2,0]],[[1,3,2,1],[1,2,2,2],[2,1,2,2],[1,0,2,0]],[[2,2,2,1],[1,2,2,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[1,2,2,2],[2,1,2,2],[1,0,1,2]],[[1,2,2,1],[1,2,2,2],[2,1,2,3],[1,0,1,1]],[[1,2,2,1],[1,2,2,3],[2,1,2,2],[1,0,1,1]],[[1,2,2,2],[1,2,2,2],[2,1,2,2],[1,0,1,1]],[[1,2,3,1],[1,2,2,2],[2,1,2,2],[1,0,1,1]],[[1,3,2,1],[1,2,2,2],[2,1,2,2],[1,0,1,1]],[[2,2,2,1],[1,2,2,2],[2,1,2,2],[1,0,1,1]],[[1,2,2,1],[1,2,2,2],[2,1,2,3],[0,2,1,0]],[[1,2,2,1],[1,2,2,3],[2,1,2,2],[0,2,1,0]],[[1,2,2,2],[1,2,2,2],[2,1,2,2],[0,2,1,0]],[[1,2,3,1],[1,2,2,2],[2,1,2,2],[0,2,1,0]],[[1,3,2,1],[1,2,2,2],[2,1,2,2],[0,2,1,0]],[[2,2,2,1],[1,2,2,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,2,2],[2,1,2,2],[0,2,0,2]],[[1,2,2,1],[1,2,2,2],[2,1,2,3],[0,2,0,1]],[[1,2,2,1],[1,2,2,3],[2,1,2,2],[0,2,0,1]],[[1,2,2,2],[1,2,2,2],[2,1,2,2],[0,2,0,1]],[[1,2,3,1],[1,2,2,2],[2,1,2,2],[0,2,0,1]],[[1,3,2,1],[1,2,2,2],[2,1,2,2],[0,2,0,1]],[[2,2,2,1],[1,2,2,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,1],[1,2,2,2],[2,1,2,3],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[2,1,2,2],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[2,1,2,2],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[2,1,2,2],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[2,1,2,2],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[1,2,2,2],[2,1,2,2],[0,1,1,2]],[[1,2,2,1],[1,2,2,2],[2,1,2,3],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[2,1,2,2],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[2,1,2,2],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[2,1,2,2],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[2,1,2,2],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[1,2,2,2],[2,1,2,2],[0,0,2,2]],[[1,2,2,1],[1,2,2,2],[2,1,2,3],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[2,1,2,2],[0,0,2,1]],[[1,2,2,2],[1,2,2,2],[2,1,2,2],[0,0,2,1]],[[1,2,3,1],[1,2,2,2],[2,1,2,2],[0,0,2,1]],[[1,3,2,1],[1,2,2,2],[2,1,2,2],[0,0,2,1]],[[2,2,2,1],[1,2,2,2],[2,1,2,2],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[2,1,2,1],[1,2,1,0]],[[1,2,2,2],[1,2,2,2],[2,1,2,1],[1,2,1,0]],[[1,2,3,1],[1,2,2,2],[2,1,2,1],[1,2,1,0]],[[1,3,2,1],[1,2,2,2],[2,1,2,1],[1,2,1,0]],[[2,2,2,1],[1,2,2,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,1],[1,2,2,3],[2,1,2,1],[1,2,0,1]],[[1,2,2,2],[1,2,2,2],[2,1,2,1],[1,2,0,1]],[[1,2,3,1],[1,2,2,2],[2,1,2,1],[1,2,0,1]],[[1,3,2,1],[1,2,2,2],[2,1,2,1],[1,2,0,1]],[[2,2,2,1],[1,2,2,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,1],[1,2,2,3],[2,1,2,0],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[2,1,2,0],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[2,1,2,0],[1,2,1,1]],[[1,3,2,1],[1,2,2,2],[2,1,2,0],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[2,1,2,0],[1,2,1,1]],[[1,2,2,1],[1,2,2,2],[2,1,1,3],[1,2,1,0]],[[1,2,2,1],[1,2,2,3],[2,1,1,2],[1,2,1,0]],[[1,2,2,2],[1,2,2,2],[2,1,1,2],[1,2,1,0]],[[1,2,3,1],[1,2,2,2],[2,1,1,2],[1,2,1,0]],[[1,3,2,1],[1,2,2,2],[2,1,1,2],[1,2,1,0]],[[2,2,2,1],[1,2,2,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,1],[1,2,2,2],[2,1,1,2],[1,2,0,2]],[[1,2,2,1],[1,2,2,2],[2,1,1,3],[1,2,0,1]],[[1,2,2,1],[1,2,2,3],[2,1,1,2],[1,2,0,1]],[[1,2,2,2],[1,2,2,2],[2,1,1,2],[1,2,0,1]],[[1,2,3,1],[1,2,2,2],[2,1,1,2],[1,2,0,1]],[[1,3,2,1],[1,2,2,2],[2,1,1,2],[1,2,0,1]],[[2,2,2,1],[1,2,2,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,1],[1,2,2,2],[2,1,1,2],[1,0,2,2]],[[1,2,2,1],[1,2,2,2],[2,1,1,2],[1,0,3,1]],[[1,2,2,1],[1,2,2,2],[2,1,1,3],[1,0,2,1]],[[1,2,2,1],[1,2,2,3],[2,1,1,2],[1,0,2,1]],[[1,2,2,2],[1,2,2,2],[2,1,1,2],[1,0,2,1]],[[1,2,3,1],[1,2,2,2],[2,1,1,2],[1,0,2,1]],[[1,3,2,1],[1,2,2,2],[2,1,1,2],[1,0,2,1]],[[2,2,2,1],[1,2,2,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,1],[1,2,2,2],[2,1,1,2],[0,1,2,2]],[[1,2,2,1],[1,2,2,2],[2,1,1,2],[0,1,3,1]],[[1,2,2,1],[1,2,2,2],[2,1,1,3],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[2,1,1,2],[0,1,2,1]],[[1,2,2,2],[1,2,2,2],[2,1,1,2],[0,1,2,1]],[[1,2,3,1],[1,2,2,2],[2,1,1,2],[0,1,2,1]],[[1,3,2,1],[1,2,2,2],[2,1,1,2],[0,1,2,1]],[[2,2,2,1],[1,2,2,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[2,1,1,1],[1,2,2,0]],[[1,2,2,2],[1,2,2,2],[2,1,1,1],[1,2,2,0]],[[1,2,3,1],[1,2,2,2],[2,1,1,1],[1,2,2,0]],[[1,3,2,1],[1,2,2,2],[2,1,1,1],[1,2,2,0]],[[2,2,2,1],[1,2,2,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,1],[1,2,2,3],[2,1,1,0],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[2,1,1,0],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[2,1,1,0],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[2,1,1,0],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,1],[1,2,2,2],[2,1,0,3],[1,2,2,0]],[[1,2,2,1],[1,2,2,3],[2,1,0,2],[1,2,2,0]],[[1,2,2,2],[1,2,2,2],[2,1,0,2],[1,2,2,0]],[[1,2,3,1],[1,2,2,2],[2,1,0,2],[1,2,2,0]],[[1,3,2,1],[1,2,2,2],[2,1,0,2],[1,2,2,0]],[[2,2,2,1],[1,2,2,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,1],[1,2,2,2],[2,1,0,2],[1,2,1,2]],[[1,2,2,1],[1,2,2,2],[2,1,0,3],[1,2,1,1]],[[1,2,2,1],[1,2,2,3],[2,1,0,2],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[2,1,0,2],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[2,1,0,2],[1,2,1,1]],[[1,3,2,1],[1,2,2,2],[2,1,0,2],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,1],[1,2,2,2],[2,1,0,2],[1,1,2,2]],[[1,2,2,1],[1,2,2,2],[2,1,0,2],[1,1,3,1]],[[1,2,2,1],[1,2,2,2],[2,1,0,3],[1,1,2,1]],[[1,2,2,1],[1,2,2,3],[2,1,0,2],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[2,1,0,2],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[2,1,0,2],[1,1,2,1]],[[1,3,2,1],[1,2,2,2],[2,1,0,2],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,1],[1,2,2,2],[2,1,0,2],[0,2,2,2]],[[1,2,2,1],[1,2,2,2],[2,1,0,2],[0,2,3,1]],[[1,2,2,1],[1,2,2,2],[2,1,0,2],[0,3,2,1]],[[1,2,2,1],[1,2,2,2],[2,1,0,3],[0,2,2,1]],[[1,2,2,1],[1,2,2,3],[2,1,0,2],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[2,1,0,2],[0,2,2,1]],[[1,2,3,1],[1,2,2,2],[2,1,0,2],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[2,1,0,2],[0,2,2,1]],[[2,2,2,1],[1,2,2,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[1,2,2,3],[2,1,0,1],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[2,1,0,1],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[2,1,0,1],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[2,1,0,1],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[2,1,0,1],[1,2,2,1]],[[1,2,2,1],[1,2,2,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[1,2,2,3],[2,0,3,2],[1,0,2,0]],[[1,2,2,2],[1,2,2,2],[2,0,3,2],[1,0,2,0]],[[1,2,3,1],[1,2,2,2],[2,0,3,2],[1,0,2,0]],[[1,3,2,1],[1,2,2,2],[2,0,3,2],[1,0,2,0]],[[2,2,2,1],[1,2,2,2],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[1,2,2,2],[2,0,3,2],[1,0,1,2]],[[1,2,2,1],[1,2,2,2],[2,0,3,3],[1,0,1,1]],[[1,2,2,1],[1,2,2,3],[2,0,3,2],[1,0,1,1]],[[1,2,2,2],[1,2,2,2],[2,0,3,2],[1,0,1,1]],[[1,2,3,1],[1,2,2,2],[2,0,3,2],[1,0,1,1]],[[1,3,2,1],[1,2,2,2],[2,0,3,2],[1,0,1,1]],[[2,2,2,1],[1,2,2,2],[2,0,3,2],[1,0,1,1]],[[1,2,2,1],[1,2,2,2],[2,0,3,3],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[2,0,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[2,0,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[2,0,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[2,0,3,2],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,2,2],[2,0,3,2],[0,1,1,2]],[[1,2,2,1],[1,2,2,2],[2,0,3,3],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[2,0,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[2,0,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[2,0,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[2,0,3,2],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,2,2],[2,0,3,2],[0,0,2,2]],[[1,2,2,1],[1,2,2,2],[2,0,3,3],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[2,0,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,2,2],[2,0,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,2,2],[2,0,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,2,2],[2,0,3,2],[0,0,2,1]],[[2,2,2,1],[1,2,2,2],[2,0,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[2,0,3,1],[1,2,1,0]],[[1,2,2,2],[1,2,2,2],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[1,2,2,2],[2,0,3,1],[1,2,1,0]],[[1,3,2,1],[1,2,2,2],[2,0,3,1],[1,2,1,0]],[[2,2,2,1],[1,2,2,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[1,2,2,3],[2,0,3,1],[1,2,0,1]],[[1,2,2,2],[1,2,2,2],[2,0,3,1],[1,2,0,1]],[[1,2,3,1],[1,2,2,2],[2,0,3,1],[1,2,0,1]],[[1,3,2,1],[1,2,2,2],[2,0,3,1],[1,2,0,1]],[[2,2,2,1],[1,2,2,2],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[1,2,2,3],[2,0,3,1],[1,1,2,0]],[[1,2,2,2],[1,2,2,2],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[1,2,2,2],[2,0,3,1],[1,1,2,0]],[[1,3,2,1],[1,2,2,2],[2,0,3,1],[1,1,2,0]],[[2,2,2,1],[1,2,2,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[1,2,2,3],[2,0,3,1],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[2,0,3,1],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[2,0,3,1],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[2,0,3,1],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[2,0,3,1],[0,2,2,0]],[[1,2,2,2],[1,2,2,2],[2,0,3,1],[0,2,2,0]],[[1,2,3,1],[1,2,2,2],[2,0,3,1],[0,2,2,0]],[[1,3,2,1],[1,2,2,2],[2,0,3,1],[0,2,2,0]],[[2,2,2,1],[1,2,2,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[1,2,2,3],[2,0,3,1],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[2,0,3,1],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[2,0,3,1],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[2,0,3,1],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[2,0,3,1],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[2,0,3,0],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[2,0,3,0],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[2,0,3,0],[1,2,1,1]],[[1,3,2,1],[1,2,2,2],[2,0,3,0],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[1,2,2,3],[2,0,3,0],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[2,0,3,0],[1,1,2,1]],[[1,3,2,1],[1,2,2,2],[2,0,3,0],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,1],[1,2,2,3],[2,0,3,0],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[1,2,2,2],[2,0,3,0],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[2,0,3,0],[0,2,2,1]],[[2,2,2,1],[1,2,2,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[1,2,2,2],[2,0,2,3],[1,2,1,0]],[[1,2,2,1],[1,2,2,3],[2,0,2,2],[1,2,1,0]],[[1,2,2,2],[1,2,2,2],[2,0,2,2],[1,2,1,0]],[[1,2,3,1],[1,2,2,2],[2,0,2,2],[1,2,1,0]],[[1,3,2,1],[1,2,2,2],[2,0,2,2],[1,2,1,0]],[[2,2,2,1],[1,2,2,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[1,2,2,2],[2,0,2,2],[1,2,0,2]],[[1,2,2,1],[1,2,2,2],[2,0,2,3],[1,2,0,1]],[[1,2,2,1],[1,2,2,3],[2,0,2,2],[1,2,0,1]],[[1,2,2,2],[1,2,2,2],[2,0,2,2],[1,2,0,1]],[[1,2,3,1],[1,2,2,2],[2,0,2,2],[1,2,0,1]],[[1,3,2,1],[1,2,2,2],[2,0,2,2],[1,2,0,1]],[[2,2,2,1],[1,2,2,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[1,2,2,2],[2,0,2,3],[1,1,2,0]],[[1,2,2,1],[1,2,2,3],[2,0,2,2],[1,1,2,0]],[[1,2,2,2],[1,2,2,2],[2,0,2,2],[1,1,2,0]],[[1,2,3,1],[1,2,2,2],[2,0,2,2],[1,1,2,0]],[[1,3,2,1],[1,2,2,2],[2,0,2,2],[1,1,2,0]],[[2,2,2,1],[1,2,2,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[1,2,2,2],[2,0,2,2],[1,1,1,2]],[[1,2,2,1],[1,2,2,2],[2,0,2,3],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[2,0,2,2],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[2,0,2,2],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[2,0,2,2],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[2,0,2,2],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[2,0,2,2],[1,1,1,1]],[[1,2,2,1],[1,2,2,2],[2,0,2,3],[0,2,2,0]],[[1,2,2,1],[1,2,2,3],[2,0,2,2],[0,2,2,0]],[[1,2,2,2],[1,2,2,2],[2,0,2,2],[0,2,2,0]],[[1,2,3,1],[1,2,2,2],[2,0,2,2],[0,2,2,0]],[[1,3,2,1],[1,2,2,2],[2,0,2,2],[0,2,2,0]],[[2,2,2,1],[1,2,2,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[1,2,2,2],[2,0,2,2],[0,2,1,2]],[[1,2,2,1],[1,2,2,2],[2,0,2,3],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[2,0,2,2],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[2,0,2,2],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[2,0,2,2],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[2,0,2,2],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[2,0,2,1],[1,2,2,0]],[[1,2,2,2],[1,2,2,2],[2,0,2,1],[1,2,2,0]],[[1,2,3,1],[1,2,2,2],[2,0,2,1],[1,2,2,0]],[[1,3,2,1],[1,2,2,2],[2,0,2,1],[1,2,2,0]],[[2,2,2,1],[1,2,2,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,1],[1,2,2,3],[2,0,2,0],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[2,0,2,0],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[2,0,2,0],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[2,0,2,0],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,0],[0,0,1,2],[2,3,3,3],[1,2,2,1]],[[0,2,2,0],[0,0,1,2],[2,3,3,2],[2,2,2,1]],[[0,2,2,0],[0,0,1,2],[2,3,3,2],[1,3,2,1]],[[0,2,2,0],[0,0,1,2],[2,3,3,2],[1,2,3,1]],[[0,2,2,0],[0,0,1,2],[2,3,3,2],[1,2,2,2]],[[0,2,2,0],[0,0,2,3],[2,3,2,2],[1,2,2,1]],[[0,2,2,0],[0,0,2,2],[2,3,2,3],[1,2,2,1]],[[0,2,2,0],[0,0,2,2],[2,3,2,2],[2,2,2,1]],[[0,2,2,0],[0,0,2,2],[2,3,2,2],[1,3,2,1]],[[0,2,2,0],[0,0,2,2],[2,3,2,2],[1,2,3,1]],[[0,2,2,0],[0,0,2,2],[2,3,2,2],[1,2,2,2]],[[0,2,2,0],[0,0,2,2],[2,3,4,1],[1,2,2,1]],[[0,2,2,0],[0,0,2,2],[2,3,3,1],[2,2,2,1]],[[0,2,2,0],[0,0,2,2],[2,3,3,1],[1,3,2,1]],[[0,2,2,0],[0,0,2,2],[2,3,3,1],[1,2,3,1]],[[0,2,2,0],[0,0,2,2],[2,3,3,1],[1,2,2,2]],[[0,2,2,0],[0,0,2,3],[2,3,3,2],[1,2,1,1]],[[0,2,2,0],[0,0,2,2],[2,3,4,2],[1,2,1,1]],[[0,2,2,0],[0,0,2,2],[2,3,3,3],[1,2,1,1]],[[0,2,2,0],[0,0,2,2],[2,3,3,2],[1,2,1,2]],[[0,2,2,0],[0,0,2,3],[2,3,3,2],[1,2,2,0]],[[0,2,2,0],[0,0,2,2],[2,3,4,2],[1,2,2,0]],[[0,2,2,0],[0,0,2,2],[2,3,3,3],[1,2,2,0]],[[0,2,2,0],[0,0,2,2],[2,3,3,2],[2,2,2,0]],[[0,2,2,0],[0,0,2,2],[2,3,3,2],[1,3,2,0]],[[0,2,2,0],[0,0,2,2],[2,3,3,2],[1,2,3,0]],[[0,2,2,0],[0,0,3,0],[2,3,4,2],[1,2,2,1]],[[0,2,2,0],[0,0,3,0],[2,3,3,2],[2,2,2,1]],[[0,2,2,0],[0,0,3,0],[2,3,3,2],[1,3,2,1]],[[0,2,2,0],[0,0,3,0],[2,3,3,2],[1,2,3,1]],[[0,2,2,0],[0,0,3,0],[2,3,3,2],[1,2,2,2]],[[0,2,2,0],[0,0,3,1],[2,3,2,3],[1,2,2,1]],[[0,2,2,0],[0,0,3,1],[2,3,2,2],[2,2,2,1]],[[0,2,2,0],[0,0,3,1],[2,3,2,2],[1,3,2,1]],[[0,2,2,0],[0,0,3,1],[2,3,2,2],[1,2,3,1]],[[0,2,2,0],[0,0,3,1],[2,3,2,2],[1,2,2,2]],[[0,2,2,0],[0,0,3,1],[2,3,4,1],[1,2,2,1]],[[0,2,2,0],[0,0,3,1],[2,3,3,1],[2,2,2,1]],[[0,2,2,0],[0,0,3,1],[2,3,3,1],[1,3,2,1]],[[0,2,2,0],[0,0,3,1],[2,3,3,1],[1,2,3,1]],[[0,2,2,0],[0,0,3,1],[2,3,3,1],[1,2,2,2]],[[0,2,2,0],[0,0,3,1],[2,3,4,2],[1,2,1,1]],[[0,2,2,0],[0,0,3,1],[2,3,3,3],[1,2,1,1]],[[0,2,2,0],[0,0,3,1],[2,3,3,2],[1,2,1,2]],[[0,2,2,0],[0,0,3,1],[2,3,4,2],[1,2,2,0]],[[0,2,2,0],[0,0,3,1],[2,3,3,3],[1,2,2,0]],[[0,2,2,0],[0,0,3,1],[2,3,3,2],[2,2,2,0]],[[0,2,2,0],[0,0,3,1],[2,3,3,2],[1,3,2,0]],[[0,2,2,0],[0,0,3,1],[2,3,3,2],[1,2,3,0]],[[0,2,2,0],[0,0,3,3],[2,1,3,2],[1,2,2,1]],[[0,2,2,0],[0,0,3,2],[2,1,3,3],[1,2,2,1]],[[0,2,2,0],[0,0,3,2],[2,1,3,2],[1,2,3,1]],[[0,2,2,0],[0,0,3,2],[2,1,3,2],[1,2,2,2]],[[0,2,2,0],[0,0,3,3],[2,2,2,2],[1,2,2,1]],[[0,2,2,0],[0,0,3,2],[2,2,2,3],[1,2,2,1]],[[0,2,2,0],[0,0,3,2],[2,2,2,2],[2,2,2,1]],[[0,2,2,0],[0,0,3,2],[2,2,2,2],[1,3,2,1]],[[0,2,2,0],[0,0,3,2],[2,2,2,2],[1,2,3,1]],[[0,2,2,0],[0,0,3,2],[2,2,2,2],[1,2,2,2]],[[0,2,2,0],[0,0,3,2],[2,2,4,1],[1,2,2,1]],[[0,2,2,0],[0,0,3,2],[2,2,3,1],[2,2,2,1]],[[0,2,2,0],[0,0,3,2],[2,2,3,1],[1,3,2,1]],[[0,2,2,0],[0,0,3,2],[2,2,3,1],[1,2,3,1]],[[0,2,2,0],[0,0,3,2],[2,2,3,1],[1,2,2,2]],[[0,2,2,0],[0,0,3,3],[2,2,3,2],[1,2,1,1]],[[0,2,2,0],[0,0,3,2],[2,2,4,2],[1,2,1,1]],[[0,2,2,0],[0,0,3,2],[2,2,3,3],[1,2,1,1]],[[0,2,2,0],[0,0,3,2],[2,2,3,2],[1,2,1,2]],[[0,2,2,0],[0,0,3,3],[2,2,3,2],[1,2,2,0]],[[0,2,2,0],[0,0,3,2],[2,2,4,2],[1,2,2,0]],[[0,2,2,0],[0,0,3,2],[2,2,3,3],[1,2,2,0]],[[0,2,2,0],[0,0,3,2],[2,2,3,2],[2,2,2,0]],[[0,2,2,0],[0,0,3,2],[2,2,3,2],[1,3,2,0]],[[0,2,2,0],[0,0,3,2],[2,2,3,2],[1,2,3,0]],[[0,2,2,0],[0,0,3,3],[2,3,2,2],[1,1,2,1]],[[0,2,2,0],[0,0,3,2],[2,3,2,3],[1,1,2,1]],[[0,2,2,0],[0,0,3,2],[2,3,2,2],[1,1,3,1]],[[0,2,2,0],[0,0,3,2],[2,3,2,2],[1,1,2,2]],[[0,2,2,0],[0,0,3,2],[2,3,4,0],[1,2,2,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,0],[2,2,2,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,0],[1,3,2,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,0],[1,2,3,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,0],[1,2,2,2]],[[0,2,2,0],[0,0,3,2],[2,3,4,1],[1,1,2,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,1],[1,1,3,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,1],[1,1,2,2]],[[0,2,2,0],[0,0,3,2],[2,3,4,1],[1,2,2,0]],[[0,2,2,0],[0,0,3,2],[2,3,3,1],[2,2,2,0]],[[0,2,2,0],[0,0,3,2],[2,3,3,1],[1,3,2,0]],[[0,2,2,0],[0,0,3,2],[2,3,3,1],[1,2,3,0]],[[0,2,2,0],[0,0,3,3],[2,3,3,2],[1,0,2,1]],[[0,2,2,0],[0,0,3,2],[2,3,4,2],[1,0,2,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,3],[1,0,2,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,2],[1,0,2,2]],[[0,2,2,0],[0,0,3,3],[2,3,3,2],[1,1,1,1]],[[0,2,2,0],[0,0,3,2],[2,3,4,2],[1,1,1,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,3],[1,1,1,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,2],[1,1,1,2]],[[0,2,2,0],[0,0,3,3],[2,3,3,2],[1,1,2,0]],[[0,2,2,0],[0,0,3,2],[2,3,4,2],[1,1,2,0]],[[0,2,2,0],[0,0,3,2],[2,3,3,3],[1,1,2,0]],[[0,2,2,0],[0,0,3,2],[2,3,3,2],[1,1,3,0]],[[0,2,2,0],[0,0,3,3],[2,3,3,2],[1,2,0,1]],[[0,2,2,0],[0,0,3,2],[2,3,4,2],[1,2,0,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,3],[1,2,0,1]],[[0,2,2,0],[0,0,3,2],[2,3,3,2],[1,2,0,2]],[[0,2,2,0],[0,0,3,3],[2,3,3,2],[1,2,1,0]],[[0,2,2,0],[0,0,3,2],[2,3,4,2],[1,2,1,0]],[[0,2,2,0],[0,0,3,2],[2,3,3,3],[1,2,1,0]],[[1,2,2,1],[1,2,2,2],[2,0,1,3],[1,2,2,0]],[[1,2,2,1],[1,2,2,3],[2,0,1,2],[1,2,2,0]],[[1,2,2,2],[1,2,2,2],[2,0,1,2],[1,2,2,0]],[[1,2,3,1],[1,2,2,2],[2,0,1,2],[1,2,2,0]],[[1,3,2,1],[1,2,2,2],[2,0,1,2],[1,2,2,0]],[[2,2,2,1],[1,2,2,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[1,2,2,2],[2,0,1,2],[1,2,1,2]],[[0,2,2,0],[0,1,1,2],[2,2,3,3],[1,2,2,1]],[[0,2,2,0],[0,1,1,2],[2,2,3,2],[2,2,2,1]],[[0,2,2,0],[0,1,1,2],[2,2,3,2],[1,3,2,1]],[[0,2,2,0],[0,1,1,2],[2,2,3,2],[1,2,3,1]],[[0,2,2,0],[0,1,1,2],[2,2,3,2],[1,2,2,2]],[[0,2,2,0],[0,1,1,2],[2,3,3,3],[1,1,2,1]],[[0,2,2,0],[0,1,1,2],[2,3,3,2],[1,1,3,1]],[[0,2,2,0],[0,1,1,2],[2,3,3,2],[1,1,2,2]],[[0,2,2,0],[0,1,2,3],[2,1,3,2],[1,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,1,3,3],[1,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,1,3,2],[1,2,3,1]],[[0,2,2,0],[0,1,2,2],[2,1,3,2],[1,2,2,2]],[[0,2,2,0],[0,1,2,3],[2,2,2,2],[1,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,2,2,3],[1,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,2,2,2],[2,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,2,2,2],[1,3,2,1]],[[0,2,2,0],[0,1,2,2],[2,2,2,2],[1,2,3,1]],[[0,2,2,0],[0,1,2,2],[2,2,2,2],[1,2,2,2]],[[0,2,2,0],[0,1,2,2],[2,2,4,1],[1,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,2,3,1],[2,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,2,3,1],[1,3,2,1]],[[0,2,2,0],[0,1,2,2],[2,2,3,1],[1,2,3,1]],[[0,2,2,0],[0,1,2,2],[2,2,3,1],[1,2,2,2]],[[0,2,2,0],[0,1,2,3],[2,2,3,2],[1,2,1,1]],[[0,2,2,0],[0,1,2,2],[2,2,4,2],[1,2,1,1]],[[0,2,2,0],[0,1,2,2],[2,2,3,3],[1,2,1,1]],[[0,2,2,0],[0,1,2,2],[2,2,3,2],[1,2,1,2]],[[0,2,2,0],[0,1,2,3],[2,2,3,2],[1,2,2,0]],[[0,2,2,0],[0,1,2,2],[2,2,4,2],[1,2,2,0]],[[0,2,2,0],[0,1,2,2],[2,2,3,3],[1,2,2,0]],[[0,2,2,0],[0,1,2,2],[2,2,3,2],[2,2,2,0]],[[0,2,2,0],[0,1,2,2],[2,2,3,2],[1,3,2,0]],[[0,2,2,0],[0,1,2,2],[2,2,3,2],[1,2,3,0]],[[0,2,2,0],[0,1,2,3],[2,3,1,2],[1,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,4,1,2],[1,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,1,3],[1,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,1,2],[2,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,1,2],[1,3,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,1,2],[1,2,3,1]],[[0,2,2,0],[0,1,2,2],[2,3,1,2],[1,2,2,2]],[[0,2,2,0],[0,1,2,2],[2,4,2,1],[1,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,2,1],[2,2,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,2,1],[1,3,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,2,1],[1,2,3,1]],[[0,2,2,0],[0,1,2,2],[2,3,2,1],[1,2,2,2]],[[0,2,2,0],[0,1,2,3],[2,3,2,2],[1,1,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,2,3],[1,1,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,2,2],[1,1,3,1]],[[0,2,2,0],[0,1,2,2],[2,3,2,2],[1,1,2,2]],[[0,2,2,0],[0,1,2,2],[2,4,2,2],[1,2,2,0]],[[0,2,2,0],[0,1,2,2],[2,3,2,2],[2,2,2,0]],[[0,2,2,0],[0,1,2,2],[2,3,2,2],[1,3,2,0]],[[0,2,2,0],[0,1,2,2],[2,3,2,2],[1,2,3,0]],[[0,2,2,0],[0,1,2,2],[2,4,3,1],[1,1,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,4,1],[1,1,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,1],[1,1,3,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,1],[1,1,2,2]],[[0,2,2,0],[0,1,2,2],[2,4,3,1],[1,2,1,1]],[[0,2,2,0],[0,1,2,2],[2,3,4,1],[1,2,1,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,1],[2,2,1,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,1],[1,3,1,1]],[[0,2,2,0],[0,1,2,3],[2,3,3,2],[1,0,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,4,2],[1,0,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,3],[1,0,2,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,2],[1,0,2,2]],[[0,2,2,0],[0,1,2,3],[2,3,3,2],[1,1,1,1]],[[0,2,2,0],[0,1,2,2],[2,4,3,2],[1,1,1,1]],[[0,2,2,0],[0,1,2,2],[2,3,4,2],[1,1,1,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,3],[1,1,1,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,2],[1,1,1,2]],[[0,2,2,0],[0,1,2,3],[2,3,3,2],[1,1,2,0]],[[0,2,2,0],[0,1,2,2],[2,4,3,2],[1,1,2,0]],[[0,2,2,0],[0,1,2,2],[2,3,4,2],[1,1,2,0]],[[0,2,2,0],[0,1,2,2],[2,3,3,3],[1,1,2,0]],[[0,2,2,0],[0,1,2,2],[2,3,3,2],[1,1,3,0]],[[0,2,2,0],[0,1,2,3],[2,3,3,2],[1,2,0,1]],[[0,2,2,0],[0,1,2,2],[2,4,3,2],[1,2,0,1]],[[0,2,2,0],[0,1,2,2],[2,3,4,2],[1,2,0,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,3],[1,2,0,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,2],[2,2,0,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,2],[1,3,0,1]],[[0,2,2,0],[0,1,2,2],[2,3,3,2],[1,2,0,2]],[[0,2,2,0],[0,1,2,3],[2,3,3,2],[1,2,1,0]],[[0,2,2,0],[0,1,2,2],[2,4,3,2],[1,2,1,0]],[[0,2,2,0],[0,1,2,2],[2,3,4,2],[1,2,1,0]],[[0,2,2,0],[0,1,2,2],[2,3,3,3],[1,2,1,0]],[[0,2,2,0],[0,1,2,2],[2,3,3,2],[2,2,1,0]],[[0,2,2,0],[0,1,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,2,2,2],[2,0,1,3],[1,2,1,1]],[[1,2,2,1],[1,2,2,3],[2,0,1,2],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[2,0,1,2],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[2,0,1,2],[1,2,1,1]],[[1,3,2,1],[1,2,2,2],[2,0,1,2],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[1,2,2,2],[2,0,1,2],[1,1,2,2]],[[1,2,2,1],[1,2,2,2],[2,0,1,2],[1,1,3,1]],[[0,2,2,0],[0,1,3,0],[2,2,4,2],[1,2,2,1]],[[0,2,2,0],[0,1,3,0],[2,2,3,2],[2,2,2,1]],[[0,2,2,0],[0,1,3,0],[2,2,3,2],[1,3,2,1]],[[0,2,2,0],[0,1,3,0],[2,2,3,2],[1,2,3,1]],[[0,2,2,0],[0,1,3,0],[2,2,3,2],[1,2,2,2]],[[0,2,2,0],[0,1,3,0],[2,4,2,2],[1,2,2,1]],[[0,2,2,0],[0,1,3,0],[2,3,2,2],[2,2,2,1]],[[0,2,2,0],[0,1,3,0],[2,3,2,2],[1,3,2,1]],[[0,2,2,0],[0,1,3,0],[2,3,2,2],[1,2,3,1]],[[0,2,2,0],[0,1,3,0],[2,3,2,2],[1,2,2,2]],[[0,2,2,0],[0,1,3,0],[2,4,3,2],[1,1,2,1]],[[0,2,2,0],[0,1,3,0],[2,3,4,2],[1,1,2,1]],[[0,2,2,0],[0,1,3,0],[2,3,3,2],[1,1,3,1]],[[0,2,2,0],[0,1,3,0],[2,3,3,2],[1,1,2,2]],[[0,2,2,0],[0,1,3,0],[2,4,3,2],[1,2,1,1]],[[0,2,2,0],[0,1,3,0],[2,3,4,2],[1,2,1,1]],[[0,2,2,0],[0,1,3,0],[2,3,3,2],[2,2,1,1]],[[0,2,2,0],[0,1,3,0],[2,3,3,2],[1,3,1,1]],[[0,2,2,0],[0,1,3,1],[2,1,3,3],[1,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,1,3,2],[1,2,3,1]],[[0,2,2,0],[0,1,3,1],[2,1,3,2],[1,2,2,2]],[[0,2,2,0],[0,1,3,1],[2,2,2,3],[1,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,2,2,2],[2,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,2,2,2],[1,3,2,1]],[[0,2,2,0],[0,1,3,1],[2,2,2,2],[1,2,3,1]],[[0,2,2,0],[0,1,3,1],[2,2,2,2],[1,2,2,2]],[[0,2,3,0],[0,1,3,1],[2,2,3,1],[1,2,2,1]],[[0,2,2,0],[0,1,4,1],[2,2,3,1],[1,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,2,4,1],[1,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,2,3,1],[2,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,2,3,1],[1,3,2,1]],[[0,2,2,0],[0,1,3,1],[2,2,3,1],[1,2,3,1]],[[0,2,2,0],[0,1,3,1],[2,2,3,1],[1,2,2,2]],[[0,2,3,0],[0,1,3,1],[2,2,3,2],[1,2,1,1]],[[0,2,2,0],[0,1,4,1],[2,2,3,2],[1,2,1,1]],[[0,2,2,0],[0,1,3,1],[2,2,4,2],[1,2,1,1]],[[0,2,2,0],[0,1,3,1],[2,2,3,3],[1,2,1,1]],[[0,2,2,0],[0,1,3,1],[2,2,3,2],[1,2,1,2]],[[0,2,3,0],[0,1,3,1],[2,2,3,2],[1,2,2,0]],[[0,2,2,0],[0,1,4,1],[2,2,3,2],[1,2,2,0]],[[0,2,2,0],[0,1,3,1],[2,2,4,2],[1,2,2,0]],[[0,2,2,0],[0,1,3,1],[2,2,3,3],[1,2,2,0]],[[0,2,2,0],[0,1,3,1],[2,2,3,2],[2,2,2,0]],[[0,2,2,0],[0,1,3,1],[2,2,3,2],[1,3,2,0]],[[0,2,2,0],[0,1,3,1],[2,2,3,2],[1,2,3,0]],[[0,2,2,0],[0,1,3,1],[2,4,1,2],[1,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,1,3],[1,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,1,2],[2,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,1,2],[1,3,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,1,2],[1,2,3,1]],[[0,2,2,0],[0,1,3,1],[2,3,1,2],[1,2,2,2]],[[0,2,2,0],[0,1,3,1],[2,4,2,1],[1,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,2,1],[2,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,2,1],[1,3,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,2,1],[1,2,3,1]],[[0,2,2,0],[0,1,3,1],[2,3,2,1],[1,2,2,2]],[[0,2,2,0],[0,1,3,1],[2,3,2,3],[1,1,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,2,2],[1,1,3,1]],[[0,2,2,0],[0,1,3,1],[2,3,2,2],[1,1,2,2]],[[0,2,2,0],[0,1,3,1],[2,4,2,2],[1,2,2,0]],[[0,2,2,0],[0,1,3,1],[2,3,2,2],[2,2,2,0]],[[0,2,2,0],[0,1,3,1],[2,3,2,2],[1,3,2,0]],[[0,2,2,0],[0,1,3,1],[2,3,2,2],[1,2,3,0]],[[0,2,2,0],[0,1,3,1],[2,4,3,0],[1,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,0],[2,2,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,0],[1,3,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,0],[1,2,3,1]],[[0,2,3,0],[0,1,3,1],[2,3,3,1],[1,1,2,1]],[[0,2,2,0],[0,1,4,1],[2,3,3,1],[1,1,2,1]],[[0,2,2,0],[0,1,3,1],[2,4,3,1],[1,1,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,4,1],[1,1,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,1],[1,1,3,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,1],[1,1,2,2]],[[0,2,3,0],[0,1,3,1],[2,3,3,1],[1,2,1,1]],[[0,2,2,0],[0,1,4,1],[2,3,3,1],[1,2,1,1]],[[0,2,2,0],[0,1,3,1],[2,4,3,1],[1,2,1,1]],[[0,2,2,0],[0,1,3,1],[2,3,4,1],[1,2,1,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,1],[2,2,1,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,1],[1,3,1,1]],[[0,2,2,0],[0,1,3,1],[2,3,4,2],[1,0,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,3],[1,0,2,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,2],[1,0,2,2]],[[0,2,3,0],[0,1,3,1],[2,3,3,2],[1,1,1,1]],[[0,2,2,0],[0,1,4,1],[2,3,3,2],[1,1,1,1]],[[0,2,2,0],[0,1,3,1],[2,4,3,2],[1,1,1,1]],[[0,2,2,0],[0,1,3,1],[2,3,4,2],[1,1,1,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,3],[1,1,1,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,2],[1,1,1,2]],[[0,2,3,0],[0,1,3,1],[2,3,3,2],[1,1,2,0]],[[0,2,2,0],[0,1,4,1],[2,3,3,2],[1,1,2,0]],[[0,2,2,0],[0,1,3,1],[2,4,3,2],[1,1,2,0]],[[0,2,2,0],[0,1,3,1],[2,3,4,2],[1,1,2,0]],[[0,2,2,0],[0,1,3,1],[2,3,3,3],[1,1,2,0]],[[0,2,2,0],[0,1,3,1],[2,3,3,2],[1,1,3,0]],[[0,2,3,0],[0,1,3,1],[2,3,3,2],[1,2,0,1]],[[0,2,2,0],[0,1,4,1],[2,3,3,2],[1,2,0,1]],[[0,2,2,0],[0,1,3,1],[2,4,3,2],[1,2,0,1]],[[0,2,2,0],[0,1,3,1],[2,3,4,2],[1,2,0,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,3],[1,2,0,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,2],[2,2,0,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,2],[1,3,0,1]],[[0,2,2,0],[0,1,3,1],[2,3,3,2],[1,2,0,2]],[[0,2,3,0],[0,1,3,1],[2,3,3,2],[1,2,1,0]],[[0,2,2,0],[0,1,4,1],[2,3,3,2],[1,2,1,0]],[[0,2,2,0],[0,1,3,1],[2,4,3,2],[1,2,1,0]],[[0,2,2,0],[0,1,3,1],[2,3,4,2],[1,2,1,0]],[[0,2,2,0],[0,1,3,1],[2,3,3,3],[1,2,1,0]],[[0,2,2,0],[0,1,3,1],[2,3,3,2],[2,2,1,0]],[[0,2,2,0],[0,1,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,2,2,2],[2,0,1,3],[1,1,2,1]],[[1,2,2,1],[1,2,2,3],[2,0,1,2],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[2,0,1,2],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[2,0,1,2],[1,1,2,1]],[[1,3,2,1],[1,2,2,2],[2,0,1,2],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[1,2,2,2],[2,0,1,2],[0,2,2,2]],[[1,2,2,1],[1,2,2,2],[2,0,1,2],[0,2,3,1]],[[1,2,2,1],[1,2,2,2],[2,0,1,2],[0,3,2,1]],[[1,2,2,1],[1,2,2,2],[2,0,1,3],[0,2,2,1]],[[1,2,2,1],[1,2,2,3],[2,0,1,2],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[2,0,1,2],[0,2,2,1]],[[0,2,3,0],[0,1,3,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[0,1,4,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[0,1,3,3],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,2,1,3],[1,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,2,1,2],[2,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,2,1,2],[1,3,2,1]],[[0,2,2,0],[0,1,3,2],[2,2,1,2],[1,2,3,1]],[[0,2,2,0],[0,1,3,2],[2,2,1,2],[1,2,2,2]],[[0,2,3,0],[0,1,3,2],[2,2,2,2],[1,2,1,1]],[[0,2,2,0],[0,1,4,2],[2,2,2,2],[1,2,1,1]],[[0,2,2,0],[0,1,3,3],[2,2,2,2],[1,2,1,1]],[[0,2,2,0],[0,1,3,2],[2,2,2,3],[1,2,1,1]],[[0,2,2,0],[0,1,3,2],[2,2,2,2],[1,2,1,2]],[[0,2,3,0],[0,1,3,2],[2,2,2,2],[1,2,2,0]],[[0,2,2,0],[0,1,4,2],[2,2,2,2],[1,2,2,0]],[[0,2,2,0],[0,1,3,3],[2,2,2,2],[1,2,2,0]],[[0,2,2,0],[0,1,3,2],[2,2,2,3],[1,2,2,0]],[[0,2,3,0],[0,1,3,2],[2,2,3,0],[1,2,2,1]],[[0,2,2,0],[0,1,4,2],[2,2,3,0],[1,2,2,1]],[[0,2,2,0],[0,1,3,3],[2,2,3,0],[1,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,2,4,0],[1,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,2,3,0],[2,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,2,3,0],[1,3,2,1]],[[0,2,2,0],[0,1,3,2],[2,2,3,0],[1,2,3,1]],[[0,2,2,0],[0,1,3,2],[2,2,3,0],[1,2,2,2]],[[0,2,3,0],[0,1,3,2],[2,2,3,1],[1,2,1,1]],[[0,2,2,0],[0,1,4,2],[2,2,3,1],[1,2,1,1]],[[0,2,2,0],[0,1,3,3],[2,2,3,1],[1,2,1,1]],[[0,2,2,0],[0,1,3,2],[2,2,4,1],[1,2,1,1]],[[0,2,3,0],[0,1,3,2],[2,2,3,1],[1,2,2,0]],[[0,2,2,0],[0,1,4,2],[2,2,3,1],[1,2,2,0]],[[0,2,2,0],[0,1,3,3],[2,2,3,1],[1,2,2,0]],[[0,2,2,0],[0,1,3,2],[2,2,4,1],[1,2,2,0]],[[0,2,2,0],[0,1,3,2],[2,2,3,1],[2,2,2,0]],[[0,2,2,0],[0,1,3,2],[2,2,3,1],[1,3,2,0]],[[0,2,2,0],[0,1,3,2],[2,2,3,1],[1,2,3,0]],[[1,2,3,1],[1,2,2,2],[2,0,1,2],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[2,0,1,2],[0,2,2,1]],[[2,2,2,1],[1,2,2,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[1,2,2,3],[2,0,1,1],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[2,0,1,1],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[2,0,1,1],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[2,0,1,1],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[2,0,1,1],[1,2,2,1]],[[0,2,3,0],[0,1,3,2],[2,3,0,2],[1,2,2,1]],[[0,2,2,0],[0,1,4,2],[2,3,0,2],[1,2,2,1]],[[0,2,2,0],[0,1,3,3],[2,3,0,2],[1,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,4,0,2],[1,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,3,0,3],[1,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,3,0,2],[2,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,3,0,2],[1,3,2,1]],[[0,2,2,0],[0,1,3,2],[2,3,0,2],[1,2,3,1]],[[0,2,2,0],[0,1,3,2],[2,3,0,2],[1,2,2,2]],[[0,2,3,0],[0,1,3,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[0,1,4,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[0,1,3,3],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[0,1,3,2],[2,3,1,3],[1,1,2,1]],[[0,2,2,0],[0,1,3,2],[2,3,1,2],[1,1,3,1]],[[0,2,2,0],[0,1,3,2],[2,3,1,2],[1,1,2,2]],[[0,2,2,0],[0,1,3,2],[2,4,2,0],[1,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,3,2,0],[2,2,2,1]],[[0,2,2,0],[0,1,3,2],[2,3,2,0],[1,3,2,1]],[[0,2,2,0],[0,1,3,2],[2,3,2,0],[1,2,3,1]],[[0,2,2,0],[0,1,3,2],[2,3,2,0],[1,2,2,2]],[[0,2,2,0],[0,1,3,2],[2,4,2,1],[1,2,2,0]],[[0,2,2,0],[0,1,3,2],[2,3,2,1],[2,2,2,0]],[[0,2,2,0],[0,1,3,2],[2,3,2,1],[1,3,2,0]],[[0,2,2,0],[0,1,3,2],[2,3,2,1],[1,2,3,0]],[[0,2,3,0],[0,1,3,2],[2,3,2,2],[1,1,1,1]],[[0,2,2,0],[0,1,4,2],[2,3,2,2],[1,1,1,1]],[[0,2,2,0],[0,1,3,3],[2,3,2,2],[1,1,1,1]],[[0,2,2,0],[0,1,3,2],[2,3,2,3],[1,1,1,1]],[[0,2,2,0],[0,1,3,2],[2,3,2,2],[1,1,1,2]],[[0,2,3,0],[0,1,3,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[0,1,4,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[0,1,3,3],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[0,1,3,2],[2,3,2,3],[1,1,2,0]],[[0,2,3,0],[0,1,3,2],[2,3,2,2],[1,2,0,1]],[[0,2,2,0],[0,1,4,2],[2,3,2,2],[1,2,0,1]],[[0,2,2,0],[0,1,3,3],[2,3,2,2],[1,2,0,1]],[[0,2,2,0],[0,1,3,2],[2,3,2,3],[1,2,0,1]],[[0,2,2,0],[0,1,3,2],[2,3,2,2],[1,2,0,2]],[[0,2,3,0],[0,1,3,2],[2,3,2,2],[1,2,1,0]],[[0,2,2,0],[0,1,4,2],[2,3,2,2],[1,2,1,0]],[[0,2,2,0],[0,1,3,3],[2,3,2,2],[1,2,1,0]],[[0,2,2,0],[0,1,3,2],[2,3,2,3],[1,2,1,0]],[[0,2,3,0],[0,1,3,2],[2,3,3,0],[1,1,2,1]],[[0,2,2,0],[0,1,4,2],[2,3,3,0],[1,1,2,1]],[[0,2,2,0],[0,1,3,3],[2,3,3,0],[1,1,2,1]],[[0,2,2,0],[0,1,3,2],[2,4,3,0],[1,1,2,1]],[[0,2,2,0],[0,1,3,2],[2,3,4,0],[1,1,2,1]],[[0,2,2,0],[0,1,3,2],[2,3,3,0],[1,1,3,1]],[[0,2,2,0],[0,1,3,2],[2,3,3,0],[1,1,2,2]],[[0,2,3,0],[0,1,3,2],[2,3,3,0],[1,2,1,1]],[[0,2,2,0],[0,1,4,2],[2,3,3,0],[1,2,1,1]],[[0,2,2,0],[0,1,3,3],[2,3,3,0],[1,2,1,1]],[[0,2,2,0],[0,1,3,2],[2,4,3,0],[1,2,1,1]],[[0,2,2,0],[0,1,3,2],[2,3,4,0],[1,2,1,1]],[[0,2,2,0],[0,1,3,2],[2,3,3,0],[2,2,1,1]],[[0,2,2,0],[0,1,3,2],[2,3,3,0],[1,3,1,1]],[[0,2,3,0],[0,1,3,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[0,1,4,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[0,1,3,3],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[0,1,3,2],[2,4,3,1],[1,1,1,1]],[[0,2,2,0],[0,1,3,2],[2,3,4,1],[1,1,1,1]],[[0,2,3,0],[0,1,3,2],[2,3,3,1],[1,1,2,0]],[[0,2,2,0],[0,1,4,2],[2,3,3,1],[1,1,2,0]],[[0,2,2,0],[0,1,3,3],[2,3,3,1],[1,1,2,0]],[[0,2,2,0],[0,1,3,2],[2,4,3,1],[1,1,2,0]],[[0,2,2,0],[0,1,3,2],[2,3,4,1],[1,1,2,0]],[[0,2,2,0],[0,1,3,2],[2,3,3,1],[1,1,3,0]],[[0,2,3,0],[0,1,3,2],[2,3,3,1],[1,2,0,1]],[[0,2,2,0],[0,1,4,2],[2,3,3,1],[1,2,0,1]],[[0,2,2,0],[0,1,3,3],[2,3,3,1],[1,2,0,1]],[[0,2,2,0],[0,1,3,2],[2,4,3,1],[1,2,0,1]],[[0,2,2,0],[0,1,3,2],[2,3,4,1],[1,2,0,1]],[[0,2,2,0],[0,1,3,2],[2,3,3,1],[2,2,0,1]],[[0,2,2,0],[0,1,3,2],[2,3,3,1],[1,3,0,1]],[[0,2,3,0],[0,1,3,2],[2,3,3,1],[1,2,1,0]],[[0,2,2,0],[0,1,4,2],[2,3,3,1],[1,2,1,0]],[[0,2,2,0],[0,1,3,3],[2,3,3,1],[1,2,1,0]],[[0,2,2,0],[0,1,3,2],[2,4,3,1],[1,2,1,0]],[[0,2,2,0],[0,1,3,2],[2,3,4,1],[1,2,1,0]],[[0,2,2,0],[0,1,3,2],[2,3,3,1],[2,2,1,0]],[[0,2,2,0],[0,1,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,2,2,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[1,2,2,3],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[1,2,2,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[1,2,2,2],[1,3,3,2],[0,0,0,1]],[[1,3,2,1],[1,2,2,2],[1,3,3,2],[0,0,0,1]],[[2,2,2,1],[1,2,2,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[1,2,2,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,2],[1,2,2,2],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[1,2,2,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[1,2,2,2],[1,3,3,1],[1,1,0,0]],[[2,2,2,1],[1,2,2,2],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[1,2,2,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,2],[1,2,2,2],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[1,2,2,2],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[1,2,2,2],[1,3,3,1],[0,2,0,0]],[[2,2,2,1],[1,2,2,2],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[1,2,2,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[1,2,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[1,2,2,2],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[1,2,2,2],[1,3,3,1],[0,0,2,0]],[[2,2,2,1],[1,2,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[1,2,2,3],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[1,2,2,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[1,2,2,2],[1,3,3,1],[0,0,1,1]],[[1,3,2,1],[1,2,2,2],[1,3,3,1],[0,0,1,1]],[[2,2,2,1],[1,2,2,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[1,2,2,3],[1,3,3,0],[0,0,2,1]],[[1,2,2,2],[1,2,2,2],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[1,2,2,2],[1,3,3,0],[0,0,2,1]],[[1,3,2,1],[1,2,2,2],[1,3,3,0],[0,0,2,1]],[[2,2,2,1],[1,2,2,2],[1,3,3,0],[0,0,2,1]],[[1,2,2,1],[1,2,2,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[1,2,2,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[1,2,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[1,2,2,2],[1,3,2,2],[0,0,2,0]],[[1,3,2,1],[1,2,2,2],[1,3,2,2],[0,0,2,0]],[[2,2,2,1],[1,2,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[1,2,2,2],[1,3,2,2],[0,0,1,2]],[[1,2,2,1],[1,2,2,2],[1,3,2,3],[0,0,1,1]],[[1,2,2,1],[1,2,2,3],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[1,2,2,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[1,2,2,2],[1,3,2,2],[0,0,1,1]],[[1,3,2,1],[1,2,2,2],[1,3,2,2],[0,0,1,1]],[[2,2,2,1],[1,2,2,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[1,2,2,3],[1,3,2,1],[1,2,0,0]],[[1,2,2,2],[1,2,2,2],[1,3,2,1],[1,2,0,0]],[[1,2,3,1],[1,2,2,2],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[1,2,2,2],[1,3,2,1],[1,2,0,0]],[[2,2,2,1],[1,2,2,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,1],[1,2,2,3],[1,3,2,1],[1,1,1,0]],[[1,2,2,2],[1,2,2,2],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[1,2,2,2],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[1,2,2,2],[1,3,2,1],[1,1,1,0]],[[2,2,2,1],[1,2,2,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[1,2,2,3],[1,3,2,1],[1,1,0,1]],[[1,2,2,2],[1,2,2,2],[1,3,2,1],[1,1,0,1]],[[1,2,3,1],[1,2,2,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[1,2,2,2],[1,3,2,1],[1,1,0,1]],[[2,2,2,1],[1,2,2,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[1,2,2,3],[1,3,2,1],[1,0,2,0]],[[1,2,2,2],[1,2,2,2],[1,3,2,1],[1,0,2,0]],[[1,2,3,1],[1,2,2,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[1,2,2,2],[1,3,2,1],[1,0,2,0]],[[2,2,2,1],[1,2,2,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[1,2,2,3],[1,3,2,1],[1,0,1,1]],[[1,2,2,2],[1,2,2,2],[1,3,2,1],[1,0,1,1]],[[1,2,3,1],[1,2,2,2],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[1,2,2,2],[1,3,2,1],[1,0,1,1]],[[2,2,2,1],[1,2,2,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[1,2,2,3],[1,3,2,1],[0,2,1,0]],[[1,2,2,2],[1,2,2,2],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[1,2,2,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[1,2,2,2],[1,3,2,1],[0,2,1,0]],[[2,2,2,1],[1,2,2,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[1,2,2,3],[1,3,2,1],[0,2,0,1]],[[1,2,2,2],[1,2,2,2],[1,3,2,1],[0,2,0,1]],[[1,2,3,1],[1,2,2,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[1,2,2,2],[1,3,2,1],[0,2,0,1]],[[2,2,2,1],[1,2,2,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[1,2,2,3],[1,3,2,1],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[1,3,2,1],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[1,3,2,1],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[1,3,2,1],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[1,3,2,1],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[1,3,2,0],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[1,3,2,0],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[1,3,2,0],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[1,3,2,0],[1,0,2,1]],[[1,2,2,2],[1,2,2,2],[1,3,2,0],[1,0,2,1]],[[1,2,3,1],[1,2,2,2],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[1,2,2,2],[1,3,2,0],[1,0,2,1]],[[2,2,2,1],[1,2,2,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[1,2,2,3],[1,3,2,0],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[1,3,2,0],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[1,3,2,0],[0,1,2,1]],[[1,2,2,2],[1,2,2,2],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[1,2,2,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[1,2,2,2],[1,3,2,0],[0,1,2,1]],[[2,2,2,1],[1,2,2,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[1,3,1,2],[1,2,0,0]],[[1,2,2,2],[1,2,2,2],[1,3,1,2],[1,2,0,0]],[[1,2,3,1],[1,2,2,2],[1,3,1,2],[1,2,0,0]],[[1,3,2,1],[1,2,2,2],[1,3,1,2],[1,2,0,0]],[[2,2,2,1],[1,2,2,2],[1,3,1,2],[1,2,0,0]],[[1,2,2,1],[1,2,2,2],[1,3,1,3],[1,1,1,0]],[[1,2,2,1],[1,2,2,3],[1,3,1,2],[1,1,1,0]],[[1,2,2,2],[1,2,2,2],[1,3,1,2],[1,1,1,0]],[[1,2,3,1],[1,2,2,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[1,2,2,2],[1,3,1,2],[1,1,1,0]],[[2,2,2,1],[1,2,2,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[1,2,2,2],[1,3,1,2],[1,1,0,2]],[[1,2,2,1],[1,2,2,2],[1,3,1,3],[1,1,0,1]],[[1,2,2,1],[1,2,2,3],[1,3,1,2],[1,1,0,1]],[[1,2,2,2],[1,2,2,2],[1,3,1,2],[1,1,0,1]],[[1,2,3,1],[1,2,2,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,1],[1,2,2,2],[1,3,1,2],[1,1,0,1]],[[2,2,2,1],[1,2,2,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[1,2,2,2],[1,3,1,3],[1,0,2,0]],[[1,2,2,1],[1,2,2,3],[1,3,1,2],[1,0,2,0]],[[1,2,2,2],[1,2,2,2],[1,3,1,2],[1,0,2,0]],[[1,2,3,1],[1,2,2,2],[1,3,1,2],[1,0,2,0]],[[1,3,2,1],[1,2,2,2],[1,3,1,2],[1,0,2,0]],[[2,2,2,1],[1,2,2,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[1,2,2,2],[1,3,1,2],[1,0,1,2]],[[1,2,2,1],[1,2,2,2],[1,3,1,3],[1,0,1,1]],[[1,2,2,1],[1,2,2,3],[1,3,1,2],[1,0,1,1]],[[1,2,2,2],[1,2,2,2],[1,3,1,2],[1,0,1,1]],[[1,2,3,1],[1,2,2,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[1,2,2,2],[1,3,1,2],[1,0,1,1]],[[2,2,2,1],[1,2,2,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,1],[1,2,2,2],[1,3,1,3],[0,2,1,0]],[[1,2,2,1],[1,2,2,3],[1,3,1,2],[0,2,1,0]],[[1,2,2,2],[1,2,2,2],[1,3,1,2],[0,2,1,0]],[[1,2,3,1],[1,2,2,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[1,2,2,2],[1,3,1,2],[0,2,1,0]],[[2,2,2,1],[1,2,2,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[1,2,2,2],[1,3,1,2],[0,2,0,2]],[[1,2,2,1],[1,2,2,2],[1,3,1,3],[0,2,0,1]],[[1,2,2,1],[1,2,2,3],[1,3,1,2],[0,2,0,1]],[[1,2,2,2],[1,2,2,2],[1,3,1,2],[0,2,0,1]],[[1,2,3,1],[1,2,2,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[1,2,2,2],[1,3,1,2],[0,2,0,1]],[[2,2,2,1],[1,2,2,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[1,2,2,2],[1,3,1,3],[0,1,2,0]],[[0,2,2,0],[0,3,0,0],[2,4,3,2],[1,2,2,1]],[[0,2,2,0],[0,3,0,0],[2,3,3,2],[2,2,2,1]],[[0,2,2,0],[0,3,0,0],[2,3,3,2],[1,3,2,1]],[[0,2,2,0],[0,3,0,0],[2,3,3,2],[1,2,3,1]],[[0,2,2,0],[0,3,0,0],[2,3,3,2],[1,2,2,2]],[[0,2,2,0],[0,3,0,1],[2,4,3,1],[1,2,2,1]],[[0,2,2,0],[0,3,0,1],[2,3,3,1],[2,2,2,1]],[[0,2,2,0],[0,3,0,1],[2,3,3,1],[1,3,2,1]],[[0,2,2,0],[0,3,0,1],[2,3,3,1],[1,2,3,1]],[[0,2,2,0],[0,3,0,1],[2,3,3,1],[1,2,2,2]],[[0,2,2,0],[0,3,0,1],[2,4,3,2],[1,2,2,0]],[[0,2,2,0],[0,3,0,1],[2,3,3,2],[2,2,2,0]],[[0,2,2,0],[0,3,0,1],[2,3,3,2],[1,3,2,0]],[[0,2,2,0],[0,3,0,1],[2,3,3,2],[1,2,3,0]],[[0,2,2,0],[0,3,0,3],[2,2,2,2],[1,2,2,1]],[[0,2,2,0],[0,3,0,2],[2,2,2,3],[1,2,2,1]],[[0,2,2,0],[0,3,0,2],[2,2,2,2],[2,2,2,1]],[[0,2,2,0],[0,3,0,2],[2,2,2,2],[1,3,2,1]],[[0,2,2,0],[0,3,0,2],[2,2,2,2],[1,2,3,1]],[[0,2,2,0],[0,3,0,2],[2,2,2,2],[1,2,2,2]],[[0,2,2,0],[0,3,0,2],[2,2,4,1],[1,2,2,1]],[[0,2,2,0],[0,3,0,2],[2,2,3,1],[2,2,2,1]],[[0,2,2,0],[0,3,0,2],[2,2,3,1],[1,3,2,1]],[[0,2,2,0],[0,3,0,2],[2,2,3,1],[1,2,3,1]],[[0,2,2,0],[0,3,0,2],[2,2,3,1],[1,2,2,2]],[[0,2,2,0],[0,3,0,3],[2,2,3,2],[1,2,1,1]],[[0,2,2,0],[0,3,0,2],[2,2,4,2],[1,2,1,1]],[[0,2,2,0],[0,3,0,2],[2,2,3,3],[1,2,1,1]],[[0,2,2,0],[0,3,0,2],[2,2,3,2],[1,2,1,2]],[[0,2,2,0],[0,3,0,3],[2,2,3,2],[1,2,2,0]],[[0,2,2,0],[0,3,0,2],[2,2,4,2],[1,2,2,0]],[[0,2,2,0],[0,3,0,2],[2,2,3,3],[1,2,2,0]],[[0,2,2,0],[0,3,0,2],[2,2,3,2],[2,2,2,0]],[[0,2,2,0],[0,3,0,2],[2,2,3,2],[1,3,2,0]],[[0,2,2,0],[0,3,0,2],[2,2,3,2],[1,2,3,0]],[[0,2,2,0],[0,3,0,3],[2,3,1,2],[1,2,2,1]],[[0,2,2,0],[0,3,0,2],[2,4,1,2],[1,2,2,1]],[[0,2,2,0],[0,3,0,2],[2,3,1,3],[1,2,2,1]],[[0,2,2,0],[0,3,0,2],[2,3,1,2],[2,2,2,1]],[[0,2,2,0],[0,3,0,2],[2,3,1,2],[1,3,2,1]],[[0,2,2,0],[0,3,0,2],[2,3,1,2],[1,2,3,1]],[[0,2,2,0],[0,3,0,2],[2,3,1,2],[1,2,2,2]],[[0,2,2,0],[0,3,0,2],[2,4,2,1],[1,2,2,1]],[[0,2,2,0],[0,3,0,2],[2,3,2,1],[2,2,2,1]],[[0,2,2,0],[0,3,0,2],[2,3,2,1],[1,3,2,1]],[[0,2,2,0],[0,3,0,2],[2,3,2,1],[1,2,3,1]],[[0,2,2,0],[0,3,0,2],[2,3,2,1],[1,2,2,2]],[[0,2,2,0],[0,3,0,3],[2,3,2,2],[1,1,2,1]],[[0,2,2,0],[0,3,0,2],[2,3,2,3],[1,1,2,1]],[[0,2,2,0],[0,3,0,2],[2,3,2,2],[1,1,3,1]],[[0,2,2,0],[0,3,0,2],[2,3,2,2],[1,1,2,2]],[[0,2,2,0],[0,3,0,2],[2,4,2,2],[1,2,2,0]],[[0,2,2,0],[0,3,0,2],[2,3,2,2],[2,2,2,0]],[[0,2,2,0],[0,3,0,2],[2,3,2,2],[1,3,2,0]],[[0,2,2,0],[0,3,0,2],[2,3,2,2],[1,2,3,0]],[[0,2,2,0],[0,3,0,2],[2,4,3,1],[1,1,2,1]],[[0,2,2,0],[0,3,0,2],[2,3,4,1],[1,1,2,1]],[[0,2,2,0],[0,3,0,2],[2,3,3,1],[1,1,3,1]],[[0,2,2,0],[0,3,0,2],[2,3,3,1],[1,1,2,2]],[[0,2,2,0],[0,3,0,2],[2,4,3,1],[1,2,1,1]],[[0,2,2,0],[0,3,0,2],[2,3,4,1],[1,2,1,1]],[[0,2,2,0],[0,3,0,2],[2,3,3,1],[2,2,1,1]],[[0,2,2,0],[0,3,0,2],[2,3,3,1],[1,3,1,1]],[[0,2,2,0],[0,3,0,3],[2,3,3,2],[1,1,1,1]],[[0,2,2,0],[0,3,0,2],[2,4,3,2],[1,1,1,1]],[[0,2,2,0],[0,3,0,2],[2,3,4,2],[1,1,1,1]],[[0,2,2,0],[0,3,0,2],[2,3,3,3],[1,1,1,1]],[[0,2,2,0],[0,3,0,2],[2,3,3,2],[1,1,1,2]],[[0,2,2,0],[0,3,0,3],[2,3,3,2],[1,1,2,0]],[[0,2,2,0],[0,3,0,2],[2,4,3,2],[1,1,2,0]],[[0,2,2,0],[0,3,0,2],[2,3,4,2],[1,1,2,0]],[[0,2,2,0],[0,3,0,2],[2,3,3,3],[1,1,2,0]],[[0,2,2,0],[0,3,0,2],[2,3,3,2],[1,1,3,0]],[[0,2,2,0],[0,3,0,3],[2,3,3,2],[1,2,0,1]],[[0,2,2,0],[0,3,0,2],[2,4,3,2],[1,2,0,1]],[[0,2,2,0],[0,3,0,2],[2,3,4,2],[1,2,0,1]],[[0,2,2,0],[0,3,0,2],[2,3,3,3],[1,2,0,1]],[[0,2,2,0],[0,3,0,2],[2,3,3,2],[2,2,0,1]],[[0,2,2,0],[0,3,0,2],[2,3,3,2],[1,3,0,1]],[[0,2,2,0],[0,3,0,2],[2,3,3,2],[1,2,0,2]],[[0,2,2,0],[0,3,0,3],[2,3,3,2],[1,2,1,0]],[[0,2,2,0],[0,3,0,2],[2,4,3,2],[1,2,1,0]],[[0,2,2,0],[0,3,0,2],[2,3,4,2],[1,2,1,0]],[[0,2,2,0],[0,3,0,2],[2,3,3,3],[1,2,1,0]],[[0,2,2,0],[0,3,0,2],[2,3,3,2],[2,2,1,0]],[[0,2,2,0],[0,3,0,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,2,2,3],[1,3,1,2],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[1,3,1,2],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[1,3,1,2],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[1,2,2,2],[1,3,1,2],[0,1,1,2]],[[1,2,2,1],[1,2,2,2],[1,3,1,3],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[1,3,1,2],[0,1,1,1]],[[0,2,2,0],[0,3,1,0],[2,2,4,2],[1,2,2,1]],[[0,2,2,0],[0,3,1,0],[2,2,3,2],[2,2,2,1]],[[0,2,2,0],[0,3,1,0],[2,2,3,2],[1,3,2,1]],[[0,2,2,0],[0,3,1,0],[2,2,3,2],[1,2,3,1]],[[0,2,2,0],[0,3,1,0],[2,2,3,2],[1,2,2,2]],[[0,2,2,0],[0,3,1,0],[2,4,2,2],[1,2,2,1]],[[0,2,2,0],[0,3,1,0],[2,3,2,2],[2,2,2,1]],[[0,2,2,0],[0,3,1,0],[2,3,2,2],[1,3,2,1]],[[0,2,2,0],[0,3,1,0],[2,3,2,2],[1,2,3,1]],[[0,2,2,0],[0,3,1,0],[2,3,2,2],[1,2,2,2]],[[0,2,2,0],[0,3,1,0],[2,4,3,2],[1,1,2,1]],[[0,2,2,0],[0,3,1,0],[2,3,4,2],[1,1,2,1]],[[0,2,2,0],[0,3,1,0],[2,3,3,2],[1,1,3,1]],[[0,2,2,0],[0,3,1,0],[2,3,3,2],[1,1,2,2]],[[0,2,2,0],[0,3,1,0],[2,4,3,2],[1,2,1,1]],[[0,2,2,0],[0,3,1,0],[2,3,4,2],[1,2,1,1]],[[0,2,2,0],[0,3,1,0],[2,3,3,2],[2,2,1,1]],[[0,2,2,0],[0,3,1,0],[2,3,3,2],[1,3,1,1]],[[0,2,2,0],[0,3,1,1],[2,2,2,3],[1,2,2,1]],[[0,2,2,0],[0,3,1,1],[2,2,2,2],[2,2,2,1]],[[0,2,2,0],[0,3,1,1],[2,2,2,2],[1,3,2,1]],[[0,2,2,0],[0,3,1,1],[2,2,2,2],[1,2,3,1]],[[0,2,2,0],[0,3,1,1],[2,2,2,2],[1,2,2,2]],[[0,2,2,0],[0,3,1,1],[2,2,4,1],[1,2,2,1]],[[0,2,2,0],[0,3,1,1],[2,2,3,1],[2,2,2,1]],[[0,2,2,0],[0,3,1,1],[2,2,3,1],[1,3,2,1]],[[0,2,2,0],[0,3,1,1],[2,2,3,1],[1,2,3,1]],[[0,2,2,0],[0,3,1,1],[2,2,3,1],[1,2,2,2]],[[0,2,2,0],[0,3,1,1],[2,2,4,2],[1,2,1,1]],[[0,2,2,0],[0,3,1,1],[2,2,3,3],[1,2,1,1]],[[0,2,2,0],[0,3,1,1],[2,2,3,2],[1,2,1,2]],[[0,2,2,0],[0,3,1,1],[2,2,4,2],[1,2,2,0]],[[0,2,2,0],[0,3,1,1],[2,2,3,3],[1,2,2,0]],[[0,2,2,0],[0,3,1,1],[2,2,3,2],[2,2,2,0]],[[0,2,2,0],[0,3,1,1],[2,2,3,2],[1,3,2,0]],[[0,2,2,0],[0,3,1,1],[2,2,3,2],[1,2,3,0]],[[0,2,2,0],[0,3,1,1],[2,4,1,2],[1,2,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,1,3],[1,2,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,1,2],[2,2,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,1,2],[1,3,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,1,2],[1,2,3,1]],[[0,2,2,0],[0,3,1,1],[2,3,1,2],[1,2,2,2]],[[0,2,2,0],[0,3,1,1],[2,4,2,1],[1,2,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,2,1],[2,2,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,2,1],[1,3,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,2,1],[1,2,3,1]],[[0,2,2,0],[0,3,1,1],[2,3,2,1],[1,2,2,2]],[[0,2,2,0],[0,3,1,1],[2,3,2,3],[1,1,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,2,2],[1,1,3,1]],[[0,2,2,0],[0,3,1,1],[2,3,2,2],[1,1,2,2]],[[0,2,2,0],[0,3,1,1],[2,4,2,2],[1,2,2,0]],[[0,2,2,0],[0,3,1,1],[2,3,2,2],[2,2,2,0]],[[0,2,2,0],[0,3,1,1],[2,3,2,2],[1,3,2,0]],[[0,2,2,0],[0,3,1,1],[2,3,2,2],[1,2,3,0]],[[0,2,2,0],[0,3,1,1],[2,4,3,0],[1,2,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,0],[2,2,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,0],[1,3,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,0],[1,2,3,1]],[[0,2,2,0],[0,3,1,1],[2,4,3,1],[1,1,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,4,1],[1,1,2,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,1],[1,1,3,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,1],[1,1,2,2]],[[0,2,2,0],[0,3,1,1],[2,4,3,1],[1,2,1,1]],[[0,2,2,0],[0,3,1,1],[2,3,4,1],[1,2,1,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,1],[2,2,1,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,1],[1,3,1,1]],[[0,2,2,0],[0,3,1,1],[2,4,3,2],[1,1,1,1]],[[0,2,2,0],[0,3,1,1],[2,3,4,2],[1,1,1,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,3],[1,1,1,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,2],[1,1,1,2]],[[0,2,2,0],[0,3,1,1],[2,4,3,2],[1,1,2,0]],[[0,2,2,0],[0,3,1,1],[2,3,4,2],[1,1,2,0]],[[0,2,2,0],[0,3,1,1],[2,3,3,3],[1,1,2,0]],[[0,2,2,0],[0,3,1,1],[2,3,3,2],[1,1,3,0]],[[0,2,2,0],[0,3,1,1],[2,4,3,2],[1,2,0,1]],[[0,2,2,0],[0,3,1,1],[2,3,4,2],[1,2,0,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,3],[1,2,0,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,2],[2,2,0,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,2],[1,3,0,1]],[[0,2,2,0],[0,3,1,1],[2,3,3,2],[1,2,0,2]],[[0,2,2,0],[0,3,1,1],[2,4,3,2],[1,2,1,0]],[[0,2,2,0],[0,3,1,1],[2,3,4,2],[1,2,1,0]],[[0,2,2,0],[0,3,1,1],[2,3,3,3],[1,2,1,0]],[[0,2,2,0],[0,3,1,1],[2,3,3,2],[2,2,1,0]],[[0,2,2,0],[0,3,1,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,2],[1,2,2,2],[1,3,1,2],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[1,3,1,2],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,0],[0,3,1,2],[2,2,4,0],[1,2,2,1]],[[0,2,2,0],[0,3,1,2],[2,2,3,0],[2,2,2,1]],[[0,2,2,0],[0,3,1,2],[2,2,3,0],[1,3,2,1]],[[0,2,2,0],[0,3,1,2],[2,2,3,0],[1,2,3,1]],[[0,2,2,0],[0,3,1,2],[2,2,3,0],[1,2,2,2]],[[0,2,2,0],[0,3,1,2],[2,2,4,1],[1,2,2,0]],[[0,2,2,0],[0,3,1,2],[2,2,3,1],[2,2,2,0]],[[0,2,2,0],[0,3,1,2],[2,2,3,1],[1,3,2,0]],[[0,2,2,0],[0,3,1,2],[2,2,3,1],[1,2,3,0]],[[1,2,2,1],[1,2,2,3],[1,3,1,1],[1,1,2,0]],[[1,2,2,2],[1,2,2,2],[1,3,1,1],[1,1,2,0]],[[1,2,3,1],[1,2,2,2],[1,3,1,1],[1,1,2,0]],[[1,3,2,1],[1,2,2,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,0],[0,3,1,3],[2,3,0,2],[1,2,2,1]],[[0,2,2,0],[0,3,1,2],[2,4,0,2],[1,2,2,1]],[[0,2,2,0],[0,3,1,2],[2,3,0,3],[1,2,2,1]],[[0,2,2,0],[0,3,1,2],[2,3,0,2],[2,2,2,1]],[[0,2,2,0],[0,3,1,2],[2,3,0,2],[1,3,2,1]],[[0,2,2,0],[0,3,1,2],[2,3,0,2],[1,2,3,1]],[[0,2,2,0],[0,3,1,2],[2,3,0,2],[1,2,2,2]],[[0,2,2,0],[0,3,1,2],[2,4,2,0],[1,2,2,1]],[[0,2,2,0],[0,3,1,2],[2,3,2,0],[2,2,2,1]],[[0,2,2,0],[0,3,1,2],[2,3,2,0],[1,3,2,1]],[[0,2,2,0],[0,3,1,2],[2,3,2,0],[1,2,3,1]],[[0,2,2,0],[0,3,1,2],[2,3,2,0],[1,2,2,2]],[[0,2,2,0],[0,3,1,2],[2,4,2,1],[1,2,2,0]],[[0,2,2,0],[0,3,1,2],[2,3,2,1],[2,2,2,0]],[[0,2,2,0],[0,3,1,2],[2,3,2,1],[1,3,2,0]],[[0,2,2,0],[0,3,1,2],[2,3,2,1],[1,2,3,0]],[[2,2,2,1],[1,2,2,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,1],[1,2,2,3],[1,3,1,1],[0,2,2,0]],[[0,2,2,0],[0,3,1,2],[2,4,3,0],[1,1,2,1]],[[0,2,2,0],[0,3,1,2],[2,3,4,0],[1,1,2,1]],[[0,2,2,0],[0,3,1,2],[2,3,3,0],[1,1,3,1]],[[0,2,2,0],[0,3,1,2],[2,3,3,0],[1,1,2,2]],[[0,2,2,0],[0,3,1,2],[2,4,3,0],[1,2,1,1]],[[0,2,2,0],[0,3,1,2],[2,3,4,0],[1,2,1,1]],[[0,2,2,0],[0,3,1,2],[2,3,3,0],[2,2,1,1]],[[0,2,2,0],[0,3,1,2],[2,3,3,0],[1,3,1,1]],[[0,2,2,0],[0,3,1,2],[2,4,3,1],[1,1,2,0]],[[0,2,2,0],[0,3,1,2],[2,3,4,1],[1,1,2,0]],[[0,2,2,0],[0,3,1,2],[2,3,3,1],[1,1,3,0]],[[0,2,2,0],[0,3,1,2],[2,4,3,1],[1,2,0,1]],[[0,2,2,0],[0,3,1,2],[2,3,4,1],[1,2,0,1]],[[0,2,2,0],[0,3,1,2],[2,3,3,1],[2,2,0,1]],[[0,2,2,0],[0,3,1,2],[2,3,3,1],[1,3,0,1]],[[0,2,2,0],[0,3,1,2],[2,4,3,1],[1,2,1,0]],[[0,2,2,0],[0,3,1,2],[2,3,4,1],[1,2,1,0]],[[0,2,2,0],[0,3,1,2],[2,3,3,1],[2,2,1,0]],[[0,2,2,0],[0,3,1,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,2],[1,2,2,2],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[1,2,2,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[1,2,2,2],[1,3,1,1],[0,2,2,0]],[[2,2,2,1],[1,2,2,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[1,2,2,3],[1,3,1,0],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[1,3,1,0],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[1,3,1,0],[1,1,2,1]],[[1,3,2,1],[1,2,2,2],[1,3,1,0],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,1],[1,2,2,3],[1,3,1,0],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[1,2,2,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[1,3,1,0],[0,2,2,1]],[[2,2,2,1],[1,2,2,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[1,2,2,2],[1,3,0,3],[1,1,2,0]],[[1,2,2,1],[1,2,2,3],[1,3,0,2],[1,1,2,0]],[[1,2,2,2],[1,2,2,2],[1,3,0,2],[1,1,2,0]],[[1,2,3,1],[1,2,2,2],[1,3,0,2],[1,1,2,0]],[[1,3,2,1],[1,2,2,2],[1,3,0,2],[1,1,2,0]],[[2,2,2,1],[1,2,2,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[1,2,2,2],[1,3,0,2],[1,1,1,2]],[[1,2,2,1],[1,2,2,2],[1,3,0,3],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[1,3,0,2],[1,1,1,1]],[[0,2,2,0],[0,3,2,1],[2,4,0,2],[1,2,2,1]],[[0,2,2,0],[0,3,2,1],[2,3,0,3],[1,2,2,1]],[[0,2,2,0],[0,3,2,1],[2,3,0,2],[2,2,2,1]],[[0,2,2,0],[0,3,2,1],[2,3,0,2],[1,3,2,1]],[[0,2,2,0],[0,3,2,1],[2,3,0,2],[1,2,3,1]],[[0,2,2,0],[0,3,2,1],[2,3,0,2],[1,2,2,2]],[[0,2,2,0],[0,3,2,1],[2,4,1,1],[1,2,2,1]],[[0,2,2,0],[0,3,2,1],[2,3,1,1],[2,2,2,1]],[[0,2,2,0],[0,3,2,1],[2,3,1,1],[1,3,2,1]],[[0,2,2,0],[0,3,2,1],[2,3,1,1],[1,2,3,1]],[[0,2,2,0],[0,3,2,1],[2,3,1,1],[1,2,2,2]],[[0,2,2,0],[0,3,2,1],[2,4,1,2],[1,2,2,0]],[[0,2,2,0],[0,3,2,1],[2,3,1,2],[2,2,2,0]],[[0,2,2,0],[0,3,2,1],[2,3,1,2],[1,3,2,0]],[[0,2,2,0],[0,3,2,1],[2,3,1,2],[1,2,3,0]],[[0,2,2,0],[0,3,2,1],[2,4,2,1],[1,2,1,1]],[[0,2,2,0],[0,3,2,1],[2,3,2,1],[2,2,1,1]],[[0,2,2,0],[0,3,2,1],[2,3,2,1],[1,3,1,1]],[[0,2,2,0],[0,3,2,1],[2,4,2,2],[1,2,0,1]],[[0,2,2,0],[0,3,2,1],[2,3,2,2],[2,2,0,1]],[[0,2,2,0],[0,3,2,1],[2,3,2,2],[1,3,0,1]],[[0,2,2,0],[0,3,2,1],[2,4,2,2],[1,2,1,0]],[[0,2,2,0],[0,3,2,1],[2,3,2,2],[2,2,1,0]],[[0,2,2,0],[0,3,2,1],[2,3,2,2],[1,3,1,0]],[[1,2,2,2],[1,2,2,2],[1,3,0,2],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[1,3,0,2],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[1,3,0,2],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[1,2,2,2],[1,3,0,2],[1,0,2,2]],[[1,2,2,1],[1,2,2,2],[1,3,0,2],[1,0,3,1]],[[1,2,2,1],[1,2,2,2],[1,3,0,3],[1,0,2,1]],[[1,2,2,1],[1,2,2,3],[1,3,0,2],[1,0,2,1]],[[1,2,2,2],[1,2,2,2],[1,3,0,2],[1,0,2,1]],[[1,2,3,1],[1,2,2,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[1,2,2,2],[1,3,0,2],[1,0,2,1]],[[2,2,2,1],[1,2,2,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[1,2,2,2],[1,3,0,3],[0,2,2,0]],[[1,2,2,1],[1,2,2,3],[1,3,0,2],[0,2,2,0]],[[1,2,2,2],[1,2,2,2],[1,3,0,2],[0,2,2,0]],[[1,2,3,1],[1,2,2,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[1,2,2,2],[1,3,0,2],[0,2,2,0]],[[2,2,2,1],[1,2,2,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[1,2,2,2],[1,3,0,2],[0,2,1,2]],[[1,2,2,1],[1,2,2,2],[1,3,0,3],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[1,3,0,2],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[1,3,0,2],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[1,3,0,2],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[1,2,2,2],[1,3,0,2],[0,1,2,2]],[[1,2,2,1],[1,2,2,2],[1,3,0,2],[0,1,3,1]],[[1,2,2,1],[1,2,2,2],[1,3,0,3],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[1,3,0,2],[0,1,2,1]],[[1,2,2,2],[1,2,2,2],[1,3,0,2],[0,1,2,1]],[[1,2,3,1],[1,2,2,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[1,2,2,2],[1,3,0,2],[0,1,2,1]],[[2,2,2,1],[1,2,2,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[1,3,0,1],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[1,3,0,1],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[1,3,0,1],[1,1,2,1]],[[1,3,2,1],[1,2,2,2],[1,3,0,1],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,1],[1,2,2,3],[1,3,0,1],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[1,3,0,1],[0,2,2,1]],[[1,2,3,1],[1,2,2,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[1,3,0,1],[0,2,2,1]],[[2,2,2,1],[1,2,2,2],[1,3,0,1],[0,2,2,1]],[[1,2,2,1],[1,2,2,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[1,2,2,3],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[1,2,2,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[1,2,2,2],[1,2,3,2],[1,0,0,1]],[[1,3,2,1],[1,2,2,2],[1,2,3,2],[1,0,0,1]],[[2,2,2,1],[1,2,2,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[1,2,2,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,1],[1,2,2,3],[1,2,3,2],[0,1,0,1]],[[0,2,2,0],[0,3,2,2],[2,4,0,1],[1,2,2,1]],[[0,2,2,0],[0,3,2,2],[2,3,0,1],[2,2,2,1]],[[0,2,2,0],[0,3,2,2],[2,3,0,1],[1,3,2,1]],[[0,2,2,0],[0,3,2,2],[2,3,0,1],[1,2,3,1]],[[0,2,2,0],[0,3,2,2],[2,3,0,1],[1,2,2,2]],[[0,2,2,0],[0,3,2,2],[2,4,0,2],[1,2,1,1]],[[0,2,2,0],[0,3,2,2],[2,3,0,2],[2,2,1,1]],[[0,2,2,0],[0,3,2,2],[2,3,0,2],[1,3,1,1]],[[0,2,2,0],[0,3,2,2],[2,4,0,2],[1,2,2,0]],[[0,2,2,0],[0,3,2,2],[2,3,0,2],[2,2,2,0]],[[0,2,2,0],[0,3,2,2],[2,3,0,2],[1,3,2,0]],[[0,2,2,0],[0,3,2,2],[2,3,0,2],[1,2,3,0]],[[0,2,2,0],[0,3,2,2],[2,4,1,0],[1,2,2,1]],[[0,2,2,0],[0,3,2,2],[2,3,1,0],[2,2,2,1]],[[0,2,2,0],[0,3,2,2],[2,3,1,0],[1,3,2,1]],[[0,2,2,0],[0,3,2,2],[2,3,1,0],[1,2,3,1]],[[0,2,2,0],[0,3,2,2],[2,3,1,0],[1,2,2,2]],[[0,2,2,0],[0,3,2,2],[2,4,1,1],[1,2,2,0]],[[0,2,2,0],[0,3,2,2],[2,3,1,1],[2,2,2,0]],[[0,2,2,0],[0,3,2,2],[2,3,1,1],[1,3,2,0]],[[0,2,2,0],[0,3,2,2],[2,3,1,1],[1,2,3,0]],[[0,2,2,0],[0,3,2,2],[2,4,1,2],[1,2,0,1]],[[0,2,2,0],[0,3,2,2],[2,3,1,2],[2,2,0,1]],[[0,2,2,0],[0,3,2,2],[2,3,1,2],[1,3,0,1]],[[0,2,2,0],[0,3,2,2],[2,4,1,2],[1,2,1,0]],[[0,2,2,0],[0,3,2,2],[2,3,1,2],[2,2,1,0]],[[0,2,2,0],[0,3,2,2],[2,3,1,2],[1,3,1,0]],[[1,2,2,2],[1,2,2,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,1],[1,2,2,2],[1,2,3,2],[0,1,0,1]],[[1,3,2,1],[1,2,2,2],[1,2,3,2],[0,1,0,1]],[[2,2,2,1],[1,2,2,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,0],[0,3,2,2],[2,4,2,0],[1,2,1,1]],[[0,2,2,0],[0,3,2,2],[2,3,2,0],[2,2,1,1]],[[0,2,2,0],[0,3,2,2],[2,3,2,0],[1,3,1,1]],[[0,2,2,0],[0,3,2,2],[2,4,2,1],[1,2,0,1]],[[0,2,2,0],[0,3,2,2],[2,3,2,1],[2,2,0,1]],[[0,2,2,0],[0,3,2,2],[2,3,2,1],[1,3,0,1]],[[0,2,2,0],[0,3,2,2],[2,4,2,1],[1,2,1,0]],[[0,2,2,0],[0,3,2,2],[2,3,2,1],[2,2,1,0]],[[0,2,2,0],[0,3,2,2],[2,3,2,1],[1,3,1,0]],[[1,2,2,1],[1,2,2,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,2],[1,2,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[1,2,2,2],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[1,2,2,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,0],[0,3,2,2],[2,4,3,0],[1,2,1,0]],[[0,2,2,0],[0,3,2,2],[2,3,3,0],[2,2,1,0]],[[0,2,2,0],[0,3,2,2],[2,3,3,0],[1,3,1,0]],[[2,2,2,1],[1,2,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[1,2,2,3],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[1,2,2,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[1,2,2,2],[1,2,3,1],[1,1,0,1]],[[1,3,2,1],[1,2,2,2],[1,2,3,1],[1,1,0,1]],[[2,2,2,1],[1,2,2,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[1,2,2,3],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[1,2,2,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[1,2,2,2],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[1,2,2,2],[1,2,3,1],[1,0,2,0]],[[2,2,2,1],[1,2,2,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[1,2,2,3],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[1,2,2,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[1,2,2,2],[1,2,3,1],[1,0,1,1]],[[1,3,2,1],[1,2,2,2],[1,2,3,1],[1,0,1,1]],[[2,2,2,1],[1,2,2,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[1,2,2,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[1,2,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[1,2,2,2],[1,2,3,1],[0,2,1,0]],[[1,3,2,1],[1,2,2,2],[1,2,3,1],[0,2,1,0]],[[2,2,2,1],[1,2,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[1,2,2,3],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[1,2,2,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[1,2,2,2],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[1,2,2,2],[1,2,3,1],[0,2,0,1]],[[2,2,2,1],[1,2,2,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[1,2,2,3],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[1,2,3,1],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[1,2,3,1],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[1,2,3,1],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[1,2,2,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[1,2,2,2],[1,2,3,1],[0,0,2,1]],[[1,3,2,1],[1,2,2,2],[1,2,3,1],[0,0,2,1]],[[2,2,2,1],[1,2,2,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[1,2,3,0],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[1,2,3,0],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[1,2,3,0],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[1,2,3,0],[1,0,2,1]],[[1,2,2,2],[1,2,2,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[1,2,2,2],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[1,2,2,2],[1,2,3,0],[1,0,2,1]],[[2,2,2,1],[1,2,2,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[1,2,2,3],[1,2,3,0],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[1,2,3,0],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[1,2,3,0],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[1,2,2,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[1,2,2,2],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[1,2,2,2],[1,2,3,0],[0,1,2,1]],[[2,2,2,1],[1,2,2,2],[1,2,3,0],[0,1,2,1]],[[1,2,2,1],[1,2,2,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,1],[1,2,2,3],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[1,2,2,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,1],[1,2,2,2],[1,2,2,2],[1,1,1,0]],[[1,3,2,1],[1,2,2,2],[1,2,2,2],[1,1,1,0]],[[2,2,2,1],[1,2,2,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,2,2,2],[1,2,2,2],[1,1,0,2]],[[1,2,2,1],[1,2,2,2],[1,2,2,3],[1,1,0,1]],[[1,2,2,1],[1,2,2,3],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[1,2,2,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[1,2,2,2],[1,2,2,2],[1,1,0,1]],[[1,3,2,1],[1,2,2,2],[1,2,2,2],[1,1,0,1]],[[2,2,2,1],[1,2,2,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[1,2,2,2],[1,2,2,3],[1,0,2,0]],[[1,2,2,1],[1,2,2,3],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[1,2,2,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[1,2,2,2],[1,2,2,2],[1,0,2,0]],[[1,3,2,1],[1,2,2,2],[1,2,2,2],[1,0,2,0]],[[2,2,2,1],[1,2,2,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[1,2,2,2],[1,2,2,2],[1,0,1,2]],[[1,2,2,1],[1,2,2,2],[1,2,2,3],[1,0,1,1]],[[1,2,2,1],[1,2,2,3],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[1,2,2,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[1,2,2,2],[1,2,2,2],[1,0,1,1]],[[1,3,2,1],[1,2,2,2],[1,2,2,2],[1,0,1,1]],[[2,2,2,1],[1,2,2,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[1,2,2,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,1],[1,2,2,3],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[1,2,2,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[1,2,2,2],[1,2,2,2],[0,2,1,0]],[[1,3,2,1],[1,2,2,2],[1,2,2,2],[0,2,1,0]],[[2,2,2,1],[1,2,2,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,2,2],[1,2,2,2],[0,2,0,2]],[[1,2,2,1],[1,2,2,2],[1,2,2,3],[0,2,0,1]],[[1,2,2,1],[1,2,2,3],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[1,2,2,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[1,2,2,2],[1,2,2,2],[0,2,0,1]],[[1,3,2,1],[1,2,2,2],[1,2,2,2],[0,2,0,1]],[[2,2,2,1],[1,2,2,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[1,2,2,2],[1,2,2,3],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[1,2,2,2],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[1,2,2,2],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[1,2,2,2],[1,2,2,2],[0,1,1,2]],[[1,2,2,1],[1,2,2,2],[1,2,2,3],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[1,2,2,2],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[1,2,2,2],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[1,2,2,2],[1,2,2,2],[0,0,2,2]],[[1,2,2,1],[1,2,2,2],[1,2,2,3],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[1,2,2,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[1,2,2,2],[1,2,2,2],[0,0,2,1]],[[1,3,2,1],[1,2,2,2],[1,2,2,2],[0,0,2,1]],[[2,2,2,1],[1,2,2,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[1,2,2,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,1],[1,2,2,2],[1,2,1,2],[1,0,3,1]],[[1,2,2,1],[1,2,2,2],[1,2,1,3],[1,0,2,1]],[[1,2,2,1],[1,2,2,3],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[1,2,2,2],[1,2,1,2],[1,0,2,1]],[[1,2,3,1],[1,2,2,2],[1,2,1,2],[1,0,2,1]],[[1,3,2,1],[1,2,2,2],[1,2,1,2],[1,0,2,1]],[[2,2,2,1],[1,2,2,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[1,2,2,2],[1,2,1,2],[0,1,2,2]],[[1,2,2,1],[1,2,2,2],[1,2,1,2],[0,1,3,1]],[[1,2,2,1],[1,2,2,2],[1,2,1,3],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[1,2,2,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[1,2,2,2],[1,2,1,2],[0,1,2,1]],[[1,3,2,1],[1,2,2,2],[1,2,1,2],[0,1,2,1]],[[2,2,2,1],[1,2,2,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[1,2,2,2],[1,2,0,2],[0,2,2,2]],[[1,2,2,1],[1,2,2,2],[1,2,0,2],[0,2,3,1]],[[1,2,2,1],[1,2,2,2],[1,2,0,2],[0,3,2,1]],[[1,2,2,1],[1,2,2,2],[1,2,0,3],[0,2,2,1]],[[1,2,2,1],[1,2,2,3],[1,2,0,2],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[1,2,0,2],[0,2,2,1]],[[1,2,3,1],[1,2,2,2],[1,2,0,2],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[1,2,0,2],[0,2,2,1]],[[2,2,2,1],[1,2,2,2],[1,2,0,2],[0,2,2,1]],[[1,2,2,1],[1,2,2,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,1],[1,2,2,3],[1,1,3,2],[1,0,2,0]],[[1,2,2,2],[1,2,2,2],[1,1,3,2],[1,0,2,0]],[[1,2,3,1],[1,2,2,2],[1,1,3,2],[1,0,2,0]],[[1,3,2,1],[1,2,2,2],[1,1,3,2],[1,0,2,0]],[[2,2,2,1],[1,2,2,2],[1,1,3,2],[1,0,2,0]],[[1,2,2,1],[1,2,2,2],[1,1,3,2],[1,0,1,2]],[[1,2,2,1],[1,2,2,2],[1,1,3,3],[1,0,1,1]],[[1,2,2,1],[1,2,2,3],[1,1,3,2],[1,0,1,1]],[[1,2,2,2],[1,2,2,2],[1,1,3,2],[1,0,1,1]],[[1,2,3,1],[1,2,2,2],[1,1,3,2],[1,0,1,1]],[[1,3,2,1],[1,2,2,2],[1,1,3,2],[1,0,1,1]],[[2,2,2,1],[1,2,2,2],[1,1,3,2],[1,0,1,1]],[[1,2,2,1],[1,2,2,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[1,1,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[1,1,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[1,1,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[1,1,3,2],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[1,1,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,2,2],[1,1,3,2],[0,1,1,2]],[[1,2,2,1],[1,2,2,2],[1,1,3,3],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[1,1,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[1,1,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[1,1,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[1,1,3,2],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[1,1,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,2,2],[1,1,3,2],[0,0,2,2]],[[1,2,2,1],[1,2,2,2],[1,1,3,3],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[1,1,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,2,2],[1,1,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,2,2],[1,1,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,2,2],[1,1,3,2],[0,0,2,1]],[[2,2,2,1],[1,2,2,2],[1,1,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[1,2,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[1,2,2,2],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[1,2,2,2],[1,1,3,1],[0,2,2,0]],[[2,2,2,1],[1,2,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[1,2,2,3],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[1,1,3,1],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[1,1,3,1],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[1,2,2,2],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[1,1,3,0],[0,2,2,1]],[[2,2,2,1],[1,2,2,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[1,2,2,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,1],[1,2,2,3],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[1,2,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[1,2,2,2],[1,1,2,2],[0,2,2,0]],[[1,3,2,1],[1,2,2,2],[1,1,2,2],[0,2,2,0]],[[2,2,2,1],[1,2,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[1,2,2,2],[1,1,2,2],[0,2,1,2]],[[1,2,2,1],[1,2,2,2],[1,1,2,3],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[1,1,2,2],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[1,1,2,2],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,0],[0,3,3,3],[0,0,3,2],[1,2,2,1]],[[0,2,2,0],[0,3,3,2],[0,0,3,3],[1,2,2,1]],[[0,2,2,0],[0,3,3,2],[0,0,3,2],[1,2,3,1]],[[0,2,2,0],[0,3,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[1,2,2,2],[1,1,1,2],[0,2,2,2]],[[1,2,2,1],[1,2,2,2],[1,1,1,2],[0,2,3,1]],[[1,2,2,1],[1,2,2,2],[1,1,1,2],[0,3,2,1]],[[1,2,2,1],[1,2,2,2],[1,1,1,3],[0,2,2,1]],[[1,2,2,1],[1,2,2,3],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[1,2,2,2],[1,1,1,2],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[1,1,1,2],[0,2,2,1]],[[2,2,2,1],[1,2,2,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[1,2,2,2],[1,1,0,2],[1,2,2,2]],[[1,2,2,1],[1,2,2,2],[1,1,0,2],[1,2,3,1]],[[1,2,2,1],[1,2,2,2],[1,1,0,2],[1,3,2,1]],[[1,2,2,1],[1,2,2,2],[1,1,0,2],[2,2,2,1]],[[1,2,2,1],[1,2,2,2],[1,1,0,3],[1,2,2,1]],[[1,2,2,1],[1,2,2,3],[1,1,0,2],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[1,1,0,2],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[1,1,0,2],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[1,1,0,2],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[1,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,2,2,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[1,2,2,3],[1,0,3,2],[0,2,2,0]],[[1,2,2,2],[1,2,2,2],[1,0,3,2],[0,2,2,0]],[[1,2,3,1],[1,2,2,2],[1,0,3,2],[0,2,2,0]],[[1,3,2,1],[1,2,2,2],[1,0,3,2],[0,2,2,0]],[[2,2,2,1],[1,2,2,2],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[1,2,2,2],[1,0,3,2],[0,2,1,2]],[[1,2,2,1],[1,2,2,2],[1,0,3,3],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[1,0,3,2],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[1,0,3,2],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[1,0,3,2],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[1,0,3,2],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[1,0,3,2],[0,2,1,1]],[[1,2,2,1],[1,2,2,2],[1,0,3,2],[0,1,2,2]],[[1,2,2,1],[1,2,2,2],[1,0,3,3],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[1,0,3,2],[0,1,2,1]],[[1,2,2,2],[1,2,2,2],[1,0,3,2],[0,1,2,1]],[[1,2,3,1],[1,2,2,2],[1,0,3,2],[0,1,2,1]],[[1,3,2,1],[1,2,2,2],[1,0,3,2],[0,1,2,1]],[[2,2,2,1],[1,2,2,2],[1,0,3,2],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[1,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,2,2,2],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,2,2,2],[1,0,3,1],[1,2,2,0]],[[1,3,2,1],[1,2,2,2],[1,0,3,1],[1,2,2,0]],[[2,2,2,1],[1,2,2,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,2,2,3],[1,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[1,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[1,0,3,1],[1,2,1,1]],[[1,3,2,1],[1,2,2,2],[1,0,3,1],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,2,2,3],[1,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[1,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[1,0,3,0],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[1,0,3,0],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,2,2,2],[1,0,2,3],[1,2,2,0]],[[1,2,2,1],[1,2,2,3],[1,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,2,2,2],[1,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,2,2,2],[1,0,2,2],[1,2,2,0]],[[1,3,2,1],[1,2,2,2],[1,0,2,2],[1,2,2,0]],[[2,2,2,1],[1,2,2,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,2,2,2],[1,0,2,2],[1,2,1,2]],[[1,2,2,1],[1,2,2,2],[1,0,2,3],[1,2,1,1]],[[1,2,2,1],[1,2,2,3],[1,0,2,2],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[1,0,2,2],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[1,0,2,2],[1,2,1,1]],[[1,3,2,1],[1,2,2,2],[1,0,2,2],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,2,2,2],[1,0,2,2],[0,2,2,2]],[[1,2,2,1],[1,2,2,2],[1,0,2,2],[0,2,3,1]],[[1,2,2,1],[1,2,2,2],[1,0,2,3],[0,2,2,1]],[[1,2,2,1],[1,2,2,3],[1,0,2,2],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[1,0,2,2],[0,2,2,1]],[[1,2,3,1],[1,2,2,2],[1,0,2,2],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[1,0,2,2],[0,2,2,1]],[[2,2,2,1],[1,2,2,2],[1,0,2,2],[0,2,2,1]],[[1,2,2,1],[1,2,2,2],[1,0,1,2],[1,2,2,2]],[[1,2,2,1],[1,2,2,2],[1,0,1,2],[1,2,3,1]],[[1,2,2,1],[1,2,2,2],[1,0,1,2],[1,3,2,1]],[[1,2,2,1],[1,2,2,2],[1,0,1,2],[2,2,2,1]],[[1,2,2,1],[1,2,2,2],[1,0,1,3],[1,2,2,1]],[[1,2,2,1],[1,2,2,3],[1,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[1,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[1,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[1,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[1,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,2,2,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,2,2,3],[0,3,3,2],[0,1,0,1]],[[1,2,2,2],[1,2,2,2],[0,3,3,2],[0,1,0,1]],[[1,2,3,1],[1,2,2,2],[0,3,3,2],[0,1,0,1]],[[1,3,2,1],[1,2,2,2],[0,3,3,2],[0,1,0,1]],[[2,2,2,1],[1,2,2,2],[0,3,3,2],[0,1,0,1]],[[1,2,2,1],[1,2,2,3],[0,3,3,1],[1,2,0,0]],[[1,2,2,2],[1,2,2,2],[0,3,3,1],[1,2,0,0]],[[1,2,3,1],[1,2,2,2],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[1,2,2,2],[0,3,3,1],[1,2,0,0]],[[2,2,2,1],[1,2,2,2],[0,3,3,1],[1,2,0,0]],[[1,2,2,1],[1,2,2,3],[0,3,3,1],[0,2,1,0]],[[1,2,2,2],[1,2,2,2],[0,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,2,2,2],[0,3,3,1],[0,2,1,0]],[[1,3,2,1],[1,2,2,2],[0,3,3,1],[0,2,1,0]],[[2,2,2,1],[1,2,2,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,2,2,3],[0,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,2,2,2],[0,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,2,2,2],[0,3,3,1],[0,2,0,1]],[[1,3,2,1],[1,2,2,2],[0,3,3,1],[0,2,0,1]],[[2,2,2,1],[1,2,2,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,2,2,3],[0,3,3,1],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[0,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[0,3,3,1],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[0,3,3,1],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[0,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[0,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[0,3,3,1],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[0,3,3,1],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[0,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,2,2,2],[0,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,2,2,2],[0,3,3,1],[0,0,2,1]],[[1,3,2,1],[1,2,2,2],[0,3,3,1],[0,0,2,1]],[[2,2,2,1],[1,2,2,2],[0,3,3,1],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[0,3,3,0],[0,2,1,1]],[[1,2,2,2],[1,2,2,2],[0,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,2,2,2],[0,3,3,0],[0,2,1,1]],[[1,3,2,1],[1,2,2,2],[0,3,3,0],[0,2,1,1]],[[2,2,2,1],[1,2,2,2],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,2,2,3],[0,3,3,0],[0,1,2,1]],[[1,2,2,2],[1,2,2,2],[0,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,2,2,2],[0,3,3,0],[0,1,2,1]],[[1,3,2,1],[1,2,2,2],[0,3,3,0],[0,1,2,1]],[[2,2,2,1],[1,2,2,2],[0,3,3,0],[0,1,2,1]],[[1,2,2,1],[1,2,2,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,1],[1,2,2,3],[0,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,2,2,2],[0,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,2,2,2],[0,3,2,2],[0,2,1,0]],[[1,3,2,1],[1,2,2,2],[0,3,2,2],[0,2,1,0]],[[2,2,2,1],[1,2,2,2],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,2,2],[0,3,2,2],[0,2,0,2]],[[1,2,2,1],[1,2,2,2],[0,3,2,3],[0,2,0,1]],[[1,2,2,1],[1,2,2,3],[0,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,2,2,2],[0,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,2,2,2],[0,3,2,2],[0,2,0,1]],[[1,3,2,1],[1,2,2,2],[0,3,2,2],[0,2,0,1]],[[2,2,2,1],[1,2,2,2],[0,3,2,2],[0,2,0,1]],[[1,2,2,1],[1,2,2,2],[0,3,2,3],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[0,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[0,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[0,3,2,2],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[0,3,2,2],[0,1,2,0]],[[2,2,2,1],[1,2,2,2],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,2,2,2],[0,3,2,2],[0,1,1,2]],[[1,2,2,1],[1,2,2,2],[0,3,2,3],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[0,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[0,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[0,3,2,2],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[0,3,2,2],[0,1,1,1]],[[2,2,2,1],[1,2,2,2],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,2,2,2],[0,3,2,2],[0,0,2,2]],[[1,2,2,1],[1,2,2,2],[0,3,2,3],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[0,3,2,2],[0,0,2,1]],[[1,2,2,2],[1,2,2,2],[0,3,2,2],[0,0,2,1]],[[1,2,3,1],[1,2,2,2],[0,3,2,2],[0,0,2,1]],[[1,3,2,1],[1,2,2,2],[0,3,2,2],[0,0,2,1]],[[2,2,2,1],[1,2,2,2],[0,3,2,2],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[0,3,2,1],[1,2,1,0]],[[1,2,2,2],[1,2,2,2],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[1,2,2,2],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[1,2,2,2],[0,3,2,1],[1,2,1,0]],[[2,2,2,1],[1,2,2,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[1,2,2,3],[0,3,2,1],[1,2,0,1]],[[1,2,2,2],[1,2,2,2],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[1,2,2,2],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[1,2,2,2],[0,3,2,1],[1,2,0,1]],[[2,2,2,1],[1,2,2,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[1,2,2,3],[0,3,2,1],[1,1,2,0]],[[1,2,2,2],[1,2,2,2],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[1,2,2,2],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[1,2,2,2],[0,3,2,1],[1,1,2,0]],[[2,2,2,1],[1,2,2,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[1,2,2,3],[0,3,2,1],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[0,3,2,1],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[0,3,2,0],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[0,3,2,0],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[1,2,2,2],[0,3,2,0],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[1,2,2,3],[0,3,2,0],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[1,2,2,2],[0,3,2,0],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[0,3,2,0],[1,1,2,1]],[[1,2,2,1],[1,2,2,2],[0,3,1,3],[1,2,1,0]],[[1,2,2,1],[1,2,2,3],[0,3,1,2],[1,2,1,0]],[[1,2,2,2],[1,2,2,2],[0,3,1,2],[1,2,1,0]],[[1,2,3,1],[1,2,2,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,1],[1,2,2,2],[0,3,1,2],[1,2,1,0]],[[2,2,2,1],[1,2,2,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[1,2,2,2],[0,3,1,2],[1,2,0,2]],[[1,2,2,1],[1,2,2,2],[0,3,1,3],[1,2,0,1]],[[1,2,2,1],[1,2,2,3],[0,3,1,2],[1,2,0,1]],[[1,2,2,2],[1,2,2,2],[0,3,1,2],[1,2,0,1]],[[1,2,3,1],[1,2,2,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[1,2,2,2],[0,3,1,2],[1,2,0,1]],[[2,2,2,1],[1,2,2,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[1,2,2,2],[0,3,1,3],[1,1,2,0]],[[1,2,2,1],[1,2,2,3],[0,3,1,2],[1,1,2,0]],[[1,2,2,2],[1,2,2,2],[0,3,1,2],[1,1,2,0]],[[1,2,3,1],[1,2,2,2],[0,3,1,2],[1,1,2,0]],[[1,3,2,1],[1,2,2,2],[0,3,1,2],[1,1,2,0]],[[2,2,2,1],[1,2,2,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[1,2,2,2],[0,3,1,2],[1,1,1,2]],[[1,2,2,1],[1,2,2,2],[0,3,1,3],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[0,3,1,2],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[0,3,1,2],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[0,3,1,2],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[0,3,1,2],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[1,2,2,2],[0,3,1,2],[0,1,2,2]],[[1,2,2,1],[1,2,2,2],[0,3,1,2],[0,1,3,1]],[[1,2,2,1],[1,2,2,2],[0,3,1,3],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[0,3,1,2],[0,1,2,1]],[[1,2,2,2],[1,2,2,2],[0,3,1,2],[0,1,2,1]],[[1,2,3,1],[1,2,2,2],[0,3,1,2],[0,1,2,1]],[[1,3,2,1],[1,2,2,2],[0,3,1,2],[0,1,2,1]],[[2,2,2,1],[1,2,2,2],[0,3,1,2],[0,1,2,1]],[[1,2,2,1],[1,2,2,3],[0,3,1,1],[1,2,2,0]],[[1,2,2,2],[1,2,2,2],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[1,2,2,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[1,2,2,2],[0,3,1,1],[1,2,2,0]],[[2,2,2,1],[1,2,2,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[1,2,2,3],[0,3,1,0],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[0,3,1,0],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[0,3,1,0],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[1,2,2,2],[0,3,0,3],[1,2,2,0]],[[1,2,2,1],[1,2,2,3],[0,3,0,2],[1,2,2,0]],[[1,2,2,2],[1,2,2,2],[0,3,0,2],[1,2,2,0]],[[1,2,3,1],[1,2,2,2],[0,3,0,2],[1,2,2,0]],[[1,3,2,1],[1,2,2,2],[0,3,0,2],[1,2,2,0]],[[2,2,2,1],[1,2,2,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[1,2,2,2],[0,3,0,2],[1,2,1,2]],[[1,2,2,1],[1,2,2,2],[0,3,0,3],[1,2,1,1]],[[1,2,2,1],[1,2,2,3],[0,3,0,2],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[0,3,0,2],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[1,2,2,2],[0,3,0,2],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[1,2,2,2],[0,3,0,2],[1,1,2,2]],[[1,2,2,1],[1,2,2,2],[0,3,0,2],[1,1,3,1]],[[1,2,2,1],[1,2,2,2],[0,3,0,3],[1,1,2,1]],[[1,2,2,1],[1,2,2,3],[0,3,0,2],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[0,3,0,2],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[1,2,2,2],[0,3,0,2],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[1,2,2,3],[0,3,0,1],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[0,3,0,1],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[0,3,0,1],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,1],[1,2,2,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[1,2,2,3],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[1,2,2,2],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[1,2,2,2],[0,2,3,2],[1,1,0,1]],[[1,3,2,1],[1,2,2,2],[0,2,3,2],[1,1,0,1]],[[2,2,2,1],[1,2,2,2],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,2,2,2],[0,2,3,3],[0,1,2,0]],[[1,2,2,1],[1,2,2,3],[0,2,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,2,2],[0,2,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,2,2],[0,2,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,2,2],[0,2,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,2,2],[0,2,3,2],[0,1,1,2]],[[1,2,2,1],[1,2,2,2],[0,2,3,3],[0,1,1,1]],[[1,2,2,1],[1,2,2,3],[0,2,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,2,2],[0,2,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,2,2],[0,2,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,2,2],[0,2,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,2,2],[0,2,3,2],[0,0,2,2]],[[1,2,2,1],[1,2,2,2],[0,2,3,3],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[0,2,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,2,2],[0,2,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,2,2],[0,2,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,2,2],[0,2,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,2,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[1,2,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[1,2,2,2],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[1,2,2,2],[0,2,3,1],[1,2,1,0]],[[2,2,2,1],[1,2,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[1,2,2,3],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[1,2,2,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[1,2,2,2],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[1,2,2,2],[0,2,3,1],[1,2,0,1]],[[2,2,2,1],[1,2,2,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[1,2,2,3],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[1,2,2,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[1,2,2,2],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[1,2,2,2],[0,2,3,1],[1,1,2,0]],[[2,2,2,1],[1,2,2,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[1,2,2,3],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[0,2,3,1],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[1,2,2,2],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[1,2,2,2],[0,2,3,1],[1,0,2,1]],[[1,3,2,1],[1,2,2,2],[0,2,3,1],[1,0,2,1]],[[2,2,2,1],[1,2,2,2],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[1,2,2,3],[0,2,3,0],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[1,2,2,2],[0,2,3,0],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[1,2,2,3],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[1,2,2,2],[0,2,3,0],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[1,2,2,2],[0,2,2,3],[1,2,1,0]],[[1,2,2,1],[1,2,2,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[1,2,2,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[1,2,2,2],[0,2,2,2],[1,2,1,0]],[[1,3,2,1],[1,2,2,2],[0,2,2,2],[1,2,1,0]],[[2,2,2,1],[1,2,2,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[1,2,2,2],[0,2,2,2],[1,2,0,2]],[[1,2,2,1],[1,2,2,2],[0,2,2,3],[1,2,0,1]],[[1,2,2,1],[1,2,2,3],[0,2,2,2],[1,2,0,1]],[[1,2,2,2],[1,2,2,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[1,2,2,2],[0,2,2,2],[1,2,0,1]],[[1,3,2,1],[1,2,2,2],[0,2,2,2],[1,2,0,1]],[[2,2,2,1],[1,2,2,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[1,2,2,2],[0,2,2,3],[1,1,2,0]],[[1,2,2,1],[1,2,2,3],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[1,2,2,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[1,2,2,2],[0,2,2,2],[1,1,2,0]],[[1,3,2,1],[1,2,2,2],[0,2,2,2],[1,1,2,0]],[[2,2,2,1],[1,2,2,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[1,2,2,2],[0,2,2,2],[1,1,1,2]],[[1,2,2,1],[1,2,2,2],[0,2,2,3],[1,1,1,1]],[[1,2,2,1],[1,2,2,3],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[0,2,2,2],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[0,2,2,2],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[1,2,2,2],[0,2,2,2],[1,0,2,2]],[[1,2,2,1],[1,2,2,2],[0,2,2,3],[1,0,2,1]],[[1,2,2,1],[1,2,2,3],[0,2,2,2],[1,0,2,1]],[[1,2,2,2],[1,2,2,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[1,2,2,2],[0,2,2,2],[1,0,2,1]],[[1,3,2,1],[1,2,2,2],[0,2,2,2],[1,0,2,1]],[[2,2,2,1],[1,2,2,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[1,2,2,2],[0,2,1,2],[1,1,2,2]],[[1,2,2,1],[1,2,2,2],[0,2,1,2],[1,1,3,1]],[[1,2,2,1],[1,2,2,2],[0,2,1,3],[1,1,2,1]],[[1,2,2,1],[1,2,2,3],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[0,2,1,2],[1,1,2,1]],[[1,3,2,1],[1,2,2,2],[0,2,1,2],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[1,2,2,2],[0,2,0,2],[1,2,2,2]],[[1,2,2,1],[1,2,2,2],[0,2,0,2],[1,2,3,1]],[[1,2,2,1],[1,2,2,2],[0,2,0,2],[1,3,2,1]],[[1,2,2,1],[1,2,2,2],[0,2,0,2],[2,2,2,1]],[[1,2,2,1],[1,2,2,2],[0,2,0,3],[1,2,2,1]],[[1,2,2,1],[1,2,2,3],[0,2,0,2],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[0,2,0,2],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[0,2,0,2],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[0,2,0,2],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,1],[1,2,2,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,1],[1,2,2,3],[0,1,3,2],[1,1,2,0]],[[1,2,2,2],[1,2,2,2],[0,1,3,2],[1,1,2,0]],[[1,2,3,1],[1,2,2,2],[0,1,3,2],[1,1,2,0]],[[1,3,2,1],[1,2,2,2],[0,1,3,2],[1,1,2,0]],[[2,2,2,1],[1,2,2,2],[0,1,3,2],[1,1,2,0]],[[1,2,2,1],[1,2,2,2],[0,1,3,2],[1,1,1,2]],[[1,2,2,1],[1,2,2,2],[0,1,3,3],[1,1,1,1]],[[0,2,2,0],[1,0,1,2],[1,3,3,3],[1,2,2,1]],[[0,2,2,0],[1,0,1,2],[1,3,3,2],[2,2,2,1]],[[0,2,2,0],[1,0,1,2],[1,3,3,2],[1,3,2,1]],[[0,2,2,0],[1,0,1,2],[1,3,3,2],[1,2,3,1]],[[0,2,2,0],[1,0,1,2],[1,3,3,2],[1,2,2,2]],[[0,2,2,0],[1,0,1,2],[2,3,3,3],[0,2,2,1]],[[0,2,2,0],[1,0,1,2],[2,3,3,2],[0,3,2,1]],[[0,2,2,0],[1,0,1,2],[2,3,3,2],[0,2,3,1]],[[0,2,2,0],[1,0,1,2],[2,3,3,2],[0,2,2,2]],[[0,2,2,0],[1,0,2,3],[1,3,2,2],[1,2,2,1]],[[0,2,2,0],[1,0,2,2],[1,3,2,3],[1,2,2,1]],[[0,2,2,0],[1,0,2,2],[1,3,2,2],[2,2,2,1]],[[0,2,2,0],[1,0,2,2],[1,3,2,2],[1,3,2,1]],[[0,2,2,0],[1,0,2,2],[1,3,2,2],[1,2,3,1]],[[0,2,2,0],[1,0,2,2],[1,3,2,2],[1,2,2,2]],[[0,2,2,0],[1,0,2,2],[1,3,4,1],[1,2,2,1]],[[0,2,2,0],[1,0,2,2],[1,3,3,1],[2,2,2,1]],[[0,2,2,0],[1,0,2,2],[1,3,3,1],[1,3,2,1]],[[0,2,2,0],[1,0,2,2],[1,3,3,1],[1,2,3,1]],[[0,2,2,0],[1,0,2,2],[1,3,3,1],[1,2,2,2]],[[0,2,2,0],[1,0,2,3],[1,3,3,2],[1,2,1,1]],[[0,2,2,0],[1,0,2,2],[1,3,4,2],[1,2,1,1]],[[0,2,2,0],[1,0,2,2],[1,3,3,3],[1,2,1,1]],[[0,2,2,0],[1,0,2,2],[1,3,3,2],[1,2,1,2]],[[0,2,2,0],[1,0,2,3],[1,3,3,2],[1,2,2,0]],[[0,2,2,0],[1,0,2,2],[1,3,4,2],[1,2,2,0]],[[0,2,2,0],[1,0,2,2],[1,3,3,3],[1,2,2,0]],[[0,2,2,0],[1,0,2,2],[1,3,3,2],[2,2,2,0]],[[0,2,2,0],[1,0,2,2],[1,3,3,2],[1,3,2,0]],[[0,2,2,0],[1,0,2,2],[1,3,3,2],[1,2,3,0]],[[0,2,2,0],[1,0,2,3],[2,3,2,2],[0,2,2,1]],[[0,2,2,0],[1,0,2,2],[2,3,2,3],[0,2,2,1]],[[0,2,2,0],[1,0,2,2],[2,3,2,2],[0,3,2,1]],[[0,2,2,0],[1,0,2,2],[2,3,2,2],[0,2,3,1]],[[0,2,2,0],[1,0,2,2],[2,3,2,2],[0,2,2,2]],[[0,2,2,0],[1,0,2,2],[2,3,4,1],[0,2,2,1]],[[0,2,2,0],[1,0,2,2],[2,3,3,1],[0,3,2,1]],[[0,2,2,0],[1,0,2,2],[2,3,3,1],[0,2,3,1]],[[0,2,2,0],[1,0,2,2],[2,3,3,1],[0,2,2,2]],[[0,2,2,0],[1,0,2,3],[2,3,3,2],[0,2,1,1]],[[0,2,2,0],[1,0,2,2],[2,3,4,2],[0,2,1,1]],[[0,2,2,0],[1,0,2,2],[2,3,3,3],[0,2,1,1]],[[0,2,2,0],[1,0,2,2],[2,3,3,2],[0,2,1,2]],[[0,2,2,0],[1,0,2,3],[2,3,3,2],[0,2,2,0]],[[0,2,2,0],[1,0,2,2],[2,3,4,2],[0,2,2,0]],[[0,2,2,0],[1,0,2,2],[2,3,3,3],[0,2,2,0]],[[0,2,2,0],[1,0,2,2],[2,3,3,2],[0,3,2,0]],[[0,2,2,0],[1,0,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[1,2,2,3],[0,1,3,2],[1,1,1,1]],[[1,2,2,2],[1,2,2,2],[0,1,3,2],[1,1,1,1]],[[1,2,3,1],[1,2,2,2],[0,1,3,2],[1,1,1,1]],[[1,3,2,1],[1,2,2,2],[0,1,3,2],[1,1,1,1]],[[2,2,2,1],[1,2,2,2],[0,1,3,2],[1,1,1,1]],[[1,2,2,1],[1,2,2,2],[0,1,3,2],[1,0,2,2]],[[1,2,2,1],[1,2,2,2],[0,1,3,3],[1,0,2,1]],[[0,2,2,0],[1,0,3,0],[1,3,4,2],[1,2,2,1]],[[0,2,2,0],[1,0,3,0],[1,3,3,2],[2,2,2,1]],[[0,2,2,0],[1,0,3,0],[1,3,3,2],[1,3,2,1]],[[0,2,2,0],[1,0,3,0],[1,3,3,2],[1,2,3,1]],[[0,2,2,0],[1,0,3,0],[1,3,3,2],[1,2,2,2]],[[0,2,2,0],[1,0,3,0],[2,3,4,2],[0,2,2,1]],[[0,2,2,0],[1,0,3,0],[2,3,3,2],[0,3,2,1]],[[0,2,2,0],[1,0,3,0],[2,3,3,2],[0,2,3,1]],[[0,2,2,0],[1,0,3,0],[2,3,3,2],[0,2,2,2]],[[0,2,2,0],[1,0,3,1],[1,3,2,3],[1,2,2,1]],[[0,2,2,0],[1,0,3,1],[1,3,2,2],[2,2,2,1]],[[0,2,2,0],[1,0,3,1],[1,3,2,2],[1,3,2,1]],[[0,2,2,0],[1,0,3,1],[1,3,2,2],[1,2,3,1]],[[0,2,2,0],[1,0,3,1],[1,3,2,2],[1,2,2,2]],[[0,2,2,0],[1,0,3,1],[1,3,4,1],[1,2,2,1]],[[0,2,2,0],[1,0,3,1],[1,3,3,1],[2,2,2,1]],[[0,2,2,0],[1,0,3,1],[1,3,3,1],[1,3,2,1]],[[0,2,2,0],[1,0,3,1],[1,3,3,1],[1,2,3,1]],[[0,2,2,0],[1,0,3,1],[1,3,3,1],[1,2,2,2]],[[0,2,2,0],[1,0,3,1],[1,3,4,2],[1,2,1,1]],[[0,2,2,0],[1,0,3,1],[1,3,3,3],[1,2,1,1]],[[0,2,2,0],[1,0,3,1],[1,3,3,2],[1,2,1,2]],[[0,2,2,0],[1,0,3,1],[1,3,4,2],[1,2,2,0]],[[0,2,2,0],[1,0,3,1],[1,3,3,3],[1,2,2,0]],[[0,2,2,0],[1,0,3,1],[1,3,3,2],[2,2,2,0]],[[0,2,2,0],[1,0,3,1],[1,3,3,2],[1,3,2,0]],[[0,2,2,0],[1,0,3,1],[1,3,3,2],[1,2,3,0]],[[0,2,2,0],[1,0,3,1],[2,3,2,3],[0,2,2,1]],[[0,2,2,0],[1,0,3,1],[2,3,2,2],[0,3,2,1]],[[0,2,2,0],[1,0,3,1],[2,3,2,2],[0,2,3,1]],[[0,2,2,0],[1,0,3,1],[2,3,2,2],[0,2,2,2]],[[0,2,2,0],[1,0,3,1],[2,3,4,1],[0,2,2,1]],[[0,2,2,0],[1,0,3,1],[2,3,3,1],[0,3,2,1]],[[0,2,2,0],[1,0,3,1],[2,3,3,1],[0,2,3,1]],[[0,2,2,0],[1,0,3,1],[2,3,3,1],[0,2,2,2]],[[0,2,2,0],[1,0,3,1],[2,3,4,2],[0,2,1,1]],[[0,2,2,0],[1,0,3,1],[2,3,3,3],[0,2,1,1]],[[0,2,2,0],[1,0,3,1],[2,3,3,2],[0,2,1,2]],[[0,2,2,0],[1,0,3,1],[2,3,4,2],[0,2,2,0]],[[0,2,2,0],[1,0,3,1],[2,3,3,3],[0,2,2,0]],[[0,2,2,0],[1,0,3,1],[2,3,3,2],[0,3,2,0]],[[0,2,2,0],[1,0,3,1],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[1,2,2,3],[0,1,3,2],[1,0,2,1]],[[1,2,2,2],[1,2,2,2],[0,1,3,2],[1,0,2,1]],[[1,2,3,1],[1,2,2,2],[0,1,3,2],[1,0,2,1]],[[1,3,2,1],[1,2,2,2],[0,1,3,2],[1,0,2,1]],[[2,2,2,1],[1,2,2,2],[0,1,3,2],[1,0,2,1]],[[0,2,2,0],[1,0,3,3],[0,2,3,2],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[0,2,3,3],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[0,2,3,2],[1,2,3,1]],[[0,2,2,0],[1,0,3,2],[0,2,3,2],[1,2,2,2]],[[0,2,2,0],[1,0,3,3],[0,3,2,2],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[0,3,2,3],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[0,3,2,2],[1,3,2,1]],[[0,2,2,0],[1,0,3,2],[0,3,2,2],[1,2,3,1]],[[0,2,2,0],[1,0,3,2],[0,3,2,2],[1,2,2,2]],[[0,2,2,0],[1,0,3,2],[0,3,4,1],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[0,3,3,1],[1,3,2,1]],[[0,2,2,0],[1,0,3,2],[0,3,3,1],[1,2,3,1]],[[0,2,2,0],[1,0,3,2],[0,3,3,1],[1,2,2,2]],[[0,2,2,0],[1,0,3,3],[0,3,3,2],[1,2,1,1]],[[0,2,2,0],[1,0,3,2],[0,3,4,2],[1,2,1,1]],[[0,2,2,0],[1,0,3,2],[0,3,3,3],[1,2,1,1]],[[0,2,2,0],[1,0,3,2],[0,3,3,2],[1,2,1,2]],[[0,2,2,0],[1,0,3,3],[0,3,3,2],[1,2,2,0]],[[0,2,2,0],[1,0,3,2],[0,3,4,2],[1,2,2,0]],[[0,2,2,0],[1,0,3,2],[0,3,3,3],[1,2,2,0]],[[0,2,2,0],[1,0,3,2],[0,3,3,2],[1,3,2,0]],[[0,2,2,0],[1,0,3,2],[0,3,3,2],[1,2,3,0]],[[0,2,2,0],[1,0,3,3],[1,1,3,2],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[1,1,3,3],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[1,1,3,2],[1,2,3,1]],[[0,2,2,0],[1,0,3,2],[1,1,3,2],[1,2,2,2]],[[0,2,2,0],[1,0,3,3],[1,2,2,2],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[1,2,2,3],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[1,2,2,2],[2,2,2,1]],[[0,2,2,0],[1,0,3,2],[1,2,2,2],[1,3,2,1]],[[0,2,2,0],[1,0,3,2],[1,2,2,2],[1,2,3,1]],[[0,2,2,0],[1,0,3,2],[1,2,2,2],[1,2,2,2]],[[0,2,2,0],[1,0,3,2],[1,2,4,1],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[1,2,3,1],[2,2,2,1]],[[0,2,2,0],[1,0,3,2],[1,2,3,1],[1,3,2,1]],[[0,2,2,0],[1,0,3,2],[1,2,3,1],[1,2,3,1]],[[0,2,2,0],[1,0,3,2],[1,2,3,1],[1,2,2,2]],[[0,2,2,0],[1,0,3,3],[1,2,3,2],[1,2,1,1]],[[0,2,2,0],[1,0,3,2],[1,2,4,2],[1,2,1,1]],[[0,2,2,0],[1,0,3,2],[1,2,3,3],[1,2,1,1]],[[0,2,2,0],[1,0,3,2],[1,2,3,2],[1,2,1,2]],[[0,2,2,0],[1,0,3,3],[1,2,3,2],[1,2,2,0]],[[0,2,2,0],[1,0,3,2],[1,2,4,2],[1,2,2,0]],[[0,2,2,0],[1,0,3,2],[1,2,3,3],[1,2,2,0]],[[0,2,2,0],[1,0,3,2],[1,2,3,2],[2,2,2,0]],[[0,2,2,0],[1,0,3,2],[1,2,3,2],[1,3,2,0]],[[0,2,2,0],[1,0,3,2],[1,2,3,2],[1,2,3,0]],[[0,2,2,0],[1,0,3,3],[1,3,2,2],[1,1,2,1]],[[0,2,2,0],[1,0,3,2],[1,3,2,3],[1,1,2,1]],[[0,2,2,0],[1,0,3,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,0],[1,0,3,2],[1,3,2,2],[1,1,2,2]],[[0,2,2,0],[1,0,3,2],[1,3,4,0],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,0],[2,2,2,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,0],[1,3,2,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,0],[1,2,3,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,0],[1,2,2,2]],[[0,2,2,0],[1,0,3,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,1],[1,1,2,2]],[[0,2,2,0],[1,0,3,2],[1,3,4,1],[1,2,2,0]],[[0,2,2,0],[1,0,3,2],[1,3,3,1],[2,2,2,0]],[[0,2,2,0],[1,0,3,2],[1,3,3,1],[1,3,2,0]],[[0,2,2,0],[1,0,3,2],[1,3,3,1],[1,2,3,0]],[[0,2,2,0],[1,0,3,3],[1,3,3,2],[1,0,2,1]],[[0,2,2,0],[1,0,3,2],[1,3,4,2],[1,0,2,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,3],[1,0,2,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,2],[1,0,2,2]],[[0,2,2,0],[1,0,3,3],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,0,3,2],[1,3,4,2],[1,1,1,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,3],[1,1,1,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,2],[1,1,1,2]],[[0,2,2,0],[1,0,3,3],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[1,0,3,2],[1,3,4,2],[1,1,2,0]],[[0,2,2,0],[1,0,3,2],[1,3,3,3],[1,1,2,0]],[[0,2,2,0],[1,0,3,2],[1,3,3,2],[1,1,3,0]],[[0,2,2,0],[1,0,3,3],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[1,0,3,2],[1,3,4,2],[1,2,0,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,3],[1,2,0,1]],[[0,2,2,0],[1,0,3,2],[1,3,3,2],[1,2,0,2]],[[0,2,2,0],[1,0,3,3],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[1,0,3,2],[1,3,4,2],[1,2,1,0]],[[0,2,2,0],[1,0,3,2],[1,3,3,3],[1,2,1,0]],[[0,2,2,0],[1,0,3,3],[2,0,3,2],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,0,3,3],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,0,3,2],[1,2,3,1]],[[0,2,2,0],[1,0,3,2],[2,0,3,2],[1,2,2,2]],[[0,2,2,0],[1,0,3,3],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,1,2,3],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,1,2,2],[2,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,1,2,2],[1,3,2,1]],[[0,2,2,0],[1,0,3,2],[2,1,2,2],[1,2,3,1]],[[0,2,2,0],[1,0,3,2],[2,1,2,2],[1,2,2,2]],[[0,2,2,0],[1,0,3,2],[2,1,4,1],[1,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,1,3,1],[2,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,1,3,1],[1,3,2,1]],[[0,2,2,0],[1,0,3,2],[2,1,3,1],[1,2,3,1]],[[0,2,2,0],[1,0,3,2],[2,1,3,1],[1,2,2,2]],[[0,2,2,0],[1,0,3,3],[2,1,3,2],[0,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,1,3,3],[0,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,1,3,2],[0,2,3,1]],[[0,2,2,0],[1,0,3,2],[2,1,3,2],[0,2,2,2]],[[0,2,2,0],[1,0,3,3],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[1,0,3,2],[2,1,4,2],[1,2,1,1]],[[0,2,2,0],[1,0,3,2],[2,1,3,3],[1,2,1,1]],[[0,2,2,0],[1,0,3,2],[2,1,3,2],[1,2,1,2]],[[0,2,2,0],[1,0,3,3],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,0,3,2],[2,1,4,2],[1,2,2,0]],[[0,2,2,0],[1,0,3,2],[2,1,3,3],[1,2,2,0]],[[0,2,2,0],[1,0,3,2],[2,1,3,2],[2,2,2,0]],[[0,2,2,0],[1,0,3,2],[2,1,3,2],[1,3,2,0]],[[0,2,2,0],[1,0,3,2],[2,1,3,2],[1,2,3,0]],[[0,2,2,0],[1,0,3,3],[2,2,2,2],[0,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,2,2,3],[0,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,2,2,2],[0,3,2,1]],[[0,2,2,0],[1,0,3,2],[2,2,2,2],[0,2,3,1]],[[0,2,2,0],[1,0,3,2],[2,2,2,2],[0,2,2,2]],[[0,2,2,0],[1,0,3,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,2,3,1],[0,3,2,1]],[[0,2,2,0],[1,0,3,2],[2,2,3,1],[0,2,3,1]],[[0,2,2,0],[1,0,3,2],[2,2,3,1],[0,2,2,2]],[[0,2,2,0],[1,0,3,3],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[1,0,3,2],[2,2,4,2],[0,2,1,1]],[[0,2,2,0],[1,0,3,2],[2,2,3,3],[0,2,1,1]],[[0,2,2,0],[1,0,3,2],[2,2,3,2],[0,2,1,2]],[[0,2,2,0],[1,0,3,3],[2,2,3,2],[0,2,2,0]],[[0,2,2,0],[1,0,3,2],[2,2,4,2],[0,2,2,0]],[[0,2,2,0],[1,0,3,2],[2,2,3,3],[0,2,2,0]],[[0,2,2,0],[1,0,3,2],[2,2,3,2],[0,3,2,0]],[[0,2,2,0],[1,0,3,2],[2,2,3,2],[0,2,3,0]],[[0,2,2,0],[1,0,3,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,0],[1,0,3,2],[2,3,2,3],[0,1,2,1]],[[0,2,2,0],[1,0,3,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,0],[1,0,3,2],[2,3,2,2],[0,1,2,2]],[[0,2,2,0],[1,0,3,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,0],[1,0,3,2],[2,3,2,3],[1,0,2,1]],[[0,2,2,0],[1,0,3,2],[2,3,2,2],[1,0,3,1]],[[0,2,2,0],[1,0,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[1,2,2,3],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[1,2,2,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[1,2,2,2],[0,1,3,1],[1,2,2,0]],[[1,3,2,1],[1,2,2,2],[0,1,3,1],[1,2,2,0]],[[2,2,2,1],[1,2,2,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,0],[1,0,3,2],[2,3,4,0],[0,2,2,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,0],[0,3,2,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,0],[0,2,3,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,0],[0,2,2,2]],[[0,2,2,0],[1,0,3,2],[2,3,4,1],[0,1,2,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,1],[0,1,3,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,1],[0,1,2,2]],[[0,2,2,0],[1,0,3,2],[2,3,4,1],[0,2,2,0]],[[0,2,2,0],[1,0,3,2],[2,3,3,1],[0,3,2,0]],[[0,2,2,0],[1,0,3,2],[2,3,3,1],[0,2,3,0]],[[0,2,2,0],[1,0,3,2],[2,3,4,1],[1,0,2,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,1],[1,0,3,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[1,2,2,3],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[0,1,3,1],[1,2,1,1]],[[1,3,2,1],[1,2,2,2],[0,1,3,1],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,0],[1,0,3,3],[2,3,3,2],[0,0,2,1]],[[0,2,2,0],[1,0,3,2],[2,3,4,2],[0,0,2,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,3],[0,0,2,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,2],[0,0,2,2]],[[0,2,2,0],[1,0,3,3],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,0,3,2],[2,3,4,2],[0,1,1,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,3],[0,1,1,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,2],[0,1,1,2]],[[0,2,2,0],[1,0,3,3],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,0,3,2],[2,3,4,2],[0,1,2,0]],[[0,2,2,0],[1,0,3,2],[2,3,3,3],[0,1,2,0]],[[0,2,2,0],[1,0,3,2],[2,3,3,2],[0,1,3,0]],[[0,2,2,0],[1,0,3,3],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,0,3,2],[2,3,4,2],[0,2,0,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,3],[0,2,0,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,2],[0,2,0,2]],[[0,2,2,0],[1,0,3,3],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,0,3,2],[2,3,4,2],[0,2,1,0]],[[0,2,2,0],[1,0,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,2,2,3],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[0,1,3,0],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,0],[1,0,3,3],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,0,3,2],[2,3,4,2],[1,0,1,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,3],[1,0,1,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,2],[1,0,1,2]],[[0,2,2,0],[1,0,3,3],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,0,3,2],[2,3,4,2],[1,0,2,0]],[[0,2,2,0],[1,0,3,2],[2,3,3,3],[1,0,2,0]],[[0,2,2,0],[1,0,3,2],[2,3,3,2],[1,0,3,0]],[[0,2,2,0],[1,0,3,3],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,0,3,2],[2,3,4,2],[1,1,0,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,3],[1,1,0,1]],[[0,2,2,0],[1,0,3,2],[2,3,3,2],[1,1,0,2]],[[0,2,2,0],[1,0,3,3],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,0,3,2],[2,3,4,2],[1,1,1,0]],[[0,2,2,0],[1,0,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,2,2,2],[0,1,2,3],[1,2,2,0]],[[1,2,2,1],[1,2,2,3],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[1,2,2,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[1,2,2,2],[0,1,2,2],[1,2,2,0]],[[1,3,2,1],[1,2,2,2],[0,1,2,2],[1,2,2,0]],[[2,2,2,1],[1,2,2,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[1,2,2,2],[0,1,2,2],[1,2,1,2]],[[1,2,2,1],[1,2,2,2],[0,1,2,3],[1,2,1,1]],[[1,2,2,1],[1,2,2,3],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[0,1,2,2],[1,2,1,1]],[[1,3,2,1],[1,2,2,2],[0,1,2,2],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,0],[1,1,1,2],[0,3,3,3],[1,2,2,1]],[[0,2,2,0],[1,1,1,2],[0,3,3,2],[1,3,2,1]],[[0,2,2,0],[1,1,1,2],[0,3,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,1,2],[0,3,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,1,2],[1,2,3,3],[1,2,2,1]],[[0,2,2,0],[1,1,1,2],[1,2,3,2],[2,2,2,1]],[[0,2,2,0],[1,1,1,2],[1,2,3,2],[1,3,2,1]],[[0,2,2,0],[1,1,1,2],[1,2,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,1,2],[1,2,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,1,2],[1,3,3,3],[1,1,2,1]],[[0,2,2,0],[1,1,1,2],[1,3,3,2],[1,1,3,1]],[[0,2,2,0],[1,1,1,2],[1,3,3,2],[1,1,2,2]],[[0,2,2,0],[1,1,1,2],[2,1,3,3],[1,2,2,1]],[[0,2,2,0],[1,1,1,2],[2,1,3,2],[2,2,2,1]],[[0,2,2,0],[1,1,1,2],[2,1,3,2],[1,3,2,1]],[[0,2,2,0],[1,1,1,2],[2,1,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,1,2],[2,1,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,1,2],[2,2,3,3],[0,2,2,1]],[[0,2,2,0],[1,1,1,2],[2,2,3,2],[0,3,2,1]],[[0,2,2,0],[1,1,1,2],[2,2,3,2],[0,2,3,1]],[[0,2,2,0],[1,1,1,2],[2,2,3,2],[0,2,2,2]],[[0,2,2,0],[1,1,1,2],[2,3,3,3],[0,1,2,1]],[[0,2,2,0],[1,1,1,2],[2,3,3,2],[0,1,3,1]],[[0,2,2,0],[1,1,1,2],[2,3,3,2],[0,1,2,2]],[[0,2,2,0],[1,1,1,2],[2,3,3,3],[1,0,2,1]],[[0,2,2,0],[1,1,1,2],[2,3,3,2],[1,0,3,1]],[[0,2,2,0],[1,1,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,2,2,2],[0,1,1,2],[1,2,2,2]],[[1,2,2,1],[1,2,2,2],[0,1,1,2],[1,2,3,1]],[[1,2,2,1],[1,2,2,2],[0,1,1,2],[1,3,2,1]],[[1,2,2,1],[1,2,2,2],[0,1,1,2],[2,2,2,1]],[[1,2,2,1],[1,2,2,2],[0,1,1,3],[1,2,2,1]],[[0,2,2,0],[1,1,2,3],[0,2,3,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[0,2,3,3],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[0,2,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[0,2,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,2,3],[0,3,2,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[0,3,2,3],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[0,3,2,2],[1,3,2,1]],[[0,2,2,0],[1,1,2,2],[0,3,2,2],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[0,3,2,2],[1,2,2,2]],[[0,2,2,0],[1,1,2,2],[0,3,4,1],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[0,3,3,1],[1,3,2,1]],[[0,2,2,0],[1,1,2,2],[0,3,3,1],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[0,3,3,1],[1,2,2,2]],[[0,2,2,0],[1,1,2,3],[0,3,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[0,3,4,2],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[0,3,3,3],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[0,3,3,2],[1,2,1,2]],[[0,2,2,0],[1,1,2,3],[0,3,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[0,3,4,2],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[0,3,3,3],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[0,3,3,2],[1,3,2,0]],[[0,2,2,0],[1,1,2,2],[0,3,3,2],[1,2,3,0]],[[0,2,2,0],[1,1,2,3],[1,1,3,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,1,3,3],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,1,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[1,1,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,2,3],[1,2,2,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,2,2,3],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,2,2,2],[2,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,2,2,2],[1,3,2,1]],[[0,2,2,0],[1,1,2,2],[1,2,2,2],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[1,2,2,2],[1,2,2,2]],[[0,2,2,0],[1,1,2,2],[1,2,4,1],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,2,3,1],[2,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,2,3,1],[1,3,2,1]],[[0,2,2,0],[1,1,2,2],[1,2,3,1],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[1,2,3,1],[1,2,2,2]],[[0,2,2,0],[1,1,2,3],[1,2,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[1,2,4,2],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[1,2,3,3],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[1,2,3,2],[1,2,1,2]],[[0,2,2,0],[1,1,2,3],[1,2,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[1,2,4,2],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[1,2,3,3],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[1,2,3,2],[2,2,2,0]],[[0,2,2,0],[1,1,2,2],[1,2,3,2],[1,3,2,0]],[[0,2,2,0],[1,1,2,2],[1,2,3,2],[1,2,3,0]],[[0,2,2,0],[1,1,2,3],[1,3,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,4,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,1,3],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,1,2],[2,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,1,2],[1,3,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,1,2],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[1,3,1,2],[1,2,2,2]],[[0,2,2,0],[1,1,2,2],[1,4,2,1],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,2,1],[2,2,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,2,1],[1,3,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,2,1],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[1,3,2,1],[1,2,2,2]],[[0,2,2,0],[1,1,2,3],[1,3,2,2],[1,1,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,2,3],[1,1,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,0],[1,1,2,2],[1,3,2,2],[1,1,2,2]],[[0,2,2,0],[1,1,2,2],[1,4,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[1,3,2,2],[2,2,2,0]],[[0,2,2,0],[1,1,2,2],[1,3,2,2],[1,3,2,0]],[[0,2,2,0],[1,1,2,2],[1,3,2,2],[1,2,3,0]],[[0,2,2,0],[1,1,2,2],[1,4,3,1],[1,1,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,1],[1,1,2,2]],[[0,2,2,0],[1,1,2,2],[1,4,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[1,3,4,1],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,1],[2,2,1,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,1],[1,3,1,1]],[[0,2,2,0],[1,1,2,3],[1,3,3,2],[1,0,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,4,2],[1,0,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,3],[1,0,2,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,2],[1,0,2,2]],[[0,2,2,0],[1,1,2,3],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,1,2,2],[1,4,3,2],[1,1,1,1]],[[0,2,2,0],[1,1,2,2],[1,3,4,2],[1,1,1,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,3],[1,1,1,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,2],[1,1,1,2]],[[0,2,2,0],[1,1,2,3],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[1,1,2,2],[1,4,3,2],[1,1,2,0]],[[0,2,2,0],[1,1,2,2],[1,3,4,2],[1,1,2,0]],[[0,2,2,0],[1,1,2,2],[1,3,3,3],[1,1,2,0]],[[0,2,2,0],[1,1,2,2],[1,3,3,2],[1,1,3,0]],[[0,2,2,0],[1,1,2,3],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[1,1,2,2],[1,4,3,2],[1,2,0,1]],[[0,2,2,0],[1,1,2,2],[1,3,4,2],[1,2,0,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,3],[1,2,0,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,2],[2,2,0,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,2],[1,3,0,1]],[[0,2,2,0],[1,1,2,2],[1,3,3,2],[1,2,0,2]],[[0,2,2,0],[1,1,2,3],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[1,1,2,2],[1,4,3,2],[1,2,1,0]],[[0,2,2,0],[1,1,2,2],[1,3,4,2],[1,2,1,0]],[[0,2,2,0],[1,1,2,2],[1,3,3,3],[1,2,1,0]],[[0,2,2,0],[1,1,2,2],[1,3,3,2],[2,2,1,0]],[[0,2,2,0],[1,1,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,2,2,3],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[0,1,1,2],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[0,1,1,2],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,3],[2,0,3,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,0,3,3],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,0,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[2,0,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,2,3],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[3,1,2,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,1,2,3],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,1,2,2],[2,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,1,2,2],[1,3,2,1]],[[0,2,2,0],[1,1,2,2],[2,1,2,2],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[2,1,2,2],[1,2,2,2]],[[0,2,2,0],[1,1,2,2],[3,1,3,1],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,1,4,1],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,1,3,1],[2,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,1,3,1],[1,3,2,1]],[[0,2,2,0],[1,1,2,2],[2,1,3,1],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[2,1,3,1],[1,2,2,2]],[[0,2,2,0],[1,1,2,3],[2,1,3,2],[0,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,1,3,3],[0,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,1,3,2],[0,2,3,1]],[[0,2,2,0],[1,1,2,2],[2,1,3,2],[0,2,2,2]],[[0,2,2,0],[1,1,2,3],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[2,1,4,2],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[2,1,3,3],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[2,1,3,2],[1,2,1,2]],[[0,2,2,0],[1,1,2,3],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[3,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[2,1,4,2],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[2,1,3,3],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[2,1,3,2],[2,2,2,0]],[[0,2,2,0],[1,1,2,2],[2,1,3,2],[1,3,2,0]],[[0,2,2,0],[1,1,2,2],[2,1,3,2],[1,2,3,0]],[[0,2,2,0],[1,1,2,3],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[3,2,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,1,3],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,1,2],[2,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,1,2],[1,3,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,1,2],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[2,2,1,2],[1,2,2,2]],[[0,2,2,0],[1,1,2,2],[3,2,2,1],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,2,1],[2,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,2,1],[1,3,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,2,1],[1,2,3,1]],[[0,2,2,0],[1,1,2,2],[2,2,2,1],[1,2,2,2]],[[0,2,2,0],[1,1,2,3],[2,2,2,2],[0,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,2,3],[0,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,2,2],[0,3,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,2,2],[0,2,3,1]],[[0,2,2,0],[1,1,2,2],[2,2,2,2],[0,2,2,2]],[[0,2,2,0],[1,1,2,2],[3,2,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,2,2],[2,2,2,2],[2,2,2,0]],[[0,2,2,0],[1,1,2,2],[2,2,2,2],[1,3,2,0]],[[0,2,2,0],[1,1,2,2],[2,2,2,2],[1,2,3,0]],[[0,2,2,0],[1,1,2,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,3,1],[0,3,2,1]],[[0,2,2,0],[1,1,2,2],[2,2,3,1],[0,2,3,1]],[[0,2,2,0],[1,1,2,2],[2,2,3,1],[0,2,2,2]],[[0,2,2,0],[1,1,2,2],[3,2,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[2,2,3,1],[2,2,1,1]],[[0,2,2,0],[1,1,2,2],[2,2,3,1],[1,3,1,1]],[[0,2,2,0],[1,1,2,3],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[1,1,2,2],[2,2,4,2],[0,2,1,1]],[[0,2,2,0],[1,1,2,2],[2,2,3,3],[0,2,1,1]],[[0,2,2,0],[1,1,2,2],[2,2,3,2],[0,2,1,2]],[[0,2,2,0],[1,1,2,3],[2,2,3,2],[0,2,2,0]],[[0,2,2,0],[1,1,2,2],[2,2,4,2],[0,2,2,0]],[[0,2,2,0],[1,1,2,2],[2,2,3,3],[0,2,2,0]],[[0,2,2,0],[1,1,2,2],[2,2,3,2],[0,3,2,0]],[[0,2,2,0],[1,1,2,2],[2,2,3,2],[0,2,3,0]],[[0,2,2,0],[1,1,2,2],[3,2,3,2],[1,2,0,1]],[[0,2,2,0],[1,1,2,2],[2,2,3,2],[2,2,0,1]],[[0,2,2,0],[1,1,2,2],[2,2,3,2],[1,3,0,1]],[[0,2,2,0],[1,1,2,2],[3,2,3,2],[1,2,1,0]],[[0,2,2,0],[1,1,2,2],[2,2,3,2],[2,2,1,0]],[[0,2,2,0],[1,1,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,2,2,2],[0,0,3,3],[1,2,2,0]],[[1,2,2,1],[1,2,2,3],[0,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,2,2,2],[0,0,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,2,3],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[1,1,2,2],[3,3,1,2],[0,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,4,1,2],[0,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,1,3],[0,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,1,2],[0,3,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,1,2],[0,2,3,1]],[[0,2,2,0],[1,1,2,2],[2,3,1,2],[0,2,2,2]],[[0,2,2,0],[1,1,2,2],[3,3,1,2],[1,1,2,1]],[[0,2,2,0],[1,1,2,2],[2,4,1,2],[1,1,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,1,2],[2,1,2,1]],[[0,2,2,0],[1,1,2,2],[3,3,2,1],[0,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,4,2,1],[0,2,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,2,1],[0,3,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,2,1],[0,2,3,1]],[[0,2,2,0],[1,1,2,2],[2,3,2,1],[0,2,2,2]],[[0,2,2,0],[1,1,2,2],[3,3,2,1],[1,1,2,1]],[[0,2,2,0],[1,1,2,2],[2,4,2,1],[1,1,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,2,1],[2,1,2,1]],[[0,2,2,0],[1,1,2,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,2,3],[0,1,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,0],[1,1,2,2],[2,3,2,2],[0,1,2,2]],[[0,2,2,0],[1,1,2,2],[3,3,2,2],[0,2,2,0]],[[0,2,2,0],[1,1,2,2],[2,4,2,2],[0,2,2,0]],[[0,2,2,0],[1,1,2,2],[2,3,2,2],[0,3,2,0]],[[0,2,2,0],[1,1,2,2],[2,3,2,2],[0,2,3,0]],[[0,2,2,0],[1,1,2,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,2,3],[1,0,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,2,2],[1,0,3,1]],[[0,2,2,0],[1,1,2,2],[2,3,2,2],[1,0,2,2]],[[0,2,2,0],[1,1,2,2],[3,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,1,2,2],[2,4,2,2],[1,1,2,0]],[[0,2,2,0],[1,1,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,3,1],[1,2,2,2],[0,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,2,2,2],[0,0,3,2],[1,2,2,0]],[[2,2,2,1],[1,2,2,2],[0,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,2,2,2],[0,0,3,2],[1,2,1,2]],[[1,2,2,1],[1,2,2,2],[0,0,3,3],[1,2,1,1]],[[1,2,2,1],[1,2,2,3],[0,0,3,2],[1,2,1,1]],[[1,2,2,2],[1,2,2,2],[0,0,3,2],[1,2,1,1]],[[1,2,3,1],[1,2,2,2],[0,0,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,2,2],[3,3,3,1],[0,1,2,1]],[[0,2,2,0],[1,1,2,2],[2,4,3,1],[0,1,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,4,1],[0,1,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,1],[0,1,3,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,1],[0,1,2,2]],[[0,2,2,0],[1,1,2,2],[3,3,3,1],[0,2,1,1]],[[0,2,2,0],[1,1,2,2],[2,4,3,1],[0,2,1,1]],[[0,2,2,0],[1,1,2,2],[2,3,4,1],[0,2,1,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,1],[0,3,1,1]],[[0,2,2,0],[1,1,2,2],[3,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,1,2,2],[2,4,3,1],[1,0,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,4,1],[1,0,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,1],[2,0,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,1],[1,0,3,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,1],[1,0,2,2]],[[0,2,2,0],[1,1,2,2],[3,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,1,2,2],[2,4,3,1],[1,1,1,1]],[[0,2,2,0],[1,1,2,2],[2,3,4,1],[1,1,1,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,1],[2,1,1,1]],[[1,3,2,1],[1,2,2,2],[0,0,3,2],[1,2,1,1]],[[2,2,2,1],[1,2,2,2],[0,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,2,2,2],[0,0,3,2],[1,1,2,2]],[[1,2,2,1],[1,2,2,2],[0,0,3,3],[1,1,2,1]],[[1,2,2,1],[1,2,2,3],[0,0,3,2],[1,1,2,1]],[[1,2,2,2],[1,2,2,2],[0,0,3,2],[1,1,2,1]],[[1,2,3,1],[1,2,2,2],[0,0,3,2],[1,1,2,1]],[[0,2,2,0],[1,1,2,3],[2,3,3,2],[0,0,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,4,2],[0,0,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,3],[0,0,2,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[0,0,2,2]],[[0,2,2,0],[1,1,2,3],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,1,2,2],[3,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,1,2,2],[2,4,3,2],[0,1,1,1]],[[0,2,2,0],[1,1,2,2],[2,3,4,2],[0,1,1,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,3],[0,1,1,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[0,1,1,2]],[[0,2,2,0],[1,1,2,3],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,1,2,2],[3,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,1,2,2],[2,4,3,2],[0,1,2,0]],[[0,2,2,0],[1,1,2,2],[2,3,4,2],[0,1,2,0]],[[0,2,2,0],[1,1,2,2],[2,3,3,3],[0,1,2,0]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[0,1,3,0]],[[0,2,2,0],[1,1,2,3],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,1,2,2],[3,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,1,2,2],[2,4,3,2],[0,2,0,1]],[[0,2,2,0],[1,1,2,2],[2,3,4,2],[0,2,0,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,3],[0,2,0,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[0,3,0,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[0,2,0,2]],[[0,2,2,0],[1,1,2,3],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,1,2,2],[3,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,1,2,2],[2,4,3,2],[0,2,1,0]],[[0,2,2,0],[1,1,2,2],[2,3,4,2],[0,2,1,0]],[[0,2,2,0],[1,1,2,2],[2,3,3,3],[0,2,1,0]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[0,3,1,0]],[[1,3,2,1],[1,2,2,2],[0,0,3,2],[1,1,2,1]],[[2,2,2,1],[1,2,2,2],[0,0,3,2],[1,1,2,1]],[[1,2,2,1],[1,2,2,2],[0,0,3,2],[0,2,2,2]],[[1,2,2,1],[1,2,2,2],[0,0,3,3],[0,2,2,1]],[[1,2,2,1],[1,2,2,3],[0,0,3,2],[0,2,2,1]],[[1,2,2,2],[1,2,2,2],[0,0,3,2],[0,2,2,1]],[[1,2,3,1],[1,2,2,2],[0,0,3,2],[0,2,2,1]],[[1,3,2,1],[1,2,2,2],[0,0,3,2],[0,2,2,1]],[[0,2,2,0],[1,1,2,3],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,1,2,2],[3,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,1,2,2],[2,4,3,2],[1,0,1,1]],[[0,2,2,0],[1,1,2,2],[2,3,4,2],[1,0,1,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,3],[1,0,1,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[2,0,1,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[1,0,1,2]],[[0,2,2,0],[1,1,2,3],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,1,2,2],[3,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,1,2,2],[2,4,3,2],[1,0,2,0]],[[0,2,2,0],[1,1,2,2],[2,3,4,2],[1,0,2,0]],[[0,2,2,0],[1,1,2,2],[2,3,3,3],[1,0,2,0]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[2,0,2,0]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[1,0,3,0]],[[0,2,2,0],[1,1,2,3],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,1,2,2],[3,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,1,2,2],[2,4,3,2],[1,1,0,1]],[[0,2,2,0],[1,1,2,2],[2,3,4,2],[1,1,0,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,3],[1,1,0,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[2,1,0,1]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[1,1,0,2]],[[0,2,2,0],[1,1,2,3],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,1,2,2],[3,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,1,2,2],[2,4,3,2],[1,1,1,0]],[[0,2,2,0],[1,1,2,2],[2,3,4,2],[1,1,1,0]],[[0,2,2,0],[1,1,2,2],[2,3,3,3],[1,1,1,0]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[1,2,2,2],[0,0,2,2],[1,2,2,2]],[[1,2,2,1],[1,2,2,2],[0,0,2,2],[1,2,3,1]],[[1,2,2,1],[1,2,2,2],[0,0,2,3],[1,2,2,1]],[[1,2,2,1],[1,2,2,3],[0,0,2,2],[1,2,2,1]],[[1,2,2,2],[1,2,2,2],[0,0,2,2],[1,2,2,1]],[[1,2,3,1],[1,2,2,2],[0,0,2,2],[1,2,2,1]],[[1,3,2,1],[1,2,2,2],[0,0,2,2],[1,2,2,1]],[[2,2,2,1],[1,2,2,2],[0,0,2,2],[1,2,2,1]],[[0,2,2,0],[1,1,2,2],[3,3,3,2],[1,2,0,0]],[[0,2,2,0],[1,1,2,2],[2,4,3,2],[1,2,0,0]],[[0,2,2,0],[1,1,2,2],[2,3,3,2],[2,2,0,0]],[[0,2,2,0],[1,1,3,0],[0,3,4,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,0],[0,3,3,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,0],[0,3,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,0],[0,3,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,3,0],[1,4,2,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,0],[1,3,2,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,0],[1,3,2,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,0],[1,3,2,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,0],[1,3,2,2],[1,2,2,2]],[[0,2,2,0],[1,1,3,0],[1,4,3,2],[1,1,2,1]],[[0,2,2,0],[1,1,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,2,0],[1,1,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,2,0],[1,1,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,2,0],[1,1,3,0],[1,4,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,0],[1,3,4,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,0],[1,3,3,2],[2,2,1,1]],[[0,2,2,0],[1,1,3,0],[1,3,3,2],[1,3,1,1]],[[0,2,2,0],[1,1,3,0],[3,1,3,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,0],[2,1,4,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,0],[2,1,3,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,0],[2,1,3,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,0],[2,1,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,0],[2,1,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,3,0],[3,2,2,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,0],[2,2,2,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,0],[2,2,2,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,0],[2,2,2,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,0],[2,2,2,2],[1,2,2,2]],[[0,2,2,0],[1,1,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,2,0],[1,1,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,2,0],[1,1,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,2,0],[1,1,3,0],[3,2,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,0],[2,2,3,2],[2,2,1,1]],[[0,2,2,0],[1,1,3,0],[2,2,3,2],[1,3,1,1]],[[0,2,2,0],[1,1,3,0],[3,3,2,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,0],[2,4,2,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,0],[2,3,2,2],[0,3,2,1]],[[0,2,2,0],[1,1,3,0],[2,3,2,2],[0,2,3,1]],[[0,2,2,0],[1,1,3,0],[2,3,2,2],[0,2,2,2]],[[0,2,2,0],[1,1,3,0],[3,3,2,2],[1,1,2,1]],[[0,2,2,0],[1,1,3,0],[2,4,2,2],[1,1,2,1]],[[0,2,2,0],[1,1,3,0],[2,3,2,2],[2,1,2,1]],[[0,2,2,0],[1,1,3,0],[3,3,3,2],[0,1,2,1]],[[0,2,2,0],[1,1,3,0],[2,4,3,2],[0,1,2,1]],[[0,2,2,0],[1,1,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,2,0],[1,1,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,2,0],[1,1,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,2,0],[1,1,3,0],[3,3,3,2],[0,2,1,1]],[[0,2,2,0],[1,1,3,0],[2,4,3,2],[0,2,1,1]],[[0,2,2,0],[1,1,3,0],[2,3,4,2],[0,2,1,1]],[[0,2,2,0],[1,1,3,0],[2,3,3,2],[0,3,1,1]],[[0,2,2,0],[1,1,3,0],[3,3,3,2],[1,0,2,1]],[[0,2,2,0],[1,1,3,0],[2,4,3,2],[1,0,2,1]],[[0,2,2,0],[1,1,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,2,0],[1,1,3,0],[2,3,3,2],[2,0,2,1]],[[0,2,2,0],[1,1,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,2,0],[1,1,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,2,0],[1,1,3,0],[3,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,1,3,0],[2,4,3,2],[1,1,1,1]],[[0,2,2,0],[1,1,3,0],[2,3,4,2],[1,1,1,1]],[[0,2,2,0],[1,1,3,0],[2,3,3,2],[2,1,1,1]],[[0,2,2,0],[1,1,3,1],[0,2,3,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[0,2,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[0,2,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,3,1],[0,3,2,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[0,3,2,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[0,3,2,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[0,3,2,2],[1,2,2,2]],[[0,2,3,0],[1,1,3,1],[0,3,3,1],[1,2,2,1]],[[0,2,2,0],[1,1,4,1],[0,3,3,1],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[0,3,4,1],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[0,3,3,1],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[0,3,3,1],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[0,3,3,1],[1,2,2,2]],[[0,2,3,0],[1,1,3,1],[0,3,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,4,1],[0,3,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[0,3,4,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[0,3,3,3],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[0,3,3,2],[1,2,1,2]],[[0,2,3,0],[1,1,3,1],[0,3,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,4,1],[0,3,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[0,3,4,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[0,3,3,3],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[0,3,3,2],[1,3,2,0]],[[0,2,2,0],[1,1,3,1],[0,3,3,2],[1,2,3,0]],[[0,2,2,0],[1,1,3,1],[1,1,3,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,1,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[1,1,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[1,2,2,2],[1,2,2,2]],[[0,3,2,0],[1,1,3,1],[1,2,3,1],[1,2,2,1]],[[0,2,3,0],[1,1,3,1],[1,2,3,1],[1,2,2,1]],[[0,2,2,0],[1,1,4,1],[1,2,3,1],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[1,2,3,1],[1,2,2,2]],[[0,3,2,0],[1,1,3,1],[1,2,3,2],[1,2,1,1]],[[0,2,3,0],[1,1,3,1],[1,2,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,4,1],[1,2,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[1,2,3,2],[1,2,1,2]],[[0,3,2,0],[1,1,3,1],[1,2,3,2],[1,2,2,0]],[[0,2,3,0],[1,1,3,1],[1,2,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,4,1],[1,2,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,2,0],[1,1,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,2,0],[1,1,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,2,0],[1,1,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,2,0],[1,1,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,2,0],[1,1,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,2,0],[1,1,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,2,0],[1,1,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,2,0],[1,1,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,2,0],[1,1,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,2,0],[1,1,3,1],[1,4,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,0],[2,2,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,0],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,0],[1,2,3,1]],[[0,3,2,0],[1,1,3,1],[1,3,3,1],[1,1,2,1]],[[0,2,3,0],[1,1,3,1],[1,3,3,1],[1,1,2,1]],[[0,2,2,0],[1,1,4,1],[1,3,3,1],[1,1,2,1]],[[0,2,2,0],[1,1,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,1],[1,1,2,2]],[[0,3,2,0],[1,1,3,1],[1,3,3,1],[1,2,1,1]],[[0,2,3,0],[1,1,3,1],[1,3,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,4,1],[1,3,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,3,0],[1,1,3,1],[1,3,3,2],[1,0,2,1]],[[0,2,2,0],[1,1,4,1],[1,3,3,2],[1,0,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,4,2],[1,0,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,3],[1,0,2,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,2],[1,0,2,2]],[[0,3,2,0],[1,1,3,1],[1,3,3,2],[1,1,1,1]],[[0,2,3,0],[1,1,3,1],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,1,4,1],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,1,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,2,0],[1,1,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,2],[1,1,1,2]],[[0,3,2,0],[1,1,3,1],[1,3,3,2],[1,1,2,0]],[[0,2,3,0],[1,1,3,1],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[1,1,4,1],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[1,1,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,2,0],[1,1,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,2,0],[1,1,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,2,0],[1,1,3,1],[1,3,3,2],[1,1,3,0]],[[0,3,2,0],[1,1,3,1],[1,3,3,2],[1,2,0,1]],[[0,2,3,0],[1,1,3,1],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[1,1,4,1],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[1,1,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,2,0],[1,1,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,2,0],[1,1,3,1],[1,3,3,2],[1,2,0,2]],[[0,3,2,0],[1,1,3,1],[1,3,3,2],[1,2,1,0]],[[0,2,3,0],[1,1,3,1],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[1,1,4,1],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[1,1,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,2,0],[1,1,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,2,0],[1,1,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,2,0],[1,1,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,2,0],[1,1,3,1],[1,3,3,2],[1,3,1,0]],[[0,2,2,0],[1,1,3,1],[2,0,3,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,0,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[2,0,3,2],[1,2,2,2]],[[0,2,2,0],[1,1,3,1],[3,1,2,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,1,2,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,1,2,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,1,2,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[2,1,2,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[2,1,2,2],[1,2,2,2]],[[0,3,2,0],[1,1,3,1],[2,1,3,1],[1,2,2,1]],[[0,2,3,0],[1,1,3,1],[2,1,3,1],[1,2,2,1]],[[0,2,2,0],[1,1,4,1],[2,1,3,1],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[3,1,3,1],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,1,4,1],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,1,3,1],[2,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,1,3,1],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[2,1,3,1],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[2,1,3,1],[1,2,2,2]],[[0,2,2,0],[1,1,3,1],[2,1,3,3],[0,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,1,3,2],[0,2,3,1]],[[0,2,2,0],[1,1,3,1],[2,1,3,2],[0,2,2,2]],[[0,3,2,0],[1,1,3,1],[2,1,3,2],[1,2,1,1]],[[0,2,3,0],[1,1,3,1],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,4,1],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[2,1,4,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[2,1,3,3],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[2,1,3,2],[1,2,1,2]],[[0,3,2,0],[1,1,3,1],[2,1,3,2],[1,2,2,0]],[[0,2,3,0],[1,1,3,1],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,4,1],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[3,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[2,1,4,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[2,1,3,3],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[2,1,3,2],[2,2,2,0]],[[0,2,2,0],[1,1,3,1],[2,1,3,2],[1,3,2,0]],[[0,2,2,0],[1,1,3,1],[2,1,3,2],[1,2,3,0]],[[0,2,2,0],[1,1,3,1],[3,2,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,1,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,1,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,1,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,1,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[2,2,1,2],[1,2,2,2]],[[0,2,2,0],[1,1,3,1],[3,2,2,1],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,2,1],[2,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,2,1],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,2,1],[1,2,3,1]],[[0,2,2,0],[1,1,3,1],[2,2,2,1],[1,2,2,2]],[[0,2,2,0],[1,1,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,2,0],[1,1,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,2,0],[1,1,3,1],[3,2,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,1],[2,2,2,2],[2,2,2,0]],[[0,2,2,0],[1,1,3,1],[2,2,2,2],[1,3,2,0]],[[0,2,2,0],[1,1,3,1],[2,2,2,2],[1,2,3,0]],[[0,2,2,0],[1,1,3,1],[3,2,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,0],[2,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,0],[1,3,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,0],[1,2,3,1]],[[0,3,2,0],[1,1,3,1],[2,2,3,1],[0,2,2,1]],[[0,2,3,0],[1,1,3,1],[2,2,3,1],[0,2,2,1]],[[0,2,2,0],[1,1,4,1],[2,2,3,1],[0,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,2,0],[1,1,3,1],[3,2,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,1],[2,2,1,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,1],[1,3,1,1]],[[0,3,2,0],[1,1,3,1],[2,2,3,2],[0,2,1,1]],[[0,2,3,0],[1,1,3,1],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[1,1,4,1],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[1,1,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,2],[0,2,1,2]],[[0,3,2,0],[1,1,3,1],[2,2,3,2],[0,2,2,0]],[[0,2,3,0],[1,1,3,1],[2,2,3,2],[0,2,2,0]],[[0,2,2,0],[1,1,4,1],[2,2,3,2],[0,2,2,0]],[[0,2,2,0],[1,1,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,2,0],[1,1,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,2,0],[1,1,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,2,0],[1,1,3,1],[2,2,3,2],[0,2,3,0]],[[0,2,2,0],[1,1,3,1],[3,2,3,2],[1,2,0,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,2],[2,2,0,1]],[[0,2,2,0],[1,1,3,1],[2,2,3,2],[1,3,0,1]],[[0,2,2,0],[1,1,3,1],[3,2,3,2],[1,2,1,0]],[[0,2,2,0],[1,1,3,1],[2,2,3,2],[2,2,1,0]],[[0,2,2,0],[1,1,3,1],[2,2,3,2],[1,3,1,0]],[[0,2,2,0],[1,1,3,1],[3,3,1,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,2,0],[1,1,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,2,0],[1,1,3,1],[3,3,1,2],[1,1,2,1]],[[0,2,2,0],[1,1,3,1],[2,4,1,2],[1,1,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,1,2],[2,1,2,1]],[[0,2,2,0],[1,1,3,1],[3,3,2,1],[0,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,2,0],[1,1,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,2,0],[1,1,3,1],[3,3,2,1],[1,1,2,1]],[[0,2,2,0],[1,1,3,1],[2,4,2,1],[1,1,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,2,1],[2,1,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,2,0],[1,1,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,2,0],[1,1,3,1],[3,3,2,2],[0,2,2,0]],[[0,2,2,0],[1,1,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,2,0],[1,1,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,2,0],[1,1,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,2,0],[1,1,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,2,0],[1,1,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,2,0],[1,1,3,1],[3,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,1,3,1],[2,4,2,2],[1,1,2,0]],[[0,2,2,0],[1,1,3,1],[2,3,2,2],[2,1,2,0]],[[0,2,2,0],[1,1,3,1],[3,3,3,0],[0,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,4,3,0],[0,2,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,0],[0,3,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,0],[0,2,3,1]],[[0,2,2,0],[1,1,3,1],[3,3,3,0],[1,1,2,1]],[[0,2,2,0],[1,1,3,1],[2,4,3,0],[1,1,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,0],[2,1,2,1]],[[0,3,2,0],[1,1,3,1],[2,3,3,1],[0,1,2,1]],[[0,2,3,0],[1,1,3,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[1,1,4,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[1,1,3,1],[3,3,3,1],[0,1,2,1]],[[0,2,2,0],[1,1,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,1],[0,1,2,2]],[[0,3,2,0],[1,1,3,1],[2,3,3,1],[0,2,1,1]],[[0,2,3,0],[1,1,3,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[1,1,4,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[1,1,3,1],[3,3,3,1],[0,2,1,1]],[[0,2,2,0],[1,1,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,2,0],[1,1,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,1],[0,3,1,1]],[[0,3,2,0],[1,1,3,1],[2,3,3,1],[1,0,2,1]],[[0,2,3,0],[1,1,3,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,1,4,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,1,3,1],[3,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,1,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,1],[2,0,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,1],[1,0,2,2]],[[0,3,2,0],[1,1,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,3,0],[1,1,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,1,4,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,1,3,1],[3,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,1,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,2,0],[1,1,3,1],[2,3,4,1],[1,1,1,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,1],[2,1,1,1]],[[0,2,2,0],[1,1,3,1],[3,3,3,1],[1,2,0,1]],[[0,2,2,0],[1,1,3,1],[2,4,3,1],[1,2,0,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,1],[2,2,0,1]],[[0,3,2,0],[1,1,3,1],[2,3,3,2],[0,0,2,1]],[[0,2,3,0],[1,1,3,1],[2,3,3,2],[0,0,2,1]],[[0,2,2,0],[1,1,4,1],[2,3,3,2],[0,0,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[0,0,2,2]],[[0,3,2,0],[1,1,3,1],[2,3,3,2],[0,1,1,1]],[[0,2,3,0],[1,1,3,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,1,4,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,1,3,1],[3,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,1,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,2,0],[1,1,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[0,1,1,2]],[[0,3,2,0],[1,1,3,1],[2,3,3,2],[0,1,2,0]],[[0,2,3,0],[1,1,3,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,1,4,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,1,3,1],[3,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,1,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,2,0],[1,1,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,2,0],[1,1,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[0,1,3,0]],[[0,3,2,0],[1,1,3,1],[2,3,3,2],[0,2,0,1]],[[0,2,3,0],[1,1,3,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,1,4,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,1,3,1],[3,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,1,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,2,0],[1,1,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[0,2,0,2]],[[0,3,2,0],[1,1,3,1],[2,3,3,2],[0,2,1,0]],[[0,2,3,0],[1,1,3,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,1,4,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,1,3,1],[3,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,1,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,2,0],[1,1,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,2,0],[1,1,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[0,3,1,0]],[[0,3,2,0],[1,1,3,1],[2,3,3,2],[1,0,1,1]],[[0,2,3,0],[1,1,3,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,1,4,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,1,3,1],[3,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,1,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,2,0],[1,1,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[2,0,1,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[1,0,1,2]],[[0,3,2,0],[1,1,3,1],[2,3,3,2],[1,0,2,0]],[[0,2,3,0],[1,1,3,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,1,4,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,1,3,1],[3,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,1,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,2,0],[1,1,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,2,0],[1,1,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[2,0,2,0]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[1,0,3,0]],[[0,3,2,0],[1,1,3,1],[2,3,3,2],[1,1,0,1]],[[0,2,3,0],[1,1,3,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,1,4,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,1,3,1],[3,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,1,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,2,0],[1,1,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[2,1,0,1]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[1,1,0,2]],[[0,3,2,0],[1,1,3,1],[2,3,3,2],[1,1,1,0]],[[0,2,3,0],[1,1,3,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,1,4,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,1,3,1],[3,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,1,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,2,0],[1,1,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,2,0],[1,1,3,1],[2,3,3,3],[1,1,1,0]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[2,1,1,0]],[[0,2,2,0],[1,1,3,1],[3,3,3,2],[1,2,0,0]],[[0,2,2,0],[1,1,3,1],[2,4,3,2],[1,2,0,0]],[[0,2,2,0],[1,1,3,1],[2,3,3,2],[2,2,0,0]],[[0,2,3,0],[1,1,3,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,4,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,3],[0,3,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[0,3,1,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[0,3,1,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,2],[0,3,1,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,2],[0,3,1,2],[1,2,2,2]],[[0,2,3,0],[1,1,3,2],[0,3,2,2],[1,2,1,1]],[[0,2,2,0],[1,1,4,2],[0,3,2,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,3],[0,3,2,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[0,3,2,3],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[0,3,2,2],[1,2,1,2]],[[0,2,3,0],[1,1,3,2],[0,3,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,4,2],[0,3,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,3],[0,3,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[0,3,2,3],[1,2,2,0]],[[0,2,3,0],[1,1,3,2],[0,3,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,4,2],[0,3,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,3],[0,3,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[0,3,4,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[0,3,3,0],[1,3,2,1]],[[0,2,2,0],[1,1,3,2],[0,3,3,0],[1,2,3,1]],[[0,2,2,0],[1,1,3,2],[0,3,3,0],[1,2,2,2]],[[0,2,3,0],[1,1,3,2],[0,3,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,4,2],[0,3,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,3,3],[0,3,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[0,3,4,1],[1,2,1,1]],[[0,2,3,0],[1,1,3,2],[0,3,3,1],[1,2,2,0]],[[0,2,2,0],[1,1,4,2],[0,3,3,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,3],[0,3,3,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[0,3,4,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[0,3,3,1],[1,3,2,0]],[[0,2,2,0],[1,1,3,2],[0,3,3,1],[1,2,3,0]],[[0,2,2,0],[1,1,3,3],[1,0,3,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,0,3,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,0,3,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,2],[1,0,3,2],[1,2,2,2]],[[0,3,2,0],[1,1,3,2],[1,2,1,2],[1,2,2,1]],[[0,2,3,0],[1,1,3,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,4,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,3],[1,2,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,2,1,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,2,1,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,2,1,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,2],[1,2,1,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,2],[1,2,1,2],[1,2,2,2]],[[0,3,2,0],[1,1,3,2],[1,2,2,2],[1,2,1,1]],[[0,2,3,0],[1,1,3,2],[1,2,2,2],[1,2,1,1]],[[0,2,2,0],[1,1,4,2],[1,2,2,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,3],[1,2,2,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[1,2,2,3],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[1,2,2,2],[1,2,1,2]],[[0,3,2,0],[1,1,3,2],[1,2,2,2],[1,2,2,0]],[[0,2,3,0],[1,1,3,2],[1,2,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,4,2],[1,2,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,3],[1,2,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[1,2,2,3],[1,2,2,0]],[[0,3,2,0],[1,1,3,2],[1,2,3,0],[1,2,2,1]],[[0,2,3,0],[1,1,3,2],[1,2,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,4,2],[1,2,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,3],[1,2,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,2,0],[1,1,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,2,0],[1,1,3,2],[1,2,3,0],[1,2,2,2]],[[0,3,2,0],[1,1,3,2],[1,2,3,1],[1,2,1,1]],[[0,2,3,0],[1,1,3,2],[1,2,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,4,2],[1,2,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,3,3],[1,2,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[1,2,4,1],[1,2,1,1]],[[0,3,2,0],[1,1,3,2],[1,2,3,1],[1,2,2,0]],[[0,2,3,0],[1,1,3,2],[1,2,3,1],[1,2,2,0]],[[0,2,2,0],[1,1,4,2],[1,2,3,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,3],[1,2,3,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,2,0],[1,1,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,2,0],[1,1,3,2],[1,2,3,1],[1,2,3,0]],[[0,3,2,0],[1,1,3,2],[1,3,0,2],[1,2,2,1]],[[0,2,3,0],[1,1,3,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[1,1,4,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,3],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,4,0,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,0,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,0,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,0,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,0,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,2],[1,3,0,2],[1,2,2,2]],[[0,3,2,0],[1,1,3,2],[1,3,1,2],[1,1,2,1]],[[0,2,3,0],[1,1,3,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[1,1,4,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[1,1,3,3],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,1,3],[1,1,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,1,2],[1,1,3,1]],[[0,2,2,0],[1,1,3,2],[1,3,1,2],[1,1,2,2]],[[0,2,2,0],[1,1,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,2,0],[1,1,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,2,0],[1,1,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,2,0],[1,1,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,2,0],[1,1,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,3,0],[1,1,3,2],[1,3,2,2],[1,0,2,1]],[[0,2,2,0],[1,1,4,2],[1,3,2,2],[1,0,2,1]],[[0,2,2,0],[1,1,3,3],[1,3,2,2],[1,0,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,2,3],[1,0,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,2,2],[1,0,2,2]],[[0,3,2,0],[1,1,3,2],[1,3,2,2],[1,1,1,1]],[[0,2,3,0],[1,1,3,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,0],[1,1,4,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,0],[1,1,3,3],[1,3,2,2],[1,1,1,1]],[[0,2,2,0],[1,1,3,2],[1,3,2,3],[1,1,1,1]],[[0,2,2,0],[1,1,3,2],[1,3,2,2],[1,1,1,2]],[[0,3,2,0],[1,1,3,2],[1,3,2,2],[1,1,2,0]],[[0,2,3,0],[1,1,3,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,1,4,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,1,3,3],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,1,3,2],[1,3,2,3],[1,1,2,0]],[[0,3,2,0],[1,1,3,2],[1,3,2,2],[1,2,0,1]],[[0,2,3,0],[1,1,3,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,0],[1,1,4,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,0],[1,1,3,3],[1,3,2,2],[1,2,0,1]],[[0,2,2,0],[1,1,3,2],[1,3,2,3],[1,2,0,1]],[[0,2,2,0],[1,1,3,2],[1,3,2,2],[1,2,0,2]],[[0,3,2,0],[1,1,3,2],[1,3,2,2],[1,2,1,0]],[[0,2,3,0],[1,1,3,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,0],[1,1,4,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,0],[1,1,3,3],[1,3,2,2],[1,2,1,0]],[[0,2,2,0],[1,1,3,2],[1,3,2,3],[1,2,1,0]],[[0,3,2,0],[1,1,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,3,0],[1,1,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[1,1,4,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[1,1,3,3],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[1,1,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,2,0],[1,1,3,2],[1,3,3,0],[1,1,2,2]],[[0,3,2,0],[1,1,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,3,0],[1,1,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,0],[1,1,4,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,0],[1,1,3,3],[1,3,3,0],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,2,0],[1,1,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,3,0],[1,1,3,2],[1,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,1,4,2],[1,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,1,3,3],[1,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,1,3,2],[1,3,4,1],[1,0,2,1]],[[0,3,2,0],[1,1,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,3,0],[1,1,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,1,4,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,1,3,3],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,1,3,2],[1,4,3,1],[1,1,1,1]],[[0,2,2,0],[1,1,3,2],[1,3,4,1],[1,1,1,1]],[[0,3,2,0],[1,1,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,3,0],[1,1,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,0],[1,1,4,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,0],[1,1,3,3],[1,3,3,1],[1,1,2,0]],[[0,2,2,0],[1,1,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,2,0],[1,1,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,2,0],[1,1,3,2],[1,3,3,1],[1,1,3,0]],[[0,3,2,0],[1,1,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,3,0],[1,1,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[1,1,4,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[1,1,3,3],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[1,1,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,2,0],[1,1,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,2,0],[1,1,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,2,0],[1,1,3,2],[1,3,3,1],[1,3,0,1]],[[0,3,2,0],[1,1,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,3,0],[1,1,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,0],[1,1,4,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,0],[1,1,3,3],[1,3,3,1],[1,2,1,0]],[[0,2,2,0],[1,1,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,2,0],[1,1,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,2,0],[1,1,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,2,0],[1,1,3,2],[1,3,3,1],[1,3,1,0]],[[0,2,3,0],[1,1,3,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,1,4,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,1,3,3],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,1,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,2,1,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[1,2,1,2],[2,1,4,2],[1,1,1,0]],[[1,2,2,1],[1,2,1,3],[2,1,3,2],[1,1,1,0]],[[1,2,2,2],[1,2,1,2],[2,1,3,2],[1,1,1,0]],[[1,2,3,1],[1,2,1,2],[2,1,3,2],[1,1,1,0]],[[1,3,2,1],[1,2,1,2],[2,1,3,2],[1,1,1,0]],[[2,2,2,1],[1,2,1,2],[2,1,3,2],[1,1,1,0]],[[1,2,2,1],[1,2,1,2],[2,1,3,2],[1,1,0,2]],[[1,2,2,1],[1,2,1,2],[2,1,3,3],[1,1,0,1]],[[1,2,2,1],[1,2,1,2],[2,1,4,2],[1,1,0,1]],[[1,2,2,1],[1,2,1,3],[2,1,3,2],[1,1,0,1]],[[1,2,2,2],[1,2,1,2],[2,1,3,2],[1,1,0,1]],[[1,2,3,1],[1,2,1,2],[2,1,3,2],[1,1,0,1]],[[1,3,2,1],[1,2,1,2],[2,1,3,2],[1,1,0,1]],[[2,2,2,1],[1,2,1,2],[2,1,3,2],[1,1,0,1]],[[1,2,2,1],[1,2,1,2],[2,1,3,2],[1,0,3,0]],[[1,2,2,1],[1,2,1,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[1,2,1,2],[2,1,4,2],[1,0,2,0]],[[1,2,2,1],[1,2,1,3],[2,1,3,2],[1,0,2,0]],[[1,2,2,2],[1,2,1,2],[2,1,3,2],[1,0,2,0]],[[1,2,3,1],[1,2,1,2],[2,1,3,2],[1,0,2,0]],[[1,3,2,1],[1,2,1,2],[2,1,3,2],[1,0,2,0]],[[2,2,2,1],[1,2,1,2],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[1,2,1,2],[2,1,3,2],[1,0,1,2]],[[1,2,2,1],[1,2,1,2],[2,1,3,3],[1,0,1,1]],[[1,2,2,1],[1,2,1,2],[2,1,4,2],[1,0,1,1]],[[0,2,2,0],[1,1,3,3],[2,0,3,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,0,3,3],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,0,3,2],[0,2,3,1]],[[0,2,2,0],[1,1,3,2],[2,0,3,2],[0,2,2,2]],[[0,3,2,0],[1,1,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,3,0],[1,1,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,4,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,3],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[3,1,1,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,1,1,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,1,1,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,1,1,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,2],[2,1,1,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,2],[2,1,1,2],[1,2,2,2]],[[0,3,2,0],[1,1,3,2],[2,1,2,2],[1,2,1,1]],[[0,2,3,0],[1,1,3,2],[2,1,2,2],[1,2,1,1]],[[0,2,2,0],[1,1,4,2],[2,1,2,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,3],[2,1,2,2],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[2,1,2,3],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[2,1,2,2],[1,2,1,2]],[[0,3,2,0],[1,1,3,2],[2,1,2,2],[1,2,2,0]],[[0,2,3,0],[1,1,3,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,4,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,3],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[2,1,2,3],[1,2,2,0]],[[0,3,2,0],[1,1,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,3,0],[1,1,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,4,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,3],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[3,1,3,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,1,4,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,1,3,0],[2,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,1,3,0],[1,3,2,1]],[[0,2,2,0],[1,1,3,2],[2,1,3,0],[1,2,3,1]],[[0,2,2,0],[1,1,3,2],[2,1,3,0],[1,2,2,2]],[[0,3,2,0],[1,1,3,2],[2,1,3,1],[1,2,1,1]],[[0,2,3,0],[1,1,3,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,4,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,3,3],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[2,1,4,1],[1,2,1,1]],[[0,3,2,0],[1,1,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,3,0],[1,1,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,0],[1,1,4,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,3],[2,1,3,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[3,1,3,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[2,1,4,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[2,1,3,1],[2,2,2,0]],[[0,2,2,0],[1,1,3,2],[2,1,3,1],[1,3,2,0]],[[0,2,2,0],[1,1,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[1,2,1,3],[2,1,3,2],[1,0,1,1]],[[1,2,2,2],[1,2,1,2],[2,1,3,2],[1,0,1,1]],[[1,2,3,1],[1,2,1,2],[2,1,3,2],[1,0,1,1]],[[1,3,2,1],[1,2,1,2],[2,1,3,2],[1,0,1,1]],[[2,2,2,1],[1,2,1,2],[2,1,3,2],[1,0,1,1]],[[0,3,2,0],[1,1,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,3,0],[1,1,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,0],[1,1,4,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,3],[2,2,0,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[3,2,0,2],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,0,3],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,0,2],[2,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,0,2],[1,3,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,0,2],[1,2,3,1]],[[0,2,2,0],[1,1,3,2],[2,2,0,2],[1,2,2,2]],[[0,3,2,0],[1,1,3,2],[2,2,1,2],[0,2,2,1]],[[0,2,3,0],[1,1,3,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[1,1,4,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,3],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,1,3],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,1,2],[0,3,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,1,2],[0,2,3,1]],[[0,2,2,0],[1,1,3,2],[2,2,1,2],[0,2,2,2]],[[0,2,2,0],[1,1,3,2],[3,2,2,0],[1,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,2,0],[2,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,2,0],[1,3,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,2,0],[1,2,3,1]],[[0,2,2,0],[1,1,3,2],[2,2,2,0],[1,2,2,2]],[[0,2,2,0],[1,1,3,2],[3,2,2,1],[1,2,2,0]],[[0,2,2,0],[1,1,3,2],[2,2,2,1],[2,2,2,0]],[[0,2,2,0],[1,1,3,2],[2,2,2,1],[1,3,2,0]],[[0,2,2,0],[1,1,3,2],[2,2,2,1],[1,2,3,0]],[[0,3,2,0],[1,1,3,2],[2,2,2,2],[0,2,1,1]],[[0,2,3,0],[1,1,3,2],[2,2,2,2],[0,2,1,1]],[[0,2,2,0],[1,1,4,2],[2,2,2,2],[0,2,1,1]],[[0,2,2,0],[1,1,3,3],[2,2,2,2],[0,2,1,1]],[[0,2,2,0],[1,1,3,2],[2,2,2,3],[0,2,1,1]],[[0,2,2,0],[1,1,3,2],[2,2,2,2],[0,2,1,2]],[[0,3,2,0],[1,1,3,2],[2,2,2,2],[0,2,2,0]],[[0,2,3,0],[1,1,3,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[1,1,4,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[1,1,3,3],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[1,1,3,2],[2,2,2,3],[0,2,2,0]],[[0,3,2,0],[1,1,3,2],[2,2,3,0],[0,2,2,1]],[[0,2,3,0],[1,1,3,2],[2,2,3,0],[0,2,2,1]],[[0,2,2,0],[1,1,4,2],[2,2,3,0],[0,2,2,1]],[[0,2,2,0],[1,1,3,3],[2,2,3,0],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,2,0],[1,1,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,2,0],[1,1,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,2,0],[1,1,3,2],[3,2,3,0],[1,2,1,1]],[[0,2,2,0],[1,1,3,2],[2,2,3,0],[2,2,1,1]],[[0,2,2,0],[1,1,3,2],[2,2,3,0],[1,3,1,1]],[[0,3,2,0],[1,1,3,2],[2,2,3,1],[0,2,1,1]],[[0,2,3,0],[1,1,3,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[1,1,4,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[1,1,3,3],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[1,1,3,2],[2,2,4,1],[0,2,1,1]],[[0,3,2,0],[1,1,3,2],[2,2,3,1],[0,2,2,0]],[[0,2,3,0],[1,1,3,2],[2,2,3,1],[0,2,2,0]],[[0,2,2,0],[1,1,4,2],[2,2,3,1],[0,2,2,0]],[[0,2,2,0],[1,1,3,3],[2,2,3,1],[0,2,2,0]],[[0,2,2,0],[1,1,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,2,0],[1,1,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,2,0],[1,1,3,2],[2,2,3,1],[0,2,3,0]],[[0,2,2,0],[1,1,3,2],[3,2,3,1],[1,2,0,1]],[[0,2,2,0],[1,1,3,2],[2,2,3,1],[2,2,0,1]],[[0,2,2,0],[1,1,3,2],[2,2,3,1],[1,3,0,1]],[[0,2,2,0],[1,1,3,2],[3,2,3,1],[1,2,1,0]],[[0,2,2,0],[1,1,3,2],[2,2,3,1],[2,2,1,0]],[[0,2,2,0],[1,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[1,2,1,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,1],[1,2,1,2],[2,1,4,2],[0,2,1,0]],[[1,2,2,1],[1,2,1,3],[2,1,3,2],[0,2,1,0]],[[1,2,2,2],[1,2,1,2],[2,1,3,2],[0,2,1,0]],[[1,2,3,1],[1,2,1,2],[2,1,3,2],[0,2,1,0]],[[1,3,2,1],[1,2,1,2],[2,1,3,2],[0,2,1,0]],[[2,2,2,1],[1,2,1,2],[2,1,3,2],[0,2,1,0]],[[1,2,2,1],[1,2,1,2],[2,1,3,2],[0,2,0,2]],[[1,2,2,1],[1,2,1,2],[2,1,3,3],[0,2,0,1]],[[1,2,2,1],[1,2,1,2],[2,1,4,2],[0,2,0,1]],[[1,2,2,1],[1,2,1,3],[2,1,3,2],[0,2,0,1]],[[1,2,2,2],[1,2,1,2],[2,1,3,2],[0,2,0,1]],[[1,2,3,1],[1,2,1,2],[2,1,3,2],[0,2,0,1]],[[1,3,2,1],[1,2,1,2],[2,1,3,2],[0,2,0,1]],[[2,2,2,1],[1,2,1,2],[2,1,3,2],[0,2,0,1]],[[1,2,2,1],[1,2,1,2],[2,1,3,2],[0,1,3,0]],[[1,2,2,1],[1,2,1,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[1,2,1,2],[2,1,4,2],[0,1,2,0]],[[1,2,2,1],[1,2,1,3],[2,1,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,1,2],[2,1,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,1,2],[2,1,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,1,2],[2,1,3,2],[0,1,2,0]],[[2,2,2,1],[1,2,1,2],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,1,2],[2,1,3,2],[0,1,1,2]],[[1,2,2,1],[1,2,1,2],[2,1,3,3],[0,1,1,1]],[[1,2,2,1],[1,2,1,2],[2,1,4,2],[0,1,1,1]],[[1,2,2,1],[1,2,1,3],[2,1,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,1,2],[2,1,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,1,2],[2,1,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,1,2],[2,1,3,2],[0,1,1,1]],[[2,2,2,1],[1,2,1,2],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,1,2],[2,1,3,2],[0,0,2,2]],[[1,2,2,1],[1,2,1,2],[2,1,3,3],[0,0,2,1]],[[1,2,2,1],[1,2,1,2],[2,1,4,2],[0,0,2,1]],[[1,2,2,1],[1,2,1,3],[2,1,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,1,2],[2,1,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,1,2],[2,1,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,1,2],[2,1,3,2],[0,0,2,1]],[[2,2,2,1],[1,2,1,2],[2,1,3,2],[0,0,2,1]],[[0,3,2,0],[1,1,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,3,0],[1,1,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,1,4,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,3],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[3,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,4,0,2],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,0,3],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,0,2],[0,3,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,0,2],[0,2,3,1]],[[0,2,2,0],[1,1,3,2],[2,3,0,2],[0,2,2,2]],[[0,2,2,0],[1,1,3,2],[3,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,1,3,2],[2,4,0,2],[1,1,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,0,2],[2,1,2,1]],[[0,3,2,0],[1,1,3,2],[2,3,1,2],[0,1,2,1]],[[0,2,3,0],[1,1,3,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,0],[1,1,4,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,0],[1,1,3,3],[2,3,1,2],[0,1,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,1,3],[0,1,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,1,2],[0,1,3,1]],[[0,2,2,0],[1,1,3,2],[2,3,1,2],[0,1,2,2]],[[0,3,2,0],[1,1,3,2],[2,3,1,2],[1,0,2,1]],[[0,2,3,0],[1,1,3,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,0],[1,1,4,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,0],[1,1,3,3],[2,3,1,2],[1,0,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,1,2],[1,0,3,1]],[[0,2,2,0],[1,1,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[1,2,1,2],[2,1,3,1],[1,0,2,2]],[[1,2,2,1],[1,2,1,2],[2,1,3,1],[1,0,3,1]],[[1,2,2,1],[1,2,1,2],[2,1,4,1],[1,0,2,1]],[[1,2,2,1],[1,2,1,2],[2,1,3,1],[0,1,2,2]],[[1,2,2,1],[1,2,1,2],[2,1,3,1],[0,1,3,1]],[[0,2,2,0],[1,1,3,2],[3,3,2,0],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,2,0],[1,1,3,2],[3,3,2,0],[1,1,2,1]],[[0,2,2,0],[1,1,3,2],[2,4,2,0],[1,1,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,0],[2,1,2,1]],[[0,2,2,0],[1,1,3,2],[3,3,2,1],[0,2,2,0]],[[0,2,2,0],[1,1,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,2,0],[1,1,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,2,0],[1,1,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,2,0],[1,1,3,2],[3,3,2,1],[1,1,2,0]],[[0,2,2,0],[1,1,3,2],[2,4,2,1],[1,1,2,0]],[[0,2,2,0],[1,1,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[1,2,1,2],[2,1,4,1],[0,1,2,1]],[[0,3,2,0],[1,1,3,2],[2,3,2,2],[0,0,2,1]],[[0,2,3,0],[1,1,3,2],[2,3,2,2],[0,0,2,1]],[[0,2,2,0],[1,1,4,2],[2,3,2,2],[0,0,2,1]],[[0,2,2,0],[1,1,3,3],[2,3,2,2],[0,0,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,3],[0,0,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,2],[0,0,2,2]],[[0,3,2,0],[1,1,3,2],[2,3,2,2],[0,1,1,1]],[[0,2,3,0],[1,1,3,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,0],[1,1,4,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,0],[1,1,3,3],[2,3,2,2],[0,1,1,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,3],[0,1,1,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,2],[0,1,1,2]],[[0,3,2,0],[1,1,3,2],[2,3,2,2],[0,1,2,0]],[[0,2,3,0],[1,1,3,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,0],[1,1,4,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,0],[1,1,3,3],[2,3,2,2],[0,1,2,0]],[[0,2,2,0],[1,1,3,2],[2,3,2,3],[0,1,2,0]],[[0,3,2,0],[1,1,3,2],[2,3,2,2],[0,2,0,1]],[[0,2,3,0],[1,1,3,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,0],[1,1,4,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,0],[1,1,3,3],[2,3,2,2],[0,2,0,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,3],[0,2,0,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,2],[0,2,0,2]],[[0,3,2,0],[1,1,3,2],[2,3,2,2],[0,2,1,0]],[[0,2,3,0],[1,1,3,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,0],[1,1,4,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,0],[1,1,3,3],[2,3,2,2],[0,2,1,0]],[[0,2,2,0],[1,1,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[1,2,1,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[1,2,1,2],[2,1,2,2],[1,0,3,1]],[[1,2,2,1],[1,2,1,2],[2,1,2,3],[1,0,2,1]],[[1,2,2,1],[1,2,1,3],[2,1,2,2],[1,0,2,1]],[[1,2,2,2],[1,2,1,2],[2,1,2,2],[1,0,2,1]],[[1,2,3,1],[1,2,1,2],[2,1,2,2],[1,0,2,1]],[[1,3,2,1],[1,2,1,2],[2,1,2,2],[1,0,2,1]],[[0,3,2,0],[1,1,3,2],[2,3,2,2],[1,0,1,1]],[[0,2,3,0],[1,1,3,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,0],[1,1,4,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,0],[1,1,3,3],[2,3,2,2],[1,0,1,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,3],[1,0,1,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,2],[1,0,1,2]],[[0,3,2,0],[1,1,3,2],[2,3,2,2],[1,0,2,0]],[[0,2,3,0],[1,1,3,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,0],[1,1,4,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,0],[1,1,3,3],[2,3,2,2],[1,0,2,0]],[[0,2,2,0],[1,1,3,2],[2,3,2,3],[1,0,2,0]],[[0,3,2,0],[1,1,3,2],[2,3,2,2],[1,1,0,1]],[[0,2,3,0],[1,1,3,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,0],[1,1,4,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,0],[1,1,3,3],[2,3,2,2],[1,1,0,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,3],[1,1,0,1]],[[0,2,2,0],[1,1,3,2],[2,3,2,2],[1,1,0,2]],[[0,3,2,0],[1,1,3,2],[2,3,2,2],[1,1,1,0]],[[0,2,3,0],[1,1,3,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,0],[1,1,4,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,0],[1,1,3,3],[2,3,2,2],[1,1,1,0]],[[0,2,2,0],[1,1,3,2],[2,3,2,3],[1,1,1,0]],[[2,2,2,1],[1,2,1,2],[2,1,2,2],[1,0,2,1]],[[1,2,2,1],[1,2,1,2],[2,1,2,2],[0,1,2,2]],[[1,2,2,1],[1,2,1,2],[2,1,2,2],[0,1,3,1]],[[1,2,2,1],[1,2,1,2],[2,1,2,3],[0,1,2,1]],[[1,2,2,1],[1,2,1,3],[2,1,2,2],[0,1,2,1]],[[1,2,2,2],[1,2,1,2],[2,1,2,2],[0,1,2,1]],[[1,2,3,1],[1,2,1,2],[2,1,2,2],[0,1,2,1]],[[1,3,2,1],[1,2,1,2],[2,1,2,2],[0,1,2,1]],[[2,2,2,1],[1,2,1,2],[2,1,2,2],[0,1,2,1]],[[1,2,2,1],[1,2,1,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[1,2,1,2],[2,1,0,2],[1,2,3,1]],[[1,2,2,1],[1,2,1,2],[2,1,0,2],[1,3,2,1]],[[1,2,2,1],[1,2,1,2],[2,1,0,2],[2,2,2,1]],[[1,2,2,1],[1,2,1,2],[2,1,0,3],[1,2,2,1]],[[1,2,2,1],[1,2,1,2],[3,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,2,1,3],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[1,2,1,2],[2,1,0,2],[1,2,2,1]],[[0,3,2,0],[1,1,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,3,0],[1,1,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[1,1,4,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[1,1,3,3],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[1,1,3,2],[3,3,3,0],[0,1,2,1]],[[0,2,2,0],[1,1,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,0],[0,1,2,2]],[[0,3,2,0],[1,1,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,3,0],[1,1,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[1,1,4,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[1,1,3,3],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[1,1,3,2],[3,3,3,0],[0,2,1,1]],[[0,2,2,0],[1,1,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,2,0],[1,1,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,0],[0,3,1,1]],[[0,3,2,0],[1,1,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,3,0],[1,1,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[1,1,4,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[1,1,3,3],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[1,1,3,2],[3,3,3,0],[1,0,2,1]],[[0,2,2,0],[1,1,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,0],[2,0,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,0],[1,0,2,2]],[[0,3,2,0],[1,1,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,3,0],[1,1,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,0],[1,1,4,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,0],[1,1,3,3],[2,3,3,0],[1,1,1,1]],[[0,2,2,0],[1,1,3,2],[3,3,3,0],[1,1,1,1]],[[0,2,2,0],[1,1,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,2,0],[1,1,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,0],[2,1,1,1]],[[0,2,2,0],[1,1,3,2],[3,3,3,0],[1,2,0,1]],[[0,2,2,0],[1,1,3,2],[2,4,3,0],[1,2,0,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,3,1],[1,2,1,2],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[1,2,1,2],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[1,2,1,2],[2,1,0,2],[1,2,2,1]],[[0,3,2,0],[1,1,3,2],[2,3,3,1],[0,0,2,1]],[[0,2,3,0],[1,1,3,2],[2,3,3,1],[0,0,2,1]],[[0,2,2,0],[1,1,4,2],[2,3,3,1],[0,0,2,1]],[[0,2,2,0],[1,1,3,3],[2,3,3,1],[0,0,2,1]],[[0,2,2,0],[1,1,3,2],[2,3,4,1],[0,0,2,1]],[[0,3,2,0],[1,1,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,3,0],[1,1,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,0],[1,1,4,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,0],[1,1,3,3],[2,3,3,1],[0,1,1,1]],[[0,2,2,0],[1,1,3,2],[3,3,3,1],[0,1,1,1]],[[0,2,2,0],[1,1,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,2,0],[1,1,3,2],[2,3,4,1],[0,1,1,1]],[[0,3,2,0],[1,1,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,3,0],[1,1,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[1,1,4,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[1,1,3,3],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[1,1,3,2],[3,3,3,1],[0,1,2,0]],[[0,2,2,0],[1,1,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,2,0],[1,1,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,2,0],[1,1,3,2],[2,3,3,1],[0,1,3,0]],[[0,3,2,0],[1,1,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,3,0],[1,1,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[1,1,4,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[1,1,3,3],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[1,1,3,2],[3,3,3,1],[0,2,0,1]],[[0,2,2,0],[1,1,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,2,0],[1,1,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,1],[0,3,0,1]],[[0,3,2,0],[1,1,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,3,0],[1,1,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[1,1,4,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[1,1,3,3],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[1,1,3,2],[3,3,3,1],[0,2,1,0]],[[0,2,2,0],[1,1,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,2,0],[1,1,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,2,0],[1,1,3,2],[2,3,3,1],[0,3,1,0]],[[0,3,2,0],[1,1,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,3,0],[1,1,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[1,1,4,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[1,1,3,3],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[1,1,3,2],[3,3,3,1],[1,0,1,1]],[[0,2,2,0],[1,1,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,2,0],[1,1,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,1],[2,0,1,1]],[[0,3,2,0],[1,1,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,3,0],[1,1,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,0],[1,1,4,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,0],[1,1,3,3],[2,3,3,1],[1,0,2,0]],[[0,2,2,0],[1,1,3,2],[3,3,3,1],[1,0,2,0]],[[0,2,2,0],[1,1,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,2,0],[1,1,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,2,0],[1,1,3,2],[2,3,3,1],[2,0,2,0]],[[0,2,2,0],[1,1,3,2],[2,3,3,1],[1,0,3,0]],[[0,3,2,0],[1,1,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,3,0],[1,1,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,0],[1,1,4,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,0],[1,1,3,3],[2,3,3,1],[1,1,0,1]],[[0,2,2,0],[1,1,3,2],[3,3,3,1],[1,1,0,1]],[[0,2,2,0],[1,1,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,2,0],[1,1,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,1],[2,1,0,1]],[[0,3,2,0],[1,1,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,3,0],[1,1,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,0],[1,1,4,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,0],[1,1,3,3],[2,3,3,1],[1,1,1,0]],[[0,2,2,0],[1,1,3,2],[3,3,3,1],[1,1,1,0]],[[0,2,2,0],[1,1,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,2,0],[1,1,3,2],[2,3,4,1],[1,1,1,0]],[[0,2,2,0],[1,1,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[1,2,1,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[1,2,1,2],[2,0,4,2],[1,2,1,0]],[[1,2,2,1],[1,2,1,3],[2,0,3,2],[1,2,1,0]],[[1,2,2,2],[1,2,1,2],[2,0,3,2],[1,2,1,0]],[[1,2,3,1],[1,2,1,2],[2,0,3,2],[1,2,1,0]],[[1,3,2,1],[1,2,1,2],[2,0,3,2],[1,2,1,0]],[[2,2,2,1],[1,2,1,2],[2,0,3,2],[1,2,1,0]],[[1,2,2,1],[1,2,1,2],[2,0,3,2],[1,2,0,2]],[[1,2,2,1],[1,2,1,2],[2,0,3,3],[1,2,0,1]],[[0,2,2,0],[1,1,3,2],[3,3,3,1],[1,2,0,0]],[[0,2,2,0],[1,1,3,2],[2,4,3,1],[1,2,0,0]],[[0,2,2,0],[1,1,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[1,2,1,2],[2,0,4,2],[1,2,0,1]],[[1,2,2,1],[1,2,1,3],[2,0,3,2],[1,2,0,1]],[[1,2,2,2],[1,2,1,2],[2,0,3,2],[1,2,0,1]],[[1,2,3,1],[1,2,1,2],[2,0,3,2],[1,2,0,1]],[[1,3,2,1],[1,2,1,2],[2,0,3,2],[1,2,0,1]],[[2,2,2,1],[1,2,1,2],[2,0,3,2],[1,2,0,1]],[[1,2,2,1],[1,2,1,2],[2,0,3,2],[1,1,3,0]],[[1,2,2,1],[1,2,1,2],[2,0,3,3],[1,1,2,0]],[[1,2,2,1],[1,2,1,2],[2,0,4,2],[1,1,2,0]],[[1,2,2,1],[1,2,1,3],[2,0,3,2],[1,1,2,0]],[[1,2,2,2],[1,2,1,2],[2,0,3,2],[1,1,2,0]],[[1,2,3,1],[1,2,1,2],[2,0,3,2],[1,1,2,0]],[[1,3,2,1],[1,2,1,2],[2,0,3,2],[1,1,2,0]],[[2,2,2,1],[1,2,1,2],[2,0,3,2],[1,1,2,0]],[[1,2,2,1],[1,2,1,2],[2,0,3,2],[1,1,1,2]],[[1,2,2,1],[1,2,1,2],[2,0,3,3],[1,1,1,1]],[[1,2,2,1],[1,2,1,2],[2,0,4,2],[1,1,1,1]],[[1,2,2,1],[1,2,1,3],[2,0,3,2],[1,1,1,1]],[[1,2,2,2],[1,2,1,2],[2,0,3,2],[1,1,1,1]],[[1,2,3,1],[1,2,1,2],[2,0,3,2],[1,1,1,1]],[[1,3,2,1],[1,2,1,2],[2,0,3,2],[1,1,1,1]],[[0,3,2,0],[1,1,3,2],[2,3,3,2],[0,1,0,1]],[[0,2,3,0],[1,1,3,2],[2,3,3,2],[0,1,0,1]],[[0,2,2,0],[1,1,4,2],[2,3,3,2],[0,1,0,1]],[[0,2,2,0],[1,1,3,3],[2,3,3,2],[0,1,0,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,3],[0,1,0,1]],[[2,2,2,1],[1,2,1,2],[2,0,3,2],[1,1,1,1]],[[1,2,2,1],[1,2,1,2],[2,0,3,2],[0,2,3,0]],[[1,2,2,1],[1,2,1,2],[2,0,3,2],[0,3,2,0]],[[1,2,2,1],[1,2,1,2],[2,0,3,3],[0,2,2,0]],[[1,2,2,1],[1,2,1,2],[2,0,4,2],[0,2,2,0]],[[1,2,2,1],[1,2,1,3],[2,0,3,2],[0,2,2,0]],[[1,2,2,2],[1,2,1,2],[2,0,3,2],[0,2,2,0]],[[1,2,3,1],[1,2,1,2],[2,0,3,2],[0,2,2,0]],[[1,3,2,1],[1,2,1,2],[2,0,3,2],[0,2,2,0]],[[2,2,2,1],[1,2,1,2],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[1,2,1,2],[2,0,3,2],[0,2,1,2]],[[1,2,2,1],[1,2,1,2],[2,0,3,3],[0,2,1,1]],[[1,2,2,1],[1,2,1,2],[2,0,4,2],[0,2,1,1]],[[1,2,2,1],[1,2,1,3],[2,0,3,2],[0,2,1,1]],[[1,2,2,2],[1,2,1,2],[2,0,3,2],[0,2,1,1]],[[1,2,3,1],[1,2,1,2],[2,0,3,2],[0,2,1,1]],[[1,3,2,1],[1,2,1,2],[2,0,3,2],[0,2,1,1]],[[2,2,2,1],[1,2,1,2],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[1,2,1,2],[2,0,3,1],[1,1,2,2]],[[1,2,2,1],[1,2,1,2],[2,0,3,1],[1,1,3,1]],[[1,2,2,1],[1,2,1,2],[2,0,4,1],[1,1,2,1]],[[1,2,2,1],[1,2,1,2],[2,0,3,1],[0,2,2,2]],[[1,2,2,1],[1,2,1,2],[2,0,3,1],[0,2,3,1]],[[1,2,2,1],[1,2,1,2],[2,0,3,1],[0,3,2,1]],[[1,2,2,1],[1,2,1,2],[2,0,4,1],[0,2,2,1]],[[0,3,2,0],[1,1,3,2],[2,3,3,2],[1,0,0,1]],[[0,2,3,0],[1,1,3,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[1,1,4,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[1,1,3,3],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[1,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[1,2,1,2],[2,0,2,2],[1,1,2,2]],[[1,2,2,1],[1,2,1,2],[2,0,2,2],[1,1,3,1]],[[1,2,2,1],[1,2,1,2],[2,0,2,3],[1,1,2,1]],[[1,2,2,1],[1,2,1,3],[2,0,2,2],[1,1,2,1]],[[1,2,2,2],[1,2,1,2],[2,0,2,2],[1,1,2,1]],[[1,2,3,1],[1,2,1,2],[2,0,2,2],[1,1,2,1]],[[1,3,2,1],[1,2,1,2],[2,0,2,2],[1,1,2,1]],[[2,2,2,1],[1,2,1,2],[2,0,2,2],[1,1,2,1]],[[1,2,2,1],[1,2,1,2],[2,0,2,2],[0,2,2,2]],[[1,2,2,1],[1,2,1,2],[2,0,2,2],[0,2,3,1]],[[1,2,2,1],[1,2,1,2],[2,0,2,2],[0,3,2,1]],[[1,2,2,1],[1,2,1,2],[2,0,2,3],[0,2,2,1]],[[1,2,2,1],[1,2,1,3],[2,0,2,2],[0,2,2,1]],[[1,2,2,2],[1,2,1,2],[2,0,2,2],[0,2,2,1]],[[1,2,3,1],[1,2,1,2],[2,0,2,2],[0,2,2,1]],[[1,3,2,1],[1,2,1,2],[2,0,2,2],[0,2,2,1]],[[2,2,2,1],[1,2,1,2],[2,0,2,2],[0,2,2,1]],[[1,2,2,1],[1,2,1,2],[2,0,1,2],[1,2,2,2]],[[1,2,2,1],[1,2,1,2],[2,0,1,2],[1,2,3,1]],[[1,2,2,1],[1,2,1,2],[2,0,1,2],[1,3,2,1]],[[1,2,2,1],[1,2,1,2],[2,0,1,2],[2,2,2,1]],[[1,2,2,1],[1,2,1,2],[2,0,1,3],[1,2,2,1]],[[1,2,2,1],[1,2,1,2],[3,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,2,1,3],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,2,1,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,2,1,2],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,2,1,2],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,2,1,2],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,2,1,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,2,1,2],[1,3,4,2],[0,0,2,0]],[[1,2,2,1],[1,2,1,3],[1,3,3,2],[0,0,2,0]],[[1,2,2,2],[1,2,1,2],[1,3,3,2],[0,0,2,0]],[[1,2,3,1],[1,2,1,2],[1,3,3,2],[0,0,2,0]],[[1,3,2,1],[1,2,1,2],[1,3,3,2],[0,0,2,0]],[[2,2,2,1],[1,2,1,2],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[1,2,1,2],[1,3,3,2],[0,0,1,2]],[[1,2,2,1],[1,2,1,2],[1,3,3,3],[0,0,1,1]],[[1,2,2,1],[1,2,1,2],[1,3,4,2],[0,0,1,1]],[[1,2,2,1],[1,2,1,3],[1,3,3,2],[0,0,1,1]],[[0,2,2,0],[1,2,2,3],[1,0,3,2],[1,2,2,1]],[[0,2,2,0],[1,2,2,2],[1,0,3,3],[1,2,2,1]],[[0,2,2,0],[1,2,2,2],[1,0,3,2],[1,2,3,1]],[[0,2,2,0],[1,2,2,2],[1,0,3,2],[1,2,2,2]],[[0,2,2,0],[1,2,2,3],[1,1,2,2],[1,2,2,1]],[[0,2,2,0],[1,2,2,2],[1,1,2,3],[1,2,2,1]],[[0,2,2,0],[1,2,2,2],[1,1,2,2],[2,2,2,1]],[[0,2,2,0],[1,2,2,2],[1,1,2,2],[1,3,2,1]],[[0,2,2,0],[1,2,2,2],[1,1,2,2],[1,2,3,1]],[[0,2,2,0],[1,2,2,2],[1,1,2,2],[1,2,2,2]],[[0,2,2,0],[1,2,2,2],[1,1,4,1],[1,2,2,1]],[[0,2,2,0],[1,2,2,2],[1,1,3,1],[2,2,2,1]],[[0,2,2,0],[1,2,2,2],[1,1,3,1],[1,3,2,1]],[[0,2,2,0],[1,2,2,2],[1,1,3,1],[1,2,3,1]],[[0,2,2,0],[1,2,2,2],[1,1,3,1],[1,2,2,2]],[[0,2,2,0],[1,2,2,3],[1,1,3,2],[1,2,1,1]],[[0,2,2,0],[1,2,2,2],[1,1,4,2],[1,2,1,1]],[[0,2,2,0],[1,2,2,2],[1,1,3,3],[1,2,1,1]],[[0,2,2,0],[1,2,2,2],[1,1,3,2],[1,2,1,2]],[[0,2,2,0],[1,2,2,3],[1,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,2,2,2],[1,1,4,2],[1,2,2,0]],[[0,2,2,0],[1,2,2,2],[1,1,3,3],[1,2,2,0]],[[0,2,2,0],[1,2,2,2],[1,1,3,2],[2,2,2,0]],[[0,2,2,0],[1,2,2,2],[1,1,3,2],[1,3,2,0]],[[0,2,2,0],[1,2,2,2],[1,1,3,2],[1,2,3,0]],[[0,2,2,0],[1,2,2,3],[1,2,2,2],[1,1,2,1]],[[0,2,2,0],[1,2,2,2],[1,2,2,3],[1,1,2,1]],[[0,2,2,0],[1,2,2,2],[1,2,2,2],[1,1,3,1]],[[0,2,2,0],[1,2,2,2],[1,2,2,2],[1,1,2,2]],[[0,2,2,0],[1,2,2,2],[1,2,4,1],[1,1,2,1]],[[0,2,2,0],[1,2,2,2],[1,2,3,1],[1,1,3,1]],[[0,2,2,0],[1,2,2,2],[1,2,3,1],[1,1,2,2]],[[0,2,2,0],[1,2,2,3],[1,2,3,2],[1,0,2,1]],[[0,2,2,0],[1,2,2,2],[1,2,4,2],[1,0,2,1]],[[0,2,2,0],[1,2,2,2],[1,2,3,3],[1,0,2,1]],[[0,2,2,0],[1,2,2,2],[1,2,3,2],[1,0,2,2]],[[0,2,2,0],[1,2,2,3],[1,2,3,2],[1,1,1,1]],[[0,2,2,0],[1,2,2,2],[1,2,4,2],[1,1,1,1]],[[0,2,2,0],[1,2,2,2],[1,2,3,3],[1,1,1,1]],[[0,2,2,0],[1,2,2,2],[1,2,3,2],[1,1,1,2]],[[0,2,2,0],[1,2,2,3],[1,2,3,2],[1,1,2,0]],[[0,2,2,0],[1,2,2,2],[1,2,4,2],[1,1,2,0]],[[0,2,2,0],[1,2,2,2],[1,2,3,3],[1,1,2,0]],[[0,2,2,0],[1,2,2,2],[1,2,3,2],[1,1,3,0]],[[0,2,2,0],[1,2,2,3],[1,2,3,2],[1,2,0,1]],[[0,2,2,0],[1,2,2,2],[1,2,4,2],[1,2,0,1]],[[0,2,2,0],[1,2,2,2],[1,2,3,3],[1,2,0,1]],[[0,2,2,0],[1,2,2,2],[1,2,3,2],[1,2,0,2]],[[0,2,2,0],[1,2,2,3],[1,2,3,2],[1,2,1,0]],[[0,2,2,0],[1,2,2,2],[1,2,4,2],[1,2,1,0]],[[0,2,2,0],[1,2,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,2],[1,2,1,2],[1,3,3,2],[0,0,1,1]],[[1,2,3,1],[1,2,1,2],[1,3,3,2],[0,0,1,1]],[[1,3,2,1],[1,2,1,2],[1,3,3,2],[0,0,1,1]],[[2,2,2,1],[1,2,1,2],[1,3,3,2],[0,0,1,1]],[[0,2,2,0],[1,2,2,3],[2,0,2,2],[1,2,2,1]],[[0,2,2,0],[1,2,2,2],[3,0,2,2],[1,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,0,2,3],[1,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,0,2,2],[2,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,0,2,2],[1,3,2,1]],[[0,2,2,0],[1,2,2,2],[2,0,2,2],[1,2,3,1]],[[0,2,2,0],[1,2,2,2],[2,0,2,2],[1,2,2,2]],[[0,2,2,0],[1,2,2,2],[3,0,3,1],[1,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,0,4,1],[1,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,0,3,1],[2,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,0,3,1],[1,3,2,1]],[[0,2,2,0],[1,2,2,2],[2,0,3,1],[1,2,3,1]],[[0,2,2,0],[1,2,2,2],[2,0,3,1],[1,2,2,2]],[[0,2,2,0],[1,2,2,3],[2,0,3,2],[0,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,0,3,3],[0,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,0,3,2],[0,2,3,1]],[[0,2,2,0],[1,2,2,2],[2,0,3,2],[0,2,2,2]],[[0,2,2,0],[1,2,2,3],[2,0,3,2],[1,2,1,1]],[[0,2,2,0],[1,2,2,2],[2,0,4,2],[1,2,1,1]],[[0,2,2,0],[1,2,2,2],[2,0,3,3],[1,2,1,1]],[[0,2,2,0],[1,2,2,2],[2,0,3,2],[1,2,1,2]],[[0,2,2,0],[1,2,2,3],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[1,2,2,2],[3,0,3,2],[1,2,2,0]],[[0,2,2,0],[1,2,2,2],[2,0,4,2],[1,2,2,0]],[[0,2,2,0],[1,2,2,2],[2,0,3,3],[1,2,2,0]],[[0,2,2,0],[1,2,2,2],[2,0,3,2],[2,2,2,0]],[[0,2,2,0],[1,2,2,2],[2,0,3,2],[1,3,2,0]],[[0,2,2,0],[1,2,2,2],[2,0,3,2],[1,2,3,0]],[[0,2,2,0],[1,2,2,3],[2,1,2,2],[0,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,1,2,3],[0,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,1,2,2],[0,3,2,1]],[[0,2,2,0],[1,2,2,2],[2,1,2,2],[0,2,3,1]],[[0,2,2,0],[1,2,2,2],[2,1,2,2],[0,2,2,2]],[[0,2,2,0],[1,2,2,2],[2,1,4,1],[0,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,1,3,1],[0,3,2,1]],[[0,2,2,0],[1,2,2,2],[2,1,3,1],[0,2,3,1]],[[0,2,2,0],[1,2,2,2],[2,1,3,1],[0,2,2,2]],[[0,2,2,0],[1,2,2,3],[2,1,3,2],[0,2,1,1]],[[0,2,2,0],[1,2,2,2],[2,1,4,2],[0,2,1,1]],[[0,2,2,0],[1,2,2,2],[2,1,3,3],[0,2,1,1]],[[0,2,2,0],[1,2,2,2],[2,1,3,2],[0,2,1,2]],[[0,2,2,0],[1,2,2,3],[2,1,3,2],[0,2,2,0]],[[0,2,2,0],[1,2,2,2],[2,1,4,2],[0,2,2,0]],[[0,2,2,0],[1,2,2,2],[2,1,3,3],[0,2,2,0]],[[0,2,2,0],[1,2,2,2],[2,1,3,2],[0,3,2,0]],[[0,2,2,0],[1,2,2,2],[2,1,3,2],[0,2,3,0]],[[0,2,2,0],[1,2,2,3],[2,2,2,2],[0,1,2,1]],[[0,2,2,0],[1,2,2,2],[2,2,2,3],[0,1,2,1]],[[0,2,2,0],[1,2,2,2],[2,2,2,2],[0,1,3,1]],[[0,2,2,0],[1,2,2,2],[2,2,2,2],[0,1,2,2]],[[0,2,2,0],[1,2,2,3],[2,2,2,2],[1,0,2,1]],[[0,2,2,0],[1,2,2,2],[2,2,2,3],[1,0,2,1]],[[0,2,2,0],[1,2,2,2],[2,2,2,2],[1,0,3,1]],[[0,2,2,0],[1,2,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[1,2,1,2],[1,3,0,2],[0,2,2,2]],[[1,2,2,1],[1,2,1,2],[1,3,0,2],[0,2,3,1]],[[1,2,2,1],[1,2,1,2],[1,3,0,2],[0,3,2,1]],[[1,2,2,1],[1,2,1,2],[1,3,0,3],[0,2,2,1]],[[0,2,2,0],[1,2,2,2],[2,2,4,1],[0,1,2,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,1],[0,1,3,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,1],[0,1,2,2]],[[0,2,2,0],[1,2,2,2],[2,2,4,1],[1,0,2,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,1],[1,0,3,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,1],[1,0,2,2]],[[1,2,2,1],[1,2,1,2],[1,4,0,2],[0,2,2,1]],[[1,2,2,1],[1,2,1,3],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[1,2,1,2],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[1,2,1,2],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[1,2,1,2],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[1,2,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,2,2,3],[2,2,3,2],[0,0,2,1]],[[0,2,2,0],[1,2,2,2],[2,2,4,2],[0,0,2,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,3],[0,0,2,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,2],[0,0,2,2]],[[0,2,2,0],[1,2,2,3],[2,2,3,2],[0,1,1,1]],[[0,2,2,0],[1,2,2,2],[2,2,4,2],[0,1,1,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,3],[0,1,1,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,2],[0,1,1,2]],[[0,2,2,0],[1,2,2,3],[2,2,3,2],[0,1,2,0]],[[0,2,2,0],[1,2,2,2],[2,2,4,2],[0,1,2,0]],[[0,2,2,0],[1,2,2,2],[2,2,3,3],[0,1,2,0]],[[0,2,2,0],[1,2,2,2],[2,2,3,2],[0,1,3,0]],[[0,2,2,0],[1,2,2,3],[2,2,3,2],[0,2,0,1]],[[0,2,2,0],[1,2,2,2],[2,2,4,2],[0,2,0,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,3],[0,2,0,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,2],[0,2,0,2]],[[0,2,2,0],[1,2,2,3],[2,2,3,2],[0,2,1,0]],[[0,2,2,0],[1,2,2,2],[2,2,4,2],[0,2,1,0]],[[0,2,2,0],[1,2,2,2],[2,2,3,3],[0,2,1,0]],[[0,2,2,0],[1,2,2,3],[2,2,3,2],[1,0,1,1]],[[0,2,2,0],[1,2,2,2],[2,2,4,2],[1,0,1,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,3],[1,0,1,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,2],[1,0,1,2]],[[0,2,2,0],[1,2,2,3],[2,2,3,2],[1,0,2,0]],[[0,2,2,0],[1,2,2,2],[2,2,4,2],[1,0,2,0]],[[0,2,2,0],[1,2,2,2],[2,2,3,3],[1,0,2,0]],[[0,2,2,0],[1,2,2,2],[2,2,3,2],[1,0,3,0]],[[0,2,2,0],[1,2,2,3],[2,2,3,2],[1,1,0,1]],[[0,2,2,0],[1,2,2,2],[2,2,4,2],[1,1,0,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,3],[1,1,0,1]],[[0,2,2,0],[1,2,2,2],[2,2,3,2],[1,1,0,2]],[[0,2,2,0],[1,2,2,3],[2,2,3,2],[1,1,1,0]],[[0,2,2,0],[1,2,2,2],[2,2,4,2],[1,1,1,0]],[[0,2,2,0],[1,2,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[1,2,1,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[1,2,1,2],[1,2,4,2],[1,1,1,0]],[[1,2,2,1],[1,2,1,3],[1,2,3,2],[1,1,1,0]],[[1,2,2,2],[1,2,1,2],[1,2,3,2],[1,1,1,0]],[[1,2,3,1],[1,2,1,2],[1,2,3,2],[1,1,1,0]],[[1,3,2,1],[1,2,1,2],[1,2,3,2],[1,1,1,0]],[[2,2,2,1],[1,2,1,2],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[1,2,1,2],[1,2,3,2],[1,1,0,2]],[[1,2,2,1],[1,2,1,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[1,2,1,2],[1,2,4,2],[1,1,0,1]],[[1,2,2,1],[1,2,1,3],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[1,2,1,2],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[1,2,1,2],[1,2,3,2],[1,1,0,1]],[[1,3,2,1],[1,2,1,2],[1,2,3,2],[1,1,0,1]],[[2,2,2,1],[1,2,1,2],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,2,1,2],[1,2,3,2],[1,0,3,0]],[[1,2,2,1],[1,2,1,2],[1,2,3,3],[1,0,2,0]],[[1,2,2,1],[1,2,1,2],[1,2,4,2],[1,0,2,0]],[[1,2,2,1],[1,2,1,3],[1,2,3,2],[1,0,2,0]],[[1,2,2,2],[1,2,1,2],[1,2,3,2],[1,0,2,0]],[[1,2,3,1],[1,2,1,2],[1,2,3,2],[1,0,2,0]],[[1,3,2,1],[1,2,1,2],[1,2,3,2],[1,0,2,0]],[[2,2,2,1],[1,2,1,2],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[1,2,1,2],[1,2,3,2],[1,0,1,2]],[[1,2,2,1],[1,2,1,2],[1,2,3,3],[1,0,1,1]],[[1,2,2,1],[1,2,1,2],[1,2,4,2],[1,0,1,1]],[[1,2,2,1],[1,2,1,3],[1,2,3,2],[1,0,1,1]],[[1,2,2,2],[1,2,1,2],[1,2,3,2],[1,0,1,1]],[[1,2,3,1],[1,2,1,2],[1,2,3,2],[1,0,1,1]],[[1,3,2,1],[1,2,1,2],[1,2,3,2],[1,0,1,1]],[[2,2,2,1],[1,2,1,2],[1,2,3,2],[1,0,1,1]],[[1,2,2,1],[1,2,1,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[1,2,1,2],[1,2,4,2],[0,2,1,0]],[[1,2,2,1],[1,2,1,3],[1,2,3,2],[0,2,1,0]],[[1,2,2,2],[1,2,1,2],[1,2,3,2],[0,2,1,0]],[[1,2,3,1],[1,2,1,2],[1,2,3,2],[0,2,1,0]],[[1,3,2,1],[1,2,1,2],[1,2,3,2],[0,2,1,0]],[[2,2,2,1],[1,2,1,2],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[1,2,1,2],[1,2,3,2],[0,2,0,2]],[[1,2,2,1],[1,2,1,2],[1,2,3,3],[0,2,0,1]],[[1,2,2,1],[1,2,1,2],[1,2,4,2],[0,2,0,1]],[[0,2,2,0],[1,2,2,3],[2,3,3,2],[0,0,1,1]],[[0,2,2,0],[1,2,2,2],[2,3,4,2],[0,0,1,1]],[[0,2,2,0],[1,2,2,2],[2,3,3,3],[0,0,1,1]],[[0,2,2,0],[1,2,2,2],[2,3,3,2],[0,0,1,2]],[[0,2,2,0],[1,2,2,3],[2,3,3,2],[0,0,2,0]],[[0,2,2,0],[1,2,2,2],[2,3,4,2],[0,0,2,0]],[[0,2,2,0],[1,2,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,2,1,3],[1,2,3,2],[0,2,0,1]],[[1,2,2,2],[1,2,1,2],[1,2,3,2],[0,2,0,1]],[[1,2,3,1],[1,2,1,2],[1,2,3,2],[0,2,0,1]],[[1,3,2,1],[1,2,1,2],[1,2,3,2],[0,2,0,1]],[[2,2,2,1],[1,2,1,2],[1,2,3,2],[0,2,0,1]],[[1,2,2,1],[1,2,1,2],[1,2,3,2],[0,1,3,0]],[[1,2,2,1],[1,2,1,2],[1,2,3,3],[0,1,2,0]],[[1,2,2,1],[1,2,1,2],[1,2,4,2],[0,1,2,0]],[[1,2,2,1],[1,2,1,3],[1,2,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,1,2],[1,2,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,1,2],[1,2,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,1,2],[1,2,3,2],[0,1,2,0]],[[2,2,2,1],[1,2,1,2],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,1,2],[1,2,3,2],[0,1,1,2]],[[1,2,2,1],[1,2,1,2],[1,2,3,3],[0,1,1,1]],[[1,2,2,1],[1,2,1,2],[1,2,4,2],[0,1,1,1]],[[1,2,2,1],[1,2,1,3],[1,2,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,1,2],[1,2,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,1,2],[1,2,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,1,2],[1,2,3,2],[0,1,1,1]],[[2,2,2,1],[1,2,1,2],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,1,2],[1,2,3,2],[0,0,2,2]],[[1,2,2,1],[1,2,1,2],[1,2,3,3],[0,0,2,1]],[[1,2,2,1],[1,2,1,2],[1,2,4,2],[0,0,2,1]],[[1,2,2,1],[1,2,1,3],[1,2,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,1,2],[1,2,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,1,2],[1,2,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,1,2],[1,2,3,2],[0,0,2,1]],[[2,2,2,1],[1,2,1,2],[1,2,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,1,2],[1,2,3,1],[1,0,2,2]],[[1,2,2,1],[1,2,1,2],[1,2,3,1],[1,0,3,1]],[[1,2,2,1],[1,2,1,2],[1,2,4,1],[1,0,2,1]],[[1,2,2,1],[1,2,1,2],[1,2,3,1],[0,1,2,2]],[[1,2,2,1],[1,2,1,2],[1,2,3,1],[0,1,3,1]],[[1,2,2,1],[1,2,1,2],[1,2,4,1],[0,1,2,1]],[[1,2,2,1],[1,2,1,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[1,2,1,2],[1,2,2,2],[1,0,3,1]],[[1,2,2,1],[1,2,1,2],[1,2,2,3],[1,0,2,1]],[[1,2,2,1],[1,2,1,3],[1,2,2,2],[1,0,2,1]],[[1,2,2,2],[1,2,1,2],[1,2,2,2],[1,0,2,1]],[[1,2,3,1],[1,2,1,2],[1,2,2,2],[1,0,2,1]],[[1,3,2,1],[1,2,1,2],[1,2,2,2],[1,0,2,1]],[[2,2,2,1],[1,2,1,2],[1,2,2,2],[1,0,2,1]],[[1,2,2,1],[1,2,1,2],[1,2,2,2],[0,1,2,2]],[[1,2,2,1],[1,2,1,2],[1,2,2,2],[0,1,3,1]],[[1,2,2,1],[1,2,1,2],[1,2,2,3],[0,1,2,1]],[[1,2,2,1],[1,2,1,3],[1,2,2,2],[0,1,2,1]],[[1,2,2,2],[1,2,1,2],[1,2,2,2],[0,1,2,1]],[[1,2,3,1],[1,2,1,2],[1,2,2,2],[0,1,2,1]],[[1,3,2,1],[1,2,1,2],[1,2,2,2],[0,1,2,1]],[[2,2,2,1],[1,2,1,2],[1,2,2,2],[0,1,2,1]],[[0,2,2,0],[1,2,3,0],[1,1,4,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,0],[1,1,3,2],[2,2,2,1]],[[0,2,2,0],[1,2,3,0],[1,1,3,2],[1,3,2,1]],[[0,2,2,0],[1,2,3,0],[1,1,3,2],[1,2,3,1]],[[0,2,2,0],[1,2,3,0],[1,1,3,2],[1,2,2,2]],[[0,2,2,0],[1,2,3,0],[1,2,4,2],[1,1,2,1]],[[0,2,2,0],[1,2,3,0],[1,2,3,2],[1,1,3,1]],[[0,2,2,0],[1,2,3,0],[1,2,3,2],[1,1,2,2]],[[0,2,2,0],[1,2,3,0],[3,0,3,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,0],[2,0,4,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,0],[2,0,3,2],[2,2,2,1]],[[0,2,2,0],[1,2,3,0],[2,0,3,2],[1,3,2,1]],[[0,2,2,0],[1,2,3,0],[2,0,3,2],[1,2,3,1]],[[0,2,2,0],[1,2,3,0],[2,0,3,2],[1,2,2,2]],[[0,2,2,0],[1,2,3,0],[2,1,4,2],[0,2,2,1]],[[0,2,2,0],[1,2,3,0],[2,1,3,2],[0,3,2,1]],[[0,2,2,0],[1,2,3,0],[2,1,3,2],[0,2,3,1]],[[0,2,2,0],[1,2,3,0],[2,1,3,2],[0,2,2,2]],[[0,2,2,0],[1,2,3,0],[2,2,4,2],[0,1,2,1]],[[0,2,2,0],[1,2,3,0],[2,2,3,2],[0,1,3,1]],[[0,2,2,0],[1,2,3,0],[2,2,3,2],[0,1,2,2]],[[0,2,2,0],[1,2,3,0],[2,2,4,2],[1,0,2,1]],[[0,2,2,0],[1,2,3,0],[2,2,3,2],[1,0,3,1]],[[0,2,2,0],[1,2,3,0],[2,2,3,2],[1,0,2,2]],[[1,2,2,1],[1,2,1,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[1,2,1,2],[1,1,3,2],[0,3,2,0]],[[1,2,2,1],[1,2,1,2],[1,1,3,3],[0,2,2,0]],[[1,2,2,1],[1,2,1,2],[1,1,4,2],[0,2,2,0]],[[1,2,2,1],[1,2,1,3],[1,1,3,2],[0,2,2,0]],[[1,2,2,2],[1,2,1,2],[1,1,3,2],[0,2,2,0]],[[1,2,3,1],[1,2,1,2],[1,1,3,2],[0,2,2,0]],[[1,3,2,1],[1,2,1,2],[1,1,3,2],[0,2,2,0]],[[2,2,2,1],[1,2,1,2],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[1,2,1,2],[1,1,3,2],[0,2,1,2]],[[1,2,2,1],[1,2,1,2],[1,1,3,3],[0,2,1,1]],[[1,2,2,1],[1,2,1,2],[1,1,4,2],[0,2,1,1]],[[1,2,2,1],[1,2,1,3],[1,1,3,2],[0,2,1,1]],[[1,2,2,2],[1,2,1,2],[1,1,3,2],[0,2,1,1]],[[1,2,3,1],[1,2,1,2],[1,1,3,2],[0,2,1,1]],[[1,3,2,1],[1,2,1,2],[1,1,3,2],[0,2,1,1]],[[2,2,2,1],[1,2,1,2],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[1,2,1,2],[1,1,3,1],[0,2,2,2]],[[1,2,2,1],[1,2,1,2],[1,1,3,1],[0,2,3,1]],[[1,2,2,1],[1,2,1,2],[1,1,3,1],[0,3,2,1]],[[1,2,2,1],[1,2,1,2],[1,1,4,1],[0,2,2,1]],[[0,2,2,0],[1,2,3,1],[1,0,3,3],[1,2,2,1]],[[0,2,2,0],[1,2,3,1],[1,0,3,2],[1,2,3,1]],[[0,2,2,0],[1,2,3,1],[1,0,3,2],[1,2,2,2]],[[0,2,2,0],[1,2,3,1],[1,1,2,3],[1,2,2,1]],[[0,2,2,0],[1,2,3,1],[1,1,2,2],[2,2,2,1]],[[0,2,2,0],[1,2,3,1],[1,1,2,2],[1,3,2,1]],[[0,2,2,0],[1,2,3,1],[1,1,2,2],[1,2,3,1]],[[0,2,2,0],[1,2,3,1],[1,1,2,2],[1,2,2,2]],[[0,3,2,0],[1,2,3,1],[1,1,3,1],[1,2,2,1]],[[0,2,3,0],[1,2,3,1],[1,1,3,1],[1,2,2,1]],[[0,2,2,0],[1,2,4,1],[1,1,3,1],[1,2,2,1]],[[0,2,2,0],[1,2,3,1],[1,1,4,1],[1,2,2,1]],[[0,2,2,0],[1,2,3,1],[1,1,3,1],[2,2,2,1]],[[0,2,2,0],[1,2,3,1],[1,1,3,1],[1,3,2,1]],[[0,2,2,0],[1,2,3,1],[1,1,3,1],[1,2,3,1]],[[0,2,2,0],[1,2,3,1],[1,1,3,1],[1,2,2,2]],[[0,3,2,0],[1,2,3,1],[1,1,3,2],[1,2,1,1]],[[0,2,3,0],[1,2,3,1],[1,1,3,2],[1,2,1,1]],[[0,2,2,0],[1,2,4,1],[1,1,3,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,1],[1,1,4,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,1],[1,1,3,3],[1,2,1,1]],[[0,2,2,0],[1,2,3,1],[1,1,3,2],[1,2,1,2]],[[0,3,2,0],[1,2,3,1],[1,1,3,2],[1,2,2,0]],[[0,2,3,0],[1,2,3,1],[1,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,2,4,1],[1,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,1],[1,1,4,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,1],[1,1,3,3],[1,2,2,0]],[[0,2,2,0],[1,2,3,1],[1,1,3,2],[2,2,2,0]],[[0,2,2,0],[1,2,3,1],[1,1,3,2],[1,3,2,0]],[[0,2,2,0],[1,2,3,1],[1,1,3,2],[1,2,3,0]],[[0,2,2,0],[1,2,3,1],[1,2,2,3],[1,1,2,1]],[[0,2,2,0],[1,2,3,1],[1,2,2,2],[1,1,3,1]],[[0,2,2,0],[1,2,3,1],[1,2,2,2],[1,1,2,2]],[[0,3,2,0],[1,2,3,1],[1,2,3,1],[1,1,2,1]],[[0,2,3,0],[1,2,3,1],[1,2,3,1],[1,1,2,1]],[[0,2,2,0],[1,2,4,1],[1,2,3,1],[1,1,2,1]],[[0,2,2,0],[1,2,3,1],[1,2,4,1],[1,1,2,1]],[[0,2,2,0],[1,2,3,1],[1,2,3,1],[1,1,3,1]],[[0,2,2,0],[1,2,3,1],[1,2,3,1],[1,1,2,2]],[[0,3,2,0],[1,2,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,3,0],[1,2,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,2,0],[1,2,4,1],[1,2,3,1],[1,2,1,1]],[[0,2,2,0],[1,2,3,1],[1,2,4,1],[1,2,1,1]],[[0,2,3,0],[1,2,3,1],[1,2,3,2],[1,0,2,1]],[[0,2,2,0],[1,2,4,1],[1,2,3,2],[1,0,2,1]],[[0,2,2,0],[1,2,3,1],[1,2,4,2],[1,0,2,1]],[[0,2,2,0],[1,2,3,1],[1,2,3,3],[1,0,2,1]],[[0,2,2,0],[1,2,3,1],[1,2,3,2],[1,0,2,2]],[[0,3,2,0],[1,2,3,1],[1,2,3,2],[1,1,1,1]],[[0,2,3,0],[1,2,3,1],[1,2,3,2],[1,1,1,1]],[[0,2,2,0],[1,2,4,1],[1,2,3,2],[1,1,1,1]],[[0,2,2,0],[1,2,3,1],[1,2,4,2],[1,1,1,1]],[[0,2,2,0],[1,2,3,1],[1,2,3,3],[1,1,1,1]],[[0,2,2,0],[1,2,3,1],[1,2,3,2],[1,1,1,2]],[[0,3,2,0],[1,2,3,1],[1,2,3,2],[1,1,2,0]],[[0,2,3,0],[1,2,3,1],[1,2,3,2],[1,1,2,0]],[[0,2,2,0],[1,2,4,1],[1,2,3,2],[1,1,2,0]],[[0,2,2,0],[1,2,3,1],[1,2,4,2],[1,1,2,0]],[[0,2,2,0],[1,2,3,1],[1,2,3,3],[1,1,2,0]],[[0,2,2,0],[1,2,3,1],[1,2,3,2],[1,1,3,0]],[[0,3,2,0],[1,2,3,1],[1,2,3,2],[1,2,0,1]],[[0,2,3,0],[1,2,3,1],[1,2,3,2],[1,2,0,1]],[[0,2,2,0],[1,2,4,1],[1,2,3,2],[1,2,0,1]],[[0,2,2,0],[1,2,3,1],[1,2,4,2],[1,2,0,1]],[[0,2,2,0],[1,2,3,1],[1,2,3,3],[1,2,0,1]],[[0,2,2,0],[1,2,3,1],[1,2,3,2],[1,2,0,2]],[[0,3,2,0],[1,2,3,1],[1,2,3,2],[1,2,1,0]],[[0,2,3,0],[1,2,3,1],[1,2,3,2],[1,2,1,0]],[[0,2,2,0],[1,2,4,1],[1,2,3,2],[1,2,1,0]],[[0,2,2,0],[1,2,3,1],[1,2,4,2],[1,2,1,0]],[[0,2,2,0],[1,2,3,1],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[1,2,1,2],[1,1,2,2],[0,2,2,2]],[[1,2,2,1],[1,2,1,2],[1,1,2,2],[0,2,3,1]],[[1,2,2,1],[1,2,1,2],[1,1,2,2],[0,3,2,1]],[[1,2,2,1],[1,2,1,2],[1,1,2,3],[0,2,2,1]],[[1,2,2,1],[1,2,1,3],[1,1,2,2],[0,2,2,1]],[[1,2,2,2],[1,2,1,2],[1,1,2,2],[0,2,2,1]],[[1,2,3,1],[1,2,1,2],[1,1,2,2],[0,2,2,1]],[[1,3,2,1],[1,2,1,2],[1,1,2,2],[0,2,2,1]],[[2,2,2,1],[1,2,1,2],[1,1,2,2],[0,2,2,1]],[[0,3,2,0],[1,2,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,3,0],[1,2,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[1,2,4,1],[1,3,0,2],[1,2,2,1]],[[0,3,2,0],[1,2,3,1],[1,3,1,1],[1,2,2,1]],[[0,2,3,0],[1,2,3,1],[1,3,1,1],[1,2,2,1]],[[0,2,2,0],[1,2,4,1],[1,3,1,1],[1,2,2,1]],[[0,3,2,0],[1,2,3,1],[1,3,1,2],[1,2,2,0]],[[0,2,3,0],[1,2,3,1],[1,3,1,2],[1,2,2,0]],[[0,2,2,0],[1,2,4,1],[1,3,1,2],[1,2,2,0]],[[0,3,2,0],[1,2,3,1],[1,3,2,1],[1,1,2,1]],[[0,2,3,0],[1,2,3,1],[1,3,2,1],[1,1,2,1]],[[0,2,2,0],[1,2,4,1],[1,3,2,1],[1,1,2,1]],[[0,3,2,0],[1,2,3,1],[1,3,2,1],[1,2,1,1]],[[0,2,3,0],[1,2,3,1],[1,3,2,1],[1,2,1,1]],[[0,2,2,0],[1,2,4,1],[1,3,2,1],[1,2,1,1]],[[0,3,2,0],[1,2,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,3,0],[1,2,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,2,0],[1,2,4,1],[1,3,2,2],[1,1,1,1]],[[0,3,2,0],[1,2,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,3,0],[1,2,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,2,4,1],[1,3,2,2],[1,1,2,0]],[[0,3,2,0],[1,2,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,3,0],[1,2,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,2,0],[1,2,4,1],[1,3,2,2],[1,2,0,1]],[[0,3,2,0],[1,2,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,3,0],[1,2,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,2,0],[1,2,4,1],[1,3,2,2],[1,2,1,0]],[[1,2,2,1],[1,2,1,2],[1,0,3,2],[1,2,3,0]],[[1,2,2,1],[1,2,1,2],[1,0,3,2],[1,3,2,0]],[[1,2,2,1],[1,2,1,2],[1,0,3,2],[2,2,2,0]],[[1,2,2,1],[1,2,1,2],[1,0,3,3],[1,2,2,0]],[[1,2,2,1],[1,2,1,2],[1,0,4,2],[1,2,2,0]],[[1,2,2,1],[1,2,1,3],[1,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,2,1,2],[1,0,3,2],[1,2,2,0]],[[1,2,3,1],[1,2,1,2],[1,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,2,1,2],[1,0,3,2],[1,2,2,0]],[[2,2,2,1],[1,2,1,2],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,2,1,2],[1,0,3,2],[1,2,1,2]],[[1,2,2,1],[1,2,1,2],[1,0,3,3],[1,2,1,1]],[[1,2,2,1],[1,2,1,2],[1,0,4,2],[1,2,1,1]],[[1,2,2,1],[1,2,1,3],[1,0,3,2],[1,2,1,1]],[[1,2,2,2],[1,2,1,2],[1,0,3,2],[1,2,1,1]],[[0,3,2,0],[1,2,3,1],[1,3,3,2],[1,2,0,0]],[[0,2,3,0],[1,2,3,1],[1,3,3,2],[1,2,0,0]],[[0,2,2,0],[1,2,4,1],[1,3,3,2],[1,2,0,0]],[[1,2,3,1],[1,2,1,2],[1,0,3,2],[1,2,1,1]],[[1,3,2,1],[1,2,1,2],[1,0,3,2],[1,2,1,1]],[[2,2,2,1],[1,2,1,2],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,2,1,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[1,2,1,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,1],[1,2,1,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,1],[1,2,1,3],[1,0,3,2],[0,2,2,1]],[[1,2,2,2],[1,2,1,2],[1,0,3,2],[0,2,2,1]],[[1,2,3,1],[1,2,1,2],[1,0,3,2],[0,2,2,1]],[[1,3,2,1],[1,2,1,2],[1,0,3,2],[0,2,2,1]],[[2,2,2,1],[1,2,1,2],[1,0,3,2],[0,2,2,1]],[[1,2,2,1],[1,2,1,2],[1,0,3,1],[1,2,2,2]],[[1,2,2,1],[1,2,1,2],[1,0,3,1],[1,2,3,1]],[[1,2,2,1],[1,2,1,2],[1,0,3,1],[1,3,2,1]],[[1,2,2,1],[1,2,1,2],[1,0,3,1],[2,2,2,1]],[[1,2,2,1],[1,2,1,2],[1,0,4,1],[1,2,2,1]],[[1,2,2,1],[1,2,1,2],[1,0,2,2],[1,2,2,2]],[[1,2,2,1],[1,2,1,2],[1,0,2,2],[1,2,3,1]],[[1,2,2,1],[1,2,1,2],[1,0,2,2],[1,3,2,1]],[[1,2,2,1],[1,2,1,2],[1,0,2,2],[2,2,2,1]],[[1,2,2,1],[1,2,1,2],[1,0,2,3],[1,2,2,1]],[[1,2,2,1],[1,2,1,3],[1,0,2,2],[1,2,2,1]],[[1,2,2,2],[1,2,1,2],[1,0,2,2],[1,2,2,1]],[[1,2,3,1],[1,2,1,2],[1,0,2,2],[1,2,2,1]],[[1,3,2,1],[1,2,1,2],[1,0,2,2],[1,2,2,1]],[[2,2,2,1],[1,2,1,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,1],[3,0,2,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,1],[2,0,2,3],[1,2,2,1]],[[0,2,2,0],[1,2,3,1],[2,0,2,2],[2,2,2,1]],[[0,2,2,0],[1,2,3,1],[2,0,2,2],[1,3,2,1]],[[0,2,2,0],[1,2,3,1],[2,0,2,2],[1,2,3,1]],[[0,2,2,0],[1,2,3,1],[2,0,2,2],[1,2,2,2]],[[0,3,2,0],[1,2,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,3,0],[1,2,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[1,2,4,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[1,2,3,1],[3,0,3,1],[1,2,2,1]],[[0,2,2,0],[1,2,3,1],[2,0,4,1],[1,2,2,1]],[[0,2,2,0],[1,2,3,1],[2,0,3,1],[2,2,2,1]],[[0,2,2,0],[1,2,3,1],[2,0,3,1],[1,3,2,1]],[[0,2,2,0],[1,2,3,1],[2,0,3,1],[1,2,3,1]],[[0,2,2,0],[1,2,3,1],[2,0,3,1],[1,2,2,2]],[[0,2,2,0],[1,2,3,1],[2,0,3,3],[0,2,2,1]],[[0,2,2,0],[1,2,3,1],[2,0,3,2],[0,2,3,1]],[[0,2,2,0],[1,2,3,1],[2,0,3,2],[0,2,2,2]],[[0,3,2,0],[1,2,3,1],[2,0,3,2],[1,2,1,1]],[[0,2,3,0],[1,2,3,1],[2,0,3,2],[1,2,1,1]],[[0,2,2,0],[1,2,4,1],[2,0,3,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,1],[2,0,4,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,1],[2,0,3,3],[1,2,1,1]],[[0,2,2,0],[1,2,3,1],[2,0,3,2],[1,2,1,2]],[[0,3,2,0],[1,2,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,3,0],[1,2,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[1,2,4,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,1],[3,0,3,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,1],[2,0,4,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,1],[2,0,3,3],[1,2,2,0]],[[0,2,2,0],[1,2,3,1],[2,0,3,2],[2,2,2,0]],[[0,2,2,0],[1,2,3,1],[2,0,3,2],[1,3,2,0]],[[0,2,2,0],[1,2,3,1],[2,0,3,2],[1,2,3,0]],[[0,2,2,0],[1,2,3,1],[2,1,2,3],[0,2,2,1]],[[0,2,2,0],[1,2,3,1],[2,1,2,2],[0,3,2,1]],[[0,2,2,0],[1,2,3,1],[2,1,2,2],[0,2,3,1]],[[0,2,2,0],[1,2,3,1],[2,1,2,2],[0,2,2,2]],[[0,3,2,0],[1,2,3,1],[2,1,3,1],[0,2,2,1]],[[0,2,3,0],[1,2,3,1],[2,1,3,1],[0,2,2,1]],[[0,2,2,0],[1,2,4,1],[2,1,3,1],[0,2,2,1]],[[0,2,2,0],[1,2,3,1],[2,1,4,1],[0,2,2,1]],[[0,2,2,0],[1,2,3,1],[2,1,3,1],[0,3,2,1]],[[0,2,2,0],[1,2,3,1],[2,1,3,1],[0,2,3,1]],[[0,2,2,0],[1,2,3,1],[2,1,3,1],[0,2,2,2]],[[0,3,2,0],[1,2,3,1],[2,1,3,2],[0,2,1,1]],[[0,2,3,0],[1,2,3,1],[2,1,3,2],[0,2,1,1]],[[0,2,2,0],[1,2,4,1],[2,1,3,2],[0,2,1,1]],[[0,2,2,0],[1,2,3,1],[2,1,4,2],[0,2,1,1]],[[0,2,2,0],[1,2,3,1],[2,1,3,3],[0,2,1,1]],[[0,2,2,0],[1,2,3,1],[2,1,3,2],[0,2,1,2]],[[0,3,2,0],[1,2,3,1],[2,1,3,2],[0,2,2,0]],[[0,2,3,0],[1,2,3,1],[2,1,3,2],[0,2,2,0]],[[0,2,2,0],[1,2,4,1],[2,1,3,2],[0,2,2,0]],[[0,2,2,0],[1,2,3,1],[2,1,4,2],[0,2,2,0]],[[0,2,2,0],[1,2,3,1],[2,1,3,3],[0,2,2,0]],[[0,2,2,0],[1,2,3,1],[2,1,3,2],[0,3,2,0]],[[0,2,2,0],[1,2,3,1],[2,1,3,2],[0,2,3,0]],[[0,2,2,0],[1,2,3,1],[2,2,2,3],[0,1,2,1]],[[0,2,2,0],[1,2,3,1],[2,2,2,2],[0,1,3,1]],[[0,2,2,0],[1,2,3,1],[2,2,2,2],[0,1,2,2]],[[0,2,2,0],[1,2,3,1],[2,2,2,3],[1,0,2,1]],[[0,2,2,0],[1,2,3,1],[2,2,2,2],[1,0,3,1]],[[0,2,2,0],[1,2,3,1],[2,2,2,2],[1,0,2,2]],[[0,3,2,0],[1,2,3,1],[2,2,3,1],[0,1,2,1]],[[0,2,3,0],[1,2,3,1],[2,2,3,1],[0,1,2,1]],[[0,2,2,0],[1,2,4,1],[2,2,3,1],[0,1,2,1]],[[0,2,2,0],[1,2,3,1],[2,2,4,1],[0,1,2,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,1],[0,1,3,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,1],[0,1,2,2]],[[0,3,2,0],[1,2,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,3,0],[1,2,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[1,2,4,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[1,2,3,1],[2,2,4,1],[0,2,1,1]],[[0,3,2,0],[1,2,3,1],[2,2,3,1],[1,0,2,1]],[[0,2,3,0],[1,2,3,1],[2,2,3,1],[1,0,2,1]],[[0,2,2,0],[1,2,4,1],[2,2,3,1],[1,0,2,1]],[[0,2,2,0],[1,2,3,1],[2,2,4,1],[1,0,2,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,1],[1,0,3,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,1],[1,0,2,2]],[[0,3,2,0],[1,2,3,1],[2,2,3,1],[1,1,1,1]],[[0,2,3,0],[1,2,3,1],[2,2,3,1],[1,1,1,1]],[[0,2,2,0],[1,2,4,1],[2,2,3,1],[1,1,1,1]],[[0,2,2,0],[1,2,3,1],[2,2,4,1],[1,1,1,1]],[[0,3,2,0],[1,2,3,1],[2,2,3,2],[0,0,2,1]],[[0,2,3,0],[1,2,3,1],[2,2,3,2],[0,0,2,1]],[[0,2,2,0],[1,2,4,1],[2,2,3,2],[0,0,2,1]],[[0,2,2,0],[1,2,3,1],[2,2,4,2],[0,0,2,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,3],[0,0,2,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,2],[0,0,2,2]],[[0,3,2,0],[1,2,3,1],[2,2,3,2],[0,1,1,1]],[[0,2,3,0],[1,2,3,1],[2,2,3,2],[0,1,1,1]],[[0,2,2,0],[1,2,4,1],[2,2,3,2],[0,1,1,1]],[[0,2,2,0],[1,2,3,1],[2,2,4,2],[0,1,1,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,3],[0,1,1,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,2],[0,1,1,2]],[[0,3,2,0],[1,2,3,1],[2,2,3,2],[0,1,2,0]],[[0,2,3,0],[1,2,3,1],[2,2,3,2],[0,1,2,0]],[[0,2,2,0],[1,2,4,1],[2,2,3,2],[0,1,2,0]],[[0,2,2,0],[1,2,3,1],[2,2,4,2],[0,1,2,0]],[[0,2,2,0],[1,2,3,1],[2,2,3,3],[0,1,2,0]],[[0,2,2,0],[1,2,3,1],[2,2,3,2],[0,1,3,0]],[[0,3,2,0],[1,2,3,1],[2,2,3,2],[0,2,0,1]],[[0,2,3,0],[1,2,3,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,0],[1,2,4,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,0],[1,2,3,1],[2,2,4,2],[0,2,0,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,3],[0,2,0,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,2],[0,2,0,2]],[[0,3,2,0],[1,2,3,1],[2,2,3,2],[0,2,1,0]],[[0,2,3,0],[1,2,3,1],[2,2,3,2],[0,2,1,0]],[[0,2,2,0],[1,2,4,1],[2,2,3,2],[0,2,1,0]],[[0,2,2,0],[1,2,3,1],[2,2,4,2],[0,2,1,0]],[[0,2,2,0],[1,2,3,1],[2,2,3,3],[0,2,1,0]],[[0,3,2,0],[1,2,3,1],[2,2,3,2],[1,0,1,1]],[[0,2,3,0],[1,2,3,1],[2,2,3,2],[1,0,1,1]],[[0,2,2,0],[1,2,4,1],[2,2,3,2],[1,0,1,1]],[[0,2,2,0],[1,2,3,1],[2,2,4,2],[1,0,1,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,3],[1,0,1,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,2],[1,0,1,2]],[[0,3,2,0],[1,2,3,1],[2,2,3,2],[1,0,2,0]],[[0,2,3,0],[1,2,3,1],[2,2,3,2],[1,0,2,0]],[[0,2,2,0],[1,2,4,1],[2,2,3,2],[1,0,2,0]],[[0,2,2,0],[1,2,3,1],[2,2,4,2],[1,0,2,0]],[[0,2,2,0],[1,2,3,1],[2,2,3,3],[1,0,2,0]],[[0,2,2,0],[1,2,3,1],[2,2,3,2],[1,0,3,0]],[[0,3,2,0],[1,2,3,1],[2,2,3,2],[1,1,0,1]],[[0,2,3,0],[1,2,3,1],[2,2,3,2],[1,1,0,1]],[[0,2,2,0],[1,2,4,1],[2,2,3,2],[1,1,0,1]],[[0,2,2,0],[1,2,3,1],[2,2,4,2],[1,1,0,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,3],[1,1,0,1]],[[0,2,2,0],[1,2,3,1],[2,2,3,2],[1,1,0,2]],[[0,3,2,0],[1,2,3,1],[2,2,3,2],[1,1,1,0]],[[0,2,3,0],[1,2,3,1],[2,2,3,2],[1,1,1,0]],[[0,2,2,0],[1,2,4,1],[2,2,3,2],[1,1,1,0]],[[0,2,2,0],[1,2,3,1],[2,2,4,2],[1,1,1,0]],[[0,2,2,0],[1,2,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[1,2,1,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,2,1,2],[0,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,2,1,3],[0,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,2,1,2],[0,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,2,1,2],[0,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,2,1,2],[0,3,3,2],[0,2,1,0]],[[2,2,2,1],[1,2,1,2],[0,3,3,2],[0,2,1,0]],[[0,3,2,0],[1,2,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,3,0],[1,2,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,2,4,1],[2,3,0,2],[0,2,2,1]],[[0,3,2,0],[1,2,3,1],[2,3,0,2],[1,1,2,1]],[[0,2,3,0],[1,2,3,1],[2,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,2,4,1],[2,3,0,2],[1,1,2,1]],[[0,3,2,0],[1,2,3,1],[2,3,1,1],[0,2,2,1]],[[0,2,3,0],[1,2,3,1],[2,3,1,1],[0,2,2,1]],[[0,2,2,0],[1,2,4,1],[2,3,1,1],[0,2,2,1]],[[0,3,2,0],[1,2,3,1],[2,3,1,1],[1,1,2,1]],[[0,2,3,0],[1,2,3,1],[2,3,1,1],[1,1,2,1]],[[0,2,2,0],[1,2,4,1],[2,3,1,1],[1,1,2,1]],[[0,3,2,0],[1,2,3,1],[2,3,1,2],[0,2,2,0]],[[0,2,3,0],[1,2,3,1],[2,3,1,2],[0,2,2,0]],[[0,2,2,0],[1,2,4,1],[2,3,1,2],[0,2,2,0]],[[0,3,2,0],[1,2,3,1],[2,3,1,2],[1,1,2,0]],[[0,2,3,0],[1,2,3,1],[2,3,1,2],[1,1,2,0]],[[0,2,2,0],[1,2,4,1],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[1,2,1,2],[0,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,2,1,2],[0,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,2,1,2],[0,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,2,1,3],[0,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,2,1,2],[0,3,3,2],[0,2,0,1]],[[1,2,3,1],[1,2,1,2],[0,3,3,2],[0,2,0,1]],[[1,3,2,1],[1,2,1,2],[0,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,2,1,2],[0,3,3,2],[0,2,0,1]],[[0,3,2,0],[1,2,3,1],[2,3,2,1],[0,1,2,1]],[[0,2,3,0],[1,2,3,1],[2,3,2,1],[0,1,2,1]],[[0,2,2,0],[1,2,4,1],[2,3,2,1],[0,1,2,1]],[[0,3,2,0],[1,2,3,1],[2,3,2,1],[0,2,1,1]],[[0,2,3,0],[1,2,3,1],[2,3,2,1],[0,2,1,1]],[[0,2,2,0],[1,2,4,1],[2,3,2,1],[0,2,1,1]],[[0,3,2,0],[1,2,3,1],[2,3,2,1],[1,0,2,1]],[[0,2,3,0],[1,2,3,1],[2,3,2,1],[1,0,2,1]],[[0,2,2,0],[1,2,4,1],[2,3,2,1],[1,0,2,1]],[[0,3,2,0],[1,2,3,1],[2,3,2,1],[1,1,1,1]],[[0,2,3,0],[1,2,3,1],[2,3,2,1],[1,1,1,1]],[[0,2,2,0],[1,2,4,1],[2,3,2,1],[1,1,1,1]],[[1,2,2,1],[1,2,1,2],[0,3,3,2],[0,1,3,0]],[[1,2,2,1],[1,2,1,2],[0,3,3,3],[0,1,2,0]],[[0,3,2,0],[1,2,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,3,0],[1,2,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,2,0],[1,2,4,1],[2,3,2,2],[0,1,1,1]],[[0,3,2,0],[1,2,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,3,0],[1,2,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,2,0],[1,2,4,1],[2,3,2,2],[0,1,2,0]],[[0,3,2,0],[1,2,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,3,0],[1,2,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,2,0],[1,2,4,1],[2,3,2,2],[0,2,0,1]],[[0,3,2,0],[1,2,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,3,0],[1,2,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,2,0],[1,2,4,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,2,1,2],[0,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,2,1,3],[0,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,1,2],[0,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,1,2],[0,3,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,1,2],[0,3,3,2],[0,1,2,0]],[[2,2,2,1],[1,2,1,2],[0,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,1,2],[0,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,2,1,2],[0,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,2,1,2],[0,3,4,2],[0,1,1,1]],[[0,3,2,0],[1,2,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,3,0],[1,2,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,2,0],[1,2,4,1],[2,3,2,2],[1,0,1,1]],[[0,3,2,0],[1,2,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,3,0],[1,2,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,2,0],[1,2,4,1],[2,3,2,2],[1,0,2,0]],[[0,3,2,0],[1,2,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,3,0],[1,2,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,2,0],[1,2,4,1],[2,3,2,2],[1,1,0,1]],[[0,3,2,0],[1,2,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,3,0],[1,2,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,2,0],[1,2,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[1,2,1,3],[0,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,1,2],[0,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,1,2],[0,3,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,1,2],[0,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,2,1,2],[0,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,1,2],[0,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,2,1,2],[0,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,2,1,2],[0,3,4,2],[0,0,2,1]],[[1,2,2,1],[1,2,1,3],[0,3,3,2],[0,0,2,1]],[[0,3,2,0],[1,2,3,1],[2,3,2,2],[1,2,0,0]],[[0,2,3,0],[1,2,3,1],[2,3,2,2],[1,2,0,0]],[[0,2,2,0],[1,2,4,1],[2,3,2,2],[1,2,0,0]],[[1,2,2,2],[1,2,1,2],[0,3,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,1,2],[0,3,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,1,2],[0,3,3,2],[0,0,2,1]],[[2,2,2,1],[1,2,1,2],[0,3,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,1,2],[0,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,2,1,2],[0,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,2,1,2],[0,3,4,1],[0,1,2,1]],[[0,3,2,0],[1,2,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,3,0],[1,2,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,2,0],[1,2,4,1],[2,3,3,1],[0,0,2,1]],[[0,2,2,0],[1,2,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,2,1],[1,2,1,2],[0,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,2,1,2],[0,3,2,2],[0,1,3,1]],[[1,2,2,1],[1,2,1,2],[0,3,2,3],[0,1,2,1]],[[1,2,2,1],[1,2,1,3],[0,3,2,2],[0,1,2,1]],[[1,2,2,2],[1,2,1,2],[0,3,2,2],[0,1,2,1]],[[1,2,3,1],[1,2,1,2],[0,3,2,2],[0,1,2,1]],[[1,3,2,1],[1,2,1,2],[0,3,2,2],[0,1,2,1]],[[2,2,2,1],[1,2,1,2],[0,3,2,2],[0,1,2,1]],[[0,3,2,0],[1,2,3,1],[2,3,3,2],[0,0,1,1]],[[0,2,3,0],[1,2,3,1],[2,3,3,2],[0,0,1,1]],[[0,2,2,0],[1,2,4,1],[2,3,3,2],[0,0,1,1]],[[0,2,2,0],[1,2,3,1],[2,3,4,2],[0,0,1,1]],[[0,2,2,0],[1,2,3,1],[2,3,3,3],[0,0,1,1]],[[0,2,2,0],[1,2,3,1],[2,3,3,2],[0,0,1,2]],[[0,3,2,0],[1,2,3,1],[2,3,3,2],[0,0,2,0]],[[0,2,3,0],[1,2,3,1],[2,3,3,2],[0,0,2,0]],[[0,2,2,0],[1,2,4,1],[2,3,3,2],[0,0,2,0]],[[0,2,2,0],[1,2,3,1],[2,3,4,2],[0,0,2,0]],[[0,2,2,0],[1,2,3,1],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,2,1,2],[0,3,0,2],[1,2,2,2]],[[1,2,2,1],[1,2,1,2],[0,3,0,2],[1,2,3,1]],[[1,2,2,1],[1,2,1,2],[0,3,0,2],[1,3,2,1]],[[1,2,2,1],[1,2,1,2],[0,3,0,2],[2,2,2,1]],[[1,2,2,1],[1,2,1,2],[0,3,0,3],[1,2,2,1]],[[1,2,2,1],[1,2,1,2],[0,4,0,2],[1,2,2,1]],[[1,2,2,1],[1,2,1,3],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[1,2,1,2],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[1,2,1,2],[0,3,0,2],[1,2,2,1]],[[0,3,2,0],[1,2,3,1],[2,3,3,2],[0,2,0,0]],[[0,2,3,0],[1,2,3,1],[2,3,3,2],[0,2,0,0]],[[0,2,2,0],[1,2,4,1],[2,3,3,2],[0,2,0,0]],[[1,3,2,1],[1,2,1,2],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[1,2,1,2],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[1,2,1,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[1,2,1,2],[0,2,4,2],[1,2,1,0]],[[1,2,2,1],[1,2,1,3],[0,2,3,2],[1,2,1,0]],[[1,2,2,2],[1,2,1,2],[0,2,3,2],[1,2,1,0]],[[1,2,3,1],[1,2,1,2],[0,2,3,2],[1,2,1,0]],[[1,3,2,1],[1,2,1,2],[0,2,3,2],[1,2,1,0]],[[2,2,2,1],[1,2,1,2],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[1,2,1,2],[0,2,3,2],[1,2,0,2]],[[1,2,2,1],[1,2,1,2],[0,2,3,3],[1,2,0,1]],[[1,2,2,1],[1,2,1,2],[0,2,4,2],[1,2,0,1]],[[1,2,2,1],[1,2,1,3],[0,2,3,2],[1,2,0,1]],[[1,2,2,2],[1,2,1,2],[0,2,3,2],[1,2,0,1]],[[1,2,3,1],[1,2,1,2],[0,2,3,2],[1,2,0,1]],[[1,3,2,1],[1,2,1,2],[0,2,3,2],[1,2,0,1]],[[2,2,2,1],[1,2,1,2],[0,2,3,2],[1,2,0,1]],[[0,3,2,0],[1,2,3,1],[2,3,3,2],[1,1,0,0]],[[0,2,3,0],[1,2,3,1],[2,3,3,2],[1,1,0,0]],[[0,2,2,0],[1,2,4,1],[2,3,3,2],[1,1,0,0]],[[1,2,2,1],[1,2,1,2],[0,2,3,2],[1,1,3,0]],[[1,2,2,1],[1,2,1,2],[0,2,3,3],[1,1,2,0]],[[1,2,2,1],[1,2,1,2],[0,2,4,2],[1,1,2,0]],[[1,2,2,1],[1,2,1,3],[0,2,3,2],[1,1,2,0]],[[1,2,2,2],[1,2,1,2],[0,2,3,2],[1,1,2,0]],[[1,2,3,1],[1,2,1,2],[0,2,3,2],[1,1,2,0]],[[1,3,2,1],[1,2,1,2],[0,2,3,2],[1,1,2,0]],[[2,2,2,1],[1,2,1,2],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[1,2,1,2],[0,2,3,2],[1,1,1,2]],[[1,2,2,1],[1,2,1,2],[0,2,3,3],[1,1,1,1]],[[1,2,2,1],[1,2,1,2],[0,2,4,2],[1,1,1,1]],[[1,2,2,1],[1,2,1,3],[0,2,3,2],[1,1,1,1]],[[1,2,2,2],[1,2,1,2],[0,2,3,2],[1,1,1,1]],[[1,2,3,1],[1,2,1,2],[0,2,3,2],[1,1,1,1]],[[1,3,2,1],[1,2,1,2],[0,2,3,2],[1,1,1,1]],[[2,2,2,1],[1,2,1,2],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[1,2,1,2],[0,2,3,2],[1,0,2,2]],[[1,2,2,1],[1,2,1,2],[0,2,3,3],[1,0,2,1]],[[1,2,2,1],[1,2,1,2],[0,2,4,2],[1,0,2,1]],[[1,2,2,1],[1,2,1,3],[0,2,3,2],[1,0,2,1]],[[1,2,2,2],[1,2,1,2],[0,2,3,2],[1,0,2,1]],[[1,2,3,1],[1,2,1,2],[0,2,3,2],[1,0,2,1]],[[1,3,2,1],[1,2,1,2],[0,2,3,2],[1,0,2,1]],[[2,2,2,1],[1,2,1,2],[0,2,3,2],[1,0,2,1]],[[1,2,2,1],[1,2,1,2],[0,2,3,1],[1,1,2,2]],[[1,2,2,1],[1,2,1,2],[0,2,3,1],[1,1,3,1]],[[1,2,2,1],[1,2,1,2],[0,2,4,1],[1,1,2,1]],[[1,2,2,1],[1,2,1,2],[0,2,2,2],[1,1,2,2]],[[1,2,2,1],[1,2,1,2],[0,2,2,2],[1,1,3,1]],[[1,2,2,1],[1,2,1,2],[0,2,2,3],[1,1,2,1]],[[1,2,2,1],[1,2,1,3],[0,2,2,2],[1,1,2,1]],[[1,2,2,2],[1,2,1,2],[0,2,2,2],[1,1,2,1]],[[1,2,3,1],[1,2,1,2],[0,2,2,2],[1,1,2,1]],[[1,3,2,1],[1,2,1,2],[0,2,2,2],[1,1,2,1]],[[2,2,2,1],[1,2,1,2],[0,2,2,2],[1,1,2,1]],[[1,2,2,1],[1,2,1,2],[0,1,3,2],[1,2,3,0]],[[1,2,2,1],[1,2,1,2],[0,1,3,2],[1,3,2,0]],[[1,2,2,1],[1,2,1,2],[0,1,3,2],[2,2,2,0]],[[1,2,2,1],[1,2,1,2],[0,1,3,3],[1,2,2,0]],[[1,2,2,1],[1,2,1,2],[0,1,4,2],[1,2,2,0]],[[1,2,2,1],[1,2,1,3],[0,1,3,2],[1,2,2,0]],[[1,2,2,2],[1,2,1,2],[0,1,3,2],[1,2,2,0]],[[1,2,3,1],[1,2,1,2],[0,1,3,2],[1,2,2,0]],[[1,3,2,1],[1,2,1,2],[0,1,3,2],[1,2,2,0]],[[2,2,2,1],[1,2,1,2],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,2,1,2],[0,1,3,2],[1,2,1,2]],[[1,2,2,1],[1,2,1,2],[0,1,3,3],[1,2,1,1]],[[1,2,2,1],[1,2,1,2],[0,1,4,2],[1,2,1,1]],[[1,2,2,1],[1,2,1,3],[0,1,3,2],[1,2,1,1]],[[1,2,2,2],[1,2,1,2],[0,1,3,2],[1,2,1,1]],[[1,2,3,1],[1,2,1,2],[0,1,3,2],[1,2,1,1]],[[1,3,2,1],[1,2,1,2],[0,1,3,2],[1,2,1,1]],[[2,2,2,1],[1,2,1,2],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[1,2,1,2],[0,1,3,1],[1,2,2,2]],[[1,2,2,1],[1,2,1,2],[0,1,3,1],[1,2,3,1]],[[1,2,2,1],[1,2,1,2],[0,1,3,1],[1,3,2,1]],[[1,2,2,1],[1,2,1,2],[0,1,3,1],[2,2,2,1]],[[1,2,2,1],[1,2,1,2],[0,1,4,1],[1,2,2,1]],[[1,2,2,1],[1,2,1,2],[0,1,2,2],[1,2,2,2]],[[1,2,2,1],[1,2,1,2],[0,1,2,2],[1,2,3,1]],[[1,2,2,1],[1,2,1,2],[0,1,2,2],[1,3,2,1]],[[1,2,2,1],[1,2,1,2],[0,1,2,2],[2,2,2,1]],[[1,2,2,1],[1,2,1,2],[0,1,2,3],[1,2,2,1]],[[1,2,2,1],[1,2,1,3],[0,1,2,2],[1,2,2,1]],[[1,2,2,2],[1,2,1,2],[0,1,2,2],[1,2,2,1]],[[1,2,3,1],[1,2,1,2],[0,1,2,2],[1,2,2,1]],[[1,3,2,1],[1,2,1,2],[0,1,2,2],[1,2,2,1]],[[2,2,2,1],[1,2,1,2],[0,1,2,2],[1,2,2,1]],[[1,2,2,1],[1,2,1,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[1,2,1,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,1],[1,2,1,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,1],[1,2,1,3],[0,0,3,2],[1,2,2,1]],[[1,2,2,2],[1,2,1,2],[0,0,3,2],[1,2,2,1]],[[1,2,3,1],[1,2,1,2],[0,0,3,2],[1,2,2,1]],[[1,3,2,1],[1,2,1,2],[0,0,3,2],[1,2,2,1]],[[2,2,2,1],[1,2,1,2],[0,0,3,2],[1,2,2,1]],[[0,2,3,0],[1,2,3,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,0],[1,2,4,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,3],[1,0,2,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[1,0,2,3],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[1,0,2,2],[1,2,3,1]],[[0,2,2,0],[1,2,3,2],[1,0,2,2],[1,2,2,2]],[[0,2,3,0],[1,2,3,2],[1,0,3,2],[1,1,2,1]],[[0,2,2,0],[1,2,4,2],[1,0,3,2],[1,1,2,1]],[[0,2,2,0],[1,2,3,3],[1,0,3,2],[1,1,2,1]],[[0,2,2,0],[1,2,3,2],[1,0,3,3],[1,1,2,1]],[[0,2,2,0],[1,2,3,2],[1,0,3,2],[1,1,2,2]],[[0,2,3,0],[1,2,3,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,0],[1,2,4,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,3],[1,0,3,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,2],[1,0,3,3],[1,2,1,1]],[[0,2,2,0],[1,2,3,2],[1,0,3,2],[1,2,1,2]],[[0,2,3,0],[1,2,3,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,0],[1,2,4,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,3],[1,0,3,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,2],[1,0,3,3],[1,2,2,0]],[[0,3,2,0],[1,2,3,2],[1,1,1,2],[1,2,2,1]],[[0,2,3,0],[1,2,3,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,0],[1,2,4,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,3],[1,1,1,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[1,1,1,3],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[1,1,1,2],[2,2,2,1]],[[0,2,2,0],[1,2,3,2],[1,1,1,2],[1,3,2,1]],[[0,2,2,0],[1,2,3,2],[1,1,1,2],[1,2,3,1]],[[0,2,2,0],[1,2,3,2],[1,1,1,2],[1,2,2,2]],[[0,3,2,0],[1,2,3,2],[1,1,2,2],[1,2,1,1]],[[0,2,3,0],[1,2,3,2],[1,1,2,2],[1,2,1,1]],[[0,2,2,0],[1,2,4,2],[1,1,2,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,3],[1,1,2,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,2],[1,1,2,3],[1,2,1,1]],[[0,2,2,0],[1,2,3,2],[1,1,2,2],[1,2,1,2]],[[0,3,2,0],[1,2,3,2],[1,1,2,2],[1,2,2,0]],[[0,2,3,0],[1,2,3,2],[1,1,2,2],[1,2,2,0]],[[0,2,2,0],[1,2,4,2],[1,1,2,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,3],[1,1,2,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,2],[1,1,2,3],[1,2,2,0]],[[0,3,2,0],[1,2,3,2],[1,1,3,0],[1,2,2,1]],[[0,2,3,0],[1,2,3,2],[1,1,3,0],[1,2,2,1]],[[0,2,2,0],[1,2,4,2],[1,1,3,0],[1,2,2,1]],[[0,2,2,0],[1,2,3,3],[1,1,3,0],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[1,1,4,0],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[1,1,3,0],[2,2,2,1]],[[0,2,2,0],[1,2,3,2],[1,1,3,0],[1,3,2,1]],[[0,2,2,0],[1,2,3,2],[1,1,3,0],[1,2,3,1]],[[0,2,2,0],[1,2,3,2],[1,1,3,0],[1,2,2,2]],[[0,3,2,0],[1,2,3,2],[1,1,3,1],[1,2,1,1]],[[0,2,3,0],[1,2,3,2],[1,1,3,1],[1,2,1,1]],[[0,2,2,0],[1,2,4,2],[1,1,3,1],[1,2,1,1]],[[0,2,2,0],[1,2,3,3],[1,1,3,1],[1,2,1,1]],[[0,2,2,0],[1,2,3,2],[1,1,4,1],[1,2,1,1]],[[0,3,2,0],[1,2,3,2],[1,1,3,1],[1,2,2,0]],[[0,2,3,0],[1,2,3,2],[1,1,3,1],[1,2,2,0]],[[0,2,2,0],[1,2,4,2],[1,1,3,1],[1,2,2,0]],[[0,2,2,0],[1,2,3,3],[1,1,3,1],[1,2,2,0]],[[0,2,2,0],[1,2,3,2],[1,1,4,1],[1,2,2,0]],[[0,2,2,0],[1,2,3,2],[1,1,3,1],[2,2,2,0]],[[0,2,2,0],[1,2,3,2],[1,1,3,1],[1,3,2,0]],[[0,2,2,0],[1,2,3,2],[1,1,3,1],[1,2,3,0]],[[0,2,3,0],[1,2,3,2],[1,1,3,2],[1,0,2,1]],[[0,2,2,0],[1,2,4,2],[1,1,3,2],[1,0,2,1]],[[0,2,2,0],[1,2,3,3],[1,1,3,2],[1,0,2,1]],[[0,2,2,0],[1,2,3,2],[1,1,3,3],[1,0,2,1]],[[0,2,2,0],[1,2,3,2],[1,1,3,2],[1,0,2,2]],[[0,2,3,0],[1,2,3,2],[1,1,3,2],[1,1,1,1]],[[0,2,2,0],[1,2,4,2],[1,1,3,2],[1,1,1,1]],[[0,2,2,0],[1,2,3,3],[1,1,3,2],[1,1,1,1]],[[0,2,2,0],[1,2,3,2],[1,1,3,3],[1,1,1,1]],[[0,2,2,0],[1,2,3,2],[1,1,3,2],[1,1,1,2]],[[0,2,3,0],[1,2,3,2],[1,1,3,2],[1,1,2,0]],[[0,2,2,0],[1,2,4,2],[1,1,3,2],[1,1,2,0]],[[0,2,2,0],[1,2,3,3],[1,1,3,2],[1,1,2,0]],[[0,2,2,0],[1,2,3,2],[1,1,3,3],[1,1,2,0]],[[0,3,2,0],[1,2,3,2],[1,2,0,2],[1,2,2,1]],[[0,2,3,0],[1,2,3,2],[1,2,0,2],[1,2,2,1]],[[0,2,2,0],[1,2,4,2],[1,2,0,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,3],[1,2,0,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[1,2,0,3],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[1,2,0,2],[2,2,2,1]],[[0,2,2,0],[1,2,3,2],[1,2,0,2],[1,3,2,1]],[[0,2,2,0],[1,2,3,2],[1,2,0,2],[1,2,3,1]],[[0,2,2,0],[1,2,3,2],[1,2,0,2],[1,2,2,2]],[[0,3,2,0],[1,2,3,2],[1,2,1,2],[1,1,2,1]],[[0,2,3,0],[1,2,3,2],[1,2,1,2],[1,1,2,1]],[[0,2,2,0],[1,2,4,2],[1,2,1,2],[1,1,2,1]],[[0,2,2,0],[1,2,3,3],[1,2,1,2],[1,1,2,1]],[[0,2,2,0],[1,2,3,2],[1,2,1,3],[1,1,2,1]],[[0,2,2,0],[1,2,3,2],[1,2,1,2],[1,1,3,1]],[[0,2,2,0],[1,2,3,2],[1,2,1,2],[1,1,2,2]],[[0,2,3,0],[1,2,3,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,0],[1,2,4,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,0],[1,2,3,3],[1,2,2,2],[1,0,2,1]],[[0,2,2,0],[1,2,3,2],[1,2,2,3],[1,0,2,1]],[[0,2,2,0],[1,2,3,2],[1,2,2,2],[1,0,2,2]],[[0,3,2,0],[1,2,3,2],[1,2,2,2],[1,1,1,1]],[[0,2,3,0],[1,2,3,2],[1,2,2,2],[1,1,1,1]],[[0,2,2,0],[1,2,4,2],[1,2,2,2],[1,1,1,1]],[[0,2,2,0],[1,2,3,3],[1,2,2,2],[1,1,1,1]],[[0,2,2,0],[1,2,3,2],[1,2,2,3],[1,1,1,1]],[[0,2,2,0],[1,2,3,2],[1,2,2,2],[1,1,1,2]],[[0,3,2,0],[1,2,3,2],[1,2,2,2],[1,1,2,0]],[[0,2,3,0],[1,2,3,2],[1,2,2,2],[1,1,2,0]],[[0,2,2,0],[1,2,4,2],[1,2,2,2],[1,1,2,0]],[[0,2,2,0],[1,2,3,3],[1,2,2,2],[1,1,2,0]],[[0,2,2,0],[1,2,3,2],[1,2,2,3],[1,1,2,0]],[[0,3,2,0],[1,2,3,2],[1,2,2,2],[1,2,0,1]],[[0,2,3,0],[1,2,3,2],[1,2,2,2],[1,2,0,1]],[[0,2,2,0],[1,2,4,2],[1,2,2,2],[1,2,0,1]],[[0,2,2,0],[1,2,3,3],[1,2,2,2],[1,2,0,1]],[[0,2,2,0],[1,2,3,2],[1,2,2,3],[1,2,0,1]],[[0,2,2,0],[1,2,3,2],[1,2,2,2],[1,2,0,2]],[[0,3,2,0],[1,2,3,2],[1,2,2,2],[1,2,1,0]],[[0,2,3,0],[1,2,3,2],[1,2,2,2],[1,2,1,0]],[[0,2,2,0],[1,2,4,2],[1,2,2,2],[1,2,1,0]],[[0,2,2,0],[1,2,3,3],[1,2,2,2],[1,2,1,0]],[[0,2,2,0],[1,2,3,2],[1,2,2,3],[1,2,1,0]],[[0,3,2,0],[1,2,3,2],[1,2,3,0],[1,1,2,1]],[[0,2,3,0],[1,2,3,2],[1,2,3,0],[1,1,2,1]],[[0,2,2,0],[1,2,4,2],[1,2,3,0],[1,1,2,1]],[[0,2,2,0],[1,2,3,3],[1,2,3,0],[1,1,2,1]],[[0,2,2,0],[1,2,3,2],[1,2,4,0],[1,1,2,1]],[[0,2,2,0],[1,2,3,2],[1,2,3,0],[1,1,3,1]],[[0,2,2,0],[1,2,3,2],[1,2,3,0],[1,1,2,2]],[[0,3,2,0],[1,2,3,2],[1,2,3,0],[1,2,1,1]],[[0,2,3,0],[1,2,3,2],[1,2,3,0],[1,2,1,1]],[[0,2,2,0],[1,2,4,2],[1,2,3,0],[1,2,1,1]],[[0,2,2,0],[1,2,3,3],[1,2,3,0],[1,2,1,1]],[[0,2,2,0],[1,2,3,2],[1,2,4,0],[1,2,1,1]],[[0,2,3,0],[1,2,3,2],[1,2,3,1],[1,0,2,1]],[[0,2,2,0],[1,2,4,2],[1,2,3,1],[1,0,2,1]],[[0,2,2,0],[1,2,3,3],[1,2,3,1],[1,0,2,1]],[[0,2,2,0],[1,2,3,2],[1,2,4,1],[1,0,2,1]],[[0,3,2,0],[1,2,3,2],[1,2,3,1],[1,1,1,1]],[[0,2,3,0],[1,2,3,2],[1,2,3,1],[1,1,1,1]],[[0,2,2,0],[1,2,4,2],[1,2,3,1],[1,1,1,1]],[[0,2,2,0],[1,2,3,3],[1,2,3,1],[1,1,1,1]],[[0,2,2,0],[1,2,3,2],[1,2,4,1],[1,1,1,1]],[[0,3,2,0],[1,2,3,2],[1,2,3,1],[1,1,2,0]],[[0,2,3,0],[1,2,3,2],[1,2,3,1],[1,1,2,0]],[[0,2,2,0],[1,2,4,2],[1,2,3,1],[1,1,2,0]],[[0,2,2,0],[1,2,3,3],[1,2,3,1],[1,1,2,0]],[[0,2,2,0],[1,2,3,2],[1,2,4,1],[1,1,2,0]],[[0,2,2,0],[1,2,3,2],[1,2,3,1],[1,1,3,0]],[[0,3,2,0],[1,2,3,2],[1,2,3,1],[1,2,0,1]],[[0,2,3,0],[1,2,3,2],[1,2,3,1],[1,2,0,1]],[[0,2,2,0],[1,2,4,2],[1,2,3,1],[1,2,0,1]],[[0,2,2,0],[1,2,3,3],[1,2,3,1],[1,2,0,1]],[[0,2,2,0],[1,2,3,2],[1,2,4,1],[1,2,0,1]],[[0,3,2,0],[1,2,3,2],[1,2,3,1],[1,2,1,0]],[[0,2,3,0],[1,2,3,2],[1,2,3,1],[1,2,1,0]],[[0,2,2,0],[1,2,4,2],[1,2,3,1],[1,2,1,0]],[[0,2,2,0],[1,2,3,3],[1,2,3,1],[1,2,1,0]],[[0,2,2,0],[1,2,3,2],[1,2,4,1],[1,2,1,0]],[[0,2,3,0],[1,2,3,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,0],[1,2,4,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,0],[1,2,3,3],[1,2,3,2],[1,1,0,1]],[[0,2,2,0],[1,2,3,2],[1,2,3,3],[1,1,0,1]],[[0,3,2,0],[1,2,3,2],[1,3,0,1],[1,2,2,1]],[[0,2,3,0],[1,2,3,2],[1,3,0,1],[1,2,2,1]],[[0,2,2,0],[1,2,4,2],[1,3,0,1],[1,2,2,1]],[[0,2,2,0],[1,2,3,3],[1,3,0,1],[1,2,2,1]],[[0,3,2,0],[1,2,3,2],[1,3,0,2],[1,1,2,1]],[[0,2,3,0],[1,2,3,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,2,4,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,2,3,3],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,2,3,2],[1,3,0,3],[1,1,2,1]],[[0,2,2,0],[1,2,3,2],[1,3,0,2],[1,1,3,1]],[[0,2,2,0],[1,2,3,2],[1,3,0,2],[1,1,2,2]],[[0,3,2,0],[1,2,3,2],[1,3,0,2],[1,2,1,1]],[[0,2,3,0],[1,2,3,2],[1,3,0,2],[1,2,1,1]],[[0,2,2,0],[1,2,4,2],[1,3,0,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,3],[1,3,0,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,2],[1,3,0,3],[1,2,1,1]],[[0,2,2,0],[1,2,3,2],[1,3,0,2],[1,2,1,2]],[[0,3,2,0],[1,2,3,2],[1,3,0,2],[1,2,2,0]],[[0,2,3,0],[1,2,3,2],[1,3,0,2],[1,2,2,0]],[[0,2,2,0],[1,2,4,2],[1,3,0,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,3],[1,3,0,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,2],[1,3,0,3],[1,2,2,0]],[[0,3,2,0],[1,2,3,2],[1,3,1,0],[1,2,2,1]],[[0,2,3,0],[1,2,3,2],[1,3,1,0],[1,2,2,1]],[[0,2,2,0],[1,2,4,2],[1,3,1,0],[1,2,2,1]],[[0,2,2,0],[1,2,3,3],[1,3,1,0],[1,2,2,1]],[[0,3,2,0],[1,2,3,2],[1,3,1,1],[1,2,2,0]],[[0,2,3,0],[1,2,3,2],[1,3,1,1],[1,2,2,0]],[[0,2,2,0],[1,2,4,2],[1,3,1,1],[1,2,2,0]],[[0,2,2,0],[1,2,3,3],[1,3,1,1],[1,2,2,0]],[[0,3,2,0],[1,2,3,2],[1,3,1,2],[1,1,1,1]],[[0,2,3,0],[1,2,3,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,0],[1,2,4,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,0],[1,2,3,3],[1,3,1,2],[1,1,1,1]],[[0,2,2,0],[1,2,3,2],[1,3,1,3],[1,1,1,1]],[[0,2,2,0],[1,2,3,2],[1,3,1,2],[1,1,1,2]],[[0,3,2,0],[1,2,3,2],[1,3,1,2],[1,1,2,0]],[[0,2,3,0],[1,2,3,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,0],[1,2,4,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,0],[1,2,3,3],[1,3,1,2],[1,1,2,0]],[[0,2,2,0],[1,2,3,2],[1,3,1,3],[1,1,2,0]],[[0,3,2,0],[1,2,3,2],[1,3,1,2],[1,2,0,1]],[[0,2,3,0],[1,2,3,2],[1,3,1,2],[1,2,0,1]],[[0,2,2,0],[1,2,4,2],[1,3,1,2],[1,2,0,1]],[[0,2,2,0],[1,2,3,3],[1,3,1,2],[1,2,0,1]],[[0,2,2,0],[1,2,3,2],[1,3,1,3],[1,2,0,1]],[[0,2,2,0],[1,2,3,2],[1,3,1,2],[1,2,0,2]],[[0,3,2,0],[1,2,3,2],[1,3,1,2],[1,2,1,0]],[[0,2,3,0],[1,2,3,2],[1,3,1,2],[1,2,1,0]],[[0,2,2,0],[1,2,4,2],[1,3,1,2],[1,2,1,0]],[[0,2,2,0],[1,2,3,3],[1,3,1,2],[1,2,1,0]],[[0,2,2,0],[1,2,3,2],[1,3,1,3],[1,2,1,0]],[[0,3,2,0],[1,2,3,2],[1,3,2,0],[1,1,2,1]],[[0,2,3,0],[1,2,3,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,0],[1,2,4,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,0],[1,2,3,3],[1,3,2,0],[1,1,2,1]],[[0,3,2,0],[1,2,3,2],[1,3,2,0],[1,2,1,1]],[[0,2,3,0],[1,2,3,2],[1,3,2,0],[1,2,1,1]],[[0,2,2,0],[1,2,4,2],[1,3,2,0],[1,2,1,1]],[[0,2,2,0],[1,2,3,3],[1,3,2,0],[1,2,1,1]],[[0,3,2,0],[1,2,3,2],[1,3,2,1],[1,1,1,1]],[[0,2,3,0],[1,2,3,2],[1,3,2,1],[1,1,1,1]],[[0,2,2,0],[1,2,4,2],[1,3,2,1],[1,1,1,1]],[[0,2,2,0],[1,2,3,3],[1,3,2,1],[1,1,1,1]],[[0,3,2,0],[1,2,3,2],[1,3,2,1],[1,1,2,0]],[[0,2,3,0],[1,2,3,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,0],[1,2,4,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,0],[1,2,3,3],[1,3,2,1],[1,1,2,0]],[[0,3,2,0],[1,2,3,2],[1,3,2,1],[1,2,0,1]],[[0,2,3,0],[1,2,3,2],[1,3,2,1],[1,2,0,1]],[[0,2,2,0],[1,2,4,2],[1,3,2,1],[1,2,0,1]],[[0,2,2,0],[1,2,3,3],[1,3,2,1],[1,2,0,1]],[[0,3,2,0],[1,2,3,2],[1,3,2,1],[1,2,1,0]],[[0,2,3,0],[1,2,3,2],[1,3,2,1],[1,2,1,0]],[[0,2,2,0],[1,2,4,2],[1,3,2,1],[1,2,1,0]],[[0,2,2,0],[1,2,3,3],[1,3,2,1],[1,2,1,0]],[[0,3,2,0],[1,2,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,3,0],[1,2,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,2,0],[1,2,4,2],[1,3,3,0],[1,1,2,0]],[[0,3,2,0],[1,2,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,3,0],[1,2,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,2,0],[1,2,4,2],[1,3,3,0],[1,2,1,0]],[[0,3,2,0],[1,2,3,2],[1,3,3,1],[1,2,0,0]],[[0,2,3,0],[1,2,3,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,0],[1,2,4,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,0],[1,2,3,3],[1,3,3,1],[1,2,0,0]],[[0,3,2,0],[1,2,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,3,0],[1,2,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[1,2,4,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,3],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[3,0,1,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,1,3],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,1,2],[2,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,1,2],[1,3,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,1,2],[1,2,3,1]],[[0,2,2,0],[1,2,3,2],[2,0,1,2],[1,2,2,2]],[[0,2,3,0],[1,2,3,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,0],[1,2,4,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,0],[1,2,3,3],[2,0,2,2],[0,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,2,3],[0,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,2,2],[0,2,3,1]],[[0,2,2,0],[1,2,3,2],[2,0,2,2],[0,2,2,2]],[[0,3,2,0],[1,2,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,3,0],[1,2,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,0],[1,2,4,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,3],[2,0,2,2],[1,2,1,1]],[[0,2,2,0],[1,2,3,2],[2,0,2,3],[1,2,1,1]],[[0,2,2,0],[1,2,3,2],[2,0,2,2],[1,2,1,2]],[[0,3,2,0],[1,2,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,3,0],[1,2,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,0],[1,2,4,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,3],[2,0,2,2],[1,2,2,0]],[[0,2,2,0],[1,2,3,2],[2,0,2,3],[1,2,2,0]],[[0,3,2,0],[1,2,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,3,0],[1,2,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[1,2,4,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[1,2,3,3],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[3,0,3,0],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,4,0],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,3,0],[2,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,3,0],[1,3,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,3,0],[1,2,3,1]],[[0,2,2,0],[1,2,3,2],[2,0,3,0],[1,2,2,2]],[[0,3,2,0],[1,2,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,3,0],[1,2,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[1,2,4,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[1,2,3,3],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[1,2,3,2],[2,0,4,1],[1,2,1,1]],[[0,3,2,0],[1,2,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,3,0],[1,2,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[1,2,4,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[1,2,3,3],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[1,2,3,2],[3,0,3,1],[1,2,2,0]],[[0,2,2,0],[1,2,3,2],[2,0,4,1],[1,2,2,0]],[[0,2,2,0],[1,2,3,2],[2,0,3,1],[2,2,2,0]],[[0,2,2,0],[1,2,3,2],[2,0,3,1],[1,3,2,0]],[[0,2,2,0],[1,2,3,2],[2,0,3,1],[1,2,3,0]],[[0,2,3,0],[1,2,3,2],[2,0,3,2],[0,1,2,1]],[[0,2,2,0],[1,2,4,2],[2,0,3,2],[0,1,2,1]],[[0,2,2,0],[1,2,3,3],[2,0,3,2],[0,1,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,3,3],[0,1,2,1]],[[0,2,2,0],[1,2,3,2],[2,0,3,2],[0,1,2,2]],[[0,2,3,0],[1,2,3,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,0],[1,2,4,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,0],[1,2,3,3],[2,0,3,2],[0,2,1,1]],[[0,2,2,0],[1,2,3,2],[2,0,3,3],[0,2,1,1]],[[0,2,2,0],[1,2,3,2],[2,0,3,2],[0,2,1,2]],[[0,2,3,0],[1,2,3,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,0],[1,2,4,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,0],[1,2,3,3],[2,0,3,2],[0,2,2,0]],[[0,2,2,0],[1,2,3,2],[2,0,3,3],[0,2,2,0]],[[1,2,2,1],[1,2,0,2],[2,1,1,2],[1,2,2,2]],[[1,2,2,1],[1,2,0,2],[2,1,1,2],[1,2,3,1]],[[0,3,2,0],[1,2,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,3,0],[1,2,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[1,2,4,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,3],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[3,1,0,2],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,0,3],[1,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,0,2],[2,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,0,2],[1,3,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,0,2],[1,2,3,1]],[[0,2,2,0],[1,2,3,2],[2,1,0,2],[1,2,2,2]],[[0,3,2,0],[1,2,3,2],[2,1,1,2],[0,2,2,1]],[[0,2,3,0],[1,2,3,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,0],[1,2,4,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,0],[1,2,3,3],[2,1,1,2],[0,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,1,3],[0,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,1,2],[0,3,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,1,2],[0,2,3,1]],[[0,2,2,0],[1,2,3,2],[2,1,1,2],[0,2,2,2]],[[0,3,2,0],[1,2,3,2],[2,1,2,2],[0,2,1,1]],[[0,2,3,0],[1,2,3,2],[2,1,2,2],[0,2,1,1]],[[0,2,2,0],[1,2,4,2],[2,1,2,2],[0,2,1,1]],[[0,2,2,0],[1,2,3,3],[2,1,2,2],[0,2,1,1]],[[0,2,2,0],[1,2,3,2],[2,1,2,3],[0,2,1,1]],[[0,2,2,0],[1,2,3,2],[2,1,2,2],[0,2,1,2]],[[0,3,2,0],[1,2,3,2],[2,1,2,2],[0,2,2,0]],[[0,2,3,0],[1,2,3,2],[2,1,2,2],[0,2,2,0]],[[0,2,2,0],[1,2,4,2],[2,1,2,2],[0,2,2,0]],[[0,2,2,0],[1,2,3,3],[2,1,2,2],[0,2,2,0]],[[0,2,2,0],[1,2,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,1],[1,2,0,2],[2,1,1,2],[1,3,2,1]],[[1,2,2,1],[1,2,0,2],[2,1,1,2],[2,2,2,1]],[[1,2,2,1],[1,2,0,2],[2,1,1,3],[1,2,2,1]],[[1,2,2,1],[1,2,0,2],[3,1,1,2],[1,2,2,1]],[[1,2,2,1],[1,2,0,3],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[1,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[1,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[1,2,0,2],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[1,2,0,2],[2,1,1,2],[1,2,2,1]],[[0,3,2,0],[1,2,3,2],[2,1,3,0],[0,2,2,1]],[[0,2,3,0],[1,2,3,2],[2,1,3,0],[0,2,2,1]],[[0,2,2,0],[1,2,4,2],[2,1,3,0],[0,2,2,1]],[[0,2,2,0],[1,2,3,3],[2,1,3,0],[0,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,4,0],[0,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,3,0],[0,3,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,3,0],[0,2,3,1]],[[0,2,2,0],[1,2,3,2],[2,1,3,0],[0,2,2,2]],[[0,3,2,0],[1,2,3,2],[2,1,3,1],[0,2,1,1]],[[0,2,3,0],[1,2,3,2],[2,1,3,1],[0,2,1,1]],[[0,2,2,0],[1,2,4,2],[2,1,3,1],[0,2,1,1]],[[0,2,2,0],[1,2,3,3],[2,1,3,1],[0,2,1,1]],[[0,2,2,0],[1,2,3,2],[2,1,4,1],[0,2,1,1]],[[0,3,2,0],[1,2,3,2],[2,1,3,1],[0,2,2,0]],[[0,2,3,0],[1,2,3,2],[2,1,3,1],[0,2,2,0]],[[0,2,2,0],[1,2,4,2],[2,1,3,1],[0,2,2,0]],[[0,2,2,0],[1,2,3,3],[2,1,3,1],[0,2,2,0]],[[0,2,2,0],[1,2,3,2],[2,1,4,1],[0,2,2,0]],[[0,2,2,0],[1,2,3,2],[2,1,3,1],[0,3,2,0]],[[0,2,2,0],[1,2,3,2],[2,1,3,1],[0,2,3,0]],[[0,2,3,0],[1,2,3,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,0],[1,2,4,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,0],[1,2,3,3],[2,1,3,2],[0,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,3,3],[0,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,1,3,2],[0,0,2,2]],[[0,2,3,0],[1,2,3,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,0],[1,2,4,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,0],[1,2,3,3],[2,1,3,2],[0,1,1,1]],[[0,2,2,0],[1,2,3,2],[2,1,3,3],[0,1,1,1]],[[0,2,2,0],[1,2,3,2],[2,1,3,2],[0,1,1,2]],[[0,2,3,0],[1,2,3,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,0],[1,2,4,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,0],[1,2,3,3],[2,1,3,2],[0,1,2,0]],[[0,2,2,0],[1,2,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[1,2,0,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[1,2,0,2],[2,0,3,2],[1,3,2,0]],[[1,2,2,1],[1,2,0,2],[2,0,3,2],[2,2,2,0]],[[1,2,2,1],[1,2,0,2],[2,0,3,3],[1,2,2,0]],[[1,2,2,1],[1,2,0,2],[2,0,4,2],[1,2,2,0]],[[1,2,2,1],[1,2,0,2],[3,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,2,0,3],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,2,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,3,0],[1,2,3,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,0],[1,2,4,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,0],[1,2,3,3],[2,1,3,2],[1,0,1,1]],[[0,2,2,0],[1,2,3,2],[2,1,3,3],[1,0,1,1]],[[0,2,2,0],[1,2,3,2],[2,1,3,2],[1,0,1,2]],[[0,2,3,0],[1,2,3,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,0],[1,2,4,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,0],[1,2,3,3],[2,1,3,2],[1,0,2,0]],[[0,2,2,0],[1,2,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,3,1],[1,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,2,0,2],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[1,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,2,0,2],[2,0,3,2],[1,2,1,2]],[[1,2,2,1],[1,2,0,2],[2,0,3,3],[1,2,1,1]],[[1,2,2,1],[1,2,0,2],[2,0,4,2],[1,2,1,1]],[[1,2,2,1],[1,2,0,3],[2,0,3,2],[1,2,1,1]],[[1,2,2,2],[1,2,0,2],[2,0,3,2],[1,2,1,1]],[[1,2,3,1],[1,2,0,2],[2,0,3,2],[1,2,1,1]],[[1,3,2,1],[1,2,0,2],[2,0,3,2],[1,2,1,1]],[[2,2,2,1],[1,2,0,2],[2,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,2,0,2],[2,0,3,1],[1,2,2,2]],[[1,2,2,1],[1,2,0,2],[2,0,3,1],[1,2,3,1]],[[1,2,2,1],[1,2,0,2],[2,0,3,1],[1,3,2,1]],[[1,2,2,1],[1,2,0,2],[2,0,3,1],[2,2,2,1]],[[1,2,2,1],[1,2,0,2],[2,0,4,1],[1,2,2,1]],[[1,2,2,1],[1,2,0,2],[3,0,3,1],[1,2,2,1]],[[1,2,2,1],[1,2,0,2],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[1,2,0,2],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[1,2,0,2],[2,0,2,2],[1,3,2,1]],[[1,2,2,1],[1,2,0,2],[2,0,2,2],[2,2,2,1]],[[1,2,2,1],[1,2,0,2],[2,0,2,3],[1,2,2,1]],[[1,2,2,1],[1,2,0,2],[3,0,2,2],[1,2,2,1]],[[1,2,2,1],[1,2,0,3],[2,0,2,2],[1,2,2,1]],[[1,2,2,2],[1,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,2,3,1],[1,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,3,2,1],[1,2,0,2],[2,0,2,2],[1,2,2,1]],[[2,2,2,1],[1,2,0,2],[2,0,2,2],[1,2,2,1]],[[0,3,2,0],[1,2,3,2],[2,2,0,2],[0,2,2,1]],[[0,2,3,0],[1,2,3,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[1,2,4,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[1,2,3,3],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,0,3],[0,2,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,0,2],[0,3,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,0,2],[0,2,3,1]],[[0,2,2,0],[1,2,3,2],[2,2,0,2],[0,2,2,2]],[[0,3,2,0],[1,2,3,2],[2,2,1,2],[0,1,2,1]],[[0,2,3,0],[1,2,3,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,0],[1,2,4,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,0],[1,2,3,3],[2,2,1,2],[0,1,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,1,3],[0,1,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,1,2],[0,1,3,1]],[[0,2,2,0],[1,2,3,2],[2,2,1,2],[0,1,2,2]],[[0,3,2,0],[1,2,3,2],[2,2,1,2],[1,0,2,1]],[[0,2,3,0],[1,2,3,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,0],[1,2,4,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,0],[1,2,3,3],[2,2,1,2],[1,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,1,3],[1,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,1,2],[1,0,3,1]],[[0,2,2,0],[1,2,3,2],[2,2,1,2],[1,0,2,2]],[[0,3,2,0],[1,2,3,2],[2,2,2,2],[0,0,2,1]],[[0,2,3,0],[1,2,3,2],[2,2,2,2],[0,0,2,1]],[[0,2,2,0],[1,2,4,2],[2,2,2,2],[0,0,2,1]],[[0,2,2,0],[1,2,3,3],[2,2,2,2],[0,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,2,3],[0,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,2,2],[0,0,2,2]],[[0,3,2,0],[1,2,3,2],[2,2,2,2],[0,1,1,1]],[[0,2,3,0],[1,2,3,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,0],[1,2,4,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,0],[1,2,3,3],[2,2,2,2],[0,1,1,1]],[[0,2,2,0],[1,2,3,2],[2,2,2,3],[0,1,1,1]],[[0,2,2,0],[1,2,3,2],[2,2,2,2],[0,1,1,2]],[[0,3,2,0],[1,2,3,2],[2,2,2,2],[0,1,2,0]],[[0,2,3,0],[1,2,3,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,0],[1,2,4,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,0],[1,2,3,3],[2,2,2,2],[0,1,2,0]],[[0,2,2,0],[1,2,3,2],[2,2,2,3],[0,1,2,0]],[[0,3,2,0],[1,2,3,2],[2,2,2,2],[0,2,0,1]],[[0,2,3,0],[1,2,3,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,0],[1,2,4,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,0],[1,2,3,3],[2,2,2,2],[0,2,0,1]],[[0,2,2,0],[1,2,3,2],[2,2,2,3],[0,2,0,1]],[[0,2,2,0],[1,2,3,2],[2,2,2,2],[0,2,0,2]],[[0,3,2,0],[1,2,3,2],[2,2,2,2],[0,2,1,0]],[[0,2,3,0],[1,2,3,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,0],[1,2,4,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,0],[1,2,3,3],[2,2,2,2],[0,2,1,0]],[[0,2,2,0],[1,2,3,2],[2,2,2,3],[0,2,1,0]],[[0,3,2,0],[1,2,3,2],[2,2,2,2],[1,0,1,1]],[[0,2,3,0],[1,2,3,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,0],[1,2,4,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,0],[1,2,3,3],[2,2,2,2],[1,0,1,1]],[[0,2,2,0],[1,2,3,2],[2,2,2,3],[1,0,1,1]],[[0,2,2,0],[1,2,3,2],[2,2,2,2],[1,0,1,2]],[[0,3,2,0],[1,2,3,2],[2,2,2,2],[1,0,2,0]],[[0,2,3,0],[1,2,3,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,0],[1,2,4,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,0],[1,2,3,3],[2,2,2,2],[1,0,2,0]],[[0,2,2,0],[1,2,3,2],[2,2,2,3],[1,0,2,0]],[[0,3,2,0],[1,2,3,2],[2,2,2,2],[1,1,0,1]],[[0,2,3,0],[1,2,3,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,0],[1,2,4,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,0],[1,2,3,3],[2,2,2,2],[1,1,0,1]],[[0,2,2,0],[1,2,3,2],[2,2,2,3],[1,1,0,1]],[[0,2,2,0],[1,2,3,2],[2,2,2,2],[1,1,0,2]],[[0,3,2,0],[1,2,3,2],[2,2,2,2],[1,1,1,0]],[[0,2,3,0],[1,2,3,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,0],[1,2,4,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,0],[1,2,3,3],[2,2,2,2],[1,1,1,0]],[[0,2,2,0],[1,2,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,1],[1,2,0,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,2,0,2],[1,3,4,2],[1,1,1,0]],[[1,2,2,1],[1,2,0,2],[1,4,3,2],[1,1,1,0]],[[1,2,2,1],[1,2,0,3],[1,3,3,2],[1,1,1,0]],[[1,2,2,2],[1,2,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,3,1],[1,2,0,2],[1,3,3,2],[1,1,1,0]],[[1,3,2,1],[1,2,0,2],[1,3,3,2],[1,1,1,0]],[[2,2,2,1],[1,2,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[1,2,0,2],[1,3,3,2],[1,1,0,2]],[[1,2,2,1],[1,2,0,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,2,0,2],[1,3,4,2],[1,1,0,1]],[[1,2,2,1],[1,2,0,2],[1,4,3,2],[1,1,0,1]],[[1,2,2,1],[1,2,0,3],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[1,2,0,2],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[1,2,0,2],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[1,2,0,2],[1,3,3,2],[1,1,0,1]],[[2,2,2,1],[1,2,0,2],[1,3,3,2],[1,1,0,1]],[[0,3,2,0],[1,2,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,3,0],[1,2,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,0],[1,2,4,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,0],[1,2,3,3],[2,2,3,0],[0,1,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,4,0],[0,1,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,3,0],[0,1,3,1]],[[0,2,2,0],[1,2,3,2],[2,2,3,0],[0,1,2,2]],[[0,3,2,0],[1,2,3,2],[2,2,3,0],[0,2,1,1]],[[0,2,3,0],[1,2,3,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,0],[1,2,4,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,0],[1,2,3,3],[2,2,3,0],[0,2,1,1]],[[0,2,2,0],[1,2,3,2],[2,2,4,0],[0,2,1,1]],[[0,3,2,0],[1,2,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,3,0],[1,2,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,0],[1,2,4,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,0],[1,2,3,3],[2,2,3,0],[1,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,4,0],[1,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,3,0],[1,0,3,1]],[[0,2,2,0],[1,2,3,2],[2,2,3,0],[1,0,2,2]],[[0,3,2,0],[1,2,3,2],[2,2,3,0],[1,1,1,1]],[[0,2,3,0],[1,2,3,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,0],[1,2,4,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,0],[1,2,3,3],[2,2,3,0],[1,1,1,1]],[[0,2,2,0],[1,2,3,2],[2,2,4,0],[1,1,1,1]],[[1,2,2,1],[1,2,0,2],[1,3,3,2],[1,0,3,0]],[[1,2,2,1],[1,2,0,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,1],[1,2,0,2],[1,3,4,2],[1,0,2,0]],[[1,2,2,1],[1,2,0,2],[1,4,3,2],[1,0,2,0]],[[0,3,2,0],[1,2,3,2],[2,2,3,1],[0,0,2,1]],[[0,2,3,0],[1,2,3,2],[2,2,3,1],[0,0,2,1]],[[0,2,2,0],[1,2,4,2],[2,2,3,1],[0,0,2,1]],[[0,2,2,0],[1,2,3,3],[2,2,3,1],[0,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,2,4,1],[0,0,2,1]],[[0,3,2,0],[1,2,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,3,0],[1,2,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,0],[1,2,4,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,0],[1,2,3,3],[2,2,3,1],[0,1,1,1]],[[0,2,2,0],[1,2,3,2],[2,2,4,1],[0,1,1,1]],[[0,3,2,0],[1,2,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,3,0],[1,2,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,0],[1,2,4,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,0],[1,2,3,3],[2,2,3,1],[0,1,2,0]],[[0,2,2,0],[1,2,3,2],[2,2,4,1],[0,1,2,0]],[[0,2,2,0],[1,2,3,2],[2,2,3,1],[0,1,3,0]],[[0,3,2,0],[1,2,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,3,0],[1,2,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,0],[1,2,4,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,0],[1,2,3,3],[2,2,3,1],[0,2,0,1]],[[0,2,2,0],[1,2,3,2],[2,2,4,1],[0,2,0,1]],[[0,3,2,0],[1,2,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,3,0],[1,2,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,0],[1,2,4,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,0],[1,2,3,3],[2,2,3,1],[0,2,1,0]],[[0,2,2,0],[1,2,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,2,1],[1,2,0,3],[1,3,3,2],[1,0,2,0]],[[1,2,2,2],[1,2,0,2],[1,3,3,2],[1,0,2,0]],[[1,2,3,1],[1,2,0,2],[1,3,3,2],[1,0,2,0]],[[1,3,2,1],[1,2,0,2],[1,3,3,2],[1,0,2,0]],[[2,2,2,1],[1,2,0,2],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,2,0,2],[1,3,3,2],[1,0,1,2]],[[1,2,2,1],[1,2,0,2],[1,3,3,3],[1,0,1,1]],[[1,2,2,1],[1,2,0,2],[1,3,4,2],[1,0,1,1]],[[0,3,2,0],[1,2,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,3,0],[1,2,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,0],[1,2,4,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,0],[1,2,3,3],[2,2,3,1],[1,0,1,1]],[[0,2,2,0],[1,2,3,2],[2,2,4,1],[1,0,1,1]],[[0,3,2,0],[1,2,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,3,0],[1,2,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,0],[1,2,4,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,0],[1,2,3,3],[2,2,3,1],[1,0,2,0]],[[0,2,2,0],[1,2,3,2],[2,2,4,1],[1,0,2,0]],[[0,2,2,0],[1,2,3,2],[2,2,3,1],[1,0,3,0]],[[0,3,2,0],[1,2,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,3,0],[1,2,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,0],[1,2,4,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,0],[1,2,3,3],[2,2,3,1],[1,1,0,1]],[[0,2,2,0],[1,2,3,2],[2,2,4,1],[1,1,0,1]],[[0,3,2,0],[1,2,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,3,0],[1,2,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,0],[1,2,4,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,0],[1,2,3,3],[2,2,3,1],[1,1,1,0]],[[0,2,2,0],[1,2,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,2,1],[1,2,0,2],[1,4,3,2],[1,0,1,1]],[[1,2,2,1],[1,2,0,3],[1,3,3,2],[1,0,1,1]],[[1,2,2,2],[1,2,0,2],[1,3,3,2],[1,0,1,1]],[[1,2,3,1],[1,2,0,2],[1,3,3,2],[1,0,1,1]],[[1,3,2,1],[1,2,0,2],[1,3,3,2],[1,0,1,1]],[[2,2,2,1],[1,2,0,2],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[1,2,0,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,2,0,2],[1,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,2,0,2],[1,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,2,0,2],[1,4,3,2],[0,2,1,0]],[[1,2,2,1],[1,2,0,3],[1,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,2,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,2,0,2],[1,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,2,0,2],[1,3,3,2],[0,2,1,0]],[[0,3,2,0],[1,2,3,2],[2,2,3,2],[0,1,0,1]],[[0,2,3,0],[1,2,3,2],[2,2,3,2],[0,1,0,1]],[[0,2,2,0],[1,2,4,2],[2,2,3,2],[0,1,0,1]],[[0,2,2,0],[1,2,3,3],[2,2,3,2],[0,1,0,1]],[[0,2,2,0],[1,2,3,2],[2,2,3,3],[0,1,0,1]],[[2,2,2,1],[1,2,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,2,0,2],[1,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,2,0,2],[1,3,3,2],[0,3,0,1]],[[1,2,2,1],[1,2,0,2],[1,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,2,0,2],[1,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,2,0,2],[1,4,3,2],[0,2,0,1]],[[1,2,2,1],[1,2,0,3],[1,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,2,0,2],[1,3,3,2],[0,2,0,1]],[[1,2,3,1],[1,2,0,2],[1,3,3,2],[0,2,0,1]],[[1,3,2,1],[1,2,0,2],[1,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,2,0,2],[1,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,2,0,2],[1,3,3,2],[0,1,3,0]],[[1,2,2,1],[1,2,0,2],[1,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,2,0,2],[1,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,2,0,2],[1,4,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,0,3],[1,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,2,0,2],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,2,0,2],[1,3,3,2],[0,1,2,0]],[[1,3,2,1],[1,2,0,2],[1,3,3,2],[0,1,2,0]],[[2,2,2,1],[1,2,0,2],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,2,0,2],[1,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,2,0,2],[1,3,3,3],[0,1,1,1]],[[0,3,2,0],[1,2,3,2],[2,2,3,2],[1,0,0,1]],[[0,2,3,0],[1,2,3,2],[2,2,3,2],[1,0,0,1]],[[0,2,2,0],[1,2,4,2],[2,2,3,2],[1,0,0,1]],[[0,2,2,0],[1,2,3,3],[2,2,3,2],[1,0,0,1]],[[0,2,2,0],[1,2,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[1,2,0,2],[1,3,4,2],[0,1,1,1]],[[1,2,2,1],[1,2,0,2],[1,4,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,0,3],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,2,0,2],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,2,0,2],[1,3,3,2],[0,1,1,1]],[[1,3,2,1],[1,2,0,2],[1,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,2,0,2],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,2,0,2],[1,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,2,0,2],[1,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,2,0,2],[1,3,4,2],[0,0,2,1]],[[1,2,2,1],[1,2,0,3],[1,3,3,2],[0,0,2,1]],[[1,2,2,2],[1,2,0,2],[1,3,3,2],[0,0,2,1]],[[1,2,3,1],[1,2,0,2],[1,3,3,2],[0,0,2,1]],[[1,3,2,1],[1,2,0,2],[1,3,3,2],[0,0,2,1]],[[2,2,2,1],[1,2,0,2],[1,3,3,2],[0,0,2,1]],[[1,2,2,1],[1,2,0,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,1],[1,2,0,2],[1,3,3,1],[1,0,3,1]],[[1,2,2,1],[1,2,0,2],[1,3,4,1],[1,0,2,1]],[[1,2,2,1],[1,2,0,2],[1,4,3,1],[1,0,2,1]],[[1,2,2,1],[1,2,0,2],[1,3,3,1],[0,3,1,1]],[[1,2,2,1],[1,2,0,2],[1,3,4,1],[0,2,1,1]],[[1,2,2,1],[1,2,0,2],[1,4,3,1],[0,2,1,1]],[[1,2,2,1],[1,2,0,2],[1,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,2,0,2],[1,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,2,0,2],[1,3,4,1],[0,1,2,1]],[[1,2,2,1],[1,2,0,2],[1,4,3,1],[0,1,2,1]],[[1,2,2,1],[1,2,0,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[1,2,0,2],[1,3,2,2],[1,0,3,1]],[[1,2,2,1],[1,2,0,2],[1,3,2,3],[1,0,2,1]],[[1,2,2,1],[1,2,0,3],[1,3,2,2],[1,0,2,1]],[[1,2,2,2],[1,2,0,2],[1,3,2,2],[1,0,2,1]],[[1,2,3,1],[1,2,0,2],[1,3,2,2],[1,0,2,1]],[[1,3,2,1],[1,2,0,2],[1,3,2,2],[1,0,2,1]],[[2,2,2,1],[1,2,0,2],[1,3,2,2],[1,0,2,1]],[[1,2,2,1],[1,2,0,2],[1,3,2,2],[0,2,3,0]],[[1,2,2,1],[1,2,0,2],[1,3,2,2],[0,3,2,0]],[[1,2,2,1],[1,2,0,2],[1,4,2,2],[0,2,2,0]],[[1,2,2,1],[1,2,0,2],[1,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,2,0,2],[1,3,2,2],[0,1,3,1]],[[1,2,2,1],[1,2,0,2],[1,3,2,3],[0,1,2,1]],[[1,2,2,1],[1,2,0,3],[1,3,2,2],[0,1,2,1]],[[1,2,2,2],[1,2,0,2],[1,3,2,2],[0,1,2,1]],[[1,2,3,1],[1,2,0,2],[1,3,2,2],[0,1,2,1]],[[1,3,2,1],[1,2,0,2],[1,3,2,2],[0,1,2,1]],[[2,2,2,1],[1,2,0,2],[1,3,2,2],[0,1,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,0,1],[0,2,2,1]],[[0,2,3,0],[1,2,3,2],[2,3,0,1],[0,2,2,1]],[[0,2,2,0],[1,2,4,2],[2,3,0,1],[0,2,2,1]],[[0,2,2,0],[1,2,3,3],[2,3,0,1],[0,2,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,0,1],[1,1,2,1]],[[0,2,3,0],[1,2,3,2],[2,3,0,1],[1,1,2,1]],[[0,2,2,0],[1,2,4,2],[2,3,0,1],[1,1,2,1]],[[0,2,2,0],[1,2,3,3],[2,3,0,1],[1,1,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,0,2],[0,1,2,1]],[[0,2,3,0],[1,2,3,2],[2,3,0,2],[0,1,2,1]],[[0,2,2,0],[1,2,4,2],[2,3,0,2],[0,1,2,1]],[[0,2,2,0],[1,2,3,3],[2,3,0,2],[0,1,2,1]],[[0,2,2,0],[1,2,3,2],[2,3,0,3],[0,1,2,1]],[[0,2,2,0],[1,2,3,2],[2,3,0,2],[0,1,3,1]],[[0,2,2,0],[1,2,3,2],[2,3,0,2],[0,1,2,2]],[[0,3,2,0],[1,2,3,2],[2,3,0,2],[0,2,1,1]],[[0,2,3,0],[1,2,3,2],[2,3,0,2],[0,2,1,1]],[[0,2,2,0],[1,2,4,2],[2,3,0,2],[0,2,1,1]],[[0,2,2,0],[1,2,3,3],[2,3,0,2],[0,2,1,1]],[[0,2,2,0],[1,2,3,2],[2,3,0,3],[0,2,1,1]],[[0,2,2,0],[1,2,3,2],[2,3,0,2],[0,2,1,2]],[[0,3,2,0],[1,2,3,2],[2,3,0,2],[0,2,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,0,2],[0,2,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,0,2],[0,2,2,0]],[[0,2,2,0],[1,2,3,3],[2,3,0,2],[0,2,2,0]],[[0,2,2,0],[1,2,3,2],[2,3,0,3],[0,2,2,0]],[[0,3,2,0],[1,2,3,2],[2,3,0,2],[1,0,2,1]],[[0,2,3,0],[1,2,3,2],[2,3,0,2],[1,0,2,1]],[[0,2,2,0],[1,2,4,2],[2,3,0,2],[1,0,2,1]],[[0,2,2,0],[1,2,3,3],[2,3,0,2],[1,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,3,0,3],[1,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,3,0,2],[1,0,3,1]],[[0,2,2,0],[1,2,3,2],[2,3,0,2],[1,0,2,2]],[[0,3,2,0],[1,2,3,2],[2,3,0,2],[1,1,1,1]],[[0,2,3,0],[1,2,3,2],[2,3,0,2],[1,1,1,1]],[[0,2,2,0],[1,2,4,2],[2,3,0,2],[1,1,1,1]],[[0,2,2,0],[1,2,3,3],[2,3,0,2],[1,1,1,1]],[[0,2,2,0],[1,2,3,2],[2,3,0,3],[1,1,1,1]],[[0,2,2,0],[1,2,3,2],[2,3,0,2],[1,1,1,2]],[[0,3,2,0],[1,2,3,2],[2,3,0,2],[1,1,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,0,2],[1,1,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,0,2],[1,1,2,0]],[[0,2,2,0],[1,2,3,3],[2,3,0,2],[1,1,2,0]],[[0,2,2,0],[1,2,3,2],[2,3,0,3],[1,1,2,0]],[[1,2,2,1],[1,2,0,2],[1,3,2,1],[0,2,2,2]],[[1,2,2,1],[1,2,0,2],[1,3,2,1],[0,2,3,1]],[[1,2,2,1],[1,2,0,2],[1,3,2,1],[0,3,2,1]],[[1,2,2,1],[1,2,0,2],[1,4,2,1],[0,2,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,1,0],[0,2,2,1]],[[0,2,3,0],[1,2,3,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,0],[1,2,4,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,0],[1,2,3,3],[2,3,1,0],[0,2,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,1,0],[1,1,2,1]],[[0,2,3,0],[1,2,3,2],[2,3,1,0],[1,1,2,1]],[[0,2,2,0],[1,2,4,2],[2,3,1,0],[1,1,2,1]],[[0,2,2,0],[1,2,3,3],[2,3,1,0],[1,1,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,1,1],[0,2,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,1,1],[0,2,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,1,1],[0,2,2,0]],[[0,2,2,0],[1,2,3,3],[2,3,1,1],[0,2,2,0]],[[0,3,2,0],[1,2,3,2],[2,3,1,1],[1,1,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,1,1],[1,1,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,1,1],[1,1,2,0]],[[0,2,2,0],[1,2,3,3],[2,3,1,1],[1,1,2,0]],[[0,3,2,0],[1,2,3,2],[2,3,1,2],[0,1,1,1]],[[0,2,3,0],[1,2,3,2],[2,3,1,2],[0,1,1,1]],[[0,2,2,0],[1,2,4,2],[2,3,1,2],[0,1,1,1]],[[0,2,2,0],[1,2,3,3],[2,3,1,2],[0,1,1,1]],[[0,2,2,0],[1,2,3,2],[2,3,1,3],[0,1,1,1]],[[0,2,2,0],[1,2,3,2],[2,3,1,2],[0,1,1,2]],[[0,3,2,0],[1,2,3,2],[2,3,1,2],[0,1,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,1,2],[0,1,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,1,2],[0,1,2,0]],[[0,2,2,0],[1,2,3,3],[2,3,1,2],[0,1,2,0]],[[0,2,2,0],[1,2,3,2],[2,3,1,3],[0,1,2,0]],[[0,3,2,0],[1,2,3,2],[2,3,1,2],[0,2,0,1]],[[0,2,3,0],[1,2,3,2],[2,3,1,2],[0,2,0,1]],[[0,2,2,0],[1,2,4,2],[2,3,1,2],[0,2,0,1]],[[0,2,2,0],[1,2,3,3],[2,3,1,2],[0,2,0,1]],[[0,2,2,0],[1,2,3,2],[2,3,1,3],[0,2,0,1]],[[0,2,2,0],[1,2,3,2],[2,3,1,2],[0,2,0,2]],[[0,3,2,0],[1,2,3,2],[2,3,1,2],[0,2,1,0]],[[0,2,3,0],[1,2,3,2],[2,3,1,2],[0,2,1,0]],[[0,2,2,0],[1,2,4,2],[2,3,1,2],[0,2,1,0]],[[0,2,2,0],[1,2,3,3],[2,3,1,2],[0,2,1,0]],[[0,2,2,0],[1,2,3,2],[2,3,1,3],[0,2,1,0]],[[1,2,2,1],[1,2,0,2],[1,3,1,2],[0,2,2,2]],[[1,2,2,1],[1,2,0,2],[1,3,1,2],[0,2,3,1]],[[1,2,2,1],[1,2,0,2],[1,3,1,2],[0,3,2,1]],[[1,2,2,1],[1,2,0,2],[1,3,1,3],[0,2,2,1]],[[1,2,2,1],[1,2,0,2],[1,4,1,2],[0,2,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,1,2],[1,0,1,1]],[[0,2,3,0],[1,2,3,2],[2,3,1,2],[1,0,1,1]],[[0,2,2,0],[1,2,4,2],[2,3,1,2],[1,0,1,1]],[[0,2,2,0],[1,2,3,3],[2,3,1,2],[1,0,1,1]],[[0,2,2,0],[1,2,3,2],[2,3,1,3],[1,0,1,1]],[[0,2,2,0],[1,2,3,2],[2,3,1,2],[1,0,1,2]],[[0,3,2,0],[1,2,3,2],[2,3,1,2],[1,0,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,1,2],[1,0,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,1,2],[1,0,2,0]],[[0,2,2,0],[1,2,3,3],[2,3,1,2],[1,0,2,0]],[[0,2,2,0],[1,2,3,2],[2,3,1,3],[1,0,2,0]],[[0,3,2,0],[1,2,3,2],[2,3,1,2],[1,1,0,1]],[[0,2,3,0],[1,2,3,2],[2,3,1,2],[1,1,0,1]],[[0,2,2,0],[1,2,4,2],[2,3,1,2],[1,1,0,1]],[[0,2,2,0],[1,2,3,3],[2,3,1,2],[1,1,0,1]],[[0,2,2,0],[1,2,3,2],[2,3,1,3],[1,1,0,1]],[[0,2,2,0],[1,2,3,2],[2,3,1,2],[1,1,0,2]],[[0,3,2,0],[1,2,3,2],[2,3,1,2],[1,1,1,0]],[[0,2,3,0],[1,2,3,2],[2,3,1,2],[1,1,1,0]],[[0,2,2,0],[1,2,4,2],[2,3,1,2],[1,1,1,0]],[[0,2,2,0],[1,2,3,3],[2,3,1,2],[1,1,1,0]],[[0,2,2,0],[1,2,3,2],[2,3,1,3],[1,1,1,0]],[[1,2,2,1],[1,2,0,3],[1,3,1,2],[0,2,2,1]],[[1,2,2,2],[1,2,0,2],[1,3,1,2],[0,2,2,1]],[[1,2,3,1],[1,2,0,2],[1,3,1,2],[0,2,2,1]],[[1,3,2,1],[1,2,0,2],[1,3,1,2],[0,2,2,1]],[[2,2,2,1],[1,2,0,2],[1,3,1,2],[0,2,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,1,2],[1,2,0,0]],[[0,2,3,0],[1,2,3,2],[2,3,1,2],[1,2,0,0]],[[0,2,2,0],[1,2,4,2],[2,3,1,2],[1,2,0,0]],[[0,2,2,0],[1,2,3,3],[2,3,1,2],[1,2,0,0]],[[0,3,2,0],[1,2,3,2],[2,3,2,0],[0,1,2,1]],[[0,2,3,0],[1,2,3,2],[2,3,2,0],[0,1,2,1]],[[0,2,2,0],[1,2,4,2],[2,3,2,0],[0,1,2,1]],[[0,2,2,0],[1,2,3,3],[2,3,2,0],[0,1,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,2,0],[0,2,1,1]],[[0,2,3,0],[1,2,3,2],[2,3,2,0],[0,2,1,1]],[[0,2,2,0],[1,2,4,2],[2,3,2,0],[0,2,1,1]],[[0,2,2,0],[1,2,3,3],[2,3,2,0],[0,2,1,1]],[[0,3,2,0],[1,2,3,2],[2,3,2,0],[1,0,2,1]],[[0,2,3,0],[1,2,3,2],[2,3,2,0],[1,0,2,1]],[[0,2,2,0],[1,2,4,2],[2,3,2,0],[1,0,2,1]],[[0,2,2,0],[1,2,3,3],[2,3,2,0],[1,0,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,2,0],[1,1,1,1]],[[0,2,3,0],[1,2,3,2],[2,3,2,0],[1,1,1,1]],[[0,2,2,0],[1,2,4,2],[2,3,2,0],[1,1,1,1]],[[0,2,2,0],[1,2,3,3],[2,3,2,0],[1,1,1,1]],[[0,3,2,0],[1,2,3,2],[2,3,2,0],[1,2,0,1]],[[0,2,3,0],[1,2,3,2],[2,3,2,0],[1,2,0,1]],[[0,2,2,0],[1,2,4,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[1,2,0,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,2,0,2],[1,2,3,2],[0,3,2,0]],[[1,2,2,1],[1,2,0,2],[1,2,3,3],[0,2,2,0]],[[1,2,2,1],[1,2,0,2],[1,2,4,2],[0,2,2,0]],[[1,2,2,1],[1,2,0,3],[1,2,3,2],[0,2,2,0]],[[1,2,2,2],[1,2,0,2],[1,2,3,2],[0,2,2,0]],[[1,2,3,1],[1,2,0,2],[1,2,3,2],[0,2,2,0]],[[1,3,2,1],[1,2,0,2],[1,2,3,2],[0,2,2,0]],[[2,2,2,1],[1,2,0,2],[1,2,3,2],[0,2,2,0]],[[0,3,2,0],[1,2,3,2],[2,3,2,1],[0,1,1,1]],[[0,2,3,0],[1,2,3,2],[2,3,2,1],[0,1,1,1]],[[0,2,2,0],[1,2,4,2],[2,3,2,1],[0,1,1,1]],[[0,2,2,0],[1,2,3,3],[2,3,2,1],[0,1,1,1]],[[0,3,2,0],[1,2,3,2],[2,3,2,1],[0,1,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,2,1],[0,1,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,2,1],[0,1,2,0]],[[0,2,2,0],[1,2,3,3],[2,3,2,1],[0,1,2,0]],[[0,3,2,0],[1,2,3,2],[2,3,2,1],[0,2,0,1]],[[0,2,3,0],[1,2,3,2],[2,3,2,1],[0,2,0,1]],[[0,2,2,0],[1,2,4,2],[2,3,2,1],[0,2,0,1]],[[0,2,2,0],[1,2,3,3],[2,3,2,1],[0,2,0,1]],[[0,3,2,0],[1,2,3,2],[2,3,2,1],[0,2,1,0]],[[0,2,3,0],[1,2,3,2],[2,3,2,1],[0,2,1,0]],[[0,2,2,0],[1,2,4,2],[2,3,2,1],[0,2,1,0]],[[0,2,2,0],[1,2,3,3],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[1,2,0,2],[1,2,3,2],[0,2,1,2]],[[1,2,2,1],[1,2,0,2],[1,2,3,3],[0,2,1,1]],[[1,2,2,1],[1,2,0,2],[1,2,4,2],[0,2,1,1]],[[1,2,2,1],[1,2,0,3],[1,2,3,2],[0,2,1,1]],[[1,2,2,2],[1,2,0,2],[1,2,3,2],[0,2,1,1]],[[1,2,3,1],[1,2,0,2],[1,2,3,2],[0,2,1,1]],[[1,3,2,1],[1,2,0,2],[1,2,3,2],[0,2,1,1]],[[2,2,2,1],[1,2,0,2],[1,2,3,2],[0,2,1,1]],[[0,3,2,0],[1,2,3,2],[2,3,2,1],[1,0,1,1]],[[0,2,3,0],[1,2,3,2],[2,3,2,1],[1,0,1,1]],[[0,2,2,0],[1,2,4,2],[2,3,2,1],[1,0,1,1]],[[0,2,2,0],[1,2,3,3],[2,3,2,1],[1,0,1,1]],[[0,3,2,0],[1,2,3,2],[2,3,2,1],[1,0,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,2,1],[1,0,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,2,1],[1,0,2,0]],[[0,2,2,0],[1,2,3,3],[2,3,2,1],[1,0,2,0]],[[0,3,2,0],[1,2,3,2],[2,3,2,1],[1,1,0,1]],[[0,2,3,0],[1,2,3,2],[2,3,2,1],[1,1,0,1]],[[0,2,2,0],[1,2,4,2],[2,3,2,1],[1,1,0,1]],[[0,2,2,0],[1,2,3,3],[2,3,2,1],[1,1,0,1]],[[0,3,2,0],[1,2,3,2],[2,3,2,1],[1,1,1,0]],[[0,2,3,0],[1,2,3,2],[2,3,2,1],[1,1,1,0]],[[0,2,2,0],[1,2,4,2],[2,3,2,1],[1,1,1,0]],[[0,2,2,0],[1,2,3,3],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[1,2,0,2],[1,2,3,1],[0,2,2,2]],[[1,2,2,1],[1,2,0,2],[1,2,3,1],[0,2,3,1]],[[1,2,2,1],[1,2,0,2],[1,2,3,1],[0,3,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,2,1],[1,2,0,0]],[[0,2,3,0],[1,2,3,2],[2,3,2,1],[1,2,0,0]],[[0,2,2,0],[1,2,4,2],[2,3,2,1],[1,2,0,0]],[[0,2,2,0],[1,2,3,3],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[1,2,0,2],[1,2,4,1],[0,2,2,1]],[[1,2,2,1],[1,2,0,2],[1,2,2,2],[0,2,2,2]],[[1,2,2,1],[1,2,0,2],[1,2,2,2],[0,2,3,1]],[[1,2,2,1],[1,2,0,2],[1,2,2,2],[0,3,2,1]],[[1,2,2,1],[1,2,0,2],[1,2,2,3],[0,2,2,1]],[[1,2,2,1],[1,2,0,3],[1,2,2,2],[0,2,2,1]],[[1,2,2,2],[1,2,0,2],[1,2,2,2],[0,2,2,1]],[[1,2,3,1],[1,2,0,2],[1,2,2,2],[0,2,2,1]],[[1,3,2,1],[1,2,0,2],[1,2,2,2],[0,2,2,1]],[[2,2,2,1],[1,2,0,2],[1,2,2,2],[0,2,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,2,2],[0,0,1,1]],[[0,2,3,0],[1,2,3,2],[2,3,2,2],[0,0,1,1]],[[0,2,2,0],[1,2,4,2],[2,3,2,2],[0,0,1,1]],[[0,2,2,0],[1,2,3,3],[2,3,2,2],[0,0,1,1]],[[0,2,2,0],[1,2,3,2],[2,3,2,3],[0,0,1,1]],[[0,2,2,0],[1,2,3,2],[2,3,2,2],[0,0,1,2]],[[0,3,2,0],[1,2,3,2],[2,3,2,2],[0,0,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,2,2],[0,0,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,2,2],[0,0,2,0]],[[0,2,2,0],[1,2,3,3],[2,3,2,2],[0,0,2,0]],[[0,2,2,0],[1,2,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,1],[1,2,0,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,2,0,2],[0,3,3,2],[2,2,1,0]],[[1,2,2,1],[1,2,0,2],[0,3,3,3],[1,2,1,0]],[[1,2,2,1],[1,2,0,2],[0,3,4,2],[1,2,1,0]],[[1,2,2,1],[1,2,0,2],[0,4,3,2],[1,2,1,0]],[[1,2,2,1],[1,2,0,3],[0,3,3,2],[1,2,1,0]],[[1,2,2,2],[1,2,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,3,1],[1,2,0,2],[0,3,3,2],[1,2,1,0]],[[1,3,2,1],[1,2,0,2],[0,3,3,2],[1,2,1,0]],[[2,2,2,1],[1,2,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[1,2,0,2],[0,3,3,2],[1,2,0,2]],[[1,2,2,1],[1,2,0,2],[0,3,3,2],[1,3,0,1]],[[1,2,2,1],[1,2,0,2],[0,3,3,2],[2,2,0,1]],[[1,2,2,1],[1,2,0,2],[0,3,3,3],[1,2,0,1]],[[1,2,2,1],[1,2,0,2],[0,3,4,2],[1,2,0,1]],[[1,2,2,1],[1,2,0,2],[0,4,3,2],[1,2,0,1]],[[1,2,2,1],[1,2,0,3],[0,3,3,2],[1,2,0,1]],[[1,2,2,2],[1,2,0,2],[0,3,3,2],[1,2,0,1]],[[1,2,3,1],[1,2,0,2],[0,3,3,2],[1,2,0,1]],[[1,3,2,1],[1,2,0,2],[0,3,3,2],[1,2,0,1]],[[2,2,2,1],[1,2,0,2],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[1,2,0,2],[0,3,3,2],[1,1,3,0]],[[1,2,2,1],[1,2,0,2],[0,3,3,3],[1,1,2,0]],[[1,2,2,1],[1,2,0,2],[0,3,4,2],[1,1,2,0]],[[1,2,2,1],[1,2,0,2],[0,4,3,2],[1,1,2,0]],[[1,2,2,1],[1,2,0,3],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[1,2,0,2],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[1,2,0,2],[0,3,3,2],[1,1,2,0]],[[1,3,2,1],[1,2,0,2],[0,3,3,2],[1,1,2,0]],[[2,2,2,1],[1,2,0,2],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[1,2,0,2],[0,3,3,2],[1,1,1,2]],[[1,2,2,1],[1,2,0,2],[0,3,3,3],[1,1,1,1]],[[1,2,2,1],[1,2,0,2],[0,3,4,2],[1,1,1,1]],[[1,2,2,1],[1,2,0,2],[0,4,3,2],[1,1,1,1]],[[1,2,2,1],[1,2,0,3],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[1,2,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[1,2,0,2],[0,3,3,2],[1,1,1,1]],[[1,3,2,1],[1,2,0,2],[0,3,3,2],[1,1,1,1]],[[2,2,2,1],[1,2,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[1,2,0,2],[0,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,2,0,2],[0,3,3,3],[1,0,2,1]],[[1,2,2,1],[1,2,0,2],[0,3,4,2],[1,0,2,1]],[[1,2,2,1],[1,2,0,3],[0,3,3,2],[1,0,2,1]],[[1,2,2,2],[1,2,0,2],[0,3,3,2],[1,0,2,1]],[[1,2,3,1],[1,2,0,2],[0,3,3,2],[1,0,2,1]],[[1,3,2,1],[1,2,0,2],[0,3,3,2],[1,0,2,1]],[[2,2,2,1],[1,2,0,2],[0,3,3,2],[1,0,2,1]],[[1,2,2,1],[1,2,0,2],[0,3,3,1],[1,3,1,1]],[[1,2,2,1],[1,2,0,2],[0,3,3,1],[2,2,1,1]],[[1,2,2,1],[1,2,0,2],[0,3,4,1],[1,2,1,1]],[[1,2,2,1],[1,2,0,2],[0,4,3,1],[1,2,1,1]],[[1,2,2,1],[1,2,0,2],[0,3,3,1],[1,1,2,2]],[[1,2,2,1],[1,2,0,2],[0,3,3,1],[1,1,3,1]],[[1,2,2,1],[1,2,0,2],[0,3,4,1],[1,1,2,1]],[[1,2,2,1],[1,2,0,2],[0,4,3,1],[1,1,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,3,0],[0,0,2,1]],[[0,2,3,0],[1,2,3,2],[2,3,3,0],[0,0,2,1]],[[0,2,2,0],[1,2,4,2],[2,3,3,0],[0,0,2,1]],[[0,2,2,0],[1,2,3,3],[2,3,3,0],[0,0,2,1]],[[0,2,2,0],[1,2,3,2],[2,3,4,0],[0,0,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,3,0],[0,1,2,0]],[[0,3,2,0],[1,2,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,3,0],[1,2,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,2,0],[1,2,4,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[1,2,0,2],[0,3,2,2],[1,2,3,0]],[[1,2,2,1],[1,2,0,2],[0,3,2,2],[1,3,2,0]],[[1,2,2,1],[1,2,0,2],[0,3,2,2],[2,2,2,0]],[[1,2,2,1],[1,2,0,2],[0,4,2,2],[1,2,2,0]],[[1,2,2,1],[1,2,0,2],[0,3,2,2],[1,1,2,2]],[[1,2,2,1],[1,2,0,2],[0,3,2,2],[1,1,3,1]],[[1,2,2,1],[1,2,0,2],[0,3,2,3],[1,1,2,1]],[[1,2,2,1],[1,2,0,3],[0,3,2,2],[1,1,2,1]],[[1,2,2,2],[1,2,0,2],[0,3,2,2],[1,1,2,1]],[[1,2,3,1],[1,2,0,2],[0,3,2,2],[1,1,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,3,0],[1,0,2,0]],[[0,3,2,0],[1,2,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,3,0],[1,2,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,2,0],[1,2,4,2],[2,3,3,0],[1,1,1,0]],[[1,3,2,1],[1,2,0,2],[0,3,2,2],[1,1,2,1]],[[2,2,2,1],[1,2,0,2],[0,3,2,2],[1,1,2,1]],[[1,2,2,1],[1,2,0,2],[0,3,2,1],[1,2,2,2]],[[1,2,2,1],[1,2,0,2],[0,3,2,1],[1,2,3,1]],[[1,2,2,1],[1,2,0,2],[0,3,2,1],[1,3,2,1]],[[1,2,2,1],[1,2,0,2],[0,3,2,1],[2,2,2,1]],[[1,2,2,1],[1,2,0,2],[0,4,2,1],[1,2,2,1]],[[1,2,2,1],[1,2,0,2],[0,3,1,2],[1,2,2,2]],[[1,2,2,1],[1,2,0,2],[0,3,1,2],[1,2,3,1]],[[1,2,2,1],[1,2,0,2],[0,3,1,2],[1,3,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,3,0],[1,2,0,0]],[[0,2,3,0],[1,2,3,2],[2,3,3,0],[1,2,0,0]],[[0,2,2,0],[1,2,4,2],[2,3,3,0],[1,2,0,0]],[[1,2,2,1],[1,2,0,2],[0,3,1,2],[2,2,2,1]],[[1,2,2,1],[1,2,0,2],[0,3,1,3],[1,2,2,1]],[[1,2,2,1],[1,2,0,2],[0,4,1,2],[1,2,2,1]],[[1,2,2,1],[1,2,0,3],[0,3,1,2],[1,2,2,1]],[[1,2,2,2],[1,2,0,2],[0,3,1,2],[1,2,2,1]],[[1,2,3,1],[1,2,0,2],[0,3,1,2],[1,2,2,1]],[[1,3,2,1],[1,2,0,2],[0,3,1,2],[1,2,2,1]],[[2,2,2,1],[1,2,0,2],[0,3,1,2],[1,2,2,1]],[[1,2,2,1],[1,2,0,2],[0,2,3,2],[1,2,3,0]],[[1,2,2,1],[1,2,0,2],[0,2,3,2],[1,3,2,0]],[[1,2,2,1],[1,2,0,2],[0,2,3,2],[2,2,2,0]],[[1,2,2,1],[1,2,0,2],[0,2,3,3],[1,2,2,0]],[[0,3,2,0],[1,2,3,2],[2,3,3,1],[0,0,1,1]],[[0,2,3,0],[1,2,3,2],[2,3,3,1],[0,0,1,1]],[[0,2,2,0],[1,2,4,2],[2,3,3,1],[0,0,1,1]],[[0,2,2,0],[1,2,3,3],[2,3,3,1],[0,0,1,1]],[[0,2,2,0],[1,2,3,2],[2,3,4,1],[0,0,1,1]],[[0,3,2,0],[1,2,3,2],[2,3,3,1],[0,0,2,0]],[[0,2,3,0],[1,2,3,2],[2,3,3,1],[0,0,2,0]],[[0,2,2,0],[1,2,4,2],[2,3,3,1],[0,0,2,0]],[[0,2,2,0],[1,2,3,3],[2,3,3,1],[0,0,2,0]],[[0,2,2,0],[1,2,3,2],[2,3,4,1],[0,0,2,0]],[[1,2,2,1],[1,2,0,2],[0,2,4,2],[1,2,2,0]],[[1,2,2,1],[1,2,0,3],[0,2,3,2],[1,2,2,0]],[[1,2,2,2],[1,2,0,2],[0,2,3,2],[1,2,2,0]],[[1,2,3,1],[1,2,0,2],[0,2,3,2],[1,2,2,0]],[[1,3,2,1],[1,2,0,2],[0,2,3,2],[1,2,2,0]],[[2,2,2,1],[1,2,0,2],[0,2,3,2],[1,2,2,0]],[[1,2,2,1],[1,2,0,2],[0,2,3,2],[1,2,1,2]],[[1,2,2,1],[1,2,0,2],[0,2,3,3],[1,2,1,1]],[[1,2,2,1],[1,2,0,2],[0,2,4,2],[1,2,1,1]],[[0,3,2,0],[1,2,3,2],[2,3,3,1],[0,2,0,0]],[[0,2,3,0],[1,2,3,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,0],[1,2,4,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,0],[1,2,3,3],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[1,2,0,3],[0,2,3,2],[1,2,1,1]],[[1,2,2,2],[1,2,0,2],[0,2,3,2],[1,2,1,1]],[[1,2,3,1],[1,2,0,2],[0,2,3,2],[1,2,1,1]],[[1,3,2,1],[1,2,0,2],[0,2,3,2],[1,2,1,1]],[[2,2,2,1],[1,2,0,2],[0,2,3,2],[1,2,1,1]],[[1,2,2,1],[1,2,0,2],[0,2,3,1],[1,2,2,2]],[[1,2,2,1],[1,2,0,2],[0,2,3,1],[1,2,3,1]],[[1,2,2,1],[1,2,0,2],[0,2,3,1],[1,3,2,1]],[[1,2,2,1],[1,2,0,2],[0,2,3,1],[2,2,2,1]],[[1,2,2,1],[1,2,0,2],[0,2,4,1],[1,2,2,1]],[[1,2,2,1],[1,2,0,2],[0,2,2,2],[1,2,2,2]],[[1,2,2,1],[1,2,0,2],[0,2,2,2],[1,2,3,1]],[[1,2,2,1],[1,2,0,2],[0,2,2,2],[1,3,2,1]],[[1,2,2,1],[1,2,0,2],[0,2,2,2],[2,2,2,1]],[[1,2,2,1],[1,2,0,2],[0,2,2,3],[1,2,2,1]],[[1,2,2,1],[1,2,0,3],[0,2,2,2],[1,2,2,1]],[[1,2,2,2],[1,2,0,2],[0,2,2,2],[1,2,2,1]],[[1,2,3,1],[1,2,0,2],[0,2,2,2],[1,2,2,1]],[[1,3,2,1],[1,2,0,2],[0,2,2,2],[1,2,2,1]],[[2,2,2,1],[1,2,0,2],[0,2,2,2],[1,2,2,1]],[[0,3,2,0],[1,2,3,2],[2,3,3,1],[1,1,0,0]],[[0,2,3,0],[1,2,3,2],[2,3,3,1],[1,1,0,0]],[[0,2,2,0],[1,2,4,2],[2,3,3,1],[1,1,0,0]],[[0,2,2,0],[1,2,3,3],[2,3,3,1],[1,1,0,0]],[[0,3,2,0],[1,2,3,2],[2,3,3,2],[0,0,0,1]],[[0,2,3,0],[1,2,3,2],[2,3,3,2],[0,0,0,1]],[[0,2,2,0],[1,2,4,2],[2,3,3,2],[0,0,0,1]],[[0,2,2,0],[1,2,3,3],[2,3,3,2],[0,0,0,1]],[[0,2,2,0],[1,2,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,1],[1,1,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,1],[1,1,3,3],[2,1,3,2],[1,0,0,1]],[[1,2,2,2],[1,1,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,3,1],[1,1,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,2,1],[1,1,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,1],[1,1,3,3],[2,1,3,2],[0,1,0,1]],[[1,2,2,2],[1,1,3,2],[2,1,3,2],[0,1,0,1]],[[1,2,3,1],[1,1,3,2],[2,1,3,2],[0,1,0,1]],[[1,2,2,1],[1,1,3,3],[2,1,3,1],[1,1,1,0]],[[1,2,2,2],[1,1,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,3,1],[1,1,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,1],[1,1,3,3],[2,1,3,1],[1,1,0,1]],[[1,2,2,2],[1,1,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,3,1],[1,1,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,1],[1,1,3,3],[2,1,3,1],[1,0,2,0]],[[1,2,2,2],[1,1,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,3,1],[1,1,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,1],[1,1,3,3],[2,1,3,1],[1,0,1,1]],[[1,2,2,2],[1,1,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,3,1],[1,1,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,2,1],[1,1,3,3],[2,1,3,1],[0,2,1,0]],[[1,2,2,2],[1,1,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,3,1],[1,1,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,1],[1,1,3,3],[2,1,3,1],[0,2,0,1]],[[1,2,2,2],[1,1,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,3,1],[1,1,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,1],[1,1,3,3],[2,1,3,1],[0,1,2,0]],[[1,2,2,2],[1,1,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,3,1],[1,1,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,1],[1,1,3,3],[2,1,3,1],[0,1,1,1]],[[1,2,2,2],[1,1,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,3,1],[1,1,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,1],[1,1,3,3],[2,1,3,1],[0,0,2,1]],[[1,2,2,2],[1,1,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,3,1],[1,1,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,1],[1,1,3,3],[2,1,3,0],[1,0,2,1]],[[1,2,2,2],[1,1,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,3,1],[1,1,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,1],[1,1,3,3],[2,1,3,0],[0,1,2,1]],[[1,2,2,2],[1,1,3,2],[2,1,3,0],[0,1,2,1]],[[1,2,3,1],[1,1,3,2],[2,1,3,0],[0,1,2,1]],[[1,2,2,1],[1,1,3,3],[2,1,2,2],[1,1,1,0]],[[1,2,2,2],[1,1,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,3,1],[1,1,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,1],[1,1,3,2],[2,1,2,3],[1,1,0,1]],[[1,2,2,1],[1,1,3,3],[2,1,2,2],[1,1,0,1]],[[1,2,2,2],[1,1,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,3,1],[1,1,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,2,1],[1,1,3,2],[2,1,2,3],[1,0,2,0]],[[1,2,2,1],[1,1,3,3],[2,1,2,2],[1,0,2,0]],[[1,2,2,2],[1,1,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,3,1],[1,1,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,1],[1,1,3,2],[2,1,2,2],[1,0,1,2]],[[1,2,2,1],[1,1,3,2],[2,1,2,3],[1,0,1,1]],[[1,2,2,1],[1,1,3,3],[2,1,2,2],[1,0,1,1]],[[1,2,2,2],[1,1,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,3,1],[1,1,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,2,1],[1,1,3,3],[2,1,2,2],[0,2,1,0]],[[1,2,2,2],[1,1,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,3,1],[1,1,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,1],[1,1,3,2],[2,1,2,3],[0,2,0,1]],[[1,2,2,1],[1,1,3,3],[2,1,2,2],[0,2,0,1]],[[1,2,2,2],[1,1,3,2],[2,1,2,2],[0,2,0,1]],[[1,2,3,1],[1,1,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,0],[1,3,0,0],[1,4,3,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,0],[1,3,3,2],[2,2,2,1]],[[0,2,2,0],[1,3,0,0],[1,3,3,2],[1,3,2,1]],[[0,2,2,0],[1,3,0,0],[1,3,3,2],[1,2,3,1]],[[0,2,2,0],[1,3,0,0],[1,3,3,2],[1,2,2,2]],[[0,2,2,0],[1,3,0,0],[3,2,3,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,0],[2,2,3,2],[2,2,2,1]],[[0,2,2,0],[1,3,0,0],[2,2,3,2],[1,3,2,1]],[[0,2,2,0],[1,3,0,0],[2,2,3,2],[1,2,3,1]],[[0,2,2,0],[1,3,0,0],[2,2,3,2],[1,2,2,2]],[[0,2,2,0],[1,3,0,0],[3,3,3,2],[0,2,2,1]],[[0,2,2,0],[1,3,0,0],[2,4,3,2],[0,2,2,1]],[[0,2,2,0],[1,3,0,0],[2,3,3,2],[0,3,2,1]],[[0,2,2,0],[1,3,0,0],[2,3,3,2],[0,2,3,1]],[[0,2,2,0],[1,3,0,0],[2,3,3,2],[0,2,2,2]],[[0,2,2,0],[1,3,0,0],[3,3,3,2],[1,1,2,1]],[[0,2,2,0],[1,3,0,0],[2,4,3,2],[1,1,2,1]],[[0,2,2,0],[1,3,0,0],[2,3,3,2],[2,1,2,1]],[[0,2,2,0],[1,3,0,1],[1,4,3,1],[1,2,2,1]],[[0,2,2,0],[1,3,0,1],[1,3,3,1],[2,2,2,1]],[[0,2,2,0],[1,3,0,1],[1,3,3,1],[1,3,2,1]],[[0,2,2,0],[1,3,0,1],[1,3,3,1],[1,2,3,1]],[[0,2,2,0],[1,3,0,1],[1,3,3,1],[1,2,2,2]],[[0,2,2,0],[1,3,0,1],[1,4,3,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,1],[1,3,3,2],[2,2,2,0]],[[0,2,2,0],[1,3,0,1],[1,3,3,2],[1,3,2,0]],[[0,2,2,0],[1,3,0,1],[1,3,3,2],[1,2,3,0]],[[0,2,2,0],[1,3,0,1],[3,2,3,1],[1,2,2,1]],[[0,2,2,0],[1,3,0,1],[2,2,3,1],[2,2,2,1]],[[0,2,2,0],[1,3,0,1],[2,2,3,1],[1,3,2,1]],[[0,2,2,0],[1,3,0,1],[2,2,3,1],[1,2,3,1]],[[0,2,2,0],[1,3,0,1],[2,2,3,1],[1,2,2,2]],[[0,2,2,0],[1,3,0,1],[3,2,3,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,1],[2,2,3,2],[2,2,2,0]],[[0,2,2,0],[1,3,0,1],[2,2,3,2],[1,3,2,0]],[[0,2,2,0],[1,3,0,1],[2,2,3,2],[1,2,3,0]],[[0,2,2,0],[1,3,0,1],[3,3,3,1],[0,2,2,1]],[[0,2,2,0],[1,3,0,1],[2,4,3,1],[0,2,2,1]],[[0,2,2,0],[1,3,0,1],[2,3,3,1],[0,3,2,1]],[[0,2,2,0],[1,3,0,1],[2,3,3,1],[0,2,3,1]],[[0,2,2,0],[1,3,0,1],[2,3,3,1],[0,2,2,2]],[[0,2,2,0],[1,3,0,1],[3,3,3,1],[1,1,2,1]],[[0,2,2,0],[1,3,0,1],[2,4,3,1],[1,1,2,1]],[[0,2,2,0],[1,3,0,1],[2,3,3,1],[2,1,2,1]],[[0,2,2,0],[1,3,0,1],[3,3,3,2],[0,2,2,0]],[[0,2,2,0],[1,3,0,1],[2,4,3,2],[0,2,2,0]],[[0,2,2,0],[1,3,0,1],[2,3,3,2],[0,3,2,0]],[[0,2,2,0],[1,3,0,1],[2,3,3,2],[0,2,3,0]],[[0,2,2,0],[1,3,0,1],[3,3,3,2],[1,1,2,0]],[[0,2,2,0],[1,3,0,1],[2,4,3,2],[1,1,2,0]],[[0,2,2,0],[1,3,0,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[1,1,3,2],[2,1,2,3],[0,1,2,0]],[[1,2,2,1],[1,1,3,3],[2,1,2,2],[0,1,2,0]],[[1,2,2,2],[1,1,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,3,1],[1,1,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,1],[1,1,3,2],[2,1,2,2],[0,1,1,2]],[[0,2,2,0],[1,3,0,3],[0,3,2,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[0,3,2,3],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[0,3,2,2],[1,3,2,1]],[[0,2,2,0],[1,3,0,2],[0,3,2,2],[1,2,3,1]],[[0,2,2,0],[1,3,0,2],[0,3,2,2],[1,2,2,2]],[[0,2,2,0],[1,3,0,2],[0,3,4,1],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[0,3,3,1],[1,3,2,1]],[[0,2,2,0],[1,3,0,2],[0,3,3,1],[1,2,3,1]],[[0,2,2,0],[1,3,0,2],[0,3,3,1],[1,2,2,2]],[[0,2,2,0],[1,3,0,3],[0,3,3,2],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[0,3,4,2],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[0,3,3,3],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[0,3,3,2],[1,2,1,2]],[[0,2,2,0],[1,3,0,3],[0,3,3,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[0,3,4,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[0,3,3,3],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[0,3,3,2],[1,3,2,0]],[[0,2,2,0],[1,3,0,2],[0,3,3,2],[1,2,3,0]],[[0,2,2,0],[1,3,0,3],[1,2,2,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,2,2,3],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,2,2,2],[2,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,2,2,2],[1,3,2,1]],[[0,2,2,0],[1,3,0,2],[1,2,2,2],[1,2,3,1]],[[0,2,2,0],[1,3,0,2],[1,2,2,2],[1,2,2,2]],[[0,2,2,0],[1,3,0,2],[1,2,4,1],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,2,3,1],[2,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,2,3,1],[1,3,2,1]],[[0,2,2,0],[1,3,0,2],[1,2,3,1],[1,2,3,1]],[[0,2,2,0],[1,3,0,2],[1,2,3,1],[1,2,2,2]],[[0,2,2,0],[1,3,0,3],[1,2,3,2],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[1,2,4,2],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[1,2,3,3],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[1,2,3,2],[1,2,1,2]],[[0,2,2,0],[1,3,0,3],[1,2,3,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[1,2,4,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[1,2,3,3],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[1,2,3,2],[2,2,2,0]],[[0,2,2,0],[1,3,0,2],[1,2,3,2],[1,3,2,0]],[[0,2,2,0],[1,3,0,2],[1,2,3,2],[1,2,3,0]],[[0,3,2,0],[1,3,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,3,0],[1,3,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,2,0],[1,4,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,3],[1,3,1,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,4,1,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,1,3],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,1,2],[2,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,1,2],[1,3,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,1,2],[1,2,3,1]],[[0,2,2,0],[1,3,0,2],[1,3,1,2],[1,2,2,2]],[[0,3,2,0],[1,3,0,2],[1,3,2,1],[1,2,2,1]],[[0,2,3,0],[1,3,0,2],[1,3,2,1],[1,2,2,1]],[[0,2,2,0],[1,4,0,2],[1,3,2,1],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,4,2,1],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,2,1],[2,2,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,2,1],[1,3,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,2,1],[1,2,3,1]],[[0,2,2,0],[1,3,0,2],[1,3,2,1],[1,2,2,2]],[[0,2,2,0],[1,3,0,3],[1,3,2,2],[1,1,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,2,3],[1,1,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,0],[1,3,0,2],[1,3,2,2],[1,1,2,2]],[[0,3,2,0],[1,3,0,2],[1,3,2,2],[1,2,2,0]],[[0,2,3,0],[1,3,0,2],[1,3,2,2],[1,2,2,0]],[[0,2,2,0],[1,4,0,2],[1,3,2,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[1,4,2,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[1,3,2,2],[2,2,2,0]],[[0,2,2,0],[1,3,0,2],[1,3,2,2],[1,3,2,0]],[[0,2,2,0],[1,3,0,2],[1,3,2,2],[1,2,3,0]],[[0,3,2,0],[1,3,0,2],[1,3,3,1],[1,1,2,1]],[[0,2,3,0],[1,3,0,2],[1,3,3,1],[1,1,2,1]],[[0,2,2,0],[1,4,0,2],[1,3,3,1],[1,1,2,1]],[[0,2,2,0],[1,3,0,2],[1,4,3,1],[1,1,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,1],[1,1,2,2]],[[0,3,2,0],[1,3,0,2],[1,3,3,1],[1,2,1,1]],[[0,2,3,0],[1,3,0,2],[1,3,3,1],[1,2,1,1]],[[0,2,2,0],[1,4,0,2],[1,3,3,1],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[1,4,3,1],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[1,3,4,1],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,1],[2,2,1,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,1],[1,3,1,1]],[[0,2,2,0],[1,3,0,3],[1,3,3,2],[1,0,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,4,2],[1,0,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,3],[1,0,2,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,2],[1,0,2,2]],[[0,3,2,0],[1,3,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,3,0],[1,3,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,4,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,3,0,3],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,3,0,2],[1,4,3,2],[1,1,1,1]],[[0,2,2,0],[1,3,0,2],[1,3,4,2],[1,1,1,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,3],[1,1,1,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,2],[1,1,1,2]],[[0,3,2,0],[1,3,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,3,0],[1,3,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[1,4,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[1,3,0,3],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[1,3,0,2],[1,4,3,2],[1,1,2,0]],[[0,2,2,0],[1,3,0,2],[1,3,4,2],[1,1,2,0]],[[0,2,2,0],[1,3,0,2],[1,3,3,3],[1,1,2,0]],[[0,2,2,0],[1,3,0,2],[1,3,3,2],[1,1,3,0]],[[0,3,2,0],[1,3,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,3,0],[1,3,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[1,4,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[1,3,0,3],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[1,3,0,2],[1,4,3,2],[1,2,0,1]],[[0,2,2,0],[1,3,0,2],[1,3,4,2],[1,2,0,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,3],[1,2,0,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,2],[2,2,0,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,2],[1,3,0,1]],[[0,2,2,0],[1,3,0,2],[1,3,3,2],[1,2,0,2]],[[0,3,2,0],[1,3,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,3,0],[1,3,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[1,4,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[1,3,0,3],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[1,3,0,2],[1,4,3,2],[1,2,1,0]],[[0,2,2,0],[1,3,0,2],[1,3,4,2],[1,2,1,0]],[[0,2,2,0],[1,3,0,2],[1,3,3,3],[1,2,1,0]],[[0,2,2,0],[1,3,0,2],[1,3,3,2],[2,2,1,0]],[[0,2,2,0],[1,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,1,3,2],[2,1,2,3],[0,1,1,1]],[[1,2,2,1],[1,1,3,3],[2,1,2,2],[0,1,1,1]],[[1,2,2,2],[1,1,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,3,1],[1,1,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,1],[1,1,3,2],[2,1,2,2],[0,0,2,2]],[[1,2,2,1],[1,1,3,2],[2,1,2,3],[0,0,2,1]],[[1,2,2,1],[1,1,3,3],[2,1,2,2],[0,0,2,1]],[[1,2,2,2],[1,1,3,2],[2,1,2,2],[0,0,2,1]],[[1,2,3,1],[1,1,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,0],[1,3,0,3],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[3,1,2,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,1,2,3],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,1,2,2],[2,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,1,2,2],[1,3,2,1]],[[0,2,2,0],[1,3,0,2],[2,1,2,2],[1,2,3,1]],[[0,2,2,0],[1,3,0,2],[2,1,2,2],[1,2,2,2]],[[0,2,2,0],[1,3,0,2],[3,1,3,1],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,1,4,1],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,1,3,1],[2,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,1,3,1],[1,3,2,1]],[[0,2,2,0],[1,3,0,2],[2,1,3,1],[1,2,3,1]],[[0,2,2,0],[1,3,0,2],[2,1,3,1],[1,2,2,2]],[[0,2,2,0],[1,3,0,3],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[2,1,4,2],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[2,1,3,3],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[2,1,3,2],[1,2,1,2]],[[0,2,2,0],[1,3,0,3],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[3,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,1,4,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,1,3,3],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,1,3,2],[2,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,1,3,2],[1,3,2,0]],[[0,2,2,0],[1,3,0,2],[2,1,3,2],[1,2,3,0]],[[0,2,2,0],[1,3,0,3],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[3,2,1,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,1,3],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,1,2],[2,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,1,2],[1,3,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,1,2],[1,2,3,1]],[[0,2,2,0],[1,3,0,2],[2,2,1,2],[1,2,2,2]],[[0,2,2,0],[1,3,0,2],[3,2,2,1],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,2,1],[2,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,2,1],[1,3,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,2,1],[1,2,3,1]],[[0,2,2,0],[1,3,0,2],[2,2,2,1],[1,2,2,2]],[[0,2,2,0],[1,3,0,3],[2,2,2,2],[0,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,2,3],[0,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,2,2],[0,3,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,2,2],[0,2,3,1]],[[0,2,2,0],[1,3,0,2],[2,2,2,2],[0,2,2,2]],[[0,2,2,0],[1,3,0,2],[3,2,2,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,2,2,2],[2,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,2,2,2],[1,3,2,0]],[[0,2,2,0],[1,3,0,2],[2,2,2,2],[1,2,3,0]],[[0,2,2,0],[1,3,0,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,3,1],[0,3,2,1]],[[0,2,2,0],[1,3,0,2],[2,2,3,1],[0,2,3,1]],[[0,2,2,0],[1,3,0,2],[2,2,3,1],[0,2,2,2]],[[0,2,2,0],[1,3,0,2],[3,2,3,1],[1,2,1,1]],[[0,2,2,0],[1,3,0,2],[2,2,3,1],[2,2,1,1]],[[0,2,2,0],[1,3,0,2],[2,2,3,1],[1,3,1,1]],[[0,2,2,0],[1,3,0,3],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[1,3,0,2],[2,2,4,2],[0,2,1,1]],[[0,2,2,0],[1,3,0,2],[2,2,3,3],[0,2,1,1]],[[0,2,2,0],[1,3,0,2],[2,2,3,2],[0,2,1,2]],[[0,2,2,0],[1,3,0,3],[2,2,3,2],[0,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,2,4,2],[0,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,2,3,3],[0,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,2,3,2],[0,3,2,0]],[[0,2,2,0],[1,3,0,2],[2,2,3,2],[0,2,3,0]],[[0,2,2,0],[1,3,0,2],[3,2,3,2],[1,2,0,1]],[[0,2,2,0],[1,3,0,2],[2,2,3,2],[2,2,0,1]],[[0,2,2,0],[1,3,0,2],[2,2,3,2],[1,3,0,1]],[[0,2,2,0],[1,3,0,2],[3,2,3,2],[1,2,1,0]],[[0,2,2,0],[1,3,0,2],[2,2,3,2],[2,2,1,0]],[[0,2,2,0],[1,3,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,1,3,2],[2,1,1,2],[1,0,2,2]],[[1,2,2,1],[1,1,3,2],[2,1,1,3],[1,0,2,1]],[[1,2,2,1],[1,1,3,3],[2,1,1,2],[1,0,2,1]],[[1,2,2,2],[1,1,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,3,1],[1,1,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,0],[1,3,0,2],[3,3,0,2],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,0,2],[2,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,0,2],[1,3,2,1]],[[0,2,2,0],[1,3,0,2],[3,3,1,1],[1,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,1,1],[2,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,1,1],[1,3,2,1]],[[0,3,2,0],[1,3,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,3,0],[1,3,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[1,4,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[1,3,0,3],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[1,3,0,2],[3,3,1,2],[0,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,4,1,2],[0,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,1,3],[0,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,1,2],[0,3,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,1,2],[0,2,3,1]],[[0,2,2,0],[1,3,0,2],[2,3,1,2],[0,2,2,2]],[[0,3,2,0],[1,3,0,2],[2,3,1,2],[1,1,2,1]],[[0,2,3,0],[1,3,0,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[1,4,0,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[1,3,0,2],[3,3,1,2],[1,1,2,1]],[[0,2,2,0],[1,3,0,2],[2,4,1,2],[1,1,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,1,2],[2,1,2,1]],[[0,2,2,0],[1,3,0,2],[3,3,1,2],[1,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,1,2],[2,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,1,2],[1,3,2,0]],[[0,3,2,0],[1,3,0,2],[2,3,2,1],[0,2,2,1]],[[0,2,3,0],[1,3,0,2],[2,3,2,1],[0,2,2,1]],[[0,2,2,0],[1,4,0,2],[2,3,2,1],[0,2,2,1]],[[0,2,2,0],[1,3,0,2],[3,3,2,1],[0,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,4,2,1],[0,2,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,2,1],[0,3,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,2,1],[0,2,3,1]],[[0,2,2,0],[1,3,0,2],[2,3,2,1],[0,2,2,2]],[[0,3,2,0],[1,3,0,2],[2,3,2,1],[1,1,2,1]],[[0,2,3,0],[1,3,0,2],[2,3,2,1],[1,1,2,1]],[[0,2,2,0],[1,4,0,2],[2,3,2,1],[1,1,2,1]],[[0,2,2,0],[1,3,0,2],[3,3,2,1],[1,1,2,1]],[[0,2,2,0],[1,3,0,2],[2,4,2,1],[1,1,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,2,1],[2,1,2,1]],[[0,2,2,0],[1,3,0,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,2,3],[0,1,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,0],[1,3,0,2],[2,3,2,2],[0,1,2,2]],[[0,3,2,0],[1,3,0,2],[2,3,2,2],[0,2,2,0]],[[0,2,3,0],[1,3,0,2],[2,3,2,2],[0,2,2,0]],[[0,2,2,0],[1,4,0,2],[2,3,2,2],[0,2,2,0]],[[0,2,2,0],[1,3,0,2],[3,3,2,2],[0,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,4,2,2],[0,2,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,2,2],[0,3,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,2,2],[0,2,3,0]],[[0,2,2,0],[1,3,0,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,2,3],[1,0,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,2,2],[1,0,3,1]],[[0,2,2,0],[1,3,0,2],[2,3,2,2],[1,0,2,2]],[[0,3,2,0],[1,3,0,2],[2,3,2,2],[1,1,2,0]],[[0,2,3,0],[1,3,0,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,4,0,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,3,0,2],[3,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,3,0,2],[2,4,2,2],[1,1,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[1,1,3,2],[2,1,1,2],[0,1,2,2]],[[1,2,2,1],[1,1,3,2],[2,1,1,3],[0,1,2,1]],[[1,2,2,1],[1,1,3,3],[2,1,1,2],[0,1,2,1]],[[1,2,2,2],[1,1,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,3,1],[1,1,3,2],[2,1,1,2],[0,1,2,1]],[[0,3,2,0],[1,3,0,2],[2,3,3,1],[0,1,2,1]],[[0,2,3,0],[1,3,0,2],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[1,4,0,2],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[1,3,0,2],[3,3,3,1],[0,1,2,1]],[[0,2,2,0],[1,3,0,2],[2,4,3,1],[0,1,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,4,1],[0,1,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,1],[0,1,3,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,1],[0,1,2,2]],[[0,3,2,0],[1,3,0,2],[2,3,3,1],[0,2,1,1]],[[0,2,3,0],[1,3,0,2],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[1,4,0,2],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[1,3,0,2],[3,3,3,1],[0,2,1,1]],[[0,2,2,0],[1,3,0,2],[2,4,3,1],[0,2,1,1]],[[0,2,2,0],[1,3,0,2],[2,3,4,1],[0,2,1,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,1],[0,3,1,1]],[[0,3,2,0],[1,3,0,2],[2,3,3,1],[1,0,2,1]],[[0,2,3,0],[1,3,0,2],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,4,0,2],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,3,0,2],[3,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,3,0,2],[2,4,3,1],[1,0,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,4,1],[1,0,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,1],[2,0,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,1],[1,0,3,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,1],[1,0,2,2]],[[0,3,2,0],[1,3,0,2],[2,3,3,1],[1,1,1,1]],[[0,2,3,0],[1,3,0,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,4,0,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,3,0,2],[3,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,3,0,2],[2,4,3,1],[1,1,1,1]],[[0,2,2,0],[1,3,0,2],[2,3,4,1],[1,1,1,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,1],[2,1,1,1]],[[0,2,2,0],[1,3,0,2],[3,3,3,1],[1,2,0,1]],[[0,2,2,0],[1,3,0,2],[2,4,3,1],[1,2,0,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,1],[2,2,0,1]],[[0,2,2,0],[1,3,0,3],[2,3,3,2],[0,0,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,4,2],[0,0,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,3],[0,0,2,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[0,0,2,2]],[[0,3,2,0],[1,3,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,3,0],[1,3,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,4,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,3,0,3],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,3,0,2],[3,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,3,0,2],[2,4,3,2],[0,1,1,1]],[[0,2,2,0],[1,3,0,2],[2,3,4,2],[0,1,1,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,3],[0,1,1,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[0,1,1,2]],[[0,3,2,0],[1,3,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,3,0],[1,3,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,4,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,3,0,3],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,3,0,2],[3,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,3,0,2],[2,4,3,2],[0,1,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,4,2],[0,1,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,3,3],[0,1,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[0,1,3,0]],[[0,3,2,0],[1,3,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,3,0],[1,3,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,4,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,3,0,3],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,3,0,2],[3,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,3,0,2],[2,4,3,2],[0,2,0,1]],[[0,2,2,0],[1,3,0,2],[2,3,4,2],[0,2,0,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,3],[0,2,0,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[0,3,0,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[0,2,0,2]],[[0,3,2,0],[1,3,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,3,0],[1,3,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,4,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,3,0,3],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,3,0,2],[3,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,3,0,2],[2,4,3,2],[0,2,1,0]],[[0,2,2,0],[1,3,0,2],[2,3,4,2],[0,2,1,0]],[[0,2,2,0],[1,3,0,2],[2,3,3,3],[0,2,1,0]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[0,3,1,0]],[[0,3,2,0],[1,3,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,3,0],[1,3,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,4,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,3,0,3],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,3,0,2],[3,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,3,0,2],[2,4,3,2],[1,0,1,1]],[[0,2,2,0],[1,3,0,2],[2,3,4,2],[1,0,1,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,3],[1,0,1,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[2,0,1,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[1,0,1,2]],[[0,3,2,0],[1,3,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,3,0],[1,3,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,4,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,3,0,3],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,3,0,2],[3,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,3,0,2],[2,4,3,2],[1,0,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,4,2],[1,0,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,3,3],[1,0,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[2,0,2,0]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[1,0,3,0]],[[0,3,2,0],[1,3,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,3,0],[1,3,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,4,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,3,0,3],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,3,0,2],[3,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,3,0,2],[2,4,3,2],[1,1,0,1]],[[0,2,2,0],[1,3,0,2],[2,3,4,2],[1,1,0,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,3],[1,1,0,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[2,1,0,1]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[1,1,0,2]],[[0,3,2,0],[1,3,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,3,0],[1,3,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,4,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,3,0,3],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,3,0,2],[3,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,3,0,2],[2,4,3,2],[1,1,1,0]],[[0,2,2,0],[1,3,0,2],[2,3,4,2],[1,1,1,0]],[[0,2,2,0],[1,3,0,2],[2,3,3,3],[1,1,1,0]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[2,1,1,0]],[[0,3,2,0],[1,3,0,2],[2,3,3,2],[1,2,0,0]],[[0,2,3,0],[1,3,0,2],[2,3,3,2],[1,2,0,0]],[[0,2,2,0],[1,4,0,2],[2,3,3,2],[1,2,0,0]],[[0,2,2,0],[1,3,0,2],[3,3,3,2],[1,2,0,0]],[[0,2,2,0],[1,3,0,2],[2,4,3,2],[1,2,0,0]],[[0,2,2,0],[1,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,1,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,1],[1,1,3,3],[2,0,3,2],[1,0,2,0]],[[1,2,2,2],[1,1,3,2],[2,0,3,2],[1,0,2,0]],[[1,2,3,1],[1,1,3,2],[2,0,3,2],[1,0,2,0]],[[1,2,2,1],[1,1,3,2],[2,0,3,2],[1,0,1,2]],[[1,2,2,1],[1,1,3,2],[2,0,3,3],[1,0,1,1]],[[1,2,2,1],[1,1,3,3],[2,0,3,2],[1,0,1,1]],[[1,2,2,2],[1,1,3,2],[2,0,3,2],[1,0,1,1]],[[1,2,3,1],[1,1,3,2],[2,0,3,2],[1,0,1,1]],[[1,2,2,1],[1,1,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,2,1],[1,1,3,3],[2,0,3,2],[0,1,2,0]],[[1,2,2,2],[1,1,3,2],[2,0,3,2],[0,1,2,0]],[[1,2,3,1],[1,1,3,2],[2,0,3,2],[0,1,2,0]],[[1,2,2,1],[1,1,3,2],[2,0,3,2],[0,1,1,2]],[[1,2,2,1],[1,1,3,2],[2,0,3,3],[0,1,1,1]],[[1,2,2,1],[1,1,3,3],[2,0,3,2],[0,1,1,1]],[[1,2,2,2],[1,1,3,2],[2,0,3,2],[0,1,1,1]],[[1,2,3,1],[1,1,3,2],[2,0,3,2],[0,1,1,1]],[[1,2,2,1],[1,1,3,2],[2,0,3,2],[0,0,2,2]],[[0,2,2,0],[1,3,1,0],[0,3,4,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,0],[0,3,3,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,0],[0,3,3,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,0],[0,3,3,2],[1,2,2,2]],[[0,2,2,0],[1,3,1,0],[1,2,4,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,0],[1,2,3,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,0],[1,2,3,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,0],[1,2,3,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,0],[1,2,3,2],[1,2,2,2]],[[0,3,2,0],[1,3,1,0],[1,3,2,2],[1,2,2,1]],[[0,2,2,0],[1,4,1,0],[1,3,2,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,0],[1,4,2,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,0],[1,3,2,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,0],[1,3,2,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,0],[1,3,2,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,0],[1,3,2,2],[1,2,2,2]],[[0,3,2,0],[1,3,1,0],[1,3,3,2],[1,1,2,1]],[[0,2,2,0],[1,4,1,0],[1,3,3,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,0],[1,4,3,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,0],[1,3,4,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,0],[1,3,3,2],[1,1,3,1]],[[0,2,2,0],[1,3,1,0],[1,3,3,2],[1,1,2,2]],[[0,3,2,0],[1,3,1,0],[1,3,3,2],[1,2,1,1]],[[0,2,2,0],[1,4,1,0],[1,3,3,2],[1,2,1,1]],[[0,2,2,0],[1,3,1,0],[1,4,3,2],[1,2,1,1]],[[0,2,2,0],[1,3,1,0],[1,3,4,2],[1,2,1,1]],[[0,2,2,0],[1,3,1,0],[1,3,3,2],[2,2,1,1]],[[0,2,2,0],[1,3,1,0],[1,3,3,2],[1,3,1,1]],[[0,2,2,0],[1,3,1,0],[3,1,3,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,0],[2,1,4,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,0],[2,1,3,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,0],[2,1,3,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,0],[2,1,3,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,0],[2,1,3,2],[1,2,2,2]],[[0,2,2,0],[1,3,1,0],[3,2,2,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,0],[2,2,2,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,0],[2,2,2,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,0],[2,2,2,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,0],[2,2,2,2],[1,2,2,2]],[[0,2,2,0],[1,3,1,0],[2,2,4,2],[0,2,2,1]],[[0,2,2,0],[1,3,1,0],[2,2,3,2],[0,3,2,1]],[[0,2,2,0],[1,3,1,0],[2,2,3,2],[0,2,3,1]],[[0,2,2,0],[1,3,1,0],[2,2,3,2],[0,2,2,2]],[[0,2,2,0],[1,3,1,0],[3,2,3,2],[1,2,1,1]],[[0,2,2,0],[1,3,1,0],[2,2,3,2],[2,2,1,1]],[[0,2,2,0],[1,3,1,0],[2,2,3,2],[1,3,1,1]],[[0,2,2,0],[1,3,1,0],[3,3,1,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,0],[2,3,1,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,0],[2,3,1,2],[1,3,2,1]],[[0,3,2,0],[1,3,1,0],[2,3,2,2],[0,2,2,1]],[[0,2,2,0],[1,4,1,0],[2,3,2,2],[0,2,2,1]],[[0,2,2,0],[1,3,1,0],[3,3,2,2],[0,2,2,1]],[[0,2,2,0],[1,3,1,0],[2,4,2,2],[0,2,2,1]],[[0,2,2,0],[1,3,1,0],[2,3,2,2],[0,3,2,1]],[[0,2,2,0],[1,3,1,0],[2,3,2,2],[0,2,3,1]],[[0,2,2,0],[1,3,1,0],[2,3,2,2],[0,2,2,2]],[[0,3,2,0],[1,3,1,0],[2,3,2,2],[1,1,2,1]],[[0,2,2,0],[1,4,1,0],[2,3,2,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,0],[3,3,2,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,0],[2,4,2,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,0],[2,3,2,2],[2,1,2,1]],[[0,3,2,0],[1,3,1,0],[2,3,3,2],[0,1,2,1]],[[0,2,2,0],[1,4,1,0],[2,3,3,2],[0,1,2,1]],[[0,2,2,0],[1,3,1,0],[3,3,3,2],[0,1,2,1]],[[0,2,2,0],[1,3,1,0],[2,4,3,2],[0,1,2,1]],[[0,2,2,0],[1,3,1,0],[2,3,4,2],[0,1,2,1]],[[0,2,2,0],[1,3,1,0],[2,3,3,2],[0,1,3,1]],[[0,2,2,0],[1,3,1,0],[2,3,3,2],[0,1,2,2]],[[0,3,2,0],[1,3,1,0],[2,3,3,2],[0,2,1,1]],[[0,2,2,0],[1,4,1,0],[2,3,3,2],[0,2,1,1]],[[0,2,2,0],[1,3,1,0],[3,3,3,2],[0,2,1,1]],[[0,2,2,0],[1,3,1,0],[2,4,3,2],[0,2,1,1]],[[0,2,2,0],[1,3,1,0],[2,3,4,2],[0,2,1,1]],[[0,2,2,0],[1,3,1,0],[2,3,3,2],[0,3,1,1]],[[0,3,2,0],[1,3,1,0],[2,3,3,2],[1,0,2,1]],[[0,2,2,0],[1,4,1,0],[2,3,3,2],[1,0,2,1]],[[0,2,2,0],[1,3,1,0],[3,3,3,2],[1,0,2,1]],[[0,2,2,0],[1,3,1,0],[2,4,3,2],[1,0,2,1]],[[0,2,2,0],[1,3,1,0],[2,3,4,2],[1,0,2,1]],[[0,2,2,0],[1,3,1,0],[2,3,3,2],[2,0,2,1]],[[0,2,2,0],[1,3,1,0],[2,3,3,2],[1,0,3,1]],[[0,2,2,0],[1,3,1,0],[2,3,3,2],[1,0,2,2]],[[0,3,2,0],[1,3,1,0],[2,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,4,1,0],[2,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,3,1,0],[3,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,3,1,0],[2,4,3,2],[1,1,1,1]],[[0,2,2,0],[1,3,1,0],[2,3,4,2],[1,1,1,1]],[[0,2,2,0],[1,3,1,0],[2,3,3,2],[2,1,1,1]],[[0,2,2,0],[1,3,1,0],[3,3,3,2],[1,2,0,1]],[[0,2,2,0],[1,3,1,0],[2,4,3,2],[1,2,0,1]],[[0,2,2,0],[1,3,1,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,1],[1,1,3,2],[2,0,3,3],[0,0,2,1]],[[1,2,2,1],[1,1,3,3],[2,0,3,2],[0,0,2,1]],[[1,2,2,2],[1,1,3,2],[2,0,3,2],[0,0,2,1]],[[1,2,3,1],[1,1,3,2],[2,0,3,2],[0,0,2,1]],[[0,2,2,0],[1,3,1,1],[0,3,2,3],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[0,3,2,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[0,3,2,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,1],[0,3,2,2],[1,2,2,2]],[[0,2,2,0],[1,3,1,1],[0,3,4,1],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[0,3,3,1],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[0,3,3,1],[1,2,3,1]],[[0,2,2,0],[1,3,1,1],[0,3,3,1],[1,2,2,2]],[[0,2,2,0],[1,3,1,1],[0,3,4,2],[1,2,1,1]],[[0,2,2,0],[1,3,1,1],[0,3,3,3],[1,2,1,1]],[[0,2,2,0],[1,3,1,1],[0,3,3,2],[1,2,1,2]],[[0,2,2,0],[1,3,1,1],[0,3,4,2],[1,2,2,0]],[[0,2,2,0],[1,3,1,1],[0,3,3,3],[1,2,2,0]],[[0,2,2,0],[1,3,1,1],[0,3,3,2],[1,3,2,0]],[[0,2,2,0],[1,3,1,1],[0,3,3,2],[1,2,3,0]],[[0,2,2,0],[1,3,1,1],[1,2,2,3],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,2,2,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,2,2,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[1,2,2,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,1],[1,2,2,2],[1,2,2,2]],[[0,2,2,0],[1,3,1,1],[1,2,4,1],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,2,3,1],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,2,3,1],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[1,2,3,1],[1,2,3,1]],[[0,2,2,0],[1,3,1,1],[1,2,3,1],[1,2,2,2]],[[0,2,2,0],[1,3,1,1],[1,2,4,2],[1,2,1,1]],[[0,2,2,0],[1,3,1,1],[1,2,3,3],[1,2,1,1]],[[0,2,2,0],[1,3,1,1],[1,2,3,2],[1,2,1,2]],[[0,2,2,0],[1,3,1,1],[1,2,4,2],[1,2,2,0]],[[0,2,2,0],[1,3,1,1],[1,2,3,3],[1,2,2,0]],[[0,2,2,0],[1,3,1,1],[1,2,3,2],[2,2,2,0]],[[0,2,2,0],[1,3,1,1],[1,2,3,2],[1,3,2,0]],[[0,2,2,0],[1,3,1,1],[1,2,3,2],[1,2,3,0]],[[0,3,2,0],[1,3,1,1],[1,3,1,2],[1,2,2,1]],[[0,2,3,0],[1,3,1,1],[1,3,1,2],[1,2,2,1]],[[0,2,2,0],[1,4,1,1],[1,3,1,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,4,1,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,1,3],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,1,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,1,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,1,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,1],[1,3,1,2],[1,2,2,2]],[[0,3,2,0],[1,3,1,1],[1,3,2,1],[1,2,2,1]],[[0,2,3,0],[1,3,1,1],[1,3,2,1],[1,2,2,1]],[[0,2,2,0],[1,4,1,1],[1,3,2,1],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,4,2,1],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,2,1],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,2,1],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,2,1],[1,2,3,1]],[[0,2,2,0],[1,3,1,1],[1,3,2,1],[1,2,2,2]],[[0,2,2,0],[1,3,1,1],[1,3,2,3],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,2,2],[1,1,3,1]],[[0,2,2,0],[1,3,1,1],[1,3,2,2],[1,1,2,2]],[[0,3,2,0],[1,3,1,1],[1,3,2,2],[1,2,2,0]],[[0,2,3,0],[1,3,1,1],[1,3,2,2],[1,2,2,0]],[[0,2,2,0],[1,4,1,1],[1,3,2,2],[1,2,2,0]],[[0,2,2,0],[1,3,1,1],[1,4,2,2],[1,2,2,0]],[[0,2,2,0],[1,3,1,1],[1,3,2,2],[2,2,2,0]],[[0,2,2,0],[1,3,1,1],[1,3,2,2],[1,3,2,0]],[[0,2,2,0],[1,3,1,1],[1,3,2,2],[1,2,3,0]],[[0,3,2,0],[1,3,1,1],[1,3,3,0],[1,2,2,1]],[[0,2,2,0],[1,4,1,1],[1,3,3,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,4,3,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,0],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,0],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,0],[1,2,3,1]],[[0,3,2,0],[1,3,1,1],[1,3,3,1],[1,1,2,1]],[[0,2,3,0],[1,3,1,1],[1,3,3,1],[1,1,2,1]],[[0,2,2,0],[1,4,1,1],[1,3,3,1],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[1,4,3,1],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,4,1],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,1],[1,1,3,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,1],[1,1,2,2]],[[0,3,2,0],[1,3,1,1],[1,3,3,1],[1,2,1,1]],[[0,2,3,0],[1,3,1,1],[1,3,3,1],[1,2,1,1]],[[0,2,2,0],[1,4,1,1],[1,3,3,1],[1,2,1,1]],[[0,2,2,0],[1,3,1,1],[1,4,3,1],[1,2,1,1]],[[0,2,2,0],[1,3,1,1],[1,3,4,1],[1,2,1,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,1],[2,2,1,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,1],[1,3,1,1]],[[0,2,2,0],[1,3,1,1],[1,3,4,2],[1,0,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,3],[1,0,2,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,2],[1,0,2,2]],[[0,3,2,0],[1,3,1,1],[1,3,3,2],[1,1,1,1]],[[0,2,3,0],[1,3,1,1],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,4,1,1],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[1,3,1,1],[1,4,3,2],[1,1,1,1]],[[0,2,2,0],[1,3,1,1],[1,3,4,2],[1,1,1,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,3],[1,1,1,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,2],[1,1,1,2]],[[0,3,2,0],[1,3,1,1],[1,3,3,2],[1,1,2,0]],[[0,2,3,0],[1,3,1,1],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[1,4,1,1],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[1,3,1,1],[1,4,3,2],[1,1,2,0]],[[0,2,2,0],[1,3,1,1],[1,3,4,2],[1,1,2,0]],[[0,2,2,0],[1,3,1,1],[1,3,3,3],[1,1,2,0]],[[0,2,2,0],[1,3,1,1],[1,3,3,2],[1,1,3,0]],[[0,3,2,0],[1,3,1,1],[1,3,3,2],[1,2,0,1]],[[0,2,3,0],[1,3,1,1],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[1,4,1,1],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[1,3,1,1],[1,4,3,2],[1,2,0,1]],[[0,2,2,0],[1,3,1,1],[1,3,4,2],[1,2,0,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,3],[1,2,0,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,2],[2,2,0,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,2],[1,3,0,1]],[[0,2,2,0],[1,3,1,1],[1,3,3,2],[1,2,0,2]],[[0,3,2,0],[1,3,1,1],[1,3,3,2],[1,2,1,0]],[[0,2,3,0],[1,3,1,1],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[1,4,1,1],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[1,3,1,1],[1,4,3,2],[1,2,1,0]],[[0,2,2,0],[1,3,1,1],[1,3,4,2],[1,2,1,0]],[[0,2,2,0],[1,3,1,1],[1,3,3,3],[1,2,1,0]],[[0,2,2,0],[1,3,1,1],[1,3,3,2],[2,2,1,0]],[[0,2,2,0],[1,3,1,1],[1,3,3,2],[1,3,1,0]],[[0,2,2,0],[1,3,1,1],[3,1,2,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,1,2,3],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,1,2,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,1,2,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[2,1,2,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,1],[2,1,2,2],[1,2,2,2]],[[0,2,2,0],[1,3,1,1],[3,1,3,1],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,1,4,1],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,1,3,1],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,1,3,1],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[2,1,3,1],[1,2,3,1]],[[0,2,2,0],[1,3,1,1],[2,1,3,1],[1,2,2,2]],[[0,2,2,0],[1,3,1,1],[2,1,4,2],[1,2,1,1]],[[0,2,2,0],[1,3,1,1],[2,1,3,3],[1,2,1,1]],[[0,2,2,0],[1,3,1,1],[2,1,3,2],[1,2,1,2]],[[0,2,2,0],[1,3,1,1],[3,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,1,4,2],[1,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,1,3,3],[1,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,1,3,2],[2,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,1,3,2],[1,3,2,0]],[[0,2,2,0],[1,3,1,1],[2,1,3,2],[1,2,3,0]],[[0,2,2,0],[1,3,1,1],[3,2,1,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,1,3],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,1,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,1,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,1,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,1],[2,2,1,2],[1,2,2,2]],[[0,2,2,0],[1,3,1,1],[3,2,2,1],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,2,1],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,2,1],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,2,1],[1,2,3,1]],[[0,2,2,0],[1,3,1,1],[2,2,2,1],[1,2,2,2]],[[0,2,2,0],[1,3,1,1],[2,2,2,3],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,2,2],[0,3,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,2,2],[0,2,3,1]],[[0,2,2,0],[1,3,1,1],[2,2,2,2],[0,2,2,2]],[[0,2,2,0],[1,3,1,1],[3,2,2,2],[1,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,2,2,2],[2,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,2,2,2],[1,3,2,0]],[[0,2,2,0],[1,3,1,1],[2,2,2,2],[1,2,3,0]],[[0,2,2,0],[1,3,1,1],[3,2,3,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,0],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,0],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,0],[1,2,3,1]],[[0,2,2,0],[1,3,1,1],[2,2,4,1],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,1],[0,3,2,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,1],[0,2,3,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,1],[0,2,2,2]],[[0,2,2,0],[1,3,1,1],[3,2,3,1],[1,2,1,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,1],[2,2,1,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,1],[1,3,1,1]],[[0,2,2,0],[1,3,1,1],[2,2,4,2],[0,2,1,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,3],[0,2,1,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,2],[0,2,1,2]],[[0,2,2,0],[1,3,1,1],[2,2,4,2],[0,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,2,3,3],[0,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,2,3,2],[0,3,2,0]],[[0,2,2,0],[1,3,1,1],[2,2,3,2],[0,2,3,0]],[[0,2,2,0],[1,3,1,1],[3,2,3,2],[1,2,0,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,2],[2,2,0,1]],[[0,2,2,0],[1,3,1,1],[2,2,3,2],[1,3,0,1]],[[0,2,2,0],[1,3,1,1],[3,2,3,2],[1,2,1,0]],[[0,2,2,0],[1,3,1,1],[2,2,3,2],[2,2,1,0]],[[0,2,2,0],[1,3,1,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,1,3,3],[2,0,3,1],[1,2,1,0]],[[1,2,2,2],[1,1,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,3,1],[1,1,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,1],[1,1,3,3],[2,0,3,1],[1,2,0,1]],[[0,2,2,0],[1,3,1,1],[3,3,0,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,0,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,0,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,1],[3,3,1,1],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,1,1],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,1,1],[1,3,2,1]],[[0,3,2,0],[1,3,1,1],[2,3,1,2],[0,2,2,1]],[[0,2,3,0],[1,3,1,1],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[1,4,1,1],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[3,3,1,2],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,4,1,2],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,1,3],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,1,2],[0,3,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,1,2],[0,2,3,1]],[[0,2,2,0],[1,3,1,1],[2,3,1,2],[0,2,2,2]],[[0,3,2,0],[1,3,1,1],[2,3,1,2],[1,1,2,1]],[[0,2,3,0],[1,3,1,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[1,4,1,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[3,3,1,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[2,4,1,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,1,2],[2,1,2,1]],[[0,2,2,0],[1,3,1,1],[3,3,1,2],[1,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,1,2],[2,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,1,2],[1,3,2,0]],[[0,2,2,0],[1,3,1,1],[3,3,2,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,2,0],[2,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,2,0],[1,3,2,1]],[[0,3,2,0],[1,3,1,1],[2,3,2,1],[0,2,2,1]],[[0,2,3,0],[1,3,1,1],[2,3,2,1],[0,2,2,1]],[[0,2,2,0],[1,4,1,1],[2,3,2,1],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[3,3,2,1],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,4,2,1],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,2,1],[0,3,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,2,1],[0,2,3,1]],[[0,2,2,0],[1,3,1,1],[2,3,2,1],[0,2,2,2]],[[0,3,2,0],[1,3,1,1],[2,3,2,1],[1,1,2,1]],[[0,2,3,0],[1,3,1,1],[2,3,2,1],[1,1,2,1]],[[0,2,2,0],[1,4,1,1],[2,3,2,1],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[3,3,2,1],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[2,4,2,1],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,2,1],[2,1,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,2,3],[0,1,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,2,2],[0,1,3,1]],[[0,2,2,0],[1,3,1,1],[2,3,2,2],[0,1,2,2]],[[0,3,2,0],[1,3,1,1],[2,3,2,2],[0,2,2,0]],[[0,2,3,0],[1,3,1,1],[2,3,2,2],[0,2,2,0]],[[0,2,2,0],[1,4,1,1],[2,3,2,2],[0,2,2,0]],[[0,2,2,0],[1,3,1,1],[3,3,2,2],[0,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,4,2,2],[0,2,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,2,2],[0,3,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,2,2],[0,2,3,0]],[[0,2,2,0],[1,3,1,1],[2,3,2,3],[1,0,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,2,2],[1,0,3,1]],[[0,2,2,0],[1,3,1,1],[2,3,2,2],[1,0,2,2]],[[0,3,2,0],[1,3,1,1],[2,3,2,2],[1,1,2,0]],[[0,2,3,0],[1,3,1,1],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,4,1,1],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,3,1,1],[3,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,3,1,1],[2,4,2,2],[1,1,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,2],[1,1,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,3,1],[1,1,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,2,1],[1,1,3,3],[2,0,3,1],[1,1,2,0]],[[1,2,2,2],[1,1,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,3,1],[1,1,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,1],[1,1,3,3],[2,0,3,1],[1,1,1,1]],[[1,2,2,2],[1,1,3,2],[2,0,3,1],[1,1,1,1]],[[0,3,2,0],[1,3,1,1],[2,3,3,0],[0,2,2,1]],[[0,2,2,0],[1,4,1,1],[2,3,3,0],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[3,3,3,0],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,4,3,0],[0,2,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,0],[0,3,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,0],[0,2,3,1]],[[0,3,2,0],[1,3,1,1],[2,3,3,0],[1,1,2,1]],[[0,2,2,0],[1,4,1,1],[2,3,3,0],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[3,3,3,0],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[2,4,3,0],[1,1,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,0],[2,1,2,1]],[[0,3,2,0],[1,3,1,1],[2,3,3,1],[0,1,2,1]],[[0,2,3,0],[1,3,1,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[1,4,1,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[1,3,1,1],[3,3,3,1],[0,1,2,1]],[[0,2,2,0],[1,3,1,1],[2,4,3,1],[0,1,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,4,1],[0,1,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,1],[0,1,3,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,1],[0,1,2,2]],[[0,3,2,0],[1,3,1,1],[2,3,3,1],[0,2,1,1]],[[0,2,3,0],[1,3,1,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[1,4,1,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[1,3,1,1],[3,3,3,1],[0,2,1,1]],[[0,2,2,0],[1,3,1,1],[2,4,3,1],[0,2,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,4,1],[0,2,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,1],[0,3,1,1]],[[0,3,2,0],[1,3,1,1],[2,3,3,1],[1,0,2,1]],[[0,2,3,0],[1,3,1,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,4,1,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,3,1,1],[3,3,3,1],[1,0,2,1]],[[0,2,2,0],[1,3,1,1],[2,4,3,1],[1,0,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,4,1],[1,0,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,1],[2,0,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,1],[1,0,3,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,1],[1,0,2,2]],[[0,3,2,0],[1,3,1,1],[2,3,3,1],[1,1,1,1]],[[0,2,3,0],[1,3,1,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,4,1,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,3,1,1],[3,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,3,1,1],[2,4,3,1],[1,1,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,4,1],[1,1,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,1],[2,1,1,1]],[[0,3,2,0],[1,3,1,1],[2,3,3,1],[1,2,0,1]],[[0,2,2,0],[1,4,1,1],[2,3,3,1],[1,2,0,1]],[[0,2,2,0],[1,3,1,1],[3,3,3,1],[1,2,0,1]],[[0,2,2,0],[1,3,1,1],[2,4,3,1],[1,2,0,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,1],[2,2,0,1]],[[1,2,3,1],[1,1,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,1],[1,1,3,3],[2,0,3,1],[0,2,2,0]],[[1,2,2,2],[1,1,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,3,1],[1,1,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,1],[1,1,3,3],[2,0,3,1],[0,2,1,1]],[[1,2,2,2],[1,1,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,3,1],[1,1,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,4,2],[0,0,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,3],[0,0,2,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[0,0,2,2]],[[0,3,2,0],[1,3,1,1],[2,3,3,2],[0,1,1,1]],[[0,2,3,0],[1,3,1,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,4,1,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,3,1,1],[3,3,3,2],[0,1,1,1]],[[0,2,2,0],[1,3,1,1],[2,4,3,2],[0,1,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,4,2],[0,1,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,3],[0,1,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[0,1,1,2]],[[0,3,2,0],[1,3,1,1],[2,3,3,2],[0,1,2,0]],[[0,2,3,0],[1,3,1,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,4,1,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,3,1,1],[3,3,3,2],[0,1,2,0]],[[0,2,2,0],[1,3,1,1],[2,4,3,2],[0,1,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,4,2],[0,1,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,3,3],[0,1,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[0,1,3,0]],[[0,3,2,0],[1,3,1,1],[2,3,3,2],[0,2,0,1]],[[0,2,3,0],[1,3,1,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,4,1,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,3,1,1],[3,3,3,2],[0,2,0,1]],[[0,2,2,0],[1,3,1,1],[2,4,3,2],[0,2,0,1]],[[0,2,2,0],[1,3,1,1],[2,3,4,2],[0,2,0,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,3],[0,2,0,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[0,3,0,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[0,2,0,2]],[[0,3,2,0],[1,3,1,1],[2,3,3,2],[0,2,1,0]],[[0,2,3,0],[1,3,1,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,4,1,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,3,1,1],[3,3,3,2],[0,2,1,0]],[[0,2,2,0],[1,3,1,1],[2,4,3,2],[0,2,1,0]],[[0,2,2,0],[1,3,1,1],[2,3,4,2],[0,2,1,0]],[[0,2,2,0],[1,3,1,1],[2,3,3,3],[0,2,1,0]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[0,3,1,0]],[[0,3,2,0],[1,3,1,1],[2,3,3,2],[1,0,1,1]],[[0,2,3,0],[1,3,1,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,4,1,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,3,1,1],[3,3,3,2],[1,0,1,1]],[[0,2,2,0],[1,3,1,1],[2,4,3,2],[1,0,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,4,2],[1,0,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,3],[1,0,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[2,0,1,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[1,0,1,2]],[[0,3,2,0],[1,3,1,1],[2,3,3,2],[1,0,2,0]],[[0,2,3,0],[1,3,1,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,4,1,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,3,1,1],[3,3,3,2],[1,0,2,0]],[[0,2,2,0],[1,3,1,1],[2,4,3,2],[1,0,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,4,2],[1,0,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,3,3],[1,0,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[2,0,2,0]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[1,0,3,0]],[[0,3,2,0],[1,3,1,1],[2,3,3,2],[1,1,0,1]],[[0,2,3,0],[1,3,1,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,4,1,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,3,1,1],[3,3,3,2],[1,1,0,1]],[[0,2,2,0],[1,3,1,1],[2,4,3,2],[1,1,0,1]],[[0,2,2,0],[1,3,1,1],[2,3,4,2],[1,1,0,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,3],[1,1,0,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[2,1,0,1]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[1,1,0,2]],[[0,3,2,0],[1,3,1,1],[2,3,3,2],[1,1,1,0]],[[0,2,3,0],[1,3,1,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,4,1,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,3,1,1],[3,3,3,2],[1,1,1,0]],[[0,2,2,0],[1,3,1,1],[2,4,3,2],[1,1,1,0]],[[0,2,2,0],[1,3,1,1],[2,3,4,2],[1,1,1,0]],[[0,2,2,0],[1,3,1,1],[2,3,3,3],[1,1,1,0]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[1,1,4,2],[2,0,3,0],[1,2,2,0]],[[1,2,2,2],[1,1,3,2],[2,0,3,0],[1,2,2,0]],[[1,2,3,1],[1,1,3,2],[2,0,3,0],[1,2,2,0]],[[1,3,2,1],[1,1,3,2],[2,0,3,0],[1,2,2,0]],[[2,2,2,1],[1,1,3,2],[2,0,3,0],[1,2,2,0]],[[1,2,2,1],[1,1,3,3],[2,0,3,0],[1,1,2,1]],[[1,2,2,2],[1,1,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,3,1],[1,1,3,2],[2,0,3,0],[1,1,2,1]],[[0,3,2,0],[1,3,1,1],[2,3,3,2],[1,2,0,0]],[[0,2,3,0],[1,3,1,1],[2,3,3,2],[1,2,0,0]],[[0,2,2,0],[1,4,1,1],[2,3,3,2],[1,2,0,0]],[[0,2,2,0],[1,3,1,1],[3,3,3,2],[1,2,0,0]],[[0,2,2,0],[1,3,1,1],[2,4,3,2],[1,2,0,0]],[[0,2,2,0],[1,3,1,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,1,3,3],[2,0,3,0],[0,2,2,1]],[[1,2,2,2],[1,1,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,3,1],[1,1,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,1],[1,1,3,3],[2,0,2,2],[1,2,1,0]],[[1,2,2,2],[1,1,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,3,1],[1,1,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,1],[1,1,3,2],[2,0,2,3],[1,2,0,1]],[[1,2,2,1],[1,1,3,3],[2,0,2,2],[1,2,0,1]],[[1,2,2,2],[1,1,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,3,1],[1,1,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,1],[1,1,3,2],[2,0,2,3],[1,1,2,0]],[[0,2,2,0],[1,3,1,2],[0,3,4,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[0,3,3,0],[1,3,2,1]],[[0,2,2,0],[1,3,1,2],[0,3,3,0],[1,2,3,1]],[[0,2,2,0],[1,3,1,2],[0,3,3,0],[1,2,2,2]],[[0,2,2,0],[1,3,1,2],[0,3,4,1],[1,2,2,0]],[[0,2,2,0],[1,3,1,2],[0,3,3,1],[1,3,2,0]],[[0,2,2,0],[1,3,1,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,1],[1,1,3,3],[2,0,2,2],[1,1,2,0]],[[1,2,2,2],[1,1,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,3,1],[1,1,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,1],[1,1,3,2],[2,0,2,2],[1,1,1,2]],[[1,2,2,1],[1,1,3,2],[2,0,2,3],[1,1,1,1]],[[1,2,2,1],[1,1,3,3],[2,0,2,2],[1,1,1,1]],[[0,2,2,0],[1,3,1,2],[1,2,4,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[1,2,3,0],[2,2,2,1]],[[0,2,2,0],[1,3,1,2],[1,2,3,0],[1,3,2,1]],[[0,2,2,0],[1,3,1,2],[1,2,3,0],[1,2,3,1]],[[0,2,2,0],[1,3,1,2],[1,2,3,0],[1,2,2,2]],[[0,2,2,0],[1,3,1,2],[1,2,4,1],[1,2,2,0]],[[0,2,2,0],[1,3,1,2],[1,2,3,1],[2,2,2,0]],[[0,2,2,0],[1,3,1,2],[1,2,3,1],[1,3,2,0]],[[0,2,2,0],[1,3,1,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,2],[1,1,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,3,1],[1,1,3,2],[2,0,2,2],[1,1,1,1]],[[0,3,2,0],[1,3,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,3,0],[1,3,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[1,4,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,3],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[1,4,0,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[1,3,0,3],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[1,3,0,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,2],[1,3,0,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,2],[1,3,0,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,2],[1,3,0,2],[1,2,2,2]],[[0,3,2,0],[1,3,1,2],[1,3,2,0],[1,2,2,1]],[[0,2,3,0],[1,3,1,2],[1,3,2,0],[1,2,2,1]],[[0,2,2,0],[1,4,1,2],[1,3,2,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[1,4,2,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[1,3,2,0],[2,2,2,1]],[[0,2,2,0],[1,3,1,2],[1,3,2,0],[1,3,2,1]],[[0,2,2,0],[1,3,1,2],[1,3,2,0],[1,2,3,1]],[[0,2,2,0],[1,3,1,2],[1,3,2,0],[1,2,2,2]],[[0,3,2,0],[1,3,1,2],[1,3,2,1],[1,2,2,0]],[[0,2,3,0],[1,3,1,2],[1,3,2,1],[1,2,2,0]],[[0,2,2,0],[1,4,1,2],[1,3,2,1],[1,2,2,0]],[[0,2,2,0],[1,3,1,2],[1,4,2,1],[1,2,2,0]],[[0,2,2,0],[1,3,1,2],[1,3,2,1],[2,2,2,0]],[[0,2,2,0],[1,3,1,2],[1,3,2,1],[1,3,2,0]],[[0,2,2,0],[1,3,1,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[1,1,3,2],[2,0,2,3],[0,2,2,0]],[[1,2,2,1],[1,1,3,3],[2,0,2,2],[0,2,2,0]],[[1,2,2,2],[1,1,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,3,1],[1,1,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,1],[1,1,3,2],[2,0,2,2],[0,2,1,2]],[[1,2,2,1],[1,1,3,2],[2,0,2,3],[0,2,1,1]],[[1,2,2,1],[1,1,3,3],[2,0,2,2],[0,2,1,1]],[[1,2,2,2],[1,1,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,3,1],[1,1,3,2],[2,0,2,2],[0,2,1,1]],[[0,3,2,0],[1,3,1,2],[1,3,3,0],[1,1,2,1]],[[0,2,3,0],[1,3,1,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[1,4,1,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[1,3,1,2],[1,4,3,0],[1,1,2,1]],[[0,2,2,0],[1,3,1,2],[1,3,4,0],[1,1,2,1]],[[0,2,2,0],[1,3,1,2],[1,3,3,0],[1,1,3,1]],[[0,2,2,0],[1,3,1,2],[1,3,3,0],[1,1,2,2]],[[0,3,2,0],[1,3,1,2],[1,3,3,0],[1,2,1,1]],[[0,2,3,0],[1,3,1,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,0],[1,4,1,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,0],[1,3,1,2],[1,4,3,0],[1,2,1,1]],[[0,2,2,0],[1,3,1,2],[1,3,4,0],[1,2,1,1]],[[0,2,2,0],[1,3,1,2],[1,3,3,0],[2,2,1,1]],[[0,2,2,0],[1,3,1,2],[1,3,3,0],[1,3,1,1]],[[0,3,2,0],[1,3,1,2],[1,3,3,1],[1,1,1,1]],[[0,2,3,0],[1,3,1,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,4,1,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[1,3,1,2],[1,4,3,1],[1,1,1,1]],[[0,2,2,0],[1,3,1,2],[1,3,4,1],[1,1,1,1]],[[0,3,2,0],[1,3,1,2],[1,3,3,1],[1,1,2,0]],[[0,2,3,0],[1,3,1,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,0],[1,4,1,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,0],[1,3,1,2],[1,4,3,1],[1,1,2,0]],[[0,2,2,0],[1,3,1,2],[1,3,4,1],[1,1,2,0]],[[0,2,2,0],[1,3,1,2],[1,3,3,1],[1,1,3,0]],[[0,3,2,0],[1,3,1,2],[1,3,3,1],[1,2,0,1]],[[0,2,3,0],[1,3,1,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[1,4,1,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[1,3,1,2],[1,4,3,1],[1,2,0,1]],[[0,2,2,0],[1,3,1,2],[1,3,4,1],[1,2,0,1]],[[0,2,2,0],[1,3,1,2],[1,3,3,1],[2,2,0,1]],[[0,2,2,0],[1,3,1,2],[1,3,3,1],[1,3,0,1]],[[0,3,2,0],[1,3,1,2],[1,3,3,1],[1,2,1,0]],[[0,2,3,0],[1,3,1,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,0],[1,4,1,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,0],[1,3,1,2],[1,4,3,1],[1,2,1,0]],[[0,2,2,0],[1,3,1,2],[1,3,4,1],[1,2,1,0]],[[0,2,2,0],[1,3,1,2],[1,3,3,1],[2,2,1,0]],[[0,2,2,0],[1,3,1,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,1,3,2],[2,0,1,2],[1,1,2,2]],[[1,2,2,1],[1,1,3,2],[2,0,1,3],[1,1,2,1]],[[1,2,2,1],[1,1,3,3],[2,0,1,2],[1,1,2,1]],[[1,2,2,2],[1,1,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,3,1],[1,1,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,1],[1,1,3,2],[2,0,1,2],[0,2,2,2]],[[1,2,2,1],[1,1,3,2],[2,0,1,2],[0,2,3,1]],[[1,2,2,1],[1,1,3,2],[2,0,1,3],[0,2,2,1]],[[1,2,2,1],[1,1,3,3],[2,0,1,2],[0,2,2,1]],[[1,2,2,2],[1,1,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,3,1],[1,1,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,1],[1,1,3,3],[2,0,0,2],[1,2,2,1]],[[1,2,2,2],[1,1,3,2],[2,0,0,2],[1,2,2,1]],[[1,2,3,1],[1,1,3,2],[2,0,0,2],[1,2,2,1]],[[1,3,2,1],[1,1,3,2],[2,0,0,2],[1,2,2,1]],[[2,2,2,1],[1,1,3,2],[2,0,0,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[3,1,3,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,1,4,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,1,3,0],[2,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,1,3,0],[1,3,2,1]],[[0,2,2,0],[1,3,1,2],[2,1,3,0],[1,2,3,1]],[[0,2,2,0],[1,3,1,2],[2,1,3,0],[1,2,2,2]],[[0,2,2,0],[1,3,1,2],[3,1,3,1],[1,2,2,0]],[[0,2,2,0],[1,3,1,2],[2,1,4,1],[1,2,2,0]],[[0,2,2,0],[1,3,1,2],[2,1,3,1],[2,2,2,0]],[[0,2,2,0],[1,3,1,2],[2,1,3,1],[1,3,2,0]],[[0,2,2,0],[1,3,1,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[1,1,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[1,1,3,3],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[1,1,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[1,1,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,0],[1,3,1,3],[2,2,0,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[3,2,0,2],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,2,0,3],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,2,0,2],[2,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,2,0,2],[1,3,2,1]],[[0,2,2,0],[1,3,1,2],[2,2,0,2],[1,2,3,1]],[[0,2,2,0],[1,3,1,2],[2,2,0,2],[1,2,2,2]],[[0,2,2,0],[1,3,1,2],[3,2,2,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,2,2,0],[2,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,2,2,0],[1,3,2,1]],[[0,2,2,0],[1,3,1,2],[2,2,2,0],[1,2,3,1]],[[0,2,2,0],[1,3,1,2],[2,2,2,0],[1,2,2,2]],[[0,2,2,0],[1,3,1,2],[3,2,2,1],[1,2,2,0]],[[0,2,2,0],[1,3,1,2],[2,2,2,1],[2,2,2,0]],[[0,2,2,0],[1,3,1,2],[2,2,2,1],[1,3,2,0]],[[0,2,2,0],[1,3,1,2],[2,2,2,1],[1,2,3,0]],[[0,2,2,0],[1,3,1,2],[2,2,4,0],[0,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,2,3,0],[0,3,2,1]],[[0,2,2,0],[1,3,1,2],[2,2,3,0],[0,2,3,1]],[[0,2,2,0],[1,3,1,2],[2,2,3,0],[0,2,2,2]],[[0,2,2,0],[1,3,1,2],[3,2,3,0],[1,2,1,1]],[[0,2,2,0],[1,3,1,2],[2,2,3,0],[2,2,1,1]],[[0,2,2,0],[1,3,1,2],[2,2,3,0],[1,3,1,1]],[[0,2,2,0],[1,3,1,2],[2,2,4,1],[0,2,2,0]],[[0,2,2,0],[1,3,1,2],[2,2,3,1],[0,3,2,0]],[[0,2,2,0],[1,3,1,2],[2,2,3,1],[0,2,3,0]],[[0,2,2,0],[1,3,1,2],[3,2,3,1],[1,2,0,1]],[[0,2,2,0],[1,3,1,2],[2,2,3,1],[2,2,0,1]],[[0,2,2,0],[1,3,1,2],[2,2,3,1],[1,3,0,1]],[[0,2,2,0],[1,3,1,2],[3,2,3,1],[1,2,1,0]],[[0,2,2,0],[1,3,1,2],[2,2,3,1],[2,2,1,0]],[[0,2,2,0],[1,3,1,2],[2,2,3,1],[1,3,1,0]],[[0,3,2,0],[1,3,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,3,0],[1,3,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,4,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,3,1,3],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,3,1,2],[3,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,4,0,2],[0,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,0,3],[0,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,0,2],[0,3,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,0,2],[0,2,3,1]],[[0,2,2,0],[1,3,1,2],[2,3,0,2],[0,2,2,2]],[[0,3,2,0],[1,3,1,2],[2,3,0,2],[1,1,2,1]],[[0,2,3,0],[1,3,1,2],[2,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,4,1,2],[2,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,2],[3,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,2],[2,4,0,2],[1,1,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,0,2],[2,1,2,1]],[[0,2,2,0],[1,3,1,2],[3,3,1,0],[1,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,1,0],[2,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,1,0],[1,3,2,1]],[[0,2,2,0],[1,3,1,2],[3,3,1,1],[1,2,2,0]],[[0,2,2,0],[1,3,1,2],[2,3,1,1],[2,2,2,0]],[[0,2,2,0],[1,3,1,2],[2,3,1,1],[1,3,2,0]],[[0,3,2,0],[1,3,1,2],[2,3,2,0],[0,2,2,1]],[[0,2,3,0],[1,3,1,2],[2,3,2,0],[0,2,2,1]],[[0,2,2,0],[1,4,1,2],[2,3,2,0],[0,2,2,1]],[[0,2,2,0],[1,3,1,2],[3,3,2,0],[0,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,4,2,0],[0,2,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,2,0],[0,3,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,2,0],[0,2,3,1]],[[0,2,2,0],[1,3,1,2],[2,3,2,0],[0,2,2,2]],[[0,3,2,0],[1,3,1,2],[2,3,2,0],[1,1,2,1]],[[0,2,3,0],[1,3,1,2],[2,3,2,0],[1,1,2,1]],[[0,2,2,0],[1,4,1,2],[2,3,2,0],[1,1,2,1]],[[0,2,2,0],[1,3,1,2],[3,3,2,0],[1,1,2,1]],[[0,2,2,0],[1,3,1,2],[2,4,2,0],[1,1,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,2,0],[2,1,2,1]],[[0,3,2,0],[1,3,1,2],[2,3,2,1],[0,2,2,0]],[[0,2,3,0],[1,3,1,2],[2,3,2,1],[0,2,2,0]],[[0,2,2,0],[1,4,1,2],[2,3,2,1],[0,2,2,0]],[[0,2,2,0],[1,3,1,2],[3,3,2,1],[0,2,2,0]],[[0,2,2,0],[1,3,1,2],[2,4,2,1],[0,2,2,0]],[[0,2,2,0],[1,3,1,2],[2,3,2,1],[0,3,2,0]],[[0,2,2,0],[1,3,1,2],[2,3,2,1],[0,2,3,0]],[[0,3,2,0],[1,3,1,2],[2,3,2,1],[1,1,2,0]],[[0,2,3,0],[1,3,1,2],[2,3,2,1],[1,1,2,0]],[[0,2,2,0],[1,4,1,2],[2,3,2,1],[1,1,2,0]],[[0,2,2,0],[1,3,1,2],[3,3,2,1],[1,1,2,0]],[[0,2,2,0],[1,3,1,2],[2,4,2,1],[1,1,2,0]],[[0,2,2,0],[1,3,1,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[1,1,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[1,1,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[1,1,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[1,1,3,3],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[1,1,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[1,1,3,2],[1,3,3,1],[0,0,1,1]],[[0,3,2,0],[1,3,1,2],[2,3,3,0],[0,1,2,1]],[[0,2,3,0],[1,3,1,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[1,4,1,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[1,3,1,2],[3,3,3,0],[0,1,2,1]],[[0,2,2,0],[1,3,1,2],[2,4,3,0],[0,1,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,4,0],[0,1,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,3,0],[0,1,3,1]],[[0,2,2,0],[1,3,1,2],[2,3,3,0],[0,1,2,2]],[[0,3,2,0],[1,3,1,2],[2,3,3,0],[0,2,1,1]],[[0,2,3,0],[1,3,1,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[1,4,1,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[1,3,1,2],[3,3,3,0],[0,2,1,1]],[[0,2,2,0],[1,3,1,2],[2,4,3,0],[0,2,1,1]],[[0,2,2,0],[1,3,1,2],[2,3,4,0],[0,2,1,1]],[[0,2,2,0],[1,3,1,2],[2,3,3,0],[0,3,1,1]],[[0,3,2,0],[1,3,1,2],[2,3,3,0],[1,0,2,1]],[[0,2,3,0],[1,3,1,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[1,4,1,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[1,3,1,2],[3,3,3,0],[1,0,2,1]],[[0,2,2,0],[1,3,1,2],[2,4,3,0],[1,0,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,4,0],[1,0,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,3,0],[2,0,2,1]],[[0,2,2,0],[1,3,1,2],[2,3,3,0],[1,0,3,1]],[[0,2,2,0],[1,3,1,2],[2,3,3,0],[1,0,2,2]],[[0,3,2,0],[1,3,1,2],[2,3,3,0],[1,1,1,1]],[[0,2,3,0],[1,3,1,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,0],[1,4,1,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,0],[1,3,1,2],[3,3,3,0],[1,1,1,1]],[[0,2,2,0],[1,3,1,2],[2,4,3,0],[1,1,1,1]],[[0,2,2,0],[1,3,1,2],[2,3,4,0],[1,1,1,1]],[[0,2,2,0],[1,3,1,2],[2,3,3,0],[2,1,1,1]],[[0,3,2,0],[1,3,1,2],[2,3,3,0],[1,2,0,1]],[[0,2,3,0],[1,3,1,2],[2,3,3,0],[1,2,0,1]],[[0,2,2,0],[1,4,1,2],[2,3,3,0],[1,2,0,1]],[[0,2,2,0],[1,3,1,2],[3,3,3,0],[1,2,0,1]],[[0,2,2,0],[1,3,1,2],[2,4,3,0],[1,2,0,1]],[[0,2,2,0],[1,3,1,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[1,1,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,2],[1,1,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,3,1],[1,1,3,2],[1,3,3,0],[1,1,1,0]],[[1,3,2,1],[1,1,3,2],[1,3,3,0],[1,1,1,0]],[[2,2,2,1],[1,1,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[1,1,4,2],[1,3,3,0],[1,1,0,1]],[[1,2,2,2],[1,1,3,2],[1,3,3,0],[1,1,0,1]],[[1,2,3,1],[1,1,3,2],[1,3,3,0],[1,1,0,1]],[[1,3,2,1],[1,1,3,2],[1,3,3,0],[1,1,0,1]],[[2,2,2,1],[1,1,3,2],[1,3,3,0],[1,1,0,1]],[[0,3,2,0],[1,3,1,2],[2,3,3,1],[0,1,1,1]],[[0,2,3,0],[1,3,1,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,0],[1,4,1,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,0],[1,3,1,2],[3,3,3,1],[0,1,1,1]],[[0,2,2,0],[1,3,1,2],[2,4,3,1],[0,1,1,1]],[[0,2,2,0],[1,3,1,2],[2,3,4,1],[0,1,1,1]],[[0,3,2,0],[1,3,1,2],[2,3,3,1],[0,1,2,0]],[[0,2,3,0],[1,3,1,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[1,4,1,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[1,3,1,2],[3,3,3,1],[0,1,2,0]],[[0,2,2,0],[1,3,1,2],[2,4,3,1],[0,1,2,0]],[[0,2,2,0],[1,3,1,2],[2,3,4,1],[0,1,2,0]],[[0,2,2,0],[1,3,1,2],[2,3,3,1],[0,1,3,0]],[[0,3,2,0],[1,3,1,2],[2,3,3,1],[0,2,0,1]],[[0,2,3,0],[1,3,1,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[1,4,1,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[1,3,1,2],[3,3,3,1],[0,2,0,1]],[[0,2,2,0],[1,3,1,2],[2,4,3,1],[0,2,0,1]],[[0,2,2,0],[1,3,1,2],[2,3,4,1],[0,2,0,1]],[[0,2,2,0],[1,3,1,2],[2,3,3,1],[0,3,0,1]],[[0,3,2,0],[1,3,1,2],[2,3,3,1],[0,2,1,0]],[[0,2,3,0],[1,3,1,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[1,4,1,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[1,3,1,2],[3,3,3,1],[0,2,1,0]],[[0,2,2,0],[1,3,1,2],[2,4,3,1],[0,2,1,0]],[[0,2,2,0],[1,3,1,2],[2,3,4,1],[0,2,1,0]],[[0,2,2,0],[1,3,1,2],[2,3,3,1],[0,3,1,0]],[[0,3,2,0],[1,3,1,2],[2,3,3,1],[1,0,1,1]],[[0,2,3,0],[1,3,1,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[1,4,1,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[1,3,1,2],[3,3,3,1],[1,0,1,1]],[[0,2,2,0],[1,3,1,2],[2,4,3,1],[1,0,1,1]],[[0,2,2,0],[1,3,1,2],[2,3,4,1],[1,0,1,1]],[[0,2,2,0],[1,3,1,2],[2,3,3,1],[2,0,1,1]],[[0,3,2,0],[1,3,1,2],[2,3,3,1],[1,0,2,0]],[[0,2,3,0],[1,3,1,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,0],[1,4,1,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,0],[1,3,1,2],[3,3,3,1],[1,0,2,0]],[[0,2,2,0],[1,3,1,2],[2,4,3,1],[1,0,2,0]],[[0,2,2,0],[1,3,1,2],[2,3,4,1],[1,0,2,0]],[[0,2,2,0],[1,3,1,2],[2,3,3,1],[2,0,2,0]],[[0,2,2,0],[1,3,1,2],[2,3,3,1],[1,0,3,0]],[[0,3,2,0],[1,3,1,2],[2,3,3,1],[1,1,0,1]],[[0,2,3,0],[1,3,1,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,0],[1,4,1,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,0],[1,3,1,2],[3,3,3,1],[1,1,0,1]],[[0,2,2,0],[1,3,1,2],[2,4,3,1],[1,1,0,1]],[[0,2,2,0],[1,3,1,2],[2,3,4,1],[1,1,0,1]],[[0,2,2,0],[1,3,1,2],[2,3,3,1],[2,1,0,1]],[[0,3,2,0],[1,3,1,2],[2,3,3,1],[1,1,1,0]],[[0,2,3,0],[1,3,1,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,0],[1,4,1,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,0],[1,3,1,2],[3,3,3,1],[1,1,1,0]],[[0,2,2,0],[1,3,1,2],[2,4,3,1],[1,1,1,0]],[[0,2,2,0],[1,3,1,2],[2,3,4,1],[1,1,1,0]],[[0,2,2,0],[1,3,1,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[1,1,4,2],[1,3,3,0],[1,0,2,0]],[[1,2,2,2],[1,1,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,3,1],[1,1,3,2],[1,3,3,0],[1,0,2,0]],[[1,3,2,1],[1,1,3,2],[1,3,3,0],[1,0,2,0]],[[2,2,2,1],[1,1,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,2,1],[1,1,4,2],[1,3,3,0],[1,0,1,1]],[[1,2,2,2],[1,1,3,2],[1,3,3,0],[1,0,1,1]],[[1,2,3,1],[1,1,3,2],[1,3,3,0],[1,0,1,1]],[[0,3,2,0],[1,3,1,2],[2,3,3,1],[1,2,0,0]],[[0,2,3,0],[1,3,1,2],[2,3,3,1],[1,2,0,0]],[[0,2,2,0],[1,4,1,2],[2,3,3,1],[1,2,0,0]],[[0,2,2,0],[1,3,1,2],[3,3,3,1],[1,2,0,0]],[[0,2,2,0],[1,3,1,2],[2,4,3,1],[1,2,0,0]],[[0,2,2,0],[1,3,1,2],[2,3,3,1],[2,2,0,0]],[[1,3,2,1],[1,1,3,2],[1,3,3,0],[1,0,1,1]],[[2,2,2,1],[1,1,3,2],[1,3,3,0],[1,0,1,1]],[[1,2,2,1],[1,1,4,2],[1,3,3,0],[0,2,1,0]],[[1,2,2,2],[1,1,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,3,1],[1,1,3,2],[1,3,3,0],[0,2,1,0]],[[1,3,2,1],[1,1,3,2],[1,3,3,0],[0,2,1,0]],[[2,2,2,1],[1,1,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,2,1],[1,1,4,2],[1,3,3,0],[0,2,0,1]],[[1,2,2,2],[1,1,3,2],[1,3,3,0],[0,2,0,1]],[[1,2,3,1],[1,1,3,2],[1,3,3,0],[0,2,0,1]],[[1,3,2,1],[1,1,3,2],[1,3,3,0],[0,2,0,1]],[[2,2,2,1],[1,1,3,2],[1,3,3,0],[0,2,0,1]],[[1,2,2,1],[1,1,4,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,2],[1,1,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,3,1],[1,1,3,2],[1,3,3,0],[0,1,2,0]],[[1,3,2,1],[1,1,3,2],[1,3,3,0],[0,1,2,0]],[[2,2,2,1],[1,1,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,1],[1,1,4,2],[1,3,3,0],[0,1,1,1]],[[1,2,2,2],[1,1,3,2],[1,3,3,0],[0,1,1,1]],[[1,2,3,1],[1,1,3,2],[1,3,3,0],[0,1,1,1]],[[1,3,2,1],[1,1,3,2],[1,3,3,0],[0,1,1,1]],[[2,2,2,1],[1,1,3,2],[1,3,3,0],[0,1,1,1]],[[1,2,2,1],[1,1,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[1,1,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[1,1,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[1,1,3,2],[1,3,2,3],[0,0,1,1]],[[1,2,2,1],[1,1,3,3],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[1,1,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[1,1,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[1,1,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[1,1,3,3],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[1,1,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[1,1,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[1,1,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,1],[1,1,3,3],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[1,1,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,1],[1,1,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,2,1],[1,1,3,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,2],[1,1,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[1,1,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[1,1,3,3],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[1,1,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[1,1,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[1,1,3,3],[1,2,3,1],[1,0,2,0]],[[0,3,2,0],[1,3,2,1],[1,1,3,1],[1,2,2,1]],[[0,2,3,0],[1,3,2,1],[1,1,3,1],[1,2,2,1]],[[0,2,2,0],[1,4,2,1],[1,1,3,1],[1,2,2,1]],[[0,3,2,0],[1,3,2,1],[1,1,3,2],[1,2,1,1]],[[0,2,3,0],[1,3,2,1],[1,1,3,2],[1,2,1,1]],[[0,2,2,0],[1,4,2,1],[1,1,3,2],[1,2,1,1]],[[0,3,2,0],[1,3,2,1],[1,1,3,2],[1,2,2,0]],[[0,2,3,0],[1,3,2,1],[1,1,3,2],[1,2,2,0]],[[0,2,2,0],[1,4,2,1],[1,1,3,2],[1,2,2,0]],[[0,3,2,0],[1,3,2,1],[1,2,3,1],[1,1,2,1]],[[0,2,3,0],[1,3,2,1],[1,2,3,1],[1,1,2,1]],[[0,2,2,0],[1,4,2,1],[1,2,3,1],[1,1,2,1]],[[0,3,2,0],[1,3,2,1],[1,2,3,1],[1,2,1,1]],[[0,2,3,0],[1,3,2,1],[1,2,3,1],[1,2,1,1]],[[0,2,2,0],[1,4,2,1],[1,2,3,1],[1,2,1,1]],[[0,3,2,0],[1,3,2,1],[1,2,3,2],[1,1,1,1]],[[0,2,3,0],[1,3,2,1],[1,2,3,2],[1,1,1,1]],[[0,2,2,0],[1,4,2,1],[1,2,3,2],[1,1,1,1]],[[0,3,2,0],[1,3,2,1],[1,2,3,2],[1,1,2,0]],[[0,2,3,0],[1,3,2,1],[1,2,3,2],[1,1,2,0]],[[0,2,2,0],[1,4,2,1],[1,2,3,2],[1,1,2,0]],[[0,3,2,0],[1,3,2,1],[1,2,3,2],[1,2,0,1]],[[0,2,3,0],[1,3,2,1],[1,2,3,2],[1,2,0,1]],[[0,2,2,0],[1,4,2,1],[1,2,3,2],[1,2,0,1]],[[0,3,2,0],[1,3,2,1],[1,2,3,2],[1,2,1,0]],[[0,2,3,0],[1,3,2,1],[1,2,3,2],[1,2,1,0]],[[0,2,2,0],[1,4,2,1],[1,2,3,2],[1,2,1,0]],[[1,2,2,2],[1,1,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[1,1,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[1,1,3,3],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[1,1,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[1,1,3,2],[1,2,3,1],[1,0,1,1]],[[0,3,2,0],[1,3,2,1],[1,3,0,2],[1,2,2,1]],[[0,2,3,0],[1,3,2,1],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[1,4,2,1],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[1,3,2,1],[1,4,0,2],[1,2,2,1]],[[0,2,2,0],[1,3,2,1],[1,3,0,3],[1,2,2,1]],[[0,2,2,0],[1,3,2,1],[1,3,0,2],[2,2,2,1]],[[0,2,2,0],[1,3,2,1],[1,3,0,2],[1,3,2,1]],[[0,2,2,0],[1,3,2,1],[1,3,0,2],[1,2,3,1]],[[0,2,2,0],[1,3,2,1],[1,3,0,2],[1,2,2,2]],[[0,3,2,0],[1,3,2,1],[1,3,1,1],[1,2,2,1]],[[0,2,3,0],[1,3,2,1],[1,3,1,1],[1,2,2,1]],[[0,2,2,0],[1,4,2,1],[1,3,1,1],[1,2,2,1]],[[0,2,2,0],[1,3,2,1],[1,4,1,1],[1,2,2,1]],[[0,2,2,0],[1,3,2,1],[1,3,1,1],[2,2,2,1]],[[0,2,2,0],[1,3,2,1],[1,3,1,1],[1,3,2,1]],[[0,2,2,0],[1,3,2,1],[1,3,1,1],[1,2,3,1]],[[0,2,2,0],[1,3,2,1],[1,3,1,1],[1,2,2,2]],[[0,3,2,0],[1,3,2,1],[1,3,1,2],[1,2,2,0]],[[0,2,3,0],[1,3,2,1],[1,3,1,2],[1,2,2,0]],[[0,2,2,0],[1,4,2,1],[1,3,1,2],[1,2,2,0]],[[0,2,2,0],[1,3,2,1],[1,4,1,2],[1,2,2,0]],[[0,2,2,0],[1,3,2,1],[1,3,1,2],[2,2,2,0]],[[0,2,2,0],[1,3,2,1],[1,3,1,2],[1,3,2,0]],[[0,2,2,0],[1,3,2,1],[1,3,1,2],[1,2,3,0]],[[0,3,2,0],[1,3,2,1],[1,3,2,1],[1,1,2,1]],[[0,2,3,0],[1,3,2,1],[1,3,2,1],[1,1,2,1]],[[0,2,2,0],[1,4,2,1],[1,3,2,1],[1,1,2,1]],[[0,2,2,0],[1,3,2,1],[1,4,2,1],[1,1,2,1]],[[0,3,2,0],[1,3,2,1],[1,3,2,1],[1,2,1,1]],[[0,2,3,0],[1,3,2,1],[1,3,2,1],[1,2,1,1]],[[0,2,2,0],[1,4,2,1],[1,3,2,1],[1,2,1,1]],[[0,2,2,0],[1,3,2,1],[1,4,2,1],[1,2,1,1]],[[0,2,2,0],[1,3,2,1],[1,3,2,1],[2,2,1,1]],[[0,2,2,0],[1,3,2,1],[1,3,2,1],[1,3,1,1]],[[0,3,2,0],[1,3,2,1],[1,3,2,2],[1,1,1,1]],[[0,2,3,0],[1,3,2,1],[1,3,2,2],[1,1,1,1]],[[0,2,2,0],[1,4,2,1],[1,3,2,2],[1,1,1,1]],[[0,2,2,0],[1,3,2,1],[1,4,2,2],[1,1,1,1]],[[0,3,2,0],[1,3,2,1],[1,3,2,2],[1,1,2,0]],[[0,2,3,0],[1,3,2,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,4,2,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[1,3,2,1],[1,4,2,2],[1,1,2,0]],[[0,3,2,0],[1,3,2,1],[1,3,2,2],[1,2,0,1]],[[0,2,3,0],[1,3,2,1],[1,3,2,2],[1,2,0,1]],[[0,2,2,0],[1,4,2,1],[1,3,2,2],[1,2,0,1]],[[0,2,2,0],[1,3,2,1],[1,4,2,2],[1,2,0,1]],[[0,2,2,0],[1,3,2,1],[1,3,2,2],[2,2,0,1]],[[0,2,2,0],[1,3,2,1],[1,3,2,2],[1,3,0,1]],[[0,3,2,0],[1,3,2,1],[1,3,2,2],[1,2,1,0]],[[0,2,3,0],[1,3,2,1],[1,3,2,2],[1,2,1,0]],[[0,2,2,0],[1,4,2,1],[1,3,2,2],[1,2,1,0]],[[0,2,2,0],[1,3,2,1],[1,4,2,2],[1,2,1,0]],[[0,2,2,0],[1,3,2,1],[1,3,2,2],[2,2,1,0]],[[0,2,2,0],[1,3,2,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[1,1,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[1,1,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[1,1,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[1,1,3,3],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[1,1,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[1,1,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[1,1,3,3],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[1,1,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[1,1,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[1,1,3,3],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[1,1,3,2],[1,2,3,1],[0,1,1,1]],[[0,3,2,0],[1,3,2,1],[1,3,3,2],[1,2,0,0]],[[0,2,3,0],[1,3,2,1],[1,3,3,2],[1,2,0,0]],[[0,2,2,0],[1,4,2,1],[1,3,3,2],[1,2,0,0]],[[0,2,2,0],[1,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,3,1],[1,1,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[1,1,3,3],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[1,1,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[1,1,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[1,1,3,3],[1,2,3,0],[1,0,2,1]],[[1,2,2,2],[1,1,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[1,1,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[1,1,4,2],[1,2,3,0],[0,2,2,0]],[[1,2,2,2],[1,1,3,2],[1,2,3,0],[0,2,2,0]],[[1,2,3,1],[1,1,3,2],[1,2,3,0],[0,2,2,0]],[[0,3,2,0],[1,3,2,1],[2,0,3,1],[1,2,2,1]],[[0,2,3,0],[1,3,2,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[1,4,2,1],[2,0,3,1],[1,2,2,1]],[[0,3,2,0],[1,3,2,1],[2,0,3,2],[1,2,1,1]],[[0,2,3,0],[1,3,2,1],[2,0,3,2],[1,2,1,1]],[[0,2,2,0],[1,4,2,1],[2,0,3,2],[1,2,1,1]],[[0,3,2,0],[1,3,2,1],[2,0,3,2],[1,2,2,0]],[[0,2,3,0],[1,3,2,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[1,4,2,1],[2,0,3,2],[1,2,2,0]],[[0,3,2,0],[1,3,2,1],[2,1,3,1],[0,2,2,1]],[[0,2,3,0],[1,3,2,1],[2,1,3,1],[0,2,2,1]],[[0,2,2,0],[1,4,2,1],[2,1,3,1],[0,2,2,1]],[[0,3,2,0],[1,3,2,1],[2,1,3,2],[0,2,1,1]],[[0,2,3,0],[1,3,2,1],[2,1,3,2],[0,2,1,1]],[[0,2,2,0],[1,4,2,1],[2,1,3,2],[0,2,1,1]],[[0,3,2,0],[1,3,2,1],[2,1,3,2],[0,2,2,0]],[[0,2,3,0],[1,3,2,1],[2,1,3,2],[0,2,2,0]],[[0,2,2,0],[1,4,2,1],[2,1,3,2],[0,2,2,0]],[[1,3,2,1],[1,1,3,2],[1,2,3,0],[0,2,2,0]],[[2,2,2,1],[1,1,3,2],[1,2,3,0],[0,2,2,0]],[[1,2,2,1],[1,1,3,3],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[1,1,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[1,1,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,0],[1,3,2,1],[3,2,0,2],[1,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,2,0,3],[1,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,2,0,2],[2,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,2,0,2],[1,3,2,1]],[[0,2,2,0],[1,3,2,1],[2,2,0,2],[1,2,3,1]],[[0,2,2,0],[1,3,2,1],[2,2,0,2],[1,2,2,2]],[[0,2,2,0],[1,3,2,1],[3,2,1,1],[1,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,2,1,1],[2,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,2,1,1],[1,3,2,1]],[[0,2,2,0],[1,3,2,1],[2,2,1,1],[1,2,3,1]],[[0,2,2,0],[1,3,2,1],[2,2,1,1],[1,2,2,2]],[[0,2,2,0],[1,3,2,1],[3,2,1,2],[1,2,2,0]],[[0,2,2,0],[1,3,2,1],[2,2,1,2],[2,2,2,0]],[[0,2,2,0],[1,3,2,1],[2,2,1,2],[1,3,2,0]],[[0,2,2,0],[1,3,2,1],[2,2,1,2],[1,2,3,0]],[[0,2,2,0],[1,3,2,1],[3,2,2,1],[1,2,1,1]],[[0,2,2,0],[1,3,2,1],[2,2,2,1],[2,2,1,1]],[[0,2,2,0],[1,3,2,1],[2,2,2,1],[1,3,1,1]],[[0,2,2,0],[1,3,2,1],[3,2,2,2],[1,2,0,1]],[[0,2,2,0],[1,3,2,1],[2,2,2,2],[2,2,0,1]],[[0,2,2,0],[1,3,2,1],[2,2,2,2],[1,3,0,1]],[[0,2,2,0],[1,3,2,1],[3,2,2,2],[1,2,1,0]],[[0,2,2,0],[1,3,2,1],[2,2,2,2],[2,2,1,0]],[[0,2,2,0],[1,3,2,1],[2,2,2,2],[1,3,1,0]],[[0,3,2,0],[1,3,2,1],[2,2,3,1],[0,1,2,1]],[[0,2,3,0],[1,3,2,1],[2,2,3,1],[0,1,2,1]],[[0,2,2,0],[1,4,2,1],[2,2,3,1],[0,1,2,1]],[[0,3,2,0],[1,3,2,1],[2,2,3,1],[0,2,1,1]],[[0,2,3,0],[1,3,2,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[1,4,2,1],[2,2,3,1],[0,2,1,1]],[[0,3,2,0],[1,3,2,1],[2,2,3,1],[1,0,2,1]],[[0,2,3,0],[1,3,2,1],[2,2,3,1],[1,0,2,1]],[[0,2,2,0],[1,4,2,1],[2,2,3,1],[1,0,2,1]],[[0,3,2,0],[1,3,2,1],[2,2,3,1],[1,1,1,1]],[[0,2,3,0],[1,3,2,1],[2,2,3,1],[1,1,1,1]],[[0,2,2,0],[1,4,2,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,1],[1,1,3,3],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[1,1,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,1],[1,1,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,1,3,2],[1,2,2,3],[1,1,0,1]],[[0,3,2,0],[1,3,2,1],[2,2,3,2],[0,0,2,1]],[[0,2,3,0],[1,3,2,1],[2,2,3,2],[0,0,2,1]],[[0,2,2,0],[1,4,2,1],[2,2,3,2],[0,0,2,1]],[[0,3,2,0],[1,3,2,1],[2,2,3,2],[0,1,1,1]],[[0,2,3,0],[1,3,2,1],[2,2,3,2],[0,1,1,1]],[[0,2,2,0],[1,4,2,1],[2,2,3,2],[0,1,1,1]],[[0,3,2,0],[1,3,2,1],[2,2,3,2],[0,1,2,0]],[[0,2,3,0],[1,3,2,1],[2,2,3,2],[0,1,2,0]],[[0,2,2,0],[1,4,2,1],[2,2,3,2],[0,1,2,0]],[[0,3,2,0],[1,3,2,1],[2,2,3,2],[0,2,0,1]],[[0,2,3,0],[1,3,2,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,0],[1,4,2,1],[2,2,3,2],[0,2,0,1]],[[0,3,2,0],[1,3,2,1],[2,2,3,2],[0,2,1,0]],[[0,2,3,0],[1,3,2,1],[2,2,3,2],[0,2,1,0]],[[0,2,2,0],[1,4,2,1],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[1,1,3,3],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[1,1,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[1,1,3,2],[1,2,2,2],[1,1,0,1]],[[0,3,2,0],[1,3,2,1],[2,2,3,2],[1,0,1,1]],[[0,2,3,0],[1,3,2,1],[2,2,3,2],[1,0,1,1]],[[0,2,2,0],[1,4,2,1],[2,2,3,2],[1,0,1,1]],[[0,3,2,0],[1,3,2,1],[2,2,3,2],[1,0,2,0]],[[0,2,3,0],[1,3,2,1],[2,2,3,2],[1,0,2,0]],[[0,2,2,0],[1,4,2,1],[2,2,3,2],[1,0,2,0]],[[0,3,2,0],[1,3,2,1],[2,2,3,2],[1,1,0,1]],[[0,2,3,0],[1,3,2,1],[2,2,3,2],[1,1,0,1]],[[0,2,2,0],[1,4,2,1],[2,2,3,2],[1,1,0,1]],[[0,3,2,0],[1,3,2,1],[2,2,3,2],[1,1,1,0]],[[0,2,3,0],[1,3,2,1],[2,2,3,2],[1,1,1,0]],[[0,2,2,0],[1,4,2,1],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[1,1,3,2],[1,2,2,3],[1,0,2,0]],[[1,2,2,1],[1,1,3,3],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[1,1,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[1,1,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[1,1,3,2],[1,2,2,2],[1,0,1,2]],[[1,2,2,1],[1,1,3,2],[1,2,2,3],[1,0,1,1]],[[1,2,2,1],[1,1,3,3],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[1,1,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[1,1,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[1,1,3,3],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[1,1,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[1,1,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[1,1,3,2],[1,2,2,3],[0,2,0,1]],[[1,2,2,1],[1,1,3,3],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[1,1,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[1,1,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,0],[1,3,2,1],[3,3,0,1],[1,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,3,0,1],[2,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,3,0,1],[1,3,2,1]],[[0,3,2,0],[1,3,2,1],[2,3,0,2],[0,2,2,1]],[[0,2,3,0],[1,3,2,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,4,2,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,3,2,1],[3,3,0,2],[0,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,4,0,2],[0,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,3,0,3],[0,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,3,0,2],[0,3,2,1]],[[0,2,2,0],[1,3,2,1],[2,3,0,2],[0,2,3,1]],[[0,2,2,0],[1,3,2,1],[2,3,0,2],[0,2,2,2]],[[0,3,2,0],[1,3,2,1],[2,3,0,2],[1,1,2,1]],[[0,2,3,0],[1,3,2,1],[2,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,4,2,1],[2,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,3,2,1],[3,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,3,2,1],[2,4,0,2],[1,1,2,1]],[[0,2,2,0],[1,3,2,1],[2,3,0,2],[2,1,2,1]],[[0,2,2,0],[1,3,2,1],[3,3,0,2],[1,2,2,0]],[[0,2,2,0],[1,3,2,1],[2,3,0,2],[2,2,2,0]],[[0,2,2,0],[1,3,2,1],[2,3,0,2],[1,3,2,0]],[[0,3,2,0],[1,3,2,1],[2,3,1,1],[0,2,2,1]],[[0,2,3,0],[1,3,2,1],[2,3,1,1],[0,2,2,1]],[[0,2,2,0],[1,4,2,1],[2,3,1,1],[0,2,2,1]],[[0,2,2,0],[1,3,2,1],[3,3,1,1],[0,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,4,1,1],[0,2,2,1]],[[0,2,2,0],[1,3,2,1],[2,3,1,1],[0,3,2,1]],[[0,2,2,0],[1,3,2,1],[2,3,1,1],[0,2,3,1]],[[0,2,2,0],[1,3,2,1],[2,3,1,1],[0,2,2,2]],[[0,3,2,0],[1,3,2,1],[2,3,1,1],[1,1,2,1]],[[0,2,3,0],[1,3,2,1],[2,3,1,1],[1,1,2,1]],[[0,2,2,0],[1,4,2,1],[2,3,1,1],[1,1,2,1]],[[0,2,2,0],[1,3,2,1],[3,3,1,1],[1,1,2,1]],[[0,2,2,0],[1,3,2,1],[2,4,1,1],[1,1,2,1]],[[0,2,2,0],[1,3,2,1],[2,3,1,1],[2,1,2,1]],[[0,3,2,0],[1,3,2,1],[2,3,1,2],[0,2,2,0]],[[0,2,3,0],[1,3,2,1],[2,3,1,2],[0,2,2,0]],[[0,2,2,0],[1,4,2,1],[2,3,1,2],[0,2,2,0]],[[0,2,2,0],[1,3,2,1],[3,3,1,2],[0,2,2,0]],[[0,2,2,0],[1,3,2,1],[2,4,1,2],[0,2,2,0]],[[0,2,2,0],[1,3,2,1],[2,3,1,2],[0,3,2,0]],[[0,2,2,0],[1,3,2,1],[2,3,1,2],[0,2,3,0]],[[0,3,2,0],[1,3,2,1],[2,3,1,2],[1,1,2,0]],[[0,2,3,0],[1,3,2,1],[2,3,1,2],[1,1,2,0]],[[0,2,2,0],[1,4,2,1],[2,3,1,2],[1,1,2,0]],[[0,2,2,0],[1,3,2,1],[3,3,1,2],[1,1,2,0]],[[0,2,2,0],[1,3,2,1],[2,4,1,2],[1,1,2,0]],[[0,2,2,0],[1,3,2,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[1,1,3,2],[1,2,2,3],[0,1,2,0]],[[1,2,2,1],[1,1,3,3],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[1,1,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[1,1,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[1,1,3,2],[1,2,2,2],[0,1,1,2]],[[0,3,2,0],[1,3,2,1],[2,3,2,1],[0,1,2,1]],[[0,2,3,0],[1,3,2,1],[2,3,2,1],[0,1,2,1]],[[0,2,2,0],[1,4,2,1],[2,3,2,1],[0,1,2,1]],[[0,2,2,0],[1,3,2,1],[3,3,2,1],[0,1,2,1]],[[0,2,2,0],[1,3,2,1],[2,4,2,1],[0,1,2,1]],[[0,3,2,0],[1,3,2,1],[2,3,2,1],[0,2,1,1]],[[0,2,3,0],[1,3,2,1],[2,3,2,1],[0,2,1,1]],[[0,2,2,0],[1,4,2,1],[2,3,2,1],[0,2,1,1]],[[0,2,2,0],[1,3,2,1],[3,3,2,1],[0,2,1,1]],[[0,2,2,0],[1,3,2,1],[2,4,2,1],[0,2,1,1]],[[0,2,2,0],[1,3,2,1],[2,3,2,1],[0,3,1,1]],[[0,3,2,0],[1,3,2,1],[2,3,2,1],[1,0,2,1]],[[0,2,3,0],[1,3,2,1],[2,3,2,1],[1,0,2,1]],[[0,2,2,0],[1,4,2,1],[2,3,2,1],[1,0,2,1]],[[0,2,2,0],[1,3,2,1],[3,3,2,1],[1,0,2,1]],[[0,2,2,0],[1,3,2,1],[2,4,2,1],[1,0,2,1]],[[0,2,2,0],[1,3,2,1],[2,3,2,1],[2,0,2,1]],[[0,3,2,0],[1,3,2,1],[2,3,2,1],[1,1,1,1]],[[0,2,3,0],[1,3,2,1],[2,3,2,1],[1,1,1,1]],[[0,2,2,0],[1,4,2,1],[2,3,2,1],[1,1,1,1]],[[0,2,2,0],[1,3,2,1],[3,3,2,1],[1,1,1,1]],[[0,2,2,0],[1,3,2,1],[2,4,2,1],[1,1,1,1]],[[0,2,2,0],[1,3,2,1],[2,3,2,1],[2,1,1,1]],[[0,3,2,0],[1,3,2,1],[2,3,2,1],[1,2,0,1]],[[0,2,2,0],[1,4,2,1],[2,3,2,1],[1,2,0,1]],[[0,2,2,0],[1,3,2,1],[3,3,2,1],[1,2,0,1]],[[0,2,2,0],[1,3,2,1],[2,4,2,1],[1,2,0,1]],[[0,2,2,0],[1,3,2,1],[2,3,2,1],[2,2,0,1]],[[1,2,2,1],[1,1,3,2],[1,2,2,3],[0,1,1,1]],[[1,2,2,1],[1,1,3,3],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[1,1,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[1,1,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[1,1,3,2],[1,2,2,2],[0,0,2,2]],[[1,2,2,1],[1,1,3,2],[1,2,2,3],[0,0,2,1]],[[1,2,2,1],[1,1,3,3],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[1,1,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[1,1,3,2],[1,2,2,2],[0,0,2,1]],[[0,3,2,0],[1,3,2,1],[2,3,2,2],[0,1,1,1]],[[0,2,3,0],[1,3,2,1],[2,3,2,2],[0,1,1,1]],[[0,2,2,0],[1,4,2,1],[2,3,2,2],[0,1,1,1]],[[0,2,2,0],[1,3,2,1],[3,3,2,2],[0,1,1,1]],[[0,2,2,0],[1,3,2,1],[2,4,2,2],[0,1,1,1]],[[0,3,2,0],[1,3,2,1],[2,3,2,2],[0,1,2,0]],[[0,2,3,0],[1,3,2,1],[2,3,2,2],[0,1,2,0]],[[0,2,2,0],[1,4,2,1],[2,3,2,2],[0,1,2,0]],[[0,2,2,0],[1,3,2,1],[3,3,2,2],[0,1,2,0]],[[0,2,2,0],[1,3,2,1],[2,4,2,2],[0,1,2,0]],[[0,3,2,0],[1,3,2,1],[2,3,2,2],[0,2,0,1]],[[0,2,3,0],[1,3,2,1],[2,3,2,2],[0,2,0,1]],[[0,2,2,0],[1,4,2,1],[2,3,2,2],[0,2,0,1]],[[0,2,2,0],[1,3,2,1],[3,3,2,2],[0,2,0,1]],[[0,2,2,0],[1,3,2,1],[2,4,2,2],[0,2,0,1]],[[0,2,2,0],[1,3,2,1],[2,3,2,2],[0,3,0,1]],[[0,3,2,0],[1,3,2,1],[2,3,2,2],[0,2,1,0]],[[0,2,3,0],[1,3,2,1],[2,3,2,2],[0,2,1,0]],[[0,2,2,0],[1,4,2,1],[2,3,2,2],[0,2,1,0]],[[0,2,2,0],[1,3,2,1],[3,3,2,2],[0,2,1,0]],[[0,2,2,0],[1,3,2,1],[2,4,2,2],[0,2,1,0]],[[0,2,2,0],[1,3,2,1],[2,3,2,2],[0,3,1,0]],[[1,2,2,1],[1,1,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,1],[1,1,3,2],[1,2,1,3],[1,0,2,1]],[[1,2,2,1],[1,1,3,3],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[1,1,3,2],[1,2,1,2],[1,0,2,1]],[[0,3,2,0],[1,3,2,1],[2,3,2,2],[1,0,1,1]],[[0,2,3,0],[1,3,2,1],[2,3,2,2],[1,0,1,1]],[[0,2,2,0],[1,4,2,1],[2,3,2,2],[1,0,1,1]],[[0,2,2,0],[1,3,2,1],[3,3,2,2],[1,0,1,1]],[[0,2,2,0],[1,3,2,1],[2,4,2,2],[1,0,1,1]],[[0,2,2,0],[1,3,2,1],[2,3,2,2],[2,0,1,1]],[[0,3,2,0],[1,3,2,1],[2,3,2,2],[1,0,2,0]],[[0,2,3,0],[1,3,2,1],[2,3,2,2],[1,0,2,0]],[[0,2,2,0],[1,4,2,1],[2,3,2,2],[1,0,2,0]],[[0,2,2,0],[1,3,2,1],[3,3,2,2],[1,0,2,0]],[[0,2,2,0],[1,3,2,1],[2,4,2,2],[1,0,2,0]],[[0,2,2,0],[1,3,2,1],[2,3,2,2],[2,0,2,0]],[[0,3,2,0],[1,3,2,1],[2,3,2,2],[1,1,0,1]],[[0,2,3,0],[1,3,2,1],[2,3,2,2],[1,1,0,1]],[[0,2,2,0],[1,4,2,1],[2,3,2,2],[1,1,0,1]],[[0,2,2,0],[1,3,2,1],[3,3,2,2],[1,1,0,1]],[[0,2,2,0],[1,3,2,1],[2,4,2,2],[1,1,0,1]],[[0,2,2,0],[1,3,2,1],[2,3,2,2],[2,1,0,1]],[[0,3,2,0],[1,3,2,1],[2,3,2,2],[1,1,1,0]],[[0,2,3,0],[1,3,2,1],[2,3,2,2],[1,1,1,0]],[[0,2,2,0],[1,4,2,1],[2,3,2,2],[1,1,1,0]],[[0,2,2,0],[1,3,2,1],[3,3,2,2],[1,1,1,0]],[[0,2,2,0],[1,3,2,1],[2,4,2,2],[1,1,1,0]],[[0,2,2,0],[1,3,2,1],[2,3,2,2],[2,1,1,0]],[[1,2,3,1],[1,1,3,2],[1,2,1,2],[1,0,2,1]],[[0,3,2,0],[1,3,2,1],[2,3,2,2],[1,2,0,0]],[[0,2,3,0],[1,3,2,1],[2,3,2,2],[1,2,0,0]],[[0,2,2,0],[1,4,2,1],[2,3,2,2],[1,2,0,0]],[[0,2,2,0],[1,3,2,1],[3,3,2,2],[1,2,0,0]],[[0,2,2,0],[1,3,2,1],[2,4,2,2],[1,2,0,0]],[[0,2,2,0],[1,3,2,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[1,1,3,2],[1,2,1,2],[0,1,2,2]],[[1,2,2,1],[1,1,3,2],[1,2,1,3],[0,1,2,1]],[[1,2,2,1],[1,1,3,3],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[1,1,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[1,1,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[1,1,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,1],[1,1,3,3],[1,1,3,2],[1,0,2,0]],[[1,2,2,2],[1,1,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,3,1],[1,1,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,2,1],[1,1,3,2],[1,1,3,2],[1,0,1,2]],[[1,2,2,1],[1,1,3,2],[1,1,3,3],[1,0,1,1]],[[1,2,2,1],[1,1,3,3],[1,1,3,2],[1,0,1,1]],[[1,2,2,2],[1,1,3,2],[1,1,3,2],[1,0,1,1]],[[1,2,3,1],[1,1,3,2],[1,1,3,2],[1,0,1,1]],[[0,3,2,0],[1,3,2,1],[2,3,3,1],[0,0,2,1]],[[0,2,3,0],[1,3,2,1],[2,3,3,1],[0,0,2,1]],[[0,2,2,0],[1,4,2,1],[2,3,3,1],[0,0,2,1]],[[1,2,2,1],[1,1,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,1],[1,1,3,3],[1,1,3,2],[0,1,2,0]],[[1,2,2,2],[1,1,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,3,1],[1,1,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,2,1],[1,1,3,2],[1,1,3,2],[0,1,1,2]],[[1,2,2,1],[1,1,3,2],[1,1,3,3],[0,1,1,1]],[[1,2,2,1],[1,1,3,3],[1,1,3,2],[0,1,1,1]],[[1,2,2,2],[1,1,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,3,1],[1,1,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,2,1],[1,1,3,2],[1,1,3,2],[0,0,2,2]],[[1,2,2,1],[1,1,3,2],[1,1,3,3],[0,0,2,1]],[[1,2,2,1],[1,1,3,3],[1,1,3,2],[0,0,2,1]],[[1,2,2,2],[1,1,3,2],[1,1,3,2],[0,0,2,1]],[[1,2,3,1],[1,1,3,2],[1,1,3,2],[0,0,2,1]],[[1,2,2,1],[1,1,3,3],[1,1,3,1],[0,2,2,0]],[[0,3,2,0],[1,3,2,1],[2,3,3,2],[0,0,1,1]],[[0,2,3,0],[1,3,2,1],[2,3,3,2],[0,0,1,1]],[[0,2,2,0],[1,4,2,1],[2,3,3,2],[0,0,1,1]],[[0,3,2,0],[1,3,2,1],[2,3,3,2],[0,0,2,0]],[[0,2,3,0],[1,3,2,1],[2,3,3,2],[0,0,2,0]],[[0,2,2,0],[1,4,2,1],[2,3,3,2],[0,0,2,0]],[[1,2,2,2],[1,1,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[1,1,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[1,1,3,3],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[1,1,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[1,1,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[1,1,3,3],[1,1,3,0],[0,2,2,1]],[[0,3,2,0],[1,3,2,1],[2,3,3,2],[0,2,0,0]],[[0,2,3,0],[1,3,2,1],[2,3,3,2],[0,2,0,0]],[[0,2,2,0],[1,4,2,1],[2,3,3,2],[0,2,0,0]],[[0,2,2,0],[1,3,2,1],[3,3,3,2],[0,2,0,0]],[[0,2,2,0],[1,3,2,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,2],[1,1,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[1,1,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[1,1,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,1],[1,1,3,3],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[1,1,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[1,1,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[1,1,3,2],[1,1,2,2],[0,2,1,2]],[[1,2,2,1],[1,1,3,2],[1,1,2,3],[0,2,1,1]],[[1,2,2,1],[1,1,3,3],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[1,1,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[1,1,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[1,1,3,2],[1,1,1,2],[0,2,2,2]],[[1,2,2,1],[1,1,3,2],[1,1,1,2],[0,2,3,1]],[[1,2,2,1],[1,1,3,2],[1,1,1,3],[0,2,2,1]],[[1,2,2,1],[1,1,3,3],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[1,1,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[1,1,3,2],[1,1,1,2],[0,2,2,1]],[[0,3,2,0],[1,3,2,1],[2,3,3,2],[1,1,0,0]],[[0,2,3,0],[1,3,2,1],[2,3,3,2],[1,1,0,0]],[[0,2,2,0],[1,4,2,1],[2,3,3,2],[1,1,0,0]],[[0,2,2,0],[1,3,2,1],[3,3,3,2],[1,1,0,0]],[[0,2,2,0],[1,3,2,1],[2,4,3,2],[1,1,0,0]],[[0,2,2,0],[1,3,2,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[1,1,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[1,1,3,3],[1,0,3,2],[0,2,2,0]],[[1,2,2,2],[1,1,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,3,1],[1,1,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[1,1,3,2],[1,0,3,2],[0,2,1,2]],[[1,2,2,1],[1,1,3,2],[1,0,3,3],[0,2,1,1]],[[1,2,2,1],[1,1,3,3],[1,0,3,2],[0,2,1,1]],[[1,2,2,2],[1,1,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,3,1],[1,1,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,2,1],[1,1,3,2],[1,0,3,2],[0,1,2,2]],[[1,2,2,1],[1,1,3,2],[1,0,3,3],[0,1,2,1]],[[1,2,2,1],[1,1,3,3],[1,0,3,2],[0,1,2,1]],[[1,2,2,2],[1,1,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,3,1],[1,1,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,2,1],[1,1,3,3],[1,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,1,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,1,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,1,3,3],[1,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,1,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,1,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,1,3,3],[1,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,1,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,1,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,1,3,2],[1,0,2,3],[1,2,2,0]],[[1,2,2,1],[1,1,3,3],[1,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,1,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,1,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,1,3,2],[1,0,2,2],[1,2,1,2]],[[1,2,2,1],[1,1,3,2],[1,0,2,3],[1,2,1,1]],[[1,2,2,1],[1,1,3,3],[1,0,2,2],[1,2,1,1]],[[1,2,2,2],[1,1,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,3,1],[1,1,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,1,3,2],[1,0,2,2],[0,2,2,2]],[[1,2,2,1],[1,1,3,2],[1,0,2,2],[0,2,3,1]],[[1,2,2,1],[1,1,3,2],[1,0,2,3],[0,2,2,1]],[[1,2,2,1],[1,1,3,3],[1,0,2,2],[0,2,2,1]],[[1,2,2,2],[1,1,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,3,1],[1,1,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,2,1],[1,1,3,2],[1,0,1,2],[1,2,2,2]],[[1,2,2,1],[1,1,3,2],[1,0,1,2],[1,2,3,1]],[[1,2,2,1],[1,1,3,2],[1,0,1,3],[1,2,2,1]],[[1,2,2,1],[1,1,3,3],[1,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,1,3,2],[1,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,1,3,2],[1,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,1,3,3],[0,3,3,2],[0,1,0,1]],[[1,2,2,2],[1,1,3,2],[0,3,3,2],[0,1,0,1]],[[1,2,3,1],[1,1,3,2],[0,3,3,2],[0,1,0,1]],[[0,3,2,0],[1,3,2,2],[1,1,1,2],[1,2,2,1]],[[0,2,3,0],[1,3,2,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,0],[1,4,2,2],[1,1,1,2],[1,2,2,1]],[[0,3,2,0],[1,3,2,2],[1,1,2,2],[1,2,1,1]],[[0,2,3,0],[1,3,2,2],[1,1,2,2],[1,2,1,1]],[[0,2,2,0],[1,4,2,2],[1,1,2,2],[1,2,1,1]],[[0,3,2,0],[1,3,2,2],[1,1,2,2],[1,2,2,0]],[[0,2,3,0],[1,3,2,2],[1,1,2,2],[1,2,2,0]],[[0,2,2,0],[1,4,2,2],[1,1,2,2],[1,2,2,0]],[[0,3,2,0],[1,3,2,2],[1,1,3,0],[1,2,2,1]],[[0,2,3,0],[1,3,2,2],[1,1,3,0],[1,2,2,1]],[[0,2,2,0],[1,4,2,2],[1,1,3,0],[1,2,2,1]],[[0,3,2,0],[1,3,2,2],[1,1,3,1],[1,2,1,1]],[[0,2,3,0],[1,3,2,2],[1,1,3,1],[1,2,1,1]],[[0,2,2,0],[1,4,2,2],[1,1,3,1],[1,2,1,1]],[[0,3,2,0],[1,3,2,2],[1,1,3,1],[1,2,2,0]],[[0,2,3,0],[1,3,2,2],[1,1,3,1],[1,2,2,0]],[[0,2,2,0],[1,4,2,2],[1,1,3,1],[1,2,2,0]],[[0,3,2,0],[1,3,2,2],[1,2,0,2],[1,2,2,1]],[[0,2,3,0],[1,3,2,2],[1,2,0,2],[1,2,2,1]],[[0,2,2,0],[1,4,2,2],[1,2,0,2],[1,2,2,1]],[[0,3,2,0],[1,3,2,2],[1,2,1,2],[1,1,2,1]],[[0,2,3,0],[1,3,2,2],[1,2,1,2],[1,1,2,1]],[[0,2,2,0],[1,4,2,2],[1,2,1,2],[1,1,2,1]],[[0,3,2,0],[1,3,2,2],[1,2,2,2],[1,1,1,1]],[[0,2,3,0],[1,3,2,2],[1,2,2,2],[1,1,1,1]],[[0,2,2,0],[1,4,2,2],[1,2,2,2],[1,1,1,1]],[[0,3,2,0],[1,3,2,2],[1,2,2,2],[1,1,2,0]],[[0,2,3,0],[1,3,2,2],[1,2,2,2],[1,1,2,0]],[[0,2,2,0],[1,4,2,2],[1,2,2,2],[1,1,2,0]],[[0,3,2,0],[1,3,2,2],[1,2,2,2],[1,2,0,1]],[[0,2,3,0],[1,3,2,2],[1,2,2,2],[1,2,0,1]],[[0,2,2,0],[1,4,2,2],[1,2,2,2],[1,2,0,1]],[[0,3,2,0],[1,3,2,2],[1,2,2,2],[1,2,1,0]],[[0,2,3,0],[1,3,2,2],[1,2,2,2],[1,2,1,0]],[[0,2,2,0],[1,4,2,2],[1,2,2,2],[1,2,1,0]],[[0,3,2,0],[1,3,2,2],[1,2,3,0],[1,1,2,1]],[[0,2,3,0],[1,3,2,2],[1,2,3,0],[1,1,2,1]],[[0,2,2,0],[1,4,2,2],[1,2,3,0],[1,1,2,1]],[[0,3,2,0],[1,3,2,2],[1,2,3,0],[1,2,1,1]],[[0,2,3,0],[1,3,2,2],[1,2,3,0],[1,2,1,1]],[[0,2,2,0],[1,4,2,2],[1,2,3,0],[1,2,1,1]],[[0,3,2,0],[1,3,2,2],[1,2,3,1],[1,1,1,1]],[[0,2,3,0],[1,3,2,2],[1,2,3,1],[1,1,1,1]],[[0,2,2,0],[1,4,2,2],[1,2,3,1],[1,1,1,1]],[[0,3,2,0],[1,3,2,2],[1,2,3,1],[1,1,2,0]],[[0,2,3,0],[1,3,2,2],[1,2,3,1],[1,1,2,0]],[[0,2,2,0],[1,4,2,2],[1,2,3,1],[1,1,2,0]],[[0,3,2,0],[1,3,2,2],[1,2,3,1],[1,2,0,1]],[[0,2,3,0],[1,3,2,2],[1,2,3,1],[1,2,0,1]],[[0,2,2,0],[1,4,2,2],[1,2,3,1],[1,2,0,1]],[[0,3,2,0],[1,3,2,2],[1,2,3,1],[1,2,1,0]],[[0,2,3,0],[1,3,2,2],[1,2,3,1],[1,2,1,0]],[[0,2,2,0],[1,4,2,2],[1,2,3,1],[1,2,1,0]],[[1,2,2,1],[1,1,3,3],[0,3,3,1],[0,2,1,0]],[[1,2,2,2],[1,1,3,2],[0,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,1,3,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,1,3,3],[0,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,1,3,2],[0,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,1,3,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,1,3,3],[0,3,3,1],[0,1,2,0]],[[1,2,2,2],[1,1,3,2],[0,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,1,3,2],[0,3,3,1],[0,1,2,0]],[[0,3,2,0],[1,3,2,2],[1,3,0,1],[1,2,2,1]],[[0,2,3,0],[1,3,2,2],[1,3,0,1],[1,2,2,1]],[[0,2,2,0],[1,4,2,2],[1,3,0,1],[1,2,2,1]],[[0,2,2,0],[1,3,2,2],[1,4,0,1],[1,2,2,1]],[[0,2,2,0],[1,3,2,2],[1,3,0,1],[2,2,2,1]],[[0,2,2,0],[1,3,2,2],[1,3,0,1],[1,3,2,1]],[[0,2,2,0],[1,3,2,2],[1,3,0,1],[1,2,3,1]],[[0,2,2,0],[1,3,2,2],[1,3,0,1],[1,2,2,2]],[[0,3,2,0],[1,3,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,3,0],[1,3,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,4,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[1,3,2,2],[1,4,0,2],[1,1,2,1]],[[0,3,2,0],[1,3,2,2],[1,3,0,2],[1,2,1,1]],[[0,2,3,0],[1,3,2,2],[1,3,0,2],[1,2,1,1]],[[0,2,2,0],[1,4,2,2],[1,3,0,2],[1,2,1,1]],[[0,2,2,0],[1,3,2,2],[1,4,0,2],[1,2,1,1]],[[0,2,2,0],[1,3,2,2],[1,3,0,2],[2,2,1,1]],[[0,2,2,0],[1,3,2,2],[1,3,0,2],[1,3,1,1]],[[0,3,2,0],[1,3,2,2],[1,3,0,2],[1,2,2,0]],[[0,2,3,0],[1,3,2,2],[1,3,0,2],[1,2,2,0]],[[0,2,2,0],[1,4,2,2],[1,3,0,2],[1,2,2,0]],[[0,2,2,0],[1,3,2,2],[1,4,0,2],[1,2,2,0]],[[0,2,2,0],[1,3,2,2],[1,3,0,2],[2,2,2,0]],[[0,2,2,0],[1,3,2,2],[1,3,0,2],[1,3,2,0]],[[0,2,2,0],[1,3,2,2],[1,3,0,2],[1,2,3,0]],[[0,3,2,0],[1,3,2,2],[1,3,1,0],[1,2,2,1]],[[0,2,3,0],[1,3,2,2],[1,3,1,0],[1,2,2,1]],[[0,2,2,0],[1,4,2,2],[1,3,1,0],[1,2,2,1]],[[0,2,2,0],[1,3,2,2],[1,4,1,0],[1,2,2,1]],[[0,2,2,0],[1,3,2,2],[1,3,1,0],[2,2,2,1]],[[0,2,2,0],[1,3,2,2],[1,3,1,0],[1,3,2,1]],[[0,2,2,0],[1,3,2,2],[1,3,1,0],[1,2,3,1]],[[0,2,2,0],[1,3,2,2],[1,3,1,0],[1,2,2,2]],[[0,3,2,0],[1,3,2,2],[1,3,1,1],[1,2,2,0]],[[0,2,3,0],[1,3,2,2],[1,3,1,1],[1,2,2,0]],[[0,2,2,0],[1,4,2,2],[1,3,1,1],[1,2,2,0]],[[0,2,2,0],[1,3,2,2],[1,4,1,1],[1,2,2,0]],[[0,2,2,0],[1,3,2,2],[1,3,1,1],[2,2,2,0]],[[0,2,2,0],[1,3,2,2],[1,3,1,1],[1,3,2,0]],[[0,2,2,0],[1,3,2,2],[1,3,1,1],[1,2,3,0]],[[0,3,2,0],[1,3,2,2],[1,3,1,2],[1,1,1,1]],[[0,2,3,0],[1,3,2,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,0],[1,4,2,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,0],[1,3,2,2],[1,4,1,2],[1,1,1,1]],[[0,3,2,0],[1,3,2,2],[1,3,1,2],[1,1,2,0]],[[0,2,3,0],[1,3,2,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,0],[1,4,2,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,0],[1,3,2,2],[1,4,1,2],[1,1,2,0]],[[0,3,2,0],[1,3,2,2],[1,3,1,2],[1,2,0,1]],[[0,2,3,0],[1,3,2,2],[1,3,1,2],[1,2,0,1]],[[0,2,2,0],[1,4,2,2],[1,3,1,2],[1,2,0,1]],[[0,2,2,0],[1,3,2,2],[1,4,1,2],[1,2,0,1]],[[0,2,2,0],[1,3,2,2],[1,3,1,2],[2,2,0,1]],[[0,2,2,0],[1,3,2,2],[1,3,1,2],[1,3,0,1]],[[0,3,2,0],[1,3,2,2],[1,3,1,2],[1,2,1,0]],[[0,2,3,0],[1,3,2,2],[1,3,1,2],[1,2,1,0]],[[0,2,2,0],[1,4,2,2],[1,3,1,2],[1,2,1,0]],[[0,2,2,0],[1,3,2,2],[1,4,1,2],[1,2,1,0]],[[0,2,2,0],[1,3,2,2],[1,3,1,2],[2,2,1,0]],[[0,2,2,0],[1,3,2,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[1,1,3,3],[0,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,1,3,2],[0,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,1,3,2],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,1,3,3],[0,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,1,3,2],[0,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,1,3,2],[0,3,3,1],[0,0,2,1]],[[0,3,2,0],[1,3,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,3,0],[1,3,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,0],[1,4,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,0],[1,3,2,2],[1,4,2,0],[1,1,2,1]],[[0,3,2,0],[1,3,2,2],[1,3,2,0],[1,2,1,1]],[[0,2,3,0],[1,3,2,2],[1,3,2,0],[1,2,1,1]],[[0,2,2,0],[1,4,2,2],[1,3,2,0],[1,2,1,1]],[[0,2,2,0],[1,3,2,2],[1,4,2,0],[1,2,1,1]],[[0,2,2,0],[1,3,2,2],[1,3,2,0],[2,2,1,1]],[[0,2,2,0],[1,3,2,2],[1,3,2,0],[1,3,1,1]],[[0,3,2,0],[1,3,2,2],[1,3,2,1],[1,1,1,1]],[[0,2,3,0],[1,3,2,2],[1,3,2,1],[1,1,1,1]],[[0,2,2,0],[1,4,2,2],[1,3,2,1],[1,1,1,1]],[[0,2,2,0],[1,3,2,2],[1,4,2,1],[1,1,1,1]],[[0,3,2,0],[1,3,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,3,0],[1,3,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,0],[1,4,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,0],[1,3,2,2],[1,4,2,1],[1,1,2,0]],[[0,3,2,0],[1,3,2,2],[1,3,2,1],[1,2,0,1]],[[0,2,3,0],[1,3,2,2],[1,3,2,1],[1,2,0,1]],[[0,2,2,0],[1,4,2,2],[1,3,2,1],[1,2,0,1]],[[0,2,2,0],[1,3,2,2],[1,4,2,1],[1,2,0,1]],[[0,2,2,0],[1,3,2,2],[1,3,2,1],[2,2,0,1]],[[0,2,2,0],[1,3,2,2],[1,3,2,1],[1,3,0,1]],[[0,3,2,0],[1,3,2,2],[1,3,2,1],[1,2,1,0]],[[0,2,3,0],[1,3,2,2],[1,3,2,1],[1,2,1,0]],[[0,2,2,0],[1,4,2,2],[1,3,2,1],[1,2,1,0]],[[0,2,2,0],[1,3,2,2],[1,4,2,1],[1,2,1,0]],[[0,2,2,0],[1,3,2,2],[1,3,2,1],[2,2,1,0]],[[0,2,2,0],[1,3,2,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[1,1,4,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,2],[1,1,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,3,1],[1,1,3,2],[0,3,3,0],[1,2,1,0]],[[1,3,2,1],[1,1,3,2],[0,3,3,0],[1,2,1,0]],[[2,2,2,1],[1,1,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,1],[1,1,4,2],[0,3,3,0],[1,2,0,1]],[[1,2,2,2],[1,1,3,2],[0,3,3,0],[1,2,0,1]],[[1,2,3,1],[1,1,3,2],[0,3,3,0],[1,2,0,1]],[[1,3,2,1],[1,1,3,2],[0,3,3,0],[1,2,0,1]],[[2,2,2,1],[1,1,3,2],[0,3,3,0],[1,2,0,1]],[[1,2,2,1],[1,1,4,2],[0,3,3,0],[1,1,2,0]],[[1,2,2,2],[1,1,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,3,1],[1,1,3,2],[0,3,3,0],[1,1,2,0]],[[1,3,2,1],[1,1,3,2],[0,3,3,0],[1,1,2,0]],[[2,2,2,1],[1,1,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,2,1],[1,1,4,2],[0,3,3,0],[1,1,1,1]],[[1,2,2,2],[1,1,3,2],[0,3,3,0],[1,1,1,1]],[[1,2,3,1],[1,1,3,2],[0,3,3,0],[1,1,1,1]],[[0,3,2,0],[1,3,2,2],[1,3,3,0],[1,1,2,0]],[[0,2,3,0],[1,3,2,2],[1,3,3,0],[1,1,2,0]],[[0,2,2,0],[1,4,2,2],[1,3,3,0],[1,1,2,0]],[[0,2,2,0],[1,3,2,2],[1,4,3,0],[1,1,2,0]],[[0,3,2,0],[1,3,2,2],[1,3,3,0],[1,2,1,0]],[[0,2,3,0],[1,3,2,2],[1,3,3,0],[1,2,1,0]],[[0,2,2,0],[1,4,2,2],[1,3,3,0],[1,2,1,0]],[[0,2,2,0],[1,3,2,2],[1,4,3,0],[1,2,1,0]],[[0,2,2,0],[1,3,2,2],[1,3,3,0],[2,2,1,0]],[[0,2,2,0],[1,3,2,2],[1,3,3,0],[1,3,1,0]],[[1,3,2,1],[1,1,3,2],[0,3,3,0],[1,1,1,1]],[[2,2,2,1],[1,1,3,2],[0,3,3,0],[1,1,1,1]],[[1,2,2,1],[1,1,3,3],[0,3,3,0],[0,1,2,1]],[[1,2,2,2],[1,1,3,2],[0,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,1,3,2],[0,3,3,0],[0,1,2,1]],[[0,3,2,0],[1,3,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,3,0],[1,3,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,0],[1,4,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,0],[1,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[1,1,3,3],[0,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,1,3,2],[0,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,1,3,2],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,1,3,2],[0,3,2,3],[0,2,0,1]],[[1,2,2,1],[1,1,3,3],[0,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,1,3,2],[0,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,1,3,2],[0,3,2,2],[0,2,0,1]],[[1,2,2,1],[1,1,3,2],[0,3,2,3],[0,1,2,0]],[[1,2,2,1],[1,1,3,3],[0,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,1,3,2],[0,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,1,3,2],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,1,3,2],[0,3,2,2],[0,1,1,2]],[[1,2,2,1],[1,1,3,2],[0,3,2,3],[0,1,1,1]],[[1,2,2,1],[1,1,3,3],[0,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,1,3,2],[0,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,1,3,2],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,1,3,2],[0,3,2,2],[0,0,2,2]],[[1,2,2,1],[1,1,3,2],[0,3,2,3],[0,0,2,1]],[[1,2,2,1],[1,1,3,3],[0,3,2,2],[0,0,2,1]],[[1,2,2,2],[1,1,3,2],[0,3,2,2],[0,0,2,1]],[[1,2,3,1],[1,1,3,2],[0,3,2,2],[0,0,2,1]],[[1,2,2,1],[1,1,3,2],[0,3,1,2],[0,1,2,2]],[[1,2,2,1],[1,1,3,2],[0,3,1,3],[0,1,2,1]],[[1,2,2,1],[1,1,3,3],[0,3,1,2],[0,1,2,1]],[[1,2,2,2],[1,1,3,2],[0,3,1,2],[0,1,2,1]],[[1,2,3,1],[1,1,3,2],[0,3,1,2],[0,1,2,1]],[[0,3,2,0],[1,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,3,0],[1,3,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[1,4,2,2],[2,0,1,2],[1,2,2,1]],[[0,3,2,0],[1,3,2,2],[2,0,2,2],[1,2,1,1]],[[0,2,3,0],[1,3,2,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,0],[1,4,2,2],[2,0,2,2],[1,2,1,1]],[[0,3,2,0],[1,3,2,2],[2,0,2,2],[1,2,2,0]],[[0,2,3,0],[1,3,2,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,0],[1,4,2,2],[2,0,2,2],[1,2,2,0]],[[0,3,2,0],[1,3,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,3,0],[1,3,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[1,4,2,2],[2,0,3,0],[1,2,2,1]],[[0,3,2,0],[1,3,2,2],[2,0,3,1],[1,2,1,1]],[[0,2,3,0],[1,3,2,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[1,4,2,2],[2,0,3,1],[1,2,1,1]],[[0,3,2,0],[1,3,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,3,0],[1,3,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[1,4,2,2],[2,0,3,1],[1,2,2,0]],[[0,3,2,0],[1,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,3,0],[1,3,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[1,4,2,2],[2,1,0,2],[1,2,2,1]],[[0,3,2,0],[1,3,2,2],[2,1,1,2],[0,2,2,1]],[[0,2,3,0],[1,3,2,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,0],[1,4,2,2],[2,1,1,2],[0,2,2,1]],[[0,3,2,0],[1,3,2,2],[2,1,2,2],[0,2,1,1]],[[0,2,3,0],[1,3,2,2],[2,1,2,2],[0,2,1,1]],[[0,2,2,0],[1,4,2,2],[2,1,2,2],[0,2,1,1]],[[0,3,2,0],[1,3,2,2],[2,1,2,2],[0,2,2,0]],[[0,2,3,0],[1,3,2,2],[2,1,2,2],[0,2,2,0]],[[0,2,2,0],[1,4,2,2],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[1,1,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[1,1,3,3],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[1,1,3,2],[0,2,3,2],[1,1,0,1]],[[0,3,2,0],[1,3,2,2],[2,1,3,0],[0,2,2,1]],[[0,2,3,0],[1,3,2,2],[2,1,3,0],[0,2,2,1]],[[0,2,2,0],[1,4,2,2],[2,1,3,0],[0,2,2,1]],[[0,3,2,0],[1,3,2,2],[2,1,3,1],[0,2,1,1]],[[0,2,3,0],[1,3,2,2],[2,1,3,1],[0,2,1,1]],[[0,2,2,0],[1,4,2,2],[2,1,3,1],[0,2,1,1]],[[0,3,2,0],[1,3,2,2],[2,1,3,1],[0,2,2,0]],[[0,2,3,0],[1,3,2,2],[2,1,3,1],[0,2,2,0]],[[0,2,2,0],[1,4,2,2],[2,1,3,1],[0,2,2,0]],[[1,2,3,1],[1,1,3,2],[0,2,3,2],[1,1,0,1]],[[1,2,2,1],[1,1,3,2],[0,2,3,3],[0,1,2,0]],[[1,2,2,1],[1,1,3,3],[0,2,3,2],[0,1,2,0]],[[1,2,2,2],[1,1,3,2],[0,2,3,2],[0,1,2,0]],[[1,2,3,1],[1,1,3,2],[0,2,3,2],[0,1,2,0]],[[1,2,2,1],[1,1,3,2],[0,2,3,2],[0,1,1,2]],[[1,2,2,1],[1,1,3,2],[0,2,3,3],[0,1,1,1]],[[1,2,2,1],[1,1,3,3],[0,2,3,2],[0,1,1,1]],[[1,2,2,2],[1,1,3,2],[0,2,3,2],[0,1,1,1]],[[1,2,3,1],[1,1,3,2],[0,2,3,2],[0,1,1,1]],[[1,2,2,1],[1,1,3,2],[0,2,3,2],[0,0,2,2]],[[1,2,2,1],[1,1,3,2],[0,2,3,3],[0,0,2,1]],[[1,2,2,1],[1,1,3,3],[0,2,3,2],[0,0,2,1]],[[1,2,2,2],[1,1,3,2],[0,2,3,2],[0,0,2,1]],[[1,2,3,1],[1,1,3,2],[0,2,3,2],[0,0,2,1]],[[0,2,2,0],[1,3,2,2],[3,2,0,1],[1,2,2,1]],[[0,2,2,0],[1,3,2,2],[2,2,0,1],[2,2,2,1]],[[0,2,2,0],[1,3,2,2],[2,2,0,1],[1,3,2,1]],[[0,2,2,0],[1,3,2,2],[2,2,0,1],[1,2,3,1]],[[0,2,2,0],[1,3,2,2],[2,2,0,1],[1,2,2,2]],[[0,3,2,0],[1,3,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,3,0],[1,3,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[1,4,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[1,3,2,2],[3,2,0,2],[1,2,1,1]],[[0,2,2,0],[1,3,2,2],[2,2,0,2],[2,2,1,1]],[[0,2,2,0],[1,3,2,2],[2,2,0,2],[1,3,1,1]],[[0,2,2,0],[1,3,2,2],[3,2,0,2],[1,2,2,0]],[[0,2,2,0],[1,3,2,2],[2,2,0,2],[2,2,2,0]],[[0,2,2,0],[1,3,2,2],[2,2,0,2],[1,3,2,0]],[[0,2,2,0],[1,3,2,2],[2,2,0,2],[1,2,3,0]],[[0,2,2,0],[1,3,2,2],[3,2,1,0],[1,2,2,1]],[[0,2,2,0],[1,3,2,2],[2,2,1,0],[2,2,2,1]],[[0,2,2,0],[1,3,2,2],[2,2,1,0],[1,3,2,1]],[[0,2,2,0],[1,3,2,2],[2,2,1,0],[1,2,3,1]],[[0,2,2,0],[1,3,2,2],[2,2,1,0],[1,2,2,2]],[[0,2,2,0],[1,3,2,2],[3,2,1,1],[1,2,2,0]],[[0,2,2,0],[1,3,2,2],[2,2,1,1],[2,2,2,0]],[[0,2,2,0],[1,3,2,2],[2,2,1,1],[1,3,2,0]],[[0,2,2,0],[1,3,2,2],[2,2,1,1],[1,2,3,0]],[[0,3,2,0],[1,3,2,2],[2,2,1,2],[0,1,2,1]],[[0,2,3,0],[1,3,2,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,0],[1,4,2,2],[2,2,1,2],[0,1,2,1]],[[0,3,2,0],[1,3,2,2],[2,2,1,2],[1,0,2,1]],[[0,2,3,0],[1,3,2,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,0],[1,4,2,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,0],[1,3,2,2],[3,2,1,2],[1,2,0,1]],[[0,2,2,0],[1,3,2,2],[2,2,1,2],[2,2,0,1]],[[0,2,2,0],[1,3,2,2],[2,2,1,2],[1,3,0,1]],[[0,2,2,0],[1,3,2,2],[3,2,1,2],[1,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,2,1,2],[2,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,1],[1,1,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[1,1,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[1,1,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[1,1,3,3],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[1,1,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,0],[1,3,2,2],[3,2,2,0],[1,2,1,1]],[[0,2,2,0],[1,3,2,2],[2,2,2,0],[2,2,1,1]],[[0,2,2,0],[1,3,2,2],[2,2,2,0],[1,3,1,1]],[[0,2,2,0],[1,3,2,2],[3,2,2,1],[1,2,0,1]],[[0,2,2,0],[1,3,2,2],[2,2,2,1],[2,2,0,1]],[[0,2,2,0],[1,3,2,2],[2,2,2,1],[1,3,0,1]],[[0,2,2,0],[1,3,2,2],[3,2,2,1],[1,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,2,2,1],[2,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,2,2,1],[1,3,1,0]],[[1,2,3,1],[1,1,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[1,1,3,3],[0,2,3,1],[1,1,2,0]],[[0,3,2,0],[1,3,2,2],[2,2,2,2],[0,0,2,1]],[[0,2,3,0],[1,3,2,2],[2,2,2,2],[0,0,2,1]],[[0,2,2,0],[1,4,2,2],[2,2,2,2],[0,0,2,1]],[[0,3,2,0],[1,3,2,2],[2,2,2,2],[0,1,1,1]],[[0,2,3,0],[1,3,2,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,0],[1,4,2,2],[2,2,2,2],[0,1,1,1]],[[0,3,2,0],[1,3,2,2],[2,2,2,2],[0,1,2,0]],[[0,2,3,0],[1,3,2,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,0],[1,4,2,2],[2,2,2,2],[0,1,2,0]],[[0,3,2,0],[1,3,2,2],[2,2,2,2],[0,2,0,1]],[[0,2,3,0],[1,3,2,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,0],[1,4,2,2],[2,2,2,2],[0,2,0,1]],[[0,3,2,0],[1,3,2,2],[2,2,2,2],[0,2,1,0]],[[0,2,3,0],[1,3,2,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,0],[1,4,2,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[1,1,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[1,1,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[1,1,3,3],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[1,1,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[1,1,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[1,1,3,3],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[1,1,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[1,1,3,2],[0,2,3,1],[1,0,2,1]],[[0,3,2,0],[1,3,2,2],[2,2,2,2],[1,0,1,1]],[[0,2,3,0],[1,3,2,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,0],[1,4,2,2],[2,2,2,2],[1,0,1,1]],[[0,3,2,0],[1,3,2,2],[2,2,2,2],[1,0,2,0]],[[0,2,3,0],[1,3,2,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,0],[1,4,2,2],[2,2,2,2],[1,0,2,0]],[[0,3,2,0],[1,3,2,2],[2,2,2,2],[1,1,0,1]],[[0,2,3,0],[1,3,2,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,0],[1,4,2,2],[2,2,2,2],[1,1,0,1]],[[0,3,2,0],[1,3,2,2],[2,2,2,2],[1,1,1,0]],[[0,2,3,0],[1,3,2,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,0],[1,4,2,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[1,1,4,2],[0,2,3,0],[1,2,2,0]],[[1,2,2,2],[1,1,3,2],[0,2,3,0],[1,2,2,0]],[[1,2,3,1],[1,1,3,2],[0,2,3,0],[1,2,2,0]],[[1,3,2,1],[1,1,3,2],[0,2,3,0],[1,2,2,0]],[[2,2,2,1],[1,1,3,2],[0,2,3,0],[1,2,2,0]],[[1,2,2,1],[1,1,3,3],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[1,1,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[1,1,3,2],[0,2,3,0],[1,1,2,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,3,0],[1,3,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,0],[1,4,2,2],[2,2,3,0],[0,1,2,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,0],[0,2,1,1]],[[0,2,3,0],[1,3,2,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,0],[1,4,2,2],[2,2,3,0],[0,2,1,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,0],[1,0,2,1]],[[0,2,3,0],[1,3,2,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,0],[1,4,2,2],[2,2,3,0],[1,0,2,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,3,0],[1,3,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,0],[1,4,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,0],[1,3,2,2],[3,2,3,0],[1,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,2,3,0],[2,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,2,3,0],[1,3,1,0]],[[1,2,2,1],[1,1,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[1,1,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[1,1,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[1,1,3,2],[0,2,2,3],[1,2,0,1]],[[1,2,2,1],[1,1,3,3],[0,2,2,2],[1,2,0,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,1],[0,0,2,1]],[[0,2,3,0],[1,3,2,2],[2,2,3,1],[0,0,2,1]],[[0,2,2,0],[1,4,2,2],[2,2,3,1],[0,0,2,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,1],[0,1,1,1]],[[0,2,3,0],[1,3,2,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,0],[1,4,2,2],[2,2,3,1],[0,1,1,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,1],[0,1,2,0]],[[0,2,3,0],[1,3,2,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,0],[1,4,2,2],[2,2,3,1],[0,1,2,0]],[[0,3,2,0],[1,3,2,2],[2,2,3,1],[0,2,0,1]],[[0,2,3,0],[1,3,2,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,0],[1,4,2,2],[2,2,3,1],[0,2,0,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,1],[0,2,1,0]],[[0,2,3,0],[1,3,2,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,0],[1,4,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[1,1,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[1,1,3,2],[0,2,2,2],[1,2,0,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,3,0],[1,3,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,0],[1,4,2,2],[2,2,3,1],[1,0,1,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,1],[1,0,2,0]],[[0,2,3,0],[1,3,2,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,0],[1,4,2,2],[2,2,3,1],[1,0,2,0]],[[0,3,2,0],[1,3,2,2],[2,2,3,1],[1,1,0,1]],[[0,2,3,0],[1,3,2,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,0],[1,4,2,2],[2,2,3,1],[1,1,0,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,1],[1,1,1,0]],[[0,2,3,0],[1,3,2,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,0],[1,4,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[1,1,3,2],[0,2,2,3],[1,1,2,0]],[[1,2,2,1],[1,1,3,3],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[1,1,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[1,1,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[1,1,3,2],[0,2,2,2],[1,1,1,2]],[[1,2,2,1],[1,1,3,2],[0,2,2,3],[1,1,1,1]],[[1,2,2,1],[1,1,3,3],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[1,1,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[1,1,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[1,1,3,2],[0,2,2,2],[1,0,2,2]],[[1,2,2,1],[1,1,3,2],[0,2,2,3],[1,0,2,1]],[[1,2,2,1],[1,1,3,3],[0,2,2,2],[1,0,2,1]],[[1,2,2,2],[1,1,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[1,1,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[1,1,3,2],[0,2,1,2],[1,1,2,2]],[[1,2,2,1],[1,1,3,2],[0,2,1,3],[1,1,2,1]],[[1,2,2,1],[1,1,3,3],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[1,1,3,2],[0,2,1,2],[1,1,2,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,2],[0,1,0,1]],[[0,2,3,0],[1,3,2,2],[2,2,3,2],[0,1,0,1]],[[0,2,2,0],[1,4,2,2],[2,2,3,2],[0,1,0,1]],[[1,2,3,1],[1,1,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[1,1,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,1],[1,1,3,3],[0,1,3,2],[1,1,2,0]],[[1,2,2,2],[1,1,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,3,1],[1,1,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,2,1],[1,1,3,2],[0,1,3,2],[1,1,1,2]],[[1,2,2,1],[1,1,3,2],[0,1,3,3],[1,1,1,1]],[[1,2,2,1],[1,1,3,3],[0,1,3,2],[1,1,1,1]],[[1,2,2,2],[1,1,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,3,1],[1,1,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,2,1],[1,1,3,2],[0,1,3,2],[1,0,2,2]],[[1,2,2,1],[1,1,3,2],[0,1,3,3],[1,0,2,1]],[[1,2,2,1],[1,1,3,3],[0,1,3,2],[1,0,2,1]],[[1,2,2,2],[1,1,3,2],[0,1,3,2],[1,0,2,1]],[[1,2,3,1],[1,1,3,2],[0,1,3,2],[1,0,2,1]],[[0,3,2,0],[1,3,2,2],[2,2,3,2],[1,0,0,1]],[[0,2,3,0],[1,3,2,2],[2,2,3,2],[1,0,0,1]],[[0,2,2,0],[1,4,2,2],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[1,1,3,3],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[1,1,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[1,1,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[1,1,3,3],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[1,1,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[1,1,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[1,1,3,3],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[1,1,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[1,1,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[1,1,3,2],[0,1,2,3],[1,2,2,0]],[[1,2,2,1],[1,1,3,3],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[1,1,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[1,1,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[1,1,3,2],[0,1,2,2],[1,2,1,2]],[[1,2,2,1],[1,1,3,2],[0,1,2,3],[1,2,1,1]],[[1,2,2,1],[1,1,3,3],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[1,1,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[1,1,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[1,1,3,2],[0,1,1,2],[1,2,2,2]],[[1,2,2,1],[1,1,3,2],[0,1,1,2],[1,2,3,1]],[[1,2,2,1],[1,1,3,2],[0,1,1,3],[1,2,2,1]],[[1,2,2,1],[1,1,3,3],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[1,1,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[1,1,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,3,2],[0,0,3,3],[1,2,2,0]],[[1,2,2,1],[1,1,3,3],[0,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,1,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,3,1],[1,1,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,1,3,2],[0,0,3,2],[1,2,1,2]],[[1,2,2,1],[1,1,3,2],[0,0,3,3],[1,2,1,1]],[[1,2,2,1],[1,1,3,3],[0,0,3,2],[1,2,1,1]],[[1,2,2,2],[1,1,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,3,1],[1,1,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,1,3,2],[0,0,3,2],[1,1,2,2]],[[1,2,2,1],[1,1,3,2],[0,0,3,3],[1,1,2,1]],[[1,2,2,1],[1,1,3,3],[0,0,3,2],[1,1,2,1]],[[1,2,2,2],[1,1,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,3,1],[1,1,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,2,1],[1,1,3,2],[0,0,3,2],[0,2,2,2]],[[1,2,2,1],[1,1,3,2],[0,0,3,3],[0,2,2,1]],[[1,2,2,1],[1,1,3,3],[0,0,3,2],[0,2,2,1]],[[1,2,2,2],[1,1,3,2],[0,0,3,2],[0,2,2,1]],[[1,2,3,1],[1,1,3,2],[0,0,3,2],[0,2,2,1]],[[1,2,2,1],[1,1,3,2],[0,0,2,2],[1,2,2,2]],[[1,2,2,1],[1,1,3,2],[0,0,2,2],[1,2,3,1]],[[1,2,2,1],[1,1,3,2],[0,0,2,3],[1,2,2,1]],[[1,2,2,1],[1,1,3,3],[0,0,2,2],[1,2,2,1]],[[1,2,2,2],[1,1,3,2],[0,0,2,2],[1,2,2,1]],[[1,2,3,1],[1,1,3,2],[0,0,2,2],[1,2,2,1]],[[0,2,2,0],[1,3,2,2],[3,3,0,0],[1,2,2,1]],[[0,2,2,0],[1,3,2,2],[2,3,0,0],[2,2,2,1]],[[0,2,2,0],[1,3,2,2],[2,3,0,0],[1,3,2,1]],[[0,3,2,0],[1,3,2,2],[2,3,0,1],[0,2,2,1]],[[0,2,3,0],[1,3,2,2],[2,3,0,1],[0,2,2,1]],[[0,2,2,0],[1,4,2,2],[2,3,0,1],[0,2,2,1]],[[0,2,2,0],[1,3,2,2],[3,3,0,1],[0,2,2,1]],[[0,2,2,0],[1,3,2,2],[2,4,0,1],[0,2,2,1]],[[0,2,2,0],[1,3,2,2],[2,3,0,1],[0,3,2,1]],[[0,2,2,0],[1,3,2,2],[2,3,0,1],[0,2,3,1]],[[0,2,2,0],[1,3,2,2],[2,3,0,1],[0,2,2,2]],[[0,3,2,0],[1,3,2,2],[2,3,0,1],[1,1,2,1]],[[0,2,3,0],[1,3,2,2],[2,3,0,1],[1,1,2,1]],[[0,2,2,0],[1,4,2,2],[2,3,0,1],[1,1,2,1]],[[0,2,2,0],[1,3,2,2],[3,3,0,1],[1,1,2,1]],[[0,2,2,0],[1,3,2,2],[2,4,0,1],[1,1,2,1]],[[0,2,2,0],[1,3,2,2],[2,3,0,1],[2,1,2,1]],[[0,2,2,0],[1,3,2,2],[3,3,0,1],[1,2,2,0]],[[0,2,2,0],[1,3,2,2],[2,3,0,1],[2,2,2,0]],[[0,2,2,0],[1,3,2,2],[2,3,0,1],[1,3,2,0]],[[0,3,2,0],[1,3,2,2],[2,3,0,2],[0,1,2,1]],[[0,2,3,0],[1,3,2,2],[2,3,0,2],[0,1,2,1]],[[0,2,2,0],[1,4,2,2],[2,3,0,2],[0,1,2,1]],[[0,2,2,0],[1,3,2,2],[3,3,0,2],[0,1,2,1]],[[0,2,2,0],[1,3,2,2],[2,4,0,2],[0,1,2,1]],[[0,3,2,0],[1,3,2,2],[2,3,0,2],[0,2,1,1]],[[0,2,3,0],[1,3,2,2],[2,3,0,2],[0,2,1,1]],[[0,2,2,0],[1,4,2,2],[2,3,0,2],[0,2,1,1]],[[0,2,2,0],[1,3,2,2],[3,3,0,2],[0,2,1,1]],[[0,2,2,0],[1,3,2,2],[2,4,0,2],[0,2,1,1]],[[0,2,2,0],[1,3,2,2],[2,3,0,2],[0,3,1,1]],[[0,3,2,0],[1,3,2,2],[2,3,0,2],[0,2,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,0,2],[0,2,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,0,2],[0,2,2,0]],[[0,2,2,0],[1,3,2,2],[3,3,0,2],[0,2,2,0]],[[0,2,2,0],[1,3,2,2],[2,4,0,2],[0,2,2,0]],[[0,2,2,0],[1,3,2,2],[2,3,0,2],[0,3,2,0]],[[0,2,2,0],[1,3,2,2],[2,3,0,2],[0,2,3,0]],[[0,3,2,0],[1,3,2,2],[2,3,0,2],[1,0,2,1]],[[0,2,3,0],[1,3,2,2],[2,3,0,2],[1,0,2,1]],[[0,2,2,0],[1,4,2,2],[2,3,0,2],[1,0,2,1]],[[0,2,2,0],[1,3,2,2],[3,3,0,2],[1,0,2,1]],[[0,2,2,0],[1,3,2,2],[2,4,0,2],[1,0,2,1]],[[0,2,2,0],[1,3,2,2],[2,3,0,2],[2,0,2,1]],[[0,3,2,0],[1,3,2,2],[2,3,0,2],[1,1,1,1]],[[0,2,3,0],[1,3,2,2],[2,3,0,2],[1,1,1,1]],[[0,2,2,0],[1,4,2,2],[2,3,0,2],[1,1,1,1]],[[0,2,2,0],[1,3,2,2],[3,3,0,2],[1,1,1,1]],[[0,2,2,0],[1,3,2,2],[2,4,0,2],[1,1,1,1]],[[0,2,2,0],[1,3,2,2],[2,3,0,2],[2,1,1,1]],[[0,3,2,0],[1,3,2,2],[2,3,0,2],[1,1,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,0,2],[1,1,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,0,2],[1,1,2,0]],[[0,2,2,0],[1,3,2,2],[3,3,0,2],[1,1,2,0]],[[0,2,2,0],[1,3,2,2],[2,4,0,2],[1,1,2,0]],[[0,2,2,0],[1,3,2,2],[2,3,0,2],[2,1,2,0]],[[0,3,2,0],[1,3,2,2],[2,3,1,0],[0,2,2,1]],[[0,2,3,0],[1,3,2,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,0],[1,4,2,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,0],[1,3,2,2],[3,3,1,0],[0,2,2,1]],[[0,2,2,0],[1,3,2,2],[2,4,1,0],[0,2,2,1]],[[0,2,2,0],[1,3,2,2],[2,3,1,0],[0,3,2,1]],[[0,2,2,0],[1,3,2,2],[2,3,1,0],[0,2,3,1]],[[0,2,2,0],[1,3,2,2],[2,3,1,0],[0,2,2,2]],[[0,3,2,0],[1,3,2,2],[2,3,1,0],[1,1,2,1]],[[0,2,3,0],[1,3,2,2],[2,3,1,0],[1,1,2,1]],[[0,2,2,0],[1,4,2,2],[2,3,1,0],[1,1,2,1]],[[0,2,2,0],[1,3,2,2],[3,3,1,0],[1,1,2,1]],[[0,2,2,0],[1,3,2,2],[2,4,1,0],[1,1,2,1]],[[0,2,2,0],[1,3,2,2],[2,3,1,0],[2,1,2,1]],[[0,3,2,0],[1,3,2,2],[2,3,1,1],[0,2,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,1,1],[0,2,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,1,1],[0,2,2,0]],[[0,2,2,0],[1,3,2,2],[3,3,1,1],[0,2,2,0]],[[0,2,2,0],[1,3,2,2],[2,4,1,1],[0,2,2,0]],[[0,2,2,0],[1,3,2,2],[2,3,1,1],[0,3,2,0]],[[0,2,2,0],[1,3,2,2],[2,3,1,1],[0,2,3,0]],[[0,3,2,0],[1,3,2,2],[2,3,1,1],[1,1,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,1,1],[1,1,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,1,1],[1,1,2,0]],[[0,2,2,0],[1,3,2,2],[3,3,1,1],[1,1,2,0]],[[0,2,2,0],[1,3,2,2],[2,4,1,1],[1,1,2,0]],[[0,2,2,0],[1,3,2,2],[2,3,1,1],[2,1,2,0]],[[0,3,2,0],[1,3,2,2],[2,3,1,2],[0,1,1,1]],[[0,2,3,0],[1,3,2,2],[2,3,1,2],[0,1,1,1]],[[0,2,2,0],[1,4,2,2],[2,3,1,2],[0,1,1,1]],[[0,2,2,0],[1,3,2,2],[3,3,1,2],[0,1,1,1]],[[0,2,2,0],[1,3,2,2],[2,4,1,2],[0,1,1,1]],[[0,3,2,0],[1,3,2,2],[2,3,1,2],[0,1,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,1,2],[0,1,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,1,2],[0,1,2,0]],[[0,2,2,0],[1,3,2,2],[3,3,1,2],[0,1,2,0]],[[0,2,2,0],[1,3,2,2],[2,4,1,2],[0,1,2,0]],[[0,3,2,0],[1,3,2,2],[2,3,1,2],[0,2,0,1]],[[0,2,3,0],[1,3,2,2],[2,3,1,2],[0,2,0,1]],[[0,2,2,0],[1,4,2,2],[2,3,1,2],[0,2,0,1]],[[0,2,2,0],[1,3,2,2],[3,3,1,2],[0,2,0,1]],[[0,2,2,0],[1,3,2,2],[2,4,1,2],[0,2,0,1]],[[0,2,2,0],[1,3,2,2],[2,3,1,2],[0,3,0,1]],[[0,3,2,0],[1,3,2,2],[2,3,1,2],[0,2,1,0]],[[0,2,3,0],[1,3,2,2],[2,3,1,2],[0,2,1,0]],[[0,2,2,0],[1,4,2,2],[2,3,1,2],[0,2,1,0]],[[0,2,2,0],[1,3,2,2],[3,3,1,2],[0,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,4,1,2],[0,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,3,1,2],[0,3,1,0]],[[0,3,2,0],[1,3,2,2],[2,3,1,2],[1,0,1,1]],[[0,2,3,0],[1,3,2,2],[2,3,1,2],[1,0,1,1]],[[0,2,2,0],[1,4,2,2],[2,3,1,2],[1,0,1,1]],[[0,2,2,0],[1,3,2,2],[3,3,1,2],[1,0,1,1]],[[0,2,2,0],[1,3,2,2],[2,4,1,2],[1,0,1,1]],[[0,2,2,0],[1,3,2,2],[2,3,1,2],[2,0,1,1]],[[0,3,2,0],[1,3,2,2],[2,3,1,2],[1,0,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,1,2],[1,0,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,1,2],[1,0,2,0]],[[0,2,2,0],[1,3,2,2],[3,3,1,2],[1,0,2,0]],[[0,2,2,0],[1,3,2,2],[2,4,1,2],[1,0,2,0]],[[0,2,2,0],[1,3,2,2],[2,3,1,2],[2,0,2,0]],[[0,3,2,0],[1,3,2,2],[2,3,1,2],[1,1,0,1]],[[0,2,3,0],[1,3,2,2],[2,3,1,2],[1,1,0,1]],[[0,2,2,0],[1,4,2,2],[2,3,1,2],[1,1,0,1]],[[0,2,2,0],[1,3,2,2],[3,3,1,2],[1,1,0,1]],[[0,2,2,0],[1,3,2,2],[2,4,1,2],[1,1,0,1]],[[0,2,2,0],[1,3,2,2],[2,3,1,2],[2,1,0,1]],[[0,3,2,0],[1,3,2,2],[2,3,1,2],[1,1,1,0]],[[0,2,3,0],[1,3,2,2],[2,3,1,2],[1,1,1,0]],[[0,2,2,0],[1,4,2,2],[2,3,1,2],[1,1,1,0]],[[0,2,2,0],[1,3,2,2],[3,3,1,2],[1,1,1,0]],[[0,2,2,0],[1,3,2,2],[2,4,1,2],[1,1,1,0]],[[0,2,2,0],[1,3,2,2],[2,3,1,2],[2,1,1,0]],[[0,3,2,0],[1,3,2,2],[2,3,1,2],[1,2,0,0]],[[0,2,3,0],[1,3,2,2],[2,3,1,2],[1,2,0,0]],[[0,2,2,0],[1,4,2,2],[2,3,1,2],[1,2,0,0]],[[0,2,2,0],[1,3,2,2],[3,3,1,2],[1,2,0,0]],[[0,2,2,0],[1,3,2,2],[2,4,1,2],[1,2,0,0]],[[0,2,2,0],[1,3,2,2],[2,3,1,2],[2,2,0,0]],[[0,3,2,0],[1,3,2,2],[2,3,2,0],[0,1,2,1]],[[0,2,3,0],[1,3,2,2],[2,3,2,0],[0,1,2,1]],[[0,2,2,0],[1,4,2,2],[2,3,2,0],[0,1,2,1]],[[0,2,2,0],[1,3,2,2],[3,3,2,0],[0,1,2,1]],[[0,2,2,0],[1,3,2,2],[2,4,2,0],[0,1,2,1]],[[0,3,2,0],[1,3,2,2],[2,3,2,0],[0,2,1,1]],[[0,2,3,0],[1,3,2,2],[2,3,2,0],[0,2,1,1]],[[0,2,2,0],[1,4,2,2],[2,3,2,0],[0,2,1,1]],[[0,2,2,0],[1,3,2,2],[3,3,2,0],[0,2,1,1]],[[0,2,2,0],[1,3,2,2],[2,4,2,0],[0,2,1,1]],[[0,2,2,0],[1,3,2,2],[2,3,2,0],[0,3,1,1]],[[0,3,2,0],[1,3,2,2],[2,3,2,0],[1,0,2,1]],[[0,2,3,0],[1,3,2,2],[2,3,2,0],[1,0,2,1]],[[0,2,2,0],[1,4,2,2],[2,3,2,0],[1,0,2,1]],[[0,2,2,0],[1,3,2,2],[3,3,2,0],[1,0,2,1]],[[0,2,2,0],[1,3,2,2],[2,4,2,0],[1,0,2,1]],[[0,2,2,0],[1,3,2,2],[2,3,2,0],[2,0,2,1]],[[0,3,2,0],[1,3,2,2],[2,3,2,0],[1,1,1,1]],[[0,2,3,0],[1,3,2,2],[2,3,2,0],[1,1,1,1]],[[0,2,2,0],[1,4,2,2],[2,3,2,0],[1,1,1,1]],[[0,2,2,0],[1,3,2,2],[3,3,2,0],[1,1,1,1]],[[0,2,2,0],[1,3,2,2],[2,4,2,0],[1,1,1,1]],[[0,2,2,0],[1,3,2,2],[2,3,2,0],[2,1,1,1]],[[0,3,2,0],[1,3,2,2],[2,3,2,0],[1,2,0,1]],[[0,2,3,0],[1,3,2,2],[2,3,2,0],[1,2,0,1]],[[0,2,2,0],[1,4,2,2],[2,3,2,0],[1,2,0,1]],[[0,2,2,0],[1,3,2,2],[3,3,2,0],[1,2,0,1]],[[0,2,2,0],[1,3,2,2],[2,4,2,0],[1,2,0,1]],[[0,2,2,0],[1,3,2,2],[2,3,2,0],[2,2,0,1]],[[0,3,2,0],[1,3,2,2],[2,3,2,1],[0,1,1,1]],[[0,2,3,0],[1,3,2,2],[2,3,2,1],[0,1,1,1]],[[0,2,2,0],[1,4,2,2],[2,3,2,1],[0,1,1,1]],[[0,2,2,0],[1,3,2,2],[3,3,2,1],[0,1,1,1]],[[0,2,2,0],[1,3,2,2],[2,4,2,1],[0,1,1,1]],[[0,3,2,0],[1,3,2,2],[2,3,2,1],[0,1,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,2,1],[0,1,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,2,1],[0,1,2,0]],[[0,2,2,0],[1,3,2,2],[3,3,2,1],[0,1,2,0]],[[0,2,2,0],[1,3,2,2],[2,4,2,1],[0,1,2,0]],[[0,3,2,0],[1,3,2,2],[2,3,2,1],[0,2,0,1]],[[0,2,3,0],[1,3,2,2],[2,3,2,1],[0,2,0,1]],[[0,2,2,0],[1,4,2,2],[2,3,2,1],[0,2,0,1]],[[0,2,2,0],[1,3,2,2],[3,3,2,1],[0,2,0,1]],[[0,2,2,0],[1,3,2,2],[2,4,2,1],[0,2,0,1]],[[0,2,2,0],[1,3,2,2],[2,3,2,1],[0,3,0,1]],[[0,3,2,0],[1,3,2,2],[2,3,2,1],[0,2,1,0]],[[0,2,3,0],[1,3,2,2],[2,3,2,1],[0,2,1,0]],[[0,2,2,0],[1,4,2,2],[2,3,2,1],[0,2,1,0]],[[0,2,2,0],[1,3,2,2],[3,3,2,1],[0,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,4,2,1],[0,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,3,2,1],[0,3,1,0]],[[0,3,2,0],[1,3,2,2],[2,3,2,1],[1,0,1,1]],[[0,2,3,0],[1,3,2,2],[2,3,2,1],[1,0,1,1]],[[0,2,2,0],[1,4,2,2],[2,3,2,1],[1,0,1,1]],[[0,2,2,0],[1,3,2,2],[3,3,2,1],[1,0,1,1]],[[0,2,2,0],[1,3,2,2],[2,4,2,1],[1,0,1,1]],[[0,2,2,0],[1,3,2,2],[2,3,2,1],[2,0,1,1]],[[0,3,2,0],[1,3,2,2],[2,3,2,1],[1,0,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,2,1],[1,0,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,2,1],[1,0,2,0]],[[0,2,2,0],[1,3,2,2],[3,3,2,1],[1,0,2,0]],[[0,2,2,0],[1,3,2,2],[2,4,2,1],[1,0,2,0]],[[0,2,2,0],[1,3,2,2],[2,3,2,1],[2,0,2,0]],[[0,3,2,0],[1,3,2,2],[2,3,2,1],[1,1,0,1]],[[0,2,3,0],[1,3,2,2],[2,3,2,1],[1,1,0,1]],[[0,2,2,0],[1,4,2,2],[2,3,2,1],[1,1,0,1]],[[0,2,2,0],[1,3,2,2],[3,3,2,1],[1,1,0,1]],[[0,2,2,0],[1,3,2,2],[2,4,2,1],[1,1,0,1]],[[0,2,2,0],[1,3,2,2],[2,3,2,1],[2,1,0,1]],[[0,3,2,0],[1,3,2,2],[2,3,2,1],[1,1,1,0]],[[0,2,3,0],[1,3,2,2],[2,3,2,1],[1,1,1,0]],[[0,2,2,0],[1,4,2,2],[2,3,2,1],[1,1,1,0]],[[0,2,2,0],[1,3,2,2],[3,3,2,1],[1,1,1,0]],[[0,2,2,0],[1,3,2,2],[2,4,2,1],[1,1,1,0]],[[0,2,2,0],[1,3,2,2],[2,3,2,1],[2,1,1,0]],[[0,3,2,0],[1,3,2,2],[2,3,2,1],[1,2,0,0]],[[0,2,3,0],[1,3,2,2],[2,3,2,1],[1,2,0,0]],[[0,2,2,0],[1,4,2,2],[2,3,2,1],[1,2,0,0]],[[0,2,2,0],[1,3,2,2],[3,3,2,1],[1,2,0,0]],[[0,2,2,0],[1,3,2,2],[2,4,2,1],[1,2,0,0]],[[0,2,2,0],[1,3,2,2],[2,3,2,1],[2,2,0,0]],[[0,3,2,0],[1,3,2,2],[2,3,2,2],[0,0,1,1]],[[0,2,3,0],[1,3,2,2],[2,3,2,2],[0,0,1,1]],[[0,2,2,0],[1,4,2,2],[2,3,2,2],[0,0,1,1]],[[0,3,2,0],[1,3,2,2],[2,3,2,2],[0,0,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,2,2],[0,0,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,2,2],[0,0,2,0]],[[0,3,2,0],[1,3,2,2],[2,3,3,0],[0,0,2,1]],[[0,2,3,0],[1,3,2,2],[2,3,3,0],[0,0,2,1]],[[0,2,2,0],[1,4,2,2],[2,3,3,0],[0,0,2,1]],[[0,3,2,0],[1,3,2,2],[2,3,3,0],[0,1,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,3,0],[0,1,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,3,0],[0,1,2,0]],[[0,2,2,0],[1,3,2,2],[3,3,3,0],[0,1,2,0]],[[0,2,2,0],[1,3,2,2],[2,4,3,0],[0,1,2,0]],[[0,3,2,0],[1,3,2,2],[2,3,3,0],[0,2,1,0]],[[0,2,3,0],[1,3,2,2],[2,3,3,0],[0,2,1,0]],[[0,2,2,0],[1,4,2,2],[2,3,3,0],[0,2,1,0]],[[0,2,2,0],[1,3,2,2],[3,3,3,0],[0,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,4,3,0],[0,2,1,0]],[[0,2,2,0],[1,3,2,2],[2,3,3,0],[0,3,1,0]],[[0,3,2,0],[1,3,2,2],[2,3,3,0],[1,0,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,3,0],[1,0,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,3,0],[1,0,2,0]],[[0,2,2,0],[1,3,2,2],[3,3,3,0],[1,0,2,0]],[[0,2,2,0],[1,3,2,2],[2,4,3,0],[1,0,2,0]],[[0,2,2,0],[1,3,2,2],[2,3,3,0],[2,0,2,0]],[[0,3,2,0],[1,3,2,2],[2,3,3,0],[1,1,1,0]],[[0,2,3,0],[1,3,2,2],[2,3,3,0],[1,1,1,0]],[[0,2,2,0],[1,4,2,2],[2,3,3,0],[1,1,1,0]],[[0,2,2,0],[1,3,2,2],[3,3,3,0],[1,1,1,0]],[[0,2,2,0],[1,3,2,2],[2,4,3,0],[1,1,1,0]],[[0,2,2,0],[1,3,2,2],[2,3,3,0],[2,1,1,0]],[[0,3,2,0],[1,3,2,2],[2,3,3,0],[1,2,0,0]],[[0,2,3,0],[1,3,2,2],[2,3,3,0],[1,2,0,0]],[[0,2,2,0],[1,4,2,2],[2,3,3,0],[1,2,0,0]],[[0,2,2,0],[1,3,2,2],[3,3,3,0],[1,2,0,0]],[[0,2,2,0],[1,3,2,2],[2,4,3,0],[1,2,0,0]],[[0,2,2,0],[1,3,2,2],[2,3,3,0],[2,2,0,0]],[[0,3,2,0],[1,3,2,2],[2,3,3,1],[0,0,1,1]],[[0,2,3,0],[1,3,2,2],[2,3,3,1],[0,0,1,1]],[[0,2,2,0],[1,4,2,2],[2,3,3,1],[0,0,1,1]],[[0,3,2,0],[1,3,2,2],[2,3,3,1],[0,0,2,0]],[[0,2,3,0],[1,3,2,2],[2,3,3,1],[0,0,2,0]],[[0,2,2,0],[1,4,2,2],[2,3,3,1],[0,0,2,0]],[[0,3,2,0],[1,3,2,2],[2,3,3,1],[0,2,0,0]],[[0,2,3,0],[1,3,2,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,0],[1,4,2,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,0],[1,3,2,2],[3,3,3,1],[0,2,0,0]],[[0,2,2,0],[1,3,2,2],[2,4,3,1],[0,2,0,0]],[[0,3,2,0],[1,3,2,2],[2,3,3,1],[1,1,0,0]],[[0,2,3,0],[1,3,2,2],[2,3,3,1],[1,1,0,0]],[[0,2,2,0],[1,4,2,2],[2,3,3,1],[1,1,0,0]],[[0,2,2,0],[1,3,2,2],[3,3,3,1],[1,1,0,0]],[[0,2,2,0],[1,3,2,2],[2,4,3,1],[1,1,0,0]],[[0,2,2,0],[1,3,2,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[1,1,4,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[1,1,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[1,1,3,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[1,1,3,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[1,1,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,1,3,1],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[1,1,3,1],[2,0,3,1],[1,3,2,0]],[[1,2,2,1],[1,1,3,1],[2,0,3,1],[2,2,2,0]],[[1,2,2,1],[1,1,3,1],[2,0,4,1],[1,2,2,0]],[[1,2,2,1],[1,1,3,1],[3,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,1,4,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,1,3,1],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,1,3,1],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[1,1,3,1],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[1,1,3,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,1,3,1],[2,0,4,1],[1,2,1,1]],[[1,2,2,1],[1,1,4,1],[2,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,1,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,1,3,1],[2,0,3,1],[1,2,1,1]],[[1,3,2,1],[1,1,3,1],[2,0,3,1],[1,2,1,1]],[[2,2,2,1],[1,1,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,1,3,1],[2,0,3,0],[1,2,2,2]],[[1,2,2,1],[1,1,3,1],[2,0,3,0],[1,2,3,1]],[[1,2,2,1],[1,1,3,1],[2,0,3,0],[1,3,2,1]],[[1,2,2,1],[1,1,3,1],[2,0,3,0],[2,2,2,1]],[[1,2,2,1],[1,1,3,1],[2,0,4,0],[1,2,2,1]],[[1,2,2,1],[1,1,3,1],[3,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,1,4,1],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,1,3,1],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,1,3,1],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[1,1,3,1],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[1,1,3,1],[2,0,3,0],[1,2,2,1]],[[0,3,2,0],[1,3,2,2],[2,3,3,2],[0,0,0,1]],[[0,2,3,0],[1,3,2,2],[2,3,3,2],[0,0,0,1]],[[0,2,2,0],[1,4,2,2],[2,3,3,2],[0,0,0,1]],[[1,2,2,1],[1,1,4,1],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,1,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,1,3,1],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[1,1,3,1],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[1,1,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,1,4,1],[2,0,2,2],[1,2,1,1]],[[1,2,2,2],[1,1,3,1],[2,0,2,2],[1,2,1,1]],[[1,2,3,1],[1,1,3,1],[2,0,2,2],[1,2,1,1]],[[1,3,2,1],[1,1,3,1],[2,0,2,2],[1,2,1,1]],[[2,2,2,1],[1,1,3,1],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,1,4,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,1,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,1,3,1],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,1,3,1],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,1,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,4,1],[1,3,3,2],[1,0,0,1]],[[1,2,2,2],[1,1,3,1],[1,3,3,2],[1,0,0,1]],[[1,2,3,1],[1,1,3,1],[1,3,3,2],[1,0,0,1]],[[1,3,2,1],[1,1,3,1],[1,3,3,2],[1,0,0,1]],[[2,2,2,1],[1,1,3,1],[1,3,3,2],[1,0,0,1]],[[1,2,2,1],[1,1,4,1],[1,3,3,2],[0,1,0,1]],[[1,2,2,2],[1,1,3,1],[1,3,3,2],[0,1,0,1]],[[1,2,3,1],[1,1,3,1],[1,3,3,2],[0,1,0,1]],[[1,3,2,1],[1,1,3,1],[1,3,3,2],[0,1,0,1]],[[2,2,2,1],[1,1,3,1],[1,3,3,2],[0,1,0,1]],[[1,2,2,1],[1,1,3,1],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[1,1,3,1],[1,4,3,1],[1,1,1,0]],[[1,2,2,1],[1,1,4,1],[1,3,3,1],[1,1,1,0]],[[1,2,2,2],[1,1,3,1],[1,3,3,1],[1,1,1,0]],[[1,2,3,1],[1,1,3,1],[1,3,3,1],[1,1,1,0]],[[1,3,2,1],[1,1,3,1],[1,3,3,1],[1,1,1,0]],[[2,2,2,1],[1,1,3,1],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[1,1,3,1],[1,3,4,1],[1,1,0,1]],[[1,2,2,1],[1,1,3,1],[1,4,3,1],[1,1,0,1]],[[1,2,2,1],[1,1,4,1],[1,3,3,1],[1,1,0,1]],[[1,2,2,2],[1,1,3,1],[1,3,3,1],[1,1,0,1]],[[1,2,3,1],[1,1,3,1],[1,3,3,1],[1,1,0,1]],[[1,3,2,1],[1,1,3,1],[1,3,3,1],[1,1,0,1]],[[2,2,2,1],[1,1,3,1],[1,3,3,1],[1,1,0,1]],[[1,2,2,1],[1,1,3,1],[1,3,3,1],[1,0,3,0]],[[1,2,2,1],[1,1,3,1],[1,3,4,1],[1,0,2,0]],[[1,2,2,1],[1,1,3,1],[1,4,3,1],[1,0,2,0]],[[1,2,2,1],[1,1,4,1],[1,3,3,1],[1,0,2,0]],[[1,2,2,2],[1,1,3,1],[1,3,3,1],[1,0,2,0]],[[1,2,3,1],[1,1,3,1],[1,3,3,1],[1,0,2,0]],[[1,3,2,1],[1,1,3,1],[1,3,3,1],[1,0,2,0]],[[2,2,2,1],[1,1,3,1],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[1,1,3,1],[1,3,4,1],[1,0,1,1]],[[1,2,2,1],[1,1,3,1],[1,4,3,1],[1,0,1,1]],[[1,2,2,1],[1,1,4,1],[1,3,3,1],[1,0,1,1]],[[1,2,2,2],[1,1,3,1],[1,3,3,1],[1,0,1,1]],[[1,2,3,1],[1,1,3,1],[1,3,3,1],[1,0,1,1]],[[1,3,2,1],[1,1,3,1],[1,3,3,1],[1,0,1,1]],[[2,2,2,1],[1,1,3,1],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[1,1,3,1],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[1,1,3,1],[1,3,4,1],[0,2,1,0]],[[1,2,2,1],[1,1,3,1],[1,4,3,1],[0,2,1,0]],[[1,2,2,1],[1,1,4,1],[1,3,3,1],[0,2,1,0]],[[1,2,2,2],[1,1,3,1],[1,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,1,3,1],[1,3,3,1],[0,2,1,0]],[[1,3,2,1],[1,1,3,1],[1,3,3,1],[0,2,1,0]],[[2,2,2,1],[1,1,3,1],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,1,3,1],[1,3,3,1],[0,3,0,1]],[[1,2,2,1],[1,1,3,1],[1,3,4,1],[0,2,0,1]],[[1,2,2,1],[1,1,3,1],[1,4,3,1],[0,2,0,1]],[[1,2,2,1],[1,1,4,1],[1,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,1,3,1],[1,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,1,3,1],[1,3,3,1],[0,2,0,1]],[[1,3,2,1],[1,1,3,1],[1,3,3,1],[0,2,0,1]],[[2,2,2,1],[1,1,3,1],[1,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,1,3,1],[1,3,3,1],[0,1,3,0]],[[1,2,2,1],[1,1,3,1],[1,3,4,1],[0,1,2,0]],[[1,2,2,1],[1,1,3,1],[1,4,3,1],[0,1,2,0]],[[1,2,2,1],[1,1,4,1],[1,3,3,1],[0,1,2,0]],[[1,2,2,2],[1,1,3,1],[1,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,1,3,1],[1,3,3,1],[0,1,2,0]],[[1,3,2,1],[1,1,3,1],[1,3,3,1],[0,1,2,0]],[[2,2,2,1],[1,1,3,1],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,1,3,1],[1,3,4,1],[0,1,1,1]],[[1,2,2,1],[1,1,3,1],[1,4,3,1],[0,1,1,1]],[[1,2,2,1],[1,1,4,1],[1,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,1,3,1],[1,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,1,3,1],[1,3,3,1],[0,1,1,1]],[[1,3,2,1],[1,1,3,1],[1,3,3,1],[0,1,1,1]],[[2,2,2,1],[1,1,3,1],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,1,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,2,1],[1,1,4,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,1,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,1,3,1],[1,3,3,1],[0,0,2,1]],[[1,3,2,1],[1,1,3,1],[1,3,3,1],[0,0,2,1]],[[2,2,2,1],[1,1,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[1,1,3,1],[1,3,4,0],[1,1,1,1]],[[1,2,2,1],[1,1,3,1],[1,4,3,0],[1,1,1,1]],[[1,2,2,1],[1,1,4,1],[1,3,3,0],[1,1,1,1]],[[1,2,2,2],[1,1,3,1],[1,3,3,0],[1,1,1,1]],[[1,2,3,1],[1,1,3,1],[1,3,3,0],[1,1,1,1]],[[1,3,2,1],[1,1,3,1],[1,3,3,0],[1,1,1,1]],[[2,2,2,1],[1,1,3,1],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[1,1,3,1],[1,3,3,0],[1,0,2,2]],[[1,2,2,1],[1,1,3,1],[1,3,3,0],[1,0,3,1]],[[1,2,2,1],[1,1,3,1],[1,3,4,0],[1,0,2,1]],[[1,2,2,1],[1,1,3,1],[1,4,3,0],[1,0,2,1]],[[1,2,2,1],[1,1,4,1],[1,3,3,0],[1,0,2,1]],[[1,2,2,2],[1,1,3,1],[1,3,3,0],[1,0,2,1]],[[1,2,3,1],[1,1,3,1],[1,3,3,0],[1,0,2,1]],[[1,3,2,1],[1,1,3,1],[1,3,3,0],[1,0,2,1]],[[2,2,2,1],[1,1,3,1],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[1,1,3,1],[1,3,3,0],[0,3,1,1]],[[1,2,2,1],[1,1,3,1],[1,3,4,0],[0,2,1,1]],[[1,2,2,1],[1,1,3,1],[1,4,3,0],[0,2,1,1]],[[1,2,2,1],[1,1,4,1],[1,3,3,0],[0,2,1,1]],[[1,2,2,2],[1,1,3,1],[1,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,1,3,1],[1,3,3,0],[0,2,1,1]],[[1,3,2,1],[1,1,3,1],[1,3,3,0],[0,2,1,1]],[[2,2,2,1],[1,1,3,1],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,1,3,1],[1,3,3,0],[0,1,2,2]],[[1,2,2,1],[1,1,3,1],[1,3,3,0],[0,1,3,1]],[[1,2,2,1],[1,1,3,1],[1,3,4,0],[0,1,2,1]],[[1,2,2,1],[1,1,3,1],[1,4,3,0],[0,1,2,1]],[[1,2,2,1],[1,1,4,1],[1,3,3,0],[0,1,2,1]],[[1,2,2,2],[1,1,3,1],[1,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,1,3,1],[1,3,3,0],[0,1,2,1]],[[1,3,2,1],[1,1,3,1],[1,3,3,0],[0,1,2,1]],[[2,2,2,1],[1,1,3,1],[1,3,3,0],[0,1,2,1]],[[1,2,2,1],[1,1,4,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[1,1,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,3,1],[1,1,3,1],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[1,1,3,1],[1,3,2,2],[1,1,1,0]],[[2,2,2,1],[1,1,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[1,1,4,1],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[1,1,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[1,1,3,1],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[1,1,3,1],[1,3,2,2],[1,1,0,1]],[[2,2,2,1],[1,1,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[1,1,4,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[1,1,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,3,1],[1,1,3,1],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[1,1,3,1],[1,3,2,2],[1,0,2,0]],[[2,2,2,1],[1,1,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[1,1,4,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[1,1,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[1,1,3,1],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[1,1,3,1],[1,3,2,2],[1,0,1,1]],[[2,2,2,1],[1,1,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[1,1,4,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,1,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,1,3,1],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[1,1,3,1],[1,3,2,2],[0,2,1,0]],[[2,2,2,1],[1,1,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,1,4,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,1,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,1,3,1],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[1,1,3,1],[1,3,2,2],[0,2,0,1]],[[2,2,2,1],[1,1,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[1,1,4,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,1,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,1,3,1],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[1,1,3,1],[1,3,2,2],[0,1,2,0]],[[2,2,2,1],[1,1,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,1,4,1],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,1,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,1,3,1],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[1,1,3,1],[1,3,2,2],[0,1,1,1]],[[2,2,2,1],[1,1,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,1,4,1],[1,3,2,2],[0,0,2,1]],[[1,2,2,2],[1,1,3,1],[1,3,2,2],[0,0,2,1]],[[1,2,3,1],[1,1,3,1],[1,3,2,2],[0,0,2,1]],[[1,3,2,1],[1,1,3,1],[1,3,2,2],[0,0,2,1]],[[2,2,2,1],[1,1,3,1],[1,3,2,2],[0,0,2,1]],[[1,2,2,1],[1,1,3,1],[1,3,2,1],[0,2,3,0]],[[1,2,2,1],[1,1,3,1],[1,3,2,1],[0,3,2,0]],[[1,2,2,1],[1,1,3,1],[1,4,2,1],[0,2,2,0]],[[1,2,2,1],[1,1,3,1],[1,3,2,0],[0,2,2,2]],[[1,2,2,1],[1,1,3,1],[1,3,2,0],[0,2,3,1]],[[1,2,2,1],[1,1,3,1],[1,3,2,0],[0,3,2,1]],[[1,2,2,1],[1,1,3,1],[1,4,2,0],[0,2,2,1]],[[1,2,2,1],[1,1,4,1],[1,3,1,2],[1,0,2,1]],[[1,2,2,2],[1,1,3,1],[1,3,1,2],[1,0,2,1]],[[1,2,3,1],[1,1,3,1],[1,3,1,2],[1,0,2,1]],[[1,3,2,1],[1,1,3,1],[1,3,1,2],[1,0,2,1]],[[2,2,2,1],[1,1,3,1],[1,3,1,2],[1,0,2,1]],[[1,2,2,1],[1,1,4,1],[1,3,1,2],[0,1,2,1]],[[1,2,2,2],[1,1,3,1],[1,3,1,2],[0,1,2,1]],[[1,2,3,1],[1,1,3,1],[1,3,1,2],[0,1,2,1]],[[1,3,2,1],[1,1,3,1],[1,3,1,2],[0,1,2,1]],[[2,2,2,1],[1,1,3,1],[1,3,1,2],[0,1,2,1]],[[1,2,2,1],[1,1,4,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[1,1,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[1,1,3,1],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[1,1,3,1],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[1,1,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[1,1,3,1],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[1,1,3,1],[1,2,3,1],[0,3,2,0]],[[1,2,2,1],[1,1,3,1],[1,2,4,1],[0,2,2,0]],[[1,2,2,1],[1,1,4,1],[1,2,3,1],[0,2,2,0]],[[1,2,2,2],[1,1,3,1],[1,2,3,1],[0,2,2,0]],[[1,2,3,1],[1,1,3,1],[1,2,3,1],[0,2,2,0]],[[1,3,2,1],[1,1,3,1],[1,2,3,1],[0,2,2,0]],[[2,2,2,1],[1,1,3,1],[1,2,3,1],[0,2,2,0]],[[1,2,2,1],[1,1,3,1],[1,2,4,1],[0,2,1,1]],[[1,2,2,1],[1,1,4,1],[1,2,3,1],[0,2,1,1]],[[1,2,2,2],[1,1,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,3,1],[1,1,3,1],[1,2,3,1],[0,2,1,1]],[[1,3,2,1],[1,1,3,1],[1,2,3,1],[0,2,1,1]],[[2,2,2,1],[1,1,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[1,1,3,1],[1,2,3,0],[0,2,2,2]],[[1,2,2,1],[1,1,3,1],[1,2,3,0],[0,2,3,1]],[[1,2,2,1],[1,1,3,1],[1,2,3,0],[0,3,2,1]],[[1,2,2,1],[1,1,3,1],[1,2,4,0],[0,2,2,1]],[[1,2,2,1],[1,1,4,1],[1,2,3,0],[0,2,2,1]],[[1,2,2,2],[1,1,3,1],[1,2,3,0],[0,2,2,1]],[[1,2,3,1],[1,1,3,1],[1,2,3,0],[0,2,2,1]],[[1,3,2,1],[1,1,3,1],[1,2,3,0],[0,2,2,1]],[[2,2,2,1],[1,1,3,1],[1,2,3,0],[0,2,2,1]],[[1,2,2,1],[1,1,4,1],[1,2,2,2],[0,2,2,0]],[[1,2,2,2],[1,1,3,1],[1,2,2,2],[0,2,2,0]],[[1,2,3,1],[1,1,3,1],[1,2,2,2],[0,2,2,0]],[[1,3,2,1],[1,1,3,1],[1,2,2,2],[0,2,2,0]],[[2,2,2,1],[1,1,3,1],[1,2,2,2],[0,2,2,0]],[[1,2,2,1],[1,1,4,1],[1,2,2,2],[0,2,1,1]],[[1,2,2,2],[1,1,3,1],[1,2,2,2],[0,2,1,1]],[[1,2,3,1],[1,1,3,1],[1,2,2,2],[0,2,1,1]],[[1,3,2,1],[1,1,3,1],[1,2,2,2],[0,2,1,1]],[[2,2,2,1],[1,1,3,1],[1,2,2,2],[0,2,1,1]],[[1,2,2,1],[1,1,4,1],[1,2,1,2],[0,2,2,1]],[[1,2,2,2],[1,1,3,1],[1,2,1,2],[0,2,2,1]],[[1,2,3,1],[1,1,3,1],[1,2,1,2],[0,2,2,1]],[[1,3,2,1],[1,1,3,1],[1,2,1,2],[0,2,2,1]],[[2,2,2,1],[1,1,3,1],[1,2,1,2],[0,2,2,1]],[[1,2,2,1],[1,1,4,1],[0,3,3,2],[1,1,0,1]],[[1,2,2,2],[1,1,3,1],[0,3,3,2],[1,1,0,1]],[[1,2,3,1],[1,1,3,1],[0,3,3,2],[1,1,0,1]],[[1,3,2,1],[1,1,3,1],[0,3,3,2],[1,1,0,1]],[[2,2,2,1],[1,1,3,1],[0,3,3,2],[1,1,0,1]],[[1,2,2,1],[1,1,3,1],[0,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,1,3,1],[0,3,3,1],[2,2,1,0]],[[1,2,2,1],[1,1,3,1],[0,3,4,1],[1,2,1,0]],[[1,2,2,1],[1,1,3,1],[0,4,3,1],[1,2,1,0]],[[1,2,2,1],[1,1,4,1],[0,3,3,1],[1,2,1,0]],[[1,2,2,2],[1,1,3,1],[0,3,3,1],[1,2,1,0]],[[1,2,3,1],[1,1,3,1],[0,3,3,1],[1,2,1,0]],[[1,3,2,1],[1,1,3,1],[0,3,3,1],[1,2,1,0]],[[2,2,2,1],[1,1,3,1],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[1,1,3,1],[0,3,3,1],[1,3,0,1]],[[1,2,2,1],[1,1,3,1],[0,3,3,1],[2,2,0,1]],[[1,2,2,1],[1,1,3,1],[0,3,4,1],[1,2,0,1]],[[1,2,2,1],[1,1,3,1],[0,4,3,1],[1,2,0,1]],[[1,2,2,1],[1,1,4,1],[0,3,3,1],[1,2,0,1]],[[1,2,2,2],[1,1,3,1],[0,3,3,1],[1,2,0,1]],[[1,2,3,1],[1,1,3,1],[0,3,3,1],[1,2,0,1]],[[1,3,2,1],[1,1,3,1],[0,3,3,1],[1,2,0,1]],[[2,2,2,1],[1,1,3,1],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[1,1,3,1],[0,3,3,1],[1,1,3,0]],[[1,2,2,1],[1,1,3,1],[0,3,4,1],[1,1,2,0]],[[1,2,2,1],[1,1,3,1],[0,4,3,1],[1,1,2,0]],[[1,2,2,1],[1,1,4,1],[0,3,3,1],[1,1,2,0]],[[1,2,2,2],[1,1,3,1],[0,3,3,1],[1,1,2,0]],[[1,2,3,1],[1,1,3,1],[0,3,3,1],[1,1,2,0]],[[1,3,2,1],[1,1,3,1],[0,3,3,1],[1,1,2,0]],[[2,2,2,1],[1,1,3,1],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[1,1,3,1],[0,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,1,3,1],[0,4,3,1],[1,1,1,1]],[[1,2,2,1],[1,1,4,1],[0,3,3,1],[1,1,1,1]],[[1,2,2,2],[1,1,3,1],[0,3,3,1],[1,1,1,1]],[[1,2,3,1],[1,1,3,1],[0,3,3,1],[1,1,1,1]],[[1,3,2,1],[1,1,3,1],[0,3,3,1],[1,1,1,1]],[[2,2,2,1],[1,1,3,1],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,1,3,1],[0,3,4,1],[1,0,2,1]],[[1,2,2,1],[1,1,4,1],[0,3,3,1],[1,0,2,1]],[[1,2,2,2],[1,1,3,1],[0,3,3,1],[1,0,2,1]],[[1,2,3,1],[1,1,3,1],[0,3,3,1],[1,0,2,1]],[[1,3,2,1],[1,1,3,1],[0,3,3,1],[1,0,2,1]],[[2,2,2,1],[1,1,3,1],[0,3,3,1],[1,0,2,1]],[[1,2,2,1],[1,1,3,1],[0,3,3,0],[1,3,1,1]],[[1,2,2,1],[1,1,3,1],[0,3,3,0],[2,2,1,1]],[[1,2,2,1],[1,1,3,1],[0,3,4,0],[1,2,1,1]],[[1,2,2,1],[1,1,3,1],[0,4,3,0],[1,2,1,1]],[[1,2,2,1],[1,1,4,1],[0,3,3,0],[1,2,1,1]],[[1,2,2,2],[1,1,3,1],[0,3,3,0],[1,2,1,1]],[[1,2,3,1],[1,1,3,1],[0,3,3,0],[1,2,1,1]],[[1,3,2,1],[1,1,3,1],[0,3,3,0],[1,2,1,1]],[[2,2,2,1],[1,1,3,1],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[1,1,3,1],[0,3,3,0],[1,1,2,2]],[[1,2,2,1],[1,1,3,1],[0,3,3,0],[1,1,3,1]],[[1,2,2,1],[1,1,3,1],[0,3,4,0],[1,1,2,1]],[[1,2,2,1],[1,1,3,1],[0,4,3,0],[1,1,2,1]],[[1,2,2,1],[1,1,4,1],[0,3,3,0],[1,1,2,1]],[[1,2,2,2],[1,1,3,1],[0,3,3,0],[1,1,2,1]],[[1,2,3,1],[1,1,3,1],[0,3,3,0],[1,1,2,1]],[[1,3,2,1],[1,1,3,1],[0,3,3,0],[1,1,2,1]],[[2,2,2,1],[1,1,3,1],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[1,1,4,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[1,1,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[1,1,3,1],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[1,1,3,1],[0,3,2,2],[1,2,1,0]],[[2,2,2,1],[1,1,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[1,1,4,1],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[1,1,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[1,1,3,1],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[1,1,3,1],[0,3,2,2],[1,2,0,1]],[[2,2,2,1],[1,1,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[1,1,4,1],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[1,1,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,3,1],[1,1,3,1],[0,3,2,2],[1,1,2,0]],[[1,3,2,1],[1,1,3,1],[0,3,2,2],[1,1,2,0]],[[2,2,2,1],[1,1,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,1,4,1],[0,3,2,2],[1,1,1,1]],[[1,2,2,2],[1,1,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[1,1,3,1],[0,3,2,2],[1,1,1,1]],[[1,3,2,1],[1,1,3,1],[0,3,2,2],[1,1,1,1]],[[2,2,2,1],[1,1,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[1,1,4,1],[0,3,2,2],[1,0,2,1]],[[1,2,2,2],[1,1,3,1],[0,3,2,2],[1,0,2,1]],[[1,2,3,1],[1,1,3,1],[0,3,2,2],[1,0,2,1]],[[1,3,2,1],[1,1,3,1],[0,3,2,2],[1,0,2,1]],[[2,2,2,1],[1,1,3,1],[0,3,2,2],[1,0,2,1]],[[1,2,2,1],[1,1,3,1],[0,3,2,1],[1,2,3,0]],[[1,2,2,1],[1,1,3,1],[0,3,2,1],[1,3,2,0]],[[1,2,2,1],[1,1,3,1],[0,3,2,1],[2,2,2,0]],[[1,2,2,1],[1,1,3,1],[0,4,2,1],[1,2,2,0]],[[1,2,2,1],[1,1,3,1],[0,3,2,0],[1,2,2,2]],[[1,2,2,1],[1,1,3,1],[0,3,2,0],[1,2,3,1]],[[1,2,2,1],[1,1,3,1],[0,3,2,0],[1,3,2,1]],[[1,2,2,1],[1,1,3,1],[0,3,2,0],[2,2,2,1]],[[1,2,2,1],[1,1,3,1],[0,4,2,0],[1,2,2,1]],[[1,2,2,1],[1,1,4,1],[0,3,1,2],[1,1,2,1]],[[1,2,2,2],[1,1,3,1],[0,3,1,2],[1,1,2,1]],[[1,2,3,1],[1,1,3,1],[0,3,1,2],[1,1,2,1]],[[1,3,2,1],[1,1,3,1],[0,3,1,2],[1,1,2,1]],[[2,2,2,1],[1,1,3,1],[0,3,1,2],[1,1,2,1]],[[1,2,2,1],[1,1,4,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[1,1,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[1,1,3,1],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[1,1,3,1],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[1,1,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[1,1,3,1],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[1,1,3,1],[0,2,3,1],[1,3,2,0]],[[1,2,2,1],[1,1,3,1],[0,2,3,1],[2,2,2,0]],[[1,2,2,1],[1,1,3,1],[0,2,4,1],[1,2,2,0]],[[1,2,2,1],[1,1,4,1],[0,2,3,1],[1,2,2,0]],[[1,2,2,2],[1,1,3,1],[0,2,3,1],[1,2,2,0]],[[1,2,3,1],[1,1,3,1],[0,2,3,1],[1,2,2,0]],[[1,3,2,1],[1,1,3,1],[0,2,3,1],[1,2,2,0]],[[2,2,2,1],[1,1,3,1],[0,2,3,1],[1,2,2,0]],[[1,2,2,1],[1,1,3,1],[0,2,4,1],[1,2,1,1]],[[1,2,2,1],[1,1,4,1],[0,2,3,1],[1,2,1,1]],[[1,2,2,2],[1,1,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,3,1],[1,1,3,1],[0,2,3,1],[1,2,1,1]],[[1,3,2,1],[1,1,3,1],[0,2,3,1],[1,2,1,1]],[[2,2,2,1],[1,1,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[1,1,3,1],[0,2,3,0],[1,2,2,2]],[[1,2,2,1],[1,1,3,1],[0,2,3,0],[1,2,3,1]],[[1,2,2,1],[1,1,3,1],[0,2,3,0],[1,3,2,1]],[[1,2,2,1],[1,1,3,1],[0,2,3,0],[2,2,2,1]],[[1,2,2,1],[1,1,3,1],[0,2,4,0],[1,2,2,1]],[[1,2,2,1],[1,1,4,1],[0,2,3,0],[1,2,2,1]],[[1,2,2,2],[1,1,3,1],[0,2,3,0],[1,2,2,1]],[[1,2,3,1],[1,1,3,1],[0,2,3,0],[1,2,2,1]],[[1,3,2,1],[1,1,3,1],[0,2,3,0],[1,2,2,1]],[[2,2,2,1],[1,1,3,1],[0,2,3,0],[1,2,2,1]],[[1,2,2,1],[1,1,4,1],[0,2,2,2],[1,2,2,0]],[[1,2,2,2],[1,1,3,1],[0,2,2,2],[1,2,2,0]],[[1,2,3,1],[1,1,3,1],[0,2,2,2],[1,2,2,0]],[[1,3,2,1],[1,1,3,1],[0,2,2,2],[1,2,2,0]],[[2,2,2,1],[1,1,3,1],[0,2,2,2],[1,2,2,0]],[[1,2,2,1],[1,1,4,1],[0,2,2,2],[1,2,1,1]],[[1,2,2,2],[1,1,3,1],[0,2,2,2],[1,2,1,1]],[[1,2,3,1],[1,1,3,1],[0,2,2,2],[1,2,1,1]],[[1,3,2,1],[1,1,3,1],[0,2,2,2],[1,2,1,1]],[[2,2,2,1],[1,1,3,1],[0,2,2,2],[1,2,1,1]],[[1,2,2,1],[1,1,4,1],[0,2,1,2],[1,2,2,1]],[[1,2,2,2],[1,1,3,1],[0,2,1,2],[1,2,2,1]],[[1,2,3,1],[1,1,3,1],[0,2,1,2],[1,2,2,1]],[[1,3,2,1],[1,1,3,1],[0,2,1,2],[1,2,2,1]],[[2,2,2,1],[1,1,3,1],[0,2,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,3,0],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[1,1,3,0],[2,0,3,2],[1,3,2,0]],[[1,2,2,1],[1,1,3,0],[2,0,3,2],[2,2,2,0]],[[1,2,2,1],[1,1,3,0],[2,0,3,3],[1,2,2,0]],[[1,2,2,1],[1,1,3,0],[2,0,4,2],[1,2,2,0]],[[1,2,2,1],[1,1,3,0],[3,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,1,4,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,1,3,0],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[1,1,3,0],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,1,3,0],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[1,1,3,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,1,3,0],[2,0,3,2],[1,2,1,2]],[[1,2,2,1],[1,1,3,0],[2,0,3,3],[1,2,1,1]],[[1,2,2,1],[1,1,3,0],[2,0,4,2],[1,2,1,1]],[[1,2,2,1],[1,1,4,0],[2,0,3,2],[1,2,1,1]],[[1,2,2,2],[1,1,3,0],[2,0,3,2],[1,2,1,1]],[[1,2,3,1],[1,1,3,0],[2,0,3,2],[1,2,1,1]],[[1,3,2,1],[1,1,3,0],[2,0,3,2],[1,2,1,1]],[[2,2,2,1],[1,1,3,0],[2,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,1,3,0],[2,0,3,1],[1,2,2,2]],[[1,2,2,1],[1,1,3,0],[2,0,3,1],[1,2,3,1]],[[1,2,2,1],[1,1,3,0],[2,0,3,1],[1,3,2,1]],[[1,2,2,1],[1,1,3,0],[2,0,3,1],[2,2,2,1]],[[1,2,2,1],[1,1,3,0],[2,0,4,1],[1,2,2,1]],[[1,2,2,1],[1,1,3,0],[3,0,3,1],[1,2,2,1]],[[1,2,2,1],[1,1,4,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,2],[1,1,3,0],[2,0,3,1],[1,2,2,1]],[[1,2,3,1],[1,1,3,0],[2,0,3,1],[1,2,2,1]],[[1,3,2,1],[1,1,3,0],[2,0,3,1],[1,2,2,1]],[[2,2,2,1],[1,1,3,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,1],[1,1,3,0],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[1,1,3,0],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[1,1,3,0],[2,0,2,2],[1,3,2,1]],[[1,2,2,1],[1,1,3,0],[2,0,2,2],[2,2,2,1]],[[1,2,2,1],[1,1,3,0],[2,0,2,3],[1,2,2,1]],[[1,2,2,1],[1,1,3,0],[3,0,2,2],[1,2,2,1]],[[1,2,2,1],[1,1,3,0],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,1,3,0],[1,3,4,2],[1,1,1,0]],[[1,2,2,1],[1,1,3,0],[1,4,3,2],[1,1,1,0]],[[1,2,2,1],[1,1,4,0],[1,3,3,2],[1,1,1,0]],[[1,2,2,2],[1,1,3,0],[1,3,3,2],[1,1,1,0]],[[1,2,3,1],[1,1,3,0],[1,3,3,2],[1,1,1,0]],[[1,3,2,1],[1,1,3,0],[1,3,3,2],[1,1,1,0]],[[2,2,2,1],[1,1,3,0],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[1,1,3,0],[1,3,3,2],[1,1,0,2]],[[1,2,2,1],[1,1,3,0],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,1,3,0],[1,3,4,2],[1,1,0,1]],[[1,2,2,1],[1,1,3,0],[1,4,3,2],[1,1,0,1]],[[1,2,2,1],[1,1,4,0],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[1,1,3,0],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[1,1,3,0],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[1,1,3,0],[1,3,3,2],[1,1,0,1]],[[2,2,2,1],[1,1,3,0],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[1,1,3,0],[1,3,3,2],[1,0,3,0]],[[1,2,2,1],[1,1,3,0],[1,3,3,3],[1,0,2,0]],[[1,2,2,1],[1,1,3,0],[1,3,4,2],[1,0,2,0]],[[1,2,2,1],[1,1,3,0],[1,4,3,2],[1,0,2,0]],[[1,2,2,1],[1,1,4,0],[1,3,3,2],[1,0,2,0]],[[1,2,2,2],[1,1,3,0],[1,3,3,2],[1,0,2,0]],[[1,2,3,1],[1,1,3,0],[1,3,3,2],[1,0,2,0]],[[1,3,2,1],[1,1,3,0],[1,3,3,2],[1,0,2,0]],[[2,2,2,1],[1,1,3,0],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,1,3,0],[1,3,3,2],[1,0,1,2]],[[1,2,2,1],[1,1,3,0],[1,3,3,3],[1,0,1,1]],[[1,2,2,1],[1,1,3,0],[1,3,4,2],[1,0,1,1]],[[1,2,2,1],[1,1,3,0],[1,4,3,2],[1,0,1,1]],[[1,2,2,1],[1,1,4,0],[1,3,3,2],[1,0,1,1]],[[1,2,2,2],[1,1,3,0],[1,3,3,2],[1,0,1,1]],[[1,2,3,1],[1,1,3,0],[1,3,3,2],[1,0,1,1]],[[1,3,2,1],[1,1,3,0],[1,3,3,2],[1,0,1,1]],[[2,2,2,1],[1,1,3,0],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[1,1,3,0],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,1,3,0],[1,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,1,3,0],[1,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,1,3,0],[1,4,3,2],[0,2,1,0]],[[1,2,2,1],[1,1,4,0],[1,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,1,3,0],[1,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,1,3,0],[1,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,1,3,0],[1,3,3,2],[0,2,1,0]],[[2,2,2,1],[1,1,3,0],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,1,3,0],[1,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,1,3,0],[1,3,3,2],[0,3,0,1]],[[1,2,2,1],[1,1,3,0],[1,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,1,3,0],[1,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,1,3,0],[1,4,3,2],[0,2,0,1]],[[1,2,2,1],[1,1,4,0],[1,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,1,3,0],[1,3,3,2],[0,2,0,1]],[[1,2,3,1],[1,1,3,0],[1,3,3,2],[0,2,0,1]],[[1,3,2,1],[1,1,3,0],[1,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,1,3,0],[1,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,1,3,0],[1,3,3,2],[0,1,3,0]],[[1,2,2,1],[1,1,3,0],[1,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,1,3,0],[1,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,1,3,0],[1,4,3,2],[0,1,2,0]],[[1,2,2,1],[1,1,4,0],[1,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,1,3,0],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,1,3,0],[1,3,3,2],[0,1,2,0]],[[1,3,2,1],[1,1,3,0],[1,3,3,2],[0,1,2,0]],[[2,2,2,1],[1,1,3,0],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,1,3,0],[1,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,1,3,0],[1,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,1,3,0],[1,3,4,2],[0,1,1,1]],[[1,2,2,1],[1,1,3,0],[1,4,3,2],[0,1,1,1]],[[1,2,2,1],[1,1,4,0],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,1,3,0],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,1,3,0],[1,3,3,2],[0,1,1,1]],[[1,3,2,1],[1,1,3,0],[1,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,1,3,0],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,1,3,0],[1,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,1,3,0],[1,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,1,3,0],[1,3,4,2],[0,0,2,1]],[[1,2,2,1],[1,1,4,0],[1,3,3,2],[0,0,2,1]],[[1,2,2,2],[1,1,3,0],[1,3,3,2],[0,0,2,1]],[[1,2,3,1],[1,1,3,0],[1,3,3,2],[0,0,2,1]],[[1,3,2,1],[1,1,3,0],[1,3,3,2],[0,0,2,1]],[[2,2,2,1],[1,1,3,0],[1,3,3,2],[0,0,2,1]],[[1,2,2,1],[1,1,3,0],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,1,3,0],[1,4,3,1],[1,1,1,1]],[[1,2,2,1],[1,1,4,0],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[1,1,3,0],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[1,1,3,0],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[1,1,3,0],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[1,1,3,0],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,1,3,0],[1,3,3,1],[1,0,2,2]],[[1,2,2,1],[1,1,3,0],[1,3,3,1],[1,0,3,1]],[[1,2,2,1],[1,1,3,0],[1,3,4,1],[1,0,2,1]],[[1,2,2,1],[1,1,3,0],[1,4,3,1],[1,0,2,1]],[[1,2,2,1],[1,1,4,0],[1,3,3,1],[1,0,2,1]],[[1,2,2,2],[1,1,3,0],[1,3,3,1],[1,0,2,1]],[[1,2,3,1],[1,1,3,0],[1,3,3,1],[1,0,2,1]],[[1,3,2,1],[1,1,3,0],[1,3,3,1],[1,0,2,1]],[[2,2,2,1],[1,1,3,0],[1,3,3,1],[1,0,2,1]],[[1,2,2,1],[1,1,3,0],[1,3,3,1],[0,3,1,1]],[[1,2,2,1],[1,1,3,0],[1,3,4,1],[0,2,1,1]],[[1,2,2,1],[1,1,3,0],[1,4,3,1],[0,2,1,1]],[[1,2,2,1],[1,1,4,0],[1,3,3,1],[0,2,1,1]],[[1,2,2,2],[1,1,3,0],[1,3,3,1],[0,2,1,1]],[[1,2,3,1],[1,1,3,0],[1,3,3,1],[0,2,1,1]],[[1,3,2,1],[1,1,3,0],[1,3,3,1],[0,2,1,1]],[[2,2,2,1],[1,1,3,0],[1,3,3,1],[0,2,1,1]],[[1,2,2,1],[1,1,3,0],[1,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,1,3,0],[1,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,1,3,0],[1,3,4,1],[0,1,2,1]],[[1,2,2,1],[1,1,3,0],[1,4,3,1],[0,1,2,1]],[[1,2,2,1],[1,1,4,0],[1,3,3,1],[0,1,2,1]],[[1,2,2,2],[1,1,3,0],[1,3,3,1],[0,1,2,1]],[[1,2,3,1],[1,1,3,0],[1,3,3,1],[0,1,2,1]],[[1,3,2,1],[1,1,3,0],[1,3,3,1],[0,1,2,1]],[[2,2,2,1],[1,1,3,0],[1,3,3,1],[0,1,2,1]],[[1,2,2,1],[1,1,3,0],[1,3,3,0],[0,2,3,1]],[[1,2,2,1],[1,1,3,0],[1,3,3,0],[0,3,2,1]],[[1,2,2,1],[1,1,3,0],[1,4,3,0],[0,2,2,1]],[[1,2,2,1],[1,1,3,0],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[1,1,3,0],[1,3,2,2],[1,0,3,1]],[[1,2,2,1],[1,1,3,0],[1,3,2,3],[1,0,2,1]],[[1,2,2,1],[1,1,3,0],[1,3,2,2],[0,2,3,0]],[[1,2,2,1],[1,1,3,0],[1,3,2,2],[0,3,2,0]],[[1,2,2,1],[1,1,3,0],[1,4,2,2],[0,2,2,0]],[[1,2,2,1],[1,1,3,0],[1,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,1,3,0],[1,3,2,2],[0,1,3,1]],[[1,2,2,1],[1,1,3,0],[1,3,2,3],[0,1,2,1]],[[1,2,2,1],[1,1,3,0],[1,3,2,1],[0,2,2,2]],[[1,2,2,1],[1,1,3,0],[1,3,2,1],[0,2,3,1]],[[1,2,2,1],[1,1,3,0],[1,3,2,1],[0,3,2,1]],[[1,2,2,1],[1,1,3,0],[1,4,2,1],[0,2,2,1]],[[1,2,2,1],[1,1,3,0],[1,3,1,2],[0,2,2,2]],[[1,2,2,1],[1,1,3,0],[1,3,1,2],[0,2,3,1]],[[1,2,2,1],[1,1,3,0],[1,3,1,2],[0,3,2,1]],[[1,2,2,1],[1,1,3,0],[1,3,1,3],[0,2,2,1]],[[1,2,2,1],[1,1,3,0],[1,4,1,2],[0,2,2,1]],[[1,2,2,1],[1,1,3,0],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,1,3,0],[1,2,3,2],[0,3,2,0]],[[1,2,2,1],[1,1,3,0],[1,2,3,3],[0,2,2,0]],[[1,2,2,1],[1,1,3,0],[1,2,4,2],[0,2,2,0]],[[1,2,2,1],[1,1,4,0],[1,2,3,2],[0,2,2,0]],[[1,2,2,2],[1,1,3,0],[1,2,3,2],[0,2,2,0]],[[1,2,3,1],[1,1,3,0],[1,2,3,2],[0,2,2,0]],[[1,3,2,1],[1,1,3,0],[1,2,3,2],[0,2,2,0]],[[2,2,2,1],[1,1,3,0],[1,2,3,2],[0,2,2,0]],[[1,2,2,1],[1,1,3,0],[1,2,3,2],[0,2,1,2]],[[1,2,2,1],[1,1,3,0],[1,2,3,3],[0,2,1,1]],[[1,2,2,1],[1,1,3,0],[1,2,4,2],[0,2,1,1]],[[1,2,2,1],[1,1,4,0],[1,2,3,2],[0,2,1,1]],[[1,2,2,2],[1,1,3,0],[1,2,3,2],[0,2,1,1]],[[1,2,3,1],[1,1,3,0],[1,2,3,2],[0,2,1,1]],[[1,3,2,1],[1,1,3,0],[1,2,3,2],[0,2,1,1]],[[2,2,2,1],[1,1,3,0],[1,2,3,2],[0,2,1,1]],[[1,2,2,1],[1,1,3,0],[1,2,3,1],[0,2,2,2]],[[1,2,2,1],[1,1,3,0],[1,2,3,1],[0,2,3,1]],[[1,2,2,1],[1,1,3,0],[1,2,3,1],[0,3,2,1]],[[1,2,2,1],[1,1,3,0],[1,2,4,1],[0,2,2,1]],[[1,2,2,1],[1,1,4,0],[1,2,3,1],[0,2,2,1]],[[1,2,2,2],[1,1,3,0],[1,2,3,1],[0,2,2,1]],[[1,2,3,1],[1,1,3,0],[1,2,3,1],[0,2,2,1]],[[1,3,2,1],[1,1,3,0],[1,2,3,1],[0,2,2,1]],[[2,2,2,1],[1,1,3,0],[1,2,3,1],[0,2,2,1]],[[1,2,2,1],[1,1,3,0],[1,2,2,2],[0,2,2,2]],[[1,2,2,1],[1,1,3,0],[1,2,2,2],[0,2,3,1]],[[1,2,2,1],[1,1,3,0],[1,2,2,2],[0,3,2,1]],[[1,2,2,1],[1,1,3,0],[1,2,2,3],[0,2,2,1]],[[1,2,2,1],[1,1,3,0],[1,1,3,2],[0,2,2,2]],[[1,2,2,1],[1,1,3,0],[1,1,3,2],[0,2,3,1]],[[1,2,2,1],[1,1,3,0],[1,1,3,3],[0,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,1,3,0],[0,3,3,2],[2,2,1,0]],[[1,2,2,1],[1,1,3,0],[0,3,3,3],[1,2,1,0]],[[1,2,2,1],[1,1,3,0],[0,3,4,2],[1,2,1,0]],[[1,2,2,1],[1,1,3,0],[0,4,3,2],[1,2,1,0]],[[1,2,2,1],[1,1,4,0],[0,3,3,2],[1,2,1,0]],[[1,2,2,2],[1,1,3,0],[0,3,3,2],[1,2,1,0]],[[1,2,3,1],[1,1,3,0],[0,3,3,2],[1,2,1,0]],[[1,3,2,1],[1,1,3,0],[0,3,3,2],[1,2,1,0]],[[2,2,2,1],[1,1,3,0],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[1,1,3,0],[0,3,3,2],[1,2,0,2]],[[1,2,2,1],[1,1,3,0],[0,3,3,2],[1,3,0,1]],[[1,2,2,1],[1,1,3,0],[0,3,3,2],[2,2,0,1]],[[1,2,2,1],[1,1,3,0],[0,3,3,3],[1,2,0,1]],[[1,2,2,1],[1,1,3,0],[0,3,4,2],[1,2,0,1]],[[1,2,2,1],[1,1,3,0],[0,4,3,2],[1,2,0,1]],[[1,2,2,1],[1,1,4,0],[0,3,3,2],[1,2,0,1]],[[1,2,2,2],[1,1,3,0],[0,3,3,2],[1,2,0,1]],[[1,2,3,1],[1,1,3,0],[0,3,3,2],[1,2,0,1]],[[1,3,2,1],[1,1,3,0],[0,3,3,2],[1,2,0,1]],[[2,2,2,1],[1,1,3,0],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[1,1,3,0],[0,3,3,2],[1,1,3,0]],[[1,2,2,1],[1,1,3,0],[0,3,3,3],[1,1,2,0]],[[1,2,2,1],[1,1,3,0],[0,3,4,2],[1,1,2,0]],[[1,2,2,1],[1,1,3,0],[0,4,3,2],[1,1,2,0]],[[1,2,2,1],[1,1,4,0],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[1,1,3,0],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[1,1,3,0],[0,3,3,2],[1,1,2,0]],[[1,3,2,1],[1,1,3,0],[0,3,3,2],[1,1,2,0]],[[2,2,2,1],[1,1,3,0],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[1,1,3,0],[0,3,3,2],[1,1,1,2]],[[1,2,2,1],[1,1,3,0],[0,3,3,3],[1,1,1,1]],[[1,2,2,1],[1,1,3,0],[0,3,4,2],[1,1,1,1]],[[1,2,2,1],[1,1,3,0],[0,4,3,2],[1,1,1,1]],[[1,2,2,1],[1,1,4,0],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[1,1,3,0],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[1,1,3,0],[0,3,3,2],[1,1,1,1]],[[1,3,2,1],[1,1,3,0],[0,3,3,2],[1,1,1,1]],[[2,2,2,1],[1,1,3,0],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[1,1,3,0],[0,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,1,3,0],[0,3,3,3],[1,0,2,1]],[[1,2,2,1],[1,1,3,0],[0,3,4,2],[1,0,2,1]],[[1,2,2,1],[1,1,4,0],[0,3,3,2],[1,0,2,1]],[[1,2,2,2],[1,1,3,0],[0,3,3,2],[1,0,2,1]],[[1,2,3,1],[1,1,3,0],[0,3,3,2],[1,0,2,1]],[[1,3,2,1],[1,1,3,0],[0,3,3,2],[1,0,2,1]],[[2,2,2,1],[1,1,3,0],[0,3,3,2],[1,0,2,1]],[[1,2,2,1],[1,1,3,0],[0,3,3,1],[1,3,1,1]],[[1,2,2,1],[1,1,3,0],[0,3,3,1],[2,2,1,1]],[[1,2,2,1],[1,1,3,0],[0,3,4,1],[1,2,1,1]],[[1,2,2,1],[1,1,3,0],[0,4,3,1],[1,2,1,1]],[[1,2,2,1],[1,1,4,0],[0,3,3,1],[1,2,1,1]],[[1,2,2,2],[1,1,3,0],[0,3,3,1],[1,2,1,1]],[[1,2,3,1],[1,1,3,0],[0,3,3,1],[1,2,1,1]],[[1,3,2,1],[1,1,3,0],[0,3,3,1],[1,2,1,1]],[[2,2,2,1],[1,1,3,0],[0,3,3,1],[1,2,1,1]],[[1,2,2,1],[1,1,3,0],[0,3,3,1],[1,1,2,2]],[[1,2,2,1],[1,1,3,0],[0,3,3,1],[1,1,3,1]],[[1,2,2,1],[1,1,3,0],[0,3,4,1],[1,1,2,1]],[[1,2,2,1],[1,1,3,0],[0,4,3,1],[1,1,2,1]],[[1,2,2,1],[1,1,4,0],[0,3,3,1],[1,1,2,1]],[[1,2,2,2],[1,1,3,0],[0,3,3,1],[1,1,2,1]],[[1,2,3,1],[1,1,3,0],[0,3,3,1],[1,1,2,1]],[[1,3,2,1],[1,1,3,0],[0,3,3,1],[1,1,2,1]],[[2,2,2,1],[1,1,3,0],[0,3,3,1],[1,1,2,1]],[[1,2,2,1],[1,1,3,0],[0,3,3,0],[1,2,3,1]],[[1,2,2,1],[1,1,3,0],[0,3,3,0],[1,3,2,1]],[[1,2,2,1],[1,1,3,0],[0,3,3,0],[2,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,4,3,0],[1,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,3,2,2],[1,2,3,0]],[[1,2,2,1],[1,1,3,0],[0,3,2,2],[1,3,2,0]],[[1,2,2,1],[1,1,3,0],[0,3,2,2],[2,2,2,0]],[[1,2,2,1],[1,1,3,0],[0,4,2,2],[1,2,2,0]],[[1,2,2,1],[1,1,3,0],[0,3,2,2],[1,1,2,2]],[[1,2,2,1],[1,1,3,0],[0,3,2,2],[1,1,3,1]],[[1,2,2,1],[1,1,3,0],[0,3,2,3],[1,1,2,1]],[[1,2,2,1],[1,1,3,0],[0,3,2,1],[1,2,2,2]],[[1,2,2,1],[1,1,3,0],[0,3,2,1],[1,2,3,1]],[[1,2,2,1],[1,1,3,0],[0,3,2,1],[1,3,2,1]],[[1,2,2,1],[1,1,3,0],[0,3,2,1],[2,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,4,2,1],[1,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,3,1,2],[1,2,2,2]],[[1,2,2,1],[1,1,3,0],[0,3,1,2],[1,2,3,1]],[[1,2,2,1],[1,1,3,0],[0,3,1,2],[1,3,2,1]],[[1,2,2,1],[1,1,3,0],[0,3,1,2],[2,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,3,1,3],[1,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,4,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,2,3,2],[1,2,3,0]],[[1,2,2,1],[1,1,3,0],[0,2,3,2],[1,3,2,0]],[[1,2,2,1],[1,1,3,0],[0,2,3,2],[2,2,2,0]],[[1,2,2,1],[1,1,3,0],[0,2,3,3],[1,2,2,0]],[[1,2,2,1],[1,1,3,0],[0,2,4,2],[1,2,2,0]],[[1,2,2,1],[1,1,4,0],[0,2,3,2],[1,2,2,0]],[[1,2,2,2],[1,1,3,0],[0,2,3,2],[1,2,2,0]],[[1,2,3,1],[1,1,3,0],[0,2,3,2],[1,2,2,0]],[[1,3,2,1],[1,1,3,0],[0,2,3,2],[1,2,2,0]],[[2,2,2,1],[1,1,3,0],[0,2,3,2],[1,2,2,0]],[[1,2,2,1],[1,1,3,0],[0,2,3,2],[1,2,1,2]],[[1,2,2,1],[1,1,3,0],[0,2,3,3],[1,2,1,1]],[[1,2,2,1],[1,1,3,0],[0,2,4,2],[1,2,1,1]],[[1,2,2,1],[1,1,4,0],[0,2,3,2],[1,2,1,1]],[[1,2,2,2],[1,1,3,0],[0,2,3,2],[1,2,1,1]],[[1,2,3,1],[1,1,3,0],[0,2,3,2],[1,2,1,1]],[[1,3,2,1],[1,1,3,0],[0,2,3,2],[1,2,1,1]],[[2,2,2,1],[1,1,3,0],[0,2,3,2],[1,2,1,1]],[[1,2,2,1],[1,1,3,0],[0,2,3,1],[1,2,2,2]],[[1,2,2,1],[1,1,3,0],[0,2,3,1],[1,2,3,1]],[[1,2,2,1],[1,1,3,0],[0,2,3,1],[1,3,2,1]],[[1,2,2,1],[1,1,3,0],[0,2,3,1],[2,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,2,4,1],[1,2,2,1]],[[1,2,2,1],[1,1,4,0],[0,2,3,1],[1,2,2,1]],[[1,2,2,2],[1,1,3,0],[0,2,3,1],[1,2,2,1]],[[1,2,3,1],[1,1,3,0],[0,2,3,1],[1,2,2,1]],[[1,3,2,1],[1,1,3,0],[0,2,3,1],[1,2,2,1]],[[2,2,2,1],[1,1,3,0],[0,2,3,1],[1,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,2,2,2],[1,2,2,2]],[[1,2,2,1],[1,1,3,0],[0,2,2,2],[1,2,3,1]],[[1,2,2,1],[1,1,3,0],[0,2,2,2],[1,3,2,1]],[[1,2,2,1],[1,1,3,0],[0,2,2,2],[2,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,2,2,3],[1,2,2,1]],[[1,2,2,1],[1,1,3,0],[0,1,3,2],[1,2,2,2]],[[1,2,2,1],[1,1,3,0],[0,1,3,2],[1,2,3,1]],[[1,2,2,1],[1,1,3,0],[0,1,3,3],[1,2,2,1]],[[0,3,2,0],[1,3,3,2],[1,3,0,0],[1,2,2,1]],[[0,2,3,0],[1,3,3,2],[1,3,0,0],[1,2,2,1]],[[0,2,2,0],[1,4,3,2],[1,3,0,0],[1,2,2,1]],[[0,3,2,0],[1,3,3,2],[1,3,0,1],[1,2,2,0]],[[0,2,3,0],[1,3,3,2],[1,3,0,1],[1,2,2,0]],[[0,2,2,0],[1,4,3,2],[1,3,0,1],[1,2,2,0]],[[0,3,2,0],[1,3,3,2],[1,3,0,2],[1,2,0,1]],[[0,2,3,0],[1,3,3,2],[1,3,0,2],[1,2,0,1]],[[0,2,2,0],[1,4,3,2],[1,3,0,2],[1,2,0,1]],[[0,3,2,0],[1,3,3,2],[1,3,0,2],[1,2,1,0]],[[0,2,3,0],[1,3,3,2],[1,3,0,2],[1,2,1,0]],[[0,2,2,0],[1,4,3,2],[1,3,0,2],[1,2,1,0]],[[0,3,2,0],[1,3,3,2],[1,3,1,0],[1,2,1,1]],[[0,2,3,0],[1,3,3,2],[1,3,1,0],[1,2,1,1]],[[0,2,2,0],[1,4,3,2],[1,3,1,0],[1,2,1,1]],[[0,3,2,0],[1,3,3,2],[1,3,1,1],[1,2,0,1]],[[0,2,3,0],[1,3,3,2],[1,3,1,1],[1,2,0,1]],[[0,2,2,0],[1,4,3,2],[1,3,1,1],[1,2,0,1]],[[0,3,2,0],[1,3,3,2],[1,3,1,1],[1,2,1,0]],[[0,2,3,0],[1,3,3,2],[1,3,1,1],[1,2,1,0]],[[0,2,2,0],[1,4,3,2],[1,3,1,1],[1,2,1,0]],[[1,2,2,1],[1,1,2,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[1,1,2,2],[2,1,0,2],[1,2,3,1]],[[1,2,2,1],[1,1,2,2],[2,1,0,2],[1,3,2,1]],[[1,2,2,1],[1,1,2,2],[2,1,0,2],[2,2,2,1]],[[1,2,2,1],[1,1,2,2],[2,1,0,3],[1,2,2,1]],[[1,2,2,1],[1,1,2,2],[3,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,1,2,3],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[1,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[1,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[1,1,2,2],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[1,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[1,1,2,3],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,1,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[1,1,2,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[1,1,2,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[1,1,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,1,2,3],[2,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,1,2,2],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,1,2,2],[2,0,3,1],[1,2,1,1]],[[1,3,2,1],[1,1,2,2],[2,0,3,1],[1,2,1,1]],[[2,2,2,1],[1,1,2,2],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,1,2,3],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,1,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,1,2,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[1,1,2,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[1,1,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[1,1,2,2],[2,0,2,3],[1,2,2,0]],[[1,2,2,1],[1,1,2,3],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,1,2,2],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,1,2,2],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[1,1,2,2],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[1,1,2,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,1,2,2],[2,0,2,2],[1,2,1,2]],[[1,2,2,1],[1,1,2,2],[2,0,2,3],[1,2,1,1]],[[1,2,2,1],[1,1,2,3],[2,0,2,2],[1,2,1,1]],[[1,2,2,2],[1,1,2,2],[2,0,2,2],[1,2,1,1]],[[1,2,3,1],[1,1,2,2],[2,0,2,2],[1,2,1,1]],[[1,3,2,1],[1,1,2,2],[2,0,2,2],[1,2,1,1]],[[2,2,2,1],[1,1,2,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,1,2,2],[2,0,1,2],[1,2,2,2]],[[1,2,2,1],[1,1,2,2],[2,0,1,2],[1,2,3,1]],[[1,2,2,1],[1,1,2,2],[2,0,1,2],[1,3,2,1]],[[1,2,2,1],[1,1,2,2],[2,0,1,2],[2,2,2,1]],[[1,2,2,1],[1,1,2,2],[2,0,1,3],[1,2,2,1]],[[1,2,2,1],[1,1,2,2],[3,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,2,3],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[1,1,2,2],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[1,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,2,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,1],[1,1,2,3],[1,3,3,2],[1,0,0,1]],[[1,2,2,2],[1,1,2,2],[1,3,3,2],[1,0,0,1]],[[1,2,3,1],[1,1,2,2],[1,3,3,2],[1,0,0,1]],[[1,3,2,1],[1,1,2,2],[1,3,3,2],[1,0,0,1]],[[2,2,2,1],[1,1,2,2],[1,3,3,2],[1,0,0,1]],[[1,2,2,1],[1,1,2,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,1,2,3],[1,3,3,2],[0,1,0,1]],[[1,2,2,2],[1,1,2,2],[1,3,3,2],[0,1,0,1]],[[1,2,3,1],[1,1,2,2],[1,3,3,2],[0,1,0,1]],[[1,3,2,1],[1,1,2,2],[1,3,3,2],[0,1,0,1]],[[2,2,2,1],[1,1,2,2],[1,3,3,2],[0,1,0,1]],[[1,2,2,1],[1,1,2,3],[1,3,3,1],[1,1,1,0]],[[1,2,2,2],[1,1,2,2],[1,3,3,1],[1,1,1,0]],[[1,2,3,1],[1,1,2,2],[1,3,3,1],[1,1,1,0]],[[1,3,2,1],[1,1,2,2],[1,3,3,1],[1,1,1,0]],[[2,2,2,1],[1,1,2,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[1,1,2,3],[1,3,3,1],[1,1,0,1]],[[1,2,2,2],[1,1,2,2],[1,3,3,1],[1,1,0,1]],[[1,2,3,1],[1,1,2,2],[1,3,3,1],[1,1,0,1]],[[1,3,2,1],[1,1,2,2],[1,3,3,1],[1,1,0,1]],[[2,2,2,1],[1,1,2,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,1],[1,1,2,3],[1,3,3,1],[1,0,2,0]],[[1,2,2,2],[1,1,2,2],[1,3,3,1],[1,0,2,0]],[[1,2,3,1],[1,1,2,2],[1,3,3,1],[1,0,2,0]],[[1,3,2,1],[1,1,2,2],[1,3,3,1],[1,0,2,0]],[[2,2,2,1],[1,1,2,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[1,1,2,3],[1,3,3,1],[1,0,1,1]],[[1,2,2,2],[1,1,2,2],[1,3,3,1],[1,0,1,1]],[[1,2,3,1],[1,1,2,2],[1,3,3,1],[1,0,1,1]],[[1,3,2,1],[1,1,2,2],[1,3,3,1],[1,0,1,1]],[[2,2,2,1],[1,1,2,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[1,1,2,3],[1,3,3,1],[0,2,1,0]],[[1,2,2,2],[1,1,2,2],[1,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,1,2,2],[1,3,3,1],[0,2,1,0]],[[1,3,2,1],[1,1,2,2],[1,3,3,1],[0,2,1,0]],[[2,2,2,1],[1,1,2,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,1,2,3],[1,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,1,2,2],[1,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,1,2,2],[1,3,3,1],[0,2,0,1]],[[1,3,2,1],[1,1,2,2],[1,3,3,1],[0,2,0,1]],[[2,2,2,1],[1,1,2,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,1,2,3],[1,3,3,1],[0,1,2,0]],[[1,2,2,2],[1,1,2,2],[1,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,1,2,2],[1,3,3,1],[0,1,2,0]],[[1,3,2,1],[1,1,2,2],[1,3,3,1],[0,1,2,0]],[[2,2,2,1],[1,1,2,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,1,2,3],[1,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,1,2,2],[1,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,1,2,2],[1,3,3,1],[0,1,1,1]],[[1,3,2,1],[1,1,2,2],[1,3,3,1],[0,1,1,1]],[[2,2,2,1],[1,1,2,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,1,2,3],[1,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,1,2,2],[1,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,1,2,2],[1,3,3,1],[0,0,2,1]],[[1,3,2,1],[1,1,2,2],[1,3,3,1],[0,0,2,1]],[[2,2,2,1],[1,1,2,2],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[1,1,2,3],[1,3,3,0],[1,1,1,1]],[[1,2,2,2],[1,1,2,2],[1,3,3,0],[1,1,1,1]],[[1,2,3,1],[1,1,2,2],[1,3,3,0],[1,1,1,1]],[[1,3,2,1],[1,1,2,2],[1,3,3,0],[1,1,1,1]],[[2,2,2,1],[1,1,2,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[1,1,2,3],[1,3,3,0],[1,0,2,1]],[[1,2,2,2],[1,1,2,2],[1,3,3,0],[1,0,2,1]],[[1,2,3,1],[1,1,2,2],[1,3,3,0],[1,0,2,1]],[[1,3,2,1],[1,1,2,2],[1,3,3,0],[1,0,2,1]],[[2,2,2,1],[1,1,2,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[1,1,2,3],[1,3,3,0],[0,2,1,1]],[[1,2,2,2],[1,1,2,2],[1,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,1,2,2],[1,3,3,0],[0,2,1,1]],[[1,3,2,1],[1,1,2,2],[1,3,3,0],[0,2,1,1]],[[2,2,2,1],[1,1,2,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,1,2,3],[1,3,3,0],[0,1,2,1]],[[1,2,2,2],[1,1,2,2],[1,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,1,2,2],[1,3,3,0],[0,1,2,1]],[[1,3,2,1],[1,1,2,2],[1,3,3,0],[0,1,2,1]],[[2,2,2,1],[1,1,2,2],[1,3,3,0],[0,1,2,1]],[[1,2,2,1],[1,1,2,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,1],[1,1,2,3],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[1,1,2,2],[1,3,2,2],[1,1,1,0]],[[1,2,3,1],[1,1,2,2],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[1,1,2,2],[1,3,2,2],[1,1,1,0]],[[2,2,2,1],[1,1,2,2],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[1,1,2,2],[1,3,2,2],[1,1,0,2]],[[1,2,2,1],[1,1,2,2],[1,3,2,3],[1,1,0,1]],[[1,2,2,1],[1,1,2,3],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[1,1,2,2],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[1,1,2,2],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[1,1,2,2],[1,3,2,2],[1,1,0,1]],[[2,2,2,1],[1,1,2,2],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[1,1,2,2],[1,3,2,3],[1,0,2,0]],[[1,2,2,1],[1,1,2,3],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[1,1,2,2],[1,3,2,2],[1,0,2,0]],[[1,2,3,1],[1,1,2,2],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[1,1,2,2],[1,3,2,2],[1,0,2,0]],[[2,2,2,1],[1,1,2,2],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[1,1,2,2],[1,3,2,2],[1,0,1,2]],[[1,2,2,1],[1,1,2,2],[1,3,2,3],[1,0,1,1]],[[1,2,2,1],[1,1,2,3],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[1,1,2,2],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[1,1,2,2],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[1,1,2,2],[1,3,2,2],[1,0,1,1]],[[2,2,2,1],[1,1,2,2],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[1,1,2,2],[1,3,2,3],[0,2,1,0]],[[1,2,2,1],[1,1,2,3],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,1,2,2],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,1,2,2],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[1,1,2,2],[1,3,2,2],[0,2,1,0]],[[2,2,2,1],[1,1,2,2],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,1,2,2],[1,3,2,2],[0,2,0,2]],[[1,2,2,1],[1,1,2,2],[1,3,2,3],[0,2,0,1]],[[1,2,2,1],[1,1,2,3],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,1,2,2],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,1,2,2],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[1,1,2,2],[1,3,2,2],[0,2,0,1]],[[2,2,2,1],[1,1,2,2],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[1,1,2,2],[1,3,2,3],[0,1,2,0]],[[1,2,2,1],[1,1,2,3],[1,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,1,2,2],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,1,2,2],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[1,1,2,2],[1,3,2,2],[0,1,2,0]],[[2,2,2,1],[1,1,2,2],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,1,2,2],[1,3,2,2],[0,1,1,2]],[[1,2,2,1],[1,1,2,2],[1,3,2,3],[0,1,1,1]],[[1,2,2,1],[1,1,2,3],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,1,2,2],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,1,2,2],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[1,1,2,2],[1,3,2,2],[0,1,1,1]],[[2,2,2,1],[1,1,2,2],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,1,2,2],[1,3,2,2],[0,0,2,2]],[[1,2,2,1],[1,1,2,2],[1,3,2,3],[0,0,2,1]],[[1,2,2,1],[1,1,2,3],[1,3,2,2],[0,0,2,1]],[[1,2,2,2],[1,1,2,2],[1,3,2,2],[0,0,2,1]],[[1,2,3,1],[1,1,2,2],[1,3,2,2],[0,0,2,1]],[[1,3,2,1],[1,1,2,2],[1,3,2,2],[0,0,2,1]],[[2,2,2,1],[1,1,2,2],[1,3,2,2],[0,0,2,1]],[[1,2,2,1],[1,1,2,2],[1,3,1,2],[1,0,2,2]],[[1,2,2,1],[1,1,2,2],[1,3,1,2],[1,0,3,1]],[[1,2,2,1],[1,1,2,2],[1,3,1,3],[1,0,2,1]],[[1,2,2,1],[1,1,2,3],[1,3,1,2],[1,0,2,1]],[[1,2,2,2],[1,1,2,2],[1,3,1,2],[1,0,2,1]],[[1,2,3,1],[1,1,2,2],[1,3,1,2],[1,0,2,1]],[[1,3,2,1],[1,1,2,2],[1,3,1,2],[1,0,2,1]],[[2,2,2,1],[1,1,2,2],[1,3,1,2],[1,0,2,1]],[[1,2,2,1],[1,1,2,2],[1,3,1,2],[0,1,2,2]],[[1,2,2,1],[1,1,2,2],[1,3,1,2],[0,1,3,1]],[[1,2,2,1],[1,1,2,2],[1,3,1,3],[0,1,2,1]],[[1,2,2,1],[1,1,2,3],[1,3,1,2],[0,1,2,1]],[[1,2,2,2],[1,1,2,2],[1,3,1,2],[0,1,2,1]],[[1,2,3,1],[1,1,2,2],[1,3,1,2],[0,1,2,1]],[[1,3,2,1],[1,1,2,2],[1,3,1,2],[0,1,2,1]],[[2,2,2,1],[1,1,2,2],[1,3,1,2],[0,1,2,1]],[[1,2,2,1],[1,1,2,2],[1,3,0,2],[0,2,2,2]],[[1,2,2,1],[1,1,2,2],[1,3,0,2],[0,2,3,1]],[[1,2,2,1],[1,1,2,2],[1,3,0,2],[0,3,2,1]],[[1,2,2,1],[1,1,2,2],[1,3,0,3],[0,2,2,1]],[[1,2,2,1],[1,1,2,2],[1,4,0,2],[0,2,2,1]],[[1,2,2,1],[1,1,2,3],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[1,1,2,2],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[1,1,2,2],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[1,1,2,2],[1,3,0,2],[0,2,2,1]],[[2,2,2,1],[1,1,2,2],[1,3,0,2],[0,2,2,1]],[[1,2,2,1],[1,1,2,3],[1,2,3,1],[0,2,2,0]],[[1,2,2,2],[1,1,2,2],[1,2,3,1],[0,2,2,0]],[[1,2,3,1],[1,1,2,2],[1,2,3,1],[0,2,2,0]],[[1,3,2,1],[1,1,2,2],[1,2,3,1],[0,2,2,0]],[[2,2,2,1],[1,1,2,2],[1,2,3,1],[0,2,2,0]],[[1,2,2,1],[1,1,2,3],[1,2,3,1],[0,2,1,1]],[[1,2,2,2],[1,1,2,2],[1,2,3,1],[0,2,1,1]],[[1,2,3,1],[1,1,2,2],[1,2,3,1],[0,2,1,1]],[[1,3,2,1],[1,1,2,2],[1,2,3,1],[0,2,1,1]],[[2,2,2,1],[1,1,2,2],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[1,1,2,3],[1,2,3,0],[0,2,2,1]],[[1,2,2,2],[1,1,2,2],[1,2,3,0],[0,2,2,1]],[[1,2,3,1],[1,1,2,2],[1,2,3,0],[0,2,2,1]],[[1,3,2,1],[1,1,2,2],[1,2,3,0],[0,2,2,1]],[[2,2,2,1],[1,1,2,2],[1,2,3,0],[0,2,2,1]],[[1,2,2,1],[1,1,2,2],[1,2,2,3],[0,2,2,0]],[[1,2,2,1],[1,1,2,3],[1,2,2,2],[0,2,2,0]],[[1,2,2,2],[1,1,2,2],[1,2,2,2],[0,2,2,0]],[[1,2,3,1],[1,1,2,2],[1,2,2,2],[0,2,2,0]],[[1,3,2,1],[1,1,2,2],[1,2,2,2],[0,2,2,0]],[[2,2,2,1],[1,1,2,2],[1,2,2,2],[0,2,2,0]],[[1,2,2,1],[1,1,2,2],[1,2,2,2],[0,2,1,2]],[[1,2,2,1],[1,1,2,2],[1,2,2,3],[0,2,1,1]],[[1,2,2,1],[1,1,2,3],[1,2,2,2],[0,2,1,1]],[[1,2,2,2],[1,1,2,2],[1,2,2,2],[0,2,1,1]],[[1,2,3,1],[1,1,2,2],[1,2,2,2],[0,2,1,1]],[[1,3,2,1],[1,1,2,2],[1,2,2,2],[0,2,1,1]],[[2,2,2,1],[1,1,2,2],[1,2,2,2],[0,2,1,1]],[[1,2,2,1],[1,1,2,2],[1,2,1,2],[0,2,2,2]],[[1,2,2,1],[1,1,2,2],[1,2,1,2],[0,2,3,1]],[[1,2,2,1],[1,1,2,2],[1,2,1,2],[0,3,2,1]],[[1,2,2,1],[1,1,2,2],[1,2,1,3],[0,2,2,1]],[[1,2,2,1],[1,1,2,3],[1,2,1,2],[0,2,2,1]],[[1,2,2,2],[1,1,2,2],[1,2,1,2],[0,2,2,1]],[[1,2,3,1],[1,1,2,2],[1,2,1,2],[0,2,2,1]],[[1,3,2,1],[1,1,2,2],[1,2,1,2],[0,2,2,1]],[[2,2,2,1],[1,1,2,2],[1,2,1,2],[0,2,2,1]],[[1,2,2,1],[1,1,2,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[1,1,2,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,1],[1,1,2,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,1],[1,1,2,3],[1,0,3,2],[0,2,2,1]],[[1,2,2,2],[1,1,2,2],[1,0,3,2],[0,2,2,1]],[[1,2,3,1],[1,1,2,2],[1,0,3,2],[0,2,2,1]],[[1,2,2,1],[1,1,2,2],[0,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,1,2,3],[0,3,3,2],[1,1,0,1]],[[1,2,2,2],[1,1,2,2],[0,3,3,2],[1,1,0,1]],[[1,2,3,1],[1,1,2,2],[0,3,3,2],[1,1,0,1]],[[1,3,2,1],[1,1,2,2],[0,3,3,2],[1,1,0,1]],[[2,2,2,1],[1,1,2,2],[0,3,3,2],[1,1,0,1]],[[1,2,2,1],[1,1,2,3],[0,3,3,1],[1,2,1,0]],[[1,2,2,2],[1,1,2,2],[0,3,3,1],[1,2,1,0]],[[1,2,3,1],[1,1,2,2],[0,3,3,1],[1,2,1,0]],[[1,3,2,1],[1,1,2,2],[0,3,3,1],[1,2,1,0]],[[2,2,2,1],[1,1,2,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[1,1,2,3],[0,3,3,1],[1,2,0,1]],[[1,2,2,2],[1,1,2,2],[0,3,3,1],[1,2,0,1]],[[1,2,3,1],[1,1,2,2],[0,3,3,1],[1,2,0,1]],[[1,3,2,1],[1,1,2,2],[0,3,3,1],[1,2,0,1]],[[2,2,2,1],[1,1,2,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[1,1,2,3],[0,3,3,1],[1,1,2,0]],[[1,2,2,2],[1,1,2,2],[0,3,3,1],[1,1,2,0]],[[1,2,3,1],[1,1,2,2],[0,3,3,1],[1,1,2,0]],[[1,3,2,1],[1,1,2,2],[0,3,3,1],[1,1,2,0]],[[2,2,2,1],[1,1,2,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[1,1,2,3],[0,3,3,1],[1,1,1,1]],[[1,2,2,2],[1,1,2,2],[0,3,3,1],[1,1,1,1]],[[1,2,3,1],[1,1,2,2],[0,3,3,1],[1,1,1,1]],[[1,3,2,1],[1,1,2,2],[0,3,3,1],[1,1,1,1]],[[2,2,2,1],[1,1,2,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,1,2,3],[0,3,3,1],[1,0,2,1]],[[1,2,2,2],[1,1,2,2],[0,3,3,1],[1,0,2,1]],[[1,2,3,1],[1,1,2,2],[0,3,3,1],[1,0,2,1]],[[1,3,2,1],[1,1,2,2],[0,3,3,1],[1,0,2,1]],[[2,2,2,1],[1,1,2,2],[0,3,3,1],[1,0,2,1]],[[1,2,2,1],[1,1,2,3],[0,3,3,0],[1,2,1,1]],[[1,2,2,2],[1,1,2,2],[0,3,3,0],[1,2,1,1]],[[1,2,3,1],[1,1,2,2],[0,3,3,0],[1,2,1,1]],[[1,3,2,1],[1,1,2,2],[0,3,3,0],[1,2,1,1]],[[2,2,2,1],[1,1,2,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[1,1,2,3],[0,3,3,0],[1,1,2,1]],[[1,2,2,2],[1,1,2,2],[0,3,3,0],[1,1,2,1]],[[1,2,3,1],[1,1,2,2],[0,3,3,0],[1,1,2,1]],[[1,3,2,1],[1,1,2,2],[0,3,3,0],[1,1,2,1]],[[2,2,2,1],[1,1,2,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[1,1,2,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,1],[1,1,2,3],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[1,1,2,2],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[1,1,2,2],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[1,1,2,2],[0,3,2,2],[1,2,1,0]],[[2,2,2,1],[1,1,2,2],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[1,1,2,2],[0,3,2,2],[1,2,0,2]],[[1,2,2,1],[1,1,2,2],[0,3,2,3],[1,2,0,1]],[[1,2,2,1],[1,1,2,3],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[1,1,2,2],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[1,1,2,2],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[1,1,2,2],[0,3,2,2],[1,2,0,1]],[[2,2,2,1],[1,1,2,2],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[1,1,2,2],[0,3,2,3],[1,1,2,0]],[[1,2,2,1],[1,1,2,3],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[1,1,2,2],[0,3,2,2],[1,1,2,0]],[[1,2,3,1],[1,1,2,2],[0,3,2,2],[1,1,2,0]],[[1,3,2,1],[1,1,2,2],[0,3,2,2],[1,1,2,0]],[[2,2,2,1],[1,1,2,2],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,1,2,2],[0,3,2,2],[1,1,1,2]],[[1,2,2,1],[1,1,2,2],[0,3,2,3],[1,1,1,1]],[[1,2,2,1],[1,1,2,3],[0,3,2,2],[1,1,1,1]],[[1,2,2,2],[1,1,2,2],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[1,1,2,2],[0,3,2,2],[1,1,1,1]],[[1,3,2,1],[1,1,2,2],[0,3,2,2],[1,1,1,1]],[[2,2,2,1],[1,1,2,2],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[1,1,2,2],[0,3,2,2],[1,0,2,2]],[[1,2,2,1],[1,1,2,2],[0,3,2,3],[1,0,2,1]],[[1,2,2,1],[1,1,2,3],[0,3,2,2],[1,0,2,1]],[[1,2,2,2],[1,1,2,2],[0,3,2,2],[1,0,2,1]],[[1,2,3,1],[1,1,2,2],[0,3,2,2],[1,0,2,1]],[[1,3,2,1],[1,1,2,2],[0,3,2,2],[1,0,2,1]],[[2,2,2,1],[1,1,2,2],[0,3,2,2],[1,0,2,1]],[[1,2,2,1],[1,1,2,2],[0,3,1,2],[1,1,2,2]],[[1,2,2,1],[1,1,2,2],[0,3,1,2],[1,1,3,1]],[[1,2,2,1],[1,1,2,2],[0,3,1,3],[1,1,2,1]],[[1,2,2,1],[1,1,2,3],[0,3,1,2],[1,1,2,1]],[[1,2,2,2],[1,1,2,2],[0,3,1,2],[1,1,2,1]],[[1,2,3,1],[1,1,2,2],[0,3,1,2],[1,1,2,1]],[[1,3,2,1],[1,1,2,2],[0,3,1,2],[1,1,2,1]],[[2,2,2,1],[1,1,2,2],[0,3,1,2],[1,1,2,1]],[[1,2,2,1],[1,1,2,2],[0,3,0,2],[1,2,2,2]],[[1,2,2,1],[1,1,2,2],[0,3,0,2],[1,2,3,1]],[[1,2,2,1],[1,1,2,2],[0,3,0,2],[1,3,2,1]],[[1,2,2,1],[1,1,2,2],[0,3,0,2],[2,2,2,1]],[[1,2,2,1],[1,1,2,2],[0,3,0,3],[1,2,2,1]],[[1,2,2,1],[1,1,2,2],[0,4,0,2],[1,2,2,1]],[[1,2,2,1],[1,1,2,3],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[1,1,2,2],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[1,1,2,2],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[1,1,2,2],[0,3,0,2],[1,2,2,1]],[[2,2,2,1],[1,1,2,2],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[1,1,2,3],[0,2,3,1],[1,2,2,0]],[[1,2,2,2],[1,1,2,2],[0,2,3,1],[1,2,2,0]],[[1,2,3,1],[1,1,2,2],[0,2,3,1],[1,2,2,0]],[[1,3,2,1],[1,1,2,2],[0,2,3,1],[1,2,2,0]],[[2,2,2,1],[1,1,2,2],[0,2,3,1],[1,2,2,0]],[[1,2,2,1],[1,1,2,3],[0,2,3,1],[1,2,1,1]],[[1,2,2,2],[1,1,2,2],[0,2,3,1],[1,2,1,1]],[[1,2,3,1],[1,1,2,2],[0,2,3,1],[1,2,1,1]],[[1,3,2,1],[1,1,2,2],[0,2,3,1],[1,2,1,1]],[[2,2,2,1],[1,1,2,2],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[1,1,2,3],[0,2,3,0],[1,2,2,1]],[[1,2,2,2],[1,1,2,2],[0,2,3,0],[1,2,2,1]],[[1,2,3,1],[1,1,2,2],[0,2,3,0],[1,2,2,1]],[[1,3,2,1],[1,1,2,2],[0,2,3,0],[1,2,2,1]],[[2,2,2,1],[1,1,2,2],[0,2,3,0],[1,2,2,1]],[[1,2,2,1],[1,1,2,2],[0,2,2,3],[1,2,2,0]],[[1,2,2,1],[1,1,2,3],[0,2,2,2],[1,2,2,0]],[[1,2,2,2],[1,1,2,2],[0,2,2,2],[1,2,2,0]],[[1,2,3,1],[1,1,2,2],[0,2,2,2],[1,2,2,0]],[[1,3,2,1],[1,1,2,2],[0,2,2,2],[1,2,2,0]],[[2,2,2,1],[1,1,2,2],[0,2,2,2],[1,2,2,0]],[[1,2,2,1],[1,1,2,2],[0,2,2,2],[1,2,1,2]],[[1,2,2,1],[1,1,2,2],[0,2,2,3],[1,2,1,1]],[[1,2,2,1],[1,1,2,3],[0,2,2,2],[1,2,1,1]],[[1,2,2,2],[1,1,2,2],[0,2,2,2],[1,2,1,1]],[[1,2,3,1],[1,1,2,2],[0,2,2,2],[1,2,1,1]],[[1,3,2,1],[1,1,2,2],[0,2,2,2],[1,2,1,1]],[[2,2,2,1],[1,1,2,2],[0,2,2,2],[1,2,1,1]],[[1,2,2,1],[1,1,2,2],[0,2,1,2],[1,2,2,2]],[[1,2,2,1],[1,1,2,2],[0,2,1,2],[1,2,3,1]],[[1,2,2,1],[1,1,2,2],[0,2,1,2],[1,3,2,1]],[[1,2,2,1],[1,1,2,2],[0,2,1,2],[2,2,2,1]],[[1,2,2,1],[1,1,2,2],[0,2,1,3],[1,2,2,1]],[[1,2,2,1],[1,1,2,3],[0,2,1,2],[1,2,2,1]],[[1,2,2,2],[1,1,2,2],[0,2,1,2],[1,2,2,1]],[[1,2,3,1],[1,1,2,2],[0,2,1,2],[1,2,2,1]],[[1,3,2,1],[1,1,2,2],[0,2,1,2],[1,2,2,1]],[[2,2,2,1],[1,1,2,2],[0,2,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,2,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[1,1,2,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,1],[1,1,2,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,1],[1,1,2,3],[0,0,3,2],[1,2,2,1]],[[1,2,2,2],[1,1,2,2],[0,0,3,2],[1,2,2,1]],[[1,2,3,1],[1,1,2,2],[0,0,3,2],[1,2,2,1]],[[0,3,2,0],[1,3,3,2],[2,3,0,0],[0,2,2,1]],[[0,2,3,0],[1,3,3,2],[2,3,0,0],[0,2,2,1]],[[0,2,2,0],[1,4,3,2],[2,3,0,0],[0,2,2,1]],[[0,3,2,0],[1,3,3,2],[2,3,0,0],[1,1,2,1]],[[0,2,3,0],[1,3,3,2],[2,3,0,0],[1,1,2,1]],[[0,2,2,0],[1,4,3,2],[2,3,0,0],[1,1,2,1]],[[0,3,2,0],[1,3,3,2],[2,3,0,1],[0,2,2,0]],[[0,2,3,0],[1,3,3,2],[2,3,0,1],[0,2,2,0]],[[0,2,2,0],[1,4,3,2],[2,3,0,1],[0,2,2,0]],[[0,3,2,0],[1,3,3,2],[2,3,0,1],[1,1,2,0]],[[0,2,3,0],[1,3,3,2],[2,3,0,1],[1,1,2,0]],[[0,2,2,0],[1,4,3,2],[2,3,0,1],[1,1,2,0]],[[0,3,2,0],[1,3,3,2],[2,3,0,2],[0,1,1,1]],[[0,2,3,0],[1,3,3,2],[2,3,0,2],[0,1,1,1]],[[0,2,2,0],[1,4,3,2],[2,3,0,2],[0,1,1,1]],[[0,3,2,0],[1,3,3,2],[2,3,0,2],[0,1,2,0]],[[0,2,3,0],[1,3,3,2],[2,3,0,2],[0,1,2,0]],[[0,2,2,0],[1,4,3,2],[2,3,0,2],[0,1,2,0]],[[0,3,2,0],[1,3,3,2],[2,3,0,2],[0,2,0,1]],[[0,2,3,0],[1,3,3,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,0],[1,4,3,2],[2,3,0,2],[0,2,0,1]],[[0,3,2,0],[1,3,3,2],[2,3,0,2],[0,2,1,0]],[[0,2,3,0],[1,3,3,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,0],[1,4,3,2],[2,3,0,2],[0,2,1,0]],[[0,3,2,0],[1,3,3,2],[2,3,0,2],[1,0,1,1]],[[0,2,3,0],[1,3,3,2],[2,3,0,2],[1,0,1,1]],[[0,2,2,0],[1,4,3,2],[2,3,0,2],[1,0,1,1]],[[0,3,2,0],[1,3,3,2],[2,3,0,2],[1,0,2,0]],[[0,2,3,0],[1,3,3,2],[2,3,0,2],[1,0,2,0]],[[0,2,2,0],[1,4,3,2],[2,3,0,2],[1,0,2,0]],[[0,3,2,0],[1,3,3,2],[2,3,0,2],[1,1,0,1]],[[0,2,3,0],[1,3,3,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,0],[1,4,3,2],[2,3,0,2],[1,1,0,1]],[[0,3,2,0],[1,3,3,2],[2,3,0,2],[1,1,1,0]],[[0,2,3,0],[1,3,3,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,0],[1,4,3,2],[2,3,0,2],[1,1,1,0]],[[0,3,2,0],[1,3,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,3,0],[1,3,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,0],[1,4,3,2],[2,3,0,2],[1,2,0,0]],[[0,3,2,0],[1,3,3,2],[2,3,1,0],[0,1,2,1]],[[0,2,3,0],[1,3,3,2],[2,3,1,0],[0,1,2,1]],[[0,2,2,0],[1,4,3,2],[2,3,1,0],[0,1,2,1]],[[0,3,2,0],[1,3,3,2],[2,3,1,0],[0,2,1,1]],[[0,2,3,0],[1,3,3,2],[2,3,1,0],[0,2,1,1]],[[0,2,2,0],[1,4,3,2],[2,3,1,0],[0,2,1,1]],[[0,3,2,0],[1,3,3,2],[2,3,1,0],[1,0,2,1]],[[0,2,3,0],[1,3,3,2],[2,3,1,0],[1,0,2,1]],[[0,2,2,0],[1,4,3,2],[2,3,1,0],[1,0,2,1]],[[0,3,2,0],[1,3,3,2],[2,3,1,0],[1,1,1,1]],[[0,2,3,0],[1,3,3,2],[2,3,1,0],[1,1,1,1]],[[0,2,2,0],[1,4,3,2],[2,3,1,0],[1,1,1,1]],[[0,3,2,0],[1,3,3,2],[2,3,1,0],[1,2,0,1]],[[0,2,3,0],[1,3,3,2],[2,3,1,0],[1,2,0,1]],[[0,2,2,0],[1,4,3,2],[2,3,1,0],[1,2,0,1]],[[0,3,2,0],[1,3,3,2],[2,3,1,1],[0,1,1,1]],[[0,2,3,0],[1,3,3,2],[2,3,1,1],[0,1,1,1]],[[0,2,2,0],[1,4,3,2],[2,3,1,1],[0,1,1,1]],[[0,3,2,0],[1,3,3,2],[2,3,1,1],[0,1,2,0]],[[0,2,3,0],[1,3,3,2],[2,3,1,1],[0,1,2,0]],[[0,2,2,0],[1,4,3,2],[2,3,1,1],[0,1,2,0]],[[0,3,2,0],[1,3,3,2],[2,3,1,1],[0,2,0,1]],[[0,2,3,0],[1,3,3,2],[2,3,1,1],[0,2,0,1]],[[0,2,2,0],[1,4,3,2],[2,3,1,1],[0,2,0,1]],[[0,3,2,0],[1,3,3,2],[2,3,1,1],[0,2,1,0]],[[0,2,3,0],[1,3,3,2],[2,3,1,1],[0,2,1,0]],[[0,2,2,0],[1,4,3,2],[2,3,1,1],[0,2,1,0]],[[0,3,2,0],[1,3,3,2],[2,3,1,1],[1,0,1,1]],[[0,2,3,0],[1,3,3,2],[2,3,1,1],[1,0,1,1]],[[0,2,2,0],[1,4,3,2],[2,3,1,1],[1,0,1,1]],[[0,3,2,0],[1,3,3,2],[2,3,1,1],[1,0,2,0]],[[0,2,3,0],[1,3,3,2],[2,3,1,1],[1,0,2,0]],[[0,2,2,0],[1,4,3,2],[2,3,1,1],[1,0,2,0]],[[0,3,2,0],[1,3,3,2],[2,3,1,1],[1,1,0,1]],[[0,2,3,0],[1,3,3,2],[2,3,1,1],[1,1,0,1]],[[0,2,2,0],[1,4,3,2],[2,3,1,1],[1,1,0,1]],[[0,3,2,0],[1,3,3,2],[2,3,1,1],[1,1,1,0]],[[0,2,3,0],[1,3,3,2],[2,3,1,1],[1,1,1,0]],[[0,2,2,0],[1,4,3,2],[2,3,1,1],[1,1,1,0]],[[0,3,2,0],[1,3,3,2],[2,3,1,1],[1,2,0,0]],[[0,2,3,0],[1,3,3,2],[2,3,1,1],[1,2,0,0]],[[0,2,2,0],[1,4,3,2],[2,3,1,1],[1,2,0,0]],[[1,2,2,1],[1,1,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[1,1,1,2],[2,4,0,2],[1,1,2,1]],[[1,2,2,1],[1,1,1,2],[3,3,0,2],[1,1,2,1]],[[1,2,2,1],[1,1,1,2],[2,3,0,2],[0,2,2,2]],[[1,2,2,1],[1,1,1,2],[2,3,0,2],[0,2,3,1]],[[1,2,2,1],[1,1,1,2],[2,3,0,2],[0,3,2,1]],[[1,2,2,1],[1,1,1,2],[2,3,0,3],[0,2,2,1]],[[1,2,2,1],[1,1,1,2],[2,4,0,2],[0,2,2,1]],[[1,2,2,1],[1,1,1,2],[3,3,0,2],[0,2,2,1]],[[1,2,2,1],[1,1,1,3],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[1,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[1,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[1,1,1,2],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[1,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,2,2,1],[1,1,1,2],[2,2,0,2],[1,2,2,2]],[[1,2,2,1],[1,1,1,2],[2,2,0,2],[1,2,3,1]],[[1,2,2,1],[1,1,1,2],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[1,1,1,2],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[1,1,1,2],[2,2,0,3],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[3,2,0,2],[1,2,2,1]],[[1,2,2,1],[1,1,1,3],[2,2,0,2],[1,2,2,1]],[[1,2,2,2],[1,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,2,3,1],[1,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,3,2,1],[1,1,1,2],[2,2,0,2],[1,2,2,1]],[[2,2,2,1],[1,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[1,1,1,2],[2,0,3,2],[1,3,2,0]],[[1,2,2,1],[1,1,1,2],[2,0,3,2],[2,2,2,0]],[[1,2,2,1],[1,1,1,2],[2,0,3,3],[1,2,2,0]],[[1,2,2,1],[1,1,1,2],[2,0,4,2],[1,2,2,0]],[[1,2,2,1],[1,1,1,2],[3,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,1,1,3],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[1,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[1,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[1,1,1,2],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[1,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[1,1,1,2],[2,0,3,2],[1,2,1,2]],[[1,2,2,1],[1,1,1,2],[2,0,3,3],[1,2,1,1]],[[1,2,2,1],[1,1,1,2],[2,0,4,2],[1,2,1,1]],[[1,2,2,1],[1,1,1,3],[2,0,3,2],[1,2,1,1]],[[1,2,2,2],[1,1,1,2],[2,0,3,2],[1,2,1,1]],[[1,2,3,1],[1,1,1,2],[2,0,3,2],[1,2,1,1]],[[1,3,2,1],[1,1,1,2],[2,0,3,2],[1,2,1,1]],[[2,2,2,1],[1,1,1,2],[2,0,3,2],[1,2,1,1]],[[1,2,2,1],[1,1,1,2],[2,0,3,1],[1,2,2,2]],[[1,2,2,1],[1,1,1,2],[2,0,3,1],[1,2,3,1]],[[1,2,2,1],[1,1,1,2],[2,0,3,1],[1,3,2,1]],[[1,2,2,1],[1,1,1,2],[2,0,3,1],[2,2,2,1]],[[1,2,2,1],[1,1,1,2],[2,0,4,1],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[3,0,3,1],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[1,1,1,2],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[1,1,1,2],[2,0,2,2],[1,3,2,1]],[[1,2,2,1],[1,1,1,2],[2,0,2,2],[2,2,2,1]],[[1,2,2,1],[1,1,1,2],[2,0,2,3],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[3,0,2,2],[1,2,2,1]],[[1,2,2,1],[1,1,1,3],[2,0,2,2],[1,2,2,1]],[[1,2,2,2],[1,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,2,3,1],[1,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,3,2,1],[1,1,1,2],[2,0,2,2],[1,2,2,1]],[[2,2,2,1],[1,1,1,2],[2,0,2,2],[1,2,2,1]],[[0,3,2,0],[1,3,3,2],[2,3,2,1],[0,2,0,0]],[[0,2,3,0],[1,3,3,2],[2,3,2,1],[0,2,0,0]],[[0,2,2,0],[1,4,3,2],[2,3,2,1],[0,2,0,0]],[[1,2,2,1],[1,1,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,1,1,2],[1,3,4,2],[1,1,1,0]],[[1,2,2,1],[1,1,1,2],[1,4,3,2],[1,1,1,0]],[[1,2,2,1],[1,1,1,3],[1,3,3,2],[1,1,1,0]],[[1,2,2,2],[1,1,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,3,1],[1,1,1,2],[1,3,3,2],[1,1,1,0]],[[1,3,2,1],[1,1,1,2],[1,3,3,2],[1,1,1,0]],[[2,2,2,1],[1,1,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,2,1],[1,1,1,2],[1,3,3,2],[1,1,0,2]],[[1,2,2,1],[1,1,1,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,1,1,2],[1,3,4,2],[1,1,0,1]],[[1,2,2,1],[1,1,1,2],[1,4,3,2],[1,1,0,1]],[[0,3,2,0],[1,3,3,2],[2,3,2,1],[1,1,0,0]],[[0,2,3,0],[1,3,3,2],[2,3,2,1],[1,1,0,0]],[[0,2,2,0],[1,4,3,2],[2,3,2,1],[1,1,0,0]],[[1,2,2,1],[1,1,1,3],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[1,1,1,2],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[1,1,1,2],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[1,1,1,2],[1,3,3,2],[1,1,0,1]],[[2,2,2,1],[1,1,1,2],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[1,1,1,2],[1,3,3,2],[1,0,3,0]],[[1,2,2,1],[1,1,1,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,1],[1,1,1,2],[1,3,4,2],[1,0,2,0]],[[1,2,2,1],[1,1,1,2],[1,4,3,2],[1,0,2,0]],[[1,2,2,1],[1,1,1,3],[1,3,3,2],[1,0,2,0]],[[1,2,2,2],[1,1,1,2],[1,3,3,2],[1,0,2,0]],[[1,2,3,1],[1,1,1,2],[1,3,3,2],[1,0,2,0]],[[1,3,2,1],[1,1,1,2],[1,3,3,2],[1,0,2,0]],[[2,2,2,1],[1,1,1,2],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,1,1,2],[1,3,3,2],[1,0,1,2]],[[1,2,2,1],[1,1,1,2],[1,3,3,3],[1,0,1,1]],[[1,2,2,1],[1,1,1,2],[1,3,4,2],[1,0,1,1]],[[1,2,2,1],[1,1,1,2],[1,4,3,2],[1,0,1,1]],[[1,2,2,1],[1,1,1,3],[1,3,3,2],[1,0,1,1]],[[1,2,2,2],[1,1,1,2],[1,3,3,2],[1,0,1,1]],[[1,2,3,1],[1,1,1,2],[1,3,3,2],[1,0,1,1]],[[1,3,2,1],[1,1,1,2],[1,3,3,2],[1,0,1,1]],[[2,2,2,1],[1,1,1,2],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[1,1,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,1,1,2],[1,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,1,1,2],[1,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,1,1,2],[1,4,3,2],[0,2,1,0]],[[1,2,2,1],[1,1,1,3],[1,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,1,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,1,1,2],[1,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,1,1,2],[1,3,3,2],[0,2,1,0]],[[2,2,2,1],[1,1,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,1,1,2],[1,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,1,1,2],[1,3,3,2],[0,3,0,1]],[[1,2,2,1],[1,1,1,2],[1,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,1,1,2],[1,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,1,1,2],[1,4,3,2],[0,2,0,1]],[[1,2,2,1],[1,1,1,3],[1,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,1,1,2],[1,3,3,2],[0,2,0,1]],[[1,2,3,1],[1,1,1,2],[1,3,3,2],[0,2,0,1]],[[1,3,2,1],[1,1,1,2],[1,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,1,1,2],[1,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,1,1,2],[1,3,3,2],[0,1,3,0]],[[1,2,2,1],[1,1,1,2],[1,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,1,1,2],[1,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,1,1,2],[1,4,3,2],[0,1,2,0]],[[1,2,2,1],[1,1,1,3],[1,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,1,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,1,1,2],[1,3,3,2],[0,1,2,0]],[[1,3,2,1],[1,1,1,2],[1,3,3,2],[0,1,2,0]],[[2,2,2,1],[1,1,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,1,1,2],[1,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,1,1,2],[1,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,1,1,2],[1,3,4,2],[0,1,1,1]],[[1,2,2,1],[1,1,1,2],[1,4,3,2],[0,1,1,1]],[[1,2,2,1],[1,1,1,3],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,1,1,2],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,1,1,2],[1,3,3,2],[0,1,1,1]],[[1,3,2,1],[1,1,1,2],[1,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,1,1,2],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,1,1,2],[1,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,1,1,2],[1,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,1,1,2],[1,3,4,2],[0,0,2,1]],[[1,2,2,1],[1,1,1,3],[1,3,3,2],[0,0,2,1]],[[1,2,2,2],[1,1,1,2],[1,3,3,2],[0,0,2,1]],[[1,2,3,1],[1,1,1,2],[1,3,3,2],[0,0,2,1]],[[1,3,2,1],[1,1,1,2],[1,3,3,2],[0,0,2,1]],[[2,2,2,1],[1,1,1,2],[1,3,3,2],[0,0,2,1]],[[1,2,2,1],[1,1,1,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,1],[1,1,1,2],[1,3,3,1],[1,0,3,1]],[[1,2,2,1],[1,1,1,2],[1,3,4,1],[1,0,2,1]],[[1,2,2,1],[1,1,1,2],[1,4,3,1],[1,0,2,1]],[[1,2,2,1],[1,1,1,2],[1,3,3,1],[0,3,1,1]],[[1,2,2,1],[1,1,1,2],[1,3,4,1],[0,2,1,1]],[[1,2,2,1],[1,1,1,2],[1,4,3,1],[0,2,1,1]],[[1,2,2,1],[1,1,1,2],[1,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,1,1,2],[1,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,1,1,2],[1,3,4,1],[0,1,2,1]],[[1,2,2,1],[1,1,1,2],[1,4,3,1],[0,1,2,1]],[[1,2,2,1],[1,1,1,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[1,1,1,2],[1,3,2,2],[1,0,3,1]],[[1,2,2,1],[1,1,1,2],[1,3,2,3],[1,0,2,1]],[[1,2,2,1],[1,1,1,3],[1,3,2,2],[1,0,2,1]],[[1,2,2,2],[1,1,1,2],[1,3,2,2],[1,0,2,1]],[[1,2,3,1],[1,1,1,2],[1,3,2,2],[1,0,2,1]],[[1,3,2,1],[1,1,1,2],[1,3,2,2],[1,0,2,1]],[[2,2,2,1],[1,1,1,2],[1,3,2,2],[1,0,2,1]],[[1,2,2,1],[1,1,1,2],[1,3,2,2],[0,2,3,0]],[[1,2,2,1],[1,1,1,2],[1,3,2,2],[0,3,2,0]],[[1,2,2,1],[1,1,1,2],[1,4,2,2],[0,2,2,0]],[[1,2,2,1],[1,1,1,2],[1,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,1,1,2],[1,3,2,2],[0,1,3,1]],[[1,2,2,1],[1,1,1,2],[1,3,2,3],[0,1,2,1]],[[1,2,2,1],[1,1,1,3],[1,3,2,2],[0,1,2,1]],[[1,2,2,2],[1,1,1,2],[1,3,2,2],[0,1,2,1]],[[1,2,3,1],[1,1,1,2],[1,3,2,2],[0,1,2,1]],[[1,3,2,1],[1,1,1,2],[1,3,2,2],[0,1,2,1]],[[2,2,2,1],[1,1,1,2],[1,3,2,2],[0,1,2,1]],[[1,2,2,1],[1,1,1,2],[1,3,2,1],[0,2,2,2]],[[1,2,2,1],[1,1,1,2],[1,3,2,1],[0,2,3,1]],[[1,2,2,1],[1,1,1,2],[1,3,2,1],[0,3,2,1]],[[1,2,2,1],[1,1,1,2],[1,4,2,1],[0,2,2,1]],[[1,2,2,1],[1,1,1,2],[1,3,1,2],[0,2,2,2]],[[1,2,2,1],[1,1,1,2],[1,3,1,2],[0,2,3,1]],[[1,2,2,1],[1,1,1,2],[1,3,1,2],[0,3,2,1]],[[1,2,2,1],[1,1,1,2],[1,3,1,3],[0,2,2,1]],[[1,2,2,1],[1,1,1,2],[1,4,1,2],[0,2,2,1]],[[1,2,2,1],[1,1,1,3],[1,3,1,2],[0,2,2,1]],[[1,2,2,2],[1,1,1,2],[1,3,1,2],[0,2,2,1]],[[1,2,3,1],[1,1,1,2],[1,3,1,2],[0,2,2,1]],[[1,3,2,1],[1,1,1,2],[1,3,1,2],[0,2,2,1]],[[2,2,2,1],[1,1,1,2],[1,3,1,2],[0,2,2,1]],[[1,2,2,1],[1,1,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[1,1,1,2],[1,3,0,2],[1,2,3,1]],[[1,2,2,1],[1,1,1,2],[1,3,0,2],[1,3,2,1]],[[1,2,2,1],[1,1,1,2],[1,3,0,2],[2,2,2,1]],[[1,2,2,1],[1,1,1,2],[1,3,0,3],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[1,4,0,2],[1,2,2,1]],[[1,2,2,1],[1,1,1,3],[1,3,0,2],[1,2,2,1]],[[1,2,2,2],[1,1,1,2],[1,3,0,2],[1,2,2,1]],[[1,2,3,1],[1,1,1,2],[1,3,0,2],[1,2,2,1]],[[1,3,2,1],[1,1,1,2],[1,3,0,2],[1,2,2,1]],[[2,2,2,1],[1,1,1,2],[1,3,0,2],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,1,1,2],[1,2,3,2],[0,3,2,0]],[[1,2,2,1],[1,1,1,2],[1,2,3,3],[0,2,2,0]],[[1,2,2,1],[1,1,1,2],[1,2,4,2],[0,2,2,0]],[[1,2,2,1],[1,1,1,3],[1,2,3,2],[0,2,2,0]],[[1,2,2,2],[1,1,1,2],[1,2,3,2],[0,2,2,0]],[[1,2,3,1],[1,1,1,2],[1,2,3,2],[0,2,2,0]],[[1,3,2,1],[1,1,1,2],[1,2,3,2],[0,2,2,0]],[[2,2,2,1],[1,1,1,2],[1,2,3,2],[0,2,2,0]],[[1,2,2,1],[1,1,1,2],[1,2,3,2],[0,2,1,2]],[[1,2,2,1],[1,1,1,2],[1,2,3,3],[0,2,1,1]],[[1,2,2,1],[1,1,1,2],[1,2,4,2],[0,2,1,1]],[[1,2,2,1],[1,1,1,3],[1,2,3,2],[0,2,1,1]],[[1,2,2,2],[1,1,1,2],[1,2,3,2],[0,2,1,1]],[[1,2,3,1],[1,1,1,2],[1,2,3,2],[0,2,1,1]],[[1,3,2,1],[1,1,1,2],[1,2,3,2],[0,2,1,1]],[[2,2,2,1],[1,1,1,2],[1,2,3,2],[0,2,1,1]],[[1,2,2,1],[1,1,1,2],[1,2,3,1],[0,2,2,2]],[[1,2,2,1],[1,1,1,2],[1,2,3,1],[0,2,3,1]],[[1,2,2,1],[1,1,1,2],[1,2,3,1],[0,3,2,1]],[[1,2,2,1],[1,1,1,2],[1,2,4,1],[0,2,2,1]],[[1,2,2,1],[1,1,1,2],[1,2,2,2],[0,2,2,2]],[[1,2,2,1],[1,1,1,2],[1,2,2,2],[0,2,3,1]],[[1,2,2,1],[1,1,1,2],[1,2,2,2],[0,3,2,1]],[[1,2,2,1],[1,1,1,2],[1,2,2,3],[0,2,2,1]],[[1,2,2,1],[1,1,1,3],[1,2,2,2],[0,2,2,1]],[[1,2,2,2],[1,1,1,2],[1,2,2,2],[0,2,2,1]],[[1,2,3,1],[1,1,1,2],[1,2,2,2],[0,2,2,1]],[[1,3,2,1],[1,1,1,2],[1,2,2,2],[0,2,2,1]],[[2,2,2,1],[1,1,1,2],[1,2,2,2],[0,2,2,1]],[[1,2,2,1],[1,1,1,2],[1,1,3,2],[0,2,2,2]],[[1,2,2,1],[1,1,1,2],[1,1,3,2],[0,2,3,1]],[[1,2,2,1],[1,1,1,2],[1,1,3,3],[0,2,2,1]],[[1,2,2,1],[1,1,1,3],[1,1,3,2],[0,2,2,1]],[[1,2,2,2],[1,1,1,2],[1,1,3,2],[0,2,2,1]],[[1,2,3,1],[1,1,1,2],[1,1,3,2],[0,2,2,1]],[[1,2,2,1],[1,1,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,1,1,2],[0,3,3,2],[2,2,1,0]],[[1,2,2,1],[1,1,1,2],[0,3,3,3],[1,2,1,0]],[[1,2,2,1],[1,1,1,2],[0,3,4,2],[1,2,1,0]],[[1,2,2,1],[1,1,1,2],[0,4,3,2],[1,2,1,0]],[[1,2,2,1],[1,1,1,3],[0,3,3,2],[1,2,1,0]],[[1,2,2,2],[1,1,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,3,1],[1,1,1,2],[0,3,3,2],[1,2,1,0]],[[1,3,2,1],[1,1,1,2],[0,3,3,2],[1,2,1,0]],[[2,2,2,1],[1,1,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[1,1,1,2],[0,3,3,2],[1,2,0,2]],[[1,2,2,1],[1,1,1,2],[0,3,3,2],[1,3,0,1]],[[1,2,2,1],[1,1,1,2],[0,3,3,2],[2,2,0,1]],[[1,2,2,1],[1,1,1,2],[0,3,3,3],[1,2,0,1]],[[1,2,2,1],[1,1,1,2],[0,3,4,2],[1,2,0,1]],[[1,2,2,1],[1,1,1,2],[0,4,3,2],[1,2,0,1]],[[1,2,2,1],[1,1,1,3],[0,3,3,2],[1,2,0,1]],[[1,2,2,2],[1,1,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,3,1],[1,1,1,2],[0,3,3,2],[1,2,0,1]],[[1,3,2,1],[1,1,1,2],[0,3,3,2],[1,2,0,1]],[[2,2,2,1],[1,1,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[1,1,1,2],[0,3,3,2],[1,1,3,0]],[[1,2,2,1],[1,1,1,2],[0,3,3,3],[1,1,2,0]],[[1,2,2,1],[1,1,1,2],[0,3,4,2],[1,1,2,0]],[[1,2,2,1],[1,1,1,2],[0,4,3,2],[1,1,2,0]],[[1,2,2,1],[1,1,1,3],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[1,1,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[1,1,1,2],[0,3,3,2],[1,1,2,0]],[[1,3,2,1],[1,1,1,2],[0,3,3,2],[1,1,2,0]],[[2,2,2,1],[1,1,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[1,1,1,2],[0,3,3,2],[1,1,1,2]],[[1,2,2,1],[1,1,1,2],[0,3,3,3],[1,1,1,1]],[[1,2,2,1],[1,1,1,2],[0,3,4,2],[1,1,1,1]],[[1,2,2,1],[1,1,1,2],[0,4,3,2],[1,1,1,1]],[[1,2,2,1],[1,1,1,3],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[1,1,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[1,1,1,2],[0,3,3,2],[1,1,1,1]],[[1,3,2,1],[1,1,1,2],[0,3,3,2],[1,1,1,1]],[[2,2,2,1],[1,1,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[1,1,1,2],[0,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,1,1,2],[0,3,3,3],[1,0,2,1]],[[1,2,2,1],[1,1,1,2],[0,3,4,2],[1,0,2,1]],[[1,2,2,1],[1,1,1,3],[0,3,3,2],[1,0,2,1]],[[1,2,2,2],[1,1,1,2],[0,3,3,2],[1,0,2,1]],[[1,2,3,1],[1,1,1,2],[0,3,3,2],[1,0,2,1]],[[1,3,2,1],[1,1,1,2],[0,3,3,2],[1,0,2,1]],[[2,2,2,1],[1,1,1,2],[0,3,3,2],[1,0,2,1]],[[1,2,2,1],[1,1,1,2],[0,3,3,1],[1,3,1,1]],[[1,2,2,1],[1,1,1,2],[0,3,3,1],[2,2,1,1]],[[1,2,2,1],[1,1,1,2],[0,3,4,1],[1,2,1,1]],[[1,2,2,1],[1,1,1,2],[0,4,3,1],[1,2,1,1]],[[1,2,2,1],[1,1,1,2],[0,3,3,1],[1,1,2,2]],[[1,2,2,1],[1,1,1,2],[0,3,3,1],[1,1,3,1]],[[1,2,2,1],[1,1,1,2],[0,3,4,1],[1,1,2,1]],[[1,2,2,1],[1,1,1,2],[0,4,3,1],[1,1,2,1]],[[1,2,2,1],[1,1,1,2],[0,3,2,2],[1,2,3,0]],[[1,2,2,1],[1,1,1,2],[0,3,2,2],[1,3,2,0]],[[1,2,2,1],[1,1,1,2],[0,3,2,2],[2,2,2,0]],[[1,2,2,1],[1,1,1,2],[0,4,2,2],[1,2,2,0]],[[1,2,2,1],[1,1,1,2],[0,3,2,2],[1,1,2,2]],[[1,2,2,1],[1,1,1,2],[0,3,2,2],[1,1,3,1]],[[1,2,2,1],[1,1,1,2],[0,3,2,3],[1,1,2,1]],[[1,2,2,1],[1,1,1,3],[0,3,2,2],[1,1,2,1]],[[1,2,2,2],[1,1,1,2],[0,3,2,2],[1,1,2,1]],[[1,2,3,1],[1,1,1,2],[0,3,2,2],[1,1,2,1]],[[1,3,2,1],[1,1,1,2],[0,3,2,2],[1,1,2,1]],[[2,2,2,1],[1,1,1,2],[0,3,2,2],[1,1,2,1]],[[1,2,2,1],[1,1,1,2],[0,3,2,1],[1,2,2,2]],[[1,2,2,1],[1,1,1,2],[0,3,2,1],[1,2,3,1]],[[1,2,2,1],[1,1,1,2],[0,3,2,1],[1,3,2,1]],[[1,2,2,1],[1,1,1,2],[0,3,2,1],[2,2,2,1]],[[1,2,2,1],[1,1,1,2],[0,4,2,1],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[0,3,1,2],[1,2,2,2]],[[1,2,2,1],[1,1,1,2],[0,3,1,2],[1,2,3,1]],[[1,2,2,1],[1,1,1,2],[0,3,1,2],[1,3,2,1]],[[1,2,2,1],[1,1,1,2],[0,3,1,2],[2,2,2,1]],[[1,2,2,1],[1,1,1,2],[0,3,1,3],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[0,4,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,1,3],[0,3,1,2],[1,2,2,1]],[[1,2,2,2],[1,1,1,2],[0,3,1,2],[1,2,2,1]],[[1,2,3,1],[1,1,1,2],[0,3,1,2],[1,2,2,1]],[[1,3,2,1],[1,1,1,2],[0,3,1,2],[1,2,2,1]],[[2,2,2,1],[1,1,1,2],[0,3,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[0,2,3,2],[1,2,3,0]],[[1,2,2,1],[1,1,1,2],[0,2,3,2],[1,3,2,0]],[[1,2,2,1],[1,1,1,2],[0,2,3,2],[2,2,2,0]],[[1,2,2,1],[1,1,1,2],[0,2,3,3],[1,2,2,0]],[[1,2,2,1],[1,1,1,2],[0,2,4,2],[1,2,2,0]],[[1,2,2,1],[1,1,1,3],[0,2,3,2],[1,2,2,0]],[[1,2,2,2],[1,1,1,2],[0,2,3,2],[1,2,2,0]],[[1,2,3,1],[1,1,1,2],[0,2,3,2],[1,2,2,0]],[[1,3,2,1],[1,1,1,2],[0,2,3,2],[1,2,2,0]],[[2,2,2,1],[1,1,1,2],[0,2,3,2],[1,2,2,0]],[[1,2,2,1],[1,1,1,2],[0,2,3,2],[1,2,1,2]],[[1,2,2,1],[1,1,1,2],[0,2,3,3],[1,2,1,1]],[[1,2,2,1],[1,1,1,2],[0,2,4,2],[1,2,1,1]],[[1,2,2,1],[1,1,1,3],[0,2,3,2],[1,2,1,1]],[[1,2,2,2],[1,1,1,2],[0,2,3,2],[1,2,1,1]],[[1,2,3,1],[1,1,1,2],[0,2,3,2],[1,2,1,1]],[[1,3,2,1],[1,1,1,2],[0,2,3,2],[1,2,1,1]],[[2,2,2,1],[1,1,1,2],[0,2,3,2],[1,2,1,1]],[[1,2,2,1],[1,1,1,2],[0,2,3,1],[1,2,2,2]],[[1,2,2,1],[1,1,1,2],[0,2,3,1],[1,2,3,1]],[[1,2,2,1],[1,1,1,2],[0,2,3,1],[1,3,2,1]],[[1,2,2,1],[1,1,1,2],[0,2,3,1],[2,2,2,1]],[[1,2,2,1],[1,1,1,2],[0,2,4,1],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[0,2,2,2],[1,2,2,2]],[[1,2,2,1],[1,1,1,2],[0,2,2,2],[1,2,3,1]],[[1,2,2,1],[1,1,1,2],[0,2,2,2],[1,3,2,1]],[[1,2,2,1],[1,1,1,2],[0,2,2,2],[2,2,2,1]],[[1,2,2,1],[1,1,1,2],[0,2,2,3],[1,2,2,1]],[[1,2,2,1],[1,1,1,3],[0,2,2,2],[1,2,2,1]],[[1,2,2,2],[1,1,1,2],[0,2,2,2],[1,2,2,1]],[[1,2,3,1],[1,1,1,2],[0,2,2,2],[1,2,2,1]],[[1,3,2,1],[1,1,1,2],[0,2,2,2],[1,2,2,1]],[[2,2,2,1],[1,1,1,2],[0,2,2,2],[1,2,2,1]],[[1,2,2,1],[1,1,1,2],[0,1,3,2],[1,2,2,2]],[[1,2,2,1],[1,1,1,2],[0,1,3,2],[1,2,3,1]],[[1,2,2,1],[1,1,1,2],[0,1,3,3],[1,2,2,1]],[[1,2,2,1],[1,1,1,3],[0,1,3,2],[1,2,2,1]],[[1,2,2,2],[1,1,1,2],[0,1,3,2],[1,2,2,1]],[[1,2,3,1],[1,1,1,2],[0,1,3,2],[1,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,1,0,2],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[1,1,0,2],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[1,1,0,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,1,0,2],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[1,1,0,2],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[1,1,0,2],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[1,1,0,3],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[1,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[1,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[1,1,0,2],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[1,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,1,0,2],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[1,1,0,2],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[1,1,0,2],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[1,1,0,3],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[1,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[1,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[1,1,0,2],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[1,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[1,1,0,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[1,1,0,2],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[1,1,0,2],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[1,1,0,2],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,1,0,3],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[1,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[1,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[1,1,0,2],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[1,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[1,0,1,2]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[1,1,0,2],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[1,1,0,2],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[1,1,0,2],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[1,1,0,3],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[1,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[1,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[1,1,0,2],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[1,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,1,0,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,1,0,2],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,1,0,2],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[1,1,0,2],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,1,0,3],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,1,0,2],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[1,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,1,0,2],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,1,0,2],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[1,1,0,2],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,1,0,3],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[1,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[1,1,0,2],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[0,1,3,0]],[[1,2,2,1],[1,1,0,2],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,1,0,2],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,1,0,2],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[1,1,0,2],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,1,0,3],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[1,1,0,2],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[1,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,1,0,2],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,1,0,2],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[1,1,0,2],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[1,1,0,2],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,1,0,3],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[1,1,0,2],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,1,0,2],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,4,2],[0,0,2,1]],[[1,2,2,1],[1,1,0,3],[2,3,3,2],[0,0,2,1]],[[1,2,2,2],[1,1,0,2],[2,3,3,2],[0,0,2,1]],[[1,2,3,1],[1,1,0,2],[2,3,3,2],[0,0,2,1]],[[1,3,2,1],[1,1,0,2],[2,3,3,2],[0,0,2,1]],[[2,2,2,1],[1,1,0,2],[2,3,3,2],[0,0,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[1,1,0,2],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,1,0,2],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[1,1,0,2],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[1,1,0,2],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[1,1,0,2],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[1,1,0,2],[3,3,3,1],[1,0,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[1,1,0,2],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[1,1,0,2],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[1,1,0,2],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[1,1,0,2],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,1,0,2],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,1,0,2],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[1,1,0,2],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[1,1,0,2],[3,3,3,1],[0,1,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[1,1,0,2],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[1,1,0,2],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,1,0,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[1,1,0,2],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[1,1,0,2],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[1,1,0,3],[2,3,2,2],[1,0,2,1]],[[1,2,2,2],[1,1,0,2],[2,3,2,2],[1,0,2,1]],[[1,2,3,1],[1,1,0,2],[2,3,2,2],[1,0,2,1]],[[1,3,2,1],[1,1,0,2],[2,3,2,2],[1,0,2,1]],[[2,2,2,1],[1,1,0,2],[2,3,2,2],[1,0,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[1,1,0,2],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[1,1,0,2],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[1,1,0,2],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[1,1,0,2],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,1,0,2],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[1,1,0,2],[2,3,2,3],[0,1,2,1]],[[1,2,2,1],[1,1,0,3],[2,3,2,2],[0,1,2,1]],[[1,2,2,2],[1,1,0,2],[2,3,2,2],[0,1,2,1]],[[1,2,3,1],[1,1,0,2],[2,3,2,2],[0,1,2,1]],[[1,3,2,1],[1,1,0,2],[2,3,2,2],[0,1,2,1]],[[2,2,2,1],[1,1,0,2],[2,3,2,2],[0,1,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[1,1,0,2],[2,4,2,1],[1,1,2,1]],[[1,2,2,1],[1,1,0,2],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[1,1,0,2],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[1,1,0,2],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[1,1,0,2],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[1,1,0,2],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[1,1,0,2],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[1,1,0,2],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[1,1,0,2],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[1,1,0,2],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,1,3],[0,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[1,1,0,2],[3,3,1,2],[0,2,2,1]],[[1,2,2,1],[1,1,0,3],[2,3,1,2],[0,2,2,1]],[[1,2,2,2],[1,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,3,1],[1,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,3,2,1],[1,1,0,2],[2,3,1,2],[0,2,2,1]],[[2,2,2,1],[1,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,0,2],[1,3,2,1]],[[1,2,2,1],[1,1,0,2],[2,3,0,2],[2,2,2,1]],[[1,2,2,1],[1,1,0,2],[3,3,0,2],[1,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,1,0,2],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[1,1,0,2],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[1,1,0,2],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[1,1,0,2],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[1,1,0,2],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[1,1,0,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,1,0,2],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[1,1,0,2],[2,2,3,3],[0,2,2,0]],[[1,2,2,1],[1,1,0,2],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[1,1,0,3],[2,2,3,2],[0,2,2,0]],[[1,2,2,2],[1,1,0,2],[2,2,3,2],[0,2,2,0]],[[1,2,3,1],[1,1,0,2],[2,2,3,2],[0,2,2,0]],[[1,3,2,1],[1,1,0,2],[2,2,3,2],[0,2,2,0]],[[2,2,2,1],[1,1,0,2],[2,2,3,2],[0,2,2,0]],[[1,2,2,1],[1,1,0,2],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[1,1,0,2],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[1,1,0,2],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[1,1,0,3],[2,2,3,2],[0,2,1,1]],[[1,2,2,2],[1,1,0,2],[2,2,3,2],[0,2,1,1]],[[1,2,3,1],[1,1,0,2],[2,2,3,2],[0,2,1,1]],[[1,3,2,1],[1,1,0,2],[2,2,3,2],[0,2,1,1]],[[2,2,2,1],[1,1,0,2],[2,2,3,2],[0,2,1,1]],[[1,2,2,1],[1,1,0,2],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[1,1,0,2],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[1,1,0,2],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[1,1,0,2],[2,2,3,1],[0,2,2,2]],[[1,2,2,1],[1,1,0,2],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[1,1,0,2],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[1,1,0,2],[2,2,4,1],[0,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[1,1,0,2],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[1,1,0,2],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[1,1,0,2],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[1,1,0,2],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[1,1,0,2],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[1,1,0,2],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[1,1,0,2],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[1,1,0,3],[2,2,2,2],[0,2,2,1]],[[1,2,2,2],[1,1,0,2],[2,2,2,2],[0,2,2,1]],[[1,2,3,1],[1,1,0,2],[2,2,2,2],[0,2,2,1]],[[1,3,2,1],[1,1,0,2],[2,2,2,2],[0,2,2,1]],[[2,2,2,1],[1,1,0,2],[2,2,2,2],[0,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[1,1,0,2],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[1,1,0,2],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[1,1,0,2],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[1,1,0,2],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[1,1,0,2],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[1,1,0,2],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[1,1,0,2],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[1,1,0,2],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,0,3],[2,2,1,2],[1,2,2,1]],[[1,2,2,2],[1,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,2,3,1],[1,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,3,2,1],[1,1,0,2],[2,2,1,2],[1,2,2,1]],[[2,2,2,1],[1,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[1,1,0,2],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[1,1,0,2],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[1,1,0,2],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[1,1,0,2],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[1,1,0,2],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,1,0,3],[2,1,3,2],[1,2,2,0]],[[1,2,2,2],[1,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,2,3,1],[1,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,3,2,1],[1,1,0,2],[2,1,3,2],[1,2,2,0]],[[2,2,2,1],[1,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,1,0,2],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[1,1,0,2],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[1,1,0,2],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[1,1,0,3],[2,1,3,2],[1,2,1,1]],[[1,2,2,2],[1,1,0,2],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,0,1,2],[1,2,3,3],[1,2,2,1]],[[0,2,2,0],[2,0,1,2],[1,2,3,2],[2,2,2,1]],[[0,2,2,0],[2,0,1,2],[1,2,3,2],[1,3,2,1]],[[0,2,2,0],[2,0,1,2],[1,2,3,2],[1,2,3,1]],[[0,2,2,0],[2,0,1,2],[1,2,3,2],[1,2,2,2]],[[0,2,2,0],[2,0,1,2],[1,3,3,3],[1,1,2,1]],[[0,2,2,0],[2,0,1,2],[1,3,3,2],[1,1,3,1]],[[0,2,2,0],[2,0,1,2],[1,3,3,2],[1,1,2,2]],[[0,2,2,0],[2,0,1,2],[3,1,3,2],[1,2,2,1]],[[0,2,2,0],[2,0,1,2],[2,1,3,3],[1,2,2,1]],[[0,2,2,0],[2,0,1,2],[2,1,3,2],[2,2,2,1]],[[0,2,2,0],[2,0,1,2],[2,1,3,2],[1,3,2,1]],[[0,2,2,0],[2,0,1,2],[2,1,3,2],[1,2,3,1]],[[0,2,2,0],[2,0,1,2],[2,1,3,2],[1,2,2,2]],[[0,2,2,0],[2,0,1,2],[2,2,3,3],[0,2,2,1]],[[0,2,2,0],[2,0,1,2],[2,2,3,2],[0,3,2,1]],[[0,2,2,0],[2,0,1,2],[2,2,3,2],[0,2,3,1]],[[0,2,2,0],[2,0,1,2],[2,2,3,2],[0,2,2,2]],[[0,2,2,0],[2,0,1,2],[2,3,3,3],[0,1,2,1]],[[0,2,2,0],[2,0,1,2],[2,3,3,2],[0,1,3,1]],[[0,2,2,0],[2,0,1,2],[2,3,3,2],[0,1,2,2]],[[0,2,2,0],[2,0,1,2],[2,3,3,3],[1,0,2,1]],[[0,2,2,0],[2,0,1,2],[2,3,3,2],[1,0,3,1]],[[0,2,2,0],[2,0,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,3,1],[1,1,0,2],[2,1,3,2],[1,2,1,1]],[[1,3,2,1],[1,1,0,2],[2,1,3,2],[1,2,1,1]],[[2,2,2,1],[1,1,0,2],[2,1,3,2],[1,2,1,1]],[[1,2,2,1],[1,1,0,2],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[1,1,0,2],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[1,1,0,2],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[1,1,0,2],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[1,1,0,2],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[1,1,0,2],[2,1,2,2],[1,2,3,1]],[[0,2,2,0],[2,0,2,3],[1,1,3,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,1,3,3],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,1,3,2],[1,2,3,1]],[[0,2,2,0],[2,0,2,2],[1,1,3,2],[1,2,2,2]],[[0,2,2,0],[2,0,2,3],[1,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,2,2,3],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,2,2,2],[2,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,0,2,2],[1,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,0,2,2],[1,2,2,2],[1,2,2,2]],[[0,2,2,0],[2,0,2,2],[1,2,4,1],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,2,3,1],[2,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,2,3,1],[1,3,2,1]],[[0,2,2,0],[2,0,2,2],[1,2,3,1],[1,2,3,1]],[[0,2,2,0],[2,0,2,2],[1,2,3,1],[1,2,2,2]],[[0,2,2,0],[2,0,2,3],[1,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,0,2,2],[1,2,4,2],[1,2,1,1]],[[0,2,2,0],[2,0,2,2],[1,2,3,3],[1,2,1,1]],[[0,2,2,0],[2,0,2,2],[1,2,3,2],[1,2,1,2]],[[0,2,2,0],[2,0,2,3],[1,2,3,2],[1,2,2,0]],[[0,2,2,0],[2,0,2,2],[1,2,4,2],[1,2,2,0]],[[0,2,2,0],[2,0,2,2],[1,2,3,3],[1,2,2,0]],[[0,2,2,0],[2,0,2,2],[1,2,3,2],[2,2,2,0]],[[0,2,2,0],[2,0,2,2],[1,2,3,2],[1,3,2,0]],[[0,2,2,0],[2,0,2,2],[1,2,3,2],[1,2,3,0]],[[0,2,2,0],[2,0,2,3],[1,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,4,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,1,3],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,1,2],[1,3,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,1,2],[1,2,3,1]],[[0,2,2,0],[2,0,2,2],[1,3,1,2],[1,2,2,2]],[[0,2,2,0],[2,0,2,2],[1,4,2,1],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,2,1],[2,2,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,2,1],[1,3,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,2,1],[1,2,3,1]],[[0,2,2,0],[2,0,2,2],[1,3,2,1],[1,2,2,2]],[[0,2,2,0],[2,0,2,3],[1,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,2,3],[1,1,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,0],[2,0,2,2],[1,3,2,2],[1,1,2,2]],[[0,2,2,0],[2,0,2,2],[1,4,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,2,2],[1,3,2,2],[2,2,2,0]],[[0,2,2,0],[2,0,2,2],[1,3,2,2],[1,3,2,0]],[[0,2,2,0],[2,0,2,2],[1,3,2,2],[1,2,3,0]],[[0,2,2,0],[2,0,2,2],[1,4,3,1],[1,1,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,1],[1,1,2,2]],[[0,2,2,0],[2,0,2,2],[1,4,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,2,2],[1,3,4,1],[1,2,1,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,1],[2,2,1,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,1],[1,3,1,1]],[[0,2,2,0],[2,0,2,3],[1,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,4,2],[1,0,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,3],[1,0,2,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,2],[1,0,2,2]],[[0,2,2,0],[2,0,2,3],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,0,2,2],[1,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,0,2,2],[1,3,4,2],[1,1,1,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,3],[1,1,1,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,2],[1,1,1,2]],[[0,2,2,0],[2,0,2,3],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,0,2,2],[1,4,3,2],[1,1,2,0]],[[0,2,2,0],[2,0,2,2],[1,3,4,2],[1,1,2,0]],[[0,2,2,0],[2,0,2,2],[1,3,3,3],[1,1,2,0]],[[0,2,2,0],[2,0,2,2],[1,3,3,2],[1,1,3,0]],[[0,2,2,0],[2,0,2,3],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,0,2,2],[1,4,3,2],[1,2,0,1]],[[0,2,2,0],[2,0,2,2],[1,3,4,2],[1,2,0,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,3],[1,2,0,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,2],[2,2,0,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,2],[1,3,0,1]],[[0,2,2,0],[2,0,2,2],[1,3,3,2],[1,2,0,2]],[[0,2,2,0],[2,0,2,3],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,0,2,2],[1,4,3,2],[1,2,1,0]],[[0,2,2,0],[2,0,2,2],[1,3,4,2],[1,2,1,0]],[[0,2,2,0],[2,0,2,2],[1,3,3,3],[1,2,1,0]],[[0,2,2,0],[2,0,2,2],[1,3,3,2],[2,2,1,0]],[[0,2,2,0],[2,0,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,1,0,2],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[1,1,0,2],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[1,1,0,2],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[1,1,0,2],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[1,1,0,3],[2,1,2,2],[1,2,2,1]],[[1,2,2,2],[1,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,2,3,1],[1,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,3,2,1],[1,1,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,3],[2,0,3,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,0,3,3],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,0,3,2],[1,2,3,1]],[[0,2,2,0],[2,0,2,2],[2,0,3,2],[1,2,2,2]],[[0,2,2,0],[3,0,2,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,3],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[3,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,1,2,3],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,1,2,2],[2,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,1,2,2],[1,3,2,1]],[[0,2,2,0],[2,0,2,2],[2,1,2,2],[1,2,3,1]],[[0,2,2,0],[2,0,2,2],[2,1,2,2],[1,2,2,2]],[[0,2,2,0],[3,0,2,2],[2,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[3,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,1,4,1],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,1,3,1],[2,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,1,3,1],[1,3,2,1]],[[0,2,2,0],[2,0,2,2],[2,1,3,1],[1,2,3,1]],[[0,2,2,0],[2,0,2,2],[2,1,3,1],[1,2,2,2]],[[0,2,2,0],[2,0,2,3],[2,1,3,2],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,1,3,3],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,1,3,2],[0,2,3,1]],[[0,2,2,0],[2,0,2,2],[2,1,3,2],[0,2,2,2]],[[0,2,2,0],[2,0,2,3],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,0,2,2],[2,1,4,2],[1,2,1,1]],[[0,2,2,0],[2,0,2,2],[2,1,3,3],[1,2,1,1]],[[0,2,2,0],[2,0,2,2],[2,1,3,2],[1,2,1,2]],[[0,2,2,0],[3,0,2,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,0,2,3],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,0,2,2],[3,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,0,2,2],[2,1,4,2],[1,2,2,0]],[[0,2,2,0],[2,0,2,2],[2,1,3,3],[1,2,2,0]],[[0,2,2,0],[2,0,2,2],[2,1,3,2],[2,2,2,0]],[[0,2,2,0],[2,0,2,2],[2,1,3,2],[1,3,2,0]],[[0,2,2,0],[2,0,2,2],[2,1,3,2],[1,2,3,0]],[[0,2,2,0],[3,0,2,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,3],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[3,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,1,3],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,1,2],[2,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,1,2],[1,3,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,1,2],[1,2,3,1]],[[0,2,2,0],[2,0,2,2],[2,2,1,2],[1,2,2,2]],[[0,2,2,0],[3,0,2,2],[2,2,2,1],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[3,2,2,1],[1,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,2,1],[2,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,2,1],[1,3,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,2,1],[1,2,3,1]],[[0,2,2,0],[2,0,2,2],[2,2,2,1],[1,2,2,2]],[[0,2,2,0],[2,0,2,3],[2,2,2,2],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,2,3],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,2,2],[0,3,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,2,2],[0,2,3,1]],[[0,2,2,0],[2,0,2,2],[2,2,2,2],[0,2,2,2]],[[0,2,2,0],[3,0,2,2],[2,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,2,2],[3,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,2,2],[2,2,2,2],[2,2,2,0]],[[0,2,2,0],[2,0,2,2],[2,2,2,2],[1,3,2,0]],[[0,2,2,0],[2,0,2,2],[2,2,2,2],[1,2,3,0]],[[0,2,2,0],[2,0,2,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,3,1],[0,3,2,1]],[[0,2,2,0],[2,0,2,2],[2,2,3,1],[0,2,3,1]],[[0,2,2,0],[2,0,2,2],[2,2,3,1],[0,2,2,2]],[[0,2,2,0],[3,0,2,2],[2,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,2,2],[3,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,2,2],[2,2,3,1],[2,2,1,1]],[[0,2,2,0],[2,0,2,2],[2,2,3,1],[1,3,1,1]],[[0,2,2,0],[2,0,2,3],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[2,0,2,2],[2,2,4,2],[0,2,1,1]],[[0,2,2,0],[2,0,2,2],[2,2,3,3],[0,2,1,1]],[[0,2,2,0],[2,0,2,2],[2,2,3,2],[0,2,1,2]],[[0,2,2,0],[2,0,2,3],[2,2,3,2],[0,2,2,0]],[[0,2,2,0],[2,0,2,2],[2,2,4,2],[0,2,2,0]],[[0,2,2,0],[2,0,2,2],[2,2,3,3],[0,2,2,0]],[[0,2,2,0],[2,0,2,2],[2,2,3,2],[0,3,2,0]],[[0,2,2,0],[2,0,2,2],[2,2,3,2],[0,2,3,0]],[[0,2,2,0],[3,0,2,2],[2,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,0,2,2],[3,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,0,2,2],[2,2,3,2],[2,2,0,1]],[[0,2,2,0],[2,0,2,2],[2,2,3,2],[1,3,0,1]],[[0,2,2,0],[3,0,2,2],[2,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,0,2,2],[3,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,0,2,2],[2,2,3,2],[2,2,1,0]],[[0,2,2,0],[2,0,2,2],[2,2,3,2],[1,3,1,0]],[[2,2,2,1],[1,1,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[3,0,2,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,0,2,3],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[3,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,4,1,2],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,1,3],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,1,2],[0,3,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,1,2],[0,2,3,1]],[[0,2,2,0],[2,0,2,2],[2,3,1,2],[0,2,2,2]],[[0,2,2,0],[3,0,2,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,0,2,2],[3,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,0,2,2],[2,4,1,2],[1,1,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,1,2],[2,1,2,1]],[[0,2,2,0],[3,0,2,2],[2,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[3,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,4,2,1],[0,2,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,2,1],[0,3,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,2,1],[0,2,3,1]],[[0,2,2,0],[2,0,2,2],[2,3,2,1],[0,2,2,2]],[[0,2,2,0],[3,0,2,2],[2,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,0,2,2],[3,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,0,2,2],[2,4,2,1],[1,1,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,2,1],[2,1,2,1]],[[0,2,2,0],[2,0,2,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,2,3],[0,1,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,0],[2,0,2,2],[2,3,2,2],[0,1,2,2]],[[0,2,2,0],[3,0,2,2],[2,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,0,2,2],[3,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,0,2,2],[2,4,2,2],[0,2,2,0]],[[0,2,2,0],[2,0,2,2],[2,3,2,2],[0,3,2,0]],[[0,2,2,0],[2,0,2,2],[2,3,2,2],[0,2,3,0]],[[0,2,2,0],[2,0,2,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,2,3],[1,0,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,2,2],[1,0,3,1]],[[0,2,2,0],[2,0,2,2],[2,3,2,2],[1,0,2,2]],[[0,2,2,0],[3,0,2,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,0,2,2],[3,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,0,2,2],[2,4,2,2],[1,1,2,0]],[[0,2,2,0],[2,0,2,2],[2,3,2,2],[2,1,2,0]],[[0,2,2,0],[3,0,2,2],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,0,2,2],[3,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,0,2,2],[2,4,3,1],[0,1,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,4,1],[0,1,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,1],[0,1,3,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,1],[0,1,2,2]],[[0,2,2,0],[3,0,2,2],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,0,2,2],[3,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,0,2,2],[2,4,3,1],[0,2,1,1]],[[0,2,2,0],[2,0,2,2],[2,3,4,1],[0,2,1,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,1],[0,3,1,1]],[[0,2,2,0],[3,0,2,2],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,0,2,2],[3,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,0,2,2],[2,4,3,1],[1,0,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,4,1],[1,0,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,1],[2,0,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,1],[1,0,3,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,1],[1,0,2,2]],[[0,2,2,0],[3,0,2,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,0,2,2],[3,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,0,2,2],[2,4,3,1],[1,1,1,1]],[[0,2,2,0],[2,0,2,2],[2,3,4,1],[1,1,1,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[1,1,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,1,0,2],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[1,1,0,2],[1,3,3,3],[1,2,1,0]],[[0,2,2,0],[2,0,2,3],[2,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,4,2],[0,0,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,3],[0,0,2,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[0,0,2,2]],[[0,2,2,0],[3,0,2,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,0,2,3],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,0,2,2],[3,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,0,2,2],[2,4,3,2],[0,1,1,1]],[[0,2,2,0],[2,0,2,2],[2,3,4,2],[0,1,1,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,3],[0,1,1,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[0,1,1,2]],[[0,2,2,0],[3,0,2,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,0,2,3],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,0,2,2],[3,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,0,2,2],[2,4,3,2],[0,1,2,0]],[[0,2,2,0],[2,0,2,2],[2,3,4,2],[0,1,2,0]],[[0,2,2,0],[2,0,2,2],[2,3,3,3],[0,1,2,0]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[0,1,3,0]],[[0,2,2,0],[3,0,2,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,0,2,3],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,0,2,2],[3,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,0,2,2],[2,4,3,2],[0,2,0,1]],[[0,2,2,0],[2,0,2,2],[2,3,4,2],[0,2,0,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,3],[0,2,0,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[0,3,0,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[0,2,0,2]],[[0,2,2,0],[3,0,2,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,0,2,3],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,0,2,2],[3,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,0,2,2],[2,4,3,2],[0,2,1,0]],[[0,2,2,0],[2,0,2,2],[2,3,4,2],[0,2,1,0]],[[0,2,2,0],[2,0,2,2],[2,3,3,3],[0,2,1,0]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,1,0,2],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[1,1,0,2],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[1,1,0,3],[1,3,3,2],[1,2,1,0]],[[1,2,2,2],[1,1,0,2],[1,3,3,2],[1,2,1,0]],[[1,2,3,1],[1,1,0,2],[1,3,3,2],[1,2,1,0]],[[1,3,2,1],[1,1,0,2],[1,3,3,2],[1,2,1,0]],[[2,2,2,1],[1,1,0,2],[1,3,3,2],[1,2,1,0]],[[1,2,2,1],[1,1,0,2],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[1,1,0,2],[1,3,3,2],[1,3,0,1]],[[0,2,2,0],[3,0,2,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,0,2,3],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,0,2,2],[3,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,0,2,2],[2,4,3,2],[1,0,1,1]],[[0,2,2,0],[2,0,2,2],[2,3,4,2],[1,0,1,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,3],[1,0,1,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[2,0,1,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[1,0,1,2]],[[0,2,2,0],[3,0,2,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,0,2,3],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,0,2,2],[3,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,0,2,2],[2,4,3,2],[1,0,2,0]],[[0,2,2,0],[2,0,2,2],[2,3,4,2],[1,0,2,0]],[[0,2,2,0],[2,0,2,2],[2,3,3,3],[1,0,2,0]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[2,0,2,0]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[1,0,3,0]],[[0,2,2,0],[3,0,2,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,0,2,3],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,0,2,2],[3,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,0,2,2],[2,4,3,2],[1,1,0,1]],[[0,2,2,0],[2,0,2,2],[2,3,4,2],[1,1,0,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,3],[1,1,0,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[2,1,0,1]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[1,1,0,2]],[[0,2,2,0],[3,0,2,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,0,2,3],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,0,2,2],[3,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,0,2,2],[2,4,3,2],[1,1,1,0]],[[0,2,2,0],[2,0,2,2],[2,3,4,2],[1,1,1,0]],[[0,2,2,0],[2,0,2,2],[2,3,3,3],[1,1,1,0]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[1,1,0,2],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[1,1,0,2],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[1,1,0,2],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[1,1,0,2],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[1,1,0,3],[1,3,3,2],[1,2,0,1]],[[1,2,2,2],[1,1,0,2],[1,3,3,2],[1,2,0,1]],[[1,2,3,1],[1,1,0,2],[1,3,3,2],[1,2,0,1]],[[1,3,2,1],[1,1,0,2],[1,3,3,2],[1,2,0,1]],[[2,2,2,1],[1,1,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[3,0,2,2],[2,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,0,2,2],[3,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,0,2,2],[2,4,3,2],[1,2,0,0]],[[0,2,2,0],[2,0,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,1,0,2],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[1,1,0,2],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[1,1,0,2],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[1,1,0,2],[1,4,3,2],[1,1,2,0]],[[1,2,2,1],[1,1,0,3],[1,3,3,2],[1,1,2,0]],[[1,2,2,2],[1,1,0,2],[1,3,3,2],[1,1,2,0]],[[1,2,3,1],[1,1,0,2],[1,3,3,2],[1,1,2,0]],[[1,3,2,1],[1,1,0,2],[1,3,3,2],[1,1,2,0]],[[2,2,2,1],[1,1,0,2],[1,3,3,2],[1,1,2,0]],[[1,2,2,1],[1,1,0,2],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[1,1,0,2],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[1,1,0,2],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[1,1,0,2],[1,4,3,2],[1,1,1,1]],[[1,2,2,1],[1,1,0,3],[1,3,3,2],[1,1,1,1]],[[1,2,2,2],[1,1,0,2],[1,3,3,2],[1,1,1,1]],[[1,2,3,1],[1,1,0,2],[1,3,3,2],[1,1,1,1]],[[1,3,2,1],[1,1,0,2],[1,3,3,2],[1,1,1,1]],[[2,2,2,1],[1,1,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,0],[1,2,4,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,0],[1,2,3,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,0],[1,2,3,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,0],[1,2,3,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,0],[1,2,3,2],[1,2,2,2]],[[0,2,2,0],[2,0,3,0],[1,4,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,0],[1,3,2,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,0],[1,3,2,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,0],[1,3,2,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,0],[1,3,2,2],[1,2,2,2]],[[0,2,2,0],[2,0,3,0],[1,4,3,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,0],[1,3,4,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,0],[1,3,3,2],[1,1,3,1]],[[0,2,2,0],[2,0,3,0],[1,3,3,2],[1,1,2,2]],[[0,2,2,0],[2,0,3,0],[1,4,3,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,0],[1,3,4,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,0],[1,3,3,2],[2,2,1,1]],[[0,2,2,0],[2,0,3,0],[1,3,3,2],[1,3,1,1]],[[0,2,2,0],[3,0,3,0],[2,1,3,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,0],[3,1,3,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,0],[2,1,4,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,0],[2,1,3,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,0],[2,1,3,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,0],[2,1,3,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,0],[2,1,3,2],[1,2,2,2]],[[0,2,2,0],[3,0,3,0],[2,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,0],[3,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,0],[2,2,2,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,0],[2,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,0],[2,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,0],[2,2,2,2],[1,2,2,2]],[[0,2,2,0],[2,0,3,0],[2,2,4,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,0],[2,2,3,2],[0,3,2,1]],[[0,2,2,0],[2,0,3,0],[2,2,3,2],[0,2,3,1]],[[0,2,2,0],[2,0,3,0],[2,2,3,2],[0,2,2,2]],[[0,2,2,0],[3,0,3,0],[2,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,0],[3,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,0],[2,2,3,2],[2,2,1,1]],[[0,2,2,0],[2,0,3,0],[2,2,3,2],[1,3,1,1]],[[0,2,2,0],[3,0,3,0],[2,3,2,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,0],[3,3,2,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,0],[2,4,2,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,0],[2,3,2,2],[0,3,2,1]],[[0,2,2,0],[2,0,3,0],[2,3,2,2],[0,2,3,1]],[[0,2,2,0],[2,0,3,0],[2,3,2,2],[0,2,2,2]],[[0,2,2,0],[3,0,3,0],[2,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,0],[3,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,0],[2,4,2,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,0],[2,3,2,2],[2,1,2,1]],[[0,2,2,0],[3,0,3,0],[2,3,3,2],[0,1,2,1]],[[0,2,2,0],[2,0,3,0],[3,3,3,2],[0,1,2,1]],[[0,2,2,0],[2,0,3,0],[2,4,3,2],[0,1,2,1]],[[0,2,2,0],[2,0,3,0],[2,3,4,2],[0,1,2,1]],[[0,2,2,0],[2,0,3,0],[2,3,3,2],[0,1,3,1]],[[0,2,2,0],[2,0,3,0],[2,3,3,2],[0,1,2,2]],[[0,2,2,0],[3,0,3,0],[2,3,3,2],[0,2,1,1]],[[0,2,2,0],[2,0,3,0],[3,3,3,2],[0,2,1,1]],[[0,2,2,0],[2,0,3,0],[2,4,3,2],[0,2,1,1]],[[0,2,2,0],[2,0,3,0],[2,3,4,2],[0,2,1,1]],[[0,2,2,0],[2,0,3,0],[2,3,3,2],[0,3,1,1]],[[0,2,2,0],[3,0,3,0],[2,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,0,3,0],[3,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,0,3,0],[2,4,3,2],[1,0,2,1]],[[0,2,2,0],[2,0,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,2,0],[2,0,3,0],[2,3,3,2],[2,0,2,1]],[[0,2,2,0],[2,0,3,0],[2,3,3,2],[1,0,3,1]],[[0,2,2,0],[2,0,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,2,0],[3,0,3,0],[2,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,0],[3,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,0],[2,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,0],[2,3,4,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,1],[1,1,0,2],[1,3,3,2],[0,1,2,2]],[[1,2,2,1],[1,1,0,2],[1,3,3,2],[0,1,3,1]],[[1,2,2,1],[1,1,0,2],[1,3,3,3],[0,1,2,1]],[[0,2,2,0],[2,0,3,1],[1,1,3,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,1,3,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,1],[1,1,3,2],[1,2,2,2]],[[0,2,2,0],[2,0,3,1],[1,2,2,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,2,2,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,1],[1,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,1],[1,2,2,2],[1,2,2,2]],[[0,3,2,0],[2,0,3,1],[1,2,3,1],[1,2,2,1]],[[0,2,3,0],[2,0,3,1],[1,2,3,1],[1,2,2,1]],[[0,2,2,0],[2,0,4,1],[1,2,3,1],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,2,4,1],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,2,3,1],[2,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,2,3,1],[1,3,2,1]],[[0,2,2,0],[2,0,3,1],[1,2,3,1],[1,2,3,1]],[[0,2,2,0],[2,0,3,1],[1,2,3,1],[1,2,2,2]],[[0,3,2,0],[2,0,3,1],[1,2,3,2],[1,2,1,1]],[[0,2,3,0],[2,0,3,1],[1,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,0,4,1],[1,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,1],[1,2,4,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,1],[1,2,3,3],[1,2,1,1]],[[0,2,2,0],[2,0,3,1],[1,2,3,2],[1,2,1,2]],[[0,3,2,0],[2,0,3,1],[1,2,3,2],[1,2,2,0]],[[0,2,3,0],[2,0,3,1],[1,2,3,2],[1,2,2,0]],[[0,2,2,0],[2,0,4,1],[1,2,3,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,1],[1,2,4,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,1],[1,2,3,3],[1,2,2,0]],[[0,2,2,0],[2,0,3,1],[1,2,3,2],[2,2,2,0]],[[0,2,2,0],[2,0,3,1],[1,2,3,2],[1,3,2,0]],[[0,2,2,0],[2,0,3,1],[1,2,3,2],[1,2,3,0]],[[0,2,2,0],[2,0,3,1],[1,4,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,1,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,1,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,1,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,1],[1,3,1,2],[1,2,2,2]],[[0,2,2,0],[2,0,3,1],[1,4,2,1],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,2,1],[2,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,2,1],[1,3,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,2,1],[1,2,3,1]],[[0,2,2,0],[2,0,3,1],[1,3,2,1],[1,2,2,2]],[[0,2,2,0],[2,0,3,1],[1,3,2,3],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,2,2],[1,1,3,1]],[[0,2,2,0],[2,0,3,1],[1,3,2,2],[1,1,2,2]],[[0,2,2,0],[2,0,3,1],[1,4,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,1],[1,3,2,2],[2,2,2,0]],[[0,2,2,0],[2,0,3,1],[1,3,2,2],[1,3,2,0]],[[0,2,2,0],[2,0,3,1],[1,3,2,2],[1,2,3,0]],[[0,2,2,0],[2,0,3,1],[1,4,3,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,0],[2,2,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,0],[1,3,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,0],[1,2,3,1]],[[0,3,2,0],[2,0,3,1],[1,3,3,1],[1,1,2,1]],[[0,2,3,0],[2,0,3,1],[1,3,3,1],[1,1,2,1]],[[0,2,2,0],[2,0,4,1],[1,3,3,1],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[1,4,3,1],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,4,1],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,1],[1,1,3,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,1],[1,1,2,2]],[[0,3,2,0],[2,0,3,1],[1,3,3,1],[1,2,1,1]],[[0,2,3,0],[2,0,3,1],[1,3,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,4,1],[1,3,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,3,1],[1,4,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,3,1],[1,3,4,1],[1,2,1,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,1],[2,2,1,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,1],[1,3,1,1]],[[0,2,2,0],[2,0,3,1],[1,3,4,2],[1,0,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,3],[1,0,2,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,2],[1,0,2,2]],[[0,3,2,0],[2,0,3,1],[1,3,3,2],[1,1,1,1]],[[0,2,3,0],[2,0,3,1],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,0,4,1],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,1],[1,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,1],[1,3,4,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,3],[1,1,1,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,2],[1,1,1,2]],[[0,3,2,0],[2,0,3,1],[1,3,3,2],[1,1,2,0]],[[0,2,3,0],[2,0,3,1],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,0,4,1],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,0,3,1],[1,4,3,2],[1,1,2,0]],[[0,2,2,0],[2,0,3,1],[1,3,4,2],[1,1,2,0]],[[0,2,2,0],[2,0,3,1],[1,3,3,3],[1,1,2,0]],[[0,2,2,0],[2,0,3,1],[1,3,3,2],[1,1,3,0]],[[0,3,2,0],[2,0,3,1],[1,3,3,2],[1,2,0,1]],[[0,2,3,0],[2,0,3,1],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,0,4,1],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,0,3,1],[1,4,3,2],[1,2,0,1]],[[0,2,2,0],[2,0,3,1],[1,3,4,2],[1,2,0,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,3],[1,2,0,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,2],[2,2,0,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,2],[1,3,0,1]],[[0,2,2,0],[2,0,3,1],[1,3,3,2],[1,2,0,2]],[[0,3,2,0],[2,0,3,1],[1,3,3,2],[1,2,1,0]],[[0,2,3,0],[2,0,3,1],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,0,4,1],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,0,3,1],[1,4,3,2],[1,2,1,0]],[[0,2,2,0],[2,0,3,1],[1,3,4,2],[1,2,1,0]],[[0,2,2,0],[2,0,3,1],[1,3,3,3],[1,2,1,0]],[[0,2,2,0],[2,0,3,1],[1,3,3,2],[2,2,1,0]],[[0,2,2,0],[2,0,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,1,0,2],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[1,1,0,2],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[1,1,0,2],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[1,1,0,2],[1,4,3,1],[1,2,1,1]],[[1,2,2,1],[1,1,0,2],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[1,1,0,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,0],[2,0,3,1],[2,0,3,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,0,3,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,1],[2,0,3,2],[1,2,2,2]],[[0,2,2,0],[3,0,3,1],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[3,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,1,2,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,1,2,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,1,2,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,1],[2,1,2,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,1],[2,1,2,2],[1,2,2,2]],[[0,3,2,0],[2,0,3,1],[2,1,3,1],[1,2,2,1]],[[0,2,3,0],[2,0,3,1],[2,1,3,1],[1,2,2,1]],[[0,2,2,0],[3,0,3,1],[2,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,0,4,1],[2,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[3,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,1,4,1],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,1,3,1],[2,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,1,3,1],[1,3,2,1]],[[0,2,2,0],[2,0,3,1],[2,1,3,1],[1,2,3,1]],[[0,2,2,0],[2,0,3,1],[2,1,3,1],[1,2,2,2]],[[0,2,2,0],[2,0,3,1],[2,1,3,3],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,1,3,2],[0,2,3,1]],[[0,2,2,0],[2,0,3,1],[2,1,3,2],[0,2,2,2]],[[0,3,2,0],[2,0,3,1],[2,1,3,2],[1,2,1,1]],[[0,2,3,0],[2,0,3,1],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,0,4,1],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,1],[2,1,4,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,1],[2,1,3,3],[1,2,1,1]],[[0,2,2,0],[2,0,3,1],[2,1,3,2],[1,2,1,2]],[[0,3,2,0],[2,0,3,1],[2,1,3,2],[1,2,2,0]],[[0,2,3,0],[2,0,3,1],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[3,0,3,1],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,0,4,1],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,1],[3,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,1],[2,1,4,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,1],[2,1,3,3],[1,2,2,0]],[[0,2,2,0],[2,0,3,1],[2,1,3,2],[2,2,2,0]],[[0,2,2,0],[2,0,3,1],[2,1,3,2],[1,3,2,0]],[[0,2,2,0],[2,0,3,1],[2,1,3,2],[1,2,3,0]],[[0,2,2,0],[3,0,3,1],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[3,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,1,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,1,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,1,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,1,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,1],[2,2,1,2],[1,2,2,2]],[[0,2,2,0],[3,0,3,1],[2,2,2,1],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[3,2,2,1],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,2,1],[2,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,2,1],[1,3,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,2,1],[1,2,3,1]],[[0,2,2,0],[2,0,3,1],[2,2,2,1],[1,2,2,2]],[[0,2,2,0],[2,0,3,1],[2,2,2,3],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,2,2],[0,3,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,2,2],[0,2,3,1]],[[0,2,2,0],[2,0,3,1],[2,2,2,2],[0,2,2,2]],[[0,2,2,0],[3,0,3,1],[2,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,1],[3,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,1],[2,2,2,2],[2,2,2,0]],[[0,2,2,0],[2,0,3,1],[2,2,2,2],[1,3,2,0]],[[0,2,2,0],[2,0,3,1],[2,2,2,2],[1,2,3,0]],[[0,2,2,0],[3,0,3,1],[2,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[3,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,0],[2,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,0],[1,3,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,0],[1,2,3,1]],[[0,3,2,0],[2,0,3,1],[2,2,3,1],[0,2,2,1]],[[0,2,3,0],[2,0,3,1],[2,2,3,1],[0,2,2,1]],[[0,2,2,0],[2,0,4,1],[2,2,3,1],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,4,1],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,1],[0,3,2,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,1],[0,2,3,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,1],[0,2,2,2]],[[0,2,2,0],[3,0,3,1],[2,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,3,1],[3,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,1],[2,2,1,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,1],[1,3,1,1]],[[0,3,2,0],[2,0,3,1],[2,2,3,2],[0,2,1,1]],[[0,2,3,0],[2,0,3,1],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[2,0,4,1],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[2,0,3,1],[2,2,4,2],[0,2,1,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,3],[0,2,1,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,2],[0,2,1,2]],[[0,3,2,0],[2,0,3,1],[2,2,3,2],[0,2,2,0]],[[0,2,3,0],[2,0,3,1],[2,2,3,2],[0,2,2,0]],[[0,2,2,0],[2,0,4,1],[2,2,3,2],[0,2,2,0]],[[0,2,2,0],[2,0,3,1],[2,2,4,2],[0,2,2,0]],[[0,2,2,0],[2,0,3,1],[2,2,3,3],[0,2,2,0]],[[0,2,2,0],[2,0,3,1],[2,2,3,2],[0,3,2,0]],[[0,2,2,0],[2,0,3,1],[2,2,3,2],[0,2,3,0]],[[0,2,2,0],[3,0,3,1],[2,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,0,3,1],[3,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,2],[2,2,0,1]],[[0,2,2,0],[2,0,3,1],[2,2,3,2],[1,3,0,1]],[[0,2,2,0],[3,0,3,1],[2,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,0,3,1],[3,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,0,3,1],[2,2,3,2],[2,2,1,0]],[[0,2,2,0],[2,0,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,1,0,2],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[1,1,0,2],[1,4,3,1],[1,1,2,1]],[[0,2,2,0],[3,0,3,1],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[3,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,4,1,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,1,3],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,1,2],[0,3,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,1,2],[0,2,3,1]],[[0,2,2,0],[2,0,3,1],[2,3,1,2],[0,2,2,2]],[[0,2,2,0],[3,0,3,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[3,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[2,4,1,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,1,2],[2,1,2,1]],[[0,2,2,0],[3,0,3,1],[2,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[3,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,4,2,1],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,2,1],[0,3,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,2,1],[0,2,3,1]],[[0,2,2,0],[2,0,3,1],[2,3,2,1],[0,2,2,2]],[[0,2,2,0],[3,0,3,1],[2,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[3,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[2,4,2,1],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,2,1],[2,1,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,2,3],[0,1,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,2,2],[0,1,3,1]],[[0,2,2,0],[2,0,3,1],[2,3,2,2],[0,1,2,2]],[[0,2,2,0],[3,0,3,1],[2,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,0,3,1],[3,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,0,3,1],[2,4,2,2],[0,2,2,0]],[[0,2,2,0],[2,0,3,1],[2,3,2,2],[0,3,2,0]],[[0,2,2,0],[2,0,3,1],[2,3,2,2],[0,2,3,0]],[[0,2,2,0],[2,0,3,1],[2,3,2,3],[1,0,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,2,2],[1,0,3,1]],[[0,2,2,0],[2,0,3,1],[2,3,2,2],[1,0,2,2]],[[0,2,2,0],[3,0,3,1],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,0,3,1],[3,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,0,3,1],[2,4,2,2],[1,1,2,0]],[[0,2,2,0],[2,0,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[1,1,0,2],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[1,1,0,2],[1,3,2,2],[1,3,2,0]],[[1,2,2,1],[1,1,0,2],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[1,1,0,2],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[1,1,0,2],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[1,1,0,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,0],[3,0,3,1],[2,3,3,0],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[3,3,3,0],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,4,3,0],[0,2,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,0],[0,3,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,0],[0,2,3,1]],[[0,2,2,0],[3,0,3,1],[2,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[3,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[2,4,3,0],[1,1,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,0],[2,1,2,1]],[[0,3,2,0],[2,0,3,1],[2,3,3,1],[0,1,2,1]],[[0,2,3,0],[2,0,3,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[3,0,3,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,0,4,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,0,3,1],[3,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,0,3,1],[2,4,3,1],[0,1,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,4,1],[0,1,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,1],[0,1,3,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,1],[0,1,2,2]],[[0,3,2,0],[2,0,3,1],[2,3,3,1],[0,2,1,1]],[[0,2,3,0],[2,0,3,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[3,0,3,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,0,4,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,0,3,1],[3,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,0,3,1],[2,4,3,1],[0,2,1,1]],[[0,2,2,0],[2,0,3,1],[2,3,4,1],[0,2,1,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,1],[0,3,1,1]],[[0,3,2,0],[2,0,3,1],[2,3,3,1],[1,0,2,1]],[[0,2,3,0],[2,0,3,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[3,0,3,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,0,4,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,0,3,1],[3,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,0,3,1],[2,4,3,1],[1,0,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,4,1],[1,0,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,1],[2,0,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,1],[1,0,3,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,1],[1,0,2,2]],[[0,3,2,0],[2,0,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,3,0],[2,0,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[3,0,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,0,4,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,0,3,1],[3,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,0,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,2,0],[2,0,3,1],[2,3,4,1],[1,1,1,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,1],[2,1,1,1]],[[0,2,2,0],[3,0,3,1],[2,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,0,3,1],[3,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,0,3,1],[2,4,3,1],[1,2,0,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[1,1,0,2],[1,3,2,3],[1,1,2,1]],[[1,2,2,1],[1,1,0,3],[1,3,2,2],[1,1,2,1]],[[1,2,2,2],[1,1,0,2],[1,3,2,2],[1,1,2,1]],[[1,2,3,1],[1,1,0,2],[1,3,2,2],[1,1,2,1]],[[1,3,2,1],[1,1,0,2],[1,3,2,2],[1,1,2,1]],[[2,2,2,1],[1,1,0,2],[1,3,2,2],[1,1,2,1]],[[1,2,2,1],[1,1,0,2],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[1,1,0,2],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[1,1,0,2],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[1,1,0,2],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[1,1,0,2],[1,4,2,1],[1,2,2,1]],[[0,3,2,0],[2,0,3,1],[2,3,3,2],[0,0,2,1]],[[0,2,3,0],[2,0,3,1],[2,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,0,4,1],[2,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,4,2],[0,0,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,3],[0,0,2,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[0,0,2,2]],[[0,3,2,0],[2,0,3,1],[2,3,3,2],[0,1,1,1]],[[0,2,3,0],[2,0,3,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[3,0,3,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,0,4,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,0,3,1],[3,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,0,3,1],[2,4,3,2],[0,1,1,1]],[[0,2,2,0],[2,0,3,1],[2,3,4,2],[0,1,1,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,3],[0,1,1,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[0,1,1,2]],[[0,3,2,0],[2,0,3,1],[2,3,3,2],[0,1,2,0]],[[0,2,3,0],[2,0,3,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[3,0,3,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,0,4,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,0,3,1],[3,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,0,3,1],[2,4,3,2],[0,1,2,0]],[[0,2,2,0],[2,0,3,1],[2,3,4,2],[0,1,2,0]],[[0,2,2,0],[2,0,3,1],[2,3,3,3],[0,1,2,0]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[0,1,3,0]],[[0,3,2,0],[2,0,3,1],[2,3,3,2],[0,2,0,1]],[[0,2,3,0],[2,0,3,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[3,0,3,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,0,4,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,0,3,1],[3,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,0,3,1],[2,4,3,2],[0,2,0,1]],[[0,2,2,0],[2,0,3,1],[2,3,4,2],[0,2,0,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,3],[0,2,0,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[0,3,0,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[0,2,0,2]],[[0,3,2,0],[2,0,3,1],[2,3,3,2],[0,2,1,0]],[[0,2,3,0],[2,0,3,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[3,0,3,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,0,4,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,0,3,1],[3,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,0,3,1],[2,4,3,2],[0,2,1,0]],[[0,2,2,0],[2,0,3,1],[2,3,4,2],[0,2,1,0]],[[0,2,2,0],[2,0,3,1],[2,3,3,3],[0,2,1,0]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,1,0,2],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[1,1,0,2],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[1,1,0,2],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[1,1,0,2],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[1,1,0,2],[1,3,1,3],[1,2,2,1]],[[1,2,2,1],[1,1,0,2],[1,4,1,2],[1,2,2,1]],[[1,2,2,1],[1,1,0,3],[1,3,1,2],[1,2,2,1]],[[1,2,2,2],[1,1,0,2],[1,3,1,2],[1,2,2,1]],[[1,2,3,1],[1,1,0,2],[1,3,1,2],[1,2,2,1]],[[1,3,2,1],[1,1,0,2],[1,3,1,2],[1,2,2,1]],[[2,2,2,1],[1,1,0,2],[1,3,1,2],[1,2,2,1]],[[0,3,2,0],[2,0,3,1],[2,3,3,2],[1,0,1,1]],[[0,2,3,0],[2,0,3,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[3,0,3,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,0,4,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,0,3,1],[3,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,0,3,1],[2,4,3,2],[1,0,1,1]],[[0,2,2,0],[2,0,3,1],[2,3,4,2],[1,0,1,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,3],[1,0,1,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[2,0,1,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[1,0,1,2]],[[0,3,2,0],[2,0,3,1],[2,3,3,2],[1,0,2,0]],[[0,2,3,0],[2,0,3,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[3,0,3,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,0,4,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,0,3,1],[3,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,0,3,1],[2,4,3,2],[1,0,2,0]],[[0,2,2,0],[2,0,3,1],[2,3,4,2],[1,0,2,0]],[[0,2,2,0],[2,0,3,1],[2,3,3,3],[1,0,2,0]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[2,0,2,0]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[1,0,3,0]],[[0,3,2,0],[2,0,3,1],[2,3,3,2],[1,1,0,1]],[[0,2,3,0],[2,0,3,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[3,0,3,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,0,4,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,0,3,1],[3,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,0,3,1],[2,4,3,2],[1,1,0,1]],[[0,2,2,0],[2,0,3,1],[2,3,4,2],[1,1,0,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,3],[1,1,0,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[2,1,0,1]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[1,1,0,2]],[[0,3,2,0],[2,0,3,1],[2,3,3,2],[1,1,1,0]],[[0,2,3,0],[2,0,3,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[3,0,3,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,0,4,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,0,3,1],[3,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,0,3,1],[2,4,3,2],[1,1,1,0]],[[0,2,2,0],[2,0,3,1],[2,3,4,2],[1,1,1,0]],[[0,2,2,0],[2,0,3,1],[2,3,3,3],[1,1,1,0]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[2,1,1,0]],[[0,2,2,0],[3,0,3,1],[2,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,0,3,1],[3,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,0,3,1],[2,4,3,2],[1,2,0,0]],[[0,2,2,0],[2,0,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,1,0,2],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[1,1,0,2],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[1,1,0,2],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[1,1,0,2],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[1,1,0,2],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[1,1,0,3],[1,2,3,2],[1,2,2,0]],[[1,2,2,2],[1,1,0,2],[1,2,3,2],[1,2,2,0]],[[1,2,3,1],[1,1,0,2],[1,2,3,2],[1,2,2,0]],[[1,3,2,1],[1,1,0,2],[1,2,3,2],[1,2,2,0]],[[2,2,2,1],[1,1,0,2],[1,2,3,2],[1,2,2,0]],[[1,2,2,1],[1,1,0,2],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[1,1,0,2],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[1,1,0,2],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[1,1,0,3],[1,2,3,2],[1,2,1,1]],[[1,2,2,2],[1,1,0,2],[1,2,3,2],[1,2,1,1]],[[1,2,3,1],[1,1,0,2],[1,2,3,2],[1,2,1,1]],[[1,3,2,1],[1,1,0,2],[1,2,3,2],[1,2,1,1]],[[2,2,2,1],[1,1,0,2],[1,2,3,2],[1,2,1,1]],[[1,2,2,1],[1,1,0,2],[1,2,3,2],[0,2,2,2]],[[1,2,2,1],[1,1,0,2],[1,2,3,2],[0,2,3,1]],[[1,2,2,1],[1,1,0,2],[1,2,3,3],[0,2,2,1]],[[1,2,2,1],[1,1,0,2],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[1,1,0,2],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[1,1,0,2],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[1,1,0,2],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[1,1,0,2],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[1,1,0,2],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[1,1,0,2],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[1,1,0,2],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[1,1,0,2],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[1,1,0,2],[1,2,2,3],[1,2,2,1]],[[1,2,2,1],[1,1,0,3],[1,2,2,2],[1,2,2,1]],[[1,2,2,2],[1,1,0,2],[1,2,2,2],[1,2,2,1]],[[1,2,3,1],[1,1,0,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,3],[0,1,3,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[0,1,3,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[0,1,3,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,2],[0,1,3,2],[1,2,2,2]],[[0,2,2,0],[2,0,3,3],[0,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[0,2,2,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[0,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,2],[0,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,2],[0,2,2,2],[1,2,2,2]],[[0,2,2,0],[2,0,3,2],[0,2,4,1],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[0,2,3,1],[1,3,2,1]],[[0,2,2,0],[2,0,3,2],[0,2,3,1],[1,2,3,1]],[[0,2,2,0],[2,0,3,2],[0,2,3,1],[1,2,2,2]],[[0,2,2,0],[2,0,3,3],[0,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[0,2,4,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[0,2,3,3],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[0,2,3,2],[1,2,1,2]],[[0,2,2,0],[2,0,3,3],[0,2,3,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[0,2,4,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[0,2,3,3],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[0,2,3,2],[1,3,2,0]],[[0,2,2,0],[2,0,3,2],[0,2,3,2],[1,2,3,0]],[[0,2,2,0],[2,0,3,3],[0,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[0,3,2,3],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[0,3,2,2],[1,1,3,1]],[[0,2,2,0],[2,0,3,2],[0,3,2,2],[1,1,2,2]],[[0,2,2,0],[2,0,3,2],[0,3,4,1],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[0,3,3,1],[1,1,3,1]],[[0,2,2,0],[2,0,3,2],[0,3,3,1],[1,1,2,2]],[[0,2,2,0],[2,0,3,3],[0,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,0,3,2],[0,3,4,2],[1,0,2,1]],[[0,2,2,0],[2,0,3,2],[0,3,3,3],[1,0,2,1]],[[0,2,2,0],[2,0,3,2],[0,3,3,2],[1,0,2,2]],[[0,2,2,0],[2,0,3,3],[0,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,2],[0,3,4,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,2],[0,3,3,3],[1,1,1,1]],[[0,2,2,0],[2,0,3,2],[0,3,3,2],[1,1,1,2]],[[0,2,2,0],[2,0,3,3],[0,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,0,3,2],[0,3,4,2],[1,1,2,0]],[[0,2,2,0],[2,0,3,2],[0,3,3,3],[1,1,2,0]],[[0,2,2,0],[2,0,3,2],[0,3,3,2],[1,1,3,0]],[[0,2,2,0],[2,0,3,3],[0,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[0,3,4,2],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[0,3,3,3],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[0,3,3,2],[1,2,0,2]],[[0,2,2,0],[2,0,3,3],[0,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,0,3,2],[0,3,4,2],[1,2,1,0]],[[0,2,2,0],[2,0,3,2],[0,3,3,3],[1,2,1,0]],[[1,3,2,1],[1,1,0,2],[1,2,2,2],[1,2,2,1]],[[2,2,2,1],[1,1,0,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,3],[1,1,3,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,1,3,3],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,1,3,2],[0,2,3,1]],[[0,2,2,0],[2,0,3,2],[1,1,3,2],[0,2,2,2]],[[0,3,2,0],[2,0,3,2],[1,2,1,2],[1,2,2,1]],[[0,2,3,0],[2,0,3,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,4,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,3],[1,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,2,1,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,2,1,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,2,1,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,2],[1,2,1,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,2],[1,2,1,2],[1,2,2,2]],[[0,2,2,0],[2,0,3,3],[1,2,2,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,2,2,3],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,2,2,2],[0,2,3,1]],[[0,2,2,0],[2,0,3,2],[1,2,2,2],[0,2,2,2]],[[0,3,2,0],[2,0,3,2],[1,2,2,2],[1,2,1,1]],[[0,2,3,0],[2,0,3,2],[1,2,2,2],[1,2,1,1]],[[0,2,2,0],[2,0,4,2],[1,2,2,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,3],[1,2,2,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[1,2,2,3],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[1,2,2,2],[1,2,1,2]],[[0,3,2,0],[2,0,3,2],[1,2,2,2],[1,2,2,0]],[[0,2,3,0],[2,0,3,2],[1,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,4,2],[1,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,3],[1,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[1,2,2,3],[1,2,2,0]],[[0,3,2,0],[2,0,3,2],[1,2,3,0],[1,2,2,1]],[[0,2,3,0],[2,0,3,2],[1,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,0,4,2],[1,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,3],[1,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,2,4,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,2,3,0],[2,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,2,3,0],[1,3,2,1]],[[0,2,2,0],[2,0,3,2],[1,2,3,0],[1,2,3,1]],[[0,2,2,0],[2,0,3,2],[1,2,3,0],[1,2,2,2]],[[0,2,2,0],[2,0,3,2],[1,2,4,1],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,2,3,1],[0,2,3,1]],[[0,2,2,0],[2,0,3,2],[1,2,3,1],[0,2,2,2]],[[0,3,2,0],[2,0,3,2],[1,2,3,1],[1,2,1,1]],[[0,2,3,0],[2,0,3,2],[1,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,4,2],[1,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,3,3],[1,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[1,2,4,1],[1,2,1,1]],[[0,3,2,0],[2,0,3,2],[1,2,3,1],[1,2,2,0]],[[0,2,3,0],[2,0,3,2],[1,2,3,1],[1,2,2,0]],[[0,2,2,0],[2,0,4,2],[1,2,3,1],[1,2,2,0]],[[0,2,2,0],[2,0,3,3],[1,2,3,1],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[1,2,4,1],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[1,2,3,1],[2,2,2,0]],[[0,2,2,0],[2,0,3,2],[1,2,3,1],[1,3,2,0]],[[0,2,2,0],[2,0,3,2],[1,2,3,1],[1,2,3,0]],[[0,2,2,0],[2,0,3,3],[1,2,3,2],[0,2,1,1]],[[0,2,2,0],[2,0,3,2],[1,2,4,2],[0,2,1,1]],[[0,2,2,0],[2,0,3,2],[1,2,3,3],[0,2,1,1]],[[0,2,2,0],[2,0,3,2],[1,2,3,2],[0,2,1,2]],[[0,2,2,0],[2,0,3,3],[1,2,3,2],[0,2,2,0]],[[0,2,2,0],[2,0,3,2],[1,2,4,2],[0,2,2,0]],[[0,2,2,0],[2,0,3,2],[1,2,3,3],[0,2,2,0]],[[0,2,2,0],[2,0,3,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,1,0,2],[0,3,3,2],[1,1,2,2]],[[1,2,2,1],[1,1,0,2],[0,3,3,2],[1,1,3,1]],[[1,2,2,1],[1,1,0,2],[0,3,3,3],[1,1,2,1]],[[1,2,2,1],[1,1,0,2],[0,2,3,2],[1,2,2,2]],[[1,2,2,1],[1,1,0,2],[0,2,3,2],[1,2,3,1]],[[1,2,2,1],[1,1,0,2],[0,2,3,2],[1,3,2,1]],[[1,2,2,1],[1,1,0,2],[0,2,3,3],[1,2,2,1]],[[0,3,2,0],[2,0,3,2],[1,3,0,2],[1,2,2,1]],[[0,2,3,0],[2,0,3,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,0,4,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,3],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,4,0,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,0,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,0,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,0,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,0,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,2],[1,3,0,2],[1,2,2,2]],[[0,3,2,0],[2,0,3,2],[1,3,1,2],[1,1,2,1]],[[0,2,3,0],[2,0,3,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,0,4,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,3],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,1,3],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,1,2],[1,1,3,1]],[[0,2,2,0],[2,0,3,2],[1,3,1,2],[1,1,2,2]],[[0,2,2,0],[2,0,3,2],[1,4,2,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,2,0],[2,2,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,2,0],[1,3,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,2,0],[1,2,3,1]],[[0,2,2,0],[2,0,3,2],[1,3,2,0],[1,2,2,2]],[[0,2,2,0],[2,0,3,2],[1,4,2,1],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[1,3,2,1],[2,2,2,0]],[[0,2,2,0],[2,0,3,2],[1,3,2,1],[1,3,2,0]],[[0,2,2,0],[2,0,3,2],[1,3,2,1],[1,2,3,0]],[[0,2,2,0],[2,0,3,3],[1,3,2,2],[0,1,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,2,3],[0,1,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,2,2],[0,1,3,1]],[[0,2,2,0],[2,0,3,2],[1,3,2,2],[0,1,2,2]],[[0,3,2,0],[2,0,3,2],[1,3,2,2],[1,1,1,1]],[[0,2,3,0],[2,0,3,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,0],[2,0,4,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,3],[1,3,2,2],[1,1,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,2,3],[1,1,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,2,2],[1,1,1,2]],[[0,3,2,0],[2,0,3,2],[1,3,2,2],[1,1,2,0]],[[0,2,3,0],[2,0,3,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,0,4,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,0,3,3],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,0,3,2],[1,3,2,3],[1,1,2,0]],[[0,3,2,0],[2,0,3,2],[1,3,2,2],[1,2,0,1]],[[0,2,3,0],[2,0,3,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,0],[2,0,4,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,0],[2,0,3,3],[1,3,2,2],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[1,3,2,3],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[1,3,2,2],[1,2,0,2]],[[0,3,2,0],[2,0,3,2],[1,3,2,2],[1,2,1,0]],[[0,2,3,0],[2,0,3,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,0],[2,0,4,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,0],[2,0,3,3],[1,3,2,2],[1,2,1,0]],[[0,2,2,0],[2,0,3,2],[1,3,2,3],[1,2,1,0]],[[0,3,2,0],[2,0,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,3,0],[2,0,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,0,4,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,0,3,3],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[1,4,3,0],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,4,0],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,0],[1,1,3,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,0],[1,1,2,2]],[[0,3,2,0],[2,0,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,3,0],[2,0,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,0],[2,0,4,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,0],[2,0,3,3],[1,3,3,0],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[1,4,3,0],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,4,0],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,0],[2,2,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,0],[1,3,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,4,1],[0,1,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,1],[0,1,3,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,1],[0,1,2,2]],[[0,3,2,0],[2,0,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,3,0],[2,0,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,0,4,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,0,3,3],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,0,3,2],[1,4,3,1],[1,1,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,4,1],[1,1,1,1]],[[0,3,2,0],[2,0,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,3,0],[2,0,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,0],[2,0,4,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,0],[2,0,3,3],[1,3,3,1],[1,1,2,0]],[[0,2,2,0],[2,0,3,2],[1,4,3,1],[1,1,2,0]],[[0,2,2,0],[2,0,3,2],[1,3,4,1],[1,1,2,0]],[[0,2,2,0],[2,0,3,2],[1,3,3,1],[1,1,3,0]],[[0,3,2,0],[2,0,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,3,0],[2,0,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,0,4,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,0,3,3],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[1,4,3,1],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[1,3,4,1],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,1],[2,2,0,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,1],[1,3,0,1]],[[0,3,2,0],[2,0,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,3,0],[2,0,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,0],[2,0,4,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,0],[2,0,3,3],[1,3,3,1],[1,2,1,0]],[[0,2,2,0],[2,0,3,2],[1,4,3,1],[1,2,1,0]],[[0,2,2,0],[2,0,3,2],[1,3,4,1],[1,2,1,0]],[[0,2,2,0],[2,0,3,2],[1,3,3,1],[2,2,1,0]],[[0,2,2,0],[2,0,3,2],[1,3,3,1],[1,3,1,0]],[[0,2,2,0],[2,0,3,3],[1,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,4,2],[0,0,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,3],[0,0,2,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,2],[0,0,2,2]],[[0,2,2,0],[2,0,3,3],[1,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,4,2],[0,1,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,3],[0,1,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,2],[0,1,1,2]],[[0,2,2,0],[2,0,3,3],[1,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,0,3,2],[1,3,4,2],[0,1,2,0]],[[0,2,2,0],[2,0,3,2],[1,3,3,3],[0,1,2,0]],[[0,2,2,0],[2,0,3,2],[1,3,3,2],[0,1,3,0]],[[0,2,2,0],[2,0,3,3],[1,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,0,3,2],[1,3,4,2],[0,2,0,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,3],[0,2,0,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,2],[0,2,0,2]],[[0,2,2,0],[2,0,3,3],[1,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,0,3,2],[1,3,4,2],[0,2,1,0]],[[0,2,2,0],[2,0,3,2],[1,3,3,3],[0,2,1,0]],[[0,2,2,0],[2,0,3,3],[1,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,4,2],[1,0,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,3],[1,0,1,1]],[[0,2,2,0],[2,0,3,2],[1,3,3,2],[1,0,1,2]],[[0,2,2,0],[2,0,3,3],[1,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,0,3,2],[1,3,4,2],[1,0,2,0]],[[0,2,2,0],[2,0,3,2],[1,3,3,3],[1,0,2,0]],[[0,3,2,0],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,3,0],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[3,0,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,4,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,3],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[3,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,1,1,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,1,1,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,1,1,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,2],[2,1,1,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,2],[2,1,1,2],[1,2,2,2]],[[0,3,2,0],[2,0,3,2],[2,1,2,2],[1,2,1,1]],[[0,2,3,0],[2,0,3,2],[2,1,2,2],[1,2,1,1]],[[0,2,2,0],[2,0,4,2],[2,1,2,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,3],[2,1,2,2],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[2,1,2,3],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[2,1,2,2],[1,2,1,2]],[[0,3,2,0],[2,0,3,2],[2,1,2,2],[1,2,2,0]],[[0,2,3,0],[2,0,3,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,4,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,3],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[2,1,2,3],[1,2,2,0]],[[0,3,2,0],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,3,0],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[3,0,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,0,4,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,3],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[3,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,1,4,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,1,3,0],[2,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,1,3,0],[1,3,2,1]],[[0,2,2,0],[2,0,3,2],[2,1,3,0],[1,2,3,1]],[[0,2,2,0],[2,0,3,2],[2,1,3,0],[1,2,2,2]],[[0,3,2,0],[2,0,3,2],[2,1,3,1],[1,2,1,1]],[[0,2,3,0],[2,0,3,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,4,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,3,3],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[2,1,4,1],[1,2,1,1]],[[0,3,2,0],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,3,0],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,0],[3,0,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,0],[2,0,4,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,0],[2,0,3,3],[2,1,3,1],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[3,1,3,1],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[2,1,4,1],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[2,1,3,1],[2,2,2,0]],[[0,2,2,0],[2,0,3,2],[2,1,3,1],[1,3,2,0]],[[0,2,2,0],[2,0,3,2],[2,1,3,1],[1,2,3,0]],[[0,3,2,0],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,3,0],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,0],[3,0,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,0,4,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,3],[2,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[3,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,0,3],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,0,2],[2,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,0,2],[1,3,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,0,2],[1,2,3,1]],[[0,2,2,0],[2,0,3,2],[2,2,0,2],[1,2,2,2]],[[0,3,2,0],[2,0,3,2],[2,2,1,2],[0,2,2,1]],[[0,2,3,0],[2,0,3,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[2,0,4,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,3],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,1,3],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,1,2],[0,3,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,1,2],[0,2,3,1]],[[0,2,2,0],[2,0,3,2],[2,2,1,2],[0,2,2,2]],[[0,2,2,0],[3,0,3,2],[2,2,2,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[3,2,2,0],[1,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,2,0],[2,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,2,0],[1,3,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,2,0],[1,2,3,1]],[[0,2,2,0],[2,0,3,2],[2,2,2,0],[1,2,2,2]],[[0,2,2,0],[3,0,3,2],[2,2,2,1],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[3,2,2,1],[1,2,2,0]],[[0,2,2,0],[2,0,3,2],[2,2,2,1],[2,2,2,0]],[[0,2,2,0],[2,0,3,2],[2,2,2,1],[1,3,2,0]],[[0,2,2,0],[2,0,3,2],[2,2,2,1],[1,2,3,0]],[[0,3,2,0],[2,0,3,2],[2,2,2,2],[0,2,1,1]],[[0,2,3,0],[2,0,3,2],[2,2,2,2],[0,2,1,1]],[[0,2,2,0],[2,0,4,2],[2,2,2,2],[0,2,1,1]],[[0,2,2,0],[2,0,3,3],[2,2,2,2],[0,2,1,1]],[[0,2,2,0],[2,0,3,2],[2,2,2,3],[0,2,1,1]],[[0,2,2,0],[2,0,3,2],[2,2,2,2],[0,2,1,2]],[[0,3,2,0],[2,0,3,2],[2,2,2,2],[0,2,2,0]],[[0,2,3,0],[2,0,3,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[2,0,4,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[2,0,3,3],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[2,0,3,2],[2,2,2,3],[0,2,2,0]],[[0,3,2,0],[2,0,3,2],[2,2,3,0],[0,2,2,1]],[[0,2,3,0],[2,0,3,2],[2,2,3,0],[0,2,2,1]],[[0,2,2,0],[2,0,4,2],[2,2,3,0],[0,2,2,1]],[[0,2,2,0],[2,0,3,3],[2,2,3,0],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,4,0],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,3,0],[0,3,2,1]],[[0,2,2,0],[2,0,3,2],[2,2,3,0],[0,2,3,1]],[[0,2,2,0],[2,0,3,2],[2,2,3,0],[0,2,2,2]],[[0,2,2,0],[3,0,3,2],[2,2,3,0],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[3,2,3,0],[1,2,1,1]],[[0,2,2,0],[2,0,3,2],[2,2,3,0],[2,2,1,1]],[[0,2,2,0],[2,0,3,2],[2,2,3,0],[1,3,1,1]],[[0,3,2,0],[2,0,3,2],[2,2,3,1],[0,2,1,1]],[[0,2,3,0],[2,0,3,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,0,4,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,0,3,3],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,0,3,2],[2,2,4,1],[0,2,1,1]],[[0,3,2,0],[2,0,3,2],[2,2,3,1],[0,2,2,0]],[[0,2,3,0],[2,0,3,2],[2,2,3,1],[0,2,2,0]],[[0,2,2,0],[2,0,4,2],[2,2,3,1],[0,2,2,0]],[[0,2,2,0],[2,0,3,3],[2,2,3,1],[0,2,2,0]],[[0,2,2,0],[2,0,3,2],[2,2,4,1],[0,2,2,0]],[[0,2,2,0],[2,0,3,2],[2,2,3,1],[0,3,2,0]],[[0,2,2,0],[2,0,3,2],[2,2,3,1],[0,2,3,0]],[[0,2,2,0],[3,0,3,2],[2,2,3,1],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[3,2,3,1],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[2,2,3,1],[2,2,0,1]],[[0,2,2,0],[2,0,3,2],[2,2,3,1],[1,3,0,1]],[[0,2,2,0],[3,0,3,2],[2,2,3,1],[1,2,1,0]],[[0,2,2,0],[2,0,3,2],[3,2,3,1],[1,2,1,0]],[[0,2,2,0],[2,0,3,2],[2,2,3,1],[2,2,1,0]],[[0,2,2,0],[2,0,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[1,0,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,2],[1,0,3,2],[2,3,3,0],[1,1,1,0]],[[1,2,3,1],[1,0,3,2],[2,3,3,0],[1,1,1,0]],[[1,3,2,1],[1,0,3,2],[2,3,3,0],[1,1,1,0]],[[2,2,2,1],[1,0,3,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[1,0,4,2],[2,3,3,0],[1,1,0,1]],[[1,2,2,2],[1,0,3,2],[2,3,3,0],[1,1,0,1]],[[1,2,3,1],[1,0,3,2],[2,3,3,0],[1,1,0,1]],[[1,3,2,1],[1,0,3,2],[2,3,3,0],[1,1,0,1]],[[2,2,2,1],[1,0,3,2],[2,3,3,0],[1,1,0,1]],[[0,3,2,0],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,3,0],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[3,0,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,0,4,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,3],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[3,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,4,0,2],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,0,3],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,0,2],[0,3,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,0,2],[0,2,3,1]],[[0,2,2,0],[2,0,3,2],[2,3,0,2],[0,2,2,2]],[[0,2,2,0],[3,0,3,2],[2,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[3,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[2,4,0,2],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,0,2],[2,1,2,1]],[[0,3,2,0],[2,0,3,2],[2,3,1,2],[0,1,2,1]],[[0,2,3,0],[2,0,3,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,0,4,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,0,3,3],[2,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,1,3],[0,1,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,1,2],[0,1,3,1]],[[0,2,2,0],[2,0,3,2],[2,3,1,2],[0,1,2,2]],[[0,3,2,0],[2,0,3,2],[2,3,1,2],[1,0,2,1]],[[0,2,3,0],[2,0,3,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,0],[2,0,4,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,0],[2,0,3,3],[2,3,1,2],[1,0,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,1,2],[1,0,3,1]],[[0,2,2,0],[2,0,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[1,0,4,2],[2,3,3,0],[1,0,2,0]],[[1,2,2,2],[1,0,3,2],[2,3,3,0],[1,0,2,0]],[[1,2,3,1],[1,0,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,2,0],[3,0,3,2],[2,3,2,0],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[3,3,2,0],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,4,2,0],[0,2,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,0],[0,3,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,0],[0,2,3,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,0],[0,2,2,2]],[[0,2,2,0],[3,0,3,2],[2,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[3,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[2,4,2,0],[1,1,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,0],[2,1,2,1]],[[0,2,2,0],[3,0,3,2],[2,3,2,1],[0,2,2,0]],[[0,2,2,0],[2,0,3,2],[3,3,2,1],[0,2,2,0]],[[0,2,2,0],[2,0,3,2],[2,4,2,1],[0,2,2,0]],[[0,2,2,0],[2,0,3,2],[2,3,2,1],[0,3,2,0]],[[0,2,2,0],[2,0,3,2],[2,3,2,1],[0,2,3,0]],[[0,2,2,0],[3,0,3,2],[2,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,0,3,2],[3,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,0,3,2],[2,4,2,1],[1,1,2,0]],[[0,2,2,0],[2,0,3,2],[2,3,2,1],[2,1,2,0]],[[1,3,2,1],[1,0,3,2],[2,3,3,0],[1,0,2,0]],[[2,2,2,1],[1,0,3,2],[2,3,3,0],[1,0,2,0]],[[1,2,2,1],[1,0,4,2],[2,3,3,0],[1,0,1,1]],[[1,2,2,2],[1,0,3,2],[2,3,3,0],[1,0,1,1]],[[1,2,3,1],[1,0,3,2],[2,3,3,0],[1,0,1,1]],[[1,3,2,1],[1,0,3,2],[2,3,3,0],[1,0,1,1]],[[2,2,2,1],[1,0,3,2],[2,3,3,0],[1,0,1,1]],[[0,3,2,0],[2,0,3,2],[2,3,2,2],[0,0,2,1]],[[0,2,3,0],[2,0,3,2],[2,3,2,2],[0,0,2,1]],[[0,2,2,0],[2,0,4,2],[2,3,2,2],[0,0,2,1]],[[0,2,2,0],[2,0,3,3],[2,3,2,2],[0,0,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,3],[0,0,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,2],[0,0,2,2]],[[0,3,2,0],[2,0,3,2],[2,3,2,2],[0,1,1,1]],[[0,2,3,0],[2,0,3,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,0,4,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,0,3,3],[2,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,3],[0,1,1,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,2],[0,1,1,2]],[[0,3,2,0],[2,0,3,2],[2,3,2,2],[0,1,2,0]],[[0,2,3,0],[2,0,3,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,0,4,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,0,3,3],[2,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,0,3,2],[2,3,2,3],[0,1,2,0]],[[0,3,2,0],[2,0,3,2],[2,3,2,2],[0,2,0,1]],[[0,2,3,0],[2,0,3,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,0,4,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,0,3,3],[2,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,3],[0,2,0,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,2],[0,2,0,2]],[[0,3,2,0],[2,0,3,2],[2,3,2,2],[0,2,1,0]],[[0,2,3,0],[2,0,3,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,0,4,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,0,3,3],[2,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,0,3,2],[2,3,2,3],[0,2,1,0]],[[0,3,2,0],[2,0,3,2],[2,3,2,2],[1,0,1,1]],[[0,2,3,0],[2,0,3,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,0,4,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,0,3,3],[2,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,3],[1,0,1,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,2],[1,0,1,2]],[[0,3,2,0],[2,0,3,2],[2,3,2,2],[1,0,2,0]],[[0,2,3,0],[2,0,3,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,0],[2,0,4,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,0],[2,0,3,3],[2,3,2,2],[1,0,2,0]],[[0,2,2,0],[2,0,3,2],[2,3,2,3],[1,0,2,0]],[[0,3,2,0],[2,0,3,2],[2,3,2,2],[1,1,0,1]],[[0,2,3,0],[2,0,3,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,0],[2,0,4,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,0],[2,0,3,3],[2,3,2,2],[1,1,0,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,3],[1,1,0,1]],[[0,2,2,0],[2,0,3,2],[2,3,2,2],[1,1,0,2]],[[0,3,2,0],[2,0,3,2],[2,3,2,2],[1,1,1,0]],[[0,2,3,0],[2,0,3,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,0],[2,0,4,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,0],[2,0,3,3],[2,3,2,2],[1,1,1,0]],[[0,2,2,0],[2,0,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[1,0,4,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,2],[1,0,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,3,1],[1,0,3,2],[2,3,3,0],[0,2,1,0]],[[1,3,2,1],[1,0,3,2],[2,3,3,0],[0,2,1,0]],[[2,2,2,1],[1,0,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[1,0,4,2],[2,3,3,0],[0,2,0,1]],[[1,2,2,2],[1,0,3,2],[2,3,3,0],[0,2,0,1]],[[1,2,3,1],[1,0,3,2],[2,3,3,0],[0,2,0,1]],[[1,3,2,1],[1,0,3,2],[2,3,3,0],[0,2,0,1]],[[2,2,2,1],[1,0,3,2],[2,3,3,0],[0,2,0,1]],[[1,2,2,1],[1,0,4,2],[2,3,3,0],[0,1,2,0]],[[1,2,2,2],[1,0,3,2],[2,3,3,0],[0,1,2,0]],[[1,2,3,1],[1,0,3,2],[2,3,3,0],[0,1,2,0]],[[1,3,2,1],[1,0,3,2],[2,3,3,0],[0,1,2,0]],[[2,2,2,1],[1,0,3,2],[2,3,3,0],[0,1,2,0]],[[1,2,2,1],[1,0,4,2],[2,3,3,0],[0,1,1,1]],[[1,2,2,2],[1,0,3,2],[2,3,3,0],[0,1,1,1]],[[1,2,3,1],[1,0,3,2],[2,3,3,0],[0,1,1,1]],[[1,3,2,1],[1,0,3,2],[2,3,3,0],[0,1,1,1]],[[2,2,2,1],[1,0,3,2],[2,3,3,0],[0,1,1,1]],[[0,3,2,0],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,3,0],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[3,0,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,0,4,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,0,3,3],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,0,3,2],[3,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,0,3,2],[2,4,3,0],[0,1,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,4,0],[0,1,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,0],[0,1,3,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,0],[0,1,2,2]],[[0,3,2,0],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,3,0],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[3,0,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,0,4,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,0,3,3],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,0,3,2],[3,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,0,3,2],[2,4,3,0],[0,2,1,1]],[[0,2,2,0],[2,0,3,2],[2,3,4,0],[0,2,1,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,0],[0,3,1,1]],[[0,3,2,0],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,3,0],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[3,0,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,0,4,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,0,3,3],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,0,3,2],[3,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,0,3,2],[2,4,3,0],[1,0,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,4,0],[1,0,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,0],[2,0,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,0],[1,0,3,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,0],[1,0,2,2]],[[0,3,2,0],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,3,0],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,0],[3,0,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,0,4,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,0,3,3],[2,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,0,3,2],[3,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,0,3,2],[2,4,3,0],[1,1,1,1]],[[0,2,2,0],[2,0,3,2],[2,3,4,0],[1,1,1,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,0],[2,1,1,1]],[[0,2,2,0],[3,0,3,2],[2,3,3,0],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[3,3,3,0],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[2,4,3,0],[1,2,0,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,0],[2,2,0,1]],[[0,3,2,0],[2,0,3,2],[2,3,3,1],[0,0,2,1]],[[0,2,3,0],[2,0,3,2],[2,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,0,4,2],[2,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,0,3,3],[2,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,0,3,2],[2,3,4,1],[0,0,2,1]],[[0,3,2,0],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,3,0],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,0],[3,0,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,0,4,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,0,3,3],[2,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,0,3,2],[3,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,0,3,2],[2,4,3,1],[0,1,1,1]],[[0,2,2,0],[2,0,3,2],[2,3,4,1],[0,1,1,1]],[[0,3,2,0],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,3,0],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[3,0,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,0,4,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,0,3,3],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,0,3,2],[3,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,0,3,2],[2,4,3,1],[0,1,2,0]],[[0,2,2,0],[2,0,3,2],[2,3,4,1],[0,1,2,0]],[[0,2,2,0],[2,0,3,2],[2,3,3,1],[0,1,3,0]],[[0,3,2,0],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,3,0],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[3,0,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,0,4,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,0,3,3],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,0,3,2],[3,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,0,3,2],[2,4,3,1],[0,2,0,1]],[[0,2,2,0],[2,0,3,2],[2,3,4,1],[0,2,0,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,1],[0,3,0,1]],[[0,3,2,0],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,3,0],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[3,0,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,0,4,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,0,3,3],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,0,3,2],[3,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,0,3,2],[2,4,3,1],[0,2,1,0]],[[0,2,2,0],[2,0,3,2],[2,3,4,1],[0,2,1,0]],[[0,2,2,0],[2,0,3,2],[2,3,3,1],[0,3,1,0]],[[0,3,2,0],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,3,0],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[3,0,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,0,4,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,0,3,3],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,0,3,2],[3,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,0,3,2],[2,4,3,1],[1,0,1,1]],[[0,2,2,0],[2,0,3,2],[2,3,4,1],[1,0,1,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,1],[2,0,1,1]],[[0,3,2,0],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,3,0],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,0],[3,0,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,0,4,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,0,3,3],[2,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,0,3,2],[3,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,0,3,2],[2,4,3,1],[1,0,2,0]],[[0,2,2,0],[2,0,3,2],[2,3,4,1],[1,0,2,0]],[[0,2,2,0],[2,0,3,2],[2,3,3,1],[2,0,2,0]],[[0,2,2,0],[2,0,3,2],[2,3,3,1],[1,0,3,0]],[[0,3,2,0],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,3,0],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,0],[3,0,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,0,4,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,0,3,3],[2,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,0,3,2],[3,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,0,3,2],[2,4,3,1],[1,1,0,1]],[[0,2,2,0],[2,0,3,2],[2,3,4,1],[1,1,0,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,1],[2,1,0,1]],[[0,3,2,0],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,3,0],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,0],[3,0,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,0,4,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,0,3,3],[2,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,0,3,2],[3,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,0,3,2],[2,4,3,1],[1,1,1,0]],[[0,2,2,0],[2,0,3,2],[2,3,4,1],[1,1,1,0]],[[0,2,2,0],[2,0,3,2],[2,3,3,1],[2,1,1,0]],[[0,2,2,0],[3,0,3,2],[2,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,0,3,2],[3,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,0,3,2],[2,4,3,1],[1,2,0,0]],[[0,2,2,0],[2,0,3,2],[2,3,3,1],[2,2,0,0]],[[0,3,2,0],[2,0,3,2],[2,3,3,2],[0,1,0,1]],[[0,2,3,0],[2,0,3,2],[2,3,3,2],[0,1,0,1]],[[0,2,2,0],[2,0,4,2],[2,3,3,2],[0,1,0,1]],[[0,2,2,0],[2,0,3,3],[2,3,3,2],[0,1,0,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,3],[0,1,0,1]],[[0,3,2,0],[2,0,3,2],[2,3,3,2],[1,0,0,1]],[[0,2,3,0],[2,0,3,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[2,0,4,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[2,0,3,3],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[2,0,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[1,0,4,2],[2,2,3,0],[0,2,2,0]],[[1,2,2,2],[1,0,3,2],[2,2,3,0],[0,2,2,0]],[[1,2,3,1],[1,0,3,2],[2,2,3,0],[0,2,2,0]],[[1,3,2,1],[1,0,3,2],[2,2,3,0],[0,2,2,0]],[[2,2,2,1],[1,0,3,2],[2,2,3,0],[0,2,2,0]],[[0,2,2,0],[2,1,0,0],[3,3,3,2],[1,2,2,1]],[[0,2,2,0],[2,1,0,0],[2,3,3,2],[2,2,2,1]],[[0,2,2,0],[2,1,0,0],[2,3,3,2],[1,3,2,1]],[[0,2,2,0],[2,1,0,0],[2,3,3,2],[1,2,3,1]],[[0,2,2,0],[2,1,0,0],[2,3,3,2],[1,2,2,2]],[[0,2,2,0],[2,1,0,1],[3,3,3,1],[1,2,2,1]],[[0,2,2,0],[2,1,0,1],[2,3,3,1],[2,2,2,1]],[[0,2,2,0],[2,1,0,1],[2,3,3,1],[1,3,2,1]],[[0,2,2,0],[2,1,0,1],[2,3,3,1],[1,2,3,1]],[[0,2,2,0],[2,1,0,1],[2,3,3,1],[1,2,2,2]],[[0,2,2,0],[2,1,0,1],[3,3,3,2],[1,2,2,0]],[[0,2,2,0],[2,1,0,1],[2,3,3,2],[2,2,2,0]],[[0,2,2,0],[2,1,0,1],[2,3,3,2],[1,3,2,0]],[[0,2,2,0],[2,1,0,1],[2,3,3,2],[1,2,3,0]],[[0,2,2,0],[2,1,0,2],[3,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,0,2],[2,3,1,3],[1,2,2,1]],[[0,2,2,0],[2,1,0,2],[2,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,1,0,2],[2,3,1,2],[1,3,2,1]],[[0,2,2,0],[2,1,0,2],[2,3,1,2],[1,2,3,1]],[[0,2,2,0],[2,1,0,2],[2,3,1,2],[1,2,2,2]],[[0,2,2,0],[2,1,0,2],[3,3,2,1],[1,2,2,1]],[[0,2,2,0],[2,1,0,2],[2,3,2,1],[2,2,2,1]],[[0,2,2,0],[2,1,0,2],[2,3,2,1],[1,3,2,1]],[[0,2,2,0],[2,1,0,2],[2,3,2,1],[1,2,3,1]],[[0,2,2,0],[2,1,0,2],[2,3,2,1],[1,2,2,2]],[[0,2,2,0],[2,1,0,2],[3,3,2,2],[1,2,2,0]],[[0,2,2,0],[2,1,0,2],[2,3,2,2],[2,2,2,0]],[[0,2,2,0],[2,1,0,2],[2,3,2,2],[1,3,2,0]],[[0,2,2,0],[2,1,0,2],[2,3,2,2],[1,2,3,0]],[[0,2,2,0],[2,1,0,2],[3,3,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,0,2],[2,3,3,1],[2,2,1,1]],[[0,2,2,0],[2,1,0,2],[2,3,3,1],[1,3,1,1]],[[0,2,2,0],[2,1,0,2],[3,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,1,0,2],[2,3,3,2],[2,2,0,1]],[[0,2,2,0],[2,1,0,2],[2,3,3,2],[1,3,0,1]],[[0,2,2,0],[2,1,0,2],[3,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,1,0,2],[2,3,3,2],[2,2,1,0]],[[0,2,2,0],[2,1,0,2],[2,3,3,2],[1,3,1,0]],[[0,2,2,0],[2,1,1,0],[3,3,2,2],[1,2,2,1]],[[0,2,2,0],[2,1,1,0],[2,3,2,2],[2,2,2,1]],[[0,2,2,0],[2,1,1,0],[2,3,2,2],[1,3,2,1]],[[0,2,2,0],[2,1,1,0],[2,3,2,2],[1,2,3,1]],[[0,2,2,0],[2,1,1,0],[2,3,2,2],[1,2,2,2]],[[0,2,2,0],[2,1,1,0],[3,3,3,2],[1,2,1,1]],[[0,2,2,0],[2,1,1,0],[2,3,3,2],[2,2,1,1]],[[0,2,2,0],[2,1,1,0],[2,3,3,2],[1,3,1,1]],[[0,2,2,0],[2,1,1,1],[3,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,1,1],[2,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,1,1,1],[2,3,1,2],[1,3,2,1]],[[0,2,2,0],[2,1,1,1],[2,3,1,2],[1,2,3,1]],[[0,2,2,0],[2,1,1,1],[2,3,1,2],[1,2,2,2]],[[0,2,2,0],[2,1,1,1],[3,3,2,1],[1,2,2,1]],[[0,2,2,0],[2,1,1,1],[2,3,2,1],[2,2,2,1]],[[0,2,2,0],[2,1,1,1],[2,3,2,1],[1,3,2,1]],[[0,2,2,0],[2,1,1,1],[2,3,2,1],[1,2,3,1]],[[0,2,2,0],[2,1,1,1],[2,3,2,1],[1,2,2,2]],[[0,2,2,0],[2,1,1,1],[3,3,2,2],[1,2,2,0]],[[0,2,2,0],[2,1,1,1],[2,3,2,2],[2,2,2,0]],[[0,2,2,0],[2,1,1,1],[2,3,2,2],[1,3,2,0]],[[0,2,2,0],[2,1,1,1],[2,3,2,2],[1,2,3,0]],[[0,2,2,0],[2,1,1,1],[3,3,3,0],[1,2,2,1]],[[0,2,2,0],[2,1,1,1],[2,3,3,0],[2,2,2,1]],[[0,2,2,0],[2,1,1,1],[2,3,3,0],[1,3,2,1]],[[0,2,2,0],[2,1,1,1],[2,3,3,0],[1,2,3,1]],[[0,2,2,0],[2,1,1,1],[3,3,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,1,1],[2,3,3,1],[2,2,1,1]],[[0,2,2,0],[2,1,1,1],[2,3,3,1],[1,3,1,1]],[[0,2,2,0],[2,1,1,1],[3,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,1,1,1],[2,3,3,2],[2,2,0,1]],[[0,2,2,0],[2,1,1,1],[2,3,3,2],[1,3,0,1]],[[0,2,2,0],[2,1,1,1],[3,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,1,1,1],[2,3,3,2],[2,2,1,0]],[[0,2,2,0],[2,1,1,1],[2,3,3,2],[1,3,1,0]],[[0,2,2,0],[2,1,1,2],[0,2,3,3],[1,2,2,1]],[[0,2,2,0],[2,1,1,2],[0,2,3,2],[1,3,2,1]],[[0,2,2,0],[2,1,1,2],[0,2,3,2],[1,2,3,1]],[[0,2,2,0],[2,1,1,2],[0,2,3,2],[1,2,2,2]],[[0,2,2,0],[2,1,1,2],[0,3,3,3],[1,1,2,1]],[[0,2,2,0],[2,1,1,2],[0,3,3,2],[1,1,3,1]],[[0,2,2,0],[2,1,1,2],[0,3,3,2],[1,1,2,2]],[[0,2,2,0],[2,1,1,2],[1,2,3,3],[0,2,2,1]],[[0,2,2,0],[2,1,1,2],[1,2,3,2],[0,2,3,1]],[[0,2,2,0],[2,1,1,2],[1,2,3,2],[0,2,2,2]],[[0,2,2,0],[2,1,1,2],[1,3,3,3],[0,1,2,1]],[[0,2,2,0],[2,1,1,2],[1,3,3,2],[0,1,3,1]],[[0,2,2,0],[2,1,1,2],[1,3,3,2],[0,1,2,2]],[[0,2,2,0],[2,1,1,2],[3,3,2,0],[1,2,2,1]],[[0,2,2,0],[2,1,1,2],[2,3,2,0],[2,2,2,1]],[[0,2,2,0],[2,1,1,2],[2,3,2,0],[1,3,2,1]],[[0,2,2,0],[2,1,1,2],[2,3,2,0],[1,2,3,1]],[[0,2,2,0],[2,1,1,2],[3,3,2,1],[1,2,2,0]],[[0,2,2,0],[2,1,1,2],[2,3,2,1],[2,2,2,0]],[[0,2,2,0],[2,1,1,2],[2,3,2,1],[1,3,2,0]],[[0,2,2,0],[2,1,1,2],[3,3,3,0],[1,2,1,1]],[[0,2,2,0],[2,1,1,2],[2,3,3,0],[2,2,1,1]],[[0,2,2,0],[2,1,1,2],[2,3,3,0],[1,3,1,1]],[[0,2,2,0],[2,1,1,2],[3,3,3,1],[1,2,1,0]],[[0,2,2,0],[2,1,1,2],[2,3,3,1],[2,2,1,0]],[[0,2,2,0],[2,1,1,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,0,4,2],[2,1,3,0],[1,2,2,0]],[[1,2,2,2],[1,0,3,2],[2,1,3,0],[1,2,2,0]],[[1,2,3,1],[1,0,3,2],[2,1,3,0],[1,2,2,0]],[[1,3,2,1],[1,0,3,2],[2,1,3,0],[1,2,2,0]],[[2,2,2,1],[1,0,3,2],[2,1,3,0],[1,2,2,0]],[[0,2,2,0],[2,1,2,3],[0,1,3,2],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,1,3,3],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,1,3,2],[1,2,3,1]],[[0,2,2,0],[2,1,2,2],[0,1,3,2],[1,2,2,2]],[[0,2,2,0],[2,1,2,3],[0,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,2,2,3],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,2,2,2],[2,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,1,2,2],[0,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,1,2,2],[0,2,2,2],[1,2,2,2]],[[0,2,2,0],[2,1,2,2],[0,2,4,1],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,2,3,1],[2,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,2,3,1],[1,3,2,1]],[[0,2,2,0],[2,1,2,2],[0,2,3,1],[1,2,3,1]],[[0,2,2,0],[2,1,2,2],[0,2,3,1],[1,2,2,2]],[[0,2,2,0],[2,1,2,3],[0,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,1,2,2],[0,2,4,2],[1,2,1,1]],[[0,2,2,0],[2,1,2,2],[0,2,3,3],[1,2,1,1]],[[0,2,2,0],[2,1,2,2],[0,2,3,2],[1,2,1,2]],[[0,2,2,0],[2,1,2,3],[0,2,3,2],[1,2,2,0]],[[0,2,2,0],[2,1,2,2],[0,2,4,2],[1,2,2,0]],[[0,2,2,0],[2,1,2,2],[0,2,3,3],[1,2,2,0]],[[0,2,2,0],[2,1,2,2],[0,2,3,2],[2,2,2,0]],[[0,2,2,0],[2,1,2,2],[0,2,3,2],[1,3,2,0]],[[0,2,2,0],[2,1,2,2],[0,2,3,2],[1,2,3,0]],[[0,2,2,0],[2,1,2,3],[0,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,4,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,1,3],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,1,2],[1,3,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,1,2],[1,2,3,1]],[[0,2,2,0],[2,1,2,2],[0,3,1,2],[1,2,2,2]],[[0,2,2,0],[2,1,2,2],[0,4,2,1],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,2,1],[2,2,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,2,1],[1,3,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,2,1],[1,2,3,1]],[[0,2,2,0],[2,1,2,2],[0,3,2,1],[1,2,2,2]],[[0,2,2,0],[2,1,2,3],[0,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,2,3],[1,1,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,2,2],[1,1,3,1]],[[0,2,2,0],[2,1,2,2],[0,3,2,2],[1,1,2,2]],[[0,2,2,0],[2,1,2,2],[0,4,2,2],[1,2,2,0]],[[0,2,2,0],[2,1,2,2],[0,3,2,2],[2,2,2,0]],[[0,2,2,0],[2,1,2,2],[0,3,2,2],[1,3,2,0]],[[0,2,2,0],[2,1,2,2],[0,3,2,2],[1,2,3,0]],[[0,2,2,0],[2,1,2,2],[0,4,3,1],[1,1,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,4,1],[1,1,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,1],[1,1,3,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,1],[1,1,2,2]],[[0,2,2,0],[2,1,2,2],[0,4,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,2,2],[0,3,4,1],[1,2,1,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,1],[2,2,1,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,1],[1,3,1,1]],[[0,2,2,0],[2,1,2,3],[0,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,4,2],[1,0,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,3],[1,0,2,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,2],[1,0,2,2]],[[0,2,2,0],[2,1,2,3],[0,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,1,2,2],[0,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,1,2,2],[0,3,4,2],[1,1,1,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,3],[1,1,1,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,2],[1,1,1,2]],[[0,2,2,0],[2,1,2,3],[0,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,1,2,2],[0,4,3,2],[1,1,2,0]],[[0,2,2,0],[2,1,2,2],[0,3,4,2],[1,1,2,0]],[[0,2,2,0],[2,1,2,2],[0,3,3,3],[1,1,2,0]],[[0,2,2,0],[2,1,2,2],[0,3,3,2],[1,1,3,0]],[[0,2,2,0],[2,1,2,3],[0,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,1,2,2],[0,4,3,2],[1,2,0,1]],[[0,2,2,0],[2,1,2,2],[0,3,4,2],[1,2,0,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,3],[1,2,0,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,2],[2,2,0,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,2],[1,3,0,1]],[[0,2,2,0],[2,1,2,2],[0,3,3,2],[1,2,0,2]],[[0,2,2,0],[2,1,2,3],[0,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,1,2,2],[0,4,3,2],[1,2,1,0]],[[0,2,2,0],[2,1,2,2],[0,3,4,2],[1,2,1,0]],[[0,2,2,0],[2,1,2,2],[0,3,3,3],[1,2,1,0]],[[0,2,2,0],[2,1,2,2],[0,3,3,2],[2,2,1,0]],[[0,2,2,0],[2,1,2,2],[0,3,3,2],[1,3,1,0]],[[0,2,2,0],[2,1,2,3],[1,1,3,2],[0,2,2,1]],[[0,2,2,0],[2,1,2,2],[1,1,3,3],[0,2,2,1]],[[0,2,2,0],[2,1,2,2],[1,1,3,2],[0,2,3,1]],[[0,2,2,0],[2,1,2,2],[1,1,3,2],[0,2,2,2]],[[0,2,2,0],[2,1,2,3],[1,2,2,2],[0,2,2,1]],[[0,2,2,0],[2,1,2,2],[1,2,2,3],[0,2,2,1]],[[0,2,2,0],[2,1,2,2],[1,2,2,2],[0,3,2,1]],[[0,2,2,0],[2,1,2,2],[1,2,2,2],[0,2,3,1]],[[0,2,2,0],[2,1,2,2],[1,2,2,2],[0,2,2,2]],[[0,2,2,0],[2,1,2,2],[1,2,4,1],[0,2,2,1]],[[0,2,2,0],[2,1,2,2],[1,2,3,1],[0,3,2,1]],[[0,2,2,0],[2,1,2,2],[1,2,3,1],[0,2,3,1]],[[0,2,2,0],[2,1,2,2],[1,2,3,1],[0,2,2,2]],[[0,2,2,0],[2,1,2,3],[1,2,3,2],[0,2,1,1]],[[0,2,2,0],[2,1,2,2],[1,2,4,2],[0,2,1,1]],[[0,2,2,0],[2,1,2,2],[1,2,3,3],[0,2,1,1]],[[0,2,2,0],[2,1,2,2],[1,2,3,2],[0,2,1,2]],[[0,2,2,0],[2,1,2,3],[1,2,3,2],[0,2,2,0]],[[0,2,2,0],[2,1,2,2],[1,2,4,2],[0,2,2,0]],[[0,2,2,0],[2,1,2,2],[1,2,3,3],[0,2,2,0]],[[0,2,2,0],[2,1,2,2],[1,2,3,2],[0,3,2,0]],[[0,2,2,0],[2,1,2,2],[1,2,3,2],[0,2,3,0]],[[0,2,2,0],[2,1,2,3],[1,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,1,2,2],[1,4,1,2],[0,2,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,1,3],[0,2,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,1,2],[0,3,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,1,2],[0,2,3,1]],[[0,2,2,0],[2,1,2,2],[1,3,1,2],[0,2,2,2]],[[0,2,2,0],[2,1,2,2],[1,4,2,1],[0,2,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,2,1],[0,3,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,2,1],[0,2,3,1]],[[0,2,2,0],[2,1,2,2],[1,3,2,1],[0,2,2,2]],[[0,2,2,0],[2,1,2,3],[1,3,2,2],[0,1,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,2,3],[0,1,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,2,2],[0,1,3,1]],[[0,2,2,0],[2,1,2,2],[1,3,2,2],[0,1,2,2]],[[0,2,2,0],[2,1,2,2],[1,4,2,2],[0,2,2,0]],[[0,2,2,0],[2,1,2,2],[1,3,2,2],[0,3,2,0]],[[0,2,2,0],[2,1,2,2],[1,3,2,2],[0,2,3,0]],[[0,2,2,0],[2,1,2,3],[1,3,2,2],[1,0,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,2,3],[1,0,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,2,2],[1,0,3,1]],[[0,2,2,0],[2,1,2,2],[1,3,2,2],[1,0,2,2]],[[0,2,2,0],[2,1,2,2],[1,4,3,1],[0,1,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,4,1],[0,1,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,1],[0,1,3,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,1],[0,1,2,2]],[[0,2,2,0],[2,1,2,2],[1,4,3,1],[0,2,1,1]],[[0,2,2,0],[2,1,2,2],[1,3,4,1],[0,2,1,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,1],[0,3,1,1]],[[0,2,2,0],[2,1,2,2],[1,4,3,1],[1,0,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,4,1],[1,0,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,1],[1,0,3,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,1],[1,0,3,3],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[1,0,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,1,2,3],[1,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,4,2],[0,0,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,3],[0,0,2,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,2],[0,0,2,2]],[[0,2,2,0],[2,1,2,3],[1,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,1,2,2],[1,4,3,2],[0,1,1,1]],[[0,2,2,0],[2,1,2,2],[1,3,4,2],[0,1,1,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,3],[0,1,1,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,2],[0,1,1,2]],[[0,2,2,0],[2,1,2,3],[1,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,1,2,2],[1,4,3,2],[0,1,2,0]],[[0,2,2,0],[2,1,2,2],[1,3,4,2],[0,1,2,0]],[[0,2,2,0],[2,1,2,2],[1,3,3,3],[0,1,2,0]],[[0,2,2,0],[2,1,2,2],[1,3,3,2],[0,1,3,0]],[[0,2,2,0],[2,1,2,3],[1,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,1,2,2],[1,4,3,2],[0,2,0,1]],[[0,2,2,0],[2,1,2,2],[1,3,4,2],[0,2,0,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,3],[0,2,0,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,2],[0,3,0,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,2],[0,2,0,2]],[[0,2,2,0],[2,1,2,3],[1,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,1,2,2],[1,4,3,2],[0,2,1,0]],[[0,2,2,0],[2,1,2,2],[1,3,4,2],[0,2,1,0]],[[0,2,2,0],[2,1,2,2],[1,3,3,3],[0,2,1,0]],[[0,2,2,0],[2,1,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,3,1],[1,0,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[1,0,3,3],[2,0,3,1],[1,2,1,1]],[[1,2,2,2],[1,0,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[1,0,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[1,0,3,3],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[1,0,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[1,0,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,1,2,3],[1,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,1,2,2],[1,4,3,2],[1,0,1,1]],[[0,2,2,0],[2,1,2,2],[1,3,4,2],[1,0,1,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,3],[1,0,1,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,2],[1,0,1,2]],[[0,2,2,0],[2,1,2,3],[1,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,1,2,2],[1,4,3,2],[1,0,2,0]],[[0,2,2,0],[2,1,2,2],[1,3,4,2],[1,0,2,0]],[[0,2,2,0],[2,1,2,2],[1,3,3,3],[1,0,2,0]],[[0,2,2,0],[2,1,2,2],[1,3,3,2],[1,0,3,0]],[[0,2,2,0],[2,1,2,3],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,1,2,2],[1,4,3,2],[1,1,0,1]],[[0,2,2,0],[2,1,2,2],[1,3,4,2],[1,1,0,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,3],[1,1,0,1]],[[0,2,2,0],[2,1,2,2],[1,3,3,2],[1,1,0,2]],[[0,2,2,0],[2,1,2,3],[1,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,1,2,2],[1,4,3,2],[1,1,1,0]],[[0,2,2,0],[2,1,2,2],[1,3,4,2],[1,1,1,0]],[[0,2,2,0],[2,1,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,0,3,2],[2,0,2,3],[1,2,2,0]],[[1,2,2,1],[1,0,3,3],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[1,0,3,2],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[1,0,3,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[1,0,3,2],[2,0,2,2],[1,2,1,2]],[[1,2,2,1],[1,0,3,2],[2,0,2,3],[1,2,1,1]],[[1,2,2,1],[1,0,3,3],[2,0,2,2],[1,2,1,1]],[[1,2,2,2],[1,0,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,3,1],[1,0,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[1,0,3,2],[2,0,1,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,2],[2,0,1,2],[1,2,3,1]],[[1,2,2,1],[1,0,3,2],[2,0,1,3],[1,2,2,1]],[[1,2,2,1],[1,0,3,3],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[1,0,3,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[1,0,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[3,1,2,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,1,2,3],[2,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[3,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[2,0,2,3],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[2,0,2,2],[2,2,2,1]],[[0,2,2,0],[2,1,2,2],[2,0,2,2],[1,3,2,1]],[[0,2,2,0],[2,1,2,2],[2,0,2,2],[1,2,3,1]],[[0,2,2,0],[2,1,2,2],[2,0,2,2],[1,2,2,2]],[[0,2,2,0],[3,1,2,2],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[3,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[2,0,4,1],[1,2,2,1]],[[0,2,2,0],[2,1,2,2],[2,0,3,1],[2,2,2,1]],[[0,2,2,0],[2,1,2,2],[2,0,3,1],[1,3,2,1]],[[0,2,2,0],[2,1,2,2],[2,0,3,1],[1,2,3,1]],[[0,2,2,0],[2,1,2,2],[2,0,3,1],[1,2,2,2]],[[0,2,2,0],[2,1,2,3],[2,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,1,2,2],[2,0,4,2],[1,2,1,1]],[[0,2,2,0],[2,1,2,2],[2,0,3,3],[1,2,1,1]],[[0,2,2,0],[2,1,2,2],[2,0,3,2],[1,2,1,2]],[[0,2,2,0],[3,1,2,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,1,2,3],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,1,2,2],[3,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,1,2,2],[2,0,4,2],[1,2,2,0]],[[0,2,2,0],[2,1,2,2],[2,0,3,3],[1,2,2,0]],[[0,2,2,0],[2,1,2,2],[2,0,3,2],[2,2,2,0]],[[0,2,2,0],[2,1,2,2],[2,0,3,2],[1,3,2,0]],[[0,2,2,0],[2,1,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[1,0,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,1],[1,0,3,3],[1,3,3,2],[1,0,0,1]],[[1,2,2,2],[1,0,3,2],[1,3,3,2],[1,0,0,1]],[[1,2,3,1],[1,0,3,2],[1,3,3,2],[1,0,0,1]],[[1,2,2,1],[1,0,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,0,3,3],[1,3,3,2],[0,1,0,1]],[[1,2,2,2],[1,0,3,2],[1,3,3,2],[0,1,0,1]],[[1,2,3,1],[1,0,3,2],[1,3,3,2],[0,1,0,1]],[[1,2,2,1],[1,0,3,3],[1,3,3,1],[1,1,1,0]],[[1,2,2,2],[1,0,3,2],[1,3,3,1],[1,1,1,0]],[[1,2,3,1],[1,0,3,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,1],[1,0,3,3],[1,3,3,1],[1,1,0,1]],[[1,2,2,2],[1,0,3,2],[1,3,3,1],[1,1,0,1]],[[1,2,3,1],[1,0,3,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,1],[1,0,3,3],[1,3,3,1],[1,0,2,0]],[[1,2,2,2],[1,0,3,2],[1,3,3,1],[1,0,2,0]],[[1,2,3,1],[1,0,3,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,1],[1,0,3,3],[1,3,3,1],[1,0,1,1]],[[1,2,2,2],[1,0,3,2],[1,3,3,1],[1,0,1,1]],[[1,2,3,1],[1,0,3,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,1],[1,0,3,3],[1,3,3,1],[0,2,1,0]],[[1,2,2,2],[1,0,3,2],[1,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,0,3,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,0,3,3],[1,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,0,3,2],[1,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,0,3,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,0,3,3],[1,3,3,1],[0,1,2,0]],[[1,2,2,2],[1,0,3,2],[1,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,0,3,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,0,3,3],[1,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,0,3,2],[1,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,0,3,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,0,3,3],[1,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,0,3,2],[1,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,0,3,2],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[1,0,4,2],[1,3,3,0],[1,2,1,0]],[[1,2,2,2],[1,0,3,2],[1,3,3,0],[1,2,1,0]],[[1,2,3,1],[1,0,3,2],[1,3,3,0],[1,2,1,0]],[[1,3,2,1],[1,0,3,2],[1,3,3,0],[1,2,1,0]],[[2,2,2,1],[1,0,3,2],[1,3,3,0],[1,2,1,0]],[[1,2,2,1],[1,0,4,2],[1,3,3,0],[1,2,0,1]],[[1,2,2,2],[1,0,3,2],[1,3,3,0],[1,2,0,1]],[[1,2,3,1],[1,0,3,2],[1,3,3,0],[1,2,0,1]],[[1,3,2,1],[1,0,3,2],[1,3,3,0],[1,2,0,1]],[[2,2,2,1],[1,0,3,2],[1,3,3,0],[1,2,0,1]],[[1,2,2,1],[1,0,4,2],[1,3,3,0],[1,1,2,0]],[[1,2,2,2],[1,0,3,2],[1,3,3,0],[1,1,2,0]],[[1,2,3,1],[1,0,3,2],[1,3,3,0],[1,1,2,0]],[[1,3,2,1],[1,0,3,2],[1,3,3,0],[1,1,2,0]],[[2,2,2,1],[1,0,3,2],[1,3,3,0],[1,1,2,0]],[[1,2,2,1],[1,0,3,3],[1,3,3,0],[1,0,2,1]],[[1,2,2,2],[1,0,3,2],[1,3,3,0],[1,0,2,1]],[[1,2,3,1],[1,0,3,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,1],[1,0,3,3],[1,3,3,0],[0,2,1,1]],[[1,2,2,2],[1,0,3,2],[1,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,0,3,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,0,3,3],[1,3,3,0],[0,1,2,1]],[[1,2,2,2],[1,0,3,2],[1,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,0,3,2],[1,3,3,0],[0,1,2,1]],[[1,2,2,1],[1,0,3,3],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[1,0,3,2],[1,3,2,2],[1,1,1,0]],[[1,2,3,1],[1,0,3,2],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[1,0,3,2],[1,3,2,3],[1,1,0,1]],[[1,2,2,1],[1,0,3,3],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[1,0,3,2],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[1,0,3,2],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[1,0,3,2],[1,3,2,3],[1,0,2,0]],[[1,2,2,1],[1,0,3,3],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[1,0,3,2],[1,3,2,2],[1,0,2,0]],[[1,2,3,1],[1,0,3,2],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[1,0,3,2],[1,3,2,2],[1,0,1,2]],[[1,2,2,1],[1,0,3,2],[1,3,2,3],[1,0,1,1]],[[1,2,2,1],[1,0,3,3],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[1,0,3,2],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[1,0,3,2],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[1,0,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,2,1],[1,0,3,3],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,0,3,2],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,0,3,2],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,0,3,2],[1,3,2,2],[0,2,0,2]],[[1,2,2,1],[1,0,3,2],[1,3,2,3],[0,2,0,1]],[[1,2,2,1],[1,0,3,3],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,0,3,2],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,0,3,2],[1,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,1,3,0],[0,2,4,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,0],[0,2,3,2],[2,2,2,1]],[[0,2,2,0],[2,1,3,0],[0,2,3,2],[1,3,2,1]],[[0,2,2,0],[2,1,3,0],[0,2,3,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,0],[0,2,3,2],[1,2,2,2]],[[0,2,2,0],[2,1,3,0],[0,4,2,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,0],[0,3,2,2],[2,2,2,1]],[[0,2,2,0],[2,1,3,0],[0,3,2,2],[1,3,2,1]],[[0,2,2,0],[2,1,3,0],[0,3,2,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,0],[0,3,2,2],[1,2,2,2]],[[0,2,2,0],[2,1,3,0],[0,4,3,2],[1,1,2,1]],[[0,2,2,0],[2,1,3,0],[0,3,4,2],[1,1,2,1]],[[0,2,2,0],[2,1,3,0],[0,3,3,2],[1,1,3,1]],[[0,2,2,0],[2,1,3,0],[0,3,3,2],[1,1,2,2]],[[0,2,2,0],[2,1,3,0],[0,4,3,2],[1,2,1,1]],[[0,2,2,0],[2,1,3,0],[0,3,4,2],[1,2,1,1]],[[0,2,2,0],[2,1,3,0],[0,3,3,2],[2,2,1,1]],[[0,2,2,0],[2,1,3,0],[0,3,3,2],[1,3,1,1]],[[0,2,2,0],[2,1,3,0],[1,2,4,2],[0,2,2,1]],[[0,2,2,0],[2,1,3,0],[1,2,3,2],[0,3,2,1]],[[0,2,2,0],[2,1,3,0],[1,2,3,2],[0,2,3,1]],[[0,2,2,0],[2,1,3,0],[1,2,3,2],[0,2,2,2]],[[0,2,2,0],[2,1,3,0],[1,4,2,2],[0,2,2,1]],[[0,2,2,0],[2,1,3,0],[1,3,2,2],[0,3,2,1]],[[0,2,2,0],[2,1,3,0],[1,3,2,2],[0,2,3,1]],[[0,2,2,0],[2,1,3,0],[1,3,2,2],[0,2,2,2]],[[0,2,2,0],[2,1,3,0],[1,4,3,2],[0,1,2,1]],[[0,2,2,0],[2,1,3,0],[1,3,4,2],[0,1,2,1]],[[0,2,2,0],[2,1,3,0],[1,3,3,2],[0,1,3,1]],[[0,2,2,0],[2,1,3,0],[1,3,3,2],[0,1,2,2]],[[0,2,2,0],[2,1,3,0],[1,4,3,2],[0,2,1,1]],[[0,2,2,0],[2,1,3,0],[1,3,4,2],[0,2,1,1]],[[0,2,2,0],[2,1,3,0],[1,3,3,2],[0,3,1,1]],[[0,2,2,0],[2,1,3,0],[1,4,3,2],[1,0,2,1]],[[0,2,2,0],[2,1,3,0],[1,3,4,2],[1,0,2,1]],[[0,2,2,0],[2,1,3,0],[1,3,3,2],[1,0,3,1]],[[0,2,2,0],[2,1,3,0],[1,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,0,3,2],[1,3,2,3],[0,1,2,0]],[[0,2,2,0],[3,1,3,0],[2,0,3,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,0],[3,0,3,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,0],[2,0,4,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,0],[2,0,3,2],[2,2,2,1]],[[0,2,2,0],[2,1,3,0],[2,0,3,2],[1,3,2,1]],[[0,2,2,0],[2,1,3,0],[2,0,3,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,3],[1,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,0,3,2],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,0,3,2],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,0,3,2],[1,3,2,2],[0,1,1,2]],[[1,2,2,1],[1,0,3,2],[1,3,2,3],[0,1,1,1]],[[1,2,2,1],[1,0,3,3],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,0,3,2],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,0,3,2],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,0,3,2],[1,3,2,2],[0,0,2,2]],[[1,2,2,1],[1,0,3,2],[1,3,2,3],[0,0,2,1]],[[1,2,2,1],[1,0,3,3],[1,3,2,2],[0,0,2,1]],[[1,2,2,2],[1,0,3,2],[1,3,2,2],[0,0,2,1]],[[1,2,3,1],[1,0,3,2],[1,3,2,2],[0,0,2,1]],[[1,2,2,1],[1,0,3,2],[1,3,1,2],[1,0,2,2]],[[1,2,2,1],[1,0,3,2],[1,3,1,3],[1,0,2,1]],[[1,2,2,1],[1,0,3,3],[1,3,1,2],[1,0,2,1]],[[1,2,2,2],[1,0,3,2],[1,3,1,2],[1,0,2,1]],[[1,2,3,1],[1,0,3,2],[1,3,1,2],[1,0,2,1]],[[1,2,2,1],[1,0,3,2],[1,3,1,2],[0,1,2,2]],[[1,2,2,1],[1,0,3,2],[1,3,1,2],[0,1,3,1]],[[1,2,2,1],[1,0,3,2],[1,3,1,3],[0,1,2,1]],[[1,2,2,1],[1,0,3,3],[1,3,1,2],[0,1,2,1]],[[1,2,2,2],[1,0,3,2],[1,3,1,2],[0,1,2,1]],[[1,2,3,1],[1,0,3,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,1,3,1],[0,1,3,3],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,1,3,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,1],[0,1,3,2],[1,2,2,2]],[[0,2,2,0],[2,1,3,1],[0,2,2,3],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,2,2,2],[2,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,1,3,1],[0,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,1],[0,2,2,2],[1,2,2,2]],[[0,3,2,0],[2,1,3,1],[0,2,3,1],[1,2,2,1]],[[0,2,3,0],[2,1,3,1],[0,2,3,1],[1,2,2,1]],[[0,2,2,0],[2,1,4,1],[0,2,3,1],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,2,4,1],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,2,3,1],[2,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,2,3,1],[1,3,2,1]],[[0,2,2,0],[2,1,3,1],[0,2,3,1],[1,2,3,1]],[[0,2,2,0],[2,1,3,1],[0,2,3,1],[1,2,2,2]],[[0,3,2,0],[2,1,3,1],[0,2,3,2],[1,2,1,1]],[[0,2,3,0],[2,1,3,1],[0,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,1,4,1],[0,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,1,3,1],[0,2,4,2],[1,2,1,1]],[[0,2,2,0],[2,1,3,1],[0,2,3,3],[1,2,1,1]],[[0,2,2,0],[2,1,3,1],[0,2,3,2],[1,2,1,2]],[[0,3,2,0],[2,1,3,1],[0,2,3,2],[1,2,2,0]],[[0,2,3,0],[2,1,3,1],[0,2,3,2],[1,2,2,0]],[[0,2,2,0],[2,1,4,1],[0,2,3,2],[1,2,2,0]],[[0,2,2,0],[2,1,3,1],[0,2,4,2],[1,2,2,0]],[[0,2,2,0],[2,1,3,1],[0,2,3,3],[1,2,2,0]],[[0,2,2,0],[2,1,3,1],[0,2,3,2],[2,2,2,0]],[[0,2,2,0],[2,1,3,1],[0,2,3,2],[1,3,2,0]],[[0,2,2,0],[2,1,3,1],[0,2,3,2],[1,2,3,0]],[[0,2,2,0],[2,1,3,1],[0,4,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,1,3],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,1,2],[1,3,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,1,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,1],[0,3,1,2],[1,2,2,2]],[[0,2,2,0],[2,1,3,1],[0,4,2,1],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,2,1],[2,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,2,1],[1,3,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,2,1],[1,2,3,1]],[[0,2,2,0],[2,1,3,1],[0,3,2,1],[1,2,2,2]],[[0,2,2,0],[2,1,3,1],[0,3,2,3],[1,1,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,2,2],[1,1,3,1]],[[0,2,2,0],[2,1,3,1],[0,3,2,2],[1,1,2,2]],[[0,2,2,0],[2,1,3,1],[0,4,2,2],[1,2,2,0]],[[0,2,2,0],[2,1,3,1],[0,3,2,2],[2,2,2,0]],[[0,2,2,0],[2,1,3,1],[0,3,2,2],[1,3,2,0]],[[0,2,2,0],[2,1,3,1],[0,3,2,2],[1,2,3,0]],[[0,2,2,0],[2,1,3,1],[0,4,3,0],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,0],[2,2,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,0],[1,3,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,0],[1,2,3,1]],[[0,3,2,0],[2,1,3,1],[0,3,3,1],[1,1,2,1]],[[0,2,3,0],[2,1,3,1],[0,3,3,1],[1,1,2,1]],[[0,2,2,0],[2,1,4,1],[0,3,3,1],[1,1,2,1]],[[0,2,2,0],[2,1,3,1],[0,4,3,1],[1,1,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,4,1],[1,1,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,1],[1,1,3,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,1],[1,1,2,2]],[[0,3,2,0],[2,1,3,1],[0,3,3,1],[1,2,1,1]],[[0,2,3,0],[2,1,3,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,4,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,3,1],[0,4,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,3,1],[0,3,4,1],[1,2,1,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,1],[2,2,1,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,1],[1,3,1,1]],[[0,3,2,0],[2,1,3,1],[0,3,3,2],[1,0,2,1]],[[0,2,3,0],[2,1,3,1],[0,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,1,4,1],[0,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,4,2],[1,0,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,3],[1,0,2,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,2],[1,0,2,2]],[[0,3,2,0],[2,1,3,1],[0,3,3,2],[1,1,1,1]],[[0,2,3,0],[2,1,3,1],[0,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,1,4,1],[0,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,1,3,1],[0,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,1,3,1],[0,3,4,2],[1,1,1,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,3],[1,1,1,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,2],[1,1,1,2]],[[0,3,2,0],[2,1,3,1],[0,3,3,2],[1,1,2,0]],[[0,2,3,0],[2,1,3,1],[0,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,1,4,1],[0,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,1,3,1],[0,4,3,2],[1,1,2,0]],[[0,2,2,0],[2,1,3,1],[0,3,4,2],[1,1,2,0]],[[0,2,2,0],[2,1,3,1],[0,3,3,3],[1,1,2,0]],[[0,2,2,0],[2,1,3,1],[0,3,3,2],[1,1,3,0]],[[0,3,2,0],[2,1,3,1],[0,3,3,2],[1,2,0,1]],[[0,2,3,0],[2,1,3,1],[0,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,1,4,1],[0,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,1,3,1],[0,4,3,2],[1,2,0,1]],[[0,2,2,0],[2,1,3,1],[0,3,4,2],[1,2,0,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,3],[1,2,0,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,2],[2,2,0,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,2],[1,3,0,1]],[[0,2,2,0],[2,1,3,1],[0,3,3,2],[1,2,0,2]],[[0,3,2,0],[2,1,3,1],[0,3,3,2],[1,2,1,0]],[[0,2,3,0],[2,1,3,1],[0,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,1,4,1],[0,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,1,3,1],[0,4,3,2],[1,2,1,0]],[[0,2,2,0],[2,1,3,1],[0,3,4,2],[1,2,1,0]],[[0,2,2,0],[2,1,3,1],[0,3,3,3],[1,2,1,0]],[[0,2,2,0],[2,1,3,1],[0,3,3,2],[2,2,1,0]],[[0,2,2,0],[2,1,3,1],[0,3,3,2],[1,3,1,0]],[[0,2,2,0],[2,1,3,1],[1,1,3,3],[0,2,2,1]],[[0,2,2,0],[2,1,3,1],[1,1,3,2],[0,2,3,1]],[[0,2,2,0],[2,1,3,1],[1,1,3,2],[0,2,2,2]],[[0,2,2,0],[2,1,3,1],[1,2,2,3],[0,2,2,1]],[[0,2,2,0],[2,1,3,1],[1,2,2,2],[0,3,2,1]],[[0,2,2,0],[2,1,3,1],[1,2,2,2],[0,2,3,1]],[[0,2,2,0],[2,1,3,1],[1,2,2,2],[0,2,2,2]],[[0,3,2,0],[2,1,3,1],[1,2,3,1],[0,2,2,1]],[[0,2,3,0],[2,1,3,1],[1,2,3,1],[0,2,2,1]],[[0,2,2,0],[2,1,4,1],[1,2,3,1],[0,2,2,1]],[[0,2,2,0],[2,1,3,1],[1,2,4,1],[0,2,2,1]],[[0,2,2,0],[2,1,3,1],[1,2,3,1],[0,3,2,1]],[[0,2,2,0],[2,1,3,1],[1,2,3,1],[0,2,3,1]],[[0,2,2,0],[2,1,3,1],[1,2,3,1],[0,2,2,2]],[[0,3,2,0],[2,1,3,1],[1,2,3,2],[0,2,1,1]],[[0,2,3,0],[2,1,3,1],[1,2,3,2],[0,2,1,1]],[[0,2,2,0],[2,1,4,1],[1,2,3,2],[0,2,1,1]],[[0,2,2,0],[2,1,3,1],[1,2,4,2],[0,2,1,1]],[[0,2,2,0],[2,1,3,1],[1,2,3,3],[0,2,1,1]],[[0,2,2,0],[2,1,3,1],[1,2,3,2],[0,2,1,2]],[[0,3,2,0],[2,1,3,1],[1,2,3,2],[0,2,2,0]],[[0,2,3,0],[2,1,3,1],[1,2,3,2],[0,2,2,0]],[[0,2,2,0],[2,1,4,1],[1,2,3,2],[0,2,2,0]],[[0,2,2,0],[2,1,3,1],[1,2,4,2],[0,2,2,0]],[[0,2,2,0],[2,1,3,1],[1,2,3,3],[0,2,2,0]],[[0,2,2,0],[2,1,3,1],[1,2,3,2],[0,3,2,0]],[[0,2,2,0],[2,1,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,0,3,2],[1,3,0,2],[0,2,2,2]],[[1,2,2,1],[1,0,3,2],[1,3,0,2],[0,2,3,1]],[[1,2,2,1],[1,0,3,2],[1,3,0,3],[0,2,2,1]],[[1,2,2,1],[1,0,3,3],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[1,0,3,2],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[1,0,3,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,1,3,1],[1,4,1,2],[0,2,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,1,3],[0,2,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,1,2],[0,3,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,1,2],[0,2,3,1]],[[0,2,2,0],[2,1,3,1],[1,3,1,2],[0,2,2,2]],[[0,2,2,0],[2,1,3,1],[1,4,2,1],[0,2,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,2,1],[0,3,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,2,1],[0,2,3,1]],[[0,2,2,0],[2,1,3,1],[1,3,2,1],[0,2,2,2]],[[0,2,2,0],[2,1,3,1],[1,3,2,3],[0,1,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,2,2],[0,1,3,1]],[[0,2,2,0],[2,1,3,1],[1,3,2,2],[0,1,2,2]],[[0,2,2,0],[2,1,3,1],[1,4,2,2],[0,2,2,0]],[[0,2,2,0],[2,1,3,1],[1,3,2,2],[0,3,2,0]],[[0,2,2,0],[2,1,3,1],[1,3,2,2],[0,2,3,0]],[[0,2,2,0],[2,1,3,1],[1,3,2,3],[1,0,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,2,2],[1,0,3,1]],[[0,2,2,0],[2,1,3,1],[1,3,2,2],[1,0,2,2]],[[0,2,2,0],[2,1,3,1],[1,4,3,0],[0,2,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,0],[0,3,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,0],[0,2,3,1]],[[0,3,2,0],[2,1,3,1],[1,3,3,1],[0,1,2,1]],[[0,2,3,0],[2,1,3,1],[1,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,1,4,1],[1,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,1,3,1],[1,4,3,1],[0,1,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,4,1],[0,1,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,1],[0,1,3,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,1],[0,1,2,2]],[[0,3,2,0],[2,1,3,1],[1,3,3,1],[0,2,1,1]],[[0,2,3,0],[2,1,3,1],[1,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,1,4,1],[1,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,1,3,1],[1,4,3,1],[0,2,1,1]],[[0,2,2,0],[2,1,3,1],[1,3,4,1],[0,2,1,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,1],[0,3,1,1]],[[0,3,2,0],[2,1,3,1],[1,3,3,1],[1,0,2,1]],[[0,2,3,0],[2,1,3,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,1,4,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,1,3,1],[1,4,3,1],[1,0,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,4,1],[1,0,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,1],[1,0,3,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,1],[1,0,2,2]],[[0,3,2,0],[2,1,3,1],[1,3,3,1],[1,1,1,1]],[[0,2,3,0],[2,1,3,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,1,4,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,1,3,1],[1,4,3,1],[1,1,1,1]],[[0,2,2,0],[2,1,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,0,3,2],[1,2,3,3],[1,0,2,0]],[[1,2,2,1],[1,0,3,3],[1,2,3,2],[1,0,2,0]],[[1,2,2,2],[1,0,3,2],[1,2,3,2],[1,0,2,0]],[[0,3,2,0],[2,1,3,1],[1,3,3,2],[0,0,2,1]],[[0,2,3,0],[2,1,3,1],[1,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,1,4,1],[1,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,4,2],[0,0,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,3],[0,0,2,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,2],[0,0,2,2]],[[0,3,2,0],[2,1,3,1],[1,3,3,2],[0,1,1,1]],[[0,2,3,0],[2,1,3,1],[1,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,1,4,1],[1,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,1,3,1],[1,4,3,2],[0,1,1,1]],[[0,2,2,0],[2,1,3,1],[1,3,4,2],[0,1,1,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,3],[0,1,1,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,2],[0,1,1,2]],[[0,3,2,0],[2,1,3,1],[1,3,3,2],[0,1,2,0]],[[0,2,3,0],[2,1,3,1],[1,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,1,4,1],[1,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,1,3,1],[1,4,3,2],[0,1,2,0]],[[0,2,2,0],[2,1,3,1],[1,3,4,2],[0,1,2,0]],[[0,2,2,0],[2,1,3,1],[1,3,3,3],[0,1,2,0]],[[0,2,2,0],[2,1,3,1],[1,3,3,2],[0,1,3,0]],[[0,3,2,0],[2,1,3,1],[1,3,3,2],[0,2,0,1]],[[0,2,3,0],[2,1,3,1],[1,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,1,4,1],[1,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,1,3,1],[1,4,3,2],[0,2,0,1]],[[0,2,2,0],[2,1,3,1],[1,3,4,2],[0,2,0,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,3],[0,2,0,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,2],[0,3,0,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,2],[0,2,0,2]],[[0,3,2,0],[2,1,3,1],[1,3,3,2],[0,2,1,0]],[[0,2,3,0],[2,1,3,1],[1,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,1,4,1],[1,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,1,3,1],[1,4,3,2],[0,2,1,0]],[[0,2,2,0],[2,1,3,1],[1,3,4,2],[0,2,1,0]],[[0,2,2,0],[2,1,3,1],[1,3,3,3],[0,2,1,0]],[[0,2,2,0],[2,1,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,3,1],[1,0,3,2],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[1,0,3,2],[1,2,3,2],[1,0,1,2]],[[1,2,2,1],[1,0,3,2],[1,2,3,3],[1,0,1,1]],[[1,2,2,1],[1,0,3,3],[1,2,3,2],[1,0,1,1]],[[1,2,2,2],[1,0,3,2],[1,2,3,2],[1,0,1,1]],[[1,2,3,1],[1,0,3,2],[1,2,3,2],[1,0,1,1]],[[0,3,2,0],[2,1,3,1],[1,3,3,2],[1,0,1,1]],[[0,2,3,0],[2,1,3,1],[1,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,1,4,1],[1,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,1,3,1],[1,4,3,2],[1,0,1,1]],[[0,2,2,0],[2,1,3,1],[1,3,4,2],[1,0,1,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,3],[1,0,1,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,2],[1,0,1,2]],[[0,3,2,0],[2,1,3,1],[1,3,3,2],[1,0,2,0]],[[0,2,3,0],[2,1,3,1],[1,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,1,4,1],[1,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,1,3,1],[1,4,3,2],[1,0,2,0]],[[0,2,2,0],[2,1,3,1],[1,3,4,2],[1,0,2,0]],[[0,2,2,0],[2,1,3,1],[1,3,3,3],[1,0,2,0]],[[0,2,2,0],[2,1,3,1],[1,3,3,2],[1,0,3,0]],[[0,3,2,0],[2,1,3,1],[1,3,3,2],[1,1,0,1]],[[0,2,3,0],[2,1,3,1],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,1,4,1],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,1,3,1],[1,4,3,2],[1,1,0,1]],[[0,2,2,0],[2,1,3,1],[1,3,4,2],[1,1,0,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,3],[1,1,0,1]],[[0,2,2,0],[2,1,3,1],[1,3,3,2],[1,1,0,2]],[[0,3,2,0],[2,1,3,1],[1,3,3,2],[1,1,1,0]],[[0,2,3,0],[2,1,3,1],[1,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,1,4,1],[1,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,1,3,1],[1,4,3,2],[1,1,1,0]],[[0,2,2,0],[2,1,3,1],[1,3,4,2],[1,1,1,0]],[[0,2,2,0],[2,1,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,0,3,2],[1,2,3,3],[0,1,2,0]],[[1,2,2,1],[1,0,3,3],[1,2,3,2],[0,1,2,0]],[[1,2,2,2],[1,0,3,2],[1,2,3,2],[0,1,2,0]],[[1,2,3,1],[1,0,3,2],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[1,0,3,2],[1,2,3,2],[0,1,1,2]],[[1,2,2,1],[1,0,3,2],[1,2,3,3],[0,1,1,1]],[[1,2,2,1],[1,0,3,3],[1,2,3,2],[0,1,1,1]],[[1,2,2,2],[1,0,3,2],[1,2,3,2],[0,1,1,1]],[[1,2,3,1],[1,0,3,2],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[1,0,3,2],[1,2,3,2],[0,0,2,2]],[[1,2,2,1],[1,0,3,2],[1,2,3,3],[0,0,2,1]],[[1,2,2,1],[1,0,3,3],[1,2,3,2],[0,0,2,1]],[[1,2,2,2],[1,0,3,2],[1,2,3,2],[0,0,2,1]],[[1,2,3,1],[1,0,3,2],[1,2,3,2],[0,0,2,1]],[[0,2,2,0],[3,1,3,1],[2,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[3,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[2,0,2,3],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[2,0,2,2],[2,2,2,1]],[[0,2,2,0],[2,1,3,1],[2,0,2,2],[1,3,2,1]],[[0,2,2,0],[2,1,3,1],[2,0,2,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,1],[2,0,2,2],[1,2,2,2]],[[0,3,2,0],[2,1,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,3,0],[2,1,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[3,1,3,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,1,4,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[3,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[2,0,4,1],[1,2,2,1]],[[0,2,2,0],[2,1,3,1],[2,0,3,1],[2,2,2,1]],[[0,2,2,0],[2,1,3,1],[2,0,3,1],[1,3,2,1]],[[0,2,2,0],[2,1,3,1],[2,0,3,1],[1,2,3,1]],[[0,2,2,0],[2,1,3,1],[2,0,3,1],[1,2,2,2]],[[0,3,2,0],[2,1,3,1],[2,0,3,2],[1,2,1,1]],[[0,2,3,0],[2,1,3,1],[2,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,1,4,1],[2,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,1,3,1],[2,0,4,2],[1,2,1,1]],[[0,2,2,0],[2,1,3,1],[2,0,3,3],[1,2,1,1]],[[0,2,2,0],[2,1,3,1],[2,0,3,2],[1,2,1,2]],[[0,3,2,0],[2,1,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,3,0],[2,1,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[3,1,3,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,1,4,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,1,3,1],[3,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,1,3,1],[2,0,4,2],[1,2,2,0]],[[0,2,2,0],[2,1,3,1],[2,0,3,3],[1,2,2,0]],[[0,2,2,0],[2,1,3,1],[2,0,3,2],[2,2,2,0]],[[0,2,2,0],[2,1,3,1],[2,0,3,2],[1,3,2,0]],[[0,2,2,0],[2,1,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[1,0,3,3],[1,2,3,1],[0,2,2,0]],[[1,2,2,2],[1,0,3,2],[1,2,3,1],[0,2,2,0]],[[1,2,3,1],[1,0,3,2],[1,2,3,1],[0,2,2,0]],[[1,2,2,1],[1,0,3,3],[1,2,3,1],[0,2,1,1]],[[1,2,2,2],[1,0,3,2],[1,2,3,1],[0,2,1,1]],[[1,2,3,1],[1,0,3,2],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[1,0,4,2],[1,2,3,0],[1,2,2,0]],[[1,2,2,2],[1,0,3,2],[1,2,3,0],[1,2,2,0]],[[1,2,3,1],[1,0,3,2],[1,2,3,0],[1,2,2,0]],[[1,3,2,1],[1,0,3,2],[1,2,3,0],[1,2,2,0]],[[2,2,2,1],[1,0,3,2],[1,2,3,0],[1,2,2,0]],[[1,2,2,1],[1,0,3,3],[1,2,3,0],[0,2,2,1]],[[1,2,2,2],[1,0,3,2],[1,2,3,0],[0,2,2,1]],[[1,2,3,1],[1,0,3,2],[1,2,3,0],[0,2,2,1]],[[1,2,2,1],[1,0,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,2,1],[1,0,3,3],[1,2,2,2],[0,2,2,0]],[[1,2,2,2],[1,0,3,2],[1,2,2,2],[0,2,2,0]],[[1,2,3,1],[1,0,3,2],[1,2,2,2],[0,2,2,0]],[[1,2,2,1],[1,0,3,2],[1,2,2,2],[0,2,1,2]],[[1,2,2,1],[1,0,3,2],[1,2,2,3],[0,2,1,1]],[[1,2,2,1],[1,0,3,3],[1,2,2,2],[0,2,1,1]],[[1,2,2,2],[1,0,3,2],[1,2,2,2],[0,2,1,1]],[[1,2,3,1],[1,0,3,2],[1,2,2,2],[0,2,1,1]],[[1,2,2,1],[1,0,3,2],[1,2,1,2],[0,2,2,2]],[[1,2,2,1],[1,0,3,2],[1,2,1,2],[0,2,3,1]],[[1,2,2,1],[1,0,3,2],[1,2,1,3],[0,2,2,1]],[[1,2,2,1],[1,0,3,3],[1,2,1,2],[0,2,2,1]],[[1,2,2,2],[1,0,3,2],[1,2,1,2],[0,2,2,1]],[[1,2,3,1],[1,0,3,2],[1,2,1,2],[0,2,2,1]],[[1,2,2,1],[1,0,3,2],[1,1,3,3],[0,2,2,0]],[[1,2,2,1],[1,0,3,3],[1,1,3,2],[0,2,2,0]],[[1,2,2,2],[1,0,3,2],[1,1,3,2],[0,2,2,0]],[[1,2,3,1],[1,0,3,2],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[1,0,3,2],[1,1,3,2],[0,2,1,2]],[[1,2,2,1],[1,0,3,2],[1,1,3,3],[0,2,1,1]],[[1,2,2,1],[1,0,3,3],[1,1,3,2],[0,2,1,1]],[[1,2,2,2],[1,0,3,2],[1,1,3,2],[0,2,1,1]],[[1,2,3,1],[1,0,3,2],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[1,0,3,2],[1,1,3,2],[0,1,2,2]],[[1,2,2,1],[1,0,3,2],[1,1,3,3],[0,1,2,1]],[[1,2,2,1],[1,0,3,3],[1,1,3,2],[0,1,2,1]],[[1,2,2,2],[1,0,3,2],[1,1,3,2],[0,1,2,1]],[[1,2,3,1],[1,0,3,2],[1,1,3,2],[0,1,2,1]],[[1,2,2,1],[1,0,3,2],[1,1,2,2],[0,2,2,2]],[[1,2,2,1],[1,0,3,2],[1,1,2,2],[0,2,3,1]],[[1,2,2,1],[1,0,3,2],[1,1,2,3],[0,2,2,1]],[[1,2,2,1],[1,0,3,3],[1,1,2,2],[0,2,2,1]],[[1,2,2,2],[1,0,3,2],[1,1,2,2],[0,2,2,1]],[[1,2,3,1],[1,0,3,2],[1,1,2,2],[0,2,2,1]],[[1,2,2,1],[1,0,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,0,3,3],[0,3,3,2],[1,1,0,1]],[[1,2,2,2],[1,0,3,2],[0,3,3,2],[1,1,0,1]],[[1,2,3,1],[1,0,3,2],[0,3,3,2],[1,1,0,1]],[[1,2,2,1],[1,0,3,2],[0,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,0,3,3],[0,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,0,3,2],[0,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,0,3,2],[0,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,0,3,2],[0,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,0,3,2],[0,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,0,3,3],[0,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,0,3,2],[0,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,0,3,2],[0,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,0,3,2],[0,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,0,3,2],[0,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,0,3,3],[0,3,3,2],[0,0,2,1]],[[1,2,2,2],[1,0,3,2],[0,3,3,2],[0,0,2,1]],[[1,2,3,1],[1,0,3,2],[0,3,3,2],[0,0,2,1]],[[1,2,2,1],[1,0,3,3],[0,3,3,1],[1,2,1,0]],[[1,2,2,2],[1,0,3,2],[0,3,3,1],[1,2,1,0]],[[1,2,3,1],[1,0,3,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,1],[1,0,3,3],[0,3,3,1],[1,2,0,1]],[[1,2,2,2],[1,0,3,2],[0,3,3,1],[1,2,0,1]],[[1,2,3,1],[1,0,3,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,1],[1,0,3,3],[0,3,3,1],[1,1,2,0]],[[1,2,2,2],[1,0,3,2],[0,3,3,1],[1,1,2,0]],[[1,2,3,1],[1,0,3,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,1],[1,0,3,3],[0,3,3,1],[1,1,1,1]],[[1,2,2,2],[1,0,3,2],[0,3,3,1],[1,1,1,1]],[[1,2,3,1],[1,0,3,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,0,3,3],[0,3,3,1],[1,0,2,1]],[[1,2,2,2],[1,0,3,2],[0,3,3,1],[1,0,2,1]],[[1,2,3,1],[1,0,3,2],[0,3,3,1],[1,0,2,1]],[[1,2,2,1],[1,0,3,3],[0,3,3,0],[1,2,1,1]],[[1,2,2,2],[1,0,3,2],[0,3,3,0],[1,2,1,1]],[[1,2,3,1],[1,0,3,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,1],[1,0,3,3],[0,3,3,0],[1,1,2,1]],[[1,2,2,2],[1,0,3,2],[0,3,3,0],[1,1,2,1]],[[1,2,3,1],[1,0,3,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,1],[1,0,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,1],[1,0,3,3],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[1,0,3,2],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[1,0,3,2],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[1,0,3,2],[0,3,2,2],[1,2,0,2]],[[1,2,2,1],[1,0,3,2],[0,3,2,3],[1,2,0,1]],[[1,2,2,1],[1,0,3,3],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[1,0,3,2],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[1,0,3,2],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[1,0,3,2],[0,3,2,3],[1,1,2,0]],[[1,2,2,1],[1,0,3,3],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[1,0,3,2],[0,3,2,2],[1,1,2,0]],[[1,2,3,1],[1,0,3,2],[0,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,0,3,2],[0,3,2,2],[1,1,1,2]],[[1,2,2,1],[1,0,3,2],[0,3,2,3],[1,1,1,1]],[[1,2,2,1],[1,0,3,3],[0,3,2,2],[1,1,1,1]],[[1,2,2,2],[1,0,3,2],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[1,0,3,2],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[1,0,3,2],[0,3,2,2],[1,0,2,2]],[[1,2,2,1],[1,0,3,2],[0,3,2,3],[1,0,2,1]],[[1,2,2,1],[1,0,3,3],[0,3,2,2],[1,0,2,1]],[[1,2,2,2],[1,0,3,2],[0,3,2,2],[1,0,2,1]],[[1,2,3,1],[1,0,3,2],[0,3,2,2],[1,0,2,1]],[[1,2,2,1],[1,0,3,2],[0,3,1,2],[1,1,2,2]],[[1,2,2,1],[1,0,3,2],[0,3,1,2],[1,1,3,1]],[[1,2,2,1],[1,0,3,2],[0,3,1,3],[1,1,2,1]],[[1,2,2,1],[1,0,3,3],[0,3,1,2],[1,1,2,1]],[[1,2,2,2],[1,0,3,2],[0,3,1,2],[1,1,2,1]],[[1,2,3,1],[1,0,3,2],[0,3,1,2],[1,1,2,1]],[[1,2,2,1],[1,0,3,2],[0,3,0,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,2],[0,3,0,2],[1,2,3,1]],[[1,2,2,1],[1,0,3,2],[0,3,0,2],[1,3,2,1]],[[1,2,2,1],[1,0,3,2],[0,3,0,3],[1,2,2,1]],[[1,2,2,1],[1,0,3,3],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[1,0,3,2],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[1,0,3,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,3],[0,0,3,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,0,3,3],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,0,3,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,2],[0,0,3,2],[1,2,2,2]],[[0,3,2,0],[2,1,3,2],[0,2,1,2],[1,2,2,1]],[[0,2,3,0],[2,1,3,2],[0,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,4,2],[0,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,3],[0,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,2,1,3],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,2,1,2],[2,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,2,1,2],[1,3,2,1]],[[0,2,2,0],[2,1,3,2],[0,2,1,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,2],[0,2,1,2],[1,2,2,2]],[[0,3,2,0],[2,1,3,2],[0,2,2,2],[1,2,1,1]],[[0,2,3,0],[2,1,3,2],[0,2,2,2],[1,2,1,1]],[[0,2,2,0],[2,1,4,2],[0,2,2,2],[1,2,1,1]],[[0,2,2,0],[2,1,3,3],[0,2,2,2],[1,2,1,1]],[[0,2,2,0],[2,1,3,2],[0,2,2,3],[1,2,1,1]],[[0,2,2,0],[2,1,3,2],[0,2,2,2],[1,2,1,2]],[[0,3,2,0],[2,1,3,2],[0,2,2,2],[1,2,2,0]],[[0,2,3,0],[2,1,3,2],[0,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,1,4,2],[0,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,1,3,3],[0,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,1,3,2],[0,2,2,3],[1,2,2,0]],[[0,3,2,0],[2,1,3,2],[0,2,3,0],[1,2,2,1]],[[0,2,3,0],[2,1,3,2],[0,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,1,4,2],[0,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,1,3,3],[0,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,2,4,0],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,2,3,0],[2,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,2,3,0],[1,3,2,1]],[[0,2,2,0],[2,1,3,2],[0,2,3,0],[1,2,3,1]],[[0,2,2,0],[2,1,3,2],[0,2,3,0],[1,2,2,2]],[[0,3,2,0],[2,1,3,2],[0,2,3,1],[1,2,1,1]],[[0,2,3,0],[2,1,3,2],[0,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,4,2],[0,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,3,3],[0,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,3,2],[0,2,4,1],[1,2,1,1]],[[0,3,2,0],[2,1,3,2],[0,2,3,1],[1,2,2,0]],[[0,2,3,0],[2,1,3,2],[0,2,3,1],[1,2,2,0]],[[0,2,2,0],[2,1,4,2],[0,2,3,1],[1,2,2,0]],[[0,2,2,0],[2,1,3,3],[0,2,3,1],[1,2,2,0]],[[0,2,2,0],[2,1,3,2],[0,2,4,1],[1,2,2,0]],[[0,2,2,0],[2,1,3,2],[0,2,3,1],[2,2,2,0]],[[0,2,2,0],[2,1,3,2],[0,2,3,1],[1,3,2,0]],[[0,2,2,0],[2,1,3,2],[0,2,3,1],[1,2,3,0]],[[0,3,2,0],[2,1,3,2],[0,3,0,2],[1,2,2,1]],[[0,2,3,0],[2,1,3,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,1,4,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,3],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,4,0,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,0,3],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,0,2],[2,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,0,2],[1,3,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,0,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,2],[0,3,0,2],[1,2,2,2]],[[0,3,2,0],[2,1,3,2],[0,3,1,2],[1,1,2,1]],[[0,2,3,0],[2,1,3,2],[0,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,1,4,2],[0,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,1,3,3],[0,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,1,3],[1,1,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,1,2],[1,1,3,1]],[[0,2,2,0],[2,1,3,2],[0,3,1,2],[1,1,2,2]],[[0,2,2,0],[2,1,3,2],[0,4,2,0],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,2,0],[2,2,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,2,0],[1,3,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,2,0],[1,2,3,1]],[[0,2,2,0],[2,1,3,2],[0,3,2,0],[1,2,2,2]],[[0,2,2,0],[2,1,3,2],[0,4,2,1],[1,2,2,0]],[[0,2,2,0],[2,1,3,2],[0,3,2,1],[2,2,2,0]],[[0,2,2,0],[2,1,3,2],[0,3,2,1],[1,3,2,0]],[[0,2,2,0],[2,1,3,2],[0,3,2,1],[1,2,3,0]],[[0,3,2,0],[2,1,3,2],[0,3,2,2],[1,0,2,1]],[[0,2,3,0],[2,1,3,2],[0,3,2,2],[1,0,2,1]],[[0,2,2,0],[2,1,4,2],[0,3,2,2],[1,0,2,1]],[[0,2,2,0],[2,1,3,3],[0,3,2,2],[1,0,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,2,3],[1,0,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,2,2],[1,0,2,2]],[[0,3,2,0],[2,1,3,2],[0,3,2,2],[1,1,1,1]],[[0,2,3,0],[2,1,3,2],[0,3,2,2],[1,1,1,1]],[[0,2,2,0],[2,1,4,2],[0,3,2,2],[1,1,1,1]],[[0,2,2,0],[2,1,3,3],[0,3,2,2],[1,1,1,1]],[[0,2,2,0],[2,1,3,2],[0,3,2,3],[1,1,1,1]],[[0,2,2,0],[2,1,3,2],[0,3,2,2],[1,1,1,2]],[[0,3,2,0],[2,1,3,2],[0,3,2,2],[1,1,2,0]],[[0,2,3,0],[2,1,3,2],[0,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,1,4,2],[0,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,1,3,3],[0,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,1,3,2],[0,3,2,3],[1,1,2,0]],[[0,3,2,0],[2,1,3,2],[0,3,2,2],[1,2,0,1]],[[0,2,3,0],[2,1,3,2],[0,3,2,2],[1,2,0,1]],[[0,2,2,0],[2,1,4,2],[0,3,2,2],[1,2,0,1]],[[0,2,2,0],[2,1,3,3],[0,3,2,2],[1,2,0,1]],[[0,2,2,0],[2,1,3,2],[0,3,2,3],[1,2,0,1]],[[0,2,2,0],[2,1,3,2],[0,3,2,2],[1,2,0,2]],[[0,3,2,0],[2,1,3,2],[0,3,2,2],[1,2,1,0]],[[0,2,3,0],[2,1,3,2],[0,3,2,2],[1,2,1,0]],[[0,2,2,0],[2,1,4,2],[0,3,2,2],[1,2,1,0]],[[0,2,2,0],[2,1,3,3],[0,3,2,2],[1,2,1,0]],[[0,2,2,0],[2,1,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,1],[1,0,3,2],[0,2,3,3],[1,1,2,0]],[[1,2,2,1],[1,0,3,3],[0,2,3,2],[1,1,2,0]],[[1,2,2,2],[1,0,3,2],[0,2,3,2],[1,1,2,0]],[[1,2,3,1],[1,0,3,2],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[1,0,3,2],[0,2,3,2],[1,1,1,2]],[[1,2,2,1],[1,0,3,2],[0,2,3,3],[1,1,1,1]],[[1,2,2,1],[1,0,3,3],[0,2,3,2],[1,1,1,1]],[[1,2,2,2],[1,0,3,2],[0,2,3,2],[1,1,1,1]],[[0,3,2,0],[2,1,3,2],[0,3,3,0],[1,1,2,1]],[[0,2,3,0],[2,1,3,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,1,4,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,1,3,3],[0,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,1,3,2],[0,4,3,0],[1,1,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,4,0],[1,1,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,3,0],[1,1,3,1]],[[0,2,2,0],[2,1,3,2],[0,3,3,0],[1,1,2,2]],[[0,3,2,0],[2,1,3,2],[0,3,3,0],[1,2,1,1]],[[0,2,3,0],[2,1,3,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,0],[2,1,4,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,0],[2,1,3,3],[0,3,3,0],[1,2,1,1]],[[0,2,2,0],[2,1,3,2],[0,4,3,0],[1,2,1,1]],[[0,2,2,0],[2,1,3,2],[0,3,4,0],[1,2,1,1]],[[0,2,2,0],[2,1,3,2],[0,3,3,0],[2,2,1,1]],[[0,2,2,0],[2,1,3,2],[0,3,3,0],[1,3,1,1]],[[0,3,2,0],[2,1,3,2],[0,3,3,1],[1,0,2,1]],[[0,2,3,0],[2,1,3,2],[0,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,1,4,2],[0,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,1,3,3],[0,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,1,3,2],[0,3,4,1],[1,0,2,1]],[[0,3,2,0],[2,1,3,2],[0,3,3,1],[1,1,1,1]],[[0,2,3,0],[2,1,3,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,1,4,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,1,3,3],[0,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,1,3,2],[0,4,3,1],[1,1,1,1]],[[0,2,2,0],[2,1,3,2],[0,3,4,1],[1,1,1,1]],[[0,3,2,0],[2,1,3,2],[0,3,3,1],[1,1,2,0]],[[0,2,3,0],[2,1,3,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,0],[2,1,4,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,0],[2,1,3,3],[0,3,3,1],[1,1,2,0]],[[0,2,2,0],[2,1,3,2],[0,4,3,1],[1,1,2,0]],[[0,2,2,0],[2,1,3,2],[0,3,4,1],[1,1,2,0]],[[0,2,2,0],[2,1,3,2],[0,3,3,1],[1,1,3,0]],[[0,3,2,0],[2,1,3,2],[0,3,3,1],[1,2,0,1]],[[0,2,3,0],[2,1,3,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,1,4,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,1,3,3],[0,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,1,3,2],[0,4,3,1],[1,2,0,1]],[[0,2,2,0],[2,1,3,2],[0,3,4,1],[1,2,0,1]],[[0,2,2,0],[2,1,3,2],[0,3,3,1],[2,2,0,1]],[[0,2,2,0],[2,1,3,2],[0,3,3,1],[1,3,0,1]],[[0,3,2,0],[2,1,3,2],[0,3,3,1],[1,2,1,0]],[[0,2,3,0],[2,1,3,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,0],[2,1,4,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,0],[2,1,3,3],[0,3,3,1],[1,2,1,0]],[[0,2,2,0],[2,1,3,2],[0,4,3,1],[1,2,1,0]],[[0,2,2,0],[2,1,3,2],[0,3,4,1],[1,2,1,0]],[[0,2,2,0],[2,1,3,2],[0,3,3,1],[2,2,1,0]],[[0,2,2,0],[2,1,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,3,1],[1,0,3,2],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[1,0,3,2],[0,2,3,2],[1,0,2,2]],[[1,2,2,1],[1,0,3,2],[0,2,3,3],[1,0,2,1]],[[1,2,2,1],[1,0,3,3],[0,2,3,2],[1,0,2,1]],[[1,2,2,2],[1,0,3,2],[0,2,3,2],[1,0,2,1]],[[1,2,3,1],[1,0,3,2],[0,2,3,2],[1,0,2,1]],[[0,3,2,0],[2,1,3,2],[0,3,3,2],[1,1,0,1]],[[0,2,3,0],[2,1,3,2],[0,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,1,4,2],[0,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,1,3,3],[0,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,1,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,0,3,3],[0,2,3,1],[1,2,2,0]],[[1,2,2,2],[1,0,3,2],[0,2,3,1],[1,2,2,0]],[[1,2,3,1],[1,0,3,2],[0,2,3,1],[1,2,2,0]],[[1,2,2,1],[1,0,3,3],[0,2,3,1],[1,2,1,1]],[[1,2,2,2],[1,0,3,2],[0,2,3,1],[1,2,1,1]],[[1,2,3,1],[1,0,3,2],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[1,0,3,3],[0,2,3,0],[1,2,2,1]],[[1,2,2,2],[1,0,3,2],[0,2,3,0],[1,2,2,1]],[[1,2,3,1],[1,0,3,2],[0,2,3,0],[1,2,2,1]],[[1,2,2,1],[1,0,3,2],[0,2,2,3],[1,2,2,0]],[[1,2,2,1],[1,0,3,3],[0,2,2,2],[1,2,2,0]],[[1,2,2,2],[1,0,3,2],[0,2,2,2],[1,2,2,0]],[[1,2,3,1],[1,0,3,2],[0,2,2,2],[1,2,2,0]],[[1,2,2,1],[1,0,3,2],[0,2,2,2],[1,2,1,2]],[[1,2,2,1],[1,0,3,2],[0,2,2,3],[1,2,1,1]],[[1,2,2,1],[1,0,3,3],[0,2,2,2],[1,2,1,1]],[[1,2,2,2],[1,0,3,2],[0,2,2,2],[1,2,1,1]],[[1,2,3,1],[1,0,3,2],[0,2,2,2],[1,2,1,1]],[[1,2,2,1],[1,0,3,2],[0,2,1,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,2],[0,2,1,2],[1,2,3,1]],[[1,2,2,1],[1,0,3,2],[0,2,1,2],[1,3,2,1]],[[1,2,2,1],[1,0,3,2],[0,2,1,3],[1,2,2,1]],[[1,2,2,1],[1,0,3,3],[0,2,1,2],[1,2,2,1]],[[1,2,2,2],[1,0,3,2],[0,2,1,2],[1,2,2,1]],[[1,2,3,1],[1,0,3,2],[0,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,3],[1,0,3,2],[0,2,2,1]],[[0,2,2,0],[2,1,3,2],[1,0,3,3],[0,2,2,1]],[[0,2,2,0],[2,1,3,2],[1,0,3,2],[0,2,3,1]],[[0,2,2,0],[2,1,3,2],[1,0,3,2],[0,2,2,2]],[[0,3,2,0],[2,1,3,2],[1,2,1,2],[0,2,2,1]],[[0,2,3,0],[2,1,3,2],[1,2,1,2],[0,2,2,1]],[[0,2,2,0],[2,1,4,2],[1,2,1,2],[0,2,2,1]],[[0,2,2,0],[2,1,3,3],[1,2,1,2],[0,2,2,1]],[[0,2,2,0],[2,1,3,2],[1,2,1,3],[0,2,2,1]],[[0,2,2,0],[2,1,3,2],[1,2,1,2],[0,3,2,1]],[[0,2,2,0],[2,1,3,2],[1,2,1,2],[0,2,3,1]],[[0,2,2,0],[2,1,3,2],[1,2,1,2],[0,2,2,2]],[[0,3,2,0],[2,1,3,2],[1,2,2,2],[0,2,1,1]],[[0,2,3,0],[2,1,3,2],[1,2,2,2],[0,2,1,1]],[[0,2,2,0],[2,1,4,2],[1,2,2,2],[0,2,1,1]],[[0,2,2,0],[2,1,3,3],[1,2,2,2],[0,2,1,1]],[[0,2,2,0],[2,1,3,2],[1,2,2,3],[0,2,1,1]],[[0,2,2,0],[2,1,3,2],[1,2,2,2],[0,2,1,2]],[[0,3,2,0],[2,1,3,2],[1,2,2,2],[0,2,2,0]],[[0,2,3,0],[2,1,3,2],[1,2,2,2],[0,2,2,0]],[[0,2,2,0],[2,1,4,2],[1,2,2,2],[0,2,2,0]],[[0,2,2,0],[2,1,3,3],[1,2,2,2],[0,2,2,0]],[[0,2,2,0],[2,1,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,2,1],[1,0,3,2],[0,1,3,3],[1,2,2,0]],[[1,2,2,1],[1,0,3,3],[0,1,3,2],[1,2,2,0]],[[1,2,2,2],[1,0,3,2],[0,1,3,2],[1,2,2,0]],[[1,2,3,1],[1,0,3,2],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,0,3,2],[0,1,3,2],[1,2,1,2]],[[1,2,2,1],[1,0,3,2],[0,1,3,3],[1,2,1,1]],[[1,2,2,1],[1,0,3,3],[0,1,3,2],[1,2,1,1]],[[0,3,2,0],[2,1,3,2],[1,2,3,0],[0,2,2,1]],[[0,2,3,0],[2,1,3,2],[1,2,3,0],[0,2,2,1]],[[0,2,2,0],[2,1,4,2],[1,2,3,0],[0,2,2,1]],[[0,2,2,0],[2,1,3,3],[1,2,3,0],[0,2,2,1]],[[0,2,2,0],[2,1,3,2],[1,2,4,0],[0,2,2,1]],[[0,2,2,0],[2,1,3,2],[1,2,3,0],[0,3,2,1]],[[0,2,2,0],[2,1,3,2],[1,2,3,0],[0,2,3,1]],[[0,2,2,0],[2,1,3,2],[1,2,3,0],[0,2,2,2]],[[0,3,2,0],[2,1,3,2],[1,2,3,1],[0,2,1,1]],[[0,2,3,0],[2,1,3,2],[1,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,1,4,2],[1,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,1,3,3],[1,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,1,3,2],[1,2,4,1],[0,2,1,1]],[[0,3,2,0],[2,1,3,2],[1,2,3,1],[0,2,2,0]],[[0,2,3,0],[2,1,3,2],[1,2,3,1],[0,2,2,0]],[[0,2,2,0],[2,1,4,2],[1,2,3,1],[0,2,2,0]],[[0,2,2,0],[2,1,3,3],[1,2,3,1],[0,2,2,0]],[[0,2,2,0],[2,1,3,2],[1,2,4,1],[0,2,2,0]],[[0,2,2,0],[2,1,3,2],[1,2,3,1],[0,3,2,0]],[[0,2,2,0],[2,1,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,2],[1,0,3,2],[0,1,3,2],[1,2,1,1]],[[1,2,3,1],[1,0,3,2],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[1,0,3,2],[0,1,3,2],[1,1,2,2]],[[1,2,2,1],[1,0,3,2],[0,1,3,3],[1,1,2,1]],[[1,2,2,1],[1,0,3,3],[0,1,3,2],[1,1,2,1]],[[1,2,2,2],[1,0,3,2],[0,1,3,2],[1,1,2,1]],[[1,2,3,1],[1,0,3,2],[0,1,3,2],[1,1,2,1]],[[1,2,2,1],[1,0,3,2],[0,1,3,2],[0,2,2,2]],[[1,2,2,1],[1,0,3,2],[0,1,3,3],[0,2,2,1]],[[1,2,2,1],[1,0,3,3],[0,1,3,2],[0,2,2,1]],[[1,2,2,2],[1,0,3,2],[0,1,3,2],[0,2,2,1]],[[1,2,3,1],[1,0,3,2],[0,1,3,2],[0,2,2,1]],[[1,2,2,1],[1,0,3,2],[0,1,2,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,2],[0,1,2,2],[1,2,3,1]],[[1,2,2,1],[1,0,3,2],[0,1,2,3],[1,2,2,1]],[[1,2,2,1],[1,0,3,3],[0,1,2,2],[1,2,2,1]],[[1,2,2,2],[1,0,3,2],[0,1,2,2],[1,2,2,1]],[[1,2,3,1],[1,0,3,2],[0,1,2,2],[1,2,2,1]],[[0,3,2,0],[2,1,3,2],[1,3,0,2],[0,2,2,1]],[[0,2,3,0],[2,1,3,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,1,4,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,1,3,3],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,1,3,2],[1,4,0,2],[0,2,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,0,3],[0,2,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,0,2],[0,3,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,0,2],[0,2,3,1]],[[0,2,2,0],[2,1,3,2],[1,3,0,2],[0,2,2,2]],[[0,3,2,0],[2,1,3,2],[1,3,1,2],[0,1,2,1]],[[0,2,3,0],[2,1,3,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,1,4,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,1,3,3],[1,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,1,3],[0,1,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,1,2],[0,1,3,1]],[[0,2,2,0],[2,1,3,2],[1,3,1,2],[0,1,2,2]],[[0,3,2,0],[2,1,3,2],[1,3,1,2],[1,0,2,1]],[[0,2,3,0],[2,1,3,2],[1,3,1,2],[1,0,2,1]],[[0,2,2,0],[2,1,4,2],[1,3,1,2],[1,0,2,1]],[[0,2,2,0],[2,1,3,3],[1,3,1,2],[1,0,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,1,3],[1,0,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,1,2],[1,0,3,1]],[[0,2,2,0],[2,1,3,2],[1,3,1,2],[1,0,2,2]],[[0,2,2,0],[2,1,3,2],[1,4,2,0],[0,2,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,0],[0,3,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,0],[0,2,3,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,0],[0,2,2,2]],[[0,2,2,0],[2,1,3,2],[1,4,2,1],[0,2,2,0]],[[0,2,2,0],[2,1,3,2],[1,3,2,1],[0,3,2,0]],[[0,2,2,0],[2,1,3,2],[1,3,2,1],[0,2,3,0]],[[0,3,2,0],[2,1,3,2],[1,3,2,2],[0,0,2,1]],[[0,2,3,0],[2,1,3,2],[1,3,2,2],[0,0,2,1]],[[0,2,2,0],[2,1,4,2],[1,3,2,2],[0,0,2,1]],[[0,2,2,0],[2,1,3,3],[1,3,2,2],[0,0,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,3],[0,0,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,2],[0,0,2,2]],[[0,3,2,0],[2,1,3,2],[1,3,2,2],[0,1,1,1]],[[0,2,3,0],[2,1,3,2],[1,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,1,4,2],[1,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,1,3,3],[1,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,3],[0,1,1,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,2],[0,1,1,2]],[[0,3,2,0],[2,1,3,2],[1,3,2,2],[0,1,2,0]],[[0,2,3,0],[2,1,3,2],[1,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,1,4,2],[1,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,1,3,3],[1,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,1,3,2],[1,3,2,3],[0,1,2,0]],[[0,3,2,0],[2,1,3,2],[1,3,2,2],[0,2,0,1]],[[0,2,3,0],[2,1,3,2],[1,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,1,4,2],[1,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,1,3,3],[1,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,3],[0,2,0,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,2],[0,2,0,2]],[[0,3,2,0],[2,1,3,2],[1,3,2,2],[0,2,1,0]],[[0,2,3,0],[2,1,3,2],[1,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,1,4,2],[1,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,1,3,3],[1,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,1,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,2,1],[1,0,4,1],[2,3,3,2],[1,0,0,1]],[[1,2,2,2],[1,0,3,1],[2,3,3,2],[1,0,0,1]],[[1,2,3,1],[1,0,3,1],[2,3,3,2],[1,0,0,1]],[[1,3,2,1],[1,0,3,1],[2,3,3,2],[1,0,0,1]],[[0,3,2,0],[2,1,3,2],[1,3,2,2],[1,0,1,1]],[[0,2,3,0],[2,1,3,2],[1,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,1,4,2],[1,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,1,3,3],[1,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,3],[1,0,1,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,2],[1,0,1,2]],[[0,3,2,0],[2,1,3,2],[1,3,2,2],[1,0,2,0]],[[0,2,3,0],[2,1,3,2],[1,3,2,2],[1,0,2,0]],[[0,2,2,0],[2,1,4,2],[1,3,2,2],[1,0,2,0]],[[0,2,2,0],[2,1,3,3],[1,3,2,2],[1,0,2,0]],[[0,2,2,0],[2,1,3,2],[1,3,2,3],[1,0,2,0]],[[0,3,2,0],[2,1,3,2],[1,3,2,2],[1,1,0,1]],[[0,2,3,0],[2,1,3,2],[1,3,2,2],[1,1,0,1]],[[0,2,2,0],[2,1,4,2],[1,3,2,2],[1,1,0,1]],[[0,2,2,0],[2,1,3,3],[1,3,2,2],[1,1,0,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,3],[1,1,0,1]],[[0,2,2,0],[2,1,3,2],[1,3,2,2],[1,1,0,2]],[[0,3,2,0],[2,1,3,2],[1,3,2,2],[1,1,1,0]],[[0,2,3,0],[2,1,3,2],[1,3,2,2],[1,1,1,0]],[[0,2,2,0],[2,1,4,2],[1,3,2,2],[1,1,1,0]],[[0,2,2,0],[2,1,3,3],[1,3,2,2],[1,1,1,0]],[[0,2,2,0],[2,1,3,2],[1,3,2,3],[1,1,1,0]],[[2,2,2,1],[1,0,3,1],[2,3,3,2],[1,0,0,1]],[[0,3,2,0],[2,1,3,2],[1,3,3,0],[0,1,2,1]],[[0,2,3,0],[2,1,3,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,1,4,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,1,3,3],[1,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,1,3,2],[1,4,3,0],[0,1,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,4,0],[0,1,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,3,0],[0,1,3,1]],[[0,2,2,0],[2,1,3,2],[1,3,3,0],[0,1,2,2]],[[0,3,2,0],[2,1,3,2],[1,3,3,0],[0,2,1,1]],[[0,2,3,0],[2,1,3,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,1,4,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,1,3,3],[1,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,1,3,2],[1,4,3,0],[0,2,1,1]],[[0,2,2,0],[2,1,3,2],[1,3,4,0],[0,2,1,1]],[[0,2,2,0],[2,1,3,2],[1,3,3,0],[0,3,1,1]],[[0,3,2,0],[2,1,3,2],[1,3,3,0],[1,0,2,1]],[[0,2,3,0],[2,1,3,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,1,4,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,1,3,3],[1,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,1,3,2],[1,4,3,0],[1,0,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,4,0],[1,0,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,3,0],[1,0,3,1]],[[0,2,2,0],[2,1,3,2],[1,3,3,0],[1,0,2,2]],[[0,3,2,0],[2,1,3,2],[1,3,3,0],[1,1,1,1]],[[0,2,3,0],[2,1,3,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,1,4,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,1,3,3],[1,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,1,3,2],[1,4,3,0],[1,1,1,1]],[[0,2,2,0],[2,1,3,2],[1,3,4,0],[1,1,1,1]],[[0,3,2,0],[2,1,3,2],[1,3,3,1],[0,0,2,1]],[[0,2,3,0],[2,1,3,2],[1,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,1,4,2],[1,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,1,3,3],[1,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,1,3,2],[1,3,4,1],[0,0,2,1]],[[0,3,2,0],[2,1,3,2],[1,3,3,1],[0,1,1,1]],[[0,2,3,0],[2,1,3,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,1,4,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,1,3,3],[1,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,1,3,2],[1,4,3,1],[0,1,1,1]],[[0,2,2,0],[2,1,3,2],[1,3,4,1],[0,1,1,1]],[[0,3,2,0],[2,1,3,2],[1,3,3,1],[0,1,2,0]],[[0,2,3,0],[2,1,3,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,1,4,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,1,3,3],[1,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,1,3,2],[1,4,3,1],[0,1,2,0]],[[0,2,2,0],[2,1,3,2],[1,3,4,1],[0,1,2,0]],[[0,2,2,0],[2,1,3,2],[1,3,3,1],[0,1,3,0]],[[0,3,2,0],[2,1,3,2],[1,3,3,1],[0,2,0,1]],[[0,2,3,0],[2,1,3,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,1,4,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,1,3,3],[1,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,1,3,2],[1,4,3,1],[0,2,0,1]],[[0,2,2,0],[2,1,3,2],[1,3,4,1],[0,2,0,1]],[[0,2,2,0],[2,1,3,2],[1,3,3,1],[0,3,0,1]],[[0,3,2,0],[2,1,3,2],[1,3,3,1],[0,2,1,0]],[[0,2,3,0],[2,1,3,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,1,4,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,1,3,3],[1,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,1,3,2],[1,4,3,1],[0,2,1,0]],[[0,2,2,0],[2,1,3,2],[1,3,4,1],[0,2,1,0]],[[0,2,2,0],[2,1,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,2,1],[1,0,4,1],[2,3,3,2],[0,1,0,1]],[[1,2,2,2],[1,0,3,1],[2,3,3,2],[0,1,0,1]],[[1,2,3,1],[1,0,3,1],[2,3,3,2],[0,1,0,1]],[[1,3,2,1],[1,0,3,1],[2,3,3,2],[0,1,0,1]],[[2,2,2,1],[1,0,3,1],[2,3,3,2],[0,1,0,1]],[[0,3,2,0],[2,1,3,2],[1,3,3,1],[1,0,1,1]],[[0,2,3,0],[2,1,3,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,1,4,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,1,3,3],[1,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,1,3,2],[1,4,3,1],[1,0,1,1]],[[0,2,2,0],[2,1,3,2],[1,3,4,1],[1,0,1,1]],[[0,3,2,0],[2,1,3,2],[1,3,3,1],[1,0,2,0]],[[0,2,3,0],[2,1,3,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,1,4,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,1,3,3],[1,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,1,3,2],[1,4,3,1],[1,0,2,0]],[[0,2,2,0],[2,1,3,2],[1,3,4,1],[1,0,2,0]],[[0,2,2,0],[2,1,3,2],[1,3,3,1],[1,0,3,0]],[[0,3,2,0],[2,1,3,2],[1,3,3,1],[1,1,0,1]],[[0,2,3,0],[2,1,3,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,1,4,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,1,3,3],[1,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,1,3,2],[1,4,3,1],[1,1,0,1]],[[0,2,2,0],[2,1,3,2],[1,3,4,1],[1,1,0,1]],[[0,3,2,0],[2,1,3,2],[1,3,3,1],[1,1,1,0]],[[0,2,3,0],[2,1,3,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,1,4,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,1,3,3],[1,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,1,3,2],[1,4,3,1],[1,1,1,0]],[[0,2,2,0],[2,1,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,1],[1,0,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[1,0,3,1],[2,4,3,1],[1,2,0,0]],[[1,2,2,1],[1,0,3,1],[3,3,3,1],[1,2,0,0]],[[0,3,2,0],[2,1,3,2],[1,3,3,2],[0,1,0,1]],[[0,2,3,0],[2,1,3,2],[1,3,3,2],[0,1,0,1]],[[0,2,2,0],[2,1,4,2],[1,3,3,2],[0,1,0,1]],[[0,2,2,0],[2,1,3,3],[1,3,3,2],[0,1,0,1]],[[0,2,2,0],[2,1,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,0,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[1,0,3,1],[2,3,4,1],[1,1,1,0]],[[1,2,2,1],[1,0,3,1],[2,4,3,1],[1,1,1,0]],[[1,2,2,1],[1,0,3,1],[3,3,3,1],[1,1,1,0]],[[1,2,2,1],[1,0,4,1],[2,3,3,1],[1,1,1,0]],[[1,2,2,2],[1,0,3,1],[2,3,3,1],[1,1,1,0]],[[1,2,3,1],[1,0,3,1],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[1,0,3,1],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[1,0,3,1],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[1,0,3,1],[2,3,3,1],[2,1,0,1]],[[1,2,2,1],[1,0,3,1],[2,3,4,1],[1,1,0,1]],[[1,2,2,1],[1,0,3,1],[2,4,3,1],[1,1,0,1]],[[1,2,2,1],[1,0,3,1],[3,3,3,1],[1,1,0,1]],[[1,2,2,1],[1,0,4,1],[2,3,3,1],[1,1,0,1]],[[1,2,2,2],[1,0,3,1],[2,3,3,1],[1,1,0,1]],[[1,2,3,1],[1,0,3,1],[2,3,3,1],[1,1,0,1]],[[1,3,2,1],[1,0,3,1],[2,3,3,1],[1,1,0,1]],[[2,2,2,1],[1,0,3,1],[2,3,3,1],[1,1,0,1]],[[0,3,2,0],[2,1,3,2],[1,3,3,2],[1,0,0,1]],[[0,2,3,0],[2,1,3,2],[1,3,3,2],[1,0,0,1]],[[0,2,2,0],[2,1,4,2],[1,3,3,2],[1,0,0,1]],[[0,2,2,0],[2,1,3,3],[1,3,3,2],[1,0,0,1]],[[0,2,2,0],[2,1,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,1],[1,0,3,1],[2,3,3,1],[1,0,3,0]],[[1,2,2,1],[1,0,3,1],[2,3,3,1],[2,0,2,0]],[[1,2,2,1],[1,0,3,1],[2,3,4,1],[1,0,2,0]],[[1,2,2,1],[1,0,3,1],[2,4,3,1],[1,0,2,0]],[[1,2,2,1],[1,0,3,1],[3,3,3,1],[1,0,2,0]],[[1,2,2,1],[1,0,4,1],[2,3,3,1],[1,0,2,0]],[[1,2,2,2],[1,0,3,1],[2,3,3,1],[1,0,2,0]],[[1,2,3,1],[1,0,3,1],[2,3,3,1],[1,0,2,0]],[[1,3,2,1],[1,0,3,1],[2,3,3,1],[1,0,2,0]],[[2,2,2,1],[1,0,3,1],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[1,0,3,1],[2,3,3,1],[2,0,1,1]],[[1,2,2,1],[1,0,3,1],[2,3,4,1],[1,0,1,1]],[[1,2,2,1],[1,0,3,1],[2,4,3,1],[1,0,1,1]],[[1,2,2,1],[1,0,3,1],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[1,0,4,1],[2,3,3,1],[1,0,1,1]],[[1,2,2,2],[1,0,3,1],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[1,0,3,1],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[1,0,3,1],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[1,0,3,1],[2,3,3,1],[1,0,1,1]],[[1,2,2,1],[1,0,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[1,0,3,1],[2,3,4,1],[0,2,1,0]],[[1,2,2,1],[1,0,3,1],[2,4,3,1],[0,2,1,0]],[[1,2,2,1],[1,0,3,1],[3,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,0,4,1],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[1,0,3,1],[2,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,0,3,1],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[1,0,3,1],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[1,0,3,1],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,0,3,1],[2,3,3,1],[0,3,0,1]],[[1,2,2,1],[1,0,3,1],[2,3,4,1],[0,2,0,1]],[[1,2,2,1],[1,0,3,1],[2,4,3,1],[0,2,0,1]],[[1,2,2,1],[1,0,3,1],[3,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,0,4,1],[2,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,0,3,1],[2,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,0,3,1],[2,3,3,1],[0,2,0,1]],[[1,3,2,1],[1,0,3,1],[2,3,3,1],[0,2,0,1]],[[2,2,2,1],[1,0,3,1],[2,3,3,1],[0,2,0,1]],[[1,2,2,1],[1,0,3,1],[2,3,3,1],[0,1,3,0]],[[1,2,2,1],[1,0,3,1],[2,3,4,1],[0,1,2,0]],[[1,2,2,1],[1,0,3,1],[2,4,3,1],[0,1,2,0]],[[1,2,2,1],[1,0,3,1],[3,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,0,4,1],[2,3,3,1],[0,1,2,0]],[[1,2,2,2],[1,0,3,1],[2,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,0,3,1],[2,3,3,1],[0,1,2,0]],[[1,3,2,1],[1,0,3,1],[2,3,3,1],[0,1,2,0]],[[2,2,2,1],[1,0,3,1],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,0,3,1],[2,3,4,1],[0,1,1,1]],[[1,2,2,1],[1,0,3,1],[2,4,3,1],[0,1,1,1]],[[1,2,2,1],[1,0,3,1],[3,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,0,4,1],[2,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,0,3,1],[2,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,0,3,1],[2,3,3,1],[0,1,1,1]],[[0,3,2,0],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,3,0],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[3,1,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,4,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,3],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[3,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[2,0,1,3],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[2,0,1,2],[2,2,2,1]],[[0,2,2,0],[2,1,3,2],[2,0,1,2],[1,3,2,1]],[[0,2,2,0],[2,1,3,2],[2,0,1,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,2],[2,0,1,2],[1,2,2,2]],[[0,3,2,0],[2,1,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,3,0],[2,1,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,0],[2,1,4,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,0],[2,1,3,3],[2,0,2,2],[1,2,1,1]],[[0,2,2,0],[2,1,3,2],[2,0,2,3],[1,2,1,1]],[[0,2,2,0],[2,1,3,2],[2,0,2,2],[1,2,1,2]],[[0,3,2,0],[2,1,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,3,0],[2,1,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,1,4,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,1,3,3],[2,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,1,3,2],[2,0,2,3],[1,2,2,0]],[[0,3,2,0],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,3,0],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[3,1,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,1,4,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,1,3,3],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[3,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[2,0,4,0],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[2,0,3,0],[2,2,2,1]],[[0,2,2,0],[2,1,3,2],[2,0,3,0],[1,3,2,1]],[[0,2,2,0],[2,1,3,2],[2,0,3,0],[1,2,3,1]],[[0,2,2,0],[2,1,3,2],[2,0,3,0],[1,2,2,2]],[[0,3,2,0],[2,1,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,3,0],[2,1,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,4,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,3,3],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,1,3,2],[2,0,4,1],[1,2,1,1]],[[0,3,2,0],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,3,0],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[3,1,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,1,4,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,1,3,3],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,1,3,2],[3,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,1,3,2],[2,0,4,1],[1,2,2,0]],[[0,2,2,0],[2,1,3,2],[2,0,3,1],[2,2,2,0]],[[0,2,2,0],[2,1,3,2],[2,0,3,1],[1,3,2,0]],[[0,2,2,0],[2,1,3,2],[2,0,3,1],[1,2,3,0]],[[1,3,2,1],[1,0,3,1],[2,3,3,1],[0,1,1,1]],[[2,2,2,1],[1,0,3,1],[2,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,0,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,2,1],[1,0,4,1],[2,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,0,3,1],[2,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,0,3,1],[2,3,3,1],[0,0,2,1]],[[1,3,2,1],[1,0,3,1],[2,3,3,1],[0,0,2,1]],[[2,2,2,1],[1,0,3,1],[2,3,3,1],[0,0,2,1]],[[0,3,2,0],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,3,0],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[3,1,3,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,1,4,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,3],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[3,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[2,1,0,3],[1,2,2,1]],[[0,2,2,0],[2,1,3,2],[2,1,0,2],[2,2,2,1]],[[0,2,2,0],[2,1,3,2],[2,1,0,2],[1,3,2,1]],[[0,2,2,0],[2,1,3,2],[2,1,0,2],[1,2,3,1]],[[0,2,2,0],[2,1,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,1],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[1,0,3,1],[2,4,3,0],[1,2,0,1]],[[1,2,2,1],[1,0,3,1],[3,3,3,0],[1,2,0,1]],[[1,2,2,1],[1,0,3,1],[2,3,3,0],[2,1,1,1]],[[1,2,2,1],[1,0,3,1],[2,3,4,0],[1,1,1,1]],[[1,2,2,1],[1,0,3,1],[2,4,3,0],[1,1,1,1]],[[1,2,2,1],[1,0,3,1],[3,3,3,0],[1,1,1,1]],[[1,2,2,1],[1,0,4,1],[2,3,3,0],[1,1,1,1]],[[1,2,2,2],[1,0,3,1],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[1,0,3,1],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[1,0,3,1],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[1,0,3,1],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[1,0,3,1],[2,3,3,0],[1,0,2,2]],[[1,2,2,1],[1,0,3,1],[2,3,3,0],[1,0,3,1]],[[1,2,2,1],[1,0,3,1],[2,3,3,0],[2,0,2,1]],[[1,2,2,1],[1,0,3,1],[2,3,4,0],[1,0,2,1]],[[1,2,2,1],[1,0,3,1],[2,4,3,0],[1,0,2,1]],[[1,2,2,1],[1,0,3,1],[3,3,3,0],[1,0,2,1]],[[1,2,2,1],[1,0,4,1],[2,3,3,0],[1,0,2,1]],[[1,2,2,2],[1,0,3,1],[2,3,3,0],[1,0,2,1]],[[1,2,3,1],[1,0,3,1],[2,3,3,0],[1,0,2,1]],[[1,3,2,1],[1,0,3,1],[2,3,3,0],[1,0,2,1]],[[2,2,2,1],[1,0,3,1],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[1,0,3,1],[2,3,3,0],[0,3,1,1]],[[1,2,2,1],[1,0,3,1],[2,3,4,0],[0,2,1,1]],[[1,2,2,1],[1,0,3,1],[2,4,3,0],[0,2,1,1]],[[1,2,2,1],[1,0,3,1],[3,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,0,4,1],[2,3,3,0],[0,2,1,1]],[[1,2,2,2],[1,0,3,1],[2,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,0,3,1],[2,3,3,0],[0,2,1,1]],[[1,3,2,1],[1,0,3,1],[2,3,3,0],[0,2,1,1]],[[2,2,2,1],[1,0,3,1],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,0,3,1],[2,3,3,0],[0,1,2,2]],[[1,2,2,1],[1,0,3,1],[2,3,3,0],[0,1,3,1]],[[1,2,2,1],[1,0,3,1],[2,3,4,0],[0,1,2,1]],[[1,2,2,1],[1,0,3,1],[2,4,3,0],[0,1,2,1]],[[1,2,2,1],[1,0,3,1],[3,3,3,0],[0,1,2,1]],[[1,2,2,1],[1,0,4,1],[2,3,3,0],[0,1,2,1]],[[1,2,2,2],[1,0,3,1],[2,3,3,0],[0,1,2,1]],[[1,2,3,1],[1,0,3,1],[2,3,3,0],[0,1,2,1]],[[1,3,2,1],[1,0,3,1],[2,3,3,0],[0,1,2,1]],[[2,2,2,1],[1,0,3,1],[2,3,3,0],[0,1,2,1]],[[1,2,2,1],[1,0,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[1,0,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[1,0,3,1],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[1,0,3,1],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[1,0,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[1,0,4,1],[2,3,2,2],[1,1,0,1]],[[1,2,2,2],[1,0,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[1,0,3,1],[2,3,2,2],[1,1,0,1]],[[1,3,2,1],[1,0,3,1],[2,3,2,2],[1,1,0,1]],[[2,2,2,1],[1,0,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[1,0,4,1],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[1,0,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[1,0,3,1],[2,3,2,2],[1,0,2,0]],[[1,3,2,1],[1,0,3,1],[2,3,2,2],[1,0,2,0]],[[2,2,2,1],[1,0,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[1,0,4,1],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[1,0,3,1],[2,3,2,2],[1,0,1,1]],[[1,2,3,1],[1,0,3,1],[2,3,2,2],[1,0,1,1]],[[1,3,2,1],[1,0,3,1],[2,3,2,2],[1,0,1,1]],[[2,2,2,1],[1,0,3,1],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[1,0,4,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,0,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,0,3,1],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[1,0,3,1],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[1,0,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,0,4,1],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,0,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,0,3,1],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[1,0,3,1],[2,3,2,2],[0,2,0,1]],[[2,2,2,1],[1,0,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[1,0,4,1],[2,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,0,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,0,3,1],[2,3,2,2],[0,1,2,0]],[[1,3,2,1],[1,0,3,1],[2,3,2,2],[0,1,2,0]],[[2,2,2,1],[1,0,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,0,4,1],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,0,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,0,3,1],[2,3,2,2],[0,1,1,1]],[[1,3,2,1],[1,0,3,1],[2,3,2,2],[0,1,1,1]],[[2,2,2,1],[1,0,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,0,4,1],[2,3,2,2],[0,0,2,1]],[[1,2,2,2],[1,0,3,1],[2,3,2,2],[0,0,2,1]],[[1,2,3,1],[1,0,3,1],[2,3,2,2],[0,0,2,1]],[[1,3,2,1],[1,0,3,1],[2,3,2,2],[0,0,2,1]],[[2,2,2,1],[1,0,3,1],[2,3,2,2],[0,0,2,1]],[[1,2,2,1],[1,0,3,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[1,0,3,1],[2,4,2,1],[1,1,2,0]],[[1,2,2,1],[1,0,3,1],[3,3,2,1],[1,1,2,0]],[[1,2,2,1],[1,0,3,1],[2,3,2,1],[0,2,3,0]],[[1,2,2,1],[1,0,3,1],[2,3,2,1],[0,3,2,0]],[[1,2,2,1],[1,0,3,1],[2,4,2,1],[0,2,2,0]],[[1,2,2,1],[1,0,3,1],[3,3,2,1],[0,2,2,0]],[[1,2,2,1],[1,0,3,1],[2,3,2,0],[2,1,2,1]],[[1,2,2,1],[1,0,3,1],[2,4,2,0],[1,1,2,1]],[[1,2,2,1],[1,0,3,1],[3,3,2,0],[1,1,2,1]],[[1,2,2,1],[1,0,3,1],[2,3,2,0],[0,2,2,2]],[[1,2,2,1],[1,0,3,1],[2,3,2,0],[0,2,3,1]],[[1,2,2,1],[1,0,3,1],[2,3,2,0],[0,3,2,1]],[[1,2,2,1],[1,0,3,1],[2,4,2,0],[0,2,2,1]],[[1,2,2,1],[1,0,3,1],[3,3,2,0],[0,2,2,1]],[[1,2,2,1],[1,0,4,1],[2,3,1,2],[1,0,2,1]],[[1,2,2,2],[1,0,3,1],[2,3,1,2],[1,0,2,1]],[[1,2,3,1],[1,0,3,1],[2,3,1,2],[1,0,2,1]],[[1,3,2,1],[1,0,3,1],[2,3,1,2],[1,0,2,1]],[[2,2,2,1],[1,0,3,1],[2,3,1,2],[1,0,2,1]],[[1,2,2,1],[1,0,4,1],[2,3,1,2],[0,1,2,1]],[[1,2,2,2],[1,0,3,1],[2,3,1,2],[0,1,2,1]],[[1,2,3,1],[1,0,3,1],[2,3,1,2],[0,1,2,1]],[[1,3,2,1],[1,0,3,1],[2,3,1,2],[0,1,2,1]],[[2,2,2,1],[1,0,3,1],[2,3,1,2],[0,1,2,1]],[[1,2,2,1],[1,0,4,1],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[1,0,3,1],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[1,0,3,1],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[1,0,3,1],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[1,0,3,1],[2,3,0,2],[0,2,2,1]],[[1,2,2,1],[1,0,3,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[1,0,3,1],[2,2,3,1],[2,2,1,0]],[[1,2,2,1],[1,0,3,1],[3,2,3,1],[1,2,1,0]],[[1,2,2,1],[1,0,3,1],[2,2,3,1],[1,3,0,1]],[[1,2,2,1],[1,0,3,1],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[1,0,3,1],[3,2,3,1],[1,2,0,1]],[[1,2,2,1],[1,0,3,1],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[1,0,3,1],[2,2,3,1],[0,3,2,0]],[[1,2,2,1],[1,0,3,1],[2,2,4,1],[0,2,2,0]],[[1,2,2,1],[1,0,4,1],[2,2,3,1],[0,2,2,0]],[[1,2,2,2],[1,0,3,1],[2,2,3,1],[0,2,2,0]],[[1,2,3,1],[1,0,3,1],[2,2,3,1],[0,2,2,0]],[[1,3,2,1],[1,0,3,1],[2,2,3,1],[0,2,2,0]],[[2,2,2,1],[1,0,3,1],[2,2,3,1],[0,2,2,0]],[[1,2,2,1],[1,0,3,1],[2,2,4,1],[0,2,1,1]],[[1,2,2,1],[1,0,4,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[1,0,3,1],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[1,0,3,1],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[1,0,3,1],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[1,0,3,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[1,0,3,1],[2,2,3,0],[1,3,1,1]],[[1,2,2,1],[1,0,3,1],[2,2,3,0],[2,2,1,1]],[[1,2,2,1],[1,0,3,1],[3,2,3,0],[1,2,1,1]],[[1,2,2,1],[1,0,3,1],[2,2,3,0],[0,2,2,2]],[[1,2,2,1],[1,0,3,1],[2,2,3,0],[0,2,3,1]],[[1,2,2,1],[1,0,3,1],[2,2,3,0],[0,3,2,1]],[[1,2,2,1],[1,0,3,1],[2,2,4,0],[0,2,2,1]],[[1,2,2,1],[1,0,4,1],[2,2,3,0],[0,2,2,1]],[[1,2,2,2],[1,0,3,1],[2,2,3,0],[0,2,2,1]],[[1,2,3,1],[1,0,3,1],[2,2,3,0],[0,2,2,1]],[[1,3,2,1],[1,0,3,1],[2,2,3,0],[0,2,2,1]],[[2,2,2,1],[1,0,3,1],[2,2,3,0],[0,2,2,1]],[[1,2,2,1],[1,0,4,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,2],[1,0,3,1],[2,2,2,2],[0,2,2,0]],[[1,2,3,1],[1,0,3,1],[2,2,2,2],[0,2,2,0]],[[1,3,2,1],[1,0,3,1],[2,2,2,2],[0,2,2,0]],[[2,2,2,1],[1,0,3,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,1],[1,0,4,1],[2,2,2,2],[0,2,1,1]],[[1,2,2,2],[1,0,3,1],[2,2,2,2],[0,2,1,1]],[[1,2,3,1],[1,0,3,1],[2,2,2,2],[0,2,1,1]],[[1,3,2,1],[1,0,3,1],[2,2,2,2],[0,2,1,1]],[[2,2,2,1],[1,0,3,1],[2,2,2,2],[0,2,1,1]],[[1,2,2,1],[1,0,3,1],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[1,0,3,1],[2,2,2,1],[1,3,2,0]],[[1,2,2,1],[1,0,3,1],[2,2,2,1],[2,2,2,0]],[[1,2,2,1],[1,0,3,1],[3,2,2,1],[1,2,2,0]],[[1,2,2,1],[1,0,3,1],[2,2,2,0],[1,2,2,2]],[[1,2,2,1],[1,0,3,1],[2,2,2,0],[1,2,3,1]],[[1,2,2,1],[1,0,3,1],[2,2,2,0],[1,3,2,1]],[[1,2,2,1],[1,0,3,1],[2,2,2,0],[2,2,2,1]],[[1,2,2,1],[1,0,3,1],[3,2,2,0],[1,2,2,1]],[[1,2,2,1],[1,0,4,1],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[1,0,3,1],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[1,0,3,1],[2,2,1,2],[0,2,2,1]],[[1,3,2,1],[1,0,3,1],[2,2,1,2],[0,2,2,1]],[[2,2,2,1],[1,0,3,1],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[1,0,4,1],[2,2,0,2],[1,2,2,1]],[[1,2,2,2],[1,0,3,1],[2,2,0,2],[1,2,2,1]],[[1,2,3,1],[1,0,3,1],[2,2,0,2],[1,2,2,1]],[[1,3,2,1],[1,0,3,1],[2,2,0,2],[1,2,2,1]],[[2,2,2,1],[1,0,3,1],[2,2,0,2],[1,2,2,1]],[[1,2,2,1],[1,0,3,1],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[1,0,3,1],[2,1,3,1],[1,3,2,0]],[[1,2,2,1],[1,0,3,1],[2,1,3,1],[2,2,2,0]],[[1,2,2,1],[1,0,3,1],[2,1,4,1],[1,2,2,0]],[[1,2,2,1],[1,0,3,1],[3,1,3,1],[1,2,2,0]],[[1,2,2,1],[1,0,4,1],[2,1,3,1],[1,2,2,0]],[[1,2,2,2],[1,0,3,1],[2,1,3,1],[1,2,2,0]],[[1,2,3,1],[1,0,3,1],[2,1,3,1],[1,2,2,0]],[[1,3,2,1],[1,0,3,1],[2,1,3,1],[1,2,2,0]],[[2,2,2,1],[1,0,3,1],[2,1,3,1],[1,2,2,0]],[[1,2,2,1],[1,0,3,1],[2,1,4,1],[1,2,1,1]],[[1,2,2,1],[1,0,4,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,2],[1,0,3,1],[2,1,3,1],[1,2,1,1]],[[1,2,3,1],[1,0,3,1],[2,1,3,1],[1,2,1,1]],[[1,3,2,1],[1,0,3,1],[2,1,3,1],[1,2,1,1]],[[2,2,2,1],[1,0,3,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[1,0,3,1],[2,1,3,0],[1,2,2,2]],[[1,2,2,1],[1,0,3,1],[2,1,3,0],[1,2,3,1]],[[1,2,2,1],[1,0,3,1],[2,1,3,0],[1,3,2,1]],[[1,2,2,1],[1,0,3,1],[2,1,3,0],[2,2,2,1]],[[1,2,2,1],[1,0,3,1],[2,1,4,0],[1,2,2,1]],[[1,2,2,1],[1,0,3,1],[3,1,3,0],[1,2,2,1]],[[1,2,2,1],[1,0,4,1],[2,1,3,0],[1,2,2,1]],[[1,2,2,2],[1,0,3,1],[2,1,3,0],[1,2,2,1]],[[1,2,3,1],[1,0,3,1],[2,1,3,0],[1,2,2,1]],[[1,3,2,1],[1,0,3,1],[2,1,3,0],[1,2,2,1]],[[2,2,2,1],[1,0,3,1],[2,1,3,0],[1,2,2,1]],[[1,2,2,1],[1,0,4,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[1,0,3,1],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[1,0,3,1],[2,1,2,2],[1,2,2,0]],[[1,3,2,1],[1,0,3,1],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[1,0,3,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[1,0,4,1],[2,1,2,2],[1,2,1,1]],[[1,2,2,2],[1,0,3,1],[2,1,2,2],[1,2,1,1]],[[1,2,3,1],[1,0,3,1],[2,1,2,2],[1,2,1,1]],[[1,3,2,1],[1,0,3,1],[2,1,2,2],[1,2,1,1]],[[2,2,2,1],[1,0,3,1],[2,1,2,2],[1,2,1,1]],[[1,2,2,1],[1,0,4,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[1,0,3,1],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[1,0,3,1],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[1,0,3,1],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[1,0,3,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[1,0,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,0,3,1],[1,3,3,1],[2,2,1,0]],[[1,2,2,1],[1,0,3,1],[1,3,4,1],[1,2,1,0]],[[1,2,2,1],[1,0,3,1],[1,4,3,1],[1,2,1,0]],[[1,2,2,1],[1,0,4,1],[1,3,3,1],[1,2,1,0]],[[1,2,2,2],[1,0,3,1],[1,3,3,1],[1,2,1,0]],[[1,2,3,1],[1,0,3,1],[1,3,3,1],[1,2,1,0]],[[1,3,2,1],[1,0,3,1],[1,3,3,1],[1,2,1,0]],[[2,2,2,1],[1,0,3,1],[1,3,3,1],[1,2,1,0]],[[1,2,2,1],[1,0,3,1],[1,3,3,1],[1,3,0,1]],[[1,2,2,1],[1,0,3,1],[1,3,3,1],[2,2,0,1]],[[1,2,2,1],[1,0,3,1],[1,3,4,1],[1,2,0,1]],[[1,2,2,1],[1,0,3,1],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[1,0,4,1],[1,3,3,1],[1,2,0,1]],[[1,2,2,2],[1,0,3,1],[1,3,3,1],[1,2,0,1]],[[1,2,3,1],[1,0,3,1],[1,3,3,1],[1,2,0,1]],[[1,3,2,1],[1,0,3,1],[1,3,3,1],[1,2,0,1]],[[2,2,2,1],[1,0,3,1],[1,3,3,1],[1,2,0,1]],[[1,2,2,1],[1,0,3,1],[1,3,3,1],[1,1,3,0]],[[1,2,2,1],[1,0,3,1],[1,3,4,1],[1,1,2,0]],[[1,2,2,1],[1,0,3,1],[1,4,3,1],[1,1,2,0]],[[1,2,2,1],[1,0,4,1],[1,3,3,1],[1,1,2,0]],[[1,2,2,2],[1,0,3,1],[1,3,3,1],[1,1,2,0]],[[1,2,3,1],[1,0,3,1],[1,3,3,1],[1,1,2,0]],[[1,3,2,1],[1,0,3,1],[1,3,3,1],[1,1,2,0]],[[2,2,2,1],[1,0,3,1],[1,3,3,1],[1,1,2,0]],[[1,2,2,1],[1,0,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,0,3,1],[1,4,3,1],[1,1,1,1]],[[1,2,2,1],[1,0,4,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[1,0,3,1],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[1,0,3,1],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[1,0,3,1],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[1,0,3,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,0,3,1],[1,3,3,0],[1,3,1,1]],[[1,2,2,1],[1,0,3,1],[1,3,3,0],[2,2,1,1]],[[1,2,2,1],[1,0,3,1],[1,3,4,0],[1,2,1,1]],[[1,2,2,1],[1,0,3,1],[1,4,3,0],[1,2,1,1]],[[1,2,2,1],[1,0,4,1],[1,3,3,0],[1,2,1,1]],[[1,2,2,2],[1,0,3,1],[1,3,3,0],[1,2,1,1]],[[1,2,3,1],[1,0,3,1],[1,3,3,0],[1,2,1,1]],[[1,3,2,1],[1,0,3,1],[1,3,3,0],[1,2,1,1]],[[2,2,2,1],[1,0,3,1],[1,3,3,0],[1,2,1,1]],[[1,2,2,1],[1,0,3,1],[1,3,3,0],[1,1,2,2]],[[1,2,2,1],[1,0,3,1],[1,3,3,0],[1,1,3,1]],[[1,2,2,1],[1,0,3,1],[1,3,4,0],[1,1,2,1]],[[1,2,2,1],[1,0,3,1],[1,4,3,0],[1,1,2,1]],[[1,2,2,1],[1,0,4,1],[1,3,3,0],[1,1,2,1]],[[1,2,2,2],[1,0,3,1],[1,3,3,0],[1,1,2,1]],[[1,2,3,1],[1,0,3,1],[1,3,3,0],[1,1,2,1]],[[1,3,2,1],[1,0,3,1],[1,3,3,0],[1,1,2,1]],[[2,2,2,1],[1,0,3,1],[1,3,3,0],[1,1,2,1]],[[1,2,2,1],[1,0,4,1],[1,3,2,2],[1,2,1,0]],[[1,2,2,2],[1,0,3,1],[1,3,2,2],[1,2,1,0]],[[1,2,3,1],[1,0,3,1],[1,3,2,2],[1,2,1,0]],[[1,3,2,1],[1,0,3,1],[1,3,2,2],[1,2,1,0]],[[2,2,2,1],[1,0,3,1],[1,3,2,2],[1,2,1,0]],[[1,2,2,1],[1,0,4,1],[1,3,2,2],[1,2,0,1]],[[1,2,2,2],[1,0,3,1],[1,3,2,2],[1,2,0,1]],[[1,2,3,1],[1,0,3,1],[1,3,2,2],[1,2,0,1]],[[1,3,2,1],[1,0,3,1],[1,3,2,2],[1,2,0,1]],[[2,2,2,1],[1,0,3,1],[1,3,2,2],[1,2,0,1]],[[1,2,2,1],[1,0,4,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,2],[1,0,3,1],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[1,0,3,1],[1,3,2,2],[1,1,2,0]],[[1,3,2,1],[1,0,3,1],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[1,0,3,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,0,4,1],[1,3,2,2],[1,1,1,1]],[[1,2,2,2],[1,0,3,1],[1,3,2,2],[1,1,1,1]],[[1,2,3,1],[1,0,3,1],[1,3,2,2],[1,1,1,1]],[[1,3,2,1],[1,0,3,1],[1,3,2,2],[1,1,1,1]],[[2,2,2,1],[1,0,3,1],[1,3,2,2],[1,1,1,1]],[[1,2,2,1],[1,0,3,1],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[1,0,3,1],[1,3,2,1],[1,3,2,0]],[[1,2,2,1],[1,0,3,1],[1,3,2,1],[2,2,2,0]],[[1,2,2,1],[1,0,3,1],[1,4,2,1],[1,2,2,0]],[[1,2,2,1],[1,0,3,1],[1,3,2,0],[1,2,2,2]],[[1,2,2,1],[1,0,3,1],[1,3,2,0],[1,2,3,1]],[[1,2,2,1],[1,0,3,1],[1,3,2,0],[1,3,2,1]],[[1,2,2,1],[1,0,3,1],[1,3,2,0],[2,2,2,1]],[[1,2,2,1],[1,0,3,1],[1,4,2,0],[1,2,2,1]],[[1,2,2,1],[1,0,4,1],[1,3,1,2],[1,1,2,1]],[[1,2,2,2],[1,0,3,1],[1,3,1,2],[1,1,2,1]],[[1,2,3,1],[1,0,3,1],[1,3,1,2],[1,1,2,1]],[[1,3,2,1],[1,0,3,1],[1,3,1,2],[1,1,2,1]],[[2,2,2,1],[1,0,3,1],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[1,0,4,1],[1,3,0,2],[1,2,2,1]],[[1,2,2,2],[1,0,3,1],[1,3,0,2],[1,2,2,1]],[[1,2,3,1],[1,0,3,1],[1,3,0,2],[1,2,2,1]],[[1,3,2,1],[1,0,3,1],[1,3,0,2],[1,2,2,1]],[[2,2,2,1],[1,0,3,1],[1,3,0,2],[1,2,2,1]],[[1,2,2,1],[1,0,3,1],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[1,0,3,1],[1,2,3,1],[1,3,2,0]],[[1,2,2,1],[1,0,3,1],[1,2,3,1],[2,2,2,0]],[[1,2,2,1],[1,0,3,1],[1,2,4,1],[1,2,2,0]],[[1,2,2,1],[1,0,4,1],[1,2,3,1],[1,2,2,0]],[[1,2,2,2],[1,0,3,1],[1,2,3,1],[1,2,2,0]],[[1,2,3,1],[1,0,3,1],[1,2,3,1],[1,2,2,0]],[[1,3,2,1],[1,0,3,1],[1,2,3,1],[1,2,2,0]],[[2,2,2,1],[1,0,3,1],[1,2,3,1],[1,2,2,0]],[[1,2,2,1],[1,0,3,1],[1,2,4,1],[1,2,1,1]],[[1,2,2,1],[1,0,4,1],[1,2,3,1],[1,2,1,1]],[[1,2,2,2],[1,0,3,1],[1,2,3,1],[1,2,1,1]],[[1,2,3,1],[1,0,3,1],[1,2,3,1],[1,2,1,1]],[[1,3,2,1],[1,0,3,1],[1,2,3,1],[1,2,1,1]],[[2,2,2,1],[1,0,3,1],[1,2,3,1],[1,2,1,1]],[[1,2,2,1],[1,0,3,1],[1,2,3,0],[1,2,2,2]],[[1,2,2,1],[1,0,3,1],[1,2,3,0],[1,2,3,1]],[[1,2,2,1],[1,0,3,1],[1,2,3,0],[1,3,2,1]],[[1,2,2,1],[1,0,3,1],[1,2,3,0],[2,2,2,1]],[[1,2,2,1],[1,0,3,1],[1,2,4,0],[1,2,2,1]],[[1,2,2,1],[1,0,4,1],[1,2,3,0],[1,2,2,1]],[[1,2,2,2],[1,0,3,1],[1,2,3,0],[1,2,2,1]],[[1,2,3,1],[1,0,3,1],[1,2,3,0],[1,2,2,1]],[[1,3,2,1],[1,0,3,1],[1,2,3,0],[1,2,2,1]],[[2,2,2,1],[1,0,3,1],[1,2,3,0],[1,2,2,1]],[[1,2,2,1],[1,0,4,1],[1,2,2,2],[1,2,2,0]],[[1,2,2,2],[1,0,3,1],[1,2,2,2],[1,2,2,0]],[[1,2,3,1],[1,0,3,1],[1,2,2,2],[1,2,2,0]],[[1,3,2,1],[1,0,3,1],[1,2,2,2],[1,2,2,0]],[[2,2,2,1],[1,0,3,1],[1,2,2,2],[1,2,2,0]],[[1,2,2,1],[1,0,4,1],[1,2,2,2],[1,2,1,1]],[[1,2,2,2],[1,0,3,1],[1,2,2,2],[1,2,1,1]],[[1,2,3,1],[1,0,3,1],[1,2,2,2],[1,2,1,1]],[[1,3,2,1],[1,0,3,1],[1,2,2,2],[1,2,1,1]],[[2,2,2,1],[1,0,3,1],[1,2,2,2],[1,2,1,1]],[[1,2,2,1],[1,0,4,1],[1,2,1,2],[1,2,2,1]],[[1,2,2,2],[1,0,3,1],[1,2,1,2],[1,2,2,1]],[[1,2,3,1],[1,0,3,1],[1,2,1,2],[1,2,2,1]],[[1,3,2,1],[1,0,3,1],[1,2,1,2],[1,2,2,1]],[[2,2,2,1],[1,0,3,1],[1,2,1,2],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,0,3,0],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[1,0,3,0],[3,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,2,0,0],[1,4,3,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,0],[1,3,3,2],[2,2,2,1]],[[0,2,2,0],[2,2,0,0],[1,3,3,2],[1,3,2,1]],[[0,2,2,0],[2,2,0,0],[1,3,3,2],[1,2,3,1]],[[0,2,2,0],[2,2,0,0],[1,3,3,2],[1,2,2,2]],[[0,2,2,0],[3,2,0,0],[2,2,3,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,0],[3,2,3,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,0],[2,2,3,2],[2,2,2,1]],[[0,2,2,0],[2,2,0,0],[2,2,3,2],[1,3,2,1]],[[0,2,2,0],[2,2,0,0],[2,2,3,2],[1,2,3,1]],[[0,2,2,0],[2,2,0,0],[2,2,3,2],[1,2,2,2]],[[0,2,2,0],[3,2,0,0],[2,3,3,2],[0,2,2,1]],[[0,2,2,0],[2,2,0,0],[3,3,3,2],[0,2,2,1]],[[0,2,2,0],[2,2,0,0],[2,4,3,2],[0,2,2,1]],[[0,2,2,0],[2,2,0,0],[2,3,3,2],[0,3,2,1]],[[0,2,2,0],[2,2,0,0],[2,3,3,2],[0,2,3,1]],[[0,2,2,0],[2,2,0,0],[2,3,3,2],[0,2,2,2]],[[0,2,2,0],[3,2,0,0],[2,3,3,2],[1,1,2,1]],[[0,2,2,0],[2,2,0,0],[3,3,3,2],[1,1,2,1]],[[0,2,2,0],[2,2,0,0],[2,4,3,2],[1,1,2,1]],[[0,2,2,0],[2,2,0,0],[2,3,3,2],[2,1,2,1]],[[0,2,2,0],[2,2,0,1],[1,4,3,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,1],[1,3,3,1],[2,2,2,1]],[[0,2,2,0],[2,2,0,1],[1,3,3,1],[1,3,2,1]],[[0,2,2,0],[2,2,0,1],[1,3,3,1],[1,2,3,1]],[[0,2,2,0],[2,2,0,1],[1,3,3,1],[1,2,2,2]],[[0,2,2,0],[2,2,0,1],[1,4,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,1],[1,3,3,2],[2,2,2,0]],[[0,2,2,0],[2,2,0,1],[1,3,3,2],[1,3,2,0]],[[0,2,2,0],[2,2,0,1],[1,3,3,2],[1,2,3,0]],[[0,2,2,0],[3,2,0,1],[2,2,3,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,1],[3,2,3,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,1],[2,2,3,1],[2,2,2,1]],[[0,2,2,0],[2,2,0,1],[2,2,3,1],[1,3,2,1]],[[0,2,2,0],[2,2,0,1],[2,2,3,1],[1,2,3,1]],[[0,2,2,0],[2,2,0,1],[2,2,3,1],[1,2,2,2]],[[0,2,2,0],[3,2,0,1],[2,2,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,1],[3,2,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,1],[2,2,3,2],[2,2,2,0]],[[0,2,2,0],[2,2,0,1],[2,2,3,2],[1,3,2,0]],[[0,2,2,0],[2,2,0,1],[2,2,3,2],[1,2,3,0]],[[0,2,2,0],[3,2,0,1],[2,3,3,1],[0,2,2,1]],[[0,2,2,0],[2,2,0,1],[3,3,3,1],[0,2,2,1]],[[0,2,2,0],[2,2,0,1],[2,4,3,1],[0,2,2,1]],[[0,2,2,0],[2,2,0,1],[2,3,3,1],[0,3,2,1]],[[0,2,2,0],[2,2,0,1],[2,3,3,1],[0,2,3,1]],[[0,2,2,0],[2,2,0,1],[2,3,3,1],[0,2,2,2]],[[0,2,2,0],[3,2,0,1],[2,3,3,1],[1,1,2,1]],[[0,2,2,0],[2,2,0,1],[3,3,3,1],[1,1,2,1]],[[0,2,2,0],[2,2,0,1],[2,4,3,1],[1,1,2,1]],[[0,2,2,0],[2,2,0,1],[2,3,3,1],[2,1,2,1]],[[0,2,2,0],[3,2,0,1],[2,3,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,0,1],[3,3,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,0,1],[2,4,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,0,1],[2,3,3,2],[0,3,2,0]],[[0,2,2,0],[2,2,0,1],[2,3,3,2],[0,2,3,0]],[[0,2,2,0],[3,2,0,1],[2,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,0,1],[3,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,0,1],[2,4,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,0,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,0,3,0],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[1,0,3,0],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[1,0,3,0],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[1,0,4,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[1,0,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,0,3],[1,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[1,2,2,3],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[1,2,2,2],[2,2,2,1]],[[0,2,2,0],[2,2,0,2],[1,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,2,0,2],[1,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,2,0,2],[1,2,2,2],[1,2,2,2]],[[0,2,2,0],[2,2,0,2],[1,2,4,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[1,2,3,1],[2,2,2,1]],[[0,2,2,0],[2,2,0,2],[1,2,3,1],[1,3,2,1]],[[0,2,2,0],[2,2,0,2],[1,2,3,1],[1,2,3,1]],[[0,2,2,0],[2,2,0,2],[1,2,3,1],[1,2,2,2]],[[0,2,2,0],[2,2,0,3],[1,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,0,2],[1,2,4,2],[1,2,1,1]],[[0,2,2,0],[2,2,0,2],[1,2,3,3],[1,2,1,1]],[[0,2,2,0],[2,2,0,2],[1,2,3,2],[1,2,1,2]],[[0,2,2,0],[2,2,0,3],[1,2,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[1,2,4,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[1,2,3,3],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[1,2,3,2],[2,2,2,0]],[[0,2,2,0],[2,2,0,2],[1,2,3,2],[1,3,2,0]],[[0,2,2,0],[2,2,0,2],[1,2,3,2],[1,2,3,0]],[[0,2,2,0],[2,2,0,3],[1,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[1,4,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[1,3,1,3],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[1,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,2,0,2],[1,3,1,2],[1,3,2,1]],[[0,2,2,0],[2,2,0,2],[1,3,1,2],[1,2,3,1]],[[0,2,2,0],[2,2,0,2],[1,3,1,2],[1,2,2,2]],[[0,2,2,0],[2,2,0,2],[1,4,2,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[1,3,2,1],[2,2,2,1]],[[0,2,2,0],[2,2,0,2],[1,3,2,1],[1,3,2,1]],[[0,2,2,0],[2,2,0,2],[1,3,2,1],[1,2,3,1]],[[0,2,2,0],[2,2,0,2],[1,3,2,1],[1,2,2,2]],[[0,2,2,0],[2,2,0,3],[1,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,2,0,2],[1,3,2,3],[1,1,2,1]],[[0,2,2,0],[2,2,0,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,0],[2,2,0,2],[1,3,2,2],[1,1,2,2]],[[0,2,2,0],[2,2,0,2],[1,4,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[1,3,2,2],[2,2,2,0]],[[0,2,2,0],[2,2,0,2],[1,3,2,2],[1,3,2,0]],[[0,2,2,0],[2,2,0,2],[1,3,2,2],[1,2,3,0]],[[0,2,2,0],[2,2,0,2],[1,4,3,1],[1,1,2,1]],[[0,2,2,0],[2,2,0,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,0],[2,2,0,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,0],[2,2,0,2],[1,3,3,1],[1,1,2,2]],[[0,2,2,0],[2,2,0,2],[1,4,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,0,2],[1,3,4,1],[1,2,1,1]],[[0,2,2,0],[2,2,0,2],[1,3,3,1],[2,2,1,1]],[[0,2,2,0],[2,2,0,2],[1,3,3,1],[1,3,1,1]],[[0,2,2,0],[2,2,0,3],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,0,2],[1,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,0,2],[1,3,4,2],[1,1,1,1]],[[0,2,2,0],[2,2,0,2],[1,3,3,3],[1,1,1,1]],[[0,2,2,0],[2,2,0,2],[1,3,3,2],[1,1,1,2]],[[0,2,2,0],[2,2,0,3],[1,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,0,2],[1,4,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,0,2],[1,3,4,2],[1,1,2,0]],[[0,2,2,0],[2,2,0,2],[1,3,3,3],[1,1,2,0]],[[0,2,2,0],[2,2,0,2],[1,3,3,2],[1,1,3,0]],[[0,2,2,0],[2,2,0,3],[1,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,0,2],[1,4,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,0,2],[1,3,4,2],[1,2,0,1]],[[0,2,2,0],[2,2,0,2],[1,3,3,3],[1,2,0,1]],[[0,2,2,0],[2,2,0,2],[1,3,3,2],[2,2,0,1]],[[0,2,2,0],[2,2,0,2],[1,3,3,2],[1,3,0,1]],[[0,2,2,0],[2,2,0,2],[1,3,3,2],[1,2,0,2]],[[0,2,2,0],[2,2,0,3],[1,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,0,2],[1,4,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,0,2],[1,3,4,2],[1,2,1,0]],[[0,2,2,0],[2,2,0,2],[1,3,3,3],[1,2,1,0]],[[0,2,2,0],[2,2,0,2],[1,3,3,2],[2,2,1,0]],[[0,2,2,0],[2,2,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,3,1],[1,0,3,0],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[1,0,3,0],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[1,0,3,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,0,3,0],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[1,0,3,0],[2,4,3,2],[1,1,0,1]],[[0,2,2,0],[3,2,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,3],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[3,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,1,2,3],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,1,2,2],[2,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,1,2,2],[1,3,2,1]],[[0,2,2,0],[2,2,0,2],[2,1,2,2],[1,2,3,1]],[[0,2,2,0],[2,2,0,2],[2,1,2,2],[1,2,2,2]],[[0,2,2,0],[3,2,0,2],[2,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[3,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,1,4,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,1,3,1],[2,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,1,3,1],[1,3,2,1]],[[0,2,2,0],[2,2,0,2],[2,1,3,1],[1,2,3,1]],[[0,2,2,0],[2,2,0,2],[2,1,3,1],[1,2,2,2]],[[0,2,2,0],[2,2,0,3],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,0,2],[2,1,4,2],[1,2,1,1]],[[0,2,2,0],[2,2,0,2],[2,1,3,3],[1,2,1,1]],[[0,2,2,0],[2,2,0,2],[2,1,3,2],[1,2,1,2]],[[0,2,2,0],[3,2,0,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,3],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[3,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,1,4,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,1,3,3],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,1,3,2],[2,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,1,3,2],[1,3,2,0]],[[0,2,2,0],[2,2,0,2],[2,1,3,2],[1,2,3,0]],[[0,2,2,0],[3,2,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,3],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[3,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,1,3],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,1,2],[2,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,1,2],[1,3,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,1,2],[1,2,3,1]],[[0,2,2,0],[2,2,0,2],[2,2,1,2],[1,2,2,2]],[[0,2,2,0],[3,2,0,2],[2,2,2,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[3,2,2,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,2,1],[2,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,2,1],[1,3,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,2,1],[1,2,3,1]],[[0,2,2,0],[2,2,0,2],[2,2,2,1],[1,2,2,2]],[[0,2,2,0],[2,2,0,3],[2,2,2,2],[0,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,2,3],[0,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,2,2],[0,3,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,2,2],[0,2,3,1]],[[0,2,2,0],[2,2,0,2],[2,2,2,2],[0,2,2,2]],[[0,2,2,0],[3,2,0,2],[2,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[3,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,2,2,2],[2,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,2,2,2],[1,3,2,0]],[[0,2,2,0],[2,2,0,2],[2,2,2,2],[1,2,3,0]],[[0,2,2,0],[2,2,0,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,3,1],[0,3,2,1]],[[0,2,2,0],[2,2,0,2],[2,2,3,1],[0,2,3,1]],[[0,2,2,0],[2,2,0,2],[2,2,3,1],[0,2,2,2]],[[0,2,2,0],[3,2,0,2],[2,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,0,2],[3,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,0,2],[2,2,3,1],[2,2,1,1]],[[0,2,2,0],[2,2,0,2],[2,2,3,1],[1,3,1,1]],[[0,2,2,0],[2,2,0,3],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,0,2],[2,2,4,2],[0,2,1,1]],[[0,2,2,0],[2,2,0,2],[2,2,3,3],[0,2,1,1]],[[0,2,2,0],[2,2,0,2],[2,2,3,2],[0,2,1,2]],[[0,2,2,0],[2,2,0,3],[2,2,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,2,4,2],[0,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,2,3,3],[0,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,2,3,2],[0,3,2,0]],[[0,2,2,0],[2,2,0,2],[2,2,3,2],[0,2,3,0]],[[0,2,2,0],[3,2,0,2],[2,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,0,2],[3,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,0,2],[2,2,3,2],[2,2,0,1]],[[0,2,2,0],[2,2,0,2],[2,2,3,2],[1,3,0,1]],[[0,2,2,0],[3,2,0,2],[2,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,0,2],[3,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,0,2],[2,2,3,2],[2,2,1,0]],[[0,2,2,0],[2,2,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,0,3,0],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[1,0,4,0],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[1,0,3,0],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[1,0,3,0],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[1,0,3,0],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[1,0,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[3,2,0,2],[2,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[3,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,0,2],[2,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,0,2],[1,3,2,1]],[[0,2,2,0],[3,2,0,2],[2,3,1,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[3,3,1,1],[1,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,1,1],[2,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,1,1],[1,3,2,1]],[[0,2,2,0],[3,2,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,0,3],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,0,2],[3,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,4,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,1,3],[0,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,1,2],[0,3,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,1,2],[0,2,3,1]],[[0,2,2,0],[2,2,0,2],[2,3,1,2],[0,2,2,2]],[[0,2,2,0],[3,2,0,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,0,2],[3,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,0,2],[2,4,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,1,2],[2,1,2,1]],[[0,2,2,0],[3,2,0,2],[2,3,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[3,3,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,1,2],[2,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,1,2],[1,3,2,0]],[[0,2,2,0],[3,2,0,2],[2,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,2,0,2],[3,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,4,2,1],[0,2,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,2,1],[0,3,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,2,1],[0,2,3,1]],[[0,2,2,0],[2,2,0,2],[2,3,2,1],[0,2,2,2]],[[0,2,2,0],[3,2,0,2],[2,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,2,0,2],[3,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,2,0,2],[2,4,2,1],[1,1,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,2,1],[2,1,2,1]],[[0,2,2,0],[2,2,0,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,2,3],[0,1,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,0],[2,2,0,2],[2,3,2,2],[0,1,2,2]],[[0,2,2,0],[3,2,0,2],[2,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,0,2],[3,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,4,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,2,2],[0,3,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,2,2],[0,2,3,0]],[[0,2,2,0],[2,2,0,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,2,3],[1,0,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,2,2],[1,0,3,1]],[[0,2,2,0],[2,2,0,2],[2,3,2,2],[1,0,2,2]],[[0,2,2,0],[3,2,0,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,0,2],[3,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,0,2],[2,4,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,2,2],[2,1,2,0]],[[0,2,2,0],[3,2,0,2],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,0,2],[3,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,0,2],[2,4,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,4,1],[0,1,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,1],[0,1,3,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,1],[0,1,2,2]],[[0,2,2,0],[3,2,0,2],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,0,2],[3,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,0,2],[2,4,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,0,2],[2,3,4,1],[0,2,1,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,1],[0,3,1,1]],[[0,2,2,0],[3,2,0,2],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,0,2],[3,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,0,2],[2,4,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,4,1],[1,0,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,1],[2,0,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,1],[1,0,3,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,1],[1,0,2,2]],[[0,2,2,0],[3,2,0,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,0,2],[3,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,0,2],[2,4,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,0,2],[2,3,4,1],[1,1,1,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,1],[2,1,1,1]],[[0,2,2,0],[3,2,0,2],[2,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,0,2],[3,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,0,2],[2,4,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[1,0,3,0],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[1,0,3,0],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[1,0,3,0],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,0,4,0],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[1,0,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,0,3],[2,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,4,2],[0,0,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,3],[0,0,2,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[0,0,2,2]],[[0,2,2,0],[3,2,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,0,3],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,0,2],[3,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,0,2],[2,4,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,0,2],[2,3,4,2],[0,1,1,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,3],[0,1,1,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[0,1,1,2]],[[0,2,2,0],[3,2,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,0,3],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,0,2],[3,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,0,2],[2,4,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,4,2],[0,1,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,3,3],[0,1,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[0,1,3,0]],[[0,2,2,0],[3,2,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,0,3],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,0,2],[3,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,0,2],[2,4,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,0,2],[2,3,4,2],[0,2,0,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,3],[0,2,0,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[0,3,0,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[0,2,0,2]],[[0,2,2,0],[3,2,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,0,3],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,0,2],[3,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,0,2],[2,4,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,0,2],[2,3,4,2],[0,2,1,0]],[[0,2,2,0],[2,2,0,2],[2,3,3,3],[0,2,1,0]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,3,1],[1,0,3,0],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[1,0,3,0],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[1,0,3,0],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[1,0,1,2]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[1,0,3,0],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[1,0,3,0],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[1,0,3,0],[3,3,3,2],[1,0,1,1]],[[0,2,2,0],[3,2,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,0,3],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,0,2],[3,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,0,2],[2,4,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,0,2],[2,3,4,2],[1,0,1,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,3],[1,0,1,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[2,0,1,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[1,0,1,2]],[[0,2,2,0],[3,2,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,0,3],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,0,2],[3,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,0,2],[2,4,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,4,2],[1,0,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,3,3],[1,0,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[2,0,2,0]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[1,0,3,0]],[[0,2,2,0],[3,2,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,0,3],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,0,2],[3,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,0,2],[2,4,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,0,2],[2,3,4,2],[1,1,0,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,3],[1,1,0,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[2,1,0,1]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[1,1,0,2]],[[0,2,2,0],[3,2,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,0,3],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,0,2],[3,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,0,2],[2,4,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,0,2],[2,3,4,2],[1,1,1,0]],[[0,2,2,0],[2,2,0,2],[2,3,3,3],[1,1,1,0]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[1,0,4,0],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[1,0,3,0],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[1,0,3,0],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[1,0,3,0],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[1,0,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[3,2,0,2],[2,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,2,0,2],[3,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,2,0,2],[2,4,3,2],[1,2,0,0]],[[0,2,2,0],[2,2,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,0,3,0],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,0,3,0],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[1,0,3,0],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,0,4,0],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,0,3,0],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,0,3,0],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,0,3,0],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[1,0,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,1,0],[1,2,4,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,0],[1,2,3,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,0],[1,2,3,2],[1,3,2,1]],[[0,2,2,0],[2,2,1,0],[1,2,3,2],[1,2,3,1]],[[0,2,2,0],[2,2,1,0],[1,2,3,2],[1,2,2,2]],[[0,2,2,0],[2,2,1,0],[1,4,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,0],[1,3,2,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,0],[1,3,2,2],[1,3,2,1]],[[0,2,2,0],[2,2,1,0],[1,3,2,2],[1,2,3,1]],[[0,2,2,0],[2,2,1,0],[1,3,2,2],[1,2,2,2]],[[0,2,2,0],[2,2,1,0],[1,4,3,2],[1,1,2,1]],[[0,2,2,0],[2,2,1,0],[1,3,4,2],[1,1,2,1]],[[0,2,2,0],[2,2,1,0],[1,3,3,2],[1,1,3,1]],[[0,2,2,0],[2,2,1,0],[1,3,3,2],[1,1,2,2]],[[0,2,2,0],[2,2,1,0],[1,4,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,1,0],[1,3,4,2],[1,2,1,1]],[[0,2,2,0],[2,2,1,0],[1,3,3,2],[2,2,1,1]],[[0,2,2,0],[2,2,1,0],[1,3,3,2],[1,3,1,1]],[[0,2,2,0],[3,2,1,0],[2,1,3,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,0],[3,1,3,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,0],[2,1,4,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,0],[2,1,3,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,0],[2,1,3,2],[1,3,2,1]],[[0,2,2,0],[2,2,1,0],[2,1,3,2],[1,2,3,1]],[[0,2,2,0],[2,2,1,0],[2,1,3,2],[1,2,2,2]],[[0,2,2,0],[3,2,1,0],[2,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,0],[3,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,0],[2,2,2,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,0],[2,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,2,1,0],[2,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,2,1,0],[2,2,2,2],[1,2,2,2]],[[0,2,2,0],[2,2,1,0],[2,2,4,2],[0,2,2,1]],[[0,2,2,0],[2,2,1,0],[2,2,3,2],[0,3,2,1]],[[0,2,2,0],[2,2,1,0],[2,2,3,2],[0,2,3,1]],[[0,2,2,0],[2,2,1,0],[2,2,3,2],[0,2,2,2]],[[0,2,2,0],[3,2,1,0],[2,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,1,0],[3,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,1,0],[2,2,3,2],[2,2,1,1]],[[0,2,2,0],[2,2,1,0],[2,2,3,2],[1,3,1,1]],[[0,2,2,0],[3,2,1,0],[2,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,0],[3,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,0],[2,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,0],[2,3,1,2],[1,3,2,1]],[[0,2,2,0],[3,2,1,0],[2,3,2,2],[0,2,2,1]],[[0,2,2,0],[2,2,1,0],[3,3,2,2],[0,2,2,1]],[[0,2,2,0],[2,2,1,0],[2,4,2,2],[0,2,2,1]],[[0,2,2,0],[2,2,1,0],[2,3,2,2],[0,3,2,1]],[[0,2,2,0],[2,2,1,0],[2,3,2,2],[0,2,3,1]],[[0,2,2,0],[2,2,1,0],[2,3,2,2],[0,2,2,2]],[[0,2,2,0],[3,2,1,0],[2,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,2,1,0],[3,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,2,1,0],[2,4,2,2],[1,1,2,1]],[[0,2,2,0],[2,2,1,0],[2,3,2,2],[2,1,2,1]],[[0,2,2,0],[3,2,1,0],[2,3,3,2],[0,1,2,1]],[[0,2,2,0],[2,2,1,0],[3,3,3,2],[0,1,2,1]],[[0,2,2,0],[2,2,1,0],[2,4,3,2],[0,1,2,1]],[[0,2,2,0],[2,2,1,0],[2,3,4,2],[0,1,2,1]],[[0,2,2,0],[2,2,1,0],[2,3,3,2],[0,1,3,1]],[[0,2,2,0],[2,2,1,0],[2,3,3,2],[0,1,2,2]],[[0,2,2,0],[3,2,1,0],[2,3,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,1,0],[3,3,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,1,0],[2,4,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,1,0],[2,3,4,2],[0,2,1,1]],[[0,2,2,0],[2,2,1,0],[2,3,3,2],[0,3,1,1]],[[0,2,2,0],[3,2,1,0],[2,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,2,1,0],[3,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,2,1,0],[2,4,3,2],[1,0,2,1]],[[0,2,2,0],[2,2,1,0],[2,3,4,2],[1,0,2,1]],[[0,2,2,0],[2,2,1,0],[2,3,3,2],[2,0,2,1]],[[0,2,2,0],[2,2,1,0],[2,3,3,2],[1,0,3,1]],[[0,2,2,0],[2,2,1,0],[2,3,3,2],[1,0,2,2]],[[0,2,2,0],[3,2,1,0],[2,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,1,0],[3,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,1,0],[2,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,1,0],[2,3,4,2],[1,1,1,1]],[[0,2,2,0],[2,2,1,0],[2,3,3,2],[2,1,1,1]],[[0,2,2,0],[3,2,1,0],[2,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,1,0],[3,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,1,0],[2,4,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,1,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,0,3,0],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,0,3,0],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[1,0,3,0],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,0,4,0],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,0,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,1,1],[1,2,2,3],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[1,2,2,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[1,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,2,1,1],[1,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,2,1,1],[1,2,2,2],[1,2,2,2]],[[0,2,2,0],[2,2,1,1],[1,2,4,1],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[1,2,3,1],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[1,2,3,1],[1,3,2,1]],[[0,2,2,0],[2,2,1,1],[1,2,3,1],[1,2,3,1]],[[0,2,2,0],[2,2,1,1],[1,2,3,1],[1,2,2,2]],[[0,2,2,0],[2,2,1,1],[1,2,4,2],[1,2,1,1]],[[0,2,2,0],[2,2,1,1],[1,2,3,3],[1,2,1,1]],[[0,2,2,0],[2,2,1,1],[1,2,3,2],[1,2,1,2]],[[0,2,2,0],[2,2,1,1],[1,2,4,2],[1,2,2,0]],[[0,2,2,0],[2,2,1,1],[1,2,3,3],[1,2,2,0]],[[0,2,2,0],[2,2,1,1],[1,2,3,2],[2,2,2,0]],[[0,2,2,0],[2,2,1,1],[1,2,3,2],[1,3,2,0]],[[0,2,2,0],[2,2,1,1],[1,2,3,2],[1,2,3,0]],[[0,2,2,0],[2,2,1,1],[1,4,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,1,3],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,1,2],[1,3,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,1,2],[1,2,3,1]],[[0,2,2,0],[2,2,1,1],[1,3,1,2],[1,2,2,2]],[[0,2,2,0],[2,2,1,1],[1,4,2,1],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,2,1],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,2,1],[1,3,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,2,1],[1,2,3,1]],[[0,2,2,0],[2,2,1,1],[1,3,2,1],[1,2,2,2]],[[0,2,2,0],[2,2,1,1],[1,3,2,3],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,2,2],[1,1,3,1]],[[0,2,2,0],[2,2,1,1],[1,3,2,2],[1,1,2,2]],[[0,2,2,0],[2,2,1,1],[1,4,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,1,1],[1,3,2,2],[2,2,2,0]],[[0,2,2,0],[2,2,1,1],[1,3,2,2],[1,3,2,0]],[[0,2,2,0],[2,2,1,1],[1,3,2,2],[1,2,3,0]],[[0,2,2,0],[2,2,1,1],[1,4,3,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,0],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,0],[1,3,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,0],[1,2,3,1]],[[0,2,2,0],[2,2,1,1],[1,4,3,1],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,4,1],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,1],[1,1,3,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,1],[1,1,2,2]],[[0,2,2,0],[2,2,1,1],[1,4,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,1,1],[1,3,4,1],[1,2,1,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,1],[2,2,1,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,1],[1,3,1,1]],[[0,2,2,0],[2,2,1,1],[1,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,1,1],[1,3,4,2],[1,1,1,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,3],[1,1,1,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,2],[1,1,1,2]],[[0,2,2,0],[2,2,1,1],[1,4,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,1,1],[1,3,4,2],[1,1,2,0]],[[0,2,2,0],[2,2,1,1],[1,3,3,3],[1,1,2,0]],[[0,2,2,0],[2,2,1,1],[1,3,3,2],[1,1,3,0]],[[0,2,2,0],[2,2,1,1],[1,4,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,1,1],[1,3,4,2],[1,2,0,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,3],[1,2,0,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,2],[2,2,0,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,2],[1,3,0,1]],[[0,2,2,0],[2,2,1,1],[1,3,3,2],[1,2,0,2]],[[0,2,2,0],[2,2,1,1],[1,4,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,1,1],[1,3,4,2],[1,2,1,0]],[[0,2,2,0],[2,2,1,1],[1,3,3,3],[1,2,1,0]],[[0,2,2,0],[2,2,1,1],[1,3,3,2],[2,2,1,0]],[[0,2,2,0],[2,2,1,1],[1,3,3,2],[1,3,1,0]],[[1,2,3,1],[1,0,3,0],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[1,0,3,0],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,0,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[3,2,1,1],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[3,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,1,2,3],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,1,2,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,1,2,2],[1,3,2,1]],[[0,2,2,0],[2,2,1,1],[2,1,2,2],[1,2,3,1]],[[0,2,2,0],[2,2,1,1],[2,1,2,2],[1,2,2,2]],[[0,2,2,0],[3,2,1,1],[2,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[3,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,1,4,1],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,1,3,1],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,1,3,1],[1,3,2,1]],[[0,2,2,0],[2,2,1,1],[2,1,3,1],[1,2,3,1]],[[0,2,2,0],[2,2,1,1],[2,1,3,1],[1,2,2,2]],[[0,2,2,0],[2,2,1,1],[2,1,4,2],[1,2,1,1]],[[0,2,2,0],[2,2,1,1],[2,1,3,3],[1,2,1,1]],[[0,2,2,0],[2,2,1,1],[2,1,3,2],[1,2,1,2]],[[0,2,2,0],[3,2,1,1],[2,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,1,1],[3,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,1,4,2],[1,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,1,3,3],[1,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,1,3,2],[2,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,1,3,2],[1,3,2,0]],[[0,2,2,0],[2,2,1,1],[2,1,3,2],[1,2,3,0]],[[0,2,2,0],[3,2,1,1],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[3,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,1,3],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,1,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,1,2],[1,3,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,1,2],[1,2,3,1]],[[0,2,2,0],[2,2,1,1],[2,2,1,2],[1,2,2,2]],[[0,2,2,0],[3,2,1,1],[2,2,2,1],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[3,2,2,1],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,2,1],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,2,1],[1,3,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,2,1],[1,2,3,1]],[[0,2,2,0],[2,2,1,1],[2,2,2,1],[1,2,2,2]],[[0,2,2,0],[2,2,1,1],[2,2,2,3],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,2,2],[0,3,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,2,2],[0,2,3,1]],[[0,2,2,0],[2,2,1,1],[2,2,2,2],[0,2,2,2]],[[0,2,2,0],[3,2,1,1],[2,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,1,1],[3,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,2,2,2],[2,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,2,2,2],[1,3,2,0]],[[0,2,2,0],[2,2,1,1],[2,2,2,2],[1,2,3,0]],[[0,2,2,0],[3,2,1,1],[2,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[3,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,0],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,0],[1,3,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,0],[1,2,3,1]],[[0,2,2,0],[2,2,1,1],[2,2,4,1],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,1],[0,3,2,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,1],[0,2,3,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,1],[0,2,2,2]],[[0,2,2,0],[3,2,1,1],[2,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,1,1],[3,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,1],[2,2,1,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,1],[1,3,1,1]],[[0,2,2,0],[2,2,1,1],[2,2,4,2],[0,2,1,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,3],[0,2,1,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,2],[0,2,1,2]],[[0,2,2,0],[2,2,1,1],[2,2,4,2],[0,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,2,3,3],[0,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,2,3,2],[0,3,2,0]],[[0,2,2,0],[2,2,1,1],[2,2,3,2],[0,2,3,0]],[[0,2,2,0],[3,2,1,1],[2,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,1,1],[3,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,2],[2,2,0,1]],[[0,2,2,0],[2,2,1,1],[2,2,3,2],[1,3,0,1]],[[0,2,2,0],[3,2,1,1],[2,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,1,1],[3,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,1,1],[2,2,3,2],[2,2,1,0]],[[0,2,2,0],[2,2,1,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[0,1,3,0]],[[0,2,2,0],[3,2,1,1],[2,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[3,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,0,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,0,2],[1,3,2,1]],[[0,2,2,0],[3,2,1,1],[2,3,1,1],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[3,3,1,1],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,1,1],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,1,1],[1,3,2,1]],[[0,2,2,0],[3,2,1,1],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[3,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,4,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,1,3],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,1,2],[0,3,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,1,2],[0,2,3,1]],[[0,2,2,0],[2,2,1,1],[2,3,1,2],[0,2,2,2]],[[0,2,2,0],[3,2,1,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[3,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[2,4,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,1,2],[2,1,2,1]],[[0,2,2,0],[3,2,1,1],[2,3,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,1,1],[3,3,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,1,2],[2,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,1,2],[1,3,2,0]],[[0,2,2,0],[3,2,1,1],[2,3,2,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[3,3,2,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,2,0],[2,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,2,0],[1,3,2,1]],[[0,2,2,0],[3,2,1,1],[2,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[3,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,4,2,1],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,2,1],[0,3,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,2,1],[0,2,3,1]],[[0,2,2,0],[2,2,1,1],[2,3,2,1],[0,2,2,2]],[[0,2,2,0],[3,2,1,1],[2,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[3,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[2,4,2,1],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,2,1],[2,1,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,2,3],[0,1,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,2,2],[0,1,3,1]],[[0,2,2,0],[2,2,1,1],[2,3,2,2],[0,1,2,2]],[[0,2,2,0],[3,2,1,1],[2,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,1,1],[3,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,4,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,2,2],[0,3,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,2,2],[0,2,3,0]],[[0,2,2,0],[2,2,1,1],[2,3,2,3],[1,0,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,2,2],[1,0,3,1]],[[0,2,2,0],[2,2,1,1],[2,3,2,2],[1,0,2,2]],[[0,2,2,0],[3,2,1,1],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,1,1],[3,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,1,1],[2,4,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,0,3,0],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,0,3,0],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[1,0,3,0],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,0,4,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,0,3,0],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,0,3,0],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[1,0,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[3,2,1,1],[2,3,3,0],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[3,3,3,0],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,4,3,0],[0,2,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,0],[0,3,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,0],[0,2,3,1]],[[0,2,2,0],[3,2,1,1],[2,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[3,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[2,4,3,0],[1,1,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,0],[2,1,2,1]],[[0,2,2,0],[3,2,1,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,1,1],[3,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,1,1],[2,4,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,4,1],[0,1,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,1],[0,1,3,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,1],[0,1,2,2]],[[0,2,2,0],[3,2,1,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,1,1],[3,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,1,1],[2,4,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,4,1],[0,2,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,1],[0,3,1,1]],[[0,2,2,0],[3,2,1,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,1,1],[3,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,1,1],[2,4,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,4,1],[1,0,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,1],[2,0,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,1],[1,0,3,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,1],[1,0,2,2]],[[0,2,2,0],[3,2,1,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,1,1],[3,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,1,1],[2,4,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,4,1],[1,1,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,1],[2,1,1,1]],[[0,2,2,0],[3,2,1,1],[2,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,1,1],[3,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,1,1],[2,4,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,1],[2,2,0,1]],[[2,2,2,1],[1,0,3,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,0,3,0],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,0,3,0],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[1,0,3,0],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[1,0,3,0],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,0,4,0],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,0,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,4,2],[0,0,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,3],[0,0,2,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[0,0,2,2]],[[0,2,2,0],[3,2,1,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,1,1],[3,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,1,1],[2,4,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,4,2],[0,1,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,3],[0,1,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[0,1,1,2]],[[0,2,2,0],[3,2,1,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,1,1],[3,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,1,1],[2,4,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,4,2],[0,1,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,3,3],[0,1,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[0,1,3,0]],[[0,2,2,0],[3,2,1,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,1,1],[3,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,1,1],[2,4,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,1,1],[2,3,4,2],[0,2,0,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,3],[0,2,0,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[0,3,0,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[0,2,0,2]],[[0,2,2,0],[3,2,1,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,1,1],[3,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,1,1],[2,4,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,1,1],[2,3,4,2],[0,2,1,0]],[[0,2,2,0],[2,2,1,1],[2,3,3,3],[0,2,1,0]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[0,3,1,0]],[[1,2,3,1],[1,0,3,0],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[1,0,3,0],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,0,3,0],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,0,3,0],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,0,3,0],[2,3,4,2],[0,0,2,1]],[[1,2,2,1],[1,0,4,0],[2,3,3,2],[0,0,2,1]],[[1,2,2,2],[1,0,3,0],[2,3,3,2],[0,0,2,1]],[[0,2,2,0],[3,2,1,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,1,1],[3,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,1,1],[2,4,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,4,2],[1,0,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,3],[1,0,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[2,0,1,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[1,0,1,2]],[[0,2,2,0],[3,2,1,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,1,1],[3,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,1,1],[2,4,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,4,2],[1,0,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,3,3],[1,0,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[2,0,2,0]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[1,0,3,0]],[[0,2,2,0],[3,2,1,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,1,1],[3,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,1,1],[2,4,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,1,1],[2,3,4,2],[1,1,0,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,3],[1,1,0,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[2,1,0,1]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[1,1,0,2]],[[0,2,2,0],[3,2,1,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,1,1],[3,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,1,1],[2,4,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,1,1],[2,3,4,2],[1,1,1,0]],[[0,2,2,0],[2,2,1,1],[2,3,3,3],[1,1,1,0]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[2,1,1,0]],[[1,2,3,1],[1,0,3,0],[2,3,3,2],[0,0,2,1]],[[1,3,2,1],[1,0,3,0],[2,3,3,2],[0,0,2,1]],[[2,2,2,1],[1,0,3,0],[2,3,3,2],[0,0,2,1]],[[0,2,2,0],[3,2,1,1],[2,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,2,1,1],[3,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,2,1,1],[2,4,3,2],[1,2,0,0]],[[0,2,2,0],[2,2,1,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[1,0,3,0],[2,4,3,1],[1,2,0,1]],[[1,2,2,1],[1,0,3,0],[3,3,3,1],[1,2,0,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[1,0,3,0],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,0,3,0],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[1,0,3,0],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,0,4,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,2],[1,0,3,0],[2,3,3,1],[1,1,1,1]],[[1,2,3,1],[1,0,3,0],[2,3,3,1],[1,1,1,1]],[[1,3,2,1],[1,0,3,0],[2,3,3,1],[1,1,1,1]],[[2,2,2,1],[1,0,3,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,1],[1,0,2,2]],[[0,2,2,0],[2,2,1,2],[1,2,4,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[1,2,3,0],[2,2,2,1]],[[0,2,2,0],[2,2,1,2],[1,2,3,0],[1,3,2,1]],[[0,2,2,0],[2,2,1,2],[1,2,3,0],[1,2,3,1]],[[0,2,2,0],[2,2,1,2],[1,2,3,0],[1,2,2,2]],[[0,2,2,0],[2,2,1,2],[1,2,4,1],[1,2,2,0]],[[0,2,2,0],[2,2,1,2],[1,2,3,1],[2,2,2,0]],[[0,2,2,0],[2,2,1,2],[1,2,3,1],[1,3,2,0]],[[0,2,2,0],[2,2,1,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[1,0,3,0],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[1,0,3,0],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[1,0,3,0],[3,3,3,1],[1,0,2,1]],[[1,2,2,1],[1,0,4,0],[2,3,3,1],[1,0,2,1]],[[1,2,2,2],[1,0,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,1,3],[1,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[1,4,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[1,3,0,3],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[1,3,0,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,2],[1,3,0,2],[1,3,2,1]],[[0,2,2,0],[2,2,1,2],[1,3,0,2],[1,2,3,1]],[[0,2,2,0],[2,2,1,2],[1,3,0,2],[1,2,2,2]],[[0,2,2,0],[2,2,1,2],[1,4,2,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[1,3,2,0],[2,2,2,1]],[[0,2,2,0],[2,2,1,2],[1,3,2,0],[1,3,2,1]],[[0,2,2,0],[2,2,1,2],[1,3,2,0],[1,2,3,1]],[[0,2,2,0],[2,2,1,2],[1,3,2,0],[1,2,2,2]],[[0,2,2,0],[2,2,1,2],[1,4,2,1],[1,2,2,0]],[[0,2,2,0],[2,2,1,2],[1,3,2,1],[2,2,2,0]],[[0,2,2,0],[2,2,1,2],[1,3,2,1],[1,3,2,0]],[[0,2,2,0],[2,2,1,2],[1,3,2,1],[1,2,3,0]],[[1,2,3,1],[1,0,3,0],[2,3,3,1],[1,0,2,1]],[[1,3,2,1],[1,0,3,0],[2,3,3,1],[1,0,2,1]],[[2,2,2,1],[1,0,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,1,2],[1,4,3,0],[1,1,2,1]],[[0,2,2,0],[2,2,1,2],[1,3,4,0],[1,1,2,1]],[[0,2,2,0],[2,2,1,2],[1,3,3,0],[1,1,3,1]],[[0,2,2,0],[2,2,1,2],[1,3,3,0],[1,1,2,2]],[[0,2,2,0],[2,2,1,2],[1,4,3,0],[1,2,1,1]],[[0,2,2,0],[2,2,1,2],[1,3,4,0],[1,2,1,1]],[[0,2,2,0],[2,2,1,2],[1,3,3,0],[2,2,1,1]],[[0,2,2,0],[2,2,1,2],[1,3,3,0],[1,3,1,1]],[[0,2,2,0],[2,2,1,2],[1,4,3,1],[1,1,2,0]],[[0,2,2,0],[2,2,1,2],[1,3,4,1],[1,1,2,0]],[[0,2,2,0],[2,2,1,2],[1,3,3,1],[1,1,3,0]],[[0,2,2,0],[2,2,1,2],[1,4,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,1,2],[1,3,4,1],[1,2,0,1]],[[0,2,2,0],[2,2,1,2],[1,3,3,1],[2,2,0,1]],[[0,2,2,0],[2,2,1,2],[1,3,3,1],[1,3,0,1]],[[0,2,2,0],[2,2,1,2],[1,4,3,1],[1,2,1,0]],[[0,2,2,0],[2,2,1,2],[1,3,4,1],[1,2,1,0]],[[0,2,2,0],[2,2,1,2],[1,3,3,1],[2,2,1,0]],[[0,2,2,0],[2,2,1,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[1,0,3,0],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[1,0,3,0],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[1,0,3,0],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[1,0,3,0],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[1,0,4,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,2],[1,0,3,0],[2,3,3,1],[0,2,1,1]],[[1,2,3,1],[1,0,3,0],[2,3,3,1],[0,2,1,1]],[[1,3,2,1],[1,0,3,0],[2,3,3,1],[0,2,1,1]],[[2,2,2,1],[1,0,3,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,0,3,0],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,0,3,0],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[1,0,3,0],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[1,0,3,0],[3,3,3,1],[0,1,2,1]],[[1,2,2,1],[1,0,4,0],[2,3,3,1],[0,1,2,1]],[[1,2,2,2],[1,0,3,0],[2,3,3,1],[0,1,2,1]],[[1,2,3,1],[1,0,3,0],[2,3,3,1],[0,1,2,1]],[[1,3,2,1],[1,0,3,0],[2,3,3,1],[0,1,2,1]],[[2,2,2,1],[1,0,3,0],[2,3,3,1],[0,1,2,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,0],[2,1,2,1]],[[1,2,2,1],[1,0,3,0],[2,4,3,0],[1,1,2,1]],[[1,2,2,1],[1,0,3,0],[3,3,3,0],[1,1,2,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,0],[0,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,3,3,0],[0,3,2,1]],[[1,2,2,1],[1,0,3,0],[2,4,3,0],[0,2,2,1]],[[0,2,2,0],[3,2,1,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[3,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,1,4,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,1,3,0],[2,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,1,3,0],[1,3,2,1]],[[0,2,2,0],[2,2,1,2],[2,1,3,0],[1,2,3,1]],[[0,2,2,0],[2,2,1,2],[2,1,3,0],[1,2,2,2]],[[0,2,2,0],[3,2,1,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,0],[2,2,1,2],[3,1,3,1],[1,2,2,0]],[[0,2,2,0],[2,2,1,2],[2,1,4,1],[1,2,2,0]],[[0,2,2,0],[2,2,1,2],[2,1,3,1],[2,2,2,0]],[[0,2,2,0],[2,2,1,2],[2,1,3,1],[1,3,2,0]],[[0,2,2,0],[2,2,1,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[1,0,3,0],[3,3,3,0],[0,2,2,1]],[[0,2,2,0],[3,2,1,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,3],[2,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[3,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,2,0,3],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,2,0,2],[2,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,2,0,2],[1,3,2,1]],[[0,2,2,0],[2,2,1,2],[2,2,0,2],[1,2,3,1]],[[0,2,2,0],[2,2,1,2],[2,2,0,2],[1,2,2,2]],[[0,2,2,0],[3,2,1,2],[2,2,2,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[3,2,2,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,2,2,0],[2,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,2,2,0],[1,3,2,1]],[[0,2,2,0],[2,2,1,2],[2,2,2,0],[1,2,3,1]],[[0,2,2,0],[2,2,1,2],[2,2,2,0],[1,2,2,2]],[[0,2,2,0],[3,2,1,2],[2,2,2,1],[1,2,2,0]],[[0,2,2,0],[2,2,1,2],[3,2,2,1],[1,2,2,0]],[[0,2,2,0],[2,2,1,2],[2,2,2,1],[2,2,2,0]],[[0,2,2,0],[2,2,1,2],[2,2,2,1],[1,3,2,0]],[[0,2,2,0],[2,2,1,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[1,0,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[1,0,3,0],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[1,0,3,0],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,0,3,0],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[1,0,3,0],[2,3,2,2],[1,0,3,1]],[[0,2,2,0],[2,2,1,2],[2,2,4,0],[0,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,2,3,0],[0,3,2,1]],[[0,2,2,0],[2,2,1,2],[2,2,3,0],[0,2,3,1]],[[0,2,2,0],[2,2,1,2],[2,2,3,0],[0,2,2,2]],[[0,2,2,0],[3,2,1,2],[2,2,3,0],[1,2,1,1]],[[0,2,2,0],[2,2,1,2],[3,2,3,0],[1,2,1,1]],[[0,2,2,0],[2,2,1,2],[2,2,3,0],[2,2,1,1]],[[0,2,2,0],[2,2,1,2],[2,2,3,0],[1,3,1,1]],[[0,2,2,0],[2,2,1,2],[2,2,4,1],[0,2,2,0]],[[0,2,2,0],[2,2,1,2],[2,2,3,1],[0,3,2,0]],[[0,2,2,0],[2,2,1,2],[2,2,3,1],[0,2,3,0]],[[0,2,2,0],[3,2,1,2],[2,2,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,1,2],[3,2,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,1,2],[2,2,3,1],[2,2,0,1]],[[0,2,2,0],[2,2,1,2],[2,2,3,1],[1,3,0,1]],[[0,2,2,0],[3,2,1,2],[2,2,3,1],[1,2,1,0]],[[0,2,2,0],[2,2,1,2],[3,2,3,1],[1,2,1,0]],[[0,2,2,0],[2,2,1,2],[2,2,3,1],[2,2,1,0]],[[0,2,2,0],[2,2,1,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[1,0,3,0],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[1,0,3,0],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[1,0,3,0],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[1,0,3,0],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[1,0,3,0],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[1,0,3,0],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,0,3,0],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[1,0,3,0],[2,3,2,3],[0,1,2,1]],[[1,2,2,1],[1,0,3,0],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[1,0,3,0],[2,4,2,1],[1,1,2,1]],[[1,2,2,1],[1,0,3,0],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[1,0,3,0],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[1,0,3,0],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[1,0,3,0],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[1,0,3,0],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[1,0,3,0],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[1,0,3,0],[3,3,1,2],[1,1,2,1]],[[0,2,2,0],[3,2,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,1,3],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,1,2],[3,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,4,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,0,3],[0,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,0,2],[0,3,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,0,2],[0,2,3,1]],[[0,2,2,0],[2,2,1,2],[2,3,0,2],[0,2,2,2]],[[0,2,2,0],[3,2,1,2],[2,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,1,2],[3,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,1,2],[2,4,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,0,2],[2,1,2,1]],[[0,2,2,0],[3,2,1,2],[2,3,1,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[3,3,1,0],[1,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,1,0],[2,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,1,0],[1,3,2,1]],[[0,2,2,0],[3,2,1,2],[2,3,1,1],[1,2,2,0]],[[0,2,2,0],[2,2,1,2],[3,3,1,1],[1,2,2,0]],[[0,2,2,0],[2,2,1,2],[2,3,1,1],[2,2,2,0]],[[0,2,2,0],[2,2,1,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[1,0,3,0],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[1,0,3,0],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[1,0,3,0],[2,3,1,3],[0,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[1,0,3,0],[3,3,1,2],[0,2,2,1]],[[0,2,2,0],[3,2,1,2],[2,3,2,0],[0,2,2,1]],[[0,2,2,0],[2,2,1,2],[3,3,2,0],[0,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,4,2,0],[0,2,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,2,0],[0,3,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,2,0],[0,2,3,1]],[[0,2,2,0],[2,2,1,2],[2,3,2,0],[0,2,2,2]],[[0,2,2,0],[3,2,1,2],[2,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,2,1,2],[3,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,2,1,2],[2,4,2,0],[1,1,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,2,0],[2,1,2,1]],[[0,2,2,0],[3,2,1,2],[2,3,2,1],[0,2,2,0]],[[0,2,2,0],[2,2,1,2],[3,3,2,1],[0,2,2,0]],[[0,2,2,0],[2,2,1,2],[2,4,2,1],[0,2,2,0]],[[0,2,2,0],[2,2,1,2],[2,3,2,1],[0,3,2,0]],[[0,2,2,0],[2,2,1,2],[2,3,2,1],[0,2,3,0]],[[0,2,2,0],[3,2,1,2],[2,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,2,1,2],[3,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,2,1,2],[2,4,2,1],[1,1,2,0]],[[0,2,2,0],[2,2,1,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[1,0,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,0,3,0],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[1,0,3,0],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[1,0,3,0],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[1,0,3,0],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[1,0,3,0],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[1,0,3,0],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,0,3,0],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[1,0,3,0],[2,2,3,3],[0,2,2,0]],[[0,2,2,0],[3,2,1,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,1,2],[3,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,1,2],[2,4,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,4,0],[0,1,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,3,0],[0,1,3,1]],[[0,2,2,0],[2,2,1,2],[2,3,3,0],[0,1,2,2]],[[0,2,2,0],[3,2,1,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,1,2],[3,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,1,2],[2,4,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,1,2],[2,3,4,0],[0,2,1,1]],[[0,2,2,0],[2,2,1,2],[2,3,3,0],[0,3,1,1]],[[0,2,2,0],[3,2,1,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,2,1,2],[3,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,2,1,2],[2,4,3,0],[1,0,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,4,0],[1,0,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,3,0],[2,0,2,1]],[[0,2,2,0],[2,2,1,2],[2,3,3,0],[1,0,3,1]],[[0,2,2,0],[2,2,1,2],[2,3,3,0],[1,0,2,2]],[[0,2,2,0],[3,2,1,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,2,1,2],[3,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,2,1,2],[2,4,3,0],[1,1,1,1]],[[0,2,2,0],[2,2,1,2],[2,3,4,0],[1,1,1,1]],[[0,2,2,0],[2,2,1,2],[2,3,3,0],[2,1,1,1]],[[0,2,2,0],[3,2,1,2],[2,3,3,0],[1,2,0,1]],[[0,2,2,0],[2,2,1,2],[3,3,3,0],[1,2,0,1]],[[0,2,2,0],[2,2,1,2],[2,4,3,0],[1,2,0,1]],[[0,2,2,0],[2,2,1,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[1,0,3,0],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[1,0,4,0],[2,2,3,2],[0,2,2,0]],[[1,2,2,2],[1,0,3,0],[2,2,3,2],[0,2,2,0]],[[1,2,3,1],[1,0,3,0],[2,2,3,2],[0,2,2,0]],[[1,3,2,1],[1,0,3,0],[2,2,3,2],[0,2,2,0]],[[2,2,2,1],[1,0,3,0],[2,2,3,2],[0,2,2,0]],[[1,2,2,1],[1,0,3,0],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[1,0,3,0],[2,2,3,3],[0,2,1,1]],[[0,2,2,0],[3,2,1,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,1,2],[3,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,1,2],[2,4,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,1,2],[2,3,4,1],[0,1,1,1]],[[0,2,2,0],[3,2,1,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,1,2],[3,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,1,2],[2,4,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,1,2],[2,3,4,1],[0,1,2,0]],[[0,2,2,0],[2,2,1,2],[2,3,3,1],[0,1,3,0]],[[0,2,2,0],[3,2,1,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,1,2],[3,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,1,2],[2,4,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,1,2],[2,3,4,1],[0,2,0,1]],[[0,2,2,0],[2,2,1,2],[2,3,3,1],[0,3,0,1]],[[0,2,2,0],[3,2,1,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,1,2],[3,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,1,2],[2,4,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,1,2],[2,3,4,1],[0,2,1,0]],[[0,2,2,0],[2,2,1,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[1,0,3,0],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[1,0,4,0],[2,2,3,2],[0,2,1,1]],[[1,2,2,2],[1,0,3,0],[2,2,3,2],[0,2,1,1]],[[1,2,3,1],[1,0,3,0],[2,2,3,2],[0,2,1,1]],[[1,3,2,1],[1,0,3,0],[2,2,3,2],[0,2,1,1]],[[2,2,2,1],[1,0,3,0],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[3,2,1,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,2,1,2],[3,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,2,1,2],[2,4,3,1],[1,0,1,1]],[[0,2,2,0],[2,2,1,2],[2,3,4,1],[1,0,1,1]],[[0,2,2,0],[2,2,1,2],[2,3,3,1],[2,0,1,1]],[[0,2,2,0],[3,2,1,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,2,1,2],[3,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,2,1,2],[2,4,3,1],[1,0,2,0]],[[0,2,2,0],[2,2,1,2],[2,3,4,1],[1,0,2,0]],[[0,2,2,0],[2,2,1,2],[2,3,3,1],[2,0,2,0]],[[0,2,2,0],[2,2,1,2],[2,3,3,1],[1,0,3,0]],[[0,2,2,0],[3,2,1,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,2,1,2],[3,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,2,1,2],[2,4,3,1],[1,1,0,1]],[[0,2,2,0],[2,2,1,2],[2,3,4,1],[1,1,0,1]],[[0,2,2,0],[2,2,1,2],[2,3,3,1],[2,1,0,1]],[[0,2,2,0],[3,2,1,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,2,1,2],[3,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,2,1,2],[2,4,3,1],[1,1,1,0]],[[0,2,2,0],[2,2,1,2],[2,3,4,1],[1,1,1,0]],[[0,2,2,0],[2,2,1,2],[2,3,3,1],[2,1,1,0]],[[0,2,2,0],[3,2,1,2],[2,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,2,1,2],[3,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,2,1,2],[2,4,3,1],[1,2,0,0]],[[0,2,2,0],[2,2,1,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[1,0,3,0],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[1,0,3,0],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[1,0,3,0],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[1,0,3,0],[2,2,3,1],[0,2,2,2]],[[1,2,2,1],[1,0,3,0],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[1,0,3,0],[2,2,4,1],[0,2,2,1]],[[1,2,2,1],[1,0,4,0],[2,2,3,1],[0,2,2,1]],[[1,2,2,2],[1,0,3,0],[2,2,3,1],[0,2,2,1]],[[1,2,3,1],[1,0,3,0],[2,2,3,1],[0,2,2,1]],[[1,3,2,1],[1,0,3,0],[2,2,3,1],[0,2,2,1]],[[2,2,2,1],[1,0,3,0],[2,2,3,1],[0,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,2,3,0],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,2,3,0],[1,3,2,1]],[[1,2,2,1],[1,0,3,0],[2,2,3,0],[2,2,2,1]],[[1,2,2,1],[1,0,3,0],[3,2,3,0],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[1,0,3,0],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[1,0,3,0],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[1,0,3,0],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[1,0,3,0],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[1,0,3,0],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[1,0,3,0],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[1,0,3,0],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[1,0,3,0],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[1,0,3,0],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,0],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[1,0,3,0],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[1,0,3,0],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[1,0,3,0],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[1,0,3,0],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[1,0,3,0],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[1,0,3,0],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,0,4,0],[2,1,3,2],[1,2,2,0]],[[1,2,2,2],[1,0,3,0],[2,1,3,2],[1,2,2,0]],[[1,2,3,1],[1,0,3,0],[2,1,3,2],[1,2,2,0]],[[1,3,2,1],[1,0,3,0],[2,1,3,2],[1,2,2,0]],[[2,2,2,1],[1,0,3,0],[2,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,0,3,0],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[1,0,3,0],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[1,0,3,0],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[1,0,4,0],[2,1,3,2],[1,2,1,1]],[[1,2,2,2],[1,0,3,0],[2,1,3,2],[1,2,1,1]],[[1,2,3,1],[1,0,3,0],[2,1,3,2],[1,2,1,1]],[[1,3,2,1],[1,0,3,0],[2,1,3,2],[1,2,1,1]],[[2,2,2,1],[1,0,3,0],[2,1,3,2],[1,2,1,1]],[[1,2,2,1],[1,0,3,0],[2,1,3,2],[0,2,2,2]],[[1,2,2,1],[1,0,3,0],[2,1,3,2],[0,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,1,3,3],[0,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[1,0,3,0],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[1,0,3,0],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[1,0,4,0],[2,1,3,1],[1,2,2,1]],[[1,2,2,2],[1,0,3,0],[2,1,3,1],[1,2,2,1]],[[1,2,3,1],[1,0,3,0],[2,1,3,1],[1,2,2,1]],[[1,3,2,1],[1,0,3,0],[2,1,3,1],[1,2,2,1]],[[2,2,2,1],[1,0,3,0],[2,1,3,1],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,0],[2,1,2,2],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[1,0,3,0],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,0],[2,0,3,2],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[2,0,3,3],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,0,3,0],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[1,0,3,0],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[1,0,3,0],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[1,0,3,0],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[1,0,4,0],[1,3,3,2],[1,2,1,0]],[[1,2,2,2],[1,0,3,0],[1,3,3,2],[1,2,1,0]],[[1,2,3,1],[1,0,3,0],[1,3,3,2],[1,2,1,0]],[[1,3,2,1],[1,0,3,0],[1,3,3,2],[1,2,1,0]],[[2,2,2,1],[1,0,3,0],[1,3,3,2],[1,2,1,0]],[[1,2,2,1],[1,0,3,0],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[1,0,3,0],[1,3,3,2],[1,3,0,1]],[[1,2,2,1],[1,0,3,0],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[1,0,3,0],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[1,0,3,0],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[1,0,3,0],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[1,0,4,0],[1,3,3,2],[1,2,0,1]],[[1,2,2,2],[1,0,3,0],[1,3,3,2],[1,2,0,1]],[[1,2,3,1],[1,0,3,0],[1,3,3,2],[1,2,0,1]],[[1,3,2,1],[1,0,3,0],[1,3,3,2],[1,2,0,1]],[[2,2,2,1],[1,0,3,0],[1,3,3,2],[1,2,0,1]],[[1,2,2,1],[1,0,3,0],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[1,0,3,0],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[1,0,3,0],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[1,0,3,0],[1,4,3,2],[1,1,2,0]],[[1,2,2,1],[1,0,4,0],[1,3,3,2],[1,1,2,0]],[[1,2,2,2],[1,0,3,0],[1,3,3,2],[1,1,2,0]],[[1,2,3,1],[1,0,3,0],[1,3,3,2],[1,1,2,0]],[[1,3,2,1],[1,0,3,0],[1,3,3,2],[1,1,2,0]],[[2,2,2,1],[1,0,3,0],[1,3,3,2],[1,1,2,0]],[[1,2,2,1],[1,0,3,0],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[1,0,3,0],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[1,0,3,0],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[1,0,3,0],[1,4,3,2],[1,1,1,1]],[[1,2,2,1],[1,0,4,0],[1,3,3,2],[1,1,1,1]],[[1,2,2,2],[1,0,3,0],[1,3,3,2],[1,1,1,1]],[[1,2,3,1],[1,0,3,0],[1,3,3,2],[1,1,1,1]],[[1,3,2,1],[1,0,3,0],[1,3,3,2],[1,1,1,1]],[[2,2,2,1],[1,0,3,0],[1,3,3,2],[1,1,1,1]],[[1,2,2,1],[1,0,3,0],[1,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,0,3,0],[1,3,3,3],[1,0,2,1]],[[1,2,2,1],[1,0,3,0],[1,3,4,2],[1,0,2,1]],[[1,2,2,1],[1,0,3,0],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[1,0,3,0],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[1,0,3,0],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[1,0,3,0],[1,4,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,2,1],[1,4,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,2,1],[1,3,0,3],[1,2,2,1]],[[0,2,2,0],[2,2,2,1],[1,3,0,2],[2,2,2,1]],[[0,2,2,0],[2,2,2,1],[1,3,0,2],[1,3,2,1]],[[0,2,2,0],[2,2,2,1],[1,3,0,2],[1,2,3,1]],[[0,2,2,0],[2,2,2,1],[1,3,0,2],[1,2,2,2]],[[0,2,2,0],[2,2,2,1],[1,4,1,1],[1,2,2,1]],[[0,2,2,0],[2,2,2,1],[1,3,1,1],[2,2,2,1]],[[0,2,2,0],[2,2,2,1],[1,3,1,1],[1,3,2,1]],[[0,2,2,0],[2,2,2,1],[1,3,1,1],[1,2,3,1]],[[0,2,2,0],[2,2,2,1],[1,3,1,1],[1,2,2,2]],[[0,2,2,0],[2,2,2,1],[1,4,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,1],[1,3,1,2],[2,2,2,0]],[[0,2,2,0],[2,2,2,1],[1,3,1,2],[1,3,2,0]],[[0,2,2,0],[2,2,2,1],[1,3,1,2],[1,2,3,0]],[[0,2,2,0],[2,2,2,1],[1,4,2,1],[1,2,1,1]],[[0,2,2,0],[2,2,2,1],[1,3,2,1],[2,2,1,1]],[[0,2,2,0],[2,2,2,1],[1,3,2,1],[1,3,1,1]],[[0,2,2,0],[2,2,2,1],[1,4,2,2],[1,2,0,1]],[[0,2,2,0],[2,2,2,1],[1,3,2,2],[2,2,0,1]],[[0,2,2,0],[2,2,2,1],[1,3,2,2],[1,3,0,1]],[[0,2,2,0],[2,2,2,1],[1,4,2,2],[1,2,1,0]],[[0,2,2,0],[2,2,2,1],[1,3,2,2],[2,2,1,0]],[[0,2,2,0],[2,2,2,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[1,0,4,0],[1,3,3,1],[1,2,1,1]],[[1,2,2,2],[1,0,3,0],[1,3,3,1],[1,2,1,1]],[[1,2,3,1],[1,0,3,0],[1,3,3,1],[1,2,1,1]],[[1,3,2,1],[1,0,3,0],[1,3,3,1],[1,2,1,1]],[[2,2,2,1],[1,0,3,0],[1,3,3,1],[1,2,1,1]],[[1,2,2,1],[1,0,3,0],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[1,0,3,0],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[1,0,3,0],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[1,0,3,0],[1,4,3,1],[1,1,2,1]],[[1,2,2,1],[1,0,4,0],[1,3,3,1],[1,1,2,1]],[[1,2,2,2],[1,0,3,0],[1,3,3,1],[1,1,2,1]],[[1,2,3,1],[1,0,3,0],[1,3,3,1],[1,1,2,1]],[[1,3,2,1],[1,0,3,0],[1,3,3,1],[1,1,2,1]],[[2,2,2,1],[1,0,3,0],[1,3,3,1],[1,1,2,1]],[[1,2,2,1],[1,0,3,0],[1,3,3,0],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[1,3,3,0],[1,3,2,1]],[[1,2,2,1],[1,0,3,0],[1,3,3,0],[2,2,2,1]],[[1,2,2,1],[1,0,3,0],[1,4,3,0],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[1,0,3,0],[1,3,2,2],[1,3,2,0]],[[1,2,2,1],[1,0,3,0],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[1,0,3,0],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[1,0,3,0],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[1,0,3,0],[1,3,2,2],[1,1,3,1]],[[1,2,2,1],[1,0,3,0],[1,3,2,3],[1,1,2,1]],[[1,2,2,1],[1,0,3,0],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[1,0,3,0],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[1,0,3,0],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[1,0,3,0],[1,4,2,1],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,0],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[1,0,3,0],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[1,0,3,0],[1,3,1,3],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[1,4,1,2],[1,2,2,1]],[[0,2,2,0],[3,2,2,1],[2,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,2,1],[3,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,2,0,3],[1,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,2,0,2],[2,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,2,0,2],[1,3,2,1]],[[0,2,2,0],[2,2,2,1],[2,2,0,2],[1,2,3,1]],[[0,2,2,0],[2,2,2,1],[2,2,0,2],[1,2,2,2]],[[0,2,2,0],[3,2,2,1],[2,2,1,1],[1,2,2,1]],[[0,2,2,0],[2,2,2,1],[3,2,1,1],[1,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,2,1,1],[2,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,2,1,1],[1,3,2,1]],[[0,2,2,0],[2,2,2,1],[2,2,1,1],[1,2,3,1]],[[0,2,2,0],[2,2,2,1],[2,2,1,1],[1,2,2,2]],[[0,2,2,0],[3,2,2,1],[2,2,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,1],[3,2,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,1],[2,2,1,2],[2,2,2,0]],[[0,2,2,0],[2,2,2,1],[2,2,1,2],[1,3,2,0]],[[0,2,2,0],[2,2,2,1],[2,2,1,2],[1,2,3,0]],[[0,2,2,0],[3,2,2,1],[2,2,2,1],[1,2,1,1]],[[0,2,2,0],[2,2,2,1],[3,2,2,1],[1,2,1,1]],[[0,2,2,0],[2,2,2,1],[2,2,2,1],[2,2,1,1]],[[0,2,2,0],[2,2,2,1],[2,2,2,1],[1,3,1,1]],[[0,2,2,0],[3,2,2,1],[2,2,2,2],[1,2,0,1]],[[0,2,2,0],[2,2,2,1],[3,2,2,2],[1,2,0,1]],[[0,2,2,0],[2,2,2,1],[2,2,2,2],[2,2,0,1]],[[0,2,2,0],[2,2,2,1],[2,2,2,2],[1,3,0,1]],[[0,2,2,0],[3,2,2,1],[2,2,2,2],[1,2,1,0]],[[0,2,2,0],[2,2,2,1],[3,2,2,2],[1,2,1,0]],[[0,2,2,0],[2,2,2,1],[2,2,2,2],[2,2,1,0]],[[0,2,2,0],[2,2,2,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[1,0,3,0],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[1,0,3,0],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[1,0,3,0],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[1,0,3,0],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[1,0,3,0],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[1,0,4,0],[1,2,3,2],[1,2,2,0]],[[1,2,2,2],[1,0,3,0],[1,2,3,2],[1,2,2,0]],[[1,2,3,1],[1,0,3,0],[1,2,3,2],[1,2,2,0]],[[1,3,2,1],[1,0,3,0],[1,2,3,2],[1,2,2,0]],[[2,2,2,1],[1,0,3,0],[1,2,3,2],[1,2,2,0]],[[1,2,2,1],[1,0,3,0],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[1,0,3,0],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[1,0,3,0],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[1,0,4,0],[1,2,3,2],[1,2,1,1]],[[1,2,2,2],[1,0,3,0],[1,2,3,2],[1,2,1,1]],[[1,2,3,1],[1,0,3,0],[1,2,3,2],[1,2,1,1]],[[1,3,2,1],[1,0,3,0],[1,2,3,2],[1,2,1,1]],[[2,2,2,1],[1,0,3,0],[1,2,3,2],[1,2,1,1]],[[1,2,2,1],[1,0,3,0],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[1,0,3,0],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[1,0,3,0],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[1,0,3,0],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[1,0,4,0],[1,2,3,1],[1,2,2,1]],[[1,2,2,2],[1,0,3,0],[1,2,3,1],[1,2,2,1]],[[1,2,3,1],[1,0,3,0],[1,2,3,1],[1,2,2,1]],[[1,3,2,1],[1,0,3,0],[1,2,3,1],[1,2,2,1]],[[2,2,2,1],[1,0,3,0],[1,2,3,1],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,0],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[1,0,3,0],[1,2,2,2],[2,2,2,1]],[[0,2,2,0],[3,2,2,1],[2,3,0,1],[1,2,2,1]],[[0,2,2,0],[2,2,2,1],[3,3,0,1],[1,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,3,0,1],[2,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,3,0,1],[1,3,2,1]],[[0,2,2,0],[3,2,2,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,2,1],[3,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,4,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,3,0,3],[0,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,3,0,2],[0,3,2,1]],[[0,2,2,0],[2,2,2,1],[2,3,0,2],[0,2,3,1]],[[0,2,2,0],[2,2,2,1],[2,3,0,2],[0,2,2,2]],[[0,2,2,0],[3,2,2,1],[2,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,2,1],[3,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,2,1],[2,4,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,2,1],[2,3,0,2],[2,1,2,1]],[[0,2,2,0],[3,2,2,1],[2,3,0,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,1],[3,3,0,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,1],[2,3,0,2],[2,2,2,0]],[[0,2,2,0],[2,2,2,1],[2,3,0,2],[1,3,2,0]],[[0,2,2,0],[3,2,2,1],[2,3,1,1],[0,2,2,1]],[[0,2,2,0],[2,2,2,1],[3,3,1,1],[0,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,4,1,1],[0,2,2,1]],[[0,2,2,0],[2,2,2,1],[2,3,1,1],[0,3,2,1]],[[0,2,2,0],[2,2,2,1],[2,3,1,1],[0,2,3,1]],[[0,2,2,0],[2,2,2,1],[2,3,1,1],[0,2,2,2]],[[0,2,2,0],[3,2,2,1],[2,3,1,1],[1,1,2,1]],[[0,2,2,0],[2,2,2,1],[3,3,1,1],[1,1,2,1]],[[0,2,2,0],[2,2,2,1],[2,4,1,1],[1,1,2,1]],[[0,2,2,0],[2,2,2,1],[2,3,1,1],[2,1,2,1]],[[0,2,2,0],[3,2,2,1],[2,3,1,2],[0,2,2,0]],[[0,2,2,0],[2,2,2,1],[3,3,1,2],[0,2,2,0]],[[0,2,2,0],[2,2,2,1],[2,4,1,2],[0,2,2,0]],[[0,2,2,0],[2,2,2,1],[2,3,1,2],[0,3,2,0]],[[0,2,2,0],[2,2,2,1],[2,3,1,2],[0,2,3,0]],[[0,2,2,0],[3,2,2,1],[2,3,1,2],[1,1,2,0]],[[0,2,2,0],[2,2,2,1],[3,3,1,2],[1,1,2,0]],[[0,2,2,0],[2,2,2,1],[2,4,1,2],[1,1,2,0]],[[0,2,2,0],[2,2,2,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[1,0,3,0],[1,2,2,3],[1,2,2,1]],[[1,2,2,1],[1,0,3,0],[1,1,3,2],[1,2,2,2]],[[1,2,2,1],[1,0,3,0],[1,1,3,2],[1,2,3,1]],[[1,2,2,1],[1,0,3,0],[1,1,3,3],[1,2,2,1]],[[0,2,2,0],[3,2,2,1],[2,3,2,1],[0,1,2,1]],[[0,2,2,0],[2,2,2,1],[3,3,2,1],[0,1,2,1]],[[0,2,2,0],[2,2,2,1],[2,4,2,1],[0,1,2,1]],[[0,2,2,0],[3,2,2,1],[2,3,2,1],[0,2,1,1]],[[0,2,2,0],[2,2,2,1],[3,3,2,1],[0,2,1,1]],[[0,2,2,0],[2,2,2,1],[2,4,2,1],[0,2,1,1]],[[0,2,2,0],[2,2,2,1],[2,3,2,1],[0,3,1,1]],[[0,2,2,0],[3,2,2,1],[2,3,2,1],[1,0,2,1]],[[0,2,2,0],[2,2,2,1],[3,3,2,1],[1,0,2,1]],[[0,2,2,0],[2,2,2,1],[2,4,2,1],[1,0,2,1]],[[0,2,2,0],[2,2,2,1],[2,3,2,1],[2,0,2,1]],[[0,2,2,0],[3,2,2,1],[2,3,2,1],[1,1,1,1]],[[0,2,2,0],[2,2,2,1],[3,3,2,1],[1,1,1,1]],[[0,2,2,0],[2,2,2,1],[2,4,2,1],[1,1,1,1]],[[0,2,2,0],[2,2,2,1],[2,3,2,1],[2,1,1,1]],[[0,2,2,0],[3,2,2,1],[2,3,2,1],[1,2,0,1]],[[0,2,2,0],[2,2,2,1],[3,3,2,1],[1,2,0,1]],[[0,2,2,0],[2,2,2,1],[2,4,2,1],[1,2,0,1]],[[0,2,2,0],[2,2,2,1],[2,3,2,1],[2,2,0,1]],[[0,2,2,0],[3,2,2,1],[2,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,2,1],[3,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,2,1],[2,4,2,2],[0,1,1,1]],[[0,2,2,0],[3,2,2,1],[2,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,2,1],[3,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,2,1],[2,4,2,2],[0,1,2,0]],[[0,2,2,0],[3,2,2,1],[2,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,1],[3,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,1],[2,4,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,1],[2,3,2,2],[0,3,0,1]],[[0,2,2,0],[3,2,2,1],[2,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,1],[3,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,1],[2,4,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,1],[2,3,2,2],[0,3,1,0]],[[0,2,2,0],[3,2,2,1],[2,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,2,1],[3,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,2,1],[2,4,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,2,1],[2,3,2,2],[2,0,1,1]],[[0,2,2,0],[3,2,2,1],[2,3,2,2],[1,0,2,0]],[[0,2,2,0],[2,2,2,1],[3,3,2,2],[1,0,2,0]],[[0,2,2,0],[2,2,2,1],[2,4,2,2],[1,0,2,0]],[[0,2,2,0],[2,2,2,1],[2,3,2,2],[2,0,2,0]],[[0,2,2,0],[3,2,2,1],[2,3,2,2],[1,1,0,1]],[[0,2,2,0],[2,2,2,1],[3,3,2,2],[1,1,0,1]],[[0,2,2,0],[2,2,2,1],[2,4,2,2],[1,1,0,1]],[[0,2,2,0],[2,2,2,1],[2,3,2,2],[2,1,0,1]],[[0,2,2,0],[3,2,2,1],[2,3,2,2],[1,1,1,0]],[[0,2,2,0],[2,2,2,1],[3,3,2,2],[1,1,1,0]],[[0,2,2,0],[2,2,2,1],[2,4,2,2],[1,1,1,0]],[[0,2,2,0],[2,2,2,1],[2,3,2,2],[2,1,1,0]],[[0,2,2,0],[3,2,2,1],[2,3,2,2],[1,2,0,0]],[[0,2,2,0],[2,2,2,1],[3,3,2,2],[1,2,0,0]],[[0,2,2,0],[2,2,2,1],[2,4,2,2],[1,2,0,0]],[[0,2,2,0],[2,2,2,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[1,0,2,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[1,0,2,3],[2,3,3,2],[1,0,0,1]],[[1,2,2,2],[1,0,2,2],[2,3,3,2],[1,0,0,1]],[[1,2,3,1],[1,0,2,2],[2,3,3,2],[1,0,0,1]],[[1,3,2,1],[1,0,2,2],[2,3,3,2],[1,0,0,1]],[[2,2,2,1],[1,0,2,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[3,2,2,1],[2,3,3,2],[0,2,0,0]],[[0,2,2,0],[2,2,2,1],[3,3,3,2],[0,2,0,0]],[[0,2,2,0],[2,2,2,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[1,0,2,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[1,0,2,3],[2,3,3,2],[0,1,0,1]],[[1,2,2,2],[1,0,2,2],[2,3,3,2],[0,1,0,1]],[[1,2,3,1],[1,0,2,2],[2,3,3,2],[0,1,0,1]],[[1,3,2,1],[1,0,2,2],[2,3,3,2],[0,1,0,1]],[[2,2,2,1],[1,0,2,2],[2,3,3,2],[0,1,0,1]],[[0,2,2,0],[3,2,2,1],[2,3,3,2],[1,1,0,0]],[[0,2,2,0],[2,2,2,1],[3,3,3,2],[1,1,0,0]],[[0,2,2,0],[2,2,2,1],[2,4,3,2],[1,1,0,0]],[[0,2,2,0],[2,2,2,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[1,0,2,3],[2,3,3,1],[1,1,1,0]],[[1,2,2,2],[1,0,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,3,1],[1,0,2,2],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[1,0,2,2],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[1,0,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[1,0,2,3],[2,3,3,1],[1,1,0,1]],[[1,2,2,2],[1,0,2,2],[2,3,3,1],[1,1,0,1]],[[1,2,3,1],[1,0,2,2],[2,3,3,1],[1,1,0,1]],[[1,3,2,1],[1,0,2,2],[2,3,3,1],[1,1,0,1]],[[2,2,2,1],[1,0,2,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,1],[1,0,2,3],[2,3,3,1],[1,0,2,0]],[[1,2,2,2],[1,0,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,3,1],[1,0,2,2],[2,3,3,1],[1,0,2,0]],[[1,3,2,1],[1,0,2,2],[2,3,3,1],[1,0,2,0]],[[2,2,2,1],[1,0,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[1,0,2,3],[2,3,3,1],[1,0,1,1]],[[1,2,2,2],[1,0,2,2],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[1,0,2,2],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[1,0,2,2],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[1,0,2,2],[2,3,3,1],[1,0,1,1]],[[1,2,2,1],[1,0,2,3],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,2,3],[0,0,3,2],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[0,0,3,3],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[0,0,3,2],[1,2,3,1]],[[0,2,2,0],[2,2,2,2],[0,0,3,2],[1,2,2,2]],[[0,2,2,0],[2,2,2,3],[0,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[0,1,2,3],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[0,1,2,2],[2,2,2,1]],[[0,2,2,0],[2,2,2,2],[0,1,2,2],[1,3,2,1]],[[0,2,2,0],[2,2,2,2],[0,1,2,2],[1,2,3,1]],[[0,2,2,0],[2,2,2,2],[0,1,2,2],[1,2,2,2]],[[0,2,2,0],[2,2,2,2],[0,1,4,1],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[0,1,3,1],[2,2,2,1]],[[0,2,2,0],[2,2,2,2],[0,1,3,1],[1,3,2,1]],[[0,2,2,0],[2,2,2,2],[0,1,3,1],[1,2,3,1]],[[0,2,2,0],[2,2,2,2],[0,1,3,1],[1,2,2,2]],[[0,2,2,0],[2,2,2,3],[0,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[0,1,4,2],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[0,1,3,3],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[0,1,3,2],[1,2,1,2]],[[0,2,2,0],[2,2,2,3],[0,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[0,1,4,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[0,1,3,3],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[0,1,3,2],[2,2,2,0]],[[0,2,2,0],[2,2,2,2],[0,1,3,2],[1,3,2,0]],[[0,2,2,0],[2,2,2,2],[0,1,3,2],[1,2,3,0]],[[0,2,2,0],[2,2,2,3],[0,2,2,2],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[0,2,2,3],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[0,2,2,2],[1,1,3,1]],[[0,2,2,0],[2,2,2,2],[0,2,2,2],[1,1,2,2]],[[0,2,2,0],[2,2,2,2],[0,2,4,1],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[0,2,3,1],[1,1,3,1]],[[0,2,2,0],[2,2,2,2],[0,2,3,1],[1,1,2,2]],[[0,2,2,0],[2,2,2,3],[0,2,3,2],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[0,2,4,2],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[0,2,3,3],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[0,2,3,2],[1,0,2,2]],[[0,2,2,0],[2,2,2,3],[0,2,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[0,2,4,2],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[0,2,3,3],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[0,2,3,2],[1,1,1,2]],[[0,2,2,0],[2,2,2,3],[0,2,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[0,2,4,2],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[0,2,3,3],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[0,2,3,2],[1,1,3,0]],[[0,2,2,0],[2,2,2,3],[0,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[0,2,4,2],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[0,2,3,3],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[0,2,3,2],[1,2,0,2]],[[0,2,2,0],[2,2,2,3],[0,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[0,2,4,2],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,2],[1,0,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,3,1],[1,0,2,2],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[1,0,2,2],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[1,0,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[1,0,2,3],[2,3,3,1],[0,2,0,1]],[[1,2,2,2],[1,0,2,2],[2,3,3,1],[0,2,0,1]],[[1,2,3,1],[1,0,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,2,3],[0,3,2,2],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[0,3,2,3],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[0,3,2,2],[0,1,3,1]],[[0,2,2,0],[2,2,2,2],[0,3,2,2],[0,1,2,2]],[[1,3,2,1],[1,0,2,2],[2,3,3,1],[0,2,0,1]],[[2,2,2,1],[1,0,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[0,3,4,1],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[0,3,3,1],[0,1,3,1]],[[0,2,2,0],[2,2,2,2],[0,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,0,2,3],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,2,3],[0,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,2,2],[0,3,4,2],[0,0,2,1]],[[0,2,2,0],[2,2,2,2],[0,3,3,3],[0,0,2,1]],[[0,2,2,0],[2,2,2,2],[0,3,3,2],[0,0,2,2]],[[0,2,2,0],[2,2,2,3],[0,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[0,3,4,2],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[0,3,3,3],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[0,3,3,2],[0,1,1,2]],[[0,2,2,0],[2,2,2,3],[0,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[0,3,4,2],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[0,3,3,3],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[0,3,3,2],[0,1,3,0]],[[0,2,2,0],[2,2,2,3],[0,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[0,3,4,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[0,3,3,3],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[0,3,3,2],[0,2,0,2]],[[0,2,2,0],[2,2,2,3],[0,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[0,3,4,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,2],[1,0,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,3,1],[1,0,2,2],[2,3,3,1],[0,1,2,0]],[[1,3,2,1],[1,0,2,2],[2,3,3,1],[0,1,2,0]],[[2,2,2,1],[1,0,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[1,0,2,3],[2,3,3,1],[0,1,1,1]],[[1,2,2,2],[1,0,2,2],[2,3,3,1],[0,1,1,1]],[[1,2,3,1],[1,0,2,2],[2,3,3,1],[0,1,1,1]],[[1,3,2,1],[1,0,2,2],[2,3,3,1],[0,1,1,1]],[[2,2,2,1],[1,0,2,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,1],[1,0,2,3],[2,3,3,1],[0,0,2,1]],[[1,2,2,2],[1,0,2,2],[2,3,3,1],[0,0,2,1]],[[1,2,3,1],[1,0,2,2],[2,3,3,1],[0,0,2,1]],[[1,3,2,1],[1,0,2,2],[2,3,3,1],[0,0,2,1]],[[2,2,2,1],[1,0,2,2],[2,3,3,1],[0,0,2,1]],[[1,2,2,1],[1,0,2,3],[2,3,3,0],[1,1,1,1]],[[1,2,2,2],[1,0,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[1,0,2,2],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[1,0,2,2],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[1,0,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[1,0,2,3],[2,3,3,0],[1,0,2,1]],[[1,2,2,2],[1,0,2,2],[2,3,3,0],[1,0,2,1]],[[1,2,3,1],[1,0,2,2],[2,3,3,0],[1,0,2,1]],[[1,3,2,1],[1,0,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,2,2,3],[1,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,0,2,3],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,0,2,2],[2,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,0,2,2],[1,3,2,1]],[[0,2,2,0],[2,2,2,2],[1,0,2,2],[1,2,3,1]],[[0,2,2,0],[2,2,2,2],[1,0,2,2],[1,2,2,2]],[[0,2,2,0],[2,2,2,2],[1,0,4,1],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,0,3,1],[2,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,0,3,1],[1,3,2,1]],[[0,2,2,0],[2,2,2,2],[1,0,3,1],[1,2,3,1]],[[0,2,2,0],[2,2,2,2],[1,0,3,1],[1,2,2,2]],[[0,2,2,0],[2,2,2,3],[1,0,3,2],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,0,3,3],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,0,3,2],[0,2,3,1]],[[0,2,2,0],[2,2,2,2],[1,0,3,2],[0,2,2,2]],[[0,2,2,0],[2,2,2,3],[1,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[1,0,4,2],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[1,0,3,3],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[1,0,3,2],[1,2,1,2]],[[0,2,2,0],[2,2,2,3],[1,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[1,0,4,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[1,0,3,3],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[1,0,3,2],[2,2,2,0]],[[0,2,2,0],[2,2,2,2],[1,0,3,2],[1,3,2,0]],[[0,2,2,0],[2,2,2,2],[1,0,3,2],[1,2,3,0]],[[0,2,2,0],[2,2,2,3],[1,1,2,2],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,1,2,3],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,1,2,2],[0,3,2,1]],[[0,2,2,0],[2,2,2,2],[1,1,2,2],[0,2,3,1]],[[0,2,2,0],[2,2,2,2],[1,1,2,2],[0,2,2,2]],[[0,2,2,0],[2,2,2,2],[1,1,4,1],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,1,3,1],[0,3,2,1]],[[0,2,2,0],[2,2,2,2],[1,1,3,1],[0,2,3,1]],[[0,2,2,0],[2,2,2,2],[1,1,3,1],[0,2,2,2]],[[0,2,2,0],[2,2,2,3],[1,1,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[1,1,4,2],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[1,1,3,3],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[1,1,3,2],[0,2,1,2]],[[0,2,2,0],[2,2,2,3],[1,1,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[1,1,4,2],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[1,1,3,3],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[1,1,3,2],[0,3,2,0]],[[0,2,2,0],[2,2,2,2],[1,1,3,2],[0,2,3,0]],[[2,2,2,1],[1,0,2,2],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[1,0,2,3],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,2,3],[1,2,2,2],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[1,2,2,3],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[1,2,2,2],[0,1,3,1]],[[0,2,2,0],[2,2,2,2],[1,2,2,2],[0,1,2,2]],[[0,2,2,0],[2,2,2,3],[1,2,2,2],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[1,2,2,3],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[1,2,2,2],[1,0,3,1]],[[0,2,2,0],[2,2,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,2],[1,0,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,3,1],[1,0,2,2],[2,3,3,0],[0,2,1,1]],[[1,3,2,1],[1,0,2,2],[2,3,3,0],[0,2,1,1]],[[2,2,2,1],[1,0,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[1,0,2,3],[2,3,3,0],[0,1,2,1]],[[1,2,2,2],[1,0,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[1,2,4,1],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,1],[0,1,3,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,1],[0,1,2,2]],[[0,2,2,0],[2,2,2,2],[1,2,4,1],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,1],[1,0,3,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,1],[1,0,2,2]],[[1,2,3,1],[1,0,2,2],[2,3,3,0],[0,1,2,1]],[[1,3,2,1],[1,0,2,2],[2,3,3,0],[0,1,2,1]],[[2,2,2,1],[1,0,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,2,3],[1,2,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,2,2],[1,2,4,2],[0,0,2,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,3],[0,0,2,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,2],[0,0,2,2]],[[0,2,2,0],[2,2,2,3],[1,2,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[1,2,4,2],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,3],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,2],[0,1,1,2]],[[0,2,2,0],[2,2,2,3],[1,2,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[1,2,4,2],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[1,2,3,3],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[1,2,3,2],[0,1,3,0]],[[0,2,2,0],[2,2,2,3],[1,2,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[1,2,4,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,3],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,2],[0,2,0,2]],[[0,2,2,0],[2,2,2,3],[1,2,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[1,2,4,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[1,2,3,3],[0,2,1,0]],[[0,2,2,0],[2,2,2,3],[1,2,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[1,2,4,2],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,3],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,2],[1,0,1,2]],[[0,2,2,0],[2,2,2,3],[1,2,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[1,2,4,2],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[1,2,3,3],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[1,2,3,2],[1,0,3,0]],[[0,2,2,0],[2,2,2,3],[1,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[1,2,4,2],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,3],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[1,2,3,2],[1,1,0,2]],[[0,2,2,0],[2,2,2,3],[1,2,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[1,2,4,2],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[1,0,2,2],[2,3,2,3],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[1,4,0,1],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,3,0,1],[2,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,3,0,1],[1,3,2,1]],[[0,2,2,0],[2,2,2,2],[1,3,0,1],[1,2,3,1]],[[0,2,2,0],[2,2,2,2],[1,3,0,1],[1,2,2,2]],[[0,2,2,0],[2,2,2,2],[1,4,0,2],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[1,3,0,2],[2,2,1,1]],[[0,2,2,0],[2,2,2,2],[1,3,0,2],[1,3,1,1]],[[0,2,2,0],[2,2,2,2],[1,4,0,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[1,3,0,2],[2,2,2,0]],[[0,2,2,0],[2,2,2,2],[1,3,0,2],[1,3,2,0]],[[0,2,2,0],[2,2,2,2],[1,3,0,2],[1,2,3,0]],[[0,2,2,0],[2,2,2,2],[1,4,1,0],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,3,1,0],[2,2,2,1]],[[0,2,2,0],[2,2,2,2],[1,3,1,0],[1,3,2,1]],[[0,2,2,0],[2,2,2,2],[1,3,1,0],[1,2,3,1]],[[0,2,2,0],[2,2,2,2],[1,3,1,0],[1,2,2,2]],[[0,2,2,0],[2,2,2,2],[1,4,1,1],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[1,3,1,1],[2,2,2,0]],[[0,2,2,0],[2,2,2,2],[1,3,1,1],[1,3,2,0]],[[0,2,2,0],[2,2,2,2],[1,3,1,1],[1,2,3,0]],[[0,2,2,0],[2,2,2,2],[1,4,1,2],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[1,3,1,2],[2,2,0,1]],[[0,2,2,0],[2,2,2,2],[1,3,1,2],[1,3,0,1]],[[0,2,2,0],[2,2,2,2],[1,4,1,2],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[1,3,1,2],[2,2,1,0]],[[0,2,2,0],[2,2,2,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[1,0,2,3],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[1,0,2,2],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[1,0,2,2],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[1,0,2,2],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[1,0,2,2],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[1,0,2,2],[2,3,2,2],[1,1,0,2]],[[1,2,2,1],[1,0,2,2],[2,3,2,3],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[1,4,2,0],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[1,3,2,0],[2,2,1,1]],[[0,2,2,0],[2,2,2,2],[1,3,2,0],[1,3,1,1]],[[0,2,2,0],[2,2,2,2],[1,4,2,1],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[1,3,2,1],[2,2,0,1]],[[0,2,2,0],[2,2,2,2],[1,3,2,1],[1,3,0,1]],[[0,2,2,0],[2,2,2,2],[1,4,2,1],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[1,3,2,1],[2,2,1,0]],[[0,2,2,0],[2,2,2,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[1,0,2,3],[2,3,2,2],[1,1,0,1]],[[1,2,2,2],[1,0,2,2],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[1,0,2,2],[2,3,2,2],[1,1,0,1]],[[1,3,2,1],[1,0,2,2],[2,3,2,2],[1,1,0,1]],[[2,2,2,1],[1,0,2,2],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[1,0,2,2],[2,3,2,3],[1,0,2,0]],[[1,2,2,1],[1,0,2,3],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[1,0,2,2],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[1,0,2,2],[2,3,2,2],[1,0,2,0]],[[1,3,2,1],[1,0,2,2],[2,3,2,2],[1,0,2,0]],[[2,2,2,1],[1,0,2,2],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[1,0,2,2],[2,3,2,2],[1,0,1,2]],[[1,2,2,1],[1,0,2,2],[2,3,2,3],[1,0,1,1]],[[1,2,2,1],[1,0,2,3],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[1,0,2,2],[2,3,2,2],[1,0,1,1]],[[1,2,3,1],[1,0,2,2],[2,3,2,2],[1,0,1,1]],[[1,3,2,1],[1,0,2,2],[2,3,2,2],[1,0,1,1]],[[2,2,2,1],[1,0,2,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[1,4,3,0],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[1,3,3,0],[2,2,1,0]],[[0,2,2,0],[2,2,2,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[1,0,2,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[1,0,2,3],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[1,0,2,2],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[1,0,2,2],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[1,0,2,2],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[1,0,2,2],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[1,0,2,2],[2,3,2,2],[0,2,0,2]],[[1,2,2,1],[1,0,2,2],[2,3,2,3],[0,2,0,1]],[[1,2,2,1],[1,0,2,3],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[1,0,2,2],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[1,0,2,2],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[1,0,2,2],[2,3,2,2],[0,2,0,1]],[[2,2,2,1],[1,0,2,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,3],[1,3,3,2],[0,0,1,1]],[[0,2,2,0],[2,2,2,2],[1,3,4,2],[0,0,1,1]],[[0,2,2,0],[2,2,2,2],[1,3,3,3],[0,0,1,1]],[[0,2,2,0],[2,2,2,2],[1,3,3,2],[0,0,1,2]],[[0,2,2,0],[2,2,2,3],[1,3,3,2],[0,0,2,0]],[[0,2,2,0],[2,2,2,2],[1,3,4,2],[0,0,2,0]],[[0,2,2,0],[2,2,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,0,2,2],[2,3,2,3],[0,1,2,0]],[[1,2,2,1],[1,0,2,3],[2,3,2,2],[0,1,2,0]],[[1,2,2,2],[1,0,2,2],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[1,0,2,2],[2,3,2,2],[0,1,2,0]],[[1,3,2,1],[1,0,2,2],[2,3,2,2],[0,1,2,0]],[[2,2,2,1],[1,0,2,2],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[1,0,2,2],[2,3,2,2],[0,1,1,2]],[[1,2,2,1],[1,0,2,2],[2,3,2,3],[0,1,1,1]],[[1,2,2,1],[1,0,2,3],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[1,0,2,2],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[1,0,2,2],[2,3,2,2],[0,1,1,1]],[[1,3,2,1],[1,0,2,2],[2,3,2,2],[0,1,1,1]],[[2,2,2,1],[1,0,2,2],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[1,0,2,2],[2,3,2,2],[0,0,2,2]],[[1,2,2,1],[1,0,2,2],[2,3,2,3],[0,0,2,1]],[[1,2,2,1],[1,0,2,3],[2,3,2,2],[0,0,2,1]],[[1,2,2,2],[1,0,2,2],[2,3,2,2],[0,0,2,1]],[[1,2,3,1],[1,0,2,2],[2,3,2,2],[0,0,2,1]],[[1,3,2,1],[1,0,2,2],[2,3,2,2],[0,0,2,1]],[[2,2,2,1],[1,0,2,2],[2,3,2,2],[0,0,2,1]],[[1,2,2,1],[1,0,2,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[1,0,2,2],[2,3,1,2],[1,0,3,1]],[[1,2,2,1],[1,0,2,2],[2,3,1,3],[1,0,2,1]],[[1,2,2,1],[1,0,2,3],[2,3,1,2],[1,0,2,1]],[[1,2,2,2],[1,0,2,2],[2,3,1,2],[1,0,2,1]],[[1,2,3,1],[1,0,2,2],[2,3,1,2],[1,0,2,1]],[[1,3,2,1],[1,0,2,2],[2,3,1,2],[1,0,2,1]],[[2,2,2,1],[1,0,2,2],[2,3,1,2],[1,0,2,1]],[[1,2,2,1],[1,0,2,2],[2,3,1,2],[0,1,2,2]],[[1,2,2,1],[1,0,2,2],[2,3,1,2],[0,1,3,1]],[[1,2,2,1],[1,0,2,2],[2,3,1,3],[0,1,2,1]],[[1,2,2,1],[1,0,2,3],[2,3,1,2],[0,1,2,1]],[[1,2,2,2],[1,0,2,2],[2,3,1,2],[0,1,2,1]],[[1,2,3,1],[1,0,2,2],[2,3,1,2],[0,1,2,1]],[[1,3,2,1],[1,0,2,2],[2,3,1,2],[0,1,2,1]],[[2,2,2,1],[1,0,2,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,2,2,3],[2,0,2,2],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,0,2,3],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,0,2,2],[0,3,2,1]],[[0,2,2,0],[2,2,2,2],[2,0,2,2],[0,2,3,1]],[[0,2,2,0],[2,2,2,2],[2,0,2,2],[0,2,2,2]],[[0,2,2,0],[2,2,2,3],[2,0,2,2],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,0,2,3],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,0,2,2],[1,1,3,1]],[[0,2,2,0],[2,2,2,2],[2,0,2,2],[1,1,2,2]],[[0,2,2,0],[2,2,2,2],[2,0,4,1],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,0,3,1],[0,3,2,1]],[[0,2,2,0],[2,2,2,2],[2,0,3,1],[0,2,3,1]],[[0,2,2,0],[2,2,2,2],[2,0,3,1],[0,2,2,2]],[[0,2,2,0],[2,2,2,2],[2,0,4,1],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,0,3,1],[1,1,3,1]],[[0,2,2,0],[2,2,2,2],[2,0,3,1],[1,1,2,2]],[[0,2,2,0],[2,2,2,3],[2,0,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[2,0,4,2],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[2,0,3,3],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[2,0,3,2],[0,2,1,2]],[[0,2,2,0],[2,2,2,3],[2,0,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,0,4,2],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,0,3,3],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,0,3,2],[0,3,2,0]],[[0,2,2,0],[2,2,2,2],[2,0,3,2],[0,2,3,0]],[[0,2,2,0],[2,2,2,3],[2,0,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,0,4,2],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,0,3,3],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,0,3,2],[1,1,1,2]],[[0,2,2,0],[2,2,2,3],[2,0,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,0,4,2],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,0,3,3],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,0,3,2],[1,1,3,0]],[[0,2,2,0],[2,2,2,3],[2,0,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,0,4,2],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,0,3,3],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,0,3,2],[1,2,0,2]],[[0,2,2,0],[2,2,2,3],[2,0,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,0,4,2],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[1,0,2,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[1,0,2,2],[2,4,0,2],[1,1,2,1]],[[1,2,2,1],[1,0,2,2],[3,3,0,2],[1,1,2,1]],[[1,2,2,1],[1,0,2,2],[2,3,0,2],[0,2,2,2]],[[1,2,2,1],[1,0,2,2],[2,3,0,2],[0,2,3,1]],[[1,2,2,1],[1,0,2,2],[2,3,0,2],[0,3,2,1]],[[1,2,2,1],[1,0,2,2],[2,3,0,3],[0,2,2,1]],[[1,2,2,1],[1,0,2,2],[2,4,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,2,3],[2,1,2,2],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,1,2,3],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,1,2,2],[0,1,3,1]],[[0,2,2,0],[2,2,2,2],[2,1,2,2],[0,1,2,2]],[[0,2,2,0],[2,2,2,3],[2,1,2,2],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[2,1,2,3],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[2,1,2,2],[1,0,3,1]],[[0,2,2,0],[2,2,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,1],[1,0,2,2],[3,3,0,2],[0,2,2,1]],[[1,2,2,1],[1,0,2,3],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[1,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[1,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[1,0,2,2],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[1,0,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,1,4,1],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,1],[0,1,3,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,1],[0,1,2,2]],[[0,2,2,0],[2,2,2,2],[2,1,4,1],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,1],[1,0,3,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,1],[1,0,2,2]],[[0,2,2,0],[2,2,2,3],[2,1,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,2,2],[2,1,4,2],[0,0,2,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,3],[0,0,2,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,2],[0,0,2,2]],[[0,2,2,0],[2,2,2,3],[2,1,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,1,4,2],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,3],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,2],[0,1,1,2]],[[0,2,2,0],[2,2,2,3],[2,1,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,1,4,2],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,1,3,3],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,1,3,2],[0,1,3,0]],[[0,2,2,0],[2,2,2,3],[2,1,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,1,4,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,3],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,2],[0,2,0,2]],[[0,2,2,0],[2,2,2,3],[2,1,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,1,4,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,1,3,3],[0,2,1,0]],[[0,2,2,0],[2,2,2,3],[2,1,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[2,1,4,2],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,3],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,2],[1,0,1,2]],[[0,2,2,0],[2,2,2,3],[2,1,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[2,1,4,2],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[2,1,3,3],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[2,1,3,2],[1,0,3,0]],[[0,2,2,0],[2,2,2,3],[2,1,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[2,1,4,2],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,3],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[2,1,3,2],[1,1,0,2]],[[0,2,2,0],[2,2,2,3],[2,1,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[2,1,4,2],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[2,1,3,3],[1,1,1,0]],[[0,2,2,0],[3,2,2,2],[2,2,0,1],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[3,2,0,1],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,2,0,1],[2,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,2,0,1],[1,3,2,1]],[[0,2,2,0],[2,2,2,2],[2,2,0,1],[1,2,3,1]],[[0,2,2,0],[2,2,2,2],[2,2,0,1],[1,2,2,2]],[[0,2,2,0],[3,2,2,2],[2,2,0,2],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[3,2,0,2],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[2,2,0,2],[2,2,1,1]],[[0,2,2,0],[2,2,2,2],[2,2,0,2],[1,3,1,1]],[[0,2,2,0],[3,2,2,2],[2,2,0,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[3,2,0,2],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,2,0,2],[2,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,2,0,2],[1,3,2,0]],[[0,2,2,0],[2,2,2,2],[2,2,0,2],[1,2,3,0]],[[0,2,2,0],[3,2,2,2],[2,2,1,0],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[3,2,1,0],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,2,1,0],[2,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,2,1,0],[1,3,2,1]],[[0,2,2,0],[2,2,2,2],[2,2,1,0],[1,2,3,1]],[[0,2,2,0],[2,2,2,2],[2,2,1,0],[1,2,2,2]],[[0,2,2,0],[3,2,2,2],[2,2,1,1],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[3,2,1,1],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,2,1,1],[2,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,2,1,1],[1,3,2,0]],[[0,2,2,0],[2,2,2,2],[2,2,1,1],[1,2,3,0]],[[0,2,2,0],[3,2,2,2],[2,2,1,2],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[3,2,1,2],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,2,1,2],[2,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,2,1,2],[1,3,0,1]],[[0,2,2,0],[3,2,2,2],[2,2,1,2],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[3,2,1,2],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,2,1,2],[2,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,1],[1,0,2,3],[2,2,3,1],[0,2,2,0]],[[1,2,2,2],[1,0,2,2],[2,2,3,1],[0,2,2,0]],[[1,2,3,1],[1,0,2,2],[2,2,3,1],[0,2,2,0]],[[1,3,2,1],[1,0,2,2],[2,2,3,1],[0,2,2,0]],[[0,2,2,0],[3,2,2,2],[2,2,2,0],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[3,2,2,0],[1,2,1,1]],[[0,2,2,0],[2,2,2,2],[2,2,2,0],[2,2,1,1]],[[0,2,2,0],[2,2,2,2],[2,2,2,0],[1,3,1,1]],[[0,2,2,0],[3,2,2,2],[2,2,2,1],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[3,2,2,1],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,2,2,1],[2,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,2,2,1],[1,3,0,1]],[[0,2,2,0],[3,2,2,2],[2,2,2,1],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[3,2,2,1],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,2,2,1],[2,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,2,2,1],[1,3,1,0]],[[2,2,2,1],[1,0,2,2],[2,2,3,1],[0,2,2,0]],[[1,2,2,1],[1,0,2,3],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[1,0,2,2],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[1,0,2,2],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[1,0,2,2],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[1,0,2,2],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[1,0,2,3],[2,2,3,0],[0,2,2,1]],[[1,2,2,2],[1,0,2,2],[2,2,3,0],[0,2,2,1]],[[1,2,3,1],[1,0,2,2],[2,2,3,0],[0,2,2,1]],[[1,3,2,1],[1,0,2,2],[2,2,3,0],[0,2,2,1]],[[2,2,2,1],[1,0,2,2],[2,2,3,0],[0,2,2,1]],[[0,2,2,0],[3,2,2,2],[2,2,3,0],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[3,2,3,0],[1,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,2,3,0],[2,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,2,3,0],[1,3,1,0]],[[1,2,2,1],[1,0,2,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,1],[1,0,2,3],[2,2,2,2],[0,2,2,0]],[[1,2,2,2],[1,0,2,2],[2,2,2,2],[0,2,2,0]],[[1,2,3,1],[1,0,2,2],[2,2,2,2],[0,2,2,0]],[[1,3,2,1],[1,0,2,2],[2,2,2,2],[0,2,2,0]],[[2,2,2,1],[1,0,2,2],[2,2,2,2],[0,2,2,0]],[[1,2,2,1],[1,0,2,2],[2,2,2,2],[0,2,1,2]],[[1,2,2,1],[1,0,2,2],[2,2,2,3],[0,2,1,1]],[[1,2,2,1],[1,0,2,3],[2,2,2,2],[0,2,1,1]],[[1,2,2,2],[1,0,2,2],[2,2,2,2],[0,2,1,1]],[[1,2,3,1],[1,0,2,2],[2,2,2,2],[0,2,1,1]],[[1,3,2,1],[1,0,2,2],[2,2,2,2],[0,2,1,1]],[[2,2,2,1],[1,0,2,2],[2,2,2,2],[0,2,1,1]],[[1,2,2,1],[1,0,2,2],[2,2,1,2],[0,2,2,2]],[[1,2,2,1],[1,0,2,2],[2,2,1,2],[0,2,3,1]],[[1,2,2,1],[1,0,2,2],[2,2,1,2],[0,3,2,1]],[[1,2,2,1],[1,0,2,2],[2,2,1,3],[0,2,2,1]],[[1,2,2,1],[1,0,2,3],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[1,0,2,2],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[1,0,2,2],[2,2,1,2],[0,2,2,1]],[[1,3,2,1],[1,0,2,2],[2,2,1,2],[0,2,2,1]],[[2,2,2,1],[1,0,2,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[1,0,2,2],[2,2,0,2],[1,2,2,2]],[[1,2,2,1],[1,0,2,2],[2,2,0,2],[1,2,3,1]],[[1,2,2,1],[1,0,2,2],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[1,0,2,2],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[1,0,2,2],[2,2,0,3],[1,2,2,1]],[[1,2,2,1],[1,0,2,2],[3,2,0,2],[1,2,2,1]],[[1,2,2,1],[1,0,2,3],[2,2,0,2],[1,2,2,1]],[[1,2,2,2],[1,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,2,3,1],[1,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,3,2,1],[1,0,2,2],[2,2,0,2],[1,2,2,1]],[[2,2,2,1],[1,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,2,2,1],[1,0,2,3],[2,1,3,1],[1,2,2,0]],[[1,2,2,2],[1,0,2,2],[2,1,3,1],[1,2,2,0]],[[1,2,3,1],[1,0,2,2],[2,1,3,1],[1,2,2,0]],[[1,3,2,1],[1,0,2,2],[2,1,3,1],[1,2,2,0]],[[2,2,2,1],[1,0,2,2],[2,1,3,1],[1,2,2,0]],[[1,2,2,1],[1,0,2,3],[2,1,3,1],[1,2,1,1]],[[1,2,2,2],[1,0,2,2],[2,1,3,1],[1,2,1,1]],[[1,2,3,1],[1,0,2,2],[2,1,3,1],[1,2,1,1]],[[1,3,2,1],[1,0,2,2],[2,1,3,1],[1,2,1,1]],[[2,2,2,1],[1,0,2,2],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[1,0,2,3],[2,1,3,0],[1,2,2,1]],[[1,2,2,2],[1,0,2,2],[2,1,3,0],[1,2,2,1]],[[1,2,3,1],[1,0,2,2],[2,1,3,0],[1,2,2,1]],[[1,3,2,1],[1,0,2,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,0,0],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[3,3,0,0],[1,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,3,0,0],[2,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,3,0,0],[1,3,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,0,1],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[3,3,0,1],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,4,0,1],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,3,0,1],[0,3,2,1]],[[0,2,2,0],[2,2,2,2],[2,3,0,1],[0,2,3,1]],[[0,2,2,0],[2,2,2,2],[2,3,0,1],[0,2,2,2]],[[0,2,2,0],[3,2,2,2],[2,3,0,1],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[3,3,0,1],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,4,0,1],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,3,0,1],[2,1,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,0,1],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[3,3,0,1],[1,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,3,0,1],[2,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,3,0,1],[1,3,2,0]],[[0,2,2,0],[3,2,2,2],[2,3,0,2],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[3,3,0,2],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,4,0,2],[0,1,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,0,2],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[3,3,0,2],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[2,4,0,2],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[2,3,0,2],[0,3,1,1]],[[0,2,2,0],[3,2,2,2],[2,3,0,2],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[3,3,0,2],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,4,0,2],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,3,0,2],[0,3,2,0]],[[0,2,2,0],[2,2,2,2],[2,3,0,2],[0,2,3,0]],[[0,2,2,0],[3,2,2,2],[2,3,0,2],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[3,3,0,2],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[2,4,0,2],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[2,3,0,2],[2,0,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,0,2],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[3,3,0,2],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,4,0,2],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,3,0,2],[2,1,1,1]],[[0,2,2,0],[3,2,2,2],[2,3,0,2],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[3,3,0,2],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,4,0,2],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,3,0,2],[2,1,2,0]],[[2,2,2,1],[1,0,2,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[3,3,1,0],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,4,1,0],[0,2,2,1]],[[0,2,2,0],[2,2,2,2],[2,3,1,0],[0,3,2,1]],[[0,2,2,0],[2,2,2,2],[2,3,1,0],[0,2,3,1]],[[0,2,2,0],[2,2,2,2],[2,3,1,0],[0,2,2,2]],[[0,2,2,0],[3,2,2,2],[2,3,1,0],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[3,3,1,0],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,4,1,0],[1,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,3,1,0],[2,1,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,1,1],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[3,3,1,1],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,4,1,1],[0,2,2,0]],[[0,2,2,0],[2,2,2,2],[2,3,1,1],[0,3,2,0]],[[0,2,2,0],[2,2,2,2],[2,3,1,1],[0,2,3,0]],[[0,2,2,0],[3,2,2,2],[2,3,1,1],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[3,3,1,1],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,4,1,1],[1,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[1,0,2,2],[2,1,2,3],[1,2,2,0]],[[1,2,2,1],[1,0,2,3],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[1,0,2,2],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[1,0,2,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[3,2,2,2],[2,3,1,2],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[3,3,1,2],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,4,1,2],[0,1,1,1]],[[0,2,2,0],[3,2,2,2],[2,3,1,2],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[3,3,1,2],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,4,1,2],[0,1,2,0]],[[0,2,2,0],[3,2,2,2],[2,3,1,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[3,3,1,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,4,1,2],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,3,1,2],[0,3,0,1]],[[0,2,2,0],[3,2,2,2],[2,3,1,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[3,3,1,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,4,1,2],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,3,1,2],[0,3,1,0]],[[1,3,2,1],[1,0,2,2],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[1,0,2,2],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[1,0,2,2],[2,1,2,2],[1,2,1,2]],[[1,2,2,1],[1,0,2,2],[2,1,2,3],[1,2,1,1]],[[1,2,2,1],[1,0,2,3],[2,1,2,2],[1,2,1,1]],[[1,2,2,2],[1,0,2,2],[2,1,2,2],[1,2,1,1]],[[1,2,3,1],[1,0,2,2],[2,1,2,2],[1,2,1,1]],[[1,3,2,1],[1,0,2,2],[2,1,2,2],[1,2,1,1]],[[0,2,2,0],[3,2,2,2],[2,3,1,2],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[3,3,1,2],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[2,4,1,2],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[2,3,1,2],[2,0,1,1]],[[0,2,2,0],[3,2,2,2],[2,3,1,2],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[3,3,1,2],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[2,4,1,2],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[2,3,1,2],[2,0,2,0]],[[0,2,2,0],[3,2,2,2],[2,3,1,2],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[3,3,1,2],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[2,4,1,2],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[2,3,1,2],[2,1,0,1]],[[0,2,2,0],[3,2,2,2],[2,3,1,2],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[3,3,1,2],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[2,4,1,2],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[2,3,1,2],[2,1,1,0]],[[2,2,2,1],[1,0,2,2],[2,1,2,2],[1,2,1,1]],[[1,2,2,1],[1,0,2,2],[2,1,1,2],[1,2,2,2]],[[1,2,2,1],[1,0,2,2],[2,1,1,2],[1,2,3,1]],[[1,2,2,1],[1,0,2,2],[2,1,1,2],[1,3,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,1,2],[1,2,0,0]],[[0,2,2,0],[2,2,2,2],[3,3,1,2],[1,2,0,0]],[[0,2,2,0],[2,2,2,2],[2,4,1,2],[1,2,0,0]],[[0,2,2,0],[2,2,2,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[1,0,2,2],[2,1,1,2],[2,2,2,1]],[[1,2,2,1],[1,0,2,2],[2,1,1,3],[1,2,2,1]],[[1,2,2,1],[1,0,2,2],[3,1,1,2],[1,2,2,1]],[[1,2,2,1],[1,0,2,3],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[1,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[1,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[1,0,2,2],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[1,0,2,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,2,0],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[3,3,2,0],[0,1,2,1]],[[0,2,2,0],[2,2,2,2],[2,4,2,0],[0,1,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,2,0],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[3,3,2,0],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[2,4,2,0],[0,2,1,1]],[[0,2,2,0],[2,2,2,2],[2,3,2,0],[0,3,1,1]],[[0,2,2,0],[3,2,2,2],[2,3,2,0],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[3,3,2,0],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[2,4,2,0],[1,0,2,1]],[[0,2,2,0],[2,2,2,2],[2,3,2,0],[2,0,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,2,0],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[3,3,2,0],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,4,2,0],[1,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,3,2,0],[2,1,1,1]],[[0,2,2,0],[3,2,2,2],[2,3,2,0],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[3,3,2,0],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,4,2,0],[1,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,3,2,0],[2,2,0,1]],[[0,2,2,0],[3,2,2,2],[2,3,2,1],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[3,3,2,1],[0,1,1,1]],[[0,2,2,0],[2,2,2,2],[2,4,2,1],[0,1,1,1]],[[0,2,2,0],[3,2,2,2],[2,3,2,1],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[3,3,2,1],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,4,2,1],[0,1,2,0]],[[0,2,2,0],[3,2,2,2],[2,3,2,1],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[3,3,2,1],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,4,2,1],[0,2,0,1]],[[0,2,2,0],[2,2,2,2],[2,3,2,1],[0,3,0,1]],[[0,2,2,0],[3,2,2,2],[2,3,2,1],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[3,3,2,1],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,4,2,1],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,3,2,1],[0,3,1,0]],[[0,2,2,0],[3,2,2,2],[2,3,2,1],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[3,3,2,1],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[2,4,2,1],[1,0,1,1]],[[0,2,2,0],[2,2,2,2],[2,3,2,1],[2,0,1,1]],[[0,2,2,0],[3,2,2,2],[2,3,2,1],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[3,3,2,1],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[2,4,2,1],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[2,3,2,1],[2,0,2,0]],[[0,2,2,0],[3,2,2,2],[2,3,2,1],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[3,3,2,1],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[2,4,2,1],[1,1,0,1]],[[0,2,2,0],[2,2,2,2],[2,3,2,1],[2,1,0,1]],[[0,2,2,0],[3,2,2,2],[2,3,2,1],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[3,3,2,1],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[2,4,2,1],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[2,3,2,1],[2,1,1,0]],[[0,2,2,0],[3,2,2,2],[2,3,2,1],[1,2,0,0]],[[0,2,2,0],[2,2,2,2],[3,3,2,1],[1,2,0,0]],[[0,2,2,0],[2,2,2,2],[2,4,2,1],[1,2,0,0]],[[0,2,2,0],[2,2,2,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[1,0,2,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,1],[1,0,2,2],[1,3,4,2],[1,0,2,0]],[[1,2,2,1],[1,0,2,3],[1,3,3,2],[1,0,2,0]],[[1,2,2,2],[1,0,2,2],[1,3,3,2],[1,0,2,0]],[[1,2,3,1],[1,0,2,2],[1,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,0,2,2],[1,3,3,2],[1,0,1,2]],[[1,2,2,1],[1,0,2,2],[1,3,3,3],[1,0,1,1]],[[1,2,2,1],[1,0,2,2],[1,3,4,2],[1,0,1,1]],[[1,2,2,1],[1,0,2,3],[1,3,3,2],[1,0,1,1]],[[1,2,2,2],[1,0,2,2],[1,3,3,2],[1,0,1,1]],[[1,2,3,1],[1,0,2,2],[1,3,3,2],[1,0,1,1]],[[1,2,2,1],[1,0,2,2],[1,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,0,2,2],[1,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,0,2,3],[1,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,0,2,2],[1,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,0,2,2],[1,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,0,2,2],[1,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,0,2,2],[1,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,0,2,2],[1,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,0,2,3],[1,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,0,2,2],[1,3,3,2],[0,2,0,1]],[[1,2,3,1],[1,0,2,2],[1,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,0,2,2],[1,3,3,2],[0,1,3,0]],[[1,2,2,1],[1,0,2,2],[1,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,0,2,2],[1,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,0,2,3],[1,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,0,2,2],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,0,2,2],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,0,2,2],[1,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,0,2,2],[1,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,0,2,2],[1,3,4,2],[0,1,1,1]],[[1,2,2,1],[1,0,2,3],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,0,2,2],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[1,0,2,2],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,0,2,2],[1,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,0,2,2],[1,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,0,2,2],[1,3,4,2],[0,0,2,1]],[[1,2,2,1],[1,0,2,3],[1,3,3,2],[0,0,2,1]],[[1,2,2,2],[1,0,2,2],[1,3,3,2],[0,0,2,1]],[[1,2,3,1],[1,0,2,2],[1,3,3,2],[0,0,2,1]],[[1,2,2,1],[1,0,2,3],[1,3,3,1],[1,2,1,0]],[[0,2,2,0],[3,2,2,2],[2,3,3,0],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[3,3,3,0],[0,1,2,0]],[[0,2,2,0],[2,2,2,2],[2,4,3,0],[0,1,2,0]],[[0,2,2,0],[3,2,2,2],[2,3,3,0],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[3,3,3,0],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,4,3,0],[0,2,1,0]],[[0,2,2,0],[2,2,2,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,2],[1,0,2,2],[1,3,3,1],[1,2,1,0]],[[1,2,3,1],[1,0,2,2],[1,3,3,1],[1,2,1,0]],[[1,3,2,1],[1,0,2,2],[1,3,3,1],[1,2,1,0]],[[2,2,2,1],[1,0,2,2],[1,3,3,1],[1,2,1,0]],[[1,2,2,1],[1,0,2,3],[1,3,3,1],[1,2,0,1]],[[1,2,2,2],[1,0,2,2],[1,3,3,1],[1,2,0,1]],[[1,2,3,1],[1,0,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[3,2,2,2],[2,3,3,0],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[3,3,3,0],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[2,4,3,0],[1,0,2,0]],[[0,2,2,0],[2,2,2,2],[2,3,3,0],[2,0,2,0]],[[0,2,2,0],[3,2,2,2],[2,3,3,0],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[3,3,3,0],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[2,4,3,0],[1,1,1,0]],[[0,2,2,0],[2,2,2,2],[2,3,3,0],[2,1,1,0]],[[1,3,2,1],[1,0,2,2],[1,3,3,1],[1,2,0,1]],[[2,2,2,1],[1,0,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[3,2,2,2],[2,3,3,0],[1,2,0,0]],[[0,2,2,0],[2,2,2,2],[3,3,3,0],[1,2,0,0]],[[0,2,2,0],[2,2,2,2],[2,4,3,0],[1,2,0,0]],[[0,2,2,0],[2,2,2,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[1,0,2,3],[1,3,3,1],[1,1,2,0]],[[1,2,2,2],[1,0,2,2],[1,3,3,1],[1,1,2,0]],[[1,2,3,1],[1,0,2,2],[1,3,3,1],[1,1,2,0]],[[1,3,2,1],[1,0,2,2],[1,3,3,1],[1,1,2,0]],[[2,2,2,1],[1,0,2,2],[1,3,3,1],[1,1,2,0]],[[1,2,2,1],[1,0,2,3],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[1,0,2,2],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[1,0,2,2],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[1,0,2,2],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[1,0,2,2],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,0,2,2],[1,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,0,2,2],[1,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,0,2,2],[1,3,4,1],[0,1,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,0],[2,2,2,2],[3,3,3,1],[0,2,0,0]],[[0,2,2,0],[2,2,2,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[1,0,2,3],[1,3,3,0],[1,2,1,1]],[[1,2,2,2],[1,0,2,2],[1,3,3,0],[1,2,1,1]],[[1,2,3,1],[1,0,2,2],[1,3,3,0],[1,2,1,1]],[[1,3,2,1],[1,0,2,2],[1,3,3,0],[1,2,1,1]],[[2,2,2,1],[1,0,2,2],[1,3,3,0],[1,2,1,1]],[[1,2,2,1],[1,0,2,3],[1,3,3,0],[1,1,2,1]],[[1,2,2,2],[1,0,2,2],[1,3,3,0],[1,1,2,1]],[[1,2,3,1],[1,0,2,2],[1,3,3,0],[1,1,2,1]],[[1,3,2,1],[1,0,2,2],[1,3,3,0],[1,1,2,1]],[[2,2,2,1],[1,0,2,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[3,2,2,2],[2,3,3,1],[1,1,0,0]],[[0,2,2,0],[2,2,2,2],[3,3,3,1],[1,1,0,0]],[[0,2,2,0],[2,2,2,2],[2,4,3,1],[1,1,0,0]],[[0,2,2,0],[2,2,2,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[1,0,2,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[1,0,2,3],[1,3,2,2],[1,2,1,0]],[[1,2,2,2],[1,0,2,2],[1,3,2,2],[1,2,1,0]],[[1,2,3,1],[1,0,2,2],[1,3,2,2],[1,2,1,0]],[[1,3,2,1],[1,0,2,2],[1,3,2,2],[1,2,1,0]],[[2,2,2,1],[1,0,2,2],[1,3,2,2],[1,2,1,0]],[[1,2,2,1],[1,0,2,2],[1,3,2,2],[1,2,0,2]],[[1,2,2,1],[1,0,2,2],[1,3,2,3],[1,2,0,1]],[[1,2,2,1],[1,0,2,3],[1,3,2,2],[1,2,0,1]],[[1,2,2,2],[1,0,2,2],[1,3,2,2],[1,2,0,1]],[[1,2,3,1],[1,0,2,2],[1,3,2,2],[1,2,0,1]],[[1,3,2,1],[1,0,2,2],[1,3,2,2],[1,2,0,1]],[[2,2,2,1],[1,0,2,2],[1,3,2,2],[1,2,0,1]],[[1,2,2,1],[1,0,2,2],[1,3,2,3],[1,1,2,0]],[[1,2,2,1],[1,0,2,3],[1,3,2,2],[1,1,2,0]],[[1,2,2,2],[1,0,2,2],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[1,0,2,2],[1,3,2,2],[1,1,2,0]],[[1,3,2,1],[1,0,2,2],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[1,0,2,2],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,0,2,2],[1,3,2,2],[1,1,1,2]],[[1,2,2,1],[1,0,2,2],[1,3,2,3],[1,1,1,1]],[[1,2,2,1],[1,0,2,3],[1,3,2,2],[1,1,1,1]],[[1,2,2,2],[1,0,2,2],[1,3,2,2],[1,1,1,1]],[[1,2,3,1],[1,0,2,2],[1,3,2,2],[1,1,1,1]],[[1,3,2,1],[1,0,2,2],[1,3,2,2],[1,1,1,1]],[[2,2,2,1],[1,0,2,2],[1,3,2,2],[1,1,1,1]],[[1,2,2,1],[1,0,2,2],[1,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,0,2,2],[1,3,2,2],[0,1,3,1]],[[1,2,2,1],[1,0,2,2],[1,3,2,3],[0,1,2,1]],[[1,2,2,1],[1,0,2,3],[1,3,2,2],[0,1,2,1]],[[1,2,2,2],[1,0,2,2],[1,3,2,2],[0,1,2,1]],[[1,2,3,1],[1,0,2,2],[1,3,2,2],[0,1,2,1]],[[1,2,2,1],[1,0,2,2],[1,3,1,2],[1,1,2,2]],[[1,2,2,1],[1,0,2,2],[1,3,1,2],[1,1,3,1]],[[1,2,2,1],[1,0,2,2],[1,3,1,3],[1,1,2,1]],[[1,2,2,1],[1,0,2,3],[1,3,1,2],[1,1,2,1]],[[1,2,2,2],[1,0,2,2],[1,3,1,2],[1,1,2,1]],[[1,2,3,1],[1,0,2,2],[1,3,1,2],[1,1,2,1]],[[1,3,2,1],[1,0,2,2],[1,3,1,2],[1,1,2,1]],[[2,2,2,1],[1,0,2,2],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[1,0,2,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[1,0,2,2],[1,3,0,2],[1,2,3,1]],[[1,2,2,1],[1,0,2,2],[1,3,0,2],[1,3,2,1]],[[1,2,2,1],[1,0,2,2],[1,3,0,2],[2,2,2,1]],[[1,2,2,1],[1,0,2,2],[1,3,0,3],[1,2,2,1]],[[1,2,2,1],[1,0,2,2],[1,4,0,2],[1,2,2,1]],[[1,2,2,1],[1,0,2,3],[1,3,0,2],[1,2,2,1]],[[1,2,2,2],[1,0,2,2],[1,3,0,2],[1,2,2,1]],[[1,2,3,1],[1,0,2,2],[1,3,0,2],[1,2,2,1]],[[1,3,2,1],[1,0,2,2],[1,3,0,2],[1,2,2,1]],[[2,2,2,1],[1,0,2,2],[1,3,0,2],[1,2,2,1]],[[1,2,2,1],[1,0,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,0,2,2],[1,2,3,3],[0,2,2,0]],[[1,2,2,1],[1,0,2,2],[1,2,4,2],[0,2,2,0]],[[1,2,2,1],[1,0,2,3],[1,2,3,2],[0,2,2,0]],[[1,2,2,2],[1,0,2,2],[1,2,3,2],[0,2,2,0]],[[1,2,3,1],[1,0,2,2],[1,2,3,2],[0,2,2,0]],[[1,2,2,1],[1,0,2,2],[1,2,3,2],[0,2,1,2]],[[1,2,2,1],[1,0,2,2],[1,2,3,3],[0,2,1,1]],[[1,2,2,1],[1,0,2,2],[1,2,4,2],[0,2,1,1]],[[1,2,2,1],[1,0,2,3],[1,2,3,2],[0,2,1,1]],[[1,2,2,2],[1,0,2,2],[1,2,3,2],[0,2,1,1]],[[1,2,3,1],[1,0,2,2],[1,2,3,2],[0,2,1,1]],[[1,2,2,1],[1,0,2,3],[1,2,3,1],[1,2,2,0]],[[1,2,2,2],[1,0,2,2],[1,2,3,1],[1,2,2,0]],[[1,2,3,1],[1,0,2,2],[1,2,3,1],[1,2,2,0]],[[1,3,2,1],[1,0,2,2],[1,2,3,1],[1,2,2,0]],[[2,2,2,1],[1,0,2,2],[1,2,3,1],[1,2,2,0]],[[1,2,2,1],[1,0,2,3],[1,2,3,1],[1,2,1,1]],[[1,2,2,2],[1,0,2,2],[1,2,3,1],[1,2,1,1]],[[1,2,3,1],[1,0,2,2],[1,2,3,1],[1,2,1,1]],[[1,3,2,1],[1,0,2,2],[1,2,3,1],[1,2,1,1]],[[2,2,2,1],[1,0,2,2],[1,2,3,1],[1,2,1,1]],[[1,2,2,1],[1,0,2,2],[1,2,3,1],[0,2,2,2]],[[1,2,2,1],[1,0,2,2],[1,2,3,1],[0,2,3,1]],[[1,2,2,1],[1,0,2,2],[1,2,4,1],[0,2,2,1]],[[1,2,2,1],[1,0,2,3],[1,2,3,0],[1,2,2,1]],[[1,2,2,2],[1,0,2,2],[1,2,3,0],[1,2,2,1]],[[1,2,3,1],[1,0,2,2],[1,2,3,0],[1,2,2,1]],[[1,3,2,1],[1,0,2,2],[1,2,3,0],[1,2,2,1]],[[2,2,2,1],[1,0,2,2],[1,2,3,0],[1,2,2,1]],[[1,2,2,1],[1,0,2,2],[1,2,2,3],[1,2,2,0]],[[1,2,2,1],[1,0,2,3],[1,2,2,2],[1,2,2,0]],[[1,2,2,2],[1,0,2,2],[1,2,2,2],[1,2,2,0]],[[1,2,3,1],[1,0,2,2],[1,2,2,2],[1,2,2,0]],[[1,3,2,1],[1,0,2,2],[1,2,2,2],[1,2,2,0]],[[2,2,2,1],[1,0,2,2],[1,2,2,2],[1,2,2,0]],[[1,2,2,1],[1,0,2,2],[1,2,2,2],[1,2,1,2]],[[1,2,2,1],[1,0,2,2],[1,2,2,3],[1,2,1,1]],[[1,2,2,1],[1,0,2,3],[1,2,2,2],[1,2,1,1]],[[1,2,2,2],[1,0,2,2],[1,2,2,2],[1,2,1,1]],[[1,2,3,1],[1,0,2,2],[1,2,2,2],[1,2,1,1]],[[1,3,2,1],[1,0,2,2],[1,2,2,2],[1,2,1,1]],[[2,2,2,1],[1,0,2,2],[1,2,2,2],[1,2,1,1]],[[1,2,2,1],[1,0,2,2],[1,2,2,2],[0,2,2,2]],[[1,2,2,1],[1,0,2,2],[1,2,2,2],[0,2,3,1]],[[1,2,2,1],[1,0,2,2],[1,2,2,3],[0,2,2,1]],[[1,2,2,1],[1,0,2,3],[1,2,2,2],[0,2,2,1]],[[1,2,2,2],[1,0,2,2],[1,2,2,2],[0,2,2,1]],[[1,2,3,1],[1,0,2,2],[1,2,2,2],[0,2,2,1]],[[1,2,2,1],[1,0,2,2],[1,2,1,2],[1,2,2,2]],[[1,2,2,1],[1,0,2,2],[1,2,1,2],[1,2,3,1]],[[1,2,2,1],[1,0,2,2],[1,2,1,2],[1,3,2,1]],[[1,2,2,1],[1,0,2,2],[1,2,1,2],[2,2,2,1]],[[1,2,2,1],[1,0,2,2],[1,2,1,3],[1,2,2,1]],[[1,2,2,1],[1,0,2,3],[1,2,1,2],[1,2,2,1]],[[1,2,2,2],[1,0,2,2],[1,2,1,2],[1,2,2,1]],[[1,2,3,1],[1,0,2,2],[1,2,1,2],[1,2,2,1]],[[1,3,2,1],[1,0,2,2],[1,2,1,2],[1,2,2,1]],[[2,2,2,1],[1,0,2,2],[1,2,1,2],[1,2,2,1]],[[1,2,2,1],[1,0,2,2],[1,1,3,2],[0,2,2,2]],[[1,2,2,1],[1,0,2,2],[1,1,3,2],[0,2,3,1]],[[1,2,2,1],[1,0,2,2],[1,1,3,3],[0,2,2,1]],[[1,2,2,1],[1,0,2,3],[1,1,3,2],[0,2,2,1]],[[1,2,2,2],[1,0,2,2],[1,1,3,2],[0,2,2,1]],[[1,2,3,1],[1,0,2,2],[1,1,3,2],[0,2,2,1]],[[1,2,2,1],[1,0,2,2],[0,3,3,3],[1,2,1,0]],[[1,2,2,1],[1,0,2,2],[0,3,4,2],[1,2,1,0]],[[1,2,2,1],[1,0,2,3],[0,3,3,2],[1,2,1,0]],[[1,2,2,2],[1,0,2,2],[0,3,3,2],[1,2,1,0]],[[1,2,3,1],[1,0,2,2],[0,3,3,2],[1,2,1,0]],[[1,2,2,1],[1,0,2,2],[0,3,3,2],[1,2,0,2]],[[1,2,2,1],[1,0,2,2],[0,3,3,3],[1,2,0,1]],[[1,2,2,1],[1,0,2,2],[0,3,4,2],[1,2,0,1]],[[1,2,2,1],[1,0,2,3],[0,3,3,2],[1,2,0,1]],[[1,2,2,2],[1,0,2,2],[0,3,3,2],[1,2,0,1]],[[1,2,3,1],[1,0,2,2],[0,3,3,2],[1,2,0,1]],[[1,2,2,1],[1,0,2,2],[0,3,3,2],[1,1,3,0]],[[0,2,2,0],[2,2,3,0],[0,1,4,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,0],[0,1,3,2],[2,2,2,1]],[[0,2,2,0],[2,2,3,0],[0,1,3,2],[1,3,2,1]],[[0,2,2,0],[2,2,3,0],[0,1,3,2],[1,2,3,1]],[[0,2,2,0],[2,2,3,0],[0,1,3,2],[1,2,2,2]],[[0,2,2,0],[2,2,3,0],[0,2,4,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,0],[0,2,3,2],[1,1,3,1]],[[0,2,2,0],[2,2,3,0],[0,2,3,2],[1,1,2,2]],[[0,2,2,0],[2,2,3,0],[0,3,4,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,0],[0,3,3,2],[0,1,3,1]],[[0,2,2,0],[2,2,3,0],[0,3,3,2],[0,1,2,2]],[[1,2,2,1],[1,0,2,2],[0,3,3,3],[1,1,2,0]],[[1,2,2,1],[1,0,2,2],[0,3,4,2],[1,1,2,0]],[[1,2,2,1],[1,0,2,3],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[1,0,2,2],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[1,0,2,2],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[1,0,2,2],[0,3,3,2],[1,1,1,2]],[[0,2,2,0],[2,2,3,0],[1,0,4,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,0],[1,0,3,2],[2,2,2,1]],[[0,2,2,0],[2,2,3,0],[1,0,3,2],[1,3,2,1]],[[0,2,2,0],[2,2,3,0],[1,0,3,2],[1,2,3,1]],[[0,2,2,0],[2,2,3,0],[1,0,3,2],[1,2,2,2]],[[0,2,2,0],[2,2,3,0],[1,1,4,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,0],[1,1,3,2],[0,3,2,1]],[[0,2,2,0],[2,2,3,0],[1,1,3,2],[0,2,3,1]],[[0,2,2,0],[2,2,3,0],[1,1,3,2],[0,2,2,2]],[[0,2,2,0],[2,2,3,0],[1,2,4,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,0],[1,2,3,2],[0,1,3,1]],[[0,2,2,0],[2,2,3,0],[1,2,3,2],[0,1,2,2]],[[0,2,2,0],[2,2,3,0],[1,2,4,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,0],[1,2,3,2],[1,0,3,1]],[[0,2,2,0],[2,2,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,2,1],[1,0,2,2],[0,3,3,3],[1,1,1,1]],[[1,2,2,1],[1,0,2,2],[0,3,4,2],[1,1,1,1]],[[1,2,2,1],[1,0,2,3],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[1,0,2,2],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[1,0,2,2],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[1,0,2,2],[0,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,0,2,2],[0,3,3,3],[1,0,2,1]],[[1,2,2,1],[1,0,2,2],[0,3,4,2],[1,0,2,1]],[[1,2,2,1],[1,0,2,3],[0,3,3,2],[1,0,2,1]],[[1,2,2,2],[1,0,2,2],[0,3,3,2],[1,0,2,1]],[[1,2,3,1],[1,0,2,2],[0,3,3,2],[1,0,2,1]],[[1,2,2,1],[1,0,2,2],[0,3,3,1],[1,1,2,2]],[[1,2,2,1],[1,0,2,2],[0,3,3,1],[1,1,3,1]],[[1,2,2,1],[1,0,2,2],[0,3,4,1],[1,1,2,1]],[[1,2,2,1],[1,0,2,2],[0,3,2,2],[1,1,2,2]],[[1,2,2,1],[1,0,2,2],[0,3,2,2],[1,1,3,1]],[[1,2,2,1],[1,0,2,2],[0,3,2,3],[1,1,2,1]],[[1,2,2,1],[1,0,2,3],[0,3,2,2],[1,1,2,1]],[[1,2,2,2],[1,0,2,2],[0,3,2,2],[1,1,2,1]],[[1,2,3,1],[1,0,2,2],[0,3,2,2],[1,1,2,1]],[[1,2,2,1],[1,0,2,2],[0,2,3,2],[1,2,3,0]],[[0,2,2,0],[2,2,3,0],[2,0,4,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,0],[2,0,3,2],[0,3,2,1]],[[0,2,2,0],[2,2,3,0],[2,0,3,2],[0,2,3,1]],[[0,2,2,0],[2,2,3,0],[2,0,3,2],[0,2,2,2]],[[0,2,2,0],[2,2,3,0],[2,0,4,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,0],[2,0,3,2],[1,1,3,1]],[[0,2,2,0],[2,2,3,0],[2,0,3,2],[1,1,2,2]],[[0,2,2,0],[2,2,3,0],[2,1,4,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,0],[2,1,3,2],[0,1,3,1]],[[0,2,2,0],[2,2,3,0],[2,1,3,2],[0,1,2,2]],[[0,2,2,0],[2,2,3,0],[2,1,4,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,0],[2,1,3,2],[1,0,3,1]],[[0,2,2,0],[2,2,3,0],[2,1,3,2],[1,0,2,2]],[[1,2,2,1],[1,0,2,2],[0,2,3,2],[1,3,2,0]],[[1,2,2,1],[1,0,2,2],[0,2,3,3],[1,2,2,0]],[[1,2,2,1],[1,0,2,2],[0,2,4,2],[1,2,2,0]],[[1,2,2,1],[1,0,2,3],[0,2,3,2],[1,2,2,0]],[[1,2,2,2],[1,0,2,2],[0,2,3,2],[1,2,2,0]],[[1,2,3,1],[1,0,2,2],[0,2,3,2],[1,2,2,0]],[[1,2,2,1],[1,0,2,2],[0,2,3,2],[1,2,1,2]],[[1,2,2,1],[1,0,2,2],[0,2,3,3],[1,2,1,1]],[[1,2,2,1],[1,0,2,2],[0,2,4,2],[1,2,1,1]],[[1,2,2,1],[1,0,2,3],[0,2,3,2],[1,2,1,1]],[[1,2,2,2],[1,0,2,2],[0,2,3,2],[1,2,1,1]],[[1,2,3,1],[1,0,2,2],[0,2,3,2],[1,2,1,1]],[[1,2,2,1],[1,0,2,2],[0,2,3,1],[1,2,2,2]],[[1,2,2,1],[1,0,2,2],[0,2,3,1],[1,2,3,1]],[[1,2,2,1],[1,0,2,2],[0,2,3,1],[1,3,2,1]],[[1,2,2,1],[1,0,2,2],[0,2,4,1],[1,2,2,1]],[[1,2,2,1],[1,0,2,2],[0,2,2,2],[1,2,2,2]],[[1,2,2,1],[1,0,2,2],[0,2,2,2],[1,2,3,1]],[[1,2,2,1],[1,0,2,2],[0,2,2,2],[1,3,2,1]],[[1,2,2,1],[1,0,2,2],[0,2,2,3],[1,2,2,1]],[[1,2,2,1],[1,0,2,3],[0,2,2,2],[1,2,2,1]],[[1,2,2,2],[1,0,2,2],[0,2,2,2],[1,2,2,1]],[[1,2,3,1],[1,0,2,2],[0,2,2,2],[1,2,2,1]],[[1,2,2,1],[1,0,2,2],[0,1,3,2],[1,2,2,2]],[[1,2,2,1],[1,0,2,2],[0,1,3,2],[1,2,3,1]],[[1,2,2,1],[1,0,2,2],[0,1,3,3],[1,2,2,1]],[[1,2,2,1],[1,0,2,3],[0,1,3,2],[1,2,2,1]],[[1,2,2,2],[1,0,2,2],[0,1,3,2],[1,2,2,1]],[[1,2,3,1],[1,0,2,2],[0,1,3,2],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[1,0,1,2],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[1,0,1,2],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[1,0,1,2],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[1,0,1,2],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[1,0,1,2],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[1,0,1,3],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[1,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[1,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[1,0,1,2],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[1,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[1,0,1,2],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[1,0,1,2],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[1,0,1,2],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[1,0,1,2],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[1,0,1,3],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[1,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[1,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[1,0,1,2],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[1,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[1,0,1,2],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[1,0,1,2],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[1,0,1,2],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,0,1,3],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[1,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[1,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[1,0,1,2],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[1,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[1,0,1,2]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[1,0,1,2],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[1,0,1,2],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[1,0,1,2],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[1,0,1,2],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[1,0,1,3],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[1,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[1,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[1,0,1,2],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[1,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,0,1,2],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[1,0,1,2],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[1,0,1,2],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,0,1,3],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[1,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[1,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[1,0,1,2],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[1,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[1,0,1,2],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[1,0,1,2],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[1,0,1,2],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[1,0,1,2],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,0,1,3],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[1,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[1,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[1,0,1,2],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[1,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[0,1,3,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[1,0,1,2],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[1,0,1,2],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[1,0,1,2],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,0,1,3],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[1,0,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[1,0,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,1],[0,0,3,3],[1,2,2,1]],[[0,2,2,0],[2,2,3,1],[0,0,3,2],[1,2,3,1]],[[0,2,2,0],[2,2,3,1],[0,0,3,2],[1,2,2,2]],[[0,2,2,0],[2,2,3,1],[0,1,2,3],[1,2,2,1]],[[0,2,2,0],[2,2,3,1],[0,1,2,2],[2,2,2,1]],[[0,2,2,0],[2,2,3,1],[0,1,2,2],[1,3,2,1]],[[0,2,2,0],[2,2,3,1],[0,1,2,2],[1,2,3,1]],[[0,2,2,0],[2,2,3,1],[0,1,2,2],[1,2,2,2]],[[0,3,2,0],[2,2,3,1],[0,1,3,1],[1,2,2,1]],[[0,2,3,0],[2,2,3,1],[0,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,2,4,1],[0,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,2,3,1],[0,1,4,1],[1,2,2,1]],[[0,2,2,0],[2,2,3,1],[0,1,3,1],[2,2,2,1]],[[0,2,2,0],[2,2,3,1],[0,1,3,1],[1,3,2,1]],[[0,2,2,0],[2,2,3,1],[0,1,3,1],[1,2,3,1]],[[0,2,2,0],[2,2,3,1],[0,1,3,1],[1,2,2,2]],[[0,3,2,0],[2,2,3,1],[0,1,3,2],[1,2,1,1]],[[0,2,3,0],[2,2,3,1],[0,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,4,1],[0,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,1],[0,1,4,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,1],[0,1,3,3],[1,2,1,1]],[[0,2,2,0],[2,2,3,1],[0,1,3,2],[1,2,1,2]],[[0,3,2,0],[2,2,3,1],[0,1,3,2],[1,2,2,0]],[[0,2,3,0],[2,2,3,1],[0,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,4,1],[0,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,1],[0,1,4,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,1],[0,1,3,3],[1,2,2,0]],[[0,2,2,0],[2,2,3,1],[0,1,3,2],[2,2,2,0]],[[0,2,2,0],[2,2,3,1],[0,1,3,2],[1,3,2,0]],[[0,2,2,0],[2,2,3,1],[0,1,3,2],[1,2,3,0]],[[0,2,2,0],[2,2,3,1],[0,2,2,3],[1,1,2,1]],[[0,2,2,0],[2,2,3,1],[0,2,2,2],[1,1,3,1]],[[0,2,2,0],[2,2,3,1],[0,2,2,2],[1,1,2,2]],[[0,3,2,0],[2,2,3,1],[0,2,3,1],[1,1,2,1]],[[0,2,3,0],[2,2,3,1],[0,2,3,1],[1,1,2,1]],[[0,2,2,0],[2,2,4,1],[0,2,3,1],[1,1,2,1]],[[0,2,2,0],[2,2,3,1],[0,2,4,1],[1,1,2,1]],[[0,2,2,0],[2,2,3,1],[0,2,3,1],[1,1,3,1]],[[0,2,2,0],[2,2,3,1],[0,2,3,1],[1,1,2,2]],[[0,3,2,0],[2,2,3,1],[0,2,3,1],[1,2,1,1]],[[0,2,3,0],[2,2,3,1],[0,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,4,1],[0,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,3,1],[0,2,4,1],[1,2,1,1]],[[0,3,2,0],[2,2,3,1],[0,2,3,2],[1,0,2,1]],[[0,2,3,0],[2,2,3,1],[0,2,3,2],[1,0,2,1]],[[0,2,2,0],[2,2,4,1],[0,2,3,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,1],[0,2,4,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,1],[0,2,3,3],[1,0,2,1]],[[0,2,2,0],[2,2,3,1],[0,2,3,2],[1,0,2,2]],[[0,3,2,0],[2,2,3,1],[0,2,3,2],[1,1,1,1]],[[0,2,3,0],[2,2,3,1],[0,2,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,4,1],[0,2,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,1],[0,2,4,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,1],[0,2,3,3],[1,1,1,1]],[[0,2,2,0],[2,2,3,1],[0,2,3,2],[1,1,1,2]],[[0,3,2,0],[2,2,3,1],[0,2,3,2],[1,1,2,0]],[[0,2,3,0],[2,2,3,1],[0,2,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,4,1],[0,2,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,1],[0,2,4,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,1],[0,2,3,3],[1,1,2,0]],[[0,2,2,0],[2,2,3,1],[0,2,3,2],[1,1,3,0]],[[0,3,2,0],[2,2,3,1],[0,2,3,2],[1,2,0,1]],[[0,2,3,0],[2,2,3,1],[0,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,4,1],[0,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,1],[0,2,4,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,1],[0,2,3,3],[1,2,0,1]],[[0,2,2,0],[2,2,3,1],[0,2,3,2],[1,2,0,2]],[[0,3,2,0],[2,2,3,1],[0,2,3,2],[1,2,1,0]],[[0,2,3,0],[2,2,3,1],[0,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,4,1],[0,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,1],[0,2,4,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,1],[0,2,3,3],[1,2,1,0]],[[1,3,2,1],[1,0,1,2],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[1,0,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[1,0,1,2],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[1,0,1,2],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[1,0,1,2],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[1,0,1,2],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,0,1,3],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[1,0,1,2],[2,3,3,2],[0,1,1,1]],[[0,3,2,0],[2,2,3,1],[0,3,0,2],[1,2,2,1]],[[0,2,3,0],[2,2,3,1],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,4,1],[0,3,0,2],[1,2,2,1]],[[0,3,2,0],[2,2,3,1],[0,3,1,1],[1,2,2,1]],[[0,2,3,0],[2,2,3,1],[0,3,1,1],[1,2,2,1]],[[0,2,2,0],[2,2,4,1],[0,3,1,1],[1,2,2,1]],[[0,3,2,0],[2,2,3,1],[0,3,1,2],[1,2,2,0]],[[0,2,3,0],[2,2,3,1],[0,3,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,4,1],[0,3,1,2],[1,2,2,0]],[[0,3,2,0],[2,2,3,1],[0,3,2,1],[1,1,2,1]],[[0,2,3,0],[2,2,3,1],[0,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,2,4,1],[0,3,2,1],[1,1,2,1]],[[0,3,2,0],[2,2,3,1],[0,3,2,1],[1,2,1,1]],[[0,2,3,0],[2,2,3,1],[0,3,2,1],[1,2,1,1]],[[0,2,2,0],[2,2,4,1],[0,3,2,1],[1,2,1,1]],[[0,2,2,0],[2,2,3,1],[0,3,2,3],[0,1,2,1]],[[0,2,2,0],[2,2,3,1],[0,3,2,2],[0,1,3,1]],[[0,2,2,0],[2,2,3,1],[0,3,2,2],[0,1,2,2]],[[0,3,2,0],[2,2,3,1],[0,3,2,2],[1,1,1,1]],[[0,2,3,0],[2,2,3,1],[0,3,2,2],[1,1,1,1]],[[0,2,2,0],[2,2,4,1],[0,3,2,2],[1,1,1,1]],[[0,3,2,0],[2,2,3,1],[0,3,2,2],[1,1,2,0]],[[0,2,3,0],[2,2,3,1],[0,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,4,1],[0,3,2,2],[1,1,2,0]],[[0,3,2,0],[2,2,3,1],[0,3,2,2],[1,2,0,1]],[[0,2,3,0],[2,2,3,1],[0,3,2,2],[1,2,0,1]],[[0,2,2,0],[2,2,4,1],[0,3,2,2],[1,2,0,1]],[[0,3,2,0],[2,2,3,1],[0,3,2,2],[1,2,1,0]],[[0,2,3,0],[2,2,3,1],[0,3,2,2],[1,2,1,0]],[[0,2,2,0],[2,2,4,1],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[1,0,1,2],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[1,0,1,2],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[1,0,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[1,0,1,2],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[1,0,1,2],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[1,0,1,2],[2,3,4,2],[0,0,2,1]],[[1,2,2,1],[1,0,1,3],[2,3,3,2],[0,0,2,1]],[[1,2,2,2],[1,0,1,2],[2,3,3,2],[0,0,2,1]],[[1,2,3,1],[1,0,1,2],[2,3,3,2],[0,0,2,1]],[[0,3,2,0],[2,2,3,1],[0,3,3,1],[0,1,2,1]],[[0,2,3,0],[2,2,3,1],[0,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,4,1],[0,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,3,1],[0,3,4,1],[0,1,2,1]],[[0,2,2,0],[2,2,3,1],[0,3,3,1],[0,1,3,1]],[[0,2,2,0],[2,2,3,1],[0,3,3,1],[0,1,2,2]],[[0,3,2,0],[2,2,3,1],[0,3,3,1],[0,2,1,1]],[[0,2,3,0],[2,2,3,1],[0,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,4,1],[0,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,3,1],[0,3,4,1],[0,2,1,1]],[[1,3,2,1],[1,0,1,2],[2,3,3,2],[0,0,2,1]],[[2,2,2,1],[1,0,1,2],[2,3,3,2],[0,0,2,1]],[[0,3,2,0],[2,2,3,1],[0,3,3,2],[0,0,2,1]],[[0,2,3,0],[2,2,3,1],[0,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,4,1],[0,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,1],[0,3,4,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,1],[0,3,3,3],[0,0,2,1]],[[0,2,2,0],[2,2,3,1],[0,3,3,2],[0,0,2,2]],[[0,3,2,0],[2,2,3,1],[0,3,3,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,1],[0,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,1],[0,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,1],[0,3,4,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,1],[0,3,3,3],[0,1,1,1]],[[0,2,2,0],[2,2,3,1],[0,3,3,2],[0,1,1,2]],[[0,3,2,0],[2,2,3,1],[0,3,3,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,1],[0,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,1],[0,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,1],[0,3,4,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,1],[0,3,3,3],[0,1,2,0]],[[0,2,2,0],[2,2,3,1],[0,3,3,2],[0,1,3,0]],[[0,3,2,0],[2,2,3,1],[0,3,3,2],[0,2,0,1]],[[0,2,3,0],[2,2,3,1],[0,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,4,1],[0,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,1],[0,3,4,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,1],[0,3,3,3],[0,2,0,1]],[[0,2,2,0],[2,2,3,1],[0,3,3,2],[0,2,0,2]],[[0,3,2,0],[2,2,3,1],[0,3,3,2],[0,2,1,0]],[[0,2,3,0],[2,2,3,1],[0,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,4,1],[0,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,1],[0,3,4,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[1,0,1,2],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[1,0,1,2],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[1,0,1,2],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[1,0,1,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[1,0,1,2],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[1,0,1,2],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[1,0,1,2],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[1,0,1,2],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[1,0,1,2],[3,3,3,1],[1,0,2,1]],[[0,3,2,0],[2,2,3,1],[0,3,3,2],[1,2,0,0]],[[0,2,3,0],[2,2,3,1],[0,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,2,4,1],[0,3,3,2],[1,2,0,0]],[[1,2,2,1],[1,0,1,2],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[1,0,1,2],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[1,0,1,2],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[1,0,1,2],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[1,0,1,2],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[1,0,1,2],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[1,0,1,2],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[1,0,1,2],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[1,0,1,2],[3,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,3,1],[1,0,2,3],[1,2,2,1]],[[0,2,2,0],[2,2,3,1],[1,0,2,2],[2,2,2,1]],[[0,2,2,0],[2,2,3,1],[1,0,2,2],[1,3,2,1]],[[0,2,2,0],[2,2,3,1],[1,0,2,2],[1,2,3,1]],[[0,2,2,0],[2,2,3,1],[1,0,2,2],[1,2,2,2]],[[0,3,2,0],[2,2,3,1],[1,0,3,1],[1,2,2,1]],[[0,2,3,0],[2,2,3,1],[1,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,2,4,1],[1,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,2,3,1],[1,0,4,1],[1,2,2,1]],[[0,2,2,0],[2,2,3,1],[1,0,3,1],[2,2,2,1]],[[0,2,2,0],[2,2,3,1],[1,0,3,1],[1,3,2,1]],[[0,2,2,0],[2,2,3,1],[1,0,3,1],[1,2,3,1]],[[0,2,2,0],[2,2,3,1],[1,0,3,1],[1,2,2,2]],[[0,2,2,0],[2,2,3,1],[1,0,3,3],[0,2,2,1]],[[0,2,2,0],[2,2,3,1],[1,0,3,2],[0,2,3,1]],[[0,2,2,0],[2,2,3,1],[1,0,3,2],[0,2,2,2]],[[0,3,2,0],[2,2,3,1],[1,0,3,2],[1,2,1,1]],[[0,2,3,0],[2,2,3,1],[1,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,4,1],[1,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,1],[1,0,4,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,1],[1,0,3,3],[1,2,1,1]],[[0,2,2,0],[2,2,3,1],[1,0,3,2],[1,2,1,2]],[[0,3,2,0],[2,2,3,1],[1,0,3,2],[1,2,2,0]],[[0,2,3,0],[2,2,3,1],[1,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,4,1],[1,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,1],[1,0,4,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,1],[1,0,3,3],[1,2,2,0]],[[0,2,2,0],[2,2,3,1],[1,0,3,2],[2,2,2,0]],[[0,2,2,0],[2,2,3,1],[1,0,3,2],[1,3,2,0]],[[0,2,2,0],[2,2,3,1],[1,0,3,2],[1,2,3,0]],[[0,2,2,0],[2,2,3,1],[1,1,2,3],[0,2,2,1]],[[0,2,2,0],[2,2,3,1],[1,1,2,2],[0,3,2,1]],[[0,2,2,0],[2,2,3,1],[1,1,2,2],[0,2,3,1]],[[0,2,2,0],[2,2,3,1],[1,1,2,2],[0,2,2,2]],[[0,3,2,0],[2,2,3,1],[1,1,3,1],[0,2,2,1]],[[0,2,3,0],[2,2,3,1],[1,1,3,1],[0,2,2,1]],[[0,2,2,0],[2,2,4,1],[1,1,3,1],[0,2,2,1]],[[0,2,2,0],[2,2,3,1],[1,1,4,1],[0,2,2,1]],[[0,2,2,0],[2,2,3,1],[1,1,3,1],[0,3,2,1]],[[0,2,2,0],[2,2,3,1],[1,1,3,1],[0,2,3,1]],[[0,2,2,0],[2,2,3,1],[1,1,3,1],[0,2,2,2]],[[0,3,2,0],[2,2,3,1],[1,1,3,2],[0,2,1,1]],[[0,2,3,0],[2,2,3,1],[1,1,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,4,1],[1,1,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,1],[1,1,4,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,1],[1,1,3,3],[0,2,1,1]],[[0,2,2,0],[2,2,3,1],[1,1,3,2],[0,2,1,2]],[[0,3,2,0],[2,2,3,1],[1,1,3,2],[0,2,2,0]],[[0,2,3,0],[2,2,3,1],[1,1,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,4,1],[1,1,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,1],[1,1,4,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,1],[1,1,3,3],[0,2,2,0]],[[0,2,2,0],[2,2,3,1],[1,1,3,2],[0,3,2,0]],[[0,2,2,0],[2,2,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[1,0,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[1,0,1,2],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[1,0,1,2],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[1,0,1,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[1,0,1,2],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[1,0,1,2],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[1,0,1,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,1],[1,2,2,3],[0,1,2,1]],[[0,2,2,0],[2,2,3,1],[1,2,2,2],[0,1,3,1]],[[0,2,2,0],[2,2,3,1],[1,2,2,2],[0,1,2,2]],[[0,2,2,0],[2,2,3,1],[1,2,2,3],[1,0,2,1]],[[0,2,2,0],[2,2,3,1],[1,2,2,2],[1,0,3,1]],[[0,2,2,0],[2,2,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,2,2],[1,0,1,2],[2,3,2,2],[1,0,2,1]],[[1,2,3,1],[1,0,1,2],[2,3,2,2],[1,0,2,1]],[[1,3,2,1],[1,0,1,2],[2,3,2,2],[1,0,2,1]],[[2,2,2,1],[1,0,1,2],[2,3,2,2],[1,0,2,1]],[[0,3,2,0],[2,2,3,1],[1,2,3,1],[0,1,2,1]],[[0,2,3,0],[2,2,3,1],[1,2,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,4,1],[1,2,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,3,1],[1,2,4,1],[0,1,2,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,1],[0,1,3,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,1],[0,1,2,2]],[[0,3,2,0],[2,2,3,1],[1,2,3,1],[0,2,1,1]],[[0,2,3,0],[2,2,3,1],[1,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,4,1],[1,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,3,1],[1,2,4,1],[0,2,1,1]],[[0,3,2,0],[2,2,3,1],[1,2,3,1],[1,0,2,1]],[[0,2,3,0],[2,2,3,1],[1,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,4,1],[1,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,3,1],[1,2,4,1],[1,0,2,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,1],[1,0,3,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,1],[1,0,2,2]],[[0,3,2,0],[2,2,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,3,0],[2,2,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,4,1],[1,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,3,1],[1,2,4,1],[1,1,1,1]],[[0,3,2,0],[2,2,3,1],[1,2,3,2],[0,0,2,1]],[[0,2,3,0],[2,2,3,1],[1,2,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,4,1],[1,2,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,1],[1,2,4,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,3],[0,0,2,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,2],[0,0,2,2]],[[0,3,2,0],[2,2,3,1],[1,2,3,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,1],[1,2,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,1],[1,2,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,1],[1,2,4,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,3],[0,1,1,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,2],[0,1,1,2]],[[0,3,2,0],[2,2,3,1],[1,2,3,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,1],[1,2,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,1],[1,2,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,1],[1,2,4,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,1],[1,2,3,3],[0,1,2,0]],[[0,2,2,0],[2,2,3,1],[1,2,3,2],[0,1,3,0]],[[0,3,2,0],[2,2,3,1],[1,2,3,2],[0,2,0,1]],[[0,2,3,0],[2,2,3,1],[1,2,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,4,1],[1,2,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,1],[1,2,4,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,3],[0,2,0,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,2],[0,2,0,2]],[[0,3,2,0],[2,2,3,1],[1,2,3,2],[0,2,1,0]],[[0,2,3,0],[2,2,3,1],[1,2,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,4,1],[1,2,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,1],[1,2,4,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[1,0,1,2],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[1,0,1,2],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[1,0,1,2],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[1,0,1,2],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[1,0,1,2],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[1,0,1,2],[2,3,2,2],[0,1,3,1]],[[0,3,2,0],[2,2,3,1],[1,2,3,2],[1,0,1,1]],[[0,2,3,0],[2,2,3,1],[1,2,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,4,1],[1,2,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,1],[1,2,4,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,3],[1,0,1,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,2],[1,0,1,2]],[[0,3,2,0],[2,2,3,1],[1,2,3,2],[1,0,2,0]],[[0,2,3,0],[2,2,3,1],[1,2,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,4,1],[1,2,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,1],[1,2,4,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,1],[1,2,3,3],[1,0,2,0]],[[0,2,2,0],[2,2,3,1],[1,2,3,2],[1,0,3,0]],[[0,3,2,0],[2,2,3,1],[1,2,3,2],[1,1,0,1]],[[0,2,3,0],[2,2,3,1],[1,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,4,1],[1,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,1],[1,2,4,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,3],[1,1,0,1]],[[0,2,2,0],[2,2,3,1],[1,2,3,2],[1,1,0,2]],[[0,3,2,0],[2,2,3,1],[1,2,3,2],[1,1,1,0]],[[0,2,3,0],[2,2,3,1],[1,2,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,4,1],[1,2,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,1],[1,2,4,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,2,1],[1,0,1,2],[2,3,2,3],[0,1,2,1]],[[1,2,2,1],[1,0,1,3],[2,3,2,2],[0,1,2,1]],[[1,2,2,2],[1,0,1,2],[2,3,2,2],[0,1,2,1]],[[1,2,3,1],[1,0,1,2],[2,3,2,2],[0,1,2,1]],[[1,3,2,1],[1,0,1,2],[2,3,2,2],[0,1,2,1]],[[2,2,2,1],[1,0,1,2],[2,3,2,2],[0,1,2,1]],[[1,2,2,1],[1,0,1,2],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[1,0,1,2],[2,4,2,1],[1,1,2,1]],[[1,2,2,1],[1,0,1,2],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[1,0,1,2],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[1,0,1,2],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[1,0,1,2],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[1,0,1,2],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[1,0,1,2],[3,3,2,1],[0,2,2,1]],[[0,3,2,0],[2,2,3,1],[1,3,0,2],[0,2,2,1]],[[0,2,3,0],[2,2,3,1],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,4,1],[1,3,0,2],[0,2,2,1]],[[0,3,2,0],[2,2,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,3,0],[2,2,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,4,1],[1,3,0,2],[1,1,2,1]],[[0,3,2,0],[2,2,3,1],[1,3,1,1],[0,2,2,1]],[[0,2,3,0],[2,2,3,1],[1,3,1,1],[0,2,2,1]],[[0,2,2,0],[2,2,4,1],[1,3,1,1],[0,2,2,1]],[[0,3,2,0],[2,2,3,1],[1,3,1,1],[1,1,2,1]],[[0,2,3,0],[2,2,3,1],[1,3,1,1],[1,1,2,1]],[[0,2,2,0],[2,2,4,1],[1,3,1,1],[1,1,2,1]],[[0,3,2,0],[2,2,3,1],[1,3,1,2],[0,2,2,0]],[[0,2,3,0],[2,2,3,1],[1,3,1,2],[0,2,2,0]],[[0,2,2,0],[2,2,4,1],[1,3,1,2],[0,2,2,0]],[[0,3,2,0],[2,2,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,3,0],[2,2,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,2,0],[2,2,4,1],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[1,0,1,2],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[1,0,1,2],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[1,0,1,2],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[1,0,1,2],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[1,0,1,2],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[1,0,1,2],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[1,0,1,2],[2,3,1,3],[0,2,2,1]],[[0,3,2,0],[2,2,3,1],[1,3,2,1],[0,1,2,1]],[[0,2,3,0],[2,2,3,1],[1,3,2,1],[0,1,2,1]],[[0,2,2,0],[2,2,4,1],[1,3,2,1],[0,1,2,1]],[[0,3,2,0],[2,2,3,1],[1,3,2,1],[0,2,1,1]],[[0,2,3,0],[2,2,3,1],[1,3,2,1],[0,2,1,1]],[[0,2,2,0],[2,2,4,1],[1,3,2,1],[0,2,1,1]],[[0,3,2,0],[2,2,3,1],[1,3,2,1],[1,0,2,1]],[[0,2,3,0],[2,2,3,1],[1,3,2,1],[1,0,2,1]],[[0,2,2,0],[2,2,4,1],[1,3,2,1],[1,0,2,1]],[[0,3,2,0],[2,2,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,3,0],[2,2,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,2,0],[2,2,4,1],[1,3,2,1],[1,1,1,1]],[[1,2,2,1],[1,0,1,2],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[1,0,1,2],[3,3,1,2],[0,2,2,1]],[[1,2,2,1],[1,0,1,3],[2,3,1,2],[0,2,2,1]],[[1,2,2,2],[1,0,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,3,1],[1,0,1,2],[2,3,1,2],[0,2,2,1]],[[1,3,2,1],[1,0,1,2],[2,3,1,2],[0,2,2,1]],[[2,2,2,1],[1,0,1,2],[2,3,1,2],[0,2,2,1]],[[0,3,2,0],[2,2,3,1],[1,3,2,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,1],[1,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,1],[1,3,2,2],[0,1,1,1]],[[0,3,2,0],[2,2,3,1],[1,3,2,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,1],[1,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,1],[1,3,2,2],[0,1,2,0]],[[0,3,2,0],[2,2,3,1],[1,3,2,2],[0,2,0,1]],[[0,2,3,0],[2,2,3,1],[1,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,4,1],[1,3,2,2],[0,2,0,1]],[[0,3,2,0],[2,2,3,1],[1,3,2,2],[0,2,1,0]],[[0,2,3,0],[2,2,3,1],[1,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,4,1],[1,3,2,2],[0,2,1,0]],[[0,3,2,0],[2,2,3,1],[1,3,2,2],[1,0,1,1]],[[0,2,3,0],[2,2,3,1],[1,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,4,1],[1,3,2,2],[1,0,1,1]],[[0,3,2,0],[2,2,3,1],[1,3,2,2],[1,0,2,0]],[[0,2,3,0],[2,2,3,1],[1,3,2,2],[1,0,2,0]],[[0,2,2,0],[2,2,4,1],[1,3,2,2],[1,0,2,0]],[[0,3,2,0],[2,2,3,1],[1,3,2,2],[1,1,0,1]],[[0,2,3,0],[2,2,3,1],[1,3,2,2],[1,1,0,1]],[[0,2,2,0],[2,2,4,1],[1,3,2,2],[1,1,0,1]],[[0,3,2,0],[2,2,3,1],[1,3,2,2],[1,1,1,0]],[[0,2,3,0],[2,2,3,1],[1,3,2,2],[1,1,1,0]],[[0,2,2,0],[2,2,4,1],[1,3,2,2],[1,1,1,0]],[[0,3,2,0],[2,2,3,1],[1,3,2,2],[1,2,0,0]],[[0,2,3,0],[2,2,3,1],[1,3,2,2],[1,2,0,0]],[[0,2,2,0],[2,2,4,1],[1,3,2,2],[1,2,0,0]],[[1,2,2,1],[1,0,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[1,0,1,2],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[1,0,1,2],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[1,0,1,2],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[1,0,1,2],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[1,0,1,2],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[1,0,1,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[1,0,1,2],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[1,0,1,2],[2,2,3,3],[0,2,2,0]],[[0,3,2,0],[2,2,3,1],[1,3,3,1],[0,0,2,1]],[[0,2,3,0],[2,2,3,1],[1,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,2,4,1],[1,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,2,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,2,1],[1,0,1,2],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[1,0,1,3],[2,2,3,2],[0,2,2,0]],[[1,2,2,2],[1,0,1,2],[2,2,3,2],[0,2,2,0]],[[1,2,3,1],[1,0,1,2],[2,2,3,2],[0,2,2,0]],[[1,3,2,1],[1,0,1,2],[2,2,3,2],[0,2,2,0]],[[2,2,2,1],[1,0,1,2],[2,2,3,2],[0,2,2,0]],[[1,2,2,1],[1,0,1,2],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[1,0,1,2],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[1,0,1,2],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[1,0,1,3],[2,2,3,2],[0,2,1,1]],[[1,2,2,2],[1,0,1,2],[2,2,3,2],[0,2,1,1]],[[1,2,3,1],[1,0,1,2],[2,2,3,2],[0,2,1,1]],[[1,3,2,1],[1,0,1,2],[2,2,3,2],[0,2,1,1]],[[2,2,2,1],[1,0,1,2],[2,2,3,2],[0,2,1,1]],[[1,2,2,1],[1,0,1,2],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[1,0,1,2],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[1,0,1,2],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[1,0,1,2],[2,2,3,1],[0,2,2,2]],[[1,2,2,1],[1,0,1,2],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[1,0,1,2],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[1,0,1,2],[2,2,4,1],[0,2,2,1]],[[0,3,2,0],[2,2,3,1],[1,3,3,2],[0,0,1,1]],[[0,2,3,0],[2,2,3,1],[1,3,3,2],[0,0,1,1]],[[0,2,2,0],[2,2,4,1],[1,3,3,2],[0,0,1,1]],[[0,2,2,0],[2,2,3,1],[1,3,4,2],[0,0,1,1]],[[0,2,2,0],[2,2,3,1],[1,3,3,3],[0,0,1,1]],[[0,2,2,0],[2,2,3,1],[1,3,3,2],[0,0,1,2]],[[0,3,2,0],[2,2,3,1],[1,3,3,2],[0,0,2,0]],[[0,2,3,0],[2,2,3,1],[1,3,3,2],[0,0,2,0]],[[0,2,2,0],[2,2,4,1],[1,3,3,2],[0,0,2,0]],[[0,2,2,0],[2,2,3,1],[1,3,4,2],[0,0,2,0]],[[0,2,2,0],[2,2,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[1,0,1,2],[2,2,2,2],[1,2,3,0]],[[0,3,2,0],[2,2,3,1],[1,3,3,2],[0,2,0,0]],[[0,2,3,0],[2,2,3,1],[1,3,3,2],[0,2,0,0]],[[0,2,2,0],[2,2,4,1],[1,3,3,2],[0,2,0,0]],[[1,2,2,1],[1,0,1,2],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[1,0,1,2],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[1,0,1,2],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[1,0,1,2],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[1,0,1,2],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[1,0,1,2],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[1,0,1,2],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[1,0,1,3],[2,2,2,2],[0,2,2,1]],[[1,2,2,2],[1,0,1,2],[2,2,2,2],[0,2,2,1]],[[1,2,3,1],[1,0,1,2],[2,2,2,2],[0,2,2,1]],[[1,3,2,1],[1,0,1,2],[2,2,2,2],[0,2,2,1]],[[2,2,2,1],[1,0,1,2],[2,2,2,2],[0,2,2,1]],[[1,2,2,1],[1,0,1,2],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[1,0,1,2],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[1,0,1,2],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[1,0,1,2],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[1,0,1,2],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[1,0,1,2],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[1,0,1,2],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[1,0,1,2],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[1,0,1,2],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[1,0,1,3],[2,2,1,2],[1,2,2,1]],[[1,2,2,2],[1,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,3,1],[1,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,3,2,1],[1,0,1,2],[2,2,1,2],[1,2,2,1]],[[2,2,2,1],[1,0,1,2],[2,2,1,2],[1,2,2,1]],[[0,3,2,0],[2,2,3,1],[1,3,3,2],[1,1,0,0]],[[0,2,3,0],[2,2,3,1],[1,3,3,2],[1,1,0,0]],[[0,2,2,0],[2,2,4,1],[1,3,3,2],[1,1,0,0]],[[1,2,2,1],[1,0,1,2],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[1,0,1,2],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[1,0,1,2],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[1,0,1,2],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[1,0,1,2],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[1,0,1,2],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,0,1,3],[2,1,3,2],[1,2,2,0]],[[1,2,2,2],[1,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,3,1],[1,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,3,2,1],[1,0,1,2],[2,1,3,2],[1,2,2,0]],[[2,2,2,1],[1,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,2,1],[1,0,1,2],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[1,0,1,2],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[1,0,1,2],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[1,0,1,3],[2,1,3,2],[1,2,1,1]],[[1,2,2,2],[1,0,1,2],[2,1,3,2],[1,2,1,1]],[[1,2,3,1],[1,0,1,2],[2,1,3,2],[1,2,1,1]],[[1,3,2,1],[1,0,1,2],[2,1,3,2],[1,2,1,1]],[[2,2,2,1],[1,0,1,2],[2,1,3,2],[1,2,1,1]],[[1,2,2,1],[1,0,1,2],[2,1,3,2],[0,2,2,2]],[[1,2,2,1],[1,0,1,2],[2,1,3,2],[0,2,3,1]],[[1,2,2,1],[1,0,1,2],[2,1,3,3],[0,2,2,1]],[[1,2,2,1],[1,0,1,3],[2,1,3,2],[0,2,2,1]],[[1,2,2,2],[1,0,1,2],[2,1,3,2],[0,2,2,1]],[[1,2,3,1],[1,0,1,2],[2,1,3,2],[0,2,2,1]],[[1,2,2,1],[1,0,1,2],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[1,0,1,2],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[1,0,1,2],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[1,0,1,2],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[1,0,1,2],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[1,0,1,2],[2,1,2,2],[1,2,3,1]],[[1,2,2,1],[1,0,1,2],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[1,0,1,2],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[1,0,1,2],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[1,0,1,3],[2,1,2,2],[1,2,2,1]],[[1,2,2,2],[1,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,3,1],[1,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,3,2,1],[1,0,1,2],[2,1,2,2],[1,2,2,1]],[[2,2,2,1],[1,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[1,0,1,2],[2,0,3,2],[1,2,3,1]],[[1,2,2,1],[1,0,1,2],[2,0,3,3],[1,2,2,1]],[[1,2,2,1],[1,0,1,3],[2,0,3,2],[1,2,2,1]],[[1,2,2,2],[1,0,1,2],[2,0,3,2],[1,2,2,1]],[[1,2,3,1],[1,0,1,2],[2,0,3,2],[1,2,2,1]],[[0,3,2,0],[2,2,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,3,0],[2,2,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,4,1],[2,0,1,2],[1,2,2,1]],[[0,3,2,0],[2,2,3,1],[2,0,2,1],[1,2,2,1]],[[0,2,3,0],[2,2,3,1],[2,0,2,1],[1,2,2,1]],[[0,2,2,0],[2,2,4,1],[2,0,2,1],[1,2,2,1]],[[0,2,2,0],[2,2,3,1],[2,0,2,3],[0,2,2,1]],[[0,2,2,0],[2,2,3,1],[2,0,2,2],[0,3,2,1]],[[0,2,2,0],[2,2,3,1],[2,0,2,2],[0,2,3,1]],[[0,2,2,0],[2,2,3,1],[2,0,2,2],[0,2,2,2]],[[0,2,2,0],[2,2,3,1],[2,0,2,3],[1,1,2,1]],[[0,2,2,0],[2,2,3,1],[2,0,2,2],[1,1,3,1]],[[0,2,2,0],[2,2,3,1],[2,0,2,2],[1,1,2,2]],[[0,3,2,0],[2,2,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,3,0],[2,2,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,4,1],[2,0,2,2],[1,2,2,0]],[[0,3,2,0],[2,2,3,1],[2,0,3,1],[0,2,2,1]],[[0,2,3,0],[2,2,3,1],[2,0,3,1],[0,2,2,1]],[[0,2,2,0],[2,2,4,1],[2,0,3,1],[0,2,2,1]],[[0,2,2,0],[2,2,3,1],[2,0,4,1],[0,2,2,1]],[[0,2,2,0],[2,2,3,1],[2,0,3,1],[0,3,2,1]],[[0,2,2,0],[2,2,3,1],[2,0,3,1],[0,2,3,1]],[[0,2,2,0],[2,2,3,1],[2,0,3,1],[0,2,2,2]],[[0,3,2,0],[2,2,3,1],[2,0,3,1],[1,1,2,1]],[[0,2,3,0],[2,2,3,1],[2,0,3,1],[1,1,2,1]],[[0,2,2,0],[2,2,4,1],[2,0,3,1],[1,1,2,1]],[[0,2,2,0],[2,2,3,1],[2,0,4,1],[1,1,2,1]],[[0,2,2,0],[2,2,3,1],[2,0,3,1],[1,1,3,1]],[[0,2,2,0],[2,2,3,1],[2,0,3,1],[1,1,2,2]],[[0,3,2,0],[2,2,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,3,0],[2,2,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,4,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,3,1],[2,0,4,1],[1,2,1,1]],[[0,3,2,0],[2,2,3,1],[2,0,3,2],[0,2,1,1]],[[0,2,3,0],[2,2,3,1],[2,0,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,4,1],[2,0,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,1],[2,0,4,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,1],[2,0,3,3],[0,2,1,1]],[[0,2,2,0],[2,2,3,1],[2,0,3,2],[0,2,1,2]],[[0,3,2,0],[2,2,3,1],[2,0,3,2],[0,2,2,0]],[[0,2,3,0],[2,2,3,1],[2,0,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,4,1],[2,0,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,1],[2,0,4,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,1],[2,0,3,3],[0,2,2,0]],[[0,2,2,0],[2,2,3,1],[2,0,3,2],[0,3,2,0]],[[0,2,2,0],[2,2,3,1],[2,0,3,2],[0,2,3,0]],[[0,3,2,0],[2,2,3,1],[2,0,3,2],[1,1,1,1]],[[0,2,3,0],[2,2,3,1],[2,0,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,4,1],[2,0,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,1],[2,0,4,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,1],[2,0,3,3],[1,1,1,1]],[[0,2,2,0],[2,2,3,1],[2,0,3,2],[1,1,1,2]],[[0,3,2,0],[2,2,3,1],[2,0,3,2],[1,1,2,0]],[[0,2,3,0],[2,2,3,1],[2,0,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,4,1],[2,0,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,1],[2,0,4,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,1],[2,0,3,3],[1,1,2,0]],[[0,2,2,0],[2,2,3,1],[2,0,3,2],[1,1,3,0]],[[0,3,2,0],[2,2,3,1],[2,0,3,2],[1,2,0,1]],[[0,2,3,0],[2,2,3,1],[2,0,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,4,1],[2,0,3,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,1],[2,0,4,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,1],[2,0,3,3],[1,2,0,1]],[[0,2,2,0],[2,2,3,1],[2,0,3,2],[1,2,0,2]],[[0,3,2,0],[2,2,3,1],[2,0,3,2],[1,2,1,0]],[[0,2,3,0],[2,2,3,1],[2,0,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,4,1],[2,0,3,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,1],[2,0,4,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,1],[2,0,3,3],[1,2,1,0]],[[1,2,2,1],[1,0,1,2],[1,3,3,2],[1,3,1,0]],[[0,3,2,0],[2,2,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,3,0],[2,2,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,4,1],[2,1,0,2],[1,2,2,1]],[[0,3,2,0],[2,2,3,1],[2,1,1,1],[1,2,2,1]],[[0,2,3,0],[2,2,3,1],[2,1,1,1],[1,2,2,1]],[[0,2,2,0],[2,2,4,1],[2,1,1,1],[1,2,2,1]],[[0,3,2,0],[2,2,3,1],[2,1,1,2],[1,2,2,0]],[[0,2,3,0],[2,2,3,1],[2,1,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,4,1],[2,1,1,2],[1,2,2,0]],[[0,3,2,0],[2,2,3,1],[2,1,2,1],[1,2,1,1]],[[0,2,3,0],[2,2,3,1],[2,1,2,1],[1,2,1,1]],[[0,2,2,0],[2,2,4,1],[2,1,2,1],[1,2,1,1]],[[0,2,2,0],[2,2,3,1],[2,1,2,3],[0,1,2,1]],[[0,2,2,0],[2,2,3,1],[2,1,2,2],[0,1,3,1]],[[0,2,2,0],[2,2,3,1],[2,1,2,2],[0,1,2,2]],[[0,2,2,0],[2,2,3,1],[2,1,2,3],[1,0,2,1]],[[0,2,2,0],[2,2,3,1],[2,1,2,2],[1,0,3,1]],[[0,2,2,0],[2,2,3,1],[2,1,2,2],[1,0,2,2]],[[0,3,2,0],[2,2,3,1],[2,1,2,2],[1,2,0,1]],[[0,2,3,0],[2,2,3,1],[2,1,2,2],[1,2,0,1]],[[0,2,2,0],[2,2,4,1],[2,1,2,2],[1,2,0,1]],[[0,3,2,0],[2,2,3,1],[2,1,2,2],[1,2,1,0]],[[0,2,3,0],[2,2,3,1],[2,1,2,2],[1,2,1,0]],[[0,2,2,0],[2,2,4,1],[2,1,2,2],[1,2,1,0]],[[1,2,2,1],[1,0,1,2],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[1,0,1,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[1,0,1,2],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[1,0,1,2],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[1,0,1,3],[1,3,3,2],[1,2,1,0]],[[1,2,2,2],[1,0,1,2],[1,3,3,2],[1,2,1,0]],[[1,2,3,1],[1,0,1,2],[1,3,3,2],[1,2,1,0]],[[1,3,2,1],[1,0,1,2],[1,3,3,2],[1,2,1,0]],[[2,2,2,1],[1,0,1,2],[1,3,3,2],[1,2,1,0]],[[1,2,2,1],[1,0,1,2],[1,3,3,2],[1,2,0,2]],[[0,3,2,0],[2,2,3,1],[2,1,3,1],[0,1,2,1]],[[0,2,3,0],[2,2,3,1],[2,1,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,4,1],[2,1,3,1],[0,1,2,1]],[[0,2,2,0],[2,2,3,1],[2,1,4,1],[0,1,2,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,1],[0,1,3,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,1],[0,1,2,2]],[[0,3,2,0],[2,2,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,3,0],[2,2,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,4,1],[2,1,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,3,1],[2,1,4,1],[0,2,1,1]],[[0,3,2,0],[2,2,3,1],[2,1,3,1],[1,0,2,1]],[[0,2,3,0],[2,2,3,1],[2,1,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,4,1],[2,1,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,3,1],[2,1,4,1],[1,0,2,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,1],[1,0,3,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,1],[1,0,2,2]],[[0,3,2,0],[2,2,3,1],[2,1,3,1],[1,1,1,1]],[[0,2,3,0],[2,2,3,1],[2,1,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,4,1],[2,1,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,3,1],[2,1,4,1],[1,1,1,1]],[[1,2,2,1],[1,0,1,2],[1,3,3,2],[1,3,0,1]],[[1,2,2,1],[1,0,1,2],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[1,0,1,2],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[1,0,1,2],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[1,0,1,2],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[1,0,1,3],[1,3,3,2],[1,2,0,1]],[[1,2,2,2],[1,0,1,2],[1,3,3,2],[1,2,0,1]],[[1,2,3,1],[1,0,1,2],[1,3,3,2],[1,2,0,1]],[[1,3,2,1],[1,0,1,2],[1,3,3,2],[1,2,0,1]],[[2,2,2,1],[1,0,1,2],[1,3,3,2],[1,2,0,1]],[[0,3,2,0],[2,2,3,1],[2,1,3,2],[0,0,2,1]],[[0,2,3,0],[2,2,3,1],[2,1,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,4,1],[2,1,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,1],[2,1,4,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,3],[0,0,2,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,2],[0,0,2,2]],[[0,3,2,0],[2,2,3,1],[2,1,3,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,1],[2,1,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,1],[2,1,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,1],[2,1,4,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,3],[0,1,1,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,2],[0,1,1,2]],[[0,3,2,0],[2,2,3,1],[2,1,3,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,1],[2,1,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,1],[2,1,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,1],[2,1,4,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,1],[2,1,3,3],[0,1,2,0]],[[0,2,2,0],[2,2,3,1],[2,1,3,2],[0,1,3,0]],[[0,3,2,0],[2,2,3,1],[2,1,3,2],[0,2,0,1]],[[0,2,3,0],[2,2,3,1],[2,1,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,4,1],[2,1,3,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,1],[2,1,4,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,3],[0,2,0,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,2],[0,2,0,2]],[[0,3,2,0],[2,2,3,1],[2,1,3,2],[0,2,1,0]],[[0,2,3,0],[2,2,3,1],[2,1,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,4,1],[2,1,3,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,1],[2,1,4,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,1],[2,1,3,3],[0,2,1,0]],[[0,3,2,0],[2,2,3,1],[2,1,3,2],[1,0,1,1]],[[0,2,3,0],[2,2,3,1],[2,1,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,4,1],[2,1,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,1],[2,1,4,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,3],[1,0,1,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,2],[1,0,1,2]],[[0,3,2,0],[2,2,3,1],[2,1,3,2],[1,0,2,0]],[[0,2,3,0],[2,2,3,1],[2,1,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,4,1],[2,1,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,1],[2,1,4,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,1],[2,1,3,3],[1,0,2,0]],[[0,2,2,0],[2,2,3,1],[2,1,3,2],[1,0,3,0]],[[0,3,2,0],[2,2,3,1],[2,1,3,2],[1,1,0,1]],[[0,2,3,0],[2,2,3,1],[2,1,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,4,1],[2,1,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,1],[2,1,4,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,3],[1,1,0,1]],[[0,2,2,0],[2,2,3,1],[2,1,3,2],[1,1,0,2]],[[0,3,2,0],[2,2,3,1],[2,1,3,2],[1,1,1,0]],[[0,2,3,0],[2,2,3,1],[2,1,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,4,1],[2,1,3,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,1],[2,1,4,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,1],[2,1,3,3],[1,1,1,0]],[[1,2,2,1],[1,0,1,2],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[1,0,1,2],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[1,0,1,2],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[1,0,1,2],[1,4,3,2],[1,1,2,0]],[[1,2,2,1],[1,0,1,3],[1,3,3,2],[1,1,2,0]],[[1,2,2,2],[1,0,1,2],[1,3,3,2],[1,1,2,0]],[[1,2,3,1],[1,0,1,2],[1,3,3,2],[1,1,2,0]],[[1,3,2,1],[1,0,1,2],[1,3,3,2],[1,1,2,0]],[[2,2,2,1],[1,0,1,2],[1,3,3,2],[1,1,2,0]],[[1,2,2,1],[1,0,1,2],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[1,0,1,2],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[1,0,1,2],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[1,0,1,2],[1,4,3,2],[1,1,1,1]],[[1,2,2,1],[1,0,1,3],[1,3,3,2],[1,1,1,1]],[[1,2,2,2],[1,0,1,2],[1,3,3,2],[1,1,1,1]],[[1,2,3,1],[1,0,1,2],[1,3,3,2],[1,1,1,1]],[[1,3,2,1],[1,0,1,2],[1,3,3,2],[1,1,1,1]],[[2,2,2,1],[1,0,1,2],[1,3,3,2],[1,1,1,1]],[[1,2,2,1],[1,0,1,2],[1,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,0,1,2],[1,3,3,3],[1,0,2,1]],[[1,2,2,1],[1,0,1,2],[1,3,4,2],[1,0,2,1]],[[1,2,2,1],[1,0,1,3],[1,3,3,2],[1,0,2,1]],[[1,2,2,2],[1,0,1,2],[1,3,3,2],[1,0,2,1]],[[1,2,3,1],[1,0,1,2],[1,3,3,2],[1,0,2,1]],[[1,2,2,1],[1,0,1,2],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[1,0,1,2],[1,3,3,1],[2,2,1,1]],[[0,3,2,0],[2,2,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,3,0],[2,2,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,4,1],[2,2,0,2],[0,2,2,1]],[[0,3,2,0],[2,2,3,1],[2,2,0,2],[1,1,2,1]],[[0,2,3,0],[2,2,3,1],[2,2,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,4,1],[2,2,0,2],[1,1,2,1]],[[0,3,2,0],[2,2,3,1],[2,2,1,1],[0,2,2,1]],[[0,2,3,0],[2,2,3,1],[2,2,1,1],[0,2,2,1]],[[0,2,2,0],[2,2,4,1],[2,2,1,1],[0,2,2,1]],[[0,3,2,0],[2,2,3,1],[2,2,1,1],[1,1,2,1]],[[0,2,3,0],[2,2,3,1],[2,2,1,1],[1,1,2,1]],[[0,2,2,0],[2,2,4,1],[2,2,1,1],[1,1,2,1]],[[0,3,2,0],[2,2,3,1],[2,2,1,2],[0,2,2,0]],[[0,2,3,0],[2,2,3,1],[2,2,1,2],[0,2,2,0]],[[0,2,2,0],[2,2,4,1],[2,2,1,2],[0,2,2,0]],[[0,3,2,0],[2,2,3,1],[2,2,1,2],[1,1,2,0]],[[0,2,3,0],[2,2,3,1],[2,2,1,2],[1,1,2,0]],[[0,2,2,0],[2,2,4,1],[2,2,1,2],[1,1,2,0]],[[1,2,2,1],[1,0,1,2],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[1,0,1,2],[1,4,3,1],[1,2,1,1]],[[1,2,2,1],[1,0,1,2],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[1,0,1,2],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[1,0,1,2],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[1,0,1,2],[1,4,3,1],[1,1,2,1]],[[0,3,2,0],[2,2,3,1],[2,2,2,1],[0,1,2,1]],[[0,2,3,0],[2,2,3,1],[2,2,2,1],[0,1,2,1]],[[0,2,2,0],[2,2,4,1],[2,2,2,1],[0,1,2,1]],[[0,3,2,0],[2,2,3,1],[2,2,2,1],[0,2,1,1]],[[0,2,3,0],[2,2,3,1],[2,2,2,1],[0,2,1,1]],[[0,2,2,0],[2,2,4,1],[2,2,2,1],[0,2,1,1]],[[0,3,2,0],[2,2,3,1],[2,2,2,1],[1,0,2,1]],[[0,2,3,0],[2,2,3,1],[2,2,2,1],[1,0,2,1]],[[0,2,2,0],[2,2,4,1],[2,2,2,1],[1,0,2,1]],[[0,3,2,0],[2,2,3,1],[2,2,2,1],[1,1,1,1]],[[0,2,3,0],[2,2,3,1],[2,2,2,1],[1,1,1,1]],[[0,2,2,0],[2,2,4,1],[2,2,2,1],[1,1,1,1]],[[1,2,2,1],[1,0,1,2],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[1,0,1,2],[1,3,2,2],[1,3,2,0]],[[0,3,2,0],[2,2,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,1],[2,2,2,2],[0,1,1,1]],[[0,3,2,0],[2,2,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,1],[2,2,2,2],[0,1,2,0]],[[0,3,2,0],[2,2,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,3,0],[2,2,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,4,1],[2,2,2,2],[0,2,0,1]],[[0,3,2,0],[2,2,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,3,0],[2,2,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,4,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[1,0,1,2],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[1,0,1,2],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[1,0,1,2],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[1,0,1,2],[1,3,2,2],[1,1,3,1]],[[1,2,2,1],[1,0,1,2],[1,3,2,3],[1,1,2,1]],[[1,2,2,1],[1,0,1,3],[1,3,2,2],[1,1,2,1]],[[1,2,2,2],[1,0,1,2],[1,3,2,2],[1,1,2,1]],[[0,3,2,0],[2,2,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,3,0],[2,2,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,4,1],[2,2,2,2],[1,0,1,1]],[[0,3,2,0],[2,2,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,3,0],[2,2,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,2,0],[2,2,4,1],[2,2,2,2],[1,0,2,0]],[[0,3,2,0],[2,2,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,3,0],[2,2,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,2,0],[2,2,4,1],[2,2,2,2],[1,1,0,1]],[[0,3,2,0],[2,2,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,3,0],[2,2,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,2,0],[2,2,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[1,0,1,2],[1,3,2,2],[1,1,2,1]],[[1,3,2,1],[1,0,1,2],[1,3,2,2],[1,1,2,1]],[[2,2,2,1],[1,0,1,2],[1,3,2,2],[1,1,2,1]],[[1,2,2,1],[1,0,1,2],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[1,0,1,2],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[1,0,1,2],[1,3,2,1],[1,3,2,1]],[[0,3,2,0],[2,2,3,1],[2,2,2,2],[1,2,0,0]],[[0,2,3,0],[2,2,3,1],[2,2,2,2],[1,2,0,0]],[[0,2,2,0],[2,2,4,1],[2,2,2,2],[1,2,0,0]],[[1,2,2,1],[1,0,1,2],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[1,0,1,2],[1,4,2,1],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[1,0,1,2],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[1,0,1,2],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[1,0,1,2],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[1,0,1,2],[1,3,1,3],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[1,4,1,2],[1,2,2,1]],[[1,2,2,1],[1,0,1,3],[1,3,1,2],[1,2,2,1]],[[1,2,2,2],[1,0,1,2],[1,3,1,2],[1,2,2,1]],[[1,2,3,1],[1,0,1,2],[1,3,1,2],[1,2,2,1]],[[1,3,2,1],[1,0,1,2],[1,3,1,2],[1,2,2,1]],[[2,2,2,1],[1,0,1,2],[1,3,1,2],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[1,0,1,2],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[1,0,1,2],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[1,0,1,2],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[1,0,1,2],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[1,0,1,3],[1,2,3,2],[1,2,2,0]],[[1,2,2,2],[1,0,1,2],[1,2,3,2],[1,2,2,0]],[[1,2,3,1],[1,0,1,2],[1,2,3,2],[1,2,2,0]],[[1,3,2,1],[1,0,1,2],[1,2,3,2],[1,2,2,0]],[[2,2,2,1],[1,0,1,2],[1,2,3,2],[1,2,2,0]],[[1,2,2,1],[1,0,1,2],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[1,0,1,2],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[1,0,1,2],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[1,0,1,3],[1,2,3,2],[1,2,1,1]],[[1,2,2,2],[1,0,1,2],[1,2,3,2],[1,2,1,1]],[[1,2,3,1],[1,0,1,2],[1,2,3,2],[1,2,1,1]],[[1,3,2,1],[1,0,1,2],[1,2,3,2],[1,2,1,1]],[[2,2,2,1],[1,0,1,2],[1,2,3,2],[1,2,1,1]],[[1,2,2,1],[1,0,1,2],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[1,0,1,2],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[1,0,1,2],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[1,0,1,2],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[1,0,1,2],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[1,0,1,2],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[1,0,1,2],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[1,0,1,2],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[1,0,1,2],[1,2,2,3],[1,2,2,1]],[[1,2,2,1],[1,0,1,3],[1,2,2,2],[1,2,2,1]],[[1,2,2,2],[1,0,1,2],[1,2,2,2],[1,2,2,1]],[[1,2,3,1],[1,0,1,2],[1,2,2,2],[1,2,2,1]],[[1,3,2,1],[1,0,1,2],[1,2,2,2],[1,2,2,1]],[[2,2,2,1],[1,0,1,2],[1,2,2,2],[1,2,2,1]],[[1,2,2,1],[1,0,1,2],[1,1,3,2],[1,2,2,2]],[[1,2,2,1],[1,0,1,2],[1,1,3,2],[1,2,3,1]],[[1,2,2,1],[1,0,1,2],[1,1,3,3],[1,2,2,1]],[[1,2,2,1],[1,0,1,3],[1,1,3,2],[1,2,2,1]],[[1,2,2,2],[1,0,1,2],[1,1,3,2],[1,2,2,1]],[[1,2,3,1],[1,0,1,2],[1,1,3,2],[1,2,2,1]],[[0,3,2,0],[2,2,3,1],[2,2,3,2],[0,2,0,0]],[[0,2,3,0],[2,2,3,1],[2,2,3,2],[0,2,0,0]],[[0,2,2,0],[2,2,4,1],[2,2,3,2],[0,2,0,0]],[[1,2,2,1],[1,0,0,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[1,0,0,2],[2,3,3,2],[2,2,1,0]],[[1,2,2,1],[1,0,0,2],[3,3,3,2],[1,2,1,0]],[[1,2,2,1],[1,0,0,2],[2,3,3,2],[1,3,0,1]],[[1,2,2,1],[1,0,0,2],[2,3,3,2],[2,2,0,1]],[[1,2,2,1],[1,0,0,2],[3,3,3,2],[1,2,0,1]],[[1,2,2,1],[1,0,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,1],[1,0,0,2],[2,3,3,2],[1,0,3,1]],[[1,2,2,1],[1,0,0,2],[2,3,3,3],[1,0,2,1]],[[1,2,2,1],[1,0,0,2],[2,3,3,2],[0,1,2,2]],[[1,2,2,1],[1,0,0,2],[2,3,3,2],[0,1,3,1]],[[1,2,2,1],[1,0,0,2],[2,3,3,3],[0,1,2,1]],[[1,2,2,1],[1,0,0,2],[2,3,3,1],[1,3,1,1]],[[1,2,2,1],[1,0,0,2],[2,3,3,1],[2,2,1,1]],[[0,3,2,0],[2,2,3,1],[2,2,3,2],[1,1,0,0]],[[0,2,3,0],[2,2,3,1],[2,2,3,2],[1,1,0,0]],[[0,2,2,0],[2,2,4,1],[2,2,3,2],[1,1,0,0]],[[1,2,2,1],[1,0,0,2],[3,3,3,1],[1,2,1,1]],[[1,2,2,1],[1,0,0,2],[2,3,2,2],[1,2,3,0]],[[1,2,2,1],[1,0,0,2],[2,3,2,2],[1,3,2,0]],[[1,2,2,1],[1,0,0,2],[2,3,2,2],[2,2,2,0]],[[1,2,2,1],[1,0,0,2],[3,3,2,2],[1,2,2,0]],[[1,2,2,1],[1,0,0,2],[2,3,2,1],[1,2,2,2]],[[1,2,2,1],[1,0,0,2],[2,3,2,1],[1,2,3,1]],[[1,2,2,1],[1,0,0,2],[2,3,2,1],[1,3,2,1]],[[1,2,2,1],[1,0,0,2],[2,3,2,1],[2,2,2,1]],[[1,2,2,1],[1,0,0,2],[3,3,2,1],[1,2,2,1]],[[1,2,2,1],[1,0,0,2],[2,3,1,2],[1,2,2,2]],[[1,2,2,1],[1,0,0,2],[2,3,1,2],[1,2,3,1]],[[1,2,2,1],[1,0,0,2],[2,3,1,2],[1,3,2,1]],[[1,2,2,1],[1,0,0,2],[2,3,1,2],[2,2,2,1]],[[1,2,2,1],[1,0,0,2],[2,3,1,3],[1,2,2,1]],[[1,2,2,1],[1,0,0,2],[3,3,1,2],[1,2,2,1]],[[1,2,2,1],[1,0,0,2],[2,2,3,2],[0,2,2,2]],[[1,2,2,1],[1,0,0,2],[2,2,3,2],[0,2,3,1]],[[1,2,2,1],[1,0,0,2],[2,2,3,2],[0,3,2,1]],[[1,2,2,1],[1,0,0,2],[2,2,3,3],[0,2,2,1]],[[1,2,2,1],[1,0,0,2],[2,1,3,2],[1,2,2,2]],[[1,2,2,1],[1,0,0,2],[2,1,3,2],[1,2,3,1]],[[1,2,2,1],[1,0,0,2],[2,1,3,2],[1,3,2,1]],[[1,2,2,1],[1,0,0,2],[2,1,3,2],[2,2,2,1]],[[1,2,2,1],[1,0,0,2],[2,1,3,3],[1,2,2,1]],[[1,2,2,1],[1,0,0,2],[3,1,3,2],[1,2,2,1]],[[1,2,2,1],[1,0,0,2],[1,3,3,2],[1,1,2,2]],[[1,2,2,1],[1,0,0,2],[1,3,3,2],[1,1,3,1]],[[1,2,2,1],[1,0,0,2],[1,3,3,3],[1,1,2,1]],[[1,2,2,1],[1,0,0,2],[1,2,3,2],[1,2,2,2]],[[1,2,2,1],[1,0,0,2],[1,2,3,2],[1,2,3,1]],[[1,2,2,1],[1,0,0,2],[1,2,3,2],[1,3,2,1]],[[1,2,2,1],[1,0,0,2],[1,2,3,2],[2,2,2,1]],[[1,2,2,1],[1,0,0,2],[1,2,3,3],[1,2,2,1]],[[1,2,2,1],[0,4,3,2],[2,3,2,0],[1,1,0,0]],[[1,2,2,2],[0,3,3,2],[2,3,2,0],[1,1,0,0]],[[1,2,3,1],[0,3,3,2],[2,3,2,0],[1,1,0,0]],[[1,3,2,1],[0,3,3,2],[2,3,2,0],[1,1,0,0]],[[2,2,2,1],[0,3,3,2],[2,3,2,0],[1,1,0,0]],[[1,2,2,1],[0,4,3,2],[2,3,2,0],[0,2,0,0]],[[1,2,2,2],[0,3,3,2],[2,3,2,0],[0,2,0,0]],[[1,2,3,1],[0,3,3,2],[2,3,2,0],[0,2,0,0]],[[1,3,2,1],[0,3,3,2],[2,3,2,0],[0,2,0,0]],[[2,2,2,1],[0,3,3,2],[2,3,2,0],[0,2,0,0]],[[0,3,2,0],[2,2,3,1],[2,3,2,2],[1,0,0,1]],[[0,2,3,0],[2,2,3,1],[2,3,2,2],[1,0,0,1]],[[0,2,2,0],[2,2,4,1],[2,3,2,2],[1,0,0,1]],[[0,3,2,0],[2,2,3,1],[2,3,2,2],[1,0,1,0]],[[0,2,3,0],[2,2,3,1],[2,3,2,2],[1,0,1,0]],[[0,2,2,0],[2,2,4,1],[2,3,2,2],[1,0,1,0]],[[1,2,2,1],[0,4,3,2],[2,3,1,0],[1,2,0,0]],[[1,2,2,2],[0,3,3,2],[2,3,1,0],[1,2,0,0]],[[1,2,3,1],[0,3,3,2],[2,3,1,0],[1,2,0,0]],[[1,3,2,1],[0,3,3,2],[2,3,1,0],[1,2,0,0]],[[2,2,2,1],[0,3,3,2],[2,3,1,0],[1,2,0,0]],[[1,2,2,1],[0,4,3,2],[2,3,1,0],[1,1,1,0]],[[1,2,2,2],[0,3,3,2],[2,3,1,0],[1,1,1,0]],[[1,2,3,1],[0,3,3,2],[2,3,1,0],[1,1,1,0]],[[1,3,2,1],[0,3,3,2],[2,3,1,0],[1,1,1,0]],[[2,2,2,1],[0,3,3,2],[2,3,1,0],[1,1,1,0]],[[1,2,2,1],[0,4,3,2],[2,3,1,0],[1,1,0,1]],[[1,2,2,2],[0,3,3,2],[2,3,1,0],[1,1,0,1]],[[1,2,3,1],[0,3,3,2],[2,3,1,0],[1,1,0,1]],[[1,3,2,1],[0,3,3,2],[2,3,1,0],[1,1,0,1]],[[2,2,2,1],[0,3,3,2],[2,3,1,0],[1,1,0,1]],[[1,2,2,1],[0,4,3,2],[2,3,1,0],[1,0,2,0]],[[1,2,2,2],[0,3,3,2],[2,3,1,0],[1,0,2,0]],[[1,2,3,1],[0,3,3,2],[2,3,1,0],[1,0,2,0]],[[1,3,2,1],[0,3,3,2],[2,3,1,0],[1,0,2,0]],[[2,2,2,1],[0,3,3,2],[2,3,1,0],[1,0,2,0]],[[1,2,2,1],[0,4,3,2],[2,3,1,0],[1,0,1,1]],[[1,2,2,2],[0,3,3,2],[2,3,1,0],[1,0,1,1]],[[1,2,3,1],[0,3,3,2],[2,3,1,0],[1,0,1,1]],[[1,3,2,1],[0,3,3,2],[2,3,1,0],[1,0,1,1]],[[2,2,2,1],[0,3,3,2],[2,3,1,0],[1,0,1,1]],[[1,2,2,1],[0,4,3,2],[2,3,1,0],[0,2,1,0]],[[1,2,2,2],[0,3,3,2],[2,3,1,0],[0,2,1,0]],[[1,2,3,1],[0,3,3,2],[2,3,1,0],[0,2,1,0]],[[1,3,2,1],[0,3,3,2],[2,3,1,0],[0,2,1,0]],[[2,2,2,1],[0,3,3,2],[2,3,1,0],[0,2,1,0]],[[1,2,2,1],[0,4,3,2],[2,3,1,0],[0,2,0,1]],[[1,2,2,2],[0,3,3,2],[2,3,1,0],[0,2,0,1]],[[1,2,3,1],[0,3,3,2],[2,3,1,0],[0,2,0,1]],[[1,3,2,1],[0,3,3,2],[2,3,1,0],[0,2,0,1]],[[2,2,2,1],[0,3,3,2],[2,3,1,0],[0,2,0,1]],[[1,2,2,1],[0,4,3,2],[2,3,1,0],[0,1,2,0]],[[1,2,2,2],[0,3,3,2],[2,3,1,0],[0,1,2,0]],[[1,2,3,1],[0,3,3,2],[2,3,1,0],[0,1,2,0]],[[1,3,2,1],[0,3,3,2],[2,3,1,0],[0,1,2,0]],[[2,2,2,1],[0,3,3,2],[2,3,1,0],[0,1,2,0]],[[1,2,2,1],[0,4,3,2],[2,3,1,0],[0,1,1,1]],[[1,2,2,2],[0,3,3,2],[2,3,1,0],[0,1,1,1]],[[1,2,3,1],[0,3,3,2],[2,3,1,0],[0,1,1,1]],[[1,3,2,1],[0,3,3,2],[2,3,1,0],[0,1,1,1]],[[2,2,2,1],[0,3,3,2],[2,3,1,0],[0,1,1,1]],[[1,2,2,1],[0,4,3,2],[2,3,0,2],[1,1,0,0]],[[1,2,2,2],[0,3,3,2],[2,3,0,2],[1,1,0,0]],[[1,2,3,1],[0,3,3,2],[2,3,0,2],[1,1,0,0]],[[1,3,2,1],[0,3,3,2],[2,3,0,2],[1,1,0,0]],[[2,2,2,1],[0,3,3,2],[2,3,0,2],[1,1,0,0]],[[1,2,2,1],[0,4,3,2],[2,3,0,2],[0,2,0,0]],[[1,2,2,2],[0,3,3,2],[2,3,0,2],[0,2,0,0]],[[1,2,3,1],[0,3,3,2],[2,3,0,2],[0,2,0,0]],[[1,3,2,1],[0,3,3,2],[2,3,0,2],[0,2,0,0]],[[2,2,2,1],[0,3,3,2],[2,3,0,2],[0,2,0,0]],[[1,2,2,1],[0,4,3,2],[2,3,0,1],[1,2,0,0]],[[1,2,2,2],[0,3,3,2],[2,3,0,1],[1,2,0,0]],[[1,2,3,1],[0,3,3,2],[2,3,0,1],[1,2,0,0]],[[1,3,2,1],[0,3,3,2],[2,3,0,1],[1,2,0,0]],[[2,2,2,1],[0,3,3,2],[2,3,0,1],[1,2,0,0]],[[1,2,2,1],[0,4,3,2],[2,3,0,1],[1,1,1,0]],[[1,2,2,2],[0,3,3,2],[2,3,0,1],[1,1,1,0]],[[1,2,3,1],[0,3,3,2],[2,3,0,1],[1,1,1,0]],[[1,3,2,1],[0,3,3,2],[2,3,0,1],[1,1,1,0]],[[2,2,2,1],[0,3,3,2],[2,3,0,1],[1,1,1,0]],[[1,2,2,1],[0,4,3,2],[2,3,0,1],[1,1,0,1]],[[1,2,2,2],[0,3,3,2],[2,3,0,1],[1,1,0,1]],[[1,2,3,1],[0,3,3,2],[2,3,0,1],[1,1,0,1]],[[1,3,2,1],[0,3,3,2],[2,3,0,1],[1,1,0,1]],[[2,2,2,1],[0,3,3,2],[2,3,0,1],[1,1,0,1]],[[1,2,2,1],[0,4,3,2],[2,3,0,1],[1,0,2,0]],[[1,2,2,2],[0,3,3,2],[2,3,0,1],[1,0,2,0]],[[1,2,3,1],[0,3,3,2],[2,3,0,1],[1,0,2,0]],[[1,3,2,1],[0,3,3,2],[2,3,0,1],[1,0,2,0]],[[2,2,2,1],[0,3,3,2],[2,3,0,1],[1,0,2,0]],[[1,2,2,1],[0,4,3,2],[2,3,0,1],[1,0,1,1]],[[1,2,2,2],[0,3,3,2],[2,3,0,1],[1,0,1,1]],[[1,2,3,1],[0,3,3,2],[2,3,0,1],[1,0,1,1]],[[1,3,2,1],[0,3,3,2],[2,3,0,1],[1,0,1,1]],[[2,2,2,1],[0,3,3,2],[2,3,0,1],[1,0,1,1]],[[0,3,2,0],[2,2,3,1],[2,3,3,2],[1,0,0,0]],[[0,2,3,0],[2,2,3,1],[2,3,3,2],[1,0,0,0]],[[0,2,2,0],[2,2,4,1],[2,3,3,2],[1,0,0,0]],[[1,2,2,1],[0,4,3,2],[2,3,0,1],[0,2,1,0]],[[1,2,2,2],[0,3,3,2],[2,3,0,1],[0,2,1,0]],[[1,2,3,1],[0,3,3,2],[2,3,0,1],[0,2,1,0]],[[1,3,2,1],[0,3,3,2],[2,3,0,1],[0,2,1,0]],[[2,2,2,1],[0,3,3,2],[2,3,0,1],[0,2,1,0]],[[1,2,2,1],[0,4,3,2],[2,3,0,1],[0,2,0,1]],[[1,2,2,2],[0,3,3,2],[2,3,0,1],[0,2,0,1]],[[1,2,3,1],[0,3,3,2],[2,3,0,1],[0,2,0,1]],[[1,3,2,1],[0,3,3,2],[2,3,0,1],[0,2,0,1]],[[2,2,2,1],[0,3,3,2],[2,3,0,1],[0,2,0,1]],[[1,2,2,1],[0,4,3,2],[2,3,0,1],[0,1,2,0]],[[1,2,2,2],[0,3,3,2],[2,3,0,1],[0,1,2,0]],[[1,2,3,1],[0,3,3,2],[2,3,0,1],[0,1,2,0]],[[1,3,2,1],[0,3,3,2],[2,3,0,1],[0,1,2,0]],[[2,2,2,1],[0,3,3,2],[2,3,0,1],[0,1,2,0]],[[1,2,2,1],[0,4,3,2],[2,3,0,1],[0,1,1,1]],[[1,2,2,2],[0,3,3,2],[2,3,0,1],[0,1,1,1]],[[1,2,3,1],[0,3,3,2],[2,3,0,1],[0,1,1,1]],[[1,3,2,1],[0,3,3,2],[2,3,0,1],[0,1,1,1]],[[2,2,2,1],[0,3,3,2],[2,3,0,1],[0,1,1,1]],[[1,2,2,1],[0,4,3,2],[2,3,0,0],[1,1,2,0]],[[1,2,2,2],[0,3,3,2],[2,3,0,0],[1,1,2,0]],[[1,2,3,1],[0,3,3,2],[2,3,0,0],[1,1,2,0]],[[1,3,2,1],[0,3,3,2],[2,3,0,0],[1,1,2,0]],[[2,2,2,1],[0,3,3,2],[2,3,0,0],[1,1,2,0]],[[1,2,2,1],[0,4,3,2],[2,3,0,0],[0,2,2,0]],[[1,2,2,2],[0,3,3,2],[2,3,0,0],[0,2,2,0]],[[1,2,3,1],[0,3,3,2],[2,3,0,0],[0,2,2,0]],[[1,3,2,1],[0,3,3,2],[2,3,0,0],[0,2,2,0]],[[2,2,2,1],[0,3,3,2],[2,3,0,0],[0,2,2,0]],[[0,3,2,0],[2,2,3,2],[0,0,2,2],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[0,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[0,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[0,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,0,2,3],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,0,2,2],[1,2,3,1]],[[0,2,2,0],[2,2,3,2],[0,0,2,2],[1,2,2,2]],[[0,2,3,0],[2,2,3,2],[0,0,3,2],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[0,0,3,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[0,0,3,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,0,3,3],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,0,3,2],[0,2,2,2]],[[0,3,2,0],[2,2,3,2],[0,0,3,2],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[0,0,3,2],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[0,0,3,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[0,0,3,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,0,3,3],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,0,3,2],[1,1,2,2]],[[0,3,2,0],[2,2,3,2],[0,0,3,2],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[0,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[0,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[0,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[0,0,3,3],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[0,0,3,2],[1,2,1,2]],[[0,3,2,0],[2,2,3,2],[0,0,3,2],[1,2,2,0]],[[0,2,3,0],[2,2,3,2],[0,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,4,2],[0,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,3],[0,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,2],[0,0,3,3],[1,2,2,0]],[[0,3,2,0],[2,2,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[0,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,1,1,3],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,1,1,2],[2,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,1,1,2],[1,3,2,1]],[[0,2,2,0],[2,2,3,2],[0,1,1,2],[1,2,3,1]],[[0,2,2,0],[2,2,3,2],[0,1,1,2],[1,2,2,2]],[[0,3,2,0],[2,2,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[0,1,2,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[0,1,2,3],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[0,1,2,2],[1,2,1,2]],[[0,3,2,0],[2,2,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,3,0],[2,2,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,4,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,3],[0,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,2],[0,1,2,3],[1,2,2,0]],[[0,3,2,0],[2,2,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[0,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,1,4,0],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,1,3,0],[2,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,1,3,0],[1,3,2,1]],[[0,2,2,0],[2,2,3,2],[0,1,3,0],[1,2,3,1]],[[0,2,2,0],[2,2,3,2],[0,1,3,0],[1,2,2,2]],[[0,3,2,0],[2,2,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[0,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[0,1,4,1],[1,2,1,1]],[[0,3,2,0],[2,2,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,3,0],[2,2,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,0],[2,2,4,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,0],[2,2,3,3],[0,1,3,1],[1,2,2,0]],[[0,2,2,0],[2,2,3,2],[0,1,4,1],[1,2,2,0]],[[0,2,2,0],[2,2,3,2],[0,1,3,1],[2,2,2,0]],[[0,2,2,0],[2,2,3,2],[0,1,3,1],[1,3,2,0]],[[0,2,2,0],[2,2,3,2],[0,1,3,1],[1,2,3,0]],[[0,3,2,0],[2,2,3,2],[0,1,3,2],[1,0,2,1]],[[0,2,3,0],[2,2,3,2],[0,1,3,2],[1,0,2,1]],[[0,2,2,0],[2,2,4,2],[0,1,3,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,3],[0,1,3,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[0,1,3,3],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[0,1,3,2],[1,0,2,2]],[[0,3,2,0],[2,2,3,2],[0,1,3,2],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[0,1,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[0,1,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[0,1,3,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,1,3,3],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,1,3,2],[1,1,1,2]],[[0,3,2,0],[2,2,3,2],[0,1,3,2],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[0,1,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[0,1,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,3],[0,1,3,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,2],[0,1,3,3],[1,1,2,0]],[[0,3,2,0],[2,2,3,2],[0,2,0,2],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[0,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[0,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[0,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,0,3],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,0,2],[2,2,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,0,2],[1,3,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,0,2],[1,2,3,1]],[[0,2,2,0],[2,2,3,2],[0,2,0,2],[1,2,2,2]],[[0,3,2,0],[2,2,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[0,2,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,1,3],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,1,2],[1,1,3,1]],[[0,2,2,0],[2,2,3,2],[0,2,1,2],[1,1,2,2]],[[0,3,2,0],[2,2,3,2],[0,2,2,2],[1,0,2,1]],[[0,2,3,0],[2,2,3,2],[0,2,2,2],[1,0,2,1]],[[0,2,2,0],[2,2,4,2],[0,2,2,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,3],[0,2,2,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,2,3],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,2,2],[1,0,2,2]],[[0,3,2,0],[2,2,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[0,2,2,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,2,2,3],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,2,2,2],[1,1,1,2]],[[0,3,2,0],[2,2,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,3],[0,2,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,2],[0,2,2,3],[1,1,2,0]],[[0,3,2,0],[2,2,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,3,0],[2,2,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,0],[2,2,4,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,3],[0,2,2,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,2],[0,2,2,3],[1,2,0,1]],[[0,2,2,0],[2,2,3,2],[0,2,2,2],[1,2,0,2]],[[0,3,2,0],[2,2,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,3,0],[2,2,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,0],[2,2,4,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,3],[0,2,2,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,2],[0,2,2,3],[1,2,1,0]],[[0,3,2,0],[2,2,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[0,2,3,0],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,4,0],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,3,0],[1,1,3,1]],[[0,2,2,0],[2,2,3,2],[0,2,3,0],[1,1,2,2]],[[0,3,2,0],[2,2,3,2],[0,2,3,0],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[0,2,3,0],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[0,2,3,0],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[0,2,3,0],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[0,2,4,0],[1,2,1,1]],[[0,3,2,0],[2,2,3,2],[0,2,3,1],[1,0,2,1]],[[0,2,3,0],[2,2,3,2],[0,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,4,2],[0,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,3,3],[0,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,4,1],[1,0,2,1]],[[0,3,2,0],[2,2,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[0,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,2,4,1],[1,1,1,1]],[[0,3,2,0],[2,2,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,0],[2,2,3,3],[0,2,3,1],[1,1,2,0]],[[0,2,2,0],[2,2,3,2],[0,2,4,1],[1,1,2,0]],[[0,2,2,0],[2,2,3,2],[0,2,3,1],[1,1,3,0]],[[0,3,2,0],[2,2,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,3,0],[2,2,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,4,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,3,3],[0,2,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,3,2],[0,2,4,1],[1,2,0,1]],[[0,3,2,0],[2,2,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,3,0],[2,2,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,0],[2,2,4,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,0],[2,2,3,3],[0,2,3,1],[1,2,1,0]],[[0,2,2,0],[2,2,3,2],[0,2,4,1],[1,2,1,0]],[[0,2,3,0],[2,2,3,2],[0,2,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,4,2],[0,2,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,3],[0,2,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,3,3],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[0,2,3,2],[0,0,2,2]],[[0,2,3,0],[2,2,3,2],[0,2,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[0,2,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[0,2,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,2,3,3],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,2,3,2],[0,1,1,2]],[[0,2,3,0],[2,2,3,2],[0,2,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[0,2,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[0,2,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[0,2,3,3],[0,1,2,0]],[[0,3,2,0],[2,2,3,2],[0,2,3,2],[1,1,0,1]],[[0,2,3,0],[2,2,3,2],[0,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,4,2],[0,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,3],[0,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,2],[0,2,3,3],[1,1,0,1]],[[0,3,2,0],[2,2,3,2],[0,3,0,1],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[0,3,0,1],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[0,3,0,1],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[0,3,0,1],[1,2,2,1]],[[0,3,2,0],[2,2,3,2],[0,3,0,2],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[0,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[0,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[0,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,3,0,3],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,3,0,2],[1,1,3,1]],[[0,2,2,0],[2,2,3,2],[0,3,0,2],[1,1,2,2]],[[0,3,2,0],[2,2,3,2],[0,3,0,2],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[0,3,0,2],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[0,3,0,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[0,3,0,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[0,3,0,3],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[0,3,0,2],[1,2,1,2]],[[0,3,2,0],[2,2,3,2],[0,3,0,2],[1,2,2,0]],[[0,2,3,0],[2,2,3,2],[0,3,0,2],[1,2,2,0]],[[0,2,2,0],[2,2,4,2],[0,3,0,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,3],[0,3,0,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,2],[0,3,0,3],[1,2,2,0]],[[0,3,2,0],[2,2,3,2],[0,3,1,0],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[0,3,1,0],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[0,3,1,0],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[0,3,1,0],[1,2,2,1]],[[0,3,2,0],[2,2,3,2],[0,3,1,1],[1,2,2,0]],[[0,2,3,0],[2,2,3,2],[0,3,1,1],[1,2,2,0]],[[0,2,2,0],[2,2,4,2],[0,3,1,1],[1,2,2,0]],[[0,2,2,0],[2,2,3,3],[0,3,1,1],[1,2,2,0]],[[0,3,2,0],[2,2,3,2],[0,3,1,2],[0,1,2,1]],[[0,2,3,0],[2,2,3,2],[0,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,2,4,2],[0,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,3],[0,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,3,1,3],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,3,1,2],[0,1,3,1]],[[0,2,2,0],[2,2,3,2],[0,3,1,2],[0,1,2,2]],[[0,3,2,0],[2,2,3,2],[0,3,1,2],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[0,3,1,2],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[0,3,1,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[0,3,1,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,3,1,3],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,3,1,2],[1,1,1,2]],[[0,3,2,0],[2,2,3,2],[0,3,1,2],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[0,3,1,2],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[0,3,1,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,3],[0,3,1,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,2],[0,3,1,3],[1,1,2,0]],[[0,3,2,0],[2,2,3,2],[0,3,1,2],[1,2,0,1]],[[0,2,3,0],[2,2,3,2],[0,3,1,2],[1,2,0,1]],[[0,2,2,0],[2,2,4,2],[0,3,1,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,3],[0,3,1,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,2],[0,3,1,3],[1,2,0,1]],[[0,2,2,0],[2,2,3,2],[0,3,1,2],[1,2,0,2]],[[0,3,2,0],[2,2,3,2],[0,3,1,2],[1,2,1,0]],[[0,2,3,0],[2,2,3,2],[0,3,1,2],[1,2,1,0]],[[0,2,2,0],[2,2,4,2],[0,3,1,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,3],[0,3,1,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,2],[0,3,1,3],[1,2,1,0]],[[0,3,2,0],[2,2,3,2],[0,3,2,0],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[0,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[0,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[0,3,2,0],[1,1,2,1]],[[0,3,2,0],[2,2,3,2],[0,3,2,0],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[0,3,2,0],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[0,3,2,0],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[0,3,2,0],[1,2,1,1]],[[0,3,2,0],[2,2,3,2],[0,3,2,1],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[0,3,2,1],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[0,3,2,1],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[0,3,2,1],[1,1,1,1]],[[0,3,2,0],[2,2,3,2],[0,3,2,1],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[0,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[0,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,2,3,3],[0,3,2,1],[1,1,2,0]],[[0,3,2,0],[2,2,3,2],[0,3,2,1],[1,2,0,1]],[[0,2,3,0],[2,2,3,2],[0,3,2,1],[1,2,0,1]],[[0,2,2,0],[2,2,4,2],[0,3,2,1],[1,2,0,1]],[[0,2,2,0],[2,2,3,3],[0,3,2,1],[1,2,0,1]],[[0,3,2,0],[2,2,3,2],[0,3,2,1],[1,2,1,0]],[[0,2,3,0],[2,2,3,2],[0,3,2,1],[1,2,1,0]],[[0,2,2,0],[2,2,4,2],[0,3,2,1],[1,2,1,0]],[[0,2,2,0],[2,2,3,3],[0,3,2,1],[1,2,1,0]],[[0,3,2,0],[2,2,3,2],[0,3,2,2],[0,0,2,1]],[[0,2,3,0],[2,2,3,2],[0,3,2,2],[0,0,2,1]],[[0,2,2,0],[2,2,4,2],[0,3,2,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,3],[0,3,2,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[0,3,2,3],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[0,3,2,2],[0,0,2,2]],[[0,3,2,0],[2,2,3,2],[0,3,2,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[0,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[0,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[0,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,3,2,3],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,3,2,2],[0,1,1,2]],[[0,3,2,0],[2,2,3,2],[0,3,2,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[0,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[0,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[0,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[0,3,2,3],[0,1,2,0]],[[0,3,2,0],[2,2,3,2],[0,3,2,2],[0,2,0,1]],[[0,2,3,0],[2,2,3,2],[0,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,4,2],[0,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,3],[0,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[0,3,2,3],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[0,3,2,2],[0,2,0,2]],[[0,3,2,0],[2,2,3,2],[0,3,2,2],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[0,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[0,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,3],[0,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,2],[0,3,2,3],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[0,3,3,0],[0,1,2,1]],[[0,2,3,0],[2,2,3,2],[0,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,4,2],[0,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,3,3],[0,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,3,4,0],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[0,3,3,0],[0,1,3,1]],[[0,2,2,0],[2,2,3,2],[0,3,3,0],[0,1,2,2]],[[0,3,2,0],[2,2,3,2],[0,3,3,0],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[0,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[0,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[0,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[0,3,4,0],[0,2,1,1]],[[0,3,2,0],[2,2,3,2],[0,3,3,0],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[0,3,3,0],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[0,3,3,0],[1,1,2,0]],[[0,3,2,0],[2,2,3,2],[0,3,3,0],[1,2,1,0]],[[0,2,3,0],[2,2,3,2],[0,3,3,0],[1,2,1,0]],[[0,2,2,0],[2,2,4,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,1],[0,3,4,2],[1,3,3,0],[1,1,0,0]],[[1,2,2,2],[0,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,2,3,1],[0,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,3,2,1],[0,3,3,2],[1,3,3,0],[1,1,0,0]],[[0,3,2,0],[2,2,3,2],[0,3,3,1],[0,0,2,1]],[[0,2,3,0],[2,2,3,2],[0,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,2,4,2],[0,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,2,3,3],[0,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[0,3,4,1],[0,0,2,1]],[[0,3,2,0],[2,2,3,2],[0,3,3,1],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[0,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[0,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[0,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[0,3,4,1],[0,1,1,1]],[[0,3,2,0],[2,2,3,2],[0,3,3,1],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[0,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[0,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[0,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[0,3,4,1],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[0,3,3,1],[0,1,3,0]],[[0,3,2,0],[2,2,3,2],[0,3,3,1],[0,2,0,1]],[[0,2,3,0],[2,2,3,2],[0,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,4,2],[0,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,3,3],[0,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[0,3,4,1],[0,2,0,1]],[[0,3,2,0],[2,2,3,2],[0,3,3,1],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[0,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[0,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,3,3],[0,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,2,1],[0,3,4,2],[1,3,3,0],[0,2,0,0]],[[0,3,2,0],[2,2,3,2],[0,3,3,1],[1,2,0,0]],[[0,2,3,0],[2,2,3,2],[0,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,2,4,2],[0,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,2,3,3],[0,3,3,1],[1,2,0,0]],[[1,2,2,2],[0,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,2,3,1],[0,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,3,2,1],[0,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,2,2,1],[0,3,4,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,2],[0,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,2,3,1],[0,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,3,2,1],[0,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,1],[0,3,4,2],[1,3,3,0],[0,0,1,1]],[[1,2,2,2],[0,3,3,2],[1,3,3,0],[0,0,1,1]],[[1,2,3,1],[0,3,3,2],[1,3,3,0],[0,0,1,1]],[[1,3,2,1],[0,3,3,2],[1,3,3,0],[0,0,1,1]],[[0,3,2,0],[2,2,3,2],[0,3,3,2],[0,1,0,1]],[[0,2,3,0],[2,2,3,2],[0,3,3,2],[0,1,0,1]],[[0,2,2,0],[2,2,4,2],[0,3,3,2],[0,1,0,1]],[[0,2,2,0],[2,2,3,3],[0,3,3,2],[0,1,0,1]],[[0,2,2,0],[2,2,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[0,3,3,3],[1,3,2,2],[0,0,0,1]],[[1,2,2,2],[0,3,3,2],[1,3,2,2],[0,0,0,1]],[[1,2,3,1],[0,3,3,2],[1,3,2,2],[0,0,0,1]],[[1,3,2,1],[0,3,3,2],[1,3,2,2],[0,0,0,1]],[[1,2,2,1],[0,3,4,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,2],[0,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,2,3,1],[0,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,3,2,1],[0,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,2,2,1],[0,3,4,2],[1,3,2,0],[1,1,0,1]],[[1,2,2,2],[0,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,2,3,1],[0,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,3,2,1],[0,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,2,2,1],[0,3,4,2],[1,3,2,0],[1,0,2,0]],[[1,2,2,2],[0,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,2,3,1],[0,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,3,2,1],[0,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,2,2,1],[0,3,4,2],[1,3,2,0],[1,0,1,1]],[[1,2,2,2],[0,3,3,2],[1,3,2,0],[1,0,1,1]],[[1,2,3,1],[0,3,3,2],[1,3,2,0],[1,0,1,1]],[[1,3,2,1],[0,3,3,2],[1,3,2,0],[1,0,1,1]],[[0,3,2,0],[2,2,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[1,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,1,3],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,1,2],[2,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,1,2],[1,3,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,1,2],[1,2,3,1]],[[0,2,2,0],[2,2,3,2],[1,0,1,2],[1,2,2,2]],[[0,3,2,0],[2,2,3,2],[1,0,2,2],[0,2,2,1]],[[0,2,3,0],[2,2,3,2],[1,0,2,2],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[1,0,2,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[1,0,2,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,2,3],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,2,2],[0,2,3,1]],[[0,2,2,0],[2,2,3,2],[1,0,2,2],[0,2,2,2]],[[0,3,2,0],[2,2,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[1,0,2,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[1,0,2,3],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[1,0,2,2],[1,2,1,2]],[[0,3,2,0],[2,2,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,3,0],[2,2,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,4,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,3],[1,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,2],[1,0,2,3],[1,2,2,0]],[[0,3,2,0],[2,2,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[1,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,4,0],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,3,0],[2,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,3,0],[1,3,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,3,0],[1,2,3,1]],[[0,2,2,0],[2,2,3,2],[1,0,3,0],[1,2,2,2]],[[0,3,2,0],[2,2,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[1,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[1,0,4,1],[1,2,1,1]],[[0,3,2,0],[2,2,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,3,0],[2,2,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,2,4,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,2,3,3],[1,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,2,3,2],[1,0,4,1],[1,2,2,0]],[[0,2,2,0],[2,2,3,2],[1,0,3,1],[2,2,2,0]],[[0,2,2,0],[2,2,3,2],[1,0,3,1],[1,3,2,0]],[[0,2,2,0],[2,2,3,2],[1,0,3,1],[1,2,3,0]],[[0,3,2,0],[2,2,3,2],[1,0,3,2],[0,1,2,1]],[[0,2,3,0],[2,2,3,2],[1,0,3,2],[0,1,2,1]],[[0,2,2,0],[2,2,4,2],[1,0,3,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,3],[1,0,3,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,3,3],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[1,0,3,2],[0,1,2,2]],[[0,3,2,0],[2,2,3,2],[1,0,3,2],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[1,0,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[1,0,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[1,0,3,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[1,0,3,3],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[1,0,3,2],[0,2,1,2]],[[0,3,2,0],[2,2,3,2],[1,0,3,2],[0,2,2,0]],[[0,2,3,0],[2,2,3,2],[1,0,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,4,2],[1,0,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,3],[1,0,3,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[0,3,4,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,2],[0,3,3,2],[1,3,2,0],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[1,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,0,3],[1,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,0,2],[2,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,0,2],[1,3,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,0,2],[1,2,3,1]],[[0,2,2,0],[2,2,3,2],[1,1,0,2],[1,2,2,2]],[[0,3,2,0],[2,2,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,3,0],[2,2,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[1,1,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,1,3],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,1,2],[0,3,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,1,2],[0,2,3,1]],[[0,2,2,0],[2,2,3,2],[1,1,1,2],[0,2,2,2]],[[0,3,2,0],[2,2,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[1,1,2,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[1,1,2,3],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[1,1,2,2],[0,2,1,2]],[[0,3,2,0],[2,2,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,3,0],[2,2,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,4,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,3],[1,1,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,3,1],[0,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,3,2,1],[0,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,2,2,1],[0,3,4,2],[1,3,2,0],[0,2,0,1]],[[1,2,2,2],[0,3,3,2],[1,3,2,0],[0,2,0,1]],[[1,2,3,1],[0,3,3,2],[1,3,2,0],[0,2,0,1]],[[1,3,2,1],[0,3,3,2],[1,3,2,0],[0,2,0,1]],[[0,3,2,0],[2,2,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,3,0],[2,2,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[1,1,3,0],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,4,0],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,3,0],[0,3,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,3,0],[0,2,3,1]],[[0,2,2,0],[2,2,3,2],[1,1,3,0],[0,2,2,2]],[[0,3,2,0],[2,2,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[1,1,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[1,1,4,1],[0,2,1,1]],[[0,3,2,0],[2,2,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,3,0],[2,2,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,0],[2,2,4,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,0],[2,2,3,3],[1,1,3,1],[0,2,2,0]],[[0,2,2,0],[2,2,3,2],[1,1,4,1],[0,2,2,0]],[[0,2,2,0],[2,2,3,2],[1,1,3,1],[0,3,2,0]],[[0,2,2,0],[2,2,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,2,1],[0,3,4,2],[1,3,2,0],[0,1,2,0]],[[1,2,2,2],[0,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,2,3,1],[0,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,3,2,1],[0,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,2,2,1],[0,3,4,2],[1,3,2,0],[0,1,1,1]],[[1,2,2,2],[0,3,3,2],[1,3,2,0],[0,1,1,1]],[[1,2,3,1],[0,3,3,2],[1,3,2,0],[0,1,1,1]],[[0,3,2,0],[2,2,3,2],[1,1,3,2],[0,0,2,1]],[[0,2,3,0],[2,2,3,2],[1,1,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,4,2],[1,1,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,3],[1,1,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,3,3],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,1,3,2],[0,0,2,2]],[[0,3,2,0],[2,2,3,2],[1,1,3,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[1,1,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[1,1,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[1,1,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[1,1,3,3],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[1,1,3,2],[0,1,1,2]],[[0,3,2,0],[2,2,3,2],[1,1,3,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[1,1,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[1,1,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[1,1,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[1,1,3,3],[0,1,2,0]],[[1,3,2,1],[0,3,3,2],[1,3,2,0],[0,1,1,1]],[[0,3,2,0],[2,2,3,2],[1,1,3,2],[1,0,1,1]],[[0,2,3,0],[2,2,3,2],[1,1,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,4,2],[1,1,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,3],[1,1,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[1,1,3,3],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[1,1,3,2],[1,0,1,2]],[[0,3,2,0],[2,2,3,2],[1,1,3,2],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[1,1,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[1,1,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,3],[1,1,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,2],[1,1,3,3],[1,0,2,0]],[[0,3,2,0],[2,2,3,2],[1,2,0,2],[0,2,2,1]],[[0,2,3,0],[2,2,3,2],[1,2,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[1,2,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[1,2,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,0,3],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,0,2],[0,3,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,0,2],[0,2,3,1]],[[0,2,2,0],[2,2,3,2],[1,2,0,2],[0,2,2,2]],[[0,3,2,0],[2,2,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,3,0],[2,2,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,0],[2,2,4,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,3],[1,2,1,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,1,3],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,1,2],[0,1,3,1]],[[0,2,2,0],[2,2,3,2],[1,2,1,2],[0,1,2,2]],[[0,3,2,0],[2,2,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,3,0],[2,2,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,0],[2,2,4,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,3],[1,2,1,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,1,3],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,1,2],[1,0,3,1]],[[0,2,2,0],[2,2,3,2],[1,2,1,2],[1,0,2,2]],[[0,3,2,0],[2,2,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,3,0],[2,2,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,0],[2,2,4,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,3],[1,2,2,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,2,3],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,2,2],[0,0,2,2]],[[0,3,2,0],[2,2,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[1,2,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[1,2,2,3],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[1,2,2,2],[0,1,1,2]],[[0,3,2,0],[2,2,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[1,2,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[1,2,2,3],[0,1,2,0]],[[0,3,2,0],[2,2,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,3,0],[2,2,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,4,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,3],[1,2,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[1,2,2,3],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[1,2,2,2],[0,2,0,2]],[[0,3,2,0],[2,2,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,3],[1,2,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,1],[0,3,3,3],[1,3,1,2],[0,0,2,0]],[[1,2,2,2],[0,3,3,2],[1,3,1,2],[0,0,2,0]],[[1,2,3,1],[0,3,3,2],[1,3,1,2],[0,0,2,0]],[[0,3,2,0],[2,2,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,3,0],[2,2,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,4,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,3],[1,2,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[1,2,2,3],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[1,2,2,2],[1,0,1,2]],[[0,3,2,0],[2,2,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,3],[1,2,2,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,2],[1,2,2,3],[1,0,2,0]],[[0,3,2,0],[2,2,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,3,0],[2,2,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,0],[2,2,4,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,3],[1,2,2,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,2],[1,2,2,3],[1,1,0,1]],[[0,2,2,0],[2,2,3,2],[1,2,2,2],[1,1,0,2]],[[0,3,2,0],[2,2,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,3,0],[2,2,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,0],[2,2,4,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,3],[1,2,2,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,2],[1,2,2,3],[1,1,1,0]],[[1,3,2,1],[0,3,3,2],[1,3,1,2],[0,0,2,0]],[[1,2,2,1],[0,3,3,3],[1,3,1,2],[0,0,1,1]],[[1,2,2,2],[0,3,3,2],[1,3,1,2],[0,0,1,1]],[[1,2,3,1],[0,3,3,2],[1,3,1,2],[0,0,1,1]],[[1,3,2,1],[0,3,3,2],[1,3,1,2],[0,0,1,1]],[[0,3,2,0],[2,2,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,3,0],[2,2,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,4,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,3,3],[1,2,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,4,0],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,3,0],[0,1,3,1]],[[0,2,2,0],[2,2,3,2],[1,2,3,0],[0,1,2,2]],[[0,3,2,0],[2,2,3,2],[1,2,3,0],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[1,2,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[1,2,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[1,2,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[1,2,4,0],[0,2,1,1]],[[0,3,2,0],[2,2,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,3,0],[2,2,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,0],[2,2,4,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,0],[2,2,3,3],[1,2,3,0],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,4,0],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,3,0],[1,0,3,1]],[[0,2,2,0],[2,2,3,2],[1,2,3,0],[1,0,2,2]],[[0,3,2,0],[2,2,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[1,2,3,0],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[1,2,4,0],[1,1,1,1]],[[1,2,2,1],[0,4,3,2],[1,3,1,0],[1,2,1,0]],[[1,2,2,2],[0,3,3,2],[1,3,1,0],[1,2,1,0]],[[0,3,2,0],[2,2,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,3,0],[2,2,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,0],[2,2,4,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,0],[2,2,3,3],[1,2,3,1],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,2,4,1],[0,0,2,1]],[[0,3,2,0],[2,2,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[1,2,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[1,2,4,1],[0,1,1,1]],[[0,3,2,0],[2,2,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[1,2,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[1,2,4,1],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[1,2,3,1],[0,1,3,0]],[[0,3,2,0],[2,2,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,3,0],[2,2,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,4,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,3,3],[1,2,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[1,2,4,1],[0,2,0,1]],[[0,3,2,0],[2,2,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,3,3],[1,2,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,3,2],[1,2,4,1],[0,2,1,0]],[[1,2,3,1],[0,3,3,2],[1,3,1,0],[1,2,1,0]],[[1,3,2,1],[0,3,3,2],[1,3,1,0],[1,2,1,0]],[[2,2,2,1],[0,3,3,2],[1,3,1,0],[1,2,1,0]],[[1,2,2,1],[0,4,3,2],[1,3,1,0],[1,2,0,1]],[[1,2,2,2],[0,3,3,2],[1,3,1,0],[1,2,0,1]],[[1,2,3,1],[0,3,3,2],[1,3,1,0],[1,2,0,1]],[[1,3,2,1],[0,3,3,2],[1,3,1,0],[1,2,0,1]],[[2,2,2,1],[0,3,3,2],[1,3,1,0],[1,2,0,1]],[[0,3,2,0],[2,2,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,3,0],[2,2,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,0],[2,2,4,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,0],[2,2,3,3],[1,2,3,1],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[1,2,4,1],[1,0,1,1]],[[0,3,2,0],[2,2,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,0],[2,2,3,3],[1,2,3,1],[1,0,2,0]],[[0,2,2,0],[2,2,3,2],[1,2,4,1],[1,0,2,0]],[[0,2,2,0],[2,2,3,2],[1,2,3,1],[1,0,3,0]],[[0,3,2,0],[2,2,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,3,0],[2,2,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,0],[2,2,4,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,0],[2,2,3,3],[1,2,3,1],[1,1,0,1]],[[0,2,2,0],[2,2,3,2],[1,2,4,1],[1,1,0,1]],[[0,3,2,0],[2,2,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,3,0],[2,2,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,0],[2,2,4,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,0],[2,2,3,3],[1,2,3,1],[1,1,1,0]],[[0,2,2,0],[2,2,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,2,1],[0,3,4,2],[1,3,1,0],[0,2,2,0]],[[1,2,2,2],[0,3,3,2],[1,3,1,0],[0,2,2,0]],[[1,2,3,1],[0,3,3,2],[1,3,1,0],[0,2,2,0]],[[1,3,2,1],[0,3,3,2],[1,3,1,0],[0,2,2,0]],[[0,3,2,0],[2,2,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,3,0],[2,2,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,0],[2,2,4,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,0],[2,2,3,3],[1,2,3,2],[0,1,0,1]],[[0,2,2,0],[2,2,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,1],[0,3,3,3],[1,3,0,2],[1,1,1,0]],[[1,2,2,2],[0,3,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,3,1],[0,3,3,2],[1,3,0,2],[1,1,1,0]],[[1,3,2,1],[0,3,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,2,1],[0,3,3,3],[1,3,0,2],[1,1,0,1]],[[1,2,2,2],[0,3,3,2],[1,3,0,2],[1,1,0,1]],[[1,2,3,1],[0,3,3,2],[1,3,0,2],[1,1,0,1]],[[1,3,2,1],[0,3,3,2],[1,3,0,2],[1,1,0,1]],[[1,2,2,1],[0,3,3,3],[1,3,0,2],[1,0,2,0]],[[1,2,2,2],[0,3,3,2],[1,3,0,2],[1,0,2,0]],[[1,2,3,1],[0,3,3,2],[1,3,0,2],[1,0,2,0]],[[1,3,2,1],[0,3,3,2],[1,3,0,2],[1,0,2,0]],[[1,2,2,1],[0,3,3,3],[1,3,0,2],[1,0,1,1]],[[1,2,2,2],[0,3,3,2],[1,3,0,2],[1,0,1,1]],[[1,2,3,1],[0,3,3,2],[1,3,0,2],[1,0,1,1]],[[1,3,2,1],[0,3,3,2],[1,3,0,2],[1,0,1,1]],[[0,3,2,0],[2,2,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,3,0],[2,2,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,0],[2,2,4,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,0],[2,2,3,3],[1,2,3,2],[1,0,0,1]],[[0,2,2,0],[2,2,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[0,3,3,3],[1,3,0,2],[0,2,1,0]],[[1,2,2,2],[0,3,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,3,1],[0,3,3,2],[1,3,0,2],[0,2,1,0]],[[1,3,2,1],[0,3,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,2,1],[0,3,3,3],[1,3,0,2],[0,2,0,1]],[[1,2,2,2],[0,3,3,2],[1,3,0,2],[0,2,0,1]],[[1,2,3,1],[0,3,3,2],[1,3,0,2],[0,2,0,1]],[[1,3,2,1],[0,3,3,2],[1,3,0,2],[0,2,0,1]],[[1,2,2,1],[0,3,3,3],[1,3,0,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,2],[1,3,0,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,2],[1,3,0,2],[0,1,2,0]],[[1,3,2,1],[0,3,3,2],[1,3,0,2],[0,1,2,0]],[[1,2,2,1],[0,3,3,3],[1,3,0,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,2],[1,3,0,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,2],[1,3,0,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,2],[1,3,0,2],[0,1,1,1]],[[1,2,2,1],[0,4,3,2],[1,3,0,1],[1,2,1,0]],[[1,2,2,2],[0,3,3,2],[1,3,0,1],[1,2,1,0]],[[1,2,3,1],[0,3,3,2],[1,3,0,1],[1,2,1,0]],[[1,3,2,1],[0,3,3,2],[1,3,0,1],[1,2,1,0]],[[2,2,2,1],[0,3,3,2],[1,3,0,1],[1,2,1,0]],[[1,2,2,1],[0,4,3,2],[1,3,0,1],[1,2,0,1]],[[1,2,2,2],[0,3,3,2],[1,3,0,1],[1,2,0,1]],[[1,2,3,1],[0,3,3,2],[1,3,0,1],[1,2,0,1]],[[1,3,2,1],[0,3,3,2],[1,3,0,1],[1,2,0,1]],[[2,2,2,1],[0,3,3,2],[1,3,0,1],[1,2,0,1]],[[1,2,2,1],[0,4,3,2],[1,3,0,0],[1,2,2,0]],[[1,2,2,2],[0,3,3,2],[1,3,0,0],[1,2,2,0]],[[1,2,3,1],[0,3,3,2],[1,3,0,0],[1,2,2,0]],[[1,3,2,1],[0,3,3,2],[1,3,0,0],[1,2,2,0]],[[2,2,2,1],[0,3,3,2],[1,3,0,0],[1,2,2,0]],[[0,3,2,0],[2,2,3,2],[1,3,0,1],[0,2,2,1]],[[0,2,3,0],[2,2,3,2],[1,3,0,1],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[1,3,0,1],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[1,3,0,1],[0,2,2,1]],[[0,3,2,0],[2,2,3,2],[1,3,0,1],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[1,3,0,1],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[1,3,0,1],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[1,3,0,1],[1,1,2,1]],[[0,3,2,0],[2,2,3,2],[1,3,0,2],[0,1,2,1]],[[0,2,3,0],[2,2,3,2],[1,3,0,2],[0,1,2,1]],[[0,2,2,0],[2,2,4,2],[1,3,0,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,3],[1,3,0,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[1,3,0,3],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[1,3,0,2],[0,1,3,1]],[[0,2,2,0],[2,2,3,2],[1,3,0,2],[0,1,2,2]],[[0,3,2,0],[2,2,3,2],[1,3,0,2],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[1,3,0,2],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[1,3,0,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[1,3,0,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[1,3,0,3],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[1,3,0,2],[0,2,1,2]],[[0,3,2,0],[2,2,3,2],[1,3,0,2],[0,2,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,0,2],[0,2,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,0,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,3],[1,3,0,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,2],[1,3,0,3],[0,2,2,0]],[[0,3,2,0],[2,2,3,2],[1,3,0,2],[1,0,2,1]],[[0,2,3,0],[2,2,3,2],[1,3,0,2],[1,0,2,1]],[[0,2,2,0],[2,2,4,2],[1,3,0,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,3],[1,3,0,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,3,0,3],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,3,0,2],[1,0,3,1]],[[0,2,2,0],[2,2,3,2],[1,3,0,2],[1,0,2,2]],[[0,3,2,0],[2,2,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[1,3,0,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[1,3,0,3],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[1,3,0,2],[1,1,1,2]],[[0,3,2,0],[2,2,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,3],[1,3,0,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,2],[1,3,0,3],[1,1,2,0]],[[0,3,2,0],[2,2,3,2],[1,3,1,0],[0,2,2,1]],[[0,2,3,0],[2,2,3,2],[1,3,1,0],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[1,3,1,0],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[1,3,1,0],[0,2,2,1]],[[0,3,2,0],[2,2,3,2],[1,3,1,0],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[1,3,1,0],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[1,3,1,0],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[1,3,1,0],[1,1,2,1]],[[0,3,2,0],[2,2,3,2],[1,3,1,1],[0,2,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,1,1],[0,2,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,1,1],[0,2,2,0]],[[0,2,2,0],[2,2,3,3],[1,3,1,1],[0,2,2,0]],[[0,3,2,0],[2,2,3,2],[1,3,1,1],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,0],[2,2,3,3],[1,3,1,1],[1,1,2,0]],[[0,3,2,0],[2,2,3,2],[1,3,1,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[1,3,1,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[1,3,1,3],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[1,3,1,2],[0,1,1,2]],[[0,3,2,0],[2,2,3,2],[1,3,1,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,1,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,1,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[1,3,1,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[1,3,1,3],[0,1,2,0]],[[0,3,2,0],[2,2,3,2],[1,3,1,2],[0,2,0,1]],[[0,2,3,0],[2,2,3,2],[1,3,1,2],[0,2,0,1]],[[0,2,2,0],[2,2,4,2],[1,3,1,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,3],[1,3,1,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[1,3,1,3],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[1,3,1,2],[0,2,0,2]],[[0,3,2,0],[2,2,3,2],[1,3,1,2],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[1,3,1,2],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[1,3,1,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,3],[1,3,1,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,2],[1,3,1,3],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[1,3,1,2],[1,0,1,1]],[[0,2,3,0],[2,2,3,2],[1,3,1,2],[1,0,1,1]],[[0,2,2,0],[2,2,4,2],[1,3,1,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,3],[1,3,1,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[1,3,1,3],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[1,3,1,2],[1,0,1,2]],[[0,3,2,0],[2,2,3,2],[1,3,1,2],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,1,2],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,1,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,3],[1,3,1,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,2],[1,3,1,3],[1,0,2,0]],[[0,3,2,0],[2,2,3,2],[1,3,1,2],[1,1,0,1]],[[0,2,3,0],[2,2,3,2],[1,3,1,2],[1,1,0,1]],[[0,2,2,0],[2,2,4,2],[1,3,1,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,3],[1,3,1,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,2],[1,3,1,3],[1,1,0,1]],[[0,2,2,0],[2,2,3,2],[1,3,1,2],[1,1,0,2]],[[0,3,2,0],[2,2,3,2],[1,3,1,2],[1,1,1,0]],[[0,2,3,0],[2,2,3,2],[1,3,1,2],[1,1,1,0]],[[0,2,2,0],[2,2,4,2],[1,3,1,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,3],[1,3,1,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,2],[1,3,1,3],[1,1,1,0]],[[0,3,2,0],[2,2,3,2],[1,3,1,2],[1,2,0,0]],[[0,2,3,0],[2,2,3,2],[1,3,1,2],[1,2,0,0]],[[0,2,2,0],[2,2,4,2],[1,3,1,2],[1,2,0,0]],[[0,2,2,0],[2,2,3,3],[1,3,1,2],[1,2,0,0]],[[0,3,2,0],[2,2,3,2],[1,3,2,0],[0,1,2,1]],[[0,2,3,0],[2,2,3,2],[1,3,2,0],[0,1,2,1]],[[0,2,2,0],[2,2,4,2],[1,3,2,0],[0,1,2,1]],[[0,2,2,0],[2,2,3,3],[1,3,2,0],[0,1,2,1]],[[0,3,2,0],[2,2,3,2],[1,3,2,0],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[1,3,2,0],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[1,3,2,0],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[1,3,2,0],[0,2,1,1]],[[0,3,2,0],[2,2,3,2],[1,3,2,0],[1,0,2,1]],[[0,2,3,0],[2,2,3,2],[1,3,2,0],[1,0,2,1]],[[0,2,2,0],[2,2,4,2],[1,3,2,0],[1,0,2,1]],[[0,2,2,0],[2,2,3,3],[1,3,2,0],[1,0,2,1]],[[0,3,2,0],[2,2,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[1,3,2,0],[1,1,1,1]],[[0,3,2,0],[2,2,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,3,0],[2,2,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,0],[2,2,4,2],[1,3,2,0],[1,2,0,1]],[[0,3,2,0],[2,2,3,2],[1,3,2,1],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[1,3,2,1],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[1,3,2,1],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[1,3,2,1],[0,1,1,1]],[[0,3,2,0],[2,2,3,2],[1,3,2,1],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,2,1],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,2,1],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[1,3,2,1],[0,1,2,0]],[[0,3,2,0],[2,2,3,2],[1,3,2,1],[0,2,0,1]],[[0,2,3,0],[2,2,3,2],[1,3,2,1],[0,2,0,1]],[[0,2,2,0],[2,2,4,2],[1,3,2,1],[0,2,0,1]],[[0,2,2,0],[2,2,3,3],[1,3,2,1],[0,2,0,1]],[[0,3,2,0],[2,2,3,2],[1,3,2,1],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[1,3,2,1],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[1,3,2,1],[0,2,1,0]],[[0,2,2,0],[2,2,3,3],[1,3,2,1],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[1,3,2,1],[1,0,1,1]],[[0,2,3,0],[2,2,3,2],[1,3,2,1],[1,0,1,1]],[[0,2,2,0],[2,2,4,2],[1,3,2,1],[1,0,1,1]],[[0,2,2,0],[2,2,3,3],[1,3,2,1],[1,0,1,1]],[[0,3,2,0],[2,2,3,2],[1,3,2,1],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,2,1],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,2,1],[1,0,2,0]],[[0,2,2,0],[2,2,3,3],[1,3,2,1],[1,0,2,0]],[[0,3,2,0],[2,2,3,2],[1,3,2,1],[1,1,0,1]],[[0,2,3,0],[2,2,3,2],[1,3,2,1],[1,1,0,1]],[[0,2,2,0],[2,2,4,2],[1,3,2,1],[1,1,0,1]],[[0,2,2,0],[2,2,3,3],[1,3,2,1],[1,1,0,1]],[[0,3,2,0],[2,2,3,2],[1,3,2,1],[1,1,1,0]],[[0,2,3,0],[2,2,3,2],[1,3,2,1],[1,1,1,0]],[[0,2,2,0],[2,2,4,2],[1,3,2,1],[1,1,1,0]],[[0,2,2,0],[2,2,3,3],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,3,4,2],[1,2,3,0],[1,1,1,0]],[[1,2,2,2],[0,3,3,2],[1,2,3,0],[1,1,1,0]],[[1,2,3,1],[0,3,3,2],[1,2,3,0],[1,1,1,0]],[[0,3,2,0],[2,2,3,2],[1,3,2,1],[1,2,0,0]],[[0,2,3,0],[2,2,3,2],[1,3,2,1],[1,2,0,0]],[[0,2,2,0],[2,2,4,2],[1,3,2,1],[1,2,0,0]],[[0,2,2,0],[2,2,3,3],[1,3,2,1],[1,2,0,0]],[[1,3,2,1],[0,3,3,2],[1,2,3,0],[1,1,1,0]],[[1,2,2,1],[0,3,4,2],[1,2,3,0],[1,1,0,1]],[[1,2,2,2],[0,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,2,3,1],[0,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,3,2,1],[0,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,2,2,1],[0,3,4,2],[1,2,3,0],[1,0,2,0]],[[1,2,2,2],[0,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,2,3,1],[0,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,3,2,1],[0,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,2,2,1],[0,3,4,2],[1,2,3,0],[1,0,1,1]],[[1,2,2,2],[0,3,3,2],[1,2,3,0],[1,0,1,1]],[[1,2,3,1],[0,3,3,2],[1,2,3,0],[1,0,1,1]],[[1,3,2,1],[0,3,3,2],[1,2,3,0],[1,0,1,1]],[[0,3,2,0],[2,2,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,3,0],[2,2,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,0],[2,2,4,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,0],[2,2,3,3],[1,3,2,2],[0,0,1,1]],[[0,2,2,0],[2,2,3,2],[1,3,2,3],[0,0,1,1]],[[0,2,2,0],[2,2,3,2],[1,3,2,2],[0,0,1,2]],[[0,3,2,0],[2,2,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,0],[2,2,3,3],[1,3,2,2],[0,0,2,0]],[[0,2,2,0],[2,2,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[0,3,4,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,2],[0,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,2,3,1],[0,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,3,2,1],[0,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,1],[0,3,4,2],[1,2,3,0],[0,2,0,1]],[[1,2,2,2],[0,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,2,3,1],[0,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,3,2,1],[0,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,2,2,1],[0,3,4,2],[1,2,3,0],[0,1,2,0]],[[1,2,2,2],[0,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,2,3,1],[0,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,3,2,1],[0,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,2,2,1],[0,3,4,2],[1,2,3,0],[0,1,1,1]],[[1,2,2,2],[0,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,2,3,1],[0,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,3,2,1],[0,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,2,2,1],[0,3,4,2],[1,2,3,0],[0,0,2,1]],[[1,2,2,2],[0,3,3,2],[1,2,3,0],[0,0,2,1]],[[1,2,3,1],[0,3,3,2],[1,2,3,0],[0,0,2,1]],[[1,3,2,1],[0,3,3,2],[1,2,3,0],[0,0,2,1]],[[1,2,2,1],[0,3,3,3],[1,2,2,2],[1,0,0,1]],[[1,2,2,2],[0,3,3,2],[1,2,2,2],[1,0,0,1]],[[1,2,3,1],[0,3,3,2],[1,2,2,2],[1,0,0,1]],[[1,3,2,1],[0,3,3,2],[1,2,2,2],[1,0,0,1]],[[1,2,2,1],[0,3,3,3],[1,2,2,2],[0,1,0,1]],[[1,2,2,2],[0,3,3,2],[1,2,2,2],[0,1,0,1]],[[1,2,3,1],[0,3,3,2],[1,2,2,2],[0,1,0,1]],[[1,3,2,1],[0,3,3,2],[1,2,2,2],[0,1,0,1]],[[0,3,2,0],[2,2,3,2],[1,3,3,0],[0,0,2,1]],[[0,2,3,0],[2,2,3,2],[1,3,3,0],[0,0,2,1]],[[0,2,2,0],[2,2,4,2],[1,3,3,0],[0,0,2,1]],[[0,2,2,0],[2,2,3,3],[1,3,3,0],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[1,3,4,0],[0,0,2,1]],[[0,3,2,0],[2,2,3,2],[1,3,3,0],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,3,0],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,3,0],[0,1,2,0]],[[0,3,2,0],[2,2,3,2],[1,3,3,0],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[1,3,3,0],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[1,3,3,0],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[1,3,3,0],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,3,0],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,3,0],[1,0,2,0]],[[0,3,2,0],[2,2,3,2],[1,3,3,0],[1,1,1,0]],[[0,2,3,0],[2,2,3,2],[1,3,3,0],[1,1,1,0]],[[0,2,2,0],[2,2,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[0,3,3,3],[1,2,1,2],[1,1,1,0]],[[1,2,2,2],[0,3,3,2],[1,2,1,2],[1,1,1,0]],[[1,2,3,1],[0,3,3,2],[1,2,1,2],[1,1,1,0]],[[0,3,2,0],[2,2,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,3,0],[2,2,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,2,0],[2,2,4,2],[1,3,3,0],[1,2,0,0]],[[1,3,2,1],[0,3,3,2],[1,2,1,2],[1,1,1,0]],[[1,2,2,1],[0,3,3,3],[1,2,1,2],[1,1,0,1]],[[1,2,2,2],[0,3,3,2],[1,2,1,2],[1,1,0,1]],[[1,2,3,1],[0,3,3,2],[1,2,1,2],[1,1,0,1]],[[1,3,2,1],[0,3,3,2],[1,2,1,2],[1,1,0,1]],[[1,2,2,1],[0,3,3,3],[1,2,1,2],[1,0,2,0]],[[1,2,2,2],[0,3,3,2],[1,2,1,2],[1,0,2,0]],[[1,2,3,1],[0,3,3,2],[1,2,1,2],[1,0,2,0]],[[1,3,2,1],[0,3,3,2],[1,2,1,2],[1,0,2,0]],[[1,2,2,1],[0,3,3,3],[1,2,1,2],[1,0,1,1]],[[1,2,2,2],[0,3,3,2],[1,2,1,2],[1,0,1,1]],[[1,2,3,1],[0,3,3,2],[1,2,1,2],[1,0,1,1]],[[1,3,2,1],[0,3,3,2],[1,2,1,2],[1,0,1,1]],[[0,3,2,0],[2,2,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,3,0],[2,2,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,0],[2,2,4,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,0],[2,2,3,3],[1,3,3,1],[0,0,1,1]],[[0,2,2,0],[2,2,3,2],[1,3,4,1],[0,0,1,1]],[[0,3,2,0],[2,2,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,3,0],[2,2,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,0],[2,2,4,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,0],[2,2,3,3],[1,3,3,1],[0,0,2,0]],[[0,2,2,0],[2,2,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,2,1],[0,3,3,3],[1,2,1,2],[0,2,1,0]],[[1,2,2,2],[0,3,3,2],[1,2,1,2],[0,2,1,0]],[[1,2,3,1],[0,3,3,2],[1,2,1,2],[0,2,1,0]],[[1,3,2,1],[0,3,3,2],[1,2,1,2],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[1,3,3,1],[0,2,0,0]],[[0,2,3,0],[2,2,3,2],[1,3,3,1],[0,2,0,0]],[[0,2,2,0],[2,2,4,2],[1,3,3,1],[0,2,0,0]],[[0,2,2,0],[2,2,3,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,3,3,3],[1,2,1,2],[0,2,0,1]],[[1,2,2,2],[0,3,3,2],[1,2,1,2],[0,2,0,1]],[[1,2,3,1],[0,3,3,2],[1,2,1,2],[0,2,0,1]],[[1,3,2,1],[0,3,3,2],[1,2,1,2],[0,2,0,1]],[[1,2,2,1],[0,3,3,3],[1,2,1,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,2],[1,2,1,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,2],[1,2,1,2],[0,1,2,0]],[[1,3,2,1],[0,3,3,2],[1,2,1,2],[0,1,2,0]],[[1,2,2,1],[0,3,3,3],[1,2,1,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,2],[1,2,1,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,2],[1,2,1,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,2],[1,2,1,2],[0,1,1,1]],[[1,2,2,1],[0,3,3,3],[1,2,1,2],[0,0,2,1]],[[1,2,2,2],[0,3,3,2],[1,2,1,2],[0,0,2,1]],[[1,2,3,1],[0,3,3,2],[1,2,1,2],[0,0,2,1]],[[1,3,2,1],[0,3,3,2],[1,2,1,2],[0,0,2,1]],[[1,2,2,1],[0,3,3,3],[1,2,0,2],[1,0,2,1]],[[1,2,2,2],[0,3,3,2],[1,2,0,2],[1,0,2,1]],[[1,2,3,1],[0,3,3,2],[1,2,0,2],[1,0,2,1]],[[1,3,2,1],[0,3,3,2],[1,2,0,2],[1,0,2,1]],[[0,3,2,0],[2,2,3,2],[1,3,3,1],[1,1,0,0]],[[0,2,3,0],[2,2,3,2],[1,3,3,1],[1,1,0,0]],[[0,2,2,0],[2,2,4,2],[1,3,3,1],[1,1,0,0]],[[0,2,2,0],[2,2,3,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,3,3,3],[1,2,0,2],[0,1,2,1]],[[1,2,2,2],[0,3,3,2],[1,2,0,2],[0,1,2,1]],[[1,2,3,1],[0,3,3,2],[1,2,0,2],[0,1,2,1]],[[1,3,2,1],[0,3,3,2],[1,2,0,2],[0,1,2,1]],[[0,3,2,0],[2,2,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,3,0],[2,2,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,0],[2,2,4,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,0],[2,2,3,3],[1,3,3,2],[0,0,0,1]],[[0,2,2,0],[2,2,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[0,3,4,2],[1,1,3,0],[0,2,2,0]],[[1,2,2,2],[0,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,2,3,1],[0,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,3,2,1],[0,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,2,2,1],[0,3,4,2],[1,1,3,0],[0,2,1,1]],[[1,2,2,2],[0,3,3,2],[1,1,3,0],[0,2,1,1]],[[1,2,3,1],[0,3,3,2],[1,1,3,0],[0,2,1,1]],[[1,3,2,1],[0,3,3,2],[1,1,3,0],[0,2,1,1]],[[1,2,2,1],[0,3,3,3],[1,1,1,2],[0,2,2,0]],[[1,2,2,2],[0,3,3,2],[1,1,1,2],[0,2,2,0]],[[1,2,3,1],[0,3,3,2],[1,1,1,2],[0,2,2,0]],[[1,3,2,1],[0,3,3,2],[1,1,1,2],[0,2,2,0]],[[1,2,2,1],[0,3,3,3],[1,1,1,2],[0,2,1,1]],[[1,2,2,2],[0,3,3,2],[1,1,1,2],[0,2,1,1]],[[1,2,3,1],[0,3,3,2],[1,1,1,2],[0,2,1,1]],[[1,3,2,1],[0,3,3,2],[1,1,1,2],[0,2,1,1]],[[1,2,2,1],[0,3,3,3],[1,1,0,2],[0,2,2,1]],[[1,2,2,2],[0,3,3,2],[1,1,0,2],[0,2,2,1]],[[1,2,3,1],[0,3,3,2],[1,1,0,2],[0,2,2,1]],[[1,3,2,1],[0,3,3,2],[1,1,0,2],[0,2,2,1]],[[1,2,2,1],[0,3,3,3],[1,0,3,2],[1,0,2,0]],[[1,2,2,2],[0,3,3,2],[1,0,3,2],[1,0,2,0]],[[1,2,3,1],[0,3,3,2],[1,0,3,2],[1,0,2,0]],[[1,2,2,1],[0,3,3,2],[1,0,3,3],[1,0,1,1]],[[1,2,2,1],[0,3,3,3],[1,0,3,2],[1,0,1,1]],[[1,2,2,2],[0,3,3,2],[1,0,3,2],[1,0,1,1]],[[1,2,3,1],[0,3,3,2],[1,0,3,2],[1,0,1,1]],[[1,2,2,1],[0,3,3,3],[1,0,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,2],[1,0,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,2],[1,0,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,3,2],[1,0,3,3],[0,1,1,1]],[[1,2,2,1],[0,3,3,3],[1,0,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,2],[1,0,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,2],[1,0,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,3,2],[1,0,3,2],[0,0,2,2]],[[1,2,2,1],[0,3,3,2],[1,0,3,3],[0,0,2,1]],[[1,2,2,1],[0,3,3,3],[1,0,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,3,2],[1,0,3,2],[0,0,2,1]],[[1,2,3,1],[0,3,3,2],[1,0,3,2],[0,0,2,1]],[[1,2,2,1],[0,3,4,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,2],[0,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,2,3,1],[0,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,3,2,1],[0,3,3,2],[0,3,3,0],[1,2,0,0]],[[0,3,2,0],[2,2,3,2],[2,0,1,1],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[2,0,1,1],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[2,0,1,1],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[2,0,1,1],[1,2,2,1]],[[0,3,2,0],[2,2,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,3,0],[2,2,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[2,0,1,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,1,3],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,1,2],[0,3,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,1,2],[0,2,3,1]],[[0,2,2,0],[2,2,3,2],[2,0,1,2],[0,2,2,2]],[[0,3,2,0],[2,2,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[2,0,1,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,1,3],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,1,2],[1,1,3,1]],[[0,2,2,0],[2,2,3,2],[2,0,1,2],[1,1,2,2]],[[0,3,2,0],[2,2,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[2,0,1,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,1,3],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,1,2],[1,2,1,2]],[[0,3,2,0],[2,2,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,3,0],[2,2,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,4,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,3],[2,0,1,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,2],[2,0,1,3],[1,2,2,0]],[[0,3,2,0],[2,2,3,2],[2,0,2,0],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[2,0,2,0],[1,2,2,1]],[[0,3,2,0],[2,2,3,2],[2,0,2,1],[1,2,2,0]],[[0,2,3,0],[2,2,3,2],[2,0,2,1],[1,2,2,0]],[[0,2,2,0],[2,2,4,2],[2,0,2,1],[1,2,2,0]],[[0,2,2,0],[2,2,3,3],[2,0,2,1],[1,2,2,0]],[[0,3,2,0],[2,2,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[2,0,2,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,2,3],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,2,2],[0,2,1,2]],[[0,3,2,0],[2,2,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,3,0],[2,2,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,4,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,3],[2,0,2,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,2],[2,0,2,3],[0,2,2,0]],[[0,3,2,0],[2,2,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[2,0,2,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,2,3],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,2,2],[1,1,1,2]],[[0,3,2,0],[2,2,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,3],[2,0,2,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,2],[2,0,2,3],[1,1,2,0]],[[0,3,2,0],[2,2,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,3,0],[2,2,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,0],[2,2,4,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,3],[2,0,2,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,2],[2,0,2,3],[1,2,0,1]],[[0,2,2,0],[2,2,3,2],[2,0,2,2],[1,2,0,2]],[[0,3,2,0],[2,2,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,3,0],[2,2,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,0],[2,2,4,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,3],[2,0,2,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,2],[2,0,2,3],[1,2,1,0]],[[1,2,2,1],[0,3,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,2,2],[0,3,3,2],[0,3,3,0],[0,2,1,0]],[[1,2,3,1],[0,3,3,2],[0,3,3,0],[0,2,1,0]],[[1,3,2,1],[0,3,3,2],[0,3,3,0],[0,2,1,0]],[[1,2,2,1],[0,3,4,2],[0,3,3,0],[0,2,0,1]],[[1,2,2,2],[0,3,3,2],[0,3,3,0],[0,2,0,1]],[[1,2,3,1],[0,3,3,2],[0,3,3,0],[0,2,0,1]],[[0,3,2,0],[2,2,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,3,0],[2,2,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[2,0,3,0],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,4,0],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,3,0],[0,3,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,3,0],[0,2,3,1]],[[0,2,2,0],[2,2,3,2],[2,0,3,0],[0,2,2,2]],[[0,3,2,0],[2,2,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[2,0,3,0],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,4,0],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,3,0],[1,1,3,1]],[[0,2,2,0],[2,2,3,2],[2,0,3,0],[1,1,2,2]],[[0,3,2,0],[2,2,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[2,0,3,0],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,4,0],[1,2,1,1]],[[0,3,2,0],[2,2,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[2,0,3,1],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,4,1],[0,2,1,1]],[[0,3,2,0],[2,2,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,3,0],[2,2,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,0],[2,2,4,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,0],[2,2,3,3],[2,0,3,1],[0,2,2,0]],[[0,2,2,0],[2,2,3,2],[2,0,4,1],[0,2,2,0]],[[0,2,2,0],[2,2,3,2],[2,0,3,1],[0,3,2,0]],[[0,2,2,0],[2,2,3,2],[2,0,3,1],[0,2,3,0]],[[0,3,2,0],[2,2,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[2,0,3,1],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,4,1],[1,1,1,1]],[[0,3,2,0],[2,2,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,0],[2,2,3,3],[2,0,3,1],[1,1,2,0]],[[0,2,2,0],[2,2,3,2],[2,0,4,1],[1,1,2,0]],[[0,2,2,0],[2,2,3,2],[2,0,3,1],[1,1,3,0]],[[0,3,2,0],[2,2,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,3,0],[2,2,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,4,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,3,3],[2,0,3,1],[1,2,0,1]],[[0,2,2,0],[2,2,3,2],[2,0,4,1],[1,2,0,1]],[[0,3,2,0],[2,2,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,3,0],[2,2,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,0],[2,2,4,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,0],[2,2,3,3],[2,0,3,1],[1,2,1,0]],[[0,2,2,0],[2,2,3,2],[2,0,4,1],[1,2,1,0]],[[1,3,2,1],[0,3,3,2],[0,3,3,0],[0,2,0,1]],[[1,2,2,1],[0,3,4,2],[0,3,3,0],[0,1,2,0]],[[1,2,2,2],[0,3,3,2],[0,3,3,0],[0,1,2,0]],[[0,3,2,0],[2,2,3,2],[2,0,3,2],[0,0,2,1]],[[0,2,3,0],[2,2,3,2],[2,0,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,4,2],[2,0,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,3],[2,0,3,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,3,3],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[2,0,3,2],[0,0,2,2]],[[0,3,2,0],[2,2,3,2],[2,0,3,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[2,0,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[2,0,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[2,0,3,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,3,3],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,3,2],[0,1,1,2]],[[0,3,2,0],[2,2,3,2],[2,0,3,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[2,0,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[2,0,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[2,0,3,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,3,1],[0,3,3,2],[0,3,3,0],[0,1,2,0]],[[1,3,2,1],[0,3,3,2],[0,3,3,0],[0,1,2,0]],[[1,2,2,1],[0,3,4,2],[0,3,3,0],[0,1,1,1]],[[1,2,2,2],[0,3,3,2],[0,3,3,0],[0,1,1,1]],[[1,2,3,1],[0,3,3,2],[0,3,3,0],[0,1,1,1]],[[1,3,2,1],[0,3,3,2],[0,3,3,0],[0,1,1,1]],[[1,2,2,1],[0,3,4,2],[0,3,3,0],[0,0,2,1]],[[1,2,2,2],[0,3,3,2],[0,3,3,0],[0,0,2,1]],[[1,2,3,1],[0,3,3,2],[0,3,3,0],[0,0,2,1]],[[0,3,2,0],[2,2,3,2],[2,0,3,2],[1,0,1,1]],[[0,2,3,0],[2,2,3,2],[2,0,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,4,2],[2,0,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,3],[2,0,3,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,3,3],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[2,0,3,2],[1,0,1,2]],[[0,3,2,0],[2,2,3,2],[2,0,3,2],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[2,0,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[2,0,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,3],[2,0,3,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,2],[2,0,3,3],[1,0,2,0]],[[1,3,2,1],[0,3,3,2],[0,3,3,0],[0,0,2,1]],[[1,2,2,1],[0,3,3,3],[0,3,2,2],[0,1,0,1]],[[1,2,2,2],[0,3,3,2],[0,3,2,2],[0,1,0,1]],[[1,2,3,1],[0,3,3,2],[0,3,2,2],[0,1,0,1]],[[1,3,2,1],[0,3,3,2],[0,3,2,2],[0,1,0,1]],[[0,3,2,0],[2,2,3,2],[2,1,0,1],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[2,1,0,1],[1,2,2,1]],[[0,3,2,0],[2,2,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,3,0],[2,2,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[2,1,0,2],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,0,3],[0,2,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,0,2],[0,3,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,0,2],[0,2,3,1]],[[0,2,2,0],[2,2,3,2],[2,1,0,2],[0,2,2,2]],[[0,3,2,0],[2,2,3,2],[2,1,0,2],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[2,1,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[2,1,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[2,1,0,2],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,0,3],[1,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,0,2],[1,1,3,1]],[[0,2,2,0],[2,2,3,2],[2,1,0,2],[1,1,2,2]],[[0,3,2,0],[2,2,3,2],[2,1,0,2],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[2,1,0,2],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[2,1,0,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[2,1,0,2],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[2,1,0,3],[1,2,1,1]],[[0,2,2,0],[2,2,3,2],[2,1,0,2],[1,2,1,2]],[[0,3,2,0],[2,2,3,2],[2,1,0,2],[1,2,2,0]],[[0,2,3,0],[2,2,3,2],[2,1,0,2],[1,2,2,0]],[[0,2,2,0],[2,2,4,2],[2,1,0,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,3],[2,1,0,2],[1,2,2,0]],[[0,2,2,0],[2,2,3,2],[2,1,0,3],[1,2,2,0]],[[0,3,2,0],[2,2,3,2],[2,1,1,0],[1,2,2,1]],[[0,2,3,0],[2,2,3,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,0],[2,2,4,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,0],[2,2,3,3],[2,1,1,0],[1,2,2,1]],[[0,3,2,0],[2,2,3,2],[2,1,1,1],[1,2,2,0]],[[0,2,3,0],[2,2,3,2],[2,1,1,1],[1,2,2,0]],[[0,2,2,0],[2,2,4,2],[2,1,1,1],[1,2,2,0]],[[0,2,2,0],[2,2,3,3],[2,1,1,1],[1,2,2,0]],[[0,3,2,0],[2,2,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,3,0],[2,2,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,0],[2,2,4,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,3],[2,1,1,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,1,3],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,1,2],[0,1,3,1]],[[0,2,2,0],[2,2,3,2],[2,1,1,2],[0,1,2,2]],[[0,3,2,0],[2,2,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,3,0],[2,2,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,0],[2,2,4,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,3],[2,1,1,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,1,3],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,1,2],[1,0,3,1]],[[0,2,2,0],[2,2,3,2],[2,1,1,2],[1,0,2,2]],[[0,3,2,0],[2,2,3,2],[2,1,1,2],[1,2,0,1]],[[0,2,3,0],[2,2,3,2],[2,1,1,2],[1,2,0,1]],[[0,2,2,0],[2,2,4,2],[2,1,1,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,3],[2,1,1,2],[1,2,0,1]],[[0,2,2,0],[2,2,3,2],[2,1,1,3],[1,2,0,1]],[[0,2,2,0],[2,2,3,2],[2,1,1,2],[1,2,0,2]],[[0,3,2,0],[2,2,3,2],[2,1,1,2],[1,2,1,0]],[[0,2,3,0],[2,2,3,2],[2,1,1,2],[1,2,1,0]],[[0,2,2,0],[2,2,4,2],[2,1,1,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,3],[2,1,1,2],[1,2,1,0]],[[0,2,2,0],[2,2,3,2],[2,1,1,3],[1,2,1,0]],[[0,3,2,0],[2,2,3,2],[2,1,2,0],[1,2,1,1]],[[0,2,3,0],[2,2,3,2],[2,1,2,0],[1,2,1,1]],[[0,2,2,0],[2,2,4,2],[2,1,2,0],[1,2,1,1]],[[0,2,2,0],[2,2,3,3],[2,1,2,0],[1,2,1,1]],[[0,3,2,0],[2,2,3,2],[2,1,2,1],[1,2,0,1]],[[0,2,3,0],[2,2,3,2],[2,1,2,1],[1,2,0,1]],[[0,2,2,0],[2,2,4,2],[2,1,2,1],[1,2,0,1]],[[0,2,2,0],[2,2,3,3],[2,1,2,1],[1,2,0,1]],[[0,3,2,0],[2,2,3,2],[2,1,2,1],[1,2,1,0]],[[0,2,3,0],[2,2,3,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,0],[2,2,4,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,0],[2,2,3,3],[2,1,2,1],[1,2,1,0]],[[0,3,2,0],[2,2,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,3,0],[2,2,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,0],[2,2,4,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,3],[2,1,2,2],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,2,3],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,2,2],[0,0,2,2]],[[0,3,2,0],[2,2,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[2,1,2,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,1,2,3],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,1,2,2],[0,1,1,2]],[[0,3,2,0],[2,2,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[2,1,2,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[2,1,2,3],[0,1,2,0]],[[0,3,2,0],[2,2,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,3,0],[2,2,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,4,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,3],[2,1,2,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[2,1,2,3],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[2,1,2,2],[0,2,0,2]],[[0,3,2,0],[2,2,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,3],[2,1,2,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,2],[2,1,2,3],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,3,0],[2,2,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,4,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,3],[2,1,2,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[2,1,2,3],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[2,1,2,2],[1,0,1,2]],[[0,3,2,0],[2,2,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,3],[2,1,2,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,2],[2,1,2,3],[1,0,2,0]],[[0,3,2,0],[2,2,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,3,0],[2,2,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,0],[2,2,4,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,3],[2,1,2,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,2],[2,1,2,3],[1,1,0,1]],[[0,2,2,0],[2,2,3,2],[2,1,2,2],[1,1,0,2]],[[0,3,2,0],[2,2,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,3,0],[2,2,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,0],[2,2,4,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,3],[2,1,2,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,2],[2,1,2,3],[1,1,1,0]],[[1,2,2,1],[0,3,4,2],[0,3,2,0],[1,2,1,0]],[[1,2,2,2],[0,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,2,3,1],[0,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,3,2,1],[0,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,2,2,1],[0,3,4,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,2],[0,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,2,3,1],[0,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,3,2,1],[0,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,1],[0,3,4,2],[0,3,2,0],[1,1,2,0]],[[1,2,2,2],[0,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,2,3,1],[0,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,3,2,1],[0,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,2,2,1],[0,3,4,2],[0,3,2,0],[1,1,1,1]],[[1,2,2,2],[0,3,3,2],[0,3,2,0],[1,1,1,1]],[[0,3,2,0],[2,2,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,3,0],[2,2,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,4,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,3,3],[2,1,3,0],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,4,0],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,3,0],[0,1,3,1]],[[0,2,2,0],[2,2,3,2],[2,1,3,0],[0,1,2,2]],[[0,3,2,0],[2,2,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[2,1,3,0],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[2,1,4,0],[0,2,1,1]],[[0,3,2,0],[2,2,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,3,0],[2,2,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,0],[2,2,4,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,0],[2,2,3,3],[2,1,3,0],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,4,0],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,3,0],[1,0,3,1]],[[0,2,2,0],[2,2,3,2],[2,1,3,0],[1,0,2,2]],[[0,3,2,0],[2,2,3,2],[2,1,3,0],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[2,1,3,0],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[2,1,3,0],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[2,1,3,0],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,1,4,0],[1,1,1,1]],[[0,3,2,0],[2,2,3,2],[2,1,3,0],[1,2,1,0]],[[0,2,3,0],[2,2,3,2],[2,1,3,0],[1,2,1,0]],[[0,2,2,0],[2,2,4,2],[2,1,3,0],[1,2,1,0]],[[1,2,3,1],[0,3,3,2],[0,3,2,0],[1,1,1,1]],[[1,3,2,1],[0,3,3,2],[0,3,2,0],[1,1,1,1]],[[0,3,2,0],[2,2,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,3,0],[2,2,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,0],[2,2,4,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,0],[2,2,3,3],[2,1,3,1],[0,0,2,1]],[[0,2,2,0],[2,2,3,2],[2,1,4,1],[0,0,2,1]],[[0,3,2,0],[2,2,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[2,1,3,1],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,1,4,1],[0,1,1,1]],[[0,3,2,0],[2,2,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[2,1,3,1],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[2,1,4,1],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[2,1,3,1],[0,1,3,0]],[[0,3,2,0],[2,2,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,3,0],[2,2,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,4,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,3,3],[2,1,3,1],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[2,1,4,1],[0,2,0,1]],[[0,3,2,0],[2,2,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,3,3],[2,1,3,1],[0,2,1,0]],[[0,2,2,0],[2,2,3,2],[2,1,4,1],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,3,0],[2,2,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,0],[2,2,4,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,0],[2,2,3,3],[2,1,3,1],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[2,1,4,1],[1,0,1,1]],[[0,3,2,0],[2,2,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,0],[2,2,3,3],[2,1,3,1],[1,0,2,0]],[[0,2,2,0],[2,2,3,2],[2,1,4,1],[1,0,2,0]],[[0,2,2,0],[2,2,3,2],[2,1,3,1],[1,0,3,0]],[[0,3,2,0],[2,2,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,3,0],[2,2,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,0],[2,2,4,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,0],[2,2,3,3],[2,1,3,1],[1,1,0,1]],[[0,2,2,0],[2,2,3,2],[2,1,4,1],[1,1,0,1]],[[0,3,2,0],[2,2,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,3,0],[2,2,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,0],[2,2,4,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,0],[2,2,3,3],[2,1,3,1],[1,1,1,0]],[[0,2,2,0],[2,2,3,2],[2,1,4,1],[1,1,1,0]],[[1,2,2,1],[0,3,3,3],[0,3,1,2],[0,2,1,0]],[[1,2,2,2],[0,3,3,2],[0,3,1,2],[0,2,1,0]],[[1,2,3,1],[0,3,3,2],[0,3,1,2],[0,2,1,0]],[[1,3,2,1],[0,3,3,2],[0,3,1,2],[0,2,1,0]],[[1,2,2,1],[0,3,3,3],[0,3,1,2],[0,2,0,1]],[[1,2,2,2],[0,3,3,2],[0,3,1,2],[0,2,0,1]],[[1,2,3,1],[0,3,3,2],[0,3,1,2],[0,2,0,1]],[[1,3,2,1],[0,3,3,2],[0,3,1,2],[0,2,0,1]],[[0,3,2,0],[2,2,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,3,0],[2,2,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,0],[2,2,4,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,0],[2,2,3,3],[2,1,3,2],[0,1,0,1]],[[0,2,2,0],[2,2,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,1],[0,3,3,3],[0,3,1,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,2],[0,3,1,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,2],[0,3,1,2],[0,1,2,0]],[[1,3,2,1],[0,3,3,2],[0,3,1,2],[0,1,2,0]],[[1,2,2,1],[0,3,3,3],[0,3,1,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,2],[0,3,1,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,2],[0,3,1,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,2],[0,3,1,2],[0,1,1,1]],[[1,2,2,1],[0,3,3,3],[0,3,1,2],[0,0,2,1]],[[1,2,2,2],[0,3,3,2],[0,3,1,2],[0,0,2,1]],[[1,2,3,1],[0,3,3,2],[0,3,1,2],[0,0,2,1]],[[1,3,2,1],[0,3,3,2],[0,3,1,2],[0,0,2,1]],[[1,2,2,1],[0,3,4,2],[0,3,1,0],[1,2,2,0]],[[1,2,2,2],[0,3,3,2],[0,3,1,0],[1,2,2,0]],[[1,2,3,1],[0,3,3,2],[0,3,1,0],[1,2,2,0]],[[1,3,2,1],[0,3,3,2],[0,3,1,0],[1,2,2,0]],[[0,3,2,0],[2,2,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,3,0],[2,2,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,0],[2,2,4,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,0],[2,2,3,3],[2,1,3,2],[1,0,0,1]],[[0,2,2,0],[2,2,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,1],[0,3,3,3],[0,3,0,2],[1,2,1,0]],[[1,2,2,2],[0,3,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,3,1],[0,3,3,2],[0,3,0,2],[1,2,1,0]],[[1,3,2,1],[0,3,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[0,3,3,3],[0,3,0,2],[1,2,0,1]],[[1,2,2,2],[0,3,3,2],[0,3,0,2],[1,2,0,1]],[[1,2,3,1],[0,3,3,2],[0,3,0,2],[1,2,0,1]],[[1,3,2,1],[0,3,3,2],[0,3,0,2],[1,2,0,1]],[[1,2,2,1],[0,3,3,3],[0,3,0,2],[1,1,2,0]],[[1,2,2,2],[0,3,3,2],[0,3,0,2],[1,1,2,0]],[[1,2,3,1],[0,3,3,2],[0,3,0,2],[1,1,2,0]],[[1,3,2,1],[0,3,3,2],[0,3,0,2],[1,1,2,0]],[[1,2,2,1],[0,3,3,3],[0,3,0,2],[1,1,1,1]],[[1,2,2,2],[0,3,3,2],[0,3,0,2],[1,1,1,1]],[[1,2,3,1],[0,3,3,2],[0,3,0,2],[1,1,1,1]],[[1,3,2,1],[0,3,3,2],[0,3,0,2],[1,1,1,1]],[[1,2,2,1],[0,3,3,3],[0,3,0,2],[0,1,2,1]],[[1,2,2,2],[0,3,3,2],[0,3,0,2],[0,1,2,1]],[[1,2,3,1],[0,3,3,2],[0,3,0,2],[0,1,2,1]],[[1,3,2,1],[0,3,3,2],[0,3,0,2],[0,1,2,1]],[[0,3,2,0],[2,2,3,2],[2,2,0,1],[0,2,2,1]],[[0,2,3,0],[2,2,3,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[2,2,0,1],[0,2,2,1]],[[0,3,2,0],[2,2,3,2],[2,2,0,1],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[2,2,0,1],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[2,2,0,1],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[2,2,0,1],[1,1,2,1]],[[0,3,2,0],[2,2,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,3,0],[2,2,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,0],[2,2,4,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,3],[2,2,0,2],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,2,0,3],[0,1,2,1]],[[0,2,2,0],[2,2,3,2],[2,2,0,2],[0,1,3,1]],[[0,2,2,0],[2,2,3,2],[2,2,0,2],[0,1,2,2]],[[0,3,2,0],[2,2,3,2],[2,2,0,2],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[2,2,0,2],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[2,2,0,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[2,2,0,2],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[2,2,0,3],[0,2,1,1]],[[0,2,2,0],[2,2,3,2],[2,2,0,2],[0,2,1,2]],[[0,3,2,0],[2,2,3,2],[2,2,0,2],[0,2,2,0]],[[0,2,3,0],[2,2,3,2],[2,2,0,2],[0,2,2,0]],[[0,2,2,0],[2,2,4,2],[2,2,0,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,3],[2,2,0,2],[0,2,2,0]],[[0,2,2,0],[2,2,3,2],[2,2,0,3],[0,2,2,0]],[[0,3,2,0],[2,2,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,3,0],[2,2,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,0],[2,2,4,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,3],[2,2,0,2],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[2,2,0,3],[1,0,2,1]],[[0,2,2,0],[2,2,3,2],[2,2,0,2],[1,0,3,1]],[[0,2,2,0],[2,2,3,2],[2,2,0,2],[1,0,2,2]],[[0,3,2,0],[2,2,3,2],[2,2,0,2],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[2,2,0,2],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[2,2,0,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[2,2,0,2],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,2,0,3],[1,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,2,0,2],[1,1,1,2]],[[0,3,2,0],[2,2,3,2],[2,2,0,2],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[2,2,0,2],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[2,2,0,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,3],[2,2,0,2],[1,1,2,0]],[[0,2,2,0],[2,2,3,2],[2,2,0,3],[1,1,2,0]],[[0,3,2,0],[2,2,3,2],[2,2,1,0],[0,2,2,1]],[[0,2,3,0],[2,2,3,2],[2,2,1,0],[0,2,2,1]],[[0,2,2,0],[2,2,4,2],[2,2,1,0],[0,2,2,1]],[[0,2,2,0],[2,2,3,3],[2,2,1,0],[0,2,2,1]],[[0,3,2,0],[2,2,3,2],[2,2,1,0],[1,1,2,1]],[[0,2,3,0],[2,2,3,2],[2,2,1,0],[1,1,2,1]],[[0,2,2,0],[2,2,4,2],[2,2,1,0],[1,1,2,1]],[[0,2,2,0],[2,2,3,3],[2,2,1,0],[1,1,2,1]],[[0,3,2,0],[2,2,3,2],[2,2,1,1],[0,2,2,0]],[[0,2,3,0],[2,2,3,2],[2,2,1,1],[0,2,2,0]],[[0,2,2,0],[2,2,4,2],[2,2,1,1],[0,2,2,0]],[[0,2,2,0],[2,2,3,3],[2,2,1,1],[0,2,2,0]],[[0,3,2,0],[2,2,3,2],[2,2,1,1],[1,1,2,0]],[[0,2,3,0],[2,2,3,2],[2,2,1,1],[1,1,2,0]],[[0,2,2,0],[2,2,4,2],[2,2,1,1],[1,1,2,0]],[[0,2,2,0],[2,2,3,3],[2,2,1,1],[1,1,2,0]],[[0,3,2,0],[2,2,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[2,2,1,2],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,2,1,3],[0,1,1,1]],[[0,2,2,0],[2,2,3,2],[2,2,1,2],[0,1,1,2]],[[0,3,2,0],[2,2,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[2,2,1,2],[0,1,2,0]],[[0,2,2,0],[2,2,3,2],[2,2,1,3],[0,1,2,0]],[[0,3,2,0],[2,2,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,3,0],[2,2,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,0],[2,2,4,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,3],[2,2,1,2],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[2,2,1,3],[0,2,0,1]],[[0,2,2,0],[2,2,3,2],[2,2,1,2],[0,2,0,2]],[[0,3,2,0],[2,2,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,3],[2,2,1,2],[0,2,1,0]],[[0,2,2,0],[2,2,3,2],[2,2,1,3],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,3,0],[2,2,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,0],[2,2,4,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,3],[2,2,1,2],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[2,2,1,3],[1,0,1,1]],[[0,2,2,0],[2,2,3,2],[2,2,1,2],[1,0,1,2]],[[0,3,2,0],[2,2,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,3],[2,2,1,2],[1,0,2,0]],[[0,2,2,0],[2,2,3,2],[2,2,1,3],[1,0,2,0]],[[0,3,2,0],[2,2,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,3,0],[2,2,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,0],[2,2,4,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,3],[2,2,1,2],[1,1,0,1]],[[0,2,2,0],[2,2,3,2],[2,2,1,3],[1,1,0,1]],[[0,2,2,0],[2,2,3,2],[2,2,1,2],[1,1,0,2]],[[0,3,2,0],[2,2,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,3,0],[2,2,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,0],[2,2,4,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,3],[2,2,1,2],[1,1,1,0]],[[0,2,2,0],[2,2,3,2],[2,2,1,3],[1,1,1,0]],[[0,3,2,0],[2,2,3,2],[2,2,1,2],[1,2,0,0]],[[0,2,3,0],[2,2,3,2],[2,2,1,2],[1,2,0,0]],[[0,2,2,0],[2,2,4,2],[2,2,1,2],[1,2,0,0]],[[0,2,2,0],[2,2,3,3],[2,2,1,2],[1,2,0,0]],[[1,2,2,1],[0,3,4,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,2],[0,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,2,3,1],[0,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,3,2,1],[0,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,1],[0,3,4,2],[0,2,3,0],[1,2,0,1]],[[1,2,2,2],[0,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,2,3,1],[0,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,3,2,1],[0,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,2,2,1],[0,3,4,2],[0,2,3,0],[1,1,2,0]],[[1,2,2,2],[0,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,2,3,1],[0,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,3,2,1],[0,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,2,2,1],[0,3,4,2],[0,2,3,0],[1,1,1,1]],[[1,2,2,2],[0,3,3,2],[0,2,3,0],[1,1,1,1]],[[1,2,3,1],[0,3,3,2],[0,2,3,0],[1,1,1,1]],[[1,3,2,1],[0,3,3,2],[0,2,3,0],[1,1,1,1]],[[1,2,2,1],[0,3,4,2],[0,2,3,0],[1,0,2,1]],[[0,3,2,0],[2,2,3,2],[2,2,2,0],[0,1,2,1]],[[0,2,3,0],[2,2,3,2],[2,2,2,0],[0,1,2,1]],[[0,2,2,0],[2,2,4,2],[2,2,2,0],[0,1,2,1]],[[0,2,2,0],[2,2,3,3],[2,2,2,0],[0,1,2,1]],[[0,3,2,0],[2,2,3,2],[2,2,2,0],[0,2,1,1]],[[0,2,3,0],[2,2,3,2],[2,2,2,0],[0,2,1,1]],[[0,2,2,0],[2,2,4,2],[2,2,2,0],[0,2,1,1]],[[0,2,2,0],[2,2,3,3],[2,2,2,0],[0,2,1,1]],[[0,3,2,0],[2,2,3,2],[2,2,2,0],[1,0,2,1]],[[0,2,3,0],[2,2,3,2],[2,2,2,0],[1,0,2,1]],[[0,2,2,0],[2,2,4,2],[2,2,2,0],[1,0,2,1]],[[0,2,2,0],[2,2,3,3],[2,2,2,0],[1,0,2,1]],[[0,3,2,0],[2,2,3,2],[2,2,2,0],[1,1,1,1]],[[0,2,3,0],[2,2,3,2],[2,2,2,0],[1,1,1,1]],[[0,2,2,0],[2,2,4,2],[2,2,2,0],[1,1,1,1]],[[0,2,2,0],[2,2,3,3],[2,2,2,0],[1,1,1,1]],[[0,3,2,0],[2,2,3,2],[2,2,2,0],[1,2,0,1]],[[0,2,3,0],[2,2,3,2],[2,2,2,0],[1,2,0,1]],[[0,2,2,0],[2,2,4,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,2],[0,3,3,2],[0,2,3,0],[1,0,2,1]],[[1,2,3,1],[0,3,3,2],[0,2,3,0],[1,0,2,1]],[[1,3,2,1],[0,3,3,2],[0,2,3,0],[1,0,2,1]],[[0,3,2,0],[2,2,3,2],[2,2,2,1],[0,1,1,1]],[[0,2,3,0],[2,2,3,2],[2,2,2,1],[0,1,1,1]],[[0,2,2,0],[2,2,4,2],[2,2,2,1],[0,1,1,1]],[[0,2,2,0],[2,2,3,3],[2,2,2,1],[0,1,1,1]],[[0,3,2,0],[2,2,3,2],[2,2,2,1],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[2,2,2,1],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[2,2,2,1],[0,1,2,0]],[[0,2,2,0],[2,2,3,3],[2,2,2,1],[0,1,2,0]],[[0,3,2,0],[2,2,3,2],[2,2,2,1],[0,2,0,1]],[[0,2,3,0],[2,2,3,2],[2,2,2,1],[0,2,0,1]],[[0,2,2,0],[2,2,4,2],[2,2,2,1],[0,2,0,1]],[[0,2,2,0],[2,2,3,3],[2,2,2,1],[0,2,0,1]],[[0,3,2,0],[2,2,3,2],[2,2,2,1],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[2,2,2,1],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[2,2,2,1],[0,2,1,0]],[[0,2,2,0],[2,2,3,3],[2,2,2,1],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[2,2,2,1],[1,0,1,1]],[[0,2,3,0],[2,2,3,2],[2,2,2,1],[1,0,1,1]],[[0,2,2,0],[2,2,4,2],[2,2,2,1],[1,0,1,1]],[[0,2,2,0],[2,2,3,3],[2,2,2,1],[1,0,1,1]],[[0,3,2,0],[2,2,3,2],[2,2,2,1],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[2,2,2,1],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[2,2,2,1],[1,0,2,0]],[[0,2,2,0],[2,2,3,3],[2,2,2,1],[1,0,2,0]],[[0,3,2,0],[2,2,3,2],[2,2,2,1],[1,1,0,1]],[[0,2,3,0],[2,2,3,2],[2,2,2,1],[1,1,0,1]],[[0,2,2,0],[2,2,4,2],[2,2,2,1],[1,1,0,1]],[[0,2,2,0],[2,2,3,3],[2,2,2,1],[1,1,0,1]],[[0,3,2,0],[2,2,3,2],[2,2,2,1],[1,1,1,0]],[[0,2,3,0],[2,2,3,2],[2,2,2,1],[1,1,1,0]],[[0,2,2,0],[2,2,4,2],[2,2,2,1],[1,1,1,0]],[[0,2,2,0],[2,2,3,3],[2,2,2,1],[1,1,1,0]],[[0,3,2,0],[2,2,3,2],[2,2,2,1],[1,2,0,0]],[[0,2,3,0],[2,2,3,2],[2,2,2,1],[1,2,0,0]],[[0,2,2,0],[2,2,4,2],[2,2,2,1],[1,2,0,0]],[[0,2,2,0],[2,2,3,3],[2,2,2,1],[1,2,0,0]],[[1,2,2,1],[0,3,3,3],[0,2,2,2],[1,1,0,1]],[[1,2,2,2],[0,3,3,2],[0,2,2,2],[1,1,0,1]],[[1,2,3,1],[0,3,3,2],[0,2,2,2],[1,1,0,1]],[[1,3,2,1],[0,3,3,2],[0,2,2,2],[1,1,0,1]],[[1,2,2,1],[0,3,3,3],[0,2,1,2],[1,2,1,0]],[[1,2,2,2],[0,3,3,2],[0,2,1,2],[1,2,1,0]],[[1,2,3,1],[0,3,3,2],[0,2,1,2],[1,2,1,0]],[[1,3,2,1],[0,3,3,2],[0,2,1,2],[1,2,1,0]],[[1,2,2,1],[0,3,3,3],[0,2,1,2],[1,2,0,1]],[[1,2,2,2],[0,3,3,2],[0,2,1,2],[1,2,0,1]],[[1,2,3,1],[0,3,3,2],[0,2,1,2],[1,2,0,1]],[[1,3,2,1],[0,3,3,2],[0,2,1,2],[1,2,0,1]],[[1,2,2,1],[0,3,3,3],[0,2,1,2],[1,1,2,0]],[[1,2,2,2],[0,3,3,2],[0,2,1,2],[1,1,2,0]],[[1,2,3,1],[0,3,3,2],[0,2,1,2],[1,1,2,0]],[[1,3,2,1],[0,3,3,2],[0,2,1,2],[1,1,2,0]],[[1,2,2,1],[0,3,3,3],[0,2,1,2],[1,1,1,1]],[[1,2,2,2],[0,3,3,2],[0,2,1,2],[1,1,1,1]],[[1,2,3,1],[0,3,3,2],[0,2,1,2],[1,1,1,1]],[[1,3,2,1],[0,3,3,2],[0,2,1,2],[1,1,1,1]],[[1,2,2,1],[0,3,3,3],[0,2,1,2],[1,0,2,1]],[[1,2,2,2],[0,3,3,2],[0,2,1,2],[1,0,2,1]],[[1,2,3,1],[0,3,3,2],[0,2,1,2],[1,0,2,1]],[[1,3,2,1],[0,3,3,2],[0,2,1,2],[1,0,2,1]],[[1,2,2,1],[0,3,3,3],[0,2,0,2],[1,1,2,1]],[[1,2,2,2],[0,3,3,2],[0,2,0,2],[1,1,2,1]],[[1,2,3,1],[0,3,3,2],[0,2,0,2],[1,1,2,1]],[[1,3,2,1],[0,3,3,2],[0,2,0,2],[1,1,2,1]],[[1,2,2,1],[0,3,3,3],[0,1,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,2],[0,1,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,2],[0,1,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,3,2],[0,1,3,3],[0,1,1,1]],[[1,2,2,1],[0,3,3,3],[0,1,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,2],[0,1,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,2],[0,1,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,3,2],[0,1,3,2],[0,0,2,2]],[[1,2,2,1],[0,3,3,2],[0,1,3,3],[0,0,2,1]],[[1,2,2,1],[0,3,3,3],[0,1,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,3,2],[0,1,3,2],[0,0,2,1]],[[1,2,3,1],[0,3,3,2],[0,1,3,2],[0,0,2,1]],[[0,3,2,0],[2,2,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,3,0],[2,2,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,2,0],[2,2,4,2],[2,2,3,0],[0,1,2,0]],[[0,3,2,0],[2,2,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,3,0],[2,2,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,2,0],[2,2,4,2],[2,2,3,0],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,3,0],[2,2,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,2,0],[2,2,4,2],[2,2,3,0],[1,0,2,0]],[[0,3,2,0],[2,2,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,3,0],[2,2,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,2,0],[2,2,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[0,3,4,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,2],[0,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,2,3,1],[0,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,3,2,1],[0,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,1],[0,3,4,2],[0,1,3,0],[1,2,1,1]],[[0,3,2,0],[2,2,3,2],[2,2,3,0],[1,2,0,0]],[[0,2,3,0],[2,2,3,2],[2,2,3,0],[1,2,0,0]],[[0,2,2,0],[2,2,4,2],[2,2,3,0],[1,2,0,0]],[[1,2,2,2],[0,3,3,2],[0,1,3,0],[1,2,1,1]],[[1,2,3,1],[0,3,3,2],[0,1,3,0],[1,2,1,1]],[[1,3,2,1],[0,3,3,2],[0,1,3,0],[1,2,1,1]],[[1,2,2,1],[0,3,3,3],[0,1,1,2],[1,2,2,0]],[[1,2,2,2],[0,3,3,2],[0,1,1,2],[1,2,2,0]],[[1,2,3,1],[0,3,3,2],[0,1,1,2],[1,2,2,0]],[[1,3,2,1],[0,3,3,2],[0,1,1,2],[1,2,2,0]],[[1,2,2,1],[0,3,3,3],[0,1,1,2],[1,2,1,1]],[[1,2,2,2],[0,3,3,2],[0,1,1,2],[1,2,1,1]],[[1,2,3,1],[0,3,3,2],[0,1,1,2],[1,2,1,1]],[[1,3,2,1],[0,3,3,2],[0,1,1,2],[1,2,1,1]],[[1,2,2,1],[0,3,3,3],[0,1,0,2],[1,2,2,1]],[[0,3,2,0],[2,2,3,2],[2,2,3,1],[0,2,0,0]],[[0,2,3,0],[2,2,3,2],[2,2,3,1],[0,2,0,0]],[[0,2,2,0],[2,2,4,2],[2,2,3,1],[0,2,0,0]],[[0,2,2,0],[2,2,3,3],[2,2,3,1],[0,2,0,0]],[[1,2,2,2],[0,3,3,2],[0,1,0,2],[1,2,2,1]],[[1,2,3,1],[0,3,3,2],[0,1,0,2],[1,2,2,1]],[[1,3,2,1],[0,3,3,2],[0,1,0,2],[1,2,2,1]],[[1,2,2,1],[0,3,3,3],[0,0,3,2],[1,1,2,0]],[[1,2,2,2],[0,3,3,2],[0,0,3,2],[1,1,2,0]],[[1,2,3,1],[0,3,3,2],[0,0,3,2],[1,1,2,0]],[[1,2,2,1],[0,3,3,2],[0,0,3,3],[1,1,1,1]],[[0,3,2,0],[2,2,3,2],[2,2,3,1],[1,1,0,0]],[[0,2,3,0],[2,2,3,2],[2,2,3,1],[1,1,0,0]],[[0,2,2,0],[2,2,4,2],[2,2,3,1],[1,1,0,0]],[[0,2,2,0],[2,2,3,3],[2,2,3,1],[1,1,0,0]],[[1,2,2,1],[0,3,3,3],[0,0,3,2],[1,1,1,1]],[[1,2,2,2],[0,3,3,2],[0,0,3,2],[1,1,1,1]],[[1,2,3,1],[0,3,3,2],[0,0,3,2],[1,1,1,1]],[[1,2,2,1],[0,3,3,2],[0,0,3,2],[1,0,2,2]],[[1,2,2,1],[0,3,3,2],[0,0,3,3],[1,0,2,1]],[[1,2,2,1],[0,3,3,3],[0,0,3,2],[1,0,2,1]],[[1,2,2,2],[0,3,3,2],[0,0,3,2],[1,0,2,1]],[[1,2,3,1],[0,3,3,2],[0,0,3,2],[1,0,2,1]],[[1,2,2,1],[0,4,3,1],[2,3,2,1],[1,1,0,0]],[[1,2,2,2],[0,3,3,1],[2,3,2,1],[1,1,0,0]],[[1,2,3,1],[0,3,3,1],[2,3,2,1],[1,1,0,0]],[[1,3,2,1],[0,3,3,1],[2,3,2,1],[1,1,0,0]],[[2,2,2,1],[0,3,3,1],[2,3,2,1],[1,1,0,0]],[[1,2,2,1],[0,4,3,1],[2,3,2,1],[0,2,0,0]],[[1,2,2,2],[0,3,3,1],[2,3,2,1],[0,2,0,0]],[[1,2,3,1],[0,3,3,1],[2,3,2,1],[0,2,0,0]],[[1,3,2,1],[0,3,3,1],[2,3,2,1],[0,2,0,0]],[[2,2,2,1],[0,3,3,1],[2,3,2,1],[0,2,0,0]],[[1,2,2,1],[0,4,3,1],[2,3,1,1],[1,2,0,0]],[[1,2,2,2],[0,3,3,1],[2,3,1,1],[1,2,0,0]],[[1,2,3,1],[0,3,3,1],[2,3,1,1],[1,2,0,0]],[[1,3,2,1],[0,3,3,1],[2,3,1,1],[1,2,0,0]],[[2,2,2,1],[0,3,3,1],[2,3,1,1],[1,2,0,0]],[[1,2,2,1],[0,4,3,1],[2,3,1,1],[1,1,1,0]],[[1,2,2,2],[0,3,3,1],[2,3,1,1],[1,1,1,0]],[[1,2,3,1],[0,3,3,1],[2,3,1,1],[1,1,1,0]],[[1,3,2,1],[0,3,3,1],[2,3,1,1],[1,1,1,0]],[[2,2,2,1],[0,3,3,1],[2,3,1,1],[1,1,1,0]],[[1,2,2,1],[0,4,3,1],[2,3,1,1],[1,1,0,1]],[[1,2,2,2],[0,3,3,1],[2,3,1,1],[1,1,0,1]],[[1,2,3,1],[0,3,3,1],[2,3,1,1],[1,1,0,1]],[[1,3,2,1],[0,3,3,1],[2,3,1,1],[1,1,0,1]],[[2,2,2,1],[0,3,3,1],[2,3,1,1],[1,1,0,1]],[[1,2,2,1],[0,4,3,1],[2,3,1,1],[1,0,2,0]],[[1,2,2,2],[0,3,3,1],[2,3,1,1],[1,0,2,0]],[[1,2,3,1],[0,3,3,1],[2,3,1,1],[1,0,2,0]],[[1,3,2,1],[0,3,3,1],[2,3,1,1],[1,0,2,0]],[[2,2,2,1],[0,3,3,1],[2,3,1,1],[1,0,2,0]],[[1,2,2,1],[0,4,3,1],[2,3,1,1],[1,0,1,1]],[[1,2,2,2],[0,3,3,1],[2,3,1,1],[1,0,1,1]],[[1,2,3,1],[0,3,3,1],[2,3,1,1],[1,0,1,1]],[[1,3,2,1],[0,3,3,1],[2,3,1,1],[1,0,1,1]],[[2,2,2,1],[0,3,3,1],[2,3,1,1],[1,0,1,1]],[[0,3,2,0],[2,2,3,2],[2,3,1,2],[1,0,0,1]],[[0,2,3,0],[2,2,3,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,0],[2,2,4,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,0],[2,2,3,3],[2,3,1,2],[1,0,0,1]],[[0,2,2,0],[2,2,3,2],[2,3,1,3],[1,0,0,1]],[[0,3,2,0],[2,2,3,2],[2,3,1,2],[1,0,1,0]],[[0,2,3,0],[2,2,3,2],[2,3,1,2],[1,0,1,0]],[[0,2,2,0],[2,2,4,2],[2,3,1,2],[1,0,1,0]],[[0,2,2,0],[2,2,3,3],[2,3,1,2],[1,0,1,0]],[[1,2,2,1],[0,4,3,1],[2,3,1,1],[0,2,1,0]],[[1,2,2,2],[0,3,3,1],[2,3,1,1],[0,2,1,0]],[[1,2,3,1],[0,3,3,1],[2,3,1,1],[0,2,1,0]],[[1,3,2,1],[0,3,3,1],[2,3,1,1],[0,2,1,0]],[[2,2,2,1],[0,3,3,1],[2,3,1,1],[0,2,1,0]],[[1,2,2,1],[0,4,3,1],[2,3,1,1],[0,2,0,1]],[[1,2,2,2],[0,3,3,1],[2,3,1,1],[0,2,0,1]],[[1,2,3,1],[0,3,3,1],[2,3,1,1],[0,2,0,1]],[[1,3,2,1],[0,3,3,1],[2,3,1,1],[0,2,0,1]],[[2,2,2,1],[0,3,3,1],[2,3,1,1],[0,2,0,1]],[[1,2,2,1],[0,4,3,1],[2,3,1,1],[0,1,2,0]],[[1,2,2,2],[0,3,3,1],[2,3,1,1],[0,1,2,0]],[[1,2,3,1],[0,3,3,1],[2,3,1,1],[0,1,2,0]],[[1,3,2,1],[0,3,3,1],[2,3,1,1],[0,1,2,0]],[[2,2,2,1],[0,3,3,1],[2,3,1,1],[0,1,2,0]],[[1,2,2,1],[0,4,3,1],[2,3,1,1],[0,1,1,1]],[[1,2,2,2],[0,3,3,1],[2,3,1,1],[0,1,1,1]],[[1,2,3,1],[0,3,3,1],[2,3,1,1],[0,1,1,1]],[[1,3,2,1],[0,3,3,1],[2,3,1,1],[0,1,1,1]],[[2,2,2,1],[0,3,3,1],[2,3,1,1],[0,1,1,1]],[[1,2,2,1],[0,4,3,1],[2,3,1,0],[1,2,0,1]],[[1,2,2,2],[0,3,3,1],[2,3,1,0],[1,2,0,1]],[[1,2,3,1],[0,3,3,1],[2,3,1,0],[1,2,0,1]],[[1,3,2,1],[0,3,3,1],[2,3,1,0],[1,2,0,1]],[[2,2,2,1],[0,3,3,1],[2,3,1,0],[1,2,0,1]],[[1,2,2,1],[0,4,3,1],[2,3,1,0],[1,1,1,1]],[[1,2,2,2],[0,3,3,1],[2,3,1,0],[1,1,1,1]],[[1,2,3,1],[0,3,3,1],[2,3,1,0],[1,1,1,1]],[[1,3,2,1],[0,3,3,1],[2,3,1,0],[1,1,1,1]],[[2,2,2,1],[0,3,3,1],[2,3,1,0],[1,1,1,1]],[[1,2,2,1],[0,4,3,1],[2,3,1,0],[1,0,2,1]],[[1,2,2,2],[0,3,3,1],[2,3,1,0],[1,0,2,1]],[[1,2,3,1],[0,3,3,1],[2,3,1,0],[1,0,2,1]],[[1,3,2,1],[0,3,3,1],[2,3,1,0],[1,0,2,1]],[[2,2,2,1],[0,3,3,1],[2,3,1,0],[1,0,2,1]],[[1,2,2,1],[0,4,3,1],[2,3,1,0],[0,2,1,1]],[[1,2,2,2],[0,3,3,1],[2,3,1,0],[0,2,1,1]],[[1,2,3,1],[0,3,3,1],[2,3,1,0],[0,2,1,1]],[[1,3,2,1],[0,3,3,1],[2,3,1,0],[0,2,1,1]],[[2,2,2,1],[0,3,3,1],[2,3,1,0],[0,2,1,1]],[[1,2,2,1],[0,4,3,1],[2,3,1,0],[0,1,2,1]],[[1,2,2,2],[0,3,3,1],[2,3,1,0],[0,1,2,1]],[[1,2,3,1],[0,3,3,1],[2,3,1,0],[0,1,2,1]],[[1,3,2,1],[0,3,3,1],[2,3,1,0],[0,1,2,1]],[[2,2,2,1],[0,3,3,1],[2,3,1,0],[0,1,2,1]],[[1,2,2,1],[0,4,3,1],[2,3,0,2],[1,2,0,0]],[[1,2,2,2],[0,3,3,1],[2,3,0,2],[1,2,0,0]],[[1,2,3,1],[0,3,3,1],[2,3,0,2],[1,2,0,0]],[[1,3,2,1],[0,3,3,1],[2,3,0,2],[1,2,0,0]],[[2,2,2,1],[0,3,3,1],[2,3,0,2],[1,2,0,0]],[[0,3,2,0],[2,2,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,3,0],[2,2,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,0],[2,2,4,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[0,4,3,1],[2,3,0,2],[1,1,1,0]],[[1,2,2,2],[0,3,3,1],[2,3,0,2],[1,1,1,0]],[[1,2,3,1],[0,3,3,1],[2,3,0,2],[1,1,1,0]],[[1,3,2,1],[0,3,3,1],[2,3,0,2],[1,1,1,0]],[[2,2,2,1],[0,3,3,1],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[0,4,3,1],[2,3,0,2],[1,1,0,1]],[[1,2,2,2],[0,3,3,1],[2,3,0,2],[1,1,0,1]],[[1,2,3,1],[0,3,3,1],[2,3,0,2],[1,1,0,1]],[[1,3,2,1],[0,3,3,1],[2,3,0,2],[1,1,0,1]],[[2,2,2,1],[0,3,3,1],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[0,4,3,1],[2,3,0,2],[1,0,2,0]],[[1,2,2,2],[0,3,3,1],[2,3,0,2],[1,0,2,0]],[[1,2,3,1],[0,3,3,1],[2,3,0,2],[1,0,2,0]],[[1,3,2,1],[0,3,3,1],[2,3,0,2],[1,0,2,0]],[[2,2,2,1],[0,3,3,1],[2,3,0,2],[1,0,2,0]],[[1,2,2,1],[0,4,3,1],[2,3,0,2],[1,0,1,1]],[[1,2,2,2],[0,3,3,1],[2,3,0,2],[1,0,1,1]],[[1,2,3,1],[0,3,3,1],[2,3,0,2],[1,0,1,1]],[[1,3,2,1],[0,3,3,1],[2,3,0,2],[1,0,1,1]],[[2,2,2,1],[0,3,3,1],[2,3,0,2],[1,0,1,1]],[[1,2,2,1],[0,4,3,1],[2,3,0,2],[0,2,1,0]],[[1,2,2,2],[0,3,3,1],[2,3,0,2],[0,2,1,0]],[[1,2,3,1],[0,3,3,1],[2,3,0,2],[0,2,1,0]],[[1,3,2,1],[0,3,3,1],[2,3,0,2],[0,2,1,0]],[[0,3,2,0],[2,2,3,2],[2,3,2,1],[1,0,0,1]],[[0,2,3,0],[2,2,3,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,0],[2,2,4,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,0],[2,2,3,3],[2,3,2,1],[1,0,0,1]],[[0,3,2,0],[2,2,3,2],[2,3,2,1],[1,0,1,0]],[[0,2,3,0],[2,2,3,2],[2,3,2,1],[1,0,1,0]],[[0,2,2,0],[2,2,4,2],[2,3,2,1],[1,0,1,0]],[[0,2,2,0],[2,2,3,3],[2,3,2,1],[1,0,1,0]],[[2,2,2,1],[0,3,3,1],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[0,4,3,1],[2,3,0,2],[0,2,0,1]],[[1,2,2,2],[0,3,3,1],[2,3,0,2],[0,2,0,1]],[[1,2,3,1],[0,3,3,1],[2,3,0,2],[0,2,0,1]],[[1,3,2,1],[0,3,3,1],[2,3,0,2],[0,2,0,1]],[[2,2,2,1],[0,3,3,1],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[0,4,3,1],[2,3,0,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,1],[2,3,0,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,1],[2,3,0,2],[0,1,2,0]],[[1,3,2,1],[0,3,3,1],[2,3,0,2],[0,1,2,0]],[[2,2,2,1],[0,3,3,1],[2,3,0,2],[0,1,2,0]],[[1,2,2,1],[0,4,3,1],[2,3,0,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,1],[2,3,0,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,1],[2,3,0,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,1],[2,3,0,2],[0,1,1,1]],[[2,2,2,1],[0,3,3,1],[2,3,0,2],[0,1,1,1]],[[1,2,2,1],[0,4,3,1],[2,3,0,1],[1,1,2,0]],[[1,2,2,2],[0,3,3,1],[2,3,0,1],[1,1,2,0]],[[1,2,3,1],[0,3,3,1],[2,3,0,1],[1,1,2,0]],[[1,3,2,1],[0,3,3,1],[2,3,0,1],[1,1,2,0]],[[2,2,2,1],[0,3,3,1],[2,3,0,1],[1,1,2,0]],[[1,2,2,1],[0,4,3,1],[2,3,0,1],[0,2,2,0]],[[1,2,2,2],[0,3,3,1],[2,3,0,1],[0,2,2,0]],[[1,2,3,1],[0,3,3,1],[2,3,0,1],[0,2,2,0]],[[1,3,2,1],[0,3,3,1],[2,3,0,1],[0,2,2,0]],[[2,2,2,1],[0,3,3,1],[2,3,0,1],[0,2,2,0]],[[1,2,2,1],[0,4,3,1],[2,3,0,0],[1,1,2,1]],[[1,2,2,2],[0,3,3,1],[2,3,0,0],[1,1,2,1]],[[1,2,3,1],[0,3,3,1],[2,3,0,0],[1,1,2,1]],[[1,3,2,1],[0,3,3,1],[2,3,0,0],[1,1,2,1]],[[2,2,2,1],[0,3,3,1],[2,3,0,0],[1,1,2,1]],[[1,2,2,1],[0,4,3,1],[2,3,0,0],[0,2,2,1]],[[1,2,2,2],[0,3,3,1],[2,3,0,0],[0,2,2,1]],[[1,2,3,1],[0,3,3,1],[2,3,0,0],[0,2,2,1]],[[1,3,2,1],[0,3,3,1],[2,3,0,0],[0,2,2,1]],[[2,2,2,1],[0,3,3,1],[2,3,0,0],[0,2,2,1]],[[0,3,2,0],[2,2,3,2],[2,3,3,0],[1,0,1,0]],[[0,2,3,0],[2,2,3,2],[2,3,3,0],[1,0,1,0]],[[0,2,2,0],[2,2,4,2],[2,3,3,0],[1,0,1,0]],[[1,2,2,1],[0,3,4,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[0,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[0,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,3,2,1],[0,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[0,3,4,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,2],[0,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[0,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[0,3,3,1],[1,3,3,1],[1,1,0,0]],[[0,3,2,0],[2,2,3,2],[2,3,3,1],[1,0,0,0]],[[0,2,3,0],[2,2,3,2],[2,3,3,1],[1,0,0,0]],[[0,2,2,0],[2,2,4,2],[2,3,3,1],[1,0,0,0]],[[0,2,2,0],[2,2,3,3],[2,3,3,1],[1,0,0,0]],[[1,2,2,1],[0,3,4,1],[1,3,3,1],[0,2,0,0]],[[1,2,2,2],[0,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[0,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,3,2,1],[0,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,3,3,1],[1,3,4,1],[0,0,2,0]],[[1,2,2,1],[0,3,4,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[0,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[0,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[0,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[0,3,3,1],[1,3,4,1],[0,0,1,1]],[[1,2,2,1],[0,3,4,1],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[0,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[0,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,3,2,1],[0,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[0,3,4,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,2],[0,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,2,3,1],[0,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,3,2,1],[0,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,2,2,1],[0,3,4,1],[1,3,3,0],[1,0,2,0]],[[1,2,2,2],[0,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,2,3,1],[0,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,3,2,1],[0,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,2,2,1],[0,3,4,1],[1,3,3,0],[0,2,1,0]],[[1,2,2,2],[0,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,2,3,1],[0,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,3,2,1],[0,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,2,2,1],[0,3,4,1],[1,3,3,0],[0,1,2,0]],[[1,2,2,2],[0,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,2,3,1],[0,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,3,2,1],[0,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,2,2,1],[0,3,3,1],[1,3,4,0],[0,0,2,1]],[[1,2,2,1],[0,3,4,1],[1,3,3,0],[0,0,2,1]],[[1,2,2,2],[0,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[0,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,3,2,1],[0,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,2,2,1],[0,3,4,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[0,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[0,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,3,2,1],[0,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[0,3,4,1],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[0,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[0,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,3,2,1],[0,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[0,3,4,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,2],[0,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[0,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[0,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,3,4,1],[1,3,2,1],[1,1,0,1]],[[1,2,2,2],[0,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,2,3,1],[0,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[0,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,2,2,1],[0,3,4,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,2],[0,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,2,3,1],[0,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[0,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[0,3,4,1],[1,3,2,1],[1,0,1,1]],[[1,2,2,2],[0,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,2,3,1],[0,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[0,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[0,3,4,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,2],[0,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[0,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[0,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,3,4,1],[1,3,2,1],[0,2,0,1]],[[1,2,2,2],[0,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,2,3,1],[0,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[0,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[0,3,4,1],[1,3,2,1],[0,1,2,0]],[[1,2,2,2],[0,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,2,3,1],[0,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[0,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[0,3,4,1],[1,3,2,1],[0,1,1,1]],[[1,2,2,2],[0,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[0,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[0,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[0,3,4,1],[1,3,2,0],[1,1,1,1]],[[1,2,2,2],[0,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,2,3,1],[0,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[0,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[0,3,4,1],[1,3,2,0],[1,0,2,1]],[[1,2,2,2],[0,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,2,3,1],[0,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[0,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[0,3,4,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,2],[0,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[0,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[0,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[0,3,4,1],[1,3,2,0],[0,1,2,1]],[[1,2,2,2],[0,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[0,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[0,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,2,2,1],[0,3,4,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,2],[0,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,2,3,1],[0,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[0,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[0,3,4,1],[1,3,1,2],[1,1,0,1]],[[1,2,2,2],[0,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,2,3,1],[0,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,3,2,1],[0,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[0,3,4,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,2],[0,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,2,3,1],[0,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,3,2,1],[0,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[0,3,4,1],[1,3,1,2],[1,0,1,1]],[[1,2,2,2],[0,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,2,3,1],[0,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[0,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,2,2,1],[0,3,4,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,2],[0,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,2,3,1],[0,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[0,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[0,3,4,1],[1,3,1,2],[0,2,0,1]],[[1,2,2,2],[0,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,2,3,1],[0,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[0,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[0,3,4,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[0,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[0,3,4,1],[1,3,1,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[0,4,3,1],[1,3,1,1],[1,2,1,0]],[[1,2,2,2],[0,3,3,1],[1,3,1,1],[1,2,1,0]],[[1,2,3,1],[0,3,3,1],[1,3,1,1],[1,2,1,0]],[[1,3,2,1],[0,3,3,1],[1,3,1,1],[1,2,1,0]],[[2,2,2,1],[0,3,3,1],[1,3,1,1],[1,2,1,0]],[[1,2,2,1],[0,4,3,1],[1,3,1,1],[1,2,0,1]],[[1,2,2,2],[0,3,3,1],[1,3,1,1],[1,2,0,1]],[[1,2,3,1],[0,3,3,1],[1,3,1,1],[1,2,0,1]],[[1,3,2,1],[0,3,3,1],[1,3,1,1],[1,2,0,1]],[[2,2,2,1],[0,3,3,1],[1,3,1,1],[1,2,0,1]],[[1,2,2,1],[0,3,4,1],[1,3,1,1],[0,2,2,0]],[[1,2,2,2],[0,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[0,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[0,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[0,4,3,1],[1,3,1,0],[1,2,1,1]],[[1,2,2,2],[0,3,3,1],[1,3,1,0],[1,2,1,1]],[[1,2,3,1],[0,3,3,1],[1,3,1,0],[1,2,1,1]],[[1,3,2,1],[0,3,3,1],[1,3,1,0],[1,2,1,1]],[[2,2,2,1],[0,3,3,1],[1,3,1,0],[1,2,1,1]],[[1,2,2,1],[0,3,4,1],[1,3,1,0],[0,2,2,1]],[[1,2,2,2],[0,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[0,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[0,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[0,4,3,1],[1,3,0,2],[1,2,1,0]],[[1,2,2,2],[0,3,3,1],[1,3,0,2],[1,2,1,0]],[[1,2,3,1],[0,3,3,1],[1,3,0,2],[1,2,1,0]],[[1,3,2,1],[0,3,3,1],[1,3,0,2],[1,2,1,0]],[[2,2,2,1],[0,3,3,1],[1,3,0,2],[1,2,1,0]],[[1,2,2,1],[0,4,3,1],[1,3,0,2],[1,2,0,1]],[[1,2,2,2],[0,3,3,1],[1,3,0,2],[1,2,0,1]],[[1,2,3,1],[0,3,3,1],[1,3,0,2],[1,2,0,1]],[[1,3,2,1],[0,3,3,1],[1,3,0,2],[1,2,0,1]],[[2,2,2,1],[0,3,3,1],[1,3,0,2],[1,2,0,1]],[[1,2,2,1],[0,3,4,1],[1,3,0,2],[1,0,2,1]],[[1,2,2,2],[0,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,2,3,1],[0,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[0,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[0,3,4,1],[1,3,0,2],[0,2,2,0]],[[0,2,2,0],[2,3,0,0],[0,4,3,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,0],[0,3,3,2],[2,2,2,1]],[[0,2,2,0],[2,3,0,0],[0,3,3,2],[1,3,2,1]],[[0,2,2,0],[2,3,0,0],[0,3,3,2],[1,2,3,1]],[[0,2,2,0],[2,3,0,0],[0,3,3,2],[1,2,2,2]],[[0,2,2,0],[2,3,0,0],[1,4,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,0],[1,3,2,2],[2,2,2,1]],[[0,2,2,0],[2,3,0,0],[1,3,2,2],[1,3,2,1]],[[0,2,2,0],[2,3,0,0],[1,3,2,2],[1,2,3,1]],[[0,2,2,0],[2,3,0,0],[1,3,2,2],[1,2,2,2]],[[0,2,2,0],[2,3,0,0],[1,4,3,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,0],[1,3,3,2],[0,3,2,1]],[[0,2,2,0],[2,3,0,0],[1,3,3,2],[0,2,3,1]],[[0,2,2,0],[2,3,0,0],[1,3,3,2],[0,2,2,2]],[[0,2,2,0],[2,3,0,0],[1,4,3,2],[1,2,1,1]],[[0,2,2,0],[2,3,0,0],[1,3,3,2],[2,2,1,1]],[[0,2,2,0],[2,3,0,0],[1,3,3,2],[1,3,1,1]],[[0,2,2,0],[3,3,0,0],[2,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,0],[3,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,0],[2,2,2,2],[2,2,2,1]],[[0,2,2,0],[2,3,0,0],[2,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,3,0,0],[2,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,3,0,0],[2,2,2,2],[1,2,2,2]],[[0,2,2,0],[3,3,0,0],[2,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,3,0,0],[3,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,3,0,0],[2,2,3,2],[2,2,1,1]],[[0,2,2,0],[2,3,0,0],[2,2,3,2],[1,3,1,1]],[[0,2,2,0],[3,3,0,0],[2,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,0],[3,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,0],[2,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,3,0,0],[2,3,1,2],[1,3,2,1]],[[0,2,2,0],[3,3,0,0],[2,3,2,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,0],[3,3,2,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,0],[2,4,2,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,0],[2,3,2,2],[0,3,2,1]],[[0,2,2,0],[2,3,0,0],[2,3,2,2],[0,2,3,1]],[[0,2,2,0],[2,3,0,0],[2,3,2,2],[0,2,2,2]],[[0,2,2,0],[3,3,0,0],[2,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,3,0,0],[3,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,3,0,0],[2,4,2,2],[1,1,2,1]],[[0,2,2,0],[2,3,0,0],[2,3,2,2],[2,1,2,1]],[[0,2,2,0],[3,3,0,0],[2,3,3,2],[0,1,2,1]],[[0,2,2,0],[2,3,0,0],[3,3,3,2],[0,1,2,1]],[[0,2,2,0],[2,3,0,0],[2,4,3,2],[0,1,2,1]],[[0,2,2,0],[3,3,0,0],[2,3,3,2],[0,2,1,1]],[[0,2,2,0],[2,3,0,0],[3,3,3,2],[0,2,1,1]],[[0,2,2,0],[2,3,0,0],[2,4,3,2],[0,2,1,1]],[[0,2,2,0],[2,3,0,0],[2,3,3,2],[0,3,1,1]],[[0,2,2,0],[3,3,0,0],[2,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,0,0],[3,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,0,0],[2,4,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,0,0],[2,3,3,2],[2,0,2,1]],[[0,2,2,0],[3,3,0,0],[2,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,0,0],[3,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,0,0],[2,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,0,0],[2,3,3,2],[2,1,1,1]],[[0,2,2,0],[3,3,0,0],[2,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,0],[3,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,0],[2,4,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,2],[0,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,2,3,1],[0,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[0,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[0,3,4,1],[1,3,0,2],[0,2,1,1]],[[1,2,2,2],[0,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,2,3,1],[0,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[0,3,3,1],[1,3,0,2],[0,2,1,1]],[[0,2,2,0],[2,3,0,1],[0,4,3,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[0,3,3,1],[2,2,2,1]],[[0,2,2,0],[2,3,0,1],[0,3,3,1],[1,3,2,1]],[[0,2,2,0],[2,3,0,1],[0,3,3,1],[1,2,3,1]],[[0,2,2,0],[2,3,0,1],[0,3,3,1],[1,2,2,2]],[[0,2,2,0],[2,3,0,1],[0,4,3,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,1],[0,3,3,2],[2,2,2,0]],[[0,2,2,0],[2,3,0,1],[0,3,3,2],[1,3,2,0]],[[0,2,2,0],[2,3,0,1],[0,3,3,2],[1,2,3,0]],[[0,2,2,0],[2,3,0,1],[1,4,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[1,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,3,0,1],[1,3,1,2],[1,3,2,1]],[[0,2,2,0],[2,3,0,1],[1,3,1,2],[1,2,3,1]],[[0,2,2,0],[2,3,0,1],[1,3,1,2],[1,2,2,2]],[[0,2,2,0],[2,3,0,1],[1,4,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[1,3,2,1],[2,2,2,1]],[[0,2,2,0],[2,3,0,1],[1,3,2,1],[1,3,2,1]],[[0,2,2,0],[2,3,0,1],[1,3,2,1],[1,2,3,1]],[[0,2,2,0],[2,3,0,1],[1,3,2,1],[1,2,2,2]],[[0,2,2,0],[2,3,0,1],[1,4,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,1],[1,3,2,2],[2,2,2,0]],[[0,2,2,0],[2,3,0,1],[1,3,2,2],[1,3,2,0]],[[0,2,2,0],[2,3,0,1],[1,3,2,2],[1,2,3,0]],[[0,2,2,0],[2,3,0,1],[1,4,3,0],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[1,3,3,0],[2,2,2,1]],[[0,2,2,0],[2,3,0,1],[1,3,3,0],[1,3,2,1]],[[0,2,2,0],[2,3,0,1],[1,3,3,0],[1,2,3,1]],[[0,2,2,0],[2,3,0,1],[1,4,3,1],[0,2,2,1]],[[0,2,2,0],[2,3,0,1],[1,3,3,1],[0,3,2,1]],[[0,2,2,0],[2,3,0,1],[1,3,3,1],[0,2,3,1]],[[0,2,2,0],[2,3,0,1],[1,3,3,1],[0,2,2,2]],[[0,2,2,0],[2,3,0,1],[1,4,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,0,1],[1,3,3,1],[2,2,1,1]],[[0,2,2,0],[2,3,0,1],[1,3,3,1],[1,3,1,1]],[[0,2,2,0],[2,3,0,1],[1,4,3,2],[0,2,2,0]],[[0,2,2,0],[2,3,0,1],[1,3,3,2],[0,3,2,0]],[[0,2,2,0],[2,3,0,1],[1,3,3,2],[0,2,3,0]],[[0,2,2,0],[2,3,0,1],[1,4,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,1],[1,3,3,2],[2,2,0,1]],[[0,2,2,0],[2,3,0,1],[1,3,3,2],[1,3,0,1]],[[0,2,2,0],[2,3,0,1],[1,4,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,0,1],[1,3,3,2],[2,2,1,0]],[[0,2,2,0],[2,3,0,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,3,4,1],[1,3,0,2],[0,1,2,1]],[[1,2,2,2],[0,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,2,3,1],[0,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[0,3,3,1],[1,3,0,2],[0,1,2,1]],[[0,2,2,0],[3,3,0,1],[2,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[3,2,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,2,1,2],[2,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,2,1,2],[1,3,2,1]],[[0,2,2,0],[2,3,0,1],[2,2,1,2],[1,2,3,1]],[[0,2,2,0],[2,3,0,1],[2,2,1,2],[1,2,2,2]],[[0,2,2,0],[3,3,0,1],[2,2,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[3,2,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,2,2,1],[2,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,2,2,1],[1,3,2,1]],[[0,2,2,0],[2,3,0,1],[2,2,2,1],[1,2,3,1]],[[0,2,2,0],[2,3,0,1],[2,2,2,1],[1,2,2,2]],[[0,2,2,0],[3,3,0,1],[2,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,1],[3,2,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,1],[2,2,2,2],[2,2,2,0]],[[0,2,2,0],[2,3,0,1],[2,2,2,2],[1,3,2,0]],[[0,2,2,0],[2,3,0,1],[2,2,2,2],[1,2,3,0]],[[0,2,2,0],[3,3,0,1],[2,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[3,2,3,0],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,2,3,0],[2,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,2,3,0],[1,3,2,1]],[[0,2,2,0],[2,3,0,1],[2,2,3,0],[1,2,3,1]],[[0,2,2,0],[3,3,0,1],[2,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,0,1],[3,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,0,1],[2,2,3,1],[2,2,1,1]],[[0,2,2,0],[2,3,0,1],[2,2,3,1],[1,3,1,1]],[[0,2,2,0],[3,3,0,1],[2,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,1],[3,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,1],[2,2,3,2],[2,2,0,1]],[[0,2,2,0],[2,3,0,1],[2,2,3,2],[1,3,0,1]],[[0,2,2,0],[3,3,0,1],[2,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,0,1],[3,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,0,1],[2,2,3,2],[2,2,1,0]],[[0,2,2,0],[2,3,0,1],[2,2,3,2],[1,3,1,0]],[[0,2,2,0],[3,3,0,1],[2,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[3,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,0,2],[2,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,0,2],[1,3,2,1]],[[0,2,2,0],[3,3,0,1],[2,3,1,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[3,3,1,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,1,1],[2,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,1,1],[1,3,2,1]],[[0,2,2,0],[3,3,0,1],[2,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,1],[3,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,4,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,1,2],[0,3,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,1,2],[0,2,3,1]],[[0,2,2,0],[2,3,0,1],[2,3,1,2],[0,2,2,2]],[[0,2,2,0],[3,3,0,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,0,1],[3,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,0,1],[2,4,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,1,2],[2,1,2,1]],[[0,2,2,0],[3,3,0,1],[2,3,1,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,1],[3,3,1,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,1],[2,3,1,2],[2,2,2,0]],[[0,2,2,0],[2,3,0,1],[2,3,1,2],[1,3,2,0]],[[0,2,2,0],[3,3,0,1],[2,3,2,0],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[3,3,2,0],[1,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,2,0],[2,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,2,0],[1,3,2,1]],[[0,2,2,0],[3,3,0,1],[2,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,3,0,1],[3,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,4,2,1],[0,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,2,1],[0,3,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,2,1],[0,2,3,1]],[[0,2,2,0],[2,3,0,1],[2,3,2,1],[0,2,2,2]],[[0,2,2,0],[3,3,0,1],[2,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,0,1],[3,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,0,1],[2,4,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,2,1],[2,1,2,1]],[[0,2,2,0],[3,3,0,1],[2,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,0,1],[3,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,0,1],[2,4,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,0,1],[2,3,2,2],[0,3,2,0]],[[0,2,2,0],[2,3,0,1],[2,3,2,2],[0,2,3,0]],[[0,2,2,0],[3,3,0,1],[2,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,0,1],[3,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,0,1],[2,4,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,0,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[0,4,3,1],[1,3,0,1],[1,2,2,0]],[[1,2,2,2],[0,3,3,1],[1,3,0,1],[1,2,2,0]],[[1,2,3,1],[0,3,3,1],[1,3,0,1],[1,2,2,0]],[[0,2,2,0],[3,3,0,1],[2,3,3,0],[0,2,2,1]],[[0,2,2,0],[2,3,0,1],[3,3,3,0],[0,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,4,3,0],[0,2,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,3,0],[0,3,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,3,0],[0,2,3,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,0,1],[3,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,0,1],[2,4,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,3,0],[2,1,2,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,3,0,1],[3,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,3,0,1],[2,4,3,1],[0,1,2,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,0,1],[3,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,0,1],[2,4,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,0,1],[2,3,3,1],[0,3,1,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,0,1],[3,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,0,1],[2,4,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,0,1],[2,3,3,1],[2,0,2,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,0,1],[3,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,0,1],[2,4,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,0,1],[2,3,3,1],[2,1,1,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,0,1],[3,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,0,1],[2,4,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,0,1],[2,3,3,1],[2,2,0,1]],[[1,3,2,1],[0,3,3,1],[1,3,0,1],[1,2,2,0]],[[2,2,2,1],[0,3,3,1],[1,3,0,1],[1,2,2,0]],[[1,2,2,1],[0,3,4,1],[1,3,0,1],[0,2,2,1]],[[1,2,2,2],[0,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,2,3,1],[0,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,3,2,1],[0,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,2,2,1],[0,4,3,1],[1,3,0,0],[1,2,2,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,0,1],[3,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,0,1],[2,4,3,2],[0,1,1,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,0,1],[3,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,0,1],[2,4,3,2],[0,1,2,0]],[[0,2,2,0],[3,3,0,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,0,1],[3,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,0,1],[2,4,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,0,1],[2,3,3,2],[0,3,0,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,0,1],[3,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,0,1],[2,4,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,0,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,2],[0,3,3,1],[1,3,0,0],[1,2,2,1]],[[1,2,3,1],[0,3,3,1],[1,3,0,0],[1,2,2,1]],[[1,3,2,1],[0,3,3,1],[1,3,0,0],[1,2,2,1]],[[2,2,2,1],[0,3,3,1],[1,3,0,0],[1,2,2,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,0,1],[3,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,0,1],[2,4,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,0,1],[2,3,3,2],[2,0,1,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,0,1],[3,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,0,1],[2,4,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,0,1],[2,3,3,2],[2,0,2,0]],[[0,2,2,0],[3,3,0,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,0,1],[3,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,0,1],[2,4,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,0,1],[2,3,3,2],[2,1,0,1]],[[0,2,2,0],[3,3,0,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,0,1],[3,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,0,1],[2,4,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,0,1],[2,3,3,2],[2,1,1,0]],[[0,2,2,0],[3,3,0,1],[2,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,3,0,1],[3,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,3,0,1],[2,4,3,2],[1,2,0,0]],[[0,2,2,0],[2,3,0,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[0,3,4,1],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[0,3,3,1],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[0,3,3,1],[1,2,3,2],[1,0,0,1]],[[0,2,2,0],[2,3,0,3],[0,2,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,2,2,3],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,2,2,2],[2,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,3,0,2],[0,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,3,0,2],[0,2,2,2],[1,2,2,2]],[[0,2,2,0],[2,3,0,2],[0,2,4,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,2,3,1],[2,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,2,3,1],[1,3,2,1]],[[0,2,2,0],[2,3,0,2],[0,2,3,1],[1,2,3,1]],[[0,2,2,0],[2,3,0,2],[0,2,3,1],[1,2,2,2]],[[0,2,2,0],[2,3,0,3],[0,2,3,2],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[0,2,4,2],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[0,2,3,3],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[0,2,3,2],[1,2,1,2]],[[0,2,2,0],[2,3,0,3],[0,2,3,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[0,2,4,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[0,2,3,3],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[0,2,3,2],[2,2,2,0]],[[0,2,2,0],[2,3,0,2],[0,2,3,2],[1,3,2,0]],[[0,2,2,0],[2,3,0,2],[0,2,3,2],[1,2,3,0]],[[0,3,2,0],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,3,0],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,0],[3,3,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,4,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,3],[0,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,4,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,1,3],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,1,2],[1,3,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,1,2],[1,2,3,1]],[[0,2,2,0],[2,3,0,2],[0,3,1,2],[1,2,2,2]],[[0,3,2,0],[2,3,0,2],[0,3,2,1],[1,2,2,1]],[[0,2,3,0],[2,3,0,2],[0,3,2,1],[1,2,2,1]],[[0,2,2,0],[3,3,0,2],[0,3,2,1],[1,2,2,1]],[[0,2,2,0],[2,4,0,2],[0,3,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,4,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,2,1],[2,2,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,2,1],[1,3,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,2,1],[1,2,3,1]],[[0,2,2,0],[2,3,0,2],[0,3,2,1],[1,2,2,2]],[[0,2,2,0],[2,3,0,3],[0,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,2,3],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,2,2],[1,1,3,1]],[[0,2,2,0],[2,3,0,2],[0,3,2,2],[1,1,2,2]],[[0,3,2,0],[2,3,0,2],[0,3,2,2],[1,2,2,0]],[[0,2,3,0],[2,3,0,2],[0,3,2,2],[1,2,2,0]],[[0,2,2,0],[3,3,0,2],[0,3,2,2],[1,2,2,0]],[[0,2,2,0],[2,4,0,2],[0,3,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[0,4,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[0,3,2,2],[2,2,2,0]],[[0,2,2,0],[2,3,0,2],[0,3,2,2],[1,3,2,0]],[[0,2,2,0],[2,3,0,2],[0,3,2,2],[1,2,3,0]],[[0,3,2,0],[2,3,0,2],[0,3,3,1],[1,1,2,1]],[[0,2,3,0],[2,3,0,2],[0,3,3,1],[1,1,2,1]],[[0,2,2,0],[3,3,0,2],[0,3,3,1],[1,1,2,1]],[[0,2,2,0],[2,4,0,2],[0,3,3,1],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[0,4,3,1],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,4,1],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,1],[1,1,3,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,1],[1,1,2,2]],[[0,3,2,0],[2,3,0,2],[0,3,3,1],[1,2,1,1]],[[0,2,3,0],[2,3,0,2],[0,3,3,1],[1,2,1,1]],[[0,2,2,0],[3,3,0,2],[0,3,3,1],[1,2,1,1]],[[0,2,2,0],[2,4,0,2],[0,3,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[0,4,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[0,3,4,1],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,1],[2,2,1,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,1],[1,3,1,1]],[[0,2,2,0],[2,3,0,3],[0,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,4,2],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,3],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,2],[1,0,2,2]],[[0,3,2,0],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[0,2,3,0],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[0,2,2,0],[3,3,0,2],[0,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,4,0,2],[0,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,0,3],[0,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[0,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[0,3,4,2],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,3],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,2],[1,1,1,2]],[[0,3,2,0],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[0,2,3,0],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[0,2,2,0],[3,3,0,2],[0,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,4,0,2],[0,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,3,0,3],[0,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,3,0,2],[0,4,3,2],[1,1,2,0]],[[0,2,2,0],[2,3,0,2],[0,3,4,2],[1,1,2,0]],[[0,2,2,0],[2,3,0,2],[0,3,3,3],[1,1,2,0]],[[0,2,2,0],[2,3,0,2],[0,3,3,2],[1,1,3,0]],[[0,3,2,0],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,3,0],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,2,0],[3,3,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,4,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,3],[0,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,2],[0,4,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,2],[0,3,4,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,3],[1,2,0,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,2],[2,2,0,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,2],[1,3,0,1]],[[0,2,2,0],[2,3,0,2],[0,3,3,2],[1,2,0,2]],[[0,3,2,0],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[0,2,3,0],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[0,2,2,0],[3,3,0,2],[0,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,4,0,2],[0,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,0,3],[0,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,0,2],[0,4,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,0,2],[0,3,4,2],[1,2,1,0]],[[0,2,2,0],[2,3,0,2],[0,3,3,3],[1,2,1,0]],[[0,2,2,0],[2,3,0,2],[0,3,3,2],[2,2,1,0]],[[0,2,2,0],[2,3,0,2],[0,3,3,2],[1,3,1,0]],[[1,3,2,1],[0,3,3,1],[1,2,3,2],[1,0,0,1]],[[0,2,2,0],[2,3,0,3],[1,2,2,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[1,2,2,3],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[1,2,2,2],[0,3,2,1]],[[0,2,2,0],[2,3,0,2],[1,2,2,2],[0,2,3,1]],[[0,2,2,0],[2,3,0,2],[1,2,2,2],[0,2,2,2]],[[0,2,2,0],[2,3,0,2],[1,2,4,1],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[1,2,3,1],[0,3,2,1]],[[0,2,2,0],[2,3,0,2],[1,2,3,1],[0,2,3,1]],[[0,2,2,0],[2,3,0,2],[1,2,3,1],[0,2,2,2]],[[0,2,2,0],[2,3,0,3],[1,2,3,2],[0,2,1,1]],[[0,2,2,0],[2,3,0,2],[1,2,4,2],[0,2,1,1]],[[0,2,2,0],[2,3,0,2],[1,2,3,3],[0,2,1,1]],[[0,2,2,0],[2,3,0,2],[1,2,3,2],[0,2,1,2]],[[0,2,2,0],[2,3,0,3],[1,2,3,2],[0,2,2,0]],[[0,2,2,0],[2,3,0,2],[1,2,4,2],[0,2,2,0]],[[0,2,2,0],[2,3,0,2],[1,2,3,3],[0,2,2,0]],[[0,2,2,0],[2,3,0,2],[1,2,3,2],[0,3,2,0]],[[0,2,2,0],[2,3,0,2],[1,2,3,2],[0,2,3,0]],[[0,3,2,0],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[0,2,3,0],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[0,2,2,0],[3,3,0,2],[1,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,4,0,2],[1,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,3],[1,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[1,4,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,1,3],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,1,2],[0,3,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,1,2],[0,2,3,1]],[[0,2,2,0],[2,3,0,2],[1,3,1,2],[0,2,2,2]],[[0,3,2,0],[2,3,0,2],[1,3,1,2],[1,1,2,1]],[[0,2,3,0],[2,3,0,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[3,3,0,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,4,0,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[1,4,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[1,4,2,0],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,0],[2,2,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,0],[1,3,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,0],[1,2,3,1]],[[0,3,2,0],[2,3,0,2],[1,3,2,1],[0,2,2,1]],[[0,2,3,0],[2,3,0,2],[1,3,2,1],[0,2,2,1]],[[0,2,2,0],[3,3,0,2],[1,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,4,0,2],[1,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[1,4,2,1],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,1],[0,3,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,1],[0,2,3,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,1],[0,2,2,2]],[[0,3,2,0],[2,3,0,2],[1,3,2,1],[1,1,2,1]],[[0,2,3,0],[2,3,0,2],[1,3,2,1],[1,1,2,1]],[[0,2,2,0],[3,3,0,2],[1,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,4,0,2],[1,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[1,4,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[1,4,2,1],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[1,3,2,1],[2,2,2,0]],[[0,2,2,0],[2,3,0,2],[1,3,2,1],[1,3,2,0]],[[0,2,2,0],[2,3,0,3],[1,3,2,2],[0,1,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,3],[0,1,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,2],[0,1,3,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,2],[0,1,2,2]],[[0,3,2,0],[2,3,0,2],[1,3,2,2],[0,2,2,0]],[[0,2,3,0],[2,3,0,2],[1,3,2,2],[0,2,2,0]],[[0,2,2,0],[3,3,0,2],[1,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,4,0,2],[1,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,0,2],[1,4,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,0,2],[1,3,2,2],[0,3,2,0]],[[0,2,2,0],[2,3,0,2],[1,3,2,2],[0,2,3,0]],[[0,2,2,0],[2,3,0,3],[1,3,2,2],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,3],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,2],[1,0,3,1]],[[0,2,2,0],[2,3,0,2],[1,3,2,2],[1,0,2,2]],[[0,3,2,0],[2,3,0,2],[1,3,2,2],[1,1,2,0]],[[0,2,3,0],[2,3,0,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[3,3,0,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,4,0,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,0,2],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[0,3,4,1],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[0,3,3,1],[1,2,3,2],[0,1,0,1]],[[0,2,2,0],[2,3,0,2],[1,4,3,0],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,0],[2,2,1,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,0],[1,3,1,1]],[[0,3,2,0],[2,3,0,2],[1,3,3,1],[0,1,2,1]],[[0,2,3,0],[2,3,0,2],[1,3,3,1],[0,1,2,1]],[[0,2,2,0],[3,3,0,2],[1,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,4,0,2],[1,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,3,0,2],[1,4,3,1],[0,1,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,4,1],[0,1,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,1],[0,1,3,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,1],[0,1,2,2]],[[0,3,2,0],[2,3,0,2],[1,3,3,1],[0,2,1,1]],[[0,2,3,0],[2,3,0,2],[1,3,3,1],[0,2,1,1]],[[0,2,2,0],[3,3,0,2],[1,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,4,0,2],[1,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,0,2],[1,4,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,0,2],[1,3,4,1],[0,2,1,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,1],[0,3,1,1]],[[0,3,2,0],[2,3,0,2],[1,3,3,1],[1,0,2,1]],[[0,2,3,0],[2,3,0,2],[1,3,3,1],[1,0,2,1]],[[0,2,2,0],[3,3,0,2],[1,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,4,0,2],[1,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[1,4,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,4,1],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,1],[1,0,3,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,1],[1,0,2,2]],[[0,3,2,0],[2,3,0,2],[1,3,3,1],[1,1,1,1]],[[0,2,3,0],[2,3,0,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[3,3,0,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,4,0,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[1,4,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[1,3,4,1],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[1,4,3,1],[1,2,1,0]],[[0,2,2,0],[2,3,0,2],[1,3,3,1],[2,2,1,0]],[[0,2,2,0],[2,3,0,2],[1,3,3,1],[1,3,1,0]],[[1,2,3,1],[0,3,3,1],[1,2,3,2],[0,1,0,1]],[[1,3,2,1],[0,3,3,1],[1,2,3,2],[0,1,0,1]],[[0,2,2,0],[2,3,0,3],[1,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,4,2],[0,0,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,3],[0,0,2,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,2],[0,0,2,2]],[[0,3,2,0],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,3,0],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,2,0],[3,3,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,4,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,0,3],[1,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,0,2],[1,4,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,0,2],[1,3,4,2],[0,1,1,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,3],[0,1,1,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,2],[0,1,1,2]],[[0,3,2,0],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,3,0],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,2,0],[3,3,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,4,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,0,3],[1,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,0,2],[1,4,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,0,2],[1,3,4,2],[0,1,2,0]],[[0,2,2,0],[2,3,0,2],[1,3,3,3],[0,1,2,0]],[[0,2,2,0],[2,3,0,2],[1,3,3,2],[0,1,3,0]],[[0,3,2,0],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,3,0],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,2,0],[3,3,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,4,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,0,3],[1,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,0,2],[1,4,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,0,2],[1,3,4,2],[0,2,0,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,3],[0,2,0,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,2],[0,3,0,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,2],[0,2,0,2]],[[0,3,2,0],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[0,2,3,0],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[0,2,2,0],[3,3,0,2],[1,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,4,0,2],[1,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,0,3],[1,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,0,2],[1,4,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,0,2],[1,3,4,2],[0,2,1,0]],[[0,2,2,0],[2,3,0,2],[1,3,3,3],[0,2,1,0]],[[0,2,2,0],[2,3,0,2],[1,3,3,2],[0,3,1,0]],[[0,3,2,0],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,3,0],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,2,0],[3,3,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,4,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,0,3],[1,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,0,2],[1,4,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,0,2],[1,3,4,2],[1,0,1,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,3],[1,0,1,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,2],[1,0,1,2]],[[0,3,2,0],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[0,2,3,0],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[0,2,2,0],[3,3,0,2],[1,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,4,0,2],[1,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,0,3],[1,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,0,2],[1,4,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,0,2],[1,3,4,2],[1,0,2,0]],[[0,2,2,0],[2,3,0,2],[1,3,3,3],[1,0,2,0]],[[0,2,2,0],[2,3,0,2],[1,3,3,2],[1,0,3,0]],[[0,3,2,0],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[0,2,3,0],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[3,3,0,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,4,0,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,0,3],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,0,2],[1,4,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,0,2],[1,3,4,2],[1,1,0,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,3],[1,1,0,1]],[[0,2,2,0],[2,3,0,2],[1,3,3,2],[1,1,0,2]],[[0,3,2,0],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[0,2,3,0],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[0,2,2,0],[3,3,0,2],[1,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,4,0,2],[1,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,0,3],[1,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,0,2],[1,4,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,0,2],[1,3,4,2],[1,1,1,0]],[[0,2,2,0],[2,3,0,2],[1,3,3,3],[1,1,1,0]],[[0,3,2,0],[2,3,0,2],[1,3,3,2],[1,2,0,0]],[[0,2,3,0],[2,3,0,2],[1,3,3,2],[1,2,0,0]],[[0,2,2,0],[3,3,0,2],[1,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,4,0,2],[1,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,3,0,2],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[0,3,4,1],[1,2,3,1],[1,1,1,0]],[[1,2,2,2],[0,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[0,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[0,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[0,3,4,1],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[0,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[0,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,3,2,1],[0,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,2,2,1],[0,3,3,1],[1,2,4,1],[1,0,2,0]],[[1,2,2,1],[0,3,4,1],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[0,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[0,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[0,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[0,3,3,1],[1,2,4,1],[1,0,1,1]],[[1,2,2,1],[0,3,4,1],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[0,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[0,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,3,2,1],[0,3,3,1],[1,2,3,1],[1,0,1,1]],[[0,3,2,0],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,3,0],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,0],[3,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,4,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,3],[2,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[3,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,0,2,3],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,0,2,2],[2,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,0,2,2],[1,3,2,1]],[[0,2,2,0],[2,3,0,2],[2,0,2,2],[1,2,3,1]],[[0,2,2,0],[2,3,0,2],[2,0,2,2],[1,2,2,2]],[[0,3,2,0],[2,3,0,2],[2,0,3,1],[1,2,2,1]],[[0,2,3,0],[2,3,0,2],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[3,3,0,2],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,4,0,2],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[3,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,0,4,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,0,3,1],[2,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,0,3,1],[1,3,2,1]],[[0,2,2,0],[2,3,0,2],[2,0,3,1],[1,2,3,1]],[[0,2,2,0],[2,3,0,2],[2,0,3,1],[1,2,2,2]],[[0,2,2,0],[2,3,0,3],[2,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[2,0,4,2],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[2,0,3,3],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[2,0,3,2],[1,2,1,2]],[[0,3,2,0],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,3,0],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[3,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,4,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,3],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[3,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,0,4,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,0,3,3],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,0,3,2],[2,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,0,3,2],[1,3,2,0]],[[0,2,2,0],[2,3,0,2],[2,0,3,2],[1,2,3,0]],[[0,3,2,0],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,3,0],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[3,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,4,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,3],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[3,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,1,1,3],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,1,1,2],[2,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,1,1,2],[1,3,2,1]],[[0,2,2,0],[2,3,0,2],[2,1,1,2],[1,2,3,1]],[[0,2,2,0],[2,3,0,2],[2,1,1,2],[1,2,2,2]],[[0,3,2,0],[2,3,0,2],[2,1,2,1],[1,2,2,1]],[[0,2,3,0],[2,3,0,2],[2,1,2,1],[1,2,2,1]],[[0,2,2,0],[3,3,0,2],[2,1,2,1],[1,2,2,1]],[[0,2,2,0],[2,4,0,2],[2,1,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[3,1,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,1,2,1],[2,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,1,2,1],[1,3,2,1]],[[0,2,2,0],[2,3,0,2],[2,1,2,1],[1,2,3,1]],[[0,2,2,0],[2,3,0,2],[2,1,2,1],[1,2,2,2]],[[0,3,2,0],[2,3,0,2],[2,1,2,2],[1,2,2,0]],[[0,2,3,0],[2,3,0,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[3,3,0,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,4,0,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[3,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,1,2,2],[2,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,1,2,2],[1,3,2,0]],[[0,2,2,0],[2,3,0,2],[2,1,2,2],[1,2,3,0]],[[0,3,2,0],[2,3,0,2],[2,1,3,1],[1,2,1,1]],[[0,2,3,0],[2,3,0,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[3,3,0,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,4,0,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[3,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[2,1,3,1],[2,2,1,1]],[[0,2,2,0],[2,3,0,2],[2,1,3,1],[1,3,1,1]],[[0,3,2,0],[2,3,0,2],[2,1,3,2],[1,2,0,1]],[[0,2,3,0],[2,3,0,2],[2,1,3,2],[1,2,0,1]],[[0,2,2,0],[3,3,0,2],[2,1,3,2],[1,2,0,1]],[[0,2,2,0],[2,4,0,2],[2,1,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,2],[3,1,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,0,2],[2,1,3,2],[2,2,0,1]],[[0,2,2,0],[2,3,0,2],[2,1,3,2],[1,3,0,1]],[[0,3,2,0],[2,3,0,2],[2,1,3,2],[1,2,1,0]],[[0,2,3,0],[2,3,0,2],[2,1,3,2],[1,2,1,0]],[[0,2,2,0],[3,3,0,2],[2,1,3,2],[1,2,1,0]],[[0,2,2,0],[2,4,0,2],[2,1,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,0,2],[3,1,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,0,2],[2,1,3,2],[2,2,1,0]],[[0,2,2,0],[2,3,0,2],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[0,3,3,1],[1,2,4,1],[0,2,1,0]],[[1,2,2,1],[0,3,4,1],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[0,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[0,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,3,2,1],[0,3,3,1],[1,2,3,1],[0,2,1,0]],[[0,3,2,0],[2,3,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,3,0],[2,3,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[3,3,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[2,4,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[3,2,1,2],[0,2,2,1]],[[0,3,2,0],[2,3,0,2],[2,2,1,2],[1,1,2,1]],[[0,2,3,0],[2,3,0,2],[2,2,1,2],[1,1,2,1]],[[0,2,2,0],[3,3,0,2],[2,2,1,2],[1,1,2,1]],[[0,2,2,0],[2,4,0,2],[2,2,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[3,2,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[2,2,1,2],[2,1,2,1]],[[0,2,2,0],[3,3,0,2],[2,2,2,0],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[3,2,2,0],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,2,2,0],[2,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,2,2,0],[1,3,2,1]],[[0,2,2,0],[2,3,0,2],[2,2,2,0],[1,2,3,1]],[[0,3,2,0],[2,3,0,2],[2,2,2,1],[0,2,2,1]],[[0,2,3,0],[2,3,0,2],[2,2,2,1],[0,2,2,1]],[[0,2,2,0],[3,3,0,2],[2,2,2,1],[0,2,2,1]],[[0,2,2,0],[2,4,0,2],[2,2,2,1],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[3,2,2,1],[0,2,2,1]],[[0,3,2,0],[2,3,0,2],[2,2,2,1],[1,1,2,1]],[[0,2,3,0],[2,3,0,2],[2,2,2,1],[1,1,2,1]],[[0,2,2,0],[3,3,0,2],[2,2,2,1],[1,1,2,1]],[[0,2,2,0],[2,4,0,2],[2,2,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[3,2,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[2,2,2,1],[2,1,2,1]],[[0,2,2,0],[3,3,0,2],[2,2,2,1],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[3,2,2,1],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,2,2,1],[2,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,2,2,1],[1,3,2,0]],[[0,3,2,0],[2,3,0,2],[2,2,2,2],[0,2,2,0]],[[0,2,3,0],[2,3,0,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[3,3,0,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[2,4,0,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,0,2],[3,2,2,2],[0,2,2,0]],[[0,3,2,0],[2,3,0,2],[2,2,2,2],[1,1,2,0]],[[0,2,3,0],[2,3,0,2],[2,2,2,2],[1,1,2,0]],[[0,2,2,0],[3,3,0,2],[2,2,2,2],[1,1,2,0]],[[0,2,2,0],[2,4,0,2],[2,2,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,0,2],[3,2,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,0,2],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[0,3,3,1],[1,2,4,1],[0,2,0,1]],[[1,2,2,1],[0,3,4,1],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[0,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[0,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[0,3,3,1],[1,2,3,1],[0,2,0,1]],[[0,2,2,0],[3,3,0,2],[2,2,3,0],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[3,2,3,0],[1,2,1,1]],[[0,2,2,0],[2,3,0,2],[2,2,3,0],[2,2,1,1]],[[0,2,2,0],[2,3,0,2],[2,2,3,0],[1,3,1,1]],[[0,3,2,0],[2,3,0,2],[2,2,3,1],[0,1,2,1]],[[0,2,3,0],[2,3,0,2],[2,2,3,1],[0,1,2,1]],[[0,2,2,0],[3,3,0,2],[2,2,3,1],[0,1,2,1]],[[0,2,2,0],[2,4,0,2],[2,2,3,1],[0,1,2,1]],[[0,2,2,0],[2,3,0,2],[3,2,3,1],[0,1,2,1]],[[0,3,2,0],[2,3,0,2],[2,2,3,1],[0,2,1,1]],[[0,2,3,0],[2,3,0,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[3,3,0,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,4,0,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,0,2],[3,2,3,1],[0,2,1,1]],[[0,3,2,0],[2,3,0,2],[2,2,3,1],[1,0,2,1]],[[0,2,3,0],[2,3,0,2],[2,2,3,1],[1,0,2,1]],[[0,2,2,0],[3,3,0,2],[2,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,4,0,2],[2,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[3,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[2,2,3,1],[2,0,2,1]],[[0,3,2,0],[2,3,0,2],[2,2,3,1],[1,1,1,1]],[[0,2,3,0],[2,3,0,2],[2,2,3,1],[1,1,1,1]],[[0,2,2,0],[3,3,0,2],[2,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,4,0,2],[2,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[3,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[2,2,3,1],[2,1,1,1]],[[0,2,2,0],[3,3,0,2],[2,2,3,1],[1,2,1,0]],[[0,2,2,0],[2,3,0,2],[3,2,3,1],[1,2,1,0]],[[0,2,2,0],[2,3,0,2],[2,2,3,1],[2,2,1,0]],[[0,2,2,0],[2,3,0,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[0,3,3,1],[1,2,3,1],[0,1,3,0]],[[1,2,2,1],[0,3,3,1],[1,2,4,1],[0,1,2,0]],[[1,2,2,1],[0,3,4,1],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[0,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[0,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[0,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[0,3,3,1],[1,2,4,1],[0,1,1,1]],[[1,2,2,1],[0,3,4,1],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[0,3,3,1],[1,2,3,1],[0,1,1,1]],[[0,3,2,0],[2,3,0,2],[2,2,3,2],[0,1,1,1]],[[0,2,3,0],[2,3,0,2],[2,2,3,2],[0,1,1,1]],[[0,2,2,0],[3,3,0,2],[2,2,3,2],[0,1,1,1]],[[0,2,2,0],[2,4,0,2],[2,2,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,0,2],[3,2,3,2],[0,1,1,1]],[[0,3,2,0],[2,3,0,2],[2,2,3,2],[0,1,2,0]],[[0,2,3,0],[2,3,0,2],[2,2,3,2],[0,1,2,0]],[[0,2,2,0],[3,3,0,2],[2,2,3,2],[0,1,2,0]],[[0,2,2,0],[2,4,0,2],[2,2,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,0,2],[3,2,3,2],[0,1,2,0]],[[0,3,2,0],[2,3,0,2],[2,2,3,2],[0,2,0,1]],[[0,2,3,0],[2,3,0,2],[2,2,3,2],[0,2,0,1]],[[0,2,2,0],[3,3,0,2],[2,2,3,2],[0,2,0,1]],[[0,2,2,0],[2,4,0,2],[2,2,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,0,2],[3,2,3,2],[0,2,0,1]],[[0,3,2,0],[2,3,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,3,0],[2,3,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,2,0],[3,3,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,2,0],[2,4,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,0,2],[3,2,3,2],[0,2,1,0]],[[1,2,3,1],[0,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,3,2,1],[0,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[0,3,3,1],[1,2,4,1],[0,0,2,1]],[[1,2,2,1],[0,3,4,1],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[0,3,3,1],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[0,3,3,1],[1,2,3,1],[0,0,2,1]],[[1,3,2,1],[0,3,3,1],[1,2,3,1],[0,0,2,1]],[[0,3,2,0],[2,3,0,2],[2,2,3,2],[1,0,1,1]],[[0,2,3,0],[2,3,0,2],[2,2,3,2],[1,0,1,1]],[[0,2,2,0],[3,3,0,2],[2,2,3,2],[1,0,1,1]],[[0,2,2,0],[2,4,0,2],[2,2,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,0,2],[3,2,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,0,2],[2,2,3,2],[2,0,1,1]],[[0,3,2,0],[2,3,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,3,0],[2,3,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,2,0],[3,3,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,2,0],[2,4,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,0,2],[3,2,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,0,2],[2,2,3,2],[2,0,2,0]],[[0,3,2,0],[2,3,0,2],[2,2,3,2],[1,1,0,1]],[[0,2,3,0],[2,3,0,2],[2,2,3,2],[1,1,0,1]],[[0,2,2,0],[3,3,0,2],[2,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,4,0,2],[2,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,0,2],[3,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,0,2],[2,2,3,2],[2,1,0,1]],[[0,3,2,0],[2,3,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,3,0],[2,3,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,2,0],[3,3,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,2,0],[2,4,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,0,2],[3,2,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,0,2],[2,2,3,2],[2,1,1,0]],[[0,3,2,0],[2,3,0,2],[2,2,3,2],[1,2,0,0]],[[0,2,3,0],[2,3,0,2],[2,2,3,2],[1,2,0,0]],[[0,2,2,0],[3,3,0,2],[2,2,3,2],[1,2,0,0]],[[0,2,2,0],[2,4,0,2],[2,2,3,2],[1,2,0,0]],[[0,2,2,0],[2,3,0,2],[3,2,3,2],[1,2,0,0]],[[0,2,2,0],[2,3,0,2],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[0,3,4,1],[1,2,3,0],[1,1,1,1]],[[1,2,2,2],[0,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,2,3,1],[0,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[0,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,2,2,1],[0,3,3,1],[1,2,4,0],[1,0,2,1]],[[1,2,2,1],[0,3,4,1],[1,2,3,0],[1,0,2,1]],[[1,2,2,2],[0,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[0,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[0,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[0,3,3,1],[1,2,4,0],[0,2,1,1]],[[1,2,2,1],[0,3,4,1],[1,2,3,0],[0,2,1,1]],[[1,2,2,2],[0,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,2,3,1],[0,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[0,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[0,3,3,1],[1,2,3,0],[0,1,2,2]],[[1,2,2,1],[0,3,3,1],[1,2,3,0],[0,1,3,1]],[[1,2,2,1],[0,3,3,1],[1,2,4,0],[0,1,2,1]],[[1,2,2,1],[0,3,4,1],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[0,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[0,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[0,3,3,1],[1,2,3,0],[0,1,2,1]],[[0,2,2,0],[3,3,0,2],[2,3,1,0],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[3,3,1,0],[1,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,3,1,0],[2,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,3,1,0],[1,3,2,1]],[[0,2,2,0],[3,3,0,2],[2,3,1,1],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[3,3,1,1],[1,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,3,1,1],[2,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,3,1,1],[1,3,2,0]],[[0,2,2,0],[3,3,0,2],[2,3,2,0],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[3,3,2,0],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,4,2,0],[0,2,2,1]],[[0,2,2,0],[2,3,0,2],[2,3,2,0],[0,3,2,1]],[[0,2,2,0],[2,3,0,2],[2,3,2,0],[0,2,3,1]],[[0,2,2,0],[3,3,0,2],[2,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[3,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[2,4,2,0],[1,1,2,1]],[[0,2,2,0],[2,3,0,2],[2,3,2,0],[2,1,2,1]],[[0,2,2,0],[3,3,0,2],[2,3,2,1],[0,2,2,0]],[[0,2,2,0],[2,3,0,2],[3,3,2,1],[0,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,4,2,1],[0,2,2,0]],[[0,2,2,0],[2,3,0,2],[2,3,2,1],[0,3,2,0]],[[0,2,2,0],[3,3,0,2],[2,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,3,0,2],[3,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,3,0,2],[2,4,2,1],[1,1,2,0]],[[0,2,2,0],[2,3,0,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[0,3,4,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[0,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,2,3,1],[0,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,3,2,1],[0,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[0,3,4,1],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[0,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[0,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,3,2,1],[0,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[0,3,4,1],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[0,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[0,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,3,2,1],[0,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[0,3,4,1],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[0,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[0,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,3,2,1],[0,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[0,3,4,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[0,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[0,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,3,2,1],[0,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,4,1],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[0,3,3,1],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[0,3,3,1],[1,2,2,2],[0,2,0,1]],[[1,3,2,1],[0,3,3,1],[1,2,2,2],[0,2,0,1]],[[0,2,2,0],[3,3,0,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,3,0,2],[3,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,3,0,2],[2,4,3,0],[0,1,2,1]],[[0,2,2,0],[3,3,0,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,3,0,2],[3,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,3,0,2],[2,4,3,0],[0,2,1,1]],[[0,2,2,0],[2,3,0,2],[2,3,3,0],[0,3,1,1]],[[0,2,2,0],[3,3,0,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[3,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[2,4,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,0,2],[2,3,3,0],[2,0,2,1]],[[0,2,2,0],[3,3,0,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[3,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[2,4,3,0],[1,1,1,1]],[[0,2,2,0],[2,3,0,2],[2,3,3,0],[2,1,1,1]],[[0,2,2,0],[3,3,0,2],[2,3,3,0],[1,2,0,1]],[[0,2,2,0],[2,3,0,2],[3,3,3,0],[1,2,0,1]],[[0,2,2,0],[2,3,0,2],[2,4,3,0],[1,2,0,1]],[[0,2,2,0],[2,3,0,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[0,3,4,1],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,1],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,1],[1,2,2,2],[0,1,2,0]],[[1,3,2,1],[0,3,3,1],[1,2,2,2],[0,1,2,0]],[[0,2,2,0],[3,3,0,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,3,0,2],[3,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,3,0,2],[2,4,3,1],[0,1,2,0]],[[0,2,2,0],[3,3,0,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,3,0,2],[3,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,3,0,2],[2,4,3,1],[0,2,0,1]],[[0,2,2,0],[3,3,0,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,3,0,2],[3,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,3,0,2],[2,4,3,1],[0,2,1,0]],[[0,2,2,0],[2,3,0,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[0,3,4,1],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[0,3,4,1],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[0,3,3,1],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[0,3,3,1],[1,2,2,2],[0,0,2,1]],[[1,3,2,1],[0,3,3,1],[1,2,2,2],[0,0,2,1]],[[0,2,2,0],[3,3,0,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,0,2],[3,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,0,2],[2,4,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,0,2],[2,3,3,1],[2,0,2,0]],[[0,2,2,0],[3,3,0,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,0,2],[3,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,0,2],[2,4,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,0,2],[2,3,3,1],[2,1,0,1]],[[0,2,2,0],[3,3,0,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,0,2],[3,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,0,2],[2,4,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,0,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[0,3,4,1],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[0,3,3,1],[1,2,1,2],[1,0,2,1]],[[1,2,3,1],[0,3,3,1],[1,2,1,2],[1,0,2,1]],[[1,3,2,1],[0,3,3,1],[1,2,1,2],[1,0,2,1]],[[0,2,2,0],[3,3,0,2],[2,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,3,0,2],[3,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,3,0,2],[2,4,3,1],[1,2,0,0]],[[0,2,2,0],[2,3,0,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[0,3,4,1],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[0,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[0,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,3,2,1],[0,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[0,3,4,1],[1,2,0,2],[0,2,2,1]],[[1,2,2,2],[0,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,2,3,1],[0,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,3,2,1],[0,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,2,2,1],[0,3,4,1],[1,1,3,2],[1,0,2,0]],[[1,2,2,2],[0,3,3,1],[1,1,3,2],[1,0,2,0]],[[1,2,3,1],[0,3,3,1],[1,1,3,2],[1,0,2,0]],[[1,3,2,1],[0,3,3,1],[1,1,3,2],[1,0,2,0]],[[1,2,2,1],[0,3,4,1],[1,1,3,2],[1,0,1,1]],[[1,2,2,2],[0,3,3,1],[1,1,3,2],[1,0,1,1]],[[1,2,3,1],[0,3,3,1],[1,1,3,2],[1,0,1,1]],[[1,3,2,1],[0,3,3,1],[1,1,3,2],[1,0,1,1]],[[1,2,2,1],[0,3,4,1],[1,1,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,1],[1,1,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,1],[1,1,3,2],[0,1,2,0]],[[1,3,2,1],[0,3,3,1],[1,1,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,4,1],[1,1,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,1],[1,1,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,1],[1,1,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,1],[1,1,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,4,1],[1,1,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,3,1],[1,1,3,2],[0,0,2,1]],[[1,2,3,1],[0,3,3,1],[1,1,3,2],[0,0,2,1]],[[1,3,2,1],[0,3,3,1],[1,1,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,0,2],[2,3,3,2],[1,0,0,1]],[[0,2,3,0],[2,3,0,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[3,3,0,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[2,4,0,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[2,3,0,2],[3,3,3,2],[1,0,0,1]],[[0,3,2,0],[2,3,0,2],[2,3,3,2],[1,0,1,0]],[[0,2,3,0],[2,3,0,2],[2,3,3,2],[1,0,1,0]],[[0,2,2,0],[3,3,0,2],[2,3,3,2],[1,0,1,0]],[[0,2,2,0],[2,4,0,2],[2,3,3,2],[1,0,1,0]],[[0,2,2,0],[2,3,0,2],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[0,3,3,1],[1,1,3,1],[0,2,3,0]],[[1,2,2,1],[0,3,3,1],[1,1,4,1],[0,2,2,0]],[[1,2,2,1],[0,3,4,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[0,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[0,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[0,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,3,3,1],[1,1,4,1],[0,2,1,1]],[[1,2,2,1],[0,3,4,1],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[0,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[0,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,3,2,1],[0,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[0,3,3,1],[1,1,3,0],[0,2,2,2]],[[1,2,2,1],[0,3,3,1],[1,1,3,0],[0,2,3,1]],[[1,2,2,1],[0,3,3,1],[1,1,4,0],[0,2,2,1]],[[1,2,2,1],[0,3,4,1],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[0,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[0,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[0,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[0,3,4,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[0,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[0,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,3,2,1],[0,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[0,3,4,1],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[0,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[0,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,3,2,1],[0,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[0,3,4,1],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[0,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[0,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,3,2,1],[0,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[0,3,4,1],[1,0,3,2],[0,2,2,0]],[[0,2,2,0],[2,3,1,0],[0,2,4,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,0],[0,2,3,2],[2,2,2,1]],[[0,2,2,0],[2,3,1,0],[0,2,3,2],[1,3,2,1]],[[0,2,2,0],[2,3,1,0],[0,2,3,2],[1,2,3,1]],[[0,2,2,0],[2,3,1,0],[0,2,3,2],[1,2,2,2]],[[0,3,2,0],[2,3,1,0],[0,3,2,2],[1,2,2,1]],[[0,2,2,0],[3,3,1,0],[0,3,2,2],[1,2,2,1]],[[0,2,2,0],[2,4,1,0],[0,3,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,0],[0,4,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,0],[0,3,2,2],[2,2,2,1]],[[0,2,2,0],[2,3,1,0],[0,3,2,2],[1,3,2,1]],[[0,2,2,0],[2,3,1,0],[0,3,2,2],[1,2,3,1]],[[0,2,2,0],[2,3,1,0],[0,3,2,2],[1,2,2,2]],[[0,3,2,0],[2,3,1,0],[0,3,3,2],[1,1,2,1]],[[0,2,2,0],[3,3,1,0],[0,3,3,2],[1,1,2,1]],[[0,2,2,0],[2,4,1,0],[0,3,3,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,0],[0,4,3,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,0],[0,3,4,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,0],[0,3,3,2],[1,1,3,1]],[[0,2,2,0],[2,3,1,0],[0,3,3,2],[1,1,2,2]],[[0,3,2,0],[2,3,1,0],[0,3,3,2],[1,2,1,1]],[[0,2,2,0],[3,3,1,0],[0,3,3,2],[1,2,1,1]],[[0,2,2,0],[2,4,1,0],[0,3,3,2],[1,2,1,1]],[[0,2,2,0],[2,3,1,0],[0,4,3,2],[1,2,1,1]],[[0,2,2,0],[2,3,1,0],[0,3,4,2],[1,2,1,1]],[[0,2,2,0],[2,3,1,0],[0,3,3,2],[2,2,1,1]],[[0,2,2,0],[2,3,1,0],[0,3,3,2],[1,3,1,1]],[[0,2,2,0],[2,3,1,0],[1,2,4,2],[0,2,2,1]],[[0,2,2,0],[2,3,1,0],[1,2,3,2],[0,3,2,1]],[[0,2,2,0],[2,3,1,0],[1,2,3,2],[0,2,3,1]],[[0,2,2,0],[2,3,1,0],[1,2,3,2],[0,2,2,2]],[[0,3,2,0],[2,3,1,0],[1,3,2,2],[0,2,2,1]],[[0,2,2,0],[3,3,1,0],[1,3,2,2],[0,2,2,1]],[[0,2,2,0],[2,4,1,0],[1,3,2,2],[0,2,2,1]],[[0,2,2,0],[2,3,1,0],[1,4,2,2],[0,2,2,1]],[[0,2,2,0],[2,3,1,0],[1,3,2,2],[0,3,2,1]],[[0,2,2,0],[2,3,1,0],[1,3,2,2],[0,2,3,1]],[[0,2,2,0],[2,3,1,0],[1,3,2,2],[0,2,2,2]],[[0,3,2,0],[2,3,1,0],[1,3,2,2],[1,1,2,1]],[[0,2,2,0],[3,3,1,0],[1,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,4,1,0],[1,3,2,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,0],[1,4,2,2],[1,1,2,1]],[[0,3,2,0],[2,3,1,0],[1,3,3,2],[0,1,2,1]],[[0,2,2,0],[3,3,1,0],[1,3,3,2],[0,1,2,1]],[[0,2,2,0],[2,4,1,0],[1,3,3,2],[0,1,2,1]],[[0,2,2,0],[2,3,1,0],[1,4,3,2],[0,1,2,1]],[[0,2,2,0],[2,3,1,0],[1,3,4,2],[0,1,2,1]],[[0,2,2,0],[2,3,1,0],[1,3,3,2],[0,1,3,1]],[[0,2,2,0],[2,3,1,0],[1,3,3,2],[0,1,2,2]],[[0,3,2,0],[2,3,1,0],[1,3,3,2],[0,2,1,1]],[[0,2,2,0],[3,3,1,0],[1,3,3,2],[0,2,1,1]],[[0,2,2,0],[2,4,1,0],[1,3,3,2],[0,2,1,1]],[[0,2,2,0],[2,3,1,0],[1,4,3,2],[0,2,1,1]],[[0,2,2,0],[2,3,1,0],[1,3,4,2],[0,2,1,1]],[[0,2,2,0],[2,3,1,0],[1,3,3,2],[0,3,1,1]],[[0,3,2,0],[2,3,1,0],[1,3,3,2],[1,0,2,1]],[[0,2,2,0],[3,3,1,0],[1,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,4,1,0],[1,3,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,1,0],[1,4,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,1,0],[1,3,4,2],[1,0,2,1]],[[0,2,2,0],[2,3,1,0],[1,3,3,2],[1,0,3,1]],[[0,2,2,0],[2,3,1,0],[1,3,3,2],[1,0,2,2]],[[0,3,2,0],[2,3,1,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[3,3,1,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,4,1,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,1,0],[1,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,1,0],[1,3,4,2],[1,1,1,1]],[[1,2,2,2],[0,3,3,1],[1,0,3,2],[0,2,2,0]],[[1,2,3,1],[0,3,3,1],[1,0,3,2],[0,2,2,0]],[[1,3,2,1],[0,3,3,1],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[0,3,4,1],[1,0,3,2],[0,2,1,1]],[[1,2,2,2],[0,3,3,1],[1,0,3,2],[0,2,1,1]],[[1,2,3,1],[0,3,3,1],[1,0,3,2],[0,2,1,1]],[[1,3,2,1],[0,3,3,1],[1,0,3,2],[0,2,1,1]],[[1,2,2,1],[0,3,4,1],[1,0,3,2],[0,1,2,1]],[[1,2,2,2],[0,3,3,1],[1,0,3,2],[0,1,2,1]],[[0,3,2,0],[2,3,1,0],[2,0,3,2],[1,2,2,1]],[[0,2,2,0],[3,3,1,0],[2,0,3,2],[1,2,2,1]],[[0,2,2,0],[2,4,1,0],[2,0,3,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,0],[3,0,3,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,0],[2,0,4,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,0],[2,0,3,2],[2,2,2,1]],[[0,2,2,0],[2,3,1,0],[2,0,3,2],[1,3,2,1]],[[0,2,2,0],[2,3,1,0],[2,0,3,2],[1,2,3,1]],[[0,2,2,0],[2,3,1,0],[2,0,3,2],[1,2,2,2]],[[0,3,2,0],[2,3,1,0],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[3,3,1,0],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,4,1,0],[2,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,0],[3,1,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,0],[2,1,2,2],[2,2,2,1]],[[0,2,2,0],[2,3,1,0],[2,1,2,2],[1,3,2,1]],[[0,2,2,0],[2,3,1,0],[2,1,2,2],[1,2,3,1]],[[0,2,2,0],[2,3,1,0],[2,1,2,2],[1,2,2,2]],[[0,3,2,0],[2,3,1,0],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[3,3,1,0],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,4,1,0],[2,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,3,1,0],[3,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,3,1,0],[2,1,3,2],[2,2,1,1]],[[0,2,2,0],[2,3,1,0],[2,1,3,2],[1,3,1,1]],[[0,3,2,0],[2,3,1,0],[2,2,2,2],[0,2,2,1]],[[0,2,2,0],[3,3,1,0],[2,2,2,2],[0,2,2,1]],[[0,2,2,0],[2,4,1,0],[2,2,2,2],[0,2,2,1]],[[0,2,2,0],[2,3,1,0],[3,2,2,2],[0,2,2,1]],[[0,3,2,0],[2,3,1,0],[2,2,2,2],[1,1,2,1]],[[0,2,2,0],[3,3,1,0],[2,2,2,2],[1,1,2,1]],[[0,2,2,0],[2,4,1,0],[2,2,2,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,0],[3,2,2,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,0],[2,2,2,2],[2,1,2,1]],[[0,3,2,0],[2,3,1,0],[2,2,3,2],[0,1,2,1]],[[0,2,2,0],[3,3,1,0],[2,2,3,2],[0,1,2,1]],[[0,2,2,0],[2,4,1,0],[2,2,3,2],[0,1,2,1]],[[0,2,2,0],[2,3,1,0],[3,2,3,2],[0,1,2,1]],[[0,3,2,0],[2,3,1,0],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[3,3,1,0],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[2,4,1,0],[2,2,3,2],[0,2,1,1]],[[0,2,2,0],[2,3,1,0],[3,2,3,2],[0,2,1,1]],[[0,3,2,0],[2,3,1,0],[2,2,3,2],[1,0,2,1]],[[0,2,2,0],[3,3,1,0],[2,2,3,2],[1,0,2,1]],[[0,2,2,0],[2,4,1,0],[2,2,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,1,0],[3,2,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,1,0],[2,2,3,2],[2,0,2,1]],[[0,3,2,0],[2,3,1,0],[2,2,3,2],[1,1,1,1]],[[0,2,2,0],[3,3,1,0],[2,2,3,2],[1,1,1,1]],[[0,2,2,0],[2,4,1,0],[2,2,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,1,0],[3,2,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,1,0],[2,2,3,2],[2,1,1,1]],[[1,2,3,1],[0,3,3,1],[1,0,3,2],[0,1,2,1]],[[1,3,2,1],[0,3,3,1],[1,0,3,2],[0,1,2,1]],[[1,2,2,1],[0,3,4,1],[1,0,2,2],[0,2,2,1]],[[1,2,2,2],[0,3,3,1],[1,0,2,2],[0,2,2,1]],[[1,2,3,1],[0,3,3,1],[1,0,2,2],[0,2,2,1]],[[1,3,2,1],[0,3,3,1],[1,0,2,2],[0,2,2,1]],[[1,2,2,1],[0,3,4,1],[0,3,3,2],[0,1,0,1]],[[1,2,2,2],[0,3,3,1],[0,3,3,2],[0,1,0,1]],[[1,2,3,1],[0,3,3,1],[0,3,3,2],[0,1,0,1]],[[1,3,2,1],[0,3,3,1],[0,3,3,2],[0,1,0,1]],[[0,2,2,0],[2,3,1,1],[0,2,2,3],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,2,2,2],[2,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,2,2,2],[1,3,2,1]],[[0,2,2,0],[2,3,1,1],[0,2,2,2],[1,2,3,1]],[[0,2,2,0],[2,3,1,1],[0,2,2,2],[1,2,2,2]],[[0,2,2,0],[2,3,1,1],[0,2,4,1],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,2,3,1],[2,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,2,3,1],[1,3,2,1]],[[0,2,2,0],[2,3,1,1],[0,2,3,1],[1,2,3,1]],[[0,2,2,0],[2,3,1,1],[0,2,3,1],[1,2,2,2]],[[0,2,2,0],[2,3,1,1],[0,2,4,2],[1,2,1,1]],[[0,2,2,0],[2,3,1,1],[0,2,3,3],[1,2,1,1]],[[0,2,2,0],[2,3,1,1],[0,2,3,2],[1,2,1,2]],[[0,2,2,0],[2,3,1,1],[0,2,4,2],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[0,2,3,3],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[0,2,3,2],[2,2,2,0]],[[0,2,2,0],[2,3,1,1],[0,2,3,2],[1,3,2,0]],[[0,2,2,0],[2,3,1,1],[0,2,3,2],[1,2,3,0]],[[0,3,2,0],[2,3,1,1],[0,3,1,2],[1,2,2,1]],[[0,2,3,0],[2,3,1,1],[0,3,1,2],[1,2,2,1]],[[0,2,2,0],[3,3,1,1],[0,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,4,1,1],[0,3,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,4,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,1,3],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,1,2],[2,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,1,2],[1,3,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,1,2],[1,2,3,1]],[[0,2,2,0],[2,3,1,1],[0,3,1,2],[1,2,2,2]],[[0,3,2,0],[2,3,1,1],[0,3,2,1],[1,2,2,1]],[[0,2,3,0],[2,3,1,1],[0,3,2,1],[1,2,2,1]],[[0,2,2,0],[3,3,1,1],[0,3,2,1],[1,2,2,1]],[[0,2,2,0],[2,4,1,1],[0,3,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,4,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,2,1],[2,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,2,1],[1,3,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,2,1],[1,2,3,1]],[[0,2,2,0],[2,3,1,1],[0,3,2,1],[1,2,2,2]],[[0,2,2,0],[2,3,1,1],[0,3,2,3],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,2,2],[1,1,3,1]],[[0,2,2,0],[2,3,1,1],[0,3,2,2],[1,1,2,2]],[[0,3,2,0],[2,3,1,1],[0,3,2,2],[1,2,2,0]],[[0,2,3,0],[2,3,1,1],[0,3,2,2],[1,2,2,0]],[[0,2,2,0],[3,3,1,1],[0,3,2,2],[1,2,2,0]],[[0,2,2,0],[2,4,1,1],[0,3,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[0,4,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[0,3,2,2],[2,2,2,0]],[[0,2,2,0],[2,3,1,1],[0,3,2,2],[1,3,2,0]],[[0,2,2,0],[2,3,1,1],[0,3,2,2],[1,2,3,0]],[[0,3,2,0],[2,3,1,1],[0,3,3,0],[1,2,2,1]],[[0,2,2,0],[3,3,1,1],[0,3,3,0],[1,2,2,1]],[[0,2,2,0],[2,4,1,1],[0,3,3,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,4,3,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,0],[2,2,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,0],[1,3,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,0],[1,2,3,1]],[[0,3,2,0],[2,3,1,1],[0,3,3,1],[1,1,2,1]],[[0,2,3,0],[2,3,1,1],[0,3,3,1],[1,1,2,1]],[[0,2,2,0],[3,3,1,1],[0,3,3,1],[1,1,2,1]],[[0,2,2,0],[2,4,1,1],[0,3,3,1],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[0,4,3,1],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,4,1],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,1],[1,1,3,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,1],[1,1,2,2]],[[0,3,2,0],[2,3,1,1],[0,3,3,1],[1,2,1,1]],[[0,2,3,0],[2,3,1,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,0],[3,3,1,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,0],[2,4,1,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,1,1],[0,4,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,1,1],[0,3,4,1],[1,2,1,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,1],[2,2,1,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,1],[1,3,1,1]],[[0,2,2,0],[2,3,1,1],[0,3,4,2],[1,0,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,3],[1,0,2,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,2],[1,0,2,2]],[[0,3,2,0],[2,3,1,1],[0,3,3,2],[1,1,1,1]],[[0,2,3,0],[2,3,1,1],[0,3,3,2],[1,1,1,1]],[[0,2,2,0],[3,3,1,1],[0,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,4,1,1],[0,3,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,1,1],[0,4,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,1,1],[0,3,4,2],[1,1,1,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,3],[1,1,1,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,2],[1,1,1,2]],[[0,3,2,0],[2,3,1,1],[0,3,3,2],[1,1,2,0]],[[0,2,3,0],[2,3,1,1],[0,3,3,2],[1,1,2,0]],[[0,2,2,0],[3,3,1,1],[0,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,4,1,1],[0,3,3,2],[1,1,2,0]],[[0,2,2,0],[2,3,1,1],[0,4,3,2],[1,1,2,0]],[[0,2,2,0],[2,3,1,1],[0,3,4,2],[1,1,2,0]],[[0,2,2,0],[2,3,1,1],[0,3,3,3],[1,1,2,0]],[[0,2,2,0],[2,3,1,1],[0,3,3,2],[1,1,3,0]],[[0,3,2,0],[2,3,1,1],[0,3,3,2],[1,2,0,1]],[[0,2,3,0],[2,3,1,1],[0,3,3,2],[1,2,0,1]],[[0,2,2,0],[3,3,1,1],[0,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,4,1,1],[0,3,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,1,1],[0,4,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,1,1],[0,3,4,2],[1,2,0,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,3],[1,2,0,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,2],[2,2,0,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,2],[1,3,0,1]],[[0,2,2,0],[2,3,1,1],[0,3,3,2],[1,2,0,2]],[[0,3,2,0],[2,3,1,1],[0,3,3,2],[1,2,1,0]],[[0,2,3,0],[2,3,1,1],[0,3,3,2],[1,2,1,0]],[[0,2,2,0],[3,3,1,1],[0,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,4,1,1],[0,3,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,1,1],[0,4,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,1,1],[0,3,4,2],[1,2,1,0]],[[0,2,2,0],[2,3,1,1],[0,3,3,3],[1,2,1,0]],[[0,2,2,0],[2,3,1,1],[0,3,3,2],[2,2,1,0]],[[0,2,2,0],[2,3,1,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,3,4,1],[0,3,3,1],[1,2,0,0]],[[1,2,2,2],[0,3,3,1],[0,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,3,1,1],[1,2,2,3],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[1,2,2,2],[0,3,2,1]],[[0,2,2,0],[2,3,1,1],[1,2,2,2],[0,2,3,1]],[[0,2,2,0],[2,3,1,1],[1,2,2,2],[0,2,2,2]],[[0,2,2,0],[2,3,1,1],[1,2,4,1],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[1,2,3,1],[0,3,2,1]],[[0,2,2,0],[2,3,1,1],[1,2,3,1],[0,2,3,1]],[[0,2,2,0],[2,3,1,1],[1,2,3,1],[0,2,2,2]],[[0,2,2,0],[2,3,1,1],[1,2,4,2],[0,2,1,1]],[[0,2,2,0],[2,3,1,1],[1,2,3,3],[0,2,1,1]],[[0,2,2,0],[2,3,1,1],[1,2,3,2],[0,2,1,2]],[[0,2,2,0],[2,3,1,1],[1,2,4,2],[0,2,2,0]],[[0,2,2,0],[2,3,1,1],[1,2,3,3],[0,2,2,0]],[[0,2,2,0],[2,3,1,1],[1,2,3,2],[0,3,2,0]],[[0,2,2,0],[2,3,1,1],[1,2,3,2],[0,2,3,0]],[[1,2,3,1],[0,3,3,1],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[0,3,3,1],[0,3,3,1],[1,2,0,0]],[[0,3,2,0],[2,3,1,1],[1,3,1,2],[0,2,2,1]],[[0,2,3,0],[2,3,1,1],[1,3,1,2],[0,2,2,1]],[[0,2,2,0],[3,3,1,1],[1,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,4,1,1],[1,3,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[1,4,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,1,3],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,1,2],[0,3,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,1,2],[0,2,3,1]],[[0,2,2,0],[2,3,1,1],[1,3,1,2],[0,2,2,2]],[[0,3,2,0],[2,3,1,1],[1,3,1,2],[1,1,2,1]],[[0,2,3,0],[2,3,1,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[3,3,1,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,4,1,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[1,4,1,2],[1,1,2,1]],[[0,3,2,0],[2,3,1,1],[1,3,2,1],[0,2,2,1]],[[0,2,3,0],[2,3,1,1],[1,3,2,1],[0,2,2,1]],[[0,2,2,0],[3,3,1,1],[1,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,4,1,1],[1,3,2,1],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[1,4,2,1],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,2,1],[0,3,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,2,1],[0,2,3,1]],[[0,2,2,0],[2,3,1,1],[1,3,2,1],[0,2,2,2]],[[0,3,2,0],[2,3,1,1],[1,3,2,1],[1,1,2,1]],[[0,2,3,0],[2,3,1,1],[1,3,2,1],[1,1,2,1]],[[0,2,2,0],[3,3,1,1],[1,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,4,1,1],[1,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[1,4,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,2,3],[0,1,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,2,2],[0,1,3,1]],[[0,2,2,0],[2,3,1,1],[1,3,2,2],[0,1,2,2]],[[0,3,2,0],[2,3,1,1],[1,3,2,2],[0,2,2,0]],[[0,2,3,0],[2,3,1,1],[1,3,2,2],[0,2,2,0]],[[0,2,2,0],[3,3,1,1],[1,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,4,1,1],[1,3,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,1,1],[1,4,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,1,1],[1,3,2,2],[0,3,2,0]],[[0,2,2,0],[2,3,1,1],[1,3,2,2],[0,2,3,0]],[[0,2,2,0],[2,3,1,1],[1,3,2,3],[1,0,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,2,2],[1,0,3,1]],[[0,2,2,0],[2,3,1,1],[1,3,2,2],[1,0,2,2]],[[0,3,2,0],[2,3,1,1],[1,3,2,2],[1,1,2,0]],[[0,2,3,0],[2,3,1,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[3,3,1,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,4,1,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,1,1],[1,4,2,2],[1,1,2,0]],[[0,3,2,0],[2,3,1,1],[1,3,3,0],[0,2,2,1]],[[0,2,2,0],[3,3,1,1],[1,3,3,0],[0,2,2,1]],[[0,2,2,0],[2,4,1,1],[1,3,3,0],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[1,4,3,0],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,0],[0,3,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,0],[0,2,3,1]],[[0,3,2,0],[2,3,1,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[3,3,1,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,4,1,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[1,4,3,0],[1,1,2,1]],[[0,3,2,0],[2,3,1,1],[1,3,3,1],[0,1,2,1]],[[0,2,3,0],[2,3,1,1],[1,3,3,1],[0,1,2,1]],[[0,2,2,0],[3,3,1,1],[1,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,4,1,1],[1,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,3,1,1],[1,4,3,1],[0,1,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,4,1],[0,1,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,1],[0,1,3,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,1],[0,1,2,2]],[[0,3,2,0],[2,3,1,1],[1,3,3,1],[0,2,1,1]],[[0,2,3,0],[2,3,1,1],[1,3,3,1],[0,2,1,1]],[[0,2,2,0],[3,3,1,1],[1,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,4,1,1],[1,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,1,1],[1,4,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,1,1],[1,3,4,1],[0,2,1,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,1],[0,3,1,1]],[[0,3,2,0],[2,3,1,1],[1,3,3,1],[1,0,2,1]],[[0,2,3,0],[2,3,1,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,0],[3,3,1,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,4,1,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,1,1],[1,4,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,4,1],[1,0,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,1],[1,0,3,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,1],[1,0,2,2]],[[0,3,2,0],[2,3,1,1],[1,3,3,1],[1,1,1,1]],[[0,2,3,0],[2,3,1,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[3,3,1,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,4,1,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,1,1],[1,4,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,1,1],[1,3,4,1],[1,1,1,1]],[[0,3,2,0],[2,3,1,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[3,3,1,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,4,1,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,1,1],[1,4,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,1,1],[1,3,4,2],[0,0,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,3],[0,0,2,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,2],[0,0,2,2]],[[0,3,2,0],[2,3,1,1],[1,3,3,2],[0,1,1,1]],[[0,2,3,0],[2,3,1,1],[1,3,3,2],[0,1,1,1]],[[0,2,2,0],[3,3,1,1],[1,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,4,1,1],[1,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,1,1],[1,4,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,1,1],[1,3,4,2],[0,1,1,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,3],[0,1,1,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,2],[0,1,1,2]],[[0,3,2,0],[2,3,1,1],[1,3,3,2],[0,1,2,0]],[[0,2,3,0],[2,3,1,1],[1,3,3,2],[0,1,2,0]],[[0,2,2,0],[3,3,1,1],[1,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,4,1,1],[1,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,1,1],[1,4,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,1,1],[1,3,4,2],[0,1,2,0]],[[0,2,2,0],[2,3,1,1],[1,3,3,3],[0,1,2,0]],[[0,2,2,0],[2,3,1,1],[1,3,3,2],[0,1,3,0]],[[0,3,2,0],[2,3,1,1],[1,3,3,2],[0,2,0,1]],[[0,2,3,0],[2,3,1,1],[1,3,3,2],[0,2,0,1]],[[0,2,2,0],[3,3,1,1],[1,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,4,1,1],[1,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,1,1],[1,4,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,1,1],[1,3,4,2],[0,2,0,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,3],[0,2,0,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,2],[0,3,0,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,2],[0,2,0,2]],[[0,3,2,0],[2,3,1,1],[1,3,3,2],[0,2,1,0]],[[0,2,3,0],[2,3,1,1],[1,3,3,2],[0,2,1,0]],[[0,2,2,0],[3,3,1,1],[1,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,4,1,1],[1,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,1,1],[1,4,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,1,1],[1,3,4,2],[0,2,1,0]],[[0,2,2,0],[2,3,1,1],[1,3,3,3],[0,2,1,0]],[[0,2,2,0],[2,3,1,1],[1,3,3,2],[0,3,1,0]],[[1,2,2,1],[0,3,3,1],[0,3,4,1],[0,2,1,0]],[[1,2,2,1],[0,3,4,1],[0,3,3,1],[0,2,1,0]],[[1,2,2,2],[0,3,3,1],[0,3,3,1],[0,2,1,0]],[[1,2,3,1],[0,3,3,1],[0,3,3,1],[0,2,1,0]],[[1,3,2,1],[0,3,3,1],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,3,3,1],[0,3,4,1],[0,2,0,1]],[[1,2,2,1],[0,3,4,1],[0,3,3,1],[0,2,0,1]],[[0,3,2,0],[2,3,1,1],[1,3,3,2],[1,0,1,1]],[[0,2,3,0],[2,3,1,1],[1,3,3,2],[1,0,1,1]],[[0,2,2,0],[3,3,1,1],[1,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,4,1,1],[1,3,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,1,1],[1,4,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,1,1],[1,3,4,2],[1,0,1,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,3],[1,0,1,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,2],[1,0,1,2]],[[0,3,2,0],[2,3,1,1],[1,3,3,2],[1,0,2,0]],[[0,2,3,0],[2,3,1,1],[1,3,3,2],[1,0,2,0]],[[0,2,2,0],[3,3,1,1],[1,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,4,1,1],[1,3,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,1,1],[1,4,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,1,1],[1,3,4,2],[1,0,2,0]],[[0,2,2,0],[2,3,1,1],[1,3,3,3],[1,0,2,0]],[[0,2,2,0],[2,3,1,1],[1,3,3,2],[1,0,3,0]],[[0,3,2,0],[2,3,1,1],[1,3,3,2],[1,1,0,1]],[[0,2,3,0],[2,3,1,1],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[3,3,1,1],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,4,1,1],[1,3,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,1,1],[1,4,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,1,1],[1,3,4,2],[1,1,0,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,3],[1,1,0,1]],[[0,2,2,0],[2,3,1,1],[1,3,3,2],[1,1,0,2]],[[0,3,2,0],[2,3,1,1],[1,3,3,2],[1,1,1,0]],[[0,2,3,0],[2,3,1,1],[1,3,3,2],[1,1,1,0]],[[0,2,2,0],[3,3,1,1],[1,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,4,1,1],[1,3,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,1,1],[1,4,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,1,1],[1,3,4,2],[1,1,1,0]],[[0,2,2,0],[2,3,1,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,2],[0,3,3,1],[0,3,3,1],[0,2,0,1]],[[1,2,3,1],[0,3,3,1],[0,3,3,1],[0,2,0,1]],[[1,3,2,1],[0,3,3,1],[0,3,3,1],[0,2,0,1]],[[0,3,2,0],[2,3,1,1],[1,3,3,2],[1,2,0,0]],[[0,2,3,0],[2,3,1,1],[1,3,3,2],[1,2,0,0]],[[0,2,2,0],[3,3,1,1],[1,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,4,1,1],[1,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,3,1,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[0,3,3,1],[0,3,3,1],[0,1,3,0]],[[1,2,2,1],[0,3,3,1],[0,3,4,1],[0,1,2,0]],[[1,2,2,1],[0,3,4,1],[0,3,3,1],[0,1,2,0]],[[1,2,2,2],[0,3,3,1],[0,3,3,1],[0,1,2,0]],[[1,2,3,1],[0,3,3,1],[0,3,3,1],[0,1,2,0]],[[1,3,2,1],[0,3,3,1],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,3,3,1],[0,3,4,1],[0,1,1,1]],[[1,2,2,1],[0,3,4,1],[0,3,3,1],[0,1,1,1]],[[1,2,2,2],[0,3,3,1],[0,3,3,1],[0,1,1,1]],[[1,2,3,1],[0,3,3,1],[0,3,3,1],[0,1,1,1]],[[1,3,2,1],[0,3,3,1],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[0,3,3,1],[0,3,4,1],[0,0,2,1]],[[1,2,2,1],[0,3,4,1],[0,3,3,1],[0,0,2,1]],[[1,2,2,2],[0,3,3,1],[0,3,3,1],[0,0,2,1]],[[1,2,3,1],[0,3,3,1],[0,3,3,1],[0,0,2,1]],[[1,3,2,1],[0,3,3,1],[0,3,3,1],[0,0,2,1]],[[1,2,2,1],[0,3,4,1],[0,3,3,0],[1,2,1,0]],[[1,2,2,2],[0,3,3,1],[0,3,3,0],[1,2,1,0]],[[1,2,3,1],[0,3,3,1],[0,3,3,0],[1,2,1,0]],[[1,3,2,1],[0,3,3,1],[0,3,3,0],[1,2,1,0]],[[0,3,2,0],[2,3,1,1],[2,0,2,2],[1,2,2,1]],[[0,2,3,0],[2,3,1,1],[2,0,2,2],[1,2,2,1]],[[0,2,2,0],[3,3,1,1],[2,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,4,1,1],[2,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[3,0,2,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,0,2,3],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,0,2,2],[2,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,0,2,2],[1,3,2,1]],[[0,2,2,0],[2,3,1,1],[2,0,2,2],[1,2,3,1]],[[0,2,2,0],[2,3,1,1],[2,0,2,2],[1,2,2,2]],[[0,3,2,0],[2,3,1,1],[2,0,3,1],[1,2,2,1]],[[0,2,3,0],[2,3,1,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[3,3,1,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,4,1,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[3,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,0,4,1],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,0,3,1],[2,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,0,3,1],[1,3,2,1]],[[0,2,2,0],[2,3,1,1],[2,0,3,1],[1,2,3,1]],[[0,2,2,0],[2,3,1,1],[2,0,3,1],[1,2,2,2]],[[0,2,2,0],[2,3,1,1],[2,0,4,2],[1,2,1,1]],[[0,2,2,0],[2,3,1,1],[2,0,3,3],[1,2,1,1]],[[0,2,2,0],[2,3,1,1],[2,0,3,2],[1,2,1,2]],[[0,3,2,0],[2,3,1,1],[2,0,3,2],[1,2,2,0]],[[0,2,3,0],[2,3,1,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[3,3,1,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,4,1,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[3,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[2,0,4,2],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[2,0,3,3],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[2,0,3,2],[2,2,2,0]],[[0,2,2,0],[2,3,1,1],[2,0,3,2],[1,3,2,0]],[[0,2,2,0],[2,3,1,1],[2,0,3,2],[1,2,3,0]],[[0,3,2,0],[2,3,1,1],[2,1,1,2],[1,2,2,1]],[[0,2,3,0],[2,3,1,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[3,3,1,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,4,1,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[3,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,1,1,3],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,1,1,2],[2,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,1,1,2],[1,3,2,1]],[[0,2,2,0],[2,3,1,1],[2,1,1,2],[1,2,3,1]],[[0,2,2,0],[2,3,1,1],[2,1,1,2],[1,2,2,2]],[[0,3,2,0],[2,3,1,1],[2,1,2,1],[1,2,2,1]],[[0,2,3,0],[2,3,1,1],[2,1,2,1],[1,2,2,1]],[[0,2,2,0],[3,3,1,1],[2,1,2,1],[1,2,2,1]],[[0,2,2,0],[2,4,1,1],[2,1,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[3,1,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,1,2,1],[2,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,1,2,1],[1,3,2,1]],[[0,2,2,0],[2,3,1,1],[2,1,2,1],[1,2,3,1]],[[0,2,2,0],[2,3,1,1],[2,1,2,1],[1,2,2,2]],[[0,3,2,0],[2,3,1,1],[2,1,2,2],[1,2,2,0]],[[0,2,3,0],[2,3,1,1],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[3,3,1,1],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,4,1,1],[2,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[3,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[2,1,2,2],[2,2,2,0]],[[0,2,2,0],[2,3,1,1],[2,1,2,2],[1,3,2,0]],[[0,2,2,0],[2,3,1,1],[2,1,2,2],[1,2,3,0]],[[0,3,2,0],[2,3,1,1],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[3,3,1,1],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,4,1,1],[2,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[3,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,1,3,0],[2,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,1,3,0],[1,3,2,1]],[[0,2,2,0],[2,3,1,1],[2,1,3,0],[1,2,3,1]],[[0,3,2,0],[2,3,1,1],[2,1,3,1],[1,2,1,1]],[[0,2,3,0],[2,3,1,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[3,3,1,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,4,1,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,1,1],[3,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,1,1],[2,1,3,1],[2,2,1,1]],[[0,2,2,0],[2,3,1,1],[2,1,3,1],[1,3,1,1]],[[0,3,2,0],[2,3,1,1],[2,1,3,2],[1,2,0,1]],[[0,2,3,0],[2,3,1,1],[2,1,3,2],[1,2,0,1]],[[0,2,2,0],[3,3,1,1],[2,1,3,2],[1,2,0,1]],[[0,2,2,0],[2,4,1,1],[2,1,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,1,1],[3,1,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,1,1],[2,1,3,2],[2,2,0,1]],[[0,2,2,0],[2,3,1,1],[2,1,3,2],[1,3,0,1]],[[0,3,2,0],[2,3,1,1],[2,1,3,2],[1,2,1,0]],[[0,2,3,0],[2,3,1,1],[2,1,3,2],[1,2,1,0]],[[0,2,2,0],[3,3,1,1],[2,1,3,2],[1,2,1,0]],[[0,2,2,0],[2,4,1,1],[2,1,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,1,1],[3,1,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,1,1],[2,1,3,2],[2,2,1,0]],[[0,2,2,0],[2,3,1,1],[2,1,3,2],[1,3,1,0]],[[1,2,2,1],[0,3,4,1],[0,3,3,0],[1,1,2,0]],[[1,2,2,2],[0,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,2,3,1],[0,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,3,2,1],[0,3,3,1],[0,3,3,0],[1,1,2,0]],[[0,3,2,0],[2,3,1,1],[2,2,1,2],[0,2,2,1]],[[0,2,3,0],[2,3,1,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[3,3,1,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[2,4,1,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[3,2,1,2],[0,2,2,1]],[[0,3,2,0],[2,3,1,1],[2,2,1,2],[1,1,2,1]],[[0,2,3,0],[2,3,1,1],[2,2,1,2],[1,1,2,1]],[[0,2,2,0],[3,3,1,1],[2,2,1,2],[1,1,2,1]],[[0,2,2,0],[2,4,1,1],[2,2,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[3,2,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[2,2,1,2],[2,1,2,1]],[[0,3,2,0],[2,3,1,1],[2,2,2,1],[0,2,2,1]],[[0,2,3,0],[2,3,1,1],[2,2,2,1],[0,2,2,1]],[[0,2,2,0],[3,3,1,1],[2,2,2,1],[0,2,2,1]],[[0,2,2,0],[2,4,1,1],[2,2,2,1],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[3,2,2,1],[0,2,2,1]],[[0,3,2,0],[2,3,1,1],[2,2,2,1],[1,1,2,1]],[[0,2,3,0],[2,3,1,1],[2,2,2,1],[1,1,2,1]],[[0,2,2,0],[3,3,1,1],[2,2,2,1],[1,1,2,1]],[[0,2,2,0],[2,4,1,1],[2,2,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[3,2,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[2,2,2,1],[2,1,2,1]],[[0,3,2,0],[2,3,1,1],[2,2,2,2],[0,2,2,0]],[[0,2,3,0],[2,3,1,1],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[3,3,1,1],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[2,4,1,1],[2,2,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,1,1],[3,2,2,2],[0,2,2,0]],[[0,3,2,0],[2,3,1,1],[2,2,2,2],[1,1,2,0]],[[0,2,3,0],[2,3,1,1],[2,2,2,2],[1,1,2,0]],[[0,2,2,0],[3,3,1,1],[2,2,2,2],[1,1,2,0]],[[0,2,2,0],[2,4,1,1],[2,2,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,1,1],[3,2,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,1,1],[2,2,2,2],[2,1,2,0]],[[1,2,2,1],[0,3,3,1],[0,3,4,0],[0,2,1,1]],[[1,2,2,1],[0,3,4,1],[0,3,3,0],[0,2,1,1]],[[1,2,2,2],[0,3,3,1],[0,3,3,0],[0,2,1,1]],[[1,2,3,1],[0,3,3,1],[0,3,3,0],[0,2,1,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,0],[0,2,2,1]],[[0,2,2,0],[3,3,1,1],[2,2,3,0],[0,2,2,1]],[[0,2,2,0],[2,4,1,1],[2,2,3,0],[0,2,2,1]],[[0,2,2,0],[2,3,1,1],[3,2,3,0],[0,2,2,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,0],[1,1,2,1]],[[0,2,2,0],[3,3,1,1],[2,2,3,0],[1,1,2,1]],[[0,2,2,0],[2,4,1,1],[2,2,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[3,2,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,1,1],[2,2,3,0],[2,1,2,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,1],[0,1,2,1]],[[0,2,3,0],[2,3,1,1],[2,2,3,1],[0,1,2,1]],[[0,2,2,0],[3,3,1,1],[2,2,3,1],[0,1,2,1]],[[0,2,2,0],[2,4,1,1],[2,2,3,1],[0,1,2,1]],[[0,2,2,0],[2,3,1,1],[3,2,3,1],[0,1,2,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,1],[0,2,1,1]],[[0,2,3,0],[2,3,1,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[3,3,1,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,4,1,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,1,1],[3,2,3,1],[0,2,1,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,1],[1,0,2,1]],[[0,2,3,0],[2,3,1,1],[2,2,3,1],[1,0,2,1]],[[0,2,2,0],[3,3,1,1],[2,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,4,1,1],[2,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,1,1],[3,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,1,1],[2,2,3,1],[2,0,2,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,1],[1,1,1,1]],[[0,2,3,0],[2,3,1,1],[2,2,3,1],[1,1,1,1]],[[0,2,2,0],[3,3,1,1],[2,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,4,1,1],[2,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,1,1],[3,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,1,1],[2,2,3,1],[2,1,1,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,1],[1,2,0,1]],[[0,2,2,0],[3,3,1,1],[2,2,3,1],[1,2,0,1]],[[0,2,2,0],[2,4,1,1],[2,2,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,1,1],[3,2,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,1,1],[2,2,3,1],[2,2,0,1]],[[1,3,2,1],[0,3,3,1],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[0,3,3,1],[0,3,3,0],[0,1,2,2]],[[1,2,2,1],[0,3,3,1],[0,3,3,0],[0,1,3,1]],[[1,2,2,1],[0,3,3,1],[0,3,4,0],[0,1,2,1]],[[1,2,2,1],[0,3,4,1],[0,3,3,0],[0,1,2,1]],[[1,2,2,2],[0,3,3,1],[0,3,3,0],[0,1,2,1]],[[1,2,3,1],[0,3,3,1],[0,3,3,0],[0,1,2,1]],[[1,3,2,1],[0,3,3,1],[0,3,3,0],[0,1,2,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,2],[0,1,1,1]],[[0,2,3,0],[2,3,1,1],[2,2,3,2],[0,1,1,1]],[[0,2,2,0],[3,3,1,1],[2,2,3,2],[0,1,1,1]],[[0,2,2,0],[2,4,1,1],[2,2,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,1,1],[3,2,3,2],[0,1,1,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,2],[0,1,2,0]],[[0,2,3,0],[2,3,1,1],[2,2,3,2],[0,1,2,0]],[[0,2,2,0],[3,3,1,1],[2,2,3,2],[0,1,2,0]],[[0,2,2,0],[2,4,1,1],[2,2,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,1,1],[3,2,3,2],[0,1,2,0]],[[0,3,2,0],[2,3,1,1],[2,2,3,2],[0,2,0,1]],[[0,2,3,0],[2,3,1,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,0],[3,3,1,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,0],[2,4,1,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,1,1],[3,2,3,2],[0,2,0,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,2],[0,2,1,0]],[[0,2,3,0],[2,3,1,1],[2,2,3,2],[0,2,1,0]],[[0,2,2,0],[3,3,1,1],[2,2,3,2],[0,2,1,0]],[[0,2,2,0],[2,4,1,1],[2,2,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,1,1],[3,2,3,2],[0,2,1,0]],[[0,3,2,0],[2,3,1,1],[2,2,3,2],[1,0,1,1]],[[0,2,3,0],[2,3,1,1],[2,2,3,2],[1,0,1,1]],[[0,2,2,0],[3,3,1,1],[2,2,3,2],[1,0,1,1]],[[0,2,2,0],[2,4,1,1],[2,2,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,1,1],[3,2,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,1,1],[2,2,3,2],[2,0,1,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,2],[1,0,2,0]],[[0,2,3,0],[2,3,1,1],[2,2,3,2],[1,0,2,0]],[[0,2,2,0],[3,3,1,1],[2,2,3,2],[1,0,2,0]],[[0,2,2,0],[2,4,1,1],[2,2,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,1,1],[3,2,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,1,1],[2,2,3,2],[2,0,2,0]],[[0,3,2,0],[2,3,1,1],[2,2,3,2],[1,1,0,1]],[[0,2,3,0],[2,3,1,1],[2,2,3,2],[1,1,0,1]],[[0,2,2,0],[3,3,1,1],[2,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,4,1,1],[2,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,1,1],[3,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,1,1],[2,2,3,2],[2,1,0,1]],[[0,3,2,0],[2,3,1,1],[2,2,3,2],[1,1,1,0]],[[0,2,3,0],[2,3,1,1],[2,2,3,2],[1,1,1,0]],[[0,2,2,0],[3,3,1,1],[2,2,3,2],[1,1,1,0]],[[0,2,2,0],[2,4,1,1],[2,2,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,1,1],[3,2,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,1,1],[2,2,3,2],[2,1,1,0]],[[0,3,2,0],[2,3,1,1],[2,2,3,2],[1,2,0,0]],[[0,2,3,0],[2,3,1,1],[2,2,3,2],[1,2,0,0]],[[0,2,2,0],[3,3,1,1],[2,2,3,2],[1,2,0,0]],[[0,2,2,0],[2,4,1,1],[2,2,3,2],[1,2,0,0]],[[0,2,2,0],[2,3,1,1],[3,2,3,2],[1,2,0,0]],[[0,2,2,0],[2,3,1,1],[2,2,3,2],[2,2,0,0]],[[1,2,2,1],[0,3,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,2,2],[0,3,3,1],[0,3,2,2],[0,2,1,0]],[[1,2,3,1],[0,3,3,1],[0,3,2,2],[0,2,1,0]],[[1,3,2,1],[0,3,3,1],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,4,1],[0,3,2,2],[0,2,0,1]],[[1,2,2,2],[0,3,3,1],[0,3,2,2],[0,2,0,1]],[[1,2,3,1],[0,3,3,1],[0,3,2,2],[0,2,0,1]],[[1,3,2,1],[0,3,3,1],[0,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,3,4,1],[0,3,2,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,1],[0,3,2,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,1],[0,3,2,2],[0,1,2,0]],[[1,3,2,1],[0,3,3,1],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,3,4,1],[0,3,2,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,1],[0,3,2,2],[0,1,1,1]],[[0,2,2,0],[3,3,1,1],[2,3,0,1],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[3,3,0,1],[1,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,3,0,1],[2,2,2,1]],[[0,2,2,0],[2,3,1,1],[2,3,0,1],[1,3,2,1]],[[0,2,2,0],[3,3,1,1],[2,3,0,2],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[3,3,0,2],[1,2,2,0]],[[0,2,2,0],[2,3,1,1],[2,3,0,2],[2,2,2,0]],[[0,2,2,0],[2,3,1,1],[2,3,0,2],[1,3,2,0]],[[1,2,3,1],[0,3,3,1],[0,3,2,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,1],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,3,4,1],[0,3,2,2],[0,0,2,1]],[[1,2,2,2],[0,3,3,1],[0,3,2,2],[0,0,2,1]],[[1,2,3,1],[0,3,3,1],[0,3,2,2],[0,0,2,1]],[[1,3,2,1],[0,3,3,1],[0,3,2,2],[0,0,2,1]],[[1,2,2,1],[0,3,4,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,2],[0,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[0,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[0,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[0,3,4,1],[0,3,2,1],[1,2,0,1]],[[1,2,2,2],[0,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[0,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[0,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[0,3,4,1],[0,3,2,1],[1,1,2,0]],[[1,2,2,2],[0,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[0,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[0,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,3,4,1],[0,3,2,1],[1,1,1,1]],[[1,2,2,2],[0,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[0,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[0,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[0,3,4,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,2],[0,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,2,3,1],[0,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[0,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[0,3,4,1],[0,3,2,0],[1,1,2,1]],[[1,2,2,2],[0,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[0,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[0,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,3,4,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,2],[0,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,2,3,1],[0,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,3,2,1],[0,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[0,3,4,1],[0,3,1,2],[1,2,0,1]],[[1,2,2,2],[0,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,2,3,1],[0,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[0,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[0,3,4,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,2],[0,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,2,3,1],[0,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,3,2,1],[0,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,3,4,1],[0,3,1,2],[1,1,1,1]],[[1,2,2,2],[0,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,2,3,1],[0,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,3,2,1],[0,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[0,3,4,1],[0,3,1,2],[0,1,2,1]],[[0,3,2,0],[2,3,1,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[3,3,1,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,4,1,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,3,1,1],[3,3,3,1],[1,0,1,1]],[[1,2,2,2],[0,3,3,1],[0,3,1,2],[0,1,2,1]],[[1,2,3,1],[0,3,3,1],[0,3,1,2],[0,1,2,1]],[[1,3,2,1],[0,3,3,1],[0,3,1,2],[0,1,2,1]],[[1,2,2,1],[0,3,4,1],[0,3,1,1],[1,2,2,0]],[[1,2,2,2],[0,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[0,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[0,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[0,3,4,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,2],[0,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,2,3,1],[0,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[0,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[0,3,4,1],[0,3,0,2],[1,2,2,0]],[[1,2,2,2],[0,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,2,3,1],[0,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,3,2,1],[0,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[0,3,4,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,2],[0,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,2,3,1],[0,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[0,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[0,3,4,1],[0,3,0,2],[1,1,2,1]],[[1,2,2,2],[0,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,2,3,1],[0,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[0,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,3,4,1],[0,3,0,1],[1,2,2,1]],[[1,2,2,2],[0,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,2,3,1],[0,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[0,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,2,2,1],[0,3,4,1],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,3,3,1],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[0,3,3,1],[0,2,3,2],[1,1,0,1]],[[1,3,2,1],[0,3,3,1],[0,2,3,2],[1,1,0,1]],[[0,3,2,0],[2,3,1,1],[2,3,3,2],[1,0,0,1]],[[0,2,3,0],[2,3,1,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[3,3,1,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[2,4,1,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,0],[2,3,1,1],[3,3,3,2],[1,0,0,1]],[[0,3,2,0],[2,3,1,1],[2,3,3,2],[1,0,1,0]],[[0,2,3,0],[2,3,1,1],[2,3,3,2],[1,0,1,0]],[[0,2,2,0],[3,3,1,1],[2,3,3,2],[1,0,1,0]],[[0,2,2,0],[2,4,1,1],[2,3,3,2],[1,0,1,0]],[[0,2,2,0],[2,3,1,1],[3,3,3,2],[1,0,1,0]],[[1,2,2,1],[0,3,4,1],[0,2,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,1],[0,2,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,1],[0,2,3,2],[0,1,2,0]],[[1,3,2,1],[0,3,3,1],[0,2,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,4,1],[0,2,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,1],[0,2,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,1],[0,2,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,1],[0,2,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,4,1],[0,2,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,3,1],[0,2,3,2],[0,0,2,1]],[[1,2,3,1],[0,3,3,1],[0,2,3,2],[0,0,2,1]],[[1,3,2,1],[0,3,3,1],[0,2,3,2],[0,0,2,1]],[[1,2,2,1],[0,3,3,1],[0,2,4,1],[1,2,1,0]],[[1,2,2,1],[0,3,4,1],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[0,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[0,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[0,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,3,3,1],[0,2,4,1],[1,2,0,1]],[[1,2,2,1],[0,3,4,1],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[0,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[0,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[0,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[0,3,3,1],[0,2,3,1],[1,1,3,0]],[[1,2,2,1],[0,3,3,1],[0,2,4,1],[1,1,2,0]],[[1,2,2,1],[0,3,4,1],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[0,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[0,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[0,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[0,3,3,1],[0,2,4,1],[1,1,1,1]],[[1,2,2,1],[0,3,4,1],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[0,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[0,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[0,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,3,3,1],[0,2,4,1],[1,0,2,1]],[[1,2,2,1],[0,3,4,1],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[0,3,3,1],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[0,3,3,1],[0,2,3,1],[1,0,2,1]],[[1,3,2,1],[0,3,3,1],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[0,3,3,1],[0,2,4,0],[1,2,1,1]],[[1,2,2,1],[0,3,4,1],[0,2,3,0],[1,2,1,1]],[[1,2,2,2],[0,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[0,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[0,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[0,3,3,1],[0,2,3,0],[1,1,2,2]],[[1,2,2,1],[0,3,3,1],[0,2,3,0],[1,1,3,1]],[[1,2,2,1],[0,3,3,1],[0,2,4,0],[1,1,2,1]],[[1,2,2,1],[0,3,4,1],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[0,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[0,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[0,3,3,1],[0,2,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,1,2],[0,2,4,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[0,2,3,0],[2,2,2,1]],[[0,2,2,0],[2,3,1,2],[0,2,3,0],[1,3,2,1]],[[0,2,2,0],[2,3,1,2],[0,2,3,0],[1,2,3,1]],[[0,2,2,0],[2,3,1,2],[0,2,3,0],[1,2,2,2]],[[0,2,2,0],[2,3,1,2],[0,2,4,1],[1,2,2,0]],[[0,2,2,0],[2,3,1,2],[0,2,3,1],[2,2,2,0]],[[0,2,2,0],[2,3,1,2],[0,2,3,1],[1,3,2,0]],[[0,2,2,0],[2,3,1,2],[0,2,3,1],[1,2,3,0]],[[1,2,2,1],[0,3,4,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[0,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[0,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,3,2,1],[0,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,3,4,1],[0,2,2,2],[1,2,0,1]],[[0,3,2,0],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,3,0],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[3,3,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,4,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,3],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[0,4,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[0,3,0,3],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[0,3,0,2],[2,2,2,1]],[[0,2,2,0],[2,3,1,2],[0,3,0,2],[1,3,2,1]],[[0,2,2,0],[2,3,1,2],[0,3,0,2],[1,2,3,1]],[[0,2,2,0],[2,3,1,2],[0,3,0,2],[1,2,2,2]],[[0,3,2,0],[2,3,1,2],[0,3,2,0],[1,2,2,1]],[[0,2,3,0],[2,3,1,2],[0,3,2,0],[1,2,2,1]],[[0,2,2,0],[3,3,1,2],[0,3,2,0],[1,2,2,1]],[[0,2,2,0],[2,4,1,2],[0,3,2,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[0,4,2,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[0,3,2,0],[2,2,2,1]],[[0,2,2,0],[2,3,1,2],[0,3,2,0],[1,3,2,1]],[[0,2,2,0],[2,3,1,2],[0,3,2,0],[1,2,3,1]],[[0,2,2,0],[2,3,1,2],[0,3,2,0],[1,2,2,2]],[[0,3,2,0],[2,3,1,2],[0,3,2,1],[1,2,2,0]],[[0,2,3,0],[2,3,1,2],[0,3,2,1],[1,2,2,0]],[[0,2,2,0],[3,3,1,2],[0,3,2,1],[1,2,2,0]],[[0,2,2,0],[2,4,1,2],[0,3,2,1],[1,2,2,0]],[[0,2,2,0],[2,3,1,2],[0,4,2,1],[1,2,2,0]],[[0,2,2,0],[2,3,1,2],[0,3,2,1],[2,2,2,0]],[[0,2,2,0],[2,3,1,2],[0,3,2,1],[1,3,2,0]],[[0,2,2,0],[2,3,1,2],[0,3,2,1],[1,2,3,0]],[[1,2,2,2],[0,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[0,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,3,2,1],[0,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[0,3,4,1],[0,2,2,2],[1,1,2,0]],[[0,3,2,0],[2,3,1,2],[0,3,3,0],[1,1,2,1]],[[0,2,3,0],[2,3,1,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,0],[3,3,1,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,4,1,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,1,2],[0,4,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,1,2],[0,3,4,0],[1,1,2,1]],[[0,2,2,0],[2,3,1,2],[0,3,3,0],[1,1,3,1]],[[0,2,2,0],[2,3,1,2],[0,3,3,0],[1,1,2,2]],[[0,3,2,0],[2,3,1,2],[0,3,3,0],[1,2,1,1]],[[0,2,3,0],[2,3,1,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,0],[3,3,1,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,0],[2,4,1,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,0],[2,3,1,2],[0,4,3,0],[1,2,1,1]],[[0,2,2,0],[2,3,1,2],[0,3,4,0],[1,2,1,1]],[[0,2,2,0],[2,3,1,2],[0,3,3,0],[2,2,1,1]],[[0,2,2,0],[2,3,1,2],[0,3,3,0],[1,3,1,1]],[[0,3,2,0],[2,3,1,2],[0,3,3,1],[1,1,1,1]],[[0,2,3,0],[2,3,1,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,0],[3,3,1,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,4,1,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,1,2],[0,4,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,1,2],[0,3,4,1],[1,1,1,1]],[[0,3,2,0],[2,3,1,2],[0,3,3,1],[1,1,2,0]],[[0,2,3,0],[2,3,1,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,0],[3,3,1,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,0],[2,4,1,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,0],[2,3,1,2],[0,4,3,1],[1,1,2,0]],[[0,2,2,0],[2,3,1,2],[0,3,4,1],[1,1,2,0]],[[0,2,2,0],[2,3,1,2],[0,3,3,1],[1,1,3,0]],[[0,3,2,0],[2,3,1,2],[0,3,3,1],[1,2,0,1]],[[0,2,3,0],[2,3,1,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,0],[3,3,1,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,4,1,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,1,2],[0,4,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,1,2],[0,3,4,1],[1,2,0,1]],[[0,2,2,0],[2,3,1,2],[0,3,3,1],[2,2,0,1]],[[0,2,2,0],[2,3,1,2],[0,3,3,1],[1,3,0,1]],[[0,3,2,0],[2,3,1,2],[0,3,3,1],[1,2,1,0]],[[0,2,3,0],[2,3,1,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,0],[3,3,1,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,0],[2,4,1,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,0],[2,3,1,2],[0,4,3,1],[1,2,1,0]],[[0,2,2,0],[2,3,1,2],[0,3,4,1],[1,2,1,0]],[[0,2,2,0],[2,3,1,2],[0,3,3,1],[2,2,1,0]],[[0,2,2,0],[2,3,1,2],[0,3,3,1],[1,3,1,0]],[[1,2,2,2],[0,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[0,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,3,2,1],[0,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[0,3,4,1],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[0,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[0,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,3,2,1],[0,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[0,3,4,1],[0,2,2,2],[1,0,2,1]],[[1,2,2,2],[0,3,3,1],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[0,3,3,1],[0,2,2,2],[1,0,2,1]],[[1,3,2,1],[0,3,3,1],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[0,3,4,1],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[0,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[0,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,3,2,1],[0,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[0,3,4,1],[0,2,0,2],[1,2,2,1]],[[1,2,2,2],[0,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,2,3,1],[0,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,3,2,1],[0,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,3,4,1],[0,1,3,2],[1,1,2,0]],[[1,2,2,2],[0,3,3,1],[0,1,3,2],[1,1,2,0]],[[1,2,3,1],[0,3,3,1],[0,1,3,2],[1,1,2,0]],[[1,3,2,1],[0,3,3,1],[0,1,3,2],[1,1,2,0]],[[1,2,2,1],[0,3,4,1],[0,1,3,2],[1,1,1,1]],[[1,2,2,2],[0,3,3,1],[0,1,3,2],[1,1,1,1]],[[1,2,3,1],[0,3,3,1],[0,1,3,2],[1,1,1,1]],[[1,3,2,1],[0,3,3,1],[0,1,3,2],[1,1,1,1]],[[1,2,2,1],[0,3,4,1],[0,1,3,2],[1,0,2,1]],[[1,2,2,2],[0,3,3,1],[0,1,3,2],[1,0,2,1]],[[1,2,3,1],[0,3,3,1],[0,1,3,2],[1,0,2,1]],[[1,3,2,1],[0,3,3,1],[0,1,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,1,2],[1,2,4,0],[0,2,2,1]],[[0,2,2,0],[2,3,1,2],[1,2,3,0],[0,3,2,1]],[[0,2,2,0],[2,3,1,2],[1,2,3,0],[0,2,3,1]],[[0,2,2,0],[2,3,1,2],[1,2,3,0],[0,2,2,2]],[[0,2,2,0],[2,3,1,2],[1,2,4,1],[0,2,2,0]],[[0,2,2,0],[2,3,1,2],[1,2,3,1],[0,3,2,0]],[[0,2,2,0],[2,3,1,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,1],[0,3,3,1],[0,1,3,1],[1,2,3,0]],[[1,2,2,1],[0,3,3,1],[0,1,3,1],[1,3,2,0]],[[1,2,2,1],[0,3,3,1],[0,1,4,1],[1,2,2,0]],[[1,2,2,1],[0,3,4,1],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[0,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,3,2,1],[0,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,3,3,1],[0,1,4,1],[1,2,1,1]],[[1,2,2,1],[0,3,4,1],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[0,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[0,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,3,2,1],[0,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,3,3,1],[0,1,3,0],[1,2,2,2]],[[1,2,2,1],[0,3,3,1],[0,1,3,0],[1,2,3,1]],[[1,2,2,1],[0,3,3,1],[0,1,3,0],[1,3,2,1]],[[1,2,2,1],[0,3,3,1],[0,1,4,0],[1,2,2,1]],[[1,2,2,1],[0,3,4,1],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[0,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[0,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[0,3,3,1],[0,1,3,0],[1,2,2,1]],[[0,3,2,0],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,3,0],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[3,3,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,4,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,3,1,3],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,3,1,2],[1,4,0,2],[0,2,2,1]],[[0,2,2,0],[2,3,1,2],[1,3,0,3],[0,2,2,1]],[[0,2,2,0],[2,3,1,2],[1,3,0,2],[0,3,2,1]],[[0,2,2,0],[2,3,1,2],[1,3,0,2],[0,2,3,1]],[[0,2,2,0],[2,3,1,2],[1,3,0,2],[0,2,2,2]],[[0,3,2,0],[2,3,1,2],[1,3,0,2],[1,1,2,1]],[[0,2,3,0],[2,3,1,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[3,3,1,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,4,1,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,2],[1,4,0,2],[1,1,2,1]],[[1,2,2,1],[0,3,4,1],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[0,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[0,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,3,2,1],[0,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,3,4,1],[0,1,2,2],[1,2,1,1]],[[0,3,2,0],[2,3,1,2],[1,3,2,0],[0,2,2,1]],[[0,2,3,0],[2,3,1,2],[1,3,2,0],[0,2,2,1]],[[0,2,2,0],[3,3,1,2],[1,3,2,0],[0,2,2,1]],[[0,2,2,0],[2,4,1,2],[1,3,2,0],[0,2,2,1]],[[0,2,2,0],[2,3,1,2],[1,4,2,0],[0,2,2,1]],[[0,2,2,0],[2,3,1,2],[1,3,2,0],[0,3,2,1]],[[0,2,2,0],[2,3,1,2],[1,3,2,0],[0,2,3,1]],[[0,2,2,0],[2,3,1,2],[1,3,2,0],[0,2,2,2]],[[0,3,2,0],[2,3,1,2],[1,3,2,0],[1,1,2,1]],[[0,2,3,0],[2,3,1,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,0],[3,3,1,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,4,1,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,3,1,2],[1,4,2,0],[1,1,2,1]],[[0,3,2,0],[2,3,1,2],[1,3,2,1],[0,2,2,0]],[[0,2,3,0],[2,3,1,2],[1,3,2,1],[0,2,2,0]],[[0,2,2,0],[3,3,1,2],[1,3,2,1],[0,2,2,0]],[[0,2,2,0],[2,4,1,2],[1,3,2,1],[0,2,2,0]],[[0,2,2,0],[2,3,1,2],[1,4,2,1],[0,2,2,0]],[[0,2,2,0],[2,3,1,2],[1,3,2,1],[0,3,2,0]],[[0,2,2,0],[2,3,1,2],[1,3,2,1],[0,2,3,0]],[[0,3,2,0],[2,3,1,2],[1,3,2,1],[1,1,2,0]],[[0,2,3,0],[2,3,1,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,0],[3,3,1,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,4,1,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,3,1,2],[1,4,2,1],[1,1,2,0]],[[1,2,2,2],[0,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[0,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,3,2,1],[0,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,3,4,1],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,3,2,1],[0,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,4,1],[0,0,3,2],[1,2,2,0]],[[1,2,2,2],[0,3,3,1],[0,0,3,2],[1,2,2,0]],[[1,2,3,1],[0,3,3,1],[0,0,3,2],[1,2,2,0]],[[1,3,2,1],[0,3,3,1],[0,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,3,4,1],[0,0,3,2],[1,2,1,1]],[[1,2,2,2],[0,3,3,1],[0,0,3,2],[1,2,1,1]],[[1,2,3,1],[0,3,3,1],[0,0,3,2],[1,2,1,1]],[[1,3,2,1],[0,3,3,1],[0,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,3,4,1],[0,0,3,2],[1,1,2,1]],[[1,2,2,2],[0,3,3,1],[0,0,3,2],[1,1,2,1]],[[1,2,3,1],[0,3,3,1],[0,0,3,2],[1,1,2,1]],[[1,3,2,1],[0,3,3,1],[0,0,3,2],[1,1,2,1]],[[1,2,2,1],[0,3,4,1],[0,0,3,2],[0,2,2,1]],[[1,2,2,2],[0,3,3,1],[0,0,3,2],[0,2,2,1]],[[1,2,3,1],[0,3,3,1],[0,0,3,2],[0,2,2,1]],[[1,3,2,1],[0,3,3,1],[0,0,3,2],[0,2,2,1]],[[1,2,2,1],[0,3,4,1],[0,0,2,2],[1,2,2,1]],[[1,2,2,2],[0,3,3,1],[0,0,2,2],[1,2,2,1]],[[1,2,3,1],[0,3,3,1],[0,0,2,2],[1,2,2,1]],[[1,3,2,1],[0,3,3,1],[0,0,2,2],[1,2,2,1]],[[0,3,2,0],[2,3,1,2],[1,3,3,0],[0,1,2,1]],[[0,2,3,0],[2,3,1,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,0],[3,3,1,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,4,1,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,3,1,2],[1,4,3,0],[0,1,2,1]],[[0,2,2,0],[2,3,1,2],[1,3,4,0],[0,1,2,1]],[[0,2,2,0],[2,3,1,2],[1,3,3,0],[0,1,3,1]],[[0,2,2,0],[2,3,1,2],[1,3,3,0],[0,1,2,2]],[[0,3,2,0],[2,3,1,2],[1,3,3,0],[0,2,1,1]],[[0,2,3,0],[2,3,1,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,0],[3,3,1,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,4,1,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,3,1,2],[1,4,3,0],[0,2,1,1]],[[0,2,2,0],[2,3,1,2],[1,3,4,0],[0,2,1,1]],[[0,2,2,0],[2,3,1,2],[1,3,3,0],[0,3,1,1]],[[0,3,2,0],[2,3,1,2],[1,3,3,0],[1,0,2,1]],[[0,2,3,0],[2,3,1,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,0],[3,3,1,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,4,1,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,1,2],[1,4,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,1,2],[1,3,4,0],[1,0,2,1]],[[0,2,2,0],[2,3,1,2],[1,3,3,0],[1,0,3,1]],[[0,2,2,0],[2,3,1,2],[1,3,3,0],[1,0,2,2]],[[0,3,2,0],[2,3,1,2],[1,3,3,0],[1,1,1,1]],[[0,2,3,0],[2,3,1,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,0],[3,3,1,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,4,1,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,0],[2,3,1,2],[1,4,3,0],[1,1,1,1]],[[0,2,2,0],[2,3,1,2],[1,3,4,0],[1,1,1,1]],[[0,3,2,0],[2,3,1,2],[1,3,3,0],[1,2,0,1]],[[0,2,3,0],[2,3,1,2],[1,3,3,0],[1,2,0,1]],[[0,2,2,0],[3,3,1,2],[1,3,3,0],[1,2,0,1]],[[0,2,2,0],[2,4,1,2],[1,3,3,0],[1,2,0,1]],[[0,2,2,0],[2,3,1,2],[1,4,3,0],[1,2,0,1]],[[0,3,2,0],[2,3,1,2],[1,3,3,1],[0,1,1,1]],[[0,2,3,0],[2,3,1,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,0],[3,3,1,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,4,1,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,3,1,2],[1,4,3,1],[0,1,1,1]],[[0,2,2,0],[2,3,1,2],[1,3,4,1],[0,1,1,1]],[[0,3,2,0],[2,3,1,2],[1,3,3,1],[0,1,2,0]],[[0,2,3,0],[2,3,1,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,0],[3,3,1,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,4,1,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,3,1,2],[1,4,3,1],[0,1,2,0]],[[0,2,2,0],[2,3,1,2],[1,3,4,1],[0,1,2,0]],[[0,2,2,0],[2,3,1,2],[1,3,3,1],[0,1,3,0]],[[0,3,2,0],[2,3,1,2],[1,3,3,1],[0,2,0,1]],[[0,2,3,0],[2,3,1,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,0],[3,3,1,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,4,1,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,3,1,2],[1,4,3,1],[0,2,0,1]],[[0,2,2,0],[2,3,1,2],[1,3,4,1],[0,2,0,1]],[[0,2,2,0],[2,3,1,2],[1,3,3,1],[0,3,0,1]],[[0,3,2,0],[2,3,1,2],[1,3,3,1],[0,2,1,0]],[[0,2,3,0],[2,3,1,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,0],[3,3,1,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,4,1,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,3,1,2],[1,4,3,1],[0,2,1,0]],[[0,2,2,0],[2,3,1,2],[1,3,4,1],[0,2,1,0]],[[0,2,2,0],[2,3,1,2],[1,3,3,1],[0,3,1,0]],[[0,3,2,0],[2,3,1,2],[1,3,3,1],[1,0,1,1]],[[0,2,3,0],[2,3,1,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,0],[3,3,1,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,4,1,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,0],[2,3,1,2],[1,4,3,1],[1,0,1,1]],[[0,2,2,0],[2,3,1,2],[1,3,4,1],[1,0,1,1]],[[0,3,2,0],[2,3,1,2],[1,3,3,1],[1,0,2,0]],[[0,2,3,0],[2,3,1,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,0],[3,3,1,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,4,1,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,1,2],[1,4,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,1,2],[1,3,4,1],[1,0,2,0]],[[0,2,2,0],[2,3,1,2],[1,3,3,1],[1,0,3,0]],[[0,3,2,0],[2,3,1,2],[1,3,3,1],[1,1,0,1]],[[0,2,3,0],[2,3,1,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,0],[3,3,1,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,4,1,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,1,2],[1,4,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,1,2],[1,3,4,1],[1,1,0,1]],[[0,3,2,0],[2,3,1,2],[1,3,3,1],[1,1,1,0]],[[0,2,3,0],[2,3,1,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,0],[3,3,1,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,4,1,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,1,2],[1,4,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,1,2],[1,3,4,1],[1,1,1,0]],[[0,3,2,0],[2,3,1,2],[1,3,3,1],[1,2,0,0]],[[0,2,3,0],[2,3,1,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,0],[3,3,1,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,4,1,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,3,1,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[0,3,3,0],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[0,3,3,0],[2,4,3,1],[1,1,0,0]],[[1,2,2,1],[0,3,3,0],[3,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,4,3,0],[2,3,3,1],[1,1,0,0]],[[1,2,3,1],[0,3,3,0],[2,3,3,1],[1,1,0,0]],[[1,3,2,1],[0,3,3,0],[2,3,3,1],[1,1,0,0]],[[2,2,2,1],[0,3,3,0],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,3,3,0],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[0,3,3,0],[3,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,4,3,0],[2,3,3,1],[0,2,0,0]],[[1,2,3,1],[0,3,3,0],[2,3,3,1],[0,2,0,0]],[[1,3,2,1],[0,3,3,0],[2,3,3,1],[0,2,0,0]],[[2,2,2,1],[0,3,3,0],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,4,3,0],[2,3,3,1],[0,0,2,0]],[[1,2,3,1],[0,3,3,0],[2,3,3,1],[0,0,2,0]],[[1,3,2,1],[0,3,3,0],[2,3,3,1],[0,0,2,0]],[[2,2,2,1],[0,3,3,0],[2,3,3,1],[0,0,2,0]],[[1,2,2,1],[0,4,3,0],[2,3,3,1],[0,0,1,1]],[[1,2,3,1],[0,3,3,0],[2,3,3,1],[0,0,1,1]],[[1,3,2,1],[0,3,3,0],[2,3,3,1],[0,0,1,1]],[[2,2,2,1],[0,3,3,0],[2,3,3,1],[0,0,1,1]],[[1,2,2,1],[0,3,3,0],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[0,3,3,0],[2,4,3,0],[1,2,0,0]],[[1,2,2,1],[0,3,3,0],[3,3,3,0],[1,2,0,0]],[[1,2,2,1],[0,4,3,0],[2,3,3,0],[1,2,0,0]],[[1,2,3,1],[0,3,3,0],[2,3,3,0],[1,2,0,0]],[[1,3,2,1],[0,3,3,0],[2,3,3,0],[1,2,0,0]],[[2,2,2,1],[0,3,3,0],[2,3,3,0],[1,2,0,0]],[[1,2,2,1],[0,3,3,0],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[0,3,3,0],[2,4,3,0],[1,1,1,0]],[[1,2,2,1],[0,3,3,0],[3,3,3,0],[1,1,1,0]],[[1,2,2,1],[0,4,3,0],[2,3,3,0],[1,1,1,0]],[[1,2,3,1],[0,3,3,0],[2,3,3,0],[1,1,1,0]],[[1,3,2,1],[0,3,3,0],[2,3,3,0],[1,1,1,0]],[[2,2,2,1],[0,3,3,0],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[0,3,3,0],[2,3,3,0],[2,0,2,0]],[[1,2,2,1],[0,3,3,0],[2,4,3,0],[1,0,2,0]],[[1,2,2,1],[0,3,3,0],[3,3,3,0],[1,0,2,0]],[[1,2,2,1],[0,4,3,0],[2,3,3,0],[1,0,2,0]],[[1,2,3,1],[0,3,3,0],[2,3,3,0],[1,0,2,0]],[[1,3,2,1],[0,3,3,0],[2,3,3,0],[1,0,2,0]],[[2,2,2,1],[0,3,3,0],[2,3,3,0],[1,0,2,0]],[[1,2,2,1],[0,3,3,0],[2,3,3,0],[0,3,1,0]],[[1,2,2,1],[0,3,3,0],[2,4,3,0],[0,2,1,0]],[[1,2,2,1],[0,3,3,0],[3,3,3,0],[0,2,1,0]],[[1,2,2,1],[0,4,3,0],[2,3,3,0],[0,2,1,0]],[[1,2,3,1],[0,3,3,0],[2,3,3,0],[0,2,1,0]],[[1,3,2,1],[0,3,3,0],[2,3,3,0],[0,2,1,0]],[[2,2,2,1],[0,3,3,0],[2,3,3,0],[0,2,1,0]],[[0,3,2,0],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,3,0],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[3,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,4,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,3],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[3,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,0,1,3],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,0,1,2],[2,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,0,1,2],[1,3,2,1]],[[0,2,2,0],[2,3,1,2],[2,0,1,2],[1,2,3,1]],[[0,2,2,0],[2,3,1,2],[2,0,1,2],[1,2,2,2]],[[0,3,2,0],[2,3,1,2],[2,0,3,0],[1,2,2,1]],[[0,2,3,0],[2,3,1,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[3,3,1,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,4,1,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[3,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,0,4,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,0,3,0],[2,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,0,3,0],[1,3,2,1]],[[0,2,2,0],[2,3,1,2],[2,0,3,0],[1,2,3,1]],[[0,2,2,0],[2,3,1,2],[2,0,3,0],[1,2,2,2]],[[0,3,2,0],[2,3,1,2],[2,0,3,1],[1,2,2,0]],[[0,2,3,0],[2,3,1,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[3,3,1,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,4,1,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,3,1,2],[3,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,3,1,2],[2,0,4,1],[1,2,2,0]],[[0,2,2,0],[2,3,1,2],[2,0,3,1],[2,2,2,0]],[[0,2,2,0],[2,3,1,2],[2,0,3,1],[1,3,2,0]],[[0,2,2,0],[2,3,1,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[0,3,3,0],[2,4,3,0],[0,1,2,0]],[[1,2,2,1],[0,3,3,0],[3,3,3,0],[0,1,2,0]],[[1,2,2,1],[0,4,3,0],[2,3,3,0],[0,1,2,0]],[[1,2,3,1],[0,3,3,0],[2,3,3,0],[0,1,2,0]],[[1,3,2,1],[0,3,3,0],[2,3,3,0],[0,1,2,0]],[[2,2,2,1],[0,3,3,0],[2,3,3,0],[0,1,2,0]],[[1,2,2,1],[0,4,3,0],[2,3,3,0],[0,0,2,1]],[[1,2,3,1],[0,3,3,0],[2,3,3,0],[0,0,2,1]],[[1,3,2,1],[0,3,3,0],[2,3,3,0],[0,0,2,1]],[[2,2,2,1],[0,3,3,0],[2,3,3,0],[0,0,2,1]],[[0,3,2,0],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,3,0],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[3,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,4,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,3],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[3,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,1,0,3],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,1,0,2],[2,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,1,0,2],[1,3,2,1]],[[0,2,2,0],[2,3,1,2],[2,1,0,2],[1,2,3,1]],[[0,2,2,0],[2,3,1,2],[2,1,0,2],[1,2,2,2]],[[0,3,2,0],[2,3,1,2],[2,1,2,0],[1,2,2,1]],[[0,2,3,0],[2,3,1,2],[2,1,2,0],[1,2,2,1]],[[0,2,2,0],[3,3,1,2],[2,1,2,0],[1,2,2,1]],[[0,2,2,0],[2,4,1,2],[2,1,2,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[3,1,2,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,1,2,0],[2,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,1,2,0],[1,3,2,1]],[[0,2,2,0],[2,3,1,2],[2,1,2,0],[1,2,3,1]],[[0,2,2,0],[2,3,1,2],[2,1,2,0],[1,2,2,2]],[[0,3,2,0],[2,3,1,2],[2,1,2,1],[1,2,2,0]],[[0,2,3,0],[2,3,1,2],[2,1,2,1],[1,2,2,0]],[[0,2,2,0],[3,3,1,2],[2,1,2,1],[1,2,2,0]],[[0,2,2,0],[2,4,1,2],[2,1,2,1],[1,2,2,0]],[[0,2,2,0],[2,3,1,2],[3,1,2,1],[1,2,2,0]],[[0,2,2,0],[2,3,1,2],[2,1,2,1],[2,2,2,0]],[[0,2,2,0],[2,3,1,2],[2,1,2,1],[1,3,2,0]],[[0,2,2,0],[2,3,1,2],[2,1,2,1],[1,2,3,0]],[[0,3,2,0],[2,3,1,2],[2,1,3,0],[1,2,1,1]],[[0,2,3,0],[2,3,1,2],[2,1,3,0],[1,2,1,1]],[[0,2,2,0],[3,3,1,2],[2,1,3,0],[1,2,1,1]],[[0,2,2,0],[2,4,1,2],[2,1,3,0],[1,2,1,1]],[[0,2,2,0],[2,3,1,2],[3,1,3,0],[1,2,1,1]],[[0,2,2,0],[2,3,1,2],[2,1,3,0],[2,2,1,1]],[[0,2,2,0],[2,3,1,2],[2,1,3,0],[1,3,1,1]],[[0,3,2,0],[2,3,1,2],[2,1,3,1],[1,2,0,1]],[[0,2,3,0],[2,3,1,2],[2,1,3,1],[1,2,0,1]],[[0,2,2,0],[3,3,1,2],[2,1,3,1],[1,2,0,1]],[[0,2,2,0],[2,4,1,2],[2,1,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,1,2],[3,1,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,1,2],[2,1,3,1],[2,2,0,1]],[[0,2,2,0],[2,3,1,2],[2,1,3,1],[1,3,0,1]],[[0,3,2,0],[2,3,1,2],[2,1,3,1],[1,2,1,0]],[[0,2,3,0],[2,3,1,2],[2,1,3,1],[1,2,1,0]],[[0,2,2,0],[3,3,1,2],[2,1,3,1],[1,2,1,0]],[[0,2,2,0],[2,4,1,2],[2,1,3,1],[1,2,1,0]],[[0,2,2,0],[2,3,1,2],[3,1,3,1],[1,2,1,0]],[[0,2,2,0],[2,3,1,2],[2,1,3,1],[2,2,1,0]],[[0,2,2,0],[2,3,1,2],[2,1,3,1],[1,3,1,0]],[[0,3,2,0],[2,3,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,3,0],[2,3,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[3,3,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[2,4,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[2,3,1,2],[3,2,0,2],[0,2,2,1]],[[0,3,2,0],[2,3,1,2],[2,2,0,2],[1,1,2,1]],[[0,2,3,0],[2,3,1,2],[2,2,0,2],[1,1,2,1]],[[0,2,2,0],[3,3,1,2],[2,2,0,2],[1,1,2,1]],[[0,2,2,0],[2,4,1,2],[2,2,0,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,2],[3,2,0,2],[1,1,2,1]],[[0,2,2,0],[2,3,1,2],[2,2,0,2],[2,1,2,1]],[[0,3,2,0],[2,3,1,2],[2,2,2,0],[0,2,2,1]],[[0,2,3,0],[2,3,1,2],[2,2,2,0],[0,2,2,1]],[[0,2,2,0],[3,3,1,2],[2,2,2,0],[0,2,2,1]],[[0,2,2,0],[2,4,1,2],[2,2,2,0],[0,2,2,1]],[[0,2,2,0],[2,3,1,2],[3,2,2,0],[0,2,2,1]],[[0,3,2,0],[2,3,1,2],[2,2,2,0],[1,1,2,1]],[[0,2,3,0],[2,3,1,2],[2,2,2,0],[1,1,2,1]],[[0,2,2,0],[3,3,1,2],[2,2,2,0],[1,1,2,1]],[[0,2,2,0],[2,4,1,2],[2,2,2,0],[1,1,2,1]],[[0,2,2,0],[2,3,1,2],[3,2,2,0],[1,1,2,1]],[[0,2,2,0],[2,3,1,2],[2,2,2,0],[2,1,2,1]],[[0,3,2,0],[2,3,1,2],[2,2,2,1],[0,2,2,0]],[[0,2,3,0],[2,3,1,2],[2,2,2,1],[0,2,2,0]],[[0,2,2,0],[3,3,1,2],[2,2,2,1],[0,2,2,0]],[[0,2,2,0],[2,4,1,2],[2,2,2,1],[0,2,2,0]],[[0,2,2,0],[2,3,1,2],[3,2,2,1],[0,2,2,0]],[[0,3,2,0],[2,3,1,2],[2,2,2,1],[1,1,2,0]],[[0,2,3,0],[2,3,1,2],[2,2,2,1],[1,1,2,0]],[[0,2,2,0],[3,3,1,2],[2,2,2,1],[1,1,2,0]],[[0,2,2,0],[2,4,1,2],[2,2,2,1],[1,1,2,0]],[[0,2,2,0],[2,3,1,2],[3,2,2,1],[1,1,2,0]],[[0,2,2,0],[2,3,1,2],[2,2,2,1],[2,1,2,0]],[[1,2,2,1],[0,3,3,0],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[0,3,3,0],[2,4,2,1],[1,2,0,0]],[[1,2,2,1],[0,3,3,0],[3,3,2,1],[1,2,0,0]],[[1,2,2,1],[0,4,3,0],[2,3,2,1],[1,2,0,0]],[[1,2,3,1],[0,3,3,0],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[0,3,3,0],[2,3,2,1],[1,2,0,0]],[[2,2,2,1],[0,3,3,0],[2,3,2,1],[1,2,0,0]],[[0,3,2,0],[2,3,1,2],[2,2,3,0],[0,1,2,1]],[[0,2,3,0],[2,3,1,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,0],[3,3,1,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,0],[2,4,1,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,0],[2,3,1,2],[3,2,3,0],[0,1,2,1]],[[0,3,2,0],[2,3,1,2],[2,2,3,0],[0,2,1,1]],[[0,2,3,0],[2,3,1,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,0],[3,3,1,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,0],[2,4,1,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,0],[2,3,1,2],[3,2,3,0],[0,2,1,1]],[[0,3,2,0],[2,3,1,2],[2,2,3,0],[1,0,2,1]],[[0,2,3,0],[2,3,1,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,0],[3,3,1,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,0],[2,4,1,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,1,2],[3,2,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,1,2],[2,2,3,0],[2,0,2,1]],[[0,3,2,0],[2,3,1,2],[2,2,3,0],[1,1,1,1]],[[0,2,3,0],[2,3,1,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,0],[3,3,1,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,0],[2,4,1,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,0],[2,3,1,2],[3,2,3,0],[1,1,1,1]],[[0,2,2,0],[2,3,1,2],[2,2,3,0],[2,1,1,1]],[[0,3,2,0],[2,3,1,2],[2,2,3,0],[1,2,0,1]],[[0,2,3,0],[2,3,1,2],[2,2,3,0],[1,2,0,1]],[[0,2,2,0],[3,3,1,2],[2,2,3,0],[1,2,0,1]],[[0,2,2,0],[2,4,1,2],[2,2,3,0],[1,2,0,1]],[[0,2,2,0],[2,3,1,2],[3,2,3,0],[1,2,0,1]],[[0,2,2,0],[2,3,1,2],[2,2,3,0],[2,2,0,1]],[[1,2,2,1],[0,3,3,0],[2,3,2,1],[2,1,1,0]],[[1,2,2,1],[0,3,3,0],[2,4,2,1],[1,1,1,0]],[[1,2,2,1],[0,3,3,0],[3,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,4,3,0],[2,3,2,1],[1,1,1,0]],[[1,2,3,1],[0,3,3,0],[2,3,2,1],[1,1,1,0]],[[0,3,2,0],[2,3,1,2],[2,2,3,1],[0,1,1,1]],[[0,2,3,0],[2,3,1,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,0],[3,3,1,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,0],[2,4,1,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,0],[2,3,1,2],[3,2,3,1],[0,1,1,1]],[[0,3,2,0],[2,3,1,2],[2,2,3,1],[0,1,2,0]],[[0,2,3,0],[2,3,1,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,0],[3,3,1,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,0],[2,4,1,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,0],[2,3,1,2],[3,2,3,1],[0,1,2,0]],[[0,3,2,0],[2,3,1,2],[2,2,3,1],[0,2,0,1]],[[0,2,3,0],[2,3,1,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,0],[3,3,1,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,0],[2,4,1,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,0],[2,3,1,2],[3,2,3,1],[0,2,0,1]],[[0,3,2,0],[2,3,1,2],[2,2,3,1],[0,2,1,0]],[[0,2,3,0],[2,3,1,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,0],[3,3,1,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,0],[2,4,1,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,0],[2,3,1,2],[3,2,3,1],[0,2,1,0]],[[1,3,2,1],[0,3,3,0],[2,3,2,1],[1,1,1,0]],[[2,2,2,1],[0,3,3,0],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,3,3,0],[2,3,2,1],[2,1,0,1]],[[1,2,2,1],[0,3,3,0],[2,4,2,1],[1,1,0,1]],[[1,2,2,1],[0,3,3,0],[3,3,2,1],[1,1,0,1]],[[1,2,2,1],[0,4,3,0],[2,3,2,1],[1,1,0,1]],[[1,2,3,1],[0,3,3,0],[2,3,2,1],[1,1,0,1]],[[1,3,2,1],[0,3,3,0],[2,3,2,1],[1,1,0,1]],[[2,2,2,1],[0,3,3,0],[2,3,2,1],[1,1,0,1]],[[0,3,2,0],[2,3,1,2],[2,2,3,1],[1,0,1,1]],[[0,2,3,0],[2,3,1,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,0],[3,3,1,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,0],[2,4,1,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,0],[2,3,1,2],[3,2,3,1],[1,0,1,1]],[[0,2,2,0],[2,3,1,2],[2,2,3,1],[2,0,1,1]],[[0,3,2,0],[2,3,1,2],[2,2,3,1],[1,0,2,0]],[[0,2,3,0],[2,3,1,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,0],[3,3,1,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,0],[2,4,1,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,1,2],[3,2,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,1,2],[2,2,3,1],[2,0,2,0]],[[0,3,2,0],[2,3,1,2],[2,2,3,1],[1,1,0,1]],[[0,2,3,0],[2,3,1,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,0],[3,3,1,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,0],[2,4,1,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,1,2],[3,2,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,1,2],[2,2,3,1],[2,1,0,1]],[[0,3,2,0],[2,3,1,2],[2,2,3,1],[1,1,1,0]],[[0,2,3,0],[2,3,1,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,0],[3,3,1,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,0],[2,4,1,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,1,2],[3,2,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,1,2],[2,2,3,1],[2,1,1,0]],[[0,3,2,0],[2,3,1,2],[2,2,3,1],[1,2,0,0]],[[0,2,3,0],[2,3,1,2],[2,2,3,1],[1,2,0,0]],[[0,2,2,0],[3,3,1,2],[2,2,3,1],[1,2,0,0]],[[0,2,2,0],[2,4,1,2],[2,2,3,1],[1,2,0,0]],[[0,2,2,0],[2,3,1,2],[3,2,3,1],[1,2,0,0]],[[0,2,2,0],[2,3,1,2],[2,2,3,1],[2,2,0,0]],[[1,2,2,1],[0,3,3,0],[2,3,2,1],[2,0,2,0]],[[1,2,2,1],[0,3,3,0],[2,4,2,1],[1,0,2,0]],[[1,2,2,1],[0,3,3,0],[3,3,2,1],[1,0,2,0]],[[1,2,2,1],[0,4,3,0],[2,3,2,1],[1,0,2,0]],[[1,2,3,1],[0,3,3,0],[2,3,2,1],[1,0,2,0]],[[1,3,2,1],[0,3,3,0],[2,3,2,1],[1,0,2,0]],[[2,2,2,1],[0,3,3,0],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[0,4,3,0],[2,3,2,1],[1,0,1,1]],[[1,2,3,1],[0,3,3,0],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[0,3,3,0],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[0,3,3,0],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[0,3,3,0],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[0,3,3,0],[2,4,2,1],[0,2,1,0]],[[1,2,2,1],[0,3,3,0],[3,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,4,3,0],[2,3,2,1],[0,2,1,0]],[[1,2,3,1],[0,3,3,0],[2,3,2,1],[0,2,1,0]],[[1,3,2,1],[0,3,3,0],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[0,3,3,0],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,3,3,0],[2,4,2,1],[0,2,0,1]],[[1,2,2,1],[0,3,3,0],[3,3,2,1],[0,2,0,1]],[[1,2,2,1],[0,4,3,0],[2,3,2,1],[0,2,0,1]],[[1,2,3,1],[0,3,3,0],[2,3,2,1],[0,2,0,1]],[[1,3,2,1],[0,3,3,0],[2,3,2,1],[0,2,0,1]],[[2,2,2,1],[0,3,3,0],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[0,3,3,0],[2,4,2,1],[0,1,2,0]],[[1,2,2,1],[0,3,3,0],[3,3,2,1],[0,1,2,0]],[[1,2,2,1],[0,4,3,0],[2,3,2,1],[0,1,2,0]],[[1,2,3,1],[0,3,3,0],[2,3,2,1],[0,1,2,0]],[[1,3,2,1],[0,3,3,0],[2,3,2,1],[0,1,2,0]],[[2,2,2,1],[0,3,3,0],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[0,4,3,0],[2,3,2,1],[0,1,1,1]],[[1,2,3,1],[0,3,3,0],[2,3,2,1],[0,1,1,1]],[[1,3,2,1],[0,3,3,0],[2,3,2,1],[0,1,1,1]],[[2,2,2,1],[0,3,3,0],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[0,3,3,0],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[0,3,3,0],[2,4,2,0],[1,2,0,1]],[[1,2,2,1],[0,3,3,0],[3,3,2,0],[1,2,0,1]],[[1,2,2,1],[0,4,3,0],[2,3,2,0],[1,2,0,1]],[[1,2,3,1],[0,3,3,0],[2,3,2,0],[1,2,0,1]],[[1,3,2,1],[0,3,3,0],[2,3,2,0],[1,2,0,1]],[[2,2,2,1],[0,3,3,0],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[0,3,3,0],[2,3,2,0],[2,1,1,1]],[[1,2,2,1],[0,3,3,0],[2,4,2,0],[1,1,1,1]],[[1,2,2,1],[0,3,3,0],[3,3,2,0],[1,1,1,1]],[[1,2,2,1],[0,4,3,0],[2,3,2,0],[1,1,1,1]],[[1,2,3,1],[0,3,3,0],[2,3,2,0],[1,1,1,1]],[[1,3,2,1],[0,3,3,0],[2,3,2,0],[1,1,1,1]],[[2,2,2,1],[0,3,3,0],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[0,3,3,0],[2,3,2,0],[2,0,2,1]],[[1,2,2,1],[0,3,3,0],[2,4,2,0],[1,0,2,1]],[[1,2,2,1],[0,3,3,0],[3,3,2,0],[1,0,2,1]],[[1,2,2,1],[0,4,3,0],[2,3,2,0],[1,0,2,1]],[[1,2,3,1],[0,3,3,0],[2,3,2,0],[1,0,2,1]],[[1,3,2,1],[0,3,3,0],[2,3,2,0],[1,0,2,1]],[[2,2,2,1],[0,3,3,0],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[0,3,3,0],[2,3,2,0],[0,3,1,1]],[[1,2,2,1],[0,3,3,0],[2,4,2,0],[0,2,1,1]],[[1,2,2,1],[0,3,3,0],[3,3,2,0],[0,2,1,1]],[[1,2,2,1],[0,4,3,0],[2,3,2,0],[0,2,1,1]],[[1,2,3,1],[0,3,3,0],[2,3,2,0],[0,2,1,1]],[[1,3,2,1],[0,3,3,0],[2,3,2,0],[0,2,1,1]],[[2,2,2,1],[0,3,3,0],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[0,3,3,0],[2,4,2,0],[0,1,2,1]],[[1,2,2,1],[0,3,3,0],[3,3,2,0],[0,1,2,1]],[[1,2,2,1],[0,4,3,0],[2,3,2,0],[0,1,2,1]],[[1,2,3,1],[0,3,3,0],[2,3,2,0],[0,1,2,1]],[[1,3,2,1],[0,3,3,0],[2,3,2,0],[0,1,2,1]],[[2,2,2,1],[0,3,3,0],[2,3,2,0],[0,1,2,1]],[[0,2,2,0],[3,3,1,2],[2,3,0,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[3,3,0,0],[1,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,3,0,0],[2,2,2,1]],[[0,2,2,0],[2,3,1,2],[2,3,0,0],[1,3,2,1]],[[0,2,2,0],[3,3,1,2],[2,3,0,1],[1,2,2,0]],[[0,2,2,0],[2,3,1,2],[3,3,0,1],[1,2,2,0]],[[0,2,2,0],[2,3,1,2],[2,3,0,1],[2,2,2,0]],[[0,2,2,0],[2,3,1,2],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[0,3,3,0],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[0,3,3,0],[2,4,1,1],[1,1,2,0]],[[1,2,2,1],[0,3,3,0],[3,3,1,1],[1,1,2,0]],[[1,2,2,1],[0,4,3,0],[2,3,1,1],[1,1,2,0]],[[1,2,3,1],[0,3,3,0],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[0,3,3,0],[2,3,1,1],[1,1,2,0]],[[2,2,2,1],[0,3,3,0],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[0,3,3,0],[2,3,1,1],[0,3,2,0]],[[1,2,2,1],[0,3,3,0],[2,4,1,1],[0,2,2,0]],[[1,2,2,1],[0,3,3,0],[3,3,1,1],[0,2,2,0]],[[1,2,2,1],[0,4,3,0],[2,3,1,1],[0,2,2,0]],[[1,2,3,1],[0,3,3,0],[2,3,1,1],[0,2,2,0]],[[1,3,2,1],[0,3,3,0],[2,3,1,1],[0,2,2,0]],[[2,2,2,1],[0,3,3,0],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[0,3,3,0],[2,3,1,0],[2,1,2,1]],[[1,2,2,1],[0,3,3,0],[2,4,1,0],[1,1,2,1]],[[1,2,2,1],[0,3,3,0],[3,3,1,0],[1,1,2,1]],[[1,2,2,1],[0,4,3,0],[2,3,1,0],[1,1,2,1]],[[1,2,3,1],[0,3,3,0],[2,3,1,0],[1,1,2,1]],[[1,3,2,1],[0,3,3,0],[2,3,1,0],[1,1,2,1]],[[2,2,2,1],[0,3,3,0],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[0,3,3,0],[2,3,1,0],[0,2,3,1]],[[1,2,2,1],[0,3,3,0],[2,3,1,0],[0,3,2,1]],[[1,2,2,1],[0,3,3,0],[2,4,1,0],[0,2,2,1]],[[1,2,2,1],[0,3,3,0],[3,3,1,0],[0,2,2,1]],[[1,2,2,1],[0,4,3,0],[2,3,1,0],[0,2,2,1]],[[1,2,3,1],[0,3,3,0],[2,3,1,0],[0,2,2,1]],[[1,3,2,1],[0,3,3,0],[2,3,1,0],[0,2,2,1]],[[2,2,2,1],[0,3,3,0],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[0,3,3,0],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[0,3,3,0],[2,3,0,1],[2,2,2,0]],[[1,2,2,1],[0,3,3,0],[3,3,0,1],[1,2,2,0]],[[1,2,2,1],[0,3,3,0],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[0,3,3,0],[2,3,0,0],[2,2,2,1]],[[1,2,2,1],[0,3,3,0],[3,3,0,0],[1,2,2,1]],[[0,3,2,0],[2,3,1,2],[2,3,3,0],[1,0,1,1]],[[0,2,3,0],[2,3,1,2],[2,3,3,0],[1,0,1,1]],[[0,2,2,0],[3,3,1,2],[2,3,3,0],[1,0,1,1]],[[0,2,2,0],[2,4,1,2],[2,3,3,0],[1,0,1,1]],[[0,2,2,0],[2,3,1,2],[3,3,3,0],[1,0,1,1]],[[1,2,2,1],[0,4,3,0],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[0,3,3,0],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[0,3,3,0],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[0,3,3,0],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[0,4,3,0],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[0,3,3,0],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[0,3,3,0],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[0,3,3,0],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[0,4,3,0],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[0,3,3,0],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[0,3,3,0],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[0,3,3,0],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[0,4,3,0],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[0,3,3,0],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[0,3,3,0],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[0,3,3,0],[2,2,3,1],[1,0,1,1]],[[0,3,2,0],[2,3,1,2],[2,3,3,1],[1,0,0,1]],[[0,2,3,0],[2,3,1,2],[2,3,3,1],[1,0,0,1]],[[0,2,2,0],[3,3,1,2],[2,3,3,1],[1,0,0,1]],[[0,2,2,0],[2,4,1,2],[2,3,3,1],[1,0,0,1]],[[0,2,2,0],[2,3,1,2],[3,3,3,1],[1,0,0,1]],[[0,3,2,0],[2,3,1,2],[2,3,3,1],[1,0,1,0]],[[0,2,3,0],[2,3,1,2],[2,3,3,1],[1,0,1,0]],[[0,2,2,0],[3,3,1,2],[2,3,3,1],[1,0,1,0]],[[0,2,2,0],[2,4,1,2],[2,3,3,1],[1,0,1,0]],[[0,2,2,0],[2,3,1,2],[3,3,3,1],[1,0,1,0]],[[1,2,2,1],[0,4,3,0],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[0,3,3,0],[2,2,3,1],[0,2,1,0]],[[1,3,2,1],[0,3,3,0],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[0,3,3,0],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[0,4,3,0],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[0,3,3,0],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[0,3,3,0],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[0,3,3,0],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[0,4,3,0],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[0,3,3,0],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[0,3,3,0],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[0,3,3,0],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[0,4,3,0],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[0,3,3,0],[2,2,3,1],[0,1,1,1]],[[1,3,2,1],[0,3,3,0],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[0,3,3,0],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[0,3,3,0],[2,2,3,0],[1,3,1,0]],[[1,2,2,1],[0,3,3,0],[2,2,3,0],[2,2,1,0]],[[1,2,2,1],[0,3,3,0],[3,2,3,0],[1,2,1,0]],[[1,2,2,1],[0,4,3,0],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[0,3,3,0],[2,2,3,0],[1,1,1,1]],[[1,3,2,1],[0,3,3,0],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[0,3,3,0],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[0,4,3,0],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[0,3,3,0],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[0,3,3,0],[2,2,3,0],[1,0,2,1]],[[2,2,2,1],[0,3,3,0],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[0,4,3,0],[2,2,3,0],[0,2,1,1]],[[1,2,3,1],[0,3,3,0],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[0,3,3,0],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[0,3,3,0],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[0,4,3,0],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[0,3,3,0],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[0,3,3,0],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[0,3,3,0],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[0,3,3,0],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[0,3,3,0],[2,2,2,1],[2,2,1,0]],[[1,2,2,1],[0,3,3,0],[3,2,2,1],[1,2,1,0]],[[1,2,2,1],[0,3,3,0],[2,2,2,0],[1,3,1,1]],[[1,2,2,1],[0,3,3,0],[2,2,2,0],[2,2,1,1]],[[1,2,2,1],[0,3,3,0],[3,2,2,0],[1,2,1,1]],[[1,2,2,1],[0,3,3,0],[2,2,1,1],[1,3,2,0]],[[1,2,2,1],[0,3,3,0],[2,2,1,1],[2,2,2,0]],[[1,2,2,1],[0,3,3,0],[3,2,1,1],[1,2,2,0]],[[1,2,2,1],[0,3,3,0],[2,2,1,0],[1,2,3,1]],[[1,2,2,1],[0,3,3,0],[2,2,1,0],[1,3,2,1]],[[1,2,2,1],[0,3,3,0],[2,2,1,0],[2,2,2,1]],[[1,2,2,1],[0,3,3,0],[3,2,1,0],[1,2,2,1]],[[1,2,2,1],[0,4,3,0],[2,1,3,1],[0,2,2,0]],[[1,2,3,1],[0,3,3,0],[2,1,3,1],[0,2,2,0]],[[1,3,2,1],[0,3,3,0],[2,1,3,1],[0,2,2,0]],[[2,2,2,1],[0,3,3,0],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,4,3,0],[2,1,3,0],[0,2,2,1]],[[1,2,3,1],[0,3,3,0],[2,1,3,0],[0,2,2,1]],[[1,3,2,1],[0,3,3,0],[2,1,3,0],[0,2,2,1]],[[2,2,2,1],[0,3,3,0],[2,1,3,0],[0,2,2,1]],[[1,2,2,1],[0,4,3,0],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[0,3,3,0],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[0,3,3,0],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[0,3,3,0],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[0,4,3,0],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[0,3,3,0],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[0,3,3,0],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[0,3,3,0],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[0,3,4,0],[1,3,3,2],[1,1,0,0]],[[1,2,2,2],[0,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,2,3,1],[0,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,3,2,1],[0,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,2,2,1],[0,3,4,0],[1,3,3,2],[0,2,0,0]],[[1,2,2,2],[0,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,2,3,1],[0,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,3,2,1],[0,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,2,2,1],[0,3,3,0],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[0,3,3,0],[1,3,4,2],[0,0,2,0]],[[1,2,2,1],[0,3,4,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,2],[0,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,2,3,1],[0,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,3,2,1],[0,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[0,3,3,0],[1,3,3,2],[0,0,1,2]],[[1,2,2,1],[0,3,3,0],[1,3,3,3],[0,0,1,1]],[[1,2,2,1],[0,3,3,0],[1,3,4,2],[0,0,1,1]],[[1,2,2,1],[0,3,4,0],[1,3,3,2],[0,0,1,1]],[[1,2,2,2],[0,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,2,3,1],[0,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,3,2,1],[0,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,2,2,1],[0,3,3,0],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[0,4,3,0],[1,3,3,1],[1,2,0,0]],[[1,2,3,1],[0,3,3,0],[1,3,3,1],[1,2,0,0]],[[1,3,2,1],[0,3,3,0],[1,3,3,1],[1,2,0,0]],[[2,2,2,1],[0,3,3,0],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,3,3,0],[1,3,4,1],[0,0,2,1]],[[1,2,2,1],[0,3,4,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,2],[0,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,2,3,1],[0,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,3,2,1],[0,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[0,3,3,0],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[0,3,3,0],[1,3,3,0],[2,2,1,0]],[[1,2,2,1],[0,3,3,0],[1,4,3,0],[1,2,1,0]],[[1,2,2,1],[0,4,3,0],[1,3,3,0],[1,2,1,0]],[[1,2,3,1],[0,3,3,0],[1,3,3,0],[1,2,1,0]],[[1,3,2,1],[0,3,3,0],[1,3,3,0],[1,2,1,0]],[[2,2,2,1],[0,3,3,0],[1,3,3,0],[1,2,1,0]],[[1,2,2,1],[0,3,3,0],[1,4,3,0],[1,1,2,0]],[[1,2,2,1],[0,4,3,0],[1,3,3,0],[1,1,2,0]],[[1,2,3,1],[0,3,3,0],[1,3,3,0],[1,1,2,0]],[[1,3,2,1],[0,3,3,0],[1,3,3,0],[1,1,2,0]],[[2,2,2,1],[0,3,3,0],[1,3,3,0],[1,1,2,0]],[[1,2,2,1],[0,3,4,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,2],[0,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,2,3,1],[0,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,3,2,1],[0,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,3,4,0],[1,3,2,2],[1,1,0,1]],[[1,2,2,2],[0,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,2,3,1],[0,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,3,2,1],[0,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,2,2,1],[0,3,4,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,2],[0,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,2,3,1],[0,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,3,2,1],[0,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,2,2,1],[0,3,4,0],[1,3,2,2],[1,0,1,1]],[[1,2,2,2],[0,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,2,3,1],[0,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,3,2,1],[0,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,2,2,1],[0,3,4,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,2],[0,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,2,3,1],[0,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,3,2,1],[0,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,4,0],[1,3,2,2],[0,2,0,1]],[[1,2,2,2],[0,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,2,3,1],[0,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,3,2,1],[0,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,3,4,0],[1,3,2,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,3,2,1],[0,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,3,4,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,3,3,0],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[0,3,3,0],[1,3,2,1],[2,2,1,0]],[[1,2,2,1],[0,3,3,0],[1,4,2,1],[1,2,1,0]],[[1,2,2,1],[0,4,3,0],[1,3,2,1],[1,2,1,0]],[[1,2,3,1],[0,3,3,0],[1,3,2,1],[1,2,1,0]],[[1,3,2,1],[0,3,3,0],[1,3,2,1],[1,2,1,0]],[[2,2,2,1],[0,3,3,0],[1,3,2,1],[1,2,1,0]],[[1,2,2,1],[0,3,3,0],[1,4,2,1],[1,2,0,1]],[[1,2,2,1],[0,4,3,0],[1,3,2,1],[1,2,0,1]],[[1,2,3,1],[0,3,3,0],[1,3,2,1],[1,2,0,1]],[[1,3,2,1],[0,3,3,0],[1,3,2,1],[1,2,0,1]],[[2,2,2,1],[0,3,3,0],[1,3,2,1],[1,2,0,1]],[[1,2,2,1],[0,3,3,0],[1,4,2,1],[1,1,2,0]],[[1,2,2,1],[0,4,3,0],[1,3,2,1],[1,1,2,0]],[[1,2,3,1],[0,3,3,0],[1,3,2,1],[1,1,2,0]],[[1,3,2,1],[0,3,3,0],[1,3,2,1],[1,1,2,0]],[[2,2,2,1],[0,3,3,0],[1,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,3,4,0],[1,3,2,1],[1,0,2,1]],[[1,2,2,2],[0,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,2,3,1],[0,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,3,2,1],[0,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,2,2,1],[0,3,4,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,2],[0,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,2,3,1],[0,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,3,2,1],[0,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,2,2,1],[0,3,4,0],[1,3,2,1],[0,1,2,1]],[[1,2,2,2],[0,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,2,3,1],[0,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,3,2,1],[0,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,2,2,1],[0,3,3,0],[1,3,2,0],[1,3,1,1]],[[1,2,2,1],[0,3,3,0],[1,3,2,0],[2,2,1,1]],[[1,2,2,1],[0,3,3,0],[1,4,2,0],[1,2,1,1]],[[1,2,2,1],[0,4,3,0],[1,3,2,0],[1,2,1,1]],[[1,2,3,1],[0,3,3,0],[1,3,2,0],[1,2,1,1]],[[1,3,2,1],[0,3,3,0],[1,3,2,0],[1,2,1,1]],[[2,2,2,1],[0,3,3,0],[1,3,2,0],[1,2,1,1]],[[1,2,2,1],[0,3,3,0],[1,4,2,0],[1,1,2,1]],[[1,2,2,1],[0,4,3,0],[1,3,2,0],[1,1,2,1]],[[1,2,3,1],[0,3,3,0],[1,3,2,0],[1,1,2,1]],[[1,3,2,1],[0,3,3,0],[1,3,2,0],[1,1,2,1]],[[2,2,2,1],[0,3,3,0],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,3,4,0],[1,3,1,2],[0,2,2,0]],[[1,2,2,2],[0,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,2,3,1],[0,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,3,2,1],[0,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,2,2,1],[0,3,3,0],[1,3,1,1],[1,3,2,0]],[[1,2,2,1],[0,3,3,0],[1,3,1,1],[2,2,2,0]],[[1,2,2,1],[0,3,3,0],[1,4,1,1],[1,2,2,0]],[[1,2,2,1],[0,4,3,0],[1,3,1,1],[1,2,2,0]],[[1,2,3,1],[0,3,3,0],[1,3,1,1],[1,2,2,0]],[[1,3,2,1],[0,3,3,0],[1,3,1,1],[1,2,2,0]],[[2,2,2,1],[0,3,3,0],[1,3,1,1],[1,2,2,0]],[[1,2,2,1],[0,3,4,0],[1,3,1,1],[0,2,2,1]],[[1,2,2,2],[0,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,2,3,1],[0,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,3,2,1],[0,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,2,2,1],[0,3,3,0],[1,3,1,0],[1,2,3,1]],[[1,2,2,1],[0,3,3,0],[1,3,1,0],[1,3,2,1]],[[1,2,2,1],[0,3,3,0],[1,3,1,0],[2,2,2,1]],[[1,2,2,1],[0,3,3,0],[1,4,1,0],[1,2,2,1]],[[1,2,2,1],[0,4,3,0],[1,3,1,0],[1,2,2,1]],[[1,2,3,1],[0,3,3,0],[1,3,1,0],[1,2,2,1]],[[1,3,2,1],[0,3,3,0],[1,3,1,0],[1,2,2,1]],[[2,2,2,1],[0,3,3,0],[1,3,1,0],[1,2,2,1]],[[1,2,2,1],[0,3,4,0],[1,3,0,2],[0,2,2,1]],[[1,2,2,2],[0,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,2,3,1],[0,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,3,2,1],[0,3,3,0],[1,3,0,2],[0,2,2,1]],[[0,3,2,0],[2,3,2,1],[0,1,3,1],[1,2,2,1]],[[0,2,3,0],[2,3,2,1],[0,1,3,1],[1,2,2,1]],[[0,2,2,0],[3,3,2,1],[0,1,3,1],[1,2,2,1]],[[0,2,2,0],[2,4,2,1],[0,1,3,1],[1,2,2,1]],[[0,3,2,0],[2,3,2,1],[0,1,3,2],[1,2,1,1]],[[0,2,3,0],[2,3,2,1],[0,1,3,2],[1,2,1,1]],[[0,2,2,0],[3,3,2,1],[0,1,3,2],[1,2,1,1]],[[0,2,2,0],[2,4,2,1],[0,1,3,2],[1,2,1,1]],[[0,3,2,0],[2,3,2,1],[0,1,3,2],[1,2,2,0]],[[0,2,3,0],[2,3,2,1],[0,1,3,2],[1,2,2,0]],[[0,2,2,0],[3,3,2,1],[0,1,3,2],[1,2,2,0]],[[0,2,2,0],[2,4,2,1],[0,1,3,2],[1,2,2,0]],[[0,3,2,0],[2,3,2,1],[0,2,3,1],[1,1,2,1]],[[0,2,3,0],[2,3,2,1],[0,2,3,1],[1,1,2,1]],[[0,2,2,0],[3,3,2,1],[0,2,3,1],[1,1,2,1]],[[0,2,2,0],[2,4,2,1],[0,2,3,1],[1,1,2,1]],[[0,3,2,0],[2,3,2,1],[0,2,3,1],[1,2,1,1]],[[0,2,3,0],[2,3,2,1],[0,2,3,1],[1,2,1,1]],[[0,2,2,0],[3,3,2,1],[0,2,3,1],[1,2,1,1]],[[0,2,2,0],[2,4,2,1],[0,2,3,1],[1,2,1,1]],[[0,3,2,0],[2,3,2,1],[0,2,3,2],[1,0,2,1]],[[0,2,3,0],[2,3,2,1],[0,2,3,2],[1,0,2,1]],[[0,2,2,0],[2,4,2,1],[0,2,3,2],[1,0,2,1]],[[0,3,2,0],[2,3,2,1],[0,2,3,2],[1,1,1,1]],[[0,2,3,0],[2,3,2,1],[0,2,3,2],[1,1,1,1]],[[0,2,2,0],[3,3,2,1],[0,2,3,2],[1,1,1,1]],[[0,2,2,0],[2,4,2,1],[0,2,3,2],[1,1,1,1]],[[0,3,2,0],[2,3,2,1],[0,2,3,2],[1,1,2,0]],[[0,2,3,0],[2,3,2,1],[0,2,3,2],[1,1,2,0]],[[0,2,2,0],[3,3,2,1],[0,2,3,2],[1,1,2,0]],[[0,2,2,0],[2,4,2,1],[0,2,3,2],[1,1,2,0]],[[0,3,2,0],[2,3,2,1],[0,2,3,2],[1,2,0,1]],[[0,2,3,0],[2,3,2,1],[0,2,3,2],[1,2,0,1]],[[0,2,2,0],[3,3,2,1],[0,2,3,2],[1,2,0,1]],[[0,2,2,0],[2,4,2,1],[0,2,3,2],[1,2,0,1]],[[0,3,2,0],[2,3,2,1],[0,2,3,2],[1,2,1,0]],[[0,2,3,0],[2,3,2,1],[0,2,3,2],[1,2,1,0]],[[0,2,2,0],[3,3,2,1],[0,2,3,2],[1,2,1,0]],[[0,2,2,0],[2,4,2,1],[0,2,3,2],[1,2,1,0]],[[0,3,2,0],[2,3,2,1],[0,3,0,2],[1,2,2,1]],[[0,2,3,0],[2,3,2,1],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[3,3,2,1],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,4,2,1],[0,3,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[0,4,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[0,3,0,3],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[0,3,0,2],[2,2,2,1]],[[0,2,2,0],[2,3,2,1],[0,3,0,2],[1,3,2,1]],[[0,2,2,0],[2,3,2,1],[0,3,0,2],[1,2,3,1]],[[0,2,2,0],[2,3,2,1],[0,3,0,2],[1,2,2,2]],[[0,3,2,0],[2,3,2,1],[0,3,1,1],[1,2,2,1]],[[0,2,3,0],[2,3,2,1],[0,3,1,1],[1,2,2,1]],[[0,2,2,0],[3,3,2,1],[0,3,1,1],[1,2,2,1]],[[0,2,2,0],[2,4,2,1],[0,3,1,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[0,4,1,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[0,3,1,1],[2,2,2,1]],[[0,2,2,0],[2,3,2,1],[0,3,1,1],[1,3,2,1]],[[0,2,2,0],[2,3,2,1],[0,3,1,1],[1,2,3,1]],[[0,2,2,0],[2,3,2,1],[0,3,1,1],[1,2,2,2]],[[0,3,2,0],[2,3,2,1],[0,3,1,2],[1,2,2,0]],[[0,2,3,0],[2,3,2,1],[0,3,1,2],[1,2,2,0]],[[0,2,2,0],[3,3,2,1],[0,3,1,2],[1,2,2,0]],[[0,2,2,0],[2,4,2,1],[0,3,1,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,1],[0,4,1,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,1],[0,3,1,2],[2,2,2,0]],[[0,2,2,0],[2,3,2,1],[0,3,1,2],[1,3,2,0]],[[0,2,2,0],[2,3,2,1],[0,3,1,2],[1,2,3,0]],[[0,3,2,0],[2,3,2,1],[0,3,2,1],[1,1,2,1]],[[0,2,3,0],[2,3,2,1],[0,3,2,1],[1,1,2,1]],[[0,2,2,0],[3,3,2,1],[0,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,4,2,1],[0,3,2,1],[1,1,2,1]],[[0,2,2,0],[2,3,2,1],[0,4,2,1],[1,1,2,1]],[[0,3,2,0],[2,3,2,1],[0,3,2,1],[1,2,1,1]],[[0,2,3,0],[2,3,2,1],[0,3,2,1],[1,2,1,1]],[[0,2,2,0],[3,3,2,1],[0,3,2,1],[1,2,1,1]],[[0,2,2,0],[2,4,2,1],[0,3,2,1],[1,2,1,1]],[[0,2,2,0],[2,3,2,1],[0,4,2,1],[1,2,1,1]],[[0,2,2,0],[2,3,2,1],[0,3,2,1],[2,2,1,1]],[[0,2,2,0],[2,3,2,1],[0,3,2,1],[1,3,1,1]],[[0,3,2,0],[2,3,2,1],[0,3,2,2],[1,1,1,1]],[[0,2,3,0],[2,3,2,1],[0,3,2,2],[1,1,1,1]],[[0,2,2,0],[3,3,2,1],[0,3,2,2],[1,1,1,1]],[[0,2,2,0],[2,4,2,1],[0,3,2,2],[1,1,1,1]],[[0,2,2,0],[2,3,2,1],[0,4,2,2],[1,1,1,1]],[[0,3,2,0],[2,3,2,1],[0,3,2,2],[1,1,2,0]],[[0,2,3,0],[2,3,2,1],[0,3,2,2],[1,1,2,0]],[[0,2,2,0],[3,3,2,1],[0,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,4,2,1],[0,3,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,1],[0,4,2,2],[1,1,2,0]],[[0,3,2,0],[2,3,2,1],[0,3,2,2],[1,2,0,1]],[[0,2,3,0],[2,3,2,1],[0,3,2,2],[1,2,0,1]],[[0,2,2,0],[3,3,2,1],[0,3,2,2],[1,2,0,1]],[[0,2,2,0],[2,4,2,1],[0,3,2,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,1],[0,4,2,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,1],[0,3,2,2],[2,2,0,1]],[[0,2,2,0],[2,3,2,1],[0,3,2,2],[1,3,0,1]],[[0,3,2,0],[2,3,2,1],[0,3,2,2],[1,2,1,0]],[[0,2,3,0],[2,3,2,1],[0,3,2,2],[1,2,1,0]],[[0,2,2,0],[3,3,2,1],[0,3,2,2],[1,2,1,0]],[[0,2,2,0],[2,4,2,1],[0,3,2,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,1],[0,4,2,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,1],[0,3,2,2],[2,2,1,0]],[[0,2,2,0],[2,3,2,1],[0,3,2,2],[1,3,1,0]],[[0,3,2,0],[2,3,2,1],[0,3,3,1],[0,1,2,1]],[[0,2,3,0],[2,3,2,1],[0,3,3,1],[0,1,2,1]],[[0,2,2,0],[2,4,2,1],[0,3,3,1],[0,1,2,1]],[[0,3,2,0],[2,3,2,1],[0,3,3,1],[0,2,1,1]],[[0,2,3,0],[2,3,2,1],[0,3,3,1],[0,2,1,1]],[[0,2,2,0],[2,4,2,1],[0,3,3,1],[0,2,1,1]],[[0,3,2,0],[2,3,2,1],[0,3,3,2],[0,0,2,1]],[[0,2,3,0],[2,3,2,1],[0,3,3,2],[0,0,2,1]],[[0,2,2,0],[2,4,2,1],[0,3,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,2,1],[0,3,3,2],[0,1,1,1]],[[0,2,3,0],[2,3,2,1],[0,3,3,2],[0,1,1,1]],[[0,2,2,0],[2,4,2,1],[0,3,3,2],[0,1,1,1]],[[0,3,2,0],[2,3,2,1],[0,3,3,2],[0,1,2,0]],[[0,2,3,0],[2,3,2,1],[0,3,3,2],[0,1,2,0]],[[0,2,2,0],[2,4,2,1],[0,3,3,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,1],[0,3,3,2],[0,2,0,1]],[[0,2,3,0],[2,3,2,1],[0,3,3,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,1],[0,3,3,2],[0,2,0,1]],[[0,3,2,0],[2,3,2,1],[0,3,3,2],[0,2,1,0]],[[0,2,3,0],[2,3,2,1],[0,3,3,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,1],[0,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,4,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,2],[0,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,2,3,1],[0,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,3,2,1],[0,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,1],[0,3,4,0],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[0,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,3,2,1],[0,3,3,0],[1,2,3,2],[1,1,0,1]],[[0,3,2,0],[2,3,2,1],[0,3,3,2],[1,2,0,0]],[[0,2,3,0],[2,3,2,1],[0,3,3,2],[1,2,0,0]],[[0,2,2,0],[3,3,2,1],[0,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,4,2,1],[0,3,3,2],[1,2,0,0]],[[0,2,2,0],[2,3,2,1],[0,4,3,2],[1,2,0,0]],[[1,2,2,1],[0,3,3,0],[1,2,3,3],[1,0,2,0]],[[1,2,2,1],[0,3,3,0],[1,2,4,2],[1,0,2,0]],[[1,2,2,1],[0,3,4,0],[1,2,3,2],[1,0,2,0]],[[1,2,2,2],[0,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,2,3,1],[0,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,3,2,1],[0,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[0,3,3,0],[1,2,3,2],[1,0,1,2]],[[1,2,2,1],[0,3,3,0],[1,2,3,3],[1,0,1,1]],[[1,2,2,1],[0,3,3,0],[1,2,4,2],[1,0,1,1]],[[1,2,2,1],[0,3,4,0],[1,2,3,2],[1,0,1,1]],[[1,2,2,2],[0,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,2,3,1],[0,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,3,2,1],[0,3,3,0],[1,2,3,2],[1,0,1,1]],[[0,3,2,0],[2,3,2,1],[1,0,3,1],[1,2,2,1]],[[0,2,3,0],[2,3,2,1],[1,0,3,1],[1,2,2,1]],[[0,2,2,0],[3,3,2,1],[1,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,4,2,1],[1,0,3,1],[1,2,2,1]],[[0,3,2,0],[2,3,2,1],[1,0,3,2],[1,2,1,1]],[[0,2,3,0],[2,3,2,1],[1,0,3,2],[1,2,1,1]],[[0,2,2,0],[3,3,2,1],[1,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,4,2,1],[1,0,3,2],[1,2,1,1]],[[0,3,2,0],[2,3,2,1],[1,0,3,2],[1,2,2,0]],[[0,2,3,0],[2,3,2,1],[1,0,3,2],[1,2,2,0]],[[0,2,2,0],[3,3,2,1],[1,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,4,2,1],[1,0,3,2],[1,2,2,0]],[[0,3,2,0],[2,3,2,1],[1,1,3,1],[0,2,2,1]],[[0,2,3,0],[2,3,2,1],[1,1,3,1],[0,2,2,1]],[[0,2,2,0],[3,3,2,1],[1,1,3,1],[0,2,2,1]],[[0,2,2,0],[2,4,2,1],[1,1,3,1],[0,2,2,1]],[[0,3,2,0],[2,3,2,1],[1,1,3,2],[0,2,1,1]],[[0,2,3,0],[2,3,2,1],[1,1,3,2],[0,2,1,1]],[[0,2,2,0],[3,3,2,1],[1,1,3,2],[0,2,1,1]],[[0,2,2,0],[2,4,2,1],[1,1,3,2],[0,2,1,1]],[[0,3,2,0],[2,3,2,1],[1,1,3,2],[0,2,2,0]],[[0,2,3,0],[2,3,2,1],[1,1,3,2],[0,2,2,0]],[[0,2,2,0],[3,3,2,1],[1,1,3,2],[0,2,2,0]],[[0,2,2,0],[2,4,2,1],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[0,3,3,0],[1,2,3,3],[0,2,1,0]],[[1,2,2,1],[0,3,3,0],[1,2,4,2],[0,2,1,0]],[[1,2,2,1],[0,3,4,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,2],[0,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,2,3,1],[0,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,3,2,1],[0,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,3,0],[1,2,3,2],[0,2,0,2]],[[1,2,2,1],[0,3,3,0],[1,2,3,3],[0,2,0,1]],[[0,3,2,0],[2,3,2,1],[1,2,3,1],[0,1,2,1]],[[0,2,3,0],[2,3,2,1],[1,2,3,1],[0,1,2,1]],[[0,2,2,0],[3,3,2,1],[1,2,3,1],[0,1,2,1]],[[0,2,2,0],[2,4,2,1],[1,2,3,1],[0,1,2,1]],[[0,3,2,0],[2,3,2,1],[1,2,3,1],[0,2,1,1]],[[0,2,3,0],[2,3,2,1],[1,2,3,1],[0,2,1,1]],[[0,2,2,0],[3,3,2,1],[1,2,3,1],[0,2,1,1]],[[0,2,2,0],[2,4,2,1],[1,2,3,1],[0,2,1,1]],[[0,3,2,0],[2,3,2,1],[1,2,3,1],[1,0,2,1]],[[0,2,3,0],[2,3,2,1],[1,2,3,1],[1,0,2,1]],[[0,2,2,0],[3,3,2,1],[1,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,4,2,1],[1,2,3,1],[1,0,2,1]],[[0,3,2,0],[2,3,2,1],[1,2,3,1],[1,1,1,1]],[[0,2,3,0],[2,3,2,1],[1,2,3,1],[1,1,1,1]],[[0,2,2,0],[3,3,2,1],[1,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,4,2,1],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,3,3,0],[1,2,4,2],[0,2,0,1]],[[1,2,2,1],[0,3,4,0],[1,2,3,2],[0,2,0,1]],[[1,2,2,2],[0,3,3,0],[1,2,3,2],[0,2,0,1]],[[1,2,3,1],[0,3,3,0],[1,2,3,2],[0,2,0,1]],[[1,3,2,1],[0,3,3,0],[1,2,3,2],[0,2,0,1]],[[0,3,2,0],[2,3,2,1],[1,2,3,2],[0,0,2,1]],[[0,2,3,0],[2,3,2,1],[1,2,3,2],[0,0,2,1]],[[0,2,2,0],[3,3,2,1],[1,2,3,2],[0,0,2,1]],[[0,2,2,0],[2,4,2,1],[1,2,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,2,1],[1,2,3,2],[0,1,1,1]],[[0,2,3,0],[2,3,2,1],[1,2,3,2],[0,1,1,1]],[[0,2,2,0],[3,3,2,1],[1,2,3,2],[0,1,1,1]],[[0,2,2,0],[2,4,2,1],[1,2,3,2],[0,1,1,1]],[[0,3,2,0],[2,3,2,1],[1,2,3,2],[0,1,2,0]],[[0,2,3,0],[2,3,2,1],[1,2,3,2],[0,1,2,0]],[[0,2,2,0],[3,3,2,1],[1,2,3,2],[0,1,2,0]],[[0,2,2,0],[2,4,2,1],[1,2,3,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,1],[1,2,3,2],[0,2,0,1]],[[0,2,3,0],[2,3,2,1],[1,2,3,2],[0,2,0,1]],[[0,2,2,0],[3,3,2,1],[1,2,3,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,1],[1,2,3,2],[0,2,0,1]],[[0,3,2,0],[2,3,2,1],[1,2,3,2],[0,2,1,0]],[[0,2,3,0],[2,3,2,1],[1,2,3,2],[0,2,1,0]],[[0,2,2,0],[3,3,2,1],[1,2,3,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,1],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,3,0],[1,2,3,2],[0,1,3,0]],[[1,2,2,1],[0,3,3,0],[1,2,3,3],[0,1,2,0]],[[1,2,2,1],[0,3,3,0],[1,2,4,2],[0,1,2,0]],[[1,2,2,1],[0,3,4,0],[1,2,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,0],[1,2,3,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,1],[1,2,3,2],[1,0,1,1]],[[0,2,3,0],[2,3,2,1],[1,2,3,2],[1,0,1,1]],[[0,2,2,0],[3,3,2,1],[1,2,3,2],[1,0,1,1]],[[0,2,2,0],[2,4,2,1],[1,2,3,2],[1,0,1,1]],[[0,3,2,0],[2,3,2,1],[1,2,3,2],[1,0,2,0]],[[0,2,3,0],[2,3,2,1],[1,2,3,2],[1,0,2,0]],[[0,2,2,0],[3,3,2,1],[1,2,3,2],[1,0,2,0]],[[0,2,2,0],[2,4,2,1],[1,2,3,2],[1,0,2,0]],[[0,3,2,0],[2,3,2,1],[1,2,3,2],[1,1,0,1]],[[0,2,3,0],[2,3,2,1],[1,2,3,2],[1,1,0,1]],[[0,2,2,0],[3,3,2,1],[1,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,4,2,1],[1,2,3,2],[1,1,0,1]],[[0,3,2,0],[2,3,2,1],[1,2,3,2],[1,1,1,0]],[[0,2,3,0],[2,3,2,1],[1,2,3,2],[1,1,1,0]],[[0,2,2,0],[3,3,2,1],[1,2,3,2],[1,1,1,0]],[[0,2,2,0],[2,4,2,1],[1,2,3,2],[1,1,1,0]],[[1,2,3,1],[0,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,3,2,1],[0,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,3,0],[1,2,3,2],[0,1,1,2]],[[1,2,2,1],[0,3,3,0],[1,2,3,3],[0,1,1,1]],[[1,2,2,1],[0,3,3,0],[1,2,4,2],[0,1,1,1]],[[1,2,2,1],[0,3,4,0],[1,2,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,3,0],[1,2,3,2],[0,0,2,2]],[[1,2,2,1],[0,3,3,0],[1,2,3,3],[0,0,2,1]],[[1,2,2,1],[0,3,3,0],[1,2,4,2],[0,0,2,1]],[[1,2,2,1],[0,3,4,0],[1,2,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,2,3,1],[0,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,3,2,1],[0,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,2,2,1],[0,4,3,0],[1,2,3,1],[1,2,1,0]],[[1,2,3,1],[0,3,3,0],[1,2,3,1],[1,2,1,0]],[[1,3,2,1],[0,3,3,0],[1,2,3,1],[1,2,1,0]],[[0,3,2,0],[2,3,2,1],[1,3,0,2],[0,2,2,1]],[[0,2,3,0],[2,3,2,1],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[3,3,2,1],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,4,2,1],[1,3,0,2],[0,2,2,1]],[[0,2,2,0],[2,3,2,1],[1,4,0,2],[0,2,2,1]],[[0,2,2,0],[2,3,2,1],[1,3,0,3],[0,2,2,1]],[[0,2,2,0],[2,3,2,1],[1,3,0,2],[0,3,2,1]],[[0,2,2,0],[2,3,2,1],[1,3,0,2],[0,2,3,1]],[[0,2,2,0],[2,3,2,1],[1,3,0,2],[0,2,2,2]],[[0,3,2,0],[2,3,2,1],[1,3,0,2],[1,1,2,1]],[[0,2,3,0],[2,3,2,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[3,3,2,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,4,2,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,3,2,1],[1,4,0,2],[1,1,2,1]],[[0,3,2,0],[2,3,2,1],[1,3,1,1],[0,2,2,1]],[[0,2,3,0],[2,3,2,1],[1,3,1,1],[0,2,2,1]],[[0,2,2,0],[3,3,2,1],[1,3,1,1],[0,2,2,1]],[[0,2,2,0],[2,4,2,1],[1,3,1,1],[0,2,2,1]],[[0,2,2,0],[2,3,2,1],[1,4,1,1],[0,2,2,1]],[[0,2,2,0],[2,3,2,1],[1,3,1,1],[0,3,2,1]],[[0,2,2,0],[2,3,2,1],[1,3,1,1],[0,2,3,1]],[[0,2,2,0],[2,3,2,1],[1,3,1,1],[0,2,2,2]],[[0,3,2,0],[2,3,2,1],[1,3,1,1],[1,1,2,1]],[[0,2,3,0],[2,3,2,1],[1,3,1,1],[1,1,2,1]],[[0,2,2,0],[3,3,2,1],[1,3,1,1],[1,1,2,1]],[[0,2,2,0],[2,4,2,1],[1,3,1,1],[1,1,2,1]],[[0,2,2,0],[2,3,2,1],[1,4,1,1],[1,1,2,1]],[[0,3,2,0],[2,3,2,1],[1,3,1,2],[0,2,2,0]],[[0,2,3,0],[2,3,2,1],[1,3,1,2],[0,2,2,0]],[[0,2,2,0],[3,3,2,1],[1,3,1,2],[0,2,2,0]],[[0,2,2,0],[2,4,2,1],[1,3,1,2],[0,2,2,0]],[[0,2,2,0],[2,3,2,1],[1,4,1,2],[0,2,2,0]],[[0,2,2,0],[2,3,2,1],[1,3,1,2],[0,3,2,0]],[[0,2,2,0],[2,3,2,1],[1,3,1,2],[0,2,3,0]],[[0,3,2,0],[2,3,2,1],[1,3,1,2],[1,1,2,0]],[[0,2,3,0],[2,3,2,1],[1,3,1,2],[1,1,2,0]],[[0,2,2,0],[3,3,2,1],[1,3,1,2],[1,1,2,0]],[[0,2,2,0],[2,4,2,1],[1,3,1,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,1],[1,4,1,2],[1,1,2,0]],[[2,2,2,1],[0,3,3,0],[1,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,4,3,0],[1,2,3,1],[1,2,0,1]],[[1,2,3,1],[0,3,3,0],[1,2,3,1],[1,2,0,1]],[[1,3,2,1],[0,3,3,0],[1,2,3,1],[1,2,0,1]],[[2,2,2,1],[0,3,3,0],[1,2,3,1],[1,2,0,1]],[[0,3,2,0],[2,3,2,1],[1,3,2,1],[0,1,2,1]],[[0,2,3,0],[2,3,2,1],[1,3,2,1],[0,1,2,1]],[[0,2,2,0],[3,3,2,1],[1,3,2,1],[0,1,2,1]],[[0,2,2,0],[2,4,2,1],[1,3,2,1],[0,1,2,1]],[[0,2,2,0],[2,3,2,1],[1,4,2,1],[0,1,2,1]],[[0,3,2,0],[2,3,2,1],[1,3,2,1],[0,2,1,1]],[[0,2,3,0],[2,3,2,1],[1,3,2,1],[0,2,1,1]],[[0,2,2,0],[3,3,2,1],[1,3,2,1],[0,2,1,1]],[[0,2,2,0],[2,4,2,1],[1,3,2,1],[0,2,1,1]],[[0,2,2,0],[2,3,2,1],[1,4,2,1],[0,2,1,1]],[[0,2,2,0],[2,3,2,1],[1,3,2,1],[0,3,1,1]],[[0,3,2,0],[2,3,2,1],[1,3,2,1],[1,0,2,1]],[[0,2,3,0],[2,3,2,1],[1,3,2,1],[1,0,2,1]],[[0,2,2,0],[3,3,2,1],[1,3,2,1],[1,0,2,1]],[[0,2,2,0],[2,4,2,1],[1,3,2,1],[1,0,2,1]],[[0,2,2,0],[2,3,2,1],[1,4,2,1],[1,0,2,1]],[[0,3,2,0],[2,3,2,1],[1,3,2,1],[1,1,1,1]],[[0,2,3,0],[2,3,2,1],[1,3,2,1],[1,1,1,1]],[[0,2,2,0],[3,3,2,1],[1,3,2,1],[1,1,1,1]],[[0,2,2,0],[2,4,2,1],[1,3,2,1],[1,1,1,1]],[[0,2,2,0],[2,3,2,1],[1,4,2,1],[1,1,1,1]],[[0,3,2,0],[2,3,2,1],[1,3,2,1],[1,2,0,1]],[[0,2,2,0],[3,3,2,1],[1,3,2,1],[1,2,0,1]],[[0,2,2,0],[2,4,2,1],[1,3,2,1],[1,2,0,1]],[[0,2,2,0],[2,3,2,1],[1,4,2,1],[1,2,0,1]],[[1,2,2,1],[0,4,3,0],[1,2,3,1],[1,1,2,0]],[[1,2,3,1],[0,3,3,0],[1,2,3,1],[1,1,2,0]],[[1,3,2,1],[0,3,3,0],[1,2,3,1],[1,1,2,0]],[[2,2,2,1],[0,3,3,0],[1,2,3,1],[1,1,2,0]],[[1,2,2,1],[0,3,3,0],[1,2,4,1],[1,0,2,1]],[[0,3,2,0],[2,3,2,1],[1,3,2,2],[0,1,1,1]],[[0,2,3,0],[2,3,2,1],[1,3,2,2],[0,1,1,1]],[[0,2,2,0],[3,3,2,1],[1,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,4,2,1],[1,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,3,2,1],[1,4,2,2],[0,1,1,1]],[[0,3,2,0],[2,3,2,1],[1,3,2,2],[0,1,2,0]],[[0,2,3,0],[2,3,2,1],[1,3,2,2],[0,1,2,0]],[[0,2,2,0],[3,3,2,1],[1,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,4,2,1],[1,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,3,2,1],[1,4,2,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,1],[1,3,2,2],[0,2,0,1]],[[0,2,3,0],[2,3,2,1],[1,3,2,2],[0,2,0,1]],[[0,2,2,0],[3,3,2,1],[1,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,1],[1,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,3,2,1],[1,4,2,2],[0,2,0,1]],[[0,2,2,0],[2,3,2,1],[1,3,2,2],[0,3,0,1]],[[0,3,2,0],[2,3,2,1],[1,3,2,2],[0,2,1,0]],[[0,2,3,0],[2,3,2,1],[1,3,2,2],[0,2,1,0]],[[0,2,2,0],[3,3,2,1],[1,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,1],[1,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,3,2,1],[1,4,2,2],[0,2,1,0]],[[0,2,2,0],[2,3,2,1],[1,3,2,2],[0,3,1,0]],[[1,2,2,1],[0,3,4,0],[1,2,3,1],[1,0,2,1]],[[1,2,2,2],[0,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,2,3,1],[0,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,3,2,1],[0,3,3,0],[1,2,3,1],[1,0,2,1]],[[0,3,2,0],[2,3,2,1],[1,3,2,2],[1,0,1,1]],[[0,2,3,0],[2,3,2,1],[1,3,2,2],[1,0,1,1]],[[0,2,2,0],[3,3,2,1],[1,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,4,2,1],[1,3,2,2],[1,0,1,1]],[[0,2,2,0],[2,3,2,1],[1,4,2,2],[1,0,1,1]],[[0,3,2,0],[2,3,2,1],[1,3,2,2],[1,0,2,0]],[[0,2,3,0],[2,3,2,1],[1,3,2,2],[1,0,2,0]],[[0,2,2,0],[3,3,2,1],[1,3,2,2],[1,0,2,0]],[[0,2,2,0],[2,4,2,1],[1,3,2,2],[1,0,2,0]],[[0,2,2,0],[2,3,2,1],[1,4,2,2],[1,0,2,0]],[[0,3,2,0],[2,3,2,1],[1,3,2,2],[1,1,0,1]],[[0,2,3,0],[2,3,2,1],[1,3,2,2],[1,1,0,1]],[[0,2,2,0],[3,3,2,1],[1,3,2,2],[1,1,0,1]],[[0,2,2,0],[2,4,2,1],[1,3,2,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,1],[1,4,2,2],[1,1,0,1]],[[0,3,2,0],[2,3,2,1],[1,3,2,2],[1,1,1,0]],[[0,2,3,0],[2,3,2,1],[1,3,2,2],[1,1,1,0]],[[0,2,2,0],[3,3,2,1],[1,3,2,2],[1,1,1,0]],[[0,2,2,0],[2,4,2,1],[1,3,2,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,1],[1,4,2,2],[1,1,1,0]],[[1,2,2,1],[0,3,3,0],[1,2,4,1],[0,2,1,1]],[[1,2,2,1],[0,3,4,0],[1,2,3,1],[0,2,1,1]],[[1,2,2,2],[0,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,2,3,1],[0,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,3,2,1],[0,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,2,2,1],[0,3,3,0],[1,2,3,1],[0,1,2,2]],[[0,3,2,0],[2,3,2,1],[1,3,2,2],[1,2,0,0]],[[0,2,3,0],[2,3,2,1],[1,3,2,2],[1,2,0,0]],[[0,2,2,0],[3,3,2,1],[1,3,2,2],[1,2,0,0]],[[0,2,2,0],[2,4,2,1],[1,3,2,2],[1,2,0,0]],[[0,2,2,0],[2,3,2,1],[1,4,2,2],[1,2,0,0]],[[1,2,2,1],[0,3,3,0],[1,2,3,1],[0,1,3,1]],[[1,2,2,1],[0,3,3,0],[1,2,4,1],[0,1,2,1]],[[1,2,2,1],[0,3,4,0],[1,2,3,1],[0,1,2,1]],[[1,2,2,2],[0,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,2,3,1],[0,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,3,2,1],[0,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,2,2,1],[0,4,3,0],[1,2,3,0],[1,2,1,1]],[[1,2,3,1],[0,3,3,0],[1,2,3,0],[1,2,1,1]],[[1,3,2,1],[0,3,3,0],[1,2,3,0],[1,2,1,1]],[[2,2,2,1],[0,3,3,0],[1,2,3,0],[1,2,1,1]],[[1,2,2,1],[0,4,3,0],[1,2,3,0],[1,1,2,1]],[[1,2,3,1],[0,3,3,0],[1,2,3,0],[1,1,2,1]],[[1,3,2,1],[0,3,3,0],[1,2,3,0],[1,1,2,1]],[[2,2,2,1],[0,3,3,0],[1,2,3,0],[1,1,2,1]],[[1,2,2,1],[0,3,3,0],[1,2,2,2],[0,1,2,2]],[[1,2,2,1],[0,3,3,0],[1,2,2,2],[0,1,3,1]],[[1,2,2,1],[0,3,3,0],[1,2,2,3],[0,1,2,1]],[[0,3,2,0],[2,3,2,1],[1,3,3,1],[0,0,2,1]],[[0,2,3,0],[2,3,2,1],[1,3,3,1],[0,0,2,1]],[[0,2,2,0],[3,3,2,1],[1,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,4,2,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,1],[0,3,3,0],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[0,3,3,0],[1,1,3,3],[0,2,2,0]],[[1,2,2,1],[0,3,3,0],[1,1,4,2],[0,2,2,0]],[[1,2,2,1],[0,3,4,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,2],[0,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,2,3,1],[0,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,3,2,1],[0,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[0,3,3,0],[1,1,3,2],[0,2,1,2]],[[1,2,2,1],[0,3,3,0],[1,1,3,3],[0,2,1,1]],[[1,2,2,1],[0,3,3,0],[1,1,4,2],[0,2,1,1]],[[1,2,2,1],[0,3,4,0],[1,1,3,2],[0,2,1,1]],[[1,2,2,2],[0,3,3,0],[1,1,3,2],[0,2,1,1]],[[0,3,2,0],[2,3,2,1],[1,3,3,2],[0,0,1,1]],[[0,2,3,0],[2,3,2,1],[1,3,3,2],[0,0,1,1]],[[0,2,2,0],[3,3,2,1],[1,3,3,2],[0,0,1,1]],[[0,2,2,0],[2,4,2,1],[1,3,3,2],[0,0,1,1]],[[0,3,2,0],[2,3,2,1],[1,3,3,2],[0,0,2,0]],[[0,2,3,0],[2,3,2,1],[1,3,3,2],[0,0,2,0]],[[0,2,2,0],[3,3,2,1],[1,3,3,2],[0,0,2,0]],[[0,2,2,0],[2,4,2,1],[1,3,3,2],[0,0,2,0]],[[1,2,3,1],[0,3,3,0],[1,1,3,2],[0,2,1,1]],[[1,3,2,1],[0,3,3,0],[1,1,3,2],[0,2,1,1]],[[0,3,2,0],[2,3,2,1],[1,3,3,2],[0,2,0,0]],[[0,2,3,0],[2,3,2,1],[1,3,3,2],[0,2,0,0]],[[0,2,2,0],[3,3,2,1],[1,3,3,2],[0,2,0,0]],[[0,2,2,0],[2,4,2,1],[1,3,3,2],[0,2,0,0]],[[0,2,2,0],[2,3,2,1],[1,4,3,2],[0,2,0,0]],[[1,2,2,1],[0,4,3,0],[1,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,3,3,0],[1,1,3,1],[1,2,2,0]],[[1,3,2,1],[0,3,3,0],[1,1,3,1],[1,2,2,0]],[[2,2,2,1],[0,3,3,0],[1,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,3,3,0],[1,1,3,1],[0,2,2,2]],[[1,2,2,1],[0,3,3,0],[1,1,3,1],[0,2,3,1]],[[1,2,2,1],[0,3,3,0],[1,1,4,1],[0,2,2,1]],[[1,2,2,1],[0,3,4,0],[1,1,3,1],[0,2,2,1]],[[1,2,2,2],[0,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,2,3,1],[0,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,3,2,1],[0,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,2,2,1],[0,4,3,0],[1,1,3,0],[1,2,2,1]],[[1,2,3,1],[0,3,3,0],[1,1,3,0],[1,2,2,1]],[[1,3,2,1],[0,3,3,0],[1,1,3,0],[1,2,2,1]],[[2,2,2,1],[0,3,3,0],[1,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,3,3,0],[1,1,2,2],[0,2,2,2]],[[1,2,2,1],[0,3,3,0],[1,1,2,2],[0,2,3,1]],[[1,2,2,1],[0,3,3,0],[1,1,2,3],[0,2,2,1]],[[1,2,2,1],[0,3,3,0],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[0,3,3,0],[1,0,3,2],[0,2,3,1]],[[1,2,2,1],[0,3,3,0],[1,0,3,3],[0,2,2,1]],[[0,3,2,0],[2,3,2,1],[1,3,3,2],[1,1,0,0]],[[0,2,3,0],[2,3,2,1],[1,3,3,2],[1,1,0,0]],[[0,2,2,0],[3,3,2,1],[1,3,3,2],[1,1,0,0]],[[0,2,2,0],[2,4,2,1],[1,3,3,2],[1,1,0,0]],[[0,2,2,0],[2,3,2,1],[1,4,3,2],[1,1,0,0]],[[1,2,2,1],[0,3,4,0],[0,3,3,2],[1,2,0,0]],[[1,2,2,2],[0,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,2,3,1],[0,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,3,2,1],[0,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,2,2,1],[0,3,3,0],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[0,3,3,0],[0,3,4,2],[0,2,1,0]],[[1,2,2,1],[0,3,4,0],[0,3,3,2],[0,2,1,0]],[[1,2,2,2],[0,3,3,0],[0,3,3,2],[0,2,1,0]],[[1,2,3,1],[0,3,3,0],[0,3,3,2],[0,2,1,0]],[[1,3,2,1],[0,3,3,0],[0,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,3,0],[0,3,3,2],[0,2,0,2]],[[1,2,2,1],[0,3,3,0],[0,3,3,3],[0,2,0,1]],[[1,2,2,1],[0,3,3,0],[0,3,4,2],[0,2,0,1]],[[1,2,2,1],[0,3,4,0],[0,3,3,2],[0,2,0,1]],[[1,2,2,2],[0,3,3,0],[0,3,3,2],[0,2,0,1]],[[1,2,3,1],[0,3,3,0],[0,3,3,2],[0,2,0,1]],[[1,3,2,1],[0,3,3,0],[0,3,3,2],[0,2,0,1]],[[1,2,2,1],[0,3,3,0],[0,3,3,2],[0,1,3,0]],[[1,2,2,1],[0,3,3,0],[0,3,3,3],[0,1,2,0]],[[1,2,2,1],[0,3,3,0],[0,3,4,2],[0,1,2,0]],[[1,2,2,1],[0,3,4,0],[0,3,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,3,0],[0,3,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,3,0],[0,3,3,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,1],[2,0,1,2],[1,2,2,1]],[[0,2,3,0],[2,3,2,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[3,3,2,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,4,2,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[3,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,0,1,3],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,0,1,2],[2,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,0,1,2],[1,3,2,1]],[[0,2,2,0],[2,3,2,1],[2,0,1,2],[1,2,3,1]],[[0,2,2,0],[2,3,2,1],[2,0,1,2],[1,2,2,2]],[[0,3,2,0],[2,3,2,1],[2,0,2,1],[1,2,2,1]],[[0,2,3,0],[2,3,2,1],[2,0,2,1],[1,2,2,1]],[[0,2,2,0],[3,3,2,1],[2,0,2,1],[1,2,2,1]],[[0,2,2,0],[2,4,2,1],[2,0,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[3,0,2,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,0,2,1],[2,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,0,2,1],[1,3,2,1]],[[0,2,2,0],[2,3,2,1],[2,0,2,1],[1,2,3,1]],[[0,2,2,0],[2,3,2,1],[2,0,2,1],[1,2,2,2]],[[0,3,2,0],[2,3,2,1],[2,0,2,2],[1,2,2,0]],[[0,2,3,0],[2,3,2,1],[2,0,2,2],[1,2,2,0]],[[0,2,2,0],[3,3,2,1],[2,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,4,2,1],[2,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,1],[3,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,1],[2,0,2,2],[2,2,2,0]],[[0,2,2,0],[2,3,2,1],[2,0,2,2],[1,3,2,0]],[[0,2,2,0],[2,3,2,1],[2,0,2,2],[1,2,3,0]],[[0,3,2,0],[2,3,2,1],[2,0,3,1],[0,2,2,1]],[[0,2,3,0],[2,3,2,1],[2,0,3,1],[0,2,2,1]],[[0,2,2,0],[3,3,2,1],[2,0,3,1],[0,2,2,1]],[[0,2,2,0],[2,4,2,1],[2,0,3,1],[0,2,2,1]],[[0,2,2,0],[2,3,2,1],[3,0,3,1],[0,2,2,1]],[[0,3,2,0],[2,3,2,1],[2,0,3,1],[1,1,2,1]],[[0,2,3,0],[2,3,2,1],[2,0,3,1],[1,1,2,1]],[[0,2,2,0],[3,3,2,1],[2,0,3,1],[1,1,2,1]],[[0,2,2,0],[2,4,2,1],[2,0,3,1],[1,1,2,1]],[[0,2,2,0],[2,3,2,1],[3,0,3,1],[1,1,2,1]],[[0,2,2,0],[2,3,2,1],[2,0,3,1],[2,1,2,1]],[[0,3,2,0],[2,3,2,1],[2,0,3,1],[1,2,1,1]],[[0,2,3,0],[2,3,2,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[3,3,2,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,4,2,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,2,1],[3,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,2,1],[2,0,3,1],[2,2,1,1]],[[0,2,2,0],[2,3,2,1],[2,0,3,1],[1,3,1,1]],[[0,3,2,0],[2,3,2,1],[2,0,3,2],[0,2,1,1]],[[0,2,3,0],[2,3,2,1],[2,0,3,2],[0,2,1,1]],[[0,2,2,0],[3,3,2,1],[2,0,3,2],[0,2,1,1]],[[0,2,2,0],[2,4,2,1],[2,0,3,2],[0,2,1,1]],[[0,2,2,0],[2,3,2,1],[3,0,3,2],[0,2,1,1]],[[0,3,2,0],[2,3,2,1],[2,0,3,2],[0,2,2,0]],[[0,2,3,0],[2,3,2,1],[2,0,3,2],[0,2,2,0]],[[0,2,2,0],[3,3,2,1],[2,0,3,2],[0,2,2,0]],[[0,2,2,0],[2,4,2,1],[2,0,3,2],[0,2,2,0]],[[0,2,2,0],[2,3,2,1],[3,0,3,2],[0,2,2,0]],[[0,3,2,0],[2,3,2,1],[2,0,3,2],[1,1,1,1]],[[0,2,3,0],[2,3,2,1],[2,0,3,2],[1,1,1,1]],[[0,2,2,0],[3,3,2,1],[2,0,3,2],[1,1,1,1]],[[0,2,2,0],[2,4,2,1],[2,0,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,2,1],[3,0,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,2,1],[2,0,3,2],[2,1,1,1]],[[0,3,2,0],[2,3,2,1],[2,0,3,2],[1,1,2,0]],[[0,2,3,0],[2,3,2,1],[2,0,3,2],[1,1,2,0]],[[0,2,2,0],[3,3,2,1],[2,0,3,2],[1,1,2,0]],[[0,2,2,0],[2,4,2,1],[2,0,3,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,1],[3,0,3,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,1],[2,0,3,2],[2,1,2,0]],[[0,3,2,0],[2,3,2,1],[2,0,3,2],[1,2,0,1]],[[0,2,3,0],[2,3,2,1],[2,0,3,2],[1,2,0,1]],[[0,2,2,0],[3,3,2,1],[2,0,3,2],[1,2,0,1]],[[0,2,2,0],[2,4,2,1],[2,0,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,1],[3,0,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,1],[2,0,3,2],[2,2,0,1]],[[0,2,2,0],[2,3,2,1],[2,0,3,2],[1,3,0,1]],[[0,3,2,0],[2,3,2,1],[2,0,3,2],[1,2,1,0]],[[0,2,3,0],[2,3,2,1],[2,0,3,2],[1,2,1,0]],[[0,2,2,0],[3,3,2,1],[2,0,3,2],[1,2,1,0]],[[0,2,2,0],[2,4,2,1],[2,0,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,1],[3,0,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,1],[2,0,3,2],[2,2,1,0]],[[0,2,2,0],[2,3,2,1],[2,0,3,2],[1,3,1,0]],[[1,3,2,1],[0,3,3,0],[0,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,3,0],[0,3,3,2],[0,1,1,2]],[[1,2,2,1],[0,3,3,0],[0,3,3,3],[0,1,1,1]],[[1,2,2,1],[0,3,3,0],[0,3,4,2],[0,1,1,1]],[[1,2,2,1],[0,3,4,0],[0,3,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,3,0],[0,3,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,3,0],[0,3,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,3,0],[0,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,3,0],[0,3,3,2],[0,0,2,2]],[[1,2,2,1],[0,3,3,0],[0,3,3,3],[0,0,2,1]],[[1,2,2,1],[0,3,3,0],[0,3,4,2],[0,0,2,1]],[[0,3,2,0],[2,3,2,1],[2,1,0,2],[1,2,2,1]],[[0,2,3,0],[2,3,2,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[3,3,2,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,4,2,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[3,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,1,0,3],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,1,0,2],[2,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,1,0,2],[1,3,2,1]],[[0,2,2,0],[2,3,2,1],[2,1,0,2],[1,2,3,1]],[[0,2,2,0],[2,3,2,1],[2,1,0,2],[1,2,2,2]],[[0,3,2,0],[2,3,2,1],[2,1,1,1],[1,2,2,1]],[[0,2,3,0],[2,3,2,1],[2,1,1,1],[1,2,2,1]],[[0,2,2,0],[3,3,2,1],[2,1,1,1],[1,2,2,1]],[[0,2,2,0],[2,4,2,1],[2,1,1,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[3,1,1,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,1,1,1],[2,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,1,1,1],[1,3,2,1]],[[0,2,2,0],[2,3,2,1],[2,1,1,1],[1,2,3,1]],[[0,2,2,0],[2,3,2,1],[2,1,1,1],[1,2,2,2]],[[0,3,2,0],[2,3,2,1],[2,1,1,2],[1,2,2,0]],[[0,2,3,0],[2,3,2,1],[2,1,1,2],[1,2,2,0]],[[0,2,2,0],[3,3,2,1],[2,1,1,2],[1,2,2,0]],[[0,2,2,0],[2,4,2,1],[2,1,1,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,1],[3,1,1,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,1],[2,1,1,2],[2,2,2,0]],[[0,2,2,0],[2,3,2,1],[2,1,1,2],[1,3,2,0]],[[0,2,2,0],[2,3,2,1],[2,1,1,2],[1,2,3,0]],[[0,3,2,0],[2,3,2,1],[2,1,2,1],[1,2,1,1]],[[0,2,3,0],[2,3,2,1],[2,1,2,1],[1,2,1,1]],[[0,2,2,0],[3,3,2,1],[2,1,2,1],[1,2,1,1]],[[0,2,2,0],[2,4,2,1],[2,1,2,1],[1,2,1,1]],[[0,2,2,0],[2,3,2,1],[3,1,2,1],[1,2,1,1]],[[0,2,2,0],[2,3,2,1],[2,1,2,1],[2,2,1,1]],[[0,2,2,0],[2,3,2,1],[2,1,2,1],[1,3,1,1]],[[0,3,2,0],[2,3,2,1],[2,1,2,2],[1,2,0,1]],[[0,2,3,0],[2,3,2,1],[2,1,2,2],[1,2,0,1]],[[0,2,2,0],[3,3,2,1],[2,1,2,2],[1,2,0,1]],[[0,2,2,0],[2,4,2,1],[2,1,2,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,1],[3,1,2,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,1],[2,1,2,2],[2,2,0,1]],[[0,2,2,0],[2,3,2,1],[2,1,2,2],[1,3,0,1]],[[0,3,2,0],[2,3,2,1],[2,1,2,2],[1,2,1,0]],[[0,2,3,0],[2,3,2,1],[2,1,2,2],[1,2,1,0]],[[0,2,2,0],[3,3,2,1],[2,1,2,2],[1,2,1,0]],[[0,2,2,0],[2,4,2,1],[2,1,2,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,1],[3,1,2,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,1],[2,1,2,2],[2,2,1,0]],[[0,2,2,0],[2,3,2,1],[2,1,2,2],[1,3,1,0]],[[1,2,2,1],[0,3,4,0],[0,3,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,3,0],[0,3,3,2],[0,0,2,1]],[[1,2,3,1],[0,3,3,0],[0,3,3,2],[0,0,2,1]],[[1,3,2,1],[0,3,3,0],[0,3,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,2,1],[2,1,3,1],[0,1,2,1]],[[0,2,3,0],[2,3,2,1],[2,1,3,1],[0,1,2,1]],[[0,2,2,0],[3,3,2,1],[2,1,3,1],[0,1,2,1]],[[0,2,2,0],[2,4,2,1],[2,1,3,1],[0,1,2,1]],[[0,2,2,0],[2,3,2,1],[3,1,3,1],[0,1,2,1]],[[0,3,2,0],[2,3,2,1],[2,1,3,1],[0,2,1,1]],[[0,2,3,0],[2,3,2,1],[2,1,3,1],[0,2,1,1]],[[0,2,2,0],[3,3,2,1],[2,1,3,1],[0,2,1,1]],[[0,2,2,0],[2,4,2,1],[2,1,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,2,1],[3,1,3,1],[0,2,1,1]],[[0,3,2,0],[2,3,2,1],[2,1,3,1],[1,0,2,1]],[[0,2,3,0],[2,3,2,1],[2,1,3,1],[1,0,2,1]],[[0,2,2,0],[3,3,2,1],[2,1,3,1],[1,0,2,1]],[[0,2,2,0],[2,4,2,1],[2,1,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,2,1],[3,1,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,2,1],[2,1,3,1],[2,0,2,1]],[[0,3,2,0],[2,3,2,1],[2,1,3,1],[1,1,1,1]],[[0,2,3,0],[2,3,2,1],[2,1,3,1],[1,1,1,1]],[[0,2,2,0],[3,3,2,1],[2,1,3,1],[1,1,1,1]],[[0,2,2,0],[2,4,2,1],[2,1,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,2,1],[3,1,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,2,1],[2,1,3,1],[2,1,1,1]],[[0,3,2,0],[2,3,2,1],[2,1,3,2],[0,0,2,1]],[[0,2,3,0],[2,3,2,1],[2,1,3,2],[0,0,2,1]],[[0,2,2,0],[3,3,2,1],[2,1,3,2],[0,0,2,1]],[[0,2,2,0],[2,4,2,1],[2,1,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,2,1],[2,1,3,2],[0,1,1,1]],[[0,2,3,0],[2,3,2,1],[2,1,3,2],[0,1,1,1]],[[0,2,2,0],[3,3,2,1],[2,1,3,2],[0,1,1,1]],[[0,2,2,0],[2,4,2,1],[2,1,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,2,1],[3,1,3,2],[0,1,1,1]],[[0,3,2,0],[2,3,2,1],[2,1,3,2],[0,1,2,0]],[[0,2,3,0],[2,3,2,1],[2,1,3,2],[0,1,2,0]],[[0,2,2,0],[3,3,2,1],[2,1,3,2],[0,1,2,0]],[[0,2,2,0],[2,4,2,1],[2,1,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,2,1],[3,1,3,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,1],[2,1,3,2],[0,2,0,1]],[[0,2,3,0],[2,3,2,1],[2,1,3,2],[0,2,0,1]],[[0,2,2,0],[3,3,2,1],[2,1,3,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,1],[2,1,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,2,1],[3,1,3,2],[0,2,0,1]],[[0,3,2,0],[2,3,2,1],[2,1,3,2],[0,2,1,0]],[[0,2,3,0],[2,3,2,1],[2,1,3,2],[0,2,1,0]],[[0,2,2,0],[3,3,2,1],[2,1,3,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,1],[2,1,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,2,1],[3,1,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,3,0],[0,3,4,1],[0,2,1,1]],[[1,2,2,1],[0,3,4,0],[0,3,3,1],[0,2,1,1]],[[0,3,2,0],[2,3,2,1],[2,1,3,2],[1,0,1,1]],[[0,2,3,0],[2,3,2,1],[2,1,3,2],[1,0,1,1]],[[0,2,2,0],[3,3,2,1],[2,1,3,2],[1,0,1,1]],[[0,2,2,0],[2,4,2,1],[2,1,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,2,1],[3,1,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,2,1],[2,1,3,2],[2,0,1,1]],[[0,3,2,0],[2,3,2,1],[2,1,3,2],[1,0,2,0]],[[0,2,3,0],[2,3,2,1],[2,1,3,2],[1,0,2,0]],[[0,2,2,0],[3,3,2,1],[2,1,3,2],[1,0,2,0]],[[0,2,2,0],[2,4,2,1],[2,1,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,2,1],[3,1,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,2,1],[2,1,3,2],[2,0,2,0]],[[0,3,2,0],[2,3,2,1],[2,1,3,2],[1,1,0,1]],[[0,2,3,0],[2,3,2,1],[2,1,3,2],[1,1,0,1]],[[0,2,2,0],[3,3,2,1],[2,1,3,2],[1,1,0,1]],[[0,2,2,0],[2,4,2,1],[2,1,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,1],[3,1,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,1],[2,1,3,2],[2,1,0,1]],[[0,3,2,0],[2,3,2,1],[2,1,3,2],[1,1,1,0]],[[0,2,3,0],[2,3,2,1],[2,1,3,2],[1,1,1,0]],[[0,2,2,0],[3,3,2,1],[2,1,3,2],[1,1,1,0]],[[0,2,2,0],[2,4,2,1],[2,1,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,1],[3,1,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,1],[2,1,3,2],[2,1,1,0]],[[1,2,2,2],[0,3,3,0],[0,3,3,1],[0,2,1,1]],[[1,2,3,1],[0,3,3,0],[0,3,3,1],[0,2,1,1]],[[1,3,2,1],[0,3,3,0],[0,3,3,1],[0,2,1,1]],[[1,2,2,1],[0,3,3,0],[0,3,3,1],[0,1,2,2]],[[1,2,2,1],[0,3,3,0],[0,3,3,1],[0,1,3,1]],[[1,2,2,1],[0,3,3,0],[0,3,4,1],[0,1,2,1]],[[1,2,2,1],[0,3,4,0],[0,3,3,1],[0,1,2,1]],[[1,2,2,2],[0,3,3,0],[0,3,3,1],[0,1,2,1]],[[1,2,3,1],[0,3,3,0],[0,3,3,1],[0,1,2,1]],[[1,3,2,1],[0,3,3,0],[0,3,3,1],[0,1,2,1]],[[1,2,2,1],[0,3,4,0],[0,3,2,2],[1,2,1,0]],[[1,2,2,2],[0,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,2,3,1],[0,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,3,2,1],[0,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,2,2,1],[0,3,4,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,2],[0,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,2,3,1],[0,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,3,2,1],[0,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,2,2,1],[0,3,4,0],[0,3,2,2],[1,1,2,0]],[[1,2,2,2],[0,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,2,3,1],[0,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,3,2,1],[0,3,3,0],[0,3,2,2],[1,1,2,0]],[[0,3,2,0],[2,3,2,1],[2,2,0,1],[1,2,2,1]],[[0,2,2,0],[3,3,2,1],[2,2,0,1],[1,2,2,1]],[[0,2,2,0],[2,4,2,1],[2,2,0,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[3,2,0,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,2,0,1],[2,2,2,1]],[[0,2,2,0],[2,3,2,1],[2,2,0,1],[1,3,2,1]],[[0,3,2,0],[2,3,2,1],[2,2,0,2],[0,2,2,1]],[[0,2,3,0],[2,3,2,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[3,3,2,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[2,4,2,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,0],[2,3,2,1],[3,2,0,2],[0,2,2,1]],[[0,3,2,0],[2,3,2,1],[2,2,0,2],[1,1,2,1]],[[0,2,3,0],[2,3,2,1],[2,2,0,2],[1,1,2,1]],[[0,2,2,0],[3,3,2,1],[2,2,0,2],[1,1,2,1]],[[0,2,2,0],[2,4,2,1],[2,2,0,2],[1,1,2,1]],[[0,2,2,0],[2,3,2,1],[3,2,0,2],[1,1,2,1]],[[0,2,2,0],[2,3,2,1],[2,2,0,2],[2,1,2,1]],[[0,3,2,0],[2,3,2,1],[2,2,0,2],[1,2,2,0]],[[0,2,2,0],[3,3,2,1],[2,2,0,2],[1,2,2,0]],[[0,2,2,0],[2,4,2,1],[2,2,0,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,1],[3,2,0,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,1],[2,2,0,2],[2,2,2,0]],[[0,2,2,0],[2,3,2,1],[2,2,0,2],[1,3,2,0]],[[0,3,2,0],[2,3,2,1],[2,2,1,1],[0,2,2,1]],[[0,2,3,0],[2,3,2,1],[2,2,1,1],[0,2,2,1]],[[0,2,2,0],[3,3,2,1],[2,2,1,1],[0,2,2,1]],[[0,2,2,0],[2,4,2,1],[2,2,1,1],[0,2,2,1]],[[0,2,2,0],[2,3,2,1],[3,2,1,1],[0,2,2,1]],[[0,3,2,0],[2,3,2,1],[2,2,1,1],[1,1,2,1]],[[0,2,3,0],[2,3,2,1],[2,2,1,1],[1,1,2,1]],[[0,2,2,0],[3,3,2,1],[2,2,1,1],[1,1,2,1]],[[0,2,2,0],[2,4,2,1],[2,2,1,1],[1,1,2,1]],[[0,2,2,0],[2,3,2,1],[3,2,1,1],[1,1,2,1]],[[0,2,2,0],[2,3,2,1],[2,2,1,1],[2,1,2,1]],[[0,3,2,0],[2,3,2,1],[2,2,1,2],[0,2,2,0]],[[0,2,3,0],[2,3,2,1],[2,2,1,2],[0,2,2,0]],[[0,2,2,0],[3,3,2,1],[2,2,1,2],[0,2,2,0]],[[0,2,2,0],[2,4,2,1],[2,2,1,2],[0,2,2,0]],[[0,2,2,0],[2,3,2,1],[3,2,1,2],[0,2,2,0]],[[0,3,2,0],[2,3,2,1],[2,2,1,2],[1,1,2,0]],[[0,2,3,0],[2,3,2,1],[2,2,1,2],[1,1,2,0]],[[0,2,2,0],[3,3,2,1],[2,2,1,2],[1,1,2,0]],[[0,2,2,0],[2,4,2,1],[2,2,1,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,1],[3,2,1,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,1],[2,2,1,2],[2,1,2,0]],[[1,2,2,1],[0,3,4,0],[0,3,2,2],[1,1,1,1]],[[1,2,2,2],[0,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,2,3,1],[0,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,3,2,1],[0,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,2,2,1],[0,3,3,0],[0,3,2,2],[0,1,2,2]],[[1,2,2,1],[0,3,3,0],[0,3,2,2],[0,1,3,1]],[[1,2,2,1],[0,3,3,0],[0,3,2,3],[0,1,2,1]],[[0,3,2,0],[2,3,2,1],[2,2,2,1],[0,1,2,1]],[[0,2,3,0],[2,3,2,1],[2,2,2,1],[0,1,2,1]],[[0,2,2,0],[3,3,2,1],[2,2,2,1],[0,1,2,1]],[[0,2,2,0],[2,4,2,1],[2,2,2,1],[0,1,2,1]],[[0,2,2,0],[2,3,2,1],[3,2,2,1],[0,1,2,1]],[[0,3,2,0],[2,3,2,1],[2,2,2,1],[0,2,1,1]],[[0,2,3,0],[2,3,2,1],[2,2,2,1],[0,2,1,1]],[[0,2,2,0],[3,3,2,1],[2,2,2,1],[0,2,1,1]],[[0,2,2,0],[2,4,2,1],[2,2,2,1],[0,2,1,1]],[[0,2,2,0],[2,3,2,1],[3,2,2,1],[0,2,1,1]],[[0,3,2,0],[2,3,2,1],[2,2,2,1],[1,0,2,1]],[[0,2,3,0],[2,3,2,1],[2,2,2,1],[1,0,2,1]],[[0,2,2,0],[3,3,2,1],[2,2,2,1],[1,0,2,1]],[[0,2,2,0],[2,4,2,1],[2,2,2,1],[1,0,2,1]],[[0,2,2,0],[2,3,2,1],[3,2,2,1],[1,0,2,1]],[[0,2,2,0],[2,3,2,1],[2,2,2,1],[2,0,2,1]],[[0,3,2,0],[2,3,2,1],[2,2,2,1],[1,1,1,1]],[[0,2,3,0],[2,3,2,1],[2,2,2,1],[1,1,1,1]],[[0,2,2,0],[3,3,2,1],[2,2,2,1],[1,1,1,1]],[[0,2,2,0],[2,4,2,1],[2,2,2,1],[1,1,1,1]],[[0,2,2,0],[2,3,2,1],[3,2,2,1],[1,1,1,1]],[[0,2,2,0],[2,3,2,1],[2,2,2,1],[2,1,1,1]],[[0,3,2,0],[2,3,2,1],[2,2,2,1],[1,2,0,1]],[[0,2,2,0],[3,3,2,1],[2,2,2,1],[1,2,0,1]],[[0,2,2,0],[2,4,2,1],[2,2,2,1],[1,2,0,1]],[[0,2,2,0],[2,3,2,1],[3,2,2,1],[1,2,0,1]],[[0,2,2,0],[2,3,2,1],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[0,3,4,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,2],[0,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,2,3,1],[0,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,3,2,1],[0,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,2,2,1],[0,3,4,0],[0,3,2,1],[1,1,2,1]],[[0,3,2,0],[2,3,2,1],[2,2,2,2],[0,1,1,1]],[[0,2,3,0],[2,3,2,1],[2,2,2,2],[0,1,1,1]],[[0,2,2,0],[3,3,2,1],[2,2,2,2],[0,1,1,1]],[[0,2,2,0],[2,4,2,1],[2,2,2,2],[0,1,1,1]],[[0,2,2,0],[2,3,2,1],[3,2,2,2],[0,1,1,1]],[[0,3,2,0],[2,3,2,1],[2,2,2,2],[0,1,2,0]],[[0,2,3,0],[2,3,2,1],[2,2,2,2],[0,1,2,0]],[[0,2,2,0],[3,3,2,1],[2,2,2,2],[0,1,2,0]],[[0,2,2,0],[2,4,2,1],[2,2,2,2],[0,1,2,0]],[[0,2,2,0],[2,3,2,1],[3,2,2,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,1],[2,2,2,2],[0,2,0,1]],[[0,2,3,0],[2,3,2,1],[2,2,2,2],[0,2,0,1]],[[0,2,2,0],[3,3,2,1],[2,2,2,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,1],[2,2,2,2],[0,2,0,1]],[[0,2,2,0],[2,3,2,1],[3,2,2,2],[0,2,0,1]],[[0,3,2,0],[2,3,2,1],[2,2,2,2],[0,2,1,0]],[[0,2,3,0],[2,3,2,1],[2,2,2,2],[0,2,1,0]],[[0,2,2,0],[3,3,2,1],[2,2,2,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,1],[2,2,2,2],[0,2,1,0]],[[0,2,2,0],[2,3,2,1],[3,2,2,2],[0,2,1,0]],[[1,2,2,2],[0,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,2,3,1],[0,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,3,2,1],[0,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,2,2,1],[0,3,4,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,2],[0,3,3,0],[0,3,1,2],[1,2,2,0]],[[0,3,2,0],[2,3,2,1],[2,2,2,2],[1,0,1,1]],[[0,2,3,0],[2,3,2,1],[2,2,2,2],[1,0,1,1]],[[0,2,2,0],[3,3,2,1],[2,2,2,2],[1,0,1,1]],[[0,2,2,0],[2,4,2,1],[2,2,2,2],[1,0,1,1]],[[0,2,2,0],[2,3,2,1],[3,2,2,2],[1,0,1,1]],[[0,2,2,0],[2,3,2,1],[2,2,2,2],[2,0,1,1]],[[0,3,2,0],[2,3,2,1],[2,2,2,2],[1,0,2,0]],[[0,2,3,0],[2,3,2,1],[2,2,2,2],[1,0,2,0]],[[0,2,2,0],[3,3,2,1],[2,2,2,2],[1,0,2,0]],[[0,2,2,0],[2,4,2,1],[2,2,2,2],[1,0,2,0]],[[0,2,2,0],[2,3,2,1],[3,2,2,2],[1,0,2,0]],[[0,2,2,0],[2,3,2,1],[2,2,2,2],[2,0,2,0]],[[0,3,2,0],[2,3,2,1],[2,2,2,2],[1,1,0,1]],[[0,2,3,0],[2,3,2,1],[2,2,2,2],[1,1,0,1]],[[0,2,2,0],[3,3,2,1],[2,2,2,2],[1,1,0,1]],[[0,2,2,0],[2,4,2,1],[2,2,2,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,1],[3,2,2,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,1],[2,2,2,2],[2,1,0,1]],[[0,3,2,0],[2,3,2,1],[2,2,2,2],[1,1,1,0]],[[0,2,3,0],[2,3,2,1],[2,2,2,2],[1,1,1,0]],[[0,2,2,0],[3,3,2,1],[2,2,2,2],[1,1,1,0]],[[0,2,2,0],[2,4,2,1],[2,2,2,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,1],[3,2,2,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,1],[2,2,2,2],[2,1,1,0]],[[1,2,3,1],[0,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,3,2,1],[0,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,2,2,1],[0,3,4,0],[0,3,1,1],[1,2,2,1]],[[1,2,2,2],[0,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,2,3,1],[0,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,3,2,1],[0,3,3,0],[0,3,1,1],[1,2,2,1]],[[0,3,2,0],[2,3,2,1],[2,2,2,2],[1,2,0,0]],[[0,2,3,0],[2,3,2,1],[2,2,2,2],[1,2,0,0]],[[0,2,2,0],[3,3,2,1],[2,2,2,2],[1,2,0,0]],[[0,2,2,0],[2,4,2,1],[2,2,2,2],[1,2,0,0]],[[0,2,2,0],[2,3,2,1],[3,2,2,2],[1,2,0,0]],[[0,2,2,0],[2,3,2,1],[2,2,2,2],[2,2,0,0]],[[1,2,2,1],[0,3,4,0],[0,3,0,2],[1,2,2,1]],[[1,2,2,2],[0,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,2,3,1],[0,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,3,2,1],[0,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,2,2,1],[0,3,3,0],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[0,3,3,0],[0,2,4,2],[1,2,1,0]],[[1,2,2,1],[0,3,4,0],[0,2,3,2],[1,2,1,0]],[[1,2,2,2],[0,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,2,3,1],[0,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,3,2,1],[0,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,3,3,0],[0,2,3,2],[1,2,0,2]],[[1,2,2,1],[0,3,3,0],[0,2,3,3],[1,2,0,1]],[[1,2,2,1],[0,3,3,0],[0,2,4,2],[1,2,0,1]],[[1,2,2,1],[0,3,4,0],[0,2,3,2],[1,2,0,1]],[[1,2,2,2],[0,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,2,3,1],[0,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,3,2,1],[0,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,2,2,1],[0,3,3,0],[0,2,3,2],[1,1,3,0]],[[1,2,2,1],[0,3,3,0],[0,2,3,3],[1,1,2,0]],[[1,2,2,1],[0,3,3,0],[0,2,4,2],[1,1,2,0]],[[1,2,2,1],[0,3,4,0],[0,2,3,2],[1,1,2,0]],[[1,2,2,2],[0,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,2,3,1],[0,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,3,2,1],[0,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[0,3,3,0],[0,2,3,2],[1,1,1,2]],[[1,2,2,1],[0,3,3,0],[0,2,3,3],[1,1,1,1]],[[1,2,2,1],[0,3,3,0],[0,2,4,2],[1,1,1,1]],[[1,2,2,1],[0,3,4,0],[0,2,3,2],[1,1,1,1]],[[1,2,2,2],[0,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,2,3,1],[0,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,3,2,1],[0,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[0,3,3,0],[0,2,3,2],[1,0,2,2]],[[1,2,2,1],[0,3,3,0],[0,2,3,3],[1,0,2,1]],[[1,2,2,1],[0,3,3,0],[0,2,4,2],[1,0,2,1]],[[1,2,2,1],[0,3,4,0],[0,2,3,2],[1,0,2,1]],[[1,2,2,2],[0,3,3,0],[0,2,3,2],[1,0,2,1]],[[1,2,3,1],[0,3,3,0],[0,2,3,2],[1,0,2,1]],[[1,3,2,1],[0,3,3,0],[0,2,3,2],[1,0,2,1]],[[0,3,2,0],[2,3,2,1],[2,2,3,2],[0,2,0,0]],[[0,2,3,0],[2,3,2,1],[2,2,3,2],[0,2,0,0]],[[0,2,2,0],[3,3,2,1],[2,2,3,2],[0,2,0,0]],[[0,2,2,0],[2,4,2,1],[2,2,3,2],[0,2,0,0]],[[0,2,2,0],[2,3,2,1],[3,2,3,2],[0,2,0,0]],[[1,2,2,1],[0,3,3,0],[0,2,4,1],[1,2,1,1]],[[1,2,2,1],[0,3,4,0],[0,2,3,1],[1,2,1,1]],[[1,2,2,2],[0,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,2,3,1],[0,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,3,2,1],[0,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,2,2,1],[0,3,3,0],[0,2,3,1],[1,1,2,2]],[[1,2,2,1],[0,3,3,0],[0,2,3,1],[1,1,3,1]],[[1,2,2,1],[0,3,3,0],[0,2,4,1],[1,1,2,1]],[[1,2,2,1],[0,3,4,0],[0,2,3,1],[1,1,2,1]],[[1,2,2,2],[0,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,2,3,1],[0,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,3,2,1],[0,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,2,2,1],[0,3,3,0],[0,2,2,2],[1,1,2,2]],[[1,2,2,1],[0,3,3,0],[0,2,2,2],[1,1,3,1]],[[1,2,2,1],[0,3,3,0],[0,2,2,3],[1,1,2,1]],[[1,2,2,1],[0,3,3,0],[0,1,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,3,0],[0,1,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,3,0],[0,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,3,3,0],[0,1,4,2],[1,2,2,0]],[[1,2,2,1],[0,3,4,0],[0,1,3,2],[1,2,2,0]],[[0,3,2,0],[2,3,2,1],[2,2,3,2],[1,1,0,0]],[[0,2,3,0],[2,3,2,1],[2,2,3,2],[1,1,0,0]],[[0,2,2,0],[3,3,2,1],[2,2,3,2],[1,1,0,0]],[[0,2,2,0],[2,4,2,1],[2,2,3,2],[1,1,0,0]],[[0,2,2,0],[2,3,2,1],[3,2,3,2],[1,1,0,0]],[[0,2,2,0],[2,3,2,1],[2,2,3,2],[2,1,0,0]],[[1,2,2,2],[0,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,2,3,1],[0,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,3,2,1],[0,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,3,3,0],[0,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,3,3,0],[0,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,3,3,0],[0,1,4,2],[1,2,1,1]],[[1,2,2,1],[0,3,4,0],[0,1,3,2],[1,2,1,1]],[[1,2,2,2],[0,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,2,3,1],[0,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,3,2,1],[0,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[0,3,3,0],[0,1,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,3,0],[0,1,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,3,0],[0,1,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,3,0],[0,1,4,1],[1,2,2,1]],[[1,2,2,1],[0,3,4,0],[0,1,3,1],[1,2,2,1]],[[1,2,2,2],[0,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,2,3,1],[0,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,3,2,1],[0,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,2,2,1],[0,3,3,0],[0,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,3,3,0],[0,1,2,2],[1,2,3,1]],[[1,2,2,1],[0,3,3,0],[0,1,2,2],[1,3,2,1]],[[1,2,2,1],[0,3,3,0],[0,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,3,3,0],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,3,3,0],[0,0,3,2],[1,2,3,1]],[[1,2,2,1],[0,3,3,0],[0,0,3,3],[1,2,2,1]],[[0,3,2,0],[2,3,2,1],[2,3,0,1],[0,2,2,1]],[[0,2,2,0],[3,3,2,1],[2,3,0,1],[0,2,2,1]],[[0,2,2,0],[2,4,2,1],[2,3,0,1],[0,2,2,1]],[[0,2,2,0],[2,3,2,1],[3,3,0,1],[0,2,2,1]],[[0,3,2,0],[2,3,2,1],[2,3,0,1],[1,1,2,1]],[[0,2,2,0],[3,3,2,1],[2,3,0,1],[1,1,2,1]],[[0,2,2,0],[2,4,2,1],[2,3,0,1],[1,1,2,1]],[[0,2,2,0],[2,3,2,1],[3,3,0,1],[1,1,2,1]],[[0,2,2,0],[2,3,2,1],[2,3,0,1],[2,1,2,1]],[[0,3,2,0],[2,3,2,1],[2,3,0,1],[1,2,1,1]],[[0,2,2,0],[3,3,2,1],[2,3,0,1],[1,2,1,1]],[[0,2,2,0],[2,4,2,1],[2,3,0,1],[1,2,1,1]],[[0,2,2,0],[2,3,2,1],[3,3,0,1],[1,2,1,1]],[[0,2,2,0],[2,3,2,1],[2,3,0,1],[2,2,1,1]],[[0,3,2,0],[2,3,2,1],[2,3,0,2],[0,2,2,0]],[[0,2,2,0],[3,3,2,1],[2,3,0,2],[0,2,2,0]],[[0,2,2,0],[2,4,2,1],[2,3,0,2],[0,2,2,0]],[[0,2,2,0],[2,3,2,1],[3,3,0,2],[0,2,2,0]],[[0,3,2,0],[2,3,2,1],[2,3,0,2],[1,1,2,0]],[[0,2,2,0],[3,3,2,1],[2,3,0,2],[1,1,2,0]],[[0,2,2,0],[2,4,2,1],[2,3,0,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,1],[3,3,0,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,1],[2,3,0,2],[2,1,2,0]],[[0,3,2,0],[2,3,2,1],[2,3,0,2],[1,2,1,0]],[[0,2,2,0],[3,3,2,1],[2,3,0,2],[1,2,1,0]],[[0,2,2,0],[2,4,2,1],[2,3,0,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,1],[3,3,0,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,1],[2,3,0,2],[2,2,1,0]],[[0,3,2,0],[2,3,2,1],[2,3,1,1],[0,2,1,1]],[[0,2,2,0],[3,3,2,1],[2,3,1,1],[0,2,1,1]],[[0,2,2,0],[2,4,2,1],[2,3,1,1],[0,2,1,1]],[[0,2,2,0],[2,3,2,1],[3,3,1,1],[0,2,1,1]],[[0,3,2,0],[2,3,2,1],[2,3,1,1],[1,1,1,1]],[[0,2,2,0],[3,3,2,1],[2,3,1,1],[1,1,1,1]],[[0,2,2,0],[2,4,2,1],[2,3,1,1],[1,1,1,1]],[[0,2,2,0],[2,3,2,1],[3,3,1,1],[1,1,1,1]],[[0,2,2,0],[2,3,2,1],[2,3,1,1],[2,1,1,1]],[[0,3,2,0],[2,3,2,1],[2,3,1,1],[1,2,0,1]],[[0,2,2,0],[3,3,2,1],[2,3,1,1],[1,2,0,1]],[[0,2,2,0],[2,4,2,1],[2,3,1,1],[1,2,0,1]],[[0,2,2,0],[2,3,2,1],[3,3,1,1],[1,2,0,1]],[[0,2,2,0],[2,3,2,1],[2,3,1,1],[2,2,0,1]],[[0,3,2,0],[2,3,2,1],[2,3,1,2],[0,2,0,1]],[[0,2,2,0],[3,3,2,1],[2,3,1,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,1],[2,3,1,2],[0,2,0,1]],[[0,2,2,0],[2,3,2,1],[3,3,1,2],[0,2,0,1]],[[0,3,2,0],[2,3,2,1],[2,3,1,2],[0,2,1,0]],[[0,2,2,0],[3,3,2,1],[2,3,1,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,1],[2,3,1,2],[0,2,1,0]],[[0,2,2,0],[2,3,2,1],[3,3,1,2],[0,2,1,0]],[[1,2,2,1],[0,3,2,2],[2,3,3,0],[2,1,0,0]],[[1,2,2,1],[0,3,2,2],[2,4,3,0],[1,1,0,0]],[[1,2,2,1],[0,3,2,2],[3,3,3,0],[1,1,0,0]],[[1,2,2,1],[0,4,2,2],[2,3,3,0],[1,1,0,0]],[[1,2,2,2],[0,3,2,2],[2,3,3,0],[1,1,0,0]],[[1,2,3,1],[0,3,2,2],[2,3,3,0],[1,1,0,0]],[[1,3,2,1],[0,3,2,2],[2,3,3,0],[1,1,0,0]],[[2,2,2,1],[0,3,2,2],[2,3,3,0],[1,1,0,0]],[[0,3,2,0],[2,3,2,1],[2,3,1,2],[1,1,0,1]],[[0,2,2,0],[3,3,2,1],[2,3,1,2],[1,1,0,1]],[[0,2,2,0],[2,4,2,1],[2,3,1,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,1],[3,3,1,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,1],[2,3,1,2],[2,1,0,1]],[[0,3,2,0],[2,3,2,1],[2,3,1,2],[1,1,1,0]],[[0,2,2,0],[3,3,2,1],[2,3,1,2],[1,1,1,0]],[[0,2,2,0],[2,4,2,1],[2,3,1,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,1],[3,3,1,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,1],[2,3,1,2],[2,1,1,0]],[[0,3,2,0],[2,3,2,1],[2,3,1,2],[1,2,0,0]],[[0,2,2,0],[3,3,2,1],[2,3,1,2],[1,2,0,0]],[[0,2,2,0],[2,4,2,1],[2,3,1,2],[1,2,0,0]],[[0,2,2,0],[2,3,2,1],[3,3,1,2],[1,2,0,0]],[[0,2,2,0],[2,3,2,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[0,3,2,2],[2,4,3,0],[0,2,0,0]],[[1,2,2,1],[0,3,2,2],[3,3,3,0],[0,2,0,0]],[[1,2,2,1],[0,4,2,2],[2,3,3,0],[0,2,0,0]],[[1,2,2,2],[0,3,2,2],[2,3,3,0],[0,2,0,0]],[[1,2,3,1],[0,3,2,2],[2,3,3,0],[0,2,0,0]],[[1,3,2,1],[0,3,2,2],[2,3,3,0],[0,2,0,0]],[[2,2,2,1],[0,3,2,2],[2,3,3,0],[0,2,0,0]],[[0,3,2,0],[2,3,2,1],[2,3,2,1],[1,0,1,1]],[[0,2,2,0],[3,3,2,1],[2,3,2,1],[1,0,1,1]],[[0,2,2,0],[2,4,2,1],[2,3,2,1],[1,0,1,1]],[[0,2,2,0],[2,3,2,1],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[0,4,2,2],[2,3,3,0],[0,0,2,0]],[[1,2,2,2],[0,3,2,2],[2,3,3,0],[0,0,2,0]],[[1,2,3,1],[0,3,2,2],[2,3,3,0],[0,0,2,0]],[[1,3,2,1],[0,3,2,2],[2,3,3,0],[0,0,2,0]],[[2,2,2,1],[0,3,2,2],[2,3,3,0],[0,0,2,0]],[[1,2,2,1],[0,4,2,2],[2,3,3,0],[0,0,1,1]],[[1,2,2,2],[0,3,2,2],[2,3,3,0],[0,0,1,1]],[[1,2,3,1],[0,3,2,2],[2,3,3,0],[0,0,1,1]],[[1,3,2,1],[0,3,2,2],[2,3,3,0],[0,0,1,1]],[[2,2,2,1],[0,3,2,2],[2,3,3,0],[0,0,1,1]],[[0,3,2,0],[2,3,2,1],[2,3,2,2],[1,0,0,1]],[[0,2,3,0],[2,3,2,1],[2,3,2,2],[1,0,0,1]],[[0,2,2,0],[3,3,2,1],[2,3,2,2],[1,0,0,1]],[[0,2,2,0],[2,4,2,1],[2,3,2,2],[1,0,0,1]],[[0,2,2,0],[2,3,2,1],[3,3,2,2],[1,0,0,1]],[[0,3,2,0],[2,3,2,1],[2,3,2,2],[1,0,1,0]],[[0,2,3,0],[2,3,2,1],[2,3,2,2],[1,0,1,0]],[[0,2,2,0],[3,3,2,1],[2,3,2,2],[1,0,1,0]],[[0,2,2,0],[2,4,2,1],[2,3,2,2],[1,0,1,0]],[[0,2,2,0],[2,3,2,1],[3,3,2,2],[1,0,1,0]],[[1,2,2,1],[0,3,2,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,1],[0,3,2,2],[2,4,2,0],[1,2,0,0]],[[1,2,2,1],[0,3,2,2],[3,3,2,0],[1,2,0,0]],[[1,2,2,1],[0,4,2,2],[2,3,2,0],[1,2,0,0]],[[1,2,2,2],[0,3,2,2],[2,3,2,0],[1,2,0,0]],[[1,2,3,1],[0,3,2,2],[2,3,2,0],[1,2,0,0]],[[1,3,2,1],[0,3,2,2],[2,3,2,0],[1,2,0,0]],[[2,2,2,1],[0,3,2,2],[2,3,2,0],[1,2,0,0]],[[1,2,2,1],[0,3,2,2],[2,3,2,0],[2,1,1,0]],[[1,2,2,1],[0,3,2,2],[2,4,2,0],[1,1,1,0]],[[1,2,2,1],[0,3,2,2],[3,3,2,0],[1,1,1,0]],[[1,2,2,1],[0,4,2,2],[2,3,2,0],[1,1,1,0]],[[1,2,2,2],[0,3,2,2],[2,3,2,0],[1,1,1,0]],[[1,2,3,1],[0,3,2,2],[2,3,2,0],[1,1,1,0]],[[1,3,2,1],[0,3,2,2],[2,3,2,0],[1,1,1,0]],[[2,2,2,1],[0,3,2,2],[2,3,2,0],[1,1,1,0]],[[1,2,2,1],[0,3,2,2],[2,3,2,0],[2,1,0,1]],[[1,2,2,1],[0,3,2,2],[2,4,2,0],[1,1,0,1]],[[1,2,2,1],[0,3,2,2],[3,3,2,0],[1,1,0,1]],[[1,2,2,1],[0,4,2,2],[2,3,2,0],[1,1,0,1]],[[1,2,2,2],[0,3,2,2],[2,3,2,0],[1,1,0,1]],[[1,2,3,1],[0,3,2,2],[2,3,2,0],[1,1,0,1]],[[1,3,2,1],[0,3,2,2],[2,3,2,0],[1,1,0,1]],[[2,2,2,1],[0,3,2,2],[2,3,2,0],[1,1,0,1]],[[1,2,2,1],[0,3,2,2],[2,3,2,0],[2,0,2,0]],[[1,2,2,1],[0,3,2,2],[2,4,2,0],[1,0,2,0]],[[1,2,2,1],[0,3,2,2],[3,3,2,0],[1,0,2,0]],[[1,2,2,1],[0,4,2,2],[2,3,2,0],[1,0,2,0]],[[1,2,2,2],[0,3,2,2],[2,3,2,0],[1,0,2,0]],[[1,2,3,1],[0,3,2,2],[2,3,2,0],[1,0,2,0]],[[1,3,2,1],[0,3,2,2],[2,3,2,0],[1,0,2,0]],[[2,2,2,1],[0,3,2,2],[2,3,2,0],[1,0,2,0]],[[1,2,2,1],[0,4,2,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,2],[0,3,2,2],[2,3,2,0],[1,0,1,1]],[[1,2,3,1],[0,3,2,2],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[0,3,2,2],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[0,3,2,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[0,3,2,2],[2,3,2,0],[0,3,1,0]],[[1,2,2,1],[0,3,2,2],[2,4,2,0],[0,2,1,0]],[[1,2,2,1],[0,3,2,2],[3,3,2,0],[0,2,1,0]],[[1,2,2,1],[0,4,2,2],[2,3,2,0],[0,2,1,0]],[[1,2,2,2],[0,3,2,2],[2,3,2,0],[0,2,1,0]],[[1,2,3,1],[0,3,2,2],[2,3,2,0],[0,2,1,0]],[[1,3,2,1],[0,3,2,2],[2,3,2,0],[0,2,1,0]],[[2,2,2,1],[0,3,2,2],[2,3,2,0],[0,2,1,0]],[[1,2,2,1],[0,3,2,2],[2,4,2,0],[0,2,0,1]],[[1,2,2,1],[0,3,2,2],[3,3,2,0],[0,2,0,1]],[[1,2,2,1],[0,4,2,2],[2,3,2,0],[0,2,0,1]],[[1,2,2,2],[0,3,2,2],[2,3,2,0],[0,2,0,1]],[[1,2,3,1],[0,3,2,2],[2,3,2,0],[0,2,0,1]],[[1,3,2,1],[0,3,2,2],[2,3,2,0],[0,2,0,1]],[[2,2,2,1],[0,3,2,2],[2,3,2,0],[0,2,0,1]],[[1,2,2,1],[0,3,2,2],[2,4,2,0],[0,1,2,0]],[[1,2,2,1],[0,3,2,2],[3,3,2,0],[0,1,2,0]],[[1,2,2,1],[0,4,2,2],[2,3,2,0],[0,1,2,0]],[[1,2,2,2],[0,3,2,2],[2,3,2,0],[0,1,2,0]],[[1,2,3,1],[0,3,2,2],[2,3,2,0],[0,1,2,0]],[[1,3,2,1],[0,3,2,2],[2,3,2,0],[0,1,2,0]],[[2,2,2,1],[0,3,2,2],[2,3,2,0],[0,1,2,0]],[[1,2,2,1],[0,4,2,2],[2,3,2,0],[0,1,1,1]],[[1,2,2,2],[0,3,2,2],[2,3,2,0],[0,1,1,1]],[[1,2,3,1],[0,3,2,2],[2,3,2,0],[0,1,1,1]],[[1,3,2,1],[0,3,2,2],[2,3,2,0],[0,1,1,1]],[[2,2,2,1],[0,3,2,2],[2,3,2,0],[0,1,1,1]],[[0,3,2,0],[2,3,2,1],[2,3,3,2],[1,0,0,0]],[[0,2,3,0],[2,3,2,1],[2,3,3,2],[1,0,0,0]],[[0,2,2,0],[3,3,2,1],[2,3,3,2],[1,0,0,0]],[[0,2,2,0],[2,4,2,1],[2,3,3,2],[1,0,0,0]],[[0,2,2,0],[2,3,2,1],[3,3,3,2],[1,0,0,0]],[[1,2,2,1],[0,3,2,2],[2,3,1,0],[2,1,2,0]],[[1,2,2,1],[0,3,2,2],[2,4,1,0],[1,1,2,0]],[[1,2,2,1],[0,3,2,2],[3,3,1,0],[1,1,2,0]],[[1,2,2,1],[0,4,2,2],[2,3,1,0],[1,1,2,0]],[[1,2,2,2],[0,3,2,2],[2,3,1,0],[1,1,2,0]],[[1,2,3,1],[0,3,2,2],[2,3,1,0],[1,1,2,0]],[[1,3,2,1],[0,3,2,2],[2,3,1,0],[1,1,2,0]],[[2,2,2,1],[0,3,2,2],[2,3,1,0],[1,1,2,0]],[[1,2,2,1],[0,3,2,2],[2,3,1,0],[0,3,2,0]],[[1,2,2,1],[0,3,2,2],[2,4,1,0],[0,2,2,0]],[[1,2,2,1],[0,3,2,2],[3,3,1,0],[0,2,2,0]],[[1,2,2,1],[0,4,2,2],[2,3,1,0],[0,2,2,0]],[[1,2,2,2],[0,3,2,2],[2,3,1,0],[0,2,2,0]],[[1,2,3,1],[0,3,2,2],[2,3,1,0],[0,2,2,0]],[[1,3,2,1],[0,3,2,2],[2,3,1,0],[0,2,2,0]],[[2,2,2,1],[0,3,2,2],[2,3,1,0],[0,2,2,0]],[[1,2,2,1],[0,3,2,3],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[0,4,2,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,2],[0,3,2,2],[2,3,0,2],[1,2,0,0]],[[1,2,3,1],[0,3,2,2],[2,3,0,2],[1,2,0,0]],[[1,3,2,1],[0,3,2,2],[2,3,0,2],[1,2,0,0]],[[2,2,2,1],[0,3,2,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[0,3,2,3],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[0,4,2,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,2],[0,3,2,2],[2,3,0,2],[1,1,1,0]],[[1,2,3,1],[0,3,2,2],[2,3,0,2],[1,1,1,0]],[[1,3,2,1],[0,3,2,2],[2,3,0,2],[1,1,1,0]],[[2,2,2,1],[0,3,2,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[0,3,2,3],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[0,4,2,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,2],[0,3,2,2],[2,3,0,2],[1,1,0,1]],[[1,2,3,1],[0,3,2,2],[2,3,0,2],[1,1,0,1]],[[1,3,2,1],[0,3,2,2],[2,3,0,2],[1,1,0,1]],[[2,2,2,1],[0,3,2,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[0,3,2,3],[2,3,0,2],[1,0,2,0]],[[1,2,2,1],[0,4,2,2],[2,3,0,2],[1,0,2,0]],[[1,2,2,2],[0,3,2,2],[2,3,0,2],[1,0,2,0]],[[1,2,3,1],[0,3,2,2],[2,3,0,2],[1,0,2,0]],[[1,3,2,1],[0,3,2,2],[2,3,0,2],[1,0,2,0]],[[2,2,2,1],[0,3,2,2],[2,3,0,2],[1,0,2,0]],[[0,3,2,0],[2,3,2,2],[0,1,1,2],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[0,1,1,2],[1,2,2,1]],[[0,3,2,0],[2,3,2,2],[0,1,2,2],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[0,1,2,2],[1,2,1,1]],[[0,3,2,0],[2,3,2,2],[0,1,2,2],[1,2,2,0]],[[0,2,3,0],[2,3,2,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[0,1,2,2],[1,2,2,0]],[[0,3,2,0],[2,3,2,2],[0,1,3,0],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[0,1,3,0],[1,2,2,1]],[[0,3,2,0],[2,3,2,2],[0,1,3,1],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[0,1,3,1],[1,2,1,1]],[[0,3,2,0],[2,3,2,2],[0,1,3,1],[1,2,2,0]],[[0,2,3,0],[2,3,2,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,3,2,3],[2,3,0,2],[1,0,1,1]],[[1,2,2,1],[0,4,2,2],[2,3,0,2],[1,0,1,1]],[[1,2,2,2],[0,3,2,2],[2,3,0,2],[1,0,1,1]],[[1,2,3,1],[0,3,2,2],[2,3,0,2],[1,0,1,1]],[[1,3,2,1],[0,3,2,2],[2,3,0,2],[1,0,1,1]],[[2,2,2,1],[0,3,2,2],[2,3,0,2],[1,0,1,1]],[[0,3,2,0],[2,3,2,2],[0,2,0,2],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[0,2,0,2],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[0,2,0,2],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[0,2,0,2],[1,2,2,1]],[[0,3,2,0],[2,3,2,2],[0,2,1,2],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[0,2,1,2],[1,1,2,1]],[[0,3,2,0],[2,3,2,2],[0,2,2,2],[1,0,2,1]],[[0,2,3,0],[2,3,2,2],[0,2,2,2],[1,0,2,1]],[[0,2,2,0],[2,4,2,2],[0,2,2,2],[1,0,2,1]],[[0,3,2,0],[2,3,2,2],[0,2,2,2],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[0,2,2,2],[1,1,1,1]],[[0,3,2,0],[2,3,2,2],[0,2,2,2],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[0,2,2,2],[1,1,2,0]],[[0,3,2,0],[2,3,2,2],[0,2,2,2],[1,2,0,1]],[[0,2,3,0],[2,3,2,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,0],[3,3,2,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,0],[2,4,2,2],[0,2,2,2],[1,2,0,1]],[[0,3,2,0],[2,3,2,2],[0,2,2,2],[1,2,1,0]],[[0,2,3,0],[2,3,2,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,0],[3,3,2,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,0],[2,4,2,2],[0,2,2,2],[1,2,1,0]],[[0,3,2,0],[2,3,2,2],[0,2,3,0],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[0,2,3,0],[1,1,2,1]],[[0,3,2,0],[2,3,2,2],[0,2,3,0],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[0,2,3,0],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[0,2,3,0],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[0,2,3,0],[1,2,1,1]],[[0,3,2,0],[2,3,2,2],[0,2,3,1],[1,0,2,1]],[[0,2,3,0],[2,3,2,2],[0,2,3,1],[1,0,2,1]],[[0,2,2,0],[2,4,2,2],[0,2,3,1],[1,0,2,1]],[[0,3,2,0],[2,3,2,2],[0,2,3,1],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[0,2,3,1],[1,1,1,1]],[[0,3,2,0],[2,3,2,2],[0,2,3,1],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[0,2,3,1],[1,1,2,0]],[[0,3,2,0],[2,3,2,2],[0,2,3,1],[1,2,0,1]],[[0,2,3,0],[2,3,2,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,0],[3,3,2,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,0],[2,4,2,2],[0,2,3,1],[1,2,0,1]],[[0,3,2,0],[2,3,2,2],[0,2,3,1],[1,2,1,0]],[[0,2,3,0],[2,3,2,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,0],[3,3,2,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,0],[2,4,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,3,2,3],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[0,4,2,2],[2,3,0,2],[0,2,1,0]],[[0,3,2,0],[2,3,2,2],[0,2,3,2],[1,1,0,1]],[[0,2,3,0],[2,3,2,2],[0,2,3,2],[1,1,0,1]],[[0,2,2,0],[2,4,2,2],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,3,2,2],[2,3,0,2],[0,2,1,0]],[[1,2,3,1],[0,3,2,2],[2,3,0,2],[0,2,1,0]],[[1,3,2,1],[0,3,2,2],[2,3,0,2],[0,2,1,0]],[[2,2,2,1],[0,3,2,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[0,3,2,3],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[0,4,2,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,2],[0,3,2,2],[2,3,0,2],[0,2,0,1]],[[1,2,3,1],[0,3,2,2],[2,3,0,2],[0,2,0,1]],[[1,3,2,1],[0,3,2,2],[2,3,0,2],[0,2,0,1]],[[2,2,2,1],[0,3,2,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[0,3,2,3],[2,3,0,2],[0,1,2,0]],[[1,2,2,1],[0,4,2,2],[2,3,0,2],[0,1,2,0]],[[1,2,2,2],[0,3,2,2],[2,3,0,2],[0,1,2,0]],[[1,2,3,1],[0,3,2,2],[2,3,0,2],[0,1,2,0]],[[1,3,2,1],[0,3,2,2],[2,3,0,2],[0,1,2,0]],[[2,2,2,1],[0,3,2,2],[2,3,0,2],[0,1,2,0]],[[1,2,2,1],[0,3,2,3],[2,3,0,2],[0,1,1,1]],[[1,2,2,1],[0,4,2,2],[2,3,0,2],[0,1,1,1]],[[1,2,2,2],[0,3,2,2],[2,3,0,2],[0,1,1,1]],[[1,2,3,1],[0,3,2,2],[2,3,0,2],[0,1,1,1]],[[1,3,2,1],[0,3,2,2],[2,3,0,2],[0,1,1,1]],[[2,2,2,1],[0,3,2,2],[2,3,0,2],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[0,3,0,1],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[0,3,0,1],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[0,3,0,1],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[0,3,0,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[0,4,0,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[0,3,0,1],[2,2,2,1]],[[0,2,2,0],[2,3,2,2],[0,3,0,1],[1,3,2,1]],[[0,2,2,0],[2,3,2,2],[0,3,0,1],[1,2,3,1]],[[0,2,2,0],[2,3,2,2],[0,3,0,1],[1,2,2,2]],[[0,3,2,0],[2,3,2,2],[0,3,0,2],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[0,3,0,2],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[0,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[0,3,0,2],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[0,4,0,2],[1,1,2,1]],[[0,3,2,0],[2,3,2,2],[0,3,0,2],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[0,3,0,2],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[0,3,0,2],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[0,3,0,2],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[0,4,0,2],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[0,3,0,2],[2,2,1,1]],[[0,2,2,0],[2,3,2,2],[0,3,0,2],[1,3,1,1]],[[0,3,2,0],[2,3,2,2],[0,3,0,2],[1,2,2,0]],[[0,2,3,0],[2,3,2,2],[0,3,0,2],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[0,3,0,2],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[0,3,0,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[0,4,0,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[0,3,0,2],[2,2,2,0]],[[0,2,2,0],[2,3,2,2],[0,3,0,2],[1,3,2,0]],[[0,2,2,0],[2,3,2,2],[0,3,0,2],[1,2,3,0]],[[0,3,2,0],[2,3,2,2],[0,3,1,0],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[0,3,1,0],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[0,3,1,0],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[0,3,1,0],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[0,4,1,0],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[0,3,1,0],[2,2,2,1]],[[0,2,2,0],[2,3,2,2],[0,3,1,0],[1,3,2,1]],[[0,2,2,0],[2,3,2,2],[0,3,1,0],[1,2,3,1]],[[0,2,2,0],[2,3,2,2],[0,3,1,0],[1,2,2,2]],[[0,3,2,0],[2,3,2,2],[0,3,1,1],[1,2,2,0]],[[0,2,3,0],[2,3,2,2],[0,3,1,1],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[0,3,1,1],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[0,3,1,1],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[0,4,1,1],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[0,3,1,1],[2,2,2,0]],[[0,2,2,0],[2,3,2,2],[0,3,1,1],[1,3,2,0]],[[0,2,2,0],[2,3,2,2],[0,3,1,1],[1,2,3,0]],[[0,3,2,0],[2,3,2,2],[0,3,1,2],[0,1,2,1]],[[0,2,3,0],[2,3,2,2],[0,3,1,2],[0,1,2,1]],[[0,2,2,0],[2,4,2,2],[0,3,1,2],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[0,3,1,2],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[0,3,1,2],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[0,3,1,2],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[0,3,1,2],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[0,4,1,2],[1,1,1,1]],[[0,3,2,0],[2,3,2,2],[0,3,1,2],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[0,3,1,2],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[0,3,1,2],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[0,3,1,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[0,4,1,2],[1,1,2,0]],[[0,3,2,0],[2,3,2,2],[0,3,1,2],[1,2,0,1]],[[0,2,3,0],[2,3,2,2],[0,3,1,2],[1,2,0,1]],[[0,2,2,0],[3,3,2,2],[0,3,1,2],[1,2,0,1]],[[0,2,2,0],[2,4,2,2],[0,3,1,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[0,4,1,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[0,3,1,2],[2,2,0,1]],[[0,2,2,0],[2,3,2,2],[0,3,1,2],[1,3,0,1]],[[0,3,2,0],[2,3,2,2],[0,3,1,2],[1,2,1,0]],[[0,2,3,0],[2,3,2,2],[0,3,1,2],[1,2,1,0]],[[0,2,2,0],[3,3,2,2],[0,3,1,2],[1,2,1,0]],[[0,2,2,0],[2,4,2,2],[0,3,1,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[0,4,1,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[0,3,1,2],[2,2,1,0]],[[0,2,2,0],[2,3,2,2],[0,3,1,2],[1,3,1,0]],[[0,3,2,0],[2,3,2,2],[0,3,2,0],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[0,3,2,0],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[0,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[0,3,2,0],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[0,4,2,0],[1,1,2,1]],[[0,3,2,0],[2,3,2,2],[0,3,2,0],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[0,3,2,0],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[0,3,2,0],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[0,3,2,0],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[0,4,2,0],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[0,3,2,0],[2,2,1,1]],[[0,2,2,0],[2,3,2,2],[0,3,2,0],[1,3,1,1]],[[0,3,2,0],[2,3,2,2],[0,3,2,1],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[0,3,2,1],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[0,3,2,1],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[0,3,2,1],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[0,4,2,1],[1,1,1,1]],[[0,3,2,0],[2,3,2,2],[0,3,2,1],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[0,3,2,1],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[0,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[0,3,2,1],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[0,4,2,1],[1,1,2,0]],[[0,3,2,0],[2,3,2,2],[0,3,2,1],[1,2,0,1]],[[0,2,3,0],[2,3,2,2],[0,3,2,1],[1,2,0,1]],[[0,2,2,0],[3,3,2,2],[0,3,2,1],[1,2,0,1]],[[0,2,2,0],[2,4,2,2],[0,3,2,1],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[0,4,2,1],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[0,3,2,1],[2,2,0,1]],[[0,2,2,0],[2,3,2,2],[0,3,2,1],[1,3,0,1]],[[0,3,2,0],[2,3,2,2],[0,3,2,1],[1,2,1,0]],[[0,2,3,0],[2,3,2,2],[0,3,2,1],[1,2,1,0]],[[0,2,2,0],[3,3,2,2],[0,3,2,1],[1,2,1,0]],[[0,2,2,0],[2,4,2,2],[0,3,2,1],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[0,4,2,1],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[0,3,2,1],[2,2,1,0]],[[0,2,2,0],[2,3,2,2],[0,3,2,1],[1,3,1,0]],[[0,3,2,0],[2,3,2,2],[0,3,2,2],[0,0,2,1]],[[0,2,3,0],[2,3,2,2],[0,3,2,2],[0,0,2,1]],[[0,2,2,0],[2,4,2,2],[0,3,2,2],[0,0,2,1]],[[0,3,2,0],[2,3,2,2],[0,3,2,2],[0,1,1,1]],[[0,2,3,0],[2,3,2,2],[0,3,2,2],[0,1,1,1]],[[0,2,2,0],[2,4,2,2],[0,3,2,2],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[0,3,2,2],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[0,3,2,2],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[0,3,2,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[0,3,2,2],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[0,3,2,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[0,3,2,2],[0,2,0,1]],[[0,3,2,0],[2,3,2,2],[0,3,2,2],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[0,3,2,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,2,2],[2,3,0,0],[1,3,2,0]],[[1,2,2,1],[0,3,2,2],[2,3,0,0],[2,2,2,0]],[[1,2,2,1],[0,3,2,2],[3,3,0,0],[1,2,2,0]],[[0,3,2,0],[2,3,2,2],[0,3,3,0],[0,1,2,1]],[[0,2,3,0],[2,3,2,2],[0,3,3,0],[0,1,2,1]],[[0,2,2,0],[2,4,2,2],[0,3,3,0],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[0,3,3,0],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[0,3,3,0],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[0,3,3,0],[0,2,1,1]],[[0,3,2,0],[2,3,2,2],[0,3,3,0],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[0,3,3,0],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[0,3,3,0],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[0,3,3,0],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[0,4,3,0],[1,1,2,0]],[[0,3,2,0],[2,3,2,2],[0,3,3,0],[1,2,1,0]],[[0,2,3,0],[2,3,2,2],[0,3,3,0],[1,2,1,0]],[[0,2,2,0],[3,3,2,2],[0,3,3,0],[1,2,1,0]],[[0,2,2,0],[2,4,2,2],[0,3,3,0],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[0,4,3,0],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[0,3,3,0],[2,2,1,0]],[[0,2,2,0],[2,3,2,2],[0,3,3,0],[1,3,1,0]],[[0,3,2,0],[2,3,2,2],[0,3,3,1],[0,0,2,1]],[[0,2,3,0],[2,3,2,2],[0,3,3,1],[0,0,2,1]],[[0,2,2,0],[2,4,2,2],[0,3,3,1],[0,0,2,1]],[[0,3,2,0],[2,3,2,2],[0,3,3,1],[0,1,1,1]],[[0,2,3,0],[2,3,2,2],[0,3,3,1],[0,1,1,1]],[[0,2,2,0],[2,4,2,2],[0,3,3,1],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[0,3,3,1],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[0,3,3,1],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[0,3,3,1],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[0,3,3,1],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[0,3,3,1],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[0,3,3,1],[0,2,0,1]],[[0,3,2,0],[2,3,2,2],[0,3,3,1],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[0,3,3,1],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[0,3,3,1],[0,2,1,0]],[[0,3,2,0],[2,3,2,2],[0,3,3,1],[1,2,0,0]],[[0,2,3,0],[2,3,2,2],[0,3,3,1],[1,2,0,0]],[[0,2,2,0],[3,3,2,2],[0,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,4,2,2],[0,3,3,1],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[0,4,3,1],[1,2,0,0]],[[0,3,2,0],[2,3,2,2],[0,3,3,2],[0,1,0,1]],[[0,2,3,0],[2,3,2,2],[0,3,3,2],[0,1,0,1]],[[0,2,2,0],[2,4,2,2],[0,3,3,2],[0,1,0,1]],[[1,2,2,1],[0,4,2,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,2],[0,3,2,2],[2,2,3,0],[1,1,1,0]],[[1,2,3,1],[0,3,2,2],[2,2,3,0],[1,1,1,0]],[[1,3,2,1],[0,3,2,2],[2,2,3,0],[1,1,1,0]],[[2,2,2,1],[0,3,2,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[0,4,2,2],[2,2,3,0],[1,1,0,1]],[[1,2,2,2],[0,3,2,2],[2,2,3,0],[1,1,0,1]],[[1,2,3,1],[0,3,2,2],[2,2,3,0],[1,1,0,1]],[[1,3,2,1],[0,3,2,2],[2,2,3,0],[1,1,0,1]],[[2,2,2,1],[0,3,2,2],[2,2,3,0],[1,1,0,1]],[[1,2,2,1],[0,4,2,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,2],[0,3,2,2],[2,2,3,0],[1,0,2,0]],[[1,2,3,1],[0,3,2,2],[2,2,3,0],[1,0,2,0]],[[1,3,2,1],[0,3,2,2],[2,2,3,0],[1,0,2,0]],[[2,2,2,1],[0,3,2,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,1],[0,4,2,2],[2,2,3,0],[1,0,1,1]],[[1,2,2,2],[0,3,2,2],[2,2,3,0],[1,0,1,1]],[[1,2,3,1],[0,3,2,2],[2,2,3,0],[1,0,1,1]],[[1,3,2,1],[0,3,2,2],[2,2,3,0],[1,0,1,1]],[[2,2,2,1],[0,3,2,2],[2,2,3,0],[1,0,1,1]],[[1,2,2,1],[0,4,2,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,2],[0,3,2,2],[2,2,3,0],[0,2,1,0]],[[1,2,3,1],[0,3,2,2],[2,2,3,0],[0,2,1,0]],[[1,3,2,1],[0,3,2,2],[2,2,3,0],[0,2,1,0]],[[2,2,2,1],[0,3,2,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[0,4,2,2],[2,2,3,0],[0,2,0,1]],[[1,2,2,2],[0,3,2,2],[2,2,3,0],[0,2,0,1]],[[1,2,3,1],[0,3,2,2],[2,2,3,0],[0,2,0,1]],[[1,3,2,1],[0,3,2,2],[2,2,3,0],[0,2,0,1]],[[2,2,2,1],[0,3,2,2],[2,2,3,0],[0,2,0,1]],[[1,2,2,1],[0,4,2,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,2],[0,3,2,2],[2,2,3,0],[0,1,2,0]],[[1,2,3,1],[0,3,2,2],[2,2,3,0],[0,1,2,0]],[[1,3,2,1],[0,3,2,2],[2,2,3,0],[0,1,2,0]],[[2,2,2,1],[0,3,2,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,1],[0,4,2,2],[2,2,3,0],[0,1,1,1]],[[1,2,2,2],[0,3,2,2],[2,2,3,0],[0,1,1,1]],[[1,2,3,1],[0,3,2,2],[2,2,3,0],[0,1,1,1]],[[1,3,2,1],[0,3,2,2],[2,2,3,0],[0,1,1,1]],[[2,2,2,1],[0,3,2,2],[2,2,3,0],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[1,0,1,2],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[1,0,1,2],[1,2,2,1]],[[0,3,2,0],[2,3,2,2],[1,0,2,2],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[1,0,2,2],[1,2,1,1]],[[0,3,2,0],[2,3,2,2],[1,0,2,2],[1,2,2,0]],[[0,2,3,0],[2,3,2,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[1,0,2,2],[1,2,2,0]],[[0,3,2,0],[2,3,2,2],[1,0,3,0],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[1,0,3,0],[1,2,2,1]],[[0,3,2,0],[2,3,2,2],[1,0,3,1],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[1,0,3,1],[1,2,1,1]],[[0,3,2,0],[2,3,2,2],[1,0,3,1],[1,2,2,0]],[[0,2,3,0],[2,3,2,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[1,0,3,1],[1,2,2,0]],[[0,3,2,0],[2,3,2,2],[1,1,0,2],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[1,1,0,2],[1,2,2,1]],[[0,3,2,0],[2,3,2,2],[1,1,1,2],[0,2,2,1]],[[0,2,3,0],[2,3,2,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,0],[3,3,2,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,0],[2,4,2,2],[1,1,1,2],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[1,1,2,2],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,0],[3,3,2,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[1,1,2,2],[0,2,1,1]],[[0,3,2,0],[2,3,2,2],[1,1,2,2],[0,2,2,0]],[[0,2,3,0],[2,3,2,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,0],[3,3,2,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,0],[2,4,2,2],[1,1,2,2],[0,2,2,0]],[[0,3,2,0],[2,3,2,2],[1,1,3,0],[0,2,2,1]],[[0,2,3,0],[2,3,2,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,0],[3,3,2,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,0],[2,4,2,2],[1,1,3,0],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[1,1,3,1],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,0],[3,3,2,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[1,1,3,1],[0,2,1,1]],[[0,3,2,0],[2,3,2,2],[1,1,3,1],[0,2,2,0]],[[0,2,3,0],[2,3,2,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,0],[3,3,2,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,0],[2,4,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,3,2,2],[2,2,2,0],[1,3,1,0]],[[1,2,2,1],[0,3,2,2],[2,2,2,0],[2,2,1,0]],[[1,2,2,1],[0,3,2,2],[3,2,2,0],[1,2,1,0]],[[1,2,2,1],[0,3,2,2],[2,2,1,0],[1,3,2,0]],[[1,2,2,1],[0,3,2,2],[2,2,1,0],[2,2,2,0]],[[1,2,2,1],[0,3,2,2],[3,2,1,0],[1,2,2,0]],[[0,3,2,0],[2,3,2,2],[1,2,0,2],[0,2,2,1]],[[0,2,3,0],[2,3,2,2],[1,2,0,2],[0,2,2,1]],[[0,2,2,0],[3,3,2,2],[1,2,0,2],[0,2,2,1]],[[0,2,2,0],[2,4,2,2],[1,2,0,2],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[1,2,1,2],[0,1,2,1]],[[0,2,3,0],[2,3,2,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,0],[3,3,2,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,0],[2,4,2,2],[1,2,1,2],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[1,2,1,2],[1,0,2,1]],[[0,2,3,0],[2,3,2,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,0],[3,3,2,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,0],[2,4,2,2],[1,2,1,2],[1,0,2,1]],[[0,3,2,0],[2,3,2,2],[1,2,2,2],[0,0,2,1]],[[0,2,3,0],[2,3,2,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,0],[3,3,2,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,0],[2,4,2,2],[1,2,2,2],[0,0,2,1]],[[0,3,2,0],[2,3,2,2],[1,2,2,2],[0,1,1,1]],[[0,2,3,0],[2,3,2,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,0],[3,3,2,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,0],[2,4,2,2],[1,2,2,2],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[1,2,2,2],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,0],[3,3,2,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[1,2,2,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[1,2,2,2],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,0],[3,3,2,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[1,2,2,2],[0,2,0,1]],[[0,3,2,0],[2,3,2,2],[1,2,2,2],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[1,2,2,2],[0,2,1,0]],[[0,3,2,0],[2,3,2,2],[1,2,2,2],[1,0,1,1]],[[0,2,3,0],[2,3,2,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,0],[3,3,2,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,0],[2,4,2,2],[1,2,2,2],[1,0,1,1]],[[0,3,2,0],[2,3,2,2],[1,2,2,2],[1,0,2,0]],[[0,2,3,0],[2,3,2,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,0],[3,3,2,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,0],[2,4,2,2],[1,2,2,2],[1,0,2,0]],[[0,3,2,0],[2,3,2,2],[1,2,2,2],[1,1,0,1]],[[0,2,3,0],[2,3,2,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,0],[3,3,2,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,0],[2,4,2,2],[1,2,2,2],[1,1,0,1]],[[0,3,2,0],[2,3,2,2],[1,2,2,2],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[1,2,2,2],[1,1,1,0]],[[0,3,2,0],[2,3,2,2],[1,2,3,0],[0,1,2,1]],[[0,2,3,0],[2,3,2,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,0],[3,3,2,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,0],[2,4,2,2],[1,2,3,0],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[1,2,3,0],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[1,2,3,0],[0,2,1,1]],[[0,2,2,0],[3,3,2,2],[1,2,3,0],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[1,2,3,0],[0,2,1,1]],[[0,3,2,0],[2,3,2,2],[1,2,3,0],[1,0,2,1]],[[0,2,3,0],[2,3,2,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,0],[3,3,2,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,0],[2,4,2,2],[1,2,3,0],[1,0,2,1]],[[0,3,2,0],[2,3,2,2],[1,2,3,0],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[1,2,3,0],[1,1,1,1]],[[0,3,2,0],[2,3,2,2],[1,2,3,1],[0,0,2,1]],[[0,2,3,0],[2,3,2,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,0],[3,3,2,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,0],[2,4,2,2],[1,2,3,1],[0,0,2,1]],[[0,3,2,0],[2,3,2,2],[1,2,3,1],[0,1,1,1]],[[0,2,3,0],[2,3,2,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,0],[3,3,2,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,0],[2,4,2,2],[1,2,3,1],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[1,2,3,1],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,0],[3,3,2,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[1,2,3,1],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[1,2,3,1],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,0],[3,3,2,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[1,2,3,1],[0,2,0,1]],[[0,3,2,0],[2,3,2,2],[1,2,3,1],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[1,2,3,1],[0,2,1,0]],[[0,3,2,0],[2,3,2,2],[1,2,3,1],[1,0,1,1]],[[0,2,3,0],[2,3,2,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,0],[3,3,2,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,0],[2,4,2,2],[1,2,3,1],[1,0,1,1]],[[0,3,2,0],[2,3,2,2],[1,2,3,1],[1,0,2,0]],[[0,2,3,0],[2,3,2,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,0],[3,3,2,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,0],[2,4,2,2],[1,2,3,1],[1,0,2,0]],[[0,3,2,0],[2,3,2,2],[1,2,3,1],[1,1,0,1]],[[0,2,3,0],[2,3,2,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,0],[3,3,2,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,0],[2,4,2,2],[1,2,3,1],[1,1,0,1]],[[0,3,2,0],[2,3,2,2],[1,2,3,1],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[0,4,2,2],[2,1,3,0],[0,2,2,0]],[[1,2,2,2],[0,3,2,2],[2,1,3,0],[0,2,2,0]],[[1,2,3,1],[0,3,2,2],[2,1,3,0],[0,2,2,0]],[[1,3,2,1],[0,3,2,2],[2,1,3,0],[0,2,2,0]],[[2,2,2,1],[0,3,2,2],[2,1,3,0],[0,2,2,0]],[[0,3,2,0],[2,3,2,2],[1,2,3,2],[0,1,0,1]],[[0,2,3,0],[2,3,2,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,0],[3,3,2,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,0],[2,4,2,2],[1,2,3,2],[0,1,0,1]],[[0,3,2,0],[2,3,2,2],[1,2,3,2],[1,0,0,1]],[[0,2,3,0],[2,3,2,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,0],[3,3,2,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,0],[2,4,2,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[0,4,2,2],[2,0,3,0],[1,2,2,0]],[[1,2,2,2],[0,3,2,2],[2,0,3,0],[1,2,2,0]],[[1,2,3,1],[0,3,2,2],[2,0,3,0],[1,2,2,0]],[[1,3,2,1],[0,3,2,2],[2,0,3,0],[1,2,2,0]],[[2,2,2,1],[0,3,2,2],[2,0,3,0],[1,2,2,0]],[[0,3,2,0],[2,3,2,2],[1,3,0,1],[0,2,2,1]],[[0,2,3,0],[2,3,2,2],[1,3,0,1],[0,2,2,1]],[[0,2,2,0],[3,3,2,2],[1,3,0,1],[0,2,2,1]],[[0,2,2,0],[2,4,2,2],[1,3,0,1],[0,2,2,1]],[[0,2,2,0],[2,3,2,2],[1,4,0,1],[0,2,2,1]],[[0,2,2,0],[2,3,2,2],[1,3,0,1],[0,3,2,1]],[[0,2,2,0],[2,3,2,2],[1,3,0,1],[0,2,3,1]],[[0,2,2,0],[2,3,2,2],[1,3,0,1],[0,2,2,2]],[[0,3,2,0],[2,3,2,2],[1,3,0,1],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[1,3,0,1],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[1,3,0,1],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[1,3,0,1],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[1,4,0,1],[1,1,2,1]],[[0,3,2,0],[2,3,2,2],[1,3,0,2],[0,1,2,1]],[[0,2,3,0],[2,3,2,2],[1,3,0,2],[0,1,2,1]],[[0,2,2,0],[3,3,2,2],[1,3,0,2],[0,1,2,1]],[[0,2,2,0],[2,4,2,2],[1,3,0,2],[0,1,2,1]],[[0,2,2,0],[2,3,2,2],[1,4,0,2],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[1,3,0,2],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[1,3,0,2],[0,2,1,1]],[[0,2,2,0],[3,3,2,2],[1,3,0,2],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[1,3,0,2],[0,2,1,1]],[[0,2,2,0],[2,3,2,2],[1,4,0,2],[0,2,1,1]],[[0,2,2,0],[2,3,2,2],[1,3,0,2],[0,3,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,0,2],[0,2,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,0,2],[0,2,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,0,2],[0,2,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,0,2],[0,2,2,0]],[[0,2,2,0],[2,3,2,2],[1,4,0,2],[0,2,2,0]],[[0,2,2,0],[2,3,2,2],[1,3,0,2],[0,3,2,0]],[[0,2,2,0],[2,3,2,2],[1,3,0,2],[0,2,3,0]],[[0,3,2,0],[2,3,2,2],[1,3,0,2],[1,0,2,1]],[[0,2,3,0],[2,3,2,2],[1,3,0,2],[1,0,2,1]],[[0,2,2,0],[3,3,2,2],[1,3,0,2],[1,0,2,1]],[[0,2,2,0],[2,4,2,2],[1,3,0,2],[1,0,2,1]],[[0,2,2,0],[2,3,2,2],[1,4,0,2],[1,0,2,1]],[[0,3,2,0],[2,3,2,2],[1,3,0,2],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[1,4,0,2],[1,1,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,0,2],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[1,4,0,2],[1,1,2,0]],[[0,3,2,0],[2,3,2,2],[1,3,1,0],[0,2,2,1]],[[0,2,3,0],[2,3,2,2],[1,3,1,0],[0,2,2,1]],[[0,2,2,0],[3,3,2,2],[1,3,1,0],[0,2,2,1]],[[0,2,2,0],[2,4,2,2],[1,3,1,0],[0,2,2,1]],[[0,2,2,0],[2,3,2,2],[1,4,1,0],[0,2,2,1]],[[0,2,2,0],[2,3,2,2],[1,3,1,0],[0,3,2,1]],[[0,2,2,0],[2,3,2,2],[1,3,1,0],[0,2,3,1]],[[0,2,2,0],[2,3,2,2],[1,3,1,0],[0,2,2,2]],[[0,3,2,0],[2,3,2,2],[1,3,1,0],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[1,3,1,0],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[1,3,1,0],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[1,3,1,0],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[1,4,1,0],[1,1,2,1]],[[0,3,2,0],[2,3,2,2],[1,3,1,1],[0,2,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,1,1],[0,2,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,1,1],[0,2,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,1,1],[0,2,2,0]],[[0,2,2,0],[2,3,2,2],[1,4,1,1],[0,2,2,0]],[[0,2,2,0],[2,3,2,2],[1,3,1,1],[0,3,2,0]],[[0,2,2,0],[2,3,2,2],[1,3,1,1],[0,2,3,0]],[[0,3,2,0],[2,3,2,2],[1,3,1,1],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[1,4,1,1],[1,1,2,0]],[[1,2,2,1],[0,3,2,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[0,3,2,3],[1,3,3,2],[0,0,0,1]],[[0,3,2,0],[2,3,2,2],[1,3,1,2],[0,1,1,1]],[[0,2,3,0],[2,3,2,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,0],[3,3,2,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,0],[2,4,2,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,0],[2,3,2,2],[1,4,1,2],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,1,2],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,1,2],[0,1,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,1,2],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,1,2],[0,1,2,0]],[[0,2,2,0],[2,3,2,2],[1,4,1,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[1,3,1,2],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[1,3,1,2],[0,2,0,1]],[[0,2,2,0],[3,3,2,2],[1,3,1,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[1,3,1,2],[0,2,0,1]],[[0,2,2,0],[2,3,2,2],[1,4,1,2],[0,2,0,1]],[[0,2,2,0],[2,3,2,2],[1,3,1,2],[0,3,0,1]],[[0,3,2,0],[2,3,2,2],[1,3,1,2],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[1,3,1,2],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[1,3,1,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[1,3,1,2],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[1,4,1,2],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[1,3,1,2],[0,3,1,0]],[[1,2,2,2],[0,3,2,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[0,3,2,2],[1,3,3,2],[0,0,0,1]],[[1,3,2,1],[0,3,2,2],[1,3,3,2],[0,0,0,1]],[[0,3,2,0],[2,3,2,2],[1,3,1,2],[1,0,1,1]],[[0,2,3,0],[2,3,2,2],[1,3,1,2],[1,0,1,1]],[[0,2,2,0],[3,3,2,2],[1,3,1,2],[1,0,1,1]],[[0,2,2,0],[2,4,2,2],[1,3,1,2],[1,0,1,1]],[[0,2,2,0],[2,3,2,2],[1,4,1,2],[1,0,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,1,2],[1,0,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,1,2],[1,0,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,1,2],[1,0,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,1,2],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[1,4,1,2],[1,0,2,0]],[[0,3,2,0],[2,3,2,2],[1,3,1,2],[1,1,0,1]],[[0,2,3,0],[2,3,2,2],[1,3,1,2],[1,1,0,1]],[[0,2,2,0],[3,3,2,2],[1,3,1,2],[1,1,0,1]],[[0,2,2,0],[2,4,2,2],[1,3,1,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[1,4,1,2],[1,1,0,1]],[[0,3,2,0],[2,3,2,2],[1,3,1,2],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[1,3,1,2],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[1,3,1,2],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[1,3,1,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[1,4,1,2],[1,1,1,0]],[[0,3,2,0],[2,3,2,2],[1,3,1,2],[1,2,0,0]],[[0,2,3,0],[2,3,2,2],[1,3,1,2],[1,2,0,0]],[[0,2,2,0],[3,3,2,2],[1,3,1,2],[1,2,0,0]],[[0,2,2,0],[2,4,2,2],[1,3,1,2],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[1,4,1,2],[1,2,0,0]],[[1,2,2,1],[0,3,2,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,2],[0,3,2,2],[1,3,3,1],[1,1,0,0]],[[1,2,3,1],[0,3,2,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,1],[0,3,2,2],[1,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,3,2,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,2],[0,3,2,2],[1,3,3,1],[0,2,0,0]],[[1,2,3,1],[0,3,2,2],[1,3,3,1],[0,2,0,0]],[[0,3,2,0],[2,3,2,2],[1,3,2,0],[0,1,2,1]],[[0,2,3,0],[2,3,2,2],[1,3,2,0],[0,1,2,1]],[[0,2,2,0],[3,3,2,2],[1,3,2,0],[0,1,2,1]],[[0,2,2,0],[2,4,2,2],[1,3,2,0],[0,1,2,1]],[[0,2,2,0],[2,3,2,2],[1,4,2,0],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[1,3,2,0],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[1,3,2,0],[0,2,1,1]],[[0,2,2,0],[3,3,2,2],[1,3,2,0],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[1,3,2,0],[0,2,1,1]],[[0,2,2,0],[2,3,2,2],[1,4,2,0],[0,2,1,1]],[[0,2,2,0],[2,3,2,2],[1,3,2,0],[0,3,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,2,0],[1,0,2,1]],[[0,2,3,0],[2,3,2,2],[1,3,2,0],[1,0,2,1]],[[0,2,2,0],[3,3,2,2],[1,3,2,0],[1,0,2,1]],[[0,2,2,0],[2,4,2,2],[1,3,2,0],[1,0,2,1]],[[0,2,2,0],[2,3,2,2],[1,4,2,0],[1,0,2,1]],[[0,3,2,0],[2,3,2,2],[1,3,2,0],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[1,4,2,0],[1,1,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,2,0],[1,2,0,1]],[[0,2,3,0],[2,3,2,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,0],[3,3,2,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,0],[2,4,2,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[1,4,2,0],[1,2,0,1]],[[1,3,2,1],[0,3,2,2],[1,3,3,1],[0,2,0,0]],[[0,3,2,0],[2,3,2,2],[1,3,2,1],[0,1,1,1]],[[0,2,3,0],[2,3,2,2],[1,3,2,1],[0,1,1,1]],[[0,2,2,0],[3,3,2,2],[1,3,2,1],[0,1,1,1]],[[0,2,2,0],[2,4,2,2],[1,3,2,1],[0,1,1,1]],[[0,2,2,0],[2,3,2,2],[1,4,2,1],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,2,1],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,2,1],[0,1,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,2,1],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,2,1],[0,1,2,0]],[[0,2,2,0],[2,3,2,2],[1,4,2,1],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[1,3,2,1],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[1,3,2,1],[0,2,0,1]],[[0,2,2,0],[3,3,2,2],[1,3,2,1],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[1,3,2,1],[0,2,0,1]],[[0,2,2,0],[2,3,2,2],[1,4,2,1],[0,2,0,1]],[[0,2,2,0],[2,3,2,2],[1,3,2,1],[0,3,0,1]],[[0,3,2,0],[2,3,2,2],[1,3,2,1],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[1,3,2,1],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[1,3,2,1],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[1,3,2,1],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[1,4,2,1],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[1,3,2,1],[0,3,1,0]],[[1,2,2,1],[0,3,2,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[0,3,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[0,3,2,2],[1,3,3,1],[0,0,2,0]],[[1,3,2,1],[0,3,2,2],[1,3,3,1],[0,0,2,0]],[[0,3,2,0],[2,3,2,2],[1,3,2,1],[1,0,1,1]],[[0,2,3,0],[2,3,2,2],[1,3,2,1],[1,0,1,1]],[[0,2,2,0],[3,3,2,2],[1,3,2,1],[1,0,1,1]],[[0,2,2,0],[2,4,2,2],[1,3,2,1],[1,0,1,1]],[[0,2,2,0],[2,3,2,2],[1,4,2,1],[1,0,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,2,1],[1,0,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,2,1],[1,0,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,2,1],[1,0,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,2,1],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[1,4,2,1],[1,0,2,0]],[[0,3,2,0],[2,3,2,2],[1,3,2,1],[1,1,0,1]],[[0,2,3,0],[2,3,2,2],[1,3,2,1],[1,1,0,1]],[[0,2,2,0],[3,3,2,2],[1,3,2,1],[1,1,0,1]],[[0,2,2,0],[2,4,2,2],[1,3,2,1],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[1,4,2,1],[1,1,0,1]],[[0,3,2,0],[2,3,2,2],[1,3,2,1],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[1,3,2,1],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[1,3,2,1],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[1,3,2,1],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[1,4,2,1],[1,1,1,0]],[[1,2,2,1],[0,3,2,3],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[0,3,2,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[0,3,2,2],[1,3,3,1],[0,0,1,1]],[[1,3,2,1],[0,3,2,2],[1,3,3,1],[0,0,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,2,1],[1,2,0,0]],[[0,2,3,0],[2,3,2,2],[1,3,2,1],[1,2,0,0]],[[0,2,2,0],[3,3,2,2],[1,3,2,1],[1,2,0,0]],[[0,2,2,0],[2,4,2,2],[1,3,2,1],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[1,4,2,1],[1,2,0,0]],[[1,2,2,1],[0,3,2,2],[1,4,3,0],[1,2,0,0]],[[1,2,2,1],[0,4,2,2],[1,3,3,0],[1,2,0,0]],[[1,2,2,2],[0,3,2,2],[1,3,3,0],[1,2,0,0]],[[1,2,3,1],[0,3,2,2],[1,3,3,0],[1,2,0,0]],[[1,3,2,1],[0,3,2,2],[1,3,3,0],[1,2,0,0]],[[2,2,2,1],[0,3,2,2],[1,3,3,0],[1,2,0,0]],[[0,3,2,0],[2,3,2,2],[1,3,2,2],[0,0,1,1]],[[0,2,3,0],[2,3,2,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,0],[3,3,2,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,0],[2,4,2,2],[1,3,2,2],[0,0,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,2,2],[0,0,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[0,3,2,3],[1,3,3,0],[0,0,2,1]],[[1,2,2,2],[0,3,2,2],[1,3,3,0],[0,0,2,1]],[[1,2,3,1],[0,3,2,2],[1,3,3,0],[0,0,2,1]],[[1,3,2,1],[0,3,2,2],[1,3,3,0],[0,0,2,1]],[[1,2,2,1],[0,3,2,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,1],[0,3,2,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[0,3,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[0,3,2,2],[1,3,2,2],[0,0,2,0]],[[1,3,2,1],[0,3,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[0,3,2,2],[1,3,2,2],[0,0,1,2]],[[1,2,2,1],[0,3,2,2],[1,3,2,3],[0,0,1,1]],[[1,2,2,1],[0,3,2,3],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[0,3,2,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[0,3,2,2],[1,3,2,2],[0,0,1,1]],[[1,3,2,1],[0,3,2,2],[1,3,2,2],[0,0,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,3,0],[0,0,2,1]],[[0,2,3,0],[2,3,2,2],[1,3,3,0],[0,0,2,1]],[[0,2,2,0],[3,3,2,2],[1,3,3,0],[0,0,2,1]],[[0,2,2,0],[2,4,2,2],[1,3,3,0],[0,0,2,1]],[[0,3,2,0],[2,3,2,2],[1,3,3,0],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,3,0],[0,1,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,3,0],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,3,0],[0,1,2,0]],[[0,2,2,0],[2,3,2,2],[1,4,3,0],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[1,3,3,0],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[1,3,3,0],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[1,3,3,0],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[1,3,3,0],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[1,4,3,0],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[1,3,3,0],[0,3,1,0]],[[1,2,2,1],[0,3,2,3],[1,3,2,1],[1,1,1,0]],[[0,3,2,0],[2,3,2,2],[1,3,3,0],[1,0,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,3,0],[1,0,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,3,0],[1,0,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,3,0],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[1,4,3,0],[1,0,2,0]],[[0,3,2,0],[2,3,2,2],[1,3,3,0],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[1,3,3,0],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[1,3,3,0],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[1,3,3,0],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[1,4,3,0],[1,1,1,0]],[[1,2,2,2],[0,3,2,2],[1,3,2,1],[1,1,1,0]],[[1,2,3,1],[0,3,2,2],[1,3,2,1],[1,1,1,0]],[[1,3,2,1],[0,3,2,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,3,2,3],[1,3,2,1],[1,1,0,1]],[[1,2,2,2],[0,3,2,2],[1,3,2,1],[1,1,0,1]],[[1,2,3,1],[0,3,2,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,1],[0,3,2,2],[1,3,2,1],[1,1,0,1]],[[0,3,2,0],[2,3,2,2],[1,3,3,0],[1,2,0,0]],[[0,2,3,0],[2,3,2,2],[1,3,3,0],[1,2,0,0]],[[0,2,2,0],[3,3,2,2],[1,3,3,0],[1,2,0,0]],[[0,2,2,0],[2,4,2,2],[1,3,3,0],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[1,4,3,0],[1,2,0,0]],[[1,2,2,1],[0,3,2,3],[1,3,2,1],[1,0,2,0]],[[1,2,2,2],[0,3,2,2],[1,3,2,1],[1,0,2,0]],[[1,2,3,1],[0,3,2,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,1],[0,3,2,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,1],[0,3,2,3],[1,3,2,1],[1,0,1,1]],[[1,2,2,2],[0,3,2,2],[1,3,2,1],[1,0,1,1]],[[1,2,3,1],[0,3,2,2],[1,3,2,1],[1,0,1,1]],[[1,3,2,1],[0,3,2,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,1],[0,3,2,3],[1,3,2,1],[0,2,1,0]],[[1,2,2,2],[0,3,2,2],[1,3,2,1],[0,2,1,0]],[[1,2,3,1],[0,3,2,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,1],[0,3,2,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,3,2,3],[1,3,2,1],[0,2,0,1]],[[1,2,2,2],[0,3,2,2],[1,3,2,1],[0,2,0,1]],[[0,3,2,0],[2,3,2,2],[1,3,3,1],[0,0,1,1]],[[0,2,3,0],[2,3,2,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,0],[3,3,2,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,0],[2,4,2,2],[1,3,3,1],[0,0,1,1]],[[0,3,2,0],[2,3,2,2],[1,3,3,1],[0,0,2,0]],[[0,2,3,0],[2,3,2,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,0],[3,3,2,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,0],[2,4,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[0,3,2,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,1],[0,3,2,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,1],[0,3,2,3],[1,3,2,1],[0,1,2,0]],[[1,2,2,2],[0,3,2,2],[1,3,2,1],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[1,3,3,1],[0,2,0,0]],[[0,2,3,0],[2,3,2,2],[1,3,3,1],[0,2,0,0]],[[0,2,2,0],[3,3,2,2],[1,3,3,1],[0,2,0,0]],[[0,2,2,0],[2,4,2,2],[1,3,3,1],[0,2,0,0]],[[0,2,2,0],[2,3,2,2],[1,4,3,1],[0,2,0,0]],[[1,2,3,1],[0,3,2,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,1],[0,3,2,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,1],[0,3,2,3],[1,3,2,1],[0,1,1,1]],[[1,2,2,2],[0,3,2,2],[1,3,2,1],[0,1,1,1]],[[1,2,3,1],[0,3,2,2],[1,3,2,1],[0,1,1,1]],[[1,3,2,1],[0,3,2,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,1],[0,3,2,2],[1,3,2,0],[1,3,1,0]],[[1,2,2,1],[0,3,2,2],[1,3,2,0],[2,2,1,0]],[[1,2,2,1],[0,3,2,2],[1,4,2,0],[1,2,1,0]],[[1,2,2,1],[0,4,2,2],[1,3,2,0],[1,2,1,0]],[[1,2,2,2],[0,3,2,2],[1,3,2,0],[1,2,1,0]],[[1,2,3,1],[0,3,2,2],[1,3,2,0],[1,2,1,0]],[[1,3,2,1],[0,3,2,2],[1,3,2,0],[1,2,1,0]],[[2,2,2,1],[0,3,2,2],[1,3,2,0],[1,2,1,0]],[[1,2,2,1],[0,3,2,2],[1,4,2,0],[1,2,0,1]],[[0,3,2,0],[2,3,2,2],[1,3,3,1],[1,1,0,0]],[[0,2,3,0],[2,3,2,2],[1,3,3,1],[1,1,0,0]],[[0,2,2,0],[3,3,2,2],[1,3,3,1],[1,1,0,0]],[[0,2,2,0],[2,4,2,2],[1,3,3,1],[1,1,0,0]],[[0,2,2,0],[2,3,2,2],[1,4,3,1],[1,1,0,0]],[[1,2,2,1],[0,4,2,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,2],[0,3,2,2],[1,3,2,0],[1,2,0,1]],[[1,2,3,1],[0,3,2,2],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[0,3,2,2],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[0,3,2,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,1],[0,3,2,2],[1,4,2,0],[1,1,2,0]],[[1,2,2,1],[0,4,2,2],[1,3,2,0],[1,1,2,0]],[[1,2,2,2],[0,3,2,2],[1,3,2,0],[1,1,2,0]],[[1,2,3,1],[0,3,2,2],[1,3,2,0],[1,1,2,0]],[[1,3,2,1],[0,3,2,2],[1,3,2,0],[1,1,2,0]],[[2,2,2,1],[0,3,2,2],[1,3,2,0],[1,1,2,0]],[[1,2,2,1],[0,3,2,3],[1,3,2,0],[1,0,2,1]],[[1,2,2,2],[0,3,2,2],[1,3,2,0],[1,0,2,1]],[[1,2,3,1],[0,3,2,2],[1,3,2,0],[1,0,2,1]],[[1,3,2,1],[0,3,2,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,1],[0,3,2,3],[1,3,2,0],[0,2,1,1]],[[1,2,2,2],[0,3,2,2],[1,3,2,0],[0,2,1,1]],[[1,2,3,1],[0,3,2,2],[1,3,2,0],[0,2,1,1]],[[1,3,2,1],[0,3,2,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,1],[0,3,2,3],[1,3,2,0],[0,1,2,1]],[[1,2,2,2],[0,3,2,2],[1,3,2,0],[0,1,2,1]],[[1,2,3,1],[0,3,2,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,1],[0,3,2,2],[1,3,2,0],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[1,3,3,2],[0,0,0,1]],[[0,2,3,0],[2,3,2,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,0],[3,3,2,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,0],[2,4,2,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[0,3,2,3],[1,3,1,2],[1,1,1,0]],[[1,2,2,2],[0,3,2,2],[1,3,1,2],[1,1,1,0]],[[1,2,3,1],[0,3,2,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,1],[0,3,2,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,1],[0,3,2,2],[1,3,1,3],[1,1,0,1]],[[1,2,2,1],[0,3,2,3],[1,3,1,2],[1,1,0,1]],[[1,2,2,2],[0,3,2,2],[1,3,1,2],[1,1,0,1]],[[1,2,3,1],[0,3,2,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,1],[0,3,2,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,1],[0,3,2,2],[1,3,1,3],[1,0,2,0]],[[1,2,2,1],[0,3,2,3],[1,3,1,2],[1,0,2,0]],[[1,2,2,2],[0,3,2,2],[1,3,1,2],[1,0,2,0]],[[1,2,3,1],[0,3,2,2],[1,3,1,2],[1,0,2,0]],[[1,3,2,1],[0,3,2,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,1],[0,3,2,2],[1,3,1,2],[1,0,1,2]],[[1,2,2,1],[0,3,2,2],[1,3,1,3],[1,0,1,1]],[[1,2,2,1],[0,3,2,3],[1,3,1,2],[1,0,1,1]],[[1,2,2,2],[0,3,2,2],[1,3,1,2],[1,0,1,1]],[[1,2,3,1],[0,3,2,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,1],[0,3,2,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,1],[0,3,2,2],[1,3,1,3],[0,2,1,0]],[[1,2,2,1],[0,3,2,3],[1,3,1,2],[0,2,1,0]],[[1,2,2,2],[0,3,2,2],[1,3,1,2],[0,2,1,0]],[[1,2,3,1],[0,3,2,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,1],[0,3,2,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,1],[0,3,2,2],[1,3,1,2],[0,2,0,2]],[[1,2,2,1],[0,3,2,2],[1,3,1,3],[0,2,0,1]],[[1,2,2,1],[0,3,2,3],[1,3,1,2],[0,2,0,1]],[[1,2,2,2],[0,3,2,2],[1,3,1,2],[0,2,0,1]],[[1,2,3,1],[0,3,2,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,1],[0,3,2,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,1],[0,3,2,2],[1,3,1,3],[0,1,2,0]],[[1,2,2,1],[0,3,2,3],[1,3,1,2],[0,1,2,0]],[[1,2,2,2],[0,3,2,2],[1,3,1,2],[0,1,2,0]],[[1,2,3,1],[0,3,2,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,1],[0,3,2,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,1],[0,3,2,2],[1,3,1,2],[0,1,1,2]],[[1,2,2,1],[0,3,2,2],[1,3,1,3],[0,1,1,1]],[[1,2,2,1],[0,3,2,3],[1,3,1,2],[0,1,1,1]],[[1,2,2,2],[0,3,2,2],[1,3,1,2],[0,1,1,1]],[[1,2,3,1],[0,3,2,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,1],[0,3,2,2],[1,3,1,2],[0,1,1,1]],[[1,2,2,1],[0,3,2,3],[1,3,1,1],[0,2,2,0]],[[1,2,2,2],[0,3,2,2],[1,3,1,1],[0,2,2,0]],[[1,2,3,1],[0,3,2,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,1],[0,3,2,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,1],[0,3,2,2],[1,3,1,0],[1,3,2,0]],[[1,2,2,1],[0,3,2,2],[1,3,1,0],[2,2,2,0]],[[1,2,2,1],[0,3,2,2],[1,4,1,0],[1,2,2,0]],[[1,2,2,1],[0,4,2,2],[1,3,1,0],[1,2,2,0]],[[1,2,2,2],[0,3,2,2],[1,3,1,0],[1,2,2,0]],[[1,2,3,1],[0,3,2,2],[1,3,1,0],[1,2,2,0]],[[1,3,2,1],[0,3,2,2],[1,3,1,0],[1,2,2,0]],[[2,2,2,1],[0,3,2,2],[1,3,1,0],[1,2,2,0]],[[1,2,2,1],[0,3,2,3],[1,3,1,0],[0,2,2,1]],[[1,2,2,2],[0,3,2,2],[1,3,1,0],[0,2,2,1]],[[1,2,3,1],[0,3,2,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,1],[0,3,2,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,1],[0,3,2,3],[1,3,0,2],[1,2,1,0]],[[1,2,2,1],[0,4,2,2],[1,3,0,2],[1,2,1,0]],[[1,2,2,2],[0,3,2,2],[1,3,0,2],[1,2,1,0]],[[1,2,3,1],[0,3,2,2],[1,3,0,2],[1,2,1,0]],[[1,3,2,1],[0,3,2,2],[1,3,0,2],[1,2,1,0]],[[2,2,2,1],[0,3,2,2],[1,3,0,2],[1,2,1,0]],[[1,2,2,1],[0,3,2,3],[1,3,0,2],[1,2,0,1]],[[1,2,2,1],[0,4,2,2],[1,3,0,2],[1,2,0,1]],[[1,2,2,2],[0,3,2,2],[1,3,0,2],[1,2,0,1]],[[1,2,3,1],[0,3,2,2],[1,3,0,2],[1,2,0,1]],[[1,3,2,1],[0,3,2,2],[1,3,0,2],[1,2,0,1]],[[2,2,2,1],[0,3,2,2],[1,3,0,2],[1,2,0,1]],[[1,2,2,1],[0,3,2,2],[1,3,0,2],[1,0,2,2]],[[1,2,2,1],[0,3,2,2],[1,3,0,3],[1,0,2,1]],[[1,2,2,1],[0,3,2,3],[1,3,0,2],[1,0,2,1]],[[1,2,2,2],[0,3,2,2],[1,3,0,2],[1,0,2,1]],[[1,2,3,1],[0,3,2,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,1],[0,3,2,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,1],[0,3,2,2],[1,3,0,3],[0,2,2,0]],[[1,2,2,1],[0,3,2,3],[1,3,0,2],[0,2,2,0]],[[1,2,2,2],[0,3,2,2],[1,3,0,2],[0,2,2,0]],[[1,2,3,1],[0,3,2,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,1],[0,3,2,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,1],[0,3,2,2],[1,3,0,2],[0,2,1,2]],[[1,2,2,1],[0,3,2,2],[1,3,0,3],[0,2,1,1]],[[1,2,2,1],[0,3,2,3],[1,3,0,2],[0,2,1,1]],[[1,2,2,2],[0,3,2,2],[1,3,0,2],[0,2,1,1]],[[1,2,3,1],[0,3,2,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,1],[0,3,2,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,1],[0,3,2,2],[1,3,0,2],[0,1,2,2]],[[1,2,2,1],[0,3,2,2],[1,3,0,2],[0,1,3,1]],[[1,2,2,1],[0,3,2,2],[1,3,0,3],[0,1,2,1]],[[1,2,2,1],[0,3,2,3],[1,3,0,2],[0,1,2,1]],[[1,2,2,2],[0,3,2,2],[1,3,0,2],[0,1,2,1]],[[1,2,3,1],[0,3,2,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,1],[0,3,2,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,1],[0,3,2,3],[1,3,0,1],[0,2,2,1]],[[1,2,2,2],[0,3,2,2],[1,3,0,1],[0,2,2,1]],[[1,2,3,1],[0,3,2,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,1],[0,3,2,2],[1,3,0,1],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[2,0,1,1],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[2,0,1,1],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[2,0,1,1],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[2,0,1,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[3,0,1,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[2,0,1,1],[2,2,2,1]],[[0,2,2,0],[2,3,2,2],[2,0,1,1],[1,3,2,1]],[[0,2,2,0],[2,3,2,2],[2,0,1,1],[1,2,3,1]],[[0,2,2,0],[2,3,2,2],[2,0,1,1],[1,2,2,2]],[[0,3,2,0],[2,3,2,2],[2,0,1,2],[0,2,2,1]],[[0,2,3,0],[2,3,2,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,0],[3,3,2,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,0],[2,4,2,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,2,2],[3,0,1,2],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[2,0,1,2],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[3,0,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[2,0,1,2],[2,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,0,1,2],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[3,0,1,2],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[2,0,1,2],[2,2,1,1]],[[0,2,2,0],[2,3,2,2],[2,0,1,2],[1,3,1,1]],[[0,3,2,0],[2,3,2,2],[2,0,1,2],[1,2,2,0]],[[0,2,3,0],[2,3,2,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[3,0,1,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[2,0,1,2],[2,2,2,0]],[[0,2,2,0],[2,3,2,2],[2,0,1,2],[1,3,2,0]],[[0,2,2,0],[2,3,2,2],[2,0,1,2],[1,2,3,0]],[[0,3,2,0],[2,3,2,2],[2,0,2,0],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[3,0,2,0],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[2,0,2,0],[2,2,2,1]],[[0,2,2,0],[2,3,2,2],[2,0,2,0],[1,3,2,1]],[[0,2,2,0],[2,3,2,2],[2,0,2,0],[1,2,3,1]],[[0,2,2,0],[2,3,2,2],[2,0,2,0],[1,2,2,2]],[[0,3,2,0],[2,3,2,2],[2,0,2,1],[1,2,2,0]],[[0,2,3,0],[2,3,2,2],[2,0,2,1],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[2,0,2,1],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[2,0,2,1],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[3,0,2,1],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[2,0,2,1],[2,2,2,0]],[[0,2,2,0],[2,3,2,2],[2,0,2,1],[1,3,2,0]],[[0,2,2,0],[2,3,2,2],[2,0,2,1],[1,2,3,0]],[[0,3,2,0],[2,3,2,2],[2,0,2,2],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,0],[3,3,2,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,0],[2,3,2,2],[3,0,2,2],[0,2,1,1]],[[0,3,2,0],[2,3,2,2],[2,0,2,2],[0,2,2,0]],[[0,2,3,0],[2,3,2,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,0],[3,3,2,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,0],[2,4,2,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,2,2],[3,0,2,2],[0,2,2,0]],[[0,3,2,0],[2,3,2,2],[2,0,2,2],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[3,0,2,2],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[2,0,2,2],[2,1,1,1]],[[0,3,2,0],[2,3,2,2],[2,0,2,2],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[3,0,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[2,0,2,2],[2,1,2,0]],[[0,3,2,0],[2,3,2,2],[2,0,2,2],[1,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,0,2,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[2,0,2,2],[2,2,0,1]],[[0,2,2,0],[2,3,2,2],[2,0,2,2],[1,3,0,1]],[[0,3,2,0],[2,3,2,2],[2,0,2,2],[1,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,0,2,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[2,0,2,2],[2,2,1,0]],[[0,2,2,0],[2,3,2,2],[2,0,2,2],[1,3,1,0]],[[1,2,2,1],[0,3,2,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[0,3,2,3],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[0,3,2,2],[1,2,3,2],[1,0,0,1]],[[0,3,2,0],[2,3,2,2],[2,0,3,0],[0,2,2,1]],[[0,2,3,0],[2,3,2,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,0],[3,3,2,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,0],[2,4,2,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,0],[2,3,2,2],[3,0,3,0],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[2,0,3,0],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[3,0,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[2,0,3,0],[2,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,0,3,0],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[3,0,3,0],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[2,0,3,0],[2,2,1,1]],[[0,2,2,0],[2,3,2,2],[2,0,3,0],[1,3,1,1]],[[0,3,2,0],[2,3,2,2],[2,0,3,1],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,0],[3,3,2,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,2,2],[3,0,3,1],[0,2,1,1]],[[0,3,2,0],[2,3,2,2],[2,0,3,1],[0,2,2,0]],[[0,2,3,0],[2,3,2,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,0],[3,3,2,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,0],[2,4,2,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,0],[2,3,2,2],[3,0,3,1],[0,2,2,0]],[[0,3,2,0],[2,3,2,2],[2,0,3,1],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[3,0,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[2,0,3,1],[2,1,1,1]],[[0,3,2,0],[2,3,2,2],[2,0,3,1],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[3,0,3,1],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[2,0,3,1],[2,1,2,0]],[[0,3,2,0],[2,3,2,2],[2,0,3,1],[1,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,0,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[2,0,3,1],[2,2,0,1]],[[0,2,2,0],[2,3,2,2],[2,0,3,1],[1,3,0,1]],[[0,3,2,0],[2,3,2,2],[2,0,3,1],[1,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,0,3,1],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[2,0,3,1],[2,2,1,0]],[[0,2,2,0],[2,3,2,2],[2,0,3,1],[1,3,1,0]],[[1,2,3,1],[0,3,2,2],[1,2,3,2],[1,0,0,1]],[[1,3,2,1],[0,3,2,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[0,3,2,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,1],[0,3,2,3],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[0,3,2,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,1],[0,3,2,2],[1,2,3,2],[0,1,0,1]],[[1,3,2,1],[0,3,2,2],[1,2,3,2],[0,1,0,1]],[[1,2,2,1],[0,3,2,3],[1,2,3,1],[1,1,1,0]],[[0,3,2,0],[2,3,2,2],[2,1,0,1],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[3,1,0,1],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[2,1,0,1],[2,2,2,1]],[[0,2,2,0],[2,3,2,2],[2,1,0,1],[1,3,2,1]],[[0,2,2,0],[2,3,2,2],[2,1,0,1],[1,2,3,1]],[[0,2,2,0],[2,3,2,2],[2,1,0,1],[1,2,2,2]],[[0,3,2,0],[2,3,2,2],[2,1,0,2],[0,2,2,1]],[[0,2,3,0],[2,3,2,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,0],[3,3,2,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,0],[2,4,2,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,0],[2,3,2,2],[3,1,0,2],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[2,1,0,2],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[2,1,0,2],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[2,1,0,2],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[2,1,0,2],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[3,1,0,2],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[2,1,0,2],[2,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,1,0,2],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[2,1,0,2],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[2,1,0,2],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[2,1,0,2],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[3,1,0,2],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[2,1,0,2],[2,2,1,1]],[[0,2,2,0],[2,3,2,2],[2,1,0,2],[1,3,1,1]],[[0,3,2,0],[2,3,2,2],[2,1,0,2],[1,2,2,0]],[[0,2,3,0],[2,3,2,2],[2,1,0,2],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[2,1,0,2],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[2,1,0,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[3,1,0,2],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[2,1,0,2],[2,2,2,0]],[[0,2,2,0],[2,3,2,2],[2,1,0,2],[1,3,2,0]],[[0,2,2,0],[2,3,2,2],[2,1,0,2],[1,2,3,0]],[[0,3,2,0],[2,3,2,2],[2,1,1,0],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[3,1,1,0],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[2,1,1,0],[2,2,2,1]],[[0,2,2,0],[2,3,2,2],[2,1,1,0],[1,3,2,1]],[[0,2,2,0],[2,3,2,2],[2,1,1,0],[1,2,3,1]],[[0,2,2,0],[2,3,2,2],[2,1,1,0],[1,2,2,2]],[[0,3,2,0],[2,3,2,2],[2,1,1,1],[1,2,2,0]],[[0,2,3,0],[2,3,2,2],[2,1,1,1],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[2,1,1,1],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[2,1,1,1],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[3,1,1,1],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[2,1,1,1],[2,2,2,0]],[[0,2,2,0],[2,3,2,2],[2,1,1,1],[1,3,2,0]],[[0,2,2,0],[2,3,2,2],[2,1,1,1],[1,2,3,0]],[[0,3,2,0],[2,3,2,2],[2,1,1,2],[0,1,2,1]],[[0,2,3,0],[2,3,2,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,0],[3,3,2,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,0],[2,4,2,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,0],[2,3,2,2],[3,1,1,2],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,1,1,2],[1,0,2,1]],[[0,2,3,0],[2,3,2,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,0],[3,3,2,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,0],[2,4,2,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,0],[2,3,2,2],[3,1,1,2],[1,0,2,1]],[[0,2,2,0],[2,3,2,2],[2,1,1,2],[2,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,1,1,2],[1,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,1,1,2],[1,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,1,1,2],[1,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,1,1,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,1,1,2],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[2,1,1,2],[2,2,0,1]],[[0,2,2,0],[2,3,2,2],[2,1,1,2],[1,3,0,1]],[[0,3,2,0],[2,3,2,2],[2,1,1,2],[1,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,1,1,2],[1,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,1,1,2],[1,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,1,1,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,1,1,2],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[2,1,1,2],[2,2,1,0]],[[0,2,2,0],[2,3,2,2],[2,1,1,2],[1,3,1,0]],[[1,2,2,2],[0,3,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,3,1],[0,3,2,2],[1,2,3,1],[1,1,1,0]],[[1,3,2,1],[0,3,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,1],[0,3,2,3],[1,2,3,1],[1,1,0,1]],[[1,2,2,2],[0,3,2,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,1],[0,3,2,2],[1,2,3,1],[1,1,0,1]],[[1,3,2,1],[0,3,2,2],[1,2,3,1],[1,1,0,1]],[[0,3,2,0],[2,3,2,2],[2,1,2,0],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[2,1,2,0],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[2,1,2,0],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[2,1,2,0],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[3,1,2,0],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[2,1,2,0],[2,2,1,1]],[[0,2,2,0],[2,3,2,2],[2,1,2,0],[1,3,1,1]],[[0,3,2,0],[2,3,2,2],[2,1,2,1],[1,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,1,2,1],[1,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,1,2,1],[1,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,1,2,1],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,1,2,1],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[2,1,2,1],[2,2,0,1]],[[0,2,2,0],[2,3,2,2],[2,1,2,1],[1,3,0,1]],[[0,3,2,0],[2,3,2,2],[2,1,2,1],[1,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,1,2,1],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[2,1,2,1],[2,2,1,0]],[[0,2,2,0],[2,3,2,2],[2,1,2,1],[1,3,1,0]],[[1,2,2,1],[0,3,2,3],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[0,3,2,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[0,3,2,2],[1,2,3,1],[1,0,2,0]],[[1,3,2,1],[0,3,2,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[0,3,2,3],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[0,3,2,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[0,3,2,2],[1,2,3,1],[1,0,1,1]],[[1,3,2,1],[0,3,2,2],[1,2,3,1],[1,0,1,1]],[[0,3,2,0],[2,3,2,2],[2,1,2,2],[0,0,2,1]],[[0,2,3,0],[2,3,2,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,0],[3,3,2,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,0],[2,4,2,2],[2,1,2,2],[0,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,1,2,2],[0,1,1,1]],[[0,2,3,0],[2,3,2,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,0],[3,3,2,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,0],[2,4,2,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,0],[2,3,2,2],[3,1,2,2],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[2,1,2,2],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,0],[3,3,2,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,0],[2,3,2,2],[3,1,2,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[2,1,2,2],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,1,2,2],[0,2,0,1]],[[0,3,2,0],[2,3,2,2],[2,1,2,2],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,1,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,2,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[0,3,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[0,3,2,2],[1,2,3,1],[0,2,1,0]],[[0,3,2,0],[2,3,2,2],[2,1,2,2],[1,0,1,1]],[[0,2,3,0],[2,3,2,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,0],[3,3,2,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,0],[2,4,2,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,0],[2,3,2,2],[3,1,2,2],[1,0,1,1]],[[0,2,2,0],[2,3,2,2],[2,1,2,2],[2,0,1,1]],[[0,3,2,0],[2,3,2,2],[2,1,2,2],[1,0,2,0]],[[0,2,3,0],[2,3,2,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,0],[3,3,2,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,0],[2,4,2,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[3,1,2,2],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[2,1,2,2],[2,0,2,0]],[[0,3,2,0],[2,3,2,2],[2,1,2,2],[1,1,0,1]],[[0,2,3,0],[2,3,2,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,0],[3,3,2,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,0],[2,4,2,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[3,1,2,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[2,1,2,2],[2,1,0,1]],[[0,3,2,0],[2,3,2,2],[2,1,2,2],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[3,1,2,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[2,1,2,2],[2,1,1,0]],[[1,3,2,1],[0,3,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[0,3,2,3],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[0,3,2,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[0,3,2,2],[1,2,3,1],[0,2,0,1]],[[1,3,2,1],[0,3,2,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[0,3,2,3],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[0,3,2,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[0,3,2,2],[1,2,3,1],[0,1,2,0]],[[1,3,2,1],[0,3,2,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[0,3,2,3],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[0,3,2,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[0,3,2,2],[1,2,3,1],[0,1,1,1]],[[1,3,2,1],[0,3,2,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[0,3,2,3],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[0,3,2,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[0,3,2,2],[1,2,3,1],[0,0,2,1]],[[1,3,2,1],[0,3,2,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[0,4,2,2],[1,2,3,0],[1,2,1,0]],[[0,3,2,0],[2,3,2,2],[2,1,3,0],[0,1,2,1]],[[0,2,3,0],[2,3,2,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,0],[3,3,2,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,0],[2,4,2,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,0],[2,3,2,2],[3,1,3,0],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,0],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,0],[3,3,2,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,0],[2,3,2,2],[3,1,3,0],[0,2,1,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,0],[1,0,2,1]],[[0,2,3,0],[2,3,2,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,0],[3,3,2,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,0],[2,4,2,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,2,2],[3,1,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,2,2],[2,1,3,0],[2,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,0],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[2,1,3,0],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[2,1,3,0],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[2,1,3,0],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[3,1,3,0],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[2,1,3,0],[2,1,1,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,0],[1,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,1,3,0],[1,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,1,3,0],[1,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,1,3,0],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,1,3,0],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[2,1,3,0],[2,2,1,0]],[[0,2,2,0],[2,3,2,2],[2,1,3,0],[1,3,1,0]],[[1,2,2,2],[0,3,2,2],[1,2,3,0],[1,2,1,0]],[[1,2,3,1],[0,3,2,2],[1,2,3,0],[1,2,1,0]],[[1,3,2,1],[0,3,2,2],[1,2,3,0],[1,2,1,0]],[[2,2,2,1],[0,3,2,2],[1,2,3,0],[1,2,1,0]],[[1,2,2,1],[0,4,2,2],[1,2,3,0],[1,2,0,1]],[[1,2,2,2],[0,3,2,2],[1,2,3,0],[1,2,0,1]],[[1,2,3,1],[0,3,2,2],[1,2,3,0],[1,2,0,1]],[[1,3,2,1],[0,3,2,2],[1,2,3,0],[1,2,0,1]],[[2,2,2,1],[0,3,2,2],[1,2,3,0],[1,2,0,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,1],[0,0,2,1]],[[0,2,3,0],[2,3,2,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,0],[3,3,2,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,0],[2,4,2,2],[2,1,3,1],[0,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,1],[0,1,1,1]],[[0,2,3,0],[2,3,2,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,0],[3,3,2,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,0],[2,4,2,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,0],[2,3,2,2],[3,1,3,1],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,1],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,0],[3,3,2,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,0],[2,3,2,2],[3,1,3,1],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[2,1,3,1],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,1,3,1],[0,2,0,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,1],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,1,3,1],[0,2,1,0]],[[1,2,2,1],[0,4,2,2],[1,2,3,0],[1,1,2,0]],[[1,2,2,2],[0,3,2,2],[1,2,3,0],[1,1,2,0]],[[1,2,3,1],[0,3,2,2],[1,2,3,0],[1,1,2,0]],[[1,3,2,1],[0,3,2,2],[1,2,3,0],[1,1,2,0]],[[0,3,2,0],[2,3,2,2],[2,1,3,1],[1,0,1,1]],[[0,2,3,0],[2,3,2,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,0],[3,3,2,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,0],[2,4,2,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,0],[2,3,2,2],[3,1,3,1],[1,0,1,1]],[[0,2,2,0],[2,3,2,2],[2,1,3,1],[2,0,1,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,1],[1,0,2,0]],[[0,2,3,0],[2,3,2,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,0],[3,3,2,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,0],[2,4,2,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[3,1,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[2,1,3,1],[2,0,2,0]],[[0,3,2,0],[2,3,2,2],[2,1,3,1],[1,1,0,1]],[[0,2,3,0],[2,3,2,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,0],[3,3,2,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,0],[2,4,2,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[3,1,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[2,1,3,1],[2,1,0,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,1],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[3,1,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[2,1,3,1],[2,1,1,0]],[[2,2,2,1],[0,3,2,2],[1,2,3,0],[1,1,2,0]],[[1,2,2,1],[0,3,2,3],[1,2,3,0],[1,0,2,1]],[[1,2,2,2],[0,3,2,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,1],[0,3,2,2],[1,2,3,0],[1,0,2,1]],[[1,3,2,1],[0,3,2,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,1],[0,3,2,3],[1,2,3,0],[0,2,1,1]],[[1,2,2,2],[0,3,2,2],[1,2,3,0],[0,2,1,1]],[[1,2,3,1],[0,3,2,2],[1,2,3,0],[0,2,1,1]],[[1,3,2,1],[0,3,2,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,1],[0,3,2,3],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[0,3,2,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[0,3,2,2],[1,2,3,0],[0,1,2,1]],[[1,3,2,1],[0,3,2,2],[1,2,3,0],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,2],[0,1,0,1]],[[0,2,3,0],[2,3,2,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,0],[3,3,2,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,0],[2,4,2,2],[2,1,3,2],[0,1,0,1]],[[1,2,2,1],[0,3,2,3],[1,2,2,2],[1,1,1,0]],[[1,2,2,2],[0,3,2,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,1],[0,3,2,2],[1,2,2,2],[1,1,1,0]],[[1,3,2,1],[0,3,2,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,1],[0,3,2,2],[1,2,2,3],[1,1,0,1]],[[1,2,2,1],[0,3,2,3],[1,2,2,2],[1,1,0,1]],[[1,2,2,2],[0,3,2,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,1],[0,3,2,2],[1,2,2,2],[1,1,0,1]],[[1,3,2,1],[0,3,2,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,1],[0,3,2,2],[1,2,2,3],[1,0,2,0]],[[1,2,2,1],[0,3,2,3],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[0,3,2,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[0,3,2,2],[1,2,2,2],[1,0,2,0]],[[1,3,2,1],[0,3,2,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[0,3,2,2],[1,2,2,2],[1,0,1,2]],[[1,2,2,1],[0,3,2,2],[1,2,2,3],[1,0,1,1]],[[1,2,2,1],[0,3,2,3],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[0,3,2,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[0,3,2,2],[1,2,2,2],[1,0,1,1]],[[1,3,2,1],[0,3,2,2],[1,2,2,2],[1,0,1,1]],[[0,3,2,0],[2,3,2,2],[2,1,3,2],[1,0,0,1]],[[0,2,3,0],[2,3,2,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,0],[3,3,2,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,0],[2,4,2,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,0],[2,3,2,2],[3,1,3,2],[1,0,0,1]],[[1,2,2,1],[0,3,2,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,1],[0,3,2,3],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[0,3,2,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[0,3,2,2],[1,2,2,2],[0,2,1,0]],[[1,3,2,1],[0,3,2,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,2,2],[1,2,2,2],[0,2,0,2]],[[1,2,2,1],[0,3,2,2],[1,2,2,3],[0,2,0,1]],[[1,2,2,1],[0,3,2,3],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[0,3,2,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[0,3,2,2],[1,2,2,2],[0,2,0,1]],[[1,3,2,1],[0,3,2,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,1],[0,3,2,2],[1,2,2,3],[0,1,2,0]],[[1,2,2,1],[0,3,2,3],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[0,3,2,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[0,3,2,2],[1,2,2,2],[0,1,2,0]],[[1,3,2,1],[0,3,2,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[0,3,2,2],[1,2,2,2],[0,1,1,2]],[[1,2,2,1],[0,3,2,2],[1,2,2,3],[0,1,1,1]],[[1,2,2,1],[0,3,2,3],[1,2,2,2],[0,1,1,1]],[[1,2,2,2],[0,3,2,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[0,3,2,2],[1,2,2,2],[0,1,1,1]],[[1,3,2,1],[0,3,2,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[0,3,2,2],[1,2,2,2],[0,0,2,2]],[[1,2,2,1],[0,3,2,2],[1,2,2,3],[0,0,2,1]],[[1,2,2,1],[0,3,2,3],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[0,3,2,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[0,3,2,2],[1,2,2,2],[0,0,2,1]],[[1,3,2,1],[0,3,2,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,1],[0,3,2,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,1],[0,3,2,2],[1,2,1,3],[1,0,2,1]],[[1,2,2,1],[0,3,2,3],[1,2,1,2],[1,0,2,1]],[[1,2,2,2],[0,3,2,2],[1,2,1,2],[1,0,2,1]],[[1,2,3,1],[0,3,2,2],[1,2,1,2],[1,0,2,1]],[[1,3,2,1],[0,3,2,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,1],[0,3,2,2],[1,2,1,2],[0,1,2,2]],[[1,2,2,1],[0,3,2,2],[1,2,1,2],[0,1,3,1]],[[1,2,2,1],[0,3,2,2],[1,2,1,3],[0,1,2,1]],[[1,2,2,1],[0,3,2,3],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[0,3,2,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[0,3,2,2],[1,2,1,2],[0,1,2,1]],[[1,3,2,1],[0,3,2,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[0,3,2,2],[1,2,0,2],[0,2,2,2]],[[1,2,2,1],[0,3,2,2],[1,2,0,2],[0,2,3,1]],[[1,2,2,1],[0,3,2,2],[1,2,0,3],[0,2,2,1]],[[1,2,2,1],[0,3,2,3],[1,2,0,2],[0,2,2,1]],[[1,2,2,2],[0,3,2,2],[1,2,0,2],[0,2,2,1]],[[1,2,3,1],[0,3,2,2],[1,2,0,2],[0,2,2,1]],[[1,3,2,1],[0,3,2,2],[1,2,0,2],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,0,0],[1,2,2,1]],[[0,2,3,0],[2,3,2,2],[2,2,0,0],[1,2,2,1]],[[0,2,2,0],[3,3,2,2],[2,2,0,0],[1,2,2,1]],[[0,2,2,0],[2,4,2,2],[2,2,0,0],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[3,2,0,0],[1,2,2,1]],[[0,2,2,0],[2,3,2,2],[2,2,0,0],[2,2,2,1]],[[0,2,2,0],[2,3,2,2],[2,2,0,0],[1,3,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,0,1],[0,2,2,1]],[[0,2,3,0],[2,3,2,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,0],[3,3,2,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,0],[2,4,2,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,0],[2,3,2,2],[3,2,0,1],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,0,1],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[2,2,0,1],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[2,2,0,1],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[2,2,0,1],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[3,2,0,1],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[2,2,0,1],[2,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,0,1],[1,2,2,0]],[[0,2,3,0],[2,3,2,2],[2,2,0,1],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[2,2,0,1],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[2,2,0,1],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[3,2,0,1],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[2,2,0,1],[2,2,2,0]],[[0,2,2,0],[2,3,2,2],[2,2,0,1],[1,3,2,0]],[[0,3,2,0],[2,3,2,2],[2,2,0,2],[0,1,2,1]],[[0,2,3,0],[2,3,2,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,0],[3,3,2,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,0],[2,4,2,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,0],[2,3,2,2],[3,2,0,2],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,0,2],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[2,2,0,2],[0,2,1,1]],[[0,2,2,0],[3,3,2,2],[2,2,0,2],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[2,2,0,2],[0,2,1,1]],[[0,2,2,0],[2,3,2,2],[3,2,0,2],[0,2,1,1]],[[0,3,2,0],[2,3,2,2],[2,2,0,2],[0,2,2,0]],[[0,2,3,0],[2,3,2,2],[2,2,0,2],[0,2,2,0]],[[0,2,2,0],[3,3,2,2],[2,2,0,2],[0,2,2,0]],[[0,2,2,0],[2,4,2,2],[2,2,0,2],[0,2,2,0]],[[0,2,2,0],[2,3,2,2],[3,2,0,2],[0,2,2,0]],[[0,3,2,0],[2,3,2,2],[2,2,0,2],[1,0,2,1]],[[0,2,3,0],[2,3,2,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,0],[3,3,2,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,0],[2,4,2,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,0],[2,3,2,2],[3,2,0,2],[1,0,2,1]],[[0,2,2,0],[2,3,2,2],[2,2,0,2],[2,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,0,2],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[2,2,0,2],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[2,2,0,2],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[2,2,0,2],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[3,2,0,2],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[2,2,0,2],[2,1,1,1]],[[0,3,2,0],[2,3,2,2],[2,2,0,2],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[2,2,0,2],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[2,2,0,2],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[2,2,0,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[3,2,0,2],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[2,2,0,2],[2,1,2,0]],[[0,3,2,0],[2,3,2,2],[2,2,1,0],[0,2,2,1]],[[0,2,3,0],[2,3,2,2],[2,2,1,0],[0,2,2,1]],[[0,2,2,0],[3,3,2,2],[2,2,1,0],[0,2,2,1]],[[0,2,2,0],[2,4,2,2],[2,2,1,0],[0,2,2,1]],[[0,2,2,0],[2,3,2,2],[3,2,1,0],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,1,0],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[2,2,1,0],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[2,2,1,0],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[2,2,1,0],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[3,2,1,0],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[2,2,1,0],[2,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,1,1],[0,2,2,0]],[[0,2,3,0],[2,3,2,2],[2,2,1,1],[0,2,2,0]],[[0,2,2,0],[3,3,2,2],[2,2,1,1],[0,2,2,0]],[[0,2,2,0],[2,4,2,2],[2,2,1,1],[0,2,2,0]],[[0,2,2,0],[2,3,2,2],[3,2,1,1],[0,2,2,0]],[[0,3,2,0],[2,3,2,2],[2,2,1,1],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[2,2,1,1],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[2,2,1,1],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[2,2,1,1],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[3,2,1,1],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[2,2,1,1],[2,1,2,0]],[[1,2,2,1],[0,3,2,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,1],[0,3,2,3],[1,1,3,2],[1,0,2,0]],[[1,2,2,2],[0,3,2,2],[1,1,3,2],[1,0,2,0]],[[1,2,3,1],[0,3,2,2],[1,1,3,2],[1,0,2,0]],[[1,3,2,1],[0,3,2,2],[1,1,3,2],[1,0,2,0]],[[1,2,2,1],[0,3,2,2],[1,1,3,2],[1,0,1,2]],[[1,2,2,1],[0,3,2,2],[1,1,3,3],[1,0,1,1]],[[1,2,2,1],[0,3,2,3],[1,1,3,2],[1,0,1,1]],[[1,2,2,2],[0,3,2,2],[1,1,3,2],[1,0,1,1]],[[0,3,2,0],[2,3,2,2],[2,2,1,2],[0,1,1,1]],[[0,2,3,0],[2,3,2,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,0],[3,3,2,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,0],[2,4,2,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,0],[2,3,2,2],[3,2,1,2],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[2,2,1,2],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,0],[3,3,2,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,0],[2,3,2,2],[3,2,1,2],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[2,2,1,2],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,2,1,2],[0,2,0,1]],[[0,3,2,0],[2,3,2,2],[2,2,1,2],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,2,1,2],[0,2,1,0]],[[1,2,3,1],[0,3,2,2],[1,1,3,2],[1,0,1,1]],[[1,3,2,1],[0,3,2,2],[1,1,3,2],[1,0,1,1]],[[0,3,2,0],[2,3,2,2],[2,2,1,2],[1,0,1,1]],[[0,2,3,0],[2,3,2,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,0],[3,3,2,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,0],[2,4,2,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,0],[2,3,2,2],[3,2,1,2],[1,0,1,1]],[[0,2,2,0],[2,3,2,2],[2,2,1,2],[2,0,1,1]],[[0,3,2,0],[2,3,2,2],[2,2,1,2],[1,0,2,0]],[[0,2,3,0],[2,3,2,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,0],[3,3,2,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,0],[2,4,2,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[3,2,1,2],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[2,2,1,2],[2,0,2,0]],[[0,3,2,0],[2,3,2,2],[2,2,1,2],[1,1,0,1]],[[0,2,3,0],[2,3,2,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,0],[3,3,2,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,0],[2,4,2,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[3,2,1,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[2,2,1,2],[2,1,0,1]],[[0,3,2,0],[2,3,2,2],[2,2,1,2],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[3,2,1,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[2,2,1,2],[2,1,1,0]],[[0,3,2,0],[2,3,2,2],[2,2,1,2],[1,2,0,0]],[[0,2,3,0],[2,3,2,2],[2,2,1,2],[1,2,0,0]],[[0,2,2,0],[3,3,2,2],[2,2,1,2],[1,2,0,0]],[[0,2,2,0],[2,4,2,2],[2,2,1,2],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[3,2,1,2],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,1],[0,3,2,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,1],[0,3,2,3],[1,1,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,2,2],[1,1,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,2,2],[1,1,3,2],[0,1,2,0]],[[1,3,2,1],[0,3,2,2],[1,1,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,2,2],[1,1,3,2],[0,1,1,2]],[[1,2,2,1],[0,3,2,2],[1,1,3,3],[0,1,1,1]],[[1,2,2,1],[0,3,2,3],[1,1,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,2,2],[1,1,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,2,2],[1,1,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,2,2],[1,1,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,2,2],[1,1,3,2],[0,0,2,2]],[[1,2,2,1],[0,3,2,2],[1,1,3,3],[0,0,2,1]],[[1,2,2,1],[0,3,2,3],[1,1,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,2,2],[1,1,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,2,0],[0,1,2,1]],[[0,2,3,0],[2,3,2,2],[2,2,2,0],[0,1,2,1]],[[0,2,2,0],[3,3,2,2],[2,2,2,0],[0,1,2,1]],[[0,2,2,0],[2,4,2,2],[2,2,2,0],[0,1,2,1]],[[0,2,2,0],[2,3,2,2],[3,2,2,0],[0,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,2,0],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[2,2,2,0],[0,2,1,1]],[[0,2,2,0],[3,3,2,2],[2,2,2,0],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[2,2,2,0],[0,2,1,1]],[[0,2,2,0],[2,3,2,2],[3,2,2,0],[0,2,1,1]],[[0,3,2,0],[2,3,2,2],[2,2,2,0],[1,0,2,1]],[[0,2,3,0],[2,3,2,2],[2,2,2,0],[1,0,2,1]],[[0,2,2,0],[3,3,2,2],[2,2,2,0],[1,0,2,1]],[[0,2,2,0],[2,4,2,2],[2,2,2,0],[1,0,2,1]],[[0,2,2,0],[2,3,2,2],[3,2,2,0],[1,0,2,1]],[[0,2,2,0],[2,3,2,2],[2,2,2,0],[2,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,2,0],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[2,2,2,0],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[2,2,2,0],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[2,2,2,0],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[3,2,2,0],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[2,2,2,0],[2,1,1,1]],[[0,3,2,0],[2,3,2,2],[2,2,2,0],[1,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,2,2,0],[1,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,2,2,0],[1,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,2,2,0],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,2,2,0],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[2,2,2,0],[2,2,0,1]],[[1,2,3,1],[0,3,2,2],[1,1,3,2],[0,0,2,1]],[[1,3,2,1],[0,3,2,2],[1,1,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,2,1],[0,1,1,1]],[[0,2,3,0],[2,3,2,2],[2,2,2,1],[0,1,1,1]],[[0,2,2,0],[3,3,2,2],[2,2,2,1],[0,1,1,1]],[[0,2,2,0],[2,4,2,2],[2,2,2,1],[0,1,1,1]],[[0,2,2,0],[2,3,2,2],[3,2,2,1],[0,1,1,1]],[[0,3,2,0],[2,3,2,2],[2,2,2,1],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[2,2,2,1],[0,1,2,0]],[[0,2,2,0],[3,3,2,2],[2,2,2,1],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[2,2,2,1],[0,1,2,0]],[[0,2,2,0],[2,3,2,2],[3,2,2,1],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[2,2,2,1],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,2,2,1],[0,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,2,2,1],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,2,2,1],[0,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,2,2,1],[0,2,0,1]],[[0,3,2,0],[2,3,2,2],[2,2,2,1],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,2,2,1],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,2,2,1],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,2,2,1],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,2,2,1],[0,2,1,0]],[[0,3,2,0],[2,3,2,2],[2,2,2,1],[1,0,1,1]],[[0,2,3,0],[2,3,2,2],[2,2,2,1],[1,0,1,1]],[[0,2,2,0],[3,3,2,2],[2,2,2,1],[1,0,1,1]],[[0,2,2,0],[2,4,2,2],[2,2,2,1],[1,0,1,1]],[[0,2,2,0],[2,3,2,2],[3,2,2,1],[1,0,1,1]],[[0,2,2,0],[2,3,2,2],[2,2,2,1],[2,0,1,1]],[[0,3,2,0],[2,3,2,2],[2,2,2,1],[1,0,2,0]],[[0,2,3,0],[2,3,2,2],[2,2,2,1],[1,0,2,0]],[[0,2,2,0],[3,3,2,2],[2,2,2,1],[1,0,2,0]],[[0,2,2,0],[2,4,2,2],[2,2,2,1],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[3,2,2,1],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[2,2,2,1],[2,0,2,0]],[[0,3,2,0],[2,3,2,2],[2,2,2,1],[1,1,0,1]],[[0,2,3,0],[2,3,2,2],[2,2,2,1],[1,1,0,1]],[[0,2,2,0],[3,3,2,2],[2,2,2,1],[1,1,0,1]],[[0,2,2,0],[2,4,2,2],[2,2,2,1],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[3,2,2,1],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[2,2,2,1],[2,1,0,1]],[[0,3,2,0],[2,3,2,2],[2,2,2,1],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[2,2,2,1],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[2,2,2,1],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[2,2,2,1],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[3,2,2,1],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[2,2,2,1],[2,1,1,0]],[[0,3,2,0],[2,3,2,2],[2,2,2,1],[1,2,0,0]],[[0,2,3,0],[2,3,2,2],[2,2,2,1],[1,2,0,0]],[[0,2,2,0],[3,3,2,2],[2,2,2,1],[1,2,0,0]],[[0,2,2,0],[2,4,2,2],[2,2,2,1],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[3,2,2,1],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[2,2,2,1],[2,2,0,0]],[[1,2,2,1],[0,3,2,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[0,3,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[0,3,2,2],[1,1,3,1],[0,2,2,0]],[[1,3,2,1],[0,3,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,3,2,3],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[0,3,2,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[0,3,2,2],[1,1,3,1],[0,2,1,1]],[[1,3,2,1],[0,3,2,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[0,4,2,2],[1,1,3,0],[1,2,2,0]],[[1,2,2,2],[0,3,2,2],[1,1,3,0],[1,2,2,0]],[[1,2,3,1],[0,3,2,2],[1,1,3,0],[1,2,2,0]],[[1,3,2,1],[0,3,2,2],[1,1,3,0],[1,2,2,0]],[[2,2,2,1],[0,3,2,2],[1,1,3,0],[1,2,2,0]],[[1,2,2,1],[0,3,2,3],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[0,3,2,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[0,3,2,2],[1,1,3,0],[0,2,2,1]],[[1,3,2,1],[0,3,2,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,1],[0,3,2,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,1],[0,3,2,3],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[0,3,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[0,3,2,2],[1,1,2,2],[0,2,2,0]],[[1,3,2,1],[0,3,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[0,3,2,2],[1,1,2,2],[0,2,1,2]],[[1,2,2,1],[0,3,2,2],[1,1,2,3],[0,2,1,1]],[[1,2,2,1],[0,3,2,3],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[0,3,2,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[0,3,2,2],[1,1,2,2],[0,2,1,1]],[[1,3,2,1],[0,3,2,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,1],[0,3,2,2],[1,1,1,2],[0,2,2,2]],[[1,2,2,1],[0,3,2,2],[1,1,1,2],[0,2,3,1]],[[1,2,2,1],[0,3,2,2],[1,1,1,3],[0,2,2,1]],[[1,2,2,1],[0,3,2,3],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[0,3,2,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[0,3,2,2],[1,1,1,2],[0,2,2,1]],[[1,3,2,1],[0,3,2,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[0,3,2,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[0,3,2,3],[1,0,3,2],[0,2,2,0]],[[1,2,2,2],[0,3,2,2],[1,0,3,2],[0,2,2,0]],[[1,2,3,1],[0,3,2,2],[1,0,3,2],[0,2,2,0]],[[1,3,2,1],[0,3,2,2],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[0,3,2,2],[1,0,3,2],[0,2,1,2]],[[1,2,2,1],[0,3,2,2],[1,0,3,3],[0,2,1,1]],[[1,2,2,1],[0,3,2,3],[1,0,3,2],[0,2,1,1]],[[1,2,2,2],[0,3,2,2],[1,0,3,2],[0,2,1,1]],[[1,2,3,1],[0,3,2,2],[1,0,3,2],[0,2,1,1]],[[1,3,2,1],[0,3,2,2],[1,0,3,2],[0,2,1,1]],[[1,2,2,1],[0,3,2,2],[1,0,3,2],[0,1,2,2]],[[1,2,2,1],[0,3,2,2],[1,0,3,3],[0,1,2,1]],[[1,2,2,1],[0,3,2,3],[1,0,3,2],[0,1,2,1]],[[1,2,2,2],[0,3,2,2],[1,0,3,2],[0,1,2,1]],[[1,2,3,1],[0,3,2,2],[1,0,3,2],[0,1,2,1]],[[1,3,2,1],[0,3,2,2],[1,0,3,2],[0,1,2,1]],[[1,2,2,1],[0,3,2,2],[1,0,2,2],[0,2,2,2]],[[1,2,2,1],[0,3,2,2],[1,0,2,2],[0,2,3,1]],[[0,3,2,0],[2,3,2,2],[2,2,3,0],[0,1,2,0]],[[0,2,3,0],[2,3,2,2],[2,2,3,0],[0,1,2,0]],[[0,2,2,0],[3,3,2,2],[2,2,3,0],[0,1,2,0]],[[0,2,2,0],[2,4,2,2],[2,2,3,0],[0,1,2,0]],[[0,2,2,0],[2,3,2,2],[3,2,3,0],[0,1,2,0]],[[0,3,2,0],[2,3,2,2],[2,2,3,0],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,2,3,0],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,2,3,0],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,2,3,0],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,2,3,0],[0,2,1,0]],[[1,2,2,1],[0,3,2,2],[1,0,2,3],[0,2,2,1]],[[1,2,2,1],[0,3,2,3],[1,0,2,2],[0,2,2,1]],[[1,2,2,2],[0,3,2,2],[1,0,2,2],[0,2,2,1]],[[1,2,3,1],[0,3,2,2],[1,0,2,2],[0,2,2,1]],[[1,3,2,1],[0,3,2,2],[1,0,2,2],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[2,2,3,0],[1,0,2,0]],[[0,2,3,0],[2,3,2,2],[2,2,3,0],[1,0,2,0]],[[0,2,2,0],[3,3,2,2],[2,2,3,0],[1,0,2,0]],[[0,2,2,0],[2,4,2,2],[2,2,3,0],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[3,2,3,0],[1,0,2,0]],[[0,2,2,0],[2,3,2,2],[2,2,3,0],[2,0,2,0]],[[0,3,2,0],[2,3,2,2],[2,2,3,0],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[2,2,3,0],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[2,2,3,0],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[2,2,3,0],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[3,2,3,0],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[2,2,3,0],[2,1,1,0]],[[0,3,2,0],[2,3,2,2],[2,2,3,0],[1,2,0,0]],[[0,2,3,0],[2,3,2,2],[2,2,3,0],[1,2,0,0]],[[0,2,2,0],[3,3,2,2],[2,2,3,0],[1,2,0,0]],[[0,2,2,0],[2,4,2,2],[2,2,3,0],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[3,2,3,0],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[2,2,3,0],[2,2,0,0]],[[1,2,2,1],[0,3,2,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[0,3,2,3],[0,3,3,2],[0,1,0,1]],[[1,2,2,2],[0,3,2,2],[0,3,3,2],[0,1,0,1]],[[1,2,3,1],[0,3,2,2],[0,3,3,2],[0,1,0,1]],[[1,3,2,1],[0,3,2,2],[0,3,3,2],[0,1,0,1]],[[0,3,2,0],[2,3,2,2],[2,2,3,1],[0,2,0,0]],[[0,2,3,0],[2,3,2,2],[2,2,3,1],[0,2,0,0]],[[0,2,2,0],[3,3,2,2],[2,2,3,1],[0,2,0,0]],[[0,2,2,0],[2,4,2,2],[2,2,3,1],[0,2,0,0]],[[0,2,2,0],[2,3,2,2],[3,2,3,1],[0,2,0,0]],[[1,2,2,1],[0,3,2,3],[0,3,3,1],[1,2,0,0]],[[1,2,2,2],[0,3,2,2],[0,3,3,1],[1,2,0,0]],[[1,2,3,1],[0,3,2,2],[0,3,3,1],[1,2,0,0]],[[1,3,2,1],[0,3,2,2],[0,3,3,1],[1,2,0,0]],[[0,3,2,0],[2,3,2,2],[2,2,3,1],[1,1,0,0]],[[0,2,3,0],[2,3,2,2],[2,2,3,1],[1,1,0,0]],[[0,2,2,0],[3,3,2,2],[2,2,3,1],[1,1,0,0]],[[0,2,2,0],[2,4,2,2],[2,2,3,1],[1,1,0,0]],[[0,2,2,0],[2,3,2,2],[3,2,3,1],[1,1,0,0]],[[0,2,2,0],[2,3,2,2],[2,2,3,1],[2,1,0,0]],[[1,2,2,1],[0,3,2,3],[0,3,3,1],[0,2,1,0]],[[1,2,2,2],[0,3,2,2],[0,3,3,1],[0,2,1,0]],[[1,2,3,1],[0,3,2,2],[0,3,3,1],[0,2,1,0]],[[1,3,2,1],[0,3,2,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,3,2,3],[0,3,3,1],[0,2,0,1]],[[1,2,2,2],[0,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,2,3,1],[0,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,3,2,1],[0,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,1],[0,3,2,3],[0,3,3,1],[0,1,2,0]],[[1,2,2,2],[0,3,2,2],[0,3,3,1],[0,1,2,0]],[[1,2,3,1],[0,3,2,2],[0,3,3,1],[0,1,2,0]],[[1,3,2,1],[0,3,2,2],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,3,2,3],[0,3,3,1],[0,1,1,1]],[[1,2,2,2],[0,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,2,3,1],[0,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,3,2,1],[0,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[0,3,2,3],[0,3,3,1],[0,0,2,1]],[[1,2,2,2],[0,3,2,2],[0,3,3,1],[0,0,2,1]],[[1,2,3,1],[0,3,2,2],[0,3,3,1],[0,0,2,1]],[[1,3,2,1],[0,3,2,2],[0,3,3,1],[0,0,2,1]],[[1,2,2,1],[0,3,2,3],[0,3,3,0],[0,2,1,1]],[[1,2,2,2],[0,3,2,2],[0,3,3,0],[0,2,1,1]],[[1,2,3,1],[0,3,2,2],[0,3,3,0],[0,2,1,1]],[[1,3,2,1],[0,3,2,2],[0,3,3,0],[0,2,1,1]],[[1,2,2,1],[0,3,2,3],[0,3,3,0],[0,1,2,1]],[[1,2,2,2],[0,3,2,2],[0,3,3,0],[0,1,2,1]],[[1,2,3,1],[0,3,2,2],[0,3,3,0],[0,1,2,1]],[[1,3,2,1],[0,3,2,2],[0,3,3,0],[0,1,2,1]],[[1,2,2,1],[0,3,2,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,1],[0,3,2,3],[0,3,2,2],[0,2,1,0]],[[1,2,2,2],[0,3,2,2],[0,3,2,2],[0,2,1,0]],[[1,2,3,1],[0,3,2,2],[0,3,2,2],[0,2,1,0]],[[1,3,2,1],[0,3,2,2],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,2,2],[0,3,2,2],[0,2,0,2]],[[1,2,2,1],[0,3,2,2],[0,3,2,3],[0,2,0,1]],[[1,2,2,1],[0,3,2,3],[0,3,2,2],[0,2,0,1]],[[1,2,2,2],[0,3,2,2],[0,3,2,2],[0,2,0,1]],[[1,2,3,1],[0,3,2,2],[0,3,2,2],[0,2,0,1]],[[1,3,2,1],[0,3,2,2],[0,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,3,2,2],[0,3,2,3],[0,1,2,0]],[[1,2,2,1],[0,3,2,3],[0,3,2,2],[0,1,2,0]],[[1,2,2,2],[0,3,2,2],[0,3,2,2],[0,1,2,0]],[[1,2,3,1],[0,3,2,2],[0,3,2,2],[0,1,2,0]],[[1,3,2,1],[0,3,2,2],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,3,2,2],[0,3,2,2],[0,1,1,2]],[[1,2,2,1],[0,3,2,2],[0,3,2,3],[0,1,1,1]],[[1,2,2,1],[0,3,2,3],[0,3,2,2],[0,1,1,1]],[[1,2,2,2],[0,3,2,2],[0,3,2,2],[0,1,1,1]],[[1,2,3,1],[0,3,2,2],[0,3,2,2],[0,1,1,1]],[[1,3,2,1],[0,3,2,2],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,3,2,2],[0,3,2,2],[0,0,2,2]],[[1,2,2,1],[0,3,2,2],[0,3,2,3],[0,0,2,1]],[[1,2,2,1],[0,3,2,3],[0,3,2,2],[0,0,2,1]],[[1,2,2,2],[0,3,2,2],[0,3,2,2],[0,0,2,1]],[[1,2,3,1],[0,3,2,2],[0,3,2,2],[0,0,2,1]],[[1,3,2,1],[0,3,2,2],[0,3,2,2],[0,0,2,1]],[[1,2,2,1],[0,3,2,3],[0,3,2,1],[1,2,1,0]],[[1,2,2,2],[0,3,2,2],[0,3,2,1],[1,2,1,0]],[[1,2,3,1],[0,3,2,2],[0,3,2,1],[1,2,1,0]],[[1,3,2,1],[0,3,2,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,1],[0,3,2,3],[0,3,2,1],[1,2,0,1]],[[1,2,2,2],[0,3,2,2],[0,3,2,1],[1,2,0,1]],[[1,2,3,1],[0,3,2,2],[0,3,2,1],[1,2,0,1]],[[1,3,2,1],[0,3,2,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,1],[0,3,2,3],[0,3,2,1],[1,1,2,0]],[[1,2,2,2],[0,3,2,2],[0,3,2,1],[1,1,2,0]],[[1,2,3,1],[0,3,2,2],[0,3,2,1],[1,1,2,0]],[[1,3,2,1],[0,3,2,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,3,2,3],[0,3,2,1],[1,1,1,1]],[[1,2,2,2],[0,3,2,2],[0,3,2,1],[1,1,1,1]],[[1,2,3,1],[0,3,2,2],[0,3,2,1],[1,1,1,1]],[[1,3,2,1],[0,3,2,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,1],[0,3,2,3],[0,3,2,0],[1,2,1,1]],[[1,2,2,2],[0,3,2,2],[0,3,2,0],[1,2,1,1]],[[1,2,3,1],[0,3,2,2],[0,3,2,0],[1,2,1,1]],[[1,3,2,1],[0,3,2,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,1],[0,3,2,3],[0,3,2,0],[1,1,2,1]],[[1,2,2,2],[0,3,2,2],[0,3,2,0],[1,1,2,1]],[[1,2,3,1],[0,3,2,2],[0,3,2,0],[1,1,2,1]],[[1,3,2,1],[0,3,2,2],[0,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,3,2,2],[0,3,1,3],[1,2,1,0]],[[1,2,2,1],[0,3,2,3],[0,3,1,2],[1,2,1,0]],[[1,2,2,2],[0,3,2,2],[0,3,1,2],[1,2,1,0]],[[1,2,3,1],[0,3,2,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,1],[0,3,2,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,1],[0,3,2,2],[0,3,1,2],[1,2,0,2]],[[1,2,2,1],[0,3,2,2],[0,3,1,3],[1,2,0,1]],[[1,2,2,1],[0,3,2,3],[0,3,1,2],[1,2,0,1]],[[1,2,2,2],[0,3,2,2],[0,3,1,2],[1,2,0,1]],[[1,2,3,1],[0,3,2,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,1],[0,3,2,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,1],[0,3,2,2],[0,3,1,3],[1,1,2,0]],[[1,2,2,1],[0,3,2,3],[0,3,1,2],[1,1,2,0]],[[1,2,2,2],[0,3,2,2],[0,3,1,2],[1,1,2,0]],[[1,2,3,1],[0,3,2,2],[0,3,1,2],[1,1,2,0]],[[1,3,2,1],[0,3,2,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,3,2,2],[0,3,1,2],[1,1,1,2]],[[1,2,2,1],[0,3,2,2],[0,3,1,3],[1,1,1,1]],[[1,2,2,1],[0,3,2,3],[0,3,1,2],[1,1,1,1]],[[1,2,2,2],[0,3,2,2],[0,3,1,2],[1,1,1,1]],[[1,2,3,1],[0,3,2,2],[0,3,1,2],[1,1,1,1]],[[1,3,2,1],[0,3,2,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,1],[0,3,2,2],[0,3,1,2],[0,1,2,2]],[[1,2,2,1],[0,3,2,2],[0,3,1,2],[0,1,3,1]],[[1,2,2,1],[0,3,2,2],[0,3,1,3],[0,1,2,1]],[[1,2,2,1],[0,3,2,3],[0,3,1,2],[0,1,2,1]],[[1,2,2,2],[0,3,2,2],[0,3,1,2],[0,1,2,1]],[[1,2,3,1],[0,3,2,2],[0,3,1,2],[0,1,2,1]],[[1,3,2,1],[0,3,2,2],[0,3,1,2],[0,1,2,1]],[[1,2,2,1],[0,3,2,3],[0,3,1,1],[1,2,2,0]],[[1,2,2,2],[0,3,2,2],[0,3,1,1],[1,2,2,0]],[[1,2,3,1],[0,3,2,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,1],[0,3,2,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,1],[0,3,2,3],[0,3,1,0],[1,2,2,1]],[[1,2,2,2],[0,3,2,2],[0,3,1,0],[1,2,2,1]],[[1,2,3,1],[0,3,2,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,1],[0,3,2,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,1],[0,3,2,2],[0,3,0,3],[1,2,2,0]],[[1,2,2,1],[0,3,2,3],[0,3,0,2],[1,2,2,0]],[[1,2,2,2],[0,3,2,2],[0,3,0,2],[1,2,2,0]],[[1,2,3,1],[0,3,2,2],[0,3,0,2],[1,2,2,0]],[[1,3,2,1],[0,3,2,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,1],[0,3,2,2],[0,3,0,2],[1,2,1,2]],[[1,2,2,1],[0,3,2,2],[0,3,0,3],[1,2,1,1]],[[1,2,2,1],[0,3,2,3],[0,3,0,2],[1,2,1,1]],[[1,2,2,2],[0,3,2,2],[0,3,0,2],[1,2,1,1]],[[1,2,3,1],[0,3,2,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,1],[0,3,2,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,1],[0,3,2,2],[0,3,0,2],[1,1,2,2]],[[1,2,2,1],[0,3,2,2],[0,3,0,2],[1,1,3,1]],[[1,2,2,1],[0,3,2,2],[0,3,0,3],[1,1,2,1]],[[1,2,2,1],[0,3,2,3],[0,3,0,2],[1,1,2,1]],[[1,2,2,2],[0,3,2,2],[0,3,0,2],[1,1,2,1]],[[1,2,3,1],[0,3,2,2],[0,3,0,2],[1,1,2,1]],[[1,3,2,1],[0,3,2,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,3,2,3],[0,3,0,1],[1,2,2,1]],[[1,2,2,2],[0,3,2,2],[0,3,0,1],[1,2,2,1]],[[1,2,3,1],[0,3,2,2],[0,3,0,1],[1,2,2,1]],[[1,3,2,1],[0,3,2,2],[0,3,0,1],[1,2,2,1]],[[0,3,2,0],[2,3,2,2],[2,3,0,0],[0,2,2,1]],[[0,2,3,0],[2,3,2,2],[2,3,0,0],[0,2,2,1]],[[0,2,2,0],[3,3,2,2],[2,3,0,0],[0,2,2,1]],[[0,2,2,0],[2,4,2,2],[2,3,0,0],[0,2,2,1]],[[0,2,2,0],[2,3,2,2],[3,3,0,0],[0,2,2,1]],[[0,3,2,0],[2,3,2,2],[2,3,0,0],[1,1,2,1]],[[0,2,3,0],[2,3,2,2],[2,3,0,0],[1,1,2,1]],[[0,2,2,0],[3,3,2,2],[2,3,0,0],[1,1,2,1]],[[0,2,2,0],[2,4,2,2],[2,3,0,0],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[3,3,0,0],[1,1,2,1]],[[0,2,2,0],[2,3,2,2],[2,3,0,0],[2,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,3,0,0],[1,2,1,1]],[[0,2,3,0],[2,3,2,2],[2,3,0,0],[1,2,1,1]],[[0,2,2,0],[3,3,2,2],[2,3,0,0],[1,2,1,1]],[[0,2,2,0],[2,4,2,2],[2,3,0,0],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[3,3,0,0],[1,2,1,1]],[[0,2,2,0],[2,3,2,2],[2,3,0,0],[2,2,1,1]],[[0,3,2,0],[2,3,2,2],[2,3,0,0],[1,2,2,0]],[[0,2,2,0],[3,3,2,2],[2,3,0,0],[1,2,2,0]],[[0,2,2,0],[2,4,2,2],[2,3,0,0],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[3,3,0,0],[1,2,2,0]],[[0,2,2,0],[2,3,2,2],[2,3,0,0],[2,2,2,0]],[[0,3,2,0],[2,3,2,2],[2,3,0,1],[0,2,2,0]],[[0,2,3,0],[2,3,2,2],[2,3,0,1],[0,2,2,0]],[[0,2,2,0],[3,3,2,2],[2,3,0,1],[0,2,2,0]],[[0,2,2,0],[2,4,2,2],[2,3,0,1],[0,2,2,0]],[[0,2,2,0],[2,3,2,2],[3,3,0,1],[0,2,2,0]],[[0,3,2,0],[2,3,2,2],[2,3,0,1],[1,1,2,0]],[[0,2,3,0],[2,3,2,2],[2,3,0,1],[1,1,2,0]],[[0,2,2,0],[3,3,2,2],[2,3,0,1],[1,1,2,0]],[[0,2,2,0],[2,4,2,2],[2,3,0,1],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[3,3,0,1],[1,1,2,0]],[[0,2,2,0],[2,3,2,2],[2,3,0,1],[2,1,2,0]],[[0,3,2,0],[2,3,2,2],[2,3,0,1],[1,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,3,0,1],[1,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,3,0,1],[1,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,3,0,1],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,3,0,1],[1,2,1,0]],[[0,2,2,0],[2,3,2,2],[2,3,0,1],[2,2,1,0]],[[1,2,2,1],[0,3,2,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[0,3,2,3],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,3,2,2],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[0,3,2,2],[0,2,3,2],[1,1,0,1]],[[1,3,2,1],[0,3,2,2],[0,2,3,2],[1,1,0,1]],[[0,3,2,0],[2,3,2,2],[2,3,0,2],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,3,0,2],[0,2,0,1]],[[0,3,2,0],[2,3,2,2],[2,3,0,2],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,3,0,2],[0,2,1,0]],[[0,3,2,0],[2,3,2,2],[2,3,0,2],[1,1,0,1]],[[0,2,3,0],[2,3,2,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,0],[3,3,2,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,0],[2,4,2,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[3,3,0,2],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[2,3,0,2],[2,1,0,1]],[[0,3,2,0],[2,3,2,2],[2,3,0,2],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[3,3,0,2],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[2,3,0,2],[2,1,1,0]],[[0,3,2,0],[2,3,2,2],[2,3,0,2],[1,2,0,0]],[[0,2,3,0],[2,3,2,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,0],[3,3,2,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,0],[2,4,2,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[3,3,0,2],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[2,3,0,2],[2,2,0,0]],[[1,2,2,1],[0,3,2,2],[0,2,3,3],[0,1,2,0]],[[1,2,2,1],[0,3,2,3],[0,2,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,2,2],[0,2,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,2,2],[0,2,3,2],[0,1,2,0]],[[1,3,2,1],[0,3,2,2],[0,2,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,2,2],[0,2,3,2],[0,1,1,2]],[[1,2,2,1],[0,3,2,2],[0,2,3,3],[0,1,1,1]],[[1,2,2,1],[0,3,2,3],[0,2,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,2,2],[0,2,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,2,2],[0,2,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,2,2],[0,2,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,2,2],[0,2,3,2],[0,0,2,2]],[[1,2,2,1],[0,3,2,2],[0,2,3,3],[0,0,2,1]],[[1,2,2,1],[0,3,2,3],[0,2,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,2,2],[0,2,3,2],[0,0,2,1]],[[1,2,3,1],[0,3,2,2],[0,2,3,2],[0,0,2,1]],[[1,3,2,1],[0,3,2,2],[0,2,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,3,1,0],[0,2,1,1]],[[0,2,3,0],[2,3,2,2],[2,3,1,0],[0,2,1,1]],[[0,2,2,0],[3,3,2,2],[2,3,1,0],[0,2,1,1]],[[0,2,2,0],[2,4,2,2],[2,3,1,0],[0,2,1,1]],[[0,2,2,0],[2,3,2,2],[3,3,1,0],[0,2,1,1]],[[0,3,2,0],[2,3,2,2],[2,3,1,0],[1,1,1,1]],[[0,2,3,0],[2,3,2,2],[2,3,1,0],[1,1,1,1]],[[0,2,2,0],[3,3,2,2],[2,3,1,0],[1,1,1,1]],[[0,2,2,0],[2,4,2,2],[2,3,1,0],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[3,3,1,0],[1,1,1,1]],[[0,2,2,0],[2,3,2,2],[2,3,1,0],[2,1,1,1]],[[0,3,2,0],[2,3,2,2],[2,3,1,0],[1,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,3,1,0],[1,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,3,1,0],[1,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,3,1,0],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,3,1,0],[1,2,0,1]],[[0,2,2,0],[2,3,2,2],[2,3,1,0],[2,2,0,1]],[[1,2,2,1],[0,3,2,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[0,3,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[0,3,2,2],[0,2,3,1],[1,2,1,0]],[[1,3,2,1],[0,3,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,3,2,3],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[0,3,2,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[0,3,2,2],[0,2,3,1],[1,2,0,1]],[[1,3,2,1],[0,3,2,2],[0,2,3,1],[1,2,0,1]],[[0,3,2,0],[2,3,2,2],[2,3,1,1],[0,2,0,1]],[[0,2,3,0],[2,3,2,2],[2,3,1,1],[0,2,0,1]],[[0,2,2,0],[3,3,2,2],[2,3,1,1],[0,2,0,1]],[[0,2,2,0],[2,4,2,2],[2,3,1,1],[0,2,0,1]],[[0,2,2,0],[2,3,2,2],[3,3,1,1],[0,2,0,1]],[[0,3,2,0],[2,3,2,2],[2,3,1,1],[0,2,1,0]],[[0,2,3,0],[2,3,2,2],[2,3,1,1],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,3,1,1],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,3,1,1],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,3,1,1],[0,2,1,0]],[[1,2,2,1],[0,3,2,3],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[0,3,2,2],[0,2,3,1],[1,1,2,0]],[[0,3,2,0],[2,3,2,2],[2,3,1,1],[1,1,0,1]],[[0,2,3,0],[2,3,2,2],[2,3,1,1],[1,1,0,1]],[[0,2,2,0],[3,3,2,2],[2,3,1,1],[1,1,0,1]],[[0,2,2,0],[2,4,2,2],[2,3,1,1],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[3,3,1,1],[1,1,0,1]],[[0,2,2,0],[2,3,2,2],[2,3,1,1],[2,1,0,1]],[[0,3,2,0],[2,3,2,2],[2,3,1,1],[1,1,1,0]],[[0,2,3,0],[2,3,2,2],[2,3,1,1],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[2,3,1,1],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[2,3,1,1],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[3,3,1,1],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[2,3,1,1],[2,1,1,0]],[[1,2,3,1],[0,3,2,2],[0,2,3,1],[1,1,2,0]],[[1,3,2,1],[0,3,2,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[0,3,2,3],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[0,3,2,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[0,3,2,2],[0,2,3,1],[1,1,1,1]],[[1,3,2,1],[0,3,2,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,3,2,3],[0,2,3,1],[1,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,3,1,1],[1,2,0,0]],[[0,2,3,0],[2,3,2,2],[2,3,1,1],[1,2,0,0]],[[0,2,2,0],[3,3,2,2],[2,3,1,1],[1,2,0,0]],[[0,2,2,0],[2,4,2,2],[2,3,1,1],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[3,3,1,1],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[2,3,1,1],[2,2,0,0]],[[1,2,2,2],[0,3,2,2],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[0,3,2,2],[0,2,3,1],[1,0,2,1]],[[1,3,2,1],[0,3,2,2],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[0,3,2,3],[0,2,3,0],[1,2,1,1]],[[1,2,2,2],[0,3,2,2],[0,2,3,0],[1,2,1,1]],[[1,2,3,1],[0,3,2,2],[0,2,3,0],[1,2,1,1]],[[1,3,2,1],[0,3,2,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,1],[0,3,2,3],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[0,3,2,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[0,3,2,2],[0,2,3,0],[1,1,2,1]],[[1,3,2,1],[0,3,2,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[0,3,2,2],[0,2,2,3],[1,2,1,0]],[[1,2,2,1],[0,3,2,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[0,3,2,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[0,3,2,2],[0,2,2,2],[1,2,1,0]],[[1,3,2,1],[0,3,2,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,3,2,2],[0,2,2,2],[1,2,0,2]],[[1,2,2,1],[0,3,2,2],[0,2,2,3],[1,2,0,1]],[[1,2,2,1],[0,3,2,3],[0,2,2,2],[1,2,0,1]],[[1,2,2,2],[0,3,2,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[0,3,2,2],[0,2,2,2],[1,2,0,1]],[[1,3,2,1],[0,3,2,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[0,3,2,2],[0,2,2,3],[1,1,2,0]],[[1,2,2,1],[0,3,2,3],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[0,3,2,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[0,3,2,2],[0,2,2,2],[1,1,2,0]],[[1,3,2,1],[0,3,2,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[0,3,2,2],[0,2,2,2],[1,1,1,2]],[[1,2,2,1],[0,3,2,2],[0,2,2,3],[1,1,1,1]],[[1,2,2,1],[0,3,2,3],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[0,3,2,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[0,3,2,2],[0,2,2,2],[1,1,1,1]],[[1,3,2,1],[0,3,2,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[0,3,2,2],[0,2,2,2],[1,0,2,2]],[[1,2,2,1],[0,3,2,2],[0,2,2,3],[1,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,3,1,2],[1,0,0,1]],[[0,2,3,0],[2,3,2,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,0],[3,3,2,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,0],[2,4,2,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,0],[2,3,2,2],[3,3,1,2],[1,0,0,1]],[[0,3,2,0],[2,3,2,2],[2,3,1,2],[1,0,1,0]],[[0,2,3,0],[2,3,2,2],[2,3,1,2],[1,0,1,0]],[[0,2,2,0],[3,3,2,2],[2,3,1,2],[1,0,1,0]],[[0,2,2,0],[2,4,2,2],[2,3,1,2],[1,0,1,0]],[[0,2,2,0],[2,3,2,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,1],[0,3,2,3],[0,2,2,2],[1,0,2,1]],[[1,2,2,2],[0,3,2,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[0,3,2,2],[0,2,2,2],[1,0,2,1]],[[1,3,2,1],[0,3,2,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[0,3,2,2],[0,2,1,2],[1,1,2,2]],[[1,2,2,1],[0,3,2,2],[0,2,1,2],[1,1,3,1]],[[1,2,2,1],[0,3,2,2],[0,2,1,3],[1,1,2,1]],[[1,2,2,1],[0,3,2,3],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[0,3,2,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[0,3,2,2],[0,2,1,2],[1,1,2,1]],[[1,3,2,1],[0,3,2,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[0,3,2,2],[0,2,0,2],[1,2,2,2]],[[1,2,2,1],[0,3,2,2],[0,2,0,2],[1,2,3,1]],[[1,2,2,1],[0,3,2,2],[0,2,0,2],[1,3,2,1]],[[1,2,2,1],[0,3,2,2],[0,2,0,3],[1,2,2,1]],[[1,2,2,1],[0,3,2,3],[0,2,0,2],[1,2,2,1]],[[1,2,2,2],[0,3,2,2],[0,2,0,2],[1,2,2,1]],[[1,2,3,1],[0,3,2,2],[0,2,0,2],[1,2,2,1]],[[1,3,2,1],[0,3,2,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,3,2,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,1],[0,3,2,3],[0,1,3,2],[1,1,2,0]],[[1,2,2,2],[0,3,2,2],[0,1,3,2],[1,1,2,0]],[[1,2,3,1],[0,3,2,2],[0,1,3,2],[1,1,2,0]],[[1,3,2,1],[0,3,2,2],[0,1,3,2],[1,1,2,0]],[[1,2,2,1],[0,3,2,2],[0,1,3,2],[1,1,1,2]],[[1,2,2,1],[0,3,2,2],[0,1,3,3],[1,1,1,1]],[[1,2,2,1],[0,3,2,3],[0,1,3,2],[1,1,1,1]],[[1,2,2,2],[0,3,2,2],[0,1,3,2],[1,1,1,1]],[[1,2,3,1],[0,3,2,2],[0,1,3,2],[1,1,1,1]],[[1,3,2,1],[0,3,2,2],[0,1,3,2],[1,1,1,1]],[[1,2,2,1],[0,3,2,2],[0,1,3,2],[1,0,2,2]],[[1,2,2,1],[0,3,2,2],[0,1,3,3],[1,0,2,1]],[[1,2,2,1],[0,3,2,3],[0,1,3,2],[1,0,2,1]],[[1,2,2,2],[0,3,2,2],[0,1,3,2],[1,0,2,1]],[[1,2,3,1],[0,3,2,2],[0,1,3,2],[1,0,2,1]],[[1,3,2,1],[0,3,2,2],[0,1,3,2],[1,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,3,2,0],[0,2,1,0]],[[0,2,2,0],[3,3,2,2],[2,3,2,0],[0,2,1,0]],[[0,2,2,0],[2,4,2,2],[2,3,2,0],[0,2,1,0]],[[0,2,2,0],[2,3,2,2],[3,3,2,0],[0,2,1,0]],[[1,2,2,1],[0,3,2,3],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[0,3,2,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,3,2,2],[0,1,3,1],[1,2,2,0]],[[0,3,2,0],[2,3,2,2],[2,3,2,0],[1,0,1,1]],[[0,2,3,0],[2,3,2,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,0],[3,3,2,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,0],[2,4,2,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,0],[2,3,2,2],[3,3,2,0],[1,0,1,1]],[[0,3,2,0],[2,3,2,2],[2,3,2,0],[1,1,1,0]],[[0,2,2,0],[3,3,2,2],[2,3,2,0],[1,1,1,0]],[[0,2,2,0],[2,4,2,2],[2,3,2,0],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[3,3,2,0],[1,1,1,0]],[[0,2,2,0],[2,3,2,2],[2,3,2,0],[2,1,1,0]],[[1,3,2,1],[0,3,2,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,3,2,3],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[0,3,2,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[0,3,2,2],[0,1,3,1],[1,2,1,1]],[[1,3,2,1],[0,3,2,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,3,2,3],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[0,3,2,2],[0,1,3,0],[1,2,2,1]],[[0,3,2,0],[2,3,2,2],[2,3,2,0],[1,2,0,0]],[[0,2,2,0],[3,3,2,2],[2,3,2,0],[1,2,0,0]],[[0,2,2,0],[2,4,2,2],[2,3,2,0],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[3,3,2,0],[1,2,0,0]],[[0,2,2,0],[2,3,2,2],[2,3,2,0],[2,2,0,0]],[[1,2,3,1],[0,3,2,2],[0,1,3,0],[1,2,2,1]],[[1,3,2,1],[0,3,2,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,3,2,2],[0,1,2,3],[1,2,2,0]],[[1,2,2,1],[0,3,2,3],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[0,3,2,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[0,3,2,2],[0,1,2,2],[1,2,2,0]],[[1,3,2,1],[0,3,2,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,3,2,2],[0,1,2,2],[1,2,1,2]],[[1,2,2,1],[0,3,2,2],[0,1,2,3],[1,2,1,1]],[[1,2,2,1],[0,3,2,3],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[0,3,2,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[0,3,2,2],[0,1,2,2],[1,2,1,1]],[[1,3,2,1],[0,3,2,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,3,2,2],[0,1,1,2],[1,2,2,2]],[[1,2,2,1],[0,3,2,2],[0,1,1,2],[1,2,3,1]],[[1,2,2,1],[0,3,2,2],[0,1,1,2],[1,3,2,1]],[[1,2,2,1],[0,3,2,2],[0,1,1,3],[1,2,2,1]],[[1,2,2,1],[0,3,2,3],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,3,2,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,3,2,2],[0,1,1,2],[1,2,2,1]],[[1,3,2,1],[0,3,2,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,2,2],[0,0,3,3],[1,2,2,0]],[[1,2,2,1],[0,3,2,3],[0,0,3,2],[1,2,2,0]],[[1,2,2,2],[0,3,2,2],[0,0,3,2],[1,2,2,0]],[[1,2,3,1],[0,3,2,2],[0,0,3,2],[1,2,2,0]],[[1,3,2,1],[0,3,2,2],[0,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,3,2,2],[0,0,3,2],[1,2,1,2]],[[1,2,2,1],[0,3,2,2],[0,0,3,3],[1,2,1,1]],[[1,2,2,1],[0,3,2,3],[0,0,3,2],[1,2,1,1]],[[1,2,2,2],[0,3,2,2],[0,0,3,2],[1,2,1,1]],[[1,2,3,1],[0,3,2,2],[0,0,3,2],[1,2,1,1]],[[1,3,2,1],[0,3,2,2],[0,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,3,2,2],[0,0,3,2],[1,1,2,2]],[[1,2,2,1],[0,3,2,2],[0,0,3,3],[1,1,2,1]],[[1,2,2,1],[0,3,2,3],[0,0,3,2],[1,1,2,1]],[[1,2,2,2],[0,3,2,2],[0,0,3,2],[1,1,2,1]],[[1,2,3,1],[0,3,2,2],[0,0,3,2],[1,1,2,1]],[[1,3,2,1],[0,3,2,2],[0,0,3,2],[1,1,2,1]],[[0,3,2,0],[2,3,2,2],[2,3,2,1],[1,0,0,1]],[[0,2,3,0],[2,3,2,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,0],[3,3,2,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,0],[2,4,2,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,0],[2,3,2,2],[3,3,2,1],[1,0,0,1]],[[0,3,2,0],[2,3,2,2],[2,3,2,1],[1,0,1,0]],[[0,2,3,0],[2,3,2,2],[2,3,2,1],[1,0,1,0]],[[0,2,2,0],[3,3,2,2],[2,3,2,1],[1,0,1,0]],[[0,2,2,0],[2,4,2,2],[2,3,2,1],[1,0,1,0]],[[0,2,2,0],[2,3,2,2],[3,3,2,1],[1,0,1,0]],[[1,2,2,1],[0,3,2,2],[0,0,3,2],[0,2,2,2]],[[1,2,2,1],[0,3,2,2],[0,0,3,3],[0,2,2,1]],[[1,2,2,1],[0,3,2,3],[0,0,3,2],[0,2,2,1]],[[1,2,2,2],[0,3,2,2],[0,0,3,2],[0,2,2,1]],[[1,2,3,1],[0,3,2,2],[0,0,3,2],[0,2,2,1]],[[1,3,2,1],[0,3,2,2],[0,0,3,2],[0,2,2,1]],[[1,2,2,1],[0,3,2,2],[0,0,2,2],[1,2,2,2]],[[1,2,2,1],[0,3,2,2],[0,0,2,2],[1,2,3,1]],[[1,2,2,1],[0,3,2,2],[0,0,2,3],[1,2,2,1]],[[1,2,2,1],[0,3,2,3],[0,0,2,2],[1,2,2,1]],[[1,2,2,2],[0,3,2,2],[0,0,2,2],[1,2,2,1]],[[1,2,3,1],[0,3,2,2],[0,0,2,2],[1,2,2,1]],[[1,3,2,1],[0,3,2,2],[0,0,2,2],[1,2,2,1]],[[1,2,2,1],[0,4,2,1],[2,3,3,2],[0,0,0,1]],[[1,2,2,2],[0,3,2,1],[2,3,3,2],[0,0,0,1]],[[1,2,3,1],[0,3,2,1],[2,3,3,2],[0,0,0,1]],[[1,3,2,1],[0,3,2,1],[2,3,3,2],[0,0,0,1]],[[2,2,2,1],[0,3,2,1],[2,3,3,2],[0,0,0,1]],[[1,2,2,1],[0,3,2,1],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[0,3,2,1],[2,4,3,1],[1,1,0,0]],[[1,2,2,1],[0,3,2,1],[3,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,4,2,1],[2,3,3,1],[1,1,0,0]],[[1,2,2,2],[0,3,2,1],[2,3,3,1],[1,1,0,0]],[[1,2,3,1],[0,3,2,1],[2,3,3,1],[1,1,0,0]],[[1,3,2,1],[0,3,2,1],[2,3,3,1],[1,1,0,0]],[[2,2,2,1],[0,3,2,1],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,3,2,1],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[0,3,2,1],[3,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,4,2,1],[2,3,3,1],[0,2,0,0]],[[1,2,2,2],[0,3,2,1],[2,3,3,1],[0,2,0,0]],[[1,2,3,1],[0,3,2,1],[2,3,3,1],[0,2,0,0]],[[1,3,2,1],[0,3,2,1],[2,3,3,1],[0,2,0,0]],[[2,2,2,1],[0,3,2,1],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,4,2,1],[2,3,3,1],[0,0,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,3,1],[0,0,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,3,1],[0,0,2,0]],[[1,3,2,1],[0,3,2,1],[2,3,3,1],[0,0,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,3,1],[0,0,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,3,1],[0,0,1,1]],[[1,2,2,2],[0,3,2,1],[2,3,3,1],[0,0,1,1]],[[1,2,3,1],[0,3,2,1],[2,3,3,1],[0,0,1,1]],[[1,3,2,1],[0,3,2,1],[2,3,3,1],[0,0,1,1]],[[2,2,2,1],[0,3,2,1],[2,3,3,1],[0,0,1,1]],[[1,2,2,1],[0,3,2,1],[2,3,3,0],[2,2,0,0]],[[1,2,2,1],[0,3,2,1],[2,4,3,0],[1,2,0,0]],[[1,2,2,1],[0,3,2,1],[3,3,3,0],[1,2,0,0]],[[1,2,2,1],[0,4,2,1],[2,3,3,0],[1,2,0,0]],[[1,2,2,2],[0,3,2,1],[2,3,3,0],[1,2,0,0]],[[1,2,3,1],[0,3,2,1],[2,3,3,0],[1,2,0,0]],[[1,3,2,1],[0,3,2,1],[2,3,3,0],[1,2,0,0]],[[2,2,2,1],[0,3,2,1],[2,3,3,0],[1,2,0,0]],[[1,2,2,1],[0,3,2,1],[2,3,3,0],[2,1,1,0]],[[1,2,2,1],[0,3,2,1],[2,4,3,0],[1,1,1,0]],[[1,2,2,1],[0,3,2,1],[3,3,3,0],[1,1,1,0]],[[1,2,2,1],[0,4,2,1],[2,3,3,0],[1,1,1,0]],[[1,2,2,2],[0,3,2,1],[2,3,3,0],[1,1,1,0]],[[1,2,3,1],[0,3,2,1],[2,3,3,0],[1,1,1,0]],[[1,3,2,1],[0,3,2,1],[2,3,3,0],[1,1,1,0]],[[2,2,2,1],[0,3,2,1],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[0,3,2,1],[2,3,3,0],[2,0,2,0]],[[1,2,2,1],[0,3,2,1],[2,4,3,0],[1,0,2,0]],[[1,2,2,1],[0,3,2,1],[3,3,3,0],[1,0,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,3,0],[1,0,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,3,0],[1,0,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,3,0],[1,0,2,0]],[[1,3,2,1],[0,3,2,1],[2,3,3,0],[1,0,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,3,0],[1,0,2,0]],[[1,2,2,1],[0,3,2,1],[2,3,3,0],[0,3,1,0]],[[1,2,2,1],[0,3,2,1],[2,4,3,0],[0,2,1,0]],[[1,2,2,1],[0,3,2,1],[3,3,3,0],[0,2,1,0]],[[1,2,2,1],[0,4,2,1],[2,3,3,0],[0,2,1,0]],[[1,2,2,2],[0,3,2,1],[2,3,3,0],[0,2,1,0]],[[1,2,3,1],[0,3,2,1],[2,3,3,0],[0,2,1,0]],[[1,3,2,1],[0,3,2,1],[2,3,3,0],[0,2,1,0]],[[2,2,2,1],[0,3,2,1],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[0,3,2,1],[2,4,3,0],[0,1,2,0]],[[1,2,2,1],[0,3,2,1],[3,3,3,0],[0,1,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,3,0],[0,1,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,3,0],[0,1,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,3,0],[0,1,2,0]],[[1,3,2,1],[0,3,2,1],[2,3,3,0],[0,1,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,3,0],[0,1,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,3,0],[0,0,2,1]],[[1,2,2,2],[0,3,2,1],[2,3,3,0],[0,0,2,1]],[[1,2,3,1],[0,3,2,1],[2,3,3,0],[0,0,2,1]],[[1,3,2,1],[0,3,2,1],[2,3,3,0],[0,0,2,1]],[[2,2,2,1],[0,3,2,1],[2,3,3,0],[0,0,2,1]],[[0,3,2,0],[2,3,2,2],[2,3,3,0],[1,0,1,0]],[[0,2,3,0],[2,3,2,2],[2,3,3,0],[1,0,1,0]],[[0,2,2,0],[3,3,2,2],[2,3,3,0],[1,0,1,0]],[[0,2,2,0],[2,4,2,2],[2,3,3,0],[1,0,1,0]],[[0,2,2,0],[2,3,2,2],[3,3,3,0],[1,0,1,0]],[[1,2,2,1],[0,4,2,1],[2,3,2,2],[0,0,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,2,2],[0,0,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,2,2],[0,0,2,0]],[[1,3,2,1],[0,3,2,1],[2,3,2,2],[0,0,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,2,2],[0,0,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,2,2],[0,0,1,1]],[[1,2,2,2],[0,3,2,1],[2,3,2,2],[0,0,1,1]],[[1,2,3,1],[0,3,2,1],[2,3,2,2],[0,0,1,1]],[[1,3,2,1],[0,3,2,1],[2,3,2,2],[0,0,1,1]],[[2,2,2,1],[0,3,2,1],[2,3,2,2],[0,0,1,1]],[[1,2,2,1],[0,3,2,1],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[0,3,2,1],[2,4,2,1],[1,2,0,0]],[[1,2,2,1],[0,3,2,1],[3,3,2,1],[1,2,0,0]],[[1,2,2,1],[0,4,2,1],[2,3,2,1],[1,2,0,0]],[[1,2,2,2],[0,3,2,1],[2,3,2,1],[1,2,0,0]],[[1,2,3,1],[0,3,2,1],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[0,3,2,1],[2,3,2,1],[1,2,0,0]],[[2,2,2,1],[0,3,2,1],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[0,3,2,1],[2,3,2,1],[2,1,1,0]],[[1,2,2,1],[0,3,2,1],[2,4,2,1],[1,1,1,0]],[[1,2,2,1],[0,3,2,1],[3,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,4,2,1],[2,3,2,1],[1,1,1,0]],[[1,2,2,2],[0,3,2,1],[2,3,2,1],[1,1,1,0]],[[1,2,3,1],[0,3,2,1],[2,3,2,1],[1,1,1,0]],[[1,3,2,1],[0,3,2,1],[2,3,2,1],[1,1,1,0]],[[2,2,2,1],[0,3,2,1],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,3,2,1],[2,3,2,1],[2,1,0,1]],[[1,2,2,1],[0,3,2,1],[2,4,2,1],[1,1,0,1]],[[1,2,2,1],[0,3,2,1],[3,3,2,1],[1,1,0,1]],[[1,2,2,1],[0,4,2,1],[2,3,2,1],[1,1,0,1]],[[1,2,2,2],[0,3,2,1],[2,3,2,1],[1,1,0,1]],[[1,2,3,1],[0,3,2,1],[2,3,2,1],[1,1,0,1]],[[1,3,2,1],[0,3,2,1],[2,3,2,1],[1,1,0,1]],[[2,2,2,1],[0,3,2,1],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[0,3,2,1],[2,3,2,1],[2,0,2,0]],[[1,2,2,1],[0,3,2,1],[2,4,2,1],[1,0,2,0]],[[1,2,2,1],[0,3,2,1],[3,3,2,1],[1,0,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,2,1],[1,0,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,2,1],[1,0,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,2,1],[1,0,2,0]],[[0,3,2,0],[2,3,2,2],[2,3,3,1],[1,0,0,0]],[[0,2,3,0],[2,3,2,2],[2,3,3,1],[1,0,0,0]],[[0,2,2,0],[3,3,2,2],[2,3,3,1],[1,0,0,0]],[[0,2,2,0],[2,4,2,2],[2,3,3,1],[1,0,0,0]],[[0,2,2,0],[2,3,2,2],[3,3,3,1],[1,0,0,0]],[[1,3,2,1],[0,3,2,1],[2,3,2,1],[1,0,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[0,3,2,1],[2,3,2,1],[2,0,1,1]],[[1,2,2,1],[0,3,2,1],[2,4,2,1],[1,0,1,1]],[[1,2,2,1],[0,3,2,1],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[0,4,2,1],[2,3,2,1],[1,0,1,1]],[[1,2,2,2],[0,3,2,1],[2,3,2,1],[1,0,1,1]],[[1,2,3,1],[0,3,2,1],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[0,3,2,1],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[0,3,2,1],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[0,3,2,1],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[0,3,2,1],[2,4,2,1],[0,2,1,0]],[[1,2,2,1],[0,3,2,1],[3,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,4,2,1],[2,3,2,1],[0,2,1,0]],[[1,2,2,2],[0,3,2,1],[2,3,2,1],[0,2,1,0]],[[1,2,3,1],[0,3,2,1],[2,3,2,1],[0,2,1,0]],[[1,3,2,1],[0,3,2,1],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[0,3,2,1],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,3,2,1],[2,3,2,1],[0,3,0,1]],[[1,2,2,1],[0,3,2,1],[2,4,2,1],[0,2,0,1]],[[1,2,2,1],[0,3,2,1],[3,3,2,1],[0,2,0,1]],[[1,2,2,1],[0,4,2,1],[2,3,2,1],[0,2,0,1]],[[1,2,2,2],[0,3,2,1],[2,3,2,1],[0,2,0,1]],[[1,2,3,1],[0,3,2,1],[2,3,2,1],[0,2,0,1]],[[1,3,2,1],[0,3,2,1],[2,3,2,1],[0,2,0,1]],[[2,2,2,1],[0,3,2,1],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[0,3,2,1],[2,4,2,1],[0,1,2,0]],[[1,2,2,1],[0,3,2,1],[3,3,2,1],[0,1,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,2,1],[0,1,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,2,1],[0,1,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,2,1],[0,1,2,0]],[[1,3,2,1],[0,3,2,1],[2,3,2,1],[0,1,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[0,3,2,1],[2,4,2,1],[0,1,1,1]],[[1,2,2,1],[0,3,2,1],[3,3,2,1],[0,1,1,1]],[[1,2,2,1],[0,4,2,1],[2,3,2,1],[0,1,1,1]],[[1,2,2,2],[0,3,2,1],[2,3,2,1],[0,1,1,1]],[[1,2,3,1],[0,3,2,1],[2,3,2,1],[0,1,1,1]],[[1,3,2,1],[0,3,2,1],[2,3,2,1],[0,1,1,1]],[[2,2,2,1],[0,3,2,1],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[0,3,2,1],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[0,3,2,1],[2,4,2,0],[1,2,0,1]],[[1,2,2,1],[0,3,2,1],[3,3,2,0],[1,2,0,1]],[[1,2,2,1],[0,4,2,1],[2,3,2,0],[1,2,0,1]],[[1,2,2,2],[0,3,2,1],[2,3,2,0],[1,2,0,1]],[[1,2,3,1],[0,3,2,1],[2,3,2,0],[1,2,0,1]],[[1,3,2,1],[0,3,2,1],[2,3,2,0],[1,2,0,1]],[[2,2,2,1],[0,3,2,1],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[0,3,2,1],[2,3,2,0],[2,1,1,1]],[[1,2,2,1],[0,3,2,1],[2,4,2,0],[1,1,1,1]],[[1,2,2,1],[0,3,2,1],[3,3,2,0],[1,1,1,1]],[[1,2,2,1],[0,4,2,1],[2,3,2,0],[1,1,1,1]],[[1,2,2,2],[0,3,2,1],[2,3,2,0],[1,1,1,1]],[[1,2,3,1],[0,3,2,1],[2,3,2,0],[1,1,1,1]],[[1,3,2,1],[0,3,2,1],[2,3,2,0],[1,1,1,1]],[[2,2,2,1],[0,3,2,1],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[0,3,2,1],[2,3,2,0],[2,0,2,1]],[[1,2,2,1],[0,3,2,1],[2,4,2,0],[1,0,2,1]],[[1,2,2,1],[0,3,2,1],[3,3,2,0],[1,0,2,1]],[[1,2,2,1],[0,4,2,1],[2,3,2,0],[1,0,2,1]],[[1,2,2,2],[0,3,2,1],[2,3,2,0],[1,0,2,1]],[[1,2,3,1],[0,3,2,1],[2,3,2,0],[1,0,2,1]],[[1,3,2,1],[0,3,2,1],[2,3,2,0],[1,0,2,1]],[[2,2,2,1],[0,3,2,1],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[0,3,2,1],[2,3,2,0],[0,3,1,1]],[[1,2,2,1],[0,3,2,1],[2,4,2,0],[0,2,1,1]],[[1,2,2,1],[0,3,2,1],[3,3,2,0],[0,2,1,1]],[[1,2,2,1],[0,4,2,1],[2,3,2,0],[0,2,1,1]],[[1,2,2,2],[0,3,2,1],[2,3,2,0],[0,2,1,1]],[[1,2,3,1],[0,3,2,1],[2,3,2,0],[0,2,1,1]],[[1,3,2,1],[0,3,2,1],[2,3,2,0],[0,2,1,1]],[[2,2,2,1],[0,3,2,1],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[0,3,2,1],[2,4,2,0],[0,1,2,1]],[[1,2,2,1],[0,3,2,1],[3,3,2,0],[0,1,2,1]],[[1,2,2,1],[0,4,2,1],[2,3,2,0],[0,1,2,1]],[[1,2,2,2],[0,3,2,1],[2,3,2,0],[0,1,2,1]],[[1,2,3,1],[0,3,2,1],[2,3,2,0],[0,1,2,1]],[[1,3,2,1],[0,3,2,1],[2,3,2,0],[0,1,2,1]],[[2,2,2,1],[0,3,2,1],[2,3,2,0],[0,1,2,1]],[[1,2,2,1],[0,3,2,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[0,3,2,1],[2,4,1,2],[1,2,0,0]],[[1,2,2,1],[0,3,2,1],[3,3,1,2],[1,2,0,0]],[[1,2,2,1],[0,4,2,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,2],[0,3,2,1],[2,3,1,2],[1,2,0,0]],[[1,2,3,1],[0,3,2,1],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[0,3,2,1],[2,3,1,2],[1,2,0,0]],[[2,2,2,1],[0,3,2,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[0,3,2,1],[2,3,1,2],[2,1,1,0]],[[1,2,2,1],[0,3,2,1],[2,4,1,2],[1,1,1,0]],[[1,2,2,1],[0,3,2,1],[3,3,1,2],[1,1,1,0]],[[1,2,2,1],[0,4,2,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,2],[0,3,2,1],[2,3,1,2],[1,1,1,0]],[[1,2,3,1],[0,3,2,1],[2,3,1,2],[1,1,1,0]],[[1,3,2,1],[0,3,2,1],[2,3,1,2],[1,1,1,0]],[[2,2,2,1],[0,3,2,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[0,3,2,1],[2,3,1,2],[2,1,0,1]],[[1,2,2,1],[0,3,2,1],[2,4,1,2],[1,1,0,1]],[[1,2,2,1],[0,3,2,1],[3,3,1,2],[1,1,0,1]],[[1,2,2,1],[0,4,2,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,2],[0,3,2,1],[2,3,1,2],[1,1,0,1]],[[1,2,3,1],[0,3,2,1],[2,3,1,2],[1,1,0,1]],[[1,3,2,1],[0,3,2,1],[2,3,1,2],[1,1,0,1]],[[2,2,2,1],[0,3,2,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[0,3,2,1],[2,3,1,2],[2,0,2,0]],[[1,2,2,1],[0,3,2,1],[2,4,1,2],[1,0,2,0]],[[1,2,2,1],[0,3,2,1],[3,3,1,2],[1,0,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,1,2],[1,0,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,1,2],[1,0,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,1,2],[1,0,2,0]],[[1,3,2,1],[0,3,2,1],[2,3,1,2],[1,0,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[0,3,2,1],[2,3,1,2],[2,0,1,1]],[[1,2,2,1],[0,3,2,1],[2,4,1,2],[1,0,1,1]],[[1,2,2,1],[0,3,2,1],[3,3,1,2],[1,0,1,1]],[[1,2,2,1],[0,4,2,1],[2,3,1,2],[1,0,1,1]],[[1,2,2,2],[0,3,2,1],[2,3,1,2],[1,0,1,1]],[[1,2,3,1],[0,3,2,1],[2,3,1,2],[1,0,1,1]],[[1,3,2,1],[0,3,2,1],[2,3,1,2],[1,0,1,1]],[[2,2,2,1],[0,3,2,1],[2,3,1,2],[1,0,1,1]],[[1,2,2,1],[0,3,2,1],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[0,3,2,1],[2,4,1,2],[0,2,1,0]],[[1,2,2,1],[0,3,2,1],[3,3,1,2],[0,2,1,0]],[[1,2,2,1],[0,4,2,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,2],[0,3,2,1],[2,3,1,2],[0,2,1,0]],[[1,2,3,1],[0,3,2,1],[2,3,1,2],[0,2,1,0]],[[1,3,2,1],[0,3,2,1],[2,3,1,2],[0,2,1,0]],[[2,2,2,1],[0,3,2,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[0,3,2,1],[2,3,1,2],[0,3,0,1]],[[1,2,2,1],[0,3,2,1],[2,4,1,2],[0,2,0,1]],[[1,2,2,1],[0,3,2,1],[3,3,1,2],[0,2,0,1]],[[1,2,2,1],[0,4,2,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,2],[0,3,2,1],[2,3,1,2],[0,2,0,1]],[[1,2,3,1],[0,3,2,1],[2,3,1,2],[0,2,0,1]],[[1,3,2,1],[0,3,2,1],[2,3,1,2],[0,2,0,1]],[[2,2,2,1],[0,3,2,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[0,3,2,1],[2,4,1,2],[0,1,2,0]],[[1,2,2,1],[0,3,2,1],[3,3,1,2],[0,1,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,1,2],[0,1,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,1,2],[0,1,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,1,2],[0,1,2,0]],[[1,3,2,1],[0,3,2,1],[2,3,1,2],[0,1,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[0,3,2,1],[2,4,1,2],[0,1,1,1]],[[1,2,2,1],[0,3,2,1],[3,3,1,2],[0,1,1,1]],[[1,2,2,1],[0,4,2,1],[2,3,1,2],[0,1,1,1]],[[1,2,2,2],[0,3,2,1],[2,3,1,2],[0,1,1,1]],[[1,2,3,1],[0,3,2,1],[2,3,1,2],[0,1,1,1]],[[1,3,2,1],[0,3,2,1],[2,3,1,2],[0,1,1,1]],[[2,2,2,1],[0,3,2,1],[2,3,1,2],[0,1,1,1]],[[1,2,2,1],[0,3,2,1],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[0,3,2,1],[2,4,1,1],[1,1,2,0]],[[1,2,2,1],[0,3,2,1],[3,3,1,1],[1,1,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,1,1],[1,1,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,1,1],[1,1,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[0,3,2,1],[2,3,1,1],[1,1,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[0,3,2,1],[2,3,1,1],[0,2,3,0]],[[1,2,2,1],[0,3,2,1],[2,3,1,1],[0,3,2,0]],[[1,2,2,1],[0,3,2,1],[2,4,1,1],[0,2,2,0]],[[1,2,2,1],[0,3,2,1],[3,3,1,1],[0,2,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,1,1],[0,2,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,1,1],[0,2,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,1,1],[0,2,2,0]],[[1,3,2,1],[0,3,2,1],[2,3,1,1],[0,2,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[0,3,2,1],[2,3,1,0],[2,1,2,1]],[[1,2,2,1],[0,3,2,1],[2,4,1,0],[1,1,2,1]],[[1,2,2,1],[0,3,2,1],[3,3,1,0],[1,1,2,1]],[[1,2,2,1],[0,4,2,1],[2,3,1,0],[1,1,2,1]],[[1,2,2,2],[0,3,2,1],[2,3,1,0],[1,1,2,1]],[[1,2,3,1],[0,3,2,1],[2,3,1,0],[1,1,2,1]],[[1,3,2,1],[0,3,2,1],[2,3,1,0],[1,1,2,1]],[[2,2,2,1],[0,3,2,1],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[0,3,2,1],[2,3,1,0],[0,2,2,2]],[[1,2,2,1],[0,3,2,1],[2,3,1,0],[0,2,3,1]],[[1,2,2,1],[0,3,2,1],[2,3,1,0],[0,3,2,1]],[[1,2,2,1],[0,3,2,1],[2,4,1,0],[0,2,2,1]],[[1,2,2,1],[0,3,2,1],[3,3,1,0],[0,2,2,1]],[[1,2,2,1],[0,4,2,1],[2,3,1,0],[0,2,2,1]],[[1,2,2,2],[0,3,2,1],[2,3,1,0],[0,2,2,1]],[[1,2,3,1],[0,3,2,1],[2,3,1,0],[0,2,2,1]],[[1,3,2,1],[0,3,2,1],[2,3,1,0],[0,2,2,1]],[[2,2,2,1],[0,3,2,1],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[0,3,2,1],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[0,3,2,1],[2,4,0,2],[1,1,2,0]],[[1,2,2,1],[0,3,2,1],[3,3,0,2],[1,1,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,0,2],[1,1,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,0,2],[1,1,2,0]],[[1,3,2,1],[0,3,2,1],[2,3,0,2],[1,1,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[0,3,2,1],[2,3,0,2],[2,1,1,1]],[[1,2,2,1],[0,3,2,1],[2,4,0,2],[1,1,1,1]],[[1,2,2,1],[0,3,2,1],[3,3,0,2],[1,1,1,1]],[[1,2,2,1],[0,4,2,1],[2,3,0,2],[1,1,1,1]],[[1,2,2,2],[0,3,2,1],[2,3,0,2],[1,1,1,1]],[[1,2,3,1],[0,3,2,1],[2,3,0,2],[1,1,1,1]],[[1,3,2,1],[0,3,2,1],[2,3,0,2],[1,1,1,1]],[[2,2,2,1],[0,3,2,1],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[0,3,2,1],[2,3,0,2],[2,0,2,1]],[[1,2,2,1],[0,3,2,1],[2,4,0,2],[1,0,2,1]],[[1,2,2,1],[0,3,2,1],[3,3,0,2],[1,0,2,1]],[[1,2,2,1],[0,4,2,1],[2,3,0,2],[1,0,2,1]],[[1,2,2,2],[0,3,2,1],[2,3,0,2],[1,0,2,1]],[[1,2,3,1],[0,3,2,1],[2,3,0,2],[1,0,2,1]],[[1,3,2,1],[0,3,2,1],[2,3,0,2],[1,0,2,1]],[[2,2,2,1],[0,3,2,1],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[0,3,2,1],[2,3,0,2],[0,2,3,0]],[[1,2,2,1],[0,3,2,1],[2,3,0,2],[0,3,2,0]],[[1,2,2,1],[0,3,2,1],[2,4,0,2],[0,2,2,0]],[[1,2,2,1],[0,3,2,1],[3,3,0,2],[0,2,2,0]],[[1,2,2,1],[0,4,2,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,2],[0,3,2,1],[2,3,0,2],[0,2,2,0]],[[1,2,3,1],[0,3,2,1],[2,3,0,2],[0,2,2,0]],[[1,3,2,1],[0,3,2,1],[2,3,0,2],[0,2,2,0]],[[2,2,2,1],[0,3,2,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[0,3,2,1],[2,3,0,2],[0,3,1,1]],[[1,2,2,1],[0,3,2,1],[2,4,0,2],[0,2,1,1]],[[1,2,2,1],[0,3,2,1],[3,3,0,2],[0,2,1,1]],[[1,2,2,1],[0,4,2,1],[2,3,0,2],[0,2,1,1]],[[1,2,2,2],[0,3,2,1],[2,3,0,2],[0,2,1,1]],[[1,2,3,1],[0,3,2,1],[2,3,0,2],[0,2,1,1]],[[1,3,2,1],[0,3,2,1],[2,3,0,2],[0,2,1,1]],[[2,2,2,1],[0,3,2,1],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[0,3,2,1],[2,4,0,2],[0,1,2,1]],[[1,2,2,1],[0,3,2,1],[3,3,0,2],[0,1,2,1]],[[1,2,2,1],[0,4,2,1],[2,3,0,2],[0,1,2,1]],[[1,2,2,2],[0,3,2,1],[2,3,0,2],[0,1,2,1]],[[1,2,3,1],[0,3,2,1],[2,3,0,2],[0,1,2,1]],[[1,3,2,1],[0,3,2,1],[2,3,0,2],[0,1,2,1]],[[2,2,2,1],[0,3,2,1],[2,3,0,2],[0,1,2,1]],[[1,2,2,1],[0,3,2,1],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[0,3,2,1],[2,3,0,1],[2,2,2,0]],[[1,2,2,1],[0,3,2,1],[3,3,0,1],[1,2,2,0]],[[1,2,2,1],[0,3,2,1],[2,3,0,1],[2,1,2,1]],[[1,2,2,1],[0,3,2,1],[2,4,0,1],[1,1,2,1]],[[1,2,2,1],[0,3,2,1],[3,3,0,1],[1,1,2,1]],[[1,2,2,1],[0,4,2,1],[2,3,0,1],[1,1,2,1]],[[1,2,2,2],[0,3,2,1],[2,3,0,1],[1,1,2,1]],[[1,2,3,1],[0,3,2,1],[2,3,0,1],[1,1,2,1]],[[1,3,2,1],[0,3,2,1],[2,3,0,1],[1,1,2,1]],[[2,2,2,1],[0,3,2,1],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[0,3,2,1],[2,3,0,1],[0,2,2,2]],[[1,2,2,1],[0,3,2,1],[2,3,0,1],[0,2,3,1]],[[1,2,2,1],[0,3,2,1],[2,3,0,1],[0,3,2,1]],[[1,2,2,1],[0,3,2,1],[2,4,0,1],[0,2,2,1]],[[1,2,2,1],[0,3,2,1],[3,3,0,1],[0,2,2,1]],[[1,2,2,1],[0,4,2,1],[2,3,0,1],[0,2,2,1]],[[1,2,2,2],[0,3,2,1],[2,3,0,1],[0,2,2,1]],[[1,2,3,1],[0,3,2,1],[2,3,0,1],[0,2,2,1]],[[1,3,2,1],[0,3,2,1],[2,3,0,1],[0,2,2,1]],[[2,2,2,1],[0,3,2,1],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[0,3,2,1],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[0,3,2,1],[2,3,0,0],[2,2,2,1]],[[1,2,2,1],[0,3,2,1],[3,3,0,0],[1,2,2,1]],[[1,2,2,1],[0,4,2,1],[2,2,3,2],[1,0,0,1]],[[1,2,2,2],[0,3,2,1],[2,2,3,2],[1,0,0,1]],[[1,2,3,1],[0,3,2,1],[2,2,3,2],[1,0,0,1]],[[1,3,2,1],[0,3,2,1],[2,2,3,2],[1,0,0,1]],[[2,2,2,1],[0,3,2,1],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[0,4,2,1],[2,2,3,2],[0,1,0,1]],[[1,2,2,2],[0,3,2,1],[2,2,3,2],[0,1,0,1]],[[1,2,3,1],[0,3,2,1],[2,2,3,2],[0,1,0,1]],[[1,3,2,1],[0,3,2,1],[2,2,3,2],[0,1,0,1]],[[2,2,2,1],[0,3,2,1],[2,2,3,2],[0,1,0,1]],[[1,2,2,1],[0,4,2,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,2],[0,3,2,1],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[0,3,2,1],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[0,3,2,1],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[0,3,2,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[0,4,2,1],[2,2,3,1],[1,1,0,1]],[[1,2,2,2],[0,3,2,1],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[0,3,2,1],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[0,3,2,1],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[0,3,2,1],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[0,4,2,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,2],[0,3,2,1],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[0,3,2,1],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[0,3,2,1],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[0,3,2,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[0,4,2,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,2],[0,3,2,1],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[0,3,2,1],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[0,3,2,1],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[0,3,2,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[0,4,2,1],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[0,3,2,1],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[0,3,2,1],[2,2,3,1],[0,2,1,0]],[[1,3,2,1],[0,3,2,1],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[0,3,2,1],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[0,4,2,1],[2,2,3,1],[0,2,0,1]],[[1,2,2,2],[0,3,2,1],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[0,3,2,1],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[0,3,2,1],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[0,3,2,1],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[0,4,2,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,2],[0,3,2,1],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[0,3,2,1],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[0,3,2,1],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[0,3,2,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[0,4,2,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,2],[0,3,2,1],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[0,3,2,1],[2,2,3,1],[0,1,1,1]],[[1,3,2,1],[0,3,2,1],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[0,3,2,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[0,4,2,1],[2,2,3,1],[0,0,2,1]],[[1,2,2,2],[0,3,2,1],[2,2,3,1],[0,0,2,1]],[[1,2,3,1],[0,3,2,1],[2,2,3,1],[0,0,2,1]],[[1,3,2,1],[0,3,2,1],[2,2,3,1],[0,0,2,1]],[[2,2,2,1],[0,3,2,1],[2,2,3,1],[0,0,2,1]],[[1,2,2,1],[0,3,2,1],[2,2,3,0],[1,3,1,0]],[[1,2,2,1],[0,3,2,1],[2,2,3,0],[2,2,1,0]],[[1,2,2,1],[0,3,2,1],[3,2,3,0],[1,2,1,0]],[[1,2,2,1],[0,4,2,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,2],[0,3,2,1],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[0,3,2,1],[2,2,3,0],[1,1,1,1]],[[1,3,2,1],[0,3,2,1],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[0,3,2,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[0,4,2,1],[2,2,3,0],[1,0,2,1]],[[1,2,2,2],[0,3,2,1],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[0,3,2,1],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[0,3,2,1],[2,2,3,0],[1,0,2,1]],[[2,2,2,1],[0,3,2,1],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[0,4,2,1],[2,2,3,0],[0,2,1,1]],[[1,2,2,2],[0,3,2,1],[2,2,3,0],[0,2,1,1]],[[1,2,3,1],[0,3,2,1],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[0,3,2,1],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[0,3,2,1],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[0,4,2,1],[2,2,3,0],[0,1,2,1]],[[1,2,2,2],[0,3,2,1],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[0,3,2,1],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[0,3,2,1],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[0,3,2,1],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[0,4,2,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[0,3,2,1],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[0,3,2,1],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[0,3,2,1],[2,2,2,2],[1,1,1,0]],[[2,2,2,1],[0,3,2,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[0,4,2,1],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[0,3,2,1],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[0,3,2,1],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[0,3,2,1],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[0,3,2,1],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[0,4,2,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[0,3,2,1],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[0,3,2,1],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[0,3,2,1],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[0,3,2,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[0,4,2,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[0,3,2,1],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[0,3,2,1],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[0,3,2,1],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[0,3,2,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[0,4,2,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[0,3,2,1],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[0,3,2,1],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[0,3,2,1],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[0,3,2,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[0,4,2,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[0,3,2,1],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[0,3,2,1],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[0,3,2,1],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[0,3,2,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[0,4,2,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[0,3,2,1],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[0,3,2,1],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[0,3,2,1],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[0,3,2,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[0,4,2,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[0,3,2,1],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[0,3,2,1],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[0,3,2,1],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[0,3,2,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[0,4,2,1],[2,2,2,2],[0,0,2,1]],[[1,2,2,2],[0,3,2,1],[2,2,2,2],[0,0,2,1]],[[1,2,3,1],[0,3,2,1],[2,2,2,2],[0,0,2,1]],[[1,3,2,1],[0,3,2,1],[2,2,2,2],[0,0,2,1]],[[2,2,2,1],[0,3,2,1],[2,2,2,2],[0,0,2,1]],[[1,2,2,1],[0,3,2,1],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[0,3,2,1],[2,2,2,1],[2,2,1,0]],[[1,2,2,1],[0,3,2,1],[3,2,2,1],[1,2,1,0]],[[1,2,2,1],[0,3,2,1],[2,2,2,1],[1,3,0,1]],[[1,2,2,1],[0,3,2,1],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[0,3,2,1],[3,2,2,1],[1,2,0,1]],[[1,2,2,1],[0,3,2,1],[2,2,2,0],[1,3,1,1]],[[1,2,2,1],[0,3,2,1],[2,2,2,0],[2,2,1,1]],[[1,2,2,1],[0,3,2,1],[3,2,2,0],[1,2,1,1]],[[1,2,2,1],[0,3,2,1],[2,2,1,2],[1,3,1,0]],[[1,2,2,1],[0,3,2,1],[2,2,1,2],[2,2,1,0]],[[1,2,2,1],[0,3,2,1],[3,2,1,2],[1,2,1,0]],[[1,2,2,1],[0,3,2,1],[2,2,1,2],[1,3,0,1]],[[1,2,2,1],[0,3,2,1],[2,2,1,2],[2,2,0,1]],[[1,2,2,1],[0,3,2,1],[3,2,1,2],[1,2,0,1]],[[1,2,2,1],[0,4,2,1],[2,2,1,2],[1,0,2,1]],[[1,2,2,2],[0,3,2,1],[2,2,1,2],[1,0,2,1]],[[1,2,3,1],[0,3,2,1],[2,2,1,2],[1,0,2,1]],[[1,3,2,1],[0,3,2,1],[2,2,1,2],[1,0,2,1]],[[2,2,2,1],[0,3,2,1],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[0,4,2,1],[2,2,1,2],[0,1,2,1]],[[1,2,2,2],[0,3,2,1],[2,2,1,2],[0,1,2,1]],[[1,2,3,1],[0,3,2,1],[2,2,1,2],[0,1,2,1]],[[1,3,2,1],[0,3,2,1],[2,2,1,2],[0,1,2,1]],[[2,2,2,1],[0,3,2,1],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[0,3,2,1],[2,2,1,1],[1,2,3,0]],[[1,2,2,1],[0,3,2,1],[2,2,1,1],[1,3,2,0]],[[1,2,2,1],[0,3,2,1],[2,2,1,1],[2,2,2,0]],[[1,2,2,1],[0,3,2,1],[3,2,1,1],[1,2,2,0]],[[1,2,2,1],[0,3,2,1],[2,2,1,0],[1,2,2,2]],[[1,2,2,1],[0,3,2,1],[2,2,1,0],[1,2,3,1]],[[1,2,2,1],[0,3,2,1],[2,2,1,0],[1,3,2,1]],[[1,2,2,1],[0,3,2,1],[2,2,1,0],[2,2,2,1]],[[1,2,2,1],[0,3,2,1],[3,2,1,0],[1,2,2,1]],[[1,2,2,1],[0,3,2,1],[2,2,0,2],[1,2,3,0]],[[1,2,2,1],[0,3,2,1],[2,2,0,2],[1,3,2,0]],[[1,2,2,1],[0,3,2,1],[2,2,0,2],[2,2,2,0]],[[1,2,2,1],[0,3,2,1],[3,2,0,2],[1,2,2,0]],[[1,2,2,1],[0,3,2,1],[2,2,0,2],[1,3,1,1]],[[1,2,2,1],[0,3,2,1],[2,2,0,2],[2,2,1,1]],[[1,2,2,1],[0,3,2,1],[3,2,0,2],[1,2,1,1]],[[1,2,2,1],[0,4,2,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[0,3,2,1],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[0,3,2,1],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[0,3,2,1],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[0,3,2,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[0,3,2,1],[2,2,0,1],[1,2,2,2]],[[1,2,2,1],[0,3,2,1],[2,2,0,1],[1,2,3,1]],[[1,2,2,1],[0,3,2,1],[2,2,0,1],[1,3,2,1]],[[1,2,2,1],[0,3,2,1],[2,2,0,1],[2,2,2,1]],[[1,2,2,1],[0,3,2,1],[3,2,0,1],[1,2,2,1]],[[0,2,2,0],[3,3,3,0],[2,3,0,0],[1,2,2,1]],[[0,2,2,0],[2,3,3,0],[3,3,0,0],[1,2,2,1]],[[0,2,2,0],[2,3,3,0],[2,3,0,0],[2,2,2,1]],[[0,2,2,0],[2,3,3,0],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[0,4,2,1],[2,1,3,1],[0,2,2,0]],[[1,2,2,2],[0,3,2,1],[2,1,3,1],[0,2,2,0]],[[1,2,3,1],[0,3,2,1],[2,1,3,1],[0,2,2,0]],[[1,3,2,1],[0,3,2,1],[2,1,3,1],[0,2,2,0]],[[2,2,2,1],[0,3,2,1],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,4,2,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,2],[0,3,2,1],[2,1,3,1],[0,2,1,1]],[[1,2,3,1],[0,3,2,1],[2,1,3,1],[0,2,1,1]],[[1,3,2,1],[0,3,2,1],[2,1,3,1],[0,2,1,1]],[[2,2,2,1],[0,3,2,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[0,4,2,1],[2,1,3,0],[0,2,2,1]],[[1,2,2,2],[0,3,2,1],[2,1,3,0],[0,2,2,1]],[[1,2,3,1],[0,3,2,1],[2,1,3,0],[0,2,2,1]],[[1,3,2,1],[0,3,2,1],[2,1,3,0],[0,2,2,1]],[[2,2,2,1],[0,3,2,1],[2,1,3,0],[0,2,2,1]],[[1,2,2,1],[0,4,2,1],[2,1,2,2],[0,2,2,0]],[[1,2,2,2],[0,3,2,1],[2,1,2,2],[0,2,2,0]],[[1,2,3,1],[0,3,2,1],[2,1,2,2],[0,2,2,0]],[[1,3,2,1],[0,3,2,1],[2,1,2,2],[0,2,2,0]],[[2,2,2,1],[0,3,2,1],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[0,4,2,1],[2,1,2,2],[0,2,1,1]],[[1,2,2,2],[0,3,2,1],[2,1,2,2],[0,2,1,1]],[[1,2,3,1],[0,3,2,1],[2,1,2,2],[0,2,1,1]],[[1,3,2,1],[0,3,2,1],[2,1,2,2],[0,2,1,1]],[[2,2,2,1],[0,3,2,1],[2,1,2,2],[0,2,1,1]],[[1,2,2,1],[0,4,2,1],[2,1,1,2],[0,2,2,1]],[[1,2,2,2],[0,3,2,1],[2,1,1,2],[0,2,2,1]],[[1,2,3,1],[0,3,2,1],[2,1,1,2],[0,2,2,1]],[[1,3,2,1],[0,3,2,1],[2,1,1,2],[0,2,2,1]],[[2,2,2,1],[0,3,2,1],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[0,4,2,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[0,3,2,1],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[0,3,2,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[0,3,2,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[0,3,2,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[0,4,2,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[0,3,2,1],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[0,3,2,1],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[0,3,2,1],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[0,3,2,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[0,4,2,1],[2,0,3,1],[1,2,1,1]],[[1,2,2,2],[0,3,2,1],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[0,3,2,1],[2,0,3,1],[1,2,1,1]],[[1,3,2,1],[0,3,2,1],[2,0,3,1],[1,2,1,1]],[[2,2,2,1],[0,3,2,1],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[0,4,2,1],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[0,3,2,1],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[0,3,2,1],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[0,3,2,1],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[0,3,2,1],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[0,4,2,1],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[0,3,2,1],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[0,3,2,1],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[0,3,2,1],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[0,3,2,1],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[0,4,2,1],[2,0,2,2],[1,2,1,1]],[[1,2,2,2],[0,3,2,1],[2,0,2,2],[1,2,1,1]],[[1,2,3,1],[0,3,2,1],[2,0,2,2],[1,2,1,1]],[[1,3,2,1],[0,3,2,1],[2,0,2,2],[1,2,1,1]],[[2,2,2,1],[0,3,2,1],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[0,4,2,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[0,3,2,1],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[0,3,2,1],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[0,3,2,1],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[0,3,2,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,2,1],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[0,4,2,1],[1,3,3,1],[1,2,0,0]],[[1,2,2,2],[0,3,2,1],[1,3,3,1],[1,2,0,0]],[[1,2,3,1],[0,3,2,1],[1,3,3,1],[1,2,0,0]],[[1,3,2,1],[0,3,2,1],[1,3,3,1],[1,2,0,0]],[[2,2,2,1],[0,3,2,1],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,3,2,1],[1,3,3,0],[1,3,1,0]],[[1,2,2,1],[0,3,2,1],[1,3,3,0],[2,2,1,0]],[[1,2,2,1],[0,3,2,1],[1,4,3,0],[1,2,1,0]],[[1,2,2,1],[0,4,2,1],[1,3,3,0],[1,2,1,0]],[[1,2,2,2],[0,3,2,1],[1,3,3,0],[1,2,1,0]],[[1,2,3,1],[0,3,2,1],[1,3,3,0],[1,2,1,0]],[[1,3,2,1],[0,3,2,1],[1,3,3,0],[1,2,1,0]],[[2,2,2,1],[0,3,2,1],[1,3,3,0],[1,2,1,0]],[[1,2,2,1],[0,3,2,1],[1,4,3,0],[1,1,2,0]],[[1,2,2,1],[0,4,2,1],[1,3,3,0],[1,1,2,0]],[[1,2,2,2],[0,3,2,1],[1,3,3,0],[1,1,2,0]],[[1,2,3,1],[0,3,2,1],[1,3,3,0],[1,1,2,0]],[[1,3,2,1],[0,3,2,1],[1,3,3,0],[1,1,2,0]],[[2,2,2,1],[0,3,2,1],[1,3,3,0],[1,1,2,0]],[[1,2,2,1],[0,3,2,1],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[0,3,2,1],[1,3,2,1],[2,2,1,0]],[[1,2,2,1],[0,3,2,1],[1,4,2,1],[1,2,1,0]],[[1,2,2,1],[0,4,2,1],[1,3,2,1],[1,2,1,0]],[[1,2,2,2],[0,3,2,1],[1,3,2,1],[1,2,1,0]],[[1,2,3,1],[0,3,2,1],[1,3,2,1],[1,2,1,0]],[[1,3,2,1],[0,3,2,1],[1,3,2,1],[1,2,1,0]],[[2,2,2,1],[0,3,2,1],[1,3,2,1],[1,2,1,0]],[[1,2,2,1],[0,3,2,1],[1,3,2,1],[1,3,0,1]],[[1,2,2,1],[0,3,2,1],[1,3,2,1],[2,2,0,1]],[[1,2,2,1],[0,3,2,1],[1,4,2,1],[1,2,0,1]],[[1,2,2,1],[0,4,2,1],[1,3,2,1],[1,2,0,1]],[[1,2,2,2],[0,3,2,1],[1,3,2,1],[1,2,0,1]],[[1,2,3,1],[0,3,2,1],[1,3,2,1],[1,2,0,1]],[[1,3,2,1],[0,3,2,1],[1,3,2,1],[1,2,0,1]],[[2,2,2,1],[0,3,2,1],[1,3,2,1],[1,2,0,1]],[[1,2,2,1],[0,3,2,1],[1,4,2,1],[1,1,2,0]],[[1,2,2,1],[0,4,2,1],[1,3,2,1],[1,1,2,0]],[[1,2,2,2],[0,3,2,1],[1,3,2,1],[1,1,2,0]],[[1,2,3,1],[0,3,2,1],[1,3,2,1],[1,1,2,0]],[[1,3,2,1],[0,3,2,1],[1,3,2,1],[1,1,2,0]],[[2,2,2,1],[0,3,2,1],[1,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,3,2,1],[1,4,2,1],[1,1,1,1]],[[1,2,2,1],[0,4,2,1],[1,3,2,1],[1,1,1,1]],[[1,2,2,2],[0,3,2,1],[1,3,2,1],[1,1,1,1]],[[1,2,3,1],[0,3,2,1],[1,3,2,1],[1,1,1,1]],[[1,3,2,1],[0,3,2,1],[1,3,2,1],[1,1,1,1]],[[2,2,2,1],[0,3,2,1],[1,3,2,1],[1,1,1,1]],[[1,2,2,1],[0,3,2,1],[1,3,2,0],[1,3,1,1]],[[1,2,2,1],[0,3,2,1],[1,3,2,0],[2,2,1,1]],[[1,2,2,1],[0,3,2,1],[1,4,2,0],[1,2,1,1]],[[1,2,2,1],[0,4,2,1],[1,3,2,0],[1,2,1,1]],[[1,2,2,2],[0,3,2,1],[1,3,2,0],[1,2,1,1]],[[1,2,3,1],[0,3,2,1],[1,3,2,0],[1,2,1,1]],[[1,3,2,1],[0,3,2,1],[1,3,2,0],[1,2,1,1]],[[2,2,2,1],[0,3,2,1],[1,3,2,0],[1,2,1,1]],[[1,2,2,1],[0,3,2,1],[1,4,2,0],[1,1,2,1]],[[1,2,2,1],[0,4,2,1],[1,3,2,0],[1,1,2,1]],[[1,2,2,2],[0,3,2,1],[1,3,2,0],[1,1,2,1]],[[1,2,3,1],[0,3,2,1],[1,3,2,0],[1,1,2,1]],[[1,3,2,1],[0,3,2,1],[1,3,2,0],[1,1,2,1]],[[2,2,2,1],[0,3,2,1],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,3,2,1],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[0,3,2,1],[1,3,1,2],[2,2,1,0]],[[1,2,2,1],[0,3,2,1],[1,4,1,2],[1,2,1,0]],[[1,2,2,1],[0,4,2,1],[1,3,1,2],[1,2,1,0]],[[1,2,2,2],[0,3,2,1],[1,3,1,2],[1,2,1,0]],[[1,2,3,1],[0,3,2,1],[1,3,1,2],[1,2,1,0]],[[1,3,2,1],[0,3,2,1],[1,3,1,2],[1,2,1,0]],[[2,2,2,1],[0,3,2,1],[1,3,1,2],[1,2,1,0]],[[1,2,2,1],[0,3,2,1],[1,3,1,2],[1,3,0,1]],[[1,2,2,1],[0,3,2,1],[1,3,1,2],[2,2,0,1]],[[1,2,2,1],[0,3,2,1],[1,4,1,2],[1,2,0,1]],[[1,2,2,1],[0,4,2,1],[1,3,1,2],[1,2,0,1]],[[1,2,2,2],[0,3,2,1],[1,3,1,2],[1,2,0,1]],[[1,2,3,1],[0,3,2,1],[1,3,1,2],[1,2,0,1]],[[1,3,2,1],[0,3,2,1],[1,3,1,2],[1,2,0,1]],[[2,2,2,1],[0,3,2,1],[1,3,1,2],[1,2,0,1]],[[1,2,2,1],[0,3,2,1],[1,4,1,2],[1,1,2,0]],[[1,2,2,1],[0,4,2,1],[1,3,1,2],[1,1,2,0]],[[1,2,2,2],[0,3,2,1],[1,3,1,2],[1,1,2,0]],[[1,2,3,1],[0,3,2,1],[1,3,1,2],[1,1,2,0]],[[1,3,2,1],[0,3,2,1],[1,3,1,2],[1,1,2,0]],[[0,3,2,0],[2,3,3,1],[0,0,3,1],[1,2,2,1]],[[0,2,3,0],[2,3,3,1],[0,0,3,1],[1,2,2,1]],[[0,2,2,0],[2,3,4,1],[0,0,3,1],[1,2,2,1]],[[0,3,2,0],[2,3,3,1],[0,0,3,2],[1,2,1,1]],[[0,2,3,0],[2,3,3,1],[0,0,3,2],[1,2,1,1]],[[0,2,2,0],[2,3,4,1],[0,0,3,2],[1,2,1,1]],[[0,3,2,0],[2,3,3,1],[0,0,3,2],[1,2,2,0]],[[0,2,3,0],[2,3,3,1],[0,0,3,2],[1,2,2,0]],[[0,2,2,0],[2,3,4,1],[0,0,3,2],[1,2,2,0]],[[0,3,2,0],[2,3,3,1],[0,1,3,1],[1,1,2,1]],[[0,2,3,0],[2,3,3,1],[0,1,3,1],[1,1,2,1]],[[0,2,2,0],[2,3,4,1],[0,1,3,1],[1,1,2,1]],[[0,3,2,0],[2,3,3,1],[0,1,3,2],[1,0,2,1]],[[0,2,3,0],[2,3,3,1],[0,1,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,4,1],[0,1,3,2],[1,0,2,1]],[[0,3,2,0],[2,3,3,1],[0,1,3,2],[1,1,1,1]],[[0,2,3,0],[2,3,3,1],[0,1,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,4,1],[0,1,3,2],[1,1,1,1]],[[0,3,2,0],[2,3,3,1],[0,1,3,2],[1,1,2,0]],[[0,2,3,0],[2,3,3,1],[0,1,3,2],[1,1,2,0]],[[0,2,2,0],[2,3,4,1],[0,1,3,2],[1,1,2,0]],[[0,3,2,0],[2,3,3,1],[0,1,3,2],[1,2,0,1]],[[0,2,3,0],[2,3,3,1],[0,1,3,2],[1,2,0,1]],[[0,2,2,0],[2,3,4,1],[0,1,3,2],[1,2,0,1]],[[0,3,2,0],[2,3,3,1],[0,1,3,2],[1,2,1,0]],[[0,2,3,0],[2,3,3,1],[0,1,3,2],[1,2,1,0]],[[0,2,2,0],[2,3,4,1],[0,1,3,2],[1,2,1,0]],[[2,2,2,1],[0,3,2,1],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,3,2,1],[1,4,1,2],[1,1,1,1]],[[1,2,2,1],[0,4,2,1],[1,3,1,2],[1,1,1,1]],[[1,2,2,2],[0,3,2,1],[1,3,1,2],[1,1,1,1]],[[1,2,3,1],[0,3,2,1],[1,3,1,2],[1,1,1,1]],[[1,3,2,1],[0,3,2,1],[1,3,1,2],[1,1,1,1]],[[2,2,2,1],[0,3,2,1],[1,3,1,2],[1,1,1,1]],[[1,2,2,1],[0,3,2,1],[1,3,1,1],[1,2,3,0]],[[1,2,2,1],[0,3,2,1],[1,3,1,1],[1,3,2,0]],[[1,2,2,1],[0,3,2,1],[1,3,1,1],[2,2,2,0]],[[1,2,2,1],[0,3,2,1],[1,4,1,1],[1,2,2,0]],[[1,2,2,1],[0,4,2,1],[1,3,1,1],[1,2,2,0]],[[1,2,2,2],[0,3,2,1],[1,3,1,1],[1,2,2,0]],[[1,2,3,1],[0,3,2,1],[1,3,1,1],[1,2,2,0]],[[1,3,2,1],[0,3,2,1],[1,3,1,1],[1,2,2,0]],[[2,2,2,1],[0,3,2,1],[1,3,1,1],[1,2,2,0]],[[1,2,2,1],[0,3,2,1],[1,3,1,0],[1,2,2,2]],[[1,2,2,1],[0,3,2,1],[1,3,1,0],[1,2,3,1]],[[1,2,2,1],[0,3,2,1],[1,3,1,0],[1,3,2,1]],[[1,2,2,1],[0,3,2,1],[1,3,1,0],[2,2,2,1]],[[1,2,2,1],[0,3,2,1],[1,4,1,0],[1,2,2,1]],[[1,2,2,1],[0,4,2,1],[1,3,1,0],[1,2,2,1]],[[1,2,2,2],[0,3,2,1],[1,3,1,0],[1,2,2,1]],[[1,2,3,1],[0,3,2,1],[1,3,1,0],[1,2,2,1]],[[1,3,2,1],[0,3,2,1],[1,3,1,0],[1,2,2,1]],[[2,2,2,1],[0,3,2,1],[1,3,1,0],[1,2,2,1]],[[1,2,2,1],[0,3,2,1],[1,3,0,2],[1,2,3,0]],[[1,2,2,1],[0,3,2,1],[1,3,0,2],[1,3,2,0]],[[1,2,2,1],[0,3,2,1],[1,3,0,2],[2,2,2,0]],[[1,2,2,1],[0,3,2,1],[1,4,0,2],[1,2,2,0]],[[1,2,2,1],[0,4,2,1],[1,3,0,2],[1,2,2,0]],[[1,2,2,2],[0,3,2,1],[1,3,0,2],[1,2,2,0]],[[1,2,3,1],[0,3,2,1],[1,3,0,2],[1,2,2,0]],[[1,3,2,1],[0,3,2,1],[1,3,0,2],[1,2,2,0]],[[2,2,2,1],[0,3,2,1],[1,3,0,2],[1,2,2,0]],[[1,2,2,1],[0,3,2,1],[1,3,0,2],[1,3,1,1]],[[1,2,2,1],[0,3,2,1],[1,3,0,2],[2,2,1,1]],[[1,2,2,1],[0,3,2,1],[1,4,0,2],[1,2,1,1]],[[1,2,2,1],[0,4,2,1],[1,3,0,2],[1,2,1,1]],[[1,2,2,2],[0,3,2,1],[1,3,0,2],[1,2,1,1]],[[1,2,3,1],[0,3,2,1],[1,3,0,2],[1,2,1,1]],[[1,3,2,1],[0,3,2,1],[1,3,0,2],[1,2,1,1]],[[2,2,2,1],[0,3,2,1],[1,3,0,2],[1,2,1,1]],[[1,2,2,1],[0,3,2,1],[1,4,0,2],[1,1,2,1]],[[1,2,2,1],[0,4,2,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,2],[0,3,2,1],[1,3,0,2],[1,1,2,1]],[[1,2,3,1],[0,3,2,1],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[0,3,2,1],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[0,3,2,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,3,2,1],[1,3,0,1],[1,2,2,2]],[[1,2,2,1],[0,3,2,1],[1,3,0,1],[1,2,3,1]],[[1,2,2,1],[0,3,2,1],[1,3,0,1],[1,3,2,1]],[[1,2,2,1],[0,3,2,1],[1,3,0,1],[2,2,2,1]],[[1,2,2,1],[0,3,2,1],[1,4,0,1],[1,2,2,1]],[[1,2,2,1],[0,4,2,1],[1,3,0,1],[1,2,2,1]],[[1,2,2,2],[0,3,2,1],[1,3,0,1],[1,2,2,1]],[[1,2,3,1],[0,3,2,1],[1,3,0,1],[1,2,2,1]],[[1,3,2,1],[0,3,2,1],[1,3,0,1],[1,2,2,1]],[[2,2,2,1],[0,3,2,1],[1,3,0,1],[1,2,2,1]],[[1,2,2,1],[0,4,2,1],[1,2,3,1],[1,2,1,0]],[[1,2,2,2],[0,3,2,1],[1,2,3,1],[1,2,1,0]],[[1,2,3,1],[0,3,2,1],[1,2,3,1],[1,2,1,0]],[[1,3,2,1],[0,3,2,1],[1,2,3,1],[1,2,1,0]],[[2,2,2,1],[0,3,2,1],[1,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,4,2,1],[1,2,3,1],[1,2,0,1]],[[1,2,2,2],[0,3,2,1],[1,2,3,1],[1,2,0,1]],[[1,2,3,1],[0,3,2,1],[1,2,3,1],[1,2,0,1]],[[1,3,2,1],[0,3,2,1],[1,2,3,1],[1,2,0,1]],[[2,2,2,1],[0,3,2,1],[1,2,3,1],[1,2,0,1]],[[1,2,2,1],[0,4,2,1],[1,2,3,1],[1,1,2,0]],[[1,2,2,2],[0,3,2,1],[1,2,3,1],[1,1,2,0]],[[1,2,3,1],[0,3,2,1],[1,2,3,1],[1,1,2,0]],[[1,3,2,1],[0,3,2,1],[1,2,3,1],[1,1,2,0]],[[2,2,2,1],[0,3,2,1],[1,2,3,1],[1,1,2,0]],[[1,2,2,1],[0,4,2,1],[1,2,3,1],[1,1,1,1]],[[1,2,2,2],[0,3,2,1],[1,2,3,1],[1,1,1,1]],[[1,2,3,1],[0,3,2,1],[1,2,3,1],[1,1,1,1]],[[1,3,2,1],[0,3,2,1],[1,2,3,1],[1,1,1,1]],[[2,2,2,1],[0,3,2,1],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,4,2,1],[1,2,3,0],[1,2,1,1]],[[1,2,2,2],[0,3,2,1],[1,2,3,0],[1,2,1,1]],[[1,2,3,1],[0,3,2,1],[1,2,3,0],[1,2,1,1]],[[1,3,2,1],[0,3,2,1],[1,2,3,0],[1,2,1,1]],[[2,2,2,1],[0,3,2,1],[1,2,3,0],[1,2,1,1]],[[1,2,2,1],[0,4,2,1],[1,2,3,0],[1,1,2,1]],[[1,2,2,2],[0,3,2,1],[1,2,3,0],[1,1,2,1]],[[1,2,3,1],[0,3,2,1],[1,2,3,0],[1,1,2,1]],[[1,3,2,1],[0,3,2,1],[1,2,3,0],[1,1,2,1]],[[2,2,2,1],[0,3,2,1],[1,2,3,0],[1,1,2,1]],[[1,2,2,1],[0,4,2,1],[1,2,2,2],[1,2,1,0]],[[1,2,2,2],[0,3,2,1],[1,2,2,2],[1,2,1,0]],[[1,2,3,1],[0,3,2,1],[1,2,2,2],[1,2,1,0]],[[1,3,2,1],[0,3,2,1],[1,2,2,2],[1,2,1,0]],[[2,2,2,1],[0,3,2,1],[1,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,4,2,1],[1,2,2,2],[1,2,0,1]],[[1,2,2,2],[0,3,2,1],[1,2,2,2],[1,2,0,1]],[[1,2,3,1],[0,3,2,1],[1,2,2,2],[1,2,0,1]],[[1,3,2,1],[0,3,2,1],[1,2,2,2],[1,2,0,1]],[[2,2,2,1],[0,3,2,1],[1,2,2,2],[1,2,0,1]],[[1,2,2,1],[0,4,2,1],[1,2,2,2],[1,1,2,0]],[[1,2,2,2],[0,3,2,1],[1,2,2,2],[1,1,2,0]],[[1,2,3,1],[0,3,2,1],[1,2,2,2],[1,1,2,0]],[[1,3,2,1],[0,3,2,1],[1,2,2,2],[1,1,2,0]],[[2,2,2,1],[0,3,2,1],[1,2,2,2],[1,1,2,0]],[[1,2,2,1],[0,4,2,1],[1,2,2,2],[1,1,1,1]],[[1,2,2,2],[0,3,2,1],[1,2,2,2],[1,1,1,1]],[[1,2,3,1],[0,3,2,1],[1,2,2,2],[1,1,1,1]],[[1,3,2,1],[0,3,2,1],[1,2,2,2],[1,1,1,1]],[[2,2,2,1],[0,3,2,1],[1,2,2,2],[1,1,1,1]],[[1,2,2,1],[0,4,2,1],[1,2,1,2],[1,1,2,1]],[[1,2,2,2],[0,3,2,1],[1,2,1,2],[1,1,2,1]],[[1,2,3,1],[0,3,2,1],[1,2,1,2],[1,1,2,1]],[[1,3,2,1],[0,3,2,1],[1,2,1,2],[1,1,2,1]],[[2,2,2,1],[0,3,2,1],[1,2,1,2],[1,1,2,1]],[[1,2,2,1],[0,4,2,1],[1,2,0,2],[1,2,2,1]],[[1,2,2,2],[0,3,2,1],[1,2,0,2],[1,2,2,1]],[[1,2,3,1],[0,3,2,1],[1,2,0,2],[1,2,2,1]],[[1,3,2,1],[0,3,2,1],[1,2,0,2],[1,2,2,1]],[[2,2,2,1],[0,3,2,1],[1,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,4,2,1],[1,1,3,1],[1,2,2,0]],[[1,2,2,2],[0,3,2,1],[1,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,3,2,1],[1,1,3,1],[1,2,2,0]],[[1,3,2,1],[0,3,2,1],[1,1,3,1],[1,2,2,0]],[[2,2,2,1],[0,3,2,1],[1,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,4,2,1],[1,1,3,1],[1,2,1,1]],[[1,2,2,2],[0,3,2,1],[1,1,3,1],[1,2,1,1]],[[1,2,3,1],[0,3,2,1],[1,1,3,1],[1,2,1,1]],[[1,3,2,1],[0,3,2,1],[1,1,3,1],[1,2,1,1]],[[2,2,2,1],[0,3,2,1],[1,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,4,2,1],[1,1,3,0],[1,2,2,1]],[[1,2,2,2],[0,3,2,1],[1,1,3,0],[1,2,2,1]],[[1,2,3,1],[0,3,2,1],[1,1,3,0],[1,2,2,1]],[[1,3,2,1],[0,3,2,1],[1,1,3,0],[1,2,2,1]],[[2,2,2,1],[0,3,2,1],[1,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,4,2,1],[1,1,2,2],[1,2,2,0]],[[1,2,2,2],[0,3,2,1],[1,1,2,2],[1,2,2,0]],[[1,2,3,1],[0,3,2,1],[1,1,2,2],[1,2,2,0]],[[1,3,2,1],[0,3,2,1],[1,1,2,2],[1,2,2,0]],[[2,2,2,1],[0,3,2,1],[1,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,4,2,1],[1,1,2,2],[1,2,1,1]],[[1,2,2,2],[0,3,2,1],[1,1,2,2],[1,2,1,1]],[[1,2,3,1],[0,3,2,1],[1,1,2,2],[1,2,1,1]],[[1,3,2,1],[0,3,2,1],[1,1,2,2],[1,2,1,1]],[[2,2,2,1],[0,3,2,1],[1,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,4,2,1],[1,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,3,2,1],[1,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,3,2,1],[1,1,1,2],[1,2,2,1]],[[1,3,2,1],[0,3,2,1],[1,1,1,2],[1,2,2,1]],[[2,2,2,1],[0,3,2,1],[1,1,1,2],[1,2,2,1]],[[0,3,2,0],[2,3,3,1],[1,0,3,1],[0,2,2,1]],[[0,2,3,0],[2,3,3,1],[1,0,3,1],[0,2,2,1]],[[0,2,2,0],[2,3,4,1],[1,0,3,1],[0,2,2,1]],[[0,3,2,0],[2,3,3,1],[1,0,3,2],[0,2,1,1]],[[0,2,3,0],[2,3,3,1],[1,0,3,2],[0,2,1,1]],[[0,2,2,0],[2,3,4,1],[1,0,3,2],[0,2,1,1]],[[0,3,2,0],[2,3,3,1],[1,0,3,2],[0,2,2,0]],[[0,2,3,0],[2,3,3,1],[1,0,3,2],[0,2,2,0]],[[0,2,2,0],[2,3,4,1],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[0,3,2,0],[2,3,3,2],[2,1,0,0]],[[1,2,2,1],[0,3,2,0],[2,4,3,2],[1,1,0,0]],[[1,2,2,1],[0,3,2,0],[3,3,3,2],[1,1,0,0]],[[1,2,2,1],[0,4,2,0],[2,3,3,2],[1,1,0,0]],[[1,2,2,2],[0,3,2,0],[2,3,3,2],[1,1,0,0]],[[1,2,3,1],[0,3,2,0],[2,3,3,2],[1,1,0,0]],[[1,3,2,1],[0,3,2,0],[2,3,3,2],[1,1,0,0]],[[2,2,2,1],[0,3,2,0],[2,3,3,2],[1,1,0,0]],[[0,3,2,0],[2,3,3,1],[1,1,3,1],[0,1,2,1]],[[0,2,3,0],[2,3,3,1],[1,1,3,1],[0,1,2,1]],[[0,2,2,0],[2,3,4,1],[1,1,3,1],[0,1,2,1]],[[0,3,2,0],[2,3,3,1],[1,1,3,1],[1,0,2,1]],[[0,2,3,0],[2,3,3,1],[1,1,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,4,1],[1,1,3,1],[1,0,2,1]],[[0,3,2,0],[2,3,3,1],[1,1,3,2],[0,0,2,1]],[[0,2,3,0],[2,3,3,1],[1,1,3,2],[0,0,2,1]],[[0,2,2,0],[2,3,4,1],[1,1,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,3,1],[1,1,3,2],[0,1,1,1]],[[0,2,3,0],[2,3,3,1],[1,1,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,4,1],[1,1,3,2],[0,1,1,1]],[[0,3,2,0],[2,3,3,1],[1,1,3,2],[0,1,2,0]],[[0,2,3,0],[2,3,3,1],[1,1,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,4,1],[1,1,3,2],[0,1,2,0]],[[0,3,2,0],[2,3,3,1],[1,1,3,2],[0,2,0,1]],[[0,2,3,0],[2,3,3,1],[1,1,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,4,1],[1,1,3,2],[0,2,0,1]],[[0,3,2,0],[2,3,3,1],[1,1,3,2],[0,2,1,0]],[[0,2,3,0],[2,3,3,1],[1,1,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,4,1],[1,1,3,2],[0,2,1,0]],[[0,3,2,0],[2,3,3,1],[1,1,3,2],[1,0,1,1]],[[0,2,3,0],[2,3,3,1],[1,1,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,4,1],[1,1,3,2],[1,0,1,1]],[[0,3,2,0],[2,3,3,1],[1,1,3,2],[1,0,2,0]],[[0,2,3,0],[2,3,3,1],[1,1,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,4,1],[1,1,3,2],[1,0,2,0]],[[0,3,2,0],[2,3,3,1],[1,1,3,2],[1,1,0,1]],[[0,2,3,0],[2,3,3,1],[1,1,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,4,1],[1,1,3,2],[1,1,0,1]],[[0,3,2,0],[2,3,3,1],[1,1,3,2],[1,1,1,0]],[[0,2,3,0],[2,3,3,1],[1,1,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,4,1],[1,1,3,2],[1,1,1,0]],[[1,2,2,1],[0,3,2,0],[2,4,3,2],[0,2,0,0]],[[1,2,2,1],[0,3,2,0],[3,3,3,2],[0,2,0,0]],[[1,2,2,1],[0,4,2,0],[2,3,3,2],[0,2,0,0]],[[1,2,2,2],[0,3,2,0],[2,3,3,2],[0,2,0,0]],[[1,2,3,1],[0,3,2,0],[2,3,3,2],[0,2,0,0]],[[1,3,2,1],[0,3,2,0],[2,3,3,2],[0,2,0,0]],[[2,2,2,1],[0,3,2,0],[2,3,3,2],[0,2,0,0]],[[1,2,2,1],[0,4,2,0],[2,3,3,2],[0,0,2,0]],[[1,2,2,2],[0,3,2,0],[2,3,3,2],[0,0,2,0]],[[1,2,3,1],[0,3,2,0],[2,3,3,2],[0,0,2,0]],[[1,3,2,1],[0,3,2,0],[2,3,3,2],[0,0,2,0]],[[2,2,2,1],[0,3,2,0],[2,3,3,2],[0,0,2,0]],[[1,2,2,1],[0,4,2,0],[2,3,3,2],[0,0,1,1]],[[1,2,2,2],[0,3,2,0],[2,3,3,2],[0,0,1,1]],[[1,2,3,1],[0,3,2,0],[2,3,3,2],[0,0,1,1]],[[1,3,2,1],[0,3,2,0],[2,3,3,2],[0,0,1,1]],[[2,2,2,1],[0,3,2,0],[2,3,3,2],[0,0,1,1]],[[0,3,2,0],[2,3,3,1],[1,2,3,2],[0,0,1,1]],[[0,2,3,0],[2,3,3,1],[1,2,3,2],[0,0,1,1]],[[0,2,2,0],[2,3,4,1],[1,2,3,2],[0,0,1,1]],[[0,3,2,0],[2,3,3,1],[1,2,3,2],[0,0,2,0]],[[0,2,3,0],[2,3,3,1],[1,2,3,2],[0,0,2,0]],[[0,2,2,0],[2,3,4,1],[1,2,3,2],[0,0,2,0]],[[1,2,2,1],[0,4,2,0],[2,3,3,1],[0,0,2,1]],[[1,2,2,2],[0,3,2,0],[2,3,3,1],[0,0,2,1]],[[1,2,3,1],[0,3,2,0],[2,3,3,1],[0,0,2,1]],[[1,3,2,1],[0,3,2,0],[2,3,3,1],[0,0,2,1]],[[2,2,2,1],[0,3,2,0],[2,3,3,1],[0,0,2,1]],[[1,2,2,1],[0,3,2,0],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[0,3,2,0],[2,4,2,2],[1,2,0,0]],[[1,2,2,1],[0,3,2,0],[3,3,2,2],[1,2,0,0]],[[1,2,2,1],[0,4,2,0],[2,3,2,2],[1,2,0,0]],[[1,2,2,2],[0,3,2,0],[2,3,2,2],[1,2,0,0]],[[1,2,3,1],[0,3,2,0],[2,3,2,2],[1,2,0,0]],[[1,3,2,1],[0,3,2,0],[2,3,2,2],[1,2,0,0]],[[2,2,2,1],[0,3,2,0],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[0,3,2,0],[2,3,2,2],[2,1,1,0]],[[1,2,2,1],[0,3,2,0],[2,4,2,2],[1,1,1,0]],[[1,2,2,1],[0,3,2,0],[3,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,4,2,0],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[0,3,2,0],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[0,3,2,0],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[0,3,2,0],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[0,3,2,0],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,3,2,0],[2,3,2,2],[2,1,0,1]],[[1,2,2,1],[0,3,2,0],[2,4,2,2],[1,1,0,1]],[[1,2,2,1],[0,3,2,0],[3,3,2,2],[1,1,0,1]],[[1,2,2,1],[0,4,2,0],[2,3,2,2],[1,1,0,1]],[[1,2,2,2],[0,3,2,0],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[0,3,2,0],[2,3,2,2],[1,1,0,1]],[[1,3,2,1],[0,3,2,0],[2,3,2,2],[1,1,0,1]],[[2,2,2,1],[0,3,2,0],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[0,3,2,0],[2,3,2,2],[2,0,2,0]],[[1,2,2,1],[0,3,2,0],[2,4,2,2],[1,0,2,0]],[[1,2,2,1],[0,3,2,0],[3,3,2,2],[1,0,2,0]],[[1,2,2,1],[0,4,2,0],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[0,3,2,0],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[0,3,2,0],[2,3,2,2],[1,0,2,0]],[[1,3,2,1],[0,3,2,0],[2,3,2,2],[1,0,2,0]],[[2,2,2,1],[0,3,2,0],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[0,3,2,0],[2,3,2,2],[2,0,1,1]],[[1,2,2,1],[0,3,2,0],[2,4,2,2],[1,0,1,1]],[[1,2,2,1],[0,3,2,0],[3,3,2,2],[1,0,1,1]],[[1,2,2,1],[0,4,2,0],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[0,3,2,0],[2,3,2,2],[1,0,1,1]],[[1,2,3,1],[0,3,2,0],[2,3,2,2],[1,0,1,1]],[[1,3,2,1],[0,3,2,0],[2,3,2,2],[1,0,1,1]],[[2,2,2,1],[0,3,2,0],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[0,3,2,0],[2,3,2,2],[0,3,1,0]],[[1,2,2,1],[0,3,2,0],[2,4,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,2,0],[3,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,4,2,0],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[0,3,2,0],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[0,3,2,0],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[0,3,2,0],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[0,3,2,0],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,2,0],[2,3,2,2],[0,3,0,1]],[[1,2,2,1],[0,3,2,0],[2,4,2,2],[0,2,0,1]],[[1,2,2,1],[0,3,2,0],[3,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,4,2,0],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[0,3,2,0],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[0,3,2,0],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[0,3,2,0],[2,3,2,2],[0,2,0,1]],[[2,2,2,1],[0,3,2,0],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,3,2,0],[2,4,2,2],[0,1,2,0]],[[1,2,2,1],[0,3,2,0],[3,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,4,2,0],[2,3,2,2],[0,1,2,0]],[[1,2,2,2],[0,3,2,0],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[0,3,2,0],[2,3,2,2],[0,1,2,0]],[[1,3,2,1],[0,3,2,0],[2,3,2,2],[0,1,2,0]],[[2,2,2,1],[0,3,2,0],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,3,2,0],[2,4,2,2],[0,1,1,1]],[[1,2,2,1],[0,3,2,0],[3,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,4,2,0],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[0,3,2,0],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[0,3,2,0],[2,3,2,2],[0,1,1,1]],[[1,3,2,1],[0,3,2,0],[2,3,2,2],[0,1,1,1]],[[2,2,2,1],[0,3,2,0],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,3,2,0],[2,3,2,1],[2,2,0,1]],[[1,2,2,1],[0,3,2,0],[2,4,2,1],[1,2,0,1]],[[1,2,2,1],[0,3,2,0],[3,3,2,1],[1,2,0,1]],[[1,2,2,1],[0,4,2,0],[2,3,2,1],[1,2,0,1]],[[1,2,3,1],[0,3,2,0],[2,3,2,1],[1,2,0,1]],[[1,3,2,1],[0,3,2,0],[2,3,2,1],[1,2,0,1]],[[2,2,2,1],[0,3,2,0],[2,3,2,1],[1,2,0,1]],[[1,2,2,1],[0,3,2,0],[2,3,2,1],[2,1,1,1]],[[1,2,2,1],[0,3,2,0],[2,4,2,1],[1,1,1,1]],[[1,2,2,1],[0,3,2,0],[3,3,2,1],[1,1,1,1]],[[1,2,2,1],[0,4,2,0],[2,3,2,1],[1,1,1,1]],[[1,2,2,2],[0,3,2,0],[2,3,2,1],[1,1,1,1]],[[1,2,3,1],[0,3,2,0],[2,3,2,1],[1,1,1,1]],[[1,3,2,1],[0,3,2,0],[2,3,2,1],[1,1,1,1]],[[2,2,2,1],[0,3,2,0],[2,3,2,1],[1,1,1,1]],[[1,2,2,1],[0,3,2,0],[2,3,2,1],[2,0,2,1]],[[1,2,2,1],[0,3,2,0],[2,4,2,1],[1,0,2,1]],[[1,2,2,1],[0,3,2,0],[3,3,2,1],[1,0,2,1]],[[1,2,2,1],[0,4,2,0],[2,3,2,1],[1,0,2,1]],[[1,2,2,2],[0,3,2,0],[2,3,2,1],[1,0,2,1]],[[1,2,3,1],[0,3,2,0],[2,3,2,1],[1,0,2,1]],[[1,3,2,1],[0,3,2,0],[2,3,2,1],[1,0,2,1]],[[2,2,2,1],[0,3,2,0],[2,3,2,1],[1,0,2,1]],[[1,2,2,1],[0,3,2,0],[2,3,2,1],[0,3,1,1]],[[1,2,2,1],[0,3,2,0],[2,4,2,1],[0,2,1,1]],[[1,2,2,1],[0,3,2,0],[3,3,2,1],[0,2,1,1]],[[1,2,2,1],[0,4,2,0],[2,3,2,1],[0,2,1,1]],[[1,2,2,2],[0,3,2,0],[2,3,2,1],[0,2,1,1]],[[1,2,3,1],[0,3,2,0],[2,3,2,1],[0,2,1,1]],[[1,3,2,1],[0,3,2,0],[2,3,2,1],[0,2,1,1]],[[2,2,2,1],[0,3,2,0],[2,3,2,1],[0,2,1,1]],[[1,2,2,1],[0,3,2,0],[2,4,2,1],[0,1,2,1]],[[1,2,2,1],[0,3,2,0],[3,3,2,1],[0,1,2,1]],[[1,2,2,1],[0,4,2,0],[2,3,2,1],[0,1,2,1]],[[1,2,2,2],[0,3,2,0],[2,3,2,1],[0,1,2,1]],[[1,2,3,1],[0,3,2,0],[2,3,2,1],[0,1,2,1]],[[1,3,2,1],[0,3,2,0],[2,3,2,1],[0,1,2,1]],[[2,2,2,1],[0,3,2,0],[2,3,2,1],[0,1,2,1]],[[1,2,2,1],[0,3,2,0],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[0,3,2,0],[2,4,1,2],[1,1,2,0]],[[1,2,2,1],[0,3,2,0],[3,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,4,2,0],[2,3,1,2],[1,1,2,0]],[[1,2,2,2],[0,3,2,0],[2,3,1,2],[1,1,2,0]],[[1,2,3,1],[0,3,2,0],[2,3,1,2],[1,1,2,0]],[[1,3,2,1],[0,3,2,0],[2,3,1,2],[1,1,2,0]],[[2,2,2,1],[0,3,2,0],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,3,2,0],[2,3,1,2],[0,2,3,0]],[[1,2,2,1],[0,3,2,0],[2,3,1,2],[0,3,2,0]],[[1,2,2,1],[0,3,2,0],[2,4,1,2],[0,2,2,0]],[[1,2,2,1],[0,3,2,0],[3,3,1,2],[0,2,2,0]],[[1,2,2,1],[0,4,2,0],[2,3,1,2],[0,2,2,0]],[[1,2,2,2],[0,3,2,0],[2,3,1,2],[0,2,2,0]],[[1,2,3,1],[0,3,2,0],[2,3,1,2],[0,2,2,0]],[[1,3,2,1],[0,3,2,0],[2,3,1,2],[0,2,2,0]],[[2,2,2,1],[0,3,2,0],[2,3,1,2],[0,2,2,0]],[[1,2,2,1],[0,3,2,0],[2,3,1,1],[2,1,2,1]],[[1,2,2,1],[0,3,2,0],[2,4,1,1],[1,1,2,1]],[[1,2,2,1],[0,3,2,0],[3,3,1,1],[1,1,2,1]],[[1,2,2,1],[0,4,2,0],[2,3,1,1],[1,1,2,1]],[[1,2,2,2],[0,3,2,0],[2,3,1,1],[1,1,2,1]],[[1,2,3,1],[0,3,2,0],[2,3,1,1],[1,1,2,1]],[[1,3,2,1],[0,3,2,0],[2,3,1,1],[1,1,2,1]],[[2,2,2,1],[0,3,2,0],[2,3,1,1],[1,1,2,1]],[[1,2,2,1],[0,3,2,0],[2,3,1,1],[0,2,2,2]],[[1,2,2,1],[0,3,2,0],[2,3,1,1],[0,2,3,1]],[[1,2,2,1],[0,3,2,0],[2,3,1,1],[0,3,2,1]],[[1,2,2,1],[0,3,2,0],[2,4,1,1],[0,2,2,1]],[[1,2,2,1],[0,3,2,0],[3,3,1,1],[0,2,2,1]],[[1,2,2,1],[0,4,2,0],[2,3,1,1],[0,2,2,1]],[[1,2,2,2],[0,3,2,0],[2,3,1,1],[0,2,2,1]],[[1,2,3,1],[0,3,2,0],[2,3,1,1],[0,2,2,1]],[[1,3,2,1],[0,3,2,0],[2,3,1,1],[0,2,2,1]],[[2,2,2,1],[0,3,2,0],[2,3,1,1],[0,2,2,1]],[[1,2,2,1],[0,3,2,0],[2,3,0,2],[1,3,2,0]],[[1,2,2,1],[0,3,2,0],[2,3,0,2],[2,2,2,0]],[[1,2,2,1],[0,3,2,0],[3,3,0,2],[1,2,2,0]],[[1,2,2,1],[0,3,2,0],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[0,3,2,0],[2,4,0,2],[1,1,2,1]],[[1,2,2,1],[0,3,2,0],[3,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,4,2,0],[2,3,0,2],[1,1,2,1]],[[1,2,2,2],[0,3,2,0],[2,3,0,2],[1,1,2,1]],[[1,2,3,1],[0,3,2,0],[2,3,0,2],[1,1,2,1]],[[1,3,2,1],[0,3,2,0],[2,3,0,2],[1,1,2,1]],[[2,2,2,1],[0,3,2,0],[2,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,3,2,0],[2,3,0,2],[0,2,2,2]],[[1,2,2,1],[0,3,2,0],[2,3,0,2],[0,2,3,1]],[[1,2,2,1],[0,3,2,0],[2,3,0,2],[0,3,2,1]],[[1,2,2,1],[0,3,2,0],[2,3,0,3],[0,2,2,1]],[[1,2,2,1],[0,3,2,0],[2,4,0,2],[0,2,2,1]],[[1,2,2,1],[0,3,2,0],[3,3,0,2],[0,2,2,1]],[[1,2,2,1],[0,4,2,0],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[0,3,2,0],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[0,3,2,0],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[0,3,2,0],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[0,3,2,0],[2,3,0,2],[0,2,2,1]],[[1,2,2,1],[0,3,2,0],[2,3,0,1],[1,3,2,1]],[[1,2,2,1],[0,3,2,0],[2,3,0,1],[2,2,2,1]],[[1,2,2,1],[0,3,2,0],[3,3,0,1],[1,2,2,1]],[[1,2,2,1],[0,4,2,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,2],[0,3,2,0],[2,2,3,2],[1,1,1,0]],[[1,2,3,1],[0,3,2,0],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[0,3,2,0],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[0,3,2,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[0,4,2,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,3,2,0],[2,2,3,2],[1,1,0,1]],[[1,2,3,1],[0,3,2,0],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[0,3,2,0],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[0,3,2,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[0,4,2,0],[2,2,3,2],[1,0,2,0]],[[1,2,2,2],[0,3,2,0],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[0,3,2,0],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[0,3,2,0],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[0,3,2,0],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[0,4,2,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[0,3,2,0],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[0,3,2,0],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[0,3,2,0],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[0,3,2,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[0,4,2,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,2],[0,3,2,0],[2,2,3,2],[0,2,1,0]],[[1,2,3,1],[0,3,2,0],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[0,3,2,0],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[0,3,2,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[0,4,2,0],[2,2,3,2],[0,2,0,1]],[[1,2,2,2],[0,3,2,0],[2,2,3,2],[0,2,0,1]],[[1,2,3,1],[0,3,2,0],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[0,3,2,0],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[0,3,2,0],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[0,4,2,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,2,0],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,2,0],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[0,3,2,0],[2,2,3,2],[0,1,2,0]],[[2,2,2,1],[0,3,2,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[0,4,2,0],[2,2,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,2,0],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,2,0],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,2,0],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[0,3,2,0],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[0,4,2,0],[2,2,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,2,0],[2,2,3,2],[0,0,2,1]],[[1,2,3,1],[0,3,2,0],[2,2,3,2],[0,0,2,1]],[[1,3,2,1],[0,3,2,0],[2,2,3,2],[0,0,2,1]],[[2,2,2,1],[0,3,2,0],[2,2,3,2],[0,0,2,1]],[[1,2,2,1],[0,4,2,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,2],[0,3,2,0],[2,2,3,1],[1,1,1,1]],[[1,2,3,1],[0,3,2,0],[2,2,3,1],[1,1,1,1]],[[1,3,2,1],[0,3,2,0],[2,2,3,1],[1,1,1,1]],[[2,2,2,1],[0,3,2,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,4,2,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,2],[0,3,2,0],[2,2,3,1],[1,0,2,1]],[[1,2,3,1],[0,3,2,0],[2,2,3,1],[1,0,2,1]],[[1,3,2,1],[0,3,2,0],[2,2,3,1],[1,0,2,1]],[[2,2,2,1],[0,3,2,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,1],[0,4,2,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[0,3,2,0],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[0,3,2,0],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[0,3,2,0],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[0,3,2,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[0,4,2,0],[2,2,3,1],[0,1,2,1]],[[1,2,2,2],[0,3,2,0],[2,2,3,1],[0,1,2,1]],[[1,2,3,1],[0,3,2,0],[2,2,3,1],[0,1,2,1]],[[1,3,2,1],[0,3,2,0],[2,2,3,1],[0,1,2,1]],[[2,2,2,1],[0,3,2,0],[2,2,3,1],[0,1,2,1]],[[1,2,2,1],[0,3,2,0],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[0,3,2,0],[2,2,2,2],[2,2,1,0]],[[1,2,2,1],[0,3,2,0],[3,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,3,2,0],[2,2,2,2],[1,3,0,1]],[[1,2,2,1],[0,3,2,0],[2,2,2,2],[2,2,0,1]],[[1,2,2,1],[0,3,2,0],[3,2,2,2],[1,2,0,1]],[[1,2,2,1],[0,3,2,0],[2,2,2,1],[1,3,1,1]],[[1,2,2,1],[0,3,2,0],[2,2,2,1],[2,2,1,1]],[[1,2,2,1],[0,3,2,0],[3,2,2,1],[1,2,1,1]],[[1,2,2,1],[0,3,2,0],[2,2,1,2],[1,2,3,0]],[[1,2,2,1],[0,3,2,0],[2,2,1,2],[1,3,2,0]],[[1,2,2,1],[0,3,2,0],[2,2,1,2],[2,2,2,0]],[[1,2,2,1],[0,3,2,0],[3,2,1,2],[1,2,2,0]],[[1,2,2,1],[0,3,2,0],[2,2,1,1],[1,2,2,2]],[[1,2,2,1],[0,3,2,0],[2,2,1,1],[1,2,3,1]],[[1,2,2,1],[0,3,2,0],[2,2,1,1],[1,3,2,1]],[[1,2,2,1],[0,3,2,0],[2,2,1,1],[2,2,2,1]],[[1,2,2,1],[0,3,2,0],[3,2,1,1],[1,2,2,1]],[[1,2,2,1],[0,3,2,0],[2,2,0,2],[1,2,2,2]],[[1,2,2,1],[0,3,2,0],[2,2,0,2],[1,2,3,1]],[[1,2,2,1],[0,3,2,0],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[0,3,2,0],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[0,3,2,0],[2,2,0,3],[1,2,2,1]],[[1,2,2,1],[0,3,2,0],[3,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,4,2,0],[2,1,3,2],[0,2,2,0]],[[1,2,2,2],[0,3,2,0],[2,1,3,2],[0,2,2,0]],[[1,2,3,1],[0,3,2,0],[2,1,3,2],[0,2,2,0]],[[1,3,2,1],[0,3,2,0],[2,1,3,2],[0,2,2,0]],[[2,2,2,1],[0,3,2,0],[2,1,3,2],[0,2,2,0]],[[1,2,2,1],[0,4,2,0],[2,1,3,2],[0,2,1,1]],[[1,2,2,2],[0,3,2,0],[2,1,3,2],[0,2,1,1]],[[1,2,3,1],[0,3,2,0],[2,1,3,2],[0,2,1,1]],[[1,3,2,1],[0,3,2,0],[2,1,3,2],[0,2,1,1]],[[2,2,2,1],[0,3,2,0],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[0,4,2,0],[2,1,3,1],[0,2,2,1]],[[1,2,2,2],[0,3,2,0],[2,1,3,1],[0,2,2,1]],[[1,2,3,1],[0,3,2,0],[2,1,3,1],[0,2,2,1]],[[1,3,2,1],[0,3,2,0],[2,1,3,1],[0,2,2,1]],[[2,2,2,1],[0,3,2,0],[2,1,3,1],[0,2,2,1]],[[1,2,2,1],[0,4,2,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[0,3,2,0],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[0,3,2,0],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[0,3,2,0],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[0,3,2,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,4,2,0],[2,0,3,2],[1,2,1,1]],[[1,2,2,2],[0,3,2,0],[2,0,3,2],[1,2,1,1]],[[0,3,2,0],[2,3,3,1],[2,0,3,1],[0,1,2,1]],[[0,2,3,0],[2,3,3,1],[2,0,3,1],[0,1,2,1]],[[0,2,2,0],[2,3,4,1],[2,0,3,1],[0,1,2,1]],[[0,3,2,0],[2,3,3,1],[2,0,3,1],[1,0,2,1]],[[0,2,3,0],[2,3,3,1],[2,0,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,4,1],[2,0,3,1],[1,0,2,1]],[[1,2,3,1],[0,3,2,0],[2,0,3,2],[1,2,1,1]],[[1,3,2,1],[0,3,2,0],[2,0,3,2],[1,2,1,1]],[[2,2,2,1],[0,3,2,0],[2,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,4,2,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,2],[0,3,2,0],[2,0,3,1],[1,2,2,1]],[[1,2,3,1],[0,3,2,0],[2,0,3,1],[1,2,2,1]],[[1,3,2,1],[0,3,2,0],[2,0,3,1],[1,2,2,1]],[[2,2,2,1],[0,3,2,0],[2,0,3,1],[1,2,2,1]],[[0,3,2,0],[2,3,3,1],[2,0,3,2],[0,0,2,1]],[[0,2,3,0],[2,3,3,1],[2,0,3,2],[0,0,2,1]],[[0,2,2,0],[2,3,4,1],[2,0,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,3,1],[2,0,3,2],[0,1,1,1]],[[0,2,3,0],[2,3,3,1],[2,0,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,4,1],[2,0,3,2],[0,1,1,1]],[[0,3,2,0],[2,3,3,1],[2,0,3,2],[0,1,2,0]],[[0,2,3,0],[2,3,3,1],[2,0,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,4,1],[2,0,3,2],[0,1,2,0]],[[0,3,2,0],[2,3,3,1],[2,0,3,2],[0,2,0,1]],[[0,2,3,0],[2,3,3,1],[2,0,3,2],[0,2,0,1]],[[0,2,2,0],[2,3,4,1],[2,0,3,2],[0,2,0,1]],[[0,3,2,0],[2,3,3,1],[2,0,3,2],[0,2,1,0]],[[0,2,3,0],[2,3,3,1],[2,0,3,2],[0,2,1,0]],[[0,2,2,0],[2,3,4,1],[2,0,3,2],[0,2,1,0]],[[0,3,2,0],[2,3,3,1],[2,0,3,2],[1,0,1,1]],[[0,2,3,0],[2,3,3,1],[2,0,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,4,1],[2,0,3,2],[1,0,1,1]],[[0,3,2,0],[2,3,3,1],[2,0,3,2],[1,0,2,0]],[[0,2,3,0],[2,3,3,1],[2,0,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,4,1],[2,0,3,2],[1,0,2,0]],[[0,3,2,0],[2,3,3,1],[2,0,3,2],[1,1,0,1]],[[0,2,3,0],[2,3,3,1],[2,0,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,4,1],[2,0,3,2],[1,1,0,1]],[[0,3,2,0],[2,3,3,1],[2,0,3,2],[1,1,1,0]],[[0,2,3,0],[2,3,3,1],[2,0,3,2],[1,1,1,0]],[[0,2,2,0],[2,3,4,1],[2,0,3,2],[1,1,1,0]],[[1,2,2,1],[0,3,2,0],[1,4,3,2],[1,2,0,0]],[[1,2,2,1],[0,4,2,0],[1,3,3,2],[1,2,0,0]],[[1,2,2,2],[0,3,2,0],[1,3,3,2],[1,2,0,0]],[[1,2,3,1],[0,3,2,0],[1,3,3,2],[1,2,0,0]],[[1,3,2,1],[0,3,2,0],[1,3,3,2],[1,2,0,0]],[[2,2,2,1],[0,3,2,0],[1,3,3,2],[1,2,0,0]],[[1,2,2,1],[0,3,2,0],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[0,3,2,0],[1,3,2,2],[2,2,1,0]],[[1,2,2,1],[0,3,2,0],[1,4,2,2],[1,2,1,0]],[[1,2,2,1],[0,4,2,0],[1,3,2,2],[1,2,1,0]],[[1,2,2,2],[0,3,2,0],[1,3,2,2],[1,2,1,0]],[[1,2,3,1],[0,3,2,0],[1,3,2,2],[1,2,1,0]],[[1,3,2,1],[0,3,2,0],[1,3,2,2],[1,2,1,0]],[[2,2,2,1],[0,3,2,0],[1,3,2,2],[1,2,1,0]],[[1,2,2,1],[0,3,2,0],[1,3,2,2],[1,3,0,1]],[[1,2,2,1],[0,3,2,0],[1,3,2,2],[2,2,0,1]],[[1,2,2,1],[0,3,2,0],[1,4,2,2],[1,2,0,1]],[[1,2,2,1],[0,4,2,0],[1,3,2,2],[1,2,0,1]],[[1,2,2,2],[0,3,2,0],[1,3,2,2],[1,2,0,1]],[[1,2,3,1],[0,3,2,0],[1,3,2,2],[1,2,0,1]],[[1,3,2,1],[0,3,2,0],[1,3,2,2],[1,2,0,1]],[[2,2,2,1],[0,3,2,0],[1,3,2,2],[1,2,0,1]],[[1,2,2,1],[0,3,2,0],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[0,4,2,0],[1,3,2,2],[1,1,2,0]],[[1,2,2,2],[0,3,2,0],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[0,3,2,0],[1,3,2,2],[1,1,2,0]],[[1,3,2,1],[0,3,2,0],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[0,3,2,0],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,3,2,0],[1,4,2,2],[1,1,1,1]],[[1,2,2,1],[0,4,2,0],[1,3,2,2],[1,1,1,1]],[[1,2,2,2],[0,3,2,0],[1,3,2,2],[1,1,1,1]],[[1,2,3,1],[0,3,2,0],[1,3,2,2],[1,1,1,1]],[[1,3,2,1],[0,3,2,0],[1,3,2,2],[1,1,1,1]],[[2,2,2,1],[0,3,2,0],[1,3,2,2],[1,1,1,1]],[[1,2,2,1],[0,3,2,0],[1,3,2,1],[1,3,1,1]],[[1,2,2,1],[0,3,2,0],[1,3,2,1],[2,2,1,1]],[[1,2,2,1],[0,3,2,0],[1,4,2,1],[1,2,1,1]],[[1,2,2,1],[0,4,2,0],[1,3,2,1],[1,2,1,1]],[[1,2,2,2],[0,3,2,0],[1,3,2,1],[1,2,1,1]],[[1,2,3,1],[0,3,2,0],[1,3,2,1],[1,2,1,1]],[[1,3,2,1],[0,3,2,0],[1,3,2,1],[1,2,1,1]],[[2,2,2,1],[0,3,2,0],[1,3,2,1],[1,2,1,1]],[[1,2,2,1],[0,3,2,0],[1,4,2,1],[1,1,2,1]],[[1,2,2,1],[0,4,2,0],[1,3,2,1],[1,1,2,1]],[[1,2,2,2],[0,3,2,0],[1,3,2,1],[1,1,2,1]],[[1,2,3,1],[0,3,2,0],[1,3,2,1],[1,1,2,1]],[[1,3,2,1],[0,3,2,0],[1,3,2,1],[1,1,2,1]],[[2,2,2,1],[0,3,2,0],[1,3,2,1],[1,1,2,1]],[[1,2,2,1],[0,3,2,0],[1,3,1,2],[1,2,3,0]],[[1,2,2,1],[0,3,2,0],[1,3,1,2],[1,3,2,0]],[[1,2,2,1],[0,3,2,0],[1,3,1,2],[2,2,2,0]],[[1,2,2,1],[0,3,2,0],[1,4,1,2],[1,2,2,0]],[[1,2,2,1],[0,4,2,0],[1,3,1,2],[1,2,2,0]],[[1,2,2,2],[0,3,2,0],[1,3,1,2],[1,2,2,0]],[[1,2,3,1],[0,3,2,0],[1,3,1,2],[1,2,2,0]],[[1,3,2,1],[0,3,2,0],[1,3,1,2],[1,2,2,0]],[[2,2,2,1],[0,3,2,0],[1,3,1,2],[1,2,2,0]],[[1,2,2,1],[0,3,2,0],[1,3,1,1],[1,2,2,2]],[[1,2,2,1],[0,3,2,0],[1,3,1,1],[1,2,3,1]],[[1,2,2,1],[0,3,2,0],[1,3,1,1],[1,3,2,1]],[[1,2,2,1],[0,3,2,0],[1,3,1,1],[2,2,2,1]],[[1,2,2,1],[0,3,2,0],[1,4,1,1],[1,2,2,1]],[[1,2,2,1],[0,4,2,0],[1,3,1,1],[1,2,2,1]],[[1,2,2,2],[0,3,2,0],[1,3,1,1],[1,2,2,1]],[[1,2,3,1],[0,3,2,0],[1,3,1,1],[1,2,2,1]],[[1,3,2,1],[0,3,2,0],[1,3,1,1],[1,2,2,1]],[[2,2,2,1],[0,3,2,0],[1,3,1,1],[1,2,2,1]],[[1,2,2,1],[0,3,2,0],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[0,3,2,0],[1,3,0,2],[1,2,3,1]],[[1,2,2,1],[0,3,2,0],[1,3,0,2],[1,3,2,1]],[[1,2,2,1],[0,3,2,0],[1,3,0,2],[2,2,2,1]],[[1,2,2,1],[0,3,2,0],[1,3,0,3],[1,2,2,1]],[[1,2,2,1],[0,3,2,0],[1,4,0,2],[1,2,2,1]],[[1,2,2,1],[0,4,2,0],[1,3,0,2],[1,2,2,1]],[[1,2,2,2],[0,3,2,0],[1,3,0,2],[1,2,2,1]],[[1,2,3,1],[0,3,2,0],[1,3,0,2],[1,2,2,1]],[[1,3,2,1],[0,3,2,0],[1,3,0,2],[1,2,2,1]],[[2,2,2,1],[0,3,2,0],[1,3,0,2],[1,2,2,1]],[[1,2,2,1],[0,4,2,0],[1,2,3,2],[1,2,1,0]],[[1,2,2,2],[0,3,2,0],[1,2,3,2],[1,2,1,0]],[[1,2,3,1],[0,3,2,0],[1,2,3,2],[1,2,1,0]],[[1,3,2,1],[0,3,2,0],[1,2,3,2],[1,2,1,0]],[[2,2,2,1],[0,3,2,0],[1,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,4,2,0],[1,2,3,2],[1,2,0,1]],[[1,2,2,2],[0,3,2,0],[1,2,3,2],[1,2,0,1]],[[1,2,3,1],[0,3,2,0],[1,2,3,2],[1,2,0,1]],[[1,3,2,1],[0,3,2,0],[1,2,3,2],[1,2,0,1]],[[2,2,2,1],[0,3,2,0],[1,2,3,2],[1,2,0,1]],[[1,2,2,1],[0,4,2,0],[1,2,3,2],[1,1,2,0]],[[1,2,2,2],[0,3,2,0],[1,2,3,2],[1,1,2,0]],[[1,2,3,1],[0,3,2,0],[1,2,3,2],[1,1,2,0]],[[1,3,2,1],[0,3,2,0],[1,2,3,2],[1,1,2,0]],[[2,2,2,1],[0,3,2,0],[1,2,3,2],[1,1,2,0]],[[1,2,2,1],[0,4,2,0],[1,2,3,2],[1,1,1,1]],[[1,2,2,2],[0,3,2,0],[1,2,3,2],[1,1,1,1]],[[1,2,3,1],[0,3,2,0],[1,2,3,2],[1,1,1,1]],[[1,3,2,1],[0,3,2,0],[1,2,3,2],[1,1,1,1]],[[2,2,2,1],[0,3,2,0],[1,2,3,2],[1,1,1,1]],[[1,2,2,1],[0,4,2,0],[1,2,3,1],[1,2,1,1]],[[1,2,2,2],[0,3,2,0],[1,2,3,1],[1,2,1,1]],[[1,2,3,1],[0,3,2,0],[1,2,3,1],[1,2,1,1]],[[1,3,2,1],[0,3,2,0],[1,2,3,1],[1,2,1,1]],[[2,2,2,1],[0,3,2,0],[1,2,3,1],[1,2,1,1]],[[1,2,2,1],[0,4,2,0],[1,2,3,1],[1,1,2,1]],[[1,2,2,2],[0,3,2,0],[1,2,3,1],[1,1,2,1]],[[1,2,3,1],[0,3,2,0],[1,2,3,1],[1,1,2,1]],[[1,3,2,1],[0,3,2,0],[1,2,3,1],[1,1,2,1]],[[2,2,2,1],[0,3,2,0],[1,2,3,1],[1,1,2,1]],[[1,2,2,1],[0,4,2,0],[1,1,3,2],[1,2,2,0]],[[1,2,2,2],[0,3,2,0],[1,1,3,2],[1,2,2,0]],[[1,2,3,1],[0,3,2,0],[1,1,3,2],[1,2,2,0]],[[1,3,2,1],[0,3,2,0],[1,1,3,2],[1,2,2,0]],[[2,2,2,1],[0,3,2,0],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,4,2,0],[1,1,3,2],[1,2,1,1]],[[1,2,2,2],[0,3,2,0],[1,1,3,2],[1,2,1,1]],[[1,2,3,1],[0,3,2,0],[1,1,3,2],[1,2,1,1]],[[1,3,2,1],[0,3,2,0],[1,1,3,2],[1,2,1,1]],[[2,2,2,1],[0,3,2,0],[1,1,3,2],[1,2,1,1]],[[1,2,2,1],[0,4,2,0],[1,1,3,1],[1,2,2,1]],[[1,2,2,2],[0,3,2,0],[1,1,3,1],[1,2,2,1]],[[1,2,3,1],[0,3,2,0],[1,1,3,1],[1,2,2,1]],[[1,3,2,1],[0,3,2,0],[1,1,3,1],[1,2,2,1]],[[2,2,2,1],[0,3,2,0],[1,1,3,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,1],[0,3,1,3],[2,3,3,2],[0,0,0,1]],[[1,2,2,1],[0,4,1,2],[2,3,3,2],[0,0,0,1]],[[1,2,2,2],[0,3,1,2],[2,3,3,2],[0,0,0,1]],[[1,2,3,1],[0,3,1,2],[2,3,3,2],[0,0,0,1]],[[1,3,2,1],[0,3,1,2],[2,3,3,2],[0,0,0,1]],[[2,2,2,1],[0,3,1,2],[2,3,3,2],[0,0,0,1]],[[1,2,2,1],[0,3,1,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,1],[0,3,1,2],[2,4,3,1],[1,1,0,0]],[[1,2,2,1],[0,3,1,2],[3,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,3,1,3],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,4,1,2],[2,3,3,1],[1,1,0,0]],[[1,2,2,2],[0,3,1,2],[2,3,3,1],[1,1,0,0]],[[1,2,3,1],[0,3,1,2],[2,3,3,1],[1,1,0,0]],[[1,3,2,1],[0,3,1,2],[2,3,3,1],[1,1,0,0]],[[2,2,2,1],[0,3,1,2],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,3,1,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,1],[0,3,1,2],[3,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,3,1,3],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,4,1,2],[2,3,3,1],[0,2,0,0]],[[1,2,2,2],[0,3,1,2],[2,3,3,1],[0,2,0,0]],[[1,2,3,1],[0,3,1,2],[2,3,3,1],[0,2,0,0]],[[1,3,2,1],[0,3,1,2],[2,3,3,1],[0,2,0,0]],[[2,2,2,1],[0,3,1,2],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,3,1,3],[2,3,3,1],[0,0,2,0]],[[1,2,2,1],[0,4,1,2],[2,3,3,1],[0,0,2,0]],[[1,2,2,2],[0,3,1,2],[2,3,3,1],[0,0,2,0]],[[1,2,3,1],[0,3,1,2],[2,3,3,1],[0,0,2,0]],[[1,3,2,1],[0,3,1,2],[2,3,3,1],[0,0,2,0]],[[2,2,2,1],[0,3,1,2],[2,3,3,1],[0,0,2,0]],[[1,2,2,1],[0,3,1,3],[2,3,3,1],[0,0,1,1]],[[1,2,2,1],[0,4,1,2],[2,3,3,1],[0,0,1,1]],[[1,2,2,2],[0,3,1,2],[2,3,3,1],[0,0,1,1]],[[1,2,3,1],[0,3,1,2],[2,3,3,1],[0,0,1,1]],[[1,3,2,1],[0,3,1,2],[2,3,3,1],[0,0,1,1]],[[2,2,2,1],[0,3,1,2],[2,3,3,1],[0,0,1,1]],[[1,2,2,1],[0,3,1,3],[2,3,3,0],[0,0,2,1]],[[1,2,2,1],[0,4,1,2],[2,3,3,0],[0,0,2,1]],[[1,2,2,2],[0,3,1,2],[2,3,3,0],[0,0,2,1]],[[1,2,3,1],[0,3,1,2],[2,3,3,0],[0,0,2,1]],[[1,3,2,1],[0,3,1,2],[2,3,3,0],[0,0,2,1]],[[2,2,2,1],[0,3,1,2],[2,3,3,0],[0,0,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,1],[0,3,1,3],[2,3,2,2],[0,0,2,0]],[[1,2,2,1],[0,4,1,2],[2,3,2,2],[0,0,2,0]],[[1,2,2,2],[0,3,1,2],[2,3,2,2],[0,0,2,0]],[[1,2,3,1],[0,3,1,2],[2,3,2,2],[0,0,2,0]],[[1,3,2,1],[0,3,1,2],[2,3,2,2],[0,0,2,0]],[[2,2,2,1],[0,3,1,2],[2,3,2,2],[0,0,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,2,2],[0,0,1,2]],[[1,2,2,1],[0,3,1,2],[2,3,2,3],[0,0,1,1]],[[1,2,2,1],[0,3,1,3],[2,3,2,2],[0,0,1,1]],[[1,2,2,1],[0,4,1,2],[2,3,2,2],[0,0,1,1]],[[1,2,2,2],[0,3,1,2],[2,3,2,2],[0,0,1,1]],[[1,2,3,1],[0,3,1,2],[2,3,2,2],[0,0,1,1]],[[1,3,2,1],[0,3,1,2],[2,3,2,2],[0,0,1,1]],[[2,2,2,1],[0,3,1,2],[2,3,2,2],[0,0,1,1]],[[1,2,2,1],[0,3,1,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,1],[0,3,1,2],[2,4,2,1],[1,2,0,0]],[[1,2,2,1],[0,3,1,2],[3,3,2,1],[1,2,0,0]],[[1,2,2,1],[0,3,1,3],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[0,4,1,2],[2,3,2,1],[1,2,0,0]],[[1,2,2,2],[0,3,1,2],[2,3,2,1],[1,2,0,0]],[[1,2,3,1],[0,3,1,2],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[0,3,1,2],[2,3,2,1],[1,2,0,0]],[[2,2,2,1],[0,3,1,2],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[0,3,1,2],[2,3,2,1],[2,1,1,0]],[[1,2,2,1],[0,3,1,2],[2,4,2,1],[1,1,1,0]],[[1,2,2,1],[0,3,1,2],[3,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,3,1,3],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,4,1,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,2],[0,3,1,2],[2,3,2,1],[1,1,1,0]],[[1,2,3,1],[0,3,1,2],[2,3,2,1],[1,1,1,0]],[[1,3,2,1],[0,3,1,2],[2,3,2,1],[1,1,1,0]],[[2,2,2,1],[0,3,1,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,3,1,2],[2,3,2,1],[2,1,0,1]],[[1,2,2,1],[0,3,1,2],[2,4,2,1],[1,1,0,1]],[[1,2,2,1],[0,3,1,2],[3,3,2,1],[1,1,0,1]],[[1,2,2,1],[0,3,1,3],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[0,4,1,2],[2,3,2,1],[1,1,0,1]],[[1,2,2,2],[0,3,1,2],[2,3,2,1],[1,1,0,1]],[[1,2,3,1],[0,3,1,2],[2,3,2,1],[1,1,0,1]],[[1,3,2,1],[0,3,1,2],[2,3,2,1],[1,1,0,1]],[[2,2,2,1],[0,3,1,2],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[0,3,1,2],[2,3,2,1],[2,0,2,0]],[[1,2,2,1],[0,3,1,2],[2,4,2,1],[1,0,2,0]],[[1,2,2,1],[0,3,1,2],[3,3,2,1],[1,0,2,0]],[[1,2,2,1],[0,3,1,3],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[0,4,1,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,2],[0,3,1,2],[2,3,2,1],[1,0,2,0]],[[1,2,3,1],[0,3,1,2],[2,3,2,1],[1,0,2,0]],[[1,3,2,1],[0,3,1,2],[2,3,2,1],[1,0,2,0]],[[2,2,2,1],[0,3,1,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,2,1],[2,0,1,1]],[[1,2,2,1],[0,3,1,2],[2,4,2,1],[1,0,1,1]],[[1,2,2,1],[0,3,1,2],[3,3,2,1],[1,0,1,1]],[[1,2,2,1],[0,3,1,3],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[0,4,1,2],[2,3,2,1],[1,0,1,1]],[[1,2,2,2],[0,3,1,2],[2,3,2,1],[1,0,1,1]],[[1,2,3,1],[0,3,1,2],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[0,3,1,2],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[0,3,1,2],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[0,3,1,2],[2,3,2,1],[0,3,1,0]],[[1,2,2,1],[0,3,1,2],[2,4,2,1],[0,2,1,0]],[[1,2,2,1],[0,3,1,2],[3,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,3,1,3],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,4,1,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,2],[0,3,1,2],[2,3,2,1],[0,2,1,0]],[[1,2,3,1],[0,3,1,2],[2,3,2,1],[0,2,1,0]],[[1,3,2,1],[0,3,1,2],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[0,3,1,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,3,1,2],[2,3,2,1],[0,3,0,1]],[[1,2,2,1],[0,3,1,2],[2,4,2,1],[0,2,0,1]],[[1,2,2,1],[0,3,1,2],[3,3,2,1],[0,2,0,1]],[[1,2,2,1],[0,3,1,3],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[0,4,1,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,2],[0,3,1,2],[2,3,2,1],[0,2,0,1]],[[1,2,3,1],[0,3,1,2],[2,3,2,1],[0,2,0,1]],[[1,3,2,1],[0,3,1,2],[2,3,2,1],[0,2,0,1]],[[2,2,2,1],[0,3,1,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[0,3,1,2],[2,4,2,1],[0,1,2,0]],[[1,2,2,1],[0,3,1,2],[3,3,2,1],[0,1,2,0]],[[1,2,2,1],[0,3,1,3],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[0,4,1,2],[2,3,2,1],[0,1,2,0]],[[1,2,2,2],[0,3,1,2],[2,3,2,1],[0,1,2,0]],[[1,2,3,1],[0,3,1,2],[2,3,2,1],[0,1,2,0]],[[1,3,2,1],[0,3,1,2],[2,3,2,1],[0,1,2,0]],[[2,2,2,1],[0,3,1,2],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[0,3,1,2],[2,4,2,1],[0,1,1,1]],[[1,2,2,1],[0,3,1,2],[3,3,2,1],[0,1,1,1]],[[1,2,2,1],[0,3,1,3],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[0,4,1,2],[2,3,2,1],[0,1,1,1]],[[1,2,2,2],[0,3,1,2],[2,3,2,1],[0,1,1,1]],[[1,2,3,1],[0,3,1,2],[2,3,2,1],[0,1,1,1]],[[1,3,2,1],[0,3,1,2],[2,3,2,1],[0,1,1,1]],[[2,2,2,1],[0,3,1,2],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[0,3,1,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,1],[0,3,1,2],[2,4,2,0],[1,2,0,1]],[[1,2,2,1],[0,3,1,2],[3,3,2,0],[1,2,0,1]],[[1,2,2,1],[0,4,1,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,2],[0,3,1,2],[2,3,2,0],[1,2,0,1]],[[1,2,3,1],[0,3,1,2],[2,3,2,0],[1,2,0,1]],[[1,3,2,1],[0,3,1,2],[2,3,2,0],[1,2,0,1]],[[2,2,2,1],[0,3,1,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[0,3,1,2],[2,3,2,0],[2,1,1,1]],[[1,2,2,1],[0,3,1,2],[2,4,2,0],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[3,3,2,0],[1,1,1,1]],[[1,2,2,1],[0,3,1,3],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[0,4,1,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,2],[0,3,1,2],[2,3,2,0],[1,1,1,1]],[[1,2,3,1],[0,3,1,2],[2,3,2,0],[1,1,1,1]],[[1,3,2,1],[0,3,1,2],[2,3,2,0],[1,1,1,1]],[[2,2,2,1],[0,3,1,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[2,3,2,0],[2,0,2,1]],[[1,2,2,1],[0,3,1,2],[2,4,2,0],[1,0,2,1]],[[1,2,2,1],[0,3,1,2],[3,3,2,0],[1,0,2,1]],[[1,2,2,1],[0,3,1,3],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[0,4,1,2],[2,3,2,0],[1,0,2,1]],[[1,2,2,2],[0,3,1,2],[2,3,2,0],[1,0,2,1]],[[1,2,3,1],[0,3,1,2],[2,3,2,0],[1,0,2,1]],[[1,3,2,1],[0,3,1,2],[2,3,2,0],[1,0,2,1]],[[2,2,2,1],[0,3,1,2],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,2,0],[0,3,1,1]],[[1,2,2,1],[0,3,1,2],[2,4,2,0],[0,2,1,1]],[[1,2,2,1],[0,3,1,2],[3,3,2,0],[0,2,1,1]],[[1,2,2,1],[0,3,1,3],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[0,4,1,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,2],[0,3,1,2],[2,3,2,0],[0,2,1,1]],[[1,2,3,1],[0,3,1,2],[2,3,2,0],[0,2,1,1]],[[1,3,2,1],[0,3,1,2],[2,3,2,0],[0,2,1,1]],[[2,2,2,1],[0,3,1,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[0,3,1,2],[2,4,2,0],[0,1,2,1]],[[1,2,2,1],[0,3,1,2],[3,3,2,0],[0,1,2,1]],[[1,2,2,1],[0,3,1,3],[2,3,2,0],[0,1,2,1]],[[1,2,2,1],[0,4,1,2],[2,3,2,0],[0,1,2,1]],[[1,2,2,2],[0,3,1,2],[2,3,2,0],[0,1,2,1]],[[1,2,3,1],[0,3,1,2],[2,3,2,0],[0,1,2,1]],[[1,3,2,1],[0,3,1,2],[2,3,2,0],[0,1,2,1]],[[2,2,2,1],[0,3,1,2],[2,3,2,0],[0,1,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,1],[0,3,1,2],[2,4,1,2],[1,2,0,0]],[[1,2,2,1],[0,3,1,2],[3,3,1,2],[1,2,0,0]],[[1,2,2,1],[0,3,1,3],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[0,4,1,2],[2,3,1,2],[1,2,0,0]],[[1,2,2,2],[0,3,1,2],[2,3,1,2],[1,2,0,0]],[[1,2,3,1],[0,3,1,2],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[0,3,1,2],[2,3,1,2],[1,2,0,0]],[[2,2,2,1],[0,3,1,2],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[0,3,1,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,1],[0,3,1,2],[2,3,1,3],[1,1,1,0]],[[1,2,2,1],[0,3,1,2],[2,4,1,2],[1,1,1,0]],[[1,2,2,1],[0,3,1,2],[3,3,1,2],[1,1,1,0]],[[1,2,2,1],[0,3,1,3],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[0,4,1,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,2],[0,3,1,2],[2,3,1,2],[1,1,1,0]],[[1,2,3,1],[0,3,1,2],[2,3,1,2],[1,1,1,0]],[[1,3,2,1],[0,3,1,2],[2,3,1,2],[1,1,1,0]],[[2,2,2,1],[0,3,1,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[0,3,1,2],[2,3,1,2],[1,1,0,2]],[[1,2,2,1],[0,3,1,2],[2,3,1,2],[2,1,0,1]],[[1,2,2,1],[0,3,1,2],[2,3,1,3],[1,1,0,1]],[[1,2,2,1],[0,3,1,2],[2,4,1,2],[1,1,0,1]],[[1,2,2,1],[0,3,1,2],[3,3,1,2],[1,1,0,1]],[[1,2,2,1],[0,3,1,3],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[0,4,1,2],[2,3,1,2],[1,1,0,1]],[[1,2,2,2],[0,3,1,2],[2,3,1,2],[1,1,0,1]],[[1,2,3,1],[0,3,1,2],[2,3,1,2],[1,1,0,1]],[[1,3,2,1],[0,3,1,2],[2,3,1,2],[1,1,0,1]],[[2,2,2,1],[0,3,1,2],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[0,3,1,2],[2,3,1,2],[2,0,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,1,3],[1,0,2,0]],[[1,2,2,1],[0,3,1,2],[2,4,1,2],[1,0,2,0]],[[1,2,2,1],[0,3,1,2],[3,3,1,2],[1,0,2,0]],[[1,2,2,1],[0,3,1,3],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[0,4,1,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,2],[0,3,1,2],[2,3,1,2],[1,0,2,0]],[[1,2,3,1],[0,3,1,2],[2,3,1,2],[1,0,2,0]],[[1,3,2,1],[0,3,1,2],[2,3,1,2],[1,0,2,0]],[[2,2,2,1],[0,3,1,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,1,2],[1,0,1,2]],[[1,2,2,1],[0,3,1,2],[2,3,1,2],[2,0,1,1]],[[1,2,2,1],[0,3,1,2],[2,3,1,3],[1,0,1,1]],[[1,2,2,1],[0,3,1,2],[2,4,1,2],[1,0,1,1]],[[1,2,2,1],[0,3,1,2],[3,3,1,2],[1,0,1,1]],[[1,2,2,1],[0,3,1,3],[2,3,1,2],[1,0,1,1]],[[1,2,2,1],[0,4,1,2],[2,3,1,2],[1,0,1,1]],[[1,2,2,2],[0,3,1,2],[2,3,1,2],[1,0,1,1]],[[1,2,3,1],[0,3,1,2],[2,3,1,2],[1,0,1,1]],[[1,3,2,1],[0,3,1,2],[2,3,1,2],[1,0,1,1]],[[2,2,2,1],[0,3,1,2],[2,3,1,2],[1,0,1,1]],[[1,2,2,1],[0,3,1,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,1],[0,3,1,2],[2,3,1,3],[0,2,1,0]],[[1,2,2,1],[0,3,1,2],[2,4,1,2],[0,2,1,0]],[[1,2,2,1],[0,3,1,2],[3,3,1,2],[0,2,1,0]],[[1,2,2,1],[0,3,1,3],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[0,4,1,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,2],[0,3,1,2],[2,3,1,2],[0,2,1,0]],[[1,2,3,1],[0,3,1,2],[2,3,1,2],[0,2,1,0]],[[1,3,2,1],[0,3,1,2],[2,3,1,2],[0,2,1,0]],[[2,2,2,1],[0,3,1,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[0,3,1,2],[2,3,1,2],[0,2,0,2]],[[1,2,2,1],[0,3,1,2],[2,3,1,2],[0,3,0,1]],[[1,2,2,1],[0,3,1,2],[2,3,1,3],[0,2,0,1]],[[1,2,2,1],[0,3,1,2],[2,4,1,2],[0,2,0,1]],[[1,2,2,1],[0,3,1,2],[3,3,1,2],[0,2,0,1]],[[1,2,2,1],[0,3,1,3],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[0,4,1,2],[2,3,1,2],[0,2,0,1]],[[1,2,2,2],[0,3,1,2],[2,3,1,2],[0,2,0,1]],[[1,2,3,1],[0,3,1,2],[2,3,1,2],[0,2,0,1]],[[1,3,2,1],[0,3,1,2],[2,3,1,2],[0,2,0,1]],[[2,2,2,1],[0,3,1,2],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[0,3,1,2],[2,3,1,3],[0,1,2,0]],[[1,2,2,1],[0,3,1,2],[2,4,1,2],[0,1,2,0]],[[1,2,2,1],[0,3,1,2],[3,3,1,2],[0,1,2,0]],[[1,2,2,1],[0,3,1,3],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[0,4,1,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,2],[0,3,1,2],[2,3,1,2],[0,1,2,0]],[[1,2,3,1],[0,3,1,2],[2,3,1,2],[0,1,2,0]],[[1,3,2,1],[0,3,1,2],[2,3,1,2],[0,1,2,0]],[[2,2,2,1],[0,3,1,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,1,2],[0,1,1,2]],[[1,2,2,1],[0,3,1,2],[2,3,1,3],[0,1,1,1]],[[1,2,2,1],[0,3,1,2],[2,4,1,2],[0,1,1,1]],[[1,2,2,1],[0,3,1,2],[3,3,1,2],[0,1,1,1]],[[1,2,2,1],[0,3,1,3],[2,3,1,2],[0,1,1,1]],[[1,2,2,1],[0,4,1,2],[2,3,1,2],[0,1,1,1]],[[1,2,2,2],[0,3,1,2],[2,3,1,2],[0,1,1,1]],[[1,2,3,1],[0,3,1,2],[2,3,1,2],[0,1,1,1]],[[1,3,2,1],[0,3,1,2],[2,3,1,2],[0,1,1,1]],[[2,2,2,1],[0,3,1,2],[2,3,1,2],[0,1,1,1]],[[1,2,2,1],[0,3,1,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,1],[0,3,1,2],[2,4,1,1],[1,1,2,0]],[[1,2,2,1],[0,3,1,2],[3,3,1,1],[1,1,2,0]],[[1,2,2,1],[0,3,1,3],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[0,4,1,2],[2,3,1,1],[1,1,2,0]],[[1,2,2,2],[0,3,1,2],[2,3,1,1],[1,1,2,0]],[[1,2,3,1],[0,3,1,2],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[0,3,1,2],[2,3,1,1],[1,1,2,0]],[[2,2,2,1],[0,3,1,2],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,1,1],[0,2,3,0]],[[1,2,2,1],[0,3,1,2],[2,3,1,1],[0,3,2,0]],[[1,2,2,1],[0,3,1,2],[2,4,1,1],[0,2,2,0]],[[1,2,2,1],[0,3,1,2],[3,3,1,1],[0,2,2,0]],[[1,2,2,1],[0,3,1,3],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[0,4,1,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,2],[0,3,1,2],[2,3,1,1],[0,2,2,0]],[[1,2,3,1],[0,3,1,2],[2,3,1,1],[0,2,2,0]],[[1,3,2,1],[0,3,1,2],[2,3,1,1],[0,2,2,0]],[[2,2,2,1],[0,3,1,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,1,0],[2,1,2,1]],[[1,2,2,1],[0,3,1,2],[2,4,1,0],[1,1,2,1]],[[1,2,2,1],[0,3,1,2],[3,3,1,0],[1,1,2,1]],[[1,2,2,1],[0,3,1,3],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[0,4,1,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,2],[0,3,1,2],[2,3,1,0],[1,1,2,1]],[[1,2,3,1],[0,3,1,2],[2,3,1,0],[1,1,2,1]],[[1,3,2,1],[0,3,1,2],[2,3,1,0],[1,1,2,1]],[[2,2,2,1],[0,3,1,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,1,0],[0,2,2,2]],[[1,2,2,1],[0,3,1,2],[2,3,1,0],[0,2,3,1]],[[1,2,2,1],[0,3,1,2],[2,3,1,0],[0,3,2,1]],[[1,2,2,1],[0,3,1,2],[2,4,1,0],[0,2,2,1]],[[1,2,2,1],[0,3,1,2],[3,3,1,0],[0,2,2,1]],[[1,2,2,1],[0,3,1,3],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[0,4,1,2],[2,3,1,0],[0,2,2,1]],[[1,2,2,2],[0,3,1,2],[2,3,1,0],[0,2,2,1]],[[1,2,3,1],[0,3,1,2],[2,3,1,0],[0,2,2,1]],[[1,3,2,1],[0,3,1,2],[2,3,1,0],[0,2,2,1]],[[2,2,2,1],[0,3,1,2],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,0,3],[1,1,2,0]],[[1,2,2,1],[0,3,1,2],[2,4,0,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,2],[3,3,0,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,3],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[0,4,1,2],[2,3,0,2],[1,1,2,0]],[[1,2,2,2],[0,3,1,2],[2,3,0,2],[1,1,2,0]],[[1,2,3,1],[0,3,1,2],[2,3,0,2],[1,1,2,0]],[[1,3,2,1],[0,3,1,2],[2,3,0,2],[1,1,2,0]],[[2,2,2,1],[0,3,1,2],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[1,1,1,2]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[2,1,1,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,3],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[2,4,0,2],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[3,3,0,2],[1,1,1,1]],[[1,2,2,1],[0,3,1,3],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[0,4,1,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,2],[0,3,1,2],[2,3,0,2],[1,1,1,1]],[[1,2,3,1],[0,3,1,2],[2,3,0,2],[1,1,1,1]],[[1,3,2,1],[0,3,1,2],[2,3,0,2],[1,1,1,1]],[[2,2,2,1],[0,3,1,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[1,0,2,2]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[1,0,3,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[2,0,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,3],[1,0,2,1]],[[1,2,2,1],[0,3,1,2],[2,4,0,2],[1,0,2,1]],[[1,2,2,1],[0,3,1,2],[3,3,0,2],[1,0,2,1]],[[1,2,2,1],[0,3,1,3],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[0,4,1,2],[2,3,0,2],[1,0,2,1]],[[1,2,2,2],[0,3,1,2],[2,3,0,2],[1,0,2,1]],[[1,2,3,1],[0,3,1,2],[2,3,0,2],[1,0,2,1]],[[1,3,2,1],[0,3,1,2],[2,3,0,2],[1,0,2,1]],[[2,2,2,1],[0,3,1,2],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[0,2,3,0]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[0,3,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,0,3],[0,2,2,0]],[[1,2,2,1],[0,3,1,2],[2,4,0,2],[0,2,2,0]],[[1,2,2,1],[0,3,1,2],[3,3,0,2],[0,2,2,0]],[[1,2,2,1],[0,3,1,3],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[0,4,1,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,2],[0,3,1,2],[2,3,0,2],[0,2,2,0]],[[1,2,3,1],[0,3,1,2],[2,3,0,2],[0,2,2,0]],[[1,3,2,1],[0,3,1,2],[2,3,0,2],[0,2,2,0]],[[2,2,2,1],[0,3,1,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[0,2,1,2]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[0,3,1,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,3],[0,2,1,1]],[[1,2,2,1],[0,3,1,2],[2,4,0,2],[0,2,1,1]],[[1,2,2,1],[0,3,1,2],[3,3,0,2],[0,2,1,1]],[[1,2,2,1],[0,3,1,3],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[0,4,1,2],[2,3,0,2],[0,2,1,1]],[[1,2,2,2],[0,3,1,2],[2,3,0,2],[0,2,1,1]],[[1,2,3,1],[0,3,1,2],[2,3,0,2],[0,2,1,1]],[[1,3,2,1],[0,3,1,2],[2,3,0,2],[0,2,1,1]],[[2,2,2,1],[0,3,1,2],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[0,1,2,2]],[[1,2,2,1],[0,3,1,2],[2,3,0,2],[0,1,3,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,3],[0,1,2,1]],[[1,2,2,1],[0,3,1,2],[2,4,0,2],[0,1,2,1]],[[1,2,2,1],[0,3,1,2],[3,3,0,2],[0,1,2,1]],[[1,2,2,1],[0,3,1,3],[2,3,0,2],[0,1,2,1]],[[1,2,2,1],[0,4,1,2],[2,3,0,2],[0,1,2,1]],[[1,2,2,2],[0,3,1,2],[2,3,0,2],[0,1,2,1]],[[1,2,3,1],[0,3,1,2],[2,3,0,2],[0,1,2,1]],[[1,3,2,1],[0,3,1,2],[2,3,0,2],[0,1,2,1]],[[2,2,2,1],[0,3,1,2],[2,3,0,2],[0,1,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,1],[1,3,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,0,1],[2,2,2,0]],[[1,2,2,1],[0,3,1,2],[3,3,0,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,2],[2,3,0,1],[2,1,2,1]],[[1,2,2,1],[0,3,1,2],[2,4,0,1],[1,1,2,1]],[[1,2,2,1],[0,3,1,2],[3,3,0,1],[1,1,2,1]],[[1,2,2,1],[0,3,1,3],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[0,4,1,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,2],[0,3,1,2],[2,3,0,1],[1,1,2,1]],[[1,2,3,1],[0,3,1,2],[2,3,0,1],[1,1,2,1]],[[1,3,2,1],[0,3,1,2],[2,3,0,1],[1,1,2,1]],[[2,2,2,1],[0,3,1,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,1],[0,2,2,2]],[[1,2,2,1],[0,3,1,2],[2,3,0,1],[0,2,3,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,1],[0,3,2,1]],[[1,2,2,1],[0,3,1,2],[2,4,0,1],[0,2,2,1]],[[1,2,2,1],[0,3,1,2],[3,3,0,1],[0,2,2,1]],[[1,2,2,1],[0,3,1,3],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[0,4,1,2],[2,3,0,1],[0,2,2,1]],[[1,2,2,2],[0,3,1,2],[2,3,0,1],[0,2,2,1]],[[1,2,3,1],[0,3,1,2],[2,3,0,1],[0,2,2,1]],[[1,3,2,1],[0,3,1,2],[2,3,0,1],[0,2,2,1]],[[2,2,2,1],[0,3,1,2],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,2],[2,3,0,0],[2,2,2,1]],[[1,2,2,1],[0,3,1,2],[3,3,0,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[0,3,1,3],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[0,4,1,2],[2,2,3,2],[1,0,0,1]],[[1,2,2,2],[0,3,1,2],[2,2,3,2],[1,0,0,1]],[[1,2,3,1],[0,3,1,2],[2,2,3,2],[1,0,0,1]],[[1,3,2,1],[0,3,1,2],[2,2,3,2],[1,0,0,1]],[[2,2,2,1],[0,3,1,2],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[0,3,1,2],[2,2,3,3],[0,1,0,1]],[[1,2,2,1],[0,3,1,3],[2,2,3,2],[0,1,0,1]],[[1,2,2,1],[0,4,1,2],[2,2,3,2],[0,1,0,1]],[[1,2,2,2],[0,3,1,2],[2,2,3,2],[0,1,0,1]],[[1,2,3,1],[0,3,1,2],[2,2,3,2],[0,1,0,1]],[[1,3,2,1],[0,3,1,2],[2,2,3,2],[0,1,0,1]],[[2,2,2,1],[0,3,1,2],[2,2,3,2],[0,1,0,1]],[[1,2,2,1],[0,3,1,3],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[0,4,1,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,2],[0,3,1,2],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[0,3,1,2],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[0,3,1,2],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[0,3,1,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[0,3,1,3],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[0,4,1,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,2],[0,3,1,2],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[0,3,1,2],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[0,3,1,2],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[0,3,1,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[0,3,1,3],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[0,4,1,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,2],[0,3,1,2],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[0,3,1,2],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[0,3,1,2],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[0,3,1,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[0,3,1,3],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[0,4,1,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,2],[0,3,1,2],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[0,3,1,2],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[0,3,1,2],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[0,3,1,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[0,3,1,3],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[0,4,1,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[0,3,1,2],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[0,3,1,2],[2,2,3,1],[0,2,1,0]],[[1,3,2,1],[0,3,1,2],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[0,3,1,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[0,3,1,3],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[0,4,1,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,2],[0,3,1,2],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[0,3,1,2],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[0,3,1,2],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[0,3,1,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[0,3,1,3],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[0,4,1,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,2],[0,3,1,2],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[0,3,1,2],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[0,3,1,2],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[0,3,1,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[0,3,1,3],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[0,4,1,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,2],[0,3,1,2],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[0,3,1,2],[2,2,3,1],[0,1,1,1]],[[1,3,2,1],[0,3,1,2],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[0,3,1,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[0,3,1,3],[2,2,3,1],[0,0,2,1]],[[1,2,2,1],[0,4,1,2],[2,2,3,1],[0,0,2,1]],[[1,2,2,2],[0,3,1,2],[2,2,3,1],[0,0,2,1]],[[1,2,3,1],[0,3,1,2],[2,2,3,1],[0,0,2,1]],[[1,3,2,1],[0,3,1,2],[2,2,3,1],[0,0,2,1]],[[2,2,2,1],[0,3,1,2],[2,2,3,1],[0,0,2,1]],[[1,2,2,1],[0,3,1,3],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[0,4,1,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,2],[0,3,1,2],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[0,3,1,2],[2,2,3,0],[1,1,1,1]],[[1,3,2,1],[0,3,1,2],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[0,3,1,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[0,3,1,3],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[0,4,1,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,2],[0,3,1,2],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[0,3,1,2],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[0,3,1,2],[2,2,3,0],[1,0,2,1]],[[2,2,2,1],[0,3,1,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[0,3,1,3],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[0,4,1,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,2],[0,3,1,2],[2,2,3,0],[0,2,1,1]],[[1,2,3,1],[0,3,1,2],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[0,3,1,2],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[0,3,1,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[0,3,1,3],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[0,4,1,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,2],[0,3,1,2],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[0,3,1,2],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[0,3,1,2],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[0,3,1,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[0,3,1,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,1],[0,3,1,3],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[0,4,1,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[0,3,1,2],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[0,3,1,2],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[0,3,1,2],[2,2,2,2],[1,1,1,0]],[[2,2,2,1],[0,3,1,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[0,3,1,2],[2,2,2,2],[1,1,0,2]],[[1,2,2,1],[0,3,1,2],[2,2,2,3],[1,1,0,1]],[[1,2,2,1],[0,3,1,3],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[0,4,1,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[0,3,1,2],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[0,3,1,2],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[0,3,1,2],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[0,3,1,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[0,3,1,2],[2,2,2,3],[1,0,2,0]],[[1,2,2,1],[0,3,1,3],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[0,4,1,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[0,3,1,2],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[0,3,1,2],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[0,3,1,2],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[0,3,1,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[0,3,1,2],[2,2,2,2],[1,0,1,2]],[[1,2,2,1],[0,3,1,2],[2,2,2,3],[1,0,1,1]],[[1,2,2,1],[0,3,1,3],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[0,4,1,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[0,3,1,2],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[0,3,1,2],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[0,3,1,2],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[0,3,1,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[0,3,1,2],[2,2,2,3],[0,2,1,0]],[[1,2,2,1],[0,3,1,3],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[0,4,1,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[0,3,1,2],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[0,3,1,2],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[0,3,1,2],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[0,3,1,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,1,2],[2,2,2,2],[0,2,0,2]],[[1,2,2,1],[0,3,1,2],[2,2,2,3],[0,2,0,1]],[[1,2,2,1],[0,3,1,3],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[0,4,1,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[0,3,1,2],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[0,3,1,2],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[0,3,1,2],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[0,3,1,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[0,3,1,2],[2,2,2,3],[0,1,2,0]],[[1,2,2,1],[0,3,1,3],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[0,4,1,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[0,3,1,2],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[0,3,1,2],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[0,3,1,2],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[0,3,1,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[0,3,1,2],[2,2,2,2],[0,1,1,2]],[[1,2,2,1],[0,3,1,2],[2,2,2,3],[0,1,1,1]],[[1,2,2,1],[0,3,1,3],[2,2,2,2],[0,1,1,1]],[[0,3,2,0],[2,3,3,2],[0,0,1,2],[1,2,2,1]],[[0,2,3,0],[2,3,3,2],[0,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,4,2],[0,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,3,3],[0,0,1,2],[1,2,2,1]],[[0,2,2,0],[2,3,3,2],[0,0,1,3],[1,2,2,1]],[[0,2,2,0],[2,3,3,2],[0,0,1,2],[1,2,3,1]],[[0,2,2,0],[2,3,3,2],[0,0,1,2],[1,2,2,2]],[[0,3,2,0],[2,3,3,2],[0,0,2,2],[1,2,1,1]],[[0,2,3,0],[2,3,3,2],[0,0,2,2],[1,2,1,1]],[[0,2,2,0],[2,3,4,2],[0,0,2,2],[1,2,1,1]],[[0,2,2,0],[2,3,3,3],[0,0,2,2],[1,2,1,1]],[[0,2,2,0],[2,3,3,2],[0,0,2,3],[1,2,1,1]],[[0,2,2,0],[2,3,3,2],[0,0,2,2],[1,2,1,2]],[[0,3,2,0],[2,3,3,2],[0,0,2,2],[1,2,2,0]],[[0,2,3,0],[2,3,3,2],[0,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,4,2],[0,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,3,3],[0,0,2,2],[1,2,2,0]],[[0,2,2,0],[2,3,3,2],[0,0,2,3],[1,2,2,0]],[[0,3,2,0],[2,3,3,2],[0,0,3,0],[1,2,2,1]],[[0,2,3,0],[2,3,3,2],[0,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,3,4,2],[0,0,3,0],[1,2,2,1]],[[0,2,2,0],[2,3,3,3],[0,0,3,0],[1,2,2,1]],[[0,3,2,0],[2,3,3,2],[0,0,3,1],[1,2,1,1]],[[0,2,3,0],[2,3,3,2],[0,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,4,2],[0,0,3,1],[1,2,1,1]],[[0,2,2,0],[2,3,3,3],[0,0,3,1],[1,2,1,1]],[[0,3,2,0],[2,3,3,2],[0,0,3,1],[1,2,2,0]],[[0,2,3,0],[2,3,3,2],[0,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,3,4,2],[0,0,3,1],[1,2,2,0]],[[0,2,2,0],[2,3,3,3],[0,0,3,1],[1,2,2,0]],[[0,3,2,0],[2,3,3,2],[0,0,3,2],[1,0,2,1]],[[0,2,3,0],[2,3,3,2],[0,0,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,4,2],[0,0,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,3,3],[0,0,3,2],[1,0,2,1]],[[0,2,2,0],[2,3,3,2],[0,0,3,3],[1,0,2,1]],[[0,2,2,0],[2,3,3,2],[0,0,3,2],[1,0,2,2]],[[0,3,2,0],[2,3,3,2],[0,0,3,2],[1,1,1,1]],[[0,2,3,0],[2,3,3,2],[0,0,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,4,2],[0,0,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,3,3],[0,0,3,2],[1,1,1,1]],[[0,2,2,0],[2,3,3,2],[0,0,3,3],[1,1,1,1]],[[0,2,2,0],[2,3,3,2],[0,0,3,2],[1,1,1,2]],[[0,3,2,0],[2,3,3,2],[0,0,3,2],[1,1,2,0]],[[0,2,3,0],[2,3,3,2],[0,0,3,2],[1,1,2,0]],[[0,2,2,0],[2,3,4,2],[0,0,3,2],[1,1,2,0]],[[0,2,2,0],[2,3,3,3],[0,0,3,2],[1,1,2,0]],[[0,2,2,0],[2,3,3,2],[0,0,3,3],[1,1,2,0]],[[1,2,2,1],[0,4,1,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[0,3,1,2],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[0,3,1,2],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[0,3,1,2],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[0,3,1,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[0,3,1,2],[2,2,2,2],[0,0,2,2]],[[1,2,2,1],[0,3,1,2],[2,2,2,3],[0,0,2,1]],[[0,3,2,0],[2,3,3,2],[0,1,1,2],[1,1,2,1]],[[0,2,3,0],[2,3,3,2],[0,1,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,4,2],[0,1,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,3,3],[0,1,1,2],[1,1,2,1]],[[0,2,2,0],[2,3,3,2],[0,1,1,3],[1,1,2,1]],[[0,2,2,0],[2,3,3,2],[0,1,1,2],[1,1,2,2]],[[0,3,2,0],[2,3,3,2],[0,1,2,2],[1,0,2,1]],[[0,2,3,0],[2,3,3,2],[0,1,2,2],[1,0,2,1]],[[0,2,2,0],[2,3,4,2],[0,1,2,2],[1,0,2,1]],[[0,2,2,0],[2,3,3,3],[0,1,2,2],[1,0,2,1]],[[0,2,2,0],[2,3,3,2],[0,1,2,3],[1,0,2,1]],[[0,2,2,0],[2,3,3,2],[0,1,2,2],[1,0,2,2]],[[0,3,2,0],[2,3,3,2],[0,1,2,2],[1,1,1,1]],[[0,2,3,0],[2,3,3,2],[0,1,2,2],[1,1,1,1]],[[0,2,2,0],[2,3,4,2],[0,1,2,2],[1,1,1,1]],[[0,2,2,0],[2,3,3,3],[0,1,2,2],[1,1,1,1]],[[0,2,2,0],[2,3,3,2],[0,1,2,3],[1,1,1,1]],[[0,2,2,0],[2,3,3,2],[0,1,2,2],[1,1,1,2]],[[0,3,2,0],[2,3,3,2],[0,1,2,2],[1,1,2,0]],[[0,2,3,0],[2,3,3,2],[0,1,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,4,2],[0,1,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,3,3],[0,1,2,2],[1,1,2,0]],[[0,2,2,0],[2,3,3,2],[0,1,2,3],[1,1,2,0]],[[0,3,2,0],[2,3,3,2],[0,1,2,2],[1,2,0,1]],[[0,2,3,0],[2,3,3,2],[0,1,2,2],[1,2,0,1]],[[0,2,2,0],[2,3,4,2],[0,1,2,2],[1,2,0,1]],[[0,2,2,0],[2,3,3,3],[0,1,2,2],[1,2,0,1]],[[0,2,2,0],[2,3,3,2],[0,1,2,3],[1,2,0,1]],[[0,3,2,0],[2,3,3,2],[0,1,2,2],[1,2,1,0]],[[0,2,3,0],[2,3,3,2],[0,1,2,2],[1,2,1,0]],[[0,2,2,0],[2,3,4,2],[0,1,2,2],[1,2,1,0]],[[0,2,2,0],[2,3,3,3],[0,1,2,2],[1,2,1,0]],[[1,2,2,1],[0,3,1,3],[2,2,2,2],[0,0,2,1]],[[1,2,2,1],[0,4,1,2],[2,2,2,2],[0,0,2,1]],[[1,2,2,2],[0,3,1,2],[2,2,2,2],[0,0,2,1]],[[1,2,3,1],[0,3,1,2],[2,2,2,2],[0,0,2,1]],[[1,3,2,1],[0,3,1,2],[2,2,2,2],[0,0,2,1]],[[2,2,2,1],[0,3,1,2],[2,2,2,2],[0,0,2,1]],[[0,3,2,0],[2,3,3,2],[0,1,3,0],[1,1,2,1]],[[0,2,3,0],[2,3,3,2],[0,1,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,4,2],[0,1,3,0],[1,1,2,1]],[[0,2,2,0],[2,3,3,3],[0,1,3,0],[1,1,2,1]],[[0,3,2,0],[2,3,3,2],[0,1,3,0],[1,2,1,1]],[[0,2,3,0],[2,3,3,2],[0,1,3,0],[1,2,1,1]],[[0,2,2,0],[2,3,4,2],[0,1,3,0],[1,2,1,1]],[[0,3,2,0],[2,3,3,2],[0,1,3,1],[1,0,2,1]],[[0,2,3,0],[2,3,3,2],[0,1,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,4,2],[0,1,3,1],[1,0,2,1]],[[0,2,2,0],[2,3,3,3],[0,1,3,1],[1,0,2,1]],[[0,3,2,0],[2,3,3,2],[0,1,3,1],[1,1,1,1]],[[0,2,3,0],[2,3,3,2],[0,1,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,4,2],[0,1,3,1],[1,1,1,1]],[[0,2,2,0],[2,3,3,3],[0,1,3,1],[1,1,1,1]],[[0,3,2,0],[2,3,3,2],[0,1,3,1],[1,1,2,0]],[[0,2,3,0],[2,3,3,2],[0,1,3,1],[1,1,2,0]],[[0,2,2,0],[2,3,4,2],[0,1,3,1],[1,1,2,0]],[[0,2,2,0],[2,3,3,3],[0,1,3,1],[1,1,2,0]],[[0,3,2,0],[2,3,3,2],[0,1,3,1],[1,2,0,1]],[[0,2,3,0],[2,3,3,2],[0,1,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,4,2],[0,1,3,1],[1,2,0,1]],[[0,2,2,0],[2,3,3,3],[0,1,3,1],[1,2,0,1]],[[0,3,2,0],[2,3,3,2],[0,1,3,1],[1,2,1,0]],[[0,2,3,0],[2,3,3,2],[0,1,3,1],[1,2,1,0]],[[0,2,2,0],[2,3,4,2],[0,1,3,1],[1,2,1,0]],[[0,2,2,0],[2,3,3,3],[0,1,3,1],[1,2,1,0]],[[1,2,2,1],[0,3,1,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,1],[0,3,1,2],[2,2,2,1],[2,2,1,0]],[[1,2,2,1],[0,3,1,2],[3,2,2,1],[1,2,1,0]],[[1,2,2,1],[0,3,1,2],[2,2,2,1],[1,3,0,1]],[[1,2,2,1],[0,3,1,2],[2,2,2,1],[2,2,0,1]],[[1,2,2,1],[0,3,1,2],[3,2,2,1],[1,2,0,1]],[[1,2,2,1],[0,3,1,2],[2,2,2,0],[1,3,1,1]],[[1,2,2,1],[0,3,1,2],[2,2,2,0],[2,2,1,1]],[[1,2,2,1],[0,3,1,2],[3,2,2,0],[1,2,1,1]],[[0,3,2,0],[2,3,3,2],[0,1,3,2],[1,1,0,1]],[[0,2,3,0],[2,3,3,2],[0,1,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,4,2],[0,1,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,3,3],[0,1,3,2],[1,1,0,1]],[[0,2,2,0],[2,3,3,2],[0,1,3,3],[1,1,0,1]],[[1,2,2,1],[0,3,1,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,1],[0,3,1,2],[2,2,1,2],[2,2,1,0]],[[1,2,2,1],[0,3,1,2],[3,2,1,2],[1,2,1,0]],[[1,2,2,1],[0,3,1,2],[2,2,1,2],[1,3,0,1]],[[1,2,2,1],[0,3,1,2],[2,2,1,2],[2,2,0,1]],[[1,2,2,1],[0,3,1,2],[3,2,1,2],[1,2,0,1]],[[1,2,2,1],[0,3,1,2],[2,2,1,2],[1,0,2,2]],[[1,2,2,1],[0,3,1,2],[2,2,1,2],[1,0,3,1]],[[1,2,2,1],[0,3,1,2],[2,2,1,3],[1,0,2,1]],[[1,2,2,1],[0,3,1,3],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[0,4,1,2],[2,2,1,2],[1,0,2,1]],[[1,2,2,2],[0,3,1,2],[2,2,1,2],[1,0,2,1]],[[1,2,3,1],[0,3,1,2],[2,2,1,2],[1,0,2,1]],[[1,3,2,1],[0,3,1,2],[2,2,1,2],[1,0,2,1]],[[2,2,2,1],[0,3,1,2],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[0,3,1,2],[2,2,1,2],[0,1,2,2]],[[1,2,2,1],[0,3,1,2],[2,2,1,2],[0,1,3,1]],[[1,2,2,1],[0,3,1,2],[2,2,1,3],[0,1,2,1]],[[1,2,2,1],[0,3,1,3],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[0,4,1,2],[2,2,1,2],[0,1,2,1]],[[1,2,2,2],[0,3,1,2],[2,2,1,2],[0,1,2,1]],[[1,2,3,1],[0,3,1,2],[2,2,1,2],[0,1,2,1]],[[1,3,2,1],[0,3,1,2],[2,2,1,2],[0,1,2,1]],[[2,2,2,1],[0,3,1,2],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[0,3,1,2],[2,2,1,1],[1,2,3,0]],[[1,2,2,1],[0,3,1,2],[2,2,1,1],[1,3,2,0]],[[1,2,2,1],[0,3,1,2],[2,2,1,1],[2,2,2,0]],[[1,2,2,1],[0,3,1,2],[3,2,1,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,2],[2,2,1,0],[1,2,2,2]],[[1,2,2,1],[0,3,1,2],[2,2,1,0],[1,2,3,1]],[[1,2,2,1],[0,3,1,2],[2,2,1,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,2],[2,2,1,0],[2,2,2,1]],[[1,2,2,1],[0,3,1,2],[3,2,1,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[2,2,0,2],[1,2,3,0]],[[1,2,2,1],[0,3,1,2],[2,2,0,2],[1,3,2,0]],[[1,2,2,1],[0,3,1,2],[2,2,0,2],[2,2,2,0]],[[1,2,2,1],[0,3,1,2],[3,2,0,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,2],[2,2,0,2],[1,3,1,1]],[[1,2,2,1],[0,3,1,2],[2,2,0,2],[2,2,1,1]],[[1,2,2,1],[0,3,1,2],[3,2,0,2],[1,2,1,1]],[[1,2,2,1],[0,3,1,2],[2,2,0,2],[0,2,2,2]],[[1,2,2,1],[0,3,1,2],[2,2,0,2],[0,2,3,1]],[[1,2,2,1],[0,3,1,2],[2,2,0,2],[0,3,2,1]],[[1,2,2,1],[0,3,1,2],[2,2,0,3],[0,2,2,1]],[[1,2,2,1],[0,3,1,3],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[0,4,1,2],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[0,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[0,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[0,3,1,2],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[0,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[0,3,1,2],[2,2,0,1],[1,2,2,2]],[[1,2,2,1],[0,3,1,2],[2,2,0,1],[1,2,3,1]],[[1,2,2,1],[0,3,1,2],[2,2,0,1],[1,3,2,1]],[[1,2,2,1],[0,3,1,2],[2,2,0,1],[2,2,2,1]],[[1,2,2,1],[0,3,1,2],[3,2,0,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,3],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,4,1,2],[2,1,3,1],[0,2,2,0]],[[1,2,2,2],[0,3,1,2],[2,1,3,1],[0,2,2,0]],[[1,2,3,1],[0,3,1,2],[2,1,3,1],[0,2,2,0]],[[1,3,2,1],[0,3,1,2],[2,1,3,1],[0,2,2,0]],[[2,2,2,1],[0,3,1,2],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,3,1,3],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[0,4,1,2],[2,1,3,1],[0,2,1,1]],[[1,2,2,2],[0,3,1,2],[2,1,3,1],[0,2,1,1]],[[1,2,3,1],[0,3,1,2],[2,1,3,1],[0,2,1,1]],[[1,3,2,1],[0,3,1,2],[2,1,3,1],[0,2,1,1]],[[2,2,2,1],[0,3,1,2],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[0,3,1,3],[2,1,3,0],[0,2,2,1]],[[1,2,2,1],[0,4,1,2],[2,1,3,0],[0,2,2,1]],[[1,2,2,2],[0,3,1,2],[2,1,3,0],[0,2,2,1]],[[1,2,3,1],[0,3,1,2],[2,1,3,0],[0,2,2,1]],[[1,3,2,1],[0,3,1,2],[2,1,3,0],[0,2,2,1]],[[2,2,2,1],[0,3,1,2],[2,1,3,0],[0,2,2,1]],[[1,2,2,1],[0,3,1,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,1],[0,3,1,3],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[0,4,1,2],[2,1,2,2],[0,2,2,0]],[[1,2,2,2],[0,3,1,2],[2,1,2,2],[0,2,2,0]],[[1,2,3,1],[0,3,1,2],[2,1,2,2],[0,2,2,0]],[[1,3,2,1],[0,3,1,2],[2,1,2,2],[0,2,2,0]],[[2,2,2,1],[0,3,1,2],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[0,3,1,2],[2,1,2,2],[0,2,1,2]],[[1,2,2,1],[0,3,1,2],[2,1,2,3],[0,2,1,1]],[[1,2,2,1],[0,3,1,3],[2,1,2,2],[0,2,1,1]],[[1,2,2,1],[0,4,1,2],[2,1,2,2],[0,2,1,1]],[[1,2,2,2],[0,3,1,2],[2,1,2,2],[0,2,1,1]],[[1,2,3,1],[0,3,1,2],[2,1,2,2],[0,2,1,1]],[[1,3,2,1],[0,3,1,2],[2,1,2,2],[0,2,1,1]],[[2,2,2,1],[0,3,1,2],[2,1,2,2],[0,2,1,1]],[[1,2,2,1],[0,3,1,2],[2,1,1,2],[0,2,2,2]],[[1,2,2,1],[0,3,1,2],[2,1,1,2],[0,2,3,1]],[[1,2,2,1],[0,3,1,2],[2,1,1,2],[0,3,2,1]],[[1,2,2,1],[0,3,1,2],[2,1,1,3],[0,2,2,1]],[[1,2,2,1],[0,3,1,3],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[0,4,1,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,2],[0,3,1,2],[2,1,1,2],[0,2,2,1]],[[1,2,3,1],[0,3,1,2],[2,1,1,2],[0,2,2,1]],[[1,3,2,1],[0,3,1,2],[2,1,1,2],[0,2,2,1]],[[2,2,2,1],[0,3,1,2],[2,1,1,2],[0,2,2,1]],[[0,3,2,0],[2,3,3,2],[0,3,0,0],[1,2,2,1]],[[0,2,3,0],[2,3,3,2],[0,3,0,0],[1,2,2,1]],[[0,2,2,0],[3,3,3,2],[0,3,0,0],[1,2,2,1]],[[0,2,2,0],[2,4,3,2],[0,3,0,0],[1,2,2,1]],[[0,3,2,0],[2,3,3,2],[0,3,0,1],[1,2,2,0]],[[0,2,3,0],[2,3,3,2],[0,3,0,1],[1,2,2,0]],[[0,2,2,0],[3,3,3,2],[0,3,0,1],[1,2,2,0]],[[0,2,2,0],[2,4,3,2],[0,3,0,1],[1,2,2,0]],[[0,3,2,0],[2,3,3,2],[0,3,0,2],[1,1,1,1]],[[0,2,3,0],[2,3,3,2],[0,3,0,2],[1,1,1,1]],[[0,2,2,0],[2,4,3,2],[0,3,0,2],[1,1,1,1]],[[0,3,2,0],[2,3,3,2],[0,3,0,2],[1,1,2,0]],[[0,2,3,0],[2,3,3,2],[0,3,0,2],[1,1,2,0]],[[0,2,2,0],[2,4,3,2],[0,3,0,2],[1,1,2,0]],[[0,3,2,0],[2,3,3,2],[0,3,0,2],[1,2,0,1]],[[0,2,3,0],[2,3,3,2],[0,3,0,2],[1,2,0,1]],[[0,2,2,0],[3,3,3,2],[0,3,0,2],[1,2,0,1]],[[0,2,2,0],[2,4,3,2],[0,3,0,2],[1,2,0,1]],[[0,3,2,0],[2,3,3,2],[0,3,0,2],[1,2,1,0]],[[0,2,3,0],[2,3,3,2],[0,3,0,2],[1,2,1,0]],[[0,2,2,0],[3,3,3,2],[0,3,0,2],[1,2,1,0]],[[0,2,2,0],[2,4,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,2,1],[0,3,1,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,2],[2,1,0,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,2],[2,1,0,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,2],[2,1,0,2],[2,2,2,1]],[[1,2,2,1],[0,3,1,2],[2,1,0,3],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[3,1,0,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,3],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[0,4,1,2],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[0,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[0,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[0,3,1,2],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[0,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,3,2,0],[2,3,3,2],[0,3,1,0],[1,1,2,1]],[[0,2,3,0],[2,3,3,2],[0,3,1,0],[1,1,2,1]],[[0,2,2,0],[2,4,3,2],[0,3,1,0],[1,1,2,1]],[[0,3,2,0],[2,3,3,2],[0,3,1,0],[1,2,1,1]],[[0,2,3,0],[2,3,3,2],[0,3,1,0],[1,2,1,1]],[[0,2,2,0],[3,3,3,2],[0,3,1,0],[1,2,1,1]],[[0,2,2,0],[2,4,3,2],[0,3,1,0],[1,2,1,1]],[[0,3,2,0],[2,3,3,2],[0,3,1,1],[1,1,1,1]],[[0,2,3,0],[2,3,3,2],[0,3,1,1],[1,1,1,1]],[[0,2,2,0],[2,4,3,2],[0,3,1,1],[1,1,1,1]],[[0,3,2,0],[2,3,3,2],[0,3,1,1],[1,1,2,0]],[[0,2,3,0],[2,3,3,2],[0,3,1,1],[1,1,2,0]],[[0,2,2,0],[2,4,3,2],[0,3,1,1],[1,1,2,0]],[[0,3,2,0],[2,3,3,2],[0,3,1,1],[1,2,0,1]],[[0,2,3,0],[2,3,3,2],[0,3,1,1],[1,2,0,1]],[[0,2,2,0],[3,3,3,2],[0,3,1,1],[1,2,0,1]],[[0,2,2,0],[2,4,3,2],[0,3,1,1],[1,2,0,1]],[[0,3,2,0],[2,3,3,2],[0,3,1,1],[1,2,1,0]],[[0,2,3,0],[2,3,3,2],[0,3,1,1],[1,2,1,0]],[[0,2,2,0],[3,3,3,2],[0,3,1,1],[1,2,1,0]],[[0,2,2,0],[2,4,3,2],[0,3,1,1],[1,2,1,0]],[[1,2,2,1],[0,3,1,3],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[0,4,1,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[0,3,1,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[0,3,1,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[0,3,1,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[0,3,1,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,3],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[0,4,1,2],[2,0,3,1],[1,2,1,1]],[[1,2,2,2],[0,3,1,2],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[0,3,1,2],[2,0,3,1],[1,2,1,1]],[[1,3,2,1],[0,3,1,2],[2,0,3,1],[1,2,1,1]],[[2,2,2,1],[0,3,1,2],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[0,3,1,3],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[0,4,1,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[0,3,1,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[0,3,1,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[0,3,1,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[0,3,1,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[2,0,2,3],[1,2,2,0]],[[1,2,2,1],[0,3,1,3],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[0,4,1,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[0,3,1,2],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[0,3,1,2],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[0,3,1,2],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[0,3,1,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,2],[2,0,2,2],[1,2,1,2]],[[1,2,2,1],[0,3,1,2],[2,0,2,3],[1,2,1,1]],[[1,2,2,1],[0,3,1,3],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[0,4,1,2],[2,0,2,2],[1,2,1,1]],[[0,3,2,0],[2,3,3,2],[0,3,2,1],[1,2,0,0]],[[0,2,3,0],[2,3,3,2],[0,3,2,1],[1,2,0,0]],[[0,2,2,0],[2,4,3,2],[0,3,2,1],[1,2,0,0]],[[1,2,2,2],[0,3,1,2],[2,0,2,2],[1,2,1,1]],[[1,2,3,1],[0,3,1,2],[2,0,2,2],[1,2,1,1]],[[1,3,2,1],[0,3,1,2],[2,0,2,2],[1,2,1,1]],[[2,2,2,1],[0,3,1,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[0,3,1,2],[2,0,1,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,2],[2,0,1,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,2],[2,0,1,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,2],[2,0,1,2],[2,2,2,1]],[[1,2,2,1],[0,3,1,2],[2,0,1,3],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[3,0,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,3],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[0,4,1,2],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[0,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[0,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[0,3,1,2],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[0,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,1],[0,3,1,2],[1,3,4,2],[0,0,2,0]],[[1,2,2,1],[0,3,1,3],[1,3,3,2],[0,0,2,0]],[[1,2,2,2],[0,3,1,2],[1,3,3,2],[0,0,2,0]],[[1,2,3,1],[0,3,1,2],[1,3,3,2],[0,0,2,0]],[[1,3,2,1],[0,3,1,2],[1,3,3,2],[0,0,2,0]],[[1,2,2,1],[0,3,1,2],[1,3,3,2],[0,0,1,2]],[[1,2,2,1],[0,3,1,2],[1,3,3,3],[0,0,1,1]],[[1,2,2,1],[0,3,1,2],[1,3,4,2],[0,0,1,1]],[[1,2,2,1],[0,3,1,3],[1,3,3,2],[0,0,1,1]],[[1,2,2,2],[0,3,1,2],[1,3,3,2],[0,0,1,1]],[[1,2,3,1],[0,3,1,2],[1,3,3,2],[0,0,1,1]],[[1,3,2,1],[0,3,1,2],[1,3,3,2],[0,0,1,1]],[[1,2,2,1],[0,3,1,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,1],[0,3,1,3],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,4,1,2],[1,3,3,1],[1,2,0,0]],[[1,2,2,2],[0,3,1,2],[1,3,3,1],[1,2,0,0]],[[1,2,3,1],[0,3,1,2],[1,3,3,1],[1,2,0,0]],[[1,3,2,1],[0,3,1,2],[1,3,3,1],[1,2,0,0]],[[2,2,2,1],[0,3,1,2],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,3,1,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,1],[0,3,1,2],[1,3,2,1],[2,2,1,0]],[[1,2,2,1],[0,3,1,2],[1,4,2,1],[1,2,1,0]],[[1,2,2,1],[0,3,1,3],[1,3,2,1],[1,2,1,0]],[[1,2,2,1],[0,4,1,2],[1,3,2,1],[1,2,1,0]],[[1,2,2,2],[0,3,1,2],[1,3,2,1],[1,2,1,0]],[[1,2,3,1],[0,3,1,2],[1,3,2,1],[1,2,1,0]],[[1,3,2,1],[0,3,1,2],[1,3,2,1],[1,2,1,0]],[[2,2,2,1],[0,3,1,2],[1,3,2,1],[1,2,1,0]],[[1,2,2,1],[0,3,1,2],[1,3,2,1],[1,3,0,1]],[[1,2,2,1],[0,3,1,2],[1,3,2,1],[2,2,0,1]],[[1,2,2,1],[0,3,1,2],[1,4,2,1],[1,2,0,1]],[[1,2,2,1],[0,3,1,3],[1,3,2,1],[1,2,0,1]],[[1,2,2,1],[0,4,1,2],[1,3,2,1],[1,2,0,1]],[[1,2,2,2],[0,3,1,2],[1,3,2,1],[1,2,0,1]],[[1,2,3,1],[0,3,1,2],[1,3,2,1],[1,2,0,1]],[[1,3,2,1],[0,3,1,2],[1,3,2,1],[1,2,0,1]],[[2,2,2,1],[0,3,1,2],[1,3,2,1],[1,2,0,1]],[[1,2,2,1],[0,3,1,2],[1,4,2,1],[1,1,2,0]],[[1,2,2,1],[0,3,1,3],[1,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,4,1,2],[1,3,2,1],[1,1,2,0]],[[1,2,2,2],[0,3,1,2],[1,3,2,1],[1,1,2,0]],[[1,2,3,1],[0,3,1,2],[1,3,2,1],[1,1,2,0]],[[1,3,2,1],[0,3,1,2],[1,3,2,1],[1,1,2,0]],[[2,2,2,1],[0,3,1,2],[1,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,3,1,2],[1,4,2,1],[1,1,1,1]],[[1,2,2,1],[0,3,1,3],[1,3,2,1],[1,1,1,1]],[[1,2,2,1],[0,4,1,2],[1,3,2,1],[1,1,1,1]],[[1,2,2,2],[0,3,1,2],[1,3,2,1],[1,1,1,1]],[[1,2,3,1],[0,3,1,2],[1,3,2,1],[1,1,1,1]],[[1,3,2,1],[0,3,1,2],[1,3,2,1],[1,1,1,1]],[[2,2,2,1],[0,3,1,2],[1,3,2,1],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[1,3,2,0],[1,3,1,1]],[[1,2,2,1],[0,3,1,2],[1,3,2,0],[2,2,1,1]],[[1,2,2,1],[0,3,1,2],[1,4,2,0],[1,2,1,1]],[[1,2,2,1],[0,3,1,3],[1,3,2,0],[1,2,1,1]],[[1,2,2,1],[0,4,1,2],[1,3,2,0],[1,2,1,1]],[[1,2,2,2],[0,3,1,2],[1,3,2,0],[1,2,1,1]],[[1,2,3,1],[0,3,1,2],[1,3,2,0],[1,2,1,1]],[[1,3,2,1],[0,3,1,2],[1,3,2,0],[1,2,1,1]],[[2,2,2,1],[0,3,1,2],[1,3,2,0],[1,2,1,1]],[[1,2,2,1],[0,3,1,2],[1,4,2,0],[1,1,2,1]],[[1,2,2,1],[0,3,1,3],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,4,1,2],[1,3,2,0],[1,1,2,1]],[[1,2,2,2],[0,3,1,2],[1,3,2,0],[1,1,2,1]],[[1,2,3,1],[0,3,1,2],[1,3,2,0],[1,1,2,1]],[[1,3,2,1],[0,3,1,2],[1,3,2,0],[1,1,2,1]],[[2,2,2,1],[0,3,1,2],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,3,1,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,1],[0,3,1,2],[1,3,1,2],[2,2,1,0]],[[1,2,2,1],[0,3,1,2],[1,3,1,3],[1,2,1,0]],[[1,2,2,1],[0,3,1,2],[1,4,1,2],[1,2,1,0]],[[1,2,2,1],[0,3,1,3],[1,3,1,2],[1,2,1,0]],[[1,2,2,1],[0,4,1,2],[1,3,1,2],[1,2,1,0]],[[1,2,2,2],[0,3,1,2],[1,3,1,2],[1,2,1,0]],[[1,2,3,1],[0,3,1,2],[1,3,1,2],[1,2,1,0]],[[1,3,2,1],[0,3,1,2],[1,3,1,2],[1,2,1,0]],[[2,2,2,1],[0,3,1,2],[1,3,1,2],[1,2,1,0]],[[1,2,2,1],[0,3,1,2],[1,3,1,2],[1,2,0,2]],[[1,2,2,1],[0,3,1,2],[1,3,1,2],[1,3,0,1]],[[1,2,2,1],[0,3,1,2],[1,3,1,2],[2,2,0,1]],[[1,2,2,1],[0,3,1,2],[1,3,1,3],[1,2,0,1]],[[1,2,2,1],[0,3,1,2],[1,4,1,2],[1,2,0,1]],[[1,2,2,1],[0,3,1,3],[1,3,1,2],[1,2,0,1]],[[1,2,2,1],[0,4,1,2],[1,3,1,2],[1,2,0,1]],[[1,2,2,2],[0,3,1,2],[1,3,1,2],[1,2,0,1]],[[1,2,3,1],[0,3,1,2],[1,3,1,2],[1,2,0,1]],[[1,3,2,1],[0,3,1,2],[1,3,1,2],[1,2,0,1]],[[2,2,2,1],[0,3,1,2],[1,3,1,2],[1,2,0,1]],[[1,2,2,1],[0,3,1,2],[1,3,1,3],[1,1,2,0]],[[1,2,2,1],[0,3,1,2],[1,4,1,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,3],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,4,1,2],[1,3,1,2],[1,1,2,0]],[[1,2,2,2],[0,3,1,2],[1,3,1,2],[1,1,2,0]],[[1,2,3,1],[0,3,1,2],[1,3,1,2],[1,1,2,0]],[[1,3,2,1],[0,3,1,2],[1,3,1,2],[1,1,2,0]],[[2,2,2,1],[0,3,1,2],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,2],[1,3,1,2],[1,1,1,2]],[[1,2,2,1],[0,3,1,2],[1,3,1,3],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[1,4,1,2],[1,1,1,1]],[[1,2,2,1],[0,3,1,3],[1,3,1,2],[1,1,1,1]],[[1,2,2,1],[0,4,1,2],[1,3,1,2],[1,1,1,1]],[[1,2,2,2],[0,3,1,2],[1,3,1,2],[1,1,1,1]],[[1,2,3,1],[0,3,1,2],[1,3,1,2],[1,1,1,1]],[[1,3,2,1],[0,3,1,2],[1,3,1,2],[1,1,1,1]],[[2,2,2,1],[0,3,1,2],[1,3,1,2],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[1,3,1,1],[1,2,3,0]],[[1,2,2,1],[0,3,1,2],[1,3,1,1],[1,3,2,0]],[[1,2,2,1],[0,3,1,2],[1,3,1,1],[2,2,2,0]],[[1,2,2,1],[0,3,1,2],[1,4,1,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,3],[1,3,1,1],[1,2,2,0]],[[1,2,2,1],[0,4,1,2],[1,3,1,1],[1,2,2,0]],[[1,2,2,2],[0,3,1,2],[1,3,1,1],[1,2,2,0]],[[1,2,3,1],[0,3,1,2],[1,3,1,1],[1,2,2,0]],[[1,3,2,1],[0,3,1,2],[1,3,1,1],[1,2,2,0]],[[2,2,2,1],[0,3,1,2],[1,3,1,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,2],[1,3,1,0],[1,2,2,2]],[[1,2,2,1],[0,3,1,2],[1,3,1,0],[1,2,3,1]],[[1,2,2,1],[0,3,1,2],[1,3,1,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,2],[1,3,1,0],[2,2,2,1]],[[1,2,2,1],[0,3,1,2],[1,4,1,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,3],[1,3,1,0],[1,2,2,1]],[[1,2,2,1],[0,4,1,2],[1,3,1,0],[1,2,2,1]],[[1,2,2,2],[0,3,1,2],[1,3,1,0],[1,2,2,1]],[[1,2,3,1],[0,3,1,2],[1,3,1,0],[1,2,2,1]],[[1,3,2,1],[0,3,1,2],[1,3,1,0],[1,2,2,1]],[[2,2,2,1],[0,3,1,2],[1,3,1,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[1,3,0,2],[1,2,3,0]],[[1,2,2,1],[0,3,1,2],[1,3,0,2],[1,3,2,0]],[[1,2,2,1],[0,3,1,2],[1,3,0,2],[2,2,2,0]],[[1,2,2,1],[0,3,1,2],[1,3,0,3],[1,2,2,0]],[[1,2,2,1],[0,3,1,2],[1,4,0,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,3],[1,3,0,2],[1,2,2,0]],[[1,2,2,1],[0,4,1,2],[1,3,0,2],[1,2,2,0]],[[1,2,2,2],[0,3,1,2],[1,3,0,2],[1,2,2,0]],[[1,2,3,1],[0,3,1,2],[1,3,0,2],[1,2,2,0]],[[1,3,2,1],[0,3,1,2],[1,3,0,2],[1,2,2,0]],[[2,2,2,1],[0,3,1,2],[1,3,0,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,2],[1,3,0,2],[1,2,1,2]],[[1,2,2,1],[0,3,1,2],[1,3,0,2],[1,3,1,1]],[[1,2,2,1],[0,3,1,2],[1,3,0,2],[2,2,1,1]],[[1,2,2,1],[0,3,1,2],[1,3,0,3],[1,2,1,1]],[[1,2,2,1],[0,3,1,2],[1,4,0,2],[1,2,1,1]],[[1,2,2,1],[0,3,1,3],[1,3,0,2],[1,2,1,1]],[[1,2,2,1],[0,4,1,2],[1,3,0,2],[1,2,1,1]],[[1,2,2,2],[0,3,1,2],[1,3,0,2],[1,2,1,1]],[[1,2,3,1],[0,3,1,2],[1,3,0,2],[1,2,1,1]],[[1,3,2,1],[0,3,1,2],[1,3,0,2],[1,2,1,1]],[[2,2,2,1],[0,3,1,2],[1,3,0,2],[1,2,1,1]],[[1,2,2,1],[0,3,1,2],[1,3,0,2],[1,1,2,2]],[[1,2,2,1],[0,3,1,2],[1,3,0,2],[1,1,3,1]],[[1,2,2,1],[0,3,1,2],[1,3,0,3],[1,1,2,1]],[[1,2,2,1],[0,3,1,2],[1,4,0,2],[1,1,2,1]],[[1,2,2,1],[0,3,1,3],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,4,1,2],[1,3,0,2],[1,1,2,1]],[[1,2,2,2],[0,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,2,3,1],[0,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[0,3,1,2],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[0,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,3,1,2],[1,3,0,1],[1,2,2,2]],[[1,2,2,1],[0,3,1,2],[1,3,0,1],[1,2,3,1]],[[1,2,2,1],[0,3,1,2],[1,3,0,1],[1,3,2,1]],[[1,2,2,1],[0,3,1,2],[1,3,0,1],[2,2,2,1]],[[1,2,2,1],[0,3,1,2],[1,4,0,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,3],[1,3,0,1],[1,2,2,1]],[[1,2,2,1],[0,4,1,2],[1,3,0,1],[1,2,2,1]],[[1,2,2,2],[0,3,1,2],[1,3,0,1],[1,2,2,1]],[[1,2,3,1],[0,3,1,2],[1,3,0,1],[1,2,2,1]],[[1,3,2,1],[0,3,1,2],[1,3,0,1],[1,2,2,1]],[[2,2,2,1],[0,3,1,2],[1,3,0,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[1,2,3,3],[1,0,2,0]],[[1,2,2,1],[0,3,1,2],[1,2,4,2],[1,0,2,0]],[[1,2,2,1],[0,3,1,3],[1,2,3,2],[1,0,2,0]],[[1,2,2,2],[0,3,1,2],[1,2,3,2],[1,0,2,0]],[[1,2,3,1],[0,3,1,2],[1,2,3,2],[1,0,2,0]],[[1,3,2,1],[0,3,1,2],[1,2,3,2],[1,0,2,0]],[[1,2,2,1],[0,3,1,2],[1,2,3,2],[1,0,1,2]],[[1,2,2,1],[0,3,1,2],[1,2,3,3],[1,0,1,1]],[[1,2,2,1],[0,3,1,2],[1,2,4,2],[1,0,1,1]],[[1,2,2,1],[0,3,1,3],[1,2,3,2],[1,0,1,1]],[[1,2,2,2],[0,3,1,2],[1,2,3,2],[1,0,1,1]],[[1,2,3,1],[0,3,1,2],[1,2,3,2],[1,0,1,1]],[[1,3,2,1],[0,3,1,2],[1,2,3,2],[1,0,1,1]],[[0,3,2,0],[2,3,3,2],[1,0,1,2],[0,2,2,1]],[[0,2,3,0],[2,3,3,2],[1,0,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,4,2],[1,0,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,3,3],[1,0,1,2],[0,2,2,1]],[[0,2,2,0],[2,3,3,2],[1,0,1,3],[0,2,2,1]],[[0,2,2,0],[2,3,3,2],[1,0,1,2],[0,2,3,1]],[[0,2,2,0],[2,3,3,2],[1,0,1,2],[0,2,2,2]],[[0,3,2,0],[2,3,3,2],[1,0,2,2],[0,2,1,1]],[[0,2,3,0],[2,3,3,2],[1,0,2,2],[0,2,1,1]],[[0,2,2,0],[2,3,4,2],[1,0,2,2],[0,2,1,1]],[[0,2,2,0],[2,3,3,3],[1,0,2,2],[0,2,1,1]],[[0,2,2,0],[2,3,3,2],[1,0,2,3],[0,2,1,1]],[[0,2,2,0],[2,3,3,2],[1,0,2,2],[0,2,1,2]],[[0,3,2,0],[2,3,3,2],[1,0,2,2],[0,2,2,0]],[[0,2,3,0],[2,3,3,2],[1,0,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,4,2],[1,0,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,3,3],[1,0,2,2],[0,2,2,0]],[[0,2,2,0],[2,3,3,2],[1,0,2,3],[0,2,2,0]],[[1,2,2,1],[0,3,1,2],[1,2,3,3],[0,2,1,0]],[[0,3,2,0],[2,3,3,2],[1,0,3,0],[0,2,2,1]],[[0,2,3,0],[2,3,3,2],[1,0,3,0],[0,2,2,1]],[[0,2,2,0],[2,3,4,2],[1,0,3,0],[0,2,2,1]],[[0,2,2,0],[2,3,3,3],[1,0,3,0],[0,2,2,1]],[[0,3,2,0],[2,3,3,2],[1,0,3,1],[0,2,1,1]],[[0,2,3,0],[2,3,3,2],[1,0,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,4,2],[1,0,3,1],[0,2,1,1]],[[0,2,2,0],[2,3,3,3],[1,0,3,1],[0,2,1,1]],[[0,3,2,0],[2,3,3,2],[1,0,3,1],[0,2,2,0]],[[0,2,3,0],[2,3,3,2],[1,0,3,1],[0,2,2,0]],[[0,2,2,0],[2,3,4,2],[1,0,3,1],[0,2,2,0]],[[0,2,2,0],[2,3,3,3],[1,0,3,1],[0,2,2,0]],[[1,2,2,1],[0,3,1,2],[1,2,4,2],[0,2,1,0]],[[1,2,2,1],[0,3,1,3],[1,2,3,2],[0,2,1,0]],[[1,2,2,2],[0,3,1,2],[1,2,3,2],[0,2,1,0]],[[1,2,3,1],[0,3,1,2],[1,2,3,2],[0,2,1,0]],[[1,3,2,1],[0,3,1,2],[1,2,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,1,2],[1,2,3,2],[0,2,0,2]],[[1,2,2,1],[0,3,1,2],[1,2,3,3],[0,2,0,1]],[[1,2,2,1],[0,3,1,2],[1,2,4,2],[0,2,0,1]],[[1,2,2,1],[0,3,1,3],[1,2,3,2],[0,2,0,1]],[[1,2,2,2],[0,3,1,2],[1,2,3,2],[0,2,0,1]],[[1,2,3,1],[0,3,1,2],[1,2,3,2],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[1,0,3,2],[0,0,2,1]],[[0,2,3,0],[2,3,3,2],[1,0,3,2],[0,0,2,1]],[[0,2,2,0],[2,3,4,2],[1,0,3,2],[0,0,2,1]],[[0,2,2,0],[2,3,3,3],[1,0,3,2],[0,0,2,1]],[[0,2,2,0],[2,3,3,2],[1,0,3,3],[0,0,2,1]],[[0,2,2,0],[2,3,3,2],[1,0,3,2],[0,0,2,2]],[[0,3,2,0],[2,3,3,2],[1,0,3,2],[0,1,1,1]],[[0,2,3,0],[2,3,3,2],[1,0,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,4,2],[1,0,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,3,3],[1,0,3,2],[0,1,1,1]],[[0,2,2,0],[2,3,3,2],[1,0,3,3],[0,1,1,1]],[[0,2,2,0],[2,3,3,2],[1,0,3,2],[0,1,1,2]],[[0,3,2,0],[2,3,3,2],[1,0,3,2],[0,1,2,0]],[[0,2,3,0],[2,3,3,2],[1,0,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,4,2],[1,0,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,3,3],[1,0,3,2],[0,1,2,0]],[[0,2,2,0],[2,3,3,2],[1,0,3,3],[0,1,2,0]],[[1,3,2,1],[0,3,1,2],[1,2,3,2],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[1,0,3,2],[1,0,1,1]],[[0,2,3,0],[2,3,3,2],[1,0,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,4,2],[1,0,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,3,3],[1,0,3,2],[1,0,1,1]],[[0,2,2,0],[2,3,3,2],[1,0,3,3],[1,0,1,1]],[[0,2,2,0],[2,3,3,2],[1,0,3,2],[1,0,1,2]],[[0,3,2,0],[2,3,3,2],[1,0,3,2],[1,0,2,0]],[[0,2,3,0],[2,3,3,2],[1,0,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,4,2],[1,0,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,3,3],[1,0,3,2],[1,0,2,0]],[[0,2,2,0],[2,3,3,2],[1,0,3,3],[1,0,2,0]],[[1,2,2,1],[0,3,1,2],[1,2,3,2],[0,1,3,0]],[[1,2,2,1],[0,3,1,2],[1,2,3,3],[0,1,2,0]],[[1,2,2,1],[0,3,1,2],[1,2,4,2],[0,1,2,0]],[[1,2,2,1],[0,3,1,3],[1,2,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,1,2],[1,2,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,1,2],[1,2,3,2],[0,1,2,0]],[[1,3,2,1],[0,3,1,2],[1,2,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,1,2],[1,2,3,2],[0,1,1,2]],[[1,2,2,1],[0,3,1,2],[1,2,3,3],[0,1,1,1]],[[1,2,2,1],[0,3,1,2],[1,2,4,2],[0,1,1,1]],[[1,2,2,1],[0,3,1,3],[1,2,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,1,2],[1,2,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,1,2],[1,2,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,1,2],[1,2,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,1,2],[1,2,3,2],[0,0,2,2]],[[1,2,2,1],[0,3,1,2],[1,2,3,3],[0,0,2,1]],[[1,2,2,1],[0,3,1,2],[1,2,4,2],[0,0,2,1]],[[1,2,2,1],[0,3,1,3],[1,2,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,1,2],[1,2,3,2],[0,0,2,1]],[[1,2,3,1],[0,3,1,2],[1,2,3,2],[0,0,2,1]],[[1,3,2,1],[0,3,1,2],[1,2,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,3,2],[1,1,1,2],[0,1,2,1]],[[0,2,3,0],[2,3,3,2],[1,1,1,2],[0,1,2,1]],[[0,2,2,0],[2,3,4,2],[1,1,1,2],[0,1,2,1]],[[0,2,2,0],[2,3,3,3],[1,1,1,2],[0,1,2,1]],[[0,2,2,0],[2,3,3,2],[1,1,1,3],[0,1,2,1]],[[0,2,2,0],[2,3,3,2],[1,1,1,2],[0,1,2,2]],[[0,3,2,0],[2,3,3,2],[1,1,1,2],[1,0,2,1]],[[0,2,3,0],[2,3,3,2],[1,1,1,2],[1,0,2,1]],[[0,2,2,0],[2,3,4,2],[1,1,1,2],[1,0,2,1]],[[0,2,2,0],[2,3,3,3],[1,1,1,2],[1,0,2,1]],[[0,2,2,0],[2,3,3,2],[1,1,1,3],[1,0,2,1]],[[0,2,2,0],[2,3,3,2],[1,1,1,2],[1,0,2,2]],[[1,2,2,1],[0,3,1,3],[1,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,4,1,2],[1,2,3,1],[1,2,1,0]],[[1,2,2,2],[0,3,1,2],[1,2,3,1],[1,2,1,0]],[[1,2,3,1],[0,3,1,2],[1,2,3,1],[1,2,1,0]],[[1,3,2,1],[0,3,1,2],[1,2,3,1],[1,2,1,0]],[[2,2,2,1],[0,3,1,2],[1,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,3,1,3],[1,2,3,1],[1,2,0,1]],[[1,2,2,1],[0,4,1,2],[1,2,3,1],[1,2,0,1]],[[1,2,2,2],[0,3,1,2],[1,2,3,1],[1,2,0,1]],[[1,2,3,1],[0,3,1,2],[1,2,3,1],[1,2,0,1]],[[0,3,2,0],[2,3,3,2],[1,1,2,2],[0,0,2,1]],[[0,2,3,0],[2,3,3,2],[1,1,2,2],[0,0,2,1]],[[0,2,2,0],[2,3,4,2],[1,1,2,2],[0,0,2,1]],[[0,2,2,0],[2,3,3,3],[1,1,2,2],[0,0,2,1]],[[0,2,2,0],[2,3,3,2],[1,1,2,3],[0,0,2,1]],[[0,2,2,0],[2,3,3,2],[1,1,2,2],[0,0,2,2]],[[0,3,2,0],[2,3,3,2],[1,1,2,2],[0,1,1,1]],[[0,2,3,0],[2,3,3,2],[1,1,2,2],[0,1,1,1]],[[0,2,2,0],[2,3,4,2],[1,1,2,2],[0,1,1,1]],[[0,2,2,0],[2,3,3,3],[1,1,2,2],[0,1,1,1]],[[0,2,2,0],[2,3,3,2],[1,1,2,3],[0,1,1,1]],[[0,2,2,0],[2,3,3,2],[1,1,2,2],[0,1,1,2]],[[0,3,2,0],[2,3,3,2],[1,1,2,2],[0,1,2,0]],[[0,2,3,0],[2,3,3,2],[1,1,2,2],[0,1,2,0]],[[0,2,2,0],[2,3,4,2],[1,1,2,2],[0,1,2,0]],[[0,2,2,0],[2,3,3,3],[1,1,2,2],[0,1,2,0]],[[0,2,2,0],[2,3,3,2],[1,1,2,3],[0,1,2,0]],[[0,3,2,0],[2,3,3,2],[1,1,2,2],[0,2,0,1]],[[0,2,3,0],[2,3,3,2],[1,1,2,2],[0,2,0,1]],[[0,2,2,0],[2,3,4,2],[1,1,2,2],[0,2,0,1]],[[0,2,2,0],[2,3,3,3],[1,1,2,2],[0,2,0,1]],[[0,2,2,0],[2,3,3,2],[1,1,2,3],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[1,1,2,2],[0,2,1,0]],[[0,2,3,0],[2,3,3,2],[1,1,2,2],[0,2,1,0]],[[0,2,2,0],[2,3,4,2],[1,1,2,2],[0,2,1,0]],[[0,2,2,0],[2,3,3,3],[1,1,2,2],[0,2,1,0]],[[1,3,2,1],[0,3,1,2],[1,2,3,1],[1,2,0,1]],[[2,2,2,1],[0,3,1,2],[1,2,3,1],[1,2,0,1]],[[0,3,2,0],[2,3,3,2],[1,1,2,2],[1,0,1,1]],[[0,2,3,0],[2,3,3,2],[1,1,2,2],[1,0,1,1]],[[0,2,2,0],[2,3,4,2],[1,1,2,2],[1,0,1,1]],[[0,2,2,0],[2,3,3,3],[1,1,2,2],[1,0,1,1]],[[0,2,2,0],[2,3,3,2],[1,1,2,3],[1,0,1,1]],[[0,2,2,0],[2,3,3,2],[1,1,2,2],[1,0,1,2]],[[0,3,2,0],[2,3,3,2],[1,1,2,2],[1,0,2,0]],[[0,2,3,0],[2,3,3,2],[1,1,2,2],[1,0,2,0]],[[0,2,2,0],[2,3,4,2],[1,1,2,2],[1,0,2,0]],[[0,2,2,0],[2,3,3,3],[1,1,2,2],[1,0,2,0]],[[0,2,2,0],[2,3,3,2],[1,1,2,3],[1,0,2,0]],[[0,3,2,0],[2,3,3,2],[1,1,2,2],[1,1,0,1]],[[0,2,3,0],[2,3,3,2],[1,1,2,2],[1,1,0,1]],[[0,2,2,0],[2,3,4,2],[1,1,2,2],[1,1,0,1]],[[0,2,2,0],[2,3,3,3],[1,1,2,2],[1,1,0,1]],[[0,2,2,0],[2,3,3,2],[1,1,2,3],[1,1,0,1]],[[0,3,2,0],[2,3,3,2],[1,1,2,2],[1,1,1,0]],[[0,2,3,0],[2,3,3,2],[1,1,2,2],[1,1,1,0]],[[0,2,2,0],[2,3,4,2],[1,1,2,2],[1,1,1,0]],[[0,2,2,0],[2,3,3,3],[1,1,2,2],[1,1,1,0]],[[1,2,2,1],[0,3,1,3],[1,2,3,1],[1,1,2,0]],[[1,2,2,1],[0,4,1,2],[1,2,3,1],[1,1,2,0]],[[1,2,2,2],[0,3,1,2],[1,2,3,1],[1,1,2,0]],[[1,2,3,1],[0,3,1,2],[1,2,3,1],[1,1,2,0]],[[1,3,2,1],[0,3,1,2],[1,2,3,1],[1,1,2,0]],[[2,2,2,1],[0,3,1,2],[1,2,3,1],[1,1,2,0]],[[1,2,2,1],[0,3,1,3],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,4,1,2],[1,2,3,1],[1,1,1,1]],[[1,2,2,2],[0,3,1,2],[1,2,3,1],[1,1,1,1]],[[1,2,3,1],[0,3,1,2],[1,2,3,1],[1,1,1,1]],[[1,3,2,1],[0,3,1,2],[1,2,3,1],[1,1,1,1]],[[2,2,2,1],[0,3,1,2],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[1,2,3,1],[0,1,2,2]],[[1,2,2,1],[0,3,1,2],[1,2,3,1],[0,1,3,1]],[[1,2,2,1],[0,3,1,2],[1,2,4,1],[0,1,2,1]],[[1,2,2,1],[0,3,1,3],[1,2,3,0],[1,2,1,1]],[[1,2,2,1],[0,4,1,2],[1,2,3,0],[1,2,1,1]],[[0,3,2,0],[2,3,3,2],[1,1,3,0],[0,1,2,1]],[[0,2,3,0],[2,3,3,2],[1,1,3,0],[0,1,2,1]],[[0,2,2,0],[2,3,4,2],[1,1,3,0],[0,1,2,1]],[[0,2,2,0],[2,3,3,3],[1,1,3,0],[0,1,2,1]],[[0,3,2,0],[2,3,3,2],[1,1,3,0],[0,2,1,1]],[[0,2,3,0],[2,3,3,2],[1,1,3,0],[0,2,1,1]],[[0,2,2,0],[2,3,4,2],[1,1,3,0],[0,2,1,1]],[[0,3,2,0],[2,3,3,2],[1,1,3,0],[1,0,2,1]],[[0,2,3,0],[2,3,3,2],[1,1,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,4,2],[1,1,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,3,3],[1,1,3,0],[1,0,2,1]],[[0,3,2,0],[2,3,3,2],[1,1,3,0],[1,1,1,1]],[[0,2,3,0],[2,3,3,2],[1,1,3,0],[1,1,1,1]],[[0,2,2,0],[2,3,4,2],[1,1,3,0],[1,1,1,1]],[[1,2,2,2],[0,3,1,2],[1,2,3,0],[1,2,1,1]],[[1,2,3,1],[0,3,1,2],[1,2,3,0],[1,2,1,1]],[[1,3,2,1],[0,3,1,2],[1,2,3,0],[1,2,1,1]],[[2,2,2,1],[0,3,1,2],[1,2,3,0],[1,2,1,1]],[[1,2,2,1],[0,3,1,3],[1,2,3,0],[1,1,2,1]],[[1,2,2,1],[0,4,1,2],[1,2,3,0],[1,1,2,1]],[[1,2,2,2],[0,3,1,2],[1,2,3,0],[1,1,2,1]],[[1,2,3,1],[0,3,1,2],[1,2,3,0],[1,1,2,1]],[[1,3,2,1],[0,3,1,2],[1,2,3,0],[1,1,2,1]],[[2,2,2,1],[0,3,1,2],[1,2,3,0],[1,1,2,1]],[[0,3,2,0],[2,3,3,2],[1,1,3,1],[0,0,2,1]],[[0,2,3,0],[2,3,3,2],[1,1,3,1],[0,0,2,1]],[[0,2,2,0],[2,3,4,2],[1,1,3,1],[0,0,2,1]],[[0,2,2,0],[2,3,3,3],[1,1,3,1],[0,0,2,1]],[[0,3,2,0],[2,3,3,2],[1,1,3,1],[0,1,1,1]],[[0,2,3,0],[2,3,3,2],[1,1,3,1],[0,1,1,1]],[[0,2,2,0],[2,3,4,2],[1,1,3,1],[0,1,1,1]],[[0,2,2,0],[2,3,3,3],[1,1,3,1],[0,1,1,1]],[[0,3,2,0],[2,3,3,2],[1,1,3,1],[0,1,2,0]],[[0,2,3,0],[2,3,3,2],[1,1,3,1],[0,1,2,0]],[[0,2,2,0],[2,3,4,2],[1,1,3,1],[0,1,2,0]],[[0,2,2,0],[2,3,3,3],[1,1,3,1],[0,1,2,0]],[[0,3,2,0],[2,3,3,2],[1,1,3,1],[0,2,0,1]],[[0,2,3,0],[2,3,3,2],[1,1,3,1],[0,2,0,1]],[[0,2,2,0],[2,3,4,2],[1,1,3,1],[0,2,0,1]],[[0,2,2,0],[2,3,3,3],[1,1,3,1],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[1,1,3,1],[0,2,1,0]],[[0,2,3,0],[2,3,3,2],[1,1,3,1],[0,2,1,0]],[[0,2,2,0],[2,3,4,2],[1,1,3,1],[0,2,1,0]],[[0,2,2,0],[2,3,3,3],[1,1,3,1],[0,2,1,0]],[[0,3,2,0],[2,3,3,2],[1,1,3,1],[1,0,1,1]],[[0,2,3,0],[2,3,3,2],[1,1,3,1],[1,0,1,1]],[[0,2,2,0],[2,3,4,2],[1,1,3,1],[1,0,1,1]],[[0,2,2,0],[2,3,3,3],[1,1,3,1],[1,0,1,1]],[[0,3,2,0],[2,3,3,2],[1,1,3,1],[1,0,2,0]],[[0,2,3,0],[2,3,3,2],[1,1,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,4,2],[1,1,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,3,3],[1,1,3,1],[1,0,2,0]],[[0,3,2,0],[2,3,3,2],[1,1,3,1],[1,1,0,1]],[[0,2,3,0],[2,3,3,2],[1,1,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,4,2],[1,1,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,3,3],[1,1,3,1],[1,1,0,1]],[[0,3,2,0],[2,3,3,2],[1,1,3,1],[1,1,1,0]],[[0,2,3,0],[2,3,3,2],[1,1,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,4,2],[1,1,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,3,3],[1,1,3,1],[1,1,1,0]],[[1,2,2,1],[0,3,1,2],[1,2,2,3],[1,2,1,0]],[[1,2,2,1],[0,3,1,3],[1,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,4,1,2],[1,2,2,2],[1,2,1,0]],[[1,2,2,2],[0,3,1,2],[1,2,2,2],[1,2,1,0]],[[1,2,3,1],[0,3,1,2],[1,2,2,2],[1,2,1,0]],[[1,3,2,1],[0,3,1,2],[1,2,2,2],[1,2,1,0]],[[2,2,2,1],[0,3,1,2],[1,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,3,1,2],[1,2,2,2],[1,2,0,2]],[[1,2,2,1],[0,3,1,2],[1,2,2,3],[1,2,0,1]],[[1,2,2,1],[0,3,1,3],[1,2,2,2],[1,2,0,1]],[[1,2,2,1],[0,4,1,2],[1,2,2,2],[1,2,0,1]],[[1,2,2,2],[0,3,1,2],[1,2,2,2],[1,2,0,1]],[[1,2,3,1],[0,3,1,2],[1,2,2,2],[1,2,0,1]],[[1,3,2,1],[0,3,1,2],[1,2,2,2],[1,2,0,1]],[[2,2,2,1],[0,3,1,2],[1,2,2,2],[1,2,0,1]],[[1,2,2,1],[0,3,1,2],[1,2,2,3],[1,1,2,0]],[[1,2,2,1],[0,3,1,3],[1,2,2,2],[1,1,2,0]],[[1,2,2,1],[0,4,1,2],[1,2,2,2],[1,1,2,0]],[[1,2,2,2],[0,3,1,2],[1,2,2,2],[1,1,2,0]],[[0,3,2,0],[2,3,3,2],[1,1,3,2],[0,1,0,1]],[[0,2,3,0],[2,3,3,2],[1,1,3,2],[0,1,0,1]],[[0,2,2,0],[2,3,4,2],[1,1,3,2],[0,1,0,1]],[[0,2,2,0],[2,3,3,3],[1,1,3,2],[0,1,0,1]],[[0,2,2,0],[2,3,3,2],[1,1,3,3],[0,1,0,1]],[[1,2,3,1],[0,3,1,2],[1,2,2,2],[1,1,2,0]],[[1,3,2,1],[0,3,1,2],[1,2,2,2],[1,1,2,0]],[[2,2,2,1],[0,3,1,2],[1,2,2,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,2],[1,2,2,2],[1,1,1,2]],[[1,2,2,1],[0,3,1,2],[1,2,2,3],[1,1,1,1]],[[1,2,2,1],[0,3,1,3],[1,2,2,2],[1,1,1,1]],[[1,2,2,1],[0,4,1,2],[1,2,2,2],[1,1,1,1]],[[1,2,2,2],[0,3,1,2],[1,2,2,2],[1,1,1,1]],[[1,2,3,1],[0,3,1,2],[1,2,2,2],[1,1,1,1]],[[1,3,2,1],[0,3,1,2],[1,2,2,2],[1,1,1,1]],[[2,2,2,1],[0,3,1,2],[1,2,2,2],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[1,2,2,2],[0,1,2,2]],[[1,2,2,1],[0,3,1,2],[1,2,2,2],[0,1,3,1]],[[1,2,2,1],[0,3,1,2],[1,2,2,3],[0,1,2,1]],[[1,2,2,1],[0,3,1,3],[1,2,2,2],[0,1,2,1]],[[1,2,2,2],[0,3,1,2],[1,2,2,2],[0,1,2,1]],[[1,2,3,1],[0,3,1,2],[1,2,2,2],[0,1,2,1]],[[1,3,2,1],[0,3,1,2],[1,2,2,2],[0,1,2,1]],[[0,3,2,0],[2,3,3,2],[1,1,3,2],[1,0,0,1]],[[0,2,3,0],[2,3,3,2],[1,1,3,2],[1,0,0,1]],[[0,2,2,0],[2,3,4,2],[1,1,3,2],[1,0,0,1]],[[0,2,2,0],[2,3,3,3],[1,1,3,2],[1,0,0,1]],[[0,2,2,0],[2,3,3,2],[1,1,3,3],[1,0,0,1]],[[1,2,2,1],[0,3,1,2],[1,2,1,2],[1,1,2,2]],[[1,2,2,1],[0,3,1,2],[1,2,1,2],[1,1,3,1]],[[1,2,2,1],[0,3,1,2],[1,2,1,3],[1,1,2,1]],[[1,2,2,1],[0,3,1,3],[1,2,1,2],[1,1,2,1]],[[1,2,2,1],[0,4,1,2],[1,2,1,2],[1,1,2,1]],[[1,2,2,2],[0,3,1,2],[1,2,1,2],[1,1,2,1]],[[1,2,3,1],[0,3,1,2],[1,2,1,2],[1,1,2,1]],[[1,3,2,1],[0,3,1,2],[1,2,1,2],[1,1,2,1]],[[2,2,2,1],[0,3,1,2],[1,2,1,2],[1,1,2,1]],[[1,2,2,1],[0,3,1,2],[1,2,0,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,2],[1,2,0,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,2],[1,2,0,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,2],[1,2,0,2],[2,2,2,1]],[[1,2,2,1],[0,3,1,2],[1,2,0,3],[1,2,2,1]],[[1,2,2,1],[0,3,1,3],[1,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,4,1,2],[1,2,0,2],[1,2,2,1]],[[1,2,2,2],[0,3,1,2],[1,2,0,2],[1,2,2,1]],[[1,2,3,1],[0,3,1,2],[1,2,0,2],[1,2,2,1]],[[1,3,2,1],[0,3,1,2],[1,2,0,2],[1,2,2,1]],[[2,2,2,1],[0,3,1,2],[1,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,1],[0,3,1,2],[1,1,3,3],[0,2,2,0]],[[1,2,2,1],[0,3,1,2],[1,1,4,2],[0,2,2,0]],[[1,2,2,1],[0,3,1,3],[1,1,3,2],[0,2,2,0]],[[1,2,2,2],[0,3,1,2],[1,1,3,2],[0,2,2,0]],[[1,2,3,1],[0,3,1,2],[1,1,3,2],[0,2,2,0]],[[1,3,2,1],[0,3,1,2],[1,1,3,2],[0,2,2,0]],[[1,2,2,1],[0,3,1,2],[1,1,3,2],[0,2,1,2]],[[1,2,2,1],[0,3,1,2],[1,1,3,3],[0,2,1,1]],[[1,2,2,1],[0,3,1,2],[1,1,4,2],[0,2,1,1]],[[1,2,2,1],[0,3,1,3],[1,1,3,2],[0,2,1,1]],[[1,2,2,2],[0,3,1,2],[1,1,3,2],[0,2,1,1]],[[1,2,3,1],[0,3,1,2],[1,1,3,2],[0,2,1,1]],[[1,3,2,1],[0,3,1,2],[1,1,3,2],[0,2,1,1]],[[1,2,2,1],[0,3,1,3],[1,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,4,1,2],[1,1,3,1],[1,2,2,0]],[[1,2,2,2],[0,3,1,2],[1,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,3,1,2],[1,1,3,1],[1,2,2,0]],[[1,3,2,1],[0,3,1,2],[1,1,3,1],[1,2,2,0]],[[2,2,2,1],[0,3,1,2],[1,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,3],[1,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,4,1,2],[1,1,3,1],[1,2,1,1]],[[1,2,2,2],[0,3,1,2],[1,1,3,1],[1,2,1,1]],[[1,2,3,1],[0,3,1,2],[1,1,3,1],[1,2,1,1]],[[1,3,2,1],[0,3,1,2],[1,1,3,1],[1,2,1,1]],[[2,2,2,1],[0,3,1,2],[1,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,3,1,2],[1,1,3,1],[0,2,2,2]],[[1,2,2,1],[0,3,1,2],[1,1,3,1],[0,2,3,1]],[[1,2,2,1],[0,3,1,2],[1,1,4,1],[0,2,2,1]],[[1,2,2,1],[0,3,1,3],[1,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,4,1,2],[1,1,3,0],[1,2,2,1]],[[1,2,2,2],[0,3,1,2],[1,1,3,0],[1,2,2,1]],[[1,2,3,1],[0,3,1,2],[1,1,3,0],[1,2,2,1]],[[1,3,2,1],[0,3,1,2],[1,1,3,0],[1,2,2,1]],[[2,2,2,1],[0,3,1,2],[1,1,3,0],[1,2,2,1]],[[0,3,2,0],[2,3,3,2],[1,2,2,2],[0,0,1,1]],[[0,2,3,0],[2,3,3,2],[1,2,2,2],[0,0,1,1]],[[0,2,2,0],[2,3,4,2],[1,2,2,2],[0,0,1,1]],[[0,2,2,0],[2,3,3,3],[1,2,2,2],[0,0,1,1]],[[0,2,2,0],[2,3,3,2],[1,2,2,3],[0,0,1,1]],[[0,3,2,0],[2,3,3,2],[1,2,2,2],[0,0,2,0]],[[0,2,3,0],[2,3,3,2],[1,2,2,2],[0,0,2,0]],[[0,2,2,0],[2,3,4,2],[1,2,2,2],[0,0,2,0]],[[0,2,2,0],[2,3,3,3],[1,2,2,2],[0,0,2,0]],[[1,2,2,1],[0,3,1,2],[1,1,2,3],[1,2,2,0]],[[1,2,2,1],[0,3,1,3],[1,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,4,1,2],[1,1,2,2],[1,2,2,0]],[[1,2,2,2],[0,3,1,2],[1,1,2,2],[1,2,2,0]],[[1,2,3,1],[0,3,1,2],[1,1,2,2],[1,2,2,0]],[[1,3,2,1],[0,3,1,2],[1,1,2,2],[1,2,2,0]],[[2,2,2,1],[0,3,1,2],[1,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,2],[1,1,2,2],[1,2,1,2]],[[1,2,2,1],[0,3,1,2],[1,1,2,3],[1,2,1,1]],[[1,2,2,1],[0,3,1,3],[1,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,4,1,2],[1,1,2,2],[1,2,1,1]],[[1,2,2,2],[0,3,1,2],[1,1,2,2],[1,2,1,1]],[[1,2,3,1],[0,3,1,2],[1,1,2,2],[1,2,1,1]],[[1,3,2,1],[0,3,1,2],[1,1,2,2],[1,2,1,1]],[[2,2,2,1],[0,3,1,2],[1,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,3,1,2],[1,1,2,2],[0,2,2,2]],[[1,2,2,1],[0,3,1,2],[1,1,2,2],[0,2,3,1]],[[1,2,2,1],[0,3,1,2],[1,1,2,3],[0,2,2,1]],[[1,2,2,1],[0,3,1,3],[1,1,2,2],[0,2,2,1]],[[1,2,2,2],[0,3,1,2],[1,1,2,2],[0,2,2,1]],[[1,2,3,1],[0,3,1,2],[1,1,2,2],[0,2,2,1]],[[1,3,2,1],[0,3,1,2],[1,1,2,2],[0,2,2,1]],[[1,2,2,1],[0,3,1,2],[1,1,1,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,2],[1,1,1,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,2],[1,1,1,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,2],[1,1,1,2],[2,2,2,1]],[[1,2,2,1],[0,3,1,2],[1,1,1,3],[1,2,2,1]],[[1,2,2,1],[0,3,1,3],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,4,1,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,3,1,2],[1,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,3,1,2],[1,1,1,2],[1,2,2,1]],[[1,3,2,1],[0,3,1,2],[1,1,1,2],[1,2,2,1]],[[2,2,2,1],[0,3,1,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[0,3,1,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,1],[0,3,1,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,1],[0,3,1,3],[1,0,3,2],[0,2,2,1]],[[1,2,2,2],[0,3,1,2],[1,0,3,2],[0,2,2,1]],[[1,2,3,1],[0,3,1,2],[1,0,3,2],[0,2,2,1]],[[1,3,2,1],[0,3,1,2],[1,0,3,2],[0,2,2,1]],[[1,2,2,1],[0,3,1,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,1],[0,3,1,2],[0,3,4,2],[0,2,1,0]],[[1,2,2,1],[0,3,1,3],[0,3,3,2],[0,2,1,0]],[[1,2,2,2],[0,3,1,2],[0,3,3,2],[0,2,1,0]],[[1,2,3,1],[0,3,1,2],[0,3,3,2],[0,2,1,0]],[[1,3,2,1],[0,3,1,2],[0,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,1,2],[0,3,3,2],[0,2,0,2]],[[1,2,2,1],[0,3,1,2],[0,3,3,3],[0,2,0,1]],[[1,2,2,1],[0,3,1,2],[0,3,4,2],[0,2,0,1]],[[1,2,2,1],[0,3,1,3],[0,3,3,2],[0,2,0,1]],[[1,2,2,2],[0,3,1,2],[0,3,3,2],[0,2,0,1]],[[1,2,3,1],[0,3,1,2],[0,3,3,2],[0,2,0,1]],[[1,3,2,1],[0,3,1,2],[0,3,3,2],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[1,2,3,0],[0,0,2,1]],[[0,2,3,0],[2,3,3,2],[1,2,3,0],[0,0,2,1]],[[0,2,2,0],[2,3,4,2],[1,2,3,0],[0,0,2,1]],[[1,2,2,1],[0,3,1,2],[0,3,3,2],[0,1,3,0]],[[1,2,2,1],[0,3,1,2],[0,3,3,3],[0,1,2,0]],[[1,2,2,1],[0,3,1,2],[0,3,4,2],[0,1,2,0]],[[1,2,2,1],[0,3,1,3],[0,3,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,1,2],[0,3,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,1,2],[0,3,3,2],[0,1,2,0]],[[1,3,2,1],[0,3,1,2],[0,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,1,2],[0,3,3,2],[0,1,1,2]],[[1,2,2,1],[0,3,1,2],[0,3,3,3],[0,1,1,1]],[[1,2,2,1],[0,3,1,2],[0,3,4,2],[0,1,1,1]],[[1,2,2,1],[0,3,1,3],[0,3,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,1,2],[0,3,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,1,2],[0,3,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,1,2],[0,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,1,2],[0,3,3,2],[0,0,2,2]],[[1,2,2,1],[0,3,1,2],[0,3,3,3],[0,0,2,1]],[[1,2,2,1],[0,3,1,2],[0,3,4,2],[0,0,2,1]],[[1,2,2,1],[0,3,1,3],[0,3,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,1,2],[0,3,3,2],[0,0,2,1]],[[1,2,3,1],[0,3,1,2],[0,3,3,2],[0,0,2,1]],[[1,3,2,1],[0,3,1,2],[0,3,3,2],[0,0,2,1]],[[0,3,2,0],[2,3,3,2],[1,2,3,1],[0,0,1,1]],[[0,2,3,0],[2,3,3,2],[1,2,3,1],[0,0,1,1]],[[0,2,2,0],[2,3,4,2],[1,2,3,1],[0,0,1,1]],[[0,2,2,0],[2,3,3,3],[1,2,3,1],[0,0,1,1]],[[0,3,2,0],[2,3,3,2],[1,2,3,1],[0,0,2,0]],[[0,2,3,0],[2,3,3,2],[1,2,3,1],[0,0,2,0]],[[0,2,2,0],[2,3,4,2],[1,2,3,1],[0,0,2,0]],[[0,2,2,0],[2,3,3,3],[1,2,3,1],[0,0,2,0]],[[1,2,2,1],[0,3,1,2],[0,3,3,1],[0,1,2,2]],[[1,2,2,1],[0,3,1,2],[0,3,3,1],[0,1,3,1]],[[1,2,2,1],[0,3,1,2],[0,3,4,1],[0,1,2,1]],[[1,2,2,1],[0,3,1,2],[0,3,2,2],[0,1,2,2]],[[1,2,2,1],[0,3,1,2],[0,3,2,2],[0,1,3,1]],[[1,2,2,1],[0,3,1,2],[0,3,2,3],[0,1,2,1]],[[1,2,2,1],[0,3,1,3],[0,3,2,2],[0,1,2,1]],[[1,2,2,2],[0,3,1,2],[0,3,2,2],[0,1,2,1]],[[1,2,3,1],[0,3,1,2],[0,3,2,2],[0,1,2,1]],[[1,3,2,1],[0,3,1,2],[0,3,2,2],[0,1,2,1]],[[1,2,2,1],[0,3,1,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,1],[0,3,1,2],[0,2,4,2],[1,2,1,0]],[[1,2,2,1],[0,3,1,3],[0,2,3,2],[1,2,1,0]],[[1,2,2,2],[0,3,1,2],[0,2,3,2],[1,2,1,0]],[[1,2,3,1],[0,3,1,2],[0,2,3,2],[1,2,1,0]],[[1,3,2,1],[0,3,1,2],[0,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,3,1,2],[0,2,3,2],[1,2,0,2]],[[1,2,2,1],[0,3,1,2],[0,2,3,3],[1,2,0,1]],[[1,2,2,1],[0,3,1,2],[0,2,4,2],[1,2,0,1]],[[1,2,2,1],[0,3,1,3],[0,2,3,2],[1,2,0,1]],[[1,2,2,2],[0,3,1,2],[0,2,3,2],[1,2,0,1]],[[1,2,3,1],[0,3,1,2],[0,2,3,2],[1,2,0,1]],[[1,3,2,1],[0,3,1,2],[0,2,3,2],[1,2,0,1]],[[1,2,2,1],[0,3,1,2],[0,2,3,2],[1,1,3,0]],[[1,2,2,1],[0,3,1,2],[0,2,3,3],[1,1,2,0]],[[1,2,2,1],[0,3,1,2],[0,2,4,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,3],[0,2,3,2],[1,1,2,0]],[[1,2,2,2],[0,3,1,2],[0,2,3,2],[1,1,2,0]],[[1,2,3,1],[0,3,1,2],[0,2,3,2],[1,1,2,0]],[[1,3,2,1],[0,3,1,2],[0,2,3,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,2],[0,2,3,2],[1,1,1,2]],[[1,2,2,1],[0,3,1,2],[0,2,3,3],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[0,2,4,2],[1,1,1,1]],[[1,2,2,1],[0,3,1,3],[0,2,3,2],[1,1,1,1]],[[1,2,2,2],[0,3,1,2],[0,2,3,2],[1,1,1,1]],[[1,2,3,1],[0,3,1,2],[0,2,3,2],[1,1,1,1]],[[1,3,2,1],[0,3,1,2],[0,2,3,2],[1,1,1,1]],[[1,2,2,1],[0,3,1,2],[0,2,3,2],[1,0,2,2]],[[1,2,2,1],[0,3,1,2],[0,2,3,3],[1,0,2,1]],[[1,2,2,1],[0,3,1,2],[0,2,4,2],[1,0,2,1]],[[1,2,2,1],[0,3,1,3],[0,2,3,2],[1,0,2,1]],[[1,2,2,2],[0,3,1,2],[0,2,3,2],[1,0,2,1]],[[1,2,3,1],[0,3,1,2],[0,2,3,2],[1,0,2,1]],[[1,3,2,1],[0,3,1,2],[0,2,3,2],[1,0,2,1]],[[1,2,2,1],[0,3,1,2],[0,2,3,1],[1,1,2,2]],[[1,2,2,1],[0,3,1,2],[0,2,3,1],[1,1,3,1]],[[1,2,2,1],[0,3,1,2],[0,2,4,1],[1,1,2,1]],[[1,2,2,1],[0,3,1,2],[0,2,2,2],[1,1,2,2]],[[1,2,2,1],[0,3,1,2],[0,2,2,2],[1,1,3,1]],[[1,2,2,1],[0,3,1,2],[0,2,2,3],[1,1,2,1]],[[1,2,2,1],[0,3,1,3],[0,2,2,2],[1,1,2,1]],[[1,2,2,2],[0,3,1,2],[0,2,2,2],[1,1,2,1]],[[1,2,3,1],[0,3,1,2],[0,2,2,2],[1,1,2,1]],[[1,3,2,1],[0,3,1,2],[0,2,2,2],[1,1,2,1]],[[0,3,2,0],[2,3,3,2],[1,2,3,2],[0,0,0,1]],[[0,2,3,0],[2,3,3,2],[1,2,3,2],[0,0,0,1]],[[0,2,2,0],[2,3,4,2],[1,2,3,2],[0,0,0,1]],[[0,2,2,0],[2,3,3,3],[1,2,3,2],[0,0,0,1]],[[0,2,2,0],[2,3,3,2],[1,2,3,3],[0,0,0,1]],[[1,2,2,1],[0,3,1,2],[0,1,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,1,2],[0,1,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,1,2],[0,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,3,1,2],[0,1,4,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,3],[0,1,3,2],[1,2,2,0]],[[1,2,2,2],[0,3,1,2],[0,1,3,2],[1,2,2,0]],[[1,2,3,1],[0,3,1,2],[0,1,3,2],[1,2,2,0]],[[1,3,2,1],[0,3,1,2],[0,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,2],[0,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,3,1,2],[0,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,3,1,2],[0,1,4,2],[1,2,1,1]],[[1,2,2,1],[0,3,1,3],[0,1,3,2],[1,2,1,1]],[[1,2,2,2],[0,3,1,2],[0,1,3,2],[1,2,1,1]],[[1,2,3,1],[0,3,1,2],[0,1,3,2],[1,2,1,1]],[[1,3,2,1],[0,3,1,2],[0,1,3,2],[1,2,1,1]],[[1,2,2,1],[0,3,1,2],[0,1,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,1,2],[0,1,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,1,2],[0,1,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,1,2],[0,1,4,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[0,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,2],[0,1,2,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,2],[0,1,2,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,2],[0,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,3,1,3],[0,1,2,2],[1,2,2,1]],[[1,2,2,2],[0,3,1,2],[0,1,2,2],[1,2,2,1]],[[1,2,3,1],[0,3,1,2],[0,1,2,2],[1,2,2,1]],[[1,3,2,1],[0,3,1,2],[0,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,1],[0,3,1,3],[0,0,3,2],[1,2,2,1]],[[1,2,2,2],[0,3,1,2],[0,0,3,2],[1,2,2,1]],[[1,2,3,1],[0,3,1,2],[0,0,3,2],[1,2,2,1]],[[1,3,2,1],[0,3,1,2],[0,0,3,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[0,3,1,1],[2,4,3,1],[1,2,0,0]],[[1,2,2,1],[0,3,1,1],[3,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,4,1,1],[2,3,3,1],[1,2,0,0]],[[1,2,2,2],[0,3,1,1],[2,3,3,1],[1,2,0,0]],[[1,2,3,1],[0,3,1,1],[2,3,3,1],[1,2,0,0]],[[1,3,2,1],[0,3,1,1],[2,3,3,1],[1,2,0,0]],[[2,2,2,1],[0,3,1,1],[2,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,3,1,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[0,3,1,1],[2,3,4,1],[1,1,1,0]],[[1,2,2,1],[0,3,1,1],[2,4,3,1],[1,1,1,0]],[[1,2,2,1],[0,3,1,1],[3,3,3,1],[1,1,1,0]],[[1,2,2,1],[0,4,1,1],[2,3,3,1],[1,1,1,0]],[[1,2,2,2],[0,3,1,1],[2,3,3,1],[1,1,1,0]],[[1,2,3,1],[0,3,1,1],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[0,3,1,1],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[0,3,1,1],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[0,3,1,1],[2,3,3,1],[2,1,0,1]],[[1,2,2,1],[0,3,1,1],[2,3,4,1],[1,1,0,1]],[[1,2,2,1],[0,3,1,1],[2,4,3,1],[1,1,0,1]],[[1,2,2,1],[0,3,1,1],[3,3,3,1],[1,1,0,1]],[[1,2,2,1],[0,4,1,1],[2,3,3,1],[1,1,0,1]],[[1,2,2,2],[0,3,1,1],[2,3,3,1],[1,1,0,1]],[[1,2,3,1],[0,3,1,1],[2,3,3,1],[1,1,0,1]],[[1,3,2,1],[0,3,1,1],[2,3,3,1],[1,1,0,1]],[[2,2,2,1],[0,3,1,1],[2,3,3,1],[1,1,0,1]],[[0,3,2,0],[2,3,3,2],[1,3,0,0],[0,2,2,1]],[[0,2,3,0],[2,3,3,2],[1,3,0,0],[0,2,2,1]],[[0,2,2,0],[3,3,3,2],[1,3,0,0],[0,2,2,1]],[[0,2,2,0],[2,4,3,2],[1,3,0,0],[0,2,2,1]],[[0,3,2,0],[2,3,3,2],[1,3,0,0],[1,1,2,1]],[[0,2,3,0],[2,3,3,2],[1,3,0,0],[1,1,2,1]],[[0,2,2,0],[3,3,3,2],[1,3,0,0],[1,1,2,1]],[[0,2,2,0],[2,4,3,2],[1,3,0,0],[1,1,2,1]],[[0,3,2,0],[2,3,3,2],[1,3,0,1],[0,2,2,0]],[[0,2,3,0],[2,3,3,2],[1,3,0,1],[0,2,2,0]],[[0,2,2,0],[3,3,3,2],[1,3,0,1],[0,2,2,0]],[[0,2,2,0],[2,4,3,2],[1,3,0,1],[0,2,2,0]],[[0,3,2,0],[2,3,3,2],[1,3,0,1],[1,1,2,0]],[[0,2,3,0],[2,3,3,2],[1,3,0,1],[1,1,2,0]],[[0,2,2,0],[3,3,3,2],[1,3,0,1],[1,1,2,0]],[[0,2,2,0],[2,4,3,2],[1,3,0,1],[1,1,2,0]],[[1,2,2,1],[0,3,1,1],[2,3,3,1],[1,0,3,0]],[[1,2,2,1],[0,3,1,1],[2,3,3,1],[2,0,2,0]],[[1,2,2,1],[0,3,1,1],[2,3,4,1],[1,0,2,0]],[[1,2,2,1],[0,3,1,1],[2,4,3,1],[1,0,2,0]],[[1,2,2,1],[0,3,1,1],[3,3,3,1],[1,0,2,0]],[[0,3,2,0],[2,3,3,2],[1,3,0,2],[0,1,1,1]],[[0,2,3,0],[2,3,3,2],[1,3,0,2],[0,1,1,1]],[[0,2,2,0],[3,3,3,2],[1,3,0,2],[0,1,1,1]],[[0,2,2,0],[2,4,3,2],[1,3,0,2],[0,1,1,1]],[[0,3,2,0],[2,3,3,2],[1,3,0,2],[0,1,2,0]],[[0,2,3,0],[2,3,3,2],[1,3,0,2],[0,1,2,0]],[[0,2,2,0],[3,3,3,2],[1,3,0,2],[0,1,2,0]],[[0,2,2,0],[2,4,3,2],[1,3,0,2],[0,1,2,0]],[[0,3,2,0],[2,3,3,2],[1,3,0,2],[0,2,0,1]],[[0,2,3,0],[2,3,3,2],[1,3,0,2],[0,2,0,1]],[[0,2,2,0],[3,3,3,2],[1,3,0,2],[0,2,0,1]],[[0,2,2,0],[2,4,3,2],[1,3,0,2],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[1,3,0,2],[0,2,1,0]],[[0,2,3,0],[2,3,3,2],[1,3,0,2],[0,2,1,0]],[[0,2,2,0],[3,3,3,2],[1,3,0,2],[0,2,1,0]],[[0,2,2,0],[2,4,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,2,1],[0,4,1,1],[2,3,3,1],[1,0,2,0]],[[1,2,2,2],[0,3,1,1],[2,3,3,1],[1,0,2,0]],[[1,2,3,1],[0,3,1,1],[2,3,3,1],[1,0,2,0]],[[1,3,2,1],[0,3,1,1],[2,3,3,1],[1,0,2,0]],[[2,2,2,1],[0,3,1,1],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[0,3,1,1],[2,3,3,1],[2,0,1,1]],[[1,2,2,1],[0,3,1,1],[2,3,4,1],[1,0,1,1]],[[1,2,2,1],[0,3,1,1],[2,4,3,1],[1,0,1,1]],[[1,2,2,1],[0,3,1,1],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[0,4,1,1],[2,3,3,1],[1,0,1,1]],[[1,2,2,2],[0,3,1,1],[2,3,3,1],[1,0,1,1]],[[0,3,2,0],[2,3,3,2],[1,3,0,2],[1,0,1,1]],[[0,2,3,0],[2,3,3,2],[1,3,0,2],[1,0,1,1]],[[0,2,2,0],[3,3,3,2],[1,3,0,2],[1,0,1,1]],[[0,2,2,0],[2,4,3,2],[1,3,0,2],[1,0,1,1]],[[0,3,2,0],[2,3,3,2],[1,3,0,2],[1,0,2,0]],[[0,2,3,0],[2,3,3,2],[1,3,0,2],[1,0,2,0]],[[0,2,2,0],[3,3,3,2],[1,3,0,2],[1,0,2,0]],[[0,2,2,0],[2,4,3,2],[1,3,0,2],[1,0,2,0]],[[0,3,2,0],[2,3,3,2],[1,3,0,2],[1,1,0,1]],[[0,2,3,0],[2,3,3,2],[1,3,0,2],[1,1,0,1]],[[0,2,2,0],[3,3,3,2],[1,3,0,2],[1,1,0,1]],[[0,2,2,0],[2,4,3,2],[1,3,0,2],[1,1,0,1]],[[0,3,2,0],[2,3,3,2],[1,3,0,2],[1,1,1,0]],[[0,2,3,0],[2,3,3,2],[1,3,0,2],[1,1,1,0]],[[0,2,2,0],[3,3,3,2],[1,3,0,2],[1,1,1,0]],[[0,2,2,0],[2,4,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,3,1],[0,3,1,1],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[0,3,1,1],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[0,3,1,1],[2,3,3,1],[1,0,1,1]],[[0,3,2,0],[2,3,3,2],[1,3,0,2],[1,2,0,0]],[[0,2,3,0],[2,3,3,2],[1,3,0,2],[1,2,0,0]],[[0,2,2,0],[3,3,3,2],[1,3,0,2],[1,2,0,0]],[[0,2,2,0],[2,4,3,2],[1,3,0,2],[1,2,0,0]],[[1,2,2,1],[0,3,1,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[0,3,1,1],[2,3,4,1],[0,2,1,0]],[[1,2,2,1],[0,3,1,1],[2,4,3,1],[0,2,1,0]],[[1,2,2,1],[0,3,1,1],[3,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,4,1,1],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[0,3,1,1],[2,3,3,1],[0,2,1,0]],[[1,2,3,1],[0,3,1,1],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[0,3,1,1],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[0,3,1,1],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,3,1,1],[2,3,3,1],[0,3,0,1]],[[1,2,2,1],[0,3,1,1],[2,3,4,1],[0,2,0,1]],[[1,2,2,1],[0,3,1,1],[2,4,3,1],[0,2,0,1]],[[1,2,2,1],[0,3,1,1],[3,3,3,1],[0,2,0,1]],[[1,2,2,1],[0,4,1,1],[2,3,3,1],[0,2,0,1]],[[1,2,2,2],[0,3,1,1],[2,3,3,1],[0,2,0,1]],[[1,2,3,1],[0,3,1,1],[2,3,3,1],[0,2,0,1]],[[1,3,2,1],[0,3,1,1],[2,3,3,1],[0,2,0,1]],[[2,2,2,1],[0,3,1,1],[2,3,3,1],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[1,3,1,0],[0,1,2,1]],[[0,2,3,0],[2,3,3,2],[1,3,1,0],[0,1,2,1]],[[0,2,2,0],[3,3,3,2],[1,3,1,0],[0,1,2,1]],[[0,2,2,0],[2,4,3,2],[1,3,1,0],[0,1,2,1]],[[0,3,2,0],[2,3,3,2],[1,3,1,0],[0,2,1,1]],[[0,2,3,0],[2,3,3,2],[1,3,1,0],[0,2,1,1]],[[0,2,2,0],[3,3,3,2],[1,3,1,0],[0,2,1,1]],[[0,2,2,0],[2,4,3,2],[1,3,1,0],[0,2,1,1]],[[0,3,2,0],[2,3,3,2],[1,3,1,0],[1,0,2,1]],[[0,2,3,0],[2,3,3,2],[1,3,1,0],[1,0,2,1]],[[0,2,2,0],[3,3,3,2],[1,3,1,0],[1,0,2,1]],[[0,2,2,0],[2,4,3,2],[1,3,1,0],[1,0,2,1]],[[0,3,2,0],[2,3,3,2],[1,3,1,0],[1,1,1,1]],[[0,2,3,0],[2,3,3,2],[1,3,1,0],[1,1,1,1]],[[0,2,2,0],[3,3,3,2],[1,3,1,0],[1,1,1,1]],[[0,2,2,0],[2,4,3,2],[1,3,1,0],[1,1,1,1]],[[0,3,2,0],[2,3,3,2],[1,3,1,0],[1,2,0,1]],[[0,2,3,0],[2,3,3,2],[1,3,1,0],[1,2,0,1]],[[0,2,2,0],[3,3,3,2],[1,3,1,0],[1,2,0,1]],[[0,2,2,0],[2,4,3,2],[1,3,1,0],[1,2,0,1]],[[1,2,2,1],[0,3,1,1],[2,3,3,1],[0,1,3,0]],[[1,2,2,1],[0,3,1,1],[2,3,4,1],[0,1,2,0]],[[1,2,2,1],[0,3,1,1],[2,4,3,1],[0,1,2,0]],[[1,2,2,1],[0,3,1,1],[3,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,4,1,1],[2,3,3,1],[0,1,2,0]],[[0,3,2,0],[2,3,3,2],[1,3,1,1],[0,1,1,1]],[[0,2,3,0],[2,3,3,2],[1,3,1,1],[0,1,1,1]],[[0,2,2,0],[3,3,3,2],[1,3,1,1],[0,1,1,1]],[[0,2,2,0],[2,4,3,2],[1,3,1,1],[0,1,1,1]],[[0,3,2,0],[2,3,3,2],[1,3,1,1],[0,1,2,0]],[[0,2,3,0],[2,3,3,2],[1,3,1,1],[0,1,2,0]],[[0,2,2,0],[3,3,3,2],[1,3,1,1],[0,1,2,0]],[[0,2,2,0],[2,4,3,2],[1,3,1,1],[0,1,2,0]],[[0,3,2,0],[2,3,3,2],[1,3,1,1],[0,2,0,1]],[[0,2,3,0],[2,3,3,2],[1,3,1,1],[0,2,0,1]],[[0,2,2,0],[3,3,3,2],[1,3,1,1],[0,2,0,1]],[[0,2,2,0],[2,4,3,2],[1,3,1,1],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[1,3,1,1],[0,2,1,0]],[[0,2,3,0],[2,3,3,2],[1,3,1,1],[0,2,1,0]],[[0,2,2,0],[3,3,3,2],[1,3,1,1],[0,2,1,0]],[[0,2,2,0],[2,4,3,2],[1,3,1,1],[0,2,1,0]],[[1,2,2,2],[0,3,1,1],[2,3,3,1],[0,1,2,0]],[[1,2,3,1],[0,3,1,1],[2,3,3,1],[0,1,2,0]],[[1,3,2,1],[0,3,1,1],[2,3,3,1],[0,1,2,0]],[[2,2,2,1],[0,3,1,1],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,3,1,1],[2,3,4,1],[0,1,1,1]],[[1,2,2,1],[0,3,1,1],[2,4,3,1],[0,1,1,1]],[[1,2,2,1],[0,3,1,1],[3,3,3,1],[0,1,1,1]],[[1,2,2,1],[0,4,1,1],[2,3,3,1],[0,1,1,1]],[[1,2,2,2],[0,3,1,1],[2,3,3,1],[0,1,1,1]],[[1,2,3,1],[0,3,1,1],[2,3,3,1],[0,1,1,1]],[[0,3,2,0],[2,3,3,2],[1,3,1,1],[1,0,1,1]],[[0,2,3,0],[2,3,3,2],[1,3,1,1],[1,0,1,1]],[[0,2,2,0],[3,3,3,2],[1,3,1,1],[1,0,1,1]],[[0,2,2,0],[2,4,3,2],[1,3,1,1],[1,0,1,1]],[[0,3,2,0],[2,3,3,2],[1,3,1,1],[1,0,2,0]],[[0,2,3,0],[2,3,3,2],[1,3,1,1],[1,0,2,0]],[[0,2,2,0],[3,3,3,2],[1,3,1,1],[1,0,2,0]],[[0,2,2,0],[2,4,3,2],[1,3,1,1],[1,0,2,0]],[[0,3,2,0],[2,3,3,2],[1,3,1,1],[1,1,0,1]],[[0,2,3,0],[2,3,3,2],[1,3,1,1],[1,1,0,1]],[[0,2,2,0],[3,3,3,2],[1,3,1,1],[1,1,0,1]],[[0,2,2,0],[2,4,3,2],[1,3,1,1],[1,1,0,1]],[[0,3,2,0],[2,3,3,2],[1,3,1,1],[1,1,1,0]],[[0,2,3,0],[2,3,3,2],[1,3,1,1],[1,1,1,0]],[[0,2,2,0],[3,3,3,2],[1,3,1,1],[1,1,1,0]],[[0,2,2,0],[2,4,3,2],[1,3,1,1],[1,1,1,0]],[[1,3,2,1],[0,3,1,1],[2,3,3,1],[0,1,1,1]],[[2,2,2,1],[0,3,1,1],[2,3,3,1],[0,1,1,1]],[[0,3,2,0],[2,3,3,2],[1,3,1,1],[1,2,0,0]],[[0,2,3,0],[2,3,3,2],[1,3,1,1],[1,2,0,0]],[[0,2,2,0],[3,3,3,2],[1,3,1,1],[1,2,0,0]],[[0,2,2,0],[2,4,3,2],[1,3,1,1],[1,2,0,0]],[[1,2,2,1],[0,3,1,1],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[0,3,1,1],[2,4,3,0],[1,2,0,1]],[[1,2,2,1],[0,3,1,1],[3,3,3,0],[1,2,0,1]],[[1,2,2,1],[0,4,1,1],[2,3,3,0],[1,2,0,1]],[[1,2,2,2],[0,3,1,1],[2,3,3,0],[1,2,0,1]],[[1,2,3,1],[0,3,1,1],[2,3,3,0],[1,2,0,1]],[[1,3,2,1],[0,3,1,1],[2,3,3,0],[1,2,0,1]],[[2,2,2,1],[0,3,1,1],[2,3,3,0],[1,2,0,1]],[[1,2,2,1],[0,3,1,1],[2,3,3,0],[2,1,1,1]],[[1,2,2,1],[0,3,1,1],[2,3,4,0],[1,1,1,1]],[[1,2,2,1],[0,3,1,1],[2,4,3,0],[1,1,1,1]],[[1,2,2,1],[0,3,1,1],[3,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,4,1,1],[2,3,3,0],[1,1,1,1]],[[1,2,2,2],[0,3,1,1],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[0,3,1,1],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[0,3,1,1],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[0,3,1,1],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,3,1,1],[2,3,3,0],[1,0,2,2]],[[1,2,2,1],[0,3,1,1],[2,3,3,0],[1,0,3,1]],[[1,2,2,1],[0,3,1,1],[2,3,3,0],[2,0,2,1]],[[1,2,2,1],[0,3,1,1],[2,3,4,0],[1,0,2,1]],[[1,2,2,1],[0,3,1,1],[2,4,3,0],[1,0,2,1]],[[1,2,2,1],[0,3,1,1],[3,3,3,0],[1,0,2,1]],[[1,2,2,1],[0,4,1,1],[2,3,3,0],[1,0,2,1]],[[1,2,2,2],[0,3,1,1],[2,3,3,0],[1,0,2,1]],[[1,2,3,1],[0,3,1,1],[2,3,3,0],[1,0,2,1]],[[1,3,2,1],[0,3,1,1],[2,3,3,0],[1,0,2,1]],[[2,2,2,1],[0,3,1,1],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[0,3,1,1],[2,3,3,0],[0,3,1,1]],[[1,2,2,1],[0,3,1,1],[2,3,4,0],[0,2,1,1]],[[1,2,2,1],[0,3,1,1],[2,4,3,0],[0,2,1,1]],[[1,2,2,1],[0,3,1,1],[3,3,3,0],[0,2,1,1]],[[1,2,2,1],[0,4,1,1],[2,3,3,0],[0,2,1,1]],[[1,2,2,2],[0,3,1,1],[2,3,3,0],[0,2,1,1]],[[1,2,3,1],[0,3,1,1],[2,3,3,0],[0,2,1,1]],[[1,3,2,1],[0,3,1,1],[2,3,3,0],[0,2,1,1]],[[2,2,2,1],[0,3,1,1],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[0,3,1,1],[2,3,3,0],[0,1,2,2]],[[1,2,2,1],[0,3,1,1],[2,3,3,0],[0,1,3,1]],[[1,2,2,1],[0,3,1,1],[2,3,4,0],[0,1,2,1]],[[1,2,2,1],[0,3,1,1],[2,4,3,0],[0,1,2,1]],[[1,2,2,1],[0,3,1,1],[3,3,3,0],[0,1,2,1]],[[1,2,2,1],[0,4,1,1],[2,3,3,0],[0,1,2,1]],[[1,2,2,2],[0,3,1,1],[2,3,3,0],[0,1,2,1]],[[1,2,3,1],[0,3,1,1],[2,3,3,0],[0,1,2,1]],[[1,3,2,1],[0,3,1,1],[2,3,3,0],[0,1,2,1]],[[2,2,2,1],[0,3,1,1],[2,3,3,0],[0,1,2,1]],[[1,2,2,1],[0,3,1,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[0,3,1,1],[2,4,2,1],[1,1,2,0]],[[1,2,2,1],[0,3,1,1],[3,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,4,1,1],[2,3,2,1],[1,1,2,0]],[[1,2,2,2],[0,3,1,1],[2,3,2,1],[1,1,2,0]],[[1,2,3,1],[0,3,1,1],[2,3,2,1],[1,1,2,0]],[[1,3,2,1],[0,3,1,1],[2,3,2,1],[1,1,2,0]],[[2,2,2,1],[0,3,1,1],[2,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,3,1,1],[2,3,2,1],[0,2,3,0]],[[1,2,2,1],[0,3,1,1],[2,3,2,1],[0,3,2,0]],[[1,2,2,1],[0,3,1,1],[2,4,2,1],[0,2,2,0]],[[1,2,2,1],[0,3,1,1],[3,3,2,1],[0,2,2,0]],[[1,2,2,1],[0,4,1,1],[2,3,2,1],[0,2,2,0]],[[1,2,2,2],[0,3,1,1],[2,3,2,1],[0,2,2,0]],[[1,2,3,1],[0,3,1,1],[2,3,2,1],[0,2,2,0]],[[1,3,2,1],[0,3,1,1],[2,3,2,1],[0,2,2,0]],[[2,2,2,1],[0,3,1,1],[2,3,2,1],[0,2,2,0]],[[1,2,2,1],[0,3,1,1],[2,3,2,0],[2,1,2,1]],[[1,2,2,1],[0,3,1,1],[2,4,2,0],[1,1,2,1]],[[1,2,2,1],[0,3,1,1],[3,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,4,1,1],[2,3,2,0],[1,1,2,1]],[[1,2,2,2],[0,3,1,1],[2,3,2,0],[1,1,2,1]],[[1,2,3,1],[0,3,1,1],[2,3,2,0],[1,1,2,1]],[[1,3,2,1],[0,3,1,1],[2,3,2,0],[1,1,2,1]],[[2,2,2,1],[0,3,1,1],[2,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,3,1,1],[2,3,2,0],[0,2,2,2]],[[1,2,2,1],[0,3,1,1],[2,3,2,0],[0,2,3,1]],[[1,2,2,1],[0,3,1,1],[2,3,2,0],[0,3,2,1]],[[1,2,2,1],[0,3,1,1],[2,4,2,0],[0,2,2,1]],[[1,2,2,1],[0,3,1,1],[3,3,2,0],[0,2,2,1]],[[1,2,2,1],[0,4,1,1],[2,3,2,0],[0,2,2,1]],[[1,2,2,2],[0,3,1,1],[2,3,2,0],[0,2,2,1]],[[1,2,3,1],[0,3,1,1],[2,3,2,0],[0,2,2,1]],[[1,3,2,1],[0,3,1,1],[2,3,2,0],[0,2,2,1]],[[2,2,2,1],[0,3,1,1],[2,3,2,0],[0,2,2,1]],[[1,2,2,1],[0,3,1,1],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[0,3,1,1],[2,3,1,1],[2,2,2,0]],[[1,2,2,1],[0,3,1,1],[3,3,1,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,1],[2,3,1,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,1],[2,3,1,0],[2,2,2,1]],[[1,2,2,1],[0,3,1,1],[3,3,1,0],[1,2,2,1]],[[0,3,2,0],[2,3,3,2],[1,3,2,1],[0,2,0,0]],[[0,2,3,0],[2,3,3,2],[1,3,2,1],[0,2,0,0]],[[0,2,2,0],[3,3,3,2],[1,3,2,1],[0,2,0,0]],[[0,2,2,0],[2,4,3,2],[1,3,2,1],[0,2,0,0]],[[1,2,2,1],[0,3,1,1],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[0,3,1,1],[2,4,0,2],[1,1,2,1]],[[1,2,2,1],[0,3,1,1],[3,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,4,1,1],[2,3,0,2],[1,1,2,1]],[[1,2,2,2],[0,3,1,1],[2,3,0,2],[1,1,2,1]],[[1,2,3,1],[0,3,1,1],[2,3,0,2],[1,1,2,1]],[[1,3,2,1],[0,3,1,1],[2,3,0,2],[1,1,2,1]],[[2,2,2,1],[0,3,1,1],[2,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,3,1,1],[2,3,0,2],[0,2,2,2]],[[1,2,2,1],[0,3,1,1],[2,3,0,2],[0,2,3,1]],[[1,2,2,1],[0,3,1,1],[2,3,0,2],[0,3,2,1]],[[1,2,2,1],[0,3,1,1],[2,3,0,3],[0,2,2,1]],[[1,2,2,1],[0,3,1,1],[2,4,0,2],[0,2,2,1]],[[1,2,2,1],[0,3,1,1],[3,3,0,2],[0,2,2,1]],[[1,2,2,1],[0,4,1,1],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[0,3,1,1],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[0,3,1,1],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[0,3,1,1],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[0,3,1,1],[2,3,0,2],[0,2,2,1]],[[0,3,2,0],[2,3,3,2],[1,3,2,1],[1,1,0,0]],[[0,2,3,0],[2,3,3,2],[1,3,2,1],[1,1,0,0]],[[0,2,2,0],[3,3,3,2],[1,3,2,1],[1,1,0,0]],[[0,2,2,0],[2,4,3,2],[1,3,2,1],[1,1,0,0]],[[1,2,2,1],[0,3,1,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[0,3,1,1],[2,2,3,1],[2,2,1,0]],[[1,2,2,1],[0,3,1,1],[3,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,3,1,1],[2,2,3,1],[1,3,0,1]],[[1,2,2,1],[0,3,1,1],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[0,3,1,1],[3,2,3,1],[1,2,0,1]],[[1,2,2,1],[0,3,1,1],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[0,3,1,1],[2,2,3,1],[0,3,2,0]],[[1,2,2,1],[0,3,1,1],[2,2,4,1],[0,2,2,0]],[[1,2,2,1],[0,3,1,1],[2,2,3,0],[1,3,1,1]],[[1,2,2,1],[0,3,1,1],[2,2,3,0],[2,2,1,1]],[[1,2,2,1],[0,3,1,1],[3,2,3,0],[1,2,1,1]],[[1,2,2,1],[0,3,1,1],[2,2,3,0],[0,2,2,2]],[[1,2,2,1],[0,3,1,1],[2,2,3,0],[0,2,3,1]],[[1,2,2,1],[0,3,1,1],[2,2,3,0],[0,3,2,1]],[[1,2,2,1],[0,3,1,1],[2,2,4,0],[0,2,2,1]],[[1,2,2,1],[0,3,1,1],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[0,3,1,1],[2,2,2,1],[1,3,2,0]],[[1,2,2,1],[0,3,1,1],[2,2,2,1],[2,2,2,0]],[[1,2,2,1],[0,3,1,1],[3,2,2,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,1],[2,2,2,0],[1,2,2,2]],[[1,2,2,1],[0,3,1,1],[2,2,2,0],[1,2,3,1]],[[1,2,2,1],[0,3,1,1],[2,2,2,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,1],[2,2,2,0],[2,2,2,1]],[[1,2,2,1],[0,3,1,1],[3,2,2,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,1],[2,2,0,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,1],[2,2,0,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,1],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,1],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[0,3,1,1],[2,2,0,3],[1,2,2,1]],[[1,2,2,1],[0,3,1,1],[3,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,1],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[0,3,1,1],[2,1,3,1],[1,3,2,0]],[[1,2,2,1],[0,3,1,1],[2,1,3,1],[2,2,2,0]],[[1,2,2,1],[0,3,1,1],[2,1,4,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,1],[3,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,1],[2,1,3,0],[1,2,2,2]],[[1,2,2,1],[0,3,1,1],[2,1,3,0],[1,2,3,1]],[[1,2,2,1],[0,3,1,1],[2,1,3,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,1],[2,1,3,0],[2,2,2,1]],[[1,2,2,1],[0,3,1,1],[2,1,4,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,1],[3,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[0,3,1,1],[1,3,3,1],[2,2,1,0]],[[1,2,2,1],[0,3,1,1],[1,3,4,1],[1,2,1,0]],[[1,2,2,1],[0,3,1,1],[1,4,3,1],[1,2,1,0]],[[1,2,2,1],[0,4,1,1],[1,3,3,1],[1,2,1,0]],[[1,2,2,2],[0,3,1,1],[1,3,3,1],[1,2,1,0]],[[1,2,3,1],[0,3,1,1],[1,3,3,1],[1,2,1,0]],[[1,3,2,1],[0,3,1,1],[1,3,3,1],[1,2,1,0]],[[2,2,2,1],[0,3,1,1],[1,3,3,1],[1,2,1,0]],[[1,2,2,1],[0,3,1,1],[1,3,3,1],[1,3,0,1]],[[1,2,2,1],[0,3,1,1],[1,3,3,1],[2,2,0,1]],[[1,2,2,1],[0,3,1,1],[1,3,4,1],[1,2,0,1]],[[1,2,2,1],[0,3,1,1],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[0,4,1,1],[1,3,3,1],[1,2,0,1]],[[1,2,2,2],[0,3,1,1],[1,3,3,1],[1,2,0,1]],[[1,2,3,1],[0,3,1,1],[1,3,3,1],[1,2,0,1]],[[1,3,2,1],[0,3,1,1],[1,3,3,1],[1,2,0,1]],[[2,2,2,1],[0,3,1,1],[1,3,3,1],[1,2,0,1]],[[1,2,2,1],[0,3,1,1],[1,3,3,1],[1,1,3,0]],[[1,2,2,1],[0,3,1,1],[1,3,4,1],[1,1,2,0]],[[1,2,2,1],[0,3,1,1],[1,4,3,1],[1,1,2,0]],[[1,2,2,1],[0,4,1,1],[1,3,3,1],[1,1,2,0]],[[1,2,2,2],[0,3,1,1],[1,3,3,1],[1,1,2,0]],[[1,2,3,1],[0,3,1,1],[1,3,3,1],[1,1,2,0]],[[1,3,2,1],[0,3,1,1],[1,3,3,1],[1,1,2,0]],[[2,2,2,1],[0,3,1,1],[1,3,3,1],[1,1,2,0]],[[1,2,2,1],[0,3,1,1],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[0,3,1,1],[1,4,3,1],[1,1,1,1]],[[1,2,2,1],[0,4,1,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[0,3,1,1],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[0,3,1,1],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[0,3,1,1],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[0,3,1,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,3,1,1],[1,3,3,0],[1,3,1,1]],[[1,2,2,1],[0,3,1,1],[1,3,3,0],[2,2,1,1]],[[1,2,2,1],[0,3,1,1],[1,3,4,0],[1,2,1,1]],[[1,2,2,1],[0,3,1,1],[1,4,3,0],[1,2,1,1]],[[1,2,2,1],[0,4,1,1],[1,3,3,0],[1,2,1,1]],[[1,2,2,2],[0,3,1,1],[1,3,3,0],[1,2,1,1]],[[1,2,3,1],[0,3,1,1],[1,3,3,0],[1,2,1,1]],[[1,3,2,1],[0,3,1,1],[1,3,3,0],[1,2,1,1]],[[2,2,2,1],[0,3,1,1],[1,3,3,0],[1,2,1,1]],[[1,2,2,1],[0,3,1,1],[1,3,3,0],[1,1,2,2]],[[1,2,2,1],[0,3,1,1],[1,3,3,0],[1,1,3,1]],[[1,2,2,1],[0,3,1,1],[1,3,4,0],[1,1,2,1]],[[1,2,2,1],[0,3,1,1],[1,4,3,0],[1,1,2,1]],[[1,2,2,1],[0,4,1,1],[1,3,3,0],[1,1,2,1]],[[1,2,2,2],[0,3,1,1],[1,3,3,0],[1,1,2,1]],[[1,2,3,1],[0,3,1,1],[1,3,3,0],[1,1,2,1]],[[1,3,2,1],[0,3,1,1],[1,3,3,0],[1,1,2,1]],[[2,2,2,1],[0,3,1,1],[1,3,3,0],[1,1,2,1]],[[1,2,2,1],[0,3,1,1],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[0,3,1,1],[1,3,2,1],[1,3,2,0]],[[1,2,2,1],[0,3,1,1],[1,3,2,1],[2,2,2,0]],[[1,2,2,1],[0,3,1,1],[1,4,2,1],[1,2,2,0]],[[1,2,2,1],[0,4,1,1],[1,3,2,1],[1,2,2,0]],[[1,2,2,2],[0,3,1,1],[1,3,2,1],[1,2,2,0]],[[1,2,3,1],[0,3,1,1],[1,3,2,1],[1,2,2,0]],[[1,3,2,1],[0,3,1,1],[1,3,2,1],[1,2,2,0]],[[2,2,2,1],[0,3,1,1],[1,3,2,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,1],[1,3,2,0],[1,2,2,2]],[[1,2,2,1],[0,3,1,1],[1,3,2,0],[1,2,3,1]],[[1,2,2,1],[0,3,1,1],[1,3,2,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,1],[1,3,2,0],[2,2,2,1]],[[1,2,2,1],[0,3,1,1],[1,4,2,0],[1,2,2,1]],[[1,2,2,1],[0,4,1,1],[1,3,2,0],[1,2,2,1]],[[1,2,2,2],[0,3,1,1],[1,3,2,0],[1,2,2,1]],[[1,2,3,1],[0,3,1,1],[1,3,2,0],[1,2,2,1]],[[1,3,2,1],[0,3,1,1],[1,3,2,0],[1,2,2,1]],[[2,2,2,1],[0,3,1,1],[1,3,2,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,1],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,1],[1,3,0,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,1],[1,3,0,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,1],[1,3,0,2],[2,2,2,1]],[[1,2,2,1],[0,3,1,1],[1,3,0,3],[1,2,2,1]],[[1,2,2,1],[0,3,1,1],[1,4,0,2],[1,2,2,1]],[[1,2,2,1],[0,4,1,1],[1,3,0,2],[1,2,2,1]],[[1,2,2,2],[0,3,1,1],[1,3,0,2],[1,2,2,1]],[[1,2,3,1],[0,3,1,1],[1,3,0,2],[1,2,2,1]],[[1,3,2,1],[0,3,1,1],[1,3,0,2],[1,2,2,1]],[[2,2,2,1],[0,3,1,1],[1,3,0,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,1],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[0,3,1,1],[1,2,3,1],[1,3,2,0]],[[1,2,2,1],[0,3,1,1],[1,2,3,1],[2,2,2,0]],[[1,2,2,1],[0,3,1,1],[1,2,4,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,1],[1,2,3,0],[1,2,2,2]],[[1,2,2,1],[0,3,1,1],[1,2,3,0],[1,2,3,1]],[[1,2,2,1],[0,3,1,1],[1,2,3,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,1],[1,2,3,0],[2,2,2,1]],[[1,2,2,1],[0,3,1,1],[1,2,4,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,1],[0,3,3,1],[1,2,3,0]],[[1,2,2,1],[0,3,1,1],[0,3,3,1],[1,3,2,0]],[[1,2,2,1],[0,3,1,1],[0,3,4,1],[1,2,2,0]],[[1,2,2,1],[0,3,1,1],[0,3,3,0],[1,2,2,2]],[[1,2,2,1],[0,3,1,1],[0,3,3,0],[1,2,3,1]],[[1,2,2,1],[0,3,1,1],[0,3,3,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,1],[0,3,4,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[0,3,1,0],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[0,3,1,0],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[0,4,1,0],[2,3,3,2],[1,2,0,0]],[[1,2,2,2],[0,3,1,0],[2,3,3,2],[1,2,0,0]],[[1,2,3,1],[0,3,1,0],[2,3,3,2],[1,2,0,0]],[[1,3,2,1],[0,3,1,0],[2,3,3,2],[1,2,0,0]],[[2,2,2,1],[0,3,1,0],[2,3,3,2],[1,2,0,0]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[0,3,1,0],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[0,3,1,0],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[0,3,1,0],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[0,3,1,0],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[0,4,1,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[0,3,1,0],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[0,3,1,0],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[0,3,1,0],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[0,3,1,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[0,3,1,0],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[0,3,1,0],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[0,3,1,0],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[0,4,1,0],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[0,3,1,0],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[0,3,1,0],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[0,3,1,0],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[0,3,1,0],[2,3,3,2],[1,1,0,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[0,3,1,0],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[0,3,1,0],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[0,3,1,0],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[0,3,1,0],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[0,4,1,0],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[0,3,1,0],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[0,3,1,0],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[0,3,1,0],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[0,3,1,0],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[1,0,1,2]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[0,3,1,0],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[0,3,1,0],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[0,3,1,0],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[0,4,1,0],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[0,3,1,0],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[0,3,1,0],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[0,3,1,0],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[0,3,1,0],[2,3,3,2],[1,0,1,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[0,3,1,0],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[0,3,1,0],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[0,3,1,0],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,1,0],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,4,1,0],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[0,3,1,0],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[0,3,1,0],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[0,3,1,0],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[0,3,1,0],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[0,3,1,0],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[0,3,1,0],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[0,3,1,0],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[0,4,1,0],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[0,3,1,0],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[0,3,1,0],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[0,3,1,0],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[0,3,1,0],[2,3,3,2],[0,2,0,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[0,1,3,0]],[[1,2,2,1],[0,3,1,0],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[0,3,1,0],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[0,3,1,0],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,1,0],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,4,1,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,1,0],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,1,0],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[0,3,1,0],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[0,3,1,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[0,3,1,0],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[0,3,1,0],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[0,3,1,0],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,1,0],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,4,1,0],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,1,0],[2,3,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,1,0],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,1,0],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[0,3,1,0],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[0,3,1,0],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,4,2],[0,0,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[0,3,1,0],[2,4,3,1],[1,2,0,1]],[[1,2,2,1],[0,3,1,0],[3,3,3,1],[1,2,0,1]],[[1,2,2,1],[0,4,1,0],[2,3,3,1],[1,2,0,1]],[[1,2,3,1],[0,3,1,0],[2,3,3,1],[1,2,0,1]],[[1,3,2,1],[0,3,1,0],[2,3,3,1],[1,2,0,1]],[[2,2,2,1],[0,3,1,0],[2,3,3,1],[1,2,0,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[0,3,1,0],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[0,3,1,0],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[0,3,1,0],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,4,1,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,2],[0,3,1,0],[2,3,3,1],[1,1,1,1]],[[1,2,3,1],[0,3,1,0],[2,3,3,1],[1,1,1,1]],[[1,3,2,1],[0,3,1,0],[2,3,3,1],[1,1,1,1]],[[2,2,2,1],[0,3,1,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[0,3,1,0],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[0,3,1,0],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[0,3,1,0],[3,3,3,1],[1,0,2,1]],[[1,2,2,1],[0,4,1,0],[2,3,3,1],[1,0,2,1]],[[1,2,2,2],[0,3,1,0],[2,3,3,1],[1,0,2,1]],[[1,2,3,1],[0,3,1,0],[2,3,3,1],[1,0,2,1]],[[1,3,2,1],[0,3,1,0],[2,3,3,1],[1,0,2,1]],[[2,2,2,1],[0,3,1,0],[2,3,3,1],[1,0,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[0,3,1,0],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[0,3,1,0],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[0,3,1,0],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[0,4,1,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,2],[0,3,1,0],[2,3,3,1],[0,2,1,1]],[[1,2,3,1],[0,3,1,0],[2,3,3,1],[0,2,1,1]],[[1,3,2,1],[0,3,1,0],[2,3,3,1],[0,2,1,1]],[[2,2,2,1],[0,3,1,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[0,3,1,0],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[0,3,1,0],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[0,3,1,0],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[0,3,1,0],[3,3,3,1],[0,1,2,1]],[[1,2,2,1],[0,4,1,0],[2,3,3,1],[0,1,2,1]],[[1,2,2,2],[0,3,1,0],[2,3,3,1],[0,1,2,1]],[[1,2,3,1],[0,3,1,0],[2,3,3,1],[0,1,2,1]],[[1,3,2,1],[0,3,1,0],[2,3,3,1],[0,1,2,1]],[[2,2,2,1],[0,3,1,0],[2,3,3,1],[0,1,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,0],[2,1,2,1]],[[1,2,2,1],[0,3,1,0],[2,4,3,0],[1,1,2,1]],[[1,2,2,1],[0,3,1,0],[3,3,3,0],[1,1,2,1]],[[1,2,2,1],[0,4,1,0],[2,3,3,0],[1,1,2,1]],[[1,2,3,1],[0,3,1,0],[2,3,3,0],[1,1,2,1]],[[1,3,2,1],[0,3,1,0],[2,3,3,0],[1,1,2,1]],[[2,2,2,1],[0,3,1,0],[2,3,3,0],[1,1,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,0],[0,2,3,1]],[[1,2,2,1],[0,3,1,0],[2,3,3,0],[0,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,4,3,0],[0,2,2,1]],[[1,2,2,1],[0,3,1,0],[3,3,3,0],[0,2,2,1]],[[1,2,2,1],[0,4,1,0],[2,3,3,0],[0,2,2,1]],[[1,2,3,1],[0,3,1,0],[2,3,3,0],[0,2,2,1]],[[1,3,2,1],[0,3,1,0],[2,3,3,0],[0,2,2,1]],[[2,2,2,1],[0,3,1,0],[2,3,3,0],[0,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[0,3,1,0],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,0],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,4,1,0],[2,3,2,2],[1,1,2,0]],[[1,2,2,2],[0,3,1,0],[2,3,2,2],[1,1,2,0]],[[1,2,3,1],[0,3,1,0],[2,3,2,2],[1,1,2,0]],[[1,3,2,1],[0,3,1,0],[2,3,2,2],[1,1,2,0]],[[2,2,2,1],[0,3,1,0],[2,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,0],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[0,3,1,0],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[0,3,1,0],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[0,3,1,0],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[0,3,1,0],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[0,3,1,0],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[0,4,1,0],[2,3,2,2],[0,2,2,0]],[[1,2,2,2],[0,3,1,0],[2,3,2,2],[0,2,2,0]],[[1,2,3,1],[0,3,1,0],[2,3,2,2],[0,2,2,0]],[[1,3,2,1],[0,3,1,0],[2,3,2,2],[0,2,2,0]],[[2,2,2,1],[0,3,1,0],[2,3,2,2],[0,2,2,0]],[[1,2,2,1],[0,3,1,0],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[0,3,1,0],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[0,3,1,0],[2,3,2,3],[0,1,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[0,3,1,0],[2,4,2,1],[1,1,2,1]],[[1,2,2,1],[0,3,1,0],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[0,4,1,0],[2,3,2,1],[1,1,2,1]],[[1,2,2,2],[0,3,1,0],[2,3,2,1],[1,1,2,1]],[[1,2,3,1],[0,3,1,0],[2,3,2,1],[1,1,2,1]],[[1,3,2,1],[0,3,1,0],[2,3,2,1],[1,1,2,1]],[[2,2,2,1],[0,3,1,0],[2,3,2,1],[1,1,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[0,3,1,0],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[0,3,1,0],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[0,3,1,0],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[0,4,1,0],[2,3,2,1],[0,2,2,1]],[[1,2,2,2],[0,3,1,0],[2,3,2,1],[0,2,2,1]],[[1,2,3,1],[0,3,1,0],[2,3,2,1],[0,2,2,1]],[[1,3,2,1],[0,3,1,0],[2,3,2,1],[0,2,2,1]],[[2,2,2,1],[0,3,1,0],[2,3,2,1],[0,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,2,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,2,0],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[3,3,2,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,1,2],[1,3,2,0]],[[1,2,2,1],[0,3,1,0],[2,3,1,2],[2,2,2,0]],[[1,2,2,1],[0,3,1,0],[3,3,1,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,0],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[0,3,1,0],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[0,3,1,0],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,4,1,0],[2,3,1,2],[1,1,2,1]],[[1,2,2,2],[0,3,1,0],[2,3,1,2],[1,1,2,1]],[[1,2,3,1],[0,3,1,0],[2,3,1,2],[1,1,2,1]],[[1,3,2,1],[0,3,1,0],[2,3,1,2],[1,1,2,1]],[[2,2,2,1],[0,3,1,0],[2,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[0,3,1,0],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[0,3,1,0],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,1,3],[0,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[0,3,1,0],[3,3,1,2],[0,2,2,1]],[[1,2,2,1],[0,4,1,0],[2,3,1,2],[0,2,2,1]],[[1,2,2,2],[0,3,1,0],[2,3,1,2],[0,2,2,1]],[[1,2,3,1],[0,3,1,0],[2,3,1,2],[0,2,2,1]],[[1,3,2,1],[0,3,1,0],[2,3,1,2],[0,2,2,1]],[[2,2,2,1],[0,3,1,0],[2,3,1,2],[0,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,1,1],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,1,1],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[3,3,1,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,0,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,3,0,2],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[3,3,0,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[0,3,1,0],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[0,3,1,0],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,3,1,0],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[0,3,1,0],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[0,3,1,0],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[0,3,1,0],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[0,3,1,0],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[0,3,1,0],[2,2,3,3],[0,2,2,0]],[[1,2,2,1],[0,3,1,0],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[0,3,1,0],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[0,3,1,0],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[0,3,1,0],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[0,3,1,0],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[0,3,1,0],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[0,3,1,0],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[0,3,1,0],[2,2,3,1],[0,2,2,2]],[[1,2,2,1],[0,3,1,0],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[0,3,1,0],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,2,4,1],[0,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,2,3,0],[1,2,3,1]],[[1,2,2,1],[0,3,1,0],[2,2,3,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,2,3,0],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[3,2,3,0],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[0,3,1,0],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[0,3,1,0],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[0,3,1,0],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,0],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[0,3,1,0],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[0,3,1,0],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[0,3,1,0],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[0,3,1,0],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,0],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,0],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,1,0],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,1,0],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[0,3,1,0],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,3,1,0],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,0],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,0],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,3,1,0],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,3,1,0],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[0,3,1,0],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,1,0],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,1,0],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,0],[2,1,2,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,0],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,3,1,0],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[0,3,1,0],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[0,3,1,0],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[0,3,1,0],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[0,4,1,0],[1,3,3,2],[1,2,1,0]],[[1,2,2,2],[0,3,1,0],[1,3,3,2],[1,2,1,0]],[[1,2,3,1],[0,3,1,0],[1,3,3,2],[1,2,1,0]],[[1,3,2,1],[0,3,1,0],[1,3,3,2],[1,2,1,0]],[[2,2,2,1],[0,3,1,0],[1,3,3,2],[1,2,1,0]],[[1,2,2,1],[0,3,1,0],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[0,3,1,0],[1,3,3,2],[1,3,0,1]],[[0,3,2,0],[2,3,3,2],[2,0,1,2],[0,1,2,1]],[[0,2,3,0],[2,3,3,2],[2,0,1,2],[0,1,2,1]],[[0,2,2,0],[2,3,4,2],[2,0,1,2],[0,1,2,1]],[[0,2,2,0],[2,3,3,3],[2,0,1,2],[0,1,2,1]],[[0,2,2,0],[2,3,3,2],[2,0,1,3],[0,1,2,1]],[[0,2,2,0],[2,3,3,2],[2,0,1,2],[0,1,2,2]],[[0,3,2,0],[2,3,3,2],[2,0,1,2],[1,0,2,1]],[[0,2,3,0],[2,3,3,2],[2,0,1,2],[1,0,2,1]],[[0,2,2,0],[2,3,4,2],[2,0,1,2],[1,0,2,1]],[[0,2,2,0],[2,3,3,3],[2,0,1,2],[1,0,2,1]],[[0,2,2,0],[2,3,3,2],[2,0,1,3],[1,0,2,1]],[[0,2,2,0],[2,3,3,2],[2,0,1,2],[1,0,2,2]],[[1,2,2,1],[0,3,1,0],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[0,3,1,0],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[0,3,1,0],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[0,3,1,0],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[0,4,1,0],[1,3,3,2],[1,2,0,1]],[[1,2,2,2],[0,3,1,0],[1,3,3,2],[1,2,0,1]],[[1,2,3,1],[0,3,1,0],[1,3,3,2],[1,2,0,1]],[[1,3,2,1],[0,3,1,0],[1,3,3,2],[1,2,0,1]],[[2,2,2,1],[0,3,1,0],[1,3,3,2],[1,2,0,1]],[[1,2,2,1],[0,3,1,0],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[0,3,1,0],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[0,3,1,0],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,0],[1,4,3,2],[1,1,2,0]],[[0,3,2,0],[2,3,3,2],[2,0,2,2],[0,0,2,1]],[[0,2,3,0],[2,3,3,2],[2,0,2,2],[0,0,2,1]],[[0,2,2,0],[2,3,4,2],[2,0,2,2],[0,0,2,1]],[[0,2,2,0],[2,3,3,3],[2,0,2,2],[0,0,2,1]],[[0,2,2,0],[2,3,3,2],[2,0,2,3],[0,0,2,1]],[[0,2,2,0],[2,3,3,2],[2,0,2,2],[0,0,2,2]],[[0,3,2,0],[2,3,3,2],[2,0,2,2],[0,1,1,1]],[[0,2,3,0],[2,3,3,2],[2,0,2,2],[0,1,1,1]],[[0,2,2,0],[2,3,4,2],[2,0,2,2],[0,1,1,1]],[[0,2,2,0],[2,3,3,3],[2,0,2,2],[0,1,1,1]],[[0,2,2,0],[2,3,3,2],[2,0,2,3],[0,1,1,1]],[[0,2,2,0],[2,3,3,2],[2,0,2,2],[0,1,1,2]],[[0,3,2,0],[2,3,3,2],[2,0,2,2],[0,1,2,0]],[[0,2,3,0],[2,3,3,2],[2,0,2,2],[0,1,2,0]],[[0,2,2,0],[2,3,4,2],[2,0,2,2],[0,1,2,0]],[[0,2,2,0],[2,3,3,3],[2,0,2,2],[0,1,2,0]],[[0,2,2,0],[2,3,3,2],[2,0,2,3],[0,1,2,0]],[[0,3,2,0],[2,3,3,2],[2,0,2,2],[0,2,0,1]],[[0,2,3,0],[2,3,3,2],[2,0,2,2],[0,2,0,1]],[[0,2,2,0],[2,3,4,2],[2,0,2,2],[0,2,0,1]],[[0,2,2,0],[2,3,3,3],[2,0,2,2],[0,2,0,1]],[[0,2,2,0],[2,3,3,2],[2,0,2,3],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[2,0,2,2],[0,2,1,0]],[[0,2,3,0],[2,3,3,2],[2,0,2,2],[0,2,1,0]],[[0,2,2,0],[2,3,4,2],[2,0,2,2],[0,2,1,0]],[[0,2,2,0],[2,3,3,3],[2,0,2,2],[0,2,1,0]],[[1,2,2,1],[0,4,1,0],[1,3,3,2],[1,1,2,0]],[[1,2,2,2],[0,3,1,0],[1,3,3,2],[1,1,2,0]],[[1,2,3,1],[0,3,1,0],[1,3,3,2],[1,1,2,0]],[[1,3,2,1],[0,3,1,0],[1,3,3,2],[1,1,2,0]],[[2,2,2,1],[0,3,1,0],[1,3,3,2],[1,1,2,0]],[[1,2,2,1],[0,3,1,0],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[0,3,1,0],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[0,3,1,0],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[0,3,1,0],[1,4,3,2],[1,1,1,1]],[[1,2,2,1],[0,4,1,0],[1,3,3,2],[1,1,1,1]],[[1,2,2,2],[0,3,1,0],[1,3,3,2],[1,1,1,1]],[[0,3,2,0],[2,3,3,2],[2,0,2,2],[1,0,1,1]],[[0,2,3,0],[2,3,3,2],[2,0,2,2],[1,0,1,1]],[[0,2,2,0],[2,3,4,2],[2,0,2,2],[1,0,1,1]],[[0,2,2,0],[2,3,3,3],[2,0,2,2],[1,0,1,1]],[[0,2,2,0],[2,3,3,2],[2,0,2,3],[1,0,1,1]],[[0,2,2,0],[2,3,3,2],[2,0,2,2],[1,0,1,2]],[[0,3,2,0],[2,3,3,2],[2,0,2,2],[1,0,2,0]],[[0,2,3,0],[2,3,3,2],[2,0,2,2],[1,0,2,0]],[[0,2,2,0],[2,3,4,2],[2,0,2,2],[1,0,2,0]],[[0,2,2,0],[2,3,3,3],[2,0,2,2],[1,0,2,0]],[[0,2,2,0],[2,3,3,2],[2,0,2,3],[1,0,2,0]],[[0,3,2,0],[2,3,3,2],[2,0,2,2],[1,1,0,1]],[[0,2,3,0],[2,3,3,2],[2,0,2,2],[1,1,0,1]],[[0,2,2,0],[2,3,4,2],[2,0,2,2],[1,1,0,1]],[[0,2,2,0],[2,3,3,3],[2,0,2,2],[1,1,0,1]],[[0,2,2,0],[2,3,3,2],[2,0,2,3],[1,1,0,1]],[[0,3,2,0],[2,3,3,2],[2,0,2,2],[1,1,1,0]],[[0,2,3,0],[2,3,3,2],[2,0,2,2],[1,1,1,0]],[[0,2,2,0],[2,3,4,2],[2,0,2,2],[1,1,1,0]],[[0,2,2,0],[2,3,3,3],[2,0,2,2],[1,1,1,0]],[[1,2,3,1],[0,3,1,0],[1,3,3,2],[1,1,1,1]],[[1,3,2,1],[0,3,1,0],[1,3,3,2],[1,1,1,1]],[[2,2,2,1],[0,3,1,0],[1,3,3,2],[1,1,1,1]],[[1,2,2,1],[0,3,1,0],[1,3,3,2],[1,0,2,2]],[[1,2,2,1],[0,3,1,0],[1,3,3,3],[1,0,2,1]],[[1,2,2,1],[0,3,1,0],[1,3,4,2],[1,0,2,1]],[[1,2,2,1],[0,3,1,0],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[0,3,1,0],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[0,3,1,0],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[0,3,1,0],[1,4,3,1],[1,2,1,1]],[[1,2,2,1],[0,4,1,0],[1,3,3,1],[1,2,1,1]],[[1,2,2,2],[0,3,1,0],[1,3,3,1],[1,2,1,1]],[[1,2,3,1],[0,3,1,0],[1,3,3,1],[1,2,1,1]],[[1,3,2,1],[0,3,1,0],[1,3,3,1],[1,2,1,1]],[[2,2,2,1],[0,3,1,0],[1,3,3,1],[1,2,1,1]],[[1,2,2,1],[0,3,1,0],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[0,3,1,0],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[0,3,1,0],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[0,3,1,0],[1,4,3,1],[1,1,2,1]],[[1,2,2,1],[0,4,1,0],[1,3,3,1],[1,1,2,1]],[[1,2,2,2],[0,3,1,0],[1,3,3,1],[1,1,2,1]],[[1,2,3,1],[0,3,1,0],[1,3,3,1],[1,1,2,1]],[[1,3,2,1],[0,3,1,0],[1,3,3,1],[1,1,2,1]],[[2,2,2,1],[0,3,1,0],[1,3,3,1],[1,1,2,1]],[[1,2,2,1],[0,3,1,0],[1,3,3,0],[1,2,3,1]],[[1,2,2,1],[0,3,1,0],[1,3,3,0],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[1,3,3,0],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[1,4,3,0],[1,2,2,1]],[[1,2,2,1],[0,4,1,0],[1,3,3,0],[1,2,2,1]],[[1,2,3,1],[0,3,1,0],[1,3,3,0],[1,2,2,1]],[[1,3,2,1],[0,3,1,0],[1,3,3,0],[1,2,2,1]],[[2,2,2,1],[0,3,1,0],[1,3,3,0],[1,2,2,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,0],[0,1,2,1]],[[0,2,3,0],[2,3,3,2],[2,0,3,0],[0,1,2,1]],[[0,2,2,0],[2,3,4,2],[2,0,3,0],[0,1,2,1]],[[0,2,2,0],[2,3,3,3],[2,0,3,0],[0,1,2,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,0],[0,2,1,1]],[[0,2,3,0],[2,3,3,2],[2,0,3,0],[0,2,1,1]],[[0,2,2,0],[2,3,4,2],[2,0,3,0],[0,2,1,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,0],[1,0,2,1]],[[0,2,3,0],[2,3,3,2],[2,0,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,4,2],[2,0,3,0],[1,0,2,1]],[[0,2,2,0],[2,3,3,3],[2,0,3,0],[1,0,2,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,0],[1,1,1,1]],[[0,2,3,0],[2,3,3,2],[2,0,3,0],[1,1,1,1]],[[0,2,2,0],[2,3,4,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,1],[0,3,1,0],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[0,3,1,0],[1,3,2,2],[1,3,2,0]],[[1,2,2,1],[0,3,1,0],[1,3,2,2],[2,2,2,0]],[[0,3,2,0],[2,3,3,2],[2,0,3,1],[0,0,2,1]],[[0,2,3,0],[2,3,3,2],[2,0,3,1],[0,0,2,1]],[[0,2,2,0],[2,3,4,2],[2,0,3,1],[0,0,2,1]],[[0,2,2,0],[2,3,3,3],[2,0,3,1],[0,0,2,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,1],[0,1,1,1]],[[0,2,3,0],[2,3,3,2],[2,0,3,1],[0,1,1,1]],[[0,2,2,0],[2,3,4,2],[2,0,3,1],[0,1,1,1]],[[0,2,2,0],[2,3,3,3],[2,0,3,1],[0,1,1,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,1],[0,1,2,0]],[[0,2,3,0],[2,3,3,2],[2,0,3,1],[0,1,2,0]],[[0,2,2,0],[2,3,4,2],[2,0,3,1],[0,1,2,0]],[[0,2,2,0],[2,3,3,3],[2,0,3,1],[0,1,2,0]],[[0,3,2,0],[2,3,3,2],[2,0,3,1],[0,2,0,1]],[[0,2,3,0],[2,3,3,2],[2,0,3,1],[0,2,0,1]],[[0,2,2,0],[2,3,4,2],[2,0,3,1],[0,2,0,1]],[[0,2,2,0],[2,3,3,3],[2,0,3,1],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,1],[0,2,1,0]],[[0,2,3,0],[2,3,3,2],[2,0,3,1],[0,2,1,0]],[[0,2,2,0],[2,3,4,2],[2,0,3,1],[0,2,1,0]],[[0,2,2,0],[2,3,3,3],[2,0,3,1],[0,2,1,0]],[[1,2,2,1],[0,3,1,0],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[0,4,1,0],[1,3,2,2],[1,2,2,0]],[[1,2,2,2],[0,3,1,0],[1,3,2,2],[1,2,2,0]],[[1,2,3,1],[0,3,1,0],[1,3,2,2],[1,2,2,0]],[[1,3,2,1],[0,3,1,0],[1,3,2,2],[1,2,2,0]],[[2,2,2,1],[0,3,1,0],[1,3,2,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,0],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[0,3,1,0],[1,3,2,2],[1,1,3,1]],[[1,2,2,1],[0,3,1,0],[1,3,2,3],[1,1,2,1]],[[1,2,2,1],[0,3,1,0],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[0,3,1,0],[1,3,2,1],[1,2,3,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,1],[1,0,1,1]],[[0,2,3,0],[2,3,3,2],[2,0,3,1],[1,0,1,1]],[[0,2,2,0],[2,3,4,2],[2,0,3,1],[1,0,1,1]],[[0,2,2,0],[2,3,3,3],[2,0,3,1],[1,0,1,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,1],[1,0,2,0]],[[0,2,3,0],[2,3,3,2],[2,0,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,4,2],[2,0,3,1],[1,0,2,0]],[[0,2,2,0],[2,3,3,3],[2,0,3,1],[1,0,2,0]],[[0,3,2,0],[2,3,3,2],[2,0,3,1],[1,1,0,1]],[[0,2,3,0],[2,3,3,2],[2,0,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,4,2],[2,0,3,1],[1,1,0,1]],[[0,2,2,0],[2,3,3,3],[2,0,3,1],[1,1,0,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,1],[1,1,1,0]],[[0,2,3,0],[2,3,3,2],[2,0,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,4,2],[2,0,3,1],[1,1,1,0]],[[0,2,2,0],[2,3,3,3],[2,0,3,1],[1,1,1,0]],[[1,2,2,1],[0,3,1,0],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[1,4,2,1],[1,2,2,1]],[[1,2,2,1],[0,4,1,0],[1,3,2,1],[1,2,2,1]],[[1,2,2,2],[0,3,1,0],[1,3,2,1],[1,2,2,1]],[[1,2,3,1],[0,3,1,0],[1,3,2,1],[1,2,2,1]],[[1,3,2,1],[0,3,1,0],[1,3,2,1],[1,2,2,1]],[[2,2,2,1],[0,3,1,0],[1,3,2,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,0],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,0],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[1,3,1,3],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[1,4,1,2],[1,2,2,1]],[[1,2,2,1],[0,4,1,0],[1,3,1,2],[1,2,2,1]],[[1,2,2,2],[0,3,1,0],[1,3,1,2],[1,2,2,1]],[[1,2,3,1],[0,3,1,0],[1,3,1,2],[1,2,2,1]],[[1,3,2,1],[0,3,1,0],[1,3,1,2],[1,2,2,1]],[[2,2,2,1],[0,3,1,0],[1,3,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,1,0],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,1,0],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[0,3,1,0],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[0,3,1,0],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,0],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[0,3,1,0],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[0,3,1,0],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[0,3,1,0],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,1,0],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,1,0],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,0],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,0],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[0,3,1,0],[1,2,2,3],[1,2,2,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,2],[0,1,0,1]],[[0,2,3,0],[2,3,3,2],[2,0,3,2],[0,1,0,1]],[[0,2,2,0],[2,3,4,2],[2,0,3,2],[0,1,0,1]],[[0,2,2,0],[2,3,3,3],[2,0,3,2],[0,1,0,1]],[[0,2,2,0],[2,3,3,2],[2,0,3,3],[0,1,0,1]],[[1,2,2,1],[0,3,1,0],[0,3,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,1,0],[0,3,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,1,0],[0,3,3,3],[1,2,2,0]],[[1,2,2,1],[0,3,1,0],[0,3,4,2],[1,2,2,0]],[[1,2,2,1],[0,3,1,0],[0,3,3,2],[1,2,1,2]],[[1,2,2,1],[0,3,1,0],[0,3,3,3],[1,2,1,1]],[[1,2,2,1],[0,3,1,0],[0,3,4,2],[1,2,1,1]],[[1,2,2,1],[0,3,1,0],[0,3,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,1,0],[0,3,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,1,0],[0,3,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[0,3,4,1],[1,2,2,1]],[[1,2,2,1],[0,3,1,0],[0,3,2,2],[1,2,2,2]],[[1,2,2,1],[0,3,1,0],[0,3,2,2],[1,2,3,1]],[[1,2,2,1],[0,3,1,0],[0,3,2,2],[1,3,2,1]],[[1,2,2,1],[0,3,1,0],[0,3,2,3],[1,2,2,1]],[[0,3,2,0],[2,3,3,2],[2,0,3,2],[1,0,0,1]],[[0,2,3,0],[2,3,3,2],[2,0,3,2],[1,0,0,1]],[[0,2,2,0],[2,3,4,2],[2,0,3,2],[1,0,0,1]],[[0,2,2,0],[2,3,3,3],[2,0,3,2],[1,0,0,1]],[[0,2,2,0],[2,3,3,2],[2,0,3,3],[1,0,0,1]],[[1,2,2,1],[0,3,0,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,4,2],[0,0,2,0]],[[1,2,2,1],[0,3,0,3],[2,3,3,2],[0,0,2,0]],[[1,2,2,1],[0,4,0,2],[2,3,3,2],[0,0,2,0]],[[1,2,2,2],[0,3,0,2],[2,3,3,2],[0,0,2,0]],[[1,2,3,1],[0,3,0,2],[2,3,3,2],[0,0,2,0]],[[1,3,2,1],[0,3,0,2],[2,3,3,2],[0,0,2,0]],[[2,2,2,1],[0,3,0,2],[2,3,3,2],[0,0,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,3,2],[0,0,1,2]],[[1,2,2,1],[0,3,0,2],[2,3,3,3],[0,0,1,1]],[[0,3,2,0],[2,3,3,2],[2,1,0,0],[1,2,2,1]],[[0,2,3,0],[2,3,3,2],[2,1,0,0],[1,2,2,1]],[[0,2,2,0],[3,3,3,2],[2,1,0,0],[1,2,2,1]],[[0,2,2,0],[2,4,3,2],[2,1,0,0],[1,2,2,1]],[[0,2,2,0],[2,3,3,2],[3,1,0,0],[1,2,2,1]],[[0,2,2,0],[2,3,3,2],[2,1,0,0],[2,2,2,1]],[[0,2,2,0],[2,3,3,2],[2,1,0,0],[1,3,2,1]],[[0,3,2,0],[2,3,3,2],[2,1,0,1],[1,2,2,0]],[[0,2,3,0],[2,3,3,2],[2,1,0,1],[1,2,2,0]],[[0,2,2,0],[3,3,3,2],[2,1,0,1],[1,2,2,0]],[[0,2,2,0],[2,4,3,2],[2,1,0,1],[1,2,2,0]],[[0,2,2,0],[2,3,3,2],[3,1,0,1],[1,2,2,0]],[[0,2,2,0],[2,3,3,2],[2,1,0,1],[2,2,2,0]],[[0,2,2,0],[2,3,3,2],[2,1,0,1],[1,3,2,0]],[[0,3,2,0],[2,3,3,2],[2,1,0,2],[1,2,0,1]],[[0,2,3,0],[2,3,3,2],[2,1,0,2],[1,2,0,1]],[[0,2,2,0],[3,3,3,2],[2,1,0,2],[1,2,0,1]],[[0,2,2,0],[2,4,3,2],[2,1,0,2],[1,2,0,1]],[[0,2,2,0],[2,3,3,2],[3,1,0,2],[1,2,0,1]],[[0,2,2,0],[2,3,3,2],[2,1,0,2],[2,2,0,1]],[[0,3,2,0],[2,3,3,2],[2,1,0,2],[1,2,1,0]],[[0,2,3,0],[2,3,3,2],[2,1,0,2],[1,2,1,0]],[[0,2,2,0],[3,3,3,2],[2,1,0,2],[1,2,1,0]],[[0,2,2,0],[2,4,3,2],[2,1,0,2],[1,2,1,0]],[[0,2,2,0],[2,3,3,2],[3,1,0,2],[1,2,1,0]],[[0,2,2,0],[2,3,3,2],[2,1,0,2],[2,2,1,0]],[[1,2,2,1],[0,3,0,2],[2,3,4,2],[0,0,1,1]],[[1,2,2,1],[0,3,0,3],[2,3,3,2],[0,0,1,1]],[[1,2,2,1],[0,4,0,2],[2,3,3,2],[0,0,1,1]],[[1,2,2,2],[0,3,0,2],[2,3,3,2],[0,0,1,1]],[[1,2,3,1],[0,3,0,2],[2,3,3,2],[0,0,1,1]],[[1,3,2,1],[0,3,0,2],[2,3,3,2],[0,0,1,1]],[[2,2,2,1],[0,3,0,2],[2,3,3,2],[0,0,1,1]],[[0,3,2,0],[2,3,3,2],[2,1,1,0],[1,2,1,1]],[[0,2,3,0],[2,3,3,2],[2,1,1,0],[1,2,1,1]],[[0,2,2,0],[3,3,3,2],[2,1,1,0],[1,2,1,1]],[[0,2,2,0],[2,4,3,2],[2,1,1,0],[1,2,1,1]],[[0,2,2,0],[2,3,3,2],[3,1,1,0],[1,2,1,1]],[[0,2,2,0],[2,3,3,2],[2,1,1,0],[2,2,1,1]],[[0,3,2,0],[2,3,3,2],[2,1,1,1],[1,2,0,1]],[[0,2,3,0],[2,3,3,2],[2,1,1,1],[1,2,0,1]],[[0,2,2,0],[3,3,3,2],[2,1,1,1],[1,2,0,1]],[[0,2,2,0],[2,4,3,2],[2,1,1,1],[1,2,0,1]],[[0,2,2,0],[2,3,3,2],[3,1,1,1],[1,2,0,1]],[[0,2,2,0],[2,3,3,2],[2,1,1,1],[2,2,0,1]],[[0,3,2,0],[2,3,3,2],[2,1,1,1],[1,2,1,0]],[[0,2,3,0],[2,3,3,2],[2,1,1,1],[1,2,1,0]],[[0,2,2,0],[3,3,3,2],[2,1,1,1],[1,2,1,0]],[[0,2,2,0],[2,4,3,2],[2,1,1,1],[1,2,1,0]],[[0,2,2,0],[2,3,3,2],[3,1,1,1],[1,2,1,0]],[[0,2,2,0],[2,3,3,2],[2,1,1,1],[2,2,1,0]],[[1,2,2,1],[0,3,0,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[0,3,0,2],[2,4,3,1],[1,2,0,0]],[[1,2,2,1],[0,3,0,2],[3,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,3,0,3],[2,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,4,0,2],[2,3,3,1],[1,2,0,0]],[[1,2,2,2],[0,3,0,2],[2,3,3,1],[1,2,0,0]],[[1,2,3,1],[0,3,0,2],[2,3,3,1],[1,2,0,0]],[[1,3,2,1],[0,3,0,2],[2,3,3,1],[1,2,0,0]],[[2,2,2,1],[0,3,0,2],[2,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,3,0,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[0,3,0,2],[2,3,4,1],[1,1,1,0]],[[1,2,2,1],[0,3,0,2],[2,4,3,1],[1,1,1,0]],[[1,2,2,1],[0,3,0,2],[3,3,3,1],[1,1,1,0]],[[1,2,2,1],[0,3,0,3],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[0,4,0,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,2],[0,3,0,2],[2,3,3,1],[1,1,1,0]],[[1,2,3,1],[0,3,0,2],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[0,3,0,2],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[0,3,0,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[0,3,0,2],[2,3,3,1],[2,1,0,1]],[[1,2,2,1],[0,3,0,2],[2,3,4,1],[1,1,0,1]],[[1,2,2,1],[0,3,0,2],[2,4,3,1],[1,1,0,1]],[[1,2,2,1],[0,3,0,2],[3,3,3,1],[1,1,0,1]],[[1,2,2,1],[0,3,0,3],[2,3,3,1],[1,1,0,1]],[[1,2,2,1],[0,4,0,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,2],[0,3,0,2],[2,3,3,1],[1,1,0,1]],[[1,2,3,1],[0,3,0,2],[2,3,3,1],[1,1,0,1]],[[1,3,2,1],[0,3,0,2],[2,3,3,1],[1,1,0,1]],[[2,2,2,1],[0,3,0,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,1],[0,3,0,2],[2,3,3,1],[1,0,3,0]],[[1,2,2,1],[0,3,0,2],[2,3,3,1],[2,0,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,4,1],[1,0,2,0]],[[1,2,2,1],[0,3,0,2],[2,4,3,1],[1,0,2,0]],[[1,2,2,1],[0,3,0,2],[3,3,3,1],[1,0,2,0]],[[1,2,2,1],[0,3,0,3],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[0,4,0,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,2],[0,3,0,2],[2,3,3,1],[1,0,2,0]],[[1,2,3,1],[0,3,0,2],[2,3,3,1],[1,0,2,0]],[[1,3,2,1],[0,3,0,2],[2,3,3,1],[1,0,2,0]],[[2,2,2,1],[0,3,0,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,3,1],[2,0,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,4,1],[1,0,1,1]],[[1,2,2,1],[0,3,0,2],[2,4,3,1],[1,0,1,1]],[[1,2,2,1],[0,3,0,2],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[0,3,0,3],[2,3,3,1],[1,0,1,1]],[[1,2,2,1],[0,4,0,2],[2,3,3,1],[1,0,1,1]],[[1,2,2,2],[0,3,0,2],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[0,3,0,2],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[0,3,0,2],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[0,3,0,2],[2,3,3,1],[1,0,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[0,3,0,2],[2,3,4,1],[0,2,1,0]],[[1,2,2,1],[0,3,0,2],[2,4,3,1],[0,2,1,0]],[[1,2,2,1],[0,3,0,2],[3,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,3,0,3],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,4,0,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[0,3,0,2],[2,3,3,1],[0,2,1,0]],[[1,2,3,1],[0,3,0,2],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[0,3,0,2],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[0,3,0,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,3,0,2],[2,3,3,1],[0,3,0,1]],[[1,2,2,1],[0,3,0,2],[2,3,4,1],[0,2,0,1]],[[1,2,2,1],[0,3,0,2],[2,4,3,1],[0,2,0,1]],[[1,2,2,1],[0,3,0,2],[3,3,3,1],[0,2,0,1]],[[1,2,2,1],[0,3,0,3],[2,3,3,1],[0,2,0,1]],[[1,2,2,1],[0,4,0,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,2],[0,3,0,2],[2,3,3,1],[0,2,0,1]],[[1,2,3,1],[0,3,0,2],[2,3,3,1],[0,2,0,1]],[[1,3,2,1],[0,3,0,2],[2,3,3,1],[0,2,0,1]],[[2,2,2,1],[0,3,0,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,1],[0,3,0,2],[2,3,3,1],[0,1,3,0]],[[1,2,2,1],[0,3,0,2],[2,3,4,1],[0,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,4,3,1],[0,1,2,0]],[[1,2,2,1],[0,3,0,2],[3,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,3,0,3],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,4,0,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,2],[0,3,0,2],[2,3,3,1],[0,1,2,0]],[[1,2,3,1],[0,3,0,2],[2,3,3,1],[0,1,2,0]],[[1,3,2,1],[0,3,0,2],[2,3,3,1],[0,1,2,0]],[[2,2,2,1],[0,3,0,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,4,1],[0,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,4,3,1],[0,1,1,1]],[[1,2,2,1],[0,3,0,2],[3,3,3,1],[0,1,1,1]],[[1,2,2,1],[0,3,0,3],[2,3,3,1],[0,1,1,1]],[[1,2,2,1],[0,4,0,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,2],[0,3,0,2],[2,3,3,1],[0,1,1,1]],[[1,2,3,1],[0,3,0,2],[2,3,3,1],[0,1,1,1]],[[1,3,2,1],[0,3,0,2],[2,3,3,1],[0,1,1,1]],[[2,2,2,1],[0,3,0,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[0,3,0,2],[2,4,3,0],[1,2,0,1]],[[1,2,2,1],[0,3,0,2],[3,3,3,0],[1,2,0,1]],[[1,2,2,1],[0,4,0,2],[2,3,3,0],[1,2,0,1]],[[1,2,2,2],[0,3,0,2],[2,3,3,0],[1,2,0,1]],[[1,2,3,1],[0,3,0,2],[2,3,3,0],[1,2,0,1]],[[1,3,2,1],[0,3,0,2],[2,3,3,0],[1,2,0,1]],[[2,2,2,1],[0,3,0,2],[2,3,3,0],[1,2,0,1]],[[1,2,2,1],[0,3,0,2],[2,3,3,0],[2,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,4,0],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,4,3,0],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[3,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,3,0,3],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,4,0,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,2],[0,3,0,2],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[0,3,0,2],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[0,3,0,2],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[0,3,0,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,3,0],[1,0,2,2]],[[1,2,2,1],[0,3,0,2],[2,3,3,0],[1,0,3,1]],[[1,2,2,1],[0,3,0,2],[2,3,3,0],[2,0,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,4,0],[1,0,2,1]],[[1,2,2,1],[0,3,0,2],[2,4,3,0],[1,0,2,1]],[[1,2,2,1],[0,3,0,2],[3,3,3,0],[1,0,2,1]],[[1,2,2,1],[0,3,0,3],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[0,4,0,2],[2,3,3,0],[1,0,2,1]],[[1,2,2,2],[0,3,0,2],[2,3,3,0],[1,0,2,1]],[[1,2,3,1],[0,3,0,2],[2,3,3,0],[1,0,2,1]],[[1,3,2,1],[0,3,0,2],[2,3,3,0],[1,0,2,1]],[[2,2,2,1],[0,3,0,2],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,3,0],[0,3,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,4,0],[0,2,1,1]],[[1,2,2,1],[0,3,0,2],[2,4,3,0],[0,2,1,1]],[[1,2,2,1],[0,3,0,2],[3,3,3,0],[0,2,1,1]],[[1,2,2,1],[0,3,0,3],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[0,4,0,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,2],[0,3,0,2],[2,3,3,0],[0,2,1,1]],[[1,2,3,1],[0,3,0,2],[2,3,3,0],[0,2,1,1]],[[1,3,2,1],[0,3,0,2],[2,3,3,0],[0,2,1,1]],[[2,2,2,1],[0,3,0,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,3,0],[0,1,2,2]],[[1,2,2,1],[0,3,0,2],[2,3,3,0],[0,1,3,1]],[[1,2,2,1],[0,3,0,2],[2,3,4,0],[0,1,2,1]],[[1,2,2,1],[0,3,0,2],[2,4,3,0],[0,1,2,1]],[[1,2,2,1],[0,3,0,2],[3,3,3,0],[0,1,2,1]],[[1,2,2,1],[0,3,0,3],[2,3,3,0],[0,1,2,1]],[[1,2,2,1],[0,4,0,2],[2,3,3,0],[0,1,2,1]],[[1,2,2,2],[0,3,0,2],[2,3,3,0],[0,1,2,1]],[[1,2,3,1],[0,3,0,2],[2,3,3,0],[0,1,2,1]],[[1,3,2,1],[0,3,0,2],[2,3,3,0],[0,1,2,1]],[[2,2,2,1],[0,3,0,2],[2,3,3,0],[0,1,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,2,2],[2,2,0,0]],[[1,2,2,1],[0,3,0,2],[2,4,2,2],[1,2,0,0]],[[1,2,2,1],[0,3,0,2],[3,3,2,2],[1,2,0,0]],[[1,2,2,1],[0,3,0,3],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[0,4,0,2],[2,3,2,2],[1,2,0,0]],[[1,2,2,2],[0,3,0,2],[2,3,2,2],[1,2,0,0]],[[1,2,3,1],[0,3,0,2],[2,3,2,2],[1,2,0,0]],[[1,3,2,1],[0,3,0,2],[2,3,2,2],[1,2,0,0]],[[2,2,2,1],[0,3,0,2],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[0,3,0,2],[2,3,2,2],[2,1,1,0]],[[1,2,2,1],[0,3,0,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[0,3,0,2],[2,4,2,2],[1,1,1,0]],[[1,2,2,1],[0,3,0,2],[3,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,3,0,3],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,4,0,2],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[0,3,0,2],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[0,3,0,2],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[0,3,0,2],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[0,3,0,2],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,3,0,2],[2,3,2,2],[1,1,0,2]],[[1,2,2,1],[0,3,0,2],[2,3,2,2],[2,1,0,1]],[[1,2,2,1],[0,3,0,2],[2,3,2,3],[1,1,0,1]],[[1,2,2,1],[0,3,0,2],[2,4,2,2],[1,1,0,1]],[[1,2,2,1],[0,3,0,2],[3,3,2,2],[1,1,0,1]],[[1,2,2,1],[0,3,0,3],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[0,4,0,2],[2,3,2,2],[1,1,0,1]],[[1,2,2,2],[0,3,0,2],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[0,3,0,2],[2,3,2,2],[1,1,0,1]],[[1,3,2,1],[0,3,0,2],[2,3,2,2],[1,1,0,1]],[[2,2,2,1],[0,3,0,2],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[0,3,0,2],[2,3,2,2],[2,0,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,2,3],[1,0,2,0]],[[1,2,2,1],[0,3,0,2],[2,4,2,2],[1,0,2,0]],[[1,2,2,1],[0,3,0,2],[3,3,2,2],[1,0,2,0]],[[1,2,2,1],[0,3,0,3],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[0,4,0,2],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[0,3,0,2],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[0,3,0,2],[2,3,2,2],[1,0,2,0]],[[1,3,2,1],[0,3,0,2],[2,3,2,2],[1,0,2,0]],[[2,2,2,1],[0,3,0,2],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,2,2],[1,0,1,2]],[[1,2,2,1],[0,3,0,2],[2,3,2,2],[2,0,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,2,3],[1,0,1,1]],[[1,2,2,1],[0,3,0,2],[2,4,2,2],[1,0,1,1]],[[1,2,2,1],[0,3,0,2],[3,3,2,2],[1,0,1,1]],[[1,2,2,1],[0,3,0,3],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[0,4,0,2],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[0,3,0,2],[2,3,2,2],[1,0,1,1]],[[1,2,3,1],[0,3,0,2],[2,3,2,2],[1,0,1,1]],[[1,3,2,1],[0,3,0,2],[2,3,2,2],[1,0,1,1]],[[2,2,2,1],[0,3,0,2],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,2,2],[0,3,1,0]],[[1,2,2,1],[0,3,0,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[0,3,0,2],[2,4,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,0,2],[3,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,0,3],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,4,0,2],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[0,3,0,2],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[0,3,0,2],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[0,3,0,2],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[0,3,0,2],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,3,0,2],[2,3,2,2],[0,2,0,2]],[[1,2,2,1],[0,3,0,2],[2,3,2,2],[0,3,0,1]],[[1,2,2,1],[0,3,0,2],[2,3,2,3],[0,2,0,1]],[[1,2,2,1],[0,3,0,2],[2,4,2,2],[0,2,0,1]],[[1,2,2,1],[0,3,0,2],[3,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,3,0,3],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,4,0,2],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[0,3,0,2],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[0,3,0,2],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[0,3,0,2],[2,3,2,2],[0,2,0,1]],[[2,2,2,1],[0,3,0,2],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,3,0,2],[2,3,2,3],[0,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,4,2,2],[0,1,2,0]],[[1,2,2,1],[0,3,0,2],[3,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,3,0,3],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,4,0,2],[2,3,2,2],[0,1,2,0]],[[1,2,2,2],[0,3,0,2],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[0,3,0,2],[2,3,2,2],[0,1,2,0]],[[1,3,2,1],[0,3,0,2],[2,3,2,2],[0,1,2,0]],[[2,2,2,1],[0,3,0,2],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,2,2],[0,1,1,2]],[[1,2,2,1],[0,3,0,2],[2,3,2,3],[0,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,4,2,2],[0,1,1,1]],[[1,2,2,1],[0,3,0,2],[3,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,3,0,3],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,4,0,2],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[0,3,0,2],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[0,3,0,2],[2,3,2,2],[0,1,1,1]],[[1,3,2,1],[0,3,0,2],[2,3,2,2],[0,1,1,1]],[[2,2,2,1],[0,3,0,2],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,4,2,1],[1,1,2,0]],[[1,2,2,1],[0,3,0,2],[3,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,3,0,3],[2,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,4,0,2],[2,3,2,1],[1,1,2,0]],[[1,2,2,2],[0,3,0,2],[2,3,2,1],[1,1,2,0]],[[1,2,3,1],[0,3,0,2],[2,3,2,1],[1,1,2,0]],[[1,3,2,1],[0,3,0,2],[2,3,2,1],[1,1,2,0]],[[2,2,2,1],[0,3,0,2],[2,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,2,1],[0,2,3,0]],[[1,2,2,1],[0,3,0,2],[2,3,2,1],[0,3,2,0]],[[1,2,2,1],[0,3,0,2],[2,4,2,1],[0,2,2,0]],[[1,2,2,1],[0,3,0,2],[3,3,2,1],[0,2,2,0]],[[1,2,2,1],[0,3,0,3],[2,3,2,1],[0,2,2,0]],[[1,2,2,1],[0,4,0,2],[2,3,2,1],[0,2,2,0]],[[1,2,2,2],[0,3,0,2],[2,3,2,1],[0,2,2,0]],[[1,2,3,1],[0,3,0,2],[2,3,2,1],[0,2,2,0]],[[1,3,2,1],[0,3,0,2],[2,3,2,1],[0,2,2,0]],[[2,2,2,1],[0,3,0,2],[2,3,2,1],[0,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,2,0],[2,1,2,1]],[[1,2,2,1],[0,3,0,2],[2,4,2,0],[1,1,2,1]],[[1,2,2,1],[0,3,0,2],[3,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,3,0,3],[2,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,4,0,2],[2,3,2,0],[1,1,2,1]],[[1,2,2,2],[0,3,0,2],[2,3,2,0],[1,1,2,1]],[[1,2,3,1],[0,3,0,2],[2,3,2,0],[1,1,2,1]],[[1,3,2,1],[0,3,0,2],[2,3,2,0],[1,1,2,1]],[[2,2,2,1],[0,3,0,2],[2,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,2,0],[0,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,3,2,0],[0,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,3,2,0],[0,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,4,2,0],[0,2,2,1]],[[1,2,2,1],[0,3,0,2],[3,3,2,0],[0,2,2,1]],[[1,2,2,1],[0,3,0,3],[2,3,2,0],[0,2,2,1]],[[1,2,2,1],[0,4,0,2],[2,3,2,0],[0,2,2,1]],[[1,2,2,2],[0,3,0,2],[2,3,2,0],[0,2,2,1]],[[1,2,3,1],[0,3,0,2],[2,3,2,0],[0,2,2,1]],[[1,3,2,1],[0,3,0,2],[2,3,2,0],[0,2,2,1]],[[2,2,2,1],[0,3,0,2],[2,3,2,0],[0,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[2,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,1,3],[1,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,4,1,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,2],[3,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,3],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,4,0,2],[2,3,1,2],[1,1,2,0]],[[1,2,2,2],[0,3,0,2],[2,3,1,2],[1,1,2,0]],[[1,2,3,1],[0,3,0,2],[2,3,1,2],[1,1,2,0]],[[1,3,2,1],[0,3,0,2],[2,3,1,2],[1,1,2,0]],[[2,2,2,1],[0,3,0,2],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[1,1,1,2]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[2,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,3],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,4,1,2],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[3,3,1,2],[1,1,1,1]],[[1,2,2,1],[0,3,0,3],[2,3,1,2],[1,1,1,1]],[[1,2,2,1],[0,4,0,2],[2,3,1,2],[1,1,1,1]],[[1,2,2,2],[0,3,0,2],[2,3,1,2],[1,1,1,1]],[[1,2,3,1],[0,3,0,2],[2,3,1,2],[1,1,1,1]],[[1,3,2,1],[0,3,0,2],[2,3,1,2],[1,1,1,1]],[[2,2,2,1],[0,3,0,2],[2,3,1,2],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[1,0,3,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[2,0,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,3],[1,0,2,1]],[[1,2,2,1],[0,3,0,2],[2,4,1,2],[1,0,2,1]],[[1,2,2,1],[0,3,0,2],[3,3,1,2],[1,0,2,1]],[[1,2,2,1],[0,3,0,3],[2,3,1,2],[1,0,2,1]],[[1,2,2,1],[0,4,0,2],[2,3,1,2],[1,0,2,1]],[[1,2,2,2],[0,3,0,2],[2,3,1,2],[1,0,2,1]],[[1,2,3,1],[0,3,0,2],[2,3,1,2],[1,0,2,1]],[[1,3,2,1],[0,3,0,2],[2,3,1,2],[1,0,2,1]],[[2,2,2,1],[0,3,0,2],[2,3,1,2],[1,0,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[0,2,3,0]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[0,3,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,1,3],[0,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,4,1,2],[0,2,2,0]],[[1,2,2,1],[0,3,0,2],[3,3,1,2],[0,2,2,0]],[[1,2,2,1],[0,3,0,3],[2,3,1,2],[0,2,2,0]],[[1,2,2,1],[0,4,0,2],[2,3,1,2],[0,2,2,0]],[[1,2,2,2],[0,3,0,2],[2,3,1,2],[0,2,2,0]],[[1,2,3,1],[0,3,0,2],[2,3,1,2],[0,2,2,0]],[[1,3,2,1],[0,3,0,2],[2,3,1,2],[0,2,2,0]],[[2,2,2,1],[0,3,0,2],[2,3,1,2],[0,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[0,2,1,2]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[0,3,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,3],[0,2,1,1]],[[1,2,2,1],[0,3,0,2],[2,4,1,2],[0,2,1,1]],[[1,2,2,1],[0,3,0,2],[3,3,1,2],[0,2,1,1]],[[1,2,2,1],[0,3,0,3],[2,3,1,2],[0,2,1,1]],[[1,2,2,1],[0,4,0,2],[2,3,1,2],[0,2,1,1]],[[1,2,2,2],[0,3,0,2],[2,3,1,2],[0,2,1,1]],[[1,2,3,1],[0,3,0,2],[2,3,1,2],[0,2,1,1]],[[1,3,2,1],[0,3,0,2],[2,3,1,2],[0,2,1,1]],[[2,2,2,1],[0,3,0,2],[2,3,1,2],[0,2,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[0,1,2,2]],[[1,2,2,1],[0,3,0,2],[2,3,1,2],[0,1,3,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,3],[0,1,2,1]],[[1,2,2,1],[0,3,0,2],[2,4,1,2],[0,1,2,1]],[[1,2,2,1],[0,3,0,2],[3,3,1,2],[0,1,2,1]],[[1,2,2,1],[0,3,0,3],[2,3,1,2],[0,1,2,1]],[[1,2,2,1],[0,4,0,2],[2,3,1,2],[0,1,2,1]],[[1,2,2,2],[0,3,0,2],[2,3,1,2],[0,1,2,1]],[[1,2,3,1],[0,3,0,2],[2,3,1,2],[0,1,2,1]],[[1,3,2,1],[0,3,0,2],[2,3,1,2],[0,1,2,1]],[[2,2,2,1],[0,3,0,2],[2,3,1,2],[0,1,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,1,1],[2,2,2,0]],[[1,2,2,1],[0,3,0,2],[3,3,1,1],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,1,1],[2,1,2,1]],[[1,2,2,1],[0,3,0,2],[2,4,1,1],[1,1,2,1]],[[1,2,2,1],[0,3,0,2],[3,3,1,1],[1,1,2,1]],[[1,2,2,1],[0,3,0,3],[2,3,1,1],[1,1,2,1]],[[1,2,2,1],[0,4,0,2],[2,3,1,1],[1,1,2,1]],[[1,2,2,2],[0,3,0,2],[2,3,1,1],[1,1,2,1]],[[1,2,3,1],[0,3,0,2],[2,3,1,1],[1,1,2,1]],[[1,3,2,1],[0,3,0,2],[2,3,1,1],[1,1,2,1]],[[2,2,2,1],[0,3,0,2],[2,3,1,1],[1,1,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,1],[0,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,3,1,1],[0,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,1],[0,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,4,1,1],[0,2,2,1]],[[1,2,2,1],[0,3,0,2],[3,3,1,1],[0,2,2,1]],[[1,2,2,1],[0,3,0,3],[2,3,1,1],[0,2,2,1]],[[1,2,2,1],[0,4,0,2],[2,3,1,1],[0,2,2,1]],[[1,2,2,2],[0,3,0,2],[2,3,1,1],[0,2,2,1]],[[1,2,3,1],[0,3,0,2],[2,3,1,1],[0,2,2,1]],[[1,3,2,1],[0,3,0,2],[2,3,1,1],[0,2,2,1]],[[2,2,2,1],[0,3,0,2],[2,3,1,1],[0,2,2,1]],[[0,3,2,0],[2,3,3,2],[2,2,0,0],[0,2,2,1]],[[0,2,3,0],[2,3,3,2],[2,2,0,0],[0,2,2,1]],[[0,2,2,0],[3,3,3,2],[2,2,0,0],[0,2,2,1]],[[0,2,2,0],[2,4,3,2],[2,2,0,0],[0,2,2,1]],[[0,2,2,0],[2,3,3,2],[3,2,0,0],[0,2,2,1]],[[0,3,2,0],[2,3,3,2],[2,2,0,0],[1,1,2,1]],[[0,2,3,0],[2,3,3,2],[2,2,0,0],[1,1,2,1]],[[0,2,2,0],[3,3,3,2],[2,2,0,0],[1,1,2,1]],[[0,2,2,0],[2,4,3,2],[2,2,0,0],[1,1,2,1]],[[0,2,2,0],[2,3,3,2],[3,2,0,0],[1,1,2,1]],[[0,2,2,0],[2,3,3,2],[2,2,0,0],[2,1,2,1]],[[0,3,2,0],[2,3,3,2],[2,2,0,1],[0,2,2,0]],[[0,2,3,0],[2,3,3,2],[2,2,0,1],[0,2,2,0]],[[0,2,2,0],[3,3,3,2],[2,2,0,1],[0,2,2,0]],[[0,2,2,0],[2,4,3,2],[2,2,0,1],[0,2,2,0]],[[0,2,2,0],[2,3,3,2],[3,2,0,1],[0,2,2,0]],[[0,3,2,0],[2,3,3,2],[2,2,0,1],[1,1,2,0]],[[0,2,3,0],[2,3,3,2],[2,2,0,1],[1,1,2,0]],[[0,2,2,0],[3,3,3,2],[2,2,0,1],[1,1,2,0]],[[0,2,2,0],[2,4,3,2],[2,2,0,1],[1,1,2,0]],[[0,2,2,0],[2,3,3,2],[3,2,0,1],[1,1,2,0]],[[0,2,2,0],[2,3,3,2],[2,2,0,1],[2,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,1,0],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,1,0],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[3,3,1,0],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,0,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,0,2],[2,2,2,0]],[[1,2,2,1],[0,3,0,2],[3,3,0,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,3,0,2],[1,3,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,0,2],[2,2,1,1]],[[0,3,2,0],[2,3,3,2],[2,2,0,2],[0,1,1,1]],[[0,2,3,0],[2,3,3,2],[2,2,0,2],[0,1,1,1]],[[0,2,2,0],[3,3,3,2],[2,2,0,2],[0,1,1,1]],[[0,2,2,0],[2,4,3,2],[2,2,0,2],[0,1,1,1]],[[0,3,2,0],[2,3,3,2],[2,2,0,2],[0,1,2,0]],[[0,2,3,0],[2,3,3,2],[2,2,0,2],[0,1,2,0]],[[0,2,2,0],[3,3,3,2],[2,2,0,2],[0,1,2,0]],[[0,2,2,0],[2,4,3,2],[2,2,0,2],[0,1,2,0]],[[0,3,2,0],[2,3,3,2],[2,2,0,2],[0,2,0,1]],[[0,2,3,0],[2,3,3,2],[2,2,0,2],[0,2,0,1]],[[0,2,2,0],[3,3,3,2],[2,2,0,2],[0,2,0,1]],[[0,2,2,0],[2,4,3,2],[2,2,0,2],[0,2,0,1]],[[0,2,2,0],[2,3,3,2],[3,2,0,2],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[2,2,0,2],[0,2,1,0]],[[0,2,3,0],[2,3,3,2],[2,2,0,2],[0,2,1,0]],[[0,2,2,0],[3,3,3,2],[2,2,0,2],[0,2,1,0]],[[0,2,2,0],[2,4,3,2],[2,2,0,2],[0,2,1,0]],[[0,2,2,0],[2,3,3,2],[3,2,0,2],[0,2,1,0]],[[1,2,2,1],[0,3,0,2],[3,3,0,2],[1,2,1,1]],[[1,2,2,1],[0,3,0,2],[2,3,0,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,3,0,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[3,3,0,1],[1,2,2,1]],[[0,3,2,0],[2,3,3,2],[2,2,0,2],[1,0,1,1]],[[0,2,3,0],[2,3,3,2],[2,2,0,2],[1,0,1,1]],[[0,2,2,0],[3,3,3,2],[2,2,0,2],[1,0,1,1]],[[0,2,2,0],[2,4,3,2],[2,2,0,2],[1,0,1,1]],[[0,2,2,0],[2,3,3,2],[3,2,0,2],[1,0,1,1]],[[0,3,2,0],[2,3,3,2],[2,2,0,2],[1,0,2,0]],[[0,2,3,0],[2,3,3,2],[2,2,0,2],[1,0,2,0]],[[0,2,2,0],[3,3,3,2],[2,2,0,2],[1,0,2,0]],[[0,2,2,0],[2,4,3,2],[2,2,0,2],[1,0,2,0]],[[0,2,2,0],[2,3,3,2],[3,2,0,2],[1,0,2,0]],[[0,3,2,0],[2,3,3,2],[2,2,0,2],[1,1,0,1]],[[0,2,3,0],[2,3,3,2],[2,2,0,2],[1,1,0,1]],[[0,2,2,0],[3,3,3,2],[2,2,0,2],[1,1,0,1]],[[0,2,2,0],[2,4,3,2],[2,2,0,2],[1,1,0,1]],[[0,2,2,0],[2,3,3,2],[3,2,0,2],[1,1,0,1]],[[0,2,2,0],[2,3,3,2],[2,2,0,2],[2,1,0,1]],[[0,3,2,0],[2,3,3,2],[2,2,0,2],[1,1,1,0]],[[0,2,3,0],[2,3,3,2],[2,2,0,2],[1,1,1,0]],[[0,2,2,0],[3,3,3,2],[2,2,0,2],[1,1,1,0]],[[0,2,2,0],[2,4,3,2],[2,2,0,2],[1,1,1,0]],[[0,2,2,0],[2,3,3,2],[3,2,0,2],[1,1,1,0]],[[0,2,2,0],[2,3,3,2],[2,2,0,2],[2,1,1,0]],[[0,3,2,0],[2,3,3,2],[2,2,0,2],[1,2,0,0]],[[0,2,3,0],[2,3,3,2],[2,2,0,2],[1,2,0,0]],[[0,2,2,0],[3,3,3,2],[2,2,0,2],[1,2,0,0]],[[0,2,2,0],[2,4,3,2],[2,2,0,2],[1,2,0,0]],[[0,2,2,0],[2,3,3,2],[3,2,0,2],[1,2,0,0]],[[0,2,2,0],[2,3,3,2],[2,2,0,2],[2,2,0,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[0,3,0,2],[2,2,4,2],[1,1,1,0]],[[1,2,2,1],[0,3,0,3],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[0,4,0,2],[2,2,3,2],[1,1,1,0]],[[1,2,2,2],[0,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,2,3,1],[0,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[0,3,0,2],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[0,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,2],[1,1,0,2]],[[1,2,2,1],[0,3,0,2],[2,2,3,3],[1,1,0,1]],[[1,2,2,1],[0,3,0,2],[2,2,4,2],[1,1,0,1]],[[0,3,2,0],[2,3,3,2],[2,2,1,0],[0,1,2,1]],[[0,2,3,0],[2,3,3,2],[2,2,1,0],[0,1,2,1]],[[0,2,2,0],[3,3,3,2],[2,2,1,0],[0,1,2,1]],[[0,2,2,0],[2,4,3,2],[2,2,1,0],[0,1,2,1]],[[0,3,2,0],[2,3,3,2],[2,2,1,0],[0,2,1,1]],[[0,2,3,0],[2,3,3,2],[2,2,1,0],[0,2,1,1]],[[0,2,2,0],[3,3,3,2],[2,2,1,0],[0,2,1,1]],[[0,2,2,0],[2,4,3,2],[2,2,1,0],[0,2,1,1]],[[0,2,2,0],[2,3,3,2],[3,2,1,0],[0,2,1,1]],[[0,3,2,0],[2,3,3,2],[2,2,1,0],[1,0,2,1]],[[0,2,3,0],[2,3,3,2],[2,2,1,0],[1,0,2,1]],[[0,2,2,0],[3,3,3,2],[2,2,1,0],[1,0,2,1]],[[0,2,2,0],[2,4,3,2],[2,2,1,0],[1,0,2,1]],[[0,2,2,0],[2,3,3,2],[3,2,1,0],[1,0,2,1]],[[0,3,2,0],[2,3,3,2],[2,2,1,0],[1,1,1,1]],[[0,2,3,0],[2,3,3,2],[2,2,1,0],[1,1,1,1]],[[0,2,2,0],[3,3,3,2],[2,2,1,0],[1,1,1,1]],[[0,2,2,0],[2,4,3,2],[2,2,1,0],[1,1,1,1]],[[0,2,2,0],[2,3,3,2],[3,2,1,0],[1,1,1,1]],[[0,2,2,0],[2,3,3,2],[2,2,1,0],[2,1,1,1]],[[0,3,2,0],[2,3,3,2],[2,2,1,0],[1,2,0,1]],[[0,2,3,0],[2,3,3,2],[2,2,1,0],[1,2,0,1]],[[0,2,2,0],[3,3,3,2],[2,2,1,0],[1,2,0,1]],[[0,2,2,0],[2,4,3,2],[2,2,1,0],[1,2,0,1]],[[0,2,2,0],[2,3,3,2],[3,2,1,0],[1,2,0,1]],[[0,2,2,0],[2,3,3,2],[2,2,1,0],[2,2,0,1]],[[1,2,2,1],[0,3,0,3],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[0,4,0,2],[2,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,2,3,1],[0,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[0,3,0,2],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[0,3,0,2],[2,2,3,2],[1,1,0,1]],[[0,3,2,0],[2,3,3,2],[2,2,1,1],[0,1,1,1]],[[0,2,3,0],[2,3,3,2],[2,2,1,1],[0,1,1,1]],[[0,2,2,0],[3,3,3,2],[2,2,1,1],[0,1,1,1]],[[0,2,2,0],[2,4,3,2],[2,2,1,1],[0,1,1,1]],[[0,3,2,0],[2,3,3,2],[2,2,1,1],[0,1,2,0]],[[0,2,3,0],[2,3,3,2],[2,2,1,1],[0,1,2,0]],[[0,2,2,0],[3,3,3,2],[2,2,1,1],[0,1,2,0]],[[0,2,2,0],[2,4,3,2],[2,2,1,1],[0,1,2,0]],[[0,3,2,0],[2,3,3,2],[2,2,1,1],[0,2,0,1]],[[0,2,3,0],[2,3,3,2],[2,2,1,1],[0,2,0,1]],[[0,2,2,0],[3,3,3,2],[2,2,1,1],[0,2,0,1]],[[0,2,2,0],[2,4,3,2],[2,2,1,1],[0,2,0,1]],[[0,2,2,0],[2,3,3,2],[3,2,1,1],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[2,2,1,1],[0,2,1,0]],[[0,2,3,0],[2,3,3,2],[2,2,1,1],[0,2,1,0]],[[0,2,2,0],[3,3,3,2],[2,2,1,1],[0,2,1,0]],[[0,2,2,0],[2,4,3,2],[2,2,1,1],[0,2,1,0]],[[0,2,2,0],[2,3,3,2],[3,2,1,1],[0,2,1,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,2],[1,0,3,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,3],[1,0,2,0]],[[0,3,2,0],[2,3,3,2],[2,2,1,1],[1,0,1,1]],[[0,2,3,0],[2,3,3,2],[2,2,1,1],[1,0,1,1]],[[0,2,2,0],[3,3,3,2],[2,2,1,1],[1,0,1,1]],[[0,2,2,0],[2,4,3,2],[2,2,1,1],[1,0,1,1]],[[0,2,2,0],[2,3,3,2],[3,2,1,1],[1,0,1,1]],[[0,3,2,0],[2,3,3,2],[2,2,1,1],[1,0,2,0]],[[0,2,3,0],[2,3,3,2],[2,2,1,1],[1,0,2,0]],[[0,2,2,0],[3,3,3,2],[2,2,1,1],[1,0,2,0]],[[0,2,2,0],[2,4,3,2],[2,2,1,1],[1,0,2,0]],[[0,2,2,0],[2,3,3,2],[3,2,1,1],[1,0,2,0]],[[0,3,2,0],[2,3,3,2],[2,2,1,1],[1,1,0,1]],[[0,2,3,0],[2,3,3,2],[2,2,1,1],[1,1,0,1]],[[0,2,2,0],[3,3,3,2],[2,2,1,1],[1,1,0,1]],[[0,2,2,0],[2,4,3,2],[2,2,1,1],[1,1,0,1]],[[0,2,2,0],[2,3,3,2],[3,2,1,1],[1,1,0,1]],[[0,2,2,0],[2,3,3,2],[2,2,1,1],[2,1,0,1]],[[0,3,2,0],[2,3,3,2],[2,2,1,1],[1,1,1,0]],[[0,2,3,0],[2,3,3,2],[2,2,1,1],[1,1,1,0]],[[0,2,2,0],[3,3,3,2],[2,2,1,1],[1,1,1,0]],[[0,2,2,0],[2,4,3,2],[2,2,1,1],[1,1,1,0]],[[0,2,2,0],[2,3,3,2],[3,2,1,1],[1,1,1,0]],[[0,2,2,0],[2,3,3,2],[2,2,1,1],[2,1,1,0]],[[1,2,2,1],[0,3,0,2],[2,2,4,2],[1,0,2,0]],[[1,2,2,1],[0,3,0,3],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[0,4,0,2],[2,2,3,2],[1,0,2,0]],[[1,2,2,2],[0,3,0,2],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[0,3,0,2],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[0,3,0,2],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[0,3,0,2],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,2],[1,0,1,2]],[[0,3,2,0],[2,3,3,2],[2,2,1,1],[1,2,0,0]],[[0,2,3,0],[2,3,3,2],[2,2,1,1],[1,2,0,0]],[[0,2,2,0],[3,3,3,2],[2,2,1,1],[1,2,0,0]],[[0,2,2,0],[2,4,3,2],[2,2,1,1],[1,2,0,0]],[[0,2,2,0],[2,3,3,2],[3,2,1,1],[1,2,0,0]],[[0,2,2,0],[2,3,3,2],[2,2,1,1],[2,2,0,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,3],[1,0,1,1]],[[1,2,2,1],[0,3,0,2],[2,2,4,2],[1,0,1,1]],[[1,2,2,1],[0,3,0,3],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[0,4,0,2],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[0,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[0,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[0,3,0,2],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[0,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[0,3,0,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[0,3,0,2],[2,2,4,2],[0,2,1,0]],[[1,2,2,1],[0,3,0,3],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[0,4,0,2],[2,2,3,2],[0,2,1,0]],[[1,2,2,2],[0,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,2,3,1],[0,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[0,3,0,2],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[0,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,2],[0,2,0,2]],[[1,2,2,1],[0,3,0,2],[2,2,3,3],[0,2,0,1]],[[1,2,2,1],[0,3,0,2],[2,2,4,2],[0,2,0,1]],[[1,2,2,1],[0,3,0,3],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[0,4,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,2,2],[0,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,3,1],[0,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[0,3,0,2],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[0,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[0,3,0,2],[2,2,3,2],[0,1,3,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,3],[0,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,2,4,2],[0,1,2,0]],[[1,2,2,1],[0,3,0,3],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[0,4,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[0,3,0,2],[2,2,3,2],[0,1,2,0]],[[2,2,2,1],[0,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,2],[0,1,1,2]],[[1,2,2,1],[0,3,0,2],[2,2,3,3],[0,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,2,4,2],[0,1,1,1]],[[1,2,2,1],[0,3,0,3],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[0,4,0,2],[2,2,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,0,2],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[0,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,0,2],[2,2,3,2],[0,0,2,2]],[[1,2,2,1],[0,3,0,2],[2,2,3,3],[0,0,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,4,2],[0,0,2,1]],[[1,2,2,1],[0,3,0,3],[2,2,3,2],[0,0,2,1]],[[1,2,2,1],[0,4,0,2],[2,2,3,2],[0,0,2,1]],[[1,2,2,2],[0,3,0,2],[2,2,3,2],[0,0,2,1]],[[1,2,3,1],[0,3,0,2],[2,2,3,2],[0,0,2,1]],[[1,3,2,1],[0,3,0,2],[2,2,3,2],[0,0,2,1]],[[2,2,2,1],[0,3,0,2],[2,2,3,2],[0,0,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,1],[2,2,1,0]],[[1,2,2,1],[0,3,0,2],[3,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,1],[1,3,0,1]],[[1,2,2,1],[0,3,0,2],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[0,3,0,2],[3,2,3,1],[1,2,0,1]],[[1,2,2,1],[0,3,0,2],[2,2,3,1],[1,0,2,2]],[[1,2,2,1],[0,3,0,2],[2,2,3,1],[1,0,3,1]],[[1,2,2,1],[0,3,0,2],[2,2,4,1],[1,0,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,1],[0,3,2,0]],[[1,2,2,1],[0,3,0,2],[2,2,4,1],[0,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,2,3,1],[0,1,2,2]],[[1,2,2,1],[0,3,0,2],[2,2,3,1],[0,1,3,1]],[[1,2,2,1],[0,3,0,2],[2,2,4,1],[0,1,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,3,0],[1,3,1,1]],[[1,2,2,1],[0,3,0,2],[2,2,3,0],[2,2,1,1]],[[1,2,2,1],[0,3,0,2],[3,2,3,0],[1,2,1,1]],[[1,2,2,1],[0,3,0,2],[2,2,3,0],[0,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,2,3,0],[0,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,2,3,0],[0,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,4,0],[0,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,2,2],[1,3,1,0]],[[1,2,2,1],[0,3,0,2],[2,2,2,2],[2,2,1,0]],[[1,2,2,1],[0,3,0,2],[3,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,3,0,2],[2,2,2,2],[1,3,0,1]],[[1,2,2,1],[0,3,0,2],[2,2,2,2],[2,2,0,1]],[[1,2,2,1],[0,3,0,2],[3,2,2,2],[1,2,0,1]],[[1,2,2,1],[0,3,0,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[0,3,0,2],[2,2,2,2],[1,0,3,1]],[[1,2,2,1],[0,3,0,2],[2,2,2,3],[1,0,2,1]],[[1,2,2,1],[0,3,0,3],[2,2,2,2],[1,0,2,1]],[[1,2,2,1],[0,4,0,2],[2,2,2,2],[1,0,2,1]],[[1,2,2,2],[0,3,0,2],[2,2,2,2],[1,0,2,1]],[[1,2,3,1],[0,3,0,2],[2,2,2,2],[1,0,2,1]],[[1,3,2,1],[0,3,0,2],[2,2,2,2],[1,0,2,1]],[[2,2,2,1],[0,3,0,2],[2,2,2,2],[1,0,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,2,2],[0,1,2,2]],[[1,2,2,1],[0,3,0,2],[2,2,2,2],[0,1,3,1]],[[1,2,2,1],[0,3,0,2],[2,2,2,3],[0,1,2,1]],[[1,2,2,1],[0,3,0,3],[2,2,2,2],[0,1,2,1]],[[1,2,2,1],[0,4,0,2],[2,2,2,2],[0,1,2,1]],[[1,2,2,2],[0,3,0,2],[2,2,2,2],[0,1,2,1]],[[1,2,3,1],[0,3,0,2],[2,2,2,2],[0,1,2,1]],[[1,3,2,1],[0,3,0,2],[2,2,2,2],[0,1,2,1]],[[2,2,2,1],[0,3,0,2],[2,2,2,2],[0,1,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[0,3,0,2],[2,2,2,1],[1,3,2,0]],[[1,2,2,1],[0,3,0,2],[2,2,2,1],[2,2,2,0]],[[1,2,2,1],[0,3,0,2],[3,2,2,1],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,2,2,0],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,2,2,0],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,2,2,0],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,2,0],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[3,2,2,0],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,1,2],[1,2,3,0]],[[1,2,2,1],[0,3,0,2],[2,2,1,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,2],[2,2,1,2],[2,2,2,0]],[[0,3,2,0],[2,3,3,2],[2,2,2,1],[0,2,0,0]],[[0,2,3,0],[2,3,3,2],[2,2,2,1],[0,2,0,0]],[[0,2,2,0],[3,3,3,2],[2,2,2,1],[0,2,0,0]],[[0,2,2,0],[2,4,3,2],[2,2,2,1],[0,2,0,0]],[[1,2,2,1],[0,3,0,2],[3,2,1,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,2,1,2],[1,3,1,1]],[[1,2,2,1],[0,3,0,2],[2,2,1,2],[2,2,1,1]],[[1,2,2,1],[0,3,0,2],[3,2,1,2],[1,2,1,1]],[[1,2,2,1],[0,3,0,2],[2,2,1,2],[0,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,2,1,2],[0,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,2,1,2],[0,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,1,3],[0,2,2,1]],[[1,2,2,1],[0,3,0,3],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[0,4,0,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[0,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[0,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,3,2,1],[0,3,0,2],[2,2,1,2],[0,2,2,1]],[[2,2,2,1],[0,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,1,1],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,2,1,1],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,2,1,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,2,1,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[3,2,1,1],[1,2,2,1]],[[0,3,2,0],[2,3,3,2],[2,2,2,1],[1,1,0,0]],[[0,2,3,0],[2,3,3,2],[2,2,2,1],[1,1,0,0]],[[0,2,2,0],[3,3,3,2],[2,2,2,1],[1,1,0,0]],[[0,2,2,0],[2,4,3,2],[2,2,2,1],[1,1,0,0]],[[0,2,2,0],[2,3,3,2],[3,2,2,1],[1,1,0,0]],[[1,2,2,1],[0,3,0,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[0,3,0,2],[2,1,3,2],[0,3,2,0]],[[1,2,2,1],[0,3,0,2],[2,1,3,3],[0,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,1,4,2],[0,2,2,0]],[[1,2,2,1],[0,3,0,3],[2,1,3,2],[0,2,2,0]],[[1,2,2,1],[0,4,0,2],[2,1,3,2],[0,2,2,0]],[[1,2,2,2],[0,3,0,2],[2,1,3,2],[0,2,2,0]],[[1,2,3,1],[0,3,0,2],[2,1,3,2],[0,2,2,0]],[[1,3,2,1],[0,3,0,2],[2,1,3,2],[0,2,2,0]],[[2,2,2,1],[0,3,0,2],[2,1,3,2],[0,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,1,3,2],[0,2,1,2]],[[1,2,2,1],[0,3,0,2],[2,1,3,3],[0,2,1,1]],[[1,2,2,1],[0,3,0,2],[2,1,4,2],[0,2,1,1]],[[1,2,2,1],[0,3,0,3],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[0,4,0,2],[2,1,3,2],[0,2,1,1]],[[1,2,2,2],[0,3,0,2],[2,1,3,2],[0,2,1,1]],[[1,2,3,1],[0,3,0,2],[2,1,3,2],[0,2,1,1]],[[1,3,2,1],[0,3,0,2],[2,1,3,2],[0,2,1,1]],[[2,2,2,1],[0,3,0,2],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[0,3,0,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[0,3,0,2],[2,1,3,1],[1,3,2,0]],[[1,2,2,1],[0,3,0,2],[2,1,3,1],[2,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,1,4,1],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[3,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,1,3,1],[0,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,1,3,1],[0,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,1,3,1],[0,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,1,4,1],[0,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,1,3,0],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,1,3,0],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,1,3,0],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,1,3,0],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,1,4,0],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[3,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,1,2,2],[0,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,1,2,2],[0,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,1,2,2],[0,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,1,2,3],[0,2,2,1]],[[1,2,2,1],[0,3,0,3],[2,1,2,2],[0,2,2,1]],[[1,2,2,1],[0,4,0,2],[2,1,2,2],[0,2,2,1]],[[1,2,2,2],[0,3,0,2],[2,1,2,2],[0,2,2,1]],[[1,2,3,1],[0,3,0,2],[2,1,2,2],[0,2,2,1]],[[1,3,2,1],[0,3,0,2],[2,1,2,2],[0,2,2,1]],[[2,2,2,1],[0,3,0,2],[2,1,2,2],[0,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,1,1,2],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,1,1,2],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,1,1,2],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,1,1,2],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,1,1,3],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[3,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,0,3],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,4,0,2],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[0,3,0,2],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[0,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,0,2],[2,0,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,2],[2,0,3,2],[2,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,0,3,3],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,0,4,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[3,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,3],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,4,0,2],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[0,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[0,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[0,3,0,2],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[0,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[2,0,3,2],[1,2,1,2]],[[1,2,2,1],[0,3,0,2],[2,0,3,3],[1,2,1,1]],[[1,2,2,1],[0,3,0,2],[2,0,4,2],[1,2,1,1]],[[1,2,2,1],[0,3,0,3],[2,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,4,0,2],[2,0,3,2],[1,2,1,1]],[[1,2,2,2],[0,3,0,2],[2,0,3,2],[1,2,1,1]],[[1,2,3,1],[0,3,0,2],[2,0,3,2],[1,2,1,1]],[[1,3,2,1],[0,3,0,2],[2,0,3,2],[1,2,1,1]],[[2,2,2,1],[0,3,0,2],[2,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,3,0,2],[2,0,3,2],[0,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,0,3,2],[0,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,0,3,3],[0,2,2,1]],[[1,2,2,1],[0,3,0,3],[2,0,3,2],[0,2,2,1]],[[1,2,2,2],[0,3,0,2],[2,0,3,2],[0,2,2,1]],[[1,2,3,1],[0,3,0,2],[2,0,3,2],[0,2,2,1]],[[1,3,2,1],[0,3,0,2],[2,0,3,2],[0,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,0,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,0,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,0,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,0,3,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,0,4,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[3,0,3,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[2,0,2,2],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[2,0,2,2],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[2,0,2,3],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[3,0,2,2],[1,2,2,1]],[[1,2,2,1],[0,3,0,3],[2,0,2,2],[1,2,2,1]],[[1,2,2,1],[0,4,0,2],[2,0,2,2],[1,2,2,1]],[[1,2,2,2],[0,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,2,3,1],[0,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,3,2,1],[0,3,0,2],[2,0,2,2],[1,2,2,1]],[[2,2,2,1],[0,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[0,3,0,2],[1,3,3,1],[2,2,1,0]],[[1,2,2,1],[0,3,0,2],[1,3,4,1],[1,2,1,0]],[[1,2,2,1],[0,3,0,2],[1,4,3,1],[1,2,1,0]],[[1,2,2,1],[0,3,0,3],[1,3,3,1],[1,2,1,0]],[[1,2,2,1],[0,4,0,2],[1,3,3,1],[1,2,1,0]],[[1,2,2,2],[0,3,0,2],[1,3,3,1],[1,2,1,0]],[[1,2,3,1],[0,3,0,2],[1,3,3,1],[1,2,1,0]],[[1,3,2,1],[0,3,0,2],[1,3,3,1],[1,2,1,0]],[[2,2,2,1],[0,3,0,2],[1,3,3,1],[1,2,1,0]],[[1,2,2,1],[0,3,0,2],[1,3,3,1],[1,3,0,1]],[[1,2,2,1],[0,3,0,2],[1,3,3,1],[2,2,0,1]],[[1,2,2,1],[0,3,0,2],[1,3,4,1],[1,2,0,1]],[[1,2,2,1],[0,3,0,2],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[0,3,0,3],[1,3,3,1],[1,2,0,1]],[[1,2,2,1],[0,4,0,2],[1,3,3,1],[1,2,0,1]],[[1,2,2,2],[0,3,0,2],[1,3,3,1],[1,2,0,1]],[[1,2,3,1],[0,3,0,2],[1,3,3,1],[1,2,0,1]],[[1,3,2,1],[0,3,0,2],[1,3,3,1],[1,2,0,1]],[[2,2,2,1],[0,3,0,2],[1,3,3,1],[1,2,0,1]],[[1,2,2,1],[0,3,0,2],[1,3,3,1],[1,1,3,0]],[[1,2,2,1],[0,3,0,2],[1,3,4,1],[1,1,2,0]],[[1,2,2,1],[0,3,0,2],[1,4,3,1],[1,1,2,0]],[[1,2,2,1],[0,3,0,3],[1,3,3,1],[1,1,2,0]],[[1,2,2,1],[0,4,0,2],[1,3,3,1],[1,1,2,0]],[[1,2,2,2],[0,3,0,2],[1,3,3,1],[1,1,2,0]],[[1,2,3,1],[0,3,0,2],[1,3,3,1],[1,1,2,0]],[[1,3,2,1],[0,3,0,2],[1,3,3,1],[1,1,2,0]],[[2,2,2,1],[0,3,0,2],[1,3,3,1],[1,1,2,0]],[[1,2,2,1],[0,3,0,2],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[1,4,3,1],[1,1,1,1]],[[1,2,2,1],[0,3,0,3],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,4,0,2],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[0,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[0,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[0,3,0,2],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[0,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[1,3,3,0],[1,3,1,1]],[[1,2,2,1],[0,3,0,2],[1,3,3,0],[2,2,1,1]],[[1,2,2,1],[0,3,0,2],[1,3,4,0],[1,2,1,1]],[[1,2,2,1],[0,3,0,2],[1,4,3,0],[1,2,1,1]],[[1,2,2,1],[0,3,0,3],[1,3,3,0],[1,2,1,1]],[[1,2,2,1],[0,4,0,2],[1,3,3,0],[1,2,1,1]],[[1,2,2,2],[0,3,0,2],[1,3,3,0],[1,2,1,1]],[[1,2,3,1],[0,3,0,2],[1,3,3,0],[1,2,1,1]],[[1,3,2,1],[0,3,0,2],[1,3,3,0],[1,2,1,1]],[[2,2,2,1],[0,3,0,2],[1,3,3,0],[1,2,1,1]],[[1,2,2,1],[0,3,0,2],[1,3,3,0],[1,1,2,2]],[[1,2,2,1],[0,3,0,2],[1,3,3,0],[1,1,3,1]],[[1,2,2,1],[0,3,0,2],[1,3,4,0],[1,1,2,1]],[[1,2,2,1],[0,3,0,2],[1,4,3,0],[1,1,2,1]],[[1,2,2,1],[0,3,0,3],[1,3,3,0],[1,1,2,1]],[[1,2,2,1],[0,4,0,2],[1,3,3,0],[1,1,2,1]],[[1,2,2,2],[0,3,0,2],[1,3,3,0],[1,1,2,1]],[[1,2,3,1],[0,3,0,2],[1,3,3,0],[1,1,2,1]],[[1,3,2,1],[0,3,0,2],[1,3,3,0],[1,1,2,1]],[[2,2,2,1],[0,3,0,2],[1,3,3,0],[1,1,2,1]],[[1,2,2,1],[0,3,0,2],[1,3,2,2],[1,3,1,0]],[[1,2,2,1],[0,3,0,2],[1,3,2,2],[2,2,1,0]],[[1,2,2,1],[0,3,0,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[0,3,0,2],[1,4,2,2],[1,2,1,0]],[[1,2,2,1],[0,3,0,3],[1,3,2,2],[1,2,1,0]],[[1,2,2,1],[0,4,0,2],[1,3,2,2],[1,2,1,0]],[[1,2,2,2],[0,3,0,2],[1,3,2,2],[1,2,1,0]],[[1,2,3,1],[0,3,0,2],[1,3,2,2],[1,2,1,0]],[[1,3,2,1],[0,3,0,2],[1,3,2,2],[1,2,1,0]],[[2,2,2,1],[0,3,0,2],[1,3,2,2],[1,2,1,0]],[[1,2,2,1],[0,3,0,2],[1,3,2,2],[1,2,0,2]],[[1,2,2,1],[0,3,0,2],[1,3,2,2],[1,3,0,1]],[[1,2,2,1],[0,3,0,2],[1,3,2,2],[2,2,0,1]],[[1,2,2,1],[0,3,0,2],[1,3,2,3],[1,2,0,1]],[[1,2,2,1],[0,3,0,2],[1,4,2,2],[1,2,0,1]],[[1,2,2,1],[0,3,0,3],[1,3,2,2],[1,2,0,1]],[[1,2,2,1],[0,4,0,2],[1,3,2,2],[1,2,0,1]],[[1,2,2,2],[0,3,0,2],[1,3,2,2],[1,2,0,1]],[[1,2,3,1],[0,3,0,2],[1,3,2,2],[1,2,0,1]],[[1,3,2,1],[0,3,0,2],[1,3,2,2],[1,2,0,1]],[[2,2,2,1],[0,3,0,2],[1,3,2,2],[1,2,0,1]],[[1,2,2,1],[0,3,0,2],[1,3,2,3],[1,1,2,0]],[[1,2,2,1],[0,3,0,2],[1,4,2,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,3],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,4,0,2],[1,3,2,2],[1,1,2,0]],[[1,2,2,2],[0,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[0,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,3,2,1],[0,3,0,2],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[0,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,2],[1,3,2,2],[1,1,1,2]],[[1,2,2,1],[0,3,0,2],[1,3,2,3],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[1,4,2,2],[1,1,1,1]],[[1,2,2,1],[0,3,0,3],[1,3,2,2],[1,1,1,1]],[[1,2,2,1],[0,4,0,2],[1,3,2,2],[1,1,1,1]],[[1,2,2,2],[0,3,0,2],[1,3,2,2],[1,1,1,1]],[[1,2,3,1],[0,3,0,2],[1,3,2,2],[1,1,1,1]],[[1,3,2,1],[0,3,0,2],[1,3,2,2],[1,1,1,1]],[[2,2,2,1],[0,3,0,2],[1,3,2,2],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[0,3,0,2],[1,3,2,1],[1,3,2,0]],[[1,2,2,1],[0,3,0,2],[1,3,2,1],[2,2,2,0]],[[1,2,2,1],[0,3,0,2],[1,4,2,1],[1,2,2,0]],[[1,2,2,1],[0,3,0,3],[1,3,2,1],[1,2,2,0]],[[1,2,2,1],[0,4,0,2],[1,3,2,1],[1,2,2,0]],[[1,2,2,2],[0,3,0,2],[1,3,2,1],[1,2,2,0]],[[1,2,3,1],[0,3,0,2],[1,3,2,1],[1,2,2,0]],[[1,3,2,1],[0,3,0,2],[1,3,2,1],[1,2,2,0]],[[2,2,2,1],[0,3,0,2],[1,3,2,1],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[1,3,2,0],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[1,3,2,0],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[1,3,2,0],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[1,3,2,0],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,4,2,0],[1,2,2,1]],[[1,2,2,1],[0,3,0,3],[1,3,2,0],[1,2,2,1]],[[1,2,2,1],[0,4,0,2],[1,3,2,0],[1,2,2,1]],[[1,2,2,2],[0,3,0,2],[1,3,2,0],[1,2,2,1]],[[1,2,3,1],[0,3,0,2],[1,3,2,0],[1,2,2,1]],[[1,3,2,1],[0,3,0,2],[1,3,2,0],[1,2,2,1]],[[2,2,2,1],[0,3,0,2],[1,3,2,0],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,3,1,2],[1,2,3,0]],[[1,2,2,1],[0,3,0,2],[1,3,1,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,2],[1,3,1,2],[2,2,2,0]],[[1,2,2,1],[0,3,0,2],[1,3,1,3],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[1,4,1,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,3],[1,3,1,2],[1,2,2,0]],[[1,2,2,1],[0,4,0,2],[1,3,1,2],[1,2,2,0]],[[1,2,2,2],[0,3,0,2],[1,3,1,2],[1,2,2,0]],[[1,2,3,1],[0,3,0,2],[1,3,1,2],[1,2,2,0]],[[1,3,2,1],[0,3,0,2],[1,3,1,2],[1,2,2,0]],[[2,2,2,1],[0,3,0,2],[1,3,1,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[1,3,1,2],[1,2,1,2]],[[1,2,2,1],[0,3,0,2],[1,3,1,2],[1,3,1,1]],[[1,2,2,1],[0,3,0,2],[1,3,1,2],[2,2,1,1]],[[1,2,2,1],[0,3,0,2],[1,3,1,3],[1,2,1,1]],[[1,2,2,1],[0,3,0,2],[1,4,1,2],[1,2,1,1]],[[1,2,2,1],[0,3,0,3],[1,3,1,2],[1,2,1,1]],[[1,2,2,1],[0,4,0,2],[1,3,1,2],[1,2,1,1]],[[1,2,2,2],[0,3,0,2],[1,3,1,2],[1,2,1,1]],[[1,2,3,1],[0,3,0,2],[1,3,1,2],[1,2,1,1]],[[1,3,2,1],[0,3,0,2],[1,3,1,2],[1,2,1,1]],[[2,2,2,1],[0,3,0,2],[1,3,1,2],[1,2,1,1]],[[1,2,2,1],[0,3,0,2],[1,3,1,2],[1,1,2,2]],[[1,2,2,1],[0,3,0,2],[1,3,1,2],[1,1,3,1]],[[1,2,2,1],[0,3,0,2],[1,3,1,3],[1,1,2,1]],[[1,2,2,1],[0,3,0,2],[1,4,1,2],[1,1,2,1]],[[1,2,2,1],[0,3,0,3],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,4,0,2],[1,3,1,2],[1,1,2,1]],[[1,2,2,2],[0,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,2,3,1],[0,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,3,2,1],[0,3,0,2],[1,3,1,2],[1,1,2,1]],[[2,2,2,1],[0,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,3,0,2],[1,3,1,1],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[1,3,1,1],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[1,3,1,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[1,3,1,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,4,1,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,3],[1,3,1,1],[1,2,2,1]],[[1,2,2,1],[0,4,0,2],[1,3,1,1],[1,2,2,1]],[[1,2,2,2],[0,3,0,2],[1,3,1,1],[1,2,2,1]],[[1,2,3,1],[0,3,0,2],[1,3,1,1],[1,2,2,1]],[[1,3,2,1],[0,3,0,2],[1,3,1,1],[1,2,2,1]],[[2,2,2,1],[0,3,0,2],[1,3,1,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[0,3,0,2],[1,2,4,2],[1,2,1,0]],[[1,2,2,1],[0,3,0,3],[1,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,4,0,2],[1,2,3,2],[1,2,1,0]],[[1,2,2,2],[0,3,0,2],[1,2,3,2],[1,2,1,0]],[[1,2,3,1],[0,3,0,2],[1,2,3,2],[1,2,1,0]],[[1,3,2,1],[0,3,0,2],[1,2,3,2],[1,2,1,0]],[[2,2,2,1],[0,3,0,2],[1,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,3,0,2],[1,2,3,2],[1,2,0,2]],[[1,2,2,1],[0,3,0,2],[1,2,3,3],[1,2,0,1]],[[1,2,2,1],[0,3,0,2],[1,2,4,2],[1,2,0,1]],[[1,2,2,1],[0,3,0,3],[1,2,3,2],[1,2,0,1]],[[1,2,2,1],[0,4,0,2],[1,2,3,2],[1,2,0,1]],[[1,2,2,2],[0,3,0,2],[1,2,3,2],[1,2,0,1]],[[1,2,3,1],[0,3,0,2],[1,2,3,2],[1,2,0,1]],[[1,3,2,1],[0,3,0,2],[1,2,3,2],[1,2,0,1]],[[2,2,2,1],[0,3,0,2],[1,2,3,2],[1,2,0,1]],[[1,2,2,1],[0,3,0,2],[1,2,3,2],[1,1,3,0]],[[1,2,2,1],[0,3,0,2],[1,2,3,3],[1,1,2,0]],[[1,2,2,1],[0,3,0,2],[1,2,4,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,3],[1,2,3,2],[1,1,2,0]],[[1,2,2,1],[0,4,0,2],[1,2,3,2],[1,1,2,0]],[[1,2,2,2],[0,3,0,2],[1,2,3,2],[1,1,2,0]],[[1,2,3,1],[0,3,0,2],[1,2,3,2],[1,1,2,0]],[[1,3,2,1],[0,3,0,2],[1,2,3,2],[1,1,2,0]],[[2,2,2,1],[0,3,0,2],[1,2,3,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,2],[1,2,3,2],[1,1,1,2]],[[1,2,2,1],[0,3,0,2],[1,2,3,3],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[1,2,4,2],[1,1,1,1]],[[1,2,2,1],[0,3,0,3],[1,2,3,2],[1,1,1,1]],[[1,2,2,1],[0,4,0,2],[1,2,3,2],[1,1,1,1]],[[1,2,2,2],[0,3,0,2],[1,2,3,2],[1,1,1,1]],[[1,2,3,1],[0,3,0,2],[1,2,3,2],[1,1,1,1]],[[1,3,2,1],[0,3,0,2],[1,2,3,2],[1,1,1,1]],[[2,2,2,1],[0,3,0,2],[1,2,3,2],[1,1,1,1]],[[1,2,2,1],[0,3,0,2],[1,2,3,2],[1,0,2,2]],[[1,2,2,1],[0,3,0,2],[1,2,3,3],[1,0,2,1]],[[1,2,2,1],[0,3,0,2],[1,2,4,2],[1,0,2,1]],[[1,2,2,1],[0,3,0,3],[1,2,3,2],[1,0,2,1]],[[1,2,2,2],[0,3,0,2],[1,2,3,2],[1,0,2,1]],[[1,2,3,1],[0,3,0,2],[1,2,3,2],[1,0,2,1]],[[1,3,2,1],[0,3,0,2],[1,2,3,2],[1,0,2,1]],[[1,2,2,1],[0,3,0,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[0,3,0,2],[1,2,3,1],[1,3,2,0]],[[1,2,2,1],[0,3,0,2],[1,2,3,1],[2,2,2,0]],[[1,2,2,1],[0,3,0,2],[1,2,4,1],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[1,2,3,1],[1,1,2,2]],[[1,2,2,1],[0,3,0,2],[1,2,3,1],[1,1,3,1]],[[1,2,2,1],[0,3,0,2],[1,2,4,1],[1,1,2,1]],[[1,2,2,1],[0,3,0,2],[1,2,3,0],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[1,2,3,0],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[1,2,3,0],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[1,2,3,0],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,2,4,0],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,2,2,2],[1,1,2,2]],[[1,2,2,1],[0,3,0,2],[1,2,2,2],[1,1,3,1]],[[1,2,2,1],[0,3,0,2],[1,2,2,3],[1,1,2,1]],[[1,2,2,1],[0,3,0,3],[1,2,2,2],[1,1,2,1]],[[1,2,2,1],[0,4,0,2],[1,2,2,2],[1,1,2,1]],[[1,2,2,2],[0,3,0,2],[1,2,2,2],[1,1,2,1]],[[1,2,3,1],[0,3,0,2],[1,2,2,2],[1,1,2,1]],[[1,3,2,1],[0,3,0,2],[1,2,2,2],[1,1,2,1]],[[2,2,2,1],[0,3,0,2],[1,2,2,2],[1,1,2,1]],[[1,2,2,1],[0,3,0,2],[1,2,1,2],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[1,2,1,2],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[1,2,1,2],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[1,2,1,2],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,2,1,3],[1,2,2,1]],[[1,2,2,1],[0,3,0,3],[1,2,1,2],[1,2,2,1]],[[1,2,2,1],[0,4,0,2],[1,2,1,2],[1,2,2,1]],[[1,2,2,2],[0,3,0,2],[1,2,1,2],[1,2,2,1]],[[1,2,3,1],[0,3,0,2],[1,2,1,2],[1,2,2,1]],[[1,3,2,1],[0,3,0,2],[1,2,1,2],[1,2,2,1]],[[2,2,2,1],[0,3,0,2],[1,2,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,1,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,0,2],[1,1,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,2],[1,1,3,2],[2,2,2,0]],[[1,2,2,1],[0,3,0,2],[1,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[1,1,4,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,3],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,4,0,2],[1,1,3,2],[1,2,2,0]],[[1,2,2,2],[0,3,0,2],[1,1,3,2],[1,2,2,0]],[[1,2,3,1],[0,3,0,2],[1,1,3,2],[1,2,2,0]],[[1,3,2,1],[0,3,0,2],[1,1,3,2],[1,2,2,0]],[[2,2,2,1],[0,3,0,2],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[1,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,3,0,2],[1,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,3,0,2],[1,1,4,2],[1,2,1,1]],[[1,2,2,1],[0,3,0,3],[1,1,3,2],[1,2,1,1]],[[1,2,2,1],[0,4,0,2],[1,1,3,2],[1,2,1,1]],[[1,2,2,2],[0,3,0,2],[1,1,3,2],[1,2,1,1]],[[1,2,3,1],[0,3,0,2],[1,1,3,2],[1,2,1,1]],[[1,3,2,1],[0,3,0,2],[1,1,3,2],[1,2,1,1]],[[2,2,2,1],[0,3,0,2],[1,1,3,2],[1,2,1,1]],[[1,2,2,1],[0,3,0,2],[1,1,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[1,1,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[1,1,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[1,1,3,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,1,4,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[1,1,2,2],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[1,1,2,2],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[1,1,2,2],[2,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,3,0,3],[1,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,4,0,2],[1,1,2,2],[1,2,2,1]],[[1,2,2,2],[0,3,0,2],[1,1,2,2],[1,2,2,1]],[[1,2,3,1],[0,3,0,2],[1,1,2,2],[1,2,2,1]],[[1,3,2,1],[0,3,0,2],[1,1,2,2],[1,2,2,1]],[[2,2,2,1],[0,3,0,2],[1,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[1,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[1,0,3,2],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[1,0,3,3],[1,2,2,1]],[[1,2,2,1],[0,3,0,3],[1,0,3,2],[1,2,2,1]],[[1,2,2,2],[0,3,0,2],[1,0,3,2],[1,2,2,1]],[[1,2,3,1],[0,3,0,2],[1,0,3,2],[1,2,2,1]],[[1,3,2,1],[0,3,0,2],[1,0,3,2],[1,2,2,1]],[[1,2,2,1],[0,3,0,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,1],[0,3,0,2],[0,3,3,1],[1,3,2,0]],[[1,2,2,1],[0,3,0,2],[0,3,4,1],[1,2,2,0]],[[1,2,2,1],[0,3,0,2],[0,3,3,0],[1,2,2,2]],[[1,2,2,1],[0,3,0,2],[0,3,3,0],[1,2,3,1]],[[1,2,2,1],[0,3,0,2],[0,3,3,0],[1,3,2,1]],[[1,2,2,1],[0,3,0,2],[0,3,4,0],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[0,3,0,1],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[0,3,0,1],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[0,4,0,1],[2,3,3,2],[1,2,0,0]],[[1,2,2,2],[0,3,0,1],[2,3,3,2],[1,2,0,0]],[[1,2,3,1],[0,3,0,1],[2,3,3,2],[1,2,0,0]],[[1,3,2,1],[0,3,0,1],[2,3,3,2],[1,2,0,0]],[[2,2,2,1],[0,3,0,1],[2,3,3,2],[1,2,0,0]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[0,3,0,1],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[0,3,0,1],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[0,3,0,1],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[0,3,0,1],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[0,4,0,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[0,3,0,1],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[0,3,0,1],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[0,3,0,1],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[0,3,0,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[0,3,0,1],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[0,3,0,1],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[0,3,0,1],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[0,4,0,1],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[0,3,0,1],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[0,3,0,1],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[0,3,0,1],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[0,3,0,1],[2,3,3,2],[1,1,0,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[0,3,0,1],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[0,3,0,1],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[0,3,0,1],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[0,3,0,1],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[0,4,0,1],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[0,3,0,1],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[0,3,0,1],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[0,3,0,1],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[0,3,0,1],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[1,0,1,2]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[0,3,0,1],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[0,3,0,1],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[0,3,0,1],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[0,4,0,1],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[0,3,0,1],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[0,3,0,1],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[0,3,0,1],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[0,3,0,1],[2,3,3,2],[1,0,1,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[0,3,0,1],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[0,3,0,1],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[0,3,0,1],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,0,1],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,4,0,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[0,3,0,1],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[0,3,0,1],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[0,3,0,1],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[0,3,0,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[0,3,0,1],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[0,3,0,1],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[0,3,0,1],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[0,4,0,1],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[0,3,0,1],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[0,3,0,1],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[0,3,0,1],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[0,3,0,1],[2,3,3,2],[0,2,0,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[0,1,3,0]],[[1,2,2,1],[0,3,0,1],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[0,3,0,1],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[0,3,0,1],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,0,1],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,4,0,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[0,3,0,1],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[0,3,0,1],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[0,3,0,1],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[0,3,0,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[0,3,0,1],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[0,3,0,1],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[0,3,0,1],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,0,1],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,4,0,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[0,3,0,1],[2,3,3,2],[0,1,1,1]],[[1,2,3,1],[0,3,0,1],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[0,3,0,1],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[0,3,0,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[0,3,0,1],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,4,2],[0,0,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[0,3,0,1],[2,4,3,1],[1,2,0,1]],[[1,2,2,1],[0,3,0,1],[3,3,3,1],[1,2,0,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[0,3,0,1],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[0,3,0,1],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[0,3,0,1],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,4,0,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,2],[0,3,0,1],[2,3,3,1],[1,1,1,1]],[[1,2,3,1],[0,3,0,1],[2,3,3,1],[1,1,1,1]],[[1,3,2,1],[0,3,0,1],[2,3,3,1],[1,1,1,1]],[[2,2,2,1],[0,3,0,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[0,3,0,1],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[0,3,0,1],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[0,3,0,1],[3,3,3,1],[1,0,2,1]],[[1,2,2,1],[0,4,0,1],[2,3,3,1],[1,0,2,1]],[[1,2,2,2],[0,3,0,1],[2,3,3,1],[1,0,2,1]],[[1,2,3,1],[0,3,0,1],[2,3,3,1],[1,0,2,1]],[[1,3,2,1],[0,3,0,1],[2,3,3,1],[1,0,2,1]],[[2,2,2,1],[0,3,0,1],[2,3,3,1],[1,0,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[0,3,0,1],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[0,3,0,1],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[0,3,0,1],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[0,4,0,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,2],[0,3,0,1],[2,3,3,1],[0,2,1,1]],[[1,2,3,1],[0,3,0,1],[2,3,3,1],[0,2,1,1]],[[0,3,2,0],[2,3,3,2],[2,3,0,0],[0,2,1,1]],[[0,2,3,0],[2,3,3,2],[2,3,0,0],[0,2,1,1]],[[0,2,2,0],[3,3,3,2],[2,3,0,0],[0,2,1,1]],[[0,2,2,0],[2,4,3,2],[2,3,0,0],[0,2,1,1]],[[0,2,2,0],[2,3,3,2],[3,3,0,0],[0,2,1,1]],[[0,3,2,0],[2,3,3,2],[2,3,0,0],[1,1,1,1]],[[0,2,3,0],[2,3,3,2],[2,3,0,0],[1,1,1,1]],[[0,2,2,0],[3,3,3,2],[2,3,0,0],[1,1,1,1]],[[0,2,2,0],[2,4,3,2],[2,3,0,0],[1,1,1,1]],[[0,2,2,0],[2,3,3,2],[3,3,0,0],[1,1,1,1]],[[0,2,2,0],[2,3,3,2],[2,3,0,0],[2,1,1,1]],[[0,3,2,0],[2,3,3,2],[2,3,0,0],[1,2,0,1]],[[0,2,3,0],[2,3,3,2],[2,3,0,0],[1,2,0,1]],[[0,2,2,0],[3,3,3,2],[2,3,0,0],[1,2,0,1]],[[0,2,2,0],[2,4,3,2],[2,3,0,0],[1,2,0,1]],[[0,2,2,0],[2,3,3,2],[3,3,0,0],[1,2,0,1]],[[0,2,2,0],[2,3,3,2],[2,3,0,0],[2,2,0,1]],[[1,3,2,1],[0,3,0,1],[2,3,3,1],[0,2,1,1]],[[2,2,2,1],[0,3,0,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,1],[0,3,0,1],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[0,3,0,1],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[0,3,0,1],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[0,3,0,1],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[0,3,0,1],[3,3,3,1],[0,1,2,1]],[[0,3,2,0],[2,3,3,2],[2,3,0,1],[0,2,0,1]],[[0,2,3,0],[2,3,3,2],[2,3,0,1],[0,2,0,1]],[[0,2,2,0],[3,3,3,2],[2,3,0,1],[0,2,0,1]],[[0,2,2,0],[2,4,3,2],[2,3,0,1],[0,2,0,1]],[[0,2,2,0],[2,3,3,2],[3,3,0,1],[0,2,0,1]],[[0,3,2,0],[2,3,3,2],[2,3,0,1],[0,2,1,0]],[[0,2,3,0],[2,3,3,2],[2,3,0,1],[0,2,1,0]],[[0,2,2,0],[3,3,3,2],[2,3,0,1],[0,2,1,0]],[[0,2,2,0],[2,4,3,2],[2,3,0,1],[0,2,1,0]],[[0,2,2,0],[2,3,3,2],[3,3,0,1],[0,2,1,0]],[[1,2,2,1],[0,4,0,1],[2,3,3,1],[0,1,2,1]],[[1,2,2,2],[0,3,0,1],[2,3,3,1],[0,1,2,1]],[[1,2,3,1],[0,3,0,1],[2,3,3,1],[0,1,2,1]],[[1,3,2,1],[0,3,0,1],[2,3,3,1],[0,1,2,1]],[[2,2,2,1],[0,3,0,1],[2,3,3,1],[0,1,2,1]],[[0,3,2,0],[2,3,3,2],[2,3,0,1],[1,1,0,1]],[[0,2,3,0],[2,3,3,2],[2,3,0,1],[1,1,0,1]],[[0,2,2,0],[3,3,3,2],[2,3,0,1],[1,1,0,1]],[[0,2,2,0],[2,4,3,2],[2,3,0,1],[1,1,0,1]],[[0,2,2,0],[2,3,3,2],[3,3,0,1],[1,1,0,1]],[[0,2,2,0],[2,3,3,2],[2,3,0,1],[2,1,0,1]],[[0,3,2,0],[2,3,3,2],[2,3,0,1],[1,1,1,0]],[[0,2,3,0],[2,3,3,2],[2,3,0,1],[1,1,1,0]],[[0,2,2,0],[3,3,3,2],[2,3,0,1],[1,1,1,0]],[[0,2,2,0],[2,4,3,2],[2,3,0,1],[1,1,1,0]],[[0,2,2,0],[2,3,3,2],[3,3,0,1],[1,1,1,0]],[[0,2,2,0],[2,3,3,2],[2,3,0,1],[2,1,1,0]],[[0,3,2,0],[2,3,3,2],[2,3,0,1],[1,2,0,0]],[[0,2,3,0],[2,3,3,2],[2,3,0,1],[1,2,0,0]],[[0,2,2,0],[3,3,3,2],[2,3,0,1],[1,2,0,0]],[[0,2,2,0],[2,4,3,2],[2,3,0,1],[1,2,0,0]],[[0,2,2,0],[2,3,3,2],[3,3,0,1],[1,2,0,0]],[[0,2,2,0],[2,3,3,2],[2,3,0,1],[2,2,0,0]],[[1,2,2,1],[0,3,0,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[0,3,0,1],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,1],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,4,0,1],[2,3,2,2],[1,1,2,0]],[[1,2,2,2],[0,3,0,1],[2,3,2,2],[1,1,2,0]],[[1,2,3,1],[0,3,0,1],[2,3,2,2],[1,1,2,0]],[[1,3,2,1],[0,3,0,1],[2,3,2,2],[1,1,2,0]],[[2,2,2,1],[0,3,0,1],[2,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,1],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[0,3,0,1],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[0,3,0,1],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[0,3,0,1],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[0,3,0,1],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[0,3,0,1],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[0,4,0,1],[2,3,2,2],[0,2,2,0]],[[1,2,2,2],[0,3,0,1],[2,3,2,2],[0,2,2,0]],[[1,2,3,1],[0,3,0,1],[2,3,2,2],[0,2,2,0]],[[1,3,2,1],[0,3,0,1],[2,3,2,2],[0,2,2,0]],[[2,2,2,1],[0,3,0,1],[2,3,2,2],[0,2,2,0]],[[1,2,2,1],[0,3,0,1],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[0,3,0,1],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[0,3,0,1],[2,3,2,3],[0,1,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[0,3,0,1],[2,4,2,1],[1,1,2,1]],[[1,2,2,1],[0,3,0,1],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[0,4,0,1],[2,3,2,1],[1,1,2,1]],[[1,2,2,2],[0,3,0,1],[2,3,2,1],[1,1,2,1]],[[1,2,3,1],[0,3,0,1],[2,3,2,1],[1,1,2,1]],[[1,3,2,1],[0,3,0,1],[2,3,2,1],[1,1,2,1]],[[2,2,2,1],[0,3,0,1],[2,3,2,1],[1,1,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[0,3,0,1],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[0,3,0,1],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[0,3,0,1],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[0,3,0,1],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[0,4,0,1],[2,3,2,1],[0,2,2,1]],[[1,2,2,2],[0,3,0,1],[2,3,2,1],[0,2,2,1]],[[1,2,3,1],[0,3,0,1],[2,3,2,1],[0,2,2,1]],[[1,3,2,1],[0,3,0,1],[2,3,2,1],[0,2,2,1]],[[2,2,2,1],[0,3,0,1],[2,3,2,1],[0,2,2,1]],[[0,3,2,0],[2,3,3,2],[2,3,0,2],[1,0,0,1]],[[0,2,3,0],[2,3,3,2],[2,3,0,2],[1,0,0,1]],[[0,2,2,0],[3,3,3,2],[2,3,0,2],[1,0,0,1]],[[0,2,2,0],[2,4,3,2],[2,3,0,2],[1,0,0,1]],[[0,2,2,0],[2,3,3,2],[3,3,0,2],[1,0,0,1]],[[0,3,2,0],[2,3,3,2],[2,3,0,2],[1,0,1,0]],[[0,2,3,0],[2,3,3,2],[2,3,0,2],[1,0,1,0]],[[0,2,2,0],[3,3,3,2],[2,3,0,2],[1,0,1,0]],[[0,2,2,0],[2,4,3,2],[2,3,0,2],[1,0,1,0]],[[0,2,2,0],[2,3,3,2],[3,3,0,2],[1,0,1,0]],[[1,2,2,1],[0,3,0,1],[2,3,1,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,1],[2,3,1,2],[2,2,2,0]],[[1,2,2,1],[0,3,0,1],[3,3,1,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,1],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[0,3,0,1],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[0,3,0,1],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,4,0,1],[2,3,1,2],[1,1,2,1]],[[1,2,2,2],[0,3,0,1],[2,3,1,2],[1,1,2,1]],[[1,2,3,1],[0,3,0,1],[2,3,1,2],[1,1,2,1]],[[1,3,2,1],[0,3,0,1],[2,3,1,2],[1,1,2,1]],[[2,2,2,1],[0,3,0,1],[2,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[0,3,0,1],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[0,3,0,1],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,1,3],[0,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[0,3,0,1],[3,3,1,2],[0,2,2,1]],[[1,2,2,1],[0,4,0,1],[2,3,1,2],[0,2,2,1]],[[1,2,2,2],[0,3,0,1],[2,3,1,2],[0,2,2,1]],[[1,2,3,1],[0,3,0,1],[2,3,1,2],[0,2,2,1]],[[1,3,2,1],[0,3,0,1],[2,3,1,2],[0,2,2,1]],[[2,2,2,1],[0,3,0,1],[2,3,1,2],[0,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,1,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,1,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,1],[3,3,1,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,0,2],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[2,3,0,2],[2,2,2,1]],[[1,2,2,1],[0,3,0,1],[3,3,0,2],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[0,3,0,1],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[0,3,0,1],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,3,0,1],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[0,3,0,1],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[0,3,0,1],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[0,3,0,1],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[0,3,0,1],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[0,3,0,1],[2,2,3,3],[0,2,2,0]],[[1,2,2,1],[0,3,0,1],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[0,3,0,1],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[0,3,0,1],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[0,3,0,1],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[0,3,0,1],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[0,3,0,1],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[0,3,0,1],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[0,3,0,1],[2,2,3,1],[0,2,2,2]],[[1,2,2,1],[0,3,0,1],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[0,3,0,1],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[0,3,0,1],[2,2,4,1],[0,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[0,3,0,1],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,1],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[0,3,0,1],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,1],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[0,3,0,1],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[0,3,0,1],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[0,3,0,1],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[0,3,0,1],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[0,3,0,1],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,1],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[0,3,0,1],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[0,3,0,1],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[2,2,1,2],[2,2,2,1]],[[0,3,2,0],[2,3,3,2],[2,3,1,0],[1,0,1,1]],[[0,2,3,0],[2,3,3,2],[2,3,1,0],[1,0,1,1]],[[0,2,2,0],[3,3,3,2],[2,3,1,0],[1,0,1,1]],[[0,2,2,0],[2,4,3,2],[2,3,1,0],[1,0,1,1]],[[0,2,2,0],[2,3,3,2],[3,3,1,0],[1,0,1,1]],[[1,2,2,1],[0,3,0,1],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,0,1],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,1],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[0,3,0,1],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,3,0,1],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,1],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,1],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,3,0,1],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,3,0,1],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[0,3,0,1],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,0,1],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,0,1],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,3,0,1],[2,1,2,2],[1,2,3,1]],[[1,2,2,1],[0,3,0,1],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[0,3,0,1],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,3,0,1],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[0,3,0,1],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[0,3,0,1],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[0,3,0,1],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[0,4,0,1],[1,3,3,2],[1,2,1,0]],[[1,2,2,2],[0,3,0,1],[1,3,3,2],[1,2,1,0]],[[1,2,3,1],[0,3,0,1],[1,3,3,2],[1,2,1,0]],[[1,3,2,1],[0,3,0,1],[1,3,3,2],[1,2,1,0]],[[2,2,2,1],[0,3,0,1],[1,3,3,2],[1,2,1,0]],[[0,3,2,0],[2,3,3,2],[2,3,1,1],[1,0,0,1]],[[0,2,3,0],[2,3,3,2],[2,3,1,1],[1,0,0,1]],[[0,2,2,0],[3,3,3,2],[2,3,1,1],[1,0,0,1]],[[0,2,2,0],[2,4,3,2],[2,3,1,1],[1,0,0,1]],[[0,2,2,0],[2,3,3,2],[3,3,1,1],[1,0,0,1]],[[0,3,2,0],[2,3,3,2],[2,3,1,1],[1,0,1,0]],[[0,2,3,0],[2,3,3,2],[2,3,1,1],[1,0,1,0]],[[0,2,2,0],[3,3,3,2],[2,3,1,1],[1,0,1,0]],[[0,2,2,0],[2,4,3,2],[2,3,1,1],[1,0,1,0]],[[0,2,2,0],[2,3,3,2],[3,3,1,1],[1,0,1,0]],[[1,2,2,1],[0,3,0,1],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[0,3,0,1],[1,3,3,2],[1,3,0,1]],[[1,2,2,1],[0,3,0,1],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[0,3,0,1],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[0,3,0,1],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[0,3,0,1],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[0,4,0,1],[1,3,3,2],[1,2,0,1]],[[1,2,2,2],[0,3,0,1],[1,3,3,2],[1,2,0,1]],[[1,2,3,1],[0,3,0,1],[1,3,3,2],[1,2,0,1]],[[1,3,2,1],[0,3,0,1],[1,3,3,2],[1,2,0,1]],[[2,2,2,1],[0,3,0,1],[1,3,3,2],[1,2,0,1]],[[1,2,2,1],[0,3,0,1],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[0,3,0,1],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[0,3,0,1],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,1],[1,4,3,2],[1,1,2,0]],[[1,2,2,1],[0,4,0,1],[1,3,3,2],[1,1,2,0]],[[1,2,2,2],[0,3,0,1],[1,3,3,2],[1,1,2,0]],[[1,2,3,1],[0,3,0,1],[1,3,3,2],[1,1,2,0]],[[1,3,2,1],[0,3,0,1],[1,3,3,2],[1,1,2,0]],[[2,2,2,1],[0,3,0,1],[1,3,3,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,1],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[0,3,0,1],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[0,3,0,1],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[0,3,0,1],[1,4,3,2],[1,1,1,1]],[[1,2,2,1],[0,4,0,1],[1,3,3,2],[1,1,1,1]],[[1,2,2,2],[0,3,0,1],[1,3,3,2],[1,1,1,1]],[[1,2,3,1],[0,3,0,1],[1,3,3,2],[1,1,1,1]],[[1,3,2,1],[0,3,0,1],[1,3,3,2],[1,1,1,1]],[[2,2,2,1],[0,3,0,1],[1,3,3,2],[1,1,1,1]],[[1,2,2,1],[0,3,0,1],[1,3,3,2],[1,0,2,2]],[[1,2,2,1],[0,3,0,1],[1,3,3,3],[1,0,2,1]],[[1,2,2,1],[0,3,0,1],[1,3,4,2],[1,0,2,1]],[[1,2,2,1],[0,3,0,1],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[0,3,0,1],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[0,3,0,1],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[0,3,0,1],[1,4,3,1],[1,2,1,1]],[[1,2,2,1],[0,4,0,1],[1,3,3,1],[1,2,1,1]],[[1,2,2,2],[0,3,0,1],[1,3,3,1],[1,2,1,1]],[[1,2,3,1],[0,3,0,1],[1,3,3,1],[1,2,1,1]],[[1,3,2,1],[0,3,0,1],[1,3,3,1],[1,2,1,1]],[[2,2,2,1],[0,3,0,1],[1,3,3,1],[1,2,1,1]],[[1,2,2,1],[0,3,0,1],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[0,3,0,1],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[0,3,0,1],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[0,3,0,1],[1,4,3,1],[1,1,2,1]],[[1,2,2,1],[0,4,0,1],[1,3,3,1],[1,1,2,1]],[[1,2,2,2],[0,3,0,1],[1,3,3,1],[1,1,2,1]],[[1,2,3,1],[0,3,0,1],[1,3,3,1],[1,1,2,1]],[[1,3,2,1],[0,3,0,1],[1,3,3,1],[1,1,2,1]],[[2,2,2,1],[0,3,0,1],[1,3,3,1],[1,1,2,1]],[[1,2,2,1],[0,3,0,1],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[0,3,0,1],[1,3,2,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,1],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[0,3,0,1],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[0,4,0,1],[1,3,2,2],[1,2,2,0]],[[1,2,2,2],[0,3,0,1],[1,3,2,2],[1,2,2,0]],[[1,2,3,1],[0,3,0,1],[1,3,2,2],[1,2,2,0]],[[1,3,2,1],[0,3,0,1],[1,3,2,2],[1,2,2,0]],[[2,2,2,1],[0,3,0,1],[1,3,2,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,1],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[0,3,0,1],[1,3,2,2],[1,1,3,1]],[[1,2,2,1],[0,3,0,1],[1,3,2,3],[1,1,2,1]],[[1,2,2,1],[0,3,0,1],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[0,3,0,1],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[0,3,0,1],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,1],[1,4,2,1],[1,2,2,1]],[[1,2,2,1],[0,4,0,1],[1,3,2,1],[1,2,2,1]],[[1,2,2,2],[0,3,0,1],[1,3,2,1],[1,2,2,1]],[[1,2,3,1],[0,3,0,1],[1,3,2,1],[1,2,2,1]],[[1,3,2,1],[0,3,0,1],[1,3,2,1],[1,2,2,1]],[[2,2,2,1],[0,3,0,1],[1,3,2,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[0,3,0,1],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[0,3,0,1],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[0,3,0,1],[1,3,1,3],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[1,4,1,2],[1,2,2,1]],[[1,2,2,1],[0,4,0,1],[1,3,1,2],[1,2,2,1]],[[1,2,2,2],[0,3,0,1],[1,3,1,2],[1,2,2,1]],[[1,2,3,1],[0,3,0,1],[1,3,1,2],[1,2,2,1]],[[1,3,2,1],[0,3,0,1],[1,3,1,2],[1,2,2,1]],[[2,2,2,1],[0,3,0,1],[1,3,1,2],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,0,1],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,1],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[0,3,0,1],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[0,3,0,1],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,1],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[0,3,0,1],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[0,3,0,1],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[0,3,0,1],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,0,1],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,0,1],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,1],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[0,3,0,1],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[0,3,0,1],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[0,3,0,1],[1,2,2,3],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[0,3,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,0,1],[0,3,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,1],[0,3,3,3],[1,2,2,0]],[[1,2,2,1],[0,3,0,1],[0,3,4,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,1],[0,3,3,2],[1,2,1,2]],[[1,2,2,1],[0,3,0,1],[0,3,3,3],[1,2,1,1]],[[1,2,2,1],[0,3,0,1],[0,3,4,2],[1,2,1,1]],[[1,2,2,1],[0,3,0,1],[0,3,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,0,1],[0,3,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,0,1],[0,3,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[0,3,4,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,1],[0,3,2,2],[1,2,2,2]],[[1,2,2,1],[0,3,0,1],[0,3,2,2],[1,2,3,1]],[[1,2,2,1],[0,3,0,1],[0,3,2,2],[1,3,2,1]],[[1,2,2,1],[0,3,0,1],[0,3,2,3],[1,2,2,1]],[[1,2,2,1],[0,3,0,0],[2,3,3,2],[2,1,2,0]],[[1,2,2,1],[0,3,0,0],[2,4,3,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,0],[3,3,3,2],[1,1,2,0]],[[1,2,2,1],[0,3,0,0],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[0,3,0,0],[2,3,3,2],[0,3,2,0]],[[1,2,2,1],[0,3,0,0],[2,4,3,2],[0,2,2,0]],[[1,2,2,1],[0,3,0,0],[3,3,3,2],[0,2,2,0]],[[1,2,2,1],[0,3,0,0],[2,3,3,1],[2,1,2,1]],[[1,2,2,1],[0,3,0,0],[2,4,3,1],[1,1,2,1]],[[1,2,2,1],[0,3,0,0],[3,3,3,1],[1,1,2,1]],[[1,2,2,1],[0,3,0,0],[2,3,3,1],[0,2,2,2]],[[1,2,2,1],[0,3,0,0],[2,3,3,1],[0,2,3,1]],[[1,2,2,1],[0,3,0,0],[2,3,3,1],[0,3,2,1]],[[1,2,2,1],[0,3,0,0],[2,4,3,1],[0,2,2,1]],[[1,2,2,1],[0,3,0,0],[3,3,3,1],[0,2,2,1]],[[1,2,2,1],[0,3,0,0],[2,2,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,0,0],[2,2,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,0],[2,2,3,2],[2,2,2,0]],[[1,2,2,1],[0,3,0,0],[3,2,3,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,0],[2,2,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,0,0],[2,2,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,0,0],[2,2,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,0],[2,2,3,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,0],[3,2,3,1],[1,2,2,1]],[[1,2,2,1],[0,3,0,0],[1,3,3,2],[1,2,3,0]],[[1,2,2,1],[0,3,0,0],[1,3,3,2],[1,3,2,0]],[[1,2,2,1],[0,3,0,0],[1,3,3,2],[2,2,2,0]],[[1,2,2,1],[0,3,0,0],[1,4,3,2],[1,2,2,0]],[[1,2,2,1],[0,3,0,0],[1,3,3,1],[1,2,2,2]],[[1,2,2,1],[0,3,0,0],[1,3,3,1],[1,2,3,1]],[[1,2,2,1],[0,3,0,0],[1,3,3,1],[1,3,2,1]],[[1,2,2,1],[0,3,0,0],[1,3,3,1],[2,2,2,1]],[[1,2,2,1],[0,3,0,0],[1,4,3,1],[1,2,2,1]],[[1,2,2,1],[0,2,4,2],[2,3,3,0],[1,1,0,0]],[[1,2,2,2],[0,2,3,2],[2,3,3,0],[1,1,0,0]],[[1,2,3,1],[0,2,3,2],[2,3,3,0],[1,1,0,0]],[[1,3,2,1],[0,2,3,2],[2,3,3,0],[1,1,0,0]],[[2,2,2,1],[0,2,3,2],[2,3,3,0],[1,1,0,0]],[[1,2,2,1],[0,2,4,2],[2,3,3,0],[0,2,0,0]],[[1,2,2,2],[0,2,3,2],[2,3,3,0],[0,2,0,0]],[[1,2,3,1],[0,2,3,2],[2,3,3,0],[0,2,0,0]],[[1,3,2,1],[0,2,3,2],[2,3,3,0],[0,2,0,0]],[[2,2,2,1],[0,2,3,2],[2,3,3,0],[0,2,0,0]],[[1,2,2,1],[0,2,4,2],[2,3,3,0],[0,0,2,0]],[[1,2,2,2],[0,2,3,2],[2,3,3,0],[0,0,2,0]],[[1,2,3,1],[0,2,3,2],[2,3,3,0],[0,0,2,0]],[[1,3,2,1],[0,2,3,2],[2,3,3,0],[0,0,2,0]],[[2,2,2,1],[0,2,3,2],[2,3,3,0],[0,0,2,0]],[[1,2,2,1],[0,2,4,2],[2,3,3,0],[0,0,1,1]],[[1,2,2,2],[0,2,3,2],[2,3,3,0],[0,0,1,1]],[[1,2,3,1],[0,2,3,2],[2,3,3,0],[0,0,1,1]],[[1,3,2,1],[0,2,3,2],[2,3,3,0],[0,0,1,1]],[[2,2,2,1],[0,2,3,2],[2,3,3,0],[0,0,1,1]],[[1,2,2,1],[0,2,3,3],[2,3,2,2],[0,0,0,1]],[[1,2,2,2],[0,2,3,2],[2,3,2,2],[0,0,0,1]],[[1,2,3,1],[0,2,3,2],[2,3,2,2],[0,0,0,1]],[[1,3,2,1],[0,2,3,2],[2,3,2,2],[0,0,0,1]],[[1,2,2,1],[0,2,4,2],[2,3,2,0],[1,2,0,0]],[[1,2,2,2],[0,2,3,2],[2,3,2,0],[1,2,0,0]],[[1,2,3,1],[0,2,3,2],[2,3,2,0],[1,2,0,0]],[[1,3,2,1],[0,2,3,2],[2,3,2,0],[1,2,0,0]],[[2,2,2,1],[0,2,3,2],[2,3,2,0],[1,2,0,0]],[[1,2,2,1],[0,2,4,2],[2,3,2,0],[1,1,1,0]],[[1,2,2,2],[0,2,3,2],[2,3,2,0],[1,1,1,0]],[[1,2,3,1],[0,2,3,2],[2,3,2,0],[1,1,1,0]],[[1,3,2,1],[0,2,3,2],[2,3,2,0],[1,1,1,0]],[[2,2,2,1],[0,2,3,2],[2,3,2,0],[1,1,1,0]],[[1,2,2,1],[0,2,4,2],[2,3,2,0],[1,1,0,1]],[[1,2,2,2],[0,2,3,2],[2,3,2,0],[1,1,0,1]],[[1,2,3,1],[0,2,3,2],[2,3,2,0],[1,1,0,1]],[[1,3,2,1],[0,2,3,2],[2,3,2,0],[1,1,0,1]],[[2,2,2,1],[0,2,3,2],[2,3,2,0],[1,1,0,1]],[[1,2,2,1],[0,2,4,2],[2,3,2,0],[1,0,2,0]],[[1,2,2,2],[0,2,3,2],[2,3,2,0],[1,0,2,0]],[[1,2,3,1],[0,2,3,2],[2,3,2,0],[1,0,2,0]],[[1,3,2,1],[0,2,3,2],[2,3,2,0],[1,0,2,0]],[[2,2,2,1],[0,2,3,2],[2,3,2,0],[1,0,2,0]],[[1,2,2,1],[0,2,4,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,2],[0,2,3,2],[2,3,2,0],[1,0,1,1]],[[1,2,3,1],[0,2,3,2],[2,3,2,0],[1,0,1,1]],[[1,3,2,1],[0,2,3,2],[2,3,2,0],[1,0,1,1]],[[2,2,2,1],[0,2,3,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,1],[0,2,4,2],[2,3,2,0],[0,2,1,0]],[[1,2,2,2],[0,2,3,2],[2,3,2,0],[0,2,1,0]],[[1,2,3,1],[0,2,3,2],[2,3,2,0],[0,2,1,0]],[[1,3,2,1],[0,2,3,2],[2,3,2,0],[0,2,1,0]],[[2,2,2,1],[0,2,3,2],[2,3,2,0],[0,2,1,0]],[[1,2,2,1],[0,2,4,2],[2,3,2,0],[0,2,0,1]],[[1,2,2,2],[0,2,3,2],[2,3,2,0],[0,2,0,1]],[[1,2,3,1],[0,2,3,2],[2,3,2,0],[0,2,0,1]],[[1,3,2,1],[0,2,3,2],[2,3,2,0],[0,2,0,1]],[[2,2,2,1],[0,2,3,2],[2,3,2,0],[0,2,0,1]],[[1,2,2,1],[0,2,4,2],[2,3,2,0],[0,1,2,0]],[[0,3,2,0],[2,3,3,2],[2,3,2,1],[1,0,0,0]],[[0,2,3,0],[2,3,3,2],[2,3,2,1],[1,0,0,0]],[[0,2,2,0],[3,3,3,2],[2,3,2,1],[1,0,0,0]],[[0,2,2,0],[2,4,3,2],[2,3,2,1],[1,0,0,0]],[[0,2,2,0],[2,3,3,2],[3,3,2,1],[1,0,0,0]],[[1,2,2,2],[0,2,3,2],[2,3,2,0],[0,1,2,0]],[[1,2,3,1],[0,2,3,2],[2,3,2,0],[0,1,2,0]],[[1,3,2,1],[0,2,3,2],[2,3,2,0],[0,1,2,0]],[[2,2,2,1],[0,2,3,2],[2,3,2,0],[0,1,2,0]],[[1,2,2,1],[0,2,4,2],[2,3,2,0],[0,1,1,1]],[[1,2,2,2],[0,2,3,2],[2,3,2,0],[0,1,1,1]],[[1,2,3,1],[0,2,3,2],[2,3,2,0],[0,1,1,1]],[[1,3,2,1],[0,2,3,2],[2,3,2,0],[0,1,1,1]],[[2,2,2,1],[0,2,3,2],[2,3,2,0],[0,1,1,1]],[[1,2,2,1],[0,2,3,3],[2,3,1,2],[0,0,2,0]],[[1,2,2,2],[0,2,3,2],[2,3,1,2],[0,0,2,0]],[[1,2,3,1],[0,2,3,2],[2,3,1,2],[0,0,2,0]],[[1,3,2,1],[0,2,3,2],[2,3,1,2],[0,0,2,0]],[[1,2,2,1],[0,2,3,3],[2,3,1,2],[0,0,1,1]],[[1,2,2,2],[0,2,3,2],[2,3,1,2],[0,0,1,1]],[[1,2,3,1],[0,2,3,2],[2,3,1,2],[0,0,1,1]],[[1,3,2,1],[0,2,3,2],[2,3,1,2],[0,0,1,1]],[[1,2,2,1],[0,2,4,2],[2,3,1,0],[1,1,2,0]],[[1,2,2,2],[0,2,3,2],[2,3,1,0],[1,1,2,0]],[[1,2,3,1],[0,2,3,2],[2,3,1,0],[1,1,2,0]],[[1,3,2,1],[0,2,3,2],[2,3,1,0],[1,1,2,0]],[[2,2,2,1],[0,2,3,2],[2,3,1,0],[1,1,2,0]],[[1,2,2,1],[0,2,4,2],[2,3,1,0],[0,2,2,0]],[[1,2,2,2],[0,2,3,2],[2,3,1,0],[0,2,2,0]],[[1,2,3,1],[0,2,3,2],[2,3,1,0],[0,2,2,0]],[[1,3,2,1],[0,2,3,2],[2,3,1,0],[0,2,2,0]],[[2,2,2,1],[0,2,3,2],[2,3,1,0],[0,2,2,0]],[[1,2,2,1],[0,2,3,3],[2,3,0,2],[1,2,0,0]],[[1,2,2,2],[0,2,3,2],[2,3,0,2],[1,2,0,0]],[[1,2,3,1],[0,2,3,2],[2,3,0,2],[1,2,0,0]],[[1,3,2,1],[0,2,3,2],[2,3,0,2],[1,2,0,0]],[[2,2,2,1],[0,2,3,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[0,2,3,3],[2,3,0,2],[1,1,1,0]],[[1,2,2,2],[0,2,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,3,1],[0,2,3,2],[2,3,0,2],[1,1,1,0]],[[1,3,2,1],[0,2,3,2],[2,3,0,2],[1,1,1,0]],[[2,2,2,1],[0,2,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,1],[0,2,3,3],[2,3,0,2],[1,1,0,1]],[[1,2,2,2],[0,2,3,2],[2,3,0,2],[1,1,0,1]],[[1,2,3,1],[0,2,3,2],[2,3,0,2],[1,1,0,1]],[[1,3,2,1],[0,2,3,2],[2,3,0,2],[1,1,0,1]],[[2,2,2,1],[0,2,3,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,1],[0,2,3,3],[2,3,0,2],[1,0,2,0]],[[1,2,2,2],[0,2,3,2],[2,3,0,2],[1,0,2,0]],[[1,2,3,1],[0,2,3,2],[2,3,0,2],[1,0,2,0]],[[1,3,2,1],[0,2,3,2],[2,3,0,2],[1,0,2,0]],[[2,2,2,1],[0,2,3,2],[2,3,0,2],[1,0,2,0]],[[1,2,2,1],[0,2,3,3],[2,3,0,2],[1,0,1,1]],[[1,2,2,2],[0,2,3,2],[2,3,0,2],[1,0,1,1]],[[1,2,3,1],[0,2,3,2],[2,3,0,2],[1,0,1,1]],[[1,3,2,1],[0,2,3,2],[2,3,0,2],[1,0,1,1]],[[2,2,2,1],[0,2,3,2],[2,3,0,2],[1,0,1,1]],[[1,2,2,1],[0,2,3,3],[2,3,0,2],[0,2,1,0]],[[1,2,2,2],[0,2,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,3,1],[0,2,3,2],[2,3,0,2],[0,2,1,0]],[[1,3,2,1],[0,2,3,2],[2,3,0,2],[0,2,1,0]],[[2,2,2,1],[0,2,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[0,2,3,3],[2,3,0,2],[0,2,0,1]],[[1,2,2,2],[0,2,3,2],[2,3,0,2],[0,2,0,1]],[[1,2,3,1],[0,2,3,2],[2,3,0,2],[0,2,0,1]],[[1,3,2,1],[0,2,3,2],[2,3,0,2],[0,2,0,1]],[[2,2,2,1],[0,2,3,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,1],[0,2,3,3],[2,3,0,2],[0,1,2,0]],[[1,2,2,2],[0,2,3,2],[2,3,0,2],[0,1,2,0]],[[1,2,3,1],[0,2,3,2],[2,3,0,2],[0,1,2,0]],[[1,3,2,1],[0,2,3,2],[2,3,0,2],[0,1,2,0]],[[2,2,2,1],[0,2,3,2],[2,3,0,2],[0,1,2,0]],[[1,2,2,1],[0,2,3,3],[2,3,0,2],[0,1,1,1]],[[1,2,2,2],[0,2,3,2],[2,3,0,2],[0,1,1,1]],[[1,2,3,1],[0,2,3,2],[2,3,0,2],[0,1,1,1]],[[1,3,2,1],[0,2,3,2],[2,3,0,2],[0,1,1,1]],[[2,2,2,1],[0,2,3,2],[2,3,0,2],[0,1,1,1]],[[1,2,2,1],[0,2,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,2],[0,2,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,3,1],[0,2,3,2],[2,2,3,0],[1,1,1,0]],[[1,3,2,1],[0,2,3,2],[2,2,3,0],[1,1,1,0]],[[2,2,2,1],[0,2,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[0,2,4,2],[2,2,3,0],[1,1,0,1]],[[1,2,2,2],[0,2,3,2],[2,2,3,0],[1,1,0,1]],[[1,2,3,1],[0,2,3,2],[2,2,3,0],[1,1,0,1]],[[1,3,2,1],[0,2,3,2],[2,2,3,0],[1,1,0,1]],[[2,2,2,1],[0,2,3,2],[2,2,3,0],[1,1,0,1]],[[1,2,2,1],[0,2,4,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,2],[0,2,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,3,1],[0,2,3,2],[2,2,3,0],[1,0,2,0]],[[1,3,2,1],[0,2,3,2],[2,2,3,0],[1,0,2,0]],[[2,2,2,1],[0,2,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,1],[0,2,4,2],[2,2,3,0],[1,0,1,1]],[[1,2,2,2],[0,2,3,2],[2,2,3,0],[1,0,1,1]],[[1,2,3,1],[0,2,3,2],[2,2,3,0],[1,0,1,1]],[[1,3,2,1],[0,2,3,2],[2,2,3,0],[1,0,1,1]],[[2,2,2,1],[0,2,3,2],[2,2,3,0],[1,0,1,1]],[[1,2,2,1],[0,2,4,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,2],[0,2,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,3,1],[0,2,3,2],[2,2,3,0],[0,2,1,0]],[[1,3,2,1],[0,2,3,2],[2,2,3,0],[0,2,1,0]],[[2,2,2,1],[0,2,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[0,2,4,2],[2,2,3,0],[0,2,0,1]],[[1,2,2,2],[0,2,3,2],[2,2,3,0],[0,2,0,1]],[[1,2,3,1],[0,2,3,2],[2,2,3,0],[0,2,0,1]],[[1,3,2,1],[0,2,3,2],[2,2,3,0],[0,2,0,1]],[[2,2,2,1],[0,2,3,2],[2,2,3,0],[0,2,0,1]],[[1,2,2,1],[0,2,4,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,2],[0,2,3,2],[2,2,3,0],[0,1,2,0]],[[1,2,3,1],[0,2,3,2],[2,2,3,0],[0,1,2,0]],[[1,3,2,1],[0,2,3,2],[2,2,3,0],[0,1,2,0]],[[2,2,2,1],[0,2,3,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,1],[0,2,4,2],[2,2,3,0],[0,1,1,1]],[[1,2,2,2],[0,2,3,2],[2,2,3,0],[0,1,1,1]],[[1,2,3,1],[0,2,3,2],[2,2,3,0],[0,1,1,1]],[[1,3,2,1],[0,2,3,2],[2,2,3,0],[0,1,1,1]],[[2,2,2,1],[0,2,3,2],[2,2,3,0],[0,1,1,1]],[[1,2,2,1],[0,2,4,2],[2,2,3,0],[0,0,2,1]],[[1,2,2,2],[0,2,3,2],[2,2,3,0],[0,0,2,1]],[[1,2,3,1],[0,2,3,2],[2,2,3,0],[0,0,2,1]],[[1,3,2,1],[0,2,3,2],[2,2,3,0],[0,0,2,1]],[[1,2,2,1],[0,2,3,3],[2,2,2,2],[1,0,0,1]],[[1,2,2,2],[0,2,3,2],[2,2,2,2],[1,0,0,1]],[[1,2,3,1],[0,2,3,2],[2,2,2,2],[1,0,0,1]],[[1,3,2,1],[0,2,3,2],[2,2,2,2],[1,0,0,1]],[[1,2,2,1],[0,2,3,3],[2,2,2,2],[0,1,0,1]],[[1,2,2,2],[0,2,3,2],[2,2,2,2],[0,1,0,1]],[[1,2,3,1],[0,2,3,2],[2,2,2,2],[0,1,0,1]],[[1,3,2,1],[0,2,3,2],[2,2,2,2],[0,1,0,1]],[[1,2,2,1],[0,2,3,3],[2,2,1,2],[1,1,1,0]],[[1,2,2,2],[0,2,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,3,1],[0,2,3,2],[2,2,1,2],[1,1,1,0]],[[1,3,2,1],[0,2,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[0,2,3,3],[2,2,1,2],[1,1,0,1]],[[1,2,2,2],[0,2,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,3,1],[0,2,3,2],[2,2,1,2],[1,1,0,1]],[[1,3,2,1],[0,2,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,1],[0,2,3,3],[2,2,1,2],[1,0,2,0]],[[1,2,2,2],[0,2,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,3,1],[0,2,3,2],[2,2,1,2],[1,0,2,0]],[[1,3,2,1],[0,2,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,1],[0,2,3,3],[2,2,1,2],[1,0,1,1]],[[1,2,2,2],[0,2,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,3,1],[0,2,3,2],[2,2,1,2],[1,0,1,1]],[[1,3,2,1],[0,2,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,1],[0,2,3,3],[2,2,1,2],[0,2,1,0]],[[1,2,2,2],[0,2,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,3,1],[0,2,3,2],[2,2,1,2],[0,2,1,0]],[[1,3,2,1],[0,2,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,1],[0,2,3,3],[2,2,1,2],[0,2,0,1]],[[1,2,2,2],[0,2,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,3,1],[0,2,3,2],[2,2,1,2],[0,2,0,1]],[[1,3,2,1],[0,2,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,1],[0,2,3,3],[2,2,1,2],[0,1,2,0]],[[1,2,2,2],[0,2,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,3,1],[0,2,3,2],[2,2,1,2],[0,1,2,0]],[[1,3,2,1],[0,2,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,1],[0,2,3,3],[2,2,1,2],[0,1,1,1]],[[1,2,2,2],[0,2,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,3,1],[0,2,3,2],[2,2,1,2],[0,1,1,1]],[[1,3,2,1],[0,2,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,1],[0,2,3,3],[2,2,1,2],[0,0,2,1]],[[1,2,2,2],[0,2,3,2],[2,2,1,2],[0,0,2,1]],[[1,2,3,1],[0,2,3,2],[2,2,1,2],[0,0,2,1]],[[1,3,2,1],[0,2,3,2],[2,2,1,2],[0,0,2,1]],[[1,2,2,1],[0,2,3,3],[2,2,0,2],[1,0,2,1]],[[1,2,2,2],[0,2,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,3,1],[0,2,3,2],[2,2,0,2],[1,0,2,1]],[[1,3,2,1],[0,2,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[0,2,3,3],[2,2,0,2],[0,1,2,1]],[[1,2,2,2],[0,2,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,3,1],[0,2,3,2],[2,2,0,2],[0,1,2,1]],[[1,3,2,1],[0,2,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,1],[0,2,4,2],[2,1,3,0],[0,2,2,0]],[[1,2,2,2],[0,2,3,2],[2,1,3,0],[0,2,2,0]],[[1,2,3,1],[0,2,3,2],[2,1,3,0],[0,2,2,0]],[[1,3,2,1],[0,2,3,2],[2,1,3,0],[0,2,2,0]],[[2,2,2,1],[0,2,3,2],[2,1,3,0],[0,2,2,0]],[[1,2,2,1],[0,2,4,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,2],[0,2,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,3,1],[0,2,3,2],[2,1,3,0],[0,2,1,1]],[[1,3,2,1],[0,2,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,1],[0,2,3,3],[2,1,1,2],[0,2,2,0]],[[1,2,2,2],[0,2,3,2],[2,1,1,2],[0,2,2,0]],[[1,2,3,1],[0,2,3,2],[2,1,1,2],[0,2,2,0]],[[1,3,2,1],[0,2,3,2],[2,1,1,2],[0,2,2,0]],[[1,2,2,1],[0,2,3,3],[2,1,1,2],[0,2,1,1]],[[1,2,2,2],[0,2,3,2],[2,1,1,2],[0,2,1,1]],[[1,2,3,1],[0,2,3,2],[2,1,1,2],[0,2,1,1]],[[1,3,2,1],[0,2,3,2],[2,1,1,2],[0,2,1,1]],[[1,2,2,1],[0,2,3,3],[2,1,0,2],[0,2,2,1]],[[1,2,2,2],[0,2,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,3,1],[0,2,3,2],[2,1,0,2],[0,2,2,1]],[[1,3,2,1],[0,2,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,1],[0,2,4,2],[2,0,3,0],[1,2,2,0]],[[1,2,2,2],[0,2,3,2],[2,0,3,0],[1,2,2,0]],[[1,2,3,1],[0,2,3,2],[2,0,3,0],[1,2,2,0]],[[1,3,2,1],[0,2,3,2],[2,0,3,0],[1,2,2,0]],[[2,2,2,1],[0,2,3,2],[2,0,3,0],[1,2,2,0]],[[1,2,2,1],[0,2,4,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,2],[0,2,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,3,1],[0,2,3,2],[2,0,3,0],[1,2,1,1]],[[1,3,2,1],[0,2,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,1],[0,2,3,3],[2,0,1,2],[1,2,2,0]],[[1,2,2,2],[0,2,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,3,1],[0,2,3,2],[2,0,1,2],[1,2,2,0]],[[1,3,2,1],[0,2,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[0,2,3,3],[2,0,1,2],[1,2,1,1]],[[1,2,2,2],[0,2,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,3,1],[0,2,3,2],[2,0,1,2],[1,2,1,1]],[[1,3,2,1],[0,2,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,1],[0,2,3,3],[2,0,0,2],[1,2,2,1]],[[1,2,2,2],[0,2,3,2],[2,0,0,2],[1,2,2,1]],[[1,2,3,1],[0,2,3,2],[2,0,0,2],[1,2,2,1]],[[1,3,2,1],[0,2,3,2],[2,0,0,2],[1,2,2,1]],[[2,2,2,1],[0,2,3,2],[2,0,0,2],[1,2,2,1]],[[1,2,2,1],[0,2,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,1],[0,2,3,3],[1,3,3,2],[0,0,0,1]],[[1,2,2,2],[0,2,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,1],[0,2,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,1],[0,2,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,2],[0,2,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,1],[0,2,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,1],[0,2,3,3],[1,3,3,1],[0,0,1,1]],[[1,2,2,2],[0,2,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,1],[0,2,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,1],[0,2,4,2],[1,3,3,0],[1,2,0,0]],[[1,2,2,2],[0,2,3,2],[1,3,3,0],[1,2,0,0]],[[1,2,3,1],[0,2,3,2],[1,3,3,0],[1,2,0,0]],[[1,3,2,1],[0,2,3,2],[1,3,3,0],[1,2,0,0]],[[2,2,2,1],[0,2,3,2],[1,3,3,0],[1,2,0,0]],[[1,2,2,1],[0,2,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,2],[0,2,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,1],[0,2,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,1],[0,2,3,2],[1,3,2,3],[0,0,1,1]],[[1,2,2,1],[0,2,3,3],[1,3,2,2],[0,0,1,1]],[[1,2,2,2],[0,2,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,1],[0,2,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,1],[0,2,4,2],[1,3,2,0],[1,2,1,0]],[[1,2,2,2],[0,2,3,2],[1,3,2,0],[1,2,1,0]],[[1,2,3,1],[0,2,3,2],[1,3,2,0],[1,2,1,0]],[[1,3,2,1],[0,2,3,2],[1,3,2,0],[1,2,1,0]],[[2,2,2,1],[0,2,3,2],[1,3,2,0],[1,2,1,0]],[[1,2,2,1],[0,2,4,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,2],[0,2,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,3,1],[0,2,3,2],[1,3,2,0],[1,2,0,1]],[[1,3,2,1],[0,2,3,2],[1,3,2,0],[1,2,0,1]],[[2,2,2,1],[0,2,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,1],[0,2,4,2],[1,3,2,0],[1,1,2,0]],[[1,2,2,2],[0,2,3,2],[1,3,2,0],[1,1,2,0]],[[1,2,3,1],[0,2,3,2],[1,3,2,0],[1,1,2,0]],[[1,3,2,1],[0,2,3,2],[1,3,2,0],[1,1,2,0]],[[2,2,2,1],[0,2,3,2],[1,3,2,0],[1,1,2,0]],[[1,2,2,1],[0,2,4,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,2],[0,2,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,3,1],[0,2,3,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,1],[0,2,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,1],[0,2,4,2],[1,3,1,0],[1,2,2,0]],[[1,2,2,2],[0,2,3,2],[1,3,1,0],[1,2,2,0]],[[1,2,3,1],[0,2,3,2],[1,3,1,0],[1,2,2,0]],[[1,3,2,1],[0,2,3,2],[1,3,1,0],[1,2,2,0]],[[2,2,2,1],[0,2,3,2],[1,3,1,0],[1,2,2,0]],[[1,2,2,1],[0,2,3,3],[1,3,0,2],[1,2,1,0]],[[1,2,2,2],[0,2,3,2],[1,3,0,2],[1,2,1,0]],[[1,2,3,1],[0,2,3,2],[1,3,0,2],[1,2,1,0]],[[1,3,2,1],[0,2,3,2],[1,3,0,2],[1,2,1,0]],[[2,2,2,1],[0,2,3,2],[1,3,0,2],[1,2,1,0]],[[1,2,2,1],[0,2,3,3],[1,3,0,2],[1,2,0,1]],[[1,2,2,2],[0,2,3,2],[1,3,0,2],[1,2,0,1]],[[1,2,3,1],[0,2,3,2],[1,3,0,2],[1,2,0,1]],[[1,3,2,1],[0,2,3,2],[1,3,0,2],[1,2,0,1]],[[2,2,2,1],[0,2,3,2],[1,3,0,2],[1,2,0,1]],[[1,2,2,1],[0,2,3,3],[1,3,0,2],[1,1,2,0]],[[1,2,2,2],[0,2,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,3,1],[0,2,3,2],[1,3,0,2],[1,1,2,0]],[[1,3,2,1],[0,2,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,1],[0,2,3,3],[1,3,0,2],[1,1,1,1]],[[1,2,2,2],[0,2,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,3,1],[0,2,3,2],[1,3,0,2],[1,1,1,1]],[[1,3,2,1],[0,2,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,1],[0,2,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,1],[0,2,3,3],[1,2,3,2],[1,0,0,1]],[[1,2,2,2],[0,2,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,1],[0,2,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,1],[0,2,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,1],[0,2,3,3],[1,2,3,2],[0,1,0,1]],[[1,2,2,2],[0,2,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,1],[0,2,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,2,1],[0,2,3,3],[1,2,3,1],[1,0,2,0]],[[1,2,2,2],[0,2,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,1],[0,2,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,1],[0,2,3,3],[1,2,3,1],[1,0,1,1]],[[1,2,2,2],[0,2,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,1],[0,2,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,1],[0,2,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,2],[0,2,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,1],[0,2,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,1],[0,2,3,3],[1,2,3,1],[0,2,0,1]],[[1,2,2,2],[0,2,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,1],[0,2,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,1],[0,2,3,3],[1,2,3,1],[0,1,2,0]],[[1,2,2,2],[0,2,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,1],[0,2,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,1],[0,2,3,3],[1,2,3,1],[0,1,1,1]],[[1,2,2,2],[0,2,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,1],[0,2,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,1],[0,2,3,3],[1,2,3,1],[0,0,2,1]],[[1,2,2,2],[0,2,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,1],[0,2,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,1],[0,2,4,2],[1,2,3,0],[1,2,1,0]],[[1,2,2,2],[0,2,3,2],[1,2,3,0],[1,2,1,0]],[[1,2,3,1],[0,2,3,2],[1,2,3,0],[1,2,1,0]],[[1,3,2,1],[0,2,3,2],[1,2,3,0],[1,2,1,0]],[[2,2,2,1],[0,2,3,2],[1,2,3,0],[1,2,1,0]],[[1,2,2,1],[0,2,4,2],[1,2,3,0],[1,2,0,1]],[[1,2,2,2],[0,2,3,2],[1,2,3,0],[1,2,0,1]],[[1,2,3,1],[0,2,3,2],[1,2,3,0],[1,2,0,1]],[[1,3,2,1],[0,2,3,2],[1,2,3,0],[1,2,0,1]],[[2,2,2,1],[0,2,3,2],[1,2,3,0],[1,2,0,1]],[[0,2,2,1],[0,0,0,2],[2,3,3,3],[1,2,2,1]],[[0,2,2,1],[0,0,0,2],[2,3,3,2],[2,2,2,1]],[[0,2,2,1],[0,0,0,2],[2,3,3,2],[1,3,2,1]],[[0,2,2,1],[0,0,0,2],[2,3,3,2],[1,2,3,1]],[[0,2,2,1],[0,0,0,2],[2,3,3,2],[1,2,2,2]],[[0,2,3,1],[0,0,1,2],[2,3,2,2],[1,2,2,1]],[[0,2,2,2],[0,0,1,2],[2,3,2,2],[1,2,2,1]],[[0,2,2,1],[0,0,1,3],[2,3,2,2],[1,2,2,1]],[[0,2,2,1],[0,0,1,2],[2,3,2,3],[1,2,2,1]],[[0,2,2,1],[0,0,1,2],[2,3,2,2],[2,2,2,1]],[[0,2,2,1],[0,0,1,2],[2,3,2,2],[1,3,2,1]],[[0,2,2,1],[0,0,1,2],[2,3,2,2],[1,2,3,1]],[[0,2,2,1],[0,0,1,2],[2,3,2,2],[1,2,2,2]],[[0,2,2,1],[0,0,1,2],[2,3,4,1],[1,2,2,1]],[[0,2,2,1],[0,0,1,2],[2,3,3,1],[2,2,2,1]],[[0,2,2,1],[0,0,1,2],[2,3,3,1],[1,3,2,1]],[[0,2,2,1],[0,0,1,2],[2,3,3,1],[1,2,3,1]],[[0,2,2,1],[0,0,1,2],[2,3,3,1],[1,2,2,2]],[[0,2,3,1],[0,0,1,2],[2,3,3,2],[1,2,1,1]],[[0,2,2,2],[0,0,1,2],[2,3,3,2],[1,2,1,1]],[[0,2,2,1],[0,0,1,3],[2,3,3,2],[1,2,1,1]],[[0,2,2,1],[0,0,1,2],[2,3,4,2],[1,2,1,1]],[[0,2,2,1],[0,0,1,2],[2,3,3,3],[1,2,1,1]],[[0,2,2,1],[0,0,1,2],[2,3,3,2],[1,2,1,2]],[[0,2,3,1],[0,0,1,2],[2,3,3,2],[1,2,2,0]],[[0,2,2,2],[0,0,1,2],[2,3,3,2],[1,2,2,0]],[[0,2,2,1],[0,0,1,3],[2,3,3,2],[1,2,2,0]],[[0,2,2,1],[0,0,1,2],[2,3,4,2],[1,2,2,0]],[[0,2,2,1],[0,0,1,2],[2,3,3,3],[1,2,2,0]],[[0,2,2,1],[0,0,1,2],[2,3,3,2],[2,2,2,0]],[[0,2,2,1],[0,0,1,2],[2,3,3,2],[1,3,2,0]],[[0,2,2,1],[0,0,1,2],[2,3,3,2],[1,2,3,0]],[[0,2,2,2],[0,0,2,2],[2,1,3,2],[1,2,2,1]],[[0,2,2,1],[0,0,2,3],[2,1,3,2],[1,2,2,1]],[[0,2,2,1],[0,0,2,2],[2,1,3,3],[1,2,2,1]],[[0,2,2,1],[0,0,2,2],[2,1,3,2],[1,2,3,1]],[[0,2,2,1],[0,0,2,2],[2,1,3,2],[1,2,2,2]],[[0,2,3,1],[0,0,2,2],[2,2,2,2],[1,2,2,1]],[[0,2,2,2],[0,0,2,2],[2,2,2,2],[1,2,2,1]],[[0,2,2,1],[0,0,2,3],[2,2,2,2],[1,2,2,1]],[[0,2,2,1],[0,0,2,2],[2,2,2,3],[1,2,2,1]],[[0,2,2,1],[0,0,2,2],[2,2,2,2],[2,2,2,1]],[[0,2,2,1],[0,0,2,2],[2,2,2,2],[1,3,2,1]],[[0,2,2,1],[0,0,2,2],[2,2,2,2],[1,2,3,1]],[[0,2,2,1],[0,0,2,2],[2,2,2,2],[1,2,2,2]],[[0,2,2,1],[0,0,2,2],[2,2,4,1],[1,2,2,1]],[[0,2,2,1],[0,0,2,2],[2,2,3,1],[2,2,2,1]],[[0,2,2,1],[0,0,2,2],[2,2,3,1],[1,3,2,1]],[[0,2,2,1],[0,0,2,2],[2,2,3,1],[1,2,3,1]],[[0,2,2,1],[0,0,2,2],[2,2,3,1],[1,2,2,2]],[[0,2,3,1],[0,0,2,2],[2,2,3,2],[1,2,1,1]],[[0,2,2,2],[0,0,2,2],[2,2,3,2],[1,2,1,1]],[[0,2,2,1],[0,0,2,3],[2,2,3,2],[1,2,1,1]],[[0,2,2,1],[0,0,2,2],[2,2,4,2],[1,2,1,1]],[[0,2,2,1],[0,0,2,2],[2,2,3,3],[1,2,1,1]],[[0,2,2,1],[0,0,2,2],[2,2,3,2],[1,2,1,2]],[[0,2,3,1],[0,0,2,2],[2,2,3,2],[1,2,2,0]],[[0,2,2,2],[0,0,2,2],[2,2,3,2],[1,2,2,0]],[[0,2,2,1],[0,0,2,3],[2,2,3,2],[1,2,2,0]],[[0,2,2,1],[0,0,2,2],[2,2,4,2],[1,2,2,0]],[[0,2,2,1],[0,0,2,2],[2,2,3,3],[1,2,2,0]],[[0,2,2,1],[0,0,2,2],[2,2,3,2],[2,2,2,0]],[[0,2,2,1],[0,0,2,2],[2,2,3,2],[1,3,2,0]],[[0,2,2,1],[0,0,2,2],[2,2,3,2],[1,2,3,0]],[[0,2,3,1],[0,0,2,2],[2,3,2,2],[1,1,2,1]],[[0,2,2,2],[0,0,2,2],[2,3,2,2],[1,1,2,1]],[[0,2,2,1],[0,0,2,3],[2,3,2,2],[1,1,2,1]],[[0,2,2,1],[0,0,2,2],[2,3,2,3],[1,1,2,1]],[[0,2,2,1],[0,0,2,2],[2,3,2,2],[1,1,3,1]],[[0,2,2,1],[0,0,2,2],[2,3,2,2],[1,1,2,2]],[[0,2,2,1],[0,0,2,2],[2,3,4,1],[1,1,2,1]],[[0,2,2,1],[0,0,2,2],[2,3,3,1],[1,1,3,1]],[[0,2,2,1],[0,0,2,2],[2,3,3,1],[1,1,2,2]],[[0,2,2,2],[0,0,2,2],[2,3,3,2],[1,0,2,1]],[[0,2,2,1],[0,0,2,3],[2,3,3,2],[1,0,2,1]],[[0,2,2,1],[0,0,2,2],[2,3,4,2],[1,0,2,1]],[[0,2,2,1],[0,0,2,2],[2,3,3,3],[1,0,2,1]],[[0,2,2,1],[0,0,2,2],[2,3,3,2],[1,0,2,2]],[[0,2,3,1],[0,0,2,2],[2,3,3,2],[1,1,1,1]],[[0,2,2,2],[0,0,2,2],[2,3,3,2],[1,1,1,1]],[[0,2,2,1],[0,0,2,3],[2,3,3,2],[1,1,1,1]],[[0,2,2,1],[0,0,2,2],[2,3,4,2],[1,1,1,1]],[[0,2,2,1],[0,0,2,2],[2,3,3,3],[1,1,1,1]],[[0,2,2,1],[0,0,2,2],[2,3,3,2],[1,1,1,2]],[[0,2,3,1],[0,0,2,2],[2,3,3,2],[1,1,2,0]],[[0,2,2,2],[0,0,2,2],[2,3,3,2],[1,1,2,0]],[[0,2,2,1],[0,0,2,3],[2,3,3,2],[1,1,2,0]],[[0,2,2,1],[0,0,2,2],[2,3,4,2],[1,1,2,0]],[[0,2,2,1],[0,0,2,2],[2,3,3,3],[1,1,2,0]],[[0,2,2,1],[0,0,2,2],[2,3,3,2],[1,1,3,0]],[[0,2,3,1],[0,0,2,2],[2,3,3,2],[1,2,0,1]],[[0,2,2,2],[0,0,2,2],[2,3,3,2],[1,2,0,1]],[[0,2,2,1],[0,0,2,3],[2,3,3,2],[1,2,0,1]],[[0,2,2,1],[0,0,2,2],[2,3,4,2],[1,2,0,1]],[[0,2,2,1],[0,0,2,2],[2,3,3,3],[1,2,0,1]],[[0,2,2,1],[0,0,2,2],[2,3,3,2],[1,2,0,2]],[[0,2,3,1],[0,0,2,2],[2,3,3,2],[1,2,1,0]],[[0,2,2,2],[0,0,2,2],[2,3,3,2],[1,2,1,0]],[[0,2,2,1],[0,0,2,3],[2,3,3,2],[1,2,1,0]],[[0,2,2,1],[0,0,2,2],[2,3,4,2],[1,2,1,0]],[[0,2,2,1],[0,0,2,2],[2,3,3,3],[1,2,1,0]],[[1,2,2,1],[0,2,4,2],[1,2,3,0],[1,1,2,0]],[[1,2,2,2],[0,2,3,2],[1,2,3,0],[1,1,2,0]],[[1,2,3,1],[0,2,3,2],[1,2,3,0],[1,1,2,0]],[[0,2,2,1],[0,0,3,0],[2,3,2,3],[1,2,2,1]],[[0,2,2,1],[0,0,3,0],[2,3,2,2],[2,2,2,1]],[[0,2,2,1],[0,0,3,0],[2,3,2,2],[1,3,2,1]],[[0,2,2,1],[0,0,3,0],[2,3,2,2],[1,2,3,1]],[[0,2,2,1],[0,0,3,0],[2,3,2,2],[1,2,2,2]],[[0,2,2,1],[0,0,3,0],[2,3,4,1],[1,2,2,1]],[[0,2,2,1],[0,0,3,0],[2,3,3,1],[2,2,2,1]],[[0,2,2,1],[0,0,3,0],[2,3,3,1],[1,3,2,1]],[[0,2,2,1],[0,0,3,0],[2,3,3,1],[1,2,3,1]],[[0,2,2,1],[0,0,3,0],[2,3,3,1],[1,2,2,2]],[[0,2,2,1],[0,0,3,0],[2,3,4,2],[1,2,1,1]],[[0,2,2,1],[0,0,3,0],[2,3,3,3],[1,2,1,1]],[[0,2,2,1],[0,0,3,0],[2,3,3,2],[1,2,1,2]],[[0,2,2,1],[0,0,3,0],[2,3,4,2],[1,2,2,0]],[[0,2,2,1],[0,0,3,0],[2,3,3,3],[1,2,2,0]],[[0,2,2,1],[0,0,3,0],[2,3,3,2],[2,2,2,0]],[[0,2,2,1],[0,0,3,0],[2,3,3,2],[1,3,2,0]],[[0,2,2,1],[0,0,3,0],[2,3,3,2],[1,2,3,0]],[[0,2,2,1],[0,0,3,1],[2,3,4,0],[1,2,2,1]],[[0,2,2,1],[0,0,3,1],[2,3,3,0],[2,2,2,1]],[[0,2,2,1],[0,0,3,1],[2,3,3,0],[1,3,2,1]],[[0,2,2,1],[0,0,3,1],[2,3,3,0],[1,2,3,1]],[[0,2,2,1],[0,0,3,1],[2,3,3,0],[1,2,2,2]],[[0,2,2,1],[0,0,3,1],[2,3,4,1],[1,2,2,0]],[[0,2,2,1],[0,0,3,1],[2,3,3,1],[2,2,2,0]],[[0,2,2,1],[0,0,3,1],[2,3,3,1],[1,3,2,0]],[[0,2,2,1],[0,0,3,1],[2,3,3,1],[1,2,3,0]],[[1,3,2,1],[0,2,3,2],[1,2,3,0],[1,1,2,0]],[[2,2,2,1],[0,2,3,2],[1,2,3,0],[1,1,2,0]],[[1,2,2,1],[0,2,4,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,2],[0,2,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,3,1],[0,2,3,2],[1,2,3,0],[1,1,1,1]],[[1,3,2,1],[0,2,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,2],[0,0,3,2],[0,2,3,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,3],[0,2,3,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[0,2,3,3],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[0,2,3,2],[1,2,3,1]],[[0,2,2,1],[0,0,3,2],[0,2,3,2],[1,2,2,2]],[[0,2,2,2],[0,0,3,2],[0,3,2,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,3],[0,3,2,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[0,3,2,3],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[0,3,2,2],[1,3,2,1]],[[0,2,2,1],[0,0,3,2],[0,3,2,2],[1,2,3,1]],[[0,2,2,1],[0,0,3,2],[0,3,2,2],[1,2,2,2]],[[0,2,2,1],[0,0,3,2],[0,3,4,1],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[0,3,3,1],[1,3,2,1]],[[0,2,2,1],[0,0,3,2],[0,3,3,1],[1,2,3,1]],[[0,2,2,1],[0,0,3,2],[0,3,3,1],[1,2,2,2]],[[0,2,2,2],[0,0,3,2],[0,3,3,2],[1,2,1,1]],[[0,2,2,1],[0,0,3,3],[0,3,3,2],[1,2,1,1]],[[0,2,2,1],[0,0,3,2],[0,3,4,2],[1,2,1,1]],[[0,2,2,1],[0,0,3,2],[0,3,3,3],[1,2,1,1]],[[0,2,2,1],[0,0,3,2],[0,3,3,2],[1,2,1,2]],[[0,2,2,2],[0,0,3,2],[0,3,3,2],[1,2,2,0]],[[0,2,2,1],[0,0,3,3],[0,3,3,2],[1,2,2,0]],[[0,2,2,1],[0,0,3,2],[0,3,4,2],[1,2,2,0]],[[0,2,2,1],[0,0,3,2],[0,3,3,3],[1,2,2,0]],[[0,2,2,1],[0,0,3,2],[0,3,3,2],[1,3,2,0]],[[0,2,2,1],[0,0,3,2],[0,3,3,2],[1,2,3,0]],[[0,2,2,2],[0,0,3,2],[1,1,3,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,3],[1,1,3,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[1,1,3,3],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[1,1,3,2],[1,2,3,1]],[[0,2,2,1],[0,0,3,2],[1,1,3,2],[1,2,2,2]],[[0,2,2,2],[0,0,3,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,3],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[0,0,3,2],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[0,0,3,2],[1,2,2,2],[1,2,2,2]],[[0,2,2,1],[0,0,3,2],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[0,0,3,2],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[0,0,3,2],[1,2,3,1],[1,2,2,2]],[[0,2,2,2],[0,0,3,2],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[0,0,3,3],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[0,0,3,2],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[0,0,3,2],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[0,0,3,2],[1,2,3,2],[1,2,1,2]],[[0,2,2,2],[0,0,3,2],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[0,0,3,3],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[0,0,3,2],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[0,0,3,2],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[0,0,3,2],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[0,0,3,2],[1,2,3,2],[1,2,3,0]],[[0,2,2,2],[0,0,3,2],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[0,0,3,3],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[0,0,3,2],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[0,0,3,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[0,0,3,2],[1,3,2,2],[1,1,2,2]],[[0,2,2,1],[0,0,3,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[0,0,3,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[0,0,3,2],[1,3,3,1],[1,1,2,2]],[[0,2,2,2],[0,0,3,2],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[0,0,3,3],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[0,0,3,2],[1,3,4,2],[1,0,2,1]],[[0,2,2,1],[0,0,3,2],[1,3,3,3],[1,0,2,1]],[[0,2,2,1],[0,0,3,2],[1,3,3,2],[1,0,2,2]],[[0,2,2,2],[0,0,3,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[0,0,3,3],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[0,0,3,2],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[0,0,3,2],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[0,0,3,2],[1,3,3,2],[1,1,1,2]],[[0,2,2,2],[0,0,3,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[0,0,3,3],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[0,0,3,2],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[0,0,3,2],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[0,0,3,2],[1,3,3,2],[1,1,3,0]],[[0,2,2,2],[0,0,3,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[0,0,3,3],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[0,0,3,2],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[0,0,3,2],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[0,0,3,2],[1,3,3,2],[1,2,0,2]],[[0,2,2,2],[0,0,3,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[0,0,3,3],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[0,0,3,2],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[0,0,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[0,2,3,3],[1,2,3,0],[0,1,2,1]],[[1,2,2,2],[0,2,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,1],[0,2,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,2],[0,0,3,2],[2,0,3,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,3],[2,0,3,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,0,3,3],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,0,3,2],[1,2,3,1]],[[0,2,2,1],[0,0,3,2],[2,0,3,2],[1,2,2,2]],[[0,2,2,2],[0,0,3,2],[2,1,3,2],[0,2,2,1]],[[0,2,2,1],[0,0,3,3],[2,1,3,2],[0,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,1,3,3],[0,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,1,3,2],[0,2,3,1]],[[0,2,2,1],[0,0,3,2],[2,1,3,2],[0,2,2,2]],[[0,2,3,1],[0,0,3,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,2],[0,0,3,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,3],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[0,0,3,2],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[0,0,3,2],[2,2,1,2],[1,2,2,2]],[[0,2,2,2],[0,0,3,2],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[0,0,3,3],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[0,0,3,2],[2,2,2,2],[0,2,2,2]],[[0,2,3,1],[0,0,3,2],[2,2,2,2],[1,2,1,1]],[[0,2,2,2],[0,0,3,2],[2,2,2,2],[1,2,1,1]],[[0,2,2,1],[0,0,3,3],[2,2,2,2],[1,2,1,1]],[[0,2,2,1],[0,0,3,2],[2,2,2,3],[1,2,1,1]],[[0,2,2,1],[0,0,3,2],[2,2,2,2],[1,2,1,2]],[[0,2,3,1],[0,0,3,2],[2,2,2,2],[1,2,2,0]],[[0,2,2,2],[0,0,3,2],[2,2,2,2],[1,2,2,0]],[[0,2,2,1],[0,0,3,3],[2,2,2,2],[1,2,2,0]],[[0,2,2,1],[0,0,3,2],[2,2,2,3],[1,2,2,0]],[[0,2,3,1],[0,0,3,2],[2,2,3,0],[1,2,2,1]],[[0,2,2,2],[0,0,3,2],[2,2,3,0],[1,2,2,1]],[[0,2,2,1],[0,0,3,3],[2,2,3,0],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[0,0,3,2],[2,2,3,1],[0,2,2,2]],[[0,2,3,1],[0,0,3,2],[2,2,3,1],[1,2,1,1]],[[0,2,2,2],[0,0,3,2],[2,2,3,1],[1,2,1,1]],[[0,2,2,1],[0,0,3,3],[2,2,3,1],[1,2,1,1]],[[0,2,3,1],[0,0,3,2],[2,2,3,1],[1,2,2,0]],[[0,2,2,2],[0,0,3,2],[2,2,3,1],[1,2,2,0]],[[0,2,2,1],[0,0,3,3],[2,2,3,1],[1,2,2,0]],[[0,2,2,2],[0,0,3,2],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[0,0,3,3],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[0,0,3,2],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[0,0,3,2],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[0,0,3,2],[2,2,3,2],[0,2,1,2]],[[0,2,2,2],[0,0,3,2],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[0,0,3,3],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[0,0,3,2],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[0,0,3,2],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[0,0,3,2],[2,2,3,2],[0,2,3,0]],[[0,2,3,1],[0,0,3,2],[2,3,0,2],[1,2,2,1]],[[0,2,2,2],[0,0,3,2],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,3],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,0,3],[1,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,0,2],[1,3,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,0,2],[1,2,3,1]],[[0,2,2,1],[0,0,3,2],[2,3,0,2],[1,2,2,2]],[[0,2,3,1],[0,0,3,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,2],[0,0,3,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[0,0,3,3],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,1,3],[1,1,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,1,2],[1,1,3,1]],[[0,2,2,1],[0,0,3,2],[2,3,1,2],[1,1,2,2]],[[0,2,2,2],[0,0,3,2],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[0,0,3,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[0,0,3,2],[2,3,2,2],[0,1,2,2]],[[0,2,3,1],[0,0,3,2],[2,3,2,2],[1,1,1,1]],[[0,2,2,2],[0,0,3,2],[2,3,2,2],[1,1,1,1]],[[0,2,2,1],[0,0,3,3],[2,3,2,2],[1,1,1,1]],[[0,2,2,1],[0,0,3,2],[2,3,2,3],[1,1,1,1]],[[0,2,2,1],[0,0,3,2],[2,3,2,2],[1,1,1,2]],[[0,2,3,1],[0,0,3,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,2],[0,0,3,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[0,0,3,3],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[0,0,3,2],[2,3,2,3],[1,1,2,0]],[[0,2,3,1],[0,0,3,2],[2,3,2,2],[1,2,0,1]],[[0,2,2,2],[0,0,3,2],[2,3,2,2],[1,2,0,1]],[[0,2,2,1],[0,0,3,3],[2,3,2,2],[1,2,0,1]],[[0,2,2,1],[0,0,3,2],[2,3,2,3],[1,2,0,1]],[[0,2,2,1],[0,0,3,2],[2,3,2,2],[1,2,0,2]],[[0,2,3,1],[0,0,3,2],[2,3,2,2],[1,2,1,0]],[[0,2,2,2],[0,0,3,2],[2,3,2,2],[1,2,1,0]],[[0,2,2,1],[0,0,3,3],[2,3,2,2],[1,2,1,0]],[[0,2,2,1],[0,0,3,2],[2,3,2,3],[1,2,1,0]],[[0,2,3,1],[0,0,3,2],[2,3,3,0],[1,1,2,1]],[[0,2,2,2],[0,0,3,2],[2,3,3,0],[1,1,2,1]],[[0,2,2,1],[0,0,3,3],[2,3,3,0],[1,1,2,1]],[[0,2,3,1],[0,0,3,2],[2,3,3,0],[1,2,1,1]],[[0,2,2,2],[0,0,3,2],[2,3,3,0],[1,2,1,1]],[[0,2,2,1],[0,0,3,3],[2,3,3,0],[1,2,1,1]],[[0,2,2,1],[0,0,3,2],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[0,0,3,2],[2,3,3,1],[0,1,2,2]],[[0,2,3,1],[0,0,3,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,2],[0,0,3,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[0,0,3,3],[2,3,3,1],[1,1,1,1]],[[0,2,3,1],[0,0,3,2],[2,3,3,1],[1,1,2,0]],[[0,2,2,2],[0,0,3,2],[2,3,3,1],[1,1,2,0]],[[0,2,2,1],[0,0,3,3],[2,3,3,1],[1,1,2,0]],[[0,2,3,1],[0,0,3,2],[2,3,3,1],[1,2,0,1]],[[0,2,2,2],[0,0,3,2],[2,3,3,1],[1,2,0,1]],[[0,2,2,1],[0,0,3,3],[2,3,3,1],[1,2,0,1]],[[0,2,3,1],[0,0,3,2],[2,3,3,1],[1,2,1,0]],[[0,2,2,2],[0,0,3,2],[2,3,3,1],[1,2,1,0]],[[0,2,2,1],[0,0,3,3],[2,3,3,1],[1,2,1,0]],[[0,2,2,2],[0,0,3,2],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[0,0,3,3],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[0,0,3,2],[2,3,3,2],[0,0,2,2]],[[0,2,2,2],[0,0,3,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[0,0,3,3],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[0,0,3,2],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[0,0,3,2],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[0,0,3,2],[2,3,3,2],[0,1,1,2]],[[0,2,2,2],[0,0,3,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[0,0,3,3],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[0,0,3,2],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[0,0,3,2],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[0,0,3,2],[2,3,3,2],[0,1,3,0]],[[0,2,2,2],[0,0,3,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[0,0,3,3],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[0,0,3,2],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[0,0,3,2],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[0,0,3,2],[2,3,3,2],[0,2,0,2]],[[0,2,2,2],[0,0,3,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[0,0,3,3],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[0,0,3,2],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[0,0,3,2],[2,3,3,3],[0,2,1,0]],[[0,2,2,2],[0,0,3,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[0,0,3,3],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[0,0,3,2],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[0,0,3,2],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[0,0,3,2],[2,3,3,2],[1,0,1,2]],[[0,2,2,2],[0,0,3,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[0,0,3,3],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[0,0,3,2],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[0,0,3,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[0,2,3,3],[1,2,2,2],[1,0,2,0]],[[1,2,2,2],[0,2,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,1],[0,2,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,1],[0,2,3,2],[1,2,2,3],[1,0,1,1]],[[1,2,2,1],[0,2,3,3],[1,2,2,2],[1,0,1,1]],[[1,2,2,2],[0,2,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,1],[0,2,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,1],[0,2,3,3],[1,2,2,2],[0,2,1,0]],[[1,2,2,2],[0,2,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,1],[0,2,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,1],[0,2,3,2],[1,2,2,3],[0,2,0,1]],[[1,2,2,1],[0,2,3,3],[1,2,2,2],[0,2,0,1]],[[1,2,2,2],[0,2,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,1],[0,2,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[0,1,0,2],[2,2,3,3],[1,2,2,1]],[[0,2,2,1],[0,1,0,2],[2,2,3,2],[2,2,2,1]],[[0,2,2,1],[0,1,0,2],[2,2,3,2],[1,3,2,1]],[[0,2,2,1],[0,1,0,2],[2,2,3,2],[1,2,3,1]],[[0,2,2,1],[0,1,0,2],[2,2,3,2],[1,2,2,2]],[[0,2,2,1],[0,1,0,2],[2,3,3,3],[1,1,2,1]],[[0,2,2,1],[0,1,0,2],[2,3,3,2],[1,1,3,1]],[[0,2,2,1],[0,1,0,2],[2,3,3,2],[1,1,2,2]],[[0,2,2,2],[0,1,1,2],[2,1,3,2],[1,2,2,1]],[[0,2,2,1],[0,1,1,3],[2,1,3,2],[1,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,1,3,3],[1,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,1,3,2],[1,2,3,1]],[[0,2,2,1],[0,1,1,2],[2,1,3,2],[1,2,2,2]],[[0,2,3,1],[0,1,1,2],[2,2,2,2],[1,2,2,1]],[[0,2,2,2],[0,1,1,2],[2,2,2,2],[1,2,2,1]],[[0,2,2,1],[0,1,1,3],[2,2,2,2],[1,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,2,2,3],[1,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,2,2,2],[2,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,2,2,2],[1,3,2,1]],[[0,2,2,1],[0,1,1,2],[2,2,2,2],[1,2,3,1]],[[0,2,2,1],[0,1,1,2],[2,2,2,2],[1,2,2,2]],[[0,2,2,1],[0,1,1,2],[2,2,4,1],[1,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,2,3,1],[2,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,2,3,1],[1,3,2,1]],[[0,2,2,1],[0,1,1,2],[2,2,3,1],[1,2,3,1]],[[0,2,2,1],[0,1,1,2],[2,2,3,1],[1,2,2,2]],[[0,2,3,1],[0,1,1,2],[2,2,3,2],[1,2,1,1]],[[0,2,2,2],[0,1,1,2],[2,2,3,2],[1,2,1,1]],[[0,2,2,1],[0,1,1,3],[2,2,3,2],[1,2,1,1]],[[0,2,2,1],[0,1,1,2],[2,2,4,2],[1,2,1,1]],[[0,2,2,1],[0,1,1,2],[2,2,3,3],[1,2,1,1]],[[0,2,2,1],[0,1,1,2],[2,2,3,2],[1,2,1,2]],[[0,2,3,1],[0,1,1,2],[2,2,3,2],[1,2,2,0]],[[0,2,2,2],[0,1,1,2],[2,2,3,2],[1,2,2,0]],[[0,2,2,1],[0,1,1,3],[2,2,3,2],[1,2,2,0]],[[0,2,2,1],[0,1,1,2],[2,2,4,2],[1,2,2,0]],[[0,2,2,1],[0,1,1,2],[2,2,3,3],[1,2,2,0]],[[0,2,2,1],[0,1,1,2],[2,2,3,2],[2,2,2,0]],[[0,2,2,1],[0,1,1,2],[2,2,3,2],[1,3,2,0]],[[0,2,2,1],[0,1,1,2],[2,2,3,2],[1,2,3,0]],[[0,2,3,1],[0,1,1,2],[2,3,1,2],[1,2,2,1]],[[0,2,2,2],[0,1,1,2],[2,3,1,2],[1,2,2,1]],[[0,2,2,1],[0,1,1,3],[2,3,1,2],[1,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,4,1,2],[1,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,1,3],[1,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,1,2],[2,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,1,2],[1,3,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,1,2],[1,2,3,1]],[[0,2,2,1],[0,1,1,2],[2,3,1,2],[1,2,2,2]],[[0,2,2,1],[0,1,1,2],[2,4,2,1],[1,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,2,1],[2,2,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,2,1],[1,3,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,2,1],[1,2,3,1]],[[0,2,2,1],[0,1,1,2],[2,3,2,1],[1,2,2,2]],[[0,2,3,1],[0,1,1,2],[2,3,2,2],[1,1,2,1]],[[0,2,2,2],[0,1,1,2],[2,3,2,2],[1,1,2,1]],[[0,2,2,1],[0,1,1,3],[2,3,2,2],[1,1,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,2,3],[1,1,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,2,2],[1,1,3,1]],[[0,2,2,1],[0,1,1,2],[2,3,2,2],[1,1,2,2]],[[0,2,2,1],[0,1,1,2],[2,4,2,2],[1,2,2,0]],[[0,2,2,1],[0,1,1,2],[2,3,2,2],[2,2,2,0]],[[0,2,2,1],[0,1,1,2],[2,3,2,2],[1,3,2,0]],[[0,2,2,1],[0,1,1,2],[2,3,2,2],[1,2,3,0]],[[0,2,2,1],[0,1,1,2],[2,4,3,1],[1,1,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,4,1],[1,1,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,1],[1,1,3,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,1],[1,1,2,2]],[[0,2,2,1],[0,1,1,2],[2,4,3,1],[1,2,1,1]],[[0,2,2,1],[0,1,1,2],[2,3,4,1],[1,2,1,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,1],[2,2,1,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,1],[1,3,1,1]],[[0,2,2,2],[0,1,1,2],[2,3,3,2],[1,0,2,1]],[[0,2,2,1],[0,1,1,3],[2,3,3,2],[1,0,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,4,2],[1,0,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,3],[1,0,2,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,2],[1,0,2,2]],[[0,2,3,1],[0,1,1,2],[2,3,3,2],[1,1,1,1]],[[0,2,2,2],[0,1,1,2],[2,3,3,2],[1,1,1,1]],[[0,2,2,1],[0,1,1,3],[2,3,3,2],[1,1,1,1]],[[0,2,2,1],[0,1,1,2],[2,4,3,2],[1,1,1,1]],[[0,2,2,1],[0,1,1,2],[2,3,4,2],[1,1,1,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,3],[1,1,1,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,2],[1,1,1,2]],[[0,2,3,1],[0,1,1,2],[2,3,3,2],[1,1,2,0]],[[0,2,2,2],[0,1,1,2],[2,3,3,2],[1,1,2,0]],[[0,2,2,1],[0,1,1,3],[2,3,3,2],[1,1,2,0]],[[0,2,2,1],[0,1,1,2],[2,4,3,2],[1,1,2,0]],[[0,2,2,1],[0,1,1,2],[2,3,4,2],[1,1,2,0]],[[0,2,2,1],[0,1,1,2],[2,3,3,3],[1,1,2,0]],[[0,2,2,1],[0,1,1,2],[2,3,3,2],[1,1,3,0]],[[0,2,3,1],[0,1,1,2],[2,3,3,2],[1,2,0,1]],[[0,2,2,2],[0,1,1,2],[2,3,3,2],[1,2,0,1]],[[0,2,2,1],[0,1,1,3],[2,3,3,2],[1,2,0,1]],[[0,2,2,1],[0,1,1,2],[2,4,3,2],[1,2,0,1]],[[0,2,2,1],[0,1,1,2],[2,3,4,2],[1,2,0,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,3],[1,2,0,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,2],[2,2,0,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,2],[1,3,0,1]],[[0,2,2,1],[0,1,1,2],[2,3,3,2],[1,2,0,2]],[[0,2,3,1],[0,1,1,2],[2,3,3,2],[1,2,1,0]],[[0,2,2,2],[0,1,1,2],[2,3,3,2],[1,2,1,0]],[[0,2,2,1],[0,1,1,3],[2,3,3,2],[1,2,1,0]],[[0,2,2,1],[0,1,1,2],[2,4,3,2],[1,2,1,0]],[[0,2,2,1],[0,1,1,2],[2,3,4,2],[1,2,1,0]],[[0,2,2,1],[0,1,1,2],[2,3,3,3],[1,2,1,0]],[[0,2,2,1],[0,1,1,2],[2,3,3,2],[2,2,1,0]],[[0,2,2,1],[0,1,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,2,3,2],[1,2,2,3],[0,1,2,0]],[[1,2,2,1],[0,2,3,3],[1,2,2,2],[0,1,2,0]],[[1,2,2,2],[0,2,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,1],[0,2,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,1],[0,2,3,2],[1,2,2,2],[0,1,1,2]],[[1,2,2,1],[0,2,3,2],[1,2,2,3],[0,1,1,1]],[[1,2,2,1],[0,2,3,3],[1,2,2,2],[0,1,1,1]],[[0,2,3,1],[0,1,2,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,2],[0,1,2,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[0,1,2,3],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[0,1,2,2],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[0,1,2,2],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[0,1,2,2],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[0,1,2,2],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[0,1,2,2],[2,2,1,2],[1,2,2,2]],[[0,2,3,1],[0,1,2,2],[2,2,2,2],[1,2,1,1]],[[0,2,2,2],[0,1,2,2],[2,2,2,2],[1,2,1,1]],[[0,2,2,1],[0,1,2,3],[2,2,2,2],[1,2,1,1]],[[0,2,2,1],[0,1,2,2],[2,2,2,3],[1,2,1,1]],[[0,2,2,1],[0,1,2,2],[2,2,2,2],[1,2,1,2]],[[0,2,3,1],[0,1,2,2],[2,2,2,2],[1,2,2,0]],[[0,2,2,2],[0,1,2,2],[2,2,2,2],[1,2,2,0]],[[0,2,2,1],[0,1,2,3],[2,2,2,2],[1,2,2,0]],[[0,2,2,1],[0,1,2,2],[2,2,2,3],[1,2,2,0]],[[0,2,3,1],[0,1,2,2],[2,2,3,0],[1,2,2,1]],[[0,2,2,2],[0,1,2,2],[2,2,3,0],[1,2,2,1]],[[0,2,2,1],[0,1,2,3],[2,2,3,0],[1,2,2,1]],[[0,2,3,1],[0,1,2,2],[2,2,3,1],[1,2,1,1]],[[0,2,2,2],[0,1,2,2],[2,2,3,1],[1,2,1,1]],[[0,2,2,1],[0,1,2,3],[2,2,3,1],[1,2,1,1]],[[0,2,3,1],[0,1,2,2],[2,2,3,1],[1,2,2,0]],[[0,2,2,2],[0,1,2,2],[2,2,3,1],[1,2,2,0]],[[0,2,2,1],[0,1,2,3],[2,2,3,1],[1,2,2,0]],[[1,2,2,2],[0,2,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,1],[0,2,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,1],[0,2,3,2],[1,2,2,2],[0,0,2,2]],[[1,2,2,1],[0,2,3,2],[1,2,2,3],[0,0,2,1]],[[1,2,2,1],[0,2,3,3],[1,2,2,2],[0,0,2,1]],[[1,2,2,2],[0,2,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,1],[0,2,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,3,1],[0,1,2,2],[2,3,0,2],[1,2,2,1]],[[0,2,2,2],[0,1,2,2],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[0,1,2,3],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[0,1,2,2],[2,4,0,2],[1,2,2,1]],[[0,2,2,1],[0,1,2,2],[2,3,0,3],[1,2,2,1]],[[0,2,2,1],[0,1,2,2],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[0,1,2,2],[2,3,0,2],[1,3,2,1]],[[0,2,2,1],[0,1,2,2],[2,3,0,2],[1,2,3,1]],[[0,2,2,1],[0,1,2,2],[2,3,0,2],[1,2,2,2]],[[0,2,3,1],[0,1,2,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,2],[0,1,2,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[0,1,2,3],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[0,1,2,2],[2,3,1,3],[1,1,2,1]],[[0,2,2,1],[0,1,2,2],[2,3,1,2],[1,1,3,1]],[[0,2,2,1],[0,1,2,2],[2,3,1,2],[1,1,2,2]],[[0,2,3,1],[0,1,2,2],[2,3,2,2],[1,1,1,1]],[[0,2,2,2],[0,1,2,2],[2,3,2,2],[1,1,1,1]],[[0,2,2,1],[0,1,2,3],[2,3,2,2],[1,1,1,1]],[[0,2,2,1],[0,1,2,2],[2,3,2,3],[1,1,1,1]],[[0,2,2,1],[0,1,2,2],[2,3,2,2],[1,1,1,2]],[[0,2,3,1],[0,1,2,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,2],[0,1,2,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[0,1,2,3],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[0,1,2,2],[2,3,2,3],[1,1,2,0]],[[0,2,3,1],[0,1,2,2],[2,3,2,2],[1,2,0,1]],[[0,2,2,2],[0,1,2,2],[2,3,2,2],[1,2,0,1]],[[0,2,2,1],[0,1,2,3],[2,3,2,2],[1,2,0,1]],[[0,2,2,1],[0,1,2,2],[2,3,2,3],[1,2,0,1]],[[0,2,2,1],[0,1,2,2],[2,3,2,2],[1,2,0,2]],[[0,2,3,1],[0,1,2,2],[2,3,2,2],[1,2,1,0]],[[0,2,2,2],[0,1,2,2],[2,3,2,2],[1,2,1,0]],[[0,2,2,1],[0,1,2,3],[2,3,2,2],[1,2,1,0]],[[0,2,2,1],[0,1,2,2],[2,3,2,3],[1,2,1,0]],[[1,2,2,1],[0,2,3,3],[1,2,1,2],[1,2,1,0]],[[1,2,2,2],[0,2,3,2],[1,2,1,2],[1,2,1,0]],[[1,2,3,1],[0,2,3,2],[1,2,1,2],[1,2,1,0]],[[0,2,3,1],[0,1,2,2],[2,3,3,0],[1,1,2,1]],[[0,2,2,2],[0,1,2,2],[2,3,3,0],[1,1,2,1]],[[0,2,2,1],[0,1,2,3],[2,3,3,0],[1,1,2,1]],[[0,2,3,1],[0,1,2,2],[2,3,3,0],[1,2,1,1]],[[0,2,2,2],[0,1,2,2],[2,3,3,0],[1,2,1,1]],[[0,2,2,1],[0,1,2,3],[2,3,3,0],[1,2,1,1]],[[0,2,3,1],[0,1,2,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,2],[0,1,2,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[0,1,2,3],[2,3,3,1],[1,1,1,1]],[[0,2,3,1],[0,1,2,2],[2,3,3,1],[1,1,2,0]],[[0,2,2,2],[0,1,2,2],[2,3,3,1],[1,1,2,0]],[[0,2,2,1],[0,1,2,3],[2,3,3,1],[1,1,2,0]],[[0,2,3,1],[0,1,2,2],[2,3,3,1],[1,2,0,1]],[[0,2,2,2],[0,1,2,2],[2,3,3,1],[1,2,0,1]],[[0,2,2,1],[0,1,2,3],[2,3,3,1],[1,2,0,1]],[[0,2,3,1],[0,1,2,2],[2,3,3,1],[1,2,1,0]],[[0,2,2,2],[0,1,2,2],[2,3,3,1],[1,2,1,0]],[[0,2,2,1],[0,1,2,3],[2,3,3,1],[1,2,1,0]],[[1,3,2,1],[0,2,3,2],[1,2,1,2],[1,2,1,0]],[[1,2,2,1],[0,2,3,3],[1,2,1,2],[1,2,0,1]],[[1,2,2,2],[0,2,3,2],[1,2,1,2],[1,2,0,1]],[[1,2,3,1],[0,2,3,2],[1,2,1,2],[1,2,0,1]],[[1,3,2,1],[0,2,3,2],[1,2,1,2],[1,2,0,1]],[[1,2,2,1],[0,2,3,3],[1,2,1,2],[1,1,2,0]],[[1,2,2,2],[0,2,3,2],[1,2,1,2],[1,1,2,0]],[[1,2,3,1],[0,2,3,2],[1,2,1,2],[1,1,2,0]],[[1,3,2,1],[0,2,3,2],[1,2,1,2],[1,1,2,0]],[[1,2,2,1],[0,2,3,3],[1,2,1,2],[1,1,1,1]],[[1,2,2,2],[0,2,3,2],[1,2,1,2],[1,1,1,1]],[[1,2,3,1],[0,2,3,2],[1,2,1,2],[1,1,1,1]],[[1,3,2,1],[0,2,3,2],[1,2,1,2],[1,1,1,1]],[[1,2,2,1],[0,2,3,2],[1,2,1,2],[0,1,2,2]],[[1,2,2,1],[0,2,3,2],[1,2,1,3],[0,1,2,1]],[[1,2,2,1],[0,2,3,3],[1,2,1,2],[0,1,2,1]],[[1,2,2,2],[0,2,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,1],[0,2,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,1],[0,2,3,3],[1,2,0,2],[1,1,2,1]],[[1,2,2,2],[0,2,3,2],[1,2,0,2],[1,1,2,1]],[[0,2,2,1],[0,1,3,0],[2,1,3,3],[1,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,1,3,2],[1,2,3,1]],[[0,2,2,1],[0,1,3,0],[2,1,3,2],[1,2,2,2]],[[0,2,2,1],[0,1,3,0],[2,2,2,3],[1,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,2,2,2],[2,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,2,2,2],[1,3,2,1]],[[0,2,2,1],[0,1,3,0],[2,2,2,2],[1,2,3,1]],[[0,2,2,1],[0,1,3,0],[2,2,2,2],[1,2,2,2]],[[0,2,3,1],[0,1,3,0],[2,2,3,1],[1,2,2,1]],[[0,2,2,2],[0,1,3,0],[2,2,3,1],[1,2,2,1]],[[0,2,2,1],[0,1,4,0],[2,2,3,1],[1,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,2,4,1],[1,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,2,3,1],[2,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,2,3,1],[1,3,2,1]],[[0,2,2,1],[0,1,3,0],[2,2,3,1],[1,2,3,1]],[[0,2,2,1],[0,1,3,0],[2,2,3,1],[1,2,2,2]],[[0,2,3,1],[0,1,3,0],[2,2,3,2],[1,2,1,1]],[[0,2,2,2],[0,1,3,0],[2,2,3,2],[1,2,1,1]],[[0,2,2,1],[0,1,4,0],[2,2,3,2],[1,2,1,1]],[[0,2,2,1],[0,1,3,0],[2,2,4,2],[1,2,1,1]],[[0,2,2,1],[0,1,3,0],[2,2,3,3],[1,2,1,1]],[[0,2,2,1],[0,1,3,0],[2,2,3,2],[1,2,1,2]],[[0,2,3,1],[0,1,3,0],[2,2,3,2],[1,2,2,0]],[[0,2,2,2],[0,1,3,0],[2,2,3,2],[1,2,2,0]],[[0,2,2,1],[0,1,4,0],[2,2,3,2],[1,2,2,0]],[[0,2,2,1],[0,1,3,0],[2,2,4,2],[1,2,2,0]],[[0,2,2,1],[0,1,3,0],[2,2,3,3],[1,2,2,0]],[[0,2,2,1],[0,1,3,0],[2,2,3,2],[2,2,2,0]],[[0,2,2,1],[0,1,3,0],[2,2,3,2],[1,3,2,0]],[[0,2,2,1],[0,1,3,0],[2,2,3,2],[1,2,3,0]],[[0,2,2,1],[0,1,3,0],[2,4,1,2],[1,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,1,3],[1,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,1,2],[2,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,1,2],[1,3,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,1,2],[1,2,3,1]],[[0,2,2,1],[0,1,3,0],[2,3,1,2],[1,2,2,2]],[[0,2,2,1],[0,1,3,0],[2,4,2,1],[1,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,2,1],[2,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,2,1],[1,3,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,2,1],[1,2,3,1]],[[0,2,2,1],[0,1,3,0],[2,3,2,1],[1,2,2,2]],[[0,2,2,1],[0,1,3,0],[2,3,2,3],[1,1,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,2,2],[1,1,3,1]],[[0,2,2,1],[0,1,3,0],[2,3,2,2],[1,1,2,2]],[[0,2,2,1],[0,1,3,0],[2,4,2,2],[1,2,2,0]],[[0,2,2,1],[0,1,3,0],[2,3,2,2],[2,2,2,0]],[[0,2,2,1],[0,1,3,0],[2,3,2,2],[1,3,2,0]],[[0,2,2,1],[0,1,3,0],[2,3,2,2],[1,2,3,0]],[[0,2,2,1],[0,1,3,0],[2,4,3,0],[1,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,0],[2,2,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,0],[1,3,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,0],[1,2,3,1]],[[0,2,3,1],[0,1,3,0],[2,3,3,1],[1,1,2,1]],[[0,2,2,2],[0,1,3,0],[2,3,3,1],[1,1,2,1]],[[0,2,2,1],[0,1,4,0],[2,3,3,1],[1,1,2,1]],[[0,2,2,1],[0,1,3,0],[2,4,3,1],[1,1,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,4,1],[1,1,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,1],[1,1,3,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,1],[1,1,2,2]],[[0,2,3,1],[0,1,3,0],[2,3,3,1],[1,2,1,1]],[[0,2,2,2],[0,1,3,0],[2,3,3,1],[1,2,1,1]],[[0,2,2,1],[0,1,4,0],[2,3,3,1],[1,2,1,1]],[[0,2,2,1],[0,1,3,0],[2,4,3,1],[1,2,1,1]],[[0,2,2,1],[0,1,3,0],[2,3,4,1],[1,2,1,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,1],[2,2,1,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,1],[1,3,1,1]],[[0,2,2,1],[0,1,3,0],[2,3,4,2],[1,0,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,3],[1,0,2,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,2],[1,0,2,2]],[[0,2,3,1],[0,1,3,0],[2,3,3,2],[1,1,1,1]],[[0,2,2,2],[0,1,3,0],[2,3,3,2],[1,1,1,1]],[[0,2,2,1],[0,1,4,0],[2,3,3,2],[1,1,1,1]],[[0,2,2,1],[0,1,3,0],[2,4,3,2],[1,1,1,1]],[[0,2,2,1],[0,1,3,0],[2,3,4,2],[1,1,1,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,3],[1,1,1,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,2],[1,1,1,2]],[[0,2,3,1],[0,1,3,0],[2,3,3,2],[1,1,2,0]],[[0,2,2,2],[0,1,3,0],[2,3,3,2],[1,1,2,0]],[[0,2,2,1],[0,1,4,0],[2,3,3,2],[1,1,2,0]],[[0,2,2,1],[0,1,3,0],[2,4,3,2],[1,1,2,0]],[[0,2,2,1],[0,1,3,0],[2,3,4,2],[1,1,2,0]],[[0,2,2,1],[0,1,3,0],[2,3,3,3],[1,1,2,0]],[[0,2,2,1],[0,1,3,0],[2,3,3,2],[1,1,3,0]],[[0,2,3,1],[0,1,3,0],[2,3,3,2],[1,2,0,1]],[[0,2,2,2],[0,1,3,0],[2,3,3,2],[1,2,0,1]],[[0,2,2,1],[0,1,4,0],[2,3,3,2],[1,2,0,1]],[[0,2,2,1],[0,1,3,0],[2,4,3,2],[1,2,0,1]],[[0,2,2,1],[0,1,3,0],[2,3,4,2],[1,2,0,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,3],[1,2,0,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,2],[2,2,0,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,2],[1,3,0,1]],[[0,2,2,1],[0,1,3,0],[2,3,3,2],[1,2,0,2]],[[0,2,3,1],[0,1,3,0],[2,3,3,2],[1,2,1,0]],[[0,2,2,2],[0,1,3,0],[2,3,3,2],[1,2,1,0]],[[0,2,2,1],[0,1,4,0],[2,3,3,2],[1,2,1,0]],[[0,2,2,1],[0,1,3,0],[2,4,3,2],[1,2,1,0]],[[0,2,2,1],[0,1,3,0],[2,3,4,2],[1,2,1,0]],[[0,2,2,1],[0,1,3,0],[2,3,3,3],[1,2,1,0]],[[0,2,2,1],[0,1,3,0],[2,3,3,2],[2,2,1,0]],[[0,2,2,1],[0,1,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,3,1],[0,2,3,2],[1,2,0,2],[1,1,2,1]],[[1,3,2,1],[0,2,3,2],[1,2,0,2],[1,1,2,1]],[[0,2,3,1],[0,1,3,1],[2,2,1,2],[1,2,2,1]],[[0,2,2,2],[0,1,3,1],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[0,1,4,1],[2,2,1,2],[1,2,2,1]],[[0,2,3,1],[0,1,3,1],[2,2,2,2],[1,2,1,1]],[[0,2,2,2],[0,1,3,1],[2,2,2,2],[1,2,1,1]],[[0,2,2,1],[0,1,4,1],[2,2,2,2],[1,2,1,1]],[[0,2,3,1],[0,1,3,1],[2,2,2,2],[1,2,2,0]],[[0,2,2,2],[0,1,3,1],[2,2,2,2],[1,2,2,0]],[[0,2,2,1],[0,1,4,1],[2,2,2,2],[1,2,2,0]],[[0,2,3,1],[0,1,3,1],[2,2,3,0],[1,2,2,1]],[[0,2,2,2],[0,1,3,1],[2,2,3,0],[1,2,2,1]],[[0,2,2,1],[0,1,4,1],[2,2,3,0],[1,2,2,1]],[[0,2,2,1],[0,1,3,1],[2,2,4,0],[1,2,2,1]],[[0,2,2,1],[0,1,3,1],[2,2,3,0],[2,2,2,1]],[[0,2,2,1],[0,1,3,1],[2,2,3,0],[1,3,2,1]],[[0,2,2,1],[0,1,3,1],[2,2,3,0],[1,2,3,1]],[[0,2,2,1],[0,1,3,1],[2,2,3,0],[1,2,2,2]],[[0,2,3,1],[0,1,3,1],[2,2,3,1],[1,2,1,1]],[[0,2,2,2],[0,1,3,1],[2,2,3,1],[1,2,1,1]],[[0,2,2,1],[0,1,4,1],[2,2,3,1],[1,2,1,1]],[[0,2,2,1],[0,1,3,1],[2,2,4,1],[1,2,1,1]],[[0,2,3,1],[0,1,3,1],[2,2,3,1],[1,2,2,0]],[[0,2,2,2],[0,1,3,1],[2,2,3,1],[1,2,2,0]],[[0,2,2,1],[0,1,4,1],[2,2,3,1],[1,2,2,0]],[[0,2,2,1],[0,1,3,1],[2,2,4,1],[1,2,2,0]],[[0,2,2,1],[0,1,3,1],[2,2,3,1],[2,2,2,0]],[[0,2,2,1],[0,1,3,1],[2,2,3,1],[1,3,2,0]],[[0,2,2,1],[0,1,3,1],[2,2,3,1],[1,2,3,0]],[[0,2,3,1],[0,1,3,1],[2,3,0,2],[1,2,2,1]],[[0,2,2,2],[0,1,3,1],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[0,1,4,1],[2,3,0,2],[1,2,2,1]],[[0,2,3,1],[0,1,3,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,2],[0,1,3,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[0,1,4,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[0,1,3,1],[2,4,2,0],[1,2,2,1]],[[0,2,2,1],[0,1,3,1],[2,3,2,0],[2,2,2,1]],[[0,2,2,1],[0,1,3,1],[2,3,2,0],[1,3,2,1]],[[0,2,2,1],[0,1,3,1],[2,3,2,0],[1,2,3,1]],[[0,2,2,1],[0,1,3,1],[2,3,2,0],[1,2,2,2]],[[0,2,2,1],[0,1,3,1],[2,4,2,1],[1,2,2,0]],[[0,2,2,1],[0,1,3,1],[2,3,2,1],[2,2,2,0]],[[0,2,2,1],[0,1,3,1],[2,3,2,1],[1,3,2,0]],[[0,2,2,1],[0,1,3,1],[2,3,2,1],[1,2,3,0]],[[0,2,3,1],[0,1,3,1],[2,3,2,2],[1,1,1,1]],[[0,2,2,2],[0,1,3,1],[2,3,2,2],[1,1,1,1]],[[0,2,2,1],[0,1,4,1],[2,3,2,2],[1,1,1,1]],[[0,2,3,1],[0,1,3,1],[2,3,2,2],[1,1,2,0]],[[0,2,2,2],[0,1,3,1],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[0,1,4,1],[2,3,2,2],[1,1,2,0]],[[0,2,3,1],[0,1,3,1],[2,3,2,2],[1,2,0,1]],[[0,2,2,2],[0,1,3,1],[2,3,2,2],[1,2,0,1]],[[0,2,2,1],[0,1,4,1],[2,3,2,2],[1,2,0,1]],[[0,2,3,1],[0,1,3,1],[2,3,2,2],[1,2,1,0]],[[0,2,2,2],[0,1,3,1],[2,3,2,2],[1,2,1,0]],[[0,2,2,1],[0,1,4,1],[2,3,2,2],[1,2,1,0]],[[1,2,2,1],[0,2,3,3],[1,1,3,2],[1,0,2,0]],[[1,2,2,2],[0,2,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,3,1],[0,2,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,2,1],[0,2,3,2],[1,1,3,3],[1,0,1,1]],[[1,2,2,1],[0,2,3,3],[1,1,3,2],[1,0,1,1]],[[1,2,2,2],[0,2,3,2],[1,1,3,2],[1,0,1,1]],[[0,2,3,1],[0,1,3,1],[2,3,3,0],[1,1,2,1]],[[0,2,2,2],[0,1,3,1],[2,3,3,0],[1,1,2,1]],[[0,2,2,1],[0,1,4,1],[2,3,3,0],[1,1,2,1]],[[0,2,2,1],[0,1,3,1],[2,4,3,0],[1,1,2,1]],[[0,2,2,1],[0,1,3,1],[2,3,4,0],[1,1,2,1]],[[0,2,2,1],[0,1,3,1],[2,3,3,0],[1,1,3,1]],[[0,2,2,1],[0,1,3,1],[2,3,3,0],[1,1,2,2]],[[0,2,3,1],[0,1,3,1],[2,3,3,0],[1,2,1,1]],[[0,2,2,2],[0,1,3,1],[2,3,3,0],[1,2,1,1]],[[0,2,2,1],[0,1,4,1],[2,3,3,0],[1,2,1,1]],[[0,2,2,1],[0,1,3,1],[2,4,3,0],[1,2,1,1]],[[0,2,2,1],[0,1,3,1],[2,3,4,0],[1,2,1,1]],[[0,2,2,1],[0,1,3,1],[2,3,3,0],[2,2,1,1]],[[0,2,2,1],[0,1,3,1],[2,3,3,0],[1,3,1,1]],[[0,2,3,1],[0,1,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,2],[0,1,3,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[0,1,4,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[0,1,3,1],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[0,1,3,1],[2,3,4,1],[1,1,1,1]],[[0,2,3,1],[0,1,3,1],[2,3,3,1],[1,1,2,0]],[[0,2,2,2],[0,1,3,1],[2,3,3,1],[1,1,2,0]],[[0,2,2,1],[0,1,4,1],[2,3,3,1],[1,1,2,0]],[[0,2,2,1],[0,1,3,1],[2,4,3,1],[1,1,2,0]],[[0,2,2,1],[0,1,3,1],[2,3,4,1],[1,1,2,0]],[[0,2,2,1],[0,1,3,1],[2,3,3,1],[1,1,3,0]],[[0,2,3,1],[0,1,3,1],[2,3,3,1],[1,2,0,1]],[[0,2,2,2],[0,1,3,1],[2,3,3,1],[1,2,0,1]],[[0,2,2,1],[0,1,4,1],[2,3,3,1],[1,2,0,1]],[[0,2,2,1],[0,1,3,1],[2,4,3,1],[1,2,0,1]],[[0,2,2,1],[0,1,3,1],[2,3,4,1],[1,2,0,1]],[[0,2,2,1],[0,1,3,1],[2,3,3,1],[2,2,0,1]],[[0,2,2,1],[0,1,3,1],[2,3,3,1],[1,3,0,1]],[[0,2,3,1],[0,1,3,1],[2,3,3,1],[1,2,1,0]],[[0,2,2,2],[0,1,3,1],[2,3,3,1],[1,2,1,0]],[[0,2,2,1],[0,1,4,1],[2,3,3,1],[1,2,1,0]],[[0,2,2,1],[0,1,3,1],[2,4,3,1],[1,2,1,0]],[[0,2,2,1],[0,1,3,1],[2,3,4,1],[1,2,1,0]],[[0,2,2,1],[0,1,3,1],[2,3,3,1],[2,2,1,0]],[[0,2,2,1],[0,1,3,1],[2,3,3,1],[1,3,1,0]],[[1,2,3,1],[0,2,3,2],[1,1,3,2],[1,0,1,1]],[[1,2,2,1],[0,2,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,1],[0,2,3,3],[1,1,3,2],[0,1,2,0]],[[1,2,2,2],[0,2,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,3,1],[0,2,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,2,1],[0,2,3,2],[1,1,3,2],[0,1,1,2]],[[1,2,2,1],[0,2,3,2],[1,1,3,3],[0,1,1,1]],[[1,2,2,1],[0,2,3,3],[1,1,3,2],[0,1,1,1]],[[1,2,2,2],[0,2,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,3,1],[0,2,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,2,1],[0,2,3,2],[1,1,3,2],[0,0,2,2]],[[1,2,2,1],[0,2,3,2],[1,1,3,3],[0,0,2,1]],[[1,2,2,1],[0,2,3,3],[1,1,3,2],[0,0,2,1]],[[1,2,2,2],[0,2,3,2],[1,1,3,2],[0,0,2,1]],[[1,2,3,1],[0,2,3,2],[1,1,3,2],[0,0,2,1]],[[1,2,2,1],[0,2,3,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,2],[0,2,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,1],[0,2,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,2],[0,1,3,2],[1,0,3,2],[1,2,2,1]],[[0,2,2,1],[0,1,3,3],[1,0,3,2],[1,2,2,1]],[[0,2,2,1],[0,1,3,2],[1,0,3,3],[1,2,2,1]],[[0,2,2,1],[0,1,3,2],[1,0,3,2],[1,2,3,1]],[[0,2,2,1],[0,1,3,2],[1,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,2,3,3],[1,1,3,1],[0,2,1,1]],[[1,2,2,2],[0,2,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,1],[0,2,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,1],[0,2,4,2],[1,1,3,0],[1,2,2,0]],[[1,2,2,2],[0,2,3,2],[1,1,3,0],[1,2,2,0]],[[1,2,3,1],[0,2,3,2],[1,1,3,0],[1,2,2,0]],[[1,3,2,1],[0,2,3,2],[1,1,3,0],[1,2,2,0]],[[2,2,2,1],[0,2,3,2],[1,1,3,0],[1,2,2,0]],[[1,2,2,1],[0,2,4,2],[1,1,3,0],[1,2,1,1]],[[1,2,2,2],[0,2,3,2],[1,1,3,0],[1,2,1,1]],[[1,2,3,1],[0,2,3,2],[1,1,3,0],[1,2,1,1]],[[1,3,2,1],[0,2,3,2],[1,1,3,0],[1,2,1,1]],[[1,2,2,1],[0,2,3,3],[1,1,3,0],[0,2,2,1]],[[1,2,2,2],[0,2,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,1],[0,2,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,2],[0,1,3,2],[2,0,3,2],[0,2,2,1]],[[0,2,2,1],[0,1,3,3],[2,0,3,2],[0,2,2,1]],[[0,2,2,1],[0,1,3,2],[2,0,3,3],[0,2,2,1]],[[0,2,2,1],[0,1,3,2],[2,0,3,2],[0,2,3,1]],[[0,2,2,1],[0,1,3,2],[2,0,3,2],[0,2,2,2]],[[1,2,2,1],[0,2,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,1],[0,2,3,3],[1,1,2,2],[0,2,2,0]],[[1,2,2,2],[0,2,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,1],[0,2,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,1],[0,2,3,2],[1,1,2,2],[0,2,1,2]],[[1,2,2,1],[0,2,3,2],[1,1,2,3],[0,2,1,1]],[[1,2,2,1],[0,2,3,3],[1,1,2,2],[0,2,1,1]],[[1,2,2,2],[0,2,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,1],[0,2,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,3,1],[0,1,3,2],[2,2,3,0],[1,2,2,0]],[[0,2,2,2],[0,1,3,2],[2,2,3,0],[1,2,2,0]],[[0,2,2,1],[0,1,4,2],[2,2,3,0],[1,2,2,0]],[[1,2,2,1],[0,2,3,3],[1,1,1,2],[1,2,2,0]],[[1,2,2,2],[0,2,3,2],[1,1,1,2],[1,2,2,0]],[[1,2,3,1],[0,2,3,2],[1,1,1,2],[1,2,2,0]],[[1,3,2,1],[0,2,3,2],[1,1,1,2],[1,2,2,0]],[[1,2,2,1],[0,2,3,3],[1,1,1,2],[1,2,1,1]],[[1,2,2,2],[0,2,3,2],[1,1,1,2],[1,2,1,1]],[[1,2,3,1],[0,2,3,2],[1,1,1,2],[1,2,1,1]],[[1,3,2,1],[0,2,3,2],[1,1,1,2],[1,2,1,1]],[[1,2,2,1],[0,2,3,2],[1,1,1,2],[0,2,2,2]],[[1,2,2,1],[0,2,3,2],[1,1,1,3],[0,2,2,1]],[[1,2,2,1],[0,2,3,3],[1,1,1,2],[0,2,2,1]],[[1,2,2,2],[0,2,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,1],[0,2,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,1],[0,2,3,3],[1,1,0,2],[1,2,2,1]],[[1,2,2,2],[0,2,3,2],[1,1,0,2],[1,2,2,1]],[[1,2,3,1],[0,2,3,2],[1,1,0,2],[1,2,2,1]],[[1,3,2,1],[0,2,3,2],[1,1,0,2],[1,2,2,1]],[[1,2,2,1],[0,2,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,1],[0,2,3,3],[1,0,3,2],[0,2,2,0]],[[1,2,2,2],[0,2,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,3,1],[0,2,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,2,1],[0,2,3,2],[1,0,3,2],[0,2,1,2]],[[1,2,2,1],[0,2,3,2],[1,0,3,3],[0,2,1,1]],[[1,2,2,1],[0,2,3,3],[1,0,3,2],[0,2,1,1]],[[1,2,2,2],[0,2,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,3,1],[0,2,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,2,1],[0,2,3,2],[1,0,3,2],[0,1,2,2]],[[1,2,2,1],[0,2,3,2],[1,0,3,3],[0,1,2,1]],[[1,2,2,1],[0,2,3,3],[1,0,3,2],[0,1,2,1]],[[1,2,2,2],[0,2,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,3,1],[0,2,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,2,1],[0,2,3,2],[1,0,2,2],[0,2,2,2]],[[1,2,2,1],[0,2,3,2],[1,0,2,3],[0,2,2,1]],[[1,2,2,1],[0,2,3,3],[1,0,2,2],[0,2,2,1]],[[1,2,2,2],[0,2,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,3,1],[0,2,3,2],[1,0,2,2],[0,2,2,1]],[[0,2,3,1],[0,1,3,2],[2,3,3,0],[1,1,2,0]],[[0,2,2,2],[0,1,3,2],[2,3,3,0],[1,1,2,0]],[[0,2,2,1],[0,1,4,2],[2,3,3,0],[1,1,2,0]],[[0,2,3,1],[0,1,3,2],[2,3,3,0],[1,2,0,1]],[[0,2,2,2],[0,1,3,2],[2,3,3,0],[1,2,0,1]],[[0,2,2,1],[0,1,4,2],[2,3,3,0],[1,2,0,1]],[[0,2,3,1],[0,1,3,2],[2,3,3,0],[1,2,1,0]],[[0,2,2,2],[0,1,3,2],[2,3,3,0],[1,2,1,0]],[[0,2,2,1],[0,1,4,2],[2,3,3,0],[1,2,1,0]],[[1,2,2,1],[0,2,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,1],[0,2,3,3],[0,3,3,2],[0,1,0,1]],[[1,2,2,2],[0,2,3,2],[0,3,3,2],[0,1,0,1]],[[1,2,3,1],[0,2,3,2],[0,3,3,2],[0,1,0,1]],[[1,2,2,1],[0,2,3,3],[0,3,3,1],[0,2,1,0]],[[1,2,2,2],[0,2,3,2],[0,3,3,1],[0,2,1,0]],[[1,2,3,1],[0,2,3,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,2,3,3],[0,3,3,1],[0,2,0,1]],[[1,2,2,2],[0,2,3,2],[0,3,3,1],[0,2,0,1]],[[1,2,3,1],[0,2,3,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,1],[0,2,3,3],[0,3,3,1],[0,1,2,0]],[[1,2,2,2],[0,2,3,2],[0,3,3,1],[0,1,2,0]],[[1,2,3,1],[0,2,3,2],[0,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,2,3,3],[0,3,3,1],[0,1,1,1]],[[1,2,2,2],[0,2,3,2],[0,3,3,1],[0,1,1,1]],[[1,2,3,1],[0,2,3,2],[0,3,3,1],[0,1,1,1]],[[1,2,2,1],[0,2,3,3],[0,3,3,1],[0,0,2,1]],[[1,2,2,2],[0,2,3,2],[0,3,3,1],[0,0,2,1]],[[1,2,3,1],[0,2,3,2],[0,3,3,1],[0,0,2,1]],[[1,2,2,1],[0,2,3,3],[0,3,3,0],[0,1,2,1]],[[1,2,2,2],[0,2,3,2],[0,3,3,0],[0,1,2,1]],[[1,2,3,1],[0,2,3,2],[0,3,3,0],[0,1,2,1]],[[1,2,2,1],[0,2,3,3],[0,3,2,2],[0,2,1,0]],[[1,2,2,2],[0,2,3,2],[0,3,2,2],[0,2,1,0]],[[1,2,3,1],[0,2,3,2],[0,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,2,3,2],[0,3,2,3],[0,2,0,1]],[[1,2,2,1],[0,2,3,3],[0,3,2,2],[0,2,0,1]],[[1,2,2,2],[0,2,3,2],[0,3,2,2],[0,2,0,1]],[[1,2,3,1],[0,2,3,2],[0,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,2,3,2],[0,3,2,3],[0,1,2,0]],[[1,2,2,1],[0,2,3,3],[0,3,2,2],[0,1,2,0]],[[1,2,2,2],[0,2,3,2],[0,3,2,2],[0,1,2,0]],[[1,2,3,1],[0,2,3,2],[0,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,2,3,2],[0,3,2,2],[0,1,1,2]],[[1,2,2,1],[0,2,3,2],[0,3,2,3],[0,1,1,1]],[[1,2,2,1],[0,2,3,3],[0,3,2,2],[0,1,1,1]],[[1,2,2,2],[0,2,3,2],[0,3,2,2],[0,1,1,1]],[[1,2,3,1],[0,2,3,2],[0,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,2,3,2],[0,3,2,2],[0,0,2,2]],[[1,2,2,1],[0,2,3,2],[0,3,2,3],[0,0,2,1]],[[1,2,2,1],[0,2,3,3],[0,3,2,2],[0,0,2,1]],[[1,2,2,2],[0,2,3,2],[0,3,2,2],[0,0,2,1]],[[1,2,3,1],[0,2,3,2],[0,3,2,2],[0,0,2,1]],[[1,2,2,1],[0,2,3,2],[0,3,1,2],[0,1,2,2]],[[1,2,2,1],[0,2,3,2],[0,3,1,3],[0,1,2,1]],[[1,2,2,1],[0,2,3,3],[0,3,1,2],[0,1,2,1]],[[1,2,2,2],[0,2,3,2],[0,3,1,2],[0,1,2,1]],[[1,2,3,1],[0,2,3,2],[0,3,1,2],[0,1,2,1]],[[0,2,3,1],[0,2,0,2],[2,2,2,2],[1,2,2,1]],[[0,2,2,2],[0,2,0,2],[2,2,2,2],[1,2,2,1]],[[0,2,2,1],[0,2,0,3],[2,2,2,2],[1,2,2,1]],[[0,2,2,1],[0,2,0,2],[2,2,2,3],[1,2,2,1]],[[0,2,2,1],[0,2,0,2],[2,2,2,2],[2,2,2,1]],[[0,2,2,1],[0,2,0,2],[2,2,2,2],[1,3,2,1]],[[0,2,2,1],[0,2,0,2],[2,2,2,2],[1,2,3,1]],[[0,2,2,1],[0,2,0,2],[2,2,2,2],[1,2,2,2]],[[0,2,2,1],[0,2,0,2],[2,2,4,1],[1,2,2,1]],[[0,2,2,1],[0,2,0,2],[2,2,3,1],[2,2,2,1]],[[0,2,2,1],[0,2,0,2],[2,2,3,1],[1,3,2,1]],[[0,2,2,1],[0,2,0,2],[2,2,3,1],[1,2,3,1]],[[0,2,2,1],[0,2,0,2],[2,2,3,1],[1,2,2,2]],[[0,2,3,1],[0,2,0,2],[2,2,3,2],[1,2,1,1]],[[0,2,2,2],[0,2,0,2],[2,2,3,2],[1,2,1,1]],[[0,2,2,1],[0,2,0,3],[2,2,3,2],[1,2,1,1]],[[0,2,2,1],[0,2,0,2],[2,2,4,2],[1,2,1,1]],[[0,2,2,1],[0,2,0,2],[2,2,3,3],[1,2,1,1]],[[0,2,2,1],[0,2,0,2],[2,2,3,2],[1,2,1,2]],[[0,2,3,1],[0,2,0,2],[2,2,3,2],[1,2,2,0]],[[0,2,2,2],[0,2,0,2],[2,2,3,2],[1,2,2,0]],[[0,2,2,1],[0,2,0,3],[2,2,3,2],[1,2,2,0]],[[0,2,2,1],[0,2,0,2],[2,2,4,2],[1,2,2,0]],[[0,2,2,1],[0,2,0,2],[2,2,3,3],[1,2,2,0]],[[0,2,2,1],[0,2,0,2],[2,2,3,2],[2,2,2,0]],[[0,2,2,1],[0,2,0,2],[2,2,3,2],[1,3,2,0]],[[0,2,2,1],[0,2,0,2],[2,2,3,2],[1,2,3,0]],[[0,2,3,1],[0,2,0,2],[2,3,1,2],[1,2,2,1]],[[0,2,2,2],[0,2,0,2],[2,3,1,2],[1,2,2,1]],[[0,2,2,1],[0,2,0,3],[2,3,1,2],[1,2,2,1]],[[0,2,2,1],[0,2,0,2],[2,4,1,2],[1,2,2,1]],[[0,2,2,1],[0,2,0,2],[2,3,1,3],[1,2,2,1]],[[0,2,2,1],[0,2,0,2],[2,3,1,2],[2,2,2,1]],[[0,2,2,1],[0,2,0,2],[2,3,1,2],[1,3,2,1]],[[0,2,2,1],[0,2,0,2],[2,3,1,2],[1,2,3,1]],[[0,2,2,1],[0,2,0,2],[2,3,1,2],[1,2,2,2]],[[0,2,2,1],[0,2,0,2],[2,4,2,1],[1,2,2,1]],[[0,2,2,1],[0,2,0,2],[2,3,2,1],[2,2,2,1]],[[0,2,2,1],[0,2,0,2],[2,3,2,1],[1,3,2,1]],[[0,2,2,1],[0,2,0,2],[2,3,2,1],[1,2,3,1]],[[0,2,2,1],[0,2,0,2],[2,3,2,1],[1,2,2,2]],[[0,2,3,1],[0,2,0,2],[2,3,2,2],[1,1,2,1]],[[0,2,2,2],[0,2,0,2],[2,3,2,2],[1,1,2,1]],[[0,2,2,1],[0,2,0,3],[2,3,2,2],[1,1,2,1]],[[0,2,2,1],[0,2,0,2],[2,3,2,3],[1,1,2,1]],[[0,2,2,1],[0,2,0,2],[2,3,2,2],[1,1,3,1]],[[0,2,2,1],[0,2,0,2],[2,3,2,2],[1,1,2,2]],[[0,2,2,1],[0,2,0,2],[2,4,2,2],[1,2,2,0]],[[0,2,2,1],[0,2,0,2],[2,3,2,2],[2,2,2,0]],[[0,2,2,1],[0,2,0,2],[2,3,2,2],[1,3,2,0]],[[0,2,2,1],[0,2,0,2],[2,3,2,2],[1,2,3,0]],[[0,2,2,1],[0,2,0,2],[2,4,3,1],[1,1,2,1]],[[0,2,2,1],[0,2,0,2],[2,3,4,1],[1,1,2,1]],[[0,2,2,1],[0,2,0,2],[2,3,3,1],[1,1,3,1]],[[0,2,2,1],[0,2,0,2],[2,3,3,1],[1,1,2,2]],[[0,2,2,1],[0,2,0,2],[2,4,3,1],[1,2,1,1]],[[0,2,2,1],[0,2,0,2],[2,3,4,1],[1,2,1,1]],[[0,2,2,1],[0,2,0,2],[2,3,3,1],[2,2,1,1]],[[0,2,2,1],[0,2,0,2],[2,3,3,1],[1,3,1,1]],[[0,2,3,1],[0,2,0,2],[2,3,3,2],[1,1,1,1]],[[0,2,2,2],[0,2,0,2],[2,3,3,2],[1,1,1,1]],[[0,2,2,1],[0,2,0,3],[2,3,3,2],[1,1,1,1]],[[0,2,2,1],[0,2,0,2],[2,4,3,2],[1,1,1,1]],[[0,2,2,1],[0,2,0,2],[2,3,4,2],[1,1,1,1]],[[0,2,2,1],[0,2,0,2],[2,3,3,3],[1,1,1,1]],[[0,2,2,1],[0,2,0,2],[2,3,3,2],[1,1,1,2]],[[0,2,3,1],[0,2,0,2],[2,3,3,2],[1,1,2,0]],[[0,2,2,2],[0,2,0,2],[2,3,3,2],[1,1,2,0]],[[0,2,2,1],[0,2,0,3],[2,3,3,2],[1,1,2,0]],[[0,2,2,1],[0,2,0,2],[2,4,3,2],[1,1,2,0]],[[0,2,2,1],[0,2,0,2],[2,3,4,2],[1,1,2,0]],[[0,2,2,1],[0,2,0,2],[2,3,3,3],[1,1,2,0]],[[0,2,2,1],[0,2,0,2],[2,3,3,2],[1,1,3,0]],[[0,2,3,1],[0,2,0,2],[2,3,3,2],[1,2,0,1]],[[0,2,2,2],[0,2,0,2],[2,3,3,2],[1,2,0,1]],[[0,2,2,1],[0,2,0,3],[2,3,3,2],[1,2,0,1]],[[0,2,2,1],[0,2,0,2],[2,4,3,2],[1,2,0,1]],[[0,2,2,1],[0,2,0,2],[2,3,4,2],[1,2,0,1]],[[0,2,2,1],[0,2,0,2],[2,3,3,3],[1,2,0,1]],[[0,2,2,1],[0,2,0,2],[2,3,3,2],[2,2,0,1]],[[0,2,2,1],[0,2,0,2],[2,3,3,2],[1,3,0,1]],[[0,2,2,1],[0,2,0,2],[2,3,3,2],[1,2,0,2]],[[0,2,3,1],[0,2,0,2],[2,3,3,2],[1,2,1,0]],[[0,2,2,2],[0,2,0,2],[2,3,3,2],[1,2,1,0]],[[0,2,2,1],[0,2,0,3],[2,3,3,2],[1,2,1,0]],[[0,2,2,1],[0,2,0,2],[2,4,3,2],[1,2,1,0]],[[0,2,2,1],[0,2,0,2],[2,3,4,2],[1,2,1,0]],[[0,2,2,1],[0,2,0,2],[2,3,3,3],[1,2,1,0]],[[0,2,2,1],[0,2,0,2],[2,3,3,2],[2,2,1,0]],[[0,2,2,1],[0,2,0,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,2,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,1],[0,2,3,3],[0,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,2,3,2],[0,2,3,2],[1,1,0,1]],[[1,2,3,1],[0,2,3,2],[0,2,3,2],[1,1,0,1]],[[0,2,3,1],[0,2,1,2],[2,3,0,2],[1,2,2,1]],[[0,2,2,2],[0,2,1,2],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[0,2,1,3],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[0,2,1,2],[2,4,0,2],[1,2,2,1]],[[0,2,2,1],[0,2,1,2],[2,3,0,3],[1,2,2,1]],[[0,2,2,1],[0,2,1,2],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[0,2,1,2],[2,3,0,2],[1,3,2,1]],[[0,2,2,1],[0,2,1,2],[2,3,0,2],[1,2,3,1]],[[0,2,2,1],[0,2,1,2],[2,3,0,2],[1,2,2,2]],[[1,2,2,1],[0,2,3,2],[0,2,3,3],[0,1,2,0]],[[1,2,2,1],[0,2,3,3],[0,2,3,2],[0,1,2,0]],[[1,2,2,2],[0,2,3,2],[0,2,3,2],[0,1,2,0]],[[1,2,3,1],[0,2,3,2],[0,2,3,2],[0,1,2,0]],[[1,2,2,1],[0,2,3,2],[0,2,3,2],[0,1,1,2]],[[1,2,2,1],[0,2,3,2],[0,2,3,3],[0,1,1,1]],[[1,2,2,1],[0,2,3,3],[0,2,3,2],[0,1,1,1]],[[1,2,2,2],[0,2,3,2],[0,2,3,2],[0,1,1,1]],[[1,2,3,1],[0,2,3,2],[0,2,3,2],[0,1,1,1]],[[1,2,2,1],[0,2,3,2],[0,2,3,2],[0,0,2,2]],[[1,2,2,1],[0,2,3,2],[0,2,3,3],[0,0,2,1]],[[1,2,2,1],[0,2,3,3],[0,2,3,2],[0,0,2,1]],[[1,2,2,2],[0,2,3,2],[0,2,3,2],[0,0,2,1]],[[1,2,3,1],[0,2,3,2],[0,2,3,2],[0,0,2,1]],[[1,2,2,1],[0,2,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,2],[0,2,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,1],[0,2,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,2,3,3],[0,2,3,1],[1,2,0,1]],[[1,2,2,2],[0,2,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,1],[0,2,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,1],[0,2,3,3],[0,2,3,1],[1,1,2,0]],[[1,2,2,2],[0,2,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,1],[0,2,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,1],[0,2,3,3],[0,2,3,1],[1,1,1,1]],[[1,2,2,2],[0,2,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,1],[0,2,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,2,3,3],[0,2,3,1],[1,0,2,1]],[[1,2,2,2],[0,2,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,3,1],[0,2,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,2,1],[0,2,3,3],[0,2,3,0],[1,1,2,1]],[[1,2,2,2],[0,2,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,1],[0,2,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,1],[0,2,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,2],[0,2,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,1],[0,2,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,2,3,2],[0,2,2,3],[1,2,0,1]],[[1,2,2,1],[0,2,3,3],[0,2,2,2],[1,2,0,1]],[[1,2,2,2],[0,2,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,1],[0,2,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,1],[0,2,3,2],[0,2,2,3],[1,1,2,0]],[[1,2,2,1],[0,2,3,3],[0,2,2,2],[1,1,2,0]],[[1,2,2,2],[0,2,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,1],[0,2,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,1],[0,2,3,2],[0,2,2,2],[1,1,1,2]],[[1,2,2,1],[0,2,3,2],[0,2,2,3],[1,1,1,1]],[[1,2,2,1],[0,2,3,3],[0,2,2,2],[1,1,1,1]],[[1,2,2,2],[0,2,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,1],[0,2,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,1],[0,2,3,2],[0,2,2,2],[1,0,2,2]],[[1,2,2,1],[0,2,3,2],[0,2,2,3],[1,0,2,1]],[[1,2,2,1],[0,2,3,3],[0,2,2,2],[1,0,2,1]],[[1,2,2,2],[0,2,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,1],[0,2,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,1],[0,2,3,2],[0,2,1,2],[1,1,2,2]],[[1,2,2,1],[0,2,3,2],[0,2,1,3],[1,1,2,1]],[[1,2,2,1],[0,2,3,3],[0,2,1,2],[1,1,2,1]],[[1,2,2,2],[0,2,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,1],[0,2,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,1],[0,2,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,1],[0,2,3,3],[0,1,3,2],[1,1,2,0]],[[1,2,2,2],[0,2,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,3,1],[0,2,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,2,1],[0,2,3,2],[0,1,3,2],[1,1,1,2]],[[1,2,2,1],[0,2,3,2],[0,1,3,3],[1,1,1,1]],[[1,2,2,1],[0,2,3,3],[0,1,3,2],[1,1,1,1]],[[1,2,2,2],[0,2,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,3,1],[0,2,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,2,1],[0,2,3,2],[0,1,3,2],[1,0,2,2]],[[1,2,2,1],[0,2,3,2],[0,1,3,3],[1,0,2,1]],[[1,2,2,1],[0,2,3,3],[0,1,3,2],[1,0,2,1]],[[1,2,2,2],[0,2,3,2],[0,1,3,2],[1,0,2,1]],[[1,2,3,1],[0,2,3,2],[0,1,3,2],[1,0,2,1]],[[1,2,2,1],[0,2,3,3],[0,1,3,1],[1,2,2,0]],[[1,2,2,2],[0,2,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,2,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,2,3,3],[0,1,3,1],[1,2,1,1]],[[1,2,2,2],[0,2,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,1],[0,2,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,2,3,3],[0,1,3,0],[1,2,2,1]],[[1,2,2,2],[0,2,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,1],[0,2,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,2,3,2],[0,1,2,3],[1,2,2,0]],[[1,2,2,1],[0,2,3,3],[0,1,2,2],[1,2,2,0]],[[1,2,2,2],[0,2,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,1],[0,2,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,2,3,2],[0,1,2,2],[1,2,1,2]],[[1,2,2,1],[0,2,3,2],[0,1,2,3],[1,2,1,1]],[[1,2,2,1],[0,2,3,3],[0,1,2,2],[1,2,1,1]],[[1,2,2,2],[0,2,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,1],[0,2,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,2,3,2],[0,1,1,2],[1,2,2,2]],[[1,2,2,1],[0,2,3,2],[0,1,1,2],[1,2,3,1]],[[1,2,2,1],[0,2,3,2],[0,1,1,3],[1,2,2,1]],[[1,2,2,1],[0,2,3,3],[0,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,2,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,2,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,2,3,2],[0,0,3,3],[1,2,2,0]],[[1,2,2,1],[0,2,3,3],[0,0,3,2],[1,2,2,0]],[[1,2,2,2],[0,2,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,3,1],[0,2,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,3,2],[0,0,3,2],[1,2,1,2]],[[1,2,2,1],[0,2,3,2],[0,0,3,3],[1,2,1,1]],[[1,2,2,1],[0,2,3,3],[0,0,3,2],[1,2,1,1]],[[1,2,2,2],[0,2,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,3,1],[0,2,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,2,3,2],[0,0,3,2],[1,1,2,2]],[[1,2,2,1],[0,2,3,2],[0,0,3,3],[1,1,2,1]],[[1,2,2,1],[0,2,3,3],[0,0,3,2],[1,1,2,1]],[[1,2,2,2],[0,2,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,3,1],[0,2,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,2,1],[0,2,3,2],[0,0,3,2],[0,2,2,2]],[[1,2,2,1],[0,2,3,2],[0,0,3,3],[0,2,2,1]],[[1,2,2,1],[0,2,3,3],[0,0,3,2],[0,2,2,1]],[[1,2,2,2],[0,2,3,2],[0,0,3,2],[0,2,2,1]],[[1,2,3,1],[0,2,3,2],[0,0,3,2],[0,2,2,1]],[[1,2,2,1],[0,2,3,2],[0,0,2,2],[1,2,2,2]],[[1,2,2,1],[0,2,3,2],[0,0,2,2],[1,2,3,1]],[[1,2,2,1],[0,2,3,2],[0,0,2,3],[1,2,2,1]],[[1,2,2,1],[0,2,3,3],[0,0,2,2],[1,2,2,1]],[[1,2,2,2],[0,2,3,2],[0,0,2,2],[1,2,2,1]],[[1,2,3,1],[0,2,3,2],[0,0,2,2],[1,2,2,1]],[[1,2,2,1],[0,2,4,1],[2,3,3,2],[0,0,0,1]],[[1,2,2,2],[0,2,3,1],[2,3,3,2],[0,0,0,1]],[[1,2,3,1],[0,2,3,1],[2,3,3,2],[0,0,0,1]],[[1,3,2,1],[0,2,3,1],[2,3,3,2],[0,0,0,1]],[[2,2,2,1],[0,2,3,1],[2,3,3,2],[0,0,0,1]],[[1,2,2,1],[0,2,4,1],[2,3,3,1],[1,1,0,0]],[[1,2,2,2],[0,2,3,1],[2,3,3,1],[1,1,0,0]],[[1,2,3,1],[0,2,3,1],[2,3,3,1],[1,1,0,0]],[[1,3,2,1],[0,2,3,1],[2,3,3,1],[1,1,0,0]],[[2,2,2,1],[0,2,3,1],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,2,4,1],[2,3,3,1],[0,2,0,0]],[[1,2,2,2],[0,2,3,1],[2,3,3,1],[0,2,0,0]],[[1,2,3,1],[0,2,3,1],[2,3,3,1],[0,2,0,0]],[[1,3,2,1],[0,2,3,1],[2,3,3,1],[0,2,0,0]],[[2,2,2,1],[0,2,3,1],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,2,3,1],[2,3,4,1],[0,0,2,0]],[[1,2,2,1],[0,2,4,1],[2,3,3,1],[0,0,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,3,1],[0,0,2,0]],[[1,2,3,1],[0,2,3,1],[2,3,3,1],[0,0,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,3,1],[0,0,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,3,1],[0,0,2,0]],[[1,2,2,1],[0,2,3,1],[2,3,4,1],[0,0,1,1]],[[1,2,2,1],[0,2,4,1],[2,3,3,1],[0,0,1,1]],[[1,2,2,2],[0,2,3,1],[2,3,3,1],[0,0,1,1]],[[1,2,3,1],[0,2,3,1],[2,3,3,1],[0,0,1,1]],[[1,3,2,1],[0,2,3,1],[2,3,3,1],[0,0,1,1]],[[2,2,2,1],[0,2,3,1],[2,3,3,1],[0,0,1,1]],[[1,2,2,1],[0,2,4,1],[2,3,3,0],[1,2,0,0]],[[1,2,2,2],[0,2,3,1],[2,3,3,0],[1,2,0,0]],[[1,2,3,1],[0,2,3,1],[2,3,3,0],[1,2,0,0]],[[1,3,2,1],[0,2,3,1],[2,3,3,0],[1,2,0,0]],[[2,2,2,1],[0,2,3,1],[2,3,3,0],[1,2,0,0]],[[1,2,2,1],[0,2,4,1],[2,3,3,0],[1,1,1,0]],[[1,2,2,2],[0,2,3,1],[2,3,3,0],[1,1,1,0]],[[1,2,3,1],[0,2,3,1],[2,3,3,0],[1,1,1,0]],[[1,3,2,1],[0,2,3,1],[2,3,3,0],[1,1,1,0]],[[2,2,2,1],[0,2,3,1],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[0,2,4,1],[2,3,3,0],[1,0,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,3,0],[1,0,2,0]],[[1,2,3,1],[0,2,3,1],[2,3,3,0],[1,0,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,3,0],[1,0,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,3,0],[1,0,2,0]],[[1,2,2,1],[0,2,4,1],[2,3,3,0],[0,2,1,0]],[[1,2,2,2],[0,2,3,1],[2,3,3,0],[0,2,1,0]],[[1,2,3,1],[0,2,3,1],[2,3,3,0],[0,2,1,0]],[[1,3,2,1],[0,2,3,1],[2,3,3,0],[0,2,1,0]],[[2,2,2,1],[0,2,3,1],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[0,2,4,1],[2,3,3,0],[0,1,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,3,0],[0,1,2,0]],[[1,2,3,1],[0,2,3,1],[2,3,3,0],[0,1,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,3,0],[0,1,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,3,0],[0,1,2,0]],[[1,2,2,1],[0,2,3,1],[2,3,4,0],[0,0,2,1]],[[1,2,2,1],[0,2,4,1],[2,3,3,0],[0,0,2,1]],[[1,2,2,2],[0,2,3,1],[2,3,3,0],[0,0,2,1]],[[1,2,3,1],[0,2,3,1],[2,3,3,0],[0,0,2,1]],[[1,3,2,1],[0,2,3,1],[2,3,3,0],[0,0,2,1]],[[2,2,2,1],[0,2,3,1],[2,3,3,0],[0,0,2,1]],[[1,2,2,1],[0,2,4,1],[2,3,2,2],[0,0,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,2,2],[0,0,2,0]],[[0,2,2,2],[0,2,3,2],[0,0,3,2],[1,2,2,1]],[[0,2,2,1],[0,2,3,3],[0,0,3,2],[1,2,2,1]],[[0,2,2,1],[0,2,3,2],[0,0,3,3],[1,2,2,1]],[[0,2,2,1],[0,2,3,2],[0,0,3,2],[1,2,3,1]],[[0,2,2,1],[0,2,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,3,1],[0,2,3,1],[2,3,2,2],[0,0,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,2,2],[0,0,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,2,2],[0,0,2,0]],[[1,2,2,1],[0,2,4,1],[2,3,2,2],[0,0,1,1]],[[1,2,2,2],[0,2,3,1],[2,3,2,2],[0,0,1,1]],[[1,2,3,1],[0,2,3,1],[2,3,2,2],[0,0,1,1]],[[1,3,2,1],[0,2,3,1],[2,3,2,2],[0,0,1,1]],[[2,2,2,1],[0,2,3,1],[2,3,2,2],[0,0,1,1]],[[1,2,2,1],[0,2,4,1],[2,3,2,1],[1,2,0,0]],[[1,2,2,2],[0,2,3,1],[2,3,2,1],[1,2,0,0]],[[1,2,3,1],[0,2,3,1],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[0,2,3,1],[2,3,2,1],[1,2,0,0]],[[2,2,2,1],[0,2,3,1],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[0,2,4,1],[2,3,2,1],[1,1,1,0]],[[1,2,2,2],[0,2,3,1],[2,3,2,1],[1,1,1,0]],[[1,2,3,1],[0,2,3,1],[2,3,2,1],[1,1,1,0]],[[1,3,2,1],[0,2,3,1],[2,3,2,1],[1,1,1,0]],[[2,2,2,1],[0,2,3,1],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,2,4,1],[2,3,2,1],[1,1,0,1]],[[1,2,2,2],[0,2,3,1],[2,3,2,1],[1,1,0,1]],[[1,2,3,1],[0,2,3,1],[2,3,2,1],[1,1,0,1]],[[1,3,2,1],[0,2,3,1],[2,3,2,1],[1,1,0,1]],[[2,2,2,1],[0,2,3,1],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[0,2,4,1],[2,3,2,1],[1,0,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,2,1],[1,0,2,0]],[[1,2,3,1],[0,2,3,1],[2,3,2,1],[1,0,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,2,1],[1,0,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[0,2,4,1],[2,3,2,1],[1,0,1,1]],[[1,2,2,2],[0,2,3,1],[2,3,2,1],[1,0,1,1]],[[1,2,3,1],[0,2,3,1],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[0,2,3,1],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[0,2,3,1],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[0,2,4,1],[2,3,2,1],[0,2,1,0]],[[1,2,2,2],[0,2,3,1],[2,3,2,1],[0,2,1,0]],[[1,2,3,1],[0,2,3,1],[2,3,2,1],[0,2,1,0]],[[1,3,2,1],[0,2,3,1],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[0,2,3,1],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,2,4,1],[2,3,2,1],[0,2,0,1]],[[1,2,2,2],[0,2,3,1],[2,3,2,1],[0,2,0,1]],[[1,2,3,1],[0,2,3,1],[2,3,2,1],[0,2,0,1]],[[1,3,2,1],[0,2,3,1],[2,3,2,1],[0,2,0,1]],[[2,2,2,1],[0,2,3,1],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[0,2,4,1],[2,3,2,1],[0,1,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,2,1],[0,1,2,0]],[[1,2,3,1],[0,2,3,1],[2,3,2,1],[0,1,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,2,1],[0,1,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[0,2,4,1],[2,3,2,1],[0,1,1,1]],[[1,2,2,2],[0,2,3,1],[2,3,2,1],[0,1,1,1]],[[1,2,3,1],[0,2,3,1],[2,3,2,1],[0,1,1,1]],[[1,3,2,1],[0,2,3,1],[2,3,2,1],[0,1,1,1]],[[2,2,2,1],[0,2,3,1],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[0,2,4,1],[2,3,2,0],[1,2,0,1]],[[1,2,2,2],[0,2,3,1],[2,3,2,0],[1,2,0,1]],[[1,2,3,1],[0,2,3,1],[2,3,2,0],[1,2,0,1]],[[1,3,2,1],[0,2,3,1],[2,3,2,0],[1,2,0,1]],[[2,2,2,1],[0,2,3,1],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[0,2,4,1],[2,3,2,0],[1,1,1,1]],[[1,2,2,2],[0,2,3,1],[2,3,2,0],[1,1,1,1]],[[1,2,3,1],[0,2,3,1],[2,3,2,0],[1,1,1,1]],[[1,3,2,1],[0,2,3,1],[2,3,2,0],[1,1,1,1]],[[2,2,2,1],[0,2,3,1],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[0,2,4,1],[2,3,2,0],[1,0,2,1]],[[1,2,2,2],[0,2,3,1],[2,3,2,0],[1,0,2,1]],[[1,2,3,1],[0,2,3,1],[2,3,2,0],[1,0,2,1]],[[1,3,2,1],[0,2,3,1],[2,3,2,0],[1,0,2,1]],[[2,2,2,1],[0,2,3,1],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[0,2,4,1],[2,3,2,0],[0,2,1,1]],[[1,2,2,2],[0,2,3,1],[2,3,2,0],[0,2,1,1]],[[1,2,3,1],[0,2,3,1],[2,3,2,0],[0,2,1,1]],[[1,3,2,1],[0,2,3,1],[2,3,2,0],[0,2,1,1]],[[2,2,2,1],[0,2,3,1],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[0,2,4,1],[2,3,2,0],[0,1,2,1]],[[1,2,2,2],[0,2,3,1],[2,3,2,0],[0,1,2,1]],[[1,2,3,1],[0,2,3,1],[2,3,2,0],[0,1,2,1]],[[1,3,2,1],[0,2,3,1],[2,3,2,0],[0,1,2,1]],[[2,2,2,1],[0,2,3,1],[2,3,2,0],[0,1,2,1]],[[1,2,2,1],[0,2,4,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,2],[0,2,3,1],[2,3,1,2],[1,2,0,0]],[[1,2,3,1],[0,2,3,1],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[0,2,3,1],[2,3,1,2],[1,2,0,0]],[[2,2,2,1],[0,2,3,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[0,2,4,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,2],[0,2,3,1],[2,3,1,2],[1,1,1,0]],[[1,2,3,1],[0,2,3,1],[2,3,1,2],[1,1,1,0]],[[1,3,2,1],[0,2,3,1],[2,3,1,2],[1,1,1,0]],[[2,2,2,1],[0,2,3,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[0,2,4,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,2],[0,2,3,1],[2,3,1,2],[1,1,0,1]],[[1,2,3,1],[0,2,3,1],[2,3,1,2],[1,1,0,1]],[[1,3,2,1],[0,2,3,1],[2,3,1,2],[1,1,0,1]],[[2,2,2,1],[0,2,3,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[0,2,4,1],[2,3,1,2],[1,0,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,1,2],[1,0,2,0]],[[1,2,3,1],[0,2,3,1],[2,3,1,2],[1,0,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,1,2],[1,0,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[0,2,4,1],[2,3,1,2],[1,0,1,1]],[[1,2,2,2],[0,2,3,1],[2,3,1,2],[1,0,1,1]],[[1,2,3,1],[0,2,3,1],[2,3,1,2],[1,0,1,1]],[[1,3,2,1],[0,2,3,1],[2,3,1,2],[1,0,1,1]],[[2,2,2,1],[0,2,3,1],[2,3,1,2],[1,0,1,1]],[[1,2,2,1],[0,2,4,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,2],[0,2,3,1],[2,3,1,2],[0,2,1,0]],[[1,2,3,1],[0,2,3,1],[2,3,1,2],[0,2,1,0]],[[1,3,2,1],[0,2,3,1],[2,3,1,2],[0,2,1,0]],[[2,2,2,1],[0,2,3,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[0,2,4,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,2],[0,2,3,1],[2,3,1,2],[0,2,0,1]],[[1,2,3,1],[0,2,3,1],[2,3,1,2],[0,2,0,1]],[[1,3,2,1],[0,2,3,1],[2,3,1,2],[0,2,0,1]],[[2,2,2,1],[0,2,3,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[0,2,4,1],[2,3,1,2],[0,1,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,1,2],[0,1,2,0]],[[1,2,3,1],[0,2,3,1],[2,3,1,2],[0,1,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,1,2],[0,1,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[0,2,4,1],[2,3,1,2],[0,1,1,1]],[[1,2,2,2],[0,2,3,1],[2,3,1,2],[0,1,1,1]],[[1,2,3,1],[0,2,3,1],[2,3,1,2],[0,1,1,1]],[[1,3,2,1],[0,2,3,1],[2,3,1,2],[0,1,1,1]],[[2,2,2,1],[0,2,3,1],[2,3,1,2],[0,1,1,1]],[[1,2,2,1],[0,2,4,1],[2,3,1,1],[1,1,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,1,1],[1,1,2,0]],[[1,2,3,1],[0,2,3,1],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,1,1],[1,1,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[0,2,4,1],[2,3,1,1],[0,2,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,1,1],[0,2,2,0]],[[1,2,3,1],[0,2,3,1],[2,3,1,1],[0,2,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,1,1],[0,2,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[0,2,4,1],[2,3,1,0],[1,1,2,1]],[[1,2,2,2],[0,2,3,1],[2,3,1,0],[1,1,2,1]],[[1,2,3,1],[0,2,3,1],[2,3,1,0],[1,1,2,1]],[[1,3,2,1],[0,2,3,1],[2,3,1,0],[1,1,2,1]],[[2,2,2,1],[0,2,3,1],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[0,2,4,1],[2,3,1,0],[0,2,2,1]],[[1,2,2,2],[0,2,3,1],[2,3,1,0],[0,2,2,1]],[[1,2,3,1],[0,2,3,1],[2,3,1,0],[0,2,2,1]],[[1,3,2,1],[0,2,3,1],[2,3,1,0],[0,2,2,1]],[[2,2,2,1],[0,2,3,1],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[0,2,4,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,0,2],[1,1,2,0]],[[1,2,3,1],[0,2,3,1],[2,3,0,2],[1,1,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,0,2],[1,1,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[0,2,4,1],[2,3,0,2],[1,1,1,1]],[[1,2,2,2],[0,2,3,1],[2,3,0,2],[1,1,1,1]],[[1,2,3,1],[0,2,3,1],[2,3,0,2],[1,1,1,1]],[[1,3,2,1],[0,2,3,1],[2,3,0,2],[1,1,1,1]],[[2,2,2,1],[0,2,3,1],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[0,2,4,1],[2,3,0,2],[1,0,2,1]],[[1,2,2,2],[0,2,3,1],[2,3,0,2],[1,0,2,1]],[[1,2,3,1],[0,2,3,1],[2,3,0,2],[1,0,2,1]],[[1,3,2,1],[0,2,3,1],[2,3,0,2],[1,0,2,1]],[[2,2,2,1],[0,2,3,1],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[0,2,4,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,2],[0,2,3,1],[2,3,0,2],[0,2,2,0]],[[1,2,3,1],[0,2,3,1],[2,3,0,2],[0,2,2,0]],[[1,3,2,1],[0,2,3,1],[2,3,0,2],[0,2,2,0]],[[2,2,2,1],[0,2,3,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[0,2,4,1],[2,3,0,2],[0,2,1,1]],[[1,2,2,2],[0,2,3,1],[2,3,0,2],[0,2,1,1]],[[1,2,3,1],[0,2,3,1],[2,3,0,2],[0,2,1,1]],[[1,3,2,1],[0,2,3,1],[2,3,0,2],[0,2,1,1]],[[2,2,2,1],[0,2,3,1],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[0,2,4,1],[2,3,0,2],[0,1,2,1]],[[1,2,2,2],[0,2,3,1],[2,3,0,2],[0,1,2,1]],[[1,2,3,1],[0,2,3,1],[2,3,0,2],[0,1,2,1]],[[1,3,2,1],[0,2,3,1],[2,3,0,2],[0,1,2,1]],[[2,2,2,1],[0,2,3,1],[2,3,0,2],[0,1,2,1]],[[1,2,2,1],[0,2,4,1],[2,3,0,1],[1,1,2,1]],[[1,2,2,2],[0,2,3,1],[2,3,0,1],[1,1,2,1]],[[1,2,3,1],[0,2,3,1],[2,3,0,1],[1,1,2,1]],[[1,3,2,1],[0,2,3,1],[2,3,0,1],[1,1,2,1]],[[2,2,2,1],[0,2,3,1],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[0,2,4,1],[2,3,0,1],[0,2,2,1]],[[1,2,2,2],[0,2,3,1],[2,3,0,1],[0,2,2,1]],[[1,2,3,1],[0,2,3,1],[2,3,0,1],[0,2,2,1]],[[1,3,2,1],[0,2,3,1],[2,3,0,1],[0,2,2,1]],[[2,2,2,1],[0,2,3,1],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[0,2,4,1],[2,2,3,2],[1,0,0,1]],[[1,2,2,2],[0,2,3,1],[2,2,3,2],[1,0,0,1]],[[1,2,3,1],[0,2,3,1],[2,2,3,2],[1,0,0,1]],[[1,3,2,1],[0,2,3,1],[2,2,3,2],[1,0,0,1]],[[2,2,2,1],[0,2,3,1],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[0,2,4,1],[2,2,3,2],[0,1,0,1]],[[1,2,2,2],[0,2,3,1],[2,2,3,2],[0,1,0,1]],[[1,2,3,1],[0,2,3,1],[2,2,3,2],[0,1,0,1]],[[1,3,2,1],[0,2,3,1],[2,2,3,2],[0,1,0,1]],[[2,2,2,1],[0,2,3,1],[2,2,3,2],[0,1,0,1]],[[1,2,2,1],[0,2,3,1],[2,2,4,1],[1,1,1,0]],[[1,2,2,1],[0,2,4,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,2],[0,2,3,1],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[0,2,3,1],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[0,2,3,1],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[0,2,3,1],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[0,2,3,1],[2,2,4,1],[1,1,0,1]],[[1,2,2,1],[0,2,4,1],[2,2,3,1],[1,1,0,1]],[[1,2,2,2],[0,2,3,1],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[0,2,3,1],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[0,2,3,1],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[0,2,3,1],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[0,2,3,1],[2,2,3,1],[1,0,3,0]],[[1,2,2,1],[0,2,3,1],[2,2,4,1],[1,0,2,0]],[[1,2,2,1],[0,2,4,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,2],[0,2,3,1],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[0,2,3,1],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[0,2,3,1],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[0,2,3,1],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[0,2,3,1],[2,2,4,1],[1,0,1,1]],[[1,2,2,1],[0,2,4,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,2],[0,2,3,1],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[0,2,3,1],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[0,2,3,1],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[0,2,3,1],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[0,2,3,1],[2,2,4,1],[0,2,1,0]],[[1,2,2,1],[0,2,4,1],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[0,2,3,1],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[0,2,3,1],[2,2,3,1],[0,2,1,0]],[[1,3,2,1],[0,2,3,1],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[0,2,3,1],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[0,2,3,1],[2,2,4,1],[0,2,0,1]],[[1,2,2,1],[0,2,4,1],[2,2,3,1],[0,2,0,1]],[[1,2,2,2],[0,2,3,1],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[0,2,3,1],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[0,2,3,1],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[0,2,3,1],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[0,2,3,1],[2,2,3,1],[0,1,3,0]],[[1,2,2,1],[0,2,3,1],[2,2,4,1],[0,1,2,0]],[[1,2,2,1],[0,2,4,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,2],[0,2,3,1],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[0,2,3,1],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[0,2,3,1],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[0,2,3,1],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[0,2,3,1],[2,2,4,1],[0,1,1,1]],[[1,2,2,1],[0,2,4,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,2],[0,2,3,1],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[0,2,3,1],[2,2,3,1],[0,1,1,1]],[[1,3,2,1],[0,2,3,1],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[0,2,3,1],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[0,2,3,1],[2,2,4,1],[0,0,2,1]],[[1,2,2,1],[0,2,4,1],[2,2,3,1],[0,0,2,1]],[[1,2,2,2],[0,2,3,1],[2,2,3,1],[0,0,2,1]],[[1,2,3,1],[0,2,3,1],[2,2,3,1],[0,0,2,1]],[[1,3,2,1],[0,2,3,1],[2,2,3,1],[0,0,2,1]],[[2,2,2,1],[0,2,3,1],[2,2,3,1],[0,0,2,1]],[[1,2,2,1],[0,2,3,1],[2,2,4,0],[1,1,1,1]],[[1,2,2,1],[0,2,4,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,2],[0,2,3,1],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[0,2,3,1],[2,2,3,0],[1,1,1,1]],[[1,3,2,1],[0,2,3,1],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[0,2,3,1],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[0,2,3,1],[2,2,3,0],[1,0,2,2]],[[1,2,2,1],[0,2,3,1],[2,2,3,0],[1,0,3,1]],[[1,2,2,1],[0,2,3,1],[2,2,4,0],[1,0,2,1]],[[1,2,2,1],[0,2,4,1],[2,2,3,0],[1,0,2,1]],[[1,2,2,2],[0,2,3,1],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[0,2,3,1],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[0,2,3,1],[2,2,3,0],[1,0,2,1]],[[2,2,2,1],[0,2,3,1],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[0,2,3,1],[2,2,4,0],[0,2,1,1]],[[1,2,2,1],[0,2,4,1],[2,2,3,0],[0,2,1,1]],[[1,2,2,2],[0,2,3,1],[2,2,3,0],[0,2,1,1]],[[1,2,3,1],[0,2,3,1],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[0,2,3,1],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[0,2,3,1],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[0,2,3,1],[2,2,3,0],[0,1,2,2]],[[1,2,2,1],[0,2,3,1],[2,2,3,0],[0,1,3,1]],[[1,2,2,1],[0,2,3,1],[2,2,4,0],[0,1,2,1]],[[1,2,2,1],[0,2,4,1],[2,2,3,0],[0,1,2,1]],[[1,2,2,2],[0,2,3,1],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[0,2,3,1],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[0,2,3,1],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[0,2,3,1],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[0,3,0,0],[2,4,3,1],[1,2,2,1]],[[0,2,2,1],[0,3,0,0],[2,3,3,1],[2,2,2,1]],[[0,2,2,1],[0,3,0,0],[2,3,3,1],[1,3,2,1]],[[0,2,2,1],[0,3,0,0],[2,3,3,1],[1,2,3,1]],[[0,2,2,1],[0,3,0,0],[2,3,3,1],[1,2,2,2]],[[0,2,2,1],[0,3,0,0],[2,4,3,2],[1,2,2,0]],[[0,2,2,1],[0,3,0,0],[2,3,3,2],[2,2,2,0]],[[0,2,2,1],[0,3,0,0],[2,3,3,2],[1,3,2,0]],[[0,2,2,1],[0,3,0,0],[2,3,3,2],[1,2,3,0]],[[0,2,2,1],[0,3,0,1],[2,2,2,3],[1,2,2,1]],[[0,2,2,1],[0,3,0,1],[2,2,2,2],[2,2,2,1]],[[0,2,2,1],[0,3,0,1],[2,2,2,2],[1,3,2,1]],[[0,2,2,1],[0,3,0,1],[2,2,2,2],[1,2,3,1]],[[0,2,2,1],[0,3,0,1],[2,2,2,2],[1,2,2,2]],[[0,2,2,1],[0,3,0,1],[2,2,4,1],[1,2,2,1]],[[0,2,2,1],[0,3,0,1],[2,2,3,1],[2,2,2,1]],[[0,2,2,1],[0,3,0,1],[2,2,3,1],[1,3,2,1]],[[0,2,2,1],[0,3,0,1],[2,2,3,1],[1,2,3,1]],[[0,2,2,1],[0,3,0,1],[2,2,3,1],[1,2,2,2]],[[0,2,2,1],[0,3,0,1],[2,2,4,2],[1,2,1,1]],[[0,2,2,1],[0,3,0,1],[2,2,3,3],[1,2,1,1]],[[0,2,2,1],[0,3,0,1],[2,2,3,2],[1,2,1,2]],[[0,2,2,1],[0,3,0,1],[2,2,4,2],[1,2,2,0]],[[0,2,2,1],[0,3,0,1],[2,2,3,3],[1,2,2,0]],[[0,2,2,1],[0,3,0,1],[2,2,3,2],[2,2,2,0]],[[0,2,2,1],[0,3,0,1],[2,2,3,2],[1,3,2,0]],[[0,2,2,1],[0,3,0,1],[2,2,3,2],[1,2,3,0]],[[0,2,2,1],[0,3,0,1],[2,4,1,2],[1,2,2,1]],[[0,2,2,1],[0,3,0,1],[2,3,1,3],[1,2,2,1]],[[0,2,2,1],[0,3,0,1],[2,3,1,2],[2,2,2,1]],[[0,2,2,1],[0,3,0,1],[2,3,1,2],[1,3,2,1]],[[0,2,2,1],[0,3,0,1],[2,3,1,2],[1,2,3,1]],[[0,2,2,1],[0,3,0,1],[2,3,1,2],[1,2,2,2]],[[0,2,2,1],[0,3,0,1],[2,4,2,1],[1,2,2,1]],[[0,2,2,1],[0,3,0,1],[2,3,2,1],[2,2,2,1]],[[0,2,2,1],[0,3,0,1],[2,3,2,1],[1,3,2,1]],[[0,2,2,1],[0,3,0,1],[2,3,2,1],[1,2,3,1]],[[0,2,2,1],[0,3,0,1],[2,3,2,1],[1,2,2,2]],[[0,2,2,1],[0,3,0,1],[2,3,2,3],[1,1,2,1]],[[0,2,2,1],[0,3,0,1],[2,3,2,2],[1,1,3,1]],[[0,2,2,1],[0,3,0,1],[2,3,2,2],[1,1,2,2]],[[0,2,2,1],[0,3,0,1],[2,4,2,2],[1,2,2,0]],[[0,2,2,1],[0,3,0,1],[2,3,2,2],[2,2,2,0]],[[0,2,2,1],[0,3,0,1],[2,3,2,2],[1,3,2,0]],[[0,2,2,1],[0,3,0,1],[2,3,2,2],[1,2,3,0]],[[0,2,2,1],[0,3,0,1],[2,4,3,1],[1,1,2,1]],[[0,2,2,1],[0,3,0,1],[2,3,4,1],[1,1,2,1]],[[0,2,2,1],[0,3,0,1],[2,3,3,1],[1,1,3,1]],[[0,2,2,1],[0,3,0,1],[2,3,3,1],[1,1,2,2]],[[0,2,2,1],[0,3,0,1],[2,4,3,1],[1,2,1,1]],[[0,2,2,1],[0,3,0,1],[2,3,4,1],[1,2,1,1]],[[0,2,2,1],[0,3,0,1],[2,3,3,1],[2,2,1,1]],[[0,2,2,1],[0,3,0,1],[2,3,3,1],[1,3,1,1]],[[0,2,2,1],[0,3,0,1],[2,4,3,2],[1,1,1,1]],[[0,2,2,1],[0,3,0,1],[2,3,4,2],[1,1,1,1]],[[0,2,2,1],[0,3,0,1],[2,3,3,3],[1,1,1,1]],[[0,2,2,1],[0,3,0,1],[2,3,3,2],[1,1,1,2]],[[0,2,2,1],[0,3,0,1],[2,4,3,2],[1,1,2,0]],[[0,2,2,1],[0,3,0,1],[2,3,4,2],[1,1,2,0]],[[0,2,2,1],[0,3,0,1],[2,3,3,3],[1,1,2,0]],[[0,2,2,1],[0,3,0,1],[2,3,3,2],[1,1,3,0]],[[0,2,2,1],[0,3,0,1],[2,4,3,2],[1,2,0,1]],[[0,2,2,1],[0,3,0,1],[2,3,4,2],[1,2,0,1]],[[0,2,2,1],[0,3,0,1],[2,3,3,3],[1,2,0,1]],[[0,2,2,1],[0,3,0,1],[2,3,3,2],[2,2,0,1]],[[0,2,2,1],[0,3,0,1],[2,3,3,2],[1,3,0,1]],[[0,2,2,1],[0,3,0,1],[2,3,3,2],[1,2,0,2]],[[0,2,2,1],[0,3,0,1],[2,4,3,2],[1,2,1,0]],[[0,2,2,1],[0,3,0,1],[2,3,4,2],[1,2,1,0]],[[0,2,2,1],[0,3,0,1],[2,3,3,3],[1,2,1,0]],[[0,2,2,1],[0,3,0,1],[2,3,3,2],[2,2,1,0]],[[0,2,2,1],[0,3,0,1],[2,3,3,2],[1,3,1,0]],[[0,2,2,1],[0,3,0,2],[2,2,4,0],[1,2,2,1]],[[0,2,2,1],[0,3,0,2],[2,2,3,0],[2,2,2,1]],[[0,2,2,1],[0,3,0,2],[2,2,3,0],[1,3,2,1]],[[0,2,2,1],[0,3,0,2],[2,2,3,0],[1,2,3,1]],[[0,2,2,1],[0,3,0,2],[2,2,3,0],[1,2,2,2]],[[0,2,2,1],[0,3,0,2],[2,2,4,1],[1,2,2,0]],[[0,2,2,1],[0,3,0,2],[2,2,3,1],[2,2,2,0]],[[0,2,2,1],[0,3,0,2],[2,2,3,1],[1,3,2,0]],[[0,2,2,1],[0,3,0,2],[2,2,3,1],[1,2,3,0]],[[1,2,2,1],[0,2,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[0,2,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[0,2,3,1],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[0,2,3,1],[2,2,2,2],[1,1,1,0]],[[2,2,2,1],[0,2,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[0,2,4,1],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[0,2,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[0,3,0,2],[2,4,1,1],[1,2,2,1]],[[0,2,2,1],[0,3,0,2],[2,3,1,1],[2,2,2,1]],[[0,2,2,1],[0,3,0,2],[2,3,1,1],[1,3,2,1]],[[0,2,2,1],[0,3,0,2],[2,3,1,1],[1,2,3,1]],[[0,2,2,1],[0,3,0,2],[2,3,1,1],[1,2,2,2]],[[0,2,2,1],[0,3,0,2],[2,4,1,2],[1,2,1,1]],[[0,2,2,1],[0,3,0,2],[2,3,1,2],[2,2,1,1]],[[0,2,2,1],[0,3,0,2],[2,3,1,2],[1,3,1,1]],[[0,2,2,1],[0,3,0,2],[2,4,1,2],[1,2,2,0]],[[0,2,2,1],[0,3,0,2],[2,3,1,2],[2,2,2,0]],[[0,2,2,1],[0,3,0,2],[2,3,1,2],[1,3,2,0]],[[0,2,2,1],[0,3,0,2],[2,3,1,2],[1,2,3,0]],[[0,2,2,1],[0,3,0,2],[2,4,2,0],[1,2,2,1]],[[0,2,2,1],[0,3,0,2],[2,3,2,0],[2,2,2,1]],[[0,2,2,1],[0,3,0,2],[2,3,2,0],[1,3,2,1]],[[0,2,2,1],[0,3,0,2],[2,3,2,0],[1,2,3,1]],[[0,2,2,1],[0,3,0,2],[2,3,2,0],[1,2,2,2]],[[0,2,2,1],[0,3,0,2],[2,4,2,1],[1,2,2,0]],[[0,2,2,1],[0,3,0,2],[2,3,2,1],[2,2,2,0]],[[0,2,2,1],[0,3,0,2],[2,3,2,1],[1,3,2,0]],[[0,2,2,1],[0,3,0,2],[2,3,2,1],[1,2,3,0]],[[0,2,2,1],[0,3,0,2],[2,4,2,2],[1,2,0,1]],[[0,2,2,1],[0,3,0,2],[2,3,2,2],[2,2,0,1]],[[0,2,2,1],[0,3,0,2],[2,3,2,2],[1,3,0,1]],[[0,2,2,1],[0,3,0,2],[2,4,2,2],[1,2,1,0]],[[0,2,2,1],[0,3,0,2],[2,3,2,2],[2,2,1,0]],[[0,2,2,1],[0,3,0,2],[2,3,2,2],[1,3,1,0]],[[1,2,3,1],[0,2,3,1],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[0,2,3,1],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[0,2,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[0,3,0,2],[2,4,3,0],[1,1,2,1]],[[0,2,2,1],[0,3,0,2],[2,3,4,0],[1,1,2,1]],[[0,2,2,1],[0,3,0,2],[2,3,3,0],[1,1,3,1]],[[0,2,2,1],[0,3,0,2],[2,3,3,0],[1,1,2,2]],[[0,2,2,1],[0,3,0,2],[2,4,3,0],[1,2,1,1]],[[0,2,2,1],[0,3,0,2],[2,3,4,0],[1,2,1,1]],[[0,2,2,1],[0,3,0,2],[2,3,3,0],[2,2,1,1]],[[0,2,2,1],[0,3,0,2],[2,3,3,0],[1,3,1,1]],[[0,2,2,1],[0,3,0,2],[2,4,3,1],[1,1,2,0]],[[0,2,2,1],[0,3,0,2],[2,3,4,1],[1,1,2,0]],[[0,2,2,1],[0,3,0,2],[2,3,3,1],[1,1,3,0]],[[0,2,2,1],[0,3,0,2],[2,4,3,1],[1,2,0,1]],[[0,2,2,1],[0,3,0,2],[2,3,4,1],[1,2,0,1]],[[0,2,2,1],[0,3,0,2],[2,3,3,1],[2,2,0,1]],[[0,2,2,1],[0,3,0,2],[2,3,3,1],[1,3,0,1]],[[0,2,2,1],[0,3,0,2],[2,4,3,1],[1,2,1,0]],[[0,2,2,1],[0,3,0,2],[2,3,4,1],[1,2,1,0]],[[0,2,2,1],[0,3,0,2],[2,3,3,1],[2,2,1,0]],[[0,2,2,1],[0,3,0,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[0,2,4,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[0,2,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[0,2,3,1],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[0,2,3,1],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[0,2,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[0,2,4,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[0,2,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[0,2,3,1],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[0,2,3,1],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[0,2,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[0,2,4,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[0,2,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[0,2,3,1],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[0,2,3,1],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[0,2,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[0,2,4,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[0,2,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[0,2,3,1],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[0,2,3,1],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[0,2,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[0,2,4,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[0,2,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[0,2,3,1],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[0,2,3,1],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[0,2,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[0,3,1,0],[2,2,2,3],[1,2,2,1]],[[0,2,2,1],[0,3,1,0],[2,2,2,2],[2,2,2,1]],[[0,2,2,1],[0,3,1,0],[2,2,2,2],[1,3,2,1]],[[0,2,2,1],[0,3,1,0],[2,2,2,2],[1,2,3,1]],[[0,2,2,1],[0,3,1,0],[2,2,2,2],[1,2,2,2]],[[0,2,2,1],[0,3,1,0],[2,2,4,1],[1,2,2,1]],[[0,2,2,1],[0,3,1,0],[2,2,3,1],[2,2,2,1]],[[0,2,2,1],[0,3,1,0],[2,2,3,1],[1,3,2,1]],[[0,2,2,1],[0,3,1,0],[2,2,3,1],[1,2,3,1]],[[0,2,2,1],[0,3,1,0],[2,2,3,1],[1,2,2,2]],[[0,2,2,1],[0,3,1,0],[2,2,4,2],[1,2,1,1]],[[0,2,2,1],[0,3,1,0],[2,2,3,3],[1,2,1,1]],[[0,2,2,1],[0,3,1,0],[2,2,3,2],[1,2,1,2]],[[0,2,2,1],[0,3,1,0],[2,2,4,2],[1,2,2,0]],[[0,2,2,1],[0,3,1,0],[2,2,3,3],[1,2,2,0]],[[0,2,2,1],[0,3,1,0],[2,2,3,2],[2,2,2,0]],[[0,2,2,1],[0,3,1,0],[2,2,3,2],[1,3,2,0]],[[0,2,2,1],[0,3,1,0],[2,2,3,2],[1,2,3,0]],[[0,2,2,1],[0,3,1,0],[2,4,1,2],[1,2,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,1,3],[1,2,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,1,2],[2,2,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,1,2],[1,3,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,1,2],[1,2,3,1]],[[0,2,2,1],[0,3,1,0],[2,3,1,2],[1,2,2,2]],[[0,2,2,1],[0,3,1,0],[2,4,2,1],[1,2,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,2,1],[2,2,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,2,1],[1,3,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,2,1],[1,2,3,1]],[[0,2,2,1],[0,3,1,0],[2,3,2,1],[1,2,2,2]],[[0,2,2,1],[0,3,1,0],[2,3,2,3],[1,1,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,2,2],[1,1,3,1]],[[0,2,2,1],[0,3,1,0],[2,3,2,2],[1,1,2,2]],[[0,2,2,1],[0,3,1,0],[2,4,2,2],[1,2,2,0]],[[0,2,2,1],[0,3,1,0],[2,3,2,2],[2,2,2,0]],[[0,2,2,1],[0,3,1,0],[2,3,2,2],[1,3,2,0]],[[0,2,2,1],[0,3,1,0],[2,3,2,2],[1,2,3,0]],[[0,2,2,1],[0,3,1,0],[2,4,3,0],[1,2,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,0],[2,2,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,0],[1,3,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,0],[1,2,3,1]],[[0,2,2,1],[0,3,1,0],[2,4,3,1],[1,1,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,4,1],[1,1,2,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,1],[1,1,3,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,1],[1,1,2,2]],[[0,2,2,1],[0,3,1,0],[2,4,3,1],[1,2,1,1]],[[0,2,2,1],[0,3,1,0],[2,3,4,1],[1,2,1,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,1],[2,2,1,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,1],[1,3,1,1]],[[0,2,2,1],[0,3,1,0],[2,4,3,2],[1,1,1,1]],[[0,2,2,1],[0,3,1,0],[2,3,4,2],[1,1,1,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,3],[1,1,1,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,2],[1,1,1,2]],[[0,2,2,1],[0,3,1,0],[2,4,3,2],[1,1,2,0]],[[0,2,2,1],[0,3,1,0],[2,3,4,2],[1,1,2,0]],[[0,2,2,1],[0,3,1,0],[2,3,3,3],[1,1,2,0]],[[0,2,2,1],[0,3,1,0],[2,3,3,2],[1,1,3,0]],[[0,2,2,1],[0,3,1,0],[2,4,3,2],[1,2,0,1]],[[0,2,2,1],[0,3,1,0],[2,3,4,2],[1,2,0,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,3],[1,2,0,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,2],[2,2,0,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,2],[1,3,0,1]],[[0,2,2,1],[0,3,1,0],[2,3,3,2],[1,2,0,2]],[[0,2,2,1],[0,3,1,0],[2,4,3,2],[1,2,1,0]],[[0,2,2,1],[0,3,1,0],[2,3,4,2],[1,2,1,0]],[[0,2,2,1],[0,3,1,0],[2,3,3,3],[1,2,1,0]],[[0,2,2,1],[0,3,1,0],[2,3,3,2],[2,2,1,0]],[[0,2,2,1],[0,3,1,0],[2,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,2,4,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[0,2,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[0,2,3,1],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[0,2,3,1],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[0,2,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[0,2,4,1],[2,2,2,2],[0,0,2,1]],[[1,2,2,2],[0,2,3,1],[2,2,2,2],[0,0,2,1]],[[0,2,2,1],[0,3,1,1],[2,2,4,0],[1,2,2,1]],[[0,2,2,1],[0,3,1,1],[2,2,3,0],[2,2,2,1]],[[0,2,2,1],[0,3,1,1],[2,2,3,0],[1,3,2,1]],[[0,2,2,1],[0,3,1,1],[2,2,3,0],[1,2,3,1]],[[0,2,2,1],[0,3,1,1],[2,2,3,0],[1,2,2,2]],[[0,2,2,1],[0,3,1,1],[2,2,4,1],[1,2,2,0]],[[0,2,2,1],[0,3,1,1],[2,2,3,1],[2,2,2,0]],[[0,2,2,1],[0,3,1,1],[2,2,3,1],[1,3,2,0]],[[0,2,2,1],[0,3,1,1],[2,2,3,1],[1,2,3,0]],[[1,2,3,1],[0,2,3,1],[2,2,2,2],[0,0,2,1]],[[1,3,2,1],[0,2,3,1],[2,2,2,2],[0,0,2,1]],[[2,2,2,1],[0,2,3,1],[2,2,2,2],[0,0,2,1]],[[0,2,2,1],[0,3,1,1],[2,4,0,2],[1,2,2,1]],[[0,2,2,1],[0,3,1,1],[2,3,0,3],[1,2,2,1]],[[0,2,2,1],[0,3,1,1],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[0,3,1,1],[2,3,0,2],[1,3,2,1]],[[0,2,2,1],[0,3,1,1],[2,3,0,2],[1,2,3,1]],[[0,2,2,1],[0,3,1,1],[2,3,0,2],[1,2,2,2]],[[0,2,2,1],[0,3,1,1],[2,4,2,0],[1,2,2,1]],[[0,2,2,1],[0,3,1,1],[2,3,2,0],[2,2,2,1]],[[0,2,2,1],[0,3,1,1],[2,3,2,0],[1,3,2,1]],[[0,2,2,1],[0,3,1,1],[2,3,2,0],[1,2,3,1]],[[0,2,2,1],[0,3,1,1],[2,3,2,0],[1,2,2,2]],[[0,2,2,1],[0,3,1,1],[2,4,2,1],[1,2,2,0]],[[0,2,2,1],[0,3,1,1],[2,3,2,1],[2,2,2,0]],[[0,2,2,1],[0,3,1,1],[2,3,2,1],[1,3,2,0]],[[0,2,2,1],[0,3,1,1],[2,3,2,1],[1,2,3,0]],[[0,2,2,1],[0,3,1,1],[2,4,3,0],[1,1,2,1]],[[0,2,2,1],[0,3,1,1],[2,3,4,0],[1,1,2,1]],[[0,2,2,1],[0,3,1,1],[2,3,3,0],[1,1,3,1]],[[0,2,2,1],[0,3,1,1],[2,3,3,0],[1,1,2,2]],[[0,2,2,1],[0,3,1,1],[2,4,3,0],[1,2,1,1]],[[0,2,2,1],[0,3,1,1],[2,3,4,0],[1,2,1,1]],[[0,2,2,1],[0,3,1,1],[2,3,3,0],[2,2,1,1]],[[0,2,2,1],[0,3,1,1],[2,3,3,0],[1,3,1,1]],[[0,2,2,1],[0,3,1,1],[2,4,3,1],[1,1,2,0]],[[0,2,2,1],[0,3,1,1],[2,3,4,1],[1,1,2,0]],[[0,2,2,1],[0,3,1,1],[2,3,3,1],[1,1,3,0]],[[0,2,2,1],[0,3,1,1],[2,4,3,1],[1,2,0,1]],[[0,2,2,1],[0,3,1,1],[2,3,4,1],[1,2,0,1]],[[0,2,2,1],[0,3,1,1],[2,3,3,1],[2,2,0,1]],[[0,2,2,1],[0,3,1,1],[2,3,3,1],[1,3,0,1]],[[0,2,2,1],[0,3,1,1],[2,4,3,1],[1,2,1,0]],[[0,2,2,1],[0,3,1,1],[2,3,4,1],[1,2,1,0]],[[0,2,2,1],[0,3,1,1],[2,3,3,1],[2,2,1,0]],[[0,2,2,1],[0,3,1,1],[2,3,3,1],[1,3,1,0]],[[1,2,2,1],[0,2,4,1],[2,2,1,2],[1,0,2,1]],[[1,2,2,2],[0,2,3,1],[2,2,1,2],[1,0,2,1]],[[1,2,3,1],[0,2,3,1],[2,2,1,2],[1,0,2,1]],[[1,3,2,1],[0,2,3,1],[2,2,1,2],[1,0,2,1]],[[2,2,2,1],[0,2,3,1],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[0,2,4,1],[2,2,1,2],[0,1,2,1]],[[1,2,2,2],[0,2,3,1],[2,2,1,2],[0,1,2,1]],[[1,2,3,1],[0,2,3,1],[2,2,1,2],[0,1,2,1]],[[1,3,2,1],[0,2,3,1],[2,2,1,2],[0,1,2,1]],[[2,2,2,1],[0,2,3,1],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[0,2,4,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[0,2,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[0,2,3,1],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[0,2,3,1],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[0,2,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[0,2,4,1],[2,1,3,2],[1,0,2,0]],[[1,2,2,2],[0,2,3,1],[2,1,3,2],[1,0,2,0]],[[1,2,3,1],[0,2,3,1],[2,1,3,2],[1,0,2,0]],[[1,3,2,1],[0,2,3,1],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[0,2,4,1],[2,1,3,2],[1,0,1,1]],[[1,2,2,2],[0,2,3,1],[2,1,3,2],[1,0,1,1]],[[1,2,3,1],[0,2,3,1],[2,1,3,2],[1,0,1,1]],[[1,3,2,1],[0,2,3,1],[2,1,3,2],[1,0,1,1]],[[1,2,2,1],[0,2,4,1],[2,1,3,2],[0,1,2,0]],[[1,2,2,2],[0,2,3,1],[2,1,3,2],[0,1,2,0]],[[1,2,3,1],[0,2,3,1],[2,1,3,2],[0,1,2,0]],[[1,3,2,1],[0,2,3,1],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[0,2,4,1],[2,1,3,2],[0,1,1,1]],[[1,2,2,2],[0,2,3,1],[2,1,3,2],[0,1,1,1]],[[1,2,3,1],[0,2,3,1],[2,1,3,2],[0,1,1,1]],[[1,3,2,1],[0,2,3,1],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[0,2,4,1],[2,1,3,2],[0,0,2,1]],[[1,2,2,2],[0,2,3,1],[2,1,3,2],[0,0,2,1]],[[1,2,3,1],[0,2,3,1],[2,1,3,2],[0,0,2,1]],[[1,3,2,1],[0,2,3,1],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[0,2,3,1],[2,1,3,1],[0,2,3,0]],[[1,2,2,1],[0,2,3,1],[2,1,3,1],[0,3,2,0]],[[1,2,2,1],[0,2,3,1],[2,1,4,1],[0,2,2,0]],[[1,2,2,1],[0,2,4,1],[2,1,3,1],[0,2,2,0]],[[1,2,2,2],[0,2,3,1],[2,1,3,1],[0,2,2,0]],[[1,2,3,1],[0,2,3,1],[2,1,3,1],[0,2,2,0]],[[1,3,2,1],[0,2,3,1],[2,1,3,1],[0,2,2,0]],[[2,2,2,1],[0,2,3,1],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,2,3,1],[2,1,4,1],[0,2,1,1]],[[1,2,2,1],[0,2,4,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,2],[0,2,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,3,1],[0,2,3,1],[2,1,3,1],[0,2,1,1]],[[1,3,2,1],[0,2,3,1],[2,1,3,1],[0,2,1,1]],[[2,2,2,1],[0,2,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[0,2,3,1],[2,1,3,0],[0,2,2,2]],[[1,2,2,1],[0,2,3,1],[2,1,3,0],[0,2,3,1]],[[1,2,2,1],[0,2,3,1],[2,1,3,0],[0,3,2,1]],[[1,2,2,1],[0,2,3,1],[2,1,4,0],[0,2,2,1]],[[1,2,2,1],[0,2,4,1],[2,1,3,0],[0,2,2,1]],[[1,2,2,2],[0,2,3,1],[2,1,3,0],[0,2,2,1]],[[1,2,3,1],[0,2,3,1],[2,1,3,0],[0,2,2,1]],[[1,3,2,1],[0,2,3,1],[2,1,3,0],[0,2,2,1]],[[2,2,2,1],[0,2,3,1],[2,1,3,0],[0,2,2,1]],[[0,2,2,1],[0,3,1,2],[2,4,0,1],[1,2,2,1]],[[0,2,2,1],[0,3,1,2],[2,3,0,1],[2,2,2,1]],[[0,2,2,1],[0,3,1,2],[2,3,0,1],[1,3,2,1]],[[0,2,2,1],[0,3,1,2],[2,3,0,1],[1,2,3,1]],[[0,2,2,1],[0,3,1,2],[2,3,0,1],[1,2,2,2]],[[0,2,2,1],[0,3,1,2],[2,4,0,2],[1,2,1,1]],[[0,2,2,1],[0,3,1,2],[2,3,0,2],[2,2,1,1]],[[0,2,2,1],[0,3,1,2],[2,3,0,2],[1,3,1,1]],[[0,2,2,1],[0,3,1,2],[2,4,0,2],[1,2,2,0]],[[0,2,2,1],[0,3,1,2],[2,3,0,2],[2,2,2,0]],[[0,2,2,1],[0,3,1,2],[2,3,0,2],[1,3,2,0]],[[0,2,2,1],[0,3,1,2],[2,3,0,2],[1,2,3,0]],[[0,2,2,1],[0,3,1,2],[2,4,1,0],[1,2,2,1]],[[0,2,2,1],[0,3,1,2],[2,3,1,0],[2,2,2,1]],[[0,2,2,1],[0,3,1,2],[2,3,1,0],[1,3,2,1]],[[0,2,2,1],[0,3,1,2],[2,3,1,0],[1,2,3,1]],[[0,2,2,1],[0,3,1,2],[2,3,1,0],[1,2,2,2]],[[0,2,2,1],[0,3,1,2],[2,4,1,1],[1,2,2,0]],[[0,2,2,1],[0,3,1,2],[2,3,1,1],[2,2,2,0]],[[0,2,2,1],[0,3,1,2],[2,3,1,1],[1,3,2,0]],[[0,2,2,1],[0,3,1,2],[2,3,1,1],[1,2,3,0]],[[0,2,2,1],[0,3,1,2],[2,4,1,2],[1,2,0,1]],[[0,2,2,1],[0,3,1,2],[2,3,1,2],[2,2,0,1]],[[0,2,2,1],[0,3,1,2],[2,3,1,2],[1,3,0,1]],[[0,2,2,1],[0,3,1,2],[2,4,1,2],[1,2,1,0]],[[0,2,2,1],[0,3,1,2],[2,3,1,2],[2,2,1,0]],[[0,2,2,1],[0,3,1,2],[2,3,1,2],[1,3,1,0]],[[0,2,2,1],[0,3,1,2],[2,4,2,0],[1,2,1,1]],[[0,2,2,1],[0,3,1,2],[2,3,2,0],[2,2,1,1]],[[0,2,2,1],[0,3,1,2],[2,3,2,0],[1,3,1,1]],[[0,2,2,1],[0,3,1,2],[2,4,2,1],[1,2,0,1]],[[0,2,2,1],[0,3,1,2],[2,3,2,1],[2,2,0,1]],[[0,2,2,1],[0,3,1,2],[2,3,2,1],[1,3,0,1]],[[0,2,2,1],[0,3,1,2],[2,4,2,1],[1,2,1,0]],[[0,2,2,1],[0,3,1,2],[2,3,2,1],[2,2,1,0]],[[0,2,2,1],[0,3,1,2],[2,3,2,1],[1,3,1,0]],[[1,2,2,1],[0,2,4,1],[2,1,2,2],[0,2,2,0]],[[1,2,2,2],[0,2,3,1],[2,1,2,2],[0,2,2,0]],[[1,2,3,1],[0,2,3,1],[2,1,2,2],[0,2,2,0]],[[1,3,2,1],[0,2,3,1],[2,1,2,2],[0,2,2,0]],[[2,2,2,1],[0,2,3,1],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[0,2,4,1],[2,1,2,2],[0,2,1,1]],[[1,2,2,2],[0,2,3,1],[2,1,2,2],[0,2,1,1]],[[1,2,3,1],[0,2,3,1],[2,1,2,2],[0,2,1,1]],[[1,3,2,1],[0,2,3,1],[2,1,2,2],[0,2,1,1]],[[2,2,2,1],[0,2,3,1],[2,1,2,2],[0,2,1,1]],[[1,2,2,1],[0,2,4,1],[2,1,1,2],[0,2,2,1]],[[1,2,2,2],[0,2,3,1],[2,1,1,2],[0,2,2,1]],[[1,2,3,1],[0,2,3,1],[2,1,1,2],[0,2,2,1]],[[1,3,2,1],[0,2,3,1],[2,1,1,2],[0,2,2,1]],[[2,2,2,1],[0,2,3,1],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[0,2,4,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[0,2,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[0,2,3,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[0,2,3,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[0,2,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[0,2,4,1],[2,0,3,2],[0,2,2,0]],[[1,2,2,2],[0,2,3,1],[2,0,3,2],[0,2,2,0]],[[1,2,3,1],[0,2,3,1],[2,0,3,2],[0,2,2,0]],[[1,3,2,1],[0,2,3,1],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[0,2,4,1],[2,0,3,2],[0,2,1,1]],[[1,2,2,2],[0,2,3,1],[2,0,3,2],[0,2,1,1]],[[1,2,3,1],[0,2,3,1],[2,0,3,2],[0,2,1,1]],[[1,3,2,1],[0,2,3,1],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[0,2,4,1],[2,0,3,2],[0,1,2,1]],[[1,2,2,2],[0,2,3,1],[2,0,3,2],[0,1,2,1]],[[1,2,3,1],[0,2,3,1],[2,0,3,2],[0,1,2,1]],[[1,3,2,1],[0,2,3,1],[2,0,3,2],[0,1,2,1]],[[1,2,2,1],[0,2,3,1],[2,0,3,1],[1,2,3,0]],[[1,2,2,1],[0,2,3,1],[2,0,3,1],[1,3,2,0]],[[1,2,2,1],[0,2,3,1],[2,0,3,1],[2,2,2,0]],[[1,2,2,1],[0,2,3,1],[2,0,4,1],[1,2,2,0]],[[1,2,2,1],[0,2,3,1],[3,0,3,1],[1,2,2,0]],[[1,2,2,1],[0,2,4,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[0,2,3,1],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[0,2,3,1],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[0,2,3,1],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[0,2,3,1],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[0,2,3,1],[2,0,4,1],[1,2,1,1]],[[1,2,2,1],[0,2,4,1],[2,0,3,1],[1,2,1,1]],[[1,2,2,2],[0,2,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[0,2,3,1],[2,0,3,1],[1,2,1,1]],[[1,3,2,1],[0,2,3,1],[2,0,3,1],[1,2,1,1]],[[2,2,2,1],[0,2,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[0,2,3,1],[2,0,3,0],[1,2,2,2]],[[1,2,2,1],[0,2,3,1],[2,0,3,0],[1,2,3,1]],[[1,2,2,1],[0,2,3,1],[2,0,3,0],[1,3,2,1]],[[1,2,2,1],[0,2,3,1],[2,0,3,0],[2,2,2,1]],[[1,2,2,1],[0,2,3,1],[2,0,4,0],[1,2,2,1]],[[1,2,2,1],[0,2,3,1],[3,0,3,0],[1,2,2,1]],[[1,2,2,1],[0,2,4,1],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[0,2,3,1],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[0,2,3,1],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[0,2,3,1],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[0,2,3,1],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[0,2,4,1],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[0,2,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[0,2,3,1],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[0,2,3,1],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[0,2,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[0,2,4,1],[2,0,2,2],[1,2,1,1]],[[1,2,2,2],[0,2,3,1],[2,0,2,2],[1,2,1,1]],[[1,2,3,1],[0,2,3,1],[2,0,2,2],[1,2,1,1]],[[1,3,2,1],[0,2,3,1],[2,0,2,2],[1,2,1,1]],[[2,2,2,1],[0,2,3,1],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[0,2,4,1],[2,0,2,2],[0,2,2,1]],[[1,2,2,2],[0,2,3,1],[2,0,2,2],[0,2,2,1]],[[1,2,3,1],[0,2,3,1],[2,0,2,2],[0,2,2,1]],[[1,3,2,1],[0,2,3,1],[2,0,2,2],[0,2,2,1]],[[1,2,2,1],[0,2,4,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[0,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[0,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[0,2,3,1],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[0,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[0,2,4,1],[1,3,3,1],[1,2,0,0]],[[1,2,2,2],[0,2,3,1],[1,3,3,1],[1,2,0,0]],[[1,2,3,1],[0,2,3,1],[1,3,3,1],[1,2,0,0]],[[1,3,2,1],[0,2,3,1],[1,3,3,1],[1,2,0,0]],[[2,2,2,1],[0,2,3,1],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[0,3,2,0],[2,4,0,2],[1,2,2,1]],[[0,2,2,1],[0,3,2,0],[2,3,0,3],[1,2,2,1]],[[0,2,2,1],[0,3,2,0],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[0,3,2,0],[2,3,0,2],[1,3,2,1]],[[0,2,2,1],[0,3,2,0],[2,3,0,2],[1,2,3,1]],[[0,2,2,1],[0,3,2,0],[2,3,0,2],[1,2,2,2]],[[0,2,2,1],[0,3,2,0],[2,4,1,1],[1,2,2,1]],[[0,2,2,1],[0,3,2,0],[2,3,1,1],[2,2,2,1]],[[0,2,2,1],[0,3,2,0],[2,3,1,1],[1,3,2,1]],[[0,2,2,1],[0,3,2,0],[2,3,1,1],[1,2,3,1]],[[0,2,2,1],[0,3,2,0],[2,3,1,1],[1,2,2,2]],[[0,2,2,1],[0,3,2,0],[2,4,1,2],[1,2,2,0]],[[0,2,2,1],[0,3,2,0],[2,3,1,2],[2,2,2,0]],[[0,2,2,1],[0,3,2,0],[2,3,1,2],[1,3,2,0]],[[0,2,2,1],[0,3,2,0],[2,3,1,2],[1,2,3,0]],[[0,2,2,1],[0,3,2,0],[2,4,2,1],[1,2,1,1]],[[0,2,2,1],[0,3,2,0],[2,3,2,1],[2,2,1,1]],[[0,2,2,1],[0,3,2,0],[2,3,2,1],[1,3,1,1]],[[0,2,2,1],[0,3,2,0],[2,4,2,2],[1,2,0,1]],[[0,2,2,1],[0,3,2,0],[2,3,2,2],[2,2,0,1]],[[0,2,2,1],[0,3,2,0],[2,3,2,2],[1,3,0,1]],[[0,2,2,1],[0,3,2,0],[2,4,2,2],[1,2,1,0]],[[0,2,2,1],[0,3,2,0],[2,3,2,2],[2,2,1,0]],[[0,2,2,1],[0,3,2,0],[2,3,2,2],[1,3,1,0]],[[1,2,2,1],[0,2,4,1],[1,3,3,0],[1,2,1,0]],[[1,2,2,2],[0,2,3,1],[1,3,3,0],[1,2,1,0]],[[1,2,3,1],[0,2,3,1],[1,3,3,0],[1,2,1,0]],[[1,3,2,1],[0,2,3,1],[1,3,3,0],[1,2,1,0]],[[2,2,2,1],[0,2,3,1],[1,3,3,0],[1,2,1,0]],[[1,2,2,1],[0,2,4,1],[1,3,3,0],[1,1,2,0]],[[1,2,2,2],[0,2,3,1],[1,3,3,0],[1,1,2,0]],[[1,2,3,1],[0,2,3,1],[1,3,3,0],[1,1,2,0]],[[1,3,2,1],[0,2,3,1],[1,3,3,0],[1,1,2,0]],[[2,2,2,1],[0,2,3,1],[1,3,3,0],[1,1,2,0]],[[0,2,2,1],[0,3,2,1],[2,4,0,1],[1,2,2,1]],[[0,2,2,1],[0,3,2,1],[2,3,0,1],[2,2,2,1]],[[0,2,2,1],[0,3,2,1],[2,3,0,1],[1,3,2,1]],[[0,2,2,1],[0,3,2,1],[2,3,0,1],[1,2,3,1]],[[0,2,2,1],[0,3,2,1],[2,3,0,1],[1,2,2,2]],[[0,2,2,1],[0,3,2,1],[2,4,0,2],[1,2,1,1]],[[0,2,2,1],[0,3,2,1],[2,3,0,2],[2,2,1,1]],[[0,2,2,1],[0,3,2,1],[2,3,0,2],[1,3,1,1]],[[0,2,2,1],[0,3,2,1],[2,4,0,2],[1,2,2,0]],[[0,2,2,1],[0,3,2,1],[2,3,0,2],[2,2,2,0]],[[0,2,2,1],[0,3,2,1],[2,3,0,2],[1,3,2,0]],[[0,2,2,1],[0,3,2,1],[2,3,0,2],[1,2,3,0]],[[0,2,2,1],[0,3,2,1],[2,4,1,0],[1,2,2,1]],[[0,2,2,1],[0,3,2,1],[2,3,1,0],[2,2,2,1]],[[0,2,2,1],[0,3,2,1],[2,3,1,0],[1,3,2,1]],[[0,2,2,1],[0,3,2,1],[2,3,1,0],[1,2,3,1]],[[0,2,2,1],[0,3,2,1],[2,3,1,0],[1,2,2,2]],[[0,2,2,1],[0,3,2,1],[2,4,1,1],[1,2,2,0]],[[0,2,2,1],[0,3,2,1],[2,3,1,1],[2,2,2,0]],[[0,2,2,1],[0,3,2,1],[2,3,1,1],[1,3,2,0]],[[0,2,2,1],[0,3,2,1],[2,3,1,1],[1,2,3,0]],[[0,2,2,1],[0,3,2,1],[2,4,1,2],[1,2,0,1]],[[0,2,2,1],[0,3,2,1],[2,3,1,2],[2,2,0,1]],[[0,2,2,1],[0,3,2,1],[2,3,1,2],[1,3,0,1]],[[0,2,2,1],[0,3,2,1],[2,4,1,2],[1,2,1,0]],[[0,2,2,1],[0,3,2,1],[2,3,1,2],[2,2,1,0]],[[0,2,2,1],[0,3,2,1],[2,3,1,2],[1,3,1,0]],[[0,2,2,1],[0,3,2,1],[2,4,2,0],[1,2,1,1]],[[0,2,2,1],[0,3,2,1],[2,3,2,0],[2,2,1,1]],[[0,2,2,1],[0,3,2,1],[2,3,2,0],[1,3,1,1]],[[0,2,2,1],[0,3,2,1],[2,4,2,1],[1,2,0,1]],[[0,2,2,1],[0,3,2,1],[2,3,2,1],[2,2,0,1]],[[0,2,2,1],[0,3,2,1],[2,3,2,1],[1,3,0,1]],[[0,2,2,1],[0,3,2,1],[2,4,2,1],[1,2,1,0]],[[0,2,2,1],[0,3,2,1],[2,3,2,1],[2,2,1,0]],[[0,2,2,1],[0,3,2,1],[2,3,2,1],[1,3,1,0]],[[1,2,2,1],[0,2,4,1],[1,3,2,1],[1,2,1,0]],[[1,2,2,2],[0,2,3,1],[1,3,2,1],[1,2,1,0]],[[1,2,3,1],[0,2,3,1],[1,3,2,1],[1,2,1,0]],[[0,2,2,1],[0,3,2,1],[2,4,3,0],[1,2,1,0]],[[0,2,2,1],[0,3,2,1],[2,3,3,0],[2,2,1,0]],[[0,2,2,1],[0,3,2,1],[2,3,3,0],[1,3,1,0]],[[1,3,2,1],[0,2,3,1],[1,3,2,1],[1,2,1,0]],[[2,2,2,1],[0,2,3,1],[1,3,2,1],[1,2,1,0]],[[1,2,2,1],[0,2,4,1],[1,3,2,1],[1,2,0,1]],[[1,2,2,2],[0,2,3,1],[1,3,2,1],[1,2,0,1]],[[1,2,3,1],[0,2,3,1],[1,3,2,1],[1,2,0,1]],[[1,3,2,1],[0,2,3,1],[1,3,2,1],[1,2,0,1]],[[2,2,2,1],[0,2,3,1],[1,3,2,1],[1,2,0,1]],[[1,2,2,1],[0,2,4,1],[1,3,2,1],[1,1,2,0]],[[1,2,2,2],[0,2,3,1],[1,3,2,1],[1,1,2,0]],[[1,2,3,1],[0,2,3,1],[1,3,2,1],[1,1,2,0]],[[1,3,2,1],[0,2,3,1],[1,3,2,1],[1,1,2,0]],[[2,2,2,1],[0,2,3,1],[1,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,2,4,1],[1,3,2,1],[1,1,1,1]],[[1,2,2,2],[0,2,3,1],[1,3,2,1],[1,1,1,1]],[[1,2,3,1],[0,2,3,1],[1,3,2,1],[1,1,1,1]],[[1,3,2,1],[0,2,3,1],[1,3,2,1],[1,1,1,1]],[[2,2,2,1],[0,2,3,1],[1,3,2,1],[1,1,1,1]],[[1,2,2,1],[0,2,4,1],[1,3,2,0],[1,2,1,1]],[[1,2,2,2],[0,2,3,1],[1,3,2,0],[1,2,1,1]],[[1,2,3,1],[0,2,3,1],[1,3,2,0],[1,2,1,1]],[[1,3,2,1],[0,2,3,1],[1,3,2,0],[1,2,1,1]],[[2,2,2,1],[0,2,3,1],[1,3,2,0],[1,2,1,1]],[[1,2,2,1],[0,2,4,1],[1,3,2,0],[1,1,2,1]],[[1,2,2,2],[0,2,3,1],[1,3,2,0],[1,1,2,1]],[[1,2,3,1],[0,2,3,1],[1,3,2,0],[1,1,2,1]],[[1,3,2,1],[0,2,3,1],[1,3,2,0],[1,1,2,1]],[[2,2,2,1],[0,2,3,1],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,2,4,1],[1,3,1,2],[1,2,1,0]],[[1,2,2,2],[0,2,3,1],[1,3,1,2],[1,2,1,0]],[[1,2,3,1],[0,2,3,1],[1,3,1,2],[1,2,1,0]],[[1,3,2,1],[0,2,3,1],[1,3,1,2],[1,2,1,0]],[[2,2,2,1],[0,2,3,1],[1,3,1,2],[1,2,1,0]],[[1,2,2,1],[0,2,4,1],[1,3,1,2],[1,2,0,1]],[[1,2,2,2],[0,2,3,1],[1,3,1,2],[1,2,0,1]],[[1,2,3,1],[0,2,3,1],[1,3,1,2],[1,2,0,1]],[[1,3,2,1],[0,2,3,1],[1,3,1,2],[1,2,0,1]],[[2,2,2,1],[0,2,3,1],[1,3,1,2],[1,2,0,1]],[[1,2,2,1],[0,2,4,1],[1,3,1,2],[1,1,2,0]],[[1,2,2,2],[0,2,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,3,1],[0,2,3,1],[1,3,1,2],[1,1,2,0]],[[1,3,2,1],[0,2,3,1],[1,3,1,2],[1,1,2,0]],[[2,2,2,1],[0,2,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,2,4,1],[1,3,1,2],[1,1,1,1]],[[1,2,2,2],[0,2,3,1],[1,3,1,2],[1,1,1,1]],[[1,2,3,1],[0,2,3,1],[1,3,1,2],[1,1,1,1]],[[1,3,2,1],[0,2,3,1],[1,3,1,2],[1,1,1,1]],[[2,2,2,1],[0,2,3,1],[1,3,1,2],[1,1,1,1]],[[1,2,2,1],[0,2,4,1],[1,3,1,1],[1,2,2,0]],[[1,2,2,2],[0,2,3,1],[1,3,1,1],[1,2,2,0]],[[1,2,3,1],[0,2,3,1],[1,3,1,1],[1,2,2,0]],[[1,3,2,1],[0,2,3,1],[1,3,1,1],[1,2,2,0]],[[2,2,2,1],[0,2,3,1],[1,3,1,1],[1,2,2,0]],[[1,2,2,1],[0,2,4,1],[1,3,1,0],[1,2,2,1]],[[1,2,2,2],[0,2,3,1],[1,3,1,0],[1,2,2,1]],[[1,2,3,1],[0,2,3,1],[1,3,1,0],[1,2,2,1]],[[1,3,2,1],[0,2,3,1],[1,3,1,0],[1,2,2,1]],[[2,2,2,1],[0,2,3,1],[1,3,1,0],[1,2,2,1]],[[1,2,2,1],[0,2,4,1],[1,3,0,2],[1,2,2,0]],[[1,2,2,2],[0,2,3,1],[1,3,0,2],[1,2,2,0]],[[1,2,3,1],[0,2,3,1],[1,3,0,2],[1,2,2,0]],[[1,3,2,1],[0,2,3,1],[1,3,0,2],[1,2,2,0]],[[2,2,2,1],[0,2,3,1],[1,3,0,2],[1,2,2,0]],[[1,2,2,1],[0,2,4,1],[1,3,0,2],[1,2,1,1]],[[1,2,2,2],[0,2,3,1],[1,3,0,2],[1,2,1,1]],[[1,2,3,1],[0,2,3,1],[1,3,0,2],[1,2,1,1]],[[1,3,2,1],[0,2,3,1],[1,3,0,2],[1,2,1,1]],[[2,2,2,1],[0,2,3,1],[1,3,0,2],[1,2,1,1]],[[1,2,2,1],[0,2,4,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,2],[0,2,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,3,1],[0,2,3,1],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[0,2,3,1],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[0,2,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,2,4,1],[1,3,0,1],[1,2,2,1]],[[1,2,2,2],[0,2,3,1],[1,3,0,1],[1,2,2,1]],[[1,2,3,1],[0,2,3,1],[1,3,0,1],[1,2,2,1]],[[1,3,2,1],[0,2,3,1],[1,3,0,1],[1,2,2,1]],[[2,2,2,1],[0,2,3,1],[1,3,0,1],[1,2,2,1]],[[1,2,2,1],[0,2,4,1],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,2,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[0,2,3,1],[1,2,3,2],[1,1,0,1]],[[1,3,2,1],[0,2,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[0,2,3,1],[1,2,4,1],[1,2,1,0]],[[1,2,2,1],[0,2,4,1],[1,2,3,1],[1,2,1,0]],[[1,2,2,2],[0,2,3,1],[1,2,3,1],[1,2,1,0]],[[1,2,3,1],[0,2,3,1],[1,2,3,1],[1,2,1,0]],[[1,3,2,1],[0,2,3,1],[1,2,3,1],[1,2,1,0]],[[2,2,2,1],[0,2,3,1],[1,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,2,3,1],[1,2,4,1],[1,2,0,1]],[[1,2,2,1],[0,2,4,1],[1,2,3,1],[1,2,0,1]],[[1,2,2,2],[0,2,3,1],[1,2,3,1],[1,2,0,1]],[[1,2,3,1],[0,2,3,1],[1,2,3,1],[1,2,0,1]],[[1,3,2,1],[0,2,3,1],[1,2,3,1],[1,2,0,1]],[[2,2,2,1],[0,2,3,1],[1,2,3,1],[1,2,0,1]],[[1,2,2,1],[0,2,3,1],[1,2,3,1],[1,1,3,0]],[[1,2,2,1],[0,2,3,1],[1,2,4,1],[1,1,2,0]],[[1,2,2,1],[0,2,4,1],[1,2,3,1],[1,1,2,0]],[[1,2,2,2],[0,2,3,1],[1,2,3,1],[1,1,2,0]],[[1,2,3,1],[0,2,3,1],[1,2,3,1],[1,1,2,0]],[[1,3,2,1],[0,2,3,1],[1,2,3,1],[1,1,2,0]],[[2,2,2,1],[0,2,3,1],[1,2,3,1],[1,1,2,0]],[[1,2,2,1],[0,2,3,1],[1,2,4,1],[1,1,1,1]],[[1,2,2,1],[0,2,4,1],[1,2,3,1],[1,1,1,1]],[[1,2,2,2],[0,2,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,3,1],[0,2,3,1],[1,2,3,1],[1,1,1,1]],[[1,3,2,1],[0,2,3,1],[1,2,3,1],[1,1,1,1]],[[2,2,2,1],[0,2,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,2,3,1],[1,2,4,1],[1,0,2,1]],[[1,2,2,1],[0,2,4,1],[1,2,3,1],[1,0,2,1]],[[1,2,2,2],[0,2,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,3,1],[0,2,3,1],[1,2,3,1],[1,0,2,1]],[[1,3,2,1],[0,2,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,2,1],[0,2,3,1],[1,2,4,0],[1,2,1,1]],[[1,2,2,1],[0,2,4,1],[1,2,3,0],[1,2,1,1]],[[1,2,2,2],[0,2,3,1],[1,2,3,0],[1,2,1,1]],[[1,2,3,1],[0,2,3,1],[1,2,3,0],[1,2,1,1]],[[1,3,2,1],[0,2,3,1],[1,2,3,0],[1,2,1,1]],[[2,2,2,1],[0,2,3,1],[1,2,3,0],[1,2,1,1]],[[1,2,2,1],[0,2,3,1],[1,2,3,0],[1,1,2,2]],[[1,2,2,1],[0,2,3,1],[1,2,3,0],[1,1,3,1]],[[1,2,2,1],[0,2,3,1],[1,2,4,0],[1,1,2,1]],[[1,2,2,1],[0,2,4,1],[1,2,3,0],[1,1,2,1]],[[1,2,2,2],[0,2,3,1],[1,2,3,0],[1,1,2,1]],[[1,2,3,1],[0,2,3,1],[1,2,3,0],[1,1,2,1]],[[1,3,2,1],[0,2,3,1],[1,2,3,0],[1,1,2,1]],[[2,2,2,1],[0,2,3,1],[1,2,3,0],[1,1,2,1]],[[1,2,2,1],[0,2,4,1],[1,2,2,2],[1,2,1,0]],[[1,2,2,2],[0,2,3,1],[1,2,2,2],[1,2,1,0]],[[1,2,3,1],[0,2,3,1],[1,2,2,2],[1,2,1,0]],[[1,3,2,1],[0,2,3,1],[1,2,2,2],[1,2,1,0]],[[2,2,2,1],[0,2,3,1],[1,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,2,4,1],[1,2,2,2],[1,2,0,1]],[[1,2,2,2],[0,2,3,1],[1,2,2,2],[1,2,0,1]],[[1,2,3,1],[0,2,3,1],[1,2,2,2],[1,2,0,1]],[[1,3,2,1],[0,2,3,1],[1,2,2,2],[1,2,0,1]],[[2,2,2,1],[0,2,3,1],[1,2,2,2],[1,2,0,1]],[[1,2,2,1],[0,2,4,1],[1,2,2,2],[1,1,2,0]],[[1,2,2,2],[0,2,3,1],[1,2,2,2],[1,1,2,0]],[[1,2,3,1],[0,2,3,1],[1,2,2,2],[1,1,2,0]],[[1,3,2,1],[0,2,3,1],[1,2,2,2],[1,1,2,0]],[[2,2,2,1],[0,2,3,1],[1,2,2,2],[1,1,2,0]],[[1,2,2,1],[0,2,4,1],[1,2,2,2],[1,1,1,1]],[[1,2,2,2],[0,2,3,1],[1,2,2,2],[1,1,1,1]],[[1,2,3,1],[0,2,3,1],[1,2,2,2],[1,1,1,1]],[[1,3,2,1],[0,2,3,1],[1,2,2,2],[1,1,1,1]],[[2,2,2,1],[0,2,3,1],[1,2,2,2],[1,1,1,1]],[[1,2,2,1],[0,2,4,1],[1,2,2,2],[1,0,2,1]],[[1,2,2,2],[0,2,3,1],[1,2,2,2],[1,0,2,1]],[[1,2,3,1],[0,2,3,1],[1,2,2,2],[1,0,2,1]],[[1,3,2,1],[0,2,3,1],[1,2,2,2],[1,0,2,1]],[[1,2,2,1],[0,2,4,1],[1,2,1,2],[1,1,2,1]],[[1,2,2,2],[0,2,3,1],[1,2,1,2],[1,1,2,1]],[[1,2,3,1],[0,2,3,1],[1,2,1,2],[1,1,2,1]],[[1,3,2,1],[0,2,3,1],[1,2,1,2],[1,1,2,1]],[[2,2,2,1],[0,2,3,1],[1,2,1,2],[1,1,2,1]],[[1,2,2,1],[0,2,4,1],[1,2,0,2],[1,2,2,1]],[[1,2,2,2],[0,2,3,1],[1,2,0,2],[1,2,2,1]],[[1,2,3,1],[0,2,3,1],[1,2,0,2],[1,2,2,1]],[[1,3,2,1],[0,2,3,1],[1,2,0,2],[1,2,2,1]],[[2,2,2,1],[0,2,3,1],[1,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,2,4,1],[1,1,3,2],[1,1,2,0]],[[1,2,2,2],[0,2,3,1],[1,1,3,2],[1,1,2,0]],[[1,2,3,1],[0,2,3,1],[1,1,3,2],[1,1,2,0]],[[1,3,2,1],[0,2,3,1],[1,1,3,2],[1,1,2,0]],[[1,2,2,1],[0,2,4,1],[1,1,3,2],[1,1,1,1]],[[1,2,2,2],[0,2,3,1],[1,1,3,2],[1,1,1,1]],[[1,2,3,1],[0,2,3,1],[1,1,3,2],[1,1,1,1]],[[1,3,2,1],[0,2,3,1],[1,1,3,2],[1,1,1,1]],[[1,2,2,1],[0,2,4,1],[1,1,3,2],[1,0,2,1]],[[1,2,2,2],[0,2,3,1],[1,1,3,2],[1,0,2,1]],[[1,2,3,1],[0,2,3,1],[1,1,3,2],[1,0,2,1]],[[1,3,2,1],[0,2,3,1],[1,1,3,2],[1,0,2,1]],[[1,2,2,1],[0,2,3,1],[1,1,3,1],[1,2,3,0]],[[1,2,2,1],[0,2,3,1],[1,1,3,1],[1,3,2,0]],[[1,2,2,1],[0,2,3,1],[1,1,3,1],[2,2,2,0]],[[1,2,2,1],[0,2,3,1],[1,1,4,1],[1,2,2,0]],[[1,2,2,1],[0,2,4,1],[1,1,3,1],[1,2,2,0]],[[1,2,2,2],[0,2,3,1],[1,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,2,3,1],[1,1,3,1],[1,2,2,0]],[[1,3,2,1],[0,2,3,1],[1,1,3,1],[1,2,2,0]],[[2,2,2,1],[0,2,3,1],[1,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,2,3,1],[1,1,4,1],[1,2,1,1]],[[1,2,2,1],[0,2,4,1],[1,1,3,1],[1,2,1,1]],[[1,2,2,2],[0,2,3,1],[1,1,3,1],[1,2,1,1]],[[1,2,3,1],[0,2,3,1],[1,1,3,1],[1,2,1,1]],[[1,3,2,1],[0,2,3,1],[1,1,3,1],[1,2,1,1]],[[2,2,2,1],[0,2,3,1],[1,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,2,3,1],[1,1,3,0],[1,2,2,2]],[[1,2,2,1],[0,2,3,1],[1,1,3,0],[1,2,3,1]],[[1,2,2,1],[0,2,3,1],[1,1,3,0],[1,3,2,1]],[[1,2,2,1],[0,2,3,1],[1,1,3,0],[2,2,2,1]],[[1,2,2,1],[0,2,3,1],[1,1,4,0],[1,2,2,1]],[[1,2,2,1],[0,2,4,1],[1,1,3,0],[1,2,2,1]],[[1,2,2,2],[0,2,3,1],[1,1,3,0],[1,2,2,1]],[[1,2,3,1],[0,2,3,1],[1,1,3,0],[1,2,2,1]],[[1,3,2,1],[0,2,3,1],[1,1,3,0],[1,2,2,1]],[[2,2,2,1],[0,2,3,1],[1,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,2,4,1],[1,1,2,2],[1,2,2,0]],[[1,2,2,2],[0,2,3,1],[1,1,2,2],[1,2,2,0]],[[1,2,3,1],[0,2,3,1],[1,1,2,2],[1,2,2,0]],[[1,3,2,1],[0,2,3,1],[1,1,2,2],[1,2,2,0]],[[2,2,2,1],[0,2,3,1],[1,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,2,4,1],[1,1,2,2],[1,2,1,1]],[[1,2,2,2],[0,2,3,1],[1,1,2,2],[1,2,1,1]],[[1,2,3,1],[0,2,3,1],[1,1,2,2],[1,2,1,1]],[[1,3,2,1],[0,2,3,1],[1,1,2,2],[1,2,1,1]],[[2,2,2,1],[0,2,3,1],[1,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,2,4,1],[1,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,2,3,1],[1,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,2,3,1],[1,1,1,2],[1,2,2,1]],[[1,3,2,1],[0,2,3,1],[1,1,1,2],[1,2,2,1]],[[2,2,2,1],[0,2,3,1],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,2,4,1],[1,0,3,2],[1,2,2,0]],[[1,2,2,2],[0,2,3,1],[1,0,3,2],[1,2,2,0]],[[1,2,3,1],[0,2,3,1],[1,0,3,2],[1,2,2,0]],[[1,3,2,1],[0,2,3,1],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,4,1],[1,0,3,2],[1,2,1,1]],[[1,2,2,2],[0,2,3,1],[1,0,3,2],[1,2,1,1]],[[1,2,3,1],[0,2,3,1],[1,0,3,2],[1,2,1,1]],[[1,3,2,1],[0,2,3,1],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,2,4,1],[1,0,3,2],[1,1,2,1]],[[1,2,2,2],[0,2,3,1],[1,0,3,2],[1,1,2,1]],[[1,2,3,1],[0,2,3,1],[1,0,3,2],[1,1,2,1]],[[1,3,2,1],[0,2,3,1],[1,0,3,2],[1,1,2,1]],[[1,2,2,1],[0,2,4,1],[1,0,2,2],[1,2,2,1]],[[1,2,2,2],[0,2,3,1],[1,0,2,2],[1,2,2,1]],[[1,2,3,1],[0,2,3,1],[1,0,2,2],[1,2,2,1]],[[1,3,2,1],[0,2,3,1],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[0,3,2,2],[2,4,1,0],[1,2,2,0]],[[0,2,2,1],[0,3,2,2],[2,3,1,0],[2,2,2,0]],[[0,2,2,1],[0,3,2,2],[2,3,1,0],[1,3,2,0]],[[0,2,2,1],[0,3,2,2],[2,4,2,0],[1,2,1,0]],[[0,2,2,1],[0,3,2,2],[2,3,2,0],[2,2,1,0]],[[0,2,2,1],[0,3,2,2],[2,3,2,0],[1,3,1,0]],[[1,2,2,1],[0,2,4,0],[2,3,3,2],[1,1,0,0]],[[1,2,2,2],[0,2,3,0],[2,3,3,2],[1,1,0,0]],[[1,2,3,1],[0,2,3,0],[2,3,3,2],[1,1,0,0]],[[1,3,2,1],[0,2,3,0],[2,3,3,2],[1,1,0,0]],[[2,2,2,1],[0,2,3,0],[2,3,3,2],[1,1,0,0]],[[1,2,2,1],[0,2,4,0],[2,3,3,2],[0,2,0,0]],[[1,2,2,2],[0,2,3,0],[2,3,3,2],[0,2,0,0]],[[1,2,3,1],[0,2,3,0],[2,3,3,2],[0,2,0,0]],[[1,3,2,1],[0,2,3,0],[2,3,3,2],[0,2,0,0]],[[2,2,2,1],[0,2,3,0],[2,3,3,2],[0,2,0,0]],[[1,2,2,1],[0,2,3,0],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[0,2,3,0],[2,3,4,2],[0,0,2,0]],[[1,2,2,1],[0,2,4,0],[2,3,3,2],[0,0,2,0]],[[1,2,2,2],[0,2,3,0],[2,3,3,2],[0,0,2,0]],[[1,2,3,1],[0,2,3,0],[2,3,3,2],[0,0,2,0]],[[1,3,2,1],[0,2,3,0],[2,3,3,2],[0,0,2,0]],[[2,2,2,1],[0,2,3,0],[2,3,3,2],[0,0,2,0]],[[1,2,2,1],[0,2,3,0],[2,3,3,2],[0,0,1,2]],[[1,2,2,1],[0,2,3,0],[2,3,3,3],[0,0,1,1]],[[1,2,2,1],[0,2,3,0],[2,3,4,2],[0,0,1,1]],[[1,2,2,1],[0,2,4,0],[2,3,3,2],[0,0,1,1]],[[1,2,2,2],[0,2,3,0],[2,3,3,2],[0,0,1,1]],[[1,2,3,1],[0,2,3,0],[2,3,3,2],[0,0,1,1]],[[1,3,2,1],[0,2,3,0],[2,3,3,2],[0,0,1,1]],[[2,2,2,1],[0,2,3,0],[2,3,3,2],[0,0,1,1]],[[1,2,2,1],[0,2,3,0],[2,3,4,1],[0,0,2,1]],[[1,2,2,1],[0,2,4,0],[2,3,3,1],[0,0,2,1]],[[1,2,2,2],[0,2,3,0],[2,3,3,1],[0,0,2,1]],[[1,2,3,1],[0,2,3,0],[2,3,3,1],[0,0,2,1]],[[1,3,2,1],[0,2,3,0],[2,3,3,1],[0,0,2,1]],[[2,2,2,1],[0,2,3,0],[2,3,3,1],[0,0,2,1]],[[1,2,2,1],[0,2,4,0],[2,3,2,2],[1,2,0,0]],[[1,2,2,2],[0,2,3,0],[2,3,2,2],[1,2,0,0]],[[1,2,3,1],[0,2,3,0],[2,3,2,2],[1,2,0,0]],[[1,3,2,1],[0,2,3,0],[2,3,2,2],[1,2,0,0]],[[2,2,2,1],[0,2,3,0],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[0,2,4,0],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[0,2,3,0],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[0,2,3,0],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[0,2,3,0],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[0,2,3,0],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,2,4,0],[2,3,2,2],[1,1,0,1]],[[1,2,2,2],[0,2,3,0],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[0,2,3,0],[2,3,2,2],[1,1,0,1]],[[1,3,2,1],[0,2,3,0],[2,3,2,2],[1,1,0,1]],[[2,2,2,1],[0,2,3,0],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[0,2,4,0],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[0,2,3,0],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[0,2,3,0],[2,3,2,2],[1,0,2,0]],[[1,3,2,1],[0,2,3,0],[2,3,2,2],[1,0,2,0]],[[2,2,2,1],[0,2,3,0],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[0,2,4,0],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[0,2,3,0],[2,3,2,2],[1,0,1,1]],[[1,2,3,1],[0,2,3,0],[2,3,2,2],[1,0,1,1]],[[1,3,2,1],[0,2,3,0],[2,3,2,2],[1,0,1,1]],[[2,2,2,1],[0,2,3,0],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[0,2,4,0],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[0,2,3,0],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[0,2,3,0],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[0,2,3,0],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[0,2,3,0],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,2,4,0],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[0,2,3,0],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[0,2,3,0],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[0,2,3,0],[2,3,2,2],[0,2,0,1]],[[2,2,2,1],[0,2,3,0],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,2,4,0],[2,3,2,2],[0,1,2,0]],[[1,2,2,2],[0,2,3,0],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[0,2,3,0],[2,3,2,2],[0,1,2,0]],[[1,3,2,1],[0,2,3,0],[2,3,2,2],[0,1,2,0]],[[2,2,2,1],[0,2,3,0],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,2,4,0],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[0,2,3,0],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[0,2,3,0],[2,3,2,2],[0,1,1,1]],[[1,3,2,1],[0,2,3,0],[2,3,2,2],[0,1,1,1]],[[2,2,2,1],[0,2,3,0],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,2,4,0],[2,3,2,1],[1,1,1,1]],[[1,2,2,2],[0,2,3,0],[2,3,2,1],[1,1,1,1]],[[1,2,3,1],[0,2,3,0],[2,3,2,1],[1,1,1,1]],[[1,3,2,1],[0,2,3,0],[2,3,2,1],[1,1,1,1]],[[2,2,2,1],[0,2,3,0],[2,3,2,1],[1,1,1,1]],[[1,2,2,1],[0,2,4,0],[2,3,2,1],[1,0,2,1]],[[1,2,2,2],[0,2,3,0],[2,3,2,1],[1,0,2,1]],[[1,2,3,1],[0,2,3,0],[2,3,2,1],[1,0,2,1]],[[1,3,2,1],[0,2,3,0],[2,3,2,1],[1,0,2,1]],[[2,2,2,1],[0,2,3,0],[2,3,2,1],[1,0,2,1]],[[1,2,2,1],[0,2,4,0],[2,3,2,1],[0,2,1,1]],[[1,2,2,2],[0,2,3,0],[2,3,2,1],[0,2,1,1]],[[1,2,3,1],[0,2,3,0],[2,3,2,1],[0,2,1,1]],[[1,3,2,1],[0,2,3,0],[2,3,2,1],[0,2,1,1]],[[2,2,2,1],[0,2,3,0],[2,3,2,1],[0,2,1,1]],[[1,2,2,1],[0,2,4,0],[2,3,2,1],[0,1,2,1]],[[1,2,2,2],[0,2,3,0],[2,3,2,1],[0,1,2,1]],[[1,2,3,1],[0,2,3,0],[2,3,2,1],[0,1,2,1]],[[1,3,2,1],[0,2,3,0],[2,3,2,1],[0,1,2,1]],[[2,2,2,1],[0,2,3,0],[2,3,2,1],[0,1,2,1]],[[1,2,2,1],[0,2,4,0],[2,3,1,2],[1,1,2,0]],[[1,2,2,2],[0,2,3,0],[2,3,1,2],[1,1,2,0]],[[1,2,3,1],[0,2,3,0],[2,3,1,2],[1,1,2,0]],[[1,3,2,1],[0,2,3,0],[2,3,1,2],[1,1,2,0]],[[2,2,2,1],[0,2,3,0],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,2,4,0],[2,3,1,2],[0,2,2,0]],[[1,2,2,2],[0,2,3,0],[2,3,1,2],[0,2,2,0]],[[1,2,3,1],[0,2,3,0],[2,3,1,2],[0,2,2,0]],[[1,3,2,1],[0,2,3,0],[2,3,1,2],[0,2,2,0]],[[2,2,2,1],[0,2,3,0],[2,3,1,2],[0,2,2,0]],[[1,2,2,1],[0,2,4,0],[2,3,1,1],[1,1,2,1]],[[1,2,2,2],[0,2,3,0],[2,3,1,1],[1,1,2,1]],[[1,2,3,1],[0,2,3,0],[2,3,1,1],[1,1,2,1]],[[1,3,2,1],[0,2,3,0],[2,3,1,1],[1,1,2,1]],[[2,2,2,1],[0,2,3,0],[2,3,1,1],[1,1,2,1]],[[1,2,2,1],[0,2,4,0],[2,3,1,1],[0,2,2,1]],[[1,2,2,2],[0,2,3,0],[2,3,1,1],[0,2,2,1]],[[1,2,3,1],[0,2,3,0],[2,3,1,1],[0,2,2,1]],[[1,3,2,1],[0,2,3,0],[2,3,1,1],[0,2,2,1]],[[2,2,2,1],[0,2,3,0],[2,3,1,1],[0,2,2,1]],[[1,2,2,1],[0,2,4,0],[2,3,0,2],[1,1,2,1]],[[1,2,2,2],[0,2,3,0],[2,3,0,2],[1,1,2,1]],[[1,2,3,1],[0,2,3,0],[2,3,0,2],[1,1,2,1]],[[1,3,2,1],[0,2,3,0],[2,3,0,2],[1,1,2,1]],[[2,2,2,1],[0,2,3,0],[2,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,2,4,0],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[0,2,3,0],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[0,2,3,0],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[0,2,3,0],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[0,2,3,0],[2,3,0,2],[0,2,2,1]],[[1,2,2,1],[0,2,3,0],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[0,2,3,0],[2,2,4,2],[1,1,1,0]],[[1,2,2,1],[0,2,4,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,2],[0,2,3,0],[2,2,3,2],[1,1,1,0]],[[1,2,3,1],[0,2,3,0],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[0,2,3,0],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[0,2,3,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[0,2,3,0],[2,2,3,2],[1,1,0,2]],[[1,2,2,1],[0,2,3,0],[2,2,3,3],[1,1,0,1]],[[1,2,2,1],[0,2,3,0],[2,2,4,2],[1,1,0,1]],[[1,2,2,1],[0,2,4,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,2,3,0],[2,2,3,2],[1,1,0,1]],[[1,2,3,1],[0,2,3,0],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[0,2,3,0],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[0,2,3,0],[2,2,3,2],[1,1,0,1]],[[1,2,2,1],[0,2,3,0],[2,2,3,2],[1,0,3,0]],[[1,2,2,1],[0,2,3,0],[2,2,3,3],[1,0,2,0]],[[1,2,2,1],[0,2,3,0],[2,2,4,2],[1,0,2,0]],[[1,2,2,1],[0,2,4,0],[2,2,3,2],[1,0,2,0]],[[1,2,2,2],[0,2,3,0],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[0,2,3,0],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[0,2,3,0],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[0,2,3,0],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[0,2,3,0],[2,2,3,2],[1,0,1,2]],[[1,2,2,1],[0,2,3,0],[2,2,3,3],[1,0,1,1]],[[1,2,2,1],[0,2,3,0],[2,2,4,2],[1,0,1,1]],[[1,2,2,1],[0,2,4,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[0,2,3,0],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[0,2,3,0],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[0,2,3,0],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[0,2,3,0],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[0,2,3,0],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[0,2,3,0],[2,2,4,2],[0,2,1,0]],[[1,2,2,1],[0,2,4,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,2],[0,2,3,0],[2,2,3,2],[0,2,1,0]],[[1,2,3,1],[0,2,3,0],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[0,2,3,0],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[0,2,3,0],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[0,2,3,0],[2,2,3,2],[0,2,0,2]],[[1,2,2,1],[0,2,3,0],[2,2,3,3],[0,2,0,1]],[[1,2,2,1],[0,2,3,0],[2,2,4,2],[0,2,0,1]],[[1,2,2,1],[0,2,4,0],[2,2,3,2],[0,2,0,1]],[[1,2,2,2],[0,2,3,0],[2,2,3,2],[0,2,0,1]],[[1,2,3,1],[0,2,3,0],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[0,2,3,0],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[0,2,3,0],[2,2,3,2],[0,2,0,1]],[[1,2,2,1],[0,2,3,0],[2,2,3,2],[0,1,3,0]],[[1,2,2,1],[0,2,3,0],[2,2,3,3],[0,1,2,0]],[[1,2,2,1],[0,2,3,0],[2,2,4,2],[0,1,2,0]],[[1,2,2,1],[0,2,4,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[0,2,3,0],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[0,2,3,0],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[0,2,3,0],[2,2,3,2],[0,1,2,0]],[[2,2,2,1],[0,2,3,0],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[0,2,3,0],[2,2,3,2],[0,1,1,2]],[[1,2,2,1],[0,2,3,0],[2,2,3,3],[0,1,1,1]],[[1,2,2,1],[0,2,3,0],[2,2,4,2],[0,1,1,1]],[[1,2,2,1],[0,2,4,0],[2,2,3,2],[0,1,1,1]],[[1,2,2,2],[0,2,3,0],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[0,2,3,0],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[0,2,3,0],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[0,2,3,0],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[0,2,3,0],[2,2,3,2],[0,0,2,2]],[[1,2,2,1],[0,2,3,0],[2,2,3,3],[0,0,2,1]],[[1,2,2,1],[0,2,3,0],[2,2,4,2],[0,0,2,1]],[[1,2,2,1],[0,2,4,0],[2,2,3,2],[0,0,2,1]],[[1,2,2,2],[0,2,3,0],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[0,3,3,0],[2,4,1,0],[1,2,2,1]],[[0,2,2,1],[0,3,3,0],[2,3,1,0],[2,2,2,1]],[[0,2,2,1],[0,3,3,0],[2,3,1,0],[1,3,2,1]],[[0,2,2,1],[0,3,3,0],[2,3,1,0],[1,2,3,1]],[[0,2,2,1],[0,3,3,0],[2,4,1,1],[1,2,2,0]],[[0,2,2,1],[0,3,3,0],[2,3,1,1],[2,2,2,0]],[[0,2,2,1],[0,3,3,0],[2,3,1,1],[1,3,2,0]],[[1,2,3,1],[0,2,3,0],[2,2,3,2],[0,0,2,1]],[[1,3,2,1],[0,2,3,0],[2,2,3,2],[0,0,2,1]],[[2,2,2,1],[0,2,3,0],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[0,3,3,0],[2,4,2,0],[1,2,1,1]],[[0,2,2,1],[0,3,3,0],[2,3,2,0],[2,2,1,1]],[[0,2,2,1],[0,3,3,0],[2,3,2,0],[1,3,1,1]],[[0,2,2,1],[0,3,3,0],[2,4,2,1],[1,2,1,0]],[[0,2,2,1],[0,3,3,0],[2,3,2,1],[2,2,1,0]],[[0,2,2,1],[0,3,3,0],[2,3,2,1],[1,3,1,0]],[[1,2,2,1],[0,2,3,0],[2,2,4,1],[1,1,1,1]],[[1,2,2,1],[0,2,4,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,2],[0,2,3,0],[2,2,3,1],[1,1,1,1]],[[1,2,3,1],[0,2,3,0],[2,2,3,1],[1,1,1,1]],[[1,3,2,1],[0,2,3,0],[2,2,3,1],[1,1,1,1]],[[2,2,2,1],[0,2,3,0],[2,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,2,3,0],[2,2,3,1],[1,0,2,2]],[[1,2,2,1],[0,2,3,0],[2,2,3,1],[1,0,3,1]],[[1,2,2,1],[0,2,3,0],[2,2,4,1],[1,0,2,1]],[[1,2,2,1],[0,2,4,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,2],[0,2,3,0],[2,2,3,1],[1,0,2,1]],[[1,2,3,1],[0,2,3,0],[2,2,3,1],[1,0,2,1]],[[0,2,2,1],[0,3,3,0],[2,4,3,0],[1,2,1,0]],[[0,2,2,1],[0,3,3,0],[2,3,3,0],[2,2,1,0]],[[0,2,2,1],[0,3,3,0],[2,3,3,0],[1,3,1,0]],[[1,3,2,1],[0,2,3,0],[2,2,3,1],[1,0,2,1]],[[2,2,2,1],[0,2,3,0],[2,2,3,1],[1,0,2,1]],[[1,2,2,1],[0,2,3,0],[2,2,4,1],[0,2,1,1]],[[1,2,2,1],[0,2,4,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[0,2,3,0],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[0,2,3,0],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[0,2,3,0],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[0,2,3,0],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[0,2,3,0],[2,2,3,1],[0,1,2,2]],[[1,2,2,1],[0,2,3,0],[2,2,3,1],[0,1,3,1]],[[1,2,2,1],[0,2,3,0],[2,2,4,1],[0,1,2,1]],[[1,2,2,1],[0,2,4,0],[2,2,3,1],[0,1,2,1]],[[1,2,2,2],[0,2,3,0],[2,2,3,1],[0,1,2,1]],[[1,2,3,1],[0,2,3,0],[2,2,3,1],[0,1,2,1]],[[1,3,2,1],[0,2,3,0],[2,2,3,1],[0,1,2,1]],[[2,2,2,1],[0,2,3,0],[2,2,3,1],[0,1,2,1]],[[1,2,2,1],[0,2,3,0],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[0,2,3,0],[2,2,2,2],[1,0,3,1]],[[1,2,2,1],[0,2,3,0],[2,2,2,3],[1,0,2,1]],[[1,2,2,1],[0,2,3,0],[2,2,2,2],[0,1,2,2]],[[1,2,2,1],[0,2,3,0],[2,2,2,2],[0,1,3,1]],[[1,2,2,1],[0,2,3,0],[2,2,2,3],[0,1,2,1]],[[1,2,2,1],[0,2,3,0],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[0,2,3,0],[2,1,3,2],[0,3,2,0]],[[1,2,2,1],[0,2,3,0],[2,1,3,3],[0,2,2,0]],[[1,2,2,1],[0,2,3,0],[2,1,4,2],[0,2,2,0]],[[1,2,2,1],[0,2,4,0],[2,1,3,2],[0,2,2,0]],[[1,2,2,2],[0,2,3,0],[2,1,3,2],[0,2,2,0]],[[1,2,3,1],[0,2,3,0],[2,1,3,2],[0,2,2,0]],[[1,3,2,1],[0,2,3,0],[2,1,3,2],[0,2,2,0]],[[2,2,2,1],[0,2,3,0],[2,1,3,2],[0,2,2,0]],[[1,2,2,1],[0,2,3,0],[2,1,3,2],[0,2,1,2]],[[1,2,2,1],[0,2,3,0],[2,1,3,3],[0,2,1,1]],[[1,2,2,1],[0,2,3,0],[2,1,4,2],[0,2,1,1]],[[1,2,2,1],[0,2,4,0],[2,1,3,2],[0,2,1,1]],[[1,2,2,2],[0,2,3,0],[2,1,3,2],[0,2,1,1]],[[1,2,3,1],[0,2,3,0],[2,1,3,2],[0,2,1,1]],[[1,3,2,1],[0,2,3,0],[2,1,3,2],[0,2,1,1]],[[2,2,2,1],[0,2,3,0],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[0,2,3,0],[2,1,3,1],[0,2,2,2]],[[1,2,2,1],[0,2,3,0],[2,1,3,1],[0,2,3,1]],[[1,2,2,1],[0,2,3,0],[2,1,3,1],[0,3,2,1]],[[1,2,2,1],[0,2,3,0],[2,1,4,1],[0,2,2,1]],[[1,2,2,1],[0,2,4,0],[2,1,3,1],[0,2,2,1]],[[1,2,2,2],[0,2,3,0],[2,1,3,1],[0,2,2,1]],[[1,2,3,1],[0,2,3,0],[2,1,3,1],[0,2,2,1]],[[1,3,2,1],[0,2,3,0],[2,1,3,1],[0,2,2,1]],[[2,2,2,1],[0,2,3,0],[2,1,3,1],[0,2,2,1]],[[1,2,2,1],[0,2,3,0],[2,1,2,2],[0,2,2,2]],[[1,2,2,1],[0,2,3,0],[2,1,2,2],[0,2,3,1]],[[1,2,2,1],[0,2,3,0],[2,1,2,2],[0,3,2,1]],[[1,2,2,1],[0,2,3,0],[2,1,2,3],[0,2,2,1]],[[1,2,2,1],[0,2,3,0],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[0,2,3,0],[2,0,3,2],[1,3,2,0]],[[1,2,2,1],[0,2,3,0],[2,0,3,2],[2,2,2,0]],[[1,2,2,1],[0,2,3,0],[2,0,3,3],[1,2,2,0]],[[1,2,2,1],[0,2,3,0],[2,0,4,2],[1,2,2,0]],[[1,2,2,1],[0,2,3,0],[3,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,4,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[0,2,3,0],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[0,2,3,0],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[0,2,3,0],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[0,2,3,0],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,3,0],[2,0,3,2],[1,2,1,2]],[[1,2,2,1],[0,2,3,0],[2,0,3,3],[1,2,1,1]],[[1,2,2,1],[0,2,3,0],[2,0,4,2],[1,2,1,1]],[[1,2,2,1],[0,2,4,0],[2,0,3,2],[1,2,1,1]],[[1,2,2,2],[0,2,3,0],[2,0,3,2],[1,2,1,1]],[[1,2,3,1],[0,2,3,0],[2,0,3,2],[1,2,1,1]],[[1,3,2,1],[0,2,3,0],[2,0,3,2],[1,2,1,1]],[[2,2,2,1],[0,2,3,0],[2,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,2,3,0],[2,0,3,2],[0,2,2,2]],[[1,2,2,1],[0,2,3,0],[2,0,3,2],[0,2,3,1]],[[1,2,2,1],[0,2,3,0],[2,0,3,3],[0,2,2,1]],[[1,2,2,1],[0,2,3,0],[2,0,3,1],[1,2,2,2]],[[1,2,2,1],[0,2,3,0],[2,0,3,1],[1,2,3,1]],[[1,2,2,1],[0,2,3,0],[2,0,3,1],[1,3,2,1]],[[1,2,2,1],[0,2,3,0],[2,0,3,1],[2,2,2,1]],[[1,2,2,1],[0,2,3,0],[2,0,4,1],[1,2,2,1]],[[1,2,2,1],[0,2,3,0],[3,0,3,1],[1,2,2,1]],[[1,2,2,1],[0,2,4,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,2],[0,2,3,0],[2,0,3,1],[1,2,2,1]],[[1,2,3,1],[0,2,3,0],[2,0,3,1],[1,2,2,1]],[[1,3,2,1],[0,2,3,0],[2,0,3,1],[1,2,2,1]],[[2,2,2,1],[0,2,3,0],[2,0,3,1],[1,2,2,1]],[[1,2,2,1],[0,2,3,0],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[0,2,3,0],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[0,2,3,0],[2,0,2,2],[1,3,2,1]],[[1,2,2,1],[0,2,3,0],[2,0,2,2],[2,2,2,1]],[[1,2,2,1],[0,2,3,0],[2,0,2,3],[1,2,2,1]],[[1,2,2,1],[0,2,3,0],[3,0,2,2],[1,2,2,1]],[[1,2,2,1],[0,2,4,0],[1,3,3,2],[1,2,0,0]],[[1,2,2,2],[0,2,3,0],[1,3,3,2],[1,2,0,0]],[[1,2,3,1],[0,2,3,0],[1,3,3,2],[1,2,0,0]],[[1,3,2,1],[0,2,3,0],[1,3,3,2],[1,2,0,0]],[[2,2,2,1],[0,2,3,0],[1,3,3,2],[1,2,0,0]],[[1,2,2,1],[0,2,4,0],[1,3,2,2],[1,2,1,0]],[[1,2,2,2],[0,2,3,0],[1,3,2,2],[1,2,1,0]],[[1,2,3,1],[0,2,3,0],[1,3,2,2],[1,2,1,0]],[[1,3,2,1],[0,2,3,0],[1,3,2,2],[1,2,1,0]],[[2,2,2,1],[0,2,3,0],[1,3,2,2],[1,2,1,0]],[[1,2,2,1],[0,2,4,0],[1,3,2,2],[1,2,0,1]],[[1,2,2,2],[0,2,3,0],[1,3,2,2],[1,2,0,1]],[[1,2,3,1],[0,2,3,0],[1,3,2,2],[1,2,0,1]],[[1,3,2,1],[0,2,3,0],[1,3,2,2],[1,2,0,1]],[[2,2,2,1],[0,2,3,0],[1,3,2,2],[1,2,0,1]],[[1,2,2,1],[0,2,4,0],[1,3,2,2],[1,1,2,0]],[[1,2,2,2],[0,2,3,0],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[0,2,3,0],[1,3,2,2],[1,1,2,0]],[[1,3,2,1],[0,2,3,0],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[0,2,3,0],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,2,4,0],[1,3,2,2],[1,1,1,1]],[[1,2,2,2],[0,2,3,0],[1,3,2,2],[1,1,1,1]],[[1,2,3,1],[0,2,3,0],[1,3,2,2],[1,1,1,1]],[[1,3,2,1],[0,2,3,0],[1,3,2,2],[1,1,1,1]],[[2,2,2,1],[0,2,3,0],[1,3,2,2],[1,1,1,1]],[[1,2,2,1],[0,2,4,0],[1,3,2,1],[1,2,1,1]],[[1,2,2,2],[0,2,3,0],[1,3,2,1],[1,2,1,1]],[[1,2,3,1],[0,2,3,0],[1,3,2,1],[1,2,1,1]],[[1,3,2,1],[0,2,3,0],[1,3,2,1],[1,2,1,1]],[[2,2,2,1],[0,2,3,0],[1,3,2,1],[1,2,1,1]],[[1,2,2,1],[0,2,4,0],[1,3,2,1],[1,1,2,1]],[[1,2,2,2],[0,2,3,0],[1,3,2,1],[1,1,2,1]],[[1,2,3,1],[0,2,3,0],[1,3,2,1],[1,1,2,1]],[[1,3,2,1],[0,2,3,0],[1,3,2,1],[1,1,2,1]],[[2,2,2,1],[0,2,3,0],[1,3,2,1],[1,1,2,1]],[[1,2,2,1],[0,2,4,0],[1,3,1,2],[1,2,2,0]],[[1,2,2,2],[0,2,3,0],[1,3,1,2],[1,2,2,0]],[[1,2,3,1],[0,2,3,0],[1,3,1,2],[1,2,2,0]],[[1,3,2,1],[0,2,3,0],[1,3,1,2],[1,2,2,0]],[[2,2,2,1],[0,2,3,0],[1,3,1,2],[1,2,2,0]],[[1,2,2,1],[0,2,4,0],[1,3,1,1],[1,2,2,1]],[[1,2,2,2],[0,2,3,0],[1,3,1,1],[1,2,2,1]],[[1,2,3,1],[0,2,3,0],[1,3,1,1],[1,2,2,1]],[[1,3,2,1],[0,2,3,0],[1,3,1,1],[1,2,2,1]],[[2,2,2,1],[0,2,3,0],[1,3,1,1],[1,2,2,1]],[[1,2,2,1],[0,2,4,0],[1,3,0,2],[1,2,2,1]],[[1,2,2,2],[0,2,3,0],[1,3,0,2],[1,2,2,1]],[[1,2,3,1],[0,2,3,0],[1,3,0,2],[1,2,2,1]],[[1,3,2,1],[0,2,3,0],[1,3,0,2],[1,2,2,1]],[[2,2,2,1],[0,2,3,0],[1,3,0,2],[1,2,2,1]],[[1,2,2,1],[0,2,3,0],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[0,2,3,0],[1,2,4,2],[1,2,1,0]],[[1,2,2,1],[0,2,4,0],[1,2,3,2],[1,2,1,0]],[[1,2,2,2],[0,2,3,0],[1,2,3,2],[1,2,1,0]],[[1,2,3,1],[0,2,3,0],[1,2,3,2],[1,2,1,0]],[[1,3,2,1],[0,2,3,0],[1,2,3,2],[1,2,1,0]],[[2,2,2,1],[0,2,3,0],[1,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,2,3,0],[1,2,3,2],[1,2,0,2]],[[1,2,2,1],[0,2,3,0],[1,2,3,3],[1,2,0,1]],[[1,2,2,1],[0,2,3,0],[1,2,4,2],[1,2,0,1]],[[1,2,2,1],[0,2,4,0],[1,2,3,2],[1,2,0,1]],[[1,2,2,2],[0,2,3,0],[1,2,3,2],[1,2,0,1]],[[1,2,3,1],[0,2,3,0],[1,2,3,2],[1,2,0,1]],[[1,3,2,1],[0,2,3,0],[1,2,3,2],[1,2,0,1]],[[2,2,2,1],[0,2,3,0],[1,2,3,2],[1,2,0,1]],[[1,2,2,1],[0,2,3,0],[1,2,3,2],[1,1,3,0]],[[1,2,2,1],[0,2,3,0],[1,2,3,3],[1,1,2,0]],[[1,2,2,1],[0,2,3,0],[1,2,4,2],[1,1,2,0]],[[1,2,2,1],[0,2,4,0],[1,2,3,2],[1,1,2,0]],[[1,2,2,2],[0,2,3,0],[1,2,3,2],[1,1,2,0]],[[1,2,3,1],[0,2,3,0],[1,2,3,2],[1,1,2,0]],[[1,3,2,1],[0,2,3,0],[1,2,3,2],[1,1,2,0]],[[2,2,2,1],[0,2,3,0],[1,2,3,2],[1,1,2,0]],[[1,2,2,1],[0,2,3,0],[1,2,3,2],[1,1,1,2]],[[1,2,2,1],[0,2,3,0],[1,2,3,3],[1,1,1,1]],[[1,2,2,1],[0,2,3,0],[1,2,4,2],[1,1,1,1]],[[1,2,2,1],[0,2,4,0],[1,2,3,2],[1,1,1,1]],[[1,2,2,2],[0,2,3,0],[1,2,3,2],[1,1,1,1]],[[1,2,3,1],[0,2,3,0],[1,2,3,2],[1,1,1,1]],[[1,3,2,1],[0,2,3,0],[1,2,3,2],[1,1,1,1]],[[2,2,2,1],[0,2,3,0],[1,2,3,2],[1,1,1,1]],[[1,2,2,1],[0,2,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,2,1],[0,2,3,0],[1,2,3,3],[1,0,2,1]],[[1,2,2,1],[0,2,3,0],[1,2,4,2],[1,0,2,1]],[[1,2,2,1],[0,2,4,0],[1,2,3,2],[1,0,2,1]],[[1,2,2,2],[0,2,3,0],[1,2,3,2],[1,0,2,1]],[[1,2,3,1],[0,2,3,0],[1,2,3,2],[1,0,2,1]],[[1,3,2,1],[0,2,3,0],[1,2,3,2],[1,0,2,1]],[[1,2,2,1],[0,2,3,0],[1,2,4,1],[1,2,1,1]],[[1,2,2,1],[0,2,4,0],[1,2,3,1],[1,2,1,1]],[[1,2,2,2],[0,2,3,0],[1,2,3,1],[1,2,1,1]],[[1,2,3,1],[0,2,3,0],[1,2,3,1],[1,2,1,1]],[[1,3,2,1],[0,2,3,0],[1,2,3,1],[1,2,1,1]],[[2,2,2,1],[0,2,3,0],[1,2,3,1],[1,2,1,1]],[[1,2,2,1],[0,2,3,0],[1,2,3,1],[1,1,2,2]],[[1,2,2,1],[0,2,3,0],[1,2,3,1],[1,1,3,1]],[[1,2,2,1],[0,2,3,0],[1,2,4,1],[1,1,2,1]],[[1,2,2,1],[0,2,4,0],[1,2,3,1],[1,1,2,1]],[[1,2,2,2],[0,2,3,0],[1,2,3,1],[1,1,2,1]],[[1,2,3,1],[0,2,3,0],[1,2,3,1],[1,1,2,1]],[[1,3,2,1],[0,2,3,0],[1,2,3,1],[1,1,2,1]],[[2,2,2,1],[0,2,3,0],[1,2,3,1],[1,1,2,1]],[[1,2,2,1],[0,2,3,0],[1,2,2,2],[1,1,2,2]],[[1,2,2,1],[0,2,3,0],[1,2,2,2],[1,1,3,1]],[[1,2,2,1],[0,2,3,0],[1,2,2,3],[1,1,2,1]],[[1,2,2,1],[0,2,3,0],[1,1,3,2],[1,2,3,0]],[[1,2,2,1],[0,2,3,0],[1,1,3,2],[1,3,2,0]],[[1,2,2,1],[0,2,3,0],[1,1,3,2],[2,2,2,0]],[[1,2,2,1],[0,2,3,0],[1,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,2,3,0],[1,1,4,2],[1,2,2,0]],[[1,2,2,1],[0,2,4,0],[1,1,3,2],[1,2,2,0]],[[1,2,2,2],[0,2,3,0],[1,1,3,2],[1,2,2,0]],[[1,2,3,1],[0,2,3,0],[1,1,3,2],[1,2,2,0]],[[1,3,2,1],[0,2,3,0],[1,1,3,2],[1,2,2,0]],[[2,2,2,1],[0,2,3,0],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,3,0],[1,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,2,3,0],[1,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,2,3,0],[1,1,4,2],[1,2,1,1]],[[1,2,2,1],[0,2,4,0],[1,1,3,2],[1,2,1,1]],[[1,2,2,2],[0,2,3,0],[1,1,3,2],[1,2,1,1]],[[1,2,3,1],[0,2,3,0],[1,1,3,2],[1,2,1,1]],[[1,3,2,1],[0,2,3,0],[1,1,3,2],[1,2,1,1]],[[2,2,2,1],[0,2,3,0],[1,1,3,2],[1,2,1,1]],[[1,2,2,1],[0,2,3,0],[1,1,3,1],[1,2,2,2]],[[1,2,2,1],[0,2,3,0],[1,1,3,1],[1,2,3,1]],[[1,2,2,1],[0,2,3,0],[1,1,3,1],[1,3,2,1]],[[1,2,2,1],[0,2,3,0],[1,1,3,1],[2,2,2,1]],[[1,2,2,1],[0,2,3,0],[1,1,4,1],[1,2,2,1]],[[1,2,2,1],[0,2,4,0],[1,1,3,1],[1,2,2,1]],[[1,2,2,2],[0,2,3,0],[1,1,3,1],[1,2,2,1]],[[1,2,3,1],[0,2,3,0],[1,1,3,1],[1,2,2,1]],[[1,3,2,1],[0,2,3,0],[1,1,3,1],[1,2,2,1]],[[2,2,2,1],[0,2,3,0],[1,1,3,1],[1,2,2,1]],[[1,2,2,1],[0,2,3,0],[1,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,2,3,0],[1,1,2,2],[1,2,3,1]],[[1,2,2,1],[0,2,3,0],[1,1,2,2],[1,3,2,1]],[[1,2,2,1],[0,2,3,0],[1,1,2,2],[2,2,2,1]],[[1,2,2,1],[0,2,3,0],[1,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,2,3,0],[1,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,2,3,0],[1,0,3,2],[1,2,3,1]],[[1,2,2,1],[0,2,3,0],[1,0,3,3],[1,2,2,1]],[[1,2,2,1],[0,2,2,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,1],[0,2,2,3],[2,3,3,2],[0,0,0,1]],[[1,2,2,2],[0,2,2,2],[2,3,3,2],[0,0,0,1]],[[1,2,3,1],[0,2,2,2],[2,3,3,2],[0,0,0,1]],[[1,3,2,1],[0,2,2,2],[2,3,3,2],[0,0,0,1]],[[2,2,2,1],[0,2,2,2],[2,3,3,2],[0,0,0,1]],[[1,2,2,1],[0,2,2,3],[2,3,3,1],[1,1,0,0]],[[1,2,2,2],[0,2,2,2],[2,3,3,1],[1,1,0,0]],[[1,2,3,1],[0,2,2,2],[2,3,3,1],[1,1,0,0]],[[1,3,2,1],[0,2,2,2],[2,3,3,1],[1,1,0,0]],[[2,2,2,1],[0,2,2,2],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,2,2,3],[2,3,3,1],[0,2,0,0]],[[1,2,2,2],[0,2,2,2],[2,3,3,1],[0,2,0,0]],[[1,2,3,1],[0,2,2,2],[2,3,3,1],[0,2,0,0]],[[1,3,2,1],[0,2,2,2],[2,3,3,1],[0,2,0,0]],[[2,2,2,1],[0,2,2,2],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,2,2,3],[2,3,3,1],[0,0,2,0]],[[1,2,2,2],[0,2,2,2],[2,3,3,1],[0,0,2,0]],[[1,2,3,1],[0,2,2,2],[2,3,3,1],[0,0,2,0]],[[1,3,2,1],[0,2,2,2],[2,3,3,1],[0,0,2,0]],[[2,2,2,1],[0,2,2,2],[2,3,3,1],[0,0,2,0]],[[1,2,2,1],[0,2,2,3],[2,3,3,1],[0,0,1,1]],[[1,2,2,2],[0,2,2,2],[2,3,3,1],[0,0,1,1]],[[1,2,3,1],[0,2,2,2],[2,3,3,1],[0,0,1,1]],[[1,3,2,1],[0,2,2,2],[2,3,3,1],[0,0,1,1]],[[2,2,2,1],[0,2,2,2],[2,3,3,1],[0,0,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,3,0],[0,0,2,1]],[[1,2,2,2],[0,2,2,2],[2,3,3,0],[0,0,2,1]],[[1,2,3,1],[0,2,2,2],[2,3,3,0],[0,0,2,1]],[[1,3,2,1],[0,2,2,2],[2,3,3,0],[0,0,2,1]],[[2,2,2,1],[0,2,2,2],[2,3,3,0],[0,0,2,1]],[[1,2,2,1],[0,2,2,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,1],[0,2,2,3],[2,3,2,2],[0,0,2,0]],[[1,2,2,2],[0,2,2,2],[2,3,2,2],[0,0,2,0]],[[1,2,3,1],[0,2,2,2],[2,3,2,2],[0,0,2,0]],[[1,3,2,1],[0,2,2,2],[2,3,2,2],[0,0,2,0]],[[2,2,2,1],[0,2,2,2],[2,3,2,2],[0,0,2,0]],[[1,2,2,1],[0,2,2,2],[2,3,2,2],[0,0,1,2]],[[1,2,2,1],[0,2,2,2],[2,3,2,3],[0,0,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,2,2],[0,0,1,1]],[[1,2,2,2],[0,2,2,2],[2,3,2,2],[0,0,1,1]],[[1,2,3,1],[0,2,2,2],[2,3,2,2],[0,0,1,1]],[[1,3,2,1],[0,2,2,2],[2,3,2,2],[0,0,1,1]],[[2,2,2,1],[0,2,2,2],[2,3,2,2],[0,0,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,2,1],[1,2,0,0]],[[1,2,2,2],[0,2,2,2],[2,3,2,1],[1,2,0,0]],[[1,2,3,1],[0,2,2,2],[2,3,2,1],[1,2,0,0]],[[1,3,2,1],[0,2,2,2],[2,3,2,1],[1,2,0,0]],[[2,2,2,1],[0,2,2,2],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[0,2,2,3],[2,3,2,1],[1,1,1,0]],[[1,2,2,2],[0,2,2,2],[2,3,2,1],[1,1,1,0]],[[1,2,3,1],[0,2,2,2],[2,3,2,1],[1,1,1,0]],[[1,3,2,1],[0,2,2,2],[2,3,2,1],[1,1,1,0]],[[2,2,2,1],[0,2,2,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,2,2,3],[2,3,2,1],[1,1,0,1]],[[1,2,2,2],[0,2,2,2],[2,3,2,1],[1,1,0,1]],[[1,2,3,1],[0,2,2,2],[2,3,2,1],[1,1,0,1]],[[1,3,2,1],[0,2,2,2],[2,3,2,1],[1,1,0,1]],[[2,2,2,1],[0,2,2,2],[2,3,2,1],[1,1,0,1]],[[1,2,2,1],[0,2,2,3],[2,3,2,1],[1,0,2,0]],[[1,2,2,2],[0,2,2,2],[2,3,2,1],[1,0,2,0]],[[1,2,3,1],[0,2,2,2],[2,3,2,1],[1,0,2,0]],[[1,3,2,1],[0,2,2,2],[2,3,2,1],[1,0,2,0]],[[2,2,2,1],[0,2,2,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,1],[0,2,2,3],[2,3,2,1],[1,0,1,1]],[[1,2,2,2],[0,2,2,2],[2,3,2,1],[1,0,1,1]],[[1,2,3,1],[0,2,2,2],[2,3,2,1],[1,0,1,1]],[[1,3,2,1],[0,2,2,2],[2,3,2,1],[1,0,1,1]],[[2,2,2,1],[0,2,2,2],[2,3,2,1],[1,0,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,2,1],[0,2,1,0]],[[1,2,2,2],[0,2,2,2],[2,3,2,1],[0,2,1,0]],[[1,2,3,1],[0,2,2,2],[2,3,2,1],[0,2,1,0]],[[1,3,2,1],[0,2,2,2],[2,3,2,1],[0,2,1,0]],[[2,2,2,1],[0,2,2,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,2,2,3],[2,3,2,1],[0,2,0,1]],[[1,2,2,2],[0,2,2,2],[2,3,2,1],[0,2,0,1]],[[1,2,3,1],[0,2,2,2],[2,3,2,1],[0,2,0,1]],[[1,3,2,1],[0,2,2,2],[2,3,2,1],[0,2,0,1]],[[2,2,2,1],[0,2,2,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,1],[0,2,2,3],[2,3,2,1],[0,1,2,0]],[[1,2,2,2],[0,2,2,2],[2,3,2,1],[0,1,2,0]],[[1,2,3,1],[0,2,2,2],[2,3,2,1],[0,1,2,0]],[[1,3,2,1],[0,2,2,2],[2,3,2,1],[0,1,2,0]],[[2,2,2,1],[0,2,2,2],[2,3,2,1],[0,1,2,0]],[[1,2,2,1],[0,2,2,3],[2,3,2,1],[0,1,1,1]],[[1,2,2,2],[0,2,2,2],[2,3,2,1],[0,1,1,1]],[[1,2,3,1],[0,2,2,2],[2,3,2,1],[0,1,1,1]],[[1,3,2,1],[0,2,2,2],[2,3,2,1],[0,1,1,1]],[[2,2,2,1],[0,2,2,2],[2,3,2,1],[0,1,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,2,0],[1,1,1,1]],[[1,2,2,2],[0,2,2,2],[2,3,2,0],[1,1,1,1]],[[1,2,3,1],[0,2,2,2],[2,3,2,0],[1,1,1,1]],[[1,3,2,1],[0,2,2,2],[2,3,2,0],[1,1,1,1]],[[2,2,2,1],[0,2,2,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,2,0],[1,0,2,1]],[[1,2,2,2],[0,2,2,2],[2,3,2,0],[1,0,2,1]],[[1,2,3,1],[0,2,2,2],[2,3,2,0],[1,0,2,1]],[[1,3,2,1],[0,2,2,2],[2,3,2,0],[1,0,2,1]],[[2,2,2,1],[0,2,2,2],[2,3,2,0],[1,0,2,1]],[[1,2,2,1],[0,2,2,3],[2,3,2,0],[0,2,1,1]],[[1,2,2,2],[0,2,2,2],[2,3,2,0],[0,2,1,1]],[[1,2,3,1],[0,2,2,2],[2,3,2,0],[0,2,1,1]],[[1,3,2,1],[0,2,2,2],[2,3,2,0],[0,2,1,1]],[[2,2,2,1],[0,2,2,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,2,0],[0,1,2,1]],[[1,2,2,2],[0,2,2,2],[2,3,2,0],[0,1,2,1]],[[1,2,3,1],[0,2,2,2],[2,3,2,0],[0,1,2,1]],[[1,3,2,1],[0,2,2,2],[2,3,2,0],[0,1,2,1]],[[2,2,2,1],[0,2,2,2],[2,3,2,0],[0,1,2,1]],[[1,2,2,1],[0,2,2,3],[2,3,1,2],[1,2,0,0]],[[1,2,2,2],[0,2,2,2],[2,3,1,2],[1,2,0,0]],[[1,2,3,1],[0,2,2,2],[2,3,1,2],[1,2,0,0]],[[1,3,2,1],[0,2,2,2],[2,3,1,2],[1,2,0,0]],[[2,2,2,1],[0,2,2,2],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[0,2,2,2],[2,3,1,3],[1,1,1,0]],[[1,2,2,1],[0,2,2,3],[2,3,1,2],[1,1,1,0]],[[1,2,2,2],[0,2,2,2],[2,3,1,2],[1,1,1,0]],[[1,2,3,1],[0,2,2,2],[2,3,1,2],[1,1,1,0]],[[1,3,2,1],[0,2,2,2],[2,3,1,2],[1,1,1,0]],[[2,2,2,1],[0,2,2,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[0,2,2,2],[2,3,1,2],[1,1,0,2]],[[1,2,2,1],[0,2,2,2],[2,3,1,3],[1,1,0,1]],[[1,2,2,1],[0,2,2,3],[2,3,1,2],[1,1,0,1]],[[1,2,2,2],[0,2,2,2],[2,3,1,2],[1,1,0,1]],[[1,2,3,1],[0,2,2,2],[2,3,1,2],[1,1,0,1]],[[1,3,2,1],[0,2,2,2],[2,3,1,2],[1,1,0,1]],[[2,2,2,1],[0,2,2,2],[2,3,1,2],[1,1,0,1]],[[1,2,2,1],[0,2,2,2],[2,3,1,3],[1,0,2,0]],[[1,2,2,1],[0,2,2,3],[2,3,1,2],[1,0,2,0]],[[1,2,2,2],[0,2,2,2],[2,3,1,2],[1,0,2,0]],[[1,2,3,1],[0,2,2,2],[2,3,1,2],[1,0,2,0]],[[1,3,2,1],[0,2,2,2],[2,3,1,2],[1,0,2,0]],[[2,2,2,1],[0,2,2,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,1],[0,2,2,2],[2,3,1,2],[1,0,1,2]],[[1,2,2,1],[0,2,2,2],[2,3,1,3],[1,0,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,1,2],[1,0,1,1]],[[1,2,2,2],[0,2,2,2],[2,3,1,2],[1,0,1,1]],[[1,2,3,1],[0,2,2,2],[2,3,1,2],[1,0,1,1]],[[1,3,2,1],[0,2,2,2],[2,3,1,2],[1,0,1,1]],[[2,2,2,1],[0,2,2,2],[2,3,1,2],[1,0,1,1]],[[1,2,2,1],[0,2,2,2],[2,3,1,3],[0,2,1,0]],[[1,2,2,1],[0,2,2,3],[2,3,1,2],[0,2,1,0]],[[1,2,2,2],[0,2,2,2],[2,3,1,2],[0,2,1,0]],[[1,2,3,1],[0,2,2,2],[2,3,1,2],[0,2,1,0]],[[1,3,2,1],[0,2,2,2],[2,3,1,2],[0,2,1,0]],[[2,2,2,1],[0,2,2,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,1],[0,2,2,2],[2,3,1,2],[0,2,0,2]],[[1,2,2,1],[0,2,2,2],[2,3,1,3],[0,2,0,1]],[[1,2,2,1],[0,2,2,3],[2,3,1,2],[0,2,0,1]],[[1,2,2,2],[0,2,2,2],[2,3,1,2],[0,2,0,1]],[[1,2,3,1],[0,2,2,2],[2,3,1,2],[0,2,0,1]],[[1,3,2,1],[0,2,2,2],[2,3,1,2],[0,2,0,1]],[[2,2,2,1],[0,2,2,2],[2,3,1,2],[0,2,0,1]],[[1,2,2,1],[0,2,2,2],[2,3,1,3],[0,1,2,0]],[[1,2,2,1],[0,2,2,3],[2,3,1,2],[0,1,2,0]],[[1,2,2,2],[0,2,2,2],[2,3,1,2],[0,1,2,0]],[[1,2,3,1],[0,2,2,2],[2,3,1,2],[0,1,2,0]],[[1,3,2,1],[0,2,2,2],[2,3,1,2],[0,1,2,0]],[[2,2,2,1],[0,2,2,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,1],[0,2,2,2],[2,3,1,2],[0,1,1,2]],[[1,2,2,1],[0,2,2,2],[2,3,1,3],[0,1,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,1,2],[0,1,1,1]],[[1,2,2,2],[0,2,2,2],[2,3,1,2],[0,1,1,1]],[[1,2,3,1],[0,2,2,2],[2,3,1,2],[0,1,1,1]],[[1,3,2,1],[0,2,2,2],[2,3,1,2],[0,1,1,1]],[[2,2,2,1],[0,2,2,2],[2,3,1,2],[0,1,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,1,1],[1,1,2,0]],[[1,2,2,2],[0,2,2,2],[2,3,1,1],[1,1,2,0]],[[1,2,3,1],[0,2,2,2],[2,3,1,1],[1,1,2,0]],[[1,3,2,1],[0,2,2,2],[2,3,1,1],[1,1,2,0]],[[2,2,2,1],[0,2,2,2],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[0,2,2,3],[2,3,1,1],[0,2,2,0]],[[1,2,2,2],[0,2,2,2],[2,3,1,1],[0,2,2,0]],[[1,2,3,1],[0,2,2,2],[2,3,1,1],[0,2,2,0]],[[1,3,2,1],[0,2,2,2],[2,3,1,1],[0,2,2,0]],[[2,2,2,1],[0,2,2,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,1],[0,2,2,3],[2,3,1,0],[1,1,2,1]],[[1,2,2,2],[0,2,2,2],[2,3,1,0],[1,1,2,1]],[[1,2,3,1],[0,2,2,2],[2,3,1,0],[1,1,2,1]],[[1,3,2,1],[0,2,2,2],[2,3,1,0],[1,1,2,1]],[[2,2,2,1],[0,2,2,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,1],[0,2,2,3],[2,3,1,0],[0,2,2,1]],[[1,2,2,2],[0,2,2,2],[2,3,1,0],[0,2,2,1]],[[1,2,3,1],[0,2,2,2],[2,3,1,0],[0,2,2,1]],[[1,3,2,1],[0,2,2,2],[2,3,1,0],[0,2,2,1]],[[2,2,2,1],[0,2,2,2],[2,3,1,0],[0,2,2,1]],[[1,2,2,1],[0,2,2,2],[2,3,0,3],[1,1,2,0]],[[1,2,2,1],[0,2,2,3],[2,3,0,2],[1,1,2,0]],[[1,2,2,2],[0,2,2,2],[2,3,0,2],[1,1,2,0]],[[1,2,3,1],[0,2,2,2],[2,3,0,2],[1,1,2,0]],[[1,3,2,1],[0,2,2,2],[2,3,0,2],[1,1,2,0]],[[2,2,2,1],[0,2,2,2],[2,3,0,2],[1,1,2,0]],[[1,2,2,1],[0,2,2,2],[2,3,0,2],[1,1,1,2]],[[1,2,2,1],[0,2,2,2],[2,3,0,3],[1,1,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,0,2],[1,1,1,1]],[[1,2,2,2],[0,2,2,2],[2,3,0,2],[1,1,1,1]],[[1,2,3,1],[0,2,2,2],[2,3,0,2],[1,1,1,1]],[[1,3,2,1],[0,2,2,2],[2,3,0,2],[1,1,1,1]],[[2,2,2,1],[0,2,2,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,1],[0,2,2,2],[2,3,0,2],[1,0,2,2]],[[1,2,2,1],[0,2,2,2],[2,3,0,2],[1,0,3,1]],[[1,2,2,1],[0,2,2,2],[2,3,0,3],[1,0,2,1]],[[1,2,2,1],[0,2,2,3],[2,3,0,2],[1,0,2,1]],[[1,2,2,2],[0,2,2,2],[2,3,0,2],[1,0,2,1]],[[1,2,3,1],[0,2,2,2],[2,3,0,2],[1,0,2,1]],[[1,3,2,1],[0,2,2,2],[2,3,0,2],[1,0,2,1]],[[2,2,2,1],[0,2,2,2],[2,3,0,2],[1,0,2,1]],[[1,2,2,1],[0,2,2,2],[2,3,0,3],[0,2,2,0]],[[1,2,2,1],[0,2,2,3],[2,3,0,2],[0,2,2,0]],[[1,2,2,2],[0,2,2,2],[2,3,0,2],[0,2,2,0]],[[1,2,3,1],[0,2,2,2],[2,3,0,2],[0,2,2,0]],[[1,3,2,1],[0,2,2,2],[2,3,0,2],[0,2,2,0]],[[2,2,2,1],[0,2,2,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,1],[0,2,2,2],[2,3,0,2],[0,2,1,2]],[[1,2,2,1],[0,2,2,2],[2,3,0,3],[0,2,1,1]],[[1,2,2,1],[0,2,2,3],[2,3,0,2],[0,2,1,1]],[[1,2,2,2],[0,2,2,2],[2,3,0,2],[0,2,1,1]],[[1,2,3,1],[0,2,2,2],[2,3,0,2],[0,2,1,1]],[[1,3,2,1],[0,2,2,2],[2,3,0,2],[0,2,1,1]],[[2,2,2,1],[0,2,2,2],[2,3,0,2],[0,2,1,1]],[[1,2,2,1],[0,2,2,2],[2,3,0,2],[0,1,2,2]],[[1,2,2,1],[0,2,2,2],[2,3,0,2],[0,1,3,1]],[[1,2,2,1],[0,2,2,2],[2,3,0,3],[0,1,2,1]],[[1,2,2,1],[0,2,2,3],[2,3,0,2],[0,1,2,1]],[[1,2,2,2],[0,2,2,2],[2,3,0,2],[0,1,2,1]],[[1,2,3,1],[0,2,2,2],[2,3,0,2],[0,1,2,1]],[[1,3,2,1],[0,2,2,2],[2,3,0,2],[0,1,2,1]],[[2,2,2,1],[0,2,2,2],[2,3,0,2],[0,1,2,1]],[[1,2,2,1],[0,2,2,3],[2,3,0,1],[1,1,2,1]],[[1,2,2,2],[0,2,2,2],[2,3,0,1],[1,1,2,1]],[[1,2,3,1],[0,2,2,2],[2,3,0,1],[1,1,2,1]],[[1,3,2,1],[0,2,2,2],[2,3,0,1],[1,1,2,1]],[[2,2,2,1],[0,2,2,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,1],[0,2,2,3],[2,3,0,1],[0,2,2,1]],[[1,2,2,2],[0,2,2,2],[2,3,0,1],[0,2,2,1]],[[1,2,3,1],[0,2,2,2],[2,3,0,1],[0,2,2,1]],[[1,3,2,1],[0,2,2,2],[2,3,0,1],[0,2,2,1]],[[2,2,2,1],[0,2,2,2],[2,3,0,1],[0,2,2,1]],[[1,2,2,1],[0,2,2,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[0,2,2,3],[2,2,3,2],[1,0,0,1]],[[1,2,2,2],[0,2,2,2],[2,2,3,2],[1,0,0,1]],[[1,2,3,1],[0,2,2,2],[2,2,3,2],[1,0,0,1]],[[1,3,2,1],[0,2,2,2],[2,2,3,2],[1,0,0,1]],[[2,2,2,1],[0,2,2,2],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[0,2,2,2],[2,2,3,3],[0,1,0,1]],[[1,2,2,1],[0,2,2,3],[2,2,3,2],[0,1,0,1]],[[1,2,2,2],[0,2,2,2],[2,2,3,2],[0,1,0,1]],[[1,2,3,1],[0,2,2,2],[2,2,3,2],[0,1,0,1]],[[1,3,2,1],[0,2,2,2],[2,2,3,2],[0,1,0,1]],[[2,2,2,1],[0,2,2,2],[2,2,3,2],[0,1,0,1]],[[1,2,2,1],[0,2,2,3],[2,2,3,1],[1,1,1,0]],[[1,2,2,2],[0,2,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[0,2,2,2],[2,2,3,1],[1,1,1,0]],[[1,3,2,1],[0,2,2,2],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[0,2,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[0,2,2,3],[2,2,3,1],[1,1,0,1]],[[1,2,2,2],[0,2,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[0,2,2,2],[2,2,3,1],[1,1,0,1]],[[1,3,2,1],[0,2,2,2],[2,2,3,1],[1,1,0,1]],[[2,2,2,1],[0,2,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[0,2,2,3],[2,2,3,1],[1,0,2,0]],[[1,2,2,2],[0,2,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[0,2,2,2],[2,2,3,1],[1,0,2,0]],[[1,3,2,1],[0,2,2,2],[2,2,3,1],[1,0,2,0]],[[2,2,2,1],[0,2,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[0,2,2,3],[2,2,3,1],[1,0,1,1]],[[1,2,2,2],[0,2,2,2],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[0,2,2,2],[2,2,3,1],[1,0,1,1]],[[1,3,2,1],[0,2,2,2],[2,2,3,1],[1,0,1,1]],[[2,2,2,1],[0,2,2,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[0,2,2,3],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[0,2,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[0,2,2,2],[2,2,3,1],[0,2,1,0]],[[1,3,2,1],[0,2,2,2],[2,2,3,1],[0,2,1,0]],[[2,2,2,1],[0,2,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[0,2,2,3],[2,2,3,1],[0,2,0,1]],[[1,2,2,2],[0,2,2,2],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[0,2,2,2],[2,2,3,1],[0,2,0,1]],[[1,3,2,1],[0,2,2,2],[2,2,3,1],[0,2,0,1]],[[2,2,2,1],[0,2,2,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[0,2,2,3],[2,2,3,1],[0,1,2,0]],[[1,2,2,2],[0,2,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[0,2,2,2],[2,2,3,1],[0,1,2,0]],[[1,3,2,1],[0,2,2,2],[2,2,3,1],[0,1,2,0]],[[2,2,2,1],[0,2,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[0,2,2,3],[2,2,3,1],[0,1,1,1]],[[1,2,2,2],[0,2,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[0,2,2,2],[2,2,3,1],[0,1,1,1]],[[1,3,2,1],[0,2,2,2],[2,2,3,1],[0,1,1,1]],[[2,2,2,1],[0,2,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[0,2,2,3],[2,2,3,1],[0,0,2,1]],[[1,2,2,2],[0,2,2,2],[2,2,3,1],[0,0,2,1]],[[1,2,3,1],[0,2,2,2],[2,2,3,1],[0,0,2,1]],[[1,3,2,1],[0,2,2,2],[2,2,3,1],[0,0,2,1]],[[2,2,2,1],[0,2,2,2],[2,2,3,1],[0,0,2,1]],[[1,2,2,1],[0,2,2,3],[2,2,3,0],[1,1,1,1]],[[1,2,2,2],[0,2,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,3,1],[0,2,2,2],[2,2,3,0],[1,1,1,1]],[[1,3,2,1],[0,2,2,2],[2,2,3,0],[1,1,1,1]],[[2,2,2,1],[0,2,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,1],[0,2,2,3],[2,2,3,0],[1,0,2,1]],[[1,2,2,2],[0,2,2,2],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[0,2,2,2],[2,2,3,0],[1,0,2,1]],[[1,3,2,1],[0,2,2,2],[2,2,3,0],[1,0,2,1]],[[2,2,2,1],[0,2,2,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[0,2,2,3],[2,2,3,0],[0,2,1,1]],[[1,2,2,2],[0,2,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,3,1],[0,2,2,2],[2,2,3,0],[0,2,1,1]],[[1,3,2,1],[0,2,2,2],[2,2,3,0],[0,2,1,1]],[[2,2,2,1],[0,2,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,1],[0,2,2,3],[2,2,3,0],[0,1,2,1]],[[1,2,2,2],[0,2,2,2],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[0,2,2,2],[2,2,3,0],[0,1,2,1]],[[1,3,2,1],[0,2,2,2],[2,2,3,0],[0,1,2,1]],[[2,2,2,1],[0,2,2,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[0,2,2,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,1],[0,2,2,3],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[0,2,2,2],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[0,2,2,2],[2,2,2,2],[1,1,1,0]],[[1,3,2,1],[0,2,2,2],[2,2,2,2],[1,1,1,0]],[[2,2,2,1],[0,2,2,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[0,2,2,2],[2,2,2,2],[1,1,0,2]],[[1,2,2,1],[0,2,2,2],[2,2,2,3],[1,1,0,1]],[[1,2,2,1],[0,2,2,3],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[0,2,2,2],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[0,2,2,2],[2,2,2,2],[1,1,0,1]],[[1,3,2,1],[0,2,2,2],[2,2,2,2],[1,1,0,1]],[[2,2,2,1],[0,2,2,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[0,2,2,2],[2,2,2,3],[1,0,2,0]],[[1,2,2,1],[0,2,2,3],[2,2,2,2],[1,0,2,0]],[[1,2,2,2],[0,2,2,2],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[0,2,2,2],[2,2,2,2],[1,0,2,0]],[[1,3,2,1],[0,2,2,2],[2,2,2,2],[1,0,2,0]],[[2,2,2,1],[0,2,2,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[0,2,2,2],[2,2,2,2],[1,0,1,2]],[[1,2,2,1],[0,2,2,2],[2,2,2,3],[1,0,1,1]],[[1,2,2,1],[0,2,2,3],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[0,2,2,2],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[0,2,2,2],[2,2,2,2],[1,0,1,1]],[[1,3,2,1],[0,2,2,2],[2,2,2,2],[1,0,1,1]],[[2,2,2,1],[0,2,2,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[0,2,2,2],[2,2,2,3],[0,2,1,0]],[[1,2,2,1],[0,2,2,3],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[0,2,2,2],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[0,2,2,2],[2,2,2,2],[0,2,1,0]],[[1,3,2,1],[0,2,2,2],[2,2,2,2],[0,2,1,0]],[[2,2,2,1],[0,2,2,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[0,2,2,2],[2,2,2,2],[0,2,0,2]],[[1,2,2,1],[0,2,2,2],[2,2,2,3],[0,2,0,1]],[[1,2,2,1],[0,2,2,3],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[0,2,2,2],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[0,2,2,2],[2,2,2,2],[0,2,0,1]],[[1,3,2,1],[0,2,2,2],[2,2,2,2],[0,2,0,1]],[[2,2,2,1],[0,2,2,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[0,2,2,2],[2,2,2,3],[0,1,2,0]],[[1,2,2,1],[0,2,2,3],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[0,2,2,2],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[0,2,2,2],[2,2,2,2],[0,1,2,0]],[[1,3,2,1],[0,2,2,2],[2,2,2,2],[0,1,2,0]],[[2,2,2,1],[0,2,2,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[0,2,2,2],[2,2,2,2],[0,1,1,2]],[[1,2,2,1],[0,2,2,2],[2,2,2,3],[0,1,1,1]],[[1,2,2,1],[0,2,2,3],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[0,2,2,2],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[0,2,2,2],[2,2,2,2],[0,1,1,1]],[[1,3,2,1],[0,2,2,2],[2,2,2,2],[0,1,1,1]],[[2,2,2,1],[0,2,2,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[0,2,2,2],[2,2,2,2],[0,0,2,2]],[[1,2,2,1],[0,2,2,2],[2,2,2,3],[0,0,2,1]],[[1,2,2,1],[0,2,2,3],[2,2,2,2],[0,0,2,1]],[[1,2,2,2],[0,2,2,2],[2,2,2,2],[0,0,2,1]],[[1,2,3,1],[0,2,2,2],[2,2,2,2],[0,0,2,1]],[[1,3,2,1],[0,2,2,2],[2,2,2,2],[0,0,2,1]],[[2,2,2,1],[0,2,2,2],[2,2,2,2],[0,0,2,1]],[[1,2,2,1],[0,2,2,2],[2,2,1,2],[1,0,2,2]],[[1,2,2,1],[0,2,2,2],[2,2,1,2],[1,0,3,1]],[[1,2,2,1],[0,2,2,2],[2,2,1,3],[1,0,2,1]],[[1,2,2,1],[0,2,2,3],[2,2,1,2],[1,0,2,1]],[[1,2,2,2],[0,2,2,2],[2,2,1,2],[1,0,2,1]],[[1,2,3,1],[0,2,2,2],[2,2,1,2],[1,0,2,1]],[[1,3,2,1],[0,2,2,2],[2,2,1,2],[1,0,2,1]],[[2,2,2,1],[0,2,2,2],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[0,2,2,2],[2,2,1,2],[0,1,2,2]],[[1,2,2,1],[0,2,2,2],[2,2,1,2],[0,1,3,1]],[[1,2,2,1],[0,2,2,2],[2,2,1,3],[0,1,2,1]],[[1,2,2,1],[0,2,2,3],[2,2,1,2],[0,1,2,1]],[[1,2,2,2],[0,2,2,2],[2,2,1,2],[0,1,2,1]],[[1,2,3,1],[0,2,2,2],[2,2,1,2],[0,1,2,1]],[[1,3,2,1],[0,2,2,2],[2,2,1,2],[0,1,2,1]],[[2,2,2,1],[0,2,2,2],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[0,2,2,2],[2,2,0,2],[0,2,2,2]],[[1,2,2,1],[0,2,2,2],[2,2,0,2],[0,2,3,1]],[[1,2,2,1],[0,2,2,2],[2,2,0,2],[0,3,2,1]],[[1,2,2,1],[0,2,2,2],[2,2,0,3],[0,2,2,1]],[[1,2,2,1],[0,2,2,3],[2,2,0,2],[0,2,2,1]],[[1,2,2,2],[0,2,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,3,1],[0,2,2,2],[2,2,0,2],[0,2,2,1]],[[1,3,2,1],[0,2,2,2],[2,2,0,2],[0,2,2,1]],[[2,2,2,1],[0,2,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,2,1],[0,2,2,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[0,2,2,3],[2,1,3,2],[1,0,2,0]],[[1,2,2,2],[0,2,2,2],[2,1,3,2],[1,0,2,0]],[[1,2,3,1],[0,2,2,2],[2,1,3,2],[1,0,2,0]],[[1,3,2,1],[0,2,2,2],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[0,2,2,2],[2,1,3,2],[1,0,1,2]],[[1,2,2,1],[0,2,2,2],[2,1,3,3],[1,0,1,1]],[[1,2,2,1],[0,2,2,3],[2,1,3,2],[1,0,1,1]],[[1,2,2,2],[0,2,2,2],[2,1,3,2],[1,0,1,1]],[[1,2,3,1],[0,2,2,2],[2,1,3,2],[1,0,1,1]],[[1,3,2,1],[0,2,2,2],[2,1,3,2],[1,0,1,1]],[[1,2,2,1],[0,2,2,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[0,2,2,3],[2,1,3,2],[0,1,2,0]],[[1,2,2,2],[0,2,2,2],[2,1,3,2],[0,1,2,0]],[[1,2,3,1],[0,2,2,2],[2,1,3,2],[0,1,2,0]],[[1,3,2,1],[0,2,2,2],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[0,2,2,2],[2,1,3,2],[0,1,1,2]],[[1,2,2,1],[0,2,2,2],[2,1,3,3],[0,1,1,1]],[[1,2,2,1],[0,2,2,3],[2,1,3,2],[0,1,1,1]],[[1,2,2,2],[0,2,2,2],[2,1,3,2],[0,1,1,1]],[[1,2,3,1],[0,2,2,2],[2,1,3,2],[0,1,1,1]],[[1,3,2,1],[0,2,2,2],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[0,2,2,2],[2,1,3,2],[0,0,2,2]],[[1,2,2,1],[0,2,2,2],[2,1,3,3],[0,0,2,1]],[[1,2,2,1],[0,2,2,3],[2,1,3,2],[0,0,2,1]],[[1,2,2,2],[0,2,2,2],[2,1,3,2],[0,0,2,1]],[[1,2,3,1],[0,2,2,2],[2,1,3,2],[0,0,2,1]],[[1,3,2,1],[0,2,2,2],[2,1,3,2],[0,0,2,1]],[[1,2,2,1],[0,2,2,3],[2,1,3,1],[0,2,2,0]],[[1,2,2,2],[0,2,2,2],[2,1,3,1],[0,2,2,0]],[[1,2,3,1],[0,2,2,2],[2,1,3,1],[0,2,2,0]],[[1,3,2,1],[0,2,2,2],[2,1,3,1],[0,2,2,0]],[[2,2,2,1],[0,2,2,2],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,2,2,3],[2,1,3,1],[0,2,1,1]],[[1,2,2,2],[0,2,2,2],[2,1,3,1],[0,2,1,1]],[[1,2,3,1],[0,2,2,2],[2,1,3,1],[0,2,1,1]],[[1,3,2,1],[0,2,2,2],[2,1,3,1],[0,2,1,1]],[[2,2,2,1],[0,2,2,2],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[0,2,2,3],[2,1,3,0],[0,2,2,1]],[[1,2,2,2],[0,2,2,2],[2,1,3,0],[0,2,2,1]],[[1,2,3,1],[0,2,2,2],[2,1,3,0],[0,2,2,1]],[[1,3,2,1],[0,2,2,2],[2,1,3,0],[0,2,2,1]],[[2,2,2,1],[0,2,2,2],[2,1,3,0],[0,2,2,1]],[[1,2,2,1],[0,2,2,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,1],[0,2,2,3],[2,1,2,2],[0,2,2,0]],[[1,2,2,2],[0,2,2,2],[2,1,2,2],[0,2,2,0]],[[1,2,3,1],[0,2,2,2],[2,1,2,2],[0,2,2,0]],[[1,3,2,1],[0,2,2,2],[2,1,2,2],[0,2,2,0]],[[2,2,2,1],[0,2,2,2],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[0,2,2,2],[2,1,2,2],[0,2,1,2]],[[1,2,2,1],[0,2,2,2],[2,1,2,3],[0,2,1,1]],[[1,2,2,1],[0,2,2,3],[2,1,2,2],[0,2,1,1]],[[1,2,2,2],[0,2,2,2],[2,1,2,2],[0,2,1,1]],[[1,2,3,1],[0,2,2,2],[2,1,2,2],[0,2,1,1]],[[1,3,2,1],[0,2,2,2],[2,1,2,2],[0,2,1,1]],[[2,2,2,1],[0,2,2,2],[2,1,2,2],[0,2,1,1]],[[1,2,2,1],[0,2,2,2],[2,1,1,2],[0,2,2,2]],[[1,2,2,1],[0,2,2,2],[2,1,1,2],[0,2,3,1]],[[1,2,2,1],[0,2,2,2],[2,1,1,2],[0,3,2,1]],[[1,2,2,1],[0,2,2,2],[2,1,1,3],[0,2,2,1]],[[1,2,2,1],[0,2,2,3],[2,1,1,2],[0,2,2,1]],[[1,2,2,2],[0,2,2,2],[2,1,1,2],[0,2,2,1]],[[1,2,3,1],[0,2,2,2],[2,1,1,2],[0,2,2,1]],[[1,3,2,1],[0,2,2,2],[2,1,1,2],[0,2,2,1]],[[2,2,2,1],[0,2,2,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[0,2,2,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,1],[0,2,2,2],[2,1,0,2],[1,2,3,1]],[[1,2,2,1],[0,2,2,2],[2,1,0,2],[1,3,2,1]],[[1,2,2,1],[0,2,2,2],[2,1,0,2],[2,2,2,1]],[[1,2,2,1],[0,2,2,2],[2,1,0,3],[1,2,2,1]],[[1,2,2,1],[0,2,2,2],[3,1,0,2],[1,2,2,1]],[[1,2,2,1],[0,2,2,3],[2,1,0,2],[1,2,2,1]],[[1,2,2,2],[0,2,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,3,1],[0,2,2,2],[2,1,0,2],[1,2,2,1]],[[1,3,2,1],[0,2,2,2],[2,1,0,2],[1,2,2,1]],[[2,2,2,1],[0,2,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,2,1],[0,2,2,2],[2,0,3,3],[0,2,2,0]],[[1,2,2,1],[0,2,2,3],[2,0,3,2],[0,2,2,0]],[[1,2,2,2],[0,2,2,2],[2,0,3,2],[0,2,2,0]],[[1,2,3,1],[0,2,2,2],[2,0,3,2],[0,2,2,0]],[[1,3,2,1],[0,2,2,2],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[0,2,2,2],[2,0,3,2],[0,2,1,2]],[[1,2,2,1],[0,2,2,2],[2,0,3,3],[0,2,1,1]],[[1,2,2,1],[0,2,2,3],[2,0,3,2],[0,2,1,1]],[[1,2,2,2],[0,2,2,2],[2,0,3,2],[0,2,1,1]],[[1,2,3,1],[0,2,2,2],[2,0,3,2],[0,2,1,1]],[[1,3,2,1],[0,2,2,2],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[0,2,2,2],[2,0,3,2],[0,1,2,2]],[[1,2,2,1],[0,2,2,2],[2,0,3,3],[0,1,2,1]],[[1,2,2,1],[0,2,2,3],[2,0,3,2],[0,1,2,1]],[[1,2,2,2],[0,2,2,2],[2,0,3,2],[0,1,2,1]],[[1,2,3,1],[0,2,2,2],[2,0,3,2],[0,1,2,1]],[[1,3,2,1],[0,2,2,2],[2,0,3,2],[0,1,2,1]],[[1,2,2,1],[0,2,2,3],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[0,2,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[0,2,2,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,1],[0,2,2,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,1],[0,2,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[0,2,2,3],[2,0,3,1],[1,2,1,1]],[[1,2,2,2],[0,2,2,2],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[0,2,2,2],[2,0,3,1],[1,2,1,1]],[[1,3,2,1],[0,2,2,2],[2,0,3,1],[1,2,1,1]],[[2,2,2,1],[0,2,2,2],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[0,2,2,3],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[0,2,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[0,2,2,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,1],[0,2,2,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,1],[0,2,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[0,2,2,2],[2,0,2,3],[1,2,2,0]],[[1,2,2,1],[0,2,2,3],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[0,2,2,2],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[0,2,2,2],[2,0,2,2],[1,2,2,0]],[[1,3,2,1],[0,2,2,2],[2,0,2,2],[1,2,2,0]],[[2,2,2,1],[0,2,2,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,1],[0,2,2,2],[2,0,2,2],[1,2,1,2]],[[1,2,2,1],[0,2,2,2],[2,0,2,3],[1,2,1,1]],[[1,2,2,1],[0,2,2,3],[2,0,2,2],[1,2,1,1]],[[1,2,2,2],[0,2,2,2],[2,0,2,2],[1,2,1,1]],[[1,2,3,1],[0,2,2,2],[2,0,2,2],[1,2,1,1]],[[1,3,2,1],[0,2,2,2],[2,0,2,2],[1,2,1,1]],[[2,2,2,1],[0,2,2,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[0,2,2,2],[2,0,2,2],[0,2,2,2]],[[1,2,2,1],[0,2,2,2],[2,0,2,2],[0,2,3,1]],[[1,2,2,1],[0,2,2,2],[2,0,2,3],[0,2,2,1]],[[1,2,2,1],[0,2,2,3],[2,0,2,2],[0,2,2,1]],[[1,2,2,2],[0,2,2,2],[2,0,2,2],[0,2,2,1]],[[1,2,3,1],[0,2,2,2],[2,0,2,2],[0,2,2,1]],[[1,3,2,1],[0,2,2,2],[2,0,2,2],[0,2,2,1]],[[1,2,2,1],[0,2,2,2],[2,0,1,2],[1,2,2,2]],[[1,2,2,1],[0,2,2,2],[2,0,1,2],[1,2,3,1]],[[1,2,2,1],[0,2,2,2],[2,0,1,2],[1,3,2,1]],[[1,2,2,1],[0,2,2,2],[2,0,1,2],[2,2,2,1]],[[1,2,2,1],[0,2,2,2],[2,0,1,3],[1,2,2,1]],[[1,2,2,1],[0,2,2,2],[3,0,1,2],[1,2,2,1]],[[1,2,2,1],[0,2,2,3],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[0,2,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[0,2,2,2],[2,0,1,2],[1,2,2,1]],[[1,3,2,1],[0,2,2,2],[2,0,1,2],[1,2,2,1]],[[2,2,2,1],[0,2,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[0,2,2,3],[1,3,3,1],[1,2,0,0]],[[1,2,2,2],[0,2,2,2],[1,3,3,1],[1,2,0,0]],[[1,2,3,1],[0,2,2,2],[1,3,3,1],[1,2,0,0]],[[1,3,2,1],[0,2,2,2],[1,3,3,1],[1,2,0,0]],[[2,2,2,1],[0,2,2,2],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,2,2,3],[1,3,2,1],[1,2,1,0]],[[1,2,2,2],[0,2,2,2],[1,3,2,1],[1,2,1,0]],[[1,2,3,1],[0,2,2,2],[1,3,2,1],[1,2,1,0]],[[1,3,2,1],[0,2,2,2],[1,3,2,1],[1,2,1,0]],[[2,2,2,1],[0,2,2,2],[1,3,2,1],[1,2,1,0]],[[1,2,2,1],[0,2,2,3],[1,3,2,1],[1,2,0,1]],[[1,2,2,2],[0,2,2,2],[1,3,2,1],[1,2,0,1]],[[1,2,3,1],[0,2,2,2],[1,3,2,1],[1,2,0,1]],[[1,3,2,1],[0,2,2,2],[1,3,2,1],[1,2,0,1]],[[2,2,2,1],[0,2,2,2],[1,3,2,1],[1,2,0,1]],[[1,2,2,1],[0,2,2,3],[1,3,2,1],[1,1,2,0]],[[1,2,2,2],[0,2,2,2],[1,3,2,1],[1,1,2,0]],[[1,2,3,1],[0,2,2,2],[1,3,2,1],[1,1,2,0]],[[1,3,2,1],[0,2,2,2],[1,3,2,1],[1,1,2,0]],[[2,2,2,1],[0,2,2,2],[1,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,2,2,3],[1,3,2,1],[1,1,1,1]],[[1,2,2,2],[0,2,2,2],[1,3,2,1],[1,1,1,1]],[[1,2,3,1],[0,2,2,2],[1,3,2,1],[1,1,1,1]],[[1,3,2,1],[0,2,2,2],[1,3,2,1],[1,1,1,1]],[[2,2,2,1],[0,2,2,2],[1,3,2,1],[1,1,1,1]],[[1,2,2,1],[0,2,2,3],[1,3,2,0],[1,2,1,1]],[[1,2,2,2],[0,2,2,2],[1,3,2,0],[1,2,1,1]],[[1,2,3,1],[0,2,2,2],[1,3,2,0],[1,2,1,1]],[[1,3,2,1],[0,2,2,2],[1,3,2,0],[1,2,1,1]],[[2,2,2,1],[0,2,2,2],[1,3,2,0],[1,2,1,1]],[[1,2,2,1],[0,2,2,3],[1,3,2,0],[1,1,2,1]],[[1,2,2,2],[0,2,2,2],[1,3,2,0],[1,1,2,1]],[[1,2,3,1],[0,2,2,2],[1,3,2,0],[1,1,2,1]],[[1,3,2,1],[0,2,2,2],[1,3,2,0],[1,1,2,1]],[[2,2,2,1],[0,2,2,2],[1,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,2,2,2],[1,3,1,3],[1,2,1,0]],[[1,2,2,1],[0,2,2,3],[1,3,1,2],[1,2,1,0]],[[1,2,2,2],[0,2,2,2],[1,3,1,2],[1,2,1,0]],[[1,2,3,1],[0,2,2,2],[1,3,1,2],[1,2,1,0]],[[1,3,2,1],[0,2,2,2],[1,3,1,2],[1,2,1,0]],[[2,2,2,1],[0,2,2,2],[1,3,1,2],[1,2,1,0]],[[1,2,2,1],[0,2,2,2],[1,3,1,2],[1,2,0,2]],[[1,2,2,1],[0,2,2,2],[1,3,1,3],[1,2,0,1]],[[1,2,2,1],[0,2,2,3],[1,3,1,2],[1,2,0,1]],[[1,2,2,2],[0,2,2,2],[1,3,1,2],[1,2,0,1]],[[1,2,3,1],[0,2,2,2],[1,3,1,2],[1,2,0,1]],[[1,3,2,1],[0,2,2,2],[1,3,1,2],[1,2,0,1]],[[2,2,2,1],[0,2,2,2],[1,3,1,2],[1,2,0,1]],[[1,2,2,1],[0,2,2,2],[1,3,1,3],[1,1,2,0]],[[1,2,2,1],[0,2,2,3],[1,3,1,2],[1,1,2,0]],[[1,2,2,2],[0,2,2,2],[1,3,1,2],[1,1,2,0]],[[1,2,3,1],[0,2,2,2],[1,3,1,2],[1,1,2,0]],[[1,3,2,1],[0,2,2,2],[1,3,1,2],[1,1,2,0]],[[2,2,2,1],[0,2,2,2],[1,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,2,2,2],[1,3,1,2],[1,1,1,2]],[[1,2,2,1],[0,2,2,2],[1,3,1,3],[1,1,1,1]],[[1,2,2,1],[0,2,2,3],[1,3,1,2],[1,1,1,1]],[[1,2,2,2],[0,2,2,2],[1,3,1,2],[1,1,1,1]],[[1,2,3,1],[0,2,2,2],[1,3,1,2],[1,1,1,1]],[[1,3,2,1],[0,2,2,2],[1,3,1,2],[1,1,1,1]],[[2,2,2,1],[0,2,2,2],[1,3,1,2],[1,1,1,1]],[[1,2,2,1],[0,2,2,3],[1,3,1,1],[1,2,2,0]],[[1,2,2,2],[0,2,2,2],[1,3,1,1],[1,2,2,0]],[[1,2,3,1],[0,2,2,2],[1,3,1,1],[1,2,2,0]],[[1,3,2,1],[0,2,2,2],[1,3,1,1],[1,2,2,0]],[[2,2,2,1],[0,2,2,2],[1,3,1,1],[1,2,2,0]],[[1,2,2,1],[0,2,2,3],[1,3,1,0],[1,2,2,1]],[[1,2,2,2],[0,2,2,2],[1,3,1,0],[1,2,2,1]],[[1,2,3,1],[0,2,2,2],[1,3,1,0],[1,2,2,1]],[[1,3,2,1],[0,2,2,2],[1,3,1,0],[1,2,2,1]],[[2,2,2,1],[0,2,2,2],[1,3,1,0],[1,2,2,1]],[[1,2,2,1],[0,2,2,2],[1,3,0,3],[1,2,2,0]],[[1,2,2,1],[0,2,2,3],[1,3,0,2],[1,2,2,0]],[[1,2,2,2],[0,2,2,2],[1,3,0,2],[1,2,2,0]],[[1,2,3,1],[0,2,2,2],[1,3,0,2],[1,2,2,0]],[[1,3,2,1],[0,2,2,2],[1,3,0,2],[1,2,2,0]],[[2,2,2,1],[0,2,2,2],[1,3,0,2],[1,2,2,0]],[[1,2,2,1],[0,2,2,2],[1,3,0,2],[1,2,1,2]],[[1,2,2,1],[0,2,2,2],[1,3,0,3],[1,2,1,1]],[[1,2,2,1],[0,2,2,3],[1,3,0,2],[1,2,1,1]],[[1,2,2,2],[0,2,2,2],[1,3,0,2],[1,2,1,1]],[[1,2,3,1],[0,2,2,2],[1,3,0,2],[1,2,1,1]],[[1,3,2,1],[0,2,2,2],[1,3,0,2],[1,2,1,1]],[[2,2,2,1],[0,2,2,2],[1,3,0,2],[1,2,1,1]],[[1,2,2,1],[0,2,2,2],[1,3,0,2],[1,1,2,2]],[[1,2,2,1],[0,2,2,2],[1,3,0,2],[1,1,3,1]],[[1,2,2,1],[0,2,2,2],[1,3,0,3],[1,1,2,1]],[[1,2,2,1],[0,2,2,3],[1,3,0,2],[1,1,2,1]],[[1,2,2,2],[0,2,2,2],[1,3,0,2],[1,1,2,1]],[[1,2,3,1],[0,2,2,2],[1,3,0,2],[1,1,2,1]],[[1,3,2,1],[0,2,2,2],[1,3,0,2],[1,1,2,1]],[[2,2,2,1],[0,2,2,2],[1,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,2,2,3],[1,3,0,1],[1,2,2,1]],[[1,2,2,2],[0,2,2,2],[1,3,0,1],[1,2,2,1]],[[1,2,3,1],[0,2,2,2],[1,3,0,1],[1,2,2,1]],[[1,3,2,1],[0,2,2,2],[1,3,0,1],[1,2,2,1]],[[2,2,2,1],[0,2,2,2],[1,3,0,1],[1,2,2,1]],[[1,2,2,1],[0,2,2,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[0,2,2,3],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,2,2,2],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[0,2,2,2],[1,2,3,2],[1,1,0,1]],[[1,3,2,1],[0,2,2,2],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[0,2,2,3],[1,2,3,1],[1,2,1,0]],[[1,2,2,2],[0,2,2,2],[1,2,3,1],[1,2,1,0]],[[1,2,3,1],[0,2,2,2],[1,2,3,1],[1,2,1,0]],[[1,3,2,1],[0,2,2,2],[1,2,3,1],[1,2,1,0]],[[2,2,2,1],[0,2,2,2],[1,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,2,2,3],[1,2,3,1],[1,2,0,1]],[[1,2,2,2],[0,2,2,2],[1,2,3,1],[1,2,0,1]],[[1,2,3,1],[0,2,2,2],[1,2,3,1],[1,2,0,1]],[[1,3,2,1],[0,2,2,2],[1,2,3,1],[1,2,0,1]],[[2,2,2,1],[0,2,2,2],[1,2,3,1],[1,2,0,1]],[[1,2,2,1],[0,2,2,3],[1,2,3,1],[1,1,2,0]],[[1,2,2,2],[0,2,2,2],[1,2,3,1],[1,1,2,0]],[[1,2,3,1],[0,2,2,2],[1,2,3,1],[1,1,2,0]],[[1,3,2,1],[0,2,2,2],[1,2,3,1],[1,1,2,0]],[[2,2,2,1],[0,2,2,2],[1,2,3,1],[1,1,2,0]],[[1,2,2,1],[0,2,2,3],[1,2,3,1],[1,1,1,1]],[[1,2,2,2],[0,2,2,2],[1,2,3,1],[1,1,1,1]],[[1,2,3,1],[0,2,2,2],[1,2,3,1],[1,1,1,1]],[[1,3,2,1],[0,2,2,2],[1,2,3,1],[1,1,1,1]],[[2,2,2,1],[0,2,2,2],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,2,2,3],[1,2,3,1],[1,0,2,1]],[[1,2,2,2],[0,2,2,2],[1,2,3,1],[1,0,2,1]],[[1,2,3,1],[0,2,2,2],[1,2,3,1],[1,0,2,1]],[[1,3,2,1],[0,2,2,2],[1,2,3,1],[1,0,2,1]],[[1,2,2,1],[0,2,2,3],[1,2,3,0],[1,2,1,1]],[[1,2,2,2],[0,2,2,2],[1,2,3,0],[1,2,1,1]],[[1,2,3,1],[0,2,2,2],[1,2,3,0],[1,2,1,1]],[[1,3,2,1],[0,2,2,2],[1,2,3,0],[1,2,1,1]],[[2,2,2,1],[0,2,2,2],[1,2,3,0],[1,2,1,1]],[[1,2,2,1],[0,2,2,3],[1,2,3,0],[1,1,2,1]],[[1,2,2,2],[0,2,2,2],[1,2,3,0],[1,1,2,1]],[[1,2,3,1],[0,2,2,2],[1,2,3,0],[1,1,2,1]],[[1,3,2,1],[0,2,2,2],[1,2,3,0],[1,1,2,1]],[[2,2,2,1],[0,2,2,2],[1,2,3,0],[1,1,2,1]],[[1,2,2,1],[0,2,2,2],[1,2,2,3],[1,2,1,0]],[[1,2,2,1],[0,2,2,3],[1,2,2,2],[1,2,1,0]],[[1,2,2,2],[0,2,2,2],[1,2,2,2],[1,2,1,0]],[[1,2,3,1],[0,2,2,2],[1,2,2,2],[1,2,1,0]],[[1,3,2,1],[0,2,2,2],[1,2,2,2],[1,2,1,0]],[[2,2,2,1],[0,2,2,2],[1,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,2,2,2],[1,2,2,2],[1,2,0,2]],[[1,2,2,1],[0,2,2,2],[1,2,2,3],[1,2,0,1]],[[1,2,2,1],[0,2,2,3],[1,2,2,2],[1,2,0,1]],[[1,2,2,2],[0,2,2,2],[1,2,2,2],[1,2,0,1]],[[1,2,3,1],[0,2,2,2],[1,2,2,2],[1,2,0,1]],[[1,3,2,1],[0,2,2,2],[1,2,2,2],[1,2,0,1]],[[2,2,2,1],[0,2,2,2],[1,2,2,2],[1,2,0,1]],[[1,2,2,1],[0,2,2,2],[1,2,2,3],[1,1,2,0]],[[1,2,2,1],[0,2,2,3],[1,2,2,2],[1,1,2,0]],[[1,2,2,2],[0,2,2,2],[1,2,2,2],[1,1,2,0]],[[1,2,3,1],[0,2,2,2],[1,2,2,2],[1,1,2,0]],[[1,3,2,1],[0,2,2,2],[1,2,2,2],[1,1,2,0]],[[2,2,2,1],[0,2,2,2],[1,2,2,2],[1,1,2,0]],[[1,2,2,1],[0,2,2,2],[1,2,2,2],[1,1,1,2]],[[1,2,2,1],[0,2,2,2],[1,2,2,3],[1,1,1,1]],[[1,2,2,1],[0,2,2,3],[1,2,2,2],[1,1,1,1]],[[1,2,2,2],[0,2,2,2],[1,2,2,2],[1,1,1,1]],[[1,2,3,1],[0,2,2,2],[1,2,2,2],[1,1,1,1]],[[1,3,2,1],[0,2,2,2],[1,2,2,2],[1,1,1,1]],[[2,2,2,1],[0,2,2,2],[1,2,2,2],[1,1,1,1]],[[1,2,2,1],[0,2,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[0,2,2,2],[1,2,2,3],[1,0,2,1]],[[1,2,2,1],[0,2,2,3],[1,2,2,2],[1,0,2,1]],[[1,2,2,2],[0,2,2,2],[1,2,2,2],[1,0,2,1]],[[1,2,3,1],[0,2,2,2],[1,2,2,2],[1,0,2,1]],[[1,3,2,1],[0,2,2,2],[1,2,2,2],[1,0,2,1]],[[1,2,2,1],[0,2,2,2],[1,2,1,2],[1,1,2,2]],[[1,2,2,1],[0,2,2,2],[1,2,1,2],[1,1,3,1]],[[1,2,2,1],[0,2,2,2],[1,2,1,3],[1,1,2,1]],[[1,2,2,1],[0,2,2,3],[1,2,1,2],[1,1,2,1]],[[1,2,2,2],[0,2,2,2],[1,2,1,2],[1,1,2,1]],[[1,2,3,1],[0,2,2,2],[1,2,1,2],[1,1,2,1]],[[1,3,2,1],[0,2,2,2],[1,2,1,2],[1,1,2,1]],[[2,2,2,1],[0,2,2,2],[1,2,1,2],[1,1,2,1]],[[1,2,2,1],[0,2,2,2],[1,2,0,2],[1,2,2,2]],[[1,2,2,1],[0,2,2,2],[1,2,0,2],[1,2,3,1]],[[1,2,2,1],[0,2,2,2],[1,2,0,2],[1,3,2,1]],[[1,2,2,1],[0,2,2,2],[1,2,0,2],[2,2,2,1]],[[1,2,2,1],[0,2,2,2],[1,2,0,3],[1,2,2,1]],[[1,2,2,1],[0,2,2,3],[1,2,0,2],[1,2,2,1]],[[1,2,2,2],[0,2,2,2],[1,2,0,2],[1,2,2,1]],[[1,2,3,1],[0,2,2,2],[1,2,0,2],[1,2,2,1]],[[1,3,2,1],[0,2,2,2],[1,2,0,2],[1,2,2,1]],[[2,2,2,1],[0,2,2,2],[1,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,2,2,2],[1,1,3,3],[1,1,2,0]],[[1,2,2,1],[0,2,2,3],[1,1,3,2],[1,1,2,0]],[[1,2,2,2],[0,2,2,2],[1,1,3,2],[1,1,2,0]],[[1,2,3,1],[0,2,2,2],[1,1,3,2],[1,1,2,0]],[[1,3,2,1],[0,2,2,2],[1,1,3,2],[1,1,2,0]],[[1,2,2,1],[0,2,2,2],[1,1,3,2],[1,1,1,2]],[[1,2,2,1],[0,2,2,2],[1,1,3,3],[1,1,1,1]],[[1,2,2,1],[0,2,2,3],[1,1,3,2],[1,1,1,1]],[[1,2,2,2],[0,2,2,2],[1,1,3,2],[1,1,1,1]],[[1,2,3,1],[0,2,2,2],[1,1,3,2],[1,1,1,1]],[[1,3,2,1],[0,2,2,2],[1,1,3,2],[1,1,1,1]],[[1,2,2,1],[0,2,2,2],[1,1,3,2],[1,0,2,2]],[[1,2,2,1],[0,2,2,2],[1,1,3,3],[1,0,2,1]],[[1,2,2,1],[0,2,2,3],[1,1,3,2],[1,0,2,1]],[[1,2,2,2],[0,2,2,2],[1,1,3,2],[1,0,2,1]],[[1,2,3,1],[0,2,2,2],[1,1,3,2],[1,0,2,1]],[[1,3,2,1],[0,2,2,2],[1,1,3,2],[1,0,2,1]],[[1,2,2,1],[0,2,2,3],[1,1,3,1],[1,2,2,0]],[[1,2,2,2],[0,2,2,2],[1,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,2,2,2],[1,1,3,1],[1,2,2,0]],[[1,3,2,1],[0,2,2,2],[1,1,3,1],[1,2,2,0]],[[2,2,2,1],[0,2,2,2],[1,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,2,2,3],[1,1,3,1],[1,2,1,1]],[[1,2,2,2],[0,2,2,2],[1,1,3,1],[1,2,1,1]],[[1,2,3,1],[0,2,2,2],[1,1,3,1],[1,2,1,1]],[[1,3,2,1],[0,2,2,2],[1,1,3,1],[1,2,1,1]],[[2,2,2,1],[0,2,2,2],[1,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,2,2,3],[1,1,3,0],[1,2,2,1]],[[1,2,2,2],[0,2,2,2],[1,1,3,0],[1,2,2,1]],[[1,2,3,1],[0,2,2,2],[1,1,3,0],[1,2,2,1]],[[1,3,2,1],[0,2,2,2],[1,1,3,0],[1,2,2,1]],[[2,2,2,1],[0,2,2,2],[1,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,2,2,2],[1,1,2,3],[1,2,2,0]],[[1,2,2,1],[0,2,2,3],[1,1,2,2],[1,2,2,0]],[[1,2,2,2],[0,2,2,2],[1,1,2,2],[1,2,2,0]],[[1,2,3,1],[0,2,2,2],[1,1,2,2],[1,2,2,0]],[[1,3,2,1],[0,2,2,2],[1,1,2,2],[1,2,2,0]],[[2,2,2,1],[0,2,2,2],[1,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,2,2,2],[1,1,2,2],[1,2,1,2]],[[1,2,2,1],[0,2,2,2],[1,1,2,3],[1,2,1,1]],[[1,2,2,1],[0,2,2,3],[1,1,2,2],[1,2,1,1]],[[1,2,2,2],[0,2,2,2],[1,1,2,2],[1,2,1,1]],[[1,2,3,1],[0,2,2,2],[1,1,2,2],[1,2,1,1]],[[1,3,2,1],[0,2,2,2],[1,1,2,2],[1,2,1,1]],[[2,2,2,1],[0,2,2,2],[1,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,2,2,2],[1,1,1,2],[1,2,2,2]],[[1,2,2,1],[0,2,2,2],[1,1,1,2],[1,2,3,1]],[[1,2,2,1],[0,2,2,2],[1,1,1,2],[1,3,2,1]],[[1,2,2,1],[0,2,2,2],[1,1,1,2],[2,2,2,1]],[[1,2,2,1],[0,2,2,2],[1,1,1,3],[1,2,2,1]],[[1,2,2,1],[0,2,2,3],[1,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,2,2,2],[1,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,2,2,2],[1,1,1,2],[1,2,2,1]],[[1,3,2,1],[0,2,2,2],[1,1,1,2],[1,2,2,1]],[[2,2,2,1],[0,2,2,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,2,2,2],[1,0,3,3],[1,2,2,0]],[[1,2,2,1],[0,2,2,3],[1,0,3,2],[1,2,2,0]],[[1,2,2,2],[0,2,2,2],[1,0,3,2],[1,2,2,0]],[[1,2,3,1],[0,2,2,2],[1,0,3,2],[1,2,2,0]],[[1,3,2,1],[0,2,2,2],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,2,2],[1,0,3,2],[1,2,1,2]],[[1,2,2,1],[0,2,2,2],[1,0,3,3],[1,2,1,1]],[[1,2,2,1],[0,2,2,3],[1,0,3,2],[1,2,1,1]],[[1,2,2,2],[0,2,2,2],[1,0,3,2],[1,2,1,1]],[[1,2,3,1],[0,2,2,2],[1,0,3,2],[1,2,1,1]],[[1,3,2,1],[0,2,2,2],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,2,2,2],[1,0,3,2],[1,1,2,2]],[[1,2,2,1],[0,2,2,2],[1,0,3,3],[1,1,2,1]],[[1,2,2,1],[0,2,2,3],[1,0,3,2],[1,1,2,1]],[[1,2,2,2],[0,2,2,2],[1,0,3,2],[1,1,2,1]],[[1,2,3,1],[0,2,2,2],[1,0,3,2],[1,1,2,1]],[[1,3,2,1],[0,2,2,2],[1,0,3,2],[1,1,2,1]],[[1,2,2,1],[0,2,2,2],[1,0,2,2],[1,2,2,2]],[[1,2,2,1],[0,2,2,2],[1,0,2,2],[1,2,3,1]],[[1,2,2,1],[0,2,2,2],[1,0,2,3],[1,2,2,1]],[[1,2,2,1],[0,2,2,3],[1,0,2,2],[1,2,2,1]],[[1,2,2,2],[0,2,2,2],[1,0,2,2],[1,2,2,1]],[[1,2,3,1],[0,2,2,2],[1,0,2,2],[1,2,2,1]],[[1,3,2,1],[0,2,2,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,0,2],[1,3,3,3],[1,2,2,1]],[[0,2,2,1],[1,0,0,2],[1,3,3,2],[2,2,2,1]],[[0,2,2,1],[1,0,0,2],[1,3,3,2],[1,3,2,1]],[[0,2,2,1],[1,0,0,2],[1,3,3,2],[1,2,3,1]],[[0,2,2,1],[1,0,0,2],[1,3,3,2],[1,2,2,2]],[[0,2,2,1],[1,0,0,2],[2,3,3,3],[0,2,2,1]],[[0,2,2,1],[1,0,0,2],[2,3,3,2],[0,3,2,1]],[[0,2,2,1],[1,0,0,2],[2,3,3,2],[0,2,3,1]],[[0,2,2,1],[1,0,0,2],[2,3,3,2],[0,2,2,2]],[[0,2,3,1],[1,0,1,2],[1,3,2,2],[1,2,2,1]],[[0,2,2,2],[1,0,1,2],[1,3,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,1,3],[1,3,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,1,2],[1,3,2,3],[1,2,2,1]],[[0,2,2,1],[1,0,1,2],[1,3,2,2],[2,2,2,1]],[[0,2,2,1],[1,0,1,2],[1,3,2,2],[1,3,2,1]],[[0,2,2,1],[1,0,1,2],[1,3,2,2],[1,2,3,1]],[[0,2,2,1],[1,0,1,2],[1,3,2,2],[1,2,2,2]],[[0,2,2,1],[1,0,1,2],[1,3,4,1],[1,2,2,1]],[[0,2,2,1],[1,0,1,2],[1,3,3,1],[2,2,2,1]],[[0,2,2,1],[1,0,1,2],[1,3,3,1],[1,3,2,1]],[[0,2,2,1],[1,0,1,2],[1,3,3,1],[1,2,3,1]],[[0,2,2,1],[1,0,1,2],[1,3,3,1],[1,2,2,2]],[[0,2,3,1],[1,0,1,2],[1,3,3,2],[1,2,1,1]],[[0,2,2,2],[1,0,1,2],[1,3,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,1,3],[1,3,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,1,2],[1,3,4,2],[1,2,1,1]],[[0,2,2,1],[1,0,1,2],[1,3,3,3],[1,2,1,1]],[[0,2,2,1],[1,0,1,2],[1,3,3,2],[1,2,1,2]],[[0,2,3,1],[1,0,1,2],[1,3,3,2],[1,2,2,0]],[[0,2,2,2],[1,0,1,2],[1,3,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,1,3],[1,3,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,1,2],[1,3,4,2],[1,2,2,0]],[[0,2,2,1],[1,0,1,2],[1,3,3,3],[1,2,2,0]],[[0,2,2,1],[1,0,1,2],[1,3,3,2],[2,2,2,0]],[[0,2,2,1],[1,0,1,2],[1,3,3,2],[1,3,2,0]],[[0,2,2,1],[1,0,1,2],[1,3,3,2],[1,2,3,0]],[[0,2,3,1],[1,0,1,2],[2,3,2,2],[0,2,2,1]],[[0,2,2,2],[1,0,1,2],[2,3,2,2],[0,2,2,1]],[[0,2,2,1],[1,0,1,3],[2,3,2,2],[0,2,2,1]],[[0,2,2,1],[1,0,1,2],[2,3,2,3],[0,2,2,1]],[[0,2,2,1],[1,0,1,2],[2,3,2,2],[0,3,2,1]],[[0,2,2,1],[1,0,1,2],[2,3,2,2],[0,2,3,1]],[[0,2,2,1],[1,0,1,2],[2,3,2,2],[0,2,2,2]],[[0,2,2,1],[1,0,1,2],[2,3,4,1],[0,2,2,1]],[[0,2,2,1],[1,0,1,2],[2,3,3,1],[0,3,2,1]],[[0,2,2,1],[1,0,1,2],[2,3,3,1],[0,2,3,1]],[[0,2,2,1],[1,0,1,2],[2,3,3,1],[0,2,2,2]],[[0,2,3,1],[1,0,1,2],[2,3,3,2],[0,2,1,1]],[[0,2,2,2],[1,0,1,2],[2,3,3,2],[0,2,1,1]],[[0,2,2,1],[1,0,1,3],[2,3,3,2],[0,2,1,1]],[[0,2,2,1],[1,0,1,2],[2,3,4,2],[0,2,1,1]],[[0,2,2,1],[1,0,1,2],[2,3,3,3],[0,2,1,1]],[[0,2,2,1],[1,0,1,2],[2,3,3,2],[0,2,1,2]],[[0,2,3,1],[1,0,1,2],[2,3,3,2],[0,2,2,0]],[[0,2,2,2],[1,0,1,2],[2,3,3,2],[0,2,2,0]],[[0,2,2,1],[1,0,1,3],[2,3,3,2],[0,2,2,0]],[[0,2,2,1],[1,0,1,2],[2,3,4,2],[0,2,2,0]],[[0,2,2,1],[1,0,1,2],[2,3,3,3],[0,2,2,0]],[[0,2,2,1],[1,0,1,2],[2,3,3,2],[0,3,2,0]],[[0,2,2,1],[1,0,1,2],[2,3,3,2],[0,2,3,0]],[[0,2,2,2],[1,0,2,2],[0,2,3,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,3],[0,2,3,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[0,2,3,3],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[0,2,3,2],[1,2,3,1]],[[0,2,2,1],[1,0,2,2],[0,2,3,2],[1,2,2,2]],[[0,2,3,1],[1,0,2,2],[0,3,2,2],[1,2,2,1]],[[0,2,2,2],[1,0,2,2],[0,3,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,3],[0,3,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[0,3,2,3],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[0,3,2,2],[1,3,2,1]],[[0,2,2,1],[1,0,2,2],[0,3,2,2],[1,2,3,1]],[[0,2,2,1],[1,0,2,2],[0,3,2,2],[1,2,2,2]],[[0,2,2,1],[1,0,2,2],[0,3,4,1],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[0,3,3,1],[1,3,2,1]],[[0,2,2,1],[1,0,2,2],[0,3,3,1],[1,2,3,1]],[[0,2,2,1],[1,0,2,2],[0,3,3,1],[1,2,2,2]],[[0,2,3,1],[1,0,2,2],[0,3,3,2],[1,2,1,1]],[[0,2,2,2],[1,0,2,2],[0,3,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,2,3],[0,3,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,2,2],[0,3,4,2],[1,2,1,1]],[[0,2,2,1],[1,0,2,2],[0,3,3,3],[1,2,1,1]],[[0,2,2,1],[1,0,2,2],[0,3,3,2],[1,2,1,2]],[[0,2,3,1],[1,0,2,2],[0,3,3,2],[1,2,2,0]],[[0,2,2,2],[1,0,2,2],[0,3,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,2,3],[0,3,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,2,2],[0,3,4,2],[1,2,2,0]],[[0,2,2,1],[1,0,2,2],[0,3,3,3],[1,2,2,0]],[[0,2,2,1],[1,0,2,2],[0,3,3,2],[1,3,2,0]],[[0,2,2,1],[1,0,2,2],[0,3,3,2],[1,2,3,0]],[[0,2,3,1],[1,0,2,2],[1,1,3,2],[1,2,2,1]],[[0,2,2,2],[1,0,2,2],[1,1,3,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,3],[1,1,3,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[1,1,3,3],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[1,1,3,2],[1,2,3,1]],[[0,2,2,1],[1,0,2,2],[1,1,3,2],[1,2,2,2]],[[0,2,3,1],[1,0,2,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,2],[1,0,2,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,3],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[1,2,2,2],[2,2,2,1]],[[0,2,2,1],[1,0,2,2],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[1,0,2,2],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[1,0,2,2],[1,2,2,2],[1,2,2,2]],[[0,2,2,1],[1,0,2,2],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[1,2,3,1],[2,2,2,1]],[[0,2,2,1],[1,0,2,2],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[1,0,2,2],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[1,0,2,2],[1,2,3,1],[1,2,2,2]],[[0,2,3,1],[1,0,2,2],[1,2,3,2],[1,2,1,1]],[[0,2,2,2],[1,0,2,2],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,2,3],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,2,2],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[1,0,2,2],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[1,0,2,2],[1,2,3,2],[1,2,1,2]],[[0,2,3,1],[1,0,2,2],[1,2,3,2],[1,2,2,0]],[[0,2,2,2],[1,0,2,2],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,2,3],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,2,2],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[1,0,2,2],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[1,0,2,2],[1,2,3,2],[2,2,2,0]],[[0,2,2,1],[1,0,2,2],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[1,0,2,2],[1,2,3,2],[1,2,3,0]],[[0,2,3,1],[1,0,2,2],[1,3,2,2],[1,1,2,1]],[[0,2,2,2],[1,0,2,2],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[1,0,2,3],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[1,0,2,2],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[1,0,2,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[1,0,2,2],[1,3,2,2],[1,1,2,2]],[[0,2,2,1],[1,0,2,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[1,0,2,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[1,0,2,2],[1,3,3,1],[1,1,2,2]],[[0,2,3,1],[1,0,2,2],[1,3,3,2],[1,0,2,1]],[[0,2,2,2],[1,0,2,2],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[1,0,2,3],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[1,0,2,2],[1,3,4,2],[1,0,2,1]],[[0,2,2,1],[1,0,2,2],[1,3,3,3],[1,0,2,1]],[[0,2,2,1],[1,0,2,2],[1,3,3,2],[1,0,2,2]],[[0,2,3,1],[1,0,2,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,2],[1,0,2,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,0,2,3],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,0,2,2],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[1,0,2,2],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[1,0,2,2],[1,3,3,2],[1,1,1,2]],[[0,2,3,1],[1,0,2,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,2],[1,0,2,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,0,2,3],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,0,2,2],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[1,0,2,2],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[1,0,2,2],[1,3,3,2],[1,1,3,0]],[[0,2,3,1],[1,0,2,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,2],[1,0,2,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,0,2,3],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,0,2,2],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[1,0,2,2],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[1,0,2,2],[1,3,3,2],[1,2,0,2]],[[0,2,3,1],[1,0,2,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,2],[1,0,2,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,0,2,3],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,0,2,2],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[1,0,2,2],[1,3,3,3],[1,2,1,0]],[[0,2,3,1],[1,0,2,2],[2,0,3,2],[1,2,2,1]],[[0,2,2,2],[1,0,2,2],[2,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,3],[2,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,0,3,3],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,0,3,2],[1,2,3,1]],[[0,2,2,1],[1,0,2,2],[2,0,3,2],[1,2,2,2]],[[0,2,3,1],[1,0,2,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,2],[1,0,2,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,3],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,1,2,3],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,1,2,2],[2,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,1,2,2],[1,3,2,1]],[[0,2,2,1],[1,0,2,2],[2,1,2,2],[1,2,3,1]],[[0,2,2,1],[1,0,2,2],[2,1,2,2],[1,2,2,2]],[[0,2,2,1],[1,0,2,2],[2,1,4,1],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,1,3,1],[1,3,2,1]],[[0,2,2,1],[1,0,2,2],[2,1,3,1],[1,2,3,1]],[[0,2,2,1],[1,0,2,2],[2,1,3,1],[1,2,2,2]],[[0,2,3,1],[1,0,2,2],[2,1,3,2],[0,2,2,1]],[[0,2,2,2],[1,0,2,2],[2,1,3,2],[0,2,2,1]],[[0,2,2,1],[1,0,2,3],[2,1,3,2],[0,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,1,3,3],[0,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,1,3,2],[0,2,3,1]],[[0,2,2,1],[1,0,2,2],[2,1,3,2],[0,2,2,2]],[[0,2,3,1],[1,0,2,2],[2,1,3,2],[1,2,1,1]],[[0,2,2,2],[1,0,2,2],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,2,3],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,2,2],[2,1,4,2],[1,2,1,1]],[[0,2,2,1],[1,0,2,2],[2,1,3,3],[1,2,1,1]],[[0,2,2,1],[1,0,2,2],[2,1,3,2],[1,2,1,2]],[[0,2,3,1],[1,0,2,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,2],[1,0,2,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,2,3],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,2,2],[2,1,4,2],[1,2,2,0]],[[0,2,2,1],[1,0,2,2],[2,1,3,3],[1,2,2,0]],[[0,2,2,1],[1,0,2,2],[2,1,3,2],[2,2,2,0]],[[0,2,2,1],[1,0,2,2],[2,1,3,2],[1,3,2,0]],[[0,2,2,1],[1,0,2,2],[2,1,3,2],[1,2,3,0]],[[0,2,3,1],[1,0,2,2],[2,2,2,2],[0,2,2,1]],[[0,2,2,2],[1,0,2,2],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[1,0,2,3],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,2,2,2],[0,3,2,1]],[[0,2,2,1],[1,0,2,2],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[1,0,2,2],[2,2,2,2],[0,2,2,2]],[[0,2,2,1],[1,0,2,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,2,3,1],[0,3,2,1]],[[0,2,2,1],[1,0,2,2],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[1,0,2,2],[2,2,3,1],[0,2,2,2]],[[0,2,3,1],[1,0,2,2],[2,2,3,2],[0,2,1,1]],[[0,2,2,2],[1,0,2,2],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[1,0,2,3],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[1,0,2,2],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[1,0,2,2],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[1,0,2,2],[2,2,3,2],[0,2,1,2]],[[0,2,3,1],[1,0,2,2],[2,2,3,2],[0,2,2,0]],[[0,2,2,2],[1,0,2,2],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[1,0,2,3],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[1,0,2,2],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[1,0,2,2],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[1,0,2,2],[2,2,3,2],[0,3,2,0]],[[0,2,2,1],[1,0,2,2],[2,2,3,2],[0,2,3,0]],[[0,2,3,1],[1,0,2,2],[2,3,2,2],[0,1,2,1]],[[0,2,2,2],[1,0,2,2],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[1,0,2,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[1,0,2,2],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[1,0,2,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[1,0,2,2],[2,3,2,2],[0,1,2,2]],[[0,2,3,1],[1,0,2,2],[2,3,2,2],[1,0,2,1]],[[0,2,2,2],[1,0,2,2],[2,3,2,2],[1,0,2,1]],[[0,2,2,1],[1,0,2,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,1],[1,0,2,2],[2,3,2,3],[1,0,2,1]],[[0,2,2,1],[1,0,2,2],[2,3,2,2],[1,0,3,1]],[[0,2,2,1],[1,0,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[0,2,2,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,2,2,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,1],[0,2,2,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,1],[0,2,2,3],[0,0,3,2],[1,2,2,1]],[[1,2,2,2],[0,2,2,2],[0,0,3,2],[1,2,2,1]],[[1,2,3,1],[0,2,2,2],[0,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,0,2,2],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,1],[0,1,2,2]],[[0,2,2,1],[1,0,2,2],[2,3,4,1],[1,0,2,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,1],[1,0,3,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,1],[1,0,2,2]],[[0,2,3,1],[1,0,2,2],[2,3,3,2],[0,0,2,1]],[[0,2,2,2],[1,0,2,2],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[1,0,2,3],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[1,0,2,2],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,2],[0,0,2,2]],[[0,2,3,1],[1,0,2,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,2],[1,0,2,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,0,2,3],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,0,2,2],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,2],[0,1,1,2]],[[0,2,3,1],[1,0,2,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,2],[1,0,2,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,0,2,3],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,0,2,2],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[1,0,2,2],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[1,0,2,2],[2,3,3,2],[0,1,3,0]],[[0,2,3,1],[1,0,2,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,2],[1,0,2,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,0,2,3],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,0,2,2],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,2],[0,2,0,2]],[[0,2,3,1],[1,0,2,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,2],[1,0,2,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,0,2,3],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,0,2,2],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[1,0,2,2],[2,3,3,3],[0,2,1,0]],[[0,2,3,1],[1,0,2,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,2],[1,0,2,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,0,2,3],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,0,2,2],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,2],[1,0,1,2]],[[0,2,3,1],[1,0,2,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,2],[1,0,2,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,0,2,3],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,0,2,2],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[1,0,2,2],[2,3,3,3],[1,0,2,0]],[[0,2,2,1],[1,0,2,2],[2,3,3,2],[1,0,3,0]],[[0,2,3,1],[1,0,2,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,2],[1,0,2,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,0,2,3],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,0,2,2],[2,3,4,2],[1,1,0,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,3],[1,1,0,1]],[[0,2,2,1],[1,0,2,2],[2,3,3,2],[1,1,0,2]],[[0,2,3,1],[1,0,2,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,2],[1,0,2,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,0,2,3],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,0,2,2],[2,3,4,2],[1,1,1,0]],[[0,2,2,1],[1,0,2,2],[2,3,3,3],[1,1,1,0]],[[0,2,2,1],[1,0,3,0],[1,3,2,3],[1,2,2,1]],[[0,2,2,1],[1,0,3,0],[1,3,2,2],[2,2,2,1]],[[0,2,2,1],[1,0,3,0],[1,3,2,2],[1,3,2,1]],[[0,2,2,1],[1,0,3,0],[1,3,2,2],[1,2,3,1]],[[0,2,2,1],[1,0,3,0],[1,3,2,2],[1,2,2,2]],[[0,2,2,1],[1,0,3,0],[1,3,4,1],[1,2,2,1]],[[0,2,2,1],[1,0,3,0],[1,3,3,1],[2,2,2,1]],[[0,2,2,1],[1,0,3,0],[1,3,3,1],[1,3,2,1]],[[0,2,2,1],[1,0,3,0],[1,3,3,1],[1,2,3,1]],[[0,2,2,1],[1,0,3,0],[1,3,3,1],[1,2,2,2]],[[0,2,2,1],[1,0,3,0],[1,3,4,2],[1,2,1,1]],[[0,2,2,1],[1,0,3,0],[1,3,3,3],[1,2,1,1]],[[0,2,2,1],[1,0,3,0],[1,3,3,2],[1,2,1,2]],[[0,2,2,1],[1,0,3,0],[1,3,4,2],[1,2,2,0]],[[0,2,2,1],[1,0,3,0],[1,3,3,3],[1,2,2,0]],[[0,2,2,1],[1,0,3,0],[1,3,3,2],[2,2,2,0]],[[0,2,2,1],[1,0,3,0],[1,3,3,2],[1,3,2,0]],[[0,2,2,1],[1,0,3,0],[1,3,3,2],[1,2,3,0]],[[0,2,2,1],[1,0,3,0],[2,3,2,3],[0,2,2,1]],[[0,2,2,1],[1,0,3,0],[2,3,2,2],[0,3,2,1]],[[0,2,2,1],[1,0,3,0],[2,3,2,2],[0,2,3,1]],[[0,2,2,1],[1,0,3,0],[2,3,2,2],[0,2,2,2]],[[0,2,2,1],[1,0,3,0],[2,3,4,1],[0,2,2,1]],[[0,2,2,1],[1,0,3,0],[2,3,3,1],[0,3,2,1]],[[0,2,2,1],[1,0,3,0],[2,3,3,1],[0,2,3,1]],[[0,2,2,1],[1,0,3,0],[2,3,3,1],[0,2,2,2]],[[0,2,2,1],[1,0,3,0],[2,3,4,2],[0,2,1,1]],[[0,2,2,1],[1,0,3,0],[2,3,3,3],[0,2,1,1]],[[0,2,2,1],[1,0,3,0],[2,3,3,2],[0,2,1,2]],[[0,2,2,1],[1,0,3,0],[2,3,4,2],[0,2,2,0]],[[0,2,2,1],[1,0,3,0],[2,3,3,3],[0,2,2,0]],[[0,2,2,1],[1,0,3,0],[2,3,3,2],[0,3,2,0]],[[0,2,2,1],[1,0,3,0],[2,3,3,2],[0,2,3,0]],[[0,2,2,1],[1,0,3,1],[1,3,4,0],[1,2,2,1]],[[0,2,2,1],[1,0,3,1],[1,3,3,0],[2,2,2,1]],[[0,2,2,1],[1,0,3,1],[1,3,3,0],[1,3,2,1]],[[0,2,2,1],[1,0,3,1],[1,3,3,0],[1,2,3,1]],[[0,2,2,1],[1,0,3,1],[1,3,3,0],[1,2,2,2]],[[0,2,2,1],[1,0,3,1],[1,3,4,1],[1,2,2,0]],[[0,2,2,1],[1,0,3,1],[1,3,3,1],[2,2,2,0]],[[0,2,2,1],[1,0,3,1],[1,3,3,1],[1,3,2,0]],[[0,2,2,1],[1,0,3,1],[1,3,3,1],[1,2,3,0]],[[0,2,2,1],[1,0,3,1],[2,3,4,0],[0,2,2,1]],[[0,2,2,1],[1,0,3,1],[2,3,3,0],[0,3,2,1]],[[0,2,2,1],[1,0,3,1],[2,3,3,0],[0,2,3,1]],[[0,2,2,1],[1,0,3,1],[2,3,3,0],[0,2,2,2]],[[0,2,2,1],[1,0,3,1],[2,3,4,1],[0,2,2,0]],[[0,2,2,1],[1,0,3,1],[2,3,3,1],[0,3,2,0]],[[0,2,2,1],[1,0,3,1],[2,3,3,1],[0,2,3,0]],[[0,2,2,2],[1,0,3,2],[0,1,3,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,3],[0,1,3,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[0,1,3,3],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[0,1,3,2],[1,2,3,1]],[[0,2,2,1],[1,0,3,2],[0,1,3,2],[1,2,2,2]],[[0,2,3,1],[1,0,3,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,2],[1,0,3,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,3],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[0,3,1,3],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[0,3,1,2],[1,3,2,1]],[[0,2,2,1],[1,0,3,2],[0,3,1,2],[1,2,3,1]],[[0,2,2,1],[1,0,3,2],[0,3,1,2],[1,2,2,2]],[[0,2,3,1],[1,0,3,2],[0,3,2,2],[1,2,1,1]],[[0,2,2,2],[1,0,3,2],[0,3,2,2],[1,2,1,1]],[[0,2,2,1],[1,0,3,3],[0,3,2,2],[1,2,1,1]],[[0,2,2,1],[1,0,3,2],[0,3,2,3],[1,2,1,1]],[[0,2,2,1],[1,0,3,2],[0,3,2,2],[1,2,1,2]],[[0,2,3,1],[1,0,3,2],[0,3,2,2],[1,2,2,0]],[[0,2,2,2],[1,0,3,2],[0,3,2,2],[1,2,2,0]],[[0,2,2,1],[1,0,3,3],[0,3,2,2],[1,2,2,0]],[[0,2,2,1],[1,0,3,2],[0,3,2,3],[1,2,2,0]],[[0,2,3,1],[1,0,3,2],[0,3,3,0],[1,2,2,1]],[[0,2,2,2],[1,0,3,2],[0,3,3,0],[1,2,2,1]],[[0,2,2,1],[1,0,3,3],[0,3,3,0],[1,2,2,1]],[[0,2,3,1],[1,0,3,2],[0,3,3,1],[1,2,1,1]],[[0,2,2,2],[1,0,3,2],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[1,0,3,3],[0,3,3,1],[1,2,1,1]],[[0,2,3,1],[1,0,3,2],[0,3,3,1],[1,2,2,0]],[[0,2,2,2],[1,0,3,2],[0,3,3,1],[1,2,2,0]],[[0,2,2,1],[1,0,3,3],[0,3,3,1],[1,2,2,0]],[[0,2,3,1],[1,0,3,2],[1,1,2,2],[1,2,2,1]],[[0,2,2,2],[1,0,3,2],[1,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,3],[1,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[1,1,2,3],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[1,1,2,2],[1,2,3,1]],[[0,2,2,1],[1,0,3,2],[1,1,2,2],[1,2,2,2]],[[0,2,3,1],[1,0,3,2],[1,1,3,2],[1,1,2,1]],[[0,2,2,2],[1,0,3,2],[1,1,3,2],[1,1,2,1]],[[0,2,2,1],[1,0,3,3],[1,1,3,2],[1,1,2,1]],[[0,2,2,1],[1,0,3,2],[1,1,3,3],[1,1,2,1]],[[0,2,2,1],[1,0,3,2],[1,1,3,2],[1,1,2,2]],[[0,2,3,1],[1,0,3,2],[1,1,3,2],[1,2,1,1]],[[0,2,2,2],[1,0,3,2],[1,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,3,3],[1,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,3,2],[1,1,3,3],[1,2,1,1]],[[0,2,2,1],[1,0,3,2],[1,1,3,2],[1,2,1,2]],[[0,2,3,1],[1,0,3,2],[1,1,3,2],[1,2,2,0]],[[0,2,2,2],[1,0,3,2],[1,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,3,3],[1,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,3,2],[1,1,3,3],[1,2,2,0]],[[0,2,3,1],[1,0,3,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,2],[1,0,3,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,3],[1,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[1,2,1,3],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[1,2,1,2],[2,2,2,1]],[[0,2,2,1],[1,0,3,2],[1,2,1,2],[1,3,2,1]],[[0,2,2,1],[1,0,3,2],[1,2,1,2],[1,2,3,1]],[[0,2,2,1],[1,0,3,2],[1,2,1,2],[1,2,2,2]],[[0,2,3,1],[1,0,3,2],[1,2,2,2],[1,2,1,1]],[[0,2,2,2],[1,0,3,2],[1,2,2,2],[1,2,1,1]],[[0,2,2,1],[1,0,3,3],[1,2,2,2],[1,2,1,1]],[[0,2,2,1],[1,0,3,2],[1,2,2,3],[1,2,1,1]],[[0,2,2,1],[1,0,3,2],[1,2,2,2],[1,2,1,2]],[[0,2,3,1],[1,0,3,2],[1,2,2,2],[1,2,2,0]],[[0,2,2,2],[1,0,3,2],[1,2,2,2],[1,2,2,0]],[[0,2,2,1],[1,0,3,3],[1,2,2,2],[1,2,2,0]],[[0,2,2,1],[1,0,3,2],[1,2,2,3],[1,2,2,0]],[[0,2,3,1],[1,0,3,2],[1,2,3,0],[1,2,2,1]],[[0,2,2,2],[1,0,3,2],[1,2,3,0],[1,2,2,1]],[[0,2,2,1],[1,0,3,3],[1,2,3,0],[1,2,2,1]],[[0,2,3,1],[1,0,3,2],[1,2,3,1],[1,2,1,1]],[[0,2,2,2],[1,0,3,2],[1,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,0,3,3],[1,2,3,1],[1,2,1,1]],[[0,2,3,1],[1,0,3,2],[1,2,3,1],[1,2,2,0]],[[0,2,2,2],[1,0,3,2],[1,2,3,1],[1,2,2,0]],[[0,2,2,1],[1,0,3,3],[1,2,3,1],[1,2,2,0]],[[0,2,3,1],[1,0,3,2],[1,2,3,2],[1,0,2,1]],[[0,2,2,2],[1,0,3,2],[1,2,3,2],[1,0,2,1]],[[0,2,2,1],[1,0,3,3],[1,2,3,2],[1,0,2,1]],[[0,2,2,1],[1,0,3,2],[1,2,3,3],[1,0,2,1]],[[0,2,2,1],[1,0,3,2],[1,2,3,2],[1,0,2,2]],[[0,2,3,1],[1,0,3,2],[1,2,3,2],[1,1,1,1]],[[0,2,2,2],[1,0,3,2],[1,2,3,2],[1,1,1,1]],[[0,2,2,1],[1,0,3,3],[1,2,3,2],[1,1,1,1]],[[0,2,2,1],[1,0,3,2],[1,2,3,3],[1,1,1,1]],[[0,2,2,1],[1,0,3,2],[1,2,3,2],[1,1,1,2]],[[0,2,3,1],[1,0,3,2],[1,2,3,2],[1,1,2,0]],[[0,2,2,2],[1,0,3,2],[1,2,3,2],[1,1,2,0]],[[0,2,2,1],[1,0,3,3],[1,2,3,2],[1,1,2,0]],[[0,2,2,1],[1,0,3,2],[1,2,3,3],[1,1,2,0]],[[1,2,2,1],[0,2,1,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[0,2,1,2],[2,3,4,2],[0,0,2,0]],[[1,2,2,1],[0,2,1,3],[2,3,3,2],[0,0,2,0]],[[1,2,2,2],[0,2,1,2],[2,3,3,2],[0,0,2,0]],[[1,2,3,1],[0,2,1,2],[2,3,3,2],[0,0,2,0]],[[1,3,2,1],[0,2,1,2],[2,3,3,2],[0,0,2,0]],[[2,2,2,1],[0,2,1,2],[2,3,3,2],[0,0,2,0]],[[0,2,3,1],[1,0,3,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,2],[1,0,3,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,3],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[1,3,0,3],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[1,3,0,2],[2,2,2,1]],[[0,2,2,1],[1,0,3,2],[1,3,0,2],[1,3,2,1]],[[0,2,2,1],[1,0,3,2],[1,3,0,2],[1,2,3,1]],[[0,2,2,1],[1,0,3,2],[1,3,0,2],[1,2,2,2]],[[0,2,3,1],[1,0,3,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,2],[1,0,3,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,0,3,3],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,0,3,2],[1,3,1,3],[1,1,2,1]],[[0,2,2,1],[1,0,3,2],[1,3,1,2],[1,1,3,1]],[[0,2,2,1],[1,0,3,2],[1,3,1,2],[1,1,2,2]],[[0,2,3,1],[1,0,3,2],[1,3,2,2],[1,0,2,1]],[[0,2,2,2],[1,0,3,2],[1,3,2,2],[1,0,2,1]],[[0,2,2,1],[1,0,3,3],[1,3,2,2],[1,0,2,1]],[[0,2,2,1],[1,0,3,2],[1,3,2,3],[1,0,2,1]],[[0,2,2,1],[1,0,3,2],[1,3,2,2],[1,0,2,2]],[[0,2,3,1],[1,0,3,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,2],[1,0,3,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[1,0,3,3],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[1,0,3,2],[1,3,2,3],[1,1,1,1]],[[0,2,2,1],[1,0,3,2],[1,3,2,2],[1,1,1,2]],[[0,2,3,1],[1,0,3,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,2],[1,0,3,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,0,3,3],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,0,3,2],[1,3,2,3],[1,1,2,0]],[[0,2,3,1],[1,0,3,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,2],[1,0,3,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[1,0,3,3],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[1,0,3,2],[1,3,2,3],[1,2,0,1]],[[0,2,2,1],[1,0,3,2],[1,3,2,2],[1,2,0,2]],[[0,2,3,1],[1,0,3,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,2],[1,0,3,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[1,0,3,3],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[1,0,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[0,2,1,2],[2,3,3,2],[0,0,1,2]],[[1,2,2,1],[0,2,1,2],[2,3,3,3],[0,0,1,1]],[[1,2,2,1],[0,2,1,2],[2,3,4,2],[0,0,1,1]],[[1,2,2,1],[0,2,1,3],[2,3,3,2],[0,0,1,1]],[[1,2,2,2],[0,2,1,2],[2,3,3,2],[0,0,1,1]],[[1,2,3,1],[0,2,1,2],[2,3,3,2],[0,0,1,1]],[[1,3,2,1],[0,2,1,2],[2,3,3,2],[0,0,1,1]],[[2,2,2,1],[0,2,1,2],[2,3,3,2],[0,0,1,1]],[[0,2,3,1],[1,0,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,2],[1,0,3,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,0,3,3],[1,3,3,0],[1,1,2,1]],[[0,2,3,1],[1,0,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,2],[1,0,3,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[1,0,3,3],[1,3,3,0],[1,2,1,1]],[[0,2,3,1],[1,0,3,2],[1,3,3,1],[1,0,2,1]],[[0,2,2,2],[1,0,3,2],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,0,3,3],[1,3,3,1],[1,0,2,1]],[[0,2,3,1],[1,0,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,2],[1,0,3,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,0,3,3],[1,3,3,1],[1,1,1,1]],[[0,2,3,1],[1,0,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,2],[1,0,3,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[1,0,3,3],[1,3,3,1],[1,1,2,0]],[[0,2,3,1],[1,0,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,2],[1,0,3,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,0,3,3],[1,3,3,1],[1,2,0,1]],[[0,2,3,1],[1,0,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,2],[1,0,3,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[1,0,3,3],[1,3,3,1],[1,2,1,0]],[[0,2,3,1],[1,0,3,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,2],[1,0,3,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,0,3,3],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,0,3,2],[1,3,3,3],[1,1,0,1]],[[0,2,3,1],[1,0,3,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,2],[1,0,3,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,3],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,0,2,3],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,0,2,2],[1,2,3,1]],[[0,2,2,1],[1,0,3,2],[2,0,2,2],[1,2,2,2]],[[0,2,3,1],[1,0,3,2],[2,0,3,2],[1,1,2,1]],[[0,2,2,2],[1,0,3,2],[2,0,3,2],[1,1,2,1]],[[0,2,2,1],[1,0,3,3],[2,0,3,2],[1,1,2,1]],[[0,2,2,1],[1,0,3,2],[2,0,3,3],[1,1,2,1]],[[0,2,2,1],[1,0,3,2],[2,0,3,2],[1,1,2,2]],[[0,2,3,1],[1,0,3,2],[2,0,3,2],[1,2,1,1]],[[0,2,2,2],[1,0,3,2],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,3,3],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,0,3,2],[2,0,3,3],[1,2,1,1]],[[0,2,2,1],[1,0,3,2],[2,0,3,2],[1,2,1,2]],[[0,2,3,1],[1,0,3,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,2],[1,0,3,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,3,3],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,0,3,2],[2,0,3,3],[1,2,2,0]],[[0,2,3,1],[1,0,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,2],[1,0,3,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,3],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,1,1,3],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,1,1,2],[2,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,1,1,2],[1,3,2,1]],[[0,2,2,1],[1,0,3,2],[2,1,1,2],[1,2,3,1]],[[0,2,2,1],[1,0,3,2],[2,1,1,2],[1,2,2,2]],[[0,2,3,1],[1,0,3,2],[2,1,2,2],[0,2,2,1]],[[0,2,2,2],[1,0,3,2],[2,1,2,2],[0,2,2,1]],[[0,2,2,1],[1,0,3,3],[2,1,2,2],[0,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,1,2,3],[0,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,1,2,2],[0,2,3,1]],[[0,2,2,1],[1,0,3,2],[2,1,2,2],[0,2,2,2]],[[0,2,3,1],[1,0,3,2],[2,1,2,2],[1,2,1,1]],[[0,2,2,2],[1,0,3,2],[2,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,0,3,3],[2,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,0,3,2],[2,1,2,3],[1,2,1,1]],[[0,2,2,1],[1,0,3,2],[2,1,2,2],[1,2,1,2]],[[0,2,3,1],[1,0,3,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,2],[1,0,3,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,0,3,3],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,0,3,2],[2,1,2,3],[1,2,2,0]],[[0,2,3,1],[1,0,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,2],[1,0,3,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,0,3,3],[2,1,3,0],[1,2,2,1]],[[0,2,3,1],[1,0,3,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,2],[1,0,3,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[1,0,3,3],[2,1,3,1],[1,2,1,1]],[[0,2,3,1],[1,0,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,2],[1,0,3,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,0,3,3],[2,1,3,1],[1,2,2,0]],[[0,2,3,1],[1,0,3,2],[2,1,3,2],[0,1,2,1]],[[0,2,2,2],[1,0,3,2],[2,1,3,2],[0,1,2,1]],[[0,2,2,1],[1,0,3,3],[2,1,3,2],[0,1,2,1]],[[0,2,2,1],[1,0,3,2],[2,1,3,3],[0,1,2,1]],[[0,2,2,1],[1,0,3,2],[2,1,3,2],[0,1,2,2]],[[0,2,3,1],[1,0,3,2],[2,1,3,2],[0,2,1,1]],[[0,2,2,2],[1,0,3,2],[2,1,3,2],[0,2,1,1]],[[0,2,2,1],[1,0,3,3],[2,1,3,2],[0,2,1,1]],[[0,2,2,1],[1,0,3,2],[2,1,3,3],[0,2,1,1]],[[0,2,2,1],[1,0,3,2],[2,1,3,2],[0,2,1,2]],[[0,2,3,1],[1,0,3,2],[2,1,3,2],[0,2,2,0]],[[0,2,2,2],[1,0,3,2],[2,1,3,2],[0,2,2,0]],[[0,2,2,1],[1,0,3,3],[2,1,3,2],[0,2,2,0]],[[0,2,2,1],[1,0,3,2],[2,1,3,3],[0,2,2,0]],[[0,2,3,1],[1,0,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,2],[1,0,3,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,3],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,2,0,3],[1,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,2,0,2],[2,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,2,0,2],[1,3,2,1]],[[0,2,2,1],[1,0,3,2],[2,2,0,2],[1,2,3,1]],[[0,2,2,1],[1,0,3,2],[2,2,0,2],[1,2,2,2]],[[0,2,3,1],[1,0,3,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,2],[1,0,3,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[1,0,3,3],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,2,1,3],[0,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,2,1,2],[0,3,2,1]],[[0,2,2,1],[1,0,3,2],[2,2,1,2],[0,2,3,1]],[[0,2,2,1],[1,0,3,2],[2,2,1,2],[0,2,2,2]],[[0,2,3,1],[1,0,3,2],[2,2,2,2],[0,2,1,1]],[[0,2,2,2],[1,0,3,2],[2,2,2,2],[0,2,1,1]],[[0,2,2,1],[1,0,3,3],[2,2,2,2],[0,2,1,1]],[[0,2,2,1],[1,0,3,2],[2,2,2,3],[0,2,1,1]],[[0,2,2,1],[1,0,3,2],[2,2,2,2],[0,2,1,2]],[[0,2,3,1],[1,0,3,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,2],[1,0,3,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[1,0,3,3],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[1,0,3,2],[2,2,2,3],[0,2,2,0]],[[0,2,3,1],[1,0,3,2],[2,2,3,0],[0,2,2,1]],[[0,2,2,2],[1,0,3,2],[2,2,3,0],[0,2,2,1]],[[0,2,2,1],[1,0,3,3],[2,2,3,0],[0,2,2,1]],[[0,2,3,1],[1,0,3,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,2],[1,0,3,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[1,0,3,3],[2,2,3,1],[0,2,1,1]],[[0,2,3,1],[1,0,3,2],[2,2,3,1],[0,2,2,0]],[[0,2,2,2],[1,0,3,2],[2,2,3,1],[0,2,2,0]],[[0,2,2,1],[1,0,3,3],[2,2,3,1],[0,2,2,0]],[[0,2,3,1],[1,0,3,2],[2,2,3,2],[0,0,2,1]],[[0,2,2,2],[1,0,3,2],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[1,0,3,3],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[1,0,3,2],[2,2,3,3],[0,0,2,1]],[[0,2,2,1],[1,0,3,2],[2,2,3,2],[0,0,2,2]],[[0,2,3,1],[1,0,3,2],[2,2,3,2],[0,1,1,1]],[[0,2,2,2],[1,0,3,2],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[1,0,3,3],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[1,0,3,2],[2,2,3,3],[0,1,1,1]],[[0,2,2,1],[1,0,3,2],[2,2,3,2],[0,1,1,2]],[[0,2,3,1],[1,0,3,2],[2,2,3,2],[0,1,2,0]],[[0,2,2,2],[1,0,3,2],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[1,0,3,3],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[1,0,3,2],[2,2,3,3],[0,1,2,0]],[[0,2,3,1],[1,0,3,2],[2,2,3,2],[1,0,1,1]],[[0,2,2,2],[1,0,3,2],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[1,0,3,3],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[1,0,3,2],[2,2,3,3],[1,0,1,1]],[[0,2,2,1],[1,0,3,2],[2,2,3,2],[1,0,1,2]],[[0,2,3,1],[1,0,3,2],[2,2,3,2],[1,0,2,0]],[[0,2,2,2],[1,0,3,2],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[1,0,3,3],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[1,0,3,2],[2,2,3,3],[1,0,2,0]],[[1,2,2,1],[0,2,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[0,2,1,2],[2,4,0,2],[1,1,2,1]],[[1,2,2,1],[0,2,1,2],[3,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,2,1,2],[2,3,0,2],[0,2,2,2]],[[1,2,2,1],[0,2,1,2],[2,3,0,2],[0,2,3,1]],[[1,2,2,1],[0,2,1,2],[2,3,0,2],[0,3,2,1]],[[1,2,2,1],[0,2,1,2],[2,3,0,3],[0,2,2,1]],[[1,2,2,1],[0,2,1,2],[2,4,0,2],[0,2,2,1]],[[1,2,2,1],[0,2,1,2],[3,3,0,2],[0,2,2,1]],[[1,2,2,1],[0,2,1,3],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[0,2,1,2],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[0,2,1,2],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[0,2,1,2],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[0,2,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,3,1],[1,0,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,2],[1,0,3,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,0,3,3],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,3,0,3],[0,2,2,1]],[[0,2,2,1],[1,0,3,2],[2,3,0,2],[0,3,2,1]],[[0,2,2,1],[1,0,3,2],[2,3,0,2],[0,2,3,1]],[[0,2,2,1],[1,0,3,2],[2,3,0,2],[0,2,2,2]],[[0,2,3,1],[1,0,3,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,2],[1,0,3,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[1,0,3,3],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[1,0,3,2],[2,3,1,3],[0,1,2,1]],[[0,2,2,1],[1,0,3,2],[2,3,1,2],[0,1,3,1]],[[0,2,2,1],[1,0,3,2],[2,3,1,2],[0,1,2,2]],[[0,2,3,1],[1,0,3,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,2],[1,0,3,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[1,0,3,3],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[1,0,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,2,1],[1,0,3,2],[2,3,1,2],[1,0,3,1]],[[0,2,2,1],[1,0,3,2],[2,3,1,2],[1,0,2,2]],[[0,2,3,1],[1,0,3,2],[2,3,2,2],[0,0,2,1]],[[0,2,2,2],[1,0,3,2],[2,3,2,2],[0,0,2,1]],[[0,2,2,1],[1,0,3,3],[2,3,2,2],[0,0,2,1]],[[0,2,2,1],[1,0,3,2],[2,3,2,3],[0,0,2,1]],[[0,2,2,1],[1,0,3,2],[2,3,2,2],[0,0,2,2]],[[0,2,3,1],[1,0,3,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,2],[1,0,3,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,0,3,3],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,0,3,2],[2,3,2,3],[0,1,1,1]],[[0,2,2,1],[1,0,3,2],[2,3,2,2],[0,1,1,2]],[[0,2,3,1],[1,0,3,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,2],[1,0,3,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,0,3,3],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,0,3,2],[2,3,2,3],[0,1,2,0]],[[0,2,3,1],[1,0,3,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,2],[1,0,3,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,0,3,3],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,0,3,2],[2,3,2,3],[0,2,0,1]],[[0,2,2,1],[1,0,3,2],[2,3,2,2],[0,2,0,2]],[[0,2,3,1],[1,0,3,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,2],[1,0,3,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,0,3,3],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,0,3,2],[2,3,2,3],[0,2,1,0]],[[0,2,3,1],[1,0,3,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,2],[1,0,3,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,0,3,3],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,0,3,2],[2,3,2,3],[1,0,1,1]],[[0,2,2,1],[1,0,3,2],[2,3,2,2],[1,0,1,2]],[[0,2,3,1],[1,0,3,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,2],[1,0,3,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,0,3,3],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,0,3,2],[2,3,2,3],[1,0,2,0]],[[0,2,3,1],[1,0,3,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,2],[1,0,3,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,0,3,3],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,0,3,2],[2,3,2,3],[1,1,0,1]],[[0,2,2,1],[1,0,3,2],[2,3,2,2],[1,1,0,2]],[[0,2,3,1],[1,0,3,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,2],[1,0,3,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,0,3,3],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,0,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[0,2,1,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[0,2,1,2],[2,2,4,2],[1,1,1,0]],[[1,2,2,1],[0,2,1,3],[2,2,3,2],[1,1,1,0]],[[1,2,2,2],[0,2,1,2],[2,2,3,2],[1,1,1,0]],[[1,2,3,1],[0,2,1,2],[2,2,3,2],[1,1,1,0]],[[1,3,2,1],[0,2,1,2],[2,2,3,2],[1,1,1,0]],[[2,2,2,1],[0,2,1,2],[2,2,3,2],[1,1,1,0]],[[1,2,2,1],[0,2,1,2],[2,2,3,2],[1,1,0,2]],[[1,2,2,1],[0,2,1,2],[2,2,3,3],[1,1,0,1]],[[1,2,2,1],[0,2,1,2],[2,2,4,2],[1,1,0,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,2],[1,0,3,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,0,3,3],[2,3,3,0],[0,1,2,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,2],[1,0,3,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,0,3,3],[2,3,3,0],[0,2,1,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,2],[1,0,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,0,3,3],[2,3,3,0],[1,0,2,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,2],[1,0,3,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,0,3,3],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,2,1,3],[2,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,2,1,2],[2,2,3,2],[1,1,0,1]],[[1,2,3,1],[0,2,1,2],[2,2,3,2],[1,1,0,1]],[[1,3,2,1],[0,2,1,2],[2,2,3,2],[1,1,0,1]],[[2,2,2,1],[0,2,1,2],[2,2,3,2],[1,1,0,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,1],[0,0,2,1]],[[0,2,2,2],[1,0,3,2],[2,3,3,1],[0,0,2,1]],[[0,2,2,1],[1,0,3,3],[2,3,3,1],[0,0,2,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,2],[1,0,3,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,0,3,3],[2,3,3,1],[0,1,1,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,2],[1,0,3,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,0,3,3],[2,3,3,1],[0,1,2,0]],[[0,2,3,1],[1,0,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,2],[1,0,3,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,0,3,3],[2,3,3,1],[0,2,0,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,2],[1,0,3,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,0,3,3],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,2,1,2],[2,2,3,2],[1,0,3,0]],[[0,2,3,1],[1,0,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,2],[1,0,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,0,3,3],[2,3,3,1],[1,0,1,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,2],[1,0,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,0,3,3],[2,3,3,1],[1,0,2,0]],[[0,2,3,1],[1,0,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,2],[1,0,3,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,0,3,3],[2,3,3,1],[1,1,0,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,2],[1,0,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,0,3,3],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[0,2,1,2],[2,2,3,3],[1,0,2,0]],[[1,2,2,1],[0,2,1,2],[2,2,4,2],[1,0,2,0]],[[1,2,2,1],[0,2,1,3],[2,2,3,2],[1,0,2,0]],[[1,2,2,2],[0,2,1,2],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[0,2,1,2],[2,2,3,2],[1,0,2,0]],[[1,3,2,1],[0,2,1,2],[2,2,3,2],[1,0,2,0]],[[2,2,2,1],[0,2,1,2],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[0,2,1,2],[2,2,3,2],[1,0,1,2]],[[1,2,2,1],[0,2,1,2],[2,2,3,3],[1,0,1,1]],[[1,2,2,1],[0,2,1,2],[2,2,4,2],[1,0,1,1]],[[1,2,2,1],[0,2,1,3],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[0,2,1,2],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[0,2,1,2],[2,2,3,2],[1,0,1,1]],[[1,3,2,1],[0,2,1,2],[2,2,3,2],[1,0,1,1]],[[2,2,2,1],[0,2,1,2],[2,2,3,2],[1,0,1,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,2],[0,1,0,1]],[[0,2,2,2],[1,0,3,2],[2,3,3,2],[0,1,0,1]],[[0,2,2,1],[1,0,3,3],[2,3,3,2],[0,1,0,1]],[[0,2,2,1],[1,0,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[0,2,1,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[0,2,1,2],[2,2,4,2],[0,2,1,0]],[[1,2,2,1],[0,2,1,3],[2,2,3,2],[0,2,1,0]],[[1,2,2,2],[0,2,1,2],[2,2,3,2],[0,2,1,0]],[[1,2,3,1],[0,2,1,2],[2,2,3,2],[0,2,1,0]],[[1,3,2,1],[0,2,1,2],[2,2,3,2],[0,2,1,0]],[[2,2,2,1],[0,2,1,2],[2,2,3,2],[0,2,1,0]],[[1,2,2,1],[0,2,1,2],[2,2,3,2],[0,2,0,2]],[[1,2,2,1],[0,2,1,2],[2,2,3,3],[0,2,0,1]],[[1,2,2,1],[0,2,1,2],[2,2,4,2],[0,2,0,1]],[[1,2,2,1],[0,2,1,3],[2,2,3,2],[0,2,0,1]],[[1,2,2,2],[0,2,1,2],[2,2,3,2],[0,2,0,1]],[[1,2,3,1],[0,2,1,2],[2,2,3,2],[0,2,0,1]],[[1,3,2,1],[0,2,1,2],[2,2,3,2],[0,2,0,1]],[[2,2,2,1],[0,2,1,2],[2,2,3,2],[0,2,0,1]],[[0,2,3,1],[1,0,3,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,2],[1,0,3,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[1,0,3,3],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[1,0,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[0,2,1,2],[2,2,3,2],[0,1,3,0]],[[1,2,2,1],[0,2,1,2],[2,2,3,3],[0,1,2,0]],[[1,2,2,1],[0,2,1,2],[2,2,4,2],[0,1,2,0]],[[1,2,2,1],[0,2,1,3],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[0,2,1,2],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[0,2,1,2],[2,2,3,2],[0,1,2,0]],[[1,3,2,1],[0,2,1,2],[2,2,3,2],[0,1,2,0]],[[2,2,2,1],[0,2,1,2],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[0,2,1,2],[2,2,3,2],[0,1,1,2]],[[1,2,2,1],[0,2,1,2],[2,2,3,3],[0,1,1,1]],[[1,2,2,1],[0,2,1,2],[2,2,4,2],[0,1,1,1]],[[1,2,2,1],[0,2,1,3],[2,2,3,2],[0,1,1,1]],[[1,2,2,2],[0,2,1,2],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[0,2,1,2],[2,2,3,2],[0,1,1,1]],[[1,3,2,1],[0,2,1,2],[2,2,3,2],[0,1,1,1]],[[2,2,2,1],[0,2,1,2],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[0,2,1,2],[2,2,3,2],[0,0,2,2]],[[1,2,2,1],[0,2,1,2],[2,2,3,3],[0,0,2,1]],[[1,2,2,1],[0,2,1,2],[2,2,4,2],[0,0,2,1]],[[1,2,2,1],[0,2,1,3],[2,2,3,2],[0,0,2,1]],[[1,2,2,2],[0,2,1,2],[2,2,3,2],[0,0,2,1]],[[1,2,3,1],[0,2,1,2],[2,2,3,2],[0,0,2,1]],[[1,3,2,1],[0,2,1,2],[2,2,3,2],[0,0,2,1]],[[2,2,2,1],[0,2,1,2],[2,2,3,2],[0,0,2,1]],[[1,2,2,1],[0,2,1,2],[2,2,3,1],[1,0,2,2]],[[1,2,2,1],[0,2,1,2],[2,2,3,1],[1,0,3,1]],[[1,2,2,1],[0,2,1,2],[2,2,4,1],[1,0,2,1]],[[1,2,2,1],[0,2,1,2],[2,2,3,1],[0,1,2,2]],[[1,2,2,1],[0,2,1,2],[2,2,3,1],[0,1,3,1]],[[1,2,2,1],[0,2,1,2],[2,2,4,1],[0,1,2,1]],[[1,2,2,1],[0,2,1,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[0,2,1,2],[2,2,2,2],[1,0,3,1]],[[1,2,2,1],[0,2,1,2],[2,2,2,3],[1,0,2,1]],[[1,2,2,1],[0,2,1,3],[2,2,2,2],[1,0,2,1]],[[0,2,2,1],[1,1,0,2],[0,3,3,3],[1,2,2,1]],[[0,2,2,1],[1,1,0,2],[0,3,3,2],[1,3,2,1]],[[0,2,2,1],[1,1,0,2],[0,3,3,2],[1,2,3,1]],[[0,2,2,1],[1,1,0,2],[0,3,3,2],[1,2,2,2]],[[0,2,2,1],[1,1,0,2],[1,2,3,3],[1,2,2,1]],[[0,2,2,1],[1,1,0,2],[1,2,3,2],[2,2,2,1]],[[0,2,2,1],[1,1,0,2],[1,2,3,2],[1,3,2,1]],[[0,2,2,1],[1,1,0,2],[1,2,3,2],[1,2,3,1]],[[0,2,2,1],[1,1,0,2],[1,2,3,2],[1,2,2,2]],[[0,2,2,1],[1,1,0,2],[1,3,3,3],[1,1,2,1]],[[0,2,2,1],[1,1,0,2],[1,3,3,2],[1,1,3,1]],[[0,2,2,1],[1,1,0,2],[1,3,3,2],[1,1,2,2]],[[0,2,2,1],[1,1,0,2],[2,1,3,3],[1,2,2,1]],[[0,2,2,1],[1,1,0,2],[2,1,3,2],[2,2,2,1]],[[0,2,2,1],[1,1,0,2],[2,1,3,2],[1,3,2,1]],[[0,2,2,1],[1,1,0,2],[2,1,3,2],[1,2,3,1]],[[0,2,2,1],[1,1,0,2],[2,1,3,2],[1,2,2,2]],[[0,2,2,1],[1,1,0,2],[2,2,3,3],[0,2,2,1]],[[0,2,2,1],[1,1,0,2],[2,2,3,2],[0,3,2,1]],[[0,2,2,1],[1,1,0,2],[2,2,3,2],[0,2,3,1]],[[0,2,2,1],[1,1,0,2],[2,2,3,2],[0,2,2,2]],[[0,2,2,1],[1,1,0,2],[2,3,3,3],[0,1,2,1]],[[0,2,2,1],[1,1,0,2],[2,3,3,2],[0,1,3,1]],[[0,2,2,1],[1,1,0,2],[2,3,3,2],[0,1,2,2]],[[0,2,2,1],[1,1,0,2],[2,3,3,3],[1,0,2,1]],[[0,2,2,1],[1,1,0,2],[2,3,3,2],[1,0,3,1]],[[0,2,2,1],[1,1,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,2],[0,2,1,2],[2,2,2,2],[1,0,2,1]],[[1,2,3,1],[0,2,1,2],[2,2,2,2],[1,0,2,1]],[[1,3,2,1],[0,2,1,2],[2,2,2,2],[1,0,2,1]],[[2,2,2,1],[0,2,1,2],[2,2,2,2],[1,0,2,1]],[[0,2,2,2],[1,1,1,2],[0,2,3,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,3],[0,2,3,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[0,2,3,3],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[0,2,3,2],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[0,2,3,2],[1,2,2,2]],[[0,2,3,1],[1,1,1,2],[0,3,2,2],[1,2,2,1]],[[0,2,2,2],[1,1,1,2],[0,3,2,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,3],[0,3,2,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[0,3,2,3],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[0,3,2,2],[1,3,2,1]],[[0,2,2,1],[1,1,1,2],[0,3,2,2],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[0,3,2,2],[1,2,2,2]],[[0,2,2,1],[1,1,1,2],[0,3,4,1],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[0,3,3,1],[1,3,2,1]],[[0,2,2,1],[1,1,1,2],[0,3,3,1],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[0,3,3,1],[1,2,2,2]],[[0,2,3,1],[1,1,1,2],[0,3,3,2],[1,2,1,1]],[[0,2,2,2],[1,1,1,2],[0,3,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,1,3],[0,3,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[0,3,4,2],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[0,3,3,3],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[0,3,3,2],[1,2,1,2]],[[0,2,3,1],[1,1,1,2],[0,3,3,2],[1,2,2,0]],[[0,2,2,2],[1,1,1,2],[0,3,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,3],[0,3,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[0,3,4,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[0,3,3,3],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[0,3,3,2],[1,3,2,0]],[[0,2,2,1],[1,1,1,2],[0,3,3,2],[1,2,3,0]],[[0,2,3,1],[1,1,1,2],[1,1,3,2],[1,2,2,1]],[[0,2,2,2],[1,1,1,2],[1,1,3,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,3],[1,1,3,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,1,3,3],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,1,3,2],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[1,1,3,2],[1,2,2,2]],[[0,3,2,1],[1,1,1,2],[1,2,2,2],[1,2,2,1]],[[0,2,3,1],[1,1,1,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,2],[1,1,1,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,3],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,2,2,2],[2,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[1,1,1,2],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[1,2,2,2],[1,2,2,2]],[[0,2,2,1],[1,1,1,2],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,2,3,1],[2,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[1,1,1,2],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[1,2,3,1],[1,2,2,2]],[[0,3,2,1],[1,1,1,2],[1,2,3,2],[1,2,1,1]],[[0,2,3,1],[1,1,1,2],[1,2,3,2],[1,2,1,1]],[[0,2,2,2],[1,1,1,2],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,1,3],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[1,2,3,2],[1,2,1,2]],[[0,3,2,1],[1,1,1,2],[1,2,3,2],[1,2,2,0]],[[0,2,3,1],[1,1,1,2],[1,2,3,2],[1,2,2,0]],[[0,2,2,2],[1,1,1,2],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,3],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[1,2,3,2],[2,2,2,0]],[[0,2,2,1],[1,1,1,2],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[1,1,1,2],[1,2,3,2],[1,2,3,0]],[[0,3,2,1],[1,1,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,3,1],[1,1,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,2,2],[1,1,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,3],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,4,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,1,3],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,1,2],[2,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,1,2],[1,3,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,1,2],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[1,3,1,2],[1,2,2,2]],[[0,2,2,1],[1,1,1,2],[1,4,2,1],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,2,1],[2,2,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,2,1],[1,3,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,2,1],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[1,3,2,1],[1,2,2,2]],[[0,3,2,1],[1,1,1,2],[1,3,2,2],[1,1,2,1]],[[0,2,3,1],[1,1,1,2],[1,3,2,2],[1,1,2,1]],[[0,2,2,2],[1,1,1,2],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[1,1,1,3],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[1,1,1,2],[1,3,2,2],[1,1,2,2]],[[0,2,2,1],[1,1,1,2],[1,4,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[1,1,1,2],[1,3,2,2],[1,3,2,0]],[[0,2,2,1],[1,1,1,2],[1,3,2,2],[1,2,3,0]],[[0,2,2,1],[1,1,1,2],[1,4,3,1],[1,1,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,1],[1,1,2,2]],[[0,2,2,1],[1,1,1,2],[1,4,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[1,3,4,1],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,1],[2,2,1,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,1],[1,3,1,1]],[[0,2,3,1],[1,1,1,2],[1,3,3,2],[1,0,2,1]],[[0,2,2,2],[1,1,1,2],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[1,1,1,3],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,4,2],[1,0,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,3],[1,0,2,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,2],[1,0,2,2]],[[0,3,2,1],[1,1,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,3,1],[1,1,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,2],[1,1,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,1,1,3],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,1,1,2],[1,4,3,2],[1,1,1,1]],[[0,2,2,1],[1,1,1,2],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,2],[1,1,1,2]],[[0,3,2,1],[1,1,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,3,1],[1,1,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,2],[1,1,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,1,1,3],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,1,1,2],[1,4,3,2],[1,1,2,0]],[[0,2,2,1],[1,1,1,2],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[1,1,1,2],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[1,1,1,2],[1,3,3,2],[1,1,3,0]],[[0,3,2,1],[1,1,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,3,1],[1,1,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,2],[1,1,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,1,1,3],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,1,1,2],[1,4,3,2],[1,2,0,1]],[[0,2,2,1],[1,1,1,2],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,2],[2,2,0,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,2],[1,3,0,1]],[[0,2,2,1],[1,1,1,2],[1,3,3,2],[1,2,0,2]],[[0,3,2,1],[1,1,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,3,1],[1,1,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,2],[1,1,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,1,1,3],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,1,1,2],[1,4,3,2],[1,2,1,0]],[[0,2,2,1],[1,1,1,2],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[1,1,1,2],[1,3,3,3],[1,2,1,0]],[[0,2,2,1],[1,1,1,2],[1,3,3,2],[2,2,1,0]],[[0,2,2,1],[1,1,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,2,1,2],[2,2,2,2],[0,1,2,2]],[[1,2,2,1],[0,2,1,2],[2,2,2,2],[0,1,3,1]],[[1,2,2,1],[0,2,1,2],[2,2,2,3],[0,1,2,1]],[[0,2,3,1],[1,1,1,2],[2,0,3,2],[1,2,2,1]],[[0,2,2,2],[1,1,1,2],[2,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,3],[2,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,0,3,3],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,0,3,2],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[2,0,3,2],[1,2,2,2]],[[0,3,2,1],[1,1,1,2],[2,1,2,2],[1,2,2,1]],[[0,2,3,1],[1,1,1,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,2],[1,1,1,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,3],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[3,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,1,2,3],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,1,2,2],[2,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,1,2,2],[1,3,2,1]],[[0,2,2,1],[1,1,1,2],[2,1,2,2],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[2,1,2,2],[1,2,2,2]],[[0,2,2,1],[1,1,1,2],[3,1,3,1],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,1,4,1],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,1,3,1],[1,3,2,1]],[[0,2,2,1],[1,1,1,2],[2,1,3,1],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[2,1,3,1],[1,2,2,2]],[[0,2,3,1],[1,1,1,2],[2,1,3,2],[0,2,2,1]],[[0,2,2,2],[1,1,1,2],[2,1,3,2],[0,2,2,1]],[[0,2,2,1],[1,1,1,3],[2,1,3,2],[0,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,1,3,3],[0,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,1,3,2],[0,2,3,1]],[[0,2,2,1],[1,1,1,2],[2,1,3,2],[0,2,2,2]],[[0,3,2,1],[1,1,1,2],[2,1,3,2],[1,2,1,1]],[[0,2,3,1],[1,1,1,2],[2,1,3,2],[1,2,1,1]],[[0,2,2,2],[1,1,1,2],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,1,3],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[2,1,4,2],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[2,1,3,3],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[2,1,3,2],[1,2,1,2]],[[0,3,2,1],[1,1,1,2],[2,1,3,2],[1,2,2,0]],[[0,2,3,1],[1,1,1,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,2],[1,1,1,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,3],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[3,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[2,1,4,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[2,1,3,3],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[2,1,3,2],[2,2,2,0]],[[0,2,2,1],[1,1,1,2],[2,1,3,2],[1,3,2,0]],[[0,2,2,1],[1,1,1,2],[2,1,3,2],[1,2,3,0]],[[0,3,2,1],[1,1,1,2],[2,2,1,2],[1,2,2,1]],[[0,2,3,1],[1,1,1,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,2],[1,1,1,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,3],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[3,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[2,2,1,2],[1,2,2,2]],[[0,2,2,1],[1,1,1,2],[3,2,2,1],[1,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,2,1],[2,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,2,1],[1,3,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,2,1],[1,2,3,1]],[[0,2,2,1],[1,1,1,2],[2,2,2,1],[1,2,2,2]],[[0,3,2,1],[1,1,1,2],[2,2,2,2],[0,2,2,1]],[[0,2,3,1],[1,1,1,2],[2,2,2,2],[0,2,2,1]],[[0,2,2,2],[1,1,1,2],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[1,1,1,3],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,2,2],[0,3,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[1,1,1,2],[2,2,2,2],[0,2,2,2]],[[0,2,2,1],[1,1,1,2],[3,2,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,1,2],[2,2,2,2],[2,2,2,0]],[[0,2,2,1],[1,1,1,2],[2,2,2,2],[1,3,2,0]],[[0,2,2,1],[1,1,1,2],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[1,1,1,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,3,1],[0,3,2,1]],[[0,2,2,1],[1,1,1,2],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[1,1,1,2],[2,2,3,1],[0,2,2,2]],[[0,2,2,1],[1,1,1,2],[3,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,1,2],[2,2,3,1],[2,2,1,1]],[[0,2,2,1],[1,1,1,2],[2,2,3,1],[1,3,1,1]],[[0,3,2,1],[1,1,1,2],[2,2,3,2],[0,2,1,1]],[[0,2,3,1],[1,1,1,2],[2,2,3,2],[0,2,1,1]],[[0,2,2,2],[1,1,1,2],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[1,1,1,3],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[1,1,1,2],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[1,1,1,2],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[1,1,1,2],[2,2,3,2],[0,2,1,2]],[[0,3,2,1],[1,1,1,2],[2,2,3,2],[0,2,2,0]],[[0,2,3,1],[1,1,1,2],[2,2,3,2],[0,2,2,0]],[[0,2,2,2],[1,1,1,2],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[1,1,1,3],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[1,1,1,2],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[1,1,1,2],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[1,1,1,2],[2,2,3,2],[0,3,2,0]],[[0,2,2,1],[1,1,1,2],[2,2,3,2],[0,2,3,0]],[[0,2,2,1],[1,1,1,2],[3,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,1,1,2],[2,2,3,2],[2,2,0,1]],[[0,2,2,1],[1,1,1,2],[2,2,3,2],[1,3,0,1]],[[0,2,2,1],[1,1,1,2],[3,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,1,1,2],[2,2,3,2],[2,2,1,0]],[[0,2,2,1],[1,1,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[0,2,1,3],[2,2,2,2],[0,1,2,1]],[[1,2,2,2],[0,2,1,2],[2,2,2,2],[0,1,2,1]],[[1,2,3,1],[0,2,1,2],[2,2,2,2],[0,1,2,1]],[[1,3,2,1],[0,2,1,2],[2,2,2,2],[0,1,2,1]],[[2,2,2,1],[0,2,1,2],[2,2,2,2],[0,1,2,1]],[[0,3,2,1],[1,1,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,3,1],[1,1,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,2],[1,1,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,1,3],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,1,2],[3,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,4,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,1,3],[0,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,1,2],[0,3,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,1,2],[0,2,3,1]],[[0,2,2,1],[1,1,1,2],[2,3,1,2],[0,2,2,2]],[[0,2,2,1],[1,1,1,2],[3,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,1,1,2],[2,4,1,2],[1,1,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,1,2],[2,1,2,1]],[[0,2,2,1],[1,1,1,2],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,4,2,1],[0,2,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,2,1],[0,3,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,2,1],[0,2,3,1]],[[0,2,2,1],[1,1,1,2],[2,3,2,1],[0,2,2,2]],[[0,2,2,1],[1,1,1,2],[3,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,1,1,2],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,2,1],[2,1,2,1]],[[0,3,2,1],[1,1,1,2],[2,3,2,2],[0,1,2,1]],[[0,2,3,1],[1,1,1,2],[2,3,2,2],[0,1,2,1]],[[0,2,2,2],[1,1,1,2],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[1,1,1,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[1,1,1,2],[2,3,2,2],[0,1,2,2]],[[0,2,2,1],[1,1,1,2],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[1,1,1,2],[2,4,2,2],[0,2,2,0]],[[0,2,2,1],[1,1,1,2],[2,3,2,2],[0,3,2,0]],[[0,2,2,1],[1,1,1,2],[2,3,2,2],[0,2,3,0]],[[0,3,2,1],[1,1,1,2],[2,3,2,2],[1,0,2,1]],[[0,2,3,1],[1,1,1,2],[2,3,2,2],[1,0,2,1]],[[0,2,2,2],[1,1,1,2],[2,3,2,2],[1,0,2,1]],[[0,2,2,1],[1,1,1,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,2,3],[1,0,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,2,2],[1,0,3,1]],[[0,2,2,1],[1,1,1,2],[2,3,2,2],[1,0,2,2]],[[0,2,2,1],[1,1,1,2],[3,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,1,1,2],[2,4,2,2],[1,1,2,0]],[[0,2,2,1],[1,1,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[0,2,1,2],[2,2,0,2],[1,2,2,2]],[[0,2,2,1],[1,1,1,2],[3,3,3,1],[0,1,2,1]],[[0,2,2,1],[1,1,1,2],[2,4,3,1],[0,1,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,1],[0,1,2,2]],[[0,2,2,1],[1,1,1,2],[3,3,3,1],[0,2,1,1]],[[0,2,2,1],[1,1,1,2],[2,4,3,1],[0,2,1,1]],[[0,2,2,1],[1,1,1,2],[2,3,4,1],[0,2,1,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,1],[0,3,1,1]],[[0,2,2,1],[1,1,1,2],[3,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,1,1,2],[2,4,3,1],[1,0,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,4,1],[1,0,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,1],[2,0,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,1],[1,0,3,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,1],[1,0,2,2]],[[0,2,2,1],[1,1,1,2],[3,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,1,1,2],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[1,1,1,2],[2,3,4,1],[1,1,1,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[0,2,1,2],[2,2,0,2],[1,2,3,1]],[[1,2,2,1],[0,2,1,2],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[0,2,1,2],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[0,2,1,2],[2,2,0,3],[1,2,2,1]],[[1,2,2,1],[0,2,1,2],[3,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,2,1,3],[2,2,0,2],[1,2,2,1]],[[1,2,2,2],[0,2,1,2],[2,2,0,2],[1,2,2,1]],[[0,3,2,1],[1,1,1,2],[2,3,3,2],[0,0,2,1]],[[0,2,3,1],[1,1,1,2],[2,3,3,2],[0,0,2,1]],[[0,2,2,2],[1,1,1,2],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[1,1,1,3],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[0,0,2,2]],[[0,3,2,1],[1,1,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,3,1],[1,1,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,2],[1,1,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,1,1,3],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,1,1,2],[3,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,1,1,2],[2,4,3,2],[0,1,1,1]],[[0,2,2,1],[1,1,1,2],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[0,1,1,2]],[[0,3,2,1],[1,1,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,3,1],[1,1,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,2],[1,1,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,1,1,3],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,1,1,2],[3,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,1,1,2],[2,4,3,2],[0,1,2,0]],[[0,2,2,1],[1,1,1,2],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[1,1,1,2],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[0,1,3,0]],[[0,3,2,1],[1,1,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,3,1],[1,1,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,2],[1,1,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,1,1,3],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,1,1,2],[3,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,1,1,2],[2,4,3,2],[0,2,0,1]],[[0,2,2,1],[1,1,1,2],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[0,3,0,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[0,2,0,2]],[[0,3,2,1],[1,1,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,3,1],[1,1,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,2],[1,1,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,1,1,3],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,1,1,2],[3,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,1,1,2],[2,4,3,2],[0,2,1,0]],[[0,2,2,1],[1,1,1,2],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[1,1,1,2],[2,3,3,3],[0,2,1,0]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,3,1],[0,2,1,2],[2,2,0,2],[1,2,2,1]],[[1,3,2,1],[0,2,1,2],[2,2,0,2],[1,2,2,1]],[[2,2,2,1],[0,2,1,2],[2,2,0,2],[1,2,2,1]],[[0,3,2,1],[1,1,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,3,1],[1,1,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,2],[1,1,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,1,1,3],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,1,1,2],[3,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,1,1,2],[2,4,3,2],[1,0,1,1]],[[0,2,2,1],[1,1,1,2],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[2,0,1,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[1,0,1,2]],[[0,3,2,1],[1,1,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,3,1],[1,1,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,2],[1,1,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,1,1,3],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,1,1,2],[3,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,1,1,2],[2,4,3,2],[1,0,2,0]],[[0,2,2,1],[1,1,1,2],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[1,1,1,2],[2,3,3,3],[1,0,2,0]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[2,0,2,0]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[1,0,3,0]],[[0,3,2,1],[1,1,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,3,1],[1,1,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,2],[1,1,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,1,3],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,1,2],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,1,2],[2,4,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,1,2],[2,3,4,2],[1,1,0,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,3],[1,1,0,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[2,1,0,1]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[1,1,0,2]],[[0,3,2,1],[1,1,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,3,1],[1,1,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,2],[1,1,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,1,1,3],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,1,1,2],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,1,1,2],[2,4,3,2],[1,1,1,0]],[[0,2,2,1],[1,1,1,2],[2,3,4,2],[1,1,1,0]],[[0,2,2,1],[1,1,1,2],[2,3,3,3],[1,1,1,0]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[2,1,1,0]],[[0,2,2,1],[1,1,1,2],[3,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,1,1,2],[2,4,3,2],[1,2,0,0]],[[0,2,2,1],[1,1,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[0,2,1,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[0,2,1,2],[2,1,3,2],[0,3,2,0]],[[1,2,2,1],[0,2,1,2],[2,1,3,3],[0,2,2,0]],[[1,2,2,1],[0,2,1,2],[2,1,4,2],[0,2,2,0]],[[1,2,2,1],[0,2,1,3],[2,1,3,2],[0,2,2,0]],[[1,2,2,2],[0,2,1,2],[2,1,3,2],[0,2,2,0]],[[1,2,3,1],[0,2,1,2],[2,1,3,2],[0,2,2,0]],[[1,3,2,1],[0,2,1,2],[2,1,3,2],[0,2,2,0]],[[2,2,2,1],[0,2,1,2],[2,1,3,2],[0,2,2,0]],[[1,2,2,1],[0,2,1,2],[2,1,3,2],[0,2,1,2]],[[1,2,2,1],[0,2,1,2],[2,1,3,3],[0,2,1,1]],[[1,2,2,1],[0,2,1,2],[2,1,4,2],[0,2,1,1]],[[1,2,2,1],[0,2,1,3],[2,1,3,2],[0,2,1,1]],[[1,2,2,2],[0,2,1,2],[2,1,3,2],[0,2,1,1]],[[1,2,3,1],[0,2,1,2],[2,1,3,2],[0,2,1,1]],[[1,3,2,1],[0,2,1,2],[2,1,3,2],[0,2,1,1]],[[2,2,2,1],[0,2,1,2],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[0,2,1,2],[2,1,3,1],[0,2,2,2]],[[0,2,3,1],[1,1,2,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,2],[1,1,2,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,3],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[0,3,1,3],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[0,3,1,2],[1,3,2,1]],[[0,2,2,1],[1,1,2,2],[0,3,1,2],[1,2,3,1]],[[0,2,2,1],[1,1,2,2],[0,3,1,2],[1,2,2,2]],[[0,2,3,1],[1,1,2,2],[0,3,2,2],[1,2,1,1]],[[0,2,2,2],[1,1,2,2],[0,3,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,2,3],[0,3,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,2,2],[0,3,2,3],[1,2,1,1]],[[0,2,2,1],[1,1,2,2],[0,3,2,2],[1,2,1,2]],[[0,2,3,1],[1,1,2,2],[0,3,2,2],[1,2,2,0]],[[0,2,2,2],[1,1,2,2],[0,3,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,2,3],[0,3,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,2,2],[0,3,2,3],[1,2,2,0]],[[0,2,3,1],[1,1,2,2],[0,3,3,0],[1,2,2,1]],[[0,2,2,2],[1,1,2,2],[0,3,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,2,3],[0,3,3,0],[1,2,2,1]],[[0,2,3,1],[1,1,2,2],[0,3,3,1],[1,2,1,1]],[[0,2,2,2],[1,1,2,2],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,2,3],[0,3,3,1],[1,2,1,1]],[[0,2,3,1],[1,1,2,2],[0,3,3,1],[1,2,2,0]],[[0,2,2,2],[1,1,2,2],[0,3,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,2,3],[0,3,3,1],[1,2,2,0]],[[1,2,2,1],[0,2,1,2],[2,1,3,1],[0,2,3,1]],[[1,2,2,1],[0,2,1,2],[2,1,3,1],[0,3,2,1]],[[1,2,2,1],[0,2,1,2],[2,1,4,1],[0,2,2,1]],[[0,2,3,1],[1,1,2,2],[1,0,3,2],[1,2,2,1]],[[0,2,2,2],[1,1,2,2],[1,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,3],[1,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[1,0,3,3],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[1,0,3,2],[1,2,3,1]],[[0,2,2,1],[1,1,2,2],[1,0,3,2],[1,2,2,2]],[[0,3,2,1],[1,1,2,2],[1,2,1,2],[1,2,2,1]],[[0,2,3,1],[1,1,2,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,2],[1,1,2,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,3],[1,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[1,2,1,3],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[1,2,1,2],[2,2,2,1]],[[0,2,2,1],[1,1,2,2],[1,2,1,2],[1,3,2,1]],[[0,2,2,1],[1,1,2,2],[1,2,1,2],[1,2,3,1]],[[0,2,2,1],[1,1,2,2],[1,2,1,2],[1,2,2,2]],[[0,3,2,1],[1,1,2,2],[1,2,2,2],[1,2,1,1]],[[0,2,3,1],[1,1,2,2],[1,2,2,2],[1,2,1,1]],[[0,2,2,2],[1,1,2,2],[1,2,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,2,3],[1,2,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,2,2],[1,2,2,3],[1,2,1,1]],[[0,2,2,1],[1,1,2,2],[1,2,2,2],[1,2,1,2]],[[0,3,2,1],[1,1,2,2],[1,2,2,2],[1,2,2,0]],[[0,2,3,1],[1,1,2,2],[1,2,2,2],[1,2,2,0]],[[0,2,2,2],[1,1,2,2],[1,2,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,2,3],[1,2,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,2,2],[1,2,2,3],[1,2,2,0]],[[0,3,2,1],[1,1,2,2],[1,2,3,0],[1,2,2,1]],[[0,2,3,1],[1,1,2,2],[1,2,3,0],[1,2,2,1]],[[0,2,2,2],[1,1,2,2],[1,2,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,2,3],[1,2,3,0],[1,2,2,1]],[[0,3,2,1],[1,1,2,2],[1,2,3,1],[1,2,1,1]],[[0,2,3,1],[1,1,2,2],[1,2,3,1],[1,2,1,1]],[[0,2,2,2],[1,1,2,2],[1,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,2,3],[1,2,3,1],[1,2,1,1]],[[0,3,2,1],[1,1,2,2],[1,2,3,1],[1,2,2,0]],[[0,2,3,1],[1,1,2,2],[1,2,3,1],[1,2,2,0]],[[0,2,2,2],[1,1,2,2],[1,2,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,2,3],[1,2,3,1],[1,2,2,0]],[[1,2,2,1],[0,2,1,2],[2,1,2,2],[0,2,2,2]],[[1,2,2,1],[0,2,1,2],[2,1,2,2],[0,2,3,1]],[[1,2,2,1],[0,2,1,2],[2,1,2,2],[0,3,2,1]],[[1,2,2,1],[0,2,1,2],[2,1,2,3],[0,2,2,1]],[[0,3,2,1],[1,1,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,3,1],[1,1,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,2],[1,1,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,3],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[1,4,0,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[1,3,0,3],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[1,3,0,2],[2,2,2,1]],[[0,2,2,1],[1,1,2,2],[1,3,0,2],[1,3,2,1]],[[0,2,2,1],[1,1,2,2],[1,3,0,2],[1,2,3,1]],[[0,2,2,1],[1,1,2,2],[1,3,0,2],[1,2,2,2]],[[0,3,2,1],[1,1,2,2],[1,3,1,2],[1,1,2,1]],[[0,2,3,1],[1,1,2,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,2],[1,1,2,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,1,2,3],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,1,2,2],[1,3,1,3],[1,1,2,1]],[[0,2,2,1],[1,1,2,2],[1,3,1,2],[1,1,3,1]],[[0,2,2,1],[1,1,2,2],[1,3,1,2],[1,1,2,2]],[[0,2,3,1],[1,1,2,2],[1,3,2,2],[1,0,2,1]],[[0,2,2,2],[1,1,2,2],[1,3,2,2],[1,0,2,1]],[[0,2,2,1],[1,1,2,3],[1,3,2,2],[1,0,2,1]],[[0,2,2,1],[1,1,2,2],[1,3,2,3],[1,0,2,1]],[[0,2,2,1],[1,1,2,2],[1,3,2,2],[1,0,2,2]],[[0,3,2,1],[1,1,2,2],[1,3,2,2],[1,1,1,1]],[[0,2,3,1],[1,1,2,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,2],[1,1,2,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[1,1,2,3],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[1,1,2,2],[1,3,2,3],[1,1,1,1]],[[0,2,2,1],[1,1,2,2],[1,3,2,2],[1,1,1,2]],[[0,3,2,1],[1,1,2,2],[1,3,2,2],[1,1,2,0]],[[0,2,3,1],[1,1,2,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,2],[1,1,2,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,1,2,3],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,1,2,2],[1,3,2,3],[1,1,2,0]],[[0,3,2,1],[1,1,2,2],[1,3,2,2],[1,2,0,1]],[[0,2,3,1],[1,1,2,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,2],[1,1,2,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[1,1,2,3],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[1,1,2,2],[1,3,2,3],[1,2,0,1]],[[0,2,2,1],[1,1,2,2],[1,3,2,2],[1,2,0,2]],[[0,3,2,1],[1,1,2,2],[1,3,2,2],[1,2,1,0]],[[0,2,3,1],[1,1,2,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,2],[1,1,2,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[1,1,2,3],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[1,1,2,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[0,2,1,3],[2,1,2,2],[0,2,2,1]],[[1,2,2,2],[0,2,1,2],[2,1,2,2],[0,2,2,1]],[[1,2,3,1],[0,2,1,2],[2,1,2,2],[0,2,2,1]],[[1,3,2,1],[0,2,1,2],[2,1,2,2],[0,2,2,1]],[[2,2,2,1],[0,2,1,2],[2,1,2,2],[0,2,2,1]],[[0,3,2,1],[1,1,2,2],[1,3,3,0],[1,1,2,1]],[[0,2,3,1],[1,1,2,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,2],[1,1,2,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,1,2,3],[1,3,3,0],[1,1,2,1]],[[0,3,2,1],[1,1,2,2],[1,3,3,0],[1,2,1,1]],[[0,2,3,1],[1,1,2,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,2],[1,1,2,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[1,1,2,3],[1,3,3,0],[1,2,1,1]],[[0,2,3,1],[1,1,2,2],[1,3,3,1],[1,0,2,1]],[[0,2,2,2],[1,1,2,2],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,1,2,3],[1,3,3,1],[1,0,2,1]],[[0,3,2,1],[1,1,2,2],[1,3,3,1],[1,1,1,1]],[[0,2,3,1],[1,1,2,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,2],[1,1,2,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,1,2,3],[1,3,3,1],[1,1,1,1]],[[0,3,2,1],[1,1,2,2],[1,3,3,1],[1,1,2,0]],[[0,2,3,1],[1,1,2,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,2],[1,1,2,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[1,1,2,3],[1,3,3,1],[1,1,2,0]],[[0,3,2,1],[1,1,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,3,1],[1,1,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,2],[1,1,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,1,2,3],[1,3,3,1],[1,2,0,1]],[[0,3,2,1],[1,1,2,2],[1,3,3,1],[1,2,1,0]],[[0,2,3,1],[1,1,2,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,2],[1,1,2,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[1,1,2,3],[1,3,3,1],[1,2,1,0]],[[1,2,2,1],[0,2,1,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,1],[0,2,1,2],[2,0,3,2],[1,3,2,0]],[[1,2,2,1],[0,2,1,2],[2,0,3,2],[2,2,2,0]],[[0,2,3,1],[1,1,2,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,2],[1,1,2,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,2,3],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,2,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[0,2,1,2],[2,0,3,3],[1,2,2,0]],[[1,2,2,1],[0,2,1,2],[2,0,4,2],[1,2,2,0]],[[1,2,2,1],[0,2,1,2],[3,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,1,3],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[0,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[0,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,3,2,1],[0,2,1,2],[2,0,3,2],[1,2,2,0]],[[2,2,2,1],[0,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,1,2],[2,0,3,2],[1,2,1,2]],[[1,2,2,1],[0,2,1,2],[2,0,3,3],[1,2,1,1]],[[1,2,2,1],[0,2,1,2],[2,0,4,2],[1,2,1,1]],[[1,2,2,1],[0,2,1,3],[2,0,3,2],[1,2,1,1]],[[1,2,2,2],[0,2,1,2],[2,0,3,2],[1,2,1,1]],[[1,2,3,1],[0,2,1,2],[2,0,3,2],[1,2,1,1]],[[1,3,2,1],[0,2,1,2],[2,0,3,2],[1,2,1,1]],[[2,2,2,1],[0,2,1,2],[2,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,2,1,2],[2,0,3,2],[0,2,2,2]],[[1,2,2,1],[0,2,1,2],[2,0,3,2],[0,2,3,1]],[[1,2,2,1],[0,2,1,2],[2,0,3,3],[0,2,2,1]],[[1,2,2,1],[0,2,1,3],[2,0,3,2],[0,2,2,1]],[[1,2,2,2],[0,2,1,2],[2,0,3,2],[0,2,2,1]],[[1,2,3,1],[0,2,1,2],[2,0,3,2],[0,2,2,1]],[[1,3,2,1],[0,2,1,2],[2,0,3,2],[0,2,2,1]],[[1,2,2,1],[0,2,1,2],[2,0,3,1],[1,2,2,2]],[[1,2,2,1],[0,2,1,2],[2,0,3,1],[1,2,3,1]],[[1,2,2,1],[0,2,1,2],[2,0,3,1],[1,3,2,1]],[[1,2,2,1],[0,2,1,2],[2,0,3,1],[2,2,2,1]],[[1,2,2,1],[0,2,1,2],[2,0,4,1],[1,2,2,1]],[[1,2,2,1],[0,2,1,2],[3,0,3,1],[1,2,2,1]],[[1,2,2,1],[0,2,1,2],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[0,2,1,2],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[0,2,1,2],[2,0,2,2],[1,3,2,1]],[[1,2,2,1],[0,2,1,2],[2,0,2,2],[2,2,2,1]],[[1,2,2,1],[0,2,1,2],[2,0,2,3],[1,2,2,1]],[[1,2,2,1],[0,2,1,2],[3,0,2,2],[1,2,2,1]],[[1,2,2,1],[0,2,1,3],[2,0,2,2],[1,2,2,1]],[[1,2,2,2],[0,2,1,2],[2,0,2,2],[1,2,2,1]],[[1,2,3,1],[0,2,1,2],[2,0,2,2],[1,2,2,1]],[[1,3,2,1],[0,2,1,2],[2,0,2,2],[1,2,2,1]],[[2,2,2,1],[0,2,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,3,1],[1,1,2,2],[2,0,3,2],[0,2,2,1]],[[0,2,2,2],[1,1,2,2],[2,0,3,2],[0,2,2,1]],[[0,2,2,1],[1,1,2,3],[2,0,3,2],[0,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,0,3,3],[0,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,0,3,2],[0,2,3,1]],[[0,2,2,1],[1,1,2,2],[2,0,3,2],[0,2,2,2]],[[0,3,2,1],[1,1,2,2],[2,1,1,2],[1,2,2,1]],[[0,2,3,1],[1,1,2,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,2],[1,1,2,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,3],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[3,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,1,1,3],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,1,1,2],[2,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,1,1,2],[1,3,2,1]],[[0,2,2,1],[1,1,2,2],[2,1,1,2],[1,2,3,1]],[[0,2,2,1],[1,1,2,2],[2,1,1,2],[1,2,2,2]],[[0,3,2,1],[1,1,2,2],[2,1,2,2],[1,2,1,1]],[[0,2,3,1],[1,1,2,2],[2,1,2,2],[1,2,1,1]],[[0,2,2,2],[1,1,2,2],[2,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,2,3],[2,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,2,2],[2,1,2,3],[1,2,1,1]],[[0,2,2,1],[1,1,2,2],[2,1,2,2],[1,2,1,2]],[[0,3,2,1],[1,1,2,2],[2,1,2,2],[1,2,2,0]],[[0,2,3,1],[1,1,2,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,2],[1,1,2,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,2,3],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,2,2],[2,1,2,3],[1,2,2,0]],[[0,3,2,1],[1,1,2,2],[2,1,3,0],[1,2,2,1]],[[0,2,3,1],[1,1,2,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,2],[1,1,2,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,2,3],[2,1,3,0],[1,2,2,1]],[[0,3,2,1],[1,1,2,2],[2,1,3,1],[1,2,1,1]],[[0,2,3,1],[1,1,2,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,2],[1,1,2,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,2,3],[2,1,3,1],[1,2,1,1]],[[0,3,2,1],[1,1,2,2],[2,1,3,1],[1,2,2,0]],[[0,2,3,1],[1,1,2,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,2],[1,1,2,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,2,3],[2,1,3,1],[1,2,2,0]],[[0,3,2,1],[1,1,2,2],[2,2,0,2],[1,2,2,1]],[[0,2,3,1],[1,1,2,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,2],[1,1,2,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,3],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[3,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,2,0,3],[1,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,2,0,2],[2,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,2,0,2],[1,3,2,1]],[[0,2,2,1],[1,1,2,2],[2,2,0,2],[1,2,3,1]],[[0,2,2,1],[1,1,2,2],[2,2,0,2],[1,2,2,2]],[[0,3,2,1],[1,1,2,2],[2,2,1,2],[0,2,2,1]],[[0,2,3,1],[1,1,2,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,2],[1,1,2,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,2,3],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,2,1,3],[0,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,2,1,2],[0,3,2,1]],[[0,2,2,1],[1,1,2,2],[2,2,1,2],[0,2,3,1]],[[0,2,2,1],[1,1,2,2],[2,2,1,2],[0,2,2,2]],[[0,3,2,1],[1,1,2,2],[2,2,2,2],[0,2,1,1]],[[0,2,3,1],[1,1,2,2],[2,2,2,2],[0,2,1,1]],[[0,2,2,2],[1,1,2,2],[2,2,2,2],[0,2,1,1]],[[0,2,2,1],[1,1,2,3],[2,2,2,2],[0,2,1,1]],[[0,2,2,1],[1,1,2,2],[2,2,2,3],[0,2,1,1]],[[0,2,2,1],[1,1,2,2],[2,2,2,2],[0,2,1,2]],[[0,3,2,1],[1,1,2,2],[2,2,2,2],[0,2,2,0]],[[0,2,3,1],[1,1,2,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,2],[1,1,2,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[1,1,2,3],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[1,1,2,2],[2,2,2,3],[0,2,2,0]],[[0,3,2,1],[1,1,2,2],[2,2,3,0],[0,2,2,1]],[[0,2,3,1],[1,1,2,2],[2,2,3,0],[0,2,2,1]],[[0,2,2,2],[1,1,2,2],[2,2,3,0],[0,2,2,1]],[[0,2,2,1],[1,1,2,3],[2,2,3,0],[0,2,2,1]],[[0,3,2,1],[1,1,2,2],[2,2,3,1],[0,2,1,1]],[[0,2,3,1],[1,1,2,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,2],[1,1,2,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[1,1,2,3],[2,2,3,1],[0,2,1,1]],[[0,3,2,1],[1,1,2,2],[2,2,3,1],[0,2,2,0]],[[0,2,3,1],[1,1,2,2],[2,2,3,1],[0,2,2,0]],[[0,2,2,2],[1,1,2,2],[2,2,3,1],[0,2,2,0]],[[0,2,2,1],[1,1,2,3],[2,2,3,1],[0,2,2,0]],[[0,3,2,1],[1,1,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,3,1],[1,1,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,2],[1,1,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,1,2,3],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,1,2,2],[3,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,4,0,2],[0,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,3,0,3],[0,2,2,1]],[[0,2,2,1],[1,1,2,2],[2,3,0,2],[0,3,2,1]],[[0,2,2,1],[1,1,2,2],[2,3,0,2],[0,2,3,1]],[[0,2,2,1],[1,1,2,2],[2,3,0,2],[0,2,2,2]],[[0,2,2,1],[1,1,2,2],[3,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,1,2,2],[2,4,0,2],[1,1,2,1]],[[0,2,2,1],[1,1,2,2],[2,3,0,2],[2,1,2,1]],[[0,3,2,1],[1,1,2,2],[2,3,1,2],[0,1,2,1]],[[0,2,3,1],[1,1,2,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,2],[1,1,2,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[1,1,2,3],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[1,1,2,2],[2,3,1,3],[0,1,2,1]],[[0,2,2,1],[1,1,2,2],[2,3,1,2],[0,1,3,1]],[[0,2,2,1],[1,1,2,2],[2,3,1,2],[0,1,2,2]],[[0,3,2,1],[1,1,2,2],[2,3,1,2],[1,0,2,1]],[[0,2,3,1],[1,1,2,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,2],[1,1,2,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[1,1,2,3],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[1,1,2,2],[2,3,1,3],[1,0,2,1]],[[0,2,2,1],[1,1,2,2],[2,3,1,2],[1,0,3,1]],[[0,2,2,1],[1,1,2,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[0,2,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[0,2,1,2],[1,3,0,2],[1,2,3,1]],[[1,2,2,1],[0,2,1,2],[1,3,0,2],[1,3,2,1]],[[1,2,2,1],[0,2,1,2],[1,3,0,2],[2,2,2,1]],[[1,2,2,1],[0,2,1,2],[1,3,0,3],[1,2,2,1]],[[1,2,2,1],[0,2,1,2],[1,4,0,2],[1,2,2,1]],[[0,3,2,1],[1,1,2,2],[2,3,2,2],[0,0,2,1]],[[0,2,3,1],[1,1,2,2],[2,3,2,2],[0,0,2,1]],[[0,2,2,2],[1,1,2,2],[2,3,2,2],[0,0,2,1]],[[0,2,2,1],[1,1,2,3],[2,3,2,2],[0,0,2,1]],[[0,2,2,1],[1,1,2,2],[2,3,2,3],[0,0,2,1]],[[0,2,2,1],[1,1,2,2],[2,3,2,2],[0,0,2,2]],[[0,3,2,1],[1,1,2,2],[2,3,2,2],[0,1,1,1]],[[0,2,3,1],[1,1,2,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,2],[1,1,2,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,1,2,3],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,1,2,2],[2,3,2,3],[0,1,1,1]],[[0,2,2,1],[1,1,2,2],[2,3,2,2],[0,1,1,2]],[[0,3,2,1],[1,1,2,2],[2,3,2,2],[0,1,2,0]],[[0,2,3,1],[1,1,2,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,2],[1,1,2,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,1,2,3],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,1,2,2],[2,3,2,3],[0,1,2,0]],[[0,3,2,1],[1,1,2,2],[2,3,2,2],[0,2,0,1]],[[0,2,3,1],[1,1,2,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,2],[1,1,2,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,1,2,3],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,1,2,2],[2,3,2,3],[0,2,0,1]],[[0,2,2,1],[1,1,2,2],[2,3,2,2],[0,2,0,2]],[[0,3,2,1],[1,1,2,2],[2,3,2,2],[0,2,1,0]],[[0,2,3,1],[1,1,2,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,2],[1,1,2,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,1,2,3],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,1,2,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[0,2,1,3],[1,3,0,2],[1,2,2,1]],[[1,2,2,2],[0,2,1,2],[1,3,0,2],[1,2,2,1]],[[1,2,3,1],[0,2,1,2],[1,3,0,2],[1,2,2,1]],[[1,3,2,1],[0,2,1,2],[1,3,0,2],[1,2,2,1]],[[2,2,2,1],[0,2,1,2],[1,3,0,2],[1,2,2,1]],[[0,3,2,1],[1,1,2,2],[2,3,2,2],[1,0,1,1]],[[0,2,3,1],[1,1,2,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,2],[1,1,2,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,1,2,3],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,1,2,2],[2,3,2,3],[1,0,1,1]],[[0,2,2,1],[1,1,2,2],[2,3,2,2],[1,0,1,2]],[[0,3,2,1],[1,1,2,2],[2,3,2,2],[1,0,2,0]],[[0,2,3,1],[1,1,2,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,2],[1,1,2,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,1,2,3],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,1,2,2],[2,3,2,3],[1,0,2,0]],[[0,3,2,1],[1,1,2,2],[2,3,2,2],[1,1,0,1]],[[0,2,3,1],[1,1,2,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,2],[1,1,2,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,1,2,3],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,1,2,2],[2,3,2,3],[1,1,0,1]],[[0,2,2,1],[1,1,2,2],[2,3,2,2],[1,1,0,2]],[[0,3,2,1],[1,1,2,2],[2,3,2,2],[1,1,1,0]],[[0,2,3,1],[1,1,2,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,2],[1,1,2,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,1,2,3],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,1,2,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[0,2,1,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[0,2,1,2],[1,2,4,2],[1,2,1,0]],[[1,2,2,1],[0,2,1,3],[1,2,3,2],[1,2,1,0]],[[1,2,2,2],[0,2,1,2],[1,2,3,2],[1,2,1,0]],[[1,2,3,1],[0,2,1,2],[1,2,3,2],[1,2,1,0]],[[1,3,2,1],[0,2,1,2],[1,2,3,2],[1,2,1,0]],[[2,2,2,1],[0,2,1,2],[1,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,2,1,2],[1,2,3,2],[1,2,0,2]],[[1,2,2,1],[0,2,1,2],[1,2,3,3],[1,2,0,1]],[[1,2,2,1],[0,2,1,2],[1,2,4,2],[1,2,0,1]],[[1,2,2,1],[0,2,1,3],[1,2,3,2],[1,2,0,1]],[[1,2,2,2],[0,2,1,2],[1,2,3,2],[1,2,0,1]],[[1,2,3,1],[0,2,1,2],[1,2,3,2],[1,2,0,1]],[[1,3,2,1],[0,2,1,2],[1,2,3,2],[1,2,0,1]],[[2,2,2,1],[0,2,1,2],[1,2,3,2],[1,2,0,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,3,1],[1,1,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,2],[1,1,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,1,2,3],[2,3,3,0],[0,1,2,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,3,1],[1,1,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,2],[1,1,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,1,2,3],[2,3,3,0],[0,2,1,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,3,1],[1,1,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,2],[1,1,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,1,2,3],[2,3,3,0],[1,0,2,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,3,1],[1,1,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,2],[1,1,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,1,2,3],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,2,1,2],[1,2,3,2],[1,1,3,0]],[[1,2,2,1],[0,2,1,2],[1,2,3,3],[1,1,2,0]],[[1,2,2,1],[0,2,1,2],[1,2,4,2],[1,1,2,0]],[[1,2,2,1],[0,2,1,3],[1,2,3,2],[1,1,2,0]],[[0,3,2,1],[1,1,2,2],[2,3,3,1],[0,0,2,1]],[[0,2,3,1],[1,1,2,2],[2,3,3,1],[0,0,2,1]],[[0,2,2,2],[1,1,2,2],[2,3,3,1],[0,0,2,1]],[[0,2,2,1],[1,1,2,3],[2,3,3,1],[0,0,2,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,3,1],[1,1,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,2],[1,1,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,1,2,3],[2,3,3,1],[0,1,1,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,3,1],[1,1,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,2],[1,1,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,1,2,3],[2,3,3,1],[0,1,2,0]],[[0,3,2,1],[1,1,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,3,1],[1,1,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,2],[1,1,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,1,2,3],[2,3,3,1],[0,2,0,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,3,1],[1,1,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,2],[1,1,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,1,2,3],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[0,2,1,2],[1,2,3,2],[1,1,2,0]],[[1,2,3,1],[0,2,1,2],[1,2,3,2],[1,1,2,0]],[[1,3,2,1],[0,2,1,2],[1,2,3,2],[1,1,2,0]],[[2,2,2,1],[0,2,1,2],[1,2,3,2],[1,1,2,0]],[[1,2,2,1],[0,2,1,2],[1,2,3,2],[1,1,1,2]],[[1,2,2,1],[0,2,1,2],[1,2,3,3],[1,1,1,1]],[[1,2,2,1],[0,2,1,2],[1,2,4,2],[1,1,1,1]],[[1,2,2,1],[0,2,1,3],[1,2,3,2],[1,1,1,1]],[[1,2,2,2],[0,2,1,2],[1,2,3,2],[1,1,1,1]],[[1,2,3,1],[0,2,1,2],[1,2,3,2],[1,1,1,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,3,1],[1,1,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,2],[1,1,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,1,2,3],[2,3,3,1],[1,0,1,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,3,1],[1,1,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,2],[1,1,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,1,2,3],[2,3,3,1],[1,0,2,0]],[[0,3,2,1],[1,1,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,3,1],[1,1,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,2],[1,1,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,1,2,3],[2,3,3,1],[1,1,0,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,3,1],[1,1,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,2],[1,1,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,1,2,3],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[0,2,1,2],[1,2,3,2],[1,1,1,1]],[[2,2,2,1],[0,2,1,2],[1,2,3,2],[1,1,1,1]],[[1,2,2,1],[0,2,1,2],[1,2,3,2],[1,0,2,2]],[[1,2,2,1],[0,2,1,2],[1,2,3,3],[1,0,2,1]],[[1,2,2,1],[0,2,1,2],[1,2,4,2],[1,0,2,1]],[[1,2,2,1],[0,2,1,3],[1,2,3,2],[1,0,2,1]],[[1,2,2,2],[0,2,1,2],[1,2,3,2],[1,0,2,1]],[[1,2,3,1],[0,2,1,2],[1,2,3,2],[1,0,2,1]],[[1,3,2,1],[0,2,1,2],[1,2,3,2],[1,0,2,1]],[[1,2,2,1],[0,2,1,2],[1,2,3,1],[1,1,2,2]],[[1,2,2,1],[0,2,1,2],[1,2,3,1],[1,1,3,1]],[[1,2,2,1],[0,2,1,2],[1,2,4,1],[1,1,2,1]],[[1,2,2,1],[0,2,1,2],[1,2,2,2],[1,1,2,2]],[[1,2,2,1],[0,2,1,2],[1,2,2,2],[1,1,3,1]],[[1,2,2,1],[0,2,1,2],[1,2,2,3],[1,1,2,1]],[[1,2,2,1],[0,2,1,3],[1,2,2,2],[1,1,2,1]],[[1,2,2,2],[0,2,1,2],[1,2,2,2],[1,1,2,1]],[[1,2,3,1],[0,2,1,2],[1,2,2,2],[1,1,2,1]],[[1,3,2,1],[0,2,1,2],[1,2,2,2],[1,1,2,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,2],[0,1,0,1]],[[0,2,3,1],[1,1,2,2],[2,3,3,2],[0,1,0,1]],[[0,2,2,2],[1,1,2,2],[2,3,3,2],[0,1,0,1]],[[0,2,2,1],[1,1,2,3],[2,3,3,2],[0,1,0,1]],[[0,2,2,1],[1,1,2,2],[2,3,3,3],[0,1,0,1]],[[2,2,2,1],[0,2,1,2],[1,2,2,2],[1,1,2,1]],[[1,2,2,1],[0,2,1,2],[1,1,3,2],[1,2,3,0]],[[1,2,2,1],[0,2,1,2],[1,1,3,2],[1,3,2,0]],[[1,2,2,1],[0,2,1,2],[1,1,3,2],[2,2,2,0]],[[1,2,2,1],[0,2,1,2],[1,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,2,1,2],[1,1,4,2],[1,2,2,0]],[[1,2,2,1],[0,2,1,3],[1,1,3,2],[1,2,2,0]],[[1,2,2,2],[0,2,1,2],[1,1,3,2],[1,2,2,0]],[[1,2,3,1],[0,2,1,2],[1,1,3,2],[1,2,2,0]],[[1,3,2,1],[0,2,1,2],[1,1,3,2],[1,2,2,0]],[[2,2,2,1],[0,2,1,2],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,1,2],[1,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,2,1,2],[1,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,2,1,2],[1,1,4,2],[1,2,1,1]],[[1,2,2,1],[0,2,1,3],[1,1,3,2],[1,2,1,1]],[[1,2,2,2],[0,2,1,2],[1,1,3,2],[1,2,1,1]],[[1,2,3,1],[0,2,1,2],[1,1,3,2],[1,2,1,1]],[[1,3,2,1],[0,2,1,2],[1,1,3,2],[1,2,1,1]],[[2,2,2,1],[0,2,1,2],[1,1,3,2],[1,2,1,1]],[[1,2,2,1],[0,2,1,2],[1,1,3,1],[1,2,2,2]],[[1,2,2,1],[0,2,1,2],[1,1,3,1],[1,2,3,1]],[[1,2,2,1],[0,2,1,2],[1,1,3,1],[1,3,2,1]],[[1,2,2,1],[0,2,1,2],[1,1,3,1],[2,2,2,1]],[[1,2,2,1],[0,2,1,2],[1,1,4,1],[1,2,2,1]],[[1,2,2,1],[0,2,1,2],[1,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,2,1,2],[1,1,2,2],[1,2,3,1]],[[1,2,2,1],[0,2,1,2],[1,1,2,2],[1,3,2,1]],[[1,2,2,1],[0,2,1,2],[1,1,2,2],[2,2,2,1]],[[1,2,2,1],[0,2,1,2],[1,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,2,1,3],[1,1,2,2],[1,2,2,1]],[[0,3,2,1],[1,1,2,2],[2,3,3,2],[1,0,0,1]],[[0,2,3,1],[1,1,2,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,2],[1,1,2,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[1,1,2,3],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[1,1,2,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,2],[0,2,1,2],[1,1,2,2],[1,2,2,1]],[[1,2,3,1],[0,2,1,2],[1,1,2,2],[1,2,2,1]],[[1,3,2,1],[0,2,1,2],[1,1,2,2],[1,2,2,1]],[[2,2,2,1],[0,2,1,2],[1,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,2,1,2],[1,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,2,1,2],[1,0,3,2],[1,2,3,1]],[[1,2,2,1],[0,2,1,2],[1,0,3,3],[1,2,2,1]],[[1,2,2,1],[0,2,1,3],[1,0,3,2],[1,2,2,1]],[[1,2,2,2],[0,2,1,2],[1,0,3,2],[1,2,2,1]],[[1,2,3,1],[0,2,1,2],[1,0,3,2],[1,2,2,1]],[[1,3,2,1],[0,2,1,2],[1,0,3,2],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[0,2,0,2],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[0,2,0,2],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[0,2,0,2],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[0,2,0,2],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[0,2,0,2],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,1,3,0],[0,2,3,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[0,2,3,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[0,2,3,2],[1,2,2,2]],[[0,2,2,1],[1,1,3,0],[0,3,2,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[0,3,2,2],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[0,3,2,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[0,3,2,2],[1,2,2,2]],[[0,2,3,1],[1,1,3,0],[0,3,3,1],[1,2,2,1]],[[0,2,2,2],[1,1,3,0],[0,3,3,1],[1,2,2,1]],[[0,2,2,1],[1,1,4,0],[0,3,3,1],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[0,3,4,1],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[0,3,3,1],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[0,3,3,1],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[0,3,3,1],[1,2,2,2]],[[0,2,3,1],[1,1,3,0],[0,3,3,2],[1,2,1,1]],[[0,2,2,2],[1,1,3,0],[0,3,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,4,0],[0,3,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[0,3,4,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[0,3,3,3],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[0,3,3,2],[1,2,1,2]],[[0,2,3,1],[1,1,3,0],[0,3,3,2],[1,2,2,0]],[[0,2,2,2],[1,1,3,0],[0,3,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,4,0],[0,3,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[0,3,4,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[0,3,3,3],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[0,3,3,2],[1,3,2,0]],[[0,2,2,1],[1,1,3,0],[0,3,3,2],[1,2,3,0]],[[0,2,2,1],[1,1,3,0],[1,1,3,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,1,3,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[1,1,3,2],[1,2,2,2]],[[0,2,2,1],[1,1,3,0],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,2,2,2],[2,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[1,2,2,2],[1,2,2,2]],[[0,3,2,1],[1,1,3,0],[1,2,3,1],[1,2,2,1]],[[0,2,3,1],[1,1,3,0],[1,2,3,1],[1,2,2,1]],[[0,2,2,2],[1,1,3,0],[1,2,3,1],[1,2,2,1]],[[0,2,2,1],[1,1,4,0],[1,2,3,1],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,2,3,1],[2,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[1,2,3,1],[1,2,2,2]],[[0,3,2,1],[1,1,3,0],[1,2,3,2],[1,2,1,1]],[[0,2,3,1],[1,1,3,0],[1,2,3,2],[1,2,1,1]],[[0,2,2,2],[1,1,3,0],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,4,0],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[1,2,3,2],[1,2,1,2]],[[0,3,2,1],[1,1,3,0],[1,2,3,2],[1,2,2,0]],[[0,2,3,1],[1,1,3,0],[1,2,3,2],[1,2,2,0]],[[0,2,2,2],[1,1,3,0],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,4,0],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[1,2,3,2],[2,2,2,0]],[[0,2,2,1],[1,1,3,0],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[1,1,3,0],[1,2,3,2],[1,2,3,0]],[[0,2,2,1],[1,1,3,0],[1,4,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,1,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,1,2],[2,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,1,2],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,1,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[1,3,1,2],[1,2,2,2]],[[0,2,2,1],[1,1,3,0],[1,4,2,1],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,2,1],[2,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,2,1],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,2,1],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[1,3,2,1],[1,2,2,2]],[[0,2,2,1],[1,1,3,0],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[1,1,3,0],[1,3,2,2],[1,1,2,2]],[[0,2,2,1],[1,1,3,0],[1,4,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[1,1,3,0],[1,3,2,2],[1,3,2,0]],[[0,2,2,1],[1,1,3,0],[1,3,2,2],[1,2,3,0]],[[0,2,2,1],[1,1,3,0],[1,4,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,0],[2,2,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,0],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,0],[1,2,3,1]],[[0,3,2,1],[1,1,3,0],[1,3,3,1],[1,1,2,1]],[[0,2,3,1],[1,1,3,0],[1,3,3,1],[1,1,2,1]],[[0,2,2,2],[1,1,3,0],[1,3,3,1],[1,1,2,1]],[[0,2,2,1],[1,1,4,0],[1,3,3,1],[1,1,2,1]],[[0,2,2,1],[1,1,3,0],[1,4,3,1],[1,1,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,1],[1,1,2,2]],[[0,3,2,1],[1,1,3,0],[1,3,3,1],[1,2,1,1]],[[0,2,3,1],[1,1,3,0],[1,3,3,1],[1,2,1,1]],[[0,2,2,2],[1,1,3,0],[1,3,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,4,0],[1,3,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[1,4,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[1,3,4,1],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,1],[2,2,1,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,1],[1,3,1,1]],[[0,2,3,1],[1,1,3,0],[1,3,3,2],[1,0,2,1]],[[0,2,2,2],[1,1,3,0],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[1,1,4,0],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,4,2],[1,0,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,3],[1,0,2,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,2],[1,0,2,2]],[[0,3,2,1],[1,1,3,0],[1,3,3,2],[1,1,1,1]],[[0,2,3,1],[1,1,3,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,2],[1,1,3,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,1,4,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,1,3,0],[1,4,3,2],[1,1,1,1]],[[0,2,2,1],[1,1,3,0],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,2],[1,1,1,2]],[[0,3,2,1],[1,1,3,0],[1,3,3,2],[1,1,2,0]],[[0,2,3,1],[1,1,3,0],[1,3,3,2],[1,1,2,0]],[[0,2,2,2],[1,1,3,0],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,1,4,0],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,1,3,0],[1,4,3,2],[1,1,2,0]],[[0,2,2,1],[1,1,3,0],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[1,1,3,0],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[1,1,3,0],[1,3,3,2],[1,1,3,0]],[[0,3,2,1],[1,1,3,0],[1,3,3,2],[1,2,0,1]],[[0,2,3,1],[1,1,3,0],[1,3,3,2],[1,2,0,1]],[[0,2,2,2],[1,1,3,0],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,1,4,0],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,1,3,0],[1,4,3,2],[1,2,0,1]],[[0,2,2,1],[1,1,3,0],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,2],[2,2,0,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,2],[1,3,0,1]],[[0,2,2,1],[1,1,3,0],[1,3,3,2],[1,2,0,2]],[[0,3,2,1],[1,1,3,0],[1,3,3,2],[1,2,1,0]],[[0,2,3,1],[1,1,3,0],[1,3,3,2],[1,2,1,0]],[[0,2,2,2],[1,1,3,0],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,1,4,0],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,1,3,0],[1,4,3,2],[1,2,1,0]],[[0,2,2,1],[1,1,3,0],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[1,1,3,0],[1,3,3,3],[1,2,1,0]],[[0,2,2,1],[1,1,3,0],[1,3,3,2],[2,2,1,0]],[[0,2,2,1],[1,1,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,2,0,3],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[0,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[0,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[0,2,0,2],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[0,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[0,2,0,2],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[0,2,0,2],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[0,2,0,2],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[0,2,0,2],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,3,0],[2,0,3,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,0,3,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[2,0,3,2],[1,2,2,2]],[[0,2,2,1],[1,1,3,0],[3,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,1,2,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,1,2,2],[2,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,1,2,2],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[2,1,2,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[2,1,2,2],[1,2,2,2]],[[0,3,2,1],[1,1,3,0],[2,1,3,1],[1,2,2,1]],[[0,2,3,1],[1,1,3,0],[2,1,3,1],[1,2,2,1]],[[0,2,2,2],[1,1,3,0],[2,1,3,1],[1,2,2,1]],[[0,2,2,1],[1,1,4,0],[2,1,3,1],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[3,1,3,1],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,1,4,1],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,1,3,1],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[2,1,3,1],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[2,1,3,1],[1,2,2,2]],[[0,2,2,1],[1,1,3,0],[2,1,3,3],[0,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,1,3,2],[0,2,3,1]],[[0,2,2,1],[1,1,3,0],[2,1,3,2],[0,2,2,2]],[[0,3,2,1],[1,1,3,0],[2,1,3,2],[1,2,1,1]],[[0,2,3,1],[1,1,3,0],[2,1,3,2],[1,2,1,1]],[[0,2,2,2],[1,1,3,0],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,4,0],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[2,1,4,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[2,1,3,3],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[2,1,3,2],[1,2,1,2]],[[0,3,2,1],[1,1,3,0],[2,1,3,2],[1,2,2,0]],[[0,2,3,1],[1,1,3,0],[2,1,3,2],[1,2,2,0]],[[0,2,2,2],[1,1,3,0],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,4,0],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[3,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[2,1,4,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[2,1,3,3],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[2,1,3,2],[2,2,2,0]],[[0,2,2,1],[1,1,3,0],[2,1,3,2],[1,3,2,0]],[[0,2,2,1],[1,1,3,0],[2,1,3,2],[1,2,3,0]],[[0,2,2,1],[1,1,3,0],[3,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[2,2,1,2],[1,2,2,2]],[[0,2,2,1],[1,1,3,0],[3,2,2,1],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,2,1],[2,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,2,1],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,2,1],[1,2,3,1]],[[0,2,2,1],[1,1,3,0],[2,2,2,1],[1,2,2,2]],[[0,2,2,1],[1,1,3,0],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,2,2],[0,3,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[1,1,3,0],[2,2,2,2],[0,2,2,2]],[[0,2,2,1],[1,1,3,0],[3,2,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,0],[2,2,2,2],[2,2,2,0]],[[0,2,2,1],[1,1,3,0],[2,2,2,2],[1,3,2,0]],[[0,2,2,1],[1,1,3,0],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[1,1,3,0],[3,2,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,0],[2,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,0],[1,3,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,0],[1,2,3,1]],[[0,3,2,1],[1,1,3,0],[2,2,3,1],[0,2,2,1]],[[0,2,3,1],[1,1,3,0],[2,2,3,1],[0,2,2,1]],[[0,2,2,2],[1,1,3,0],[2,2,3,1],[0,2,2,1]],[[0,2,2,1],[1,1,4,0],[2,2,3,1],[0,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,1],[0,3,2,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,1],[0,2,2,2]],[[0,2,2,1],[1,1,3,0],[3,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,1],[2,2,1,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,1],[1,3,1,1]],[[0,3,2,1],[1,1,3,0],[2,2,3,2],[0,2,1,1]],[[0,2,3,1],[1,1,3,0],[2,2,3,2],[0,2,1,1]],[[0,2,2,2],[1,1,3,0],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[1,1,4,0],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[1,1,3,0],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,2],[0,2,1,2]],[[0,3,2,1],[1,1,3,0],[2,2,3,2],[0,2,2,0]],[[0,2,3,1],[1,1,3,0],[2,2,3,2],[0,2,2,0]],[[0,2,2,2],[1,1,3,0],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[1,1,4,0],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[1,1,3,0],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[1,1,3,0],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[1,1,3,0],[2,2,3,2],[0,3,2,0]],[[0,2,2,1],[1,1,3,0],[2,2,3,2],[0,2,3,0]],[[0,2,2,1],[1,1,3,0],[3,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,2],[2,2,0,1]],[[0,2,2,1],[1,1,3,0],[2,2,3,2],[1,3,0,1]],[[0,2,2,1],[1,1,3,0],[3,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,1,3,0],[2,2,3,2],[2,2,1,0]],[[0,2,2,1],[1,1,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[0,2,0,3],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[0,2,0,2],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[0,2,0,2],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[0,2,0,2],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[0,2,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,3,0],[3,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,4,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,1,3],[0,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,1,2],[0,3,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,1,2],[0,2,3,1]],[[0,2,2,1],[1,1,3,0],[2,3,1,2],[0,2,2,2]],[[0,2,2,1],[1,1,3,0],[3,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,1,3,0],[2,4,1,2],[1,1,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,1,2],[2,1,2,1]],[[0,2,2,1],[1,1,3,0],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,4,2,1],[0,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,2,1],[0,3,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,2,1],[0,2,3,1]],[[0,2,2,1],[1,1,3,0],[2,3,2,1],[0,2,2,2]],[[0,2,2,1],[1,1,3,0],[3,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,1,3,0],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,2,1],[2,1,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[1,1,3,0],[2,3,2,2],[0,1,2,2]],[[0,2,2,1],[1,1,3,0],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[1,1,3,0],[2,4,2,2],[0,2,2,0]],[[0,2,2,1],[1,1,3,0],[2,3,2,2],[0,3,2,0]],[[0,2,2,1],[1,1,3,0],[2,3,2,2],[0,2,3,0]],[[0,2,2,1],[1,1,3,0],[2,3,2,3],[1,0,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,2,2],[1,0,3,1]],[[0,2,2,1],[1,1,3,0],[2,3,2,2],[1,0,2,2]],[[0,2,2,1],[1,1,3,0],[3,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,1,3,0],[2,4,2,2],[1,1,2,0]],[[0,2,2,1],[1,1,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[1,0,3,0]],[[0,2,2,1],[1,1,3,0],[3,3,3,0],[0,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,4,3,0],[0,2,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,0],[0,3,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,0],[0,2,3,1]],[[0,2,2,1],[1,1,3,0],[3,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,1,3,0],[2,4,3,0],[1,1,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,0],[2,1,2,1]],[[0,3,2,1],[1,1,3,0],[2,3,3,1],[0,1,2,1]],[[0,2,3,1],[1,1,3,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,2],[1,1,3,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[1,1,4,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[1,1,3,0],[3,3,3,1],[0,1,2,1]],[[0,2,2,1],[1,1,3,0],[2,4,3,1],[0,1,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,1],[0,1,2,2]],[[0,3,2,1],[1,1,3,0],[2,3,3,1],[0,2,1,1]],[[0,2,3,1],[1,1,3,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,2],[1,1,3,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[1,1,4,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[1,1,3,0],[3,3,3,1],[0,2,1,1]],[[0,2,2,1],[1,1,3,0],[2,4,3,1],[0,2,1,1]],[[0,2,2,1],[1,1,3,0],[2,3,4,1],[0,2,1,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,1],[0,3,1,1]],[[0,3,2,1],[1,1,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,3,1],[1,1,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,2],[1,1,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,1,4,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,1,3,0],[3,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,1,3,0],[2,4,3,1],[1,0,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,4,1],[1,0,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,1],[2,0,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,1],[1,0,3,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,1],[1,0,2,2]],[[0,3,2,1],[1,1,3,0],[2,3,3,1],[1,1,1,1]],[[0,2,3,1],[1,1,3,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,2],[1,1,3,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,1,4,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,1,3,0],[3,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,1,3,0],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[1,1,3,0],[2,3,4,1],[1,1,1,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,1],[2,1,1,1]],[[0,2,2,1],[1,1,3,0],[3,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,1,3,0],[2,4,3,1],[1,2,0,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[0,2,0,2],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[0,2,0,2],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[0,2,0,2],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[0,2,0,3],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[0,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[0,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[0,2,0,2],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[0,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[1,0,1,2]],[[0,3,2,1],[1,1,3,0],[2,3,3,2],[0,0,2,1]],[[0,2,3,1],[1,1,3,0],[2,3,3,2],[0,0,2,1]],[[0,2,2,2],[1,1,3,0],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[1,1,4,0],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[0,0,2,2]],[[0,3,2,1],[1,1,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,3,1],[1,1,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,2],[1,1,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,1,4,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,1,3,0],[3,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,1,3,0],[2,4,3,2],[0,1,1,1]],[[0,2,2,1],[1,1,3,0],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[0,1,1,2]],[[0,3,2,1],[1,1,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,3,1],[1,1,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,2],[1,1,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,1,4,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,1,3,0],[3,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,1,3,0],[2,4,3,2],[0,1,2,0]],[[0,2,2,1],[1,1,3,0],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[1,1,3,0],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[0,1,3,0]],[[0,3,2,1],[1,1,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,3,1],[1,1,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,2],[1,1,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,1,4,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,1,3,0],[3,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,1,3,0],[2,4,3,2],[0,2,0,1]],[[0,2,2,1],[1,1,3,0],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[0,3,0,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[0,2,0,2]],[[0,3,2,1],[1,1,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,3,1],[1,1,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,2],[1,1,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,1,4,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,1,3,0],[3,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,1,3,0],[2,4,3,2],[0,2,1,0]],[[0,2,2,1],[1,1,3,0],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[1,1,3,0],[2,3,3,3],[0,2,1,0]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[0,2,0,2],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[0,2,0,2],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[0,2,0,2],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[0,2,0,2],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[0,2,0,3],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[0,2,0,2],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[0,2,0,2],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[0,2,0,2],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[0,2,0,2],[2,3,3,2],[1,0,1,1]],[[0,3,2,1],[1,1,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,3,1],[1,1,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,2],[1,1,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,1,4,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,1,3,0],[3,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,1,3,0],[2,4,3,2],[1,0,1,1]],[[0,2,2,1],[1,1,3,0],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[2,0,1,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[1,0,1,2]],[[0,3,2,1],[1,1,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,3,1],[1,1,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,2],[1,1,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,1,4,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,1,3,0],[3,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,1,3,0],[2,4,3,2],[1,0,2,0]],[[0,2,2,1],[1,1,3,0],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[1,1,3,0],[2,3,3,3],[1,0,2,0]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[2,0,2,0]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[1,0,3,0]],[[0,3,2,1],[1,1,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,3,1],[1,1,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,2],[1,1,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,4,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,3,0],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,3,0],[2,4,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,3,0],[2,3,4,2],[1,1,0,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,3],[1,1,0,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[2,1,0,1]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[1,1,0,2]],[[0,3,2,1],[1,1,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,3,1],[1,1,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,2],[1,1,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,1,4,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,1,3,0],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,1,3,0],[2,4,3,2],[1,1,1,0]],[[0,2,2,1],[1,1,3,0],[2,3,4,2],[1,1,1,0]],[[0,2,2,1],[1,1,3,0],[2,3,3,3],[1,1,1,0]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[2,1,1,0]],[[0,2,2,1],[1,1,3,0],[3,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,1,3,0],[2,4,3,2],[1,2,0,0]],[[0,2,2,1],[1,1,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[0,2,0,2],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[0,2,0,2],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[0,2,0,2],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,2,0,3],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[0,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[0,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[0,2,0,2],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[0,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[0,2,0,2],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[0,2,0,2],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[0,2,0,2],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[0,2,0,2],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[0,2,0,3],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[0,2,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[0,2,0,2],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[0,2,0,2],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[0,2,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,3,1],[1,1,3,1],[0,3,1,2],[1,2,2,1]],[[0,2,2,2],[1,1,3,1],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,4,1],[0,3,1,2],[1,2,2,1]],[[0,2,3,1],[1,1,3,1],[0,3,2,2],[1,2,1,1]],[[0,2,2,2],[1,1,3,1],[0,3,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,4,1],[0,3,2,2],[1,2,1,1]],[[0,2,3,1],[1,1,3,1],[0,3,2,2],[1,2,2,0]],[[0,2,2,2],[1,1,3,1],[0,3,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,4,1],[0,3,2,2],[1,2,2,0]],[[0,2,3,1],[1,1,3,1],[0,3,3,0],[1,2,2,1]],[[0,2,2,2],[1,1,3,1],[0,3,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,4,1],[0,3,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,1],[0,3,4,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,1],[0,3,3,0],[1,3,2,1]],[[0,2,2,1],[1,1,3,1],[0,3,3,0],[1,2,3,1]],[[0,2,2,1],[1,1,3,1],[0,3,3,0],[1,2,2,2]],[[0,2,3,1],[1,1,3,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,2],[1,1,3,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,4,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,3,1],[0,3,4,1],[1,2,1,1]],[[0,2,3,1],[1,1,3,1],[0,3,3,1],[1,2,2,0]],[[0,2,2,2],[1,1,3,1],[0,3,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,4,1],[0,3,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,3,1],[0,3,4,1],[1,2,2,0]],[[0,2,2,1],[1,1,3,1],[0,3,3,1],[1,3,2,0]],[[0,2,2,1],[1,1,3,1],[0,3,3,1],[1,2,3,0]],[[0,3,2,1],[1,1,3,1],[1,2,1,2],[1,2,2,1]],[[0,2,3,1],[1,1,3,1],[1,2,1,2],[1,2,2,1]],[[0,2,2,2],[1,1,3,1],[1,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,4,1],[1,2,1,2],[1,2,2,1]],[[0,3,2,1],[1,1,3,1],[1,2,2,2],[1,2,1,1]],[[0,2,3,1],[1,1,3,1],[1,2,2,2],[1,2,1,1]],[[0,2,2,2],[1,1,3,1],[1,2,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,4,1],[1,2,2,2],[1,2,1,1]],[[0,3,2,1],[1,1,3,1],[1,2,2,2],[1,2,2,0]],[[0,2,3,1],[1,1,3,1],[1,2,2,2],[1,2,2,0]],[[0,2,2,2],[1,1,3,1],[1,2,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,4,1],[1,2,2,2],[1,2,2,0]],[[0,3,2,1],[1,1,3,1],[1,2,3,0],[1,2,2,1]],[[0,2,3,1],[1,1,3,1],[1,2,3,0],[1,2,2,1]],[[0,2,2,2],[1,1,3,1],[1,2,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,4,1],[1,2,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,1],[1,2,4,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,1],[1,2,3,0],[2,2,2,1]],[[0,2,2,1],[1,1,3,1],[1,2,3,0],[1,3,2,1]],[[0,2,2,1],[1,1,3,1],[1,2,3,0],[1,2,3,1]],[[0,2,2,1],[1,1,3,1],[1,2,3,0],[1,2,2,2]],[[0,3,2,1],[1,1,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,3,1],[1,1,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,2,2],[1,1,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,4,1],[1,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,3,1],[1,2,4,1],[1,2,1,1]],[[0,3,2,1],[1,1,3,1],[1,2,3,1],[1,2,2,0]],[[0,2,3,1],[1,1,3,1],[1,2,3,1],[1,2,2,0]],[[0,2,2,2],[1,1,3,1],[1,2,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,4,1],[1,2,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,3,1],[1,2,4,1],[1,2,2,0]],[[0,2,2,1],[1,1,3,1],[1,2,3,1],[2,2,2,0]],[[0,2,2,1],[1,1,3,1],[1,2,3,1],[1,3,2,0]],[[0,2,2,1],[1,1,3,1],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[0,1,3,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[0,2,0,2],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[0,2,0,2],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[0,2,0,2],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,2,0,3],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[0,2,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[0,2,0,2],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[0,2,0,2],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[0,2,0,2],[2,3,3,2],[0,1,2,0]],[[0,3,2,1],[1,1,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,3,1],[1,1,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,2,2],[1,1,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,1,4,1],[1,3,0,2],[1,2,2,1]],[[0,3,2,1],[1,1,3,1],[1,3,1,2],[1,1,2,1]],[[0,2,3,1],[1,1,3,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,2],[1,1,3,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,1,4,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,1,3,1],[1,4,2,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,1],[1,3,2,0],[2,2,2,1]],[[0,2,2,1],[1,1,3,1],[1,3,2,0],[1,3,2,1]],[[0,2,2,1],[1,1,3,1],[1,3,2,0],[1,2,3,1]],[[0,2,2,1],[1,1,3,1],[1,3,2,0],[1,2,2,2]],[[0,2,2,1],[1,1,3,1],[1,4,2,1],[1,2,2,0]],[[0,2,2,1],[1,1,3,1],[1,3,2,1],[2,2,2,0]],[[0,2,2,1],[1,1,3,1],[1,3,2,1],[1,3,2,0]],[[0,2,2,1],[1,1,3,1],[1,3,2,1],[1,2,3,0]],[[0,2,3,1],[1,1,3,1],[1,3,2,2],[1,0,2,1]],[[0,2,2,2],[1,1,3,1],[1,3,2,2],[1,0,2,1]],[[0,2,2,1],[1,1,4,1],[1,3,2,2],[1,0,2,1]],[[0,3,2,1],[1,1,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,3,1],[1,1,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,2,2],[1,1,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[1,1,4,1],[1,3,2,2],[1,1,1,1]],[[0,3,2,1],[1,1,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,3,1],[1,1,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,2],[1,1,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,1,4,1],[1,3,2,2],[1,1,2,0]],[[0,3,2,1],[1,1,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,3,1],[1,1,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,2,2],[1,1,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[1,1,4,1],[1,3,2,2],[1,2,0,1]],[[0,3,2,1],[1,1,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,3,1],[1,1,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,2,2],[1,1,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[1,1,4,1],[1,3,2,2],[1,2,1,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[0,2,0,2],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[0,2,0,2],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[0,2,0,2],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[0,2,0,2],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,2,0,3],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[0,2,0,2],[2,3,3,2],[0,1,1,1]],[[1,2,3,1],[0,2,0,2],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[0,2,0,2],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[0,2,0,2],[2,3,3,2],[0,1,1,1]],[[0,3,2,1],[1,1,3,1],[1,3,3,0],[1,1,2,1]],[[0,2,3,1],[1,1,3,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,2],[1,1,3,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,1,4,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,1,3,1],[1,4,3,0],[1,1,2,1]],[[0,2,2,1],[1,1,3,1],[1,3,4,0],[1,1,2,1]],[[0,2,2,1],[1,1,3,1],[1,3,3,0],[1,1,3,1]],[[0,2,2,1],[1,1,3,1],[1,3,3,0],[1,1,2,2]],[[0,3,2,1],[1,1,3,1],[1,3,3,0],[1,2,1,1]],[[0,2,3,1],[1,1,3,1],[1,3,3,0],[1,2,1,1]],[[0,2,2,2],[1,1,3,1],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[1,1,4,1],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[1,1,3,1],[1,4,3,0],[1,2,1,1]],[[0,2,2,1],[1,1,3,1],[1,3,4,0],[1,2,1,1]],[[0,2,2,1],[1,1,3,1],[1,3,3,0],[2,2,1,1]],[[0,2,2,1],[1,1,3,1],[1,3,3,0],[1,3,1,1]],[[0,2,3,1],[1,1,3,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,2],[1,1,3,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,1,4,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,1,3,1],[1,3,4,1],[1,0,2,1]],[[0,3,2,1],[1,1,3,1],[1,3,3,1],[1,1,1,1]],[[0,2,3,1],[1,1,3,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,2],[1,1,3,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,1,4,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,1,3,1],[1,4,3,1],[1,1,1,1]],[[0,2,2,1],[1,1,3,1],[1,3,4,1],[1,1,1,1]],[[0,3,2,1],[1,1,3,1],[1,3,3,1],[1,1,2,0]],[[0,2,3,1],[1,1,3,1],[1,3,3,1],[1,1,2,0]],[[0,2,2,2],[1,1,3,1],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[1,1,4,1],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[1,1,3,1],[1,4,3,1],[1,1,2,0]],[[0,2,2,1],[1,1,3,1],[1,3,4,1],[1,1,2,0]],[[0,2,2,1],[1,1,3,1],[1,3,3,1],[1,1,3,0]],[[0,3,2,1],[1,1,3,1],[1,3,3,1],[1,2,0,1]],[[0,2,3,1],[1,1,3,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,2],[1,1,3,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,1,4,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,1,3,1],[1,4,3,1],[1,2,0,1]],[[0,2,2,1],[1,1,3,1],[1,3,4,1],[1,2,0,1]],[[0,2,2,1],[1,1,3,1],[1,3,3,1],[2,2,0,1]],[[0,2,2,1],[1,1,3,1],[1,3,3,1],[1,3,0,1]],[[0,3,2,1],[1,1,3,1],[1,3,3,1],[1,2,1,0]],[[0,2,3,1],[1,1,3,1],[1,3,3,1],[1,2,1,0]],[[0,2,2,2],[1,1,3,1],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[1,1,4,1],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[1,1,3,1],[1,4,3,1],[1,2,1,0]],[[0,2,2,1],[1,1,3,1],[1,3,4,1],[1,2,1,0]],[[0,2,2,1],[1,1,3,1],[1,3,3,1],[2,2,1,0]],[[0,2,2,1],[1,1,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[0,2,0,2],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[0,2,0,2],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[0,2,0,2],[2,3,4,2],[0,0,2,1]],[[1,2,2,1],[0,2,0,3],[2,3,3,2],[0,0,2,1]],[[1,2,2,2],[0,2,0,2],[2,3,3,2],[0,0,2,1]],[[1,2,3,1],[0,2,0,2],[2,3,3,2],[0,0,2,1]],[[1,3,2,1],[0,2,0,2],[2,3,3,2],[0,0,2,1]],[[2,2,2,1],[0,2,0,2],[2,3,3,2],[0,0,2,1]],[[0,2,3,1],[1,1,3,1],[1,3,3,2],[1,1,0,1]],[[0,2,2,2],[1,1,3,1],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,4,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[0,2,0,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[0,2,0,2],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[0,2,0,2],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[0,2,0,2],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,2,0,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[0,2,0,2],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[0,2,0,2],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[0,2,0,2],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[0,2,0,2],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[0,2,0,2],[3,3,3,1],[1,0,2,1]],[[1,2,2,1],[0,2,0,2],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[0,2,0,2],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[0,2,0,2],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[0,2,0,2],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[0,2,0,2],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[0,2,0,2],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[0,2,0,2],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[0,2,0,2],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[0,2,0,2],[3,3,3,1],[0,1,2,1]],[[0,3,2,1],[1,1,3,1],[2,1,1,2],[1,2,2,1]],[[0,2,3,1],[1,1,3,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,2],[1,1,3,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,4,1],[2,1,1,2],[1,2,2,1]],[[0,3,2,1],[1,1,3,1],[2,1,2,2],[1,2,1,1]],[[0,2,3,1],[1,1,3,1],[2,1,2,2],[1,2,1,1]],[[0,2,2,2],[1,1,3,1],[2,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,4,1],[2,1,2,2],[1,2,1,1]],[[0,3,2,1],[1,1,3,1],[2,1,2,2],[1,2,2,0]],[[0,2,3,1],[1,1,3,1],[2,1,2,2],[1,2,2,0]],[[0,2,2,2],[1,1,3,1],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,4,1],[2,1,2,2],[1,2,2,0]],[[0,3,2,1],[1,1,3,1],[2,1,3,0],[1,2,2,1]],[[0,2,3,1],[1,1,3,1],[2,1,3,0],[1,2,2,1]],[[0,2,2,2],[1,1,3,1],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,4,1],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,1],[3,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,1],[2,1,4,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,1],[2,1,3,0],[2,2,2,1]],[[0,2,2,1],[1,1,3,1],[2,1,3,0],[1,3,2,1]],[[0,2,2,1],[1,1,3,1],[2,1,3,0],[1,2,3,1]],[[0,2,2,1],[1,1,3,1],[2,1,3,0],[1,2,2,2]],[[0,3,2,1],[1,1,3,1],[2,1,3,1],[1,2,1,1]],[[0,2,3,1],[1,1,3,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,2],[1,1,3,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,4,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,3,1],[2,1,4,1],[1,2,1,1]],[[0,3,2,1],[1,1,3,1],[2,1,3,1],[1,2,2,0]],[[0,2,3,1],[1,1,3,1],[2,1,3,1],[1,2,2,0]],[[0,2,2,2],[1,1,3,1],[2,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,4,1],[2,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,3,1],[3,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,3,1],[2,1,4,1],[1,2,2,0]],[[0,2,2,1],[1,1,3,1],[2,1,3,1],[2,2,2,0]],[[0,2,2,1],[1,1,3,1],[2,1,3,1],[1,3,2,0]],[[0,2,2,1],[1,1,3,1],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[0,2,0,2],[2,3,2,2],[2,1,2,0]],[[0,3,2,1],[1,1,3,1],[2,2,0,2],[1,2,2,1]],[[0,2,3,1],[1,1,3,1],[2,2,0,2],[1,2,2,1]],[[0,2,2,2],[1,1,3,1],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,1,4,1],[2,2,0,2],[1,2,2,1]],[[0,3,2,1],[1,1,3,1],[2,2,1,2],[0,2,2,1]],[[0,2,3,1],[1,1,3,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,2],[1,1,3,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,4,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,3,1],[3,2,2,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,1],[2,2,2,0],[2,2,2,1]],[[0,2,2,1],[1,1,3,1],[2,2,2,0],[1,3,2,1]],[[0,2,2,1],[1,1,3,1],[2,2,2,0],[1,2,3,1]],[[0,2,2,1],[1,1,3,1],[2,2,2,0],[1,2,2,2]],[[0,2,2,1],[1,1,3,1],[3,2,2,1],[1,2,2,0]],[[0,2,2,1],[1,1,3,1],[2,2,2,1],[2,2,2,0]],[[0,2,2,1],[1,1,3,1],[2,2,2,1],[1,3,2,0]],[[0,2,2,1],[1,1,3,1],[2,2,2,1],[1,2,3,0]],[[0,3,2,1],[1,1,3,1],[2,2,2,2],[0,2,1,1]],[[0,2,3,1],[1,1,3,1],[2,2,2,2],[0,2,1,1]],[[0,2,2,2],[1,1,3,1],[2,2,2,2],[0,2,1,1]],[[0,2,2,1],[1,1,4,1],[2,2,2,2],[0,2,1,1]],[[0,3,2,1],[1,1,3,1],[2,2,2,2],[0,2,2,0]],[[0,2,3,1],[1,1,3,1],[2,2,2,2],[0,2,2,0]],[[0,2,2,2],[1,1,3,1],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[1,1,4,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,1],[0,2,0,2],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[0,2,0,2],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,2,0,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[0,2,0,2],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[0,2,0,2],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[0,2,0,3],[2,3,2,2],[1,0,2,1]],[[1,2,2,2],[0,2,0,2],[2,3,2,2],[1,0,2,1]],[[1,2,3,1],[0,2,0,2],[2,3,2,2],[1,0,2,1]],[[1,3,2,1],[0,2,0,2],[2,3,2,2],[1,0,2,1]],[[2,2,2,1],[0,2,0,2],[2,3,2,2],[1,0,2,1]],[[0,3,2,1],[1,1,3,1],[2,2,3,0],[0,2,2,1]],[[0,2,3,1],[1,1,3,1],[2,2,3,0],[0,2,2,1]],[[0,2,2,2],[1,1,3,1],[2,2,3,0],[0,2,2,1]],[[0,2,2,1],[1,1,4,1],[2,2,3,0],[0,2,2,1]],[[0,2,2,1],[1,1,3,1],[2,2,4,0],[0,2,2,1]],[[0,2,2,1],[1,1,3,1],[2,2,3,0],[0,3,2,1]],[[0,2,2,1],[1,1,3,1],[2,2,3,0],[0,2,3,1]],[[0,2,2,1],[1,1,3,1],[2,2,3,0],[0,2,2,2]],[[0,2,2,1],[1,1,3,1],[3,2,3,0],[1,2,1,1]],[[0,2,2,1],[1,1,3,1],[2,2,3,0],[2,2,1,1]],[[0,2,2,1],[1,1,3,1],[2,2,3,0],[1,3,1,1]],[[0,3,2,1],[1,1,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,3,1],[1,1,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,2],[1,1,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[1,1,4,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[1,1,3,1],[2,2,4,1],[0,2,1,1]],[[0,3,2,1],[1,1,3,1],[2,2,3,1],[0,2,2,0]],[[0,2,3,1],[1,1,3,1],[2,2,3,1],[0,2,2,0]],[[0,2,2,2],[1,1,3,1],[2,2,3,1],[0,2,2,0]],[[0,2,2,1],[1,1,4,1],[2,2,3,1],[0,2,2,0]],[[0,2,2,1],[1,1,3,1],[2,2,4,1],[0,2,2,0]],[[0,2,2,1],[1,1,3,1],[2,2,3,1],[0,3,2,0]],[[0,2,2,1],[1,1,3,1],[2,2,3,1],[0,2,3,0]],[[0,2,2,1],[1,1,3,1],[3,2,3,1],[1,2,0,1]],[[0,2,2,1],[1,1,3,1],[2,2,3,1],[2,2,0,1]],[[0,2,2,1],[1,1,3,1],[2,2,3,1],[1,3,0,1]],[[0,2,2,1],[1,1,3,1],[3,2,3,1],[1,2,1,0]],[[0,2,2,1],[1,1,3,1],[2,2,3,1],[2,2,1,0]],[[0,2,2,1],[1,1,3,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[0,2,0,2],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[0,2,0,2],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[0,2,0,2],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[0,2,0,2],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[0,2,0,2],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[0,2,0,2],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[0,2,0,2],[2,3,2,3],[0,1,2,1]],[[1,2,2,1],[0,2,0,3],[2,3,2,2],[0,1,2,1]],[[1,2,2,2],[0,2,0,2],[2,3,2,2],[0,1,2,1]],[[1,2,3,1],[0,2,0,2],[2,3,2,2],[0,1,2,1]],[[1,3,2,1],[0,2,0,2],[2,3,2,2],[0,1,2,1]],[[2,2,2,1],[0,2,0,2],[2,3,2,2],[0,1,2,1]],[[1,2,2,1],[0,2,0,2],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[0,2,0,2],[2,4,2,1],[1,1,2,1]],[[1,2,2,1],[0,2,0,2],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[0,2,0,2],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[0,2,0,2],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[0,2,0,2],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[0,2,0,2],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[0,2,0,2],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[0,2,0,2],[2,3,1,2],[2,1,2,1]],[[0,3,2,1],[1,1,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,3,1],[1,1,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,2],[1,1,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,1,4,1],[2,3,0,2],[0,2,2,1]],[[0,3,2,1],[1,1,3,1],[2,3,1,2],[0,1,2,1]],[[0,2,3,1],[1,1,3,1],[2,3,1,2],[0,1,2,1]],[[0,2,2,2],[1,1,3,1],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[1,1,4,1],[2,3,1,2],[0,1,2,1]],[[0,3,2,1],[1,1,3,1],[2,3,1,2],[1,0,2,1]],[[0,2,3,1],[1,1,3,1],[2,3,1,2],[1,0,2,1]],[[0,2,2,2],[1,1,3,1],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[1,1,4,1],[2,3,1,2],[1,0,2,1]],[[1,2,2,1],[0,2,0,2],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[0,2,0,2],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,2,0,2],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[0,2,0,2],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[0,2,0,2],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[0,2,0,2],[2,3,1,3],[0,2,2,1]],[[1,2,2,1],[0,2,0,2],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[0,2,0,2],[3,3,1,2],[0,2,2,1]],[[1,2,2,1],[0,2,0,3],[2,3,1,2],[0,2,2,1]],[[1,2,2,2],[0,2,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,3,1],[0,2,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,3,1],[3,3,2,0],[0,2,2,1]],[[0,2,2,1],[1,1,3,1],[2,4,2,0],[0,2,2,1]],[[0,2,2,1],[1,1,3,1],[2,3,2,0],[0,3,2,1]],[[0,2,2,1],[1,1,3,1],[2,3,2,0],[0,2,3,1]],[[0,2,2,1],[1,1,3,1],[2,3,2,0],[0,2,2,2]],[[0,2,2,1],[1,1,3,1],[3,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,1,3,1],[2,4,2,0],[1,1,2,1]],[[0,2,2,1],[1,1,3,1],[2,3,2,0],[2,1,2,1]],[[0,2,2,1],[1,1,3,1],[3,3,2,1],[0,2,2,0]],[[0,2,2,1],[1,1,3,1],[2,4,2,1],[0,2,2,0]],[[0,2,2,1],[1,1,3,1],[2,3,2,1],[0,3,2,0]],[[0,2,2,1],[1,1,3,1],[2,3,2,1],[0,2,3,0]],[[0,2,2,1],[1,1,3,1],[3,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,1,3,1],[2,4,2,1],[1,1,2,0]],[[0,2,2,1],[1,1,3,1],[2,3,2,1],[2,1,2,0]],[[1,3,2,1],[0,2,0,2],[2,3,1,2],[0,2,2,1]],[[2,2,2,1],[0,2,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,2,1],[0,2,0,2],[2,3,0,2],[1,3,2,1]],[[1,2,2,1],[0,2,0,2],[2,3,0,2],[2,2,2,1]],[[1,2,2,1],[0,2,0,2],[3,3,0,2],[1,2,2,1]],[[0,3,2,1],[1,1,3,1],[2,3,2,2],[0,0,2,1]],[[0,2,3,1],[1,1,3,1],[2,3,2,2],[0,0,2,1]],[[0,2,2,2],[1,1,3,1],[2,3,2,2],[0,0,2,1]],[[0,2,2,1],[1,1,4,1],[2,3,2,2],[0,0,2,1]],[[0,3,2,1],[1,1,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,3,1],[1,1,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,2,2],[1,1,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,1,4,1],[2,3,2,2],[0,1,1,1]],[[0,3,2,1],[1,1,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,3,1],[1,1,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,2,2],[1,1,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,1,4,1],[2,3,2,2],[0,1,2,0]],[[0,3,2,1],[1,1,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,3,1],[1,1,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,2,2],[1,1,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,1,4,1],[2,3,2,2],[0,2,0,1]],[[0,3,2,1],[1,1,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,3,1],[1,1,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,2,2],[1,1,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,1,4,1],[2,3,2,2],[0,2,1,0]],[[0,3,2,1],[1,1,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,3,1],[1,1,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,2,2],[1,1,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,1,4,1],[2,3,2,2],[1,0,1,1]],[[0,3,2,1],[1,1,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,3,1],[1,1,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,2,2],[1,1,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,1,4,1],[2,3,2,2],[1,0,2,0]],[[0,3,2,1],[1,1,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,3,1],[1,1,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,2,2],[1,1,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,1,4,1],[2,3,2,2],[1,1,0,1]],[[0,3,2,1],[1,1,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,3,1],[1,1,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,2,2],[1,1,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,1,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,2,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[0,2,0,2],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[0,2,0,2],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,2,0,2],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[0,2,0,2],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[0,2,0,2],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[0,2,0,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[0,2,0,2],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[0,2,0,2],[2,2,3,3],[0,2,2,0]],[[1,2,2,1],[0,2,0,2],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[0,2,0,3],[2,2,3,2],[0,2,2,0]],[[1,2,2,2],[0,2,0,2],[2,2,3,2],[0,2,2,0]],[[1,2,3,1],[0,2,0,2],[2,2,3,2],[0,2,2,0]],[[0,3,2,1],[1,1,3,1],[2,3,3,0],[0,1,2,1]],[[0,2,3,1],[1,1,3,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,2],[1,1,3,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,1,4,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,1,3,1],[3,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,1,3,1],[2,4,3,0],[0,1,2,1]],[[0,2,2,1],[1,1,3,1],[2,3,4,0],[0,1,2,1]],[[0,2,2,1],[1,1,3,1],[2,3,3,0],[0,1,3,1]],[[0,2,2,1],[1,1,3,1],[2,3,3,0],[0,1,2,2]],[[0,3,2,1],[1,1,3,1],[2,3,3,0],[0,2,1,1]],[[0,2,3,1],[1,1,3,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,2],[1,1,3,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,1,4,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,1,3,1],[3,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,1,3,1],[2,4,3,0],[0,2,1,1]],[[0,2,2,1],[1,1,3,1],[2,3,4,0],[0,2,1,1]],[[0,2,2,1],[1,1,3,1],[2,3,3,0],[0,3,1,1]],[[0,3,2,1],[1,1,3,1],[2,3,3,0],[1,0,2,1]],[[0,2,3,1],[1,1,3,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,2],[1,1,3,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,1,4,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,1,3,1],[3,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,1,3,1],[2,4,3,0],[1,0,2,1]],[[0,2,2,1],[1,1,3,1],[2,3,4,0],[1,0,2,1]],[[0,2,2,1],[1,1,3,1],[2,3,3,0],[2,0,2,1]],[[0,2,2,1],[1,1,3,1],[2,3,3,0],[1,0,3,1]],[[0,2,2,1],[1,1,3,1],[2,3,3,0],[1,0,2,2]],[[0,3,2,1],[1,1,3,1],[2,3,3,0],[1,1,1,1]],[[0,2,3,1],[1,1,3,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,2],[1,1,3,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,1,4,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,1,3,1],[3,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,1,3,1],[2,4,3,0],[1,1,1,1]],[[0,2,2,1],[1,1,3,1],[2,3,4,0],[1,1,1,1]],[[0,2,2,1],[1,1,3,1],[2,3,3,0],[2,1,1,1]],[[0,2,2,1],[1,1,3,1],[3,3,3,0],[1,2,0,1]],[[0,2,2,1],[1,1,3,1],[2,4,3,0],[1,2,0,1]],[[0,2,2,1],[1,1,3,1],[2,3,3,0],[2,2,0,1]],[[1,3,2,1],[0,2,0,2],[2,2,3,2],[0,2,2,0]],[[2,2,2,1],[0,2,0,2],[2,2,3,2],[0,2,2,0]],[[1,2,2,1],[0,2,0,2],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[0,2,0,2],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[0,2,0,2],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[0,2,0,3],[2,2,3,2],[0,2,1,1]],[[1,2,2,2],[0,2,0,2],[2,2,3,2],[0,2,1,1]],[[1,2,3,1],[0,2,0,2],[2,2,3,2],[0,2,1,1]],[[1,3,2,1],[0,2,0,2],[2,2,3,2],[0,2,1,1]],[[2,2,2,1],[0,2,0,2],[2,2,3,2],[0,2,1,1]],[[0,3,2,1],[1,1,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,3,1],[1,1,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,2,2],[1,1,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,2,1],[1,1,4,1],[2,3,3,1],[0,0,2,1]],[[0,2,2,1],[1,1,3,1],[2,3,4,1],[0,0,2,1]],[[0,3,2,1],[1,1,3,1],[2,3,3,1],[0,1,1,1]],[[0,2,3,1],[1,1,3,1],[2,3,3,1],[0,1,1,1]],[[0,2,2,2],[1,1,3,1],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,1,4,1],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,1,3,1],[3,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,1,3,1],[2,4,3,1],[0,1,1,1]],[[0,2,2,1],[1,1,3,1],[2,3,4,1],[0,1,1,1]],[[0,3,2,1],[1,1,3,1],[2,3,3,1],[0,1,2,0]],[[0,2,3,1],[1,1,3,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,2],[1,1,3,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,1,4,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,1,3,1],[3,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,1,3,1],[2,4,3,1],[0,1,2,0]],[[0,2,2,1],[1,1,3,1],[2,3,4,1],[0,1,2,0]],[[0,2,2,1],[1,1,3,1],[2,3,3,1],[0,1,3,0]],[[0,3,2,1],[1,1,3,1],[2,3,3,1],[0,2,0,1]],[[0,2,3,1],[1,1,3,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,2],[1,1,3,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,1,4,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,1,3,1],[3,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,1,3,1],[2,4,3,1],[0,2,0,1]],[[0,2,2,1],[1,1,3,1],[2,3,4,1],[0,2,0,1]],[[0,2,2,1],[1,1,3,1],[2,3,3,1],[0,3,0,1]],[[0,3,2,1],[1,1,3,1],[2,3,3,1],[0,2,1,0]],[[0,2,3,1],[1,1,3,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,2],[1,1,3,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,1,4,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,1,3,1],[3,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,1,3,1],[2,4,3,1],[0,2,1,0]],[[0,2,2,1],[1,1,3,1],[2,3,4,1],[0,2,1,0]],[[0,2,2,1],[1,1,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[0,2,0,2],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[0,2,0,2],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[0,2,0,2],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[0,2,0,2],[2,2,3,1],[0,2,2,2]],[[1,2,2,1],[0,2,0,2],[2,2,3,1],[0,2,3,1]],[[0,3,2,1],[1,1,3,1],[2,3,3,1],[1,0,1,1]],[[0,2,3,1],[1,1,3,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,2],[1,1,3,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,1,4,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,1,3,1],[3,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,1,3,1],[2,4,3,1],[1,0,1,1]],[[0,2,2,1],[1,1,3,1],[2,3,4,1],[1,0,1,1]],[[0,2,2,1],[1,1,3,1],[2,3,3,1],[2,0,1,1]],[[0,3,2,1],[1,1,3,1],[2,3,3,1],[1,0,2,0]],[[0,2,3,1],[1,1,3,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,2],[1,1,3,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,1,4,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,1,3,1],[3,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,1,3,1],[2,4,3,1],[1,0,2,0]],[[0,2,2,1],[1,1,3,1],[2,3,4,1],[1,0,2,0]],[[0,2,2,1],[1,1,3,1],[2,3,3,1],[2,0,2,0]],[[0,2,2,1],[1,1,3,1],[2,3,3,1],[1,0,3,0]],[[0,3,2,1],[1,1,3,1],[2,3,3,1],[1,1,0,1]],[[0,2,3,1],[1,1,3,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,2],[1,1,3,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,1,4,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,1,3,1],[3,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,1,3,1],[2,4,3,1],[1,1,0,1]],[[0,2,2,1],[1,1,3,1],[2,3,4,1],[1,1,0,1]],[[0,2,2,1],[1,1,3,1],[2,3,3,1],[2,1,0,1]],[[0,3,2,1],[1,1,3,1],[2,3,3,1],[1,1,1,0]],[[0,2,3,1],[1,1,3,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,2],[1,1,3,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,1,4,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,1,3,1],[3,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,1,3,1],[2,4,3,1],[1,1,1,0]],[[0,2,2,1],[1,1,3,1],[2,3,4,1],[1,1,1,0]],[[0,2,2,1],[1,1,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[0,2,0,2],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[0,2,0,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[1,1,3,1],[3,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,1,3,1],[2,4,3,1],[1,2,0,0]],[[0,2,2,1],[1,1,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[0,2,0,2],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[0,2,0,2],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[0,2,0,2],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[0,2,0,2],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[0,2,0,2],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[0,2,0,2],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[0,2,0,2],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[0,2,0,2],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[0,2,0,3],[2,2,2,2],[0,2,2,1]],[[1,2,2,2],[0,2,0,2],[2,2,2,2],[0,2,2,1]],[[1,2,3,1],[0,2,0,2],[2,2,2,2],[0,2,2,1]],[[1,3,2,1],[0,2,0,2],[2,2,2,2],[0,2,2,1]],[[2,2,2,1],[0,2,0,2],[2,2,2,2],[0,2,2,1]],[[1,2,2,1],[0,2,0,2],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[0,2,0,2],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[0,2,0,2],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[0,2,0,2],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[0,2,0,2],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[0,2,0,2],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[0,2,0,2],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[0,2,0,2],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[0,2,0,2],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[0,2,0,3],[2,2,1,2],[1,2,2,1]],[[1,2,2,2],[0,2,0,2],[2,2,1,2],[1,2,2,1]],[[1,2,3,1],[0,2,0,2],[2,2,1,2],[1,2,2,1]],[[0,3,2,1],[1,1,3,1],[2,3,3,2],[0,1,0,1]],[[0,2,3,1],[1,1,3,1],[2,3,3,2],[0,1,0,1]],[[0,2,2,2],[1,1,3,1],[2,3,3,2],[0,1,0,1]],[[0,2,2,1],[1,1,4,1],[2,3,3,2],[0,1,0,1]],[[1,3,2,1],[0,2,0,2],[2,2,1,2],[1,2,2,1]],[[2,2,2,1],[0,2,0,2],[2,2,1,2],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[0,2,0,2],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[0,2,0,2],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[0,2,0,2],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,2,0,2],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[0,2,0,2],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,0,3],[2,1,3,2],[1,2,2,0]],[[1,2,2,2],[0,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,2,3,1],[0,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,3,2,1],[0,2,0,2],[2,1,3,2],[1,2,2,0]],[[2,2,2,1],[0,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,0,2],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,2,0,2],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,2,0,2],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[0,2,0,3],[2,1,3,2],[1,2,1,1]],[[1,2,2,2],[0,2,0,2],[2,1,3,2],[1,2,1,1]],[[1,2,3,1],[0,2,0,2],[2,1,3,2],[1,2,1,1]],[[1,3,2,1],[0,2,0,2],[2,1,3,2],[1,2,1,1]],[[2,2,2,1],[0,2,0,2],[2,1,3,2],[1,2,1,1]],[[1,2,2,1],[0,2,0,2],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[0,2,0,2],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[0,2,0,2],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[0,2,0,2],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[0,2,0,2],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,2,0,2],[2,1,2,2],[1,2,3,1]],[[0,3,2,1],[1,1,3,1],[2,3,3,2],[1,0,0,1]],[[0,2,3,1],[1,1,3,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,2],[1,1,3,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[1,1,4,1],[2,3,3,2],[1,0,0,1]],[[1,2,2,1],[0,2,0,2],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[0,2,0,2],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[0,2,0,2],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,2,0,3],[2,1,2,2],[1,2,2,1]],[[1,2,2,2],[0,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,2,3,1],[0,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,3,2,1],[0,2,0,2],[2,1,2,2],[1,2,2,1]],[[2,2,2,1],[0,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,2,0,2],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[0,2,0,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[0,2,0,2],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[0,2,0,2],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[0,2,0,3],[1,3,3,2],[1,2,1,0]],[[1,2,2,2],[0,2,0,2],[1,3,3,2],[1,2,1,0]],[[1,2,3,1],[0,2,0,2],[1,3,3,2],[1,2,1,0]],[[1,3,2,1],[0,2,0,2],[1,3,3,2],[1,2,1,0]],[[2,2,2,1],[0,2,0,2],[1,3,3,2],[1,2,1,0]],[[1,2,2,1],[0,2,0,2],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[0,2,0,2],[1,3,3,2],[1,3,0,1]],[[1,2,2,1],[0,2,0,2],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[0,2,0,2],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[0,2,0,2],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[0,2,0,2],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[0,2,0,3],[1,3,3,2],[1,2,0,1]],[[1,2,2,2],[0,2,0,2],[1,3,3,2],[1,2,0,1]],[[1,2,3,1],[0,2,0,2],[1,3,3,2],[1,2,0,1]],[[1,3,2,1],[0,2,0,2],[1,3,3,2],[1,2,0,1]],[[2,2,2,1],[0,2,0,2],[1,3,3,2],[1,2,0,1]],[[1,2,2,1],[0,2,0,2],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[0,2,0,2],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[0,2,0,2],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[0,2,0,2],[1,4,3,2],[1,1,2,0]],[[1,2,2,1],[0,2,0,3],[1,3,3,2],[1,1,2,0]],[[1,2,2,2],[0,2,0,2],[1,3,3,2],[1,1,2,0]],[[1,2,3,1],[0,2,0,2],[1,3,3,2],[1,1,2,0]],[[1,3,2,1],[0,2,0,2],[1,3,3,2],[1,1,2,0]],[[2,2,2,1],[0,2,0,2],[1,3,3,2],[1,1,2,0]],[[1,2,2,1],[0,2,0,2],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[0,2,0,2],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[0,2,0,2],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[0,2,0,2],[1,4,3,2],[1,1,1,1]],[[1,2,2,1],[0,2,0,3],[1,3,3,2],[1,1,1,1]],[[1,2,2,2],[0,2,0,2],[1,3,3,2],[1,1,1,1]],[[1,2,3,1],[0,2,0,2],[1,3,3,2],[1,1,1,1]],[[1,3,2,1],[0,2,0,2],[1,3,3,2],[1,1,1,1]],[[2,2,2,1],[0,2,0,2],[1,3,3,2],[1,1,1,1]],[[1,2,2,1],[0,2,0,2],[1,3,3,2],[1,0,2,2]],[[1,2,2,1],[0,2,0,2],[1,3,3,3],[1,0,2,1]],[[1,2,2,1],[0,2,0,2],[1,3,4,2],[1,0,2,1]],[[1,2,2,1],[0,2,0,3],[1,3,3,2],[1,0,2,1]],[[1,2,2,2],[0,2,0,2],[1,3,3,2],[1,0,2,1]],[[1,2,3,1],[0,2,0,2],[1,3,3,2],[1,0,2,1]],[[1,3,2,1],[0,2,0,2],[1,3,3,2],[1,0,2,1]],[[1,2,2,1],[0,2,0,2],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[0,2,0,2],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[0,2,0,2],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[0,2,0,2],[1,4,3,1],[1,2,1,1]],[[0,2,2,2],[1,1,3,2],[0,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,1,3,3],[0,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,1,3,2],[0,0,3,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,2],[0,0,3,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,2,0,2],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[0,2,0,2],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[0,2,0,2],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[0,2,0,2],[1,4,3,1],[1,1,2,1]],[[0,2,3,1],[1,1,3,2],[0,3,3,0],[1,2,2,0]],[[0,2,2,2],[1,1,3,2],[0,3,3,0],[1,2,2,0]],[[0,2,2,1],[1,1,4,2],[0,3,3,0],[1,2,2,0]],[[1,2,2,1],[0,2,0,2],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[0,2,0,2],[1,3,2,2],[1,3,2,0]],[[1,2,2,1],[0,2,0,2],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[0,2,0,2],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[0,2,0,2],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[0,2,0,2],[1,3,2,2],[1,1,3,1]],[[1,2,2,1],[0,2,0,2],[1,3,2,3],[1,1,2,1]],[[1,2,2,1],[0,2,0,3],[1,3,2,2],[1,1,2,1]],[[1,2,2,2],[0,2,0,2],[1,3,2,2],[1,1,2,1]],[[1,2,3,1],[0,2,0,2],[1,3,2,2],[1,1,2,1]],[[1,3,2,1],[0,2,0,2],[1,3,2,2],[1,1,2,1]],[[2,2,2,1],[0,2,0,2],[1,3,2,2],[1,1,2,1]],[[1,2,2,1],[0,2,0,2],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[0,2,0,2],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[0,2,0,2],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[0,2,0,2],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[0,2,0,2],[1,4,2,1],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[0,2,0,2],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[0,2,0,2],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[0,2,0,2],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[0,2,0,2],[1,3,1,3],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[1,4,1,2],[1,2,2,1]],[[1,2,2,1],[0,2,0,3],[1,3,1,2],[1,2,2,1]],[[1,2,2,2],[0,2,0,2],[1,3,1,2],[1,2,2,1]],[[1,2,3,1],[0,2,0,2],[1,3,1,2],[1,2,2,1]],[[1,3,2,1],[0,2,0,2],[1,3,1,2],[1,2,2,1]],[[2,2,2,1],[0,2,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,3,1],[1,1,3,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,2],[1,1,3,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,1,3,3],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,1,3,2],[1,0,2,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,2],[1,0,2,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,2],[1,0,2,2],[1,2,2,2]],[[0,2,3,1],[1,1,3,2],[1,0,3,2],[1,1,2,1]],[[0,2,2,2],[1,1,3,2],[1,0,3,2],[1,1,2,1]],[[0,2,2,1],[1,1,3,3],[1,0,3,2],[1,1,2,1]],[[0,2,2,1],[1,1,3,2],[1,0,3,3],[1,1,2,1]],[[0,2,2,1],[1,1,3,2],[1,0,3,2],[1,1,2,2]],[[0,2,3,1],[1,1,3,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,2],[1,1,3,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,3],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,2],[1,0,3,3],[1,2,1,1]],[[0,2,2,1],[1,1,3,2],[1,0,3,2],[1,2,1,2]],[[0,2,3,1],[1,1,3,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,2],[1,1,3,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,3],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,2],[1,0,3,3],[1,2,2,0]],[[0,2,3,1],[1,1,3,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,2],[1,1,3,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,3,3],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,3,2],[1,1,1,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,2],[1,1,1,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,2],[1,1,1,2],[1,2,2,2]],[[0,2,3,1],[1,1,3,2],[1,1,2,2],[1,2,1,1]],[[0,2,2,2],[1,1,3,2],[1,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,3],[1,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,2],[1,1,2,3],[1,2,1,1]],[[0,2,2,1],[1,1,3,2],[1,1,2,2],[1,2,1,2]],[[0,2,3,1],[1,1,3,2],[1,1,2,2],[1,2,2,0]],[[0,2,2,2],[1,1,3,2],[1,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,3],[1,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,2],[1,1,2,3],[1,2,2,0]],[[0,2,3,1],[1,1,3,2],[1,1,3,0],[1,2,2,1]],[[0,2,2,2],[1,1,3,2],[1,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,3],[1,1,3,0],[1,2,2,1]],[[0,2,3,1],[1,1,3,2],[1,1,3,1],[1,2,1,1]],[[0,2,2,2],[1,1,3,2],[1,1,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,3,3],[1,1,3,1],[1,2,1,1]],[[0,2,3,1],[1,1,3,2],[1,1,3,1],[1,2,2,0]],[[0,2,2,2],[1,1,3,2],[1,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,3,3],[1,1,3,1],[1,2,2,0]],[[0,2,3,1],[1,1,3,2],[1,1,3,2],[1,0,2,1]],[[0,2,2,2],[1,1,3,2],[1,1,3,2],[1,0,2,1]],[[0,2,2,1],[1,1,3,3],[1,1,3,2],[1,0,2,1]],[[0,2,2,1],[1,1,3,2],[1,1,3,3],[1,0,2,1]],[[0,2,2,1],[1,1,3,2],[1,1,3,2],[1,0,2,2]],[[0,2,3,1],[1,1,3,2],[1,1,3,2],[1,1,1,1]],[[0,2,2,2],[1,1,3,2],[1,1,3,2],[1,1,1,1]],[[0,2,2,1],[1,1,3,3],[1,1,3,2],[1,1,1,1]],[[0,2,2,1],[1,1,3,2],[1,1,3,3],[1,1,1,1]],[[0,2,2,1],[1,1,3,2],[1,1,3,2],[1,1,1,2]],[[0,2,3,1],[1,1,3,2],[1,1,3,2],[1,1,2,0]],[[0,2,2,2],[1,1,3,2],[1,1,3,2],[1,1,2,0]],[[0,2,2,1],[1,1,3,3],[1,1,3,2],[1,1,2,0]],[[0,2,2,1],[1,1,3,2],[1,1,3,3],[1,1,2,0]],[[0,2,3,1],[1,1,3,2],[1,2,1,2],[1,1,2,1]],[[0,2,2,2],[1,1,3,2],[1,2,1,2],[1,1,2,1]],[[0,2,2,1],[1,1,3,3],[1,2,1,2],[1,1,2,1]],[[0,2,2,1],[1,1,3,2],[1,2,1,3],[1,1,2,1]],[[0,2,2,1],[1,1,3,2],[1,2,1,2],[1,1,2,2]],[[0,2,3,1],[1,1,3,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,2],[1,1,3,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,1],[1,1,3,3],[1,2,2,2],[1,0,2,1]],[[0,2,2,1],[1,1,3,2],[1,2,2,3],[1,0,2,1]],[[0,2,2,1],[1,1,3,2],[1,2,2,2],[1,0,2,2]],[[0,2,3,1],[1,1,3,2],[1,2,2,2],[1,1,1,1]],[[0,2,2,2],[1,1,3,2],[1,2,2,2],[1,1,1,1]],[[0,2,2,1],[1,1,3,3],[1,2,2,2],[1,1,1,1]],[[0,2,2,1],[1,1,3,2],[1,2,2,3],[1,1,1,1]],[[0,2,2,1],[1,1,3,2],[1,2,2,2],[1,1,1,2]],[[0,2,3,1],[1,1,3,2],[1,2,2,2],[1,1,2,0]],[[0,2,2,2],[1,1,3,2],[1,2,2,2],[1,1,2,0]],[[0,2,2,1],[1,1,3,3],[1,2,2,2],[1,1,2,0]],[[0,2,2,1],[1,1,3,2],[1,2,2,3],[1,1,2,0]],[[0,2,3,1],[1,1,3,2],[1,2,2,2],[1,2,0,1]],[[0,2,2,2],[1,1,3,2],[1,2,2,2],[1,2,0,1]],[[0,2,2,1],[1,1,3,3],[1,2,2,2],[1,2,0,1]],[[0,2,2,1],[1,1,3,2],[1,2,2,3],[1,2,0,1]],[[0,2,3,1],[1,1,3,2],[1,2,2,2],[1,2,1,0]],[[0,2,2,2],[1,1,3,2],[1,2,2,2],[1,2,1,0]],[[0,2,2,1],[1,1,3,3],[1,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,2,0,2],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[0,2,0,2],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[0,2,0,2],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[0,2,0,2],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[0,2,0,2],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[0,2,0,3],[1,2,3,2],[1,2,2,0]],[[1,2,2,2],[0,2,0,2],[1,2,3,2],[1,2,2,0]],[[0,2,3,1],[1,1,3,2],[1,2,3,0],[1,1,2,1]],[[0,2,2,2],[1,1,3,2],[1,2,3,0],[1,1,2,1]],[[0,2,2,1],[1,1,3,3],[1,2,3,0],[1,1,2,1]],[[0,3,2,1],[1,1,3,2],[1,2,3,0],[1,2,2,0]],[[0,2,3,1],[1,1,3,2],[1,2,3,0],[1,2,2,0]],[[0,2,2,2],[1,1,3,2],[1,2,3,0],[1,2,2,0]],[[0,2,2,1],[1,1,4,2],[1,2,3,0],[1,2,2,0]],[[0,2,3,1],[1,1,3,2],[1,2,3,1],[1,0,2,1]],[[0,2,2,2],[1,1,3,2],[1,2,3,1],[1,0,2,1]],[[0,2,2,1],[1,1,3,3],[1,2,3,1],[1,0,2,1]],[[0,2,3,1],[1,1,3,2],[1,2,3,1],[1,1,1,1]],[[0,2,2,2],[1,1,3,2],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[1,1,3,3],[1,2,3,1],[1,1,1,1]],[[0,2,3,1],[1,1,3,2],[1,2,3,1],[1,1,2,0]],[[0,2,2,2],[1,1,3,2],[1,2,3,1],[1,1,2,0]],[[0,2,2,1],[1,1,3,3],[1,2,3,1],[1,1,2,0]],[[0,2,3,1],[1,1,3,2],[1,2,3,1],[1,2,0,1]],[[0,2,2,2],[1,1,3,2],[1,2,3,1],[1,2,0,1]],[[0,2,2,1],[1,1,3,3],[1,2,3,1],[1,2,0,1]],[[0,2,3,1],[1,1,3,2],[1,2,3,1],[1,2,1,0]],[[0,2,2,2],[1,1,3,2],[1,2,3,1],[1,2,1,0]],[[0,2,2,1],[1,1,3,3],[1,2,3,1],[1,2,1,0]],[[1,2,3,1],[0,2,0,2],[1,2,3,2],[1,2,2,0]],[[1,3,2,1],[0,2,0,2],[1,2,3,2],[1,2,2,0]],[[2,2,2,1],[0,2,0,2],[1,2,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,0,2],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[0,2,0,2],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[0,2,0,2],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[0,2,0,3],[1,2,3,2],[1,2,1,1]],[[1,2,2,2],[0,2,0,2],[1,2,3,2],[1,2,1,1]],[[1,2,3,1],[0,2,0,2],[1,2,3,2],[1,2,1,1]],[[1,3,2,1],[0,2,0,2],[1,2,3,2],[1,2,1,1]],[[0,2,3,1],[1,1,3,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,2],[1,1,3,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,3,3],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,1,3,2],[1,2,3,3],[1,1,0,1]],[[2,2,2,1],[0,2,0,2],[1,2,3,2],[1,2,1,1]],[[1,2,2,1],[0,2,0,2],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[0,2,0,2],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[0,2,0,2],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[0,2,0,2],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[0,2,0,2],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[0,2,0,2],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[0,2,0,2],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[0,2,0,2],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[0,2,0,2],[1,2,2,3],[1,2,2,1]],[[1,2,2,1],[0,2,0,3],[1,2,2,2],[1,2,2,1]],[[1,2,2,2],[0,2,0,2],[1,2,2,2],[1,2,2,1]],[[1,2,3,1],[0,2,0,2],[1,2,2,2],[1,2,2,1]],[[1,3,2,1],[0,2,0,2],[1,2,2,2],[1,2,2,1]],[[2,2,2,1],[0,2,0,2],[1,2,2,2],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[0,3,3,2],[1,2,3,0]],[[1,2,2,1],[0,2,0,2],[0,3,3,2],[1,3,2,0]],[[1,2,2,1],[0,2,0,2],[0,3,3,3],[1,2,2,0]],[[1,2,2,1],[0,2,0,2],[0,3,4,2],[1,2,2,0]],[[1,2,2,1],[0,2,0,3],[0,3,3,2],[1,2,2,0]],[[1,2,2,2],[0,2,0,2],[0,3,3,2],[1,2,2,0]],[[1,2,3,1],[0,2,0,2],[0,3,3,2],[1,2,2,0]],[[1,3,2,1],[0,2,0,2],[0,3,3,2],[1,2,2,0]],[[1,2,2,1],[0,2,0,2],[0,3,3,2],[1,2,1,2]],[[1,2,2,1],[0,2,0,2],[0,3,3,3],[1,2,1,1]],[[1,2,2,1],[0,2,0,2],[0,3,4,2],[1,2,1,1]],[[1,2,2,1],[0,2,0,3],[0,3,3,2],[1,2,1,1]],[[1,2,2,2],[0,2,0,2],[0,3,3,2],[1,2,1,1]],[[1,2,3,1],[0,2,0,2],[0,3,3,2],[1,2,1,1]],[[1,3,2,1],[0,2,0,2],[0,3,3,2],[1,2,1,1]],[[1,2,2,1],[0,2,0,2],[0,3,3,1],[1,2,2,2]],[[1,2,2,1],[0,2,0,2],[0,3,3,1],[1,2,3,1]],[[1,2,2,1],[0,2,0,2],[0,3,3,1],[1,3,2,1]],[[1,2,2,1],[0,2,0,2],[0,3,4,1],[1,2,2,1]],[[1,2,2,1],[0,2,0,2],[0,3,2,2],[1,2,2,2]],[[1,2,2,1],[0,2,0,2],[0,3,2,2],[1,2,3,1]],[[1,2,2,1],[0,2,0,2],[0,3,2,2],[1,3,2,1]],[[1,2,2,1],[0,2,0,2],[0,3,2,3],[1,2,2,1]],[[1,2,2,1],[0,2,0,3],[0,3,2,2],[1,2,2,1]],[[1,2,2,2],[0,2,0,2],[0,3,2,2],[1,2,2,1]],[[1,2,3,1],[0,2,0,2],[0,3,2,2],[1,2,2,1]],[[1,3,2,1],[0,2,0,2],[0,3,2,2],[1,2,2,1]],[[1,2,2,1],[0,1,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,1],[0,1,3,3],[2,3,3,2],[0,0,0,1]],[[1,2,2,2],[0,1,3,2],[2,3,3,2],[0,0,0,1]],[[1,2,3,1],[0,1,3,2],[2,3,3,2],[0,0,0,1]],[[0,2,3,1],[1,1,3,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,2],[1,1,3,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,1,4,2],[1,3,3,0],[1,1,1,1]],[[0,3,2,1],[1,1,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,3,1],[1,1,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,2,2],[1,1,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,2,1],[1,1,4,2],[1,3,3,0],[1,1,2,0]],[[0,3,2,1],[1,1,3,2],[1,3,3,0],[1,2,0,1]],[[0,2,3,1],[1,1,3,2],[1,3,3,0],[1,2,0,1]],[[0,2,2,2],[1,1,3,2],[1,3,3,0],[1,2,0,1]],[[0,2,2,1],[1,1,4,2],[1,3,3,0],[1,2,0,1]],[[0,3,2,1],[1,1,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,3,1],[1,1,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,2,2],[1,1,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,2,1],[1,1,4,2],[1,3,3,0],[1,2,1,0]],[[1,2,2,1],[0,1,3,3],[2,3,3,1],[0,0,2,0]],[[1,2,2,2],[0,1,3,2],[2,3,3,1],[0,0,2,0]],[[1,2,3,1],[0,1,3,2],[2,3,3,1],[0,0,2,0]],[[1,2,2,1],[0,1,3,3],[2,3,3,1],[0,0,1,1]],[[1,2,2,2],[0,1,3,2],[2,3,3,1],[0,0,1,1]],[[1,2,3,1],[0,1,3,2],[2,3,3,1],[0,0,1,1]],[[1,2,2,1],[0,1,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,2],[0,1,3,2],[2,3,3,0],[1,1,1,0]],[[1,2,3,1],[0,1,3,2],[2,3,3,0],[1,1,1,0]],[[1,3,2,1],[0,1,3,2],[2,3,3,0],[1,1,1,0]],[[2,2,2,1],[0,1,3,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[0,1,4,2],[2,3,3,0],[1,1,0,1]],[[1,2,2,2],[0,1,3,2],[2,3,3,0],[1,1,0,1]],[[1,2,3,1],[0,1,3,2],[2,3,3,0],[1,1,0,1]],[[1,3,2,1],[0,1,3,2],[2,3,3,0],[1,1,0,1]],[[2,2,2,1],[0,1,3,2],[2,3,3,0],[1,1,0,1]],[[1,2,2,1],[0,1,4,2],[2,3,3,0],[1,0,2,0]],[[1,2,2,2],[0,1,3,2],[2,3,3,0],[1,0,2,0]],[[1,2,3,1],[0,1,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,3,1],[1,1,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[1,1,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,3,3],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[1,1,3,2],[2,0,1,3],[1,2,2,1]],[[0,2,2,1],[1,1,3,2],[2,0,1,2],[1,2,3,1]],[[0,2,2,1],[1,1,3,2],[2,0,1,2],[1,2,2,2]],[[0,2,3,1],[1,1,3,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,2],[1,1,3,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,1],[1,1,3,3],[2,0,2,2],[0,2,2,1]],[[0,2,2,1],[1,1,3,2],[2,0,2,3],[0,2,2,1]],[[0,2,2,1],[1,1,3,2],[2,0,2,2],[0,2,3,1]],[[0,2,2,1],[1,1,3,2],[2,0,2,2],[0,2,2,2]],[[0,2,3,1],[1,1,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,2],[1,1,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,3],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[1,1,3,2],[2,0,2,3],[1,2,1,1]],[[0,2,2,1],[1,1,3,2],[2,0,2,2],[1,2,1,2]],[[0,2,3,1],[1,1,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,2],[1,1,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,3],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[1,1,3,2],[2,0,2,3],[1,2,2,0]],[[0,2,3,1],[1,1,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,2],[1,1,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[1,1,3,3],[2,0,3,0],[1,2,2,1]],[[0,2,3,1],[1,1,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,2],[1,1,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[1,1,3,3],[2,0,3,1],[1,2,1,1]],[[0,2,3,1],[1,1,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,2],[1,1,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[1,1,3,3],[2,0,3,1],[1,2,2,0]],[[0,2,3,1],[1,1,3,2],[2,0,3,2],[0,1,2,1]],[[0,2,2,2],[1,1,3,2],[2,0,3,2],[0,1,2,1]],[[0,2,2,1],[1,1,3,3],[2,0,3,2],[0,1,2,1]],[[0,2,2,1],[1,1,3,2],[2,0,3,3],[0,1,2,1]],[[0,2,2,1],[1,1,3,2],[2,0,3,2],[0,1,2,2]],[[0,2,3,1],[1,1,3,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,2],[1,1,3,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[1,1,3,3],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[1,1,3,2],[2,0,3,3],[0,2,1,1]],[[0,2,2,1],[1,1,3,2],[2,0,3,2],[0,2,1,2]],[[0,2,3,1],[1,1,3,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,2],[1,1,3,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[1,1,3,3],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[1,1,3,2],[2,0,3,3],[0,2,2,0]],[[1,3,2,1],[0,1,3,2],[2,3,3,0],[1,0,2,0]],[[2,2,2,1],[0,1,3,2],[2,3,3,0],[1,0,2,0]],[[1,2,2,1],[0,1,4,2],[2,3,3,0],[1,0,1,1]],[[1,2,2,2],[0,1,3,2],[2,3,3,0],[1,0,1,1]],[[1,2,3,1],[0,1,3,2],[2,3,3,0],[1,0,1,1]],[[1,3,2,1],[0,1,3,2],[2,3,3,0],[1,0,1,1]],[[0,2,3,1],[1,1,3,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,2],[1,1,3,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,3,3],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[1,1,3,2],[2,1,1,3],[0,2,2,1]],[[0,2,2,1],[1,1,3,2],[2,1,1,2],[0,2,3,1]],[[0,2,2,1],[1,1,3,2],[2,1,1,2],[0,2,2,2]],[[0,2,3,1],[1,1,3,2],[2,1,2,2],[0,2,1,1]],[[0,2,2,2],[1,1,3,2],[2,1,2,2],[0,2,1,1]],[[0,2,2,1],[1,1,3,3],[2,1,2,2],[0,2,1,1]],[[0,2,2,1],[1,1,3,2],[2,1,2,3],[0,2,1,1]],[[0,2,2,1],[1,1,3,2],[2,1,2,2],[0,2,1,2]],[[0,2,3,1],[1,1,3,2],[2,1,2,2],[0,2,2,0]],[[0,2,2,2],[1,1,3,2],[2,1,2,2],[0,2,2,0]],[[0,2,2,1],[1,1,3,3],[2,1,2,2],[0,2,2,0]],[[0,2,2,1],[1,1,3,2],[2,1,2,3],[0,2,2,0]],[[2,2,2,1],[0,1,3,2],[2,3,3,0],[1,0,1,1]],[[0,2,3,1],[1,1,3,2],[2,1,3,0],[0,2,2,1]],[[0,2,2,2],[1,1,3,2],[2,1,3,0],[0,2,2,1]],[[0,2,2,1],[1,1,3,3],[2,1,3,0],[0,2,2,1]],[[0,3,2,1],[1,1,3,2],[2,1,3,0],[1,2,2,0]],[[0,2,3,1],[1,1,3,2],[2,1,3,0],[1,2,2,0]],[[0,2,2,2],[1,1,3,2],[2,1,3,0],[1,2,2,0]],[[0,2,2,1],[1,1,4,2],[2,1,3,0],[1,2,2,0]],[[0,2,3,1],[1,1,3,2],[2,1,3,1],[0,2,1,1]],[[0,2,2,2],[1,1,3,2],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[1,1,3,3],[2,1,3,1],[0,2,1,1]],[[0,2,3,1],[1,1,3,2],[2,1,3,1],[0,2,2,0]],[[0,2,2,2],[1,1,3,2],[2,1,3,1],[0,2,2,0]],[[0,2,2,1],[1,1,3,3],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,1,4,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,2],[0,1,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,3,1],[0,1,3,2],[2,3,3,0],[0,2,1,0]],[[1,3,2,1],[0,1,3,2],[2,3,3,0],[0,2,1,0]],[[2,2,2,1],[0,1,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[0,1,4,2],[2,3,3,0],[0,2,0,1]],[[0,2,3,1],[1,1,3,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,2],[1,1,3,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[1,1,3,3],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[1,1,3,2],[2,1,3,3],[0,0,2,1]],[[0,2,2,1],[1,1,3,2],[2,1,3,2],[0,0,2,2]],[[0,2,3,1],[1,1,3,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,2],[1,1,3,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[1,1,3,3],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[1,1,3,2],[2,1,3,3],[0,1,1,1]],[[0,2,2,1],[1,1,3,2],[2,1,3,2],[0,1,1,2]],[[0,2,3,1],[1,1,3,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,2],[1,1,3,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[1,1,3,3],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[1,1,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,2],[0,1,3,2],[2,3,3,0],[0,2,0,1]],[[1,2,3,1],[0,1,3,2],[2,3,3,0],[0,2,0,1]],[[1,3,2,1],[0,1,3,2],[2,3,3,0],[0,2,0,1]],[[2,2,2,1],[0,1,3,2],[2,3,3,0],[0,2,0,1]],[[0,2,3,1],[1,1,3,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,2],[1,1,3,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[1,1,3,3],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[1,1,3,2],[2,1,3,3],[1,0,1,1]],[[0,2,2,1],[1,1,3,2],[2,1,3,2],[1,0,1,2]],[[0,2,3,1],[1,1,3,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,2],[1,1,3,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[1,1,3,3],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[1,1,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[0,1,4,2],[2,3,3,0],[0,1,2,0]],[[1,2,2,2],[0,1,3,2],[2,3,3,0],[0,1,2,0]],[[1,2,3,1],[0,1,3,2],[2,3,3,0],[0,1,2,0]],[[1,3,2,1],[0,1,3,2],[2,3,3,0],[0,1,2,0]],[[2,2,2,1],[0,1,3,2],[2,3,3,0],[0,1,2,0]],[[1,2,2,1],[0,1,4,2],[2,3,3,0],[0,1,1,1]],[[1,2,2,2],[0,1,3,2],[2,3,3,0],[0,1,1,1]],[[1,2,3,1],[0,1,3,2],[2,3,3,0],[0,1,1,1]],[[1,3,2,1],[0,1,3,2],[2,3,3,0],[0,1,1,1]],[[2,2,2,1],[0,1,3,2],[2,3,3,0],[0,1,1,1]],[[0,2,3,1],[1,1,3,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,2],[1,1,3,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[1,1,3,3],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[1,1,3,2],[2,2,1,3],[0,1,2,1]],[[0,2,2,1],[1,1,3,2],[2,2,1,2],[0,1,2,2]],[[0,2,3,1],[1,1,3,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,2],[1,1,3,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[1,1,3,3],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[1,1,3,2],[2,2,1,3],[1,0,2,1]],[[0,2,2,1],[1,1,3,2],[2,2,1,2],[1,0,2,2]],[[0,2,3,1],[1,1,3,2],[2,2,2,2],[0,0,2,1]],[[0,2,2,2],[1,1,3,2],[2,2,2,2],[0,0,2,1]],[[0,2,2,1],[1,1,3,3],[2,2,2,2],[0,0,2,1]],[[0,2,2,1],[1,1,3,2],[2,2,2,3],[0,0,2,1]],[[0,2,2,1],[1,1,3,2],[2,2,2,2],[0,0,2,2]],[[0,2,3,1],[1,1,3,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,2],[1,1,3,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[1,1,3,3],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[1,1,3,2],[2,2,2,3],[0,1,1,1]],[[0,2,2,1],[1,1,3,2],[2,2,2,2],[0,1,1,2]],[[0,2,3,1],[1,1,3,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,2],[1,1,3,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[1,1,3,3],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[1,1,3,2],[2,2,2,3],[0,1,2,0]],[[0,2,3,1],[1,1,3,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,2],[1,1,3,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[1,1,3,3],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[1,1,3,2],[2,2,2,3],[0,2,0,1]],[[0,2,3,1],[1,1,3,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,2],[1,1,3,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[1,1,3,3],[2,2,2,2],[0,2,1,0]],[[0,2,3,1],[1,1,3,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,2],[1,1,3,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[1,1,3,3],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[1,1,3,2],[2,2,2,3],[1,0,1,1]],[[0,2,2,1],[1,1,3,2],[2,2,2,2],[1,0,1,2]],[[0,2,3,1],[1,1,3,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,2],[1,1,3,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[1,1,3,3],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[1,1,3,2],[2,2,2,3],[1,0,2,0]],[[0,2,3,1],[1,1,3,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,2],[1,1,3,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[1,1,3,3],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[1,1,3,2],[2,2,2,3],[1,1,0,1]],[[0,2,3,1],[1,1,3,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,2],[1,1,3,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[1,1,3,3],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[0,1,3,3],[2,3,2,2],[0,0,2,0]],[[1,2,2,2],[0,1,3,2],[2,3,2,2],[0,0,2,0]],[[1,2,3,1],[0,1,3,2],[2,3,2,2],[0,0,2,0]],[[1,2,2,1],[0,1,3,2],[2,3,2,3],[0,0,1,1]],[[1,2,2,1],[0,1,3,3],[2,3,2,2],[0,0,1,1]],[[1,2,2,2],[0,1,3,2],[2,3,2,2],[0,0,1,1]],[[1,2,3,1],[0,1,3,2],[2,3,2,2],[0,0,1,1]],[[0,2,3,1],[1,1,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,2],[1,1,3,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[1,1,3,3],[2,2,3,0],[0,1,2,1]],[[0,3,2,1],[1,1,3,2],[2,2,3,0],[0,2,2,0]],[[0,2,3,1],[1,1,3,2],[2,2,3,0],[0,2,2,0]],[[0,2,2,2],[1,1,3,2],[2,2,3,0],[0,2,2,0]],[[0,2,2,1],[1,1,4,2],[2,2,3,0],[0,2,2,0]],[[0,2,3,1],[1,1,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,2],[1,1,3,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[1,1,3,3],[2,2,3,0],[1,0,2,1]],[[0,2,3,1],[1,1,3,2],[2,2,3,1],[0,0,2,1]],[[0,2,2,2],[1,1,3,2],[2,2,3,1],[0,0,2,1]],[[0,2,2,1],[1,1,3,3],[2,2,3,1],[0,0,2,1]],[[0,2,3,1],[1,1,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,2],[1,1,3,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[1,1,3,3],[2,2,3,1],[0,1,1,1]],[[0,2,3,1],[1,1,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,2],[1,1,3,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[1,1,3,3],[2,2,3,1],[0,1,2,0]],[[0,2,3,1],[1,1,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,2],[1,1,3,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[1,1,3,3],[2,2,3,1],[0,2,0,1]],[[0,2,3,1],[1,1,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,2],[1,1,3,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[1,1,3,3],[2,2,3,1],[0,2,1,0]],[[0,2,3,1],[1,1,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,2],[1,1,3,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[1,1,3,3],[2,2,3,1],[1,0,1,1]],[[0,2,3,1],[1,1,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,2],[1,1,3,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[1,1,3,3],[2,2,3,1],[1,0,2,0]],[[0,2,3,1],[1,1,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,2],[1,1,3,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[1,1,3,3],[2,2,3,1],[1,1,0,1]],[[0,2,3,1],[1,1,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,2],[1,1,3,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[1,1,3,3],[2,2,3,1],[1,1,1,0]],[[0,2,3,1],[1,1,3,2],[2,2,3,2],[0,1,0,1]],[[0,2,2,2],[1,1,3,2],[2,2,3,2],[0,1,0,1]],[[0,2,2,1],[1,1,3,3],[2,2,3,2],[0,1,0,1]],[[0,2,2,1],[1,1,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,2,1],[0,1,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[0,1,3,3],[2,2,3,2],[1,0,0,1]],[[1,2,2,2],[0,1,3,2],[2,2,3,2],[1,0,0,1]],[[1,2,3,1],[0,1,3,2],[2,2,3,2],[1,0,0,1]],[[1,2,2,1],[0,1,3,2],[2,2,3,3],[0,1,0,1]],[[0,2,3,1],[1,1,3,2],[2,2,3,2],[1,0,0,1]],[[0,2,2,2],[1,1,3,2],[2,2,3,2],[1,0,0,1]],[[0,2,2,1],[1,1,3,3],[2,2,3,2],[1,0,0,1]],[[0,2,2,1],[1,1,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,1],[0,1,3,3],[2,2,3,2],[0,1,0,1]],[[1,2,2,2],[0,1,3,2],[2,2,3,2],[0,1,0,1]],[[1,2,3,1],[0,1,3,2],[2,2,3,2],[0,1,0,1]],[[1,2,2,1],[0,1,3,3],[2,2,3,1],[1,1,1,0]],[[1,2,2,2],[0,1,3,2],[2,2,3,1],[1,1,1,0]],[[1,2,3,1],[0,1,3,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,1],[0,1,3,3],[2,2,3,1],[1,1,0,1]],[[1,2,2,2],[0,1,3,2],[2,2,3,1],[1,1,0,1]],[[1,2,3,1],[0,1,3,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,1],[0,1,3,3],[2,2,3,1],[1,0,2,0]],[[1,2,2,2],[0,1,3,2],[2,2,3,1],[1,0,2,0]],[[1,2,3,1],[0,1,3,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,1],[0,1,3,3],[2,2,3,1],[1,0,1,1]],[[1,2,2,2],[0,1,3,2],[2,2,3,1],[1,0,1,1]],[[1,2,3,1],[0,1,3,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,1],[0,1,3,3],[2,2,3,1],[0,2,1,0]],[[1,2,2,2],[0,1,3,2],[2,2,3,1],[0,2,1,0]],[[1,2,3,1],[0,1,3,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[0,1,3,3],[2,2,3,1],[0,2,0,1]],[[1,2,2,2],[0,1,3,2],[2,2,3,1],[0,2,0,1]],[[1,2,3,1],[0,1,3,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,1],[0,1,3,3],[2,2,3,1],[0,1,2,0]],[[1,2,2,2],[0,1,3,2],[2,2,3,1],[0,1,2,0]],[[1,2,3,1],[0,1,3,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,1],[0,1,3,3],[2,2,3,1],[0,1,1,1]],[[1,2,2,2],[0,1,3,2],[2,2,3,1],[0,1,1,1]],[[1,2,3,1],[0,1,3,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,1],[0,1,3,3],[2,2,3,1],[0,0,2,1]],[[1,2,2,2],[0,1,3,2],[2,2,3,1],[0,0,2,1]],[[1,2,3,1],[0,1,3,2],[2,2,3,1],[0,0,2,1]],[[1,2,2,1],[0,1,3,3],[2,2,3,0],[1,0,2,1]],[[1,2,2,2],[0,1,3,2],[2,2,3,0],[1,0,2,1]],[[1,2,3,1],[0,1,3,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,1],[0,1,4,2],[2,2,3,0],[0,2,2,0]],[[1,2,2,2],[0,1,3,2],[2,2,3,0],[0,2,2,0]],[[1,2,3,1],[0,1,3,2],[2,2,3,0],[0,2,2,0]],[[1,3,2,1],[0,1,3,2],[2,2,3,0],[0,2,2,0]],[[2,2,2,1],[0,1,3,2],[2,2,3,0],[0,2,2,0]],[[1,2,2,1],[0,1,3,3],[2,2,3,0],[0,1,2,1]],[[1,2,2,2],[0,1,3,2],[2,2,3,0],[0,1,2,1]],[[1,2,3,1],[0,1,3,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,1],[0,1,3,3],[2,2,2,2],[1,1,1,0]],[[1,2,2,2],[0,1,3,2],[2,2,2,2],[1,1,1,0]],[[1,2,3,1],[0,1,3,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[0,1,3,2],[2,2,2,3],[1,1,0,1]],[[1,2,2,1],[0,1,3,3],[2,2,2,2],[1,1,0,1]],[[1,2,2,2],[0,1,3,2],[2,2,2,2],[1,1,0,1]],[[1,2,3,1],[0,1,3,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,1],[0,1,3,2],[2,2,2,3],[1,0,2,0]],[[1,2,2,1],[0,1,3,3],[2,2,2,2],[1,0,2,0]],[[0,2,3,1],[1,1,3,2],[2,3,2,2],[0,0,1,1]],[[0,2,2,2],[1,1,3,2],[2,3,2,2],[0,0,1,1]],[[0,2,2,1],[1,1,3,3],[2,3,2,2],[0,0,1,1]],[[0,2,2,1],[1,1,3,2],[2,3,2,3],[0,0,1,1]],[[0,2,3,1],[1,1,3,2],[2,3,2,2],[0,0,2,0]],[[0,2,2,2],[1,1,3,2],[2,3,2,2],[0,0,2,0]],[[0,2,2,1],[1,1,3,3],[2,3,2,2],[0,0,2,0]],[[1,2,2,2],[0,1,3,2],[2,2,2,2],[1,0,2,0]],[[1,2,3,1],[0,1,3,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,1],[0,1,3,2],[2,2,2,2],[1,0,1,2]],[[1,2,2,1],[0,1,3,2],[2,2,2,3],[1,0,1,1]],[[1,2,2,1],[0,1,3,3],[2,2,2,2],[1,0,1,1]],[[1,2,2,2],[0,1,3,2],[2,2,2,2],[1,0,1,1]],[[1,2,3,1],[0,1,3,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,1],[0,1,3,3],[2,2,2,2],[0,2,1,0]],[[1,2,2,2],[0,1,3,2],[2,2,2,2],[0,2,1,0]],[[1,2,3,1],[0,1,3,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,1],[0,1,3,2],[2,2,2,3],[0,2,0,1]],[[1,2,2,1],[0,1,3,3],[2,2,2,2],[0,2,0,1]],[[1,2,2,2],[0,1,3,2],[2,2,2,2],[0,2,0,1]],[[1,2,3,1],[0,1,3,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,1],[0,1,3,2],[2,2,2,3],[0,1,2,0]],[[1,2,2,1],[0,1,3,3],[2,2,2,2],[0,1,2,0]],[[1,2,2,2],[0,1,3,2],[2,2,2,2],[0,1,2,0]],[[1,2,3,1],[0,1,3,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,1],[0,1,3,2],[2,2,2,2],[0,1,1,2]],[[1,2,2,1],[0,1,3,2],[2,2,2,3],[0,1,1,1]],[[1,2,2,1],[0,1,3,3],[2,2,2,2],[0,1,1,1]],[[1,2,2,2],[0,1,3,2],[2,2,2,2],[0,1,1,1]],[[1,2,3,1],[0,1,3,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,1],[0,1,3,2],[2,2,2,2],[0,0,2,2]],[[1,2,2,1],[0,1,3,2],[2,2,2,3],[0,0,2,1]],[[1,2,2,1],[0,1,3,3],[2,2,2,2],[0,0,2,1]],[[1,2,2,2],[0,1,3,2],[2,2,2,2],[0,0,2,1]],[[1,2,3,1],[0,1,3,2],[2,2,2,2],[0,0,2,1]],[[1,2,2,1],[0,1,3,2],[2,2,1,2],[1,0,2,2]],[[1,2,2,1],[0,1,3,2],[2,2,1,3],[1,0,2,1]],[[1,2,2,1],[0,1,3,3],[2,2,1,2],[1,0,2,1]],[[1,2,2,2],[0,1,3,2],[2,2,1,2],[1,0,2,1]],[[1,2,3,1],[0,1,3,2],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[0,1,3,2],[2,2,1,2],[0,1,2,2]],[[1,2,2,1],[0,1,3,2],[2,2,1,3],[0,1,2,1]],[[1,2,2,1],[0,1,3,3],[2,2,1,2],[0,1,2,1]],[[1,2,2,2],[0,1,3,2],[2,2,1,2],[0,1,2,1]],[[1,2,3,1],[0,1,3,2],[2,2,1,2],[0,1,2,1]],[[1,2,2,1],[0,1,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[0,1,3,3],[2,1,3,2],[1,0,2,0]],[[1,2,2,2],[0,1,3,2],[2,1,3,2],[1,0,2,0]],[[1,2,3,1],[0,1,3,2],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[0,1,3,2],[2,1,3,2],[1,0,1,2]],[[1,2,2,1],[0,1,3,2],[2,1,3,3],[1,0,1,1]],[[0,3,2,1],[1,1,3,2],[2,3,3,0],[0,1,1,1]],[[0,2,3,1],[1,1,3,2],[2,3,3,0],[0,1,1,1]],[[0,2,2,2],[1,1,3,2],[2,3,3,0],[0,1,1,1]],[[0,2,2,1],[1,1,4,2],[2,3,3,0],[0,1,1,1]],[[0,3,2,1],[1,1,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,3,1],[1,1,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,2,2],[1,1,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,2,1],[1,1,4,2],[2,3,3,0],[0,1,2,0]],[[0,3,2,1],[1,1,3,2],[2,3,3,0],[0,2,0,1]],[[0,2,3,1],[1,1,3,2],[2,3,3,0],[0,2,0,1]],[[0,2,2,2],[1,1,3,2],[2,3,3,0],[0,2,0,1]],[[0,2,2,1],[1,1,4,2],[2,3,3,0],[0,2,0,1]],[[0,3,2,1],[1,1,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,3,1],[1,1,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,2,2],[1,1,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,2,1],[1,1,4,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,1],[0,1,3,3],[2,1,3,2],[1,0,1,1]],[[1,2,2,2],[0,1,3,2],[2,1,3,2],[1,0,1,1]],[[1,2,3,1],[0,1,3,2],[2,1,3,2],[1,0,1,1]],[[0,3,2,1],[1,1,3,2],[2,3,3,0],[1,0,1,1]],[[0,2,3,1],[1,1,3,2],[2,3,3,0],[1,0,1,1]],[[0,2,2,2],[1,1,3,2],[2,3,3,0],[1,0,1,1]],[[0,2,2,1],[1,1,4,2],[2,3,3,0],[1,0,1,1]],[[0,3,2,1],[1,1,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,3,1],[1,1,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,2,2],[1,1,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,2,1],[1,1,4,2],[2,3,3,0],[1,0,2,0]],[[0,3,2,1],[1,1,3,2],[2,3,3,0],[1,1,0,1]],[[0,2,3,1],[1,1,3,2],[2,3,3,0],[1,1,0,1]],[[0,2,2,2],[1,1,3,2],[2,3,3,0],[1,1,0,1]],[[0,2,2,1],[1,1,4,2],[2,3,3,0],[1,1,0,1]],[[0,3,2,1],[1,1,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,3,1],[1,1,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,2,2],[1,1,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,2,1],[1,1,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[0,1,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[0,1,3,3],[2,1,3,2],[0,1,2,0]],[[1,2,2,2],[0,1,3,2],[2,1,3,2],[0,1,2,0]],[[1,2,3,1],[0,1,3,2],[2,1,3,2],[0,1,2,0]],[[1,2,2,1],[0,1,3,2],[2,1,3,2],[0,1,1,2]],[[1,2,2,1],[0,1,3,2],[2,1,3,3],[0,1,1,1]],[[1,2,2,1],[0,1,3,3],[2,1,3,2],[0,1,1,1]],[[1,2,2,2],[0,1,3,2],[2,1,3,2],[0,1,1,1]],[[1,2,3,1],[0,1,3,2],[2,1,3,2],[0,1,1,1]],[[1,2,2,1],[0,1,3,2],[2,1,3,2],[0,0,2,2]],[[1,2,2,1],[0,1,3,2],[2,1,3,3],[0,0,2,1]],[[1,2,2,1],[0,1,3,3],[2,1,3,2],[0,0,2,1]],[[1,2,2,2],[0,1,3,2],[2,1,3,2],[0,0,2,1]],[[1,2,3,1],[0,1,3,2],[2,1,3,2],[0,0,2,1]],[[0,2,3,1],[1,1,3,2],[2,3,3,1],[0,0,1,1]],[[0,2,2,2],[1,1,3,2],[2,3,3,1],[0,0,1,1]],[[0,2,2,1],[1,1,3,3],[2,3,3,1],[0,0,1,1]],[[0,2,3,1],[1,1,3,2],[2,3,3,1],[0,0,2,0]],[[0,2,2,2],[1,1,3,2],[2,3,3,1],[0,0,2,0]],[[0,2,2,1],[1,1,3,3],[2,3,3,1],[0,0,2,0]],[[1,2,2,1],[0,1,3,3],[2,1,3,1],[0,2,2,0]],[[1,2,2,2],[0,1,3,2],[2,1,3,1],[0,2,2,0]],[[1,2,3,1],[0,1,3,2],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,1,3,3],[2,1,3,1],[0,2,1,1]],[[1,2,2,2],[0,1,3,2],[2,1,3,1],[0,2,1,1]],[[1,2,3,1],[0,1,3,2],[2,1,3,1],[0,2,1,1]],[[1,2,2,1],[0,1,4,2],[2,1,3,0],[1,2,2,0]],[[1,2,2,2],[0,1,3,2],[2,1,3,0],[1,2,2,0]],[[1,2,3,1],[0,1,3,2],[2,1,3,0],[1,2,2,0]],[[1,3,2,1],[0,1,3,2],[2,1,3,0],[1,2,2,0]],[[2,2,2,1],[0,1,3,2],[2,1,3,0],[1,2,2,0]],[[1,2,2,1],[0,1,3,3],[2,1,3,0],[0,2,2,1]],[[1,2,2,2],[0,1,3,2],[2,1,3,0],[0,2,2,1]],[[1,2,3,1],[0,1,3,2],[2,1,3,0],[0,2,2,1]],[[1,2,2,1],[0,1,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,1],[0,1,3,3],[2,1,2,2],[0,2,2,0]],[[1,2,2,2],[0,1,3,2],[2,1,2,2],[0,2,2,0]],[[1,2,3,1],[0,1,3,2],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[0,1,3,2],[2,1,2,2],[0,2,1,2]],[[1,2,2,1],[0,1,3,2],[2,1,2,3],[0,2,1,1]],[[1,2,2,1],[0,1,3,3],[2,1,2,2],[0,2,1,1]],[[1,2,2,2],[0,1,3,2],[2,1,2,2],[0,2,1,1]],[[1,2,3,1],[0,1,3,2],[2,1,2,2],[0,2,1,1]],[[1,2,2,1],[0,1,3,2],[2,1,1,2],[0,2,2,2]],[[1,2,2,1],[0,1,3,2],[2,1,1,2],[0,2,3,1]],[[1,2,2,1],[0,1,3,2],[2,1,1,3],[0,2,2,1]],[[1,2,2,1],[0,1,3,3],[2,1,1,2],[0,2,2,1]],[[1,2,2,2],[0,1,3,2],[2,1,1,2],[0,2,2,1]],[[1,2,3,1],[0,1,3,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,1],[0,1,3,2],[2,0,3,3],[0,2,2,0]],[[1,2,2,1],[0,1,3,3],[2,0,3,2],[0,2,2,0]],[[1,2,2,2],[0,1,3,2],[2,0,3,2],[0,2,2,0]],[[1,2,3,1],[0,1,3,2],[2,0,3,2],[0,2,2,0]],[[1,2,2,1],[0,1,3,2],[2,0,3,2],[0,2,1,2]],[[1,2,2,1],[0,1,3,2],[2,0,3,3],[0,2,1,1]],[[1,2,2,1],[0,1,3,3],[2,0,3,2],[0,2,1,1]],[[1,2,2,2],[0,1,3,2],[2,0,3,2],[0,2,1,1]],[[1,2,3,1],[0,1,3,2],[2,0,3,2],[0,2,1,1]],[[1,2,2,1],[0,1,3,2],[2,0,3,2],[0,1,2,2]],[[1,2,2,1],[0,1,3,2],[2,0,3,3],[0,1,2,1]],[[1,2,2,1],[0,1,3,3],[2,0,3,2],[0,1,2,1]],[[1,2,2,2],[0,1,3,2],[2,0,3,2],[0,1,2,1]],[[1,2,3,1],[0,1,3,2],[2,0,3,2],[0,1,2,1]],[[1,2,2,1],[0,1,3,3],[2,0,3,1],[1,2,2,0]],[[1,2,2,2],[0,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,1],[0,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,1],[0,1,3,3],[2,0,3,1],[1,2,1,1]],[[1,2,2,2],[0,1,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,3,1],[0,1,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,3,3],[2,0,3,0],[1,2,2,1]],[[1,2,2,2],[0,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,1],[0,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,1],[0,1,3,2],[2,0,2,3],[1,2,2,0]],[[1,2,2,1],[0,1,3,3],[2,0,2,2],[1,2,2,0]],[[1,2,2,2],[0,1,3,2],[2,0,2,2],[1,2,2,0]],[[1,2,3,1],[0,1,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,3,1],[1,1,3,2],[2,3,3,2],[0,0,0,1]],[[0,2,2,2],[1,1,3,2],[2,3,3,2],[0,0,0,1]],[[0,2,2,1],[1,1,3,3],[2,3,3,2],[0,0,0,1]],[[0,2,2,1],[1,1,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,1],[0,1,3,2],[2,0,2,2],[1,2,1,2]],[[1,2,2,1],[0,1,3,2],[2,0,2,3],[1,2,1,1]],[[1,2,2,1],[0,1,3,3],[2,0,2,2],[1,2,1,1]],[[1,2,2,2],[0,1,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,3,1],[0,1,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,1],[0,1,3,2],[2,0,2,2],[0,2,2,2]],[[1,2,2,1],[0,1,3,2],[2,0,2,2],[0,2,3,1]],[[1,2,2,1],[0,1,3,2],[2,0,2,3],[0,2,2,1]],[[1,2,2,1],[0,1,3,3],[2,0,2,2],[0,2,2,1]],[[1,2,2,2],[0,1,3,2],[2,0,2,2],[0,2,2,1]],[[1,2,3,1],[0,1,3,2],[2,0,2,2],[0,2,2,1]],[[1,2,2,1],[0,1,3,2],[2,0,1,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,2],[2,0,1,2],[1,2,3,1]],[[1,2,2,1],[0,1,3,2],[2,0,1,3],[1,2,2,1]],[[1,2,2,1],[0,1,3,3],[2,0,1,2],[1,2,2,1]],[[1,2,2,2],[0,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,1],[0,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,4,2],[1,3,3,0],[1,2,1,0]],[[1,2,2,2],[0,1,3,2],[1,3,3,0],[1,2,1,0]],[[1,2,3,1],[0,1,3,2],[1,3,3,0],[1,2,1,0]],[[1,3,2,1],[0,1,3,2],[1,3,3,0],[1,2,1,0]],[[2,2,2,1],[0,1,3,2],[1,3,3,0],[1,2,1,0]],[[1,2,2,1],[0,1,4,2],[1,3,3,0],[1,2,0,1]],[[1,2,2,2],[0,1,3,2],[1,3,3,0],[1,2,0,1]],[[1,2,3,1],[0,1,3,2],[1,3,3,0],[1,2,0,1]],[[1,3,2,1],[0,1,3,2],[1,3,3,0],[1,2,0,1]],[[2,2,2,1],[0,1,3,2],[1,3,3,0],[1,2,0,1]],[[1,2,2,1],[0,1,4,2],[1,3,3,0],[1,1,2,0]],[[1,2,2,2],[0,1,3,2],[1,3,3,0],[1,1,2,0]],[[1,2,3,1],[0,1,3,2],[1,3,3,0],[1,1,2,0]],[[1,3,2,1],[0,1,3,2],[1,3,3,0],[1,1,2,0]],[[2,2,2,1],[0,1,3,2],[1,3,3,0],[1,1,2,0]],[[1,2,2,1],[0,1,4,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,2],[0,1,3,2],[1,3,3,0],[1,1,1,1]],[[1,2,3,1],[0,1,3,2],[1,3,3,0],[1,1,1,1]],[[1,3,2,1],[0,1,3,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,1,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[0,1,3,3],[1,2,3,2],[1,1,0,1]],[[1,2,2,2],[0,1,3,2],[1,2,3,2],[1,1,0,1]],[[1,2,3,1],[0,1,3,2],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[0,1,3,3],[1,2,3,1],[1,2,1,0]],[[1,2,2,2],[0,1,3,2],[1,2,3,1],[1,2,1,0]],[[1,2,3,1],[0,1,3,2],[1,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,1,3,3],[1,2,3,1],[1,2,0,1]],[[1,2,2,2],[0,1,3,2],[1,2,3,1],[1,2,0,1]],[[1,2,3,1],[0,1,3,2],[1,2,3,1],[1,2,0,1]],[[1,2,2,1],[0,1,3,3],[1,2,3,1],[1,1,2,0]],[[1,2,2,2],[0,1,3,2],[1,2,3,1],[1,1,2,0]],[[1,2,3,1],[0,1,3,2],[1,2,3,1],[1,1,2,0]],[[1,2,2,1],[0,1,3,3],[1,2,3,1],[1,1,1,1]],[[0,2,3,1],[1,2,0,2],[0,3,2,2],[1,2,2,1]],[[0,2,2,2],[1,2,0,2],[0,3,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,3],[0,3,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[0,3,2,3],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[0,3,2,2],[1,3,2,1]],[[0,2,2,1],[1,2,0,2],[0,3,2,2],[1,2,3,1]],[[0,2,2,1],[1,2,0,2],[0,3,2,2],[1,2,2,2]],[[0,2,2,1],[1,2,0,2],[0,3,4,1],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[0,3,3,1],[1,3,2,1]],[[0,2,2,1],[1,2,0,2],[0,3,3,1],[1,2,3,1]],[[0,2,2,1],[1,2,0,2],[0,3,3,1],[1,2,2,2]],[[0,2,3,1],[1,2,0,2],[0,3,3,2],[1,2,1,1]],[[0,2,2,2],[1,2,0,2],[0,3,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,0,3],[0,3,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[0,3,4,2],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[0,3,3,3],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[0,3,3,2],[1,2,1,2]],[[0,2,3,1],[1,2,0,2],[0,3,3,2],[1,2,2,0]],[[0,2,2,2],[1,2,0,2],[0,3,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,3],[0,3,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[0,3,4,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[0,3,3,3],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[0,3,3,2],[1,3,2,0]],[[0,2,2,1],[1,2,0,2],[0,3,3,2],[1,2,3,0]],[[0,3,2,1],[1,2,0,2],[1,2,2,2],[1,2,2,1]],[[0,2,3,1],[1,2,0,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,2],[1,2,0,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,3],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[1,2,2,2],[2,2,2,1]],[[0,2,2,1],[1,2,0,2],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[1,2,0,2],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[1,2,0,2],[1,2,2,2],[1,2,2,2]],[[0,2,2,1],[1,2,0,2],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[1,2,3,1],[2,2,2,1]],[[0,2,2,1],[1,2,0,2],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[1,2,0,2],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[1,2,0,2],[1,2,3,1],[1,2,2,2]],[[0,3,2,1],[1,2,0,2],[1,2,3,2],[1,2,1,1]],[[0,2,3,1],[1,2,0,2],[1,2,3,2],[1,2,1,1]],[[0,2,2,2],[1,2,0,2],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,0,3],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[1,2,3,2],[1,2,1,2]],[[0,3,2,1],[1,2,0,2],[1,2,3,2],[1,2,2,0]],[[0,2,3,1],[1,2,0,2],[1,2,3,2],[1,2,2,0]],[[0,2,2,2],[1,2,0,2],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,3],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[1,2,3,2],[2,2,2,0]],[[0,2,2,1],[1,2,0,2],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[1,2,0,2],[1,2,3,2],[1,2,3,0]],[[0,3,2,1],[1,2,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,3,1],[1,2,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,2,2],[1,2,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,3],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[1,4,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,1,3],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,1,2],[2,2,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,1,2],[1,3,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,1,2],[1,2,3,1]],[[0,2,2,1],[1,2,0,2],[1,3,1,2],[1,2,2,2]],[[0,2,2,1],[1,2,0,2],[1,4,2,1],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,2,1],[2,2,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,2,1],[1,3,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,2,1],[1,2,3,1]],[[0,2,2,1],[1,2,0,2],[1,3,2,1],[1,2,2,2]],[[0,3,2,1],[1,2,0,2],[1,3,2,2],[1,1,2,1]],[[0,2,3,1],[1,2,0,2],[1,3,2,2],[1,1,2,1]],[[0,2,2,2],[1,2,0,2],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[1,2,0,3],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[1,2,0,2],[1,3,2,2],[1,1,2,2]],[[0,2,2,1],[1,2,0,2],[1,4,2,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[1,2,0,2],[1,3,2,2],[1,3,2,0]],[[0,2,2,1],[1,2,0,2],[1,3,2,2],[1,2,3,0]],[[0,2,2,1],[1,2,0,2],[1,4,3,1],[1,1,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,1],[1,1,2,2]],[[0,2,2,1],[1,2,0,2],[1,4,3,1],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[1,3,4,1],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,1],[2,2,1,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,1],[1,3,1,1]],[[0,2,3,1],[1,2,0,2],[1,3,3,2],[1,0,2,1]],[[0,2,2,2],[1,2,0,2],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[1,2,0,3],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,4,2],[1,0,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,3],[1,0,2,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,2],[1,0,2,2]],[[0,3,2,1],[1,2,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,3,1],[1,2,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,2],[1,2,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,2,0,3],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,2,0,2],[1,4,3,2],[1,1,1,1]],[[0,2,2,1],[1,2,0,2],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,2],[1,1,1,2]],[[0,3,2,1],[1,2,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,3,1],[1,2,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,2],[1,2,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,2,0,3],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,2,0,2],[1,4,3,2],[1,1,2,0]],[[0,2,2,1],[1,2,0,2],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[1,2,0,2],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[1,2,0,2],[1,3,3,2],[1,1,3,0]],[[0,3,2,1],[1,2,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,3,1],[1,2,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,2],[1,2,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,2,0,3],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,2,0,2],[1,4,3,2],[1,2,0,1]],[[0,2,2,1],[1,2,0,2],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,2],[2,2,0,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,2],[1,3,0,1]],[[0,2,2,1],[1,2,0,2],[1,3,3,2],[1,2,0,2]],[[0,3,2,1],[1,2,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,3,1],[1,2,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,2],[1,2,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,2,0,3],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,2,0,2],[1,4,3,2],[1,2,1,0]],[[0,2,2,1],[1,2,0,2],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[1,2,0,2],[1,3,3,3],[1,2,1,0]],[[0,2,2,1],[1,2,0,2],[1,3,3,2],[2,2,1,0]],[[0,2,2,1],[1,2,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,2],[0,1,3,2],[1,2,3,1],[1,1,1,1]],[[1,2,3,1],[0,1,3,2],[1,2,3,1],[1,1,1,1]],[[1,2,2,1],[0,1,3,3],[1,2,3,1],[1,0,2,1]],[[1,2,2,2],[0,1,3,2],[1,2,3,1],[1,0,2,1]],[[1,2,3,1],[0,1,3,2],[1,2,3,1],[1,0,2,1]],[[0,3,2,1],[1,2,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,3,1],[1,2,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,2],[1,2,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,3],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[3,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,1,2,3],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,1,2,2],[2,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,1,2,2],[1,3,2,1]],[[0,2,2,1],[1,2,0,2],[2,1,2,2],[1,2,3,1]],[[0,2,2,1],[1,2,0,2],[2,1,2,2],[1,2,2,2]],[[0,2,2,1],[1,2,0,2],[3,1,3,1],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,1,4,1],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,1,3,1],[1,3,2,1]],[[0,2,2,1],[1,2,0,2],[2,1,3,1],[1,2,3,1]],[[0,2,2,1],[1,2,0,2],[2,1,3,1],[1,2,2,2]],[[0,3,2,1],[1,2,0,2],[2,1,3,2],[1,2,1,1]],[[0,2,3,1],[1,2,0,2],[2,1,3,2],[1,2,1,1]],[[0,2,2,2],[1,2,0,2],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,0,3],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[2,1,4,2],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[2,1,3,3],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[2,1,3,2],[1,2,1,2]],[[0,3,2,1],[1,2,0,2],[2,1,3,2],[1,2,2,0]],[[0,2,3,1],[1,2,0,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,2],[1,2,0,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,3],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[3,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[2,1,4,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[2,1,3,3],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[2,1,3,2],[2,2,2,0]],[[0,2,2,1],[1,2,0,2],[2,1,3,2],[1,3,2,0]],[[0,2,2,1],[1,2,0,2],[2,1,3,2],[1,2,3,0]],[[0,3,2,1],[1,2,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,3,1],[1,2,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,2],[1,2,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,3],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[3,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[1,2,0,2],[2,2,1,2],[1,2,2,2]],[[0,2,2,1],[1,2,0,2],[3,2,2,1],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,2,1],[2,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,2,1],[1,3,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,2,1],[1,2,3,1]],[[0,2,2,1],[1,2,0,2],[2,2,2,1],[1,2,2,2]],[[0,3,2,1],[1,2,0,2],[2,2,2,2],[0,2,2,1]],[[0,2,3,1],[1,2,0,2],[2,2,2,2],[0,2,2,1]],[[0,2,2,2],[1,2,0,2],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[1,2,0,3],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,2,2],[0,3,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[1,2,0,2],[2,2,2,2],[0,2,2,2]],[[0,2,2,1],[1,2,0,2],[3,2,2,2],[1,2,2,0]],[[0,2,2,1],[1,2,0,2],[2,2,2,2],[2,2,2,0]],[[0,2,2,1],[1,2,0,2],[2,2,2,2],[1,3,2,0]],[[0,2,2,1],[1,2,0,2],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[1,2,0,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,3,1],[0,3,2,1]],[[0,2,2,1],[1,2,0,2],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[1,2,0,2],[2,2,3,1],[0,2,2,2]],[[0,2,2,1],[1,2,0,2],[3,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,2,0,2],[2,2,3,1],[2,2,1,1]],[[0,2,2,1],[1,2,0,2],[2,2,3,1],[1,3,1,1]],[[0,3,2,1],[1,2,0,2],[2,2,3,2],[0,2,1,1]],[[0,2,3,1],[1,2,0,2],[2,2,3,2],[0,2,1,1]],[[0,2,2,2],[1,2,0,2],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[1,2,0,3],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[1,2,0,2],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[1,2,0,2],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[1,2,0,2],[2,2,3,2],[0,2,1,2]],[[0,3,2,1],[1,2,0,2],[2,2,3,2],[0,2,2,0]],[[0,2,3,1],[1,2,0,2],[2,2,3,2],[0,2,2,0]],[[0,2,2,2],[1,2,0,2],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[1,2,0,3],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[1,2,0,2],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[1,2,0,2],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[1,2,0,2],[2,2,3,2],[0,3,2,0]],[[0,2,2,1],[1,2,0,2],[2,2,3,2],[0,2,3,0]],[[0,2,2,1],[1,2,0,2],[3,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,2,0,2],[2,2,3,2],[2,2,0,1]],[[0,2,2,1],[1,2,0,2],[2,2,3,2],[1,3,0,1]],[[0,2,2,1],[1,2,0,2],[3,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,2,0,2],[2,2,3,2],[2,2,1,0]],[[0,2,2,1],[1,2,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[0,1,4,2],[1,2,3,0],[1,2,2,0]],[[1,2,2,2],[0,1,3,2],[1,2,3,0],[1,2,2,0]],[[1,2,3,1],[0,1,3,2],[1,2,3,0],[1,2,2,0]],[[1,3,2,1],[0,1,3,2],[1,2,3,0],[1,2,2,0]],[[2,2,2,1],[0,1,3,2],[1,2,3,0],[1,2,2,0]],[[1,2,2,1],[0,1,3,3],[1,2,3,0],[1,1,2,1]],[[0,2,2,1],[1,2,0,2],[3,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,0,2],[1,3,2,1]],[[0,3,2,1],[1,2,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,3,1],[1,2,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,2],[1,2,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,2,0,3],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,2,0,2],[3,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,4,1,2],[0,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,1,3],[0,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,1,2],[0,3,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,1,2],[0,2,3,1]],[[0,2,2,1],[1,2,0,2],[2,3,1,2],[0,2,2,2]],[[0,2,2,1],[1,2,0,2],[3,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,2,0,2],[2,4,1,2],[1,1,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,1,2],[2,1,2,1]],[[0,2,2,1],[1,2,0,2],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,4,2,1],[0,2,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,2,1],[0,3,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,2,1],[0,2,3,1]],[[0,2,2,1],[1,2,0,2],[2,3,2,1],[0,2,2,2]],[[0,2,2,1],[1,2,0,2],[3,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,2,0,2],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,2,1],[2,1,2,1]],[[0,3,2,1],[1,2,0,2],[2,3,2,2],[0,1,2,1]],[[0,2,3,1],[1,2,0,2],[2,3,2,2],[0,1,2,1]],[[0,2,2,2],[1,2,0,2],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[1,2,0,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[1,2,0,2],[2,3,2,2],[0,1,2,2]],[[0,2,2,1],[1,2,0,2],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[1,2,0,2],[2,4,2,2],[0,2,2,0]],[[0,2,2,1],[1,2,0,2],[2,3,2,2],[0,3,2,0]],[[0,2,2,1],[1,2,0,2],[2,3,2,2],[0,2,3,0]],[[0,3,2,1],[1,2,0,2],[2,3,2,2],[1,0,2,1]],[[0,2,3,1],[1,2,0,2],[2,3,2,2],[1,0,2,1]],[[0,2,2,2],[1,2,0,2],[2,3,2,2],[1,0,2,1]],[[0,2,2,1],[1,2,0,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,2,3],[1,0,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,2,2],[1,0,3,1]],[[0,2,2,1],[1,2,0,2],[2,3,2,2],[1,0,2,2]],[[0,2,2,1],[1,2,0,2],[3,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,2,0,2],[2,4,2,2],[1,1,2,0]],[[0,2,2,1],[1,2,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,2],[0,1,3,2],[1,2,3,0],[1,1,2,1]],[[1,2,3,1],[0,1,3,2],[1,2,3,0],[1,1,2,1]],[[0,2,2,1],[1,2,0,2],[3,3,3,1],[0,1,2,1]],[[0,2,2,1],[1,2,0,2],[2,4,3,1],[0,1,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,1],[0,1,2,2]],[[0,2,2,1],[1,2,0,2],[3,3,3,1],[0,2,1,1]],[[0,2,2,1],[1,2,0,2],[2,4,3,1],[0,2,1,1]],[[0,2,2,1],[1,2,0,2],[2,3,4,1],[0,2,1,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,1],[0,3,1,1]],[[0,2,2,1],[1,2,0,2],[3,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,2,0,2],[2,4,3,1],[1,0,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,4,1],[1,0,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,1],[2,0,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,1],[1,0,3,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,1],[1,0,2,2]],[[0,2,2,1],[1,2,0,2],[3,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,2,0,2],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[1,2,0,2],[2,3,4,1],[1,1,1,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[0,1,3,3],[1,2,2,2],[1,2,1,0]],[[0,3,2,1],[1,2,0,2],[2,3,3,2],[0,0,2,1]],[[0,2,3,1],[1,2,0,2],[2,3,3,2],[0,0,2,1]],[[0,2,2,2],[1,2,0,2],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[1,2,0,3],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[0,0,2,2]],[[0,3,2,1],[1,2,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,3,1],[1,2,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,2],[1,2,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,2,0,3],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,2,0,2],[3,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,2,0,2],[2,4,3,2],[0,1,1,1]],[[0,2,2,1],[1,2,0,2],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[0,1,1,2]],[[0,3,2,1],[1,2,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,3,1],[1,2,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,2],[1,2,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,2,0,3],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,2,0,2],[3,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,2,0,2],[2,4,3,2],[0,1,2,0]],[[0,2,2,1],[1,2,0,2],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[1,2,0,2],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[0,1,3,0]],[[0,3,2,1],[1,2,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,3,1],[1,2,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,2],[1,2,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,2,0,3],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,2,0,2],[3,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,2,0,2],[2,4,3,2],[0,2,0,1]],[[0,2,2,1],[1,2,0,2],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[0,3,0,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[0,2,0,2]],[[0,3,2,1],[1,2,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,3,1],[1,2,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,2],[1,2,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,2,0,3],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,2,0,2],[3,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,2,0,2],[2,4,3,2],[0,2,1,0]],[[0,2,2,1],[1,2,0,2],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[1,2,0,2],[2,3,3,3],[0,2,1,0]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,2],[0,1,3,2],[1,2,2,2],[1,2,1,0]],[[1,2,3,1],[0,1,3,2],[1,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,1,3,2],[1,2,2,3],[1,2,0,1]],[[1,2,2,1],[0,1,3,3],[1,2,2,2],[1,2,0,1]],[[1,2,2,2],[0,1,3,2],[1,2,2,2],[1,2,0,1]],[[1,2,3,1],[0,1,3,2],[1,2,2,2],[1,2,0,1]],[[0,3,2,1],[1,2,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,3,1],[1,2,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,2],[1,2,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,0,3],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,0,2],[3,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,0,2],[2,4,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,0,2],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[2,0,1,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[1,0,1,2]],[[0,3,2,1],[1,2,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,3,1],[1,2,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,2],[1,2,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,2,0,3],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,2,0,2],[3,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,2,0,2],[2,4,3,2],[1,0,2,0]],[[0,2,2,1],[1,2,0,2],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[1,2,0,2],[2,3,3,3],[1,0,2,0]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[2,0,2,0]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[1,0,3,0]],[[0,3,2,1],[1,2,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,3,1],[1,2,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,2],[1,2,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,2,0,3],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,2,0,2],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,2,0,2],[2,4,3,2],[1,1,0,1]],[[0,2,2,1],[1,2,0,2],[2,3,4,2],[1,1,0,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,3],[1,1,0,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[2,1,0,1]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[1,1,0,2]],[[0,3,2,1],[1,2,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,3,1],[1,2,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,2],[1,2,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,2,0,3],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,2,0,2],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,2,0,2],[2,4,3,2],[1,1,1,0]],[[0,2,2,1],[1,2,0,2],[2,3,4,2],[1,1,1,0]],[[0,2,2,1],[1,2,0,2],[2,3,3,3],[1,1,1,0]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[0,1,3,2],[1,2,2,3],[1,1,2,0]],[[1,2,2,1],[0,1,3,3],[1,2,2,2],[1,1,2,0]],[[1,2,2,2],[0,1,3,2],[1,2,2,2],[1,1,2,0]],[[1,2,3,1],[0,1,3,2],[1,2,2,2],[1,1,2,0]],[[1,2,2,1],[0,1,3,2],[1,2,2,2],[1,1,1,2]],[[1,2,2,1],[0,1,3,2],[1,2,2,3],[1,1,1,1]],[[1,2,2,1],[0,1,3,3],[1,2,2,2],[1,1,1,1]],[[1,2,2,2],[0,1,3,2],[1,2,2,2],[1,1,1,1]],[[1,2,3,1],[0,1,3,2],[1,2,2,2],[1,1,1,1]],[[1,2,2,1],[0,1,3,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,1],[0,1,3,2],[1,2,2,3],[1,0,2,1]],[[0,2,2,1],[1,2,0,2],[3,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,2,0,2],[2,4,3,2],[1,2,0,0]],[[0,2,2,1],[1,2,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[0,1,3,3],[1,2,2,2],[1,0,2,1]],[[1,2,2,2],[0,1,3,2],[1,2,2,2],[1,0,2,1]],[[1,2,3,1],[0,1,3,2],[1,2,2,2],[1,0,2,1]],[[1,2,2,1],[0,1,3,2],[1,2,1,2],[1,1,2,2]],[[1,2,2,1],[0,1,3,2],[1,2,1,3],[1,1,2,1]],[[1,2,2,1],[0,1,3,3],[1,2,1,2],[1,1,2,1]],[[1,2,2,2],[0,1,3,2],[1,2,1,2],[1,1,2,1]],[[1,2,3,1],[0,1,3,2],[1,2,1,2],[1,1,2,1]],[[1,2,2,1],[0,1,3,2],[1,1,3,3],[1,1,2,0]],[[1,2,2,1],[0,1,3,3],[1,1,3,2],[1,1,2,0]],[[1,2,2,2],[0,1,3,2],[1,1,3,2],[1,1,2,0]],[[1,2,3,1],[0,1,3,2],[1,1,3,2],[1,1,2,0]],[[1,2,2,1],[0,1,3,2],[1,1,3,2],[1,1,1,2]],[[1,2,2,1],[0,1,3,2],[1,1,3,3],[1,1,1,1]],[[1,2,2,1],[0,1,3,3],[1,1,3,2],[1,1,1,1]],[[1,2,2,2],[0,1,3,2],[1,1,3,2],[1,1,1,1]],[[1,2,3,1],[0,1,3,2],[1,1,3,2],[1,1,1,1]],[[0,2,3,1],[1,2,1,2],[1,0,3,2],[1,2,2,1]],[[0,2,2,2],[1,2,1,2],[1,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,3],[1,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[1,0,3,3],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[1,0,3,2],[1,2,3,1]],[[0,2,2,1],[1,2,1,2],[1,0,3,2],[1,2,2,2]],[[0,3,2,1],[1,2,1,2],[1,1,2,2],[1,2,2,1]],[[0,2,3,1],[1,2,1,2],[1,1,2,2],[1,2,2,1]],[[0,2,2,2],[1,2,1,2],[1,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,3],[1,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[1,1,2,3],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[1,1,2,2],[2,2,2,1]],[[0,2,2,1],[1,2,1,2],[1,1,2,2],[1,3,2,1]],[[0,2,2,1],[1,2,1,2],[1,1,2,2],[1,2,3,1]],[[0,2,2,1],[1,2,1,2],[1,1,2,2],[1,2,2,2]],[[0,2,2,1],[1,2,1,2],[1,1,4,1],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[1,1,3,1],[2,2,2,1]],[[0,2,2,1],[1,2,1,2],[1,1,3,1],[1,3,2,1]],[[0,2,2,1],[1,2,1,2],[1,1,3,1],[1,2,3,1]],[[0,2,2,1],[1,2,1,2],[1,1,3,1],[1,2,2,2]],[[0,3,2,1],[1,2,1,2],[1,1,3,2],[1,2,1,1]],[[0,2,3,1],[1,2,1,2],[1,1,3,2],[1,2,1,1]],[[0,2,2,2],[1,2,1,2],[1,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,1,3],[1,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,1,2],[1,1,4,2],[1,2,1,1]],[[0,2,2,1],[1,2,1,2],[1,1,3,3],[1,2,1,1]],[[0,2,2,1],[1,2,1,2],[1,1,3,2],[1,2,1,2]],[[0,3,2,1],[1,2,1,2],[1,1,3,2],[1,2,2,0]],[[0,2,3,1],[1,2,1,2],[1,1,3,2],[1,2,2,0]],[[0,2,2,2],[1,2,1,2],[1,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,1,3],[1,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,1,2],[1,1,4,2],[1,2,2,0]],[[0,2,2,1],[1,2,1,2],[1,1,3,3],[1,2,2,0]],[[0,2,2,1],[1,2,1,2],[1,1,3,2],[2,2,2,0]],[[0,2,2,1],[1,2,1,2],[1,1,3,2],[1,3,2,0]],[[0,2,2,1],[1,2,1,2],[1,1,3,2],[1,2,3,0]],[[0,3,2,1],[1,2,1,2],[1,2,2,2],[1,1,2,1]],[[0,2,3,1],[1,2,1,2],[1,2,2,2],[1,1,2,1]],[[0,2,2,2],[1,2,1,2],[1,2,2,2],[1,1,2,1]],[[0,2,2,1],[1,2,1,3],[1,2,2,2],[1,1,2,1]],[[0,2,2,1],[1,2,1,2],[1,2,2,3],[1,1,2,1]],[[0,2,2,1],[1,2,1,2],[1,2,2,2],[1,1,3,1]],[[0,2,2,1],[1,2,1,2],[1,2,2,2],[1,1,2,2]],[[0,2,2,1],[1,2,1,2],[1,2,4,1],[1,1,2,1]],[[0,2,2,1],[1,2,1,2],[1,2,3,1],[1,1,3,1]],[[0,2,2,1],[1,2,1,2],[1,2,3,1],[1,1,2,2]],[[0,2,3,1],[1,2,1,2],[1,2,3,2],[1,0,2,1]],[[0,2,2,2],[1,2,1,2],[1,2,3,2],[1,0,2,1]],[[0,2,2,1],[1,2,1,3],[1,2,3,2],[1,0,2,1]],[[0,2,2,1],[1,2,1,2],[1,2,4,2],[1,0,2,1]],[[0,2,2,1],[1,2,1,2],[1,2,3,3],[1,0,2,1]],[[0,2,2,1],[1,2,1,2],[1,2,3,2],[1,0,2,2]],[[0,3,2,1],[1,2,1,2],[1,2,3,2],[1,1,1,1]],[[0,2,3,1],[1,2,1,2],[1,2,3,2],[1,1,1,1]],[[0,2,2,2],[1,2,1,2],[1,2,3,2],[1,1,1,1]],[[0,2,2,1],[1,2,1,3],[1,2,3,2],[1,1,1,1]],[[0,2,2,1],[1,2,1,2],[1,2,4,2],[1,1,1,1]],[[0,2,2,1],[1,2,1,2],[1,2,3,3],[1,1,1,1]],[[0,2,2,1],[1,2,1,2],[1,2,3,2],[1,1,1,2]],[[0,3,2,1],[1,2,1,2],[1,2,3,2],[1,1,2,0]],[[0,2,3,1],[1,2,1,2],[1,2,3,2],[1,1,2,0]],[[0,2,2,2],[1,2,1,2],[1,2,3,2],[1,1,2,0]],[[0,2,2,1],[1,2,1,3],[1,2,3,2],[1,1,2,0]],[[0,2,2,1],[1,2,1,2],[1,2,4,2],[1,1,2,0]],[[0,2,2,1],[1,2,1,2],[1,2,3,3],[1,1,2,0]],[[0,2,2,1],[1,2,1,2],[1,2,3,2],[1,1,3,0]],[[0,3,2,1],[1,2,1,2],[1,2,3,2],[1,2,0,1]],[[0,2,3,1],[1,2,1,2],[1,2,3,2],[1,2,0,1]],[[0,2,2,2],[1,2,1,2],[1,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,2,1,3],[1,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,2,1,2],[1,2,4,2],[1,2,0,1]],[[0,2,2,1],[1,2,1,2],[1,2,3,3],[1,2,0,1]],[[0,2,2,1],[1,2,1,2],[1,2,3,2],[1,2,0,2]],[[0,3,2,1],[1,2,1,2],[1,2,3,2],[1,2,1,0]],[[0,2,3,1],[1,2,1,2],[1,2,3,2],[1,2,1,0]],[[0,2,2,2],[1,2,1,2],[1,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,2,1,3],[1,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,2,1,2],[1,2,4,2],[1,2,1,0]],[[0,2,2,1],[1,2,1,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[0,1,3,2],[1,1,3,2],[1,0,2,2]],[[1,2,2,1],[0,1,3,2],[1,1,3,3],[1,0,2,1]],[[1,2,2,1],[0,1,3,3],[1,1,3,2],[1,0,2,1]],[[1,2,2,2],[0,1,3,2],[1,1,3,2],[1,0,2,1]],[[1,2,3,1],[0,1,3,2],[1,1,3,2],[1,0,2,1]],[[0,3,2,1],[1,2,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,3,1],[1,2,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,2],[1,2,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,3],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[1,4,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[1,3,0,3],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[1,3,0,2],[2,2,2,1]],[[0,2,2,1],[1,2,1,2],[1,3,0,2],[1,3,2,1]],[[0,2,2,1],[1,2,1,2],[1,3,0,2],[1,2,3,1]],[[0,2,2,1],[1,2,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,3],[1,1,3,1],[1,2,2,0]],[[1,2,2,2],[0,1,3,2],[1,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,1,3,2],[1,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,1,3,3],[1,1,3,1],[1,2,1,1]],[[1,2,2,2],[0,1,3,2],[1,1,3,1],[1,2,1,1]],[[1,2,3,1],[0,1,3,2],[1,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,3,3],[1,1,3,0],[1,2,2,1]],[[1,2,2,2],[0,1,3,2],[1,1,3,0],[1,2,2,1]],[[1,2,3,1],[0,1,3,2],[1,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,1,3,2],[1,1,2,3],[1,2,2,0]],[[1,2,2,1],[0,1,3,3],[1,1,2,2],[1,2,2,0]],[[1,2,2,2],[0,1,3,2],[1,1,2,2],[1,2,2,0]],[[1,2,3,1],[0,1,3,2],[1,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,1,3,2],[1,1,2,2],[1,2,1,2]],[[1,2,2,1],[0,1,3,2],[1,1,2,3],[1,2,1,1]],[[1,2,2,1],[0,1,3,3],[1,1,2,2],[1,2,1,1]],[[1,2,2,2],[0,1,3,2],[1,1,2,2],[1,2,1,1]],[[1,2,3,1],[0,1,3,2],[1,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,1,3,2],[1,1,1,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,2],[1,1,1,2],[1,2,3,1]],[[1,2,2,1],[0,1,3,2],[1,1,1,3],[1,2,2,1]],[[1,2,2,1],[0,1,3,3],[1,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,1,3,2],[1,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,1,3,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,3,2],[1,0,3,3],[1,2,2,0]],[[1,2,2,1],[0,1,3,3],[1,0,3,2],[1,2,2,0]],[[1,2,2,2],[0,1,3,2],[1,0,3,2],[1,2,2,0]],[[1,2,3,1],[0,1,3,2],[1,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,1,3,2],[1,0,3,2],[1,2,1,2]],[[1,2,2,1],[0,1,3,2],[1,0,3,3],[1,2,1,1]],[[1,2,2,1],[0,1,3,3],[1,0,3,2],[1,2,1,1]],[[1,2,2,2],[0,1,3,2],[1,0,3,2],[1,2,1,1]],[[1,2,3,1],[0,1,3,2],[1,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,1,3,2],[1,0,3,2],[1,1,2,2]],[[1,2,2,1],[0,1,3,2],[1,0,3,3],[1,1,2,1]],[[1,2,2,1],[0,1,3,3],[1,0,3,2],[1,1,2,1]],[[1,2,2,2],[0,1,3,2],[1,0,3,2],[1,1,2,1]],[[1,2,3,1],[0,1,3,2],[1,0,3,2],[1,1,2,1]],[[1,2,2,1],[0,1,3,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,1],[0,1,3,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,1],[0,1,3,3],[1,0,3,2],[0,2,2,1]],[[0,3,2,1],[1,2,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,3,1],[1,2,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,2],[1,2,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,3],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[3,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,0,2,3],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,0,2,2],[2,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,0,2,2],[1,3,2,1]],[[0,2,2,1],[1,2,1,2],[2,0,2,2],[1,2,3,1]],[[0,2,2,1],[1,2,1,2],[2,0,2,2],[1,2,2,2]],[[0,2,2,1],[1,2,1,2],[3,0,3,1],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,0,4,1],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,0,3,1],[2,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,0,3,1],[1,3,2,1]],[[0,2,2,1],[1,2,1,2],[2,0,3,1],[1,2,3,1]],[[0,2,2,1],[1,2,1,2],[2,0,3,1],[1,2,2,2]],[[0,2,3,1],[1,2,1,2],[2,0,3,2],[0,2,2,1]],[[0,2,2,2],[1,2,1,2],[2,0,3,2],[0,2,2,1]],[[0,2,2,1],[1,2,1,3],[2,0,3,2],[0,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,0,3,3],[0,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,0,3,2],[0,2,3,1]],[[0,2,2,1],[1,2,1,2],[2,0,3,2],[0,2,2,2]],[[0,3,2,1],[1,2,1,2],[2,0,3,2],[1,2,1,1]],[[0,2,3,1],[1,2,1,2],[2,0,3,2],[1,2,1,1]],[[0,2,2,2],[1,2,1,2],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,1,3],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,1,2],[2,0,4,2],[1,2,1,1]],[[0,2,2,1],[1,2,1,2],[2,0,3,3],[1,2,1,1]],[[0,2,2,1],[1,2,1,2],[2,0,3,2],[1,2,1,2]],[[0,3,2,1],[1,2,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,3,1],[1,2,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,2],[1,2,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,1,3],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,1,2],[3,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,1,2],[2,0,4,2],[1,2,2,0]],[[0,2,2,1],[1,2,1,2],[2,0,3,3],[1,2,2,0]],[[0,2,2,1],[1,2,1,2],[2,0,3,2],[2,2,2,0]],[[0,2,2,1],[1,2,1,2],[2,0,3,2],[1,3,2,0]],[[0,2,2,1],[1,2,1,2],[2,0,3,2],[1,2,3,0]],[[0,3,2,1],[1,2,1,2],[2,1,2,2],[0,2,2,1]],[[0,2,3,1],[1,2,1,2],[2,1,2,2],[0,2,2,1]],[[0,2,2,2],[1,2,1,2],[2,1,2,2],[0,2,2,1]],[[0,2,2,1],[1,2,1,3],[2,1,2,2],[0,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,1,2,3],[0,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,1,2,2],[0,3,2,1]],[[0,2,2,1],[1,2,1,2],[2,1,2,2],[0,2,3,1]],[[0,2,2,1],[1,2,1,2],[2,1,2,2],[0,2,2,2]],[[0,2,2,1],[1,2,1,2],[2,1,4,1],[0,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,1,3,1],[0,3,2,1]],[[0,2,2,1],[1,2,1,2],[2,1,3,1],[0,2,3,1]],[[0,2,2,1],[1,2,1,2],[2,1,3,1],[0,2,2,2]],[[0,3,2,1],[1,2,1,2],[2,1,3,2],[0,2,1,1]],[[0,2,3,1],[1,2,1,2],[2,1,3,2],[0,2,1,1]],[[0,2,2,2],[1,2,1,2],[2,1,3,2],[0,2,1,1]],[[0,2,2,1],[1,2,1,3],[2,1,3,2],[0,2,1,1]],[[0,2,2,1],[1,2,1,2],[2,1,4,2],[0,2,1,1]],[[0,2,2,1],[1,2,1,2],[2,1,3,3],[0,2,1,1]],[[0,2,2,1],[1,2,1,2],[2,1,3,2],[0,2,1,2]],[[0,3,2,1],[1,2,1,2],[2,1,3,2],[0,2,2,0]],[[0,2,3,1],[1,2,1,2],[2,1,3,2],[0,2,2,0]],[[0,2,2,2],[1,2,1,2],[2,1,3,2],[0,2,2,0]],[[0,2,2,1],[1,2,1,3],[2,1,3,2],[0,2,2,0]],[[0,2,2,1],[1,2,1,2],[2,1,4,2],[0,2,2,0]],[[0,2,2,1],[1,2,1,2],[2,1,3,3],[0,2,2,0]],[[0,2,2,1],[1,2,1,2],[2,1,3,2],[0,3,2,0]],[[0,2,2,1],[1,2,1,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,2],[0,1,3,2],[1,0,3,2],[0,2,2,1]],[[1,2,3,1],[0,1,3,2],[1,0,3,2],[0,2,2,1]],[[1,2,2,1],[0,1,3,2],[1,0,2,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,2],[1,0,2,2],[1,2,3,1]],[[1,2,2,1],[0,1,3,2],[1,0,2,3],[1,2,2,1]],[[1,2,2,1],[0,1,3,3],[1,0,2,2],[1,2,2,1]],[[1,2,2,2],[0,1,3,2],[1,0,2,2],[1,2,2,1]],[[1,2,3,1],[0,1,3,2],[1,0,2,2],[1,2,2,1]],[[0,3,2,1],[1,2,1,2],[2,2,0,2],[1,2,2,1]],[[0,2,3,1],[1,2,1,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,2],[1,2,1,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,3],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[3,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,0,3],[1,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,0,2],[2,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,0,2],[1,3,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,0,2],[1,2,3,1]],[[0,2,2,1],[1,2,1,2],[2,2,0,2],[1,2,2,2]],[[0,3,2,1],[1,2,1,2],[2,2,2,2],[0,1,2,1]],[[0,2,3,1],[1,2,1,2],[2,2,2,2],[0,1,2,1]],[[0,2,2,2],[1,2,1,2],[2,2,2,2],[0,1,2,1]],[[0,2,2,1],[1,2,1,3],[2,2,2,2],[0,1,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,2,3],[0,1,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,2,2],[0,1,3,1]],[[0,2,2,1],[1,2,1,2],[2,2,2,2],[0,1,2,2]],[[0,3,2,1],[1,2,1,2],[2,2,2,2],[1,0,2,1]],[[0,2,3,1],[1,2,1,2],[2,2,2,2],[1,0,2,1]],[[0,2,2,2],[1,2,1,2],[2,2,2,2],[1,0,2,1]],[[0,2,2,1],[1,2,1,3],[2,2,2,2],[1,0,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,2,3],[1,0,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,2,2],[1,0,3,1]],[[0,2,2,1],[1,2,1,2],[2,2,2,2],[1,0,2,2]],[[0,2,2,1],[1,2,1,2],[2,2,4,1],[0,1,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,1],[0,1,3,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,1],[0,1,2,2]],[[0,2,2,1],[1,2,1,2],[2,2,4,1],[1,0,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,1],[1,0,3,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,1],[1,0,2,2]],[[0,3,2,1],[1,2,1,2],[2,2,3,2],[0,0,2,1]],[[0,2,3,1],[1,2,1,2],[2,2,3,2],[0,0,2,1]],[[0,2,2,2],[1,2,1,2],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[1,2,1,3],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,4,2],[0,0,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,3],[0,0,2,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,2],[0,0,2,2]],[[0,3,2,1],[1,2,1,2],[2,2,3,2],[0,1,1,1]],[[0,2,3,1],[1,2,1,2],[2,2,3,2],[0,1,1,1]],[[0,2,2,2],[1,2,1,2],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[1,2,1,3],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[1,2,1,2],[2,2,4,2],[0,1,1,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,3],[0,1,1,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,2],[0,1,1,2]],[[0,3,2,1],[1,2,1,2],[2,2,3,2],[0,1,2,0]],[[0,2,3,1],[1,2,1,2],[2,2,3,2],[0,1,2,0]],[[0,2,2,2],[1,2,1,2],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[1,2,1,3],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[1,2,1,2],[2,2,4,2],[0,1,2,0]],[[0,2,2,1],[1,2,1,2],[2,2,3,3],[0,1,2,0]],[[0,2,2,1],[1,2,1,2],[2,2,3,2],[0,1,3,0]],[[0,3,2,1],[1,2,1,2],[2,2,3,2],[0,2,0,1]],[[0,2,3,1],[1,2,1,2],[2,2,3,2],[0,2,0,1]],[[0,2,2,2],[1,2,1,2],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[1,2,1,3],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[1,2,1,2],[2,2,4,2],[0,2,0,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,3],[0,2,0,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,2],[0,2,0,2]],[[0,3,2,1],[1,2,1,2],[2,2,3,2],[0,2,1,0]],[[0,2,3,1],[1,2,1,2],[2,2,3,2],[0,2,1,0]],[[0,2,2,2],[1,2,1,2],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[1,2,1,3],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[1,2,1,2],[2,2,4,2],[0,2,1,0]],[[0,2,2,1],[1,2,1,2],[2,2,3,3],[0,2,1,0]],[[0,3,2,1],[1,2,1,2],[2,2,3,2],[1,0,1,1]],[[0,2,3,1],[1,2,1,2],[2,2,3,2],[1,0,1,1]],[[0,2,2,2],[1,2,1,2],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,1,3],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,1,2],[2,2,4,2],[1,0,1,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,3],[1,0,1,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,2],[1,0,1,2]],[[0,3,2,1],[1,2,1,2],[2,2,3,2],[1,0,2,0]],[[0,2,3,1],[1,2,1,2],[2,2,3,2],[1,0,2,0]],[[0,2,2,2],[1,2,1,2],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[1,2,1,3],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[1,2,1,2],[2,2,4,2],[1,0,2,0]],[[0,2,2,1],[1,2,1,2],[2,2,3,3],[1,0,2,0]],[[0,2,2,1],[1,2,1,2],[2,2,3,2],[1,0,3,0]],[[0,3,2,1],[1,2,1,2],[2,2,3,2],[1,1,0,1]],[[0,2,3,1],[1,2,1,2],[2,2,3,2],[1,1,0,1]],[[0,2,2,2],[1,2,1,2],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,2,1,3],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,2,1,2],[2,2,4,2],[1,1,0,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,3],[1,1,0,1]],[[0,2,2,1],[1,2,1,2],[2,2,3,2],[1,1,0,2]],[[0,3,2,1],[1,2,1,2],[2,2,3,2],[1,1,1,0]],[[0,2,3,1],[1,2,1,2],[2,2,3,2],[1,1,1,0]],[[0,2,2,2],[1,2,1,2],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[1,2,1,3],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[1,2,1,2],[2,2,4,2],[1,1,1,0]],[[0,2,2,1],[1,2,1,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[0,1,3,2],[0,3,3,3],[0,1,2,0]],[[1,2,2,1],[0,1,3,3],[0,3,3,2],[0,1,2,0]],[[1,2,2,2],[0,1,3,2],[0,3,3,2],[0,1,2,0]],[[1,2,3,1],[0,1,3,2],[0,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,1,3,2],[0,3,3,2],[0,1,1,2]],[[1,2,2,1],[0,1,3,2],[0,3,3,3],[0,1,1,1]],[[1,2,2,1],[0,1,3,3],[0,3,3,2],[0,1,1,1]],[[1,2,2,2],[0,1,3,2],[0,3,3,2],[0,1,1,1]],[[1,2,3,1],[0,1,3,2],[0,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,1,3,2],[0,3,3,2],[0,0,2,2]],[[1,2,2,1],[0,1,3,2],[0,3,3,3],[0,0,2,1]],[[1,2,2,1],[0,1,3,3],[0,3,3,2],[0,0,2,1]],[[1,2,2,2],[0,1,3,2],[0,3,3,2],[0,0,2,1]],[[1,2,3,1],[0,1,3,2],[0,3,3,2],[0,0,2,1]],[[1,2,2,1],[0,1,4,2],[0,3,3,0],[1,2,2,0]],[[1,2,2,2],[0,1,3,2],[0,3,3,0],[1,2,2,0]],[[0,3,2,1],[1,2,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,3,1],[1,2,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,2],[1,2,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,2,1,3],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,2,1,2],[3,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,4,0,2],[0,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,3,0,3],[0,2,2,1]],[[0,2,2,1],[1,2,1,2],[2,3,0,2],[0,3,2,1]],[[0,2,2,1],[1,2,1,2],[2,3,0,2],[0,2,3,1]],[[0,2,2,1],[1,2,1,2],[2,3,0,2],[0,2,2,2]],[[0,2,2,1],[1,2,1,2],[3,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,2,1,2],[2,4,0,2],[1,1,2,1]],[[0,2,2,1],[1,2,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,3,1],[0,1,3,2],[0,3,3,0],[1,2,2,0]],[[1,3,2,1],[0,1,3,2],[0,3,3,0],[1,2,2,0]],[[0,3,2,1],[1,2,1,2],[2,3,3,2],[0,0,1,1]],[[0,2,3,1],[1,2,1,2],[2,3,3,2],[0,0,1,1]],[[0,2,2,2],[1,2,1,2],[2,3,3,2],[0,0,1,1]],[[0,2,2,1],[1,2,1,3],[2,3,3,2],[0,0,1,1]],[[0,2,2,1],[1,2,1,2],[2,3,4,2],[0,0,1,1]],[[0,2,2,1],[1,2,1,2],[2,3,3,3],[0,0,1,1]],[[0,2,2,1],[1,2,1,2],[2,3,3,2],[0,0,1,2]],[[0,3,2,1],[1,2,1,2],[2,3,3,2],[0,0,2,0]],[[0,2,3,1],[1,2,1,2],[2,3,3,2],[0,0,2,0]],[[0,2,2,2],[1,2,1,2],[2,3,3,2],[0,0,2,0]],[[0,2,2,1],[1,2,1,3],[2,3,3,2],[0,0,2,0]],[[0,2,2,1],[1,2,1,2],[2,3,4,2],[0,0,2,0]],[[0,2,2,1],[1,2,1,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[0,1,4,1],[2,3,3,2],[1,0,0,1]],[[1,2,2,2],[0,1,3,1],[2,3,3,2],[1,0,0,1]],[[1,2,3,1],[0,1,3,1],[2,3,3,2],[1,0,0,1]],[[1,3,2,1],[0,1,3,1],[2,3,3,2],[1,0,0,1]],[[2,2,2,1],[0,1,3,1],[2,3,3,2],[1,0,0,1]],[[1,2,2,1],[0,1,4,1],[2,3,3,2],[0,1,0,1]],[[1,2,2,2],[0,1,3,1],[2,3,3,2],[0,1,0,1]],[[1,2,3,1],[0,1,3,1],[2,3,3,2],[0,1,0,1]],[[1,3,2,1],[0,1,3,1],[2,3,3,2],[0,1,0,1]],[[2,2,2,1],[0,1,3,1],[2,3,3,2],[0,1,0,1]],[[1,2,2,1],[0,1,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,1],[0,1,3,1],[2,4,3,1],[1,2,0,0]],[[1,2,2,1],[0,1,3,1],[3,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,1,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,1],[0,1,3,1],[2,3,4,1],[1,1,1,0]],[[1,2,2,1],[0,1,3,1],[2,4,3,1],[1,1,1,0]],[[1,2,2,1],[0,1,3,1],[3,3,3,1],[1,1,1,0]],[[1,2,2,1],[0,1,4,1],[2,3,3,1],[1,1,1,0]],[[1,2,2,2],[0,1,3,1],[2,3,3,1],[1,1,1,0]],[[1,2,3,1],[0,1,3,1],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[0,1,3,1],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[0,1,3,1],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[0,1,3,1],[2,3,3,1],[2,1,0,1]],[[1,2,2,1],[0,1,3,1],[2,3,4,1],[1,1,0,1]],[[1,2,2,1],[0,1,3,1],[2,4,3,1],[1,1,0,1]],[[1,2,2,1],[0,1,3,1],[3,3,3,1],[1,1,0,1]],[[1,2,2,1],[0,1,4,1],[2,3,3,1],[1,1,0,1]],[[1,2,2,2],[0,1,3,1],[2,3,3,1],[1,1,0,1]],[[1,2,3,1],[0,1,3,1],[2,3,3,1],[1,1,0,1]],[[1,3,2,1],[0,1,3,1],[2,3,3,1],[1,1,0,1]],[[2,2,2,1],[0,1,3,1],[2,3,3,1],[1,1,0,1]],[[1,2,2,1],[0,1,3,1],[2,3,3,1],[1,0,3,0]],[[1,2,2,1],[0,1,3,1],[2,3,3,1],[2,0,2,0]],[[1,2,2,1],[0,1,3,1],[2,3,4,1],[1,0,2,0]],[[1,2,2,1],[0,1,3,1],[2,4,3,1],[1,0,2,0]],[[1,2,2,1],[0,1,3,1],[3,3,3,1],[1,0,2,0]],[[1,2,2,1],[0,1,4,1],[2,3,3,1],[1,0,2,0]],[[1,2,2,2],[0,1,3,1],[2,3,3,1],[1,0,2,0]],[[1,2,3,1],[0,1,3,1],[2,3,3,1],[1,0,2,0]],[[1,3,2,1],[0,1,3,1],[2,3,3,1],[1,0,2,0]],[[2,2,2,1],[0,1,3,1],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[0,1,3,1],[2,3,3,1],[2,0,1,1]],[[1,2,2,1],[0,1,3,1],[2,3,4,1],[1,0,1,1]],[[1,2,2,1],[0,1,3,1],[2,4,3,1],[1,0,1,1]],[[1,2,2,1],[0,1,3,1],[3,3,3,1],[1,0,1,1]],[[1,2,2,1],[0,1,4,1],[2,3,3,1],[1,0,1,1]],[[1,2,2,2],[0,1,3,1],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[0,1,3,1],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[0,1,3,1],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[0,1,3,1],[2,3,3,1],[1,0,1,1]],[[0,2,3,1],[1,2,2,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,2],[1,2,2,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,3],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[1,0,2,3],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[1,0,2,2],[1,2,3,1]],[[0,2,2,1],[1,2,2,2],[1,0,2,2],[1,2,2,2]],[[0,2,3,1],[1,2,2,2],[1,0,3,2],[1,1,2,1]],[[0,2,2,2],[1,2,2,2],[1,0,3,2],[1,1,2,1]],[[0,2,2,1],[1,2,2,3],[1,0,3,2],[1,1,2,1]],[[0,2,2,1],[1,2,2,2],[1,0,3,3],[1,1,2,1]],[[0,2,2,1],[1,2,2,2],[1,0,3,2],[1,1,2,2]],[[0,2,3,1],[1,2,2,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,2],[1,2,2,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,2,3],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,2,2],[1,0,3,3],[1,2,1,1]],[[0,2,2,1],[1,2,2,2],[1,0,3,2],[1,2,1,2]],[[0,2,3,1],[1,2,2,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,2],[1,2,2,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,2,3],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,2,2],[1,0,3,3],[1,2,2,0]],[[0,3,2,1],[1,2,2,2],[1,1,1,2],[1,2,2,1]],[[0,2,3,1],[1,2,2,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,2],[1,2,2,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,3],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[1,1,1,3],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[1,1,1,2],[2,2,2,1]],[[0,2,2,1],[1,2,2,2],[1,1,1,2],[1,3,2,1]],[[0,2,2,1],[1,2,2,2],[1,1,1,2],[1,2,3,1]],[[0,2,2,1],[1,2,2,2],[1,1,1,2],[1,2,2,2]],[[0,3,2,1],[1,2,2,2],[1,1,2,2],[1,2,1,1]],[[0,2,3,1],[1,2,2,2],[1,1,2,2],[1,2,1,1]],[[0,2,2,2],[1,2,2,2],[1,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,2,2,3],[1,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,2,2,2],[1,1,2,3],[1,2,1,1]],[[0,2,2,1],[1,2,2,2],[1,1,2,2],[1,2,1,2]],[[0,3,2,1],[1,2,2,2],[1,1,2,2],[1,2,2,0]],[[0,2,3,1],[1,2,2,2],[1,1,2,2],[1,2,2,0]],[[0,2,2,2],[1,2,2,2],[1,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,2,2,3],[1,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,2,2,2],[1,1,2,3],[1,2,2,0]],[[0,3,2,1],[1,2,2,2],[1,1,3,0],[1,2,2,1]],[[0,2,3,1],[1,2,2,2],[1,1,3,0],[1,2,2,1]],[[0,2,2,2],[1,2,2,2],[1,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,2,2,3],[1,1,3,0],[1,2,2,1]],[[0,3,2,1],[1,2,2,2],[1,1,3,1],[1,2,1,1]],[[0,2,3,1],[1,2,2,2],[1,1,3,1],[1,2,1,1]],[[0,2,2,2],[1,2,2,2],[1,1,3,1],[1,2,1,1]],[[0,2,2,1],[1,2,2,3],[1,1,3,1],[1,2,1,1]],[[0,3,2,1],[1,2,2,2],[1,1,3,1],[1,2,2,0]],[[0,2,3,1],[1,2,2,2],[1,1,3,1],[1,2,2,0]],[[0,2,2,2],[1,2,2,2],[1,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,2,2,3],[1,1,3,1],[1,2,2,0]],[[0,2,3,1],[1,2,2,2],[1,1,3,2],[1,0,2,1]],[[0,2,2,2],[1,2,2,2],[1,1,3,2],[1,0,2,1]],[[0,2,2,1],[1,2,2,3],[1,1,3,2],[1,0,2,1]],[[0,2,2,1],[1,2,2,2],[1,1,3,3],[1,0,2,1]],[[0,2,2,1],[1,2,2,2],[1,1,3,2],[1,0,2,2]],[[0,2,3,1],[1,2,2,2],[1,1,3,2],[1,1,1,1]],[[0,2,2,2],[1,2,2,2],[1,1,3,2],[1,1,1,1]],[[0,2,2,1],[1,2,2,3],[1,1,3,2],[1,1,1,1]],[[0,2,2,1],[1,2,2,2],[1,1,3,3],[1,1,1,1]],[[0,2,2,1],[1,2,2,2],[1,1,3,2],[1,1,1,2]],[[0,2,3,1],[1,2,2,2],[1,1,3,2],[1,1,2,0]],[[0,2,2,2],[1,2,2,2],[1,1,3,2],[1,1,2,0]],[[0,2,2,1],[1,2,2,3],[1,1,3,2],[1,1,2,0]],[[0,2,2,1],[1,2,2,2],[1,1,3,3],[1,1,2,0]],[[1,2,2,1],[0,1,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,1],[0,1,3,1],[2,3,4,1],[0,2,1,0]],[[0,3,2,1],[1,2,2,2],[1,2,0,2],[1,2,2,1]],[[0,2,3,1],[1,2,2,2],[1,2,0,2],[1,2,2,1]],[[0,2,2,2],[1,2,2,2],[1,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,3],[1,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[1,2,0,3],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[1,2,0,2],[2,2,2,1]],[[0,2,2,1],[1,2,2,2],[1,2,0,2],[1,3,2,1]],[[0,2,2,1],[1,2,2,2],[1,2,0,2],[1,2,3,1]],[[0,2,2,1],[1,2,2,2],[1,2,0,2],[1,2,2,2]],[[0,3,2,1],[1,2,2,2],[1,2,1,2],[1,1,2,1]],[[0,2,3,1],[1,2,2,2],[1,2,1,2],[1,1,2,1]],[[0,2,2,2],[1,2,2,2],[1,2,1,2],[1,1,2,1]],[[0,2,2,1],[1,2,2,3],[1,2,1,2],[1,1,2,1]],[[0,2,2,1],[1,2,2,2],[1,2,1,3],[1,1,2,1]],[[0,2,2,1],[1,2,2,2],[1,2,1,2],[1,1,3,1]],[[0,2,2,1],[1,2,2,2],[1,2,1,2],[1,1,2,2]],[[0,2,3,1],[1,2,2,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,2],[1,2,2,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,1],[1,2,2,3],[1,2,2,2],[1,0,2,1]],[[0,2,2,1],[1,2,2,2],[1,2,2,3],[1,0,2,1]],[[0,2,2,1],[1,2,2,2],[1,2,2,2],[1,0,2,2]],[[0,3,2,1],[1,2,2,2],[1,2,2,2],[1,1,1,1]],[[0,2,3,1],[1,2,2,2],[1,2,2,2],[1,1,1,1]],[[0,2,2,2],[1,2,2,2],[1,2,2,2],[1,1,1,1]],[[0,2,2,1],[1,2,2,3],[1,2,2,2],[1,1,1,1]],[[0,2,2,1],[1,2,2,2],[1,2,2,3],[1,1,1,1]],[[0,2,2,1],[1,2,2,2],[1,2,2,2],[1,1,1,2]],[[0,3,2,1],[1,2,2,2],[1,2,2,2],[1,1,2,0]],[[0,2,3,1],[1,2,2,2],[1,2,2,2],[1,1,2,0]],[[0,2,2,2],[1,2,2,2],[1,2,2,2],[1,1,2,0]],[[0,2,2,1],[1,2,2,3],[1,2,2,2],[1,1,2,0]],[[0,2,2,1],[1,2,2,2],[1,2,2,3],[1,1,2,0]],[[0,3,2,1],[1,2,2,2],[1,2,2,2],[1,2,0,1]],[[0,2,3,1],[1,2,2,2],[1,2,2,2],[1,2,0,1]],[[0,2,2,2],[1,2,2,2],[1,2,2,2],[1,2,0,1]],[[0,2,2,1],[1,2,2,3],[1,2,2,2],[1,2,0,1]],[[0,2,2,1],[1,2,2,2],[1,2,2,3],[1,2,0,1]],[[0,2,2,1],[1,2,2,2],[1,2,2,2],[1,2,0,2]],[[0,3,2,1],[1,2,2,2],[1,2,2,2],[1,2,1,0]],[[0,2,3,1],[1,2,2,2],[1,2,2,2],[1,2,1,0]],[[0,2,2,2],[1,2,2,2],[1,2,2,2],[1,2,1,0]],[[0,2,2,1],[1,2,2,3],[1,2,2,2],[1,2,1,0]],[[0,2,2,1],[1,2,2,2],[1,2,2,3],[1,2,1,0]],[[1,2,2,1],[0,1,3,1],[2,4,3,1],[0,2,1,0]],[[1,2,2,1],[0,1,3,1],[3,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,1,4,1],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[0,1,3,1],[2,3,3,1],[0,2,1,0]],[[1,2,3,1],[0,1,3,1],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[0,1,3,1],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[0,1,3,1],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,1,3,1],[2,3,3,1],[0,3,0,1]],[[1,2,2,1],[0,1,3,1],[2,3,4,1],[0,2,0,1]],[[0,3,2,1],[1,2,2,2],[1,2,3,0],[1,1,2,1]],[[0,2,3,1],[1,2,2,2],[1,2,3,0],[1,1,2,1]],[[0,2,2,2],[1,2,2,2],[1,2,3,0],[1,1,2,1]],[[0,2,2,1],[1,2,2,3],[1,2,3,0],[1,1,2,1]],[[0,3,2,1],[1,2,2,2],[1,2,3,0],[1,2,1,1]],[[0,2,3,1],[1,2,2,2],[1,2,3,0],[1,2,1,1]],[[0,2,2,2],[1,2,2,2],[1,2,3,0],[1,2,1,1]],[[0,2,2,1],[1,2,2,3],[1,2,3,0],[1,2,1,1]],[[0,2,3,1],[1,2,2,2],[1,2,3,1],[1,0,2,1]],[[0,2,2,2],[1,2,2,2],[1,2,3,1],[1,0,2,1]],[[0,2,2,1],[1,2,2,3],[1,2,3,1],[1,0,2,1]],[[0,3,2,1],[1,2,2,2],[1,2,3,1],[1,1,1,1]],[[0,2,3,1],[1,2,2,2],[1,2,3,1],[1,1,1,1]],[[0,2,2,2],[1,2,2,2],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[1,2,2,3],[1,2,3,1],[1,1,1,1]],[[0,3,2,1],[1,2,2,2],[1,2,3,1],[1,1,2,0]],[[0,2,3,1],[1,2,2,2],[1,2,3,1],[1,1,2,0]],[[0,2,2,2],[1,2,2,2],[1,2,3,1],[1,1,2,0]],[[0,2,2,1],[1,2,2,3],[1,2,3,1],[1,1,2,0]],[[0,3,2,1],[1,2,2,2],[1,2,3,1],[1,2,0,1]],[[0,2,3,1],[1,2,2,2],[1,2,3,1],[1,2,0,1]],[[0,2,2,2],[1,2,2,2],[1,2,3,1],[1,2,0,1]],[[0,2,2,1],[1,2,2,3],[1,2,3,1],[1,2,0,1]],[[0,3,2,1],[1,2,2,2],[1,2,3,1],[1,2,1,0]],[[0,2,3,1],[1,2,2,2],[1,2,3,1],[1,2,1,0]],[[0,2,2,2],[1,2,2,2],[1,2,3,1],[1,2,1,0]],[[0,2,2,1],[1,2,2,3],[1,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,1,3,1],[2,4,3,1],[0,2,0,1]],[[1,2,2,1],[0,1,3,1],[3,3,3,1],[0,2,0,1]],[[1,2,2,1],[0,1,4,1],[2,3,3,1],[0,2,0,1]],[[1,2,2,2],[0,1,3,1],[2,3,3,1],[0,2,0,1]],[[1,2,3,1],[0,1,3,1],[2,3,3,1],[0,2,0,1]],[[1,3,2,1],[0,1,3,1],[2,3,3,1],[0,2,0,1]],[[2,2,2,1],[0,1,3,1],[2,3,3,1],[0,2,0,1]],[[0,2,3,1],[1,2,2,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,2],[1,2,2,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,2,2,3],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,2,2,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,1],[0,1,3,1],[2,3,3,1],[0,1,3,0]],[[1,2,2,1],[0,1,3,1],[2,3,4,1],[0,1,2,0]],[[1,2,2,1],[0,1,3,1],[2,4,3,1],[0,1,2,0]],[[1,2,2,1],[0,1,3,1],[3,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,1,4,1],[2,3,3,1],[0,1,2,0]],[[1,2,2,2],[0,1,3,1],[2,3,3,1],[0,1,2,0]],[[1,2,3,1],[0,1,3,1],[2,3,3,1],[0,1,2,0]],[[1,3,2,1],[0,1,3,1],[2,3,3,1],[0,1,2,0]],[[2,2,2,1],[0,1,3,1],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,1,3,1],[2,3,4,1],[0,1,1,1]],[[1,2,2,1],[0,1,3,1],[2,4,3,1],[0,1,1,1]],[[1,2,2,1],[0,1,3,1],[3,3,3,1],[0,1,1,1]],[[1,2,2,1],[0,1,4,1],[2,3,3,1],[0,1,1,1]],[[1,2,2,2],[0,1,3,1],[2,3,3,1],[0,1,1,1]],[[1,2,3,1],[0,1,3,1],[2,3,3,1],[0,1,1,1]],[[1,3,2,1],[0,1,3,1],[2,3,3,1],[0,1,1,1]],[[2,2,2,1],[0,1,3,1],[2,3,3,1],[0,1,1,1]],[[1,2,2,1],[0,1,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,2,1],[0,1,4,1],[2,3,3,1],[0,0,2,1]],[[1,2,2,2],[0,1,3,1],[2,3,3,1],[0,0,2,1]],[[1,2,3,1],[0,1,3,1],[2,3,3,1],[0,0,2,1]],[[1,3,2,1],[0,1,3,1],[2,3,3,1],[0,0,2,1]],[[2,2,2,1],[0,1,3,1],[2,3,3,1],[0,0,2,1]],[[0,3,2,1],[1,2,2,2],[1,3,0,1],[1,2,2,1]],[[0,2,3,1],[1,2,2,2],[1,3,0,1],[1,2,2,1]],[[0,2,2,2],[1,2,2,2],[1,3,0,1],[1,2,2,1]],[[0,2,2,1],[1,2,2,3],[1,3,0,1],[1,2,2,1]],[[0,3,2,1],[1,2,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,3,1],[1,2,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,2],[1,2,2,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,2,2,3],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,2,2,2],[1,3,0,3],[1,1,2,1]],[[0,2,2,1],[1,2,2,2],[1,3,0,2],[1,1,3,1]],[[0,2,2,1],[1,2,2,2],[1,3,0,2],[1,1,2,2]],[[0,3,2,1],[1,2,2,2],[1,3,0,2],[1,2,1,1]],[[0,2,3,1],[1,2,2,2],[1,3,0,2],[1,2,1,1]],[[0,2,2,2],[1,2,2,2],[1,3,0,2],[1,2,1,1]],[[0,2,2,1],[1,2,2,3],[1,3,0,2],[1,2,1,1]],[[0,2,2,1],[1,2,2,2],[1,3,0,3],[1,2,1,1]],[[0,2,2,1],[1,2,2,2],[1,3,0,2],[1,2,1,2]],[[0,3,2,1],[1,2,2,2],[1,3,0,2],[1,2,2,0]],[[0,2,3,1],[1,2,2,2],[1,3,0,2],[1,2,2,0]],[[0,2,2,2],[1,2,2,2],[1,3,0,2],[1,2,2,0]],[[0,2,2,1],[1,2,2,3],[1,3,0,2],[1,2,2,0]],[[0,2,2,1],[1,2,2,2],[1,3,0,3],[1,2,2,0]],[[0,3,2,1],[1,2,2,2],[1,3,1,0],[1,2,2,1]],[[0,2,3,1],[1,2,2,2],[1,3,1,0],[1,2,2,1]],[[0,2,2,2],[1,2,2,2],[1,3,1,0],[1,2,2,1]],[[0,2,2,1],[1,2,2,3],[1,3,1,0],[1,2,2,1]],[[0,3,2,1],[1,2,2,2],[1,3,1,1],[1,2,2,0]],[[0,2,3,1],[1,2,2,2],[1,3,1,1],[1,2,2,0]],[[0,2,2,2],[1,2,2,2],[1,3,1,1],[1,2,2,0]],[[0,2,2,1],[1,2,2,3],[1,3,1,1],[1,2,2,0]],[[0,3,2,1],[1,2,2,2],[1,3,1,2],[1,1,1,1]],[[0,2,3,1],[1,2,2,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,2],[1,2,2,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,2,2,3],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,2,2,2],[1,3,1,3],[1,1,1,1]],[[0,2,2,1],[1,2,2,2],[1,3,1,2],[1,1,1,2]],[[0,3,2,1],[1,2,2,2],[1,3,1,2],[1,1,2,0]],[[0,2,3,1],[1,2,2,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,2],[1,2,2,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,2,2,3],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,2,2,2],[1,3,1,3],[1,1,2,0]],[[0,3,2,1],[1,2,2,2],[1,3,1,2],[1,2,0,1]],[[0,2,3,1],[1,2,2,2],[1,3,1,2],[1,2,0,1]],[[0,2,2,2],[1,2,2,2],[1,3,1,2],[1,2,0,1]],[[0,2,2,1],[1,2,2,3],[1,3,1,2],[1,2,0,1]],[[0,2,2,1],[1,2,2,2],[1,3,1,3],[1,2,0,1]],[[0,2,2,1],[1,2,2,2],[1,3,1,2],[1,2,0,2]],[[0,3,2,1],[1,2,2,2],[1,3,1,2],[1,2,1,0]],[[0,2,3,1],[1,2,2,2],[1,3,1,2],[1,2,1,0]],[[0,2,2,2],[1,2,2,2],[1,3,1,2],[1,2,1,0]],[[0,2,2,1],[1,2,2,3],[1,3,1,2],[1,2,1,0]],[[0,2,2,1],[1,2,2,2],[1,3,1,3],[1,2,1,0]],[[1,2,2,1],[0,1,3,1],[2,3,3,0],[2,2,0,1]],[[1,2,2,1],[0,1,3,1],[2,4,3,0],[1,2,0,1]],[[1,2,2,1],[0,1,3,1],[3,3,3,0],[1,2,0,1]],[[0,3,2,1],[1,2,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,3,1],[1,2,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,2],[1,2,2,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,2,2,3],[1,3,2,0],[1,1,2,1]],[[0,3,2,1],[1,2,2,2],[1,3,2,0],[1,2,1,1]],[[0,2,3,1],[1,2,2,2],[1,3,2,0],[1,2,1,1]],[[0,2,2,2],[1,2,2,2],[1,3,2,0],[1,2,1,1]],[[0,2,2,1],[1,2,2,3],[1,3,2,0],[1,2,1,1]],[[0,3,2,1],[1,2,2,2],[1,3,2,1],[1,1,1,1]],[[0,2,3,1],[1,2,2,2],[1,3,2,1],[1,1,1,1]],[[0,2,2,2],[1,2,2,2],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[1,2,2,3],[1,3,2,1],[1,1,1,1]],[[0,3,2,1],[1,2,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,3,1],[1,2,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,2],[1,2,2,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,2,2,3],[1,3,2,1],[1,1,2,0]],[[0,3,2,1],[1,2,2,2],[1,3,2,1],[1,2,0,1]],[[0,2,3,1],[1,2,2,2],[1,3,2,1],[1,2,0,1]],[[0,2,2,2],[1,2,2,2],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,2,2,3],[1,3,2,1],[1,2,0,1]],[[0,3,2,1],[1,2,2,2],[1,3,2,1],[1,2,1,0]],[[0,2,3,1],[1,2,2,2],[1,3,2,1],[1,2,1,0]],[[0,2,2,2],[1,2,2,2],[1,3,2,1],[1,2,1,0]],[[0,2,2,1],[1,2,2,3],[1,3,2,1],[1,2,1,0]],[[1,2,2,1],[0,1,3,1],[2,3,3,0],[2,1,1,1]],[[1,2,2,1],[0,1,3,1],[2,3,4,0],[1,1,1,1]],[[1,2,2,1],[0,1,3,1],[2,4,3,0],[1,1,1,1]],[[1,2,2,1],[0,1,3,1],[3,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,1,4,1],[2,3,3,0],[1,1,1,1]],[[1,2,2,2],[0,1,3,1],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[0,1,3,1],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[0,1,3,1],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[0,1,3,1],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,1,3,1],[2,3,3,0],[1,0,2,2]],[[1,2,2,1],[0,1,3,1],[2,3,3,0],[1,0,3,1]],[[1,2,2,1],[0,1,3,1],[2,3,3,0],[2,0,2,1]],[[1,2,2,1],[0,1,3,1],[2,3,4,0],[1,0,2,1]],[[1,2,2,1],[0,1,3,1],[2,4,3,0],[1,0,2,1]],[[1,2,2,1],[0,1,3,1],[3,3,3,0],[1,0,2,1]],[[1,2,2,1],[0,1,4,1],[2,3,3,0],[1,0,2,1]],[[1,2,2,2],[0,1,3,1],[2,3,3,0],[1,0,2,1]],[[1,2,3,1],[0,1,3,1],[2,3,3,0],[1,0,2,1]],[[1,3,2,1],[0,1,3,1],[2,3,3,0],[1,0,2,1]],[[2,2,2,1],[0,1,3,1],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[0,1,3,1],[2,3,3,0],[0,3,1,1]],[[1,2,2,1],[0,1,3,1],[2,3,4,0],[0,2,1,1]],[[1,2,2,1],[0,1,3,1],[2,4,3,0],[0,2,1,1]],[[1,2,2,1],[0,1,3,1],[3,3,3,0],[0,2,1,1]],[[1,2,2,1],[0,1,4,1],[2,3,3,0],[0,2,1,1]],[[1,2,2,2],[0,1,3,1],[2,3,3,0],[0,2,1,1]],[[1,2,3,1],[0,1,3,1],[2,3,3,0],[0,2,1,1]],[[1,3,2,1],[0,1,3,1],[2,3,3,0],[0,2,1,1]],[[2,2,2,1],[0,1,3,1],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[0,1,3,1],[2,3,3,0],[0,1,2,2]],[[1,2,2,1],[0,1,3,1],[2,3,3,0],[0,1,3,1]],[[0,3,2,1],[1,2,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,3,1],[1,2,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,2],[1,2,2,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,2,2,3],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,1,3,1],[2,3,4,0],[0,1,2,1]],[[1,2,2,1],[0,1,3,1],[2,4,3,0],[0,1,2,1]],[[1,2,2,1],[0,1,3,1],[3,3,3,0],[0,1,2,1]],[[1,2,2,1],[0,1,4,1],[2,3,3,0],[0,1,2,1]],[[1,2,2,2],[0,1,3,1],[2,3,3,0],[0,1,2,1]],[[1,2,3,1],[0,1,3,1],[2,3,3,0],[0,1,2,1]],[[1,3,2,1],[0,1,3,1],[2,3,3,0],[0,1,2,1]],[[2,2,2,1],[0,1,3,1],[2,3,3,0],[0,1,2,1]],[[1,2,2,1],[0,1,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[0,1,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[0,1,3,1],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[0,1,3,1],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[0,1,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,1,4,1],[2,3,2,2],[1,1,0,1]],[[1,2,2,2],[0,1,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[0,1,3,1],[2,3,2,2],[1,1,0,1]],[[1,3,2,1],[0,1,3,1],[2,3,2,2],[1,1,0,1]],[[2,2,2,1],[0,1,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[0,1,4,1],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[0,1,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[0,1,3,1],[2,3,2,2],[1,0,2,0]],[[1,3,2,1],[0,1,3,1],[2,3,2,2],[1,0,2,0]],[[2,2,2,1],[0,1,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[0,1,4,1],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[0,1,3,1],[2,3,2,2],[1,0,1,1]],[[1,2,3,1],[0,1,3,1],[2,3,2,2],[1,0,1,1]],[[1,3,2,1],[0,1,3,1],[2,3,2,2],[1,0,1,1]],[[2,2,2,1],[0,1,3,1],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[0,1,4,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[0,1,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[0,1,3,1],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[0,1,3,1],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[0,1,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,1,4,1],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[0,1,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[0,1,3,1],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[0,1,3,1],[2,3,2,2],[0,2,0,1]],[[2,2,2,1],[0,1,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,1,4,1],[2,3,2,2],[0,1,2,0]],[[1,2,2,2],[0,1,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[0,1,3,1],[2,3,2,2],[0,1,2,0]],[[1,3,2,1],[0,1,3,1],[2,3,2,2],[0,1,2,0]],[[2,2,2,1],[0,1,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,1,4,1],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[0,1,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[0,1,3,1],[2,3,2,2],[0,1,1,1]],[[1,3,2,1],[0,1,3,1],[2,3,2,2],[0,1,1,1]],[[2,2,2,1],[0,1,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,1,4,1],[2,3,2,2],[0,0,2,1]],[[1,2,2,2],[0,1,3,1],[2,3,2,2],[0,0,2,1]],[[0,3,2,1],[1,2,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,3,1],[1,2,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[1,2,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,3],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[3,0,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,0,1,3],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,0,1,2],[2,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,0,1,2],[1,3,2,1]],[[0,2,2,1],[1,2,2,2],[2,0,1,2],[1,2,3,1]],[[0,2,2,1],[1,2,2,2],[2,0,1,2],[1,2,2,2]],[[0,2,3,1],[1,2,2,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,2],[1,2,2,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,1],[1,2,2,3],[2,0,2,2],[0,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,0,2,3],[0,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,0,2,2],[0,2,3,1]],[[0,2,2,1],[1,2,2,2],[2,0,2,2],[0,2,2,2]],[[0,3,2,1],[1,2,2,2],[2,0,2,2],[1,2,1,1]],[[0,2,3,1],[1,2,2,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,2],[1,2,2,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[1,2,2,3],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[1,2,2,2],[2,0,2,3],[1,2,1,1]],[[0,2,2,1],[1,2,2,2],[2,0,2,2],[1,2,1,2]],[[0,3,2,1],[1,2,2,2],[2,0,2,2],[1,2,2,0]],[[0,2,3,1],[1,2,2,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,2],[1,2,2,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[1,2,2,3],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[1,2,2,2],[2,0,2,3],[1,2,2,0]],[[0,3,2,1],[1,2,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,3,1],[1,2,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,2],[1,2,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[1,2,2,3],[2,0,3,0],[1,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,0,3,1],[1,2,1,1]],[[0,2,3,1],[1,2,2,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,2],[1,2,2,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[1,2,2,3],[2,0,3,1],[1,2,1,1]],[[0,3,2,1],[1,2,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,3,1],[1,2,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,2],[1,2,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[1,2,2,3],[2,0,3,1],[1,2,2,0]],[[0,2,3,1],[1,2,2,2],[2,0,3,2],[0,1,2,1]],[[0,2,2,2],[1,2,2,2],[2,0,3,2],[0,1,2,1]],[[0,2,2,1],[1,2,2,3],[2,0,3,2],[0,1,2,1]],[[0,2,2,1],[1,2,2,2],[2,0,3,3],[0,1,2,1]],[[0,2,2,1],[1,2,2,2],[2,0,3,2],[0,1,2,2]],[[0,2,3,1],[1,2,2,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,2],[1,2,2,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[1,2,2,3],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[1,2,2,2],[2,0,3,3],[0,2,1,1]],[[0,2,2,1],[1,2,2,2],[2,0,3,2],[0,2,1,2]],[[0,2,3,1],[1,2,2,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,2],[1,2,2,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[1,2,2,3],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[1,2,2,2],[2,0,3,3],[0,2,2,0]],[[1,2,3,1],[0,1,3,1],[2,3,2,2],[0,0,2,1]],[[1,3,2,1],[0,1,3,1],[2,3,2,2],[0,0,2,1]],[[2,2,2,1],[0,1,3,1],[2,3,2,2],[0,0,2,1]],[[0,3,2,1],[1,2,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,3,1],[1,2,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,2],[1,2,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,3],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[3,1,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,1,0,3],[1,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,1,0,2],[2,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,1,0,2],[1,3,2,1]],[[0,2,2,1],[1,2,2,2],[2,1,0,2],[1,2,3,1]],[[0,2,2,1],[1,2,2,2],[2,1,0,2],[1,2,2,2]],[[0,3,2,1],[1,2,2,2],[2,1,1,2],[0,2,2,1]],[[0,2,3,1],[1,2,2,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,2],[1,2,2,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[1,2,2,3],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,1,1,3],[0,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,1,1,2],[0,3,2,1]],[[0,2,2,1],[1,2,2,2],[2,1,1,2],[0,2,3,1]],[[0,2,2,1],[1,2,2,2],[2,1,1,2],[0,2,2,2]],[[0,3,2,1],[1,2,2,2],[2,1,2,2],[0,2,1,1]],[[0,2,3,1],[1,2,2,2],[2,1,2,2],[0,2,1,1]],[[0,2,2,2],[1,2,2,2],[2,1,2,2],[0,2,1,1]],[[0,2,2,1],[1,2,2,3],[2,1,2,2],[0,2,1,1]],[[0,2,2,1],[1,2,2,2],[2,1,2,3],[0,2,1,1]],[[0,2,2,1],[1,2,2,2],[2,1,2,2],[0,2,1,2]],[[0,3,2,1],[1,2,2,2],[2,1,2,2],[0,2,2,0]],[[0,2,3,1],[1,2,2,2],[2,1,2,2],[0,2,2,0]],[[0,2,2,2],[1,2,2,2],[2,1,2,2],[0,2,2,0]],[[0,2,2,1],[1,2,2,3],[2,1,2,2],[0,2,2,0]],[[0,2,2,1],[1,2,2,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,1],[0,1,3,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,1],[0,1,3,1],[2,4,2,1],[1,1,2,0]],[[1,2,2,1],[0,1,3,1],[3,3,2,1],[1,1,2,0]],[[1,2,2,1],[0,1,3,1],[2,3,2,1],[0,2,3,0]],[[1,2,2,1],[0,1,3,1],[2,3,2,1],[0,3,2,0]],[[0,3,2,1],[1,2,2,2],[2,1,3,0],[0,2,2,1]],[[0,2,3,1],[1,2,2,2],[2,1,3,0],[0,2,2,1]],[[0,2,2,2],[1,2,2,2],[2,1,3,0],[0,2,2,1]],[[0,2,2,1],[1,2,2,3],[2,1,3,0],[0,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,1,3,1],[0,2,1,1]],[[0,2,3,1],[1,2,2,2],[2,1,3,1],[0,2,1,1]],[[0,2,2,2],[1,2,2,2],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[1,2,2,3],[2,1,3,1],[0,2,1,1]],[[0,3,2,1],[1,2,2,2],[2,1,3,1],[0,2,2,0]],[[0,2,3,1],[1,2,2,2],[2,1,3,1],[0,2,2,0]],[[0,2,2,2],[1,2,2,2],[2,1,3,1],[0,2,2,0]],[[0,2,2,1],[1,2,2,3],[2,1,3,1],[0,2,2,0]],[[1,2,2,1],[0,1,3,1],[2,4,2,1],[0,2,2,0]],[[1,2,2,1],[0,1,3,1],[3,3,2,1],[0,2,2,0]],[[1,2,2,1],[0,1,3,1],[2,3,2,0],[2,1,2,1]],[[1,2,2,1],[0,1,3,1],[2,4,2,0],[1,1,2,1]],[[0,2,3,1],[1,2,2,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,2],[1,2,2,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[1,2,2,3],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[1,2,2,2],[2,1,3,3],[0,0,2,1]],[[0,2,2,1],[1,2,2,2],[2,1,3,2],[0,0,2,2]],[[0,2,3,1],[1,2,2,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,2],[1,2,2,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[1,2,2,3],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[1,2,2,2],[2,1,3,3],[0,1,1,1]],[[0,2,2,1],[1,2,2,2],[2,1,3,2],[0,1,1,2]],[[0,2,3,1],[1,2,2,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,2],[1,2,2,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[1,2,2,3],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[1,2,2,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,1],[0,1,3,1],[3,3,2,0],[1,1,2,1]],[[1,2,2,1],[0,1,3,1],[2,3,2,0],[0,2,2,2]],[[1,2,2,1],[0,1,3,1],[2,3,2,0],[0,2,3,1]],[[1,2,2,1],[0,1,3,1],[2,3,2,0],[0,3,2,1]],[[1,2,2,1],[0,1,3,1],[2,4,2,0],[0,2,2,1]],[[1,2,2,1],[0,1,3,1],[3,3,2,0],[0,2,2,1]],[[0,2,3,1],[1,2,2,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,2],[1,2,2,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,2,3],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,2,2],[2,1,3,3],[1,0,1,1]],[[0,2,2,1],[1,2,2,2],[2,1,3,2],[1,0,1,2]],[[0,2,3,1],[1,2,2,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,2],[1,2,2,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[1,2,2,3],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[1,2,2,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,1],[0,1,4,1],[2,3,1,2],[1,0,2,1]],[[1,2,2,2],[0,1,3,1],[2,3,1,2],[1,0,2,1]],[[1,2,3,1],[0,1,3,1],[2,3,1,2],[1,0,2,1]],[[1,3,2,1],[0,1,3,1],[2,3,1,2],[1,0,2,1]],[[2,2,2,1],[0,1,3,1],[2,3,1,2],[1,0,2,1]],[[1,2,2,1],[0,1,4,1],[2,3,1,2],[0,1,2,1]],[[1,2,2,2],[0,1,3,1],[2,3,1,2],[0,1,2,1]],[[1,2,3,1],[0,1,3,1],[2,3,1,2],[0,1,2,1]],[[1,3,2,1],[0,1,3,1],[2,3,1,2],[0,1,2,1]],[[2,2,2,1],[0,1,3,1],[2,3,1,2],[0,1,2,1]],[[1,2,2,1],[0,1,4,1],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[0,1,3,1],[2,3,0,2],[0,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,3,1],[1,2,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,2],[1,2,2,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[1,2,2,3],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,2,0,3],[0,2,2,1]],[[0,2,2,1],[1,2,2,2],[2,2,0,2],[0,3,2,1]],[[0,2,2,1],[1,2,2,2],[2,2,0,2],[0,2,3,1]],[[0,2,2,1],[1,2,2,2],[2,2,0,2],[0,2,2,2]],[[0,3,2,1],[1,2,2,2],[2,2,1,2],[0,1,2,1]],[[0,2,3,1],[1,2,2,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,2],[1,2,2,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[1,2,2,3],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[1,2,2,2],[2,2,1,3],[0,1,2,1]],[[0,2,2,1],[1,2,2,2],[2,2,1,2],[0,1,3,1]],[[0,2,2,1],[1,2,2,2],[2,2,1,2],[0,1,2,2]],[[0,3,2,1],[1,2,2,2],[2,2,1,2],[1,0,2,1]],[[0,2,3,1],[1,2,2,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,2],[1,2,2,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[1,2,2,3],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[1,2,2,2],[2,2,1,3],[1,0,2,1]],[[0,2,2,1],[1,2,2,2],[2,2,1,2],[1,0,3,1]],[[0,2,2,1],[1,2,2,2],[2,2,1,2],[1,0,2,2]],[[1,2,3,1],[0,1,3,1],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[0,1,3,1],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[0,1,3,1],[2,3,0,2],[0,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,2,2,2],[0,0,2,1]],[[0,2,3,1],[1,2,2,2],[2,2,2,2],[0,0,2,1]],[[0,2,2,2],[1,2,2,2],[2,2,2,2],[0,0,2,1]],[[0,2,2,1],[1,2,2,3],[2,2,2,2],[0,0,2,1]],[[0,2,2,1],[1,2,2,2],[2,2,2,3],[0,0,2,1]],[[0,2,2,1],[1,2,2,2],[2,2,2,2],[0,0,2,2]],[[0,3,2,1],[1,2,2,2],[2,2,2,2],[0,1,1,1]],[[0,2,3,1],[1,2,2,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,2],[1,2,2,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[1,2,2,3],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[1,2,2,2],[2,2,2,3],[0,1,1,1]],[[0,2,2,1],[1,2,2,2],[2,2,2,2],[0,1,1,2]],[[0,3,2,1],[1,2,2,2],[2,2,2,2],[0,1,2,0]],[[0,2,3,1],[1,2,2,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,2],[1,2,2,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[1,2,2,3],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[1,2,2,2],[2,2,2,3],[0,1,2,0]],[[0,3,2,1],[1,2,2,2],[2,2,2,2],[0,2,0,1]],[[0,2,3,1],[1,2,2,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,2],[1,2,2,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[1,2,2,3],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[1,2,2,2],[2,2,2,3],[0,2,0,1]],[[0,2,2,1],[1,2,2,2],[2,2,2,2],[0,2,0,2]],[[0,3,2,1],[1,2,2,2],[2,2,2,2],[0,2,1,0]],[[0,2,3,1],[1,2,2,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,2],[1,2,2,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[1,2,2,3],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[1,2,2,2],[2,2,2,3],[0,2,1,0]],[[0,3,2,1],[1,2,2,2],[2,2,2,2],[1,0,1,1]],[[0,2,3,1],[1,2,2,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,2],[1,2,2,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[1,2,2,3],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[1,2,2,2],[2,2,2,3],[1,0,1,1]],[[0,2,2,1],[1,2,2,2],[2,2,2,2],[1,0,1,2]],[[0,3,2,1],[1,2,2,2],[2,2,2,2],[1,0,2,0]],[[0,2,3,1],[1,2,2,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,2],[1,2,2,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[1,2,2,3],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[1,2,2,2],[2,2,2,3],[1,0,2,0]],[[0,3,2,1],[1,2,2,2],[2,2,2,2],[1,1,0,1]],[[0,2,3,1],[1,2,2,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,2],[1,2,2,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[1,2,2,3],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[1,2,2,2],[2,2,2,3],[1,1,0,1]],[[0,2,2,1],[1,2,2,2],[2,2,2,2],[1,1,0,2]],[[0,3,2,1],[1,2,2,2],[2,2,2,2],[1,1,1,0]],[[0,2,3,1],[1,2,2,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,2],[1,2,2,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[1,2,2,3],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[1,2,2,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,1],[0,1,3,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,1],[0,1,3,1],[2,2,3,1],[2,2,1,0]],[[1,2,2,1],[0,1,3,1],[3,2,3,1],[1,2,1,0]],[[1,2,2,1],[0,1,3,1],[2,2,3,1],[1,3,0,1]],[[1,2,2,1],[0,1,3,1],[2,2,3,1],[2,2,0,1]],[[1,2,2,1],[0,1,3,1],[3,2,3,1],[1,2,0,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,3,1],[1,2,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,2],[1,2,2,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[1,2,2,3],[2,2,3,0],[0,1,2,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,0],[0,2,1,1]],[[0,2,3,1],[1,2,2,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,2],[1,2,2,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[1,2,2,3],[2,2,3,0],[0,2,1,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,0],[1,0,2,1]],[[0,2,3,1],[1,2,2,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,2],[1,2,2,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[1,2,2,3],[2,2,3,0],[1,0,2,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,3,1],[1,2,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,2],[1,2,2,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[1,2,2,3],[2,2,3,0],[1,1,1,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,1],[0,0,2,1]],[[0,2,3,1],[1,2,2,2],[2,2,3,1],[0,0,2,1]],[[0,2,2,2],[1,2,2,2],[2,2,3,1],[0,0,2,1]],[[0,2,2,1],[1,2,2,3],[2,2,3,1],[0,0,2,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,1],[0,1,1,1]],[[0,2,3,1],[1,2,2,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,2],[1,2,2,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[1,2,2,3],[2,2,3,1],[0,1,1,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,1],[0,1,2,0]],[[0,2,3,1],[1,2,2,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,2],[1,2,2,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[1,2,2,3],[2,2,3,1],[0,1,2,0]],[[0,3,2,1],[1,2,2,2],[2,2,3,1],[0,2,0,1]],[[0,2,3,1],[1,2,2,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,2],[1,2,2,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[1,2,2,3],[2,2,3,1],[0,2,0,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,1],[0,2,1,0]],[[0,2,3,1],[1,2,2,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,2],[1,2,2,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[1,2,2,3],[2,2,3,1],[0,2,1,0]],[[1,2,2,1],[0,1,3,1],[2,2,3,1],[0,2,3,0]],[[1,2,2,1],[0,1,3,1],[2,2,3,1],[0,3,2,0]],[[1,2,2,1],[0,1,3,1],[2,2,4,1],[0,2,2,0]],[[1,2,2,1],[0,1,4,1],[2,2,3,1],[0,2,2,0]],[[1,2,2,2],[0,1,3,1],[2,2,3,1],[0,2,2,0]],[[1,2,3,1],[0,1,3,1],[2,2,3,1],[0,2,2,0]],[[1,3,2,1],[0,1,3,1],[2,2,3,1],[0,2,2,0]],[[0,3,2,1],[1,2,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,3,1],[1,2,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,2],[1,2,2,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[1,2,2,3],[2,2,3,1],[1,0,1,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,1],[1,0,2,0]],[[0,2,3,1],[1,2,2,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,2],[1,2,2,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[1,2,2,3],[2,2,3,1],[1,0,2,0]],[[0,3,2,1],[1,2,2,2],[2,2,3,1],[1,1,0,1]],[[0,2,3,1],[1,2,2,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,2],[1,2,2,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[1,2,2,3],[2,2,3,1],[1,1,0,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,1],[1,1,1,0]],[[0,2,3,1],[1,2,2,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,2],[1,2,2,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[1,2,2,3],[2,2,3,1],[1,1,1,0]],[[2,2,2,1],[0,1,3,1],[2,2,3,1],[0,2,2,0]],[[1,2,2,1],[0,1,3,1],[2,2,4,1],[0,2,1,1]],[[1,2,2,1],[0,1,4,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[0,1,3,1],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[0,1,3,1],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[0,1,3,1],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[0,1,3,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[0,1,3,1],[2,2,3,0],[1,3,1,1]],[[1,2,2,1],[0,1,3,1],[2,2,3,0],[2,2,1,1]],[[1,2,2,1],[0,1,3,1],[3,2,3,0],[1,2,1,1]],[[1,2,2,1],[0,1,3,1],[2,2,3,0],[0,2,2,2]],[[1,2,2,1],[0,1,3,1],[2,2,3,0],[0,2,3,1]],[[1,2,2,1],[0,1,3,1],[2,2,3,0],[0,3,2,1]],[[1,2,2,1],[0,1,3,1],[2,2,4,0],[0,2,2,1]],[[1,2,2,1],[0,1,4,1],[2,2,3,0],[0,2,2,1]],[[1,2,2,2],[0,1,3,1],[2,2,3,0],[0,2,2,1]],[[1,2,3,1],[0,1,3,1],[2,2,3,0],[0,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,2],[0,1,0,1]],[[0,2,3,1],[1,2,2,2],[2,2,3,2],[0,1,0,1]],[[0,2,2,2],[1,2,2,2],[2,2,3,2],[0,1,0,1]],[[0,2,2,1],[1,2,2,3],[2,2,3,2],[0,1,0,1]],[[0,2,2,1],[1,2,2,2],[2,2,3,3],[0,1,0,1]],[[1,3,2,1],[0,1,3,1],[2,2,3,0],[0,2,2,1]],[[2,2,2,1],[0,1,3,1],[2,2,3,0],[0,2,2,1]],[[1,2,2,1],[0,1,4,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,2],[0,1,3,1],[2,2,2,2],[0,2,2,0]],[[1,2,3,1],[0,1,3,1],[2,2,2,2],[0,2,2,0]],[[1,3,2,1],[0,1,3,1],[2,2,2,2],[0,2,2,0]],[[2,2,2,1],[0,1,3,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,1],[0,1,4,1],[2,2,2,2],[0,2,1,1]],[[1,2,2,2],[0,1,3,1],[2,2,2,2],[0,2,1,1]],[[0,3,2,1],[1,2,2,2],[2,2,3,2],[1,0,0,1]],[[0,2,3,1],[1,2,2,2],[2,2,3,2],[1,0,0,1]],[[0,2,2,2],[1,2,2,2],[2,2,3,2],[1,0,0,1]],[[0,2,2,1],[1,2,2,3],[2,2,3,2],[1,0,0,1]],[[0,2,2,1],[1,2,2,2],[2,2,3,3],[1,0,0,1]],[[1,2,3,1],[0,1,3,1],[2,2,2,2],[0,2,1,1]],[[1,3,2,1],[0,1,3,1],[2,2,2,2],[0,2,1,1]],[[2,2,2,1],[0,1,3,1],[2,2,2,2],[0,2,1,1]],[[1,2,2,1],[0,1,3,1],[2,2,2,1],[1,2,3,0]],[[1,2,2,1],[0,1,3,1],[2,2,2,1],[1,3,2,0]],[[1,2,2,1],[0,1,3,1],[2,2,2,1],[2,2,2,0]],[[1,2,2,1],[0,1,3,1],[3,2,2,1],[1,2,2,0]],[[1,2,2,1],[0,1,3,1],[2,2,2,0],[1,2,2,2]],[[1,2,2,1],[0,1,3,1],[2,2,2,0],[1,2,3,1]],[[1,2,2,1],[0,1,3,1],[2,2,2,0],[1,3,2,1]],[[1,2,2,1],[0,1,3,1],[2,2,2,0],[2,2,2,1]],[[1,2,2,1],[0,1,3,1],[3,2,2,0],[1,2,2,1]],[[1,2,2,1],[0,1,4,1],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[0,1,3,1],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[0,1,3,1],[2,2,1,2],[0,2,2,1]],[[1,3,2,1],[0,1,3,1],[2,2,1,2],[0,2,2,1]],[[2,2,2,1],[0,1,3,1],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[0,1,4,1],[2,2,0,2],[1,2,2,1]],[[1,2,2,2],[0,1,3,1],[2,2,0,2],[1,2,2,1]],[[1,2,3,1],[0,1,3,1],[2,2,0,2],[1,2,2,1]],[[1,3,2,1],[0,1,3,1],[2,2,0,2],[1,2,2,1]],[[2,2,2,1],[0,1,3,1],[2,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,1,3,1],[2,1,3,1],[1,2,3,0]],[[1,2,2,1],[0,1,3,1],[2,1,3,1],[1,3,2,0]],[[1,2,2,1],[0,1,3,1],[2,1,3,1],[2,2,2,0]],[[1,2,2,1],[0,1,3,1],[2,1,4,1],[1,2,2,0]],[[1,2,2,1],[0,1,3,1],[3,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,1,4,1],[2,1,3,1],[1,2,2,0]],[[1,2,2,2],[0,1,3,1],[2,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,1,3,1],[2,1,3,1],[1,2,2,0]],[[1,3,2,1],[0,1,3,1],[2,1,3,1],[1,2,2,0]],[[0,3,2,1],[1,2,2,2],[2,3,0,1],[0,2,2,1]],[[0,2,3,1],[1,2,2,2],[2,3,0,1],[0,2,2,1]],[[0,2,2,2],[1,2,2,2],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[1,2,2,3],[2,3,0,1],[0,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,0,1],[1,1,2,1]],[[0,2,3,1],[1,2,2,2],[2,3,0,1],[1,1,2,1]],[[0,2,2,2],[1,2,2,2],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[1,2,2,3],[2,3,0,1],[1,1,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,0,2],[0,1,2,1]],[[0,2,3,1],[1,2,2,2],[2,3,0,2],[0,1,2,1]],[[0,2,2,2],[1,2,2,2],[2,3,0,2],[0,1,2,1]],[[0,2,2,1],[1,2,2,3],[2,3,0,2],[0,1,2,1]],[[0,2,2,1],[1,2,2,2],[2,3,0,3],[0,1,2,1]],[[0,2,2,1],[1,2,2,2],[2,3,0,2],[0,1,3,1]],[[0,2,2,1],[1,2,2,2],[2,3,0,2],[0,1,2,2]],[[0,3,2,1],[1,2,2,2],[2,3,0,2],[0,2,1,1]],[[0,2,3,1],[1,2,2,2],[2,3,0,2],[0,2,1,1]],[[0,2,2,2],[1,2,2,2],[2,3,0,2],[0,2,1,1]],[[0,2,2,1],[1,2,2,3],[2,3,0,2],[0,2,1,1]],[[0,2,2,1],[1,2,2,2],[2,3,0,3],[0,2,1,1]],[[0,2,2,1],[1,2,2,2],[2,3,0,2],[0,2,1,2]],[[0,3,2,1],[1,2,2,2],[2,3,0,2],[0,2,2,0]],[[0,2,3,1],[1,2,2,2],[2,3,0,2],[0,2,2,0]],[[0,2,2,2],[1,2,2,2],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[1,2,2,3],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[1,2,2,2],[2,3,0,3],[0,2,2,0]],[[0,3,2,1],[1,2,2,2],[2,3,0,2],[1,0,2,1]],[[0,2,3,1],[1,2,2,2],[2,3,0,2],[1,0,2,1]],[[0,2,2,2],[1,2,2,2],[2,3,0,2],[1,0,2,1]],[[0,2,2,1],[1,2,2,3],[2,3,0,2],[1,0,2,1]],[[0,2,2,1],[1,2,2,2],[2,3,0,3],[1,0,2,1]],[[0,2,2,1],[1,2,2,2],[2,3,0,2],[1,0,3,1]],[[0,2,2,1],[1,2,2,2],[2,3,0,2],[1,0,2,2]],[[0,3,2,1],[1,2,2,2],[2,3,0,2],[1,1,1,1]],[[0,2,3,1],[1,2,2,2],[2,3,0,2],[1,1,1,1]],[[0,2,2,2],[1,2,2,2],[2,3,0,2],[1,1,1,1]],[[0,2,2,1],[1,2,2,3],[2,3,0,2],[1,1,1,1]],[[0,2,2,1],[1,2,2,2],[2,3,0,3],[1,1,1,1]],[[0,2,2,1],[1,2,2,2],[2,3,0,2],[1,1,1,2]],[[0,3,2,1],[1,2,2,2],[2,3,0,2],[1,1,2,0]],[[0,2,3,1],[1,2,2,2],[2,3,0,2],[1,1,2,0]],[[0,2,2,2],[1,2,2,2],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[1,2,2,3],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[1,2,2,2],[2,3,0,3],[1,1,2,0]],[[2,2,2,1],[0,1,3,1],[2,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,1,3,1],[2,1,4,1],[1,2,1,1]],[[1,2,2,1],[0,1,4,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,2],[0,1,3,1],[2,1,3,1],[1,2,1,1]],[[1,2,3,1],[0,1,3,1],[2,1,3,1],[1,2,1,1]],[[1,3,2,1],[0,1,3,1],[2,1,3,1],[1,2,1,1]],[[2,2,2,1],[0,1,3,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,3,1],[2,1,3,0],[1,2,2,2]],[[1,2,2,1],[0,1,3,1],[2,1,3,0],[1,2,3,1]],[[1,2,2,1],[0,1,3,1],[2,1,3,0],[1,3,2,1]],[[1,2,2,1],[0,1,3,1],[2,1,3,0],[2,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,1,0],[0,2,2,1]],[[0,2,3,1],[1,2,2,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,2],[1,2,2,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,2,2,3],[2,3,1,0],[0,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,1,0],[1,1,2,1]],[[0,2,3,1],[1,2,2,2],[2,3,1,0],[1,1,2,1]],[[0,2,2,2],[1,2,2,2],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,2,2,3],[2,3,1,0],[1,1,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,1,1],[0,2,2,0]],[[0,2,3,1],[1,2,2,2],[2,3,1,1],[0,2,2,0]],[[0,2,2,2],[1,2,2,2],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,2,2,3],[2,3,1,1],[0,2,2,0]],[[0,3,2,1],[1,2,2,2],[2,3,1,1],[1,1,2,0]],[[0,2,3,1],[1,2,2,2],[2,3,1,1],[1,1,2,0]],[[0,2,2,2],[1,2,2,2],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,2,2,3],[2,3,1,1],[1,1,2,0]],[[1,2,2,1],[0,1,3,1],[2,1,4,0],[1,2,2,1]],[[1,2,2,1],[0,1,3,1],[3,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,1,4,1],[2,1,3,0],[1,2,2,1]],[[1,2,2,2],[0,1,3,1],[2,1,3,0],[1,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,1,2],[0,1,1,1]],[[0,2,3,1],[1,2,2,2],[2,3,1,2],[0,1,1,1]],[[0,2,2,2],[1,2,2,2],[2,3,1,2],[0,1,1,1]],[[0,2,2,1],[1,2,2,3],[2,3,1,2],[0,1,1,1]],[[0,2,2,1],[1,2,2,2],[2,3,1,3],[0,1,1,1]],[[0,2,2,1],[1,2,2,2],[2,3,1,2],[0,1,1,2]],[[0,3,2,1],[1,2,2,2],[2,3,1,2],[0,1,2,0]],[[0,2,3,1],[1,2,2,2],[2,3,1,2],[0,1,2,0]],[[0,2,2,2],[1,2,2,2],[2,3,1,2],[0,1,2,0]],[[0,2,2,1],[1,2,2,3],[2,3,1,2],[0,1,2,0]],[[0,2,2,1],[1,2,2,2],[2,3,1,3],[0,1,2,0]],[[0,3,2,1],[1,2,2,2],[2,3,1,2],[0,2,0,1]],[[0,2,3,1],[1,2,2,2],[2,3,1,2],[0,2,0,1]],[[0,2,2,2],[1,2,2,2],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[1,2,2,3],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[1,2,2,2],[2,3,1,3],[0,2,0,1]],[[0,2,2,1],[1,2,2,2],[2,3,1,2],[0,2,0,2]],[[0,3,2,1],[1,2,2,2],[2,3,1,2],[0,2,1,0]],[[0,2,3,1],[1,2,2,2],[2,3,1,2],[0,2,1,0]],[[0,2,2,2],[1,2,2,2],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[1,2,2,3],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[1,2,2,2],[2,3,1,3],[0,2,1,0]],[[1,2,3,1],[0,1,3,1],[2,1,3,0],[1,2,2,1]],[[1,3,2,1],[0,1,3,1],[2,1,3,0],[1,2,2,1]],[[2,2,2,1],[0,1,3,1],[2,1,3,0],[1,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,1,2],[1,0,1,1]],[[0,2,3,1],[1,2,2,2],[2,3,1,2],[1,0,1,1]],[[0,2,2,2],[1,2,2,2],[2,3,1,2],[1,0,1,1]],[[0,2,2,1],[1,2,2,3],[2,3,1,2],[1,0,1,1]],[[0,2,2,1],[1,2,2,2],[2,3,1,3],[1,0,1,1]],[[0,2,2,1],[1,2,2,2],[2,3,1,2],[1,0,1,2]],[[0,3,2,1],[1,2,2,2],[2,3,1,2],[1,0,2,0]],[[0,2,3,1],[1,2,2,2],[2,3,1,2],[1,0,2,0]],[[0,2,2,2],[1,2,2,2],[2,3,1,2],[1,0,2,0]],[[0,2,2,1],[1,2,2,3],[2,3,1,2],[1,0,2,0]],[[0,2,2,1],[1,2,2,2],[2,3,1,3],[1,0,2,0]],[[0,3,2,1],[1,2,2,2],[2,3,1,2],[1,1,0,1]],[[0,2,3,1],[1,2,2,2],[2,3,1,2],[1,1,0,1]],[[0,2,2,2],[1,2,2,2],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[1,2,2,3],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[1,2,2,2],[2,3,1,3],[1,1,0,1]],[[0,2,2,1],[1,2,2,2],[2,3,1,2],[1,1,0,2]],[[0,3,2,1],[1,2,2,2],[2,3,1,2],[1,1,1,0]],[[0,2,3,1],[1,2,2,2],[2,3,1,2],[1,1,1,0]],[[0,2,2,2],[1,2,2,2],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[1,2,2,3],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[1,2,2,2],[2,3,1,3],[1,1,1,0]],[[1,2,2,1],[0,1,4,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[0,1,3,1],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[0,1,3,1],[2,1,2,2],[1,2,2,0]],[[1,3,2,1],[0,1,3,1],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[0,1,3,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,1,4,1],[2,1,2,2],[1,2,1,1]],[[0,3,2,1],[1,2,2,2],[2,3,1,2],[1,2,0,0]],[[0,2,3,1],[1,2,2,2],[2,3,1,2],[1,2,0,0]],[[0,2,2,2],[1,2,2,2],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[1,2,2,3],[2,3,1,2],[1,2,0,0]],[[1,2,2,2],[0,1,3,1],[2,1,2,2],[1,2,1,1]],[[1,2,3,1],[0,1,3,1],[2,1,2,2],[1,2,1,1]],[[1,3,2,1],[0,1,3,1],[2,1,2,2],[1,2,1,1]],[[2,2,2,1],[0,1,3,1],[2,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,1,4,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,1,3,1],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,1,3,1],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[0,1,3,1],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[0,1,3,1],[2,1,1,2],[1,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,2,0],[0,1,2,1]],[[0,2,3,1],[1,2,2,2],[2,3,2,0],[0,1,2,1]],[[0,2,2,2],[1,2,2,2],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,2,2,3],[2,3,2,0],[0,1,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,2,0],[0,2,1,1]],[[0,2,3,1],[1,2,2,2],[2,3,2,0],[0,2,1,1]],[[0,2,2,2],[1,2,2,2],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,2,2,3],[2,3,2,0],[0,2,1,1]],[[0,3,2,1],[1,2,2,2],[2,3,2,0],[1,0,2,1]],[[0,2,3,1],[1,2,2,2],[2,3,2,0],[1,0,2,1]],[[0,2,2,2],[1,2,2,2],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,2,2,3],[2,3,2,0],[1,0,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,2,0],[1,1,1,1]],[[0,2,3,1],[1,2,2,2],[2,3,2,0],[1,1,1,1]],[[0,2,2,2],[1,2,2,2],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,2,2,3],[2,3,2,0],[1,1,1,1]],[[0,3,2,1],[1,2,2,2],[2,3,2,1],[0,1,1,1]],[[0,2,3,1],[1,2,2,2],[2,3,2,1],[0,1,1,1]],[[0,2,2,2],[1,2,2,2],[2,3,2,1],[0,1,1,1]],[[0,2,2,1],[1,2,2,3],[2,3,2,1],[0,1,1,1]],[[0,3,2,1],[1,2,2,2],[2,3,2,1],[0,1,2,0]],[[0,2,3,1],[1,2,2,2],[2,3,2,1],[0,1,2,0]],[[0,2,2,2],[1,2,2,2],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,2,2,3],[2,3,2,1],[0,1,2,0]],[[0,3,2,1],[1,2,2,2],[2,3,2,1],[0,2,0,1]],[[0,2,3,1],[1,2,2,2],[2,3,2,1],[0,2,0,1]],[[0,2,2,2],[1,2,2,2],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,2,2,3],[2,3,2,1],[0,2,0,1]],[[0,3,2,1],[1,2,2,2],[2,3,2,1],[0,2,1,0]],[[0,2,3,1],[1,2,2,2],[2,3,2,1],[0,2,1,0]],[[0,2,2,2],[1,2,2,2],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,2,2,3],[2,3,2,1],[0,2,1,0]],[[0,3,2,1],[1,2,2,2],[2,3,2,1],[1,0,1,1]],[[0,2,3,1],[1,2,2,2],[2,3,2,1],[1,0,1,1]],[[0,2,2,2],[1,2,2,2],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[1,2,2,3],[2,3,2,1],[1,0,1,1]],[[0,3,2,1],[1,2,2,2],[2,3,2,1],[1,0,2,0]],[[0,2,3,1],[1,2,2,2],[2,3,2,1],[1,0,2,0]],[[0,2,2,2],[1,2,2,2],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,2,2,3],[2,3,2,1],[1,0,2,0]],[[0,3,2,1],[1,2,2,2],[2,3,2,1],[1,1,0,1]],[[0,2,3,1],[1,2,2,2],[2,3,2,1],[1,1,0,1]],[[0,2,2,2],[1,2,2,2],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,2,2,3],[2,3,2,1],[1,1,0,1]],[[0,3,2,1],[1,2,2,2],[2,3,2,1],[1,1,1,0]],[[0,2,3,1],[1,2,2,2],[2,3,2,1],[1,1,1,0]],[[0,2,2,2],[1,2,2,2],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,2,2,3],[2,3,2,1],[1,1,1,0]],[[0,3,2,1],[1,2,2,2],[2,3,2,1],[1,2,0,0]],[[0,2,3,1],[1,2,2,2],[2,3,2,1],[1,2,0,0]],[[0,2,2,2],[1,2,2,2],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,2,2,3],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[0,1,4,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[0,1,3,1],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[0,1,3,1],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[0,1,3,1],[1,3,3,2],[1,1,0,1]],[[0,3,2,1],[1,2,2,2],[2,3,2,2],[0,0,1,1]],[[0,2,3,1],[1,2,2,2],[2,3,2,2],[0,0,1,1]],[[0,2,2,2],[1,2,2,2],[2,3,2,2],[0,0,1,1]],[[0,2,2,1],[1,2,2,3],[2,3,2,2],[0,0,1,1]],[[0,2,2,1],[1,2,2,2],[2,3,2,3],[0,0,1,1]],[[0,2,2,1],[1,2,2,2],[2,3,2,2],[0,0,1,2]],[[0,3,2,1],[1,2,2,2],[2,3,2,2],[0,0,2,0]],[[0,2,3,1],[1,2,2,2],[2,3,2,2],[0,0,2,0]],[[0,2,2,2],[1,2,2,2],[2,3,2,2],[0,0,2,0]],[[0,2,2,1],[1,2,2,3],[2,3,2,2],[0,0,2,0]],[[0,2,2,1],[1,2,2,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,1],[0,1,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,1],[0,1,3,1],[1,3,3,1],[2,2,1,0]],[[1,2,2,1],[0,1,3,1],[1,3,4,1],[1,2,1,0]],[[1,2,2,1],[0,1,3,1],[1,4,3,1],[1,2,1,0]],[[1,2,2,1],[0,1,4,1],[1,3,3,1],[1,2,1,0]],[[1,2,2,2],[0,1,3,1],[1,3,3,1],[1,2,1,0]],[[1,2,3,1],[0,1,3,1],[1,3,3,1],[1,2,1,0]],[[1,3,2,1],[0,1,3,1],[1,3,3,1],[1,2,1,0]],[[2,2,2,1],[0,1,3,1],[1,3,3,1],[1,2,1,0]],[[1,2,2,1],[0,1,3,1],[1,3,3,1],[1,3,0,1]],[[1,2,2,1],[0,1,3,1],[1,3,3,1],[2,2,0,1]],[[1,2,2,1],[0,1,3,1],[1,3,4,1],[1,2,0,1]],[[1,2,2,1],[0,1,3,1],[1,4,3,1],[1,2,0,1]],[[1,2,2,1],[0,1,4,1],[1,3,3,1],[1,2,0,1]],[[1,2,2,2],[0,1,3,1],[1,3,3,1],[1,2,0,1]],[[1,2,3,1],[0,1,3,1],[1,3,3,1],[1,2,0,1]],[[1,3,2,1],[0,1,3,1],[1,3,3,1],[1,2,0,1]],[[2,2,2,1],[0,1,3,1],[1,3,3,1],[1,2,0,1]],[[1,2,2,1],[0,1,3,1],[1,3,3,1],[1,1,3,0]],[[1,2,2,1],[0,1,3,1],[1,3,4,1],[1,1,2,0]],[[1,2,2,1],[0,1,3,1],[1,4,3,1],[1,1,2,0]],[[1,2,2,1],[0,1,4,1],[1,3,3,1],[1,1,2,0]],[[1,2,2,2],[0,1,3,1],[1,3,3,1],[1,1,2,0]],[[1,2,3,1],[0,1,3,1],[1,3,3,1],[1,1,2,0]],[[1,3,2,1],[0,1,3,1],[1,3,3,1],[1,1,2,0]],[[2,2,2,1],[0,1,3,1],[1,3,3,1],[1,1,2,0]],[[1,2,2,1],[0,1,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,2,1],[0,1,3,1],[1,4,3,1],[1,1,1,1]],[[1,2,2,1],[0,1,4,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[0,1,3,1],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[0,1,3,1],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[0,1,3,1],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[0,1,3,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,1,3,1],[1,3,4,1],[1,0,2,1]],[[1,2,2,1],[0,1,4,1],[1,3,3,1],[1,0,2,1]],[[1,2,2,2],[0,1,3,1],[1,3,3,1],[1,0,2,1]],[[1,2,3,1],[0,1,3,1],[1,3,3,1],[1,0,2,1]],[[1,3,2,1],[0,1,3,1],[1,3,3,1],[1,0,2,1]],[[1,2,2,1],[0,1,3,1],[1,3,3,0],[1,3,1,1]],[[1,2,2,1],[0,1,3,1],[1,3,3,0],[2,2,1,1]],[[1,2,2,1],[0,1,3,1],[1,3,4,0],[1,2,1,1]],[[1,2,2,1],[0,1,3,1],[1,4,3,0],[1,2,1,1]],[[1,2,2,1],[0,1,4,1],[1,3,3,0],[1,2,1,1]],[[1,2,2,2],[0,1,3,1],[1,3,3,0],[1,2,1,1]],[[1,2,3,1],[0,1,3,1],[1,3,3,0],[1,2,1,1]],[[1,3,2,1],[0,1,3,1],[1,3,3,0],[1,2,1,1]],[[2,2,2,1],[0,1,3,1],[1,3,3,0],[1,2,1,1]],[[1,2,2,1],[0,1,3,1],[1,3,3,0],[1,1,2,2]],[[1,2,2,1],[0,1,3,1],[1,3,3,0],[1,1,3,1]],[[1,2,2,1],[0,1,3,1],[1,3,4,0],[1,1,2,1]],[[1,2,2,1],[0,1,3,1],[1,4,3,0],[1,1,2,1]],[[1,2,2,1],[0,1,4,1],[1,3,3,0],[1,1,2,1]],[[1,2,2,2],[0,1,3,1],[1,3,3,0],[1,1,2,1]],[[1,2,3,1],[0,1,3,1],[1,3,3,0],[1,1,2,1]],[[1,3,2,1],[0,1,3,1],[1,3,3,0],[1,1,2,1]],[[2,2,2,1],[0,1,3,1],[1,3,3,0],[1,1,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,3,0],[0,0,2,1]],[[0,2,3,1],[1,2,2,2],[2,3,3,0],[0,0,2,1]],[[0,2,2,2],[1,2,2,2],[2,3,3,0],[0,0,2,1]],[[0,2,2,1],[1,2,2,3],[2,3,3,0],[0,0,2,1]],[[1,2,2,1],[0,1,4,1],[1,3,2,2],[1,2,1,0]],[[1,2,2,2],[0,1,3,1],[1,3,2,2],[1,2,1,0]],[[1,2,3,1],[0,1,3,1],[1,3,2,2],[1,2,1,0]],[[1,3,2,1],[0,1,3,1],[1,3,2,2],[1,2,1,0]],[[2,2,2,1],[0,1,3,1],[1,3,2,2],[1,2,1,0]],[[1,2,2,1],[0,1,4,1],[1,3,2,2],[1,2,0,1]],[[0,3,2,1],[1,2,2,2],[2,3,3,1],[0,0,1,1]],[[0,2,3,1],[1,2,2,2],[2,3,3,1],[0,0,1,1]],[[0,2,2,2],[1,2,2,2],[2,3,3,1],[0,0,1,1]],[[0,2,2,1],[1,2,2,3],[2,3,3,1],[0,0,1,1]],[[0,3,2,1],[1,2,2,2],[2,3,3,1],[0,0,2,0]],[[0,2,3,1],[1,2,2,2],[2,3,3,1],[0,0,2,0]],[[0,2,2,2],[1,2,2,2],[2,3,3,1],[0,0,2,0]],[[0,2,2,1],[1,2,2,3],[2,3,3,1],[0,0,2,0]],[[1,2,2,2],[0,1,3,1],[1,3,2,2],[1,2,0,1]],[[1,2,3,1],[0,1,3,1],[1,3,2,2],[1,2,0,1]],[[1,3,2,1],[0,1,3,1],[1,3,2,2],[1,2,0,1]],[[2,2,2,1],[0,1,3,1],[1,3,2,2],[1,2,0,1]],[[0,3,2,1],[1,2,2,2],[2,3,3,1],[0,2,0,0]],[[0,2,3,1],[1,2,2,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,2],[1,2,2,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,2,2,3],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,1,4,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,2],[0,1,3,1],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[0,1,3,1],[1,3,2,2],[1,1,2,0]],[[1,3,2,1],[0,1,3,1],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[0,1,3,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,1,4,1],[1,3,2,2],[1,1,1,1]],[[1,2,2,2],[0,1,3,1],[1,3,2,2],[1,1,1,1]],[[1,2,3,1],[0,1,3,1],[1,3,2,2],[1,1,1,1]],[[1,3,2,1],[0,1,3,1],[1,3,2,2],[1,1,1,1]],[[2,2,2,1],[0,1,3,1],[1,3,2,2],[1,1,1,1]],[[1,2,2,1],[0,1,4,1],[1,3,2,2],[1,0,2,1]],[[1,2,2,2],[0,1,3,1],[1,3,2,2],[1,0,2,1]],[[1,2,3,1],[0,1,3,1],[1,3,2,2],[1,0,2,1]],[[1,3,2,1],[0,1,3,1],[1,3,2,2],[1,0,2,1]],[[1,2,2,1],[0,1,3,1],[1,3,2,1],[1,2,3,0]],[[1,2,2,1],[0,1,3,1],[1,3,2,1],[1,3,2,0]],[[1,2,2,1],[0,1,3,1],[1,3,2,1],[2,2,2,0]],[[1,2,2,1],[0,1,3,1],[1,4,2,1],[1,2,2,0]],[[1,2,2,1],[0,1,3,1],[1,3,2,0],[1,2,2,2]],[[1,2,2,1],[0,1,3,1],[1,3,2,0],[1,2,3,1]],[[1,2,2,1],[0,1,3,1],[1,3,2,0],[1,3,2,1]],[[1,2,2,1],[0,1,3,1],[1,3,2,0],[2,2,2,1]],[[1,2,2,1],[0,1,3,1],[1,4,2,0],[1,2,2,1]],[[0,3,2,1],[1,2,2,2],[2,3,3,1],[1,1,0,0]],[[0,2,3,1],[1,2,2,2],[2,3,3,1],[1,1,0,0]],[[0,2,2,2],[1,2,2,2],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,2,2,3],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,1,4,1],[1,3,1,2],[1,1,2,1]],[[1,2,2,2],[0,1,3,1],[1,3,1,2],[1,1,2,1]],[[1,2,3,1],[0,1,3,1],[1,3,1,2],[1,1,2,1]],[[1,3,2,1],[0,1,3,1],[1,3,1,2],[1,1,2,1]],[[2,2,2,1],[0,1,3,1],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,1,4,1],[1,3,0,2],[1,2,2,1]],[[1,2,2,2],[0,1,3,1],[1,3,0,2],[1,2,2,1]],[[1,2,3,1],[0,1,3,1],[1,3,0,2],[1,2,2,1]],[[1,3,2,1],[0,1,3,1],[1,3,0,2],[1,2,2,1]],[[2,2,2,1],[0,1,3,1],[1,3,0,2],[1,2,2,1]],[[1,2,2,1],[0,1,3,1],[1,2,3,1],[1,2,3,0]],[[1,2,2,1],[0,1,3,1],[1,2,3,1],[1,3,2,0]],[[1,2,2,1],[0,1,3,1],[1,2,3,1],[2,2,2,0]],[[1,2,2,1],[0,1,3,1],[1,2,4,1],[1,2,2,0]],[[1,2,2,1],[0,1,4,1],[1,2,3,1],[1,2,2,0]],[[1,2,2,2],[0,1,3,1],[1,2,3,1],[1,2,2,0]],[[0,3,2,1],[1,2,2,2],[2,3,3,2],[0,0,0,1]],[[0,2,3,1],[1,2,2,2],[2,3,3,2],[0,0,0,1]],[[0,2,2,2],[1,2,2,2],[2,3,3,2],[0,0,0,1]],[[0,2,2,1],[1,2,2,3],[2,3,3,2],[0,0,0,1]],[[0,2,2,1],[1,2,2,2],[2,3,3,3],[0,0,0,1]],[[1,2,3,1],[0,1,3,1],[1,2,3,1],[1,2,2,0]],[[1,3,2,1],[0,1,3,1],[1,2,3,1],[1,2,2,0]],[[2,2,2,1],[0,1,3,1],[1,2,3,1],[1,2,2,0]],[[1,2,2,1],[0,1,3,1],[1,2,4,1],[1,2,1,1]],[[1,2,2,1],[0,1,4,1],[1,2,3,1],[1,2,1,1]],[[1,2,2,2],[0,1,3,1],[1,2,3,1],[1,2,1,1]],[[1,2,3,1],[0,1,3,1],[1,2,3,1],[1,2,1,1]],[[1,3,2,1],[0,1,3,1],[1,2,3,1],[1,2,1,1]],[[2,2,2,1],[0,1,3,1],[1,2,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,3,1],[1,2,3,0],[1,2,2,2]],[[1,2,2,1],[0,1,3,1],[1,2,3,0],[1,2,3,1]],[[1,2,2,1],[0,1,3,1],[1,2,3,0],[1,3,2,1]],[[1,2,2,1],[0,1,3,1],[1,2,3,0],[2,2,2,1]],[[1,2,2,1],[0,1,3,1],[1,2,4,0],[1,2,2,1]],[[1,2,2,1],[0,1,4,1],[1,2,3,0],[1,2,2,1]],[[1,2,2,2],[0,1,3,1],[1,2,3,0],[1,2,2,1]],[[1,2,3,1],[0,1,3,1],[1,2,3,0],[1,2,2,1]],[[1,3,2,1],[0,1,3,1],[1,2,3,0],[1,2,2,1]],[[2,2,2,1],[0,1,3,1],[1,2,3,0],[1,2,2,1]],[[1,2,2,1],[0,1,4,1],[1,2,2,2],[1,2,2,0]],[[1,2,2,2],[0,1,3,1],[1,2,2,2],[1,2,2,0]],[[1,2,3,1],[0,1,3,1],[1,2,2,2],[1,2,2,0]],[[1,3,2,1],[0,1,3,1],[1,2,2,2],[1,2,2,0]],[[2,2,2,1],[0,1,3,1],[1,2,2,2],[1,2,2,0]],[[1,2,2,1],[0,1,4,1],[1,2,2,2],[1,2,1,1]],[[1,2,2,2],[0,1,3,1],[1,2,2,2],[1,2,1,1]],[[1,2,3,1],[0,1,3,1],[1,2,2,2],[1,2,1,1]],[[1,3,2,1],[0,1,3,1],[1,2,2,2],[1,2,1,1]],[[2,2,2,1],[0,1,3,1],[1,2,2,2],[1,2,1,1]],[[1,2,2,1],[0,1,4,1],[1,2,1,2],[1,2,2,1]],[[1,2,2,2],[0,1,3,1],[1,2,1,2],[1,2,2,1]],[[1,2,3,1],[0,1,3,1],[1,2,1,2],[1,2,2,1]],[[1,3,2,1],[0,1,3,1],[1,2,1,2],[1,2,2,1]],[[2,2,2,1],[0,1,3,1],[1,2,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,3,1],[0,3,3,1],[1,2,3,0]],[[1,2,2,1],[0,1,3,1],[0,3,3,1],[1,3,2,0]],[[1,2,2,1],[0,1,3,1],[0,3,4,1],[1,2,2,0]],[[1,2,2,1],[0,1,4,1],[0,3,3,1],[1,2,2,0]],[[1,2,2,2],[0,1,3,1],[0,3,3,1],[1,2,2,0]],[[1,2,3,1],[0,1,3,1],[0,3,3,1],[1,2,2,0]],[[1,3,2,1],[0,1,3,1],[0,3,3,1],[1,2,2,0]],[[1,2,2,1],[0,1,3,1],[0,3,4,1],[1,2,1,1]],[[1,2,2,1],[0,1,4,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,2],[0,1,3,1],[0,3,3,1],[1,2,1,1]],[[1,2,3,1],[0,1,3,1],[0,3,3,1],[1,2,1,1]],[[1,3,2,1],[0,1,3,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,3,1],[0,3,3,0],[1,2,2,2]],[[1,2,2,1],[0,1,3,1],[0,3,3,0],[1,2,3,1]],[[1,2,2,1],[0,1,3,1],[0,3,3,0],[1,3,2,1]],[[1,2,2,1],[0,1,3,1],[0,3,4,0],[1,2,2,1]],[[1,2,2,1],[0,1,4,1],[0,3,3,0],[1,2,2,1]],[[1,2,2,2],[0,1,3,1],[0,3,3,0],[1,2,2,1]],[[1,2,3,1],[0,1,3,1],[0,3,3,0],[1,2,2,1]],[[1,3,2,1],[0,1,3,1],[0,3,3,0],[1,2,2,1]],[[1,2,2,1],[0,1,4,1],[0,3,2,2],[1,2,2,0]],[[1,2,2,2],[0,1,3,1],[0,3,2,2],[1,2,2,0]],[[1,2,3,1],[0,1,3,1],[0,3,2,2],[1,2,2,0]],[[1,3,2,1],[0,1,3,1],[0,3,2,2],[1,2,2,0]],[[1,2,2,1],[0,1,4,1],[0,3,2,2],[1,2,1,1]],[[1,2,2,2],[0,1,3,1],[0,3,2,2],[1,2,1,1]],[[1,2,3,1],[0,1,3,1],[0,3,2,2],[1,2,1,1]],[[1,3,2,1],[0,1,3,1],[0,3,2,2],[1,2,1,1]],[[1,2,2,1],[0,1,4,1],[0,3,1,2],[1,2,2,1]],[[1,2,2,2],[0,1,3,1],[0,3,1,2],[1,2,2,1]],[[1,2,3,1],[0,1,3,1],[0,3,1,2],[1,2,2,1]],[[1,3,2,1],[0,1,3,1],[0,3,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[0,1,3,0],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[0,1,3,0],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[0,1,3,0],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[0,1,3,0],[2,4,3,2],[1,1,1,0]],[[1,2,2,1],[0,1,3,0],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[0,1,4,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[0,1,3,0],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[0,1,3,0],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[0,1,3,0],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[0,1,3,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[0,1,3,0],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[0,1,3,0],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[0,1,3,0],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[0,1,3,0],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[0,1,4,0],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[0,1,3,0],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[0,1,3,0],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[0,1,3,0],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[0,1,3,0],[2,3,3,2],[1,1,0,1]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[0,1,3,0],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[0,1,3,0],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[0,1,3,0],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[0,1,4,0],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[0,1,3,0],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[0,1,3,0],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[0,1,3,0],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[0,1,3,0],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[1,0,1,2]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[0,1,3,0],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[0,1,3,0],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[0,1,3,0],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[0,1,3,0],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[0,1,4,0],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[0,1,3,0],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[0,1,3,0],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[0,1,3,0],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[0,1,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,3,0],[1,0,3,3],[1,2,2,1]],[[0,2,2,1],[1,2,3,0],[1,0,3,2],[1,2,3,1]],[[0,2,2,1],[1,2,3,0],[1,0,3,2],[1,2,2,2]],[[0,2,2,1],[1,2,3,0],[1,1,2,3],[1,2,2,1]],[[0,2,2,1],[1,2,3,0],[1,1,2,2],[2,2,2,1]],[[0,2,2,1],[1,2,3,0],[1,1,2,2],[1,3,2,1]],[[0,2,2,1],[1,2,3,0],[1,1,2,2],[1,2,3,1]],[[0,2,2,1],[1,2,3,0],[1,1,2,2],[1,2,2,2]],[[0,3,2,1],[1,2,3,0],[1,1,3,1],[1,2,2,1]],[[0,2,3,1],[1,2,3,0],[1,1,3,1],[1,2,2,1]],[[0,2,2,2],[1,2,3,0],[1,1,3,1],[1,2,2,1]],[[0,2,2,1],[1,2,4,0],[1,1,3,1],[1,2,2,1]],[[0,2,2,1],[1,2,3,0],[1,1,4,1],[1,2,2,1]],[[0,2,2,1],[1,2,3,0],[1,1,3,1],[2,2,2,1]],[[0,2,2,1],[1,2,3,0],[1,1,3,1],[1,3,2,1]],[[0,2,2,1],[1,2,3,0],[1,1,3,1],[1,2,3,1]],[[0,2,2,1],[1,2,3,0],[1,1,3,1],[1,2,2,2]],[[0,3,2,1],[1,2,3,0],[1,1,3,2],[1,2,1,1]],[[0,2,3,1],[1,2,3,0],[1,1,3,2],[1,2,1,1]],[[0,2,2,2],[1,2,3,0],[1,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,4,0],[1,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,3,0],[1,1,4,2],[1,2,1,1]],[[0,2,2,1],[1,2,3,0],[1,1,3,3],[1,2,1,1]],[[0,2,2,1],[1,2,3,0],[1,1,3,2],[1,2,1,2]],[[0,3,2,1],[1,2,3,0],[1,1,3,2],[1,2,2,0]],[[0,2,3,1],[1,2,3,0],[1,1,3,2],[1,2,2,0]],[[0,2,2,2],[1,2,3,0],[1,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,4,0],[1,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,3,0],[1,1,4,2],[1,2,2,0]],[[0,2,2,1],[1,2,3,0],[1,1,3,3],[1,2,2,0]],[[0,2,2,1],[1,2,3,0],[1,1,3,2],[2,2,2,0]],[[0,2,2,1],[1,2,3,0],[1,1,3,2],[1,3,2,0]],[[0,2,2,1],[1,2,3,0],[1,1,3,2],[1,2,3,0]],[[0,2,2,1],[1,2,3,0],[1,2,2,3],[1,1,2,1]],[[0,2,2,1],[1,2,3,0],[1,2,2,2],[1,1,3,1]],[[0,2,2,1],[1,2,3,0],[1,2,2,2],[1,1,2,2]],[[0,3,2,1],[1,2,3,0],[1,2,3,1],[1,1,2,1]],[[0,2,3,1],[1,2,3,0],[1,2,3,1],[1,1,2,1]],[[0,2,2,2],[1,2,3,0],[1,2,3,1],[1,1,2,1]],[[0,2,2,1],[1,2,4,0],[1,2,3,1],[1,1,2,1]],[[0,2,2,1],[1,2,3,0],[1,2,4,1],[1,1,2,1]],[[0,2,2,1],[1,2,3,0],[1,2,3,1],[1,1,3,1]],[[0,2,2,1],[1,2,3,0],[1,2,3,1],[1,1,2,2]],[[0,3,2,1],[1,2,3,0],[1,2,3,1],[1,2,1,1]],[[0,2,3,1],[1,2,3,0],[1,2,3,1],[1,2,1,1]],[[0,2,2,2],[1,2,3,0],[1,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,2,4,0],[1,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,2,3,0],[1,2,4,1],[1,2,1,1]],[[0,2,3,1],[1,2,3,0],[1,2,3,2],[1,0,2,1]],[[0,2,2,2],[1,2,3,0],[1,2,3,2],[1,0,2,1]],[[0,2,2,1],[1,2,4,0],[1,2,3,2],[1,0,2,1]],[[0,2,2,1],[1,2,3,0],[1,2,4,2],[1,0,2,1]],[[0,2,2,1],[1,2,3,0],[1,2,3,3],[1,0,2,1]],[[0,2,2,1],[1,2,3,0],[1,2,3,2],[1,0,2,2]],[[0,3,2,1],[1,2,3,0],[1,2,3,2],[1,1,1,1]],[[0,2,3,1],[1,2,3,0],[1,2,3,2],[1,1,1,1]],[[0,2,2,2],[1,2,3,0],[1,2,3,2],[1,1,1,1]],[[0,2,2,1],[1,2,4,0],[1,2,3,2],[1,1,1,1]],[[0,2,2,1],[1,2,3,0],[1,2,4,2],[1,1,1,1]],[[0,2,2,1],[1,2,3,0],[1,2,3,3],[1,1,1,1]],[[0,2,2,1],[1,2,3,0],[1,2,3,2],[1,1,1,2]],[[0,3,2,1],[1,2,3,0],[1,2,3,2],[1,1,2,0]],[[0,2,3,1],[1,2,3,0],[1,2,3,2],[1,1,2,0]],[[0,2,2,2],[1,2,3,0],[1,2,3,2],[1,1,2,0]],[[0,2,2,1],[1,2,4,0],[1,2,3,2],[1,1,2,0]],[[0,2,2,1],[1,2,3,0],[1,2,4,2],[1,1,2,0]],[[0,2,2,1],[1,2,3,0],[1,2,3,3],[1,1,2,0]],[[0,2,2,1],[1,2,3,0],[1,2,3,2],[1,1,3,0]],[[0,3,2,1],[1,2,3,0],[1,2,3,2],[1,2,0,1]],[[0,2,3,1],[1,2,3,0],[1,2,3,2],[1,2,0,1]],[[0,2,2,2],[1,2,3,0],[1,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,2,4,0],[1,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,2,3,0],[1,2,4,2],[1,2,0,1]],[[0,2,2,1],[1,2,3,0],[1,2,3,3],[1,2,0,1]],[[0,2,2,1],[1,2,3,0],[1,2,3,2],[1,2,0,2]],[[0,3,2,1],[1,2,3,0],[1,2,3,2],[1,2,1,0]],[[0,2,3,1],[1,2,3,0],[1,2,3,2],[1,2,1,0]],[[0,2,2,2],[1,2,3,0],[1,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,2,4,0],[1,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,2,3,0],[1,2,4,2],[1,2,1,0]],[[0,2,2,1],[1,2,3,0],[1,2,3,3],[1,2,1,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[0,1,3,0],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[0,1,3,0],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[0,1,3,0],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,1,4,0],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[0,1,3,0],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[0,1,3,0],[2,3,3,2],[0,2,1,0]],[[0,3,2,1],[1,2,3,0],[1,3,0,2],[1,2,2,1]],[[0,2,3,1],[1,2,3,0],[1,3,0,2],[1,2,2,1]],[[0,2,2,2],[1,2,3,0],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,4,0],[1,3,0,2],[1,2,2,1]],[[0,3,2,1],[1,2,3,0],[1,3,1,1],[1,2,2,1]],[[0,2,3,1],[1,2,3,0],[1,3,1,1],[1,2,2,1]],[[0,2,2,2],[1,2,3,0],[1,3,1,1],[1,2,2,1]],[[0,2,2,1],[1,2,4,0],[1,3,1,1],[1,2,2,1]],[[0,3,2,1],[1,2,3,0],[1,3,1,2],[1,2,2,0]],[[0,2,3,1],[1,2,3,0],[1,3,1,2],[1,2,2,0]],[[0,2,2,2],[1,2,3,0],[1,3,1,2],[1,2,2,0]],[[0,2,2,1],[1,2,4,0],[1,3,1,2],[1,2,2,0]],[[0,3,2,1],[1,2,3,0],[1,3,2,1],[1,1,2,1]],[[0,2,3,1],[1,2,3,0],[1,3,2,1],[1,1,2,1]],[[0,2,2,2],[1,2,3,0],[1,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,2,4,0],[1,3,2,1],[1,1,2,1]],[[0,3,2,1],[1,2,3,0],[1,3,2,1],[1,2,1,1]],[[0,2,3,1],[1,2,3,0],[1,3,2,1],[1,2,1,1]],[[0,2,2,2],[1,2,3,0],[1,3,2,1],[1,2,1,1]],[[0,2,2,1],[1,2,4,0],[1,3,2,1],[1,2,1,1]],[[0,3,2,1],[1,2,3,0],[1,3,2,2],[1,1,1,1]],[[0,2,3,1],[1,2,3,0],[1,3,2,2],[1,1,1,1]],[[0,2,2,2],[1,2,3,0],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[1,2,4,0],[1,3,2,2],[1,1,1,1]],[[0,3,2,1],[1,2,3,0],[1,3,2,2],[1,1,2,0]],[[0,2,3,1],[1,2,3,0],[1,3,2,2],[1,1,2,0]],[[0,2,2,2],[1,2,3,0],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,2,4,0],[1,3,2,2],[1,1,2,0]],[[0,3,2,1],[1,2,3,0],[1,3,2,2],[1,2,0,1]],[[0,2,3,1],[1,2,3,0],[1,3,2,2],[1,2,0,1]],[[0,2,2,2],[1,2,3,0],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[1,2,4,0],[1,3,2,2],[1,2,0,1]],[[0,3,2,1],[1,2,3,0],[1,3,2,2],[1,2,1,0]],[[0,2,3,1],[1,2,3,0],[1,3,2,2],[1,2,1,0]],[[0,2,2,2],[1,2,3,0],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[1,2,4,0],[1,3,2,2],[1,2,1,0]],[[1,3,2,1],[0,1,3,0],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[0,1,3,0],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[0,1,3,0],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[0,1,3,0],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[0,1,3,0],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[0,1,3,0],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[0,1,4,0],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[0,1,3,0],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[0,1,3,0],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[0,1,3,0],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[0,1,3,0],[2,3,3,2],[0,2,0,1]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[0,1,3,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[0,1,3,0],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[0,1,3,0],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[0,1,3,0],[3,3,3,2],[0,1,2,0]],[[0,3,2,1],[1,2,3,0],[1,3,3,2],[1,2,0,0]],[[0,2,3,1],[1,2,3,0],[1,3,3,2],[1,2,0,0]],[[0,2,2,2],[1,2,3,0],[1,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,2,4,0],[1,3,3,2],[1,2,0,0]],[[1,2,2,1],[0,1,4,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[0,1,3,0],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[0,1,3,0],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[0,1,3,0],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[0,1,3,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[0,1,3,0],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[0,1,3,0],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[0,1,3,0],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[0,1,3,0],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,1,4,0],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[0,1,3,0],[2,3,3,2],[0,1,1,1]],[[1,2,3,1],[0,1,3,0],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[0,1,3,0],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[0,1,3,0],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,1,3,0],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[0,1,3,0],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[0,1,3,0],[2,3,4,2],[0,0,2,1]],[[1,2,2,1],[0,1,4,0],[2,3,3,2],[0,0,2,1]],[[1,2,2,2],[0,1,3,0],[2,3,3,2],[0,0,2,1]],[[1,2,3,1],[0,1,3,0],[2,3,3,2],[0,0,2,1]],[[1,3,2,1],[0,1,3,0],[2,3,3,2],[0,0,2,1]],[[2,2,2,1],[0,1,3,0],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[1,2,3,0],[3,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,3,0],[2,0,2,3],[1,2,2,1]],[[0,2,2,1],[1,2,3,0],[2,0,2,2],[2,2,2,1]],[[0,2,2,1],[1,2,3,0],[2,0,2,2],[1,3,2,1]],[[0,2,2,1],[1,2,3,0],[2,0,2,2],[1,2,3,1]],[[0,2,2,1],[1,2,3,0],[2,0,2,2],[1,2,2,2]],[[0,3,2,1],[1,2,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,3,1],[1,2,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,2],[1,2,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[1,2,4,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[1,2,3,0],[3,0,3,1],[1,2,2,1]],[[0,2,2,1],[1,2,3,0],[2,0,4,1],[1,2,2,1]],[[0,2,2,1],[1,2,3,0],[2,0,3,1],[2,2,2,1]],[[0,2,2,1],[1,2,3,0],[2,0,3,1],[1,3,2,1]],[[0,2,2,1],[1,2,3,0],[2,0,3,1],[1,2,3,1]],[[0,2,2,1],[1,2,3,0],[2,0,3,1],[1,2,2,2]],[[0,2,2,1],[1,2,3,0],[2,0,3,3],[0,2,2,1]],[[0,2,2,1],[1,2,3,0],[2,0,3,2],[0,2,3,1]],[[0,2,2,1],[1,2,3,0],[2,0,3,2],[0,2,2,2]],[[0,3,2,1],[1,2,3,0],[2,0,3,2],[1,2,1,1]],[[0,2,3,1],[1,2,3,0],[2,0,3,2],[1,2,1,1]],[[0,2,2,2],[1,2,3,0],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,4,0],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,3,0],[2,0,4,2],[1,2,1,1]],[[0,2,2,1],[1,2,3,0],[2,0,3,3],[1,2,1,1]],[[0,2,2,1],[1,2,3,0],[2,0,3,2],[1,2,1,2]],[[0,3,2,1],[1,2,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,3,1],[1,2,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,2],[1,2,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,4,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,3,0],[3,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,3,0],[2,0,4,2],[1,2,2,0]],[[0,2,2,1],[1,2,3,0],[2,0,3,3],[1,2,2,0]],[[0,2,2,1],[1,2,3,0],[2,0,3,2],[2,2,2,0]],[[0,2,2,1],[1,2,3,0],[2,0,3,2],[1,3,2,0]],[[0,2,2,1],[1,2,3,0],[2,0,3,2],[1,2,3,0]],[[0,2,2,1],[1,2,3,0],[2,1,2,3],[0,2,2,1]],[[0,2,2,1],[1,2,3,0],[2,1,2,2],[0,3,2,1]],[[0,2,2,1],[1,2,3,0],[2,1,2,2],[0,2,3,1]],[[0,2,2,1],[1,2,3,0],[2,1,2,2],[0,2,2,2]],[[0,3,2,1],[1,2,3,0],[2,1,3,1],[0,2,2,1]],[[0,2,3,1],[1,2,3,0],[2,1,3,1],[0,2,2,1]],[[0,2,2,2],[1,2,3,0],[2,1,3,1],[0,2,2,1]],[[0,2,2,1],[1,2,4,0],[2,1,3,1],[0,2,2,1]],[[0,2,2,1],[1,2,3,0],[2,1,4,1],[0,2,2,1]],[[0,2,2,1],[1,2,3,0],[2,1,3,1],[0,3,2,1]],[[0,2,2,1],[1,2,3,0],[2,1,3,1],[0,2,3,1]],[[0,2,2,1],[1,2,3,0],[2,1,3,1],[0,2,2,2]],[[0,3,2,1],[1,2,3,0],[2,1,3,2],[0,2,1,1]],[[0,2,3,1],[1,2,3,0],[2,1,3,2],[0,2,1,1]],[[0,2,2,2],[1,2,3,0],[2,1,3,2],[0,2,1,1]],[[0,2,2,1],[1,2,4,0],[2,1,3,2],[0,2,1,1]],[[0,2,2,1],[1,2,3,0],[2,1,4,2],[0,2,1,1]],[[0,2,2,1],[1,2,3,0],[2,1,3,3],[0,2,1,1]],[[0,2,2,1],[1,2,3,0],[2,1,3,2],[0,2,1,2]],[[0,3,2,1],[1,2,3,0],[2,1,3,2],[0,2,2,0]],[[0,2,3,1],[1,2,3,0],[2,1,3,2],[0,2,2,0]],[[0,2,2,2],[1,2,3,0],[2,1,3,2],[0,2,2,0]],[[0,2,2,1],[1,2,4,0],[2,1,3,2],[0,2,2,0]],[[0,2,2,1],[1,2,3,0],[2,1,4,2],[0,2,2,0]],[[0,2,2,1],[1,2,3,0],[2,1,3,3],[0,2,2,0]],[[0,2,2,1],[1,2,3,0],[2,1,3,2],[0,3,2,0]],[[0,2,2,1],[1,2,3,0],[2,1,3,2],[0,2,3,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,1],[0,1,3,0],[2,4,3,1],[1,2,0,1]],[[1,2,2,1],[0,1,3,0],[3,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,2,3,0],[2,2,2,3],[0,1,2,1]],[[0,2,2,1],[1,2,3,0],[2,2,2,2],[0,1,3,1]],[[0,2,2,1],[1,2,3,0],[2,2,2,2],[0,1,2,2]],[[0,2,2,1],[1,2,3,0],[2,2,2,3],[1,0,2,1]],[[0,2,2,1],[1,2,3,0],[2,2,2,2],[1,0,3,1]],[[0,2,2,1],[1,2,3,0],[2,2,2,2],[1,0,2,2]],[[1,2,2,1],[0,1,3,0],[2,3,3,1],[2,1,1,1]],[[0,3,2,1],[1,2,3,0],[2,2,3,1],[0,1,2,1]],[[0,2,3,1],[1,2,3,0],[2,2,3,1],[0,1,2,1]],[[0,2,2,2],[1,2,3,0],[2,2,3,1],[0,1,2,1]],[[0,2,2,1],[1,2,4,0],[2,2,3,1],[0,1,2,1]],[[0,2,2,1],[1,2,3,0],[2,2,4,1],[0,1,2,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,1],[0,1,3,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,1],[0,1,2,2]],[[0,3,2,1],[1,2,3,0],[2,2,3,1],[0,2,1,1]],[[0,2,3,1],[1,2,3,0],[2,2,3,1],[0,2,1,1]],[[0,2,2,2],[1,2,3,0],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[1,2,4,0],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[1,2,3,0],[2,2,4,1],[0,2,1,1]],[[0,3,2,1],[1,2,3,0],[2,2,3,1],[1,0,2,1]],[[0,2,3,1],[1,2,3,0],[2,2,3,1],[1,0,2,1]],[[0,2,2,2],[1,2,3,0],[2,2,3,1],[1,0,2,1]],[[0,2,2,1],[1,2,4,0],[2,2,3,1],[1,0,2,1]],[[0,2,2,1],[1,2,3,0],[2,2,4,1],[1,0,2,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,1],[1,0,3,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,1],[1,0,2,2]],[[0,3,2,1],[1,2,3,0],[2,2,3,1],[1,1,1,1]],[[0,2,3,1],[1,2,3,0],[2,2,3,1],[1,1,1,1]],[[0,2,2,2],[1,2,3,0],[2,2,3,1],[1,1,1,1]],[[0,2,2,1],[1,2,4,0],[2,2,3,1],[1,1,1,1]],[[0,2,2,1],[1,2,3,0],[2,2,4,1],[1,1,1,1]],[[1,2,2,1],[0,1,3,0],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[0,1,3,0],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[0,1,3,0],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,1,4,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,2],[0,1,3,0],[2,3,3,1],[1,1,1,1]],[[1,2,3,1],[0,1,3,0],[2,3,3,1],[1,1,1,1]],[[1,3,2,1],[0,1,3,0],[2,3,3,1],[1,1,1,1]],[[2,2,2,1],[0,1,3,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,1,3,0],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[0,1,3,0],[2,3,3,1],[1,0,3,1]],[[0,3,2,1],[1,2,3,0],[2,2,3,2],[0,0,2,1]],[[0,2,3,1],[1,2,3,0],[2,2,3,2],[0,0,2,1]],[[0,2,2,2],[1,2,3,0],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[1,2,4,0],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[1,2,3,0],[2,2,4,2],[0,0,2,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,3],[0,0,2,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,2],[0,0,2,2]],[[0,3,2,1],[1,2,3,0],[2,2,3,2],[0,1,1,1]],[[0,2,3,1],[1,2,3,0],[2,2,3,2],[0,1,1,1]],[[0,2,2,2],[1,2,3,0],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[1,2,4,0],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[1,2,3,0],[2,2,4,2],[0,1,1,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,3],[0,1,1,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,2],[0,1,1,2]],[[0,3,2,1],[1,2,3,0],[2,2,3,2],[0,1,2,0]],[[0,2,3,1],[1,2,3,0],[2,2,3,2],[0,1,2,0]],[[0,2,2,2],[1,2,3,0],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[1,2,4,0],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[1,2,3,0],[2,2,4,2],[0,1,2,0]],[[0,2,2,1],[1,2,3,0],[2,2,3,3],[0,1,2,0]],[[0,2,2,1],[1,2,3,0],[2,2,3,2],[0,1,3,0]],[[0,3,2,1],[1,2,3,0],[2,2,3,2],[0,2,0,1]],[[0,2,3,1],[1,2,3,0],[2,2,3,2],[0,2,0,1]],[[0,2,2,2],[1,2,3,0],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[1,2,4,0],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[1,2,3,0],[2,2,4,2],[0,2,0,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,3],[0,2,0,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,2],[0,2,0,2]],[[0,3,2,1],[1,2,3,0],[2,2,3,2],[0,2,1,0]],[[0,2,3,1],[1,2,3,0],[2,2,3,2],[0,2,1,0]],[[0,2,2,2],[1,2,3,0],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[1,2,4,0],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[1,2,3,0],[2,2,4,2],[0,2,1,0]],[[0,2,2,1],[1,2,3,0],[2,2,3,3],[0,2,1,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[0,1,3,0],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[0,1,3,0],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[0,1,3,0],[3,3,3,1],[1,0,2,1]],[[1,2,2,1],[0,1,4,0],[2,3,3,1],[1,0,2,1]],[[1,2,2,2],[0,1,3,0],[2,3,3,1],[1,0,2,1]],[[1,2,3,1],[0,1,3,0],[2,3,3,1],[1,0,2,1]],[[1,3,2,1],[0,1,3,0],[2,3,3,1],[1,0,2,1]],[[2,2,2,1],[0,1,3,0],[2,3,3,1],[1,0,2,1]],[[0,3,2,1],[1,2,3,0],[2,2,3,2],[1,0,1,1]],[[0,2,3,1],[1,2,3,0],[2,2,3,2],[1,0,1,1]],[[0,2,2,2],[1,2,3,0],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,4,0],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,3,0],[2,2,4,2],[1,0,1,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,3],[1,0,1,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,2],[1,0,1,2]],[[0,3,2,1],[1,2,3,0],[2,2,3,2],[1,0,2,0]],[[0,2,3,1],[1,2,3,0],[2,2,3,2],[1,0,2,0]],[[0,2,2,2],[1,2,3,0],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[1,2,4,0],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[1,2,3,0],[2,2,4,2],[1,0,2,0]],[[0,2,2,1],[1,2,3,0],[2,2,3,3],[1,0,2,0]],[[0,2,2,1],[1,2,3,0],[2,2,3,2],[1,0,3,0]],[[0,3,2,1],[1,2,3,0],[2,2,3,2],[1,1,0,1]],[[0,2,3,1],[1,2,3,0],[2,2,3,2],[1,1,0,1]],[[0,2,2,2],[1,2,3,0],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,2,4,0],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,2,3,0],[2,2,4,2],[1,1,0,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,3],[1,1,0,1]],[[0,2,2,1],[1,2,3,0],[2,2,3,2],[1,1,0,2]],[[0,3,2,1],[1,2,3,0],[2,2,3,2],[1,1,1,0]],[[0,2,3,1],[1,2,3,0],[2,2,3,2],[1,1,1,0]],[[0,2,2,2],[1,2,3,0],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[1,2,4,0],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[1,2,3,0],[2,2,4,2],[1,1,1,0]],[[0,2,2,1],[1,2,3,0],[2,2,3,3],[1,1,1,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[0,1,3,0],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[0,1,3,0],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[0,1,3,0],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[0,1,4,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,2],[0,1,3,0],[2,3,3,1],[0,2,1,1]],[[1,2,3,1],[0,1,3,0],[2,3,3,1],[0,2,1,1]],[[1,3,2,1],[0,1,3,0],[2,3,3,1],[0,2,1,1]],[[2,2,2,1],[0,1,3,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,1],[0,1,3,0],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[0,1,3,0],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[0,1,3,0],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[0,1,3,0],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[0,1,3,0],[3,3,3,1],[0,1,2,1]],[[1,2,2,1],[0,1,4,0],[2,3,3,1],[0,1,2,1]],[[1,2,2,2],[0,1,3,0],[2,3,3,1],[0,1,2,1]],[[1,2,3,1],[0,1,3,0],[2,3,3,1],[0,1,2,1]],[[1,3,2,1],[0,1,3,0],[2,3,3,1],[0,1,2,1]],[[2,2,2,1],[0,1,3,0],[2,3,3,1],[0,1,2,1]],[[1,2,2,1],[0,1,3,0],[2,3,3,0],[2,1,2,1]],[[1,2,2,1],[0,1,3,0],[2,4,3,0],[1,1,2,1]],[[1,2,2,1],[0,1,3,0],[3,3,3,0],[1,1,2,1]],[[1,2,2,1],[0,1,3,0],[2,3,3,0],[0,2,3,1]],[[0,3,2,1],[1,2,3,0],[2,3,0,2],[0,2,2,1]],[[0,2,3,1],[1,2,3,0],[2,3,0,2],[0,2,2,1]],[[0,2,2,2],[1,2,3,0],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,2,4,0],[2,3,0,2],[0,2,2,1]],[[0,3,2,1],[1,2,3,0],[2,3,0,2],[1,1,2,1]],[[0,2,3,1],[1,2,3,0],[2,3,0,2],[1,1,2,1]],[[0,2,2,2],[1,2,3,0],[2,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,2,4,0],[2,3,0,2],[1,1,2,1]],[[0,3,2,1],[1,2,3,0],[2,3,1,1],[0,2,2,1]],[[0,2,3,1],[1,2,3,0],[2,3,1,1],[0,2,2,1]],[[0,2,2,2],[1,2,3,0],[2,3,1,1],[0,2,2,1]],[[0,2,2,1],[1,2,4,0],[2,3,1,1],[0,2,2,1]],[[0,3,2,1],[1,2,3,0],[2,3,1,1],[1,1,2,1]],[[0,2,3,1],[1,2,3,0],[2,3,1,1],[1,1,2,1]],[[0,2,2,2],[1,2,3,0],[2,3,1,1],[1,1,2,1]],[[0,2,2,1],[1,2,4,0],[2,3,1,1],[1,1,2,1]],[[0,3,2,1],[1,2,3,0],[2,3,1,2],[0,2,2,0]],[[0,2,3,1],[1,2,3,0],[2,3,1,2],[0,2,2,0]],[[0,2,2,2],[1,2,3,0],[2,3,1,2],[0,2,2,0]],[[0,2,2,1],[1,2,4,0],[2,3,1,2],[0,2,2,0]],[[0,3,2,1],[1,2,3,0],[2,3,1,2],[1,1,2,0]],[[0,2,3,1],[1,2,3,0],[2,3,1,2],[1,1,2,0]],[[0,2,2,2],[1,2,3,0],[2,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,2,4,0],[2,3,1,2],[1,1,2,0]],[[1,2,2,1],[0,1,3,0],[2,3,3,0],[0,3,2,1]],[[1,2,2,1],[0,1,3,0],[2,4,3,0],[0,2,2,1]],[[1,2,2,1],[0,1,3,0],[3,3,3,0],[0,2,2,1]],[[0,3,2,1],[1,2,3,0],[2,3,2,1],[0,1,2,1]],[[0,2,3,1],[1,2,3,0],[2,3,2,1],[0,1,2,1]],[[0,2,2,2],[1,2,3,0],[2,3,2,1],[0,1,2,1]],[[0,2,2,1],[1,2,4,0],[2,3,2,1],[0,1,2,1]],[[0,3,2,1],[1,2,3,0],[2,3,2,1],[0,2,1,1]],[[0,2,3,1],[1,2,3,0],[2,3,2,1],[0,2,1,1]],[[0,2,2,2],[1,2,3,0],[2,3,2,1],[0,2,1,1]],[[0,2,2,1],[1,2,4,0],[2,3,2,1],[0,2,1,1]],[[0,3,2,1],[1,2,3,0],[2,3,2,1],[1,0,2,1]],[[0,2,3,1],[1,2,3,0],[2,3,2,1],[1,0,2,1]],[[0,2,2,2],[1,2,3,0],[2,3,2,1],[1,0,2,1]],[[0,2,2,1],[1,2,4,0],[2,3,2,1],[1,0,2,1]],[[0,3,2,1],[1,2,3,0],[2,3,2,1],[1,1,1,1]],[[0,2,3,1],[1,2,3,0],[2,3,2,1],[1,1,1,1]],[[0,2,2,2],[1,2,3,0],[2,3,2,1],[1,1,1,1]],[[0,2,2,1],[1,2,4,0],[2,3,2,1],[1,1,1,1]],[[1,2,2,1],[0,1,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[0,1,3,0],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[0,1,3,0],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,1,3,0],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[0,1,3,0],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[0,1,3,0],[2,3,2,3],[1,0,2,1]],[[0,3,2,1],[1,2,3,0],[2,3,2,2],[0,1,1,1]],[[0,2,3,1],[1,2,3,0],[2,3,2,2],[0,1,1,1]],[[0,2,2,2],[1,2,3,0],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,2,4,0],[2,3,2,2],[0,1,1,1]],[[0,3,2,1],[1,2,3,0],[2,3,2,2],[0,1,2,0]],[[0,2,3,1],[1,2,3,0],[2,3,2,2],[0,1,2,0]],[[0,2,2,2],[1,2,3,0],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,2,4,0],[2,3,2,2],[0,1,2,0]],[[0,3,2,1],[1,2,3,0],[2,3,2,2],[0,2,0,1]],[[0,2,3,1],[1,2,3,0],[2,3,2,2],[0,2,0,1]],[[0,2,2,2],[1,2,3,0],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,2,4,0],[2,3,2,2],[0,2,0,1]],[[0,3,2,1],[1,2,3,0],[2,3,2,2],[0,2,1,0]],[[0,2,3,1],[1,2,3,0],[2,3,2,2],[0,2,1,0]],[[0,2,2,2],[1,2,3,0],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,2,4,0],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,1,3,0],[2,3,2,2],[0,2,3,0]],[[1,2,2,1],[0,1,3,0],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[0,1,3,0],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[0,1,3,0],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[0,1,3,0],[2,3,2,2],[0,1,2,2]],[[0,3,2,1],[1,2,3,0],[2,3,2,2],[1,0,1,1]],[[0,2,3,1],[1,2,3,0],[2,3,2,2],[1,0,1,1]],[[0,2,2,2],[1,2,3,0],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,2,4,0],[2,3,2,2],[1,0,1,1]],[[0,3,2,1],[1,2,3,0],[2,3,2,2],[1,0,2,0]],[[0,2,3,1],[1,2,3,0],[2,3,2,2],[1,0,2,0]],[[0,2,2,2],[1,2,3,0],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,2,4,0],[2,3,2,2],[1,0,2,0]],[[0,3,2,1],[1,2,3,0],[2,3,2,2],[1,1,0,1]],[[0,2,3,1],[1,2,3,0],[2,3,2,2],[1,1,0,1]],[[0,2,2,2],[1,2,3,0],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,2,4,0],[2,3,2,2],[1,1,0,1]],[[0,3,2,1],[1,2,3,0],[2,3,2,2],[1,1,1,0]],[[0,2,3,1],[1,2,3,0],[2,3,2,2],[1,1,1,0]],[[0,2,2,2],[1,2,3,0],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,2,4,0],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,1,3,0],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[0,1,3,0],[2,3,2,3],[0,1,2,1]],[[1,2,2,1],[0,1,3,0],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[0,1,3,0],[2,4,2,1],[1,1,2,1]],[[0,3,2,1],[1,2,3,0],[2,3,2,2],[1,2,0,0]],[[0,2,3,1],[1,2,3,0],[2,3,2,2],[1,2,0,0]],[[0,2,2,2],[1,2,3,0],[2,3,2,2],[1,2,0,0]],[[0,2,2,1],[1,2,4,0],[2,3,2,2],[1,2,0,0]],[[1,2,2,1],[0,1,3,0],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[0,1,3,0],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[0,1,3,0],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[0,1,3,0],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[0,1,3,0],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[0,1,3,0],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[0,1,3,0],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[0,1,3,0],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,1,3,0],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[0,1,3,0],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[0,1,3,0],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[0,1,3,0],[2,3,1,3],[0,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[0,1,3,0],[3,3,1,2],[0,2,2,1]],[[0,3,2,1],[1,2,3,0],[2,3,3,1],[0,0,2,1]],[[0,2,3,1],[1,2,3,0],[2,3,3,1],[0,0,2,1]],[[0,2,2,2],[1,2,3,0],[2,3,3,1],[0,0,2,1]],[[0,2,2,1],[1,2,4,0],[2,3,3,1],[0,0,2,1]],[[0,2,2,1],[1,2,3,0],[2,3,4,1],[0,0,2,1]],[[1,2,2,1],[0,1,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[0,1,3,0],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[0,1,3,0],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,1,3,0],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[0,1,3,0],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[0,1,3,0],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[0,1,3,0],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[0,1,3,0],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[0,1,3,0],[2,2,3,3],[0,2,2,0]],[[1,2,2,1],[0,1,3,0],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[0,1,4,0],[2,2,3,2],[0,2,2,0]],[[1,2,2,2],[0,1,3,0],[2,2,3,2],[0,2,2,0]],[[1,2,3,1],[0,1,3,0],[2,2,3,2],[0,2,2,0]],[[1,3,2,1],[0,1,3,0],[2,2,3,2],[0,2,2,0]],[[2,2,2,1],[0,1,3,0],[2,2,3,2],[0,2,2,0]],[[0,3,2,1],[1,2,3,0],[2,3,3,2],[0,0,1,1]],[[0,2,3,1],[1,2,3,0],[2,3,3,2],[0,0,1,1]],[[0,2,2,2],[1,2,3,0],[2,3,3,2],[0,0,1,1]],[[0,2,2,1],[1,2,4,0],[2,3,3,2],[0,0,1,1]],[[0,2,2,1],[1,2,3,0],[2,3,4,2],[0,0,1,1]],[[0,2,2,1],[1,2,3,0],[2,3,3,3],[0,0,1,1]],[[0,2,2,1],[1,2,3,0],[2,3,3,2],[0,0,1,2]],[[0,3,2,1],[1,2,3,0],[2,3,3,2],[0,0,2,0]],[[0,2,3,1],[1,2,3,0],[2,3,3,2],[0,0,2,0]],[[0,2,2,2],[1,2,3,0],[2,3,3,2],[0,0,2,0]],[[0,2,2,1],[1,2,4,0],[2,3,3,2],[0,0,2,0]],[[0,2,2,1],[1,2,3,0],[2,3,4,2],[0,0,2,0]],[[0,2,2,1],[1,2,3,0],[2,3,3,3],[0,0,2,0]],[[1,2,2,1],[0,1,3,0],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[0,1,3,0],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[0,1,3,0],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[0,1,4,0],[2,2,3,2],[0,2,1,1]],[[1,2,2,2],[0,1,3,0],[2,2,3,2],[0,2,1,1]],[[1,2,3,1],[0,1,3,0],[2,2,3,2],[0,2,1,1]],[[1,3,2,1],[0,1,3,0],[2,2,3,2],[0,2,1,1]],[[2,2,2,1],[0,1,3,0],[2,2,3,2],[0,2,1,1]],[[0,3,2,1],[1,2,3,0],[2,3,3,2],[0,2,0,0]],[[0,2,3,1],[1,2,3,0],[2,3,3,2],[0,2,0,0]],[[0,2,2,2],[1,2,3,0],[2,3,3,2],[0,2,0,0]],[[0,2,2,1],[1,2,4,0],[2,3,3,2],[0,2,0,0]],[[1,2,2,1],[0,1,3,0],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[0,1,3,0],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[0,1,3,0],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,3,0],[2,2,3,1],[0,2,2,2]],[[1,2,2,1],[0,1,3,0],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[0,1,3,0],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[0,1,3,0],[2,2,4,1],[0,2,2,1]],[[1,2,2,1],[0,1,4,0],[2,2,3,1],[0,2,2,1]],[[1,2,2,2],[0,1,3,0],[2,2,3,1],[0,2,2,1]],[[1,2,3,1],[0,1,3,0],[2,2,3,1],[0,2,2,1]],[[1,3,2,1],[0,1,3,0],[2,2,3,1],[0,2,2,1]],[[2,2,2,1],[0,1,3,0],[2,2,3,1],[0,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,2,3,0],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[2,2,3,0],[1,3,2,1]],[[1,2,2,1],[0,1,3,0],[2,2,3,0],[2,2,2,1]],[[1,2,2,1],[0,1,3,0],[3,2,3,0],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[0,1,3,0],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[0,1,3,0],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[0,1,3,0],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[0,1,3,0],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[0,1,3,0],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[0,1,3,0],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[0,1,3,0],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[2,2,2,1],[1,3,2,1]],[[0,3,2,1],[1,2,3,0],[2,3,3,2],[1,1,0,0]],[[0,2,3,1],[1,2,3,0],[2,3,3,2],[1,1,0,0]],[[0,2,2,2],[1,2,3,0],[2,3,3,2],[1,1,0,0]],[[0,2,2,1],[1,2,4,0],[2,3,3,2],[1,1,0,0]],[[1,2,2,1],[0,1,3,0],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[0,1,3,0],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[0,1,3,0],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[0,1,3,0],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[0,1,3,0],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[0,1,3,0],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,1,3,0],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[0,1,3,0],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,1,4,0],[2,1,3,2],[1,2,2,0]],[[1,2,2,2],[0,1,3,0],[2,1,3,2],[1,2,2,0]],[[1,2,3,1],[0,1,3,0],[2,1,3,2],[1,2,2,0]],[[1,3,2,1],[0,1,3,0],[2,1,3,2],[1,2,2,0]],[[2,2,2,1],[0,1,3,0],[2,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,1,3,0],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,1,3,0],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,1,3,0],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[0,1,4,0],[2,1,3,2],[1,2,1,1]],[[1,2,2,2],[0,1,3,0],[2,1,3,2],[1,2,1,1]],[[1,2,3,1],[0,1,3,0],[2,1,3,2],[1,2,1,1]],[[1,3,2,1],[0,1,3,0],[2,1,3,2],[1,2,1,1]],[[2,2,2,1],[0,1,3,0],[2,1,3,2],[1,2,1,1]],[[1,2,2,1],[0,1,3,0],[2,1,3,2],[0,2,2,2]],[[1,2,2,1],[0,1,3,0],[2,1,3,2],[0,2,3,1]],[[1,2,2,1],[0,1,3,0],[2,1,3,3],[0,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[0,1,3,0],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[0,1,4,0],[2,1,3,1],[1,2,2,1]],[[1,2,2,2],[0,1,3,0],[2,1,3,1],[1,2,2,1]],[[1,2,3,1],[0,1,3,0],[2,1,3,1],[1,2,2,1]],[[1,3,2,1],[0,1,3,0],[2,1,3,1],[1,2,2,1]],[[2,2,2,1],[0,1,3,0],[2,1,3,1],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[2,1,2,2],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[0,1,3,0],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[2,0,3,2],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[2,0,3,3],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,1,3,0],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[0,1,3,0],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[0,1,3,0],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[0,1,3,0],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[0,1,4,0],[1,3,3,2],[1,2,1,0]],[[1,2,2,2],[0,1,3,0],[1,3,3,2],[1,2,1,0]],[[1,2,3,1],[0,1,3,0],[1,3,3,2],[1,2,1,0]],[[1,3,2,1],[0,1,3,0],[1,3,3,2],[1,2,1,0]],[[2,2,2,1],[0,1,3,0],[1,3,3,2],[1,2,1,0]],[[1,2,2,1],[0,1,3,0],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[0,1,3,0],[1,3,3,2],[1,3,0,1]],[[1,2,2,1],[0,1,3,0],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[0,1,3,0],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[0,1,3,0],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[0,1,3,0],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[0,1,4,0],[1,3,3,2],[1,2,0,1]],[[1,2,2,2],[0,1,3,0],[1,3,3,2],[1,2,0,1]],[[1,2,3,1],[0,1,3,0],[1,3,3,2],[1,2,0,1]],[[1,3,2,1],[0,1,3,0],[1,3,3,2],[1,2,0,1]],[[2,2,2,1],[0,1,3,0],[1,3,3,2],[1,2,0,1]],[[1,2,2,1],[0,1,3,0],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[0,1,3,0],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[0,1,3,0],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[0,1,3,0],[1,4,3,2],[1,1,2,0]],[[1,2,2,1],[0,1,4,0],[1,3,3,2],[1,1,2,0]],[[1,2,2,2],[0,1,3,0],[1,3,3,2],[1,1,2,0]],[[1,2,3,1],[0,1,3,0],[1,3,3,2],[1,1,2,0]],[[1,3,2,1],[0,1,3,0],[1,3,3,2],[1,1,2,0]],[[2,2,2,1],[0,1,3,0],[1,3,3,2],[1,1,2,0]],[[0,2,3,1],[1,2,3,1],[1,0,2,2],[1,2,2,1]],[[0,2,2,2],[1,2,3,1],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,2,4,1],[1,0,2,2],[1,2,2,1]],[[0,2,3,1],[1,2,3,1],[1,0,3,2],[1,1,2,1]],[[0,2,2,2],[1,2,3,1],[1,0,3,2],[1,1,2,1]],[[0,2,2,1],[1,2,4,1],[1,0,3,2],[1,1,2,1]],[[0,2,3,1],[1,2,3,1],[1,0,3,2],[1,2,1,1]],[[0,2,2,2],[1,2,3,1],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,2,4,1],[1,0,3,2],[1,2,1,1]],[[0,2,3,1],[1,2,3,1],[1,0,3,2],[1,2,2,0]],[[0,2,2,2],[1,2,3,1],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,2,4,1],[1,0,3,2],[1,2,2,0]],[[0,3,2,1],[1,2,3,1],[1,1,1,2],[1,2,2,1]],[[0,2,3,1],[1,2,3,1],[1,1,1,2],[1,2,2,1]],[[0,2,2,2],[1,2,3,1],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,4,1],[1,1,1,2],[1,2,2,1]],[[0,3,2,1],[1,2,3,1],[1,1,2,2],[1,2,1,1]],[[0,2,3,1],[1,2,3,1],[1,1,2,2],[1,2,1,1]],[[0,2,2,2],[1,2,3,1],[1,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,2,4,1],[1,1,2,2],[1,2,1,1]],[[0,3,2,1],[1,2,3,1],[1,1,2,2],[1,2,2,0]],[[0,2,3,1],[1,2,3,1],[1,1,2,2],[1,2,2,0]],[[0,2,2,2],[1,2,3,1],[1,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,2,4,1],[1,1,2,2],[1,2,2,0]],[[0,3,2,1],[1,2,3,1],[1,1,3,0],[1,2,2,1]],[[0,2,3,1],[1,2,3,1],[1,1,3,0],[1,2,2,1]],[[0,2,2,2],[1,2,3,1],[1,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,2,4,1],[1,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,2,3,1],[1,1,4,0],[1,2,2,1]],[[0,2,2,1],[1,2,3,1],[1,1,3,0],[2,2,2,1]],[[0,2,2,1],[1,2,3,1],[1,1,3,0],[1,3,2,1]],[[0,2,2,1],[1,2,3,1],[1,1,3,0],[1,2,3,1]],[[0,2,2,1],[1,2,3,1],[1,1,3,0],[1,2,2,2]],[[0,3,2,1],[1,2,3,1],[1,1,3,1],[1,2,1,1]],[[0,2,3,1],[1,2,3,1],[1,1,3,1],[1,2,1,1]],[[0,2,2,2],[1,2,3,1],[1,1,3,1],[1,2,1,1]],[[0,2,2,1],[1,2,4,1],[1,1,3,1],[1,2,1,1]],[[0,2,2,1],[1,2,3,1],[1,1,4,1],[1,2,1,1]],[[0,3,2,1],[1,2,3,1],[1,1,3,1],[1,2,2,0]],[[0,2,3,1],[1,2,3,1],[1,1,3,1],[1,2,2,0]],[[0,2,2,2],[1,2,3,1],[1,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,2,4,1],[1,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,2,3,1],[1,1,4,1],[1,2,2,0]],[[0,2,2,1],[1,2,3,1],[1,1,3,1],[2,2,2,0]],[[0,2,2,1],[1,2,3,1],[1,1,3,1],[1,3,2,0]],[[0,2,2,1],[1,2,3,1],[1,1,3,1],[1,2,3,0]],[[0,2,3,1],[1,2,3,1],[1,1,3,2],[1,0,2,1]],[[0,2,2,2],[1,2,3,1],[1,1,3,2],[1,0,2,1]],[[0,2,2,1],[1,2,4,1],[1,1,3,2],[1,0,2,1]],[[0,2,3,1],[1,2,3,1],[1,1,3,2],[1,1,1,1]],[[0,2,2,2],[1,2,3,1],[1,1,3,2],[1,1,1,1]],[[0,2,2,1],[1,2,4,1],[1,1,3,2],[1,1,1,1]],[[0,2,3,1],[1,2,3,1],[1,1,3,2],[1,1,2,0]],[[0,2,2,2],[1,2,3,1],[1,1,3,2],[1,1,2,0]],[[0,2,2,1],[1,2,4,1],[1,1,3,2],[1,1,2,0]],[[1,2,2,1],[0,1,3,0],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[0,1,3,0],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[0,1,3,0],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[0,1,3,0],[1,4,3,2],[1,1,1,1]],[[1,2,2,1],[0,1,4,0],[1,3,3,2],[1,1,1,1]],[[1,2,2,2],[0,1,3,0],[1,3,3,2],[1,1,1,1]],[[1,2,3,1],[0,1,3,0],[1,3,3,2],[1,1,1,1]],[[1,3,2,1],[0,1,3,0],[1,3,3,2],[1,1,1,1]],[[2,2,2,1],[0,1,3,0],[1,3,3,2],[1,1,1,1]],[[1,2,2,1],[0,1,3,0],[1,3,3,2],[1,0,2,2]],[[0,3,2,1],[1,2,3,1],[1,2,0,2],[1,2,2,1]],[[0,2,3,1],[1,2,3,1],[1,2,0,2],[1,2,2,1]],[[0,2,2,2],[1,2,3,1],[1,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,4,1],[1,2,0,2],[1,2,2,1]],[[0,3,2,1],[1,2,3,1],[1,2,1,2],[1,1,2,1]],[[0,2,3,1],[1,2,3,1],[1,2,1,2],[1,1,2,1]],[[0,2,2,2],[1,2,3,1],[1,2,1,2],[1,1,2,1]],[[0,2,2,1],[1,2,4,1],[1,2,1,2],[1,1,2,1]],[[0,2,3,1],[1,2,3,1],[1,2,2,2],[1,0,2,1]],[[0,2,2,2],[1,2,3,1],[1,2,2,2],[1,0,2,1]],[[0,2,2,1],[1,2,4,1],[1,2,2,2],[1,0,2,1]],[[0,3,2,1],[1,2,3,1],[1,2,2,2],[1,1,1,1]],[[0,2,3,1],[1,2,3,1],[1,2,2,2],[1,1,1,1]],[[0,2,2,2],[1,2,3,1],[1,2,2,2],[1,1,1,1]],[[0,2,2,1],[1,2,4,1],[1,2,2,2],[1,1,1,1]],[[0,3,2,1],[1,2,3,1],[1,2,2,2],[1,1,2,0]],[[0,2,3,1],[1,2,3,1],[1,2,2,2],[1,1,2,0]],[[0,2,2,2],[1,2,3,1],[1,2,2,2],[1,1,2,0]],[[0,2,2,1],[1,2,4,1],[1,2,2,2],[1,1,2,0]],[[0,3,2,1],[1,2,3,1],[1,2,2,2],[1,2,0,1]],[[0,2,3,1],[1,2,3,1],[1,2,2,2],[1,2,0,1]],[[0,2,2,2],[1,2,3,1],[1,2,2,2],[1,2,0,1]],[[0,2,2,1],[1,2,4,1],[1,2,2,2],[1,2,0,1]],[[0,3,2,1],[1,2,3,1],[1,2,2,2],[1,2,1,0]],[[0,2,3,1],[1,2,3,1],[1,2,2,2],[1,2,1,0]],[[0,2,2,2],[1,2,3,1],[1,2,2,2],[1,2,1,0]],[[0,2,2,1],[1,2,4,1],[1,2,2,2],[1,2,1,0]],[[1,2,2,1],[0,1,3,0],[1,3,3,3],[1,0,2,1]],[[1,2,2,1],[0,1,3,0],[1,3,4,2],[1,0,2,1]],[[1,2,2,1],[0,1,4,0],[1,3,3,2],[1,0,2,1]],[[1,2,2,2],[0,1,3,0],[1,3,3,2],[1,0,2,1]],[[1,2,3,1],[0,1,3,0],[1,3,3,2],[1,0,2,1]],[[1,3,2,1],[0,1,3,0],[1,3,3,2],[1,0,2,1]],[[0,3,2,1],[1,2,3,1],[1,2,3,0],[1,1,2,1]],[[0,2,3,1],[1,2,3,1],[1,2,3,0],[1,1,2,1]],[[0,2,2,2],[1,2,3,1],[1,2,3,0],[1,1,2,1]],[[0,2,2,1],[1,2,4,1],[1,2,3,0],[1,1,2,1]],[[0,2,2,1],[1,2,3,1],[1,2,4,0],[1,1,2,1]],[[0,2,2,1],[1,2,3,1],[1,2,3,0],[1,1,3,1]],[[0,2,2,1],[1,2,3,1],[1,2,3,0],[1,1,2,2]],[[0,3,2,1],[1,2,3,1],[1,2,3,0],[1,2,1,1]],[[0,2,3,1],[1,2,3,1],[1,2,3,0],[1,2,1,1]],[[0,2,2,2],[1,2,3,1],[1,2,3,0],[1,2,1,1]],[[0,2,2,1],[1,2,4,1],[1,2,3,0],[1,2,1,1]],[[0,2,2,1],[1,2,3,1],[1,2,4,0],[1,2,1,1]],[[0,2,3,1],[1,2,3,1],[1,2,3,1],[1,0,2,1]],[[0,2,2,2],[1,2,3,1],[1,2,3,1],[1,0,2,1]],[[0,2,2,1],[1,2,4,1],[1,2,3,1],[1,0,2,1]],[[0,2,2,1],[1,2,3,1],[1,2,4,1],[1,0,2,1]],[[0,3,2,1],[1,2,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,3,1],[1,2,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,2,2],[1,2,3,1],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[1,2,4,1],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[1,2,3,1],[1,2,4,1],[1,1,1,1]],[[0,3,2,1],[1,2,3,1],[1,2,3,1],[1,1,2,0]],[[0,2,3,1],[1,2,3,1],[1,2,3,1],[1,1,2,0]],[[0,2,2,2],[1,2,3,1],[1,2,3,1],[1,1,2,0]],[[0,2,2,1],[1,2,4,1],[1,2,3,1],[1,1,2,0]],[[0,2,2,1],[1,2,3,1],[1,2,4,1],[1,1,2,0]],[[0,2,2,1],[1,2,3,1],[1,2,3,1],[1,1,3,0]],[[0,3,2,1],[1,2,3,1],[1,2,3,1],[1,2,0,1]],[[0,2,3,1],[1,2,3,1],[1,2,3,1],[1,2,0,1]],[[0,2,2,2],[1,2,3,1],[1,2,3,1],[1,2,0,1]],[[0,2,2,1],[1,2,4,1],[1,2,3,1],[1,2,0,1]],[[0,2,2,1],[1,2,3,1],[1,2,4,1],[1,2,0,1]],[[0,3,2,1],[1,2,3,1],[1,2,3,1],[1,2,1,0]],[[0,2,3,1],[1,2,3,1],[1,2,3,1],[1,2,1,0]],[[0,2,2,2],[1,2,3,1],[1,2,3,1],[1,2,1,0]],[[0,2,2,1],[1,2,4,1],[1,2,3,1],[1,2,1,0]],[[0,2,2,1],[1,2,3,1],[1,2,4,1],[1,2,1,0]],[[1,2,2,1],[0,1,3,0],[1,3,3,1],[1,3,1,1]],[[0,2,3,1],[1,2,3,1],[1,2,3,2],[1,1,0,1]],[[0,2,2,2],[1,2,3,1],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,2,4,1],[1,2,3,2],[1,1,0,1]],[[1,2,2,1],[0,1,3,0],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[0,1,3,0],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[0,1,3,0],[1,4,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,4,0],[1,3,3,1],[1,2,1,1]],[[1,2,2,2],[0,1,3,0],[1,3,3,1],[1,2,1,1]],[[1,2,3,1],[0,1,3,0],[1,3,3,1],[1,2,1,1]],[[1,3,2,1],[0,1,3,0],[1,3,3,1],[1,2,1,1]],[[2,2,2,1],[0,1,3,0],[1,3,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,3,0],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[0,1,3,0],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[0,1,3,0],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[0,1,3,0],[1,4,3,1],[1,1,2,1]],[[1,2,2,1],[0,1,4,0],[1,3,3,1],[1,1,2,1]],[[1,2,2,2],[0,1,3,0],[1,3,3,1],[1,1,2,1]],[[1,2,3,1],[0,1,3,0],[1,3,3,1],[1,1,2,1]],[[1,3,2,1],[0,1,3,0],[1,3,3,1],[1,1,2,1]],[[2,2,2,1],[0,1,3,0],[1,3,3,1],[1,1,2,1]],[[1,2,2,1],[0,1,3,0],[1,3,3,0],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[1,3,3,0],[1,3,2,1]],[[1,2,2,1],[0,1,3,0],[1,3,3,0],[2,2,2,1]],[[1,2,2,1],[0,1,3,0],[1,4,3,0],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[0,1,3,0],[1,3,2,2],[1,3,2,0]],[[1,2,2,1],[0,1,3,0],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[0,1,3,0],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[0,1,3,0],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[0,1,3,0],[1,3,2,2],[1,1,3,1]],[[1,2,2,1],[0,1,3,0],[1,3,2,3],[1,1,2,1]],[[0,3,2,1],[1,2,3,1],[1,3,0,1],[1,2,2,1]],[[0,2,3,1],[1,2,3,1],[1,3,0,1],[1,2,2,1]],[[0,2,2,2],[1,2,3,1],[1,3,0,1],[1,2,2,1]],[[0,2,2,1],[1,2,4,1],[1,3,0,1],[1,2,2,1]],[[0,3,2,1],[1,2,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,3,1],[1,2,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,2],[1,2,3,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,2,4,1],[1,3,0,2],[1,1,2,1]],[[0,3,2,1],[1,2,3,1],[1,3,0,2],[1,2,1,1]],[[0,2,3,1],[1,2,3,1],[1,3,0,2],[1,2,1,1]],[[0,2,2,2],[1,2,3,1],[1,3,0,2],[1,2,1,1]],[[0,2,2,1],[1,2,4,1],[1,3,0,2],[1,2,1,1]],[[0,3,2,1],[1,2,3,1],[1,3,0,2],[1,2,2,0]],[[0,2,3,1],[1,2,3,1],[1,3,0,2],[1,2,2,0]],[[0,2,2,2],[1,2,3,1],[1,3,0,2],[1,2,2,0]],[[0,2,2,1],[1,2,4,1],[1,3,0,2],[1,2,2,0]],[[0,3,2,1],[1,2,3,1],[1,3,1,0],[1,2,2,1]],[[0,2,3,1],[1,2,3,1],[1,3,1,0],[1,2,2,1]],[[0,2,2,2],[1,2,3,1],[1,3,1,0],[1,2,2,1]],[[0,2,2,1],[1,2,4,1],[1,3,1,0],[1,2,2,1]],[[0,3,2,1],[1,2,3,1],[1,3,1,1],[1,2,2,0]],[[0,2,3,1],[1,2,3,1],[1,3,1,1],[1,2,2,0]],[[0,2,2,2],[1,2,3,1],[1,3,1,1],[1,2,2,0]],[[0,2,2,1],[1,2,4,1],[1,3,1,1],[1,2,2,0]],[[0,3,2,1],[1,2,3,1],[1,3,1,2],[1,1,1,1]],[[0,2,3,1],[1,2,3,1],[1,3,1,2],[1,1,1,1]],[[0,2,2,2],[1,2,3,1],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,2,4,1],[1,3,1,2],[1,1,1,1]],[[0,3,2,1],[1,2,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,3,1],[1,2,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,2,2],[1,2,3,1],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,2,4,1],[1,3,1,2],[1,1,2,0]],[[0,3,2,1],[1,2,3,1],[1,3,1,2],[1,2,0,1]],[[0,2,3,1],[1,2,3,1],[1,3,1,2],[1,2,0,1]],[[0,2,2,2],[1,2,3,1],[1,3,1,2],[1,2,0,1]],[[0,2,2,1],[1,2,4,1],[1,3,1,2],[1,2,0,1]],[[0,3,2,1],[1,2,3,1],[1,3,1,2],[1,2,1,0]],[[0,2,3,1],[1,2,3,1],[1,3,1,2],[1,2,1,0]],[[0,2,2,2],[1,2,3,1],[1,3,1,2],[1,2,1,0]],[[0,2,2,1],[1,2,4,1],[1,3,1,2],[1,2,1,0]],[[1,2,2,1],[0,1,3,0],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[0,1,3,0],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[0,1,3,0],[1,4,2,1],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[0,1,3,0],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[0,1,3,0],[1,3,1,3],[1,2,2,1]],[[0,3,2,1],[1,2,3,1],[1,3,2,0],[1,1,2,1]],[[0,2,3,1],[1,2,3,1],[1,3,2,0],[1,1,2,1]],[[0,2,2,2],[1,2,3,1],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,2,4,1],[1,3,2,0],[1,1,2,1]],[[0,3,2,1],[1,2,3,1],[1,3,2,0],[1,2,1,1]],[[0,2,3,1],[1,2,3,1],[1,3,2,0],[1,2,1,1]],[[0,2,2,2],[1,2,3,1],[1,3,2,0],[1,2,1,1]],[[0,2,2,1],[1,2,4,1],[1,3,2,0],[1,2,1,1]],[[0,3,2,1],[1,2,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,3,1],[1,2,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,2,2],[1,2,3,1],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[1,2,4,1],[1,3,2,1],[1,1,1,1]],[[0,3,2,1],[1,2,3,1],[1,3,2,1],[1,1,2,0]],[[0,2,3,1],[1,2,3,1],[1,3,2,1],[1,1,2,0]],[[0,2,2,2],[1,2,3,1],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,2,4,1],[1,3,2,1],[1,1,2,0]],[[0,3,2,1],[1,2,3,1],[1,3,2,1],[1,2,0,1]],[[0,2,3,1],[1,2,3,1],[1,3,2,1],[1,2,0,1]],[[0,2,2,2],[1,2,3,1],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,2,4,1],[1,3,2,1],[1,2,0,1]],[[0,3,2,1],[1,2,3,1],[1,3,2,1],[1,2,1,0]],[[0,2,3,1],[1,2,3,1],[1,3,2,1],[1,2,1,0]],[[0,2,2,2],[1,2,3,1],[1,3,2,1],[1,2,1,0]],[[0,2,2,1],[1,2,4,1],[1,3,2,1],[1,2,1,0]],[[1,2,2,1],[0,1,3,0],[1,4,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[0,1,3,0],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[0,1,3,0],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[0,1,3,0],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[0,1,3,0],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[0,1,4,0],[1,2,3,2],[1,2,2,0]],[[1,2,2,2],[0,1,3,0],[1,2,3,2],[1,2,2,0]],[[1,2,3,1],[0,1,3,0],[1,2,3,2],[1,2,2,0]],[[1,3,2,1],[0,1,3,0],[1,2,3,2],[1,2,2,0]],[[2,2,2,1],[0,1,3,0],[1,2,3,2],[1,2,2,0]],[[1,2,2,1],[0,1,3,0],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[0,1,3,0],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[0,1,3,0],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[0,1,4,0],[1,2,3,2],[1,2,1,1]],[[1,2,2,2],[0,1,3,0],[1,2,3,2],[1,2,1,1]],[[1,2,3,1],[0,1,3,0],[1,2,3,2],[1,2,1,1]],[[1,3,2,1],[0,1,3,0],[1,2,3,2],[1,2,1,1]],[[2,2,2,1],[0,1,3,0],[1,2,3,2],[1,2,1,1]],[[1,2,2,1],[0,1,3,0],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[0,1,3,0],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[0,1,3,0],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[0,1,4,0],[1,2,3,1],[1,2,2,1]],[[1,2,2,2],[0,1,3,0],[1,2,3,1],[1,2,2,1]],[[1,2,3,1],[0,1,3,0],[1,2,3,1],[1,2,2,1]],[[0,3,2,1],[1,2,3,1],[1,3,3,0],[1,1,2,0]],[[0,2,3,1],[1,2,3,1],[1,3,3,0],[1,1,2,0]],[[0,2,2,2],[1,2,3,1],[1,3,3,0],[1,1,2,0]],[[0,2,2,1],[1,2,4,1],[1,3,3,0],[1,1,2,0]],[[0,3,2,1],[1,2,3,1],[1,3,3,0],[1,2,1,0]],[[0,2,3,1],[1,2,3,1],[1,3,3,0],[1,2,1,0]],[[0,2,2,2],[1,2,3,1],[1,3,3,0],[1,2,1,0]],[[0,2,2,1],[1,2,4,1],[1,3,3,0],[1,2,1,0]],[[1,3,2,1],[0,1,3,0],[1,2,3,1],[1,2,2,1]],[[2,2,2,1],[0,1,3,0],[1,2,3,1],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[0,1,3,0],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[0,1,3,0],[1,2,2,3],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[1,1,3,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[1,1,3,2],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[1,1,3,3],[1,2,2,1]],[[0,3,2,1],[1,2,3,1],[1,3,3,1],[1,2,0,0]],[[0,2,3,1],[1,2,3,1],[1,3,3,1],[1,2,0,0]],[[0,2,2,2],[1,2,3,1],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,2,4,1],[1,3,3,1],[1,2,0,0]],[[1,2,2,1],[0,1,3,0],[0,3,3,2],[1,2,3,0]],[[1,2,2,1],[0,1,3,0],[0,3,3,2],[1,3,2,0]],[[1,2,2,1],[0,1,3,0],[0,3,3,3],[1,2,2,0]],[[1,2,2,1],[0,1,3,0],[0,3,4,2],[1,2,2,0]],[[1,2,2,1],[0,1,4,0],[0,3,3,2],[1,2,2,0]],[[1,2,2,2],[0,1,3,0],[0,3,3,2],[1,2,2,0]],[[1,2,3,1],[0,1,3,0],[0,3,3,2],[1,2,2,0]],[[1,3,2,1],[0,1,3,0],[0,3,3,2],[1,2,2,0]],[[1,2,2,1],[0,1,3,0],[0,3,3,2],[1,2,1,2]],[[1,2,2,1],[0,1,3,0],[0,3,3,3],[1,2,1,1]],[[1,2,2,1],[0,1,3,0],[0,3,4,2],[1,2,1,1]],[[1,2,2,1],[0,1,4,0],[0,3,3,2],[1,2,1,1]],[[1,2,2,2],[0,1,3,0],[0,3,3,2],[1,2,1,1]],[[1,2,3,1],[0,1,3,0],[0,3,3,2],[1,2,1,1]],[[1,3,2,1],[0,1,3,0],[0,3,3,2],[1,2,1,1]],[[1,2,2,1],[0,1,3,0],[0,3,3,1],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[0,3,3,1],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[0,3,3,1],[1,3,2,1]],[[1,2,2,1],[0,1,3,0],[0,3,4,1],[1,2,2,1]],[[1,2,2,1],[0,1,4,0],[0,3,3,1],[1,2,2,1]],[[1,2,2,2],[0,1,3,0],[0,3,3,1],[1,2,2,1]],[[1,2,3,1],[0,1,3,0],[0,3,3,1],[1,2,2,1]],[[1,3,2,1],[0,1,3,0],[0,3,3,1],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[0,3,2,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[0,3,2,2],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[0,3,2,2],[1,3,2,1]],[[1,2,2,1],[0,1,3,0],[0,3,2,3],[1,2,2,1]],[[1,2,2,1],[0,1,3,0],[0,2,3,2],[1,2,2,2]],[[1,2,2,1],[0,1,3,0],[0,2,3,2],[1,2,3,1]],[[1,2,2,1],[0,1,3,0],[0,2,3,3],[1,2,2,1]],[[1,2,2,1],[0,1,2,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[0,1,2,3],[2,3,3,2],[1,0,0,1]],[[1,2,2,2],[0,1,2,2],[2,3,3,2],[1,0,0,1]],[[1,2,3,1],[0,1,2,2],[2,3,3,2],[1,0,0,1]],[[1,3,2,1],[0,1,2,2],[2,3,3,2],[1,0,0,1]],[[2,2,2,1],[0,1,2,2],[2,3,3,2],[1,0,0,1]],[[0,3,2,1],[1,2,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,3,1],[1,2,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[1,2,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[1,2,4,1],[2,0,1,2],[1,2,2,1]],[[0,2,3,1],[1,2,3,1],[2,0,2,2],[0,2,2,1]],[[0,2,2,2],[1,2,3,1],[2,0,2,2],[0,2,2,1]],[[0,2,2,1],[1,2,4,1],[2,0,2,2],[0,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,0,2,2],[1,2,1,1]],[[0,2,3,1],[1,2,3,1],[2,0,2,2],[1,2,1,1]],[[0,2,2,2],[1,2,3,1],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[1,2,4,1],[2,0,2,2],[1,2,1,1]],[[0,3,2,1],[1,2,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,3,1],[1,2,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,2,2],[1,2,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[1,2,4,1],[2,0,2,2],[1,2,2,0]],[[0,3,2,1],[1,2,3,1],[2,0,3,0],[1,2,2,1]],[[0,2,3,1],[1,2,3,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,2],[1,2,3,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[1,2,4,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[1,2,3,1],[3,0,3,0],[1,2,2,1]],[[0,2,2,1],[1,2,3,1],[2,0,4,0],[1,2,2,1]],[[0,2,2,1],[1,2,3,1],[2,0,3,0],[2,2,2,1]],[[0,2,2,1],[1,2,3,1],[2,0,3,0],[1,3,2,1]],[[0,2,2,1],[1,2,3,1],[2,0,3,0],[1,2,3,1]],[[0,2,2,1],[1,2,3,1],[2,0,3,0],[1,2,2,2]],[[0,3,2,1],[1,2,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,3,1],[1,2,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,2],[1,2,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[1,2,4,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[1,2,3,1],[2,0,4,1],[1,2,1,1]],[[0,3,2,1],[1,2,3,1],[2,0,3,1],[1,2,2,0]],[[0,2,3,1],[1,2,3,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,2],[1,2,3,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[1,2,4,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[1,2,3,1],[3,0,3,1],[1,2,2,0]],[[0,2,2,1],[1,2,3,1],[2,0,4,1],[1,2,2,0]],[[0,2,2,1],[1,2,3,1],[2,0,3,1],[2,2,2,0]],[[0,2,2,1],[1,2,3,1],[2,0,3,1],[1,3,2,0]],[[0,2,2,1],[1,2,3,1],[2,0,3,1],[1,2,3,0]],[[0,2,3,1],[1,2,3,1],[2,0,3,2],[0,1,2,1]],[[0,2,2,2],[1,2,3,1],[2,0,3,2],[0,1,2,1]],[[0,2,2,1],[1,2,4,1],[2,0,3,2],[0,1,2,1]],[[0,2,3,1],[1,2,3,1],[2,0,3,2],[0,2,1,1]],[[0,2,2,2],[1,2,3,1],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[1,2,4,1],[2,0,3,2],[0,2,1,1]],[[0,2,3,1],[1,2,3,1],[2,0,3,2],[0,2,2,0]],[[0,2,2,2],[1,2,3,1],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[1,2,4,1],[2,0,3,2],[0,2,2,0]],[[0,3,2,1],[1,2,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,3,1],[1,2,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,2],[1,2,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,4,1],[2,1,0,2],[1,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,1,1,2],[0,2,2,1]],[[0,2,3,1],[1,2,3,1],[2,1,1,2],[0,2,2,1]],[[0,2,2,2],[1,2,3,1],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[1,2,4,1],[2,1,1,2],[0,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,1,2,2],[0,2,1,1]],[[0,2,3,1],[1,2,3,1],[2,1,2,2],[0,2,1,1]],[[0,2,2,2],[1,2,3,1],[2,1,2,2],[0,2,1,1]],[[0,2,2,1],[1,2,4,1],[2,1,2,2],[0,2,1,1]],[[0,3,2,1],[1,2,3,1],[2,1,2,2],[0,2,2,0]],[[0,2,3,1],[1,2,3,1],[2,1,2,2],[0,2,2,0]],[[0,2,2,2],[1,2,3,1],[2,1,2,2],[0,2,2,0]],[[0,2,2,1],[1,2,4,1],[2,1,2,2],[0,2,2,0]],[[1,2,2,1],[0,1,2,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[0,1,2,3],[2,3,3,2],[0,1,0,1]],[[1,2,2,2],[0,1,2,2],[2,3,3,2],[0,1,0,1]],[[1,2,3,1],[0,1,2,2],[2,3,3,2],[0,1,0,1]],[[1,3,2,1],[0,1,2,2],[2,3,3,2],[0,1,0,1]],[[0,3,2,1],[1,2,3,1],[2,1,3,0],[0,2,2,1]],[[0,2,3,1],[1,2,3,1],[2,1,3,0],[0,2,2,1]],[[0,2,2,2],[1,2,3,1],[2,1,3,0],[0,2,2,1]],[[0,2,2,1],[1,2,4,1],[2,1,3,0],[0,2,2,1]],[[0,2,2,1],[1,2,3,1],[2,1,4,0],[0,2,2,1]],[[0,2,2,1],[1,2,3,1],[2,1,3,0],[0,3,2,1]],[[0,2,2,1],[1,2,3,1],[2,1,3,0],[0,2,3,1]],[[0,2,2,1],[1,2,3,1],[2,1,3,0],[0,2,2,2]],[[0,3,2,1],[1,2,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,3,1],[1,2,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,2,2],[1,2,3,1],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[1,2,4,1],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[1,2,3,1],[2,1,4,1],[0,2,1,1]],[[0,3,2,1],[1,2,3,1],[2,1,3,1],[0,2,2,0]],[[0,2,3,1],[1,2,3,1],[2,1,3,1],[0,2,2,0]],[[0,2,2,2],[1,2,3,1],[2,1,3,1],[0,2,2,0]],[[0,2,2,1],[1,2,4,1],[2,1,3,1],[0,2,2,0]],[[0,2,2,1],[1,2,3,1],[2,1,4,1],[0,2,2,0]],[[0,2,2,1],[1,2,3,1],[2,1,3,1],[0,3,2,0]],[[0,2,2,1],[1,2,3,1],[2,1,3,1],[0,2,3,0]],[[2,2,2,1],[0,1,2,2],[2,3,3,2],[0,1,0,1]],[[0,2,3,1],[1,2,3,1],[2,1,3,2],[0,0,2,1]],[[0,2,2,2],[1,2,3,1],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[1,2,4,1],[2,1,3,2],[0,0,2,1]],[[0,2,3,1],[1,2,3,1],[2,1,3,2],[0,1,1,1]],[[0,2,2,2],[1,2,3,1],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[1,2,4,1],[2,1,3,2],[0,1,1,1]],[[0,2,3,1],[1,2,3,1],[2,1,3,2],[0,1,2,0]],[[0,2,2,2],[1,2,3,1],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[1,2,4,1],[2,1,3,2],[0,1,2,0]],[[0,2,3,1],[1,2,3,1],[2,1,3,2],[1,0,1,1]],[[0,2,2,2],[1,2,3,1],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[1,2,4,1],[2,1,3,2],[1,0,1,1]],[[0,2,3,1],[1,2,3,1],[2,1,3,2],[1,0,2,0]],[[0,2,2,2],[1,2,3,1],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[1,2,4,1],[2,1,3,2],[1,0,2,0]],[[1,2,2,1],[0,1,2,3],[2,3,3,1],[1,1,1,0]],[[1,2,2,2],[0,1,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,3,1],[0,1,2,2],[2,3,3,1],[1,1,1,0]],[[1,3,2,1],[0,1,2,2],[2,3,3,1],[1,1,1,0]],[[2,2,2,1],[0,1,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,1],[0,1,2,3],[2,3,3,1],[1,1,0,1]],[[1,2,2,2],[0,1,2,2],[2,3,3,1],[1,1,0,1]],[[1,2,3,1],[0,1,2,2],[2,3,3,1],[1,1,0,1]],[[1,3,2,1],[0,1,2,2],[2,3,3,1],[1,1,0,1]],[[2,2,2,1],[0,1,2,2],[2,3,3,1],[1,1,0,1]],[[0,3,2,1],[1,2,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,3,1],[1,2,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,2],[1,2,3,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[1,2,4,1],[2,2,0,2],[0,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,2,1,2],[0,1,2,1]],[[0,2,3,1],[1,2,3,1],[2,2,1,2],[0,1,2,1]],[[0,2,2,2],[1,2,3,1],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[1,2,4,1],[2,2,1,2],[0,1,2,1]],[[0,3,2,1],[1,2,3,1],[2,2,1,2],[1,0,2,1]],[[0,2,3,1],[1,2,3,1],[2,2,1,2],[1,0,2,1]],[[0,2,2,2],[1,2,3,1],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[1,2,4,1],[2,2,1,2],[1,0,2,1]],[[1,2,2,1],[0,1,2,3],[2,3,3,1],[1,0,2,0]],[[1,2,2,2],[0,1,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,3,1],[0,1,2,2],[2,3,3,1],[1,0,2,0]],[[1,3,2,1],[0,1,2,2],[2,3,3,1],[1,0,2,0]],[[2,2,2,1],[0,1,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[0,1,2,3],[2,3,3,1],[1,0,1,1]],[[1,2,2,2],[0,1,2,2],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[0,1,2,2],[2,3,3,1],[1,0,1,1]],[[1,3,2,1],[0,1,2,2],[2,3,3,1],[1,0,1,1]],[[2,2,2,1],[0,1,2,2],[2,3,3,1],[1,0,1,1]],[[0,3,2,1],[1,2,3,1],[2,2,2,2],[0,0,2,1]],[[0,2,3,1],[1,2,3,1],[2,2,2,2],[0,0,2,1]],[[0,2,2,2],[1,2,3,1],[2,2,2,2],[0,0,2,1]],[[0,2,2,1],[1,2,4,1],[2,2,2,2],[0,0,2,1]],[[0,3,2,1],[1,2,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,3,1],[1,2,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,2,2],[1,2,3,1],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[1,2,4,1],[2,2,2,2],[0,1,1,1]],[[0,3,2,1],[1,2,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,3,1],[1,2,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,2,2],[1,2,3,1],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[1,2,4,1],[2,2,2,2],[0,1,2,0]],[[0,3,2,1],[1,2,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,3,1],[1,2,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,2,2],[1,2,3,1],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[1,2,4,1],[2,2,2,2],[0,2,0,1]],[[0,3,2,1],[1,2,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,3,1],[1,2,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,2,2],[1,2,3,1],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[1,2,4,1],[2,2,2,2],[0,2,1,0]],[[0,3,2,1],[1,2,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,3,1],[1,2,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,2,2],[1,2,3,1],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[1,2,4,1],[2,2,2,2],[1,0,1,1]],[[0,3,2,1],[1,2,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,3,1],[1,2,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,2,2],[1,2,3,1],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[1,2,4,1],[2,2,2,2],[1,0,2,0]],[[0,3,2,1],[1,2,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,3,1],[1,2,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,2,2],[1,2,3,1],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[1,2,4,1],[2,2,2,2],[1,1,0,1]],[[0,3,2,1],[1,2,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,3,1],[1,2,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,2,2],[1,2,3,1],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[1,2,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,1],[0,1,2,3],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[0,1,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,3,1],[0,1,2,2],[2,3,3,1],[0,2,1,0]],[[1,3,2,1],[0,1,2,2],[2,3,3,1],[0,2,1,0]],[[2,2,2,1],[0,1,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,1,2,3],[2,3,3,1],[0,2,0,1]],[[1,2,2,2],[0,1,2,2],[2,3,3,1],[0,2,0,1]],[[1,2,3,1],[0,1,2,2],[2,3,3,1],[0,2,0,1]],[[1,3,2,1],[0,1,2,2],[2,3,3,1],[0,2,0,1]],[[2,2,2,1],[0,1,2,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,1],[0,1,2,3],[2,3,3,1],[0,1,2,0]],[[1,2,2,2],[0,1,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,3,1],[0,1,2,2],[2,3,3,1],[0,1,2,0]],[[1,3,2,1],[0,1,2,2],[2,3,3,1],[0,1,2,0]],[[0,3,2,1],[1,2,3,1],[2,2,3,0],[0,1,2,1]],[[0,2,3,1],[1,2,3,1],[2,2,3,0],[0,1,2,1]],[[0,2,2,2],[1,2,3,1],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[1,2,4,1],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[1,2,3,1],[2,2,4,0],[0,1,2,1]],[[0,2,2,1],[1,2,3,1],[2,2,3,0],[0,1,3,1]],[[0,2,2,1],[1,2,3,1],[2,2,3,0],[0,1,2,2]],[[0,3,2,1],[1,2,3,1],[2,2,3,0],[0,2,1,1]],[[0,2,3,1],[1,2,3,1],[2,2,3,0],[0,2,1,1]],[[0,2,2,2],[1,2,3,1],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[1,2,4,1],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[1,2,3,1],[2,2,4,0],[0,2,1,1]],[[0,3,2,1],[1,2,3,1],[2,2,3,0],[1,0,2,1]],[[0,2,3,1],[1,2,3,1],[2,2,3,0],[1,0,2,1]],[[0,2,2,2],[1,2,3,1],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[1,2,4,1],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[1,2,3,1],[2,2,4,0],[1,0,2,1]],[[0,2,2,1],[1,2,3,1],[2,2,3,0],[1,0,3,1]],[[0,2,2,1],[1,2,3,1],[2,2,3,0],[1,0,2,2]],[[0,3,2,1],[1,2,3,1],[2,2,3,0],[1,1,1,1]],[[0,2,3,1],[1,2,3,1],[2,2,3,0],[1,1,1,1]],[[0,2,2,2],[1,2,3,1],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[1,2,4,1],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[1,2,3,1],[2,2,4,0],[1,1,1,1]],[[2,2,2,1],[0,1,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,1,2,3],[2,3,3,1],[0,1,1,1]],[[1,2,2,2],[0,1,2,2],[2,3,3,1],[0,1,1,1]],[[1,2,3,1],[0,1,2,2],[2,3,3,1],[0,1,1,1]],[[1,3,2,1],[0,1,2,2],[2,3,3,1],[0,1,1,1]],[[2,2,2,1],[0,1,2,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,1],[0,1,2,3],[2,3,3,1],[0,0,2,1]],[[1,2,2,2],[0,1,2,2],[2,3,3,1],[0,0,2,1]],[[1,2,3,1],[0,1,2,2],[2,3,3,1],[0,0,2,1]],[[1,3,2,1],[0,1,2,2],[2,3,3,1],[0,0,2,1]],[[0,3,2,1],[1,2,3,1],[2,2,3,1],[0,0,2,1]],[[0,2,3,1],[1,2,3,1],[2,2,3,1],[0,0,2,1]],[[0,2,2,2],[1,2,3,1],[2,2,3,1],[0,0,2,1]],[[0,2,2,1],[1,2,4,1],[2,2,3,1],[0,0,2,1]],[[0,2,2,1],[1,2,3,1],[2,2,4,1],[0,0,2,1]],[[0,3,2,1],[1,2,3,1],[2,2,3,1],[0,1,1,1]],[[0,2,3,1],[1,2,3,1],[2,2,3,1],[0,1,1,1]],[[0,2,2,2],[1,2,3,1],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[1,2,4,1],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[1,2,3,1],[2,2,4,1],[0,1,1,1]],[[0,3,2,1],[1,2,3,1],[2,2,3,1],[0,1,2,0]],[[0,2,3,1],[1,2,3,1],[2,2,3,1],[0,1,2,0]],[[0,2,2,2],[1,2,3,1],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[1,2,4,1],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[1,2,3,1],[2,2,4,1],[0,1,2,0]],[[0,2,2,1],[1,2,3,1],[2,2,3,1],[0,1,3,0]],[[0,3,2,1],[1,2,3,1],[2,2,3,1],[0,2,0,1]],[[0,2,3,1],[1,2,3,1],[2,2,3,1],[0,2,0,1]],[[0,2,2,2],[1,2,3,1],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[1,2,4,1],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[1,2,3,1],[2,2,4,1],[0,2,0,1]],[[0,3,2,1],[1,2,3,1],[2,2,3,1],[0,2,1,0]],[[0,2,3,1],[1,2,3,1],[2,2,3,1],[0,2,1,0]],[[0,2,2,2],[1,2,3,1],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[1,2,4,1],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[1,2,3,1],[2,2,4,1],[0,2,1,0]],[[2,2,2,1],[0,1,2,2],[2,3,3,1],[0,0,2,1]],[[0,3,2,1],[1,2,3,1],[2,2,3,1],[1,0,1,1]],[[0,2,3,1],[1,2,3,1],[2,2,3,1],[1,0,1,1]],[[0,2,2,2],[1,2,3,1],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[1,2,4,1],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[1,2,3,1],[2,2,4,1],[1,0,1,1]],[[0,3,2,1],[1,2,3,1],[2,2,3,1],[1,0,2,0]],[[0,2,3,1],[1,2,3,1],[2,2,3,1],[1,0,2,0]],[[0,2,2,2],[1,2,3,1],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[1,2,4,1],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[1,2,3,1],[2,2,4,1],[1,0,2,0]],[[0,2,2,1],[1,2,3,1],[2,2,3,1],[1,0,3,0]],[[0,3,2,1],[1,2,3,1],[2,2,3,1],[1,1,0,1]],[[0,2,3,1],[1,2,3,1],[2,2,3,1],[1,1,0,1]],[[0,2,2,2],[1,2,3,1],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[1,2,4,1],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[1,2,3,1],[2,2,4,1],[1,1,0,1]],[[0,3,2,1],[1,2,3,1],[2,2,3,1],[1,1,1,0]],[[0,2,3,1],[1,2,3,1],[2,2,3,1],[1,1,1,0]],[[0,2,2,2],[1,2,3,1],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[1,2,4,1],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[1,2,3,1],[2,2,4,1],[1,1,1,0]],[[1,2,2,1],[0,1,2,3],[2,3,3,0],[1,1,1,1]],[[1,2,2,2],[0,1,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[0,1,2,2],[2,3,3,0],[1,1,1,1]],[[1,3,2,1],[0,1,2,2],[2,3,3,0],[1,1,1,1]],[[2,2,2,1],[0,1,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,1,2,3],[2,3,3,0],[1,0,2,1]],[[1,2,2,2],[0,1,2,2],[2,3,3,0],[1,0,2,1]],[[1,2,3,1],[0,1,2,2],[2,3,3,0],[1,0,2,1]],[[1,3,2,1],[0,1,2,2],[2,3,3,0],[1,0,2,1]],[[2,2,2,1],[0,1,2,2],[2,3,3,0],[1,0,2,1]],[[1,2,2,1],[0,1,2,3],[2,3,3,0],[0,2,1,1]],[[1,2,2,2],[0,1,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,3,1],[0,1,2,2],[2,3,3,0],[0,2,1,1]],[[1,3,2,1],[0,1,2,2],[2,3,3,0],[0,2,1,1]],[[2,2,2,1],[0,1,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[0,1,2,3],[2,3,3,0],[0,1,2,1]],[[1,2,2,2],[0,1,2,2],[2,3,3,0],[0,1,2,1]],[[1,2,3,1],[0,1,2,2],[2,3,3,0],[0,1,2,1]],[[1,3,2,1],[0,1,2,2],[2,3,3,0],[0,1,2,1]],[[2,2,2,1],[0,1,2,2],[2,3,3,0],[0,1,2,1]],[[0,3,2,1],[1,2,3,1],[2,2,3,2],[0,1,0,1]],[[0,2,3,1],[1,2,3,1],[2,2,3,2],[0,1,0,1]],[[0,2,2,2],[1,2,3,1],[2,2,3,2],[0,1,0,1]],[[0,2,2,1],[1,2,4,1],[2,2,3,2],[0,1,0,1]],[[1,2,2,1],[0,1,2,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,1],[0,1,2,3],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[0,1,2,2],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[0,1,2,2],[2,3,2,2],[1,1,1,0]],[[1,3,2,1],[0,1,2,2],[2,3,2,2],[1,1,1,0]],[[2,2,2,1],[0,1,2,2],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,1,2,2],[2,3,2,2],[1,1,0,2]],[[1,2,2,1],[0,1,2,2],[2,3,2,3],[1,1,0,1]],[[1,2,2,1],[0,1,2,3],[2,3,2,2],[1,1,0,1]],[[0,3,2,1],[1,2,3,1],[2,2,3,2],[1,0,0,1]],[[0,2,3,1],[1,2,3,1],[2,2,3,2],[1,0,0,1]],[[0,2,2,2],[1,2,3,1],[2,2,3,2],[1,0,0,1]],[[0,2,2,1],[1,2,4,1],[2,2,3,2],[1,0,0,1]],[[1,2,2,2],[0,1,2,2],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[0,1,2,2],[2,3,2,2],[1,1,0,1]],[[1,3,2,1],[0,1,2,2],[2,3,2,2],[1,1,0,1]],[[2,2,2,1],[0,1,2,2],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[0,1,2,2],[2,3,2,3],[1,0,2,0]],[[1,2,2,1],[0,1,2,3],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[0,1,2,2],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[0,1,2,2],[2,3,2,2],[1,0,2,0]],[[1,3,2,1],[0,1,2,2],[2,3,2,2],[1,0,2,0]],[[2,2,2,1],[0,1,2,2],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[0,1,2,2],[2,3,2,2],[1,0,1,2]],[[1,2,2,1],[0,1,2,2],[2,3,2,3],[1,0,1,1]],[[1,2,2,1],[0,1,2,3],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[0,1,2,2],[2,3,2,2],[1,0,1,1]],[[1,2,3,1],[0,1,2,2],[2,3,2,2],[1,0,1,1]],[[1,3,2,1],[0,1,2,2],[2,3,2,2],[1,0,1,1]],[[2,2,2,1],[0,1,2,2],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[0,1,2,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[0,1,2,3],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[0,1,2,2],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[0,1,2,2],[2,3,2,2],[0,2,1,0]],[[1,3,2,1],[0,1,2,2],[2,3,2,2],[0,2,1,0]],[[2,2,2,1],[0,1,2,2],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,1,2,2],[2,3,2,2],[0,2,0,2]],[[1,2,2,1],[0,1,2,2],[2,3,2,3],[0,2,0,1]],[[1,2,2,1],[0,1,2,3],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[0,1,2,2],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[0,1,2,2],[2,3,2,2],[0,2,0,1]],[[1,3,2,1],[0,1,2,2],[2,3,2,2],[0,2,0,1]],[[2,2,2,1],[0,1,2,2],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,1,2,2],[2,3,2,3],[0,1,2,0]],[[1,2,2,1],[0,1,2,3],[2,3,2,2],[0,1,2,0]],[[1,2,2,2],[0,1,2,2],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[0,1,2,2],[2,3,2,2],[0,1,2,0]],[[1,3,2,1],[0,1,2,2],[2,3,2,2],[0,1,2,0]],[[2,2,2,1],[0,1,2,2],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,1,2,2],[2,3,2,2],[0,1,1,2]],[[1,2,2,1],[0,1,2,2],[2,3,2,3],[0,1,1,1]],[[1,2,2,1],[0,1,2,3],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[0,1,2,2],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[0,1,2,2],[2,3,2,2],[0,1,1,1]],[[1,3,2,1],[0,1,2,2],[2,3,2,2],[0,1,1,1]],[[2,2,2,1],[0,1,2,2],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,1,2,2],[2,3,2,2],[0,0,2,2]],[[1,2,2,1],[0,1,2,2],[2,3,2,3],[0,0,2,1]],[[1,2,2,1],[0,1,2,3],[2,3,2,2],[0,0,2,1]],[[1,2,2,2],[0,1,2,2],[2,3,2,2],[0,0,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,0,1],[0,2,2,1]],[[0,2,3,1],[1,2,3,1],[2,3,0,1],[0,2,2,1]],[[0,2,2,2],[1,2,3,1],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[1,2,4,1],[2,3,0,1],[0,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,0,1],[1,1,2,1]],[[0,2,3,1],[1,2,3,1],[2,3,0,1],[1,1,2,1]],[[0,2,2,2],[1,2,3,1],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[1,2,4,1],[2,3,0,1],[1,1,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,0,2],[0,1,2,1]],[[0,2,3,1],[1,2,3,1],[2,3,0,2],[0,1,2,1]],[[0,2,2,2],[1,2,3,1],[2,3,0,2],[0,1,2,1]],[[0,2,2,1],[1,2,4,1],[2,3,0,2],[0,1,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,0,2],[0,2,1,1]],[[0,2,3,1],[1,2,3,1],[2,3,0,2],[0,2,1,1]],[[0,2,2,2],[1,2,3,1],[2,3,0,2],[0,2,1,1]],[[0,2,2,1],[1,2,4,1],[2,3,0,2],[0,2,1,1]],[[0,3,2,1],[1,2,3,1],[2,3,0,2],[0,2,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,0,2],[0,2,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,0,2],[0,2,2,0]],[[0,3,2,1],[1,2,3,1],[2,3,0,2],[1,0,2,1]],[[0,2,3,1],[1,2,3,1],[2,3,0,2],[1,0,2,1]],[[0,2,2,2],[1,2,3,1],[2,3,0,2],[1,0,2,1]],[[0,2,2,1],[1,2,4,1],[2,3,0,2],[1,0,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,0,2],[1,1,1,1]],[[0,2,3,1],[1,2,3,1],[2,3,0,2],[1,1,1,1]],[[0,2,2,2],[1,2,3,1],[2,3,0,2],[1,1,1,1]],[[0,2,2,1],[1,2,4,1],[2,3,0,2],[1,1,1,1]],[[0,3,2,1],[1,2,3,1],[2,3,0,2],[1,1,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,0,2],[1,1,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,0,2],[1,1,2,0]],[[1,2,3,1],[0,1,2,2],[2,3,2,2],[0,0,2,1]],[[1,3,2,1],[0,1,2,2],[2,3,2,2],[0,0,2,1]],[[2,2,2,1],[0,1,2,2],[2,3,2,2],[0,0,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,1,0],[0,2,2,1]],[[0,2,3,1],[1,2,3,1],[2,3,1,0],[0,2,2,1]],[[0,2,2,2],[1,2,3,1],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,2,4,1],[2,3,1,0],[0,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,1,0],[1,1,2,1]],[[0,2,3,1],[1,2,3,1],[2,3,1,0],[1,1,2,1]],[[0,2,2,2],[1,2,3,1],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,2,4,1],[2,3,1,0],[1,1,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,1,1],[0,2,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,1,1],[0,2,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,1,1],[0,2,2,0]],[[0,3,2,1],[1,2,3,1],[2,3,1,1],[1,1,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,1,1],[1,1,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,1,1],[1,1,2,0]],[[0,3,2,1],[1,2,3,1],[2,3,1,2],[0,1,1,1]],[[0,2,3,1],[1,2,3,1],[2,3,1,2],[0,1,1,1]],[[0,2,2,2],[1,2,3,1],[2,3,1,2],[0,1,1,1]],[[0,2,2,1],[1,2,4,1],[2,3,1,2],[0,1,1,1]],[[0,3,2,1],[1,2,3,1],[2,3,1,2],[0,1,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,1,2],[0,1,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,1,2],[0,1,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,1,2],[0,1,2,0]],[[0,3,2,1],[1,2,3,1],[2,3,1,2],[0,2,0,1]],[[0,2,3,1],[1,2,3,1],[2,3,1,2],[0,2,0,1]],[[0,2,2,2],[1,2,3,1],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[1,2,4,1],[2,3,1,2],[0,2,0,1]],[[0,3,2,1],[1,2,3,1],[2,3,1,2],[0,2,1,0]],[[0,2,3,1],[1,2,3,1],[2,3,1,2],[0,2,1,0]],[[0,2,2,2],[1,2,3,1],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[1,2,4,1],[2,3,1,2],[0,2,1,0]],[[0,3,2,1],[1,2,3,1],[2,3,1,2],[1,0,1,1]],[[0,2,3,1],[1,2,3,1],[2,3,1,2],[1,0,1,1]],[[0,2,2,2],[1,2,3,1],[2,3,1,2],[1,0,1,1]],[[0,2,2,1],[1,2,4,1],[2,3,1,2],[1,0,1,1]],[[0,3,2,1],[1,2,3,1],[2,3,1,2],[1,0,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,1,2],[1,0,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,1,2],[1,0,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,1,2],[1,0,2,0]],[[0,3,2,1],[1,2,3,1],[2,3,1,2],[1,1,0,1]],[[0,2,3,1],[1,2,3,1],[2,3,1,2],[1,1,0,1]],[[0,2,2,2],[1,2,3,1],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[1,2,4,1],[2,3,1,2],[1,1,0,1]],[[0,3,2,1],[1,2,3,1],[2,3,1,2],[1,1,1,0]],[[0,2,3,1],[1,2,3,1],[2,3,1,2],[1,1,1,0]],[[0,2,2,2],[1,2,3,1],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[1,2,4,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,1],[0,1,2,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[0,1,2,2],[2,3,1,2],[1,0,3,1]],[[1,2,2,1],[0,1,2,2],[2,3,1,3],[1,0,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,3,1],[1,2,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,2,2],[1,2,3,1],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[1,2,4,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,1],[0,1,2,3],[2,3,1,2],[1,0,2,1]],[[1,2,2,2],[0,1,2,2],[2,3,1,2],[1,0,2,1]],[[1,2,3,1],[0,1,2,2],[2,3,1,2],[1,0,2,1]],[[1,3,2,1],[0,1,2,2],[2,3,1,2],[1,0,2,1]],[[2,2,2,1],[0,1,2,2],[2,3,1,2],[1,0,2,1]],[[1,2,2,1],[0,1,2,2],[2,3,1,2],[0,1,2,2]],[[1,2,2,1],[0,1,2,2],[2,3,1,2],[0,1,3,1]],[[1,2,2,1],[0,1,2,2],[2,3,1,3],[0,1,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,0],[0,1,2,1]],[[0,2,3,1],[1,2,3,1],[2,3,2,0],[0,1,2,1]],[[0,2,2,2],[1,2,3,1],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,2,4,1],[2,3,2,0],[0,1,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,0],[0,2,1,1]],[[0,2,3,1],[1,2,3,1],[2,3,2,0],[0,2,1,1]],[[0,2,2,2],[1,2,3,1],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,2,4,1],[2,3,2,0],[0,2,1,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,0],[1,0,2,1]],[[0,2,3,1],[1,2,3,1],[2,3,2,0],[1,0,2,1]],[[0,2,2,2],[1,2,3,1],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,2,4,1],[2,3,2,0],[1,0,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,0],[1,1,1,1]],[[0,2,3,1],[1,2,3,1],[2,3,2,0],[1,1,1,1]],[[0,2,2,2],[1,2,3,1],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,2,4,1],[2,3,2,0],[1,1,1,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,0],[1,2,0,1]],[[0,2,3,1],[1,2,3,1],[2,3,2,0],[1,2,0,1]],[[0,2,2,2],[1,2,3,1],[2,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,2,4,1],[2,3,2,0],[1,2,0,1]],[[1,2,2,1],[0,1,2,3],[2,3,1,2],[0,1,2,1]],[[1,2,2,2],[0,1,2,2],[2,3,1,2],[0,1,2,1]],[[1,2,3,1],[0,1,2,2],[2,3,1,2],[0,1,2,1]],[[1,3,2,1],[0,1,2,2],[2,3,1,2],[0,1,2,1]],[[2,2,2,1],[0,1,2,2],[2,3,1,2],[0,1,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,1],[0,1,1,1]],[[0,2,3,1],[1,2,3,1],[2,3,2,1],[0,1,1,1]],[[0,2,2,2],[1,2,3,1],[2,3,2,1],[0,1,1,1]],[[0,2,2,1],[1,2,4,1],[2,3,2,1],[0,1,1,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,1],[0,1,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,2,1],[0,1,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,2,1],[0,1,2,0]],[[0,3,2,1],[1,2,3,1],[2,3,2,1],[0,2,0,1]],[[0,2,3,1],[1,2,3,1],[2,3,2,1],[0,2,0,1]],[[0,2,2,2],[1,2,3,1],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,2,4,1],[2,3,2,1],[0,2,0,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,1],[0,2,1,0]],[[0,2,3,1],[1,2,3,1],[2,3,2,1],[0,2,1,0]],[[0,2,2,2],[1,2,3,1],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,2,4,1],[2,3,2,1],[0,2,1,0]],[[1,2,2,1],[0,1,2,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,1],[0,1,2,2],[2,4,0,2],[1,1,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,1],[1,0,1,1]],[[0,2,3,1],[1,2,3,1],[2,3,2,1],[1,0,1,1]],[[0,2,2,2],[1,2,3,1],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[1,2,4,1],[2,3,2,1],[1,0,1,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,1],[1,0,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,2,1],[1,0,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,2,1],[1,0,2,0]],[[0,3,2,1],[1,2,3,1],[2,3,2,1],[1,1,0,1]],[[0,2,3,1],[1,2,3,1],[2,3,2,1],[1,1,0,1]],[[0,2,2,2],[1,2,3,1],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,2,4,1],[2,3,2,1],[1,1,0,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,1],[1,1,1,0]],[[0,2,3,1],[1,2,3,1],[2,3,2,1],[1,1,1,0]],[[0,2,2,2],[1,2,3,1],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,2,4,1],[2,3,2,1],[1,1,1,0]],[[1,2,2,1],[0,1,2,2],[3,3,0,2],[1,1,2,1]],[[1,2,2,1],[0,1,2,2],[2,3,0,2],[0,2,2,2]],[[1,2,2,1],[0,1,2,2],[2,3,0,2],[0,2,3,1]],[[1,2,2,1],[0,1,2,2],[2,3,0,2],[0,3,2,1]],[[1,2,2,1],[0,1,2,2],[2,3,0,3],[0,2,2,1]],[[1,2,2,1],[0,1,2,2],[2,4,0,2],[0,2,2,1]],[[1,2,2,1],[0,1,2,2],[3,3,0,2],[0,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,1],[1,2,0,0]],[[0,2,3,1],[1,2,3,1],[2,3,2,1],[1,2,0,0]],[[0,2,2,2],[1,2,3,1],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,2,4,1],[2,3,2,1],[1,2,0,0]],[[1,2,2,1],[0,1,2,3],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[0,1,2,2],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[0,1,2,2],[2,3,0,2],[0,2,2,1]],[[1,3,2,1],[0,1,2,2],[2,3,0,2],[0,2,2,1]],[[2,2,2,1],[0,1,2,2],[2,3,0,2],[0,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,2],[0,0,1,1]],[[0,2,3,1],[1,2,3,1],[2,3,2,2],[0,0,1,1]],[[0,2,2,2],[1,2,3,1],[2,3,2,2],[0,0,1,1]],[[0,2,2,1],[1,2,4,1],[2,3,2,2],[0,0,1,1]],[[0,3,2,1],[1,2,3,1],[2,3,2,2],[0,0,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,2,2],[0,0,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,2,2],[0,0,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,2,2],[0,0,2,0]],[[1,2,2,1],[0,1,2,3],[2,2,3,1],[0,2,2,0]],[[1,2,2,2],[0,1,2,2],[2,2,3,1],[0,2,2,0]],[[1,2,3,1],[0,1,2,2],[2,2,3,1],[0,2,2,0]],[[1,3,2,1],[0,1,2,2],[2,2,3,1],[0,2,2,0]],[[2,2,2,1],[0,1,2,2],[2,2,3,1],[0,2,2,0]],[[1,2,2,1],[0,1,2,3],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[0,1,2,2],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[0,1,2,2],[2,2,3,1],[0,2,1,1]],[[1,3,2,1],[0,1,2,2],[2,2,3,1],[0,2,1,1]],[[2,2,2,1],[0,1,2,2],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[0,1,2,3],[2,2,3,0],[0,2,2,1]],[[1,2,2,2],[0,1,2,2],[2,2,3,0],[0,2,2,1]],[[1,2,3,1],[0,1,2,2],[2,2,3,0],[0,2,2,1]],[[1,3,2,1],[0,1,2,2],[2,2,3,0],[0,2,2,1]],[[2,2,2,1],[0,1,2,2],[2,2,3,0],[0,2,2,1]],[[1,2,2,1],[0,1,2,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,1],[0,1,2,3],[2,2,2,2],[0,2,2,0]],[[1,2,2,2],[0,1,2,2],[2,2,2,2],[0,2,2,0]],[[1,2,3,1],[0,1,2,2],[2,2,2,2],[0,2,2,0]],[[1,3,2,1],[0,1,2,2],[2,2,2,2],[0,2,2,0]],[[2,2,2,1],[0,1,2,2],[2,2,2,2],[0,2,2,0]],[[1,2,2,1],[0,1,2,2],[2,2,2,2],[0,2,1,2]],[[1,2,2,1],[0,1,2,2],[2,2,2,3],[0,2,1,1]],[[1,2,2,1],[0,1,2,3],[2,2,2,2],[0,2,1,1]],[[1,2,2,2],[0,1,2,2],[2,2,2,2],[0,2,1,1]],[[1,2,3,1],[0,1,2,2],[2,2,2,2],[0,2,1,1]],[[1,3,2,1],[0,1,2,2],[2,2,2,2],[0,2,1,1]],[[2,2,2,1],[0,1,2,2],[2,2,2,2],[0,2,1,1]],[[0,3,2,1],[1,2,3,1],[2,3,3,0],[0,0,2,1]],[[0,2,3,1],[1,2,3,1],[2,3,3,0],[0,0,2,1]],[[0,2,2,2],[1,2,3,1],[2,3,3,0],[0,0,2,1]],[[0,2,2,1],[1,2,4,1],[2,3,3,0],[0,0,2,1]],[[0,2,2,1],[1,2,3,1],[2,3,4,0],[0,0,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,3,0],[0,1,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,3,0],[0,1,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,3,0],[0,1,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,3,0],[0,1,2,0]],[[0,3,2,1],[1,2,3,1],[2,3,3,0],[0,2,1,0]],[[0,2,3,1],[1,2,3,1],[2,3,3,0],[0,2,1,0]],[[0,2,2,2],[1,2,3,1],[2,3,3,0],[0,2,1,0]],[[0,2,2,1],[1,2,4,1],[2,3,3,0],[0,2,1,0]],[[0,3,2,1],[1,2,3,1],[2,3,3,0],[1,0,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,3,0],[1,0,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,3,0],[1,0,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,3,0],[1,0,2,0]],[[0,3,2,1],[1,2,3,1],[2,3,3,0],[1,1,1,0]],[[0,2,3,1],[1,2,3,1],[2,3,3,0],[1,1,1,0]],[[0,2,2,2],[1,2,3,1],[2,3,3,0],[1,1,1,0]],[[0,2,2,1],[1,2,4,1],[2,3,3,0],[1,1,1,0]],[[1,2,2,1],[0,1,2,2],[2,2,1,2],[0,2,2,2]],[[1,2,2,1],[0,1,2,2],[2,2,1,2],[0,2,3,1]],[[1,2,2,1],[0,1,2,2],[2,2,1,2],[0,3,2,1]],[[1,2,2,1],[0,1,2,2],[2,2,1,3],[0,2,2,1]],[[1,2,2,1],[0,1,2,3],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[0,1,2,2],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[0,1,2,2],[2,2,1,2],[0,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,3,0],[1,2,0,0]],[[0,2,3,1],[1,2,3,1],[2,3,3,0],[1,2,0,0]],[[0,2,2,2],[1,2,3,1],[2,3,3,0],[1,2,0,0]],[[0,2,2,1],[1,2,4,1],[2,3,3,0],[1,2,0,0]],[[1,3,2,1],[0,1,2,2],[2,2,1,2],[0,2,2,1]],[[2,2,2,1],[0,1,2,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[0,1,2,2],[2,2,0,2],[1,2,2,2]],[[1,2,2,1],[0,1,2,2],[2,2,0,2],[1,2,3,1]],[[1,2,2,1],[0,1,2,2],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[0,1,2,2],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[0,1,2,2],[2,2,0,3],[1,2,2,1]],[[1,2,2,1],[0,1,2,2],[3,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,1,2,3],[2,2,0,2],[1,2,2,1]],[[1,2,2,2],[0,1,2,2],[2,2,0,2],[1,2,2,1]],[[1,2,3,1],[0,1,2,2],[2,2,0,2],[1,2,2,1]],[[1,3,2,1],[0,1,2,2],[2,2,0,2],[1,2,2,1]],[[2,2,2,1],[0,1,2,2],[2,2,0,2],[1,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,3,1],[0,0,1,1]],[[0,2,3,1],[1,2,3,1],[2,3,3,1],[0,0,1,1]],[[0,2,2,2],[1,2,3,1],[2,3,3,1],[0,0,1,1]],[[0,2,2,1],[1,2,4,1],[2,3,3,1],[0,0,1,1]],[[0,2,2,1],[1,2,3,1],[2,3,4,1],[0,0,1,1]],[[0,3,2,1],[1,2,3,1],[2,3,3,1],[0,0,2,0]],[[0,2,3,1],[1,2,3,1],[2,3,3,1],[0,0,2,0]],[[0,2,2,2],[1,2,3,1],[2,3,3,1],[0,0,2,0]],[[0,2,2,1],[1,2,4,1],[2,3,3,1],[0,0,2,0]],[[0,2,2,1],[1,2,3,1],[2,3,4,1],[0,0,2,0]],[[0,3,2,1],[1,2,3,1],[2,3,3,1],[0,2,0,0]],[[0,2,3,1],[1,2,3,1],[2,3,3,1],[0,2,0,0]],[[0,2,2,2],[1,2,3,1],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,2,4,1],[2,3,3,1],[0,2,0,0]],[[1,2,2,1],[0,1,2,3],[2,1,3,1],[1,2,2,0]],[[1,2,2,2],[0,1,2,2],[2,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,1,2,2],[2,1,3,1],[1,2,2,0]],[[1,3,2,1],[0,1,2,2],[2,1,3,1],[1,2,2,0]],[[2,2,2,1],[0,1,2,2],[2,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,1,2,3],[2,1,3,1],[1,2,1,1]],[[1,2,2,2],[0,1,2,2],[2,1,3,1],[1,2,1,1]],[[1,2,3,1],[0,1,2,2],[2,1,3,1],[1,2,1,1]],[[1,3,2,1],[0,1,2,2],[2,1,3,1],[1,2,1,1]],[[2,2,2,1],[0,1,2,2],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,2,3],[2,1,3,0],[1,2,2,1]],[[1,2,2,2],[0,1,2,2],[2,1,3,0],[1,2,2,1]],[[1,2,3,1],[0,1,2,2],[2,1,3,0],[1,2,2,1]],[[1,3,2,1],[0,1,2,2],[2,1,3,0],[1,2,2,1]],[[2,2,2,1],[0,1,2,2],[2,1,3,0],[1,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,3,1],[1,1,0,0]],[[0,2,3,1],[1,2,3,1],[2,3,3,1],[1,1,0,0]],[[0,2,2,2],[1,2,3,1],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,2,4,1],[2,3,3,1],[1,1,0,0]],[[1,2,2,1],[0,1,2,2],[2,1,2,3],[1,2,2,0]],[[1,2,2,1],[0,1,2,3],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[0,1,2,2],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[0,1,2,2],[2,1,2,2],[1,2,2,0]],[[1,3,2,1],[0,1,2,2],[2,1,2,2],[1,2,2,0]],[[2,2,2,1],[0,1,2,2],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,1,2,2],[2,1,2,2],[1,2,1,2]],[[1,2,2,1],[0,1,2,2],[2,1,2,3],[1,2,1,1]],[[1,2,2,1],[0,1,2,3],[2,1,2,2],[1,2,1,1]],[[1,2,2,2],[0,1,2,2],[2,1,2,2],[1,2,1,1]],[[1,2,3,1],[0,1,2,2],[2,1,2,2],[1,2,1,1]],[[1,3,2,1],[0,1,2,2],[2,1,2,2],[1,2,1,1]],[[2,2,2,1],[0,1,2,2],[2,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,1,2,2],[2,1,1,2],[1,2,2,2]],[[1,2,2,1],[0,1,2,2],[2,1,1,2],[1,2,3,1]],[[1,2,2,1],[0,1,2,2],[2,1,1,2],[1,3,2,1]],[[1,2,2,1],[0,1,2,2],[2,1,1,2],[2,2,2,1]],[[1,2,2,1],[0,1,2,2],[2,1,1,3],[1,2,2,1]],[[1,2,2,1],[0,1,2,2],[3,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,2,3],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,1,2,2],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,1,2,2],[2,1,1,2],[1,2,2,1]],[[1,3,2,1],[0,1,2,2],[2,1,1,2],[1,2,2,1]],[[2,2,2,1],[0,1,2,2],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,2,2],[2,0,3,2],[0,2,2,2]],[[1,2,2,1],[0,1,2,2],[2,0,3,2],[0,2,3,1]],[[1,2,2,1],[0,1,2,2],[2,0,3,3],[0,2,2,1]],[[1,2,2,1],[0,1,2,3],[2,0,3,2],[0,2,2,1]],[[1,2,2,2],[0,1,2,2],[2,0,3,2],[0,2,2,1]],[[1,2,3,1],[0,1,2,2],[2,0,3,2],[0,2,2,1]],[[0,3,2,1],[1,2,3,1],[2,3,3,2],[0,0,0,1]],[[0,2,3,1],[1,2,3,1],[2,3,3,2],[0,0,0,1]],[[0,2,2,2],[1,2,3,1],[2,3,3,2],[0,0,0,1]],[[0,2,2,1],[1,2,4,1],[2,3,3,2],[0,0,0,1]],[[1,2,2,1],[0,1,2,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[0,1,2,3],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[0,1,2,2],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[0,1,2,2],[1,3,3,2],[1,1,0,1]],[[1,3,2,1],[0,1,2,2],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[0,1,2,3],[1,3,3,1],[1,2,1,0]],[[1,2,2,2],[0,1,2,2],[1,3,3,1],[1,2,1,0]],[[1,2,3,1],[0,1,2,2],[1,3,3,1],[1,2,1,0]],[[1,3,2,1],[0,1,2,2],[1,3,3,1],[1,2,1,0]],[[2,2,2,1],[0,1,2,2],[1,3,3,1],[1,2,1,0]],[[1,2,2,1],[0,1,2,3],[1,3,3,1],[1,2,0,1]],[[1,2,2,2],[0,1,2,2],[1,3,3,1],[1,2,0,1]],[[1,2,3,1],[0,1,2,2],[1,3,3,1],[1,2,0,1]],[[1,3,2,1],[0,1,2,2],[1,3,3,1],[1,2,0,1]],[[2,2,2,1],[0,1,2,2],[1,3,3,1],[1,2,0,1]],[[1,2,2,1],[0,1,2,3],[1,3,3,1],[1,1,2,0]],[[1,2,2,2],[0,1,2,2],[1,3,3,1],[1,1,2,0]],[[1,2,3,1],[0,1,2,2],[1,3,3,1],[1,1,2,0]],[[1,3,2,1],[0,1,2,2],[1,3,3,1],[1,1,2,0]],[[2,2,2,1],[0,1,2,2],[1,3,3,1],[1,1,2,0]],[[1,2,2,1],[0,1,2,3],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[0,1,2,2],[1,3,3,1],[1,1,1,1]],[[1,2,3,1],[0,1,2,2],[1,3,3,1],[1,1,1,1]],[[1,3,2,1],[0,1,2,2],[1,3,3,1],[1,1,1,1]],[[2,2,2,1],[0,1,2,2],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,1,2,3],[1,3,3,1],[1,0,2,1]],[[1,2,2,2],[0,1,2,2],[1,3,3,1],[1,0,2,1]],[[1,2,3,1],[0,1,2,2],[1,3,3,1],[1,0,2,1]],[[1,3,2,1],[0,1,2,2],[1,3,3,1],[1,0,2,1]],[[1,2,2,1],[0,1,2,3],[1,3,3,0],[1,2,1,1]],[[1,2,2,2],[0,1,2,2],[1,3,3,0],[1,2,1,1]],[[1,2,3,1],[0,1,2,2],[1,3,3,0],[1,2,1,1]],[[1,3,2,1],[0,1,2,2],[1,3,3,0],[1,2,1,1]],[[2,2,2,1],[0,1,2,2],[1,3,3,0],[1,2,1,1]],[[1,2,2,1],[0,1,2,3],[1,3,3,0],[1,1,2,1]],[[1,2,2,2],[0,1,2,2],[1,3,3,0],[1,1,2,1]],[[1,2,3,1],[0,1,2,2],[1,3,3,0],[1,1,2,1]],[[1,3,2,1],[0,1,2,2],[1,3,3,0],[1,1,2,1]],[[2,2,2,1],[0,1,2,2],[1,3,3,0],[1,1,2,1]],[[1,2,2,1],[0,1,2,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[0,1,2,3],[1,3,2,2],[1,2,1,0]],[[1,2,2,2],[0,1,2,2],[1,3,2,2],[1,2,1,0]],[[1,2,3,1],[0,1,2,2],[1,3,2,2],[1,2,1,0]],[[1,3,2,1],[0,1,2,2],[1,3,2,2],[1,2,1,0]],[[2,2,2,1],[0,1,2,2],[1,3,2,2],[1,2,1,0]],[[1,2,2,1],[0,1,2,2],[1,3,2,2],[1,2,0,2]],[[1,2,2,1],[0,1,2,2],[1,3,2,3],[1,2,0,1]],[[1,2,2,1],[0,1,2,3],[1,3,2,2],[1,2,0,1]],[[1,2,2,2],[0,1,2,2],[1,3,2,2],[1,2,0,1]],[[1,2,3,1],[0,1,2,2],[1,3,2,2],[1,2,0,1]],[[1,3,2,1],[0,1,2,2],[1,3,2,2],[1,2,0,1]],[[2,2,2,1],[0,1,2,2],[1,3,2,2],[1,2,0,1]],[[1,2,2,1],[0,1,2,2],[1,3,2,3],[1,1,2,0]],[[1,2,2,1],[0,1,2,3],[1,3,2,2],[1,1,2,0]],[[1,2,2,2],[0,1,2,2],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[0,1,2,2],[1,3,2,2],[1,1,2,0]],[[1,3,2,1],[0,1,2,2],[1,3,2,2],[1,1,2,0]],[[2,2,2,1],[0,1,2,2],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,1,2,2],[1,3,2,2],[1,1,1,2]],[[1,2,2,1],[0,1,2,2],[1,3,2,3],[1,1,1,1]],[[1,2,2,1],[0,1,2,3],[1,3,2,2],[1,1,1,1]],[[1,2,2,2],[0,1,2,2],[1,3,2,2],[1,1,1,1]],[[1,2,3,1],[0,1,2,2],[1,3,2,2],[1,1,1,1]],[[1,3,2,1],[0,1,2,2],[1,3,2,2],[1,1,1,1]],[[2,2,2,1],[0,1,2,2],[1,3,2,2],[1,1,1,1]],[[1,2,2,1],[0,1,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[0,1,2,2],[1,3,2,3],[1,0,2,1]],[[1,2,2,1],[0,1,2,3],[1,3,2,2],[1,0,2,1]],[[1,2,2,2],[0,1,2,2],[1,3,2,2],[1,0,2,1]],[[1,2,3,1],[0,1,2,2],[1,3,2,2],[1,0,2,1]],[[1,3,2,1],[0,1,2,2],[1,3,2,2],[1,0,2,1]],[[1,2,2,1],[0,1,2,2],[1,3,1,2],[1,1,2,2]],[[1,2,2,1],[0,1,2,2],[1,3,1,2],[1,1,3,1]],[[1,2,2,1],[0,1,2,2],[1,3,1,3],[1,1,2,1]],[[1,2,2,1],[0,1,2,3],[1,3,1,2],[1,1,2,1]],[[1,2,2,2],[0,1,2,2],[1,3,1,2],[1,1,2,1]],[[1,2,3,1],[0,1,2,2],[1,3,1,2],[1,1,2,1]],[[1,3,2,1],[0,1,2,2],[1,3,1,2],[1,1,2,1]],[[2,2,2,1],[0,1,2,2],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,1,2,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[0,1,2,2],[1,3,0,2],[1,2,3,1]],[[1,2,2,1],[0,1,2,2],[1,3,0,2],[1,3,2,1]],[[1,2,2,1],[0,1,2,2],[1,3,0,2],[2,2,2,1]],[[1,2,2,1],[0,1,2,2],[1,3,0,3],[1,2,2,1]],[[1,2,2,1],[0,1,2,2],[1,4,0,2],[1,2,2,1]],[[1,2,2,1],[0,1,2,3],[1,3,0,2],[1,2,2,1]],[[1,2,2,2],[0,1,2,2],[1,3,0,2],[1,2,2,1]],[[1,2,3,1],[0,1,2,2],[1,3,0,2],[1,2,2,1]],[[1,3,2,1],[0,1,2,2],[1,3,0,2],[1,2,2,1]],[[2,2,2,1],[0,1,2,2],[1,3,0,2],[1,2,2,1]],[[1,2,2,1],[0,1,2,3],[1,2,3,1],[1,2,2,0]],[[1,2,2,2],[0,1,2,2],[1,2,3,1],[1,2,2,0]],[[1,2,3,1],[0,1,2,2],[1,2,3,1],[1,2,2,0]],[[1,3,2,1],[0,1,2,2],[1,2,3,1],[1,2,2,0]],[[2,2,2,1],[0,1,2,2],[1,2,3,1],[1,2,2,0]],[[1,2,2,1],[0,1,2,3],[1,2,3,1],[1,2,1,1]],[[1,2,2,2],[0,1,2,2],[1,2,3,1],[1,2,1,1]],[[1,2,3,1],[0,1,2,2],[1,2,3,1],[1,2,1,1]],[[1,3,2,1],[0,1,2,2],[1,2,3,1],[1,2,1,1]],[[2,2,2,1],[0,1,2,2],[1,2,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,2,3],[1,2,3,0],[1,2,2,1]],[[1,2,2,2],[0,1,2,2],[1,2,3,0],[1,2,2,1]],[[1,2,3,1],[0,1,2,2],[1,2,3,0],[1,2,2,1]],[[1,3,2,1],[0,1,2,2],[1,2,3,0],[1,2,2,1]],[[2,2,2,1],[0,1,2,2],[1,2,3,0],[1,2,2,1]],[[1,2,2,1],[0,1,2,2],[1,2,2,3],[1,2,2,0]],[[1,2,2,1],[0,1,2,3],[1,2,2,2],[1,2,2,0]],[[1,2,2,2],[0,1,2,2],[1,2,2,2],[1,2,2,0]],[[1,2,3,1],[0,1,2,2],[1,2,2,2],[1,2,2,0]],[[1,3,2,1],[0,1,2,2],[1,2,2,2],[1,2,2,0]],[[2,2,2,1],[0,1,2,2],[1,2,2,2],[1,2,2,0]],[[1,2,2,1],[0,1,2,2],[1,2,2,2],[1,2,1,2]],[[1,2,2,1],[0,1,2,2],[1,2,2,3],[1,2,1,1]],[[1,2,2,1],[0,1,2,3],[1,2,2,2],[1,2,1,1]],[[1,2,2,2],[0,1,2,2],[1,2,2,2],[1,2,1,1]],[[1,2,3,1],[0,1,2,2],[1,2,2,2],[1,2,1,1]],[[1,3,2,1],[0,1,2,2],[1,2,2,2],[1,2,1,1]],[[2,2,2,1],[0,1,2,2],[1,2,2,2],[1,2,1,1]],[[1,2,2,1],[0,1,2,2],[1,2,1,2],[1,2,2,2]],[[1,2,2,1],[0,1,2,2],[1,2,1,2],[1,2,3,1]],[[1,2,2,1],[0,1,2,2],[1,2,1,2],[1,3,2,1]],[[1,2,2,1],[0,1,2,2],[1,2,1,2],[2,2,2,1]],[[1,2,2,1],[0,1,2,2],[1,2,1,3],[1,2,2,1]],[[1,2,2,1],[0,1,2,3],[1,2,1,2],[1,2,2,1]],[[1,2,2,2],[0,1,2,2],[1,2,1,2],[1,2,2,1]],[[1,2,3,1],[0,1,2,2],[1,2,1,2],[1,2,2,1]],[[1,3,2,1],[0,1,2,2],[1,2,1,2],[1,2,2,1]],[[2,2,2,1],[0,1,2,2],[1,2,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,2,2],[1,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,1,2,2],[1,0,3,2],[1,2,3,1]],[[1,2,2,1],[0,1,2,2],[1,0,3,3],[1,2,2,1]],[[1,2,2,1],[0,1,2,3],[1,0,3,2],[1,2,2,1]],[[1,2,2,2],[0,1,2,2],[1,0,3,2],[1,2,2,1]],[[1,2,3,1],[0,1,2,2],[1,0,3,2],[1,2,2,1]],[[1,2,2,1],[0,1,2,3],[0,3,3,1],[1,2,2,0]],[[1,2,2,2],[0,1,2,2],[0,3,3,1],[1,2,2,0]],[[1,2,3,1],[0,1,2,2],[0,3,3,1],[1,2,2,0]],[[1,3,2,1],[0,1,2,2],[0,3,3,1],[1,2,2,0]],[[1,2,2,1],[0,1,2,3],[0,3,3,1],[1,2,1,1]],[[1,2,2,2],[0,1,2,2],[0,3,3,1],[1,2,1,1]],[[1,2,3,1],[0,1,2,2],[0,3,3,1],[1,2,1,1]],[[1,3,2,1],[0,1,2,2],[0,3,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,2,3],[0,3,3,0],[1,2,2,1]],[[1,2,2,2],[0,1,2,2],[0,3,3,0],[1,2,2,1]],[[1,2,3,1],[0,1,2,2],[0,3,3,0],[1,2,2,1]],[[1,3,2,1],[0,1,2,2],[0,3,3,0],[1,2,2,1]],[[1,2,2,1],[0,1,2,2],[0,3,2,3],[1,2,2,0]],[[1,2,2,1],[0,1,2,3],[0,3,2,2],[1,2,2,0]],[[1,2,2,2],[0,1,2,2],[0,3,2,2],[1,2,2,0]],[[1,2,3,1],[0,1,2,2],[0,3,2,2],[1,2,2,0]],[[1,3,2,1],[0,1,2,2],[0,3,2,2],[1,2,2,0]],[[1,2,2,1],[0,1,2,2],[0,3,2,2],[1,2,1,2]],[[1,2,2,1],[0,1,2,2],[0,3,2,3],[1,2,1,1]],[[1,2,2,1],[0,1,2,3],[0,3,2,2],[1,2,1,1]],[[1,2,2,2],[0,1,2,2],[0,3,2,2],[1,2,1,1]],[[1,2,3,1],[0,1,2,2],[0,3,2,2],[1,2,1,1]],[[1,3,2,1],[0,1,2,2],[0,3,2,2],[1,2,1,1]],[[1,2,2,1],[0,1,2,2],[0,3,1,2],[1,2,2,2]],[[1,2,2,1],[0,1,2,2],[0,3,1,2],[1,2,3,1]],[[1,2,2,1],[0,1,2,2],[0,3,1,2],[1,3,2,1]],[[1,2,2,1],[0,1,2,2],[0,3,1,3],[1,2,2,1]],[[1,2,2,1],[0,1,2,3],[0,3,1,2],[1,2,2,1]],[[1,2,2,2],[0,1,2,2],[0,3,1,2],[1,2,2,1]],[[1,2,3,1],[0,1,2,2],[0,3,1,2],[1,2,2,1]],[[1,3,2,1],[0,1,2,2],[0,3,1,2],[1,2,2,1]],[[0,2,3,1],[1,2,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,2],[1,2,3,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,3,3],[1,1,0,2],[1,2,2,1]],[[0,2,3,1],[1,2,3,2],[1,1,1,2],[1,2,1,1]],[[0,2,2,2],[1,2,3,2],[1,1,1,2],[1,2,1,1]],[[0,2,2,1],[1,2,3,3],[1,1,1,2],[1,2,1,1]],[[0,2,3,1],[1,2,3,2],[1,1,1,2],[1,2,2,0]],[[0,2,2,2],[1,2,3,2],[1,1,1,2],[1,2,2,0]],[[0,2,2,1],[1,2,3,3],[1,1,1,2],[1,2,2,0]],[[0,2,3,1],[1,2,3,2],[1,1,3,0],[1,2,1,1]],[[0,2,2,2],[1,2,3,2],[1,1,3,0],[1,2,1,1]],[[0,2,2,1],[1,2,4,2],[1,1,3,0],[1,2,1,1]],[[0,3,2,1],[1,2,3,2],[1,1,3,0],[1,2,2,0]],[[0,2,3,1],[1,2,3,2],[1,1,3,0],[1,2,2,0]],[[0,2,2,2],[1,2,3,2],[1,1,3,0],[1,2,2,0]],[[0,2,2,1],[1,2,4,2],[1,1,3,0],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,1],[0,1,1,2],[2,4,3,2],[1,2,0,0]],[[1,2,2,1],[0,1,1,2],[3,3,3,2],[1,2,0,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[0,1,1,2],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[0,1,1,2],[2,4,3,2],[1,1,1,0]],[[0,2,3,1],[1,2,3,2],[1,2,0,2],[1,1,2,1]],[[0,2,2,2],[1,2,3,2],[1,2,0,2],[1,1,2,1]],[[0,2,2,1],[1,2,3,3],[1,2,0,2],[1,1,2,1]],[[0,2,3,1],[1,2,3,2],[1,2,1,2],[1,1,1,1]],[[0,2,2,2],[1,2,3,2],[1,2,1,2],[1,1,1,1]],[[0,2,2,1],[1,2,3,3],[1,2,1,2],[1,1,1,1]],[[0,2,3,1],[1,2,3,2],[1,2,1,2],[1,1,2,0]],[[0,2,2,2],[1,2,3,2],[1,2,1,2],[1,1,2,0]],[[0,2,2,1],[1,2,3,3],[1,2,1,2],[1,1,2,0]],[[0,2,3,1],[1,2,3,2],[1,2,1,2],[1,2,0,1]],[[0,2,2,2],[1,2,3,2],[1,2,1,2],[1,2,0,1]],[[0,2,2,1],[1,2,3,3],[1,2,1,2],[1,2,0,1]],[[0,2,3,1],[1,2,3,2],[1,2,1,2],[1,2,1,0]],[[0,2,2,2],[1,2,3,2],[1,2,1,2],[1,2,1,0]],[[0,2,2,1],[1,2,3,3],[1,2,1,2],[1,2,1,0]],[[1,2,2,1],[0,1,1,2],[3,3,3,2],[1,1,1,0]],[[1,2,2,1],[0,1,1,3],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[0,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[0,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,3,2,1],[0,1,1,2],[2,3,3,2],[1,1,1,0]],[[2,2,2,1],[0,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[2,1,0,1]],[[1,2,2,1],[0,1,1,2],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[0,1,1,2],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[0,1,1,2],[2,4,3,2],[1,1,0,1]],[[1,2,2,1],[0,1,1,2],[3,3,3,2],[1,1,0,1]],[[1,2,2,1],[0,1,1,3],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[0,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[0,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,3,2,1],[0,1,1,2],[2,3,3,2],[1,1,0,1]],[[2,2,2,1],[0,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[2,0,2,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[0,1,1,2],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[0,1,1,2],[2,4,3,2],[1,0,2,0]],[[1,2,2,1],[0,1,1,2],[3,3,3,2],[1,0,2,0]],[[1,2,2,1],[0,1,1,3],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[0,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[0,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,3,2,1],[0,1,1,2],[2,3,3,2],[1,0,2,0]],[[2,2,2,1],[0,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[1,0,1,2]],[[0,2,3,1],[1,2,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,2],[1,2,3,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,1],[1,2,4,2],[1,2,3,0],[1,1,1,1]],[[0,3,2,1],[1,2,3,2],[1,2,3,0],[1,1,2,0]],[[0,2,3,1],[1,2,3,2],[1,2,3,0],[1,1,2,0]],[[0,2,2,2],[1,2,3,2],[1,2,3,0],[1,1,2,0]],[[0,2,2,1],[1,2,4,2],[1,2,3,0],[1,1,2,0]],[[0,3,2,1],[1,2,3,2],[1,2,3,0],[1,2,0,1]],[[0,2,3,1],[1,2,3,2],[1,2,3,0],[1,2,0,1]],[[0,2,2,2],[1,2,3,2],[1,2,3,0],[1,2,0,1]],[[0,2,2,1],[1,2,4,2],[1,2,3,0],[1,2,0,1]],[[0,3,2,1],[1,2,3,2],[1,2,3,0],[1,2,1,0]],[[0,2,3,1],[1,2,3,2],[1,2,3,0],[1,2,1,0]],[[0,2,2,2],[1,2,3,2],[1,2,3,0],[1,2,1,0]],[[0,2,2,1],[1,2,4,2],[1,2,3,0],[1,2,1,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[2,0,1,1]],[[1,2,2,1],[0,1,1,2],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[0,1,1,2],[2,3,4,2],[1,0,1,1]],[[1,2,2,1],[0,1,1,2],[2,4,3,2],[1,0,1,1]],[[1,2,2,1],[0,1,1,2],[3,3,3,2],[1,0,1,1]],[[1,2,2,1],[0,1,1,3],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[0,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[0,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,3,2,1],[0,1,1,2],[2,3,3,2],[1,0,1,1]],[[2,2,2,1],[0,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[0,1,1,2],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[0,1,1,2],[2,4,3,2],[0,2,1,0]],[[1,2,2,1],[0,1,1,2],[3,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,1,1,3],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[0,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[0,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,3,2,1],[0,1,1,2],[2,3,3,2],[0,2,1,0]],[[2,2,2,1],[0,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[0,3,0,1]],[[1,2,2,1],[0,1,1,2],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[0,1,1,2],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[0,1,1,2],[2,4,3,2],[0,2,0,1]],[[1,2,2,1],[0,1,1,2],[3,3,3,2],[0,2,0,1]],[[1,2,2,1],[0,1,1,3],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[0,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[0,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,3,2,1],[0,1,1,2],[2,3,3,2],[0,2,0,1]],[[2,2,2,1],[0,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[0,1,3,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[0,1,1,2],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[0,1,1,2],[2,4,3,2],[0,1,2,0]],[[1,2,2,1],[0,1,1,2],[3,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,1,1,3],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[0,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[0,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,3,2,1],[0,1,1,2],[2,3,3,2],[0,1,2,0]],[[2,2,2,1],[0,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[0,1,1,2],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[0,1,1,2],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[0,1,1,2],[2,4,3,2],[0,1,1,1]],[[1,2,2,1],[0,1,1,2],[3,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,1,1,3],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[0,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,3,1],[0,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,3,2,1],[0,1,1,2],[2,3,3,2],[0,1,1,1]],[[2,2,2,1],[0,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,1,1,2],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[0,1,1,2],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[0,1,1,2],[2,3,4,2],[0,0,2,1]],[[1,2,2,1],[0,1,1,3],[2,3,3,2],[0,0,2,1]],[[1,2,2,2],[0,1,1,2],[2,3,3,2],[0,0,2,1]],[[1,2,3,1],[0,1,1,2],[2,3,3,2],[0,0,2,1]],[[1,3,2,1],[0,1,1,2],[2,3,3,2],[0,0,2,1]],[[2,2,2,1],[0,1,1,2],[2,3,3,2],[0,0,2,1]],[[1,2,2,1],[0,1,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,1],[0,1,1,2],[2,3,4,1],[1,1,1,1]],[[1,2,2,1],[0,1,1,2],[2,4,3,1],[1,1,1,1]],[[1,2,2,1],[0,1,1,2],[3,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,1,1,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[0,1,1,2],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[0,1,1,2],[2,3,3,1],[2,0,2,1]],[[1,2,2,1],[0,1,1,2],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[0,1,1,2],[2,4,3,1],[1,0,2,1]],[[1,2,2,1],[0,1,1,2],[3,3,3,1],[1,0,2,1]],[[0,2,3,1],[1,2,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,2],[1,2,3,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,1],[1,2,3,3],[1,3,0,2],[1,1,1,1]],[[0,2,3,1],[1,2,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,2],[1,2,3,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,1],[1,2,3,3],[1,3,0,2],[1,1,2,0]],[[0,3,2,1],[1,2,3,2],[1,3,0,2],[1,2,0,1]],[[0,2,3,1],[1,2,3,2],[1,3,0,2],[1,2,0,1]],[[0,2,2,2],[1,2,3,2],[1,3,0,2],[1,2,0,1]],[[0,2,2,1],[1,2,3,3],[1,3,0,2],[1,2,0,1]],[[0,3,2,1],[1,2,3,2],[1,3,0,2],[1,2,1,0]],[[0,2,3,1],[1,2,3,2],[1,3,0,2],[1,2,1,0]],[[0,2,2,2],[1,2,3,2],[1,3,0,2],[1,2,1,0]],[[0,2,2,1],[1,2,3,3],[1,3,0,2],[1,2,1,0]],[[1,2,2,1],[0,1,1,2],[2,3,3,1],[0,3,1,1]],[[1,2,2,1],[0,1,1,2],[2,3,4,1],[0,2,1,1]],[[1,2,2,1],[0,1,1,2],[2,4,3,1],[0,2,1,1]],[[1,2,2,1],[0,1,1,2],[3,3,3,1],[0,2,1,1]],[[1,2,2,1],[0,1,1,2],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[0,1,1,2],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[0,1,1,2],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[0,1,1,2],[2,4,3,1],[0,1,2,1]],[[1,2,2,1],[0,1,1,2],[3,3,3,1],[0,1,2,1]],[[0,3,2,1],[1,2,3,2],[1,3,1,0],[1,2,2,0]],[[0,2,3,1],[1,2,3,2],[1,3,1,0],[1,2,2,0]],[[0,2,2,2],[1,2,3,2],[1,3,1,0],[1,2,2,0]],[[0,2,2,1],[1,2,4,2],[1,3,1,0],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,1],[0,1,1,2],[2,4,2,2],[1,1,2,0]],[[1,2,2,1],[0,1,1,2],[3,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,1,1,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[0,1,1,2],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[0,1,1,2],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[0,1,1,3],[2,3,2,2],[1,0,2,1]],[[1,2,2,2],[0,1,1,2],[2,3,2,2],[1,0,2,1]],[[1,2,3,1],[0,1,1,2],[2,3,2,2],[1,0,2,1]],[[1,3,2,1],[0,1,1,2],[2,3,2,2],[1,0,2,1]],[[2,2,2,1],[0,1,1,2],[2,3,2,2],[1,0,2,1]],[[1,2,2,1],[0,1,1,2],[2,3,2,2],[0,2,3,0]],[[0,2,3,1],[1,2,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,2],[1,2,3,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,2,4,2],[1,3,2,0],[1,1,1,1]],[[0,3,2,1],[1,2,3,2],[1,3,2,0],[1,1,2,0]],[[0,2,3,1],[1,2,3,2],[1,3,2,0],[1,1,2,0]],[[0,2,2,2],[1,2,3,2],[1,3,2,0],[1,1,2,0]],[[0,2,2,1],[1,2,4,2],[1,3,2,0],[1,1,2,0]],[[0,3,2,1],[1,2,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,3,1],[1,2,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,2],[1,2,3,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,2,4,2],[1,3,2,0],[1,2,0,1]],[[0,3,2,1],[1,2,3,2],[1,3,2,0],[1,2,1,0]],[[0,2,3,1],[1,2,3,2],[1,3,2,0],[1,2,1,0]],[[0,2,2,2],[1,2,3,2],[1,3,2,0],[1,2,1,0]],[[0,2,2,1],[1,2,4,2],[1,3,2,0],[1,2,1,0]],[[1,2,2,1],[0,1,1,2],[2,3,2,2],[0,3,2,0]],[[1,2,2,1],[0,1,1,2],[2,4,2,2],[0,2,2,0]],[[1,2,2,1],[0,1,1,2],[3,3,2,2],[0,2,2,0]],[[1,2,2,1],[0,1,1,2],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[0,1,1,2],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[0,1,1,2],[2,3,2,3],[0,1,2,1]],[[1,2,2,1],[0,1,1,3],[2,3,2,2],[0,1,2,1]],[[1,2,2,2],[0,1,1,2],[2,3,2,2],[0,1,2,1]],[[1,2,3,1],[0,1,1,2],[2,3,2,2],[0,1,2,1]],[[1,3,2,1],[0,1,1,2],[2,3,2,2],[0,1,2,1]],[[2,2,2,1],[0,1,1,2],[2,3,2,2],[0,1,2,1]],[[1,2,2,1],[0,1,1,2],[2,3,2,1],[2,1,2,1]],[[1,2,2,1],[0,1,1,2],[2,4,2,1],[1,1,2,1]],[[1,2,2,1],[0,1,1,2],[3,3,2,1],[1,1,2,1]],[[1,2,2,1],[0,1,1,2],[2,3,2,1],[0,2,2,2]],[[1,2,2,1],[0,1,1,2],[2,3,2,1],[0,2,3,1]],[[1,2,2,1],[0,1,1,2],[2,3,2,1],[0,3,2,1]],[[1,2,2,1],[0,1,1,2],[2,4,2,1],[0,2,2,1]],[[1,2,2,1],[0,1,1,2],[3,3,2,1],[0,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,3,1,2],[2,1,2,1]],[[1,2,2,1],[0,1,1,2],[2,4,1,2],[1,1,2,1]],[[1,2,2,1],[0,1,1,2],[3,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,1,1,2],[2,3,1,2],[0,2,2,2]],[[1,2,2,1],[0,1,1,2],[2,3,1,2],[0,2,3,1]],[[1,2,2,1],[0,1,1,2],[2,3,1,2],[0,3,2,1]],[[1,2,2,1],[0,1,1,2],[2,3,1,3],[0,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,4,1,2],[0,2,2,1]],[[1,2,2,1],[0,1,1,2],[3,3,1,2],[0,2,2,1]],[[1,2,2,1],[0,1,1,3],[2,3,1,2],[0,2,2,1]],[[1,2,2,2],[0,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,3,1],[0,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,3,2,1],[0,1,1,2],[2,3,1,2],[0,2,2,1]],[[2,2,2,1],[0,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,1],[0,1,1,2],[2,2,3,2],[2,2,1,0]],[[1,2,2,1],[0,1,1,2],[3,2,3,2],[1,2,1,0]],[[1,2,2,1],[0,1,1,2],[2,2,3,2],[1,3,0,1]],[[1,2,2,1],[0,1,1,2],[2,2,3,2],[2,2,0,1]],[[1,2,2,1],[0,1,1,2],[3,2,3,2],[1,2,0,1]],[[1,2,2,1],[0,1,1,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[0,1,1,2],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[0,1,1,2],[2,2,3,3],[0,2,2,0]],[[1,2,2,1],[0,1,1,2],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[0,1,1,3],[2,2,3,2],[0,2,2,0]],[[1,2,2,2],[0,1,1,2],[2,2,3,2],[0,2,2,0]],[[1,2,3,1],[0,1,1,2],[2,2,3,2],[0,2,2,0]],[[1,3,2,1],[0,1,1,2],[2,2,3,2],[0,2,2,0]],[[2,2,2,1],[0,1,1,2],[2,2,3,2],[0,2,2,0]],[[1,2,2,1],[0,1,1,2],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[0,1,1,2],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[0,1,1,2],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[0,1,1,3],[2,2,3,2],[0,2,1,1]],[[1,2,2,2],[0,1,1,2],[2,2,3,2],[0,2,1,1]],[[1,2,3,1],[0,1,1,2],[2,2,3,2],[0,2,1,1]],[[1,3,2,1],[0,1,1,2],[2,2,3,2],[0,2,1,1]],[[2,2,2,1],[0,1,1,2],[2,2,3,2],[0,2,1,1]],[[1,2,2,1],[0,1,1,2],[2,2,3,1],[1,3,1,1]],[[1,2,2,1],[0,1,1,2],[2,2,3,1],[2,2,1,1]],[[1,2,2,1],[0,1,1,2],[3,2,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,1,2],[2,2,3,1],[0,2,2,2]],[[0,3,2,1],[1,2,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,3,1],[1,2,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,2,2],[1,2,3,2],[1,3,3,0],[1,2,0,0]],[[0,2,2,1],[1,2,4,2],[1,3,3,0],[1,2,0,0]],[[1,2,2,1],[0,1,1,2],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[0,1,1,2],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[0,1,1,2],[2,2,4,1],[0,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,2,2,2],[1,2,3,0]],[[1,2,2,1],[0,1,1,2],[2,2,2,2],[1,3,2,0]],[[1,2,2,1],[0,1,1,2],[2,2,2,2],[2,2,2,0]],[[1,2,2,1],[0,1,1,2],[3,2,2,2],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[0,1,1,2],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[0,1,1,2],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[0,1,1,2],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[0,1,1,3],[2,2,2,2],[0,2,2,1]],[[1,2,2,2],[0,1,1,2],[2,2,2,2],[0,2,2,1]],[[1,2,3,1],[0,1,1,2],[2,2,2,2],[0,2,2,1]],[[1,3,2,1],[0,1,1,2],[2,2,2,2],[0,2,2,1]],[[2,2,2,1],[0,1,1,2],[2,2,2,2],[0,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,2,2,1],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[2,2,2,1],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[2,2,2,1],[1,3,2,1]],[[1,2,2,1],[0,1,1,2],[2,2,2,1],[2,2,2,1]],[[1,2,2,1],[0,1,1,2],[3,2,2,1],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,2,1,2],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[2,2,1,2],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[2,2,1,2],[1,3,2,1]],[[1,2,2,1],[0,1,1,2],[2,2,1,2],[2,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,2,1,3],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[3,2,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,1,3],[2,2,1,2],[1,2,2,1]],[[1,2,2,2],[0,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,3,1],[0,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,3,2,1],[0,1,1,2],[2,2,1,2],[1,2,2,1]],[[2,2,2,1],[0,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[0,1,1,2],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[0,1,1,2],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[0,1,1,2],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[3,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,1,1,3],[2,1,3,2],[1,2,2,0]],[[1,2,2,2],[0,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,3,1],[0,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,3,2,1],[0,1,1,2],[2,1,3,2],[1,2,2,0]],[[2,2,2,1],[0,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,1,1,2],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,1,1,2],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[0,1,1,3],[2,1,3,2],[1,2,1,1]],[[1,2,2,2],[0,1,1,2],[2,1,3,2],[1,2,1,1]],[[1,2,3,1],[0,1,1,2],[2,1,3,2],[1,2,1,1]],[[1,3,2,1],[0,1,1,2],[2,1,3,2],[1,2,1,1]],[[2,2,2,1],[0,1,1,2],[2,1,3,2],[1,2,1,1]],[[1,2,2,1],[0,1,1,2],[2,1,3,2],[0,2,2,2]],[[1,2,2,1],[0,1,1,2],[2,1,3,2],[0,2,3,1]],[[1,2,2,1],[0,1,1,2],[2,1,3,3],[0,2,2,1]],[[1,2,2,1],[0,1,1,3],[2,1,3,2],[0,2,2,1]],[[1,2,2,2],[0,1,1,2],[2,1,3,2],[0,2,2,1]],[[1,2,3,1],[0,1,1,2],[2,1,3,2],[0,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[0,1,1,2],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[3,1,3,1],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[2,1,2,2],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[0,1,1,2],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[3,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,1,1,3],[2,1,2,2],[1,2,2,1]],[[1,2,2,2],[0,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,3,1],[0,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,3,2,1],[0,1,1,2],[2,1,2,2],[1,2,2,1]],[[2,2,2,1],[0,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[2,0,3,2],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[2,0,3,3],[1,2,2,1]],[[1,2,2,1],[0,1,1,3],[2,0,3,2],[1,2,2,1]],[[1,2,2,2],[0,1,1,2],[2,0,3,2],[1,2,2,1]],[[1,2,3,1],[0,1,1,2],[2,0,3,2],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,1],[0,1,1,2],[1,3,3,2],[2,2,1,0]],[[1,2,2,1],[0,1,1,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[0,1,1,2],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[0,1,1,2],[1,4,3,2],[1,2,1,0]],[[1,2,2,1],[0,1,1,3],[1,3,3,2],[1,2,1,0]],[[1,2,2,2],[0,1,1,2],[1,3,3,2],[1,2,1,0]],[[1,2,3,1],[0,1,1,2],[1,3,3,2],[1,2,1,0]],[[1,3,2,1],[0,1,1,2],[1,3,3,2],[1,2,1,0]],[[2,2,2,1],[0,1,1,2],[1,3,3,2],[1,2,1,0]],[[1,2,2,1],[0,1,1,2],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[0,1,1,2],[1,3,3,2],[1,3,0,1]],[[1,2,2,1],[0,1,1,2],[1,3,3,2],[2,2,0,1]],[[1,2,2,1],[0,1,1,2],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[0,1,1,2],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[0,1,1,2],[1,4,3,2],[1,2,0,1]],[[1,2,2,1],[0,1,1,3],[1,3,3,2],[1,2,0,1]],[[1,2,2,2],[0,1,1,2],[1,3,3,2],[1,2,0,1]],[[1,2,3,1],[0,1,1,2],[1,3,3,2],[1,2,0,1]],[[1,3,2,1],[0,1,1,2],[1,3,3,2],[1,2,0,1]],[[2,2,2,1],[0,1,1,2],[1,3,3,2],[1,2,0,1]],[[1,2,2,1],[0,1,1,2],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[0,1,1,2],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[0,1,1,2],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[0,1,1,2],[1,4,3,2],[1,1,2,0]],[[1,2,2,1],[0,1,1,3],[1,3,3,2],[1,1,2,0]],[[1,2,2,2],[0,1,1,2],[1,3,3,2],[1,1,2,0]],[[1,2,3,1],[0,1,1,2],[1,3,3,2],[1,1,2,0]],[[1,3,2,1],[0,1,1,2],[1,3,3,2],[1,1,2,0]],[[2,2,2,1],[0,1,1,2],[1,3,3,2],[1,1,2,0]],[[1,2,2,1],[0,1,1,2],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[0,1,1,2],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[0,1,1,2],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[0,1,1,2],[1,4,3,2],[1,1,1,1]],[[1,2,2,1],[0,1,1,3],[1,3,3,2],[1,1,1,1]],[[1,2,2,2],[0,1,1,2],[1,3,3,2],[1,1,1,1]],[[1,2,3,1],[0,1,1,2],[1,3,3,2],[1,1,1,1]],[[1,3,2,1],[0,1,1,2],[1,3,3,2],[1,1,1,1]],[[2,2,2,1],[0,1,1,2],[1,3,3,2],[1,1,1,1]],[[1,2,2,1],[0,1,1,2],[1,3,3,2],[1,0,2,2]],[[1,2,2,1],[0,1,1,2],[1,3,3,3],[1,0,2,1]],[[1,2,2,1],[0,1,1,2],[1,3,4,2],[1,0,2,1]],[[1,2,2,1],[0,1,1,3],[1,3,3,2],[1,0,2,1]],[[1,2,2,2],[0,1,1,2],[1,3,3,2],[1,0,2,1]],[[1,2,3,1],[0,1,1,2],[1,3,3,2],[1,0,2,1]],[[1,3,2,1],[0,1,1,2],[1,3,3,2],[1,0,2,1]],[[1,2,2,1],[0,1,1,2],[1,3,3,1],[1,3,1,1]],[[1,2,2,1],[0,1,1,2],[1,3,3,1],[2,2,1,1]],[[1,2,2,1],[0,1,1,2],[1,3,4,1],[1,2,1,1]],[[1,2,2,1],[0,1,1,2],[1,4,3,1],[1,2,1,1]],[[1,2,2,1],[0,1,1,2],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[0,1,1,2],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[0,1,1,2],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[0,1,1,2],[1,4,3,1],[1,1,2,1]],[[0,3,2,1],[1,2,3,2],[2,0,0,2],[1,2,2,1]],[[0,2,3,1],[1,2,3,2],[2,0,0,2],[1,2,2,1]],[[0,2,2,2],[1,2,3,2],[2,0,0,2],[1,2,2,1]],[[0,2,2,1],[1,2,3,3],[2,0,0,2],[1,2,2,1]],[[0,2,3,1],[1,2,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,2],[1,2,3,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,1],[1,2,3,3],[2,0,1,2],[1,2,1,1]],[[0,2,3,1],[1,2,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,2],[1,2,3,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,1],[1,2,3,3],[2,0,1,2],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[1,3,2,2],[1,2,3,0]],[[1,2,2,1],[0,1,1,2],[1,3,2,2],[1,3,2,0]],[[1,2,2,1],[0,1,1,2],[1,3,2,2],[2,2,2,0]],[[1,2,2,1],[0,1,1,2],[1,4,2,2],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[0,1,1,2],[1,3,2,2],[1,1,3,1]],[[0,2,3,1],[1,2,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,2],[1,2,3,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[1,2,4,2],[2,0,3,0],[1,2,1,1]],[[0,3,2,1],[1,2,3,2],[2,0,3,0],[1,2,2,0]],[[0,2,3,1],[1,2,3,2],[2,0,3,0],[1,2,2,0]],[[0,2,2,2],[1,2,3,2],[2,0,3,0],[1,2,2,0]],[[0,2,2,1],[1,2,4,2],[2,0,3,0],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[1,3,2,3],[1,1,2,1]],[[1,2,2,1],[0,1,1,3],[1,3,2,2],[1,1,2,1]],[[1,2,2,2],[0,1,1,2],[1,3,2,2],[1,1,2,1]],[[1,2,3,1],[0,1,1,2],[1,3,2,2],[1,1,2,1]],[[1,3,2,1],[0,1,1,2],[1,3,2,2],[1,1,2,1]],[[2,2,2,1],[0,1,1,2],[1,3,2,2],[1,1,2,1]],[[1,2,2,1],[0,1,1,2],[1,3,2,1],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[1,3,2,1],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[1,3,2,1],[1,3,2,1]],[[1,2,2,1],[0,1,1,2],[1,3,2,1],[2,2,2,1]],[[1,2,2,1],[0,1,1,2],[1,4,2,1],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[1,3,1,2],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[1,3,1,2],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[1,3,1,2],[1,3,2,1]],[[1,2,2,1],[0,1,1,2],[1,3,1,2],[2,2,2,1]],[[1,2,2,1],[0,1,1,2],[1,3,1,3],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[1,4,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,1,3],[1,3,1,2],[1,2,2,1]],[[1,2,2,2],[0,1,1,2],[1,3,1,2],[1,2,2,1]],[[1,2,3,1],[0,1,1,2],[1,3,1,2],[1,2,2,1]],[[1,3,2,1],[0,1,1,2],[1,3,1,2],[1,2,2,1]],[[2,2,2,1],[0,1,1,2],[1,3,1,2],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[0,1,1,2],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[0,1,1,2],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[0,1,1,2],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[0,1,1,3],[1,2,3,2],[1,2,2,0]],[[1,2,2,2],[0,1,1,2],[1,2,3,2],[1,2,2,0]],[[1,2,3,1],[0,1,1,2],[1,2,3,2],[1,2,2,0]],[[1,3,2,1],[0,1,1,2],[1,2,3,2],[1,2,2,0]],[[2,2,2,1],[0,1,1,2],[1,2,3,2],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[0,1,1,2],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[0,1,1,2],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[0,1,1,3],[1,2,3,2],[1,2,1,1]],[[1,2,2,2],[0,1,1,2],[1,2,3,2],[1,2,1,1]],[[1,2,3,1],[0,1,1,2],[1,2,3,2],[1,2,1,1]],[[1,3,2,1],[0,1,1,2],[1,2,3,2],[1,2,1,1]],[[2,2,2,1],[0,1,1,2],[1,2,3,2],[1,2,1,1]],[[1,2,2,1],[0,1,1,2],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[0,1,1,2],[1,2,3,1],[2,2,2,1]],[[0,2,3,1],[1,2,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,2],[1,2,3,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,1],[1,2,3,3],[2,1,0,2],[0,2,2,1]],[[0,2,3,1],[1,2,3,2],[2,1,1,2],[0,2,1,1]],[[0,2,2,2],[1,2,3,2],[2,1,1,2],[0,2,1,1]],[[0,2,2,1],[1,2,3,3],[2,1,1,2],[0,2,1,1]],[[0,2,3,1],[1,2,3,2],[2,1,1,2],[0,2,2,0]],[[0,2,2,2],[1,2,3,2],[2,1,1,2],[0,2,2,0]],[[0,2,2,1],[1,2,3,3],[2,1,1,2],[0,2,2,0]],[[1,2,2,1],[0,1,1,2],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[0,1,1,2],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[0,1,1,2],[1,2,2,3],[1,2,2,1]],[[1,2,2,1],[0,1,1,3],[1,2,2,2],[1,2,2,1]],[[1,2,2,2],[0,1,1,2],[1,2,2,2],[1,2,2,1]],[[1,2,3,1],[0,1,1,2],[1,2,2,2],[1,2,2,1]],[[1,3,2,1],[0,1,1,2],[1,2,2,2],[1,2,2,1]],[[2,2,2,1],[0,1,1,2],[1,2,2,2],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[1,1,3,2],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[1,1,3,2],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[1,1,3,3],[1,2,2,1]],[[1,2,2,1],[0,1,1,3],[1,1,3,2],[1,2,2,1]],[[1,2,2,2],[0,1,1,2],[1,1,3,2],[1,2,2,1]],[[1,2,3,1],[0,1,1,2],[1,1,3,2],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[0,3,3,2],[1,2,3,0]],[[1,2,2,1],[0,1,1,2],[0,3,3,2],[1,3,2,0]],[[1,2,2,1],[0,1,1,2],[0,3,3,3],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[0,3,4,2],[1,2,2,0]],[[1,2,2,1],[0,1,1,3],[0,3,3,2],[1,2,2,0]],[[1,2,2,2],[0,1,1,2],[0,3,3,2],[1,2,2,0]],[[1,2,3,1],[0,1,1,2],[0,3,3,2],[1,2,2,0]],[[1,3,2,1],[0,1,1,2],[0,3,3,2],[1,2,2,0]],[[1,2,2,1],[0,1,1,2],[0,3,3,2],[1,2,1,2]],[[1,2,2,1],[0,1,1,2],[0,3,3,3],[1,2,1,1]],[[1,2,2,1],[0,1,1,2],[0,3,4,2],[1,2,1,1]],[[1,2,2,1],[0,1,1,3],[0,3,3,2],[1,2,1,1]],[[1,2,2,2],[0,1,1,2],[0,3,3,2],[1,2,1,1]],[[1,2,3,1],[0,1,1,2],[0,3,3,2],[1,2,1,1]],[[1,3,2,1],[0,1,1,2],[0,3,3,2],[1,2,1,1]],[[1,2,2,1],[0,1,1,2],[0,3,3,1],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[0,3,3,1],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[0,3,3,1],[1,3,2,1]],[[0,2,3,1],[1,2,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,2],[1,2,3,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[1,2,4,2],[2,1,3,0],[0,2,1,1]],[[0,3,2,1],[1,2,3,2],[2,1,3,0],[0,2,2,0]],[[0,2,3,1],[1,2,3,2],[2,1,3,0],[0,2,2,0]],[[0,2,2,2],[1,2,3,2],[2,1,3,0],[0,2,2,0]],[[0,2,2,1],[1,2,4,2],[2,1,3,0],[0,2,2,0]],[[1,2,2,1],[0,1,1,2],[0,3,4,1],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[0,3,2,2],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[0,3,2,2],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[0,3,2,2],[1,3,2,1]],[[1,2,2,1],[0,1,1,2],[0,3,2,3],[1,2,2,1]],[[1,2,2,1],[0,1,1,3],[0,3,2,2],[1,2,2,1]],[[1,2,2,2],[0,1,1,2],[0,3,2,2],[1,2,2,1]],[[1,2,3,1],[0,1,1,2],[0,3,2,2],[1,2,2,1]],[[1,3,2,1],[0,1,1,2],[0,3,2,2],[1,2,2,1]],[[1,2,2,1],[0,1,1,2],[0,2,3,2],[1,2,2,2]],[[1,2,2,1],[0,1,1,2],[0,2,3,2],[1,2,3,1]],[[1,2,2,1],[0,1,1,2],[0,2,3,3],[1,2,2,1]],[[1,2,2,1],[0,1,1,3],[0,2,3,2],[1,2,2,1]],[[1,2,2,2],[0,1,1,2],[0,2,3,2],[1,2,2,1]],[[1,2,3,1],[0,1,1,2],[0,2,3,2],[1,2,2,1]],[[1,2,2,1],[0,1,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,1],[0,1,0,2],[2,3,3,2],[1,0,3,1]],[[1,2,2,1],[0,1,0,2],[2,3,3,3],[1,0,2,1]],[[1,2,2,1],[0,1,0,2],[2,3,3,2],[0,1,2,2]],[[1,2,2,1],[0,1,0,2],[2,3,3,2],[0,1,3,1]],[[1,2,2,1],[0,1,0,2],[2,3,3,3],[0,1,2,1]],[[1,2,2,1],[0,1,0,2],[2,2,3,2],[0,2,2,2]],[[1,2,2,1],[0,1,0,2],[2,2,3,2],[0,2,3,1]],[[1,2,2,1],[0,1,0,2],[2,2,3,2],[0,3,2,1]],[[1,2,2,1],[0,1,0,2],[2,2,3,3],[0,2,2,1]],[[1,2,2,1],[0,1,0,2],[2,1,3,2],[1,2,2,2]],[[1,2,2,1],[0,1,0,2],[2,1,3,2],[1,2,3,1]],[[1,2,2,1],[0,1,0,2],[2,1,3,2],[1,3,2,1]],[[1,2,2,1],[0,1,0,2],[2,1,3,2],[2,2,2,1]],[[1,2,2,1],[0,1,0,2],[2,1,3,3],[1,2,2,1]],[[1,2,2,1],[0,1,0,2],[1,3,3,2],[1,1,2,2]],[[1,2,2,1],[0,1,0,2],[1,3,3,2],[1,1,3,1]],[[1,2,2,1],[0,1,0,2],[1,3,3,3],[1,1,2,1]],[[1,2,2,1],[0,1,0,2],[1,2,3,2],[1,2,2,2]],[[1,2,2,1],[0,1,0,2],[1,2,3,2],[1,2,3,1]],[[1,2,2,1],[0,1,0,2],[1,2,3,2],[1,3,2,1]],[[1,2,2,1],[0,1,0,2],[1,2,3,2],[2,2,2,1]],[[1,2,2,1],[0,1,0,2],[1,2,3,3],[1,2,2,1]],[[1,2,2,1],[0,1,0,2],[0,3,3,2],[1,2,2,2]],[[1,2,2,1],[0,1,0,2],[0,3,3,2],[1,2,3,1]],[[1,2,2,1],[0,1,0,2],[0,3,3,2],[1,3,2,1]],[[1,2,2,1],[0,1,0,2],[0,3,3,3],[1,2,2,1]],[[1,2,2,1],[0,0,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,1],[0,0,3,3],[2,3,3,2],[1,0,0,1]],[[1,2,2,2],[0,0,3,2],[2,3,3,2],[1,0,0,1]],[[1,2,3,1],[0,0,3,2],[2,3,3,2],[1,0,0,1]],[[1,2,2,1],[0,0,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,1],[0,0,3,3],[2,3,3,2],[0,1,0,1]],[[1,2,2,2],[0,0,3,2],[2,3,3,2],[0,1,0,1]],[[1,2,3,1],[0,0,3,2],[2,3,3,2],[0,1,0,1]],[[1,2,2,1],[0,0,3,3],[2,3,3,1],[1,1,1,0]],[[1,2,2,2],[0,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,2,3,1],[0,0,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,3,1],[1,2,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,2],[1,2,3,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,1],[1,2,3,3],[2,2,0,2],[0,1,2,1]],[[0,2,3,1],[1,2,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,2],[1,2,3,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,1],[1,2,3,3],[2,2,0,2],[1,0,2,1]],[[1,2,2,1],[0,0,3,3],[2,3,3,1],[1,1,0,1]],[[1,2,2,2],[0,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,2,3,1],[0,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,1],[0,0,3,3],[2,3,3,1],[1,0,2,0]],[[1,2,2,2],[0,0,3,2],[2,3,3,1],[1,0,2,0]],[[0,2,3,1],[1,2,3,2],[2,2,1,2],[0,0,2,1]],[[0,2,2,2],[1,2,3,2],[2,2,1,2],[0,0,2,1]],[[0,2,2,1],[1,2,3,3],[2,2,1,2],[0,0,2,1]],[[0,2,3,1],[1,2,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,2],[1,2,3,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,1],[1,2,3,3],[2,2,1,2],[0,1,1,1]],[[0,2,3,1],[1,2,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,2],[1,2,3,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,1],[1,2,3,3],[2,2,1,2],[0,1,2,0]],[[0,2,3,1],[1,2,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,2],[1,2,3,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,1],[1,2,3,3],[2,2,1,2],[0,2,0,1]],[[0,2,3,1],[1,2,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,2],[1,2,3,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,1],[1,2,3,3],[2,2,1,2],[0,2,1,0]],[[1,2,3,1],[0,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,1],[0,0,3,3],[2,3,3,1],[1,0,1,1]],[[1,2,2,2],[0,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,2,3,1],[0,0,3,2],[2,3,3,1],[1,0,1,1]],[[0,2,3,1],[1,2,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,2],[1,2,3,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,1],[1,2,3,3],[2,2,1,2],[1,0,1,1]],[[0,2,3,1],[1,2,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,2],[1,2,3,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,1],[1,2,3,3],[2,2,1,2],[1,0,2,0]],[[0,2,3,1],[1,2,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,2],[1,2,3,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,1],[1,2,3,3],[2,2,1,2],[1,1,0,1]],[[0,2,3,1],[1,2,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,2],[1,2,3,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,1],[1,2,3,3],[2,2,1,2],[1,1,1,0]],[[1,2,2,1],[0,0,3,3],[2,3,3,1],[0,2,1,0]],[[1,2,2,2],[0,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,2,3,1],[0,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,1],[0,0,3,3],[2,3,3,1],[0,2,0,1]],[[1,2,2,2],[0,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,2,3,1],[0,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,1],[0,0,3,3],[2,3,3,1],[0,1,2,0]],[[1,2,2,2],[0,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,2,3,1],[0,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,1],[0,0,3,3],[2,3,3,1],[0,1,1,1]],[[1,2,2,2],[0,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,2,3,1],[0,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,1],[0,0,3,3],[2,3,3,1],[0,0,2,1]],[[1,2,2,2],[0,0,3,2],[2,3,3,1],[0,0,2,1]],[[1,2,3,1],[0,0,3,2],[2,3,3,1],[0,0,2,1]],[[1,2,2,1],[0,0,3,3],[2,3,3,0],[1,1,1,1]],[[1,2,2,2],[0,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,2,3,1],[0,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,1],[0,0,3,3],[2,3,3,0],[1,0,2,1]],[[1,2,2,2],[0,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,2,3,1],[0,0,3,2],[2,3,3,0],[1,0,2,1]],[[0,2,3,1],[1,2,3,2],[2,2,2,2],[0,1,0,1]],[[0,2,2,2],[1,2,3,2],[2,2,2,2],[0,1,0,1]],[[0,2,2,1],[1,2,3,3],[2,2,2,2],[0,1,0,1]],[[1,2,2,1],[0,0,3,3],[2,3,3,0],[0,2,1,1]],[[1,2,2,2],[0,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,2,3,1],[0,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,1],[0,0,3,3],[2,3,3,0],[0,1,2,1]],[[1,2,2,2],[0,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,2,3,1],[0,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,2,2,1],[0,0,3,2],[2,3,2,3],[1,1,1,0]],[[0,2,3,1],[1,2,3,2],[2,2,2,2],[1,0,0,1]],[[0,2,2,2],[1,2,3,2],[2,2,2,2],[1,0,0,1]],[[0,2,2,1],[1,2,3,3],[2,2,2,2],[1,0,0,1]],[[1,2,2,1],[0,0,3,3],[2,3,2,2],[1,1,1,0]],[[1,2,2,2],[0,0,3,2],[2,3,2,2],[1,1,1,0]],[[1,2,3,1],[0,0,3,2],[2,3,2,2],[1,1,1,0]],[[1,2,2,1],[0,0,3,2],[2,3,2,2],[1,1,0,2]],[[1,2,2,1],[0,0,3,2],[2,3,2,3],[1,1,0,1]],[[1,2,2,1],[0,0,3,3],[2,3,2,2],[1,1,0,1]],[[1,2,2,2],[0,0,3,2],[2,3,2,2],[1,1,0,1]],[[1,2,3,1],[0,0,3,2],[2,3,2,2],[1,1,0,1]],[[1,2,2,1],[0,0,3,2],[2,3,2,3],[1,0,2,0]],[[1,2,2,1],[0,0,3,3],[2,3,2,2],[1,0,2,0]],[[1,2,2,2],[0,0,3,2],[2,3,2,2],[1,0,2,0]],[[1,2,3,1],[0,0,3,2],[2,3,2,2],[1,0,2,0]],[[1,2,2,1],[0,0,3,2],[2,3,2,2],[1,0,1,2]],[[1,2,2,1],[0,0,3,2],[2,3,2,3],[1,0,1,1]],[[1,2,2,1],[0,0,3,3],[2,3,2,2],[1,0,1,1]],[[1,2,2,2],[0,0,3,2],[2,3,2,2],[1,0,1,1]],[[1,2,3,1],[0,0,3,2],[2,3,2,2],[1,0,1,1]],[[1,2,2,1],[0,0,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,1],[0,0,3,3],[2,3,2,2],[0,2,1,0]],[[1,2,2,2],[0,0,3,2],[2,3,2,2],[0,2,1,0]],[[1,2,3,1],[0,0,3,2],[2,3,2,2],[0,2,1,0]],[[1,2,2,1],[0,0,3,2],[2,3,2,2],[0,2,0,2]],[[1,2,2,1],[0,0,3,2],[2,3,2,3],[0,2,0,1]],[[1,2,2,1],[0,0,3,3],[2,3,2,2],[0,2,0,1]],[[1,2,2,2],[0,0,3,2],[2,3,2,2],[0,2,0,1]],[[1,2,3,1],[0,0,3,2],[2,3,2,2],[0,2,0,1]],[[1,2,2,1],[0,0,3,2],[2,3,2,3],[0,1,2,0]],[[1,2,2,1],[0,0,3,3],[2,3,2,2],[0,1,2,0]],[[1,2,2,2],[0,0,3,2],[2,3,2,2],[0,1,2,0]],[[1,2,3,1],[0,0,3,2],[2,3,2,2],[0,1,2,0]],[[1,2,2,1],[0,0,3,2],[2,3,2,2],[0,1,1,2]],[[1,2,2,1],[0,0,3,2],[2,3,2,3],[0,1,1,1]],[[1,2,2,1],[0,0,3,3],[2,3,2,2],[0,1,1,1]],[[1,2,2,2],[0,0,3,2],[2,3,2,2],[0,1,1,1]],[[1,2,3,1],[0,0,3,2],[2,3,2,2],[0,1,1,1]],[[1,2,2,1],[0,0,3,2],[2,3,2,2],[0,0,2,2]],[[1,2,2,1],[0,0,3,2],[2,3,2,3],[0,0,2,1]],[[1,2,2,1],[0,0,3,3],[2,3,2,2],[0,0,2,1]],[[1,2,2,2],[0,0,3,2],[2,3,2,2],[0,0,2,1]],[[1,2,3,1],[0,0,3,2],[2,3,2,2],[0,0,2,1]],[[1,2,2,1],[0,0,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,1],[0,0,3,2],[2,3,1,2],[1,0,3,1]],[[1,2,2,1],[0,0,3,2],[2,3,1,3],[1,0,2,1]],[[0,2,3,1],[1,2,3,2],[2,2,3,0],[0,0,2,1]],[[0,2,2,2],[1,2,3,2],[2,2,3,0],[0,0,2,1]],[[0,2,2,1],[1,2,4,2],[2,2,3,0],[0,0,2,1]],[[0,3,2,1],[1,2,3,2],[2,2,3,0],[0,1,1,1]],[[0,2,3,1],[1,2,3,2],[2,2,3,0],[0,1,1,1]],[[0,2,2,2],[1,2,3,2],[2,2,3,0],[0,1,1,1]],[[0,2,2,1],[1,2,4,2],[2,2,3,0],[0,1,1,1]],[[0,3,2,1],[1,2,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,3,1],[1,2,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,2,2],[1,2,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,2,1],[1,2,4,2],[2,2,3,0],[0,1,2,0]],[[0,3,2,1],[1,2,3,2],[2,2,3,0],[0,2,0,1]],[[0,2,3,1],[1,2,3,2],[2,2,3,0],[0,2,0,1]],[[0,2,2,2],[1,2,3,2],[2,2,3,0],[0,2,0,1]],[[0,2,2,1],[1,2,4,2],[2,2,3,0],[0,2,0,1]],[[0,3,2,1],[1,2,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,3,1],[1,2,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,2,2],[1,2,3,2],[2,2,3,0],[0,2,1,0]],[[0,2,2,1],[1,2,4,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,1],[0,0,3,3],[2,3,1,2],[1,0,2,1]],[[1,2,2,2],[0,0,3,2],[2,3,1,2],[1,0,2,1]],[[1,2,3,1],[0,0,3,2],[2,3,1,2],[1,0,2,1]],[[0,3,2,1],[1,2,3,2],[2,2,3,0],[1,0,1,1]],[[0,2,3,1],[1,2,3,2],[2,2,3,0],[1,0,1,1]],[[0,2,2,2],[1,2,3,2],[2,2,3,0],[1,0,1,1]],[[0,2,2,1],[1,2,4,2],[2,2,3,0],[1,0,1,1]],[[0,3,2,1],[1,2,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,3,1],[1,2,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,2,2],[1,2,3,2],[2,2,3,0],[1,0,2,0]],[[0,2,2,1],[1,2,4,2],[2,2,3,0],[1,0,2,0]],[[0,3,2,1],[1,2,3,2],[2,2,3,0],[1,1,0,1]],[[0,2,3,1],[1,2,3,2],[2,2,3,0],[1,1,0,1]],[[0,2,2,2],[1,2,3,2],[2,2,3,0],[1,1,0,1]],[[0,2,2,1],[1,2,4,2],[2,2,3,0],[1,1,0,1]],[[0,3,2,1],[1,2,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,3,1],[1,2,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,2,2],[1,2,3,2],[2,2,3,0],[1,1,1,0]],[[0,2,2,1],[1,2,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,1],[0,0,3,2],[2,3,1,2],[0,1,2,2]],[[1,2,2,1],[0,0,3,2],[2,3,1,2],[0,1,3,1]],[[1,2,2,1],[0,0,3,2],[2,3,1,3],[0,1,2,1]],[[1,2,2,1],[0,0,3,3],[2,3,1,2],[0,1,2,1]],[[1,2,2,2],[0,0,3,2],[2,3,1,2],[0,1,2,1]],[[1,2,3,1],[0,0,3,2],[2,3,1,2],[0,1,2,1]],[[1,2,2,1],[0,0,3,2],[2,3,0,2],[0,2,2,2]],[[1,2,2,1],[0,0,3,2],[2,3,0,2],[0,2,3,1]],[[1,2,2,1],[0,0,3,2],[2,3,0,2],[0,3,2,1]],[[1,2,2,1],[0,0,3,2],[2,3,0,3],[0,2,2,1]],[[1,2,2,1],[0,0,3,3],[2,3,0,2],[0,2,2,1]],[[1,2,2,2],[0,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,2,3,1],[0,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,2,2,1],[0,0,3,2],[2,2,3,3],[1,0,2,0]],[[1,2,2,1],[0,0,3,3],[2,2,3,2],[1,0,2,0]],[[1,2,2,2],[0,0,3,2],[2,2,3,2],[1,0,2,0]],[[1,2,3,1],[0,0,3,2],[2,2,3,2],[1,0,2,0]],[[1,2,2,1],[0,0,3,2],[2,2,3,2],[1,0,1,2]],[[1,2,2,1],[0,0,3,2],[2,2,3,3],[1,0,1,1]],[[1,2,2,1],[0,0,3,3],[2,2,3,2],[1,0,1,1]],[[1,2,2,2],[0,0,3,2],[2,2,3,2],[1,0,1,1]],[[1,2,3,1],[0,0,3,2],[2,2,3,2],[1,0,1,1]],[[1,2,2,1],[0,0,3,2],[2,2,3,3],[0,1,2,0]],[[1,2,2,1],[0,0,3,3],[2,2,3,2],[0,1,2,0]],[[1,2,2,2],[0,0,3,2],[2,2,3,2],[0,1,2,0]],[[1,2,3,1],[0,0,3,2],[2,2,3,2],[0,1,2,0]],[[1,2,2,1],[0,0,3,2],[2,2,3,2],[0,1,1,2]],[[1,2,2,1],[0,0,3,2],[2,2,3,3],[0,1,1,1]],[[1,2,2,1],[0,0,3,3],[2,2,3,2],[0,1,1,1]],[[1,2,2,2],[0,0,3,2],[2,2,3,2],[0,1,1,1]],[[1,2,3,1],[0,0,3,2],[2,2,3,2],[0,1,1,1]],[[1,2,2,1],[0,0,3,2],[2,2,3,2],[0,0,2,2]],[[1,2,2,1],[0,0,3,2],[2,2,3,3],[0,0,2,1]],[[1,2,2,1],[0,0,3,3],[2,2,3,2],[0,0,2,1]],[[1,2,2,2],[0,0,3,2],[2,2,3,2],[0,0,2,1]],[[1,2,3,1],[0,0,3,2],[2,2,3,2],[0,0,2,1]],[[1,2,2,1],[0,0,3,3],[2,2,3,1],[0,2,2,0]],[[1,2,2,2],[0,0,3,2],[2,2,3,1],[0,2,2,0]],[[1,2,3,1],[0,0,3,2],[2,2,3,1],[0,2,2,0]],[[1,2,2,1],[0,0,3,3],[2,2,3,1],[0,2,1,1]],[[1,2,2,2],[0,0,3,2],[2,2,3,1],[0,2,1,1]],[[1,2,3,1],[0,0,3,2],[2,2,3,1],[0,2,1,1]],[[1,2,2,1],[0,0,3,3],[2,2,3,0],[0,2,2,1]],[[1,2,2,2],[0,0,3,2],[2,2,3,0],[0,2,2,1]],[[1,2,3,1],[0,0,3,2],[2,2,3,0],[0,2,2,1]],[[1,2,2,1],[0,0,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,1],[0,0,3,3],[2,2,2,2],[0,2,2,0]],[[1,2,2,2],[0,0,3,2],[2,2,2,2],[0,2,2,0]],[[1,2,3,1],[0,0,3,2],[2,2,2,2],[0,2,2,0]],[[1,2,2,1],[0,0,3,2],[2,2,2,2],[0,2,1,2]],[[1,2,2,1],[0,0,3,2],[2,2,2,3],[0,2,1,1]],[[1,2,2,1],[0,0,3,3],[2,2,2,2],[0,2,1,1]],[[1,2,2,2],[0,0,3,2],[2,2,2,2],[0,2,1,1]],[[1,2,3,1],[0,0,3,2],[2,2,2,2],[0,2,1,1]],[[1,2,2,1],[0,0,3,2],[2,2,1,2],[0,2,2,2]],[[1,2,2,1],[0,0,3,2],[2,2,1,2],[0,2,3,1]],[[1,2,2,1],[0,0,3,2],[2,2,1,2],[0,3,2,1]],[[1,2,2,1],[0,0,3,2],[2,2,1,3],[0,2,2,1]],[[1,2,2,1],[0,0,3,3],[2,2,1,2],[0,2,2,1]],[[1,2,2,2],[0,0,3,2],[2,2,1,2],[0,2,2,1]],[[1,2,3,1],[0,0,3,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,1],[0,0,3,2],[2,2,0,2],[1,2,2,2]],[[1,2,2,1],[0,0,3,2],[2,2,0,2],[1,2,3,1]],[[1,2,2,1],[0,0,3,2],[2,2,0,2],[1,3,2,1]],[[1,2,2,1],[0,0,3,2],[2,2,0,2],[2,2,2,1]],[[1,2,2,1],[0,0,3,2],[2,2,0,3],[1,2,2,1]],[[1,2,2,1],[0,0,3,3],[2,2,0,2],[1,2,2,1]],[[1,2,2,2],[0,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,2,3,1],[0,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,2,2,1],[0,0,3,2],[2,1,3,3],[0,2,2,0]],[[1,2,2,1],[0,0,3,3],[2,1,3,2],[0,2,2,0]],[[1,2,2,2],[0,0,3,2],[2,1,3,2],[0,2,2,0]],[[1,2,3,1],[0,0,3,2],[2,1,3,2],[0,2,2,0]],[[1,2,2,1],[0,0,3,2],[2,1,3,2],[0,2,1,2]],[[1,2,2,1],[0,0,3,2],[2,1,3,3],[0,2,1,1]],[[1,2,2,1],[0,0,3,3],[2,1,3,2],[0,2,1,1]],[[1,2,2,2],[0,0,3,2],[2,1,3,2],[0,2,1,1]],[[1,2,3,1],[0,0,3,2],[2,1,3,2],[0,2,1,1]],[[1,2,2,1],[0,0,3,2],[2,1,3,2],[0,1,2,2]],[[1,2,2,1],[0,0,3,2],[2,1,3,3],[0,1,2,1]],[[1,2,2,1],[0,0,3,3],[2,1,3,2],[0,1,2,1]],[[1,2,2,2],[0,0,3,2],[2,1,3,2],[0,1,2,1]],[[1,2,3,1],[0,0,3,2],[2,1,3,2],[0,1,2,1]],[[1,2,2,1],[0,0,3,3],[2,1,3,1],[1,2,2,0]],[[1,2,2,2],[0,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,2,3,1],[0,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,2,2,1],[0,0,3,3],[2,1,3,1],[1,2,1,1]],[[1,2,2,2],[0,0,3,2],[2,1,3,1],[1,2,1,1]],[[1,2,3,1],[0,0,3,2],[2,1,3,1],[1,2,1,1]],[[1,2,2,1],[0,0,3,3],[2,1,3,0],[1,2,2,1]],[[1,2,2,2],[0,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,2,3,1],[0,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,2,2,1],[0,0,3,2],[2,1,2,3],[1,2,2,0]],[[1,2,2,1],[0,0,3,3],[2,1,2,2],[1,2,2,0]],[[1,2,2,2],[0,0,3,2],[2,1,2,2],[1,2,2,0]],[[1,2,3,1],[0,0,3,2],[2,1,2,2],[1,2,2,0]],[[1,2,2,1],[0,0,3,2],[2,1,2,2],[1,2,1,2]],[[1,2,2,1],[0,0,3,2],[2,1,2,3],[1,2,1,1]],[[1,2,2,1],[0,0,3,3],[2,1,2,2],[1,2,1,1]],[[1,2,2,2],[0,0,3,2],[2,1,2,2],[1,2,1,1]],[[1,2,3,1],[0,0,3,2],[2,1,2,2],[1,2,1,1]],[[1,2,2,1],[0,0,3,2],[2,1,2,2],[0,2,2,2]],[[1,2,2,1],[0,0,3,2],[2,1,2,2],[0,2,3,1]],[[1,2,2,1],[0,0,3,2],[2,1,2,3],[0,2,2,1]],[[1,2,2,1],[0,0,3,3],[2,1,2,2],[0,2,2,1]],[[1,2,2,2],[0,0,3,2],[2,1,2,2],[0,2,2,1]],[[1,2,3,1],[0,0,3,2],[2,1,2,2],[0,2,2,1]],[[1,2,2,1],[0,0,3,2],[2,1,1,2],[1,2,2,2]],[[1,2,2,1],[0,0,3,2],[2,1,1,2],[1,2,3,1]],[[1,2,2,1],[0,0,3,2],[2,1,1,2],[1,3,2,1]],[[1,2,2,1],[0,0,3,2],[2,1,1,2],[2,2,2,1]],[[1,2,2,1],[0,0,3,2],[2,1,1,3],[1,2,2,1]],[[1,2,2,1],[0,0,3,3],[2,1,1,2],[1,2,2,1]],[[1,2,2,2],[0,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,2,3,1],[0,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,2,2,1],[0,0,3,2],[2,0,3,3],[1,2,2,0]],[[1,2,2,1],[0,0,3,3],[2,0,3,2],[1,2,2,0]],[[1,2,2,2],[0,0,3,2],[2,0,3,2],[1,2,2,0]],[[1,2,3,1],[0,0,3,2],[2,0,3,2],[1,2,2,0]],[[1,2,2,1],[0,0,3,2],[2,0,3,2],[1,2,1,2]],[[1,2,2,1],[0,0,3,2],[2,0,3,3],[1,2,1,1]],[[1,2,2,1],[0,0,3,3],[2,0,3,2],[1,2,1,1]],[[1,2,2,2],[0,0,3,2],[2,0,3,2],[1,2,1,1]],[[1,2,3,1],[0,0,3,2],[2,0,3,2],[1,2,1,1]],[[1,2,2,1],[0,0,3,2],[2,0,3,2],[1,1,2,2]],[[1,2,2,1],[0,0,3,2],[2,0,3,3],[1,1,2,1]],[[1,2,2,1],[0,0,3,3],[2,0,3,2],[1,1,2,1]],[[1,2,2,2],[0,0,3,2],[2,0,3,2],[1,1,2,1]],[[1,2,3,1],[0,0,3,2],[2,0,3,2],[1,1,2,1]],[[1,2,2,1],[0,0,3,2],[2,0,2,2],[1,2,2,2]],[[1,2,2,1],[0,0,3,2],[2,0,2,2],[1,2,3,1]],[[1,2,2,1],[0,0,3,2],[2,0,2,3],[1,2,2,1]],[[1,2,2,1],[0,0,3,3],[2,0,2,2],[1,2,2,1]],[[1,2,2,2],[0,0,3,2],[2,0,2,2],[1,2,2,1]],[[1,2,3,1],[0,0,3,2],[2,0,2,2],[1,2,2,1]],[[1,2,2,1],[0,0,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,1],[0,0,3,3],[1,3,3,2],[1,1,0,1]],[[1,2,2,2],[0,0,3,2],[1,3,3,2],[1,1,0,1]],[[1,2,3,1],[0,0,3,2],[1,3,3,2],[1,1,0,1]],[[1,2,2,1],[0,0,3,2],[1,3,3,3],[0,1,2,0]],[[1,2,2,1],[0,0,3,3],[1,3,3,2],[0,1,2,0]],[[1,2,2,2],[0,0,3,2],[1,3,3,2],[0,1,2,0]],[[1,2,3,1],[0,0,3,2],[1,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,0,3,2],[1,3,3,2],[0,1,1,2]],[[1,2,2,1],[0,0,3,2],[1,3,3,3],[0,1,1,1]],[[1,2,2,1],[0,0,3,3],[1,3,3,2],[0,1,1,1]],[[1,2,2,2],[0,0,3,2],[1,3,3,2],[0,1,1,1]],[[1,2,3,1],[0,0,3,2],[1,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,0,3,2],[1,3,3,2],[0,0,2,2]],[[1,2,2,1],[0,0,3,2],[1,3,3,3],[0,0,2,1]],[[1,2,2,1],[0,0,3,3],[1,3,3,2],[0,0,2,1]],[[1,2,2,2],[0,0,3,2],[1,3,3,2],[0,0,2,1]],[[1,2,3,1],[0,0,3,2],[1,3,3,2],[0,0,2,1]],[[1,2,2,1],[0,0,3,3],[1,3,3,1],[1,2,1,0]],[[1,2,2,2],[0,0,3,2],[1,3,3,1],[1,2,1,0]],[[1,2,3,1],[0,0,3,2],[1,3,3,1],[1,2,1,0]],[[1,2,2,1],[0,0,3,3],[1,3,3,1],[1,2,0,1]],[[1,2,2,2],[0,0,3,2],[1,3,3,1],[1,2,0,1]],[[1,2,3,1],[0,0,3,2],[1,3,3,1],[1,2,0,1]],[[0,3,2,1],[1,2,3,2],[2,3,0,2],[0,1,1,1]],[[0,2,3,1],[1,2,3,2],[2,3,0,2],[0,1,1,1]],[[0,2,2,2],[1,2,3,2],[2,3,0,2],[0,1,1,1]],[[0,2,2,1],[1,2,3,3],[2,3,0,2],[0,1,1,1]],[[0,3,2,1],[1,2,3,2],[2,3,0,2],[0,1,2,0]],[[0,2,3,1],[1,2,3,2],[2,3,0,2],[0,1,2,0]],[[0,2,2,2],[1,2,3,2],[2,3,0,2],[0,1,2,0]],[[0,2,2,1],[1,2,3,3],[2,3,0,2],[0,1,2,0]],[[0,3,2,1],[1,2,3,2],[2,3,0,2],[0,2,0,1]],[[0,2,3,1],[1,2,3,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,2],[1,2,3,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,1],[1,2,3,3],[2,3,0,2],[0,2,0,1]],[[0,3,2,1],[1,2,3,2],[2,3,0,2],[0,2,1,0]],[[0,2,3,1],[1,2,3,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,2],[1,2,3,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,1],[1,2,3,3],[2,3,0,2],[0,2,1,0]],[[1,2,2,1],[0,0,3,3],[1,3,3,1],[1,1,2,0]],[[1,2,2,2],[0,0,3,2],[1,3,3,1],[1,1,2,0]],[[1,2,3,1],[0,0,3,2],[1,3,3,1],[1,1,2,0]],[[1,2,2,1],[0,0,3,3],[1,3,3,1],[1,1,1,1]],[[1,2,2,2],[0,0,3,2],[1,3,3,1],[1,1,1,1]],[[0,3,2,1],[1,2,3,2],[2,3,0,2],[1,0,1,1]],[[0,2,3,1],[1,2,3,2],[2,3,0,2],[1,0,1,1]],[[0,2,2,2],[1,2,3,2],[2,3,0,2],[1,0,1,1]],[[0,2,2,1],[1,2,3,3],[2,3,0,2],[1,0,1,1]],[[0,3,2,1],[1,2,3,2],[2,3,0,2],[1,0,2,0]],[[0,2,3,1],[1,2,3,2],[2,3,0,2],[1,0,2,0]],[[0,2,2,2],[1,2,3,2],[2,3,0,2],[1,0,2,0]],[[0,2,2,1],[1,2,3,3],[2,3,0,2],[1,0,2,0]],[[0,3,2,1],[1,2,3,2],[2,3,0,2],[1,1,0,1]],[[0,2,3,1],[1,2,3,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,2],[1,2,3,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,1],[1,2,3,3],[2,3,0,2],[1,1,0,1]],[[0,3,2,1],[1,2,3,2],[2,3,0,2],[1,1,1,0]],[[0,2,3,1],[1,2,3,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,2],[1,2,3,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,1],[1,2,3,3],[2,3,0,2],[1,1,1,0]],[[1,2,3,1],[0,0,3,2],[1,3,3,1],[1,1,1,1]],[[1,2,2,1],[0,0,3,3],[1,3,3,1],[1,0,2,1]],[[1,2,2,2],[0,0,3,2],[1,3,3,1],[1,0,2,1]],[[1,2,3,1],[0,0,3,2],[1,3,3,1],[1,0,2,1]],[[0,3,2,1],[1,2,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,3,1],[1,2,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,2],[1,2,3,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,1],[1,2,3,3],[2,3,0,2],[1,2,0,0]],[[1,2,2,1],[0,0,3,3],[1,3,3,0],[1,2,1,1]],[[1,2,2,2],[0,0,3,2],[1,3,3,0],[1,2,1,1]],[[1,2,3,1],[0,0,3,2],[1,3,3,0],[1,2,1,1]],[[1,2,2,1],[0,0,3,3],[1,3,3,0],[1,1,2,1]],[[1,2,2,2],[0,0,3,2],[1,3,3,0],[1,1,2,1]],[[1,2,3,1],[0,0,3,2],[1,3,3,0],[1,1,2,1]],[[1,2,2,1],[0,0,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,1],[0,0,3,3],[1,3,2,2],[1,2,1,0]],[[1,2,2,2],[0,0,3,2],[1,3,2,2],[1,2,1,0]],[[1,2,3,1],[0,0,3,2],[1,3,2,2],[1,2,1,0]],[[1,2,2,1],[0,0,3,2],[1,3,2,2],[1,2,0,2]],[[1,2,2,1],[0,0,3,2],[1,3,2,3],[1,2,0,1]],[[1,2,2,1],[0,0,3,3],[1,3,2,2],[1,2,0,1]],[[1,2,2,2],[0,0,3,2],[1,3,2,2],[1,2,0,1]],[[1,2,3,1],[0,0,3,2],[1,3,2,2],[1,2,0,1]],[[0,3,2,1],[1,2,3,2],[2,3,1,0],[0,2,2,0]],[[0,2,3,1],[1,2,3,2],[2,3,1,0],[0,2,2,0]],[[0,2,2,2],[1,2,3,2],[2,3,1,0],[0,2,2,0]],[[0,2,2,1],[1,2,4,2],[2,3,1,0],[0,2,2,0]],[[0,3,2,1],[1,2,3,2],[2,3,1,0],[1,1,2,0]],[[0,2,3,1],[1,2,3,2],[2,3,1,0],[1,1,2,0]],[[0,2,2,2],[1,2,3,2],[2,3,1,0],[1,1,2,0]],[[0,2,2,1],[1,2,4,2],[2,3,1,0],[1,1,2,0]],[[1,2,2,1],[0,0,3,2],[1,3,2,3],[1,1,2,0]],[[1,2,2,1],[0,0,3,3],[1,3,2,2],[1,1,2,0]],[[1,2,2,2],[0,0,3,2],[1,3,2,2],[1,1,2,0]],[[1,2,3,1],[0,0,3,2],[1,3,2,2],[1,1,2,0]],[[1,2,2,1],[0,0,3,2],[1,3,2,2],[1,1,1,2]],[[1,2,2,1],[0,0,3,2],[1,3,2,3],[1,1,1,1]],[[1,2,2,1],[0,0,3,3],[1,3,2,2],[1,1,1,1]],[[1,2,2,2],[0,0,3,2],[1,3,2,2],[1,1,1,1]],[[1,2,3,1],[0,0,3,2],[1,3,2,2],[1,1,1,1]],[[1,2,2,1],[0,0,3,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,1],[0,0,3,2],[1,3,2,3],[1,0,2,1]],[[1,2,2,1],[0,0,3,3],[1,3,2,2],[1,0,2,1]],[[1,2,2,2],[0,0,3,2],[1,3,2,2],[1,0,2,1]],[[1,2,3,1],[0,0,3,2],[1,3,2,2],[1,0,2,1]],[[0,2,3,1],[1,2,3,2],[2,3,1,2],[0,0,1,1]],[[0,2,2,2],[1,2,3,2],[2,3,1,2],[0,0,1,1]],[[0,2,2,1],[1,2,3,3],[2,3,1,2],[0,0,1,1]],[[0,2,3,1],[1,2,3,2],[2,3,1,2],[0,0,2,0]],[[0,2,2,2],[1,2,3,2],[2,3,1,2],[0,0,2,0]],[[0,2,2,1],[1,2,3,3],[2,3,1,2],[0,0,2,0]],[[1,2,2,1],[0,0,3,2],[1,3,1,2],[1,1,2,2]],[[1,2,2,1],[0,0,3,2],[1,3,1,2],[1,1,3,1]],[[1,2,2,1],[0,0,3,2],[1,3,1,3],[1,1,2,1]],[[1,2,2,1],[0,0,3,3],[1,3,1,2],[1,1,2,1]],[[1,2,2,2],[0,0,3,2],[1,3,1,2],[1,1,2,1]],[[1,2,3,1],[0,0,3,2],[1,3,1,2],[1,1,2,1]],[[1,2,2,1],[0,0,3,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,1],[0,0,3,2],[1,3,0,2],[1,2,3,1]],[[1,2,2,1],[0,0,3,2],[1,3,0,2],[1,3,2,1]],[[1,2,2,1],[0,0,3,2],[1,3,0,2],[2,2,2,1]],[[1,2,2,1],[0,0,3,2],[1,3,0,3],[1,2,2,1]],[[1,2,2,1],[0,0,3,3],[1,3,0,2],[1,2,2,1]],[[1,2,2,2],[0,0,3,2],[1,3,0,2],[1,2,2,1]],[[1,2,3,1],[0,0,3,2],[1,3,0,2],[1,2,2,1]],[[1,2,2,1],[0,0,3,2],[1,2,3,3],[1,1,2,0]],[[1,2,2,1],[0,0,3,3],[1,2,3,2],[1,1,2,0]],[[1,2,2,2],[0,0,3,2],[1,2,3,2],[1,1,2,0]],[[1,2,3,1],[0,0,3,2],[1,2,3,2],[1,1,2,0]],[[1,2,2,1],[0,0,3,2],[1,2,3,2],[1,1,1,2]],[[1,2,2,1],[0,0,3,2],[1,2,3,3],[1,1,1,1]],[[1,2,2,1],[0,0,3,3],[1,2,3,2],[1,1,1,1]],[[1,2,2,2],[0,0,3,2],[1,2,3,2],[1,1,1,1]],[[1,2,3,1],[0,0,3,2],[1,2,3,2],[1,1,1,1]],[[1,2,2,1],[0,0,3,2],[1,2,3,2],[1,0,2,2]],[[1,2,2,1],[0,0,3,2],[1,2,3,3],[1,0,2,1]],[[1,2,2,1],[0,0,3,3],[1,2,3,2],[1,0,2,1]],[[1,2,2,2],[0,0,3,2],[1,2,3,2],[1,0,2,1]],[[1,2,3,1],[0,0,3,2],[1,2,3,2],[1,0,2,1]],[[1,2,2,1],[0,0,3,3],[1,2,3,1],[1,2,2,0]],[[1,2,2,2],[0,0,3,2],[1,2,3,1],[1,2,2,0]],[[1,2,3,1],[0,0,3,2],[1,2,3,1],[1,2,2,0]],[[1,2,2,1],[0,0,3,3],[1,2,3,1],[1,2,1,1]],[[1,2,2,2],[0,0,3,2],[1,2,3,1],[1,2,1,1]],[[1,2,3,1],[0,0,3,2],[1,2,3,1],[1,2,1,1]],[[1,2,2,1],[0,0,3,3],[1,2,3,0],[1,2,2,1]],[[1,2,2,2],[0,0,3,2],[1,2,3,0],[1,2,2,1]],[[1,2,3,1],[0,0,3,2],[1,2,3,0],[1,2,2,1]],[[1,2,2,1],[0,0,3,2],[1,2,2,3],[1,2,2,0]],[[1,2,2,1],[0,0,3,3],[1,2,2,2],[1,2,2,0]],[[1,2,2,2],[0,0,3,2],[1,2,2,2],[1,2,2,0]],[[1,2,3,1],[0,0,3,2],[1,2,2,2],[1,2,2,0]],[[1,2,2,1],[0,0,3,2],[1,2,2,2],[1,2,1,2]],[[1,2,2,1],[0,0,3,2],[1,2,2,3],[1,2,1,1]],[[1,2,2,1],[0,0,3,3],[1,2,2,2],[1,2,1,1]],[[1,2,2,2],[0,0,3,2],[1,2,2,2],[1,2,1,1]],[[1,2,3,1],[0,0,3,2],[1,2,2,2],[1,2,1,1]],[[1,2,2,1],[0,0,3,2],[1,2,1,2],[1,2,2,2]],[[1,2,2,1],[0,0,3,2],[1,2,1,2],[1,2,3,1]],[[1,2,2,1],[0,0,3,2],[1,2,1,2],[1,3,2,1]],[[1,2,2,1],[0,0,3,2],[1,2,1,2],[2,2,2,1]],[[1,2,2,1],[0,0,3,2],[1,2,1,3],[1,2,2,1]],[[1,2,2,1],[0,0,3,3],[1,2,1,2],[1,2,2,1]],[[1,2,2,2],[0,0,3,2],[1,2,1,2],[1,2,2,1]],[[1,2,3,1],[0,0,3,2],[1,2,1,2],[1,2,2,1]],[[0,3,2,1],[1,2,3,2],[2,3,2,0],[0,1,1,1]],[[0,2,3,1],[1,2,3,2],[2,3,2,0],[0,1,1,1]],[[0,2,2,2],[1,2,3,2],[2,3,2,0],[0,1,1,1]],[[0,2,2,1],[1,2,4,2],[2,3,2,0],[0,1,1,1]],[[0,3,2,1],[1,2,3,2],[2,3,2,0],[0,1,2,0]],[[0,2,3,1],[1,2,3,2],[2,3,2,0],[0,1,2,0]],[[0,2,2,2],[1,2,3,2],[2,3,2,0],[0,1,2,0]],[[0,2,2,1],[1,2,4,2],[2,3,2,0],[0,1,2,0]],[[0,3,2,1],[1,2,3,2],[2,3,2,0],[0,2,0,1]],[[0,2,3,1],[1,2,3,2],[2,3,2,0],[0,2,0,1]],[[0,2,2,2],[1,2,3,2],[2,3,2,0],[0,2,0,1]],[[0,2,2,1],[1,2,4,2],[2,3,2,0],[0,2,0,1]],[[0,3,2,1],[1,2,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,3,1],[1,2,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,2,2],[1,2,3,2],[2,3,2,0],[0,2,1,0]],[[0,2,2,1],[1,2,4,2],[2,3,2,0],[0,2,1,0]],[[1,2,2,1],[0,0,3,2],[1,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,0,3,3],[1,1,3,2],[1,2,2,0]],[[1,2,2,2],[0,0,3,2],[1,1,3,2],[1,2,2,0]],[[1,2,3,1],[0,0,3,2],[1,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,0,3,2],[1,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,0,3,2],[1,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,0,3,3],[1,1,3,2],[1,2,1,1]],[[1,2,2,2],[0,0,3,2],[1,1,3,2],[1,2,1,1]],[[1,2,3,1],[0,0,3,2],[1,1,3,2],[1,2,1,1]],[[0,3,2,1],[1,2,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,3,1],[1,2,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,2],[1,2,3,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[1,2,4,2],[2,3,2,0],[1,0,1,1]],[[0,3,2,1],[1,2,3,2],[2,3,2,0],[1,0,2,0]],[[0,2,3,1],[1,2,3,2],[2,3,2,0],[1,0,2,0]],[[0,2,2,2],[1,2,3,2],[2,3,2,0],[1,0,2,0]],[[0,2,2,1],[1,2,4,2],[2,3,2,0],[1,0,2,0]],[[0,3,2,1],[1,2,3,2],[2,3,2,0],[1,1,0,1]],[[0,2,3,1],[1,2,3,2],[2,3,2,0],[1,1,0,1]],[[0,2,2,2],[1,2,3,2],[2,3,2,0],[1,1,0,1]],[[0,2,2,1],[1,2,4,2],[2,3,2,0],[1,1,0,1]],[[0,3,2,1],[1,2,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,3,1],[1,2,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,2,2],[1,2,3,2],[2,3,2,0],[1,1,1,0]],[[0,2,2,1],[1,2,4,2],[2,3,2,0],[1,1,1,0]],[[1,2,2,1],[0,0,3,2],[1,1,3,2],[1,1,2,2]],[[1,2,2,1],[0,0,3,2],[1,1,3,3],[1,1,2,1]],[[1,2,2,1],[0,0,3,3],[1,1,3,2],[1,1,2,1]],[[1,2,2,2],[0,0,3,2],[1,1,3,2],[1,1,2,1]],[[1,2,3,1],[0,0,3,2],[1,1,3,2],[1,1,2,1]],[[1,2,2,1],[0,0,3,2],[1,1,3,2],[0,2,2,2]],[[1,2,2,1],[0,0,3,2],[1,1,3,3],[0,2,2,1]],[[1,2,2,1],[0,0,3,3],[1,1,3,2],[0,2,2,1]],[[0,3,2,1],[1,2,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,3,1],[1,2,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,2,2],[1,2,3,2],[2,3,2,0],[1,2,0,0]],[[0,2,2,1],[1,2,4,2],[2,3,2,0],[1,2,0,0]],[[1,2,2,2],[0,0,3,2],[1,1,3,2],[0,2,2,1]],[[1,2,3,1],[0,0,3,2],[1,1,3,2],[0,2,2,1]],[[1,2,2,1],[0,0,3,2],[1,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,0,3,2],[1,1,2,2],[1,2,3,1]],[[1,2,2,1],[0,0,3,2],[1,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,0,3,3],[1,1,2,2],[1,2,2,1]],[[1,2,2,2],[0,0,3,2],[1,1,2,2],[1,2,2,1]],[[1,2,3,1],[0,0,3,2],[1,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,0,3,2],[0,3,3,3],[1,1,2,0]],[[1,2,2,1],[0,0,3,3],[0,3,3,2],[1,1,2,0]],[[1,2,2,2],[0,0,3,2],[0,3,3,2],[1,1,2,0]],[[1,2,3,1],[0,0,3,2],[0,3,3,2],[1,1,2,0]],[[1,2,2,1],[0,0,3,2],[0,3,3,2],[1,1,1,2]],[[1,2,2,1],[0,0,3,2],[0,3,3,3],[1,1,1,1]],[[1,2,2,1],[0,0,3,3],[0,3,3,2],[1,1,1,1]],[[1,2,2,2],[0,0,3,2],[0,3,3,2],[1,1,1,1]],[[1,2,3,1],[0,0,3,2],[0,3,3,2],[1,1,1,1]],[[1,2,2,1],[0,0,3,2],[0,3,3,2],[1,0,2,2]],[[1,2,2,1],[0,0,3,2],[0,3,3,3],[1,0,2,1]],[[1,2,2,1],[0,0,3,3],[0,3,3,2],[1,0,2,1]],[[1,2,2,2],[0,0,3,2],[0,3,3,2],[1,0,2,1]],[[1,2,3,1],[0,0,3,2],[0,3,3,2],[1,0,2,1]],[[1,2,2,1],[0,0,3,2],[0,3,3,3],[0,2,2,0]],[[1,2,2,1],[0,0,3,3],[0,3,3,2],[0,2,2,0]],[[1,2,2,2],[0,0,3,2],[0,3,3,2],[0,2,2,0]],[[1,2,3,1],[0,0,3,2],[0,3,3,2],[0,2,2,0]],[[1,2,2,1],[0,0,3,2],[0,3,3,2],[0,2,1,2]],[[1,2,2,1],[0,0,3,2],[0,3,3,3],[0,2,1,1]],[[1,2,2,1],[0,0,3,3],[0,3,3,2],[0,2,1,1]],[[1,2,2,2],[0,0,3,2],[0,3,3,2],[0,2,1,1]],[[1,2,3,1],[0,0,3,2],[0,3,3,2],[0,2,1,1]],[[1,2,2,1],[0,0,3,2],[0,3,3,2],[0,1,2,2]],[[1,2,2,1],[0,0,3,2],[0,3,3,3],[0,1,2,1]],[[1,2,2,1],[0,0,3,3],[0,3,3,2],[0,1,2,1]],[[1,2,2,2],[0,0,3,2],[0,3,3,2],[0,1,2,1]],[[1,2,3,1],[0,0,3,2],[0,3,3,2],[0,1,2,1]],[[1,2,2,1],[0,0,3,3],[0,3,3,1],[1,2,2,0]],[[1,2,2,2],[0,0,3,2],[0,3,3,1],[1,2,2,0]],[[1,2,3,1],[0,0,3,2],[0,3,3,1],[1,2,2,0]],[[1,2,2,1],[0,0,3,3],[0,3,3,1],[1,2,1,1]],[[1,2,2,2],[0,0,3,2],[0,3,3,1],[1,2,1,1]],[[1,2,3,1],[0,0,3,2],[0,3,3,1],[1,2,1,1]],[[1,2,2,1],[0,0,3,3],[0,3,3,0],[1,2,2,1]],[[1,2,2,2],[0,0,3,2],[0,3,3,0],[1,2,2,1]],[[1,2,3,1],[0,0,3,2],[0,3,3,0],[1,2,2,1]],[[1,2,2,1],[0,0,3,2],[0,3,2,3],[1,2,2,0]],[[1,2,2,1],[0,0,3,3],[0,3,2,2],[1,2,2,0]],[[1,2,2,2],[0,0,3,2],[0,3,2,2],[1,2,2,0]],[[1,2,3,1],[0,0,3,2],[0,3,2,2],[1,2,2,0]],[[1,2,2,1],[0,0,3,2],[0,3,2,2],[1,2,1,2]],[[1,2,2,1],[0,0,3,2],[0,3,2,3],[1,2,1,1]],[[1,2,2,1],[0,0,3,3],[0,3,2,2],[1,2,1,1]],[[1,2,2,2],[0,0,3,2],[0,3,2,2],[1,2,1,1]],[[1,2,3,1],[0,0,3,2],[0,3,2,2],[1,2,1,1]],[[1,2,2,1],[0,0,3,2],[0,3,1,2],[1,2,2,2]],[[1,2,2,1],[0,0,3,2],[0,3,1,2],[1,2,3,1]],[[1,2,2,1],[0,0,3,2],[0,3,1,2],[1,3,2,1]],[[1,2,2,1],[0,0,3,2],[0,3,1,3],[1,2,2,1]],[[1,2,2,1],[0,0,3,3],[0,3,1,2],[1,2,2,1]],[[1,2,2,2],[0,0,3,2],[0,3,1,2],[1,2,2,1]],[[1,2,3,1],[0,0,3,2],[0,3,1,2],[1,2,2,1]],[[1,2,2,1],[0,0,3,2],[0,2,3,3],[1,2,2,0]],[[1,2,2,1],[0,0,3,3],[0,2,3,2],[1,2,2,0]],[[1,2,2,2],[0,0,3,2],[0,2,3,2],[1,2,2,0]],[[1,2,3,1],[0,0,3,2],[0,2,3,2],[1,2,2,0]],[[1,2,2,1],[0,0,3,2],[0,2,3,2],[1,2,1,2]],[[1,2,2,1],[0,0,3,2],[0,2,3,3],[1,2,1,1]],[[1,2,2,1],[0,0,3,3],[0,2,3,2],[1,2,1,1]],[[0,2,3,1],[1,2,3,2],[2,3,2,2],[0,0,0,1]],[[0,2,2,2],[1,2,3,2],[2,3,2,2],[0,0,0,1]],[[0,2,2,1],[1,2,3,3],[2,3,2,2],[0,0,0,1]],[[1,2,2,2],[0,0,3,2],[0,2,3,2],[1,2,1,1]],[[1,2,3,1],[0,0,3,2],[0,2,3,2],[1,2,1,1]],[[1,2,2,1],[0,0,3,2],[0,2,3,2],[1,1,2,2]],[[1,2,2,1],[0,0,3,2],[0,2,3,3],[1,1,2,1]],[[1,2,2,1],[0,0,3,3],[0,2,3,2],[1,1,2,1]],[[1,2,2,2],[0,0,3,2],[0,2,3,2],[1,1,2,1]],[[1,2,3,1],[0,0,3,2],[0,2,3,2],[1,1,2,1]],[[1,2,2,1],[0,0,3,2],[0,2,3,2],[0,2,2,2]],[[1,2,2,1],[0,0,3,2],[0,2,3,3],[0,2,2,1]],[[1,2,2,1],[0,0,3,3],[0,2,3,2],[0,2,2,1]],[[1,2,2,2],[0,0,3,2],[0,2,3,2],[0,2,2,1]],[[1,2,3,1],[0,0,3,2],[0,2,3,2],[0,2,2,1]],[[1,2,2,1],[0,0,3,2],[0,2,2,2],[1,2,2,2]],[[1,2,2,1],[0,0,3,2],[0,2,2,2],[1,2,3,1]],[[1,2,2,1],[0,0,3,2],[0,2,2,3],[1,2,2,1]],[[1,2,2,1],[0,0,3,3],[0,2,2,2],[1,2,2,1]],[[1,2,2,2],[0,0,3,2],[0,2,2,2],[1,2,2,1]],[[1,2,3,1],[0,0,3,2],[0,2,2,2],[1,2,2,1]],[[1,2,2,1],[0,0,3,1],[2,3,3,1],[0,2,3,0]],[[1,2,2,1],[0,0,3,1],[2,3,3,1],[0,3,2,0]],[[1,2,2,1],[0,0,3,1],[2,3,4,1],[0,2,2,0]],[[1,2,2,1],[0,0,3,1],[2,3,3,0],[0,2,2,2]],[[1,2,2,1],[0,0,3,1],[2,3,3,0],[0,2,3,1]],[[1,2,2,1],[0,0,3,1],[2,3,3,0],[0,3,2,1]],[[1,2,2,1],[0,0,3,1],[2,3,4,0],[0,2,2,1]],[[1,2,2,1],[0,0,3,1],[1,3,3,1],[1,2,3,0]],[[1,2,2,1],[0,0,3,1],[1,3,3,1],[1,3,2,0]],[[1,2,2,1],[0,0,3,1],[1,3,3,1],[2,2,2,0]],[[1,2,2,1],[0,0,3,1],[1,3,4,1],[1,2,2,0]],[[1,2,2,1],[0,0,3,1],[1,3,3,0],[1,2,2,2]],[[1,2,2,1],[0,0,3,1],[1,3,3,0],[1,2,3,1]],[[1,2,2,1],[0,0,3,1],[1,3,3,0],[1,3,2,1]],[[1,2,2,1],[0,0,3,1],[1,3,3,0],[2,2,2,1]],[[1,2,2,1],[0,0,3,1],[1,3,4,0],[1,2,2,1]],[[1,2,2,1],[0,0,3,0],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[0,0,3,0],[2,3,3,2],[0,3,2,0]],[[1,2,2,1],[0,0,3,0],[2,3,3,3],[0,2,2,0]],[[1,2,2,1],[0,0,3,0],[2,3,4,2],[0,2,2,0]],[[1,2,2,1],[0,0,3,0],[2,3,3,2],[0,2,1,2]],[[1,2,2,1],[0,0,3,0],[2,3,3,3],[0,2,1,1]],[[1,2,2,1],[0,0,3,0],[2,3,4,2],[0,2,1,1]],[[1,2,2,1],[0,0,3,0],[2,3,3,1],[0,2,2,2]],[[1,2,2,1],[0,0,3,0],[2,3,3,1],[0,2,3,1]],[[1,2,2,1],[0,0,3,0],[2,3,3,1],[0,3,2,1]],[[1,2,2,1],[0,0,3,0],[2,3,4,1],[0,2,2,1]],[[1,2,2,1],[0,0,3,0],[2,3,2,2],[0,2,2,2]],[[1,2,2,1],[0,0,3,0],[2,3,2,2],[0,2,3,1]],[[1,2,2,1],[0,0,3,0],[2,3,2,2],[0,3,2,1]],[[1,2,2,1],[0,0,3,0],[2,3,2,3],[0,2,2,1]],[[1,2,2,1],[0,0,3,0],[1,3,3,2],[1,2,3,0]],[[1,2,2,1],[0,0,3,0],[1,3,3,2],[1,3,2,0]],[[1,2,2,1],[0,0,3,0],[1,3,3,2],[2,2,2,0]],[[1,2,2,1],[0,0,3,0],[1,3,3,3],[1,2,2,0]],[[1,2,2,1],[0,0,3,0],[1,3,4,2],[1,2,2,0]],[[1,2,2,1],[0,0,3,0],[1,3,3,2],[1,2,1,2]],[[1,2,2,1],[0,0,3,0],[1,3,3,3],[1,2,1,1]],[[1,2,2,1],[0,0,3,0],[1,3,4,2],[1,2,1,1]],[[1,2,2,1],[0,0,3,0],[1,3,3,1],[1,2,2,2]],[[1,2,2,1],[0,0,3,0],[1,3,3,1],[1,2,3,1]],[[1,2,2,1],[0,0,3,0],[1,3,3,1],[1,3,2,1]],[[1,2,2,1],[0,0,3,0],[1,3,3,1],[2,2,2,1]],[[1,2,2,1],[0,0,3,0],[1,3,4,1],[1,2,2,1]],[[1,2,2,1],[0,0,3,0],[1,3,2,2],[1,2,2,2]],[[1,2,2,1],[0,0,3,0],[1,3,2,2],[1,2,3,1]],[[1,2,2,1],[0,0,3,0],[1,3,2,2],[1,3,2,1]],[[1,2,2,1],[0,0,3,0],[1,3,2,2],[2,2,2,1]],[[1,2,2,1],[0,0,3,0],[1,3,2,3],[1,2,2,1]],[[1,2,2,1],[0,0,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,1],[0,0,2,2],[2,3,4,2],[1,1,1,0]],[[1,2,2,1],[0,0,2,3],[2,3,3,2],[1,1,1,0]],[[1,2,2,2],[0,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,2,3,1],[0,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,2,2,1],[0,0,2,2],[2,3,3,2],[1,1,0,2]],[[1,2,2,1],[0,0,2,2],[2,3,3,3],[1,1,0,1]],[[1,2,2,1],[0,0,2,2],[2,3,4,2],[1,1,0,1]],[[1,2,2,1],[0,0,2,3],[2,3,3,2],[1,1,0,1]],[[1,2,2,2],[0,0,2,2],[2,3,3,2],[1,1,0,1]],[[1,2,3,1],[0,0,2,2],[2,3,3,2],[1,1,0,1]],[[0,3,2,1],[1,2,3,2],[2,3,3,0],[0,0,1,1]],[[0,2,3,1],[1,2,3,2],[2,3,3,0],[0,0,1,1]],[[0,2,2,2],[1,2,3,2],[2,3,3,0],[0,0,1,1]],[[0,2,2,1],[1,2,4,2],[2,3,3,0],[0,0,1,1]],[[0,3,2,1],[1,2,3,2],[2,3,3,0],[0,0,2,0]],[[0,2,3,1],[1,2,3,2],[2,3,3,0],[0,0,2,0]],[[0,2,2,2],[1,2,3,2],[2,3,3,0],[0,0,2,0]],[[0,2,2,1],[1,2,4,2],[2,3,3,0],[0,0,2,0]],[[1,2,2,1],[0,0,2,2],[2,3,3,2],[1,0,3,0]],[[1,2,2,1],[0,0,2,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,1],[0,0,2,2],[2,3,4,2],[1,0,2,0]],[[1,2,2,1],[0,0,2,3],[2,3,3,2],[1,0,2,0]],[[1,2,2,2],[0,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,2,3,1],[0,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,2,2,1],[0,0,2,2],[2,3,3,2],[1,0,1,2]],[[1,2,2,1],[0,0,2,2],[2,3,3,3],[1,0,1,1]],[[1,2,2,1],[0,0,2,2],[2,3,4,2],[1,0,1,1]],[[0,3,2,1],[1,2,3,2],[2,3,3,0],[0,2,0,0]],[[0,2,3,1],[1,2,3,2],[2,3,3,0],[0,2,0,0]],[[0,2,2,2],[1,2,3,2],[2,3,3,0],[0,2,0,0]],[[0,2,2,1],[1,2,4,2],[2,3,3,0],[0,2,0,0]],[[1,2,2,1],[0,0,2,3],[2,3,3,2],[1,0,1,1]],[[1,2,2,2],[0,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,2,3,1],[0,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,2,2,1],[0,0,2,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,1],[0,0,2,2],[2,3,4,2],[0,2,1,0]],[[1,2,2,1],[0,0,2,3],[2,3,3,2],[0,2,1,0]],[[1,2,2,2],[0,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,2,3,1],[0,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,2,2,1],[0,0,2,2],[2,3,3,2],[0,2,0,2]],[[1,2,2,1],[0,0,2,2],[2,3,3,3],[0,2,0,1]],[[1,2,2,1],[0,0,2,2],[2,3,4,2],[0,2,0,1]],[[1,2,2,1],[0,0,2,3],[2,3,3,2],[0,2,0,1]],[[1,2,2,2],[0,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,2,3,1],[0,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,2,2,1],[0,0,2,2],[2,3,3,2],[0,1,3,0]],[[0,3,2,1],[1,2,3,2],[2,3,3,0],[1,1,0,0]],[[0,2,3,1],[1,2,3,2],[2,3,3,0],[1,1,0,0]],[[0,2,2,2],[1,2,3,2],[2,3,3,0],[1,1,0,0]],[[0,2,2,1],[1,2,4,2],[2,3,3,0],[1,1,0,0]],[[1,2,2,1],[0,0,2,2],[2,3,3,3],[0,1,2,0]],[[1,2,2,1],[0,0,2,2],[2,3,4,2],[0,1,2,0]],[[1,2,2,1],[0,0,2,3],[2,3,3,2],[0,1,2,0]],[[1,2,2,2],[0,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,2,3,1],[0,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,2,2,1],[0,0,2,2],[2,3,3,2],[0,1,1,2]],[[1,2,2,1],[0,0,2,2],[2,3,3,3],[0,1,1,1]],[[1,2,2,1],[0,0,2,2],[2,3,4,2],[0,1,1,1]],[[1,2,2,1],[0,0,2,3],[2,3,3,2],[0,1,1,1]],[[1,2,2,2],[0,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,2,3,1],[0,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,2,2,1],[0,0,2,2],[2,3,3,2],[0,0,2,2]],[[1,2,2,1],[0,0,2,2],[2,3,3,3],[0,0,2,1]],[[1,2,2,1],[0,0,2,2],[2,3,4,2],[0,0,2,1]],[[1,2,2,1],[0,0,2,3],[2,3,3,2],[0,0,2,1]],[[1,2,2,2],[0,0,2,2],[2,3,3,2],[0,0,2,1]],[[1,2,3,1],[0,0,2,2],[2,3,3,2],[0,0,2,1]],[[1,2,2,1],[0,0,2,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,1],[0,0,2,2],[2,3,3,1],[1,0,3,1]],[[1,2,2,1],[0,0,2,2],[2,3,4,1],[1,0,2,1]],[[1,2,2,1],[0,0,2,2],[2,3,3,1],[0,1,2,2]],[[1,2,2,1],[0,0,2,2],[2,3,3,1],[0,1,3,1]],[[1,2,2,1],[0,0,2,2],[2,3,4,1],[0,1,2,1]],[[1,2,2,1],[0,0,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,1],[0,0,2,2],[2,3,2,2],[1,0,3,1]],[[1,2,2,1],[0,0,2,2],[2,3,2,3],[1,0,2,1]],[[1,2,2,1],[0,0,2,3],[2,3,2,2],[1,0,2,1]],[[1,2,2,2],[0,0,2,2],[2,3,2,2],[1,0,2,1]],[[1,2,3,1],[0,0,2,2],[2,3,2,2],[1,0,2,1]],[[1,2,2,1],[0,0,2,2],[2,3,2,2],[0,1,2,2]],[[1,2,2,1],[0,0,2,2],[2,3,2,2],[0,1,3,1]],[[1,2,2,1],[0,0,2,2],[2,3,2,3],[0,1,2,1]],[[1,2,2,1],[0,0,2,3],[2,3,2,2],[0,1,2,1]],[[1,2,2,2],[0,0,2,2],[2,3,2,2],[0,1,2,1]],[[1,2,3,1],[0,0,2,2],[2,3,2,2],[0,1,2,1]],[[1,2,2,1],[0,0,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,1],[0,0,2,2],[2,2,3,2],[0,3,2,0]],[[1,2,2,1],[0,0,2,2],[2,2,3,3],[0,2,2,0]],[[1,2,2,1],[0,0,2,2],[2,2,4,2],[0,2,2,0]],[[1,2,2,1],[0,0,2,3],[2,2,3,2],[0,2,2,0]],[[1,2,2,2],[0,0,2,2],[2,2,3,2],[0,2,2,0]],[[1,2,3,1],[0,0,2,2],[2,2,3,2],[0,2,2,0]],[[1,2,2,1],[0,0,2,2],[2,2,3,2],[0,2,1,2]],[[1,2,2,1],[0,0,2,2],[2,2,3,3],[0,2,1,1]],[[1,2,2,1],[0,0,2,2],[2,2,4,2],[0,2,1,1]],[[1,2,2,1],[0,0,2,3],[2,2,3,2],[0,2,1,1]],[[1,2,2,2],[0,0,2,2],[2,2,3,2],[0,2,1,1]],[[1,2,3,1],[0,0,2,2],[2,2,3,2],[0,2,1,1]],[[1,2,2,1],[0,0,2,2],[2,2,3,1],[0,2,2,2]],[[1,2,2,1],[0,0,2,2],[2,2,3,1],[0,2,3,1]],[[1,2,2,1],[0,0,2,2],[2,2,3,1],[0,3,2,1]],[[1,2,2,1],[0,0,2,2],[2,2,4,1],[0,2,2,1]],[[1,2,2,1],[0,0,2,2],[2,2,2,2],[0,2,2,2]],[[1,2,2,1],[0,0,2,2],[2,2,2,2],[0,2,3,1]],[[1,2,2,1],[0,0,2,2],[2,2,2,2],[0,3,2,1]],[[1,2,2,1],[0,0,2,2],[2,2,2,3],[0,2,2,1]],[[1,2,2,1],[0,0,2,3],[2,2,2,2],[0,2,2,1]],[[1,2,2,2],[0,0,2,2],[2,2,2,2],[0,2,2,1]],[[1,2,3,1],[0,0,2,2],[2,2,2,2],[0,2,2,1]],[[1,2,2,1],[0,0,2,2],[2,1,3,2],[1,2,3,0]],[[1,2,2,1],[0,0,2,2],[2,1,3,2],[1,3,2,0]],[[1,2,2,1],[0,0,2,2],[2,1,3,2],[2,2,2,0]],[[1,2,2,1],[0,0,2,2],[2,1,3,3],[1,2,2,0]],[[1,2,2,1],[0,0,2,2],[2,1,4,2],[1,2,2,0]],[[1,2,2,1],[0,0,2,3],[2,1,3,2],[1,2,2,0]],[[1,2,2,2],[0,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,2,3,1],[0,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,2,2,1],[0,0,2,2],[2,1,3,2],[1,2,1,2]],[[1,2,2,1],[0,0,2,2],[2,1,3,3],[1,2,1,1]],[[1,2,2,1],[0,0,2,2],[2,1,4,2],[1,2,1,1]],[[1,2,2,1],[0,0,2,3],[2,1,3,2],[1,2,1,1]],[[1,2,2,2],[0,0,2,2],[2,1,3,2],[1,2,1,1]],[[1,2,3,1],[0,0,2,2],[2,1,3,2],[1,2,1,1]],[[1,2,2,1],[0,0,2,2],[2,1,3,2],[0,2,2,2]],[[1,2,2,1],[0,0,2,2],[2,1,3,2],[0,2,3,1]],[[1,2,2,1],[0,0,2,2],[2,1,3,3],[0,2,2,1]],[[1,2,2,1],[0,0,2,3],[2,1,3,2],[0,2,2,1]],[[1,2,2,2],[0,0,2,2],[2,1,3,2],[0,2,2,1]],[[1,2,3,1],[0,0,2,2],[2,1,3,2],[0,2,2,1]],[[1,2,2,1],[0,0,2,2],[2,1,3,1],[1,2,2,2]],[[1,2,2,1],[0,0,2,2],[2,1,3,1],[1,2,3,1]],[[1,2,2,1],[0,0,2,2],[2,1,3,1],[1,3,2,1]],[[1,2,2,1],[0,0,2,2],[2,1,3,1],[2,2,2,1]],[[1,2,2,1],[0,0,2,2],[2,1,4,1],[1,2,2,1]],[[1,2,2,1],[0,0,2,2],[2,1,2,2],[1,2,2,2]],[[1,2,2,1],[0,0,2,2],[2,1,2,2],[1,2,3,1]],[[1,2,2,1],[0,0,2,2],[2,1,2,2],[1,3,2,1]],[[1,2,2,1],[0,0,2,2],[2,1,2,2],[2,2,2,1]],[[1,2,2,1],[0,0,2,2],[2,1,2,3],[1,2,2,1]],[[1,2,2,1],[0,0,2,3],[2,1,2,2],[1,2,2,1]],[[1,2,2,2],[0,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,2,3,1],[0,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,2,2,1],[0,0,2,2],[2,0,3,2],[1,2,2,2]],[[1,2,2,1],[0,0,2,2],[2,0,3,2],[1,2,3,1]],[[1,2,2,1],[0,0,2,2],[2,0,3,3],[1,2,2,1]],[[1,2,2,1],[0,0,2,3],[2,0,3,2],[1,2,2,1]],[[1,2,2,2],[0,0,2,2],[2,0,3,2],[1,2,2,1]],[[1,2,3,1],[0,0,2,2],[2,0,3,2],[1,2,2,1]],[[1,2,2,1],[0,0,2,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,1],[0,0,2,2],[1,3,4,2],[1,2,1,0]],[[1,2,2,1],[0,0,2,3],[1,3,3,2],[1,2,1,0]],[[1,2,2,2],[0,0,2,2],[1,3,3,2],[1,2,1,0]],[[1,2,3,1],[0,0,2,2],[1,3,3,2],[1,2,1,0]],[[1,2,2,1],[0,0,2,2],[1,3,3,2],[1,2,0,2]],[[1,2,2,1],[0,0,2,2],[1,3,3,3],[1,2,0,1]],[[1,2,2,1],[0,0,2,2],[1,3,4,2],[1,2,0,1]],[[1,2,2,1],[0,0,2,3],[1,3,3,2],[1,2,0,1]],[[1,2,2,2],[0,0,2,2],[1,3,3,2],[1,2,0,1]],[[1,2,3,1],[0,0,2,2],[1,3,3,2],[1,2,0,1]],[[1,2,2,1],[0,0,2,2],[1,3,3,2],[1,1,3,0]],[[1,2,2,1],[0,0,2,2],[1,3,3,3],[1,1,2,0]],[[1,2,2,1],[0,0,2,2],[1,3,4,2],[1,1,2,0]],[[1,2,2,1],[0,0,2,3],[1,3,3,2],[1,1,2,0]],[[1,2,2,2],[0,0,2,2],[1,3,3,2],[1,1,2,0]],[[1,2,3,1],[0,0,2,2],[1,3,3,2],[1,1,2,0]],[[1,2,2,1],[0,0,2,2],[1,3,3,2],[1,1,1,2]],[[1,2,2,1],[0,0,2,2],[1,3,3,3],[1,1,1,1]],[[1,2,2,1],[0,0,2,2],[1,3,4,2],[1,1,1,1]],[[1,2,2,1],[0,0,2,3],[1,3,3,2],[1,1,1,1]],[[1,2,2,2],[0,0,2,2],[1,3,3,2],[1,1,1,1]],[[1,2,3,1],[0,0,2,2],[1,3,3,2],[1,1,1,1]],[[1,2,2,1],[0,0,2,2],[1,3,3,2],[1,0,2,2]],[[1,2,2,1],[0,0,2,2],[1,3,3,3],[1,0,2,1]],[[1,2,2,1],[0,0,2,2],[1,3,4,2],[1,0,2,1]],[[1,2,2,1],[0,0,2,3],[1,3,3,2],[1,0,2,1]],[[1,2,2,2],[0,0,2,2],[1,3,3,2],[1,0,2,1]],[[1,2,3,1],[0,0,2,2],[1,3,3,2],[1,0,2,1]],[[1,2,2,1],[0,0,2,2],[1,3,3,1],[1,1,2,2]],[[1,2,2,1],[0,0,2,2],[1,3,3,1],[1,1,3,1]],[[1,2,2,1],[0,0,2,2],[1,3,4,1],[1,1,2,1]],[[1,2,2,1],[0,0,2,2],[1,3,2,2],[1,1,2,2]],[[1,2,2,1],[0,0,2,2],[1,3,2,2],[1,1,3,1]],[[1,2,2,1],[0,0,2,2],[1,3,2,3],[1,1,2,1]],[[1,2,2,1],[0,0,2,3],[1,3,2,2],[1,1,2,1]],[[1,2,2,2],[0,0,2,2],[1,3,2,2],[1,1,2,1]],[[1,2,3,1],[0,0,2,2],[1,3,2,2],[1,1,2,1]],[[1,2,2,1],[0,0,2,2],[1,2,3,2],[1,2,3,0]],[[1,2,2,1],[0,0,2,2],[1,2,3,2],[1,3,2,0]],[[1,2,2,1],[0,0,2,2],[1,2,3,2],[2,2,2,0]],[[1,2,2,1],[0,0,2,2],[1,2,3,3],[1,2,2,0]],[[1,2,2,1],[0,0,2,2],[1,2,4,2],[1,2,2,0]],[[1,2,2,1],[0,0,2,3],[1,2,3,2],[1,2,2,0]],[[1,2,2,2],[0,0,2,2],[1,2,3,2],[1,2,2,0]],[[1,2,3,1],[0,0,2,2],[1,2,3,2],[1,2,2,0]],[[1,2,2,1],[0,0,2,2],[1,2,3,2],[1,2,1,2]],[[1,2,2,1],[0,0,2,2],[1,2,3,3],[1,2,1,1]],[[1,2,2,1],[0,0,2,2],[1,2,4,2],[1,2,1,1]],[[1,2,2,1],[0,0,2,3],[1,2,3,2],[1,2,1,1]],[[1,2,2,2],[0,0,2,2],[1,2,3,2],[1,2,1,1]],[[1,2,3,1],[0,0,2,2],[1,2,3,2],[1,2,1,1]],[[1,2,2,1],[0,0,2,2],[1,2,3,1],[1,2,2,2]],[[1,2,2,1],[0,0,2,2],[1,2,3,1],[1,2,3,1]],[[1,2,2,1],[0,0,2,2],[1,2,3,1],[1,3,2,1]],[[1,2,2,1],[0,0,2,2],[1,2,3,1],[2,2,2,1]],[[1,2,2,1],[0,0,2,2],[1,2,4,1],[1,2,2,1]],[[1,2,2,1],[0,0,2,2],[1,2,2,2],[1,2,2,2]],[[1,2,2,1],[0,0,2,2],[1,2,2,2],[1,2,3,1]],[[1,2,2,1],[0,0,2,2],[1,2,2,2],[1,3,2,1]],[[1,2,2,1],[0,0,2,2],[1,2,2,2],[2,2,2,1]],[[1,2,2,1],[0,0,2,2],[1,2,2,3],[1,2,2,1]],[[1,2,2,1],[0,0,2,3],[1,2,2,2],[1,2,2,1]],[[1,2,2,2],[0,0,2,2],[1,2,2,2],[1,2,2,1]],[[1,2,3,1],[0,0,2,2],[1,2,2,2],[1,2,2,1]],[[1,2,2,1],[0,0,2,2],[1,1,3,2],[1,2,2,2]],[[1,2,2,1],[0,0,2,2],[1,1,3,2],[1,2,3,1]],[[1,2,2,1],[0,0,2,2],[1,1,3,3],[1,2,2,1]],[[1,2,2,1],[0,0,2,3],[1,1,3,2],[1,2,2,1]],[[1,2,2,2],[0,0,2,2],[1,1,3,2],[1,2,2,1]],[[1,2,3,1],[0,0,2,2],[1,1,3,2],[1,2,2,1]],[[1,2,2,1],[0,0,2,2],[0,3,3,2],[1,2,3,0]],[[1,2,2,1],[0,0,2,2],[0,3,3,2],[1,3,2,0]],[[1,2,2,1],[0,0,2,2],[0,3,3,3],[1,2,2,0]],[[1,2,2,1],[0,0,2,2],[0,3,4,2],[1,2,2,0]],[[1,2,2,1],[0,0,2,3],[0,3,3,2],[1,2,2,0]],[[1,2,2,2],[0,0,2,2],[0,3,3,2],[1,2,2,0]],[[1,2,3,1],[0,0,2,2],[0,3,3,2],[1,2,2,0]],[[1,2,2,1],[0,0,2,2],[0,3,3,2],[1,2,1,2]],[[1,2,2,1],[0,0,2,2],[0,3,3,3],[1,2,1,1]],[[1,2,2,1],[0,0,2,2],[0,3,4,2],[1,2,1,1]],[[1,2,2,1],[0,0,2,3],[0,3,3,2],[1,2,1,1]],[[1,2,2,2],[0,0,2,2],[0,3,3,2],[1,2,1,1]],[[1,2,3,1],[0,0,2,2],[0,3,3,2],[1,2,1,1]],[[1,2,2,1],[0,0,2,2],[0,3,3,1],[1,2,2,2]],[[1,2,2,1],[0,0,2,2],[0,3,3,1],[1,2,3,1]],[[1,2,2,1],[0,0,2,2],[0,3,3,1],[1,3,2,1]],[[1,2,2,1],[0,0,2,2],[0,3,4,1],[1,2,2,1]],[[1,2,2,1],[0,0,2,2],[0,3,2,2],[1,2,2,2]],[[1,2,2,1],[0,0,2,2],[0,3,2,2],[1,2,3,1]],[[1,2,2,1],[0,0,2,2],[0,3,2,2],[1,3,2,1]],[[1,2,2,1],[0,0,2,2],[0,3,2,3],[1,2,2,1]],[[1,2,2,1],[0,0,2,3],[0,3,2,2],[1,2,2,1]],[[1,2,2,2],[0,0,2,2],[0,3,2,2],[1,2,2,1]],[[1,2,3,1],[0,0,2,2],[0,3,2,2],[1,2,2,1]],[[1,2,2,1],[0,0,2,2],[0,2,3,2],[1,2,2,2]],[[1,2,2,1],[0,0,2,2],[0,2,3,2],[1,2,3,1]],[[1,2,2,1],[0,0,2,2],[0,2,3,3],[1,2,2,1]],[[1,2,2,1],[0,0,2,3],[0,2,3,2],[1,2,2,1]],[[1,2,2,2],[0,0,2,2],[0,2,3,2],[1,2,2,1]],[[1,2,3,1],[0,0,2,2],[0,2,3,2],[1,2,2,1]],[[1,2,2,1],[0,0,1,2],[2,3,3,2],[0,2,3,0]],[[1,2,2,1],[0,0,1,2],[2,3,3,2],[0,3,2,0]],[[1,2,2,1],[0,0,1,2],[2,3,3,3],[0,2,2,0]],[[1,2,2,1],[0,0,1,2],[2,3,4,2],[0,2,2,0]],[[1,2,2,1],[0,0,1,3],[2,3,3,2],[0,2,2,0]],[[1,2,2,2],[0,0,1,2],[2,3,3,2],[0,2,2,0]],[[1,2,3,1],[0,0,1,2],[2,3,3,2],[0,2,2,0]],[[1,2,2,1],[0,0,1,2],[2,3,3,2],[0,2,1,2]],[[1,2,2,1],[0,0,1,2],[2,3,3,3],[0,2,1,1]],[[1,2,2,1],[0,0,1,2],[2,3,4,2],[0,2,1,1]],[[1,2,2,1],[0,0,1,3],[2,3,3,2],[0,2,1,1]],[[1,2,2,2],[0,0,1,2],[2,3,3,2],[0,2,1,1]],[[1,2,3,1],[0,0,1,2],[2,3,3,2],[0,2,1,1]],[[1,2,2,1],[0,0,1,2],[2,3,3,1],[0,2,2,2]],[[1,2,2,1],[0,0,1,2],[2,3,3,1],[0,2,3,1]],[[1,2,2,1],[0,0,1,2],[2,3,3,1],[0,3,2,1]],[[1,2,2,1],[0,0,1,2],[2,3,4,1],[0,2,2,1]],[[1,2,2,1],[0,0,1,2],[2,3,2,2],[0,2,2,2]],[[1,2,2,1],[0,0,1,2],[2,3,2,2],[0,2,3,1]],[[1,2,2,1],[0,0,1,2],[2,3,2,2],[0,3,2,1]],[[1,2,2,1],[0,0,1,2],[2,3,2,3],[0,2,2,1]],[[1,2,2,1],[0,0,1,3],[2,3,2,2],[0,2,2,1]],[[1,2,2,2],[0,0,1,2],[2,3,2,2],[0,2,2,1]],[[1,2,3,1],[0,0,1,2],[2,3,2,2],[0,2,2,1]],[[1,2,2,1],[0,0,1,2],[1,3,3,2],[1,2,3,0]],[[1,2,2,1],[0,0,1,2],[1,3,3,2],[1,3,2,0]],[[1,2,2,1],[0,0,1,2],[1,3,3,2],[2,2,2,0]],[[1,2,2,1],[0,0,1,2],[1,3,3,3],[1,2,2,0]],[[1,2,2,1],[0,0,1,2],[1,3,4,2],[1,2,2,0]],[[1,2,2,1],[0,0,1,3],[1,3,3,2],[1,2,2,0]],[[1,2,2,2],[0,0,1,2],[1,3,3,2],[1,2,2,0]],[[1,2,3,1],[0,0,1,2],[1,3,3,2],[1,2,2,0]],[[1,2,2,1],[0,0,1,2],[1,3,3,2],[1,2,1,2]],[[1,2,2,1],[0,0,1,2],[1,3,3,3],[1,2,1,1]],[[1,2,2,1],[0,0,1,2],[1,3,4,2],[1,2,1,1]],[[1,2,2,1],[0,0,1,3],[1,3,3,2],[1,2,1,1]],[[1,2,2,2],[0,0,1,2],[1,3,3,2],[1,2,1,1]],[[1,2,3,1],[0,0,1,2],[1,3,3,2],[1,2,1,1]],[[1,2,2,1],[0,0,1,2],[1,3,3,1],[1,2,2,2]],[[1,2,2,1],[0,0,1,2],[1,3,3,1],[1,2,3,1]],[[1,2,2,1],[0,0,1,2],[1,3,3,1],[1,3,2,1]],[[1,2,2,1],[0,0,1,2],[1,3,3,1],[2,2,2,1]],[[1,2,2,1],[0,0,1,2],[1,3,4,1],[1,2,2,1]],[[1,2,2,1],[0,0,1,2],[1,3,2,2],[1,2,2,2]],[[1,2,2,1],[0,0,1,2],[1,3,2,2],[1,2,3,1]],[[1,2,2,1],[0,0,1,2],[1,3,2,2],[1,3,2,1]],[[1,2,2,1],[0,0,1,2],[1,3,2,2],[2,2,2,1]],[[1,2,2,1],[0,0,1,2],[1,3,2,3],[1,2,2,1]],[[1,2,2,1],[0,0,1,3],[1,3,2,2],[1,2,2,1]],[[1,2,2,2],[0,0,1,2],[1,3,2,2],[1,2,2,1]],[[1,2,3,1],[0,0,1,2],[1,3,2,2],[1,2,2,1]],[[1,2,2,1],[0,0,0,2],[2,3,3,2],[0,2,2,2]],[[1,2,2,1],[0,0,0,2],[2,3,3,2],[0,2,3,1]],[[1,2,2,1],[0,0,0,2],[2,3,3,2],[0,3,2,1]],[[1,2,2,1],[0,0,0,2],[2,3,3,3],[0,2,2,1]],[[1,2,2,1],[0,0,0,2],[1,3,3,2],[1,2,2,2]],[[1,2,2,1],[0,0,0,2],[1,3,3,2],[1,2,3,1]],[[1,2,2,1],[0,0,0,2],[1,3,3,2],[1,3,2,1]],[[1,2,2,1],[0,0,0,2],[1,3,3,2],[2,2,2,1]],[[1,2,2,1],[0,0,0,2],[1,3,3,3],[1,2,2,1]],[[1,2,2,0],[3,3,3,2],[2,3,1,1],[1,0,0,0]],[[1,3,2,0],[2,3,3,2],[2,3,1,1],[1,0,0,0]],[[2,2,2,0],[2,3,3,2],[2,3,1,1],[1,0,0,0]],[[1,2,2,0],[3,3,3,2],[2,3,0,1],[1,1,0,0]],[[1,3,2,0],[2,3,3,2],[2,3,0,1],[1,1,0,0]],[[2,2,2,0],[2,3,3,2],[2,3,0,1],[1,1,0,0]],[[1,2,2,0],[3,3,3,2],[2,3,0,1],[1,0,1,0]],[[1,3,2,0],[2,3,3,2],[2,3,0,1],[1,0,1,0]],[[2,2,2,0],[2,3,3,2],[2,3,0,1],[1,0,1,0]],[[1,2,2,0],[3,3,3,2],[2,3,0,1],[1,0,0,1]],[[1,3,2,0],[2,3,3,2],[2,3,0,1],[1,0,0,1]],[[2,2,2,0],[2,3,3,2],[2,3,0,1],[1,0,0,1]],[[1,2,2,0],[3,3,3,2],[2,3,0,0],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[2,3,0,0],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[2,3,0,0],[1,0,1,1]],[[0,2,2,1],[1,3,0,0],[1,4,3,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,0],[1,3,3,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,0],[1,3,3,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,0],[1,3,3,1],[1,2,3,1]],[[0,2,2,1],[1,3,0,0],[1,3,3,1],[1,2,2,2]],[[0,2,2,1],[1,3,0,0],[1,4,3,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,0],[1,3,3,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,0],[1,3,3,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,0],[1,3,3,2],[1,2,3,0]],[[0,2,2,1],[1,3,0,0],[3,2,3,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,0],[2,2,3,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,0],[2,2,3,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,0],[2,2,3,1],[1,2,3,1]],[[0,2,2,1],[1,3,0,0],[2,2,3,1],[1,2,2,2]],[[0,2,2,1],[1,3,0,0],[3,2,3,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,0],[2,2,3,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,0],[2,2,3,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,0],[2,2,3,2],[1,2,3,0]],[[0,2,2,1],[1,3,0,0],[3,3,3,1],[0,2,2,1]],[[0,2,2,1],[1,3,0,0],[2,4,3,1],[0,2,2,1]],[[0,2,2,1],[1,3,0,0],[2,3,3,1],[0,3,2,1]],[[0,2,2,1],[1,3,0,0],[2,3,3,1],[0,2,3,1]],[[0,2,2,1],[1,3,0,0],[2,3,3,1],[0,2,2,2]],[[0,2,2,1],[1,3,0,0],[3,3,3,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,0],[2,4,3,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,0],[2,3,3,1],[2,1,2,1]],[[0,2,2,1],[1,3,0,0],[3,3,3,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,0],[2,4,3,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,0],[2,3,3,2],[0,3,2,0]],[[0,2,2,1],[1,3,0,0],[2,3,3,2],[0,2,3,0]],[[0,2,2,1],[1,3,0,0],[3,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,0],[2,4,3,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,0],[2,3,3,2],[2,1,2,0]],[[1,2,2,0],[3,3,3,2],[2,2,2,1],[1,0,0,0]],[[1,2,3,0],[2,3,3,2],[2,2,2,1],[1,0,0,0]],[[1,3,2,0],[2,3,3,2],[2,2,2,1],[1,0,0,0]],[[2,2,2,0],[2,3,3,2],[2,2,2,1],[1,0,0,0]],[[0,2,2,1],[1,3,0,1],[0,3,2,3],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[0,3,2,2],[1,3,2,1]],[[0,2,2,1],[1,3,0,1],[0,3,2,2],[1,2,3,1]],[[0,2,2,1],[1,3,0,1],[0,3,2,2],[1,2,2,2]],[[0,2,2,1],[1,3,0,1],[0,3,4,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[0,3,3,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,1],[0,3,3,1],[1,2,3,1]],[[0,2,2,1],[1,3,0,1],[0,3,3,1],[1,2,2,2]],[[0,2,2,1],[1,3,0,1],[0,3,4,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,1],[0,3,3,3],[1,2,1,1]],[[0,2,2,1],[1,3,0,1],[0,3,3,2],[1,2,1,2]],[[0,2,2,1],[1,3,0,1],[0,3,4,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,1],[0,3,3,3],[1,2,2,0]],[[0,2,2,1],[1,3,0,1],[0,3,3,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,1],[0,3,3,2],[1,2,3,0]],[[0,2,2,1],[1,3,0,1],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[1,2,2,2],[2,2,2,1]],[[0,2,2,1],[1,3,0,1],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[1,3,0,1],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[1,3,0,1],[1,2,2,2],[1,2,2,2]],[[0,2,2,1],[1,3,0,1],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[1,2,3,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,1],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,1],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[1,3,0,1],[1,2,3,1],[1,2,2,2]],[[0,2,2,1],[1,3,0,1],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,1],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[1,3,0,1],[1,2,3,2],[1,2,1,2]],[[0,2,2,1],[1,3,0,1],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,1],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[1,3,0,1],[1,2,3,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,1],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,1],[1,2,3,2],[1,2,3,0]],[[0,3,2,1],[1,3,0,1],[1,3,1,2],[1,2,2,1]],[[0,2,3,1],[1,3,0,1],[1,3,1,2],[1,2,2,1]],[[0,2,2,2],[1,3,0,1],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,4,0,1],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[1,4,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,1,3],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,1,2],[2,2,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,1,2],[1,3,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,1,2],[1,2,3,1]],[[0,2,2,1],[1,3,0,1],[1,3,1,2],[1,2,2,2]],[[0,3,2,1],[1,3,0,1],[1,3,2,1],[1,2,2,1]],[[0,2,3,1],[1,3,0,1],[1,3,2,1],[1,2,2,1]],[[0,2,2,2],[1,3,0,1],[1,3,2,1],[1,2,2,1]],[[0,2,2,1],[1,4,0,1],[1,3,2,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[1,4,2,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,2,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,2,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,2,1],[1,2,3,1]],[[0,2,2,1],[1,3,0,1],[1,3,2,1],[1,2,2,2]],[[0,2,2,1],[1,3,0,1],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[1,3,0,1],[1,3,2,2],[1,1,2,2]],[[0,3,2,1],[1,3,0,1],[1,3,2,2],[1,2,2,0]],[[0,2,3,1],[1,3,0,1],[1,3,2,2],[1,2,2,0]],[[0,2,2,2],[1,3,0,1],[1,3,2,2],[1,2,2,0]],[[0,2,2,1],[1,4,0,1],[1,3,2,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,1],[1,4,2,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,1],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,1],[1,3,2,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,1],[1,3,2,2],[1,2,3,0]],[[0,3,2,1],[1,3,0,1],[1,3,3,1],[1,1,2,1]],[[0,2,3,1],[1,3,0,1],[1,3,3,1],[1,1,2,1]],[[0,2,2,2],[1,3,0,1],[1,3,3,1],[1,1,2,1]],[[0,2,2,1],[1,4,0,1],[1,3,3,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,1],[1,4,3,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,1],[1,1,2,2]],[[0,3,2,1],[1,3,0,1],[1,3,3,1],[1,2,1,1]],[[0,2,3,1],[1,3,0,1],[1,3,3,1],[1,2,1,1]],[[0,2,2,2],[1,3,0,1],[1,3,3,1],[1,2,1,1]],[[0,2,2,1],[1,4,0,1],[1,3,3,1],[1,2,1,1]],[[0,2,2,1],[1,3,0,1],[1,4,3,1],[1,2,1,1]],[[0,2,2,1],[1,3,0,1],[1,3,4,1],[1,2,1,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,1],[2,2,1,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,1],[1,3,1,1]],[[0,2,2,1],[1,3,0,1],[1,3,4,2],[1,0,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,3],[1,0,2,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,2],[1,0,2,2]],[[0,3,2,1],[1,3,0,1],[1,3,3,2],[1,1,1,1]],[[0,2,3,1],[1,3,0,1],[1,3,3,2],[1,1,1,1]],[[0,2,2,2],[1,3,0,1],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,4,0,1],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,1],[1,4,3,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,1],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,2],[1,1,1,2]],[[0,3,2,1],[1,3,0,1],[1,3,3,2],[1,1,2,0]],[[0,2,3,1],[1,3,0,1],[1,3,3,2],[1,1,2,0]],[[0,2,2,2],[1,3,0,1],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,4,0,1],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,1],[1,4,3,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,1],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,1],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[1,3,0,1],[1,3,3,2],[1,1,3,0]],[[0,3,2,1],[1,3,0,1],[1,3,3,2],[1,2,0,1]],[[0,2,3,1],[1,3,0,1],[1,3,3,2],[1,2,0,1]],[[0,2,2,2],[1,3,0,1],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,4,0,1],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,3,0,1],[1,4,3,2],[1,2,0,1]],[[0,2,2,1],[1,3,0,1],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,2],[2,2,0,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,2],[1,3,0,1]],[[0,2,2,1],[1,3,0,1],[1,3,3,2],[1,2,0,2]],[[0,3,2,1],[1,3,0,1],[1,3,3,2],[1,2,1,0]],[[0,2,3,1],[1,3,0,1],[1,3,3,2],[1,2,1,0]],[[0,2,2,2],[1,3,0,1],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,4,0,1],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,3,0,1],[1,4,3,2],[1,2,1,0]],[[0,2,2,1],[1,3,0,1],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[1,3,0,1],[1,3,3,3],[1,2,1,0]],[[0,2,2,1],[1,3,0,1],[1,3,3,2],[2,2,1,0]],[[0,2,2,1],[1,3,0,1],[1,3,3,2],[1,3,1,0]],[[0,2,2,1],[1,3,0,1],[3,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,1,2,3],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,1,2,2],[2,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,1,2,2],[1,3,2,1]],[[0,2,2,1],[1,3,0,1],[2,1,2,2],[1,2,3,1]],[[0,2,2,1],[1,3,0,1],[2,1,2,2],[1,2,2,2]],[[0,2,2,1],[1,3,0,1],[3,1,3,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,1,4,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,1,3,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,1],[2,1,3,1],[1,2,3,1]],[[0,2,2,1],[1,3,0,1],[2,1,3,1],[1,2,2,2]],[[0,2,2,1],[1,3,0,1],[2,1,4,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,1],[2,1,3,3],[1,2,1,1]],[[0,2,2,1],[1,3,0,1],[2,1,3,2],[1,2,1,2]],[[0,2,2,1],[1,3,0,1],[3,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,1,4,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,1,3,3],[1,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,1,3,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,1,3,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,1],[2,1,3,2],[1,2,3,0]],[[0,2,2,1],[1,3,0,1],[3,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[1,3,0,1],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[1,3,0,1],[2,2,1,2],[1,2,2,2]],[[0,2,2,1],[1,3,0,1],[3,2,2,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,2,2,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,2,2,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,1],[2,2,2,1],[1,2,3,1]],[[0,2,2,1],[1,3,0,1],[2,2,2,1],[1,2,2,2]],[[0,2,2,1],[1,3,0,1],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,2,2,2],[0,3,2,1]],[[0,2,2,1],[1,3,0,1],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[1,3,0,1],[2,2,2,2],[0,2,2,2]],[[0,2,2,1],[1,3,0,1],[3,2,2,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,2,2,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,2,2,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,1],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[1,3,0,1],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,2,3,1],[0,3,2,1]],[[0,2,2,1],[1,3,0,1],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[1,3,0,1],[2,2,3,1],[0,2,2,2]],[[0,2,2,1],[1,3,0,1],[3,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,3,0,1],[2,2,3,1],[2,2,1,1]],[[0,2,2,1],[1,3,0,1],[2,2,3,1],[1,3,1,1]],[[0,2,2,1],[1,3,0,1],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[1,3,0,1],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[1,3,0,1],[2,2,3,2],[0,2,1,2]],[[0,2,2,1],[1,3,0,1],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,2,3,2],[0,3,2,0]],[[0,2,2,1],[1,3,0,1],[2,2,3,2],[0,2,3,0]],[[0,2,2,1],[1,3,0,1],[3,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,3,0,1],[2,2,3,2],[2,2,0,1]],[[0,2,2,1],[1,3,0,1],[2,2,3,2],[1,3,0,1]],[[0,2,2,1],[1,3,0,1],[3,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,3,0,1],[2,2,3,2],[2,2,1,0]],[[0,2,2,1],[1,3,0,1],[2,2,3,2],[1,3,1,0]],[[0,2,2,1],[1,3,0,1],[3,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,0,2],[1,3,2,1]],[[0,2,2,1],[1,3,0,1],[3,3,1,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,1,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,1,1],[1,3,2,1]],[[0,3,2,1],[1,3,0,1],[2,3,1,2],[0,2,2,1]],[[0,2,3,1],[1,3,0,1],[2,3,1,2],[0,2,2,1]],[[0,2,2,2],[1,3,0,1],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,4,0,1],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,3,0,1],[3,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,4,1,2],[0,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,1,3],[0,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,1,2],[0,3,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,1,2],[0,2,3,1]],[[0,2,2,1],[1,3,0,1],[2,3,1,2],[0,2,2,2]],[[0,3,2,1],[1,3,0,1],[2,3,1,2],[1,1,2,1]],[[0,2,3,1],[1,3,0,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,2],[1,3,0,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,4,0,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,3,0,1],[3,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,3,0,1],[2,4,1,2],[1,1,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,1,2],[2,1,2,1]],[[0,2,2,1],[1,3,0,1],[3,3,1,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,1,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,1,2],[1,3,2,0]],[[0,3,2,1],[1,3,0,1],[2,3,2,1],[0,2,2,1]],[[0,2,3,1],[1,3,0,1],[2,3,2,1],[0,2,2,1]],[[0,2,2,2],[1,3,0,1],[2,3,2,1],[0,2,2,1]],[[0,2,2,1],[1,4,0,1],[2,3,2,1],[0,2,2,1]],[[0,2,2,1],[1,3,0,1],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,4,2,1],[0,2,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,2,1],[0,3,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,2,1],[0,2,3,1]],[[0,2,2,1],[1,3,0,1],[2,3,2,1],[0,2,2,2]],[[0,3,2,1],[1,3,0,1],[2,3,2,1],[1,1,2,1]],[[0,2,3,1],[1,3,0,1],[2,3,2,1],[1,1,2,1]],[[0,2,2,2],[1,3,0,1],[2,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,4,0,1],[2,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,1],[3,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,1],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,2,1],[2,1,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[1,3,0,1],[2,3,2,2],[0,1,2,2]],[[0,3,2,1],[1,3,0,1],[2,3,2,2],[0,2,2,0]],[[0,2,3,1],[1,3,0,1],[2,3,2,2],[0,2,2,0]],[[0,2,2,2],[1,3,0,1],[2,3,2,2],[0,2,2,0]],[[0,2,2,1],[1,4,0,1],[2,3,2,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,1],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,4,2,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,2,2],[0,3,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,2,2],[0,2,3,0]],[[0,2,2,1],[1,3,0,1],[2,3,2,3],[1,0,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,2,2],[1,0,3,1]],[[0,2,2,1],[1,3,0,1],[2,3,2,2],[1,0,2,2]],[[0,3,2,1],[1,3,0,1],[2,3,2,2],[1,1,2,0]],[[0,2,3,1],[1,3,0,1],[2,3,2,2],[1,1,2,0]],[[0,2,2,2],[1,3,0,1],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,4,0,1],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,1],[3,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,1],[2,4,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,2,2],[2,1,2,0]],[[0,3,2,1],[1,3,0,1],[2,3,3,1],[0,1,2,1]],[[0,2,3,1],[1,3,0,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,2],[1,3,0,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[1,4,0,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[1,3,0,1],[3,3,3,1],[0,1,2,1]],[[0,2,2,1],[1,3,0,1],[2,4,3,1],[0,1,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,1],[0,1,2,2]],[[0,3,2,1],[1,3,0,1],[2,3,3,1],[0,2,1,1]],[[0,2,3,1],[1,3,0,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,2],[1,3,0,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[1,4,0,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[1,3,0,1],[3,3,3,1],[0,2,1,1]],[[0,2,2,1],[1,3,0,1],[2,4,3,1],[0,2,1,1]],[[0,2,2,1],[1,3,0,1],[2,3,4,1],[0,2,1,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,1],[0,3,1,1]],[[0,3,2,1],[1,3,0,1],[2,3,3,1],[1,0,2,1]],[[0,2,3,1],[1,3,0,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,2],[1,3,0,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,4,0,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,3,0,1],[3,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,3,0,1],[2,4,3,1],[1,0,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,4,1],[1,0,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,1],[2,0,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,1],[1,0,3,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,1],[1,0,2,2]],[[0,3,2,1],[1,3,0,1],[2,3,3,1],[1,1,1,1]],[[0,2,3,1],[1,3,0,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,2],[1,3,0,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,4,0,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,0,1],[3,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,0,1],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,0,1],[2,3,4,1],[1,1,1,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,1],[2,1,1,1]],[[0,2,2,1],[1,3,0,1],[3,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,0,1],[2,4,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,1],[2,2,0,1]],[[0,2,2,1],[1,3,0,1],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[0,0,2,2]],[[0,3,2,1],[1,3,0,1],[2,3,3,2],[0,1,1,1]],[[0,2,3,1],[1,3,0,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,2],[1,3,0,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,4,0,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,3,0,1],[3,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,3,0,1],[2,4,3,2],[0,1,1,1]],[[0,2,2,1],[1,3,0,1],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[0,1,1,2]],[[0,3,2,1],[1,3,0,1],[2,3,3,2],[0,1,2,0]],[[0,2,3,1],[1,3,0,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,2],[1,3,0,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,4,0,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,3,0,1],[3,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,3,0,1],[2,4,3,2],[0,1,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[0,1,3,0]],[[0,3,2,1],[1,3,0,1],[2,3,3,2],[0,2,0,1]],[[0,2,3,1],[1,3,0,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,2],[1,3,0,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,4,0,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,3,0,1],[3,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,3,0,1],[2,4,3,2],[0,2,0,1]],[[0,2,2,1],[1,3,0,1],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[0,3,0,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[0,2,0,2]],[[0,3,2,1],[1,3,0,1],[2,3,3,2],[0,2,1,0]],[[0,2,3,1],[1,3,0,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,2],[1,3,0,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,4,0,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,3,0,1],[3,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,3,0,1],[2,4,3,2],[0,2,1,0]],[[0,2,2,1],[1,3,0,1],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[1,3,0,1],[2,3,3,3],[0,2,1,0]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[3,3,3,2],[2,2,1,1],[1,0,1,0]],[[1,2,3,0],[2,3,3,2],[2,2,1,1],[1,0,1,0]],[[1,3,2,0],[2,3,3,2],[2,2,1,1],[1,0,1,0]],[[0,3,2,1],[1,3,0,1],[2,3,3,2],[1,0,1,1]],[[0,2,3,1],[1,3,0,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,2],[1,3,0,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,4,0,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,3,0,1],[3,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,3,0,1],[2,4,3,2],[1,0,1,1]],[[0,2,2,1],[1,3,0,1],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[2,0,1,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[1,0,1,2]],[[0,3,2,1],[1,3,0,1],[2,3,3,2],[1,0,2,0]],[[0,2,3,1],[1,3,0,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,2],[1,3,0,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,4,0,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,3,0,1],[3,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,3,0,1],[2,4,3,2],[1,0,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,3,3],[1,0,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[2,0,2,0]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[1,0,3,0]],[[0,3,2,1],[1,3,0,1],[2,3,3,2],[1,1,0,1]],[[0,2,3,1],[1,3,0,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,2],[1,3,0,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,4,0,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,3,0,1],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,3,0,1],[2,4,3,2],[1,1,0,1]],[[0,2,2,1],[1,3,0,1],[2,3,4,2],[1,1,0,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,3],[1,1,0,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[2,1,0,1]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[1,1,0,2]],[[0,3,2,1],[1,3,0,1],[2,3,3,2],[1,1,1,0]],[[0,2,3,1],[1,3,0,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,2],[1,3,0,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,4,0,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,3,0,1],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,3,0,1],[2,4,3,2],[1,1,1,0]],[[0,2,2,1],[1,3,0,1],[2,3,4,2],[1,1,1,0]],[[0,2,2,1],[1,3,0,1],[2,3,3,3],[1,1,1,0]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[2,1,1,0]],[[2,2,2,0],[2,3,3,2],[2,2,1,1],[1,0,1,0]],[[1,2,2,0],[3,3,3,2],[2,2,1,1],[1,0,0,1]],[[1,2,3,0],[2,3,3,2],[2,2,1,1],[1,0,0,1]],[[1,3,2,0],[2,3,3,2],[2,2,1,1],[1,0,0,1]],[[2,2,2,0],[2,3,3,2],[2,2,1,1],[1,0,0,1]],[[0,3,2,1],[1,3,0,1],[2,3,3,2],[1,2,0,0]],[[0,2,3,1],[1,3,0,1],[2,3,3,2],[1,2,0,0]],[[0,2,2,2],[1,3,0,1],[2,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,4,0,1],[2,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,3,0,1],[3,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,3,0,1],[2,4,3,2],[1,2,0,0]],[[0,2,2,1],[1,3,0,1],[2,3,3,2],[2,2,0,0]],[[0,2,2,1],[1,3,0,2],[0,3,4,0],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[0,3,3,0],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[0,3,3,0],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[0,3,3,0],[1,2,2,2]],[[0,2,2,1],[1,3,0,2],[0,3,4,1],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[0,3,3,1],[1,3,2,0]],[[0,2,2,1],[1,3,0,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,0],[3,3,3,2],[2,2,1,0],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[2,2,1,0],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[2,2,1,0],[1,0,1,1]],[[0,2,3,1],[1,3,0,2],[1,0,3,2],[1,2,2,1]],[[0,2,2,2],[1,3,0,2],[1,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,3],[1,0,3,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,0,3,3],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,0,3,2],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[1,0,3,2],[1,2,2,2]],[[0,3,2,1],[1,3,0,2],[1,1,2,2],[1,2,2,1]],[[0,2,3,1],[1,3,0,2],[1,1,2,2],[1,2,2,1]],[[0,2,2,2],[1,3,0,2],[1,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,4,0,2],[1,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,3],[1,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,1,2,3],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,1,2,2],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,1,2,2],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[1,1,2,2],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[1,1,2,2],[1,2,2,2]],[[0,2,2,1],[1,3,0,2],[1,1,4,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,1,3,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,1,3,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[1,1,3,1],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[1,1,3,1],[1,2,2,2]],[[0,3,2,1],[1,3,0,2],[1,1,3,2],[1,2,1,1]],[[0,2,3,1],[1,3,0,2],[1,1,3,2],[1,2,1,1]],[[0,2,2,2],[1,3,0,2],[1,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,4,0,2],[1,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,3],[1,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[1,1,4,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[1,1,3,3],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[1,1,3,2],[1,2,1,2]],[[0,3,2,1],[1,3,0,2],[1,1,3,2],[1,2,2,0]],[[0,2,3,1],[1,3,0,2],[1,1,3,2],[1,2,2,0]],[[0,2,2,2],[1,3,0,2],[1,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,4,0,2],[1,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,3],[1,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,1,4,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,1,3,3],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,1,3,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,1,3,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,2],[1,1,3,2],[1,2,3,0]],[[0,3,2,1],[1,3,0,2],[1,2,1,2],[1,2,2,1]],[[0,2,3,1],[1,3,0,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,2],[1,3,0,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,4,0,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,3],[1,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,1,3],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,1,2],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,1,2],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,1,2],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[1,2,1,2],[1,2,2,2]],[[0,3,2,1],[1,3,0,2],[1,2,2,2],[1,1,2,1]],[[0,2,3,1],[1,3,0,2],[1,2,2,2],[1,1,2,1]],[[0,2,2,2],[1,3,0,2],[1,2,2,2],[1,1,2,1]],[[0,2,2,1],[1,4,0,2],[1,2,2,2],[1,1,2,1]],[[0,2,2,1],[1,3,0,3],[1,2,2,2],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,2,3],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,2,2],[1,1,3,1]],[[0,2,2,1],[1,3,0,2],[1,2,2,2],[1,1,2,2]],[[0,2,2,1],[1,3,0,2],[1,2,4,0],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,0],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,0],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,0],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,0],[1,2,2,2]],[[0,2,2,1],[1,3,0,2],[1,2,4,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,1],[1,1,3,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,1],[1,1,2,2]],[[0,2,2,1],[1,3,0,2],[1,2,4,1],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,2,3,1],[2,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,2,3,1],[1,3,2,0]],[[0,2,2,1],[1,3,0,2],[1,2,3,1],[1,2,3,0]],[[0,2,3,1],[1,3,0,2],[1,2,3,2],[1,0,2,1]],[[0,2,2,2],[1,3,0,2],[1,2,3,2],[1,0,2,1]],[[0,2,2,1],[1,3,0,3],[1,2,3,2],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,4,2],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,3],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,2],[1,0,2,2]],[[0,3,2,1],[1,3,0,2],[1,2,3,2],[1,1,1,1]],[[0,2,3,1],[1,3,0,2],[1,2,3,2],[1,1,1,1]],[[0,2,2,2],[1,3,0,2],[1,2,3,2],[1,1,1,1]],[[0,2,2,1],[1,4,0,2],[1,2,3,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,3],[1,2,3,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[1,2,4,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,3],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,2],[1,1,1,2]],[[0,3,2,1],[1,3,0,2],[1,2,3,2],[1,1,2,0]],[[0,2,3,1],[1,3,0,2],[1,2,3,2],[1,1,2,0]],[[0,2,2,2],[1,3,0,2],[1,2,3,2],[1,1,2,0]],[[0,2,2,1],[1,4,0,2],[1,2,3,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,3],[1,2,3,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[1,2,4,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[1,2,3,3],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[1,2,3,2],[1,1,3,0]],[[0,3,2,1],[1,3,0,2],[1,2,3,2],[1,2,0,1]],[[0,2,3,1],[1,3,0,2],[1,2,3,2],[1,2,0,1]],[[0,2,2,2],[1,3,0,2],[1,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,4,0,2],[1,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,3,0,3],[1,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[1,2,4,2],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,3],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[1,2,3,2],[1,2,0,2]],[[0,3,2,1],[1,3,0,2],[1,2,3,2],[1,2,1,0]],[[0,2,3,1],[1,3,0,2],[1,2,3,2],[1,2,1,0]],[[0,2,2,2],[1,3,0,2],[1,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,4,0,2],[1,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,3,0,3],[1,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,3,0,2],[1,2,4,2],[1,2,1,0]],[[0,2,2,1],[1,3,0,2],[1,2,3,3],[1,2,1,0]],[[0,3,2,1],[1,3,0,2],[1,3,1,1],[1,2,2,1]],[[0,2,3,1],[1,3,0,2],[1,3,1,1],[1,2,2,1]],[[0,2,2,2],[1,3,0,2],[1,3,1,1],[1,2,2,1]],[[0,2,2,1],[1,4,0,2],[1,3,1,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,3],[1,3,1,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,4,1,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,3,1,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,3,1,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[1,3,1,1],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[1,3,1,1],[1,2,2,2]],[[0,3,2,1],[1,3,0,2],[1,3,1,2],[1,1,2,1]],[[0,2,3,1],[1,3,0,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,2],[1,3,0,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,4,0,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,3,0,3],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[1,4,1,2],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[1,3,1,3],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[1,3,1,2],[1,1,3,1]],[[0,2,2,1],[1,3,0,2],[1,3,1,2],[1,1,2,2]],[[0,3,2,1],[1,3,0,2],[1,3,1,2],[1,2,1,1]],[[0,2,3,1],[1,3,0,2],[1,3,1,2],[1,2,1,1]],[[0,2,2,2],[1,3,0,2],[1,3,1,2],[1,2,1,1]],[[0,2,2,1],[1,4,0,2],[1,3,1,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,3],[1,3,1,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[1,4,1,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[1,3,1,3],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[1,3,1,2],[2,2,1,1]],[[0,2,2,1],[1,3,0,2],[1,3,1,2],[1,3,1,1]],[[0,2,2,1],[1,3,0,2],[1,3,1,2],[1,2,1,2]],[[0,3,2,1],[1,3,0,2],[1,3,1,2],[1,2,2,0]],[[0,2,3,1],[1,3,0,2],[1,3,1,2],[1,2,2,0]],[[0,2,2,2],[1,3,0,2],[1,3,1,2],[1,2,2,0]],[[0,2,2,1],[1,4,0,2],[1,3,1,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,3],[1,3,1,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,4,1,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,3,1,3],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,3,1,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,3,1,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,2],[1,3,1,2],[1,2,3,0]],[[0,3,2,1],[1,3,0,2],[1,3,2,0],[1,2,2,1]],[[0,2,3,1],[1,3,0,2],[1,3,2,0],[1,2,2,1]],[[0,2,2,2],[1,3,0,2],[1,3,2,0],[1,2,2,1]],[[0,2,2,1],[1,4,0,2],[1,3,2,0],[1,2,2,1]],[[0,2,2,1],[1,3,0,3],[1,3,2,0],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,4,2,0],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,3,2,0],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[1,3,2,0],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[1,3,2,0],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[1,3,2,0],[1,2,2,2]],[[0,3,2,1],[1,3,0,2],[1,3,2,1],[1,2,2,0]],[[0,2,3,1],[1,3,0,2],[1,3,2,1],[1,2,2,0]],[[0,2,2,2],[1,3,0,2],[1,3,2,1],[1,2,2,0]],[[0,2,2,1],[1,4,0,2],[1,3,2,1],[1,2,2,0]],[[0,2,2,1],[1,3,0,3],[1,3,2,1],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,4,2,1],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,3,2,1],[2,2,2,0]],[[0,2,2,1],[1,3,0,2],[1,3,2,1],[1,3,2,0]],[[0,2,2,1],[1,3,0,2],[1,3,2,1],[1,2,3,0]],[[0,3,2,1],[1,3,0,2],[1,3,2,2],[1,1,1,1]],[[0,2,3,1],[1,3,0,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,2],[1,3,0,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[1,4,0,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,3],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[1,4,2,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[1,3,2,3],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[1,3,2,2],[1,1,1,2]],[[0,3,2,1],[1,3,0,2],[1,3,2,2],[1,1,2,0]],[[0,2,3,1],[1,3,0,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,2],[1,3,0,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,4,0,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,3],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[1,4,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[1,3,2,3],[1,1,2,0]],[[0,3,2,1],[1,3,0,2],[1,3,2,2],[1,2,0,1]],[[0,2,3,1],[1,3,0,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,2],[1,3,0,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[1,4,0,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[1,3,0,3],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[1,4,2,2],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[1,3,2,3],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[1,3,2,2],[2,2,0,1]],[[0,2,2,1],[1,3,0,2],[1,3,2,2],[1,3,0,1]],[[0,2,2,1],[1,3,0,2],[1,3,2,2],[1,2,0,2]],[[0,3,2,1],[1,3,0,2],[1,3,2,2],[1,2,1,0]],[[0,2,3,1],[1,3,0,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,2],[1,3,0,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[1,4,0,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[1,3,0,3],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[1,3,0,2],[1,4,2,2],[1,2,1,0]],[[0,2,2,1],[1,3,0,2],[1,3,2,3],[1,2,1,0]],[[0,2,2,1],[1,3,0,2],[1,3,2,2],[2,2,1,0]],[[0,2,2,1],[1,3,0,2],[1,3,2,2],[1,3,1,0]],[[0,3,2,1],[1,3,0,2],[1,3,3,0],[1,1,2,1]],[[0,2,3,1],[1,3,0,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,2],[1,3,0,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,4,0,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,3,0,3],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[1,4,3,0],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[1,3,4,0],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[1,3,3,0],[1,1,3,1]],[[0,2,2,1],[1,3,0,2],[1,3,3,0],[1,1,2,2]],[[0,3,2,1],[1,3,0,2],[1,3,3,0],[1,2,1,1]],[[0,2,3,1],[1,3,0,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,2],[1,3,0,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[1,4,0,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[1,3,0,3],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[1,4,3,0],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[1,3,4,0],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[1,3,3,0],[2,2,1,1]],[[0,2,2,1],[1,3,0,2],[1,3,3,0],[1,3,1,1]],[[0,3,2,1],[1,3,0,2],[1,3,3,1],[1,1,1,1]],[[0,2,3,1],[1,3,0,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,2],[1,3,0,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,4,0,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,0,3],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[1,4,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[1,3,4,1],[1,1,1,1]],[[0,3,2,1],[1,3,0,2],[1,3,3,1],[1,1,2,0]],[[0,2,3,1],[1,3,0,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,2],[1,3,0,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[1,4,0,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[1,3,0,3],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[1,4,3,1],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[1,3,4,1],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[1,3,3,1],[1,1,3,0]],[[0,3,2,1],[1,3,0,2],[1,3,3,1],[1,2,0,1]],[[0,2,3,1],[1,3,0,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,2],[1,3,0,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,4,0,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,0,3],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[1,4,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[1,3,4,1],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[1,3,3,1],[2,2,0,1]],[[0,2,2,1],[1,3,0,2],[1,3,3,1],[1,3,0,1]],[[0,3,2,1],[1,3,0,2],[1,3,3,1],[1,2,1,0]],[[0,2,3,1],[1,3,0,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,2],[1,3,0,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[1,4,0,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[1,3,0,3],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[1,3,0,2],[1,4,3,1],[1,2,1,0]],[[0,2,2,1],[1,3,0,2],[1,3,4,1],[1,2,1,0]],[[0,2,2,1],[1,3,0,2],[1,3,3,1],[2,2,1,0]],[[0,2,2,1],[1,3,0,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[3,3,3,2],[2,2,0,2],[1,0,1,0]],[[1,2,3,0],[2,3,3,2],[2,2,0,2],[1,0,1,0]],[[1,3,2,0],[2,3,3,2],[2,2,0,2],[1,0,1,0]],[[2,2,2,0],[2,3,3,2],[2,2,0,2],[1,0,1,0]],[[1,2,2,0],[3,3,3,2],[2,2,0,2],[1,0,0,1]],[[1,2,3,0],[2,3,3,2],[2,2,0,2],[1,0,0,1]],[[1,3,2,0],[2,3,3,2],[2,2,0,2],[1,0,0,1]],[[2,2,2,0],[2,3,3,2],[2,2,0,2],[1,0,0,1]],[[0,3,2,1],[1,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,3,1],[1,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,2],[1,3,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,4,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,3],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[3,0,2,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,0,2,3],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,0,2,2],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,0,2,2],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,0,2,2],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,0,2,2],[1,2,2,2]],[[0,2,2,1],[1,3,0,2],[3,0,3,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,0,4,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,0,3,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,0,3,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,0,3,1],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,0,3,1],[1,2,2,2]],[[0,2,3,1],[1,3,0,2],[2,0,3,2],[0,2,2,1]],[[0,2,2,2],[1,3,0,2],[2,0,3,2],[0,2,2,1]],[[0,2,2,1],[1,3,0,3],[2,0,3,2],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,0,3,3],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,0,3,2],[0,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,0,3,2],[0,2,2,2]],[[0,3,2,1],[1,3,0,2],[2,0,3,2],[1,2,1,1]],[[0,2,3,1],[1,3,0,2],[2,0,3,2],[1,2,1,1]],[[0,2,2,2],[1,3,0,2],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,4,0,2],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,3],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,0,4,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,0,3,3],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,0,3,2],[1,2,1,2]],[[0,3,2,1],[1,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,3,1],[1,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,2],[1,3,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,4,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,3],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[3,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,0,4,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,0,3,3],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,0,3,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,0,3,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,2],[2,0,3,2],[1,2,3,0]],[[0,3,2,1],[1,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,3,1],[1,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,2],[1,3,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,4,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,3],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[3,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,1,3],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,1,2],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,1,2],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,1,2],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,1,1,2],[1,2,2,2]],[[0,3,2,1],[1,3,0,2],[2,1,2,2],[0,2,2,1]],[[0,2,3,1],[1,3,0,2],[2,1,2,2],[0,2,2,1]],[[0,2,2,2],[1,3,0,2],[2,1,2,2],[0,2,2,1]],[[0,2,2,1],[1,4,0,2],[2,1,2,2],[0,2,2,1]],[[0,2,2,1],[1,3,0,3],[2,1,2,2],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,2,3],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,2,2],[0,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,2,2],[0,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,1,2,2],[0,2,2,2]],[[0,2,2,1],[1,3,0,2],[3,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,4,0],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,3,0],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,3,0],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,3,0],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,1,3,0],[1,2,2,2]],[[0,2,2,1],[1,3,0,2],[2,1,4,1],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,3,1],[0,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,1,3,1],[0,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,1,3,1],[0,2,2,2]],[[0,2,2,1],[1,3,0,2],[3,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,1,4,1],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,1,3,1],[2,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,1,3,1],[1,3,2,0]],[[0,2,2,1],[1,3,0,2],[2,1,3,1],[1,2,3,0]],[[0,3,2,1],[1,3,0,2],[2,1,3,2],[0,2,1,1]],[[0,2,3,1],[1,3,0,2],[2,1,3,2],[0,2,1,1]],[[0,2,2,2],[1,3,0,2],[2,1,3,2],[0,2,1,1]],[[0,2,2,1],[1,4,0,2],[2,1,3,2],[0,2,1,1]],[[0,2,2,1],[1,3,0,3],[2,1,3,2],[0,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,1,4,2],[0,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,1,3,3],[0,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,1,3,2],[0,2,1,2]],[[0,3,2,1],[1,3,0,2],[2,1,3,2],[0,2,2,0]],[[0,2,3,1],[1,3,0,2],[2,1,3,2],[0,2,2,0]],[[0,2,2,2],[1,3,0,2],[2,1,3,2],[0,2,2,0]],[[0,2,2,1],[1,4,0,2],[2,1,3,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,3],[2,1,3,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,1,4,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,1,3,3],[0,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,1,3,2],[0,3,2,0]],[[0,2,2,1],[1,3,0,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,0],[3,3,3,2],[2,2,0,1],[1,2,0,0]],[[1,3,2,0],[2,3,3,2],[2,2,0,1],[1,2,0,0]],[[2,2,2,0],[2,3,3,2],[2,2,0,1],[1,2,0,0]],[[0,2,2,1],[1,3,0,2],[3,2,1,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,1,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,1,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,1,1],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,2,1,1],[1,2,2,2]],[[0,3,2,1],[1,3,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,3,1],[1,3,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,2],[1,3,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[1,4,0,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[1,3,0,3],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,1,3],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,1,2],[0,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,1,2],[0,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,2,1,2],[0,2,2,2]],[[0,2,2,1],[1,3,0,2],[3,2,1,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,2,1,2],[2,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,2,1,2],[1,3,1,1]],[[0,2,2,1],[1,3,0,2],[3,2,1,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,1,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,1,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,1,2],[1,2,3,0]],[[0,2,2,1],[1,3,0,2],[3,2,2,0],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,0],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,0],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,0],[1,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,0],[1,2,2,2]],[[0,2,2,1],[1,3,0,2],[3,2,2,1],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,2,1],[2,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,2,1],[1,3,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,2,1],[1,2,3,0]],[[0,3,2,1],[1,3,0,2],[2,2,2,2],[0,1,2,1]],[[0,2,3,1],[1,3,0,2],[2,2,2,2],[0,1,2,1]],[[0,2,2,2],[1,3,0,2],[2,2,2,2],[0,1,2,1]],[[0,2,2,1],[1,4,0,2],[2,2,2,2],[0,1,2,1]],[[0,2,2,1],[1,3,0,3],[2,2,2,2],[0,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,3],[0,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,2],[0,1,3,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,2],[0,1,2,2]],[[0,3,2,1],[1,3,0,2],[2,2,2,2],[1,0,2,1]],[[0,2,3,1],[1,3,0,2],[2,2,2,2],[1,0,2,1]],[[0,2,2,2],[1,3,0,2],[2,2,2,2],[1,0,2,1]],[[0,2,2,1],[1,4,0,2],[2,2,2,2],[1,0,2,1]],[[0,2,2,1],[1,3,0,3],[2,2,2,2],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,3],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,2],[1,0,3,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,2],[1,0,2,2]],[[0,2,2,1],[1,3,0,2],[3,2,2,2],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,2],[2,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,2,2,2],[1,3,0,1]],[[0,2,2,1],[1,3,0,2],[3,2,2,2],[1,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,2,2,2],[2,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,2,2,2],[1,3,1,0]],[[1,2,2,0],[3,3,3,2],[2,2,0,1],[1,1,1,0]],[[1,3,2,0],[2,3,3,2],[2,2,0,1],[1,1,1,0]],[[2,2,2,0],[2,3,3,2],[2,2,0,1],[1,1,1,0]],[[1,2,2,0],[3,3,3,2],[2,2,0,1],[1,1,0,1]],[[1,3,2,0],[2,3,3,2],[2,2,0,1],[1,1,0,1]],[[2,2,2,0],[2,3,3,2],[2,2,0,1],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[2,2,4,0],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,0],[0,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,0],[0,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,0],[0,2,2,2]],[[0,2,2,1],[1,3,0,2],[3,2,3,0],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,0],[2,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,0],[1,3,1,1]],[[0,2,2,1],[1,3,0,2],[2,2,4,1],[0,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,1],[0,1,3,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,1],[0,1,2,2]],[[0,2,2,1],[1,3,0,2],[2,2,4,1],[0,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,3,1],[0,3,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,3,1],[0,2,3,0]],[[0,2,2,1],[1,3,0,2],[2,2,4,1],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,1],[1,0,3,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,1],[1,0,2,2]],[[0,2,2,1],[1,3,0,2],[3,2,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,1],[2,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,1],[1,3,0,1]],[[0,2,2,1],[1,3,0,2],[3,2,3,1],[1,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,2,3,1],[2,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[3,3,3,2],[2,2,0,1],[0,2,1,0]],[[0,3,2,1],[1,3,0,2],[2,2,3,2],[0,0,2,1]],[[0,2,3,1],[1,3,0,2],[2,2,3,2],[0,0,2,1]],[[0,2,2,2],[1,3,0,2],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[1,4,0,2],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[1,3,0,3],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,4,2],[0,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,3],[0,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,2],[0,0,2,2]],[[0,3,2,1],[1,3,0,2],[2,2,3,2],[0,1,1,1]],[[0,2,3,1],[1,3,0,2],[2,2,3,2],[0,1,1,1]],[[0,2,2,2],[1,3,0,2],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[1,4,0,2],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[1,3,0,3],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,2,4,2],[0,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,3],[0,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,2],[0,1,1,2]],[[0,3,2,1],[1,3,0,2],[2,2,3,2],[0,1,2,0]],[[0,2,3,1],[1,3,0,2],[2,2,3,2],[0,1,2,0]],[[0,2,2,2],[1,3,0,2],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[1,4,0,2],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[1,3,0,3],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,4,2],[0,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,3,3],[0,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,3,2],[0,1,3,0]],[[0,3,2,1],[1,3,0,2],[2,2,3,2],[0,2,0,1]],[[0,2,3,1],[1,3,0,2],[2,2,3,2],[0,2,0,1]],[[0,2,2,2],[1,3,0,2],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[1,4,0,2],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[1,3,0,3],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,2,4,2],[0,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,3],[0,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,2],[0,2,0,2]],[[0,3,2,1],[1,3,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,3,1],[1,3,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,2,2],[1,3,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[1,4,0,2],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[1,3,0,3],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,2,4,2],[0,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,2,3,3],[0,2,1,0]],[[1,3,2,0],[2,3,3,2],[2,2,0,1],[0,2,1,0]],[[2,2,2,0],[2,3,3,2],[2,2,0,1],[0,2,1,0]],[[1,2,2,0],[3,3,3,2],[2,2,0,1],[0,2,0,1]],[[1,3,2,0],[2,3,3,2],[2,2,0,1],[0,2,0,1]],[[2,2,2,0],[2,3,3,2],[2,2,0,1],[0,2,0,1]],[[1,2,2,0],[3,3,3,2],[2,2,0,0],[1,2,0,1]],[[1,3,2,0],[2,3,3,2],[2,2,0,0],[1,2,0,1]],[[0,3,2,1],[1,3,0,2],[2,2,3,2],[1,0,1,1]],[[0,2,3,1],[1,3,0,2],[2,2,3,2],[1,0,1,1]],[[0,2,2,2],[1,3,0,2],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[1,4,0,2],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[1,3,0,3],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,2,4,2],[1,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,3],[1,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,2],[1,0,1,2]],[[0,3,2,1],[1,3,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,3,1],[1,3,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,2,2],[1,3,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[1,4,0,2],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[1,3,0,3],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,4,2],[1,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,3,3],[1,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,2,3,2],[1,0,3,0]],[[0,3,2,1],[1,3,0,2],[2,2,3,2],[1,1,0,1]],[[0,2,3,1],[1,3,0,2],[2,2,3,2],[1,1,0,1]],[[0,2,2,2],[1,3,0,2],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,4,0,2],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,3,0,3],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[2,2,4,2],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,3],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[2,2,3,2],[1,1,0,2]],[[0,3,2,1],[1,3,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,3,1],[1,3,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,2,2],[1,3,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[1,4,0,2],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[1,3,0,3],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[1,3,0,2],[2,2,4,2],[1,1,1,0]],[[0,2,2,1],[1,3,0,2],[2,2,3,3],[1,1,1,0]],[[2,2,2,0],[2,3,3,2],[2,2,0,0],[1,2,0,1]],[[1,2,2,0],[3,3,3,2],[2,2,0,0],[1,1,1,1]],[[1,3,2,0],[2,3,3,2],[2,2,0,0],[1,1,1,1]],[[2,2,2,0],[2,3,3,2],[2,2,0,0],[1,1,1,1]],[[1,2,2,0],[3,3,3,2],[2,2,0,0],[0,2,1,1]],[[1,3,2,0],[2,3,3,2],[2,2,0,0],[0,2,1,1]],[[2,2,2,0],[2,3,3,2],[2,2,0,0],[0,2,1,1]],[[1,2,2,0],[3,3,3,2],[2,1,3,1],[1,0,0,0]],[[0,2,2,1],[1,3,0,2],[3,3,0,1],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,0,1],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,0,1],[1,3,2,1]],[[0,2,2,1],[1,3,0,2],[3,3,0,2],[1,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,0,2],[2,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,0,2],[1,3,1,1]],[[0,2,2,1],[1,3,0,2],[3,3,0,2],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,0,2],[2,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,0,2],[1,3,2,0]],[[0,2,2,1],[1,3,0,2],[3,3,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,0],[2,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,0],[1,3,2,1]],[[0,3,2,1],[1,3,0,2],[2,3,1,1],[0,2,2,1]],[[0,2,3,1],[1,3,0,2],[2,3,1,1],[0,2,2,1]],[[0,2,2,2],[1,3,0,2],[2,3,1,1],[0,2,2,1]],[[0,2,2,1],[1,4,0,2],[2,3,1,1],[0,2,2,1]],[[0,2,2,1],[1,3,0,3],[2,3,1,1],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[3,3,1,1],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,4,1,1],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,1],[0,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,1],[0,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,1],[0,2,2,2]],[[0,3,2,1],[1,3,0,2],[2,3,1,1],[1,1,2,1]],[[0,2,3,1],[1,3,0,2],[2,3,1,1],[1,1,2,1]],[[0,2,2,2],[1,3,0,2],[2,3,1,1],[1,1,2,1]],[[0,2,2,1],[1,4,0,2],[2,3,1,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,3],[2,3,1,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[3,3,1,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,4,1,1],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,1],[2,1,2,1]],[[0,2,2,1],[1,3,0,2],[3,3,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,1,1],[2,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,1,1],[1,3,2,0]],[[0,3,2,1],[1,3,0,2],[2,3,1,2],[0,1,2,1]],[[0,2,3,1],[1,3,0,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,2],[1,3,0,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[1,4,0,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[1,3,0,3],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[1,3,0,2],[3,3,1,2],[0,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,4,1,2],[0,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,3],[0,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[0,1,3,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[0,1,2,2]],[[0,3,2,1],[1,3,0,2],[2,3,1,2],[0,2,1,1]],[[0,2,3,1],[1,3,0,2],[2,3,1,2],[0,2,1,1]],[[0,2,2,2],[1,3,0,2],[2,3,1,2],[0,2,1,1]],[[0,2,2,1],[1,4,0,2],[2,3,1,2],[0,2,1,1]],[[0,2,2,1],[1,3,0,3],[2,3,1,2],[0,2,1,1]],[[0,2,2,1],[1,3,0,2],[3,3,1,2],[0,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,4,1,2],[0,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,3],[0,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[0,3,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[0,2,1,2]],[[0,3,2,1],[1,3,0,2],[2,3,1,2],[0,2,2,0]],[[0,2,3,1],[1,3,0,2],[2,3,1,2],[0,2,2,0]],[[0,2,2,2],[1,3,0,2],[2,3,1,2],[0,2,2,0]],[[0,2,2,1],[1,4,0,2],[2,3,1,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,3],[2,3,1,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,2],[3,3,1,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,4,1,2],[0,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,1,3],[0,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[0,3,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[0,2,3,0]],[[0,3,2,1],[1,3,0,2],[2,3,1,2],[1,0,2,1]],[[0,2,3,1],[1,3,0,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,2],[1,3,0,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[1,4,0,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[1,3,0,3],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[3,3,1,2],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,4,1,2],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,3],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[2,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[1,0,3,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[1,0,2,2]],[[0,3,2,1],[1,3,0,2],[2,3,1,2],[1,1,1,1]],[[0,2,3,1],[1,3,0,2],[2,3,1,2],[1,1,1,1]],[[0,2,2,2],[1,3,0,2],[2,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,4,0,2],[2,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,3],[2,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[3,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,4,1,2],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,3],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[2,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[1,1,1,2]],[[0,3,2,1],[1,3,0,2],[2,3,1,2],[1,1,2,0]],[[0,2,3,1],[1,3,0,2],[2,3,1,2],[1,1,2,0]],[[0,2,2,2],[1,3,0,2],[2,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,4,0,2],[2,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,3],[2,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[3,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,4,1,2],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,1,3],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,1,2],[2,1,2,0]],[[1,2,3,0],[2,3,3,2],[2,1,3,1],[1,0,0,0]],[[1,3,2,0],[2,3,3,2],[2,1,3,1],[1,0,0,0]],[[2,2,2,0],[2,3,3,2],[2,1,3,1],[1,0,0,0]],[[0,3,2,1],[1,3,0,2],[2,3,2,0],[0,2,2,1]],[[0,2,3,1],[1,3,0,2],[2,3,2,0],[0,2,2,1]],[[0,2,2,2],[1,3,0,2],[2,3,2,0],[0,2,2,1]],[[0,2,2,1],[1,4,0,2],[2,3,2,0],[0,2,2,1]],[[0,2,2,1],[1,3,0,3],[2,3,2,0],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[3,3,2,0],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,4,2,0],[0,2,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,0],[0,3,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,0],[0,2,3,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,0],[0,2,2,2]],[[0,3,2,1],[1,3,0,2],[2,3,2,0],[1,1,2,1]],[[0,2,3,1],[1,3,0,2],[2,3,2,0],[1,1,2,1]],[[0,2,2,2],[1,3,0,2],[2,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,4,0,2],[2,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,3,0,3],[2,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[3,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,4,2,0],[1,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,0],[2,1,2,1]],[[0,3,2,1],[1,3,0,2],[2,3,2,1],[0,2,2,0]],[[0,2,3,1],[1,3,0,2],[2,3,2,1],[0,2,2,0]],[[0,2,2,2],[1,3,0,2],[2,3,2,1],[0,2,2,0]],[[0,2,2,1],[1,4,0,2],[2,3,2,1],[0,2,2,0]],[[0,2,2,1],[1,3,0,3],[2,3,2,1],[0,2,2,0]],[[0,2,2,1],[1,3,0,2],[3,3,2,1],[0,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,4,2,1],[0,2,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,2,1],[0,3,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,2,1],[0,2,3,0]],[[0,3,2,1],[1,3,0,2],[2,3,2,1],[1,1,2,0]],[[0,2,3,1],[1,3,0,2],[2,3,2,1],[1,1,2,0]],[[0,2,2,2],[1,3,0,2],[2,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,4,0,2],[2,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,3,0,3],[2,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[3,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,4,2,1],[1,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,2,1],[2,1,2,0]],[[0,3,2,1],[1,3,0,2],[2,3,2,2],[0,1,1,1]],[[0,2,3,1],[1,3,0,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,2],[1,3,0,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,4,0,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,3,0,3],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,3,0,2],[3,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,4,2,2],[0,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,3],[0,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,2],[0,1,1,2]],[[0,3,2,1],[1,3,0,2],[2,3,2,2],[0,1,2,0]],[[0,2,3,1],[1,3,0,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,2],[1,3,0,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,4,0,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,3,0,3],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,3,0,2],[3,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,4,2,2],[0,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,2,3],[0,1,2,0]],[[0,3,2,1],[1,3,0,2],[2,3,2,2],[0,2,0,1]],[[0,2,3,1],[1,3,0,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,2],[1,3,0,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,4,0,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,3,0,3],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,3,0,2],[3,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,4,2,2],[0,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,3],[0,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,2],[0,3,0,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,2],[0,2,0,2]],[[0,3,2,1],[1,3,0,2],[2,3,2,2],[0,2,1,0]],[[0,2,3,1],[1,3,0,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,2],[1,3,0,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,4,0,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,3,0,3],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,3,0,2],[3,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,4,2,2],[0,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,3,2,3],[0,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,3,2,2],[0,3,1,0]],[[0,3,2,1],[1,3,0,2],[2,3,2,2],[1,0,1,1]],[[0,2,3,1],[1,3,0,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,2],[1,3,0,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,4,0,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,3,0,3],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,3,0,2],[3,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,4,2,2],[1,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,3],[1,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,2],[2,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,2],[1,0,1,2]],[[0,3,2,1],[1,3,0,2],[2,3,2,2],[1,0,2,0]],[[0,2,3,1],[1,3,0,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,2],[1,3,0,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,4,0,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,3,0,3],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,3,0,2],[3,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,4,2,2],[1,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,2,3],[1,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,2,2],[2,0,2,0]],[[0,3,2,1],[1,3,0,2],[2,3,2,2],[1,1,0,1]],[[0,2,3,1],[1,3,0,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,2],[1,3,0,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,4,0,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,3,0,3],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[3,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[2,4,2,2],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,3],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,2],[2,1,0,1]],[[0,2,2,1],[1,3,0,2],[2,3,2,2],[1,1,0,2]],[[0,3,2,1],[1,3,0,2],[2,3,2,2],[1,1,1,0]],[[0,2,3,1],[1,3,0,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,2],[1,3,0,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,4,0,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,3,0,3],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,3,0,2],[3,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,3,0,2],[2,4,2,2],[1,1,1,0]],[[0,2,2,1],[1,3,0,2],[2,3,2,3],[1,1,1,0]],[[0,2,2,1],[1,3,0,2],[2,3,2,2],[2,1,1,0]],[[0,3,2,1],[1,3,0,2],[2,3,2,2],[1,2,0,0]],[[0,2,3,1],[1,3,0,2],[2,3,2,2],[1,2,0,0]],[[0,2,2,2],[1,3,0,2],[2,3,2,2],[1,2,0,0]],[[0,2,2,1],[1,4,0,2],[2,3,2,2],[1,2,0,0]],[[0,2,2,1],[1,3,0,3],[2,3,2,2],[1,2,0,0]],[[0,2,2,1],[1,3,0,2],[3,3,2,2],[1,2,0,0]],[[0,2,2,1],[1,3,0,2],[2,4,2,2],[1,2,0,0]],[[0,2,2,1],[1,3,0,2],[2,3,2,2],[2,2,0,0]],[[1,2,2,0],[3,3,3,2],[2,1,2,1],[1,1,0,0]],[[1,2,3,0],[2,3,3,2],[2,1,2,1],[1,1,0,0]],[[1,3,2,0],[2,3,3,2],[2,1,2,1],[1,1,0,0]],[[2,2,2,0],[2,3,3,2],[2,1,2,1],[1,1,0,0]],[[0,3,2,1],[1,3,0,2],[2,3,3,0],[0,1,2,1]],[[0,2,3,1],[1,3,0,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,2],[1,3,0,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,4,0,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,3,0,3],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,3,0,2],[3,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,4,3,0],[0,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,4,0],[0,1,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,0],[0,1,3,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,0],[0,1,2,2]],[[0,3,2,1],[1,3,0,2],[2,3,3,0],[0,2,1,1]],[[0,2,3,1],[1,3,0,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,2],[1,3,0,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,4,0,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,3,0,3],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,3,0,2],[3,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,4,3,0],[0,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,4,0],[0,2,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,0],[0,3,1,1]],[[0,3,2,1],[1,3,0,2],[2,3,3,0],[1,0,2,1]],[[0,2,3,1],[1,3,0,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,2],[1,3,0,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,4,0,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,3,0,3],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[3,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,4,3,0],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,4,0],[1,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,0],[2,0,2,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,0],[1,0,3,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,0],[1,0,2,2]],[[0,3,2,1],[1,3,0,2],[2,3,3,0],[1,1,1,1]],[[0,2,3,1],[1,3,0,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,2],[1,3,0,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,4,0,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,3,0,3],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[3,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,4,3,0],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,4,0],[1,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,0],[2,1,1,1]],[[0,3,2,1],[1,3,0,2],[2,3,3,0],[1,2,0,1]],[[0,2,3,1],[1,3,0,2],[2,3,3,0],[1,2,0,1]],[[0,2,2,2],[1,3,0,2],[2,3,3,0],[1,2,0,1]],[[0,2,2,1],[1,4,0,2],[2,3,3,0],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[3,3,3,0],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,4,3,0],[1,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,0],[2,2,0,1]],[[0,3,2,1],[1,3,0,2],[2,3,3,1],[0,1,1,1]],[[0,2,3,1],[1,3,0,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,2],[1,3,0,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,4,0,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,3,0,3],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,3,0,2],[3,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,4,3,1],[0,1,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,4,1],[0,1,1,1]],[[0,3,2,1],[1,3,0,2],[2,3,3,1],[0,1,2,0]],[[0,2,3,1],[1,3,0,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,2],[1,3,0,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,4,0,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,3,0,3],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,3,0,2],[3,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,4,3,1],[0,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,4,1],[0,1,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,3,1],[0,1,3,0]],[[0,3,2,1],[1,3,0,2],[2,3,3,1],[0,2,0,1]],[[0,2,3,1],[1,3,0,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,2],[1,3,0,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,4,0,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,3,0,3],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,3,0,2],[3,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,4,3,1],[0,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,3,4,1],[0,2,0,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,1],[0,3,0,1]],[[0,3,2,1],[1,3,0,2],[2,3,3,1],[0,2,1,0]],[[0,2,3,1],[1,3,0,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,2],[1,3,0,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,4,0,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,3,0,3],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,3,0,2],[3,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,4,3,1],[0,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,3,4,1],[0,2,1,0]],[[0,2,2,1],[1,3,0,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[3,3,3,2],[2,1,2,1],[0,2,0,0]],[[1,2,3,0],[2,3,3,2],[2,1,2,1],[0,2,0,0]],[[1,3,2,0],[2,3,3,2],[2,1,2,1],[0,2,0,0]],[[2,2,2,0],[2,3,3,2],[2,1,2,1],[0,2,0,0]],[[0,3,2,1],[1,3,0,2],[2,3,3,1],[1,0,1,1]],[[0,2,3,1],[1,3,0,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,2],[1,3,0,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,4,0,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,3,0,3],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,3,0,2],[3,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,4,3,1],[1,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,4,1],[1,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,1],[2,0,1,1]],[[0,3,2,1],[1,3,0,2],[2,3,3,1],[1,0,2,0]],[[0,2,3,1],[1,3,0,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,2],[1,3,0,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,4,0,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,3,0,3],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,3,0,2],[3,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,4,3,1],[1,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,4,1],[1,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,3,1],[2,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,3,1],[1,0,3,0]],[[0,3,2,1],[1,3,0,2],[2,3,3,1],[1,1,0,1]],[[0,2,3,1],[1,3,0,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,2],[1,3,0,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,4,0,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,3,0,3],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[3,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[2,4,3,1],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[2,3,4,1],[1,1,0,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,1],[2,1,0,1]],[[0,3,2,1],[1,3,0,2],[2,3,3,1],[1,1,1,0]],[[0,2,3,1],[1,3,0,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,2],[1,3,0,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,4,0,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,3,0,3],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,3,0,2],[3,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,3,0,2],[2,4,3,1],[1,1,1,0]],[[0,2,2,1],[1,3,0,2],[2,3,4,1],[1,1,1,0]],[[0,2,2,1],[1,3,0,2],[2,3,3,1],[2,1,1,0]],[[0,3,2,1],[1,3,0,2],[2,3,3,1],[1,2,0,0]],[[0,2,3,1],[1,3,0,2],[2,3,3,1],[1,2,0,0]],[[0,2,2,2],[1,3,0,2],[2,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,4,0,2],[2,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,3,0,3],[2,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,3,0,2],[3,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,3,0,2],[2,4,3,1],[1,2,0,0]],[[0,2,2,1],[1,3,0,2],[2,3,3,1],[2,2,0,0]],[[0,3,2,1],[1,3,0,2],[2,3,3,2],[0,0,1,1]],[[0,2,3,1],[1,3,0,2],[2,3,3,2],[0,0,1,1]],[[0,2,2,2],[1,3,0,2],[2,3,3,2],[0,0,1,1]],[[0,2,2,1],[1,4,0,2],[2,3,3,2],[0,0,1,1]],[[0,2,2,1],[1,3,0,3],[2,3,3,2],[0,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,4,2],[0,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,3],[0,0,1,1]],[[0,2,2,1],[1,3,0,2],[2,3,3,2],[0,0,1,2]],[[0,3,2,1],[1,3,0,2],[2,3,3,2],[0,0,2,0]],[[0,2,3,1],[1,3,0,2],[2,3,3,2],[0,0,2,0]],[[0,2,2,2],[1,3,0,2],[2,3,3,2],[0,0,2,0]],[[0,2,2,1],[1,4,0,2],[2,3,3,2],[0,0,2,0]],[[0,2,2,1],[1,3,0,3],[2,3,3,2],[0,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,4,2],[0,0,2,0]],[[0,2,2,1],[1,3,0,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,0],[3,3,3,2],[2,1,1,1],[1,2,0,0]],[[1,2,3,0],[2,3,3,2],[2,1,1,1],[1,2,0,0]],[[1,3,2,0],[2,3,3,2],[2,1,1,1],[1,2,0,0]],[[2,2,2,0],[2,3,3,2],[2,1,1,1],[1,2,0,0]],[[1,2,2,0],[3,3,3,2],[2,1,1,1],[1,1,1,0]],[[1,2,3,0],[2,3,3,2],[2,1,1,1],[1,1,1,0]],[[1,3,2,0],[2,3,3,2],[2,1,1,1],[1,1,1,0]],[[2,2,2,0],[2,3,3,2],[2,1,1,1],[1,1,1,0]],[[1,2,2,0],[3,3,3,2],[2,1,1,1],[1,1,0,1]],[[1,2,3,0],[2,3,3,2],[2,1,1,1],[1,1,0,1]],[[1,3,2,0],[2,3,3,2],[2,1,1,1],[1,1,0,1]],[[2,2,2,0],[2,3,3,2],[2,1,1,1],[1,1,0,1]],[[1,2,2,0],[3,3,3,2],[2,1,1,1],[1,0,2,0]],[[1,2,3,0],[2,3,3,2],[2,1,1,1],[1,0,2,0]],[[1,3,2,0],[2,3,3,2],[2,1,1,1],[1,0,2,0]],[[2,2,2,0],[2,3,3,2],[2,1,1,1],[1,0,2,0]],[[1,2,2,0],[3,3,3,2],[2,1,1,1],[1,0,1,1]],[[1,2,3,0],[2,3,3,2],[2,1,1,1],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[2,1,1,1],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[2,1,1,1],[1,0,1,1]],[[1,2,2,0],[3,3,3,2],[2,1,1,1],[0,2,1,0]],[[1,2,3,0],[2,3,3,2],[2,1,1,1],[0,2,1,0]],[[1,3,2,0],[2,3,3,2],[2,1,1,1],[0,2,1,0]],[[2,2,2,0],[2,3,3,2],[2,1,1,1],[0,2,1,0]],[[1,2,2,0],[3,3,3,2],[2,1,1,1],[0,2,0,1]],[[1,2,3,0],[2,3,3,2],[2,1,1,1],[0,2,0,1]],[[1,3,2,0],[2,3,3,2],[2,1,1,1],[0,2,0,1]],[[2,2,2,0],[2,3,3,2],[2,1,1,1],[0,2,0,1]],[[1,2,2,0],[3,3,3,2],[2,1,1,1],[0,1,2,0]],[[1,2,3,0],[2,3,3,2],[2,1,1,1],[0,1,2,0]],[[1,3,2,0],[2,3,3,2],[2,1,1,1],[0,1,2,0]],[[2,2,2,0],[2,3,3,2],[2,1,1,1],[0,1,2,0]],[[1,2,2,0],[3,3,3,2],[2,1,1,1],[0,1,1,1]],[[1,2,3,0],[2,3,3,2],[2,1,1,1],[0,1,1,1]],[[1,3,2,0],[2,3,3,2],[2,1,1,1],[0,1,1,1]],[[2,2,2,0],[2,3,3,2],[2,1,1,1],[0,1,1,1]],[[1,2,2,0],[3,3,3,2],[2,1,1,0],[1,2,0,1]],[[1,3,2,0],[2,3,3,2],[2,1,1,0],[1,2,0,1]],[[2,2,2,0],[2,3,3,2],[2,1,1,0],[1,2,0,1]],[[1,2,2,0],[3,3,3,2],[2,1,1,0],[1,1,1,1]],[[1,2,3,0],[2,3,3,2],[2,1,1,0],[1,1,1,1]],[[1,3,2,0],[2,3,3,2],[2,1,1,0],[1,1,1,1]],[[2,2,2,0],[2,3,3,2],[2,1,1,0],[1,1,1,1]],[[1,2,2,0],[3,3,3,2],[2,1,1,0],[1,0,2,1]],[[1,2,3,0],[2,3,3,2],[2,1,1,0],[1,0,2,1]],[[1,3,2,0],[2,3,3,2],[2,1,1,0],[1,0,2,1]],[[2,2,2,0],[2,3,3,2],[2,1,1,0],[1,0,2,1]],[[1,2,2,0],[3,3,3,2],[2,1,1,0],[0,2,1,1]],[[1,2,3,0],[2,3,3,2],[2,1,1,0],[0,2,1,1]],[[1,3,2,0],[2,3,3,2],[2,1,1,0],[0,2,1,1]],[[2,2,2,0],[2,3,3,2],[2,1,1,0],[0,2,1,1]],[[1,2,2,0],[3,3,3,2],[2,1,1,0],[0,1,2,1]],[[1,2,3,0],[2,3,3,2],[2,1,1,0],[0,1,2,1]],[[1,3,2,0],[2,3,3,2],[2,1,1,0],[0,1,2,1]],[[2,2,2,0],[2,3,3,2],[2,1,1,0],[0,1,2,1]],[[1,2,2,0],[3,3,3,2],[2,1,0,2],[1,2,0,0]],[[1,2,3,0],[2,3,3,2],[2,1,0,2],[1,2,0,0]],[[1,3,2,0],[2,3,3,2],[2,1,0,2],[1,2,0,0]],[[2,2,2,0],[2,3,3,2],[2,1,0,2],[1,2,0,0]],[[1,2,2,0],[3,3,3,2],[2,1,0,2],[1,1,1,0]],[[1,2,3,0],[2,3,3,2],[2,1,0,2],[1,1,1,0]],[[1,3,2,0],[2,3,3,2],[2,1,0,2],[1,1,1,0]],[[2,2,2,0],[2,3,3,2],[2,1,0,2],[1,1,1,0]],[[1,2,2,0],[3,3,3,2],[2,1,0,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,0],[0,3,2,3],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[0,3,2,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[0,3,2,2],[1,2,3,1]],[[0,2,2,1],[1,3,1,0],[0,3,2,2],[1,2,2,2]],[[0,2,2,1],[1,3,1,0],[0,3,4,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[0,3,3,1],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[0,3,3,1],[1,2,3,1]],[[0,2,2,1],[1,3,1,0],[0,3,3,1],[1,2,2,2]],[[0,2,2,1],[1,3,1,0],[0,3,4,2],[1,2,1,1]],[[0,2,2,1],[1,3,1,0],[0,3,3,3],[1,2,1,1]],[[0,2,2,1],[1,3,1,0],[0,3,3,2],[1,2,1,2]],[[0,2,2,1],[1,3,1,0],[0,3,4,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,0],[0,3,3,3],[1,2,2,0]],[[0,2,2,1],[1,3,1,0],[0,3,3,2],[1,3,2,0]],[[0,2,2,1],[1,3,1,0],[0,3,3,2],[1,2,3,0]],[[0,2,2,1],[1,3,1,0],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,2,2,2],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[1,3,1,0],[1,2,2,2],[1,2,2,2]],[[0,2,2,1],[1,3,1,0],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,2,3,1],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[1,3,1,0],[1,2,3,1],[1,2,2,2]],[[0,2,2,1],[1,3,1,0],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[1,3,1,0],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[1,3,1,0],[1,2,3,2],[1,2,1,2]],[[0,2,2,1],[1,3,1,0],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,0],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[1,3,1,0],[1,2,3,2],[2,2,2,0]],[[0,2,2,1],[1,3,1,0],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[1,3,1,0],[1,2,3,2],[1,2,3,0]],[[0,3,2,1],[1,3,1,0],[1,3,1,2],[1,2,2,1]],[[0,2,3,1],[1,3,1,0],[1,3,1,2],[1,2,2,1]],[[0,2,2,2],[1,3,1,0],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,4,1,0],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,4,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,1,3],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,1,2],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,1,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,1,2],[1,2,3,1]],[[0,2,2,1],[1,3,1,0],[1,3,1,2],[1,2,2,2]],[[0,3,2,1],[1,3,1,0],[1,3,2,1],[1,2,2,1]],[[0,2,3,1],[1,3,1,0],[1,3,2,1],[1,2,2,1]],[[0,2,2,2],[1,3,1,0],[1,3,2,1],[1,2,2,1]],[[0,2,2,1],[1,4,1,0],[1,3,2,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,4,2,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,2,1],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,2,1],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,2,1],[1,2,3,1]],[[0,2,2,1],[1,3,1,0],[1,3,2,1],[1,2,2,2]],[[0,2,2,1],[1,3,1,0],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[1,3,1,0],[1,3,2,2],[1,1,2,2]],[[0,3,2,1],[1,3,1,0],[1,3,2,2],[1,2,2,0]],[[0,2,3,1],[1,3,1,0],[1,3,2,2],[1,2,2,0]],[[0,2,2,2],[1,3,1,0],[1,3,2,2],[1,2,2,0]],[[0,2,2,1],[1,4,1,0],[1,3,2,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,0],[1,4,2,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,0],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[1,3,1,0],[1,3,2,2],[1,3,2,0]],[[0,2,2,1],[1,3,1,0],[1,3,2,2],[1,2,3,0]],[[0,3,2,1],[1,3,1,0],[1,3,3,0],[1,2,2,1]],[[0,2,3,1],[1,3,1,0],[1,3,3,0],[1,2,2,1]],[[0,2,2,1],[1,4,1,0],[1,3,3,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,4,3,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,0],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,0],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,0],[1,2,3,1]],[[0,3,2,1],[1,3,1,0],[1,3,3,1],[1,1,2,1]],[[0,2,3,1],[1,3,1,0],[1,3,3,1],[1,1,2,1]],[[0,2,2,2],[1,3,1,0],[1,3,3,1],[1,1,2,1]],[[0,2,2,1],[1,4,1,0],[1,3,3,1],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[1,4,3,1],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,1],[1,1,2,2]],[[0,3,2,1],[1,3,1,0],[1,3,3,1],[1,2,1,1]],[[0,2,3,1],[1,3,1,0],[1,3,3,1],[1,2,1,1]],[[0,2,2,2],[1,3,1,0],[1,3,3,1],[1,2,1,1]],[[0,2,2,1],[1,4,1,0],[1,3,3,1],[1,2,1,1]],[[0,2,2,1],[1,3,1,0],[1,4,3,1],[1,2,1,1]],[[0,2,2,1],[1,3,1,0],[1,3,4,1],[1,2,1,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,1],[2,2,1,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,1],[1,3,1,1]],[[0,2,2,1],[1,3,1,0],[1,3,4,2],[1,0,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,3],[1,0,2,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,2],[1,0,2,2]],[[0,3,2,1],[1,3,1,0],[1,3,3,2],[1,1,1,1]],[[0,2,3,1],[1,3,1,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,2],[1,3,1,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,4,1,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,0],[1,4,3,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,0],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,2],[1,1,1,2]],[[0,3,2,1],[1,3,1,0],[1,3,3,2],[1,1,2,0]],[[0,2,3,1],[1,3,1,0],[1,3,3,2],[1,1,2,0]],[[0,2,2,2],[1,3,1,0],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,4,1,0],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,0],[1,4,3,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,0],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,0],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[1,3,1,0],[1,3,3,2],[1,1,3,0]],[[0,3,2,1],[1,3,1,0],[1,3,3,2],[1,2,0,1]],[[0,2,3,1],[1,3,1,0],[1,3,3,2],[1,2,0,1]],[[0,2,2,2],[1,3,1,0],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,4,1,0],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[1,3,1,0],[1,4,3,2],[1,2,0,1]],[[0,2,2,1],[1,3,1,0],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,2],[2,2,0,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,2],[1,3,0,1]],[[0,2,2,1],[1,3,1,0],[1,3,3,2],[1,2,0,2]],[[0,3,2,1],[1,3,1,0],[1,3,3,2],[1,2,1,0]],[[0,2,3,1],[1,3,1,0],[1,3,3,2],[1,2,1,0]],[[0,2,2,2],[1,3,1,0],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,4,1,0],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[1,3,1,0],[1,4,3,2],[1,2,1,0]],[[0,2,2,1],[1,3,1,0],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[1,3,1,0],[1,3,3,3],[1,2,1,0]],[[0,2,2,1],[1,3,1,0],[1,3,3,2],[2,2,1,0]],[[0,2,2,1],[1,3,1,0],[1,3,3,2],[1,3,1,0]],[[1,2,3,0],[2,3,3,2],[2,1,0,2],[1,1,0,1]],[[1,3,2,0],[2,3,3,2],[2,1,0,2],[1,1,0,1]],[[2,2,2,0],[2,3,3,2],[2,1,0,2],[1,1,0,1]],[[1,2,2,0],[3,3,3,2],[2,1,0,2],[1,0,2,0]],[[1,2,3,0],[2,3,3,2],[2,1,0,2],[1,0,2,0]],[[1,3,2,0],[2,3,3,2],[2,1,0,2],[1,0,2,0]],[[2,2,2,0],[2,3,3,2],[2,1,0,2],[1,0,2,0]],[[0,2,2,1],[1,3,1,0],[3,1,2,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,1,2,3],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,1,2,2],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,1,2,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[2,1,2,2],[1,2,3,1]],[[0,2,2,1],[1,3,1,0],[2,1,2,2],[1,2,2,2]],[[0,2,2,1],[1,3,1,0],[3,1,3,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,1,4,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,1,3,1],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[2,1,3,1],[1,2,3,1]],[[0,2,2,1],[1,3,1,0],[2,1,3,1],[1,2,2,2]],[[0,2,2,1],[1,3,1,0],[2,1,4,2],[1,2,1,1]],[[0,2,2,1],[1,3,1,0],[2,1,3,3],[1,2,1,1]],[[0,2,2,1],[1,3,1,0],[2,1,3,2],[1,2,1,2]],[[0,2,2,1],[1,3,1,0],[3,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,1,4,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,1,3,3],[1,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,1,3,2],[2,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,1,3,2],[1,3,2,0]],[[0,2,2,1],[1,3,1,0],[2,1,3,2],[1,2,3,0]],[[0,2,2,1],[1,3,1,0],[3,2,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[1,3,1,0],[2,2,1,2],[1,2,2,2]],[[0,2,2,1],[1,3,1,0],[3,2,2,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,2,1],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,2,1],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,2,1],[1,2,3,1]],[[0,2,2,1],[1,3,1,0],[2,2,2,1],[1,2,2,2]],[[0,2,2,1],[1,3,1,0],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,2,2],[0,3,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[1,3,1,0],[2,2,2,2],[0,2,2,2]],[[0,2,2,1],[1,3,1,0],[3,2,2,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,2,2,2],[2,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,2,2,2],[1,3,2,0]],[[0,2,2,1],[1,3,1,0],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[1,3,1,0],[3,2,3,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,0],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,0],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,0],[1,2,3,1]],[[0,2,2,1],[1,3,1,0],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,1],[0,3,2,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,1],[0,2,2,2]],[[0,2,2,1],[1,3,1,0],[3,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,1],[2,2,1,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,1],[1,3,1,1]],[[0,2,2,1],[1,3,1,0],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,2],[0,2,1,2]],[[0,2,2,1],[1,3,1,0],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,2,3,2],[0,3,2,0]],[[0,2,2,1],[1,3,1,0],[2,2,3,2],[0,2,3,0]],[[0,2,2,1],[1,3,1,0],[3,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,2],[2,2,0,1]],[[0,2,2,1],[1,3,1,0],[2,2,3,2],[1,3,0,1]],[[0,2,2,1],[1,3,1,0],[3,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,3,1,0],[2,2,3,2],[2,2,1,0]],[[0,2,2,1],[1,3,1,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[3,3,3,2],[2,1,0,2],[1,0,1,1]],[[1,2,3,0],[2,3,3,2],[2,1,0,2],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[2,1,0,2],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[2,1,0,2],[1,0,1,1]],[[0,2,2,1],[1,3,1,0],[3,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,0,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,0],[3,3,1,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,1,1],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,1,1],[1,3,2,1]],[[0,3,2,1],[1,3,1,0],[2,3,1,2],[0,2,2,1]],[[0,2,3,1],[1,3,1,0],[2,3,1,2],[0,2,2,1]],[[0,2,2,2],[1,3,1,0],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,4,1,0],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[3,3,1,2],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,4,1,2],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,1,3],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,1,2],[0,3,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,1,2],[0,2,3,1]],[[0,2,2,1],[1,3,1,0],[2,3,1,2],[0,2,2,2]],[[0,3,2,1],[1,3,1,0],[2,3,1,2],[1,1,2,1]],[[0,2,3,1],[1,3,1,0],[2,3,1,2],[1,1,2,1]],[[0,2,2,2],[1,3,1,0],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,4,1,0],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[3,3,1,2],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[2,4,1,2],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,1,2],[2,1,2,1]],[[0,2,2,1],[1,3,1,0],[3,3,1,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,1,2],[2,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,1,2],[1,3,2,0]],[[0,2,2,1],[1,3,1,0],[3,3,2,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,2,0],[2,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,2,0],[1,3,2,1]],[[0,3,2,1],[1,3,1,0],[2,3,2,1],[0,2,2,1]],[[0,2,3,1],[1,3,1,0],[2,3,2,1],[0,2,2,1]],[[0,2,2,2],[1,3,1,0],[2,3,2,1],[0,2,2,1]],[[0,2,2,1],[1,4,1,0],[2,3,2,1],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,4,2,1],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,2,1],[0,3,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,2,1],[0,2,3,1]],[[0,2,2,1],[1,3,1,0],[2,3,2,1],[0,2,2,2]],[[0,3,2,1],[1,3,1,0],[2,3,2,1],[1,1,2,1]],[[0,2,3,1],[1,3,1,0],[2,3,2,1],[1,1,2,1]],[[0,2,2,2],[1,3,1,0],[2,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,4,1,0],[2,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[3,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,2,1],[2,1,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[1,3,1,0],[2,3,2,2],[0,1,2,2]],[[0,3,2,1],[1,3,1,0],[2,3,2,2],[0,2,2,0]],[[0,2,3,1],[1,3,1,0],[2,3,2,2],[0,2,2,0]],[[0,2,2,2],[1,3,1,0],[2,3,2,2],[0,2,2,0]],[[0,2,2,1],[1,4,1,0],[2,3,2,2],[0,2,2,0]],[[0,2,2,1],[1,3,1,0],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,4,2,2],[0,2,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,2,2],[0,3,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,2,2],[0,2,3,0]],[[0,2,2,1],[1,3,1,0],[2,3,2,3],[1,0,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,2,2],[1,0,3,1]],[[0,2,2,1],[1,3,1,0],[2,3,2,2],[1,0,2,2]],[[0,3,2,1],[1,3,1,0],[2,3,2,2],[1,1,2,0]],[[0,2,3,1],[1,3,1,0],[2,3,2,2],[1,1,2,0]],[[0,2,2,2],[1,3,1,0],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,4,1,0],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,0],[3,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,0],[2,4,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[3,3,3,2],[2,1,0,2],[0,2,1,0]],[[1,2,3,0],[2,3,3,2],[2,1,0,2],[0,2,1,0]],[[1,3,2,0],[2,3,3,2],[2,1,0,2],[0,2,1,0]],[[2,2,2,0],[2,3,3,2],[2,1,0,2],[0,2,1,0]],[[1,2,2,0],[3,3,3,2],[2,1,0,2],[0,2,0,1]],[[1,2,3,0],[2,3,3,2],[2,1,0,2],[0,2,0,1]],[[0,3,2,1],[1,3,1,0],[2,3,3,0],[0,2,2,1]],[[0,2,3,1],[1,3,1,0],[2,3,3,0],[0,2,2,1]],[[0,2,2,1],[1,4,1,0],[2,3,3,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[3,3,3,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,4,3,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,0],[0,3,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,0],[0,2,3,1]],[[0,3,2,1],[1,3,1,0],[2,3,3,0],[1,1,2,1]],[[0,2,3,1],[1,3,1,0],[2,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,4,1,0],[2,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[3,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[2,4,3,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,0],[2,1,2,1]],[[0,3,2,1],[1,3,1,0],[2,3,3,1],[0,1,2,1]],[[0,2,3,1],[1,3,1,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,2],[1,3,1,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[1,4,1,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[1,3,1,0],[3,3,3,1],[0,1,2,1]],[[0,2,2,1],[1,3,1,0],[2,4,3,1],[0,1,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,1],[0,1,2,2]],[[0,3,2,1],[1,3,1,0],[2,3,3,1],[0,2,1,1]],[[0,2,3,1],[1,3,1,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,2],[1,3,1,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[1,4,1,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[1,3,1,0],[3,3,3,1],[0,2,1,1]],[[0,2,2,1],[1,3,1,0],[2,4,3,1],[0,2,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,4,1],[0,2,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,1],[0,3,1,1]],[[0,3,2,1],[1,3,1,0],[2,3,3,1],[1,0,2,1]],[[0,2,3,1],[1,3,1,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,2],[1,3,1,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,4,1,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,3,1,0],[3,3,3,1],[1,0,2,1]],[[0,2,2,1],[1,3,1,0],[2,4,3,1],[1,0,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,4,1],[1,0,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,1],[2,0,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,1],[1,0,3,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,1],[1,0,2,2]],[[0,3,2,1],[1,3,1,0],[2,3,3,1],[1,1,1,1]],[[0,2,3,1],[1,3,1,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,2],[1,3,1,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,4,1,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,1,0],[3,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,1,0],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,4,1],[1,1,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,1],[2,1,1,1]],[[0,3,2,1],[1,3,1,0],[2,3,3,1],[1,2,0,1]],[[0,2,3,1],[1,3,1,0],[2,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,4,1,0],[2,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,0],[3,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,0],[2,4,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,1],[2,2,0,1]],[[1,3,2,0],[2,3,3,2],[2,1,0,2],[0,2,0,1]],[[2,2,2,0],[2,3,3,2],[2,1,0,2],[0,2,0,1]],[[1,2,2,0],[3,3,3,2],[2,1,0,2],[0,1,2,0]],[[1,2,3,0],[2,3,3,2],[2,1,0,2],[0,1,2,0]],[[1,3,2,0],[2,3,3,2],[2,1,0,2],[0,1,2,0]],[[2,2,2,0],[2,3,3,2],[2,1,0,2],[0,1,2,0]],[[1,2,2,0],[3,3,3,2],[2,1,0,2],[0,1,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[0,0,2,2]],[[0,3,2,1],[1,3,1,0],[2,3,3,2],[0,1,1,1]],[[0,2,3,1],[1,3,1,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,2],[1,3,1,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,4,1,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,3,1,0],[3,3,3,2],[0,1,1,1]],[[0,2,2,1],[1,3,1,0],[2,4,3,2],[0,1,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[0,1,1,2]],[[0,3,2,1],[1,3,1,0],[2,3,3,2],[0,1,2,0]],[[0,2,3,1],[1,3,1,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,2],[1,3,1,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,4,1,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,3,1,0],[3,3,3,2],[0,1,2,0]],[[0,2,2,1],[1,3,1,0],[2,4,3,2],[0,1,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[0,1,3,0]],[[0,3,2,1],[1,3,1,0],[2,3,3,2],[0,2,0,1]],[[0,2,3,1],[1,3,1,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,2],[1,3,1,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,4,1,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,3,1,0],[3,3,3,2],[0,2,0,1]],[[0,2,2,1],[1,3,1,0],[2,4,3,2],[0,2,0,1]],[[0,2,2,1],[1,3,1,0],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[0,3,0,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[0,2,0,2]],[[0,3,2,1],[1,3,1,0],[2,3,3,2],[0,2,1,0]],[[0,2,3,1],[1,3,1,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,2],[1,3,1,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,4,1,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,3,1,0],[3,3,3,2],[0,2,1,0]],[[0,2,2,1],[1,3,1,0],[2,4,3,2],[0,2,1,0]],[[0,2,2,1],[1,3,1,0],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[1,3,1,0],[2,3,3,3],[0,2,1,0]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[0,3,1,0]],[[1,2,3,0],[2,3,3,2],[2,1,0,2],[0,1,1,1]],[[1,3,2,0],[2,3,3,2],[2,1,0,2],[0,1,1,1]],[[2,2,2,0],[2,3,3,2],[2,1,0,2],[0,1,1,1]],[[0,3,2,1],[1,3,1,0],[2,3,3,2],[1,0,1,1]],[[0,2,3,1],[1,3,1,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,2],[1,3,1,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,4,1,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,3,1,0],[3,3,3,2],[1,0,1,1]],[[0,2,2,1],[1,3,1,0],[2,4,3,2],[1,0,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[2,0,1,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[1,0,1,2]],[[0,3,2,1],[1,3,1,0],[2,3,3,2],[1,0,2,0]],[[0,2,3,1],[1,3,1,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,2],[1,3,1,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,4,1,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,3,1,0],[3,3,3,2],[1,0,2,0]],[[0,2,2,1],[1,3,1,0],[2,4,3,2],[1,0,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,3,3],[1,0,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[2,0,2,0]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[1,0,3,0]],[[0,3,2,1],[1,3,1,0],[2,3,3,2],[1,1,0,1]],[[0,2,3,1],[1,3,1,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,2],[1,3,1,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,4,1,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,0],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,0],[2,4,3,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,0],[2,3,4,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,3],[1,1,0,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[2,1,0,1]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[1,1,0,2]],[[0,3,2,1],[1,3,1,0],[2,3,3,2],[1,1,1,0]],[[0,2,3,1],[1,3,1,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,2],[1,3,1,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,4,1,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,3,1,0],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[1,3,1,0],[2,4,3,2],[1,1,1,0]],[[0,2,2,1],[1,3,1,0],[2,3,4,2],[1,1,1,0]],[[0,2,2,1],[1,3,1,0],[2,3,3,3],[1,1,1,0]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[3,3,3,2],[2,1,0,1],[1,1,2,0]],[[1,2,3,0],[2,3,3,2],[2,1,0,1],[1,1,2,0]],[[1,3,2,0],[2,3,3,2],[2,1,0,1],[1,1,2,0]],[[2,2,2,0],[2,3,3,2],[2,1,0,1],[1,1,2,0]],[[0,3,2,1],[1,3,1,0],[2,3,3,2],[1,2,0,0]],[[0,2,3,1],[1,3,1,0],[2,3,3,2],[1,2,0,0]],[[0,2,2,2],[1,3,1,0],[2,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,4,1,0],[2,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,3,1,0],[3,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,3,1,0],[2,4,3,2],[1,2,0,0]],[[0,2,2,1],[1,3,1,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[3,3,3,2],[2,1,0,1],[0,2,2,0]],[[1,2,3,0],[2,3,3,2],[2,1,0,1],[0,2,2,0]],[[1,3,2,0],[2,3,3,2],[2,1,0,1],[0,2,2,0]],[[2,2,2,0],[2,3,3,2],[2,1,0,1],[0,2,2,0]],[[1,2,2,0],[3,3,3,2],[2,1,0,0],[1,1,2,1]],[[1,2,3,0],[2,3,3,2],[2,1,0,0],[1,1,2,1]],[[1,3,2,0],[2,3,3,2],[2,1,0,0],[1,1,2,1]],[[2,2,2,0],[2,3,3,2],[2,1,0,0],[1,1,2,1]],[[1,2,2,0],[3,3,3,2],[2,1,0,0],[0,2,2,1]],[[1,2,3,0],[2,3,3,2],[2,1,0,0],[0,2,2,1]],[[1,3,2,0],[2,3,3,2],[2,1,0,0],[0,2,2,1]],[[2,2,2,0],[2,3,3,2],[2,1,0,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,1],[0,3,4,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[0,3,3,0],[1,3,2,1]],[[0,2,2,1],[1,3,1,1],[0,3,3,0],[1,2,3,1]],[[0,2,2,1],[1,3,1,1],[0,3,3,0],[1,2,2,2]],[[0,2,2,1],[1,3,1,1],[0,3,4,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,1],[0,3,3,1],[1,3,2,0]],[[0,2,2,1],[1,3,1,1],[0,3,3,1],[1,2,3,0]],[[1,2,2,0],[3,3,3,2],[2,0,3,2],[1,0,0,0]],[[1,2,3,0],[2,3,3,2],[2,0,3,2],[1,0,0,0]],[[1,3,2,0],[2,3,3,2],[2,0,3,2],[1,0,0,0]],[[0,2,2,1],[1,3,1,1],[1,2,4,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[1,2,3,0],[2,2,2,1]],[[0,2,2,1],[1,3,1,1],[1,2,3,0],[1,3,2,1]],[[0,2,2,1],[1,3,1,1],[1,2,3,0],[1,2,3,1]],[[0,2,2,1],[1,3,1,1],[1,2,3,0],[1,2,2,2]],[[0,2,2,1],[1,3,1,1],[1,2,4,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,1],[1,2,3,1],[2,2,2,0]],[[0,2,2,1],[1,3,1,1],[1,2,3,1],[1,3,2,0]],[[0,2,2,1],[1,3,1,1],[1,2,3,1],[1,2,3,0]],[[2,2,2,0],[2,3,3,2],[2,0,3,2],[1,0,0,0]],[[0,3,2,1],[1,3,1,1],[1,3,0,2],[1,2,2,1]],[[0,2,3,1],[1,3,1,1],[1,3,0,2],[1,2,2,1]],[[0,2,2,2],[1,3,1,1],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,4,1,1],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[1,4,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[1,3,0,3],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[1,3,0,2],[2,2,2,1]],[[0,2,2,1],[1,3,1,1],[1,3,0,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,1],[1,3,0,2],[1,2,3,1]],[[0,2,2,1],[1,3,1,1],[1,3,0,2],[1,2,2,2]],[[0,3,2,1],[1,3,1,1],[1,3,2,0],[1,2,2,1]],[[0,2,3,1],[1,3,1,1],[1,3,2,0],[1,2,2,1]],[[0,2,2,2],[1,3,1,1],[1,3,2,0],[1,2,2,1]],[[0,2,2,1],[1,4,1,1],[1,3,2,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[1,4,2,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[1,3,2,0],[2,2,2,1]],[[0,2,2,1],[1,3,1,1],[1,3,2,0],[1,3,2,1]],[[0,2,2,1],[1,3,1,1],[1,3,2,0],[1,2,3,1]],[[0,2,2,1],[1,3,1,1],[1,3,2,0],[1,2,2,2]],[[0,3,2,1],[1,3,1,1],[1,3,2,1],[1,2,2,0]],[[0,2,3,1],[1,3,1,1],[1,3,2,1],[1,2,2,0]],[[0,2,2,2],[1,3,1,1],[1,3,2,1],[1,2,2,0]],[[0,2,2,1],[1,4,1,1],[1,3,2,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,1],[1,4,2,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,1],[1,3,2,1],[2,2,2,0]],[[0,2,2,1],[1,3,1,1],[1,3,2,1],[1,3,2,0]],[[0,2,2,1],[1,3,1,1],[1,3,2,1],[1,2,3,0]],[[0,3,2,1],[1,3,1,1],[1,3,3,0],[1,1,2,1]],[[0,2,3,1],[1,3,1,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,2],[1,3,1,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,4,1,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,1],[1,4,3,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,1],[1,3,4,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,1],[1,3,3,0],[1,1,3,1]],[[0,2,2,1],[1,3,1,1],[1,3,3,0],[1,1,2,2]],[[0,3,2,1],[1,3,1,1],[1,3,3,0],[1,2,1,1]],[[0,2,3,1],[1,3,1,1],[1,3,3,0],[1,2,1,1]],[[0,2,2,2],[1,3,1,1],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[1,4,1,1],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[1,3,1,1],[1,4,3,0],[1,2,1,1]],[[0,2,2,1],[1,3,1,1],[1,3,4,0],[1,2,1,1]],[[0,2,2,1],[1,3,1,1],[1,3,3,0],[2,2,1,1]],[[0,2,2,1],[1,3,1,1],[1,3,3,0],[1,3,1,1]],[[0,3,2,1],[1,3,1,1],[1,3,3,1],[1,1,1,1]],[[0,2,3,1],[1,3,1,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,2],[1,3,1,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,4,1,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,1,1],[1,4,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,1,1],[1,3,4,1],[1,1,1,1]],[[0,3,2,1],[1,3,1,1],[1,3,3,1],[1,1,2,0]],[[0,2,3,1],[1,3,1,1],[1,3,3,1],[1,1,2,0]],[[0,2,2,2],[1,3,1,1],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[1,4,1,1],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,1],[1,4,3,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,1],[1,3,4,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,1],[1,3,3,1],[1,1,3,0]],[[0,3,2,1],[1,3,1,1],[1,3,3,1],[1,2,0,1]],[[0,2,3,1],[1,3,1,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,2],[1,3,1,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,4,1,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,1],[1,4,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,1],[1,3,4,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,1],[1,3,3,1],[2,2,0,1]],[[0,2,2,1],[1,3,1,1],[1,3,3,1],[1,3,0,1]],[[0,3,2,1],[1,3,1,1],[1,3,3,1],[1,2,1,0]],[[0,2,3,1],[1,3,1,1],[1,3,3,1],[1,2,1,0]],[[0,2,2,2],[1,3,1,1],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[1,4,1,1],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[1,3,1,1],[1,4,3,1],[1,2,1,0]],[[0,2,2,1],[1,3,1,1],[1,3,4,1],[1,2,1,0]],[[0,2,2,1],[1,3,1,1],[1,3,3,1],[2,2,1,0]],[[0,2,2,1],[1,3,1,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[2,3,3,2],[2,0,3,3],[0,0,0,1]],[[1,2,2,0],[2,3,3,3],[2,0,3,2],[0,0,0,1]],[[1,2,2,0],[2,3,4,2],[2,0,3,2],[0,0,0,1]],[[1,2,3,0],[2,3,3,2],[2,0,3,2],[0,0,0,1]],[[1,3,2,0],[2,3,3,2],[2,0,3,2],[0,0,0,1]],[[2,2,2,0],[2,3,3,2],[2,0,3,2],[0,0,0,1]],[[1,2,2,0],[3,3,3,2],[2,0,3,1],[1,1,0,0]],[[1,2,3,0],[2,3,3,2],[2,0,3,1],[1,1,0,0]],[[1,3,2,0],[2,3,3,2],[2,0,3,1],[1,1,0,0]],[[2,2,2,0],[2,3,3,2],[2,0,3,1],[1,1,0,0]],[[1,2,2,0],[3,3,3,2],[2,0,3,1],[1,0,1,0]],[[1,2,3,0],[2,3,3,2],[2,0,3,1],[1,0,1,0]],[[1,3,2,0],[2,3,3,2],[2,0,3,1],[1,0,1,0]],[[2,2,2,0],[2,3,3,2],[2,0,3,1],[1,0,1,0]],[[1,2,2,0],[3,3,3,2],[2,0,3,1],[1,0,0,1]],[[0,2,2,1],[1,3,1,1],[3,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,1,4,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,1,3,0],[2,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,1,3,0],[1,3,2,1]],[[0,2,2,1],[1,3,1,1],[2,1,3,0],[1,2,3,1]],[[0,2,2,1],[1,3,1,1],[2,1,3,0],[1,2,2,2]],[[0,2,2,1],[1,3,1,1],[3,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,1],[2,1,4,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,1],[2,1,3,1],[2,2,2,0]],[[0,2,2,1],[1,3,1,1],[2,1,3,1],[1,3,2,0]],[[0,2,2,1],[1,3,1,1],[2,1,3,1],[1,2,3,0]],[[1,2,3,0],[2,3,3,2],[2,0,3,1],[1,0,0,1]],[[1,3,2,0],[2,3,3,2],[2,0,3,1],[1,0,0,1]],[[2,2,2,0],[2,3,3,2],[2,0,3,1],[1,0,0,1]],[[0,2,2,1],[1,3,1,1],[3,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,2,0,3],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,2,0,2],[2,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,2,0,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,1],[2,2,0,2],[1,2,3,1]],[[0,2,2,1],[1,3,1,1],[2,2,0,2],[1,2,2,2]],[[0,2,2,1],[1,3,1,1],[3,2,2,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,2,2,0],[2,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,2,2,0],[1,3,2,1]],[[0,2,2,1],[1,3,1,1],[2,2,2,0],[1,2,3,1]],[[0,2,2,1],[1,3,1,1],[2,2,2,0],[1,2,2,2]],[[0,2,2,1],[1,3,1,1],[3,2,2,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,1],[2,2,2,1],[2,2,2,0]],[[0,2,2,1],[1,3,1,1],[2,2,2,1],[1,3,2,0]],[[0,2,2,1],[1,3,1,1],[2,2,2,1],[1,2,3,0]],[[0,2,2,1],[1,3,1,1],[2,2,4,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,2,3,0],[0,3,2,1]],[[0,2,2,1],[1,3,1,1],[2,2,3,0],[0,2,3,1]],[[0,2,2,1],[1,3,1,1],[2,2,3,0],[0,2,2,2]],[[0,2,2,1],[1,3,1,1],[3,2,3,0],[1,2,1,1]],[[0,2,2,1],[1,3,1,1],[2,2,3,0],[2,2,1,1]],[[0,2,2,1],[1,3,1,1],[2,2,3,0],[1,3,1,1]],[[0,2,2,1],[1,3,1,1],[2,2,4,1],[0,2,2,0]],[[0,2,2,1],[1,3,1,1],[2,2,3,1],[0,3,2,0]],[[0,2,2,1],[1,3,1,1],[2,2,3,1],[0,2,3,0]],[[0,2,2,1],[1,3,1,1],[3,2,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,1],[2,2,3,1],[2,2,0,1]],[[0,2,2,1],[1,3,1,1],[2,2,3,1],[1,3,0,1]],[[0,2,2,1],[1,3,1,1],[3,2,3,1],[1,2,1,0]],[[0,2,2,1],[1,3,1,1],[2,2,3,1],[2,2,1,0]],[[0,2,2,1],[1,3,1,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[3,3,3,2],[2,0,3,1],[0,2,0,0]],[[1,2,3,0],[2,3,3,2],[2,0,3,1],[0,2,0,0]],[[1,3,2,0],[2,3,3,2],[2,0,3,1],[0,2,0,0]],[[2,2,2,0],[2,3,3,2],[2,0,3,1],[0,2,0,0]],[[1,2,2,0],[2,3,3,3],[2,0,3,1],[0,0,2,0]],[[1,2,2,0],[2,3,4,2],[2,0,3,1],[0,0,2,0]],[[1,2,3,0],[2,3,3,2],[2,0,3,1],[0,0,2,0]],[[1,3,2,0],[2,3,3,2],[2,0,3,1],[0,0,2,0]],[[2,2,2,0],[2,3,3,2],[2,0,3,1],[0,0,2,0]],[[1,2,2,0],[2,3,3,3],[2,0,3,1],[0,0,1,1]],[[0,3,2,1],[1,3,1,1],[2,3,0,2],[0,2,2,1]],[[0,2,3,1],[1,3,1,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,2],[1,3,1,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,4,1,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,3,1,1],[3,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,4,0,2],[0,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,0,3],[0,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,0,2],[0,3,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,0,2],[0,2,3,1]],[[0,2,2,1],[1,3,1,1],[2,3,0,2],[0,2,2,2]],[[0,3,2,1],[1,3,1,1],[2,3,0,2],[1,1,2,1]],[[0,2,3,1],[1,3,1,1],[2,3,0,2],[1,1,2,1]],[[0,2,2,2],[1,3,1,1],[2,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,4,1,1],[2,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,3,1,1],[3,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,3,1,1],[2,4,0,2],[1,1,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,0,2],[2,1,2,1]],[[0,2,2,1],[1,3,1,1],[3,3,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,1,0],[2,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,1,0],[1,3,2,1]],[[0,2,2,1],[1,3,1,1],[3,3,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,1],[2,3,1,1],[2,2,2,0]],[[0,2,2,1],[1,3,1,1],[2,3,1,1],[1,3,2,0]],[[1,2,2,0],[2,3,4,2],[2,0,3,1],[0,0,1,1]],[[1,2,3,0],[2,3,3,2],[2,0,3,1],[0,0,1,1]],[[1,3,2,0],[2,3,3,2],[2,0,3,1],[0,0,1,1]],[[2,2,2,0],[2,3,3,2],[2,0,3,1],[0,0,1,1]],[[0,3,2,1],[1,3,1,1],[2,3,2,0],[0,2,2,1]],[[0,2,3,1],[1,3,1,1],[2,3,2,0],[0,2,2,1]],[[0,2,2,2],[1,3,1,1],[2,3,2,0],[0,2,2,1]],[[0,2,2,1],[1,4,1,1],[2,3,2,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,1],[3,3,2,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,4,2,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,2,0],[0,3,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,2,0],[0,2,3,1]],[[0,2,2,1],[1,3,1,1],[2,3,2,0],[0,2,2,2]],[[0,3,2,1],[1,3,1,1],[2,3,2,0],[1,1,2,1]],[[0,2,3,1],[1,3,1,1],[2,3,2,0],[1,1,2,1]],[[0,2,2,2],[1,3,1,1],[2,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,4,1,1],[2,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,1],[3,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,1],[2,4,2,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,2,0],[2,1,2,1]],[[0,3,2,1],[1,3,1,1],[2,3,2,1],[0,2,2,0]],[[0,2,3,1],[1,3,1,1],[2,3,2,1],[0,2,2,0]],[[0,2,2,2],[1,3,1,1],[2,3,2,1],[0,2,2,0]],[[0,2,2,1],[1,4,1,1],[2,3,2,1],[0,2,2,0]],[[0,2,2,1],[1,3,1,1],[3,3,2,1],[0,2,2,0]],[[0,2,2,1],[1,3,1,1],[2,4,2,1],[0,2,2,0]],[[0,2,2,1],[1,3,1,1],[2,3,2,1],[0,3,2,0]],[[0,2,2,1],[1,3,1,1],[2,3,2,1],[0,2,3,0]],[[0,3,2,1],[1,3,1,1],[2,3,2,1],[1,1,2,0]],[[0,2,3,1],[1,3,1,1],[2,3,2,1],[1,1,2,0]],[[0,2,2,2],[1,3,1,1],[2,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,4,1,1],[2,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,1],[3,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,1],[2,4,2,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[2,3,4,2],[2,0,3,0],[0,0,2,1]],[[1,2,3,0],[2,3,3,2],[2,0,3,0],[0,0,2,1]],[[1,3,2,0],[2,3,3,2],[2,0,3,0],[0,0,2,1]],[[2,2,2,0],[2,3,3,2],[2,0,3,0],[0,0,2,1]],[[0,3,2,1],[1,3,1,1],[2,3,3,0],[0,1,2,1]],[[0,2,3,1],[1,3,1,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,2],[1,3,1,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,4,1,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,3,1,1],[3,3,3,0],[0,1,2,1]],[[0,2,2,1],[1,3,1,1],[2,4,3,0],[0,1,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,4,0],[0,1,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,3,0],[0,1,3,1]],[[0,2,2,1],[1,3,1,1],[2,3,3,0],[0,1,2,2]],[[0,3,2,1],[1,3,1,1],[2,3,3,0],[0,2,1,1]],[[0,2,3,1],[1,3,1,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,2],[1,3,1,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,4,1,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,3,1,1],[3,3,3,0],[0,2,1,1]],[[0,2,2,1],[1,3,1,1],[2,4,3,0],[0,2,1,1]],[[0,2,2,1],[1,3,1,1],[2,3,4,0],[0,2,1,1]],[[0,2,2,1],[1,3,1,1],[2,3,3,0],[0,3,1,1]],[[0,3,2,1],[1,3,1,1],[2,3,3,0],[1,0,2,1]],[[0,2,3,1],[1,3,1,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,2],[1,3,1,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,4,1,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,3,1,1],[3,3,3,0],[1,0,2,1]],[[0,2,2,1],[1,3,1,1],[2,4,3,0],[1,0,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,4,0],[1,0,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,3,0],[2,0,2,1]],[[0,2,2,1],[1,3,1,1],[2,3,3,0],[1,0,3,1]],[[0,2,2,1],[1,3,1,1],[2,3,3,0],[1,0,2,2]],[[0,3,2,1],[1,3,1,1],[2,3,3,0],[1,1,1,1]],[[0,2,3,1],[1,3,1,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,2],[1,3,1,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,4,1,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,3,1,1],[3,3,3,0],[1,1,1,1]],[[0,2,2,1],[1,3,1,1],[2,4,3,0],[1,1,1,1]],[[0,2,2,1],[1,3,1,1],[2,3,4,0],[1,1,1,1]],[[0,2,2,1],[1,3,1,1],[2,3,3,0],[2,1,1,1]],[[0,3,2,1],[1,3,1,1],[2,3,3,0],[1,2,0,1]],[[0,2,3,1],[1,3,1,1],[2,3,3,0],[1,2,0,1]],[[0,2,2,2],[1,3,1,1],[2,3,3,0],[1,2,0,1]],[[0,2,2,1],[1,4,1,1],[2,3,3,0],[1,2,0,1]],[[0,2,2,1],[1,3,1,1],[3,3,3,0],[1,2,0,1]],[[0,2,2,1],[1,3,1,1],[2,4,3,0],[1,2,0,1]],[[0,2,2,1],[1,3,1,1],[2,3,3,0],[2,2,0,1]],[[1,2,2,0],[3,3,3,2],[2,0,2,2],[1,0,0,1]],[[1,2,3,0],[2,3,3,2],[2,0,2,2],[1,0,0,1]],[[1,3,2,0],[2,3,3,2],[2,0,2,2],[1,0,0,1]],[[2,2,2,0],[2,3,3,2],[2,0,2,2],[1,0,0,1]],[[0,3,2,1],[1,3,1,1],[2,3,3,1],[0,1,1,1]],[[0,2,3,1],[1,3,1,1],[2,3,3,1],[0,1,1,1]],[[0,2,2,2],[1,3,1,1],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,4,1,1],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,3,1,1],[3,3,3,1],[0,1,1,1]],[[0,2,2,1],[1,3,1,1],[2,4,3,1],[0,1,1,1]],[[0,2,2,1],[1,3,1,1],[2,3,4,1],[0,1,1,1]],[[0,3,2,1],[1,3,1,1],[2,3,3,1],[0,1,2,0]],[[0,2,3,1],[1,3,1,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,2],[1,3,1,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,4,1,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,3,1,1],[3,3,3,1],[0,1,2,0]],[[0,2,2,1],[1,3,1,1],[2,4,3,1],[0,1,2,0]],[[0,2,2,1],[1,3,1,1],[2,3,4,1],[0,1,2,0]],[[0,2,2,1],[1,3,1,1],[2,3,3,1],[0,1,3,0]],[[0,3,2,1],[1,3,1,1],[2,3,3,1],[0,2,0,1]],[[0,2,3,1],[1,3,1,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,2],[1,3,1,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,4,1,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,3,1,1],[3,3,3,1],[0,2,0,1]],[[0,2,2,1],[1,3,1,1],[2,4,3,1],[0,2,0,1]],[[0,2,2,1],[1,3,1,1],[2,3,4,1],[0,2,0,1]],[[0,2,2,1],[1,3,1,1],[2,3,3,1],[0,3,0,1]],[[0,3,2,1],[1,3,1,1],[2,3,3,1],[0,2,1,0]],[[0,2,3,1],[1,3,1,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,2],[1,3,1,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,4,1,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,3,1,1],[3,3,3,1],[0,2,1,0]],[[0,2,2,1],[1,3,1,1],[2,4,3,1],[0,2,1,0]],[[0,2,2,1],[1,3,1,1],[2,3,4,1],[0,2,1,0]],[[0,2,2,1],[1,3,1,1],[2,3,3,1],[0,3,1,0]],[[0,3,2,1],[1,3,1,1],[2,3,3,1],[1,0,1,1]],[[0,2,3,1],[1,3,1,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,2],[1,3,1,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,4,1,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,3,1,1],[3,3,3,1],[1,0,1,1]],[[0,2,2,1],[1,3,1,1],[2,4,3,1],[1,0,1,1]],[[0,2,2,1],[1,3,1,1],[2,3,4,1],[1,0,1,1]],[[0,2,2,1],[1,3,1,1],[2,3,3,1],[2,0,1,1]],[[0,3,2,1],[1,3,1,1],[2,3,3,1],[1,0,2,0]],[[0,2,3,1],[1,3,1,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,2],[1,3,1,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,4,1,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,3,1,1],[3,3,3,1],[1,0,2,0]],[[0,2,2,1],[1,3,1,1],[2,4,3,1],[1,0,2,0]],[[0,2,2,1],[1,3,1,1],[2,3,4,1],[1,0,2,0]],[[0,2,2,1],[1,3,1,1],[2,3,3,1],[2,0,2,0]],[[0,2,2,1],[1,3,1,1],[2,3,3,1],[1,0,3,0]],[[0,3,2,1],[1,3,1,1],[2,3,3,1],[1,1,0,1]],[[0,2,3,1],[1,3,1,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,2],[1,3,1,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,4,1,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,3,1,1],[3,3,3,1],[1,1,0,1]],[[0,2,2,1],[1,3,1,1],[2,4,3,1],[1,1,0,1]],[[0,2,2,1],[1,3,1,1],[2,3,4,1],[1,1,0,1]],[[0,2,2,1],[1,3,1,1],[2,3,3,1],[2,1,0,1]],[[0,3,2,1],[1,3,1,1],[2,3,3,1],[1,1,1,0]],[[0,2,3,1],[1,3,1,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,2],[1,3,1,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,4,1,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,3,1,1],[3,3,3,1],[1,1,1,0]],[[0,2,2,1],[1,3,1,1],[2,4,3,1],[1,1,1,0]],[[0,2,2,1],[1,3,1,1],[2,3,4,1],[1,1,1,0]],[[0,2,2,1],[1,3,1,1],[2,3,3,1],[2,1,1,0]],[[0,3,2,1],[1,3,1,1],[2,3,3,1],[1,2,0,0]],[[0,2,3,1],[1,3,1,1],[2,3,3,1],[1,2,0,0]],[[0,2,2,2],[1,3,1,1],[2,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,4,1,1],[2,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,3,1,1],[3,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,3,1,1],[2,4,3,1],[1,2,0,0]],[[0,2,2,1],[1,3,1,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[2,3,3,3],[2,0,2,2],[0,0,2,0]],[[1,2,2,0],[2,3,4,2],[2,0,2,2],[0,0,2,0]],[[1,2,3,0],[2,3,3,2],[2,0,2,2],[0,0,2,0]],[[1,3,2,0],[2,3,3,2],[2,0,2,2],[0,0,2,0]],[[2,2,2,0],[2,3,3,2],[2,0,2,2],[0,0,2,0]],[[1,2,2,0],[2,3,3,2],[2,0,2,3],[0,0,1,1]],[[1,2,2,0],[2,3,3,3],[2,0,2,2],[0,0,1,1]],[[1,2,2,0],[2,3,4,2],[2,0,2,2],[0,0,1,1]],[[1,2,3,0],[2,3,3,2],[2,0,2,2],[0,0,1,1]],[[1,3,2,0],[2,3,3,2],[2,0,2,2],[0,0,1,1]],[[2,2,2,0],[2,3,3,2],[2,0,2,2],[0,0,1,1]],[[1,2,2,0],[3,3,3,2],[2,0,2,1],[1,1,1,0]],[[1,2,3,0],[2,3,3,2],[2,0,2,1],[1,1,1,0]],[[1,3,2,0],[2,3,3,2],[2,0,2,1],[1,1,1,0]],[[2,2,2,0],[2,3,3,2],[2,0,2,1],[1,1,1,0]],[[1,2,2,0],[3,3,3,2],[2,0,2,1],[1,1,0,1]],[[1,2,3,0],[2,3,3,2],[2,0,2,1],[1,1,0,1]],[[1,3,2,0],[2,3,3,2],[2,0,2,1],[1,1,0,1]],[[2,2,2,0],[2,3,3,2],[2,0,2,1],[1,1,0,1]],[[1,2,2,0],[3,3,3,2],[2,0,2,1],[1,0,2,0]],[[1,2,3,0],[2,3,3,2],[2,0,2,1],[1,0,2,0]],[[1,3,2,0],[2,3,3,2],[2,0,2,1],[1,0,2,0]],[[2,2,2,0],[2,3,3,2],[2,0,2,1],[1,0,2,0]],[[1,2,2,0],[3,3,3,2],[2,0,2,1],[1,0,1,1]],[[1,2,3,0],[2,3,3,2],[2,0,2,1],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[2,0,2,1],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[2,0,2,1],[1,0,1,1]],[[1,2,2,0],[3,3,3,2],[2,0,2,1],[0,2,1,0]],[[1,2,3,0],[2,3,3,2],[2,0,2,1],[0,2,1,0]],[[1,3,2,0],[2,3,3,2],[2,0,2,1],[0,2,1,0]],[[2,2,2,0],[2,3,3,2],[2,0,2,1],[0,2,1,0]],[[1,2,2,0],[3,3,3,2],[2,0,2,1],[0,2,0,1]],[[1,2,3,0],[2,3,3,2],[2,0,2,1],[0,2,0,1]],[[1,3,2,0],[2,3,3,2],[2,0,2,1],[0,2,0,1]],[[2,2,2,0],[2,3,3,2],[2,0,2,1],[0,2,0,1]],[[1,2,2,0],[3,3,3,2],[2,0,2,1],[0,1,2,0]],[[1,2,3,0],[2,3,3,2],[2,0,2,1],[0,1,2,0]],[[1,3,2,0],[2,3,3,2],[2,0,2,1],[0,1,2,0]],[[2,2,2,0],[2,3,3,2],[2,0,2,1],[0,1,2,0]],[[1,2,2,0],[3,3,3,2],[2,0,2,1],[0,1,1,1]],[[1,2,3,0],[2,3,3,2],[2,0,2,1],[0,1,1,1]],[[1,3,2,0],[2,3,3,2],[2,0,2,1],[0,1,1,1]],[[2,2,2,0],[2,3,3,2],[2,0,2,1],[0,1,1,1]],[[1,2,2,0],[3,3,3,2],[2,0,2,0],[1,1,1,1]],[[1,2,3,0],[2,3,3,2],[2,0,2,0],[1,1,1,1]],[[1,3,2,0],[2,3,3,2],[2,0,2,0],[1,1,1,1]],[[2,2,2,0],[2,3,3,2],[2,0,2,0],[1,1,1,1]],[[1,2,2,0],[3,3,3,2],[2,0,2,0],[1,0,2,1]],[[1,2,3,0],[2,3,3,2],[2,0,2,0],[1,0,2,1]],[[1,3,2,0],[2,3,3,2],[2,0,2,0],[1,0,2,1]],[[2,2,2,0],[2,3,3,2],[2,0,2,0],[1,0,2,1]],[[1,2,2,0],[3,3,3,2],[2,0,2,0],[0,2,1,1]],[[1,2,3,0],[2,3,3,2],[2,0,2,0],[0,2,1,1]],[[1,3,2,0],[2,3,3,2],[2,0,2,0],[0,2,1,1]],[[2,2,2,0],[2,3,3,2],[2,0,2,0],[0,2,1,1]],[[1,2,2,0],[3,3,3,2],[2,0,2,0],[0,1,2,1]],[[1,2,3,0],[2,3,3,2],[2,0,2,0],[0,1,2,1]],[[1,3,2,0],[2,3,3,2],[2,0,2,0],[0,1,2,1]],[[2,2,2,0],[2,3,3,2],[2,0,2,0],[0,1,2,1]],[[1,2,2,0],[3,3,3,2],[2,0,1,2],[1,1,1,0]],[[1,2,3,0],[2,3,3,2],[2,0,1,2],[1,1,1,0]],[[1,3,2,0],[2,3,3,2],[2,0,1,2],[1,1,1,0]],[[2,2,2,0],[2,3,3,2],[2,0,1,2],[1,1,1,0]],[[1,2,2,0],[3,3,3,2],[2,0,1,2],[1,1,0,1]],[[1,2,3,0],[2,3,3,2],[2,0,1,2],[1,1,0,1]],[[1,3,2,0],[2,3,3,2],[2,0,1,2],[1,1,0,1]],[[2,2,2,0],[2,3,3,2],[2,0,1,2],[1,1,0,1]],[[1,2,2,0],[3,3,3,2],[2,0,1,2],[1,0,2,0]],[[1,2,3,0],[2,3,3,2],[2,0,1,2],[1,0,2,0]],[[1,3,2,0],[2,3,3,2],[2,0,1,2],[1,0,2,0]],[[2,2,2,0],[2,3,3,2],[2,0,1,2],[1,0,2,0]],[[1,2,2,0],[3,3,3,2],[2,0,1,2],[1,0,1,1]],[[1,2,3,0],[2,3,3,2],[2,0,1,2],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[2,0,1,2],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[2,0,1,2],[1,0,1,1]],[[1,2,2,0],[3,3,3,2],[2,0,1,2],[0,2,1,0]],[[1,2,3,0],[2,3,3,2],[2,0,1,2],[0,2,1,0]],[[1,3,2,0],[2,3,3,2],[2,0,1,2],[0,2,1,0]],[[2,2,2,0],[2,3,3,2],[2,0,1,2],[0,2,1,0]],[[1,2,2,0],[3,3,3,2],[2,0,1,2],[0,2,0,1]],[[1,2,3,0],[2,3,3,2],[2,0,1,2],[0,2,0,1]],[[1,3,2,0],[2,3,3,2],[2,0,1,2],[0,2,0,1]],[[2,2,2,0],[2,3,3,2],[2,0,1,2],[0,2,0,1]],[[1,2,2,0],[3,3,3,2],[2,0,1,2],[0,1,2,0]],[[1,2,3,0],[2,3,3,2],[2,0,1,2],[0,1,2,0]],[[1,3,2,0],[2,3,3,2],[2,0,1,2],[0,1,2,0]],[[2,2,2,0],[2,3,3,2],[2,0,1,2],[0,1,2,0]],[[1,2,2,0],[3,3,3,2],[2,0,1,2],[0,1,1,1]],[[1,2,3,0],[2,3,3,2],[2,0,1,2],[0,1,1,1]],[[1,3,2,0],[2,3,3,2],[2,0,1,2],[0,1,1,1]],[[2,2,2,0],[2,3,3,2],[2,0,1,2],[0,1,1,1]],[[1,2,2,0],[3,3,3,2],[2,0,1,1],[1,2,1,0]],[[1,2,3,0],[2,3,3,2],[2,0,1,1],[1,2,1,0]],[[1,3,2,0],[2,3,3,2],[2,0,1,1],[1,2,1,0]],[[2,2,2,0],[2,3,3,2],[2,0,1,1],[1,2,1,0]],[[1,2,2,0],[3,3,3,2],[2,0,1,1],[1,2,0,1]],[[1,2,3,0],[2,3,3,2],[2,0,1,1],[1,2,0,1]],[[1,3,2,0],[2,3,3,2],[2,0,1,1],[1,2,0,1]],[[2,2,2,0],[2,3,3,2],[2,0,1,1],[1,2,0,1]],[[1,2,2,0],[3,3,3,2],[2,0,1,0],[1,2,1,1]],[[0,3,2,1],[1,3,1,2],[1,1,1,2],[1,2,2,1]],[[0,2,3,1],[1,3,1,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,2],[1,3,1,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,4,1,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,3],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,1,1,3],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,1,1,2],[2,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,1,1,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,2],[1,1,1,2],[1,2,3,1]],[[0,2,2,1],[1,3,1,2],[1,1,1,2],[1,2,2,2]],[[0,3,2,1],[1,3,1,2],[1,1,2,2],[1,2,1,1]],[[0,2,3,1],[1,3,1,2],[1,1,2,2],[1,2,1,1]],[[0,2,2,2],[1,3,1,2],[1,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,4,1,2],[1,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,3,1,3],[1,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,3,1,2],[1,1,2,3],[1,2,1,1]],[[0,2,2,1],[1,3,1,2],[1,1,2,2],[1,2,1,2]],[[0,3,2,1],[1,3,1,2],[1,1,2,2],[1,2,2,0]],[[0,2,3,1],[1,3,1,2],[1,1,2,2],[1,2,2,0]],[[0,2,2,2],[1,3,1,2],[1,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,4,1,2],[1,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,3],[1,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,2],[1,1,2,3],[1,2,2,0]],[[0,3,2,1],[1,3,1,2],[1,1,3,0],[1,2,2,1]],[[0,2,3,1],[1,3,1,2],[1,1,3,0],[1,2,2,1]],[[0,2,2,2],[1,3,1,2],[1,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,4,1,2],[1,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,3],[1,1,3,0],[1,2,2,1]],[[0,3,2,1],[1,3,1,2],[1,1,3,1],[1,2,1,1]],[[0,2,3,1],[1,3,1,2],[1,1,3,1],[1,2,1,1]],[[0,2,2,2],[1,3,1,2],[1,1,3,1],[1,2,1,1]],[[0,2,2,1],[1,4,1,2],[1,1,3,1],[1,2,1,1]],[[0,2,2,1],[1,3,1,3],[1,1,3,1],[1,2,1,1]],[[0,3,2,1],[1,3,1,2],[1,1,3,1],[1,2,2,0]],[[0,2,3,1],[1,3,1,2],[1,1,3,1],[1,2,2,0]],[[0,2,2,2],[1,3,1,2],[1,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,4,1,2],[1,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,3],[1,1,3,1],[1,2,2,0]],[[1,2,3,0],[2,3,3,2],[2,0,1,0],[1,2,1,1]],[[1,3,2,0],[2,3,3,2],[2,0,1,0],[1,2,1,1]],[[2,2,2,0],[2,3,3,2],[2,0,1,0],[1,2,1,1]],[[0,3,2,1],[1,3,1,2],[1,2,0,2],[1,2,2,1]],[[0,2,3,1],[1,3,1,2],[1,2,0,2],[1,2,2,1]],[[0,2,2,2],[1,3,1,2],[1,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,4,1,2],[1,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,3],[1,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,2,0,3],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,2,0,2],[2,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,2,0,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,2],[1,2,0,2],[1,2,3,1]],[[0,2,2,1],[1,3,1,2],[1,2,0,2],[1,2,2,2]],[[0,3,2,1],[1,3,1,2],[1,2,1,2],[1,1,2,1]],[[0,2,3,1],[1,3,1,2],[1,2,1,2],[1,1,2,1]],[[0,2,2,2],[1,3,1,2],[1,2,1,2],[1,1,2,1]],[[0,2,2,1],[1,4,1,2],[1,2,1,2],[1,1,2,1]],[[0,2,2,1],[1,3,1,3],[1,2,1,2],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[1,2,1,3],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[1,2,1,2],[1,1,3,1]],[[0,2,2,1],[1,3,1,2],[1,2,1,2],[1,1,2,2]],[[0,3,2,1],[1,3,1,2],[1,2,2,2],[1,1,1,1]],[[0,2,3,1],[1,3,1,2],[1,2,2,2],[1,1,1,1]],[[0,2,2,2],[1,3,1,2],[1,2,2,2],[1,1,1,1]],[[0,2,2,1],[1,4,1,2],[1,2,2,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,3],[1,2,2,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[1,2,2,3],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[1,2,2,2],[1,1,1,2]],[[0,3,2,1],[1,3,1,2],[1,2,2,2],[1,1,2,0]],[[0,2,3,1],[1,3,1,2],[1,2,2,2],[1,1,2,0]],[[0,2,2,2],[1,3,1,2],[1,2,2,2],[1,1,2,0]],[[0,2,2,1],[1,4,1,2],[1,2,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,3],[1,2,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,2],[1,2,2,3],[1,1,2,0]],[[0,3,2,1],[1,3,1,2],[1,2,2,2],[1,2,0,1]],[[0,2,3,1],[1,3,1,2],[1,2,2,2],[1,2,0,1]],[[0,2,2,2],[1,3,1,2],[1,2,2,2],[1,2,0,1]],[[0,2,2,1],[1,4,1,2],[1,2,2,2],[1,2,0,1]],[[0,2,2,1],[1,3,1,3],[1,2,2,2],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[1,2,2,3],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[1,2,2,2],[1,2,0,2]],[[0,3,2,1],[1,3,1,2],[1,2,2,2],[1,2,1,0]],[[0,2,3,1],[1,3,1,2],[1,2,2,2],[1,2,1,0]],[[0,2,2,2],[1,3,1,2],[1,2,2,2],[1,2,1,0]],[[0,2,2,1],[1,4,1,2],[1,2,2,2],[1,2,1,0]],[[0,2,2,1],[1,3,1,3],[1,2,2,2],[1,2,1,0]],[[0,2,2,1],[1,3,1,2],[1,2,2,3],[1,2,1,0]],[[1,2,2,0],[3,3,3,2],[2,0,0,2],[1,2,1,0]],[[1,2,3,0],[2,3,3,2],[2,0,0,2],[1,2,1,0]],[[1,3,2,0],[2,3,3,2],[2,0,0,2],[1,2,1,0]],[[2,2,2,0],[2,3,3,2],[2,0,0,2],[1,2,1,0]],[[1,2,2,0],[3,3,3,2],[2,0,0,2],[1,2,0,1]],[[1,2,3,0],[2,3,3,2],[2,0,0,2],[1,2,0,1]],[[1,3,2,0],[2,3,3,2],[2,0,0,2],[1,2,0,1]],[[2,2,2,0],[2,3,3,2],[2,0,0,2],[1,2,0,1]],[[0,3,2,1],[1,3,1,2],[1,2,3,0],[1,1,2,1]],[[0,2,3,1],[1,3,1,2],[1,2,3,0],[1,1,2,1]],[[0,2,2,2],[1,3,1,2],[1,2,3,0],[1,1,2,1]],[[0,2,2,1],[1,4,1,2],[1,2,3,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,3],[1,2,3,0],[1,1,2,1]],[[0,3,2,1],[1,3,1,2],[1,2,3,0],[1,2,1,1]],[[0,2,3,1],[1,3,1,2],[1,2,3,0],[1,2,1,1]],[[0,2,2,2],[1,3,1,2],[1,2,3,0],[1,2,1,1]],[[0,2,2,1],[1,4,1,2],[1,2,3,0],[1,2,1,1]],[[0,2,2,1],[1,3,1,3],[1,2,3,0],[1,2,1,1]],[[0,3,2,1],[1,3,1,2],[1,2,3,1],[1,1,1,1]],[[0,2,3,1],[1,3,1,2],[1,2,3,1],[1,1,1,1]],[[0,2,2,2],[1,3,1,2],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[1,4,1,2],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[1,3,1,3],[1,2,3,1],[1,1,1,1]],[[0,3,2,1],[1,3,1,2],[1,2,3,1],[1,1,2,0]],[[0,2,3,1],[1,3,1,2],[1,2,3,1],[1,1,2,0]],[[0,2,2,2],[1,3,1,2],[1,2,3,1],[1,1,2,0]],[[0,2,2,1],[1,4,1,2],[1,2,3,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,3],[1,2,3,1],[1,1,2,0]],[[0,3,2,1],[1,3,1,2],[1,2,3,1],[1,2,0,1]],[[0,2,3,1],[1,3,1,2],[1,2,3,1],[1,2,0,1]],[[0,2,2,2],[1,3,1,2],[1,2,3,1],[1,2,0,1]],[[0,2,2,1],[1,4,1,2],[1,2,3,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,3],[1,2,3,1],[1,2,0,1]],[[0,3,2,1],[1,3,1,2],[1,2,3,1],[1,2,1,0]],[[0,2,3,1],[1,3,1,2],[1,2,3,1],[1,2,1,0]],[[0,2,2,2],[1,3,1,2],[1,2,3,1],[1,2,1,0]],[[0,2,2,1],[1,4,1,2],[1,2,3,1],[1,2,1,0]],[[0,2,2,1],[1,3,1,3],[1,2,3,1],[1,2,1,0]],[[1,2,2,0],[3,3,3,2],[2,0,0,2],[1,0,2,1]],[[1,2,3,0],[2,3,3,2],[2,0,0,2],[1,0,2,1]],[[1,3,2,0],[2,3,3,2],[2,0,0,2],[1,0,2,1]],[[2,2,2,0],[2,3,3,2],[2,0,0,2],[1,0,2,1]],[[1,2,2,0],[3,3,3,2],[2,0,0,2],[0,1,2,1]],[[1,2,3,0],[2,3,3,2],[2,0,0,2],[0,1,2,1]],[[1,3,2,0],[2,3,3,2],[2,0,0,2],[0,1,2,1]],[[2,2,2,0],[2,3,3,2],[2,0,0,2],[0,1,2,1]],[[1,2,2,0],[3,3,3,2],[2,0,0,1],[1,2,2,0]],[[1,2,3,0],[2,3,3,2],[2,0,0,1],[1,2,2,0]],[[1,3,2,0],[2,3,3,2],[2,0,0,1],[1,2,2,0]],[[2,2,2,0],[2,3,3,2],[2,0,0,1],[1,2,2,0]],[[1,2,2,0],[3,3,3,2],[2,0,0,0],[1,2,2,1]],[[1,2,3,0],[2,3,3,2],[2,0,0,0],[1,2,2,1]],[[1,3,2,0],[2,3,3,2],[2,0,0,0],[1,2,2,1]],[[2,2,2,0],[2,3,3,2],[2,0,0,0],[1,2,2,1]],[[0,3,2,1],[1,3,1,2],[1,3,0,1],[1,2,2,1]],[[0,2,3,1],[1,3,1,2],[1,3,0,1],[1,2,2,1]],[[0,2,2,2],[1,3,1,2],[1,3,0,1],[1,2,2,1]],[[0,2,2,1],[1,4,1,2],[1,3,0,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,3],[1,3,0,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,4,0,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,3,0,1],[2,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,3,0,1],[1,3,2,1]],[[0,2,2,1],[1,3,1,2],[1,3,0,1],[1,2,3,1]],[[0,2,2,1],[1,3,1,2],[1,3,0,1],[1,2,2,2]],[[0,3,2,1],[1,3,1,2],[1,3,0,2],[1,1,2,1]],[[0,2,3,1],[1,3,1,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,2],[1,3,1,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,4,1,2],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,3,1,3],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[1,4,0,2],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[1,3,0,3],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[1,3,0,2],[1,1,3,1]],[[0,2,2,1],[1,3,1,2],[1,3,0,2],[1,1,2,2]],[[0,3,2,1],[1,3,1,2],[1,3,0,2],[1,2,1,1]],[[0,2,3,1],[1,3,1,2],[1,3,0,2],[1,2,1,1]],[[0,2,2,2],[1,3,1,2],[1,3,0,2],[1,2,1,1]],[[0,2,2,1],[1,4,1,2],[1,3,0,2],[1,2,1,1]],[[0,2,2,1],[1,3,1,3],[1,3,0,2],[1,2,1,1]],[[0,2,2,1],[1,3,1,2],[1,4,0,2],[1,2,1,1]],[[0,2,2,1],[1,3,1,2],[1,3,0,3],[1,2,1,1]],[[0,2,2,1],[1,3,1,2],[1,3,0,2],[2,2,1,1]],[[0,2,2,1],[1,3,1,2],[1,3,0,2],[1,3,1,1]],[[0,2,2,1],[1,3,1,2],[1,3,0,2],[1,2,1,2]],[[0,3,2,1],[1,3,1,2],[1,3,0,2],[1,2,2,0]],[[0,2,3,1],[1,3,1,2],[1,3,0,2],[1,2,2,0]],[[0,2,2,2],[1,3,1,2],[1,3,0,2],[1,2,2,0]],[[0,2,2,1],[1,4,1,2],[1,3,0,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,3],[1,3,0,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,2],[1,4,0,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,2],[1,3,0,3],[1,2,2,0]],[[0,2,2,1],[1,3,1,2],[1,3,0,2],[2,2,2,0]],[[0,2,2,1],[1,3,1,2],[1,3,0,2],[1,3,2,0]],[[0,2,2,1],[1,3,1,2],[1,3,0,2],[1,2,3,0]],[[0,3,2,1],[1,3,1,2],[1,3,1,0],[1,2,2,1]],[[0,2,3,1],[1,3,1,2],[1,3,1,0],[1,2,2,1]],[[0,2,2,2],[1,3,1,2],[1,3,1,0],[1,2,2,1]],[[0,2,2,1],[1,4,1,2],[1,3,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,3],[1,3,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,4,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,3,1,0],[2,2,2,1]],[[0,2,2,1],[1,3,1,2],[1,3,1,0],[1,3,2,1]],[[0,2,2,1],[1,3,1,2],[1,3,1,0],[1,2,3,1]],[[0,2,2,1],[1,3,1,2],[1,3,1,0],[1,2,2,2]],[[0,3,2,1],[1,3,1,2],[1,3,1,1],[1,2,2,0]],[[0,2,3,1],[1,3,1,2],[1,3,1,1],[1,2,2,0]],[[0,2,2,2],[1,3,1,2],[1,3,1,1],[1,2,2,0]],[[0,2,2,1],[1,4,1,2],[1,3,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,3],[1,3,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,2],[1,4,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,2],[1,3,1,1],[2,2,2,0]],[[0,2,2,1],[1,3,1,2],[1,3,1,1],[1,3,2,0]],[[0,2,2,1],[1,3,1,2],[1,3,1,1],[1,2,3,0]],[[0,3,2,1],[1,3,1,2],[1,3,1,2],[1,1,1,1]],[[0,2,3,1],[1,3,1,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,2],[1,3,1,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,4,1,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,3],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[1,4,1,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[1,3,1,3],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[1,3,1,2],[1,1,1,2]],[[0,3,2,1],[1,3,1,2],[1,3,1,2],[1,1,2,0]],[[0,2,3,1],[1,3,1,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,2],[1,3,1,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,4,1,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,3],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,2],[1,4,1,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,2],[1,3,1,3],[1,1,2,0]],[[0,3,2,1],[1,3,1,2],[1,3,1,2],[1,2,0,1]],[[0,2,3,1],[1,3,1,2],[1,3,1,2],[1,2,0,1]],[[0,2,2,2],[1,3,1,2],[1,3,1,2],[1,2,0,1]],[[0,2,2,1],[1,4,1,2],[1,3,1,2],[1,2,0,1]],[[0,2,2,1],[1,3,1,3],[1,3,1,2],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[1,4,1,2],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[1,3,1,3],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[1,3,1,2],[2,2,0,1]],[[0,2,2,1],[1,3,1,2],[1,3,1,2],[1,3,0,1]],[[0,2,2,1],[1,3,1,2],[1,3,1,2],[1,2,0,2]],[[0,3,2,1],[1,3,1,2],[1,3,1,2],[1,2,1,0]],[[0,2,3,1],[1,3,1,2],[1,3,1,2],[1,2,1,0]],[[0,2,2,2],[1,3,1,2],[1,3,1,2],[1,2,1,0]],[[0,2,2,1],[1,4,1,2],[1,3,1,2],[1,2,1,0]],[[0,2,2,1],[1,3,1,3],[1,3,1,2],[1,2,1,0]],[[0,2,2,1],[1,3,1,2],[1,4,1,2],[1,2,1,0]],[[0,2,2,1],[1,3,1,2],[1,3,1,3],[1,2,1,0]],[[0,2,2,1],[1,3,1,2],[1,3,1,2],[2,2,1,0]],[[0,2,2,1],[1,3,1,2],[1,3,1,2],[1,3,1,0]],[[0,3,2,1],[1,3,1,2],[1,3,2,0],[1,1,2,1]],[[0,2,3,1],[1,3,1,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,2],[1,3,1,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,4,1,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,3],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[1,4,2,0],[1,1,2,1]],[[0,3,2,1],[1,3,1,2],[1,3,2,0],[1,2,1,1]],[[0,2,3,1],[1,3,1,2],[1,3,2,0],[1,2,1,1]],[[0,2,2,2],[1,3,1,2],[1,3,2,0],[1,2,1,1]],[[0,2,2,1],[1,4,1,2],[1,3,2,0],[1,2,1,1]],[[0,2,2,1],[1,3,1,3],[1,3,2,0],[1,2,1,1]],[[0,2,2,1],[1,3,1,2],[1,4,2,0],[1,2,1,1]],[[0,2,2,1],[1,3,1,2],[1,3,2,0],[2,2,1,1]],[[0,2,2,1],[1,3,1,2],[1,3,2,0],[1,3,1,1]],[[0,3,2,1],[1,3,1,2],[1,3,2,1],[1,1,1,1]],[[0,2,3,1],[1,3,1,2],[1,3,2,1],[1,1,1,1]],[[0,2,2,2],[1,3,1,2],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[1,4,1,2],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[1,3,1,3],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[1,4,2,1],[1,1,1,1]],[[0,3,2,1],[1,3,1,2],[1,3,2,1],[1,1,2,0]],[[0,2,3,1],[1,3,1,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,2],[1,3,1,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,4,1,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,3],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,2],[1,4,2,1],[1,1,2,0]],[[0,3,2,1],[1,3,1,2],[1,3,2,1],[1,2,0,1]],[[0,2,3,1],[1,3,1,2],[1,3,2,1],[1,2,0,1]],[[0,2,2,2],[1,3,1,2],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,4,1,2],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,3],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[1,4,2,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[1,3,2,1],[2,2,0,1]],[[0,2,2,1],[1,3,1,2],[1,3,2,1],[1,3,0,1]],[[0,3,2,1],[1,3,1,2],[1,3,2,1],[1,2,1,0]],[[0,2,3,1],[1,3,1,2],[1,3,2,1],[1,2,1,0]],[[0,2,2,2],[1,3,1,2],[1,3,2,1],[1,2,1,0]],[[0,2,2,1],[1,4,1,2],[1,3,2,1],[1,2,1,0]],[[0,2,2,1],[1,3,1,3],[1,3,2,1],[1,2,1,0]],[[0,2,2,1],[1,3,1,2],[1,4,2,1],[1,2,1,0]],[[0,2,2,1],[1,3,1,2],[1,3,2,1],[2,2,1,0]],[[0,2,2,1],[1,3,1,2],[1,3,2,1],[1,3,1,0]],[[0,3,2,1],[1,3,1,2],[1,3,3,1],[1,2,0,0]],[[0,2,3,1],[1,3,1,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,2],[1,3,1,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,4,1,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,3,1,3],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,3,1,2],[1,4,3,1],[1,2,0,0]],[[0,3,2,1],[1,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,3,1],[1,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[1,3,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[1,4,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,3],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[3,0,1,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,0,1,3],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,0,1,2],[2,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,0,1,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,2],[2,0,1,2],[1,2,3,1]],[[0,2,2,1],[1,3,1,2],[2,0,1,2],[1,2,2,2]],[[0,3,2,1],[1,3,1,2],[2,0,2,2],[1,2,1,1]],[[0,2,3,1],[1,3,1,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,2],[1,3,1,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[1,4,1,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[1,3,1,3],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,0,2,3],[1,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,0,2,2],[1,2,1,2]],[[0,3,2,1],[1,3,1,2],[2,0,2,2],[1,2,2,0]],[[0,2,3,1],[1,3,1,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,2],[1,3,1,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[1,4,1,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,3],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,0,2,3],[1,2,2,0]],[[0,3,2,1],[1,3,1,2],[2,0,3,0],[1,2,2,1]],[[0,2,3,1],[1,3,1,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,2],[1,3,1,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[1,4,1,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,3],[2,0,3,0],[1,2,2,1]],[[0,3,2,1],[1,3,1,2],[2,0,3,1],[1,2,1,1]],[[0,2,3,1],[1,3,1,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,2],[1,3,1,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[1,4,1,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[1,3,1,3],[2,0,3,1],[1,2,1,1]],[[0,3,2,1],[1,3,1,2],[2,0,3,1],[1,2,2,0]],[[0,2,3,1],[1,3,1,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,2],[1,3,1,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[1,4,1,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,3],[2,0,3,1],[1,2,2,0]],[[0,3,2,1],[1,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,3,1],[1,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,2],[1,3,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[1,4,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,3],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[3,1,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,1,0,3],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,1,0,2],[2,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,1,0,2],[1,3,2,1]],[[0,2,2,1],[1,3,1,2],[2,1,0,2],[1,2,3,1]],[[0,2,2,1],[1,3,1,2],[2,1,0,2],[1,2,2,2]],[[0,3,2,1],[1,3,1,2],[2,1,1,2],[0,2,2,1]],[[0,2,3,1],[1,3,1,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,2],[1,3,1,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[1,4,1,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[1,3,1,3],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,1,1,3],[0,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,1,1,2],[0,3,2,1]],[[0,2,2,1],[1,3,1,2],[2,1,1,2],[0,2,3,1]],[[0,2,2,1],[1,3,1,2],[2,1,1,2],[0,2,2,2]],[[0,3,2,1],[1,3,1,2],[2,1,2,2],[0,2,1,1]],[[0,2,3,1],[1,3,1,2],[2,1,2,2],[0,2,1,1]],[[0,2,2,2],[1,3,1,2],[2,1,2,2],[0,2,1,1]],[[0,2,2,1],[1,4,1,2],[2,1,2,2],[0,2,1,1]],[[0,2,2,1],[1,3,1,3],[2,1,2,2],[0,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,1,2,3],[0,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,1,2,2],[0,2,1,2]],[[0,3,2,1],[1,3,1,2],[2,1,2,2],[0,2,2,0]],[[0,2,3,1],[1,3,1,2],[2,1,2,2],[0,2,2,0]],[[0,2,2,2],[1,3,1,2],[2,1,2,2],[0,2,2,0]],[[0,2,2,1],[1,4,1,2],[2,1,2,2],[0,2,2,0]],[[0,2,2,1],[1,3,1,3],[2,1,2,2],[0,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,1,2,3],[0,2,2,0]],[[0,3,2,1],[1,3,1,2],[2,1,3,0],[0,2,2,1]],[[0,2,3,1],[1,3,1,2],[2,1,3,0],[0,2,2,1]],[[0,2,2,2],[1,3,1,2],[2,1,3,0],[0,2,2,1]],[[0,2,2,1],[1,4,1,2],[2,1,3,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,3],[2,1,3,0],[0,2,2,1]],[[0,3,2,1],[1,3,1,2],[2,1,3,1],[0,2,1,1]],[[0,2,3,1],[1,3,1,2],[2,1,3,1],[0,2,1,1]],[[0,2,2,2],[1,3,1,2],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[1,4,1,2],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[1,3,1,3],[2,1,3,1],[0,2,1,1]],[[0,3,2,1],[1,3,1,2],[2,1,3,1],[0,2,2,0]],[[0,2,3,1],[1,3,1,2],[2,1,3,1],[0,2,2,0]],[[0,2,2,2],[1,3,1,2],[2,1,3,1],[0,2,2,0]],[[0,2,2,1],[1,4,1,2],[2,1,3,1],[0,2,2,0]],[[0,2,2,1],[1,3,1,3],[2,1,3,1],[0,2,2,0]],[[0,2,2,1],[1,3,1,2],[3,2,0,1],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,0,1],[2,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,0,1],[1,3,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,0,1],[1,2,3,1]],[[0,2,2,1],[1,3,1,2],[2,2,0,1],[1,2,2,2]],[[0,3,2,1],[1,3,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,3,1],[1,3,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,2],[1,3,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[1,4,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[1,3,1,3],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,0,3],[0,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,0,2],[0,3,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,0,2],[0,2,3,1]],[[0,2,2,1],[1,3,1,2],[2,2,0,2],[0,2,2,2]],[[0,2,2,1],[1,3,1,2],[3,2,0,2],[1,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,2,0,2],[2,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,2,0,2],[1,3,1,1]],[[0,2,2,1],[1,3,1,2],[3,2,0,2],[1,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,2,0,2],[2,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,2,0,2],[1,3,2,0]],[[0,2,2,1],[1,3,1,2],[2,2,0,2],[1,2,3,0]],[[0,2,2,1],[1,3,1,2],[3,2,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,0],[2,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,0],[1,3,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,0],[1,2,3,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,0],[1,2,2,2]],[[0,2,2,1],[1,3,1,2],[3,2,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,2,1,1],[2,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,2,1,1],[1,3,2,0]],[[0,2,2,1],[1,3,1,2],[2,2,1,1],[1,2,3,0]],[[0,3,2,1],[1,3,1,2],[2,2,1,2],[0,1,2,1]],[[0,2,3,1],[1,3,1,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,2],[1,3,1,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[1,4,1,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[1,3,1,3],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,3],[0,1,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,2],[0,1,3,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,2],[0,1,2,2]],[[0,3,2,1],[1,3,1,2],[2,2,1,2],[1,0,2,1]],[[0,2,3,1],[1,3,1,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,2],[1,3,1,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[1,4,1,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[1,3,1,3],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,3],[1,0,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,2],[1,0,3,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,2],[1,0,2,2]],[[0,2,2,1],[1,3,1,2],[3,2,1,2],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,2],[2,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,2,1,2],[1,3,0,1]],[[0,2,2,1],[1,3,1,2],[3,2,1,2],[1,2,1,0]],[[0,2,2,1],[1,3,1,2],[2,2,1,2],[2,2,1,0]],[[0,2,2,1],[1,3,1,2],[2,2,1,2],[1,3,1,0]],[[0,2,2,1],[1,3,1,2],[3,2,2,0],[1,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,0],[2,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,0],[1,3,1,1]],[[0,2,2,1],[1,3,1,2],[3,2,2,1],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,1],[2,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,1],[1,3,0,1]],[[0,2,2,1],[1,3,1,2],[3,2,2,1],[1,2,1,0]],[[0,2,2,1],[1,3,1,2],[2,2,2,1],[2,2,1,0]],[[0,2,2,1],[1,3,1,2],[2,2,2,1],[1,3,1,0]],[[0,3,2,1],[1,3,1,2],[2,2,2,2],[0,0,2,1]],[[0,2,3,1],[1,3,1,2],[2,2,2,2],[0,0,2,1]],[[0,2,2,2],[1,3,1,2],[2,2,2,2],[0,0,2,1]],[[0,2,2,1],[1,4,1,2],[2,2,2,2],[0,0,2,1]],[[0,2,2,1],[1,3,1,3],[2,2,2,2],[0,0,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,3],[0,0,2,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,2],[0,0,2,2]],[[0,3,2,1],[1,3,1,2],[2,2,2,2],[0,1,1,1]],[[0,2,3,1],[1,3,1,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,2],[1,3,1,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[1,4,1,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[1,3,1,3],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,3],[0,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,2],[0,1,1,2]],[[0,3,2,1],[1,3,1,2],[2,2,2,2],[0,1,2,0]],[[0,2,3,1],[1,3,1,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,2],[1,3,1,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[1,4,1,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[1,3,1,3],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[1,3,1,2],[2,2,2,3],[0,1,2,0]],[[0,3,2,1],[1,3,1,2],[2,2,2,2],[0,2,0,1]],[[0,2,3,1],[1,3,1,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,2],[1,3,1,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[1,4,1,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[1,3,1,3],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,3],[0,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,2],[0,2,0,2]],[[0,3,2,1],[1,3,1,2],[2,2,2,2],[0,2,1,0]],[[0,2,3,1],[1,3,1,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,2],[1,3,1,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[1,4,1,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[1,3,1,3],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[1,3,1,2],[2,2,2,3],[0,2,1,0]],[[0,3,2,1],[1,3,1,2],[2,2,2,2],[1,0,1,1]],[[0,2,3,1],[1,3,1,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,2],[1,3,1,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[1,4,1,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[1,3,1,3],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,3],[1,0,1,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,2],[1,0,1,2]],[[0,3,2,1],[1,3,1,2],[2,2,2,2],[1,0,2,0]],[[0,2,3,1],[1,3,1,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,2],[1,3,1,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[1,4,1,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[1,3,1,3],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[1,3,1,2],[2,2,2,3],[1,0,2,0]],[[0,3,2,1],[1,3,1,2],[2,2,2,2],[1,1,0,1]],[[0,2,3,1],[1,3,1,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,2],[1,3,1,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[1,4,1,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,3],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,3],[1,1,0,1]],[[0,2,2,1],[1,3,1,2],[2,2,2,2],[1,1,0,2]],[[0,3,2,1],[1,3,1,2],[2,2,2,2],[1,1,1,0]],[[0,2,3,1],[1,3,1,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,2],[1,3,1,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[1,4,1,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[1,3,1,3],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[1,3,1,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,0],[2,3,3,2],[1,0,3,3],[1,0,0,1]],[[1,2,2,0],[2,3,3,3],[1,0,3,2],[1,0,0,1]],[[1,2,2,0],[2,3,4,2],[1,0,3,2],[1,0,0,1]],[[1,2,3,0],[2,3,3,2],[1,0,3,2],[1,0,0,1]],[[1,3,2,0],[2,3,3,2],[1,0,3,2],[1,0,0,1]],[[2,2,2,0],[2,3,3,2],[1,0,3,2],[1,0,0,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,0],[0,1,2,1]],[[0,2,3,1],[1,3,1,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,2],[1,3,1,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[1,4,1,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[1,3,1,3],[2,2,3,0],[0,1,2,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,0],[0,2,1,1]],[[0,2,3,1],[1,3,1,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,2],[1,3,1,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[1,4,1,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[1,3,1,3],[2,2,3,0],[0,2,1,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,0],[1,0,2,1]],[[0,2,3,1],[1,3,1,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,2],[1,3,1,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[1,4,1,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[1,3,1,3],[2,2,3,0],[1,0,2,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,0],[1,1,1,1]],[[0,2,3,1],[1,3,1,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,2],[1,3,1,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[1,4,1,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[1,3,1,3],[2,2,3,0],[1,1,1,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,1],[0,0,2,1]],[[0,2,3,1],[1,3,1,2],[2,2,3,1],[0,0,2,1]],[[0,2,2,2],[1,3,1,2],[2,2,3,1],[0,0,2,1]],[[0,2,2,1],[1,4,1,2],[2,2,3,1],[0,0,2,1]],[[0,2,2,1],[1,3,1,3],[2,2,3,1],[0,0,2,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,1],[0,1,1,1]],[[0,2,3,1],[1,3,1,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,2],[1,3,1,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[1,4,1,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[1,3,1,3],[2,2,3,1],[0,1,1,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,1],[0,1,2,0]],[[0,2,3,1],[1,3,1,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,2],[1,3,1,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[1,4,1,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[1,3,1,3],[2,2,3,1],[0,1,2,0]],[[0,3,2,1],[1,3,1,2],[2,2,3,1],[0,2,0,1]],[[0,2,3,1],[1,3,1,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,2],[1,3,1,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[1,4,1,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[1,3,1,3],[2,2,3,1],[0,2,0,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,1],[0,2,1,0]],[[0,2,3,1],[1,3,1,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,2],[1,3,1,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[1,4,1,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[1,3,1,3],[2,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,3,3,2],[1,0,3,3],[0,1,0,1]],[[1,2,2,0],[2,3,3,3],[1,0,3,2],[0,1,0,1]],[[1,2,2,0],[2,3,4,2],[1,0,3,2],[0,1,0,1]],[[1,2,3,0],[2,3,3,2],[1,0,3,2],[0,1,0,1]],[[1,3,2,0],[2,3,3,2],[1,0,3,2],[0,1,0,1]],[[2,2,2,0],[2,3,3,2],[1,0,3,2],[0,1,0,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,1],[1,0,1,1]],[[0,2,3,1],[1,3,1,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,2],[1,3,1,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[1,4,1,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[1,3,1,3],[2,2,3,1],[1,0,1,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,1],[1,0,2,0]],[[0,2,3,1],[1,3,1,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,2],[1,3,1,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[1,4,1,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[1,3,1,3],[2,2,3,1],[1,0,2,0]],[[0,3,2,1],[1,3,1,2],[2,2,3,1],[1,1,0,1]],[[0,2,3,1],[1,3,1,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,2],[1,3,1,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[1,4,1,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[1,3,1,3],[2,2,3,1],[1,1,0,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,1],[1,1,1,0]],[[0,2,3,1],[1,3,1,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,2],[1,3,1,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[1,4,1,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[1,3,1,3],[2,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,3,3,3],[1,0,3,1],[1,1,1,0]],[[1,2,2,0],[2,3,4,2],[1,0,3,1],[1,1,1,0]],[[1,2,3,0],[2,3,3,2],[1,0,3,1],[1,1,1,0]],[[1,3,2,0],[2,3,3,2],[1,0,3,1],[1,1,1,0]],[[2,2,2,0],[2,3,3,2],[1,0,3,1],[1,1,1,0]],[[1,2,2,0],[2,3,3,3],[1,0,3,1],[1,1,0,1]],[[1,2,2,0],[2,3,4,2],[1,0,3,1],[1,1,0,1]],[[1,2,3,0],[2,3,3,2],[1,0,3,1],[1,1,0,1]],[[1,3,2,0],[2,3,3,2],[1,0,3,1],[1,1,0,1]],[[2,2,2,0],[2,3,3,2],[1,0,3,1],[1,1,0,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,2],[0,1,0,1]],[[0,2,3,1],[1,3,1,2],[2,2,3,2],[0,1,0,1]],[[0,2,2,2],[1,3,1,2],[2,2,3,2],[0,1,0,1]],[[0,2,2,1],[1,4,1,2],[2,2,3,2],[0,1,0,1]],[[0,2,2,1],[1,3,1,3],[2,2,3,2],[0,1,0,1]],[[0,2,2,1],[1,3,1,2],[2,2,3,3],[0,1,0,1]],[[1,2,2,0],[2,3,3,3],[1,0,3,1],[1,0,2,0]],[[1,2,2,0],[2,3,4,2],[1,0,3,1],[1,0,2,0]],[[1,2,3,0],[2,3,3,2],[1,0,3,1],[1,0,2,0]],[[1,3,2,0],[2,3,3,2],[1,0,3,1],[1,0,2,0]],[[2,2,2,0],[2,3,3,2],[1,0,3,1],[1,0,2,0]],[[1,2,2,0],[2,3,3,3],[1,0,3,1],[1,0,1,1]],[[1,2,2,0],[2,3,4,2],[1,0,3,1],[1,0,1,1]],[[1,2,3,0],[2,3,3,2],[1,0,3,1],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[1,0,3,1],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[1,0,3,1],[1,0,1,1]],[[1,2,2,0],[2,3,3,3],[1,0,3,1],[0,2,1,0]],[[1,2,2,0],[2,3,4,2],[1,0,3,1],[0,2,1,0]],[[1,2,3,0],[2,3,3,2],[1,0,3,1],[0,2,1,0]],[[1,3,2,0],[2,3,3,2],[1,0,3,1],[0,2,1,0]],[[2,2,2,0],[2,3,3,2],[1,0,3,1],[0,2,1,0]],[[1,2,2,0],[2,3,3,3],[1,0,3,1],[0,2,0,1]],[[1,2,2,0],[2,3,4,2],[1,0,3,1],[0,2,0,1]],[[1,2,3,0],[2,3,3,2],[1,0,3,1],[0,2,0,1]],[[1,3,2,0],[2,3,3,2],[1,0,3,1],[0,2,0,1]],[[2,2,2,0],[2,3,3,2],[1,0,3,1],[0,2,0,1]],[[0,3,2,1],[1,3,1,2],[2,2,3,2],[1,0,0,1]],[[0,2,3,1],[1,3,1,2],[2,2,3,2],[1,0,0,1]],[[0,2,2,2],[1,3,1,2],[2,2,3,2],[1,0,0,1]],[[0,2,2,1],[1,4,1,2],[2,2,3,2],[1,0,0,1]],[[0,2,2,1],[1,3,1,3],[2,2,3,2],[1,0,0,1]],[[0,2,2,1],[1,3,1,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,0],[2,3,3,3],[1,0,3,1],[0,1,2,0]],[[1,2,2,0],[2,3,4,2],[1,0,3,1],[0,1,2,0]],[[1,2,3,0],[2,3,3,2],[1,0,3,1],[0,1,2,0]],[[1,3,2,0],[2,3,3,2],[1,0,3,1],[0,1,2,0]],[[2,2,2,0],[2,3,3,2],[1,0,3,1],[0,1,2,0]],[[1,2,2,0],[2,3,3,3],[1,0,3,1],[0,1,1,1]],[[1,2,2,0],[2,3,4,2],[1,0,3,1],[0,1,1,1]],[[1,2,3,0],[2,3,3,2],[1,0,3,1],[0,1,1,1]],[[1,3,2,0],[2,3,3,2],[1,0,3,1],[0,1,1,1]],[[2,2,2,0],[2,3,3,2],[1,0,3,1],[0,1,1,1]],[[1,2,2,0],[2,3,3,3],[1,0,3,1],[0,0,2,1]],[[1,2,2,0],[2,3,4,2],[1,0,3,1],[0,0,2,1]],[[1,2,3,0],[2,3,3,2],[1,0,3,1],[0,0,2,1]],[[1,3,2,0],[2,3,3,2],[1,0,3,1],[0,0,2,1]],[[2,2,2,0],[2,3,3,2],[1,0,3,1],[0,0,2,1]],[[1,2,2,0],[2,3,4,2],[1,0,3,0],[1,1,1,1]],[[1,2,3,0],[2,3,3,2],[1,0,3,0],[1,1,1,1]],[[1,3,2,0],[2,3,3,2],[1,0,3,0],[1,1,1,1]],[[2,2,2,0],[2,3,3,2],[1,0,3,0],[1,1,1,1]],[[1,2,2,0],[2,3,3,3],[1,0,3,0],[1,0,2,1]],[[1,2,2,0],[2,3,4,2],[1,0,3,0],[1,0,2,1]],[[1,2,3,0],[2,3,3,2],[1,0,3,0],[1,0,2,1]],[[1,3,2,0],[2,3,3,2],[1,0,3,0],[1,0,2,1]],[[2,2,2,0],[2,3,3,2],[1,0,3,0],[1,0,2,1]],[[1,2,2,0],[2,3,4,2],[1,0,3,0],[0,2,1,1]],[[1,2,3,0],[2,3,3,2],[1,0,3,0],[0,2,1,1]],[[1,3,2,0],[2,3,3,2],[1,0,3,0],[0,2,1,1]],[[2,2,2,0],[2,3,3,2],[1,0,3,0],[0,2,1,1]],[[1,2,2,0],[2,3,3,3],[1,0,3,0],[0,1,2,1]],[[1,2,2,0],[2,3,4,2],[1,0,3,0],[0,1,2,1]],[[1,2,3,0],[2,3,3,2],[1,0,3,0],[0,1,2,1]],[[1,3,2,0],[2,3,3,2],[1,0,3,0],[0,1,2,1]],[[2,2,2,0],[2,3,3,2],[1,0,3,0],[0,1,2,1]],[[1,2,2,0],[2,3,3,3],[1,0,2,2],[1,1,1,0]],[[1,2,2,0],[2,3,4,2],[1,0,2,2],[1,1,1,0]],[[1,2,3,0],[2,3,3,2],[1,0,2,2],[1,1,1,0]],[[1,3,2,0],[2,3,3,2],[1,0,2,2],[1,1,1,0]],[[2,2,2,0],[2,3,3,2],[1,0,2,2],[1,1,1,0]],[[1,2,2,0],[2,3,3,2],[1,0,2,3],[1,1,0,1]],[[1,2,2,0],[2,3,3,3],[1,0,2,2],[1,1,0,1]],[[1,2,2,0],[2,3,4,2],[1,0,2,2],[1,1,0,1]],[[1,2,3,0],[2,3,3,2],[1,0,2,2],[1,1,0,1]],[[1,3,2,0],[2,3,3,2],[1,0,2,2],[1,1,0,1]],[[2,2,2,0],[2,3,3,2],[1,0,2,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,2],[3,3,0,0],[1,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,0],[2,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,0],[1,3,2,1]],[[0,3,2,1],[1,3,1,2],[2,3,0,1],[0,2,2,1]],[[0,2,3,1],[1,3,1,2],[2,3,0,1],[0,2,2,1]],[[0,2,2,2],[1,3,1,2],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[1,4,1,2],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[1,3,1,3],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[1,3,1,2],[3,3,0,1],[0,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,4,0,1],[0,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,1],[0,3,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,1],[0,2,3,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,1],[0,2,2,2]],[[0,3,2,1],[1,3,1,2],[2,3,0,1],[1,1,2,1]],[[0,2,3,1],[1,3,1,2],[2,3,0,1],[1,1,2,1]],[[0,2,2,2],[1,3,1,2],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[1,4,1,2],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[1,3,1,3],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[3,3,0,1],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[2,4,0,1],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,1],[2,1,2,1]],[[0,2,2,1],[1,3,1,2],[3,3,0,1],[1,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,0,1],[2,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,0,1],[1,3,2,0]],[[0,3,2,1],[1,3,1,2],[2,3,0,2],[0,1,2,1]],[[0,2,3,1],[1,3,1,2],[2,3,0,2],[0,1,2,1]],[[0,2,2,2],[1,3,1,2],[2,3,0,2],[0,1,2,1]],[[0,2,2,1],[1,4,1,2],[2,3,0,2],[0,1,2,1]],[[0,2,2,1],[1,3,1,3],[2,3,0,2],[0,1,2,1]],[[0,2,2,1],[1,3,1,2],[3,3,0,2],[0,1,2,1]],[[0,2,2,1],[1,3,1,2],[2,4,0,2],[0,1,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,3],[0,1,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[0,1,3,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[0,1,2,2]],[[0,3,2,1],[1,3,1,2],[2,3,0,2],[0,2,1,1]],[[0,2,3,1],[1,3,1,2],[2,3,0,2],[0,2,1,1]],[[0,2,2,2],[1,3,1,2],[2,3,0,2],[0,2,1,1]],[[0,2,2,1],[1,4,1,2],[2,3,0,2],[0,2,1,1]],[[0,2,2,1],[1,3,1,3],[2,3,0,2],[0,2,1,1]],[[0,2,2,1],[1,3,1,2],[3,3,0,2],[0,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,4,0,2],[0,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,3],[0,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[0,3,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[0,2,1,2]],[[0,3,2,1],[1,3,1,2],[2,3,0,2],[0,2,2,0]],[[0,2,3,1],[1,3,1,2],[2,3,0,2],[0,2,2,0]],[[0,2,2,2],[1,3,1,2],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[1,4,1,2],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[1,3,1,3],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[1,3,1,2],[3,3,0,2],[0,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,4,0,2],[0,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,0,3],[0,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[0,3,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[0,2,3,0]],[[0,3,2,1],[1,3,1,2],[2,3,0,2],[1,0,2,1]],[[0,2,3,1],[1,3,1,2],[2,3,0,2],[1,0,2,1]],[[0,2,2,2],[1,3,1,2],[2,3,0,2],[1,0,2,1]],[[0,2,2,1],[1,4,1,2],[2,3,0,2],[1,0,2,1]],[[0,2,2,1],[1,3,1,3],[2,3,0,2],[1,0,2,1]],[[0,2,2,1],[1,3,1,2],[3,3,0,2],[1,0,2,1]],[[0,2,2,1],[1,3,1,2],[2,4,0,2],[1,0,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,3],[1,0,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[2,0,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[1,0,3,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[1,0,2,2]],[[0,3,2,1],[1,3,1,2],[2,3,0,2],[1,1,1,1]],[[0,2,3,1],[1,3,1,2],[2,3,0,2],[1,1,1,1]],[[0,2,2,2],[1,3,1,2],[2,3,0,2],[1,1,1,1]],[[0,2,2,1],[1,4,1,2],[2,3,0,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,3],[2,3,0,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[3,3,0,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,4,0,2],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,3],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[2,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[1,1,1,2]],[[0,3,2,1],[1,3,1,2],[2,3,0,2],[1,1,2,0]],[[0,2,3,1],[1,3,1,2],[2,3,0,2],[1,1,2,0]],[[0,2,2,2],[1,3,1,2],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[1,4,1,2],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,3],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,2],[3,3,0,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,2],[2,4,0,2],[1,1,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,0,3],[1,1,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,0],[2,3,3,2],[1,0,2,3],[1,0,2,0]],[[1,2,2,0],[2,3,3,3],[1,0,2,2],[1,0,2,0]],[[1,2,2,0],[2,3,4,2],[1,0,2,2],[1,0,2,0]],[[1,2,3,0],[2,3,3,2],[1,0,2,2],[1,0,2,0]],[[1,3,2,0],[2,3,3,2],[1,0,2,2],[1,0,2,0]],[[2,2,2,0],[2,3,3,2],[1,0,2,2],[1,0,2,0]],[[1,2,2,0],[2,3,3,2],[1,0,2,2],[1,0,1,2]],[[1,2,2,0],[2,3,3,2],[1,0,2,3],[1,0,1,1]],[[1,2,2,0],[2,3,3,3],[1,0,2,2],[1,0,1,1]],[[0,3,2,1],[1,3,1,2],[2,3,1,0],[0,2,2,1]],[[0,2,3,1],[1,3,1,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,2],[1,3,1,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,4,1,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,3],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,2],[3,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,4,1,0],[0,2,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,0],[0,3,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,0],[0,2,3,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,0],[0,2,2,2]],[[0,3,2,1],[1,3,1,2],[2,3,1,0],[1,1,2,1]],[[0,2,3,1],[1,3,1,2],[2,3,1,0],[1,1,2,1]],[[0,2,2,2],[1,3,1,2],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,4,1,2],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,3],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[3,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[2,4,1,0],[1,1,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,0],[2,1,2,1]],[[0,3,2,1],[1,3,1,2],[2,3,1,1],[0,2,2,0]],[[0,2,3,1],[1,3,1,2],[2,3,1,1],[0,2,2,0]],[[0,2,2,2],[1,3,1,2],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,4,1,2],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,3,1,3],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,3,1,2],[3,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,4,1,1],[0,2,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,1,1],[0,3,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,1,1],[0,2,3,0]],[[0,3,2,1],[1,3,1,2],[2,3,1,1],[1,1,2,0]],[[0,2,3,1],[1,3,1,2],[2,3,1,1],[1,1,2,0]],[[0,2,2,2],[1,3,1,2],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,4,1,2],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,3],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,2],[3,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,2],[2,4,1,1],[1,1,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,0],[2,3,4,2],[1,0,2,2],[1,0,1,1]],[[1,2,3,0],[2,3,3,2],[1,0,2,2],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[1,0,2,2],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[1,0,2,2],[1,0,1,1]],[[0,3,2,1],[1,3,1,2],[2,3,1,2],[0,1,1,1]],[[0,2,3,1],[1,3,1,2],[2,3,1,2],[0,1,1,1]],[[0,2,2,2],[1,3,1,2],[2,3,1,2],[0,1,1,1]],[[0,2,2,1],[1,4,1,2],[2,3,1,2],[0,1,1,1]],[[0,2,2,1],[1,3,1,3],[2,3,1,2],[0,1,1,1]],[[0,2,2,1],[1,3,1,2],[3,3,1,2],[0,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,4,1,2],[0,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,3],[0,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,2],[0,1,1,2]],[[0,3,2,1],[1,3,1,2],[2,3,1,2],[0,1,2,0]],[[0,2,3,1],[1,3,1,2],[2,3,1,2],[0,1,2,0]],[[0,2,2,2],[1,3,1,2],[2,3,1,2],[0,1,2,0]],[[0,2,2,1],[1,4,1,2],[2,3,1,2],[0,1,2,0]],[[0,2,2,1],[1,3,1,3],[2,3,1,2],[0,1,2,0]],[[0,2,2,1],[1,3,1,2],[3,3,1,2],[0,1,2,0]],[[0,2,2,1],[1,3,1,2],[2,4,1,2],[0,1,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,1,3],[0,1,2,0]],[[0,3,2,1],[1,3,1,2],[2,3,1,2],[0,2,0,1]],[[0,2,3,1],[1,3,1,2],[2,3,1,2],[0,2,0,1]],[[0,2,2,2],[1,3,1,2],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[1,4,1,2],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[1,3,1,3],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[1,3,1,2],[3,3,1,2],[0,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,4,1,2],[0,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,3],[0,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,2],[0,3,0,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,2],[0,2,0,2]],[[0,3,2,1],[1,3,1,2],[2,3,1,2],[0,2,1,0]],[[0,2,3,1],[1,3,1,2],[2,3,1,2],[0,2,1,0]],[[0,2,2,2],[1,3,1,2],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[1,4,1,2],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[1,3,1,3],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[1,3,1,2],[3,3,1,2],[0,2,1,0]],[[0,2,2,1],[1,3,1,2],[2,4,1,2],[0,2,1,0]],[[0,2,2,1],[1,3,1,2],[2,3,1,3],[0,2,1,0]],[[0,2,2,1],[1,3,1,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,0],[2,3,3,3],[1,0,2,2],[0,2,1,0]],[[1,2,2,0],[2,3,4,2],[1,0,2,2],[0,2,1,0]],[[1,2,3,0],[2,3,3,2],[1,0,2,2],[0,2,1,0]],[[1,3,2,0],[2,3,3,2],[1,0,2,2],[0,2,1,0]],[[2,2,2,0],[2,3,3,2],[1,0,2,2],[0,2,1,0]],[[0,3,2,1],[1,3,1,2],[2,3,1,2],[1,0,1,1]],[[0,2,3,1],[1,3,1,2],[2,3,1,2],[1,0,1,1]],[[0,2,2,2],[1,3,1,2],[2,3,1,2],[1,0,1,1]],[[0,2,2,1],[1,4,1,2],[2,3,1,2],[1,0,1,1]],[[0,2,2,1],[1,3,1,3],[2,3,1,2],[1,0,1,1]],[[0,2,2,1],[1,3,1,2],[3,3,1,2],[1,0,1,1]],[[0,2,2,1],[1,3,1,2],[2,4,1,2],[1,0,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,3],[1,0,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,2],[2,0,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,2],[1,0,1,2]],[[0,3,2,1],[1,3,1,2],[2,3,1,2],[1,0,2,0]],[[0,2,3,1],[1,3,1,2],[2,3,1,2],[1,0,2,0]],[[0,2,2,2],[1,3,1,2],[2,3,1,2],[1,0,2,0]],[[0,2,2,1],[1,4,1,2],[2,3,1,2],[1,0,2,0]],[[0,2,2,1],[1,3,1,3],[2,3,1,2],[1,0,2,0]],[[0,2,2,1],[1,3,1,2],[3,3,1,2],[1,0,2,0]],[[0,2,2,1],[1,3,1,2],[2,4,1,2],[1,0,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,1,3],[1,0,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,1,2],[2,0,2,0]],[[0,3,2,1],[1,3,1,2],[2,3,1,2],[1,1,0,1]],[[0,2,3,1],[1,3,1,2],[2,3,1,2],[1,1,0,1]],[[0,2,2,2],[1,3,1,2],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[1,4,1,2],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,3],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,2],[3,3,1,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,2],[2,4,1,2],[1,1,0,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,3],[1,1,0,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,2],[2,1,0,1]],[[0,2,2,1],[1,3,1,2],[2,3,1,2],[1,1,0,2]],[[0,3,2,1],[1,3,1,2],[2,3,1,2],[1,1,1,0]],[[0,2,3,1],[1,3,1,2],[2,3,1,2],[1,1,1,0]],[[0,2,2,2],[1,3,1,2],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[1,4,1,2],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[1,3,1,3],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[1,3,1,2],[3,3,1,2],[1,1,1,0]],[[0,2,2,1],[1,3,1,2],[2,4,1,2],[1,1,1,0]],[[0,2,2,1],[1,3,1,2],[2,3,1,3],[1,1,1,0]],[[0,2,2,1],[1,3,1,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,0],[2,3,3,2],[1,0,2,3],[0,2,0,1]],[[1,2,2,0],[2,3,3,3],[1,0,2,2],[0,2,0,1]],[[1,2,2,0],[2,3,4,2],[1,0,2,2],[0,2,0,1]],[[1,2,3,0],[2,3,3,2],[1,0,2,2],[0,2,0,1]],[[1,3,2,0],[2,3,3,2],[1,0,2,2],[0,2,0,1]],[[2,2,2,0],[2,3,3,2],[1,0,2,2],[0,2,0,1]],[[0,3,2,1],[1,3,1,2],[2,3,1,2],[1,2,0,0]],[[0,2,3,1],[1,3,1,2],[2,3,1,2],[1,2,0,0]],[[0,2,2,2],[1,3,1,2],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[1,4,1,2],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[1,3,1,3],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[1,3,1,2],[3,3,1,2],[1,2,0,0]],[[0,2,2,1],[1,3,1,2],[2,4,1,2],[1,2,0,0]],[[0,2,2,1],[1,3,1,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[2,3,3,2],[1,0,2,3],[0,1,2,0]],[[1,2,2,0],[2,3,3,3],[1,0,2,2],[0,1,2,0]],[[1,2,2,0],[2,3,4,2],[1,0,2,2],[0,1,2,0]],[[1,2,3,0],[2,3,3,2],[1,0,2,2],[0,1,2,0]],[[1,3,2,0],[2,3,3,2],[1,0,2,2],[0,1,2,0]],[[2,2,2,0],[2,3,3,2],[1,0,2,2],[0,1,2,0]],[[1,2,2,0],[2,3,3,2],[1,0,2,2],[0,1,1,2]],[[1,2,2,0],[2,3,3,2],[1,0,2,3],[0,1,1,1]],[[1,2,2,0],[2,3,3,3],[1,0,2,2],[0,1,1,1]],[[1,2,2,0],[2,3,4,2],[1,0,2,2],[0,1,1,1]],[[1,2,3,0],[2,3,3,2],[1,0,2,2],[0,1,1,1]],[[1,3,2,0],[2,3,3,2],[1,0,2,2],[0,1,1,1]],[[2,2,2,0],[2,3,3,2],[1,0,2,2],[0,1,1,1]],[[1,2,2,0],[2,3,3,2],[1,0,2,2],[0,0,2,2]],[[1,2,2,0],[2,3,3,2],[1,0,2,3],[0,0,2,1]],[[1,2,2,0],[2,3,3,3],[1,0,2,2],[0,0,2,1]],[[1,2,2,0],[2,3,4,2],[1,0,2,2],[0,0,2,1]],[[1,2,3,0],[2,3,3,2],[1,0,2,2],[0,0,2,1]],[[1,3,2,0],[2,3,3,2],[1,0,2,2],[0,0,2,1]],[[2,2,2,0],[2,3,3,2],[1,0,2,2],[0,0,2,1]],[[1,2,2,0],[2,3,3,2],[1,0,1,2],[1,0,2,2]],[[1,2,2,0],[2,3,3,2],[1,0,1,3],[1,0,2,1]],[[1,2,2,0],[2,3,3,3],[1,0,1,2],[1,0,2,1]],[[1,2,2,0],[2,3,4,2],[1,0,1,2],[1,0,2,1]],[[1,2,3,0],[2,3,3,2],[1,0,1,2],[1,0,2,1]],[[0,3,2,1],[1,3,1,2],[2,3,2,0],[0,1,2,1]],[[0,2,3,1],[1,3,1,2],[2,3,2,0],[0,1,2,1]],[[0,2,2,2],[1,3,1,2],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,4,1,2],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,3,1,3],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,3,1,2],[3,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,3,1,2],[2,4,2,0],[0,1,2,1]],[[0,3,2,1],[1,3,1,2],[2,3,2,0],[0,2,1,1]],[[0,2,3,1],[1,3,1,2],[2,3,2,0],[0,2,1,1]],[[0,2,2,2],[1,3,1,2],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,4,1,2],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,3,1,3],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,3,1,2],[3,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,4,2,0],[0,2,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,2,0],[0,3,1,1]],[[0,3,2,1],[1,3,1,2],[2,3,2,0],[1,0,2,1]],[[0,2,3,1],[1,3,1,2],[2,3,2,0],[1,0,2,1]],[[0,2,2,2],[1,3,1,2],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,4,1,2],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,3,1,3],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,3,1,2],[3,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,3,1,2],[2,4,2,0],[1,0,2,1]],[[0,2,2,1],[1,3,1,2],[2,3,2,0],[2,0,2,1]],[[0,3,2,1],[1,3,1,2],[2,3,2,0],[1,1,1,1]],[[0,2,3,1],[1,3,1,2],[2,3,2,0],[1,1,1,1]],[[0,2,2,2],[1,3,1,2],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,4,1,2],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,3,1,3],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[3,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,4,2,0],[1,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,2,0],[2,1,1,1]],[[0,3,2,1],[1,3,1,2],[2,3,2,0],[1,2,0,1]],[[0,2,3,1],[1,3,1,2],[2,3,2,0],[1,2,0,1]],[[0,2,2,2],[1,3,1,2],[2,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,4,1,2],[2,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[3,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,4,2,0],[1,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,3,2,0],[2,2,0,1]],[[1,3,2,0],[2,3,3,2],[1,0,1,2],[1,0,2,1]],[[2,2,2,0],[2,3,3,2],[1,0,1,2],[1,0,2,1]],[[1,2,2,0],[2,3,3,2],[1,0,1,2],[0,1,2,2]],[[0,3,2,1],[1,3,1,2],[2,3,2,1],[0,1,1,1]],[[0,2,3,1],[1,3,1,2],[2,3,2,1],[0,1,1,1]],[[0,2,2,2],[1,3,1,2],[2,3,2,1],[0,1,1,1]],[[0,2,2,1],[1,4,1,2],[2,3,2,1],[0,1,1,1]],[[0,2,2,1],[1,3,1,3],[2,3,2,1],[0,1,1,1]],[[0,2,2,1],[1,3,1,2],[3,3,2,1],[0,1,1,1]],[[0,2,2,1],[1,3,1,2],[2,4,2,1],[0,1,1,1]],[[0,3,2,1],[1,3,1,2],[2,3,2,1],[0,1,2,0]],[[0,2,3,1],[1,3,1,2],[2,3,2,1],[0,1,2,0]],[[0,2,2,2],[1,3,1,2],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,4,1,2],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,3,1,3],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,3,1,2],[3,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,3,1,2],[2,4,2,1],[0,1,2,0]],[[0,3,2,1],[1,3,1,2],[2,3,2,1],[0,2,0,1]],[[0,2,3,1],[1,3,1,2],[2,3,2,1],[0,2,0,1]],[[0,2,2,2],[1,3,1,2],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,4,1,2],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,3,1,3],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,3,1,2],[3,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,4,2,1],[0,2,0,1]],[[0,2,2,1],[1,3,1,2],[2,3,2,1],[0,3,0,1]],[[0,3,2,1],[1,3,1,2],[2,3,2,1],[0,2,1,0]],[[0,2,3,1],[1,3,1,2],[2,3,2,1],[0,2,1,0]],[[0,2,2,2],[1,3,1,2],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,4,1,2],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,3,1,3],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,3,1,2],[3,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,3,1,2],[2,4,2,1],[0,2,1,0]],[[0,2,2,1],[1,3,1,2],[2,3,2,1],[0,3,1,0]],[[1,2,2,0],[2,3,3,2],[1,0,1,3],[0,1,2,1]],[[1,2,2,0],[2,3,3,3],[1,0,1,2],[0,1,2,1]],[[1,2,2,0],[2,3,4,2],[1,0,1,2],[0,1,2,1]],[[1,2,3,0],[2,3,3,2],[1,0,1,2],[0,1,2,1]],[[1,3,2,0],[2,3,3,2],[1,0,1,2],[0,1,2,1]],[[2,2,2,0],[2,3,3,2],[1,0,1,2],[0,1,2,1]],[[0,3,2,1],[1,3,1,2],[2,3,2,1],[1,0,1,1]],[[0,2,3,1],[1,3,1,2],[2,3,2,1],[1,0,1,1]],[[0,2,2,2],[1,3,1,2],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[1,4,1,2],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[1,3,1,3],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[1,3,1,2],[3,3,2,1],[1,0,1,1]],[[0,2,2,1],[1,3,1,2],[2,4,2,1],[1,0,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,2,1],[2,0,1,1]],[[0,3,2,1],[1,3,1,2],[2,3,2,1],[1,0,2,0]],[[0,2,3,1],[1,3,1,2],[2,3,2,1],[1,0,2,0]],[[0,2,2,2],[1,3,1,2],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,4,1,2],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,3,1,3],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,3,1,2],[3,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,3,1,2],[2,4,2,1],[1,0,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,2,1],[2,0,2,0]],[[0,3,2,1],[1,3,1,2],[2,3,2,1],[1,1,0,1]],[[0,2,3,1],[1,3,1,2],[2,3,2,1],[1,1,0,1]],[[0,2,2,2],[1,3,1,2],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,4,1,2],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,3,1,3],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,3,1,2],[3,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,3,1,2],[2,4,2,1],[1,1,0,1]],[[0,2,2,1],[1,3,1,2],[2,3,2,1],[2,1,0,1]],[[0,3,2,1],[1,3,1,2],[2,3,2,1],[1,1,1,0]],[[0,2,3,1],[1,3,1,2],[2,3,2,1],[1,1,1,0]],[[0,2,2,2],[1,3,1,2],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,4,1,2],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,3,1,3],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,3,1,2],[3,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,3,1,2],[2,4,2,1],[1,1,1,0]],[[0,2,2,1],[1,3,1,2],[2,3,2,1],[2,1,1,0]],[[0,3,2,1],[1,3,1,2],[2,3,2,1],[1,2,0,0]],[[0,2,3,1],[1,3,1,2],[2,3,2,1],[1,2,0,0]],[[0,2,2,2],[1,3,1,2],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,4,1,2],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,3,1,3],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,3,1,2],[3,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,3,1,2],[2,4,2,1],[1,2,0,0]],[[0,2,2,1],[1,3,1,2],[2,3,2,1],[2,2,0,0]],[[0,3,2,1],[1,3,1,2],[2,3,2,2],[0,0,1,1]],[[0,2,3,1],[1,3,1,2],[2,3,2,2],[0,0,1,1]],[[0,2,2,2],[1,3,1,2],[2,3,2,2],[0,0,1,1]],[[0,2,2,1],[1,4,1,2],[2,3,2,2],[0,0,1,1]],[[0,2,2,1],[1,3,1,3],[2,3,2,2],[0,0,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,2,3],[0,0,1,1]],[[0,2,2,1],[1,3,1,2],[2,3,2,2],[0,0,1,2]],[[0,3,2,1],[1,3,1,2],[2,3,2,2],[0,0,2,0]],[[0,2,3,1],[1,3,1,2],[2,3,2,2],[0,0,2,0]],[[0,2,2,2],[1,3,1,2],[2,3,2,2],[0,0,2,0]],[[0,2,2,1],[1,4,1,2],[2,3,2,2],[0,0,2,0]],[[0,2,2,1],[1,3,1,3],[2,3,2,2],[0,0,2,0]],[[0,2,2,1],[1,3,1,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,0],[2,4,3,2],[0,3,2,1],[1,1,0,0]],[[1,2,3,0],[2,3,3,2],[0,3,2,1],[1,1,0,0]],[[1,3,2,0],[2,3,3,2],[0,3,2,1],[1,1,0,0]],[[2,2,2,0],[2,3,3,2],[0,3,2,1],[1,1,0,0]],[[1,2,2,0],[2,4,3,2],[0,3,2,1],[0,2,0,0]],[[1,2,3,0],[2,3,3,2],[0,3,2,1],[0,2,0,0]],[[1,3,2,0],[2,3,3,2],[0,3,2,1],[0,2,0,0]],[[2,2,2,0],[2,3,3,2],[0,3,2,1],[0,2,0,0]],[[0,3,2,1],[1,3,1,2],[2,3,3,0],[0,0,2,1]],[[0,2,3,1],[1,3,1,2],[2,3,3,0],[0,0,2,1]],[[0,2,2,2],[1,3,1,2],[2,3,3,0],[0,0,2,1]],[[0,2,2,1],[1,4,1,2],[2,3,3,0],[0,0,2,1]],[[0,2,2,1],[1,3,1,3],[2,3,3,0],[0,0,2,1]],[[0,3,2,1],[1,3,1,2],[2,3,3,1],[0,0,1,1]],[[0,2,3,1],[1,3,1,2],[2,3,3,1],[0,0,1,1]],[[0,2,2,2],[1,3,1,2],[2,3,3,1],[0,0,1,1]],[[0,2,2,1],[1,4,1,2],[2,3,3,1],[0,0,1,1]],[[0,2,2,1],[1,3,1,3],[2,3,3,1],[0,0,1,1]],[[0,3,2,1],[1,3,1,2],[2,3,3,1],[0,0,2,0]],[[0,2,3,1],[1,3,1,2],[2,3,3,1],[0,0,2,0]],[[0,2,2,2],[1,3,1,2],[2,3,3,1],[0,0,2,0]],[[0,2,2,1],[1,4,1,2],[2,3,3,1],[0,0,2,0]],[[0,2,2,1],[1,3,1,3],[2,3,3,1],[0,0,2,0]],[[0,3,2,1],[1,3,1,2],[2,3,3,1],[0,2,0,0]],[[0,2,3,1],[1,3,1,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,2],[1,3,1,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,4,1,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,3,1,3],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,3,1,2],[3,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,3,1,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,0],[2,4,3,2],[0,3,1,1],[1,2,0,0]],[[1,2,3,0],[2,3,3,2],[0,3,1,1],[1,2,0,0]],[[1,3,2,0],[2,3,3,2],[0,3,1,1],[1,2,0,0]],[[2,2,2,0],[2,3,3,2],[0,3,1,1],[1,2,0,0]],[[1,2,2,0],[2,4,3,2],[0,3,1,1],[1,1,1,0]],[[1,2,3,0],[2,3,3,2],[0,3,1,1],[1,1,1,0]],[[1,3,2,0],[2,3,3,2],[0,3,1,1],[1,1,1,0]],[[2,2,2,0],[2,3,3,2],[0,3,1,1],[1,1,1,0]],[[1,2,2,0],[2,4,3,2],[0,3,1,1],[1,1,0,1]],[[1,2,3,0],[2,3,3,2],[0,3,1,1],[1,1,0,1]],[[1,3,2,0],[2,3,3,2],[0,3,1,1],[1,1,0,1]],[[2,2,2,0],[2,3,3,2],[0,3,1,1],[1,1,0,1]],[[1,2,2,0],[2,4,3,2],[0,3,1,1],[1,0,2,0]],[[1,2,3,0],[2,3,3,2],[0,3,1,1],[1,0,2,0]],[[0,3,2,1],[1,3,1,2],[2,3,3,1],[1,1,0,0]],[[0,2,3,1],[1,3,1,2],[2,3,3,1],[1,1,0,0]],[[0,2,2,2],[1,3,1,2],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,4,1,2],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,3,1,3],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,3,1,2],[3,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,3,1,2],[2,4,3,1],[1,1,0,0]],[[0,2,2,1],[1,3,1,2],[2,3,3,1],[2,1,0,0]],[[1,3,2,0],[2,3,3,2],[0,3,1,1],[1,0,2,0]],[[2,2,2,0],[2,3,3,2],[0,3,1,1],[1,0,2,0]],[[1,2,2,0],[2,4,3,2],[0,3,1,1],[1,0,1,1]],[[1,2,3,0],[2,3,3,2],[0,3,1,1],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[0,3,1,1],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[0,3,1,1],[1,0,1,1]],[[1,2,2,0],[2,4,3,2],[0,3,1,1],[0,2,1,0]],[[1,2,3,0],[2,3,3,2],[0,3,1,1],[0,2,1,0]],[[1,3,2,0],[2,3,3,2],[0,3,1,1],[0,2,1,0]],[[2,2,2,0],[2,3,3,2],[0,3,1,1],[0,2,1,0]],[[1,2,2,0],[2,4,3,2],[0,3,1,1],[0,2,0,1]],[[1,2,3,0],[2,3,3,2],[0,3,1,1],[0,2,0,1]],[[1,3,2,0],[2,3,3,2],[0,3,1,1],[0,2,0,1]],[[2,2,2,0],[2,3,3,2],[0,3,1,1],[0,2,0,1]],[[1,2,2,0],[2,4,3,2],[0,3,1,1],[0,1,2,0]],[[1,2,3,0],[2,3,3,2],[0,3,1,1],[0,1,2,0]],[[1,3,2,0],[2,3,3,2],[0,3,1,1],[0,1,2,0]],[[2,2,2,0],[2,3,3,2],[0,3,1,1],[0,1,2,0]],[[1,2,2,0],[2,4,3,2],[0,3,1,1],[0,1,1,1]],[[1,2,3,0],[2,3,3,2],[0,3,1,1],[0,1,1,1]],[[1,3,2,0],[2,3,3,2],[0,3,1,1],[0,1,1,1]],[[2,2,2,0],[2,3,3,2],[0,3,1,1],[0,1,1,1]],[[1,2,2,0],[2,4,3,2],[0,3,1,0],[1,2,0,1]],[[1,3,2,0],[2,3,3,2],[0,3,1,0],[1,2,0,1]],[[2,2,2,0],[2,3,3,2],[0,3,1,0],[1,2,0,1]],[[1,2,2,0],[2,4,3,2],[0,3,1,0],[1,1,1,1]],[[1,2,3,0],[2,3,3,2],[0,3,1,0],[1,1,1,1]],[[1,3,2,0],[2,3,3,2],[0,3,1,0],[1,1,1,1]],[[2,2,2,0],[2,3,3,2],[0,3,1,0],[1,1,1,1]],[[1,2,2,0],[2,4,3,2],[0,3,1,0],[1,0,2,1]],[[1,2,3,0],[2,3,3,2],[0,3,1,0],[1,0,2,1]],[[1,3,2,0],[2,3,3,2],[0,3,1,0],[1,0,2,1]],[[2,2,2,0],[2,3,3,2],[0,3,1,0],[1,0,2,1]],[[1,2,2,0],[2,4,3,2],[0,3,1,0],[0,2,1,1]],[[1,2,3,0],[2,3,3,2],[0,3,1,0],[0,2,1,1]],[[1,3,2,0],[2,3,3,2],[0,3,1,0],[0,2,1,1]],[[2,2,2,0],[2,3,3,2],[0,3,1,0],[0,2,1,1]],[[1,2,2,0],[2,4,3,2],[0,3,1,0],[0,1,2,1]],[[1,2,3,0],[2,3,3,2],[0,3,1,0],[0,1,2,1]],[[1,3,2,0],[2,3,3,2],[0,3,1,0],[0,1,2,1]],[[2,2,2,0],[2,3,3,2],[0,3,1,0],[0,1,2,1]],[[1,2,2,0],[2,4,3,2],[0,3,0,2],[1,2,0,0]],[[1,2,3,0],[2,3,3,2],[0,3,0,2],[1,2,0,0]],[[1,3,2,0],[2,3,3,2],[0,3,0,2],[1,2,0,0]],[[0,3,2,1],[1,3,1,2],[2,3,3,2],[0,0,0,1]],[[0,2,3,1],[1,3,1,2],[2,3,3,2],[0,0,0,1]],[[0,2,2,2],[1,3,1,2],[2,3,3,2],[0,0,0,1]],[[0,2,2,1],[1,4,1,2],[2,3,3,2],[0,0,0,1]],[[0,2,2,1],[1,3,1,3],[2,3,3,2],[0,0,0,1]],[[0,2,2,1],[1,3,1,2],[2,3,3,3],[0,0,0,1]],[[2,2,2,0],[2,3,3,2],[0,3,0,2],[1,2,0,0]],[[1,2,2,0],[2,4,3,2],[0,3,0,2],[1,1,1,0]],[[1,2,3,0],[2,3,3,2],[0,3,0,2],[1,1,1,0]],[[1,3,2,0],[2,3,3,2],[0,3,0,2],[1,1,1,0]],[[2,2,2,0],[2,3,3,2],[0,3,0,2],[1,1,1,0]],[[1,2,2,0],[2,4,3,2],[0,3,0,2],[1,1,0,1]],[[1,2,3,0],[2,3,3,2],[0,3,0,2],[1,1,0,1]],[[1,3,2,0],[2,3,3,2],[0,3,0,2],[1,1,0,1]],[[2,2,2,0],[2,3,3,2],[0,3,0,2],[1,1,0,1]],[[1,2,2,0],[2,4,3,2],[0,3,0,2],[1,0,2,0]],[[1,2,3,0],[2,3,3,2],[0,3,0,2],[1,0,2,0]],[[1,3,2,0],[2,3,3,2],[0,3,0,2],[1,0,2,0]],[[2,2,2,0],[2,3,3,2],[0,3,0,2],[1,0,2,0]],[[1,2,2,0],[2,4,3,2],[0,3,0,2],[1,0,1,1]],[[1,2,3,0],[2,3,3,2],[0,3,0,2],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[0,3,0,2],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[0,3,0,2],[1,0,1,1]],[[1,2,2,0],[2,4,3,2],[0,3,0,2],[0,2,1,0]],[[1,2,3,0],[2,3,3,2],[0,3,0,2],[0,2,1,0]],[[1,3,2,0],[2,3,3,2],[0,3,0,2],[0,2,1,0]],[[2,2,2,0],[2,3,3,2],[0,3,0,2],[0,2,1,0]],[[1,2,2,0],[2,4,3,2],[0,3,0,2],[0,2,0,1]],[[1,2,3,0],[2,3,3,2],[0,3,0,2],[0,2,0,1]],[[1,3,2,0],[2,3,3,2],[0,3,0,2],[0,2,0,1]],[[2,2,2,0],[2,3,3,2],[0,3,0,2],[0,2,0,1]],[[1,2,2,0],[2,4,3,2],[0,3,0,2],[0,1,2,0]],[[1,2,3,0],[2,3,3,2],[0,3,0,2],[0,1,2,0]],[[1,3,2,0],[2,3,3,2],[0,3,0,2],[0,1,2,0]],[[2,2,2,0],[2,3,3,2],[0,3,0,2],[0,1,2,0]],[[1,2,2,0],[2,4,3,2],[0,3,0,2],[0,1,1,1]],[[1,2,3,0],[2,3,3,2],[0,3,0,2],[0,1,1,1]],[[1,3,2,0],[2,3,3,2],[0,3,0,2],[0,1,1,1]],[[2,2,2,0],[2,3,3,2],[0,3,0,2],[0,1,1,1]],[[1,2,2,0],[2,4,3,2],[0,3,0,1],[1,1,2,0]],[[1,2,3,0],[2,3,3,2],[0,3,0,1],[1,1,2,0]],[[1,3,2,0],[2,3,3,2],[0,3,0,1],[1,1,2,0]],[[2,2,2,0],[2,3,3,2],[0,3,0,1],[1,1,2,0]],[[1,2,2,0],[2,4,3,2],[0,3,0,1],[0,2,2,0]],[[1,2,3,0],[2,3,3,2],[0,3,0,1],[0,2,2,0]],[[1,3,2,0],[2,3,3,2],[0,3,0,1],[0,2,2,0]],[[2,2,2,0],[2,3,3,2],[0,3,0,1],[0,2,2,0]],[[1,2,2,0],[2,4,3,2],[0,3,0,0],[1,1,2,1]],[[1,2,3,0],[2,3,3,2],[0,3,0,0],[1,1,2,1]],[[1,3,2,0],[2,3,3,2],[0,3,0,0],[1,1,2,1]],[[2,2,2,0],[2,3,3,2],[0,3,0,0],[1,1,2,1]],[[1,2,2,0],[2,4,3,2],[0,3,0,0],[0,2,2,1]],[[1,2,3,0],[2,3,3,2],[0,3,0,0],[0,2,2,1]],[[1,3,2,0],[2,3,3,2],[0,3,0,0],[0,2,2,1]],[[2,2,2,0],[2,3,3,2],[0,3,0,0],[0,2,2,1]],[[1,2,2,0],[2,3,3,2],[0,2,3,3],[0,0,0,1]],[[1,2,2,0],[2,3,3,3],[0,2,3,2],[0,0,0,1]],[[1,2,2,0],[2,3,4,2],[0,2,3,2],[0,0,0,1]],[[1,2,3,0],[2,3,3,2],[0,2,3,2],[0,0,0,1]],[[1,3,2,0],[2,3,3,2],[0,2,3,2],[0,0,0,1]],[[2,2,2,0],[2,3,3,2],[0,2,3,2],[0,0,0,1]],[[1,2,2,0],[2,3,3,3],[0,2,3,1],[0,0,2,0]],[[1,2,2,0],[2,3,4,2],[0,2,3,1],[0,0,2,0]],[[1,2,3,0],[2,3,3,2],[0,2,3,1],[0,0,2,0]],[[1,3,2,0],[2,3,3,2],[0,2,3,1],[0,0,2,0]],[[2,2,2,0],[2,3,3,2],[0,2,3,1],[0,0,2,0]],[[1,2,2,0],[2,3,3,3],[0,2,3,1],[0,0,1,1]],[[1,2,2,0],[2,3,4,2],[0,2,3,1],[0,0,1,1]],[[1,2,3,0],[2,3,3,2],[0,2,3,1],[0,0,1,1]],[[1,3,2,0],[2,3,3,2],[0,2,3,1],[0,0,1,1]],[[2,2,2,0],[2,3,3,2],[0,2,3,1],[0,0,1,1]],[[1,2,2,0],[2,3,4,2],[0,2,3,0],[0,0,2,1]],[[1,2,3,0],[2,3,3,2],[0,2,3,0],[0,0,2,1]],[[1,3,2,0],[2,3,3,2],[0,2,3,0],[0,0,2,1]],[[2,2,2,0],[2,3,3,2],[0,2,3,0],[0,0,2,1]],[[0,3,2,1],[1,3,2,0],[1,1,3,1],[1,2,2,1]],[[0,2,3,1],[1,3,2,0],[1,1,3,1],[1,2,2,1]],[[0,2,2,2],[1,3,2,0],[1,1,3,1],[1,2,2,1]],[[0,2,2,1],[1,4,2,0],[1,1,3,1],[1,2,2,1]],[[0,3,2,1],[1,3,2,0],[1,1,3,2],[1,2,1,1]],[[0,2,3,1],[1,3,2,0],[1,1,3,2],[1,2,1,1]],[[0,2,2,2],[1,3,2,0],[1,1,3,2],[1,2,1,1]],[[0,2,2,1],[1,4,2,0],[1,1,3,2],[1,2,1,1]],[[0,3,2,1],[1,3,2,0],[1,1,3,2],[1,2,2,0]],[[0,2,3,1],[1,3,2,0],[1,1,3,2],[1,2,2,0]],[[0,2,2,2],[1,3,2,0],[1,1,3,2],[1,2,2,0]],[[0,2,2,1],[1,4,2,0],[1,1,3,2],[1,2,2,0]],[[0,3,2,1],[1,3,2,0],[1,2,3,1],[1,1,2,1]],[[0,2,3,1],[1,3,2,0],[1,2,3,1],[1,1,2,1]],[[0,2,2,2],[1,3,2,0],[1,2,3,1],[1,1,2,1]],[[0,2,2,1],[1,4,2,0],[1,2,3,1],[1,1,2,1]],[[0,3,2,1],[1,3,2,0],[1,2,3,1],[1,2,1,1]],[[0,2,3,1],[1,3,2,0],[1,2,3,1],[1,2,1,1]],[[0,2,2,2],[1,3,2,0],[1,2,3,1],[1,2,1,1]],[[0,2,2,1],[1,4,2,0],[1,2,3,1],[1,2,1,1]],[[0,3,2,1],[1,3,2,0],[1,2,3,2],[1,1,1,1]],[[0,2,3,1],[1,3,2,0],[1,2,3,2],[1,1,1,1]],[[0,2,2,2],[1,3,2,0],[1,2,3,2],[1,1,1,1]],[[0,2,2,1],[1,4,2,0],[1,2,3,2],[1,1,1,1]],[[0,3,2,1],[1,3,2,0],[1,2,3,2],[1,1,2,0]],[[0,2,3,1],[1,3,2,0],[1,2,3,2],[1,1,2,0]],[[0,2,2,2],[1,3,2,0],[1,2,3,2],[1,1,2,0]],[[0,2,2,1],[1,4,2,0],[1,2,3,2],[1,1,2,0]],[[0,3,2,1],[1,3,2,0],[1,2,3,2],[1,2,0,1]],[[0,2,3,1],[1,3,2,0],[1,2,3,2],[1,2,0,1]],[[0,2,2,2],[1,3,2,0],[1,2,3,2],[1,2,0,1]],[[0,2,2,1],[1,4,2,0],[1,2,3,2],[1,2,0,1]],[[0,3,2,1],[1,3,2,0],[1,2,3,2],[1,2,1,0]],[[0,2,3,1],[1,3,2,0],[1,2,3,2],[1,2,1,0]],[[0,2,2,2],[1,3,2,0],[1,2,3,2],[1,2,1,0]],[[0,2,2,1],[1,4,2,0],[1,2,3,2],[1,2,1,0]],[[0,3,2,1],[1,3,2,0],[1,3,0,2],[1,2,2,1]],[[0,2,3,1],[1,3,2,0],[1,3,0,2],[1,2,2,1]],[[0,2,2,2],[1,3,2,0],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,4,2,0],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,2,0],[1,4,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,2,0],[1,3,0,3],[1,2,2,1]],[[0,2,2,1],[1,3,2,0],[1,3,0,2],[2,2,2,1]],[[0,2,2,1],[1,3,2,0],[1,3,0,2],[1,3,2,1]],[[0,2,2,1],[1,3,2,0],[1,3,0,2],[1,2,3,1]],[[0,2,2,1],[1,3,2,0],[1,3,0,2],[1,2,2,2]],[[0,3,2,1],[1,3,2,0],[1,3,1,1],[1,2,2,1]],[[0,2,3,1],[1,3,2,0],[1,3,1,1],[1,2,2,1]],[[0,2,2,2],[1,3,2,0],[1,3,1,1],[1,2,2,1]],[[0,2,2,1],[1,4,2,0],[1,3,1,1],[1,2,2,1]],[[0,2,2,1],[1,3,2,0],[1,4,1,1],[1,2,2,1]],[[0,2,2,1],[1,3,2,0],[1,3,1,1],[2,2,2,1]],[[0,2,2,1],[1,3,2,0],[1,3,1,1],[1,3,2,1]],[[0,2,2,1],[1,3,2,0],[1,3,1,1],[1,2,3,1]],[[0,2,2,1],[1,3,2,0],[1,3,1,1],[1,2,2,2]],[[0,3,2,1],[1,3,2,0],[1,3,1,2],[1,2,2,0]],[[0,2,3,1],[1,3,2,0],[1,3,1,2],[1,2,2,0]],[[0,2,2,2],[1,3,2,0],[1,3,1,2],[1,2,2,0]],[[0,2,2,1],[1,4,2,0],[1,3,1,2],[1,2,2,0]],[[0,2,2,1],[1,3,2,0],[1,4,1,2],[1,2,2,0]],[[0,2,2,1],[1,3,2,0],[1,3,1,2],[2,2,2,0]],[[0,2,2,1],[1,3,2,0],[1,3,1,2],[1,3,2,0]],[[0,2,2,1],[1,3,2,0],[1,3,1,2],[1,2,3,0]],[[0,3,2,1],[1,3,2,0],[1,3,2,1],[1,1,2,1]],[[0,2,3,1],[1,3,2,0],[1,3,2,1],[1,1,2,1]],[[0,2,2,2],[1,3,2,0],[1,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,4,2,0],[1,3,2,1],[1,1,2,1]],[[0,2,2,1],[1,3,2,0],[1,4,2,1],[1,1,2,1]],[[0,3,2,1],[1,3,2,0],[1,3,2,1],[1,2,1,1]],[[0,2,3,1],[1,3,2,0],[1,3,2,1],[1,2,1,1]],[[0,2,2,2],[1,3,2,0],[1,3,2,1],[1,2,1,1]],[[0,2,2,1],[1,4,2,0],[1,3,2,1],[1,2,1,1]],[[0,2,2,1],[1,3,2,0],[1,4,2,1],[1,2,1,1]],[[0,2,2,1],[1,3,2,0],[1,3,2,1],[2,2,1,1]],[[0,2,2,1],[1,3,2,0],[1,3,2,1],[1,3,1,1]],[[0,3,2,1],[1,3,2,0],[1,3,2,2],[1,1,1,1]],[[0,2,3,1],[1,3,2,0],[1,3,2,2],[1,1,1,1]],[[0,2,2,2],[1,3,2,0],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[1,4,2,0],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[1,3,2,0],[1,4,2,2],[1,1,1,1]],[[0,3,2,1],[1,3,2,0],[1,3,2,2],[1,1,2,0]],[[0,2,3,1],[1,3,2,0],[1,3,2,2],[1,1,2,0]],[[0,2,2,2],[1,3,2,0],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,4,2,0],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[1,3,2,0],[1,4,2,2],[1,1,2,0]],[[0,3,2,1],[1,3,2,0],[1,3,2,2],[1,2,0,1]],[[0,2,3,1],[1,3,2,0],[1,3,2,2],[1,2,0,1]],[[0,2,2,2],[1,3,2,0],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[1,4,2,0],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[1,3,2,0],[1,4,2,2],[1,2,0,1]],[[0,2,2,1],[1,3,2,0],[1,3,2,2],[2,2,0,1]],[[0,2,2,1],[1,3,2,0],[1,3,2,2],[1,3,0,1]],[[0,3,2,1],[1,3,2,0],[1,3,2,2],[1,2,1,0]],[[0,2,3,1],[1,3,2,0],[1,3,2,2],[1,2,1,0]],[[0,2,2,2],[1,3,2,0],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[1,4,2,0],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[1,3,2,0],[1,4,2,2],[1,2,1,0]],[[0,2,2,1],[1,3,2,0],[1,3,2,2],[2,2,1,0]],[[0,2,2,1],[1,3,2,0],[1,3,2,2],[1,3,1,0]],[[0,3,2,1],[1,3,2,0],[1,3,3,2],[1,2,0,0]],[[0,2,3,1],[1,3,2,0],[1,3,3,2],[1,2,0,0]],[[0,2,2,2],[1,3,2,0],[1,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,4,2,0],[1,3,3,2],[1,2,0,0]],[[0,2,2,1],[1,3,2,0],[1,4,3,2],[1,2,0,0]],[[1,2,2,0],[2,3,3,3],[0,2,2,2],[0,0,2,0]],[[1,2,2,0],[2,3,4,2],[0,2,2,2],[0,0,2,0]],[[1,2,3,0],[2,3,3,2],[0,2,2,2],[0,0,2,0]],[[1,3,2,0],[2,3,3,2],[0,2,2,2],[0,0,2,0]],[[2,2,2,0],[2,3,3,2],[0,2,2,2],[0,0,2,0]],[[1,2,2,0],[2,3,3,2],[0,2,2,3],[0,0,1,1]],[[1,2,2,0],[2,3,3,3],[0,2,2,2],[0,0,1,1]],[[1,2,2,0],[2,3,4,2],[0,2,2,2],[0,0,1,1]],[[1,2,3,0],[2,3,3,2],[0,2,2,2],[0,0,1,1]],[[1,3,2,0],[2,3,3,2],[0,2,2,2],[0,0,1,1]],[[2,2,2,0],[2,3,3,2],[0,2,2,2],[0,0,1,1]],[[0,3,2,1],[1,3,2,0],[2,0,3,1],[1,2,2,1]],[[0,2,3,1],[1,3,2,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,2],[1,3,2,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[1,4,2,0],[2,0,3,1],[1,2,2,1]],[[0,3,2,1],[1,3,2,0],[2,0,3,2],[1,2,1,1]],[[0,2,3,1],[1,3,2,0],[2,0,3,2],[1,2,1,1]],[[0,2,2,2],[1,3,2,0],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[1,4,2,0],[2,0,3,2],[1,2,1,1]],[[0,3,2,1],[1,3,2,0],[2,0,3,2],[1,2,2,0]],[[0,2,3,1],[1,3,2,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,2],[1,3,2,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[1,4,2,0],[2,0,3,2],[1,2,2,0]],[[0,3,2,1],[1,3,2,0],[2,1,3,1],[0,2,2,1]],[[0,2,3,1],[1,3,2,0],[2,1,3,1],[0,2,2,1]],[[0,2,2,2],[1,3,2,0],[2,1,3,1],[0,2,2,1]],[[0,2,2,1],[1,4,2,0],[2,1,3,1],[0,2,2,1]],[[0,3,2,1],[1,3,2,0],[2,1,3,2],[0,2,1,1]],[[0,2,3,1],[1,3,2,0],[2,1,3,2],[0,2,1,1]],[[0,2,2,2],[1,3,2,0],[2,1,3,2],[0,2,1,1]],[[0,2,2,1],[1,4,2,0],[2,1,3,2],[0,2,1,1]],[[0,3,2,1],[1,3,2,0],[2,1,3,2],[0,2,2,0]],[[0,2,3,1],[1,3,2,0],[2,1,3,2],[0,2,2,0]],[[0,2,2,2],[1,3,2,0],[2,1,3,2],[0,2,2,0]],[[0,2,2,1],[1,4,2,0],[2,1,3,2],[0,2,2,0]],[[0,2,2,1],[1,3,2,0],[3,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,2,0,3],[1,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,2,0,2],[2,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,2,0,2],[1,3,2,1]],[[0,2,2,1],[1,3,2,0],[2,2,0,2],[1,2,3,1]],[[0,2,2,1],[1,3,2,0],[2,2,0,2],[1,2,2,2]],[[0,2,2,1],[1,3,2,0],[3,2,1,1],[1,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,2,1,1],[2,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,2,1,1],[1,3,2,1]],[[0,2,2,1],[1,3,2,0],[2,2,1,1],[1,2,3,1]],[[0,2,2,1],[1,3,2,0],[2,2,1,1],[1,2,2,2]],[[0,2,2,1],[1,3,2,0],[3,2,1,2],[1,2,2,0]],[[0,2,2,1],[1,3,2,0],[2,2,1,2],[2,2,2,0]],[[0,2,2,1],[1,3,2,0],[2,2,1,2],[1,3,2,0]],[[0,2,2,1],[1,3,2,0],[2,2,1,2],[1,2,3,0]],[[0,2,2,1],[1,3,2,0],[3,2,2,1],[1,2,1,1]],[[0,2,2,1],[1,3,2,0],[2,2,2,1],[2,2,1,1]],[[0,2,2,1],[1,3,2,0],[2,2,2,1],[1,3,1,1]],[[0,2,2,1],[1,3,2,0],[3,2,2,2],[1,2,0,1]],[[0,2,2,1],[1,3,2,0],[2,2,2,2],[2,2,0,1]],[[0,2,2,1],[1,3,2,0],[2,2,2,2],[1,3,0,1]],[[0,2,2,1],[1,3,2,0],[3,2,2,2],[1,2,1,0]],[[0,2,2,1],[1,3,2,0],[2,2,2,2],[2,2,1,0]],[[0,2,2,1],[1,3,2,0],[2,2,2,2],[1,3,1,0]],[[0,3,2,1],[1,3,2,0],[2,2,3,1],[0,1,2,1]],[[0,2,3,1],[1,3,2,0],[2,2,3,1],[0,1,2,1]],[[0,2,2,2],[1,3,2,0],[2,2,3,1],[0,1,2,1]],[[0,2,2,1],[1,4,2,0],[2,2,3,1],[0,1,2,1]],[[0,3,2,1],[1,3,2,0],[2,2,3,1],[0,2,1,1]],[[0,2,3,1],[1,3,2,0],[2,2,3,1],[0,2,1,1]],[[0,2,2,2],[1,3,2,0],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[1,4,2,0],[2,2,3,1],[0,2,1,1]],[[0,3,2,1],[1,3,2,0],[2,2,3,1],[1,0,2,1]],[[0,2,3,1],[1,3,2,0],[2,2,3,1],[1,0,2,1]],[[0,2,2,2],[1,3,2,0],[2,2,3,1],[1,0,2,1]],[[0,2,2,1],[1,4,2,0],[2,2,3,1],[1,0,2,1]],[[0,3,2,1],[1,3,2,0],[2,2,3,1],[1,1,1,1]],[[0,2,3,1],[1,3,2,0],[2,2,3,1],[1,1,1,1]],[[0,2,2,2],[1,3,2,0],[2,2,3,1],[1,1,1,1]],[[0,2,2,1],[1,4,2,0],[2,2,3,1],[1,1,1,1]],[[0,3,2,1],[1,3,2,0],[2,2,3,2],[0,0,2,1]],[[0,2,3,1],[1,3,2,0],[2,2,3,2],[0,0,2,1]],[[0,2,2,2],[1,3,2,0],[2,2,3,2],[0,0,2,1]],[[0,2,2,1],[1,4,2,0],[2,2,3,2],[0,0,2,1]],[[0,3,2,1],[1,3,2,0],[2,2,3,2],[0,1,1,1]],[[0,2,3,1],[1,3,2,0],[2,2,3,2],[0,1,1,1]],[[0,2,2,2],[1,3,2,0],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[1,4,2,0],[2,2,3,2],[0,1,1,1]],[[0,3,2,1],[1,3,2,0],[2,2,3,2],[0,1,2,0]],[[0,2,3,1],[1,3,2,0],[2,2,3,2],[0,1,2,0]],[[0,2,2,2],[1,3,2,0],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[1,4,2,0],[2,2,3,2],[0,1,2,0]],[[0,3,2,1],[1,3,2,0],[2,2,3,2],[0,2,0,1]],[[0,2,3,1],[1,3,2,0],[2,2,3,2],[0,2,0,1]],[[0,2,2,2],[1,3,2,0],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[1,4,2,0],[2,2,3,2],[0,2,0,1]],[[0,3,2,1],[1,3,2,0],[2,2,3,2],[0,2,1,0]],[[0,2,3,1],[1,3,2,0],[2,2,3,2],[0,2,1,0]],[[0,2,2,2],[1,3,2,0],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[1,4,2,0],[2,2,3,2],[0,2,1,0]],[[0,3,2,1],[1,3,2,0],[2,2,3,2],[1,0,1,1]],[[0,2,3,1],[1,3,2,0],[2,2,3,2],[1,0,1,1]],[[0,2,2,2],[1,3,2,0],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[1,4,2,0],[2,2,3,2],[1,0,1,1]],[[0,3,2,1],[1,3,2,0],[2,2,3,2],[1,0,2,0]],[[0,2,3,1],[1,3,2,0],[2,2,3,2],[1,0,2,0]],[[0,2,2,2],[1,3,2,0],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[1,4,2,0],[2,2,3,2],[1,0,2,0]],[[0,3,2,1],[1,3,2,0],[2,2,3,2],[1,1,0,1]],[[0,2,3,1],[1,3,2,0],[2,2,3,2],[1,1,0,1]],[[0,2,2,2],[1,3,2,0],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[1,4,2,0],[2,2,3,2],[1,1,0,1]],[[0,3,2,1],[1,3,2,0],[2,2,3,2],[1,1,1,0]],[[0,2,3,1],[1,3,2,0],[2,2,3,2],[1,1,1,0]],[[0,2,2,2],[1,3,2,0],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[1,4,2,0],[2,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,3,3,2],[0,1,3,3],[1,0,0,1]],[[1,2,2,0],[2,3,3,3],[0,1,3,2],[1,0,0,1]],[[1,2,2,0],[2,3,4,2],[0,1,3,2],[1,0,0,1]],[[1,2,3,0],[2,3,3,2],[0,1,3,2],[1,0,0,1]],[[1,3,2,0],[2,3,3,2],[0,1,3,2],[1,0,0,1]],[[2,2,2,0],[2,3,3,2],[0,1,3,2],[1,0,0,1]],[[0,2,2,1],[1,3,2,0],[3,3,0,1],[1,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,3,0,1],[2,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,3,0,1],[1,3,2,1]],[[0,3,2,1],[1,3,2,0],[2,3,0,2],[0,2,2,1]],[[0,2,3,1],[1,3,2,0],[2,3,0,2],[0,2,2,1]],[[0,2,2,2],[1,3,2,0],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,4,2,0],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,3,2,0],[3,3,0,2],[0,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,4,0,2],[0,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,3,0,3],[0,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,3,0,2],[0,3,2,1]],[[0,2,2,1],[1,3,2,0],[2,3,0,2],[0,2,3,1]],[[0,2,2,1],[1,3,2,0],[2,3,0,2],[0,2,2,2]],[[0,3,2,1],[1,3,2,0],[2,3,0,2],[1,1,2,1]],[[0,2,3,1],[1,3,2,0],[2,3,0,2],[1,1,2,1]],[[0,2,2,2],[1,3,2,0],[2,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,4,2,0],[2,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,3,2,0],[3,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,3,2,0],[2,4,0,2],[1,1,2,1]],[[0,2,2,1],[1,3,2,0],[2,3,0,2],[2,1,2,1]],[[0,2,2,1],[1,3,2,0],[3,3,0,2],[1,2,2,0]],[[0,2,2,1],[1,3,2,0],[2,3,0,2],[2,2,2,0]],[[0,2,2,1],[1,3,2,0],[2,3,0,2],[1,3,2,0]],[[0,3,2,1],[1,3,2,0],[2,3,1,1],[0,2,2,1]],[[0,2,3,1],[1,3,2,0],[2,3,1,1],[0,2,2,1]],[[0,2,2,2],[1,3,2,0],[2,3,1,1],[0,2,2,1]],[[0,2,2,1],[1,4,2,0],[2,3,1,1],[0,2,2,1]],[[0,2,2,1],[1,3,2,0],[3,3,1,1],[0,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,4,1,1],[0,2,2,1]],[[0,2,2,1],[1,3,2,0],[2,3,1,1],[0,3,2,1]],[[0,2,2,1],[1,3,2,0],[2,3,1,1],[0,2,3,1]],[[0,2,2,1],[1,3,2,0],[2,3,1,1],[0,2,2,2]],[[0,3,2,1],[1,3,2,0],[2,3,1,1],[1,1,2,1]],[[0,2,3,1],[1,3,2,0],[2,3,1,1],[1,1,2,1]],[[0,2,2,2],[1,3,2,0],[2,3,1,1],[1,1,2,1]],[[0,2,2,1],[1,4,2,0],[2,3,1,1],[1,1,2,1]],[[0,2,2,1],[1,3,2,0],[3,3,1,1],[1,1,2,1]],[[0,2,2,1],[1,3,2,0],[2,4,1,1],[1,1,2,1]],[[0,2,2,1],[1,3,2,0],[2,3,1,1],[2,1,2,1]],[[0,3,2,1],[1,3,2,0],[2,3,1,2],[0,2,2,0]],[[0,2,3,1],[1,3,2,0],[2,3,1,2],[0,2,2,0]],[[0,2,2,2],[1,3,2,0],[2,3,1,2],[0,2,2,0]],[[0,2,2,1],[1,4,2,0],[2,3,1,2],[0,2,2,0]],[[0,2,2,1],[1,3,2,0],[3,3,1,2],[0,2,2,0]],[[0,2,2,1],[1,3,2,0],[2,4,1,2],[0,2,2,0]],[[0,2,2,1],[1,3,2,0],[2,3,1,2],[0,3,2,0]],[[0,2,2,1],[1,3,2,0],[2,3,1,2],[0,2,3,0]],[[0,3,2,1],[1,3,2,0],[2,3,1,2],[1,1,2,0]],[[0,2,3,1],[1,3,2,0],[2,3,1,2],[1,1,2,0]],[[0,2,2,2],[1,3,2,0],[2,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,4,2,0],[2,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,3,2,0],[3,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,3,2,0],[2,4,1,2],[1,1,2,0]],[[0,2,2,1],[1,3,2,0],[2,3,1,2],[2,1,2,0]],[[1,2,2,0],[2,3,3,2],[0,1,3,3],[0,1,0,1]],[[1,2,2,0],[2,3,3,3],[0,1,3,2],[0,1,0,1]],[[1,2,2,0],[2,3,4,2],[0,1,3,2],[0,1,0,1]],[[1,2,3,0],[2,3,3,2],[0,1,3,2],[0,1,0,1]],[[1,3,2,0],[2,3,3,2],[0,1,3,2],[0,1,0,1]],[[2,2,2,0],[2,3,3,2],[0,1,3,2],[0,1,0,1]],[[0,3,2,1],[1,3,2,0],[2,3,2,1],[0,1,2,1]],[[0,2,3,1],[1,3,2,0],[2,3,2,1],[0,1,2,1]],[[0,2,2,2],[1,3,2,0],[2,3,2,1],[0,1,2,1]],[[0,2,2,1],[1,4,2,0],[2,3,2,1],[0,1,2,1]],[[0,2,2,1],[1,3,2,0],[3,3,2,1],[0,1,2,1]],[[0,2,2,1],[1,3,2,0],[2,4,2,1],[0,1,2,1]],[[0,3,2,1],[1,3,2,0],[2,3,2,1],[0,2,1,1]],[[0,2,3,1],[1,3,2,0],[2,3,2,1],[0,2,1,1]],[[0,2,2,2],[1,3,2,0],[2,3,2,1],[0,2,1,1]],[[0,2,2,1],[1,4,2,0],[2,3,2,1],[0,2,1,1]],[[0,2,2,1],[1,3,2,0],[3,3,2,1],[0,2,1,1]],[[0,2,2,1],[1,3,2,0],[2,4,2,1],[0,2,1,1]],[[0,2,2,1],[1,3,2,0],[2,3,2,1],[0,3,1,1]],[[0,3,2,1],[1,3,2,0],[2,3,2,1],[1,0,2,1]],[[0,2,3,1],[1,3,2,0],[2,3,2,1],[1,0,2,1]],[[0,2,2,2],[1,3,2,0],[2,3,2,1],[1,0,2,1]],[[0,2,2,1],[1,4,2,0],[2,3,2,1],[1,0,2,1]],[[0,2,2,1],[1,3,2,0],[3,3,2,1],[1,0,2,1]],[[0,2,2,1],[1,3,2,0],[2,4,2,1],[1,0,2,1]],[[0,2,2,1],[1,3,2,0],[2,3,2,1],[2,0,2,1]],[[0,3,2,1],[1,3,2,0],[2,3,2,1],[1,1,1,1]],[[0,2,3,1],[1,3,2,0],[2,3,2,1],[1,1,1,1]],[[0,2,2,2],[1,3,2,0],[2,3,2,1],[1,1,1,1]],[[0,2,2,1],[1,4,2,0],[2,3,2,1],[1,1,1,1]],[[0,2,2,1],[1,3,2,0],[3,3,2,1],[1,1,1,1]],[[0,2,2,1],[1,3,2,0],[2,4,2,1],[1,1,1,1]],[[0,2,2,1],[1,3,2,0],[2,3,2,1],[2,1,1,1]],[[0,3,2,1],[1,3,2,0],[2,3,2,1],[1,2,0,1]],[[0,2,3,1],[1,3,2,0],[2,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,4,2,0],[2,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,3,2,0],[3,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,3,2,0],[2,4,2,1],[1,2,0,1]],[[0,2,2,1],[1,3,2,0],[2,3,2,1],[2,2,0,1]],[[0,3,2,1],[1,3,2,0],[2,3,2,2],[0,1,1,1]],[[0,2,3,1],[1,3,2,0],[2,3,2,2],[0,1,1,1]],[[0,2,2,2],[1,3,2,0],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,4,2,0],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,3,2,0],[3,3,2,2],[0,1,1,1]],[[0,2,2,1],[1,3,2,0],[2,4,2,2],[0,1,1,1]],[[0,3,2,1],[1,3,2,0],[2,3,2,2],[0,1,2,0]],[[0,2,3,1],[1,3,2,0],[2,3,2,2],[0,1,2,0]],[[0,2,2,2],[1,3,2,0],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,4,2,0],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,3,2,0],[3,3,2,2],[0,1,2,0]],[[0,2,2,1],[1,3,2,0],[2,4,2,2],[0,1,2,0]],[[0,3,2,1],[1,3,2,0],[2,3,2,2],[0,2,0,1]],[[0,2,3,1],[1,3,2,0],[2,3,2,2],[0,2,0,1]],[[0,2,2,2],[1,3,2,0],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,4,2,0],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,3,2,0],[3,3,2,2],[0,2,0,1]],[[0,2,2,1],[1,3,2,0],[2,4,2,2],[0,2,0,1]],[[0,2,2,1],[1,3,2,0],[2,3,2,2],[0,3,0,1]],[[0,3,2,1],[1,3,2,0],[2,3,2,2],[0,2,1,0]],[[0,2,3,1],[1,3,2,0],[2,3,2,2],[0,2,1,0]],[[0,2,2,2],[1,3,2,0],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,4,2,0],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,3,2,0],[3,3,2,2],[0,2,1,0]],[[0,2,2,1],[1,3,2,0],[2,4,2,2],[0,2,1,0]],[[0,2,2,1],[1,3,2,0],[2,3,2,2],[0,3,1,0]],[[0,3,2,1],[1,3,2,0],[2,3,2,2],[1,0,1,1]],[[0,2,3,1],[1,3,2,0],[2,3,2,2],[1,0,1,1]],[[0,2,2,2],[1,3,2,0],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,4,2,0],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,3,2,0],[3,3,2,2],[1,0,1,1]],[[0,2,2,1],[1,3,2,0],[2,4,2,2],[1,0,1,1]],[[0,2,2,1],[1,3,2,0],[2,3,2,2],[2,0,1,1]],[[0,3,2,1],[1,3,2,0],[2,3,2,2],[1,0,2,0]],[[0,2,3,1],[1,3,2,0],[2,3,2,2],[1,0,2,0]],[[0,2,2,2],[1,3,2,0],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,4,2,0],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,3,2,0],[3,3,2,2],[1,0,2,0]],[[0,2,2,1],[1,3,2,0],[2,4,2,2],[1,0,2,0]],[[0,2,2,1],[1,3,2,0],[2,3,2,2],[2,0,2,0]],[[0,3,2,1],[1,3,2,0],[2,3,2,2],[1,1,0,1]],[[0,2,3,1],[1,3,2,0],[2,3,2,2],[1,1,0,1]],[[0,2,2,2],[1,3,2,0],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,4,2,0],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,3,2,0],[3,3,2,2],[1,1,0,1]],[[0,2,2,1],[1,3,2,0],[2,4,2,2],[1,1,0,1]],[[0,2,2,1],[1,3,2,0],[2,3,2,2],[2,1,0,1]],[[0,3,2,1],[1,3,2,0],[2,3,2,2],[1,1,1,0]],[[0,2,3,1],[1,3,2,0],[2,3,2,2],[1,1,1,0]],[[0,2,2,2],[1,3,2,0],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,4,2,0],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,3,2,0],[3,3,2,2],[1,1,1,0]],[[0,2,2,1],[1,3,2,0],[2,4,2,2],[1,1,1,0]],[[0,2,2,1],[1,3,2,0],[2,3,2,2],[2,1,1,0]],[[1,2,2,0],[2,3,3,3],[0,1,3,1],[1,1,1,0]],[[1,2,2,0],[2,3,4,2],[0,1,3,1],[1,1,1,0]],[[1,2,3,0],[2,3,3,2],[0,1,3,1],[1,1,1,0]],[[1,3,2,0],[2,3,3,2],[0,1,3,1],[1,1,1,0]],[[0,3,2,1],[1,3,2,0],[2,3,2,2],[1,2,0,0]],[[0,2,3,1],[1,3,2,0],[2,3,2,2],[1,2,0,0]],[[0,2,2,2],[1,3,2,0],[2,3,2,2],[1,2,0,0]],[[0,2,2,1],[1,4,2,0],[2,3,2,2],[1,2,0,0]],[[0,2,2,1],[1,3,2,0],[3,3,2,2],[1,2,0,0]],[[0,2,2,1],[1,3,2,0],[2,4,2,2],[1,2,0,0]],[[0,2,2,1],[1,3,2,0],[2,3,2,2],[2,2,0,0]],[[2,2,2,0],[2,3,3,2],[0,1,3,1],[1,1,1,0]],[[1,2,2,0],[2,3,3,3],[0,1,3,1],[1,1,0,1]],[[1,2,2,0],[2,3,4,2],[0,1,3,1],[1,1,0,1]],[[1,2,3,0],[2,3,3,2],[0,1,3,1],[1,1,0,1]],[[1,3,2,0],[2,3,3,2],[0,1,3,1],[1,1,0,1]],[[2,2,2,0],[2,3,3,2],[0,1,3,1],[1,1,0,1]],[[1,2,2,0],[2,3,3,3],[0,1,3,1],[1,0,2,0]],[[1,2,2,0],[2,3,4,2],[0,1,3,1],[1,0,2,0]],[[1,2,3,0],[2,3,3,2],[0,1,3,1],[1,0,2,0]],[[1,3,2,0],[2,3,3,2],[0,1,3,1],[1,0,2,0]],[[2,2,2,0],[2,3,3,2],[0,1,3,1],[1,0,2,0]],[[1,2,2,0],[2,3,3,3],[0,1,3,1],[1,0,1,1]],[[1,2,2,0],[2,3,4,2],[0,1,3,1],[1,0,1,1]],[[1,2,3,0],[2,3,3,2],[0,1,3,1],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[0,1,3,1],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[0,1,3,1],[1,0,1,1]],[[0,3,2,1],[1,3,2,0],[2,3,3,1],[0,0,2,1]],[[0,2,3,1],[1,3,2,0],[2,3,3,1],[0,0,2,1]],[[0,2,2,2],[1,3,2,0],[2,3,3,1],[0,0,2,1]],[[0,2,2,1],[1,4,2,0],[2,3,3,1],[0,0,2,1]],[[1,2,2,0],[2,3,3,3],[0,1,3,1],[0,2,1,0]],[[1,2,2,0],[2,3,4,2],[0,1,3,1],[0,2,1,0]],[[1,2,3,0],[2,3,3,2],[0,1,3,1],[0,2,1,0]],[[1,3,2,0],[2,3,3,2],[0,1,3,1],[0,2,1,0]],[[2,2,2,0],[2,3,3,2],[0,1,3,1],[0,2,1,0]],[[1,2,2,0],[2,3,3,3],[0,1,3,1],[0,2,0,1]],[[1,2,2,0],[2,3,4,2],[0,1,3,1],[0,2,0,1]],[[1,2,3,0],[2,3,3,2],[0,1,3,1],[0,2,0,1]],[[1,3,2,0],[2,3,3,2],[0,1,3,1],[0,2,0,1]],[[2,2,2,0],[2,3,3,2],[0,1,3,1],[0,2,0,1]],[[1,2,2,0],[2,3,3,3],[0,1,3,1],[0,1,2,0]],[[1,2,2,0],[2,3,4,2],[0,1,3,1],[0,1,2,0]],[[1,2,3,0],[2,3,3,2],[0,1,3,1],[0,1,2,0]],[[1,3,2,0],[2,3,3,2],[0,1,3,1],[0,1,2,0]],[[2,2,2,0],[2,3,3,2],[0,1,3,1],[0,1,2,0]],[[1,2,2,0],[2,3,3,3],[0,1,3,1],[0,1,1,1]],[[1,2,2,0],[2,3,4,2],[0,1,3,1],[0,1,1,1]],[[1,2,3,0],[2,3,3,2],[0,1,3,1],[0,1,1,1]],[[1,3,2,0],[2,3,3,2],[0,1,3,1],[0,1,1,1]],[[2,2,2,0],[2,3,3,2],[0,1,3,1],[0,1,1,1]],[[1,2,2,0],[2,3,3,3],[0,1,3,1],[0,0,2,1]],[[1,2,2,0],[2,3,4,2],[0,1,3,1],[0,0,2,1]],[[1,2,3,0],[2,3,3,2],[0,1,3,1],[0,0,2,1]],[[1,3,2,0],[2,3,3,2],[0,1,3,1],[0,0,2,1]],[[2,2,2,0],[2,3,3,2],[0,1,3,1],[0,0,2,1]],[[1,2,2,0],[2,3,4,2],[0,1,3,0],[1,1,1,1]],[[0,3,2,1],[1,3,2,0],[2,3,3,2],[0,0,1,1]],[[0,2,3,1],[1,3,2,0],[2,3,3,2],[0,0,1,1]],[[0,2,2,2],[1,3,2,0],[2,3,3,2],[0,0,1,1]],[[0,2,2,1],[1,4,2,0],[2,3,3,2],[0,0,1,1]],[[0,3,2,1],[1,3,2,0],[2,3,3,2],[0,0,2,0]],[[0,2,3,1],[1,3,2,0],[2,3,3,2],[0,0,2,0]],[[0,2,2,2],[1,3,2,0],[2,3,3,2],[0,0,2,0]],[[0,2,2,1],[1,4,2,0],[2,3,3,2],[0,0,2,0]],[[1,2,3,0],[2,3,3,2],[0,1,3,0],[1,1,1,1]],[[1,3,2,0],[2,3,3,2],[0,1,3,0],[1,1,1,1]],[[2,2,2,0],[2,3,3,2],[0,1,3,0],[1,1,1,1]],[[1,2,2,0],[2,3,3,3],[0,1,3,0],[1,0,2,1]],[[1,2,2,0],[2,3,4,2],[0,1,3,0],[1,0,2,1]],[[1,2,3,0],[2,3,3,2],[0,1,3,0],[1,0,2,1]],[[1,3,2,0],[2,3,3,2],[0,1,3,0],[1,0,2,1]],[[2,2,2,0],[2,3,3,2],[0,1,3,0],[1,0,2,1]],[[0,3,2,1],[1,3,2,0],[2,3,3,2],[0,2,0,0]],[[0,2,3,1],[1,3,2,0],[2,3,3,2],[0,2,0,0]],[[0,2,2,2],[1,3,2,0],[2,3,3,2],[0,2,0,0]],[[0,2,2,1],[1,4,2,0],[2,3,3,2],[0,2,0,0]],[[0,2,2,1],[1,3,2,0],[3,3,3,2],[0,2,0,0]],[[0,2,2,1],[1,3,2,0],[2,4,3,2],[0,2,0,0]],[[1,2,2,0],[2,3,4,2],[0,1,3,0],[0,2,1,1]],[[1,2,3,0],[2,3,3,2],[0,1,3,0],[0,2,1,1]],[[1,3,2,0],[2,3,3,2],[0,1,3,0],[0,2,1,1]],[[2,2,2,0],[2,3,3,2],[0,1,3,0],[0,2,1,1]],[[1,2,2,0],[2,3,3,3],[0,1,3,0],[0,1,2,1]],[[1,2,2,0],[2,3,4,2],[0,1,3,0],[0,1,2,1]],[[1,2,3,0],[2,3,3,2],[0,1,3,0],[0,1,2,1]],[[1,3,2,0],[2,3,3,2],[0,1,3,0],[0,1,2,1]],[[2,2,2,0],[2,3,3,2],[0,1,3,0],[0,1,2,1]],[[1,2,2,0],[2,3,3,3],[0,1,2,2],[1,1,1,0]],[[1,2,2,0],[2,3,4,2],[0,1,2,2],[1,1,1,0]],[[0,3,2,1],[1,3,2,0],[2,3,3,2],[1,1,0,0]],[[0,2,3,1],[1,3,2,0],[2,3,3,2],[1,1,0,0]],[[0,2,2,2],[1,3,2,0],[2,3,3,2],[1,1,0,0]],[[0,2,2,1],[1,4,2,0],[2,3,3,2],[1,1,0,0]],[[0,2,2,1],[1,3,2,0],[3,3,3,2],[1,1,0,0]],[[0,2,2,1],[1,3,2,0],[2,4,3,2],[1,1,0,0]],[[0,2,2,1],[1,3,2,0],[2,3,3,2],[2,1,0,0]],[[1,2,3,0],[2,3,3,2],[0,1,2,2],[1,1,1,0]],[[1,3,2,0],[2,3,3,2],[0,1,2,2],[1,1,1,0]],[[2,2,2,0],[2,3,3,2],[0,1,2,2],[1,1,1,0]],[[1,2,2,0],[2,3,3,2],[0,1,2,3],[1,1,0,1]],[[1,2,2,0],[2,3,3,3],[0,1,2,2],[1,1,0,1]],[[1,2,2,0],[2,3,4,2],[0,1,2,2],[1,1,0,1]],[[1,2,3,0],[2,3,3,2],[0,1,2,2],[1,1,0,1]],[[1,3,2,0],[2,3,3,2],[0,1,2,2],[1,1,0,1]],[[2,2,2,0],[2,3,3,2],[0,1,2,2],[1,1,0,1]],[[1,2,2,0],[2,3,3,2],[0,1,2,3],[1,0,2,0]],[[1,2,2,0],[2,3,3,3],[0,1,2,2],[1,0,2,0]],[[1,2,2,0],[2,3,4,2],[0,1,2,2],[1,0,2,0]],[[1,2,3,0],[2,3,3,2],[0,1,2,2],[1,0,2,0]],[[1,3,2,0],[2,3,3,2],[0,1,2,2],[1,0,2,0]],[[2,2,2,0],[2,3,3,2],[0,1,2,2],[1,0,2,0]],[[1,2,2,0],[2,3,3,2],[0,1,2,2],[1,0,1,2]],[[1,2,2,0],[2,3,3,2],[0,1,2,3],[1,0,1,1]],[[1,2,2,0],[2,3,3,3],[0,1,2,2],[1,0,1,1]],[[1,2,2,0],[2,3,4,2],[0,1,2,2],[1,0,1,1]],[[1,2,3,0],[2,3,3,2],[0,1,2,2],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[0,1,2,2],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[0,1,2,2],[1,0,1,1]],[[1,2,2,0],[2,3,3,3],[0,1,2,2],[0,2,1,0]],[[1,2,2,0],[2,3,4,2],[0,1,2,2],[0,2,1,0]],[[1,2,3,0],[2,3,3,2],[0,1,2,2],[0,2,1,0]],[[1,3,2,0],[2,3,3,2],[0,1,2,2],[0,2,1,0]],[[2,2,2,0],[2,3,3,2],[0,1,2,2],[0,2,1,0]],[[1,2,2,0],[2,3,3,2],[0,1,2,3],[0,2,0,1]],[[1,2,2,0],[2,3,3,3],[0,1,2,2],[0,2,0,1]],[[1,2,2,0],[2,3,4,2],[0,1,2,2],[0,2,0,1]],[[1,2,3,0],[2,3,3,2],[0,1,2,2],[0,2,0,1]],[[1,3,2,0],[2,3,3,2],[0,1,2,2],[0,2,0,1]],[[2,2,2,0],[2,3,3,2],[0,1,2,2],[0,2,0,1]],[[1,2,2,0],[2,3,3,2],[0,1,2,3],[0,1,2,0]],[[1,2,2,0],[2,3,3,3],[0,1,2,2],[0,1,2,0]],[[1,2,2,0],[2,3,4,2],[0,1,2,2],[0,1,2,0]],[[1,2,3,0],[2,3,3,2],[0,1,2,2],[0,1,2,0]],[[1,3,2,0],[2,3,3,2],[0,1,2,2],[0,1,2,0]],[[2,2,2,0],[2,3,3,2],[0,1,2,2],[0,1,2,0]],[[1,2,2,0],[2,3,3,2],[0,1,2,2],[0,1,1,2]],[[1,2,2,0],[2,3,3,2],[0,1,2,3],[0,1,1,1]],[[1,2,2,0],[2,3,3,3],[0,1,2,2],[0,1,1,1]],[[1,2,2,0],[2,3,4,2],[0,1,2,2],[0,1,1,1]],[[1,2,3,0],[2,3,3,2],[0,1,2,2],[0,1,1,1]],[[1,3,2,0],[2,3,3,2],[0,1,2,2],[0,1,1,1]],[[2,2,2,0],[2,3,3,2],[0,1,2,2],[0,1,1,1]],[[1,2,2,0],[2,3,3,2],[0,1,2,2],[0,0,2,2]],[[1,2,2,0],[2,3,3,2],[0,1,2,3],[0,0,2,1]],[[1,2,2,0],[2,3,3,3],[0,1,2,2],[0,0,2,1]],[[1,2,2,0],[2,3,4,2],[0,1,2,2],[0,0,2,1]],[[1,2,3,0],[2,3,3,2],[0,1,2,2],[0,0,2,1]],[[1,3,2,0],[2,3,3,2],[0,1,2,2],[0,0,2,1]],[[2,2,2,0],[2,3,3,2],[0,1,2,2],[0,0,2,1]],[[1,2,2,0],[2,3,3,2],[0,1,1,2],[1,0,2,2]],[[1,2,2,0],[2,3,3,2],[0,1,1,3],[1,0,2,1]],[[1,2,2,0],[2,3,3,3],[0,1,1,2],[1,0,2,1]],[[1,2,2,0],[2,3,4,2],[0,1,1,2],[1,0,2,1]],[[1,2,3,0],[2,3,3,2],[0,1,1,2],[1,0,2,1]],[[1,3,2,0],[2,3,3,2],[0,1,1,2],[1,0,2,1]],[[2,2,2,0],[2,3,3,2],[0,1,1,2],[1,0,2,1]],[[1,2,2,0],[2,3,3,2],[0,1,1,2],[0,1,2,2]],[[0,3,2,1],[1,3,2,1],[1,1,1,2],[1,2,2,1]],[[0,2,3,1],[1,3,2,1],[1,1,1,2],[1,2,2,1]],[[0,2,2,2],[1,3,2,1],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[1,4,2,1],[1,1,1,2],[1,2,2,1]],[[0,3,2,1],[1,3,2,1],[1,1,2,2],[1,2,1,1]],[[0,2,3,1],[1,3,2,1],[1,1,2,2],[1,2,1,1]],[[0,2,2,2],[1,3,2,1],[1,1,2,2],[1,2,1,1]],[[0,2,2,1],[1,4,2,1],[1,1,2,2],[1,2,1,1]],[[0,3,2,1],[1,3,2,1],[1,1,2,2],[1,2,2,0]],[[0,2,3,1],[1,3,2,1],[1,1,2,2],[1,2,2,0]],[[0,2,2,2],[1,3,2,1],[1,1,2,2],[1,2,2,0]],[[0,2,2,1],[1,4,2,1],[1,1,2,2],[1,2,2,0]],[[0,3,2,1],[1,3,2,1],[1,1,3,0],[1,2,2,1]],[[0,2,3,1],[1,3,2,1],[1,1,3,0],[1,2,2,1]],[[0,2,2,2],[1,3,2,1],[1,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,4,2,1],[1,1,3,0],[1,2,2,1]],[[0,3,2,1],[1,3,2,1],[1,1,3,1],[1,2,1,1]],[[0,2,3,1],[1,3,2,1],[1,1,3,1],[1,2,1,1]],[[0,2,2,2],[1,3,2,1],[1,1,3,1],[1,2,1,1]],[[0,2,2,1],[1,4,2,1],[1,1,3,1],[1,2,1,1]],[[0,3,2,1],[1,3,2,1],[1,1,3,1],[1,2,2,0]],[[0,2,3,1],[1,3,2,1],[1,1,3,1],[1,2,2,0]],[[0,2,2,2],[1,3,2,1],[1,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,4,2,1],[1,1,3,1],[1,2,2,0]],[[1,2,2,0],[2,3,3,2],[0,1,1,3],[0,1,2,1]],[[1,2,2,0],[2,3,3,3],[0,1,1,2],[0,1,2,1]],[[1,2,2,0],[2,3,4,2],[0,1,1,2],[0,1,2,1]],[[1,2,3,0],[2,3,3,2],[0,1,1,2],[0,1,2,1]],[[0,3,2,1],[1,3,2,1],[1,2,0,2],[1,2,2,1]],[[0,2,3,1],[1,3,2,1],[1,2,0,2],[1,2,2,1]],[[0,2,2,2],[1,3,2,1],[1,2,0,2],[1,2,2,1]],[[0,2,2,1],[1,4,2,1],[1,2,0,2],[1,2,2,1]],[[0,3,2,1],[1,3,2,1],[1,2,1,2],[1,1,2,1]],[[0,2,3,1],[1,3,2,1],[1,2,1,2],[1,1,2,1]],[[0,2,2,2],[1,3,2,1],[1,2,1,2],[1,1,2,1]],[[0,2,2,1],[1,4,2,1],[1,2,1,2],[1,1,2,1]],[[0,3,2,1],[1,3,2,1],[1,2,2,2],[1,1,1,1]],[[0,2,3,1],[1,3,2,1],[1,2,2,2],[1,1,1,1]],[[0,2,2,2],[1,3,2,1],[1,2,2,2],[1,1,1,1]],[[0,2,2,1],[1,4,2,1],[1,2,2,2],[1,1,1,1]],[[0,3,2,1],[1,3,2,1],[1,2,2,2],[1,1,2,0]],[[0,2,3,1],[1,3,2,1],[1,2,2,2],[1,1,2,0]],[[0,2,2,2],[1,3,2,1],[1,2,2,2],[1,1,2,0]],[[0,2,2,1],[1,4,2,1],[1,2,2,2],[1,1,2,0]],[[0,3,2,1],[1,3,2,1],[1,2,2,2],[1,2,0,1]],[[0,2,3,1],[1,3,2,1],[1,2,2,2],[1,2,0,1]],[[0,2,2,2],[1,3,2,1],[1,2,2,2],[1,2,0,1]],[[0,2,2,1],[1,4,2,1],[1,2,2,2],[1,2,0,1]],[[0,3,2,1],[1,3,2,1],[1,2,2,2],[1,2,1,0]],[[0,2,3,1],[1,3,2,1],[1,2,2,2],[1,2,1,0]],[[0,2,2,2],[1,3,2,1],[1,2,2,2],[1,2,1,0]],[[0,2,2,1],[1,4,2,1],[1,2,2,2],[1,2,1,0]],[[1,3,2,0],[2,3,3,2],[0,1,1,2],[0,1,2,1]],[[2,2,2,0],[2,3,3,2],[0,1,1,2],[0,1,2,1]],[[0,3,2,1],[1,3,2,1],[1,2,3,0],[1,1,2,1]],[[0,2,3,1],[1,3,2,1],[1,2,3,0],[1,1,2,1]],[[0,2,2,2],[1,3,2,1],[1,2,3,0],[1,1,2,1]],[[0,2,2,1],[1,4,2,1],[1,2,3,0],[1,1,2,1]],[[0,3,2,1],[1,3,2,1],[1,2,3,0],[1,2,1,1]],[[0,2,3,1],[1,3,2,1],[1,2,3,0],[1,2,1,1]],[[0,2,2,2],[1,3,2,1],[1,2,3,0],[1,2,1,1]],[[0,2,2,1],[1,4,2,1],[1,2,3,0],[1,2,1,1]],[[0,3,2,1],[1,3,2,1],[1,2,3,1],[1,1,1,1]],[[0,2,3,1],[1,3,2,1],[1,2,3,1],[1,1,1,1]],[[0,2,2,2],[1,3,2,1],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[1,4,2,1],[1,2,3,1],[1,1,1,1]],[[0,3,2,1],[1,3,2,1],[1,2,3,1],[1,1,2,0]],[[0,2,3,1],[1,3,2,1],[1,2,3,1],[1,1,2,0]],[[0,2,2,2],[1,3,2,1],[1,2,3,1],[1,1,2,0]],[[0,2,2,1],[1,4,2,1],[1,2,3,1],[1,1,2,0]],[[0,3,2,1],[1,3,2,1],[1,2,3,1],[1,2,0,1]],[[0,2,3,1],[1,3,2,1],[1,2,3,1],[1,2,0,1]],[[0,2,2,2],[1,3,2,1],[1,2,3,1],[1,2,0,1]],[[0,2,2,1],[1,4,2,1],[1,2,3,1],[1,2,0,1]],[[0,3,2,1],[1,3,2,1],[1,2,3,1],[1,2,1,0]],[[0,2,3,1],[1,3,2,1],[1,2,3,1],[1,2,1,0]],[[0,2,2,2],[1,3,2,1],[1,2,3,1],[1,2,1,0]],[[0,2,2,1],[1,4,2,1],[1,2,3,1],[1,2,1,0]],[[1,2,2,0],[2,3,3,2],[0,0,3,3],[1,0,2,0]],[[1,2,2,0],[2,3,3,3],[0,0,3,2],[1,0,2,0]],[[1,2,2,0],[2,3,4,2],[0,0,3,2],[1,0,2,0]],[[1,2,3,0],[2,3,3,2],[0,0,3,2],[1,0,2,0]],[[1,3,2,0],[2,3,3,2],[0,0,3,2],[1,0,2,0]],[[2,2,2,0],[2,3,3,2],[0,0,3,2],[1,0,2,0]],[[1,2,2,0],[2,3,3,2],[0,0,3,2],[1,0,1,2]],[[1,2,2,0],[2,3,3,2],[0,0,3,3],[1,0,1,1]],[[1,2,2,0],[2,3,3,3],[0,0,3,2],[1,0,1,1]],[[1,2,2,0],[2,3,4,2],[0,0,3,2],[1,0,1,1]],[[1,2,3,0],[2,3,3,2],[0,0,3,2],[1,0,1,1]],[[1,3,2,0],[2,3,3,2],[0,0,3,2],[1,0,1,1]],[[2,2,2,0],[2,3,3,2],[0,0,3,2],[1,0,1,1]],[[0,3,2,1],[1,3,2,1],[1,3,0,1],[1,2,2,1]],[[0,2,3,1],[1,3,2,1],[1,3,0,1],[1,2,2,1]],[[0,2,2,2],[1,3,2,1],[1,3,0,1],[1,2,2,1]],[[0,2,2,1],[1,4,2,1],[1,3,0,1],[1,2,2,1]],[[0,2,2,1],[1,3,2,1],[1,4,0,1],[1,2,2,1]],[[0,2,2,1],[1,3,2,1],[1,3,0,1],[2,2,2,1]],[[0,2,2,1],[1,3,2,1],[1,3,0,1],[1,3,2,1]],[[0,2,2,1],[1,3,2,1],[1,3,0,1],[1,2,3,1]],[[0,2,2,1],[1,3,2,1],[1,3,0,1],[1,2,2,2]],[[0,3,2,1],[1,3,2,1],[1,3,0,2],[1,1,2,1]],[[0,2,3,1],[1,3,2,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,2],[1,3,2,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,4,2,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[1,3,2,1],[1,4,0,2],[1,1,2,1]],[[0,3,2,1],[1,3,2,1],[1,3,0,2],[1,2,1,1]],[[0,2,3,1],[1,3,2,1],[1,3,0,2],[1,2,1,1]],[[0,2,2,2],[1,3,2,1],[1,3,0,2],[1,2,1,1]],[[0,2,2,1],[1,4,2,1],[1,3,0,2],[1,2,1,1]],[[0,2,2,1],[1,3,2,1],[1,4,0,2],[1,2,1,1]],[[0,2,2,1],[1,3,2,1],[1,3,0,2],[2,2,1,1]],[[0,2,2,1],[1,3,2,1],[1,3,0,2],[1,3,1,1]],[[0,3,2,1],[1,3,2,1],[1,3,0,2],[1,2,2,0]],[[0,2,3,1],[1,3,2,1],[1,3,0,2],[1,2,2,0]],[[0,2,2,2],[1,3,2,1],[1,3,0,2],[1,2,2,0]],[[0,2,2,1],[1,4,2,1],[1,3,0,2],[1,2,2,0]],[[0,2,2,1],[1,3,2,1],[1,4,0,2],[1,2,2,0]],[[0,2,2,1],[1,3,2,1],[1,3,0,2],[2,2,2,0]],[[0,2,2,1],[1,3,2,1],[1,3,0,2],[1,3,2,0]],[[0,2,2,1],[1,3,2,1],[1,3,0,2],[1,2,3,0]],[[0,3,2,1],[1,3,2,1],[1,3,1,0],[1,2,2,1]],[[0,2,3,1],[1,3,2,1],[1,3,1,0],[1,2,2,1]],[[0,2,2,2],[1,3,2,1],[1,3,1,0],[1,2,2,1]],[[0,2,2,1],[1,4,2,1],[1,3,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,2,1],[1,4,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,2,1],[1,3,1,0],[2,2,2,1]],[[0,2,2,1],[1,3,2,1],[1,3,1,0],[1,3,2,1]],[[0,2,2,1],[1,3,2,1],[1,3,1,0],[1,2,3,1]],[[0,2,2,1],[1,3,2,1],[1,3,1,0],[1,2,2,2]],[[0,3,2,1],[1,3,2,1],[1,3,1,1],[1,2,2,0]],[[0,2,3,1],[1,3,2,1],[1,3,1,1],[1,2,2,0]],[[0,2,2,2],[1,3,2,1],[1,3,1,1],[1,2,2,0]],[[0,2,2,1],[1,4,2,1],[1,3,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,2,1],[1,4,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,2,1],[1,3,1,1],[2,2,2,0]],[[0,2,2,1],[1,3,2,1],[1,3,1,1],[1,3,2,0]],[[0,2,2,1],[1,3,2,1],[1,3,1,1],[1,2,3,0]],[[0,3,2,1],[1,3,2,1],[1,3,1,2],[1,1,1,1]],[[0,2,3,1],[1,3,2,1],[1,3,1,2],[1,1,1,1]],[[0,2,2,2],[1,3,2,1],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,4,2,1],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[1,3,2,1],[1,4,1,2],[1,1,1,1]],[[0,3,2,1],[1,3,2,1],[1,3,1,2],[1,1,2,0]],[[0,2,3,1],[1,3,2,1],[1,3,1,2],[1,1,2,0]],[[0,2,2,2],[1,3,2,1],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,4,2,1],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[1,3,2,1],[1,4,1,2],[1,1,2,0]],[[0,3,2,1],[1,3,2,1],[1,3,1,2],[1,2,0,1]],[[0,2,3,1],[1,3,2,1],[1,3,1,2],[1,2,0,1]],[[0,2,2,2],[1,3,2,1],[1,3,1,2],[1,2,0,1]],[[0,2,2,1],[1,4,2,1],[1,3,1,2],[1,2,0,1]],[[0,2,2,1],[1,3,2,1],[1,4,1,2],[1,2,0,1]],[[0,2,2,1],[1,3,2,1],[1,3,1,2],[2,2,0,1]],[[0,2,2,1],[1,3,2,1],[1,3,1,2],[1,3,0,1]],[[0,3,2,1],[1,3,2,1],[1,3,1,2],[1,2,1,0]],[[0,2,3,1],[1,3,2,1],[1,3,1,2],[1,2,1,0]],[[0,2,2,2],[1,3,2,1],[1,3,1,2],[1,2,1,0]],[[0,2,2,1],[1,4,2,1],[1,3,1,2],[1,2,1,0]],[[0,2,2,1],[1,3,2,1],[1,4,1,2],[1,2,1,0]],[[0,2,2,1],[1,3,2,1],[1,3,1,2],[2,2,1,0]],[[0,2,2,1],[1,3,2,1],[1,3,1,2],[1,3,1,0]],[[1,2,2,0],[2,3,3,2],[0,0,3,3],[0,1,2,0]],[[1,2,2,0],[2,3,3,3],[0,0,3,2],[0,1,2,0]],[[1,2,2,0],[2,3,4,2],[0,0,3,2],[0,1,2,0]],[[0,3,2,1],[1,3,2,1],[1,3,2,0],[1,1,2,1]],[[0,2,3,1],[1,3,2,1],[1,3,2,0],[1,1,2,1]],[[0,2,2,2],[1,3,2,1],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,4,2,1],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,3,2,1],[1,4,2,0],[1,1,2,1]],[[0,3,2,1],[1,3,2,1],[1,3,2,0],[1,2,1,1]],[[0,2,3,1],[1,3,2,1],[1,3,2,0],[1,2,1,1]],[[0,2,2,2],[1,3,2,1],[1,3,2,0],[1,2,1,1]],[[0,2,2,1],[1,4,2,1],[1,3,2,0],[1,2,1,1]],[[0,2,2,1],[1,3,2,1],[1,4,2,0],[1,2,1,1]],[[0,2,2,1],[1,3,2,1],[1,3,2,0],[2,2,1,1]],[[0,2,2,1],[1,3,2,1],[1,3,2,0],[1,3,1,1]],[[0,3,2,1],[1,3,2,1],[1,3,2,1],[1,1,1,1]],[[0,2,3,1],[1,3,2,1],[1,3,2,1],[1,1,1,1]],[[0,2,2,2],[1,3,2,1],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[1,4,2,1],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[1,3,2,1],[1,4,2,1],[1,1,1,1]],[[0,3,2,1],[1,3,2,1],[1,3,2,1],[1,1,2,0]],[[0,2,3,1],[1,3,2,1],[1,3,2,1],[1,1,2,0]],[[0,2,2,2],[1,3,2,1],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,4,2,1],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,3,2,1],[1,4,2,1],[1,1,2,0]],[[0,3,2,1],[1,3,2,1],[1,3,2,1],[1,2,0,1]],[[0,2,3,1],[1,3,2,1],[1,3,2,1],[1,2,0,1]],[[0,2,2,2],[1,3,2,1],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,4,2,1],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,3,2,1],[1,4,2,1],[1,2,0,1]],[[0,2,2,1],[1,3,2,1],[1,3,2,1],[2,2,0,1]],[[0,2,2,1],[1,3,2,1],[1,3,2,1],[1,3,0,1]],[[0,3,2,1],[1,3,2,1],[1,3,2,1],[1,2,1,0]],[[0,2,3,1],[1,3,2,1],[1,3,2,1],[1,2,1,0]],[[0,2,2,2],[1,3,2,1],[1,3,2,1],[1,2,1,0]],[[0,2,2,1],[1,4,2,1],[1,3,2,1],[1,2,1,0]],[[0,2,2,1],[1,3,2,1],[1,4,2,1],[1,2,1,0]],[[0,2,2,1],[1,3,2,1],[1,3,2,1],[2,2,1,0]],[[0,2,2,1],[1,3,2,1],[1,3,2,1],[1,3,1,0]],[[1,2,3,0],[2,3,3,2],[0,0,3,2],[0,1,2,0]],[[1,3,2,0],[2,3,3,2],[0,0,3,2],[0,1,2,0]],[[2,2,2,0],[2,3,3,2],[0,0,3,2],[0,1,2,0]],[[1,2,2,0],[2,3,3,2],[0,0,3,2],[0,1,1,2]],[[1,2,2,0],[2,3,3,2],[0,0,3,3],[0,1,1,1]],[[1,2,2,0],[2,3,3,3],[0,0,3,2],[0,1,1,1]],[[1,2,2,0],[2,3,4,2],[0,0,3,2],[0,1,1,1]],[[1,2,3,0],[2,3,3,2],[0,0,3,2],[0,1,1,1]],[[1,3,2,0],[2,3,3,2],[0,0,3,2],[0,1,1,1]],[[2,2,2,0],[2,3,3,2],[0,0,3,2],[0,1,1,1]],[[1,2,2,0],[2,3,3,2],[0,0,3,2],[0,0,2,2]],[[1,2,2,0],[2,3,3,2],[0,0,3,3],[0,0,2,1]],[[1,2,2,0],[2,3,3,3],[0,0,3,2],[0,0,2,1]],[[1,2,2,0],[2,3,4,2],[0,0,3,2],[0,0,2,1]],[[1,2,3,0],[2,3,3,2],[0,0,3,2],[0,0,2,1]],[[1,3,2,0],[2,3,3,2],[0,0,3,2],[0,0,2,1]],[[2,2,2,0],[2,3,3,2],[0,0,3,2],[0,0,2,1]],[[1,2,2,0],[2,3,3,3],[0,0,3,1],[0,2,2,0]],[[1,2,2,0],[2,3,4,2],[0,0,3,1],[0,2,2,0]],[[1,2,3,0],[2,3,3,2],[0,0,3,1],[0,2,2,0]],[[1,3,2,0],[2,3,3,2],[0,0,3,1],[0,2,2,0]],[[2,2,2,0],[2,3,3,2],[0,0,3,1],[0,2,2,0]],[[1,2,2,0],[2,3,3,3],[0,0,3,1],[0,2,1,1]],[[1,2,2,0],[2,3,4,2],[0,0,3,1],[0,2,1,1]],[[1,2,3,0],[2,3,3,2],[0,0,3,1],[0,2,1,1]],[[1,3,2,0],[2,3,3,2],[0,0,3,1],[0,2,1,1]],[[2,2,2,0],[2,3,3,2],[0,0,3,1],[0,2,1,1]],[[0,3,2,1],[1,3,2,1],[1,3,3,0],[1,1,2,0]],[[0,2,3,1],[1,3,2,1],[1,3,3,0],[1,1,2,0]],[[0,2,2,2],[1,3,2,1],[1,3,3,0],[1,1,2,0]],[[0,2,2,1],[1,4,2,1],[1,3,3,0],[1,1,2,0]],[[0,2,2,1],[1,3,2,1],[1,4,3,0],[1,1,2,0]],[[0,3,2,1],[1,3,2,1],[1,3,3,0],[1,2,1,0]],[[0,2,3,1],[1,3,2,1],[1,3,3,0],[1,2,1,0]],[[0,2,2,2],[1,3,2,1],[1,3,3,0],[1,2,1,0]],[[0,2,2,1],[1,4,2,1],[1,3,3,0],[1,2,1,0]],[[0,2,2,1],[1,3,2,1],[1,4,3,0],[1,2,1,0]],[[0,2,2,1],[1,3,2,1],[1,3,3,0],[2,2,1,0]],[[0,2,2,1],[1,3,2,1],[1,3,3,0],[1,3,1,0]],[[1,2,2,0],[2,3,3,3],[0,0,3,0],[0,2,2,1]],[[1,2,2,0],[2,3,4,2],[0,0,3,0],[0,2,2,1]],[[1,2,3,0],[2,3,3,2],[0,0,3,0],[0,2,2,1]],[[1,3,2,0],[2,3,3,2],[0,0,3,0],[0,2,2,1]],[[2,2,2,0],[2,3,3,2],[0,0,3,0],[0,2,2,1]],[[0,3,2,1],[1,3,2,1],[1,3,3,1],[1,2,0,0]],[[0,2,3,1],[1,3,2,1],[1,3,3,1],[1,2,0,0]],[[0,2,2,2],[1,3,2,1],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,4,2,1],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,3,2,1],[1,4,3,1],[1,2,0,0]],[[1,2,2,0],[2,3,3,2],[0,0,2,3],[0,2,2,0]],[[1,2,2,0],[2,3,3,3],[0,0,2,2],[0,2,2,0]],[[1,2,2,0],[2,3,4,2],[0,0,2,2],[0,2,2,0]],[[1,2,3,0],[2,3,3,2],[0,0,2,2],[0,2,2,0]],[[1,3,2,0],[2,3,3,2],[0,0,2,2],[0,2,2,0]],[[2,2,2,0],[2,3,3,2],[0,0,2,2],[0,2,2,0]],[[1,2,2,0],[2,3,3,2],[0,0,2,2],[0,2,1,2]],[[1,2,2,0],[2,3,3,2],[0,0,2,3],[0,2,1,1]],[[1,2,2,0],[2,3,3,3],[0,0,2,2],[0,2,1,1]],[[1,2,2,0],[2,3,4,2],[0,0,2,2],[0,2,1,1]],[[1,2,3,0],[2,3,3,2],[0,0,2,2],[0,2,1,1]],[[1,3,2,0],[2,3,3,2],[0,0,2,2],[0,2,1,1]],[[2,2,2,0],[2,3,3,2],[0,0,2,2],[0,2,1,1]],[[1,2,2,0],[2,3,3,2],[0,0,1,2],[0,2,2,2]],[[1,2,2,0],[2,3,3,2],[0,0,1,2],[0,2,3,1]],[[1,2,2,0],[2,3,3,2],[0,0,1,3],[0,2,2,1]],[[1,2,2,0],[2,3,3,3],[0,0,1,2],[0,2,2,1]],[[1,2,2,0],[2,3,4,2],[0,0,1,2],[0,2,2,1]],[[1,2,3,0],[2,3,3,2],[0,0,1,2],[0,2,2,1]],[[1,3,2,0],[2,3,3,2],[0,0,1,2],[0,2,2,1]],[[2,2,2,0],[2,3,3,2],[0,0,1,2],[0,2,2,1]],[[0,3,2,1],[1,3,2,1],[2,0,1,2],[1,2,2,1]],[[0,2,3,1],[1,3,2,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[1,3,2,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[1,4,2,1],[2,0,1,2],[1,2,2,1]],[[0,3,2,1],[1,3,2,1],[2,0,2,2],[1,2,1,1]],[[0,2,3,1],[1,3,2,1],[2,0,2,2],[1,2,1,1]],[[0,2,2,2],[1,3,2,1],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[1,4,2,1],[2,0,2,2],[1,2,1,1]],[[0,3,2,1],[1,3,2,1],[2,0,2,2],[1,2,2,0]],[[0,2,3,1],[1,3,2,1],[2,0,2,2],[1,2,2,0]],[[0,2,2,2],[1,3,2,1],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[1,4,2,1],[2,0,2,2],[1,2,2,0]],[[0,3,2,1],[1,3,2,1],[2,0,3,0],[1,2,2,1]],[[0,2,3,1],[1,3,2,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,2],[1,3,2,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[1,4,2,1],[2,0,3,0],[1,2,2,1]],[[0,3,2,1],[1,3,2,1],[2,0,3,1],[1,2,1,1]],[[0,2,3,1],[1,3,2,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,2],[1,3,2,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[1,4,2,1],[2,0,3,1],[1,2,1,1]],[[0,3,2,1],[1,3,2,1],[2,0,3,1],[1,2,2,0]],[[0,2,3,1],[1,3,2,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,2],[1,3,2,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[1,4,2,1],[2,0,3,1],[1,2,2,0]],[[0,3,2,1],[1,3,2,1],[2,1,0,2],[1,2,2,1]],[[0,2,3,1],[1,3,2,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,2],[1,3,2,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[1,4,2,1],[2,1,0,2],[1,2,2,1]],[[0,3,2,1],[1,3,2,1],[2,1,1,2],[0,2,2,1]],[[0,2,3,1],[1,3,2,1],[2,1,1,2],[0,2,2,1]],[[0,2,2,2],[1,3,2,1],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[1,4,2,1],[2,1,1,2],[0,2,2,1]],[[0,3,2,1],[1,3,2,1],[2,1,2,2],[0,2,1,1]],[[0,2,3,1],[1,3,2,1],[2,1,2,2],[0,2,1,1]],[[0,2,2,2],[1,3,2,1],[2,1,2,2],[0,2,1,1]],[[0,2,2,1],[1,4,2,1],[2,1,2,2],[0,2,1,1]],[[0,3,2,1],[1,3,2,1],[2,1,2,2],[0,2,2,0]],[[0,2,3,1],[1,3,2,1],[2,1,2,2],[0,2,2,0]],[[0,2,2,2],[1,3,2,1],[2,1,2,2],[0,2,2,0]],[[0,2,2,1],[1,4,2,1],[2,1,2,2],[0,2,2,0]],[[0,3,2,1],[1,3,2,1],[2,1,3,0],[0,2,2,1]],[[0,2,3,1],[1,3,2,1],[2,1,3,0],[0,2,2,1]],[[0,2,2,2],[1,3,2,1],[2,1,3,0],[0,2,2,1]],[[0,2,2,1],[1,4,2,1],[2,1,3,0],[0,2,2,1]],[[0,3,2,1],[1,3,2,1],[2,1,3,1],[0,2,1,1]],[[0,2,3,1],[1,3,2,1],[2,1,3,1],[0,2,1,1]],[[0,2,2,2],[1,3,2,1],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[1,4,2,1],[2,1,3,1],[0,2,1,1]],[[0,3,2,1],[1,3,2,1],[2,1,3,1],[0,2,2,0]],[[0,2,3,1],[1,3,2,1],[2,1,3,1],[0,2,2,0]],[[0,2,2,2],[1,3,2,1],[2,1,3,1],[0,2,2,0]],[[0,2,2,1],[1,4,2,1],[2,1,3,1],[0,2,2,0]],[[0,2,2,1],[1,3,2,1],[3,2,0,1],[1,2,2,1]],[[0,2,2,1],[1,3,2,1],[2,2,0,1],[2,2,2,1]],[[0,2,2,1],[1,3,2,1],[2,2,0,1],[1,3,2,1]],[[0,2,2,1],[1,3,2,1],[2,2,0,1],[1,2,3,1]],[[0,2,2,1],[1,3,2,1],[2,2,0,1],[1,2,2,2]],[[0,3,2,1],[1,3,2,1],[2,2,0,2],[0,2,2,1]],[[0,2,3,1],[1,3,2,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,2],[1,3,2,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[1,4,2,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[1,3,2,1],[3,2,0,2],[1,2,1,1]],[[0,2,2,1],[1,3,2,1],[2,2,0,2],[2,2,1,1]],[[0,2,2,1],[1,3,2,1],[2,2,0,2],[1,3,1,1]],[[0,2,2,1],[1,3,2,1],[3,2,0,2],[1,2,2,0]],[[0,2,2,1],[1,3,2,1],[2,2,0,2],[2,2,2,0]],[[0,2,2,1],[1,3,2,1],[2,2,0,2],[1,3,2,0]],[[0,2,2,1],[1,3,2,1],[2,2,0,2],[1,2,3,0]],[[0,2,2,1],[1,3,2,1],[3,2,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,2,1],[2,2,1,0],[2,2,2,1]],[[0,2,2,1],[1,3,2,1],[2,2,1,0],[1,3,2,1]],[[0,2,2,1],[1,3,2,1],[2,2,1,0],[1,2,3,1]],[[0,2,2,1],[1,3,2,1],[2,2,1,0],[1,2,2,2]],[[0,2,2,1],[1,3,2,1],[3,2,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,2,1],[2,2,1,1],[2,2,2,0]],[[0,2,2,1],[1,3,2,1],[2,2,1,1],[1,3,2,0]],[[0,2,2,1],[1,3,2,1],[2,2,1,1],[1,2,3,0]],[[0,3,2,1],[1,3,2,1],[2,2,1,2],[0,1,2,1]],[[0,2,3,1],[1,3,2,1],[2,2,1,2],[0,1,2,1]],[[0,2,2,2],[1,3,2,1],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[1,4,2,1],[2,2,1,2],[0,1,2,1]],[[0,3,2,1],[1,3,2,1],[2,2,1,2],[1,0,2,1]],[[0,2,3,1],[1,3,2,1],[2,2,1,2],[1,0,2,1]],[[0,2,2,2],[1,3,2,1],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[1,4,2,1],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[1,3,2,1],[3,2,1,2],[1,2,0,1]],[[0,2,2,1],[1,3,2,1],[2,2,1,2],[2,2,0,1]],[[0,2,2,1],[1,3,2,1],[2,2,1,2],[1,3,0,1]],[[0,2,2,1],[1,3,2,1],[3,2,1,2],[1,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,2,1,2],[2,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,2,1,2],[1,3,1,0]],[[1,2,2,0],[2,3,4,1],[2,0,3,2],[0,0,2,0]],[[1,2,3,0],[2,3,3,1],[2,0,3,2],[0,0,2,0]],[[1,3,2,0],[2,3,3,1],[2,0,3,2],[0,0,2,0]],[[2,2,2,0],[2,3,3,1],[2,0,3,2],[0,0,2,0]],[[0,2,2,1],[1,3,2,1],[3,2,2,0],[1,2,1,1]],[[0,2,2,1],[1,3,2,1],[2,2,2,0],[2,2,1,1]],[[0,2,2,1],[1,3,2,1],[2,2,2,0],[1,3,1,1]],[[0,2,2,1],[1,3,2,1],[3,2,2,1],[1,2,0,1]],[[0,2,2,1],[1,3,2,1],[2,2,2,1],[2,2,0,1]],[[0,2,2,1],[1,3,2,1],[2,2,2,1],[1,3,0,1]],[[0,2,2,1],[1,3,2,1],[3,2,2,1],[1,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,2,2,1],[2,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,2,2,1],[1,3,1,0]],[[1,2,2,0],[2,3,4,1],[2,0,3,2],[0,0,1,1]],[[1,2,3,0],[2,3,3,1],[2,0,3,2],[0,0,1,1]],[[1,3,2,0],[2,3,3,1],[2,0,3,2],[0,0,1,1]],[[2,2,2,0],[2,3,3,1],[2,0,3,2],[0,0,1,1]],[[0,3,2,1],[1,3,2,1],[2,2,2,2],[0,0,2,1]],[[0,2,3,1],[1,3,2,1],[2,2,2,2],[0,0,2,1]],[[0,2,2,2],[1,3,2,1],[2,2,2,2],[0,0,2,1]],[[0,2,2,1],[1,4,2,1],[2,2,2,2],[0,0,2,1]],[[0,3,2,1],[1,3,2,1],[2,2,2,2],[0,1,1,1]],[[0,2,3,1],[1,3,2,1],[2,2,2,2],[0,1,1,1]],[[0,2,2,2],[1,3,2,1],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[1,4,2,1],[2,2,2,2],[0,1,1,1]],[[0,3,2,1],[1,3,2,1],[2,2,2,2],[0,1,2,0]],[[0,2,3,1],[1,3,2,1],[2,2,2,2],[0,1,2,0]],[[0,2,2,2],[1,3,2,1],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[1,4,2,1],[2,2,2,2],[0,1,2,0]],[[0,3,2,1],[1,3,2,1],[2,2,2,2],[0,2,0,1]],[[0,2,3,1],[1,3,2,1],[2,2,2,2],[0,2,0,1]],[[0,2,2,2],[1,3,2,1],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[1,4,2,1],[2,2,2,2],[0,2,0,1]],[[0,3,2,1],[1,3,2,1],[2,2,2,2],[0,2,1,0]],[[0,2,3,1],[1,3,2,1],[2,2,2,2],[0,2,1,0]],[[0,2,2,2],[1,3,2,1],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[1,4,2,1],[2,2,2,2],[0,2,1,0]],[[0,3,2,1],[1,3,2,1],[2,2,2,2],[1,0,1,1]],[[0,2,3,1],[1,3,2,1],[2,2,2,2],[1,0,1,1]],[[0,2,2,2],[1,3,2,1],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[1,4,2,1],[2,2,2,2],[1,0,1,1]],[[0,3,2,1],[1,3,2,1],[2,2,2,2],[1,0,2,0]],[[0,2,3,1],[1,3,2,1],[2,2,2,2],[1,0,2,0]],[[0,2,2,2],[1,3,2,1],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[1,4,2,1],[2,2,2,2],[1,0,2,0]],[[0,3,2,1],[1,3,2,1],[2,2,2,2],[1,1,0,1]],[[0,2,3,1],[1,3,2,1],[2,2,2,2],[1,1,0,1]],[[0,2,2,2],[1,3,2,1],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[1,4,2,1],[2,2,2,2],[1,1,0,1]],[[0,3,2,1],[1,3,2,1],[2,2,2,2],[1,1,1,0]],[[0,2,3,1],[1,3,2,1],[2,2,2,2],[1,1,1,0]],[[0,2,2,2],[1,3,2,1],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[1,4,2,1],[2,2,2,2],[1,1,1,0]],[[0,3,2,1],[1,3,2,1],[2,2,3,0],[0,1,2,1]],[[0,2,3,1],[1,3,2,1],[2,2,3,0],[0,1,2,1]],[[0,2,2,2],[1,3,2,1],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[1,4,2,1],[2,2,3,0],[0,1,2,1]],[[0,3,2,1],[1,3,2,1],[2,2,3,0],[0,2,1,1]],[[0,2,3,1],[1,3,2,1],[2,2,3,0],[0,2,1,1]],[[0,2,2,2],[1,3,2,1],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[1,4,2,1],[2,2,3,0],[0,2,1,1]],[[0,3,2,1],[1,3,2,1],[2,2,3,0],[1,0,2,1]],[[0,2,3,1],[1,3,2,1],[2,2,3,0],[1,0,2,1]],[[0,2,2,2],[1,3,2,1],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[1,4,2,1],[2,2,3,0],[1,0,2,1]],[[0,3,2,1],[1,3,2,1],[2,2,3,0],[1,1,1,1]],[[0,2,3,1],[1,3,2,1],[2,2,3,0],[1,1,1,1]],[[0,2,2,2],[1,3,2,1],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[1,4,2,1],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[1,3,2,1],[3,2,3,0],[1,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,2,3,0],[2,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,2,3,0],[1,3,1,0]],[[0,3,2,1],[1,3,2,1],[2,2,3,1],[0,0,2,1]],[[0,2,3,1],[1,3,2,1],[2,2,3,1],[0,0,2,1]],[[0,2,2,2],[1,3,2,1],[2,2,3,1],[0,0,2,1]],[[0,2,2,1],[1,4,2,1],[2,2,3,1],[0,0,2,1]],[[0,3,2,1],[1,3,2,1],[2,2,3,1],[0,1,1,1]],[[0,2,3,1],[1,3,2,1],[2,2,3,1],[0,1,1,1]],[[0,2,2,2],[1,3,2,1],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[1,4,2,1],[2,2,3,1],[0,1,1,1]],[[0,3,2,1],[1,3,2,1],[2,2,3,1],[0,1,2,0]],[[0,2,3,1],[1,3,2,1],[2,2,3,1],[0,1,2,0]],[[0,2,2,2],[1,3,2,1],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[1,4,2,1],[2,2,3,1],[0,1,2,0]],[[0,3,2,1],[1,3,2,1],[2,2,3,1],[0,2,0,1]],[[0,2,3,1],[1,3,2,1],[2,2,3,1],[0,2,0,1]],[[0,2,2,2],[1,3,2,1],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[1,4,2,1],[2,2,3,1],[0,2,0,1]],[[0,3,2,1],[1,3,2,1],[2,2,3,1],[0,2,1,0]],[[0,2,3,1],[1,3,2,1],[2,2,3,1],[0,2,1,0]],[[0,2,2,2],[1,3,2,1],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[1,4,2,1],[2,2,3,1],[0,2,1,0]],[[0,3,2,1],[1,3,2,1],[2,2,3,1],[1,0,1,1]],[[0,2,3,1],[1,3,2,1],[2,2,3,1],[1,0,1,1]],[[0,2,2,2],[1,3,2,1],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[1,4,2,1],[2,2,3,1],[1,0,1,1]],[[0,3,2,1],[1,3,2,1],[2,2,3,1],[1,0,2,0]],[[0,2,3,1],[1,3,2,1],[2,2,3,1],[1,0,2,0]],[[0,2,2,2],[1,3,2,1],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[1,4,2,1],[2,2,3,1],[1,0,2,0]],[[0,3,2,1],[1,3,2,1],[2,2,3,1],[1,1,0,1]],[[0,2,3,1],[1,3,2,1],[2,2,3,1],[1,1,0,1]],[[0,2,2,2],[1,3,2,1],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[1,4,2,1],[2,2,3,1],[1,1,0,1]],[[0,3,2,1],[1,3,2,1],[2,2,3,1],[1,1,1,0]],[[0,2,3,1],[1,3,2,1],[2,2,3,1],[1,1,1,0]],[[0,2,2,2],[1,3,2,1],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[1,4,2,1],[2,2,3,1],[1,1,1,0]],[[0,3,2,1],[1,3,2,1],[2,2,3,2],[0,1,0,1]],[[0,2,3,1],[1,3,2,1],[2,2,3,2],[0,1,0,1]],[[0,2,2,2],[1,3,2,1],[2,2,3,2],[0,1,0,1]],[[0,2,2,1],[1,4,2,1],[2,2,3,2],[0,1,0,1]],[[1,2,2,0],[2,3,4,1],[1,0,3,2],[1,1,1,0]],[[1,2,3,0],[2,3,3,1],[1,0,3,2],[1,1,1,0]],[[1,3,2,0],[2,3,3,1],[1,0,3,2],[1,1,1,0]],[[2,2,2,0],[2,3,3,1],[1,0,3,2],[1,1,1,0]],[[1,2,2,0],[2,3,4,1],[1,0,3,2],[1,1,0,1]],[[1,2,3,0],[2,3,3,1],[1,0,3,2],[1,1,0,1]],[[1,3,2,0],[2,3,3,1],[1,0,3,2],[1,1,0,1]],[[2,2,2,0],[2,3,3,1],[1,0,3,2],[1,1,0,1]],[[0,3,2,1],[1,3,2,1],[2,2,3,2],[1,0,0,1]],[[0,2,3,1],[1,3,2,1],[2,2,3,2],[1,0,0,1]],[[0,2,2,2],[1,3,2,1],[2,2,3,2],[1,0,0,1]],[[0,2,2,1],[1,4,2,1],[2,2,3,2],[1,0,0,1]],[[1,2,2,0],[2,3,4,1],[1,0,3,2],[1,0,2,0]],[[1,2,3,0],[2,3,3,1],[1,0,3,2],[1,0,2,0]],[[1,3,2,0],[2,3,3,1],[1,0,3,2],[1,0,2,0]],[[2,2,2,0],[2,3,3,1],[1,0,3,2],[1,0,2,0]],[[1,2,2,0],[2,3,4,1],[1,0,3,2],[1,0,1,1]],[[1,2,3,0],[2,3,3,1],[1,0,3,2],[1,0,1,1]],[[1,3,2,0],[2,3,3,1],[1,0,3,2],[1,0,1,1]],[[2,2,2,0],[2,3,3,1],[1,0,3,2],[1,0,1,1]],[[1,2,2,0],[2,3,4,1],[1,0,3,2],[0,2,1,0]],[[1,2,3,0],[2,3,3,1],[1,0,3,2],[0,2,1,0]],[[1,3,2,0],[2,3,3,1],[1,0,3,2],[0,2,1,0]],[[2,2,2,0],[2,3,3,1],[1,0,3,2],[0,2,1,0]],[[1,2,2,0],[2,3,4,1],[1,0,3,2],[0,2,0,1]],[[1,2,3,0],[2,3,3,1],[1,0,3,2],[0,2,0,1]],[[1,3,2,0],[2,3,3,1],[1,0,3,2],[0,2,0,1]],[[2,2,2,0],[2,3,3,1],[1,0,3,2],[0,2,0,1]],[[1,2,2,0],[2,3,4,1],[1,0,3,2],[0,1,2,0]],[[1,2,3,0],[2,3,3,1],[1,0,3,2],[0,1,2,0]],[[1,3,2,0],[2,3,3,1],[1,0,3,2],[0,1,2,0]],[[2,2,2,0],[2,3,3,1],[1,0,3,2],[0,1,2,0]],[[1,2,2,0],[2,3,4,1],[1,0,3,2],[0,1,1,1]],[[1,2,3,0],[2,3,3,1],[1,0,3,2],[0,1,1,1]],[[1,3,2,0],[2,3,3,1],[1,0,3,2],[0,1,1,1]],[[2,2,2,0],[2,3,3,1],[1,0,3,2],[0,1,1,1]],[[1,2,2,0],[2,3,4,1],[1,0,3,2],[0,0,2,1]],[[1,2,3,0],[2,3,3,1],[1,0,3,2],[0,0,2,1]],[[1,3,2,0],[2,3,3,1],[1,0,3,2],[0,0,2,1]],[[2,2,2,0],[2,3,3,1],[1,0,3,2],[0,0,2,1]],[[1,2,2,0],[2,3,4,1],[1,0,3,1],[1,0,2,1]],[[1,2,3,0],[2,3,3,1],[1,0,3,1],[1,0,2,1]],[[1,3,2,0],[2,3,3,1],[1,0,3,1],[1,0,2,1]],[[2,2,2,0],[2,3,3,1],[1,0,3,1],[1,0,2,1]],[[1,2,2,0],[2,3,4,1],[1,0,3,1],[0,1,2,1]],[[1,2,3,0],[2,3,3,1],[1,0,3,1],[0,1,2,1]],[[1,3,2,0],[2,3,3,1],[1,0,3,1],[0,1,2,1]],[[2,2,2,0],[2,3,3,1],[1,0,3,1],[0,1,2,1]],[[0,2,2,1],[1,3,2,1],[3,3,0,0],[1,2,2,1]],[[0,2,2,1],[1,3,2,1],[2,3,0,0],[2,2,2,1]],[[0,2,2,1],[1,3,2,1],[2,3,0,0],[1,3,2,1]],[[0,3,2,1],[1,3,2,1],[2,3,0,1],[0,2,2,1]],[[0,2,3,1],[1,3,2,1],[2,3,0,1],[0,2,2,1]],[[0,2,2,2],[1,3,2,1],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[1,4,2,1],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[1,3,2,1],[3,3,0,1],[0,2,2,1]],[[0,2,2,1],[1,3,2,1],[2,4,0,1],[0,2,2,1]],[[0,2,2,1],[1,3,2,1],[2,3,0,1],[0,3,2,1]],[[0,2,2,1],[1,3,2,1],[2,3,0,1],[0,2,3,1]],[[0,2,2,1],[1,3,2,1],[2,3,0,1],[0,2,2,2]],[[0,3,2,1],[1,3,2,1],[2,3,0,1],[1,1,2,1]],[[0,2,3,1],[1,3,2,1],[2,3,0,1],[1,1,2,1]],[[0,2,2,2],[1,3,2,1],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[1,4,2,1],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[1,3,2,1],[3,3,0,1],[1,1,2,1]],[[0,2,2,1],[1,3,2,1],[2,4,0,1],[1,1,2,1]],[[0,2,2,1],[1,3,2,1],[2,3,0,1],[2,1,2,1]],[[0,2,2,1],[1,3,2,1],[3,3,0,1],[1,2,2,0]],[[0,2,2,1],[1,3,2,1],[2,3,0,1],[2,2,2,0]],[[0,2,2,1],[1,3,2,1],[2,3,0,1],[1,3,2,0]],[[0,3,2,1],[1,3,2,1],[2,3,0,2],[0,1,2,1]],[[0,2,3,1],[1,3,2,1],[2,3,0,2],[0,1,2,1]],[[0,2,2,2],[1,3,2,1],[2,3,0,2],[0,1,2,1]],[[0,2,2,1],[1,4,2,1],[2,3,0,2],[0,1,2,1]],[[0,2,2,1],[1,3,2,1],[3,3,0,2],[0,1,2,1]],[[0,2,2,1],[1,3,2,1],[2,4,0,2],[0,1,2,1]],[[0,3,2,1],[1,3,2,1],[2,3,0,2],[0,2,1,1]],[[0,2,3,1],[1,3,2,1],[2,3,0,2],[0,2,1,1]],[[0,2,2,2],[1,3,2,1],[2,3,0,2],[0,2,1,1]],[[0,2,2,1],[1,4,2,1],[2,3,0,2],[0,2,1,1]],[[0,2,2,1],[1,3,2,1],[3,3,0,2],[0,2,1,1]],[[0,2,2,1],[1,3,2,1],[2,4,0,2],[0,2,1,1]],[[0,2,2,1],[1,3,2,1],[2,3,0,2],[0,3,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,0,2],[0,2,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,0,2],[0,2,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[1,3,2,1],[3,3,0,2],[0,2,2,0]],[[0,2,2,1],[1,3,2,1],[2,4,0,2],[0,2,2,0]],[[0,2,2,1],[1,3,2,1],[2,3,0,2],[0,3,2,0]],[[0,2,2,1],[1,3,2,1],[2,3,0,2],[0,2,3,0]],[[0,3,2,1],[1,3,2,1],[2,3,0,2],[1,0,2,1]],[[0,2,3,1],[1,3,2,1],[2,3,0,2],[1,0,2,1]],[[0,2,2,2],[1,3,2,1],[2,3,0,2],[1,0,2,1]],[[0,2,2,1],[1,4,2,1],[2,3,0,2],[1,0,2,1]],[[0,2,2,1],[1,3,2,1],[3,3,0,2],[1,0,2,1]],[[0,2,2,1],[1,3,2,1],[2,4,0,2],[1,0,2,1]],[[0,2,2,1],[1,3,2,1],[2,3,0,2],[2,0,2,1]],[[0,3,2,1],[1,3,2,1],[2,3,0,2],[1,1,1,1]],[[0,2,3,1],[1,3,2,1],[2,3,0,2],[1,1,1,1]],[[0,2,2,2],[1,3,2,1],[2,3,0,2],[1,1,1,1]],[[0,2,2,1],[1,4,2,1],[2,3,0,2],[1,1,1,1]],[[0,2,2,1],[1,3,2,1],[3,3,0,2],[1,1,1,1]],[[0,2,2,1],[1,3,2,1],[2,4,0,2],[1,1,1,1]],[[0,2,2,1],[1,3,2,1],[2,3,0,2],[2,1,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,0,2],[1,1,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,0,2],[1,1,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[1,3,2,1],[3,3,0,2],[1,1,2,0]],[[0,2,2,1],[1,3,2,1],[2,4,0,2],[1,1,2,0]],[[0,2,2,1],[1,3,2,1],[2,3,0,2],[2,1,2,0]],[[0,3,2,1],[1,3,2,1],[2,3,1,0],[0,2,2,1]],[[0,2,3,1],[1,3,2,1],[2,3,1,0],[0,2,2,1]],[[0,2,2,2],[1,3,2,1],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,4,2,1],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,3,2,1],[3,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,3,2,1],[2,4,1,0],[0,2,2,1]],[[0,2,2,1],[1,3,2,1],[2,3,1,0],[0,3,2,1]],[[0,2,2,1],[1,3,2,1],[2,3,1,0],[0,2,3,1]],[[0,2,2,1],[1,3,2,1],[2,3,1,0],[0,2,2,2]],[[0,3,2,1],[1,3,2,1],[2,3,1,0],[1,1,2,1]],[[0,2,3,1],[1,3,2,1],[2,3,1,0],[1,1,2,1]],[[0,2,2,2],[1,3,2,1],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,4,2,1],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,3,2,1],[3,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,3,2,1],[2,4,1,0],[1,1,2,1]],[[0,2,2,1],[1,3,2,1],[2,3,1,0],[2,1,2,1]],[[0,3,2,1],[1,3,2,1],[2,3,1,1],[0,2,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,1,1],[0,2,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,3,2,1],[3,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,3,2,1],[2,4,1,1],[0,2,2,0]],[[0,2,2,1],[1,3,2,1],[2,3,1,1],[0,3,2,0]],[[0,2,2,1],[1,3,2,1],[2,3,1,1],[0,2,3,0]],[[0,3,2,1],[1,3,2,1],[2,3,1,1],[1,1,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,1,1],[1,1,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,3,2,1],[3,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,3,2,1],[2,4,1,1],[1,1,2,0]],[[0,2,2,1],[1,3,2,1],[2,3,1,1],[2,1,2,0]],[[0,3,2,1],[1,3,2,1],[2,3,1,2],[0,1,1,1]],[[0,2,3,1],[1,3,2,1],[2,3,1,2],[0,1,1,1]],[[0,2,2,2],[1,3,2,1],[2,3,1,2],[0,1,1,1]],[[0,2,2,1],[1,4,2,1],[2,3,1,2],[0,1,1,1]],[[0,2,2,1],[1,3,2,1],[3,3,1,2],[0,1,1,1]],[[0,2,2,1],[1,3,2,1],[2,4,1,2],[0,1,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,1,2],[0,1,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,1,2],[0,1,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,1,2],[0,1,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,1,2],[0,1,2,0]],[[0,2,2,1],[1,3,2,1],[3,3,1,2],[0,1,2,0]],[[0,2,2,1],[1,3,2,1],[2,4,1,2],[0,1,2,0]],[[0,3,2,1],[1,3,2,1],[2,3,1,2],[0,2,0,1]],[[0,2,3,1],[1,3,2,1],[2,3,1,2],[0,2,0,1]],[[0,2,2,2],[1,3,2,1],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[1,4,2,1],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[1,3,2,1],[3,3,1,2],[0,2,0,1]],[[0,2,2,1],[1,3,2,1],[2,4,1,2],[0,2,0,1]],[[0,2,2,1],[1,3,2,1],[2,3,1,2],[0,3,0,1]],[[0,3,2,1],[1,3,2,1],[2,3,1,2],[0,2,1,0]],[[0,2,3,1],[1,3,2,1],[2,3,1,2],[0,2,1,0]],[[0,2,2,2],[1,3,2,1],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[1,4,2,1],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[1,3,2,1],[3,3,1,2],[0,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,4,1,2],[0,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,3,1,2],[0,3,1,0]],[[0,3,2,1],[1,3,2,1],[2,3,1,2],[1,0,1,1]],[[0,2,3,1],[1,3,2,1],[2,3,1,2],[1,0,1,1]],[[0,2,2,2],[1,3,2,1],[2,3,1,2],[1,0,1,1]],[[0,2,2,1],[1,4,2,1],[2,3,1,2],[1,0,1,1]],[[0,2,2,1],[1,3,2,1],[3,3,1,2],[1,0,1,1]],[[0,2,2,1],[1,3,2,1],[2,4,1,2],[1,0,1,1]],[[0,2,2,1],[1,3,2,1],[2,3,1,2],[2,0,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,1,2],[1,0,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,1,2],[1,0,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,1,2],[1,0,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,1,2],[1,0,2,0]],[[0,2,2,1],[1,3,2,1],[3,3,1,2],[1,0,2,0]],[[0,2,2,1],[1,3,2,1],[2,4,1,2],[1,0,2,0]],[[0,2,2,1],[1,3,2,1],[2,3,1,2],[2,0,2,0]],[[0,3,2,1],[1,3,2,1],[2,3,1,2],[1,1,0,1]],[[0,2,3,1],[1,3,2,1],[2,3,1,2],[1,1,0,1]],[[0,2,2,2],[1,3,2,1],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[1,4,2,1],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[1,3,2,1],[3,3,1,2],[1,1,0,1]],[[0,2,2,1],[1,3,2,1],[2,4,1,2],[1,1,0,1]],[[0,2,2,1],[1,3,2,1],[2,3,1,2],[2,1,0,1]],[[0,3,2,1],[1,3,2,1],[2,3,1,2],[1,1,1,0]],[[0,2,3,1],[1,3,2,1],[2,3,1,2],[1,1,1,0]],[[0,2,2,2],[1,3,2,1],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[1,4,2,1],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[1,3,2,1],[3,3,1,2],[1,1,1,0]],[[0,2,2,1],[1,3,2,1],[2,4,1,2],[1,1,1,0]],[[0,2,2,1],[1,3,2,1],[2,3,1,2],[2,1,1,0]],[[0,3,2,1],[1,3,2,1],[2,3,1,2],[1,2,0,0]],[[0,2,3,1],[1,3,2,1],[2,3,1,2],[1,2,0,0]],[[0,2,2,2],[1,3,2,1],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[1,4,2,1],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[1,3,2,1],[3,3,1,2],[1,2,0,0]],[[0,2,2,1],[1,3,2,1],[2,4,1,2],[1,2,0,0]],[[0,2,2,1],[1,3,2,1],[2,3,1,2],[2,2,0,0]],[[0,3,2,1],[1,3,2,1],[2,3,2,0],[0,1,2,1]],[[0,2,3,1],[1,3,2,1],[2,3,2,0],[0,1,2,1]],[[0,2,2,2],[1,3,2,1],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,4,2,1],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,3,2,1],[3,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,3,2,1],[2,4,2,0],[0,1,2,1]],[[0,3,2,1],[1,3,2,1],[2,3,2,0],[0,2,1,1]],[[0,2,3,1],[1,3,2,1],[2,3,2,0],[0,2,1,1]],[[0,2,2,2],[1,3,2,1],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,4,2,1],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,3,2,1],[3,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,3,2,1],[2,4,2,0],[0,2,1,1]],[[0,2,2,1],[1,3,2,1],[2,3,2,0],[0,3,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,2,0],[1,0,2,1]],[[0,2,3,1],[1,3,2,1],[2,3,2,0],[1,0,2,1]],[[0,2,2,2],[1,3,2,1],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,4,2,1],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,3,2,1],[3,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,3,2,1],[2,4,2,0],[1,0,2,1]],[[0,2,2,1],[1,3,2,1],[2,3,2,0],[2,0,2,1]],[[0,3,2,1],[1,3,2,1],[2,3,2,0],[1,1,1,1]],[[0,2,3,1],[1,3,2,1],[2,3,2,0],[1,1,1,1]],[[0,2,2,2],[1,3,2,1],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,4,2,1],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,3,2,1],[3,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,3,2,1],[2,4,2,0],[1,1,1,1]],[[0,2,2,1],[1,3,2,1],[2,3,2,0],[2,1,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,2,0],[1,2,0,1]],[[0,2,3,1],[1,3,2,1],[2,3,2,0],[1,2,0,1]],[[0,2,2,2],[1,3,2,1],[2,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,4,2,1],[2,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,3,2,1],[3,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,3,2,1],[2,4,2,0],[1,2,0,1]],[[0,2,2,1],[1,3,2,1],[2,3,2,0],[2,2,0,1]],[[0,3,2,1],[1,3,2,1],[2,3,2,1],[0,1,1,1]],[[0,2,3,1],[1,3,2,1],[2,3,2,1],[0,1,1,1]],[[0,2,2,2],[1,3,2,1],[2,3,2,1],[0,1,1,1]],[[0,2,2,1],[1,4,2,1],[2,3,2,1],[0,1,1,1]],[[0,2,2,1],[1,3,2,1],[3,3,2,1],[0,1,1,1]],[[0,2,2,1],[1,3,2,1],[2,4,2,1],[0,1,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,2,1],[0,1,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,2,1],[0,1,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,3,2,1],[3,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,3,2,1],[2,4,2,1],[0,1,2,0]],[[0,3,2,1],[1,3,2,1],[2,3,2,1],[0,2,0,1]],[[0,2,3,1],[1,3,2,1],[2,3,2,1],[0,2,0,1]],[[0,2,2,2],[1,3,2,1],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,4,2,1],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,3,2,1],[3,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,3,2,1],[2,4,2,1],[0,2,0,1]],[[0,2,2,1],[1,3,2,1],[2,3,2,1],[0,3,0,1]],[[0,3,2,1],[1,3,2,1],[2,3,2,1],[0,2,1,0]],[[0,2,3,1],[1,3,2,1],[2,3,2,1],[0,2,1,0]],[[0,2,2,2],[1,3,2,1],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,4,2,1],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,3,2,1],[3,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,4,2,1],[0,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,3,2,1],[0,3,1,0]],[[0,3,2,1],[1,3,2,1],[2,3,2,1],[1,0,1,1]],[[0,2,3,1],[1,3,2,1],[2,3,2,1],[1,0,1,1]],[[0,2,2,2],[1,3,2,1],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[1,4,2,1],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[1,3,2,1],[3,3,2,1],[1,0,1,1]],[[0,2,2,1],[1,3,2,1],[2,4,2,1],[1,0,1,1]],[[0,2,2,1],[1,3,2,1],[2,3,2,1],[2,0,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,2,1],[1,0,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,2,1],[1,0,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,3,2,1],[3,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,3,2,1],[2,4,2,1],[1,0,2,0]],[[0,2,2,1],[1,3,2,1],[2,3,2,1],[2,0,2,0]],[[0,3,2,1],[1,3,2,1],[2,3,2,1],[1,1,0,1]],[[0,2,3,1],[1,3,2,1],[2,3,2,1],[1,1,0,1]],[[0,2,2,2],[1,3,2,1],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,4,2,1],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,3,2,1],[3,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,3,2,1],[2,4,2,1],[1,1,0,1]],[[0,2,2,1],[1,3,2,1],[2,3,2,1],[2,1,0,1]],[[0,3,2,1],[1,3,2,1],[2,3,2,1],[1,1,1,0]],[[0,2,3,1],[1,3,2,1],[2,3,2,1],[1,1,1,0]],[[0,2,2,2],[1,3,2,1],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,4,2,1],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,3,2,1],[3,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,3,2,1],[2,4,2,1],[1,1,1,0]],[[0,2,2,1],[1,3,2,1],[2,3,2,1],[2,1,1,0]],[[0,3,2,1],[1,3,2,1],[2,3,2,1],[1,2,0,0]],[[0,2,3,1],[1,3,2,1],[2,3,2,1],[1,2,0,0]],[[0,2,2,2],[1,3,2,1],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,4,2,1],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,3,2,1],[3,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,3,2,1],[2,4,2,1],[1,2,0,0]],[[0,2,2,1],[1,3,2,1],[2,3,2,1],[2,2,0,0]],[[0,3,2,1],[1,3,2,1],[2,3,2,2],[0,0,1,1]],[[0,2,3,1],[1,3,2,1],[2,3,2,2],[0,0,1,1]],[[0,2,2,2],[1,3,2,1],[2,3,2,2],[0,0,1,1]],[[0,2,2,1],[1,4,2,1],[2,3,2,2],[0,0,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,2,2],[0,0,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,2,2],[0,0,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,2,2],[0,0,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,2,2],[0,0,2,0]],[[1,2,2,0],[2,3,4,1],[0,2,3,2],[0,0,2,0]],[[1,2,3,0],[2,3,3,1],[0,2,3,2],[0,0,2,0]],[[1,3,2,0],[2,3,3,1],[0,2,3,2],[0,0,2,0]],[[2,2,2,0],[2,3,3,1],[0,2,3,2],[0,0,2,0]],[[1,2,2,0],[2,3,4,1],[0,2,3,2],[0,0,1,1]],[[1,2,3,0],[2,3,3,1],[0,2,3,2],[0,0,1,1]],[[1,3,2,0],[2,3,3,1],[0,2,3,2],[0,0,1,1]],[[2,2,2,0],[2,3,3,1],[0,2,3,2],[0,0,1,1]],[[1,2,2,0],[2,3,4,1],[0,1,3,2],[1,1,1,0]],[[1,2,3,0],[2,3,3,1],[0,1,3,2],[1,1,1,0]],[[1,3,2,0],[2,3,3,1],[0,1,3,2],[1,1,1,0]],[[2,2,2,0],[2,3,3,1],[0,1,3,2],[1,1,1,0]],[[1,2,2,0],[2,3,4,1],[0,1,3,2],[1,1,0,1]],[[0,3,2,1],[1,3,2,1],[2,3,3,0],[0,0,2,1]],[[0,2,3,1],[1,3,2,1],[2,3,3,0],[0,0,2,1]],[[0,2,2,2],[1,3,2,1],[2,3,3,0],[0,0,2,1]],[[0,2,2,1],[1,4,2,1],[2,3,3,0],[0,0,2,1]],[[0,3,2,1],[1,3,2,1],[2,3,3,0],[0,1,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,3,0],[0,1,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,3,0],[0,1,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,3,0],[0,1,2,0]],[[0,2,2,1],[1,3,2,1],[3,3,3,0],[0,1,2,0]],[[0,2,2,1],[1,3,2,1],[2,4,3,0],[0,1,2,0]],[[0,3,2,1],[1,3,2,1],[2,3,3,0],[0,2,1,0]],[[0,2,3,1],[1,3,2,1],[2,3,3,0],[0,2,1,0]],[[0,2,2,2],[1,3,2,1],[2,3,3,0],[0,2,1,0]],[[0,2,2,1],[1,4,2,1],[2,3,3,0],[0,2,1,0]],[[0,2,2,1],[1,3,2,1],[3,3,3,0],[0,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,4,3,0],[0,2,1,0]],[[0,2,2,1],[1,3,2,1],[2,3,3,0],[0,3,1,0]],[[1,2,3,0],[2,3,3,1],[0,1,3,2],[1,1,0,1]],[[1,3,2,0],[2,3,3,1],[0,1,3,2],[1,1,0,1]],[[2,2,2,0],[2,3,3,1],[0,1,3,2],[1,1,0,1]],[[1,2,2,0],[2,3,4,1],[0,1,3,2],[1,0,2,0]],[[1,2,3,0],[2,3,3,1],[0,1,3,2],[1,0,2,0]],[[1,3,2,0],[2,3,3,1],[0,1,3,2],[1,0,2,0]],[[0,3,2,1],[1,3,2,1],[2,3,3,0],[1,0,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,3,0],[1,0,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,3,0],[1,0,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,3,0],[1,0,2,0]],[[0,2,2,1],[1,3,2,1],[3,3,3,0],[1,0,2,0]],[[0,2,2,1],[1,3,2,1],[2,4,3,0],[1,0,2,0]],[[0,2,2,1],[1,3,2,1],[2,3,3,0],[2,0,2,0]],[[0,3,2,1],[1,3,2,1],[2,3,3,0],[1,1,1,0]],[[0,2,3,1],[1,3,2,1],[2,3,3,0],[1,1,1,0]],[[0,2,2,2],[1,3,2,1],[2,3,3,0],[1,1,1,0]],[[0,2,2,1],[1,4,2,1],[2,3,3,0],[1,1,1,0]],[[0,2,2,1],[1,3,2,1],[3,3,3,0],[1,1,1,0]],[[0,2,2,1],[1,3,2,1],[2,4,3,0],[1,1,1,0]],[[0,2,2,1],[1,3,2,1],[2,3,3,0],[2,1,1,0]],[[2,2,2,0],[2,3,3,1],[0,1,3,2],[1,0,2,0]],[[1,2,2,0],[2,3,4,1],[0,1,3,2],[1,0,1,1]],[[1,2,3,0],[2,3,3,1],[0,1,3,2],[1,0,1,1]],[[1,3,2,0],[2,3,3,1],[0,1,3,2],[1,0,1,1]],[[2,2,2,0],[2,3,3,1],[0,1,3,2],[1,0,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,3,0],[1,2,0,0]],[[0,2,3,1],[1,3,2,1],[2,3,3,0],[1,2,0,0]],[[0,2,2,2],[1,3,2,1],[2,3,3,0],[1,2,0,0]],[[0,2,2,1],[1,4,2,1],[2,3,3,0],[1,2,0,0]],[[0,2,2,1],[1,3,2,1],[3,3,3,0],[1,2,0,0]],[[0,2,2,1],[1,3,2,1],[2,4,3,0],[1,2,0,0]],[[0,2,2,1],[1,3,2,1],[2,3,3,0],[2,2,0,0]],[[1,2,2,0],[2,3,4,1],[0,1,3,2],[0,2,1,0]],[[1,2,3,0],[2,3,3,1],[0,1,3,2],[0,2,1,0]],[[1,3,2,0],[2,3,3,1],[0,1,3,2],[0,2,1,0]],[[2,2,2,0],[2,3,3,1],[0,1,3,2],[0,2,1,0]],[[1,2,2,0],[2,3,4,1],[0,1,3,2],[0,2,0,1]],[[1,2,3,0],[2,3,3,1],[0,1,3,2],[0,2,0,1]],[[1,3,2,0],[2,3,3,1],[0,1,3,2],[0,2,0,1]],[[2,2,2,0],[2,3,3,1],[0,1,3,2],[0,2,0,1]],[[1,2,2,0],[2,3,4,1],[0,1,3,2],[0,1,2,0]],[[1,2,3,0],[2,3,3,1],[0,1,3,2],[0,1,2,0]],[[1,3,2,0],[2,3,3,1],[0,1,3,2],[0,1,2,0]],[[2,2,2,0],[2,3,3,1],[0,1,3,2],[0,1,2,0]],[[1,2,2,0],[2,3,4,1],[0,1,3,2],[0,1,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,3,1],[0,0,1,1]],[[0,2,3,1],[1,3,2,1],[2,3,3,1],[0,0,1,1]],[[0,2,2,2],[1,3,2,1],[2,3,3,1],[0,0,1,1]],[[0,2,2,1],[1,4,2,1],[2,3,3,1],[0,0,1,1]],[[0,3,2,1],[1,3,2,1],[2,3,3,1],[0,0,2,0]],[[0,2,3,1],[1,3,2,1],[2,3,3,1],[0,0,2,0]],[[0,2,2,2],[1,3,2,1],[2,3,3,1],[0,0,2,0]],[[0,2,2,1],[1,4,2,1],[2,3,3,1],[0,0,2,0]],[[1,2,3,0],[2,3,3,1],[0,1,3,2],[0,1,1,1]],[[1,3,2,0],[2,3,3,1],[0,1,3,2],[0,1,1,1]],[[2,2,2,0],[2,3,3,1],[0,1,3,2],[0,1,1,1]],[[1,2,2,0],[2,3,4,1],[0,1,3,2],[0,0,2,1]],[[1,2,3,0],[2,3,3,1],[0,1,3,2],[0,0,2,1]],[[1,3,2,0],[2,3,3,1],[0,1,3,2],[0,0,2,1]],[[2,2,2,0],[2,3,3,1],[0,1,3,2],[0,0,2,1]],[[0,3,2,1],[1,3,2,1],[2,3,3,1],[0,2,0,0]],[[0,2,3,1],[1,3,2,1],[2,3,3,1],[0,2,0,0]],[[0,2,2,2],[1,3,2,1],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,4,2,1],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,3,2,1],[3,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,3,2,1],[2,4,3,1],[0,2,0,0]],[[1,2,2,0],[2,3,4,1],[0,1,3,1],[1,0,2,1]],[[1,2,3,0],[2,3,3,1],[0,1,3,1],[1,0,2,1]],[[1,3,2,0],[2,3,3,1],[0,1,3,1],[1,0,2,1]],[[2,2,2,0],[2,3,3,1],[0,1,3,1],[1,0,2,1]],[[1,2,2,0],[2,3,4,1],[0,1,3,1],[0,1,2,1]],[[1,2,3,0],[2,3,3,1],[0,1,3,1],[0,1,2,1]],[[1,3,2,0],[2,3,3,1],[0,1,3,1],[0,1,2,1]],[[2,2,2,0],[2,3,3,1],[0,1,3,1],[0,1,2,1]],[[1,2,2,0],[2,3,4,1],[0,0,3,2],[0,2,2,0]],[[0,3,2,1],[1,3,2,1],[2,3,3,1],[1,1,0,0]],[[0,2,3,1],[1,3,2,1],[2,3,3,1],[1,1,0,0]],[[0,2,2,2],[1,3,2,1],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,4,2,1],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,3,2,1],[3,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,3,2,1],[2,4,3,1],[1,1,0,0]],[[0,2,2,1],[1,3,2,1],[2,3,3,1],[2,1,0,0]],[[1,2,3,0],[2,3,3,1],[0,0,3,2],[0,2,2,0]],[[1,3,2,0],[2,3,3,1],[0,0,3,2],[0,2,2,0]],[[2,2,2,0],[2,3,3,1],[0,0,3,2],[0,2,2,0]],[[1,2,2,0],[2,3,4,1],[0,0,3,2],[0,2,1,1]],[[1,2,3,0],[2,3,3,1],[0,0,3,2],[0,2,1,1]],[[1,3,2,0],[2,3,3,1],[0,0,3,2],[0,2,1,1]],[[2,2,2,0],[2,3,3,1],[0,0,3,2],[0,2,1,1]],[[1,2,2,0],[2,3,4,1],[0,0,3,1],[0,2,2,1]],[[1,2,3,0],[2,3,3,1],[0,0,3,1],[0,2,2,1]],[[1,3,2,0],[2,3,3,1],[0,0,3,1],[0,2,2,1]],[[2,2,2,0],[2,3,3,1],[0,0,3,1],[0,2,2,1]],[[0,3,2,1],[1,3,2,1],[2,3,3,2],[0,0,0,1]],[[0,2,3,1],[1,3,2,1],[2,3,3,2],[0,0,0,1]],[[0,2,2,2],[1,3,2,1],[2,3,3,2],[0,0,0,1]],[[0,2,2,1],[1,4,2,1],[2,3,3,2],[0,0,0,1]],[[1,2,2,0],[2,3,2,2],[2,3,0,1],[2,2,0,0]],[[1,2,2,0],[2,3,2,2],[3,3,0,1],[1,2,0,0]],[[1,2,2,0],[3,3,2,2],[2,3,0,1],[1,2,0,0]],[[1,3,2,0],[2,3,2,2],[2,3,0,1],[1,2,0,0]],[[2,2,2,0],[2,3,2,2],[2,3,0,1],[1,2,0,0]],[[1,2,2,0],[2,3,2,2],[3,3,0,1],[1,1,1,0]],[[1,2,2,0],[3,3,2,2],[2,3,0,1],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[2,3,0,1],[1,1,1,0]],[[2,2,2,0],[2,3,2,2],[2,3,0,1],[1,1,1,0]],[[1,2,2,0],[2,3,2,2],[3,3,0,1],[1,1,0,1]],[[1,2,2,0],[3,3,2,2],[2,3,0,1],[1,1,0,1]],[[1,3,2,0],[2,3,2,2],[2,3,0,1],[1,1,0,1]],[[2,2,2,0],[2,3,2,2],[2,3,0,1],[1,1,0,1]],[[1,2,2,0],[3,3,2,2],[2,3,0,1],[0,2,1,0]],[[1,3,2,0],[2,3,2,2],[2,3,0,1],[0,2,1,0]],[[2,2,2,0],[2,3,2,2],[2,3,0,1],[0,2,1,0]],[[1,2,2,0],[3,3,2,2],[2,3,0,1],[0,2,0,1]],[[1,3,2,0],[2,3,2,2],[2,3,0,1],[0,2,0,1]],[[2,2,2,0],[2,3,2,2],[2,3,0,1],[0,2,0,1]],[[1,2,2,0],[2,3,2,2],[2,3,0,0],[2,2,0,1]],[[1,2,2,0],[2,3,2,2],[3,3,0,0],[1,2,0,1]],[[1,2,2,0],[3,3,2,2],[2,3,0,0],[1,2,0,1]],[[1,3,2,0],[2,3,2,2],[2,3,0,0],[1,2,0,1]],[[2,2,2,0],[2,3,2,2],[2,3,0,0],[1,2,0,1]],[[1,2,2,0],[2,3,2,2],[3,3,0,0],[1,1,1,1]],[[1,2,2,0],[3,3,2,2],[2,3,0,0],[1,1,1,1]],[[1,3,2,0],[2,3,2,2],[2,3,0,0],[1,1,1,1]],[[2,2,2,0],[2,3,2,2],[2,3,0,0],[1,1,1,1]],[[1,2,2,0],[3,3,2,2],[2,3,0,0],[0,2,1,1]],[[1,3,2,0],[2,3,2,2],[2,3,0,0],[0,2,1,1]],[[2,2,2,0],[2,3,2,2],[2,3,0,0],[0,2,1,1]],[[1,2,2,0],[3,3,2,2],[2,2,3,1],[1,0,0,0]],[[1,2,3,0],[2,3,2,2],[2,2,3,1],[1,0,0,0]],[[1,3,2,0],[2,3,2,2],[2,2,3,1],[1,0,0,0]],[[2,2,2,0],[2,3,2,2],[2,2,3,1],[1,0,0,0]],[[1,2,2,0],[3,3,2,2],[2,2,3,0],[1,0,1,0]],[[1,3,2,0],[2,3,2,2],[2,2,3,0],[1,0,1,0]],[[2,2,2,0],[2,3,2,2],[2,2,3,0],[1,0,1,0]],[[0,3,2,1],[1,3,2,2],[1,1,3,0],[1,2,2,0]],[[0,2,3,1],[1,3,2,2],[1,1,3,0],[1,2,2,0]],[[0,2,2,2],[1,3,2,2],[1,1,3,0],[1,2,2,0]],[[0,2,2,1],[1,4,2,2],[1,1,3,0],[1,2,2,0]],[[1,2,2,0],[3,3,2,2],[2,2,2,1],[1,0,1,0]],[[1,2,3,0],[2,3,2,2],[2,2,2,1],[1,0,1,0]],[[1,3,2,0],[2,3,2,2],[2,2,2,1],[1,0,1,0]],[[2,2,2,0],[2,3,2,2],[2,2,2,1],[1,0,1,0]],[[1,2,2,0],[3,3,2,2],[2,2,2,1],[1,0,0,1]],[[1,2,3,0],[2,3,2,2],[2,2,2,1],[1,0,0,1]],[[1,3,2,0],[2,3,2,2],[2,2,2,1],[1,0,0,1]],[[2,2,2,0],[2,3,2,2],[2,2,2,1],[1,0,0,1]],[[1,2,2,0],[3,3,2,2],[2,2,2,0],[1,0,1,1]],[[1,3,2,0],[2,3,2,2],[2,2,2,0],[1,0,1,1]],[[2,2,2,0],[2,3,2,2],[2,2,2,0],[1,0,1,1]],[[0,3,2,1],[1,3,2,2],[1,2,3,0],[1,1,2,0]],[[0,2,3,1],[1,3,2,2],[1,2,3,0],[1,1,2,0]],[[0,2,2,2],[1,3,2,2],[1,2,3,0],[1,1,2,0]],[[0,2,2,1],[1,4,2,2],[1,2,3,0],[1,1,2,0]],[[0,3,2,1],[1,3,2,2],[1,2,3,0],[1,2,0,1]],[[0,2,3,1],[1,3,2,2],[1,2,3,0],[1,2,0,1]],[[0,2,2,2],[1,3,2,2],[1,2,3,0],[1,2,0,1]],[[0,2,2,1],[1,4,2,2],[1,2,3,0],[1,2,0,1]],[[0,3,2,1],[1,3,2,2],[1,2,3,0],[1,2,1,0]],[[0,2,3,1],[1,3,2,2],[1,2,3,0],[1,2,1,0]],[[0,2,2,2],[1,3,2,2],[1,2,3,0],[1,2,1,0]],[[0,2,2,1],[1,4,2,2],[1,2,3,0],[1,2,1,0]],[[1,2,2,0],[3,3,2,2],[2,2,1,2],[1,0,1,0]],[[1,2,3,0],[2,3,2,2],[2,2,1,2],[1,0,1,0]],[[1,3,2,0],[2,3,2,2],[2,2,1,2],[1,0,1,0]],[[2,2,2,0],[2,3,2,2],[2,2,1,2],[1,0,1,0]],[[1,2,2,0],[3,3,2,2],[2,2,1,2],[1,0,0,1]],[[1,2,3,0],[2,3,2,2],[2,2,1,2],[1,0,0,1]],[[1,3,2,0],[2,3,2,2],[2,2,1,2],[1,0,0,1]],[[2,2,2,0],[2,3,2,2],[2,2,1,2],[1,0,0,1]],[[0,3,2,1],[1,3,2,2],[1,3,0,2],[1,2,0,1]],[[0,2,3,1],[1,3,2,2],[1,3,0,2],[1,2,0,1]],[[0,2,2,2],[1,3,2,2],[1,3,0,2],[1,2,0,1]],[[0,2,2,1],[1,4,2,2],[1,3,0,2],[1,2,0,1]],[[0,2,2,1],[1,3,2,3],[1,3,0,2],[1,2,0,1]],[[0,3,2,1],[1,3,2,2],[1,3,0,2],[1,2,1,0]],[[0,2,3,1],[1,3,2,2],[1,3,0,2],[1,2,1,0]],[[0,2,2,2],[1,3,2,2],[1,3,0,2],[1,2,1,0]],[[0,2,2,1],[1,4,2,2],[1,3,0,2],[1,2,1,0]],[[0,2,2,1],[1,3,2,3],[1,3,0,2],[1,2,1,0]],[[0,3,2,1],[1,3,2,2],[1,3,1,0],[1,2,2,0]],[[0,2,3,1],[1,3,2,2],[1,3,1,0],[1,2,2,0]],[[0,2,2,2],[1,3,2,2],[1,3,1,0],[1,2,2,0]],[[0,2,2,1],[1,4,2,2],[1,3,1,0],[1,2,2,0]],[[0,2,2,1],[1,3,2,2],[1,4,1,0],[1,2,2,0]],[[0,2,2,1],[1,3,2,2],[1,3,1,0],[2,2,2,0]],[[0,2,2,1],[1,3,2,2],[1,3,1,0],[1,3,2,0]],[[0,3,2,1],[1,3,2,2],[1,3,2,0],[1,1,2,0]],[[0,2,3,1],[1,3,2,2],[1,3,2,0],[1,1,2,0]],[[0,2,2,2],[1,3,2,2],[1,3,2,0],[1,1,2,0]],[[0,2,2,1],[1,4,2,2],[1,3,2,0],[1,1,2,0]],[[0,2,2,1],[1,3,2,2],[1,4,2,0],[1,1,2,0]],[[0,3,2,1],[1,3,2,2],[1,3,2,0],[1,2,0,1]],[[0,2,3,1],[1,3,2,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,2],[1,3,2,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,4,2,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,3,2,2],[1,4,2,0],[1,2,0,1]],[[0,3,2,1],[1,3,2,2],[1,3,2,0],[1,2,1,0]],[[0,2,3,1],[1,3,2,2],[1,3,2,0],[1,2,1,0]],[[0,2,2,2],[1,3,2,2],[1,3,2,0],[1,2,1,0]],[[0,2,2,1],[1,4,2,2],[1,3,2,0],[1,2,1,0]],[[0,2,2,1],[1,3,2,2],[1,4,2,0],[1,2,1,0]],[[0,2,2,1],[1,3,2,2],[1,3,2,0],[2,2,1,0]],[[0,2,2,1],[1,3,2,2],[1,3,2,0],[1,3,1,0]],[[1,2,2,0],[3,3,2,2],[2,1,3,1],[1,1,0,0]],[[1,2,3,0],[2,3,2,2],[2,1,3,1],[1,1,0,0]],[[1,3,2,0],[2,3,2,2],[2,1,3,1],[1,1,0,0]],[[2,2,2,0],[2,3,2,2],[2,1,3,1],[1,1,0,0]],[[1,2,2,0],[3,3,2,2],[2,1,3,1],[0,2,0,0]],[[1,2,3,0],[2,3,2,2],[2,1,3,1],[0,2,0,0]],[[1,3,2,0],[2,3,2,2],[2,1,3,1],[0,2,0,0]],[[2,2,2,0],[2,3,2,2],[2,1,3,1],[0,2,0,0]],[[1,2,2,0],[3,3,2,2],[2,1,3,0],[1,2,0,0]],[[1,3,2,0],[2,3,2,2],[2,1,3,0],[1,2,0,0]],[[2,2,2,0],[2,3,2,2],[2,1,3,0],[1,2,0,0]],[[1,2,2,0],[3,3,2,2],[2,1,3,0],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[2,1,3,0],[1,1,1,0]],[[2,2,2,0],[2,3,2,2],[2,1,3,0],[1,1,1,0]],[[1,2,2,0],[3,3,2,2],[2,1,3,0],[1,0,2,0]],[[1,3,2,0],[2,3,2,2],[2,1,3,0],[1,0,2,0]],[[2,2,2,0],[2,3,2,2],[2,1,3,0],[1,0,2,0]],[[1,2,2,0],[3,3,2,2],[2,1,3,0],[0,2,1,0]],[[1,3,2,0],[2,3,2,2],[2,1,3,0],[0,2,1,0]],[[2,2,2,0],[2,3,2,2],[2,1,3,0],[0,2,1,0]],[[0,3,2,1],[1,3,2,2],[1,3,3,0],[1,2,0,0]],[[0,2,3,1],[1,3,2,2],[1,3,3,0],[1,2,0,0]],[[0,2,2,2],[1,3,2,2],[1,3,3,0],[1,2,0,0]],[[0,2,2,1],[1,4,2,2],[1,3,3,0],[1,2,0,0]],[[0,2,2,1],[1,3,2,2],[1,4,3,0],[1,2,0,0]],[[1,2,2,0],[3,3,2,2],[2,1,3,0],[0,1,2,0]],[[1,3,2,0],[2,3,2,2],[2,1,3,0],[0,1,2,0]],[[2,2,2,0],[2,3,2,2],[2,1,3,0],[0,1,2,0]],[[1,2,2,0],[3,3,2,2],[2,1,2,1],[1,2,0,0]],[[1,2,3,0],[2,3,2,2],[2,1,2,1],[1,2,0,0]],[[1,3,2,0],[2,3,2,2],[2,1,2,1],[1,2,0,0]],[[2,2,2,0],[2,3,2,2],[2,1,2,1],[1,2,0,0]],[[1,2,2,0],[3,3,2,2],[2,1,2,1],[1,1,1,0]],[[1,2,3,0],[2,3,2,2],[2,1,2,1],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[2,1,2,1],[1,1,1,0]],[[2,2,2,0],[2,3,2,2],[2,1,2,1],[1,1,1,0]],[[1,2,2,0],[3,3,2,2],[2,1,2,1],[1,1,0,1]],[[1,2,3,0],[2,3,2,2],[2,1,2,1],[1,1,0,1]],[[1,3,2,0],[2,3,2,2],[2,1,2,1],[1,1,0,1]],[[2,2,2,0],[2,3,2,2],[2,1,2,1],[1,1,0,1]],[[1,2,2,0],[3,3,2,2],[2,1,2,1],[1,0,2,0]],[[1,2,3,0],[2,3,2,2],[2,1,2,1],[1,0,2,0]],[[1,3,2,0],[2,3,2,2],[2,1,2,1],[1,0,2,0]],[[2,2,2,0],[2,3,2,2],[2,1,2,1],[1,0,2,0]],[[1,2,2,0],[3,3,2,2],[2,1,2,1],[1,0,1,1]],[[1,2,3,0],[2,3,2,2],[2,1,2,1],[1,0,1,1]],[[1,3,2,0],[2,3,2,2],[2,1,2,1],[1,0,1,1]],[[2,2,2,0],[2,3,2,2],[2,1,2,1],[1,0,1,1]],[[1,2,2,0],[3,3,2,2],[2,1,2,1],[0,2,1,0]],[[1,2,3,0],[2,3,2,2],[2,1,2,1],[0,2,1,0]],[[1,3,2,0],[2,3,2,2],[2,1,2,1],[0,2,1,0]],[[2,2,2,0],[2,3,2,2],[2,1,2,1],[0,2,1,0]],[[1,2,2,0],[3,3,2,2],[2,1,2,1],[0,2,0,1]],[[1,2,3,0],[2,3,2,2],[2,1,2,1],[0,2,0,1]],[[1,3,2,0],[2,3,2,2],[2,1,2,1],[0,2,0,1]],[[2,2,2,0],[2,3,2,2],[2,1,2,1],[0,2,0,1]],[[1,2,2,0],[3,3,2,2],[2,1,2,1],[0,1,2,0]],[[1,2,3,0],[2,3,2,2],[2,1,2,1],[0,1,2,0]],[[1,3,2,0],[2,3,2,2],[2,1,2,1],[0,1,2,0]],[[2,2,2,0],[2,3,2,2],[2,1,2,1],[0,1,2,0]],[[1,2,2,0],[3,3,2,2],[2,1,2,1],[0,1,1,1]],[[1,2,3,0],[2,3,2,2],[2,1,2,1],[0,1,1,1]],[[1,3,2,0],[2,3,2,2],[2,1,2,1],[0,1,1,1]],[[2,2,2,0],[2,3,2,2],[2,1,2,1],[0,1,1,1]],[[1,2,2,0],[3,3,2,2],[2,1,2,0],[1,2,0,1]],[[1,3,2,0],[2,3,2,2],[2,1,2,0],[1,2,0,1]],[[2,2,2,0],[2,3,2,2],[2,1,2,0],[1,2,0,1]],[[1,2,2,0],[3,3,2,2],[2,1,2,0],[1,1,1,1]],[[1,2,3,0],[2,3,2,2],[2,1,2,0],[1,1,1,1]],[[1,3,2,0],[2,3,2,2],[2,1,2,0],[1,1,1,1]],[[2,2,2,0],[2,3,2,2],[2,1,2,0],[1,1,1,1]],[[1,2,2,0],[3,3,2,2],[2,1,2,0],[1,0,2,1]],[[1,2,3,0],[2,3,2,2],[2,1,2,0],[1,0,2,1]],[[1,3,2,0],[2,3,2,2],[2,1,2,0],[1,0,2,1]],[[2,2,2,0],[2,3,2,2],[2,1,2,0],[1,0,2,1]],[[1,2,2,0],[3,3,2,2],[2,1,2,0],[0,2,1,1]],[[1,2,3,0],[2,3,2,2],[2,1,2,0],[0,2,1,1]],[[1,3,2,0],[2,3,2,2],[2,1,2,0],[0,2,1,1]],[[2,2,2,0],[2,3,2,2],[2,1,2,0],[0,2,1,1]],[[1,2,2,0],[3,3,2,2],[2,1,2,0],[0,1,2,1]],[[1,2,3,0],[2,3,2,2],[2,1,2,0],[0,1,2,1]],[[1,3,2,0],[2,3,2,2],[2,1,2,0],[0,1,2,1]],[[2,2,2,0],[2,3,2,2],[2,1,2,0],[0,1,2,1]],[[1,2,2,0],[3,3,2,2],[2,1,1,2],[1,2,0,0]],[[1,2,3,0],[2,3,2,2],[2,1,1,2],[1,2,0,0]],[[1,3,2,0],[2,3,2,2],[2,1,1,2],[1,2,0,0]],[[2,2,2,0],[2,3,2,2],[2,1,1,2],[1,2,0,0]],[[1,2,2,0],[3,3,2,2],[2,1,1,2],[1,1,1,0]],[[1,2,3,0],[2,3,2,2],[2,1,1,2],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[2,1,1,2],[1,1,1,0]],[[2,2,2,0],[2,3,2,2],[2,1,1,2],[1,1,1,0]],[[1,2,2,0],[3,3,2,2],[2,1,1,2],[1,1,0,1]],[[1,2,3,0],[2,3,2,2],[2,1,1,2],[1,1,0,1]],[[0,3,2,1],[1,3,2,2],[2,0,3,0],[1,2,2,0]],[[0,2,3,1],[1,3,2,2],[2,0,3,0],[1,2,2,0]],[[0,2,2,2],[1,3,2,2],[2,0,3,0],[1,2,2,0]],[[0,2,2,1],[1,4,2,2],[2,0,3,0],[1,2,2,0]],[[1,3,2,0],[2,3,2,2],[2,1,1,2],[1,1,0,1]],[[2,2,2,0],[2,3,2,2],[2,1,1,2],[1,1,0,1]],[[1,2,2,0],[3,3,2,2],[2,1,1,2],[1,0,2,0]],[[1,2,3,0],[2,3,2,2],[2,1,1,2],[1,0,2,0]],[[1,3,2,0],[2,3,2,2],[2,1,1,2],[1,0,2,0]],[[2,2,2,0],[2,3,2,2],[2,1,1,2],[1,0,2,0]],[[1,2,2,0],[3,3,2,2],[2,1,1,2],[1,0,1,1]],[[1,2,3,0],[2,3,2,2],[2,1,1,2],[1,0,1,1]],[[1,3,2,0],[2,3,2,2],[2,1,1,2],[1,0,1,1]],[[2,2,2,0],[2,3,2,2],[2,1,1,2],[1,0,1,1]],[[1,2,2,0],[3,3,2,2],[2,1,1,2],[0,2,1,0]],[[1,2,3,0],[2,3,2,2],[2,1,1,2],[0,2,1,0]],[[1,3,2,0],[2,3,2,2],[2,1,1,2],[0,2,1,0]],[[2,2,2,0],[2,3,2,2],[2,1,1,2],[0,2,1,0]],[[1,2,2,0],[3,3,2,2],[2,1,1,2],[0,2,0,1]],[[1,2,3,0],[2,3,2,2],[2,1,1,2],[0,2,0,1]],[[1,3,2,0],[2,3,2,2],[2,1,1,2],[0,2,0,1]],[[2,2,2,0],[2,3,2,2],[2,1,1,2],[0,2,0,1]],[[1,2,2,0],[3,3,2,2],[2,1,1,2],[0,1,2,0]],[[1,2,3,0],[2,3,2,2],[2,1,1,2],[0,1,2,0]],[[1,3,2,0],[2,3,2,2],[2,1,1,2],[0,1,2,0]],[[2,2,2,0],[2,3,2,2],[2,1,1,2],[0,1,2,0]],[[1,2,2,0],[3,3,2,2],[2,1,1,2],[0,1,1,1]],[[1,2,3,0],[2,3,2,2],[2,1,1,2],[0,1,1,1]],[[1,3,2,0],[2,3,2,2],[2,1,1,2],[0,1,1,1]],[[2,2,2,0],[2,3,2,2],[2,1,1,2],[0,1,1,1]],[[1,2,2,0],[3,3,2,2],[2,1,1,1],[1,1,2,0]],[[1,2,3,0],[2,3,2,2],[2,1,1,1],[1,1,2,0]],[[1,3,2,0],[2,3,2,2],[2,1,1,1],[1,1,2,0]],[[2,2,2,0],[2,3,2,2],[2,1,1,1],[1,1,2,0]],[[1,2,2,0],[3,3,2,2],[2,1,1,1],[0,2,2,0]],[[1,2,3,0],[2,3,2,2],[2,1,1,1],[0,2,2,0]],[[1,3,2,0],[2,3,2,2],[2,1,1,1],[0,2,2,0]],[[2,2,2,0],[2,3,2,2],[2,1,1,1],[0,2,2,0]],[[1,2,2,0],[3,3,2,2],[2,1,1,0],[1,1,2,1]],[[1,2,3,0],[2,3,2,2],[2,1,1,0],[1,1,2,1]],[[1,3,2,0],[2,3,2,2],[2,1,1,0],[1,1,2,1]],[[2,2,2,0],[2,3,2,2],[2,1,1,0],[1,1,2,1]],[[1,2,2,0],[3,3,2,2],[2,1,1,0],[0,2,2,1]],[[1,2,3,0],[2,3,2,2],[2,1,1,0],[0,2,2,1]],[[1,3,2,0],[2,3,2,2],[2,1,1,0],[0,2,2,1]],[[2,2,2,0],[2,3,2,2],[2,1,1,0],[0,2,2,1]],[[0,3,2,1],[1,3,2,2],[2,1,3,0],[0,2,2,0]],[[0,2,3,1],[1,3,2,2],[2,1,3,0],[0,2,2,0]],[[0,2,2,2],[1,3,2,2],[2,1,3,0],[0,2,2,0]],[[0,2,2,1],[1,4,2,2],[2,1,3,0],[0,2,2,0]],[[1,2,2,0],[3,3,2,2],[2,1,0,2],[1,1,2,0]],[[1,2,3,0],[2,3,2,2],[2,1,0,2],[1,1,2,0]],[[1,3,2,0],[2,3,2,2],[2,1,0,2],[1,1,2,0]],[[2,2,2,0],[2,3,2,2],[2,1,0,2],[1,1,2,0]],[[1,2,2,0],[3,3,2,2],[2,1,0,2],[1,1,1,1]],[[1,2,3,0],[2,3,2,2],[2,1,0,2],[1,1,1,1]],[[1,3,2,0],[2,3,2,2],[2,1,0,2],[1,1,1,1]],[[2,2,2,0],[2,3,2,2],[2,1,0,2],[1,1,1,1]],[[1,2,2,0],[3,3,2,2],[2,1,0,2],[1,0,2,1]],[[1,2,3,0],[2,3,2,2],[2,1,0,2],[1,0,2,1]],[[1,3,2,0],[2,3,2,2],[2,1,0,2],[1,0,2,1]],[[2,2,2,0],[2,3,2,2],[2,1,0,2],[1,0,2,1]],[[1,2,2,0],[3,3,2,2],[2,1,0,2],[0,2,2,0]],[[1,2,3,0],[2,3,2,2],[2,1,0,2],[0,2,2,0]],[[1,3,2,0],[2,3,2,2],[2,1,0,2],[0,2,2,0]],[[2,2,2,0],[2,3,2,2],[2,1,0,2],[0,2,2,0]],[[1,2,2,0],[3,3,2,2],[2,1,0,2],[0,2,1,1]],[[1,2,3,0],[2,3,2,2],[2,1,0,2],[0,2,1,1]],[[1,3,2,0],[2,3,2,2],[2,1,0,2],[0,2,1,1]],[[2,2,2,0],[2,3,2,2],[2,1,0,2],[0,2,1,1]],[[1,2,2,0],[3,3,2,2],[2,1,0,2],[0,1,2,1]],[[1,2,3,0],[2,3,2,2],[2,1,0,2],[0,1,2,1]],[[1,3,2,0],[2,3,2,2],[2,1,0,2],[0,1,2,1]],[[2,2,2,0],[2,3,2,2],[2,1,0,2],[0,1,2,1]],[[1,2,2,0],[3,3,2,2],[2,1,0,1],[1,1,2,1]],[[1,2,3,0],[2,3,2,2],[2,1,0,1],[1,1,2,1]],[[1,3,2,0],[2,3,2,2],[2,1,0,1],[1,1,2,1]],[[2,2,2,0],[2,3,2,2],[2,1,0,1],[1,1,2,1]],[[1,2,2,0],[3,3,2,2],[2,1,0,1],[0,2,2,1]],[[1,2,3,0],[2,3,2,2],[2,1,0,1],[0,2,2,1]],[[1,3,2,0],[2,3,2,2],[2,1,0,1],[0,2,2,1]],[[2,2,2,0],[2,3,2,2],[2,1,0,1],[0,2,2,1]],[[1,2,2,0],[3,3,2,2],[2,0,3,2],[1,0,0,1]],[[1,2,3,0],[2,3,2,2],[2,0,3,2],[1,0,0,1]],[[1,3,2,0],[2,3,2,2],[2,0,3,2],[1,0,0,1]],[[2,2,2,0],[2,3,2,2],[2,0,3,2],[1,0,0,1]],[[1,2,2,0],[3,3,2,2],[2,0,3,2],[0,1,0,1]],[[1,2,3,0],[2,3,2,2],[2,0,3,2],[0,1,0,1]],[[1,3,2,0],[2,3,2,2],[2,0,3,2],[0,1,0,1]],[[2,2,2,0],[2,3,2,2],[2,0,3,2],[0,1,0,1]],[[0,2,2,1],[1,3,2,2],[3,2,1,0],[1,2,2,0]],[[0,2,2,1],[1,3,2,2],[2,2,1,0],[2,2,2,0]],[[0,2,2,1],[1,3,2,2],[2,2,1,0],[1,3,2,0]],[[1,2,2,0],[3,3,2,2],[2,0,3,1],[1,1,1,0]],[[1,2,3,0],[2,3,2,2],[2,0,3,1],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[2,0,3,1],[1,1,1,0]],[[2,2,2,0],[2,3,2,2],[2,0,3,1],[1,1,1,0]],[[1,2,2,0],[3,3,2,2],[2,0,3,1],[1,1,0,1]],[[1,2,3,0],[2,3,2,2],[2,0,3,1],[1,1,0,1]],[[1,3,2,0],[2,3,2,2],[2,0,3,1],[1,1,0,1]],[[2,2,2,0],[2,3,2,2],[2,0,3,1],[1,1,0,1]],[[1,2,2,0],[3,3,2,2],[2,0,3,1],[1,0,2,0]],[[1,2,3,0],[2,3,2,2],[2,0,3,1],[1,0,2,0]],[[1,3,2,0],[2,3,2,2],[2,0,3,1],[1,0,2,0]],[[2,2,2,0],[2,3,2,2],[2,0,3,1],[1,0,2,0]],[[1,2,2,0],[3,3,2,2],[2,0,3,1],[1,0,1,1]],[[1,2,3,0],[2,3,2,2],[2,0,3,1],[1,0,1,1]],[[1,3,2,0],[2,3,2,2],[2,0,3,1],[1,0,1,1]],[[2,2,2,0],[2,3,2,2],[2,0,3,1],[1,0,1,1]],[[1,2,2,0],[3,3,2,2],[2,0,3,1],[0,2,1,0]],[[1,2,3,0],[2,3,2,2],[2,0,3,1],[0,2,1,0]],[[1,3,2,0],[2,3,2,2],[2,0,3,1],[0,2,1,0]],[[2,2,2,0],[2,3,2,2],[2,0,3,1],[0,2,1,0]],[[1,2,2,0],[3,3,2,2],[2,0,3,1],[0,2,0,1]],[[1,2,3,0],[2,3,2,2],[2,0,3,1],[0,2,0,1]],[[1,3,2,0],[2,3,2,2],[2,0,3,1],[0,2,0,1]],[[2,2,2,0],[2,3,2,2],[2,0,3,1],[0,2,0,1]],[[0,2,2,1],[1,3,2,2],[3,2,2,0],[1,2,1,0]],[[0,2,2,1],[1,3,2,2],[2,2,2,0],[2,2,1,0]],[[0,2,2,1],[1,3,2,2],[2,2,2,0],[1,3,1,0]],[[1,2,2,0],[3,3,2,2],[2,0,3,1],[0,1,2,0]],[[1,2,3,0],[2,3,2,2],[2,0,3,1],[0,1,2,0]],[[1,3,2,0],[2,3,2,2],[2,0,3,1],[0,1,2,0]],[[2,2,2,0],[2,3,2,2],[2,0,3,1],[0,1,2,0]],[[1,2,2,0],[3,3,2,2],[2,0,3,1],[0,1,1,1]],[[1,2,3,0],[2,3,2,2],[2,0,3,1],[0,1,1,1]],[[1,3,2,0],[2,3,2,2],[2,0,3,1],[0,1,1,1]],[[2,2,2,0],[2,3,2,2],[2,0,3,1],[0,1,1,1]],[[1,2,2,0],[3,3,2,2],[2,0,3,1],[0,0,2,1]],[[1,2,3,0],[2,3,2,2],[2,0,3,1],[0,0,2,1]],[[1,3,2,0],[2,3,2,2],[2,0,3,1],[0,0,2,1]],[[2,2,2,0],[2,3,2,2],[2,0,3,1],[0,0,2,1]],[[1,2,2,0],[3,3,2,2],[2,0,3,0],[1,2,1,0]],[[1,3,2,0],[2,3,2,2],[2,0,3,0],[1,2,1,0]],[[2,2,2,0],[2,3,2,2],[2,0,3,0],[1,2,1,0]],[[1,2,2,0],[3,3,2,2],[2,0,3,0],[1,1,1,1]],[[1,2,3,0],[2,3,2,2],[2,0,3,0],[1,1,1,1]],[[1,3,2,0],[2,3,2,2],[2,0,3,0],[1,1,1,1]],[[2,2,2,0],[2,3,2,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,0],[3,3,2,2],[2,0,3,0],[1,0,2,1]],[[1,2,3,0],[2,3,2,2],[2,0,3,0],[1,0,2,1]],[[1,3,2,0],[2,3,2,2],[2,0,3,0],[1,0,2,1]],[[2,2,2,0],[2,3,2,2],[2,0,3,0],[1,0,2,1]],[[1,2,2,0],[3,3,2,2],[2,0,3,0],[0,2,1,1]],[[1,2,3,0],[2,3,2,2],[2,0,3,0],[0,2,1,1]],[[1,3,2,0],[2,3,2,2],[2,0,3,0],[0,2,1,1]],[[2,2,2,0],[2,3,2,2],[2,0,3,0],[0,2,1,1]],[[1,2,2,0],[3,3,2,2],[2,0,3,0],[0,1,2,1]],[[1,2,3,0],[2,3,2,2],[2,0,3,0],[0,1,2,1]],[[1,3,2,0],[2,3,2,2],[2,0,3,0],[0,1,2,1]],[[2,2,2,0],[2,3,2,2],[2,0,3,0],[0,1,2,1]],[[1,2,2,0],[3,3,2,2],[2,0,2,2],[1,1,1,0]],[[1,2,3,0],[2,3,2,2],[2,0,2,2],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[2,0,2,2],[1,1,1,0]],[[2,2,2,0],[2,3,2,2],[2,0,2,2],[1,1,1,0]],[[1,2,2,0],[3,3,2,2],[2,0,2,2],[1,1,0,1]],[[1,2,3,0],[2,3,2,2],[2,0,2,2],[1,1,0,1]],[[1,3,2,0],[2,3,2,2],[2,0,2,2],[1,1,0,1]],[[2,2,2,0],[2,3,2,2],[2,0,2,2],[1,1,0,1]],[[1,2,2,0],[3,3,2,2],[2,0,2,2],[1,0,2,0]],[[1,2,3,0],[2,3,2,2],[2,0,2,2],[1,0,2,0]],[[1,3,2,0],[2,3,2,2],[2,0,2,2],[1,0,2,0]],[[2,2,2,0],[2,3,2,2],[2,0,2,2],[1,0,2,0]],[[1,2,2,0],[3,3,2,2],[2,0,2,2],[1,0,1,1]],[[1,2,3,0],[2,3,2,2],[2,0,2,2],[1,0,1,1]],[[1,3,2,0],[2,3,2,2],[2,0,2,2],[1,0,1,1]],[[2,2,2,0],[2,3,2,2],[2,0,2,2],[1,0,1,1]],[[1,2,2,0],[3,3,2,2],[2,0,2,2],[0,2,1,0]],[[1,2,3,0],[2,3,2,2],[2,0,2,2],[0,2,1,0]],[[1,3,2,0],[2,3,2,2],[2,0,2,2],[0,2,1,0]],[[2,2,2,0],[2,3,2,2],[2,0,2,2],[0,2,1,0]],[[1,2,2,0],[3,3,2,2],[2,0,2,2],[0,2,0,1]],[[0,3,2,1],[1,3,2,2],[2,2,3,0],[0,1,1,1]],[[0,2,3,1],[1,3,2,2],[2,2,3,0],[0,1,1,1]],[[0,2,2,2],[1,3,2,2],[2,2,3,0],[0,1,1,1]],[[0,2,2,1],[1,4,2,2],[2,2,3,0],[0,1,1,1]],[[0,3,2,1],[1,3,2,2],[2,2,3,0],[0,1,2,0]],[[0,2,3,1],[1,3,2,2],[2,2,3,0],[0,1,2,0]],[[0,2,2,2],[1,3,2,2],[2,2,3,0],[0,1,2,0]],[[0,2,2,1],[1,4,2,2],[2,2,3,0],[0,1,2,0]],[[0,3,2,1],[1,3,2,2],[2,2,3,0],[0,2,0,1]],[[0,2,3,1],[1,3,2,2],[2,2,3,0],[0,2,0,1]],[[0,2,2,2],[1,3,2,2],[2,2,3,0],[0,2,0,1]],[[0,2,2,1],[1,4,2,2],[2,2,3,0],[0,2,0,1]],[[0,3,2,1],[1,3,2,2],[2,2,3,0],[0,2,1,0]],[[0,2,3,1],[1,3,2,2],[2,2,3,0],[0,2,1,0]],[[0,2,2,2],[1,3,2,2],[2,2,3,0],[0,2,1,0]],[[0,2,2,1],[1,4,2,2],[2,2,3,0],[0,2,1,0]],[[1,2,3,0],[2,3,2,2],[2,0,2,2],[0,2,0,1]],[[1,3,2,0],[2,3,2,2],[2,0,2,2],[0,2,0,1]],[[2,2,2,0],[2,3,2,2],[2,0,2,2],[0,2,0,1]],[[1,2,2,0],[3,3,2,2],[2,0,2,2],[0,1,2,0]],[[1,2,3,0],[2,3,2,2],[2,0,2,2],[0,1,2,0]],[[0,3,2,1],[1,3,2,2],[2,2,3,0],[1,0,1,1]],[[0,2,3,1],[1,3,2,2],[2,2,3,0],[1,0,1,1]],[[0,2,2,2],[1,3,2,2],[2,2,3,0],[1,0,1,1]],[[0,2,2,1],[1,4,2,2],[2,2,3,0],[1,0,1,1]],[[0,3,2,1],[1,3,2,2],[2,2,3,0],[1,0,2,0]],[[0,2,3,1],[1,3,2,2],[2,2,3,0],[1,0,2,0]],[[0,2,2,2],[1,3,2,2],[2,2,3,0],[1,0,2,0]],[[0,2,2,1],[1,4,2,2],[2,2,3,0],[1,0,2,0]],[[0,3,2,1],[1,3,2,2],[2,2,3,0],[1,1,0,1]],[[0,2,3,1],[1,3,2,2],[2,2,3,0],[1,1,0,1]],[[0,2,2,2],[1,3,2,2],[2,2,3,0],[1,1,0,1]],[[0,2,2,1],[1,4,2,2],[2,2,3,0],[1,1,0,1]],[[0,3,2,1],[1,3,2,2],[2,2,3,0],[1,1,1,0]],[[0,2,3,1],[1,3,2,2],[2,2,3,0],[1,1,1,0]],[[0,2,2,2],[1,3,2,2],[2,2,3,0],[1,1,1,0]],[[0,2,2,1],[1,4,2,2],[2,2,3,0],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[2,0,2,2],[0,1,2,0]],[[2,2,2,0],[2,3,2,2],[2,0,2,2],[0,1,2,0]],[[1,2,2,0],[3,3,2,2],[2,0,2,2],[0,1,1,1]],[[1,2,3,0],[2,3,2,2],[2,0,2,2],[0,1,1,1]],[[1,3,2,0],[2,3,2,2],[2,0,2,2],[0,1,1,1]],[[2,2,2,0],[2,3,2,2],[2,0,2,2],[0,1,1,1]],[[1,2,2,0],[3,3,2,2],[2,0,2,2],[0,0,2,1]],[[1,2,3,0],[2,3,2,2],[2,0,2,2],[0,0,2,1]],[[1,3,2,0],[2,3,2,2],[2,0,2,2],[0,0,2,1]],[[2,2,2,0],[2,3,2,2],[2,0,2,2],[0,0,2,1]],[[1,2,2,0],[3,3,2,2],[2,0,2,1],[1,2,1,0]],[[1,2,3,0],[2,3,2,2],[2,0,2,1],[1,2,1,0]],[[1,3,2,0],[2,3,2,2],[2,0,2,1],[1,2,1,0]],[[2,2,2,0],[2,3,2,2],[2,0,2,1],[1,2,1,0]],[[1,2,2,0],[3,3,2,2],[2,0,2,1],[1,2,0,1]],[[1,2,3,0],[2,3,2,2],[2,0,2,1],[1,2,0,1]],[[1,3,2,0],[2,3,2,2],[2,0,2,1],[1,2,0,1]],[[2,2,2,0],[2,3,2,2],[2,0,2,1],[1,2,0,1]],[[1,2,2,0],[3,3,2,2],[2,0,2,0],[1,2,1,1]],[[1,2,3,0],[2,3,2,2],[2,0,2,0],[1,2,1,1]],[[1,3,2,0],[2,3,2,2],[2,0,2,0],[1,2,1,1]],[[2,2,2,0],[2,3,2,2],[2,0,2,0],[1,2,1,1]],[[1,2,2,0],[3,3,2,2],[2,0,1,2],[1,2,1,0]],[[1,2,3,0],[2,3,2,2],[2,0,1,2],[1,2,1,0]],[[1,3,2,0],[2,3,2,2],[2,0,1,2],[1,2,1,0]],[[2,2,2,0],[2,3,2,2],[2,0,1,2],[1,2,1,0]],[[1,2,2,0],[3,3,2,2],[2,0,1,2],[1,2,0,1]],[[1,2,3,0],[2,3,2,2],[2,0,1,2],[1,2,0,1]],[[1,3,2,0],[2,3,2,2],[2,0,1,2],[1,2,0,1]],[[2,2,2,0],[2,3,2,2],[2,0,1,2],[1,2,0,1]],[[1,2,2,0],[3,3,2,2],[2,0,1,2],[1,0,2,1]],[[1,2,3,0],[2,3,2,2],[2,0,1,2],[1,0,2,1]],[[1,3,2,0],[2,3,2,2],[2,0,1,2],[1,0,2,1]],[[2,2,2,0],[2,3,2,2],[2,0,1,2],[1,0,2,1]],[[1,2,2,0],[3,3,2,2],[2,0,1,2],[0,1,2,1]],[[1,2,3,0],[2,3,2,2],[2,0,1,2],[0,1,2,1]],[[1,3,2,0],[2,3,2,2],[2,0,1,2],[0,1,2,1]],[[2,2,2,0],[2,3,2,2],[2,0,1,2],[0,1,2,1]],[[1,2,2,0],[3,3,2,2],[2,0,1,1],[1,2,2,0]],[[1,2,3,0],[2,3,2,2],[2,0,1,1],[1,2,2,0]],[[1,3,2,0],[2,3,2,2],[2,0,1,1],[1,2,2,0]],[[2,2,2,0],[2,3,2,2],[2,0,1,1],[1,2,2,0]],[[1,2,2,0],[3,3,2,2],[2,0,1,0],[1,2,2,1]],[[1,2,3,0],[2,3,2,2],[2,0,1,0],[1,2,2,1]],[[1,3,2,0],[2,3,2,2],[2,0,1,0],[1,2,2,1]],[[2,2,2,0],[2,3,2,2],[2,0,1,0],[1,2,2,1]],[[1,2,2,0],[3,3,2,2],[2,0,0,2],[1,2,2,0]],[[1,2,3,0],[2,3,2,2],[2,0,0,2],[1,2,2,0]],[[1,3,2,0],[2,3,2,2],[2,0,0,2],[1,2,2,0]],[[2,2,2,0],[2,3,2,2],[2,0,0,2],[1,2,2,0]],[[1,2,2,0],[3,3,2,2],[2,0,0,2],[1,2,1,1]],[[1,2,3,0],[2,3,2,2],[2,0,0,2],[1,2,1,1]],[[1,3,2,0],[2,3,2,2],[2,0,0,2],[1,2,1,1]],[[2,2,2,0],[2,3,2,2],[2,0,0,2],[1,2,1,1]],[[1,2,2,0],[3,3,2,2],[2,0,0,2],[1,1,2,1]],[[1,2,3,0],[2,3,2,2],[2,0,0,2],[1,1,2,1]],[[1,3,2,0],[2,3,2,2],[2,0,0,2],[1,1,2,1]],[[2,2,2,0],[2,3,2,2],[2,0,0,2],[1,1,2,1]],[[1,2,2,0],[3,3,2,2],[2,0,0,2],[0,2,2,1]],[[1,2,3,0],[2,3,2,2],[2,0,0,2],[0,2,2,1]],[[1,3,2,0],[2,3,2,2],[2,0,0,2],[0,2,2,1]],[[2,2,2,0],[2,3,2,2],[2,0,0,2],[0,2,2,1]],[[1,2,2,0],[3,3,2,2],[2,0,0,1],[1,2,2,1]],[[1,2,3,0],[2,3,2,2],[2,0,0,1],[1,2,2,1]],[[1,3,2,0],[2,3,2,2],[2,0,0,1],[1,2,2,1]],[[2,2,2,0],[2,3,2,2],[2,0,0,1],[1,2,2,1]],[[0,2,2,1],[1,3,2,2],[3,3,0,0],[1,2,2,0]],[[0,2,2,1],[1,3,2,2],[2,3,0,0],[2,2,2,0]],[[0,2,2,1],[1,3,2,2],[2,3,0,0],[1,3,2,0]],[[0,3,2,1],[1,3,2,2],[2,3,0,2],[0,1,1,1]],[[0,2,3,1],[1,3,2,2],[2,3,0,2],[0,1,1,1]],[[0,2,2,2],[1,3,2,2],[2,3,0,2],[0,1,1,1]],[[0,2,2,1],[1,4,2,2],[2,3,0,2],[0,1,1,1]],[[0,2,2,1],[1,3,2,3],[2,3,0,2],[0,1,1,1]],[[0,3,2,1],[1,3,2,2],[2,3,0,2],[0,1,2,0]],[[0,2,3,1],[1,3,2,2],[2,3,0,2],[0,1,2,0]],[[0,2,2,2],[1,3,2,2],[2,3,0,2],[0,1,2,0]],[[0,2,2,1],[1,4,2,2],[2,3,0,2],[0,1,2,0]],[[0,2,2,1],[1,3,2,3],[2,3,0,2],[0,1,2,0]],[[0,3,2,1],[1,3,2,2],[2,3,0,2],[0,2,0,1]],[[0,2,3,1],[1,3,2,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,2],[1,3,2,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,1],[1,4,2,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,1],[1,3,2,3],[2,3,0,2],[0,2,0,1]],[[0,3,2,1],[1,3,2,2],[2,3,0,2],[0,2,1,0]],[[0,2,3,1],[1,3,2,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,2],[1,3,2,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,1],[1,4,2,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,1],[1,3,2,3],[2,3,0,2],[0,2,1,0]],[[0,3,2,1],[1,3,2,2],[2,3,0,2],[1,0,1,1]],[[0,2,3,1],[1,3,2,2],[2,3,0,2],[1,0,1,1]],[[0,2,2,2],[1,3,2,2],[2,3,0,2],[1,0,1,1]],[[0,2,2,1],[1,4,2,2],[2,3,0,2],[1,0,1,1]],[[0,2,2,1],[1,3,2,3],[2,3,0,2],[1,0,1,1]],[[0,3,2,1],[1,3,2,2],[2,3,0,2],[1,0,2,0]],[[0,2,3,1],[1,3,2,2],[2,3,0,2],[1,0,2,0]],[[0,2,2,2],[1,3,2,2],[2,3,0,2],[1,0,2,0]],[[0,2,2,1],[1,4,2,2],[2,3,0,2],[1,0,2,0]],[[0,2,2,1],[1,3,2,3],[2,3,0,2],[1,0,2,0]],[[0,3,2,1],[1,3,2,2],[2,3,0,2],[1,1,0,1]],[[0,2,3,1],[1,3,2,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,2],[1,3,2,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,1],[1,4,2,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,1],[1,3,2,3],[2,3,0,2],[1,1,0,1]],[[0,3,2,1],[1,3,2,2],[2,3,0,2],[1,1,1,0]],[[0,2,3,1],[1,3,2,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,2],[1,3,2,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,1],[1,4,2,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,1],[1,3,2,3],[2,3,0,2],[1,1,1,0]],[[0,3,2,1],[1,3,2,2],[2,3,0,2],[1,2,0,0]],[[0,2,3,1],[1,3,2,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,2],[1,3,2,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,1],[1,4,2,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,1],[1,3,2,3],[2,3,0,2],[1,2,0,0]],[[0,3,2,1],[1,3,2,2],[2,3,1,0],[0,2,2,0]],[[0,2,3,1],[1,3,2,2],[2,3,1,0],[0,2,2,0]],[[0,2,2,2],[1,3,2,2],[2,3,1,0],[0,2,2,0]],[[0,2,2,1],[1,4,2,2],[2,3,1,0],[0,2,2,0]],[[0,2,2,1],[1,3,2,2],[3,3,1,0],[0,2,2,0]],[[0,2,2,1],[1,3,2,2],[2,4,1,0],[0,2,2,0]],[[0,2,2,1],[1,3,2,2],[2,3,1,0],[0,3,2,0]],[[0,3,2,1],[1,3,2,2],[2,3,1,0],[1,1,2,0]],[[0,2,3,1],[1,3,2,2],[2,3,1,0],[1,1,2,0]],[[0,2,2,2],[1,3,2,2],[2,3,1,0],[1,1,2,0]],[[0,2,2,1],[1,4,2,2],[2,3,1,0],[1,1,2,0]],[[0,2,2,1],[1,3,2,2],[3,3,1,0],[1,1,2,0]],[[0,2,2,1],[1,3,2,2],[2,4,1,0],[1,1,2,0]],[[0,2,2,1],[1,3,2,2],[2,3,1,0],[2,1,2,0]],[[0,3,2,1],[1,3,2,2],[2,3,2,0],[0,1,1,1]],[[0,2,3,1],[1,3,2,2],[2,3,2,0],[0,1,1,1]],[[0,2,2,2],[1,3,2,2],[2,3,2,0],[0,1,1,1]],[[0,2,2,1],[1,4,2,2],[2,3,2,0],[0,1,1,1]],[[0,3,2,1],[1,3,2,2],[2,3,2,0],[0,1,2,0]],[[0,2,3,1],[1,3,2,2],[2,3,2,0],[0,1,2,0]],[[0,2,2,2],[1,3,2,2],[2,3,2,0],[0,1,2,0]],[[0,2,2,1],[1,4,2,2],[2,3,2,0],[0,1,2,0]],[[0,2,2,1],[1,3,2,2],[3,3,2,0],[0,1,2,0]],[[0,2,2,1],[1,3,2,2],[2,4,2,0],[0,1,2,0]],[[0,3,2,1],[1,3,2,2],[2,3,2,0],[0,2,0,1]],[[0,2,3,1],[1,3,2,2],[2,3,2,0],[0,2,0,1]],[[0,2,2,2],[1,3,2,2],[2,3,2,0],[0,2,0,1]],[[0,2,2,1],[1,4,2,2],[2,3,2,0],[0,2,0,1]],[[0,2,2,1],[1,3,2,2],[3,3,2,0],[0,2,0,1]],[[0,2,2,1],[1,3,2,2],[2,4,2,0],[0,2,0,1]],[[0,3,2,1],[1,3,2,2],[2,3,2,0],[0,2,1,0]],[[0,2,3,1],[1,3,2,2],[2,3,2,0],[0,2,1,0]],[[0,2,2,2],[1,3,2,2],[2,3,2,0],[0,2,1,0]],[[0,2,2,1],[1,4,2,2],[2,3,2,0],[0,2,1,0]],[[0,2,2,1],[1,3,2,2],[3,3,2,0],[0,2,1,0]],[[0,2,2,1],[1,3,2,2],[2,4,2,0],[0,2,1,0]],[[0,2,2,1],[1,3,2,2],[2,3,2,0],[0,3,1,0]],[[0,3,2,1],[1,3,2,2],[2,3,2,0],[1,0,1,1]],[[0,2,3,1],[1,3,2,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,2],[1,3,2,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[1,4,2,2],[2,3,2,0],[1,0,1,1]],[[0,3,2,1],[1,3,2,2],[2,3,2,0],[1,0,2,0]],[[0,2,3,1],[1,3,2,2],[2,3,2,0],[1,0,2,0]],[[0,2,2,2],[1,3,2,2],[2,3,2,0],[1,0,2,0]],[[0,2,2,1],[1,4,2,2],[2,3,2,0],[1,0,2,0]],[[0,2,2,1],[1,3,2,2],[3,3,2,0],[1,0,2,0]],[[0,2,2,1],[1,3,2,2],[2,4,2,0],[1,0,2,0]],[[0,2,2,1],[1,3,2,2],[2,3,2,0],[2,0,2,0]],[[0,3,2,1],[1,3,2,2],[2,3,2,0],[1,1,0,1]],[[0,2,3,1],[1,3,2,2],[2,3,2,0],[1,1,0,1]],[[0,2,2,2],[1,3,2,2],[2,3,2,0],[1,1,0,1]],[[0,2,2,1],[1,4,2,2],[2,3,2,0],[1,1,0,1]],[[0,2,2,1],[1,3,2,2],[3,3,2,0],[1,1,0,1]],[[0,2,2,1],[1,3,2,2],[2,4,2,0],[1,1,0,1]],[[0,2,2,1],[1,3,2,2],[2,3,2,0],[2,1,0,1]],[[0,3,2,1],[1,3,2,2],[2,3,2,0],[1,1,1,0]],[[0,2,3,1],[1,3,2,2],[2,3,2,0],[1,1,1,0]],[[0,2,2,2],[1,3,2,2],[2,3,2,0],[1,1,1,0]],[[0,2,2,1],[1,4,2,2],[2,3,2,0],[1,1,1,0]],[[0,2,2,1],[1,3,2,2],[3,3,2,0],[1,1,1,0]],[[0,2,2,1],[1,3,2,2],[2,4,2,0],[1,1,1,0]],[[0,2,2,1],[1,3,2,2],[2,3,2,0],[2,1,1,0]],[[0,3,2,1],[1,3,2,2],[2,3,2,0],[1,2,0,0]],[[0,2,3,1],[1,3,2,2],[2,3,2,0],[1,2,0,0]],[[0,2,2,2],[1,3,2,2],[2,3,2,0],[1,2,0,0]],[[0,2,2,1],[1,4,2,2],[2,3,2,0],[1,2,0,0]],[[0,2,2,1],[1,3,2,2],[3,3,2,0],[1,2,0,0]],[[0,2,2,1],[1,3,2,2],[2,4,2,0],[1,2,0,0]],[[0,2,2,1],[1,3,2,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,0],[3,3,2,2],[1,0,0,2],[1,2,2,1]],[[1,2,3,0],[2,3,2,2],[1,0,0,2],[1,2,2,1]],[[1,3,2,0],[2,3,2,2],[1,0,0,2],[1,2,2,1]],[[2,2,2,0],[2,3,2,2],[1,0,0,2],[1,2,2,1]],[[1,2,2,0],[2,4,2,2],[0,3,3,2],[0,0,0,1]],[[1,2,3,0],[2,3,2,2],[0,3,3,2],[0,0,0,1]],[[1,3,2,0],[2,3,2,2],[0,3,3,2],[0,0,0,1]],[[2,2,2,0],[2,3,2,2],[0,3,3,2],[0,0,0,1]],[[1,2,2,0],[2,4,2,2],[0,3,3,1],[1,1,0,0]],[[1,2,3,0],[2,3,2,2],[0,3,3,1],[1,1,0,0]],[[1,3,2,0],[2,3,2,2],[0,3,3,1],[1,1,0,0]],[[2,2,2,0],[2,3,2,2],[0,3,3,1],[1,1,0,0]],[[1,2,2,0],[2,4,2,2],[0,3,3,1],[0,2,0,0]],[[1,2,3,0],[2,3,2,2],[0,3,3,1],[0,2,0,0]],[[1,3,2,0],[2,3,2,2],[0,3,3,1],[0,2,0,0]],[[2,2,2,0],[2,3,2,2],[0,3,3,1],[0,2,0,0]],[[1,2,2,0],[2,4,2,2],[0,3,3,1],[0,0,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,3,1],[0,0,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,3,1],[0,0,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,3,1],[0,0,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,3,1],[0,0,1,1]],[[1,2,3,0],[2,3,2,2],[0,3,3,1],[0,0,1,1]],[[1,3,2,0],[2,3,2,2],[0,3,3,1],[0,0,1,1]],[[2,2,2,0],[2,3,2,2],[0,3,3,1],[0,0,1,1]],[[1,2,2,0],[2,4,2,2],[0,3,3,0],[1,2,0,0]],[[1,3,2,0],[2,3,2,2],[0,3,3,0],[1,2,0,0]],[[2,2,2,0],[2,3,2,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,0],[2,4,2,2],[0,3,3,0],[1,1,1,0]],[[1,2,3,0],[2,3,2,2],[0,3,3,0],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[0,3,3,0],[1,1,1,0]],[[2,2,2,0],[2,3,2,2],[0,3,3,0],[1,1,1,0]],[[1,2,2,0],[2,4,2,2],[0,3,3,0],[1,0,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,3,0],[1,0,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,3,0],[1,0,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,3,0],[1,0,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,3,0],[0,2,1,0]],[[1,2,3,0],[2,3,2,2],[0,3,3,0],[0,2,1,0]],[[1,3,2,0],[2,3,2,2],[0,3,3,0],[0,2,1,0]],[[2,2,2,0],[2,3,2,2],[0,3,3,0],[0,2,1,0]],[[1,2,2,0],[2,4,2,2],[0,3,3,0],[0,1,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,3,0],[0,1,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,3,0],[0,1,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,3,0],[0,1,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,3,0],[0,0,2,1]],[[1,2,3,0],[2,3,2,2],[0,3,3,0],[0,0,2,1]],[[1,3,2,0],[2,3,2,2],[0,3,3,0],[0,0,2,1]],[[2,2,2,0],[2,3,2,2],[0,3,3,0],[0,0,2,1]],[[1,2,2,0],[2,4,2,2],[0,3,2,2],[0,0,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,2,2],[0,0,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,2,2],[0,0,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,2,2],[0,0,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,2,2],[0,0,1,1]],[[1,2,3,0],[2,3,2,2],[0,3,2,2],[0,0,1,1]],[[1,3,2,0],[2,3,2,2],[0,3,2,2],[0,0,1,1]],[[2,2,2,0],[2,3,2,2],[0,3,2,2],[0,0,1,1]],[[1,2,2,0],[2,4,2,2],[0,3,2,1],[1,2,0,0]],[[1,2,3,0],[2,3,2,2],[0,3,2,1],[1,2,0,0]],[[1,3,2,0],[2,3,2,2],[0,3,2,1],[1,2,0,0]],[[2,2,2,0],[2,3,2,2],[0,3,2,1],[1,2,0,0]],[[1,2,2,0],[2,4,2,2],[0,3,2,1],[1,1,1,0]],[[1,2,3,0],[2,3,2,2],[0,3,2,1],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[0,3,2,1],[1,1,1,0]],[[2,2,2,0],[2,3,2,2],[0,3,2,1],[1,1,1,0]],[[1,2,2,0],[2,4,2,2],[0,3,2,1],[1,1,0,1]],[[1,2,3,0],[2,3,2,2],[0,3,2,1],[1,1,0,1]],[[1,3,2,0],[2,3,2,2],[0,3,2,1],[1,1,0,1]],[[2,2,2,0],[2,3,2,2],[0,3,2,1],[1,1,0,1]],[[1,2,2,0],[2,4,2,2],[0,3,2,1],[1,0,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,2,1],[1,0,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,2,1],[1,0,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,2,1],[1,0,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,2,1],[1,0,1,1]],[[1,2,3,0],[2,3,2,2],[0,3,2,1],[1,0,1,1]],[[1,3,2,0],[2,3,2,2],[0,3,2,1],[1,0,1,1]],[[2,2,2,0],[2,3,2,2],[0,3,2,1],[1,0,1,1]],[[1,2,2,0],[2,4,2,2],[0,3,2,1],[0,2,1,0]],[[1,2,3,0],[2,3,2,2],[0,3,2,1],[0,2,1,0]],[[1,3,2,0],[2,3,2,2],[0,3,2,1],[0,2,1,0]],[[2,2,2,0],[2,3,2,2],[0,3,2,1],[0,2,1,0]],[[1,2,2,0],[2,4,2,2],[0,3,2,1],[0,2,0,1]],[[1,2,3,0],[2,3,2,2],[0,3,2,1],[0,2,0,1]],[[1,3,2,0],[2,3,2,2],[0,3,2,1],[0,2,0,1]],[[2,2,2,0],[2,3,2,2],[0,3,2,1],[0,2,0,1]],[[1,2,2,0],[2,4,2,2],[0,3,2,1],[0,1,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,2,1],[0,1,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,2,1],[0,1,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,2,1],[0,1,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,2,1],[0,1,1,1]],[[1,2,3,0],[2,3,2,2],[0,3,2,1],[0,1,1,1]],[[1,3,2,0],[2,3,2,2],[0,3,2,1],[0,1,1,1]],[[2,2,2,0],[2,3,2,2],[0,3,2,1],[0,1,1,1]],[[1,2,2,0],[2,4,2,2],[0,3,2,0],[1,2,0,1]],[[1,3,2,0],[2,3,2,2],[0,3,2,0],[1,2,0,1]],[[2,2,2,0],[2,3,2,2],[0,3,2,0],[1,2,0,1]],[[1,2,2,0],[2,4,2,2],[0,3,2,0],[1,1,1,1]],[[1,2,3,0],[2,3,2,2],[0,3,2,0],[1,1,1,1]],[[1,3,2,0],[2,3,2,2],[0,3,2,0],[1,1,1,1]],[[2,2,2,0],[2,3,2,2],[0,3,2,0],[1,1,1,1]],[[1,2,2,0],[2,4,2,2],[0,3,2,0],[1,0,2,1]],[[1,2,3,0],[2,3,2,2],[0,3,2,0],[1,0,2,1]],[[1,3,2,0],[2,3,2,2],[0,3,2,0],[1,0,2,1]],[[2,2,2,0],[2,3,2,2],[0,3,2,0],[1,0,2,1]],[[1,2,2,0],[2,4,2,2],[0,3,2,0],[0,2,1,1]],[[1,2,3,0],[2,3,2,2],[0,3,2,0],[0,2,1,1]],[[1,3,2,0],[2,3,2,2],[0,3,2,0],[0,2,1,1]],[[2,2,2,0],[2,3,2,2],[0,3,2,0],[0,2,1,1]],[[1,2,2,0],[2,4,2,2],[0,3,2,0],[0,1,2,1]],[[1,2,3,0],[2,3,2,2],[0,3,2,0],[0,1,2,1]],[[1,3,2,0],[2,3,2,2],[0,3,2,0],[0,1,2,1]],[[2,2,2,0],[2,3,2,2],[0,3,2,0],[0,1,2,1]],[[0,3,2,1],[1,3,2,2],[2,3,3,0],[0,0,1,1]],[[0,2,3,1],[1,3,2,2],[2,3,3,0],[0,0,1,1]],[[0,2,2,2],[1,3,2,2],[2,3,3,0],[0,0,1,1]],[[0,2,2,1],[1,4,2,2],[2,3,3,0],[0,0,1,1]],[[0,3,2,1],[1,3,2,2],[2,3,3,0],[0,0,2,0]],[[0,2,3,1],[1,3,2,2],[2,3,3,0],[0,0,2,0]],[[0,2,2,2],[1,3,2,2],[2,3,3,0],[0,0,2,0]],[[0,2,2,1],[1,4,2,2],[2,3,3,0],[0,0,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,1,2],[1,2,0,0]],[[1,2,3,0],[2,3,2,2],[0,3,1,2],[1,2,0,0]],[[1,3,2,0],[2,3,2,2],[0,3,1,2],[1,2,0,0]],[[2,2,2,0],[2,3,2,2],[0,3,1,2],[1,2,0,0]],[[0,3,2,1],[1,3,2,2],[2,3,3,0],[0,2,0,0]],[[0,2,3,1],[1,3,2,2],[2,3,3,0],[0,2,0,0]],[[0,2,2,2],[1,3,2,2],[2,3,3,0],[0,2,0,0]],[[0,2,2,1],[1,4,2,2],[2,3,3,0],[0,2,0,0]],[[0,2,2,1],[1,3,2,2],[3,3,3,0],[0,2,0,0]],[[0,2,2,1],[1,3,2,2],[2,4,3,0],[0,2,0,0]],[[1,2,2,0],[2,4,2,2],[0,3,1,2],[1,1,1,0]],[[1,2,3,0],[2,3,2,2],[0,3,1,2],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[0,3,1,2],[1,1,1,0]],[[2,2,2,0],[2,3,2,2],[0,3,1,2],[1,1,1,0]],[[1,2,2,0],[2,4,2,2],[0,3,1,2],[1,1,0,1]],[[1,2,3,0],[2,3,2,2],[0,3,1,2],[1,1,0,1]],[[1,3,2,0],[2,3,2,2],[0,3,1,2],[1,1,0,1]],[[2,2,2,0],[2,3,2,2],[0,3,1,2],[1,1,0,1]],[[1,2,2,0],[2,4,2,2],[0,3,1,2],[1,0,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,1,2],[1,0,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,1,2],[1,0,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,1,2],[1,0,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,1,2],[1,0,1,1]],[[1,2,3,0],[2,3,2,2],[0,3,1,2],[1,0,1,1]],[[1,3,2,0],[2,3,2,2],[0,3,1,2],[1,0,1,1]],[[2,2,2,0],[2,3,2,2],[0,3,1,2],[1,0,1,1]],[[1,2,2,0],[2,4,2,2],[0,3,1,2],[0,2,1,0]],[[0,3,2,1],[1,3,2,2],[2,3,3,0],[1,1,0,0]],[[0,2,3,1],[1,3,2,2],[2,3,3,0],[1,1,0,0]],[[0,2,2,2],[1,3,2,2],[2,3,3,0],[1,1,0,0]],[[0,2,2,1],[1,4,2,2],[2,3,3,0],[1,1,0,0]],[[0,2,2,1],[1,3,2,2],[3,3,3,0],[1,1,0,0]],[[0,2,2,1],[1,3,2,2],[2,4,3,0],[1,1,0,0]],[[0,2,2,1],[1,3,2,2],[2,3,3,0],[2,1,0,0]],[[1,2,3,0],[2,3,2,2],[0,3,1,2],[0,2,1,0]],[[1,3,2,0],[2,3,2,2],[0,3,1,2],[0,2,1,0]],[[2,2,2,0],[2,3,2,2],[0,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,4,2,2],[0,3,1,2],[0,2,0,1]],[[1,2,3,0],[2,3,2,2],[0,3,1,2],[0,2,0,1]],[[1,3,2,0],[2,3,2,2],[0,3,1,2],[0,2,0,1]],[[2,2,2,0],[2,3,2,2],[0,3,1,2],[0,2,0,1]],[[1,2,2,0],[2,4,2,2],[0,3,1,2],[0,1,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,1,2],[0,1,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,1,2],[0,1,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,1,2],[0,1,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,1,2],[0,1,1,1]],[[1,2,3,0],[2,3,2,2],[0,3,1,2],[0,1,1,1]],[[1,3,2,0],[2,3,2,2],[0,3,1,2],[0,1,1,1]],[[2,2,2,0],[2,3,2,2],[0,3,1,2],[0,1,1,1]],[[1,2,2,0],[2,4,2,2],[0,3,1,1],[1,1,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,1,1],[1,1,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,1,1],[1,1,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,1,1],[1,1,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,1,1],[0,2,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,1,1],[0,2,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,1,1],[0,2,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,1,1],[0,2,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,1,0],[1,1,2,1]],[[1,2,3,0],[2,3,2,2],[0,3,1,0],[1,1,2,1]],[[1,3,2,0],[2,3,2,2],[0,3,1,0],[1,1,2,1]],[[2,2,2,0],[2,3,2,2],[0,3,1,0],[1,1,2,1]],[[1,2,2,0],[2,4,2,2],[0,3,1,0],[0,2,2,1]],[[1,2,3,0],[2,3,2,2],[0,3,1,0],[0,2,2,1]],[[1,3,2,0],[2,3,2,2],[0,3,1,0],[0,2,2,1]],[[2,2,2,0],[2,3,2,2],[0,3,1,0],[0,2,2,1]],[[1,2,2,0],[2,4,2,2],[0,3,0,2],[1,1,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,0,2],[1,1,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,0,2],[1,1,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,0,2],[1,1,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,0,2],[1,1,1,1]],[[1,2,3,0],[2,3,2,2],[0,3,0,2],[1,1,1,1]],[[1,3,2,0],[2,3,2,2],[0,3,0,2],[1,1,1,1]],[[2,2,2,0],[2,3,2,2],[0,3,0,2],[1,1,1,1]],[[1,2,2,0],[2,4,2,2],[0,3,0,2],[1,0,2,1]],[[1,2,3,0],[2,3,2,2],[0,3,0,2],[1,0,2,1]],[[1,3,2,0],[2,3,2,2],[0,3,0,2],[1,0,2,1]],[[2,2,2,0],[2,3,2,2],[0,3,0,2],[1,0,2,1]],[[1,2,2,0],[2,4,2,2],[0,3,0,2],[0,2,2,0]],[[1,2,3,0],[2,3,2,2],[0,3,0,2],[0,2,2,0]],[[1,3,2,0],[2,3,2,2],[0,3,0,2],[0,2,2,0]],[[2,2,2,0],[2,3,2,2],[0,3,0,2],[0,2,2,0]],[[1,2,2,0],[2,4,2,2],[0,3,0,2],[0,2,1,1]],[[1,2,3,0],[2,3,2,2],[0,3,0,2],[0,2,1,1]],[[1,3,2,0],[2,3,2,2],[0,3,0,2],[0,2,1,1]],[[2,2,2,0],[2,3,2,2],[0,3,0,2],[0,2,1,1]],[[1,2,2,0],[2,4,2,2],[0,3,0,2],[0,1,2,1]],[[1,2,3,0],[2,3,2,2],[0,3,0,2],[0,1,2,1]],[[1,3,2,0],[2,3,2,2],[0,3,0,2],[0,1,2,1]],[[2,2,2,0],[2,3,2,2],[0,3,0,2],[0,1,2,1]],[[1,2,2,0],[2,4,2,2],[0,3,0,1],[1,1,2,1]],[[1,2,3,0],[2,3,2,2],[0,3,0,1],[1,1,2,1]],[[1,3,2,0],[2,3,2,2],[0,3,0,1],[1,1,2,1]],[[2,2,2,0],[2,3,2,2],[0,3,0,1],[1,1,2,1]],[[1,2,2,0],[2,4,2,2],[0,3,0,1],[0,2,2,1]],[[1,2,3,0],[2,3,2,2],[0,3,0,1],[0,2,2,1]],[[1,3,2,0],[2,3,2,2],[0,3,0,1],[0,2,2,1]],[[2,2,2,0],[2,3,2,2],[0,3,0,1],[0,2,2,1]],[[1,2,2,0],[2,4,2,2],[0,2,3,2],[1,0,0,1]],[[1,2,3,0],[2,3,2,2],[0,2,3,2],[1,0,0,1]],[[1,3,2,0],[2,3,2,2],[0,2,3,2],[1,0,0,1]],[[2,2,2,0],[2,3,2,2],[0,2,3,2],[1,0,0,1]],[[1,2,2,0],[2,4,2,2],[0,2,3,2],[0,1,0,1]],[[1,2,3,0],[2,3,2,2],[0,2,3,2],[0,1,0,1]],[[1,3,2,0],[2,3,2,2],[0,2,3,2],[0,1,0,1]],[[2,2,2,0],[2,3,2,2],[0,2,3,2],[0,1,0,1]],[[1,2,2,0],[2,4,2,2],[0,2,3,1],[1,1,1,0]],[[1,2,3,0],[2,3,2,2],[0,2,3,1],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[0,2,3,1],[1,1,1,0]],[[2,2,2,0],[2,3,2,2],[0,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,4,2,2],[0,2,3,1],[1,1,0,1]],[[1,2,3,0],[2,3,2,2],[0,2,3,1],[1,1,0,1]],[[1,3,2,0],[2,3,2,2],[0,2,3,1],[1,1,0,1]],[[2,2,2,0],[2,3,2,2],[0,2,3,1],[1,1,0,1]],[[1,2,2,0],[2,4,2,2],[0,2,3,1],[1,0,2,0]],[[1,2,3,0],[2,3,2,2],[0,2,3,1],[1,0,2,0]],[[1,3,2,0],[2,3,2,2],[0,2,3,1],[1,0,2,0]],[[2,2,2,0],[2,3,2,2],[0,2,3,1],[1,0,2,0]],[[1,2,2,0],[2,4,2,2],[0,2,3,1],[1,0,1,1]],[[1,2,3,0],[2,3,2,2],[0,2,3,1],[1,0,1,1]],[[1,3,2,0],[2,3,2,2],[0,2,3,1],[1,0,1,1]],[[2,2,2,0],[2,3,2,2],[0,2,3,1],[1,0,1,1]],[[1,2,2,0],[2,4,2,2],[0,2,3,1],[0,2,1,0]],[[1,2,3,0],[2,3,2,2],[0,2,3,1],[0,2,1,0]],[[1,3,2,0],[2,3,2,2],[0,2,3,1],[0,2,1,0]],[[2,2,2,0],[2,3,2,2],[0,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,4,2,2],[0,2,3,1],[0,2,0,1]],[[1,2,3,0],[2,3,2,2],[0,2,3,1],[0,2,0,1]],[[1,3,2,0],[2,3,2,2],[0,2,3,1],[0,2,0,1]],[[2,2,2,0],[2,3,2,2],[0,2,3,1],[0,2,0,1]],[[1,2,2,0],[2,4,2,2],[0,2,3,1],[0,1,2,0]],[[1,2,3,0],[2,3,2,2],[0,2,3,1],[0,1,2,0]],[[1,3,2,0],[2,3,2,2],[0,2,3,1],[0,1,2,0]],[[2,2,2,0],[2,3,2,2],[0,2,3,1],[0,1,2,0]],[[1,2,2,0],[2,4,2,2],[0,2,3,1],[0,1,1,1]],[[1,2,3,0],[2,3,2,2],[0,2,3,1],[0,1,1,1]],[[1,3,2,0],[2,3,2,2],[0,2,3,1],[0,1,1,1]],[[2,2,2,0],[2,3,2,2],[0,2,3,1],[0,1,1,1]],[[1,2,2,0],[2,4,2,2],[0,2,3,1],[0,0,2,1]],[[1,2,3,0],[2,3,2,2],[0,2,3,1],[0,0,2,1]],[[1,3,2,0],[2,3,2,2],[0,2,3,1],[0,0,2,1]],[[2,2,2,0],[2,3,2,2],[0,2,3,1],[0,0,2,1]],[[1,2,2,0],[2,4,2,2],[0,2,3,0],[1,1,1,1]],[[1,2,3,0],[2,3,2,2],[0,2,3,0],[1,1,1,1]],[[1,3,2,0],[2,3,2,2],[0,2,3,0],[1,1,1,1]],[[2,2,2,0],[2,3,2,2],[0,2,3,0],[1,1,1,1]],[[1,2,2,0],[2,4,2,2],[0,2,3,0],[1,0,2,1]],[[1,2,3,0],[2,3,2,2],[0,2,3,0],[1,0,2,1]],[[1,3,2,0],[2,3,2,2],[0,2,3,0],[1,0,2,1]],[[2,2,2,0],[2,3,2,2],[0,2,3,0],[1,0,2,1]],[[1,2,2,0],[2,4,2,2],[0,2,3,0],[0,2,1,1]],[[1,2,3,0],[2,3,2,2],[0,2,3,0],[0,2,1,1]],[[1,3,2,0],[2,3,2,2],[0,2,3,0],[0,2,1,1]],[[2,2,2,0],[2,3,2,2],[0,2,3,0],[0,2,1,1]],[[1,2,2,0],[2,4,2,2],[0,2,3,0],[0,1,2,1]],[[1,2,3,0],[2,3,2,2],[0,2,3,0],[0,1,2,1]],[[1,3,2,0],[2,3,2,2],[0,2,3,0],[0,1,2,1]],[[2,2,2,0],[2,3,2,2],[0,2,3,0],[0,1,2,1]],[[1,2,2,0],[2,4,2,2],[0,2,2,2],[1,1,1,0]],[[1,2,3,0],[2,3,2,2],[0,2,2,2],[1,1,1,0]],[[1,3,2,0],[2,3,2,2],[0,2,2,2],[1,1,1,0]],[[2,2,2,0],[2,3,2,2],[0,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,4,2,2],[0,2,2,2],[1,1,0,1]],[[1,2,3,0],[2,3,2,2],[0,2,2,2],[1,1,0,1]],[[1,3,2,0],[2,3,2,2],[0,2,2,2],[1,1,0,1]],[[2,2,2,0],[2,3,2,2],[0,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,4,2,2],[0,2,2,2],[1,0,2,0]],[[1,2,3,0],[2,3,2,2],[0,2,2,2],[1,0,2,0]],[[1,3,2,0],[2,3,2,2],[0,2,2,2],[1,0,2,0]],[[2,2,2,0],[2,3,2,2],[0,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,4,2,2],[0,2,2,2],[1,0,1,1]],[[1,2,3,0],[2,3,2,2],[0,2,2,2],[1,0,1,1]],[[1,3,2,0],[2,3,2,2],[0,2,2,2],[1,0,1,1]],[[2,2,2,0],[2,3,2,2],[0,2,2,2],[1,0,1,1]],[[1,2,2,0],[2,4,2,2],[0,2,2,2],[0,2,1,0]],[[1,2,3,0],[2,3,2,2],[0,2,2,2],[0,2,1,0]],[[1,3,2,0],[2,3,2,2],[0,2,2,2],[0,2,1,0]],[[2,2,2,0],[2,3,2,2],[0,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,4,2,2],[0,2,2,2],[0,2,0,1]],[[1,2,3,0],[2,3,2,2],[0,2,2,2],[0,2,0,1]],[[1,3,2,0],[2,3,2,2],[0,2,2,2],[0,2,0,1]],[[2,2,2,0],[2,3,2,2],[0,2,2,2],[0,2,0,1]],[[1,2,2,0],[2,4,2,2],[0,2,2,2],[0,1,2,0]],[[1,2,3,0],[2,3,2,2],[0,2,2,2],[0,1,2,0]],[[1,3,2,0],[2,3,2,2],[0,2,2,2],[0,1,2,0]],[[2,2,2,0],[2,3,2,2],[0,2,2,2],[0,1,2,0]],[[1,2,2,0],[2,4,2,2],[0,2,2,2],[0,1,1,1]],[[1,2,3,0],[2,3,2,2],[0,2,2,2],[0,1,1,1]],[[1,3,2,0],[2,3,2,2],[0,2,2,2],[0,1,1,1]],[[2,2,2,0],[2,3,2,2],[0,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,4,2,2],[0,2,2,2],[0,0,2,1]],[[1,2,3,0],[2,3,2,2],[0,2,2,2],[0,0,2,1]],[[1,3,2,0],[2,3,2,2],[0,2,2,2],[0,0,2,1]],[[2,2,2,0],[2,3,2,2],[0,2,2,2],[0,0,2,1]],[[1,2,2,0],[2,4,2,2],[0,2,1,2],[1,0,2,1]],[[1,2,3,0],[2,3,2,2],[0,2,1,2],[1,0,2,1]],[[1,3,2,0],[2,3,2,2],[0,2,1,2],[1,0,2,1]],[[2,2,2,0],[2,3,2,2],[0,2,1,2],[1,0,2,1]],[[1,2,2,0],[2,4,2,2],[0,2,1,2],[0,1,2,1]],[[1,2,3,0],[2,3,2,2],[0,2,1,2],[0,1,2,1]],[[1,3,2,0],[2,3,2,2],[0,2,1,2],[0,1,2,1]],[[2,2,2,0],[2,3,2,2],[0,2,1,2],[0,1,2,1]],[[1,2,2,0],[2,4,2,2],[0,2,0,2],[0,2,2,1]],[[1,2,3,0],[2,3,2,2],[0,2,0,2],[0,2,2,1]],[[1,3,2,0],[2,3,2,2],[0,2,0,2],[0,2,2,1]],[[2,2,2,0],[2,3,2,2],[0,2,0,2],[0,2,2,1]],[[1,2,2,0],[2,4,2,2],[0,1,3,1],[0,2,2,0]],[[1,2,3,0],[2,3,2,2],[0,1,3,1],[0,2,2,0]],[[1,3,2,0],[2,3,2,2],[0,1,3,1],[0,2,2,0]],[[2,2,2,0],[2,3,2,2],[0,1,3,1],[0,2,2,0]],[[1,2,2,0],[2,4,2,2],[0,1,3,1],[0,2,1,1]],[[1,2,3,0],[2,3,2,2],[0,1,3,1],[0,2,1,1]],[[1,3,2,0],[2,3,2,2],[0,1,3,1],[0,2,1,1]],[[2,2,2,0],[2,3,2,2],[0,1,3,1],[0,2,1,1]],[[1,2,2,0],[2,4,2,2],[0,1,3,0],[0,2,2,1]],[[1,2,3,0],[2,3,2,2],[0,1,3,0],[0,2,2,1]],[[1,3,2,0],[2,3,2,2],[0,1,3,0],[0,2,2,1]],[[2,2,2,0],[2,3,2,2],[0,1,3,0],[0,2,2,1]],[[1,2,2,0],[2,4,2,2],[0,1,2,2],[0,2,2,0]],[[1,2,3,0],[2,3,2,2],[0,1,2,2],[0,2,2,0]],[[1,3,2,0],[2,3,2,2],[0,1,2,2],[0,2,2,0]],[[2,2,2,0],[2,3,2,2],[0,1,2,2],[0,2,2,0]],[[1,2,2,0],[2,4,2,2],[0,1,2,2],[0,2,1,1]],[[1,2,3,0],[2,3,2,2],[0,1,2,2],[0,2,1,1]],[[1,3,2,0],[2,3,2,2],[0,1,2,2],[0,2,1,1]],[[2,2,2,0],[2,3,2,2],[0,1,2,2],[0,2,1,1]],[[1,2,2,0],[2,4,2,2],[0,1,1,2],[0,2,2,1]],[[1,2,3,0],[2,3,2,2],[0,1,1,2],[0,2,2,1]],[[1,3,2,0],[2,3,2,2],[0,1,1,2],[0,2,2,1]],[[2,2,2,0],[2,3,2,2],[0,1,1,2],[0,2,2,1]],[[1,2,2,0],[3,3,2,1],[2,2,3,2],[1,0,0,0]],[[1,3,2,0],[2,3,2,1],[2,2,3,2],[1,0,0,0]],[[0,3,2,1],[1,3,3,0],[1,1,3,0],[1,2,2,1]],[[0,2,3,1],[1,3,3,0],[1,1,3,0],[1,2,2,1]],[[0,2,2,1],[1,4,3,0],[1,1,3,0],[1,2,2,1]],[[0,3,2,1],[1,3,3,0],[1,1,3,1],[1,2,2,0]],[[0,2,3,1],[1,3,3,0],[1,1,3,1],[1,2,2,0]],[[0,2,2,1],[1,4,3,0],[1,1,3,1],[1,2,2,0]],[[2,2,2,0],[2,3,2,1],[2,2,3,2],[1,0,0,0]],[[0,3,2,1],[1,3,3,0],[1,2,3,0],[1,1,2,1]],[[0,2,3,1],[1,3,3,0],[1,2,3,0],[1,1,2,1]],[[0,2,2,1],[1,4,3,0],[1,2,3,0],[1,1,2,1]],[[0,3,2,1],[1,3,3,0],[1,2,3,0],[1,2,1,1]],[[0,2,3,1],[1,3,3,0],[1,2,3,0],[1,2,1,1]],[[0,2,2,1],[1,4,3,0],[1,2,3,0],[1,2,1,1]],[[0,3,2,1],[1,3,3,0],[1,2,3,1],[1,1,2,0]],[[0,2,3,1],[1,3,3,0],[1,2,3,1],[1,1,2,0]],[[0,2,2,1],[1,4,3,0],[1,2,3,1],[1,1,2,0]],[[0,3,2,1],[1,3,3,0],[1,2,3,1],[1,2,0,1]],[[0,2,3,1],[1,3,3,0],[1,2,3,1],[1,2,0,1]],[[0,2,2,1],[1,4,3,0],[1,2,3,1],[1,2,0,1]],[[0,3,2,1],[1,3,3,0],[1,2,3,1],[1,2,1,0]],[[0,2,3,1],[1,3,3,0],[1,2,3,1],[1,2,1,0]],[[0,2,2,1],[1,4,3,0],[1,2,3,1],[1,2,1,0]],[[1,2,2,0],[3,3,2,1],[2,2,2,2],[1,0,1,0]],[[1,3,2,0],[2,3,2,1],[2,2,2,2],[1,0,1,0]],[[2,2,2,0],[2,3,2,1],[2,2,2,2],[1,0,1,0]],[[1,2,2,0],[3,3,2,1],[2,2,2,2],[1,0,0,1]],[[1,3,2,0],[2,3,2,1],[2,2,2,2],[1,0,0,1]],[[2,2,2,0],[2,3,2,1],[2,2,2,2],[1,0,0,1]],[[0,3,2,1],[1,3,3,0],[1,3,1,0],[1,2,2,1]],[[0,2,3,1],[1,3,3,0],[1,3,1,0],[1,2,2,1]],[[0,2,2,1],[1,4,3,0],[1,3,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,3,0],[1,4,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,3,0],[1,3,1,0],[2,2,2,1]],[[0,2,2,1],[1,3,3,0],[1,3,1,0],[1,3,2,1]],[[0,2,2,1],[1,3,3,0],[1,3,1,0],[1,2,3,1]],[[0,3,2,1],[1,3,3,0],[1,3,1,1],[1,2,2,0]],[[0,2,3,1],[1,3,3,0],[1,3,1,1],[1,2,2,0]],[[0,2,2,1],[1,4,3,0],[1,3,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,3,0],[1,4,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,3,0],[1,3,1,1],[2,2,2,0]],[[0,2,2,1],[1,3,3,0],[1,3,1,1],[1,3,2,0]],[[0,3,2,1],[1,3,3,0],[1,3,2,0],[1,1,2,1]],[[0,2,3,1],[1,3,3,0],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,4,3,0],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[1,3,3,0],[1,4,2,0],[1,1,2,1]],[[0,3,2,1],[1,3,3,0],[1,3,2,0],[1,2,1,1]],[[0,2,3,1],[1,3,3,0],[1,3,2,0],[1,2,1,1]],[[0,2,2,1],[1,4,3,0],[1,3,2,0],[1,2,1,1]],[[0,2,2,1],[1,3,3,0],[1,4,2,0],[1,2,1,1]],[[0,2,2,1],[1,3,3,0],[1,3,2,0],[2,2,1,1]],[[0,2,2,1],[1,3,3,0],[1,3,2,0],[1,3,1,1]],[[0,3,2,1],[1,3,3,0],[1,3,2,1],[1,1,2,0]],[[0,2,3,1],[1,3,3,0],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,4,3,0],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[1,3,3,0],[1,4,2,1],[1,1,2,0]],[[0,3,2,1],[1,3,3,0],[1,3,2,1],[1,2,0,1]],[[0,2,3,1],[1,3,3,0],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,4,3,0],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[1,3,3,0],[1,4,2,1],[1,2,0,1]],[[0,3,2,1],[1,3,3,0],[1,3,2,1],[1,2,1,0]],[[0,2,3,1],[1,3,3,0],[1,3,2,1],[1,2,1,0]],[[0,2,2,1],[1,4,3,0],[1,3,2,1],[1,2,1,0]],[[0,2,2,1],[1,3,3,0],[1,4,2,1],[1,2,1,0]],[[0,2,2,1],[1,3,3,0],[1,3,2,1],[2,2,1,0]],[[0,2,2,1],[1,3,3,0],[1,3,2,1],[1,3,1,0]],[[0,3,2,1],[1,3,3,0],[1,3,3,0],[1,1,2,0]],[[0,2,3,1],[1,3,3,0],[1,3,3,0],[1,1,2,0]],[[0,2,2,1],[1,4,3,0],[1,3,3,0],[1,1,2,0]],[[0,2,2,1],[1,3,3,0],[1,4,3,0],[1,1,2,0]],[[0,3,2,1],[1,3,3,0],[1,3,3,0],[1,2,1,0]],[[0,2,3,1],[1,3,3,0],[1,3,3,0],[1,2,1,0]],[[0,2,2,1],[1,4,3,0],[1,3,3,0],[1,2,1,0]],[[0,2,2,1],[1,3,3,0],[1,4,3,0],[1,2,1,0]],[[0,2,2,1],[1,3,3,0],[1,3,3,0],[2,2,1,0]],[[0,2,2,1],[1,3,3,0],[1,3,3,0],[1,3,1,0]],[[0,3,2,1],[1,3,3,0],[1,3,3,1],[1,2,0,0]],[[0,2,3,1],[1,3,3,0],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,4,3,0],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[1,3,3,0],[1,4,3,1],[1,2,0,0]],[[1,2,2,0],[3,3,2,1],[2,1,3,2],[1,1,0,0]],[[1,3,2,0],[2,3,2,1],[2,1,3,2],[1,1,0,0]],[[2,2,2,0],[2,3,2,1],[2,1,3,2],[1,1,0,0]],[[1,2,2,0],[3,3,2,1],[2,1,3,2],[0,2,0,0]],[[1,3,2,0],[2,3,2,1],[2,1,3,2],[0,2,0,0]],[[2,2,2,0],[2,3,2,1],[2,1,3,2],[0,2,0,0]],[[0,3,2,1],[1,3,3,0],[2,0,3,0],[1,2,2,1]],[[0,2,3,1],[1,3,3,0],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[1,4,3,0],[2,0,3,0],[1,2,2,1]],[[0,3,2,1],[1,3,3,0],[2,0,3,1],[1,2,2,0]],[[0,2,3,1],[1,3,3,0],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[1,4,3,0],[2,0,3,1],[1,2,2,0]],[[1,2,2,0],[3,3,2,1],[2,1,2,2],[1,2,0,0]],[[1,3,2,0],[2,3,2,1],[2,1,2,2],[1,2,0,0]],[[2,2,2,0],[2,3,2,1],[2,1,2,2],[1,2,0,0]],[[0,3,2,1],[1,3,3,0],[2,1,3,0],[0,2,2,1]],[[0,2,3,1],[1,3,3,0],[2,1,3,0],[0,2,2,1]],[[0,2,2,1],[1,4,3,0],[2,1,3,0],[0,2,2,1]],[[0,3,2,1],[1,3,3,0],[2,1,3,1],[0,2,2,0]],[[0,2,3,1],[1,3,3,0],[2,1,3,1],[0,2,2,0]],[[0,2,2,1],[1,4,3,0],[2,1,3,1],[0,2,2,0]],[[1,2,2,0],[3,3,2,1],[2,1,2,2],[1,1,1,0]],[[1,3,2,0],[2,3,2,1],[2,1,2,2],[1,1,1,0]],[[2,2,2,0],[2,3,2,1],[2,1,2,2],[1,1,1,0]],[[1,2,2,0],[3,3,2,1],[2,1,2,2],[1,1,0,1]],[[1,3,2,0],[2,3,2,1],[2,1,2,2],[1,1,0,1]],[[2,2,2,0],[2,3,2,1],[2,1,2,2],[1,1,0,1]],[[1,2,2,0],[3,3,2,1],[2,1,2,2],[1,0,2,0]],[[1,3,2,0],[2,3,2,1],[2,1,2,2],[1,0,2,0]],[[2,2,2,0],[2,3,2,1],[2,1,2,2],[1,0,2,0]],[[1,2,2,0],[3,3,2,1],[2,1,2,2],[1,0,1,1]],[[1,3,2,0],[2,3,2,1],[2,1,2,2],[1,0,1,1]],[[2,2,2,0],[2,3,2,1],[2,1,2,2],[1,0,1,1]],[[1,2,2,0],[3,3,2,1],[2,1,2,2],[0,2,1,0]],[[1,3,2,0],[2,3,2,1],[2,1,2,2],[0,2,1,0]],[[2,2,2,0],[2,3,2,1],[2,1,2,2],[0,2,1,0]],[[1,2,2,0],[3,3,2,1],[2,1,2,2],[0,2,0,1]],[[1,3,2,0],[2,3,2,1],[2,1,2,2],[0,2,0,1]],[[2,2,2,0],[2,3,2,1],[2,1,2,2],[0,2,0,1]],[[1,2,2,0],[3,3,2,1],[2,1,2,2],[0,1,2,0]],[[1,3,2,0],[2,3,2,1],[2,1,2,2],[0,1,2,0]],[[2,2,2,0],[2,3,2,1],[2,1,2,2],[0,1,2,0]],[[1,2,2,0],[3,3,2,1],[2,1,2,2],[0,1,1,1]],[[1,3,2,0],[2,3,2,1],[2,1,2,2],[0,1,1,1]],[[2,2,2,0],[2,3,2,1],[2,1,2,2],[0,1,1,1]],[[1,2,2,0],[3,3,2,1],[2,1,2,1],[1,1,1,1]],[[1,3,2,0],[2,3,2,1],[2,1,2,1],[1,1,1,1]],[[0,2,2,1],[1,3,3,0],[3,2,1,0],[1,2,2,1]],[[0,2,2,1],[1,3,3,0],[2,2,1,0],[2,2,2,1]],[[0,2,2,1],[1,3,3,0],[2,2,1,0],[1,3,2,1]],[[0,2,2,1],[1,3,3,0],[2,2,1,0],[1,2,3,1]],[[0,2,2,1],[1,3,3,0],[3,2,1,1],[1,2,2,0]],[[0,2,2,1],[1,3,3,0],[2,2,1,1],[2,2,2,0]],[[0,2,2,1],[1,3,3,0],[2,2,1,1],[1,3,2,0]],[[2,2,2,0],[2,3,2,1],[2,1,2,1],[1,1,1,1]],[[1,2,2,0],[3,3,2,1],[2,1,2,1],[1,0,2,1]],[[1,3,2,0],[2,3,2,1],[2,1,2,1],[1,0,2,1]],[[2,2,2,0],[2,3,2,1],[2,1,2,1],[1,0,2,1]],[[0,2,2,1],[1,3,3,0],[3,2,2,0],[1,2,1,1]],[[0,2,2,1],[1,3,3,0],[2,2,2,0],[2,2,1,1]],[[0,2,2,1],[1,3,3,0],[2,2,2,0],[1,3,1,1]],[[0,2,2,1],[1,3,3,0],[3,2,2,1],[1,2,1,0]],[[0,2,2,1],[1,3,3,0],[2,2,2,1],[2,2,1,0]],[[0,2,2,1],[1,3,3,0],[2,2,2,1],[1,3,1,0]],[[1,2,2,0],[3,3,2,1],[2,1,2,1],[0,2,1,1]],[[1,3,2,0],[2,3,2,1],[2,1,2,1],[0,2,1,1]],[[2,2,2,0],[2,3,2,1],[2,1,2,1],[0,2,1,1]],[[1,2,2,0],[3,3,2,1],[2,1,2,1],[0,1,2,1]],[[1,3,2,0],[2,3,2,1],[2,1,2,1],[0,1,2,1]],[[2,2,2,0],[2,3,2,1],[2,1,2,1],[0,1,2,1]],[[1,2,2,0],[3,3,2,1],[2,1,1,2],[1,1,2,0]],[[1,3,2,0],[2,3,2,1],[2,1,1,2],[1,1,2,0]],[[2,2,2,0],[2,3,2,1],[2,1,1,2],[1,1,2,0]],[[0,3,2,1],[1,3,3,0],[2,2,3,0],[0,1,2,1]],[[0,2,3,1],[1,3,3,0],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[1,4,3,0],[2,2,3,0],[0,1,2,1]],[[0,3,2,1],[1,3,3,0],[2,2,3,0],[0,2,1,1]],[[0,2,3,1],[1,3,3,0],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[1,4,3,0],[2,2,3,0],[0,2,1,1]],[[0,3,2,1],[1,3,3,0],[2,2,3,0],[1,0,2,1]],[[0,2,3,1],[1,3,3,0],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[1,4,3,0],[2,2,3,0],[1,0,2,1]],[[0,3,2,1],[1,3,3,0],[2,2,3,0],[1,1,1,1]],[[0,2,3,1],[1,3,3,0],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[1,4,3,0],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[1,3,3,0],[3,2,3,0],[1,2,1,0]],[[0,2,2,1],[1,3,3,0],[2,2,3,0],[2,2,1,0]],[[0,2,2,1],[1,3,3,0],[2,2,3,0],[1,3,1,0]],[[1,2,2,0],[3,3,2,1],[2,1,1,2],[0,2,2,0]],[[1,3,2,0],[2,3,2,1],[2,1,1,2],[0,2,2,0]],[[2,2,2,0],[2,3,2,1],[2,1,1,2],[0,2,2,0]],[[0,3,2,1],[1,3,3,0],[2,2,3,1],[0,1,1,1]],[[0,2,3,1],[1,3,3,0],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[1,4,3,0],[2,2,3,1],[0,1,1,1]],[[0,3,2,1],[1,3,3,0],[2,2,3,1],[0,1,2,0]],[[0,2,3,1],[1,3,3,0],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[1,4,3,0],[2,2,3,1],[0,1,2,0]],[[0,3,2,1],[1,3,3,0],[2,2,3,1],[0,2,0,1]],[[0,2,3,1],[1,3,3,0],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[1,4,3,0],[2,2,3,1],[0,2,0,1]],[[0,3,2,1],[1,3,3,0],[2,2,3,1],[0,2,1,0]],[[0,2,3,1],[1,3,3,0],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[1,4,3,0],[2,2,3,1],[0,2,1,0]],[[1,2,2,0],[3,3,2,1],[2,1,1,1],[1,1,2,1]],[[1,3,2,0],[2,3,2,1],[2,1,1,1],[1,1,2,1]],[[2,2,2,0],[2,3,2,1],[2,1,1,1],[1,1,2,1]],[[0,3,2,1],[1,3,3,0],[2,2,3,1],[1,0,1,1]],[[0,2,3,1],[1,3,3,0],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[1,4,3,0],[2,2,3,1],[1,0,1,1]],[[0,3,2,1],[1,3,3,0],[2,2,3,1],[1,0,2,0]],[[0,2,3,1],[1,3,3,0],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[1,4,3,0],[2,2,3,1],[1,0,2,0]],[[0,3,2,1],[1,3,3,0],[2,2,3,1],[1,1,0,1]],[[0,2,3,1],[1,3,3,0],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[1,4,3,0],[2,2,3,1],[1,1,0,1]],[[0,3,2,1],[1,3,3,0],[2,2,3,1],[1,1,1,0]],[[0,2,3,1],[1,3,3,0],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[1,4,3,0],[2,2,3,1],[1,1,1,0]],[[1,2,2,0],[3,3,2,1],[2,1,1,1],[0,2,2,1]],[[1,3,2,0],[2,3,2,1],[2,1,1,1],[0,2,2,1]],[[2,2,2,0],[2,3,2,1],[2,1,1,1],[0,2,2,1]],[[1,2,2,0],[3,3,2,1],[2,1,0,2],[1,1,2,1]],[[1,3,2,0],[2,3,2,1],[2,1,0,2],[1,1,2,1]],[[2,2,2,0],[2,3,2,1],[2,1,0,2],[1,1,2,1]],[[1,2,2,0],[3,3,2,1],[2,1,0,2],[0,2,2,1]],[[1,3,2,0],[2,3,2,1],[2,1,0,2],[0,2,2,1]],[[2,2,2,0],[2,3,2,1],[2,1,0,2],[0,2,2,1]],[[1,2,2,0],[3,3,2,1],[2,0,3,2],[1,1,1,0]],[[1,2,3,0],[2,3,2,1],[2,0,3,2],[1,1,1,0]],[[1,3,2,0],[2,3,2,1],[2,0,3,2],[1,1,1,0]],[[2,2,2,0],[2,3,2,1],[2,0,3,2],[1,1,1,0]],[[1,2,2,0],[3,3,2,1],[2,0,3,2],[1,1,0,1]],[[1,2,3,0],[2,3,2,1],[2,0,3,2],[1,1,0,1]],[[1,3,2,0],[2,3,2,1],[2,0,3,2],[1,1,0,1]],[[2,2,2,0],[2,3,2,1],[2,0,3,2],[1,1,0,1]],[[1,2,2,0],[3,3,2,1],[2,0,3,2],[1,0,2,0]],[[1,2,3,0],[2,3,2,1],[2,0,3,2],[1,0,2,0]],[[1,3,2,0],[2,3,2,1],[2,0,3,2],[1,0,2,0]],[[2,2,2,0],[2,3,2,1],[2,0,3,2],[1,0,2,0]],[[1,2,2,0],[3,3,2,1],[2,0,3,2],[1,0,1,1]],[[1,2,3,0],[2,3,2,1],[2,0,3,2],[1,0,1,1]],[[1,3,2,0],[2,3,2,1],[2,0,3,2],[1,0,1,1]],[[2,2,2,0],[2,3,2,1],[2,0,3,2],[1,0,1,1]],[[1,2,2,0],[3,3,2,1],[2,0,3,2],[0,2,1,0]],[[1,2,3,0],[2,3,2,1],[2,0,3,2],[0,2,1,0]],[[1,3,2,0],[2,3,2,1],[2,0,3,2],[0,2,1,0]],[[2,2,2,0],[2,3,2,1],[2,0,3,2],[0,2,1,0]],[[1,2,2,0],[3,3,2,1],[2,0,3,2],[0,2,0,1]],[[1,2,3,0],[2,3,2,1],[2,0,3,2],[0,2,0,1]],[[1,3,2,0],[2,3,2,1],[2,0,3,2],[0,2,0,1]],[[2,2,2,0],[2,3,2,1],[2,0,3,2],[0,2,0,1]],[[1,2,2,0],[3,3,2,1],[2,0,3,2],[0,1,2,0]],[[1,2,3,0],[2,3,2,1],[2,0,3,2],[0,1,2,0]],[[1,3,2,0],[2,3,2,1],[2,0,3,2],[0,1,2,0]],[[2,2,2,0],[2,3,2,1],[2,0,3,2],[0,1,2,0]],[[1,2,2,0],[3,3,2,1],[2,0,3,2],[0,1,1,1]],[[1,2,3,0],[2,3,2,1],[2,0,3,2],[0,1,1,1]],[[1,3,2,0],[2,3,2,1],[2,0,3,2],[0,1,1,1]],[[2,2,2,0],[2,3,2,1],[2,0,3,2],[0,1,1,1]],[[1,2,2,0],[3,3,2,1],[2,0,3,2],[0,0,2,1]],[[1,2,3,0],[2,3,2,1],[2,0,3,2],[0,0,2,1]],[[1,3,2,0],[2,3,2,1],[2,0,3,2],[0,0,2,1]],[[2,2,2,0],[2,3,2,1],[2,0,3,2],[0,0,2,1]],[[1,2,2,0],[3,3,2,1],[2,0,3,1],[1,1,1,1]],[[1,3,2,0],[2,3,2,1],[2,0,3,1],[1,1,1,1]],[[2,2,2,0],[2,3,2,1],[2,0,3,1],[1,1,1,1]],[[1,2,2,0],[3,3,2,1],[2,0,3,1],[1,0,2,1]],[[1,2,3,0],[2,3,2,1],[2,0,3,1],[1,0,2,1]],[[1,3,2,0],[2,3,2,1],[2,0,3,1],[1,0,2,1]],[[2,2,2,0],[2,3,2,1],[2,0,3,1],[1,0,2,1]],[[1,2,2,0],[3,3,2,1],[2,0,3,1],[0,2,1,1]],[[1,3,2,0],[2,3,2,1],[2,0,3,1],[0,2,1,1]],[[2,2,2,0],[2,3,2,1],[2,0,3,1],[0,2,1,1]],[[1,2,2,0],[3,3,2,1],[2,0,3,1],[0,1,2,1]],[[1,2,3,0],[2,3,2,1],[2,0,3,1],[0,1,2,1]],[[1,3,2,0],[2,3,2,1],[2,0,3,1],[0,1,2,1]],[[2,2,2,0],[2,3,2,1],[2,0,3,1],[0,1,2,1]],[[1,2,2,0],[3,3,2,1],[2,0,2,2],[1,2,1,0]],[[1,3,2,0],[2,3,2,1],[2,0,2,2],[1,2,1,0]],[[2,2,2,0],[2,3,2,1],[2,0,2,2],[1,2,1,0]],[[1,2,2,0],[3,3,2,1],[2,0,2,2],[1,2,0,1]],[[1,3,2,0],[2,3,2,1],[2,0,2,2],[1,2,0,1]],[[2,2,2,0],[2,3,2,1],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[1,3,3,0],[3,3,0,0],[1,2,2,1]],[[0,2,2,1],[1,3,3,0],[2,3,0,0],[2,2,2,1]],[[0,2,2,1],[1,3,3,0],[2,3,0,0],[1,3,2,1]],[[0,2,2,1],[1,3,3,0],[3,3,0,1],[1,2,2,0]],[[0,2,2,1],[1,3,3,0],[2,3,0,1],[2,2,2,0]],[[0,2,2,1],[1,3,3,0],[2,3,0,1],[1,3,2,0]],[[1,2,2,0],[3,3,2,1],[2,0,2,1],[1,2,1,1]],[[1,3,2,0],[2,3,2,1],[2,0,2,1],[1,2,1,1]],[[0,3,2,1],[1,3,3,0],[2,3,1,0],[0,2,2,1]],[[0,2,3,1],[1,3,3,0],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,4,3,0],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,3,3,0],[3,3,1,0],[0,2,2,1]],[[0,2,2,1],[1,3,3,0],[2,4,1,0],[0,2,2,1]],[[0,2,2,1],[1,3,3,0],[2,3,1,0],[0,3,2,1]],[[0,2,2,1],[1,3,3,0],[2,3,1,0],[0,2,3,1]],[[0,3,2,1],[1,3,3,0],[2,3,1,0],[1,1,2,1]],[[0,2,3,1],[1,3,3,0],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,4,3,0],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,3,3,0],[3,3,1,0],[1,1,2,1]],[[0,2,2,1],[1,3,3,0],[2,4,1,0],[1,1,2,1]],[[0,2,2,1],[1,3,3,0],[2,3,1,0],[2,1,2,1]],[[0,3,2,1],[1,3,3,0],[2,3,1,1],[0,2,2,0]],[[0,2,3,1],[1,3,3,0],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,4,3,0],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,3,3,0],[3,3,1,1],[0,2,2,0]],[[0,2,2,1],[1,3,3,0],[2,4,1,1],[0,2,2,0]],[[0,2,2,1],[1,3,3,0],[2,3,1,1],[0,3,2,0]],[[0,3,2,1],[1,3,3,0],[2,3,1,1],[1,1,2,0]],[[0,2,3,1],[1,3,3,0],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,4,3,0],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,3,3,0],[3,3,1,1],[1,1,2,0]],[[0,2,2,1],[1,3,3,0],[2,4,1,1],[1,1,2,0]],[[0,2,2,1],[1,3,3,0],[2,3,1,1],[2,1,2,0]],[[2,2,2,0],[2,3,2,1],[2,0,2,1],[1,2,1,1]],[[1,2,2,0],[3,3,2,1],[2,0,1,2],[1,2,2,0]],[[1,3,2,0],[2,3,2,1],[2,0,1,2],[1,2,2,0]],[[2,2,2,0],[2,3,2,1],[2,0,1,2],[1,2,2,0]],[[1,2,2,0],[3,3,2,1],[2,0,1,1],[1,2,2,1]],[[1,3,2,0],[2,3,2,1],[2,0,1,1],[1,2,2,1]],[[2,2,2,0],[2,3,2,1],[2,0,1,1],[1,2,2,1]],[[1,2,2,0],[3,3,2,1],[2,0,0,2],[1,2,2,1]],[[1,2,3,0],[2,3,2,1],[2,0,0,2],[1,2,2,1]],[[1,3,2,0],[2,3,2,1],[2,0,0,2],[1,2,2,1]],[[2,2,2,0],[2,3,2,1],[2,0,0,2],[1,2,2,1]],[[0,3,2,1],[1,3,3,0],[2,3,2,0],[0,1,2,1]],[[0,2,3,1],[1,3,3,0],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,4,3,0],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,3,3,0],[3,3,2,0],[0,1,2,1]],[[0,2,2,1],[1,3,3,0],[2,4,2,0],[0,1,2,1]],[[0,3,2,1],[1,3,3,0],[2,3,2,0],[0,2,1,1]],[[0,2,3,1],[1,3,3,0],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,4,3,0],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,3,3,0],[3,3,2,0],[0,2,1,1]],[[0,2,2,1],[1,3,3,0],[2,4,2,0],[0,2,1,1]],[[0,2,2,1],[1,3,3,0],[2,3,2,0],[0,3,1,1]],[[0,3,2,1],[1,3,3,0],[2,3,2,0],[1,0,2,1]],[[0,2,3,1],[1,3,3,0],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,4,3,0],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,3,3,0],[3,3,2,0],[1,0,2,1]],[[0,2,2,1],[1,3,3,0],[2,4,2,0],[1,0,2,1]],[[0,2,2,1],[1,3,3,0],[2,3,2,0],[2,0,2,1]],[[0,3,2,1],[1,3,3,0],[2,3,2,0],[1,1,1,1]],[[0,2,3,1],[1,3,3,0],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,4,3,0],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,3,3,0],[3,3,2,0],[1,1,1,1]],[[0,2,2,1],[1,3,3,0],[2,4,2,0],[1,1,1,1]],[[0,2,2,1],[1,3,3,0],[2,3,2,0],[2,1,1,1]],[[0,3,2,1],[1,3,3,0],[2,3,2,0],[1,2,0,1]],[[0,2,3,1],[1,3,3,0],[2,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,4,3,0],[2,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,3,3,0],[3,3,2,0],[1,2,0,1]],[[0,2,2,1],[1,3,3,0],[2,4,2,0],[1,2,0,1]],[[0,2,2,1],[1,3,3,0],[2,3,2,0],[2,2,0,1]],[[0,3,2,1],[1,3,3,0],[2,3,2,1],[0,1,1,1]],[[0,2,3,1],[1,3,3,0],[2,3,2,1],[0,1,1,1]],[[0,2,2,1],[1,4,3,0],[2,3,2,1],[0,1,1,1]],[[0,3,2,1],[1,3,3,0],[2,3,2,1],[0,1,2,0]],[[0,2,3,1],[1,3,3,0],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,4,3,0],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,3,3,0],[3,3,2,1],[0,1,2,0]],[[0,2,2,1],[1,3,3,0],[2,4,2,1],[0,1,2,0]],[[0,3,2,1],[1,3,3,0],[2,3,2,1],[0,2,0,1]],[[0,2,3,1],[1,3,3,0],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,4,3,0],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,3,3,0],[3,3,2,1],[0,2,0,1]],[[0,2,2,1],[1,3,3,0],[2,4,2,1],[0,2,0,1]],[[0,3,2,1],[1,3,3,0],[2,3,2,1],[0,2,1,0]],[[0,2,3,1],[1,3,3,0],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,4,3,0],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,3,3,0],[3,3,2,1],[0,2,1,0]],[[0,2,2,1],[1,3,3,0],[2,4,2,1],[0,2,1,0]],[[0,2,2,1],[1,3,3,0],[2,3,2,1],[0,3,1,0]],[[0,3,2,1],[1,3,3,0],[2,3,2,1],[1,0,1,1]],[[0,2,3,1],[1,3,3,0],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[1,4,3,0],[2,3,2,1],[1,0,1,1]],[[0,3,2,1],[1,3,3,0],[2,3,2,1],[1,0,2,0]],[[0,2,3,1],[1,3,3,0],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,4,3,0],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,3,3,0],[3,3,2,1],[1,0,2,0]],[[0,2,2,1],[1,3,3,0],[2,4,2,1],[1,0,2,0]],[[0,2,2,1],[1,3,3,0],[2,3,2,1],[2,0,2,0]],[[0,3,2,1],[1,3,3,0],[2,3,2,1],[1,1,0,1]],[[0,2,3,1],[1,3,3,0],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,4,3,0],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,3,3,0],[3,3,2,1],[1,1,0,1]],[[0,2,2,1],[1,3,3,0],[2,4,2,1],[1,1,0,1]],[[0,2,2,1],[1,3,3,0],[2,3,2,1],[2,1,0,1]],[[0,3,2,1],[1,3,3,0],[2,3,2,1],[1,1,1,0]],[[0,2,3,1],[1,3,3,0],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,4,3,0],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,3,3,0],[3,3,2,1],[1,1,1,0]],[[0,2,2,1],[1,3,3,0],[2,4,2,1],[1,1,1,0]],[[0,2,2,1],[1,3,3,0],[2,3,2,1],[2,1,1,0]],[[0,3,2,1],[1,3,3,0],[2,3,2,1],[1,2,0,0]],[[0,2,3,1],[1,3,3,0],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,4,3,0],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,3,3,0],[3,3,2,1],[1,2,0,0]],[[0,2,2,1],[1,3,3,0],[2,4,2,1],[1,2,0,0]],[[0,2,2,1],[1,3,3,0],[2,3,2,1],[2,2,0,0]],[[0,3,2,1],[1,3,3,0],[2,3,3,0],[0,0,2,1]],[[0,2,3,1],[1,3,3,0],[2,3,3,0],[0,0,2,1]],[[0,2,2,1],[1,4,3,0],[2,3,3,0],[0,0,2,1]],[[0,3,2,1],[1,3,3,0],[2,3,3,0],[0,1,2,0]],[[0,2,3,1],[1,3,3,0],[2,3,3,0],[0,1,2,0]],[[0,2,2,1],[1,4,3,0],[2,3,3,0],[0,1,2,0]],[[0,2,2,1],[1,3,3,0],[3,3,3,0],[0,1,2,0]],[[0,2,2,1],[1,3,3,0],[2,4,3,0],[0,1,2,0]],[[0,3,2,1],[1,3,3,0],[2,3,3,0],[0,2,1,0]],[[0,2,3,1],[1,3,3,0],[2,3,3,0],[0,2,1,0]],[[0,2,2,1],[1,4,3,0],[2,3,3,0],[0,2,1,0]],[[0,2,2,1],[1,3,3,0],[3,3,3,0],[0,2,1,0]],[[0,2,2,1],[1,3,3,0],[2,4,3,0],[0,2,1,0]],[[0,2,2,1],[1,3,3,0],[2,3,3,0],[0,3,1,0]],[[0,3,2,1],[1,3,3,0],[2,3,3,0],[1,0,2,0]],[[0,2,3,1],[1,3,3,0],[2,3,3,0],[1,0,2,0]],[[0,2,2,1],[1,4,3,0],[2,3,3,0],[1,0,2,0]],[[0,2,2,1],[1,3,3,0],[3,3,3,0],[1,0,2,0]],[[0,2,2,1],[1,3,3,0],[2,4,3,0],[1,0,2,0]],[[0,2,2,1],[1,3,3,0],[2,3,3,0],[2,0,2,0]],[[0,3,2,1],[1,3,3,0],[2,3,3,0],[1,1,1,0]],[[0,2,3,1],[1,3,3,0],[2,3,3,0],[1,1,1,0]],[[0,2,2,1],[1,4,3,0],[2,3,3,0],[1,1,1,0]],[[0,2,2,1],[1,3,3,0],[3,3,3,0],[1,1,1,0]],[[0,2,2,1],[1,3,3,0],[2,4,3,0],[1,1,1,0]],[[0,2,2,1],[1,3,3,0],[2,3,3,0],[2,1,1,0]],[[0,3,2,1],[1,3,3,0],[2,3,3,0],[1,2,0,0]],[[0,2,3,1],[1,3,3,0],[2,3,3,0],[1,2,0,0]],[[0,2,2,1],[1,4,3,0],[2,3,3,0],[1,2,0,0]],[[0,2,2,1],[1,3,3,0],[3,3,3,0],[1,2,0,0]],[[0,2,2,1],[1,3,3,0],[2,4,3,0],[1,2,0,0]],[[0,2,2,1],[1,3,3,0],[2,3,3,0],[2,2,0,0]],[[0,3,2,1],[1,3,3,0],[2,3,3,1],[0,0,1,1]],[[0,2,3,1],[1,3,3,0],[2,3,3,1],[0,0,1,1]],[[0,2,2,1],[1,4,3,0],[2,3,3,1],[0,0,1,1]],[[0,3,2,1],[1,3,3,0],[2,3,3,1],[0,0,2,0]],[[0,2,3,1],[1,3,3,0],[2,3,3,1],[0,0,2,0]],[[0,2,2,1],[1,4,3,0],[2,3,3,1],[0,0,2,0]],[[0,3,2,1],[1,3,3,0],[2,3,3,1],[0,2,0,0]],[[0,2,3,1],[1,3,3,0],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,4,3,0],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,3,3,0],[3,3,3,1],[0,2,0,0]],[[0,2,2,1],[1,3,3,0],[2,4,3,1],[0,2,0,0]],[[1,2,2,0],[2,4,2,1],[0,3,3,2],[1,1,0,0]],[[1,2,3,0],[2,3,2,1],[0,3,3,2],[1,1,0,0]],[[1,3,2,0],[2,3,2,1],[0,3,3,2],[1,1,0,0]],[[2,2,2,0],[2,3,2,1],[0,3,3,2],[1,1,0,0]],[[1,2,2,0],[2,4,2,1],[0,3,3,2],[0,2,0,0]],[[1,2,3,0],[2,3,2,1],[0,3,3,2],[0,2,0,0]],[[1,3,2,0],[2,3,2,1],[0,3,3,2],[0,2,0,0]],[[0,3,2,1],[1,3,3,0],[2,3,3,1],[1,1,0,0]],[[0,2,3,1],[1,3,3,0],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,4,3,0],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,3,3,0],[3,3,3,1],[1,1,0,0]],[[0,2,2,1],[1,3,3,0],[2,4,3,1],[1,1,0,0]],[[0,2,2,1],[1,3,3,0],[2,3,3,1],[2,1,0,0]],[[2,2,2,0],[2,3,2,1],[0,3,3,2],[0,2,0,0]],[[1,2,2,0],[2,4,2,1],[0,3,3,2],[0,0,2,0]],[[1,2,3,0],[2,3,2,1],[0,3,3,2],[0,0,2,0]],[[1,3,2,0],[2,3,2,1],[0,3,3,2],[0,0,2,0]],[[2,2,2,0],[2,3,2,1],[0,3,3,2],[0,0,2,0]],[[1,2,2,0],[2,4,2,1],[0,3,3,2],[0,0,1,1]],[[1,2,3,0],[2,3,2,1],[0,3,3,2],[0,0,1,1]],[[1,3,2,0],[2,3,2,1],[0,3,3,2],[0,0,1,1]],[[2,2,2,0],[2,3,2,1],[0,3,3,2],[0,0,1,1]],[[1,2,2,0],[2,4,2,1],[0,3,3,1],[0,0,2,1]],[[1,2,3,0],[2,3,2,1],[0,3,3,1],[0,0,2,1]],[[1,3,2,0],[2,3,2,1],[0,3,3,1],[0,0,2,1]],[[2,2,2,0],[2,3,2,1],[0,3,3,1],[0,0,2,1]],[[1,2,2,0],[2,4,2,1],[0,3,2,2],[1,2,0,0]],[[1,3,2,0],[2,3,2,1],[0,3,2,2],[1,2,0,0]],[[2,2,2,0],[2,3,2,1],[0,3,2,2],[1,2,0,0]],[[1,2,2,0],[2,4,2,1],[0,3,2,2],[1,1,1,0]],[[1,2,3,0],[2,3,2,1],[0,3,2,2],[1,1,1,0]],[[1,3,2,0],[2,3,2,1],[0,3,2,2],[1,1,1,0]],[[2,2,2,0],[2,3,2,1],[0,3,2,2],[1,1,1,0]],[[1,2,2,0],[2,4,2,1],[0,3,2,2],[1,1,0,1]],[[1,2,3,0],[2,3,2,1],[0,3,2,2],[1,1,0,1]],[[1,3,2,0],[2,3,2,1],[0,3,2,2],[1,1,0,1]],[[2,2,2,0],[2,3,2,1],[0,3,2,2],[1,1,0,1]],[[1,2,2,0],[2,4,2,1],[0,3,2,2],[1,0,2,0]],[[1,2,3,0],[2,3,2,1],[0,3,2,2],[1,0,2,0]],[[1,3,2,0],[2,3,2,1],[0,3,2,2],[1,0,2,0]],[[2,2,2,0],[2,3,2,1],[0,3,2,2],[1,0,2,0]],[[1,2,2,0],[2,4,2,1],[0,3,2,2],[1,0,1,1]],[[1,2,3,0],[2,3,2,1],[0,3,2,2],[1,0,1,1]],[[1,3,2,0],[2,3,2,1],[0,3,2,2],[1,0,1,1]],[[2,2,2,0],[2,3,2,1],[0,3,2,2],[1,0,1,1]],[[1,2,2,0],[2,4,2,1],[0,3,2,2],[0,2,1,0]],[[1,2,3,0],[2,3,2,1],[0,3,2,2],[0,2,1,0]],[[1,3,2,0],[2,3,2,1],[0,3,2,2],[0,2,1,0]],[[2,2,2,0],[2,3,2,1],[0,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,4,2,1],[0,3,2,2],[0,2,0,1]],[[1,2,3,0],[2,3,2,1],[0,3,2,2],[0,2,0,1]],[[1,3,2,0],[2,3,2,1],[0,3,2,2],[0,2,0,1]],[[2,2,2,0],[2,3,2,1],[0,3,2,2],[0,2,0,1]],[[1,2,2,0],[2,4,2,1],[0,3,2,2],[0,1,2,0]],[[1,2,3,0],[2,3,2,1],[0,3,2,2],[0,1,2,0]],[[1,3,2,0],[2,3,2,1],[0,3,2,2],[0,1,2,0]],[[2,2,2,0],[2,3,2,1],[0,3,2,2],[0,1,2,0]],[[1,2,2,0],[2,4,2,1],[0,3,2,2],[0,1,1,1]],[[1,2,3,0],[2,3,2,1],[0,3,2,2],[0,1,1,1]],[[1,3,2,0],[2,3,2,1],[0,3,2,2],[0,1,1,1]],[[2,2,2,0],[2,3,2,1],[0,3,2,2],[0,1,1,1]],[[1,2,2,0],[2,4,2,1],[0,3,2,1],[1,1,1,1]],[[1,3,2,0],[2,3,2,1],[0,3,2,1],[1,1,1,1]],[[2,2,2,0],[2,3,2,1],[0,3,2,1],[1,1,1,1]],[[1,2,2,0],[2,4,2,1],[0,3,2,1],[1,0,2,1]],[[1,2,3,0],[2,3,2,1],[0,3,2,1],[1,0,2,1]],[[1,3,2,0],[2,3,2,1],[0,3,2,1],[1,0,2,1]],[[2,2,2,0],[2,3,2,1],[0,3,2,1],[1,0,2,1]],[[1,2,2,0],[2,4,2,1],[0,3,2,1],[0,2,1,1]],[[1,2,3,0],[2,3,2,1],[0,3,2,1],[0,2,1,1]],[[1,3,2,0],[2,3,2,1],[0,3,2,1],[0,2,1,1]],[[2,2,2,0],[2,3,2,1],[0,3,2,1],[0,2,1,1]],[[1,2,2,0],[2,4,2,1],[0,3,2,1],[0,1,2,1]],[[1,2,3,0],[2,3,2,1],[0,3,2,1],[0,1,2,1]],[[1,3,2,0],[2,3,2,1],[0,3,2,1],[0,1,2,1]],[[2,2,2,0],[2,3,2,1],[0,3,2,1],[0,1,2,1]],[[1,2,2,0],[2,4,2,1],[0,3,1,2],[1,1,2,0]],[[1,3,2,0],[2,3,2,1],[0,3,1,2],[1,1,2,0]],[[2,2,2,0],[2,3,2,1],[0,3,1,2],[1,1,2,0]],[[1,2,2,0],[2,4,2,1],[0,3,1,2],[0,2,2,0]],[[1,2,3,0],[2,3,2,1],[0,3,1,2],[0,2,2,0]],[[1,3,2,0],[2,3,2,1],[0,3,1,2],[0,2,2,0]],[[2,2,2,0],[2,3,2,1],[0,3,1,2],[0,2,2,0]],[[1,2,2,0],[2,4,2,1],[0,3,1,1],[1,1,2,1]],[[1,3,2,0],[2,3,2,1],[0,3,1,1],[1,1,2,1]],[[2,2,2,0],[2,3,2,1],[0,3,1,1],[1,1,2,1]],[[1,2,2,0],[2,4,2,1],[0,3,1,1],[0,2,2,1]],[[1,2,3,0],[2,3,2,1],[0,3,1,1],[0,2,2,1]],[[1,3,2,0],[2,3,2,1],[0,3,1,1],[0,2,2,1]],[[2,2,2,0],[2,3,2,1],[0,3,1,1],[0,2,2,1]],[[1,2,2,0],[2,4,2,1],[0,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,3,2,1],[0,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,3,2,1],[0,3,0,2],[1,1,2,1]],[[1,2,2,0],[2,4,2,1],[0,3,0,2],[0,2,2,1]],[[1,2,3,0],[2,3,2,1],[0,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,3,2,1],[0,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,3,2,1],[0,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,4,2,1],[0,2,3,2],[1,1,1,0]],[[1,2,3,0],[2,3,2,1],[0,2,3,2],[1,1,1,0]],[[1,3,2,0],[2,3,2,1],[0,2,3,2],[1,1,1,0]],[[2,2,2,0],[2,3,2,1],[0,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,4,2,1],[0,2,3,2],[1,1,0,1]],[[1,2,3,0],[2,3,2,1],[0,2,3,2],[1,1,0,1]],[[1,3,2,0],[2,3,2,1],[0,2,3,2],[1,1,0,1]],[[2,2,2,0],[2,3,2,1],[0,2,3,2],[1,1,0,1]],[[1,2,2,0],[2,4,2,1],[0,2,3,2],[1,0,2,0]],[[1,2,3,0],[2,3,2,1],[0,2,3,2],[1,0,2,0]],[[1,3,2,0],[2,3,2,1],[0,2,3,2],[1,0,2,0]],[[2,2,2,0],[2,3,2,1],[0,2,3,2],[1,0,2,0]],[[1,2,2,0],[2,4,2,1],[0,2,3,2],[1,0,1,1]],[[1,2,3,0],[2,3,2,1],[0,2,3,2],[1,0,1,1]],[[1,3,2,0],[2,3,2,1],[0,2,3,2],[1,0,1,1]],[[2,2,2,0],[2,3,2,1],[0,2,3,2],[1,0,1,1]],[[1,2,2,0],[2,4,2,1],[0,2,3,2],[0,2,1,0]],[[1,2,3,0],[2,3,2,1],[0,2,3,2],[0,2,1,0]],[[1,3,2,0],[2,3,2,1],[0,2,3,2],[0,2,1,0]],[[2,2,2,0],[2,3,2,1],[0,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,4,2,1],[0,2,3,2],[0,2,0,1]],[[1,2,3,0],[2,3,2,1],[0,2,3,2],[0,2,0,1]],[[1,3,2,0],[2,3,2,1],[0,2,3,2],[0,2,0,1]],[[2,2,2,0],[2,3,2,1],[0,2,3,2],[0,2,0,1]],[[1,2,2,0],[2,4,2,1],[0,2,3,2],[0,1,2,0]],[[1,2,3,0],[2,3,2,1],[0,2,3,2],[0,1,2,0]],[[1,3,2,0],[2,3,2,1],[0,2,3,2],[0,1,2,0]],[[2,2,2,0],[2,3,2,1],[0,2,3,2],[0,1,2,0]],[[1,2,2,0],[2,4,2,1],[0,2,3,2],[0,1,1,1]],[[1,2,3,0],[2,3,2,1],[0,2,3,2],[0,1,1,1]],[[1,3,2,0],[2,3,2,1],[0,2,3,2],[0,1,1,1]],[[2,2,2,0],[2,3,2,1],[0,2,3,2],[0,1,1,1]],[[1,2,2,0],[2,4,2,1],[0,2,3,2],[0,0,2,1]],[[1,2,3,0],[2,3,2,1],[0,2,3,2],[0,0,2,1]],[[1,3,2,0],[2,3,2,1],[0,2,3,2],[0,0,2,1]],[[2,2,2,0],[2,3,2,1],[0,2,3,2],[0,0,2,1]],[[1,2,2,0],[2,4,2,1],[0,2,3,1],[1,1,1,1]],[[1,3,2,0],[2,3,2,1],[0,2,3,1],[1,1,1,1]],[[2,2,2,0],[2,3,2,1],[0,2,3,1],[1,1,1,1]],[[1,2,2,0],[2,4,2,1],[0,2,3,1],[1,0,2,1]],[[1,2,3,0],[2,3,2,1],[0,2,3,1],[1,0,2,1]],[[1,3,2,0],[2,3,2,1],[0,2,3,1],[1,0,2,1]],[[2,2,2,0],[2,3,2,1],[0,2,3,1],[1,0,2,1]],[[1,2,2,0],[2,4,2,1],[0,2,3,1],[0,2,1,1]],[[1,2,3,0],[2,3,2,1],[0,2,3,1],[0,2,1,1]],[[1,3,2,0],[2,3,2,1],[0,2,3,1],[0,2,1,1]],[[2,2,2,0],[2,3,2,1],[0,2,3,1],[0,2,1,1]],[[1,2,2,0],[2,4,2,1],[0,2,3,1],[0,1,2,1]],[[1,2,3,0],[2,3,2,1],[0,2,3,1],[0,1,2,1]],[[1,3,2,0],[2,3,2,1],[0,2,3,1],[0,1,2,1]],[[2,2,2,0],[2,3,2,1],[0,2,3,1],[0,1,2,1]],[[1,2,2,0],[2,4,2,1],[0,1,3,2],[0,2,2,0]],[[1,2,3,0],[2,3,2,1],[0,1,3,2],[0,2,2,0]],[[1,3,2,0],[2,3,2,1],[0,1,3,2],[0,2,2,0]],[[2,2,2,0],[2,3,2,1],[0,1,3,2],[0,2,2,0]],[[1,2,2,0],[2,4,2,1],[0,1,3,2],[0,2,1,1]],[[1,2,3,0],[2,3,2,1],[0,1,3,2],[0,2,1,1]],[[1,3,2,0],[2,3,2,1],[0,1,3,2],[0,2,1,1]],[[2,2,2,0],[2,3,2,1],[0,1,3,2],[0,2,1,1]],[[1,2,2,0],[2,4,2,1],[0,1,3,1],[0,2,2,1]],[[1,2,3,0],[2,3,2,1],[0,1,3,1],[0,2,2,1]],[[1,3,2,0],[2,3,2,1],[0,1,3,1],[0,2,2,1]],[[2,2,2,0],[2,3,2,1],[0,1,3,1],[0,2,2,1]],[[1,2,2,0],[2,3,2,0],[2,3,0,0],[1,3,2,1]],[[1,2,2,0],[2,3,2,0],[2,3,0,0],[2,2,2,1]],[[1,2,2,0],[2,3,2,0],[3,3,0,0],[1,2,2,1]],[[1,2,2,0],[3,3,2,0],[2,3,0,0],[1,2,2,1]],[[2,2,2,0],[2,3,2,0],[2,3,0,0],[1,2,2,1]],[[1,2,2,0],[2,3,1,2],[3,3,3,1],[1,0,0,0]],[[1,2,2,0],[3,3,1,2],[2,3,3,1],[1,0,0,0]],[[1,3,2,0],[2,3,1,2],[2,3,3,1],[1,0,0,0]],[[2,2,2,0],[2,3,1,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,0],[2,3,1,2],[3,3,3,0],[1,0,1,0]],[[1,2,2,0],[3,3,1,2],[2,3,3,0],[1,0,1,0]],[[1,3,2,0],[2,3,1,2],[2,3,3,0],[1,0,1,0]],[[2,2,2,0],[2,3,1,2],[2,3,3,0],[1,0,1,0]],[[1,2,2,0],[2,3,1,2],[3,3,2,1],[1,0,1,0]],[[1,2,2,0],[3,3,1,2],[2,3,2,1],[1,0,1,0]],[[1,3,2,0],[2,3,1,2],[2,3,2,1],[1,0,1,0]],[[2,2,2,0],[2,3,1,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,0],[2,3,1,2],[3,3,2,1],[1,0,0,1]],[[1,2,2,0],[3,3,1,2],[2,3,2,1],[1,0,0,1]],[[1,3,2,0],[2,3,1,2],[2,3,2,1],[1,0,0,1]],[[2,2,2,0],[2,3,1,2],[2,3,2,1],[1,0,0,1]],[[1,2,2,0],[2,3,1,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,0],[2,3,1,2],[3,3,2,0],[1,2,0,0]],[[1,2,2,0],[3,3,1,2],[2,3,2,0],[1,2,0,0]],[[1,3,2,0],[2,3,1,2],[2,3,2,0],[1,2,0,0]],[[2,2,2,0],[2,3,1,2],[2,3,2,0],[1,2,0,0]],[[1,2,2,0],[2,3,1,2],[2,3,2,0],[2,1,1,0]],[[1,2,2,0],[2,3,1,2],[3,3,2,0],[1,1,1,0]],[[1,2,2,0],[3,3,1,2],[2,3,2,0],[1,1,1,0]],[[1,3,2,0],[2,3,1,2],[2,3,2,0],[1,1,1,0]],[[2,2,2,0],[2,3,1,2],[2,3,2,0],[1,1,1,0]],[[1,2,2,0],[2,3,1,2],[3,3,2,0],[1,0,1,1]],[[1,2,2,0],[3,3,1,2],[2,3,2,0],[1,0,1,1]],[[1,3,2,0],[2,3,1,2],[2,3,2,0],[1,0,1,1]],[[2,2,2,0],[2,3,1,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,0],[2,3,1,2],[3,3,2,0],[0,2,1,0]],[[1,2,2,0],[3,3,1,2],[2,3,2,0],[0,2,1,0]],[[1,3,2,0],[2,3,1,2],[2,3,2,0],[0,2,1,0]],[[2,2,2,0],[2,3,1,2],[2,3,2,0],[0,2,1,0]],[[1,2,2,0],[2,3,1,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,0],[3,3,1,2],[2,3,1,2],[1,0,1,0]],[[1,3,2,0],[2,3,1,2],[2,3,1,2],[1,0,1,0]],[[2,2,2,0],[2,3,1,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,0],[2,3,1,2],[3,3,1,2],[1,0,0,1]],[[1,2,2,0],[3,3,1,2],[2,3,1,2],[1,0,0,1]],[[1,3,2,0],[2,3,1,2],[2,3,1,2],[1,0,0,1]],[[2,2,2,0],[2,3,1,2],[2,3,1,2],[1,0,0,1]],[[0,3,2,1],[1,3,3,1],[1,3,0,0],[1,2,2,1]],[[0,2,3,1],[1,3,3,1],[1,3,0,0],[1,2,2,1]],[[0,2,2,2],[1,3,3,1],[1,3,0,0],[1,2,2,1]],[[0,2,2,1],[1,4,3,1],[1,3,0,0],[1,2,2,1]],[[0,3,2,1],[1,3,3,1],[1,3,0,1],[1,2,2,0]],[[0,2,3,1],[1,3,3,1],[1,3,0,1],[1,2,2,0]],[[0,2,2,2],[1,3,3,1],[1,3,0,1],[1,2,2,0]],[[0,2,2,1],[1,4,3,1],[1,3,0,1],[1,2,2,0]],[[0,3,2,1],[1,3,3,1],[1,3,0,2],[1,2,0,1]],[[0,2,3,1],[1,3,3,1],[1,3,0,2],[1,2,0,1]],[[0,2,2,2],[1,3,3,1],[1,3,0,2],[1,2,0,1]],[[0,2,2,1],[1,4,3,1],[1,3,0,2],[1,2,0,1]],[[0,3,2,1],[1,3,3,1],[1,3,0,2],[1,2,1,0]],[[0,2,3,1],[1,3,3,1],[1,3,0,2],[1,2,1,0]],[[0,2,2,2],[1,3,3,1],[1,3,0,2],[1,2,1,0]],[[0,2,2,1],[1,4,3,1],[1,3,0,2],[1,2,1,0]],[[1,2,2,0],[2,3,1,2],[2,3,1,1],[2,2,0,0]],[[1,2,2,0],[2,3,1,2],[3,3,1,1],[1,2,0,0]],[[1,2,2,0],[3,3,1,2],[2,3,1,1],[1,2,0,0]],[[1,3,2,0],[2,3,1,2],[2,3,1,1],[1,2,0,0]],[[2,2,2,0],[2,3,1,2],[2,3,1,1],[1,2,0,0]],[[0,3,2,1],[1,3,3,1],[1,3,1,0],[1,2,1,1]],[[0,2,3,1],[1,3,3,1],[1,3,1,0],[1,2,1,1]],[[0,2,2,2],[1,3,3,1],[1,3,1,0],[1,2,1,1]],[[0,2,2,1],[1,4,3,1],[1,3,1,0],[1,2,1,1]],[[0,3,2,1],[1,3,3,1],[1,3,1,1],[1,2,0,1]],[[0,2,3,1],[1,3,3,1],[1,3,1,1],[1,2,0,1]],[[0,2,2,2],[1,3,3,1],[1,3,1,1],[1,2,0,1]],[[0,2,2,1],[1,4,3,1],[1,3,1,1],[1,2,0,1]],[[0,3,2,1],[1,3,3,1],[1,3,1,1],[1,2,1,0]],[[0,2,3,1],[1,3,3,1],[1,3,1,1],[1,2,1,0]],[[0,2,2,2],[1,3,3,1],[1,3,1,1],[1,2,1,0]],[[0,2,2,1],[1,4,3,1],[1,3,1,1],[1,2,1,0]],[[1,2,2,0],[2,3,1,2],[2,3,1,1],[2,1,1,0]],[[1,2,2,0],[2,3,1,2],[3,3,1,1],[1,1,1,0]],[[1,2,2,0],[3,3,1,2],[2,3,1,1],[1,1,1,0]],[[1,3,2,0],[2,3,1,2],[2,3,1,1],[1,1,1,0]],[[2,2,2,0],[2,3,1,2],[2,3,1,1],[1,1,1,0]],[[1,2,2,0],[2,3,1,2],[2,3,1,1],[2,1,0,1]],[[1,2,2,0],[2,3,1,2],[3,3,1,1],[1,1,0,1]],[[1,2,2,0],[3,3,1,2],[2,3,1,1],[1,1,0,1]],[[1,3,2,0],[2,3,1,2],[2,3,1,1],[1,1,0,1]],[[2,2,2,0],[2,3,1,2],[2,3,1,1],[1,1,0,1]],[[1,2,2,0],[2,3,1,2],[3,3,1,1],[0,2,1,0]],[[1,2,2,0],[3,3,1,2],[2,3,1,1],[0,2,1,0]],[[1,3,2,0],[2,3,1,2],[2,3,1,1],[0,2,1,0]],[[2,2,2,0],[2,3,1,2],[2,3,1,1],[0,2,1,0]],[[1,2,2,0],[2,3,1,2],[3,3,1,1],[0,2,0,1]],[[1,2,2,0],[3,3,1,2],[2,3,1,1],[0,2,0,1]],[[1,3,2,0],[2,3,1,2],[2,3,1,1],[0,2,0,1]],[[2,2,2,0],[2,3,1,2],[2,3,1,1],[0,2,0,1]],[[1,2,2,0],[2,3,1,2],[2,3,1,0],[2,2,0,1]],[[1,2,2,0],[2,3,1,2],[3,3,1,0],[1,2,0,1]],[[1,2,2,0],[3,3,1,2],[2,3,1,0],[1,2,0,1]],[[1,3,2,0],[2,3,1,2],[2,3,1,0],[1,2,0,1]],[[2,2,2,0],[2,3,1,2],[2,3,1,0],[1,2,0,1]],[[1,2,2,0],[2,3,1,2],[2,3,1,0],[2,1,1,1]],[[1,2,2,0],[2,3,1,2],[3,3,1,0],[1,1,1,1]],[[1,2,2,0],[3,3,1,2],[2,3,1,0],[1,1,1,1]],[[1,3,2,0],[2,3,1,2],[2,3,1,0],[1,1,1,1]],[[2,2,2,0],[2,3,1,2],[2,3,1,0],[1,1,1,1]],[[1,2,2,0],[2,3,1,2],[3,3,1,0],[0,2,1,1]],[[1,2,2,0],[3,3,1,2],[2,3,1,0],[0,2,1,1]],[[1,3,2,0],[2,3,1,2],[2,3,1,0],[0,2,1,1]],[[2,2,2,0],[2,3,1,2],[2,3,1,0],[0,2,1,1]],[[1,2,2,0],[2,3,1,2],[2,3,0,2],[2,2,0,0]],[[1,2,2,0],[2,3,1,2],[3,3,0,2],[1,2,0,0]],[[1,2,2,0],[3,3,1,2],[2,3,0,2],[1,2,0,0]],[[1,3,2,0],[2,3,1,2],[2,3,0,2],[1,2,0,0]],[[2,2,2,0],[2,3,1,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,0],[2,3,1,2],[2,3,0,2],[2,1,1,0]],[[1,2,2,0],[2,3,1,2],[3,3,0,2],[1,1,1,0]],[[1,2,2,0],[3,3,1,2],[2,3,0,2],[1,1,1,0]],[[1,3,2,0],[2,3,1,2],[2,3,0,2],[1,1,1,0]],[[2,2,2,0],[2,3,1,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,0],[2,3,1,2],[2,3,0,2],[2,1,0,1]],[[1,2,2,0],[2,3,1,2],[3,3,0,2],[1,1,0,1]],[[1,2,2,0],[3,3,1,2],[2,3,0,2],[1,1,0,1]],[[1,3,2,0],[2,3,1,2],[2,3,0,2],[1,1,0,1]],[[2,2,2,0],[2,3,1,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,0],[2,3,1,2],[3,3,0,2],[0,2,1,0]],[[1,2,2,0],[3,3,1,2],[2,3,0,2],[0,2,1,0]],[[1,3,2,0],[2,3,1,2],[2,3,0,2],[0,2,1,0]],[[2,2,2,0],[2,3,1,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,0],[2,3,1,2],[3,3,0,2],[0,2,0,1]],[[1,2,2,0],[3,3,1,2],[2,3,0,2],[0,2,0,1]],[[1,3,2,0],[2,3,1,2],[2,3,0,2],[0,2,0,1]],[[2,2,2,0],[2,3,1,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,0],[2,3,1,2],[2,3,0,1],[2,2,1,0]],[[1,2,2,0],[2,3,1,2],[3,3,0,1],[1,2,1,0]],[[1,2,2,0],[3,3,1,2],[2,3,0,1],[1,2,1,0]],[[1,3,2,0],[2,3,1,2],[2,3,0,1],[1,2,1,0]],[[2,2,2,0],[2,3,1,2],[2,3,0,1],[1,2,1,0]],[[1,2,2,0],[2,3,1,2],[2,3,0,1],[2,1,2,0]],[[1,2,2,0],[2,3,1,2],[3,3,0,1],[1,1,2,0]],[[1,2,2,0],[3,3,1,2],[2,3,0,1],[1,1,2,0]],[[1,3,2,0],[2,3,1,2],[2,3,0,1],[1,1,2,0]],[[2,2,2,0],[2,3,1,2],[2,3,0,1],[1,1,2,0]],[[1,2,2,0],[2,3,1,2],[3,3,0,1],[0,2,2,0]],[[1,2,2,0],[3,3,1,2],[2,3,0,1],[0,2,2,0]],[[1,3,2,0],[2,3,1,2],[2,3,0,1],[0,2,2,0]],[[2,2,2,0],[2,3,1,2],[2,3,0,1],[0,2,2,0]],[[1,2,2,0],[2,3,1,2],[2,3,0,0],[2,2,2,0]],[[1,2,2,0],[2,3,1,2],[3,3,0,0],[1,2,2,0]],[[1,2,2,0],[3,3,1,2],[2,3,0,0],[1,2,2,0]],[[1,3,2,0],[2,3,1,2],[2,3,0,0],[1,2,2,0]],[[2,2,2,0],[2,3,1,2],[2,3,0,0],[1,2,2,0]],[[1,2,2,0],[2,3,1,2],[2,3,0,0],[2,2,1,1]],[[1,2,2,0],[2,3,1,2],[3,3,0,0],[1,2,1,1]],[[1,2,2,0],[3,3,1,2],[2,3,0,0],[1,2,1,1]],[[1,3,2,0],[2,3,1,2],[2,3,0,0],[1,2,1,1]],[[2,2,2,0],[2,3,1,2],[2,3,0,0],[1,2,1,1]],[[1,2,2,0],[2,3,1,2],[2,3,0,0],[2,1,2,1]],[[1,2,2,0],[2,3,1,2],[3,3,0,0],[1,1,2,1]],[[1,2,2,0],[3,3,1,2],[2,3,0,0],[1,1,2,1]],[[1,3,2,0],[2,3,1,2],[2,3,0,0],[1,1,2,1]],[[2,2,2,0],[2,3,1,2],[2,3,0,0],[1,1,2,1]],[[1,2,2,0],[2,3,1,2],[3,3,0,0],[0,2,2,1]],[[1,2,2,0],[3,3,1,2],[2,3,0,0],[0,2,2,1]],[[1,3,2,0],[2,3,1,2],[2,3,0,0],[0,2,2,1]],[[2,2,2,0],[2,3,1,2],[2,3,0,0],[0,2,2,1]],[[1,2,2,0],[2,3,1,2],[3,2,3,1],[1,1,0,0]],[[1,2,2,0],[3,3,1,2],[2,2,3,1],[1,1,0,0]],[[1,3,2,0],[2,3,1,2],[2,2,3,1],[1,1,0,0]],[[2,2,2,0],[2,3,1,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,0],[3,3,1,2],[2,2,3,1],[0,2,0,0]],[[1,3,2,0],[2,3,1,2],[2,2,3,1],[0,2,0,0]],[[2,2,2,0],[2,3,1,2],[2,2,3,1],[0,2,0,0]],[[1,2,2,0],[2,3,1,2],[2,2,3,0],[2,2,0,0]],[[1,2,2,0],[2,3,1,2],[3,2,3,0],[1,2,0,0]],[[1,2,2,0],[3,3,1,2],[2,2,3,0],[1,2,0,0]],[[1,3,2,0],[2,3,1,2],[2,2,3,0],[1,2,0,0]],[[2,2,2,0],[2,3,1,2],[2,2,3,0],[1,2,0,0]],[[1,2,2,0],[2,3,1,2],[2,2,3,0],[2,1,1,0]],[[1,2,2,0],[2,3,1,2],[3,2,3,0],[1,1,1,0]],[[1,2,2,0],[3,3,1,2],[2,2,3,0],[1,1,1,0]],[[1,3,2,0],[2,3,1,2],[2,2,3,0],[1,1,1,0]],[[2,2,2,0],[2,3,1,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,0],[2,3,1,2],[3,2,3,0],[1,0,2,0]],[[1,2,2,0],[3,3,1,2],[2,2,3,0],[1,0,2,0]],[[1,3,2,0],[2,3,1,2],[2,2,3,0],[1,0,2,0]],[[2,2,2,0],[2,3,1,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,0],[2,3,1,2],[3,2,3,0],[0,2,1,0]],[[1,2,2,0],[3,3,1,2],[2,2,3,0],[0,2,1,0]],[[1,3,2,0],[2,3,1,2],[2,2,3,0],[0,2,1,0]],[[2,2,2,0],[2,3,1,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,0],[3,3,1,2],[2,2,3,0],[0,1,2,0]],[[1,3,2,0],[2,3,1,2],[2,2,3,0],[0,1,2,0]],[[2,2,2,0],[2,3,1,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,0],[2,3,1,2],[2,2,2,1],[2,2,0,0]],[[1,2,2,0],[2,3,1,2],[3,2,2,1],[1,2,0,0]],[[1,2,2,0],[3,3,1,2],[2,2,2,1],[1,2,0,0]],[[1,3,2,0],[2,3,1,2],[2,2,2,1],[1,2,0,0]],[[2,2,2,0],[2,3,1,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,0],[2,3,1,2],[2,2,2,1],[2,1,1,0]],[[1,2,2,0],[2,3,1,2],[3,2,2,1],[1,1,1,0]],[[1,2,2,0],[3,3,1,2],[2,2,2,1],[1,1,1,0]],[[1,3,2,0],[2,3,1,2],[2,2,2,1],[1,1,1,0]],[[2,2,2,0],[2,3,1,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,0],[2,3,1,2],[2,2,2,1],[2,1,0,1]],[[1,2,2,0],[2,3,1,2],[3,2,2,1],[1,1,0,1]],[[1,2,2,0],[3,3,1,2],[2,2,2,1],[1,1,0,1]],[[1,3,2,0],[2,3,1,2],[2,2,2,1],[1,1,0,1]],[[2,2,2,0],[2,3,1,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,0],[2,3,1,2],[3,2,2,1],[1,0,2,0]],[[1,2,2,0],[3,3,1,2],[2,2,2,1],[1,0,2,0]],[[1,3,2,0],[2,3,1,2],[2,2,2,1],[1,0,2,0]],[[2,2,2,0],[2,3,1,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,0],[2,3,1,2],[3,2,2,1],[1,0,1,1]],[[1,2,2,0],[3,3,1,2],[2,2,2,1],[1,0,1,1]],[[1,3,2,0],[2,3,1,2],[2,2,2,1],[1,0,1,1]],[[2,2,2,0],[2,3,1,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,0],[2,3,1,2],[3,2,2,1],[0,2,1,0]],[[1,2,2,0],[3,3,1,2],[2,2,2,1],[0,2,1,0]],[[1,3,2,0],[2,3,1,2],[2,2,2,1],[0,2,1,0]],[[2,2,2,0],[2,3,1,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,0],[2,3,1,2],[3,2,2,1],[0,2,0,1]],[[1,2,2,0],[3,3,1,2],[2,2,2,1],[0,2,0,1]],[[1,3,2,0],[2,3,1,2],[2,2,2,1],[0,2,0,1]],[[2,2,2,0],[2,3,1,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,0],[3,3,1,2],[2,2,2,1],[0,1,2,0]],[[1,3,2,0],[2,3,1,2],[2,2,2,1],[0,1,2,0]],[[2,2,2,0],[2,3,1,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,0],[3,3,1,2],[2,2,2,1],[0,1,1,1]],[[1,3,2,0],[2,3,1,2],[2,2,2,1],[0,1,1,1]],[[2,2,2,0],[2,3,1,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,0],[2,3,1,2],[2,2,2,0],[2,2,0,1]],[[1,2,2,0],[2,3,1,2],[3,2,2,0],[1,2,0,1]],[[1,2,2,0],[3,3,1,2],[2,2,2,0],[1,2,0,1]],[[1,3,2,0],[2,3,1,2],[2,2,2,0],[1,2,0,1]],[[2,2,2,0],[2,3,1,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,0],[2,3,1,2],[2,2,2,0],[2,1,1,1]],[[1,2,2,0],[2,3,1,2],[3,2,2,0],[1,1,1,1]],[[1,2,2,0],[3,3,1,2],[2,2,2,0],[1,1,1,1]],[[1,3,2,0],[2,3,1,2],[2,2,2,0],[1,1,1,1]],[[2,2,2,0],[2,3,1,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,0],[2,3,1,2],[3,2,2,0],[1,0,2,1]],[[1,2,2,0],[3,3,1,2],[2,2,2,0],[1,0,2,1]],[[1,3,2,0],[2,3,1,2],[2,2,2,0],[1,0,2,1]],[[2,2,2,0],[2,3,1,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,0],[2,3,1,2],[3,2,2,0],[0,2,1,1]],[[1,2,2,0],[3,3,1,2],[2,2,2,0],[0,2,1,1]],[[1,3,2,0],[2,3,1,2],[2,2,2,0],[0,2,1,1]],[[2,2,2,0],[2,3,1,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,0],[3,3,1,2],[2,2,2,0],[0,1,2,1]],[[1,3,2,0],[2,3,1,2],[2,2,2,0],[0,1,2,1]],[[2,2,2,0],[2,3,1,2],[2,2,2,0],[0,1,2,1]],[[1,2,2,0],[2,3,1,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,0],[2,3,1,2],[3,2,1,2],[1,2,0,0]],[[1,2,2,0],[3,3,1,2],[2,2,1,2],[1,2,0,0]],[[1,3,2,0],[2,3,1,2],[2,2,1,2],[1,2,0,0]],[[2,2,2,0],[2,3,1,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,0],[2,3,1,2],[2,2,1,2],[2,1,1,0]],[[1,2,2,0],[2,3,1,2],[3,2,1,2],[1,1,1,0]],[[1,2,2,0],[3,3,1,2],[2,2,1,2],[1,1,1,0]],[[1,3,2,0],[2,3,1,2],[2,2,1,2],[1,1,1,0]],[[2,2,2,0],[2,3,1,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,0],[2,3,1,2],[2,2,1,2],[2,1,0,1]],[[1,2,2,0],[2,3,1,2],[3,2,1,2],[1,1,0,1]],[[1,2,2,0],[3,3,1,2],[2,2,1,2],[1,1,0,1]],[[1,3,2,0],[2,3,1,2],[2,2,1,2],[1,1,0,1]],[[2,2,2,0],[2,3,1,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,0],[2,3,1,2],[3,2,1,2],[1,0,2,0]],[[1,2,2,0],[3,3,1,2],[2,2,1,2],[1,0,2,0]],[[1,3,2,0],[2,3,1,2],[2,2,1,2],[1,0,2,0]],[[2,2,2,0],[2,3,1,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,0],[2,3,1,2],[3,2,1,2],[1,0,1,1]],[[1,2,2,0],[3,3,1,2],[2,2,1,2],[1,0,1,1]],[[1,3,2,0],[2,3,1,2],[2,2,1,2],[1,0,1,1]],[[2,2,2,0],[2,3,1,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,0],[2,3,1,2],[3,2,1,2],[0,2,1,0]],[[1,2,2,0],[3,3,1,2],[2,2,1,2],[0,2,1,0]],[[1,3,2,0],[2,3,1,2],[2,2,1,2],[0,2,1,0]],[[2,2,2,0],[2,3,1,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,0],[2,3,1,2],[3,2,1,2],[0,2,0,1]],[[1,2,2,0],[3,3,1,2],[2,2,1,2],[0,2,0,1]],[[1,3,2,0],[2,3,1,2],[2,2,1,2],[0,2,0,1]],[[2,2,2,0],[2,3,1,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,0],[3,3,1,2],[2,2,1,2],[0,1,2,0]],[[1,3,2,0],[2,3,1,2],[2,2,1,2],[0,1,2,0]],[[2,2,2,0],[2,3,1,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,0],[3,3,1,2],[2,2,1,2],[0,1,1,1]],[[1,3,2,0],[2,3,1,2],[2,2,1,2],[0,1,1,1]],[[2,2,2,0],[2,3,1,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,0],[2,3,1,2],[2,2,1,1],[2,1,2,0]],[[1,2,2,0],[2,3,1,2],[3,2,1,1],[1,1,2,0]],[[1,2,2,0],[3,3,1,2],[2,2,1,1],[1,1,2,0]],[[1,3,2,0],[2,3,1,2],[2,2,1,1],[1,1,2,0]],[[2,2,2,0],[2,3,1,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,0],[2,3,1,2],[3,2,1,1],[0,2,2,0]],[[1,2,2,0],[3,3,1,2],[2,2,1,1],[0,2,2,0]],[[1,3,2,0],[2,3,1,2],[2,2,1,1],[0,2,2,0]],[[2,2,2,0],[2,3,1,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,0],[2,3,1,2],[2,2,1,0],[2,1,2,1]],[[1,2,2,0],[2,3,1,2],[3,2,1,0],[1,1,2,1]],[[1,2,2,0],[3,3,1,2],[2,2,1,0],[1,1,2,1]],[[1,3,2,0],[2,3,1,2],[2,2,1,0],[1,1,2,1]],[[2,2,2,0],[2,3,1,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,0],[2,3,1,2],[3,2,1,0],[0,2,2,1]],[[1,2,2,0],[3,3,1,2],[2,2,1,0],[0,2,2,1]],[[1,3,2,0],[2,3,1,2],[2,2,1,0],[0,2,2,1]],[[2,2,2,0],[2,3,1,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,0],[2,3,1,2],[2,2,0,2],[2,1,2,0]],[[1,2,2,0],[2,3,1,2],[3,2,0,2],[1,1,2,0]],[[1,2,2,0],[3,3,1,2],[2,2,0,2],[1,1,2,0]],[[1,3,2,0],[2,3,1,2],[2,2,0,2],[1,1,2,0]],[[2,2,2,0],[2,3,1,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,0],[2,3,1,2],[2,2,0,2],[2,1,1,1]],[[1,2,2,0],[2,3,1,2],[3,2,0,2],[1,1,1,1]],[[1,2,2,0],[3,3,1,2],[2,2,0,2],[1,1,1,1]],[[1,3,2,0],[2,3,1,2],[2,2,0,2],[1,1,1,1]],[[2,2,2,0],[2,3,1,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,0],[2,3,1,2],[3,2,0,2],[1,0,2,1]],[[1,2,2,0],[3,3,1,2],[2,2,0,2],[1,0,2,1]],[[1,3,2,0],[2,3,1,2],[2,2,0,2],[1,0,2,1]],[[2,2,2,0],[2,3,1,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,0],[2,3,1,2],[3,2,0,2],[0,2,2,0]],[[1,2,2,0],[3,3,1,2],[2,2,0,2],[0,2,2,0]],[[1,3,2,0],[2,3,1,2],[2,2,0,2],[0,2,2,0]],[[2,2,2,0],[2,3,1,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,0],[2,3,1,2],[3,2,0,2],[0,2,1,1]],[[1,2,2,0],[3,3,1,2],[2,2,0,2],[0,2,1,1]],[[1,3,2,0],[2,3,1,2],[2,2,0,2],[0,2,1,1]],[[2,2,2,0],[2,3,1,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,0],[3,3,1,2],[2,2,0,2],[0,1,2,1]],[[1,3,2,0],[2,3,1,2],[2,2,0,2],[0,1,2,1]],[[2,2,2,0],[2,3,1,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,0],[2,3,1,2],[2,2,0,1],[1,3,2,0]],[[1,2,2,0],[2,3,1,2],[2,2,0,1],[2,2,2,0]],[[1,2,2,0],[2,3,1,2],[3,2,0,1],[1,2,2,0]],[[1,2,2,0],[3,3,1,2],[2,2,0,1],[1,2,2,0]],[[1,3,2,0],[2,3,1,2],[2,2,0,1],[1,2,2,0]],[[2,2,2,0],[2,3,1,2],[2,2,0,1],[1,2,2,0]],[[1,2,2,0],[2,3,1,2],[2,2,0,1],[2,1,2,1]],[[1,2,2,0],[2,3,1,2],[3,2,0,1],[1,1,2,1]],[[1,2,2,0],[3,3,1,2],[2,2,0,1],[1,1,2,1]],[[1,3,2,0],[2,3,1,2],[2,2,0,1],[1,1,2,1]],[[2,2,2,0],[2,3,1,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,0],[2,3,1,2],[3,2,0,1],[0,2,2,1]],[[1,2,2,0],[3,3,1,2],[2,2,0,1],[0,2,2,1]],[[1,3,2,0],[2,3,1,2],[2,2,0,1],[0,2,2,1]],[[2,2,2,0],[2,3,1,2],[2,2,0,1],[0,2,2,1]],[[1,2,2,0],[2,3,1,2],[2,2,0,0],[1,3,2,1]],[[1,2,2,0],[2,3,1,2],[2,2,0,0],[2,2,2,1]],[[1,2,2,0],[2,3,1,2],[3,2,0,0],[1,2,2,1]],[[1,2,2,0],[3,3,1,2],[2,2,0,0],[1,2,2,1]],[[1,3,2,0],[2,3,1,2],[2,2,0,0],[1,2,2,1]],[[2,2,2,0],[2,3,1,2],[2,2,0,0],[1,2,2,1]],[[1,2,2,0],[2,3,1,2],[2,1,3,0],[2,2,1,0]],[[1,2,2,0],[2,3,1,2],[3,1,3,0],[1,2,1,0]],[[1,2,2,0],[3,3,1,2],[2,1,3,0],[1,2,1,0]],[[1,3,2,0],[2,3,1,2],[2,1,3,0],[1,2,1,0]],[[2,2,2,0],[2,3,1,2],[2,1,3,0],[1,2,1,0]],[[1,2,2,0],[2,3,1,2],[2,1,2,1],[2,2,1,0]],[[1,2,2,0],[2,3,1,2],[3,1,2,1],[1,2,1,0]],[[1,2,2,0],[3,3,1,2],[2,1,2,1],[1,2,1,0]],[[1,3,2,0],[2,3,1,2],[2,1,2,1],[1,2,1,0]],[[2,2,2,0],[2,3,1,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,0],[2,3,1,2],[2,1,2,1],[2,2,0,1]],[[1,2,2,0],[2,3,1,2],[3,1,2,1],[1,2,0,1]],[[1,2,2,0],[3,3,1,2],[2,1,2,1],[1,2,0,1]],[[1,3,2,0],[2,3,1,2],[2,1,2,1],[1,2,0,1]],[[2,2,2,0],[2,3,1,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,0],[2,3,1,2],[2,1,2,0],[2,2,1,1]],[[1,2,2,0],[2,3,1,2],[3,1,2,0],[1,2,1,1]],[[1,2,2,0],[3,3,1,2],[2,1,2,0],[1,2,1,1]],[[1,3,2,0],[2,3,1,2],[2,1,2,0],[1,2,1,1]],[[2,2,2,0],[2,3,1,2],[2,1,2,0],[1,2,1,1]],[[1,2,2,0],[2,3,1,2],[2,1,1,2],[2,2,1,0]],[[1,2,2,0],[2,3,1,2],[3,1,1,2],[1,2,1,0]],[[1,2,2,0],[3,3,1,2],[2,1,1,2],[1,2,1,0]],[[1,3,2,0],[2,3,1,2],[2,1,1,2],[1,2,1,0]],[[2,2,2,0],[2,3,1,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,0],[2,3,1,2],[2,1,1,2],[2,2,0,1]],[[1,2,2,0],[2,3,1,2],[3,1,1,2],[1,2,0,1]],[[1,2,2,0],[3,3,1,2],[2,1,1,2],[1,2,0,1]],[[1,3,2,0],[2,3,1,2],[2,1,1,2],[1,2,0,1]],[[2,2,2,0],[2,3,1,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,0],[2,3,1,2],[2,1,1,1],[1,3,2,0]],[[1,2,2,0],[2,3,1,2],[2,1,1,1],[2,2,2,0]],[[1,2,2,0],[2,3,1,2],[3,1,1,1],[1,2,2,0]],[[1,2,2,0],[3,3,1,2],[2,1,1,1],[1,2,2,0]],[[1,3,2,0],[2,3,1,2],[2,1,1,1],[1,2,2,0]],[[2,2,2,0],[2,3,1,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,0],[2,3,1,2],[2,1,1,0],[1,3,2,1]],[[1,2,2,0],[2,3,1,2],[2,1,1,0],[2,2,2,1]],[[1,2,2,0],[2,3,1,2],[3,1,1,0],[1,2,2,1]],[[1,2,2,0],[3,3,1,2],[2,1,1,0],[1,2,2,1]],[[1,3,2,0],[2,3,1,2],[2,1,1,0],[1,2,2,1]],[[2,2,2,0],[2,3,1,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,0],[2,3,1,2],[2,1,0,2],[1,3,2,0]],[[1,2,2,0],[2,3,1,2],[2,1,0,2],[2,2,2,0]],[[1,2,2,0],[2,3,1,2],[3,1,0,2],[1,2,2,0]],[[1,2,2,0],[3,3,1,2],[2,1,0,2],[1,2,2,0]],[[1,3,2,0],[2,3,1,2],[2,1,0,2],[1,2,2,0]],[[2,2,2,0],[2,3,1,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,0],[2,3,1,2],[2,1,0,2],[2,2,1,1]],[[1,2,2,0],[2,3,1,2],[3,1,0,2],[1,2,1,1]],[[1,2,2,0],[3,3,1,2],[2,1,0,2],[1,2,1,1]],[[1,3,2,0],[2,3,1,2],[2,1,0,2],[1,2,1,1]],[[2,2,2,0],[2,3,1,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,0],[2,3,1,2],[2,1,0,1],[1,3,2,1]],[[1,2,2,0],[2,3,1,2],[2,1,0,1],[2,2,2,1]],[[1,2,2,0],[2,3,1,2],[3,1,0,1],[1,2,2,1]],[[1,2,2,0],[3,3,1,2],[2,1,0,1],[1,2,2,1]],[[1,3,2,0],[2,3,1,2],[2,1,0,1],[1,2,2,1]],[[2,2,2,0],[2,3,1,2],[2,1,0,1],[1,2,2,1]],[[1,2,2,0],[3,3,1,2],[2,0,0,2],[1,2,2,1]],[[1,2,3,0],[2,3,1,2],[2,0,0,2],[1,2,2,1]],[[1,3,2,0],[2,3,1,2],[2,0,0,2],[1,2,2,1]],[[2,2,2,0],[2,3,1,2],[2,0,0,2],[1,2,2,1]],[[1,2,2,0],[3,3,1,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,0],[2,3,1,2],[1,3,3,1],[1,1,0,0]],[[2,2,2,0],[2,3,1,2],[1,3,3,1],[1,1,0,0]],[[1,2,2,0],[3,3,1,2],[1,3,3,1],[0,2,0,0]],[[1,3,2,0],[2,3,1,2],[1,3,3,1],[0,2,0,0]],[[2,2,2,0],[2,3,1,2],[1,3,3,1],[0,2,0,0]],[[1,2,2,0],[3,3,1,2],[1,3,3,0],[1,2,0,0]],[[1,3,2,0],[2,3,1,2],[1,3,3,0],[1,2,0,0]],[[2,2,2,0],[2,3,1,2],[1,3,3,0],[1,2,0,0]],[[1,2,2,0],[3,3,1,2],[1,3,3,0],[1,1,1,0]],[[1,3,2,0],[2,3,1,2],[1,3,3,0],[1,1,1,0]],[[2,2,2,0],[2,3,1,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,0],[3,3,1,2],[1,3,3,0],[1,0,2,0]],[[1,3,2,0],[2,3,1,2],[1,3,3,0],[1,0,2,0]],[[2,2,2,0],[2,3,1,2],[1,3,3,0],[1,0,2,0]],[[1,2,2,0],[3,3,1,2],[1,3,3,0],[0,2,1,0]],[[1,3,2,0],[2,3,1,2],[1,3,3,0],[0,2,1,0]],[[2,2,2,0],[2,3,1,2],[1,3,3,0],[0,2,1,0]],[[1,2,2,0],[3,3,1,2],[1,3,3,0],[0,1,2,0]],[[1,3,2,0],[2,3,1,2],[1,3,3,0],[0,1,2,0]],[[2,2,2,0],[2,3,1,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,0],[3,3,1,2],[1,3,2,1],[1,2,0,0]],[[1,3,2,0],[2,3,1,2],[1,3,2,1],[1,2,0,0]],[[2,2,2,0],[2,3,1,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,0],[3,3,1,2],[1,3,2,1],[1,1,1,0]],[[1,3,2,0],[2,3,1,2],[1,3,2,1],[1,1,1,0]],[[2,2,2,0],[2,3,1,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,0],[3,3,1,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,0],[2,3,1,2],[1,3,2,1],[1,1,0,1]],[[2,2,2,0],[2,3,1,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,0],[3,3,1,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,0],[2,3,1,2],[1,3,2,1],[1,0,2,0]],[[2,2,2,0],[2,3,1,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,0],[3,3,1,2],[1,3,2,1],[1,0,1,1]],[[1,3,2,0],[2,3,1,2],[1,3,2,1],[1,0,1,1]],[[2,2,2,0],[2,3,1,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,0],[3,3,1,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,0],[2,3,1,2],[1,3,2,1],[0,2,1,0]],[[2,2,2,0],[2,3,1,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,0],[3,3,1,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,0],[2,3,1,2],[1,3,2,1],[0,2,0,1]],[[2,2,2,0],[2,3,1,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,0],[3,3,1,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,0],[2,3,1,2],[1,3,2,1],[0,1,2,0]],[[2,2,2,0],[2,3,1,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,0],[3,3,1,2],[1,3,2,1],[0,1,1,1]],[[1,3,2,0],[2,3,1,2],[1,3,2,1],[0,1,1,1]],[[2,2,2,0],[2,3,1,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,0],[3,3,1,2],[1,3,2,0],[1,2,0,1]],[[1,3,2,0],[2,3,1,2],[1,3,2,0],[1,2,0,1]],[[0,3,2,1],[1,3,3,1],[2,3,0,0],[0,2,2,1]],[[0,2,3,1],[1,3,3,1],[2,3,0,0],[0,2,2,1]],[[0,2,2,2],[1,3,3,1],[2,3,0,0],[0,2,2,1]],[[0,2,2,1],[1,4,3,1],[2,3,0,0],[0,2,2,1]],[[0,3,2,1],[1,3,3,1],[2,3,0,0],[1,1,2,1]],[[0,2,3,1],[1,3,3,1],[2,3,0,0],[1,1,2,1]],[[0,2,2,2],[1,3,3,1],[2,3,0,0],[1,1,2,1]],[[0,2,2,1],[1,4,3,1],[2,3,0,0],[1,1,2,1]],[[0,3,2,1],[1,3,3,1],[2,3,0,1],[0,2,2,0]],[[0,2,3,1],[1,3,3,1],[2,3,0,1],[0,2,2,0]],[[0,2,2,2],[1,3,3,1],[2,3,0,1],[0,2,2,0]],[[0,2,2,1],[1,4,3,1],[2,3,0,1],[0,2,2,0]],[[0,3,2,1],[1,3,3,1],[2,3,0,1],[1,1,2,0]],[[0,2,3,1],[1,3,3,1],[2,3,0,1],[1,1,2,0]],[[0,2,2,2],[1,3,3,1],[2,3,0,1],[1,1,2,0]],[[0,2,2,1],[1,4,3,1],[2,3,0,1],[1,1,2,0]],[[2,2,2,0],[2,3,1,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,0],[3,3,1,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,0],[2,3,1,2],[1,3,2,0],[1,1,1,1]],[[2,2,2,0],[2,3,1,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,0],[3,3,1,2],[1,3,2,0],[1,0,2,1]],[[0,3,2,1],[1,3,3,1],[2,3,0,2],[0,1,1,1]],[[0,2,3,1],[1,3,3,1],[2,3,0,2],[0,1,1,1]],[[0,2,2,2],[1,3,3,1],[2,3,0,2],[0,1,1,1]],[[0,2,2,1],[1,4,3,1],[2,3,0,2],[0,1,1,1]],[[0,3,2,1],[1,3,3,1],[2,3,0,2],[0,1,2,0]],[[0,2,3,1],[1,3,3,1],[2,3,0,2],[0,1,2,0]],[[0,2,2,2],[1,3,3,1],[2,3,0,2],[0,1,2,0]],[[0,2,2,1],[1,4,3,1],[2,3,0,2],[0,1,2,0]],[[0,3,2,1],[1,3,3,1],[2,3,0,2],[0,2,0,1]],[[0,2,3,1],[1,3,3,1],[2,3,0,2],[0,2,0,1]],[[0,2,2,2],[1,3,3,1],[2,3,0,2],[0,2,0,1]],[[0,2,2,1],[1,4,3,1],[2,3,0,2],[0,2,0,1]],[[0,3,2,1],[1,3,3,1],[2,3,0,2],[0,2,1,0]],[[0,2,3,1],[1,3,3,1],[2,3,0,2],[0,2,1,0]],[[0,2,2,2],[1,3,3,1],[2,3,0,2],[0,2,1,0]],[[0,2,2,1],[1,4,3,1],[2,3,0,2],[0,2,1,0]],[[1,3,2,0],[2,3,1,2],[1,3,2,0],[1,0,2,1]],[[2,2,2,0],[2,3,1,2],[1,3,2,0],[1,0,2,1]],[[0,3,2,1],[1,3,3,1],[2,3,0,2],[1,0,1,1]],[[0,2,3,1],[1,3,3,1],[2,3,0,2],[1,0,1,1]],[[0,2,2,2],[1,3,3,1],[2,3,0,2],[1,0,1,1]],[[0,2,2,1],[1,4,3,1],[2,3,0,2],[1,0,1,1]],[[0,3,2,1],[1,3,3,1],[2,3,0,2],[1,0,2,0]],[[0,2,3,1],[1,3,3,1],[2,3,0,2],[1,0,2,0]],[[0,2,2,2],[1,3,3,1],[2,3,0,2],[1,0,2,0]],[[0,2,2,1],[1,4,3,1],[2,3,0,2],[1,0,2,0]],[[0,3,2,1],[1,3,3,1],[2,3,0,2],[1,1,0,1]],[[0,2,3,1],[1,3,3,1],[2,3,0,2],[1,1,0,1]],[[0,2,2,2],[1,3,3,1],[2,3,0,2],[1,1,0,1]],[[0,2,2,1],[1,4,3,1],[2,3,0,2],[1,1,0,1]],[[0,3,2,1],[1,3,3,1],[2,3,0,2],[1,1,1,0]],[[0,2,3,1],[1,3,3,1],[2,3,0,2],[1,1,1,0]],[[0,2,2,2],[1,3,3,1],[2,3,0,2],[1,1,1,0]],[[0,2,2,1],[1,4,3,1],[2,3,0,2],[1,1,1,0]],[[1,2,2,0],[3,3,1,2],[1,3,2,0],[0,2,1,1]],[[1,3,2,0],[2,3,1,2],[1,3,2,0],[0,2,1,1]],[[2,2,2,0],[2,3,1,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,0],[3,3,1,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,0],[2,3,1,2],[1,3,2,0],[0,1,2,1]],[[2,2,2,0],[2,3,1,2],[1,3,2,0],[0,1,2,1]],[[0,3,2,1],[1,3,3,1],[2,3,0,2],[1,2,0,0]],[[0,2,3,1],[1,3,3,1],[2,3,0,2],[1,2,0,0]],[[0,2,2,2],[1,3,3,1],[2,3,0,2],[1,2,0,0]],[[0,2,2,1],[1,4,3,1],[2,3,0,2],[1,2,0,0]],[[1,2,2,0],[3,3,1,2],[1,3,1,2],[1,2,0,0]],[[1,3,2,0],[2,3,1,2],[1,3,1,2],[1,2,0,0]],[[2,2,2,0],[2,3,1,2],[1,3,1,2],[1,2,0,0]],[[1,2,2,0],[3,3,1,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,0],[2,3,1,2],[1,3,1,2],[1,1,1,0]],[[2,2,2,0],[2,3,1,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,0],[3,3,1,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,0],[2,3,1,2],[1,3,1,2],[1,1,0,1]],[[2,2,2,0],[2,3,1,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,0],[3,3,1,2],[1,3,1,2],[1,0,2,0]],[[1,3,2,0],[2,3,1,2],[1,3,1,2],[1,0,2,0]],[[2,2,2,0],[2,3,1,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,0],[3,3,1,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,0],[2,3,1,2],[1,3,1,2],[1,0,1,1]],[[2,2,2,0],[2,3,1,2],[1,3,1,2],[1,0,1,1]],[[0,3,2,1],[1,3,3,1],[2,3,1,0],[0,1,2,1]],[[0,2,3,1],[1,3,3,1],[2,3,1,0],[0,1,2,1]],[[0,2,2,2],[1,3,3,1],[2,3,1,0],[0,1,2,1]],[[0,2,2,1],[1,4,3,1],[2,3,1,0],[0,1,2,1]],[[0,3,2,1],[1,3,3,1],[2,3,1,0],[0,2,1,1]],[[0,2,3,1],[1,3,3,1],[2,3,1,0],[0,2,1,1]],[[0,2,2,2],[1,3,3,1],[2,3,1,0],[0,2,1,1]],[[0,2,2,1],[1,4,3,1],[2,3,1,0],[0,2,1,1]],[[0,3,2,1],[1,3,3,1],[2,3,1,0],[1,0,2,1]],[[0,2,3,1],[1,3,3,1],[2,3,1,0],[1,0,2,1]],[[0,2,2,2],[1,3,3,1],[2,3,1,0],[1,0,2,1]],[[0,2,2,1],[1,4,3,1],[2,3,1,0],[1,0,2,1]],[[0,3,2,1],[1,3,3,1],[2,3,1,0],[1,1,1,1]],[[0,2,3,1],[1,3,3,1],[2,3,1,0],[1,1,1,1]],[[0,2,2,2],[1,3,3,1],[2,3,1,0],[1,1,1,1]],[[0,2,2,1],[1,4,3,1],[2,3,1,0],[1,1,1,1]],[[0,3,2,1],[1,3,3,1],[2,3,1,0],[1,2,0,1]],[[0,2,3,1],[1,3,3,1],[2,3,1,0],[1,2,0,1]],[[0,2,2,2],[1,3,3,1],[2,3,1,0],[1,2,0,1]],[[0,2,2,1],[1,4,3,1],[2,3,1,0],[1,2,0,1]],[[1,2,2,0],[3,3,1,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,0],[2,3,1,2],[1,3,1,2],[0,2,1,0]],[[2,2,2,0],[2,3,1,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,0],[3,3,1,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,0],[2,3,1,2],[1,3,1,2],[0,2,0,1]],[[2,2,2,0],[2,3,1,2],[1,3,1,2],[0,2,0,1]],[[0,3,2,1],[1,3,3,1],[2,3,1,1],[0,1,1,1]],[[0,2,3,1],[1,3,3,1],[2,3,1,1],[0,1,1,1]],[[0,2,2,2],[1,3,3,1],[2,3,1,1],[0,1,1,1]],[[0,2,2,1],[1,4,3,1],[2,3,1,1],[0,1,1,1]],[[0,3,2,1],[1,3,3,1],[2,3,1,1],[0,1,2,0]],[[0,2,3,1],[1,3,3,1],[2,3,1,1],[0,1,2,0]],[[0,2,2,2],[1,3,3,1],[2,3,1,1],[0,1,2,0]],[[0,2,2,1],[1,4,3,1],[2,3,1,1],[0,1,2,0]],[[0,3,2,1],[1,3,3,1],[2,3,1,1],[0,2,0,1]],[[0,2,3,1],[1,3,3,1],[2,3,1,1],[0,2,0,1]],[[0,2,2,2],[1,3,3,1],[2,3,1,1],[0,2,0,1]],[[0,2,2,1],[1,4,3,1],[2,3,1,1],[0,2,0,1]],[[0,3,2,1],[1,3,3,1],[2,3,1,1],[0,2,1,0]],[[0,2,3,1],[1,3,3,1],[2,3,1,1],[0,2,1,0]],[[0,2,2,2],[1,3,3,1],[2,3,1,1],[0,2,1,0]],[[0,2,2,1],[1,4,3,1],[2,3,1,1],[0,2,1,0]],[[1,2,2,0],[3,3,1,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,0],[2,3,1,2],[1,3,1,2],[0,1,2,0]],[[2,2,2,0],[2,3,1,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,0],[3,3,1,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,0],[2,3,1,2],[1,3,1,2],[0,1,1,1]],[[2,2,2,0],[2,3,1,2],[1,3,1,2],[0,1,1,1]],[[0,3,2,1],[1,3,3,1],[2,3,1,1],[1,0,1,1]],[[0,2,3,1],[1,3,3,1],[2,3,1,1],[1,0,1,1]],[[0,2,2,2],[1,3,3,1],[2,3,1,1],[1,0,1,1]],[[0,2,2,1],[1,4,3,1],[2,3,1,1],[1,0,1,1]],[[0,3,2,1],[1,3,3,1],[2,3,1,1],[1,0,2,0]],[[0,2,3,1],[1,3,3,1],[2,3,1,1],[1,0,2,0]],[[0,2,2,2],[1,3,3,1],[2,3,1,1],[1,0,2,0]],[[0,2,2,1],[1,4,3,1],[2,3,1,1],[1,0,2,0]],[[0,3,2,1],[1,3,3,1],[2,3,1,1],[1,1,0,1]],[[0,2,3,1],[1,3,3,1],[2,3,1,1],[1,1,0,1]],[[0,2,2,2],[1,3,3,1],[2,3,1,1],[1,1,0,1]],[[0,2,2,1],[1,4,3,1],[2,3,1,1],[1,1,0,1]],[[0,3,2,1],[1,3,3,1],[2,3,1,1],[1,1,1,0]],[[0,2,3,1],[1,3,3,1],[2,3,1,1],[1,1,1,0]],[[0,2,2,2],[1,3,3,1],[2,3,1,1],[1,1,1,0]],[[0,2,2,1],[1,4,3,1],[2,3,1,1],[1,1,1,0]],[[1,2,2,0],[3,3,1,2],[1,3,1,1],[1,1,2,0]],[[1,3,2,0],[2,3,1,2],[1,3,1,1],[1,1,2,0]],[[2,2,2,0],[2,3,1,2],[1,3,1,1],[1,1,2,0]],[[0,3,2,1],[1,3,3,1],[2,3,1,1],[1,2,0,0]],[[0,2,3,1],[1,3,3,1],[2,3,1,1],[1,2,0,0]],[[0,2,2,2],[1,3,3,1],[2,3,1,1],[1,2,0,0]],[[0,2,2,1],[1,4,3,1],[2,3,1,1],[1,2,0,0]],[[1,2,2,0],[3,3,1,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,0],[2,3,1,2],[1,3,1,1],[0,2,2,0]],[[2,2,2,0],[2,3,1,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,0],[3,3,1,2],[1,3,1,0],[1,1,2,1]],[[1,3,2,0],[2,3,1,2],[1,3,1,0],[1,1,2,1]],[[2,2,2,0],[2,3,1,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,0],[3,3,1,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,0],[2,3,1,2],[1,3,1,0],[0,2,2,1]],[[2,2,2,0],[2,3,1,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,0],[3,3,1,2],[1,3,0,2],[1,1,2,0]],[[1,3,2,0],[2,3,1,2],[1,3,0,2],[1,1,2,0]],[[2,2,2,0],[2,3,1,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,0],[3,3,1,2],[1,3,0,2],[1,1,1,1]],[[1,3,2,0],[2,3,1,2],[1,3,0,2],[1,1,1,1]],[[2,2,2,0],[2,3,1,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,0],[3,3,1,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,0],[2,3,1,2],[1,3,0,2],[1,0,2,1]],[[2,2,2,0],[2,3,1,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,0],[3,3,1,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,0],[2,3,1,2],[1,3,0,2],[0,2,2,0]],[[2,2,2,0],[2,3,1,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,0],[3,3,1,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,0],[2,3,1,2],[1,3,0,2],[0,2,1,1]],[[2,2,2,0],[2,3,1,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,0],[3,3,1,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,0],[2,3,1,2],[1,3,0,2],[0,1,2,1]],[[2,2,2,0],[2,3,1,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,0],[3,3,1,2],[1,3,0,1],[1,1,2,1]],[[1,3,2,0],[2,3,1,2],[1,3,0,1],[1,1,2,1]],[[2,2,2,0],[2,3,1,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,0],[3,3,1,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,0],[2,3,1,2],[1,3,0,1],[0,2,2,1]],[[2,2,2,0],[2,3,1,2],[1,3,0,1],[0,2,2,1]],[[1,2,2,0],[2,4,1,2],[0,3,3,1],[1,1,1,0]],[[1,2,3,0],[2,3,1,2],[0,3,3,1],[1,1,1,0]],[[1,3,2,0],[2,3,1,2],[0,3,3,1],[1,1,1,0]],[[2,2,2,0],[2,3,1,2],[0,3,3,1],[1,1,1,0]],[[1,2,2,0],[2,4,1,2],[0,3,3,1],[1,1,0,1]],[[1,2,3,0],[2,3,1,2],[0,3,3,1],[1,1,0,1]],[[1,3,2,0],[2,3,1,2],[0,3,3,1],[1,1,0,1]],[[2,2,2,0],[2,3,1,2],[0,3,3,1],[1,1,0,1]],[[1,2,2,0],[2,4,1,2],[0,3,3,1],[1,0,2,0]],[[1,2,3,0],[2,3,1,2],[0,3,3,1],[1,0,2,0]],[[1,3,2,0],[2,3,1,2],[0,3,3,1],[1,0,2,0]],[[2,2,2,0],[2,3,1,2],[0,3,3,1],[1,0,2,0]],[[1,2,2,0],[2,4,1,2],[0,3,3,1],[1,0,1,1]],[[1,2,3,0],[2,3,1,2],[0,3,3,1],[1,0,1,1]],[[1,3,2,0],[2,3,1,2],[0,3,3,1],[1,0,1,1]],[[2,2,2,0],[2,3,1,2],[0,3,3,1],[1,0,1,1]],[[1,2,2,0],[2,4,1,2],[0,3,3,1],[0,2,1,0]],[[1,2,3,0],[2,3,1,2],[0,3,3,1],[0,2,1,0]],[[1,3,2,0],[2,3,1,2],[0,3,3,1],[0,2,1,0]],[[2,2,2,0],[2,3,1,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,0],[2,4,1,2],[0,3,3,1],[0,2,0,1]],[[1,2,3,0],[2,3,1,2],[0,3,3,1],[0,2,0,1]],[[1,3,2,0],[2,3,1,2],[0,3,3,1],[0,2,0,1]],[[2,2,2,0],[2,3,1,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,0],[2,4,1,2],[0,3,3,1],[0,1,2,0]],[[1,2,3,0],[2,3,1,2],[0,3,3,1],[0,1,2,0]],[[1,3,2,0],[2,3,1,2],[0,3,3,1],[0,1,2,0]],[[2,2,2,0],[2,3,1,2],[0,3,3,1],[0,1,2,0]],[[1,2,2,0],[2,4,1,2],[0,3,3,1],[0,1,1,1]],[[1,2,3,0],[2,3,1,2],[0,3,3,1],[0,1,1,1]],[[1,3,2,0],[2,3,1,2],[0,3,3,1],[0,1,1,1]],[[2,2,2,0],[2,3,1,2],[0,3,3,1],[0,1,1,1]],[[0,3,2,1],[1,3,3,1],[2,3,2,1],[0,2,0,0]],[[0,2,3,1],[1,3,3,1],[2,3,2,1],[0,2,0,0]],[[0,2,2,2],[1,3,3,1],[2,3,2,1],[0,2,0,0]],[[0,2,2,1],[1,4,3,1],[2,3,2,1],[0,2,0,0]],[[1,2,2,0],[3,3,1,2],[0,3,3,0],[1,2,1,0]],[[1,3,2,0],[2,3,1,2],[0,3,3,0],[1,2,1,0]],[[2,2,2,0],[2,3,1,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,0],[2,4,1,2],[0,3,3,0],[1,1,1,1]],[[1,2,3,0],[2,3,1,2],[0,3,3,0],[1,1,1,1]],[[1,3,2,0],[2,3,1,2],[0,3,3,0],[1,1,1,1]],[[2,2,2,0],[2,3,1,2],[0,3,3,0],[1,1,1,1]],[[1,2,2,0],[2,4,1,2],[0,3,3,0],[1,0,2,1]],[[1,2,3,0],[2,3,1,2],[0,3,3,0],[1,0,2,1]],[[1,3,2,0],[2,3,1,2],[0,3,3,0],[1,0,2,1]],[[2,2,2,0],[2,3,1,2],[0,3,3,0],[1,0,2,1]],[[1,2,2,0],[2,4,1,2],[0,3,3,0],[0,2,1,1]],[[1,2,3,0],[2,3,1,2],[0,3,3,0],[0,2,1,1]],[[0,3,2,1],[1,3,3,1],[2,3,2,1],[1,1,0,0]],[[0,2,3,1],[1,3,3,1],[2,3,2,1],[1,1,0,0]],[[0,2,2,2],[1,3,3,1],[2,3,2,1],[1,1,0,0]],[[0,2,2,1],[1,4,3,1],[2,3,2,1],[1,1,0,0]],[[1,3,2,0],[2,3,1,2],[0,3,3,0],[0,2,1,1]],[[2,2,2,0],[2,3,1,2],[0,3,3,0],[0,2,1,1]],[[1,2,2,0],[2,4,1,2],[0,3,3,0],[0,1,2,1]],[[1,2,3,0],[2,3,1,2],[0,3,3,0],[0,1,2,1]],[[1,3,2,0],[2,3,1,2],[0,3,3,0],[0,1,2,1]],[[2,2,2,0],[2,3,1,2],[0,3,3,0],[0,1,2,1]],[[1,2,2,0],[3,3,1,2],[0,3,2,1],[1,2,1,0]],[[1,3,2,0],[2,3,1,2],[0,3,2,1],[1,2,1,0]],[[2,2,2,0],[2,3,1,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,0],[3,3,1,2],[0,3,2,1],[1,2,0,1]],[[1,3,2,0],[2,3,1,2],[0,3,2,1],[1,2,0,1]],[[2,2,2,0],[2,3,1,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,0],[2,4,1,2],[0,3,2,1],[0,2,2,0]],[[1,2,3,0],[2,3,1,2],[0,3,2,1],[0,2,2,0]],[[1,3,2,0],[2,3,1,2],[0,3,2,1],[0,2,2,0]],[[2,2,2,0],[2,3,1,2],[0,3,2,1],[0,2,2,0]],[[1,2,2,0],[3,3,1,2],[0,3,2,0],[1,2,1,1]],[[1,3,2,0],[2,3,1,2],[0,3,2,0],[1,2,1,1]],[[2,2,2,0],[2,3,1,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,0],[2,4,1,2],[0,3,2,0],[0,2,2,1]],[[1,2,3,0],[2,3,1,2],[0,3,2,0],[0,2,2,1]],[[1,3,2,0],[2,3,1,2],[0,3,2,0],[0,2,2,1]],[[2,2,2,0],[2,3,1,2],[0,3,2,0],[0,2,2,1]],[[1,2,2,0],[3,3,1,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,0],[2,3,1,2],[0,3,1,2],[1,2,1,0]],[[2,2,2,0],[2,3,1,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,0],[3,3,1,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,0],[2,3,1,2],[0,3,1,2],[1,2,0,1]],[[2,2,2,0],[2,3,1,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,0],[3,3,1,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,0],[2,3,1,2],[0,3,1,1],[1,2,2,0]],[[2,2,2,0],[2,3,1,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,0],[3,3,1,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,0],[2,3,1,2],[0,3,1,0],[1,2,2,1]],[[2,2,2,0],[2,3,1,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,0],[3,3,1,2],[0,3,0,2],[1,2,2,0]],[[1,3,2,0],[2,3,1,2],[0,3,0,2],[1,2,2,0]],[[2,2,2,0],[2,3,1,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,0],[3,3,1,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,0],[2,3,1,2],[0,3,0,2],[1,2,1,1]],[[2,2,2,0],[2,3,1,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,0],[2,4,1,2],[0,3,0,2],[0,2,2,1]],[[1,2,3,0],[2,3,1,2],[0,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,3,1,2],[0,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,3,1,2],[0,3,0,2],[0,2,2,1]],[[1,2,2,0],[3,3,1,2],[0,3,0,1],[1,2,2,1]],[[1,3,2,0],[2,3,1,2],[0,3,0,1],[1,2,2,1]],[[2,2,2,0],[2,3,1,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,0],[2,3,1,1],[3,3,3,2],[1,0,0,0]],[[1,2,2,0],[3,3,1,1],[2,3,3,2],[1,0,0,0]],[[1,3,2,0],[2,3,1,1],[2,3,3,2],[1,0,0,0]],[[2,2,2,0],[2,3,1,1],[2,3,3,2],[1,0,0,0]],[[1,2,2,0],[2,3,1,1],[3,3,2,2],[1,0,1,0]],[[1,2,2,0],[3,3,1,1],[2,3,2,2],[1,0,1,0]],[[1,3,2,0],[2,3,1,1],[2,3,2,2],[1,0,1,0]],[[2,2,2,0],[2,3,1,1],[2,3,2,2],[1,0,1,0]],[[1,2,2,0],[2,3,1,1],[3,3,2,2],[1,0,0,1]],[[1,2,2,0],[3,3,1,1],[2,3,2,2],[1,0,0,1]],[[1,3,2,0],[2,3,1,1],[2,3,2,2],[1,0,0,1]],[[2,2,2,0],[2,3,1,1],[2,3,2,2],[1,0,0,1]],[[1,2,2,0],[2,3,1,1],[3,3,2,1],[1,0,1,1]],[[1,2,2,0],[3,3,1,1],[2,3,2,1],[1,0,1,1]],[[1,3,2,0],[2,3,1,1],[2,3,2,1],[1,0,1,1]],[[2,2,2,0],[2,3,1,1],[2,3,2,1],[1,0,1,1]],[[1,2,2,0],[2,3,1,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[2,3,1,1],[3,3,1,2],[1,2,0,0]],[[1,2,2,0],[3,3,1,1],[2,3,1,2],[1,2,0,0]],[[1,3,2,0],[2,3,1,1],[2,3,1,2],[1,2,0,0]],[[2,2,2,0],[2,3,1,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,0],[2,3,1,1],[2,3,1,2],[2,1,1,0]],[[1,2,2,0],[2,3,1,1],[3,3,1,2],[1,1,1,0]],[[1,2,2,0],[3,3,1,1],[2,3,1,2],[1,1,1,0]],[[1,3,2,0],[2,3,1,1],[2,3,1,2],[1,1,1,0]],[[2,2,2,0],[2,3,1,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,0],[2,3,1,1],[2,3,1,2],[2,1,0,1]],[[1,2,2,0],[2,3,1,1],[3,3,1,2],[1,1,0,1]],[[1,2,2,0],[3,3,1,1],[2,3,1,2],[1,1,0,1]],[[1,3,2,0],[2,3,1,1],[2,3,1,2],[1,1,0,1]],[[2,2,2,0],[2,3,1,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,0],[2,3,1,1],[3,3,1,2],[0,2,1,0]],[[1,2,2,0],[3,3,1,1],[2,3,1,2],[0,2,1,0]],[[1,3,2,0],[2,3,1,1],[2,3,1,2],[0,2,1,0]],[[2,2,2,0],[2,3,1,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,3,1,1],[3,3,1,2],[0,2,0,1]],[[1,2,2,0],[3,3,1,1],[2,3,1,2],[0,2,0,1]],[[1,3,2,0],[2,3,1,1],[2,3,1,2],[0,2,0,1]],[[2,2,2,0],[2,3,1,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,0],[2,3,1,1],[2,3,1,1],[2,2,0,1]],[[1,2,2,0],[2,3,1,1],[3,3,1,1],[1,2,0,1]],[[1,2,2,0],[3,3,1,1],[2,3,1,1],[1,2,0,1]],[[1,3,2,0],[2,3,1,1],[2,3,1,1],[1,2,0,1]],[[2,2,2,0],[2,3,1,1],[2,3,1,1],[1,2,0,1]],[[1,2,2,0],[2,3,1,1],[2,3,1,1],[2,1,1,1]],[[1,2,2,0],[2,3,1,1],[3,3,1,1],[1,1,1,1]],[[1,2,2,0],[3,3,1,1],[2,3,1,1],[1,1,1,1]],[[1,3,2,0],[2,3,1,1],[2,3,1,1],[1,1,1,1]],[[2,2,2,0],[2,3,1,1],[2,3,1,1],[1,1,1,1]],[[1,2,2,0],[2,3,1,1],[3,3,1,1],[0,2,1,1]],[[1,2,2,0],[3,3,1,1],[2,3,1,1],[0,2,1,1]],[[1,3,2,0],[2,3,1,1],[2,3,1,1],[0,2,1,1]],[[2,2,2,0],[2,3,1,1],[2,3,1,1],[0,2,1,1]],[[1,2,2,0],[2,3,1,1],[2,3,0,2],[2,2,1,0]],[[1,2,2,0],[2,3,1,1],[3,3,0,2],[1,2,1,0]],[[1,2,2,0],[3,3,1,1],[2,3,0,2],[1,2,1,0]],[[1,3,2,0],[2,3,1,1],[2,3,0,2],[1,2,1,0]],[[2,2,2,0],[2,3,1,1],[2,3,0,2],[1,2,1,0]],[[1,2,2,0],[2,3,1,1],[2,3,0,2],[2,1,2,0]],[[1,2,2,0],[2,3,1,1],[3,3,0,2],[1,1,2,0]],[[1,2,2,0],[3,3,1,1],[2,3,0,2],[1,1,2,0]],[[1,3,2,0],[2,3,1,1],[2,3,0,2],[1,1,2,0]],[[2,2,2,0],[2,3,1,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,0],[2,3,1,1],[3,3,0,2],[0,2,2,0]],[[1,2,2,0],[3,3,1,1],[2,3,0,2],[0,2,2,0]],[[1,3,2,0],[2,3,1,1],[2,3,0,2],[0,2,2,0]],[[2,2,2,0],[2,3,1,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,0],[2,3,1,1],[2,3,0,1],[2,2,1,1]],[[1,2,2,0],[2,3,1,1],[3,3,0,1],[1,2,1,1]],[[1,2,2,0],[3,3,1,1],[2,3,0,1],[1,2,1,1]],[[1,3,2,0],[2,3,1,1],[2,3,0,1],[1,2,1,1]],[[2,2,2,0],[2,3,1,1],[2,3,0,1],[1,2,1,1]],[[1,2,2,0],[2,3,1,1],[2,3,0,1],[2,1,2,1]],[[1,2,2,0],[2,3,1,1],[3,3,0,1],[1,1,2,1]],[[1,2,2,0],[3,3,1,1],[2,3,0,1],[1,1,2,1]],[[1,3,2,0],[2,3,1,1],[2,3,0,1],[1,1,2,1]],[[2,2,2,0],[2,3,1,1],[2,3,0,1],[1,1,2,1]],[[1,2,2,0],[2,3,1,1],[3,3,0,1],[0,2,2,1]],[[1,2,2,0],[3,3,1,1],[2,3,0,1],[0,2,2,1]],[[1,3,2,0],[2,3,1,1],[2,3,0,1],[0,2,2,1]],[[2,2,2,0],[2,3,1,1],[2,3,0,1],[0,2,2,1]],[[1,2,2,0],[2,3,1,1],[2,3,0,0],[1,3,2,1]],[[1,2,2,0],[2,3,1,1],[2,3,0,0],[2,2,2,1]],[[1,2,2,0],[2,3,1,1],[3,3,0,0],[1,2,2,1]],[[1,2,2,0],[3,3,1,1],[2,3,0,0],[1,2,2,1]],[[2,2,2,0],[2,3,1,1],[2,3,0,0],[1,2,2,1]],[[1,2,2,0],[2,3,1,1],[3,2,3,2],[1,1,0,0]],[[1,2,2,0],[3,3,1,1],[2,2,3,2],[1,1,0,0]],[[1,3,2,0],[2,3,1,1],[2,2,3,2],[1,1,0,0]],[[2,2,2,0],[2,3,1,1],[2,2,3,2],[1,1,0,0]],[[1,2,2,0],[3,3,1,1],[2,2,3,2],[0,2,0,0]],[[1,3,2,0],[2,3,1,1],[2,2,3,2],[0,2,0,0]],[[2,2,2,0],[2,3,1,1],[2,2,3,2],[0,2,0,0]],[[1,2,2,0],[2,3,1,1],[2,2,2,2],[2,2,0,0]],[[1,2,2,0],[2,3,1,1],[3,2,2,2],[1,2,0,0]],[[1,2,2,0],[3,3,1,1],[2,2,2,2],[1,2,0,0]],[[1,3,2,0],[2,3,1,1],[2,2,2,2],[1,2,0,0]],[[2,2,2,0],[2,3,1,1],[2,2,2,2],[1,2,0,0]],[[1,2,2,0],[2,3,1,1],[2,2,2,2],[2,1,1,0]],[[1,2,2,0],[2,3,1,1],[3,2,2,2],[1,1,1,0]],[[1,2,2,0],[3,3,1,1],[2,2,2,2],[1,1,1,0]],[[1,3,2,0],[2,3,1,1],[2,2,2,2],[1,1,1,0]],[[2,2,2,0],[2,3,1,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,3,1,1],[2,2,2,2],[2,1,0,1]],[[1,2,2,0],[2,3,1,1],[3,2,2,2],[1,1,0,1]],[[1,2,2,0],[3,3,1,1],[2,2,2,2],[1,1,0,1]],[[1,3,2,0],[2,3,1,1],[2,2,2,2],[1,1,0,1]],[[2,2,2,0],[2,3,1,1],[2,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,3,1,1],[3,2,2,2],[1,0,2,0]],[[1,2,2,0],[3,3,1,1],[2,2,2,2],[1,0,2,0]],[[1,3,2,0],[2,3,1,1],[2,2,2,2],[1,0,2,0]],[[2,2,2,0],[2,3,1,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,3,1,1],[3,2,2,2],[1,0,1,1]],[[1,2,2,0],[3,3,1,1],[2,2,2,2],[1,0,1,1]],[[1,3,2,0],[2,3,1,1],[2,2,2,2],[1,0,1,1]],[[2,2,2,0],[2,3,1,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,0],[2,3,1,1],[3,2,2,2],[0,2,1,0]],[[1,2,2,0],[3,3,1,1],[2,2,2,2],[0,2,1,0]],[[1,3,2,0],[2,3,1,1],[2,2,2,2],[0,2,1,0]],[[2,2,2,0],[2,3,1,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,3,1,1],[3,2,2,2],[0,2,0,1]],[[1,2,2,0],[3,3,1,1],[2,2,2,2],[0,2,0,1]],[[1,3,2,0],[2,3,1,1],[2,2,2,2],[0,2,0,1]],[[2,2,2,0],[2,3,1,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[3,3,1,1],[2,2,2,2],[0,1,2,0]],[[1,3,2,0],[2,3,1,1],[2,2,2,2],[0,1,2,0]],[[2,2,2,0],[2,3,1,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[3,3,1,1],[2,2,2,2],[0,1,1,1]],[[1,3,2,0],[2,3,1,1],[2,2,2,2],[0,1,1,1]],[[2,2,2,0],[2,3,1,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,3,1,1],[2,2,2,1],[2,2,0,1]],[[1,2,2,0],[2,3,1,1],[3,2,2,1],[1,2,0,1]],[[1,2,2,0],[3,3,1,1],[2,2,2,1],[1,2,0,1]],[[1,3,2,0],[2,3,1,1],[2,2,2,1],[1,2,0,1]],[[2,2,2,0],[2,3,1,1],[2,2,2,1],[1,2,0,1]],[[1,2,2,0],[2,3,1,1],[2,2,2,1],[2,1,1,1]],[[1,2,2,0],[2,3,1,1],[3,2,2,1],[1,1,1,1]],[[1,2,2,0],[3,3,1,1],[2,2,2,1],[1,1,1,1]],[[1,3,2,0],[2,3,1,1],[2,2,2,1],[1,1,1,1]],[[2,2,2,0],[2,3,1,1],[2,2,2,1],[1,1,1,1]],[[1,2,2,0],[2,3,1,1],[3,2,2,1],[1,0,2,1]],[[1,2,2,0],[3,3,1,1],[2,2,2,1],[1,0,2,1]],[[1,3,2,0],[2,3,1,1],[2,2,2,1],[1,0,2,1]],[[2,2,2,0],[2,3,1,1],[2,2,2,1],[1,0,2,1]],[[1,2,2,0],[2,3,1,1],[3,2,2,1],[0,2,1,1]],[[1,2,2,0],[3,3,1,1],[2,2,2,1],[0,2,1,1]],[[1,3,2,0],[2,3,1,1],[2,2,2,1],[0,2,1,1]],[[2,2,2,0],[2,3,1,1],[2,2,2,1],[0,2,1,1]],[[1,2,2,0],[3,3,1,1],[2,2,2,1],[0,1,2,1]],[[1,3,2,0],[2,3,1,1],[2,2,2,1],[0,1,2,1]],[[2,2,2,0],[2,3,1,1],[2,2,2,1],[0,1,2,1]],[[1,2,2,0],[2,3,1,1],[2,2,1,2],[2,1,2,0]],[[1,2,2,0],[2,3,1,1],[3,2,1,2],[1,1,2,0]],[[1,2,2,0],[3,3,1,1],[2,2,1,2],[1,1,2,0]],[[1,3,2,0],[2,3,1,1],[2,2,1,2],[1,1,2,0]],[[2,2,2,0],[2,3,1,1],[2,2,1,2],[1,1,2,0]],[[1,2,2,0],[2,3,1,1],[3,2,1,2],[0,2,2,0]],[[1,2,2,0],[3,3,1,1],[2,2,1,2],[0,2,2,0]],[[1,3,2,0],[2,3,1,1],[2,2,1,2],[0,2,2,0]],[[2,2,2,0],[2,3,1,1],[2,2,1,2],[0,2,2,0]],[[1,2,2,0],[2,3,1,1],[2,2,1,1],[2,1,2,1]],[[1,2,2,0],[2,3,1,1],[3,2,1,1],[1,1,2,1]],[[1,2,2,0],[3,3,1,1],[2,2,1,1],[1,1,2,1]],[[1,3,2,0],[2,3,1,1],[2,2,1,1],[1,1,2,1]],[[2,2,2,0],[2,3,1,1],[2,2,1,1],[1,1,2,1]],[[1,2,2,0],[2,3,1,1],[3,2,1,1],[0,2,2,1]],[[1,2,2,0],[3,3,1,1],[2,2,1,1],[0,2,2,1]],[[1,3,2,0],[2,3,1,1],[2,2,1,1],[0,2,2,1]],[[2,2,2,0],[2,3,1,1],[2,2,1,1],[0,2,2,1]],[[1,2,2,0],[2,3,1,1],[2,2,0,2],[1,3,2,0]],[[1,2,2,0],[2,3,1,1],[2,2,0,2],[2,2,2,0]],[[1,2,2,0],[2,3,1,1],[3,2,0,2],[1,2,2,0]],[[1,2,2,0],[3,3,1,1],[2,2,0,2],[1,2,2,0]],[[1,3,2,0],[2,3,1,1],[2,2,0,2],[1,2,2,0]],[[2,2,2,0],[2,3,1,1],[2,2,0,2],[1,2,2,0]],[[1,2,2,0],[2,3,1,1],[2,2,0,2],[2,1,2,1]],[[1,2,2,0],[2,3,1,1],[3,2,0,2],[1,1,2,1]],[[1,2,2,0],[3,3,1,1],[2,2,0,2],[1,1,2,1]],[[1,3,2,0],[2,3,1,1],[2,2,0,2],[1,1,2,1]],[[2,2,2,0],[2,3,1,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,0],[2,3,1,1],[3,2,0,2],[0,2,2,1]],[[1,2,2,0],[3,3,1,1],[2,2,0,2],[0,2,2,1]],[[1,3,2,0],[2,3,1,1],[2,2,0,2],[0,2,2,1]],[[2,2,2,0],[2,3,1,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[2,3,1,1],[2,2,0,1],[1,3,2,1]],[[1,2,2,0],[2,3,1,1],[2,2,0,1],[2,2,2,1]],[[1,2,2,0],[2,3,1,1],[3,2,0,1],[1,2,2,1]],[[1,2,2,0],[3,3,1,1],[2,2,0,1],[1,2,2,1]],[[1,3,2,0],[2,3,1,1],[2,2,0,1],[1,2,2,1]],[[2,2,2,0],[2,3,1,1],[2,2,0,1],[1,2,2,1]],[[1,2,2,0],[2,3,1,1],[2,1,2,2],[2,2,1,0]],[[1,2,2,0],[2,3,1,1],[3,1,2,2],[1,2,1,0]],[[1,2,2,0],[3,3,1,1],[2,1,2,2],[1,2,1,0]],[[1,3,2,0],[2,3,1,1],[2,1,2,2],[1,2,1,0]],[[2,2,2,0],[2,3,1,1],[2,1,2,2],[1,2,1,0]],[[1,2,2,0],[2,3,1,1],[2,1,2,2],[2,2,0,1]],[[1,2,2,0],[2,3,1,1],[3,1,2,2],[1,2,0,1]],[[1,2,2,0],[3,3,1,1],[2,1,2,2],[1,2,0,1]],[[1,3,2,0],[2,3,1,1],[2,1,2,2],[1,2,0,1]],[[2,2,2,0],[2,3,1,1],[2,1,2,2],[1,2,0,1]],[[1,2,2,0],[2,3,1,1],[2,1,2,1],[2,2,1,1]],[[1,2,2,0],[2,3,1,1],[3,1,2,1],[1,2,1,1]],[[1,2,2,0],[3,3,1,1],[2,1,2,1],[1,2,1,1]],[[1,3,2,0],[2,3,1,1],[2,1,2,1],[1,2,1,1]],[[2,2,2,0],[2,3,1,1],[2,1,2,1],[1,2,1,1]],[[1,2,2,0],[2,3,1,1],[2,1,1,2],[1,3,2,0]],[[1,2,2,0],[2,3,1,1],[2,1,1,2],[2,2,2,0]],[[1,2,2,0],[2,3,1,1],[3,1,1,2],[1,2,2,0]],[[1,2,2,0],[3,3,1,1],[2,1,1,2],[1,2,2,0]],[[1,3,2,0],[2,3,1,1],[2,1,1,2],[1,2,2,0]],[[2,2,2,0],[2,3,1,1],[2,1,1,2],[1,2,2,0]],[[1,2,2,0],[2,3,1,1],[2,1,1,1],[1,3,2,1]],[[1,2,2,0],[2,3,1,1],[2,1,1,1],[2,2,2,1]],[[1,2,2,0],[2,3,1,1],[3,1,1,1],[1,2,2,1]],[[1,2,2,0],[3,3,1,1],[2,1,1,1],[1,2,2,1]],[[1,3,2,0],[2,3,1,1],[2,1,1,1],[1,2,2,1]],[[2,2,2,0],[2,3,1,1],[2,1,1,1],[1,2,2,1]],[[1,2,2,0],[2,3,1,1],[2,1,0,2],[1,3,2,1]],[[1,2,2,0],[2,3,1,1],[2,1,0,2],[2,2,2,1]],[[1,2,2,0],[2,3,1,1],[3,1,0,2],[1,2,2,1]],[[1,2,2,0],[3,3,1,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[2,3,1,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[2,3,1,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[3,3,1,1],[1,3,3,2],[1,1,0,0]],[[1,3,2,0],[2,3,1,1],[1,3,3,2],[1,1,0,0]],[[2,2,2,0],[2,3,1,1],[1,3,3,2],[1,1,0,0]],[[1,2,2,0],[3,3,1,1],[1,3,3,2],[0,2,0,0]],[[1,3,2,0],[2,3,1,1],[1,3,3,2],[0,2,0,0]],[[2,2,2,0],[2,3,1,1],[1,3,3,2],[0,2,0,0]],[[1,2,2,0],[3,3,1,1],[1,3,2,2],[1,2,0,0]],[[1,3,2,0],[2,3,1,1],[1,3,2,2],[1,2,0,0]],[[2,2,2,0],[2,3,1,1],[1,3,2,2],[1,2,0,0]],[[1,2,2,0],[3,3,1,1],[1,3,2,2],[1,1,1,0]],[[1,3,2,0],[2,3,1,1],[1,3,2,2],[1,1,1,0]],[[2,2,2,0],[2,3,1,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[3,3,1,1],[1,3,2,2],[1,1,0,1]],[[1,3,2,0],[2,3,1,1],[1,3,2,2],[1,1,0,1]],[[2,2,2,0],[2,3,1,1],[1,3,2,2],[1,1,0,1]],[[1,2,2,0],[3,3,1,1],[1,3,2,2],[1,0,2,0]],[[1,3,2,0],[2,3,1,1],[1,3,2,2],[1,0,2,0]],[[2,2,2,0],[2,3,1,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[3,3,1,1],[1,3,2,2],[1,0,1,1]],[[1,3,2,0],[2,3,1,1],[1,3,2,2],[1,0,1,1]],[[2,2,2,0],[2,3,1,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,0],[3,3,1,1],[1,3,2,2],[0,2,1,0]],[[1,3,2,0],[2,3,1,1],[1,3,2,2],[0,2,1,0]],[[2,2,2,0],[2,3,1,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[3,3,1,1],[1,3,2,2],[0,2,0,1]],[[1,3,2,0],[2,3,1,1],[1,3,2,2],[0,2,0,1]],[[2,2,2,0],[2,3,1,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[3,3,1,1],[1,3,2,2],[0,1,2,0]],[[1,3,2,0],[2,3,1,1],[1,3,2,2],[0,1,2,0]],[[2,2,2,0],[2,3,1,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[3,3,1,1],[1,3,2,2],[0,1,1,1]],[[1,3,2,0],[2,3,1,1],[1,3,2,2],[0,1,1,1]],[[2,2,2,0],[2,3,1,1],[1,3,2,2],[0,1,1,1]],[[1,2,2,0],[3,3,1,1],[1,3,2,1],[1,2,0,1]],[[1,3,2,0],[2,3,1,1],[1,3,2,1],[1,2,0,1]],[[2,2,2,0],[2,3,1,1],[1,3,2,1],[1,2,0,1]],[[1,2,2,0],[3,3,1,1],[1,3,2,1],[1,1,1,1]],[[1,3,2,0],[2,3,1,1],[1,3,2,1],[1,1,1,1]],[[2,2,2,0],[2,3,1,1],[1,3,2,1],[1,1,1,1]],[[1,2,2,0],[3,3,1,1],[1,3,2,1],[1,0,2,1]],[[1,3,2,0],[2,3,1,1],[1,3,2,1],[1,0,2,1]],[[2,2,2,0],[2,3,1,1],[1,3,2,1],[1,0,2,1]],[[1,2,2,0],[3,3,1,1],[1,3,2,1],[0,2,1,1]],[[1,3,2,0],[2,3,1,1],[1,3,2,1],[0,2,1,1]],[[2,2,2,0],[2,3,1,1],[1,3,2,1],[0,2,1,1]],[[1,2,2,0],[3,3,1,1],[1,3,2,1],[0,1,2,1]],[[1,3,2,0],[2,3,1,1],[1,3,2,1],[0,1,2,1]],[[2,2,2,0],[2,3,1,1],[1,3,2,1],[0,1,2,1]],[[1,2,2,0],[3,3,1,1],[1,3,1,2],[1,1,2,0]],[[1,3,2,0],[2,3,1,1],[1,3,1,2],[1,1,2,0]],[[2,2,2,0],[2,3,1,1],[1,3,1,2],[1,1,2,0]],[[1,2,2,0],[3,3,1,1],[1,3,1,2],[0,2,2,0]],[[1,3,2,0],[2,3,1,1],[1,3,1,2],[0,2,2,0]],[[2,2,2,0],[2,3,1,1],[1,3,1,2],[0,2,2,0]],[[1,2,2,0],[3,3,1,1],[1,3,1,1],[1,1,2,1]],[[1,3,2,0],[2,3,1,1],[1,3,1,1],[1,1,2,1]],[[2,2,2,0],[2,3,1,1],[1,3,1,1],[1,1,2,1]],[[1,2,2,0],[3,3,1,1],[1,3,1,1],[0,2,2,1]],[[1,3,2,0],[2,3,1,1],[1,3,1,1],[0,2,2,1]],[[2,2,2,0],[2,3,1,1],[1,3,1,1],[0,2,2,1]],[[1,2,2,0],[3,3,1,1],[1,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,3,1,1],[1,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,3,1,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,3,1,1],[1,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,3,1,1],[1,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,3,1,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,4,1,1],[0,3,3,2],[1,1,1,0]],[[1,2,3,0],[2,3,1,1],[0,3,3,2],[1,1,1,0]],[[1,3,2,0],[2,3,1,1],[0,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,3,1,1],[0,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,4,1,1],[0,3,3,2],[1,1,0,1]],[[1,2,3,0],[2,3,1,1],[0,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,3,1,1],[0,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,3,1,1],[0,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,4,1,1],[0,3,3,2],[1,0,2,0]],[[1,2,3,0],[2,3,1,1],[0,3,3,2],[1,0,2,0]],[[1,3,2,0],[2,3,1,1],[0,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,3,1,1],[0,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,4,1,1],[0,3,3,2],[1,0,1,1]],[[1,2,3,0],[2,3,1,1],[0,3,3,2],[1,0,1,1]],[[1,3,2,0],[2,3,1,1],[0,3,3,2],[1,0,1,1]],[[2,2,2,0],[2,3,1,1],[0,3,3,2],[1,0,1,1]],[[1,2,2,0],[2,4,1,1],[0,3,3,2],[0,2,1,0]],[[1,2,3,0],[2,3,1,1],[0,3,3,2],[0,2,1,0]],[[1,3,2,0],[2,3,1,1],[0,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,3,1,1],[0,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,4,1,1],[0,3,3,2],[0,2,0,1]],[[1,2,3,0],[2,3,1,1],[0,3,3,2],[0,2,0,1]],[[1,3,2,0],[2,3,1,1],[0,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,3,1,1],[0,3,3,2],[0,2,0,1]],[[1,2,2,0],[2,4,1,1],[0,3,3,2],[0,1,2,0]],[[1,2,3,0],[2,3,1,1],[0,3,3,2],[0,1,2,0]],[[1,3,2,0],[2,3,1,1],[0,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,3,1,1],[0,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,4,1,1],[0,3,3,2],[0,1,1,1]],[[1,2,3,0],[2,3,1,1],[0,3,3,2],[0,1,1,1]],[[1,3,2,0],[2,3,1,1],[0,3,3,2],[0,1,1,1]],[[2,2,2,0],[2,3,1,1],[0,3,3,2],[0,1,1,1]],[[1,2,2,0],[2,4,1,1],[0,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,3,1,1],[0,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,3,1,1],[0,3,3,1],[1,1,1,1]],[[1,2,2,0],[2,4,1,1],[0,3,3,1],[1,0,2,1]],[[1,2,3,0],[2,3,1,1],[0,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,3,1,1],[0,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,3,1,1],[0,3,3,1],[1,0,2,1]],[[1,2,2,0],[2,4,1,1],[0,3,3,1],[0,2,1,1]],[[1,2,3,0],[2,3,1,1],[0,3,3,1],[0,2,1,1]],[[1,3,2,0],[2,3,1,1],[0,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,3,1,1],[0,3,3,1],[0,2,1,1]],[[1,2,2,0],[2,4,1,1],[0,3,3,1],[0,1,2,1]],[[1,2,3,0],[2,3,1,1],[0,3,3,1],[0,1,2,1]],[[1,3,2,0],[2,3,1,1],[0,3,3,1],[0,1,2,1]],[[2,2,2,0],[2,3,1,1],[0,3,3,1],[0,1,2,1]],[[1,2,2,0],[2,4,1,1],[0,3,3,0],[0,2,2,1]],[[1,3,2,0],[2,3,1,1],[0,3,3,0],[0,2,2,1]],[[2,2,2,0],[2,3,1,1],[0,3,3,0],[0,2,2,1]],[[1,2,2,0],[3,3,1,1],[0,3,2,2],[1,2,1,0]],[[1,3,2,0],[2,3,1,1],[0,3,2,2],[1,2,1,0]],[[2,2,2,0],[2,3,1,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[3,3,1,1],[0,3,2,2],[1,2,0,1]],[[1,3,2,0],[2,3,1,1],[0,3,2,2],[1,2,0,1]],[[2,2,2,0],[2,3,1,1],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[2,4,1,1],[0,3,2,2],[0,2,2,0]],[[1,2,3,0],[2,3,1,1],[0,3,2,2],[0,2,2,0]],[[1,3,2,0],[2,3,1,1],[0,3,2,2],[0,2,2,0]],[[2,2,2,0],[2,3,1,1],[0,3,2,2],[0,2,2,0]],[[1,2,2,0],[3,3,1,1],[0,3,2,1],[1,2,1,1]],[[1,3,2,0],[2,3,1,1],[0,3,2,1],[1,2,1,1]],[[2,2,2,0],[2,3,1,1],[0,3,2,1],[1,2,1,1]],[[1,2,2,0],[2,4,1,1],[0,3,2,1],[0,2,2,1]],[[1,2,3,0],[2,3,1,1],[0,3,2,1],[0,2,2,1]],[[1,3,2,0],[2,3,1,1],[0,3,2,1],[0,2,2,1]],[[2,2,2,0],[2,3,1,1],[0,3,2,1],[0,2,2,1]],[[1,2,2,0],[3,3,1,1],[0,3,1,2],[1,2,2,0]],[[1,3,2,0],[2,3,1,1],[0,3,1,2],[1,2,2,0]],[[2,2,2,0],[2,3,1,1],[0,3,1,2],[1,2,2,0]],[[1,2,2,0],[2,4,1,1],[0,3,1,2],[0,2,2,1]],[[1,2,3,0],[2,3,1,1],[0,3,1,2],[0,2,2,1]],[[1,3,2,0],[2,3,1,1],[0,3,1,2],[0,2,2,1]],[[2,2,2,0],[2,3,1,1],[0,3,1,2],[0,2,2,1]],[[1,2,2,0],[3,3,1,1],[0,3,1,1],[1,2,2,1]],[[1,3,2,0],[2,3,1,1],[0,3,1,1],[1,2,2,1]],[[2,2,2,0],[2,3,1,1],[0,3,1,1],[1,2,2,1]],[[1,2,2,0],[3,3,1,1],[0,3,0,2],[1,2,2,1]],[[1,3,2,0],[2,3,1,1],[0,3,0,2],[1,2,2,1]],[[2,2,2,0],[2,3,1,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[2,3,1,0],[2,3,0,2],[1,3,2,0]],[[1,2,2,0],[2,3,1,0],[2,3,0,2],[2,2,2,0]],[[1,2,2,0],[2,3,1,0],[3,3,0,2],[1,2,2,0]],[[1,2,2,0],[3,3,1,0],[2,3,0,2],[1,2,2,0]],[[2,2,2,0],[2,3,1,0],[2,3,0,2],[1,2,2,0]],[[1,2,2,0],[2,3,1,0],[2,3,0,1],[1,3,2,1]],[[1,2,2,0],[2,3,1,0],[2,3,0,1],[2,2,2,1]],[[1,2,2,0],[2,3,1,0],[3,3,0,1],[1,2,2,1]],[[1,2,2,0],[3,3,1,0],[2,3,0,1],[1,2,2,1]],[[2,2,2,0],[2,3,1,0],[2,3,0,1],[1,2,2,1]],[[0,3,2,1],[1,3,3,2],[1,3,0,0],[1,2,2,0]],[[0,2,3,1],[1,3,3,2],[1,3,0,0],[1,2,2,0]],[[0,2,2,2],[1,3,3,2],[1,3,0,0],[1,2,2,0]],[[0,2,2,1],[1,4,3,2],[1,3,0,0],[1,2,2,0]],[[0,3,2,1],[1,3,3,2],[1,3,0,1],[1,2,0,1]],[[0,2,3,1],[1,3,3,2],[1,3,0,1],[1,2,0,1]],[[0,2,2,2],[1,3,3,2],[1,3,0,1],[1,2,0,1]],[[0,2,2,1],[1,4,3,2],[1,3,0,1],[1,2,0,1]],[[0,3,2,1],[1,3,3,2],[1,3,0,1],[1,2,1,0]],[[0,2,3,1],[1,3,3,2],[1,3,0,1],[1,2,1,0]],[[0,2,2,2],[1,3,3,2],[1,3,0,1],[1,2,1,0]],[[0,2,2,1],[1,4,3,2],[1,3,0,1],[1,2,1,0]],[[0,3,2,1],[1,3,3,2],[1,3,1,0],[1,2,0,1]],[[0,2,3,1],[1,3,3,2],[1,3,1,0],[1,2,0,1]],[[0,2,2,2],[1,3,3,2],[1,3,1,0],[1,2,0,1]],[[0,2,2,1],[1,4,3,2],[1,3,1,0],[1,2,0,1]],[[0,3,2,1],[1,3,3,2],[1,3,1,0],[1,2,1,0]],[[0,2,3,1],[1,3,3,2],[1,3,1,0],[1,2,1,0]],[[0,2,2,2],[1,3,3,2],[1,3,1,0],[1,2,1,0]],[[0,2,2,1],[1,4,3,2],[1,3,1,0],[1,2,1,0]],[[1,2,2,0],[2,4,1,0],[0,3,3,2],[1,0,2,1]],[[1,3,2,0],[2,3,1,0],[0,3,3,2],[1,0,2,1]],[[2,2,2,0],[2,3,1,0],[0,3,3,2],[1,0,2,1]],[[1,2,2,0],[2,4,1,0],[0,3,3,2],[0,2,1,1]],[[1,3,2,0],[2,3,1,0],[0,3,3,2],[0,2,1,1]],[[2,2,2,0],[2,3,1,0],[0,3,3,2],[0,2,1,1]],[[1,2,2,0],[2,4,1,0],[0,3,3,2],[0,1,2,1]],[[1,3,2,0],[2,3,1,0],[0,3,3,2],[0,1,2,1]],[[2,2,2,0],[2,3,1,0],[0,3,3,2],[0,1,2,1]],[[1,2,2,0],[2,4,1,0],[0,3,2,2],[0,2,2,1]],[[1,3,2,0],[2,3,1,0],[0,3,2,2],[0,2,2,1]],[[2,2,2,0],[2,3,1,0],[0,3,2,2],[0,2,2,1]],[[1,2,2,0],[2,3,0,2],[3,3,3,1],[1,0,1,0]],[[1,2,2,0],[3,3,0,2],[2,3,3,1],[1,0,1,0]],[[1,3,2,0],[2,3,0,2],[2,3,3,1],[1,0,1,0]],[[2,2,2,0],[2,3,0,2],[2,3,3,1],[1,0,1,0]],[[1,2,2,0],[2,3,0,2],[3,3,3,1],[1,0,0,1]],[[1,2,2,0],[3,3,0,2],[2,3,3,1],[1,0,0,1]],[[1,3,2,0],[2,3,0,2],[2,3,3,1],[1,0,0,1]],[[2,2,2,0],[2,3,0,2],[2,3,3,1],[1,0,0,1]],[[1,2,2,0],[2,3,0,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,0],[2,3,0,2],[3,3,3,0],[1,2,0,0]],[[1,2,2,0],[3,3,0,2],[2,3,3,0],[1,2,0,0]],[[1,3,2,0],[2,3,0,2],[2,3,3,0],[1,2,0,0]],[[2,2,2,0],[2,3,0,2],[2,3,3,0],[1,2,0,0]],[[1,2,2,0],[2,3,0,2],[2,3,3,0],[2,1,1,0]],[[1,2,2,0],[2,3,0,2],[3,3,3,0],[1,1,1,0]],[[1,2,2,0],[3,3,0,2],[2,3,3,0],[1,1,1,0]],[[1,3,2,0],[2,3,0,2],[2,3,3,0],[1,1,1,0]],[[2,2,2,0],[2,3,0,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,0],[2,3,0,2],[3,3,3,0],[1,0,1,1]],[[1,2,2,0],[3,3,0,2],[2,3,3,0],[1,0,1,1]],[[1,3,2,0],[2,3,0,2],[2,3,3,0],[1,0,1,1]],[[2,2,2,0],[2,3,0,2],[2,3,3,0],[1,0,1,1]],[[1,2,2,0],[2,3,0,2],[3,3,3,0],[0,2,1,0]],[[1,2,2,0],[3,3,0,2],[2,3,3,0],[0,2,1,0]],[[1,3,2,0],[2,3,0,2],[2,3,3,0],[0,2,1,0]],[[2,2,2,0],[2,3,0,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,0],[2,3,0,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,0],[2,3,0,2],[3,3,2,1],[1,2,0,0]],[[1,2,2,0],[3,3,0,2],[2,3,2,1],[1,2,0,0]],[[1,3,2,0],[2,3,0,2],[2,3,2,1],[1,2,0,0]],[[2,2,2,0],[2,3,0,2],[2,3,2,1],[1,2,0,0]],[[1,2,2,0],[2,3,0,2],[2,3,2,1],[2,1,1,0]],[[1,2,2,0],[2,3,0,2],[3,3,2,1],[1,1,1,0]],[[1,2,2,0],[3,3,0,2],[2,3,2,1],[1,1,1,0]],[[1,3,2,0],[2,3,0,2],[2,3,2,1],[1,1,1,0]],[[2,2,2,0],[2,3,0,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,0],[2,3,0,2],[2,3,2,1],[2,1,0,1]],[[1,2,2,0],[2,3,0,2],[3,3,2,1],[1,1,0,1]],[[1,2,2,0],[3,3,0,2],[2,3,2,1],[1,1,0,1]],[[1,3,2,0],[2,3,0,2],[2,3,2,1],[1,1,0,1]],[[2,2,2,0],[2,3,0,2],[2,3,2,1],[1,1,0,1]],[[1,2,2,0],[2,3,0,2],[3,3,2,1],[0,2,1,0]],[[1,2,2,0],[3,3,0,2],[2,3,2,1],[0,2,1,0]],[[1,3,2,0],[2,3,0,2],[2,3,2,1],[0,2,1,0]],[[2,2,2,0],[2,3,0,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,0],[2,3,0,2],[3,3,2,1],[0,2,0,1]],[[1,2,2,0],[3,3,0,2],[2,3,2,1],[0,2,0,1]],[[1,3,2,0],[2,3,0,2],[2,3,2,1],[0,2,0,1]],[[2,2,2,0],[2,3,0,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,0],[2,3,0,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,0],[2,3,0,2],[3,3,2,0],[1,2,0,1]],[[1,2,2,0],[3,3,0,2],[2,3,2,0],[1,2,0,1]],[[1,3,2,0],[2,3,0,2],[2,3,2,0],[1,2,0,1]],[[2,2,2,0],[2,3,0,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,0],[2,3,0,2],[2,3,2,0],[2,1,1,1]],[[1,2,2,0],[2,3,0,2],[3,3,2,0],[1,1,1,1]],[[1,2,2,0],[3,3,0,2],[2,3,2,0],[1,1,1,1]],[[1,3,2,0],[2,3,0,2],[2,3,2,0],[1,1,1,1]],[[2,2,2,0],[2,3,0,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,0],[2,3,0,2],[3,3,2,0],[0,2,1,1]],[[1,2,2,0],[3,3,0,2],[2,3,2,0],[0,2,1,1]],[[1,3,2,0],[2,3,0,2],[2,3,2,0],[0,2,1,1]],[[2,2,2,0],[2,3,0,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,0],[2,3,0,2],[2,3,1,1],[2,2,1,0]],[[1,2,2,0],[2,3,0,2],[3,3,1,1],[1,2,1,0]],[[1,2,2,0],[3,3,0,2],[2,3,1,1],[1,2,1,0]],[[1,3,2,0],[2,3,0,2],[2,3,1,1],[1,2,1,0]],[[2,2,2,0],[2,3,0,2],[2,3,1,1],[1,2,1,0]],[[1,2,2,0],[2,3,0,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,0],[2,3,0,2],[3,3,1,1],[1,1,2,0]],[[1,2,2,0],[3,3,0,2],[2,3,1,1],[1,1,2,0]],[[1,3,2,0],[2,3,0,2],[2,3,1,1],[1,1,2,0]],[[2,2,2,0],[2,3,0,2],[2,3,1,1],[1,1,2,0]],[[1,2,2,0],[2,3,0,2],[3,3,1,1],[0,2,2,0]],[[1,2,2,0],[3,3,0,2],[2,3,1,1],[0,2,2,0]],[[1,3,2,0],[2,3,0,2],[2,3,1,1],[0,2,2,0]],[[2,2,2,0],[2,3,0,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,0],[2,3,0,2],[2,3,1,0],[2,2,2,0]],[[1,2,2,0],[2,3,0,2],[3,3,1,0],[1,2,2,0]],[[1,2,2,0],[3,3,0,2],[2,3,1,0],[1,2,2,0]],[[1,3,2,0],[2,3,0,2],[2,3,1,0],[1,2,2,0]],[[2,2,2,0],[2,3,0,2],[2,3,1,0],[1,2,2,0]],[[1,2,2,0],[2,3,0,2],[2,3,1,0],[2,2,1,1]],[[1,2,2,0],[2,3,0,2],[3,3,1,0],[1,2,1,1]],[[1,2,2,0],[3,3,0,2],[2,3,1,0],[1,2,1,1]],[[1,3,2,0],[2,3,0,2],[2,3,1,0],[1,2,1,1]],[[2,2,2,0],[2,3,0,2],[2,3,1,0],[1,2,1,1]],[[1,2,2,0],[2,3,0,2],[2,3,1,0],[2,1,2,1]],[[1,2,2,0],[2,3,0,2],[3,3,1,0],[1,1,2,1]],[[1,2,2,0],[3,3,0,2],[2,3,1,0],[1,1,2,1]],[[1,3,2,0],[2,3,0,2],[2,3,1,0],[1,1,2,1]],[[2,2,2,0],[2,3,0,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,0],[2,3,0,2],[3,3,1,0],[0,2,2,1]],[[1,2,2,0],[3,3,0,2],[2,3,1,0],[0,2,2,1]],[[1,3,2,0],[2,3,0,2],[2,3,1,0],[0,2,2,1]],[[2,2,2,0],[2,3,0,2],[2,3,1,0],[0,2,2,1]],[[1,2,2,0],[2,3,0,2],[2,2,3,1],[2,2,0,0]],[[1,2,2,0],[2,3,0,2],[3,2,3,1],[1,2,0,0]],[[1,2,2,0],[3,3,0,2],[2,2,3,1],[1,2,0,0]],[[1,3,2,0],[2,3,0,2],[2,2,3,1],[1,2,0,0]],[[2,2,2,0],[2,3,0,2],[2,2,3,1],[1,2,0,0]],[[1,2,2,0],[2,3,0,2],[2,2,3,1],[2,1,1,0]],[[1,2,2,0],[2,3,0,2],[3,2,3,1],[1,1,1,0]],[[1,2,2,0],[3,3,0,2],[2,2,3,1],[1,1,1,0]],[[1,3,2,0],[2,3,0,2],[2,2,3,1],[1,1,1,0]],[[2,2,2,0],[2,3,0,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,3,0,2],[2,2,3,1],[2,1,0,1]],[[1,2,2,0],[2,3,0,2],[3,2,3,1],[1,1,0,1]],[[1,2,2,0],[3,3,0,2],[2,2,3,1],[1,1,0,1]],[[1,3,2,0],[2,3,0,2],[2,2,3,1],[1,1,0,1]],[[2,2,2,0],[2,3,0,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,0],[2,3,0,2],[2,2,3,1],[2,0,2,0]],[[1,2,2,0],[2,3,0,2],[3,2,3,1],[1,0,2,0]],[[1,2,2,0],[3,3,0,2],[2,2,3,1],[1,0,2,0]],[[1,3,2,0],[2,3,0,2],[2,2,3,1],[1,0,2,0]],[[2,2,2,0],[2,3,0,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,0],[2,3,0,2],[3,2,3,1],[1,0,1,1]],[[1,2,2,0],[3,3,0,2],[2,2,3,1],[1,0,1,1]],[[1,3,2,0],[2,3,0,2],[2,2,3,1],[1,0,1,1]],[[2,2,2,0],[2,3,0,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,0],[2,3,0,2],[3,2,3,1],[0,2,1,0]],[[1,2,2,0],[3,3,0,2],[2,2,3,1],[0,2,1,0]],[[1,3,2,0],[2,3,0,2],[2,2,3,1],[0,2,1,0]],[[2,2,2,0],[2,3,0,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,3,0,2],[3,2,3,1],[0,2,0,1]],[[1,2,2,0],[3,3,0,2],[2,2,3,1],[0,2,0,1]],[[1,3,2,0],[2,3,0,2],[2,2,3,1],[0,2,0,1]],[[2,2,2,0],[2,3,0,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,0],[2,3,0,2],[3,2,3,1],[0,1,2,0]],[[1,2,2,0],[3,3,0,2],[2,2,3,1],[0,1,2,0]],[[1,3,2,0],[2,3,0,2],[2,2,3,1],[0,1,2,0]],[[2,2,2,0],[2,3,0,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,0],[3,3,0,2],[2,2,3,1],[0,1,1,1]],[[1,3,2,0],[2,3,0,2],[2,2,3,1],[0,1,1,1]],[[2,2,2,0],[2,3,0,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,0],[2,3,0,2],[2,2,3,0],[2,2,0,1]],[[1,2,2,0],[2,3,0,2],[3,2,3,0],[1,2,0,1]],[[1,2,2,0],[3,3,0,2],[2,2,3,0],[1,2,0,1]],[[1,3,2,0],[2,3,0,2],[2,2,3,0],[1,2,0,1]],[[2,2,2,0],[2,3,0,2],[2,2,3,0],[1,2,0,1]],[[1,2,2,0],[2,3,0,2],[2,2,3,0],[2,1,1,1]],[[1,2,2,0],[2,3,0,2],[3,2,3,0],[1,1,1,1]],[[1,2,2,0],[3,3,0,2],[2,2,3,0],[1,1,1,1]],[[1,3,2,0],[2,3,0,2],[2,2,3,0],[1,1,1,1]],[[2,2,2,0],[2,3,0,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,0],[2,3,0,2],[2,2,3,0],[2,0,2,1]],[[1,2,2,0],[2,3,0,2],[3,2,3,0],[1,0,2,1]],[[1,2,2,0],[3,3,0,2],[2,2,3,0],[1,0,2,1]],[[1,3,2,0],[2,3,0,2],[2,2,3,0],[1,0,2,1]],[[2,2,2,0],[2,3,0,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,0],[2,3,0,2],[3,2,3,0],[0,2,1,1]],[[1,2,2,0],[3,3,0,2],[2,2,3,0],[0,2,1,1]],[[1,3,2,0],[2,3,0,2],[2,2,3,0],[0,2,1,1]],[[2,2,2,0],[2,3,0,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,0],[2,3,0,2],[3,2,3,0],[0,1,2,1]],[[1,2,2,0],[3,3,0,2],[2,2,3,0],[0,1,2,1]],[[1,3,2,0],[2,3,0,2],[2,2,3,0],[0,1,2,1]],[[2,2,2,0],[2,3,0,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,0],[2,3,0,2],[2,2,2,1],[2,1,2,0]],[[1,2,2,0],[2,3,0,2],[3,2,2,1],[1,1,2,0]],[[1,2,2,0],[3,3,0,2],[2,2,2,1],[1,1,2,0]],[[1,3,2,0],[2,3,0,2],[2,2,2,1],[1,1,2,0]],[[2,2,2,0],[2,3,0,2],[2,2,2,1],[1,1,2,0]],[[1,2,2,0],[2,3,0,2],[3,2,2,1],[0,2,2,0]],[[1,2,2,0],[3,3,0,2],[2,2,2,1],[0,2,2,0]],[[1,3,2,0],[2,3,0,2],[2,2,2,1],[0,2,2,0]],[[2,2,2,0],[2,3,0,2],[2,2,2,1],[0,2,2,0]],[[1,2,2,0],[2,3,0,2],[2,2,2,0],[2,1,2,1]],[[1,2,2,0],[2,3,0,2],[3,2,2,0],[1,1,2,1]],[[1,2,2,0],[3,3,0,2],[2,2,2,0],[1,1,2,1]],[[1,3,2,0],[2,3,0,2],[2,2,2,0],[1,1,2,1]],[[2,2,2,0],[2,3,0,2],[2,2,2,0],[1,1,2,1]],[[1,2,2,0],[2,3,0,2],[3,2,2,0],[0,2,2,1]],[[1,2,2,0],[3,3,0,2],[2,2,2,0],[0,2,2,1]],[[1,3,2,0],[2,3,0,2],[2,2,2,0],[0,2,2,1]],[[2,2,2,0],[2,3,0,2],[2,2,2,0],[0,2,2,1]],[[1,2,2,0],[2,3,0,2],[2,2,1,1],[1,3,2,0]],[[1,2,2,0],[2,3,0,2],[2,2,1,1],[2,2,2,0]],[[1,2,2,0],[2,3,0,2],[3,2,1,1],[1,2,2,0]],[[1,2,2,0],[3,3,0,2],[2,2,1,1],[1,2,2,0]],[[1,3,2,0],[2,3,0,2],[2,2,1,1],[1,2,2,0]],[[2,2,2,0],[2,3,0,2],[2,2,1,1],[1,2,2,0]],[[1,2,2,0],[2,3,0,2],[2,2,1,0],[1,3,2,1]],[[1,2,2,0],[2,3,0,2],[2,2,1,0],[2,2,2,1]],[[1,2,2,0],[2,3,0,2],[3,2,1,0],[1,2,2,1]],[[1,2,2,0],[3,3,0,2],[2,2,1,0],[1,2,2,1]],[[1,3,2,0],[2,3,0,2],[2,2,1,0],[1,2,2,1]],[[2,2,2,0],[2,3,0,2],[2,2,1,0],[1,2,2,1]],[[1,2,2,0],[2,3,0,2],[2,2,0,2],[2,1,2,1]],[[1,2,2,0],[2,3,0,2],[3,2,0,2],[1,1,2,1]],[[1,2,2,0],[3,3,0,2],[2,2,0,2],[1,1,2,1]],[[1,3,2,0],[2,3,0,2],[2,2,0,2],[1,1,2,1]],[[2,2,2,0],[2,3,0,2],[2,2,0,2],[1,1,2,1]],[[1,2,2,0],[2,3,0,2],[3,2,0,2],[0,2,2,1]],[[1,2,2,0],[3,3,0,2],[2,2,0,2],[0,2,2,1]],[[1,3,2,0],[2,3,0,2],[2,2,0,2],[0,2,2,1]],[[2,2,2,0],[2,3,0,2],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[2,3,0,2],[2,1,3,1],[1,3,1,0]],[[1,2,2,0],[2,3,0,2],[2,1,3,1],[2,2,1,0]],[[1,2,2,0],[2,3,0,2],[3,1,3,1],[1,2,1,0]],[[1,2,2,0],[3,3,0,2],[2,1,3,1],[1,2,1,0]],[[1,3,2,0],[2,3,0,2],[2,1,3,1],[1,2,1,0]],[[2,2,2,0],[2,3,0,2],[2,1,3,1],[1,2,1,0]],[[1,2,2,0],[2,3,0,2],[2,1,3,1],[2,2,0,1]],[[1,2,2,0],[2,3,0,2],[3,1,3,1],[1,2,0,1]],[[1,2,2,0],[3,3,0,2],[2,1,3,1],[1,2,0,1]],[[1,3,2,0],[2,3,0,2],[2,1,3,1],[1,2,0,1]],[[2,2,2,0],[2,3,0,2],[2,1,3,1],[1,2,0,1]],[[1,2,2,0],[2,3,0,2],[2,1,3,0],[1,3,1,1]],[[1,2,2,0],[2,3,0,2],[2,1,3,0],[2,2,1,1]],[[1,2,2,0],[2,3,0,2],[3,1,3,0],[1,2,1,1]],[[1,2,2,0],[3,3,0,2],[2,1,3,0],[1,2,1,1]],[[1,3,2,0],[2,3,0,2],[2,1,3,0],[1,2,1,1]],[[2,2,2,0],[2,3,0,2],[2,1,3,0],[1,2,1,1]],[[1,2,2,0],[2,3,0,2],[2,1,2,1],[1,3,2,0]],[[1,2,2,0],[2,3,0,2],[2,1,2,1],[2,2,2,0]],[[1,2,2,0],[2,3,0,2],[3,1,2,1],[1,2,2,0]],[[1,2,2,0],[3,3,0,2],[2,1,2,1],[1,2,2,0]],[[1,3,2,0],[2,3,0,2],[2,1,2,1],[1,2,2,0]],[[2,2,2,0],[2,3,0,2],[2,1,2,1],[1,2,2,0]],[[1,2,2,0],[2,3,0,2],[2,1,2,0],[1,2,3,1]],[[1,2,2,0],[2,3,0,2],[2,1,2,0],[1,3,2,1]],[[1,2,2,0],[2,3,0,2],[2,1,2,0],[2,2,2,1]],[[1,2,2,0],[2,3,0,2],[3,1,2,0],[1,2,2,1]],[[1,2,2,0],[3,3,0,2],[2,1,2,0],[1,2,2,1]],[[1,3,2,0],[2,3,0,2],[2,1,2,0],[1,2,2,1]],[[2,2,2,0],[2,3,0,2],[2,1,2,0],[1,2,2,1]],[[1,2,2,0],[2,3,0,2],[2,1,0,2],[1,3,2,1]],[[1,2,2,0],[2,3,0,2],[2,1,0,2],[2,2,2,1]],[[1,2,2,0],[2,3,0,2],[3,1,0,2],[1,2,2,1]],[[1,2,2,0],[3,3,0,2],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[2,3,0,2],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[2,3,0,2],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[2,3,0,2],[2,0,3,1],[1,3,2,0]],[[1,2,2,0],[2,3,0,2],[2,0,3,1],[2,2,2,0]],[[1,2,2,0],[2,3,0,2],[3,0,3,1],[1,2,2,0]],[[1,2,2,0],[3,3,0,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,0],[2,3,0,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,0],[2,3,0,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,0],[2,3,0,2],[2,0,3,0],[1,2,3,1]],[[1,2,2,0],[2,3,0,2],[2,0,3,0],[1,3,2,1]],[[1,2,2,0],[2,3,0,2],[2,0,3,0],[2,2,2,1]],[[1,2,2,0],[2,3,0,2],[3,0,3,0],[1,2,2,1]],[[1,2,2,0],[3,3,0,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,0],[2,3,0,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,0],[2,3,0,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,0],[3,3,0,2],[1,3,3,1],[1,2,0,0]],[[1,3,2,0],[2,3,0,2],[1,3,3,1],[1,2,0,0]],[[2,2,2,0],[2,3,0,2],[1,3,3,1],[1,2,0,0]],[[1,2,2,0],[3,3,0,2],[1,3,3,1],[1,1,1,0]],[[1,3,2,0],[2,3,0,2],[1,3,3,1],[1,1,1,0]],[[2,2,2,0],[2,3,0,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,0],[3,3,0,2],[1,3,3,1],[1,1,0,1]],[[1,3,2,0],[2,3,0,2],[1,3,3,1],[1,1,0,1]],[[2,2,2,0],[2,3,0,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,0],[3,3,0,2],[1,3,3,1],[1,0,2,0]],[[1,3,2,0],[2,3,0,2],[1,3,3,1],[1,0,2,0]],[[2,2,2,0],[2,3,0,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,0],[3,3,0,2],[1,3,3,1],[1,0,1,1]],[[1,3,2,0],[2,3,0,2],[1,3,3,1],[1,0,1,1]],[[2,2,2,0],[2,3,0,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,0],[3,3,0,2],[1,3,3,1],[0,2,1,0]],[[1,3,2,0],[2,3,0,2],[1,3,3,1],[0,2,1,0]],[[2,2,2,0],[2,3,0,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,0],[3,3,0,2],[1,3,3,1],[0,2,0,1]],[[1,3,2,0],[2,3,0,2],[1,3,3,1],[0,2,0,1]],[[2,2,2,0],[2,3,0,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,0],[3,3,0,2],[1,3,3,1],[0,1,2,0]],[[1,3,2,0],[2,3,0,2],[1,3,3,1],[0,1,2,0]],[[2,2,2,0],[2,3,0,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,0],[3,3,0,2],[1,3,3,1],[0,1,1,1]],[[1,3,2,0],[2,3,0,2],[1,3,3,1],[0,1,1,1]],[[2,2,2,0],[2,3,0,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,0],[3,3,0,2],[1,3,3,0],[1,2,0,1]],[[1,3,2,0],[2,3,0,2],[1,3,3,0],[1,2,0,1]],[[2,2,2,0],[2,3,0,2],[1,3,3,0],[1,2,0,1]],[[1,2,2,0],[3,3,0,2],[1,3,3,0],[1,1,1,1]],[[1,3,2,0],[2,3,0,2],[1,3,3,0],[1,1,1,1]],[[2,2,2,0],[2,3,0,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,0],[3,3,0,2],[1,3,3,0],[1,0,2,1]],[[1,3,2,0],[2,3,0,2],[1,3,3,0],[1,0,2,1]],[[2,2,2,0],[2,3,0,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,0],[3,3,0,2],[1,3,3,0],[0,2,1,1]],[[1,3,2,0],[2,3,0,2],[1,3,3,0],[0,2,1,1]],[[2,2,2,0],[2,3,0,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,0],[3,3,0,2],[1,3,3,0],[0,1,2,1]],[[1,3,2,0],[2,3,0,2],[1,3,3,0],[0,1,2,1]],[[2,2,2,0],[2,3,0,2],[1,3,3,0],[0,1,2,1]],[[1,2,2,0],[3,3,0,2],[1,3,2,1],[1,1,2,0]],[[1,3,2,0],[2,3,0,2],[1,3,2,1],[1,1,2,0]],[[2,2,2,0],[2,3,0,2],[1,3,2,1],[1,1,2,0]],[[1,2,2,0],[3,3,0,2],[1,3,2,1],[0,2,2,0]],[[1,3,2,0],[2,3,0,2],[1,3,2,1],[0,2,2,0]],[[2,2,2,0],[2,3,0,2],[1,3,2,1],[0,2,2,0]],[[1,2,2,0],[3,3,0,2],[1,3,2,0],[1,1,2,1]],[[1,3,2,0],[2,3,0,2],[1,3,2,0],[1,1,2,1]],[[2,2,2,0],[2,3,0,2],[1,3,2,0],[1,1,2,1]],[[1,2,2,0],[3,3,0,2],[1,3,2,0],[0,2,2,1]],[[1,3,2,0],[2,3,0,2],[1,3,2,0],[0,2,2,1]],[[2,2,2,0],[2,3,0,2],[1,3,2,0],[0,2,2,1]],[[1,2,2,0],[3,3,0,2],[1,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,3,0,2],[1,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,3,0,2],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,3,0,2],[1,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,3,0,2],[1,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,3,0,2],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,4,0,2],[0,3,3,2],[1,1,1,0]],[[1,2,3,0],[2,3,0,2],[0,3,3,2],[1,1,1,0]],[[1,3,2,0],[2,3,0,2],[0,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,3,0,2],[0,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,4,0,2],[0,3,3,2],[1,1,0,1]],[[1,2,3,0],[2,3,0,2],[0,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,3,0,2],[0,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,3,0,2],[0,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,4,0,2],[0,3,3,2],[1,0,2,0]],[[1,2,3,0],[2,3,0,2],[0,3,3,2],[1,0,2,0]],[[1,3,2,0],[2,3,0,2],[0,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,3,0,2],[0,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,4,0,2],[0,3,3,2],[1,0,1,1]],[[1,2,3,0],[2,3,0,2],[0,3,3,2],[1,0,1,1]],[[1,3,2,0],[2,3,0,2],[0,3,3,2],[1,0,1,1]],[[2,2,2,0],[2,3,0,2],[0,3,3,2],[1,0,1,1]],[[1,2,2,0],[2,4,0,2],[0,3,3,2],[0,2,1,0]],[[1,2,3,0],[2,3,0,2],[0,3,3,2],[0,2,1,0]],[[1,3,2,0],[2,3,0,2],[0,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,3,0,2],[0,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,4,0,2],[0,3,3,2],[0,2,0,1]],[[1,2,3,0],[2,3,0,2],[0,3,3,2],[0,2,0,1]],[[1,3,2,0],[2,3,0,2],[0,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,3,0,2],[0,3,3,2],[0,2,0,1]],[[1,2,2,0],[2,4,0,2],[0,3,3,2],[0,1,2,0]],[[1,2,3,0],[2,3,0,2],[0,3,3,2],[0,1,2,0]],[[1,3,2,0],[2,3,0,2],[0,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,3,0,2],[0,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,4,0,2],[0,3,3,2],[0,1,1,1]],[[1,2,3,0],[2,3,0,2],[0,3,3,2],[0,1,1,1]],[[1,3,2,0],[2,3,0,2],[0,3,3,2],[0,1,1,1]],[[2,2,2,0],[2,3,0,2],[0,3,3,2],[0,1,1,1]],[[1,2,2,0],[3,3,0,2],[0,3,3,1],[1,2,1,0]],[[1,3,2,0],[2,3,0,2],[0,3,3,1],[1,2,1,0]],[[2,2,2,0],[2,3,0,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,0],[3,3,0,2],[0,3,3,1],[1,2,0,1]],[[1,3,2,0],[2,3,0,2],[0,3,3,1],[1,2,0,1]],[[2,2,2,0],[2,3,0,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,0],[3,3,0,2],[0,3,3,1],[1,1,2,0]],[[1,3,2,0],[2,3,0,2],[0,3,3,1],[1,1,2,0]],[[2,2,2,0],[2,3,0,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,0],[2,4,0,2],[0,3,3,1],[1,0,2,1]],[[1,2,3,0],[2,3,0,2],[0,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,3,0,2],[0,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,3,0,2],[0,3,3,1],[1,0,2,1]],[[1,2,2,0],[2,4,0,2],[0,3,3,1],[0,2,1,1]],[[1,2,3,0],[2,3,0,2],[0,3,3,1],[0,2,1,1]],[[1,3,2,0],[2,3,0,2],[0,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,3,0,2],[0,3,3,1],[0,2,1,1]],[[1,2,2,0],[2,4,0,2],[0,3,3,1],[0,1,2,1]],[[1,2,3,0],[2,3,0,2],[0,3,3,1],[0,1,2,1]],[[1,3,2,0],[2,3,0,2],[0,3,3,1],[0,1,2,1]],[[2,2,2,0],[2,3,0,2],[0,3,3,1],[0,1,2,1]],[[1,2,2,0],[3,3,0,2],[0,3,3,0],[1,2,1,1]],[[1,3,2,0],[2,3,0,2],[0,3,3,0],[1,2,1,1]],[[2,2,2,0],[2,3,0,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,0],[3,3,0,2],[0,3,3,0],[1,1,2,1]],[[1,3,2,0],[2,3,0,2],[0,3,3,0],[1,1,2,1]],[[2,2,2,0],[2,3,0,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,0],[2,4,0,2],[0,3,2,2],[0,2,2,0]],[[1,2,3,0],[2,3,0,2],[0,3,2,2],[0,2,2,0]],[[1,3,2,0],[2,3,0,2],[0,3,2,2],[0,2,2,0]],[[2,2,2,0],[2,3,0,2],[0,3,2,2],[0,2,2,0]],[[1,2,2,0],[3,3,0,2],[0,3,2,1],[1,2,2,0]],[[1,3,2,0],[2,3,0,2],[0,3,2,1],[1,2,2,0]],[[2,2,2,0],[2,3,0,2],[0,3,2,1],[1,2,2,0]],[[1,2,2,0],[2,4,0,2],[0,3,2,1],[0,2,2,1]],[[1,2,3,0],[2,3,0,2],[0,3,2,1],[0,2,2,1]],[[1,3,2,0],[2,3,0,2],[0,3,2,1],[0,2,2,1]],[[2,2,2,0],[2,3,0,2],[0,3,2,1],[0,2,2,1]],[[1,2,2,0],[3,3,0,2],[0,3,2,0],[1,2,2,1]],[[1,3,2,0],[2,3,0,2],[0,3,2,0],[1,2,2,1]],[[2,2,2,0],[2,3,0,2],[0,3,2,0],[1,2,2,1]],[[1,2,2,0],[2,4,0,2],[0,3,1,2],[0,2,2,1]],[[1,2,3,0],[2,3,0,2],[0,3,1,2],[0,2,2,1]],[[1,3,2,0],[2,3,0,2],[0,3,1,2],[0,2,2,1]],[[2,2,2,0],[2,3,0,2],[0,3,1,2],[0,2,2,1]],[[1,2,2,0],[3,3,0,2],[0,3,0,2],[1,2,2,1]],[[1,3,2,0],[2,3,0,2],[0,3,0,2],[1,2,2,1]],[[2,2,2,0],[2,3,0,2],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[2,3,0,1],[3,3,3,2],[1,0,1,0]],[[1,2,2,0],[3,3,0,1],[2,3,3,2],[1,0,1,0]],[[1,3,2,0],[2,3,0,1],[2,3,3,2],[1,0,1,0]],[[2,2,2,0],[2,3,0,1],[2,3,3,2],[1,0,1,0]],[[1,2,2,0],[2,3,0,1],[3,3,3,2],[1,0,0,1]],[[1,2,2,0],[3,3,0,1],[2,3,3,2],[1,0,0,1]],[[1,3,2,0],[2,3,0,1],[2,3,3,2],[1,0,0,1]],[[2,2,2,0],[2,3,0,1],[2,3,3,2],[1,0,0,1]],[[1,2,2,0],[2,3,0,1],[3,3,3,1],[1,0,1,1]],[[1,2,2,0],[3,3,0,1],[2,3,3,1],[1,0,1,1]],[[1,3,2,0],[2,3,0,1],[2,3,3,1],[1,0,1,1]],[[2,2,2,0],[2,3,0,1],[2,3,3,1],[1,0,1,1]],[[1,2,2,0],[2,3,0,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,0],[2,3,0,1],[3,3,2,2],[1,2,0,0]],[[1,2,2,0],[3,3,0,1],[2,3,2,2],[1,2,0,0]],[[1,3,2,0],[2,3,0,1],[2,3,2,2],[1,2,0,0]],[[2,2,2,0],[2,3,0,1],[2,3,2,2],[1,2,0,0]],[[1,2,2,0],[2,3,0,1],[2,3,2,2],[2,1,1,0]],[[1,2,2,0],[2,3,0,1],[3,3,2,2],[1,1,1,0]],[[1,2,2,0],[3,3,0,1],[2,3,2,2],[1,1,1,0]],[[1,3,2,0],[2,3,0,1],[2,3,2,2],[1,1,1,0]],[[2,2,2,0],[2,3,0,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,0],[2,3,0,1],[2,3,2,2],[2,1,0,1]],[[1,2,2,0],[2,3,0,1],[3,3,2,2],[1,1,0,1]],[[1,2,2,0],[3,3,0,1],[2,3,2,2],[1,1,0,1]],[[1,3,2,0],[2,3,0,1],[2,3,2,2],[1,1,0,1]],[[2,2,2,0],[2,3,0,1],[2,3,2,2],[1,1,0,1]],[[1,2,2,0],[2,3,0,1],[3,3,2,2],[0,2,1,0]],[[1,2,2,0],[3,3,0,1],[2,3,2,2],[0,2,1,0]],[[1,3,2,0],[2,3,0,1],[2,3,2,2],[0,2,1,0]],[[2,2,2,0],[2,3,0,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,3,0,1],[3,3,2,2],[0,2,0,1]],[[1,2,2,0],[3,3,0,1],[2,3,2,2],[0,2,0,1]],[[1,3,2,0],[2,3,0,1],[2,3,2,2],[0,2,0,1]],[[2,2,2,0],[2,3,0,1],[2,3,2,2],[0,2,0,1]],[[1,2,2,0],[2,3,0,1],[2,3,2,1],[2,2,0,1]],[[1,2,2,0],[2,3,0,1],[3,3,2,1],[1,2,0,1]],[[1,2,2,0],[3,3,0,1],[2,3,2,1],[1,2,0,1]],[[1,3,2,0],[2,3,0,1],[2,3,2,1],[1,2,0,1]],[[2,2,2,0],[2,3,0,1],[2,3,2,1],[1,2,0,1]],[[1,2,2,0],[2,3,0,1],[2,3,2,1],[2,1,1,1]],[[1,2,2,0],[2,3,0,1],[3,3,2,1],[1,1,1,1]],[[1,2,2,0],[3,3,0,1],[2,3,2,1],[1,1,1,1]],[[1,3,2,0],[2,3,0,1],[2,3,2,1],[1,1,1,1]],[[2,2,2,0],[2,3,0,1],[2,3,2,1],[1,1,1,1]],[[1,2,2,0],[2,3,0,1],[3,3,2,1],[0,2,1,1]],[[1,2,2,0],[3,3,0,1],[2,3,2,1],[0,2,1,1]],[[1,3,2,0],[2,3,0,1],[2,3,2,1],[0,2,1,1]],[[2,2,2,0],[2,3,0,1],[2,3,2,1],[0,2,1,1]],[[1,2,2,0],[2,3,0,1],[2,3,1,2],[2,2,1,0]],[[1,2,2,0],[2,3,0,1],[3,3,1,2],[1,2,1,0]],[[1,2,2,0],[3,3,0,1],[2,3,1,2],[1,2,1,0]],[[1,3,2,0],[2,3,0,1],[2,3,1,2],[1,2,1,0]],[[2,2,2,0],[2,3,0,1],[2,3,1,2],[1,2,1,0]],[[1,2,2,0],[2,3,0,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,0],[2,3,0,1],[3,3,1,2],[1,1,2,0]],[[1,2,2,0],[3,3,0,1],[2,3,1,2],[1,1,2,0]],[[1,3,2,0],[2,3,0,1],[2,3,1,2],[1,1,2,0]],[[2,2,2,0],[2,3,0,1],[2,3,1,2],[1,1,2,0]],[[1,2,2,0],[2,3,0,1],[3,3,1,2],[0,2,2,0]],[[1,2,2,0],[3,3,0,1],[2,3,1,2],[0,2,2,0]],[[1,3,2,0],[2,3,0,1],[2,3,1,2],[0,2,2,0]],[[2,2,2,0],[2,3,0,1],[2,3,1,2],[0,2,2,0]],[[1,2,2,0],[2,3,0,1],[2,3,1,1],[2,2,1,1]],[[1,2,2,0],[2,3,0,1],[3,3,1,1],[1,2,1,1]],[[1,2,2,0],[3,3,0,1],[2,3,1,1],[1,2,1,1]],[[1,3,2,0],[2,3,0,1],[2,3,1,1],[1,2,1,1]],[[2,2,2,0],[2,3,0,1],[2,3,1,1],[1,2,1,1]],[[1,2,2,0],[2,3,0,1],[2,3,1,1],[2,1,2,1]],[[1,2,2,0],[2,3,0,1],[3,3,1,1],[1,1,2,1]],[[1,2,2,0],[3,3,0,1],[2,3,1,1],[1,1,2,1]],[[1,3,2,0],[2,3,0,1],[2,3,1,1],[1,1,2,1]],[[2,2,2,0],[2,3,0,1],[2,3,1,1],[1,1,2,1]],[[1,2,2,0],[2,3,0,1],[3,3,1,1],[0,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,3,1,1],[0,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,3,1,1],[0,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,3,1,1],[0,2,2,1]],[[1,2,2,0],[2,3,0,1],[2,3,1,0],[1,3,2,1]],[[1,2,2,0],[2,3,0,1],[2,3,1,0],[2,2,2,1]],[[1,2,2,0],[2,3,0,1],[3,3,1,0],[1,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,3,1,0],[1,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,3,1,0],[1,2,2,1]],[[1,2,2,0],[2,3,0,1],[2,3,0,2],[2,2,1,1]],[[1,2,2,0],[2,3,0,1],[3,3,0,2],[1,2,1,1]],[[1,2,2,0],[3,3,0,1],[2,3,0,2],[1,2,1,1]],[[1,3,2,0],[2,3,0,1],[2,3,0,2],[1,2,1,1]],[[2,2,2,0],[2,3,0,1],[2,3,0,2],[1,2,1,1]],[[1,2,2,0],[2,3,0,1],[2,3,0,2],[2,1,2,1]],[[1,2,2,0],[2,3,0,1],[3,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,3,0,1],[2,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,3,0,1],[2,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,3,0,1],[2,3,0,2],[1,1,2,1]],[[1,2,2,0],[2,3,0,1],[3,3,0,2],[0,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,3,0,1],[2,2,3,2],[2,2,0,0]],[[1,2,2,0],[2,3,0,1],[3,2,3,2],[1,2,0,0]],[[1,2,2,0],[3,3,0,1],[2,2,3,2],[1,2,0,0]],[[1,3,2,0],[2,3,0,1],[2,2,3,2],[1,2,0,0]],[[2,2,2,0],[2,3,0,1],[2,2,3,2],[1,2,0,0]],[[1,2,2,0],[2,3,0,1],[2,2,3,2],[2,1,1,0]],[[1,2,2,0],[2,3,0,1],[3,2,3,2],[1,1,1,0]],[[1,2,2,0],[3,3,0,1],[2,2,3,2],[1,1,1,0]],[[1,3,2,0],[2,3,0,1],[2,2,3,2],[1,1,1,0]],[[2,2,2,0],[2,3,0,1],[2,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,3,0,1],[2,2,3,2],[2,1,0,1]],[[1,2,2,0],[2,3,0,1],[3,2,3,2],[1,1,0,1]],[[1,2,2,0],[3,3,0,1],[2,2,3,2],[1,1,0,1]],[[1,3,2,0],[2,3,0,1],[2,2,3,2],[1,1,0,1]],[[2,2,2,0],[2,3,0,1],[2,2,3,2],[1,1,0,1]],[[1,2,2,0],[2,3,0,1],[2,2,3,2],[2,0,2,0]],[[1,2,2,0],[2,3,0,1],[3,2,3,2],[1,0,2,0]],[[1,2,2,0],[3,3,0,1],[2,2,3,2],[1,0,2,0]],[[1,3,2,0],[2,3,0,1],[2,2,3,2],[1,0,2,0]],[[2,2,2,0],[2,3,0,1],[2,2,3,2],[1,0,2,0]],[[1,2,2,0],[2,3,0,1],[2,2,3,2],[2,0,1,1]],[[1,2,2,0],[2,3,0,1],[3,2,3,2],[1,0,1,1]],[[1,2,2,0],[3,3,0,1],[2,2,3,2],[1,0,1,1]],[[1,3,2,0],[2,3,0,1],[2,2,3,2],[1,0,1,1]],[[2,2,2,0],[2,3,0,1],[2,2,3,2],[1,0,1,1]],[[1,2,2,0],[2,3,0,1],[3,2,3,2],[0,2,1,0]],[[1,2,2,0],[3,3,0,1],[2,2,3,2],[0,2,1,0]],[[1,3,2,0],[2,3,0,1],[2,2,3,2],[0,2,1,0]],[[2,2,2,0],[2,3,0,1],[2,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,3,0,1],[3,2,3,2],[0,2,0,1]],[[1,2,2,0],[3,3,0,1],[2,2,3,2],[0,2,0,1]],[[1,3,2,0],[2,3,0,1],[2,2,3,2],[0,2,0,1]],[[2,2,2,0],[2,3,0,1],[2,2,3,2],[0,2,0,1]],[[1,2,2,0],[2,3,0,1],[3,2,3,2],[0,1,2,0]],[[1,2,2,0],[3,3,0,1],[2,2,3,2],[0,1,2,0]],[[1,3,2,0],[2,3,0,1],[2,2,3,2],[0,1,2,0]],[[2,2,2,0],[2,3,0,1],[2,2,3,2],[0,1,2,0]],[[1,2,2,0],[2,3,0,1],[3,2,3,2],[0,1,1,1]],[[1,2,2,0],[3,3,0,1],[2,2,3,2],[0,1,1,1]],[[1,3,2,0],[2,3,0,1],[2,2,3,2],[0,1,1,1]],[[2,2,2,0],[2,3,0,1],[2,2,3,2],[0,1,1,1]],[[1,2,2,0],[2,3,0,1],[2,2,3,1],[2,2,0,1]],[[1,2,2,0],[2,3,0,1],[3,2,3,1],[1,2,0,1]],[[1,2,2,0],[3,3,0,1],[2,2,3,1],[1,2,0,1]],[[1,3,2,0],[2,3,0,1],[2,2,3,1],[1,2,0,1]],[[2,2,2,0],[2,3,0,1],[2,2,3,1],[1,2,0,1]],[[1,2,2,0],[2,3,0,1],[2,2,3,1],[2,1,1,1]],[[1,2,2,0],[2,3,0,1],[3,2,3,1],[1,1,1,1]],[[1,2,2,0],[3,3,0,1],[2,2,3,1],[1,1,1,1]],[[1,3,2,0],[2,3,0,1],[2,2,3,1],[1,1,1,1]],[[2,2,2,0],[2,3,0,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,0],[2,3,0,1],[2,2,3,1],[2,0,2,1]],[[1,2,2,0],[2,3,0,1],[3,2,3,1],[1,0,2,1]],[[1,2,2,0],[3,3,0,1],[2,2,3,1],[1,0,2,1]],[[1,3,2,0],[2,3,0,1],[2,2,3,1],[1,0,2,1]],[[2,2,2,0],[2,3,0,1],[2,2,3,1],[1,0,2,1]],[[1,2,2,0],[2,3,0,1],[3,2,3,1],[0,2,1,1]],[[1,2,2,0],[3,3,0,1],[2,2,3,1],[0,2,1,1]],[[1,3,2,0],[2,3,0,1],[2,2,3,1],[0,2,1,1]],[[2,2,2,0],[2,3,0,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[2,3,0,1],[3,2,3,1],[0,1,2,1]],[[1,2,2,0],[3,3,0,1],[2,2,3,1],[0,1,2,1]],[[1,3,2,0],[2,3,0,1],[2,2,3,1],[0,1,2,1]],[[2,2,2,0],[2,3,0,1],[2,2,3,1],[0,1,2,1]],[[1,2,2,0],[2,3,0,1],[2,2,3,0],[2,1,2,1]],[[1,2,2,0],[2,3,0,1],[3,2,3,0],[1,1,2,1]],[[1,2,2,0],[3,3,0,1],[2,2,3,0],[1,1,2,1]],[[1,3,2,0],[2,3,0,1],[2,2,3,0],[1,1,2,1]],[[2,2,2,0],[2,3,0,1],[2,2,3,0],[1,1,2,1]],[[1,2,2,0],[2,3,0,1],[3,2,3,0],[0,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,2,3,0],[0,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,2,3,0],[0,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,2,3,0],[0,2,2,1]],[[1,2,2,0],[2,3,0,1],[2,2,2,2],[2,1,2,0]],[[1,2,2,0],[2,3,0,1],[3,2,2,2],[1,1,2,0]],[[1,2,2,0],[3,3,0,1],[2,2,2,2],[1,1,2,0]],[[1,3,2,0],[2,3,0,1],[2,2,2,2],[1,1,2,0]],[[2,2,2,0],[2,3,0,1],[2,2,2,2],[1,1,2,0]],[[1,2,2,0],[2,3,0,1],[3,2,2,2],[0,2,2,0]],[[1,2,2,0],[3,3,0,1],[2,2,2,2],[0,2,2,0]],[[1,3,2,0],[2,3,0,1],[2,2,2,2],[0,2,2,0]],[[2,2,2,0],[2,3,0,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,0],[2,3,0,1],[2,2,2,1],[2,1,2,1]],[[1,2,2,0],[2,3,0,1],[3,2,2,1],[1,1,2,1]],[[1,2,2,0],[3,3,0,1],[2,2,2,1],[1,1,2,1]],[[1,3,2,0],[2,3,0,1],[2,2,2,1],[1,1,2,1]],[[2,2,2,0],[2,3,0,1],[2,2,2,1],[1,1,2,1]],[[1,2,2,0],[2,3,0,1],[3,2,2,1],[0,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,2,2,1],[0,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,2,2,1],[0,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,2,2,1],[0,2,2,1]],[[1,2,2,0],[2,3,0,1],[2,2,1,2],[1,3,2,0]],[[1,2,2,0],[2,3,0,1],[2,2,1,2],[2,2,2,0]],[[1,2,2,0],[2,3,0,1],[3,2,1,2],[1,2,2,0]],[[1,2,2,0],[3,3,0,1],[2,2,1,2],[1,2,2,0]],[[1,3,2,0],[2,3,0,1],[2,2,1,2],[1,2,2,0]],[[2,2,2,0],[2,3,0,1],[2,2,1,2],[1,2,2,0]],[[1,2,2,0],[2,3,0,1],[2,2,1,2],[2,1,2,1]],[[1,2,2,0],[2,3,0,1],[3,2,1,2],[1,1,2,1]],[[1,2,2,0],[3,3,0,1],[2,2,1,2],[1,1,2,1]],[[1,3,2,0],[2,3,0,1],[2,2,1,2],[1,1,2,1]],[[2,2,2,0],[2,3,0,1],[2,2,1,2],[1,1,2,1]],[[1,2,2,0],[2,3,0,1],[3,2,1,2],[0,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,2,1,2],[0,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,2,1,2],[0,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,2,1,2],[0,2,2,1]],[[1,2,2,0],[2,3,0,1],[2,2,1,1],[1,3,2,1]],[[1,2,2,0],[2,3,0,1],[2,2,1,1],[2,2,2,1]],[[1,2,2,0],[2,3,0,1],[3,2,1,1],[1,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,2,1,1],[1,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,2,1,1],[1,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,2,1,1],[1,2,2,1]],[[1,2,2,0],[2,3,0,1],[2,2,0,2],[1,3,2,1]],[[1,2,2,0],[2,3,0,1],[2,2,0,2],[2,2,2,1]],[[1,2,2,0],[2,3,0,1],[3,2,0,2],[1,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,2,0,2],[1,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,2,0,2],[1,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,2,0,2],[1,2,2,1]],[[0,3,2,1],[1,3,3,2],[2,3,0,0],[0,2,2,0]],[[0,2,3,1],[1,3,3,2],[2,3,0,0],[0,2,2,0]],[[0,2,2,2],[1,3,3,2],[2,3,0,0],[0,2,2,0]],[[0,2,2,1],[1,4,3,2],[2,3,0,0],[0,2,2,0]],[[0,3,2,1],[1,3,3,2],[2,3,0,0],[1,1,2,0]],[[0,2,3,1],[1,3,3,2],[2,3,0,0],[1,1,2,0]],[[0,2,2,2],[1,3,3,2],[2,3,0,0],[1,1,2,0]],[[0,2,2,1],[1,4,3,2],[2,3,0,0],[1,1,2,0]],[[0,3,2,1],[1,3,3,2],[2,3,0,1],[0,1,1,1]],[[0,2,3,1],[1,3,3,2],[2,3,0,1],[0,1,1,1]],[[0,2,2,2],[1,3,3,2],[2,3,0,1],[0,1,1,1]],[[0,2,2,1],[1,4,3,2],[2,3,0,1],[0,1,1,1]],[[0,3,2,1],[1,3,3,2],[2,3,0,1],[0,1,2,0]],[[0,2,3,1],[1,3,3,2],[2,3,0,1],[0,1,2,0]],[[0,2,2,2],[1,3,3,2],[2,3,0,1],[0,1,2,0]],[[0,2,2,1],[1,4,3,2],[2,3,0,1],[0,1,2,0]],[[0,3,2,1],[1,3,3,2],[2,3,0,1],[0,2,0,1]],[[0,2,3,1],[1,3,3,2],[2,3,0,1],[0,2,0,1]],[[0,2,2,2],[1,3,3,2],[2,3,0,1],[0,2,0,1]],[[0,2,2,1],[1,4,3,2],[2,3,0,1],[0,2,0,1]],[[0,3,2,1],[1,3,3,2],[2,3,0,1],[0,2,1,0]],[[0,2,3,1],[1,3,3,2],[2,3,0,1],[0,2,1,0]],[[0,2,2,2],[1,3,3,2],[2,3,0,1],[0,2,1,0]],[[0,2,2,1],[1,4,3,2],[2,3,0,1],[0,2,1,0]],[[1,2,2,0],[2,3,0,1],[2,1,3,2],[1,3,1,0]],[[1,2,2,0],[2,3,0,1],[2,1,3,2],[2,2,1,0]],[[1,2,2,0],[2,3,0,1],[3,1,3,2],[1,2,1,0]],[[1,2,2,0],[3,3,0,1],[2,1,3,2],[1,2,1,0]],[[1,3,2,0],[2,3,0,1],[2,1,3,2],[1,2,1,0]],[[2,2,2,0],[2,3,0,1],[2,1,3,2],[1,2,1,0]],[[1,2,2,0],[2,3,0,1],[2,1,3,2],[1,3,0,1]],[[1,2,2,0],[2,3,0,1],[2,1,3,2],[2,2,0,1]],[[1,2,2,0],[2,3,0,1],[3,1,3,2],[1,2,0,1]],[[1,2,2,0],[3,3,0,1],[2,1,3,2],[1,2,0,1]],[[0,3,2,1],[1,3,3,2],[2,3,0,1],[1,0,1,1]],[[0,2,3,1],[1,3,3,2],[2,3,0,1],[1,0,1,1]],[[0,2,2,2],[1,3,3,2],[2,3,0,1],[1,0,1,1]],[[0,2,2,1],[1,4,3,2],[2,3,0,1],[1,0,1,1]],[[0,3,2,1],[1,3,3,2],[2,3,0,1],[1,0,2,0]],[[0,2,3,1],[1,3,3,2],[2,3,0,1],[1,0,2,0]],[[0,2,2,2],[1,3,3,2],[2,3,0,1],[1,0,2,0]],[[0,2,2,1],[1,4,3,2],[2,3,0,1],[1,0,2,0]],[[0,3,2,1],[1,3,3,2],[2,3,0,1],[1,1,0,1]],[[0,2,3,1],[1,3,3,2],[2,3,0,1],[1,1,0,1]],[[0,2,2,2],[1,3,3,2],[2,3,0,1],[1,1,0,1]],[[0,2,2,1],[1,4,3,2],[2,3,0,1],[1,1,0,1]],[[0,3,2,1],[1,3,3,2],[2,3,0,1],[1,1,1,0]],[[0,2,3,1],[1,3,3,2],[2,3,0,1],[1,1,1,0]],[[0,2,2,2],[1,3,3,2],[2,3,0,1],[1,1,1,0]],[[0,2,2,1],[1,4,3,2],[2,3,0,1],[1,1,1,0]],[[1,3,2,0],[2,3,0,1],[2,1,3,2],[1,2,0,1]],[[2,2,2,0],[2,3,0,1],[2,1,3,2],[1,2,0,1]],[[0,3,2,1],[1,3,3,2],[2,3,0,1],[1,2,0,0]],[[0,2,3,1],[1,3,3,2],[2,3,0,1],[1,2,0,0]],[[0,2,2,2],[1,3,3,2],[2,3,0,1],[1,2,0,0]],[[0,2,2,1],[1,4,3,2],[2,3,0,1],[1,2,0,0]],[[1,2,2,0],[2,3,0,1],[2,1,3,1],[1,3,1,1]],[[1,2,2,0],[2,3,0,1],[2,1,3,1],[2,2,1,1]],[[1,2,2,0],[2,3,0,1],[3,1,3,1],[1,2,1,1]],[[1,2,2,0],[3,3,0,1],[2,1,3,1],[1,2,1,1]],[[1,3,2,0],[2,3,0,1],[2,1,3,1],[1,2,1,1]],[[2,2,2,0],[2,3,0,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,0],[2,3,0,1],[2,1,3,0],[1,2,3,1]],[[1,2,2,0],[2,3,0,1],[2,1,3,0],[1,3,2,1]],[[1,2,2,0],[2,3,0,1],[2,1,3,0],[2,2,2,1]],[[1,2,2,0],[2,3,0,1],[3,1,3,0],[1,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,1,3,0],[1,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,1,3,0],[1,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,1,3,0],[1,2,2,1]],[[1,2,2,0],[2,3,0,1],[2,1,2,2],[1,2,3,0]],[[1,2,2,0],[2,3,0,1],[2,1,2,2],[1,3,2,0]],[[1,2,2,0],[2,3,0,1],[2,1,2,2],[2,2,2,0]],[[1,2,2,0],[2,3,0,1],[3,1,2,2],[1,2,2,0]],[[1,2,2,0],[3,3,0,1],[2,1,2,2],[1,2,2,0]],[[1,3,2,0],[2,3,0,1],[2,1,2,2],[1,2,2,0]],[[2,2,2,0],[2,3,0,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,0],[2,3,0,1],[2,1,2,1],[1,2,2,2]],[[1,2,2,0],[2,3,0,1],[2,1,2,1],[1,2,3,1]],[[1,2,2,0],[2,3,0,1],[2,1,2,1],[1,3,2,1]],[[1,2,2,0],[2,3,0,1],[2,1,2,1],[2,2,2,1]],[[1,2,2,0],[2,3,0,1],[3,1,2,1],[1,2,2,1]],[[0,3,2,1],[1,3,3,2],[2,3,0,2],[0,2,0,0]],[[0,2,3,1],[1,3,3,2],[2,3,0,2],[0,2,0,0]],[[0,2,2,2],[1,3,3,2],[2,3,0,2],[0,2,0,0]],[[0,2,2,1],[1,4,3,2],[2,3,0,2],[0,2,0,0]],[[1,2,2,0],[3,3,0,1],[2,1,2,1],[1,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,1,2,1],[1,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,1,2,1],[1,2,2,1]],[[1,2,2,0],[2,3,0,1],[2,1,1,2],[1,2,2,2]],[[1,2,2,0],[2,3,0,1],[2,1,1,2],[1,2,3,1]],[[1,2,2,0],[2,3,0,1],[2,1,1,2],[1,3,2,1]],[[1,2,2,0],[2,3,0,1],[2,1,1,2],[2,2,2,1]],[[1,2,2,0],[2,3,0,1],[3,1,1,2],[1,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,1,1,2],[1,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,1,1,2],[1,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,3,0,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[2,3,0,1],[2,0,3,2],[1,3,2,0]],[[1,2,2,0],[2,3,0,1],[2,0,3,2],[2,2,2,0]],[[1,2,2,0],[2,3,0,1],[3,0,3,2],[1,2,2,0]],[[1,2,2,0],[3,3,0,1],[2,0,3,2],[1,2,2,0]],[[1,3,2,0],[2,3,0,1],[2,0,3,2],[1,2,2,0]],[[2,2,2,0],[2,3,0,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[2,3,0,1],[2,0,3,1],[1,2,2,2]],[[1,2,2,0],[2,3,0,1],[2,0,3,1],[1,2,3,1]],[[1,2,2,0],[2,3,0,1],[2,0,3,1],[1,3,2,1]],[[1,2,2,0],[2,3,0,1],[2,0,3,1],[2,2,2,1]],[[1,2,2,0],[2,3,0,1],[3,0,3,1],[1,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,0,3,1],[1,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,0,3,1],[1,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,0],[2,3,0,1],[2,0,2,2],[1,2,2,2]],[[1,2,2,0],[2,3,0,1],[2,0,2,2],[1,2,3,1]],[[1,2,2,0],[2,3,0,1],[2,0,2,2],[1,3,2,1]],[[1,2,2,0],[2,3,0,1],[2,0,2,2],[2,2,2,1]],[[1,2,2,0],[2,3,0,1],[3,0,2,2],[1,2,2,1]],[[1,2,2,0],[3,3,0,1],[2,0,2,2],[1,2,2,1]],[[1,3,2,0],[2,3,0,1],[2,0,2,2],[1,2,2,1]],[[2,2,2,0],[2,3,0,1],[2,0,2,2],[1,2,2,1]],[[0,3,2,1],[1,3,3,2],[2,3,0,2],[1,1,0,0]],[[0,2,3,1],[1,3,3,2],[2,3,0,2],[1,1,0,0]],[[0,2,2,2],[1,3,3,2],[2,3,0,2],[1,1,0,0]],[[0,2,2,1],[1,4,3,2],[2,3,0,2],[1,1,0,0]],[[1,2,2,0],[3,3,0,1],[1,3,3,2],[1,2,0,0]],[[1,3,2,0],[2,3,0,1],[1,3,3,2],[1,2,0,0]],[[2,2,2,0],[2,3,0,1],[1,3,3,2],[1,2,0,0]],[[1,2,2,0],[3,3,0,1],[1,3,3,2],[1,1,1,0]],[[1,3,2,0],[2,3,0,1],[1,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,3,0,1],[1,3,3,2],[1,1,1,0]],[[1,2,2,0],[3,3,0,1],[1,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,3,0,1],[1,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,3,0,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[3,3,0,1],[1,3,3,2],[1,0,2,0]],[[1,3,2,0],[2,3,0,1],[1,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,3,0,1],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[3,3,0,1],[1,3,3,2],[1,0,1,1]],[[1,3,2,0],[2,3,0,1],[1,3,3,2],[1,0,1,1]],[[2,2,2,0],[2,3,0,1],[1,3,3,2],[1,0,1,1]],[[1,2,2,0],[3,3,0,1],[1,3,3,2],[0,2,1,0]],[[1,3,2,0],[2,3,0,1],[1,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,3,0,1],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[3,3,0,1],[1,3,3,2],[0,2,0,1]],[[1,3,2,0],[2,3,0,1],[1,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,3,0,1],[1,3,3,2],[0,2,0,1]],[[1,2,2,0],[3,3,0,1],[1,3,3,2],[0,1,2,0]],[[1,3,2,0],[2,3,0,1],[1,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,3,0,1],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[3,3,0,1],[1,3,3,2],[0,1,1,1]],[[1,3,2,0],[2,3,0,1],[1,3,3,2],[0,1,1,1]],[[2,2,2,0],[2,3,0,1],[1,3,3,2],[0,1,1,1]],[[1,2,2,0],[3,3,0,1],[1,3,3,1],[1,2,0,1]],[[1,3,2,0],[2,3,0,1],[1,3,3,1],[1,2,0,1]],[[2,2,2,0],[2,3,0,1],[1,3,3,1],[1,2,0,1]],[[1,2,2,0],[3,3,0,1],[1,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,3,0,1],[1,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,3,0,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,3,0,1],[1,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,3,0,1],[1,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,3,0,1],[1,3,3,1],[1,0,2,1]],[[0,3,2,1],[1,3,3,2],[2,3,1,0],[0,1,1,1]],[[0,2,3,1],[1,3,3,2],[2,3,1,0],[0,1,1,1]],[[0,2,2,2],[1,3,3,2],[2,3,1,0],[0,1,1,1]],[[0,2,2,1],[1,4,3,2],[2,3,1,0],[0,1,1,1]],[[0,3,2,1],[1,3,3,2],[2,3,1,0],[0,1,2,0]],[[0,2,3,1],[1,3,3,2],[2,3,1,0],[0,1,2,0]],[[0,2,2,2],[1,3,3,2],[2,3,1,0],[0,1,2,0]],[[0,2,2,1],[1,4,3,2],[2,3,1,0],[0,1,2,0]],[[0,3,2,1],[1,3,3,2],[2,3,1,0],[0,2,0,1]],[[0,2,3,1],[1,3,3,2],[2,3,1,0],[0,2,0,1]],[[0,2,2,2],[1,3,3,2],[2,3,1,0],[0,2,0,1]],[[0,2,2,1],[1,4,3,2],[2,3,1,0],[0,2,0,1]],[[0,3,2,1],[1,3,3,2],[2,3,1,0],[0,2,1,0]],[[0,2,3,1],[1,3,3,2],[2,3,1,0],[0,2,1,0]],[[0,2,2,2],[1,3,3,2],[2,3,1,0],[0,2,1,0]],[[0,2,2,1],[1,4,3,2],[2,3,1,0],[0,2,1,0]],[[1,2,2,0],[3,3,0,1],[1,3,3,1],[0,2,1,1]],[[1,3,2,0],[2,3,0,1],[1,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,3,0,1],[1,3,3,1],[0,2,1,1]],[[1,2,2,0],[3,3,0,1],[1,3,3,1],[0,1,2,1]],[[1,3,2,0],[2,3,0,1],[1,3,3,1],[0,1,2,1]],[[2,2,2,0],[2,3,0,1],[1,3,3,1],[0,1,2,1]],[[0,3,2,1],[1,3,3,2],[2,3,1,0],[1,0,1,1]],[[0,2,3,1],[1,3,3,2],[2,3,1,0],[1,0,1,1]],[[0,2,2,2],[1,3,3,2],[2,3,1,0],[1,0,1,1]],[[0,2,2,1],[1,4,3,2],[2,3,1,0],[1,0,1,1]],[[0,3,2,1],[1,3,3,2],[2,3,1,0],[1,0,2,0]],[[0,2,3,1],[1,3,3,2],[2,3,1,0],[1,0,2,0]],[[0,2,2,2],[1,3,3,2],[2,3,1,0],[1,0,2,0]],[[0,2,2,1],[1,4,3,2],[2,3,1,0],[1,0,2,0]],[[0,3,2,1],[1,3,3,2],[2,3,1,0],[1,1,0,1]],[[0,2,3,1],[1,3,3,2],[2,3,1,0],[1,1,0,1]],[[0,2,2,2],[1,3,3,2],[2,3,1,0],[1,1,0,1]],[[0,2,2,1],[1,4,3,2],[2,3,1,0],[1,1,0,1]],[[0,3,2,1],[1,3,3,2],[2,3,1,0],[1,1,1,0]],[[0,2,3,1],[1,3,3,2],[2,3,1,0],[1,1,1,0]],[[0,2,2,2],[1,3,3,2],[2,3,1,0],[1,1,1,0]],[[0,2,2,1],[1,4,3,2],[2,3,1,0],[1,1,1,0]],[[1,2,2,0],[3,3,0,1],[1,3,3,0],[1,1,2,1]],[[1,3,2,0],[2,3,0,1],[1,3,3,0],[1,1,2,1]],[[2,2,2,0],[2,3,0,1],[1,3,3,0],[1,1,2,1]],[[1,2,2,0],[3,3,0,1],[1,3,3,0],[0,2,2,1]],[[1,3,2,0],[2,3,0,1],[1,3,3,0],[0,2,2,1]],[[2,2,2,0],[2,3,0,1],[1,3,3,0],[0,2,2,1]],[[0,3,2,1],[1,3,3,2],[2,3,1,0],[1,2,0,0]],[[0,2,3,1],[1,3,3,2],[2,3,1,0],[1,2,0,0]],[[0,2,2,2],[1,3,3,2],[2,3,1,0],[1,2,0,0]],[[0,2,2,1],[1,4,3,2],[2,3,1,0],[1,2,0,0]],[[1,2,2,0],[3,3,0,1],[1,3,2,2],[1,1,2,0]],[[1,3,2,0],[2,3,0,1],[1,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,3,0,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,3,0,1],[1,3,2,2],[0,2,2,0]],[[1,3,2,0],[2,3,0,1],[1,3,2,2],[0,2,2,0]],[[2,2,2,0],[2,3,0,1],[1,3,2,2],[0,2,2,0]],[[1,2,2,0],[3,3,0,1],[1,3,2,1],[1,1,2,1]],[[1,3,2,0],[2,3,0,1],[1,3,2,1],[1,1,2,1]],[[2,2,2,0],[2,3,0,1],[1,3,2,1],[1,1,2,1]],[[1,2,2,0],[3,3,0,1],[1,3,2,1],[0,2,2,1]],[[1,3,2,0],[2,3,0,1],[1,3,2,1],[0,2,2,1]],[[2,2,2,0],[2,3,0,1],[1,3,2,1],[0,2,2,1]],[[1,2,2,0],[3,3,0,1],[1,3,1,2],[1,1,2,1]],[[1,3,2,0],[2,3,0,1],[1,3,1,2],[1,1,2,1]],[[2,2,2,0],[2,3,0,1],[1,3,1,2],[1,1,2,1]],[[1,2,2,0],[3,3,0,1],[1,3,1,2],[0,2,2,1]],[[1,3,2,0],[2,3,0,1],[1,3,1,2],[0,2,2,1]],[[2,2,2,0],[2,3,0,1],[1,3,1,2],[0,2,2,1]],[[1,2,2,0],[3,3,0,1],[0,3,3,2],[1,2,1,0]],[[1,3,2,0],[2,3,0,1],[0,3,3,2],[1,2,1,0]],[[2,2,2,0],[2,3,0,1],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[3,3,0,1],[0,3,3,2],[1,2,0,1]],[[1,3,2,0],[2,3,0,1],[0,3,3,2],[1,2,0,1]],[[2,2,2,0],[2,3,0,1],[0,3,3,2],[1,2,0,1]],[[1,2,2,0],[3,3,0,1],[0,3,3,2],[1,1,2,0]],[[1,3,2,0],[2,3,0,1],[0,3,3,2],[1,1,2,0]],[[2,2,2,0],[2,3,0,1],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[3,3,0,1],[0,3,3,2],[1,1,1,1]],[[1,3,2,0],[2,3,0,1],[0,3,3,2],[1,1,1,1]],[[2,2,2,0],[2,3,0,1],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[3,3,0,1],[0,3,3,1],[1,2,1,1]],[[1,3,2,0],[2,3,0,1],[0,3,3,1],[1,2,1,1]],[[2,2,2,0],[2,3,0,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,0],[3,3,0,1],[0,3,3,1],[1,1,2,1]],[[1,3,2,0],[2,3,0,1],[0,3,3,1],[1,1,2,1]],[[2,2,2,0],[2,3,0,1],[0,3,3,1],[1,1,2,1]],[[1,2,2,0],[3,3,0,1],[0,3,3,0],[1,2,2,1]],[[1,3,2,0],[2,3,0,1],[0,3,3,0],[1,2,2,1]],[[2,2,2,0],[2,3,0,1],[0,3,3,0],[1,2,2,1]],[[1,2,2,0],[3,3,0,1],[0,3,2,2],[1,2,2,0]],[[1,3,2,0],[2,3,0,1],[0,3,2,2],[1,2,2,0]],[[2,2,2,0],[2,3,0,1],[0,3,2,2],[1,2,2,0]],[[1,2,2,0],[3,3,0,1],[0,3,2,1],[1,2,2,1]],[[1,3,2,0],[2,3,0,1],[0,3,2,1],[1,2,2,1]],[[2,2,2,0],[2,3,0,1],[0,3,2,1],[1,2,2,1]],[[1,2,2,0],[3,3,0,1],[0,3,1,2],[1,2,2,1]],[[1,3,2,0],[2,3,0,1],[0,3,1,2],[1,2,2,1]],[[2,2,2,0],[2,3,0,1],[0,3,1,2],[1,2,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[2,3,0,0],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[2,3,0,0],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[3,3,0,0],[2,3,3,2],[1,2,0,0]],[[2,2,2,0],[2,3,0,0],[2,3,3,2],[1,2,0,0]],[[1,2,2,0],[2,3,0,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[2,3,0,0],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[2,3,0,0],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[3,3,0,0],[2,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,3,0,0],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,3,0,0],[2,3,3,2],[2,1,0,1]],[[1,2,2,0],[2,3,0,0],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[2,3,0,0],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[3,3,0,0],[2,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,3,0,0],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,3,0,0],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[2,3,0,0],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[2,3,0,0],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[3,3,0,0],[2,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,3,0,0],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,3,0,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,3,0,0],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[2,3,0,0],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[3,3,0,0],[2,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,3,0,0],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,3,0,0],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[2,3,0,0],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[3,3,0,0],[2,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,3,0,0],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[2,3,0,0],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[2,3,0,0],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[3,3,0,0],[2,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,3,0,0],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,3,0,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[2,3,0,0],[2,4,3,1],[1,2,0,1]],[[1,2,2,0],[2,3,0,0],[3,3,3,1],[1,2,0,1]],[[1,2,2,0],[3,3,0,0],[2,3,3,1],[1,2,0,1]],[[2,2,2,0],[2,3,0,0],[2,3,3,1],[1,2,0,1]],[[1,2,2,0],[2,3,0,0],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[2,3,0,0],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[2,3,0,0],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,3,0,0],[2,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,3,0,0],[2,3,3,1],[1,1,1,1]],[[1,2,2,0],[2,3,0,0],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[2,3,0,0],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[2,3,0,0],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[3,3,0,0],[2,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,3,0,0],[2,3,3,1],[1,0,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[2,3,0,0],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[2,3,0,0],[3,3,3,1],[0,2,1,1]],[[1,2,2,0],[3,3,0,0],[2,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,3,0,0],[2,3,3,1],[0,2,1,1]],[[1,2,2,0],[2,3,0,0],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[2,3,0,0],[3,3,3,1],[0,1,2,1]],[[1,2,2,0],[3,3,0,0],[2,3,3,1],[0,1,2,1]],[[2,2,2,0],[2,3,0,0],[2,3,3,1],[0,1,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,3,0],[2,1,2,1]],[[1,2,2,0],[2,3,0,0],[2,4,3,0],[1,1,2,1]],[[1,2,2,0],[2,3,0,0],[3,3,3,0],[1,1,2,1]],[[1,2,2,0],[3,3,0,0],[2,3,3,0],[1,1,2,1]],[[2,2,2,0],[2,3,0,0],[2,3,3,0],[1,1,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,3,0],[0,2,3,1]],[[1,2,2,0],[2,3,0,0],[2,3,3,0],[0,3,2,1]],[[1,2,2,0],[2,3,0,0],[2,4,3,0],[0,2,2,1]],[[1,2,2,0],[2,3,0,0],[3,3,3,0],[0,2,2,1]],[[1,2,2,0],[3,3,0,0],[2,3,3,0],[0,2,2,1]],[[2,2,2,0],[2,3,0,0],[2,3,3,0],[0,2,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[2,3,0,0],[2,4,2,2],[1,1,2,0]],[[1,2,2,0],[2,3,0,0],[3,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,3,0,0],[2,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,3,0,0],[2,3,2,2],[1,1,2,0]],[[1,2,2,0],[2,3,0,0],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[2,3,0,0],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[2,3,0,0],[3,3,2,2],[0,2,2,0]],[[1,2,2,0],[3,3,0,0],[2,3,2,2],[0,2,2,0]],[[2,2,2,0],[2,3,0,0],[2,3,2,2],[0,2,2,0]],[[1,2,2,0],[2,3,0,0],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[2,3,0,0],[2,4,2,1],[1,1,2,1]],[[1,2,2,0],[2,3,0,0],[3,3,2,1],[1,1,2,1]],[[1,2,2,0],[3,3,0,0],[2,3,2,1],[1,1,2,1]],[[2,2,2,0],[2,3,0,0],[2,3,2,1],[1,1,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[2,3,0,0],[2,3,2,1],[0,3,2,1]],[[1,2,2,0],[2,3,0,0],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[2,3,0,0],[3,3,2,1],[0,2,2,1]],[[1,2,2,0],[3,3,0,0],[2,3,2,1],[0,2,2,1]],[[2,2,2,0],[2,3,0,0],[2,3,2,1],[0,2,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,2,0],[1,3,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,2,0],[2,2,2,1]],[[1,2,2,0],[2,3,0,0],[3,3,2,0],[1,2,2,1]],[[1,2,2,0],[3,3,0,0],[2,3,2,0],[1,2,2,1]],[[2,2,2,0],[2,3,0,0],[2,3,2,0],[1,2,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,1,2],[1,3,2,0]],[[1,2,2,0],[2,3,0,0],[2,3,1,2],[2,2,2,0]],[[1,2,2,0],[2,3,0,0],[3,3,1,2],[1,2,2,0]],[[1,2,2,0],[3,3,0,0],[2,3,1,2],[1,2,2,0]],[[2,2,2,0],[2,3,0,0],[2,3,1,2],[1,2,2,0]],[[1,2,2,0],[2,3,0,0],[2,3,1,1],[1,3,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,1,1],[2,2,2,1]],[[1,2,2,0],[2,3,0,0],[3,3,1,1],[1,2,2,1]],[[1,2,2,0],[3,3,0,0],[2,3,1,1],[1,2,2,1]],[[2,2,2,0],[2,3,0,0],[2,3,1,1],[1,2,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,0,2],[1,3,2,1]],[[1,2,2,0],[2,3,0,0],[2,3,0,2],[2,2,2,1]],[[1,2,2,0],[2,3,0,0],[3,3,0,2],[1,2,2,1]],[[1,2,2,0],[3,3,0,0],[2,3,0,2],[1,2,2,1]],[[2,2,2,0],[2,3,0,0],[2,3,0,2],[1,2,2,1]],[[1,2,2,0],[2,3,0,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[2,3,0,0],[2,2,3,2],[2,2,1,0]],[[1,2,2,0],[2,3,0,0],[3,2,3,2],[1,2,1,0]],[[1,2,2,0],[3,3,0,0],[2,2,3,2],[1,2,1,0]],[[2,2,2,0],[2,3,0,0],[2,2,3,2],[1,2,1,0]],[[1,2,2,0],[2,3,0,0],[2,2,3,2],[2,1,1,1]],[[1,2,2,0],[2,3,0,0],[3,2,3,2],[1,1,1,1]],[[1,2,2,0],[3,3,0,0],[2,2,3,2],[1,1,1,1]],[[1,3,2,0],[2,3,0,0],[2,2,3,2],[1,1,1,1]],[[2,2,2,0],[2,3,0,0],[2,2,3,2],[1,1,1,1]],[[1,2,2,0],[2,3,0,0],[2,2,3,2],[2,0,2,1]],[[1,2,2,0],[2,3,0,0],[3,2,3,2],[1,0,2,1]],[[1,2,2,0],[3,3,0,0],[2,2,3,2],[1,0,2,1]],[[1,3,2,0],[2,3,0,0],[2,2,3,2],[1,0,2,1]],[[2,2,2,0],[2,3,0,0],[2,2,3,2],[1,0,2,1]],[[1,2,2,0],[2,3,0,0],[3,2,3,2],[0,2,1,1]],[[1,2,2,0],[3,3,0,0],[2,2,3,2],[0,2,1,1]],[[1,3,2,0],[2,3,0,0],[2,2,3,2],[0,2,1,1]],[[2,2,2,0],[2,3,0,0],[2,2,3,2],[0,2,1,1]],[[1,2,2,0],[2,3,0,0],[3,2,3,2],[0,1,2,1]],[[1,2,2,0],[3,3,0,0],[2,2,3,2],[0,1,2,1]],[[1,3,2,0],[2,3,0,0],[2,2,3,2],[0,1,2,1]],[[2,2,2,0],[2,3,0,0],[2,2,3,2],[0,1,2,1]],[[1,2,2,0],[2,3,0,0],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[2,3,0,0],[2,2,3,1],[2,2,1,1]],[[1,2,2,0],[2,3,0,0],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[3,3,0,0],[2,2,3,1],[1,2,1,1]],[[2,2,2,0],[2,3,0,0],[2,2,3,1],[1,2,1,1]],[[1,2,2,0],[2,3,0,0],[2,2,3,0],[1,2,3,1]],[[1,2,2,0],[2,3,0,0],[2,2,3,0],[1,3,2,1]],[[1,2,2,0],[2,3,0,0],[2,2,3,0],[2,2,2,1]],[[0,3,2,1],[1,3,3,2],[2,3,2,0],[0,2,0,0]],[[0,2,3,1],[1,3,3,2],[2,3,2,0],[0,2,0,0]],[[0,2,2,2],[1,3,3,2],[2,3,2,0],[0,2,0,0]],[[0,2,2,1],[1,4,3,2],[2,3,2,0],[0,2,0,0]],[[1,2,2,0],[2,3,0,0],[3,2,3,0],[1,2,2,1]],[[1,2,2,0],[3,3,0,0],[2,2,3,0],[1,2,2,1]],[[2,2,2,0],[2,3,0,0],[2,2,3,0],[1,2,2,1]],[[1,2,2,0],[2,3,0,0],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[2,3,0,0],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[2,3,0,0],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[3,3,0,0],[2,2,2,2],[1,2,2,0]],[[2,2,2,0],[2,3,0,0],[2,2,2,2],[1,2,2,0]],[[1,2,2,0],[2,3,0,0],[2,2,2,2],[2,1,2,1]],[[1,2,2,0],[2,3,0,0],[3,2,2,2],[1,1,2,1]],[[1,2,2,0],[3,3,0,0],[2,2,2,2],[1,1,2,1]],[[1,3,2,0],[2,3,0,0],[2,2,2,2],[1,1,2,1]],[[2,2,2,0],[2,3,0,0],[2,2,2,2],[1,1,2,1]],[[1,2,2,0],[2,3,0,0],[3,2,2,2],[0,2,2,1]],[[1,2,2,0],[3,3,0,0],[2,2,2,2],[0,2,2,1]],[[1,3,2,0],[2,3,0,0],[2,2,2,2],[0,2,2,1]],[[2,2,2,0],[2,3,0,0],[2,2,2,2],[0,2,2,1]],[[1,2,2,0],[2,3,0,0],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[2,3,0,0],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[2,3,0,0],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[2,3,0,0],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[3,3,0,0],[2,2,2,1],[1,2,2,1]],[[2,2,2,0],[2,3,0,0],[2,2,2,1],[1,2,2,1]],[[0,3,2,1],[1,3,3,2],[2,3,2,0],[1,1,0,0]],[[0,2,3,1],[1,3,3,2],[2,3,2,0],[1,1,0,0]],[[0,2,2,2],[1,3,3,2],[2,3,2,0],[1,1,0,0]],[[0,2,2,1],[1,4,3,2],[2,3,2,0],[1,1,0,0]],[[1,2,2,0],[2,3,0,0],[2,1,3,2],[1,3,1,1]],[[1,2,2,0],[2,3,0,0],[2,1,3,2],[2,2,1,1]],[[1,2,2,0],[2,3,0,0],[3,1,3,2],[1,2,1,1]],[[1,2,2,0],[3,3,0,0],[2,1,3,2],[1,2,1,1]],[[1,3,2,0],[2,3,0,0],[2,1,3,2],[1,2,1,1]],[[2,2,2,0],[2,3,0,0],[2,1,3,2],[1,2,1,1]],[[1,2,2,0],[2,3,0,0],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[2,3,0,0],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[2,3,0,0],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[2,3,0,0],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[2,3,0,0],[3,1,2,2],[1,2,2,1]],[[1,2,2,0],[3,3,0,0],[2,1,2,2],[1,2,2,1]],[[1,3,2,0],[2,3,0,0],[2,1,2,2],[1,2,2,1]],[[2,2,2,0],[2,3,0,0],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[2,3,0,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[2,3,0,0],[2,0,3,2],[1,2,3,1]],[[1,2,2,0],[2,3,0,0],[2,0,3,2],[1,3,2,1]],[[1,2,2,0],[2,3,0,0],[2,0,3,2],[2,2,2,1]],[[1,2,2,0],[2,3,0,0],[3,0,3,2],[1,2,2,1]],[[1,2,2,0],[3,3,0,0],[2,0,3,2],[1,2,2,1]],[[1,3,2,0],[2,3,0,0],[2,0,3,2],[1,2,2,1]],[[2,2,2,0],[2,3,0,0],[2,0,3,2],[1,2,2,1]],[[1,2,2,0],[2,3,0,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,3,0,0],[1,3,3,2],[2,2,1,0]],[[1,2,2,0],[2,3,0,0],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[3,3,0,0],[1,3,3,2],[1,1,1,1]],[[1,3,2,0],[2,3,0,0],[1,3,3,2],[1,1,1,1]],[[2,2,2,0],[2,3,0,0],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[3,3,0,0],[1,3,3,2],[1,0,2,1]],[[1,3,2,0],[2,3,0,0],[1,3,3,2],[1,0,2,1]],[[2,2,2,0],[2,3,0,0],[1,3,3,2],[1,0,2,1]],[[1,2,2,0],[3,3,0,0],[1,3,3,2],[0,2,1,1]],[[1,3,2,0],[2,3,0,0],[1,3,3,2],[0,2,1,1]],[[2,2,2,0],[2,3,0,0],[1,3,3,2],[0,2,1,1]],[[1,2,2,0],[3,3,0,0],[1,3,3,2],[0,1,2,1]],[[1,3,2,0],[2,3,0,0],[1,3,3,2],[0,1,2,1]],[[2,2,2,0],[2,3,0,0],[1,3,3,2],[0,1,2,1]],[[1,2,2,0],[2,3,0,0],[1,3,3,1],[1,3,1,1]],[[1,2,2,0],[2,3,0,0],[1,3,3,1],[2,2,1,1]],[[1,2,2,0],[2,3,0,0],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[2,3,0,0],[1,3,3,0],[1,2,3,1]],[[1,2,2,0],[2,3,0,0],[1,3,3,0],[1,3,2,1]],[[1,2,2,0],[2,3,0,0],[1,3,3,0],[2,2,2,1]],[[1,2,2,0],[2,3,0,0],[1,4,3,0],[1,2,2,1]],[[1,2,2,0],[2,3,0,0],[1,3,2,2],[1,3,2,0]],[[1,2,2,0],[2,3,0,0],[1,3,2,2],[2,2,2,0]],[[1,2,2,0],[2,3,0,0],[1,4,2,2],[1,2,2,0]],[[1,2,2,0],[3,3,0,0],[1,3,2,2],[1,1,2,1]],[[1,3,2,0],[2,3,0,0],[1,3,2,2],[1,1,2,1]],[[2,2,2,0],[2,3,0,0],[1,3,2,2],[1,1,2,1]],[[1,2,2,0],[3,3,0,0],[1,3,2,2],[0,2,2,1]],[[1,3,2,0],[2,3,0,0],[1,3,2,2],[0,2,2,1]],[[2,2,2,0],[2,3,0,0],[1,3,2,2],[0,2,2,1]],[[1,2,2,0],[2,3,0,0],[1,3,2,1],[1,2,3,1]],[[1,2,2,0],[2,3,0,0],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[2,3,0,0],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[2,3,0,0],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[3,3,0,0],[0,3,3,2],[1,2,1,1]],[[1,3,2,0],[2,3,0,0],[0,3,3,2],[1,2,1,1]],[[2,2,2,0],[2,3,0,0],[0,3,3,2],[1,2,1,1]],[[1,2,2,0],[3,3,0,0],[0,3,3,2],[1,1,2,1]],[[1,3,2,0],[2,3,0,0],[0,3,3,2],[1,1,2,1]],[[2,2,2,0],[2,3,0,0],[0,3,3,2],[1,1,2,1]],[[1,2,2,0],[3,3,0,0],[0,3,2,2],[1,2,2,1]],[[1,3,2,0],[2,3,0,0],[0,3,2,2],[1,2,2,1]],[[2,2,2,0],[2,3,0,0],[0,3,2,2],[1,2,2,1]],[[1,2,2,0],[2,2,3,2],[3,3,2,1],[1,0,0,0]],[[1,2,2,0],[3,2,3,2],[2,3,2,1],[1,0,0,0]],[[1,2,3,0],[2,2,3,2],[2,3,2,1],[1,0,0,0]],[[1,3,2,0],[2,2,3,2],[2,3,2,1],[1,0,0,0]],[[2,2,2,0],[2,2,3,2],[2,3,2,1],[1,0,0,0]],[[1,2,2,0],[2,2,3,2],[3,3,1,1],[1,0,1,0]],[[1,2,2,0],[3,2,3,2],[2,3,1,1],[1,0,1,0]],[[1,2,3,0],[2,2,3,2],[2,3,1,1],[1,0,1,0]],[[1,3,2,0],[2,2,3,2],[2,3,1,1],[1,0,1,0]],[[2,2,2,0],[2,2,3,2],[2,3,1,1],[1,0,1,0]],[[1,2,2,0],[2,2,3,2],[3,3,1,1],[1,0,0,1]],[[1,2,2,0],[3,2,3,2],[2,3,1,1],[1,0,0,1]],[[1,2,3,0],[2,2,3,2],[2,3,1,1],[1,0,0,1]],[[1,3,2,0],[2,2,3,2],[2,3,1,1],[1,0,0,1]],[[2,2,2,0],[2,2,3,2],[2,3,1,1],[1,0,0,1]],[[1,2,2,0],[2,2,3,2],[3,3,1,0],[1,0,1,1]],[[1,2,2,0],[3,2,3,2],[2,3,1,0],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[2,3,1,0],[1,0,1,1]],[[1,3,2,0],[2,2,3,2],[2,3,1,0],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[2,3,1,0],[1,0,1,1]],[[1,2,2,0],[2,2,3,2],[3,3,0,2],[1,0,1,0]],[[1,2,2,0],[3,2,3,2],[2,3,0,2],[1,0,1,0]],[[1,2,3,0],[2,2,3,2],[2,3,0,2],[1,0,1,0]],[[1,3,2,0],[2,2,3,2],[2,3,0,2],[1,0,1,0]],[[2,2,2,0],[2,2,3,2],[2,3,0,2],[1,0,1,0]],[[1,2,2,0],[2,2,3,2],[3,3,0,2],[1,0,0,1]],[[1,2,2,0],[3,2,3,2],[2,3,0,2],[1,0,0,1]],[[1,2,3,0],[2,2,3,2],[2,3,0,2],[1,0,0,1]],[[1,3,2,0],[2,2,3,2],[2,3,0,2],[1,0,0,1]],[[2,2,2,0],[2,2,3,2],[2,3,0,2],[1,0,0,1]],[[1,2,2,0],[2,2,3,2],[2,3,0,1],[2,2,0,0]],[[1,2,2,0],[2,2,3,2],[3,3,0,1],[1,2,0,0]],[[1,2,2,0],[3,2,3,2],[2,3,0,1],[1,2,0,0]],[[1,2,3,0],[2,2,3,2],[2,3,0,1],[1,2,0,0]],[[1,3,2,0],[2,2,3,2],[2,3,0,1],[1,2,0,0]],[[2,2,2,0],[2,2,3,2],[2,3,0,1],[1,2,0,0]],[[1,2,2,0],[2,2,3,2],[2,3,0,1],[2,1,1,0]],[[1,2,2,0],[2,2,3,2],[3,3,0,1],[1,1,1,0]],[[1,2,2,0],[3,2,3,2],[2,3,0,1],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[2,3,0,1],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[2,3,0,1],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[2,3,0,1],[1,1,1,0]],[[1,2,2,0],[2,2,3,2],[2,3,0,1],[2,1,0,1]],[[1,2,2,0],[2,2,3,2],[3,3,0,1],[1,1,0,1]],[[1,2,2,0],[3,2,3,2],[2,3,0,1],[1,1,0,1]],[[1,2,3,0],[2,2,3,2],[2,3,0,1],[1,1,0,1]],[[1,3,2,0],[2,2,3,2],[2,3,0,1],[1,1,0,1]],[[2,2,2,0],[2,2,3,2],[2,3,0,1],[1,1,0,1]],[[1,2,2,0],[2,2,3,2],[3,3,0,1],[0,2,1,0]],[[1,2,2,0],[3,2,3,2],[2,3,0,1],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[2,3,0,1],[0,2,1,0]],[[1,3,2,0],[2,2,3,2],[2,3,0,1],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[2,3,0,1],[0,2,1,0]],[[1,2,2,0],[2,2,3,2],[3,3,0,1],[0,2,0,1]],[[1,2,2,0],[3,2,3,2],[2,3,0,1],[0,2,0,1]],[[1,2,3,0],[2,2,3,2],[2,3,0,1],[0,2,0,1]],[[1,3,2,0],[2,2,3,2],[2,3,0,1],[0,2,0,1]],[[2,2,2,0],[2,2,3,2],[2,3,0,1],[0,2,0,1]],[[1,2,2,0],[2,2,3,2],[2,3,0,0],[2,2,0,1]],[[1,2,2,0],[2,2,3,2],[3,3,0,0],[1,2,0,1]],[[1,2,2,0],[3,2,3,2],[2,3,0,0],[1,2,0,1]],[[1,2,3,0],[2,2,3,2],[2,3,0,0],[1,2,0,1]],[[1,3,2,0],[2,2,3,2],[2,3,0,0],[1,2,0,1]],[[2,2,2,0],[2,2,3,2],[2,3,0,0],[1,2,0,1]],[[1,2,2,0],[2,2,3,2],[2,3,0,0],[2,1,1,1]],[[1,2,2,0],[2,2,3,2],[3,3,0,0],[1,1,1,1]],[[1,2,2,0],[3,2,3,2],[2,3,0,0],[1,1,1,1]],[[1,2,3,0],[2,2,3,2],[2,3,0,0],[1,1,1,1]],[[1,3,2,0],[2,2,3,2],[2,3,0,0],[1,1,1,1]],[[2,2,2,0],[2,2,3,2],[2,3,0,0],[1,1,1,1]],[[1,2,2,0],[2,2,3,2],[3,3,0,0],[0,2,1,1]],[[1,2,2,0],[3,2,3,2],[2,3,0,0],[0,2,1,1]],[[1,2,3,0],[2,2,3,2],[2,3,0,0],[0,2,1,1]],[[1,3,2,0],[2,2,3,2],[2,3,0,0],[0,2,1,1]],[[2,2,2,0],[2,2,3,2],[2,3,0,0],[0,2,1,1]],[[1,2,2,0],[2,2,3,2],[3,2,2,1],[1,1,0,0]],[[1,2,2,0],[3,2,3,2],[2,2,2,1],[1,1,0,0]],[[1,2,3,0],[2,2,3,2],[2,2,2,1],[1,1,0,0]],[[1,3,2,0],[2,2,3,2],[2,2,2,1],[1,1,0,0]],[[2,2,2,0],[2,2,3,2],[2,2,2,1],[1,1,0,0]],[[1,2,2,0],[3,2,3,2],[2,2,2,1],[0,2,0,0]],[[1,2,3,0],[2,2,3,2],[2,2,2,1],[0,2,0,0]],[[1,3,2,0],[2,2,3,2],[2,2,2,1],[0,2,0,0]],[[2,2,2,0],[2,2,3,2],[2,2,2,1],[0,2,0,0]],[[1,2,2,0],[2,2,3,2],[2,2,1,1],[2,2,0,0]],[[1,2,2,0],[2,2,3,2],[3,2,1,1],[1,2,0,0]],[[1,2,2,0],[3,2,3,2],[2,2,1,1],[1,2,0,0]],[[1,2,3,0],[2,2,3,2],[2,2,1,1],[1,2,0,0]],[[1,3,2,0],[2,2,3,2],[2,2,1,1],[1,2,0,0]],[[2,2,2,0],[2,2,3,2],[2,2,1,1],[1,2,0,0]],[[1,2,2,0],[2,2,3,2],[2,2,1,1],[2,1,1,0]],[[1,2,2,0],[2,2,3,2],[3,2,1,1],[1,1,1,0]],[[1,2,2,0],[3,2,3,2],[2,2,1,1],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[2,2,1,1],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[2,2,1,1],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[2,2,1,1],[1,1,1,0]],[[1,2,2,0],[2,2,3,2],[2,2,1,1],[2,1,0,1]],[[1,2,2,0],[2,2,3,2],[3,2,1,1],[1,1,0,1]],[[1,2,2,0],[3,2,3,2],[2,2,1,1],[1,1,0,1]],[[1,2,3,0],[2,2,3,2],[2,2,1,1],[1,1,0,1]],[[1,3,2,0],[2,2,3,2],[2,2,1,1],[1,1,0,1]],[[2,2,2,0],[2,2,3,2],[2,2,1,1],[1,1,0,1]],[[1,2,2,0],[2,2,3,2],[3,2,1,1],[1,0,2,0]],[[1,2,2,0],[3,2,3,2],[2,2,1,1],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[2,2,1,1],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[2,2,1,1],[1,0,2,0]],[[2,2,2,0],[2,2,3,2],[2,2,1,1],[1,0,2,0]],[[1,2,2,0],[2,2,3,2],[3,2,1,1],[1,0,1,1]],[[1,2,2,0],[3,2,3,2],[2,2,1,1],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[2,2,1,1],[1,0,1,1]],[[1,3,2,0],[2,2,3,2],[2,2,1,1],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[2,2,1,1],[1,0,1,1]],[[1,2,2,0],[2,2,3,2],[3,2,1,1],[0,2,1,0]],[[1,2,2,0],[3,2,3,2],[2,2,1,1],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[2,2,1,1],[0,2,1,0]],[[1,3,2,0],[2,2,3,2],[2,2,1,1],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[2,2,1,1],[0,2,1,0]],[[1,2,2,0],[2,2,3,2],[3,2,1,1],[0,2,0,1]],[[1,2,2,0],[3,2,3,2],[2,2,1,1],[0,2,0,1]],[[1,2,3,0],[2,2,3,2],[2,2,1,1],[0,2,0,1]],[[1,3,2,0],[2,2,3,2],[2,2,1,1],[0,2,0,1]],[[2,2,2,0],[2,2,3,2],[2,2,1,1],[0,2,0,1]],[[1,2,2,0],[3,2,3,2],[2,2,1,1],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[2,2,1,1],[0,1,2,0]],[[1,3,2,0],[2,2,3,2],[2,2,1,1],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[2,2,1,1],[0,1,2,0]],[[1,2,2,0],[3,2,3,2],[2,2,1,1],[0,1,1,1]],[[1,2,3,0],[2,2,3,2],[2,2,1,1],[0,1,1,1]],[[1,3,2,0],[2,2,3,2],[2,2,1,1],[0,1,1,1]],[[2,2,2,0],[2,2,3,2],[2,2,1,1],[0,1,1,1]],[[1,2,2,0],[2,2,3,2],[2,2,1,0],[2,2,0,1]],[[1,2,2,0],[2,2,3,2],[3,2,1,0],[1,2,0,1]],[[1,2,2,0],[3,2,3,2],[2,2,1,0],[1,2,0,1]],[[1,2,3,0],[2,2,3,2],[2,2,1,0],[1,2,0,1]],[[1,3,2,0],[2,2,3,2],[2,2,1,0],[1,2,0,1]],[[2,2,2,0],[2,2,3,2],[2,2,1,0],[1,2,0,1]],[[1,2,2,0],[2,2,3,2],[2,2,1,0],[2,1,1,1]],[[1,2,2,0],[2,2,3,2],[3,2,1,0],[1,1,1,1]],[[1,2,2,0],[3,2,3,2],[2,2,1,0],[1,1,1,1]],[[1,2,3,0],[2,2,3,2],[2,2,1,0],[1,1,1,1]],[[1,3,2,0],[2,2,3,2],[2,2,1,0],[1,1,1,1]],[[2,2,2,0],[2,2,3,2],[2,2,1,0],[1,1,1,1]],[[1,2,2,0],[2,2,3,2],[3,2,1,0],[1,0,2,1]],[[1,2,2,0],[3,2,3,2],[2,2,1,0],[1,0,2,1]],[[1,2,3,0],[2,2,3,2],[2,2,1,0],[1,0,2,1]],[[1,3,2,0],[2,2,3,2],[2,2,1,0],[1,0,2,1]],[[2,2,2,0],[2,2,3,2],[2,2,1,0],[1,0,2,1]],[[1,2,2,0],[2,2,3,2],[3,2,1,0],[0,2,1,1]],[[1,2,2,0],[3,2,3,2],[2,2,1,0],[0,2,1,1]],[[1,2,3,0],[2,2,3,2],[2,2,1,0],[0,2,1,1]],[[1,3,2,0],[2,2,3,2],[2,2,1,0],[0,2,1,1]],[[2,2,2,0],[2,2,3,2],[2,2,1,0],[0,2,1,1]],[[1,2,2,0],[3,2,3,2],[2,2,1,0],[0,1,2,1]],[[1,2,3,0],[2,2,3,2],[2,2,1,0],[0,1,2,1]],[[1,3,2,0],[2,2,3,2],[2,2,1,0],[0,1,2,1]],[[2,2,2,0],[2,2,3,2],[2,2,1,0],[0,1,2,1]],[[1,2,2,0],[2,2,3,2],[2,2,0,2],[2,2,0,0]],[[1,2,2,0],[2,2,3,2],[3,2,0,2],[1,2,0,0]],[[1,2,2,0],[3,2,3,2],[2,2,0,2],[1,2,0,0]],[[1,2,3,0],[2,2,3,2],[2,2,0,2],[1,2,0,0]],[[1,3,2,0],[2,2,3,2],[2,2,0,2],[1,2,0,0]],[[2,2,2,0],[2,2,3,2],[2,2,0,2],[1,2,0,0]],[[1,2,2,0],[2,2,3,2],[2,2,0,2],[2,1,1,0]],[[1,2,2,0],[2,2,3,2],[3,2,0,2],[1,1,1,0]],[[1,2,2,0],[3,2,3,2],[2,2,0,2],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[2,2,0,2],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[2,2,0,2],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[2,2,0,2],[1,1,1,0]],[[1,2,2,0],[2,2,3,2],[2,2,0,2],[2,1,0,1]],[[1,2,2,0],[2,2,3,2],[3,2,0,2],[1,1,0,1]],[[1,2,2,0],[3,2,3,2],[2,2,0,2],[1,1,0,1]],[[1,2,3,0],[2,2,3,2],[2,2,0,2],[1,1,0,1]],[[1,3,2,0],[2,2,3,2],[2,2,0,2],[1,1,0,1]],[[2,2,2,0],[2,2,3,2],[2,2,0,2],[1,1,0,1]],[[1,2,2,0],[2,2,3,2],[3,2,0,2],[1,0,2,0]],[[1,2,2,0],[3,2,3,2],[2,2,0,2],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[2,2,0,2],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[2,2,0,2],[1,0,2,0]],[[2,2,2,0],[2,2,3,2],[2,2,0,2],[1,0,2,0]],[[1,2,2,0],[2,2,3,2],[3,2,0,2],[1,0,1,1]],[[1,2,2,0],[3,2,3,2],[2,2,0,2],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[2,2,0,2],[1,0,1,1]],[[1,3,2,0],[2,2,3,2],[2,2,0,2],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[2,2,0,2],[1,0,1,1]],[[1,2,2,0],[2,2,3,2],[3,2,0,2],[0,2,1,0]],[[1,2,2,0],[3,2,3,2],[2,2,0,2],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[2,2,0,2],[0,2,1,0]],[[1,3,2,0],[2,2,3,2],[2,2,0,2],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[2,2,0,2],[0,2,1,0]],[[1,2,2,0],[2,2,3,2],[3,2,0,2],[0,2,0,1]],[[1,2,2,0],[3,2,3,2],[2,2,0,2],[0,2,0,1]],[[1,2,3,0],[2,2,3,2],[2,2,0,2],[0,2,0,1]],[[1,3,2,0],[2,2,3,2],[2,2,0,2],[0,2,0,1]],[[2,2,2,0],[2,2,3,2],[2,2,0,2],[0,2,0,1]],[[1,2,2,0],[3,2,3,2],[2,2,0,2],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[2,2,0,2],[0,1,2,0]],[[1,3,2,0],[2,2,3,2],[2,2,0,2],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[2,2,0,2],[0,1,2,0]],[[1,2,2,0],[3,2,3,2],[2,2,0,2],[0,1,1,1]],[[1,2,3,0],[2,2,3,2],[2,2,0,2],[0,1,1,1]],[[1,3,2,0],[2,2,3,2],[2,2,0,2],[0,1,1,1]],[[2,2,2,0],[2,2,3,2],[2,2,0,2],[0,1,1,1]],[[1,2,2,0],[2,2,3,2],[2,2,0,1],[2,1,2,0]],[[1,2,2,0],[2,2,3,2],[3,2,0,1],[1,1,2,0]],[[1,2,2,0],[3,2,3,2],[2,2,0,1],[1,1,2,0]],[[1,2,3,0],[2,2,3,2],[2,2,0,1],[1,1,2,0]],[[1,3,2,0],[2,2,3,2],[2,2,0,1],[1,1,2,0]],[[2,2,2,0],[2,2,3,2],[2,2,0,1],[1,1,2,0]],[[1,2,2,0],[2,2,3,2],[3,2,0,1],[0,2,2,0]],[[1,2,2,0],[3,2,3,2],[2,2,0,1],[0,2,2,0]],[[1,2,3,0],[2,2,3,2],[2,2,0,1],[0,2,2,0]],[[1,3,2,0],[2,2,3,2],[2,2,0,1],[0,2,2,0]],[[2,2,2,0],[2,2,3,2],[2,2,0,1],[0,2,2,0]],[[1,2,2,0],[2,2,3,2],[2,2,0,0],[2,1,2,1]],[[1,2,2,0],[2,2,3,2],[3,2,0,0],[1,1,2,1]],[[1,2,2,0],[3,2,3,2],[2,2,0,0],[1,1,2,1]],[[1,2,3,0],[2,2,3,2],[2,2,0,0],[1,1,2,1]],[[1,3,2,0],[2,2,3,2],[2,2,0,0],[1,1,2,1]],[[2,2,2,0],[2,2,3,2],[2,2,0,0],[1,1,2,1]],[[1,2,2,0],[2,2,3,2],[3,2,0,0],[0,2,2,1]],[[1,2,2,0],[3,2,3,2],[2,2,0,0],[0,2,2,1]],[[1,2,3,0],[2,2,3,2],[2,2,0,0],[0,2,2,1]],[[1,3,2,0],[2,2,3,2],[2,2,0,0],[0,2,2,1]],[[2,2,2,0],[2,2,3,2],[2,2,0,0],[0,2,2,1]],[[1,2,2,0],[2,2,3,2],[2,1,1,1],[2,2,1,0]],[[1,2,2,0],[2,2,3,2],[3,1,1,1],[1,2,1,0]],[[1,2,2,0],[3,2,3,2],[2,1,1,1],[1,2,1,0]],[[1,2,3,0],[2,2,3,2],[2,1,1,1],[1,2,1,0]],[[1,3,2,0],[2,2,3,2],[2,1,1,1],[1,2,1,0]],[[2,2,2,0],[2,2,3,2],[2,1,1,1],[1,2,1,0]],[[1,2,2,0],[2,2,3,2],[2,1,1,1],[2,2,0,1]],[[1,2,2,0],[2,2,3,2],[3,1,1,1],[1,2,0,1]],[[1,2,2,0],[3,2,3,2],[2,1,1,1],[1,2,0,1]],[[1,2,3,0],[2,2,3,2],[2,1,1,1],[1,2,0,1]],[[1,3,2,0],[2,2,3,2],[2,1,1,1],[1,2,0,1]],[[2,2,2,0],[2,2,3,2],[2,1,1,1],[1,2,0,1]],[[1,2,2,0],[2,2,3,2],[2,1,1,0],[2,2,1,1]],[[1,2,2,0],[2,2,3,2],[3,1,1,0],[1,2,1,1]],[[1,2,2,0],[3,2,3,2],[2,1,1,0],[1,2,1,1]],[[1,2,3,0],[2,2,3,2],[2,1,1,0],[1,2,1,1]],[[1,3,2,0],[2,2,3,2],[2,1,1,0],[1,2,1,1]],[[2,2,2,0],[2,2,3,2],[2,1,1,0],[1,2,1,1]],[[1,2,2,0],[2,2,3,2],[2,1,0,2],[2,2,1,0]],[[1,2,2,0],[2,2,3,2],[3,1,0,2],[1,2,1,0]],[[1,2,2,0],[3,2,3,2],[2,1,0,2],[1,2,1,0]],[[1,2,3,0],[2,2,3,2],[2,1,0,2],[1,2,1,0]],[[1,3,2,0],[2,2,3,2],[2,1,0,2],[1,2,1,0]],[[2,2,2,0],[2,2,3,2],[2,1,0,2],[1,2,1,0]],[[1,2,2,0],[2,2,3,2],[2,1,0,2],[2,2,0,1]],[[1,2,2,0],[2,2,3,2],[3,1,0,2],[1,2,0,1]],[[1,2,2,0],[3,2,3,2],[2,1,0,2],[1,2,0,1]],[[1,2,3,0],[2,2,3,2],[2,1,0,2],[1,2,0,1]],[[1,3,2,0],[2,2,3,2],[2,1,0,2],[1,2,0,1]],[[2,2,2,0],[2,2,3,2],[2,1,0,2],[1,2,0,1]],[[0,2,2,1],[2,0,0,2],[1,2,3,3],[1,2,2,1]],[[0,2,2,1],[2,0,0,2],[1,2,3,2],[2,2,2,1]],[[0,2,2,1],[2,0,0,2],[1,2,3,2],[1,3,2,1]],[[0,2,2,1],[2,0,0,2],[1,2,3,2],[1,2,3,1]],[[0,2,2,1],[2,0,0,2],[1,2,3,2],[1,2,2,2]],[[0,2,2,1],[2,0,0,2],[1,3,3,3],[1,1,2,1]],[[0,2,2,1],[2,0,0,2],[1,3,3,2],[1,1,3,1]],[[0,2,2,1],[2,0,0,2],[1,3,3,2],[1,1,2,2]],[[0,2,2,1],[2,0,0,2],[3,1,3,2],[1,2,2,1]],[[0,2,2,1],[2,0,0,2],[2,1,3,3],[1,2,2,1]],[[0,2,2,1],[2,0,0,2],[2,1,3,2],[2,2,2,1]],[[0,2,2,1],[2,0,0,2],[2,1,3,2],[1,3,2,1]],[[0,2,2,1],[2,0,0,2],[2,1,3,2],[1,2,3,1]],[[0,2,2,1],[2,0,0,2],[2,1,3,2],[1,2,2,2]],[[0,2,2,1],[2,0,0,2],[2,2,3,3],[0,2,2,1]],[[0,2,2,1],[2,0,0,2],[2,2,3,2],[0,3,2,1]],[[0,2,2,1],[2,0,0,2],[2,2,3,2],[0,2,3,1]],[[0,2,2,1],[2,0,0,2],[2,2,3,2],[0,2,2,2]],[[0,2,2,1],[2,0,0,2],[3,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,0,2],[2,3,1,3],[1,2,2,1]],[[0,2,2,1],[2,0,0,2],[2,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,0,0,2],[2,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,0,0,2],[2,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,0,0,2],[2,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,0,0,2],[3,3,2,1],[1,2,2,1]],[[0,2,2,1],[2,0,0,2],[2,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,0,0,2],[2,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,0,0,2],[2,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,0,0,2],[2,3,2,1],[1,2,2,2]],[[0,2,2,1],[2,0,0,2],[3,3,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,0,2],[2,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,0,0,2],[2,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,0,0,2],[2,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,0,0,2],[3,3,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,0,2],[2,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,0,0,2],[2,3,3,1],[1,3,1,1]],[[0,2,2,1],[2,0,0,2],[2,3,3,3],[0,1,2,1]],[[0,2,2,1],[2,0,0,2],[2,3,3,2],[0,1,3,1]],[[0,2,2,1],[2,0,0,2],[2,3,3,2],[0,1,2,2]],[[0,2,2,1],[2,0,0,2],[2,3,3,3],[1,0,2,1]],[[0,2,2,1],[2,0,0,2],[2,3,3,2],[1,0,3,1]],[[0,2,2,1],[2,0,0,2],[2,3,3,2],[1,0,2,2]],[[0,2,2,1],[2,0,0,2],[3,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,0,2],[2,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,0,0,2],[2,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,0,0,2],[3,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,0,2],[2,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,0,0,2],[2,3,3,2],[1,3,1,0]],[[0,2,3,1],[2,0,1,2],[1,1,3,2],[1,2,2,1]],[[0,2,2,2],[2,0,1,2],[1,1,3,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,3],[1,1,3,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,1,3,3],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,1,3,2],[1,2,3,1]],[[0,2,2,1],[2,0,1,2],[1,1,3,2],[1,2,2,2]],[[0,3,2,1],[2,0,1,2],[1,2,2,2],[1,2,2,1]],[[0,2,3,1],[2,0,1,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,2],[2,0,1,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,3],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,2,2,2],[2,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[2,0,1,2],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[2,0,1,2],[1,2,2,2],[1,2,2,2]],[[0,2,2,1],[2,0,1,2],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,2,3,1],[2,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,0,1,2],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,0,1,2],[1,2,3,1],[1,2,2,2]],[[0,3,2,1],[2,0,1,2],[1,2,3,2],[1,2,1,1]],[[0,2,3,1],[2,0,1,2],[1,2,3,2],[1,2,1,1]],[[0,2,2,2],[2,0,1,2],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,1,3],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,1,2],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[2,0,1,2],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[2,0,1,2],[1,2,3,2],[1,2,1,2]],[[0,3,2,1],[2,0,1,2],[1,2,3,2],[1,2,2,0]],[[0,2,3,1],[2,0,1,2],[1,2,3,2],[1,2,2,0]],[[0,2,2,2],[2,0,1,2],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,1,3],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,1,2],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[2,0,1,2],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[2,0,1,2],[1,2,3,2],[2,2,2,0]],[[0,2,2,1],[2,0,1,2],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,0,1,2],[1,2,3,2],[1,2,3,0]],[[0,3,2,1],[2,0,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,3,1],[2,0,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,2,2],[2,0,1,2],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,3],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,4,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,1,3],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,0,1,2],[1,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,0,1,2],[1,4,2,1],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,0,1,2],[1,3,2,1],[1,2,2,2]],[[0,3,2,1],[2,0,1,2],[1,3,2,2],[1,1,2,1]],[[0,2,3,1],[2,0,1,2],[1,3,2,2],[1,1,2,1]],[[0,2,2,2],[2,0,1,2],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[2,0,1,3],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[2,0,1,2],[1,3,2,2],[1,1,2,2]],[[0,2,2,1],[2,0,1,2],[1,4,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,1,2],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,0,1,2],[1,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,0,1,2],[1,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,0,1,2],[1,4,3,1],[1,1,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,1],[1,1,2,2]],[[0,2,2,1],[2,0,1,2],[1,4,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,1,2],[1,3,4,1],[1,2,1,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,1],[1,3,1,1]],[[0,2,3,1],[2,0,1,2],[1,3,3,2],[1,0,2,1]],[[0,2,2,2],[2,0,1,2],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[2,0,1,3],[1,3,3,2],[1,0,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,4,2],[1,0,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,3],[1,0,2,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,2],[1,0,2,2]],[[0,3,2,1],[2,0,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,3,1],[2,0,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,2],[2,0,1,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,0,1,3],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,0,1,2],[1,4,3,2],[1,1,1,1]],[[0,2,2,1],[2,0,1,2],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,2],[1,1,1,2]],[[0,3,2,1],[2,0,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,3,1],[2,0,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,2],[2,0,1,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,0,1,3],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,0,1,2],[1,4,3,2],[1,1,2,0]],[[0,2,2,1],[2,0,1,2],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[2,0,1,2],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[2,0,1,2],[1,3,3,2],[1,1,3,0]],[[0,3,2,1],[2,0,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,3,1],[2,0,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,2],[2,0,1,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,1,3],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,1,2],[1,4,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,1,2],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,0,1,2],[1,3,3,2],[1,2,0,2]],[[0,3,2,1],[2,0,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,3,1],[2,0,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,2],[2,0,1,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,1,3],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,1,2],[1,4,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,1,2],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[2,0,1,2],[1,3,3,3],[1,2,1,0]],[[0,2,2,1],[2,0,1,2],[1,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,0,1,2],[1,3,3,2],[1,3,1,0]],[[0,2,3,1],[2,0,1,2],[2,0,3,2],[1,2,2,1]],[[0,2,2,2],[2,0,1,2],[2,0,3,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,3],[2,0,3,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,0,3,3],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,0,3,2],[1,2,3,1]],[[0,2,2,1],[2,0,1,2],[2,0,3,2],[1,2,2,2]],[[0,3,2,1],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[0,2,3,1],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,2],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[3,0,1,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,3],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[3,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,1,2,3],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,1,2,2],[2,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,1,2,2],[1,3,2,1]],[[0,2,2,1],[2,0,1,2],[2,1,2,2],[1,2,3,1]],[[0,2,2,1],[2,0,1,2],[2,1,2,2],[1,2,2,2]],[[0,2,2,1],[3,0,1,2],[2,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[3,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,1,4,1],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,1,3,1],[1,3,2,1]],[[0,2,2,1],[2,0,1,2],[2,1,3,1],[1,2,3,1]],[[0,2,2,1],[2,0,1,2],[2,1,3,1],[1,2,2,2]],[[0,2,3,1],[2,0,1,2],[2,1,3,2],[0,2,2,1]],[[0,2,2,2],[2,0,1,2],[2,1,3,2],[0,2,2,1]],[[0,2,2,1],[2,0,1,3],[2,1,3,2],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,1,3,3],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,1,3,2],[0,2,3,1]],[[0,2,2,1],[2,0,1,2],[2,1,3,2],[0,2,2,2]],[[0,3,2,1],[2,0,1,2],[2,1,3,2],[1,2,1,1]],[[0,2,3,1],[2,0,1,2],[2,1,3,2],[1,2,1,1]],[[0,2,2,2],[2,0,1,2],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,1,3],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,1,2],[2,1,4,2],[1,2,1,1]],[[0,2,2,1],[2,0,1,2],[2,1,3,3],[1,2,1,1]],[[0,2,2,1],[2,0,1,2],[2,1,3,2],[1,2,1,2]],[[0,3,2,1],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[0,2,3,1],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,2],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[3,0,1,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,1,3],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,1,2],[3,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,1,2],[2,1,4,2],[1,2,2,0]],[[0,2,2,1],[2,0,1,2],[2,1,3,3],[1,2,2,0]],[[0,2,2,1],[2,0,1,2],[2,1,3,2],[2,2,2,0]],[[0,2,2,1],[2,0,1,2],[2,1,3,2],[1,3,2,0]],[[0,2,2,1],[2,0,1,2],[2,1,3,2],[1,2,3,0]],[[0,3,2,1],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[0,2,3,1],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,2],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[3,0,1,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,3],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[3,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[2,0,1,2],[2,2,1,2],[1,2,2,2]],[[0,2,2,1],[3,0,1,2],[2,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[3,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,2,1],[2,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,2,1],[1,3,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,2,1],[1,2,3,1]],[[0,2,2,1],[2,0,1,2],[2,2,2,1],[1,2,2,2]],[[0,3,2,1],[2,0,1,2],[2,2,2,2],[0,2,2,1]],[[0,2,3,1],[2,0,1,2],[2,2,2,2],[0,2,2,1]],[[0,2,2,2],[2,0,1,2],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[2,0,1,3],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,2,2],[0,3,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[2,0,1,2],[2,2,2,2],[0,2,2,2]],[[0,2,2,1],[3,0,1,2],[2,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,1,2],[3,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,1,2],[2,2,2,2],[2,2,2,0]],[[0,2,2,1],[2,0,1,2],[2,2,2,2],[1,3,2,0]],[[0,2,2,1],[2,0,1,2],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[2,0,1,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,3,1],[0,3,2,1]],[[0,2,2,1],[2,0,1,2],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[2,0,1,2],[2,2,3,1],[0,2,2,2]],[[0,2,2,1],[3,0,1,2],[2,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,1,2],[3,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,1,2],[2,2,3,1],[2,2,1,1]],[[0,2,2,1],[2,0,1,2],[2,2,3,1],[1,3,1,1]],[[0,3,2,1],[2,0,1,2],[2,2,3,2],[0,2,1,1]],[[0,2,3,1],[2,0,1,2],[2,2,3,2],[0,2,1,1]],[[0,2,2,2],[2,0,1,2],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,0,1,3],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,0,1,2],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[2,0,1,2],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[2,0,1,2],[2,2,3,2],[0,2,1,2]],[[0,3,2,1],[2,0,1,2],[2,2,3,2],[0,2,2,0]],[[0,2,3,1],[2,0,1,2],[2,2,3,2],[0,2,2,0]],[[0,2,2,2],[2,0,1,2],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,0,1,3],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,0,1,2],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[2,0,1,2],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[2,0,1,2],[2,2,3,2],[0,3,2,0]],[[0,2,2,1],[2,0,1,2],[2,2,3,2],[0,2,3,0]],[[0,2,2,1],[3,0,1,2],[2,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,1,2],[3,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,1,2],[2,2,3,2],[2,2,0,1]],[[0,2,2,1],[2,0,1,2],[2,2,3,2],[1,3,0,1]],[[0,2,2,1],[3,0,1,2],[2,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,1,2],[3,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,1,2],[2,2,3,2],[2,2,1,0]],[[0,2,2,1],[2,0,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[2,2,3,2],[2,1,0,1],[1,3,2,0]],[[1,2,2,0],[2,2,3,2],[2,1,0,1],[2,2,2,0]],[[1,2,2,0],[2,2,3,2],[3,1,0,1],[1,2,2,0]],[[1,2,2,0],[3,2,3,2],[2,1,0,1],[1,2,2,0]],[[1,2,3,0],[2,2,3,2],[2,1,0,1],[1,2,2,0]],[[1,3,2,0],[2,2,3,2],[2,1,0,1],[1,2,2,0]],[[2,2,2,0],[2,2,3,2],[2,1,0,1],[1,2,2,0]],[[1,2,2,0],[2,2,3,2],[2,1,0,0],[1,3,2,1]],[[1,2,2,0],[2,2,3,2],[2,1,0,0],[2,2,2,1]],[[1,2,2,0],[2,2,3,2],[3,1,0,0],[1,2,2,1]],[[1,2,2,0],[3,2,3,2],[2,1,0,0],[1,2,2,1]],[[0,3,2,1],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,3,1],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,2],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[3,0,1,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,1,3],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[3,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,4,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,1,3],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,1,2],[0,3,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,1,2],[0,2,3,1]],[[0,2,2,1],[2,0,1,2],[2,3,1,2],[0,2,2,2]],[[0,2,2,1],[3,0,1,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,1,2],[3,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,1,2],[2,4,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,1,2],[2,1,2,1]],[[0,2,2,1],[3,0,1,2],[2,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,4,2,1],[0,2,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,2,1],[0,3,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,2,1],[0,2,3,1]],[[0,2,2,1],[2,0,1,2],[2,3,2,1],[0,2,2,2]],[[0,2,2,1],[3,0,1,2],[2,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,0,1,2],[3,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,0,1,2],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,2,1],[2,1,2,1]],[[0,3,2,1],[2,0,1,2],[2,3,2,2],[0,1,2,1]],[[0,2,3,1],[2,0,1,2],[2,3,2,2],[0,1,2,1]],[[0,2,2,2],[2,0,1,2],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,0,1,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,0,1,2],[2,3,2,2],[0,1,2,2]],[[0,2,2,1],[3,0,1,2],[2,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,0,1,2],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,0,1,2],[2,4,2,2],[0,2,2,0]],[[0,2,2,1],[2,0,1,2],[2,3,2,2],[0,3,2,0]],[[0,2,2,1],[2,0,1,2],[2,3,2,2],[0,2,3,0]],[[0,3,2,1],[2,0,1,2],[2,3,2,2],[1,0,2,1]],[[0,2,3,1],[2,0,1,2],[2,3,2,2],[1,0,2,1]],[[0,2,2,2],[2,0,1,2],[2,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,0,1,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,2,2],[1,0,3,1]],[[0,2,2,1],[2,0,1,2],[2,3,2,2],[1,0,2,2]],[[0,2,2,1],[3,0,1,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,0,1,2],[3,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,0,1,2],[2,4,2,2],[1,1,2,0]],[[0,2,2,1],[2,0,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,3,0],[2,2,3,2],[2,1,0,0],[1,2,2,1]],[[1,3,2,0],[2,2,3,2],[2,1,0,0],[1,2,2,1]],[[2,2,2,0],[2,2,3,2],[2,1,0,0],[1,2,2,1]],[[0,2,2,1],[3,0,1,2],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,0,1,2],[3,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,0,1,2],[2,4,3,1],[0,1,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,1],[0,1,2,2]],[[0,2,2,1],[3,0,1,2],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,0,1,2],[3,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,0,1,2],[2,4,3,1],[0,2,1,1]],[[0,2,2,1],[2,0,1,2],[2,3,4,1],[0,2,1,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,1],[0,3,1,1]],[[0,2,2,1],[3,0,1,2],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,0,1,2],[3,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,0,1,2],[2,4,3,1],[1,0,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,4,1],[1,0,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,1],[2,0,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,1],[1,0,3,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,1],[1,0,2,2]],[[0,2,2,1],[3,0,1,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,1,2],[3,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,1,2],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,1,2],[2,3,4,1],[1,1,1,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,1],[2,1,1,1]],[[0,3,2,1],[2,0,1,2],[2,3,3,2],[0,0,2,1]],[[0,2,3,1],[2,0,1,2],[2,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,0,1,2],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,0,1,3],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[0,0,2,2]],[[0,3,2,1],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[3,0,1,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,1,3],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,1,2],[3,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,1,2],[2,4,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,1,2],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[0,1,1,2]],[[0,3,2,1],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[3,0,1,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,1,3],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,1,2],[3,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,1,2],[2,4,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,1,2],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,0,1,2],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[0,1,3,0]],[[0,3,2,1],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[3,0,1,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,0,1,3],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,0,1,2],[3,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,0,1,2],[2,4,3,2],[0,2,0,1]],[[0,2,2,1],[2,0,1,2],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[0,3,0,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[0,2,0,2]],[[0,3,2,1],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[3,0,1,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,0,1,3],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,0,1,2],[3,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,0,1,2],[2,4,3,2],[0,2,1,0]],[[0,2,2,1],[2,0,1,2],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,0,1,2],[2,3,3,3],[0,2,1,0]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,2,3,2],[2,0,3,3],[1,0,0,1]],[[0,3,2,1],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,3,1],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,2],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[3,0,1,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,1,3],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,1,2],[3,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,1,2],[2,4,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,1,2],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[2,0,1,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[1,0,1,2]],[[0,3,2,1],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,3,1],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,2],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[3,0,1,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,1,3],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,1,2],[3,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,1,2],[2,4,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,1,2],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[2,0,1,2],[2,3,3,3],[1,0,2,0]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[2,0,2,0]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[1,0,3,0]],[[0,3,2,1],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,3,1],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,2],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[3,0,1,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,0,1,3],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,0,1,2],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,0,1,2],[2,4,3,2],[1,1,0,1]],[[0,2,2,1],[2,0,1,2],[2,3,4,2],[1,1,0,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,3],[1,1,0,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[2,1,0,1]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[1,1,0,2]],[[0,3,2,1],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,3,1],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,2],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[3,0,1,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,0,1,3],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,0,1,2],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,0,1,2],[2,4,3,2],[1,1,1,0]],[[0,2,2,1],[2,0,1,2],[2,3,4,2],[1,1,1,0]],[[0,2,2,1],[2,0,1,2],[2,3,3,3],[1,1,1,0]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[2,2,3,3],[2,0,3,2],[1,0,0,1]],[[1,2,2,0],[2,2,4,2],[2,0,3,2],[1,0,0,1]],[[1,2,2,0],[3,2,3,2],[2,0,3,2],[1,0,0,1]],[[1,2,3,0],[2,2,3,2],[2,0,3,2],[1,0,0,1]],[[1,3,2,0],[2,2,3,2],[2,0,3,2],[1,0,0,1]],[[2,2,2,0],[2,2,3,2],[2,0,3,2],[1,0,0,1]],[[0,2,2,1],[3,0,1,2],[2,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,0,1,2],[3,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,0,1,2],[2,4,3,2],[1,2,0,0]],[[0,2,2,1],[2,0,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[2,2,3,2],[2,0,3,3],[0,1,0,1]],[[1,2,2,0],[2,2,3,3],[2,0,3,2],[0,1,0,1]],[[1,2,2,0],[2,2,4,2],[2,0,3,2],[0,1,0,1]],[[1,2,2,0],[3,2,3,2],[2,0,3,2],[0,1,0,1]],[[1,2,3,0],[2,2,3,2],[2,0,3,2],[0,1,0,1]],[[1,3,2,0],[2,2,3,2],[2,0,3,2],[0,1,0,1]],[[2,2,2,0],[2,2,3,2],[2,0,3,2],[0,1,0,1]],[[0,2,3,1],[2,0,2,2],[0,1,3,2],[1,2,2,1]],[[0,2,2,2],[2,0,2,2],[0,1,3,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,3],[0,1,3,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[0,1,3,3],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[0,1,3,2],[1,2,3,1]],[[0,2,2,1],[2,0,2,2],[0,1,3,2],[1,2,2,2]],[[0,2,3,1],[2,0,2,2],[0,2,2,2],[1,2,2,1]],[[0,2,2,2],[2,0,2,2],[0,2,2,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,3],[0,2,2,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[0,2,2,3],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[0,2,2,2],[1,3,2,1]],[[0,2,2,1],[2,0,2,2],[0,2,2,2],[1,2,3,1]],[[0,2,2,1],[2,0,2,2],[0,2,2,2],[1,2,2,2]],[[0,2,2,1],[2,0,2,2],[0,2,4,1],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[0,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,0,2,2],[0,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,0,2,2],[0,2,3,1],[1,2,2,2]],[[0,2,3,1],[2,0,2,2],[0,2,3,2],[1,2,1,1]],[[0,2,2,2],[2,0,2,2],[0,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,2,3],[0,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,2,2],[0,2,4,2],[1,2,1,1]],[[0,2,2,1],[2,0,2,2],[0,2,3,3],[1,2,1,1]],[[0,2,2,1],[2,0,2,2],[0,2,3,2],[1,2,1,2]],[[0,2,3,1],[2,0,2,2],[0,2,3,2],[1,2,2,0]],[[0,2,2,2],[2,0,2,2],[0,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,2,3],[0,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,2,2],[0,2,4,2],[1,2,2,0]],[[0,2,2,1],[2,0,2,2],[0,2,3,3],[1,2,2,0]],[[0,2,2,1],[2,0,2,2],[0,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,0,2,2],[0,2,3,2],[1,2,3,0]],[[0,2,3,1],[2,0,2,2],[0,3,2,2],[1,1,2,1]],[[0,2,2,2],[2,0,2,2],[0,3,2,2],[1,1,2,1]],[[0,2,2,1],[2,0,2,3],[0,3,2,2],[1,1,2,1]],[[0,2,2,1],[2,0,2,2],[0,3,2,3],[1,1,2,1]],[[0,2,2,1],[2,0,2,2],[0,3,2,2],[1,1,3,1]],[[0,2,2,1],[2,0,2,2],[0,3,2,2],[1,1,2,2]],[[0,2,2,1],[2,0,2,2],[0,3,4,1],[1,1,2,1]],[[0,2,2,1],[2,0,2,2],[0,3,3,1],[1,1,3,1]],[[0,2,2,1],[2,0,2,2],[0,3,3,1],[1,1,2,2]],[[0,2,3,1],[2,0,2,2],[0,3,3,2],[1,0,2,1]],[[0,2,2,2],[2,0,2,2],[0,3,3,2],[1,0,2,1]],[[0,2,2,1],[2,0,2,3],[0,3,3,2],[1,0,2,1]],[[0,2,2,1],[2,0,2,2],[0,3,4,2],[1,0,2,1]],[[0,2,2,1],[2,0,2,2],[0,3,3,3],[1,0,2,1]],[[0,2,2,1],[2,0,2,2],[0,3,3,2],[1,0,2,2]],[[0,2,3,1],[2,0,2,2],[0,3,3,2],[1,1,1,1]],[[0,2,2,2],[2,0,2,2],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,0,2,3],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,0,2,2],[0,3,4,2],[1,1,1,1]],[[0,2,2,1],[2,0,2,2],[0,3,3,3],[1,1,1,1]],[[0,2,2,1],[2,0,2,2],[0,3,3,2],[1,1,1,2]],[[0,2,3,1],[2,0,2,2],[0,3,3,2],[1,1,2,0]],[[0,2,2,2],[2,0,2,2],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,0,2,3],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,0,2,2],[0,3,4,2],[1,1,2,0]],[[0,2,2,1],[2,0,2,2],[0,3,3,3],[1,1,2,0]],[[0,2,2,1],[2,0,2,2],[0,3,3,2],[1,1,3,0]],[[0,2,3,1],[2,0,2,2],[0,3,3,2],[1,2,0,1]],[[0,2,2,2],[2,0,2,2],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,2,3],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,2,2],[0,3,4,2],[1,2,0,1]],[[0,2,2,1],[2,0,2,2],[0,3,3,3],[1,2,0,1]],[[0,2,2,1],[2,0,2,2],[0,3,3,2],[1,2,0,2]],[[0,2,3,1],[2,0,2,2],[0,3,3,2],[1,2,1,0]],[[0,2,2,2],[2,0,2,2],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,2,3],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,2,2],[0,3,4,2],[1,2,1,0]],[[0,2,2,1],[2,0,2,2],[0,3,3,3],[1,2,1,0]],[[0,2,3,1],[2,0,2,2],[1,1,3,2],[0,2,2,1]],[[0,2,2,2],[2,0,2,2],[1,1,3,2],[0,2,2,1]],[[0,2,2,1],[2,0,2,3],[1,1,3,2],[0,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,1,3,3],[0,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,1,3,2],[0,2,3,1]],[[0,2,2,1],[2,0,2,2],[1,1,3,2],[0,2,2,2]],[[0,3,2,1],[2,0,2,2],[1,2,1,2],[1,2,2,1]],[[0,2,3,1],[2,0,2,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,2],[2,0,2,2],[1,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,3],[1,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,2,1,3],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,2,1,2],[2,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,2,1,2],[1,3,2,1]],[[0,2,2,1],[2,0,2,2],[1,2,1,2],[1,2,3,1]],[[0,2,2,1],[2,0,2,2],[1,2,1,2],[1,2,2,2]],[[0,2,3,1],[2,0,2,2],[1,2,2,2],[0,2,2,1]],[[0,2,2,2],[2,0,2,2],[1,2,2,2],[0,2,2,1]],[[0,2,2,1],[2,0,2,3],[1,2,2,2],[0,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,2,2,3],[0,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,2,2,2],[0,2,3,1]],[[0,2,2,1],[2,0,2,2],[1,2,2,2],[0,2,2,2]],[[0,3,2,1],[2,0,2,2],[1,2,2,2],[1,2,1,1]],[[0,2,3,1],[2,0,2,2],[1,2,2,2],[1,2,1,1]],[[0,2,2,2],[2,0,2,2],[1,2,2,2],[1,2,1,1]],[[0,2,2,1],[2,0,2,3],[1,2,2,2],[1,2,1,1]],[[0,2,2,1],[2,0,2,2],[1,2,2,3],[1,2,1,1]],[[0,2,2,1],[2,0,2,2],[1,2,2,2],[1,2,1,2]],[[0,3,2,1],[2,0,2,2],[1,2,2,2],[1,2,2,0]],[[0,2,3,1],[2,0,2,2],[1,2,2,2],[1,2,2,0]],[[0,2,2,2],[2,0,2,2],[1,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,2,3],[1,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,2,2],[1,2,2,3],[1,2,2,0]],[[0,3,2,1],[2,0,2,2],[1,2,3,0],[1,2,2,1]],[[0,2,3,1],[2,0,2,2],[1,2,3,0],[1,2,2,1]],[[0,2,2,2],[2,0,2,2],[1,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,2,3],[1,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,2,4,1],[0,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,2,3,1],[0,2,3,1]],[[0,2,2,1],[2,0,2,2],[1,2,3,1],[0,2,2,2]],[[0,3,2,1],[2,0,2,2],[1,2,3,1],[1,2,1,1]],[[0,2,3,1],[2,0,2,2],[1,2,3,1],[1,2,1,1]],[[0,2,2,2],[2,0,2,2],[1,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,2,3],[1,2,3,1],[1,2,1,1]],[[0,3,2,1],[2,0,2,2],[1,2,3,1],[1,2,2,0]],[[0,2,3,1],[2,0,2,2],[1,2,3,1],[1,2,2,0]],[[0,2,2,2],[2,0,2,2],[1,2,3,1],[1,2,2,0]],[[0,2,2,1],[2,0,2,3],[1,2,3,1],[1,2,2,0]],[[0,2,3,1],[2,0,2,2],[1,2,3,2],[0,2,1,1]],[[0,2,2,2],[2,0,2,2],[1,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,0,2,3],[1,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,0,2,2],[1,2,4,2],[0,2,1,1]],[[0,2,2,1],[2,0,2,2],[1,2,3,3],[0,2,1,1]],[[0,2,2,1],[2,0,2,2],[1,2,3,2],[0,2,1,2]],[[0,2,3,1],[2,0,2,2],[1,2,3,2],[0,2,2,0]],[[0,2,2,2],[2,0,2,2],[1,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,0,2,3],[1,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,0,2,2],[1,2,4,2],[0,2,2,0]],[[0,2,2,1],[2,0,2,2],[1,2,3,3],[0,2,2,0]],[[0,2,2,1],[2,0,2,2],[1,2,3,2],[0,2,3,0]],[[0,3,2,1],[2,0,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,3,1],[2,0,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,2],[2,0,2,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,3],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,4,0,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,0,3],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,0,2],[1,3,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,0,2],[1,2,3,1]],[[0,2,2,1],[2,0,2,2],[1,3,0,2],[1,2,2,2]],[[0,3,2,1],[2,0,2,2],[1,3,1,2],[1,1,2,1]],[[0,2,3,1],[2,0,2,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,2],[2,0,2,2],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,2,3],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,1,3],[1,1,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,1,2],[1,1,3,1]],[[0,2,2,1],[2,0,2,2],[1,3,1,2],[1,1,2,2]],[[0,2,3,1],[2,0,2,2],[1,3,2,2],[0,1,2,1]],[[0,2,2,2],[2,0,2,2],[1,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,0,2,3],[1,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,0,2,2],[1,3,2,2],[0,1,2,2]],[[0,3,2,1],[2,0,2,2],[1,3,2,2],[1,1,1,1]],[[0,2,3,1],[2,0,2,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,2],[2,0,2,2],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,0,2,3],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,0,2,2],[1,3,2,3],[1,1,1,1]],[[0,2,2,1],[2,0,2,2],[1,3,2,2],[1,1,1,2]],[[0,3,2,1],[2,0,2,2],[1,3,2,2],[1,1,2,0]],[[0,2,3,1],[2,0,2,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,2],[2,0,2,2],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,0,2,3],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,0,2,2],[1,3,2,3],[1,1,2,0]],[[0,3,2,1],[2,0,2,2],[1,3,2,2],[1,2,0,1]],[[0,2,3,1],[2,0,2,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,2],[2,0,2,2],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,0,2,3],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,0,2,2],[1,3,2,3],[1,2,0,1]],[[0,2,2,1],[2,0,2,2],[1,3,2,2],[1,2,0,2]],[[0,3,2,1],[2,0,2,2],[1,3,2,2],[1,2,1,0]],[[0,2,3,1],[2,0,2,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,2],[2,0,2,2],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,0,2,3],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,0,2,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,0],[2,2,3,3],[2,0,3,1],[1,1,1,0]],[[1,2,2,0],[2,2,4,2],[2,0,3,1],[1,1,1,0]],[[1,2,2,0],[3,2,3,2],[2,0,3,1],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[2,0,3,1],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[2,0,3,1],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[2,0,3,1],[1,1,1,0]],[[1,2,2,0],[2,2,3,3],[2,0,3,1],[1,1,0,1]],[[1,2,2,0],[2,2,4,2],[2,0,3,1],[1,1,0,1]],[[0,3,2,1],[2,0,2,2],[1,3,3,0],[1,1,2,1]],[[0,2,3,1],[2,0,2,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,2],[2,0,2,2],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,0,2,3],[1,3,3,0],[1,1,2,1]],[[0,3,2,1],[2,0,2,2],[1,3,3,0],[1,2,1,1]],[[0,2,3,1],[2,0,2,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,2],[2,0,2,2],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,0,2,3],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,0,2,2],[1,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,0,2,2],[1,3,3,1],[0,1,2,2]],[[0,3,2,1],[2,0,2,2],[1,3,3,1],[1,1,1,1]],[[0,2,3,1],[2,0,2,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,2],[2,0,2,2],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,2,3],[1,3,3,1],[1,1,1,1]],[[0,3,2,1],[2,0,2,2],[1,3,3,1],[1,1,2,0]],[[0,2,3,1],[2,0,2,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,2],[2,0,2,2],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,0,2,3],[1,3,3,1],[1,1,2,0]],[[0,3,2,1],[2,0,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,3,1],[2,0,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,2],[2,0,2,2],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,0,2,3],[1,3,3,1],[1,2,0,1]],[[0,3,2,1],[2,0,2,2],[1,3,3,1],[1,2,1,0]],[[0,2,3,1],[2,0,2,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,2],[2,0,2,2],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,0,2,3],[1,3,3,1],[1,2,1,0]],[[1,2,2,0],[3,2,3,2],[2,0,3,1],[1,1,0,1]],[[1,2,3,0],[2,2,3,2],[2,0,3,1],[1,1,0,1]],[[1,3,2,0],[2,2,3,2],[2,0,3,1],[1,1,0,1]],[[2,2,2,0],[2,2,3,2],[2,0,3,1],[1,1,0,1]],[[0,2,3,1],[2,0,2,2],[1,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,0,2,2],[1,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,0,2,3],[1,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,0,2,2],[1,3,3,2],[0,0,2,2]],[[0,2,3,1],[2,0,2,2],[1,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,0,2,2],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,2,3],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,2,2],[1,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,0,2,2],[1,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,0,2,2],[1,3,3,2],[0,1,1,2]],[[0,2,3,1],[2,0,2,2],[1,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,0,2,2],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,2,3],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,2,2],[1,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,0,2,2],[1,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,0,2,2],[1,3,3,2],[0,1,3,0]],[[0,2,3,1],[2,0,2,2],[1,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,0,2,2],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,0,2,3],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,0,2,2],[1,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,0,2,2],[1,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,0,2,2],[1,3,3,2],[0,2,0,2]],[[0,2,3,1],[2,0,2,2],[1,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,0,2,2],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,0,2,3],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,0,2,2],[1,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,0,2,2],[1,3,3,3],[0,2,1,0]],[[1,2,2,0],[2,2,3,3],[2,0,3,1],[1,0,2,0]],[[1,2,2,0],[2,2,4,2],[2,0,3,1],[1,0,2,0]],[[1,2,2,0],[3,2,3,2],[2,0,3,1],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[2,0,3,1],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[2,0,3,1],[1,0,2,0]],[[2,2,2,0],[2,2,3,2],[2,0,3,1],[1,0,2,0]],[[1,2,2,0],[2,2,3,3],[2,0,3,1],[1,0,1,1]],[[0,2,3,1],[2,0,2,2],[1,3,3,2],[1,0,1,1]],[[0,2,2,2],[2,0,2,2],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,2,3],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,2,2],[1,3,4,2],[1,0,1,1]],[[0,2,2,1],[2,0,2,2],[1,3,3,3],[1,0,1,1]],[[0,2,2,1],[2,0,2,2],[1,3,3,2],[1,0,1,2]],[[0,2,3,1],[2,0,2,2],[1,3,3,2],[1,0,2,0]],[[0,2,2,2],[2,0,2,2],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,2,3],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,2,2],[1,3,4,2],[1,0,2,0]],[[0,2,2,1],[2,0,2,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,0],[2,2,4,2],[2,0,3,1],[1,0,1,1]],[[1,2,2,0],[3,2,3,2],[2,0,3,1],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[2,0,3,1],[1,0,1,1]],[[1,3,2,0],[2,2,3,2],[2,0,3,1],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[2,0,3,1],[1,0,1,1]],[[1,2,2,0],[2,2,3,3],[2,0,3,1],[0,2,1,0]],[[1,2,2,0],[2,2,4,2],[2,0,3,1],[0,2,1,0]],[[1,2,2,0],[3,2,3,2],[2,0,3,1],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[2,0,3,1],[0,2,1,0]],[[1,3,2,0],[2,2,3,2],[2,0,3,1],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[2,0,3,1],[0,2,1,0]],[[1,2,2,0],[2,2,3,3],[2,0,3,1],[0,2,0,1]],[[1,2,2,0],[2,2,4,2],[2,0,3,1],[0,2,0,1]],[[1,2,2,0],[3,2,3,2],[2,0,3,1],[0,2,0,1]],[[1,2,3,0],[2,2,3,2],[2,0,3,1],[0,2,0,1]],[[1,3,2,0],[2,2,3,2],[2,0,3,1],[0,2,0,1]],[[2,2,2,0],[2,2,3,2],[2,0,3,1],[0,2,0,1]],[[0,3,2,1],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[0,2,3,1],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,2],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[3,0,2,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,3],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[3,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[2,1,1,3],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[2,1,1,2],[2,2,2,1]],[[0,2,2,1],[2,0,2,2],[2,1,1,2],[1,3,2,1]],[[0,2,2,1],[2,0,2,2],[2,1,1,2],[1,2,3,1]],[[0,2,2,1],[2,0,2,2],[2,1,1,2],[1,2,2,2]],[[0,3,2,1],[2,0,2,2],[2,1,2,2],[1,2,1,1]],[[0,2,3,1],[2,0,2,2],[2,1,2,2],[1,2,1,1]],[[0,2,2,2],[2,0,2,2],[2,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,0,2,3],[2,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,0,2,2],[2,1,2,3],[1,2,1,1]],[[0,2,2,1],[2,0,2,2],[2,1,2,2],[1,2,1,2]],[[0,3,2,1],[2,0,2,2],[2,1,2,2],[1,2,2,0]],[[0,2,3,1],[2,0,2,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,2],[2,0,2,2],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,2,3],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,2,2],[2,1,2,3],[1,2,2,0]],[[0,3,2,1],[2,0,2,2],[2,1,3,0],[1,2,2,1]],[[0,2,3,1],[2,0,2,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,2],[2,0,2,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,2,3],[2,1,3,0],[1,2,2,1]],[[0,3,2,1],[2,0,2,2],[2,1,3,1],[1,2,1,1]],[[0,2,3,1],[2,0,2,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,2],[2,0,2,2],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,2,3],[2,1,3,1],[1,2,1,1]],[[0,3,2,1],[2,0,2,2],[2,1,3,1],[1,2,2,0]],[[0,2,3,1],[2,0,2,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,2],[2,0,2,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,0,2,3],[2,1,3,1],[1,2,2,0]],[[1,2,2,0],[2,2,3,3],[2,0,3,1],[0,1,2,0]],[[1,2,2,0],[2,2,4,2],[2,0,3,1],[0,1,2,0]],[[1,2,2,0],[3,2,3,2],[2,0,3,1],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[2,0,3,1],[0,1,2,0]],[[1,3,2,0],[2,2,3,2],[2,0,3,1],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[2,0,3,1],[0,1,2,0]],[[1,2,2,0],[2,2,3,3],[2,0,3,1],[0,1,1,1]],[[1,2,2,0],[2,2,4,2],[2,0,3,1],[0,1,1,1]],[[1,2,2,0],[3,2,3,2],[2,0,3,1],[0,1,1,1]],[[1,2,3,0],[2,2,3,2],[2,0,3,1],[0,1,1,1]],[[1,3,2,0],[2,2,3,2],[2,0,3,1],[0,1,1,1]],[[0,3,2,1],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[0,2,3,1],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,2],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[3,0,2,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,3],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[3,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[2,2,0,3],[1,2,2,1]],[[0,2,2,1],[2,0,2,2],[2,2,0,2],[2,2,2,1]],[[0,2,2,1],[2,0,2,2],[2,2,0,2],[1,3,2,1]],[[0,2,2,1],[2,0,2,2],[2,2,0,2],[1,2,3,1]],[[0,2,2,1],[2,0,2,2],[2,2,0,2],[1,2,2,2]],[[0,3,2,1],[2,0,2,2],[2,2,1,2],[0,2,2,1]],[[0,2,3,1],[2,0,2,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,2],[2,0,2,2],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,2,3],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,2,2],[2,2,1,3],[0,2,2,1]],[[0,2,2,1],[2,0,2,2],[2,2,1,2],[0,3,2,1]],[[0,2,2,1],[2,0,2,2],[2,2,1,2],[0,2,3,1]],[[0,2,2,1],[2,0,2,2],[2,2,1,2],[0,2,2,2]],[[0,3,2,1],[2,0,2,2],[2,2,2,2],[0,2,1,1]],[[0,2,3,1],[2,0,2,2],[2,2,2,2],[0,2,1,1]],[[0,2,2,2],[2,0,2,2],[2,2,2,2],[0,2,1,1]],[[0,2,2,1],[2,0,2,3],[2,2,2,2],[0,2,1,1]],[[0,2,2,1],[2,0,2,2],[2,2,2,3],[0,2,1,1]],[[0,2,2,1],[2,0,2,2],[2,2,2,2],[0,2,1,2]],[[0,3,2,1],[2,0,2,2],[2,2,2,2],[0,2,2,0]],[[0,2,3,1],[2,0,2,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,2],[2,0,2,2],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,0,2,3],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,0,2,2],[2,2,2,3],[0,2,2,0]],[[2,2,2,0],[2,2,3,2],[2,0,3,1],[0,1,1,1]],[[1,2,2,0],[2,2,3,3],[2,0,3,1],[0,0,2,1]],[[1,2,2,0],[2,2,4,2],[2,0,3,1],[0,0,2,1]],[[1,2,2,0],[3,2,3,2],[2,0,3,1],[0,0,2,1]],[[1,2,3,0],[2,2,3,2],[2,0,3,1],[0,0,2,1]],[[1,3,2,0],[2,2,3,2],[2,0,3,1],[0,0,2,1]],[[2,2,2,0],[2,2,3,2],[2,0,3,1],[0,0,2,1]],[[0,3,2,1],[2,0,2,2],[2,2,3,0],[0,2,2,1]],[[0,2,3,1],[2,0,2,2],[2,2,3,0],[0,2,2,1]],[[0,2,2,2],[2,0,2,2],[2,2,3,0],[0,2,2,1]],[[0,2,2,1],[2,0,2,3],[2,2,3,0],[0,2,2,1]],[[0,3,2,1],[2,0,2,2],[2,2,3,1],[0,2,1,1]],[[0,2,3,1],[2,0,2,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,2],[2,0,2,2],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,0,2,3],[2,2,3,1],[0,2,1,1]],[[0,3,2,1],[2,0,2,2],[2,2,3,1],[0,2,2,0]],[[0,2,3,1],[2,0,2,2],[2,2,3,1],[0,2,2,0]],[[0,2,2,2],[2,0,2,2],[2,2,3,1],[0,2,2,0]],[[0,2,2,1],[2,0,2,3],[2,2,3,1],[0,2,2,0]],[[1,2,2,0],[2,2,4,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,0],[3,2,3,2],[2,0,3,0],[1,1,1,1]],[[1,2,3,0],[2,2,3,2],[2,0,3,0],[1,1,1,1]],[[1,3,2,0],[2,2,3,2],[2,0,3,0],[1,1,1,1]],[[2,2,2,0],[2,2,3,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,0],[2,2,3,3],[2,0,3,0],[1,0,2,1]],[[1,2,2,0],[2,2,4,2],[2,0,3,0],[1,0,2,1]],[[1,2,2,0],[3,2,3,2],[2,0,3,0],[1,0,2,1]],[[1,2,3,0],[2,2,3,2],[2,0,3,0],[1,0,2,1]],[[1,3,2,0],[2,2,3,2],[2,0,3,0],[1,0,2,1]],[[2,2,2,0],[2,2,3,2],[2,0,3,0],[1,0,2,1]],[[1,2,2,0],[2,2,4,2],[2,0,3,0],[0,2,1,1]],[[1,2,2,0],[3,2,3,2],[2,0,3,0],[0,2,1,1]],[[1,2,3,0],[2,2,3,2],[2,0,3,0],[0,2,1,1]],[[1,3,2,0],[2,2,3,2],[2,0,3,0],[0,2,1,1]],[[2,2,2,0],[2,2,3,2],[2,0,3,0],[0,2,1,1]],[[1,2,2,0],[2,2,3,3],[2,0,3,0],[0,1,2,1]],[[1,2,2,0],[2,2,4,2],[2,0,3,0],[0,1,2,1]],[[1,2,2,0],[3,2,3,2],[2,0,3,0],[0,1,2,1]],[[1,2,3,0],[2,2,3,2],[2,0,3,0],[0,1,2,1]],[[1,3,2,0],[2,2,3,2],[2,0,3,0],[0,1,2,1]],[[2,2,2,0],[2,2,3,2],[2,0,3,0],[0,1,2,1]],[[0,3,2,1],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,3,1],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,2],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[3,0,2,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,0,2,3],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,0,2,2],[3,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,0,2,2],[2,4,0,2],[0,2,2,1]],[[0,2,2,1],[2,0,2,2],[2,3,0,3],[0,2,2,1]],[[0,2,2,1],[2,0,2,2],[2,3,0,2],[0,3,2,1]],[[0,2,2,1],[2,0,2,2],[2,3,0,2],[0,2,3,1]],[[0,2,2,1],[2,0,2,2],[2,3,0,2],[0,2,2,2]],[[0,2,2,1],[3,0,2,2],[2,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,0,2,2],[3,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,0,2,2],[2,4,0,2],[1,1,2,1]],[[0,2,2,1],[2,0,2,2],[2,3,0,2],[2,1,2,1]],[[0,3,2,1],[2,0,2,2],[2,3,1,2],[0,1,2,1]],[[0,2,3,1],[2,0,2,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,2],[2,0,2,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,0,2,3],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,0,2,2],[2,3,1,3],[0,1,2,1]],[[0,2,2,1],[2,0,2,2],[2,3,1,2],[0,1,3,1]],[[0,2,2,1],[2,0,2,2],[2,3,1,2],[0,1,2,2]],[[0,3,2,1],[2,0,2,2],[2,3,1,2],[1,0,2,1]],[[0,2,3,1],[2,0,2,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,2],[2,0,2,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,0,2,3],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,0,2,2],[2,3,1,3],[1,0,2,1]],[[0,2,2,1],[2,0,2,2],[2,3,1,2],[1,0,3,1]],[[0,2,2,1],[2,0,2,2],[2,3,1,2],[1,0,2,2]],[[0,3,2,1],[2,0,2,2],[2,3,2,2],[0,0,2,1]],[[0,2,3,1],[2,0,2,2],[2,3,2,2],[0,0,2,1]],[[0,2,2,2],[2,0,2,2],[2,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,0,2,3],[2,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,0,2,2],[2,3,2,3],[0,0,2,1]],[[0,2,2,1],[2,0,2,2],[2,3,2,2],[0,0,2,2]],[[0,3,2,1],[2,0,2,2],[2,3,2,2],[0,1,1,1]],[[0,2,3,1],[2,0,2,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,0,2,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,0,2,3],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,0,2,2],[2,3,2,3],[0,1,1,1]],[[0,2,2,1],[2,0,2,2],[2,3,2,2],[0,1,1,2]],[[0,3,2,1],[2,0,2,2],[2,3,2,2],[0,1,2,0]],[[0,2,3,1],[2,0,2,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,0,2,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,0,2,3],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,0,2,2],[2,3,2,3],[0,1,2,0]],[[0,3,2,1],[2,0,2,2],[2,3,2,2],[0,2,0,1]],[[0,2,3,1],[2,0,2,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,0,2,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,0,2,3],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,0,2,2],[2,3,2,3],[0,2,0,1]],[[0,2,2,1],[2,0,2,2],[2,3,2,2],[0,2,0,2]],[[0,3,2,1],[2,0,2,2],[2,3,2,2],[0,2,1,0]],[[0,2,3,1],[2,0,2,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,0,2,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,0,2,3],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,0,2,2],[2,3,2,3],[0,2,1,0]],[[0,3,2,1],[2,0,2,2],[2,3,2,2],[1,0,1,1]],[[0,2,3,1],[2,0,2,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,2],[2,0,2,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,0,2,3],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,0,2,2],[2,3,2,3],[1,0,1,1]],[[0,2,2,1],[2,0,2,2],[2,3,2,2],[1,0,1,2]],[[0,3,2,1],[2,0,2,2],[2,3,2,2],[1,0,2,0]],[[0,2,3,1],[2,0,2,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,2],[2,0,2,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,0,2,3],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,0,2,2],[2,3,2,3],[1,0,2,0]],[[0,3,2,1],[2,0,2,2],[2,3,2,2],[1,1,0,1]],[[0,2,3,1],[2,0,2,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,2],[2,0,2,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,0,2,3],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,0,2,2],[2,3,2,3],[1,1,0,1]],[[0,2,2,1],[2,0,2,2],[2,3,2,2],[1,1,0,2]],[[0,3,2,1],[2,0,2,2],[2,3,2,2],[1,1,1,0]],[[0,2,3,1],[2,0,2,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,2],[2,0,2,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,0,2,3],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,0,2,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,0],[2,2,3,3],[2,0,2,2],[1,1,1,0]],[[1,2,2,0],[2,2,4,2],[2,0,2,2],[1,1,1,0]],[[1,2,2,0],[3,2,3,2],[2,0,2,2],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[2,0,2,2],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[2,0,2,2],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[2,0,2,2],[1,1,1,0]],[[1,2,2,0],[2,2,3,2],[2,0,2,3],[1,1,0,1]],[[1,2,2,0],[2,2,3,3],[2,0,2,2],[1,1,0,1]],[[1,2,2,0],[2,2,4,2],[2,0,2,2],[1,1,0,1]],[[1,2,2,0],[3,2,3,2],[2,0,2,2],[1,1,0,1]],[[1,2,3,0],[2,2,3,2],[2,0,2,2],[1,1,0,1]],[[1,3,2,0],[2,2,3,2],[2,0,2,2],[1,1,0,1]],[[2,2,2,0],[2,2,3,2],[2,0,2,2],[1,1,0,1]],[[1,2,2,0],[2,2,3,2],[2,0,2,3],[1,0,2,0]],[[1,2,2,0],[2,2,3,3],[2,0,2,2],[1,0,2,0]],[[1,2,2,0],[2,2,4,2],[2,0,2,2],[1,0,2,0]],[[1,2,2,0],[3,2,3,2],[2,0,2,2],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[2,0,2,2],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[2,0,2,2],[1,0,2,0]],[[2,2,2,0],[2,2,3,2],[2,0,2,2],[1,0,2,0]],[[1,2,2,0],[2,2,3,2],[2,0,2,2],[1,0,1,2]],[[1,2,2,0],[2,2,3,2],[2,0,2,3],[1,0,1,1]],[[1,2,2,0],[2,2,3,3],[2,0,2,2],[1,0,1,1]],[[1,2,2,0],[2,2,4,2],[2,0,2,2],[1,0,1,1]],[[1,2,2,0],[3,2,3,2],[2,0,2,2],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[2,0,2,2],[1,0,1,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,0,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,0,2,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,0,2,3],[2,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,0,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,2],[2,0,2,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,0,2,3],[2,3,3,0],[0,2,1,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,3,1],[2,0,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,2],[2,0,2,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,0,2,3],[2,3,3,0],[1,0,2,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,3,1],[2,0,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,2],[2,0,2,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,0,2,3],[2,3,3,0],[1,1,1,1]],[[1,3,2,0],[2,2,3,2],[2,0,2,2],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[2,0,2,2],[1,0,1,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,0,2,2],[2,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,0,2,2],[2,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,0,2,3],[2,3,3,1],[0,0,2,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,0,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,0,2,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,0,2,3],[2,3,3,1],[0,1,1,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,0,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,0,2,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,0,2,3],[2,3,3,1],[0,1,2,0]],[[0,3,2,1],[2,0,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,0,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,0,2,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,0,2,3],[2,3,3,1],[0,2,0,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,0,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,0,2,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,0,2,3],[2,3,3,1],[0,2,1,0]],[[0,3,2,1],[2,0,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,3,1],[2,0,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,2],[2,0,2,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,0,2,3],[2,3,3,1],[1,0,1,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,3,1],[2,0,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,2],[2,0,2,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,0,2,3],[2,3,3,1],[1,0,2,0]],[[0,3,2,1],[2,0,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,3,1],[2,0,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,2],[2,0,2,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,0,2,3],[2,3,3,1],[1,1,0,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,3,1],[2,0,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,2],[2,0,2,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,0,2,3],[2,3,3,1],[1,1,1,0]],[[1,2,2,0],[2,2,3,3],[2,0,2,2],[0,2,1,0]],[[1,2,2,0],[2,2,4,2],[2,0,2,2],[0,2,1,0]],[[1,2,2,0],[3,2,3,2],[2,0,2,2],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[2,0,2,2],[0,2,1,0]],[[1,3,2,0],[2,2,3,2],[2,0,2,2],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[2,0,2,2],[0,2,1,0]],[[1,2,2,0],[2,2,3,2],[2,0,2,3],[0,2,0,1]],[[1,2,2,0],[2,2,3,3],[2,0,2,2],[0,2,0,1]],[[1,2,2,0],[2,2,4,2],[2,0,2,2],[0,2,0,1]],[[1,2,2,0],[3,2,3,2],[2,0,2,2],[0,2,0,1]],[[1,2,3,0],[2,2,3,2],[2,0,2,2],[0,2,0,1]],[[1,3,2,0],[2,2,3,2],[2,0,2,2],[0,2,0,1]],[[2,2,2,0],[2,2,3,2],[2,0,2,2],[0,2,0,1]],[[1,2,2,0],[2,2,3,2],[2,0,2,3],[0,1,2,0]],[[1,2,2,0],[2,2,3,3],[2,0,2,2],[0,1,2,0]],[[1,2,2,0],[2,2,4,2],[2,0,2,2],[0,1,2,0]],[[1,2,2,0],[3,2,3,2],[2,0,2,2],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[2,0,2,2],[0,1,2,0]],[[1,3,2,0],[2,2,3,2],[2,0,2,2],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[2,0,2,2],[0,1,2,0]],[[1,2,2,0],[2,2,3,2],[2,0,2,2],[0,1,1,2]],[[1,2,2,0],[2,2,3,2],[2,0,2,3],[0,1,1,1]],[[1,2,2,0],[2,2,3,3],[2,0,2,2],[0,1,1,1]],[[1,2,2,0],[2,2,4,2],[2,0,2,2],[0,1,1,1]],[[1,2,2,0],[3,2,3,2],[2,0,2,2],[0,1,1,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,2],[0,1,0,1]],[[0,2,3,1],[2,0,2,2],[2,3,3,2],[0,1,0,1]],[[0,2,2,2],[2,0,2,2],[2,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,0,2,3],[2,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,0,2,2],[2,3,3,3],[0,1,0,1]],[[1,2,3,0],[2,2,3,2],[2,0,2,2],[0,1,1,1]],[[1,3,2,0],[2,2,3,2],[2,0,2,2],[0,1,1,1]],[[2,2,2,0],[2,2,3,2],[2,0,2,2],[0,1,1,1]],[[1,2,2,0],[2,2,3,2],[2,0,2,2],[0,0,2,2]],[[1,2,2,0],[2,2,3,2],[2,0,2,3],[0,0,2,1]],[[1,2,2,0],[2,2,3,3],[2,0,2,2],[0,0,2,1]],[[1,2,2,0],[2,2,4,2],[2,0,2,2],[0,0,2,1]],[[1,2,2,0],[3,2,3,2],[2,0,2,2],[0,0,2,1]],[[1,2,3,0],[2,2,3,2],[2,0,2,2],[0,0,2,1]],[[1,3,2,0],[2,2,3,2],[2,0,2,2],[0,0,2,1]],[[2,2,2,0],[2,2,3,2],[2,0,2,2],[0,0,2,1]],[[0,3,2,1],[2,0,2,2],[2,3,3,2],[1,0,0,1]],[[0,2,3,1],[2,0,2,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,2],[2,0,2,2],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,0,2,3],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,0,2,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,0],[2,2,3,2],[2,0,1,2],[1,0,2,2]],[[1,2,2,0],[2,2,3,2],[2,0,1,3],[1,0,2,1]],[[1,2,2,0],[2,2,3,3],[2,0,1,2],[1,0,2,1]],[[1,2,2,0],[2,2,4,2],[2,0,1,2],[1,0,2,1]],[[1,2,2,0],[3,2,3,2],[2,0,1,2],[1,0,2,1]],[[1,2,3,0],[2,2,3,2],[2,0,1,2],[1,0,2,1]],[[1,3,2,0],[2,2,3,2],[2,0,1,2],[1,0,2,1]],[[2,2,2,0],[2,2,3,2],[2,0,1,2],[1,0,2,1]],[[1,2,2,0],[2,2,3,2],[2,0,1,2],[0,1,2,2]],[[1,2,2,0],[2,2,3,2],[2,0,1,3],[0,1,2,1]],[[1,2,2,0],[2,2,3,3],[2,0,1,2],[0,1,2,1]],[[1,2,2,0],[2,2,4,2],[2,0,1,2],[0,1,2,1]],[[1,2,2,0],[3,2,3,2],[2,0,1,2],[0,1,2,1]],[[1,2,3,0],[2,2,3,2],[2,0,1,2],[0,1,2,1]],[[1,3,2,0],[2,2,3,2],[2,0,1,2],[0,1,2,1]],[[2,2,2,0],[2,2,3,2],[2,0,1,2],[0,1,2,1]],[[0,2,2,1],[2,0,3,0],[1,1,3,3],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,1,3,2],[1,2,3,1]],[[0,2,2,1],[2,0,3,0],[1,1,3,2],[1,2,2,2]],[[0,2,2,1],[2,0,3,0],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,2,2,2],[2,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[2,0,3,0],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[2,0,3,0],[1,2,2,2],[1,2,2,2]],[[0,3,2,1],[2,0,3,0],[1,2,3,1],[1,2,2,1]],[[0,2,3,1],[2,0,3,0],[1,2,3,1],[1,2,2,1]],[[0,2,2,2],[2,0,3,0],[1,2,3,1],[1,2,2,1]],[[0,2,2,1],[2,0,4,0],[1,2,3,1],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,2,3,1],[2,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,0,3,0],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,0,3,0],[1,2,3,1],[1,2,2,2]],[[0,3,2,1],[2,0,3,0],[1,2,3,2],[1,2,1,1]],[[0,2,3,1],[2,0,3,0],[1,2,3,2],[1,2,1,1]],[[0,2,2,2],[2,0,3,0],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,4,0],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,3,0],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[2,0,3,0],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[2,0,3,0],[1,2,3,2],[1,2,1,2]],[[0,3,2,1],[2,0,3,0],[1,2,3,2],[1,2,2,0]],[[0,2,3,1],[2,0,3,0],[1,2,3,2],[1,2,2,0]],[[0,2,2,2],[2,0,3,0],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,4,0],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,0],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,0],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[2,0,3,0],[1,2,3,2],[2,2,2,0]],[[0,2,2,1],[2,0,3,0],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,0,3,0],[1,2,3,2],[1,2,3,0]],[[0,2,2,1],[2,0,3,0],[1,4,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,1,3],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,0,3,0],[1,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,0,3,0],[1,4,2,1],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,0,3,0],[1,3,2,1],[1,2,2,2]],[[0,2,2,1],[2,0,3,0],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[2,0,3,0],[1,3,2,2],[1,1,2,2]],[[0,2,2,1],[2,0,3,0],[1,4,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,0],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,0,3,0],[1,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,0,3,0],[1,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,0,3,0],[1,4,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,0],[2,2,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,0],[1,3,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,0],[1,2,3,1]],[[0,3,2,1],[2,0,3,0],[1,3,3,1],[1,1,2,1]],[[0,2,3,1],[2,0,3,0],[1,3,3,1],[1,1,2,1]],[[0,2,2,2],[2,0,3,0],[1,3,3,1],[1,1,2,1]],[[0,2,2,1],[2,0,4,0],[1,3,3,1],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[1,4,3,1],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,1],[1,1,2,2]],[[0,3,2,1],[2,0,3,0],[1,3,3,1],[1,2,1,1]],[[0,2,3,1],[2,0,3,0],[1,3,3,1],[1,2,1,1]],[[0,2,2,2],[2,0,3,0],[1,3,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,4,0],[1,3,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,3,0],[1,4,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,3,0],[1,3,4,1],[1,2,1,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,1],[1,3,1,1]],[[0,2,2,1],[2,0,3,0],[1,3,4,2],[1,0,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,3],[1,0,2,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,2],[1,0,2,2]],[[0,3,2,1],[2,0,3,0],[1,3,3,2],[1,1,1,1]],[[0,2,3,1],[2,0,3,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,2],[2,0,3,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,0,4,0],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,0,3,0],[1,4,3,2],[1,1,1,1]],[[0,2,2,1],[2,0,3,0],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,2],[1,1,1,2]],[[0,3,2,1],[2,0,3,0],[1,3,3,2],[1,1,2,0]],[[0,2,3,1],[2,0,3,0],[1,3,3,2],[1,1,2,0]],[[0,2,2,2],[2,0,3,0],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,0,4,0],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,0,3,0],[1,4,3,2],[1,1,2,0]],[[0,2,2,1],[2,0,3,0],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[2,0,3,0],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[2,0,3,0],[1,3,3,2],[1,1,3,0]],[[0,3,2,1],[2,0,3,0],[1,3,3,2],[1,2,0,1]],[[0,2,3,1],[2,0,3,0],[1,3,3,2],[1,2,0,1]],[[0,2,2,2],[2,0,3,0],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,4,0],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,3,0],[1,4,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,3,0],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,0,3,0],[1,3,3,2],[1,2,0,2]],[[0,3,2,1],[2,0,3,0],[1,3,3,2],[1,2,1,0]],[[0,2,3,1],[2,0,3,0],[1,3,3,2],[1,2,1,0]],[[0,2,2,2],[2,0,3,0],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,4,0],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,3,0],[1,4,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,3,0],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[2,0,3,0],[1,3,3,3],[1,2,1,0]],[[0,2,2,1],[2,0,3,0],[1,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,0,3,0],[1,3,3,2],[1,3,1,0]],[[0,2,2,1],[2,0,3,0],[2,0,3,3],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,0,3,2],[1,2,3,1]],[[0,2,2,1],[2,0,3,0],[2,0,3,2],[1,2,2,2]],[[0,2,2,1],[3,0,3,0],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[3,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,1,2,3],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,1,2,2],[2,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,1,2,2],[1,3,2,1]],[[0,2,2,1],[2,0,3,0],[2,1,2,2],[1,2,3,1]],[[0,2,2,1],[2,0,3,0],[2,1,2,2],[1,2,2,2]],[[0,3,2,1],[2,0,3,0],[2,1,3,1],[1,2,2,1]],[[0,2,3,1],[2,0,3,0],[2,1,3,1],[1,2,2,1]],[[0,2,2,2],[2,0,3,0],[2,1,3,1],[1,2,2,1]],[[0,2,2,1],[3,0,3,0],[2,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,0,4,0],[2,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[3,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,1,4,1],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,1,3,1],[1,3,2,1]],[[0,2,2,1],[2,0,3,0],[2,1,3,1],[1,2,3,1]],[[0,2,2,1],[2,0,3,0],[2,1,3,1],[1,2,2,2]],[[0,2,2,1],[2,0,3,0],[2,1,3,3],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,1,3,2],[0,2,3,1]],[[0,2,2,1],[2,0,3,0],[2,1,3,2],[0,2,2,2]],[[0,3,2,1],[2,0,3,0],[2,1,3,2],[1,2,1,1]],[[0,2,3,1],[2,0,3,0],[2,1,3,2],[1,2,1,1]],[[0,2,2,2],[2,0,3,0],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,4,0],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,3,0],[2,1,4,2],[1,2,1,1]],[[0,2,2,1],[2,0,3,0],[2,1,3,3],[1,2,1,1]],[[0,2,2,1],[2,0,3,0],[2,1,3,2],[1,2,1,2]],[[0,3,2,1],[2,0,3,0],[2,1,3,2],[1,2,2,0]],[[0,2,3,1],[2,0,3,0],[2,1,3,2],[1,2,2,0]],[[0,2,2,2],[2,0,3,0],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[3,0,3,0],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,4,0],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,0],[3,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,0],[2,1,4,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,0],[2,1,3,3],[1,2,2,0]],[[0,2,2,1],[2,0,3,0],[2,1,3,2],[2,2,2,0]],[[0,2,2,1],[2,0,3,0],[2,1,3,2],[1,3,2,0]],[[0,2,2,1],[2,0,3,0],[2,1,3,2],[1,2,3,0]],[[0,2,2,1],[3,0,3,0],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[3,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[2,0,3,0],[2,2,1,2],[1,2,2,2]],[[0,2,2,1],[3,0,3,0],[2,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[3,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,2,1],[2,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,2,1],[1,3,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,2,1],[1,2,3,1]],[[0,2,2,1],[2,0,3,0],[2,2,2,1],[1,2,2,2]],[[0,2,2,1],[2,0,3,0],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,2,2],[0,3,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[2,0,3,0],[2,2,2,2],[0,2,2,2]],[[0,2,2,1],[3,0,3,0],[2,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,0],[3,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,0],[2,2,2,2],[2,2,2,0]],[[0,2,2,1],[2,0,3,0],[2,2,2,2],[1,3,2,0]],[[0,2,2,1],[2,0,3,0],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[3,0,3,0],[2,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[3,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,0],[2,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,0],[1,3,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,0],[1,2,3,1]],[[0,3,2,1],[2,0,3,0],[2,2,3,1],[0,2,2,1]],[[0,2,3,1],[2,0,3,0],[2,2,3,1],[0,2,2,1]],[[0,2,2,2],[2,0,3,0],[2,2,3,1],[0,2,2,1]],[[0,2,2,1],[2,0,4,0],[2,2,3,1],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,1],[0,3,2,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,1],[0,2,2,2]],[[0,2,2,1],[3,0,3,0],[2,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,3,0],[3,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,1],[2,2,1,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,1],[1,3,1,1]],[[0,3,2,1],[2,0,3,0],[2,2,3,2],[0,2,1,1]],[[0,2,3,1],[2,0,3,0],[2,2,3,2],[0,2,1,1]],[[0,2,2,2],[2,0,3,0],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,0,4,0],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,0,3,0],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,2],[0,2,1,2]],[[0,3,2,1],[2,0,3,0],[2,2,3,2],[0,2,2,0]],[[0,2,3,1],[2,0,3,0],[2,2,3,2],[0,2,2,0]],[[0,2,2,2],[2,0,3,0],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,0,4,0],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,0,3,0],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[2,0,3,0],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[2,0,3,0],[2,2,3,2],[0,3,2,0]],[[0,2,2,1],[2,0,3,0],[2,2,3,2],[0,2,3,0]],[[0,2,2,1],[3,0,3,0],[2,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,3,0],[3,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,2],[2,2,0,1]],[[0,2,2,1],[2,0,3,0],[2,2,3,2],[1,3,0,1]],[[0,2,2,1],[3,0,3,0],[2,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,3,0],[3,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,0,3,0],[2,2,3,2],[2,2,1,0]],[[0,2,2,1],[2,0,3,0],[2,2,3,2],[1,3,1,0]],[[0,2,2,1],[3,0,3,0],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[3,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,4,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,1,3],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,1,2],[0,3,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,1,2],[0,2,3,1]],[[0,2,2,1],[2,0,3,0],[2,3,1,2],[0,2,2,2]],[[0,2,2,1],[3,0,3,0],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[3,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[2,4,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,1,2],[2,1,2,1]],[[0,2,2,1],[3,0,3,0],[2,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,4,2,1],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,2,1],[0,3,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,2,1],[0,2,3,1]],[[0,2,2,1],[2,0,3,0],[2,3,2,1],[0,2,2,2]],[[0,2,2,1],[3,0,3,0],[2,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[3,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,2,1],[2,1,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,0,3,0],[2,3,2,2],[0,1,2,2]],[[0,2,2,1],[3,0,3,0],[2,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,0,3,0],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,0,3,0],[2,4,2,2],[0,2,2,0]],[[0,2,2,1],[2,0,3,0],[2,3,2,2],[0,3,2,0]],[[0,2,2,1],[2,0,3,0],[2,3,2,2],[0,2,3,0]],[[0,2,2,1],[2,0,3,0],[2,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,2,2],[1,0,3,1]],[[0,2,2,1],[2,0,3,0],[2,3,2,2],[1,0,2,2]],[[0,2,2,1],[3,0,3,0],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,0,3,0],[3,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,0,3,0],[2,4,2,2],[1,1,2,0]],[[0,2,2,1],[2,0,3,0],[2,3,2,2],[2,1,2,0]],[[0,2,2,1],[3,0,3,0],[2,3,3,0],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[3,3,3,0],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,4,3,0],[0,2,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,0],[0,3,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,0],[0,2,3,1]],[[0,2,2,1],[3,0,3,0],[2,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[3,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[2,4,3,0],[1,1,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,0],[2,1,2,1]],[[0,3,2,1],[2,0,3,0],[2,3,3,1],[0,1,2,1]],[[0,2,3,1],[2,0,3,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,2],[2,0,3,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[3,0,3,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,0,4,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,0,3,0],[3,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,0,3,0],[2,4,3,1],[0,1,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,1],[0,1,2,2]],[[0,3,2,1],[2,0,3,0],[2,3,3,1],[0,2,1,1]],[[0,2,3,1],[2,0,3,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,2],[2,0,3,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[3,0,3,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,0,4,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,0,3,0],[3,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,0,3,0],[2,4,3,1],[0,2,1,1]],[[0,2,2,1],[2,0,3,0],[2,3,4,1],[0,2,1,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,1],[0,3,1,1]],[[0,3,2,1],[2,0,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,3,1],[2,0,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,2],[2,0,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[3,0,3,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,0,4,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,0,3,0],[3,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,0,3,0],[2,4,3,1],[1,0,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,4,1],[1,0,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,1],[2,0,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,1],[1,0,3,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,1],[1,0,2,2]],[[0,3,2,1],[2,0,3,0],[2,3,3,1],[1,1,1,1]],[[0,2,3,1],[2,0,3,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,2],[2,0,3,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[3,0,3,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,4,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,3,0],[3,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,3,0],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,3,0],[2,3,4,1],[1,1,1,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,1],[2,1,1,1]],[[0,2,2,1],[3,0,3,0],[2,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,0,3,0],[3,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,0,3,0],[2,4,3,1],[1,2,0,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,1],[2,2,0,1]],[[0,3,2,1],[2,0,3,0],[2,3,3,2],[0,0,2,1]],[[0,2,3,1],[2,0,3,0],[2,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,0,3,0],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,0,4,0],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[0,0,2,2]],[[0,3,2,1],[2,0,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,0,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,0,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[3,0,3,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,4,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,3,0],[3,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,3,0],[2,4,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,3,0],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[0,1,1,2]],[[0,3,2,1],[2,0,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,0,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,0,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[3,0,3,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,4,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,3,0],[3,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,3,0],[2,4,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,3,0],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,0,3,0],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[0,1,3,0]],[[0,3,2,1],[2,0,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,0,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,0,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[3,0,3,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,0,4,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,0,3,0],[3,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,0,3,0],[2,4,3,2],[0,2,0,1]],[[0,2,2,1],[2,0,3,0],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[0,3,0,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[0,2,0,2]],[[0,3,2,1],[2,0,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,0,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,0,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[3,0,3,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,0,4,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,0,3,0],[3,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,0,3,0],[2,4,3,2],[0,2,1,0]],[[0,2,2,1],[2,0,3,0],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,0,3,0],[2,3,3,3],[0,2,1,0]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[0,3,1,0]],[[0,3,2,1],[2,0,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,3,1],[2,0,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,2],[2,0,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[3,0,3,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,4,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,3,0],[3,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,3,0],[2,4,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,3,0],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[2,0,1,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[1,0,1,2]],[[0,3,2,1],[2,0,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,3,1],[2,0,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,2],[2,0,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[3,0,3,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,4,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,3,0],[3,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,3,0],[2,4,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,3,0],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[2,0,3,0],[2,3,3,3],[1,0,2,0]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[2,0,2,0]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[1,0,3,0]],[[0,3,2,1],[2,0,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,3,1],[2,0,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,2],[2,0,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[3,0,3,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,0,4,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,0,3,0],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,0,3,0],[2,4,3,2],[1,1,0,1]],[[0,2,2,1],[2,0,3,0],[2,3,4,2],[1,1,0,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,3],[1,1,0,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[2,1,0,1]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[1,1,0,2]],[[0,3,2,1],[2,0,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,3,1],[2,0,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,2],[2,0,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[3,0,3,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,0,4,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,0,3,0],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,0,3,0],[2,4,3,2],[1,1,1,0]],[[0,2,2,1],[2,0,3,0],[2,3,4,2],[1,1,1,0]],[[0,2,2,1],[2,0,3,0],[2,3,3,3],[1,1,1,0]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[3,2,3,2],[1,3,2,1],[1,1,0,0]],[[1,2,3,0],[2,2,3,2],[1,3,2,1],[1,1,0,0]],[[1,3,2,0],[2,2,3,2],[1,3,2,1],[1,1,0,0]],[[2,2,2,0],[2,2,3,2],[1,3,2,1],[1,1,0,0]],[[0,2,2,1],[3,0,3,0],[2,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,0,3,0],[3,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,0,3,0],[2,4,3,2],[1,2,0,0]],[[0,2,2,1],[2,0,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[3,2,3,2],[1,3,2,1],[0,2,0,0]],[[1,2,3,0],[2,2,3,2],[1,3,2,1],[0,2,0,0]],[[1,3,2,0],[2,2,3,2],[1,3,2,1],[0,2,0,0]],[[2,2,2,0],[2,2,3,2],[1,3,2,1],[0,2,0,0]],[[0,3,2,1],[2,0,3,1],[1,2,1,2],[1,2,2,1]],[[0,2,3,1],[2,0,3,1],[1,2,1,2],[1,2,2,1]],[[0,2,2,2],[2,0,3,1],[1,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,4,1],[1,2,1,2],[1,2,2,1]],[[0,3,2,1],[2,0,3,1],[1,2,2,2],[1,2,1,1]],[[0,2,3,1],[2,0,3,1],[1,2,2,2],[1,2,1,1]],[[0,2,2,2],[2,0,3,1],[1,2,2,2],[1,2,1,1]],[[0,2,2,1],[2,0,4,1],[1,2,2,2],[1,2,1,1]],[[0,3,2,1],[2,0,3,1],[1,2,2,2],[1,2,2,0]],[[0,2,3,1],[2,0,3,1],[1,2,2,2],[1,2,2,0]],[[0,2,2,2],[2,0,3,1],[1,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,4,1],[1,2,2,2],[1,2,2,0]],[[0,3,2,1],[2,0,3,1],[1,2,3,0],[1,2,2,1]],[[0,2,3,1],[2,0,3,1],[1,2,3,0],[1,2,2,1]],[[0,2,2,2],[2,0,3,1],[1,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,4,1],[1,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,1],[1,2,4,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,1],[1,2,3,0],[2,2,2,1]],[[0,2,2,1],[2,0,3,1],[1,2,3,0],[1,3,2,1]],[[0,2,2,1],[2,0,3,1],[1,2,3,0],[1,2,3,1]],[[0,2,2,1],[2,0,3,1],[1,2,3,0],[1,2,2,2]],[[0,3,2,1],[2,0,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,3,1],[2,0,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,2,2],[2,0,3,1],[1,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,4,1],[1,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,3,1],[1,2,4,1],[1,2,1,1]],[[0,3,2,1],[2,0,3,1],[1,2,3,1],[1,2,2,0]],[[0,2,3,1],[2,0,3,1],[1,2,3,1],[1,2,2,0]],[[0,2,2,2],[2,0,3,1],[1,2,3,1],[1,2,2,0]],[[0,2,2,1],[2,0,4,1],[1,2,3,1],[1,2,2,0]],[[0,2,2,1],[2,0,3,1],[1,2,4,1],[1,2,2,0]],[[0,2,2,1],[2,0,3,1],[1,2,3,1],[2,2,2,0]],[[0,2,2,1],[2,0,3,1],[1,2,3,1],[1,3,2,0]],[[0,2,2,1],[2,0,3,1],[1,2,3,1],[1,2,3,0]],[[0,3,2,1],[2,0,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,3,1],[2,0,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,2,2],[2,0,3,1],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,0,4,1],[1,3,0,2],[1,2,2,1]],[[0,3,2,1],[2,0,3,1],[1,3,1,2],[1,1,2,1]],[[0,2,3,1],[2,0,3,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,2],[2,0,3,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,4,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,3,1],[1,4,2,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,1],[1,3,2,0],[2,2,2,1]],[[0,2,2,1],[2,0,3,1],[1,3,2,0],[1,3,2,1]],[[0,2,2,1],[2,0,3,1],[1,3,2,0],[1,2,3,1]],[[0,2,2,1],[2,0,3,1],[1,3,2,0],[1,2,2,2]],[[0,2,2,1],[2,0,3,1],[1,4,2,1],[1,2,2,0]],[[0,2,2,1],[2,0,3,1],[1,3,2,1],[2,2,2,0]],[[0,2,2,1],[2,0,3,1],[1,3,2,1],[1,3,2,0]],[[0,2,2,1],[2,0,3,1],[1,3,2,1],[1,2,3,0]],[[0,3,2,1],[2,0,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,3,1],[2,0,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,2,2],[2,0,3,1],[1,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,0,4,1],[1,3,2,2],[1,1,1,1]],[[0,3,2,1],[2,0,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,3,1],[2,0,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,2],[2,0,3,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,0,4,1],[1,3,2,2],[1,1,2,0]],[[0,3,2,1],[2,0,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,3,1],[2,0,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,2,2],[2,0,3,1],[1,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,0,4,1],[1,3,2,2],[1,2,0,1]],[[0,3,2,1],[2,0,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,3,1],[2,0,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,2,2],[2,0,3,1],[1,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,0,4,1],[1,3,2,2],[1,2,1,0]],[[0,3,2,1],[2,0,3,1],[1,3,3,0],[1,1,2,1]],[[0,2,3,1],[2,0,3,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,2],[2,0,3,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,0,4,1],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,0,3,1],[1,4,3,0],[1,1,2,1]],[[0,2,2,1],[2,0,3,1],[1,3,4,0],[1,1,2,1]],[[0,2,2,1],[2,0,3,1],[1,3,3,0],[1,1,3,1]],[[0,2,2,1],[2,0,3,1],[1,3,3,0],[1,1,2,2]],[[0,3,2,1],[2,0,3,1],[1,3,3,0],[1,2,1,1]],[[0,2,3,1],[2,0,3,1],[1,3,3,0],[1,2,1,1]],[[0,2,2,2],[2,0,3,1],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,0,4,1],[1,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,0,3,1],[1,4,3,0],[1,2,1,1]],[[0,2,2,1],[2,0,3,1],[1,3,4,0],[1,2,1,1]],[[0,2,2,1],[2,0,3,1],[1,3,3,0],[2,2,1,1]],[[0,2,2,1],[2,0,3,1],[1,3,3,0],[1,3,1,1]],[[0,3,2,1],[2,0,3,1],[1,3,3,1],[1,1,1,1]],[[0,2,3,1],[2,0,3,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,2],[2,0,3,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,4,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,3,1],[1,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,3,1],[1,3,4,1],[1,1,1,1]],[[0,3,2,1],[2,0,3,1],[1,3,3,1],[1,1,2,0]],[[0,2,3,1],[2,0,3,1],[1,3,3,1],[1,1,2,0]],[[0,2,2,2],[2,0,3,1],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,0,4,1],[1,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,0,3,1],[1,4,3,1],[1,1,2,0]],[[0,2,2,1],[2,0,3,1],[1,3,4,1],[1,1,2,0]],[[0,2,2,1],[2,0,3,1],[1,3,3,1],[1,1,3,0]],[[0,3,2,1],[2,0,3,1],[1,3,3,1],[1,2,0,1]],[[0,2,3,1],[2,0,3,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,2],[2,0,3,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,0,4,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,0,3,1],[1,4,3,1],[1,2,0,1]],[[0,2,2,1],[2,0,3,1],[1,3,4,1],[1,2,0,1]],[[0,2,2,1],[2,0,3,1],[1,3,3,1],[2,2,0,1]],[[0,2,2,1],[2,0,3,1],[1,3,3,1],[1,3,0,1]],[[0,3,2,1],[2,0,3,1],[1,3,3,1],[1,2,1,0]],[[0,2,3,1],[2,0,3,1],[1,3,3,1],[1,2,1,0]],[[0,2,2,2],[2,0,3,1],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,0,4,1],[1,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,0,3,1],[1,4,3,1],[1,2,1,0]],[[0,2,2,1],[2,0,3,1],[1,3,4,1],[1,2,1,0]],[[0,2,2,1],[2,0,3,1],[1,3,3,1],[2,2,1,0]],[[0,2,2,1],[2,0,3,1],[1,3,3,1],[1,3,1,0]],[[0,3,2,1],[2,0,3,1],[2,1,1,2],[1,2,2,1]],[[0,2,3,1],[2,0,3,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,2],[2,0,3,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,4,1],[2,1,1,2],[1,2,2,1]],[[0,3,2,1],[2,0,3,1],[2,1,2,2],[1,2,1,1]],[[0,2,3,1],[2,0,3,1],[2,1,2,2],[1,2,1,1]],[[0,2,2,2],[2,0,3,1],[2,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,0,4,1],[2,1,2,2],[1,2,1,1]],[[0,3,2,1],[2,0,3,1],[2,1,2,2],[1,2,2,0]],[[0,2,3,1],[2,0,3,1],[2,1,2,2],[1,2,2,0]],[[0,2,2,2],[2,0,3,1],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,4,1],[2,1,2,2],[1,2,2,0]],[[0,3,2,1],[2,0,3,1],[2,1,3,0],[1,2,2,1]],[[0,2,3,1],[2,0,3,1],[2,1,3,0],[1,2,2,1]],[[0,2,2,2],[2,0,3,1],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[3,0,3,1],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,4,1],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,1],[3,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,1],[2,1,4,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,1],[2,1,3,0],[2,2,2,1]],[[0,2,2,1],[2,0,3,1],[2,1,3,0],[1,3,2,1]],[[0,2,2,1],[2,0,3,1],[2,1,3,0],[1,2,3,1]],[[0,2,2,1],[2,0,3,1],[2,1,3,0],[1,2,2,2]],[[0,3,2,1],[2,0,3,1],[2,1,3,1],[1,2,1,1]],[[0,2,3,1],[2,0,3,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,2],[2,0,3,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,4,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,3,1],[2,1,4,1],[1,2,1,1]],[[0,3,2,1],[2,0,3,1],[2,1,3,1],[1,2,2,0]],[[0,2,3,1],[2,0,3,1],[2,1,3,1],[1,2,2,0]],[[0,2,2,2],[2,0,3,1],[2,1,3,1],[1,2,2,0]],[[0,2,2,1],[3,0,3,1],[2,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,0,4,1],[2,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,0,3,1],[3,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,0,3,1],[2,1,4,1],[1,2,2,0]],[[0,2,2,1],[2,0,3,1],[2,1,3,1],[2,2,2,0]],[[0,2,2,1],[2,0,3,1],[2,1,3,1],[1,3,2,0]],[[0,2,2,1],[2,0,3,1],[2,1,3,1],[1,2,3,0]],[[0,3,2,1],[2,0,3,1],[2,2,0,2],[1,2,2,1]],[[0,2,3,1],[2,0,3,1],[2,2,0,2],[1,2,2,1]],[[0,2,2,2],[2,0,3,1],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,0,4,1],[2,2,0,2],[1,2,2,1]],[[0,3,2,1],[2,0,3,1],[2,2,1,2],[0,2,2,1]],[[0,2,3,1],[2,0,3,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,2],[2,0,3,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,4,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[3,0,3,1],[2,2,2,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,1],[3,2,2,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,1],[2,2,2,0],[2,2,2,1]],[[0,2,2,1],[2,0,3,1],[2,2,2,0],[1,3,2,1]],[[0,2,2,1],[2,0,3,1],[2,2,2,0],[1,2,3,1]],[[0,2,2,1],[2,0,3,1],[2,2,2,0],[1,2,2,2]],[[0,2,2,1],[3,0,3,1],[2,2,2,1],[1,2,2,0]],[[0,2,2,1],[2,0,3,1],[3,2,2,1],[1,2,2,0]],[[0,2,2,1],[2,0,3,1],[2,2,2,1],[2,2,2,0]],[[0,2,2,1],[2,0,3,1],[2,2,2,1],[1,3,2,0]],[[0,2,2,1],[2,0,3,1],[2,2,2,1],[1,2,3,0]],[[0,3,2,1],[2,0,3,1],[2,2,2,2],[0,2,1,1]],[[0,2,3,1],[2,0,3,1],[2,2,2,2],[0,2,1,1]],[[0,2,2,2],[2,0,3,1],[2,2,2,2],[0,2,1,1]],[[0,2,2,1],[2,0,4,1],[2,2,2,2],[0,2,1,1]],[[0,3,2,1],[2,0,3,1],[2,2,2,2],[0,2,2,0]],[[0,2,3,1],[2,0,3,1],[2,2,2,2],[0,2,2,0]],[[0,2,2,2],[2,0,3,1],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,0,4,1],[2,2,2,2],[0,2,2,0]],[[0,3,2,1],[2,0,3,1],[2,2,3,0],[0,2,2,1]],[[0,2,3,1],[2,0,3,1],[2,2,3,0],[0,2,2,1]],[[0,2,2,2],[2,0,3,1],[2,2,3,0],[0,2,2,1]],[[0,2,2,1],[2,0,4,1],[2,2,3,0],[0,2,2,1]],[[0,2,2,1],[2,0,3,1],[2,2,4,0],[0,2,2,1]],[[0,2,2,1],[2,0,3,1],[2,2,3,0],[0,3,2,1]],[[0,2,2,1],[2,0,3,1],[2,2,3,0],[0,2,3,1]],[[0,2,2,1],[2,0,3,1],[2,2,3,0],[0,2,2,2]],[[0,2,2,1],[3,0,3,1],[2,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,0,3,1],[3,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,0,3,1],[2,2,3,0],[2,2,1,1]],[[0,2,2,1],[2,0,3,1],[2,2,3,0],[1,3,1,1]],[[0,3,2,1],[2,0,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,3,1],[2,0,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,2],[2,0,3,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,0,4,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,0,3,1],[2,2,4,1],[0,2,1,1]],[[0,3,2,1],[2,0,3,1],[2,2,3,1],[0,2,2,0]],[[0,2,3,1],[2,0,3,1],[2,2,3,1],[0,2,2,0]],[[0,2,2,2],[2,0,3,1],[2,2,3,1],[0,2,2,0]],[[0,2,2,1],[2,0,4,1],[2,2,3,1],[0,2,2,0]],[[0,2,2,1],[2,0,3,1],[2,2,4,1],[0,2,2,0]],[[0,2,2,1],[2,0,3,1],[2,2,3,1],[0,3,2,0]],[[0,2,2,1],[2,0,3,1],[2,2,3,1],[0,2,3,0]],[[0,2,2,1],[3,0,3,1],[2,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,0,3,1],[3,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,0,3,1],[2,2,3,1],[2,2,0,1]],[[0,2,2,1],[2,0,3,1],[2,2,3,1],[1,3,0,1]],[[0,2,2,1],[3,0,3,1],[2,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,0,3,1],[3,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,0,3,1],[2,2,3,1],[2,2,1,0]],[[0,2,2,1],[2,0,3,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[3,2,3,2],[1,3,1,1],[1,2,0,0]],[[1,2,3,0],[2,2,3,2],[1,3,1,1],[1,2,0,0]],[[1,3,2,0],[2,2,3,2],[1,3,1,1],[1,2,0,0]],[[2,2,2,0],[2,2,3,2],[1,3,1,1],[1,2,0,0]],[[1,2,2,0],[3,2,3,2],[1,3,1,1],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[1,3,1,1],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[1,3,1,1],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[1,3,1,1],[1,1,1,0]],[[1,2,2,0],[3,2,3,2],[1,3,1,1],[1,1,0,1]],[[1,2,3,0],[2,2,3,2],[1,3,1,1],[1,1,0,1]],[[1,3,2,0],[2,2,3,2],[1,3,1,1],[1,1,0,1]],[[2,2,2,0],[2,2,3,2],[1,3,1,1],[1,1,0,1]],[[1,2,2,0],[3,2,3,2],[1,3,1,1],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[1,3,1,1],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[1,3,1,1],[1,0,2,0]],[[2,2,2,0],[2,2,3,2],[1,3,1,1],[1,0,2,0]],[[1,2,2,0],[3,2,3,2],[1,3,1,1],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[1,3,1,1],[1,0,1,1]],[[1,3,2,0],[2,2,3,2],[1,3,1,1],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[1,3,1,1],[1,0,1,1]],[[1,2,2,0],[3,2,3,2],[1,3,1,1],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[1,3,1,1],[0,2,1,0]],[[0,3,2,1],[2,0,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,3,1],[2,0,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,2],[2,0,3,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,0,4,1],[2,3,0,2],[0,2,2,1]],[[0,3,2,1],[2,0,3,1],[2,3,1,2],[0,1,2,1]],[[0,2,3,1],[2,0,3,1],[2,3,1,2],[0,1,2,1]],[[0,2,2,2],[2,0,3,1],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,0,4,1],[2,3,1,2],[0,1,2,1]],[[0,3,2,1],[2,0,3,1],[2,3,1,2],[1,0,2,1]],[[0,2,3,1],[2,0,3,1],[2,3,1,2],[1,0,2,1]],[[0,2,2,2],[2,0,3,1],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,0,4,1],[2,3,1,2],[1,0,2,1]],[[1,3,2,0],[2,2,3,2],[1,3,1,1],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[1,3,1,1],[0,2,1,0]],[[1,2,2,0],[3,2,3,2],[1,3,1,1],[0,2,0,1]],[[1,2,3,0],[2,2,3,2],[1,3,1,1],[0,2,0,1]],[[1,3,2,0],[2,2,3,2],[1,3,1,1],[0,2,0,1]],[[2,2,2,0],[2,2,3,2],[1,3,1,1],[0,2,0,1]],[[1,2,2,0],[3,2,3,2],[1,3,1,1],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[1,3,1,1],[0,1,2,0]],[[0,2,2,1],[3,0,3,1],[2,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,0,3,1],[3,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,0,3,1],[2,4,2,0],[0,2,2,1]],[[0,2,2,1],[2,0,3,1],[2,3,2,0],[0,3,2,1]],[[0,2,2,1],[2,0,3,1],[2,3,2,0],[0,2,3,1]],[[0,2,2,1],[2,0,3,1],[2,3,2,0],[0,2,2,2]],[[0,2,2,1],[3,0,3,1],[2,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,0,3,1],[3,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,0,3,1],[2,4,2,0],[1,1,2,1]],[[0,2,2,1],[2,0,3,1],[2,3,2,0],[2,1,2,1]],[[0,2,2,1],[3,0,3,1],[2,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,0,3,1],[3,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,0,3,1],[2,4,2,1],[0,2,2,0]],[[0,2,2,1],[2,0,3,1],[2,3,2,1],[0,3,2,0]],[[0,2,2,1],[2,0,3,1],[2,3,2,1],[0,2,3,0]],[[0,2,2,1],[3,0,3,1],[2,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,0,3,1],[3,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,0,3,1],[2,4,2,1],[1,1,2,0]],[[0,2,2,1],[2,0,3,1],[2,3,2,1],[2,1,2,0]],[[1,3,2,0],[2,2,3,2],[1,3,1,1],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[1,3,1,1],[0,1,2,0]],[[1,2,2,0],[3,2,3,2],[1,3,1,1],[0,1,1,1]],[[1,2,3,0],[2,2,3,2],[1,3,1,1],[0,1,1,1]],[[1,3,2,0],[2,2,3,2],[1,3,1,1],[0,1,1,1]],[[2,2,2,0],[2,2,3,2],[1,3,1,1],[0,1,1,1]],[[0,3,2,1],[2,0,3,1],[2,3,2,2],[0,0,2,1]],[[0,2,3,1],[2,0,3,1],[2,3,2,2],[0,0,2,1]],[[0,2,2,2],[2,0,3,1],[2,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,0,4,1],[2,3,2,2],[0,0,2,1]],[[0,3,2,1],[2,0,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,3,1],[2,0,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,0,3,1],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,0,4,1],[2,3,2,2],[0,1,1,1]],[[0,3,2,1],[2,0,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,3,1],[2,0,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,0,3,1],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,0,4,1],[2,3,2,2],[0,1,2,0]],[[0,3,2,1],[2,0,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,3,1],[2,0,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,0,3,1],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,0,4,1],[2,3,2,2],[0,2,0,1]],[[0,3,2,1],[2,0,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,3,1],[2,0,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,0,3,1],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,0,4,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,0],[3,2,3,2],[1,3,1,0],[1,2,0,1]],[[1,2,3,0],[2,2,3,2],[1,3,1,0],[1,2,0,1]],[[1,3,2,0],[2,2,3,2],[1,3,1,0],[1,2,0,1]],[[2,2,2,0],[2,2,3,2],[1,3,1,0],[1,2,0,1]],[[0,3,2,1],[2,0,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,3,1],[2,0,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,2,2],[2,0,3,1],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,0,4,1],[2,3,2,2],[1,0,1,1]],[[0,3,2,1],[2,0,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,3,1],[2,0,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,2,2],[2,0,3,1],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,0,4,1],[2,3,2,2],[1,0,2,0]],[[0,3,2,1],[2,0,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,3,1],[2,0,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,2,2],[2,0,3,1],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,0,4,1],[2,3,2,2],[1,1,0,1]],[[0,3,2,1],[2,0,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,3,1],[2,0,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,2,2],[2,0,3,1],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,0,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,0],[3,2,3,2],[1,3,1,0],[1,1,1,1]],[[1,2,3,0],[2,2,3,2],[1,3,1,0],[1,1,1,1]],[[1,3,2,0],[2,2,3,2],[1,3,1,0],[1,1,1,1]],[[2,2,2,0],[2,2,3,2],[1,3,1,0],[1,1,1,1]],[[1,2,2,0],[3,2,3,2],[1,3,1,0],[1,0,2,1]],[[1,2,3,0],[2,2,3,2],[1,3,1,0],[1,0,2,1]],[[1,3,2,0],[2,2,3,2],[1,3,1,0],[1,0,2,1]],[[2,2,2,0],[2,2,3,2],[1,3,1,0],[1,0,2,1]],[[1,2,2,0],[3,2,3,2],[1,3,1,0],[0,2,1,1]],[[1,2,3,0],[2,2,3,2],[1,3,1,0],[0,2,1,1]],[[1,3,2,0],[2,2,3,2],[1,3,1,0],[0,2,1,1]],[[2,2,2,0],[2,2,3,2],[1,3,1,0],[0,2,1,1]],[[1,2,2,0],[3,2,3,2],[1,3,1,0],[0,1,2,1]],[[1,2,3,0],[2,2,3,2],[1,3,1,0],[0,1,2,1]],[[1,3,2,0],[2,2,3,2],[1,3,1,0],[0,1,2,1]],[[2,2,2,0],[2,2,3,2],[1,3,1,0],[0,1,2,1]],[[1,2,2,0],[3,2,3,2],[1,3,0,2],[1,2,0,0]],[[1,2,3,0],[2,2,3,2],[1,3,0,2],[1,2,0,0]],[[1,3,2,0],[2,2,3,2],[1,3,0,2],[1,2,0,0]],[[2,2,2,0],[2,2,3,2],[1,3,0,2],[1,2,0,0]],[[0,3,2,1],[2,0,3,1],[2,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,0,3,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,0,3,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[3,0,3,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,0,4,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,0,3,1],[3,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,0,3,1],[2,4,3,0],[0,1,2,1]],[[0,2,2,1],[2,0,3,1],[2,3,4,0],[0,1,2,1]],[[0,2,2,1],[2,0,3,1],[2,3,3,0],[0,1,3,1]],[[0,2,2,1],[2,0,3,1],[2,3,3,0],[0,1,2,2]],[[0,3,2,1],[2,0,3,1],[2,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,0,3,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,2],[2,0,3,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[3,0,3,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,0,4,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,0,3,1],[3,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,0,3,1],[2,4,3,0],[0,2,1,1]],[[0,2,2,1],[2,0,3,1],[2,3,4,0],[0,2,1,1]],[[0,2,2,1],[2,0,3,1],[2,3,3,0],[0,3,1,1]],[[0,3,2,1],[2,0,3,1],[2,3,3,0],[1,0,2,1]],[[0,2,3,1],[2,0,3,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,2],[2,0,3,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[3,0,3,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,0,4,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,0,3,1],[3,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,0,3,1],[2,4,3,0],[1,0,2,1]],[[0,2,2,1],[2,0,3,1],[2,3,4,0],[1,0,2,1]],[[0,2,2,1],[2,0,3,1],[2,3,3,0],[2,0,2,1]],[[0,2,2,1],[2,0,3,1],[2,3,3,0],[1,0,3,1]],[[0,2,2,1],[2,0,3,1],[2,3,3,0],[1,0,2,2]],[[0,3,2,1],[2,0,3,1],[2,3,3,0],[1,1,1,1]],[[0,2,3,1],[2,0,3,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,2],[2,0,3,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[3,0,3,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,0,4,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,0,3,1],[3,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,0,3,1],[2,4,3,0],[1,1,1,1]],[[0,2,2,1],[2,0,3,1],[2,3,4,0],[1,1,1,1]],[[0,2,2,1],[2,0,3,1],[2,3,3,0],[2,1,1,1]],[[0,2,2,1],[3,0,3,1],[2,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,0,3,1],[3,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,0,3,1],[2,4,3,0],[1,2,0,1]],[[0,2,2,1],[2,0,3,1],[2,3,3,0],[2,2,0,1]],[[0,3,2,1],[2,0,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,0,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,0,3,1],[2,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,0,4,1],[2,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,0,3,1],[2,3,4,1],[0,0,2,1]],[[0,3,2,1],[2,0,3,1],[2,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,0,3,1],[2,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,0,3,1],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[3,0,3,1],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,0,4,1],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,0,3,1],[3,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,0,3,1],[2,4,3,1],[0,1,1,1]],[[0,2,2,1],[2,0,3,1],[2,3,4,1],[0,1,1,1]],[[0,3,2,1],[2,0,3,1],[2,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,0,3,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,0,3,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[3,0,3,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,0,4,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,0,3,1],[3,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,0,3,1],[2,4,3,1],[0,1,2,0]],[[0,2,2,1],[2,0,3,1],[2,3,4,1],[0,1,2,0]],[[0,2,2,1],[2,0,3,1],[2,3,3,1],[0,1,3,0]],[[0,3,2,1],[2,0,3,1],[2,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,0,3,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,0,3,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[3,0,3,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,0,4,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,0,3,1],[3,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,0,3,1],[2,4,3,1],[0,2,0,1]],[[0,2,2,1],[2,0,3,1],[2,3,4,1],[0,2,0,1]],[[0,2,2,1],[2,0,3,1],[2,3,3,1],[0,3,0,1]],[[0,3,2,1],[2,0,3,1],[2,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,0,3,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,0,3,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[3,0,3,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,0,4,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,0,3,1],[3,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,0,3,1],[2,4,3,1],[0,2,1,0]],[[0,2,2,1],[2,0,3,1],[2,3,4,1],[0,2,1,0]],[[0,2,2,1],[2,0,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[3,2,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[1,3,0,2],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[1,3,0,2],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,2,0],[3,2,3,2],[1,3,0,2],[1,1,0,1]],[[1,2,3,0],[2,2,3,2],[1,3,0,2],[1,1,0,1]],[[1,3,2,0],[2,2,3,2],[1,3,0,2],[1,1,0,1]],[[2,2,2,0],[2,2,3,2],[1,3,0,2],[1,1,0,1]],[[0,3,2,1],[2,0,3,1],[2,3,3,1],[1,0,1,1]],[[0,2,3,1],[2,0,3,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,2],[2,0,3,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[3,0,3,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,0,4,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,0,3,1],[3,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,0,3,1],[2,4,3,1],[1,0,1,1]],[[0,2,2,1],[2,0,3,1],[2,3,4,1],[1,0,1,1]],[[0,2,2,1],[2,0,3,1],[2,3,3,1],[2,0,1,1]],[[0,3,2,1],[2,0,3,1],[2,3,3,1],[1,0,2,0]],[[0,2,3,1],[2,0,3,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,2],[2,0,3,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[3,0,3,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,0,4,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,0,3,1],[3,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,0,3,1],[2,4,3,1],[1,0,2,0]],[[0,2,2,1],[2,0,3,1],[2,3,4,1],[1,0,2,0]],[[0,2,2,1],[2,0,3,1],[2,3,3,1],[2,0,2,0]],[[0,2,2,1],[2,0,3,1],[2,3,3,1],[1,0,3,0]],[[0,3,2,1],[2,0,3,1],[2,3,3,1],[1,1,0,1]],[[0,2,3,1],[2,0,3,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,2],[2,0,3,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[3,0,3,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,0,4,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,0,3,1],[3,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,0,3,1],[2,4,3,1],[1,1,0,1]],[[0,2,2,1],[2,0,3,1],[2,3,4,1],[1,1,0,1]],[[0,2,2,1],[2,0,3,1],[2,3,3,1],[2,1,0,1]],[[0,3,2,1],[2,0,3,1],[2,3,3,1],[1,1,1,0]],[[0,2,3,1],[2,0,3,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,2],[2,0,3,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[3,0,3,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,0,4,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,0,3,1],[3,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,0,3,1],[2,4,3,1],[1,1,1,0]],[[0,2,2,1],[2,0,3,1],[2,3,4,1],[1,1,1,0]],[[0,2,2,1],[2,0,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,0],[3,2,3,2],[1,3,0,2],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[1,3,0,2],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[1,3,0,2],[1,0,2,0]],[[0,2,2,1],[3,0,3,1],[2,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,0,3,1],[3,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,0,3,1],[2,4,3,1],[1,2,0,0]],[[0,2,2,1],[2,0,3,1],[2,3,3,1],[2,2,0,0]],[[2,2,2,0],[2,2,3,2],[1,3,0,2],[1,0,2,0]],[[1,2,2,0],[3,2,3,2],[1,3,0,2],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[1,3,0,2],[1,0,1,1]],[[1,3,2,0],[2,2,3,2],[1,3,0,2],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[1,3,0,2],[1,0,1,1]],[[1,2,2,0],[3,2,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[1,3,0,2],[0,2,1,0]],[[1,3,2,0],[2,2,3,2],[1,3,0,2],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,2,0],[3,2,3,2],[1,3,0,2],[0,2,0,1]],[[1,2,3,0],[2,2,3,2],[1,3,0,2],[0,2,0,1]],[[1,3,2,0],[2,2,3,2],[1,3,0,2],[0,2,0,1]],[[2,2,2,0],[2,2,3,2],[1,3,0,2],[0,2,0,1]],[[0,3,2,1],[2,0,3,1],[2,3,3,2],[0,1,0,1]],[[0,2,3,1],[2,0,3,1],[2,3,3,2],[0,1,0,1]],[[0,2,2,2],[2,0,3,1],[2,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,0,4,1],[2,3,3,2],[0,1,0,1]],[[1,2,2,0],[3,2,3,2],[1,3,0,2],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[1,3,0,2],[0,1,2,0]],[[1,3,2,0],[2,2,3,2],[1,3,0,2],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[1,3,0,2],[0,1,2,0]],[[1,2,2,0],[3,2,3,2],[1,3,0,2],[0,1,1,1]],[[1,2,3,0],[2,2,3,2],[1,3,0,2],[0,1,1,1]],[[1,3,2,0],[2,2,3,2],[1,3,0,2],[0,1,1,1]],[[2,2,2,0],[2,2,3,2],[1,3,0,2],[0,1,1,1]],[[1,2,2,0],[3,2,3,2],[1,3,0,1],[1,1,2,0]],[[1,2,3,0],[2,2,3,2],[1,3,0,1],[1,1,2,0]],[[1,3,2,0],[2,2,3,2],[1,3,0,1],[1,1,2,0]],[[2,2,2,0],[2,2,3,2],[1,3,0,1],[1,1,2,0]],[[1,2,2,0],[3,2,3,2],[1,3,0,1],[0,2,2,0]],[[1,2,3,0],[2,2,3,2],[1,3,0,1],[0,2,2,0]],[[1,3,2,0],[2,2,3,2],[1,3,0,1],[0,2,2,0]],[[2,2,2,0],[2,2,3,2],[1,3,0,1],[0,2,2,0]],[[1,2,2,0],[3,2,3,2],[1,3,0,0],[1,1,2,1]],[[1,2,3,0],[2,2,3,2],[1,3,0,0],[1,1,2,1]],[[1,3,2,0],[2,2,3,2],[1,3,0,0],[1,1,2,1]],[[2,2,2,0],[2,2,3,2],[1,3,0,0],[1,1,2,1]],[[1,2,2,0],[3,2,3,2],[1,3,0,0],[0,2,2,1]],[[0,3,2,1],[2,0,3,1],[2,3,3,2],[1,0,0,1]],[[0,2,3,1],[2,0,3,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,2],[2,0,3,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,0,4,1],[2,3,3,2],[1,0,0,1]],[[1,2,3,0],[2,2,3,2],[1,3,0,0],[0,2,2,1]],[[1,3,2,0],[2,2,3,2],[1,3,0,0],[0,2,2,1]],[[2,2,2,0],[2,2,3,2],[1,3,0,0],[0,2,2,1]],[[0,2,3,1],[2,0,3,2],[0,1,2,2],[1,2,2,1]],[[0,2,2,2],[2,0,3,2],[0,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,3],[0,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,2],[0,1,2,3],[1,2,2,1]],[[0,2,2,1],[2,0,3,2],[0,1,2,2],[1,2,3,1]],[[0,2,2,1],[2,0,3,2],[0,1,2,2],[1,2,2,2]],[[0,2,3,1],[2,0,3,2],[0,1,3,2],[0,2,2,1]],[[0,2,2,2],[2,0,3,2],[0,1,3,2],[0,2,2,1]],[[0,2,2,1],[2,0,3,3],[0,1,3,2],[0,2,2,1]],[[0,2,2,1],[2,0,3,2],[0,1,3,3],[0,2,2,1]],[[0,2,2,1],[2,0,3,2],[0,1,3,2],[0,2,2,2]],[[0,2,3,1],[2,0,3,2],[0,1,3,2],[1,1,2,1]],[[0,2,2,2],[2,0,3,2],[0,1,3,2],[1,1,2,1]],[[0,2,2,1],[2,0,3,3],[0,1,3,2],[1,1,2,1]],[[0,2,2,1],[2,0,3,2],[0,1,3,3],[1,1,2,1]],[[0,2,2,1],[2,0,3,2],[0,1,3,2],[1,1,2,2]],[[0,2,3,1],[2,0,3,2],[0,1,3,2],[1,2,1,1]],[[0,2,2,2],[2,0,3,2],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,3,3],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,0,3,2],[0,1,3,3],[1,2,1,1]],[[0,2,2,1],[2,0,3,2],[0,1,3,2],[1,2,1,2]],[[0,2,3,1],[2,0,3,2],[0,1,3,2],[1,2,2,0]],[[0,2,2,2],[2,0,3,2],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,3],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,2],[0,1,3,3],[1,2,2,0]],[[0,2,3,1],[2,0,3,2],[0,2,1,2],[1,2,2,1]],[[0,2,2,2],[2,0,3,2],[0,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,3],[0,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,2],[0,2,1,3],[1,2,2,1]],[[0,2,2,1],[2,0,3,2],[0,2,1,2],[1,3,2,1]],[[0,2,2,1],[2,0,3,2],[0,2,1,2],[1,2,3,1]],[[0,2,2,1],[2,0,3,2],[0,2,1,2],[1,2,2,2]],[[0,2,3,1],[2,0,3,2],[0,2,2,2],[1,2,1,1]],[[0,2,2,2],[2,0,3,2],[0,2,2,2],[1,2,1,1]],[[0,2,2,1],[2,0,3,3],[0,2,2,2],[1,2,1,1]],[[0,2,2,1],[2,0,3,2],[0,2,2,3],[1,2,1,1]],[[0,2,2,1],[2,0,3,2],[0,2,2,2],[1,2,1,2]],[[0,2,3,1],[2,0,3,2],[0,2,2,2],[1,2,2,0]],[[0,2,2,2],[2,0,3,2],[0,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,3],[0,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,2],[0,2,2,3],[1,2,2,0]],[[0,2,3,1],[2,0,3,2],[0,2,3,0],[1,2,2,1]],[[0,2,2,2],[2,0,3,2],[0,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,3],[0,2,3,0],[1,2,2,1]],[[0,2,3,1],[2,0,3,2],[0,2,3,1],[1,2,1,1]],[[0,2,2,2],[2,0,3,2],[0,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,3,3],[0,2,3,1],[1,2,1,1]],[[0,2,3,1],[2,0,3,2],[0,2,3,1],[1,2,2,0]],[[0,2,2,2],[2,0,3,2],[0,2,3,1],[1,2,2,0]],[[0,2,2,1],[2,0,3,3],[0,2,3,1],[1,2,2,0]],[[0,2,3,1],[2,0,3,2],[0,2,3,2],[1,0,2,1]],[[0,2,2,2],[2,0,3,2],[0,2,3,2],[1,0,2,1]],[[0,2,2,1],[2,0,3,3],[0,2,3,2],[1,0,2,1]],[[0,2,2,1],[2,0,3,2],[0,2,3,3],[1,0,2,1]],[[0,2,2,1],[2,0,3,2],[0,2,3,2],[1,0,2,2]],[[0,2,3,1],[2,0,3,2],[0,2,3,2],[1,1,1,1]],[[0,2,2,2],[2,0,3,2],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[2,0,3,3],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[2,0,3,2],[0,2,3,3],[1,1,1,1]],[[0,2,2,1],[2,0,3,2],[0,2,3,2],[1,1,1,2]],[[0,2,3,1],[2,0,3,2],[0,2,3,2],[1,1,2,0]],[[0,2,2,2],[2,0,3,2],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[2,0,3,3],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[2,0,3,2],[0,2,3,3],[1,1,2,0]],[[0,2,3,1],[2,0,3,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,2],[2,0,3,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,3],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,2],[0,3,0,3],[1,2,2,1]],[[0,2,2,1],[2,0,3,2],[0,3,0,2],[1,3,2,1]],[[0,2,2,1],[2,0,3,2],[0,3,0,2],[1,2,3,1]],[[0,2,2,1],[2,0,3,2],[0,3,0,2],[1,2,2,2]],[[0,2,3,1],[2,0,3,2],[0,3,1,2],[1,1,2,1]],[[0,2,2,2],[2,0,3,2],[0,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,3,3],[0,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,0,3,2],[0,3,1,3],[1,1,2,1]],[[0,2,2,1],[2,0,3,2],[0,3,1,2],[1,1,3,1]],[[0,2,2,1],[2,0,3,2],[0,3,1,2],[1,1,2,2]],[[0,2,3,1],[2,0,3,2],[0,3,2,2],[1,0,2,1]],[[0,2,2,2],[2,0,3,2],[0,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,0,3,3],[0,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,0,3,2],[0,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,0,3,2],[0,3,2,2],[1,0,2,2]],[[0,2,3,1],[2,0,3,2],[0,3,2,2],[1,1,1,1]],[[0,2,2,2],[2,0,3,2],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,0,3,3],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,0,3,2],[0,3,2,3],[1,1,1,1]],[[0,2,2,1],[2,0,3,2],[0,3,2,2],[1,1,1,2]],[[0,2,3,1],[2,0,3,2],[0,3,2,2],[1,1,2,0]],[[0,2,2,2],[2,0,3,2],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,0,3,3],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,0,3,2],[0,3,2,3],[1,1,2,0]],[[0,2,3,1],[2,0,3,2],[0,3,2,2],[1,2,0,1]],[[0,2,2,2],[2,0,3,2],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,0,3,3],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,0,3,2],[0,3,2,3],[1,2,0,1]],[[0,2,2,1],[2,0,3,2],[0,3,2,2],[1,2,0,2]],[[0,2,3,1],[2,0,3,2],[0,3,2,2],[1,2,1,0]],[[0,2,2,2],[2,0,3,2],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,0,3,3],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,0,3,2],[0,3,2,3],[1,2,1,0]],[[0,2,3,1],[2,0,3,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,2],[2,0,3,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,0,3,3],[0,3,3,0],[1,1,2,1]],[[0,2,3,1],[2,0,3,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,2],[2,0,3,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,0,3,3],[0,3,3,0],[1,2,1,1]],[[0,2,3,1],[2,0,3,2],[0,3,3,1],[1,0,2,1]],[[0,2,2,2],[2,0,3,2],[0,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,0,3,3],[0,3,3,1],[1,0,2,1]],[[0,2,3,1],[2,0,3,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,2],[2,0,3,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,0,3,3],[0,3,3,1],[1,1,1,1]],[[0,2,3,1],[2,0,3,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,2],[2,0,3,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,0,3,3],[0,3,3,1],[1,1,2,0]],[[0,2,3,1],[2,0,3,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,2],[2,0,3,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,0,3,3],[0,3,3,1],[1,2,0,1]],[[0,2,3,1],[2,0,3,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,2],[2,0,3,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,0,3,3],[0,3,3,1],[1,2,1,0]],[[0,2,3,1],[2,0,3,2],[0,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,0,3,2],[0,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,0,3,3],[0,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,0,3,2],[0,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,0,3,2],[0,3,3,2],[0,0,2,2]],[[0,2,3,1],[2,0,3,2],[0,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,0,3,2],[0,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,3,3],[0,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,3,2],[0,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,0,3,2],[0,3,3,2],[0,1,1,2]],[[0,2,3,1],[2,0,3,2],[0,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,0,3,2],[0,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,3,3],[0,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,3,2],[0,3,3,3],[0,1,2,0]],[[0,2,3,1],[2,0,3,2],[0,3,3,2],[1,1,0,1]],[[0,2,2,2],[2,0,3,2],[0,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,0,3,3],[0,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,0,3,2],[0,3,3,3],[1,1,0,1]],[[0,2,3,1],[2,0,3,2],[1,1,2,2],[0,2,2,1]],[[0,2,2,2],[2,0,3,2],[1,1,2,2],[0,2,2,1]],[[0,2,2,1],[2,0,3,3],[1,1,2,2],[0,2,2,1]],[[0,2,2,1],[2,0,3,2],[1,1,2,3],[0,2,2,1]],[[0,2,2,1],[2,0,3,2],[1,1,2,2],[0,2,3,1]],[[0,2,2,1],[2,0,3,2],[1,1,2,2],[0,2,2,2]],[[0,2,3,1],[2,0,3,2],[1,1,3,2],[0,1,2,1]],[[0,2,2,2],[2,0,3,2],[1,1,3,2],[0,1,2,1]],[[0,2,2,1],[2,0,3,3],[1,1,3,2],[0,1,2,1]],[[0,2,2,1],[2,0,3,2],[1,1,3,3],[0,1,2,1]],[[0,2,2,1],[2,0,3,2],[1,1,3,2],[0,1,2,2]],[[0,2,3,1],[2,0,3,2],[1,1,3,2],[0,2,1,1]],[[0,2,2,2],[2,0,3,2],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[2,0,3,3],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[2,0,3,2],[1,1,3,3],[0,2,1,1]],[[0,2,2,1],[2,0,3,2],[1,1,3,2],[0,2,1,2]],[[0,2,3,1],[2,0,3,2],[1,1,3,2],[0,2,2,0]],[[0,2,2,2],[2,0,3,2],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[2,0,3,3],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[2,0,3,2],[1,1,3,3],[0,2,2,0]],[[0,2,3,1],[2,0,3,2],[1,2,1,2],[0,2,2,1]],[[0,2,2,2],[2,0,3,2],[1,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,3,3],[1,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,0,3,2],[1,2,1,3],[0,2,2,1]],[[0,2,2,1],[2,0,3,2],[1,2,1,2],[0,2,3,1]],[[0,2,2,1],[2,0,3,2],[1,2,1,2],[0,2,2,2]],[[0,2,3,1],[2,0,3,2],[1,2,2,2],[0,2,1,1]],[[0,2,2,2],[2,0,3,2],[1,2,2,2],[0,2,1,1]],[[0,2,2,1],[2,0,3,3],[1,2,2,2],[0,2,1,1]],[[0,2,2,1],[2,0,3,2],[1,2,2,3],[0,2,1,1]],[[0,2,2,1],[2,0,3,2],[1,2,2,2],[0,2,1,2]],[[0,2,3,1],[2,0,3,2],[1,2,2,2],[0,2,2,0]],[[0,2,2,2],[2,0,3,2],[1,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,0,3,3],[1,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,0,3,2],[1,2,2,3],[0,2,2,0]],[[0,2,3,1],[2,0,3,2],[1,2,3,0],[0,2,2,1]],[[0,2,2,2],[2,0,3,2],[1,2,3,0],[0,2,2,1]],[[0,2,2,1],[2,0,3,3],[1,2,3,0],[0,2,2,1]],[[0,3,2,1],[2,0,3,2],[1,2,3,0],[1,2,2,0]],[[0,2,3,1],[2,0,3,2],[1,2,3,0],[1,2,2,0]],[[0,2,2,2],[2,0,3,2],[1,2,3,0],[1,2,2,0]],[[0,2,2,1],[2,0,4,2],[1,2,3,0],[1,2,2,0]],[[0,2,3,1],[2,0,3,2],[1,2,3,1],[0,2,1,1]],[[0,2,2,2],[2,0,3,2],[1,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,0,3,3],[1,2,3,1],[0,2,1,1]],[[0,2,3,1],[2,0,3,2],[1,2,3,1],[0,2,2,0]],[[0,2,2,2],[2,0,3,2],[1,2,3,1],[0,2,2,0]],[[0,2,2,1],[2,0,3,3],[1,2,3,1],[0,2,2,0]],[[0,2,3,1],[2,0,3,2],[1,2,3,2],[0,0,2,1]],[[0,2,2,2],[2,0,3,2],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,0,3,3],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,0,3,2],[1,2,3,3],[0,0,2,1]],[[0,2,2,1],[2,0,3,2],[1,2,3,2],[0,0,2,2]],[[0,2,3,1],[2,0,3,2],[1,2,3,2],[0,1,1,1]],[[0,2,2,2],[2,0,3,2],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,3,3],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,0,3,2],[1,2,3,3],[0,1,1,1]],[[0,2,2,1],[2,0,3,2],[1,2,3,2],[0,1,1,2]],[[0,2,3,1],[2,0,3,2],[1,2,3,2],[0,1,2,0]],[[0,2,2,2],[2,0,3,2],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,3,3],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,0,3,2],[1,2,3,3],[0,1,2,0]],[[0,2,3,1],[2,0,3,2],[1,2,3,2],[1,0,1,1]],[[0,2,2,2],[2,0,3,2],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,3,3],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,0,3,2],[1,2,3,3],[1,0,1,1]],[[0,2,2,1],[2,0,3,2],[1,2,3,2],[1,0,1,2]],[[0,2,3,1],[2,0,3,2],[1,2,3,2],[1,0,2,0]],[[0,2,2,2],[2,0,3,2],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,3,3],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,0,3,2],[1,2,3,3],[1,0,2,0]],[[0,2,3,1],[2,0,3,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,2],[2,0,3,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,0,3,3],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,0,3,2],[1,3,0,3],[0,2,2,1]],[[0,2,2,1],[2,0,3,2],[1,3,0,2],[0,2,3,1]],[[0,2,2,1],[2,0,3,2],[1,3,0,2],[0,2,2,2]],[[0,2,3,1],[2,0,3,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,2],[2,0,3,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,0,3,3],[1,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,0,3,2],[1,3,1,3],[0,1,2,1]],[[0,2,2,1],[2,0,3,2],[1,3,1,2],[0,1,3,1]],[[0,2,2,1],[2,0,3,2],[1,3,1,2],[0,1,2,2]],[[0,2,3,1],[2,0,3,2],[1,3,1,2],[1,0,2,1]],[[0,2,2,2],[2,0,3,2],[1,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,0,3,3],[1,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,0,3,2],[1,3,1,3],[1,0,2,1]],[[0,2,2,1],[2,0,3,2],[1,3,1,2],[1,0,2,2]],[[0,2,3,1],[2,0,3,2],[1,3,2,2],[0,0,2,1]],[[0,2,2,2],[2,0,3,2],[1,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,0,3,3],[1,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,0,3,2],[1,3,2,3],[0,0,2,1]],[[0,2,2,1],[2,0,3,2],[1,3,2,2],[0,0,2,2]],[[0,2,3,1],[2,0,3,2],[1,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,0,3,2],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,0,3,3],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,0,3,2],[1,3,2,3],[0,1,1,1]],[[0,2,2,1],[2,0,3,2],[1,3,2,2],[0,1,1,2]],[[0,2,3,1],[2,0,3,2],[1,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,0,3,2],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,0,3,3],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,0,3,2],[1,3,2,3],[0,1,2,0]],[[0,2,3,1],[2,0,3,2],[1,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,0,3,2],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,0,3,3],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,0,3,2],[1,3,2,3],[0,2,0,1]],[[0,2,2,1],[2,0,3,2],[1,3,2,2],[0,2,0,2]],[[0,2,3,1],[2,0,3,2],[1,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,0,3,2],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,0,3,3],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,0,3,2],[1,3,2,3],[0,2,1,0]],[[0,2,3,1],[2,0,3,2],[1,3,2,2],[1,0,1,1]],[[0,2,2,2],[2,0,3,2],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,0,3,3],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,0,3,2],[1,3,2,3],[1,0,1,1]],[[0,2,2,1],[2,0,3,2],[1,3,2,2],[1,0,1,2]],[[0,2,3,1],[2,0,3,2],[1,3,2,2],[1,0,2,0]],[[0,2,2,2],[2,0,3,2],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,0,3,3],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,0,3,2],[1,3,2,3],[1,0,2,0]],[[0,2,3,1],[2,0,3,2],[1,3,2,2],[1,1,0,1]],[[0,2,2,2],[2,0,3,2],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,0,3,3],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,0,3,2],[1,3,2,3],[1,1,0,1]],[[0,2,3,1],[2,0,3,2],[1,3,2,2],[1,1,1,0]],[[0,2,2,2],[2,0,3,2],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,0,3,3],[1,3,2,2],[1,1,1,0]],[[0,2,3,1],[2,0,3,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,0,3,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,0,3,3],[1,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,0,3,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,2],[2,0,3,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,0,3,3],[1,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,0,3,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,2],[2,0,3,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,0,3,3],[1,3,3,0],[1,0,2,1]],[[0,3,2,1],[2,0,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,3,1],[2,0,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,2,2],[2,0,3,2],[1,3,3,0],[1,1,2,0]],[[0,2,2,1],[2,0,4,2],[1,3,3,0],[1,1,2,0]],[[0,3,2,1],[2,0,3,2],[1,3,3,0],[1,2,0,1]],[[0,2,3,1],[2,0,3,2],[1,3,3,0],[1,2,0,1]],[[0,2,2,2],[2,0,3,2],[1,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,0,4,2],[1,3,3,0],[1,2,0,1]],[[0,3,2,1],[2,0,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,3,1],[2,0,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,2,2],[2,0,3,2],[1,3,3,0],[1,2,1,0]],[[0,2,2,1],[2,0,4,2],[1,3,3,0],[1,2,1,0]],[[0,2,3,1],[2,0,3,2],[1,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,0,3,2],[1,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,0,3,3],[1,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,0,3,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,0,3,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,0,3,3],[1,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,0,3,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,0,3,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,0,3,3],[1,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,0,3,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,0,3,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,0,3,3],[1,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,0,3,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,0,3,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,0,3,3],[1,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,0,3,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,2],[2,0,3,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,0,3,3],[1,3,3,1],[1,0,1,1]],[[0,2,3,1],[2,0,3,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,2],[2,0,3,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,0,3,3],[1,3,3,1],[1,0,2,0]],[[0,2,3,1],[2,0,3,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,2],[2,0,3,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,0,3,3],[1,3,3,1],[1,1,0,1]],[[0,2,3,1],[2,0,3,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,2],[2,0,3,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,0,3,3],[1,3,3,1],[1,1,1,0]],[[0,2,3,1],[2,0,3,2],[1,3,3,2],[0,1,0,1]],[[0,2,2,2],[2,0,3,2],[1,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,0,3,3],[1,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,0,3,2],[1,3,3,3],[0,1,0,1]],[[0,2,3,1],[2,0,3,2],[1,3,3,2],[1,0,0,1]],[[0,2,2,2],[2,0,3,2],[1,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,0,3,3],[1,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,0,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,0],[2,2,3,2],[0,3,3,3],[0,0,0,1]],[[1,2,2,0],[2,2,3,3],[0,3,3,2],[0,0,0,1]],[[1,2,2,0],[2,2,4,2],[0,3,3,2],[0,0,0,1]],[[1,2,3,0],[2,2,3,2],[0,3,3,2],[0,0,0,1]],[[1,3,2,0],[2,2,3,2],[0,3,3,2],[0,0,0,1]],[[2,2,2,0],[2,2,3,2],[0,3,3,2],[0,0,0,1]],[[1,2,2,0],[2,2,3,3],[0,3,3,1],[1,1,0,0]],[[1,2,2,0],[2,2,4,2],[0,3,3,1],[1,1,0,0]],[[1,2,3,0],[2,2,3,2],[0,3,3,1],[1,1,0,0]],[[1,3,2,0],[2,2,3,2],[0,3,3,1],[1,1,0,0]],[[2,2,2,0],[2,2,3,2],[0,3,3,1],[1,1,0,0]],[[0,2,3,1],[2,0,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,0,3,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,3],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,0,3,2],[2,0,1,3],[1,2,2,1]],[[0,2,2,1],[2,0,3,2],[2,0,1,2],[1,2,3,1]],[[0,2,2,1],[2,0,3,2],[2,0,1,2],[1,2,2,2]],[[0,2,3,1],[2,0,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,2],[2,0,3,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,0,3,3],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,0,3,2],[2,0,2,3],[1,2,1,1]],[[0,2,2,1],[2,0,3,2],[2,0,2,2],[1,2,1,2]],[[0,2,3,1],[2,0,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,0,3,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,3],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,0,3,2],[2,0,2,3],[1,2,2,0]],[[0,2,3,1],[2,0,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,0,3,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,0,3,3],[2,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,0,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,0,3,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,0,3,3],[2,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,0,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,0,3,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,0,3,3],[2,0,3,1],[1,2,2,0]],[[0,3,2,1],[2,0,3,2],[2,1,3,0],[1,2,2,0]],[[0,2,3,1],[2,0,3,2],[2,1,3,0],[1,2,2,0]],[[0,2,2,2],[2,0,3,2],[2,1,3,0],[1,2,2,0]],[[0,2,2,1],[2,0,4,2],[2,1,3,0],[1,2,2,0]],[[1,2,2,0],[2,2,3,3],[0,3,3,1],[0,2,0,0]],[[1,2,2,0],[2,2,4,2],[0,3,3,1],[0,2,0,0]],[[1,2,3,0],[2,2,3,2],[0,3,3,1],[0,2,0,0]],[[1,3,2,0],[2,2,3,2],[0,3,3,1],[0,2,0,0]],[[2,2,2,0],[2,2,3,2],[0,3,3,1],[0,2,0,0]],[[1,2,2,0],[2,2,3,2],[0,3,4,1],[0,0,2,0]],[[1,2,2,0],[2,2,3,3],[0,3,3,1],[0,0,2,0]],[[1,2,2,0],[2,2,4,2],[0,3,3,1],[0,0,2,0]],[[1,2,3,0],[2,2,3,2],[0,3,3,1],[0,0,2,0]],[[1,3,2,0],[2,2,3,2],[0,3,3,1],[0,0,2,0]],[[2,2,2,0],[2,2,3,2],[0,3,3,1],[0,0,2,0]],[[1,2,2,0],[2,2,3,2],[0,3,4,1],[0,0,1,1]],[[1,2,2,0],[2,2,3,3],[0,3,3,1],[0,0,1,1]],[[1,2,2,0],[2,2,4,2],[0,3,3,1],[0,0,1,1]],[[1,2,3,0],[2,2,3,2],[0,3,3,1],[0,0,1,1]],[[1,3,2,0],[2,2,3,2],[0,3,3,1],[0,0,1,1]],[[2,2,2,0],[2,2,3,2],[0,3,3,1],[0,0,1,1]],[[1,2,2,0],[2,2,4,2],[0,3,3,0],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[0,3,3,0],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[0,3,3,0],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[0,3,3,0],[1,1,1,0]],[[1,2,2,0],[2,2,4,2],[0,3,3,0],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[0,3,3,0],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[0,3,3,0],[1,0,2,0]],[[2,2,2,0],[2,2,3,2],[0,3,3,0],[1,0,2,0]],[[1,2,2,0],[2,2,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[0,3,3,0],[0,2,1,0]],[[1,3,2,0],[2,2,3,2],[0,3,3,0],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[0,3,3,0],[0,2,1,0]],[[1,2,2,0],[2,2,4,2],[0,3,3,0],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[0,3,3,0],[0,1,2,0]],[[1,3,2,0],[2,2,3,2],[0,3,3,0],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[0,3,3,0],[0,1,2,0]],[[1,2,2,0],[2,2,3,2],[0,3,4,0],[0,0,2,1]],[[1,2,2,0],[2,2,3,3],[0,3,3,0],[0,0,2,1]],[[1,2,2,0],[2,2,4,2],[0,3,3,0],[0,0,2,1]],[[1,2,3,0],[2,2,3,2],[0,3,3,0],[0,0,2,1]],[[1,3,2,0],[2,2,3,2],[0,3,3,0],[0,0,2,1]],[[2,2,2,0],[2,2,3,2],[0,3,3,0],[0,0,2,1]],[[0,3,2,1],[2,0,3,2],[2,2,3,0],[0,2,2,0]],[[0,2,3,1],[2,0,3,2],[2,2,3,0],[0,2,2,0]],[[0,2,2,2],[2,0,3,2],[2,2,3,0],[0,2,2,0]],[[0,2,2,1],[2,0,4,2],[2,2,3,0],[0,2,2,0]],[[1,2,2,0],[2,2,3,2],[0,3,2,3],[0,0,2,0]],[[1,2,2,0],[2,2,3,3],[0,3,2,2],[0,0,2,0]],[[1,2,2,0],[2,2,4,2],[0,3,2,2],[0,0,2,0]],[[1,2,3,0],[2,2,3,2],[0,3,2,2],[0,0,2,0]],[[1,3,2,0],[2,2,3,2],[0,3,2,2],[0,0,2,0]],[[2,2,2,0],[2,2,3,2],[0,3,2,2],[0,0,2,0]],[[1,2,2,0],[2,2,3,2],[0,3,2,2],[0,0,1,2]],[[1,2,2,0],[2,2,3,2],[0,3,2,3],[0,0,1,1]],[[1,2,2,0],[2,2,3,3],[0,3,2,2],[0,0,1,1]],[[1,2,2,0],[2,2,4,2],[0,3,2,2],[0,0,1,1]],[[1,2,3,0],[2,2,3,2],[0,3,2,2],[0,0,1,1]],[[1,3,2,0],[2,2,3,2],[0,3,2,2],[0,0,1,1]],[[2,2,2,0],[2,2,3,2],[0,3,2,2],[0,0,1,1]],[[1,2,2,0],[2,2,3,3],[0,3,2,1],[1,1,1,0]],[[1,2,2,0],[2,2,4,2],[0,3,2,1],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[0,3,2,1],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[0,3,2,1],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[0,3,2,1],[1,1,1,0]],[[1,2,2,0],[2,2,3,3],[0,3,2,1],[1,1,0,1]],[[1,2,2,0],[2,2,4,2],[0,3,2,1],[1,1,0,1]],[[1,2,3,0],[2,2,3,2],[0,3,2,1],[1,1,0,1]],[[1,3,2,0],[2,2,3,2],[0,3,2,1],[1,1,0,1]],[[2,2,2,0],[2,2,3,2],[0,3,2,1],[1,1,0,1]],[[1,2,2,0],[2,2,3,3],[0,3,2,1],[1,0,2,0]],[[1,2,2,0],[2,2,4,2],[0,3,2,1],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[0,3,2,1],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[0,3,2,1],[1,0,2,0]],[[2,2,2,0],[2,2,3,2],[0,3,2,1],[1,0,2,0]],[[1,2,2,0],[2,2,3,3],[0,3,2,1],[1,0,1,1]],[[1,2,2,0],[2,2,4,2],[0,3,2,1],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[0,3,2,1],[1,0,1,1]],[[1,3,2,0],[2,2,3,2],[0,3,2,1],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[0,3,2,1],[1,0,1,1]],[[1,2,2,0],[2,2,3,3],[0,3,2,1],[0,2,1,0]],[[1,2,2,0],[2,2,4,2],[0,3,2,1],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[0,3,2,1],[0,2,1,0]],[[1,3,2,0],[2,2,3,2],[0,3,2,1],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[0,3,2,1],[0,2,1,0]],[[1,2,2,0],[2,2,3,3],[0,3,2,1],[0,2,0,1]],[[1,2,2,0],[2,2,4,2],[0,3,2,1],[0,2,0,1]],[[1,2,3,0],[2,2,3,2],[0,3,2,1],[0,2,0,1]],[[1,3,2,0],[2,2,3,2],[0,3,2,1],[0,2,0,1]],[[2,2,2,0],[2,2,3,2],[0,3,2,1],[0,2,0,1]],[[1,2,2,0],[2,2,3,3],[0,3,2,1],[0,1,2,0]],[[1,2,2,0],[2,2,4,2],[0,3,2,1],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[0,3,2,1],[0,1,2,0]],[[1,3,2,0],[2,2,3,2],[0,3,2,1],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[0,3,2,1],[0,1,2,0]],[[1,2,2,0],[2,2,3,3],[0,3,2,1],[0,1,1,1]],[[1,2,2,0],[2,2,4,2],[0,3,2,1],[0,1,1,1]],[[1,2,3,0],[2,2,3,2],[0,3,2,1],[0,1,1,1]],[[1,3,2,0],[2,2,3,2],[0,3,2,1],[0,1,1,1]],[[2,2,2,0],[2,2,3,2],[0,3,2,1],[0,1,1,1]],[[1,2,2,0],[2,2,4,2],[0,3,2,0],[1,1,1,1]],[[1,2,3,0],[2,2,3,2],[0,3,2,0],[1,1,1,1]],[[1,3,2,0],[2,2,3,2],[0,3,2,0],[1,1,1,1]],[[2,2,2,0],[2,2,3,2],[0,3,2,0],[1,1,1,1]],[[1,2,2,0],[2,2,3,3],[0,3,2,0],[1,0,2,1]],[[1,2,2,0],[2,2,4,2],[0,3,2,0],[1,0,2,1]],[[1,2,3,0],[2,2,3,2],[0,3,2,0],[1,0,2,1]],[[1,3,2,0],[2,2,3,2],[0,3,2,0],[1,0,2,1]],[[2,2,2,0],[2,2,3,2],[0,3,2,0],[1,0,2,1]],[[1,2,2,0],[2,2,3,3],[0,3,2,0],[0,2,1,1]],[[1,2,2,0],[2,2,4,2],[0,3,2,0],[0,2,1,1]],[[1,2,3,0],[2,2,3,2],[0,3,2,0],[0,2,1,1]],[[1,3,2,0],[2,2,3,2],[0,3,2,0],[0,2,1,1]],[[2,2,2,0],[2,2,3,2],[0,3,2,0],[0,2,1,1]],[[1,2,2,0],[2,2,3,3],[0,3,2,0],[0,1,2,1]],[[1,2,2,0],[2,2,4,2],[0,3,2,0],[0,1,2,1]],[[1,2,3,0],[2,2,3,2],[0,3,2,0],[0,1,2,1]],[[1,3,2,0],[2,2,3,2],[0,3,2,0],[0,1,2,1]],[[2,2,2,0],[2,2,3,2],[0,3,2,0],[0,1,2,1]],[[1,2,2,0],[2,2,3,3],[0,3,1,2],[1,1,1,0]],[[1,2,2,0],[2,2,4,2],[0,3,1,2],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[0,3,1,2],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[0,3,1,2],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[0,3,1,2],[1,1,1,0]],[[1,2,2,0],[2,2,3,2],[0,3,1,3],[1,1,0,1]],[[1,2,2,0],[2,2,3,3],[0,3,1,2],[1,1,0,1]],[[1,2,2,0],[2,2,4,2],[0,3,1,2],[1,1,0,1]],[[1,2,3,0],[2,2,3,2],[0,3,1,2],[1,1,0,1]],[[1,3,2,0],[2,2,3,2],[0,3,1,2],[1,1,0,1]],[[2,2,2,0],[2,2,3,2],[0,3,1,2],[1,1,0,1]],[[1,2,2,0],[2,2,3,2],[0,3,1,3],[1,0,2,0]],[[1,2,2,0],[2,2,3,3],[0,3,1,2],[1,0,2,0]],[[1,2,2,0],[2,2,4,2],[0,3,1,2],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[0,3,1,2],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[0,3,1,2],[1,0,2,0]],[[2,2,2,0],[2,2,3,2],[0,3,1,2],[1,0,2,0]],[[1,2,2,0],[2,2,3,2],[0,3,1,2],[1,0,1,2]],[[1,2,2,0],[2,2,3,2],[0,3,1,3],[1,0,1,1]],[[1,2,2,0],[2,2,3,3],[0,3,1,2],[1,0,1,1]],[[1,2,2,0],[2,2,4,2],[0,3,1,2],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[0,3,1,2],[1,0,1,1]],[[1,3,2,0],[2,2,3,2],[0,3,1,2],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[0,3,1,2],[1,0,1,1]],[[1,2,2,0],[2,2,3,2],[0,3,1,3],[0,2,1,0]],[[1,2,2,0],[2,2,3,3],[0,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,2,4,2],[0,3,1,2],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[0,3,1,2],[0,2,1,0]],[[1,3,2,0],[2,2,3,2],[0,3,1,2],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[0,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,2,3,2],[0,3,1,2],[0,2,0,2]],[[1,2,2,0],[2,2,3,2],[0,3,1,3],[0,2,0,1]],[[1,2,2,0],[2,2,3,3],[0,3,1,2],[0,2,0,1]],[[1,2,2,0],[2,2,4,2],[0,3,1,2],[0,2,0,1]],[[1,2,3,0],[2,2,3,2],[0,3,1,2],[0,2,0,1]],[[1,3,2,0],[2,2,3,2],[0,3,1,2],[0,2,0,1]],[[2,2,2,0],[2,2,3,2],[0,3,1,2],[0,2,0,1]],[[1,2,2,0],[2,2,3,2],[0,3,1,3],[0,1,2,0]],[[1,2,2,0],[2,2,3,3],[0,3,1,2],[0,1,2,0]],[[1,2,2,0],[2,2,4,2],[0,3,1,2],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[0,3,1,2],[0,1,2,0]],[[1,3,2,0],[2,2,3,2],[0,3,1,2],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[0,3,1,2],[0,1,2,0]],[[1,2,2,0],[2,2,3,2],[0,3,1,2],[0,1,1,2]],[[1,2,2,0],[2,2,3,2],[0,3,1,3],[0,1,1,1]],[[1,2,2,0],[2,2,3,3],[0,3,1,2],[0,1,1,1]],[[1,2,2,0],[2,2,4,2],[0,3,1,2],[0,1,1,1]],[[1,2,3,0],[2,2,3,2],[0,3,1,2],[0,1,1,1]],[[1,3,2,0],[2,2,3,2],[0,3,1,2],[0,1,1,1]],[[2,2,2,0],[2,2,3,2],[0,3,1,2],[0,1,1,1]],[[1,2,2,0],[3,2,3,2],[0,3,1,1],[1,2,1,0]],[[1,2,3,0],[2,2,3,2],[0,3,1,1],[1,2,1,0]],[[1,3,2,0],[2,2,3,2],[0,3,1,1],[1,2,1,0]],[[2,2,2,0],[2,2,3,2],[0,3,1,1],[1,2,1,0]],[[1,2,2,0],[3,2,3,2],[0,3,1,1],[1,2,0,1]],[[1,2,3,0],[2,2,3,2],[0,3,1,1],[1,2,0,1]],[[1,3,2,0],[2,2,3,2],[0,3,1,1],[1,2,0,1]],[[2,2,2,0],[2,2,3,2],[0,3,1,1],[1,2,0,1]],[[1,2,2,0],[2,2,3,3],[0,3,1,1],[0,2,2,0]],[[1,2,2,0],[2,2,4,2],[0,3,1,1],[0,2,2,0]],[[1,2,3,0],[2,2,3,2],[0,3,1,1],[0,2,2,0]],[[1,3,2,0],[2,2,3,2],[0,3,1,1],[0,2,2,0]],[[2,2,2,0],[2,2,3,2],[0,3,1,1],[0,2,2,0]],[[1,2,2,0],[3,2,3,2],[0,3,1,0],[1,2,1,1]],[[1,2,3,0],[2,2,3,2],[0,3,1,0],[1,2,1,1]],[[1,3,2,0],[2,2,3,2],[0,3,1,0],[1,2,1,1]],[[2,2,2,0],[2,2,3,2],[0,3,1,0],[1,2,1,1]],[[1,2,2,0],[2,2,3,3],[0,3,1,0],[0,2,2,1]],[[1,2,2,0],[2,2,4,2],[0,3,1,0],[0,2,2,1]],[[1,2,3,0],[2,2,3,2],[0,3,1,0],[0,2,2,1]],[[1,3,2,0],[2,2,3,2],[0,3,1,0],[0,2,2,1]],[[2,2,2,0],[2,2,3,2],[0,3,1,0],[0,2,2,1]],[[1,2,2,0],[3,2,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,3,0],[2,2,3,2],[0,3,0,2],[1,2,1,0]],[[1,3,2,0],[2,2,3,2],[0,3,0,2],[1,2,1,0]],[[2,2,2,0],[2,2,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,2,0],[3,2,3,2],[0,3,0,2],[1,2,0,1]],[[1,2,3,0],[2,2,3,2],[0,3,0,2],[1,2,0,1]],[[1,3,2,0],[2,2,3,2],[0,3,0,2],[1,2,0,1]],[[2,2,2,0],[2,2,3,2],[0,3,0,2],[1,2,0,1]],[[0,3,2,1],[2,0,3,2],[2,3,3,0],[0,1,1,1]],[[0,2,3,1],[2,0,3,2],[2,3,3,0],[0,1,1,1]],[[0,2,2,2],[2,0,3,2],[2,3,3,0],[0,1,1,1]],[[0,2,2,1],[2,0,4,2],[2,3,3,0],[0,1,1,1]],[[0,3,2,1],[2,0,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,3,1],[2,0,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,2,2],[2,0,3,2],[2,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,0,4,2],[2,3,3,0],[0,1,2,0]],[[0,3,2,1],[2,0,3,2],[2,3,3,0],[0,2,0,1]],[[0,2,3,1],[2,0,3,2],[2,3,3,0],[0,2,0,1]],[[0,2,2,2],[2,0,3,2],[2,3,3,0],[0,2,0,1]],[[0,2,2,1],[2,0,4,2],[2,3,3,0],[0,2,0,1]],[[0,3,2,1],[2,0,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,3,1],[2,0,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,2,2],[2,0,3,2],[2,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,0,4,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,0],[2,2,3,2],[0,3,0,2],[1,0,2,2]],[[1,2,2,0],[2,2,3,2],[0,3,0,3],[1,0,2,1]],[[1,2,2,0],[2,2,3,3],[0,3,0,2],[1,0,2,1]],[[1,2,2,0],[2,2,4,2],[0,3,0,2],[1,0,2,1]],[[1,2,3,0],[2,2,3,2],[0,3,0,2],[1,0,2,1]],[[1,3,2,0],[2,2,3,2],[0,3,0,2],[1,0,2,1]],[[0,3,2,1],[2,0,3,2],[2,3,3,0],[1,0,1,1]],[[0,2,3,1],[2,0,3,2],[2,3,3,0],[1,0,1,1]],[[0,2,2,2],[2,0,3,2],[2,3,3,0],[1,0,1,1]],[[0,2,2,1],[2,0,4,2],[2,3,3,0],[1,0,1,1]],[[0,3,2,1],[2,0,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,3,1],[2,0,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,2,2],[2,0,3,2],[2,3,3,0],[1,0,2,0]],[[0,2,2,1],[2,0,4,2],[2,3,3,0],[1,0,2,0]],[[0,3,2,1],[2,0,3,2],[2,3,3,0],[1,1,0,1]],[[0,2,3,1],[2,0,3,2],[2,3,3,0],[1,1,0,1]],[[0,2,2,2],[2,0,3,2],[2,3,3,0],[1,1,0,1]],[[0,2,2,1],[2,0,4,2],[2,3,3,0],[1,1,0,1]],[[0,3,2,1],[2,0,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,3,1],[2,0,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,2,2],[2,0,3,2],[2,3,3,0],[1,1,1,0]],[[0,2,2,1],[2,0,4,2],[2,3,3,0],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[0,3,0,2],[1,0,2,1]],[[1,2,2,0],[2,2,3,2],[0,3,0,3],[0,2,2,0]],[[1,2,2,0],[2,2,3,3],[0,3,0,2],[0,2,2,0]],[[1,2,2,0],[2,2,4,2],[0,3,0,2],[0,2,2,0]],[[1,2,3,0],[2,2,3,2],[0,3,0,2],[0,2,2,0]],[[1,3,2,0],[2,2,3,2],[0,3,0,2],[0,2,2,0]],[[2,2,2,0],[2,2,3,2],[0,3,0,2],[0,2,2,0]],[[1,2,2,0],[2,2,3,2],[0,3,0,2],[0,2,1,2]],[[1,2,2,0],[2,2,3,2],[0,3,0,3],[0,2,1,1]],[[1,2,2,0],[2,2,3,3],[0,3,0,2],[0,2,1,1]],[[1,2,2,0],[2,2,4,2],[0,3,0,2],[0,2,1,1]],[[1,2,3,0],[2,2,3,2],[0,3,0,2],[0,2,1,1]],[[1,3,2,0],[2,2,3,2],[0,3,0,2],[0,2,1,1]],[[2,2,2,0],[2,2,3,2],[0,3,0,2],[0,2,1,1]],[[1,2,2,0],[2,2,3,2],[0,3,0,2],[0,1,2,2]],[[1,2,2,0],[2,2,3,2],[0,3,0,2],[0,1,3,1]],[[1,2,2,0],[2,2,3,2],[0,3,0,3],[0,1,2,1]],[[1,2,2,0],[2,2,3,3],[0,3,0,2],[0,1,2,1]],[[1,2,2,0],[2,2,4,2],[0,3,0,2],[0,1,2,1]],[[1,2,3,0],[2,2,3,2],[0,3,0,2],[0,1,2,1]],[[1,3,2,0],[2,2,3,2],[0,3,0,2],[0,1,2,1]],[[2,2,2,0],[2,2,3,2],[0,3,0,2],[0,1,2,1]],[[1,2,2,0],[3,2,3,2],[0,3,0,1],[1,2,2,0]],[[1,2,3,0],[2,2,3,2],[0,3,0,1],[1,2,2,0]],[[1,3,2,0],[2,2,3,2],[0,3,0,1],[1,2,2,0]],[[2,2,2,0],[2,2,3,2],[0,3,0,1],[1,2,2,0]],[[1,2,2,0],[2,2,3,3],[0,3,0,1],[0,2,2,1]],[[1,2,2,0],[2,2,4,2],[0,3,0,1],[0,2,2,1]],[[1,2,3,0],[2,2,3,2],[0,3,0,1],[0,2,2,1]],[[1,3,2,0],[2,2,3,2],[0,3,0,1],[0,2,2,1]],[[2,2,2,0],[2,2,3,2],[0,3,0,1],[0,2,2,1]],[[1,2,2,0],[3,2,3,2],[0,3,0,0],[1,2,2,1]],[[1,2,3,0],[2,2,3,2],[0,3,0,0],[1,2,2,1]],[[1,3,2,0],[2,2,3,2],[0,3,0,0],[1,2,2,1]],[[2,2,2,0],[2,2,3,2],[0,3,0,0],[1,2,2,1]],[[1,2,2,0],[2,2,3,2],[0,2,3,3],[1,0,0,1]],[[1,2,2,0],[2,2,3,3],[0,2,3,2],[1,0,0,1]],[[1,2,2,0],[2,2,4,2],[0,2,3,2],[1,0,0,1]],[[1,2,3,0],[2,2,3,2],[0,2,3,2],[1,0,0,1]],[[1,3,2,0],[2,2,3,2],[0,2,3,2],[1,0,0,1]],[[2,2,2,0],[2,2,3,2],[0,2,3,2],[1,0,0,1]],[[1,2,2,0],[2,2,3,2],[0,2,3,3],[0,1,0,1]],[[1,2,2,0],[2,2,3,3],[0,2,3,2],[0,1,0,1]],[[1,2,2,0],[2,2,4,2],[0,2,3,2],[0,1,0,1]],[[1,2,3,0],[2,2,3,2],[0,2,3,2],[0,1,0,1]],[[1,3,2,0],[2,2,3,2],[0,2,3,2],[0,1,0,1]],[[2,2,2,0],[2,2,3,2],[0,2,3,2],[0,1,0,1]],[[1,2,2,0],[2,2,3,3],[0,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,2,4,2],[0,2,3,1],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[0,2,3,1],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[0,2,3,1],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[0,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,2,3,3],[0,2,3,1],[1,1,0,1]],[[1,2,2,0],[2,2,4,2],[0,2,3,1],[1,1,0,1]],[[1,2,3,0],[2,2,3,2],[0,2,3,1],[1,1,0,1]],[[1,3,2,0],[2,2,3,2],[0,2,3,1],[1,1,0,1]],[[2,2,2,0],[2,2,3,2],[0,2,3,1],[1,1,0,1]],[[1,2,2,0],[2,2,3,2],[0,2,4,1],[1,0,2,0]],[[1,2,2,0],[2,2,3,3],[0,2,3,1],[1,0,2,0]],[[1,2,2,0],[2,2,4,2],[0,2,3,1],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[0,2,3,1],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[0,2,3,1],[1,0,2,0]],[[2,2,2,0],[2,2,3,2],[0,2,3,1],[1,0,2,0]],[[1,2,2,0],[2,2,3,2],[0,2,4,1],[1,0,1,1]],[[1,2,2,0],[2,2,3,3],[0,2,3,1],[1,0,1,1]],[[1,2,2,0],[2,2,4,2],[0,2,3,1],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[0,2,3,1],[1,0,1,1]],[[1,3,2,0],[2,2,3,2],[0,2,3,1],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[0,2,3,1],[1,0,1,1]],[[1,2,2,0],[2,2,3,2],[0,2,4,1],[0,2,1,0]],[[1,2,2,0],[2,2,3,3],[0,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,2,4,2],[0,2,3,1],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[0,2,3,1],[0,2,1,0]],[[1,3,2,0],[2,2,3,2],[0,2,3,1],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[0,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,2,3,2],[0,2,4,1],[0,2,0,1]],[[1,2,2,0],[2,2,3,3],[0,2,3,1],[0,2,0,1]],[[1,2,2,0],[2,2,4,2],[0,2,3,1],[0,2,0,1]],[[1,2,3,0],[2,2,3,2],[0,2,3,1],[0,2,0,1]],[[1,3,2,0],[2,2,3,2],[0,2,3,1],[0,2,0,1]],[[2,2,2,0],[2,2,3,2],[0,2,3,1],[0,2,0,1]],[[1,2,2,0],[2,2,3,2],[0,2,3,1],[0,1,3,0]],[[1,2,2,0],[2,2,3,2],[0,2,4,1],[0,1,2,0]],[[1,2,2,0],[2,2,3,3],[0,2,3,1],[0,1,2,0]],[[1,2,2,0],[2,2,4,2],[0,2,3,1],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[0,2,3,1],[0,1,2,0]],[[1,3,2,0],[2,2,3,2],[0,2,3,1],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[0,2,3,1],[0,1,2,0]],[[1,2,2,0],[2,2,3,2],[0,2,4,1],[0,1,1,1]],[[1,2,2,0],[2,2,3,3],[0,2,3,1],[0,1,1,1]],[[1,2,2,0],[2,2,4,2],[0,2,3,1],[0,1,1,1]],[[1,2,3,0],[2,2,3,2],[0,2,3,1],[0,1,1,1]],[[1,3,2,0],[2,2,3,2],[0,2,3,1],[0,1,1,1]],[[2,2,2,0],[2,2,3,2],[0,2,3,1],[0,1,1,1]],[[1,2,2,0],[2,2,3,2],[0,2,4,1],[0,0,2,1]],[[1,2,2,0],[2,2,3,3],[0,2,3,1],[0,0,2,1]],[[1,2,2,0],[2,2,4,2],[0,2,3,1],[0,0,2,1]],[[1,2,3,0],[2,2,3,2],[0,2,3,1],[0,0,2,1]],[[1,3,2,0],[2,2,3,2],[0,2,3,1],[0,0,2,1]],[[2,2,2,0],[2,2,3,2],[0,2,3,1],[0,0,2,1]],[[1,2,2,0],[2,2,4,2],[0,2,3,0],[1,1,1,1]],[[1,2,3,0],[2,2,3,2],[0,2,3,0],[1,1,1,1]],[[1,3,2,0],[2,2,3,2],[0,2,3,0],[1,1,1,1]],[[2,2,2,0],[2,2,3,2],[0,2,3,0],[1,1,1,1]],[[1,2,2,0],[2,2,3,2],[0,2,4,0],[1,0,2,1]],[[1,2,2,0],[2,2,3,3],[0,2,3,0],[1,0,2,1]],[[1,2,2,0],[2,2,4,2],[0,2,3,0],[1,0,2,1]],[[1,2,3,0],[2,2,3,2],[0,2,3,0],[1,0,2,1]],[[1,3,2,0],[2,2,3,2],[0,2,3,0],[1,0,2,1]],[[2,2,2,0],[2,2,3,2],[0,2,3,0],[1,0,2,1]],[[1,2,2,0],[2,2,3,2],[0,2,4,0],[0,2,1,1]],[[1,2,2,0],[2,2,3,3],[0,2,3,0],[0,2,1,1]],[[1,2,2,0],[2,2,4,2],[0,2,3,0],[0,2,1,1]],[[1,2,3,0],[2,2,3,2],[0,2,3,0],[0,2,1,1]],[[1,3,2,0],[2,2,3,2],[0,2,3,0],[0,2,1,1]],[[2,2,2,0],[2,2,3,2],[0,2,3,0],[0,2,1,1]],[[1,2,2,0],[2,2,3,2],[0,2,3,0],[0,1,2,2]],[[1,2,2,0],[2,2,3,2],[0,2,3,0],[0,1,3,1]],[[1,2,2,0],[2,2,3,2],[0,2,4,0],[0,1,2,1]],[[1,2,2,0],[2,2,3,3],[0,2,3,0],[0,1,2,1]],[[1,2,2,0],[2,2,4,2],[0,2,3,0],[0,1,2,1]],[[1,2,3,0],[2,2,3,2],[0,2,3,0],[0,1,2,1]],[[1,3,2,0],[2,2,3,2],[0,2,3,0],[0,1,2,1]],[[2,2,2,0],[2,2,3,2],[0,2,3,0],[0,1,2,1]],[[1,2,2,0],[2,2,3,3],[0,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,2,4,2],[0,2,2,2],[1,1,1,0]],[[1,2,3,0],[2,2,3,2],[0,2,2,2],[1,1,1,0]],[[1,3,2,0],[2,2,3,2],[0,2,2,2],[1,1,1,0]],[[2,2,2,0],[2,2,3,2],[0,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,2,3,2],[0,2,2,3],[1,1,0,1]],[[1,2,2,0],[2,2,3,3],[0,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,2,4,2],[0,2,2,2],[1,1,0,1]],[[1,2,3,0],[2,2,3,2],[0,2,2,2],[1,1,0,1]],[[1,3,2,0],[2,2,3,2],[0,2,2,2],[1,1,0,1]],[[2,2,2,0],[2,2,3,2],[0,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,2,3,2],[0,2,2,3],[1,0,2,0]],[[1,2,2,0],[2,2,3,3],[0,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,2,4,2],[0,2,2,2],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[0,2,2,2],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[0,2,2,2],[1,0,2,0]],[[2,2,2,0],[2,2,3,2],[0,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,2,3,2],[0,2,2,2],[1,0,1,2]],[[1,2,2,0],[2,2,3,2],[0,2,2,3],[1,0,1,1]],[[1,2,2,0],[2,2,3,3],[0,2,2,2],[1,0,1,1]],[[1,2,2,0],[2,2,4,2],[0,2,2,2],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[0,2,2,2],[1,0,1,1]],[[1,3,2,0],[2,2,3,2],[0,2,2,2],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[0,2,2,2],[1,0,1,1]],[[1,2,2,0],[2,2,3,2],[0,2,2,3],[0,2,1,0]],[[1,2,2,0],[2,2,3,3],[0,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,2,4,2],[0,2,2,2],[0,2,1,0]],[[1,2,3,0],[2,2,3,2],[0,2,2,2],[0,2,1,0]],[[1,3,2,0],[2,2,3,2],[0,2,2,2],[0,2,1,0]],[[2,2,2,0],[2,2,3,2],[0,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,2,3,2],[0,2,2,2],[0,2,0,2]],[[1,2,2,0],[2,2,3,2],[0,2,2,3],[0,2,0,1]],[[1,2,2,0],[2,2,3,3],[0,2,2,2],[0,2,0,1]],[[1,2,2,0],[2,2,4,2],[0,2,2,2],[0,2,0,1]],[[1,2,3,0],[2,2,3,2],[0,2,2,2],[0,2,0,1]],[[1,3,2,0],[2,2,3,2],[0,2,2,2],[0,2,0,1]],[[2,2,2,0],[2,2,3,2],[0,2,2,2],[0,2,0,1]],[[1,2,2,0],[2,2,3,2],[0,2,2,3],[0,1,2,0]],[[1,2,2,0],[2,2,3,3],[0,2,2,2],[0,1,2,0]],[[1,2,2,0],[2,2,4,2],[0,2,2,2],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[0,2,2,2],[0,1,2,0]],[[1,3,2,0],[2,2,3,2],[0,2,2,2],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[0,2,2,2],[0,1,2,0]],[[1,2,2,0],[2,2,3,2],[0,2,2,2],[0,1,1,2]],[[1,2,2,0],[2,2,3,2],[0,2,2,3],[0,1,1,1]],[[1,2,2,0],[2,2,3,3],[0,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,2,4,2],[0,2,2,2],[0,1,1,1]],[[1,2,3,0],[2,2,3,2],[0,2,2,2],[0,1,1,1]],[[1,3,2,0],[2,2,3,2],[0,2,2,2],[0,1,1,1]],[[2,2,2,0],[2,2,3,2],[0,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,2,3,2],[0,2,2,2],[0,0,2,2]],[[1,2,2,0],[2,2,3,2],[0,2,2,3],[0,0,2,1]],[[1,2,2,0],[2,2,3,3],[0,2,2,2],[0,0,2,1]],[[1,2,2,0],[2,2,4,2],[0,2,2,2],[0,0,2,1]],[[1,2,3,0],[2,2,3,2],[0,2,2,2],[0,0,2,1]],[[1,3,2,0],[2,2,3,2],[0,2,2,2],[0,0,2,1]],[[2,2,2,0],[2,2,3,2],[0,2,2,2],[0,0,2,1]],[[1,2,2,0],[2,2,3,2],[0,2,1,2],[1,0,2,2]],[[1,2,2,0],[2,2,3,2],[0,2,1,3],[1,0,2,1]],[[1,2,2,0],[2,2,3,3],[0,2,1,2],[1,0,2,1]],[[1,2,2,0],[2,2,4,2],[0,2,1,2],[1,0,2,1]],[[1,2,3,0],[2,2,3,2],[0,2,1,2],[1,0,2,1]],[[1,3,2,0],[2,2,3,2],[0,2,1,2],[1,0,2,1]],[[2,2,2,0],[2,2,3,2],[0,2,1,2],[1,0,2,1]],[[1,2,2,0],[2,2,3,2],[0,2,1,2],[0,1,2,2]],[[1,2,2,0],[2,2,3,2],[0,2,1,2],[0,1,3,1]],[[1,2,2,0],[2,2,3,2],[0,2,1,3],[0,1,2,1]],[[1,2,2,0],[2,2,3,3],[0,2,1,2],[0,1,2,1]],[[1,2,2,0],[2,2,4,2],[0,2,1,2],[0,1,2,1]],[[1,2,3,0],[2,2,3,2],[0,2,1,2],[0,1,2,1]],[[1,3,2,0],[2,2,3,2],[0,2,1,2],[0,1,2,1]],[[2,2,2,0],[2,2,3,2],[0,2,1,2],[0,1,2,1]],[[1,2,2,0],[2,2,3,2],[0,2,0,2],[0,2,2,2]],[[1,2,2,0],[2,2,3,2],[0,2,0,2],[0,2,3,1]],[[1,2,2,0],[2,2,3,2],[0,2,0,3],[0,2,2,1]],[[1,2,2,0],[2,2,3,3],[0,2,0,2],[0,2,2,1]],[[1,2,2,0],[2,2,4,2],[0,2,0,2],[0,2,2,1]],[[1,2,3,0],[2,2,3,2],[0,2,0,2],[0,2,2,1]],[[1,3,2,0],[2,2,3,2],[0,2,0,2],[0,2,2,1]],[[2,2,2,0],[2,2,3,2],[0,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,1,0,0],[3,3,3,1],[1,2,2,1]],[[0,2,2,1],[2,1,0,0],[2,3,3,1],[2,2,2,1]],[[0,2,2,1],[2,1,0,0],[2,3,3,1],[1,3,2,1]],[[0,2,2,1],[2,1,0,0],[2,3,3,1],[1,2,3,1]],[[0,2,2,1],[2,1,0,0],[2,3,3,1],[1,2,2,2]],[[0,2,2,1],[2,1,0,0],[3,3,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,0],[2,3,3,2],[2,2,2,0]],[[0,2,2,1],[2,1,0,0],[2,3,3,2],[1,3,2,0]],[[0,2,2,1],[2,1,0,0],[2,3,3,2],[1,2,3,0]],[[0,2,2,1],[2,1,0,1],[3,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,1],[2,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,1,0,1],[2,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,1,0,1],[2,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,1,0,1],[2,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,1,0,1],[3,3,2,1],[1,2,2,1]],[[0,2,2,1],[2,1,0,1],[2,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,1,0,1],[2,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,1,0,1],[2,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,1,0,1],[2,3,2,1],[1,2,2,2]],[[0,2,2,1],[2,1,0,1],[3,3,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,1],[2,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,1,0,1],[2,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,1,0,1],[2,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,1,0,1],[3,3,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,0,1],[2,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,1,0,1],[2,3,3,1],[1,3,1,1]],[[0,2,2,1],[2,1,0,1],[3,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,0,1],[2,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,1,0,1],[2,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,1,0,1],[3,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,0,1],[2,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,1,0,1],[2,3,3,2],[1,3,1,0]],[[0,2,2,1],[2,1,0,2],[0,2,3,3],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[0,2,3,2],[1,3,2,1]],[[0,2,2,1],[2,1,0,2],[0,2,3,2],[1,2,3,1]],[[0,2,2,1],[2,1,0,2],[0,2,3,2],[1,2,2,2]],[[0,2,2,1],[2,1,0,2],[0,3,3,3],[1,1,2,1]],[[0,2,2,1],[2,1,0,2],[0,3,3,2],[1,1,3,1]],[[0,2,2,1],[2,1,0,2],[0,3,3,2],[1,1,2,2]],[[0,3,2,1],[2,1,0,2],[1,2,2,2],[1,2,2,1]],[[0,2,3,1],[2,1,0,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,2],[2,1,0,2],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,3],[1,2,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,2,2,2],[2,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[2,1,0,2],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[2,1,0,2],[1,2,2,2],[1,2,2,2]],[[0,2,2,1],[2,1,0,2],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,2,3,1],[2,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,1,0,2],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,1,0,2],[1,2,3,1],[1,2,2,2]],[[0,2,2,1],[2,1,0,2],[1,2,3,3],[0,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,2,3,2],[0,2,3,1]],[[0,2,2,1],[2,1,0,2],[1,2,3,2],[0,2,2,2]],[[0,3,2,1],[2,1,0,2],[1,2,3,2],[1,2,1,1]],[[0,2,3,1],[2,1,0,2],[1,2,3,2],[1,2,1,1]],[[0,2,2,2],[2,1,0,2],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,0,3],[1,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,0,2],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[2,1,0,2],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[2,1,0,2],[1,2,3,2],[1,2,1,2]],[[0,3,2,1],[2,1,0,2],[1,2,3,2],[1,2,2,0]],[[0,2,3,1],[2,1,0,2],[1,2,3,2],[1,2,2,0]],[[0,2,2,2],[2,1,0,2],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,3],[1,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,2],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,2],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[2,1,0,2],[1,2,3,2],[2,2,2,0]],[[0,2,2,1],[2,1,0,2],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,1,0,2],[1,2,3,2],[1,2,3,0]],[[0,3,2,1],[2,1,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,3,1],[2,1,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,2,2],[2,1,0,2],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,3],[1,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,4,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,1,3],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,1,0,2],[1,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,1,0,2],[1,4,2,1],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,1,0,2],[1,3,2,1],[1,2,2,2]],[[0,3,2,1],[2,1,0,2],[1,3,2,2],[1,1,2,1]],[[0,2,3,1],[2,1,0,2],[1,3,2,2],[1,1,2,1]],[[0,2,2,2],[2,1,0,2],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[2,1,0,3],[1,3,2,2],[1,1,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[2,1,0,2],[1,3,2,2],[1,1,2,2]],[[0,2,2,1],[2,1,0,2],[1,4,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,2],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,1,0,2],[1,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,1,0,2],[1,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,1,0,2],[1,4,3,1],[1,1,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,1],[1,1,2,2]],[[0,2,2,1],[2,1,0,2],[1,4,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,0,2],[1,3,4,1],[1,2,1,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,1],[1,3,1,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,3],[0,1,2,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,2],[0,1,3,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,2],[0,1,2,2]],[[0,3,2,1],[2,1,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,3,1],[2,1,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,2],[2,1,0,2],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,1,0,3],[1,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,1,0,2],[1,4,3,2],[1,1,1,1]],[[0,2,2,1],[2,1,0,2],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,2],[1,1,1,2]],[[0,3,2,1],[2,1,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,3,1],[2,1,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,2],[2,1,0,2],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,1,0,3],[1,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,1,0,2],[1,4,3,2],[1,1,2,0]],[[0,2,2,1],[2,1,0,2],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[2,1,0,2],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[2,1,0,2],[1,3,3,2],[1,1,3,0]],[[0,3,2,1],[2,1,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,3,1],[2,1,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,2],[2,1,0,2],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,0,3],[1,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,0,2],[1,4,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,0,2],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,1,0,2],[1,3,3,2],[1,2,0,2]],[[0,3,2,1],[2,1,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,3,1],[2,1,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,2],[2,1,0,2],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,0,3],[1,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,0,2],[1,4,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,0,2],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[2,1,0,2],[1,3,3,3],[1,2,1,0]],[[0,2,2,1],[2,1,0,2],[1,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,1,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,2,3,2],[0,1,3,3],[1,0,2,0]],[[1,2,2,0],[2,2,3,3],[0,1,3,2],[1,0,2,0]],[[0,3,2,1],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,3,1],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,2],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[3,1,0,2],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,3],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[3,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,1,2,3],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,1,2,2],[2,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,1,2,2],[1,3,2,1]],[[0,2,2,1],[2,1,0,2],[2,1,2,2],[1,2,3,1]],[[0,2,2,1],[2,1,0,2],[2,1,2,2],[1,2,2,2]],[[0,2,2,1],[3,1,0,2],[2,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[3,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,1,4,1],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,1,3,1],[1,3,2,1]],[[0,2,2,1],[2,1,0,2],[2,1,3,1],[1,2,3,1]],[[0,2,2,1],[2,1,0,2],[2,1,3,1],[1,2,2,2]],[[0,3,2,1],[2,1,0,2],[2,1,3,2],[1,2,1,1]],[[0,2,3,1],[2,1,0,2],[2,1,3,2],[1,2,1,1]],[[0,2,2,2],[2,1,0,2],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,0,3],[2,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,1,4,2],[1,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,1,3,3],[1,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,1,3,2],[1,2,1,2]],[[0,3,2,1],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[0,2,3,1],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,2],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[3,1,0,2],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,3],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,2],[3,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,1,4,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,1,3,3],[1,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,1,3,2],[2,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,1,3,2],[1,3,2,0]],[[0,2,2,1],[2,1,0,2],[2,1,3,2],[1,2,3,0]],[[0,3,2,1],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,3,1],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,2],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[3,1,0,2],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,3],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[3,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[2,1,0,2],[2,2,1,2],[1,2,2,2]],[[0,2,2,1],[3,1,0,2],[2,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[3,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,2,1],[2,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,2,1],[1,3,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,2,1],[1,2,3,1]],[[0,2,2,1],[2,1,0,2],[2,2,2,1],[1,2,2,2]],[[0,3,2,1],[2,1,0,2],[2,2,2,2],[0,2,2,1]],[[0,2,3,1],[2,1,0,2],[2,2,2,2],[0,2,2,1]],[[0,2,2,2],[2,1,0,2],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[2,1,0,3],[2,2,2,2],[0,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,2,2],[0,3,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[2,1,0,2],[2,2,2,2],[0,2,2,2]],[[0,2,2,1],[3,1,0,2],[2,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,2],[3,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,2,2,2],[2,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,2,2,2],[1,3,2,0]],[[0,2,2,1],[2,1,0,2],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[2,1,0,2],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,3,1],[0,3,2,1]],[[0,2,2,1],[2,1,0,2],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[2,1,0,2],[2,2,3,1],[0,2,2,2]],[[0,2,2,1],[3,1,0,2],[2,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,0,2],[3,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,2,3,1],[2,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,2,3,1],[1,3,1,1]],[[0,3,2,1],[2,1,0,2],[2,2,3,2],[0,2,1,1]],[[0,2,3,1],[2,1,0,2],[2,2,3,2],[0,2,1,1]],[[0,2,2,2],[2,1,0,2],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,1,0,3],[2,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,2,3,2],[0,2,1,2]],[[0,3,2,1],[2,1,0,2],[2,2,3,2],[0,2,2,0]],[[0,2,3,1],[2,1,0,2],[2,2,3,2],[0,2,2,0]],[[0,2,2,2],[2,1,0,2],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,1,0,3],[2,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,2,3,2],[0,3,2,0]],[[0,2,2,1],[2,1,0,2],[2,2,3,2],[0,2,3,0]],[[0,2,2,1],[3,1,0,2],[2,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,0,2],[3,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,0,2],[2,2,3,2],[2,2,0,1]],[[0,2,2,1],[2,1,0,2],[2,2,3,2],[1,3,0,1]],[[0,2,2,1],[3,1,0,2],[2,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,0,2],[3,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,0,2],[2,2,3,2],[2,2,1,0]],[[0,2,2,1],[2,1,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[2,2,4,2],[0,1,3,2],[1,0,2,0]],[[1,2,3,0],[2,2,3,2],[0,1,3,2],[1,0,2,0]],[[1,3,2,0],[2,2,3,2],[0,1,3,2],[1,0,2,0]],[[2,2,2,0],[2,2,3,2],[0,1,3,2],[1,0,2,0]],[[1,2,2,0],[2,2,3,2],[0,1,3,2],[1,0,1,2]],[[1,2,2,0],[2,2,3,2],[0,1,3,3],[1,0,1,1]],[[1,2,2,0],[2,2,3,3],[0,1,3,2],[1,0,1,1]],[[1,2,2,0],[2,2,4,2],[0,1,3,2],[1,0,1,1]],[[1,2,3,0],[2,2,3,2],[0,1,3,2],[1,0,1,1]],[[1,3,2,0],[2,2,3,2],[0,1,3,2],[1,0,1,1]],[[2,2,2,0],[2,2,3,2],[0,1,3,2],[1,0,1,1]],[[0,2,2,1],[3,1,0,2],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[3,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,0,2],[1,3,2,1]],[[0,3,2,1],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,3,1],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,2],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[3,1,0,2],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,0,3],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,0,2],[3,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,4,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,1,3],[0,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,1,2],[0,3,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,1,2],[0,2,3,1]],[[0,2,2,1],[2,1,0,2],[2,3,1,2],[0,2,2,2]],[[0,2,2,1],[3,1,0,2],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,1,0,2],[3,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,1,0,2],[2,4,1,2],[1,1,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,1,2],[2,1,2,1]],[[0,2,2,1],[2,1,0,2],[3,3,2,0],[1,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,0],[2,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,0],[1,3,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,0],[1,2,3,1]],[[0,2,2,1],[3,1,0,2],[2,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,1,0,2],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,4,2,1],[0,2,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,1],[0,3,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,1],[0,2,3,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,1],[0,2,2,2]],[[0,2,2,1],[3,1,0,2],[2,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,1,0,2],[3,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,1,0,2],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,1],[2,1,2,1]],[[0,2,2,1],[2,1,0,2],[3,3,2,1],[1,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,2,1],[2,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,2,1],[1,3,2,0]],[[0,3,2,1],[2,1,0,2],[2,3,2,2],[0,1,2,1]],[[0,2,3,1],[2,1,0,2],[2,3,2,2],[0,1,2,1]],[[0,2,2,2],[2,1,0,2],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,1,0,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,2],[0,1,2,2]],[[0,2,2,1],[3,1,0,2],[2,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,0,2],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,4,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,2,2],[0,3,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,2,2],[0,2,3,0]],[[0,3,2,1],[2,1,0,2],[2,3,2,2],[1,0,2,1]],[[0,2,3,1],[2,1,0,2],[2,3,2,2],[1,0,2,1]],[[0,2,2,2],[2,1,0,2],[2,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,1,0,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,2],[1,0,3,1]],[[0,2,2,1],[2,1,0,2],[2,3,2,2],[1,0,2,2]],[[0,2,2,1],[3,1,0,2],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,1,0,2],[3,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,1,0,2],[2,4,2,2],[1,1,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,2,2],[2,1,2,0]],[[0,2,2,1],[2,1,0,2],[3,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,0],[2,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,0],[1,3,1,1]],[[0,2,2,1],[3,1,0,2],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,1,0,2],[3,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,1,0,2],[2,4,3,1],[0,1,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,1],[0,1,2,2]],[[0,2,2,1],[3,1,0,2],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,0,2],[3,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,4,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,4,1],[0,2,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,1],[0,3,1,1]],[[0,2,2,1],[3,1,0,2],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,1,0,2],[3,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,1,0,2],[2,4,3,1],[1,0,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,4,1],[1,0,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,1],[2,0,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,1],[1,0,3,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,1],[1,0,2,2]],[[0,2,2,1],[3,1,0,2],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,0,2],[3,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,0,2],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,4,1],[1,1,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,1],[2,1,1,1]],[[0,2,2,1],[2,1,0,2],[3,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,1],[2,2,1,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,1],[1,3,1,0]],[[0,3,2,1],[2,1,0,2],[2,3,3,2],[0,0,2,1]],[[0,2,3,1],[2,1,0,2],[2,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,1,0,2],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,0,3],[2,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[0,0,2,2]],[[0,3,2,1],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[3,1,0,2],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,0,3],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,0,2],[3,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,0,2],[2,4,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[0,1,1,2]],[[0,3,2,1],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[3,1,0,2],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,0,3],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,0,2],[3,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,0,2],[2,4,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[0,1,3,0]],[[0,3,2,1],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[3,1,0,2],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,1,0,3],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,1,0,2],[3,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,1,0,2],[2,4,3,2],[0,2,0,1]],[[0,2,2,1],[2,1,0,2],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[0,3,0,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[0,2,0,2]],[[0,3,2,1],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[3,1,0,2],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,1,0,3],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,1,0,2],[3,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,1,0,2],[2,4,3,2],[0,2,1,0]],[[0,2,2,1],[2,1,0,2],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,3],[0,2,1,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,2,3,2],[0,1,3,3],[0,1,2,0]],[[1,2,2,0],[2,2,3,3],[0,1,3,2],[0,1,2,0]],[[1,2,2,0],[2,2,4,2],[0,1,3,2],[0,1,2,0]],[[1,2,3,0],[2,2,3,2],[0,1,3,2],[0,1,2,0]],[[1,3,2,0],[2,2,3,2],[0,1,3,2],[0,1,2,0]],[[2,2,2,0],[2,2,3,2],[0,1,3,2],[0,1,2,0]],[[1,2,2,0],[2,2,3,2],[0,1,3,2],[0,1,1,2]],[[1,2,2,0],[2,2,3,2],[0,1,3,3],[0,1,1,1]],[[1,2,2,0],[2,2,3,3],[0,1,3,2],[0,1,1,1]],[[1,2,2,0],[2,2,4,2],[0,1,3,2],[0,1,1,1]],[[0,3,2,1],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,3,1],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,2],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[3,1,0,2],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,0,3],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,0,2],[3,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,0,2],[2,4,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[2,0,1,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[1,0,1,2]],[[0,3,2,1],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,3,1],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,2],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[3,1,0,2],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,0,3],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,0,2],[3,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,0,2],[2,4,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,3],[1,0,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[2,0,2,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[1,0,3,0]],[[0,3,2,1],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,3,1],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,2],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[3,1,0,2],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,0,3],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,0,2],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,0,2],[2,4,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,0,2],[2,3,4,2],[1,1,0,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,3],[1,1,0,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[2,1,0,1]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[1,1,0,2]],[[0,3,2,1],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,3,1],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,2],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[3,1,0,2],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,1,0,3],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,1,0,2],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,1,0,2],[2,4,3,2],[1,1,1,0]],[[0,2,2,1],[2,1,0,2],[2,3,4,2],[1,1,1,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,3],[1,1,1,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,3,0],[2,2,3,2],[0,1,3,2],[0,1,1,1]],[[1,3,2,0],[2,2,3,2],[0,1,3,2],[0,1,1,1]],[[2,2,2,0],[2,2,3,2],[0,1,3,2],[0,1,1,1]],[[1,2,2,0],[2,2,3,2],[0,1,3,2],[0,0,2,2]],[[1,2,2,0],[2,2,3,2],[0,1,3,3],[0,0,2,1]],[[1,2,2,0],[2,2,3,3],[0,1,3,2],[0,0,2,1]],[[1,2,2,0],[2,2,4,2],[0,1,3,2],[0,0,2,1]],[[1,2,3,0],[2,2,3,2],[0,1,3,2],[0,0,2,1]],[[1,3,2,0],[2,2,3,2],[0,1,3,2],[0,0,2,1]],[[2,2,2,0],[2,2,3,2],[0,1,3,2],[0,0,2,1]],[[0,2,2,1],[3,1,0,2],[2,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,1,0,2],[3,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,1,0,2],[2,4,3,2],[1,2,0,0]],[[0,2,2,1],[2,1,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[2,2,3,2],[0,1,3,1],[0,2,3,0]],[[1,2,2,0],[2,2,3,2],[0,1,4,1],[0,2,2,0]],[[1,2,2,0],[2,2,3,3],[0,1,3,1],[0,2,2,0]],[[1,2,2,0],[2,2,4,2],[0,1,3,1],[0,2,2,0]],[[1,2,3,0],[2,2,3,2],[0,1,3,1],[0,2,2,0]],[[1,3,2,0],[2,2,3,2],[0,1,3,1],[0,2,2,0]],[[2,2,2,0],[2,2,3,2],[0,1,3,1],[0,2,2,0]],[[1,2,2,0],[2,2,3,2],[0,1,4,1],[0,2,1,1]],[[1,2,2,0],[2,2,3,3],[0,1,3,1],[0,2,1,1]],[[1,2,2,0],[2,2,4,2],[0,1,3,1],[0,2,1,1]],[[1,2,3,0],[2,2,3,2],[0,1,3,1],[0,2,1,1]],[[1,3,2,0],[2,2,3,2],[0,1,3,1],[0,2,1,1]],[[2,2,2,0],[2,2,3,2],[0,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,1,0],[3,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,0],[2,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,1,1,0],[2,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,1,1,0],[2,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,1,1,0],[2,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,1,1,0],[3,3,2,1],[1,2,2,1]],[[0,2,2,1],[2,1,1,0],[2,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,1,1,0],[2,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,1,1,0],[2,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,1,1,0],[2,3,2,1],[1,2,2,2]],[[0,2,2,1],[2,1,1,0],[3,3,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,1,0],[2,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,1,1,0],[2,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,1,1,0],[2,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,1,1,0],[3,3,3,0],[1,2,2,1]],[[0,2,2,1],[2,1,1,0],[2,3,3,0],[2,2,2,1]],[[0,2,2,1],[2,1,1,0],[2,3,3,0],[1,3,2,1]],[[0,2,2,1],[2,1,1,0],[2,3,3,0],[1,2,3,1]],[[0,2,2,1],[2,1,1,0],[3,3,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,1,0],[2,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,1,1,0],[2,3,3,1],[1,3,1,1]],[[0,2,2,1],[2,1,1,0],[3,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,1,0],[2,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,1,1,0],[2,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,1,1,0],[3,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,1,0],[2,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,1,1,0],[2,3,3,2],[1,3,1,0]],[[0,2,2,1],[2,1,1,1],[3,3,2,0],[1,2,2,1]],[[0,2,2,1],[2,1,1,1],[2,3,2,0],[2,2,2,1]],[[0,2,2,1],[2,1,1,1],[2,3,2,0],[1,3,2,1]],[[0,2,2,1],[2,1,1,1],[2,3,2,0],[1,2,3,1]],[[0,2,2,1],[2,1,1,1],[3,3,2,1],[1,2,2,0]],[[0,2,2,1],[2,1,1,1],[2,3,2,1],[2,2,2,0]],[[0,2,2,1],[2,1,1,1],[2,3,2,1],[1,3,2,0]],[[0,2,2,1],[2,1,1,1],[3,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,1,1,1],[2,3,3,0],[2,2,1,1]],[[0,2,2,1],[2,1,1,1],[2,3,3,0],[1,3,1,1]],[[0,2,2,1],[2,1,1,1],[3,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,1,1,1],[2,3,3,1],[2,2,1,0]],[[0,2,2,1],[2,1,1,1],[2,3,3,1],[1,3,1,0]],[[1,2,2,0],[2,2,3,2],[0,1,3,0],[0,2,2,2]],[[1,2,2,0],[2,2,3,2],[0,1,3,0],[0,2,3,1]],[[1,2,2,0],[2,2,3,2],[0,1,4,0],[0,2,2,1]],[[1,2,2,0],[2,2,3,3],[0,1,3,0],[0,2,2,1]],[[1,2,2,0],[2,2,4,2],[0,1,3,0],[0,2,2,1]],[[1,2,3,0],[2,2,3,2],[0,1,3,0],[0,2,2,1]],[[1,3,2,0],[2,2,3,2],[0,1,3,0],[0,2,2,1]],[[2,2,2,0],[2,2,3,2],[0,1,3,0],[0,2,2,1]],[[0,2,3,1],[2,1,1,2],[0,1,3,2],[1,2,2,1]],[[0,2,2,2],[2,1,1,2],[0,1,3,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,3],[0,1,3,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,1,3,3],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,1,3,2],[1,2,3,1]],[[0,2,2,1],[2,1,1,2],[0,1,3,2],[1,2,2,2]],[[0,3,2,1],[2,1,1,2],[0,2,2,2],[1,2,2,1]],[[0,2,3,1],[2,1,1,2],[0,2,2,2],[1,2,2,1]],[[0,2,2,2],[2,1,1,2],[0,2,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,3],[0,2,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,2,2,3],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,2,2,2],[2,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,2,2,2],[1,3,2,1]],[[0,2,2,1],[2,1,1,2],[0,2,2,2],[1,2,3,1]],[[0,2,2,1],[2,1,1,2],[0,2,2,2],[1,2,2,2]],[[0,2,2,1],[2,1,1,2],[0,2,4,1],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,2,3,1],[2,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,1,1,2],[0,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,1,1,2],[0,2,3,1],[1,2,2,2]],[[0,3,2,1],[2,1,1,2],[0,2,3,2],[1,2,1,1]],[[0,2,3,1],[2,1,1,2],[0,2,3,2],[1,2,1,1]],[[0,2,2,2],[2,1,1,2],[0,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,1,3],[0,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,1,2],[0,2,4,2],[1,2,1,1]],[[0,2,2,1],[2,1,1,2],[0,2,3,3],[1,2,1,1]],[[0,2,2,1],[2,1,1,2],[0,2,3,2],[1,2,1,2]],[[0,3,2,1],[2,1,1,2],[0,2,3,2],[1,2,2,0]],[[0,2,3,1],[2,1,1,2],[0,2,3,2],[1,2,2,0]],[[0,2,2,2],[2,1,1,2],[0,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,1,3],[0,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,1,2],[0,2,4,2],[1,2,2,0]],[[0,2,2,1],[2,1,1,2],[0,2,3,3],[1,2,2,0]],[[0,2,2,1],[2,1,1,2],[0,2,3,2],[2,2,2,0]],[[0,2,2,1],[2,1,1,2],[0,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,1,1,2],[0,2,3,2],[1,2,3,0]],[[0,3,2,1],[2,1,1,2],[0,3,1,2],[1,2,2,1]],[[0,2,3,1],[2,1,1,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,2],[2,1,1,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,3],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,4,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,1,3],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,1,1,2],[0,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,1,1,2],[0,4,2,1],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,1,1,2],[0,3,2,1],[1,2,2,2]],[[0,3,2,1],[2,1,1,2],[0,3,2,2],[1,1,2,1]],[[0,2,3,1],[2,1,1,2],[0,3,2,2],[1,1,2,1]],[[0,2,2,2],[2,1,1,2],[0,3,2,2],[1,1,2,1]],[[0,2,2,1],[2,1,1,3],[0,3,2,2],[1,1,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,2,3],[1,1,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,2,2],[1,1,3,1]],[[0,2,2,1],[2,1,1,2],[0,3,2,2],[1,1,2,2]],[[0,2,2,1],[2,1,1,2],[0,4,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,1,2],[0,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,1,1,2],[0,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,1,1,2],[0,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,1,1,2],[0,4,3,1],[1,1,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,4,1],[1,1,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,1],[1,1,3,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,1],[1,1,2,2]],[[0,2,2,1],[2,1,1,2],[0,4,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,1,2],[0,3,4,1],[1,2,1,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,1],[1,3,1,1]],[[0,3,2,1],[2,1,1,2],[0,3,3,2],[1,0,2,1]],[[0,2,3,1],[2,1,1,2],[0,3,3,2],[1,0,2,1]],[[0,2,2,2],[2,1,1,2],[0,3,3,2],[1,0,2,1]],[[0,2,2,1],[2,1,1,3],[0,3,3,2],[1,0,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,4,2],[1,0,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,3],[1,0,2,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,2],[1,0,2,2]],[[0,3,2,1],[2,1,1,2],[0,3,3,2],[1,1,1,1]],[[0,2,3,1],[2,1,1,2],[0,3,3,2],[1,1,1,1]],[[0,2,2,2],[2,1,1,2],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,1,1,3],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,1,1,2],[0,4,3,2],[1,1,1,1]],[[0,2,2,1],[2,1,1,2],[0,3,4,2],[1,1,1,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,3],[1,1,1,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,2],[1,1,1,2]],[[0,3,2,1],[2,1,1,2],[0,3,3,2],[1,1,2,0]],[[0,2,3,1],[2,1,1,2],[0,3,3,2],[1,1,2,0]],[[0,2,2,2],[2,1,1,2],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,1,1,3],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,1,1,2],[0,4,3,2],[1,1,2,0]],[[0,2,2,1],[2,1,1,2],[0,3,4,2],[1,1,2,0]],[[0,2,2,1],[2,1,1,2],[0,3,3,3],[1,1,2,0]],[[0,2,2,1],[2,1,1,2],[0,3,3,2],[1,1,3,0]],[[0,3,2,1],[2,1,1,2],[0,3,3,2],[1,2,0,1]],[[0,2,3,1],[2,1,1,2],[0,3,3,2],[1,2,0,1]],[[0,2,2,2],[2,1,1,2],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,1,3],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,1,2],[0,4,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,1,2],[0,3,4,2],[1,2,0,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,3],[1,2,0,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,1,1,2],[0,3,3,2],[1,2,0,2]],[[0,3,2,1],[2,1,1,2],[0,3,3,2],[1,2,1,0]],[[0,2,3,1],[2,1,1,2],[0,3,3,2],[1,2,1,0]],[[0,2,2,2],[2,1,1,2],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,1,3],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,1,2],[0,4,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,1,2],[0,3,4,2],[1,2,1,0]],[[0,2,2,1],[2,1,1,2],[0,3,3,3],[1,2,1,0]],[[0,2,2,1],[2,1,1,2],[0,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,1,1,2],[0,3,3,2],[1,3,1,0]],[[0,2,3,1],[2,1,1,2],[1,1,3,2],[0,2,2,1]],[[0,2,2,2],[2,1,1,2],[1,1,3,2],[0,2,2,1]],[[0,2,2,1],[2,1,1,3],[1,1,3,2],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,1,3,3],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,1,3,2],[0,2,3,1]],[[0,2,2,1],[2,1,1,2],[1,1,3,2],[0,2,2,2]],[[0,3,2,1],[2,1,1,2],[1,2,2,2],[0,2,2,1]],[[0,2,3,1],[2,1,1,2],[1,2,2,2],[0,2,2,1]],[[0,2,2,2],[2,1,1,2],[1,2,2,2],[0,2,2,1]],[[0,2,2,1],[2,1,1,3],[1,2,2,2],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,2,2,3],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,2,2,2],[0,3,2,1]],[[0,2,2,1],[2,1,1,2],[1,2,2,2],[0,2,3,1]],[[0,2,2,1],[2,1,1,2],[1,2,2,2],[0,2,2,2]],[[0,2,2,1],[2,1,1,2],[1,2,4,1],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,2,3,1],[0,3,2,1]],[[0,2,2,1],[2,1,1,2],[1,2,3,1],[0,2,3,1]],[[0,2,2,1],[2,1,1,2],[1,2,3,1],[0,2,2,2]],[[0,3,2,1],[2,1,1,2],[1,2,3,2],[0,2,1,1]],[[0,2,3,1],[2,1,1,2],[1,2,3,2],[0,2,1,1]],[[0,2,2,2],[2,1,1,2],[1,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,1,1,3],[1,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,1,1,2],[1,2,4,2],[0,2,1,1]],[[0,2,2,1],[2,1,1,2],[1,2,3,3],[0,2,1,1]],[[0,2,2,1],[2,1,1,2],[1,2,3,2],[0,2,1,2]],[[0,3,2,1],[2,1,1,2],[1,2,3,2],[0,2,2,0]],[[0,2,3,1],[2,1,1,2],[1,2,3,2],[0,2,2,0]],[[0,2,2,2],[2,1,1,2],[1,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,1,1,3],[1,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,1,1,2],[1,2,4,2],[0,2,2,0]],[[0,2,2,1],[2,1,1,2],[1,2,3,3],[0,2,2,0]],[[0,2,2,1],[2,1,1,2],[1,2,3,2],[0,3,2,0]],[[0,2,2,1],[2,1,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[2,2,3,2],[0,1,2,3],[0,2,2,0]],[[1,2,2,0],[2,2,3,3],[0,1,2,2],[0,2,2,0]],[[1,2,2,0],[2,2,4,2],[0,1,2,2],[0,2,2,0]],[[1,2,3,0],[2,2,3,2],[0,1,2,2],[0,2,2,0]],[[1,3,2,0],[2,2,3,2],[0,1,2,2],[0,2,2,0]],[[2,2,2,0],[2,2,3,2],[0,1,2,2],[0,2,2,0]],[[1,2,2,0],[2,2,3,2],[0,1,2,2],[0,2,1,2]],[[0,3,2,1],[2,1,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,3,1],[2,1,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,2],[2,1,1,2],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,3],[1,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,4,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,0,3],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,0,2],[1,3,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,0,2],[1,2,3,1]],[[0,2,2,1],[2,1,1,2],[1,3,0,2],[1,2,2,2]],[[0,3,2,1],[2,1,1,2],[1,3,1,2],[0,2,2,1]],[[0,2,3,1],[2,1,1,2],[1,3,1,2],[0,2,2,1]],[[0,2,2,2],[2,1,1,2],[1,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,1,3],[1,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,4,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,1,3],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,1,2],[0,3,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,1,2],[0,2,3,1]],[[0,2,2,1],[2,1,1,2],[1,3,1,2],[0,2,2,2]],[[0,2,2,1],[2,1,1,2],[1,4,2,1],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,2,1],[0,3,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,2,1],[0,2,3,1]],[[0,2,2,1],[2,1,1,2],[1,3,2,1],[0,2,2,2]],[[0,3,2,1],[2,1,1,2],[1,3,2,2],[0,1,2,1]],[[0,2,3,1],[2,1,1,2],[1,3,2,2],[0,1,2,1]],[[0,2,2,2],[2,1,1,2],[1,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,1,1,3],[1,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,1,1,2],[1,3,2,2],[0,1,2,2]],[[0,2,2,1],[2,1,1,2],[1,4,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,1,2],[1,3,2,2],[0,3,2,0]],[[0,2,2,1],[2,1,1,2],[1,3,2,2],[0,2,3,0]],[[0,3,2,1],[2,1,1,2],[1,3,2,2],[1,0,2,1]],[[0,2,3,1],[2,1,1,2],[1,3,2,2],[1,0,2,1]],[[0,2,2,2],[2,1,1,2],[1,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,1,1,3],[1,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,2,2],[1,0,3,1]],[[0,2,2,1],[2,1,1,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,0],[2,2,3,2],[0,1,2,3],[0,2,1,1]],[[1,2,2,0],[2,2,3,3],[0,1,2,2],[0,2,1,1]],[[1,2,2,0],[2,2,4,2],[0,1,2,2],[0,2,1,1]],[[1,2,3,0],[2,2,3,2],[0,1,2,2],[0,2,1,1]],[[1,3,2,0],[2,2,3,2],[0,1,2,2],[0,2,1,1]],[[2,2,2,0],[2,2,3,2],[0,1,2,2],[0,2,1,1]],[[0,2,2,1],[2,1,1,2],[1,4,3,1],[0,1,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,1],[0,1,2,2]],[[0,2,2,1],[2,1,1,2],[1,4,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,1,2],[1,3,4,1],[0,2,1,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,1],[0,3,1,1]],[[0,2,2,1],[2,1,1,2],[1,4,3,1],[1,0,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,4,1],[1,0,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,1],[1,0,3,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,1],[1,0,2,2]],[[0,3,2,1],[2,1,1,2],[1,3,3,2],[0,0,2,1]],[[0,2,3,1],[2,1,1,2],[1,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,1,1,2],[1,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,1,3],[1,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,2],[0,0,2,2]],[[0,3,2,1],[2,1,1,2],[1,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,1,1,2],[1,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,1,1,2],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,1,3],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,1,2],[1,4,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,1,2],[1,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,2],[0,1,1,2]],[[0,3,2,1],[2,1,1,2],[1,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,1,1,2],[1,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,1,1,2],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,1,3],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,1,2],[1,4,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,1,2],[1,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,1,1,2],[1,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,1,1,2],[1,3,3,2],[0,1,3,0]],[[0,3,2,1],[2,1,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,1,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,1,1,2],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,1,1,3],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,1,1,2],[1,4,3,2],[0,2,0,1]],[[0,2,2,1],[2,1,1,2],[1,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,2],[0,3,0,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,2],[0,2,0,2]],[[0,3,2,1],[2,1,1,2],[1,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,1,1,2],[1,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,1,1,2],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,1,1,3],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,1,1,2],[1,4,3,2],[0,2,1,0]],[[0,2,2,1],[2,1,1,2],[1,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,1,1,2],[1,3,3,3],[0,2,1,0]],[[0,2,2,1],[2,1,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,2,3,2],[0,1,1,2],[0,2,2,2]],[[1,2,2,0],[2,2,3,2],[0,1,1,2],[0,2,3,1]],[[1,2,2,0],[2,2,3,2],[0,1,1,3],[0,2,2,1]],[[1,2,2,0],[2,2,3,3],[0,1,1,2],[0,2,2,1]],[[1,2,2,0],[2,2,4,2],[0,1,1,2],[0,2,2,1]],[[1,2,3,0],[2,2,3,2],[0,1,1,2],[0,2,2,1]],[[1,3,2,0],[2,2,3,2],[0,1,1,2],[0,2,2,1]],[[2,2,2,0],[2,2,3,2],[0,1,1,2],[0,2,2,1]],[[0,3,2,1],[2,1,1,2],[1,3,3,2],[1,0,1,1]],[[0,2,3,1],[2,1,1,2],[1,3,3,2],[1,0,1,1]],[[0,2,2,2],[2,1,1,2],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,1,3],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,1,2],[1,4,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,1,2],[1,3,4,2],[1,0,1,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,3],[1,0,1,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,2],[1,0,1,2]],[[0,3,2,1],[2,1,1,2],[1,3,3,2],[1,0,2,0]],[[0,2,3,1],[2,1,1,2],[1,3,3,2],[1,0,2,0]],[[0,2,2,2],[2,1,1,2],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,1,3],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,1,2],[1,4,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,1,2],[1,3,4,2],[1,0,2,0]],[[0,2,2,1],[2,1,1,2],[1,3,3,3],[1,0,2,0]],[[0,2,2,1],[2,1,1,2],[1,3,3,2],[1,0,3,0]],[[0,3,2,1],[2,1,1,2],[1,3,3,2],[1,1,0,1]],[[0,2,3,1],[2,1,1,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,2],[2,1,1,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,1,3],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,1,2],[1,4,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,1,2],[1,3,4,2],[1,1,0,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,3],[1,1,0,1]],[[0,2,2,1],[2,1,1,2],[1,3,3,2],[1,1,0,2]],[[0,3,2,1],[2,1,1,2],[1,3,3,2],[1,1,1,0]],[[0,2,3,1],[2,1,1,2],[1,3,3,2],[1,1,1,0]],[[0,2,2,2],[2,1,1,2],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,1,1,3],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,1,1,2],[1,4,3,2],[1,1,1,0]],[[0,2,2,1],[2,1,1,2],[1,3,4,2],[1,1,1,0]],[[0,2,2,1],[2,1,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[2,2,3,2],[0,0,3,3],[0,2,2,0]],[[1,2,2,0],[2,2,3,3],[0,0,3,2],[0,2,2,0]],[[1,2,2,0],[2,2,4,2],[0,0,3,2],[0,2,2,0]],[[1,2,3,0],[2,2,3,2],[0,0,3,2],[0,2,2,0]],[[1,3,2,0],[2,2,3,2],[0,0,3,2],[0,2,2,0]],[[2,2,2,0],[2,2,3,2],[0,0,3,2],[0,2,2,0]],[[1,2,2,0],[2,2,3,2],[0,0,3,2],[0,2,1,2]],[[1,2,2,0],[2,2,3,2],[0,0,3,3],[0,2,1,1]],[[1,2,2,0],[2,2,3,3],[0,0,3,2],[0,2,1,1]],[[1,2,2,0],[2,2,4,2],[0,0,3,2],[0,2,1,1]],[[1,2,3,0],[2,2,3,2],[0,0,3,2],[0,2,1,1]],[[1,3,2,0],[2,2,3,2],[0,0,3,2],[0,2,1,1]],[[2,2,2,0],[2,2,3,2],[0,0,3,2],[0,2,1,1]],[[0,3,2,1],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,3,1],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,2],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[3,1,1,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,3],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[3,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,0,2,3],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,0,2,2],[2,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,0,2,2],[1,3,2,1]],[[0,2,2,1],[2,1,1,2],[2,0,2,2],[1,2,3,1]],[[0,2,2,1],[2,1,1,2],[2,0,2,2],[1,2,2,2]],[[0,2,2,1],[3,1,1,2],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[3,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,0,4,1],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,0,3,1],[2,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,0,3,1],[1,3,2,1]],[[0,2,2,1],[2,1,1,2],[2,0,3,1],[1,2,3,1]],[[0,2,2,1],[2,1,1,2],[2,0,3,1],[1,2,2,2]],[[0,3,2,1],[2,1,1,2],[2,0,3,2],[1,2,1,1]],[[0,2,3,1],[2,1,1,2],[2,0,3,2],[1,2,1,1]],[[0,2,2,2],[2,1,1,2],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,1,3],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,1,2],[2,0,4,2],[1,2,1,1]],[[0,2,2,1],[2,1,1,2],[2,0,3,3],[1,2,1,1]],[[0,2,2,1],[2,1,1,2],[2,0,3,2],[1,2,1,2]],[[0,3,2,1],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[3,1,1,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,1,3],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,1,2],[3,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,1,2],[2,0,4,2],[1,2,2,0]],[[0,2,2,1],[2,1,1,2],[2,0,3,3],[1,2,2,0]],[[0,2,2,1],[2,1,1,2],[2,0,3,2],[2,2,2,0]],[[0,2,2,1],[2,1,1,2],[2,0,3,2],[1,3,2,0]],[[0,2,2,1],[2,1,1,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[2,2,3,2],[0,0,3,2],[0,1,2,2]],[[1,2,2,0],[2,2,3,2],[0,0,3,3],[0,1,2,1]],[[1,2,2,0],[2,2,3,3],[0,0,3,2],[0,1,2,1]],[[1,2,2,0],[2,2,4,2],[0,0,3,2],[0,1,2,1]],[[1,2,3,0],[2,2,3,2],[0,0,3,2],[0,1,2,1]],[[1,3,2,0],[2,2,3,2],[0,0,3,2],[0,1,2,1]],[[2,2,2,0],[2,2,3,2],[0,0,3,2],[0,1,2,1]],[[0,3,2,1],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[0,2,3,1],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,2],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[3,1,1,2],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,3],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[3,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,2,0,3],[1,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,2,0,2],[2,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,2,0,2],[1,3,2,1]],[[0,2,2,1],[2,1,1,2],[2,2,0,2],[1,2,3,1]],[[0,2,2,1],[2,1,1,2],[2,2,0,2],[1,2,2,2]],[[1,2,2,0],[2,2,3,2],[0,0,2,2],[0,2,2,2]],[[1,2,2,0],[2,2,3,2],[0,0,2,2],[0,2,3,1]],[[1,2,2,0],[2,2,3,2],[0,0,2,3],[0,2,2,1]],[[1,2,2,0],[2,2,3,3],[0,0,2,2],[0,2,2,1]],[[1,2,2,0],[2,2,4,2],[0,0,2,2],[0,2,2,1]],[[1,2,3,0],[2,2,3,2],[0,0,2,2],[0,2,2,1]],[[1,3,2,0],[2,2,3,2],[0,0,2,2],[0,2,2,1]],[[2,2,2,0],[2,2,3,2],[0,0,2,2],[0,2,2,1]],[[0,3,2,1],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,3,1],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,2],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[3,1,1,2],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,1,1,3],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[3,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,4,0,2],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,3,0,3],[0,2,2,1]],[[0,2,2,1],[2,1,1,2],[2,3,0,2],[0,3,2,1]],[[0,2,2,1],[2,1,1,2],[2,3,0,2],[0,2,3,1]],[[0,2,2,1],[2,1,1,2],[2,3,0,2],[0,2,2,2]],[[0,2,2,1],[3,1,1,2],[2,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,1,1,2],[3,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,1,1,2],[2,4,0,2],[1,1,2,1]],[[0,2,2,1],[2,1,1,2],[2,3,0,2],[2,1,2,1]],[[0,2,3,1],[2,1,2,2],[0,0,3,2],[1,2,2,1]],[[0,2,2,2],[2,1,2,2],[0,0,3,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,3],[0,0,3,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[0,0,3,3],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[0,0,3,2],[1,2,3,1]],[[0,2,2,1],[2,1,2,2],[0,0,3,2],[1,2,2,2]],[[0,3,2,1],[2,1,2,2],[0,2,1,2],[1,2,2,1]],[[0,2,3,1],[2,1,2,2],[0,2,1,2],[1,2,2,1]],[[0,2,2,2],[2,1,2,2],[0,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,3],[0,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[0,2,1,3],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[0,2,1,2],[2,2,2,1]],[[0,2,2,1],[2,1,2,2],[0,2,1,2],[1,3,2,1]],[[0,2,2,1],[2,1,2,2],[0,2,1,2],[1,2,3,1]],[[0,2,2,1],[2,1,2,2],[0,2,1,2],[1,2,2,2]],[[0,3,2,1],[2,1,2,2],[0,2,2,2],[1,2,1,1]],[[0,2,3,1],[2,1,2,2],[0,2,2,2],[1,2,1,1]],[[0,2,2,2],[2,1,2,2],[0,2,2,2],[1,2,1,1]],[[0,2,2,1],[2,1,2,3],[0,2,2,2],[1,2,1,1]],[[0,2,2,1],[2,1,2,2],[0,2,2,3],[1,2,1,1]],[[0,2,2,1],[2,1,2,2],[0,2,2,2],[1,2,1,2]],[[0,3,2,1],[2,1,2,2],[0,2,2,2],[1,2,2,0]],[[0,2,3,1],[2,1,2,2],[0,2,2,2],[1,2,2,0]],[[0,2,2,2],[2,1,2,2],[0,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,2,3],[0,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,2,2],[0,2,2,3],[1,2,2,0]],[[0,3,2,1],[2,1,2,2],[0,2,3,0],[1,2,2,1]],[[0,2,3,1],[2,1,2,2],[0,2,3,0],[1,2,2,1]],[[0,2,2,2],[2,1,2,2],[0,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,1,2,3],[0,2,3,0],[1,2,2,1]],[[0,3,2,1],[2,1,2,2],[0,2,3,1],[1,2,1,1]],[[0,2,3,1],[2,1,2,2],[0,2,3,1],[1,2,1,1]],[[0,2,2,2],[2,1,2,2],[0,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,2,3],[0,2,3,1],[1,2,1,1]],[[0,3,2,1],[2,1,2,2],[0,2,3,1],[1,2,2,0]],[[0,2,3,1],[2,1,2,2],[0,2,3,1],[1,2,2,0]],[[0,2,2,2],[2,1,2,2],[0,2,3,1],[1,2,2,0]],[[0,2,2,1],[2,1,2,3],[0,2,3,1],[1,2,2,0]],[[0,3,2,1],[2,1,2,2],[0,3,0,2],[1,2,2,1]],[[0,2,3,1],[2,1,2,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,2],[2,1,2,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,3],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[0,4,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[0,3,0,3],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[0,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,1,2,2],[0,3,0,2],[1,3,2,1]],[[0,2,2,1],[2,1,2,2],[0,3,0,2],[1,2,3,1]],[[0,2,2,1],[2,1,2,2],[0,3,0,2],[1,2,2,2]],[[0,3,2,1],[2,1,2,2],[0,3,1,2],[1,1,2,1]],[[0,2,3,1],[2,1,2,2],[0,3,1,2],[1,1,2,1]],[[0,2,2,2],[2,1,2,2],[0,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,1,2,3],[0,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,1,2,2],[0,3,1,3],[1,1,2,1]],[[0,2,2,1],[2,1,2,2],[0,3,1,2],[1,1,3,1]],[[0,2,2,1],[2,1,2,2],[0,3,1,2],[1,1,2,2]],[[0,3,2,1],[2,1,2,2],[0,3,2,2],[1,0,2,1]],[[0,2,3,1],[2,1,2,2],[0,3,2,2],[1,0,2,1]],[[0,2,2,2],[2,1,2,2],[0,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,1,2,3],[0,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,1,2,2],[0,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,1,2,2],[0,3,2,2],[1,0,2,2]],[[0,3,2,1],[2,1,2,2],[0,3,2,2],[1,1,1,1]],[[0,2,3,1],[2,1,2,2],[0,3,2,2],[1,1,1,1]],[[0,2,2,2],[2,1,2,2],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,1,2,3],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,1,2,2],[0,3,2,3],[1,1,1,1]],[[0,2,2,1],[2,1,2,2],[0,3,2,2],[1,1,1,2]],[[0,3,2,1],[2,1,2,2],[0,3,2,2],[1,1,2,0]],[[0,2,3,1],[2,1,2,2],[0,3,2,2],[1,1,2,0]],[[0,2,2,2],[2,1,2,2],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,1,2,3],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,1,2,2],[0,3,2,3],[1,1,2,0]],[[0,3,2,1],[2,1,2,2],[0,3,2,2],[1,2,0,1]],[[0,2,3,1],[2,1,2,2],[0,3,2,2],[1,2,0,1]],[[0,2,2,2],[2,1,2,2],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,1,2,3],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,1,2,2],[0,3,2,3],[1,2,0,1]],[[0,2,2,1],[2,1,2,2],[0,3,2,2],[1,2,0,2]],[[0,3,2,1],[2,1,2,2],[0,3,2,2],[1,2,1,0]],[[0,2,3,1],[2,1,2,2],[0,3,2,2],[1,2,1,0]],[[0,2,2,2],[2,1,2,2],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,1,2,3],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,1,2,2],[0,3,2,3],[1,2,1,0]],[[0,3,2,1],[2,1,2,2],[0,3,3,0],[1,1,2,1]],[[0,2,3,1],[2,1,2,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,2],[2,1,2,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,1,2,3],[0,3,3,0],[1,1,2,1]],[[0,3,2,1],[2,1,2,2],[0,3,3,0],[1,2,1,1]],[[0,2,3,1],[2,1,2,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,2],[2,1,2,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,1,2,3],[0,3,3,0],[1,2,1,1]],[[0,3,2,1],[2,1,2,2],[0,3,3,1],[1,0,2,1]],[[0,2,3,1],[2,1,2,2],[0,3,3,1],[1,0,2,1]],[[0,2,2,2],[2,1,2,2],[0,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,1,2,3],[0,3,3,1],[1,0,2,1]],[[0,3,2,1],[2,1,2,2],[0,3,3,1],[1,1,1,1]],[[0,2,3,1],[2,1,2,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,2],[2,1,2,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,2,3],[0,3,3,1],[1,1,1,1]],[[0,3,2,1],[2,1,2,2],[0,3,3,1],[1,1,2,0]],[[0,2,3,1],[2,1,2,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,2],[2,1,2,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,1,2,3],[0,3,3,1],[1,1,2,0]],[[0,3,2,1],[2,1,2,2],[0,3,3,1],[1,2,0,1]],[[0,2,3,1],[2,1,2,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,2],[2,1,2,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,1,2,3],[0,3,3,1],[1,2,0,1]],[[0,3,2,1],[2,1,2,2],[0,3,3,1],[1,2,1,0]],[[0,2,3,1],[2,1,2,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,2],[2,1,2,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,1,2,3],[0,3,3,1],[1,2,1,0]],[[0,3,2,1],[2,1,2,2],[0,3,3,2],[1,1,0,1]],[[0,2,3,1],[2,1,2,2],[0,3,3,2],[1,1,0,1]],[[0,2,2,2],[2,1,2,2],[0,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,2,3],[0,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,2,2],[0,3,3,3],[1,1,0,1]],[[0,2,3,1],[2,1,2,2],[1,0,3,2],[0,2,2,1]],[[0,2,2,2],[2,1,2,2],[1,0,3,2],[0,2,2,1]],[[0,2,2,1],[2,1,2,3],[1,0,3,2],[0,2,2,1]],[[0,2,2,1],[2,1,2,2],[1,0,3,3],[0,2,2,1]],[[0,2,2,1],[2,1,2,2],[1,0,3,2],[0,2,3,1]],[[0,2,2,1],[2,1,2,2],[1,0,3,2],[0,2,2,2]],[[0,3,2,1],[2,1,2,2],[1,2,1,2],[0,2,2,1]],[[0,2,3,1],[2,1,2,2],[1,2,1,2],[0,2,2,1]],[[0,2,2,2],[2,1,2,2],[1,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,2,3],[1,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,2,2],[1,2,1,3],[0,2,2,1]],[[0,2,2,1],[2,1,2,2],[1,2,1,2],[0,3,2,1]],[[0,2,2,1],[2,1,2,2],[1,2,1,2],[0,2,3,1]],[[0,2,2,1],[2,1,2,2],[1,2,1,2],[0,2,2,2]],[[0,3,2,1],[2,1,2,2],[1,2,2,2],[0,2,1,1]],[[0,2,3,1],[2,1,2,2],[1,2,2,2],[0,2,1,1]],[[0,2,2,2],[2,1,2,2],[1,2,2,2],[0,2,1,1]],[[0,2,2,1],[2,1,2,3],[1,2,2,2],[0,2,1,1]],[[0,2,2,1],[2,1,2,2],[1,2,2,3],[0,2,1,1]],[[0,2,2,1],[2,1,2,2],[1,2,2,2],[0,2,1,2]],[[0,3,2,1],[2,1,2,2],[1,2,2,2],[0,2,2,0]],[[0,2,3,1],[2,1,2,2],[1,2,2,2],[0,2,2,0]],[[0,2,2,2],[2,1,2,2],[1,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,2,3],[1,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,2,2],[1,2,2,3],[0,2,2,0]],[[0,3,2,1],[2,1,2,2],[1,2,3,0],[0,2,2,1]],[[0,2,3,1],[2,1,2,2],[1,2,3,0],[0,2,2,1]],[[0,2,2,2],[2,1,2,2],[1,2,3,0],[0,2,2,1]],[[0,2,2,1],[2,1,2,3],[1,2,3,0],[0,2,2,1]],[[0,3,2,1],[2,1,2,2],[1,2,3,1],[0,2,1,1]],[[0,2,3,1],[2,1,2,2],[1,2,3,1],[0,2,1,1]],[[0,2,2,2],[2,1,2,2],[1,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,2,3],[1,2,3,1],[0,2,1,1]],[[0,3,2,1],[2,1,2,2],[1,2,3,1],[0,2,2,0]],[[0,2,3,1],[2,1,2,2],[1,2,3,1],[0,2,2,0]],[[0,2,2,2],[2,1,2,2],[1,2,3,1],[0,2,2,0]],[[0,2,2,1],[2,1,2,3],[1,2,3,1],[0,2,2,0]],[[1,2,2,0],[2,2,4,1],[2,0,3,2],[1,1,1,0]],[[1,2,2,0],[3,2,3,1],[2,0,3,2],[1,1,1,0]],[[1,2,3,0],[2,2,3,1],[2,0,3,2],[1,1,1,0]],[[1,3,2,0],[2,2,3,1],[2,0,3,2],[1,1,1,0]],[[2,2,2,0],[2,2,3,1],[2,0,3,2],[1,1,1,0]],[[1,2,2,0],[2,2,4,1],[2,0,3,2],[1,1,0,1]],[[1,2,2,0],[3,2,3,1],[2,0,3,2],[1,1,0,1]],[[1,2,3,0],[2,2,3,1],[2,0,3,2],[1,1,0,1]],[[1,3,2,0],[2,2,3,1],[2,0,3,2],[1,1,0,1]],[[2,2,2,0],[2,2,3,1],[2,0,3,2],[1,1,0,1]],[[1,2,2,0],[2,2,4,1],[2,0,3,2],[1,0,2,0]],[[1,2,2,0],[3,2,3,1],[2,0,3,2],[1,0,2,0]],[[1,2,3,0],[2,2,3,1],[2,0,3,2],[1,0,2,0]],[[1,3,2,0],[2,2,3,1],[2,0,3,2],[1,0,2,0]],[[2,2,2,0],[2,2,3,1],[2,0,3,2],[1,0,2,0]],[[1,2,2,0],[2,2,4,1],[2,0,3,2],[1,0,1,1]],[[1,2,2,0],[3,2,3,1],[2,0,3,2],[1,0,1,1]],[[1,2,3,0],[2,2,3,1],[2,0,3,2],[1,0,1,1]],[[1,3,2,0],[2,2,3,1],[2,0,3,2],[1,0,1,1]],[[2,2,2,0],[2,2,3,1],[2,0,3,2],[1,0,1,1]],[[0,3,2,1],[2,1,2,2],[1,3,0,2],[0,2,2,1]],[[0,2,3,1],[2,1,2,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,2],[2,1,2,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,1,2,3],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,1,2,2],[1,4,0,2],[0,2,2,1]],[[0,2,2,1],[2,1,2,2],[1,3,0,3],[0,2,2,1]],[[0,2,2,1],[2,1,2,2],[1,3,0,2],[0,3,2,1]],[[0,2,2,1],[2,1,2,2],[1,3,0,2],[0,2,3,1]],[[0,2,2,1],[2,1,2,2],[1,3,0,2],[0,2,2,2]],[[0,3,2,1],[2,1,2,2],[1,3,1,2],[0,1,2,1]],[[0,2,3,1],[2,1,2,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,2],[2,1,2,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,1,2,3],[1,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,1,2,2],[1,3,1,3],[0,1,2,1]],[[0,2,2,1],[2,1,2,2],[1,3,1,2],[0,1,3,1]],[[0,2,2,1],[2,1,2,2],[1,3,1,2],[0,1,2,2]],[[0,3,2,1],[2,1,2,2],[1,3,1,2],[1,0,2,1]],[[0,2,3,1],[2,1,2,2],[1,3,1,2],[1,0,2,1]],[[0,2,2,2],[2,1,2,2],[1,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,1,2,3],[1,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,1,2,2],[1,3,1,3],[1,0,2,1]],[[0,2,2,1],[2,1,2,2],[1,3,1,2],[1,0,3,1]],[[0,2,2,1],[2,1,2,2],[1,3,1,2],[1,0,2,2]],[[1,2,2,0],[2,2,4,1],[2,0,3,2],[0,2,1,0]],[[1,2,2,0],[3,2,3,1],[2,0,3,2],[0,2,1,0]],[[1,2,3,0],[2,2,3,1],[2,0,3,2],[0,2,1,0]],[[1,3,2,0],[2,2,3,1],[2,0,3,2],[0,2,1,0]],[[2,2,2,0],[2,2,3,1],[2,0,3,2],[0,2,1,0]],[[1,2,2,0],[2,2,4,1],[2,0,3,2],[0,2,0,1]],[[1,2,2,0],[3,2,3,1],[2,0,3,2],[0,2,0,1]],[[1,2,3,0],[2,2,3,1],[2,0,3,2],[0,2,0,1]],[[1,3,2,0],[2,2,3,1],[2,0,3,2],[0,2,0,1]],[[2,2,2,0],[2,2,3,1],[2,0,3,2],[0,2,0,1]],[[0,3,2,1],[2,1,2,2],[1,3,2,2],[0,0,2,1]],[[0,2,3,1],[2,1,2,2],[1,3,2,2],[0,0,2,1]],[[0,2,2,2],[2,1,2,2],[1,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,1,2,3],[1,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,1,2,2],[1,3,2,3],[0,0,2,1]],[[0,2,2,1],[2,1,2,2],[1,3,2,2],[0,0,2,2]],[[0,3,2,1],[2,1,2,2],[1,3,2,2],[0,1,1,1]],[[0,2,3,1],[2,1,2,2],[1,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,1,2,2],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,1,2,3],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,1,2,2],[1,3,2,3],[0,1,1,1]],[[0,2,2,1],[2,1,2,2],[1,3,2,2],[0,1,1,2]],[[0,3,2,1],[2,1,2,2],[1,3,2,2],[0,1,2,0]],[[0,2,3,1],[2,1,2,2],[1,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,1,2,2],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,1,2,3],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,1,2,2],[1,3,2,3],[0,1,2,0]],[[0,3,2,1],[2,1,2,2],[1,3,2,2],[0,2,0,1]],[[0,2,3,1],[2,1,2,2],[1,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,1,2,2],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,1,2,3],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,1,2,2],[1,3,2,3],[0,2,0,1]],[[0,2,2,1],[2,1,2,2],[1,3,2,2],[0,2,0,2]],[[0,3,2,1],[2,1,2,2],[1,3,2,2],[0,2,1,0]],[[0,2,3,1],[2,1,2,2],[1,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,1,2,2],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,1,2,3],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,1,2,2],[1,3,2,3],[0,2,1,0]],[[1,2,2,0],[2,2,4,1],[2,0,3,2],[0,1,2,0]],[[1,2,2,0],[3,2,3,1],[2,0,3,2],[0,1,2,0]],[[1,2,3,0],[2,2,3,1],[2,0,3,2],[0,1,2,0]],[[1,3,2,0],[2,2,3,1],[2,0,3,2],[0,1,2,0]],[[2,2,2,0],[2,2,3,1],[2,0,3,2],[0,1,2,0]],[[0,3,2,1],[2,1,2,2],[1,3,2,2],[1,0,1,1]],[[0,2,3,1],[2,1,2,2],[1,3,2,2],[1,0,1,1]],[[0,2,2,2],[2,1,2,2],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,1,2,3],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,1,2,2],[1,3,2,3],[1,0,1,1]],[[0,2,2,1],[2,1,2,2],[1,3,2,2],[1,0,1,2]],[[0,3,2,1],[2,1,2,2],[1,3,2,2],[1,0,2,0]],[[0,2,3,1],[2,1,2,2],[1,3,2,2],[1,0,2,0]],[[0,2,2,2],[2,1,2,2],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,1,2,3],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,1,2,2],[1,3,2,3],[1,0,2,0]],[[0,3,2,1],[2,1,2,2],[1,3,2,2],[1,1,0,1]],[[0,2,3,1],[2,1,2,2],[1,3,2,2],[1,1,0,1]],[[0,2,2,2],[2,1,2,2],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,1,2,3],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,1,2,2],[1,3,2,3],[1,1,0,1]],[[0,2,2,1],[2,1,2,2],[1,3,2,2],[1,1,0,2]],[[0,3,2,1],[2,1,2,2],[1,3,2,2],[1,1,1,0]],[[0,2,3,1],[2,1,2,2],[1,3,2,2],[1,1,1,0]],[[0,2,2,2],[2,1,2,2],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,1,2,3],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,1,2,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,0],[2,2,4,1],[2,0,3,2],[0,1,1,1]],[[1,2,2,0],[3,2,3,1],[2,0,3,2],[0,1,1,1]],[[1,2,3,0],[2,2,3,1],[2,0,3,2],[0,1,1,1]],[[1,3,2,0],[2,2,3,1],[2,0,3,2],[0,1,1,1]],[[2,2,2,0],[2,2,3,1],[2,0,3,2],[0,1,1,1]],[[1,2,2,0],[2,2,4,1],[2,0,3,2],[0,0,2,1]],[[1,2,2,0],[3,2,3,1],[2,0,3,2],[0,0,2,1]],[[1,2,3,0],[2,2,3,1],[2,0,3,2],[0,0,2,1]],[[1,3,2,0],[2,2,3,1],[2,0,3,2],[0,0,2,1]],[[2,2,2,0],[2,2,3,1],[2,0,3,2],[0,0,2,1]],[[1,2,2,0],[2,2,4,1],[2,0,3,1],[1,0,2,1]],[[1,2,2,0],[3,2,3,1],[2,0,3,1],[1,0,2,1]],[[1,2,3,0],[2,2,3,1],[2,0,3,1],[1,0,2,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,1,2,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,1,2,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,1,2,3],[1,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,1,2,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,2],[2,1,2,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,1,2,3],[1,3,3,0],[0,2,1,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,0],[1,0,2,1]],[[0,2,3,1],[2,1,2,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,2],[2,1,2,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,1,2,3],[1,3,3,0],[1,0,2,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,0],[1,1,1,1]],[[0,2,3,1],[2,1,2,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,2],[2,1,2,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,1,2,3],[1,3,3,0],[1,1,1,1]],[[1,3,2,0],[2,2,3,1],[2,0,3,1],[1,0,2,1]],[[2,2,2,0],[2,2,3,1],[2,0,3,1],[1,0,2,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,1,2,2],[1,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,1,2,2],[1,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,1,2,3],[1,3,3,1],[0,0,2,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,1,2,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,1,2,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,1,2,3],[1,3,3,1],[0,1,1,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,1,2,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,1,2,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,1,2,3],[1,3,3,1],[0,1,2,0]],[[0,3,2,1],[2,1,2,2],[1,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,1,2,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,1,2,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,1,2,3],[1,3,3,1],[0,2,0,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,1,2,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,1,2,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,1,2,3],[1,3,3,1],[0,2,1,0]],[[1,2,2,0],[2,2,4,1],[2,0,3,1],[0,1,2,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,1],[1,0,1,1]],[[0,2,3,1],[2,1,2,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,2],[2,1,2,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,1,2,3],[1,3,3,1],[1,0,1,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,1],[1,0,2,0]],[[0,2,3,1],[2,1,2,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,2],[2,1,2,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,1,2,3],[1,3,3,1],[1,0,2,0]],[[0,3,2,1],[2,1,2,2],[1,3,3,1],[1,1,0,1]],[[0,2,3,1],[2,1,2,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,2],[2,1,2,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,1,2,3],[1,3,3,1],[1,1,0,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,1],[1,1,1,0]],[[0,2,3,1],[2,1,2,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,2],[2,1,2,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,1,2,3],[1,3,3,1],[1,1,1,0]],[[1,2,2,0],[3,2,3,1],[2,0,3,1],[0,1,2,1]],[[1,2,3,0],[2,2,3,1],[2,0,3,1],[0,1,2,1]],[[1,3,2,0],[2,2,3,1],[2,0,3,1],[0,1,2,1]],[[2,2,2,0],[2,2,3,1],[2,0,3,1],[0,1,2,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,2],[0,1,0,1]],[[0,2,3,1],[2,1,2,2],[1,3,3,2],[0,1,0,1]],[[0,2,2,2],[2,1,2,2],[1,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,1,2,3],[1,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,1,2,2],[1,3,3,3],[0,1,0,1]],[[0,3,2,1],[2,1,2,2],[1,3,3,2],[1,0,0,1]],[[0,2,3,1],[2,1,2,2],[1,3,3,2],[1,0,0,1]],[[0,2,2,2],[2,1,2,2],[1,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,1,2,3],[1,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,1,2,2],[1,3,3,3],[1,0,0,1]],[[0,3,2,1],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[3,1,2,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,3],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[3,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[2,0,1,3],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[2,0,1,2],[2,2,2,1]],[[0,2,2,1],[2,1,2,2],[2,0,1,2],[1,3,2,1]],[[0,2,2,1],[2,1,2,2],[2,0,1,2],[1,2,3,1]],[[0,2,2,1],[2,1,2,2],[2,0,1,2],[1,2,2,2]],[[0,3,2,1],[2,1,2,2],[2,0,2,2],[1,2,1,1]],[[0,2,3,1],[2,1,2,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,2],[2,1,2,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,1,2,3],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,1,2,2],[2,0,2,3],[1,2,1,1]],[[0,2,2,1],[2,1,2,2],[2,0,2,2],[1,2,1,2]],[[0,3,2,1],[2,1,2,2],[2,0,2,2],[1,2,2,0]],[[0,2,3,1],[2,1,2,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,1,2,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,2,3],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,2,2],[2,0,2,3],[1,2,2,0]],[[0,3,2,1],[2,1,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,1,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,1,2,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,1,2,3],[2,0,3,0],[1,2,2,1]],[[0,3,2,1],[2,1,2,2],[2,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,1,2,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,1,2,2],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,2,3],[2,0,3,1],[1,2,1,1]],[[0,3,2,1],[2,1,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,1,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,1,2,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,1,2,3],[2,0,3,1],[1,2,2,0]],[[0,3,2,1],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,3,1],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,2],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[3,1,2,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,3],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[3,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[2,1,0,3],[1,2,2,1]],[[0,2,2,1],[2,1,2,2],[2,1,0,2],[2,2,2,1]],[[0,2,2,1],[2,1,2,2],[2,1,0,2],[1,3,2,1]],[[0,2,2,1],[2,1,2,2],[2,1,0,2],[1,2,3,1]],[[0,2,2,1],[2,1,2,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,0],[2,2,4,1],[0,3,3,2],[1,1,0,0]],[[1,2,3,0],[2,2,3,1],[0,3,3,2],[1,1,0,0]],[[1,3,2,0],[2,2,3,1],[0,3,3,2],[1,1,0,0]],[[2,2,2,0],[2,2,3,1],[0,3,3,2],[1,1,0,0]],[[1,2,2,0],[2,2,4,1],[0,3,3,2],[0,2,0,0]],[[1,2,3,0],[2,2,3,1],[0,3,3,2],[0,2,0,0]],[[1,3,2,0],[2,2,3,1],[0,3,3,2],[0,2,0,0]],[[2,2,2,0],[2,2,3,1],[0,3,3,2],[0,2,0,0]],[[1,2,2,0],[2,2,3,1],[0,3,3,3],[0,0,2,0]],[[1,2,2,0],[2,2,3,1],[0,3,4,2],[0,0,2,0]],[[1,2,2,0],[2,2,4,1],[0,3,3,2],[0,0,2,0]],[[1,2,3,0],[2,2,3,1],[0,3,3,2],[0,0,2,0]],[[1,3,2,0],[2,2,3,1],[0,3,3,2],[0,0,2,0]],[[2,2,2,0],[2,2,3,1],[0,3,3,2],[0,0,2,0]],[[1,2,2,0],[2,2,3,1],[0,3,3,2],[0,0,1,2]],[[1,2,2,0],[2,2,3,1],[0,3,3,3],[0,0,1,1]],[[1,2,2,0],[2,2,3,1],[0,3,4,2],[0,0,1,1]],[[1,2,2,0],[2,2,4,1],[0,3,3,2],[0,0,1,1]],[[1,2,3,0],[2,2,3,1],[0,3,3,2],[0,0,1,1]],[[1,3,2,0],[2,2,3,1],[0,3,3,2],[0,0,1,1]],[[2,2,2,0],[2,2,3,1],[0,3,3,2],[0,0,1,1]],[[1,2,2,0],[2,2,3,1],[0,3,4,1],[0,0,2,1]],[[1,2,2,0],[2,2,4,1],[0,3,3,1],[0,0,2,1]],[[1,2,3,0],[2,2,3,1],[0,3,3,1],[0,0,2,1]],[[1,3,2,0],[2,2,3,1],[0,3,3,1],[0,0,2,1]],[[2,2,2,0],[2,2,3,1],[0,3,3,1],[0,0,2,1]],[[1,2,2,0],[2,2,4,1],[0,3,2,2],[1,1,1,0]],[[1,2,3,0],[2,2,3,1],[0,3,2,2],[1,1,1,0]],[[1,3,2,0],[2,2,3,1],[0,3,2,2],[1,1,1,0]],[[2,2,2,0],[2,2,3,1],[0,3,2,2],[1,1,1,0]],[[1,2,2,0],[2,2,4,1],[0,3,2,2],[1,1,0,1]],[[1,2,3,0],[2,2,3,1],[0,3,2,2],[1,1,0,1]],[[1,3,2,0],[2,2,3,1],[0,3,2,2],[1,1,0,1]],[[2,2,2,0],[2,2,3,1],[0,3,2,2],[1,1,0,1]],[[1,2,2,0],[2,2,4,1],[0,3,2,2],[1,0,2,0]],[[1,2,3,0],[2,2,3,1],[0,3,2,2],[1,0,2,0]],[[1,3,2,0],[2,2,3,1],[0,3,2,2],[1,0,2,0]],[[2,2,2,0],[2,2,3,1],[0,3,2,2],[1,0,2,0]],[[1,2,2,0],[2,2,4,1],[0,3,2,2],[1,0,1,1]],[[1,2,3,0],[2,2,3,1],[0,3,2,2],[1,0,1,1]],[[1,3,2,0],[2,2,3,1],[0,3,2,2],[1,0,1,1]],[[2,2,2,0],[2,2,3,1],[0,3,2,2],[1,0,1,1]],[[1,2,2,0],[2,2,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,3,0],[2,2,3,1],[0,3,2,2],[0,2,1,0]],[[1,3,2,0],[2,2,3,1],[0,3,2,2],[0,2,1,0]],[[2,2,2,0],[2,2,3,1],[0,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,2,4,1],[0,3,2,2],[0,2,0,1]],[[1,2,3,0],[2,2,3,1],[0,3,2,2],[0,2,0,1]],[[1,3,2,0],[2,2,3,1],[0,3,2,2],[0,2,0,1]],[[2,2,2,0],[2,2,3,1],[0,3,2,2],[0,2,0,1]],[[1,2,2,0],[2,2,4,1],[0,3,2,2],[0,1,2,0]],[[1,2,3,0],[2,2,3,1],[0,3,2,2],[0,1,2,0]],[[1,3,2,0],[2,2,3,1],[0,3,2,2],[0,1,2,0]],[[2,2,2,0],[2,2,3,1],[0,3,2,2],[0,1,2,0]],[[1,2,2,0],[2,2,4,1],[0,3,2,2],[0,1,1,1]],[[1,2,3,0],[2,2,3,1],[0,3,2,2],[0,1,1,1]],[[1,3,2,0],[2,2,3,1],[0,3,2,2],[0,1,1,1]],[[2,2,2,0],[2,2,3,1],[0,3,2,2],[0,1,1,1]],[[1,2,2,0],[2,2,4,1],[0,3,2,1],[1,0,2,1]],[[1,2,3,0],[2,2,3,1],[0,3,2,1],[1,0,2,1]],[[1,3,2,0],[2,2,3,1],[0,3,2,1],[1,0,2,1]],[[2,2,2,0],[2,2,3,1],[0,3,2,1],[1,0,2,1]],[[1,2,2,0],[2,2,4,1],[0,3,2,1],[0,2,1,1]],[[1,2,3,0],[2,2,3,1],[0,3,2,1],[0,2,1,1]],[[1,3,2,0],[2,2,3,1],[0,3,2,1],[0,2,1,1]],[[2,2,2,0],[2,2,3,1],[0,3,2,1],[0,2,1,1]],[[1,2,2,0],[2,2,4,1],[0,3,2,1],[0,1,2,1]],[[1,2,3,0],[2,2,3,1],[0,3,2,1],[0,1,2,1]],[[1,3,2,0],[2,2,3,1],[0,3,2,1],[0,1,2,1]],[[2,2,2,0],[2,2,3,1],[0,3,2,1],[0,1,2,1]],[[1,2,2,0],[2,2,4,1],[0,3,1,2],[0,2,2,0]],[[1,2,3,0],[2,2,3,1],[0,3,1,2],[0,2,2,0]],[[1,3,2,0],[2,2,3,1],[0,3,1,2],[0,2,2,0]],[[2,2,2,0],[2,2,3,1],[0,3,1,2],[0,2,2,0]],[[1,2,2,0],[2,2,4,1],[0,3,1,1],[0,2,2,1]],[[1,2,3,0],[2,2,3,1],[0,3,1,1],[0,2,2,1]],[[1,3,2,0],[2,2,3,1],[0,3,1,1],[0,2,2,1]],[[2,2,2,0],[2,2,3,1],[0,3,1,1],[0,2,2,1]],[[1,2,2,0],[2,2,4,1],[0,3,0,2],[0,2,2,1]],[[1,2,3,0],[2,2,3,1],[0,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,2,3,1],[0,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,2,3,1],[0,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,2,4,1],[0,2,3,2],[1,1,1,0]],[[1,2,3,0],[2,2,3,1],[0,2,3,2],[1,1,1,0]],[[1,3,2,0],[2,2,3,1],[0,2,3,2],[1,1,1,0]],[[2,2,2,0],[2,2,3,1],[0,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,2,4,1],[0,2,3,2],[1,1,0,1]],[[1,2,3,0],[2,2,3,1],[0,2,3,2],[1,1,0,1]],[[1,3,2,0],[2,2,3,1],[0,2,3,2],[1,1,0,1]],[[2,2,2,0],[2,2,3,1],[0,2,3,2],[1,1,0,1]],[[1,2,2,0],[2,2,3,1],[0,2,3,3],[1,0,2,0]],[[1,2,2,0],[2,2,3,1],[0,2,4,2],[1,0,2,0]],[[1,2,2,0],[2,2,4,1],[0,2,3,2],[1,0,2,0]],[[1,2,3,0],[2,2,3,1],[0,2,3,2],[1,0,2,0]],[[1,3,2,0],[2,2,3,1],[0,2,3,2],[1,0,2,0]],[[2,2,2,0],[2,2,3,1],[0,2,3,2],[1,0,2,0]],[[1,2,2,0],[2,2,3,1],[0,2,3,2],[1,0,1,2]],[[1,2,2,0],[2,2,3,1],[0,2,3,3],[1,0,1,1]],[[1,2,2,0],[2,2,3,1],[0,2,4,2],[1,0,1,1]],[[1,2,2,0],[2,2,4,1],[0,2,3,2],[1,0,1,1]],[[1,2,3,0],[2,2,3,1],[0,2,3,2],[1,0,1,1]],[[1,3,2,0],[2,2,3,1],[0,2,3,2],[1,0,1,1]],[[2,2,2,0],[2,2,3,1],[0,2,3,2],[1,0,1,1]],[[1,2,2,0],[2,2,3,1],[0,2,3,3],[0,2,1,0]],[[1,2,2,0],[2,2,3,1],[0,2,4,2],[0,2,1,0]],[[1,2,2,0],[2,2,4,1],[0,2,3,2],[0,2,1,0]],[[1,2,3,0],[2,2,3,1],[0,2,3,2],[0,2,1,0]],[[1,3,2,0],[2,2,3,1],[0,2,3,2],[0,2,1,0]],[[2,2,2,0],[2,2,3,1],[0,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,2,3,1],[0,2,3,2],[0,2,0,2]],[[1,2,2,0],[2,2,3,1],[0,2,3,3],[0,2,0,1]],[[1,2,2,0],[2,2,3,1],[0,2,4,2],[0,2,0,1]],[[1,2,2,0],[2,2,4,1],[0,2,3,2],[0,2,0,1]],[[1,2,3,0],[2,2,3,1],[0,2,3,2],[0,2,0,1]],[[1,3,2,0],[2,2,3,1],[0,2,3,2],[0,2,0,1]],[[2,2,2,0],[2,2,3,1],[0,2,3,2],[0,2,0,1]],[[1,2,2,0],[2,2,3,1],[0,2,3,2],[0,1,3,0]],[[1,2,2,0],[2,2,3,1],[0,2,3,3],[0,1,2,0]],[[1,2,2,0],[2,2,3,1],[0,2,4,2],[0,1,2,0]],[[1,2,2,0],[2,2,4,1],[0,2,3,2],[0,1,2,0]],[[1,2,3,0],[2,2,3,1],[0,2,3,2],[0,1,2,0]],[[1,3,2,0],[2,2,3,1],[0,2,3,2],[0,1,2,0]],[[2,2,2,0],[2,2,3,1],[0,2,3,2],[0,1,2,0]],[[1,2,2,0],[2,2,3,1],[0,2,3,2],[0,1,1,2]],[[1,2,2,0],[2,2,3,1],[0,2,3,3],[0,1,1,1]],[[1,2,2,0],[2,2,3,1],[0,2,4,2],[0,1,1,1]],[[1,2,2,0],[2,2,4,1],[0,2,3,2],[0,1,1,1]],[[1,2,3,0],[2,2,3,1],[0,2,3,2],[0,1,1,1]],[[1,3,2,0],[2,2,3,1],[0,2,3,2],[0,1,1,1]],[[2,2,2,0],[2,2,3,1],[0,2,3,2],[0,1,1,1]],[[1,2,2,0],[2,2,3,1],[0,2,3,2],[0,0,2,2]],[[1,2,2,0],[2,2,3,1],[0,2,3,3],[0,0,2,1]],[[1,2,2,0],[2,2,3,1],[0,2,4,2],[0,0,2,1]],[[1,2,2,0],[2,2,4,1],[0,2,3,2],[0,0,2,1]],[[1,2,3,0],[2,2,3,1],[0,2,3,2],[0,0,2,1]],[[1,3,2,0],[2,2,3,1],[0,2,3,2],[0,0,2,1]],[[2,2,2,0],[2,2,3,1],[0,2,3,2],[0,0,2,1]],[[1,2,2,0],[2,2,3,1],[0,2,4,1],[1,0,2,1]],[[1,2,2,0],[2,2,4,1],[0,2,3,1],[1,0,2,1]],[[1,2,3,0],[2,2,3,1],[0,2,3,1],[1,0,2,1]],[[1,3,2,0],[2,2,3,1],[0,2,3,1],[1,0,2,1]],[[2,2,2,0],[2,2,3,1],[0,2,3,1],[1,0,2,1]],[[1,2,2,0],[2,2,3,1],[0,2,4,1],[0,2,1,1]],[[1,2,2,0],[2,2,4,1],[0,2,3,1],[0,2,1,1]],[[1,2,3,0],[2,2,3,1],[0,2,3,1],[0,2,1,1]],[[1,3,2,0],[2,2,3,1],[0,2,3,1],[0,2,1,1]],[[2,2,2,0],[2,2,3,1],[0,2,3,1],[0,2,1,1]],[[1,2,2,0],[2,2,3,1],[0,2,3,1],[0,1,2,2]],[[1,2,2,0],[2,2,3,1],[0,2,3,1],[0,1,3,1]],[[1,2,2,0],[2,2,3,1],[0,2,4,1],[0,1,2,1]],[[1,2,2,0],[2,2,4,1],[0,2,3,1],[0,1,2,1]],[[1,2,3,0],[2,2,3,1],[0,2,3,1],[0,1,2,1]],[[1,3,2,0],[2,2,3,1],[0,2,3,1],[0,1,2,1]],[[2,2,2,0],[2,2,3,1],[0,2,3,1],[0,1,2,1]],[[1,2,2,0],[2,2,3,1],[0,2,2,2],[0,1,2,2]],[[1,2,2,0],[2,2,3,1],[0,2,2,2],[0,1,3,1]],[[1,2,2,0],[2,2,3,1],[0,2,2,3],[0,1,2,1]],[[1,2,2,0],[2,2,3,1],[0,1,3,2],[0,2,3,0]],[[1,2,2,0],[2,2,3,1],[0,1,3,3],[0,2,2,0]],[[1,2,2,0],[2,2,3,1],[0,1,4,2],[0,2,2,0]],[[1,2,2,0],[2,2,4,1],[0,1,3,2],[0,2,2,0]],[[1,2,3,0],[2,2,3,1],[0,1,3,2],[0,2,2,0]],[[1,3,2,0],[2,2,3,1],[0,1,3,2],[0,2,2,0]],[[2,2,2,0],[2,2,3,1],[0,1,3,2],[0,2,2,0]],[[1,2,2,0],[2,2,3,1],[0,1,3,2],[0,2,1,2]],[[1,2,2,0],[2,2,3,1],[0,1,3,3],[0,2,1,1]],[[1,2,2,0],[2,2,3,1],[0,1,4,2],[0,2,1,1]],[[1,2,2,0],[2,2,4,1],[0,1,3,2],[0,2,1,1]],[[1,2,3,0],[2,2,3,1],[0,1,3,2],[0,2,1,1]],[[1,3,2,0],[2,2,3,1],[0,1,3,2],[0,2,1,1]],[[2,2,2,0],[2,2,3,1],[0,1,3,2],[0,2,1,1]],[[1,2,2,0],[2,2,3,1],[0,1,3,1],[0,2,2,2]],[[1,2,2,0],[2,2,3,1],[0,1,3,1],[0,2,3,1]],[[1,2,2,0],[2,2,3,1],[0,1,4,1],[0,2,2,1]],[[1,2,2,0],[2,2,4,1],[0,1,3,1],[0,2,2,1]],[[1,2,3,0],[2,2,3,1],[0,1,3,1],[0,2,2,1]],[[1,3,2,0],[2,2,3,1],[0,1,3,1],[0,2,2,1]],[[2,2,2,0],[2,2,3,1],[0,1,3,1],[0,2,2,1]],[[1,2,2,0],[2,2,3,1],[0,1,2,2],[0,2,2,2]],[[1,2,2,0],[2,2,3,1],[0,1,2,2],[0,2,3,1]],[[1,2,2,0],[2,2,3,1],[0,1,2,3],[0,2,2,1]],[[1,2,2,0],[2,2,3,1],[0,0,3,2],[0,2,2,2]],[[1,2,2,0],[2,2,3,1],[0,0,3,2],[0,2,3,1]],[[1,2,2,0],[2,2,3,1],[0,0,3,3],[0,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,1,3,3],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,1,3,2],[1,2,3,1]],[[0,2,2,1],[2,1,3,0],[0,1,3,2],[1,2,2,2]],[[0,2,2,1],[2,1,3,0],[0,2,2,3],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,2,2,2],[2,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,2,2,2],[1,3,2,1]],[[0,2,2,1],[2,1,3,0],[0,2,2,2],[1,2,3,1]],[[0,2,2,1],[2,1,3,0],[0,2,2,2],[1,2,2,2]],[[0,3,2,1],[2,1,3,0],[0,2,3,1],[1,2,2,1]],[[0,2,3,1],[2,1,3,0],[0,2,3,1],[1,2,2,1]],[[0,2,2,2],[2,1,3,0],[0,2,3,1],[1,2,2,1]],[[0,2,2,1],[2,1,4,0],[0,2,3,1],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,2,4,1],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,2,3,1],[2,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,1,3,0],[0,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,1,3,0],[0,2,3,1],[1,2,2,2]],[[0,3,2,1],[2,1,3,0],[0,2,3,2],[1,2,1,1]],[[0,2,3,1],[2,1,3,0],[0,2,3,2],[1,2,1,1]],[[0,2,2,2],[2,1,3,0],[0,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,4,0],[0,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,3,0],[0,2,4,2],[1,2,1,1]],[[0,2,2,1],[2,1,3,0],[0,2,3,3],[1,2,1,1]],[[0,2,2,1],[2,1,3,0],[0,2,3,2],[1,2,1,2]],[[0,3,2,1],[2,1,3,0],[0,2,3,2],[1,2,2,0]],[[0,2,3,1],[2,1,3,0],[0,2,3,2],[1,2,2,0]],[[0,2,2,2],[2,1,3,0],[0,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,4,0],[0,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,0],[0,2,4,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,0],[0,2,3,3],[1,2,2,0]],[[0,2,2,1],[2,1,3,0],[0,2,3,2],[2,2,2,0]],[[0,2,2,1],[2,1,3,0],[0,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,1,3,0],[0,2,3,2],[1,2,3,0]],[[0,2,2,1],[2,1,3,0],[0,4,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,1,3],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,1,3,0],[0,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,1,3,0],[0,4,2,1],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,1,3,0],[0,3,2,1],[1,2,2,2]],[[0,2,2,1],[2,1,3,0],[0,3,2,3],[1,1,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,2,2],[1,1,3,1]],[[0,2,2,1],[2,1,3,0],[0,3,2,2],[1,1,2,2]],[[0,2,2,1],[2,1,3,0],[0,4,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,0],[0,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,1,3,0],[0,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,1,3,0],[0,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,1,3,0],[0,4,3,0],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,0],[2,2,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,0],[1,3,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,0],[1,2,3,1]],[[0,3,2,1],[2,1,3,0],[0,3,3,1],[1,1,2,1]],[[0,2,3,1],[2,1,3,0],[0,3,3,1],[1,1,2,1]],[[0,2,2,2],[2,1,3,0],[0,3,3,1],[1,1,2,1]],[[0,2,2,1],[2,1,4,0],[0,3,3,1],[1,1,2,1]],[[0,2,2,1],[2,1,3,0],[0,4,3,1],[1,1,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,4,1],[1,1,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,1],[1,1,3,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,1],[1,1,2,2]],[[0,3,2,1],[2,1,3,0],[0,3,3,1],[1,2,1,1]],[[0,2,3,1],[2,1,3,0],[0,3,3,1],[1,2,1,1]],[[0,2,2,2],[2,1,3,0],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,4,0],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,3,0],[0,4,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,3,0],[0,3,4,1],[1,2,1,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,1],[1,3,1,1]],[[0,3,2,1],[2,1,3,0],[0,3,3,2],[1,0,2,1]],[[0,2,3,1],[2,1,3,0],[0,3,3,2],[1,0,2,1]],[[0,2,2,2],[2,1,3,0],[0,3,3,2],[1,0,2,1]],[[0,2,2,1],[2,1,4,0],[0,3,3,2],[1,0,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,4,2],[1,0,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,3],[1,0,2,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,2],[1,0,2,2]],[[0,3,2,1],[2,1,3,0],[0,3,3,2],[1,1,1,1]],[[0,2,3,1],[2,1,3,0],[0,3,3,2],[1,1,1,1]],[[0,2,2,2],[2,1,3,0],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,1,4,0],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,1,3,0],[0,4,3,2],[1,1,1,1]],[[0,2,2,1],[2,1,3,0],[0,3,4,2],[1,1,1,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,3],[1,1,1,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,2],[1,1,1,2]],[[0,3,2,1],[2,1,3,0],[0,3,3,2],[1,1,2,0]],[[0,2,3,1],[2,1,3,0],[0,3,3,2],[1,1,2,0]],[[0,2,2,2],[2,1,3,0],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,1,4,0],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,1,3,0],[0,4,3,2],[1,1,2,0]],[[0,2,2,1],[2,1,3,0],[0,3,4,2],[1,1,2,0]],[[0,2,2,1],[2,1,3,0],[0,3,3,3],[1,1,2,0]],[[0,2,2,1],[2,1,3,0],[0,3,3,2],[1,1,3,0]],[[0,3,2,1],[2,1,3,0],[0,3,3,2],[1,2,0,1]],[[0,2,3,1],[2,1,3,0],[0,3,3,2],[1,2,0,1]],[[0,2,2,2],[2,1,3,0],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,4,0],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,3,0],[0,4,3,2],[1,2,0,1]],[[0,2,2,1],[2,1,3,0],[0,3,4,2],[1,2,0,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,3],[1,2,0,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,1,3,0],[0,3,3,2],[1,2,0,2]],[[0,3,2,1],[2,1,3,0],[0,3,3,2],[1,2,1,0]],[[0,2,3,1],[2,1,3,0],[0,3,3,2],[1,2,1,0]],[[0,2,2,2],[2,1,3,0],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,4,0],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,3,0],[0,4,3,2],[1,2,1,0]],[[0,2,2,1],[2,1,3,0],[0,3,4,2],[1,2,1,0]],[[0,2,2,1],[2,1,3,0],[0,3,3,3],[1,2,1,0]],[[0,2,2,1],[2,1,3,0],[0,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,1,3,0],[0,3,3,2],[1,3,1,0]],[[0,2,2,1],[2,1,3,0],[1,1,3,3],[0,2,2,1]],[[0,2,2,1],[2,1,3,0],[1,1,3,2],[0,2,3,1]],[[0,2,2,1],[2,1,3,0],[1,1,3,2],[0,2,2,2]],[[0,2,2,1],[2,1,3,0],[1,2,2,3],[0,2,2,1]],[[0,2,2,1],[2,1,3,0],[1,2,2,2],[0,3,2,1]],[[0,2,2,1],[2,1,3,0],[1,2,2,2],[0,2,3,1]],[[0,2,2,1],[2,1,3,0],[1,2,2,2],[0,2,2,2]],[[0,3,2,1],[2,1,3,0],[1,2,3,1],[0,2,2,1]],[[0,2,3,1],[2,1,3,0],[1,2,3,1],[0,2,2,1]],[[0,2,2,2],[2,1,3,0],[1,2,3,1],[0,2,2,1]],[[0,2,2,1],[2,1,4,0],[1,2,3,1],[0,2,2,1]],[[0,2,2,1],[2,1,3,0],[1,2,4,1],[0,2,2,1]],[[0,2,2,1],[2,1,3,0],[1,2,3,1],[0,3,2,1]],[[0,2,2,1],[2,1,3,0],[1,2,3,1],[0,2,3,1]],[[0,2,2,1],[2,1,3,0],[1,2,3,1],[0,2,2,2]],[[0,3,2,1],[2,1,3,0],[1,2,3,2],[0,2,1,1]],[[0,2,3,1],[2,1,3,0],[1,2,3,2],[0,2,1,1]],[[0,2,2,2],[2,1,3,0],[1,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,1,4,0],[1,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,1,3,0],[1,2,4,2],[0,2,1,1]],[[0,2,2,1],[2,1,3,0],[1,2,3,3],[0,2,1,1]],[[0,2,2,1],[2,1,3,0],[1,2,3,2],[0,2,1,2]],[[0,3,2,1],[2,1,3,0],[1,2,3,2],[0,2,2,0]],[[0,2,3,1],[2,1,3,0],[1,2,3,2],[0,2,2,0]],[[0,2,2,2],[2,1,3,0],[1,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,1,4,0],[1,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,1,3,0],[1,2,4,2],[0,2,2,0]],[[0,2,2,1],[2,1,3,0],[1,2,3,3],[0,2,2,0]],[[0,2,2,1],[2,1,3,0],[1,2,3,2],[0,3,2,0]],[[0,2,2,1],[2,1,3,0],[1,2,3,2],[0,2,3,0]],[[0,2,2,1],[2,1,3,0],[1,4,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,1,3],[0,2,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,1,2],[0,3,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,1,2],[0,2,3,1]],[[0,2,2,1],[2,1,3,0],[1,3,1,2],[0,2,2,2]],[[0,2,2,1],[2,1,3,0],[1,4,2,1],[0,2,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,2,1],[0,3,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,2,1],[0,2,3,1]],[[0,2,2,1],[2,1,3,0],[1,3,2,1],[0,2,2,2]],[[0,2,2,1],[2,1,3,0],[1,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,1,3,0],[1,3,2,2],[0,1,2,2]],[[0,2,2,1],[2,1,3,0],[1,4,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,3,0],[1,3,2,2],[0,3,2,0]],[[0,2,2,1],[2,1,3,0],[1,3,2,2],[0,2,3,0]],[[0,2,2,1],[2,1,3,0],[1,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,2,2],[1,0,3,1]],[[0,2,2,1],[2,1,3,0],[1,3,2,2],[1,0,2,2]],[[0,2,2,1],[2,1,3,0],[1,4,3,0],[0,2,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,0],[0,3,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,0],[0,2,3,1]],[[0,3,2,1],[2,1,3,0],[1,3,3,1],[0,1,2,1]],[[0,2,3,1],[2,1,3,0],[1,3,3,1],[0,1,2,1]],[[0,2,2,2],[2,1,3,0],[1,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,1,4,0],[1,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,1,3,0],[1,4,3,1],[0,1,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,1],[0,1,2,2]],[[0,3,2,1],[2,1,3,0],[1,3,3,1],[0,2,1,1]],[[0,2,3,1],[2,1,3,0],[1,3,3,1],[0,2,1,1]],[[0,2,2,2],[2,1,3,0],[1,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,4,0],[1,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,3,0],[1,4,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,3,0],[1,3,4,1],[0,2,1,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,1],[0,3,1,1]],[[0,3,2,1],[2,1,3,0],[1,3,3,1],[1,0,2,1]],[[0,2,3,1],[2,1,3,0],[1,3,3,1],[1,0,2,1]],[[0,2,2,2],[2,1,3,0],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,1,4,0],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,1,3,0],[1,4,3,1],[1,0,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,4,1],[1,0,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,1],[1,0,3,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,1],[1,0,2,2]],[[0,3,2,1],[2,1,3,0],[1,3,3,1],[1,1,1,1]],[[0,2,3,1],[2,1,3,0],[1,3,3,1],[1,1,1,1]],[[0,2,2,2],[2,1,3,0],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,4,0],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,3,0],[1,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,3,0],[1,3,4,1],[1,1,1,1]],[[0,3,2,1],[2,1,3,0],[1,3,3,2],[0,0,2,1]],[[0,2,3,1],[2,1,3,0],[1,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,1,3,0],[1,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,4,0],[1,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,2],[0,0,2,2]],[[0,3,2,1],[2,1,3,0],[1,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,1,3,0],[1,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,1,3,0],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,4,0],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,0],[1,4,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,0],[1,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,2],[0,1,1,2]],[[0,3,2,1],[2,1,3,0],[1,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,1,3,0],[1,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,1,3,0],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,4,0],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,0],[1,4,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,0],[1,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,0],[1,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,1,3,0],[1,3,3,2],[0,1,3,0]],[[0,3,2,1],[2,1,3,0],[1,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,1,3,0],[1,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,1,3,0],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,1,4,0],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,1,3,0],[1,4,3,2],[0,2,0,1]],[[0,2,2,1],[2,1,3,0],[1,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,2],[0,3,0,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,2],[0,2,0,2]],[[0,3,2,1],[2,1,3,0],[1,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,1,3,0],[1,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,1,3,0],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,1,4,0],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,1,3,0],[1,4,3,2],[0,2,1,0]],[[0,2,2,1],[2,1,3,0],[1,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,1,3,0],[1,3,3,3],[0,2,1,0]],[[0,2,2,1],[2,1,3,0],[1,3,3,2],[0,3,1,0]],[[0,3,2,1],[2,1,3,0],[1,3,3,2],[1,0,1,1]],[[0,2,3,1],[2,1,3,0],[1,3,3,2],[1,0,1,1]],[[0,2,2,2],[2,1,3,0],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,4,0],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,3,0],[1,4,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,3,0],[1,3,4,2],[1,0,1,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,3],[1,0,1,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,2],[1,0,1,2]],[[0,3,2,1],[2,1,3,0],[1,3,3,2],[1,0,2,0]],[[0,2,3,1],[2,1,3,0],[1,3,3,2],[1,0,2,0]],[[0,2,2,2],[2,1,3,0],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,4,0],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,3,0],[1,4,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,3,0],[1,3,4,2],[1,0,2,0]],[[0,2,2,1],[2,1,3,0],[1,3,3,3],[1,0,2,0]],[[0,2,2,1],[2,1,3,0],[1,3,3,2],[1,0,3,0]],[[0,3,2,1],[2,1,3,0],[1,3,3,2],[1,1,0,1]],[[0,2,3,1],[2,1,3,0],[1,3,3,2],[1,1,0,1]],[[0,2,2,2],[2,1,3,0],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,4,0],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,3,0],[1,4,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,3,0],[1,3,4,2],[1,1,0,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,3],[1,1,0,1]],[[0,2,2,1],[2,1,3,0],[1,3,3,2],[1,1,0,2]],[[0,3,2,1],[2,1,3,0],[1,3,3,2],[1,1,1,0]],[[0,2,3,1],[2,1,3,0],[1,3,3,2],[1,1,1,0]],[[0,2,2,2],[2,1,3,0],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,1,4,0],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,1,3,0],[1,4,3,2],[1,1,1,0]],[[0,2,2,1],[2,1,3,0],[1,3,4,2],[1,1,1,0]],[[0,2,2,1],[2,1,3,0],[1,3,3,3],[1,1,1,0]],[[0,2,2,1],[3,1,3,0],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[3,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[2,0,2,3],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[2,0,2,2],[2,2,2,1]],[[0,2,2,1],[2,1,3,0],[2,0,2,2],[1,3,2,1]],[[0,2,2,1],[2,1,3,0],[2,0,2,2],[1,2,3,1]],[[0,2,2,1],[2,1,3,0],[2,0,2,2],[1,2,2,2]],[[0,3,2,1],[2,1,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,3,1],[2,1,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,2],[2,1,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[3,1,3,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,1,4,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[3,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[2,0,4,1],[1,2,2,1]],[[0,2,2,1],[2,1,3,0],[2,0,3,1],[2,2,2,1]],[[0,2,2,1],[2,1,3,0],[2,0,3,1],[1,3,2,1]],[[0,2,2,1],[2,1,3,0],[2,0,3,1],[1,2,3,1]],[[0,2,2,1],[2,1,3,0],[2,0,3,1],[1,2,2,2]],[[0,3,2,1],[2,1,3,0],[2,0,3,2],[1,2,1,1]],[[0,2,3,1],[2,1,3,0],[2,0,3,2],[1,2,1,1]],[[0,2,2,2],[2,1,3,0],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,4,0],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,3,0],[2,0,4,2],[1,2,1,1]],[[0,2,2,1],[2,1,3,0],[2,0,3,3],[1,2,1,1]],[[0,2,2,1],[2,1,3,0],[2,0,3,2],[1,2,1,2]],[[0,3,2,1],[2,1,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,1,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,1,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[3,1,3,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,4,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,0],[3,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,0],[2,0,4,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,0],[2,0,3,3],[1,2,2,0]],[[0,2,2,1],[2,1,3,0],[2,0,3,2],[2,2,2,0]],[[0,2,2,1],[2,1,3,0],[2,0,3,2],[1,3,2,0]],[[0,2,2,1],[2,1,3,0],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[2,2,3,0],[0,2,3,2],[0,1,2,2]],[[1,2,2,0],[2,2,3,0],[0,2,3,2],[0,1,3,1]],[[1,2,2,0],[2,2,3,0],[0,2,4,2],[0,1,2,1]],[[1,2,2,0],[2,2,3,0],[0,1,3,2],[0,2,2,2]],[[1,2,2,0],[2,2,3,0],[0,1,3,2],[0,2,3,1]],[[1,2,2,0],[2,2,3,0],[0,1,4,2],[0,2,2,1]],[[1,2,2,0],[2,2,2,2],[3,3,3,1],[1,0,0,0]],[[1,2,2,0],[3,2,2,2],[2,3,3,1],[1,0,0,0]],[[1,2,3,0],[2,2,2,2],[2,3,3,1],[1,0,0,0]],[[1,3,2,0],[2,2,2,2],[2,3,3,1],[1,0,0,0]],[[2,2,2,0],[2,2,2,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,0],[2,2,2,2],[3,3,3,0],[1,0,1,0]],[[1,2,2,0],[3,2,2,2],[2,3,3,0],[1,0,1,0]],[[1,2,3,0],[2,2,2,2],[2,3,3,0],[1,0,1,0]],[[1,3,2,0],[2,2,2,2],[2,3,3,0],[1,0,1,0]],[[2,2,2,0],[2,2,2,2],[2,3,3,0],[1,0,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,2,1],[1,0,1,0]],[[1,2,2,0],[3,2,2,2],[2,3,2,1],[1,0,1,0]],[[1,2,3,0],[2,2,2,2],[2,3,2,1],[1,0,1,0]],[[1,3,2,0],[2,2,2,2],[2,3,2,1],[1,0,1,0]],[[2,2,2,0],[2,2,2,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,2,1],[1,0,0,1]],[[1,2,2,0],[3,2,2,2],[2,3,2,1],[1,0,0,1]],[[1,2,3,0],[2,2,2,2],[2,3,2,1],[1,0,0,1]],[[1,3,2,0],[2,2,2,2],[2,3,2,1],[1,0,0,1]],[[2,2,2,0],[2,2,2,2],[2,3,2,1],[1,0,0,1]],[[1,2,2,0],[2,2,2,2],[2,3,2,0],[2,2,0,0]],[[1,2,2,0],[2,2,2,2],[3,3,2,0],[1,2,0,0]],[[1,2,2,0],[3,2,2,2],[2,3,2,0],[1,2,0,0]],[[1,3,2,0],[2,2,2,2],[2,3,2,0],[1,2,0,0]],[[2,2,2,0],[2,2,2,2],[2,3,2,0],[1,2,0,0]],[[1,2,2,0],[2,2,2,2],[2,3,2,0],[2,1,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,2,0],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[2,3,2,0],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[2,3,2,0],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[2,3,2,0],[1,1,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,2,0],[1,0,1,1]],[[1,2,2,0],[3,2,2,2],[2,3,2,0],[1,0,1,1]],[[1,2,3,0],[2,2,2,2],[2,3,2,0],[1,0,1,1]],[[1,3,2,0],[2,2,2,2],[2,3,2,0],[1,0,1,1]],[[2,2,2,0],[2,2,2,2],[2,3,2,0],[1,0,1,1]],[[0,3,2,1],[2,1,3,1],[0,2,1,2],[1,2,2,1]],[[0,2,3,1],[2,1,3,1],[0,2,1,2],[1,2,2,1]],[[0,2,2,2],[2,1,3,1],[0,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,4,1],[0,2,1,2],[1,2,2,1]],[[0,3,2,1],[2,1,3,1],[0,2,2,2],[1,2,1,1]],[[0,2,3,1],[2,1,3,1],[0,2,2,2],[1,2,1,1]],[[0,2,2,2],[2,1,3,1],[0,2,2,2],[1,2,1,1]],[[0,2,2,1],[2,1,4,1],[0,2,2,2],[1,2,1,1]],[[0,3,2,1],[2,1,3,1],[0,2,2,2],[1,2,2,0]],[[0,2,3,1],[2,1,3,1],[0,2,2,2],[1,2,2,0]],[[0,2,2,2],[2,1,3,1],[0,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,4,1],[0,2,2,2],[1,2,2,0]],[[0,3,2,1],[2,1,3,1],[0,2,3,0],[1,2,2,1]],[[0,2,3,1],[2,1,3,1],[0,2,3,0],[1,2,2,1]],[[0,2,2,2],[2,1,3,1],[0,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,1,4,1],[0,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,1,3,1],[0,2,4,0],[1,2,2,1]],[[0,2,2,1],[2,1,3,1],[0,2,3,0],[2,2,2,1]],[[0,2,2,1],[2,1,3,1],[0,2,3,0],[1,3,2,1]],[[0,2,2,1],[2,1,3,1],[0,2,3,0],[1,2,3,1]],[[0,2,2,1],[2,1,3,1],[0,2,3,0],[1,2,2,2]],[[0,3,2,1],[2,1,3,1],[0,2,3,1],[1,2,1,1]],[[0,2,3,1],[2,1,3,1],[0,2,3,1],[1,2,1,1]],[[0,2,2,2],[2,1,3,1],[0,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,4,1],[0,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,3,1],[0,2,4,1],[1,2,1,1]],[[0,3,2,1],[2,1,3,1],[0,2,3,1],[1,2,2,0]],[[0,2,3,1],[2,1,3,1],[0,2,3,1],[1,2,2,0]],[[0,2,2,2],[2,1,3,1],[0,2,3,1],[1,2,2,0]],[[0,2,2,1],[2,1,4,1],[0,2,3,1],[1,2,2,0]],[[0,2,2,1],[2,1,3,1],[0,2,4,1],[1,2,2,0]],[[0,2,2,1],[2,1,3,1],[0,2,3,1],[2,2,2,0]],[[0,2,2,1],[2,1,3,1],[0,2,3,1],[1,3,2,0]],[[0,2,2,1],[2,1,3,1],[0,2,3,1],[1,2,3,0]],[[1,2,2,0],[2,2,2,2],[3,3,2,0],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,3,2,0],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,3,2,0],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,3,2,0],[0,2,1,0]],[[0,3,2,1],[2,1,3,1],[0,3,0,2],[1,2,2,1]],[[0,2,3,1],[2,1,3,1],[0,3,0,2],[1,2,2,1]],[[0,2,2,2],[2,1,3,1],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,4,1],[0,3,0,2],[1,2,2,1]],[[0,3,2,1],[2,1,3,1],[0,3,1,2],[1,1,2,1]],[[0,2,3,1],[2,1,3,1],[0,3,1,2],[1,1,2,1]],[[0,2,2,2],[2,1,3,1],[0,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,1,4,1],[0,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,1,3,1],[0,4,2,0],[1,2,2,1]],[[0,2,2,1],[2,1,3,1],[0,3,2,0],[2,2,2,1]],[[0,2,2,1],[2,1,3,1],[0,3,2,0],[1,3,2,1]],[[0,2,2,1],[2,1,3,1],[0,3,2,0],[1,2,3,1]],[[0,2,2,1],[2,1,3,1],[0,3,2,0],[1,2,2,2]],[[0,2,2,1],[2,1,3,1],[0,4,2,1],[1,2,2,0]],[[0,2,2,1],[2,1,3,1],[0,3,2,1],[2,2,2,0]],[[0,2,2,1],[2,1,3,1],[0,3,2,1],[1,3,2,0]],[[0,2,2,1],[2,1,3,1],[0,3,2,1],[1,2,3,0]],[[0,3,2,1],[2,1,3,1],[0,3,2,2],[1,0,2,1]],[[0,2,3,1],[2,1,3,1],[0,3,2,2],[1,0,2,1]],[[0,2,2,2],[2,1,3,1],[0,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,1,4,1],[0,3,2,2],[1,0,2,1]],[[0,3,2,1],[2,1,3,1],[0,3,2,2],[1,1,1,1]],[[0,2,3,1],[2,1,3,1],[0,3,2,2],[1,1,1,1]],[[0,2,2,2],[2,1,3,1],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,1,4,1],[0,3,2,2],[1,1,1,1]],[[0,3,2,1],[2,1,3,1],[0,3,2,2],[1,1,2,0]],[[0,2,3,1],[2,1,3,1],[0,3,2,2],[1,1,2,0]],[[0,2,2,2],[2,1,3,1],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,1,4,1],[0,3,2,2],[1,1,2,0]],[[0,3,2,1],[2,1,3,1],[0,3,2,2],[1,2,0,1]],[[0,2,3,1],[2,1,3,1],[0,3,2,2],[1,2,0,1]],[[0,2,2,2],[2,1,3,1],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,1,4,1],[0,3,2,2],[1,2,0,1]],[[0,3,2,1],[2,1,3,1],[0,3,2,2],[1,2,1,0]],[[0,2,3,1],[2,1,3,1],[0,3,2,2],[1,2,1,0]],[[0,2,2,2],[2,1,3,1],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,1,4,1],[0,3,2,2],[1,2,1,0]],[[0,3,2,1],[2,1,3,1],[0,3,3,0],[1,1,2,1]],[[0,2,3,1],[2,1,3,1],[0,3,3,0],[1,1,2,1]],[[0,2,2,2],[2,1,3,1],[0,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,1,4,1],[0,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,1,3,1],[0,4,3,0],[1,1,2,1]],[[0,2,2,1],[2,1,3,1],[0,3,4,0],[1,1,2,1]],[[0,2,2,1],[2,1,3,1],[0,3,3,0],[1,1,3,1]],[[0,2,2,1],[2,1,3,1],[0,3,3,0],[1,1,2,2]],[[0,3,2,1],[2,1,3,1],[0,3,3,0],[1,2,1,1]],[[0,2,3,1],[2,1,3,1],[0,3,3,0],[1,2,1,1]],[[0,2,2,2],[2,1,3,1],[0,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,1,4,1],[0,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,1,3,1],[0,4,3,0],[1,2,1,1]],[[0,2,2,1],[2,1,3,1],[0,3,4,0],[1,2,1,1]],[[0,2,2,1],[2,1,3,1],[0,3,3,0],[2,2,1,1]],[[0,2,2,1],[2,1,3,1],[0,3,3,0],[1,3,1,1]],[[0,3,2,1],[2,1,3,1],[0,3,3,1],[1,0,2,1]],[[0,2,3,1],[2,1,3,1],[0,3,3,1],[1,0,2,1]],[[0,2,2,2],[2,1,3,1],[0,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,1,4,1],[0,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,1,3,1],[0,3,4,1],[1,0,2,1]],[[0,3,2,1],[2,1,3,1],[0,3,3,1],[1,1,1,1]],[[0,2,3,1],[2,1,3,1],[0,3,3,1],[1,1,1,1]],[[0,2,2,2],[2,1,3,1],[0,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,4,1],[0,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,3,1],[0,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,3,1],[0,3,4,1],[1,1,1,1]],[[0,3,2,1],[2,1,3,1],[0,3,3,1],[1,1,2,0]],[[0,2,3,1],[2,1,3,1],[0,3,3,1],[1,1,2,0]],[[0,2,2,2],[2,1,3,1],[0,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,1,4,1],[0,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,1,3,1],[0,4,3,1],[1,1,2,0]],[[0,2,2,1],[2,1,3,1],[0,3,4,1],[1,1,2,0]],[[0,2,2,1],[2,1,3,1],[0,3,3,1],[1,1,3,0]],[[0,3,2,1],[2,1,3,1],[0,3,3,1],[1,2,0,1]],[[0,2,3,1],[2,1,3,1],[0,3,3,1],[1,2,0,1]],[[0,2,2,2],[2,1,3,1],[0,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,1,4,1],[0,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,1,3,1],[0,4,3,1],[1,2,0,1]],[[0,2,2,1],[2,1,3,1],[0,3,4,1],[1,2,0,1]],[[0,2,2,1],[2,1,3,1],[0,3,3,1],[2,2,0,1]],[[0,2,2,1],[2,1,3,1],[0,3,3,1],[1,3,0,1]],[[0,3,2,1],[2,1,3,1],[0,3,3,1],[1,2,1,0]],[[0,2,3,1],[2,1,3,1],[0,3,3,1],[1,2,1,0]],[[0,2,2,2],[2,1,3,1],[0,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,1,4,1],[0,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,1,3,1],[0,4,3,1],[1,2,1,0]],[[0,2,2,1],[2,1,3,1],[0,3,4,1],[1,2,1,0]],[[0,2,2,1],[2,1,3,1],[0,3,3,1],[2,2,1,0]],[[0,2,2,1],[2,1,3,1],[0,3,3,1],[1,3,1,0]],[[0,3,2,1],[2,1,3,1],[0,3,3,2],[1,1,0,1]],[[0,2,3,1],[2,1,3,1],[0,3,3,2],[1,1,0,1]],[[0,2,2,2],[2,1,3,1],[0,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,4,1],[0,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,2,2,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,0],[3,2,2,2],[2,3,1,2],[1,0,1,0]],[[1,2,3,0],[2,2,2,2],[2,3,1,2],[1,0,1,0]],[[1,3,2,0],[2,2,2,2],[2,3,1,2],[1,0,1,0]],[[2,2,2,0],[2,2,2,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,1,2],[1,0,0,1]],[[1,2,2,0],[3,2,2,2],[2,3,1,2],[1,0,0,1]],[[1,2,3,0],[2,2,2,2],[2,3,1,2],[1,0,0,1]],[[1,3,2,0],[2,2,2,2],[2,3,1,2],[1,0,0,1]],[[2,2,2,0],[2,2,2,2],[2,3,1,2],[1,0,0,1]],[[0,3,2,1],[2,1,3,1],[1,2,1,2],[0,2,2,1]],[[0,2,3,1],[2,1,3,1],[1,2,1,2],[0,2,2,1]],[[0,2,2,2],[2,1,3,1],[1,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,4,1],[1,2,1,2],[0,2,2,1]],[[0,3,2,1],[2,1,3,1],[1,2,2,2],[0,2,1,1]],[[0,2,3,1],[2,1,3,1],[1,2,2,2],[0,2,1,1]],[[0,2,2,2],[2,1,3,1],[1,2,2,2],[0,2,1,1]],[[0,2,2,1],[2,1,4,1],[1,2,2,2],[0,2,1,1]],[[0,3,2,1],[2,1,3,1],[1,2,2,2],[0,2,2,0]],[[0,2,3,1],[2,1,3,1],[1,2,2,2],[0,2,2,0]],[[0,2,2,2],[2,1,3,1],[1,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,4,1],[1,2,2,2],[0,2,2,0]],[[0,3,2,1],[2,1,3,1],[1,2,3,0],[0,2,2,1]],[[0,2,3,1],[2,1,3,1],[1,2,3,0],[0,2,2,1]],[[0,2,2,2],[2,1,3,1],[1,2,3,0],[0,2,2,1]],[[0,2,2,1],[2,1,4,1],[1,2,3,0],[0,2,2,1]],[[0,2,2,1],[2,1,3,1],[1,2,4,0],[0,2,2,1]],[[0,2,2,1],[2,1,3,1],[1,2,3,0],[0,3,2,1]],[[0,2,2,1],[2,1,3,1],[1,2,3,0],[0,2,3,1]],[[0,2,2,1],[2,1,3,1],[1,2,3,0],[0,2,2,2]],[[0,3,2,1],[2,1,3,1],[1,2,3,1],[0,2,1,1]],[[0,2,3,1],[2,1,3,1],[1,2,3,1],[0,2,1,1]],[[0,2,2,2],[2,1,3,1],[1,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,4,1],[1,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,3,1],[1,2,4,1],[0,2,1,1]],[[0,3,2,1],[2,1,3,1],[1,2,3,1],[0,2,2,0]],[[0,2,3,1],[2,1,3,1],[1,2,3,1],[0,2,2,0]],[[0,2,2,2],[2,1,3,1],[1,2,3,1],[0,2,2,0]],[[0,2,2,1],[2,1,4,1],[1,2,3,1],[0,2,2,0]],[[0,2,2,1],[2,1,3,1],[1,2,4,1],[0,2,2,0]],[[0,2,2,1],[2,1,3,1],[1,2,3,1],[0,3,2,0]],[[0,2,2,1],[2,1,3,1],[1,2,3,1],[0,2,3,0]],[[1,2,2,0],[2,2,2,2],[2,3,1,1],[2,2,0,0]],[[1,2,2,0],[2,2,2,2],[3,3,1,1],[1,2,0,0]],[[1,2,2,0],[3,2,2,2],[2,3,1,1],[1,2,0,0]],[[1,2,3,0],[2,2,2,2],[2,3,1,1],[1,2,0,0]],[[1,3,2,0],[2,2,2,2],[2,3,1,1],[1,2,0,0]],[[2,2,2,0],[2,2,2,2],[2,3,1,1],[1,2,0,0]],[[1,2,2,0],[2,2,2,2],[2,3,1,1],[2,1,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,1,1],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[2,3,1,1],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[2,3,1,1],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[2,3,1,1],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[2,3,1,1],[1,1,1,0]],[[1,2,2,0],[2,2,2,2],[2,3,1,1],[2,1,0,1]],[[1,2,2,0],[2,2,2,2],[3,3,1,1],[1,1,0,1]],[[1,2,2,0],[3,2,2,2],[2,3,1,1],[1,1,0,1]],[[0,3,2,1],[2,1,3,1],[1,3,0,2],[0,2,2,1]],[[0,2,3,1],[2,1,3,1],[1,3,0,2],[0,2,2,1]],[[0,2,2,2],[2,1,3,1],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,1,4,1],[1,3,0,2],[0,2,2,1]],[[0,3,2,1],[2,1,3,1],[1,3,1,2],[0,1,2,1]],[[0,2,3,1],[2,1,3,1],[1,3,1,2],[0,1,2,1]],[[0,2,2,2],[2,1,3,1],[1,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,1,4,1],[1,3,1,2],[0,1,2,1]],[[0,3,2,1],[2,1,3,1],[1,3,1,2],[1,0,2,1]],[[0,2,3,1],[2,1,3,1],[1,3,1,2],[1,0,2,1]],[[0,2,2,2],[2,1,3,1],[1,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,1,4,1],[1,3,1,2],[1,0,2,1]],[[1,2,3,0],[2,2,2,2],[2,3,1,1],[1,1,0,1]],[[1,3,2,0],[2,2,2,2],[2,3,1,1],[1,1,0,1]],[[2,2,2,0],[2,2,2,2],[2,3,1,1],[1,1,0,1]],[[0,2,2,1],[2,1,3,1],[1,4,2,0],[0,2,2,1]],[[0,2,2,1],[2,1,3,1],[1,3,2,0],[0,3,2,1]],[[0,2,2,1],[2,1,3,1],[1,3,2,0],[0,2,3,1]],[[0,2,2,1],[2,1,3,1],[1,3,2,0],[0,2,2,2]],[[0,2,2,1],[2,1,3,1],[1,4,2,1],[0,2,2,0]],[[0,2,2,1],[2,1,3,1],[1,3,2,1],[0,3,2,0]],[[0,2,2,1],[2,1,3,1],[1,3,2,1],[0,2,3,0]],[[0,3,2,1],[2,1,3,1],[1,3,2,2],[0,0,2,1]],[[0,2,3,1],[2,1,3,1],[1,3,2,2],[0,0,2,1]],[[0,2,2,2],[2,1,3,1],[1,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,1,4,1],[1,3,2,2],[0,0,2,1]],[[0,3,2,1],[2,1,3,1],[1,3,2,2],[0,1,1,1]],[[0,2,3,1],[2,1,3,1],[1,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,1,3,1],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,1,4,1],[1,3,2,2],[0,1,1,1]],[[0,3,2,1],[2,1,3,1],[1,3,2,2],[0,1,2,0]],[[0,2,3,1],[2,1,3,1],[1,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,1,3,1],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,1,4,1],[1,3,2,2],[0,1,2,0]],[[0,3,2,1],[2,1,3,1],[1,3,2,2],[0,2,0,1]],[[0,2,3,1],[2,1,3,1],[1,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,1,3,1],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,1,4,1],[1,3,2,2],[0,2,0,1]],[[0,3,2,1],[2,1,3,1],[1,3,2,2],[0,2,1,0]],[[0,2,3,1],[2,1,3,1],[1,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,1,3,1],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,1,4,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,1,1],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,3,1,1],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,3,1,1],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,3,1,1],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,3,1,1],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,1,1],[0,2,0,1]],[[1,2,2,0],[3,2,2,2],[2,3,1,1],[0,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,3,1,1],[0,2,0,1]],[[0,3,2,1],[2,1,3,1],[1,3,2,2],[1,0,1,1]],[[0,2,3,1],[2,1,3,1],[1,3,2,2],[1,0,1,1]],[[0,2,2,2],[2,1,3,1],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,1,4,1],[1,3,2,2],[1,0,1,1]],[[0,3,2,1],[2,1,3,1],[1,3,2,2],[1,0,2,0]],[[0,2,3,1],[2,1,3,1],[1,3,2,2],[1,0,2,0]],[[0,2,2,2],[2,1,3,1],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,1,4,1],[1,3,2,2],[1,0,2,0]],[[0,3,2,1],[2,1,3,1],[1,3,2,2],[1,1,0,1]],[[0,2,3,1],[2,1,3,1],[1,3,2,2],[1,1,0,1]],[[0,2,2,2],[2,1,3,1],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,1,4,1],[1,3,2,2],[1,1,0,1]],[[0,3,2,1],[2,1,3,1],[1,3,2,2],[1,1,1,0]],[[0,2,3,1],[2,1,3,1],[1,3,2,2],[1,1,1,0]],[[0,2,2,2],[2,1,3,1],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,1,4,1],[1,3,2,2],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[2,3,1,1],[0,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,3,1,1],[0,2,0,1]],[[1,2,2,0],[2,2,2,2],[2,3,1,0],[2,2,0,1]],[[1,2,2,0],[2,2,2,2],[3,3,1,0],[1,2,0,1]],[[1,2,2,0],[3,2,2,2],[2,3,1,0],[1,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,3,1,0],[1,2,0,1]],[[1,3,2,0],[2,2,2,2],[2,3,1,0],[1,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,3,1,0],[1,2,0,1]],[[1,2,2,0],[2,2,2,2],[2,3,1,0],[2,1,1,1]],[[1,2,2,0],[2,2,2,2],[3,3,1,0],[1,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,3,1,0],[1,1,1,1]],[[0,3,2,1],[2,1,3,1],[1,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,1,3,1],[1,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,1,3,1],[1,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,1,4,1],[1,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,1,3,1],[1,4,3,0],[0,1,2,1]],[[0,2,2,1],[2,1,3,1],[1,3,4,0],[0,1,2,1]],[[0,2,2,1],[2,1,3,1],[1,3,3,0],[0,1,3,1]],[[0,2,2,1],[2,1,3,1],[1,3,3,0],[0,1,2,2]],[[0,3,2,1],[2,1,3,1],[1,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,1,3,1],[1,3,3,0],[0,2,1,1]],[[0,2,2,2],[2,1,3,1],[1,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,1,4,1],[1,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,1,3,1],[1,4,3,0],[0,2,1,1]],[[0,2,2,1],[2,1,3,1],[1,3,4,0],[0,2,1,1]],[[0,2,2,1],[2,1,3,1],[1,3,3,0],[0,3,1,1]],[[0,3,2,1],[2,1,3,1],[1,3,3,0],[1,0,2,1]],[[0,2,3,1],[2,1,3,1],[1,3,3,0],[1,0,2,1]],[[0,2,2,2],[2,1,3,1],[1,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,1,4,1],[1,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,1,3,1],[1,4,3,0],[1,0,2,1]],[[0,2,2,1],[2,1,3,1],[1,3,4,0],[1,0,2,1]],[[0,2,2,1],[2,1,3,1],[1,3,3,0],[1,0,3,1]],[[0,2,2,1],[2,1,3,1],[1,3,3,0],[1,0,2,2]],[[0,3,2,1],[2,1,3,1],[1,3,3,0],[1,1,1,1]],[[0,2,3,1],[2,1,3,1],[1,3,3,0],[1,1,1,1]],[[0,2,2,2],[2,1,3,1],[1,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,1,4,1],[1,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,1,3,1],[1,4,3,0],[1,1,1,1]],[[0,2,2,1],[2,1,3,1],[1,3,4,0],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[2,3,1,0],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[2,3,1,0],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[2,3,1,0],[1,1,1,1]],[[0,3,2,1],[2,1,3,1],[1,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,1,3,1],[1,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,1,3,1],[1,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,1,4,1],[1,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,1,3,1],[1,3,4,1],[0,0,2,1]],[[0,3,2,1],[2,1,3,1],[1,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,1,3,1],[1,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,1,3,1],[1,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,1,4,1],[1,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,1,3,1],[1,4,3,1],[0,1,1,1]],[[0,2,2,1],[2,1,3,1],[1,3,4,1],[0,1,1,1]],[[0,3,2,1],[2,1,3,1],[1,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,1,3,1],[1,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,1,3,1],[1,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,1,4,1],[1,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,1,3,1],[1,4,3,1],[0,1,2,0]],[[0,2,2,1],[2,1,3,1],[1,3,4,1],[0,1,2,0]],[[0,2,2,1],[2,1,3,1],[1,3,3,1],[0,1,3,0]],[[0,3,2,1],[2,1,3,1],[1,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,1,3,1],[1,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,1,3,1],[1,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,1,4,1],[1,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,1,3,1],[1,4,3,1],[0,2,0,1]],[[0,2,2,1],[2,1,3,1],[1,3,4,1],[0,2,0,1]],[[0,2,2,1],[2,1,3,1],[1,3,3,1],[0,3,0,1]],[[0,3,2,1],[2,1,3,1],[1,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,1,3,1],[1,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,1,3,1],[1,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,1,4,1],[1,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,1,3,1],[1,4,3,1],[0,2,1,0]],[[0,2,2,1],[2,1,3,1],[1,3,4,1],[0,2,1,0]],[[0,2,2,1],[2,1,3,1],[1,3,3,1],[0,3,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,1,0],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[2,3,1,0],[0,2,1,1]],[[1,2,3,0],[2,2,2,2],[2,3,1,0],[0,2,1,1]],[[1,3,2,0],[2,2,2,2],[2,3,1,0],[0,2,1,1]],[[2,2,2,0],[2,2,2,2],[2,3,1,0],[0,2,1,1]],[[0,3,2,1],[2,1,3,1],[1,3,3,1],[1,0,1,1]],[[0,2,3,1],[2,1,3,1],[1,3,3,1],[1,0,1,1]],[[0,2,2,2],[2,1,3,1],[1,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,1,4,1],[1,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,1,3,1],[1,4,3,1],[1,0,1,1]],[[0,2,2,1],[2,1,3,1],[1,3,4,1],[1,0,1,1]],[[0,3,2,1],[2,1,3,1],[1,3,3,1],[1,0,2,0]],[[0,2,3,1],[2,1,3,1],[1,3,3,1],[1,0,2,0]],[[0,2,2,2],[2,1,3,1],[1,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,1,4,1],[1,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,1,3,1],[1,4,3,1],[1,0,2,0]],[[0,2,2,1],[2,1,3,1],[1,3,4,1],[1,0,2,0]],[[0,2,2,1],[2,1,3,1],[1,3,3,1],[1,0,3,0]],[[0,3,2,1],[2,1,3,1],[1,3,3,1],[1,1,0,1]],[[0,2,3,1],[2,1,3,1],[1,3,3,1],[1,1,0,1]],[[0,2,2,2],[2,1,3,1],[1,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,1,4,1],[1,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,1,3,1],[1,4,3,1],[1,1,0,1]],[[0,2,2,1],[2,1,3,1],[1,3,4,1],[1,1,0,1]],[[0,3,2,1],[2,1,3,1],[1,3,3,1],[1,1,1,0]],[[0,2,3,1],[2,1,3,1],[1,3,3,1],[1,1,1,0]],[[0,2,2,2],[2,1,3,1],[1,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,1,4,1],[1,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,1,3,1],[1,4,3,1],[1,1,1,0]],[[0,2,2,1],[2,1,3,1],[1,3,4,1],[1,1,1,0]],[[1,2,2,0],[2,2,2,2],[2,3,0,2],[2,2,0,0]],[[1,2,2,0],[2,2,2,2],[3,3,0,2],[1,2,0,0]],[[1,2,2,0],[3,2,2,2],[2,3,0,2],[1,2,0,0]],[[1,2,3,0],[2,2,2,2],[2,3,0,2],[1,2,0,0]],[[1,3,2,0],[2,2,2,2],[2,3,0,2],[1,2,0,0]],[[2,2,2,0],[2,2,2,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,0],[2,2,2,2],[2,3,0,2],[2,1,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,0,2],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[2,3,0,2],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[2,3,0,2],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[2,3,0,2],[1,1,1,0]],[[0,3,2,1],[2,1,3,1],[1,3,3,2],[0,1,0,1]],[[0,2,3,1],[2,1,3,1],[1,3,3,2],[0,1,0,1]],[[0,2,2,2],[2,1,3,1],[1,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,1,4,1],[1,3,3,2],[0,1,0,1]],[[2,2,2,0],[2,2,2,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,0],[2,2,2,2],[2,3,0,2],[2,1,0,1]],[[1,2,2,0],[2,2,2,2],[3,3,0,2],[1,1,0,1]],[[1,2,2,0],[3,2,2,2],[2,3,0,2],[1,1,0,1]],[[1,2,3,0],[2,2,2,2],[2,3,0,2],[1,1,0,1]],[[1,3,2,0],[2,2,2,2],[2,3,0,2],[1,1,0,1]],[[2,2,2,0],[2,2,2,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,0],[2,2,2,2],[3,3,0,2],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,3,0,2],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,3,0,2],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,3,0,2],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,0,2],[0,2,0,1]],[[1,2,2,0],[3,2,2,2],[2,3,0,2],[0,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,3,0,2],[0,2,0,1]],[[0,3,2,1],[2,1,3,1],[1,3,3,2],[1,0,0,1]],[[0,2,3,1],[2,1,3,1],[1,3,3,2],[1,0,0,1]],[[0,2,2,2],[2,1,3,1],[1,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,1,4,1],[1,3,3,2],[1,0,0,1]],[[1,3,2,0],[2,2,2,2],[2,3,0,2],[0,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,0],[2,2,2,2],[2,3,0,1],[2,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,3,0,1],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,3,0,1],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,3,0,1],[1,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,3,0,1],[1,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,3,0,1],[1,2,1,0]],[[1,2,2,0],[2,2,2,2],[2,3,0,1],[2,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,3,0,1],[1,1,2,0]],[[1,2,2,0],[3,2,2,2],[2,3,0,1],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[2,3,0,1],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[2,3,0,1],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[2,3,0,1],[1,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,3,0,1],[0,2,2,0]],[[1,2,2,0],[3,2,2,2],[2,3,0,1],[0,2,2,0]],[[1,2,3,0],[2,2,2,2],[2,3,0,1],[0,2,2,0]],[[1,3,2,0],[2,2,2,2],[2,3,0,1],[0,2,2,0]],[[2,2,2,0],[2,2,2,2],[2,3,0,1],[0,2,2,0]],[[1,2,2,0],[2,2,2,2],[2,3,0,0],[2,2,2,0]],[[1,2,2,0],[2,2,2,2],[3,3,0,0],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[2,3,0,0],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[2,3,0,0],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[2,3,0,0],[1,2,2,0]],[[1,2,2,0],[2,2,2,2],[2,3,0,0],[2,2,1,1]],[[1,2,2,0],[2,2,2,2],[3,3,0,0],[1,2,1,1]],[[1,2,2,0],[3,2,2,2],[2,3,0,0],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[2,3,0,0],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[2,3,0,0],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[2,3,0,0],[1,2,1,1]],[[1,2,2,0],[2,2,2,2],[2,3,0,0],[2,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,3,0,0],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[2,3,0,0],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[2,3,0,0],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[2,3,0,0],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[2,3,0,0],[1,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,3,0,0],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[2,3,0,0],[0,2,2,1]],[[1,2,3,0],[2,2,2,2],[2,3,0,0],[0,2,2,1]],[[1,3,2,0],[2,2,2,2],[2,3,0,0],[0,2,2,1]],[[2,2,2,0],[2,2,2,2],[2,3,0,0],[0,2,2,1]],[[0,3,2,1],[2,1,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,1,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,1,3,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,4,1],[2,0,1,2],[1,2,2,1]],[[0,3,2,1],[2,1,3,1],[2,0,2,2],[1,2,1,1]],[[0,2,3,1],[2,1,3,1],[2,0,2,2],[1,2,1,1]],[[0,2,2,2],[2,1,3,1],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,1,4,1],[2,0,2,2],[1,2,1,1]],[[0,3,2,1],[2,1,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,3,1],[2,1,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,1,3,1],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,4,1],[2,0,2,2],[1,2,2,0]],[[0,3,2,1],[2,1,3,1],[2,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,1,3,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,1,3,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[3,1,3,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,1,4,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,1,3,1],[3,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,1,3,1],[2,0,4,0],[1,2,2,1]],[[0,2,2,1],[2,1,3,1],[2,0,3,0],[2,2,2,1]],[[0,2,2,1],[2,1,3,1],[2,0,3,0],[1,3,2,1]],[[0,2,2,1],[2,1,3,1],[2,0,3,0],[1,2,3,1]],[[0,2,2,1],[2,1,3,1],[2,0,3,0],[1,2,2,2]],[[0,3,2,1],[2,1,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,1,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,1,3,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,4,1],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,3,1],[2,0,4,1],[1,2,1,1]],[[0,3,2,1],[2,1,3,1],[2,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,1,3,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,1,3,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[3,1,3,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,1,4,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,1,3,1],[3,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,1,3,1],[2,0,4,1],[1,2,2,0]],[[0,2,2,1],[2,1,3,1],[2,0,3,1],[2,2,2,0]],[[0,2,2,1],[2,1,3,1],[2,0,3,1],[1,3,2,0]],[[0,2,2,1],[2,1,3,1],[2,0,3,1],[1,2,3,0]],[[0,3,2,1],[2,1,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,3,1],[2,1,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,2],[2,1,3,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,4,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[2,2,2,2],[2,2,3,1],[2,1,0,0]],[[1,2,2,0],[2,2,2,2],[3,2,3,1],[1,1,0,0]],[[1,2,2,0],[3,2,2,2],[2,2,3,1],[1,1,0,0]],[[1,2,3,0],[2,2,2,2],[2,2,3,1],[1,1,0,0]],[[1,3,2,0],[2,2,2,2],[2,2,3,1],[1,1,0,0]],[[2,2,2,0],[2,2,2,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,0],[2,2,2,2],[3,2,3,1],[0,2,0,0]],[[1,2,2,0],[3,2,2,2],[2,2,3,1],[0,2,0,0]],[[1,2,3,0],[2,2,2,2],[2,2,3,1],[0,2,0,0]],[[1,3,2,0],[2,2,2,2],[2,2,3,1],[0,2,0,0]],[[2,2,2,0],[2,2,2,2],[2,2,3,1],[0,2,0,0]],[[1,2,2,0],[2,2,2,2],[2,2,3,0],[2,2,0,0]],[[1,2,2,0],[2,2,2,2],[3,2,3,0],[1,2,0,0]],[[1,2,2,0],[3,2,2,2],[2,2,3,0],[1,2,0,0]],[[1,2,3,0],[2,2,2,2],[2,2,3,0],[1,2,0,0]],[[1,3,2,0],[2,2,2,2],[2,2,3,0],[1,2,0,0]],[[2,2,2,0],[2,2,2,2],[2,2,3,0],[1,2,0,0]],[[1,2,2,0],[2,2,2,2],[2,2,3,0],[2,1,1,0]],[[1,2,2,0],[2,2,2,2],[3,2,3,0],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[2,2,3,0],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[2,2,3,0],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[2,2,3,0],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,0],[2,2,2,2],[2,2,3,0],[2,0,2,0]],[[1,2,2,0],[2,2,2,2],[3,2,3,0],[1,0,2,0]],[[1,2,2,0],[3,2,2,2],[2,2,3,0],[1,0,2,0]],[[1,2,3,0],[2,2,2,2],[2,2,3,0],[1,0,2,0]],[[1,3,2,0],[2,2,2,2],[2,2,3,0],[1,0,2,0]],[[2,2,2,0],[2,2,2,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,0],[2,2,2,2],[3,2,3,0],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,2,3,0],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,2,3,0],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,2,3,0],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,2,3,0],[0,1,2,0]],[[1,2,2,0],[3,2,2,2],[2,2,3,0],[0,1,2,0]],[[1,2,3,0],[2,2,2,2],[2,2,3,0],[0,1,2,0]],[[1,3,2,0],[2,2,2,2],[2,2,3,0],[0,1,2,0]],[[2,2,2,0],[2,2,2,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,0],[2,2,2,2],[2,2,2,1],[2,2,0,0]],[[1,2,2,0],[2,2,2,2],[3,2,2,1],[1,2,0,0]],[[1,2,2,0],[3,2,2,2],[2,2,2,1],[1,2,0,0]],[[1,2,3,0],[2,2,2,2],[2,2,2,1],[1,2,0,0]],[[1,3,2,0],[2,2,2,2],[2,2,2,1],[1,2,0,0]],[[2,2,2,0],[2,2,2,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,0],[2,2,2,2],[2,2,2,1],[2,1,1,0]],[[1,2,2,0],[2,2,2,2],[3,2,2,1],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[2,2,2,1],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[2,2,2,1],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[2,2,2,1],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,0],[2,2,2,2],[2,2,2,1],[2,1,0,1]],[[1,2,2,0],[2,2,2,2],[3,2,2,1],[1,1,0,1]],[[1,2,2,0],[3,2,2,2],[2,2,2,1],[1,1,0,1]],[[1,2,3,0],[2,2,2,2],[2,2,2,1],[1,1,0,1]],[[1,3,2,0],[2,2,2,2],[2,2,2,1],[1,1,0,1]],[[2,2,2,0],[2,2,2,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,0],[2,2,2,2],[2,2,2,1],[2,0,2,0]],[[1,2,2,0],[2,2,2,2],[3,2,2,1],[1,0,2,0]],[[1,2,2,0],[3,2,2,2],[2,2,2,1],[1,0,2,0]],[[1,2,3,0],[2,2,2,2],[2,2,2,1],[1,0,2,0]],[[1,3,2,0],[2,2,2,2],[2,2,2,1],[1,0,2,0]],[[2,2,2,0],[2,2,2,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,0],[2,2,2,2],[2,2,2,1],[2,0,1,1]],[[1,2,2,0],[2,2,2,2],[3,2,2,1],[1,0,1,1]],[[1,2,2,0],[3,2,2,2],[2,2,2,1],[1,0,1,1]],[[1,2,3,0],[2,2,2,2],[2,2,2,1],[1,0,1,1]],[[1,3,2,0],[2,2,2,2],[2,2,2,1],[1,0,1,1]],[[2,2,2,0],[2,2,2,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,0],[2,2,2,2],[3,2,2,1],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,2,2,1],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,2,2,1],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,2,2,1],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,2,2,1],[0,2,0,1]],[[1,2,2,0],[3,2,2,2],[2,2,2,1],[0,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,2,2,1],[0,2,0,1]],[[1,3,2,0],[2,2,2,2],[2,2,2,1],[0,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,0],[2,2,2,2],[3,2,2,1],[0,1,2,0]],[[1,2,2,0],[3,2,2,2],[2,2,2,1],[0,1,2,0]],[[1,2,3,0],[2,2,2,2],[2,2,2,1],[0,1,2,0]],[[1,3,2,0],[2,2,2,2],[2,2,2,1],[0,1,2,0]],[[2,2,2,0],[2,2,2,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,2,2,1],[0,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,2,2,1],[0,1,1,1]],[[1,2,3,0],[2,2,2,2],[2,2,2,1],[0,1,1,1]],[[1,3,2,0],[2,2,2,2],[2,2,2,1],[0,1,1,1]],[[2,2,2,0],[2,2,2,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,0],[2,2,2,2],[2,2,2,0],[2,2,0,1]],[[1,2,2,0],[2,2,2,2],[3,2,2,0],[1,2,0,1]],[[1,2,2,0],[3,2,2,2],[2,2,2,0],[1,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,2,2,0],[1,2,0,1]],[[1,3,2,0],[2,2,2,2],[2,2,2,0],[1,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,0],[2,2,2,2],[2,2,2,0],[2,1,1,1]],[[1,2,2,0],[2,2,2,2],[3,2,2,0],[1,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,2,2,0],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[2,2,2,0],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[2,2,2,0],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,0],[2,2,2,2],[2,2,2,0],[2,0,2,1]],[[1,2,2,0],[2,2,2,2],[3,2,2,0],[1,0,2,1]],[[1,2,2,0],[3,2,2,2],[2,2,2,0],[1,0,2,1]],[[1,2,3,0],[2,2,2,2],[2,2,2,0],[1,0,2,1]],[[1,3,2,0],[2,2,2,2],[2,2,2,0],[1,0,2,1]],[[2,2,2,0],[2,2,2,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,0],[2,2,2,2],[3,2,2,0],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[2,2,2,0],[0,2,1,1]],[[1,2,3,0],[2,2,2,2],[2,2,2,0],[0,2,1,1]],[[1,3,2,0],[2,2,2,2],[2,2,2,0],[0,2,1,1]],[[2,2,2,0],[2,2,2,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,0],[2,2,2,2],[3,2,2,0],[0,1,2,1]],[[1,2,2,0],[3,2,2,2],[2,2,2,0],[0,1,2,1]],[[1,2,3,0],[2,2,2,2],[2,2,2,0],[0,1,2,1]],[[1,3,2,0],[2,2,2,2],[2,2,2,0],[0,1,2,1]],[[2,2,2,0],[2,2,2,2],[2,2,2,0],[0,1,2,1]],[[1,2,2,0],[2,2,2,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,0],[2,2,2,2],[3,2,1,2],[1,2,0,0]],[[1,2,2,0],[3,2,2,2],[2,2,1,2],[1,2,0,0]],[[1,2,3,0],[2,2,2,2],[2,2,1,2],[1,2,0,0]],[[1,3,2,0],[2,2,2,2],[2,2,1,2],[1,2,0,0]],[[2,2,2,0],[2,2,2,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,0],[2,2,2,2],[2,2,1,2],[2,1,1,0]],[[1,2,2,0],[2,2,2,2],[3,2,1,2],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[2,2,1,2],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[2,2,1,2],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[2,2,1,2],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,0],[2,2,2,2],[2,2,1,2],[2,1,0,1]],[[1,2,2,0],[2,2,2,2],[3,2,1,2],[1,1,0,1]],[[1,2,2,0],[3,2,2,2],[2,2,1,2],[1,1,0,1]],[[1,2,3,0],[2,2,2,2],[2,2,1,2],[1,1,0,1]],[[1,3,2,0],[2,2,2,2],[2,2,1,2],[1,1,0,1]],[[2,2,2,0],[2,2,2,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,0],[2,2,2,2],[2,2,1,2],[2,0,2,0]],[[1,2,2,0],[2,2,2,2],[3,2,1,2],[1,0,2,0]],[[1,2,2,0],[3,2,2,2],[2,2,1,2],[1,0,2,0]],[[1,2,3,0],[2,2,2,2],[2,2,1,2],[1,0,2,0]],[[1,3,2,0],[2,2,2,2],[2,2,1,2],[1,0,2,0]],[[2,2,2,0],[2,2,2,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,0],[2,2,2,2],[2,2,1,2],[2,0,1,1]],[[1,2,2,0],[2,2,2,2],[3,2,1,2],[1,0,1,1]],[[1,2,2,0],[3,2,2,2],[2,2,1,2],[1,0,1,1]],[[1,2,3,0],[2,2,2,2],[2,2,1,2],[1,0,1,1]],[[1,3,2,0],[2,2,2,2],[2,2,1,2],[1,0,1,1]],[[2,2,2,0],[2,2,2,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,0],[2,2,2,2],[3,2,1,2],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,2,1,2],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,2,1,2],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,2,1,2],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,2,1,2],[0,2,0,1]],[[1,2,2,0],[3,2,2,2],[2,2,1,2],[0,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,2,1,2],[0,2,0,1]],[[1,3,2,0],[2,2,2,2],[2,2,1,2],[0,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,0],[2,2,2,2],[3,2,1,2],[0,1,2,0]],[[1,2,2,0],[3,2,2,2],[2,2,1,2],[0,1,2,0]],[[1,2,3,0],[2,2,2,2],[2,2,1,2],[0,1,2,0]],[[1,3,2,0],[2,2,2,2],[2,2,1,2],[0,1,2,0]],[[2,2,2,0],[2,2,2,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,2,1,2],[0,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,2,1,2],[0,1,1,1]],[[1,2,3,0],[2,2,2,2],[2,2,1,2],[0,1,1,1]],[[1,3,2,0],[2,2,2,2],[2,2,1,2],[0,1,1,1]],[[2,2,2,0],[2,2,2,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,0],[2,2,2,2],[2,2,1,1],[2,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,2,1,1],[1,1,2,0]],[[1,2,2,0],[3,2,2,2],[2,2,1,1],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[2,2,1,1],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[2,2,1,1],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,2,1,1],[0,2,2,0]],[[1,2,2,0],[3,2,2,2],[2,2,1,1],[0,2,2,0]],[[1,2,3,0],[2,2,2,2],[2,2,1,1],[0,2,2,0]],[[1,3,2,0],[2,2,2,2],[2,2,1,1],[0,2,2,0]],[[2,2,2,0],[2,2,2,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,0],[2,2,2,2],[2,2,1,0],[2,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,2,1,0],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[2,2,1,0],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[2,2,1,0],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[2,2,1,0],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,2,1,0],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[2,2,1,0],[0,2,2,1]],[[1,2,3,0],[2,2,2,2],[2,2,1,0],[0,2,2,1]],[[1,3,2,0],[2,2,2,2],[2,2,1,0],[0,2,2,1]],[[2,2,2,0],[2,2,2,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,0],[2,2,2,2],[2,2,0,2],[2,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,2,0,2],[1,1,2,0]],[[1,2,2,0],[3,2,2,2],[2,2,0,2],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[2,2,0,2],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[2,2,0,2],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,0],[2,2,2,2],[2,2,0,2],[2,1,1,1]],[[1,2,2,0],[2,2,2,2],[3,2,0,2],[1,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,2,0,2],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[2,2,0,2],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[2,2,0,2],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,0],[2,2,2,2],[2,2,0,2],[2,0,2,1]],[[1,2,2,0],[2,2,2,2],[3,2,0,2],[1,0,2,1]],[[1,2,2,0],[3,2,2,2],[2,2,0,2],[1,0,2,1]],[[1,2,3,0],[2,2,2,2],[2,2,0,2],[1,0,2,1]],[[1,3,2,0],[2,2,2,2],[2,2,0,2],[1,0,2,1]],[[2,2,2,0],[2,2,2,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,0],[2,2,2,2],[3,2,0,2],[0,2,2,0]],[[1,2,2,0],[3,2,2,2],[2,2,0,2],[0,2,2,0]],[[1,2,3,0],[2,2,2,2],[2,2,0,2],[0,2,2,0]],[[1,3,2,0],[2,2,2,2],[2,2,0,2],[0,2,2,0]],[[2,2,2,0],[2,2,2,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,0],[2,2,2,2],[3,2,0,2],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[2,2,0,2],[0,2,1,1]],[[1,2,3,0],[2,2,2,2],[2,2,0,2],[0,2,1,1]],[[1,3,2,0],[2,2,2,2],[2,2,0,2],[0,2,1,1]],[[2,2,2,0],[2,2,2,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,0],[2,2,2,2],[3,2,0,2],[0,1,2,1]],[[1,2,2,0],[3,2,2,2],[2,2,0,2],[0,1,2,1]],[[1,2,3,0],[2,2,2,2],[2,2,0,2],[0,1,2,1]],[[1,3,2,0],[2,2,2,2],[2,2,0,2],[0,1,2,1]],[[2,2,2,0],[2,2,2,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,0],[2,2,2,2],[2,2,0,1],[1,3,2,0]],[[1,2,2,0],[2,2,2,2],[2,2,0,1],[2,2,2,0]],[[1,2,2,0],[2,2,2,2],[3,2,0,1],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[2,2,0,1],[1,2,2,0]],[[1,2,3,0],[2,2,2,2],[2,2,0,1],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[2,2,0,1],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[2,2,0,1],[1,2,2,0]],[[1,2,2,0],[2,2,2,2],[2,2,0,1],[2,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,2,0,1],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[2,2,0,1],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[2,2,0,1],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[2,2,0,1],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,2,0,1],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[2,2,0,1],[0,2,2,1]],[[1,2,3,0],[2,2,2,2],[2,2,0,1],[0,2,2,1]],[[1,3,2,0],[2,2,2,2],[2,2,0,1],[0,2,2,1]],[[2,2,2,0],[2,2,2,2],[2,2,0,1],[0,2,2,1]],[[1,2,2,0],[2,2,2,2],[2,2,0,0],[1,3,2,1]],[[1,2,2,0],[2,2,2,2],[2,2,0,0],[2,2,2,1]],[[1,2,2,0],[2,2,2,2],[3,2,0,0],[1,2,2,1]],[[1,2,2,0],[3,2,2,2],[2,2,0,0],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[2,2,0,0],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[2,2,0,0],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[2,2,0,0],[1,2,2,1]],[[1,2,2,0],[2,2,2,2],[3,1,3,2],[1,0,0,1]],[[1,2,2,0],[3,2,2,2],[2,1,3,2],[1,0,0,1]],[[1,2,3,0],[2,2,2,2],[2,1,3,2],[1,0,0,1]],[[1,3,2,0],[2,2,2,2],[2,1,3,2],[1,0,0,1]],[[2,2,2,0],[2,2,2,2],[2,1,3,2],[1,0,0,1]],[[1,2,2,0],[3,2,2,2],[2,1,3,2],[0,1,0,1]],[[1,2,3,0],[2,2,2,2],[2,1,3,2],[0,1,0,1]],[[1,3,2,0],[2,2,2,2],[2,1,3,2],[0,1,0,1]],[[2,2,2,0],[2,2,2,2],[2,1,3,2],[0,1,0,1]],[[1,2,2,0],[2,2,2,2],[2,1,3,1],[2,1,1,0]],[[1,2,2,0],[2,2,2,2],[3,1,3,1],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[2,1,3,1],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[2,1,3,1],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[2,1,3,1],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,0],[2,2,2,2],[2,1,3,1],[2,1,0,1]],[[1,2,2,0],[2,2,2,2],[3,1,3,1],[1,1,0,1]],[[1,2,2,0],[3,2,2,2],[2,1,3,1],[1,1,0,1]],[[1,2,3,0],[2,2,2,2],[2,1,3,1],[1,1,0,1]],[[1,3,2,0],[2,2,2,2],[2,1,3,1],[1,1,0,1]],[[2,2,2,0],[2,2,2,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,0],[2,2,2,2],[2,1,3,1],[2,0,2,0]],[[1,2,2,0],[2,2,2,2],[3,1,3,1],[1,0,2,0]],[[1,2,2,0],[3,2,2,2],[2,1,3,1],[1,0,2,0]],[[1,2,3,0],[2,2,2,2],[2,1,3,1],[1,0,2,0]],[[1,3,2,0],[2,2,2,2],[2,1,3,1],[1,0,2,0]],[[2,2,2,0],[2,2,2,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,0],[2,2,2,2],[2,1,3,1],[2,0,1,1]],[[1,2,2,0],[2,2,2,2],[3,1,3,1],[1,0,1,1]],[[1,2,2,0],[3,2,2,2],[2,1,3,1],[1,0,1,1]],[[1,2,3,0],[2,2,2,2],[2,1,3,1],[1,0,1,1]],[[1,3,2,0],[2,2,2,2],[2,1,3,1],[1,0,1,1]],[[2,2,2,0],[2,2,2,2],[2,1,3,1],[1,0,1,1]],[[1,2,2,0],[2,2,2,2],[3,1,3,1],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,1,3,1],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,1,3,1],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,1,3,1],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,1,3,1],[0,2,0,1]],[[1,2,2,0],[3,2,2,2],[2,1,3,1],[0,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,1,3,1],[0,2,0,1]],[[1,3,2,0],[2,2,2,2],[2,1,3,1],[0,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,0],[2,2,2,2],[3,1,3,1],[0,1,2,0]],[[1,2,2,0],[3,2,2,2],[2,1,3,1],[0,1,2,0]],[[1,2,3,0],[2,2,2,2],[2,1,3,1],[0,1,2,0]],[[1,3,2,0],[2,2,2,2],[2,1,3,1],[0,1,2,0]],[[2,2,2,0],[2,2,2,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,1,3,1],[0,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,1,3,1],[0,1,1,1]],[[1,2,3,0],[2,2,2,2],[2,1,3,1],[0,1,1,1]],[[1,3,2,0],[2,2,2,2],[2,1,3,1],[0,1,1,1]],[[2,2,2,0],[2,2,2,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,1,3,1],[0,0,2,1]],[[1,2,3,0],[2,2,2,2],[2,1,3,1],[0,0,2,1]],[[1,3,2,0],[2,2,2,2],[2,1,3,1],[0,0,2,1]],[[2,2,2,0],[2,2,2,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,0],[2,2,2,2],[2,1,3,0],[1,3,1,0]],[[1,2,2,0],[2,2,2,2],[2,1,3,0],[2,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,1,3,0],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,1,3,0],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,1,3,0],[1,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,1,3,0],[1,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,1,3,0],[1,2,1,0]],[[1,2,2,0],[2,2,2,2],[2,1,3,0],[2,1,1,1]],[[0,2,3,1],[2,1,3,2],[0,0,2,2],[1,2,2,1]],[[0,2,2,2],[2,1,3,2],[0,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,3,3],[0,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,1,3,2],[0,0,2,3],[1,2,2,1]],[[0,2,2,1],[2,1,3,2],[0,0,2,2],[1,2,3,1]],[[0,2,2,1],[2,1,3,2],[0,0,2,2],[1,2,2,2]],[[0,2,3,1],[2,1,3,2],[0,0,3,2],[0,2,2,1]],[[0,2,2,2],[2,1,3,2],[0,0,3,2],[0,2,2,1]],[[0,2,2,1],[2,1,3,3],[0,0,3,2],[0,2,2,1]],[[0,2,2,1],[2,1,3,2],[0,0,3,3],[0,2,2,1]],[[0,2,2,1],[2,1,3,2],[0,0,3,2],[0,2,2,2]],[[0,2,3,1],[2,1,3,2],[0,0,3,2],[1,1,2,1]],[[0,2,2,2],[2,1,3,2],[0,0,3,2],[1,1,2,1]],[[0,2,2,1],[2,1,3,3],[0,0,3,2],[1,1,2,1]],[[0,2,2,1],[2,1,3,2],[0,0,3,3],[1,1,2,1]],[[0,2,2,1],[2,1,3,2],[0,0,3,2],[1,1,2,2]],[[0,2,3,1],[2,1,3,2],[0,0,3,2],[1,2,1,1]],[[0,2,2,2],[2,1,3,2],[0,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,3,3],[0,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,1,3,2],[0,0,3,3],[1,2,1,1]],[[0,2,2,1],[2,1,3,2],[0,0,3,2],[1,2,1,2]],[[0,2,3,1],[2,1,3,2],[0,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,1,3,2],[0,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,3],[0,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,2],[0,0,3,3],[1,2,2,0]],[[0,2,3,1],[2,1,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,2],[2,1,3,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,3,3],[0,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,3,2],[0,1,1,3],[1,2,2,1]],[[0,2,2,1],[2,1,3,2],[0,1,1,2],[1,2,3,1]],[[0,2,2,1],[2,1,3,2],[0,1,1,2],[1,2,2,2]],[[0,2,3,1],[2,1,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,2],[2,1,3,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,1,3,3],[0,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,1,3,2],[0,1,2,3],[1,2,1,1]],[[0,2,2,1],[2,1,3,2],[0,1,2,2],[1,2,1,2]],[[0,2,3,1],[2,1,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,2],[2,1,3,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,3],[0,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,2],[0,1,2,3],[1,2,2,0]],[[0,2,3,1],[2,1,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,2],[2,1,3,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,1,3,3],[0,1,3,0],[1,2,2,1]],[[0,2,3,1],[2,1,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,2],[2,1,3,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,3,3],[0,1,3,1],[1,2,1,1]],[[0,2,3,1],[2,1,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,2],[2,1,3,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,1,3,3],[0,1,3,1],[1,2,2,0]],[[0,2,3,1],[2,1,3,2],[0,1,3,2],[1,0,2,1]],[[0,2,2,2],[2,1,3,2],[0,1,3,2],[1,0,2,1]],[[0,2,2,1],[2,1,3,3],[0,1,3,2],[1,0,2,1]],[[0,2,2,1],[2,1,3,2],[0,1,3,3],[1,0,2,1]],[[0,2,2,1],[2,1,3,2],[0,1,3,2],[1,0,2,2]],[[0,2,3,1],[2,1,3,2],[0,1,3,2],[1,1,1,1]],[[0,2,2,2],[2,1,3,2],[0,1,3,2],[1,1,1,1]],[[0,2,2,1],[2,1,3,3],[0,1,3,2],[1,1,1,1]],[[0,2,2,1],[2,1,3,2],[0,1,3,3],[1,1,1,1]],[[0,2,2,1],[2,1,3,2],[0,1,3,2],[1,1,1,2]],[[0,2,3,1],[2,1,3,2],[0,1,3,2],[1,1,2,0]],[[0,2,2,2],[2,1,3,2],[0,1,3,2],[1,1,2,0]],[[0,2,2,1],[2,1,3,3],[0,1,3,2],[1,1,2,0]],[[0,2,2,1],[2,1,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,1,3,0],[1,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,1,3,0],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[2,1,3,0],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[2,1,3,0],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,0],[2,2,2,2],[2,1,3,0],[2,0,2,1]],[[0,2,3,1],[2,1,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,2],[2,1,3,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,1,3,3],[0,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,1,3,2],[0,2,1,3],[1,1,2,1]],[[0,2,2,1],[2,1,3,2],[0,2,1,2],[1,1,2,2]],[[0,2,3,1],[2,1,3,2],[0,2,2,2],[1,0,2,1]],[[0,2,2,2],[2,1,3,2],[0,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,1,3,3],[0,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,1,3,2],[0,2,2,3],[1,0,2,1]],[[0,2,2,1],[2,1,3,2],[0,2,2,2],[1,0,2,2]],[[0,2,3,1],[2,1,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,2],[2,1,3,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,1],[2,1,3,3],[0,2,2,2],[1,1,1,1]],[[0,2,2,1],[2,1,3,2],[0,2,2,3],[1,1,1,1]],[[0,2,2,1],[2,1,3,2],[0,2,2,2],[1,1,1,2]],[[0,2,3,1],[2,1,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,2],[2,1,3,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,1,3,3],[0,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,1,3,2],[0,2,2,3],[1,1,2,0]],[[0,2,3,1],[2,1,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,2],[2,1,3,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,1,3,3],[0,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,1,3,2],[0,2,2,3],[1,2,0,1]],[[0,2,3,1],[2,1,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,2],[2,1,3,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,1,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,1,3,0],[1,0,2,1]],[[1,2,2,0],[3,2,2,2],[2,1,3,0],[1,0,2,1]],[[1,2,3,0],[2,2,2,2],[2,1,3,0],[1,0,2,1]],[[1,3,2,0],[2,2,2,2],[2,1,3,0],[1,0,2,1]],[[2,2,2,0],[2,2,2,2],[2,1,3,0],[1,0,2,1]],[[0,2,3,1],[2,1,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,2],[2,1,3,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,1],[2,1,3,3],[0,2,3,0],[1,1,2,1]],[[0,3,2,1],[2,1,3,2],[0,2,3,0],[1,2,2,0]],[[0,2,3,1],[2,1,3,2],[0,2,3,0],[1,2,2,0]],[[0,2,2,2],[2,1,3,2],[0,2,3,0],[1,2,2,0]],[[0,2,2,1],[2,1,4,2],[0,2,3,0],[1,2,2,0]],[[0,2,3,1],[2,1,3,2],[0,2,3,1],[1,0,2,1]],[[0,2,2,2],[2,1,3,2],[0,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,1,3,3],[0,2,3,1],[1,0,2,1]],[[0,2,3,1],[2,1,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,2],[2,1,3,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,3,3],[0,2,3,1],[1,1,1,1]],[[0,2,3,1],[2,1,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,2],[2,1,3,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,1],[2,1,3,3],[0,2,3,1],[1,1,2,0]],[[0,2,3,1],[2,1,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,2],[2,1,3,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,1,3,3],[0,2,3,1],[1,2,0,1]],[[0,2,3,1],[2,1,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,2],[2,1,3,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,1,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,1,3,0],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[2,1,3,0],[0,2,1,1]],[[1,2,3,0],[2,2,2,2],[2,1,3,0],[0,2,1,1]],[[1,3,2,0],[2,2,2,2],[2,1,3,0],[0,2,1,1]],[[2,2,2,0],[2,2,2,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,0],[2,2,2,2],[3,1,3,0],[0,1,2,1]],[[1,2,2,0],[3,2,2,2],[2,1,3,0],[0,1,2,1]],[[1,2,3,0],[2,2,2,2],[2,1,3,0],[0,1,2,1]],[[1,3,2,0],[2,2,2,2],[2,1,3,0],[0,1,2,1]],[[2,2,2,0],[2,2,2,2],[2,1,3,0],[0,1,2,1]],[[0,2,3,1],[2,1,3,2],[0,2,3,2],[0,0,2,1]],[[0,2,2,2],[2,1,3,2],[0,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,3],[0,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[0,2,3,3],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[0,2,3,2],[0,0,2,2]],[[0,2,3,1],[2,1,3,2],[0,2,3,2],[0,1,1,1]],[[0,2,2,2],[2,1,3,2],[0,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,3],[0,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[0,2,3,3],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[0,2,3,2],[0,1,1,2]],[[0,2,3,1],[2,1,3,2],[0,2,3,2],[0,1,2,0]],[[0,2,2,2],[2,1,3,2],[0,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,3],[0,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,2],[0,2,3,3],[0,1,2,0]],[[0,2,3,1],[2,1,3,2],[0,2,3,2],[1,1,0,1]],[[0,2,2,2],[2,1,3,2],[0,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,3,3],[0,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,1,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,0],[2,2,2,2],[2,1,2,2],[2,1,1,0]],[[1,2,2,0],[2,2,2,2],[3,1,2,2],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[2,1,2,2],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[2,1,2,2],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[2,1,2,2],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,0],[2,2,2,2],[2,1,2,2],[2,1,0,1]],[[1,2,2,0],[2,2,2,2],[3,1,2,2],[1,1,0,1]],[[1,2,2,0],[3,2,2,2],[2,1,2,2],[1,1,0,1]],[[1,2,3,0],[2,2,2,2],[2,1,2,2],[1,1,0,1]],[[1,3,2,0],[2,2,2,2],[2,1,2,2],[1,1,0,1]],[[2,2,2,0],[2,2,2,2],[2,1,2,2],[1,1,0,1]],[[0,2,3,1],[2,1,3,2],[0,3,1,2],[0,1,2,1]],[[0,2,2,2],[2,1,3,2],[0,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,1,3,3],[0,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,1,3,2],[0,3,1,3],[0,1,2,1]],[[0,2,2,1],[2,1,3,2],[0,3,1,2],[0,1,2,2]],[[1,2,2,0],[2,2,2,2],[2,1,2,2],[2,0,2,0]],[[1,2,2,0],[2,2,2,2],[3,1,2,2],[1,0,2,0]],[[1,2,2,0],[3,2,2,2],[2,1,2,2],[1,0,2,0]],[[1,2,3,0],[2,2,2,2],[2,1,2,2],[1,0,2,0]],[[1,3,2,0],[2,2,2,2],[2,1,2,2],[1,0,2,0]],[[2,2,2,0],[2,2,2,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,0],[2,2,2,2],[2,1,2,2],[2,0,1,1]],[[0,2,3,1],[2,1,3,2],[0,3,2,2],[0,0,2,1]],[[0,2,2,2],[2,1,3,2],[0,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,3],[0,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[0,3,2,3],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[0,3,2,2],[0,0,2,2]],[[0,2,3,1],[2,1,3,2],[0,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,1,3,2],[0,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,3],[0,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[0,3,2,3],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[0,3,2,2],[0,1,1,2]],[[0,2,3,1],[2,1,3,2],[0,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,1,3,2],[0,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,3],[0,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,2],[0,3,2,3],[0,1,2,0]],[[0,2,3,1],[2,1,3,2],[0,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,1,3,2],[0,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,1,3,3],[0,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,1,3,2],[0,3,2,3],[0,2,0,1]],[[0,2,3,1],[2,1,3,2],[0,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,1,3,2],[0,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,1,3,3],[0,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,1,2,2],[1,0,1,1]],[[1,2,2,0],[3,2,2,2],[2,1,2,2],[1,0,1,1]],[[1,2,3,0],[2,2,2,2],[2,1,2,2],[1,0,1,1]],[[1,3,2,0],[2,2,2,2],[2,1,2,2],[1,0,1,1]],[[2,2,2,0],[2,2,2,2],[2,1,2,2],[1,0,1,1]],[[1,2,2,0],[2,2,2,2],[3,1,2,2],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,1,2,2],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,1,2,2],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,1,2,2],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,1,2,2],[0,2,0,1]],[[1,2,2,0],[3,2,2,2],[2,1,2,2],[0,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,1,2,2],[0,2,0,1]],[[1,3,2,0],[2,2,2,2],[2,1,2,2],[0,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,0],[2,2,2,2],[3,1,2,2],[0,1,2,0]],[[1,2,2,0],[3,2,2,2],[2,1,2,2],[0,1,2,0]],[[1,2,3,0],[2,2,2,2],[2,1,2,2],[0,1,2,0]],[[1,3,2,0],[2,2,2,2],[2,1,2,2],[0,1,2,0]],[[2,2,2,0],[2,2,2,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,1,2,2],[0,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,1,2,2],[0,1,1,1]],[[0,2,3,1],[2,1,3,2],[0,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,1,3,2],[0,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,1,3,3],[0,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,1,3,2],[0,3,3,0],[1,1,1,1]],[[0,2,3,1],[2,1,3,2],[0,3,3,0],[1,1,1,1]],[[0,2,2,2],[2,1,3,2],[0,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,1,4,2],[0,3,3,0],[1,1,1,1]],[[0,3,2,1],[2,1,3,2],[0,3,3,0],[1,1,2,0]],[[0,2,3,1],[2,1,3,2],[0,3,3,0],[1,1,2,0]],[[0,2,2,2],[2,1,3,2],[0,3,3,0],[1,1,2,0]],[[0,2,2,1],[2,1,4,2],[0,3,3,0],[1,1,2,0]],[[0,3,2,1],[2,1,3,2],[0,3,3,0],[1,2,0,1]],[[0,2,3,1],[2,1,3,2],[0,3,3,0],[1,2,0,1]],[[0,2,2,2],[2,1,3,2],[0,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,1,4,2],[0,3,3,0],[1,2,0,1]],[[0,3,2,1],[2,1,3,2],[0,3,3,0],[1,2,1,0]],[[0,2,3,1],[2,1,3,2],[0,3,3,0],[1,2,1,0]],[[0,2,2,2],[2,1,3,2],[0,3,3,0],[1,2,1,0]],[[0,2,2,1],[2,1,4,2],[0,3,3,0],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,1,2,2],[0,1,1,1]],[[1,3,2,0],[2,2,2,2],[2,1,2,2],[0,1,1,1]],[[2,2,2,0],[2,2,2,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,1,2,2],[0,0,2,1]],[[1,2,3,0],[2,2,2,2],[2,1,2,2],[0,0,2,1]],[[1,3,2,0],[2,2,2,2],[2,1,2,2],[0,0,2,1]],[[2,2,2,0],[2,2,2,2],[2,1,2,2],[0,0,2,1]],[[0,2,3,1],[2,1,3,2],[0,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,1,3,2],[0,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,1,3,3],[0,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,1,3,2],[0,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,1,3,2],[0,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,1,3,3],[0,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,1,3,2],[0,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,1,3,2],[0,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,1,3,3],[0,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,1,3,2],[0,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,1,3,2],[0,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,1,3,3],[0,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,1,3,2],[0,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,1,3,2],[0,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,1,3,3],[0,3,3,1],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[2,1,2,1],[1,3,1,0]],[[1,2,2,0],[2,2,2,2],[2,1,2,1],[2,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,1,2,1],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,1,2,1],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,1,2,1],[1,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,1,2,1],[1,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,0],[2,2,2,2],[2,1,2,1],[1,3,0,1]],[[1,2,2,0],[2,2,2,2],[2,1,2,1],[2,2,0,1]],[[1,2,2,0],[2,2,2,2],[3,1,2,1],[1,2,0,1]],[[1,2,2,0],[3,2,2,2],[2,1,2,1],[1,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,1,2,1],[1,2,0,1]],[[1,3,2,0],[2,2,2,2],[2,1,2,1],[1,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,0],[2,2,2,2],[2,1,2,0],[1,3,1,1]],[[1,2,2,0],[2,2,2,2],[2,1,2,0],[2,2,1,1]],[[1,2,2,0],[2,2,2,2],[3,1,2,0],[1,2,1,1]],[[1,2,2,0],[3,2,2,2],[2,1,2,0],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[2,1,2,0],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[2,1,2,0],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[2,1,2,0],[1,2,1,1]],[[0,2,3,1],[2,1,3,2],[0,3,3,2],[0,1,0,1]],[[0,2,2,2],[2,1,3,2],[0,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,1,3,3],[0,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,1,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,0],[2,2,2,2],[2,1,1,2],[1,3,1,0]],[[1,2,2,0],[2,2,2,2],[2,1,1,2],[2,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,1,1,2],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,1,1,2],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,1,1,2],[1,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,1,1,2],[1,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,0],[2,2,2,2],[2,1,1,2],[1,3,0,1]],[[1,2,2,0],[2,2,2,2],[2,1,1,2],[2,2,0,1]],[[1,2,2,0],[2,2,2,2],[3,1,1,2],[1,2,0,1]],[[1,2,2,0],[3,2,2,2],[2,1,1,2],[1,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,1,1,2],[1,2,0,1]],[[1,3,2,0],[2,2,2,2],[2,1,1,2],[1,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,0],[2,2,2,2],[2,1,1,2],[2,0,2,1]],[[1,2,2,0],[2,2,2,2],[3,1,1,2],[1,0,2,1]],[[1,2,2,0],[3,2,2,2],[2,1,1,2],[1,0,2,1]],[[1,2,3,0],[2,2,2,2],[2,1,1,2],[1,0,2,1]],[[1,3,2,0],[2,2,2,2],[2,1,1,2],[1,0,2,1]],[[2,2,2,0],[2,2,2,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,0],[2,2,2,2],[3,1,1,2],[0,1,2,1]],[[1,2,2,0],[3,2,2,2],[2,1,1,2],[0,1,2,1]],[[1,2,3,0],[2,2,2,2],[2,1,1,2],[0,1,2,1]],[[1,3,2,0],[2,2,2,2],[2,1,1,2],[0,1,2,1]],[[2,2,2,0],[2,2,2,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,0],[2,2,2,2],[2,1,1,1],[1,2,3,0]],[[1,2,2,0],[2,2,2,2],[2,1,1,1],[1,3,2,0]],[[1,2,2,0],[2,2,2,2],[2,1,1,1],[2,2,2,0]],[[1,2,2,0],[2,2,2,2],[3,1,1,1],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[2,1,1,1],[1,2,2,0]],[[1,2,3,0],[2,2,2,2],[2,1,1,1],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[2,1,1,1],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,0],[2,2,2,2],[2,1,1,0],[1,2,2,2]],[[1,2,2,0],[2,2,2,2],[2,1,1,0],[1,2,3,1]],[[1,2,2,0],[2,2,2,2],[2,1,1,0],[1,3,2,1]],[[1,2,2,0],[2,2,2,2],[2,1,1,0],[2,2,2,1]],[[1,2,2,0],[2,2,2,2],[3,1,1,0],[1,2,2,1]],[[1,2,2,0],[3,2,2,2],[2,1,1,0],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[2,1,1,0],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[2,1,1,0],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,0],[2,2,2,2],[2,1,0,2],[1,2,3,0]],[[1,2,2,0],[2,2,2,2],[2,1,0,2],[1,3,2,0]],[[1,2,2,0],[2,2,2,2],[2,1,0,2],[2,2,2,0]],[[1,2,2,0],[2,2,2,2],[3,1,0,2],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[2,1,0,2],[1,2,2,0]],[[1,2,3,0],[2,2,2,2],[2,1,0,2],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[2,1,0,2],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,0],[2,2,2,2],[2,1,0,2],[1,3,1,1]],[[1,2,2,0],[2,2,2,2],[2,1,0,2],[2,2,1,1]],[[1,2,2,0],[2,2,2,2],[3,1,0,2],[1,2,1,1]],[[1,2,2,0],[3,2,2,2],[2,1,0,2],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[2,1,0,2],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[2,1,0,2],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,0],[2,2,2,2],[2,1,0,2],[2,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,1,0,2],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[2,1,0,2],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[2,1,0,2],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[2,1,0,2],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,1,0,2],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[2,1,0,2],[0,2,2,1]],[[0,2,3,1],[2,1,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,1,3,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,3,3],[1,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,1,3,2],[1,0,1,3],[1,2,2,1]],[[0,2,2,1],[2,1,3,2],[1,0,1,2],[1,2,3,1]],[[0,2,2,1],[2,1,3,2],[1,0,1,2],[1,2,2,2]],[[0,2,3,1],[2,1,3,2],[1,0,2,2],[0,2,2,1]],[[0,2,2,2],[2,1,3,2],[1,0,2,2],[0,2,2,1]],[[0,2,2,1],[2,1,3,3],[1,0,2,2],[0,2,2,1]],[[0,2,2,1],[2,1,3,2],[1,0,2,3],[0,2,2,1]],[[0,2,2,1],[2,1,3,2],[1,0,2,2],[0,2,3,1]],[[0,2,2,1],[2,1,3,2],[1,0,2,2],[0,2,2,2]],[[0,2,3,1],[2,1,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,2],[2,1,3,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,1,3,3],[1,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,1,3,2],[1,0,2,3],[1,2,1,1]],[[0,2,2,1],[2,1,3,2],[1,0,2,2],[1,2,1,2]],[[0,2,3,1],[2,1,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,1,3,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,3],[1,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,1,3,2],[1,0,2,3],[1,2,2,0]],[[0,2,3,1],[2,1,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,1,3,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,1,3,3],[1,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,1,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,1,3,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,1,3,3],[1,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,1,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,1,3,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,1,3,3],[1,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,1,3,2],[1,0,3,2],[0,1,2,1]],[[0,2,2,2],[2,1,3,2],[1,0,3,2],[0,1,2,1]],[[0,2,2,1],[2,1,3,3],[1,0,3,2],[0,1,2,1]],[[0,2,2,1],[2,1,3,2],[1,0,3,3],[0,1,2,1]],[[0,2,2,1],[2,1,3,2],[1,0,3,2],[0,1,2,2]],[[0,2,3,1],[2,1,3,2],[1,0,3,2],[0,2,1,1]],[[0,2,2,2],[2,1,3,2],[1,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,1,3,3],[1,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,1,3,2],[1,0,3,3],[0,2,1,1]],[[0,2,2,1],[2,1,3,2],[1,0,3,2],[0,2,1,2]],[[0,2,3,1],[2,1,3,2],[1,0,3,2],[0,2,2,0]],[[0,2,2,2],[2,1,3,2],[1,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,1,3,3],[1,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,1,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,3,0],[2,2,2,2],[2,1,0,2],[0,2,2,1]],[[1,3,2,0],[2,2,2,2],[2,1,0,2],[0,2,2,1]],[[2,2,2,0],[2,2,2,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,0],[2,2,2,2],[2,1,0,1],[1,2,2,2]],[[1,2,2,0],[2,2,2,2],[2,1,0,1],[1,2,3,1]],[[1,2,2,0],[2,2,2,2],[2,1,0,1],[1,3,2,1]],[[0,2,3,1],[2,1,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,2],[2,1,3,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,3,3],[1,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,3,2],[1,1,1,3],[0,2,2,1]],[[0,2,2,1],[2,1,3,2],[1,1,1,2],[0,2,3,1]],[[0,2,2,1],[2,1,3,2],[1,1,1,2],[0,2,2,2]],[[0,2,3,1],[2,1,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,2],[2,1,3,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,1],[2,1,3,3],[1,1,2,2],[0,2,1,1]],[[0,2,2,1],[2,1,3,2],[1,1,2,3],[0,2,1,1]],[[0,2,2,1],[2,1,3,2],[1,1,2,2],[0,2,1,2]],[[0,2,3,1],[2,1,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,2],[2,1,3,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,3,3],[1,1,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,0],[2,2,2,2],[2,1,0,1],[2,2,2,1]],[[1,2,2,0],[2,2,2,2],[3,1,0,1],[1,2,2,1]],[[1,2,2,0],[3,2,2,2],[2,1,0,1],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[2,1,0,1],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[2,1,0,1],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[2,1,0,1],[1,2,2,1]],[[0,2,3,1],[2,1,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,2],[2,1,3,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,1],[2,1,3,3],[1,1,3,0],[0,2,2,1]],[[0,2,3,1],[2,1,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,2],[2,1,3,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,3,3],[1,1,3,1],[0,2,1,1]],[[0,2,3,1],[2,1,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,2],[2,1,3,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,1],[2,1,3,3],[1,1,3,1],[0,2,2,0]],[[0,2,3,1],[2,1,3,2],[1,1,3,2],[0,0,2,1]],[[0,2,2,2],[2,1,3,2],[1,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,3],[1,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[1,1,3,3],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[1,1,3,2],[0,0,2,2]],[[0,2,3,1],[2,1,3,2],[1,1,3,2],[0,1,1,1]],[[0,2,2,2],[2,1,3,2],[1,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,3],[1,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[1,1,3,3],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[1,1,3,2],[0,1,1,2]],[[0,2,3,1],[2,1,3,2],[1,1,3,2],[0,1,2,0]],[[0,2,2,2],[2,1,3,2],[1,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,3],[1,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,2],[1,1,3,3],[0,1,2,0]],[[0,2,3,1],[2,1,3,2],[1,1,3,2],[1,0,1,1]],[[0,2,2,2],[2,1,3,2],[1,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,3,3],[1,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,3,2],[1,1,3,3],[1,0,1,1]],[[0,2,2,1],[2,1,3,2],[1,1,3,2],[1,0,1,2]],[[0,2,3,1],[2,1,3,2],[1,1,3,2],[1,0,2,0]],[[0,2,2,2],[2,1,3,2],[1,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,3,3],[1,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,3,2],[1,1,3,3],[1,0,2,0]],[[0,2,3,1],[2,1,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,2],[2,1,3,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,1,3,3],[1,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,1,3,2],[1,2,1,3],[0,1,2,1]],[[0,2,2,1],[2,1,3,2],[1,2,1,2],[0,1,2,2]],[[0,2,3,1],[2,1,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,2],[2,1,3,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,1,3,3],[1,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,1,3,2],[1,2,1,3],[1,0,2,1]],[[0,2,2,1],[2,1,3,2],[1,2,1,2],[1,0,2,2]],[[0,2,3,1],[2,1,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,2],[2,1,3,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,3],[1,2,2,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[1,2,2,3],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[1,2,2,2],[0,0,2,2]],[[0,2,3,1],[2,1,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,2],[2,1,3,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,3],[1,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[1,2,2,3],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[1,2,2,2],[0,1,1,2]],[[0,2,3,1],[2,1,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,2],[2,1,3,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,3],[1,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,2],[1,2,2,3],[0,1,2,0]],[[0,2,3,1],[2,1,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,2],[2,1,3,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,1,3,3],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,1,3,2],[1,2,2,3],[0,2,0,1]],[[0,2,3,1],[2,1,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,2],[2,1,3,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,1,3,3],[1,2,2,2],[0,2,1,0]],[[0,2,3,1],[2,1,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,2],[2,1,3,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,1,3,3],[1,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,1,3,2],[1,2,2,3],[1,0,1,1]],[[0,2,2,1],[2,1,3,2],[1,2,2,2],[1,0,1,2]],[[0,2,3,1],[2,1,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,2],[2,1,3,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,1,3,3],[1,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,1,3,2],[1,2,2,3],[1,0,2,0]],[[0,2,3,1],[2,1,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,2],[2,1,3,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,1,3,3],[1,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,1,3,2],[1,2,2,3],[1,1,0,1]],[[0,2,3,1],[2,1,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,2],[2,1,3,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,1,3,3],[1,2,2,2],[1,1,1,0]],[[0,2,3,1],[2,1,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,2],[2,1,3,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,1,3,3],[1,2,3,0],[0,1,2,1]],[[0,3,2,1],[2,1,3,2],[1,2,3,0],[0,2,2,0]],[[0,2,3,1],[2,1,3,2],[1,2,3,0],[0,2,2,0]],[[0,2,2,2],[2,1,3,2],[1,2,3,0],[0,2,2,0]],[[0,2,2,1],[2,1,4,2],[1,2,3,0],[0,2,2,0]],[[0,2,3,1],[2,1,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,2],[2,1,3,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,1,3,3],[1,2,3,0],[1,0,2,1]],[[1,2,2,0],[2,2,2,2],[2,0,3,1],[1,3,1,0]],[[1,2,2,0],[2,2,2,2],[2,0,3,1],[2,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,0,3,1],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,0,3,1],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,0,3,1],[1,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,0,3,1],[1,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,0],[2,2,2,2],[2,0,3,1],[1,3,0,1]],[[1,2,2,0],[2,2,2,2],[2,0,3,1],[2,2,0,1]],[[1,2,2,0],[2,2,2,2],[3,0,3,1],[1,2,0,1]],[[0,2,3,1],[2,1,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,2],[2,1,3,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,1],[2,1,3,3],[1,2,3,1],[0,0,2,1]],[[0,2,3,1],[2,1,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,2],[2,1,3,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,1,3,3],[1,2,3,1],[0,1,1,1]],[[0,2,3,1],[2,1,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,2],[2,1,3,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,1,3,3],[1,2,3,1],[0,1,2,0]],[[0,2,3,1],[2,1,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,2],[2,1,3,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,1,3,3],[1,2,3,1],[0,2,0,1]],[[0,2,3,1],[2,1,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,2],[2,1,3,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,1,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,0,3,1],[1,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,0,3,1],[1,2,0,1]],[[1,3,2,0],[2,2,2,2],[2,0,3,1],[1,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,0,3,1],[1,2,0,1]],[[0,2,3,1],[2,1,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,2],[2,1,3,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,1,3,3],[1,2,3,1],[1,0,1,1]],[[0,2,3,1],[2,1,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,2],[2,1,3,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,1,3,3],[1,2,3,1],[1,0,2,0]],[[0,2,3,1],[2,1,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,2],[2,1,3,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,1,3,3],[1,2,3,1],[1,1,0,1]],[[0,2,3,1],[2,1,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,2],[2,1,3,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,1,3,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,2,2,2],[2,0,3,1],[2,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,0,3,1],[1,1,2,0]],[[1,2,2,0],[3,2,2,2],[2,0,3,1],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[2,0,3,1],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[2,0,3,1],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,0],[2,2,2,2],[2,0,3,1],[2,1,1,1]],[[1,2,2,0],[2,2,2,2],[3,0,3,1],[1,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,0,3,1],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[2,0,3,1],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[2,0,3,1],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,0],[2,2,2,2],[3,0,3,1],[0,2,2,0]],[[1,2,2,0],[3,2,2,2],[2,0,3,1],[0,2,2,0]],[[1,2,3,0],[2,2,2,2],[2,0,3,1],[0,2,2,0]],[[0,2,3,1],[2,1,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,2],[2,1,3,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,1],[2,1,3,3],[1,2,3,2],[0,1,0,1]],[[0,2,2,1],[2,1,3,2],[1,2,3,3],[0,1,0,1]],[[1,3,2,0],[2,2,2,2],[2,0,3,1],[0,2,2,0]],[[2,2,2,0],[2,2,2,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,0],[2,2,2,2],[3,0,3,1],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[2,0,3,1],[0,2,1,1]],[[1,2,3,0],[2,2,2,2],[2,0,3,1],[0,2,1,1]],[[1,3,2,0],[2,2,2,2],[2,0,3,1],[0,2,1,1]],[[2,2,2,0],[2,2,2,2],[2,0,3,1],[0,2,1,1]],[[1,2,2,0],[2,2,2,2],[2,0,3,0],[1,3,1,1]],[[1,2,2,0],[2,2,2,2],[2,0,3,0],[2,2,1,1]],[[1,2,2,0],[2,2,2,2],[3,0,3,0],[1,2,1,1]],[[1,2,2,0],[3,2,2,2],[2,0,3,0],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[2,0,3,0],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[2,0,3,0],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,0],[2,2,2,2],[2,0,3,0],[2,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,0,3,0],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[2,0,3,0],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[2,0,3,0],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[2,0,3,0],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,0,3,0],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[2,0,3,0],[0,2,2,1]],[[0,2,3,1],[2,1,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,2],[2,1,3,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,1],[2,1,3,3],[1,2,3,2],[1,0,0,1]],[[0,2,2,1],[2,1,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,3,0],[2,2,2,2],[2,0,3,0],[0,2,2,1]],[[1,3,2,0],[2,2,2,2],[2,0,3,0],[0,2,2,1]],[[2,2,2,0],[2,2,2,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,0],[2,2,2,2],[2,0,2,2],[1,3,1,0]],[[1,2,2,0],[2,2,2,2],[2,0,2,2],[2,2,1,0]],[[1,2,2,0],[2,2,2,2],[3,0,2,2],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[2,0,2,2],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[2,0,2,2],[1,2,1,0]],[[1,3,2,0],[2,2,2,2],[2,0,2,2],[1,2,1,0]],[[2,2,2,0],[2,2,2,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,0],[2,2,2,2],[2,0,2,2],[1,3,0,1]],[[1,2,2,0],[2,2,2,2],[2,0,2,2],[2,2,0,1]],[[1,2,2,0],[2,2,2,2],[3,0,2,2],[1,2,0,1]],[[1,2,2,0],[3,2,2,2],[2,0,2,2],[1,2,0,1]],[[1,2,3,0],[2,2,2,2],[2,0,2,2],[1,2,0,1]],[[1,3,2,0],[2,2,2,2],[2,0,2,2],[1,2,0,1]],[[2,2,2,0],[2,2,2,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,0],[2,2,2,2],[2,0,2,2],[2,1,2,0]],[[1,2,2,0],[2,2,2,2],[3,0,2,2],[1,1,2,0]],[[1,2,2,0],[3,2,2,2],[2,0,2,2],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[2,0,2,2],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[2,0,2,2],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,0],[2,2,2,2],[2,0,2,2],[2,1,1,1]],[[1,2,2,0],[2,2,2,2],[3,0,2,2],[1,1,1,1]],[[1,2,2,0],[3,2,2,2],[2,0,2,2],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[2,0,2,2],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[2,0,2,2],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[2,0,2,2],[1,1,1,1]],[[1,2,2,0],[2,2,2,2],[3,0,2,2],[0,2,2,0]],[[1,2,2,0],[3,2,2,2],[2,0,2,2],[0,2,2,0]],[[1,2,3,0],[2,2,2,2],[2,0,2,2],[0,2,2,0]],[[1,3,2,0],[2,2,2,2],[2,0,2,2],[0,2,2,0]],[[2,2,2,0],[2,2,2,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,0],[2,2,2,2],[3,0,2,2],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[2,0,2,2],[0,2,1,1]],[[1,2,3,0],[2,2,2,2],[2,0,2,2],[0,2,1,1]],[[1,3,2,0],[2,2,2,2],[2,0,2,2],[0,2,1,1]],[[2,2,2,0],[2,2,2,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,0],[2,2,2,2],[2,0,2,1],[1,2,3,0]],[[1,2,2,0],[2,2,2,2],[2,0,2,1],[1,3,2,0]],[[1,2,2,0],[2,2,2,2],[2,0,2,1],[2,2,2,0]],[[1,2,2,0],[2,2,2,2],[3,0,2,1],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[2,0,2,1],[1,2,2,0]],[[1,2,3,0],[2,2,2,2],[2,0,2,1],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[2,0,2,1],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,0],[2,2,2,2],[2,0,2,0],[1,2,2,2]],[[1,2,2,0],[2,2,2,2],[2,0,2,0],[1,2,3,1]],[[1,2,2,0],[2,2,2,2],[2,0,2,0],[1,3,2,1]],[[1,2,2,0],[2,2,2,2],[2,0,2,0],[2,2,2,1]],[[1,2,2,0],[2,2,2,2],[3,0,2,0],[1,2,2,1]],[[1,2,2,0],[3,2,2,2],[2,0,2,0],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[2,0,2,0],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[2,0,2,0],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[2,0,2,0],[1,2,2,1]],[[1,2,2,0],[2,2,2,2],[2,0,1,2],[1,2,3,0]],[[1,2,2,0],[2,2,2,2],[2,0,1,2],[1,3,2,0]],[[0,2,3,1],[2,1,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,2],[2,1,3,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,1],[2,1,3,3],[1,3,2,2],[0,0,1,1]],[[0,2,2,1],[2,1,3,2],[1,3,2,3],[0,0,1,1]],[[0,2,3,1],[2,1,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,2],[2,1,3,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,1],[2,1,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[2,2,2,2],[2,0,1,2],[2,2,2,0]],[[1,2,2,0],[2,2,2,2],[3,0,1,2],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[2,0,1,2],[1,2,2,0]],[[1,2,3,0],[2,2,2,2],[2,0,1,2],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[2,0,1,2],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,0],[2,2,2,2],[2,0,1,2],[1,3,1,1]],[[1,2,2,0],[2,2,2,2],[2,0,1,2],[2,2,1,1]],[[1,2,2,0],[2,2,2,2],[3,0,1,2],[1,2,1,1]],[[1,2,2,0],[3,2,2,2],[2,0,1,2],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[2,0,1,2],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[2,0,1,2],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,0],[2,2,2,2],[2,0,1,2],[2,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,0,1,2],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[2,0,1,2],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[2,0,1,2],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[2,0,1,2],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,0],[2,2,2,2],[3,0,1,2],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[2,0,1,2],[0,2,2,1]],[[1,2,3,0],[2,2,2,2],[2,0,1,2],[0,2,2,1]],[[1,3,2,0],[2,2,2,2],[2,0,1,2],[0,2,2,1]],[[2,2,2,0],[2,2,2,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,0],[2,2,2,2],[2,0,1,1],[1,2,2,2]],[[1,2,2,0],[2,2,2,2],[2,0,1,1],[1,2,3,1]],[[1,2,2,0],[2,2,2,2],[2,0,1,1],[1,3,2,1]],[[1,2,2,0],[2,2,2,2],[2,0,1,1],[2,2,2,1]],[[1,2,2,0],[2,2,2,2],[3,0,1,1],[1,2,2,1]],[[1,2,2,0],[3,2,2,2],[2,0,1,1],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[2,0,1,1],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[2,0,1,1],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[2,0,1,1],[1,2,2,1]],[[1,2,2,0],[3,2,2,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,0],[2,2,2,2],[1,3,3,2],[0,0,0,1]],[[1,3,2,0],[2,2,2,2],[1,3,3,2],[0,0,0,1]],[[2,2,2,0],[2,2,2,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,0],[3,2,2,2],[1,3,3,1],[1,1,0,0]],[[1,2,3,0],[2,2,2,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,0],[2,2,2,2],[1,3,3,1],[1,1,0,0]],[[2,2,2,0],[2,2,2,2],[1,3,3,1],[1,1,0,0]],[[1,2,2,0],[3,2,2,2],[1,3,3,1],[0,2,0,0]],[[1,2,3,0],[2,2,2,2],[1,3,3,1],[0,2,0,0]],[[1,3,2,0],[2,2,2,2],[1,3,3,1],[0,2,0,0]],[[2,2,2,0],[2,2,2,2],[1,3,3,1],[0,2,0,0]],[[0,3,2,1],[2,1,3,2],[1,3,3,0],[0,1,1,1]],[[0,2,3,1],[2,1,3,2],[1,3,3,0],[0,1,1,1]],[[0,2,2,2],[2,1,3,2],[1,3,3,0],[0,1,1,1]],[[0,2,2,1],[2,1,4,2],[1,3,3,0],[0,1,1,1]],[[0,3,2,1],[2,1,3,2],[1,3,3,0],[0,1,2,0]],[[0,2,3,1],[2,1,3,2],[1,3,3,0],[0,1,2,0]],[[0,2,2,2],[2,1,3,2],[1,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,1,4,2],[1,3,3,0],[0,1,2,0]],[[0,3,2,1],[2,1,3,2],[1,3,3,0],[0,2,0,1]],[[0,2,3,1],[2,1,3,2],[1,3,3,0],[0,2,0,1]],[[0,2,2,2],[2,1,3,2],[1,3,3,0],[0,2,0,1]],[[0,2,2,1],[2,1,4,2],[1,3,3,0],[0,2,0,1]],[[0,3,2,1],[2,1,3,2],[1,3,3,0],[0,2,1,0]],[[0,2,3,1],[2,1,3,2],[1,3,3,0],[0,2,1,0]],[[0,2,2,2],[2,1,3,2],[1,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,1,4,2],[1,3,3,0],[0,2,1,0]],[[0,3,2,1],[2,1,3,2],[1,3,3,0],[1,0,1,1]],[[0,2,3,1],[2,1,3,2],[1,3,3,0],[1,0,1,1]],[[0,2,2,2],[2,1,3,2],[1,3,3,0],[1,0,1,1]],[[0,2,2,1],[2,1,4,2],[1,3,3,0],[1,0,1,1]],[[0,3,2,1],[2,1,3,2],[1,3,3,0],[1,0,2,0]],[[0,2,3,1],[2,1,3,2],[1,3,3,0],[1,0,2,0]],[[0,2,2,2],[2,1,3,2],[1,3,3,0],[1,0,2,0]],[[0,2,2,1],[2,1,4,2],[1,3,3,0],[1,0,2,0]],[[0,3,2,1],[2,1,3,2],[1,3,3,0],[1,1,0,1]],[[0,2,3,1],[2,1,3,2],[1,3,3,0],[1,1,0,1]],[[0,2,2,2],[2,1,3,2],[1,3,3,0],[1,1,0,1]],[[0,2,2,1],[2,1,4,2],[1,3,3,0],[1,1,0,1]],[[0,3,2,1],[2,1,3,2],[1,3,3,0],[1,1,1,0]],[[0,2,3,1],[2,1,3,2],[1,3,3,0],[1,1,1,0]],[[0,2,2,2],[2,1,3,2],[1,3,3,0],[1,1,1,0]],[[0,2,2,1],[2,1,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,3,1],[0,0,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,3,1],[0,0,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,0],[2,2,2,2],[1,3,3,1],[0,0,1,1]],[[1,3,2,0],[2,2,2,2],[1,3,3,1],[0,0,1,1]],[[2,2,2,0],[2,2,2,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,0],[3,2,2,2],[1,3,3,0],[1,2,0,0]],[[1,2,3,0],[2,2,2,2],[1,3,3,0],[1,2,0,0]],[[1,3,2,0],[2,2,2,2],[1,3,3,0],[1,2,0,0]],[[2,2,2,0],[2,2,2,2],[1,3,3,0],[1,2,0,0]],[[0,2,3,1],[2,1,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,2],[2,1,3,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,1],[2,1,3,3],[1,3,3,1],[0,0,1,1]],[[0,2,3,1],[2,1,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,2],[2,1,3,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,1],[2,1,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,3,0],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[1,3,3,0],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[1,3,3,0],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[1,3,3,0],[1,0,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,3,0],[1,0,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,3,0],[1,0,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,3,0],[1,0,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,3,0],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[1,3,3,0],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[1,3,3,0],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[1,3,3,0],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[1,3,3,0],[0,1,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,3,0],[0,1,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,3,0],[0,1,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,3,0],[0,0,2,1]],[[1,2,3,0],[2,2,2,2],[1,3,3,0],[0,0,2,1]],[[1,3,2,0],[2,2,2,2],[1,3,3,0],[0,0,2,1]],[[2,2,2,0],[2,2,2,2],[1,3,3,0],[0,0,2,1]],[[1,2,2,0],[3,2,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,2,2],[0,0,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,2,2],[0,0,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,0],[2,2,2,2],[1,3,2,2],[0,0,1,1]],[[1,3,2,0],[2,2,2,2],[1,3,2,2],[0,0,1,1]],[[2,2,2,0],[2,2,2,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,0],[3,2,2,2],[1,3,2,1],[1,2,0,0]],[[1,2,3,0],[2,2,2,2],[1,3,2,1],[1,2,0,0]],[[1,3,2,0],[2,2,2,2],[1,3,2,1],[1,2,0,0]],[[2,2,2,0],[2,2,2,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,0],[3,2,2,2],[1,3,2,1],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[1,3,2,1],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[1,3,2,1],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[1,3,2,1],[1,1,0,1]],[[1,2,3,0],[2,2,2,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,0],[2,2,2,2],[1,3,2,1],[1,1,0,1]],[[0,2,3,1],[2,1,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,2],[2,1,3,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,1],[2,1,3,3],[1,3,3,2],[0,0,0,1]],[[0,2,2,1],[2,1,3,2],[1,3,3,3],[0,0,0,1]],[[2,2,2,0],[2,2,2,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,0],[3,2,2,2],[1,3,2,1],[1,0,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,2,1],[1,0,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,2,1],[1,0,1,1]],[[1,2,3,0],[2,2,2,2],[1,3,2,1],[1,0,1,1]],[[1,3,2,0],[2,2,2,2],[1,3,2,1],[1,0,1,1]],[[2,2,2,0],[2,2,2,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,0],[3,2,2,2],[1,3,2,1],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[1,3,2,1],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[1,3,2,1],[0,2,0,1]],[[1,2,3,0],[2,2,2,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,0],[2,2,2,2],[1,3,2,1],[0,2,0,1]],[[2,2,2,0],[2,2,2,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,0],[3,2,2,2],[1,3,2,1],[0,1,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,2,1],[0,1,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,2,1],[0,1,1,1]],[[1,2,3,0],[2,2,2,2],[1,3,2,1],[0,1,1,1]],[[1,3,2,0],[2,2,2,2],[1,3,2,1],[0,1,1,1]],[[2,2,2,0],[2,2,2,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,0],[3,2,2,2],[1,3,2,0],[1,2,0,1]],[[1,2,3,0],[2,2,2,2],[1,3,2,0],[1,2,0,1]],[[1,3,2,0],[2,2,2,2],[1,3,2,0],[1,2,0,1]],[[2,2,2,0],[2,2,2,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,0],[3,2,2,2],[1,3,2,0],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[1,3,2,0],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,0],[3,2,2,2],[1,3,2,0],[1,0,2,1]],[[1,2,3,0],[2,2,2,2],[1,3,2,0],[1,0,2,1]],[[1,3,2,0],[2,2,2,2],[1,3,2,0],[1,0,2,1]],[[2,2,2,0],[2,2,2,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,0],[3,2,2,2],[1,3,2,0],[0,2,1,1]],[[1,2,3,0],[2,2,2,2],[1,3,2,0],[0,2,1,1]],[[1,3,2,0],[2,2,2,2],[1,3,2,0],[0,2,1,1]],[[2,2,2,0],[2,2,2,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[1,3,2,0],[0,1,2,1]],[[1,2,3,0],[2,2,2,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,0],[2,2,2,2],[1,3,2,0],[0,1,2,1]],[[2,2,2,0],[2,2,2,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,0],[3,2,2,2],[1,3,1,2],[1,2,0,0]],[[1,2,3,0],[2,2,2,2],[1,3,1,2],[1,2,0,0]],[[1,3,2,0],[2,2,2,2],[1,3,1,2],[1,2,0,0]],[[2,2,2,0],[2,2,2,2],[1,3,1,2],[1,2,0,0]],[[1,2,2,0],[3,2,2,2],[1,3,1,2],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[1,3,1,2],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[1,3,1,2],[1,1,0,1]],[[1,2,3,0],[2,2,2,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,0],[2,2,2,2],[1,3,1,2],[1,1,0,1]],[[2,2,2,0],[2,2,2,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,0],[3,2,2,2],[1,3,1,2],[1,0,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,1,2],[1,0,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,1,2],[1,0,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,1,2],[1,0,1,1]],[[1,2,3,0],[2,2,2,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,0],[2,2,2,2],[1,3,1,2],[1,0,1,1]],[[2,2,2,0],[2,2,2,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,0],[3,2,2,2],[1,3,1,2],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[1,3,1,2],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[1,3,1,2],[0,2,0,1]],[[1,2,3,0],[2,2,2,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,0],[2,2,2,2],[1,3,1,2],[0,2,0,1]],[[2,2,2,0],[2,2,2,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,0],[3,2,2,2],[1,3,1,2],[0,1,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,1,2],[0,1,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,1,2],[0,1,1,1]],[[1,2,3,0],[2,2,2,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,0],[2,2,2,2],[1,3,1,2],[0,1,1,1]],[[2,2,2,0],[2,2,2,2],[1,3,1,2],[0,1,1,1]],[[1,2,2,0],[3,2,2,2],[1,3,1,1],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,1,1],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,1,1],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,1,1],[0,2,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,1,1],[0,2,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,1,0],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[1,3,1,0],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[1,3,1,0],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[1,3,1,0],[0,2,2,1]],[[1,2,3,0],[2,2,2,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,0],[2,2,2,2],[1,3,1,0],[0,2,2,1]],[[2,2,2,0],[2,2,2,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[1,3,0,2],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,0,2],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,0,2],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,0,2],[1,1,2,0]],[[0,3,2,1],[2,1,3,2],[2,0,0,2],[1,2,2,1]],[[0,2,3,1],[2,1,3,2],[2,0,0,2],[1,2,2,1]],[[0,2,2,2],[2,1,3,2],[2,0,0,2],[1,2,2,1]],[[0,2,2,1],[2,1,3,3],[2,0,0,2],[1,2,2,1]],[[0,2,3,1],[2,1,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,2],[2,1,3,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,3,3],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,1,3,2],[2,0,1,3],[0,2,2,1]],[[0,2,2,1],[2,1,3,2],[2,0,1,2],[0,2,3,1]],[[0,2,2,1],[2,1,3,2],[2,0,1,2],[0,2,2,2]],[[0,2,3,1],[2,1,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,2],[2,1,3,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,1,3,3],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,1,3,2],[2,0,1,3],[1,1,2,1]],[[0,2,2,1],[2,1,3,2],[2,0,1,2],[1,1,2,2]],[[0,2,3,1],[2,1,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,2],[2,1,3,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,1,3,3],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,1,3,2],[2,0,2,3],[0,2,1,1]],[[0,2,2,1],[2,1,3,2],[2,0,2,2],[0,2,1,2]],[[0,2,3,1],[2,1,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,2],[2,1,3,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,3,3],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,1,3,2],[2,0,2,3],[0,2,2,0]],[[0,2,3,1],[2,1,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,2],[2,1,3,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,1,3,3],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,1,3,2],[2,0,2,3],[1,1,1,1]],[[0,2,2,1],[2,1,3,2],[2,0,2,2],[1,1,1,2]],[[0,2,3,1],[2,1,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,2],[2,1,3,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,1,3,3],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,1,3,2],[2,0,2,3],[1,1,2,0]],[[0,2,3,1],[2,1,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,2],[2,1,3,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,1,3,3],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,1,3,2],[2,0,2,3],[1,2,0,1]],[[0,2,3,1],[2,1,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,2],[2,1,3,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,1],[2,1,3,3],[2,0,2,2],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[1,3,0,2],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[1,3,0,2],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[1,3,0,2],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,0],[3,2,2,2],[1,3,0,2],[1,0,2,1]],[[1,2,3,0],[2,2,2,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,0],[2,2,2,2],[1,3,0,2],[1,0,2,1]],[[2,2,2,0],[2,2,2,2],[1,3,0,2],[1,0,2,1]],[[0,2,3,1],[2,1,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,2],[2,1,3,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,1,3,3],[2,0,3,0],[0,2,2,1]],[[0,2,3,1],[2,1,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,2],[2,1,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,1,3,3],[2,0,3,0],[1,1,2,1]],[[0,3,2,1],[2,1,3,2],[2,0,3,0],[1,2,2,0]],[[0,2,3,1],[2,1,3,2],[2,0,3,0],[1,2,2,0]],[[0,2,2,2],[2,1,3,2],[2,0,3,0],[1,2,2,0]],[[0,2,2,1],[2,1,4,2],[2,0,3,0],[1,2,2,0]],[[0,2,3,1],[2,1,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,2],[2,1,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[2,1,3,3],[2,0,3,1],[0,2,1,1]],[[0,2,3,1],[2,1,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,2],[2,1,3,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,1,3,3],[2,0,3,1],[0,2,2,0]],[[0,2,3,1],[2,1,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,2],[2,1,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[2,1,3,3],[2,0,3,1],[1,1,1,1]],[[0,2,3,1],[2,1,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,2],[2,1,3,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,1,3,3],[2,0,3,1],[1,1,2,0]],[[0,2,3,1],[2,1,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,2],[2,1,3,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,1,3,3],[2,0,3,1],[1,2,0,1]],[[0,2,3,1],[2,1,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,2],[2,1,3,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,1,3,3],[2,0,3,1],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[1,3,0,2],[0,2,2,0]],[[1,2,3,0],[2,2,2,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,0],[2,2,2,2],[1,3,0,2],[0,2,2,0]],[[2,2,2,0],[2,2,2,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,0,2],[0,2,1,1]],[[1,2,3,0],[2,2,2,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,0],[2,2,2,2],[1,3,0,2],[0,2,1,1]],[[2,2,2,0],[2,2,2,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[1,3,0,2],[0,1,2,1]],[[1,2,3,0],[2,2,2,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,0],[2,2,2,2],[1,3,0,2],[0,1,2,1]],[[2,2,2,0],[2,2,2,2],[1,3,0,2],[0,1,2,1]],[[0,2,3,1],[2,1,3,2],[2,0,3,2],[0,0,2,1]],[[0,2,2,2],[2,1,3,2],[2,0,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,3],[2,0,3,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[2,0,3,3],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[2,0,3,2],[0,0,2,2]],[[0,2,3,1],[2,1,3,2],[2,0,3,2],[0,1,1,1]],[[0,2,2,2],[2,1,3,2],[2,0,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,3],[2,0,3,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[2,0,3,3],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[2,0,3,2],[0,1,1,2]],[[0,2,3,1],[2,1,3,2],[2,0,3,2],[0,1,2,0]],[[0,2,2,2],[2,1,3,2],[2,0,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,3],[2,0,3,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,2],[2,0,3,3],[0,1,2,0]],[[0,2,3,1],[2,1,3,2],[2,0,3,2],[1,0,1,1]],[[0,2,2,2],[2,1,3,2],[2,0,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,3,3],[2,0,3,2],[1,0,1,1]],[[0,2,2,1],[2,1,3,2],[2,0,3,3],[1,0,1,1]],[[0,2,2,1],[2,1,3,2],[2,0,3,2],[1,0,1,2]],[[0,2,3,1],[2,1,3,2],[2,0,3,2],[1,0,2,0]],[[0,2,2,2],[2,1,3,2],[2,0,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,3,3],[2,0,3,2],[1,0,2,0]],[[0,2,2,1],[2,1,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,0],[3,2,2,2],[1,3,0,1],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[1,3,0,1],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[1,3,0,1],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[1,3,0,1],[0,2,2,1]],[[1,2,3,0],[2,2,2,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,0],[2,2,2,2],[1,3,0,1],[0,2,2,1]],[[2,2,2,0],[2,2,2,2],[1,3,0,1],[0,2,2,1]],[[0,2,3,1],[2,1,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,2],[2,1,3,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,1,3,3],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,1,3,2],[2,1,1,3],[0,1,2,1]],[[0,2,2,1],[2,1,3,2],[2,1,1,2],[0,1,2,2]],[[0,2,3,1],[2,1,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,2],[2,1,3,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,1,3,3],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,1,3,2],[2,1,1,3],[1,0,2,1]],[[0,2,2,1],[2,1,3,2],[2,1,1,2],[1,0,2,2]],[[1,2,2,0],[3,2,2,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,0],[2,2,2,2],[1,2,3,2],[1,0,0,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,2],[1,0,0,1]],[[2,2,2,0],[2,2,2,2],[1,2,3,2],[1,0,0,1]],[[0,2,3,1],[2,1,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,2],[2,1,3,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,3],[2,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[2,1,2,3],[0,0,2,1]],[[0,2,2,1],[2,1,3,2],[2,1,2,2],[0,0,2,2]],[[0,2,3,1],[2,1,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,2],[2,1,3,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,3],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[2,1,2,3],[0,1,1,1]],[[0,2,2,1],[2,1,3,2],[2,1,2,2],[0,1,1,2]],[[0,2,3,1],[2,1,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,2],[2,1,3,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,3],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,1,3,2],[2,1,2,3],[0,1,2,0]],[[0,2,3,1],[2,1,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,2],[2,1,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,1,3,3],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,1,3,2],[2,1,2,3],[0,2,0,1]],[[0,2,3,1],[2,1,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,2],[2,1,3,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,1,3,3],[2,1,2,2],[0,2,1,0]],[[0,2,3,1],[2,1,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,2],[2,1,3,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,1,3,3],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,1,3,2],[2,1,2,3],[1,0,1,1]],[[0,2,2,1],[2,1,3,2],[2,1,2,2],[1,0,1,2]],[[0,2,3,1],[2,1,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,2],[2,1,3,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,1,3,3],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,1,3,2],[2,1,2,3],[1,0,2,0]],[[0,2,3,1],[2,1,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,2],[2,1,3,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,1,3,3],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,1,3,2],[2,1,2,3],[1,1,0,1]],[[0,2,3,1],[2,1,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,2],[2,1,3,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,1,3,3],[2,1,2,2],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,0],[2,2,2,2],[1,2,3,2],[0,1,0,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,2],[0,1,0,1]],[[2,2,2,0],[2,2,2,2],[1,2,3,2],[0,1,0,1]],[[0,2,3,1],[2,1,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,2],[2,1,3,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,1,3,3],[2,1,3,0],[0,1,2,1]],[[0,2,3,1],[2,1,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,2],[2,1,3,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,1,3,3],[2,1,3,0],[1,0,2,1]],[[0,2,3,1],[2,1,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,2],[2,1,3,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,1],[2,1,3,3],[2,1,3,1],[0,0,2,1]],[[0,2,3,1],[2,1,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,2],[2,1,3,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,1,3,3],[2,1,3,1],[0,1,1,1]],[[0,2,3,1],[2,1,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,2],[2,1,3,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,1,3,3],[2,1,3,1],[0,1,2,0]],[[0,2,3,1],[2,1,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,2],[2,1,3,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,1,3,3],[2,1,3,1],[0,2,0,1]],[[0,2,3,1],[2,1,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,2],[2,1,3,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,1,3,3],[2,1,3,1],[0,2,1,0]],[[0,2,3,1],[2,1,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,2],[2,1,3,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,1,3,3],[2,1,3,1],[1,0,1,1]],[[0,2,3,1],[2,1,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,2],[2,1,3,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,1,3,3],[2,1,3,1],[1,0,2,0]],[[0,2,3,1],[2,1,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,2],[2,1,3,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,1,3,3],[2,1,3,1],[1,1,0,1]],[[0,2,3,1],[2,1,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,2],[2,1,3,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,1,3,3],[2,1,3,1],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[1,2,3,1],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[1,2,3,1],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,0],[2,2,2,2],[1,2,3,1],[1,1,0,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,1],[1,1,0,1]],[[2,2,2,0],[2,2,2,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,0],[3,2,2,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,0],[2,2,2,2],[1,2,3,1],[1,0,2,0]],[[1,3,2,0],[2,2,2,2],[1,2,3,1],[1,0,2,0]],[[2,2,2,0],[2,2,2,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,0],[3,2,2,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,0],[2,2,2,2],[1,2,3,1],[1,0,1,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,1],[1,0,1,1]],[[2,2,2,0],[2,2,2,2],[1,2,3,1],[1,0,1,1]],[[0,2,3,1],[2,1,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,2],[2,1,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,1,3,3],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,1,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,0],[3,2,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[1,2,3,1],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[1,2,3,1],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,0],[2,2,2,2],[1,2,3,1],[0,2,0,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,1],[0,2,0,1]],[[2,2,2,0],[2,2,2,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,0],[3,2,2,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,0],[2,2,2,2],[1,2,3,1],[0,1,2,0]],[[0,2,3,1],[2,1,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,2],[2,1,3,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,1,3,3],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,1,3,2],[2,1,3,3],[1,0,0,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,1],[0,1,2,0]],[[2,2,2,0],[2,2,2,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,0],[3,2,2,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,0],[2,2,2,2],[1,2,3,1],[0,1,1,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,1],[0,1,1,1]],[[2,2,2,0],[2,2,2,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,0],[3,2,2,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,0],[2,2,2,2],[1,2,3,1],[0,0,2,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,1],[0,0,2,1]],[[2,2,2,0],[2,2,2,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,0],[3,2,2,2],[1,2,3,0],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[1,2,3,0],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,0],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,0],[3,2,2,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,0],[2,2,2,2],[1,2,3,0],[1,0,2,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,0],[1,0,2,1]],[[2,2,2,0],[2,2,2,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,0],[3,2,2,2],[1,2,3,0],[0,2,1,1]],[[1,2,3,0],[2,2,2,2],[1,2,3,0],[0,2,1,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,0],[0,2,1,1]],[[2,2,2,0],[2,2,2,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,0],[2,2,2,2],[1,2,3,0],[0,1,2,1]],[[1,3,2,0],[2,2,2,2],[1,2,3,0],[0,1,2,1]],[[2,2,2,0],[2,2,2,2],[1,2,3,0],[0,1,2,1]],[[1,2,2,0],[3,2,2,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,0],[2,2,2,2],[1,2,2,2],[1,1,1,0]],[[1,3,2,0],[2,2,2,2],[1,2,2,2],[1,1,1,0]],[[2,2,2,0],[2,2,2,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,0],[3,2,2,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,0],[2,2,2,2],[1,2,2,2],[1,1,0,1]],[[1,3,2,0],[2,2,2,2],[1,2,2,2],[1,1,0,1]],[[2,2,2,0],[2,2,2,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,0],[3,2,2,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,0],[2,2,2,2],[1,2,2,2],[1,0,2,0]],[[1,3,2,0],[2,2,2,2],[1,2,2,2],[1,0,2,0]],[[2,2,2,0],[2,2,2,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,0],[3,2,2,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,0],[2,2,2,2],[1,2,2,2],[1,0,1,1]],[[1,3,2,0],[2,2,2,2],[1,2,2,2],[1,0,1,1]],[[2,2,2,0],[2,2,2,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,0],[3,2,2,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,0],[2,2,2,2],[1,2,2,2],[0,2,1,0]],[[1,3,2,0],[2,2,2,2],[1,2,2,2],[0,2,1,0]],[[2,2,2,0],[2,2,2,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,0],[3,2,2,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,0],[2,2,2,2],[1,2,2,2],[0,2,0,1]],[[1,3,2,0],[2,2,2,2],[1,2,2,2],[0,2,0,1]],[[2,2,2,0],[2,2,2,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,0],[3,2,2,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,0],[2,2,2,2],[1,2,2,2],[0,1,2,0]],[[1,3,2,0],[2,2,2,2],[1,2,2,2],[0,1,2,0]],[[2,2,2,0],[2,2,2,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,0],[3,2,2,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,0],[2,2,2,2],[1,2,2,2],[0,1,1,1]],[[1,3,2,0],[2,2,2,2],[1,2,2,2],[0,1,1,1]],[[2,2,2,0],[2,2,2,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,0],[3,2,2,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,0],[2,2,2,2],[1,2,2,2],[0,0,2,1]],[[1,3,2,0],[2,2,2,2],[1,2,2,2],[0,0,2,1]],[[2,2,2,0],[2,2,2,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,0],[3,2,2,2],[1,2,1,2],[1,0,2,1]],[[1,2,3,0],[2,2,2,2],[1,2,1,2],[1,0,2,1]],[[1,3,2,0],[2,2,2,2],[1,2,1,2],[1,0,2,1]],[[2,2,2,0],[2,2,2,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,0],[3,2,2,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,0],[2,2,2,2],[1,2,1,2],[0,1,2,1]],[[1,3,2,0],[2,2,2,2],[1,2,1,2],[0,1,2,1]],[[2,2,2,0],[2,2,2,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,0],[3,2,2,2],[1,2,0,2],[0,2,2,1]],[[1,2,3,0],[2,2,2,2],[1,2,0,2],[0,2,2,1]],[[1,3,2,0],[2,2,2,2],[1,2,0,2],[0,2,2,1]],[[2,2,2,0],[2,2,2,2],[1,2,0,2],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,0],[2,2,2,2],[1,1,3,1],[0,2,2,0]],[[1,3,2,0],[2,2,2,2],[1,1,3,1],[0,2,2,0]],[[2,2,2,0],[2,2,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[3,2,2,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,0],[2,2,2,2],[1,1,3,1],[0,2,1,1]],[[1,3,2,0],[2,2,2,2],[1,1,3,1],[0,2,1,1]],[[2,2,2,0],[2,2,2,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,0],[2,2,2,2],[1,1,3,0],[0,2,2,1]],[[1,3,2,0],[2,2,2,2],[1,1,3,0],[0,2,2,1]],[[2,2,2,0],[2,2,2,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,0],[2,2,2,2],[1,1,2,2],[0,2,2,0]],[[1,3,2,0],[2,2,2,2],[1,1,2,2],[0,2,2,0]],[[2,2,2,0],[2,2,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,0],[3,2,2,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,0],[2,2,2,2],[1,1,2,2],[0,2,1,1]],[[1,3,2,0],[2,2,2,2],[1,1,2,2],[0,2,1,1]],[[2,2,2,0],[2,2,2,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,0],[2,2,2,2],[1,1,1,2],[0,2,2,1]],[[1,3,2,0],[2,2,2,2],[1,1,1,2],[0,2,2,1]],[[2,2,2,0],[2,2,2,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[1,1,0,2],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[1,1,0,2],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[1,1,0,2],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[1,1,0,2],[1,2,2,1]],[[1,2,2,0],[3,2,2,2],[1,0,3,1],[1,2,2,0]],[[1,2,3,0],[2,2,2,2],[1,0,3,1],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[1,0,3,1],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[1,0,3,1],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[1,0,3,1],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[1,0,3,1],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,0],[3,2,2,2],[1,0,3,0],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[1,0,3,0],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[1,0,3,0],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,0],[3,2,2,2],[1,0,2,2],[1,2,2,0]],[[1,2,3,0],[2,2,2,2],[1,0,2,2],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[1,0,2,2],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[1,0,2,2],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[1,0,2,2],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[1,0,2,2],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,0],[3,2,2,2],[1,0,1,2],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[1,0,1,2],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[1,0,1,2],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[1,0,1,2],[1,2,2,1]],[[1,2,2,0],[2,2,2,2],[0,3,3,3],[0,0,2,0]],[[1,2,2,0],[2,2,2,2],[0,3,4,2],[0,0,2,0]],[[1,2,2,0],[2,2,2,3],[0,3,3,2],[0,0,2,0]],[[1,2,2,0],[2,2,2,2],[0,3,3,2],[0,0,1,2]],[[1,2,2,0],[2,2,2,2],[0,3,3,3],[0,0,1,1]],[[1,2,2,0],[2,2,2,2],[0,3,4,2],[0,0,1,1]],[[1,2,2,0],[2,2,2,3],[0,3,3,2],[0,0,1,1]],[[1,2,2,0],[3,2,2,2],[0,3,3,1],[1,2,0,0]],[[1,2,3,0],[2,2,2,2],[0,3,3,1],[1,2,0,0]],[[1,3,2,0],[2,2,2,2],[0,3,3,1],[1,2,0,0]],[[2,2,2,0],[2,2,2,2],[0,3,3,1],[1,2,0,0]],[[1,2,2,0],[3,2,2,2],[0,3,3,0],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[0,3,3,0],[1,2,1,0]],[[1,3,2,0],[2,2,2,2],[0,3,3,0],[1,2,1,0]],[[2,2,2,0],[2,2,2,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[0,3,3,0],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[0,3,3,0],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[0,3,3,0],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[0,3,3,0],[1,1,2,0]],[[1,2,2,0],[3,2,2,2],[0,3,2,1],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[0,3,2,1],[1,2,1,0]],[[1,3,2,0],[2,2,2,2],[0,3,2,1],[1,2,1,0]],[[2,2,2,0],[2,2,2,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[0,3,2,1],[1,2,0,1]],[[1,2,3,0],[2,2,2,2],[0,3,2,1],[1,2,0,1]],[[1,3,2,0],[2,2,2,2],[0,3,2,1],[1,2,0,1]],[[2,2,2,0],[2,2,2,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,0],[3,2,2,2],[0,3,2,1],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[0,3,2,1],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[0,3,2,1],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,0],[3,2,2,2],[0,3,2,1],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[0,3,2,1],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[0,3,2,1],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,0],[3,2,2,2],[0,3,2,0],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[0,3,2,0],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[0,3,2,0],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,0],[3,2,2,2],[0,3,2,0],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[0,3,2,0],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[0,3,2,0],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[0,3,2,0],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[0,3,1,2],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,0],[2,2,2,2],[0,3,1,2],[1,2,1,0]],[[2,2,2,0],[2,2,2,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[0,3,1,2],[1,2,0,1]],[[1,2,3,0],[2,2,2,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,0],[2,2,2,2],[0,3,1,2],[1,2,0,1]],[[2,2,2,0],[2,2,2,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,0],[3,2,2,2],[0,3,1,2],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[0,3,1,2],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[0,3,1,2],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,0],[3,2,2,2],[0,3,1,2],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[0,3,1,2],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[0,3,1,2],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,0],[3,2,2,2],[0,3,1,1],[1,2,2,0]],[[1,2,3,0],[2,2,2,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[0,3,1,1],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[0,3,1,0],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[0,3,1,0],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,0],[3,2,2,2],[0,3,0,2],[1,2,2,0]],[[1,2,3,0],[2,2,2,2],[0,3,0,2],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[0,3,0,2],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[0,3,0,2],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[0,3,0,2],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,0],[3,2,2,2],[0,3,0,2],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[0,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[0,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[0,3,0,1],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[0,3,0,1],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[0,3,0,1],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,0],[2,2,2,2],[0,2,3,3],[1,0,2,0]],[[1,2,2,0],[2,2,2,2],[0,2,4,2],[1,0,2,0]],[[1,2,2,0],[2,2,2,3],[0,2,3,2],[1,0,2,0]],[[1,2,2,0],[2,2,2,2],[0,2,3,2],[1,0,1,2]],[[1,2,2,0],[2,2,2,2],[0,2,3,3],[1,0,1,1]],[[1,2,2,0],[2,2,2,2],[0,2,4,2],[1,0,1,1]],[[1,2,2,0],[2,2,2,3],[0,2,3,2],[1,0,1,1]],[[1,2,2,0],[2,2,2,2],[0,2,3,3],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[0,2,4,2],[0,2,1,0]],[[1,2,2,0],[2,2,2,3],[0,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,2,2,2],[0,2,3,2],[0,2,0,2]],[[1,2,2,0],[2,2,2,2],[0,2,3,3],[0,2,0,1]],[[1,2,2,0],[2,2,2,2],[0,2,4,2],[0,2,0,1]],[[1,2,2,0],[2,2,2,3],[0,2,3,2],[0,2,0,1]],[[1,2,2,0],[2,2,2,2],[0,2,3,2],[0,1,3,0]],[[1,2,2,0],[2,2,2,2],[0,2,3,3],[0,1,2,0]],[[1,2,2,0],[2,2,2,2],[0,2,4,2],[0,1,2,0]],[[1,2,2,0],[2,2,2,3],[0,2,3,2],[0,1,2,0]],[[1,2,2,0],[2,2,2,2],[0,2,3,2],[0,1,1,2]],[[1,2,2,0],[2,2,2,2],[0,2,3,3],[0,1,1,1]],[[1,2,2,0],[2,2,2,2],[0,2,4,2],[0,1,1,1]],[[1,2,2,0],[2,2,2,3],[0,2,3,2],[0,1,1,1]],[[1,2,2,0],[2,2,2,2],[0,2,3,2],[0,0,2,2]],[[1,2,2,0],[2,2,2,2],[0,2,3,3],[0,0,2,1]],[[1,2,2,0],[2,2,2,2],[0,2,4,2],[0,0,2,1]],[[1,2,2,0],[2,2,2,3],[0,2,3,2],[0,0,2,1]],[[1,2,2,0],[3,2,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[0,2,3,1],[1,2,1,0]],[[1,3,2,0],[2,2,2,2],[0,2,3,1],[1,2,1,0]],[[2,2,2,0],[2,2,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,0],[2,2,2,2],[0,2,3,1],[1,2,0,1]],[[1,3,2,0],[2,2,2,2],[0,2,3,1],[1,2,0,1]],[[2,2,2,0],[2,2,2,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,0],[3,2,2,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[0,2,3,1],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[0,2,3,1],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,0],[3,2,2,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[0,2,3,1],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[0,2,3,1],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,0],[2,2,2,2],[0,2,3,1],[0,1,2,2]],[[1,2,2,0],[2,2,2,2],[0,2,3,1],[0,1,3,1]],[[1,2,2,0],[2,2,2,2],[0,2,4,1],[0,1,2,1]],[[1,2,2,0],[3,2,2,2],[0,2,3,0],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[0,2,3,0],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[0,2,3,0],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,0],[3,2,2,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[0,2,3,0],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[0,2,3,0],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,0],[2,2,2,2],[0,2,2,2],[1,2,1,0]],[[1,3,2,0],[2,2,2,2],[0,2,2,2],[1,2,1,0]],[[2,2,2,0],[2,2,2,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[3,2,2,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,0],[2,2,2,2],[0,2,2,2],[1,2,0,1]],[[1,3,2,0],[2,2,2,2],[0,2,2,2],[1,2,0,1]],[[2,2,2,0],[2,2,2,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,0],[3,2,2,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,0],[2,2,2,2],[0,2,2,2],[1,1,2,0]],[[1,3,2,0],[2,2,2,2],[0,2,2,2],[1,1,2,0]],[[2,2,2,0],[2,2,2,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,0],[3,2,2,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,0],[2,2,2,2],[0,2,2,2],[1,1,1,1]],[[1,3,2,0],[2,2,2,2],[0,2,2,2],[1,1,1,1]],[[2,2,2,0],[2,2,2,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,0],[2,2,2,2],[0,2,2,2],[0,1,2,2]],[[1,2,2,0],[2,2,2,2],[0,2,2,2],[0,1,3,1]],[[1,2,2,0],[2,2,2,2],[0,2,2,3],[0,1,2,1]],[[1,2,2,0],[2,2,2,3],[0,2,2,2],[0,1,2,1]],[[1,2,2,0],[3,2,2,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,0],[2,2,2,2],[0,2,1,2],[1,1,2,1]],[[1,3,2,0],[2,2,2,2],[0,2,1,2],[1,1,2,1]],[[2,2,2,0],[2,2,2,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,0],[3,2,2,2],[0,2,0,2],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[0,2,0,2],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[0,2,0,2],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,0],[2,2,2,2],[0,1,3,2],[0,2,3,0]],[[1,2,2,0],[2,2,2,2],[0,1,3,3],[0,2,2,0]],[[1,2,2,0],[2,2,2,2],[0,1,4,2],[0,2,2,0]],[[1,2,2,0],[2,2,2,3],[0,1,3,2],[0,2,2,0]],[[1,2,2,0],[2,2,2,2],[0,1,3,2],[0,2,1,2]],[[1,2,2,0],[2,2,2,2],[0,1,3,3],[0,2,1,1]],[[1,2,2,0],[2,2,2,2],[0,1,4,2],[0,2,1,1]],[[1,2,2,0],[2,2,2,3],[0,1,3,2],[0,2,1,1]],[[1,2,2,0],[3,2,2,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,0],[2,2,2,2],[0,1,3,1],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[0,1,3,1],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[0,1,3,1],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[0,1,3,1],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,0],[2,2,2,2],[0,1,3,1],[0,2,2,2]],[[1,2,2,0],[2,2,2,2],[0,1,3,1],[0,2,3,1]],[[1,2,2,0],[2,2,2,2],[0,1,4,1],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[0,1,3,0],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[0,1,3,0],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,0],[3,2,2,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,0],[2,2,2,2],[0,1,2,2],[1,2,2,0]],[[1,3,2,0],[2,2,2,2],[0,1,2,2],[1,2,2,0]],[[2,2,2,0],[2,2,2,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,0],[3,2,2,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,0],[2,2,2,2],[0,1,2,2],[1,2,1,1]],[[1,3,2,0],[2,2,2,2],[0,1,2,2],[1,2,1,1]],[[2,2,2,0],[2,2,2,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,0],[2,2,2,2],[0,1,2,2],[0,2,2,2]],[[1,2,2,0],[2,2,2,2],[0,1,2,2],[0,2,3,1]],[[1,2,2,0],[2,2,2,2],[0,1,2,3],[0,2,2,1]],[[1,2,2,0],[2,2,2,3],[0,1,2,2],[0,2,2,1]],[[1,2,2,0],[3,2,2,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,0],[2,2,2,2],[0,1,1,2],[1,2,2,1]],[[1,3,2,0],[2,2,2,2],[0,1,1,2],[1,2,2,1]],[[2,2,2,0],[2,2,2,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,2,2,2],[0,0,3,2],[0,2,2,2]],[[1,2,2,0],[2,2,2,2],[0,0,3,2],[0,2,3,1]],[[1,2,2,0],[2,2,2,2],[0,0,3,3],[0,2,2,1]],[[1,2,2,0],[2,2,2,3],[0,0,3,2],[0,2,2,1]],[[1,2,2,0],[2,2,2,1],[3,3,3,2],[1,0,0,0]],[[1,2,2,0],[3,2,2,1],[2,3,3,2],[1,0,0,0]],[[1,2,3,0],[2,2,2,1],[2,3,3,2],[1,0,0,0]],[[1,3,2,0],[2,2,2,1],[2,3,3,2],[1,0,0,0]],[[2,2,2,0],[2,2,2,1],[2,3,3,2],[1,0,0,0]],[[1,2,2,0],[2,2,2,1],[3,3,2,2],[1,0,1,0]],[[1,2,2,0],[3,2,2,1],[2,3,2,2],[1,0,1,0]],[[1,2,3,0],[2,2,2,1],[2,3,2,2],[1,0,1,0]],[[1,3,2,0],[2,2,2,1],[2,3,2,2],[1,0,1,0]],[[2,2,2,0],[2,2,2,1],[2,3,2,2],[1,0,1,0]],[[1,2,2,0],[2,2,2,1],[3,3,2,2],[1,0,0,1]],[[1,2,2,0],[3,2,2,1],[2,3,2,2],[1,0,0,1]],[[1,2,3,0],[2,2,2,1],[2,3,2,2],[1,0,0,1]],[[1,3,2,0],[2,2,2,1],[2,3,2,2],[1,0,0,1]],[[2,2,2,0],[2,2,2,1],[2,3,2,2],[1,0,0,1]],[[1,2,2,0],[2,2,2,1],[3,3,2,1],[1,0,1,1]],[[1,2,2,0],[3,2,2,1],[2,3,2,1],[1,0,1,1]],[[1,3,2,0],[2,2,2,1],[2,3,2,1],[1,0,1,1]],[[2,2,2,0],[2,2,2,1],[2,3,2,1],[1,0,1,1]],[[1,2,2,0],[2,2,2,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[2,2,2,1],[3,3,1,2],[1,2,0,0]],[[1,2,2,0],[3,2,2,1],[2,3,1,2],[1,2,0,0]],[[1,3,2,0],[2,2,2,1],[2,3,1,2],[1,2,0,0]],[[2,2,2,0],[2,2,2,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,0],[2,2,2,1],[2,3,1,2],[2,1,1,0]],[[1,2,2,0],[2,2,2,1],[3,3,1,2],[1,1,1,0]],[[1,2,2,0],[3,2,2,1],[2,3,1,2],[1,1,1,0]],[[1,3,2,0],[2,2,2,1],[2,3,1,2],[1,1,1,0]],[[2,2,2,0],[2,2,2,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,0],[2,2,2,1],[2,3,1,2],[2,1,0,1]],[[1,2,2,0],[2,2,2,1],[3,3,1,2],[1,1,0,1]],[[1,2,2,0],[3,2,2,1],[2,3,1,2],[1,1,0,1]],[[1,3,2,0],[2,2,2,1],[2,3,1,2],[1,1,0,1]],[[2,2,2,0],[2,2,2,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,0],[2,2,2,1],[3,3,1,2],[0,2,1,0]],[[1,2,2,0],[3,2,2,1],[2,3,1,2],[0,2,1,0]],[[1,3,2,0],[2,2,2,1],[2,3,1,2],[0,2,1,0]],[[2,2,2,0],[2,2,2,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,2,2,1],[3,3,1,2],[0,2,0,1]],[[1,2,2,0],[3,2,2,1],[2,3,1,2],[0,2,0,1]],[[1,3,2,0],[2,2,2,1],[2,3,1,2],[0,2,0,1]],[[2,2,2,0],[2,2,2,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,0],[2,2,2,1],[2,3,1,1],[2,2,0,1]],[[1,2,2,0],[2,2,2,1],[3,3,1,1],[1,2,0,1]],[[1,2,2,0],[3,2,2,1],[2,3,1,1],[1,2,0,1]],[[1,3,2,0],[2,2,2,1],[2,3,1,1],[1,2,0,1]],[[2,2,2,0],[2,2,2,1],[2,3,1,1],[1,2,0,1]],[[1,2,2,0],[2,2,2,1],[2,3,1,1],[2,1,1,1]],[[1,2,2,0],[2,2,2,1],[3,3,1,1],[1,1,1,1]],[[1,2,2,0],[3,2,2,1],[2,3,1,1],[1,1,1,1]],[[1,3,2,0],[2,2,2,1],[2,3,1,1],[1,1,1,1]],[[2,2,2,0],[2,2,2,1],[2,3,1,1],[1,1,1,1]],[[1,2,2,0],[2,2,2,1],[3,3,1,1],[0,2,1,1]],[[1,2,2,0],[3,2,2,1],[2,3,1,1],[0,2,1,1]],[[1,3,2,0],[2,2,2,1],[2,3,1,1],[0,2,1,1]],[[2,2,2,0],[2,2,2,1],[2,3,1,1],[0,2,1,1]],[[1,2,2,0],[2,2,2,1],[2,3,0,2],[2,2,1,0]],[[1,2,2,0],[2,2,2,1],[3,3,0,2],[1,2,1,0]],[[1,2,2,0],[3,2,2,1],[2,3,0,2],[1,2,1,0]],[[1,3,2,0],[2,2,2,1],[2,3,0,2],[1,2,1,0]],[[2,2,2,0],[2,2,2,1],[2,3,0,2],[1,2,1,0]],[[1,2,2,0],[2,2,2,1],[2,3,0,2],[2,1,2,0]],[[1,2,2,0],[2,2,2,1],[3,3,0,2],[1,1,2,0]],[[1,2,2,0],[3,2,2,1],[2,3,0,2],[1,1,2,0]],[[1,3,2,0],[2,2,2,1],[2,3,0,2],[1,1,2,0]],[[2,2,2,0],[2,2,2,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,0],[2,2,2,1],[3,3,0,2],[0,2,2,0]],[[1,2,2,0],[3,2,2,1],[2,3,0,2],[0,2,2,0]],[[1,3,2,0],[2,2,2,1],[2,3,0,2],[0,2,2,0]],[[2,2,2,0],[2,2,2,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,0],[2,2,2,1],[2,3,0,1],[2,2,1,1]],[[1,2,2,0],[2,2,2,1],[3,3,0,1],[1,2,1,1]],[[1,2,2,0],[3,2,2,1],[2,3,0,1],[1,2,1,1]],[[1,3,2,0],[2,2,2,1],[2,3,0,1],[1,2,1,1]],[[2,2,2,0],[2,2,2,1],[2,3,0,1],[1,2,1,1]],[[1,2,2,0],[2,2,2,1],[2,3,0,1],[2,1,2,1]],[[1,2,2,0],[2,2,2,1],[3,3,0,1],[1,1,2,1]],[[1,2,2,0],[3,2,2,1],[2,3,0,1],[1,1,2,1]],[[1,3,2,0],[2,2,2,1],[2,3,0,1],[1,1,2,1]],[[2,2,2,0],[2,2,2,1],[2,3,0,1],[1,1,2,1]],[[1,2,2,0],[2,2,2,1],[3,3,0,1],[0,2,2,1]],[[1,2,2,0],[3,2,2,1],[2,3,0,1],[0,2,2,1]],[[1,3,2,0],[2,2,2,1],[2,3,0,1],[0,2,2,1]],[[2,2,2,0],[2,2,2,1],[2,3,0,1],[0,2,2,1]],[[1,2,2,0],[2,2,2,1],[2,2,3,2],[2,1,0,0]],[[1,2,2,0],[2,2,2,1],[3,2,3,2],[1,1,0,0]],[[1,2,2,0],[3,2,2,1],[2,2,3,2],[1,1,0,0]],[[1,2,3,0],[2,2,2,1],[2,2,3,2],[1,1,0,0]],[[1,3,2,0],[2,2,2,1],[2,2,3,2],[1,1,0,0]],[[2,2,2,0],[2,2,2,1],[2,2,3,2],[1,1,0,0]],[[1,2,2,0],[2,2,2,1],[3,2,3,2],[0,2,0,0]],[[1,2,2,0],[3,2,2,1],[2,2,3,2],[0,2,0,0]],[[1,2,3,0],[2,2,2,1],[2,2,3,2],[0,2,0,0]],[[1,3,2,0],[2,2,2,1],[2,2,3,2],[0,2,0,0]],[[2,2,2,0],[2,2,2,1],[2,2,3,2],[0,2,0,0]],[[1,2,2,0],[2,2,2,1],[2,2,2,2],[2,2,0,0]],[[1,2,2,0],[2,2,2,1],[3,2,2,2],[1,2,0,0]],[[1,2,2,0],[3,2,2,1],[2,2,2,2],[1,2,0,0]],[[1,2,3,0],[2,2,2,1],[2,2,2,2],[1,2,0,0]],[[1,3,2,0],[2,2,2,1],[2,2,2,2],[1,2,0,0]],[[2,2,2,0],[2,2,2,1],[2,2,2,2],[1,2,0,0]],[[1,2,2,0],[2,2,2,1],[2,2,2,2],[2,1,1,0]],[[1,2,2,0],[2,2,2,1],[3,2,2,2],[1,1,1,0]],[[1,2,2,0],[3,2,2,1],[2,2,2,2],[1,1,1,0]],[[1,2,3,0],[2,2,2,1],[2,2,2,2],[1,1,1,0]],[[1,3,2,0],[2,2,2,1],[2,2,2,2],[1,1,1,0]],[[2,2,2,0],[2,2,2,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,2,2,1],[2,2,2,2],[2,1,0,1]],[[1,2,2,0],[2,2,2,1],[3,2,2,2],[1,1,0,1]],[[1,2,2,0],[3,2,2,1],[2,2,2,2],[1,1,0,1]],[[1,2,3,0],[2,2,2,1],[2,2,2,2],[1,1,0,1]],[[1,3,2,0],[2,2,2,1],[2,2,2,2],[1,1,0,1]],[[2,2,2,0],[2,2,2,1],[2,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,2,2,1],[2,2,2,2],[2,0,2,0]],[[1,2,2,0],[2,2,2,1],[3,2,2,2],[1,0,2,0]],[[1,2,2,0],[3,2,2,1],[2,2,2,2],[1,0,2,0]],[[1,2,3,0],[2,2,2,1],[2,2,2,2],[1,0,2,0]],[[1,3,2,0],[2,2,2,1],[2,2,2,2],[1,0,2,0]],[[2,2,2,0],[2,2,2,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,2,2,1],[2,2,2,2],[2,0,1,1]],[[1,2,2,0],[2,2,2,1],[3,2,2,2],[1,0,1,1]],[[1,2,2,0],[3,2,2,1],[2,2,2,2],[1,0,1,1]],[[1,2,3,0],[2,2,2,1],[2,2,2,2],[1,0,1,1]],[[1,3,2,0],[2,2,2,1],[2,2,2,2],[1,0,1,1]],[[2,2,2,0],[2,2,2,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,0],[2,2,2,1],[3,2,2,2],[0,2,1,0]],[[1,2,2,0],[3,2,2,1],[2,2,2,2],[0,2,1,0]],[[1,2,3,0],[2,2,2,1],[2,2,2,2],[0,2,1,0]],[[1,3,2,0],[2,2,2,1],[2,2,2,2],[0,2,1,0]],[[2,2,2,0],[2,2,2,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,2,2,1],[3,2,2,2],[0,2,0,1]],[[1,2,2,0],[3,2,2,1],[2,2,2,2],[0,2,0,1]],[[1,2,3,0],[2,2,2,1],[2,2,2,2],[0,2,0,1]],[[1,3,2,0],[2,2,2,1],[2,2,2,2],[0,2,0,1]],[[2,2,2,0],[2,2,2,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[2,2,2,1],[3,2,2,2],[0,1,2,0]],[[1,2,2,0],[3,2,2,1],[2,2,2,2],[0,1,2,0]],[[1,2,3,0],[2,2,2,1],[2,2,2,2],[0,1,2,0]],[[1,3,2,0],[2,2,2,1],[2,2,2,2],[0,1,2,0]],[[2,2,2,0],[2,2,2,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[2,2,2,1],[3,2,2,2],[0,1,1,1]],[[1,2,2,0],[3,2,2,1],[2,2,2,2],[0,1,1,1]],[[1,2,3,0],[2,2,2,1],[2,2,2,2],[0,1,1,1]],[[1,3,2,0],[2,2,2,1],[2,2,2,2],[0,1,1,1]],[[2,2,2,0],[2,2,2,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,2,2,1],[2,2,2,1],[2,2,0,1]],[[1,2,2,0],[2,2,2,1],[3,2,2,1],[1,2,0,1]],[[1,2,2,0],[3,2,2,1],[2,2,2,1],[1,2,0,1]],[[1,3,2,0],[2,2,2,1],[2,2,2,1],[1,2,0,1]],[[2,2,2,0],[2,2,2,1],[2,2,2,1],[1,2,0,1]],[[1,2,2,0],[2,2,2,1],[2,2,2,1],[2,1,1,1]],[[1,2,2,0],[2,2,2,1],[3,2,2,1],[1,1,1,1]],[[1,2,2,0],[3,2,2,1],[2,2,2,1],[1,1,1,1]],[[1,2,3,0],[2,2,2,1],[2,2,2,1],[1,1,1,1]],[[1,3,2,0],[2,2,2,1],[2,2,2,1],[1,1,1,1]],[[2,2,2,0],[2,2,2,1],[2,2,2,1],[1,1,1,1]],[[1,2,2,0],[2,2,2,1],[2,2,2,1],[2,0,2,1]],[[1,2,2,0],[2,2,2,1],[3,2,2,1],[1,0,2,1]],[[1,2,2,0],[3,2,2,1],[2,2,2,1],[1,0,2,1]],[[1,2,3,0],[2,2,2,1],[2,2,2,1],[1,0,2,1]],[[1,3,2,0],[2,2,2,1],[2,2,2,1],[1,0,2,1]],[[2,2,2,0],[2,2,2,1],[2,2,2,1],[1,0,2,1]],[[1,2,2,0],[2,2,2,1],[3,2,2,1],[0,2,1,1]],[[1,2,2,0],[3,2,2,1],[2,2,2,1],[0,2,1,1]],[[1,2,3,0],[2,2,2,1],[2,2,2,1],[0,2,1,1]],[[1,3,2,0],[2,2,2,1],[2,2,2,1],[0,2,1,1]],[[2,2,2,0],[2,2,2,1],[2,2,2,1],[0,2,1,1]],[[1,2,2,0],[2,2,2,1],[3,2,2,1],[0,1,2,1]],[[1,2,2,0],[3,2,2,1],[2,2,2,1],[0,1,2,1]],[[1,2,3,0],[2,2,2,1],[2,2,2,1],[0,1,2,1]],[[1,3,2,0],[2,2,2,1],[2,2,2,1],[0,1,2,1]],[[2,2,2,0],[2,2,2,1],[2,2,2,1],[0,1,2,1]],[[1,2,2,0],[2,2,2,1],[2,2,1,2],[2,1,2,0]],[[1,2,2,0],[2,2,2,1],[3,2,1,2],[1,1,2,0]],[[1,2,2,0],[3,2,2,1],[2,2,1,2],[1,1,2,0]],[[1,2,3,0],[2,2,2,1],[2,2,1,2],[1,1,2,0]],[[1,3,2,0],[2,2,2,1],[2,2,1,2],[1,1,2,0]],[[2,2,2,0],[2,2,2,1],[2,2,1,2],[1,1,2,0]],[[1,2,2,0],[2,2,2,1],[3,2,1,2],[0,2,2,0]],[[1,2,2,0],[3,2,2,1],[2,2,1,2],[0,2,2,0]],[[1,2,3,0],[2,2,2,1],[2,2,1,2],[0,2,2,0]],[[1,3,2,0],[2,2,2,1],[2,2,1,2],[0,2,2,0]],[[2,2,2,0],[2,2,2,1],[2,2,1,2],[0,2,2,0]],[[1,2,2,0],[2,2,2,1],[2,2,1,1],[2,1,2,1]],[[1,2,2,0],[2,2,2,1],[3,2,1,1],[1,1,2,1]],[[1,2,2,0],[3,2,2,1],[2,2,1,1],[1,1,2,1]],[[1,2,3,0],[2,2,2,1],[2,2,1,1],[1,1,2,1]],[[1,3,2,0],[2,2,2,1],[2,2,1,1],[1,1,2,1]],[[2,2,2,0],[2,2,2,1],[2,2,1,1],[1,1,2,1]],[[1,2,2,0],[2,2,2,1],[3,2,1,1],[0,2,2,1]],[[1,2,2,0],[3,2,2,1],[2,2,1,1],[0,2,2,1]],[[1,2,3,0],[2,2,2,1],[2,2,1,1],[0,2,2,1]],[[1,3,2,0],[2,2,2,1],[2,2,1,1],[0,2,2,1]],[[2,2,2,0],[2,2,2,1],[2,2,1,1],[0,2,2,1]],[[1,2,2,0],[2,2,2,1],[2,2,0,2],[1,3,2,0]],[[1,2,2,0],[2,2,2,1],[2,2,0,2],[2,2,2,0]],[[1,2,2,0],[2,2,2,1],[3,2,0,2],[1,2,2,0]],[[1,2,2,0],[3,2,2,1],[2,2,0,2],[1,2,2,0]],[[1,3,2,0],[2,2,2,1],[2,2,0,2],[1,2,2,0]],[[2,2,2,0],[2,2,2,1],[2,2,0,2],[1,2,2,0]],[[1,2,2,0],[2,2,2,1],[2,2,0,2],[2,1,2,1]],[[1,2,2,0],[2,2,2,1],[3,2,0,2],[1,1,2,1]],[[1,2,2,0],[3,2,2,1],[2,2,0,2],[1,1,2,1]],[[1,2,3,0],[2,2,2,1],[2,2,0,2],[1,1,2,1]],[[1,3,2,0],[2,2,2,1],[2,2,0,2],[1,1,2,1]],[[2,2,2,0],[2,2,2,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,0],[2,2,2,1],[3,2,0,2],[0,2,2,1]],[[1,2,2,0],[3,2,2,1],[2,2,0,2],[0,2,2,1]],[[1,2,3,0],[2,2,2,1],[2,2,0,2],[0,2,2,1]],[[1,3,2,0],[2,2,2,1],[2,2,0,2],[0,2,2,1]],[[2,2,2,0],[2,2,2,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[2,2,2,1],[2,2,0,1],[1,3,2,1]],[[1,2,2,0],[2,2,2,1],[2,2,0,1],[2,2,2,1]],[[1,2,2,0],[2,2,2,1],[3,2,0,1],[1,2,2,1]],[[1,2,2,0],[3,2,2,1],[2,2,0,1],[1,2,2,1]],[[1,3,2,0],[2,2,2,1],[2,2,0,1],[1,2,2,1]],[[2,2,2,0],[2,2,2,1],[2,2,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,0],[1,4,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,0],[1,3,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,0],[1,3,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,0,0],[1,3,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,0],[1,3,3,1],[1,2,2,2]],[[0,2,2,1],[2,2,0,0],[1,4,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,0],[1,3,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,0],[1,3,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,0,0],[1,3,3,2],[1,2,3,0]],[[0,2,2,1],[3,2,0,0],[2,2,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,0],[3,2,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,0],[2,2,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,0],[2,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,0,0],[2,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,0],[2,2,3,1],[1,2,2,2]],[[0,2,2,1],[3,2,0,0],[2,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,0],[3,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,0],[2,2,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,0],[2,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,0,0],[2,2,3,2],[1,2,3,0]],[[0,2,2,1],[3,2,0,0],[2,3,3,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,0],[3,3,3,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,0],[2,4,3,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,0],[2,3,3,1],[0,3,2,1]],[[0,2,2,1],[2,2,0,0],[2,3,3,1],[0,2,3,1]],[[0,2,2,1],[2,2,0,0],[2,3,3,1],[0,2,2,2]],[[0,2,2,1],[3,2,0,0],[2,3,3,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,0],[3,3,3,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,0],[2,4,3,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,0],[2,3,3,1],[2,1,2,1]],[[0,2,2,1],[3,2,0,0],[2,3,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,0],[3,3,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,0],[2,4,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,0],[2,3,3,2],[0,3,2,0]],[[0,2,2,1],[2,2,0,0],[2,3,3,2],[0,2,3,0]],[[0,2,2,1],[3,2,0,0],[2,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,0],[3,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,0],[2,4,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,0],[2,3,3,2],[2,1,2,0]],[[0,2,2,1],[2,2,0,1],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[1,2,2,2],[2,2,2,1]],[[0,2,2,1],[2,2,0,1],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[2,2,0,1],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[2,2,0,1],[1,2,2,2],[1,2,2,2]],[[0,2,2,1],[2,2,0,1],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[1,2,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,1],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,0,1],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,1],[1,2,3,1],[1,2,2,2]],[[0,2,2,1],[2,2,0,1],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,1],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[2,2,0,1],[1,2,3,2],[1,2,1,2]],[[0,2,2,1],[2,2,0,1],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,1],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[2,2,0,1],[1,2,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,1],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,0,1],[1,2,3,2],[1,2,3,0]],[[0,2,2,1],[2,2,0,1],[1,4,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[1,3,1,3],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[1,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,2,0,1],[1,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,2,0,1],[1,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,2,0,1],[1,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,2,0,1],[1,4,2,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[1,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,1],[1,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,2,0,1],[1,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,1],[1,3,2,1],[1,2,2,2]],[[0,2,2,1],[2,2,0,1],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[2,2,0,1],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[2,2,0,1],[1,3,2,2],[1,1,2,2]],[[0,2,2,1],[2,2,0,1],[1,4,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,1],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,1],[1,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,2,0,1],[1,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,2,0,1],[1,4,3,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,1],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,1],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[2,2,0,1],[1,3,3,1],[1,1,2,2]],[[0,2,2,1],[2,2,0,1],[1,4,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,0,1],[1,3,4,1],[1,2,1,1]],[[0,2,2,1],[2,2,0,1],[1,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,2,0,1],[1,3,3,1],[1,3,1,1]],[[0,2,2,1],[2,2,0,1],[1,4,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,0,1],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[2,2,0,1],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[2,2,0,1],[1,3,3,2],[1,1,1,2]],[[0,2,2,1],[2,2,0,1],[1,4,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,1],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,1],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[2,2,0,1],[1,3,3,2],[1,1,3,0]],[[0,2,2,1],[2,2,0,1],[1,4,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,0,1],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[2,2,0,1],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[2,2,0,1],[1,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,2,0,1],[1,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,2,0,1],[1,3,3,2],[1,2,0,2]],[[0,2,2,1],[2,2,0,1],[1,4,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,0,1],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[2,2,0,1],[1,3,3,3],[1,2,1,0]],[[0,2,2,1],[2,2,0,1],[1,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,2,0,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,2,2,1],[2,1,3,2],[2,1,1,0]],[[1,2,2,0],[2,2,2,1],[3,1,3,2],[1,1,1,0]],[[1,2,2,0],[3,2,2,1],[2,1,3,2],[1,1,1,0]],[[1,2,3,0],[2,2,2,1],[2,1,3,2],[1,1,1,0]],[[1,3,2,0],[2,2,2,1],[2,1,3,2],[1,1,1,0]],[[2,2,2,0],[2,2,2,1],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[3,2,0,1],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[3,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,1,2,3],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,1,2,2],[2,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,1,2,2],[1,3,2,1]],[[0,2,2,1],[2,2,0,1],[2,1,2,2],[1,2,3,1]],[[0,2,2,1],[2,2,0,1],[2,1,2,2],[1,2,2,2]],[[0,2,2,1],[3,2,0,1],[2,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[3,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,1,4,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,1,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,0,1],[2,1,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,1],[2,1,3,1],[1,2,2,2]],[[0,2,2,1],[2,2,0,1],[2,1,4,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,1],[2,1,3,3],[1,2,1,1]],[[0,2,2,1],[2,2,0,1],[2,1,3,2],[1,2,1,2]],[[0,2,2,1],[3,2,0,1],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,1],[3,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,1,4,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,1,3,3],[1,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,1,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,1,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,0,1],[2,1,3,2],[1,2,3,0]],[[0,2,2,1],[3,2,0,1],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[3,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[2,2,0,1],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[2,2,0,1],[2,2,1,2],[1,2,2,2]],[[0,2,2,1],[3,2,0,1],[2,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[3,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,2,2,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,2,2,1],[1,3,2,1]],[[0,2,2,1],[2,2,0,1],[2,2,2,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,1],[2,2,2,1],[1,2,2,2]],[[0,2,2,1],[2,2,0,1],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,2,2,2],[0,3,2,1]],[[0,2,2,1],[2,2,0,1],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[2,2,0,1],[2,2,2,2],[0,2,2,2]],[[0,2,2,1],[3,2,0,1],[2,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,1],[3,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,2,2,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,2,2,2],[1,3,2,0]],[[0,2,2,1],[2,2,0,1],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[2,2,0,1],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,2,3,1],[0,3,2,1]],[[0,2,2,1],[2,2,0,1],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[2,2,0,1],[2,2,3,1],[0,2,2,2]],[[0,2,2,1],[3,2,0,1],[2,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,0,1],[3,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,0,1],[2,2,3,1],[2,2,1,1]],[[0,2,2,1],[2,2,0,1],[2,2,3,1],[1,3,1,1]],[[0,2,2,1],[2,2,0,1],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[2,2,0,1],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[2,2,0,1],[2,2,3,2],[0,2,1,2]],[[0,2,2,1],[2,2,0,1],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,2,3,2],[0,3,2,0]],[[0,2,2,1],[2,2,0,1],[2,2,3,2],[0,2,3,0]],[[0,2,2,1],[3,2,0,1],[2,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,0,1],[3,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,0,1],[2,2,3,2],[2,2,0,1]],[[0,2,2,1],[2,2,0,1],[2,2,3,2],[1,3,0,1]],[[0,2,2,1],[3,2,0,1],[2,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,0,1],[3,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,0,1],[2,2,3,2],[2,2,1,0]],[[0,2,2,1],[2,2,0,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[2,2,2,1],[2,1,3,2],[2,1,0,1]],[[1,2,2,0],[2,2,2,1],[3,1,3,2],[1,1,0,1]],[[1,2,2,0],[3,2,2,1],[2,1,3,2],[1,1,0,1]],[[1,2,3,0],[2,2,2,1],[2,1,3,2],[1,1,0,1]],[[1,3,2,0],[2,2,2,1],[2,1,3,2],[1,1,0,1]],[[2,2,2,0],[2,2,2,1],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[3,2,0,1],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[3,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,0,2],[1,3,2,1]],[[0,2,2,1],[3,2,0,1],[2,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[3,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,1,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,1,1],[1,3,2,1]],[[0,2,2,1],[3,2,0,1],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,0,1],[3,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,4,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,1,3],[0,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,1,2],[0,3,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,1,2],[0,2,3,1]],[[0,2,2,1],[2,2,0,1],[2,3,1,2],[0,2,2,2]],[[0,2,2,1],[3,2,0,1],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,0,1],[3,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,0,1],[2,4,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,1,2],[2,1,2,1]],[[0,2,2,1],[3,2,0,1],[2,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,1],[3,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,1,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,1,2],[1,3,2,0]],[[0,2,2,1],[3,2,0,1],[2,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,1],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,4,2,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,2,1],[0,3,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,2,1],[0,2,3,1]],[[0,2,2,1],[2,2,0,1],[2,3,2,1],[0,2,2,2]],[[0,2,2,1],[3,2,0,1],[2,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,1],[3,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,1],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,2,1],[2,1,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,2,0,1],[2,3,2,2],[0,1,2,2]],[[0,2,2,1],[3,2,0,1],[2,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,1],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,4,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,2,2],[0,3,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,2,2],[0,2,3,0]],[[0,2,2,1],[2,2,0,1],[2,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,2,2],[1,0,3,1]],[[0,2,2,1],[2,2,0,1],[2,3,2,2],[1,0,2,2]],[[0,2,2,1],[3,2,0,1],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,1],[3,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,1],[2,4,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[2,2,2,1],[2,1,3,2],[2,0,2,0]],[[1,2,2,0],[2,2,2,1],[3,1,3,2],[1,0,2,0]],[[1,2,2,0],[3,2,2,1],[2,1,3,2],[1,0,2,0]],[[1,2,3,0],[2,2,2,1],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[3,2,0,1],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,0,1],[3,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,0,1],[2,4,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,1],[0,1,2,2]],[[0,2,2,1],[3,2,0,1],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,0,1],[3,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,0,1],[2,4,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,4,1],[0,2,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,1],[0,3,1,1]],[[0,2,2,1],[3,2,0,1],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,0,1],[3,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,0,1],[2,4,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,4,1],[1,0,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,1],[2,0,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,1],[1,0,3,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,1],[1,0,2,2]],[[0,2,2,1],[3,2,0,1],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,0,1],[3,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,0,1],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,4,1],[1,1,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,1],[2,1,1,1]],[[0,2,2,1],[3,2,0,1],[2,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,0,1],[3,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,0,1],[2,4,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,1],[2,2,0,1]],[[1,3,2,0],[2,2,2,1],[2,1,3,2],[1,0,2,0]],[[2,2,2,0],[2,2,2,1],[2,1,3,2],[1,0,2,0]],[[1,2,2,0],[2,2,2,1],[2,1,3,2],[2,0,1,1]],[[1,2,2,0],[2,2,2,1],[3,1,3,2],[1,0,1,1]],[[1,2,2,0],[3,2,2,1],[2,1,3,2],[1,0,1,1]],[[1,2,3,0],[2,2,2,1],[2,1,3,2],[1,0,1,1]],[[1,3,2,0],[2,2,2,1],[2,1,3,2],[1,0,1,1]],[[2,2,2,0],[2,2,2,1],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[0,0,2,2]],[[0,2,2,1],[3,2,0,1],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,0,1],[3,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,0,1],[2,4,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[0,1,1,2]],[[0,2,2,1],[3,2,0,1],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,0,1],[3,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,0,1],[2,4,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[0,1,3,0]],[[0,2,2,1],[3,2,0,1],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,0,1],[3,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,0,1],[2,4,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,0,1],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[0,3,0,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[0,2,0,2]],[[0,2,2,1],[3,2,0,1],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,0,1],[3,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,0,1],[2,4,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,0,1],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,2,0,1],[2,3,3,3],[0,2,1,0]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[0,3,1,0]],[[0,2,2,1],[3,2,0,1],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,1],[3,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,1],[2,4,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[2,0,1,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[1,0,1,2]],[[0,2,2,1],[3,2,0,1],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,0,1],[3,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,0,1],[2,4,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,3,3],[1,0,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[2,0,2,0]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[1,0,3,0]],[[0,2,2,1],[3,2,0,1],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,0,1],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,0,1],[2,4,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,0,1],[2,3,4,2],[1,1,0,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,3],[1,1,0,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[2,1,0,1]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[1,1,0,2]],[[0,2,2,1],[3,2,0,1],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,0,1],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,0,1],[2,4,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,0,1],[2,3,4,2],[1,1,1,0]],[[0,2,2,1],[2,2,0,1],[2,3,3,3],[1,1,1,0]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[2,2,2,1],[3,1,3,2],[0,2,1,0]],[[1,2,2,0],[3,2,2,1],[2,1,3,2],[0,2,1,0]],[[1,2,3,0],[2,2,2,1],[2,1,3,2],[0,2,1,0]],[[1,3,2,0],[2,2,2,1],[2,1,3,2],[0,2,1,0]],[[2,2,2,0],[2,2,2,1],[2,1,3,2],[0,2,1,0]],[[1,2,2,0],[2,2,2,1],[3,1,3,2],[0,2,0,1]],[[0,2,2,1],[3,2,0,1],[2,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,2,0,1],[3,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,2,0,1],[2,4,3,2],[1,2,0,0]],[[0,2,2,1],[2,2,0,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[3,2,2,1],[2,1,3,2],[0,2,0,1]],[[1,2,3,0],[2,2,2,1],[2,1,3,2],[0,2,0,1]],[[1,3,2,0],[2,2,2,1],[2,1,3,2],[0,2,0,1]],[[2,2,2,0],[2,2,2,1],[2,1,3,2],[0,2,0,1]],[[1,2,2,0],[2,2,2,1],[3,1,3,2],[0,1,2,0]],[[1,2,2,0],[3,2,2,1],[2,1,3,2],[0,1,2,0]],[[1,2,3,0],[2,2,2,1],[2,1,3,2],[0,1,2,0]],[[1,3,2,0],[2,2,2,1],[2,1,3,2],[0,1,2,0]],[[2,2,2,0],[2,2,2,1],[2,1,3,2],[0,1,2,0]],[[1,2,2,0],[2,2,2,1],[3,1,3,2],[0,1,1,1]],[[1,2,2,0],[3,2,2,1],[2,1,3,2],[0,1,1,1]],[[1,2,3,0],[2,2,2,1],[2,1,3,2],[0,1,1,1]],[[1,3,2,0],[2,2,2,1],[2,1,3,2],[0,1,1,1]],[[2,2,2,0],[2,2,2,1],[2,1,3,2],[0,1,1,1]],[[1,2,2,0],[3,2,2,1],[2,1,3,2],[0,0,2,1]],[[1,2,3,0],[2,2,2,1],[2,1,3,2],[0,0,2,1]],[[1,3,2,0],[2,2,2,1],[2,1,3,2],[0,0,2,1]],[[2,2,2,0],[2,2,2,1],[2,1,3,2],[0,0,2,1]],[[0,3,2,1],[2,2,0,2],[0,2,2,2],[1,2,2,1]],[[0,2,3,1],[2,2,0,2],[0,2,2,2],[1,2,2,1]],[[0,2,2,2],[2,2,0,2],[0,2,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,3],[0,2,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[0,2,2,3],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[0,2,2,2],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[0,2,2,2],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[0,2,2,2],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[0,2,2,2],[1,2,2,2]],[[0,2,2,1],[2,2,0,2],[0,2,4,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[0,2,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[0,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[0,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[0,2,3,1],[1,2,2,2]],[[0,3,2,1],[2,2,0,2],[0,2,3,2],[1,2,1,1]],[[0,2,3,1],[2,2,0,2],[0,2,3,2],[1,2,1,1]],[[0,2,2,2],[2,2,0,2],[0,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,3],[0,2,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[0,2,4,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[0,2,3,3],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[0,2,3,2],[1,2,1,2]],[[0,3,2,1],[2,2,0,2],[0,2,3,2],[1,2,2,0]],[[0,2,3,1],[2,2,0,2],[0,2,3,2],[1,2,2,0]],[[0,2,2,2],[2,2,0,2],[0,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,3],[0,2,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[0,2,4,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[0,2,3,3],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[0,2,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,2],[0,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,0,2],[0,2,3,2],[1,2,3,0]],[[0,3,2,1],[2,2,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,3,1],[2,2,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,2],[2,2,0,2],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,3],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[0,4,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,1,3],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[0,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,2,0,2],[0,4,2,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[0,3,2,1],[1,2,2,2]],[[0,3,2,1],[2,2,0,2],[0,3,2,2],[1,1,2,1]],[[0,2,3,1],[2,2,0,2],[0,3,2,2],[1,1,2,1]],[[0,2,2,2],[2,2,0,2],[0,3,2,2],[1,1,2,1]],[[0,2,2,1],[2,2,0,3],[0,3,2,2],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,2,3],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,2,2],[1,1,3,1]],[[0,2,2,1],[2,2,0,2],[0,3,2,2],[1,1,2,2]],[[0,2,2,1],[2,2,0,2],[0,4,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[0,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,2],[0,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,2,0,2],[0,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,2,0,2],[0,4,3,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,4,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,1],[1,1,3,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,1],[1,1,2,2]],[[0,2,2,1],[2,2,0,2],[0,4,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[0,3,4,1],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,1],[1,3,1,1]],[[0,3,2,1],[2,2,0,2],[0,3,3,2],[1,0,2,1]],[[0,2,3,1],[2,2,0,2],[0,3,3,2],[1,0,2,1]],[[0,2,2,2],[2,2,0,2],[0,3,3,2],[1,0,2,1]],[[0,2,2,1],[2,2,0,3],[0,3,3,2],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,4,2],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,3],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,2],[1,0,2,2]],[[0,3,2,1],[2,2,0,2],[0,3,3,2],[1,1,1,1]],[[0,2,3,1],[2,2,0,2],[0,3,3,2],[1,1,1,1]],[[0,2,2,2],[2,2,0,2],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,0,3],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,0,2],[0,4,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,0,2],[0,3,4,2],[1,1,1,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,3],[1,1,1,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,2],[1,1,1,2]],[[0,3,2,1],[2,2,0,2],[0,3,3,2],[1,1,2,0]],[[0,2,3,1],[2,2,0,2],[0,3,3,2],[1,1,2,0]],[[0,2,2,2],[2,2,0,2],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,3],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[0,4,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[0,3,4,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[0,3,3,3],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[0,3,3,2],[1,1,3,0]],[[0,3,2,1],[2,2,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,3,1],[2,2,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,2,2],[2,2,0,2],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,0,3],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[0,4,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[0,3,4,2],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,3],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,2,0,2],[0,3,3,2],[1,2,0,2]],[[0,3,2,1],[2,2,0,2],[0,3,3,2],[1,2,1,0]],[[0,2,3,1],[2,2,0,2],[0,3,3,2],[1,2,1,0]],[[0,2,2,2],[2,2,0,2],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,0,3],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,0,2],[0,4,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,0,2],[0,3,4,2],[1,2,1,0]],[[0,2,2,1],[2,2,0,2],[0,3,3,3],[1,2,1,0]],[[0,2,2,1],[2,2,0,2],[0,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,2,0,2],[0,3,3,2],[1,3,1,0]],[[0,3,2,1],[2,2,0,2],[1,2,2,2],[0,2,2,1]],[[0,2,3,1],[2,2,0,2],[1,2,2,2],[0,2,2,1]],[[0,2,2,2],[2,2,0,2],[1,2,2,2],[0,2,2,1]],[[0,2,2,1],[2,2,0,3],[1,2,2,2],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,2,2,3],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,2,2,2],[0,3,2,1]],[[0,2,2,1],[2,2,0,2],[1,2,2,2],[0,2,3,1]],[[0,2,2,1],[2,2,0,2],[1,2,2,2],[0,2,2,2]],[[0,2,2,1],[2,2,0,2],[1,2,4,0],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,2,3,0],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,2,3,0],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[1,2,3,0],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[1,2,3,0],[1,2,2,2]],[[0,2,2,1],[2,2,0,2],[1,2,4,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,2,3,1],[0,3,2,1]],[[0,2,2,1],[2,2,0,2],[1,2,3,1],[0,2,3,1]],[[0,2,2,1],[2,2,0,2],[1,2,3,1],[0,2,2,2]],[[0,2,2,1],[2,2,0,2],[1,2,4,1],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[1,2,3,1],[2,2,2,0]],[[0,2,2,1],[2,2,0,2],[1,2,3,1],[1,3,2,0]],[[0,2,2,1],[2,2,0,2],[1,2,3,1],[1,2,3,0]],[[0,3,2,1],[2,2,0,2],[1,2,3,2],[0,2,1,1]],[[0,2,3,1],[2,2,0,2],[1,2,3,2],[0,2,1,1]],[[0,2,2,2],[2,2,0,2],[1,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,0,3],[1,2,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[1,2,4,2],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[1,2,3,3],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[1,2,3,2],[0,2,1,2]],[[0,3,2,1],[2,2,0,2],[1,2,3,2],[0,2,2,0]],[[0,2,3,1],[2,2,0,2],[1,2,3,2],[0,2,2,0]],[[0,2,2,2],[2,2,0,2],[1,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,3],[1,2,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,2],[1,2,4,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,2],[1,2,3,3],[0,2,2,0]],[[0,2,2,1],[2,2,0,2],[1,2,3,2],[0,3,2,0]],[[0,2,2,1],[2,2,0,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[2,2,2,1],[2,1,3,1],[2,1,1,1]],[[1,2,2,0],[2,2,2,1],[3,1,3,1],[1,1,1,1]],[[1,2,2,0],[3,2,2,1],[2,1,3,1],[1,1,1,1]],[[1,2,3,0],[2,2,2,1],[2,1,3,1],[1,1,1,1]],[[1,3,2,0],[2,2,2,1],[2,1,3,1],[1,1,1,1]],[[2,2,2,0],[2,2,2,1],[2,1,3,1],[1,1,1,1]],[[1,2,2,0],[2,2,2,1],[2,1,3,1],[2,0,2,1]],[[1,2,2,0],[2,2,2,1],[3,1,3,1],[1,0,2,1]],[[1,2,2,0],[3,2,2,1],[2,1,3,1],[1,0,2,1]],[[1,2,3,0],[2,2,2,1],[2,1,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[1,4,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,1,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,1,1],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,1,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[1,3,1,1],[1,2,2,2]],[[0,3,2,1],[2,2,0,2],[1,3,1,2],[0,2,2,1]],[[0,2,3,1],[2,2,0,2],[1,3,1,2],[0,2,2,1]],[[0,2,2,2],[2,2,0,2],[1,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,0,3],[1,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,4,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,1,3],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,1,2],[0,3,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,1,2],[0,2,3,1]],[[0,2,2,1],[2,2,0,2],[1,3,1,2],[0,2,2,2]],[[0,2,2,1],[2,2,0,2],[1,4,1,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,1,2],[2,2,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,1,2],[1,3,1,1]],[[0,2,2,1],[2,2,0,2],[1,4,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,1,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,1,2],[1,3,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,1,2],[1,2,3,0]],[[0,2,2,1],[2,2,0,2],[1,4,2,0],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,0],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,0],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,0],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,0],[1,2,2,2]],[[0,2,2,1],[2,2,0,2],[1,4,2,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,1],[0,3,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,1],[0,2,3,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,1],[0,2,2,2]],[[0,2,2,1],[2,2,0,2],[1,4,2,1],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,2,1],[2,2,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,2,1],[1,3,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,2,1],[1,2,3,0]],[[0,3,2,1],[2,2,0,2],[1,3,2,2],[0,1,2,1]],[[0,2,3,1],[2,2,0,2],[1,3,2,2],[0,1,2,1]],[[0,2,2,2],[2,2,0,2],[1,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,2,0,3],[1,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,2],[0,1,2,2]],[[0,2,2,1],[2,2,0,2],[1,4,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,2,2],[0,3,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,2,2],[0,2,3,0]],[[0,3,2,1],[2,2,0,2],[1,3,2,2],[1,0,2,1]],[[0,2,3,1],[2,2,0,2],[1,3,2,2],[1,0,2,1]],[[0,2,2,2],[2,2,0,2],[1,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,2,0,3],[1,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,2],[1,0,3,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,2],[1,0,2,2]],[[0,2,2,1],[2,2,0,2],[1,4,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,2],[2,2,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,2,2],[1,3,0,1]],[[0,2,2,1],[2,2,0,2],[1,4,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,0,2],[1,3,2,2],[2,2,1,0]],[[0,2,2,1],[2,2,0,2],[1,3,2,2],[1,3,1,0]],[[1,3,2,0],[2,2,2,1],[2,1,3,1],[1,0,2,1]],[[2,2,2,0],[2,2,2,1],[2,1,3,1],[1,0,2,1]],[[1,2,2,0],[2,2,2,1],[3,1,3,1],[0,2,1,1]],[[1,2,2,0],[3,2,2,1],[2,1,3,1],[0,2,1,1]],[[1,2,3,0],[2,2,2,1],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[1,4,3,0],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,4,0],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,0],[1,1,3,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,0],[1,1,2,2]],[[0,2,2,1],[2,2,0,2],[1,4,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,4,0],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,0],[2,2,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,0],[1,3,1,1]],[[0,2,2,1],[2,2,0,2],[1,4,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,1],[0,1,2,2]],[[0,2,2,1],[2,2,0,2],[1,4,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,4,1],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,1],[0,3,1,1]],[[0,2,2,1],[2,2,0,2],[1,4,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,4,1],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,1],[1,0,3,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,1],[1,0,2,2]],[[0,2,2,1],[2,2,0,2],[1,4,3,1],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,4,1],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,3,1],[1,1,3,0]],[[0,2,2,1],[2,2,0,2],[1,4,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,4,1],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,1],[2,2,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,1],[1,3,0,1]],[[0,2,2,1],[2,2,0,2],[1,4,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,0,2],[1,3,4,1],[1,2,1,0]],[[0,2,2,1],[2,2,0,2],[1,3,3,1],[2,2,1,0]],[[0,2,2,1],[2,2,0,2],[1,3,3,1],[1,3,1,0]],[[1,3,2,0],[2,2,2,1],[2,1,3,1],[0,2,1,1]],[[2,2,2,0],[2,2,2,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,0],[2,2,2,1],[3,1,3,1],[0,1,2,1]],[[1,2,2,0],[3,2,2,1],[2,1,3,1],[0,1,2,1]],[[1,2,3,0],[2,2,2,1],[2,1,3,1],[0,1,2,1]],[[1,3,2,0],[2,2,2,1],[2,1,3,1],[0,1,2,1]],[[0,3,2,1],[2,2,0,2],[1,3,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,0,2],[1,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,0,2],[1,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,0,3],[1,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,2],[0,0,2,2]],[[0,3,2,1],[2,2,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,0,2],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,0,3],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,0,2],[1,4,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,2],[0,1,1,2]],[[0,3,2,1],[2,2,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,2,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,0,2],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,0,3],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,0,2],[1,4,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,3,2],[0,1,3,0]],[[0,3,2,1],[2,2,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,2,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,2,0,2],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,0,3],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,0,2],[1,4,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,2],[0,3,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,2],[0,2,0,2]],[[0,3,2,1],[2,2,0,2],[1,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,2,0,2],[1,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,2,0,2],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,0,3],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,0,2],[1,4,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,0,2],[1,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,2,0,2],[1,3,3,3],[0,2,1,0]],[[0,2,2,1],[2,2,0,2],[1,3,3,2],[0,3,1,0]],[[2,2,2,0],[2,2,2,1],[2,1,3,1],[0,1,2,1]],[[0,3,2,1],[2,2,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,3,1],[2,2,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,2,2],[2,2,0,2],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,3],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,2],[1,4,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,4,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,3],[1,0,1,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,2],[1,0,1,2]],[[0,3,2,1],[2,2,0,2],[1,3,3,2],[1,0,2,0]],[[0,2,3,1],[2,2,0,2],[1,3,3,2],[1,0,2,0]],[[0,2,2,2],[2,2,0,2],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,0,3],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,0,2],[1,4,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,4,2],[1,0,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,3,3],[1,0,2,0]],[[0,2,2,1],[2,2,0,2],[1,3,3,2],[1,0,3,0]],[[0,3,2,1],[2,2,0,2],[1,3,3,2],[1,1,0,1]],[[0,2,3,1],[2,2,0,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,2],[2,2,0,2],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,0,3],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,0,2],[1,4,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,4,2],[1,1,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,3],[1,1,0,1]],[[0,2,2,1],[2,2,0,2],[1,3,3,2],[1,1,0,2]],[[0,3,2,1],[2,2,0,2],[1,3,3,2],[1,1,1,0]],[[0,2,3,1],[2,2,0,2],[1,3,3,2],[1,1,1,0]],[[0,2,2,2],[2,2,0,2],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,0,3],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,0,2],[1,4,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,0,2],[1,3,4,2],[1,1,1,0]],[[0,2,2,1],[2,2,0,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[2,2,2,1],[2,1,2,2],[1,3,1,0]],[[1,2,2,0],[2,2,2,1],[2,1,2,2],[2,2,1,0]],[[1,2,2,0],[2,2,2,1],[3,1,2,2],[1,2,1,0]],[[1,2,2,0],[3,2,2,1],[2,1,2,2],[1,2,1,0]],[[1,2,3,0],[2,2,2,1],[2,1,2,2],[1,2,1,0]],[[1,3,2,0],[2,2,2,1],[2,1,2,2],[1,2,1,0]],[[2,2,2,0],[2,2,2,1],[2,1,2,2],[1,2,1,0]],[[1,2,2,0],[2,2,2,1],[2,1,2,2],[1,3,0,1]],[[1,2,2,0],[2,2,2,1],[2,1,2,2],[2,2,0,1]],[[1,2,2,0],[2,2,2,1],[3,1,2,2],[1,2,0,1]],[[1,2,2,0],[3,2,2,1],[2,1,2,2],[1,2,0,1]],[[1,2,3,0],[2,2,2,1],[2,1,2,2],[1,2,0,1]],[[1,3,2,0],[2,2,2,1],[2,1,2,2],[1,2,0,1]],[[2,2,2,0],[2,2,2,1],[2,1,2,2],[1,2,0,1]],[[1,2,2,0],[2,2,2,1],[2,1,2,1],[1,3,1,1]],[[1,2,2,0],[2,2,2,1],[2,1,2,1],[2,2,1,1]],[[1,2,2,0],[2,2,2,1],[3,1,2,1],[1,2,1,1]],[[1,2,2,0],[3,2,2,1],[2,1,2,1],[1,2,1,1]],[[0,3,2,1],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,3,1],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,2],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[3,2,0,2],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,3],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[3,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,0,2,3],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,0,2,2],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,0,2,2],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[2,0,2,2],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[2,0,2,2],[1,2,2,2]],[[0,2,2,1],[3,2,0,2],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[3,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,0,4,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,0,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,0,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[2,0,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[2,0,3,1],[1,2,2,2]],[[0,3,2,1],[2,2,0,2],[2,0,3,2],[1,2,1,1]],[[0,2,3,1],[2,2,0,2],[2,0,3,2],[1,2,1,1]],[[0,2,2,2],[2,2,0,2],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,3],[2,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,0,4,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,0,3,3],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,0,3,2],[1,2,1,2]],[[0,3,2,1],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[3,2,0,2],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,3],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[3,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,0,4,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,0,3,3],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,0,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,0,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,0,2],[2,0,3,2],[1,2,3,0]],[[0,3,2,1],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,3,1],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,2],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[3,2,0,2],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,3],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[3,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,1,1,3],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,1,1,2],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,1,1,2],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[2,1,1,2],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[2,1,1,2],[1,2,2,2]],[[0,2,2,1],[3,2,0,2],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[3,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,1,4,0],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,1,3,0],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,1,3,0],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[2,1,3,0],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[2,1,3,0],[1,2,2,2]],[[0,2,2,1],[3,2,0,2],[2,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[3,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,1,4,1],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,1,3,1],[2,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,1,3,1],[1,3,2,0]],[[0,2,2,1],[2,2,0,2],[2,1,3,1],[1,2,3,0]],[[1,2,3,0],[2,2,2,1],[2,1,2,1],[1,2,1,1]],[[1,3,2,0],[2,2,2,1],[2,1,2,1],[1,2,1,1]],[[2,2,2,0],[2,2,2,1],[2,1,2,1],[1,2,1,1]],[[0,2,2,1],[3,2,0,2],[2,2,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[3,2,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,2,1,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,2,1,1],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[2,2,1,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[2,2,1,1],[1,2,2,2]],[[0,2,2,1],[3,2,0,2],[2,2,1,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[3,2,1,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,2,1,2],[2,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,2,1,2],[1,3,1,1]],[[0,2,2,1],[3,2,0,2],[2,2,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[3,2,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,2,1,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,2,1,2],[1,3,2,0]],[[0,2,2,1],[2,2,0,2],[2,2,1,2],[1,2,3,0]],[[0,2,2,1],[3,2,0,2],[2,2,2,0],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[3,2,2,0],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,2,2,0],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,2,2,0],[1,3,2,1]],[[0,2,2,1],[2,2,0,2],[2,2,2,0],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[2,2,2,0],[1,2,2,2]],[[0,2,2,1],[3,2,0,2],[2,2,2,1],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[3,2,2,1],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,2,2,1],[2,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,2,2,1],[1,3,2,0]],[[0,2,2,1],[2,2,0,2],[2,2,2,1],[1,2,3,0]],[[0,2,2,1],[3,2,0,2],[2,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[3,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[2,2,2,2],[2,2,0,1]],[[0,2,2,1],[2,2,0,2],[2,2,2,2],[1,3,0,1]],[[0,2,2,1],[3,2,0,2],[2,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,0,2],[3,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,0,2],[2,2,2,2],[2,2,1,0]],[[0,2,2,1],[2,2,0,2],[2,2,2,2],[1,3,1,0]],[[1,2,2,0],[2,2,2,1],[2,1,1,2],[1,2,3,0]],[[1,2,2,0],[2,2,2,1],[2,1,1,2],[1,3,2,0]],[[1,2,2,0],[2,2,2,1],[2,1,1,2],[2,2,2,0]],[[1,2,2,0],[2,2,2,1],[3,1,1,2],[1,2,2,0]],[[1,2,2,0],[3,2,2,1],[2,1,1,2],[1,2,2,0]],[[1,2,3,0],[2,2,2,1],[2,1,1,2],[1,2,2,0]],[[1,3,2,0],[2,2,2,1],[2,1,1,2],[1,2,2,0]],[[2,2,2,0],[2,2,2,1],[2,1,1,2],[1,2,2,0]],[[1,2,2,0],[2,2,2,1],[2,1,1,1],[1,2,2,2]],[[1,2,2,0],[2,2,2,1],[2,1,1,1],[1,2,3,1]],[[0,2,2,1],[2,2,0,2],[2,2,4,0],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,2,3,0],[0,3,2,1]],[[0,2,2,1],[2,2,0,2],[2,2,3,0],[0,2,3,1]],[[0,2,2,1],[2,2,0,2],[2,2,3,0],[0,2,2,2]],[[0,2,2,1],[3,2,0,2],[2,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[3,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,2,3,0],[2,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,2,3,0],[1,3,1,1]],[[0,2,2,1],[2,2,0,2],[2,2,4,1],[0,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,2,3,1],[0,3,2,0]],[[0,2,2,1],[2,2,0,2],[2,2,3,1],[0,2,3,0]],[[0,2,2,1],[3,2,0,2],[2,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[3,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[2,2,3,1],[2,2,0,1]],[[0,2,2,1],[2,2,0,2],[2,2,3,1],[1,3,0,1]],[[0,2,2,1],[3,2,0,2],[2,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,0,2],[3,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,0,2],[2,2,3,1],[2,2,1,0]],[[0,2,2,1],[2,2,0,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[2,2,2,1],[2,1,1,1],[1,3,2,1]],[[1,2,2,0],[2,2,2,1],[2,1,1,1],[2,2,2,1]],[[1,2,2,0],[2,2,2,1],[3,1,1,1],[1,2,2,1]],[[1,2,2,0],[3,2,2,1],[2,1,1,1],[1,2,2,1]],[[1,2,3,0],[2,2,2,1],[2,1,1,1],[1,2,2,1]],[[1,3,2,0],[2,2,2,1],[2,1,1,1],[1,2,2,1]],[[2,2,2,0],[2,2,2,1],[2,1,1,1],[1,2,2,1]],[[1,2,2,0],[2,2,2,1],[2,1,0,2],[1,2,2,2]],[[1,2,2,0],[2,2,2,1],[2,1,0,2],[1,2,3,1]],[[1,2,2,0],[2,2,2,1],[2,1,0,2],[1,3,2,1]],[[1,2,2,0],[2,2,2,1],[2,1,0,2],[2,2,2,1]],[[1,2,2,0],[2,2,2,1],[2,1,0,3],[1,2,2,1]],[[1,2,2,0],[2,2,2,1],[3,1,0,2],[1,2,2,1]],[[1,2,2,0],[3,2,2,1],[2,1,0,2],[1,2,2,1]],[[1,2,3,0],[2,2,2,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[2,2,2,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[2,2,2,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[2,2,2,1],[2,0,3,2],[1,3,1,0]],[[1,2,2,0],[2,2,2,1],[2,0,3,2],[2,2,1,0]],[[1,2,2,0],[2,2,2,1],[3,0,3,2],[1,2,1,0]],[[1,2,2,0],[3,2,2,1],[2,0,3,2],[1,2,1,0]],[[1,2,3,0],[2,2,2,1],[2,0,3,2],[1,2,1,0]],[[1,3,2,0],[2,2,2,1],[2,0,3,2],[1,2,1,0]],[[2,2,2,0],[2,2,2,1],[2,0,3,2],[1,2,1,0]],[[1,2,2,0],[2,2,2,1],[2,0,3,2],[1,3,0,1]],[[1,2,2,0],[2,2,2,1],[2,0,3,2],[2,2,0,1]],[[1,2,2,0],[2,2,2,1],[3,0,3,2],[1,2,0,1]],[[1,2,2,0],[3,2,2,1],[2,0,3,2],[1,2,0,1]],[[1,2,3,0],[2,2,2,1],[2,0,3,2],[1,2,0,1]],[[1,3,2,0],[2,2,2,1],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[3,2,0,2],[2,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[3,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,0,1],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,0,1],[1,3,2,1]],[[0,2,2,1],[3,2,0,2],[2,3,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[3,3,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,0,2],[2,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,0,2],[1,3,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[3,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,0,2],[2,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,0,2],[1,3,2,0]],[[0,2,2,1],[3,2,0,2],[2,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[3,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,1,0],[2,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,1,0],[1,3,2,1]],[[0,2,2,1],[3,2,0,2],[2,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[3,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,4,1,1],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,1,1],[0,3,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,1,1],[0,2,3,1]],[[0,2,2,1],[2,2,0,2],[2,3,1,1],[0,2,2,2]],[[0,2,2,1],[3,2,0,2],[2,3,1,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[3,3,1,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[2,4,1,1],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,1,1],[2,1,2,1]],[[0,2,2,1],[3,2,0,2],[2,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[3,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,1,1],[2,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,1,1],[1,3,2,0]],[[0,2,2,1],[3,2,0,2],[2,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,2,0,2],[3,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,2,0,2],[2,4,1,2],[0,1,2,1]],[[0,2,2,1],[3,2,0,2],[2,3,1,2],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[3,3,1,2],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,4,1,2],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,1,2],[0,3,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,1,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,2],[3,3,1,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,4,1,2],[0,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,1,2],[0,3,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,1,2],[0,2,3,0]],[[0,2,2,1],[3,2,0,2],[2,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[3,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[2,4,1,2],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,1,2],[2,0,2,1]],[[0,2,2,1],[3,2,0,2],[2,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,2,0,2],[3,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,2,0,2],[2,4,1,2],[1,1,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,1,2],[2,1,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[3,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[2,4,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,1,2],[2,1,2,0]],[[2,2,2,0],[2,2,2,1],[2,0,3,2],[1,2,0,1]],[[1,2,2,0],[2,2,2,1],[2,0,3,2],[2,1,2,0]],[[1,2,2,0],[2,2,2,1],[3,0,3,2],[1,1,2,0]],[[1,2,2,0],[3,2,2,1],[2,0,3,2],[1,1,2,0]],[[1,2,3,0],[2,2,2,1],[2,0,3,2],[1,1,2,0]],[[1,3,2,0],[2,2,2,1],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[3,2,0,2],[2,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[3,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,4,2,0],[0,2,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,2,0],[0,3,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,2,0],[0,2,3,1]],[[0,2,2,1],[2,2,0,2],[2,3,2,0],[0,2,2,2]],[[0,2,2,1],[3,2,0,2],[2,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[3,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[2,4,2,0],[1,1,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,2,0],[2,1,2,1]],[[0,2,2,1],[3,2,0,2],[2,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,2,0,2],[3,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,4,2,1],[0,2,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,2,1],[0,3,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,2,1],[0,2,3,0]],[[0,2,2,1],[3,2,0,2],[2,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[3,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[2,4,2,1],[1,1,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,2,1],[2,1,2,0]],[[2,2,2,0],[2,2,2,1],[2,0,3,2],[1,1,2,0]],[[1,2,2,0],[2,2,2,1],[2,0,3,2],[2,1,1,1]],[[1,2,2,0],[2,2,2,1],[3,0,3,2],[1,1,1,1]],[[1,2,2,0],[3,2,2,1],[2,0,3,2],[1,1,1,1]],[[1,2,3,0],[2,2,2,1],[2,0,3,2],[1,1,1,1]],[[1,3,2,0],[2,2,2,1],[2,0,3,2],[1,1,1,1]],[[2,2,2,0],[2,2,2,1],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,0,2],[3,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,0,2],[2,4,2,2],[0,1,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,0,2],[3,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,0,2],[2,4,2,2],[0,1,2,0]],[[0,2,2,1],[3,2,0,2],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,0,2],[3,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,0,2],[2,4,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,0,2],[2,3,2,2],[0,3,0,1]],[[0,2,2,1],[3,2,0,2],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,0,2],[3,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,0,2],[2,4,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,0,2],[2,3,2,2],[0,3,1,0]],[[1,2,2,0],[2,2,2,1],[3,0,3,2],[0,2,2,0]],[[1,2,2,0],[3,2,2,1],[2,0,3,2],[0,2,2,0]],[[1,2,3,0],[2,2,2,1],[2,0,3,2],[0,2,2,0]],[[1,3,2,0],[2,2,2,1],[2,0,3,2],[0,2,2,0]],[[2,2,2,0],[2,2,2,1],[2,0,3,2],[0,2,2,0]],[[1,2,2,0],[2,2,2,1],[3,0,3,2],[0,2,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,2],[3,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,2],[2,4,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,2,2],[2,0,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,0,2],[3,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,0,2],[2,4,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,2,2],[2,0,2,0]],[[0,2,2,1],[3,2,0,2],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,0,2],[3,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,0,2],[2,4,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,0,2],[2,3,2,2],[2,1,0,1]],[[0,2,2,1],[3,2,0,2],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,0,2],[3,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,0,2],[2,4,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,0,2],[2,3,2,2],[2,1,1,0]],[[1,2,2,0],[3,2,2,1],[2,0,3,2],[0,2,1,1]],[[1,2,3,0],[2,2,2,1],[2,0,3,2],[0,2,1,1]],[[1,3,2,0],[2,2,2,1],[2,0,3,2],[0,2,1,1]],[[2,2,2,0],[2,2,2,1],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,2,2],[1,2,0,0]],[[0,2,2,1],[2,2,0,2],[3,3,2,2],[1,2,0,0]],[[0,2,2,1],[2,2,0,2],[2,4,2,2],[1,2,0,0]],[[0,2,2,1],[2,2,0,2],[2,3,2,2],[2,2,0,0]],[[1,2,2,0],[2,2,2,1],[2,0,3,1],[1,3,1,1]],[[1,2,2,0],[2,2,2,1],[2,0,3,1],[2,2,1,1]],[[1,2,2,0],[2,2,2,1],[3,0,3,1],[1,2,1,1]],[[1,2,2,0],[3,2,2,1],[2,0,3,1],[1,2,1,1]],[[1,2,3,0],[2,2,2,1],[2,0,3,1],[1,2,1,1]],[[1,3,2,0],[2,2,2,1],[2,0,3,1],[1,2,1,1]],[[2,2,2,0],[2,2,2,1],[2,0,3,1],[1,2,1,1]],[[1,2,2,0],[2,2,2,1],[2,0,3,1],[2,1,2,1]],[[1,2,2,0],[2,2,2,1],[3,0,3,1],[1,1,2,1]],[[1,2,2,0],[3,2,2,1],[2,0,3,1],[1,1,2,1]],[[1,2,3,0],[2,2,2,1],[2,0,3,1],[1,1,2,1]],[[1,3,2,0],[2,2,2,1],[2,0,3,1],[1,1,2,1]],[[2,2,2,0],[2,2,2,1],[2,0,3,1],[1,1,2,1]],[[1,2,2,0],[2,2,2,1],[3,0,3,1],[0,2,2,1]],[[1,2,2,0],[3,2,2,1],[2,0,3,1],[0,2,2,1]],[[1,2,3,0],[2,2,2,1],[2,0,3,1],[0,2,2,1]],[[1,3,2,0],[2,2,2,1],[2,0,3,1],[0,2,2,1]],[[2,2,2,0],[2,2,2,1],[2,0,3,1],[0,2,2,1]],[[0,2,2,1],[3,2,0,2],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,0,2],[3,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,0,2],[2,4,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,4,0],[0,1,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,3,0],[0,1,3,1]],[[0,2,2,1],[2,2,0,2],[2,3,3,0],[0,1,2,2]],[[0,2,2,1],[3,2,0,2],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[3,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,4,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,4,0],[0,2,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,3,0],[0,3,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[3,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[2,4,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,4,0],[1,0,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,3,0],[2,0,2,1]],[[0,2,2,1],[2,2,0,2],[2,3,3,0],[1,0,3,1]],[[0,2,2,1],[2,2,0,2],[2,3,3,0],[1,0,2,2]],[[0,2,2,1],[3,2,0,2],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,0,2],[3,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,0,2],[2,4,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,4,0],[1,1,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,3,0],[2,1,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[3,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[2,4,3,0],[1,2,0,1]],[[0,2,2,1],[2,2,0,2],[2,3,3,0],[2,2,0,1]],[[0,2,2,1],[3,2,0,2],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,0,2],[3,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,0,2],[2,4,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,4,1],[0,1,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,0,2],[3,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,0,2],[2,4,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,4,1],[0,1,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,3,1],[0,1,3,0]],[[0,2,2,1],[3,2,0,2],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,0,2],[3,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,0,2],[2,4,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,0,2],[2,3,4,1],[0,2,0,1]],[[0,2,2,1],[2,2,0,2],[2,3,3,1],[0,3,0,1]],[[0,2,2,1],[3,2,0,2],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,0,2],[3,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,0,2],[2,4,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,0,2],[2,3,4,1],[0,2,1,0]],[[0,2,2,1],[2,2,0,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[2,2,2,1],[2,0,2,2],[1,2,3,0]],[[1,2,2,0],[2,2,2,1],[2,0,2,2],[1,3,2,0]],[[1,2,2,0],[2,2,2,1],[2,0,2,2],[2,2,2,0]],[[1,2,2,0],[2,2,2,1],[3,0,2,2],[1,2,2,0]],[[1,2,2,0],[3,2,2,1],[2,0,2,2],[1,2,2,0]],[[1,2,3,0],[2,2,2,1],[2,0,2,2],[1,2,2,0]],[[1,3,2,0],[2,2,2,1],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[3,2,0,2],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,0,2],[3,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,0,2],[2,4,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,4,1],[1,0,1,1]],[[0,2,2,1],[2,2,0,2],[2,3,3,1],[2,0,1,1]],[[0,2,2,1],[3,2,0,2],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,0,2],[3,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,0,2],[2,4,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,4,1],[1,0,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,3,1],[2,0,2,0]],[[0,2,2,1],[2,2,0,2],[2,3,3,1],[1,0,3,0]],[[0,2,2,1],[3,2,0,2],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,0,2],[3,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,0,2],[2,4,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,0,2],[2,3,4,1],[1,1,0,1]],[[0,2,2,1],[2,2,0,2],[2,3,3,1],[2,1,0,1]],[[0,2,2,1],[3,2,0,2],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,0,2],[3,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,0,2],[2,4,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,0,2],[2,3,4,1],[1,1,1,0]],[[0,2,2,1],[2,2,0,2],[2,3,3,1],[2,1,1,0]],[[2,2,2,0],[2,2,2,1],[2,0,2,2],[1,2,2,0]],[[1,2,2,0],[2,2,2,1],[2,0,2,1],[1,2,2,2]],[[1,2,2,0],[2,2,2,1],[2,0,2,1],[1,2,3,1]],[[1,2,2,0],[2,2,2,1],[2,0,2,1],[1,3,2,1]],[[1,2,2,0],[2,2,2,1],[2,0,2,1],[2,2,2,1]],[[1,2,2,0],[2,2,2,1],[3,0,2,1],[1,2,2,1]],[[1,2,2,0],[3,2,2,1],[2,0,2,1],[1,2,2,1]],[[0,2,2,1],[3,2,0,2],[2,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,2,0,2],[3,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,2,0,2],[2,4,3,1],[1,2,0,0]],[[0,2,2,1],[2,2,0,2],[2,3,3,1],[2,2,0,0]],[[1,2,3,0],[2,2,2,1],[2,0,2,1],[1,2,2,1]],[[1,3,2,0],[2,2,2,1],[2,0,2,1],[1,2,2,1]],[[2,2,2,0],[2,2,2,1],[2,0,2,1],[1,2,2,1]],[[1,2,2,0],[2,2,2,1],[2,0,1,2],[1,2,2,2]],[[1,2,2,0],[2,2,2,1],[2,0,1,2],[1,2,3,1]],[[1,2,2,0],[2,2,2,1],[2,0,1,2],[1,3,2,1]],[[1,2,2,0],[2,2,2,1],[2,0,1,2],[2,2,2,1]],[[1,2,2,0],[2,2,2,1],[2,0,1,3],[1,2,2,1]],[[1,2,2,0],[2,2,2,1],[3,0,1,2],[1,2,2,1]],[[1,2,2,0],[3,2,2,1],[2,0,1,2],[1,2,2,1]],[[1,2,3,0],[2,2,2,1],[2,0,1,2],[1,2,2,1]],[[1,3,2,0],[2,2,2,1],[2,0,1,2],[1,2,2,1]],[[2,2,2,0],[2,2,2,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[3,2,2,1],[1,3,3,2],[1,1,0,0]],[[1,2,3,0],[2,2,2,1],[1,3,3,2],[1,1,0,0]],[[1,3,2,0],[2,2,2,1],[1,3,3,2],[1,1,0,0]],[[2,2,2,0],[2,2,2,1],[1,3,3,2],[1,1,0,0]],[[1,2,2,0],[3,2,2,1],[1,3,3,2],[0,2,0,0]],[[1,2,3,0],[2,2,2,1],[1,3,3,2],[0,2,0,0]],[[1,3,2,0],[2,2,2,1],[1,3,3,2],[0,2,0,0]],[[2,2,2,0],[2,2,2,1],[1,3,3,2],[0,2,0,0]],[[1,2,2,0],[3,2,2,1],[1,3,3,2],[0,0,2,0]],[[1,2,3,0],[2,2,2,1],[1,3,3,2],[0,0,2,0]],[[1,3,2,0],[2,2,2,1],[1,3,3,2],[0,0,2,0]],[[2,2,2,0],[2,2,2,1],[1,3,3,2],[0,0,2,0]],[[1,2,2,0],[3,2,2,1],[1,3,3,2],[0,0,1,1]],[[1,2,3,0],[2,2,2,1],[1,3,3,2],[0,0,1,1]],[[1,3,2,0],[2,2,2,1],[1,3,3,2],[0,0,1,1]],[[2,2,2,0],[2,2,2,1],[1,3,3,2],[0,0,1,1]],[[1,2,2,0],[3,2,2,1],[1,3,3,1],[0,0,2,1]],[[1,2,3,0],[2,2,2,1],[1,3,3,1],[0,0,2,1]],[[1,3,2,0],[2,2,2,1],[1,3,3,1],[0,0,2,1]],[[2,2,2,0],[2,2,2,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,0],[3,2,2,1],[1,3,2,2],[1,2,0,0]],[[1,2,3,0],[2,2,2,1],[1,3,2,2],[1,2,0,0]],[[1,3,2,0],[2,2,2,1],[1,3,2,2],[1,2,0,0]],[[2,2,2,0],[2,2,2,1],[1,3,2,2],[1,2,0,0]],[[1,2,2,0],[3,2,2,1],[1,3,2,2],[1,1,1,0]],[[1,2,3,0],[2,2,2,1],[1,3,2,2],[1,1,1,0]],[[1,3,2,0],[2,2,2,1],[1,3,2,2],[1,1,1,0]],[[2,2,2,0],[2,2,2,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[3,2,2,1],[1,3,2,2],[1,1,0,1]],[[1,2,3,0],[2,2,2,1],[1,3,2,2],[1,1,0,1]],[[1,3,2,0],[2,2,2,1],[1,3,2,2],[1,1,0,1]],[[2,2,2,0],[2,2,2,1],[1,3,2,2],[1,1,0,1]],[[1,2,2,0],[3,2,2,1],[1,3,2,2],[1,0,2,0]],[[1,2,3,0],[2,2,2,1],[1,3,2,2],[1,0,2,0]],[[1,3,2,0],[2,2,2,1],[1,3,2,2],[1,0,2,0]],[[2,2,2,0],[2,2,2,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[3,2,2,1],[1,3,2,2],[1,0,1,1]],[[1,2,3,0],[2,2,2,1],[1,3,2,2],[1,0,1,1]],[[1,3,2,0],[2,2,2,1],[1,3,2,2],[1,0,1,1]],[[2,2,2,0],[2,2,2,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,0],[3,2,2,1],[1,3,2,2],[0,2,1,0]],[[1,2,3,0],[2,2,2,1],[1,3,2,2],[0,2,1,0]],[[1,3,2,0],[2,2,2,1],[1,3,2,2],[0,2,1,0]],[[2,2,2,0],[2,2,2,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[3,2,2,1],[1,3,2,2],[0,2,0,1]],[[1,2,3,0],[2,2,2,1],[1,3,2,2],[0,2,0,1]],[[1,3,2,0],[2,2,2,1],[1,3,2,2],[0,2,0,1]],[[2,2,2,0],[2,2,2,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[3,2,2,1],[1,3,2,2],[0,1,2,0]],[[1,2,3,0],[2,2,2,1],[1,3,2,2],[0,1,2,0]],[[1,3,2,0],[2,2,2,1],[1,3,2,2],[0,1,2,0]],[[2,2,2,0],[2,2,2,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[3,2,2,1],[1,3,2,2],[0,1,1,1]],[[1,2,3,0],[2,2,2,1],[1,3,2,2],[0,1,1,1]],[[1,3,2,0],[2,2,2,1],[1,3,2,2],[0,1,1,1]],[[2,2,2,0],[2,2,2,1],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,0],[1,2,2,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[1,2,2,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[1,2,2,2],[1,3,2,1]],[[0,2,2,1],[2,2,1,0],[1,2,2,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,0],[1,2,2,2],[1,2,2,2]],[[0,2,2,1],[2,2,1,0],[1,2,4,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[1,2,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[1,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,1,0],[1,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,1,0],[1,2,3,1],[1,2,2,2]],[[0,2,2,1],[2,2,1,0],[1,2,4,2],[1,2,1,1]],[[0,2,2,1],[2,2,1,0],[1,2,3,3],[1,2,1,1]],[[0,2,2,1],[2,2,1,0],[1,2,3,2],[1,2,1,2]],[[0,2,2,1],[2,2,1,0],[1,2,4,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,0],[1,2,3,3],[1,2,2,0]],[[0,2,2,1],[2,2,1,0],[1,2,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,1,0],[1,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,1,0],[1,2,3,2],[1,2,3,0]],[[0,2,2,1],[2,2,1,0],[1,4,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,1,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,0],[1,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,2,1,0],[1,4,2,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,2,1,0],[1,3,2,1],[1,2,2,2]],[[0,2,2,1],[2,2,1,0],[1,3,2,3],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,2,2],[1,1,3,1]],[[0,2,2,1],[2,2,1,0],[1,3,2,2],[1,1,2,2]],[[0,2,2,1],[2,2,1,0],[1,4,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,0],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,2,1,0],[1,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,2,1,0],[1,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,2,1,0],[1,4,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,0],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,0],[1,3,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,0],[1,2,3,1]],[[0,2,2,1],[2,2,1,0],[1,4,3,1],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,1],[1,1,3,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,1],[1,1,2,2]],[[0,2,2,1],[2,2,1,0],[1,4,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,1,0],[1,3,4,1],[1,2,1,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,1],[1,3,1,1]],[[0,2,2,1],[2,2,1,0],[1,4,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,1,0],[1,3,4,2],[1,1,1,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,3],[1,1,1,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,2],[1,1,1,2]],[[0,2,2,1],[2,2,1,0],[1,4,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,0],[1,3,4,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,0],[1,3,3,3],[1,1,2,0]],[[0,2,2,1],[2,2,1,0],[1,3,3,2],[1,1,3,0]],[[0,2,2,1],[2,2,1,0],[1,4,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,0],[1,3,4,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,3],[1,2,0,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,2,1,0],[1,3,3,2],[1,2,0,2]],[[0,2,2,1],[2,2,1,0],[1,4,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,0],[1,3,4,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,0],[1,3,3,3],[1,2,1,0]],[[0,2,2,1],[2,2,1,0],[1,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,2,1,0],[1,3,3,2],[1,3,1,0]],[[0,2,2,1],[3,2,1,0],[2,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[3,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,1,2,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,1,2,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,1,2,2],[1,3,2,1]],[[0,2,2,1],[2,2,1,0],[2,1,2,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,0],[2,1,2,2],[1,2,2,2]],[[0,2,2,1],[3,2,1,0],[2,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[3,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,1,4,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,1,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,1,0],[2,1,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,1,0],[2,1,3,1],[1,2,2,2]],[[0,2,2,1],[2,2,1,0],[2,1,4,2],[1,2,1,1]],[[0,2,2,1],[2,2,1,0],[2,1,3,3],[1,2,1,1]],[[0,2,2,1],[2,2,1,0],[2,1,3,2],[1,2,1,2]],[[0,2,2,1],[3,2,1,0],[2,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,0],[3,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,1,4,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,1,3,3],[1,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,1,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,1,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,1,0],[2,1,3,2],[1,2,3,0]],[[0,2,2,1],[3,2,1,0],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[3,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,1,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,0],[2,2,1,2],[1,2,2,2]],[[0,2,2,1],[3,2,1,0],[2,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[3,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,2,1],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,2,1],[1,3,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,2,1],[1,2,3,1]],[[0,2,2,1],[2,2,1,0],[2,2,2,1],[1,2,2,2]],[[0,2,2,1],[2,2,1,0],[2,2,2,3],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,2,2],[0,3,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,2,2],[0,2,3,1]],[[0,2,2,1],[2,2,1,0],[2,2,2,2],[0,2,2,2]],[[0,2,2,1],[3,2,1,0],[2,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,0],[3,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,2,2,2],[2,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,2,2,2],[1,3,2,0]],[[0,2,2,1],[2,2,1,0],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[3,2,1,0],[2,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[3,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,0],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,0],[1,3,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,0],[1,2,3,1]],[[0,2,2,1],[2,2,1,0],[2,2,4,1],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,1],[0,3,2,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,1],[0,2,3,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,1],[0,2,2,2]],[[0,2,2,1],[3,2,1,0],[2,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,1,0],[3,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,1],[2,2,1,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,1],[1,3,1,1]],[[0,2,2,1],[2,2,1,0],[2,2,4,2],[0,2,1,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,3],[0,2,1,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,2],[0,2,1,2]],[[0,2,2,1],[2,2,1,0],[2,2,4,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,2,3,3],[0,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,2,3,2],[0,3,2,0]],[[0,2,2,1],[2,2,1,0],[2,2,3,2],[0,2,3,0]],[[0,2,2,1],[3,2,1,0],[2,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,0],[3,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,2],[2,2,0,1]],[[0,2,2,1],[2,2,1,0],[2,2,3,2],[1,3,0,1]],[[0,2,2,1],[3,2,1,0],[2,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,0],[3,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,0],[2,2,3,2],[2,2,1,0]],[[0,2,2,1],[2,2,1,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[3,2,2,1],[1,3,2,1],[1,2,0,1]],[[1,3,2,0],[2,2,2,1],[1,3,2,1],[1,2,0,1]],[[2,2,2,0],[2,2,2,1],[1,3,2,1],[1,2,0,1]],[[1,2,2,0],[3,2,2,1],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[3,2,1,0],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[3,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,0,2],[1,3,2,1]],[[0,2,2,1],[3,2,1,0],[2,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[3,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,1,1],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,1,1],[1,3,2,1]],[[0,2,2,1],[3,2,1,0],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[3,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,4,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,1,3],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,1,2],[0,3,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,1,2],[0,2,3,1]],[[0,2,2,1],[2,2,1,0],[2,3,1,2],[0,2,2,2]],[[0,2,2,1],[3,2,1,0],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[3,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,4,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,1,2],[2,1,2,1]],[[0,2,2,1],[3,2,1,0],[2,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,0],[3,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,1,2],[2,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,1,2],[1,3,2,0]],[[0,2,2,1],[3,2,1,0],[2,3,2,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[3,3,2,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,2,0],[2,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,2,0],[1,3,2,1]],[[0,2,2,1],[3,2,1,0],[2,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,4,2,1],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,2,1],[0,3,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,2,1],[0,2,3,1]],[[0,2,2,1],[2,2,1,0],[2,3,2,1],[0,2,2,2]],[[0,2,2,1],[3,2,1,0],[2,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[3,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,2,1],[2,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,2,1,0],[2,3,2,2],[0,1,2,2]],[[0,2,2,1],[3,2,1,0],[2,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,0],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,4,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,2,2],[0,3,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,2,2],[0,2,3,0]],[[0,2,2,1],[2,2,1,0],[2,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,2,2],[1,0,3,1]],[[0,2,2,1],[2,2,1,0],[2,3,2,2],[1,0,2,2]],[[0,2,2,1],[3,2,1,0],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,0],[3,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,0],[2,4,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,2,2],[2,1,2,0]],[[1,2,3,0],[2,2,2,1],[1,3,2,1],[1,1,1,1]],[[1,3,2,0],[2,2,2,1],[1,3,2,1],[1,1,1,1]],[[2,2,2,0],[2,2,2,1],[1,3,2,1],[1,1,1,1]],[[1,2,2,0],[3,2,2,1],[1,3,2,1],[1,0,2,1]],[[1,2,3,0],[2,2,2,1],[1,3,2,1],[1,0,2,1]],[[1,3,2,0],[2,2,2,1],[1,3,2,1],[1,0,2,1]],[[2,2,2,0],[2,2,2,1],[1,3,2,1],[1,0,2,1]],[[0,2,2,1],[3,2,1,0],[2,3,3,0],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[3,3,3,0],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,4,3,0],[0,2,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,0],[0,3,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,0],[0,2,3,1]],[[0,2,2,1],[3,2,1,0],[2,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[3,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,4,3,0],[1,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,0],[2,1,2,1]],[[0,2,2,1],[3,2,1,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,1,0],[3,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,4,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,1],[0,1,2,2]],[[0,2,2,1],[3,2,1,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,1,0],[3,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,1,0],[2,4,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,1,0],[2,3,4,1],[0,2,1,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,1],[0,3,1,1]],[[0,2,2,1],[3,2,1,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,1,0],[3,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,1,0],[2,4,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,4,1],[1,0,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,1],[2,0,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,1],[1,0,3,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,1],[1,0,2,2]],[[0,2,2,1],[3,2,1,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,1,0],[3,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,1,0],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,1,0],[2,3,4,1],[1,1,1,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,1],[2,1,1,1]],[[0,2,2,1],[3,2,1,0],[2,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,1,0],[3,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,1,0],[2,4,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[3,2,2,1],[1,3,2,1],[0,2,1,1]],[[1,2,3,0],[2,2,2,1],[1,3,2,1],[0,2,1,1]],[[1,3,2,0],[2,2,2,1],[1,3,2,1],[0,2,1,1]],[[2,2,2,0],[2,2,2,1],[1,3,2,1],[0,2,1,1]],[[1,2,2,0],[3,2,2,1],[1,3,2,1],[0,1,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[0,0,2,2]],[[0,2,2,1],[3,2,1,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,0],[3,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,0],[2,4,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,0],[2,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[0,1,1,2]],[[0,2,2,1],[3,2,1,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,0],[3,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,0],[2,4,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[0,1,3,0]],[[0,2,2,1],[3,2,1,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,0],[3,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,0],[2,4,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,0],[2,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[0,3,0,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[0,2,0,2]],[[0,2,2,1],[3,2,1,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,0],[3,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,0],[2,4,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,0],[2,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,0],[2,3,3,3],[0,2,1,0]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[0,3,1,0]],[[1,2,3,0],[2,2,2,1],[1,3,2,1],[0,1,2,1]],[[1,3,2,0],[2,2,2,1],[1,3,2,1],[0,1,2,1]],[[2,2,2,0],[2,2,2,1],[1,3,2,1],[0,1,2,1]],[[0,2,2,1],[3,2,1,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,0],[3,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,0],[2,4,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,0],[2,3,4,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,3],[1,0,1,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[2,0,1,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[1,0,1,2]],[[0,2,2,1],[3,2,1,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,0],[3,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,0],[2,4,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,4,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,3,3],[1,0,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[2,0,2,0]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[1,0,3,0]],[[0,2,2,1],[3,2,1,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,0],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,0],[2,4,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,0],[2,3,4,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,3],[1,1,0,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[2,1,0,1]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[1,1,0,2]],[[0,2,2,1],[3,2,1,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,0],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,0],[2,4,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,0],[2,3,4,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,0],[2,3,3,3],[1,1,1,0]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[3,2,2,1],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[3,2,1,0],[2,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,2,1,0],[3,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,2,1,0],[2,4,3,2],[1,2,0,0]],[[0,2,2,1],[2,2,1,0],[2,3,3,2],[2,2,0,0]],[[1,2,3,0],[2,2,2,1],[1,3,1,2],[1,1,2,0]],[[1,3,2,0],[2,2,2,1],[1,3,1,2],[1,1,2,0]],[[2,2,2,0],[2,2,2,1],[1,3,1,2],[1,1,2,0]],[[1,2,2,0],[3,2,2,1],[1,3,1,2],[0,2,2,0]],[[1,2,3,0],[2,2,2,1],[1,3,1,2],[0,2,2,0]],[[1,3,2,0],[2,2,2,1],[1,3,1,2],[0,2,2,0]],[[2,2,2,0],[2,2,2,1],[1,3,1,2],[0,2,2,0]],[[1,2,2,0],[3,2,2,1],[1,3,1,1],[1,1,2,1]],[[1,2,3,0],[2,2,2,1],[1,3,1,1],[1,1,2,1]],[[1,3,2,0],[2,2,2,1],[1,3,1,1],[1,1,2,1]],[[2,2,2,0],[2,2,2,1],[1,3,1,1],[1,1,2,1]],[[1,2,2,0],[3,2,2,1],[1,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,2,1,1],[1,2,4,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[1,2,3,0],[2,2,2,1]],[[0,2,2,1],[2,2,1,1],[1,2,3,0],[1,3,2,1]],[[0,2,2,1],[2,2,1,1],[1,2,3,0],[1,2,3,1]],[[0,2,2,1],[2,2,1,1],[1,2,3,0],[1,2,2,2]],[[0,2,2,1],[2,2,1,1],[1,2,4,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,1],[1,2,3,1],[2,2,2,0]],[[0,2,2,1],[2,2,1,1],[1,2,3,1],[1,3,2,0]],[[0,2,2,1],[2,2,1,1],[1,2,3,1],[1,2,3,0]],[[1,2,3,0],[2,2,2,1],[1,3,1,1],[0,2,2,1]],[[1,3,2,0],[2,2,2,1],[1,3,1,1],[0,2,2,1]],[[2,2,2,0],[2,2,2,1],[1,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,2,1,1],[1,4,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[1,3,0,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[1,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,1],[1,3,0,2],[1,3,2,1]],[[0,2,2,1],[2,2,1,1],[1,3,0,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,1],[1,3,0,2],[1,2,2,2]],[[0,2,2,1],[2,2,1,1],[1,4,2,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[1,3,2,0],[2,2,2,1]],[[0,2,2,1],[2,2,1,1],[1,3,2,0],[1,3,2,1]],[[0,2,2,1],[2,2,1,1],[1,3,2,0],[1,2,3,1]],[[0,2,2,1],[2,2,1,1],[1,3,2,0],[1,2,2,2]],[[0,2,2,1],[2,2,1,1],[1,4,2,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,1],[1,3,2,1],[2,2,2,0]],[[0,2,2,1],[2,2,1,1],[1,3,2,1],[1,3,2,0]],[[0,2,2,1],[2,2,1,1],[1,3,2,1],[1,2,3,0]],[[0,2,2,1],[2,2,1,1],[1,4,3,0],[1,1,2,1]],[[0,2,2,1],[2,2,1,1],[1,3,4,0],[1,1,2,1]],[[0,2,2,1],[2,2,1,1],[1,3,3,0],[1,1,3,1]],[[0,2,2,1],[2,2,1,1],[1,3,3,0],[1,1,2,2]],[[0,2,2,1],[2,2,1,1],[1,4,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,1,1],[1,3,4,0],[1,2,1,1]],[[0,2,2,1],[2,2,1,1],[1,3,3,0],[2,2,1,1]],[[0,2,2,1],[2,2,1,1],[1,3,3,0],[1,3,1,1]],[[0,2,2,1],[2,2,1,1],[1,4,3,1],[1,1,2,0]],[[0,2,2,1],[2,2,1,1],[1,3,4,1],[1,1,2,0]],[[0,2,2,1],[2,2,1,1],[1,3,3,1],[1,1,3,0]],[[0,2,2,1],[2,2,1,1],[1,4,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,1,1],[1,3,4,1],[1,2,0,1]],[[0,2,2,1],[2,2,1,1],[1,3,3,1],[2,2,0,1]],[[0,2,2,1],[2,2,1,1],[1,3,3,1],[1,3,0,1]],[[0,2,2,1],[2,2,1,1],[1,4,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,1,1],[1,3,4,1],[1,2,1,0]],[[0,2,2,1],[2,2,1,1],[1,3,3,1],[2,2,1,0]],[[0,2,2,1],[2,2,1,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[3,2,2,1],[1,3,0,2],[1,1,2,1]],[[1,2,3,0],[2,2,2,1],[1,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,2,2,1],[1,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,2,2,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,2,2,1],[1,3,0,2],[0,2,2,1]],[[1,2,3,0],[2,2,2,1],[1,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,2,2,1],[1,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,2,2,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[3,2,2,1],[1,2,3,2],[1,1,1,0]],[[1,2,3,0],[2,2,2,1],[1,2,3,2],[1,1,1,0]],[[1,3,2,0],[2,2,2,1],[1,2,3,2],[1,1,1,0]],[[2,2,2,0],[2,2,2,1],[1,2,3,2],[1,1,1,0]],[[1,2,2,0],[3,2,2,1],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[3,2,1,1],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[3,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,1,4,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,1,3,0],[2,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,1,3,0],[1,3,2,1]],[[0,2,2,1],[2,2,1,1],[2,1,3,0],[1,2,3,1]],[[0,2,2,1],[2,2,1,1],[2,1,3,0],[1,2,2,2]],[[0,2,2,1],[3,2,1,1],[2,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,1],[3,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,1],[2,1,4,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,1],[2,1,3,1],[2,2,2,0]],[[0,2,2,1],[2,2,1,1],[2,1,3,1],[1,3,2,0]],[[0,2,2,1],[2,2,1,1],[2,1,3,1],[1,2,3,0]],[[1,2,3,0],[2,2,2,1],[1,2,3,2],[1,1,0,1]],[[1,3,2,0],[2,2,2,1],[1,2,3,2],[1,1,0,1]],[[2,2,2,0],[2,2,2,1],[1,2,3,2],[1,1,0,1]],[[1,2,2,0],[3,2,2,1],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[3,2,1,1],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[3,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,2,0,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,2,0,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,2,0,2],[1,3,2,1]],[[0,2,2,1],[2,2,1,1],[2,2,0,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,1],[2,2,0,2],[1,2,2,2]],[[0,2,2,1],[3,2,1,1],[2,2,2,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[3,2,2,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,2,2,0],[2,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,2,2,0],[1,3,2,1]],[[0,2,2,1],[2,2,1,1],[2,2,2,0],[1,2,3,1]],[[0,2,2,1],[2,2,1,1],[2,2,2,0],[1,2,2,2]],[[0,2,2,1],[3,2,1,1],[2,2,2,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,1],[3,2,2,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,1],[2,2,2,1],[2,2,2,0]],[[0,2,2,1],[2,2,1,1],[2,2,2,1],[1,3,2,0]],[[0,2,2,1],[2,2,1,1],[2,2,2,1],[1,2,3,0]],[[1,2,3,0],[2,2,2,1],[1,2,3,2],[1,0,2,0]],[[1,3,2,0],[2,2,2,1],[1,2,3,2],[1,0,2,0]],[[2,2,2,0],[2,2,2,1],[1,2,3,2],[1,0,2,0]],[[1,2,2,0],[3,2,2,1],[1,2,3,2],[1,0,1,1]],[[1,2,3,0],[2,2,2,1],[1,2,3,2],[1,0,1,1]],[[1,3,2,0],[2,2,2,1],[1,2,3,2],[1,0,1,1]],[[2,2,2,0],[2,2,2,1],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,1],[2,2,4,0],[0,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,2,3,0],[0,3,2,1]],[[0,2,2,1],[2,2,1,1],[2,2,3,0],[0,2,3,1]],[[0,2,2,1],[2,2,1,1],[2,2,3,0],[0,2,2,2]],[[0,2,2,1],[3,2,1,1],[2,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,1,1],[3,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,1,1],[2,2,3,0],[2,2,1,1]],[[0,2,2,1],[2,2,1,1],[2,2,3,0],[1,3,1,1]],[[0,2,2,1],[2,2,1,1],[2,2,4,1],[0,2,2,0]],[[0,2,2,1],[2,2,1,1],[2,2,3,1],[0,3,2,0]],[[0,2,2,1],[2,2,1,1],[2,2,3,1],[0,2,3,0]],[[0,2,2,1],[3,2,1,1],[2,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,1,1],[3,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,1,1],[2,2,3,1],[2,2,0,1]],[[0,2,2,1],[2,2,1,1],[2,2,3,1],[1,3,0,1]],[[0,2,2,1],[3,2,1,1],[2,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,1,1],[3,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,1,1],[2,2,3,1],[2,2,1,0]],[[0,2,2,1],[2,2,1,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[3,2,2,1],[1,2,3,2],[0,2,1,0]],[[1,2,3,0],[2,2,2,1],[1,2,3,2],[0,2,1,0]],[[1,3,2,0],[2,2,2,1],[1,2,3,2],[0,2,1,0]],[[2,2,2,0],[2,2,2,1],[1,2,3,2],[0,2,1,0]],[[1,2,2,0],[3,2,2,1],[1,2,3,2],[0,2,0,1]],[[1,2,3,0],[2,2,2,1],[1,2,3,2],[0,2,0,1]],[[1,3,2,0],[2,2,2,1],[1,2,3,2],[0,2,0,1]],[[2,2,2,0],[2,2,2,1],[1,2,3,2],[0,2,0,1]],[[1,2,2,0],[3,2,2,1],[1,2,3,2],[0,1,2,0]],[[1,2,3,0],[2,2,2,1],[1,2,3,2],[0,1,2,0]],[[1,3,2,0],[2,2,2,1],[1,2,3,2],[0,1,2,0]],[[2,2,2,0],[2,2,2,1],[1,2,3,2],[0,1,2,0]],[[1,2,2,0],[3,2,2,1],[1,2,3,2],[0,1,1,1]],[[1,2,3,0],[2,2,2,1],[1,2,3,2],[0,1,1,1]],[[1,3,2,0],[2,2,2,1],[1,2,3,2],[0,1,1,1]],[[2,2,2,0],[2,2,2,1],[1,2,3,2],[0,1,1,1]],[[1,2,2,0],[3,2,2,1],[1,2,3,2],[0,0,2,1]],[[1,2,3,0],[2,2,2,1],[1,2,3,2],[0,0,2,1]],[[1,3,2,0],[2,2,2,1],[1,2,3,2],[0,0,2,1]],[[2,2,2,0],[2,2,2,1],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[3,2,1,1],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,1],[3,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,4,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,0,3],[0,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,0,2],[0,3,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,0,2],[0,2,3,1]],[[0,2,2,1],[2,2,1,1],[2,3,0,2],[0,2,2,2]],[[0,2,2,1],[3,2,1,1],[2,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,1,1],[3,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,1,1],[2,4,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,0,2],[2,1,2,1]],[[0,2,2,1],[3,2,1,1],[2,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[3,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,1,0],[2,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,1,0],[1,3,2,1]],[[0,2,2,1],[3,2,1,1],[2,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,1],[3,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,1],[2,3,1,1],[2,2,2,0]],[[0,2,2,1],[2,2,1,1],[2,3,1,1],[1,3,2,0]],[[1,2,2,0],[3,2,2,1],[1,2,3,1],[1,1,1,1]],[[1,2,3,0],[2,2,2,1],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[3,2,1,1],[2,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,2,1,1],[3,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,4,2,0],[0,2,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,2,0],[0,3,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,2,0],[0,2,3,1]],[[0,2,2,1],[2,2,1,1],[2,3,2,0],[0,2,2,2]],[[0,2,2,1],[3,2,1,1],[2,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,2,1,1],[3,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,2,1,1],[2,4,2,0],[1,1,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,2,0],[2,1,2,1]],[[0,2,2,1],[3,2,1,1],[2,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,2,1,1],[3,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,2,1,1],[2,4,2,1],[0,2,2,0]],[[0,2,2,1],[2,2,1,1],[2,3,2,1],[0,3,2,0]],[[0,2,2,1],[2,2,1,1],[2,3,2,1],[0,2,3,0]],[[0,2,2,1],[3,2,1,1],[2,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,2,1,1],[3,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,2,1,1],[2,4,2,1],[1,1,2,0]],[[0,2,2,1],[2,2,1,1],[2,3,2,1],[2,1,2,0]],[[1,3,2,0],[2,2,2,1],[1,2,3,1],[1,1,1,1]],[[2,2,2,0],[2,2,2,1],[1,2,3,1],[1,1,1,1]],[[1,2,2,0],[3,2,2,1],[1,2,3,1],[1,0,2,1]],[[1,2,3,0],[2,2,2,1],[1,2,3,1],[1,0,2,1]],[[1,3,2,0],[2,2,2,1],[1,2,3,1],[1,0,2,1]],[[2,2,2,0],[2,2,2,1],[1,2,3,1],[1,0,2,1]],[[1,2,2,0],[3,2,2,1],[1,2,3,1],[0,2,1,1]],[[1,2,3,0],[2,2,2,1],[1,2,3,1],[0,2,1,1]],[[1,3,2,0],[2,2,2,1],[1,2,3,1],[0,2,1,1]],[[2,2,2,0],[2,2,2,1],[1,2,3,1],[0,2,1,1]],[[1,2,2,0],[3,2,2,1],[1,2,3,1],[0,1,2,1]],[[1,2,3,0],[2,2,2,1],[1,2,3,1],[0,1,2,1]],[[1,3,2,0],[2,2,2,1],[1,2,3,1],[0,1,2,1]],[[2,2,2,0],[2,2,2,1],[1,2,3,1],[0,1,2,1]],[[1,2,2,0],[3,2,2,1],[1,1,3,2],[0,2,2,0]],[[1,2,3,0],[2,2,2,1],[1,1,3,2],[0,2,2,0]],[[1,3,2,0],[2,2,2,1],[1,1,3,2],[0,2,2,0]],[[2,2,2,0],[2,2,2,1],[1,1,3,2],[0,2,2,0]],[[1,2,2,0],[3,2,2,1],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[3,2,1,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,1,1],[3,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,1,1],[2,4,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,4,0],[0,1,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,3,0],[0,1,3,1]],[[0,2,2,1],[2,2,1,1],[2,3,3,0],[0,1,2,2]],[[0,2,2,1],[3,2,1,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,1,1],[3,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,1,1],[2,4,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,1,1],[2,3,4,0],[0,2,1,1]],[[0,2,2,1],[2,2,1,1],[2,3,3,0],[0,3,1,1]],[[0,2,2,1],[3,2,1,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,1,1],[3,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,1,1],[2,4,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,4,0],[1,0,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,3,0],[2,0,2,1]],[[0,2,2,1],[2,2,1,1],[2,3,3,0],[1,0,3,1]],[[0,2,2,1],[2,2,1,1],[2,3,3,0],[1,0,2,2]],[[0,2,2,1],[3,2,1,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,1,1],[3,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,1,1],[2,4,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,1,1],[2,3,4,0],[1,1,1,1]],[[0,2,2,1],[2,2,1,1],[2,3,3,0],[2,1,1,1]],[[0,2,2,1],[3,2,1,1],[2,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,2,1,1],[3,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,2,1,1],[2,4,3,0],[1,2,0,1]],[[0,2,2,1],[2,2,1,1],[2,3,3,0],[2,2,0,1]],[[1,2,3,0],[2,2,2,1],[1,1,3,2],[0,2,1,1]],[[1,3,2,0],[2,2,2,1],[1,1,3,2],[0,2,1,1]],[[2,2,2,0],[2,2,2,1],[1,1,3,2],[0,2,1,1]],[[1,2,2,0],[3,2,2,1],[1,1,3,1],[0,2,2,1]],[[0,2,2,1],[3,2,1,1],[2,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,1,1],[3,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,1,1],[2,4,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,1,1],[2,3,4,1],[0,1,1,1]],[[0,2,2,1],[3,2,1,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,1,1],[3,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,1,1],[2,4,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,1,1],[2,3,4,1],[0,1,2,0]],[[0,2,2,1],[2,2,1,1],[2,3,3,1],[0,1,3,0]],[[0,2,2,1],[3,2,1,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,1,1],[3,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,1,1],[2,4,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,1,1],[2,3,4,1],[0,2,0,1]],[[0,2,2,1],[2,2,1,1],[2,3,3,1],[0,3,0,1]],[[0,2,2,1],[3,2,1,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,1,1],[3,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,1,1],[2,4,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,1,1],[2,3,4,1],[0,2,1,0]],[[0,2,2,1],[2,2,1,1],[2,3,3,1],[0,3,1,0]],[[1,2,3,0],[2,2,2,1],[1,1,3,1],[0,2,2,1]],[[1,3,2,0],[2,2,2,1],[1,1,3,1],[0,2,2,1]],[[2,2,2,0],[2,2,2,1],[1,1,3,1],[0,2,2,1]],[[0,2,2,1],[3,2,1,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,1,1],[3,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,1,1],[2,4,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,1,1],[2,3,4,1],[1,0,1,1]],[[0,2,2,1],[2,2,1,1],[2,3,3,1],[2,0,1,1]],[[0,2,2,1],[3,2,1,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,1,1],[3,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,1,1],[2,4,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,1,1],[2,3,4,1],[1,0,2,0]],[[0,2,2,1],[2,2,1,1],[2,3,3,1],[2,0,2,0]],[[0,2,2,1],[2,2,1,1],[2,3,3,1],[1,0,3,0]],[[0,2,2,1],[3,2,1,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,1,1],[3,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,1,1],[2,4,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,1,1],[2,3,4,1],[1,1,0,1]],[[0,2,2,1],[2,2,1,1],[2,3,3,1],[2,1,0,1]],[[0,2,2,1],[3,2,1,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,1,1],[3,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,1,1],[2,4,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,1,1],[2,3,4,1],[1,1,1,0]],[[0,2,2,1],[2,2,1,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,0],[3,2,2,1],[1,0,3,2],[1,2,2,0]],[[1,2,3,0],[2,2,2,1],[1,0,3,2],[1,2,2,0]],[[1,3,2,0],[2,2,2,1],[1,0,3,2],[1,2,2,0]],[[2,2,2,0],[2,2,2,1],[1,0,3,2],[1,2,2,0]],[[1,2,2,0],[3,2,2,1],[1,0,3,2],[1,2,1,1]],[[1,2,3,0],[2,2,2,1],[1,0,3,2],[1,2,1,1]],[[1,3,2,0],[2,2,2,1],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[3,2,1,1],[2,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,2,1,1],[3,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,2,1,1],[2,4,3,1],[1,2,0,0]],[[0,2,2,1],[2,2,1,1],[2,3,3,1],[2,2,0,0]],[[2,2,2,0],[2,2,2,1],[1,0,3,2],[1,2,1,1]],[[1,2,2,0],[3,2,2,1],[1,0,3,1],[1,2,2,1]],[[1,2,3,0],[2,2,2,1],[1,0,3,1],[1,2,2,1]],[[1,3,2,0],[2,2,2,1],[1,0,3,1],[1,2,2,1]],[[2,2,2,0],[2,2,2,1],[1,0,3,1],[1,2,2,1]],[[1,2,2,0],[3,2,2,1],[0,3,3,2],[1,2,0,0]],[[1,2,3,0],[2,2,2,1],[0,3,3,2],[1,2,0,0]],[[1,3,2,0],[2,2,2,1],[0,3,3,2],[1,2,0,0]],[[2,2,2,0],[2,2,2,1],[0,3,3,2],[1,2,0,0]],[[1,2,2,0],[3,2,2,1],[0,3,2,2],[1,2,1,0]],[[1,2,3,0],[2,2,2,1],[0,3,2,2],[1,2,1,0]],[[1,3,2,0],[2,2,2,1],[0,3,2,2],[1,2,1,0]],[[2,2,2,0],[2,2,2,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[3,2,2,1],[0,3,2,2],[1,2,0,1]],[[1,2,3,0],[2,2,2,1],[0,3,2,2],[1,2,0,1]],[[1,3,2,0],[2,2,2,1],[0,3,2,2],[1,2,0,1]],[[2,2,2,0],[2,2,2,1],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[3,2,2,1],[0,3,2,2],[1,1,2,0]],[[1,2,3,0],[2,2,2,1],[0,3,2,2],[1,1,2,0]],[[1,3,2,0],[2,2,2,1],[0,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,2,2,1],[0,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,2,2,1],[0,3,2,2],[1,1,1,1]],[[1,2,3,0],[2,2,2,1],[0,3,2,2],[1,1,1,1]],[[1,3,2,0],[2,2,2,1],[0,3,2,2],[1,1,1,1]],[[2,2,2,0],[2,2,2,1],[0,3,2,2],[1,1,1,1]],[[1,2,2,0],[3,2,2,1],[0,3,2,1],[1,2,1,1]],[[1,2,3,0],[2,2,2,1],[0,3,2,1],[1,2,1,1]],[[1,3,2,0],[2,2,2,1],[0,3,2,1],[1,2,1,1]],[[2,2,2,0],[2,2,2,1],[0,3,2,1],[1,2,1,1]],[[1,2,2,0],[3,2,2,1],[0,3,2,1],[1,1,2,1]],[[1,2,3,0],[2,2,2,1],[0,3,2,1],[1,1,2,1]],[[1,3,2,0],[2,2,2,1],[0,3,2,1],[1,1,2,1]],[[2,2,2,0],[2,2,2,1],[0,3,2,1],[1,1,2,1]],[[1,2,2,0],[3,2,2,1],[0,3,1,2],[1,2,2,0]],[[1,2,3,0],[2,2,2,1],[0,3,1,2],[1,2,2,0]],[[1,3,2,0],[2,2,2,1],[0,3,1,2],[1,2,2,0]],[[2,2,2,0],[2,2,2,1],[0,3,1,2],[1,2,2,0]],[[1,2,2,0],[3,2,2,1],[0,3,1,1],[1,2,2,1]],[[1,2,3,0],[2,2,2,1],[0,3,1,1],[1,2,2,1]],[[1,3,2,0],[2,2,2,1],[0,3,1,1],[1,2,2,1]],[[2,2,2,0],[2,2,2,1],[0,3,1,1],[1,2,2,1]],[[1,2,2,0],[3,2,2,1],[0,3,0,2],[1,2,2,1]],[[1,2,3,0],[2,2,2,1],[0,3,0,2],[1,2,2,1]],[[1,3,2,0],[2,2,2,1],[0,3,0,2],[1,2,2,1]],[[2,2,2,0],[2,2,2,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[3,2,2,1],[0,2,3,2],[1,2,1,0]],[[1,2,3,0],[2,2,2,1],[0,2,3,2],[1,2,1,0]],[[1,3,2,0],[2,2,2,1],[0,2,3,2],[1,2,1,0]],[[2,2,2,0],[2,2,2,1],[0,2,3,2],[1,2,1,0]],[[1,2,2,0],[3,2,2,1],[0,2,3,2],[1,2,0,1]],[[1,2,3,0],[2,2,2,1],[0,2,3,2],[1,2,0,1]],[[1,3,2,0],[2,2,2,1],[0,2,3,2],[1,2,0,1]],[[2,2,2,0],[2,2,2,1],[0,2,3,2],[1,2,0,1]],[[1,2,2,0],[3,2,2,1],[0,2,3,2],[1,1,2,0]],[[1,2,3,0],[2,2,2,1],[0,2,3,2],[1,1,2,0]],[[1,3,2,0],[2,2,2,1],[0,2,3,2],[1,1,2,0]],[[2,2,2,0],[2,2,2,1],[0,2,3,2],[1,1,2,0]],[[1,2,2,0],[3,2,2,1],[0,2,3,2],[1,1,1,1]],[[1,2,3,0],[2,2,2,1],[0,2,3,2],[1,1,1,1]],[[1,3,2,0],[2,2,2,1],[0,2,3,2],[1,1,1,1]],[[2,2,2,0],[2,2,2,1],[0,2,3,2],[1,1,1,1]],[[0,3,2,1],[2,2,1,2],[0,0,3,2],[1,2,2,1]],[[0,2,3,1],[2,2,1,2],[0,0,3,2],[1,2,2,1]],[[0,2,2,2],[2,2,1,2],[0,0,3,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,3],[0,0,3,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[0,0,3,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[0,0,3,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[0,0,3,2],[1,2,2,2]],[[0,3,2,1],[2,2,1,2],[0,1,2,2],[1,2,2,1]],[[0,2,3,1],[2,2,1,2],[0,1,2,2],[1,2,2,1]],[[0,2,2,2],[2,2,1,2],[0,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,3],[0,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[0,1,2,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[0,1,2,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[0,1,2,2],[1,3,2,1]],[[0,2,2,1],[2,2,1,2],[0,1,2,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[0,1,2,2],[1,2,2,2]],[[0,2,2,1],[2,2,1,2],[0,1,4,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[0,1,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[0,1,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,1,2],[0,1,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[0,1,3,1],[1,2,2,2]],[[0,3,2,1],[2,2,1,2],[0,1,3,2],[1,2,1,1]],[[0,2,3,1],[2,2,1,2],[0,1,3,2],[1,2,1,1]],[[0,2,2,2],[2,2,1,2],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,1,3],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[0,1,4,2],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[0,1,3,3],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[0,1,3,2],[1,2,1,2]],[[0,3,2,1],[2,2,1,2],[0,1,3,2],[1,2,2,0]],[[0,2,3,1],[2,2,1,2],[0,1,3,2],[1,2,2,0]],[[0,2,2,2],[2,2,1,2],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,3],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[0,1,4,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[0,1,3,3],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[0,1,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,1,2],[0,1,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,1,2],[0,1,3,2],[1,2,3,0]],[[0,3,2,1],[2,2,1,2],[0,2,2,2],[1,1,2,1]],[[0,2,3,1],[2,2,1,2],[0,2,2,2],[1,1,2,1]],[[0,2,2,2],[2,2,1,2],[0,2,2,2],[1,1,2,1]],[[0,2,2,1],[2,2,1,3],[0,2,2,2],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[0,2,2,3],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[0,2,2,2],[1,1,3,1]],[[0,2,2,1],[2,2,1,2],[0,2,2,2],[1,1,2,2]],[[0,2,2,1],[2,2,1,2],[0,2,4,1],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[0,2,3,1],[1,1,3,1]],[[0,2,2,1],[2,2,1,2],[0,2,3,1],[1,1,2,2]],[[0,3,2,1],[2,2,1,2],[0,2,3,2],[1,0,2,1]],[[0,2,3,1],[2,2,1,2],[0,2,3,2],[1,0,2,1]],[[0,2,2,2],[2,2,1,2],[0,2,3,2],[1,0,2,1]],[[0,2,2,1],[2,2,1,3],[0,2,3,2],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[0,2,4,2],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[0,2,3,3],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[0,2,3,2],[1,0,2,2]],[[0,3,2,1],[2,2,1,2],[0,2,3,2],[1,1,1,1]],[[0,2,3,1],[2,2,1,2],[0,2,3,2],[1,1,1,1]],[[0,2,2,2],[2,2,1,2],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,1,3],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[0,2,4,2],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[0,2,3,3],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[0,2,3,2],[1,1,1,2]],[[0,3,2,1],[2,2,1,2],[0,2,3,2],[1,1,2,0]],[[0,2,3,1],[2,2,1,2],[0,2,3,2],[1,1,2,0]],[[0,2,2,2],[2,2,1,2],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,3],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[0,2,4,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[0,2,3,3],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[0,2,3,2],[1,1,3,0]],[[0,3,2,1],[2,2,1,2],[0,2,3,2],[1,2,0,1]],[[0,2,3,1],[2,2,1,2],[0,2,3,2],[1,2,0,1]],[[0,2,2,2],[2,2,1,2],[0,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,3],[0,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[0,2,4,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[0,2,3,3],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[0,2,3,2],[1,2,0,2]],[[0,3,2,1],[2,2,1,2],[0,2,3,2],[1,2,1,0]],[[0,2,3,1],[2,2,1,2],[0,2,3,2],[1,2,1,0]],[[0,2,2,2],[2,2,1,2],[0,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,3],[0,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,2],[0,2,4,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,0],[3,2,2,1],[0,2,3,1],[1,2,1,1]],[[1,2,3,0],[2,2,2,1],[0,2,3,1],[1,2,1,1]],[[1,3,2,0],[2,2,2,1],[0,2,3,1],[1,2,1,1]],[[2,2,2,0],[2,2,2,1],[0,2,3,1],[1,2,1,1]],[[1,2,2,0],[3,2,2,1],[0,2,3,1],[1,1,2,1]],[[1,2,3,0],[2,2,2,1],[0,2,3,1],[1,1,2,1]],[[0,3,2,1],[2,2,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,3,1],[2,2,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,2],[2,2,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,3],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[0,4,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[0,3,0,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[0,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[0,3,0,2],[1,3,2,1]],[[0,2,2,1],[2,2,1,2],[0,3,0,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[0,3,0,2],[1,2,2,2]],[[0,3,2,1],[2,2,1,2],[0,3,2,2],[0,1,2,1]],[[0,2,3,1],[2,2,1,2],[0,3,2,2],[0,1,2,1]],[[0,2,2,2],[2,2,1,2],[0,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,2,1,3],[0,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[0,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[0,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,2,1,2],[0,3,2,2],[0,1,2,2]],[[1,3,2,0],[2,2,2,1],[0,2,3,1],[1,1,2,1]],[[2,2,2,0],[2,2,2,1],[0,2,3,1],[1,1,2,1]],[[1,2,2,0],[3,2,2,1],[0,1,3,2],[1,2,2,0]],[[1,2,3,0],[2,2,2,1],[0,1,3,2],[1,2,2,0]],[[1,3,2,0],[2,2,2,1],[0,1,3,2],[1,2,2,0]],[[2,2,2,0],[2,2,2,1],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[0,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[0,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,2,1,2],[0,3,3,1],[0,1,2,2]],[[1,2,2,0],[3,2,2,1],[0,1,3,2],[1,2,1,1]],[[1,2,3,0],[2,2,2,1],[0,1,3,2],[1,2,1,1]],[[1,3,2,0],[2,2,2,1],[0,1,3,2],[1,2,1,1]],[[2,2,2,0],[2,2,2,1],[0,1,3,2],[1,2,1,1]],[[1,2,2,0],[3,2,2,1],[0,1,3,1],[1,2,2,1]],[[1,2,3,0],[2,2,2,1],[0,1,3,1],[1,2,2,1]],[[0,3,2,1],[2,2,1,2],[0,3,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,1,2],[0,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,1,2],[0,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,1,3],[0,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,1,2],[0,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,2,1,2],[0,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,1,2],[0,3,3,2],[0,0,2,2]],[[0,3,2,1],[2,2,1,2],[0,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,1,2],[0,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,1,2],[0,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,3],[0,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[0,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[0,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[0,3,3,2],[0,1,1,2]],[[0,3,2,1],[2,2,1,2],[0,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,2,1,2],[0,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,1,2],[0,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,3],[0,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[0,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[0,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[0,3,3,2],[0,1,3,0]],[[0,3,2,1],[2,2,1,2],[0,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,2,1,2],[0,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,2,1,2],[0,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,3],[0,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[0,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[0,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[0,3,3,2],[0,2,0,2]],[[0,3,2,1],[2,2,1,2],[0,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,2,1,2],[0,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,2,1,2],[0,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,3],[0,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[0,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[0,3,3,3],[0,2,1,0]],[[1,3,2,0],[2,2,2,1],[0,1,3,1],[1,2,2,1]],[[2,2,2,0],[2,2,2,1],[0,1,3,1],[1,2,2,1]],[[0,3,2,1],[2,2,1,2],[1,0,2,2],[1,2,2,1]],[[0,2,3,1],[2,2,1,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,2],[2,2,1,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,3],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,0,2,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,0,2,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,0,2,2],[1,3,2,1]],[[0,2,2,1],[2,2,1,2],[1,0,2,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[1,0,2,2],[1,2,2,2]],[[0,2,2,1],[2,2,1,2],[1,0,4,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,0,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,0,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,1,2],[1,0,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[1,0,3,1],[1,2,2,2]],[[0,3,2,1],[2,2,1,2],[1,0,3,2],[0,2,2,1]],[[0,2,3,1],[2,2,1,2],[1,0,3,2],[0,2,2,1]],[[0,2,2,2],[2,2,1,2],[1,0,3,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,3],[1,0,3,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,0,3,3],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,0,3,2],[0,2,3,1]],[[0,2,2,1],[2,2,1,2],[1,0,3,2],[0,2,2,2]],[[0,3,2,1],[2,2,1,2],[1,0,3,2],[1,2,1,1]],[[0,2,3,1],[2,2,1,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,2],[2,2,1,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,1,3],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[1,0,4,2],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[1,0,3,3],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[1,0,3,2],[1,2,1,2]],[[0,3,2,1],[2,2,1,2],[1,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,2,1,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,2,1,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,3],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[1,0,4,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[1,0,3,3],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[1,0,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,1,2],[1,0,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,1,2],[1,0,3,2],[1,2,3,0]],[[0,3,2,1],[2,2,1,2],[1,1,2,2],[0,2,2,1]],[[0,2,3,1],[2,2,1,2],[1,1,2,2],[0,2,2,1]],[[0,2,2,2],[2,2,1,2],[1,1,2,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,3],[1,1,2,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,1,2,3],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,1,2,2],[0,3,2,1]],[[0,2,2,1],[2,2,1,2],[1,1,2,2],[0,2,3,1]],[[0,2,2,1],[2,2,1,2],[1,1,2,2],[0,2,2,2]],[[0,2,2,1],[2,2,1,2],[1,1,4,1],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,1,3,1],[0,3,2,1]],[[0,2,2,1],[2,2,1,2],[1,1,3,1],[0,2,3,1]],[[0,2,2,1],[2,2,1,2],[1,1,3,1],[0,2,2,2]],[[0,3,2,1],[2,2,1,2],[1,1,3,2],[0,2,1,1]],[[0,2,3,1],[2,2,1,2],[1,1,3,2],[0,2,1,1]],[[0,2,2,2],[2,2,1,2],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,1,3],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[1,1,4,2],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[1,1,3,3],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[1,1,3,2],[0,2,1,2]],[[0,3,2,1],[2,2,1,2],[1,1,3,2],[0,2,2,0]],[[0,2,3,1],[2,2,1,2],[1,1,3,2],[0,2,2,0]],[[0,2,2,2],[2,2,1,2],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,3],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[1,1,4,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[1,1,3,3],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[1,1,3,2],[0,3,2,0]],[[0,2,2,1],[2,2,1,2],[1,1,3,2],[0,2,3,0]],[[0,3,2,1],[2,2,1,2],[1,2,2,2],[0,1,2,1]],[[0,2,3,1],[2,2,1,2],[1,2,2,2],[0,1,2,1]],[[0,2,2,2],[2,2,1,2],[1,2,2,2],[0,1,2,1]],[[0,2,2,1],[2,2,1,3],[1,2,2,2],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[1,2,2,3],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[1,2,2,2],[0,1,3,1]],[[0,2,2,1],[2,2,1,2],[1,2,2,2],[0,1,2,2]],[[0,3,2,1],[2,2,1,2],[1,2,2,2],[1,0,2,1]],[[0,2,3,1],[2,2,1,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,2],[2,2,1,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,2,1,3],[1,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[1,2,2,3],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[1,2,2,2],[1,0,3,1]],[[0,2,2,1],[2,2,1,2],[1,2,2,2],[1,0,2,2]],[[0,2,2,1],[2,2,1,2],[1,2,4,1],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,1],[0,1,3,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,1],[0,1,2,2]],[[0,2,2,1],[2,2,1,2],[1,2,4,1],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,1],[1,0,3,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,1],[1,0,2,2]],[[0,3,2,1],[2,2,1,2],[1,2,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,1,2],[1,2,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,1,2],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,1,3],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,1,2],[1,2,4,2],[0,0,2,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,2],[0,0,2,2]],[[0,3,2,1],[2,2,1,2],[1,2,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,1,2],[1,2,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,1,2],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,3],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[1,2,4,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,2],[0,1,1,2]],[[0,3,2,1],[2,2,1,2],[1,2,3,2],[0,1,2,0]],[[0,2,3,1],[2,2,1,2],[1,2,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,1,2],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,3],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[1,2,4,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[1,2,3,3],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[1,2,3,2],[0,1,3,0]],[[0,3,2,1],[2,2,1,2],[1,2,3,2],[0,2,0,1]],[[0,2,3,1],[2,2,1,2],[1,2,3,2],[0,2,0,1]],[[0,2,2,2],[2,2,1,2],[1,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,3],[1,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[1,2,4,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,3],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,2],[0,2,0,2]],[[0,3,2,1],[2,2,1,2],[1,2,3,2],[0,2,1,0]],[[0,2,3,1],[2,2,1,2],[1,2,3,2],[0,2,1,0]],[[0,2,2,2],[2,2,1,2],[1,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,3],[1,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[1,2,4,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[1,2,3,3],[0,2,1,0]],[[0,3,2,1],[2,2,1,2],[1,2,3,2],[1,0,1,1]],[[0,2,3,1],[2,2,1,2],[1,2,3,2],[1,0,1,1]],[[0,2,2,2],[2,2,1,2],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,3],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[1,2,4,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,3],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,2],[1,0,1,2]],[[0,3,2,1],[2,2,1,2],[1,2,3,2],[1,0,2,0]],[[0,2,3,1],[2,2,1,2],[1,2,3,2],[1,0,2,0]],[[0,2,2,2],[2,2,1,2],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,3],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[1,2,4,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[1,2,3,3],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[1,2,3,2],[1,0,3,0]],[[0,3,2,1],[2,2,1,2],[1,2,3,2],[1,1,0,1]],[[0,2,3,1],[2,2,1,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,2],[2,2,1,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,3],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[1,2,4,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,3],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[1,2,3,2],[1,1,0,2]],[[0,3,2,1],[2,2,1,2],[1,2,3,2],[1,1,1,0]],[[0,2,3,1],[2,2,1,2],[1,2,3,2],[1,1,1,0]],[[0,2,2,2],[2,2,1,2],[1,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,3],[1,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,2],[1,2,4,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,2],[1,2,3,3],[1,1,1,0]],[[0,2,2,1],[2,2,1,2],[1,4,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,3,0,1],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,3,0,1],[1,3,2,1]],[[0,2,2,1],[2,2,1,2],[1,3,0,1],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[1,3,0,1],[1,2,2,2]],[[0,3,2,1],[2,2,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,3,1],[2,2,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,2],[2,2,1,2],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,3],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,4,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,3,0,3],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,3,0,2],[0,3,2,1]],[[0,2,2,1],[2,2,1,2],[1,3,0,2],[0,2,3,1]],[[0,2,2,1],[2,2,1,2],[1,3,0,2],[0,2,2,2]],[[0,2,2,1],[2,2,1,2],[1,4,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[1,3,0,2],[2,2,1,1]],[[0,2,2,1],[2,2,1,2],[1,3,0,2],[1,3,1,1]],[[0,2,2,1],[2,2,1,2],[1,4,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[1,3,0,2],[2,2,2,0]],[[0,2,2,1],[2,2,1,2],[1,3,0,2],[1,3,2,0]],[[0,2,2,1],[2,2,1,2],[1,3,0,2],[1,2,3,0]],[[0,2,2,1],[2,2,1,2],[1,4,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,3,1,0],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[1,3,1,0],[1,3,2,1]],[[0,2,2,1],[2,2,1,2],[1,3,1,0],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[1,3,1,0],[1,2,2,2]],[[0,2,2,1],[2,2,1,2],[1,4,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[1,3,1,1],[2,2,2,0]],[[0,2,2,1],[2,2,1,2],[1,3,1,1],[1,3,2,0]],[[0,2,2,1],[2,2,1,2],[1,3,1,1],[1,2,3,0]],[[0,2,2,1],[2,2,1,2],[1,4,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[1,3,1,2],[2,2,0,1]],[[0,2,2,1],[2,2,1,2],[1,3,1,2],[1,3,0,1]],[[0,2,2,1],[2,2,1,2],[1,4,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,2],[1,3,1,2],[2,2,1,0]],[[0,2,2,1],[2,2,1,2],[1,3,1,2],[1,3,1,0]],[[0,2,2,1],[2,2,1,2],[1,4,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[1,3,2,0],[2,2,1,1]],[[0,2,2,1],[2,2,1,2],[1,3,2,0],[1,3,1,1]],[[0,2,2,1],[2,2,1,2],[1,4,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[1,3,2,1],[2,2,0,1]],[[0,2,2,1],[2,2,1,2],[1,3,2,1],[1,3,0,1]],[[0,2,2,1],[2,2,1,2],[1,4,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,1,2],[1,3,2,1],[2,2,1,0]],[[0,2,2,1],[2,2,1,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,0],[2,2,1,2],[3,3,3,1],[1,0,1,0]],[[1,2,2,0],[3,2,1,2],[2,3,3,1],[1,0,1,0]],[[1,2,3,0],[2,2,1,2],[2,3,3,1],[1,0,1,0]],[[1,3,2,0],[2,2,1,2],[2,3,3,1],[1,0,1,0]],[[2,2,2,0],[2,2,1,2],[2,3,3,1],[1,0,1,0]],[[1,2,2,0],[2,2,1,2],[3,3,3,1],[1,0,0,1]],[[1,2,2,0],[3,2,1,2],[2,3,3,1],[1,0,0,1]],[[1,2,3,0],[2,2,1,2],[2,3,3,1],[1,0,0,1]],[[1,3,2,0],[2,2,1,2],[2,3,3,1],[1,0,0,1]],[[2,2,2,0],[2,2,1,2],[2,3,3,1],[1,0,0,1]],[[0,3,2,1],[2,2,1,2],[1,3,3,2],[0,0,1,1]],[[0,2,3,1],[2,2,1,2],[1,3,3,2],[0,0,1,1]],[[0,2,2,2],[2,2,1,2],[1,3,3,2],[0,0,1,1]],[[0,2,2,1],[2,2,1,3],[1,3,3,2],[0,0,1,1]],[[0,2,2,1],[2,2,1,2],[1,3,4,2],[0,0,1,1]],[[0,2,2,1],[2,2,1,2],[1,3,3,3],[0,0,1,1]],[[0,2,2,1],[2,2,1,2],[1,3,3,2],[0,0,1,2]],[[0,3,2,1],[2,2,1,2],[1,3,3,2],[0,0,2,0]],[[0,2,3,1],[2,2,1,2],[1,3,3,2],[0,0,2,0]],[[0,2,2,2],[2,2,1,2],[1,3,3,2],[0,0,2,0]],[[0,2,2,1],[2,2,1,3],[1,3,3,2],[0,0,2,0]],[[0,2,2,1],[2,2,1,2],[1,3,4,2],[0,0,2,0]],[[0,2,2,1],[2,2,1,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,0],[2,2,1,2],[3,3,3,0],[1,0,1,1]],[[1,2,2,0],[3,2,1,2],[2,3,3,0],[1,0,1,1]],[[1,2,3,0],[2,2,1,2],[2,3,3,0],[1,0,1,1]],[[1,3,2,0],[2,2,1,2],[2,3,3,0],[1,0,1,1]],[[2,2,2,0],[2,2,1,2],[2,3,3,0],[1,0,1,1]],[[1,2,2,0],[2,2,1,2],[2,3,0,1],[1,3,2,0]],[[1,2,2,0],[2,2,1,2],[2,3,0,1],[2,2,2,0]],[[1,2,2,0],[2,2,1,2],[3,3,0,1],[1,2,2,0]],[[1,2,2,0],[3,2,1,2],[2,3,0,1],[1,2,2,0]],[[1,3,2,0],[2,2,1,2],[2,3,0,1],[1,2,2,0]],[[2,2,2,0],[2,2,1,2],[2,3,0,1],[1,2,2,0]],[[1,2,2,0],[2,2,1,2],[2,3,0,0],[1,3,2,1]],[[1,2,2,0],[2,2,1,2],[2,3,0,0],[2,2,2,1]],[[1,2,2,0],[2,2,1,2],[3,3,0,0],[1,2,2,1]],[[1,2,2,0],[3,2,1,2],[2,3,0,0],[1,2,2,1]],[[1,3,2,0],[2,2,1,2],[2,3,0,0],[1,2,2,1]],[[2,2,2,0],[2,2,1,2],[2,3,0,0],[1,2,2,1]],[[0,3,2,1],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[3,2,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,3],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[3,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,1,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,1,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,1,2],[1,3,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,1,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[2,0,1,2],[1,2,2,2]],[[0,3,2,1],[2,2,1,2],[2,0,2,2],[0,2,2,1]],[[0,2,3,1],[2,2,1,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,2],[2,2,1,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,3],[2,0,2,2],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,2,3],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,2,2],[0,3,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,2,2],[0,2,3,1]],[[0,2,2,1],[2,2,1,2],[2,0,2,2],[0,2,2,2]],[[0,3,2,1],[2,2,1,2],[2,0,2,2],[1,1,2,1]],[[0,2,3,1],[2,2,1,2],[2,0,2,2],[1,1,2,1]],[[0,2,2,2],[2,2,1,2],[2,0,2,2],[1,1,2,1]],[[0,2,2,1],[2,2,1,3],[2,0,2,2],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,2,3],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,2,2],[1,1,3,1]],[[0,2,2,1],[2,2,1,2],[2,0,2,2],[1,1,2,2]],[[0,2,2,1],[2,2,1,2],[2,0,4,1],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,3,1],[0,3,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,3,1],[0,2,3,1]],[[0,2,2,1],[2,2,1,2],[2,0,3,1],[0,2,2,2]],[[0,2,2,1],[2,2,1,2],[2,0,4,1],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,0,3,1],[1,1,3,1]],[[0,2,2,1],[2,2,1,2],[2,0,3,1],[1,1,2,2]],[[0,3,2,1],[2,2,1,2],[2,0,3,2],[0,2,1,1]],[[0,2,3,1],[2,2,1,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,2],[2,2,1,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,1,3],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[2,0,4,2],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[2,0,3,3],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[2,0,3,2],[0,2,1,2]],[[0,3,2,1],[2,2,1,2],[2,0,3,2],[0,2,2,0]],[[0,2,3,1],[2,2,1,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,2],[2,2,1,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,3],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,0,4,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,0,3,3],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,0,3,2],[0,3,2,0]],[[0,2,2,1],[2,2,1,2],[2,0,3,2],[0,2,3,0]],[[0,3,2,1],[2,2,1,2],[2,0,3,2],[1,1,1,1]],[[0,2,3,1],[2,2,1,2],[2,0,3,2],[1,1,1,1]],[[0,2,2,2],[2,2,1,2],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,1,3],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,0,4,2],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,0,3,3],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,0,3,2],[1,1,1,2]],[[0,3,2,1],[2,2,1,2],[2,0,3,2],[1,1,2,0]],[[0,2,3,1],[2,2,1,2],[2,0,3,2],[1,1,2,0]],[[0,2,2,2],[2,2,1,2],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,3],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,0,4,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,0,3,3],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,0,3,2],[1,1,3,0]],[[0,3,2,1],[2,2,1,2],[2,0,3,2],[1,2,0,1]],[[0,2,3,1],[2,2,1,2],[2,0,3,2],[1,2,0,1]],[[0,2,2,2],[2,2,1,2],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,3],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,0,4,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,0,3,3],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,0,3,2],[1,2,0,2]],[[0,3,2,1],[2,2,1,2],[2,0,3,2],[1,2,1,0]],[[0,2,3,1],[2,2,1,2],[2,0,3,2],[1,2,1,0]],[[0,2,2,2],[2,2,1,2],[2,0,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,3],[2,0,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,0,4,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,0,3,3],[1,2,1,0]],[[0,3,2,1],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,3,1],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,2],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[3,2,1,2],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,3],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[3,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,0,3],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,0,2],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,0,2],[1,3,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,0,2],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[2,1,0,2],[1,2,2,2]],[[0,3,2,1],[2,2,1,2],[2,1,2,2],[0,1,2,1]],[[0,2,3,1],[2,2,1,2],[2,1,2,2],[0,1,2,1]],[[0,2,2,2],[2,2,1,2],[2,1,2,2],[0,1,2,1]],[[0,2,2,1],[2,2,1,3],[2,1,2,2],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,2,3],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,2,2],[0,1,3,1]],[[0,2,2,1],[2,2,1,2],[2,1,2,2],[0,1,2,2]],[[0,3,2,1],[2,2,1,2],[2,1,2,2],[1,0,2,1]],[[0,2,3,1],[2,2,1,2],[2,1,2,2],[1,0,2,1]],[[0,2,2,2],[2,2,1,2],[2,1,2,2],[1,0,2,1]],[[0,2,2,1],[2,2,1,3],[2,1,2,2],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,2,3],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,2,2],[1,0,3,1]],[[0,2,2,1],[2,2,1,2],[2,1,2,2],[1,0,2,2]],[[0,2,2,1],[2,2,1,2],[2,1,4,1],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,1],[0,1,3,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,1],[0,1,2,2]],[[0,2,2,1],[2,2,1,2],[2,1,4,1],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,1],[1,0,3,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,1],[1,0,2,2]],[[0,3,2,1],[2,2,1,2],[2,1,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,1,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,1,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,1,3],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,4,2],[0,0,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,2],[0,0,2,2]],[[0,3,2,1],[2,2,1,2],[2,1,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,1,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,1,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,3],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,1,4,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,2],[0,1,1,2]],[[0,3,2,1],[2,2,1,2],[2,1,3,2],[0,1,2,0]],[[0,2,3,1],[2,2,1,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,1,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,3],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,1,4,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,1,3,3],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,1,3,2],[0,1,3,0]],[[0,3,2,1],[2,2,1,2],[2,1,3,2],[0,2,0,1]],[[0,2,3,1],[2,2,1,2],[2,1,3,2],[0,2,0,1]],[[0,2,2,2],[2,2,1,2],[2,1,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,3],[2,1,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,1,4,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,3],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,2],[0,2,0,2]],[[0,3,2,1],[2,2,1,2],[2,1,3,2],[0,2,1,0]],[[0,2,3,1],[2,2,1,2],[2,1,3,2],[0,2,1,0]],[[0,2,2,2],[2,2,1,2],[2,1,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,3],[2,1,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,1,4,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,1,3,3],[0,2,1,0]],[[0,3,2,1],[2,2,1,2],[2,1,3,2],[1,0,1,1]],[[0,2,3,1],[2,2,1,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,2],[2,2,1,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,3],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[2,1,4,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,3],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,2],[1,0,1,2]],[[0,3,2,1],[2,2,1,2],[2,1,3,2],[1,0,2,0]],[[0,2,3,1],[2,2,1,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,2],[2,2,1,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,3],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[2,1,4,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[2,1,3,3],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[2,1,3,2],[1,0,3,0]],[[0,3,2,1],[2,2,1,2],[2,1,3,2],[1,1,0,1]],[[0,2,3,1],[2,2,1,2],[2,1,3,2],[1,1,0,1]],[[0,2,2,2],[2,2,1,2],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,3],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[2,1,4,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,3],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[2,1,3,2],[1,1,0,2]],[[0,3,2,1],[2,2,1,2],[2,1,3,2],[1,1,1,0]],[[0,2,3,1],[2,2,1,2],[2,1,3,2],[1,1,1,0]],[[0,2,2,2],[2,2,1,2],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,3],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,2],[2,1,4,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,0],[2,2,1,2],[2,2,3,1],[2,2,0,0]],[[1,2,2,0],[2,2,1,2],[3,2,3,1],[1,2,0,0]],[[1,2,2,0],[3,2,1,2],[2,2,3,1],[1,2,0,0]],[[1,2,3,0],[2,2,1,2],[2,2,3,1],[1,2,0,0]],[[1,3,2,0],[2,2,1,2],[2,2,3,1],[1,2,0,0]],[[2,2,2,0],[2,2,1,2],[2,2,3,1],[1,2,0,0]],[[1,2,2,0],[2,2,1,2],[2,2,3,1],[2,1,1,0]],[[1,2,2,0],[2,2,1,2],[3,2,3,1],[1,1,1,0]],[[1,2,2,0],[3,2,1,2],[2,2,3,1],[1,1,1,0]],[[1,2,3,0],[2,2,1,2],[2,2,3,1],[1,1,1,0]],[[1,3,2,0],[2,2,1,2],[2,2,3,1],[1,1,1,0]],[[2,2,2,0],[2,2,1,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,2,1,2],[2,2,3,1],[2,1,0,1]],[[0,2,2,1],[3,2,1,2],[2,2,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[3,2,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,2,0,1],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,2,0,1],[1,3,2,1]],[[0,2,2,1],[2,2,1,2],[2,2,0,1],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[2,2,0,1],[1,2,2,2]],[[0,2,2,1],[3,2,1,2],[2,2,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[3,2,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[2,2,0,2],[2,2,1,1]],[[0,2,2,1],[2,2,1,2],[2,2,0,2],[1,3,1,1]],[[0,2,2,1],[3,2,1,2],[2,2,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[3,2,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,2,0,2],[2,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,2,0,2],[1,3,2,0]],[[0,2,2,1],[2,2,1,2],[2,2,0,2],[1,2,3,0]],[[0,2,2,1],[3,2,1,2],[2,2,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[3,2,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,2,1,0],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,2,1,0],[1,3,2,1]],[[0,2,2,1],[2,2,1,2],[2,2,1,0],[1,2,3,1]],[[0,2,2,1],[2,2,1,2],[2,2,1,0],[1,2,2,2]],[[0,2,2,1],[3,2,1,2],[2,2,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[3,2,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,2,1,1],[2,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,2,1,1],[1,3,2,0]],[[0,2,2,1],[2,2,1,2],[2,2,1,1],[1,2,3,0]],[[0,2,2,1],[3,2,1,2],[2,2,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[3,2,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,2,1,2],[2,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,2,1,2],[1,3,0,1]],[[0,2,2,1],[3,2,1,2],[2,2,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,2],[3,2,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,2,1,2],[2,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,0],[2,2,1,2],[3,2,3,1],[1,1,0,1]],[[1,2,2,0],[3,2,1,2],[2,2,3,1],[1,1,0,1]],[[1,2,3,0],[2,2,1,2],[2,2,3,1],[1,1,0,1]],[[1,3,2,0],[2,2,1,2],[2,2,3,1],[1,1,0,1]],[[2,2,2,0],[2,2,1,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[3,2,1,2],[2,2,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[3,2,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,1,2],[2,2,2,0],[2,2,1,1]],[[0,2,2,1],[2,2,1,2],[2,2,2,0],[1,3,1,1]],[[0,2,2,1],[3,2,1,2],[2,2,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[3,2,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,2,2,1],[2,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,2,2,1],[1,3,0,1]],[[0,2,2,1],[3,2,1,2],[2,2,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,1,2],[3,2,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,2,2,1],[2,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,0],[2,2,1,2],[2,2,3,1],[2,0,2,0]],[[1,2,2,0],[2,2,1,2],[3,2,3,1],[1,0,2,0]],[[1,2,2,0],[3,2,1,2],[2,2,3,1],[1,0,2,0]],[[1,2,3,0],[2,2,1,2],[2,2,3,1],[1,0,2,0]],[[1,3,2,0],[2,2,1,2],[2,2,3,1],[1,0,2,0]],[[2,2,2,0],[2,2,1,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,0],[2,2,1,2],[2,2,3,1],[2,0,1,1]],[[1,2,2,0],[2,2,1,2],[3,2,3,1],[1,0,1,1]],[[1,2,2,0],[3,2,1,2],[2,2,3,1],[1,0,1,1]],[[1,2,3,0],[2,2,1,2],[2,2,3,1],[1,0,1,1]],[[1,3,2,0],[2,2,1,2],[2,2,3,1],[1,0,1,1]],[[2,2,2,0],[2,2,1,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,0],[2,2,1,2],[3,2,3,1],[0,2,1,0]],[[1,2,2,0],[3,2,1,2],[2,2,3,1],[0,2,1,0]],[[1,2,3,0],[2,2,1,2],[2,2,3,1],[0,2,1,0]],[[1,3,2,0],[2,2,1,2],[2,2,3,1],[0,2,1,0]],[[2,2,2,0],[2,2,1,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,2,1,2],[3,2,3,1],[0,2,0,1]],[[1,2,2,0],[3,2,1,2],[2,2,3,1],[0,2,0,1]],[[1,2,3,0],[2,2,1,2],[2,2,3,1],[0,2,0,1]],[[1,3,2,0],[2,2,1,2],[2,2,3,1],[0,2,0,1]],[[2,2,2,0],[2,2,1,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,0],[2,2,1,2],[3,2,3,1],[0,1,2,0]],[[1,2,2,0],[3,2,1,2],[2,2,3,1],[0,1,2,0]],[[1,2,3,0],[2,2,1,2],[2,2,3,1],[0,1,2,0]],[[1,3,2,0],[2,2,1,2],[2,2,3,1],[0,1,2,0]],[[2,2,2,0],[2,2,1,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,0],[2,2,1,2],[3,2,3,1],[0,1,1,1]],[[1,2,2,0],[3,2,1,2],[2,2,3,1],[0,1,1,1]],[[1,2,3,0],[2,2,1,2],[2,2,3,1],[0,1,1,1]],[[1,3,2,0],[2,2,1,2],[2,2,3,1],[0,1,1,1]],[[2,2,2,0],[2,2,1,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,0],[2,2,1,2],[2,2,3,0],[2,2,0,1]],[[1,2,2,0],[2,2,1,2],[3,2,3,0],[1,2,0,1]],[[1,2,2,0],[3,2,1,2],[2,2,3,0],[1,2,0,1]],[[1,2,3,0],[2,2,1,2],[2,2,3,0],[1,2,0,1]],[[1,3,2,0],[2,2,1,2],[2,2,3,0],[1,2,0,1]],[[2,2,2,0],[2,2,1,2],[2,2,3,0],[1,2,0,1]],[[1,2,2,0],[2,2,1,2],[2,2,3,0],[2,1,1,1]],[[1,2,2,0],[2,2,1,2],[3,2,3,0],[1,1,1,1]],[[1,2,2,0],[3,2,1,2],[2,2,3,0],[1,1,1,1]],[[1,2,3,0],[2,2,1,2],[2,2,3,0],[1,1,1,1]],[[1,3,2,0],[2,2,1,2],[2,2,3,0],[1,1,1,1]],[[2,2,2,0],[2,2,1,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,0],[2,2,1,2],[2,2,3,0],[2,0,2,1]],[[1,2,2,0],[2,2,1,2],[3,2,3,0],[1,0,2,1]],[[1,2,2,0],[3,2,1,2],[2,2,3,0],[1,0,2,1]],[[1,2,3,0],[2,2,1,2],[2,2,3,0],[1,0,2,1]],[[1,3,2,0],[2,2,1,2],[2,2,3,0],[1,0,2,1]],[[2,2,2,0],[2,2,1,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,0],[2,2,1,2],[3,2,3,0],[0,2,1,1]],[[1,2,2,0],[3,2,1,2],[2,2,3,0],[0,2,1,1]],[[1,2,3,0],[2,2,1,2],[2,2,3,0],[0,2,1,1]],[[1,3,2,0],[2,2,1,2],[2,2,3,0],[0,2,1,1]],[[2,2,2,0],[2,2,1,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,0],[2,2,1,2],[3,2,3,0],[0,1,2,1]],[[1,2,2,0],[3,2,1,2],[2,2,3,0],[0,1,2,1]],[[1,2,3,0],[2,2,1,2],[2,2,3,0],[0,1,2,1]],[[1,3,2,0],[2,2,1,2],[2,2,3,0],[0,1,2,1]],[[2,2,2,0],[2,2,1,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,0],[2,2,1,2],[2,2,2,1],[2,1,2,0]],[[1,2,2,0],[2,2,1,2],[3,2,2,1],[1,1,2,0]],[[1,2,2,0],[3,2,1,2],[2,2,2,1],[1,1,2,0]],[[1,2,3,0],[2,2,1,2],[2,2,2,1],[1,1,2,0]],[[1,3,2,0],[2,2,1,2],[2,2,2,1],[1,1,2,0]],[[2,2,2,0],[2,2,1,2],[2,2,2,1],[1,1,2,0]],[[1,2,2,0],[2,2,1,2],[3,2,2,1],[0,2,2,0]],[[1,2,2,0],[3,2,1,2],[2,2,2,1],[0,2,2,0]],[[1,2,3,0],[2,2,1,2],[2,2,2,1],[0,2,2,0]],[[1,3,2,0],[2,2,1,2],[2,2,2,1],[0,2,2,0]],[[2,2,2,0],[2,2,1,2],[2,2,2,1],[0,2,2,0]],[[1,2,2,0],[2,2,1,2],[2,2,2,0],[2,1,2,1]],[[1,2,2,0],[2,2,1,2],[3,2,2,0],[1,1,2,1]],[[1,2,2,0],[3,2,1,2],[2,2,2,0],[1,1,2,1]],[[1,2,3,0],[2,2,1,2],[2,2,2,0],[1,1,2,1]],[[1,3,2,0],[2,2,1,2],[2,2,2,0],[1,1,2,1]],[[2,2,2,0],[2,2,1,2],[2,2,2,0],[1,1,2,1]],[[1,2,2,0],[2,2,1,2],[3,2,2,0],[0,2,2,1]],[[1,2,2,0],[3,2,1,2],[2,2,2,0],[0,2,2,1]],[[1,2,3,0],[2,2,1,2],[2,2,2,0],[0,2,2,1]],[[1,3,2,0],[2,2,1,2],[2,2,2,0],[0,2,2,1]],[[2,2,2,0],[2,2,1,2],[2,2,2,0],[0,2,2,1]],[[1,2,2,0],[2,2,1,2],[2,2,0,2],[2,1,2,1]],[[1,2,2,0],[2,2,1,2],[3,2,0,2],[1,1,2,1]],[[1,2,2,0],[3,2,1,2],[2,2,0,2],[1,1,2,1]],[[1,2,3,0],[2,2,1,2],[2,2,0,2],[1,1,2,1]],[[1,3,2,0],[2,2,1,2],[2,2,0,2],[1,1,2,1]],[[2,2,2,0],[2,2,1,2],[2,2,0,2],[1,1,2,1]],[[0,2,2,1],[3,2,1,2],[2,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[3,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,3,0,0],[2,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,3,0,0],[1,3,2,1]],[[0,2,2,1],[3,2,1,2],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[3,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,4,0,1],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,3,0,1],[0,3,2,1]],[[0,2,2,1],[2,2,1,2],[2,3,0,1],[0,2,3,1]],[[0,2,2,1],[2,2,1,2],[2,3,0,1],[0,2,2,2]],[[0,2,2,1],[3,2,1,2],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[3,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,4,0,1],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,3,0,1],[2,1,2,1]],[[0,2,2,1],[3,2,1,2],[2,3,0,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[3,3,0,1],[1,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,3,0,1],[2,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,3,0,1],[1,3,2,0]],[[0,2,2,1],[3,2,1,2],[2,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[3,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,4,0,2],[0,1,2,1]],[[0,2,2,1],[3,2,1,2],[2,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[3,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[2,4,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[2,3,0,2],[0,3,1,1]],[[0,2,2,1],[3,2,1,2],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[3,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,4,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,3,0,2],[0,3,2,0]],[[0,2,2,1],[2,2,1,2],[2,3,0,2],[0,2,3,0]],[[0,2,2,1],[3,2,1,2],[2,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[3,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[2,4,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[2,3,0,2],[2,0,2,1]],[[0,2,2,1],[3,2,1,2],[2,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[3,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,4,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,3,0,2],[2,1,1,1]],[[0,2,2,1],[3,2,1,2],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[3,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,4,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,0],[2,2,1,2],[3,2,0,2],[0,2,2,1]],[[1,2,2,0],[3,2,1,2],[2,2,0,2],[0,2,2,1]],[[1,2,3,0],[2,2,1,2],[2,2,0,2],[0,2,2,1]],[[1,3,2,0],[2,2,1,2],[2,2,0,2],[0,2,2,1]],[[2,2,2,0],[2,2,1,2],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[3,2,1,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[3,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,4,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,1,2],[2,3,1,0],[0,3,2,1]],[[0,2,2,1],[2,2,1,2],[2,3,1,0],[0,2,3,1]],[[0,2,2,1],[2,2,1,2],[2,3,1,0],[0,2,2,2]],[[0,2,2,1],[3,2,1,2],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[3,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,4,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,3,1,0],[2,1,2,1]],[[0,2,2,1],[3,2,1,2],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[3,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,4,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,1,2],[2,3,1,1],[0,3,2,0]],[[0,2,2,1],[2,2,1,2],[2,3,1,1],[0,2,3,0]],[[0,2,2,1],[3,2,1,2],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[3,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,4,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,3,1,1],[2,1,2,0]],[[0,2,2,1],[3,2,1,2],[2,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[3,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,4,1,2],[0,1,1,1]],[[0,2,2,1],[3,2,1,2],[2,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[3,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,4,1,2],[0,1,2,0]],[[0,2,2,1],[3,2,1,2],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[3,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,4,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,3,1,2],[0,3,0,1]],[[0,2,2,1],[3,2,1,2],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[3,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,4,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,3,1,2],[0,3,1,0]],[[0,2,2,1],[3,2,1,2],[2,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[3,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[2,4,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[2,3,1,2],[2,0,1,1]],[[0,2,2,1],[3,2,1,2],[2,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[3,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[2,4,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[2,3,1,2],[2,0,2,0]],[[0,2,2,1],[3,2,1,2],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[3,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[2,4,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[2,3,1,2],[2,1,0,1]],[[0,2,2,1],[3,2,1,2],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,2],[3,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,2],[2,4,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,1,2],[2,3,1,2],[2,1,1,0]],[[0,2,2,1],[3,2,1,2],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,2,1,2],[3,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,2,1,2],[2,4,1,2],[1,2,0,0]],[[0,2,2,1],[2,2,1,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[2,2,1,2],[2,1,3,1],[1,3,1,0]],[[1,2,2,0],[2,2,1,2],[2,1,3,1],[2,2,1,0]],[[1,2,2,0],[2,2,1,2],[3,1,3,1],[1,2,1,0]],[[1,2,2,0],[3,2,1,2],[2,1,3,1],[1,2,1,0]],[[1,2,3,0],[2,2,1,2],[2,1,3,1],[1,2,1,0]],[[1,3,2,0],[2,2,1,2],[2,1,3,1],[1,2,1,0]],[[2,2,2,0],[2,2,1,2],[2,1,3,1],[1,2,1,0]],[[1,2,2,0],[2,2,1,2],[2,1,3,1],[1,3,0,1]],[[1,2,2,0],[2,2,1,2],[2,1,3,1],[2,2,0,1]],[[1,2,2,0],[2,2,1,2],[3,1,3,1],[1,2,0,1]],[[1,2,2,0],[3,2,1,2],[2,1,3,1],[1,2,0,1]],[[1,2,3,0],[2,2,1,2],[2,1,3,1],[1,2,0,1]],[[1,3,2,0],[2,2,1,2],[2,1,3,1],[1,2,0,1]],[[2,2,2,0],[2,2,1,2],[2,1,3,1],[1,2,0,1]],[[0,2,2,1],[3,2,1,2],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[3,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,2,1,2],[2,4,2,0],[0,1,2,1]],[[0,2,2,1],[3,2,1,2],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[3,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[2,4,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,1,2],[2,3,2,0],[0,3,1,1]],[[0,2,2,1],[3,2,1,2],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[3,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[2,4,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,1,2],[2,3,2,0],[2,0,2,1]],[[0,2,2,1],[3,2,1,2],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[3,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,4,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,3,2,0],[2,1,1,1]],[[0,2,2,1],[3,2,1,2],[2,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[3,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,4,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,0],[2,2,1,2],[2,1,3,0],[1,3,1,1]],[[1,2,2,0],[2,2,1,2],[2,1,3,0],[2,2,1,1]],[[1,2,2,0],[2,2,1,2],[3,1,3,0],[1,2,1,1]],[[1,2,2,0],[3,2,1,2],[2,1,3,0],[1,2,1,1]],[[1,2,3,0],[2,2,1,2],[2,1,3,0],[1,2,1,1]],[[0,2,2,1],[3,2,1,2],[2,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[3,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,2,1,2],[2,4,2,1],[0,1,1,1]],[[0,2,2,1],[3,2,1,2],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[3,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,2,1,2],[2,4,2,1],[0,1,2,0]],[[0,2,2,1],[3,2,1,2],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[3,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,4,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,1,2],[2,3,2,1],[0,3,0,1]],[[0,2,2,1],[3,2,1,2],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[3,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,4,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,1,2],[2,3,2,1],[0,3,1,0]],[[1,3,2,0],[2,2,1,2],[2,1,3,0],[1,2,1,1]],[[2,2,2,0],[2,2,1,2],[2,1,3,0],[1,2,1,1]],[[0,2,2,1],[3,2,1,2],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[3,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[2,4,2,1],[1,0,1,1]],[[0,2,2,1],[2,2,1,2],[2,3,2,1],[2,0,1,1]],[[0,2,2,1],[3,2,1,2],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[3,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[2,4,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,1,2],[2,3,2,1],[2,0,2,0]],[[0,2,2,1],[3,2,1,2],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[3,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[2,4,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,1,2],[2,3,2,1],[2,1,0,1]],[[0,2,2,1],[3,2,1,2],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,1,2],[3,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,1,2],[2,4,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,1,2],[2,3,2,1],[2,1,1,0]],[[0,2,2,1],[3,2,1,2],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,1,2],[3,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,1,2],[2,4,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,1,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,0],[2,2,1,2],[2,1,2,1],[1,2,3,0]],[[1,2,2,0],[2,2,1,2],[2,1,2,1],[1,3,2,0]],[[1,2,2,0],[2,2,1,2],[2,1,2,1],[2,2,2,0]],[[1,2,2,0],[2,2,1,2],[3,1,2,1],[1,2,2,0]],[[1,2,2,0],[3,2,1,2],[2,1,2,1],[1,2,2,0]],[[1,2,3,0],[2,2,1,2],[2,1,2,1],[1,2,2,0]],[[1,3,2,0],[2,2,1,2],[2,1,2,1],[1,2,2,0]],[[2,2,2,0],[2,2,1,2],[2,1,2,1],[1,2,2,0]],[[1,2,2,0],[2,2,1,2],[2,1,2,0],[1,2,2,2]],[[1,2,2,0],[2,2,1,2],[2,1,2,0],[1,2,3,1]],[[1,2,2,0],[2,2,1,2],[2,1,2,0],[1,3,2,1]],[[1,2,2,0],[2,2,1,2],[2,1,2,0],[2,2,2,1]],[[1,2,2,0],[2,2,1,2],[3,1,2,0],[1,2,2,1]],[[1,2,2,0],[3,2,1,2],[2,1,2,0],[1,2,2,1]],[[1,2,3,0],[2,2,1,2],[2,1,2,0],[1,2,2,1]],[[1,3,2,0],[2,2,1,2],[2,1,2,0],[1,2,2,1]],[[2,2,2,0],[2,2,1,2],[2,1,2,0],[1,2,2,1]],[[1,2,2,0],[2,2,1,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,0],[2,2,1,2],[2,1,0,2],[1,2,3,1]],[[1,2,2,0],[2,2,1,2],[2,1,0,2],[1,3,2,1]],[[1,2,2,0],[2,2,1,2],[2,1,0,2],[2,2,2,1]],[[1,2,2,0],[2,2,1,2],[2,1,0,3],[1,2,2,1]],[[1,2,2,0],[2,2,1,2],[3,1,0,2],[1,2,2,1]],[[1,2,2,0],[2,2,1,3],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[3,2,1,2],[2,1,0,2],[1,2,2,1]],[[1,2,3,0],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[2,2,1,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,0],[2,2,1,2],[2,0,3,1],[1,3,2,0]],[[1,2,2,0],[2,2,1,2],[2,0,3,1],[2,2,2,0]],[[1,2,2,0],[2,2,1,2],[2,0,4,1],[1,2,2,0]],[[1,2,2,0],[2,2,1,2],[3,0,3,1],[1,2,2,0]],[[1,2,2,0],[3,2,1,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,0],[2,2,1,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,0],[2,2,1,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,0],[2,2,1,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,0],[2,2,1,2],[2,0,3,0],[1,2,2,2]],[[1,2,2,0],[2,2,1,2],[2,0,3,0],[1,2,3,1]],[[1,2,2,0],[2,2,1,2],[2,0,3,0],[1,3,2,1]],[[1,2,2,0],[2,2,1,2],[2,0,3,0],[2,2,2,1]],[[1,2,2,0],[2,2,1,2],[2,0,4,0],[1,2,2,1]],[[1,2,2,0],[2,2,1,2],[3,0,3,0],[1,2,2,1]],[[1,2,2,0],[3,2,1,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,0],[2,2,1,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,0],[2,2,1,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,0],[2,2,1,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,0],[2,2,1,2],[2,0,1,2],[1,2,2,2]],[[1,2,2,0],[2,2,1,2],[2,0,1,2],[1,2,3,1]],[[1,2,2,0],[2,2,1,2],[2,0,1,2],[1,3,2,1]],[[1,2,2,0],[2,2,1,2],[2,0,1,2],[2,2,2,1]],[[1,2,2,0],[2,2,1,2],[2,0,1,3],[1,2,2,1]],[[1,2,2,0],[2,2,1,2],[3,0,1,2],[1,2,2,1]],[[1,2,2,0],[2,2,1,3],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[3,2,1,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,0],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[1,3,2,0],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[2,2,2,0],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[3,2,1,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,2,1,2],[3,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,2,1,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,0],[3,2,1,2],[1,3,3,1],[1,2,0,0]],[[1,2,3,0],[2,2,1,2],[1,3,3,1],[1,2,0,0]],[[1,3,2,0],[2,2,1,2],[1,3,3,1],[1,2,0,0]],[[2,2,2,0],[2,2,1,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[3,2,1,2],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,1,2],[3,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,1,2],[2,4,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,1,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,0],[3,2,1,2],[1,3,3,1],[1,1,1,0]],[[1,2,3,0],[2,2,1,2],[1,3,3,1],[1,1,1,0]],[[1,3,2,0],[2,2,1,2],[1,3,3,1],[1,1,1,0]],[[2,2,2,0],[2,2,1,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,0],[3,2,1,2],[1,3,3,1],[1,1,0,1]],[[1,2,3,0],[2,2,1,2],[1,3,3,1],[1,1,0,1]],[[1,3,2,0],[2,2,1,2],[1,3,3,1],[1,1,0,1]],[[2,2,2,0],[2,2,1,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,0],[3,2,1,2],[1,3,3,1],[1,0,2,0]],[[1,2,3,0],[2,2,1,2],[1,3,3,1],[1,0,2,0]],[[1,3,2,0],[2,2,1,2],[1,3,3,1],[1,0,2,0]],[[2,2,2,0],[2,2,1,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,0],[3,2,1,2],[1,3,3,1],[1,0,1,1]],[[1,2,3,0],[2,2,1,2],[1,3,3,1],[1,0,1,1]],[[1,3,2,0],[2,2,1,2],[1,3,3,1],[1,0,1,1]],[[2,2,2,0],[2,2,1,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,0],[3,2,1,2],[1,3,3,1],[0,2,1,0]],[[1,2,3,0],[2,2,1,2],[1,3,3,1],[0,2,1,0]],[[1,3,2,0],[2,2,1,2],[1,3,3,1],[0,2,1,0]],[[2,2,2,0],[2,2,1,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,0],[3,2,1,2],[1,3,3,1],[0,2,0,1]],[[1,2,3,0],[2,2,1,2],[1,3,3,1],[0,2,0,1]],[[1,3,2,0],[2,2,1,2],[1,3,3,1],[0,2,0,1]],[[2,2,2,0],[2,2,1,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,0],[3,2,1,2],[1,3,3,1],[0,1,2,0]],[[1,2,3,0],[2,2,1,2],[1,3,3,1],[0,1,2,0]],[[1,3,2,0],[2,2,1,2],[1,3,3,1],[0,1,2,0]],[[2,2,2,0],[2,2,1,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,0],[3,2,1,2],[1,3,3,1],[0,1,1,1]],[[1,2,3,0],[2,2,1,2],[1,3,3,1],[0,1,1,1]],[[1,3,2,0],[2,2,1,2],[1,3,3,1],[0,1,1,1]],[[2,2,2,0],[2,2,1,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,0],[3,2,1,2],[1,3,3,0],[1,2,0,1]],[[1,2,3,0],[2,2,1,2],[1,3,3,0],[1,2,0,1]],[[1,3,2,0],[2,2,1,2],[1,3,3,0],[1,2,0,1]],[[2,2,2,0],[2,2,1,2],[1,3,3,0],[1,2,0,1]],[[1,2,2,0],[3,2,1,2],[1,3,3,0],[1,1,1,1]],[[1,2,3,0],[2,2,1,2],[1,3,3,0],[1,1,1,1]],[[1,3,2,0],[2,2,1,2],[1,3,3,0],[1,1,1,1]],[[2,2,2,0],[2,2,1,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,0],[3,2,1,2],[1,3,3,0],[1,0,2,1]],[[1,2,3,0],[2,2,1,2],[1,3,3,0],[1,0,2,1]],[[1,3,2,0],[2,2,1,2],[1,3,3,0],[1,0,2,1]],[[2,2,2,0],[2,2,1,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,0],[3,2,1,2],[1,3,3,0],[0,2,1,1]],[[1,2,3,0],[2,2,1,2],[1,3,3,0],[0,2,1,1]],[[1,3,2,0],[2,2,1,2],[1,3,3,0],[0,2,1,1]],[[2,2,2,0],[2,2,1,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,0],[3,2,1,2],[1,3,3,0],[0,1,2,1]],[[1,2,3,0],[2,2,1,2],[1,3,3,0],[0,1,2,1]],[[1,3,2,0],[2,2,1,2],[1,3,3,0],[0,1,2,1]],[[2,2,2,0],[2,2,1,2],[1,3,3,0],[0,1,2,1]],[[1,2,2,0],[3,2,1,2],[1,3,2,1],[1,1,2,0]],[[1,2,3,0],[2,2,1,2],[1,3,2,1],[1,1,2,0]],[[1,3,2,0],[2,2,1,2],[1,3,2,1],[1,1,2,0]],[[2,2,2,0],[2,2,1,2],[1,3,2,1],[1,1,2,0]],[[1,2,2,0],[3,2,1,2],[1,3,2,1],[0,2,2,0]],[[1,2,3,0],[2,2,1,2],[1,3,2,1],[0,2,2,0]],[[1,3,2,0],[2,2,1,2],[1,3,2,1],[0,2,2,0]],[[2,2,2,0],[2,2,1,2],[1,3,2,1],[0,2,2,0]],[[1,2,2,0],[3,2,1,2],[1,3,2,0],[1,1,2,1]],[[1,2,3,0],[2,2,1,2],[1,3,2,0],[1,1,2,1]],[[1,3,2,0],[2,2,1,2],[1,3,2,0],[1,1,2,1]],[[2,2,2,0],[2,2,1,2],[1,3,2,0],[1,1,2,1]],[[1,2,2,0],[3,2,1,2],[1,3,2,0],[0,2,2,1]],[[1,2,3,0],[2,2,1,2],[1,3,2,0],[0,2,2,1]],[[1,3,2,0],[2,2,1,2],[1,3,2,0],[0,2,2,1]],[[2,2,2,0],[2,2,1,2],[1,3,2,0],[0,2,2,1]],[[1,2,2,0],[3,2,1,2],[1,3,0,2],[1,1,2,1]],[[1,2,3,0],[2,2,1,2],[1,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,2,1,2],[1,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,2,1,2],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,2,1,2],[1,3,0,2],[0,2,2,1]],[[1,2,3,0],[2,2,1,2],[1,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,2,1,2],[1,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,2,1,2],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[3,2,1,2],[0,3,3,1],[1,2,1,0]],[[1,2,3,0],[2,2,1,2],[0,3,3,1],[1,2,1,0]],[[1,3,2,0],[2,2,1,2],[0,3,3,1],[1,2,1,0]],[[2,2,2,0],[2,2,1,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,0],[3,2,1,2],[0,3,3,1],[1,2,0,1]],[[1,2,3,0],[2,2,1,2],[0,3,3,1],[1,2,0,1]],[[1,3,2,0],[2,2,1,2],[0,3,3,1],[1,2,0,1]],[[2,2,2,0],[2,2,1,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,0],[3,2,1,2],[0,3,3,1],[1,1,2,0]],[[1,2,3,0],[2,2,1,2],[0,3,3,1],[1,1,2,0]],[[1,3,2,0],[2,2,1,2],[0,3,3,1],[1,1,2,0]],[[2,2,2,0],[2,2,1,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,0],[3,2,1,2],[0,3,3,1],[1,1,1,1]],[[1,2,3,0],[2,2,1,2],[0,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,2,1,2],[0,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,2,1,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,2,1,2],[0,3,3,0],[1,2,1,1]],[[1,2,3,0],[2,2,1,2],[0,3,3,0],[1,2,1,1]],[[1,3,2,0],[2,2,1,2],[0,3,3,0],[1,2,1,1]],[[2,2,2,0],[2,2,1,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,0],[3,2,1,2],[0,3,3,0],[1,1,2,1]],[[1,2,3,0],[2,2,1,2],[0,3,3,0],[1,1,2,1]],[[1,3,2,0],[2,2,1,2],[0,3,3,0],[1,1,2,1]],[[2,2,2,0],[2,2,1,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,0],[3,2,1,2],[0,3,2,1],[1,2,2,0]],[[1,2,3,0],[2,2,1,2],[0,3,2,1],[1,2,2,0]],[[1,3,2,0],[2,2,1,2],[0,3,2,1],[1,2,2,0]],[[2,2,2,0],[2,2,1,2],[0,3,2,1],[1,2,2,0]],[[1,2,2,0],[3,2,1,2],[0,3,2,0],[1,2,2,1]],[[1,2,3,0],[2,2,1,2],[0,3,2,0],[1,2,2,1]],[[1,3,2,0],[2,2,1,2],[0,3,2,0],[1,2,2,1]],[[2,2,2,0],[2,2,1,2],[0,3,2,0],[1,2,2,1]],[[1,2,2,0],[3,2,1,2],[0,3,0,2],[1,2,2,1]],[[1,2,3,0],[2,2,1,2],[0,3,0,2],[1,2,2,1]],[[1,3,2,0],[2,2,1,2],[0,3,0,2],[1,2,2,1]],[[2,2,2,0],[2,2,1,2],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,0],[1,4,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,0],[1,3,0,3],[1,2,2,1]],[[0,2,2,1],[2,2,2,0],[1,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,2,2,0],[1,3,0,2],[1,3,2,1]],[[0,2,2,1],[2,2,2,0],[1,3,0,2],[1,2,3,1]],[[0,2,2,1],[2,2,2,0],[1,3,0,2],[1,2,2,2]],[[0,2,2,1],[2,2,2,0],[1,4,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,2,0],[1,3,1,1],[2,2,2,1]],[[0,2,2,1],[2,2,2,0],[1,3,1,1],[1,3,2,1]],[[0,2,2,1],[2,2,2,0],[1,3,1,1],[1,2,3,1]],[[0,2,2,1],[2,2,2,0],[1,3,1,1],[1,2,2,2]],[[0,2,2,1],[2,2,2,0],[1,4,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,0],[1,3,1,2],[2,2,2,0]],[[0,2,2,1],[2,2,2,0],[1,3,1,2],[1,3,2,0]],[[0,2,2,1],[2,2,2,0],[1,3,1,2],[1,2,3,0]],[[0,2,2,1],[2,2,2,0],[1,4,2,1],[1,2,1,1]],[[0,2,2,1],[2,2,2,0],[1,3,2,1],[2,2,1,1]],[[0,2,2,1],[2,2,2,0],[1,3,2,1],[1,3,1,1]],[[0,2,2,1],[2,2,2,0],[1,4,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,0],[1,3,2,2],[2,2,0,1]],[[0,2,2,1],[2,2,2,0],[1,3,2,2],[1,3,0,1]],[[0,2,2,1],[2,2,2,0],[1,4,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,0],[1,3,2,2],[2,2,1,0]],[[0,2,2,1],[2,2,2,0],[1,3,2,2],[1,3,1,0]],[[1,2,2,0],[2,2,1,1],[3,3,3,2],[1,0,1,0]],[[1,2,2,0],[3,2,1,1],[2,3,3,2],[1,0,1,0]],[[1,2,3,0],[2,2,1,1],[2,3,3,2],[1,0,1,0]],[[1,3,2,0],[2,2,1,1],[2,3,3,2],[1,0,1,0]],[[2,2,2,0],[2,2,1,1],[2,3,3,2],[1,0,1,0]],[[1,2,2,0],[2,2,1,1],[3,3,3,2],[1,0,0,1]],[[1,2,2,0],[3,2,1,1],[2,3,3,2],[1,0,0,1]],[[1,2,3,0],[2,2,1,1],[2,3,3,2],[1,0,0,1]],[[1,3,2,0],[2,2,1,1],[2,3,3,2],[1,0,0,1]],[[2,2,2,0],[2,2,1,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[3,2,2,0],[2,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,0],[3,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,2,0,3],[1,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,2,0,2],[2,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,2,0,2],[1,3,2,1]],[[0,2,2,1],[2,2,2,0],[2,2,0,2],[1,2,3,1]],[[0,2,2,1],[2,2,2,0],[2,2,0,2],[1,2,2,2]],[[0,2,2,1],[3,2,2,0],[2,2,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,2,0],[3,2,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,2,1,1],[2,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,2,1,1],[1,3,2,1]],[[0,2,2,1],[2,2,2,0],[2,2,1,1],[1,2,3,1]],[[0,2,2,1],[2,2,2,0],[2,2,1,1],[1,2,2,2]],[[0,2,2,1],[3,2,2,0],[2,2,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,0],[3,2,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,0],[2,2,1,2],[2,2,2,0]],[[0,2,2,1],[2,2,2,0],[2,2,1,2],[1,3,2,0]],[[0,2,2,1],[2,2,2,0],[2,2,1,2],[1,2,3,0]],[[0,2,2,1],[3,2,2,0],[2,2,2,1],[1,2,1,1]],[[0,2,2,1],[2,2,2,0],[3,2,2,1],[1,2,1,1]],[[0,2,2,1],[2,2,2,0],[2,2,2,1],[2,2,1,1]],[[0,2,2,1],[2,2,2,0],[2,2,2,1],[1,3,1,1]],[[0,2,2,1],[3,2,2,0],[2,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,0],[3,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,0],[2,2,2,2],[2,2,0,1]],[[0,2,2,1],[2,2,2,0],[2,2,2,2],[1,3,0,1]],[[0,2,2,1],[3,2,2,0],[2,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,0],[3,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,0],[2,2,2,2],[2,2,1,0]],[[0,2,2,1],[2,2,2,0],[2,2,2,2],[1,3,1,0]],[[1,2,2,0],[2,2,1,1],[3,3,3,1],[1,0,1,1]],[[1,2,2,0],[3,2,1,1],[2,3,3,1],[1,0,1,1]],[[1,3,2,0],[2,2,1,1],[2,3,3,1],[1,0,1,1]],[[2,2,2,0],[2,2,1,1],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[3,2,2,0],[2,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,2,0],[3,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,3,0,1],[2,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,3,0,1],[1,3,2,1]],[[0,2,2,1],[3,2,2,0],[2,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,0],[3,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,4,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,3,0,3],[0,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,3,0,2],[0,3,2,1]],[[0,2,2,1],[2,2,2,0],[2,3,0,2],[0,2,3,1]],[[0,2,2,1],[2,2,2,0],[2,3,0,2],[0,2,2,2]],[[0,2,2,1],[3,2,2,0],[2,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,0],[3,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,0],[2,4,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,0],[2,3,0,2],[2,1,2,1]],[[0,2,2,1],[3,2,2,0],[2,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,0],[3,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,0],[2,3,0,2],[2,2,2,0]],[[0,2,2,1],[2,2,2,0],[2,3,0,2],[1,3,2,0]],[[0,2,2,1],[3,2,2,0],[2,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,2,2,0],[3,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,4,1,1],[0,2,2,1]],[[0,2,2,1],[2,2,2,0],[2,3,1,1],[0,3,2,1]],[[0,2,2,1],[2,2,2,0],[2,3,1,1],[0,2,3,1]],[[0,2,2,1],[2,2,2,0],[2,3,1,1],[0,2,2,2]],[[0,2,2,1],[3,2,2,0],[2,3,1,1],[1,1,2,1]],[[0,2,2,1],[2,2,2,0],[3,3,1,1],[1,1,2,1]],[[0,2,2,1],[2,2,2,0],[2,4,1,1],[1,1,2,1]],[[0,2,2,1],[2,2,2,0],[2,3,1,1],[2,1,2,1]],[[0,2,2,1],[3,2,2,0],[2,3,1,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,0],[3,3,1,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,0],[2,4,1,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,0],[2,3,1,2],[0,3,2,0]],[[0,2,2,1],[2,2,2,0],[2,3,1,2],[0,2,3,0]],[[0,2,2,1],[3,2,2,0],[2,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,0],[3,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,0],[2,4,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,0],[2,3,1,2],[2,1,2,0]],[[0,2,2,1],[3,2,2,0],[2,3,2,1],[0,1,2,1]],[[0,2,2,1],[2,2,2,0],[3,3,2,1],[0,1,2,1]],[[0,2,2,1],[2,2,2,0],[2,4,2,1],[0,1,2,1]],[[0,2,2,1],[3,2,2,0],[2,3,2,1],[0,2,1,1]],[[0,2,2,1],[2,2,2,0],[3,3,2,1],[0,2,1,1]],[[0,2,2,1],[2,2,2,0],[2,4,2,1],[0,2,1,1]],[[0,2,2,1],[2,2,2,0],[2,3,2,1],[0,3,1,1]],[[0,2,2,1],[3,2,2,0],[2,3,2,1],[1,0,2,1]],[[0,2,2,1],[2,2,2,0],[3,3,2,1],[1,0,2,1]],[[0,2,2,1],[2,2,2,0],[2,4,2,1],[1,0,2,1]],[[0,2,2,1],[2,2,2,0],[2,3,2,1],[2,0,2,1]],[[0,2,2,1],[3,2,2,0],[2,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,2,2,0],[3,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,2,2,0],[2,4,2,1],[1,1,1,1]],[[0,2,2,1],[2,2,2,0],[2,3,2,1],[2,1,1,1]],[[0,2,2,1],[3,2,2,0],[2,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,2,0],[3,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,2,0],[2,4,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,2,0],[2,3,2,1],[2,2,0,1]],[[0,2,2,1],[3,2,2,0],[2,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,0],[3,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,0],[2,4,2,2],[0,1,1,1]],[[0,2,2,1],[3,2,2,0],[2,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,0],[3,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,0],[2,4,2,2],[0,1,2,0]],[[0,2,2,1],[3,2,2,0],[2,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,0],[3,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,0],[2,4,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,0],[2,3,2,2],[0,3,0,1]],[[0,2,2,1],[3,2,2,0],[2,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,0],[3,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,0],[2,4,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,0],[2,3,2,2],[0,3,1,0]],[[0,2,2,1],[3,2,2,0],[2,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,0],[3,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,0],[2,4,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,0],[2,3,2,2],[2,0,1,1]],[[0,2,2,1],[3,2,2,0],[2,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,0],[3,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,0],[2,4,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,0],[2,3,2,2],[2,0,2,0]],[[0,2,2,1],[3,2,2,0],[2,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,0],[3,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,0],[2,4,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,0],[2,3,2,2],[2,1,0,1]],[[0,2,2,1],[3,2,2,0],[2,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,0],[3,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,0],[2,4,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,0],[2,3,2,2],[2,1,1,0]],[[0,2,2,1],[3,2,2,0],[2,3,2,2],[1,2,0,0]],[[0,2,2,1],[2,2,2,0],[3,3,2,2],[1,2,0,0]],[[0,2,2,1],[2,2,2,0],[2,4,2,2],[1,2,0,0]],[[0,2,2,1],[2,2,2,0],[2,3,2,2],[2,2,0,0]],[[0,2,2,1],[3,2,2,0],[2,3,3,2],[0,2,0,0]],[[0,2,2,1],[2,2,2,0],[3,3,3,2],[0,2,0,0]],[[0,2,2,1],[2,2,2,0],[2,4,3,2],[0,2,0,0]],[[1,2,2,0],[2,2,1,1],[2,3,0,2],[1,3,2,0]],[[1,2,2,0],[2,2,1,1],[2,3,0,2],[2,2,2,0]],[[1,2,2,0],[2,2,1,1],[3,3,0,2],[1,2,2,0]],[[1,2,2,0],[3,2,1,1],[2,3,0,2],[1,2,2,0]],[[1,3,2,0],[2,2,1,1],[2,3,0,2],[1,2,2,0]],[[2,2,2,0],[2,2,1,1],[2,3,0,2],[1,2,2,0]],[[1,2,2,0],[2,2,1,1],[2,3,0,1],[1,3,2,1]],[[1,2,2,0],[2,2,1,1],[2,3,0,1],[2,2,2,1]],[[1,2,2,0],[2,2,1,1],[3,3,0,1],[1,2,2,1]],[[1,2,2,0],[3,2,1,1],[2,3,0,1],[1,2,2,1]],[[1,3,2,0],[2,2,1,1],[2,3,0,1],[1,2,2,1]],[[2,2,2,0],[2,2,1,1],[2,3,0,1],[1,2,2,1]],[[0,2,2,1],[3,2,2,0],[2,3,3,2],[1,1,0,0]],[[0,2,2,1],[2,2,2,0],[3,3,3,2],[1,1,0,0]],[[0,2,2,1],[2,2,2,0],[2,4,3,2],[1,1,0,0]],[[0,2,2,1],[2,2,2,0],[2,3,3,2],[2,1,0,0]],[[1,2,2,0],[2,2,1,1],[2,2,3,2],[2,2,0,0]],[[1,2,2,0],[2,2,1,1],[3,2,3,2],[1,2,0,0]],[[1,2,2,0],[3,2,1,1],[2,2,3,2],[1,2,0,0]],[[1,2,3,0],[2,2,1,1],[2,2,3,2],[1,2,0,0]],[[1,3,2,0],[2,2,1,1],[2,2,3,2],[1,2,0,0]],[[2,2,2,0],[2,2,1,1],[2,2,3,2],[1,2,0,0]],[[1,2,2,0],[2,2,1,1],[2,2,3,2],[2,1,1,0]],[[1,2,2,0],[2,2,1,1],[3,2,3,2],[1,1,1,0]],[[1,2,2,0],[3,2,1,1],[2,2,3,2],[1,1,1,0]],[[1,2,3,0],[2,2,1,1],[2,2,3,2],[1,1,1,0]],[[1,3,2,0],[2,2,1,1],[2,2,3,2],[1,1,1,0]],[[2,2,2,0],[2,2,1,1],[2,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,2,1,1],[2,2,3,2],[2,1,0,1]],[[1,2,2,0],[2,2,1,1],[3,2,3,2],[1,1,0,1]],[[1,2,2,0],[3,2,1,1],[2,2,3,2],[1,1,0,1]],[[1,2,3,0],[2,2,1,1],[2,2,3,2],[1,1,0,1]],[[1,3,2,0],[2,2,1,1],[2,2,3,2],[1,1,0,1]],[[2,2,2,0],[2,2,1,1],[2,2,3,2],[1,1,0,1]],[[1,2,2,0],[2,2,1,1],[2,2,3,2],[2,0,2,0]],[[1,2,2,0],[2,2,1,1],[3,2,3,2],[1,0,2,0]],[[1,2,2,0],[3,2,1,1],[2,2,3,2],[1,0,2,0]],[[1,2,3,0],[2,2,1,1],[2,2,3,2],[1,0,2,0]],[[1,3,2,0],[2,2,1,1],[2,2,3,2],[1,0,2,0]],[[2,2,2,0],[2,2,1,1],[2,2,3,2],[1,0,2,0]],[[1,2,2,0],[2,2,1,1],[2,2,3,2],[2,0,1,1]],[[1,2,2,0],[2,2,1,1],[3,2,3,2],[1,0,1,1]],[[1,2,2,0],[3,2,1,1],[2,2,3,2],[1,0,1,1]],[[1,2,3,0],[2,2,1,1],[2,2,3,2],[1,0,1,1]],[[1,3,2,0],[2,2,1,1],[2,2,3,2],[1,0,1,1]],[[2,2,2,0],[2,2,1,1],[2,2,3,2],[1,0,1,1]],[[1,2,2,0],[2,2,1,1],[3,2,3,2],[0,2,1,0]],[[1,2,2,0],[3,2,1,1],[2,2,3,2],[0,2,1,0]],[[1,2,3,0],[2,2,1,1],[2,2,3,2],[0,2,1,0]],[[1,3,2,0],[2,2,1,1],[2,2,3,2],[0,2,1,0]],[[2,2,2,0],[2,2,1,1],[2,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,2,1,1],[3,2,3,2],[0,2,0,1]],[[1,2,2,0],[3,2,1,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,1],[1,4,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,2,1],[1,3,0,1],[2,2,2,1]],[[0,2,2,1],[2,2,2,1],[1,3,0,1],[1,3,2,1]],[[0,2,2,1],[2,2,2,1],[1,3,0,1],[1,2,3,1]],[[0,2,2,1],[2,2,2,1],[1,3,0,1],[1,2,2,2]],[[0,2,2,1],[2,2,2,1],[1,4,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,1],[1,3,0,2],[2,2,1,1]],[[0,2,2,1],[2,2,2,1],[1,3,0,2],[1,3,1,1]],[[0,2,2,1],[2,2,2,1],[1,4,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,1],[1,3,0,2],[2,2,2,0]],[[0,2,2,1],[2,2,2,1],[1,3,0,2],[1,3,2,0]],[[0,2,2,1],[2,2,2,1],[1,3,0,2],[1,2,3,0]],[[0,2,2,1],[2,2,2,1],[1,4,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,2,1],[1,3,1,0],[2,2,2,1]],[[0,2,2,1],[2,2,2,1],[1,3,1,0],[1,3,2,1]],[[0,2,2,1],[2,2,2,1],[1,3,1,0],[1,2,3,1]],[[0,2,2,1],[2,2,2,1],[1,3,1,0],[1,2,2,2]],[[0,2,2,1],[2,2,2,1],[1,4,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,2,1],[1,3,1,1],[2,2,2,0]],[[0,2,2,1],[2,2,2,1],[1,3,1,1],[1,3,2,0]],[[0,2,2,1],[2,2,2,1],[1,3,1,1],[1,2,3,0]],[[0,2,2,1],[2,2,2,1],[1,4,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,1],[1,3,1,2],[2,2,0,1]],[[0,2,2,1],[2,2,2,1],[1,3,1,2],[1,3,0,1]],[[0,2,2,1],[2,2,2,1],[1,4,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,1],[1,3,1,2],[2,2,1,0]],[[0,2,2,1],[2,2,2,1],[1,3,1,2],[1,3,1,0]],[[1,2,3,0],[2,2,1,1],[2,2,3,2],[0,2,0,1]],[[1,3,2,0],[2,2,1,1],[2,2,3,2],[0,2,0,1]],[[2,2,2,0],[2,2,1,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,1],[1,4,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,2,1],[1,3,2,0],[2,2,1,1]],[[0,2,2,1],[2,2,2,1],[1,3,2,0],[1,3,1,1]],[[0,2,2,1],[2,2,2,1],[1,4,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,2,1],[1,3,2,1],[2,2,0,1]],[[0,2,2,1],[2,2,2,1],[1,3,2,1],[1,3,0,1]],[[0,2,2,1],[2,2,2,1],[1,4,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,2,1],[1,3,2,1],[2,2,1,0]],[[0,2,2,1],[2,2,2,1],[1,3,2,1],[1,3,1,0]],[[1,2,2,0],[2,2,1,1],[3,2,3,2],[0,1,2,0]],[[1,2,2,0],[3,2,1,1],[2,2,3,2],[0,1,2,0]],[[1,2,3,0],[2,2,1,1],[2,2,3,2],[0,1,2,0]],[[1,3,2,0],[2,2,1,1],[2,2,3,2],[0,1,2,0]],[[2,2,2,0],[2,2,1,1],[2,2,3,2],[0,1,2,0]],[[1,2,2,0],[2,2,1,1],[3,2,3,2],[0,1,1,1]],[[1,2,2,0],[3,2,1,1],[2,2,3,2],[0,1,1,1]],[[1,2,3,0],[2,2,1,1],[2,2,3,2],[0,1,1,1]],[[1,3,2,0],[2,2,1,1],[2,2,3,2],[0,1,1,1]],[[2,2,2,0],[2,2,1,1],[2,2,3,2],[0,1,1,1]],[[1,2,2,0],[2,2,1,1],[2,2,3,1],[2,2,0,1]],[[1,2,2,0],[2,2,1,1],[3,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,2,1],[1,4,3,0],[1,2,1,0]],[[0,2,2,1],[2,2,2,1],[1,3,3,0],[2,2,1,0]],[[0,2,2,1],[2,2,2,1],[1,3,3,0],[1,3,1,0]],[[1,2,2,0],[3,2,1,1],[2,2,3,1],[1,2,0,1]],[[1,3,2,0],[2,2,1,1],[2,2,3,1],[1,2,0,1]],[[2,2,2,0],[2,2,1,1],[2,2,3,1],[1,2,0,1]],[[1,2,2,0],[2,2,1,1],[2,2,3,1],[2,1,1,1]],[[1,2,2,0],[2,2,1,1],[3,2,3,1],[1,1,1,1]],[[1,2,2,0],[3,2,1,1],[2,2,3,1],[1,1,1,1]],[[1,2,3,0],[2,2,1,1],[2,2,3,1],[1,1,1,1]],[[1,3,2,0],[2,2,1,1],[2,2,3,1],[1,1,1,1]],[[2,2,2,0],[2,2,1,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,0],[2,2,1,1],[2,2,3,1],[2,0,2,1]],[[1,2,2,0],[2,2,1,1],[3,2,3,1],[1,0,2,1]],[[1,2,2,0],[3,2,1,1],[2,2,3,1],[1,0,2,1]],[[1,2,3,0],[2,2,1,1],[2,2,3,1],[1,0,2,1]],[[1,3,2,0],[2,2,1,1],[2,2,3,1],[1,0,2,1]],[[2,2,2,0],[2,2,1,1],[2,2,3,1],[1,0,2,1]],[[1,2,2,0],[2,2,1,1],[3,2,3,1],[0,2,1,1]],[[1,2,2,0],[3,2,1,1],[2,2,3,1],[0,2,1,1]],[[1,2,3,0],[2,2,1,1],[2,2,3,1],[0,2,1,1]],[[1,3,2,0],[2,2,1,1],[2,2,3,1],[0,2,1,1]],[[2,2,2,0],[2,2,1,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[2,2,1,1],[3,2,3,1],[0,1,2,1]],[[1,2,2,0],[3,2,1,1],[2,2,3,1],[0,1,2,1]],[[1,2,3,0],[2,2,1,1],[2,2,3,1],[0,1,2,1]],[[1,3,2,0],[2,2,1,1],[2,2,3,1],[0,1,2,1]],[[2,2,2,0],[2,2,1,1],[2,2,3,1],[0,1,2,1]],[[1,2,2,0],[2,2,1,1],[2,2,3,0],[2,1,2,1]],[[1,2,2,0],[2,2,1,1],[3,2,3,0],[1,1,2,1]],[[1,2,2,0],[3,2,1,1],[2,2,3,0],[1,1,2,1]],[[1,3,2,0],[2,2,1,1],[2,2,3,0],[1,1,2,1]],[[2,2,2,0],[2,2,1,1],[2,2,3,0],[1,1,2,1]],[[1,2,2,0],[2,2,1,1],[3,2,3,0],[0,2,2,1]],[[1,2,2,0],[3,2,1,1],[2,2,3,0],[0,2,2,1]],[[1,3,2,0],[2,2,1,1],[2,2,3,0],[0,2,2,1]],[[2,2,2,0],[2,2,1,1],[2,2,3,0],[0,2,2,1]],[[1,2,2,0],[2,2,1,1],[2,2,2,2],[2,1,2,0]],[[1,2,2,0],[2,2,1,1],[3,2,2,2],[1,1,2,0]],[[1,2,2,0],[3,2,1,1],[2,2,2,2],[1,1,2,0]],[[1,2,3,0],[2,2,1,1],[2,2,2,2],[1,1,2,0]],[[1,3,2,0],[2,2,1,1],[2,2,2,2],[1,1,2,0]],[[2,2,2,0],[2,2,1,1],[2,2,2,2],[1,1,2,0]],[[1,2,2,0],[2,2,1,1],[3,2,2,2],[0,2,2,0]],[[1,2,2,0],[3,2,1,1],[2,2,2,2],[0,2,2,0]],[[1,2,3,0],[2,2,1,1],[2,2,2,2],[0,2,2,0]],[[1,3,2,0],[2,2,1,1],[2,2,2,2],[0,2,2,0]],[[2,2,2,0],[2,2,1,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,0],[2,2,1,1],[2,2,2,1],[2,1,2,1]],[[0,2,2,1],[3,2,2,1],[2,2,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,2,1],[3,2,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,2,1],[2,2,0,1],[2,2,2,1]],[[0,2,2,1],[2,2,2,1],[2,2,0,1],[1,3,2,1]],[[0,2,2,1],[2,2,2,1],[2,2,0,1],[1,2,3,1]],[[0,2,2,1],[2,2,2,1],[2,2,0,1],[1,2,2,2]],[[0,2,2,1],[3,2,2,1],[2,2,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,1],[3,2,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,1],[2,2,0,2],[2,2,1,1]],[[0,2,2,1],[2,2,2,1],[2,2,0,2],[1,3,1,1]],[[0,2,2,1],[3,2,2,1],[2,2,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,1],[3,2,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,1],[2,2,0,2],[2,2,2,0]],[[0,2,2,1],[2,2,2,1],[2,2,0,2],[1,3,2,0]],[[0,2,2,1],[2,2,2,1],[2,2,0,2],[1,2,3,0]],[[0,2,2,1],[3,2,2,1],[2,2,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,2,1],[3,2,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,2,1],[2,2,1,0],[2,2,2,1]],[[0,2,2,1],[2,2,2,1],[2,2,1,0],[1,3,2,1]],[[0,2,2,1],[2,2,2,1],[2,2,1,0],[1,2,3,1]],[[0,2,2,1],[2,2,2,1],[2,2,1,0],[1,2,2,2]],[[0,2,2,1],[3,2,2,1],[2,2,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,2,1],[3,2,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,2,1],[2,2,1,1],[2,2,2,0]],[[0,2,2,1],[2,2,2,1],[2,2,1,1],[1,3,2,0]],[[0,2,2,1],[2,2,2,1],[2,2,1,1],[1,2,3,0]],[[0,2,2,1],[3,2,2,1],[2,2,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,1],[3,2,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,1],[2,2,1,2],[2,2,0,1]],[[0,2,2,1],[2,2,2,1],[2,2,1,2],[1,3,0,1]],[[0,2,2,1],[3,2,2,1],[2,2,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,1],[3,2,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,2,1,2],[2,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,2,1,2],[1,3,1,0]],[[1,2,2,0],[2,2,1,1],[3,2,2,1],[1,1,2,1]],[[1,2,2,0],[3,2,1,1],[2,2,2,1],[1,1,2,1]],[[1,2,3,0],[2,2,1,1],[2,2,2,1],[1,1,2,1]],[[1,3,2,0],[2,2,1,1],[2,2,2,1],[1,1,2,1]],[[2,2,2,0],[2,2,1,1],[2,2,2,1],[1,1,2,1]],[[1,2,2,0],[2,2,1,1],[3,2,2,1],[0,2,2,1]],[[1,2,2,0],[3,2,1,1],[2,2,2,1],[0,2,2,1]],[[0,2,2,1],[3,2,2,1],[2,2,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,2,1],[3,2,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,2,1],[2,2,2,0],[2,2,1,1]],[[0,2,2,1],[2,2,2,1],[2,2,2,0],[1,3,1,1]],[[0,2,2,1],[3,2,2,1],[2,2,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,2,1],[3,2,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,2,1],[2,2,2,1],[2,2,0,1]],[[0,2,2,1],[2,2,2,1],[2,2,2,1],[1,3,0,1]],[[0,2,2,1],[3,2,2,1],[2,2,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,2,1],[3,2,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,2,2,1],[2,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,2,2,1],[1,3,1,0]],[[1,2,3,0],[2,2,1,1],[2,2,2,1],[0,2,2,1]],[[1,3,2,0],[2,2,1,1],[2,2,2,1],[0,2,2,1]],[[2,2,2,0],[2,2,1,1],[2,2,2,1],[0,2,2,1]],[[1,2,2,0],[2,2,1,1],[2,2,1,2],[2,1,2,1]],[[1,2,2,0],[2,2,1,1],[3,2,1,2],[1,1,2,1]],[[1,2,2,0],[3,2,1,1],[2,2,1,2],[1,1,2,1]],[[1,2,3,0],[2,2,1,1],[2,2,1,2],[1,1,2,1]],[[1,3,2,0],[2,2,1,1],[2,2,1,2],[1,1,2,1]],[[2,2,2,0],[2,2,1,1],[2,2,1,2],[1,1,2,1]],[[1,2,2,0],[2,2,1,1],[3,2,1,2],[0,2,2,1]],[[1,2,2,0],[3,2,1,1],[2,2,1,2],[0,2,2,1]],[[1,2,3,0],[2,2,1,1],[2,2,1,2],[0,2,2,1]],[[1,3,2,0],[2,2,1,1],[2,2,1,2],[0,2,2,1]],[[2,2,2,0],[2,2,1,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[3,2,2,1],[2,2,3,0],[1,2,1,0]],[[0,2,2,1],[2,2,2,1],[3,2,3,0],[1,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,2,3,0],[2,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,2,3,0],[1,3,1,0]],[[1,2,2,0],[2,2,1,1],[2,1,3,2],[1,3,1,0]],[[1,2,2,0],[2,2,1,1],[2,1,3,2],[2,2,1,0]],[[1,2,2,0],[2,2,1,1],[3,1,3,2],[1,2,1,0]],[[1,2,2,0],[3,2,1,1],[2,1,3,2],[1,2,1,0]],[[1,2,3,0],[2,2,1,1],[2,1,3,2],[1,2,1,0]],[[1,3,2,0],[2,2,1,1],[2,1,3,2],[1,2,1,0]],[[2,2,2,0],[2,2,1,1],[2,1,3,2],[1,2,1,0]],[[1,2,2,0],[2,2,1,1],[2,1,3,2],[1,3,0,1]],[[1,2,2,0],[2,2,1,1],[2,1,3,2],[2,2,0,1]],[[1,2,2,0],[2,2,1,1],[3,1,3,2],[1,2,0,1]],[[1,2,2,0],[3,2,1,1],[2,1,3,2],[1,2,0,1]],[[1,2,3,0],[2,2,1,1],[2,1,3,2],[1,2,0,1]],[[1,3,2,0],[2,2,1,1],[2,1,3,2],[1,2,0,1]],[[2,2,2,0],[2,2,1,1],[2,1,3,2],[1,2,0,1]],[[1,2,2,0],[2,2,1,1],[2,1,3,1],[1,3,1,1]],[[1,2,2,0],[2,2,1,1],[2,1,3,1],[2,2,1,1]],[[1,2,2,0],[2,2,1,1],[3,1,3,1],[1,2,1,1]],[[1,2,2,0],[3,2,1,1],[2,1,3,1],[1,2,1,1]],[[1,2,3,0],[2,2,1,1],[2,1,3,1],[1,2,1,1]],[[1,3,2,0],[2,2,1,1],[2,1,3,1],[1,2,1,1]],[[2,2,2,0],[2,2,1,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,0],[2,2,1,1],[2,1,3,0],[1,2,3,1]],[[1,2,2,0],[2,2,1,1],[2,1,3,0],[1,3,2,1]],[[1,2,2,0],[2,2,1,1],[2,1,3,0],[2,2,2,1]],[[1,2,2,0],[2,2,1,1],[3,1,3,0],[1,2,2,1]],[[1,2,2,0],[3,2,1,1],[2,1,3,0],[1,2,2,1]],[[1,3,2,0],[2,2,1,1],[2,1,3,0],[1,2,2,1]],[[2,2,2,0],[2,2,1,1],[2,1,3,0],[1,2,2,1]],[[1,2,2,0],[2,2,1,1],[2,1,2,2],[1,2,3,0]],[[1,2,2,0],[2,2,1,1],[2,1,2,2],[1,3,2,0]],[[1,2,2,0],[2,2,1,1],[2,1,2,2],[2,2,2,0]],[[1,2,2,0],[2,2,1,1],[3,1,2,2],[1,2,2,0]],[[0,2,2,1],[3,2,2,1],[2,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,2,2,1],[3,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,2,2,1],[2,3,0,0],[2,2,2,1]],[[0,2,2,1],[2,2,2,1],[2,3,0,0],[1,3,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,2,2,1],[3,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,2,2,1],[2,4,0,1],[0,2,2,1]],[[0,2,2,1],[2,2,2,1],[2,3,0,1],[0,3,2,1]],[[0,2,2,1],[2,2,2,1],[2,3,0,1],[0,2,3,1]],[[0,2,2,1],[2,2,2,1],[2,3,0,1],[0,2,2,2]],[[0,2,2,1],[3,2,2,1],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,2,2,1],[3,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,2,2,1],[2,4,0,1],[1,1,2,1]],[[0,2,2,1],[2,2,2,1],[2,3,0,1],[2,1,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,0,1],[1,2,2,0]],[[0,2,2,1],[2,2,2,1],[3,3,0,1],[1,2,2,0]],[[0,2,2,1],[2,2,2,1],[2,3,0,1],[2,2,2,0]],[[0,2,2,1],[2,2,2,1],[2,3,0,1],[1,3,2,0]],[[0,2,2,1],[3,2,2,1],[2,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,1],[3,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,1],[2,4,0,2],[0,1,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,1],[3,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,1],[2,4,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,1],[2,3,0,2],[0,3,1,1]],[[0,2,2,1],[3,2,2,1],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,1],[3,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,1],[2,4,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,1],[2,3,0,2],[0,3,2,0]],[[0,2,2,1],[2,2,2,1],[2,3,0,2],[0,2,3,0]],[[0,2,2,1],[3,2,2,1],[2,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,1],[3,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,1],[2,4,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,1],[2,3,0,2],[2,0,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,1],[3,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,1],[2,4,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,1],[2,3,0,2],[2,1,1,1]],[[0,2,2,1],[3,2,2,1],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,1],[3,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,1],[2,4,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,1],[2,3,0,2],[2,1,2,0]],[[1,2,2,0],[3,2,1,1],[2,1,2,2],[1,2,2,0]],[[1,2,3,0],[2,2,1,1],[2,1,2,2],[1,2,2,0]],[[1,3,2,0],[2,2,1,1],[2,1,2,2],[1,2,2,0]],[[2,2,2,0],[2,2,1,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,0],[2,2,1,1],[2,1,2,1],[1,2,2,2]],[[1,2,2,0],[2,2,1,1],[2,1,2,1],[1,2,3,1]],[[1,2,2,0],[2,2,1,1],[2,1,2,1],[1,3,2,1]],[[1,2,2,0],[2,2,1,1],[2,1,2,1],[2,2,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,2,1],[3,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,2,1],[2,4,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,2,1],[2,3,1,0],[0,3,2,1]],[[0,2,2,1],[2,2,2,1],[2,3,1,0],[0,2,3,1]],[[0,2,2,1],[2,2,2,1],[2,3,1,0],[0,2,2,2]],[[0,2,2,1],[3,2,2,1],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,2,1],[3,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,2,1],[2,4,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,2,1],[2,3,1,0],[2,1,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,2,1],[3,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,2,1],[2,4,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,2,1],[2,3,1,1],[0,3,2,0]],[[0,2,2,1],[2,2,2,1],[2,3,1,1],[0,2,3,0]],[[0,2,2,1],[3,2,2,1],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,2,1],[3,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,2,1],[2,4,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,2,1],[2,3,1,1],[2,1,2,0]],[[1,2,2,0],[2,2,1,1],[3,1,2,1],[1,2,2,1]],[[1,2,2,0],[3,2,1,1],[2,1,2,1],[1,2,2,1]],[[1,2,3,0],[2,2,1,1],[2,1,2,1],[1,2,2,1]],[[1,3,2,0],[2,2,1,1],[2,1,2,1],[1,2,2,1]],[[2,2,2,0],[2,2,1,1],[2,1,2,1],[1,2,2,1]],[[1,2,2,0],[2,2,1,1],[2,1,1,2],[1,2,2,2]],[[1,2,2,0],[2,2,1,1],[2,1,1,2],[1,2,3,1]],[[0,2,2,1],[3,2,2,1],[2,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,1],[3,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,1],[2,4,1,2],[0,1,1,1]],[[0,2,2,1],[3,2,2,1],[2,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,1],[3,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,1],[2,4,1,2],[0,1,2,0]],[[0,2,2,1],[3,2,2,1],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,1],[3,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,1],[2,4,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,1],[2,3,1,2],[0,3,0,1]],[[0,2,2,1],[3,2,2,1],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,1],[3,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,4,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,3,1,2],[0,3,1,0]],[[1,2,2,0],[2,2,1,1],[2,1,1,2],[1,3,2,1]],[[1,2,2,0],[2,2,1,1],[2,1,1,2],[2,2,2,1]],[[1,2,2,0],[2,2,1,1],[2,1,1,3],[1,2,2,1]],[[1,2,2,0],[2,2,1,1],[3,1,1,2],[1,2,2,1]],[[1,2,2,0],[3,2,1,1],[2,1,1,2],[1,2,2,1]],[[1,2,3,0],[2,2,1,1],[2,1,1,2],[1,2,2,1]],[[1,3,2,0],[2,2,1,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,1],[3,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,1],[2,4,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,1],[2,3,1,2],[2,0,1,1]],[[0,2,2,1],[3,2,2,1],[2,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,1],[3,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,1],[2,4,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,1],[2,3,1,2],[2,0,2,0]],[[0,2,2,1],[3,2,2,1],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,1],[3,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,1],[2,4,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,1],[2,3,1,2],[2,1,0,1]],[[0,2,2,1],[3,2,2,1],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,1],[3,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,1],[2,4,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,1],[2,3,1,2],[2,1,1,0]],[[2,2,2,0],[2,2,1,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,2,2,1],[3,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,2,2,1],[2,4,1,2],[1,2,0,0]],[[0,2,2,1],[2,2,2,1],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[2,2,1,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[2,2,1,1],[2,0,3,2],[1,3,2,0]],[[1,2,2,0],[2,2,1,1],[2,0,3,2],[2,2,2,0]],[[1,2,2,0],[2,2,1,1],[2,0,3,3],[1,2,2,0]],[[1,2,2,0],[2,2,1,1],[2,0,4,2],[1,2,2,0]],[[1,2,2,0],[2,2,1,1],[3,0,3,2],[1,2,2,0]],[[1,2,2,0],[3,2,1,1],[2,0,3,2],[1,2,2,0]],[[1,2,3,0],[2,2,1,1],[2,0,3,2],[1,2,2,0]],[[1,3,2,0],[2,2,1,1],[2,0,3,2],[1,2,2,0]],[[2,2,2,0],[2,2,1,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[2,2,1,1],[2,0,3,2],[1,2,1,2]],[[0,2,2,1],[3,2,2,1],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,2,2,1],[3,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,2,2,1],[2,4,2,0],[0,1,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,2,1],[3,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,2,1],[2,4,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,2,1],[2,3,2,0],[0,3,1,1]],[[0,2,2,1],[3,2,2,1],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,2,1],[3,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,2,1],[2,4,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,2,1],[2,3,2,0],[2,0,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,2,1],[3,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,2,1],[2,4,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,2,1],[2,3,2,0],[2,1,1,1]],[[0,2,2,1],[3,2,2,1],[2,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,2,1],[3,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,2,1],[2,4,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,2,1],[2,3,2,0],[2,2,0,1]],[[1,2,2,0],[2,2,1,1],[2,0,3,3],[1,2,1,1]],[[1,2,2,0],[2,2,1,1],[2,0,4,2],[1,2,1,1]],[[1,2,2,0],[2,2,1,1],[2,0,3,1],[1,2,2,2]],[[1,2,2,0],[2,2,1,1],[2,0,3,1],[1,2,3,1]],[[1,2,2,0],[2,2,1,1],[2,0,3,1],[1,3,2,1]],[[1,2,2,0],[2,2,1,1],[2,0,3,1],[2,2,2,1]],[[1,2,2,0],[2,2,1,1],[2,0,4,1],[1,2,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,2,2,1],[3,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,2,2,1],[2,4,2,1],[0,1,1,1]],[[0,2,2,1],[3,2,2,1],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,2,2,1],[3,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,2,2,1],[2,4,2,1],[0,1,2,0]],[[0,2,2,1],[3,2,2,1],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,2,1],[3,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,2,1],[2,4,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,2,1],[2,3,2,1],[0,3,0,1]],[[0,2,2,1],[3,2,2,1],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,2,1],[3,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,4,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,3,2,1],[0,3,1,0]],[[1,2,2,0],[2,2,1,1],[3,0,3,1],[1,2,2,1]],[[1,2,2,0],[3,2,1,1],[2,0,3,1],[1,2,2,1]],[[1,2,3,0],[2,2,1,1],[2,0,3,1],[1,2,2,1]],[[1,3,2,0],[2,2,1,1],[2,0,3,1],[1,2,2,1]],[[2,2,2,0],[2,2,1,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,0],[2,2,1,1],[2,0,2,2],[1,2,2,2]],[[0,2,2,1],[3,2,2,1],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,2,2,1],[3,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,2,2,1],[2,4,2,1],[1,0,1,1]],[[0,2,2,1],[2,2,2,1],[2,3,2,1],[2,0,1,1]],[[0,2,2,1],[3,2,2,1],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,2,1],[3,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,2,1],[2,4,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,2,1],[2,3,2,1],[2,0,2,0]],[[0,2,2,1],[3,2,2,1],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,2,1],[3,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,2,1],[2,4,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,2,1],[2,3,2,1],[2,1,0,1]],[[0,2,2,1],[3,2,2,1],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,2,1],[3,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,2,1],[2,4,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,2,1],[2,3,2,1],[2,1,1,0]],[[1,2,2,0],[2,2,1,1],[2,0,2,2],[1,2,3,1]],[[1,2,2,0],[2,2,1,1],[2,0,2,2],[1,3,2,1]],[[1,2,2,0],[2,2,1,1],[2,0,2,2],[2,2,2,1]],[[1,2,2,0],[2,2,1,1],[2,0,2,3],[1,2,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,2,1],[3,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,2,1],[2,4,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,2,1],[2,3,2,1],[2,2,0,0]],[[1,2,2,0],[2,2,1,1],[3,0,2,2],[1,2,2,1]],[[1,2,2,0],[3,2,1,1],[2,0,2,2],[1,2,2,1]],[[1,2,3,0],[2,2,1,1],[2,0,2,2],[1,2,2,1]],[[1,3,2,0],[2,2,1,1],[2,0,2,2],[1,2,2,1]],[[2,2,2,0],[2,2,1,1],[2,0,2,2],[1,2,2,1]],[[1,2,2,0],[3,2,1,1],[1,3,3,2],[1,2,0,0]],[[1,2,3,0],[2,2,1,1],[1,3,3,2],[1,2,0,0]],[[1,3,2,0],[2,2,1,1],[1,3,3,2],[1,2,0,0]],[[2,2,2,0],[2,2,1,1],[1,3,3,2],[1,2,0,0]],[[1,2,2,0],[3,2,1,1],[1,3,3,2],[1,1,1,0]],[[1,2,3,0],[2,2,1,1],[1,3,3,2],[1,1,1,0]],[[1,3,2,0],[2,2,1,1],[1,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,2,1,1],[1,3,3,2],[1,1,1,0]],[[1,2,2,0],[3,2,1,1],[1,3,3,2],[1,1,0,1]],[[1,2,3,0],[2,2,1,1],[1,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,2,1,1],[1,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,2,1,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[3,2,1,1],[1,3,3,2],[1,0,2,0]],[[1,2,3,0],[2,2,1,1],[1,3,3,2],[1,0,2,0]],[[1,3,2,0],[2,2,1,1],[1,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,2,1,1],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[3,2,1,1],[1,3,3,2],[1,0,1,1]],[[1,2,3,0],[2,2,1,1],[1,3,3,2],[1,0,1,1]],[[1,3,2,0],[2,2,1,1],[1,3,3,2],[1,0,1,1]],[[2,2,2,0],[2,2,1,1],[1,3,3,2],[1,0,1,1]],[[1,2,2,0],[3,2,1,1],[1,3,3,2],[0,2,1,0]],[[1,2,3,0],[2,2,1,1],[1,3,3,2],[0,2,1,0]],[[1,3,2,0],[2,2,1,1],[1,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,2,1,1],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[3,2,1,1],[1,3,3,2],[0,2,0,1]],[[1,2,3,0],[2,2,1,1],[1,3,3,2],[0,2,0,1]],[[1,3,2,0],[2,2,1,1],[1,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,2,1,1],[1,3,3,2],[0,2,0,1]],[[1,2,2,0],[3,2,1,1],[1,3,3,2],[0,1,2,0]],[[1,2,3,0],[2,2,1,1],[1,3,3,2],[0,1,2,0]],[[1,3,2,0],[2,2,1,1],[1,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,2,1,1],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[3,2,1,1],[1,3,3,2],[0,1,1,1]],[[1,2,3,0],[2,2,1,1],[1,3,3,2],[0,1,1,1]],[[1,3,2,0],[2,2,1,1],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[3,2,2,1],[2,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,2,2,1],[3,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,2,2,1],[2,4,3,0],[0,1,2,0]],[[0,2,2,1],[3,2,2,1],[2,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,2,2,1],[3,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,4,3,0],[0,2,1,0]],[[0,2,2,1],[2,2,2,1],[2,3,3,0],[0,3,1,0]],[[2,2,2,0],[2,2,1,1],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[3,2,2,1],[2,3,3,0],[1,0,2,0]],[[0,2,2,1],[2,2,2,1],[3,3,3,0],[1,0,2,0]],[[0,2,2,1],[2,2,2,1],[2,4,3,0],[1,0,2,0]],[[0,2,2,1],[2,2,2,1],[2,3,3,0],[2,0,2,0]],[[0,2,2,1],[3,2,2,1],[2,3,3,0],[1,1,1,0]],[[0,2,2,1],[2,2,2,1],[3,3,3,0],[1,1,1,0]],[[0,2,2,1],[2,2,2,1],[2,4,3,0],[1,1,1,0]],[[0,2,2,1],[2,2,2,1],[2,3,3,0],[2,1,1,0]],[[1,2,2,0],[3,2,1,1],[1,3,3,1],[1,2,0,1]],[[1,3,2,0],[2,2,1,1],[1,3,3,1],[1,2,0,1]],[[2,2,2,0],[2,2,1,1],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[3,2,2,1],[2,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,2,2,1],[3,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,2,2,1],[2,4,3,0],[1,2,0,0]],[[0,2,2,1],[2,2,2,1],[2,3,3,0],[2,2,0,0]],[[1,2,2,0],[3,2,1,1],[1,3,3,1],[1,1,1,1]],[[1,2,3,0],[2,2,1,1],[1,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,2,1,1],[1,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,2,1,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,2,1,1],[1,3,3,1],[1,0,2,1]],[[1,2,3,0],[2,2,1,1],[1,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,2,1,1],[1,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,2,1,1],[1,3,3,1],[1,0,2,1]],[[1,2,2,0],[3,2,1,1],[1,3,3,1],[0,2,1,1]],[[1,2,3,0],[2,2,1,1],[1,3,3,1],[0,2,1,1]],[[1,3,2,0],[2,2,1,1],[1,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,2,1,1],[1,3,3,1],[0,2,1,1]],[[1,2,2,0],[3,2,1,1],[1,3,3,1],[0,1,2,1]],[[1,2,3,0],[2,2,1,1],[1,3,3,1],[0,1,2,1]],[[1,3,2,0],[2,2,1,1],[1,3,3,1],[0,1,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,2,2,1],[3,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,2,2,1],[2,4,3,1],[0,2,0,0]],[[2,2,2,0],[2,2,1,1],[1,3,3,1],[0,1,2,1]],[[1,2,2,0],[3,2,1,1],[1,3,3,0],[1,1,2,1]],[[1,3,2,0],[2,2,1,1],[1,3,3,0],[1,1,2,1]],[[2,2,2,0],[2,2,1,1],[1,3,3,0],[1,1,2,1]],[[1,2,2,0],[3,2,1,1],[1,3,3,0],[0,2,2,1]],[[1,3,2,0],[2,2,1,1],[1,3,3,0],[0,2,2,1]],[[2,2,2,0],[2,2,1,1],[1,3,3,0],[0,2,2,1]],[[0,2,2,1],[3,2,2,1],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,2,1],[3,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,2,1],[2,4,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,2,1],[2,3,3,1],[2,1,0,0]],[[1,2,2,0],[3,2,1,1],[1,3,2,2],[1,1,2,0]],[[1,2,3,0],[2,2,1,1],[1,3,2,2],[1,1,2,0]],[[1,3,2,0],[2,2,1,1],[1,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,2,1,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,2,1,1],[1,3,2,2],[0,2,2,0]],[[1,2,3,0],[2,2,1,1],[1,3,2,2],[0,2,2,0]],[[1,3,2,0],[2,2,1,1],[1,3,2,2],[0,2,2,0]],[[2,2,2,0],[2,2,1,1],[1,3,2,2],[0,2,2,0]],[[1,2,2,0],[3,2,1,1],[1,3,2,1],[1,1,2,1]],[[1,2,3,0],[2,2,1,1],[1,3,2,1],[1,1,2,1]],[[1,3,2,0],[2,2,1,1],[1,3,2,1],[1,1,2,1]],[[2,2,2,0],[2,2,1,1],[1,3,2,1],[1,1,2,1]],[[1,2,2,0],[3,2,1,1],[1,3,2,1],[0,2,2,1]],[[1,2,3,0],[2,2,1,1],[1,3,2,1],[0,2,2,1]],[[1,3,2,0],[2,2,1,1],[1,3,2,1],[0,2,2,1]],[[2,2,2,0],[2,2,1,1],[1,3,2,1],[0,2,2,1]],[[1,2,2,0],[3,2,1,1],[1,3,1,2],[1,1,2,1]],[[1,2,3,0],[2,2,1,1],[1,3,1,2],[1,1,2,1]],[[1,3,2,0],[2,2,1,1],[1,3,1,2],[1,1,2,1]],[[2,2,2,0],[2,2,1,1],[1,3,1,2],[1,1,2,1]],[[1,2,2,0],[3,2,1,1],[1,3,1,2],[0,2,2,1]],[[1,2,3,0],[2,2,1,1],[1,3,1,2],[0,2,2,1]],[[1,3,2,0],[2,2,1,1],[1,3,1,2],[0,2,2,1]],[[2,2,2,0],[2,2,1,1],[1,3,1,2],[0,2,2,1]],[[1,2,2,0],[3,2,1,1],[0,3,3,2],[1,2,1,0]],[[1,2,3,0],[2,2,1,1],[0,3,3,2],[1,2,1,0]],[[1,3,2,0],[2,2,1,1],[0,3,3,2],[1,2,1,0]],[[2,2,2,0],[2,2,1,1],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[3,2,1,1],[0,3,3,2],[1,2,0,1]],[[1,2,3,0],[2,2,1,1],[0,3,3,2],[1,2,0,1]],[[1,3,2,0],[2,2,1,1],[0,3,3,2],[1,2,0,1]],[[2,2,2,0],[2,2,1,1],[0,3,3,2],[1,2,0,1]],[[1,2,2,0],[3,2,1,1],[0,3,3,2],[1,1,2,0]],[[1,2,3,0],[2,2,1,1],[0,3,3,2],[1,1,2,0]],[[1,3,2,0],[2,2,1,1],[0,3,3,2],[1,1,2,0]],[[2,2,2,0],[2,2,1,1],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[3,2,1,1],[0,3,3,2],[1,1,1,1]],[[1,2,3,0],[2,2,1,1],[0,3,3,2],[1,1,1,1]],[[1,3,2,0],[2,2,1,1],[0,3,3,2],[1,1,1,1]],[[2,2,2,0],[2,2,1,1],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[3,2,1,1],[0,3,3,1],[1,2,1,1]],[[1,2,3,0],[2,2,1,1],[0,3,3,1],[1,2,1,1]],[[1,3,2,0],[2,2,1,1],[0,3,3,1],[1,2,1,1]],[[2,2,2,0],[2,2,1,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,0],[3,2,1,1],[0,3,3,1],[1,1,2,1]],[[1,2,3,0],[2,2,1,1],[0,3,3,1],[1,1,2,1]],[[1,3,2,0],[2,2,1,1],[0,3,3,1],[1,1,2,1]],[[2,2,2,0],[2,2,1,1],[0,3,3,1],[1,1,2,1]],[[1,2,2,0],[3,2,1,1],[0,3,3,0],[1,2,2,1]],[[1,3,2,0],[2,2,1,1],[0,3,3,0],[1,2,2,1]],[[2,2,2,0],[2,2,1,1],[0,3,3,0],[1,2,2,1]],[[1,2,2,0],[3,2,1,1],[0,3,2,2],[1,2,2,0]],[[1,2,3,0],[2,2,1,1],[0,3,2,2],[1,2,2,0]],[[1,3,2,0],[2,2,1,1],[0,3,2,2],[1,2,2,0]],[[2,2,2,0],[2,2,1,1],[0,3,2,2],[1,2,2,0]],[[1,2,2,0],[3,2,1,1],[0,3,2,1],[1,2,2,1]],[[1,2,3,0],[2,2,1,1],[0,3,2,1],[1,2,2,1]],[[1,3,2,0],[2,2,1,1],[0,3,2,1],[1,2,2,1]],[[2,2,2,0],[2,2,1,1],[0,3,2,1],[1,2,2,1]],[[1,2,2,0],[3,2,1,1],[0,3,1,2],[1,2,2,1]],[[1,2,3,0],[2,2,1,1],[0,3,1,2],[1,2,2,1]],[[1,3,2,0],[2,2,1,1],[0,3,1,2],[1,2,2,1]],[[2,2,2,0],[2,2,1,1],[0,3,1,2],[1,2,2,1]],[[1,2,2,0],[2,2,1,0],[2,2,3,2],[2,1,1,1]],[[1,2,2,0],[2,2,1,0],[3,2,3,2],[1,1,1,1]],[[1,2,2,0],[3,2,1,0],[2,2,3,2],[1,1,1,1]],[[1,3,2,0],[2,2,1,0],[2,2,3,2],[1,1,1,1]],[[2,2,2,0],[2,2,1,0],[2,2,3,2],[1,1,1,1]],[[1,2,2,0],[2,2,1,0],[2,2,3,2],[2,0,2,1]],[[1,2,2,0],[2,2,1,0],[3,2,3,2],[1,0,2,1]],[[1,2,2,0],[3,2,1,0],[2,2,3,2],[1,0,2,1]],[[1,3,2,0],[2,2,1,0],[2,2,3,2],[1,0,2,1]],[[2,2,2,0],[2,2,1,0],[2,2,3,2],[1,0,2,1]],[[0,3,2,1],[2,2,2,2],[0,0,2,2],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[0,0,2,2],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[0,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[0,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,2],[0,0,2,3],[1,2,2,1]],[[0,2,2,1],[2,2,2,2],[0,0,2,2],[1,2,3,1]],[[0,2,2,1],[2,2,2,2],[0,0,2,2],[1,2,2,2]],[[0,2,3,1],[2,2,2,2],[0,0,3,2],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[0,0,3,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[0,0,3,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[0,0,3,3],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[0,0,3,2],[0,2,2,2]],[[0,3,2,1],[2,2,2,2],[0,0,3,2],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[0,0,3,2],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[0,0,3,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[0,0,3,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,2],[0,0,3,3],[1,1,2,1]],[[0,2,2,1],[2,2,2,2],[0,0,3,2],[1,1,2,2]],[[0,3,2,1],[2,2,2,2],[0,0,3,2],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[0,0,3,2],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[0,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[0,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[0,0,3,3],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[0,0,3,2],[1,2,1,2]],[[0,3,2,1],[2,2,2,2],[0,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,2,2,2],[0,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,2,2,2],[0,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,3],[0,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,2],[0,0,3,3],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[0,1,1,2],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[0,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,2],[0,1,1,3],[1,2,2,1]],[[0,2,2,1],[2,2,2,2],[0,1,1,2],[2,2,2,1]],[[0,2,2,1],[2,2,2,2],[0,1,1,2],[1,3,2,1]],[[0,2,2,1],[2,2,2,2],[0,1,1,2],[1,2,3,1]],[[0,2,2,1],[2,2,2,2],[0,1,1,2],[1,2,2,2]],[[0,3,2,1],[2,2,2,2],[0,1,2,2],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[0,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[0,1,2,3],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[0,1,2,2],[1,2,1,2]],[[0,3,2,1],[2,2,2,2],[0,1,2,2],[1,2,2,0]],[[0,2,3,1],[2,2,2,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,2],[2,2,2,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,3],[0,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,2],[0,1,2,3],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[0,1,3,0],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[0,1,3,0],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[0,1,3,1],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[0,1,3,1],[1,2,1,1]],[[0,3,2,1],[2,2,2,2],[0,1,3,1],[1,2,2,0]],[[0,2,3,1],[2,2,2,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,2],[2,2,2,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,2,2,3],[0,1,3,1],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[0,1,3,2],[1,0,2,1]],[[0,2,3,1],[2,2,2,2],[0,1,3,2],[1,0,2,1]],[[0,2,2,2],[2,2,2,2],[0,1,3,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,3],[0,1,3,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[0,1,3,3],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[0,1,3,2],[1,0,2,2]],[[0,3,2,1],[2,2,2,2],[0,1,3,2],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[0,1,3,2],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[0,1,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[0,1,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[0,1,3,3],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[0,1,3,2],[1,1,1,2]],[[0,3,2,1],[2,2,2,2],[0,1,3,2],[1,1,2,0]],[[0,2,3,1],[2,2,2,2],[0,1,3,2],[1,1,2,0]],[[0,2,2,2],[2,2,2,2],[0,1,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,3],[0,1,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,0],[2,2,1,0],[3,2,3,2],[0,2,1,1]],[[1,2,2,0],[3,2,1,0],[2,2,3,2],[0,2,1,1]],[[1,3,2,0],[2,2,1,0],[2,2,3,2],[0,2,1,1]],[[2,2,2,0],[2,2,1,0],[2,2,3,2],[0,2,1,1]],[[1,2,2,0],[2,2,1,0],[3,2,3,2],[0,1,2,1]],[[1,2,2,0],[3,2,1,0],[2,2,3,2],[0,1,2,1]],[[1,3,2,0],[2,2,1,0],[2,2,3,2],[0,1,2,1]],[[0,3,2,1],[2,2,2,2],[0,2,0,2],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[0,2,0,2],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[0,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[0,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,2],[0,2,0,3],[1,2,2,1]],[[0,2,2,1],[2,2,2,2],[0,2,0,2],[2,2,2,1]],[[0,2,2,1],[2,2,2,2],[0,2,0,2],[1,3,2,1]],[[0,2,2,1],[2,2,2,2],[0,2,0,2],[1,2,3,1]],[[0,2,2,1],[2,2,2,2],[0,2,0,2],[1,2,2,2]],[[0,3,2,1],[2,2,2,2],[0,2,1,2],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[0,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,2],[0,2,1,3],[1,1,2,1]],[[0,2,2,1],[2,2,2,2],[0,2,1,2],[1,1,3,1]],[[0,2,2,1],[2,2,2,2],[0,2,1,2],[1,1,2,2]],[[0,3,2,1],[2,2,2,2],[0,2,2,2],[1,0,2,1]],[[0,2,3,1],[2,2,2,2],[0,2,2,2],[1,0,2,1]],[[0,2,2,2],[2,2,2,2],[0,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,3],[0,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[0,2,2,3],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[0,2,2,2],[1,0,2,2]],[[0,3,2,1],[2,2,2,2],[0,2,2,2],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[0,2,2,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[0,2,2,3],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[0,2,2,2],[1,1,1,2]],[[0,3,2,1],[2,2,2,2],[0,2,2,2],[1,1,2,0]],[[0,2,3,1],[2,2,2,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,2],[2,2,2,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,3],[0,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,2],[0,2,2,3],[1,1,2,0]],[[0,3,2,1],[2,2,2,2],[0,2,2,2],[1,2,0,1]],[[0,2,3,1],[2,2,2,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,2],[2,2,2,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,3],[0,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,2],[0,2,2,3],[1,2,0,1]],[[0,2,2,1],[2,2,2,2],[0,2,2,2],[1,2,0,2]],[[0,3,2,1],[2,2,2,2],[0,2,2,2],[1,2,1,0]],[[0,2,3,1],[2,2,2,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,2],[2,2,2,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,3],[0,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,2],[0,2,2,3],[1,2,1,0]],[[2,2,2,0],[2,2,1,0],[2,2,3,2],[0,1,2,1]],[[0,3,2,1],[2,2,2,2],[0,2,3,0],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[0,2,3,0],[1,1,2,1]],[[0,3,2,1],[2,2,2,2],[0,2,3,0],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[0,2,3,0],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[0,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[0,2,3,0],[1,2,1,1]],[[0,3,2,1],[2,2,2,2],[0,2,3,1],[1,0,2,1]],[[0,2,3,1],[2,2,2,2],[0,2,3,1],[1,0,2,1]],[[0,2,2,2],[2,2,2,2],[0,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,2,3],[0,2,3,1],[1,0,2,1]],[[0,3,2,1],[2,2,2,2],[0,2,3,1],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[0,2,3,1],[1,1,1,1]],[[0,3,2,1],[2,2,2,2],[0,2,3,1],[1,1,2,0]],[[0,2,3,1],[2,2,2,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,2],[2,2,2,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,1],[2,2,2,3],[0,2,3,1],[1,1,2,0]],[[0,3,2,1],[2,2,2,2],[0,2,3,1],[1,2,0,1]],[[0,2,3,1],[2,2,2,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,2],[2,2,2,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,2,3],[0,2,3,1],[1,2,0,1]],[[0,3,2,1],[2,2,2,2],[0,2,3,1],[1,2,1,0]],[[0,2,3,1],[2,2,2,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,2],[2,2,2,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,2,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[2,2,1,0],[2,2,2,2],[2,1,2,1]],[[1,2,2,0],[2,2,1,0],[3,2,2,2],[1,1,2,1]],[[1,2,2,0],[3,2,1,0],[2,2,2,2],[1,1,2,1]],[[1,3,2,0],[2,2,1,0],[2,2,2,2],[1,1,2,1]],[[2,2,2,0],[2,2,1,0],[2,2,2,2],[1,1,2,1]],[[1,2,2,0],[2,2,1,0],[3,2,2,2],[0,2,2,1]],[[1,2,2,0],[3,2,1,0],[2,2,2,2],[0,2,2,1]],[[1,3,2,0],[2,2,1,0],[2,2,2,2],[0,2,2,1]],[[2,2,2,0],[2,2,1,0],[2,2,2,2],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[0,2,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,2,2],[0,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,3],[0,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[0,2,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[0,2,3,2],[0,0,2,2]],[[0,2,3,1],[2,2,2,2],[0,2,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[0,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[0,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[0,2,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[0,2,3,2],[0,1,1,2]],[[0,2,3,1],[2,2,2,2],[0,2,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[0,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[0,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,2],[0,2,3,3],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[0,2,3,2],[1,1,0,1]],[[0,2,3,1],[2,2,2,2],[0,2,3,2],[1,1,0,1]],[[0,2,2,2],[2,2,2,2],[0,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,3],[0,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,0],[2,2,1,0],[2,1,3,2],[1,3,1,1]],[[1,2,2,0],[2,2,1,0],[2,1,3,2],[2,2,1,1]],[[1,2,2,0],[2,2,1,0],[3,1,3,2],[1,2,1,1]],[[1,2,2,0],[3,2,1,0],[2,1,3,2],[1,2,1,1]],[[1,3,2,0],[2,2,1,0],[2,1,3,2],[1,2,1,1]],[[2,2,2,0],[2,2,1,0],[2,1,3,2],[1,2,1,1]],[[1,2,2,0],[2,2,1,0],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[2,2,1,0],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[2,2,1,0],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[2,2,1,0],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[2,2,1,0],[3,1,2,2],[1,2,2,1]],[[1,2,2,0],[3,2,1,0],[2,1,2,2],[1,2,2,1]],[[1,3,2,0],[2,2,1,0],[2,1,2,2],[1,2,2,1]],[[2,2,2,0],[2,2,1,0],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[2,2,1,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[2,2,1,0],[2,0,3,2],[1,2,3,1]],[[1,2,2,0],[2,2,1,0],[2,0,3,2],[1,3,2,1]],[[1,2,2,0],[2,2,1,0],[2,0,3,2],[2,2,2,1]],[[1,2,2,0],[2,2,1,0],[2,0,4,2],[1,2,2,1]],[[1,2,2,0],[2,2,1,0],[3,0,3,2],[1,2,2,1]],[[1,2,2,0],[3,2,1,0],[2,0,3,2],[1,2,2,1]],[[1,3,2,0],[2,2,1,0],[2,0,3,2],[1,2,2,1]],[[2,2,2,0],[2,2,1,0],[2,0,3,2],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[0,3,0,1],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[0,3,0,1],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[0,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[0,3,0,1],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[0,3,0,2],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[0,3,0,2],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[0,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[0,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,2],[0,3,0,3],[1,1,2,1]],[[0,2,2,1],[2,2,2,2],[0,3,0,2],[1,1,3,1]],[[0,2,2,1],[2,2,2,2],[0,3,0,2],[1,1,2,2]],[[0,3,2,1],[2,2,2,2],[0,3,0,2],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[0,3,0,2],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[0,3,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[0,3,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[0,3,0,3],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[0,3,0,2],[1,2,1,2]],[[0,3,2,1],[2,2,2,2],[0,3,0,2],[1,2,2,0]],[[0,2,3,1],[2,2,2,2],[0,3,0,2],[1,2,2,0]],[[0,2,2,2],[2,2,2,2],[0,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,3],[0,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,2],[0,3,0,3],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[0,3,1,0],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[0,3,1,0],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[0,3,1,0],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[0,3,1,1],[1,2,2,0]],[[0,2,3,1],[2,2,2,2],[0,3,1,1],[1,2,2,0]],[[0,2,2,2],[2,2,2,2],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,2,3],[0,3,1,1],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[0,3,1,2],[0,1,2,1]],[[0,2,3,1],[2,2,2,2],[0,3,1,2],[0,1,2,1]],[[0,2,2,2],[2,2,2,2],[0,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,3],[0,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[0,3,1,3],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[0,3,1,2],[0,1,3,1]],[[0,2,2,1],[2,2,2,2],[0,3,1,2],[0,1,2,2]],[[0,3,2,1],[2,2,2,2],[0,3,1,2],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[0,3,1,2],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[0,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[0,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[0,3,1,3],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[0,3,1,2],[1,1,1,2]],[[0,3,2,1],[2,2,2,2],[0,3,1,2],[1,1,2,0]],[[0,2,3,1],[2,2,2,2],[0,3,1,2],[1,1,2,0]],[[0,2,2,2],[2,2,2,2],[0,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,3],[0,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,2],[0,3,1,3],[1,1,2,0]],[[0,3,2,1],[2,2,2,2],[0,3,1,2],[1,2,0,1]],[[0,2,3,1],[2,2,2,2],[0,3,1,2],[1,2,0,1]],[[0,2,2,2],[2,2,2,2],[0,3,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,3],[0,3,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,2],[0,3,1,3],[1,2,0,1]],[[0,2,2,1],[2,2,2,2],[0,3,1,2],[1,2,0,2]],[[0,3,2,1],[2,2,2,2],[0,3,1,2],[1,2,1,0]],[[0,2,3,1],[2,2,2,2],[0,3,1,2],[1,2,1,0]],[[0,2,2,2],[2,2,2,2],[0,3,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,3],[0,3,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,2],[0,3,1,3],[1,2,1,0]],[[1,2,2,0],[3,2,1,0],[1,3,3,2],[1,1,1,1]],[[1,3,2,0],[2,2,1,0],[1,3,3,2],[1,1,1,1]],[[2,2,2,0],[2,2,1,0],[1,3,3,2],[1,1,1,1]],[[0,3,2,1],[2,2,2,2],[0,3,2,0],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[0,3,2,0],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[0,3,2,0],[1,1,2,1]],[[0,3,2,1],[2,2,2,2],[0,3,2,0],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[0,3,2,0],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[0,3,2,0],[1,2,1,1]],[[0,3,2,1],[2,2,2,2],[0,3,2,1],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[0,3,2,1],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[0,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[0,3,2,1],[1,1,1,1]],[[0,3,2,1],[2,2,2,2],[0,3,2,1],[1,1,2,0]],[[0,2,3,1],[2,2,2,2],[0,3,2,1],[1,1,2,0]],[[0,2,2,2],[2,2,2,2],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,2,2,3],[0,3,2,1],[1,1,2,0]],[[0,3,2,1],[2,2,2,2],[0,3,2,1],[1,2,0,1]],[[0,2,3,1],[2,2,2,2],[0,3,2,1],[1,2,0,1]],[[0,2,2,2],[2,2,2,2],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,2,3],[0,3,2,1],[1,2,0,1]],[[0,3,2,1],[2,2,2,2],[0,3,2,1],[1,2,1,0]],[[0,2,3,1],[2,2,2,2],[0,3,2,1],[1,2,1,0]],[[0,2,2,2],[2,2,2,2],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,2,3],[0,3,2,1],[1,2,1,0]],[[1,2,2,0],[3,2,1,0],[1,3,3,2],[1,0,2,1]],[[1,3,2,0],[2,2,1,0],[1,3,3,2],[1,0,2,1]],[[2,2,2,0],[2,2,1,0],[1,3,3,2],[1,0,2,1]],[[1,2,2,0],[3,2,1,0],[1,3,3,2],[0,2,1,1]],[[1,3,2,0],[2,2,1,0],[1,3,3,2],[0,2,1,1]],[[2,2,2,0],[2,2,1,0],[1,3,3,2],[0,2,1,1]],[[0,3,2,1],[2,2,2,2],[0,3,2,2],[0,0,2,1]],[[0,2,3,1],[2,2,2,2],[0,3,2,2],[0,0,2,1]],[[0,2,2,2],[2,2,2,2],[0,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,3],[0,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[0,3,2,3],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[0,3,2,2],[0,0,2,2]],[[0,3,2,1],[2,2,2,2],[0,3,2,2],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[0,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[0,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[0,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[0,3,2,3],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[0,3,2,2],[0,1,1,2]],[[0,3,2,1],[2,2,2,2],[0,3,2,2],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[0,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[0,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[0,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,2],[0,3,2,3],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[0,3,2,2],[0,2,0,1]],[[0,2,3,1],[2,2,2,2],[0,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,2,2,2],[0,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,3],[0,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[0,3,2,3],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[0,3,2,2],[0,2,0,2]],[[0,3,2,1],[2,2,2,2],[0,3,2,2],[0,2,1,0]],[[0,2,3,1],[2,2,2,2],[0,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,2,2,2],[0,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,3],[0,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,0],[3,2,1,0],[1,3,3,2],[0,1,2,1]],[[1,3,2,0],[2,2,1,0],[1,3,3,2],[0,1,2,1]],[[2,2,2,0],[2,2,1,0],[1,3,3,2],[0,1,2,1]],[[1,2,2,0],[3,2,1,0],[1,3,2,2],[1,1,2,1]],[[1,3,2,0],[2,2,1,0],[1,3,2,2],[1,1,2,1]],[[2,2,2,0],[2,2,1,0],[1,3,2,2],[1,1,2,1]],[[1,2,2,0],[3,2,1,0],[1,3,2,2],[0,2,2,1]],[[1,3,2,0],[2,2,1,0],[1,3,2,2],[0,2,2,1]],[[2,2,2,0],[2,2,1,0],[1,3,2,2],[0,2,2,1]],[[1,2,2,0],[3,2,1,0],[0,3,3,2],[1,2,1,1]],[[1,3,2,0],[2,2,1,0],[0,3,3,2],[1,2,1,1]],[[2,2,2,0],[2,2,1,0],[0,3,3,2],[1,2,1,1]],[[1,2,2,0],[3,2,1,0],[0,3,3,2],[1,1,2,1]],[[1,3,2,0],[2,2,1,0],[0,3,3,2],[1,1,2,1]],[[2,2,2,0],[2,2,1,0],[0,3,3,2],[1,1,2,1]],[[1,2,2,0],[3,2,1,0],[0,3,2,2],[1,2,2,1]],[[1,3,2,0],[2,2,1,0],[0,3,2,2],[1,2,2,1]],[[2,2,2,0],[2,2,1,0],[0,3,2,2],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[0,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,2,2,2],[0,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,2,2,2],[0,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,2,3],[0,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,2,2,2],[0,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[0,3,3,0],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[0,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[0,3,3,0],[0,2,1,1]],[[0,3,2,1],[2,2,2,2],[0,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,2,2,2],[0,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,2,2,2],[0,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,2,2,3],[0,3,3,1],[0,0,2,1]],[[0,3,2,1],[2,2,2,2],[0,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[0,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[0,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[0,3,3,1],[0,1,1,1]],[[0,3,2,1],[2,2,2,2],[0,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[0,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[0,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[0,3,3,1],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[0,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,2,2,2],[0,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,2,2,2],[0,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,2,3],[0,3,3,1],[0,2,0,1]],[[0,3,2,1],[2,2,2,2],[0,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,2,2,2],[0,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,2,2,2],[0,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,2,3],[0,3,3,1],[0,2,1,0]],[[0,3,2,1],[2,2,2,2],[0,3,3,1],[1,2,0,0]],[[0,2,3,1],[2,2,2,2],[0,3,3,1],[1,2,0,0]],[[0,2,2,2],[2,2,2,2],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,2,2,3],[0,3,3,1],[1,2,0,0]],[[0,3,2,1],[2,2,2,2],[0,3,3,2],[0,1,0,1]],[[0,2,3,1],[2,2,2,2],[0,3,3,2],[0,1,0,1]],[[0,2,2,2],[2,2,2,2],[0,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,2,2,3],[0,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,2,2,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,0],[2,2,0,2],[3,3,3,2],[1,0,1,0]],[[1,2,2,0],[3,2,0,2],[2,3,3,2],[1,0,1,0]],[[1,2,3,0],[2,2,0,2],[2,3,3,2],[1,0,1,0]],[[1,3,2,0],[2,2,0,2],[2,3,3,2],[1,0,1,0]],[[2,2,2,0],[2,2,0,2],[2,3,3,2],[1,0,1,0]],[[1,2,2,0],[2,2,0,2],[3,3,3,2],[1,0,0,1]],[[1,2,2,0],[3,2,0,2],[2,3,3,2],[1,0,0,1]],[[1,2,3,0],[2,2,0,2],[2,3,3,2],[1,0,0,1]],[[1,3,2,0],[2,2,0,2],[2,3,3,2],[1,0,0,1]],[[2,2,2,0],[2,2,0,2],[2,3,3,2],[1,0,0,1]],[[1,2,2,0],[2,2,0,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[2,2,0,2],[2,4,3,1],[1,2,0,0]],[[1,2,2,0],[2,2,0,2],[3,3,3,1],[1,2,0,0]],[[1,2,2,0],[3,2,0,2],[2,3,3,1],[1,2,0,0]],[[1,3,2,0],[2,2,0,2],[2,3,3,1],[1,2,0,0]],[[2,2,2,0],[2,2,0,2],[2,3,3,1],[1,2,0,0]],[[1,2,2,0],[2,2,0,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,0],[2,2,0,2],[2,4,3,1],[1,1,1,0]],[[1,2,2,0],[2,2,0,2],[3,3,3,1],[1,1,1,0]],[[1,2,2,0],[3,2,0,2],[2,3,3,1],[1,1,1,0]],[[1,3,2,0],[2,2,0,2],[2,3,3,1],[1,1,1,0]],[[2,2,2,0],[2,2,0,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,0],[2,2,0,2],[2,3,3,1],[2,1,0,1]],[[1,2,2,0],[2,2,0,2],[2,4,3,1],[1,1,0,1]],[[1,2,2,0],[2,2,0,2],[3,3,3,1],[1,1,0,1]],[[1,2,2,0],[3,2,0,2],[2,3,3,1],[1,1,0,1]],[[1,3,2,0],[2,2,0,2],[2,3,3,1],[1,1,0,1]],[[2,2,2,0],[2,2,0,2],[2,3,3,1],[1,1,0,1]],[[0,3,2,1],[2,2,2,2],[1,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[1,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,0,1,3],[1,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,0,1,2],[2,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,0,1,2],[1,3,2,1]],[[0,2,2,1],[2,2,2,2],[1,0,1,2],[1,2,3,1]],[[0,2,2,1],[2,2,2,2],[1,0,1,2],[1,2,2,2]],[[0,3,2,1],[2,2,2,2],[1,0,2,2],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[1,0,2,2],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[1,0,2,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[1,0,2,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,0,2,3],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,0,2,2],[0,2,3,1]],[[0,2,2,1],[2,2,2,2],[1,0,2,2],[0,2,2,2]],[[0,3,2,1],[2,2,2,2],[1,0,2,2],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[1,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[1,0,2,3],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[1,0,2,2],[1,2,1,2]],[[0,3,2,1],[2,2,2,2],[1,0,2,2],[1,2,2,0]],[[0,2,3,1],[2,2,2,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,2,2,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,3],[1,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,2],[1,0,2,3],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[1,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[1,0,3,0],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[1,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[1,0,3,1],[1,2,1,1]],[[0,3,2,1],[2,2,2,2],[1,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,2,2,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,2,2,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,2,2,3],[1,0,3,1],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[1,0,3,2],[0,1,2,1]],[[0,2,3,1],[2,2,2,2],[1,0,3,2],[0,1,2,1]],[[0,2,2,2],[2,2,2,2],[1,0,3,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,3],[1,0,3,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[1,0,3,3],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[1,0,3,2],[0,1,2,2]],[[0,3,2,1],[2,2,2,2],[1,0,3,2],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[1,0,3,2],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[1,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[1,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,2],[1,0,3,3],[0,2,1,1]],[[0,2,2,1],[2,2,2,2],[1,0,3,2],[0,2,1,2]],[[0,3,2,1],[2,2,2,2],[1,0,3,2],[0,2,2,0]],[[0,2,3,1],[2,2,2,2],[1,0,3,2],[0,2,2,0]],[[0,2,2,2],[2,2,2,2],[1,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,3],[1,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,0],[2,2,0,2],[2,3,3,1],[2,0,2,0]],[[1,2,2,0],[2,2,0,2],[2,4,3,1],[1,0,2,0]],[[1,2,2,0],[2,2,0,2],[3,3,3,1],[1,0,2,0]],[[1,2,2,0],[3,2,0,2],[2,3,3,1],[1,0,2,0]],[[1,3,2,0],[2,2,0,2],[2,3,3,1],[1,0,2,0]],[[2,2,2,0],[2,2,0,2],[2,3,3,1],[1,0,2,0]],[[0,3,2,1],[2,2,2,2],[1,1,0,2],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[1,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,1,0,3],[1,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,1,0,2],[2,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,1,0,2],[1,3,2,1]],[[0,2,2,1],[2,2,2,2],[1,1,0,2],[1,2,3,1]],[[0,2,2,1],[2,2,2,2],[1,1,0,2],[1,2,2,2]],[[0,3,2,1],[2,2,2,2],[1,1,1,2],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[1,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,1,1,3],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,1,1,2],[0,3,2,1]],[[0,2,2,1],[2,2,2,2],[1,1,1,2],[0,2,3,1]],[[0,2,2,1],[2,2,2,2],[1,1,1,2],[0,2,2,2]],[[0,3,2,1],[2,2,2,2],[1,1,2,2],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[1,1,2,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,2],[1,1,2,3],[0,2,1,1]],[[0,2,2,1],[2,2,2,2],[1,1,2,2],[0,2,1,2]],[[0,3,2,1],[2,2,2,2],[1,1,2,2],[0,2,2,0]],[[0,2,3,1],[2,2,2,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,2],[2,2,2,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,3],[1,1,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,2],[1,1,2,3],[0,2,2,0]],[[0,3,2,1],[2,2,2,2],[1,1,3,0],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[1,1,3,0],[0,2,2,1]],[[0,3,2,1],[2,2,2,2],[1,1,3,1],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[1,1,3,1],[0,2,1,1]],[[0,3,2,1],[2,2,2,2],[1,1,3,1],[0,2,2,0]],[[0,2,3,1],[2,2,2,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,2],[2,2,2,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,1],[2,2,2,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[2,2,0,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[2,2,0,2],[2,4,3,1],[0,2,1,0]],[[1,2,2,0],[2,2,0,2],[3,3,3,1],[0,2,1,0]],[[1,2,2,0],[3,2,0,2],[2,3,3,1],[0,2,1,0]],[[1,3,2,0],[2,2,0,2],[2,3,3,1],[0,2,1,0]],[[2,2,2,0],[2,2,0,2],[2,3,3,1],[0,2,1,0]],[[0,3,2,1],[2,2,2,2],[1,1,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,2,2],[1,1,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,2,2],[1,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,3],[1,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[1,1,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[1,1,3,2],[0,0,2,2]],[[0,3,2,1],[2,2,2,2],[1,1,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[1,1,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[1,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[1,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[1,1,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[1,1,3,2],[0,1,1,2]],[[0,3,2,1],[2,2,2,2],[1,1,3,2],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[1,1,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[1,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[1,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,0],[2,2,0,2],[2,4,3,1],[0,2,0,1]],[[1,2,2,0],[2,2,0,2],[3,3,3,1],[0,2,0,1]],[[1,2,2,0],[3,2,0,2],[2,3,3,1],[0,2,0,1]],[[1,3,2,0],[2,2,0,2],[2,3,3,1],[0,2,0,1]],[[2,2,2,0],[2,2,0,2],[2,3,3,1],[0,2,0,1]],[[0,3,2,1],[2,2,2,2],[1,1,3,2],[1,0,1,1]],[[0,2,3,1],[2,2,2,2],[1,1,3,2],[1,0,1,1]],[[0,2,2,2],[2,2,2,2],[1,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,3],[1,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[1,1,3,3],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[1,1,3,2],[1,0,1,2]],[[0,3,2,1],[2,2,2,2],[1,1,3,2],[1,0,2,0]],[[0,2,3,1],[2,2,2,2],[1,1,3,2],[1,0,2,0]],[[0,2,2,2],[2,2,2,2],[1,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,3],[1,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,0],[2,2,0,2],[2,4,3,1],[0,1,2,0]],[[1,2,2,0],[2,2,0,2],[3,3,3,1],[0,1,2,0]],[[1,2,2,0],[3,2,0,2],[2,3,3,1],[0,1,2,0]],[[1,3,2,0],[2,2,0,2],[2,3,3,1],[0,1,2,0]],[[2,2,2,0],[2,2,0,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,0],[2,2,0,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,0],[2,2,0,2],[2,4,3,0],[1,2,0,1]],[[1,2,2,0],[2,2,0,2],[3,3,3,0],[1,2,0,1]],[[1,2,2,0],[3,2,0,2],[2,3,3,0],[1,2,0,1]],[[1,3,2,0],[2,2,0,2],[2,3,3,0],[1,2,0,1]],[[2,2,2,0],[2,2,0,2],[2,3,3,0],[1,2,0,1]],[[1,2,2,0],[2,2,0,2],[2,3,3,0],[2,1,1,1]],[[1,2,2,0],[2,2,0,2],[2,4,3,0],[1,1,1,1]],[[1,2,2,0],[2,2,0,2],[3,3,3,0],[1,1,1,1]],[[0,3,2,1],[2,2,2,2],[1,2,0,2],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[1,2,0,2],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[1,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[1,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,2,0,3],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[1,2,0,2],[0,3,2,1]],[[0,2,2,1],[2,2,2,2],[1,2,0,2],[0,2,3,1]],[[0,2,2,1],[2,2,2,2],[1,2,0,2],[0,2,2,2]],[[0,3,2,1],[2,2,2,2],[1,2,1,2],[0,1,2,1]],[[0,2,3,1],[2,2,2,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,2],[2,2,2,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,3],[1,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[1,2,1,3],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[1,2,1,2],[0,1,3,1]],[[0,2,2,1],[2,2,2,2],[1,2,1,2],[0,1,2,2]],[[0,3,2,1],[2,2,2,2],[1,2,1,2],[1,0,2,1]],[[0,2,3,1],[2,2,2,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,2],[2,2,2,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,3],[1,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[1,2,1,3],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[1,2,1,2],[1,0,3,1]],[[0,2,2,1],[2,2,2,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,0],[3,2,0,2],[2,3,3,0],[1,1,1,1]],[[1,3,2,0],[2,2,0,2],[2,3,3,0],[1,1,1,1]],[[2,2,2,0],[2,2,0,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,0],[2,2,0,2],[2,3,3,0],[2,0,2,1]],[[1,2,2,0],[2,2,0,2],[2,4,3,0],[1,0,2,1]],[[1,2,2,0],[2,2,0,2],[3,3,3,0],[1,0,2,1]],[[1,2,2,0],[3,2,0,2],[2,3,3,0],[1,0,2,1]],[[1,3,2,0],[2,2,0,2],[2,3,3,0],[1,0,2,1]],[[2,2,2,0],[2,2,0,2],[2,3,3,0],[1,0,2,1]],[[0,3,2,1],[2,2,2,2],[1,2,2,2],[0,0,2,1]],[[0,2,3,1],[2,2,2,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,2],[2,2,2,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,3],[1,2,2,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[1,2,2,3],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[1,2,2,2],[0,0,2,2]],[[0,3,2,1],[2,2,2,2],[1,2,2,2],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[1,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[1,2,2,3],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[1,2,2,2],[0,1,1,2]],[[0,3,2,1],[2,2,2,2],[1,2,2,2],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[1,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,2],[1,2,2,3],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[1,2,2,2],[0,2,0,1]],[[0,2,3,1],[2,2,2,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,2],[2,2,2,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,3],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[1,2,2,3],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[1,2,2,2],[0,2,0,2]],[[0,3,2,1],[2,2,2,2],[1,2,2,2],[0,2,1,0]],[[0,2,3,1],[2,2,2,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,2],[2,2,2,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,3],[1,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,0],[2,2,0,2],[2,3,3,0],[0,3,1,1]],[[0,3,2,1],[2,2,2,2],[1,2,2,2],[1,0,1,1]],[[0,2,3,1],[2,2,2,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,2],[2,2,2,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,3],[1,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[1,2,2,3],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[1,2,2,2],[1,0,1,2]],[[0,3,2,1],[2,2,2,2],[1,2,2,2],[1,0,2,0]],[[0,2,3,1],[2,2,2,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,2],[2,2,2,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,3],[1,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,2],[1,2,2,3],[1,0,2,0]],[[0,3,2,1],[2,2,2,2],[1,2,2,2],[1,1,0,1]],[[0,2,3,1],[2,2,2,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,2],[2,2,2,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,3],[1,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[1,2,2,3],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[1,2,2,2],[1,1,0,2]],[[0,3,2,1],[2,2,2,2],[1,2,2,2],[1,1,1,0]],[[0,2,3,1],[2,2,2,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,2],[2,2,2,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,3],[1,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,0],[2,2,0,2],[2,4,3,0],[0,2,1,1]],[[1,2,2,0],[2,2,0,2],[3,3,3,0],[0,2,1,1]],[[1,2,2,0],[3,2,0,2],[2,3,3,0],[0,2,1,1]],[[1,3,2,0],[2,2,0,2],[2,3,3,0],[0,2,1,1]],[[2,2,2,0],[2,2,0,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,0],[2,2,0,2],[2,4,3,0],[0,1,2,1]],[[1,2,2,0],[2,2,0,2],[3,3,3,0],[0,1,2,1]],[[1,2,2,0],[3,2,0,2],[2,3,3,0],[0,1,2,1]],[[1,3,2,0],[2,2,0,2],[2,3,3,0],[0,1,2,1]],[[2,2,2,0],[2,2,0,2],[2,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,2,2,2],[1,2,3,0],[0,1,2,1]],[[0,2,3,1],[2,2,2,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,2],[2,2,2,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,2,3],[1,2,3,0],[0,1,2,1]],[[0,3,2,1],[2,2,2,2],[1,2,3,0],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[1,2,3,0],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[1,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[1,2,3,0],[0,2,1,1]],[[0,3,2,1],[2,2,2,2],[1,2,3,0],[1,0,2,1]],[[0,2,3,1],[2,2,2,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,2],[2,2,2,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,2,3],[1,2,3,0],[1,0,2,1]],[[0,3,2,1],[2,2,2,2],[1,2,3,0],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[1,2,3,0],[1,1,1,1]],[[0,3,2,1],[2,2,2,2],[1,2,3,1],[0,0,2,1]],[[0,2,3,1],[2,2,2,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,2],[2,2,2,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,1],[2,2,2,3],[1,2,3,1],[0,0,2,1]],[[0,3,2,1],[2,2,2,2],[1,2,3,1],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[1,2,3,1],[0,1,1,1]],[[0,3,2,1],[2,2,2,2],[1,2,3,1],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[1,2,3,1],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[1,2,3,1],[0,2,0,1]],[[0,2,3,1],[2,2,2,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,2],[2,2,2,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,2,3],[1,2,3,1],[0,2,0,1]],[[0,3,2,1],[2,2,2,2],[1,2,3,1],[0,2,1,0]],[[0,2,3,1],[2,2,2,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,2],[2,2,2,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,2,3],[1,2,3,1],[0,2,1,0]],[[0,3,2,1],[2,2,2,2],[1,2,3,1],[1,0,1,1]],[[0,2,3,1],[2,2,2,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,2],[2,2,2,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,2,3],[1,2,3,1],[1,0,1,1]],[[0,3,2,1],[2,2,2,2],[1,2,3,1],[1,0,2,0]],[[0,2,3,1],[2,2,2,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,2],[2,2,2,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,2,3],[1,2,3,1],[1,0,2,0]],[[0,3,2,1],[2,2,2,2],[1,2,3,1],[1,1,0,1]],[[0,2,3,1],[2,2,2,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,2],[2,2,2,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,2,3],[1,2,3,1],[1,1,0,1]],[[0,3,2,1],[2,2,2,2],[1,2,3,1],[1,1,1,0]],[[0,2,3,1],[2,2,2,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,2],[2,2,2,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,2,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,2,0,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[2,2,0,2],[2,4,2,1],[1,1,2,0]],[[1,2,2,0],[2,2,0,2],[3,3,2,1],[1,1,2,0]],[[1,2,2,0],[3,2,0,2],[2,3,2,1],[1,1,2,0]],[[1,3,2,0],[2,2,0,2],[2,3,2,1],[1,1,2,0]],[[2,2,2,0],[2,2,0,2],[2,3,2,1],[1,1,2,0]],[[1,2,2,0],[2,2,0,2],[2,3,2,1],[0,3,2,0]],[[1,2,2,0],[2,2,0,2],[2,4,2,1],[0,2,2,0]],[[1,2,2,0],[2,2,0,2],[3,3,2,1],[0,2,2,0]],[[1,2,2,0],[3,2,0,2],[2,3,2,1],[0,2,2,0]],[[1,3,2,0],[2,2,0,2],[2,3,2,1],[0,2,2,0]],[[2,2,2,0],[2,2,0,2],[2,3,2,1],[0,2,2,0]],[[0,3,2,1],[2,2,2,2],[1,2,3,2],[0,1,0,1]],[[0,2,3,1],[2,2,2,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,2],[2,2,2,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,1],[2,2,2,3],[1,2,3,2],[0,1,0,1]],[[0,2,2,1],[2,2,2,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,0],[2,2,0,2],[2,3,2,0],[2,1,2,1]],[[1,2,2,0],[2,2,0,2],[2,4,2,0],[1,1,2,1]],[[1,2,2,0],[2,2,0,2],[3,3,2,0],[1,1,2,1]],[[1,2,2,0],[3,2,0,2],[2,3,2,0],[1,1,2,1]],[[1,3,2,0],[2,2,0,2],[2,3,2,0],[1,1,2,1]],[[2,2,2,0],[2,2,0,2],[2,3,2,0],[1,1,2,1]],[[1,2,2,0],[2,2,0,2],[2,3,2,0],[0,2,3,1]],[[1,2,2,0],[2,2,0,2],[2,3,2,0],[0,3,2,1]],[[1,2,2,0],[2,2,0,2],[2,4,2,0],[0,2,2,1]],[[1,2,2,0],[2,2,0,2],[3,3,2,0],[0,2,2,1]],[[1,2,2,0],[3,2,0,2],[2,3,2,0],[0,2,2,1]],[[1,3,2,0],[2,2,0,2],[2,3,2,0],[0,2,2,1]],[[2,2,2,0],[2,2,0,2],[2,3,2,0],[0,2,2,1]],[[0,3,2,1],[2,2,2,2],[1,2,3,2],[1,0,0,1]],[[0,2,3,1],[2,2,2,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,2],[2,2,2,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,1],[2,2,2,3],[1,2,3,2],[1,0,0,1]],[[0,2,2,1],[2,2,2,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,0],[2,2,0,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,0],[2,2,0,2],[2,3,1,1],[2,2,2,0]],[[1,2,2,0],[2,2,0,2],[3,3,1,1],[1,2,2,0]],[[1,2,2,0],[3,2,0,2],[2,3,1,1],[1,2,2,0]],[[1,3,2,0],[2,2,0,2],[2,3,1,1],[1,2,2,0]],[[2,2,2,0],[2,2,0,2],[2,3,1,1],[1,2,2,0]],[[1,2,2,0],[2,2,0,2],[2,3,1,0],[1,3,2,1]],[[1,2,2,0],[2,2,0,2],[2,3,1,0],[2,2,2,1]],[[1,2,2,0],[2,2,0,2],[3,3,1,0],[1,2,2,1]],[[1,2,2,0],[3,2,0,2],[2,3,1,0],[1,2,2,1]],[[1,3,2,0],[2,2,0,2],[2,3,1,0],[1,2,2,1]],[[2,2,2,0],[2,2,0,2],[2,3,1,0],[1,2,2,1]],[[1,2,2,0],[2,2,0,2],[2,2,3,2],[2,2,0,0]],[[1,2,2,0],[2,2,0,2],[3,2,3,2],[1,2,0,0]],[[1,2,2,0],[3,2,0,2],[2,2,3,2],[1,2,0,0]],[[1,2,3,0],[2,2,0,2],[2,2,3,2],[1,2,0,0]],[[1,3,2,0],[2,2,0,2],[2,2,3,2],[1,2,0,0]],[[2,2,2,0],[2,2,0,2],[2,2,3,2],[1,2,0,0]],[[1,2,2,0],[2,2,0,2],[2,2,3,2],[2,1,1,0]],[[1,2,2,0],[2,2,0,2],[3,2,3,2],[1,1,1,0]],[[1,2,2,0],[3,2,0,2],[2,2,3,2],[1,1,1,0]],[[1,2,3,0],[2,2,0,2],[2,2,3,2],[1,1,1,0]],[[0,3,2,1],[2,2,2,2],[1,3,0,1],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[1,3,0,1],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[1,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[1,3,0,1],[0,2,2,1]],[[0,3,2,1],[2,2,2,2],[1,3,0,1],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[1,3,0,1],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[1,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[1,3,0,1],[1,1,2,1]],[[0,3,2,1],[2,2,2,2],[1,3,0,2],[0,1,2,1]],[[0,2,3,1],[2,2,2,2],[1,3,0,2],[0,1,2,1]],[[0,2,2,2],[2,2,2,2],[1,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,3],[1,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[1,3,0,3],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[1,3,0,2],[0,1,3,1]],[[0,2,2,1],[2,2,2,2],[1,3,0,2],[0,1,2,2]],[[0,3,2,1],[2,2,2,2],[1,3,0,2],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[1,3,0,2],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[1,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[1,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,2],[1,3,0,3],[0,2,1,1]],[[0,2,2,1],[2,2,2,2],[1,3,0,2],[0,2,1,2]],[[0,3,2,1],[2,2,2,2],[1,3,0,2],[0,2,2,0]],[[0,2,3,1],[2,2,2,2],[1,3,0,2],[0,2,2,0]],[[0,2,2,2],[2,2,2,2],[1,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,3],[1,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,2],[1,3,0,3],[0,2,2,0]],[[0,3,2,1],[2,2,2,2],[1,3,0,2],[1,0,2,1]],[[0,2,3,1],[2,2,2,2],[1,3,0,2],[1,0,2,1]],[[0,2,2,2],[2,2,2,2],[1,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,3],[1,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[1,3,0,3],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[1,3,0,2],[1,0,3,1]],[[0,2,2,1],[2,2,2,2],[1,3,0,2],[1,0,2,2]],[[0,3,2,1],[2,2,2,2],[1,3,0,2],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[1,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[1,3,0,3],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[1,3,0,2],[1,1,1,2]],[[0,3,2,1],[2,2,2,2],[1,3,0,2],[1,1,2,0]],[[0,2,3,1],[2,2,2,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,2],[2,2,2,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,3],[1,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,2],[1,3,0,3],[1,1,2,0]],[[1,3,2,0],[2,2,0,2],[2,2,3,2],[1,1,1,0]],[[2,2,2,0],[2,2,0,2],[2,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,2,0,2],[2,2,3,2],[2,1,0,1]],[[1,2,2,0],[2,2,0,2],[3,2,3,2],[1,1,0,1]],[[1,2,2,0],[3,2,0,2],[2,2,3,2],[1,1,0,1]],[[1,2,3,0],[2,2,0,2],[2,2,3,2],[1,1,0,1]],[[1,3,2,0],[2,2,0,2],[2,2,3,2],[1,1,0,1]],[[2,2,2,0],[2,2,0,2],[2,2,3,2],[1,1,0,1]],[[0,3,2,1],[2,2,2,2],[1,3,1,0],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[1,3,1,0],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[1,3,1,0],[0,2,2,1]],[[0,3,2,1],[2,2,2,2],[1,3,1,0],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[1,3,1,0],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,2,2],[1,4,1,0],[1,2,2,0]],[[0,2,2,1],[2,2,2,2],[1,3,1,0],[2,2,2,0]],[[0,2,2,1],[2,2,2,2],[1,3,1,0],[1,3,2,0]],[[0,3,2,1],[2,2,2,2],[1,3,1,1],[0,2,2,0]],[[0,2,3,1],[2,2,2,2],[1,3,1,1],[0,2,2,0]],[[0,2,2,2],[2,2,2,2],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,2,3],[1,3,1,1],[0,2,2,0]],[[0,3,2,1],[2,2,2,2],[1,3,1,1],[1,1,2,0]],[[0,2,3,1],[2,2,2,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,2],[2,2,2,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,2,3],[1,3,1,1],[1,1,2,0]],[[1,2,2,0],[2,2,0,2],[2,2,3,2],[2,0,2,0]],[[1,2,2,0],[2,2,0,2],[3,2,3,2],[1,0,2,0]],[[1,2,2,0],[3,2,0,2],[2,2,3,2],[1,0,2,0]],[[1,2,3,0],[2,2,0,2],[2,2,3,2],[1,0,2,0]],[[1,3,2,0],[2,2,0,2],[2,2,3,2],[1,0,2,0]],[[0,3,2,1],[2,2,2,2],[1,3,1,2],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[1,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[1,3,1,3],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[1,3,1,2],[0,1,1,2]],[[0,3,2,1],[2,2,2,2],[1,3,1,2],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[1,3,1,2],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[1,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[1,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,2],[1,3,1,3],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[1,3,1,2],[0,2,0,1]],[[0,2,3,1],[2,2,2,2],[1,3,1,2],[0,2,0,1]],[[0,2,2,2],[2,2,2,2],[1,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,3],[1,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[1,3,1,3],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[1,3,1,2],[0,2,0,2]],[[0,3,2,1],[2,2,2,2],[1,3,1,2],[0,2,1,0]],[[0,2,3,1],[2,2,2,2],[1,3,1,2],[0,2,1,0]],[[0,2,2,2],[2,2,2,2],[1,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,3],[1,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,2],[1,3,1,3],[0,2,1,0]],[[2,2,2,0],[2,2,0,2],[2,2,3,2],[1,0,2,0]],[[1,2,2,0],[2,2,0,2],[2,2,3,2],[2,0,1,1]],[[1,2,2,0],[2,2,0,2],[3,2,3,2],[1,0,1,1]],[[1,2,2,0],[3,2,0,2],[2,2,3,2],[1,0,1,1]],[[1,2,3,0],[2,2,0,2],[2,2,3,2],[1,0,1,1]],[[1,3,2,0],[2,2,0,2],[2,2,3,2],[1,0,1,1]],[[2,2,2,0],[2,2,0,2],[2,2,3,2],[1,0,1,1]],[[0,3,2,1],[2,2,2,2],[1,3,1,2],[1,0,1,1]],[[0,2,3,1],[2,2,2,2],[1,3,1,2],[1,0,1,1]],[[0,2,2,2],[2,2,2,2],[1,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,3],[1,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[1,3,1,3],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[1,3,1,2],[1,0,1,2]],[[0,3,2,1],[2,2,2,2],[1,3,1,2],[1,0,2,0]],[[0,2,3,1],[2,2,2,2],[1,3,1,2],[1,0,2,0]],[[0,2,2,2],[2,2,2,2],[1,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,3],[1,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,2],[1,3,1,3],[1,0,2,0]],[[0,3,2,1],[2,2,2,2],[1,3,1,2],[1,1,0,1]],[[0,2,3,1],[2,2,2,2],[1,3,1,2],[1,1,0,1]],[[0,2,2,2],[2,2,2,2],[1,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,3],[1,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[1,3,1,3],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[1,3,1,2],[1,1,0,2]],[[0,3,2,1],[2,2,2,2],[1,3,1,2],[1,1,1,0]],[[0,2,3,1],[2,2,2,2],[1,3,1,2],[1,1,1,0]],[[0,2,2,2],[2,2,2,2],[1,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,3],[1,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,2],[1,3,1,3],[1,1,1,0]],[[0,3,2,1],[2,2,2,2],[1,3,1,2],[1,2,0,0]],[[0,2,3,1],[2,2,2,2],[1,3,1,2],[1,2,0,0]],[[0,2,2,2],[2,2,2,2],[1,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,2,2,3],[1,3,1,2],[1,2,0,0]],[[1,2,2,0],[2,2,0,2],[3,2,3,2],[0,2,1,0]],[[1,2,2,0],[3,2,0,2],[2,2,3,2],[0,2,1,0]],[[1,2,3,0],[2,2,0,2],[2,2,3,2],[0,2,1,0]],[[1,3,2,0],[2,2,0,2],[2,2,3,2],[0,2,1,0]],[[2,2,2,0],[2,2,0,2],[2,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,2,0,2],[3,2,3,2],[0,2,0,1]],[[1,2,2,0],[3,2,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,3,0],[2,2,0,2],[2,2,3,2],[0,2,0,1]],[[1,3,2,0],[2,2,0,2],[2,2,3,2],[0,2,0,1]],[[2,2,2,0],[2,2,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,2,0],[2,2,0,2],[3,2,3,2],[0,1,2,0]],[[1,2,2,0],[3,2,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,3,0],[2,2,0,2],[2,2,3,2],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[1,3,2,0],[0,1,2,1]],[[0,2,3,1],[2,2,2,2],[1,3,2,0],[0,1,2,1]],[[0,2,2,2],[2,2,2,2],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,2,2,3],[1,3,2,0],[0,1,2,1]],[[0,3,2,1],[2,2,2,2],[1,3,2,0],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[1,3,2,0],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[1,3,2,0],[0,2,1,1]],[[0,3,2,1],[2,2,2,2],[1,3,2,0],[1,0,2,1]],[[0,2,3,1],[2,2,2,2],[1,3,2,0],[1,0,2,1]],[[0,2,2,2],[2,2,2,2],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,2,3],[1,3,2,0],[1,0,2,1]],[[0,3,2,1],[2,2,2,2],[1,3,2,0],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[1,4,2,0],[1,2,1,0]],[[0,2,2,1],[2,2,2,2],[1,3,2,0],[2,2,1,0]],[[0,2,2,1],[2,2,2,2],[1,3,2,0],[1,3,1,0]],[[1,3,2,0],[2,2,0,2],[2,2,3,2],[0,1,2,0]],[[2,2,2,0],[2,2,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,2,0],[2,2,0,2],[3,2,3,2],[0,1,1,1]],[[1,2,2,0],[3,2,0,2],[2,2,3,2],[0,1,1,1]],[[1,2,3,0],[2,2,0,2],[2,2,3,2],[0,1,1,1]],[[1,3,2,0],[2,2,0,2],[2,2,3,2],[0,1,1,1]],[[2,2,2,0],[2,2,0,2],[2,2,3,2],[0,1,1,1]],[[0,3,2,1],[2,2,2,2],[1,3,2,1],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[1,3,2,1],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[1,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[1,3,2,1],[0,1,1,1]],[[0,3,2,1],[2,2,2,2],[1,3,2,1],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[1,3,2,1],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[1,3,2,1],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[1,3,2,1],[0,2,0,1]],[[0,2,3,1],[2,2,2,2],[1,3,2,1],[0,2,0,1]],[[0,2,2,2],[2,2,2,2],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,2,3],[1,3,2,1],[0,2,0,1]],[[0,3,2,1],[2,2,2,2],[1,3,2,1],[0,2,1,0]],[[0,2,3,1],[2,2,2,2],[1,3,2,1],[0,2,1,0]],[[0,2,2,2],[2,2,2,2],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,2,3],[1,3,2,1],[0,2,1,0]],[[0,3,2,1],[2,2,2,2],[1,3,2,1],[1,0,1,1]],[[0,2,3,1],[2,2,2,2],[1,3,2,1],[1,0,1,1]],[[0,2,2,2],[2,2,2,2],[1,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,2,2,3],[1,3,2,1],[1,0,1,1]],[[0,3,2,1],[2,2,2,2],[1,3,2,1],[1,0,2,0]],[[0,2,3,1],[2,2,2,2],[1,3,2,1],[1,0,2,0]],[[0,2,2,2],[2,2,2,2],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,2,3],[1,3,2,1],[1,0,2,0]],[[0,3,2,1],[2,2,2,2],[1,3,2,1],[1,1,0,1]],[[0,2,3,1],[2,2,2,2],[1,3,2,1],[1,1,0,1]],[[0,2,2,2],[2,2,2,2],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,2,3],[1,3,2,1],[1,1,0,1]],[[0,3,2,1],[2,2,2,2],[1,3,2,1],[1,1,1,0]],[[0,2,3,1],[2,2,2,2],[1,3,2,1],[1,1,1,0]],[[0,2,2,2],[2,2,2,2],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,2,3],[1,3,2,1],[1,1,1,0]],[[1,2,2,0],[2,2,0,2],[2,2,3,1],[1,3,1,0]],[[0,3,2,1],[2,2,2,2],[1,3,2,1],[1,2,0,0]],[[0,2,3,1],[2,2,2,2],[1,3,2,1],[1,2,0,0]],[[0,2,2,2],[2,2,2,2],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,2,3],[1,3,2,1],[1,2,0,0]],[[1,2,2,0],[2,2,0,2],[2,2,3,1],[2,2,1,0]],[[1,2,2,0],[2,2,0,2],[3,2,3,1],[1,2,1,0]],[[1,2,2,0],[3,2,0,2],[2,2,3,1],[1,2,1,0]],[[1,3,2,0],[2,2,0,2],[2,2,3,1],[1,2,1,0]],[[2,2,2,0],[2,2,0,2],[2,2,3,1],[1,2,1,0]],[[1,2,2,0],[2,2,0,2],[2,2,3,1],[2,1,1,1]],[[1,2,2,0],[2,2,0,2],[3,2,3,1],[1,1,1,1]],[[1,2,2,0],[3,2,0,2],[2,2,3,1],[1,1,1,1]],[[1,2,3,0],[2,2,0,2],[2,2,3,1],[1,1,1,1]],[[1,3,2,0],[2,2,0,2],[2,2,3,1],[1,1,1,1]],[[2,2,2,0],[2,2,0,2],[2,2,3,1],[1,1,1,1]],[[1,2,2,0],[2,2,0,2],[2,2,3,1],[2,0,2,1]],[[1,2,2,0],[2,2,0,2],[3,2,3,1],[1,0,2,1]],[[1,2,2,0],[3,2,0,2],[2,2,3,1],[1,0,2,1]],[[1,2,3,0],[2,2,0,2],[2,2,3,1],[1,0,2,1]],[[1,3,2,0],[2,2,0,2],[2,2,3,1],[1,0,2,1]],[[2,2,2,0],[2,2,0,2],[2,2,3,1],[1,0,2,1]],[[0,3,2,1],[2,2,2,2],[1,3,2,2],[0,0,1,1]],[[0,2,3,1],[2,2,2,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,2],[2,2,2,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,1],[2,2,2,3],[1,3,2,2],[0,0,1,1]],[[0,2,2,1],[2,2,2,2],[1,3,2,3],[0,0,1,1]],[[0,2,2,1],[2,2,2,2],[1,3,2,2],[0,0,1,2]],[[0,3,2,1],[2,2,2,2],[1,3,2,2],[0,0,2,0]],[[0,2,3,1],[2,2,2,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,2],[2,2,2,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,1],[2,2,2,3],[1,3,2,2],[0,0,2,0]],[[0,2,2,1],[2,2,2,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,0],[2,2,0,2],[3,2,3,1],[0,2,1,1]],[[1,2,2,0],[3,2,0,2],[2,2,3,1],[0,2,1,1]],[[1,2,3,0],[2,2,0,2],[2,2,3,1],[0,2,1,1]],[[1,3,2,0],[2,2,0,2],[2,2,3,1],[0,2,1,1]],[[2,2,2,0],[2,2,0,2],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[2,2,0,2],[3,2,3,1],[0,1,2,1]],[[1,2,2,0],[3,2,0,2],[2,2,3,1],[0,1,2,1]],[[1,2,3,0],[2,2,0,2],[2,2,3,1],[0,1,2,1]],[[1,3,2,0],[2,2,0,2],[2,2,3,1],[0,1,2,1]],[[2,2,2,0],[2,2,0,2],[2,2,3,1],[0,1,2,1]],[[1,2,2,0],[2,2,0,2],[2,2,3,0],[1,3,1,1]],[[1,2,2,0],[2,2,0,2],[2,2,3,0],[2,2,1,1]],[[1,2,2,0],[2,2,0,2],[3,2,3,0],[1,2,1,1]],[[1,2,2,0],[3,2,0,2],[2,2,3,0],[1,2,1,1]],[[1,3,2,0],[2,2,0,2],[2,2,3,0],[1,2,1,1]],[[2,2,2,0],[2,2,0,2],[2,2,3,0],[1,2,1,1]],[[1,2,2,0],[2,2,0,2],[2,2,2,2],[2,1,2,0]],[[1,2,2,0],[2,2,0,2],[3,2,2,2],[1,1,2,0]],[[1,2,2,0],[3,2,0,2],[2,2,2,2],[1,1,2,0]],[[1,2,3,0],[2,2,0,2],[2,2,2,2],[1,1,2,0]],[[1,3,2,0],[2,2,0,2],[2,2,2,2],[1,1,2,0]],[[2,2,2,0],[2,2,0,2],[2,2,2,2],[1,1,2,0]],[[1,2,2,0],[2,2,0,2],[3,2,2,2],[0,2,2,0]],[[1,2,2,0],[3,2,0,2],[2,2,2,2],[0,2,2,0]],[[1,2,3,0],[2,2,0,2],[2,2,2,2],[0,2,2,0]],[[1,3,2,0],[2,2,0,2],[2,2,2,2],[0,2,2,0]],[[2,2,2,0],[2,2,0,2],[2,2,2,2],[0,2,2,0]],[[1,2,2,0],[2,2,0,2],[2,2,2,1],[1,3,2,0]],[[1,2,2,0],[2,2,0,2],[2,2,2,1],[2,2,2,0]],[[1,2,2,0],[2,2,0,2],[3,2,2,1],[1,2,2,0]],[[1,2,2,0],[3,2,0,2],[2,2,2,1],[1,2,2,0]],[[1,3,2,0],[2,2,0,2],[2,2,2,1],[1,2,2,0]],[[2,2,2,0],[2,2,0,2],[2,2,2,1],[1,2,2,0]],[[1,2,2,0],[2,2,0,2],[2,2,2,1],[2,1,2,1]],[[1,2,2,0],[2,2,0,2],[3,2,2,1],[1,1,2,1]],[[1,2,2,0],[3,2,0,2],[2,2,2,1],[1,1,2,1]],[[1,2,3,0],[2,2,0,2],[2,2,2,1],[1,1,2,1]],[[1,3,2,0],[2,2,0,2],[2,2,2,1],[1,1,2,1]],[[2,2,2,0],[2,2,0,2],[2,2,2,1],[1,1,2,1]],[[1,2,2,0],[2,2,0,2],[3,2,2,1],[0,2,2,1]],[[1,2,2,0],[3,2,0,2],[2,2,2,1],[0,2,2,1]],[[1,2,3,0],[2,2,0,2],[2,2,2,1],[0,2,2,1]],[[1,3,2,0],[2,2,0,2],[2,2,2,1],[0,2,2,1]],[[2,2,2,0],[2,2,0,2],[2,2,2,1],[0,2,2,1]],[[1,2,2,0],[2,2,0,2],[2,2,2,0],[1,2,3,1]],[[1,2,2,0],[2,2,0,2],[2,2,2,0],[1,3,2,1]],[[1,2,2,0],[2,2,0,2],[2,2,2,0],[2,2,2,1]],[[1,2,2,0],[2,2,0,2],[3,2,2,0],[1,2,2,1]],[[1,2,2,0],[3,2,0,2],[2,2,2,0],[1,2,2,1]],[[1,3,2,0],[2,2,0,2],[2,2,2,0],[1,2,2,1]],[[2,2,2,0],[2,2,0,2],[2,2,2,0],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[1,3,3,0],[0,0,2,1]],[[0,2,3,1],[2,2,2,2],[1,3,3,0],[0,0,2,1]],[[0,2,2,2],[2,2,2,2],[1,3,3,0],[0,0,2,1]],[[0,2,2,1],[2,2,2,3],[1,3,3,0],[0,0,2,1]],[[1,2,2,0],[2,2,0,2],[2,2,1,2],[2,1,2,1]],[[1,2,2,0],[2,2,0,2],[3,2,1,2],[1,1,2,1]],[[1,2,2,0],[3,2,0,2],[2,2,1,2],[1,1,2,1]],[[1,2,3,0],[2,2,0,2],[2,2,1,2],[1,1,2,1]],[[1,3,2,0],[2,2,0,2],[2,2,1,2],[1,1,2,1]],[[2,2,2,0],[2,2,0,2],[2,2,1,2],[1,1,2,1]],[[1,2,2,0],[2,2,0,2],[3,2,1,2],[0,2,2,1]],[[1,2,2,0],[3,2,0,2],[2,2,1,2],[0,2,2,1]],[[1,2,3,0],[2,2,0,2],[2,2,1,2],[0,2,2,1]],[[1,3,2,0],[2,2,0,2],[2,2,1,2],[0,2,2,1]],[[2,2,2,0],[2,2,0,2],[2,2,1,2],[0,2,2,1]],[[0,3,2,1],[2,2,2,2],[1,3,3,1],[0,0,1,1]],[[0,2,3,1],[2,2,2,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,2],[2,2,2,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,1],[2,2,2,3],[1,3,3,1],[0,0,1,1]],[[0,3,2,1],[2,2,2,2],[1,3,3,1],[0,0,2,0]],[[0,2,3,1],[2,2,2,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,2],[2,2,2,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,1],[2,2,2,3],[1,3,3,1],[0,0,2,0]],[[0,3,2,1],[2,2,2,2],[1,3,3,1],[0,2,0,0]],[[0,2,3,1],[2,2,2,2],[1,3,3,1],[0,2,0,0]],[[0,2,2,2],[2,2,2,2],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,2,2,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,0],[2,2,0,2],[2,1,3,2],[1,3,1,0]],[[1,2,2,0],[2,2,0,2],[2,1,3,2],[2,2,1,0]],[[1,2,2,0],[2,2,0,2],[3,1,3,2],[1,2,1,0]],[[1,2,2,0],[3,2,0,2],[2,1,3,2],[1,2,1,0]],[[1,2,3,0],[2,2,0,2],[2,1,3,2],[1,2,1,0]],[[1,3,2,0],[2,2,0,2],[2,1,3,2],[1,2,1,0]],[[2,2,2,0],[2,2,0,2],[2,1,3,2],[1,2,1,0]],[[1,2,2,0],[2,2,0,2],[2,1,3,2],[1,3,0,1]],[[1,2,2,0],[2,2,0,2],[2,1,3,2],[2,2,0,1]],[[1,2,2,0],[2,2,0,2],[3,1,3,2],[1,2,0,1]],[[1,2,2,0],[3,2,0,2],[2,1,3,2],[1,2,0,1]],[[1,2,3,0],[2,2,0,2],[2,1,3,2],[1,2,0,1]],[[1,3,2,0],[2,2,0,2],[2,1,3,2],[1,2,0,1]],[[2,2,2,0],[2,2,0,2],[2,1,3,2],[1,2,0,1]],[[1,2,2,0],[2,2,0,2],[2,1,3,1],[1,3,1,1]],[[1,2,2,0],[2,2,0,2],[2,1,3,1],[2,2,1,1]],[[0,3,2,1],[2,2,2,2],[1,3,3,1],[1,1,0,0]],[[0,2,3,1],[2,2,2,2],[1,3,3,1],[1,1,0,0]],[[0,2,2,2],[2,2,2,2],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,2,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,0],[2,2,0,2],[3,1,3,1],[1,2,1,1]],[[1,2,2,0],[3,2,0,2],[2,1,3,1],[1,2,1,1]],[[1,2,3,0],[2,2,0,2],[2,1,3,1],[1,2,1,1]],[[1,3,2,0],[2,2,0,2],[2,1,3,1],[1,2,1,1]],[[2,2,2,0],[2,2,0,2],[2,1,3,1],[1,2,1,1]],[[1,2,2,0],[2,2,0,2],[2,1,2,2],[1,2,3,0]],[[1,2,2,0],[2,2,0,2],[2,1,2,2],[1,3,2,0]],[[1,2,2,0],[2,2,0,2],[2,1,2,2],[2,2,2,0]],[[1,2,2,0],[2,2,0,2],[3,1,2,2],[1,2,2,0]],[[1,2,2,0],[3,2,0,2],[2,1,2,2],[1,2,2,0]],[[1,2,3,0],[2,2,0,2],[2,1,2,2],[1,2,2,0]],[[1,3,2,0],[2,2,0,2],[2,1,2,2],[1,2,2,0]],[[2,2,2,0],[2,2,0,2],[2,1,2,2],[1,2,2,0]],[[1,2,2,0],[2,2,0,2],[2,1,2,1],[1,2,2,2]],[[1,2,2,0],[2,2,0,2],[2,1,2,1],[1,2,3,1]],[[1,2,2,0],[2,2,0,2],[2,1,2,1],[1,3,2,1]],[[1,2,2,0],[2,2,0,2],[2,1,2,1],[2,2,2,1]],[[1,2,2,0],[2,2,0,2],[3,1,2,1],[1,2,2,1]],[[1,2,2,0],[3,2,0,2],[2,1,2,1],[1,2,2,1]],[[1,2,3,0],[2,2,0,2],[2,1,2,1],[1,2,2,1]],[[1,3,2,0],[2,2,0,2],[2,1,2,1],[1,2,2,1]],[[2,2,2,0],[2,2,0,2],[2,1,2,1],[1,2,2,1]],[[1,2,2,0],[2,2,0,2],[2,1,1,2],[1,2,2,2]],[[1,2,2,0],[2,2,0,2],[2,1,1,2],[1,2,3,1]],[[1,2,2,0],[2,2,0,2],[2,1,1,2],[1,3,2,1]],[[1,2,2,0],[2,2,0,2],[2,1,1,2],[2,2,2,1]],[[1,2,2,0],[2,2,0,2],[2,1,1,3],[1,2,2,1]],[[1,2,2,0],[2,2,0,2],[3,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,2,0,3],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[3,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,2,3,0],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,3,2,0],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[2,2,2,0],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,2,0,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[2,2,0,2],[2,0,3,2],[1,3,2,0]],[[1,2,2,0],[2,2,0,2],[2,0,3,2],[2,2,2,0]],[[1,2,2,0],[2,2,0,2],[2,0,3,3],[1,2,2,0]],[[1,2,2,0],[2,2,0,2],[2,0,4,2],[1,2,2,0]],[[1,2,2,0],[2,2,0,2],[3,0,3,2],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[1,3,3,2],[0,0,0,1]],[[0,2,3,1],[2,2,2,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,2],[2,2,2,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,1],[2,2,2,3],[1,3,3,2],[0,0,0,1]],[[0,2,2,1],[2,2,2,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,0],[2,2,0,3],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[3,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,2,3,0],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,3,2,0],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[2,2,2,0],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[2,2,0,2],[2,0,3,2],[1,2,1,2]],[[1,2,2,0],[2,2,0,2],[2,0,3,3],[1,2,1,1]],[[1,2,2,0],[2,2,0,2],[2,0,4,2],[1,2,1,1]],[[1,2,2,0],[2,2,0,3],[2,0,3,2],[1,2,1,1]],[[1,2,2,0],[2,2,0,2],[2,0,3,1],[1,2,2,2]],[[1,2,2,0],[2,2,0,2],[2,0,3,1],[1,2,3,1]],[[1,2,2,0],[2,2,0,2],[2,0,3,1],[1,3,2,1]],[[1,2,2,0],[2,2,0,2],[2,0,3,1],[2,2,2,1]],[[1,2,2,0],[2,2,0,2],[2,0,4,1],[1,2,2,1]],[[1,2,2,0],[2,2,0,2],[3,0,3,1],[1,2,2,1]],[[1,2,2,0],[3,2,0,2],[2,0,3,1],[1,2,2,1]],[[1,2,3,0],[2,2,0,2],[2,0,3,1],[1,2,2,1]],[[1,3,2,0],[2,2,0,2],[2,0,3,1],[1,2,2,1]],[[2,2,2,0],[2,2,0,2],[2,0,3,1],[1,2,2,1]],[[1,2,2,0],[2,2,0,2],[2,0,2,2],[1,2,2,2]],[[1,2,2,0],[2,2,0,2],[2,0,2,2],[1,2,3,1]],[[1,2,2,0],[2,2,0,2],[2,0,2,2],[1,3,2,1]],[[1,2,2,0],[2,2,0,2],[2,0,2,2],[2,2,2,1]],[[1,2,2,0],[2,2,0,2],[2,0,2,3],[1,2,2,1]],[[1,2,2,0],[2,2,0,2],[3,0,2,2],[1,2,2,1]],[[1,2,2,0],[2,2,0,3],[2,0,2,2],[1,2,2,1]],[[1,2,2,0],[3,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,2,3,0],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,3,2,0],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[2,2,2,0],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,2,2,0],[3,2,0,2],[1,3,3,2],[1,2,0,0]],[[1,2,3,0],[2,2,0,2],[1,3,3,2],[1,2,0,0]],[[1,3,2,0],[2,2,0,2],[1,3,3,2],[1,2,0,0]],[[2,2,2,0],[2,2,0,2],[1,3,3,2],[1,2,0,0]],[[1,2,2,0],[3,2,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,3,0],[2,2,0,2],[1,3,3,2],[1,1,1,0]],[[1,3,2,0],[2,2,0,2],[1,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,2,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,2,0],[3,2,0,2],[1,3,3,2],[1,1,0,1]],[[1,2,3,0],[2,2,0,2],[1,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,2,0,2],[1,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,2,0,2],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[3,2,0,2],[1,3,3,2],[1,0,2,0]],[[1,2,3,0],[2,2,0,2],[1,3,3,2],[1,0,2,0]],[[1,3,2,0],[2,2,0,2],[1,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,2,0,2],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[3,2,0,2],[1,3,3,2],[1,0,1,1]],[[1,2,3,0],[2,2,0,2],[1,3,3,2],[1,0,1,1]],[[1,3,2,0],[2,2,0,2],[1,3,3,2],[1,0,1,1]],[[2,2,2,0],[2,2,0,2],[1,3,3,2],[1,0,1,1]],[[1,2,2,0],[3,2,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,3,0],[2,2,0,2],[1,3,3,2],[0,2,1,0]],[[1,3,2,0],[2,2,0,2],[1,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,2,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[3,2,0,2],[1,3,3,2],[0,2,0,1]],[[1,2,3,0],[2,2,0,2],[1,3,3,2],[0,2,0,1]],[[1,3,2,0],[2,2,0,2],[1,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,2,0,2],[1,3,3,2],[0,2,0,1]],[[1,2,2,0],[3,2,0,2],[1,3,3,2],[0,1,2,0]],[[1,2,3,0],[2,2,0,2],[1,3,3,2],[0,1,2,0]],[[1,3,2,0],[2,2,0,2],[1,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,2,0,2],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[3,2,0,2],[1,3,3,2],[0,1,1,1]],[[1,2,3,0],[2,2,0,2],[1,3,3,2],[0,1,1,1]],[[1,3,2,0],[2,2,0,2],[1,3,3,2],[0,1,1,1]],[[2,2,2,0],[2,2,0,2],[1,3,3,2],[0,1,1,1]],[[1,2,2,0],[2,2,0,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[2,2,0,2],[1,3,3,1],[2,2,1,0]],[[1,2,2,0],[2,2,0,2],[1,4,3,1],[1,2,1,0]],[[1,2,2,0],[3,2,0,2],[1,3,3,1],[1,1,1,1]],[[1,2,3,0],[2,2,0,2],[1,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,2,0,2],[1,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,2,0,2],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,2,0,2],[1,3,3,1],[1,0,2,1]],[[1,2,3,0],[2,2,0,2],[1,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,2,0,2],[1,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,2,0,2],[1,3,3,1],[1,0,2,1]],[[1,2,2,0],[3,2,0,2],[1,3,3,1],[0,2,1,1]],[[1,2,3,0],[2,2,0,2],[1,3,3,1],[0,2,1,1]],[[1,3,2,0],[2,2,0,2],[1,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,2,0,2],[1,3,3,1],[0,2,1,1]],[[1,2,2,0],[3,2,0,2],[1,3,3,1],[0,1,2,1]],[[1,2,3,0],[2,2,0,2],[1,3,3,1],[0,1,2,1]],[[1,3,2,0],[2,2,0,2],[1,3,3,1],[0,1,2,1]],[[2,2,2,0],[2,2,0,2],[1,3,3,1],[0,1,2,1]],[[1,2,2,0],[2,2,0,2],[1,3,3,0],[1,3,1,1]],[[1,2,2,0],[2,2,0,2],[1,3,3,0],[2,2,1,1]],[[1,2,2,0],[2,2,0,2],[1,4,3,0],[1,2,1,1]],[[1,2,2,0],[3,2,0,2],[1,3,2,2],[1,1,2,0]],[[1,2,3,0],[2,2,0,2],[1,3,2,2],[1,1,2,0]],[[1,3,2,0],[2,2,0,2],[1,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,2,0,2],[1,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,2,0,2],[1,3,2,2],[0,2,2,0]],[[1,2,3,0],[2,2,0,2],[1,3,2,2],[0,2,2,0]],[[0,3,2,1],[2,2,2,2],[2,0,1,1],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[2,0,1,1],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[2,0,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[2,0,1,1],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,0,1,2],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[2,0,1,3],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[2,0,1,2],[0,3,2,1]],[[0,2,2,1],[2,2,2,2],[2,0,1,2],[0,2,3,1]],[[0,2,2,1],[2,2,2,2],[2,0,1,2],[0,2,2,2]],[[0,3,2,1],[2,2,2,2],[2,0,1,2],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,2],[2,0,1,3],[1,1,2,1]],[[0,2,2,1],[2,2,2,2],[2,0,1,2],[1,1,3,1]],[[0,2,2,1],[2,2,2,2],[2,0,1,2],[1,1,2,2]],[[0,3,2,1],[2,2,2,2],[2,0,1,2],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[2,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[2,0,1,3],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[2,0,1,2],[1,2,1,2]],[[0,3,2,1],[2,2,2,2],[2,0,1,2],[1,2,2,0]],[[0,2,3,1],[2,2,2,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,2],[2,2,2,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,3],[2,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,2],[2,0,1,3],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[2,0,2,0],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[2,0,2,0],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,0,2,1],[1,2,2,0]],[[0,2,3,1],[2,2,2,2],[2,0,2,1],[1,2,2,0]],[[0,2,2,2],[2,2,2,2],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,2,2,3],[2,0,2,1],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[2,0,2,2],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,2],[2,0,2,3],[0,2,1,1]],[[0,2,2,1],[2,2,2,2],[2,0,2,2],[0,2,1,2]],[[0,3,2,1],[2,2,2,2],[2,0,2,2],[0,2,2,0]],[[0,2,3,1],[2,2,2,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,2],[2,2,2,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,3],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,2],[2,0,2,3],[0,2,2,0]],[[0,3,2,1],[2,2,2,2],[2,0,2,2],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[2,0,2,3],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[2,0,2,2],[1,1,1,2]],[[0,3,2,1],[2,2,2,2],[2,0,2,2],[1,1,2,0]],[[0,2,3,1],[2,2,2,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,2],[2,2,2,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,3],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,2],[2,0,2,3],[1,1,2,0]],[[0,3,2,1],[2,2,2,2],[2,0,2,2],[1,2,0,1]],[[0,2,3,1],[2,2,2,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,2],[2,2,2,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,3],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,2],[2,0,2,3],[1,2,0,1]],[[0,2,2,1],[2,2,2,2],[2,0,2,2],[1,2,0,2]],[[0,3,2,1],[2,2,2,2],[2,0,2,2],[1,2,1,0]],[[0,2,3,1],[2,2,2,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,2],[2,2,2,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,3],[2,0,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,2],[2,0,2,3],[1,2,1,0]],[[1,3,2,0],[2,2,0,2],[1,3,2,2],[0,2,2,0]],[[2,2,2,0],[2,2,0,2],[1,3,2,2],[0,2,2,0]],[[0,3,2,1],[2,2,2,2],[2,0,3,0],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[2,0,3,0],[0,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,0,3,0],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[2,0,3,0],[1,1,2,1]],[[0,3,2,1],[2,2,2,2],[2,0,3,0],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[2,0,3,0],[1,2,1,1]],[[0,3,2,1],[2,2,2,2],[2,0,3,1],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[2,0,3,1],[0,2,1,1]],[[0,3,2,1],[2,2,2,2],[2,0,3,1],[0,2,2,0]],[[0,2,3,1],[2,2,2,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,2],[2,2,2,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,2,2,3],[2,0,3,1],[0,2,2,0]],[[0,3,2,1],[2,2,2,2],[2,0,3,1],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[2,0,3,1],[1,1,1,1]],[[0,3,2,1],[2,2,2,2],[2,0,3,1],[1,1,2,0]],[[0,2,3,1],[2,2,2,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,2],[2,2,2,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,2,2,3],[2,0,3,1],[1,1,2,0]],[[0,3,2,1],[2,2,2,2],[2,0,3,1],[1,2,0,1]],[[0,2,3,1],[2,2,2,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,2],[2,2,2,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,2,3],[2,0,3,1],[1,2,0,1]],[[0,3,2,1],[2,2,2,2],[2,0,3,1],[1,2,1,0]],[[0,2,3,1],[2,2,2,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,2],[2,2,2,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,2,3],[2,0,3,1],[1,2,1,0]],[[1,2,2,0],[2,2,0,2],[1,3,2,1],[1,3,2,0]],[[1,2,2,0],[2,2,0,2],[1,3,2,1],[2,2,2,0]],[[1,2,2,0],[2,2,0,2],[1,4,2,1],[1,2,2,0]],[[1,2,2,0],[3,2,0,2],[1,3,2,1],[1,1,2,1]],[[1,2,3,0],[2,2,0,2],[1,3,2,1],[1,1,2,1]],[[1,3,2,0],[2,2,0,2],[1,3,2,1],[1,1,2,1]],[[2,2,2,0],[2,2,0,2],[1,3,2,1],[1,1,2,1]],[[1,2,2,0],[3,2,0,2],[1,3,2,1],[0,2,2,1]],[[1,2,3,0],[2,2,0,2],[1,3,2,1],[0,2,2,1]],[[1,3,2,0],[2,2,0,2],[1,3,2,1],[0,2,2,1]],[[2,2,2,0],[2,2,0,2],[1,3,2,1],[0,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,0,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,2,2],[2,0,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,2,2],[2,0,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,3],[2,0,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[2,0,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[2,0,3,2],[0,0,2,2]],[[0,3,2,1],[2,2,2,2],[2,0,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[2,0,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[2,0,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[2,0,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[2,0,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[2,0,3,2],[0,1,1,2]],[[0,3,2,1],[2,2,2,2],[2,0,3,2],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[2,0,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[2,0,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[2,0,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,2],[2,0,3,3],[0,1,2,0]],[[1,2,2,0],[2,2,0,2],[1,3,2,0],[1,2,3,1]],[[1,2,2,0],[2,2,0,2],[1,3,2,0],[1,3,2,1]],[[1,2,2,0],[2,2,0,2],[1,3,2,0],[2,2,2,1]],[[1,2,2,0],[2,2,0,2],[1,4,2,0],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,0,3,2],[1,0,1,1]],[[0,2,3,1],[2,2,2,2],[2,0,3,2],[1,0,1,1]],[[0,2,2,2],[2,2,2,2],[2,0,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,3],[2,0,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[2,0,3,3],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[2,0,3,2],[1,0,1,2]],[[0,3,2,1],[2,2,2,2],[2,0,3,2],[1,0,2,0]],[[0,2,3,1],[2,2,2,2],[2,0,3,2],[1,0,2,0]],[[0,2,2,2],[2,2,2,2],[2,0,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,3],[2,0,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,0],[3,2,0,2],[1,3,1,2],[1,1,2,1]],[[1,2,3,0],[2,2,0,2],[1,3,1,2],[1,1,2,1]],[[1,3,2,0],[2,2,0,2],[1,3,1,2],[1,1,2,1]],[[2,2,2,0],[2,2,0,2],[1,3,1,2],[1,1,2,1]],[[1,2,2,0],[3,2,0,2],[1,3,1,2],[0,2,2,1]],[[1,2,3,0],[2,2,0,2],[1,3,1,2],[0,2,2,1]],[[1,3,2,0],[2,2,0,2],[1,3,1,2],[0,2,2,1]],[[2,2,2,0],[2,2,0,2],[1,3,1,2],[0,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,1,0,1],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[2,1,0,1],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,1,0,2],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[2,1,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[2,1,0,3],[0,2,2,1]],[[0,2,2,1],[2,2,2,2],[2,1,0,2],[0,3,2,1]],[[0,2,2,1],[2,2,2,2],[2,1,0,2],[0,2,3,1]],[[0,2,2,1],[2,2,2,2],[2,1,0,2],[0,2,2,2]],[[0,3,2,1],[2,2,2,2],[2,1,0,2],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[2,1,0,2],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[2,1,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[2,1,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,2,2],[2,1,0,3],[1,1,2,1]],[[0,2,2,1],[2,2,2,2],[2,1,0,2],[1,1,3,1]],[[0,2,2,1],[2,2,2,2],[2,1,0,2],[1,1,2,2]],[[0,3,2,1],[2,2,2,2],[2,1,0,2],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[2,1,0,2],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[2,1,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[2,1,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[2,1,0,3],[1,2,1,1]],[[0,2,2,1],[2,2,2,2],[2,1,0,2],[1,2,1,2]],[[0,3,2,1],[2,2,2,2],[2,1,0,2],[1,2,2,0]],[[0,2,3,1],[2,2,2,2],[2,1,0,2],[1,2,2,0]],[[0,2,2,2],[2,2,2,2],[2,1,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,3],[2,1,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,2,2],[2,1,0,3],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[2,1,1,0],[1,2,2,1]],[[0,2,3,1],[2,2,2,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,2],[2,2,2,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,2,3],[2,1,1,0],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,1,1,1],[1,2,2,0]],[[0,2,3,1],[2,2,2,2],[2,1,1,1],[1,2,2,0]],[[0,2,2,2],[2,2,2,2],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,2,3],[2,1,1,1],[1,2,2,0]],[[0,3,2,1],[2,2,2,2],[2,1,1,2],[0,1,2,1]],[[0,2,3,1],[2,2,2,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,2],[2,2,2,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,3],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[2,1,1,3],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[2,1,1,2],[0,1,3,1]],[[0,2,2,1],[2,2,2,2],[2,1,1,2],[0,1,2,2]],[[0,3,2,1],[2,2,2,2],[2,1,1,2],[1,0,2,1]],[[0,2,3,1],[2,2,2,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,2],[2,2,2,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,3],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[2,1,1,3],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[2,1,1,2],[1,0,3,1]],[[0,2,2,1],[2,2,2,2],[2,1,1,2],[1,0,2,2]],[[0,3,2,1],[2,2,2,2],[2,1,1,2],[1,2,0,1]],[[0,2,3,1],[2,2,2,2],[2,1,1,2],[1,2,0,1]],[[0,2,2,2],[2,2,2,2],[2,1,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,3],[2,1,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,2,2],[2,1,1,3],[1,2,0,1]],[[0,2,2,1],[2,2,2,2],[2,1,1,2],[1,2,0,2]],[[0,3,2,1],[2,2,2,2],[2,1,1,2],[1,2,1,0]],[[0,2,3,1],[2,2,2,2],[2,1,1,2],[1,2,1,0]],[[0,2,2,2],[2,2,2,2],[2,1,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,3],[2,1,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,2,2],[2,1,1,3],[1,2,1,0]],[[1,2,2,0],[3,2,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,3,0],[2,2,0,2],[0,3,3,2],[1,2,1,0]],[[1,3,2,0],[2,2,0,2],[0,3,3,2],[1,2,1,0]],[[2,2,2,0],[2,2,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[3,2,0,2],[0,3,3,2],[1,2,0,1]],[[1,2,3,0],[2,2,0,2],[0,3,3,2],[1,2,0,1]],[[0,3,2,1],[2,2,2,2],[2,1,2,0],[1,2,1,1]],[[0,2,3,1],[2,2,2,2],[2,1,2,0],[1,2,1,1]],[[0,2,2,2],[2,2,2,2],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,2,3],[2,1,2,0],[1,2,1,1]],[[0,3,2,1],[2,2,2,2],[2,1,2,1],[1,2,0,1]],[[0,2,3,1],[2,2,2,2],[2,1,2,1],[1,2,0,1]],[[0,2,2,2],[2,2,2,2],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,2,3],[2,1,2,1],[1,2,0,1]],[[0,3,2,1],[2,2,2,2],[2,1,2,1],[1,2,1,0]],[[0,2,3,1],[2,2,2,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,2],[2,2,2,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,2,3],[2,1,2,1],[1,2,1,0]],[[1,3,2,0],[2,2,0,2],[0,3,3,2],[1,2,0,1]],[[2,2,2,0],[2,2,0,2],[0,3,3,2],[1,2,0,1]],[[0,3,2,1],[2,2,2,2],[2,1,2,2],[0,0,2,1]],[[0,2,3,1],[2,2,2,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,2],[2,2,2,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,3],[2,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[2,1,2,3],[0,0,2,1]],[[0,2,2,1],[2,2,2,2],[2,1,2,2],[0,0,2,2]],[[0,3,2,1],[2,2,2,2],[2,1,2,2],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[2,1,2,3],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[2,1,2,2],[0,1,1,2]],[[0,3,2,1],[2,2,2,2],[2,1,2,2],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,2],[2,1,2,3],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[2,1,2,2],[0,2,0,1]],[[0,2,3,1],[2,2,2,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,2],[2,2,2,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,3],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[2,1,2,3],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[2,1,2,2],[0,2,0,2]],[[0,3,2,1],[2,2,2,2],[2,1,2,2],[0,2,1,0]],[[0,2,3,1],[2,2,2,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,2],[2,2,2,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,3],[2,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,2],[2,1,2,3],[0,2,1,0]],[[1,2,2,0],[3,2,0,2],[0,3,3,2],[1,1,2,0]],[[1,2,3,0],[2,2,0,2],[0,3,3,2],[1,1,2,0]],[[1,3,2,0],[2,2,0,2],[0,3,3,2],[1,1,2,0]],[[2,2,2,0],[2,2,0,2],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[3,2,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,3,0],[2,2,0,2],[0,3,3,2],[1,1,1,1]],[[0,3,2,1],[2,2,2,2],[2,1,2,2],[1,0,1,1]],[[0,2,3,1],[2,2,2,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,2],[2,2,2,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,3],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[2,1,2,3],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[2,1,2,2],[1,0,1,2]],[[0,3,2,1],[2,2,2,2],[2,1,2,2],[1,0,2,0]],[[0,2,3,1],[2,2,2,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,2],[2,2,2,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,3],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,2],[2,1,2,3],[1,0,2,0]],[[0,3,2,1],[2,2,2,2],[2,1,2,2],[1,1,0,1]],[[0,2,3,1],[2,2,2,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,2],[2,2,2,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,3],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[2,1,2,3],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[2,1,2,2],[1,1,0,2]],[[0,3,2,1],[2,2,2,2],[2,1,2,2],[1,1,1,0]],[[0,2,3,1],[2,2,2,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,2],[2,2,2,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,3],[2,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,2],[2,1,2,3],[1,1,1,0]],[[1,3,2,0],[2,2,0,2],[0,3,3,2],[1,1,1,1]],[[2,2,2,0],[2,2,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[3,2,0,2],[0,3,3,1],[1,2,1,1]],[[1,2,3,0],[2,2,0,2],[0,3,3,1],[1,2,1,1]],[[1,3,2,0],[2,2,0,2],[0,3,3,1],[1,2,1,1]],[[2,2,2,0],[2,2,0,2],[0,3,3,1],[1,2,1,1]],[[1,2,2,0],[3,2,0,2],[0,3,3,1],[1,1,2,1]],[[1,2,3,0],[2,2,0,2],[0,3,3,1],[1,1,2,1]],[[1,3,2,0],[2,2,0,2],[0,3,3,1],[1,1,2,1]],[[2,2,2,0],[2,2,0,2],[0,3,3,1],[1,1,2,1]],[[1,2,2,0],[3,2,0,2],[0,3,2,2],[1,2,2,0]],[[1,2,3,0],[2,2,0,2],[0,3,2,2],[1,2,2,0]],[[1,3,2,0],[2,2,0,2],[0,3,2,2],[1,2,2,0]],[[2,2,2,0],[2,2,0,2],[0,3,2,2],[1,2,2,0]],[[1,2,2,0],[3,2,0,2],[0,3,2,1],[1,2,2,1]],[[1,2,3,0],[2,2,0,2],[0,3,2,1],[1,2,2,1]],[[1,3,2,0],[2,2,0,2],[0,3,2,1],[1,2,2,1]],[[2,2,2,0],[2,2,0,2],[0,3,2,1],[1,2,2,1]],[[1,2,2,0],[3,2,0,2],[0,3,1,2],[1,2,2,1]],[[1,2,3,0],[2,2,0,2],[0,3,1,2],[1,2,2,1]],[[1,3,2,0],[2,2,0,2],[0,3,1,2],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,0],[0,1,2,1]],[[0,2,3,1],[2,2,2,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,2],[2,2,2,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,2,3],[2,1,3,0],[0,1,2,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,0],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[2,1,3,0],[0,2,1,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,0],[1,0,2,1]],[[0,2,3,1],[2,2,2,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,2],[2,2,2,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,2,3],[2,1,3,0],[1,0,2,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,0],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[2,1,3,0],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[2,1,3,0],[1,1,1,1]],[[2,2,2,0],[2,2,0,2],[0,3,1,2],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,1],[0,0,2,1]],[[0,2,3,1],[2,2,2,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,2],[2,2,2,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,1],[2,2,2,3],[2,1,3,1],[0,0,2,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,1],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[2,1,3,1],[0,1,1,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,1],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[2,1,3,1],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[2,1,3,1],[0,2,0,1]],[[0,2,3,1],[2,2,2,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,2],[2,2,2,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,2,3],[2,1,3,1],[0,2,0,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,1],[0,2,1,0]],[[0,2,3,1],[2,2,2,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,2],[2,2,2,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,2,3],[2,1,3,1],[0,2,1,0]],[[1,2,2,0],[2,2,0,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[2,2,0,1],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[2,2,0,1],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[3,2,0,1],[2,3,3,2],[1,2,0,0]],[[0,3,2,1],[2,2,2,2],[2,1,3,1],[1,0,1,1]],[[0,2,3,1],[2,2,2,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,2],[2,2,2,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,2,3],[2,1,3,1],[1,0,1,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,1],[1,0,2,0]],[[0,2,3,1],[2,2,2,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,2],[2,2,2,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,2,3],[2,1,3,1],[1,0,2,0]],[[0,3,2,1],[2,2,2,2],[2,1,3,1],[1,1,0,1]],[[0,2,3,1],[2,2,2,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,2],[2,2,2,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,2,3],[2,1,3,1],[1,1,0,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,1],[1,1,1,0]],[[0,2,3,1],[2,2,2,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,2],[2,2,2,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,2,3],[2,1,3,1],[1,1,1,0]],[[1,3,2,0],[2,2,0,1],[2,3,3,2],[1,2,0,0]],[[2,2,2,0],[2,2,0,1],[2,3,3,2],[1,2,0,0]],[[1,2,2,0],[2,2,0,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[2,2,0,1],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[2,2,0,1],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[3,2,0,1],[2,3,3,2],[1,1,1,0]],[[1,3,2,0],[2,2,0,1],[2,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,2,0,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,2,0,1],[2,3,3,2],[2,1,0,1]],[[1,2,2,0],[2,2,0,1],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[2,2,0,1],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[3,2,0,1],[2,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,2,0,1],[2,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,2,0,1],[2,3,3,2],[1,1,0,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,2],[0,1,0,1]],[[0,2,3,1],[2,2,2,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,2],[2,2,2,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,2,2,3],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,2,2,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,0],[2,2,0,1],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[2,2,0,1],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[2,2,0,1],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[3,2,0,1],[2,3,3,2],[1,0,2,0]],[[1,3,2,0],[2,2,0,1],[2,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,2,0,1],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,2,0,1],[2,3,3,2],[2,0,1,1]],[[1,2,2,0],[2,2,0,1],[2,4,3,2],[1,0,1,1]],[[1,2,2,0],[2,2,0,1],[3,3,3,2],[1,0,1,1]],[[1,2,2,0],[3,2,0,1],[2,3,3,2],[1,0,1,1]],[[1,3,2,0],[2,2,0,1],[2,3,3,2],[1,0,1,1]],[[2,2,2,0],[2,2,0,1],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[2,2,0,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,2,0,1],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[2,2,0,1],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[3,2,0,1],[2,3,3,2],[0,2,1,0]],[[1,3,2,0],[2,2,0,1],[2,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,2,0,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,2,0,1],[2,3,3,2],[0,3,0,1]],[[0,3,2,1],[2,2,2,2],[2,1,3,2],[1,0,0,1]],[[0,2,3,1],[2,2,2,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,2],[2,2,2,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,2,2,3],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,2,2,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,0],[2,2,0,1],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[2,2,0,1],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[3,2,0,1],[2,3,3,2],[0,2,0,1]],[[1,3,2,0],[2,2,0,1],[2,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,2,0,1],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[2,2,0,1],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[2,2,0,1],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[3,2,0,1],[2,3,3,2],[0,1,2,0]],[[1,3,2,0],[2,2,0,1],[2,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,2,0,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,2,0,1],[2,4,3,2],[0,1,1,1]],[[1,2,2,0],[2,2,0,1],[3,3,3,2],[0,1,1,1]],[[1,2,2,0],[3,2,0,1],[2,3,3,2],[0,1,1,1]],[[1,3,2,0],[2,2,0,1],[2,3,3,2],[0,1,1,1]],[[2,2,2,0],[2,2,0,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[2,2,0,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[2,2,0,1],[2,4,3,1],[1,2,0,1]],[[1,2,2,0],[2,2,0,1],[3,3,3,1],[1,2,0,1]],[[1,2,2,0],[3,2,0,1],[2,3,3,1],[1,2,0,1]],[[1,3,2,0],[2,2,0,1],[2,3,3,1],[1,2,0,1]],[[2,2,2,0],[2,2,0,1],[2,3,3,1],[1,2,0,1]],[[1,2,2,0],[2,2,0,1],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[2,2,0,1],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[2,2,0,1],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,2,0,1],[2,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,2,0,1],[2,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,2,0,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,0],[2,2,0,1],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[2,2,0,1],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[2,2,0,1],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[3,2,0,1],[2,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,2,0,1],[2,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,2,0,1],[2,3,3,1],[1,0,2,1]],[[1,2,2,0],[2,2,0,1],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[2,2,0,1],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[2,2,0,1],[3,3,3,1],[0,2,1,1]],[[1,2,2,0],[3,2,0,1],[2,3,3,1],[0,2,1,1]],[[1,3,2,0],[2,2,0,1],[2,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,2,0,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,0],[2,2,0,1],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[2,2,0,1],[3,3,3,1],[0,1,2,1]],[[1,2,2,0],[3,2,0,1],[2,3,3,1],[0,1,2,1]],[[1,3,2,0],[2,2,0,1],[2,3,3,1],[0,1,2,1]],[[2,2,2,0],[2,2,0,1],[2,3,3,1],[0,1,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,0,1],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[2,2,0,1],[0,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,0,1],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[2,2,0,1],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[2,2,0,1],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[2,2,0,1],[1,1,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,0,2],[0,1,2,1]],[[0,2,3,1],[2,2,2,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,2],[2,2,2,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,3],[2,2,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[2,2,0,3],[0,1,2,1]],[[0,2,2,1],[2,2,2,2],[2,2,0,2],[0,1,3,1]],[[0,2,2,1],[2,2,2,2],[2,2,0,2],[0,1,2,2]],[[0,3,2,1],[2,2,2,2],[2,2,0,2],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[2,2,0,2],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[2,2,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[2,2,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,2,2],[2,2,0,3],[0,2,1,1]],[[0,2,2,1],[2,2,2,2],[2,2,0,2],[0,2,1,2]],[[0,3,2,1],[2,2,2,2],[2,2,0,2],[0,2,2,0]],[[0,2,3,1],[2,2,2,2],[2,2,0,2],[0,2,2,0]],[[0,2,2,2],[2,2,2,2],[2,2,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,3],[2,2,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,2,2],[2,2,0,3],[0,2,2,0]],[[0,3,2,1],[2,2,2,2],[2,2,0,2],[1,0,2,1]],[[0,2,3,1],[2,2,2,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,2],[2,2,2,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,3],[2,2,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[2,2,0,3],[1,0,2,1]],[[0,2,2,1],[2,2,2,2],[2,2,0,2],[1,0,3,1]],[[0,2,2,1],[2,2,2,2],[2,2,0,2],[1,0,2,2]],[[0,3,2,1],[2,2,2,2],[2,2,0,2],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[2,2,0,2],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[2,2,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[2,2,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[2,2,0,3],[1,1,1,1]],[[0,2,2,1],[2,2,2,2],[2,2,0,2],[1,1,1,2]],[[0,3,2,1],[2,2,2,2],[2,2,0,2],[1,1,2,0]],[[0,2,3,1],[2,2,2,2],[2,2,0,2],[1,1,2,0]],[[0,2,2,2],[2,2,2,2],[2,2,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,3],[2,2,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,2,2],[2,2,0,3],[1,1,2,0]],[[1,2,2,0],[2,2,0,1],[2,3,3,0],[2,1,2,1]],[[1,2,2,0],[2,2,0,1],[2,4,3,0],[1,1,2,1]],[[1,2,2,0],[2,2,0,1],[3,3,3,0],[1,1,2,1]],[[1,2,2,0],[3,2,0,1],[2,3,3,0],[1,1,2,1]],[[1,3,2,0],[2,2,0,1],[2,3,3,0],[1,1,2,1]],[[2,2,2,0],[2,2,0,1],[2,3,3,0],[1,1,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,1,0],[0,2,2,1]],[[0,2,3,1],[2,2,2,2],[2,2,1,0],[0,2,2,1]],[[0,2,2,2],[2,2,2,2],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,2,3],[2,2,1,0],[0,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,1,0],[1,1,2,1]],[[0,2,3,1],[2,2,2,2],[2,2,1,0],[1,1,2,1]],[[0,2,2,2],[2,2,2,2],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,2,3],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[3,2,2,2],[2,2,1,0],[1,2,2,0]],[[0,2,2,1],[2,2,2,2],[3,2,1,0],[1,2,2,0]],[[0,2,2,1],[2,2,2,2],[2,2,1,0],[2,2,2,0]],[[0,2,2,1],[2,2,2,2],[2,2,1,0],[1,3,2,0]],[[0,3,2,1],[2,2,2,2],[2,2,1,1],[0,2,2,0]],[[0,2,3,1],[2,2,2,2],[2,2,1,1],[0,2,2,0]],[[0,2,2,2],[2,2,2,2],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,2,3],[2,2,1,1],[0,2,2,0]],[[0,3,2,1],[2,2,2,2],[2,2,1,1],[1,1,2,0]],[[0,2,3,1],[2,2,2,2],[2,2,1,1],[1,1,2,0]],[[0,2,2,2],[2,2,2,2],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,2,3],[2,2,1,1],[1,1,2,0]],[[1,2,2,0],[2,2,0,1],[2,3,3,0],[0,2,3,1]],[[1,2,2,0],[2,2,0,1],[2,3,3,0],[0,3,2,1]],[[1,2,2,0],[2,2,0,1],[2,4,3,0],[0,2,2,1]],[[1,2,2,0],[2,2,0,1],[3,3,3,0],[0,2,2,1]],[[1,2,2,0],[3,2,0,1],[2,3,3,0],[0,2,2,1]],[[1,3,2,0],[2,2,0,1],[2,3,3,0],[0,2,2,1]],[[2,2,2,0],[2,2,0,1],[2,3,3,0],[0,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,1,2],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[2,2,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[2,2,1,3],[0,1,1,1]],[[0,2,2,1],[2,2,2,2],[2,2,1,2],[0,1,1,2]],[[0,3,2,1],[2,2,2,2],[2,2,1,2],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[2,2,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,2,2],[2,2,1,3],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[2,2,1,2],[0,2,0,1]],[[0,2,3,1],[2,2,2,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,2],[2,2,2,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,3],[2,2,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[2,2,1,3],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[2,2,1,2],[0,2,0,2]],[[0,3,2,1],[2,2,2,2],[2,2,1,2],[0,2,1,0]],[[0,2,3,1],[2,2,2,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,2],[2,2,2,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,3],[2,2,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,2,2],[2,2,1,3],[0,2,1,0]],[[0,3,2,1],[2,2,2,2],[2,2,1,2],[1,0,1,1]],[[0,2,3,1],[2,2,2,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,2],[2,2,2,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,3],[2,2,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[2,2,1,3],[1,0,1,1]],[[0,2,2,1],[2,2,2,2],[2,2,1,2],[1,0,1,2]],[[0,3,2,1],[2,2,2,2],[2,2,1,2],[1,0,2,0]],[[0,2,3,1],[2,2,2,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,2],[2,2,2,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,3],[2,2,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,2,2],[2,2,1,3],[1,0,2,0]],[[0,3,2,1],[2,2,2,2],[2,2,1,2],[1,1,0,1]],[[0,2,3,1],[2,2,2,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,2],[2,2,2,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,3],[2,2,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[2,2,1,3],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[2,2,1,2],[1,1,0,2]],[[0,3,2,1],[2,2,2,2],[2,2,1,2],[1,1,1,0]],[[0,2,3,1],[2,2,2,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,2],[2,2,2,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,3],[2,2,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,2,2],[2,2,1,3],[1,1,1,0]],[[1,2,2,0],[2,2,0,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[2,2,0,1],[2,4,2,2],[1,1,2,0]],[[1,2,2,0],[2,2,0,1],[3,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,2,0,1],[2,3,2,2],[1,1,2,0]],[[0,3,2,1],[2,2,2,2],[2,2,1,2],[1,2,0,0]],[[0,2,3,1],[2,2,2,2],[2,2,1,2],[1,2,0,0]],[[0,2,2,2],[2,2,2,2],[2,2,1,2],[1,2,0,0]],[[0,2,2,1],[2,2,2,3],[2,2,1,2],[1,2,0,0]],[[1,3,2,0],[2,2,0,1],[2,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,2,0,1],[2,3,2,2],[1,1,2,0]],[[1,2,2,0],[2,2,0,1],[2,3,2,2],[0,2,3,0]],[[1,2,2,0],[2,2,0,1],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[2,2,0,1],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[2,2,0,1],[3,3,2,2],[0,2,2,0]],[[1,2,2,0],[3,2,0,1],[2,3,2,2],[0,2,2,0]],[[1,3,2,0],[2,2,0,1],[2,3,2,2],[0,2,2,0]],[[2,2,2,0],[2,2,0,1],[2,3,2,2],[0,2,2,0]],[[1,2,2,0],[2,2,0,1],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[2,2,0,1],[2,4,2,1],[1,1,2,1]],[[1,2,2,0],[2,2,0,1],[3,3,2,1],[1,1,2,1]],[[1,2,2,0],[3,2,0,1],[2,3,2,1],[1,1,2,1]],[[1,3,2,0],[2,2,0,1],[2,3,2,1],[1,1,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,2,0],[0,1,2,1]],[[0,2,3,1],[2,2,2,2],[2,2,2,0],[0,1,2,1]],[[0,2,2,2],[2,2,2,2],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[2,2,2,3],[2,2,2,0],[0,1,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,2,0],[0,2,1,1]],[[0,2,3,1],[2,2,2,2],[2,2,2,0],[0,2,1,1]],[[0,2,2,2],[2,2,2,2],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,2,3],[2,2,2,0],[0,2,1,1]],[[0,3,2,1],[2,2,2,2],[2,2,2,0],[1,0,2,1]],[[0,2,3,1],[2,2,2,2],[2,2,2,0],[1,0,2,1]],[[0,2,2,2],[2,2,2,2],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,2,3],[2,2,2,0],[1,0,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,2,0],[1,1,1,1]],[[0,2,3,1],[2,2,2,2],[2,2,2,0],[1,1,1,1]],[[0,2,2,2],[2,2,2,2],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,2,3],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[3,2,2,2],[2,2,2,0],[1,2,1,0]],[[0,2,2,1],[2,2,2,2],[3,2,2,0],[1,2,1,0]],[[0,2,2,1],[2,2,2,2],[2,2,2,0],[2,2,1,0]],[[0,2,2,1],[2,2,2,2],[2,2,2,0],[1,3,1,0]],[[2,2,2,0],[2,2,0,1],[2,3,2,1],[1,1,2,1]],[[1,2,2,0],[2,2,0,1],[2,3,2,1],[0,2,2,2]],[[1,2,2,0],[2,2,0,1],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[2,2,0,1],[2,3,2,1],[0,3,2,1]],[[1,2,2,0],[2,2,0,1],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[2,2,0,1],[3,3,2,1],[0,2,2,1]],[[1,2,2,0],[3,2,0,1],[2,3,2,1],[0,2,2,1]],[[1,3,2,0],[2,2,0,1],[2,3,2,1],[0,2,2,1]],[[2,2,2,0],[2,2,0,1],[2,3,2,1],[0,2,2,1]],[[1,2,2,0],[2,2,0,1],[2,3,2,0],[1,3,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,2,1],[0,1,1,1]],[[0,2,3,1],[2,2,2,2],[2,2,2,1],[0,1,1,1]],[[0,2,2,2],[2,2,2,2],[2,2,2,1],[0,1,1,1]],[[0,2,2,1],[2,2,2,3],[2,2,2,1],[0,1,1,1]],[[0,3,2,1],[2,2,2,2],[2,2,2,1],[0,1,2,0]],[[0,2,3,1],[2,2,2,2],[2,2,2,1],[0,1,2,0]],[[0,2,2,2],[2,2,2,2],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[2,2,2,3],[2,2,2,1],[0,1,2,0]],[[0,3,2,1],[2,2,2,2],[2,2,2,1],[0,2,0,1]],[[0,2,3,1],[2,2,2,2],[2,2,2,1],[0,2,0,1]],[[0,2,2,2],[2,2,2,2],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,2,3],[2,2,2,1],[0,2,0,1]],[[0,3,2,1],[2,2,2,2],[2,2,2,1],[0,2,1,0]],[[0,2,3,1],[2,2,2,2],[2,2,2,1],[0,2,1,0]],[[0,2,2,2],[2,2,2,2],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,2,3],[2,2,2,1],[0,2,1,0]],[[1,2,2,0],[2,2,0,1],[2,3,2,0],[2,2,2,1]],[[1,2,2,0],[2,2,0,1],[3,3,2,0],[1,2,2,1]],[[1,2,2,0],[3,2,0,1],[2,3,2,0],[1,2,2,1]],[[2,2,2,0],[2,2,0,1],[2,3,2,0],[1,2,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,2,1],[1,0,1,1]],[[0,2,3,1],[2,2,2,2],[2,2,2,1],[1,0,1,1]],[[0,2,2,2],[2,2,2,2],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[2,2,2,3],[2,2,2,1],[1,0,1,1]],[[0,3,2,1],[2,2,2,2],[2,2,2,1],[1,0,2,0]],[[0,2,3,1],[2,2,2,2],[2,2,2,1],[1,0,2,0]],[[0,2,2,2],[2,2,2,2],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,2,3],[2,2,2,1],[1,0,2,0]],[[0,3,2,1],[2,2,2,2],[2,2,2,1],[1,1,0,1]],[[0,2,3,1],[2,2,2,2],[2,2,2,1],[1,1,0,1]],[[0,2,2,2],[2,2,2,2],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,2,3],[2,2,2,1],[1,1,0,1]],[[0,3,2,1],[2,2,2,2],[2,2,2,1],[1,1,1,0]],[[0,2,3,1],[2,2,2,2],[2,2,2,1],[1,1,1,0]],[[0,2,2,2],[2,2,2,2],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,2,3],[2,2,2,1],[1,1,1,0]],[[0,3,2,1],[2,2,2,2],[2,2,2,1],[1,2,0,0]],[[0,2,3,1],[2,2,2,2],[2,2,2,1],[1,2,0,0]],[[0,2,2,2],[2,2,2,2],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,2,3],[2,2,2,1],[1,2,0,0]],[[1,2,2,0],[2,2,0,1],[2,3,1,2],[1,3,2,0]],[[1,2,2,0],[2,2,0,1],[2,3,1,2],[2,2,2,0]],[[1,2,2,0],[2,2,0,1],[3,3,1,2],[1,2,2,0]],[[1,2,2,0],[3,2,0,1],[2,3,1,2],[1,2,2,0]],[[1,3,2,0],[2,2,0,1],[2,3,1,2],[1,2,2,0]],[[2,2,2,0],[2,2,0,1],[2,3,1,2],[1,2,2,0]],[[1,2,2,0],[2,2,0,1],[2,3,1,2],[2,1,2,1]],[[1,2,2,0],[2,2,0,1],[2,4,1,2],[1,1,2,1]],[[1,2,2,0],[2,2,0,1],[3,3,1,2],[1,1,2,1]],[[1,2,2,0],[3,2,0,1],[2,3,1,2],[1,1,2,1]],[[1,3,2,0],[2,2,0,1],[2,3,1,2],[1,1,2,1]],[[2,2,2,0],[2,2,0,1],[2,3,1,2],[1,1,2,1]],[[1,2,2,0],[2,2,0,1],[2,3,1,2],[0,2,2,2]],[[1,2,2,0],[2,2,0,1],[2,3,1,2],[0,2,3,1]],[[1,2,2,0],[2,2,0,1],[2,3,1,2],[0,3,2,1]],[[1,2,2,0],[2,2,0,1],[2,4,1,2],[0,2,2,1]],[[1,2,2,0],[2,2,0,1],[3,3,1,2],[0,2,2,1]],[[1,2,2,0],[3,2,0,1],[2,3,1,2],[0,2,2,1]],[[1,3,2,0],[2,2,0,1],[2,3,1,2],[0,2,2,1]],[[2,2,2,0],[2,2,0,1],[2,3,1,2],[0,2,2,1]],[[1,2,2,0],[2,2,0,1],[2,3,1,1],[1,3,2,1]],[[1,2,2,0],[2,2,0,1],[2,3,1,1],[2,2,2,1]],[[1,2,2,0],[2,2,0,1],[3,3,1,1],[1,2,2,1]],[[1,2,2,0],[3,2,0,1],[2,3,1,1],[1,2,2,1]],[[1,3,2,0],[2,2,0,1],[2,3,1,1],[1,2,2,1]],[[2,2,2,0],[2,2,0,1],[2,3,1,1],[1,2,2,1]],[[1,2,2,0],[2,2,0,1],[2,3,0,2],[1,3,2,1]],[[1,2,2,0],[2,2,0,1],[2,3,0,2],[2,2,2,1]],[[1,2,2,0],[2,2,0,1],[3,3,0,2],[1,2,2,1]],[[1,2,2,0],[3,2,0,1],[2,3,0,2],[1,2,2,1]],[[1,3,2,0],[2,2,0,1],[2,3,0,2],[1,2,2,1]],[[2,2,2,0],[2,2,0,1],[2,3,0,2],[1,2,2,1]],[[1,2,2,0],[2,2,0,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[2,2,0,1],[2,2,3,2],[2,2,1,0]],[[1,2,2,0],[2,2,0,1],[3,2,3,2],[1,2,1,0]],[[1,2,2,0],[3,2,0,1],[2,2,3,2],[1,2,1,0]],[[1,3,2,0],[2,2,0,1],[2,2,3,2],[1,2,1,0]],[[2,2,2,0],[2,2,0,1],[2,2,3,2],[1,2,1,0]],[[1,2,2,0],[2,2,0,1],[2,2,3,2],[1,3,0,1]],[[1,2,2,0],[2,2,0,1],[2,2,3,2],[2,2,0,1]],[[1,2,2,0],[2,2,0,1],[3,2,3,2],[1,2,0,1]],[[1,2,2,0],[3,2,0,1],[2,2,3,2],[1,2,0,1]],[[1,3,2,0],[2,2,0,1],[2,2,3,2],[1,2,0,1]],[[2,2,2,0],[2,2,0,1],[2,2,3,2],[1,2,0,1]],[[1,2,2,0],[2,2,0,1],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[2,2,0,1],[2,2,3,1],[2,2,1,1]],[[1,2,2,0],[2,2,0,1],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[3,2,0,1],[2,2,3,1],[1,2,1,1]],[[1,3,2,0],[2,2,0,1],[2,2,3,1],[1,2,1,1]],[[2,2,2,0],[2,2,0,1],[2,2,3,1],[1,2,1,1]],[[1,2,2,0],[2,2,0,1],[2,2,3,0],[1,2,3,1]],[[1,2,2,0],[2,2,0,1],[2,2,3,0],[1,3,2,1]],[[1,2,2,0],[2,2,0,1],[2,2,3,0],[2,2,2,1]],[[1,2,2,0],[2,2,0,1],[3,2,3,0],[1,2,2,1]],[[1,2,2,0],[3,2,0,1],[2,2,3,0],[1,2,2,1]],[[1,3,2,0],[2,2,0,1],[2,2,3,0],[1,2,2,1]],[[2,2,2,0],[2,2,0,1],[2,2,3,0],[1,2,2,1]],[[1,2,2,0],[2,2,0,1],[2,2,2,2],[1,2,3,0]],[[1,2,2,0],[2,2,0,1],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[2,2,0,1],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[2,2,0,1],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[3,2,0,1],[2,2,2,2],[1,2,2,0]],[[1,3,2,0],[2,2,0,1],[2,2,2,2],[1,2,2,0]],[[2,2,2,0],[2,2,0,1],[2,2,2,2],[1,2,2,0]],[[1,2,2,0],[2,2,0,1],[2,2,2,1],[1,2,2,2]],[[1,2,2,0],[2,2,0,1],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[2,2,0,1],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[2,2,0,1],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[2,2,0,1],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[3,2,0,1],[2,2,2,1],[1,2,2,1]],[[1,3,2,0],[2,2,0,1],[2,2,2,1],[1,2,2,1]],[[2,2,2,0],[2,2,0,1],[2,2,2,1],[1,2,2,1]],[[1,2,2,0],[2,2,0,1],[2,2,1,2],[1,2,2,2]],[[1,2,2,0],[2,2,0,1],[2,2,1,2],[1,2,3,1]],[[1,2,2,0],[2,2,0,1],[2,2,1,2],[1,3,2,1]],[[1,2,2,0],[2,2,0,1],[2,2,1,2],[2,2,2,1]],[[1,2,2,0],[2,2,0,1],[3,2,1,2],[1,2,2,1]],[[1,2,2,0],[3,2,0,1],[2,2,1,2],[1,2,2,1]],[[1,3,2,0],[2,2,0,1],[2,2,1,2],[1,2,2,1]],[[2,2,2,0],[2,2,0,1],[2,2,1,2],[1,2,2,1]],[[1,2,2,0],[2,2,0,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,2,0,1],[1,3,3,2],[2,2,1,0]],[[1,2,2,0],[2,2,0,1],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[2,2,0,1],[1,3,3,2],[1,3,0,1]],[[1,2,2,0],[2,2,0,1],[1,3,3,2],[2,2,0,1]],[[1,2,2,0],[2,2,0,1],[1,4,3,2],[1,2,0,1]],[[1,2,2,0],[2,2,0,1],[1,3,3,1],[1,3,1,1]],[[1,2,2,0],[2,2,0,1],[1,3,3,1],[2,2,1,1]],[[1,2,2,0],[2,2,0,1],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[2,2,0,1],[1,3,3,0],[1,2,3,1]],[[1,2,2,0],[2,2,0,1],[1,3,3,0],[1,3,2,1]],[[1,2,2,0],[2,2,0,1],[1,3,3,0],[2,2,2,1]],[[1,2,2,0],[2,2,0,1],[1,4,3,0],[1,2,2,1]],[[1,2,2,0],[2,2,0,1],[1,3,2,2],[1,2,3,0]],[[1,2,2,0],[2,2,0,1],[1,3,2,2],[1,3,2,0]],[[1,2,2,0],[2,2,0,1],[1,3,2,2],[2,2,2,0]],[[1,2,2,0],[2,2,0,1],[1,4,2,2],[1,2,2,0]],[[1,2,2,0],[2,2,0,1],[1,3,2,1],[1,2,2,2]],[[1,2,2,0],[2,2,0,1],[1,3,2,1],[1,2,3,1]],[[1,2,2,0],[2,2,0,1],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[2,2,0,1],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[2,2,0,1],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[2,2,0,1],[1,3,1,2],[1,2,2,2]],[[1,2,2,0],[2,2,0,1],[1,3,1,2],[1,2,3,1]],[[1,2,2,0],[2,2,0,1],[1,3,1,2],[1,3,2,1]],[[1,2,2,0],[2,2,0,1],[1,3,1,2],[2,2,2,1]],[[1,2,2,0],[2,2,0,1],[1,4,1,2],[1,2,2,1]],[[1,2,2,0],[2,2,0,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,0],[2,2,0,0],[2,4,3,2],[1,2,0,1]],[[1,2,2,0],[2,2,0,0],[3,3,3,2],[1,2,0,1]],[[1,2,2,0],[3,2,0,0],[2,3,3,2],[1,2,0,1]],[[2,2,2,0],[2,2,0,0],[2,3,3,2],[1,2,0,1]],[[0,3,2,1],[2,2,2,2],[2,2,3,1],[0,2,0,0]],[[0,2,3,1],[2,2,2,2],[2,2,3,1],[0,2,0,0]],[[0,2,2,2],[2,2,2,2],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[2,2,2,3],[2,2,3,1],[0,2,0,0]],[[1,2,2,0],[2,2,0,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,0],[2,2,0,0],[2,4,3,2],[1,1,1,1]],[[1,2,2,0],[2,2,0,0],[3,3,3,2],[1,1,1,1]],[[1,2,2,0],[3,2,0,0],[2,3,3,2],[1,1,1,1]],[[1,3,2,0],[2,2,0,0],[2,3,3,2],[1,1,1,1]],[[2,2,2,0],[2,2,0,0],[2,3,3,2],[1,1,1,1]],[[1,2,2,0],[2,2,0,0],[2,3,3,2],[2,0,2,1]],[[1,2,2,0],[2,2,0,0],[2,4,3,2],[1,0,2,1]],[[1,2,2,0],[2,2,0,0],[3,3,3,2],[1,0,2,1]],[[1,2,2,0],[3,2,0,0],[2,3,3,2],[1,0,2,1]],[[1,3,2,0],[2,2,0,0],[2,3,3,2],[1,0,2,1]],[[2,2,2,0],[2,2,0,0],[2,3,3,2],[1,0,2,1]],[[0,3,2,1],[2,2,2,2],[2,2,3,1],[1,1,0,0]],[[0,2,3,1],[2,2,2,2],[2,2,3,1],[1,1,0,0]],[[0,2,2,2],[2,2,2,2],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,2,3],[2,2,3,1],[1,1,0,0]],[[1,2,2,0],[2,2,0,0],[2,3,3,2],[0,3,1,1]],[[1,2,2,0],[2,2,0,0],[2,4,3,2],[0,2,1,1]],[[1,2,2,0],[2,2,0,0],[3,3,3,2],[0,2,1,1]],[[1,2,2,0],[3,2,0,0],[2,3,3,2],[0,2,1,1]],[[1,3,2,0],[2,2,0,0],[2,3,3,2],[0,2,1,1]],[[2,2,2,0],[2,2,0,0],[2,3,3,2],[0,2,1,1]],[[1,2,2,0],[2,2,0,0],[2,4,3,2],[0,1,2,1]],[[1,2,2,0],[2,2,0,0],[3,3,3,2],[0,1,2,1]],[[1,2,2,0],[3,2,0,0],[2,3,3,2],[0,1,2,1]],[[1,3,2,0],[2,2,0,0],[2,3,3,2],[0,1,2,1]],[[2,2,2,0],[2,2,0,0],[2,3,3,2],[0,1,2,1]],[[1,2,2,0],[2,2,0,0],[2,3,2,2],[2,1,2,1]],[[1,2,2,0],[2,2,0,0],[2,4,2,2],[1,1,2,1]],[[1,2,2,0],[2,2,0,0],[3,3,2,2],[1,1,2,1]],[[1,2,2,0],[3,2,0,0],[2,3,2,2],[1,1,2,1]],[[1,3,2,0],[2,2,0,0],[2,3,2,2],[1,1,2,1]],[[2,2,2,0],[2,2,0,0],[2,3,2,2],[1,1,2,1]],[[1,2,2,0],[2,2,0,0],[2,3,2,2],[0,2,2,2]],[[1,2,2,0],[2,2,0,0],[2,3,2,2],[0,2,3,1]],[[1,2,2,0],[2,2,0,0],[2,3,2,2],[0,3,2,1]],[[1,2,2,0],[2,2,0,0],[2,4,2,2],[0,2,2,1]],[[1,2,2,0],[2,2,0,0],[3,3,2,2],[0,2,2,1]],[[1,2,2,0],[3,2,0,0],[2,3,2,2],[0,2,2,1]],[[1,3,2,0],[2,2,0,0],[2,3,2,2],[0,2,2,1]],[[2,2,2,0],[2,2,0,0],[2,3,2,2],[0,2,2,1]],[[1,2,2,0],[2,2,0,0],[2,3,1,2],[1,3,2,1]],[[1,2,2,0],[2,2,0,0],[2,3,1,2],[2,2,2,1]],[[1,2,2,0],[2,2,0,0],[3,3,1,2],[1,2,2,1]],[[1,2,2,0],[3,2,0,0],[2,3,1,2],[1,2,2,1]],[[2,2,2,0],[2,2,0,0],[2,3,1,2],[1,2,2,1]],[[1,2,2,0],[2,2,0,0],[2,2,3,2],[1,3,1,1]],[[1,2,2,0],[2,2,0,0],[2,2,3,2],[2,2,1,1]],[[1,2,2,0],[2,2,0,0],[3,2,3,2],[1,2,1,1]],[[1,2,2,0],[3,2,0,0],[2,2,3,2],[1,2,1,1]],[[1,3,2,0],[2,2,0,0],[2,2,3,2],[1,2,1,1]],[[2,2,2,0],[2,2,0,0],[2,2,3,2],[1,2,1,1]],[[1,2,2,0],[2,2,0,0],[2,2,2,2],[1,2,2,2]],[[1,2,2,0],[2,2,0,0],[2,2,2,2],[1,2,3,1]],[[1,2,2,0],[2,2,0,0],[2,2,2,2],[1,3,2,1]],[[1,2,2,0],[2,2,0,0],[2,2,2,2],[2,2,2,1]],[[1,2,2,0],[2,2,0,0],[3,2,2,2],[1,2,2,1]],[[1,2,2,0],[3,2,0,0],[2,2,2,2],[1,2,2,1]],[[1,3,2,0],[2,2,0,0],[2,2,2,2],[1,2,2,1]],[[2,2,2,0],[2,2,0,0],[2,2,2,2],[1,2,2,1]],[[1,2,2,0],[2,2,0,0],[1,3,3,2],[1,3,1,1]],[[1,2,2,0],[2,2,0,0],[1,3,3,2],[2,2,1,1]],[[1,2,2,0],[2,2,0,0],[1,4,3,2],[1,2,1,1]],[[1,2,2,0],[2,2,0,0],[1,3,2,2],[1,2,2,2]],[[1,2,2,0],[2,2,0,0],[1,3,2,2],[1,2,3,1]],[[1,2,2,0],[2,2,0,0],[1,3,2,2],[1,3,2,1]],[[1,2,2,0],[2,2,0,0],[1,3,2,2],[2,2,2,1]],[[1,2,2,0],[2,2,0,0],[1,4,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,3,2],[3,3,3,1],[1,0,0,0]],[[1,2,2,0],[2,1,3,3],[2,3,3,1],[1,0,0,0]],[[1,2,2,0],[2,1,4,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,0],[3,1,3,2],[2,3,3,1],[1,0,0,0]],[[1,2,3,0],[2,1,3,2],[2,3,3,1],[1,0,0,0]],[[1,3,2,0],[2,1,3,2],[2,3,3,1],[1,0,0,0]],[[2,2,2,0],[2,1,3,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,0],[2,1,3,2],[3,3,3,0],[1,0,1,0]],[[1,2,2,0],[2,1,4,2],[2,3,3,0],[1,0,1,0]],[[1,2,2,0],[3,1,3,2],[2,3,3,0],[1,0,1,0]],[[1,2,3,0],[2,1,3,2],[2,3,3,0],[1,0,1,0]],[[1,3,2,0],[2,1,3,2],[2,3,3,0],[1,0,1,0]],[[2,2,2,0],[2,1,3,2],[2,3,3,0],[1,0,1,0]],[[0,2,2,1],[3,2,2,2],[2,3,0,0],[1,2,2,0]],[[0,2,2,1],[2,2,2,2],[3,3,0,0],[1,2,2,0]],[[0,2,2,1],[2,2,2,2],[2,3,0,0],[2,2,2,0]],[[0,2,2,1],[2,2,2,2],[2,3,0,0],[1,3,2,0]],[[1,2,2,0],[2,1,3,2],[3,3,2,1],[1,0,1,0]],[[1,2,2,0],[2,1,3,3],[2,3,2,1],[1,0,1,0]],[[1,2,2,0],[2,1,4,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,0],[3,1,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,3,0],[2,1,3,2],[2,3,2,1],[1,0,1,0]],[[1,3,2,0],[2,1,3,2],[2,3,2,1],[1,0,1,0]],[[2,2,2,0],[2,1,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,0],[2,1,3,2],[3,3,2,1],[1,0,0,1]],[[1,2,2,0],[2,1,3,3],[2,3,2,1],[1,0,0,1]],[[1,2,2,0],[2,1,4,2],[2,3,2,1],[1,0,0,1]],[[1,2,2,0],[3,1,3,2],[2,3,2,1],[1,0,0,1]],[[1,2,3,0],[2,1,3,2],[2,3,2,1],[1,0,0,1]],[[1,3,2,0],[2,1,3,2],[2,3,2,1],[1,0,0,1]],[[2,2,2,0],[2,1,3,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[3,2,2,2],[2,3,1,0],[0,2,2,0]],[[0,2,2,1],[2,2,2,2],[3,3,1,0],[0,2,2,0]],[[0,2,2,1],[2,2,2,2],[2,4,1,0],[0,2,2,0]],[[0,2,2,1],[2,2,2,2],[2,3,1,0],[0,3,2,0]],[[0,2,2,1],[3,2,2,2],[2,3,1,0],[1,1,2,0]],[[0,2,2,1],[2,2,2,2],[3,3,1,0],[1,1,2,0]],[[0,2,2,1],[2,2,2,2],[2,4,1,0],[1,1,2,0]],[[0,2,2,1],[2,2,2,2],[2,3,1,0],[2,1,2,0]],[[1,2,2,0],[2,1,3,2],[3,3,2,0],[1,0,1,1]],[[1,2,2,0],[2,1,4,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,0],[3,1,3,2],[2,3,2,0],[1,0,1,1]],[[1,2,3,0],[2,1,3,2],[2,3,2,0],[1,0,1,1]],[[1,3,2,0],[2,1,3,2],[2,3,2,0],[1,0,1,1]],[[2,2,2,0],[2,1,3,2],[2,3,2,0],[1,0,1,1]],[[0,3,2,1],[2,2,2,2],[2,3,1,2],[1,0,0,1]],[[0,2,3,1],[2,2,2,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,2],[2,2,2,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,1],[2,2,2,3],[2,3,1,2],[1,0,0,1]],[[0,2,2,1],[2,2,2,2],[2,3,1,3],[1,0,0,1]],[[0,3,2,1],[2,2,2,2],[2,3,1,2],[1,0,1,0]],[[0,2,3,1],[2,2,2,2],[2,3,1,2],[1,0,1,0]],[[0,2,2,2],[2,2,2,2],[2,3,1,2],[1,0,1,0]],[[0,2,2,1],[2,2,2,3],[2,3,1,2],[1,0,1,0]],[[1,2,2,0],[2,1,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,0],[2,1,3,3],[2,3,1,2],[1,0,1,0]],[[1,2,2,0],[2,1,4,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,0],[3,1,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,3,0],[2,1,3,2],[2,3,1,2],[1,0,1,0]],[[1,3,2,0],[2,1,3,2],[2,3,1,2],[1,0,1,0]],[[2,2,2,0],[2,1,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,0],[2,1,3,2],[2,3,1,3],[1,0,0,1]],[[1,2,2,0],[2,1,3,2],[3,3,1,2],[1,0,0,1]],[[1,2,2,0],[2,1,3,3],[2,3,1,2],[1,0,0,1]],[[1,2,2,0],[2,1,4,2],[2,3,1,2],[1,0,0,1]],[[1,2,2,0],[3,1,3,2],[2,3,1,2],[1,0,0,1]],[[1,2,3,0],[2,1,3,2],[2,3,1,2],[1,0,0,1]],[[1,3,2,0],[2,1,3,2],[2,3,1,2],[1,0,0,1]],[[2,2,2,0],[2,1,3,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,1],[3,2,2,2],[2,3,2,0],[0,1,2,0]],[[0,2,2,1],[2,2,2,2],[3,3,2,0],[0,1,2,0]],[[0,2,2,1],[2,2,2,2],[2,4,2,0],[0,1,2,0]],[[0,2,2,1],[3,2,2,2],[2,3,2,0],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[3,3,2,0],[0,2,0,1]],[[0,2,2,1],[2,2,2,2],[2,4,2,0],[0,2,0,1]],[[0,2,2,1],[3,2,2,2],[2,3,2,0],[0,2,1,0]],[[0,2,2,1],[2,2,2,2],[3,3,2,0],[0,2,1,0]],[[0,2,2,1],[2,2,2,2],[2,4,2,0],[0,2,1,0]],[[0,2,2,1],[2,2,2,2],[2,3,2,0],[0,3,1,0]],[[0,2,2,1],[3,2,2,2],[2,3,2,0],[1,0,2,0]],[[0,2,2,1],[2,2,2,2],[3,3,2,0],[1,0,2,0]],[[0,2,2,1],[2,2,2,2],[2,4,2,0],[1,0,2,0]],[[0,2,2,1],[2,2,2,2],[2,3,2,0],[2,0,2,0]],[[0,2,2,1],[3,2,2,2],[2,3,2,0],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[3,3,2,0],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[2,4,2,0],[1,1,0,1]],[[0,2,2,1],[2,2,2,2],[2,3,2,0],[2,1,0,1]],[[0,2,2,1],[3,2,2,2],[2,3,2,0],[1,1,1,0]],[[0,2,2,1],[2,2,2,2],[3,3,2,0],[1,1,1,0]],[[0,2,2,1],[2,2,2,2],[2,4,2,0],[1,1,1,0]],[[0,2,2,1],[2,2,2,2],[2,3,2,0],[2,1,1,0]],[[0,2,2,1],[3,2,2,2],[2,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,2,2,2],[3,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,2,2,2],[2,4,2,0],[1,2,0,0]],[[0,2,2,1],[2,2,2,2],[2,3,2,0],[2,2,0,0]],[[0,3,2,1],[2,2,2,2],[2,3,2,1],[1,0,0,1]],[[0,2,3,1],[2,2,2,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,2],[2,2,2,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[2,2,2,3],[2,3,2,1],[1,0,0,1]],[[0,3,2,1],[2,2,2,2],[2,3,2,1],[1,0,1,0]],[[0,2,3,1],[2,2,2,2],[2,3,2,1],[1,0,1,0]],[[0,2,2,2],[2,2,2,2],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[2,2,2,3],[2,3,2,1],[1,0,1,0]],[[1,2,2,0],[2,1,3,2],[2,2,3,1],[2,1,0,0]],[[1,2,2,0],[2,1,3,2],[3,2,3,1],[1,1,0,0]],[[1,2,2,0],[2,1,3,3],[2,2,3,1],[1,1,0,0]],[[1,2,2,0],[2,1,4,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,0],[3,1,3,2],[2,2,3,1],[1,1,0,0]],[[1,2,3,0],[2,1,3,2],[2,2,3,1],[1,1,0,0]],[[1,3,2,0],[2,1,3,2],[2,2,3,1],[1,1,0,0]],[[2,2,2,0],[2,1,3,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,0],[2,1,3,2],[3,2,3,1],[0,2,0,0]],[[1,2,2,0],[2,1,3,3],[2,2,3,1],[0,2,0,0]],[[1,2,2,0],[2,1,4,2],[2,2,3,1],[0,2,0,0]],[[1,2,2,0],[3,1,3,2],[2,2,3,1],[0,2,0,0]],[[1,2,3,0],[2,1,3,2],[2,2,3,1],[0,2,0,0]],[[1,3,2,0],[2,1,3,2],[2,2,3,1],[0,2,0,0]],[[2,2,2,0],[2,1,3,2],[2,2,3,1],[0,2,0,0]],[[1,2,2,0],[2,1,3,2],[2,2,3,0],[2,2,0,0]],[[1,2,2,0],[2,1,3,2],[3,2,3,0],[1,2,0,0]],[[1,2,2,0],[2,1,4,2],[2,2,3,0],[1,2,0,0]],[[1,2,2,0],[3,1,3,2],[2,2,3,0],[1,2,0,0]],[[1,2,3,0],[2,1,3,2],[2,2,3,0],[1,2,0,0]],[[1,3,2,0],[2,1,3,2],[2,2,3,0],[1,2,0,0]],[[2,2,2,0],[2,1,3,2],[2,2,3,0],[1,2,0,0]],[[1,2,2,0],[2,1,3,2],[2,2,3,0],[2,1,1,0]],[[1,2,2,0],[2,1,3,2],[3,2,3,0],[1,1,1,0]],[[1,2,2,0],[2,1,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,0],[3,1,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,3,0],[2,1,3,2],[2,2,3,0],[1,1,1,0]],[[1,3,2,0],[2,1,3,2],[2,2,3,0],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[2,2,3,0],[2,0,2,0]],[[1,2,2,0],[2,1,3,2],[3,2,3,0],[1,0,2,0]],[[1,2,2,0],[2,1,4,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,0],[3,1,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[2,2,3,0],[1,0,2,0]],[[1,3,2,0],[2,1,3,2],[2,2,3,0],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[3,2,3,0],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,0],[3,1,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,3,0],[2,1,3,2],[2,2,3,0],[0,2,1,0]],[[1,3,2,0],[2,1,3,2],[2,2,3,0],[0,2,1,0]],[[2,2,2,0],[2,1,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[3,2,3,0],[0,1,2,0]],[[1,2,2,0],[2,1,4,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,0],[3,1,3,2],[2,2,3,0],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[2,2,3,0],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[2,2,3,0],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[2,2,3,0],[0,1,2,0]],[[0,2,2,1],[3,2,2,2],[2,3,3,0],[0,2,0,0]],[[0,2,2,1],[2,2,2,2],[3,3,3,0],[0,2,0,0]],[[0,2,2,1],[2,2,2,2],[2,4,3,0],[0,2,0,0]],[[0,2,2,1],[3,2,2,2],[2,3,3,0],[1,1,0,0]],[[0,2,2,1],[2,2,2,2],[3,3,3,0],[1,1,0,0]],[[0,2,2,1],[2,2,2,2],[2,4,3,0],[1,1,0,0]],[[0,2,2,1],[2,2,2,2],[2,3,3,0],[2,1,0,0]],[[1,2,2,0],[2,1,3,2],[2,2,2,1],[2,2,0,0]],[[1,2,2,0],[2,1,3,2],[3,2,2,1],[1,2,0,0]],[[1,2,2,0],[2,1,3,3],[2,2,2,1],[1,2,0,0]],[[1,2,2,0],[2,1,4,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,0],[3,1,3,2],[2,2,2,1],[1,2,0,0]],[[1,2,3,0],[2,1,3,2],[2,2,2,1],[1,2,0,0]],[[1,3,2,0],[2,1,3,2],[2,2,2,1],[1,2,0,0]],[[2,2,2,0],[2,1,3,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,0],[2,1,3,2],[2,2,2,1],[2,1,1,0]],[[1,2,2,0],[2,1,3,2],[3,2,2,1],[1,1,1,0]],[[1,2,2,0],[2,1,3,3],[2,2,2,1],[1,1,1,0]],[[1,2,2,0],[2,1,4,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,0],[3,1,3,2],[2,2,2,1],[1,1,1,0]],[[1,2,3,0],[2,1,3,2],[2,2,2,1],[1,1,1,0]],[[1,3,2,0],[2,1,3,2],[2,2,2,1],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[2,2,2,1],[2,1,0,1]],[[1,2,2,0],[2,1,3,2],[3,2,2,1],[1,1,0,1]],[[1,2,2,0],[2,1,3,3],[2,2,2,1],[1,1,0,1]],[[1,2,2,0],[2,1,4,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,0],[3,1,3,2],[2,2,2,1],[1,1,0,1]],[[1,2,3,0],[2,1,3,2],[2,2,2,1],[1,1,0,1]],[[1,3,2,0],[2,1,3,2],[2,2,2,1],[1,1,0,1]],[[2,2,2,0],[2,1,3,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,0],[2,1,3,2],[2,2,2,1],[2,0,2,0]],[[1,2,2,0],[2,1,3,2],[3,2,2,1],[1,0,2,0]],[[1,2,2,0],[2,1,3,3],[2,2,2,1],[1,0,2,0]],[[1,2,2,0],[2,1,4,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,0],[3,1,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[2,2,2,1],[1,0,2,0]],[[1,3,2,0],[2,1,3,2],[2,2,2,1],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[2,2,2,1],[2,0,1,1]],[[1,2,2,0],[2,1,3,2],[3,2,2,1],[1,0,1,1]],[[1,2,2,0],[2,1,3,3],[2,2,2,1],[1,0,1,1]],[[1,2,2,0],[2,1,4,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,0],[3,1,3,2],[2,2,2,1],[1,0,1,1]],[[1,2,3,0],[2,1,3,2],[2,2,2,1],[1,0,1,1]],[[1,3,2,0],[2,1,3,2],[2,2,2,1],[1,0,1,1]],[[2,2,2,0],[2,1,3,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,0],[2,1,3,2],[3,2,2,1],[0,2,1,0]],[[1,2,2,0],[2,1,3,3],[2,2,2,1],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,0],[3,1,3,2],[2,2,2,1],[0,2,1,0]],[[1,2,3,0],[2,1,3,2],[2,2,2,1],[0,2,1,0]],[[1,3,2,0],[2,1,3,2],[2,2,2,1],[0,2,1,0]],[[2,2,2,0],[2,1,3,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[3,2,2,1],[0,2,0,1]],[[1,2,2,0],[2,1,3,3],[2,2,2,1],[0,2,0,1]],[[1,2,2,0],[2,1,4,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,0],[3,1,3,2],[2,2,2,1],[0,2,0,1]],[[1,2,3,0],[2,1,3,2],[2,2,2,1],[0,2,0,1]],[[1,3,2,0],[2,1,3,2],[2,2,2,1],[0,2,0,1]],[[2,2,2,0],[2,1,3,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,0],[2,1,3,2],[3,2,2,1],[0,1,2,0]],[[1,2,2,0],[2,1,3,3],[2,2,2,1],[0,1,2,0]],[[1,2,2,0],[2,1,4,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,0],[3,1,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[2,2,2,1],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[2,2,2,1],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[3,2,2,1],[0,1,1,1]],[[1,2,2,0],[2,1,3,3],[2,2,2,1],[0,1,1,1]],[[1,2,2,0],[2,1,4,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,0],[3,1,3,2],[2,2,2,1],[0,1,1,1]],[[1,2,3,0],[2,1,3,2],[2,2,2,1],[0,1,1,1]],[[1,3,2,0],[2,1,3,2],[2,2,2,1],[0,1,1,1]],[[0,3,2,1],[2,2,2,2],[2,3,3,1],[1,0,0,0]],[[0,2,3,1],[2,2,2,2],[2,3,3,1],[1,0,0,0]],[[0,2,2,2],[2,2,2,2],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[2,2,2,3],[2,3,3,1],[1,0,0,0]],[[2,2,2,0],[2,1,3,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,2,2,0],[2,2,0,1]],[[1,2,2,0],[2,1,3,2],[3,2,2,0],[1,2,0,1]],[[1,2,2,0],[2,1,4,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,0],[3,1,3,2],[2,2,2,0],[1,2,0,1]],[[1,2,3,0],[2,1,3,2],[2,2,2,0],[1,2,0,1]],[[1,3,2,0],[2,1,3,2],[2,2,2,0],[1,2,0,1]],[[2,2,2,0],[2,1,3,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,0],[2,1,3,2],[2,2,2,0],[2,1,1,1]],[[1,2,2,0],[2,1,3,2],[3,2,2,0],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[2,2,2,0],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[2,2,2,0],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[2,2,2,0],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,2,2,0],[2,0,2,1]],[[1,2,2,0],[2,1,3,2],[3,2,2,0],[1,0,2,1]],[[1,2,2,0],[2,1,3,3],[2,2,2,0],[1,0,2,1]],[[1,2,2,0],[2,1,4,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,0],[3,1,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,3,0],[2,1,3,2],[2,2,2,0],[1,0,2,1]],[[1,3,2,0],[2,1,3,2],[2,2,2,0],[1,0,2,1]],[[2,2,2,0],[2,1,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,0],[2,1,3,2],[3,2,2,0],[0,2,1,1]],[[1,2,2,0],[2,1,3,3],[2,2,2,0],[0,2,1,1]],[[1,2,2,0],[2,1,4,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,0],[3,1,3,2],[2,2,2,0],[0,2,1,1]],[[1,2,3,0],[2,1,3,2],[2,2,2,0],[0,2,1,1]],[[1,3,2,0],[2,1,3,2],[2,2,2,0],[0,2,1,1]],[[2,2,2,0],[2,1,3,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[3,2,2,0],[0,1,2,1]],[[1,2,2,0],[2,1,3,3],[2,2,2,0],[0,1,2,1]],[[1,2,2,0],[2,1,4,2],[2,2,2,0],[0,1,2,1]],[[1,2,2,0],[3,1,3,2],[2,2,2,0],[0,1,2,1]],[[1,2,3,0],[2,1,3,2],[2,2,2,0],[0,1,2,1]],[[1,3,2,0],[2,1,3,2],[2,2,2,0],[0,1,2,1]],[[2,2,2,0],[2,1,3,2],[2,2,2,0],[0,1,2,1]],[[1,2,2,0],[2,1,3,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,0],[2,1,3,2],[3,2,1,2],[1,2,0,0]],[[1,2,2,0],[2,1,3,3],[2,2,1,2],[1,2,0,0]],[[1,2,2,0],[2,1,4,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,0],[3,1,3,2],[2,2,1,2],[1,2,0,0]],[[1,2,3,0],[2,1,3,2],[2,2,1,2],[1,2,0,0]],[[1,3,2,0],[2,1,3,2],[2,2,1,2],[1,2,0,0]],[[2,2,2,0],[2,1,3,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,0],[2,1,3,2],[2,2,1,2],[2,1,1,0]],[[1,2,2,0],[2,1,3,2],[2,2,1,3],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[3,2,1,2],[1,1,1,0]],[[1,2,2,0],[2,1,3,3],[2,2,1,2],[1,1,1,0]],[[1,2,2,0],[2,1,4,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,0],[3,1,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,3,0],[2,1,3,2],[2,2,1,2],[1,1,1,0]],[[1,3,2,0],[2,1,3,2],[2,2,1,2],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[2,2,1,2],[1,1,0,2]],[[1,2,2,0],[2,1,3,2],[2,2,1,2],[2,1,0,1]],[[1,2,2,0],[2,1,3,2],[2,2,1,3],[1,1,0,1]],[[1,2,2,0],[2,1,3,2],[3,2,1,2],[1,1,0,1]],[[1,2,2,0],[2,1,3,3],[2,2,1,2],[1,1,0,1]],[[1,2,2,0],[2,1,4,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,0],[3,1,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,3,0],[2,1,3,2],[2,2,1,2],[1,1,0,1]],[[1,3,2,0],[2,1,3,2],[2,2,1,2],[1,1,0,1]],[[2,2,2,0],[2,1,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,0],[2,1,3,2],[2,2,1,2],[2,0,2,0]],[[1,2,2,0],[2,1,3,2],[2,2,1,3],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[3,2,1,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,3],[2,2,1,2],[1,0,2,0]],[[1,2,2,0],[2,1,4,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,0],[3,1,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[2,2,1,2],[1,0,2,0]],[[1,3,2,0],[2,1,3,2],[2,2,1,2],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[2,2,1,2],[1,0,1,2]],[[1,2,2,0],[2,1,3,2],[2,2,1,2],[2,0,1,1]],[[1,2,2,0],[2,1,3,2],[2,2,1,3],[1,0,1,1]],[[1,2,2,0],[2,1,3,2],[3,2,1,2],[1,0,1,1]],[[1,2,2,0],[2,1,3,3],[2,2,1,2],[1,0,1,1]],[[1,2,2,0],[2,1,4,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,0],[3,1,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,3,0],[2,1,3,2],[2,2,1,2],[1,0,1,1]],[[1,3,2,0],[2,1,3,2],[2,2,1,2],[1,0,1,1]],[[2,2,2,0],[2,1,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,0],[2,1,3,2],[2,2,1,3],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[3,2,1,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,3],[2,2,1,2],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,0],[3,1,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,3,0],[2,1,3,2],[2,2,1,2],[0,2,1,0]],[[1,3,2,0],[2,1,3,2],[2,2,1,2],[0,2,1,0]],[[2,2,2,0],[2,1,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,2,1,2],[0,2,0,2]],[[1,2,2,0],[2,1,3,2],[2,2,1,3],[0,2,0,1]],[[1,2,2,0],[2,1,3,2],[3,2,1,2],[0,2,0,1]],[[1,2,2,0],[2,1,3,3],[2,2,1,2],[0,2,0,1]],[[1,2,2,0],[2,1,4,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,0],[3,1,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,3,0],[2,1,3,2],[2,2,1,2],[0,2,0,1]],[[1,3,2,0],[2,1,3,2],[2,2,1,2],[0,2,0,1]],[[2,2,2,0],[2,1,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,0],[2,1,3,2],[2,2,1,3],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[3,2,1,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,3],[2,2,1,2],[0,1,2,0]],[[1,2,2,0],[2,1,4,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,0],[3,1,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[2,2,1,2],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[2,2,1,2],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[2,2,1,2],[0,1,1,2]],[[1,2,2,0],[2,1,3,2],[2,2,1,3],[0,1,1,1]],[[1,2,2,0],[2,1,3,2],[3,2,1,2],[0,1,1,1]],[[1,2,2,0],[2,1,3,3],[2,2,1,2],[0,1,1,1]],[[1,2,2,0],[2,1,4,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,0],[3,1,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,3,0],[2,1,3,2],[2,2,1,2],[0,1,1,1]],[[1,3,2,0],[2,1,3,2],[2,2,1,2],[0,1,1,1]],[[2,2,2,0],[2,1,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,2,1,1],[2,1,2,0]],[[1,2,2,0],[2,1,3,2],[3,2,1,1],[1,1,2,0]],[[1,2,2,0],[2,1,3,3],[2,2,1,1],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,0],[3,1,3,2],[2,2,1,1],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[2,2,1,1],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[2,2,1,1],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[3,2,1,1],[0,2,2,0]],[[1,2,2,0],[2,1,3,3],[2,2,1,1],[0,2,2,0]],[[1,2,2,0],[2,1,4,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,0],[3,1,3,2],[2,2,1,1],[0,2,2,0]],[[1,2,3,0],[2,1,3,2],[2,2,1,1],[0,2,2,0]],[[1,3,2,0],[2,1,3,2],[2,2,1,1],[0,2,2,0]],[[2,2,2,0],[2,1,3,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,0],[2,1,3,2],[2,2,1,0],[2,1,2,1]],[[1,2,2,0],[2,1,3,2],[3,2,1,0],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[2,2,1,0],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,0],[3,1,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[2,2,1,0],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[2,2,1,0],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,0],[2,1,3,2],[3,2,1,0],[0,2,2,1]],[[1,2,2,0],[2,1,3,3],[2,2,1,0],[0,2,2,1]],[[1,2,2,0],[2,1,4,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,0],[3,1,3,2],[2,2,1,0],[0,2,2,1]],[[1,2,3,0],[2,1,3,2],[2,2,1,0],[0,2,2,1]],[[1,3,2,0],[2,1,3,2],[2,2,1,0],[0,2,2,1]],[[2,2,2,0],[2,1,3,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,0],[2,1,3,2],[2,2,0,2],[2,1,2,0]],[[1,2,2,0],[2,1,3,2],[2,2,0,3],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[3,2,0,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,3],[2,2,0,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,0],[3,1,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[2,2,0,2],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[2,2,0,2],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[2,2,0,2],[1,1,1,2]],[[1,2,2,0],[2,1,3,2],[2,2,0,2],[2,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,2,0,3],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[3,2,0,2],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[2,2,0,2],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[2,2,0,2],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[2,2,0,2],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,2,0,2],[1,0,2,2]],[[1,2,2,0],[2,1,3,2],[2,2,0,2],[1,0,3,1]],[[1,2,2,0],[2,1,3,2],[2,2,0,2],[2,0,2,1]],[[1,2,2,0],[2,1,3,2],[2,2,0,3],[1,0,2,1]],[[1,2,2,0],[2,1,3,2],[3,2,0,2],[1,0,2,1]],[[1,2,2,0],[2,1,3,3],[2,2,0,2],[1,0,2,1]],[[1,2,2,0],[2,1,4,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,0],[3,1,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,3,0],[2,1,3,2],[2,2,0,2],[1,0,2,1]],[[1,3,2,0],[2,1,3,2],[2,2,0,2],[1,0,2,1]],[[2,2,2,0],[2,1,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,0],[2,1,3,2],[2,2,0,3],[0,2,2,0]],[[1,2,2,0],[2,1,3,2],[3,2,0,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,3],[2,2,0,2],[0,2,2,0]],[[1,2,2,0],[2,1,4,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,0],[3,1,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,3,0],[2,1,3,2],[2,2,0,2],[0,2,2,0]],[[1,3,2,0],[2,1,3,2],[2,2,0,2],[0,2,2,0]],[[2,2,2,0],[2,1,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,2],[2,2,0,2],[0,2,1,2]],[[1,2,2,0],[2,1,3,2],[2,2,0,3],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[3,2,0,2],[0,2,1,1]],[[1,2,2,0],[2,1,3,3],[2,2,0,2],[0,2,1,1]],[[1,2,2,0],[2,1,4,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,0],[3,1,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,3,0],[2,1,3,2],[2,2,0,2],[0,2,1,1]],[[1,3,2,0],[2,1,3,2],[2,2,0,2],[0,2,1,1]],[[2,2,2,0],[2,1,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[2,2,0,2],[0,1,2,2]],[[1,2,2,0],[2,1,3,2],[2,2,0,2],[0,1,3,1]],[[1,2,2,0],[2,1,3,2],[2,2,0,3],[0,1,2,1]],[[1,2,2,0],[2,1,3,2],[3,2,0,2],[0,1,2,1]],[[1,2,2,0],[2,1,3,3],[2,2,0,2],[0,1,2,1]],[[1,2,2,0],[2,1,4,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,0],[3,1,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,3,0],[2,1,3,2],[2,2,0,2],[0,1,2,1]],[[1,3,2,0],[2,1,3,2],[2,2,0,2],[0,1,2,1]],[[2,2,2,0],[2,1,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,0],[2,1,3,2],[2,2,0,1],[2,1,2,1]],[[1,2,2,0],[2,1,3,2],[3,2,0,1],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[2,2,0,1],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,0],[3,1,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[2,2,0,1],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[2,2,0,1],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,0],[2,1,3,2],[3,2,0,1],[0,2,2,1]],[[1,2,2,0],[2,1,3,3],[2,2,0,1],[0,2,2,1]],[[1,2,2,0],[2,1,4,2],[2,2,0,1],[0,2,2,1]],[[1,2,2,0],[3,1,3,2],[2,2,0,1],[0,2,2,1]],[[1,2,3,0],[2,1,3,2],[2,2,0,1],[0,2,2,1]],[[1,3,2,0],[2,1,3,2],[2,2,0,1],[0,2,2,1]],[[2,2,2,0],[2,1,3,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,1],[2,2,3,0],[0,0,3,3],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[0,0,3,2],[1,2,3,1]],[[0,2,2,1],[2,2,3,0],[0,0,3,2],[1,2,2,2]],[[0,2,2,1],[2,2,3,0],[0,1,2,3],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[0,1,2,2],[2,2,2,1]],[[0,2,2,1],[2,2,3,0],[0,1,2,2],[1,3,2,1]],[[0,2,2,1],[2,2,3,0],[0,1,2,2],[1,2,3,1]],[[0,2,2,1],[2,2,3,0],[0,1,2,2],[1,2,2,2]],[[0,3,2,1],[2,2,3,0],[0,1,3,1],[1,2,2,1]],[[0,2,3,1],[2,2,3,0],[0,1,3,1],[1,2,2,1]],[[0,2,2,2],[2,2,3,0],[0,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,4,0],[0,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[0,1,4,1],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[0,1,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,3,0],[0,1,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,3,0],[0,1,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,3,0],[0,1,3,1],[1,2,2,2]],[[0,3,2,1],[2,2,3,0],[0,1,3,2],[1,2,1,1]],[[0,2,3,1],[2,2,3,0],[0,1,3,2],[1,2,1,1]],[[0,2,2,2],[2,2,3,0],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,4,0],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[0,1,4,2],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[0,1,3,3],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[0,1,3,2],[1,2,1,2]],[[0,3,2,1],[2,2,3,0],[0,1,3,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,0],[0,1,3,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,0],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,4,0],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,3,0],[0,1,4,2],[1,2,2,0]],[[0,2,2,1],[2,2,3,0],[0,1,3,3],[1,2,2,0]],[[0,2,2,1],[2,2,3,0],[0,1,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,3,0],[0,1,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,3,0],[0,1,3,2],[1,2,3,0]],[[0,2,2,1],[2,2,3,0],[0,2,2,3],[1,1,2,1]],[[0,2,2,1],[2,2,3,0],[0,2,2,2],[1,1,3,1]],[[0,2,2,1],[2,2,3,0],[0,2,2,2],[1,1,2,2]],[[0,3,2,1],[2,2,3,0],[0,2,3,1],[1,1,2,1]],[[0,2,3,1],[2,2,3,0],[0,2,3,1],[1,1,2,1]],[[0,2,2,2],[2,2,3,0],[0,2,3,1],[1,1,2,1]],[[0,2,2,1],[2,2,4,0],[0,2,3,1],[1,1,2,1]],[[0,2,2,1],[2,2,3,0],[0,2,4,1],[1,1,2,1]],[[0,2,2,1],[2,2,3,0],[0,2,3,1],[1,1,3,1]],[[0,2,2,1],[2,2,3,0],[0,2,3,1],[1,1,2,2]],[[0,3,2,1],[2,2,3,0],[0,2,3,1],[1,2,1,1]],[[0,2,3,1],[2,2,3,0],[0,2,3,1],[1,2,1,1]],[[0,2,2,2],[2,2,3,0],[0,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,4,0],[0,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[0,2,4,1],[1,2,1,1]],[[0,3,2,1],[2,2,3,0],[0,2,3,2],[1,0,2,1]],[[0,2,3,1],[2,2,3,0],[0,2,3,2],[1,0,2,1]],[[0,2,2,2],[2,2,3,0],[0,2,3,2],[1,0,2,1]],[[0,2,2,1],[2,2,4,0],[0,2,3,2],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[0,2,4,2],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[0,2,3,3],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[0,2,3,2],[1,0,2,2]],[[0,3,2,1],[2,2,3,0],[0,2,3,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,0],[0,2,3,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,0],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,4,0],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[0,2,4,2],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[0,2,3,3],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[0,2,3,2],[1,1,1,2]],[[0,3,2,1],[2,2,3,0],[0,2,3,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,0],[0,2,3,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,0],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,4,0],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,3,0],[0,2,4,2],[1,1,2,0]],[[0,2,2,1],[2,2,3,0],[0,2,3,3],[1,1,2,0]],[[0,2,2,1],[2,2,3,0],[0,2,3,2],[1,1,3,0]],[[0,3,2,1],[2,2,3,0],[0,2,3,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,0],[0,2,3,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,0],[0,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,4,0],[0,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,3,0],[0,2,4,2],[1,2,0,1]],[[0,2,2,1],[2,2,3,0],[0,2,3,3],[1,2,0,1]],[[0,2,2,1],[2,2,3,0],[0,2,3,2],[1,2,0,2]],[[0,3,2,1],[2,2,3,0],[0,2,3,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,0],[0,2,3,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,0],[0,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,4,0],[0,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,3,0],[0,2,4,2],[1,2,1,0]],[[0,2,2,1],[2,2,3,0],[0,2,3,3],[1,2,1,0]],[[0,3,2,1],[2,2,3,0],[0,3,0,2],[1,2,2,1]],[[0,2,3,1],[2,2,3,0],[0,3,0,2],[1,2,2,1]],[[0,2,2,2],[2,2,3,0],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,4,0],[0,3,0,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,0],[0,3,1,1],[1,2,2,1]],[[0,2,3,1],[2,2,3,0],[0,3,1,1],[1,2,2,1]],[[0,2,2,2],[2,2,3,0],[0,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,4,0],[0,3,1,1],[1,2,2,1]],[[0,3,2,1],[2,2,3,0],[0,3,1,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,0],[0,3,1,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,0],[0,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,4,0],[0,3,1,2],[1,2,2,0]],[[0,3,2,1],[2,2,3,0],[0,3,2,1],[1,1,2,1]],[[0,2,3,1],[2,2,3,0],[0,3,2,1],[1,1,2,1]],[[0,2,2,2],[2,2,3,0],[0,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,2,4,0],[0,3,2,1],[1,1,2,1]],[[0,3,2,1],[2,2,3,0],[0,3,2,1],[1,2,1,1]],[[0,2,3,1],[2,2,3,0],[0,3,2,1],[1,2,1,1]],[[0,2,2,2],[2,2,3,0],[0,3,2,1],[1,2,1,1]],[[0,2,2,1],[2,2,4,0],[0,3,2,1],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[0,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,2,3,0],[0,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,2,3,0],[0,3,2,2],[0,1,2,2]],[[0,3,2,1],[2,2,3,0],[0,3,2,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,0],[0,3,2,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,0],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,2,4,0],[0,3,2,2],[1,1,1,1]],[[0,3,2,1],[2,2,3,0],[0,3,2,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,0],[0,3,2,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,0],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,4,0],[0,3,2,2],[1,1,2,0]],[[0,3,2,1],[2,2,3,0],[0,3,2,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,0],[0,3,2,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,0],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,4,0],[0,3,2,2],[1,2,0,1]],[[0,3,2,1],[2,2,3,0],[0,3,2,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,0],[0,3,2,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,0],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,4,0],[0,3,2,2],[1,2,1,0]],[[0,3,2,1],[2,2,3,0],[0,3,3,1],[0,1,2,1]],[[0,2,3,1],[2,2,3,0],[0,3,3,1],[0,1,2,1]],[[0,2,2,2],[2,2,3,0],[0,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,4,0],[0,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,3,0],[0,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,2,3,0],[0,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,2,3,0],[0,3,3,1],[0,1,2,2]],[[0,3,2,1],[2,2,3,0],[0,3,3,1],[0,2,1,1]],[[0,2,3,1],[2,2,3,0],[0,3,3,1],[0,2,1,1]],[[0,2,2,2],[2,2,3,0],[0,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,4,0],[0,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[0,3,4,1],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,0],[2,1,3,2],[3,1,3,2],[1,0,0,1]],[[1,2,2,0],[2,1,3,3],[2,1,3,2],[1,0,0,1]],[[1,2,2,0],[2,1,4,2],[2,1,3,2],[1,0,0,1]],[[1,2,2,0],[3,1,3,2],[2,1,3,2],[1,0,0,1]],[[0,3,2,1],[2,2,3,0],[0,3,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,0],[0,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,0],[0,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,4,0],[0,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,3,0],[0,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,2,3,0],[0,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,3,0],[0,3,3,2],[0,0,2,2]],[[0,3,2,1],[2,2,3,0],[0,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,0],[0,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,0],[0,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,0],[0,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,0],[0,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,0],[0,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,3,0],[0,3,3,2],[0,1,1,2]],[[0,3,2,1],[2,2,3,0],[0,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,0],[0,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,0],[0,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,0],[0,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[0,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[0,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[0,3,3,2],[0,1,3,0]],[[0,3,2,1],[2,2,3,0],[0,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,0],[0,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,0],[0,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,4,0],[0,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[0,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[0,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[0,3,3,2],[0,2,0,2]],[[0,3,2,1],[2,2,3,0],[0,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,0],[0,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,0],[0,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,4,0],[0,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[0,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[0,3,3,3],[0,2,1,0]],[[1,2,3,0],[2,1,3,2],[2,1,3,2],[1,0,0,1]],[[1,3,2,0],[2,1,3,2],[2,1,3,2],[1,0,0,1]],[[2,2,2,0],[2,1,3,2],[2,1,3,2],[1,0,0,1]],[[0,3,2,1],[2,2,3,0],[0,3,3,2],[1,2,0,0]],[[0,2,3,1],[2,2,3,0],[0,3,3,2],[1,2,0,0]],[[0,2,2,2],[2,2,3,0],[0,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,2,4,0],[0,3,3,2],[1,2,0,0]],[[1,2,2,0],[2,1,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,0],[2,1,3,3],[2,1,3,2],[0,1,0,1]],[[1,2,2,0],[2,1,4,2],[2,1,3,2],[0,1,0,1]],[[1,2,2,0],[3,1,3,2],[2,1,3,2],[0,1,0,1]],[[1,2,3,0],[2,1,3,2],[2,1,3,2],[0,1,0,1]],[[1,3,2,0],[2,1,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,2,3,0],[1,0,2,3],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[1,0,2,2],[2,2,2,1]],[[0,2,2,1],[2,2,3,0],[1,0,2,2],[1,3,2,1]],[[0,2,2,1],[2,2,3,0],[1,0,2,2],[1,2,3,1]],[[0,2,2,1],[2,2,3,0],[1,0,2,2],[1,2,2,2]],[[0,3,2,1],[2,2,3,0],[1,0,3,1],[1,2,2,1]],[[0,2,3,1],[2,2,3,0],[1,0,3,1],[1,2,2,1]],[[0,2,2,2],[2,2,3,0],[1,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,4,0],[1,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[1,0,4,1],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[1,0,3,1],[2,2,2,1]],[[0,2,2,1],[2,2,3,0],[1,0,3,1],[1,3,2,1]],[[0,2,2,1],[2,2,3,0],[1,0,3,1],[1,2,3,1]],[[0,2,2,1],[2,2,3,0],[1,0,3,1],[1,2,2,2]],[[0,2,2,1],[2,2,3,0],[1,0,3,3],[0,2,2,1]],[[0,2,2,1],[2,2,3,0],[1,0,3,2],[0,2,3,1]],[[0,2,2,1],[2,2,3,0],[1,0,3,2],[0,2,2,2]],[[0,3,2,1],[2,2,3,0],[1,0,3,2],[1,2,1,1]],[[0,2,3,1],[2,2,3,0],[1,0,3,2],[1,2,1,1]],[[0,2,2,2],[2,2,3,0],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,4,0],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[1,0,4,2],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[1,0,3,3],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[1,0,3,2],[1,2,1,2]],[[0,3,2,1],[2,2,3,0],[1,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,0],[1,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,0],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,4,0],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,3,0],[1,0,4,2],[1,2,2,0]],[[0,2,2,1],[2,2,3,0],[1,0,3,3],[1,2,2,0]],[[0,2,2,1],[2,2,3,0],[1,0,3,2],[2,2,2,0]],[[0,2,2,1],[2,2,3,0],[1,0,3,2],[1,3,2,0]],[[0,2,2,1],[2,2,3,0],[1,0,3,2],[1,2,3,0]],[[0,2,2,1],[2,2,3,0],[1,1,2,3],[0,2,2,1]],[[0,2,2,1],[2,2,3,0],[1,1,2,2],[0,3,2,1]],[[0,2,2,1],[2,2,3,0],[1,1,2,2],[0,2,3,1]],[[0,2,2,1],[2,2,3,0],[1,1,2,2],[0,2,2,2]],[[0,3,2,1],[2,2,3,0],[1,1,3,1],[0,2,2,1]],[[0,2,3,1],[2,2,3,0],[1,1,3,1],[0,2,2,1]],[[0,2,2,2],[2,2,3,0],[1,1,3,1],[0,2,2,1]],[[0,2,2,1],[2,2,4,0],[1,1,3,1],[0,2,2,1]],[[0,2,2,1],[2,2,3,0],[1,1,4,1],[0,2,2,1]],[[0,2,2,1],[2,2,3,0],[1,1,3,1],[0,3,2,1]],[[0,2,2,1],[2,2,3,0],[1,1,3,1],[0,2,3,1]],[[0,2,2,1],[2,2,3,0],[1,1,3,1],[0,2,2,2]],[[0,3,2,1],[2,2,3,0],[1,1,3,2],[0,2,1,1]],[[0,2,3,1],[2,2,3,0],[1,1,3,2],[0,2,1,1]],[[0,2,2,2],[2,2,3,0],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,4,0],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[1,1,4,2],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[1,1,3,3],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[1,1,3,2],[0,2,1,2]],[[0,3,2,1],[2,2,3,0],[1,1,3,2],[0,2,2,0]],[[0,2,3,1],[2,2,3,0],[1,1,3,2],[0,2,2,0]],[[0,2,2,2],[2,2,3,0],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,4,0],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,3,0],[1,1,4,2],[0,2,2,0]],[[0,2,2,1],[2,2,3,0],[1,1,3,3],[0,2,2,0]],[[0,2,2,1],[2,2,3,0],[1,1,3,2],[0,3,2,0]],[[0,2,2,1],[2,2,3,0],[1,1,3,2],[0,2,3,0]],[[2,2,2,0],[2,1,3,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,2,3,0],[1,2,2,3],[0,1,2,1]],[[0,2,2,1],[2,2,3,0],[1,2,2,2],[0,1,3,1]],[[0,2,2,1],[2,2,3,0],[1,2,2,2],[0,1,2,2]],[[0,2,2,1],[2,2,3,0],[1,2,2,3],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[1,2,2,2],[1,0,3,1]],[[0,2,2,1],[2,2,3,0],[1,2,2,2],[1,0,2,2]],[[0,3,2,1],[2,2,3,0],[1,2,3,1],[0,1,2,1]],[[0,2,3,1],[2,2,3,0],[1,2,3,1],[0,1,2,1]],[[0,2,2,2],[2,2,3,0],[1,2,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,4,0],[1,2,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,3,0],[1,2,4,1],[0,1,2,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,1],[0,1,3,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,1],[0,1,2,2]],[[0,3,2,1],[2,2,3,0],[1,2,3,1],[0,2,1,1]],[[0,2,3,1],[2,2,3,0],[1,2,3,1],[0,2,1,1]],[[0,2,2,2],[2,2,3,0],[1,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,4,0],[1,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[1,2,4,1],[0,2,1,1]],[[0,3,2,1],[2,2,3,0],[1,2,3,1],[1,0,2,1]],[[0,2,3,1],[2,2,3,0],[1,2,3,1],[1,0,2,1]],[[0,2,2,2],[2,2,3,0],[1,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,4,0],[1,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[1,2,4,1],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,1],[1,0,3,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,1],[1,0,2,2]],[[0,3,2,1],[2,2,3,0],[1,2,3,1],[1,1,1,1]],[[0,2,3,1],[2,2,3,0],[1,2,3,1],[1,1,1,1]],[[0,2,2,2],[2,2,3,0],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,4,0],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[1,2,4,1],[1,1,1,1]],[[0,3,2,1],[2,2,3,0],[1,2,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,0],[1,2,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,0],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,4,0],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,3,0],[1,2,4,2],[0,0,2,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,2],[0,0,2,2]],[[0,3,2,1],[2,2,3,0],[1,2,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,0],[1,2,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,0],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,0],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,0],[1,2,4,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,2],[0,1,1,2]],[[0,3,2,1],[2,2,3,0],[1,2,3,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,0],[1,2,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,0],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,0],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[1,2,4,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[1,2,3,3],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[1,2,3,2],[0,1,3,0]],[[0,3,2,1],[2,2,3,0],[1,2,3,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,0],[1,2,3,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,0],[1,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,4,0],[1,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[1,2,4,2],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,3],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,2],[0,2,0,2]],[[0,3,2,1],[2,2,3,0],[1,2,3,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,0],[1,2,3,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,0],[1,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,4,0],[1,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[1,2,4,2],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[1,2,3,3],[0,2,1,0]],[[0,3,2,1],[2,2,3,0],[1,2,3,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,0],[1,2,3,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,0],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,4,0],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,3,0],[1,2,4,2],[1,0,1,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,3],[1,0,1,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,2],[1,0,1,2]],[[0,3,2,1],[2,2,3,0],[1,2,3,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,0],[1,2,3,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,0],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,4,0],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[1,2,4,2],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[1,2,3,3],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[1,2,3,2],[1,0,3,0]],[[0,3,2,1],[2,2,3,0],[1,2,3,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,0],[1,2,3,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,0],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,4,0],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,3,0],[1,2,4,2],[1,1,0,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,3],[1,1,0,1]],[[0,2,2,1],[2,2,3,0],[1,2,3,2],[1,1,0,2]],[[0,3,2,1],[2,2,3,0],[1,2,3,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,0],[1,2,3,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,0],[1,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,4,0],[1,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,3,0],[1,2,4,2],[1,1,1,0]],[[0,2,2,1],[2,2,3,0],[1,2,3,3],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,3,1],[2,1,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,4,1],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[3,1,3,1],[1,1,1,0]],[[1,2,2,0],[2,1,3,3],[2,1,3,1],[1,1,1,0]],[[1,2,2,0],[2,1,4,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,0],[3,1,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,3,0],[2,1,3,2],[2,1,3,1],[1,1,1,0]],[[1,3,2,0],[2,1,3,2],[2,1,3,1],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,3,1],[2,1,0,1]],[[1,2,2,0],[2,1,3,2],[2,1,4,1],[1,1,0,1]],[[1,2,2,0],[2,1,3,2],[3,1,3,1],[1,1,0,1]],[[1,2,2,0],[2,1,3,3],[2,1,3,1],[1,1,0,1]],[[1,2,2,0],[2,1,4,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,0],[3,1,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,3,0],[2,1,3,2],[2,1,3,1],[1,1,0,1]],[[1,3,2,0],[2,1,3,2],[2,1,3,1],[1,1,0,1]],[[2,2,2,0],[2,1,3,2],[2,1,3,1],[1,1,0,1]],[[0,3,2,1],[2,2,3,0],[1,3,0,2],[0,2,2,1]],[[0,2,3,1],[2,2,3,0],[1,3,0,2],[0,2,2,1]],[[0,2,2,2],[2,2,3,0],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,4,0],[1,3,0,2],[0,2,2,1]],[[0,3,2,1],[2,2,3,0],[1,3,0,2],[1,1,2,1]],[[0,2,3,1],[2,2,3,0],[1,3,0,2],[1,1,2,1]],[[0,2,2,2],[2,2,3,0],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,4,0],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,3,0],[1,4,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[1,3,1,0],[2,2,2,1]],[[0,2,2,1],[2,2,3,0],[1,3,1,0],[1,3,2,1]],[[0,2,2,1],[2,2,3,0],[1,3,1,0],[1,2,3,1]],[[0,3,2,1],[2,2,3,0],[1,3,1,1],[0,2,2,1]],[[0,2,3,1],[2,2,3,0],[1,3,1,1],[0,2,2,1]],[[0,2,2,2],[2,2,3,0],[1,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,2,4,0],[1,3,1,1],[0,2,2,1]],[[0,3,2,1],[2,2,3,0],[1,3,1,1],[1,1,2,1]],[[0,2,3,1],[2,2,3,0],[1,3,1,1],[1,1,2,1]],[[0,2,2,2],[2,2,3,0],[1,3,1,1],[1,1,2,1]],[[0,2,2,1],[2,2,4,0],[1,3,1,1],[1,1,2,1]],[[0,2,2,1],[2,2,3,0],[1,4,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,3,0],[1,3,1,1],[2,2,2,0]],[[0,2,2,1],[2,2,3,0],[1,3,1,1],[1,3,2,0]],[[0,3,2,1],[2,2,3,0],[1,3,1,2],[0,2,2,0]],[[0,2,3,1],[2,2,3,0],[1,3,1,2],[0,2,2,0]],[[0,2,2,2],[2,2,3,0],[1,3,1,2],[0,2,2,0]],[[0,2,2,1],[2,2,4,0],[1,3,1,2],[0,2,2,0]],[[0,3,2,1],[2,2,3,0],[1,3,1,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,0],[1,3,1,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,0],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,4,0],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,3,0],[1,4,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[1,3,2,0],[2,2,1,1]],[[0,2,2,1],[2,2,3,0],[1,3,2,0],[1,3,1,1]],[[0,3,2,1],[2,2,3,0],[1,3,2,1],[0,1,2,1]],[[0,2,3,1],[2,2,3,0],[1,3,2,1],[0,1,2,1]],[[0,2,2,2],[2,2,3,0],[1,3,2,1],[0,1,2,1]],[[0,2,2,1],[2,2,4,0],[1,3,2,1],[0,1,2,1]],[[0,3,2,1],[2,2,3,0],[1,3,2,1],[0,2,1,1]],[[0,2,3,1],[2,2,3,0],[1,3,2,1],[0,2,1,1]],[[0,2,2,2],[2,2,3,0],[1,3,2,1],[0,2,1,1]],[[0,2,2,1],[2,2,4,0],[1,3,2,1],[0,2,1,1]],[[0,3,2,1],[2,2,3,0],[1,3,2,1],[1,0,2,1]],[[0,2,3,1],[2,2,3,0],[1,3,2,1],[1,0,2,1]],[[0,2,2,2],[2,2,3,0],[1,3,2,1],[1,0,2,1]],[[0,2,2,1],[2,2,4,0],[1,3,2,1],[1,0,2,1]],[[0,3,2,1],[2,2,3,0],[1,3,2,1],[1,1,1,1]],[[0,2,3,1],[2,2,3,0],[1,3,2,1],[1,1,1,1]],[[0,2,2,2],[2,2,3,0],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,2,4,0],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[1,4,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,3,0],[1,3,2,1],[2,2,1,0]],[[0,2,2,1],[2,2,3,0],[1,3,2,1],[1,3,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,3,1],[1,0,3,0]],[[1,2,2,0],[2,1,3,2],[2,1,3,1],[2,0,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,4,1],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[3,1,3,1],[1,0,2,0]],[[1,2,2,0],[2,1,3,3],[2,1,3,1],[1,0,2,0]],[[1,2,2,0],[2,1,4,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,0],[3,1,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[2,1,3,1],[1,0,2,0]],[[0,3,2,1],[2,2,3,0],[1,3,2,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,0],[1,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,0],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,0],[1,3,2,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,0],[1,3,2,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,0],[1,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,0],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,0],[1,3,2,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,0],[1,3,2,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,0],[1,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,0],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,4,0],[1,3,2,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,0],[1,3,2,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,0],[1,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,0],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,4,0],[1,3,2,2],[0,2,1,0]],[[1,3,2,0],[2,1,3,2],[2,1,3,1],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,3,1],[2,0,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,4,1],[1,0,1,1]],[[1,2,2,0],[2,1,3,2],[3,1,3,1],[1,0,1,1]],[[1,2,2,0],[2,1,3,3],[2,1,3,1],[1,0,1,1]],[[1,2,2,0],[2,1,4,2],[2,1,3,1],[1,0,1,1]],[[1,2,2,0],[3,1,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,3,0],[2,1,3,2],[2,1,3,1],[1,0,1,1]],[[0,3,2,1],[2,2,3,0],[1,3,2,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,0],[1,3,2,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,0],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,4,0],[1,3,2,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,0],[1,3,2,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,0],[1,3,2,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,0],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,4,0],[1,3,2,2],[1,0,2,0]],[[0,3,2,1],[2,2,3,0],[1,3,2,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,0],[1,3,2,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,0],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,4,0],[1,3,2,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,0],[1,3,2,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,0],[1,3,2,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,0],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,4,0],[1,3,2,2],[1,1,1,0]],[[1,3,2,0],[2,1,3,2],[2,1,3,1],[1,0,1,1]],[[2,2,2,0],[2,1,3,2],[2,1,3,1],[1,0,1,1]],[[0,3,2,1],[2,2,3,0],[1,3,2,2],[1,2,0,0]],[[0,2,3,1],[2,2,3,0],[1,3,2,2],[1,2,0,0]],[[0,2,2,2],[2,2,3,0],[1,3,2,2],[1,2,0,0]],[[0,2,2,1],[2,2,4,0],[1,3,2,2],[1,2,0,0]],[[1,2,2,0],[2,1,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[3,1,3,1],[0,2,1,0]],[[1,2,2,0],[2,1,3,3],[2,1,3,1],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,0],[3,1,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,3,0],[2,1,3,2],[2,1,3,1],[0,2,1,0]],[[1,3,2,0],[2,1,3,2],[2,1,3,1],[0,2,1,0]],[[2,2,2,0],[2,1,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,4,1],[0,2,0,1]],[[1,2,2,0],[2,1,3,2],[3,1,3,1],[0,2,0,1]],[[1,2,2,0],[2,1,3,3],[2,1,3,1],[0,2,0,1]],[[1,2,2,0],[2,1,4,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[1,4,3,0],[1,2,1,0]],[[0,2,2,1],[2,2,3,0],[1,3,3,0],[2,2,1,0]],[[0,2,2,1],[2,2,3,0],[1,3,3,0],[1,3,1,0]],[[1,2,2,0],[3,1,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,3,0],[2,1,3,2],[2,1,3,1],[0,2,0,1]],[[1,3,2,0],[2,1,3,2],[2,1,3,1],[0,2,0,1]],[[2,2,2,0],[2,1,3,2],[2,1,3,1],[0,2,0,1]],[[0,3,2,1],[2,2,3,0],[1,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,2,3,0],[1,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,2,3,0],[1,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,2,4,0],[1,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,2,3,0],[1,3,4,1],[0,0,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,3,1],[0,1,3,0]],[[1,2,2,0],[2,1,3,2],[2,1,4,1],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[3,1,3,1],[0,1,2,0]],[[1,2,2,0],[2,1,3,3],[2,1,3,1],[0,1,2,0]],[[1,2,2,0],[2,1,4,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,0],[3,1,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[2,1,3,1],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[2,1,3,1],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,4,1],[0,1,1,1]],[[1,2,2,0],[2,1,3,2],[3,1,3,1],[0,1,1,1]],[[1,2,2,0],[2,1,3,3],[2,1,3,1],[0,1,1,1]],[[1,2,2,0],[2,1,4,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,0],[3,1,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,3,0],[2,1,3,2],[2,1,3,1],[0,1,1,1]],[[1,3,2,0],[2,1,3,2],[2,1,3,1],[0,1,1,1]],[[2,2,2,0],[2,1,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,4,1],[0,0,2,1]],[[1,2,2,0],[2,1,3,3],[2,1,3,1],[0,0,2,1]],[[1,2,2,0],[2,1,4,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,0],[3,1,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,3,0],[2,1,3,2],[2,1,3,1],[0,0,2,1]],[[1,3,2,0],[2,1,3,2],[2,1,3,1],[0,0,2,1]],[[2,2,2,0],[2,1,3,2],[2,1,3,1],[0,0,2,1]],[[0,3,2,1],[2,2,3,0],[1,3,3,2],[0,0,1,1]],[[0,2,3,1],[2,2,3,0],[1,3,3,2],[0,0,1,1]],[[0,2,2,2],[2,2,3,0],[1,3,3,2],[0,0,1,1]],[[0,2,2,1],[2,2,4,0],[1,3,3,2],[0,0,1,1]],[[0,2,2,1],[2,2,3,0],[1,3,4,2],[0,0,1,1]],[[0,2,2,1],[2,2,3,0],[1,3,3,3],[0,0,1,1]],[[0,2,2,1],[2,2,3,0],[1,3,3,2],[0,0,1,2]],[[0,3,2,1],[2,2,3,0],[1,3,3,2],[0,0,2,0]],[[0,2,3,1],[2,2,3,0],[1,3,3,2],[0,0,2,0]],[[0,2,2,2],[2,2,3,0],[1,3,3,2],[0,0,2,0]],[[0,2,2,1],[2,2,4,0],[1,3,3,2],[0,0,2,0]],[[0,2,2,1],[2,2,3,0],[1,3,4,2],[0,0,2,0]],[[0,2,2,1],[2,2,3,0],[1,3,3,3],[0,0,2,0]],[[0,3,2,1],[2,2,3,0],[1,3,3,2],[0,2,0,0]],[[0,2,3,1],[2,2,3,0],[1,3,3,2],[0,2,0,0]],[[0,2,2,2],[2,2,3,0],[1,3,3,2],[0,2,0,0]],[[0,2,2,1],[2,2,4,0],[1,3,3,2],[0,2,0,0]],[[1,2,2,0],[2,1,3,2],[2,1,3,0],[1,3,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,3,0],[2,2,1,0]],[[1,2,2,0],[2,1,3,2],[3,1,3,0],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[2,1,3,0],[1,2,1,0]],[[1,2,2,0],[3,1,3,2],[2,1,3,0],[1,2,1,0]],[[1,2,3,0],[2,1,3,2],[2,1,3,0],[1,2,1,0]],[[1,3,2,0],[2,1,3,2],[2,1,3,0],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[2,1,3,0],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,3,0],[2,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,4,0],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[3,1,3,0],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[2,1,3,0],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[2,1,3,0],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[2,1,3,0],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,3,0],[1,0,2,2]],[[1,2,2,0],[2,1,3,2],[2,1,3,0],[1,0,3,1]],[[1,2,2,0],[2,1,3,2],[2,1,3,0],[2,0,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,4,0],[1,0,2,1]],[[0,3,2,1],[2,2,3,0],[1,3,3,2],[1,1,0,0]],[[0,2,3,1],[2,2,3,0],[1,3,3,2],[1,1,0,0]],[[0,2,2,2],[2,2,3,0],[1,3,3,2],[1,1,0,0]],[[0,2,2,1],[2,2,4,0],[1,3,3,2],[1,1,0,0]],[[1,2,2,0],[2,1,3,2],[3,1,3,0],[1,0,2,1]],[[1,2,2,0],[2,1,3,3],[2,1,3,0],[1,0,2,1]],[[1,2,2,0],[2,1,4,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,0],[3,1,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,3,0],[2,1,3,2],[2,1,3,0],[1,0,2,1]],[[1,3,2,0],[2,1,3,2],[2,1,3,0],[1,0,2,1]],[[2,2,2,0],[2,1,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,4,0],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[3,1,3,0],[0,2,1,1]],[[1,2,2,0],[2,1,3,3],[2,1,3,0],[0,2,1,1]],[[1,2,2,0],[2,1,4,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,0],[3,1,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,3,0],[2,1,3,2],[2,1,3,0],[0,2,1,1]],[[1,3,2,0],[2,1,3,2],[2,1,3,0],[0,2,1,1]],[[2,2,2,0],[2,1,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,3,0],[0,1,2,2]],[[1,2,2,0],[2,1,3,2],[2,1,3,0],[0,1,3,1]],[[1,2,2,0],[2,1,3,2],[2,1,4,0],[0,1,2,1]],[[1,2,2,0],[2,1,3,2],[3,1,3,0],[0,1,2,1]],[[1,2,2,0],[2,1,3,3],[2,1,3,0],[0,1,2,1]],[[1,2,2,0],[2,1,4,2],[2,1,3,0],[0,1,2,1]],[[1,2,2,0],[3,1,3,2],[2,1,3,0],[0,1,2,1]],[[1,2,3,0],[2,1,3,2],[2,1,3,0],[0,1,2,1]],[[1,3,2,0],[2,1,3,2],[2,1,3,0],[0,1,2,1]],[[2,2,2,0],[2,1,3,2],[2,1,3,0],[0,1,2,1]],[[0,3,2,1],[2,2,3,0],[2,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,2,3,0],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,2,3,0],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,4,0],[2,0,1,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,0],[2,0,2,1],[1,2,2,1]],[[0,2,3,1],[2,2,3,0],[2,0,2,1],[1,2,2,1]],[[0,2,2,2],[2,2,3,0],[2,0,2,1],[1,2,2,1]],[[0,2,2,1],[2,2,4,0],[2,0,2,1],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[2,0,2,3],[0,2,2,1]],[[0,2,2,1],[2,2,3,0],[2,0,2,2],[0,3,2,1]],[[0,2,2,1],[2,2,3,0],[2,0,2,2],[0,2,3,1]],[[0,2,2,1],[2,2,3,0],[2,0,2,2],[0,2,2,2]],[[0,2,2,1],[2,2,3,0],[2,0,2,3],[1,1,2,1]],[[0,2,2,1],[2,2,3,0],[2,0,2,2],[1,1,3,1]],[[0,2,2,1],[2,2,3,0],[2,0,2,2],[1,1,2,2]],[[0,3,2,1],[2,2,3,0],[2,0,2,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,0],[2,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,0],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,4,0],[2,0,2,2],[1,2,2,0]],[[0,3,2,1],[2,2,3,0],[2,0,3,1],[0,2,2,1]],[[0,2,3,1],[2,2,3,0],[2,0,3,1],[0,2,2,1]],[[0,2,2,2],[2,2,3,0],[2,0,3,1],[0,2,2,1]],[[0,2,2,1],[2,2,4,0],[2,0,3,1],[0,2,2,1]],[[0,2,2,1],[2,2,3,0],[2,0,4,1],[0,2,2,1]],[[0,2,2,1],[2,2,3,0],[2,0,3,1],[0,3,2,1]],[[0,2,2,1],[2,2,3,0],[2,0,3,1],[0,2,3,1]],[[0,2,2,1],[2,2,3,0],[2,0,3,1],[0,2,2,2]],[[0,3,2,1],[2,2,3,0],[2,0,3,1],[1,1,2,1]],[[0,2,3,1],[2,2,3,0],[2,0,3,1],[1,1,2,1]],[[0,2,2,2],[2,2,3,0],[2,0,3,1],[1,1,2,1]],[[0,2,2,1],[2,2,4,0],[2,0,3,1],[1,1,2,1]],[[0,2,2,1],[2,2,3,0],[2,0,4,1],[1,1,2,1]],[[0,2,2,1],[2,2,3,0],[2,0,3,1],[1,1,3,1]],[[0,2,2,1],[2,2,3,0],[2,0,3,1],[1,1,2,2]],[[0,3,2,1],[2,2,3,0],[2,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,2,3,0],[2,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,2,3,0],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,4,0],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[2,0,4,1],[1,2,1,1]],[[0,3,2,1],[2,2,3,0],[2,0,3,2],[0,2,1,1]],[[0,2,3,1],[2,2,3,0],[2,0,3,2],[0,2,1,1]],[[0,2,2,2],[2,2,3,0],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,4,0],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[2,0,4,2],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[2,0,3,3],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[2,0,3,2],[0,2,1,2]],[[0,3,2,1],[2,2,3,0],[2,0,3,2],[0,2,2,0]],[[0,2,3,1],[2,2,3,0],[2,0,3,2],[0,2,2,0]],[[0,2,2,2],[2,2,3,0],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,4,0],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,3,0],[2,0,4,2],[0,2,2,0]],[[0,2,2,1],[2,2,3,0],[2,0,3,3],[0,2,2,0]],[[0,2,2,1],[2,2,3,0],[2,0,3,2],[0,3,2,0]],[[0,2,2,1],[2,2,3,0],[2,0,3,2],[0,2,3,0]],[[0,3,2,1],[2,2,3,0],[2,0,3,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,0],[2,0,3,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,0],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,4,0],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[2,0,4,2],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[2,0,3,3],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[2,0,3,2],[1,1,1,2]],[[0,3,2,1],[2,2,3,0],[2,0,3,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,0],[2,0,3,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,0],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,4,0],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,3,0],[2,0,4,2],[1,1,2,0]],[[0,2,2,1],[2,2,3,0],[2,0,3,3],[1,1,2,0]],[[0,2,2,1],[2,2,3,0],[2,0,3,2],[1,1,3,0]],[[0,3,2,1],[2,2,3,0],[2,0,3,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,0],[2,0,3,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,0],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,4,0],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[2,2,3,0],[2,0,4,2],[1,2,0,1]],[[0,2,2,1],[2,2,3,0],[2,0,3,3],[1,2,0,1]],[[0,2,2,1],[2,2,3,0],[2,0,3,2],[1,2,0,2]],[[0,3,2,1],[2,2,3,0],[2,0,3,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,0],[2,0,3,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,0],[2,0,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,4,0],[2,0,3,2],[1,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,0,4,2],[1,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,0,3,3],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,2,2],[2,1,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,2,3],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[3,1,2,2],[1,1,1,0]],[[1,2,2,0],[2,1,3,3],[2,1,2,2],[1,1,1,0]],[[1,2,2,0],[2,1,4,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,0],[3,1,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,3,0],[2,1,3,2],[2,1,2,2],[1,1,1,0]],[[1,3,2,0],[2,1,3,2],[2,1,2,2],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,2,2],[1,1,0,2]],[[1,2,2,0],[2,1,3,2],[2,1,2,2],[2,1,0,1]],[[0,3,2,1],[2,2,3,0],[2,1,0,2],[1,2,2,1]],[[0,2,3,1],[2,2,3,0],[2,1,0,2],[1,2,2,1]],[[0,2,2,2],[2,2,3,0],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,4,0],[2,1,0,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,0],[2,1,1,1],[1,2,2,1]],[[0,2,3,1],[2,2,3,0],[2,1,1,1],[1,2,2,1]],[[0,2,2,2],[2,2,3,0],[2,1,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,4,0],[2,1,1,1],[1,2,2,1]],[[0,3,2,1],[2,2,3,0],[2,1,1,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,0],[2,1,1,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,0],[2,1,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,4,0],[2,1,1,2],[1,2,2,0]],[[0,3,2,1],[2,2,3,0],[2,1,2,1],[1,2,1,1]],[[0,2,3,1],[2,2,3,0],[2,1,2,1],[1,2,1,1]],[[0,2,2,2],[2,2,3,0],[2,1,2,1],[1,2,1,1]],[[0,2,2,1],[2,2,4,0],[2,1,2,1],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[2,1,2,3],[0,1,2,1]],[[0,2,2,1],[2,2,3,0],[2,1,2,2],[0,1,3,1]],[[0,2,2,1],[2,2,3,0],[2,1,2,2],[0,1,2,2]],[[0,2,2,1],[2,2,3,0],[2,1,2,3],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[2,1,2,2],[1,0,3,1]],[[0,2,2,1],[2,2,3,0],[2,1,2,2],[1,0,2,2]],[[0,3,2,1],[2,2,3,0],[2,1,2,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,0],[2,1,2,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,0],[2,1,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,4,0],[2,1,2,2],[1,2,0,1]],[[0,3,2,1],[2,2,3,0],[2,1,2,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,0],[2,1,2,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,0],[2,1,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,4,0],[2,1,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,2,3],[1,1,0,1]],[[1,2,2,0],[2,1,3,2],[3,1,2,2],[1,1,0,1]],[[1,2,2,0],[2,1,3,3],[2,1,2,2],[1,1,0,1]],[[1,2,2,0],[2,1,4,2],[2,1,2,2],[1,1,0,1]],[[1,2,2,0],[3,1,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,3,0],[2,1,3,2],[2,1,2,2],[1,1,0,1]],[[1,3,2,0],[2,1,3,2],[2,1,2,2],[1,1,0,1]],[[2,2,2,0],[2,1,3,2],[2,1,2,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,0],[2,1,3,1],[0,1,2,1]],[[0,2,3,1],[2,2,3,0],[2,1,3,1],[0,1,2,1]],[[0,2,2,2],[2,2,3,0],[2,1,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,4,0],[2,1,3,1],[0,1,2,1]],[[0,2,2,1],[2,2,3,0],[2,1,4,1],[0,1,2,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,1],[0,1,3,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,1],[0,1,2,2]],[[0,3,2,1],[2,2,3,0],[2,1,3,1],[0,2,1,1]],[[0,2,3,1],[2,2,3,0],[2,1,3,1],[0,2,1,1]],[[0,2,2,2],[2,2,3,0],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,4,0],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[2,1,4,1],[0,2,1,1]],[[0,3,2,1],[2,2,3,0],[2,1,3,1],[1,0,2,1]],[[0,2,3,1],[2,2,3,0],[2,1,3,1],[1,0,2,1]],[[0,2,2,2],[2,2,3,0],[2,1,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,4,0],[2,1,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[2,1,4,1],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,1],[1,0,3,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,1],[1,0,2,2]],[[0,3,2,1],[2,2,3,0],[2,1,3,1],[1,1,1,1]],[[0,2,3,1],[2,2,3,0],[2,1,3,1],[1,1,1,1]],[[0,2,2,2],[2,2,3,0],[2,1,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,4,0],[2,1,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[2,1,4,1],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,2,2],[2,0,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,2,3],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[3,1,2,2],[1,0,2,0]],[[0,3,2,1],[2,2,3,0],[2,1,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,0],[2,1,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,0],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,4,0],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,3,0],[2,1,4,2],[0,0,2,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,2],[0,0,2,2]],[[0,3,2,1],[2,2,3,0],[2,1,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,0],[2,1,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,0],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,0],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,0],[2,1,4,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,3],[0,1,1,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,2],[0,1,1,2]],[[0,3,2,1],[2,2,3,0],[2,1,3,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,0],[2,1,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,0],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,0],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[2,1,4,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[2,1,3,3],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[2,1,3,2],[0,1,3,0]],[[0,3,2,1],[2,2,3,0],[2,1,3,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,0],[2,1,3,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,0],[2,1,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,4,0],[2,1,3,2],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[2,1,4,2],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,3],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,2],[0,2,0,2]],[[0,3,2,1],[2,2,3,0],[2,1,3,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,0],[2,1,3,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,0],[2,1,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,4,0],[2,1,3,2],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,1,4,2],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,1,3,3],[0,2,1,0]],[[1,2,2,0],[2,1,3,3],[2,1,2,2],[1,0,2,0]],[[1,2,2,0],[2,1,4,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,0],[3,1,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[2,1,2,2],[1,0,2,0]],[[1,3,2,0],[2,1,3,2],[2,1,2,2],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,2,2],[1,0,1,2]],[[1,2,2,0],[2,1,3,2],[2,1,2,2],[2,0,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,2,3],[1,0,1,1]],[[0,3,2,1],[2,2,3,0],[2,1,3,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,0],[2,1,3,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,0],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,4,0],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,3,0],[2,1,4,2],[1,0,1,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,3],[1,0,1,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,2],[1,0,1,2]],[[0,3,2,1],[2,2,3,0],[2,1,3,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,0],[2,1,3,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,0],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,4,0],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[2,1,4,2],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[2,1,3,3],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[2,1,3,2],[1,0,3,0]],[[0,3,2,1],[2,2,3,0],[2,1,3,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,0],[2,1,3,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,0],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,4,0],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,3,0],[2,1,4,2],[1,1,0,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,3],[1,1,0,1]],[[0,2,2,1],[2,2,3,0],[2,1,3,2],[1,1,0,2]],[[0,3,2,1],[2,2,3,0],[2,1,3,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,0],[2,1,3,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,0],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,4,0],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,2,3,0],[2,1,4,2],[1,1,1,0]],[[0,2,2,1],[2,2,3,0],[2,1,3,3],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[3,1,2,2],[1,0,1,1]],[[1,2,2,0],[2,1,3,3],[2,1,2,2],[1,0,1,1]],[[1,2,2,0],[2,1,4,2],[2,1,2,2],[1,0,1,1]],[[1,2,2,0],[3,1,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,3,0],[2,1,3,2],[2,1,2,2],[1,0,1,1]],[[1,3,2,0],[2,1,3,2],[2,1,2,2],[1,0,1,1]],[[2,2,2,0],[2,1,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,2,3],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[3,1,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,3],[2,1,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,0],[3,1,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,3,0],[2,1,3,2],[2,1,2,2],[0,2,1,0]],[[1,3,2,0],[2,1,3,2],[2,1,2,2],[0,2,1,0]],[[2,2,2,0],[2,1,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,2,2],[0,2,0,2]],[[1,2,2,0],[2,1,3,2],[2,1,2,3],[0,2,0,1]],[[1,2,2,0],[2,1,3,2],[3,1,2,2],[0,2,0,1]],[[1,2,2,0],[2,1,3,3],[2,1,2,2],[0,2,0,1]],[[1,2,2,0],[2,1,4,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,0],[3,1,3,2],[2,1,2,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,0],[2,2,0,2],[0,2,2,1]],[[0,2,3,1],[2,2,3,0],[2,2,0,2],[0,2,2,1]],[[0,2,2,2],[2,2,3,0],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,4,0],[2,2,0,2],[0,2,2,1]],[[0,3,2,1],[2,2,3,0],[2,2,0,2],[1,1,2,1]],[[0,2,3,1],[2,2,3,0],[2,2,0,2],[1,1,2,1]],[[0,2,2,2],[2,2,3,0],[2,2,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,4,0],[2,2,0,2],[1,1,2,1]],[[0,2,2,1],[3,2,3,0],[2,2,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[3,2,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[2,2,1,0],[2,2,2,1]],[[0,2,2,1],[2,2,3,0],[2,2,1,0],[1,3,2,1]],[[0,2,2,1],[2,2,3,0],[2,2,1,0],[1,2,3,1]],[[0,3,2,1],[2,2,3,0],[2,2,1,1],[0,2,2,1]],[[0,2,3,1],[2,2,3,0],[2,2,1,1],[0,2,2,1]],[[0,2,2,2],[2,2,3,0],[2,2,1,1],[0,2,2,1]],[[0,2,2,1],[2,2,4,0],[2,2,1,1],[0,2,2,1]],[[0,3,2,1],[2,2,3,0],[2,2,1,1],[1,1,2,1]],[[0,2,3,1],[2,2,3,0],[2,2,1,1],[1,1,2,1]],[[0,2,2,2],[2,2,3,0],[2,2,1,1],[1,1,2,1]],[[0,2,2,1],[2,2,4,0],[2,2,1,1],[1,1,2,1]],[[0,2,2,1],[3,2,3,0],[2,2,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,3,0],[3,2,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,3,0],[2,2,1,1],[2,2,2,0]],[[0,2,2,1],[2,2,3,0],[2,2,1,1],[1,3,2,0]],[[0,3,2,1],[2,2,3,0],[2,2,1,2],[0,2,2,0]],[[0,2,3,1],[2,2,3,0],[2,2,1,2],[0,2,2,0]],[[0,2,2,2],[2,2,3,0],[2,2,1,2],[0,2,2,0]],[[0,2,2,1],[2,2,4,0],[2,2,1,2],[0,2,2,0]],[[0,3,2,1],[2,2,3,0],[2,2,1,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,0],[2,2,1,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,0],[2,2,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,4,0],[2,2,1,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[2,1,2,2],[0,2,0,1]],[[1,3,2,0],[2,1,3,2],[2,1,2,2],[0,2,0,1]],[[2,2,2,0],[2,1,3,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[3,2,3,0],[2,2,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[3,2,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,3,0],[2,2,2,0],[2,2,1,1]],[[0,2,2,1],[2,2,3,0],[2,2,2,0],[1,3,1,1]],[[0,3,2,1],[2,2,3,0],[2,2,2,1],[0,1,2,1]],[[0,2,3,1],[2,2,3,0],[2,2,2,1],[0,1,2,1]],[[0,2,2,2],[2,2,3,0],[2,2,2,1],[0,1,2,1]],[[0,2,2,1],[2,2,4,0],[2,2,2,1],[0,1,2,1]],[[0,3,2,1],[2,2,3,0],[2,2,2,1],[0,2,1,1]],[[0,2,3,1],[2,2,3,0],[2,2,2,1],[0,2,1,1]],[[0,2,2,2],[2,2,3,0],[2,2,2,1],[0,2,1,1]],[[0,2,2,1],[2,2,4,0],[2,2,2,1],[0,2,1,1]],[[0,3,2,1],[2,2,3,0],[2,2,2,1],[1,0,2,1]],[[0,2,3,1],[2,2,3,0],[2,2,2,1],[1,0,2,1]],[[0,2,2,2],[2,2,3,0],[2,2,2,1],[1,0,2,1]],[[0,2,2,1],[2,2,4,0],[2,2,2,1],[1,0,2,1]],[[0,3,2,1],[2,2,3,0],[2,2,2,1],[1,1,1,1]],[[0,2,3,1],[2,2,3,0],[2,2,2,1],[1,1,1,1]],[[0,2,2,2],[2,2,3,0],[2,2,2,1],[1,1,1,1]],[[0,2,2,1],[2,2,4,0],[2,2,2,1],[1,1,1,1]],[[0,2,2,1],[3,2,3,0],[2,2,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,3,0],[3,2,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,2,2,1],[2,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,2,2,1],[1,3,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,2,3],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[3,1,2,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,3],[2,1,2,2],[0,1,2,0]],[[1,2,2,0],[2,1,4,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,0],[3,1,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[2,1,2,2],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[2,1,2,2],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[2,1,2,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,0],[2,2,2,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,0],[2,2,2,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,0],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,0],[2,2,2,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,0],[2,2,2,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,0],[2,2,2,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,0],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,0],[2,2,2,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,0],[2,2,2,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,0],[2,2,2,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,0],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,4,0],[2,2,2,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,0],[2,2,2,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,0],[2,2,2,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,0],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,4,0],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,2,2],[0,1,1,2]],[[1,2,2,0],[2,1,3,2],[2,1,2,3],[0,1,1,1]],[[1,2,2,0],[2,1,3,2],[3,1,2,2],[0,1,1,1]],[[1,2,2,0],[2,1,3,3],[2,1,2,2],[0,1,1,1]],[[1,2,2,0],[2,1,4,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,0],[3,1,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,3,0],[2,1,3,2],[2,1,2,2],[0,1,1,1]],[[1,3,2,0],[2,1,3,2],[2,1,2,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,0],[2,2,2,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,0],[2,2,2,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,0],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,4,0],[2,2,2,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,0],[2,2,2,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,0],[2,2,2,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,0],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,4,0],[2,2,2,2],[1,0,2,0]],[[0,3,2,1],[2,2,3,0],[2,2,2,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,0],[2,2,2,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,0],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,4,0],[2,2,2,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,0],[2,2,2,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,0],[2,2,2,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,0],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,4,0],[2,2,2,2],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,2,2],[0,0,2,2]],[[1,2,2,0],[2,1,3,2],[2,1,2,3],[0,0,2,1]],[[1,2,2,0],[2,1,3,3],[2,1,2,2],[0,0,2,1]],[[1,2,2,0],[2,1,4,2],[2,1,2,2],[0,0,2,1]],[[1,2,2,0],[3,1,3,2],[2,1,2,2],[0,0,2,1]],[[1,2,3,0],[2,1,3,2],[2,1,2,2],[0,0,2,1]],[[0,3,2,1],[2,2,3,0],[2,2,2,2],[1,2,0,0]],[[0,2,3,1],[2,2,3,0],[2,2,2,2],[1,2,0,0]],[[0,2,2,2],[2,2,3,0],[2,2,2,2],[1,2,0,0]],[[0,2,2,1],[2,2,4,0],[2,2,2,2],[1,2,0,0]],[[1,3,2,0],[2,1,3,2],[2,1,2,2],[0,0,2,1]],[[2,2,2,0],[2,1,3,2],[2,1,2,2],[0,0,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,2,1],[1,3,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,2,1],[2,2,1,0]],[[1,2,2,0],[2,1,3,2],[3,1,2,1],[1,2,1,0]],[[1,2,2,0],[2,1,3,3],[2,1,2,1],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,0],[3,1,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,3,0],[2,1,3,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[3,2,3,0],[2,2,3,0],[1,2,1,0]],[[0,2,2,1],[2,2,3,0],[3,2,3,0],[1,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,2,3,0],[2,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,2,3,0],[1,3,1,0]],[[1,3,2,0],[2,1,3,2],[2,1,2,1],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,2,1],[1,3,0,1]],[[1,2,2,0],[2,1,3,2],[2,1,2,1],[2,2,0,1]],[[1,2,2,0],[2,1,3,2],[3,1,2,1],[1,2,0,1]],[[1,2,2,0],[2,1,3,3],[2,1,2,1],[1,2,0,1]],[[1,2,2,0],[2,1,4,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,0],[3,1,3,2],[2,1,2,1],[1,2,0,1]],[[1,2,3,0],[2,1,3,2],[2,1,2,1],[1,2,0,1]],[[1,3,2,0],[2,1,3,2],[2,1,2,1],[1,2,0,1]],[[2,2,2,0],[2,1,3,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,0],[2,1,3,2],[2,1,2,0],[1,3,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,2,0],[2,2,1,1]],[[1,2,2,0],[2,1,3,2],[3,1,2,0],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[2,1,2,0],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[2,1,2,0],[1,2,1,1]],[[1,2,2,0],[3,1,3,2],[2,1,2,0],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[2,1,2,0],[1,2,1,1]],[[1,3,2,0],[2,1,3,2],[2,1,2,0],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[2,1,2,0],[1,2,1,1]],[[0,3,2,1],[2,2,3,0],[2,2,3,2],[0,2,0,0]],[[0,2,3,1],[2,2,3,0],[2,2,3,2],[0,2,0,0]],[[0,2,2,2],[2,2,3,0],[2,2,3,2],[0,2,0,0]],[[0,2,2,1],[2,2,4,0],[2,2,3,2],[0,2,0,0]],[[1,2,2,0],[2,1,3,2],[2,1,1,2],[1,3,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,1,2],[2,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,1,3],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[3,1,1,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,3],[2,1,1,2],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,0],[3,1,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,3,0],[2,1,3,2],[2,1,1,2],[1,2,1,0]],[[1,3,2,0],[2,1,3,2],[2,1,1,2],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,1,1,2],[1,2,0,2]],[[1,2,2,0],[2,1,3,2],[2,1,1,2],[1,3,0,1]],[[1,2,2,0],[2,1,3,2],[2,1,1,2],[2,2,0,1]],[[1,2,2,0],[2,1,3,2],[2,1,1,3],[1,2,0,1]],[[1,2,2,0],[2,1,3,2],[3,1,1,2],[1,2,0,1]],[[1,2,2,0],[2,1,3,3],[2,1,1,2],[1,2,0,1]],[[1,2,2,0],[2,1,4,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,0],[3,1,3,2],[2,1,1,2],[1,2,0,1]],[[1,2,3,0],[2,1,3,2],[2,1,1,2],[1,2,0,1]],[[1,3,2,0],[2,1,3,2],[2,1,1,2],[1,2,0,1]],[[2,2,2,0],[2,1,3,2],[2,1,1,2],[1,2,0,1]],[[0,3,2,1],[2,2,3,0],[2,2,3,2],[1,1,0,0]],[[0,2,3,1],[2,2,3,0],[2,2,3,2],[1,1,0,0]],[[0,2,2,2],[2,2,3,0],[2,2,3,2],[1,1,0,0]],[[0,2,2,1],[2,2,4,0],[2,2,3,2],[1,1,0,0]],[[1,2,2,0],[2,1,3,2],[2,1,1,2],[1,0,2,2]],[[1,2,2,0],[2,1,3,2],[2,1,1,2],[1,0,3,1]],[[1,2,2,0],[2,1,3,2],[2,1,1,2],[2,0,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,1,3],[1,0,2,1]],[[1,2,2,0],[2,1,3,2],[3,1,1,2],[1,0,2,1]],[[1,2,2,0],[2,1,3,3],[2,1,1,2],[1,0,2,1]],[[1,2,2,0],[2,1,4,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,0],[3,1,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,3,0],[2,1,3,2],[2,1,1,2],[1,0,2,1]],[[1,3,2,0],[2,1,3,2],[2,1,1,2],[1,0,2,1]],[[2,2,2,0],[2,1,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,1,2],[0,1,2,2]],[[1,2,2,0],[2,1,3,2],[2,1,1,2],[0,1,3,1]],[[1,2,2,0],[2,1,3,2],[2,1,1,3],[0,1,2,1]],[[1,2,2,0],[2,1,3,2],[3,1,1,2],[0,1,2,1]],[[1,2,2,0],[2,1,3,3],[2,1,1,2],[0,1,2,1]],[[1,2,2,0],[2,1,4,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,0],[3,1,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,3,0],[2,1,3,2],[2,1,1,2],[0,1,2,1]],[[1,3,2,0],[2,1,3,2],[2,1,1,2],[0,1,2,1]],[[2,2,2,0],[2,1,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,1,1],[1,2,3,0]],[[1,2,2,0],[2,1,3,2],[2,1,1,1],[1,3,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,1,1],[2,2,2,0]],[[1,2,2,0],[2,1,3,2],[3,1,1,1],[1,2,2,0]],[[1,2,2,0],[2,1,3,3],[2,1,1,1],[1,2,2,0]],[[1,2,2,0],[2,1,4,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,0],[3,1,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,3,0],[2,1,3,2],[2,1,1,1],[1,2,2,0]],[[1,3,2,0],[2,1,3,2],[2,1,1,1],[1,2,2,0]],[[2,2,2,0],[2,1,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,1,0],[1,2,2,2]],[[1,2,2,0],[2,1,3,2],[2,1,1,0],[1,2,3,1]],[[1,2,2,0],[2,1,3,2],[2,1,1,0],[1,3,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,1,0],[2,2,2,1]],[[1,2,2,0],[2,1,3,2],[3,1,1,0],[1,2,2,1]],[[1,2,2,0],[2,1,3,3],[2,1,1,0],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[2,1,1,0],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[2,1,1,0],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[2,1,1,0],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[3,2,3,0],[2,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[3,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,2,3,0],[2,3,0,0],[2,2,2,1]],[[0,2,2,1],[2,2,3,0],[2,3,0,0],[1,3,2,1]],[[0,2,2,1],[3,2,3,0],[2,3,0,1],[1,2,2,0]],[[0,2,2,1],[2,2,3,0],[3,3,0,1],[1,2,2,0]],[[0,2,2,1],[2,2,3,0],[2,3,0,1],[2,2,2,0]],[[0,2,2,1],[2,2,3,0],[2,3,0,1],[1,3,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[1,2,3,0]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[1,3,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[2,2,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,0,3],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[3,1,0,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,3],[2,1,0,2],[1,2,2,0]],[[1,2,2,0],[2,1,4,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,0],[3,1,3,2],[2,1,0,2],[1,2,2,0]],[[1,2,3,0],[2,1,3,2],[2,1,0,2],[1,2,2,0]],[[1,3,2,0],[2,1,3,2],[2,1,0,2],[1,2,2,0]],[[2,2,2,0],[2,1,3,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[1,2,1,2]],[[0,2,2,1],[3,2,3,0],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,3,0],[3,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,3,0],[2,4,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,3,0],[2,3,1,0],[0,3,2,1]],[[0,2,2,1],[2,2,3,0],[2,3,1,0],[0,2,3,1]],[[0,2,2,1],[3,2,3,0],[2,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,3,0],[3,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,3,0],[2,4,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,3,0],[2,3,1,0],[2,1,2,1]],[[0,2,2,1],[3,2,3,0],[2,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,3,0],[3,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,3,0],[2,4,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,3,0],[2,3,1,1],[0,3,2,0]],[[0,2,2,1],[3,2,3,0],[2,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,3,0],[3,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,3,0],[2,4,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,3,0],[2,3,1,1],[2,1,2,0]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[1,3,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[2,2,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,0,3],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[3,1,0,2],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[2,1,0,2],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,0],[3,1,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[2,1,0,2],[1,2,1,1]],[[1,3,2,0],[2,1,3,2],[2,1,0,2],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[1,1,2,2]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[1,1,3,1]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[2,1,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,0,3],[1,1,2,1]],[[1,2,2,0],[2,1,3,2],[3,1,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[2,1,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,0],[3,1,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[2,1,0,2],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[2,1,0,2],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[0,2,2,2]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[0,2,3,1]],[[1,2,2,0],[2,1,3,2],[2,1,0,2],[0,3,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,0,3],[0,2,2,1]],[[1,2,2,0],[2,1,3,2],[3,1,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,3,3],[2,1,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,4,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,0],[3,1,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,3,0],[2,1,3,2],[2,1,0,2],[0,2,2,1]],[[1,3,2,0],[2,1,3,2],[2,1,0,2],[0,2,2,1]],[[2,2,2,0],[2,1,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,0,1],[1,2,2,2]],[[1,2,2,0],[2,1,3,2],[2,1,0,1],[1,2,3,1]],[[1,2,2,0],[2,1,3,2],[2,1,0,1],[1,3,2,1]],[[1,2,2,0],[2,1,3,2],[2,1,0,1],[2,2,2,1]],[[1,2,2,0],[2,1,3,2],[3,1,0,1],[1,2,2,1]],[[1,2,2,0],[2,1,3,3],[2,1,0,1],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[2,1,0,1],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[2,1,0,1],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[2,1,0,1],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[2,1,0,1],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,1],[3,2,3,0],[2,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,2,3,0],[3,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,2,3,0],[2,4,2,0],[0,1,2,1]],[[0,2,2,1],[3,2,3,0],[2,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[3,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[2,4,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,3,0],[2,3,2,0],[0,3,1,1]],[[0,2,2,1],[3,2,3,0],[2,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[3,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[2,4,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,3,0],[2,3,2,0],[2,0,2,1]],[[0,2,2,1],[3,2,3,0],[2,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[3,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[2,4,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,3,0],[2,3,2,0],[2,1,1,1]],[[0,2,2,1],[3,2,3,0],[2,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,3,0],[3,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,3,0],[2,4,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,3,0],[2,3,2,0],[2,2,0,1]],[[0,2,2,1],[3,2,3,0],[2,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[3,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[2,4,2,1],[0,1,2,0]],[[0,2,2,1],[3,2,3,0],[2,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[3,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,3,0],[2,4,2,1],[0,2,0,1]],[[0,2,2,1],[3,2,3,0],[2,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[3,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,4,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,3,2,1],[0,3,1,0]],[[0,2,2,1],[3,2,3,0],[2,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[3,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[2,4,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[2,3,2,1],[2,0,2,0]],[[0,2,2,1],[3,2,3,0],[2,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,3,0],[3,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,3,0],[2,4,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,3,0],[2,3,2,1],[2,1,0,1]],[[0,2,2,1],[3,2,3,0],[2,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,3,0],[3,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,3,0],[2,4,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,3,0],[2,3,2,1],[2,1,1,0]],[[0,2,2,1],[3,2,3,0],[2,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,3,0],[3,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,3,0],[2,4,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,3,0],[2,3,2,1],[2,2,0,0]],[[1,2,2,0],[2,1,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,0],[2,1,3,3],[2,0,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,4,2],[2,0,3,2],[1,0,2,0]],[[1,2,2,0],[3,1,3,2],[2,0,3,2],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[2,0,3,2],[1,0,2,0]],[[1,3,2,0],[2,1,3,2],[2,0,3,2],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[2,0,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,3,2],[1,0,1,2]],[[1,2,2,0],[2,1,3,2],[2,0,3,3],[1,0,1,1]],[[1,2,2,0],[2,1,3,3],[2,0,3,2],[1,0,1,1]],[[1,2,2,0],[2,1,4,2],[2,0,3,2],[1,0,1,1]],[[1,2,2,0],[3,1,3,2],[2,0,3,2],[1,0,1,1]],[[1,2,3,0],[2,1,3,2],[2,0,3,2],[1,0,1,1]],[[1,3,2,0],[2,1,3,2],[2,0,3,2],[1,0,1,1]],[[2,2,2,0],[2,1,3,2],[2,0,3,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,0],[2,3,2,2],[1,0,0,1]],[[0,2,3,1],[2,2,3,0],[2,3,2,2],[1,0,0,1]],[[0,2,2,2],[2,2,3,0],[2,3,2,2],[1,0,0,1]],[[0,2,2,1],[2,2,4,0],[2,3,2,2],[1,0,0,1]],[[0,3,2,1],[2,2,3,0],[2,3,2,2],[1,0,1,0]],[[0,2,3,1],[2,2,3,0],[2,3,2,2],[1,0,1,0]],[[0,2,2,2],[2,2,3,0],[2,3,2,2],[1,0,1,0]],[[0,2,2,1],[2,2,4,0],[2,3,2,2],[1,0,1,0]],[[1,2,2,0],[2,1,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,2,0],[2,1,3,3],[2,0,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,4,2],[2,0,3,2],[0,1,2,0]],[[1,2,2,0],[3,1,3,2],[2,0,3,2],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[2,0,3,2],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[2,0,3,2],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[2,0,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,3,2],[0,1,1,2]],[[1,2,2,0],[2,1,3,2],[2,0,3,3],[0,1,1,1]],[[1,2,2,0],[2,1,3,3],[2,0,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,4,2],[2,0,3,2],[0,1,1,1]],[[1,2,2,0],[3,1,3,2],[2,0,3,2],[0,1,1,1]],[[1,2,3,0],[2,1,3,2],[2,0,3,2],[0,1,1,1]],[[1,3,2,0],[2,1,3,2],[2,0,3,2],[0,1,1,1]],[[2,2,2,0],[2,1,3,2],[2,0,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,0,3,2],[0,0,2,2]],[[1,2,2,0],[2,1,3,2],[2,0,3,3],[0,0,2,1]],[[1,2,2,0],[2,1,3,3],[2,0,3,2],[0,0,2,1]],[[1,2,2,0],[2,1,4,2],[2,0,3,2],[0,0,2,1]],[[1,2,2,0],[3,1,3,2],[2,0,3,2],[0,0,2,1]],[[1,2,3,0],[2,1,3,2],[2,0,3,2],[0,0,2,1]],[[1,3,2,0],[2,1,3,2],[2,0,3,2],[0,0,2,1]],[[2,2,2,0],[2,1,3,2],[2,0,3,2],[0,0,2,1]],[[1,2,2,0],[2,1,3,2],[2,0,3,1],[1,3,1,0]],[[1,2,2,0],[2,1,3,2],[2,0,3,1],[2,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,0,4,1],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[3,0,3,1],[1,2,1,0]],[[1,2,2,0],[2,1,3,3],[2,0,3,1],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,0],[3,1,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,3,0],[2,1,3,2],[2,0,3,1],[1,2,1,0]],[[1,3,2,0],[2,1,3,2],[2,0,3,1],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,0,3,1],[1,3,0,1]],[[1,2,2,0],[2,1,3,2],[2,0,3,1],[2,2,0,1]],[[1,2,2,0],[2,1,3,2],[2,0,4,1],[1,2,0,1]],[[1,2,2,0],[2,1,3,2],[3,0,3,1],[1,2,0,1]],[[1,2,2,0],[2,1,3,3],[2,0,3,1],[1,2,0,1]],[[1,2,2,0],[2,1,4,2],[2,0,3,1],[1,2,0,1]],[[1,2,2,0],[3,1,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,3,0],[2,1,3,2],[2,0,3,1],[1,2,0,1]],[[1,3,2,0],[2,1,3,2],[2,0,3,1],[1,2,0,1]],[[2,2,2,0],[2,1,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,2,0],[2,1,3,2],[2,0,3,1],[1,1,3,0]],[[1,2,2,0],[2,1,3,2],[2,0,3,1],[2,1,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,4,1],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[3,0,3,1],[1,1,2,0]],[[1,2,2,0],[2,1,3,3],[2,0,3,1],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,0],[3,1,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[2,0,3,1],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[2,0,3,1],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,3,1],[2,1,1,1]],[[0,2,2,1],[3,2,3,0],[2,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[3,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,2,3,0],[2,4,3,0],[0,1,2,0]],[[0,2,2,1],[3,2,3,0],[2,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[3,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,4,3,0],[0,2,1,0]],[[0,2,2,1],[2,2,3,0],[2,3,3,0],[0,3,1,0]],[[1,2,2,0],[2,1,3,2],[2,0,4,1],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[3,0,3,1],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[2,0,3,1],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[3,2,3,0],[2,3,3,0],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[3,3,3,0],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[2,4,3,0],[1,0,2,0]],[[0,2,2,1],[2,2,3,0],[2,3,3,0],[2,0,2,0]],[[0,2,2,1],[3,2,3,0],[2,3,3,0],[1,1,1,0]],[[0,2,2,1],[2,2,3,0],[3,3,3,0],[1,1,1,0]],[[0,2,2,1],[2,2,3,0],[2,4,3,0],[1,1,1,0]],[[0,2,2,1],[2,2,3,0],[2,3,3,0],[2,1,1,0]],[[1,2,3,0],[2,1,3,2],[2,0,3,1],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[2,0,3,1],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[3,2,3,0],[2,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,2,3,0],[3,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,2,3,0],[2,4,3,0],[1,2,0,0]],[[0,2,2,1],[2,2,3,0],[2,3,3,0],[2,2,0,0]],[[1,2,2,0],[2,1,3,2],[2,0,3,1],[0,2,3,0]],[[1,2,2,0],[2,1,3,2],[2,0,3,1],[0,3,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,4,1],[0,2,2,0]],[[1,2,2,0],[2,1,3,2],[3,0,3,1],[0,2,2,0]],[[1,2,2,0],[2,1,3,3],[2,0,3,1],[0,2,2,0]],[[1,2,2,0],[2,1,4,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,0],[3,1,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,3,0],[2,1,3,2],[2,0,3,1],[0,2,2,0]],[[1,3,2,0],[2,1,3,2],[2,0,3,1],[0,2,2,0]],[[2,2,2,0],[2,1,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,4,1],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[3,0,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,3,3],[2,0,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,4,2],[2,0,3,1],[0,2,1,1]],[[1,2,2,0],[3,1,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,3,0],[2,1,3,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[3,2,3,0],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,2,3,0],[3,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,2,3,0],[2,4,3,1],[0,2,0,0]],[[1,3,2,0],[2,1,3,2],[2,0,3,1],[0,2,1,1]],[[2,2,2,0],[2,1,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[2,0,3,0],[1,3,1,1]],[[1,2,2,0],[2,1,3,2],[2,0,3,0],[2,2,1,1]],[[1,2,2,0],[2,1,3,2],[2,0,4,0],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[3,0,3,0],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[2,0,3,0],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,0],[3,1,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[2,0,3,0],[1,2,1,1]],[[1,3,2,0],[2,1,3,2],[2,0,3,0],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[2,0,3,0],[1,1,2,2]],[[1,2,2,0],[2,1,3,2],[2,0,3,0],[1,1,3,1]],[[1,2,2,0],[2,1,3,2],[2,0,3,0],[2,1,2,1]],[[1,2,2,0],[2,1,3,2],[2,0,4,0],[1,1,2,1]],[[1,2,2,0],[2,1,3,2],[3,0,3,0],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[2,0,3,0],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,0],[3,1,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[2,0,3,0],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[2,0,3,0],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[3,2,3,0],[2,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,3,0],[3,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,3,0],[2,4,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,3,0],[2,3,3,1],[2,1,0,0]],[[1,2,2,0],[2,1,3,2],[2,0,3,0],[0,2,2,2]],[[1,2,2,0],[2,1,3,2],[2,0,3,0],[0,2,3,1]],[[1,2,2,0],[2,1,3,2],[2,0,3,0],[0,3,2,1]],[[1,2,2,0],[2,1,3,2],[2,0,4,0],[0,2,2,1]],[[1,2,2,0],[2,1,3,2],[3,0,3,0],[0,2,2,1]],[[1,2,2,0],[2,1,3,3],[2,0,3,0],[0,2,2,1]],[[1,2,2,0],[2,1,4,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,0],[3,1,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,3,0],[2,1,3,2],[2,0,3,0],[0,2,2,1]],[[1,3,2,0],[2,1,3,2],[2,0,3,0],[0,2,2,1]],[[2,2,2,0],[2,1,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,0],[2,1,3,2],[2,0,2,2],[1,3,1,0]],[[1,2,2,0],[2,1,3,2],[2,0,2,2],[2,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,0,2,3],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[3,0,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,3],[2,0,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,0],[3,1,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,3,0],[2,1,3,2],[2,0,2,2],[1,2,1,0]],[[1,3,2,0],[2,1,3,2],[2,0,2,2],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[2,0,2,2],[1,2,0,2]],[[1,2,2,0],[2,1,3,2],[2,0,2,2],[1,3,0,1]],[[1,2,2,0],[2,1,3,2],[2,0,2,2],[2,2,0,1]],[[1,2,2,0],[2,1,3,2],[2,0,2,3],[1,2,0,1]],[[1,2,2,0],[2,1,3,2],[3,0,2,2],[1,2,0,1]],[[1,2,2,0],[2,1,3,3],[2,0,2,2],[1,2,0,1]],[[1,2,2,0],[2,1,4,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,0],[3,1,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,3,0],[2,1,3,2],[2,0,2,2],[1,2,0,1]],[[1,3,2,0],[2,1,3,2],[2,0,2,2],[1,2,0,1]],[[2,2,2,0],[2,1,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,0],[2,1,3,2],[2,0,2,2],[2,1,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,2,3],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[3,0,2,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,3],[2,0,2,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,0],[3,1,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[2,0,2,2],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[2,0,2,2],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,2,2],[1,1,1,2]],[[1,2,2,0],[2,1,3,2],[2,0,2,2],[2,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,0,2,3],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[3,0,2,2],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[2,0,2,2],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[2,0,2,2],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[2,0,2,2],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[2,0,2,2],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[2,0,2,3],[0,2,2,0]],[[1,2,2,0],[2,1,3,2],[3,0,2,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,3],[2,0,2,2],[0,2,2,0]],[[1,2,2,0],[2,1,4,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,0],[3,1,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,3,0],[2,1,3,2],[2,0,2,2],[0,2,2,0]],[[1,3,2,0],[2,1,3,2],[2,0,2,2],[0,2,2,0]],[[2,2,2,0],[2,1,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,2,2],[0,2,1,2]],[[1,2,2,0],[2,1,3,2],[2,0,2,3],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[3,0,2,2],[0,2,1,1]],[[1,2,2,0],[2,1,3,3],[2,0,2,2],[0,2,1,1]],[[1,2,2,0],[2,1,4,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,0],[3,1,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,3,0],[2,1,3,2],[2,0,2,2],[0,2,1,1]],[[1,3,2,0],[2,1,3,2],[2,0,2,2],[0,2,1,1]],[[2,2,2,0],[2,1,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[2,0,2,1],[1,2,3,0]],[[1,2,2,0],[2,1,3,2],[2,0,2,1],[1,3,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,2,1],[2,2,2,0]],[[1,2,2,0],[2,1,3,2],[3,0,2,1],[1,2,2,0]],[[1,2,2,0],[2,1,3,3],[2,0,2,1],[1,2,2,0]],[[1,2,2,0],[2,1,4,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,0],[3,1,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,3,0],[2,1,3,2],[2,0,2,1],[1,2,2,0]],[[1,3,2,0],[2,1,3,2],[2,0,2,1],[1,2,2,0]],[[2,2,2,0],[2,1,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,2,0],[1,2,2,2]],[[1,2,2,0],[2,1,3,2],[2,0,2,0],[1,2,3,1]],[[1,2,2,0],[2,1,3,2],[2,0,2,0],[1,3,2,1]],[[1,2,2,0],[2,1,3,2],[2,0,2,0],[2,2,2,1]],[[1,2,2,0],[2,1,3,2],[3,0,2,0],[1,2,2,1]],[[1,2,2,0],[2,1,3,3],[2,0,2,0],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[2,0,2,0],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[2,0,2,0],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[2,0,2,0],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[2,0,2,0],[1,2,2,1]],[[0,3,2,1],[2,2,3,0],[2,3,3,2],[1,0,0,0]],[[0,2,3,1],[2,2,3,0],[2,3,3,2],[1,0,0,0]],[[0,2,2,2],[2,2,3,0],[2,3,3,2],[1,0,0,0]],[[0,2,2,1],[2,2,4,0],[2,3,3,2],[1,0,0,0]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[1,2,3,0]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[1,3,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[2,2,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,1,3],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[3,0,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,3],[2,0,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,4,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,0],[3,1,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,3,0],[2,1,3,2],[2,0,1,2],[1,2,2,0]],[[1,3,2,0],[2,1,3,2],[2,0,1,2],[1,2,2,0]],[[2,2,2,0],[2,1,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[1,2,1,2]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[1,3,1,1]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[2,2,1,1]],[[1,2,2,0],[2,1,3,2],[2,0,1,3],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[3,0,1,2],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[2,0,1,2],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,0],[3,1,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[2,0,1,2],[1,2,1,1]],[[1,3,2,0],[2,1,3,2],[2,0,1,2],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[1,1,2,2]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[1,1,3,1]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[2,1,2,1]],[[1,2,2,0],[2,1,3,2],[2,0,1,3],[1,1,2,1]],[[1,2,2,0],[2,1,3,2],[3,0,1,2],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[2,0,1,2],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,0],[3,1,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[2,0,1,2],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[2,0,1,2],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[0,2,2,2]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[0,2,3,1]],[[1,2,2,0],[2,1,3,2],[2,0,1,2],[0,3,2,1]],[[1,2,2,0],[2,1,3,2],[2,0,1,3],[0,2,2,1]],[[1,2,2,0],[2,1,3,2],[3,0,1,2],[0,2,2,1]],[[1,2,2,0],[2,1,3,3],[2,0,1,2],[0,2,2,1]],[[1,2,2,0],[2,1,4,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,0],[3,1,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,3,0],[2,1,3,2],[2,0,1,2],[0,2,2,1]],[[1,3,2,0],[2,1,3,2],[2,0,1,2],[0,2,2,1]],[[2,2,2,0],[2,1,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,0],[2,1,3,2],[2,0,1,1],[1,2,2,2]],[[1,2,2,0],[2,1,3,2],[2,0,1,1],[1,2,3,1]],[[1,2,2,0],[2,1,3,2],[2,0,1,1],[1,3,2,1]],[[1,2,2,0],[2,1,3,2],[2,0,1,1],[2,2,2,1]],[[1,2,2,0],[2,1,3,2],[3,0,1,1],[1,2,2,1]],[[1,2,2,0],[2,1,3,3],[2,0,1,1],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[2,0,1,1],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[2,0,1,1],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[2,0,1,1],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,2,0],[2,1,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,0],[2,1,3,3],[1,3,3,2],[0,0,0,1]],[[1,2,2,0],[2,1,4,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,0],[3,1,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,0],[2,1,3,2],[1,3,3,2],[0,0,0,1]],[[1,3,2,0],[2,1,3,2],[1,3,3,2],[0,0,0,1]],[[2,2,2,0],[2,1,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,0],[2,1,3,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,0],[2,1,4,2],[1,3,3,1],[1,1,0,0]],[[1,2,2,0],[3,1,3,2],[1,3,3,1],[1,1,0,0]],[[1,2,3,0],[2,1,3,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,0],[2,1,3,2],[1,3,3,1],[1,1,0,0]],[[2,2,2,0],[2,1,3,2],[1,3,3,1],[1,1,0,0]],[[0,3,2,1],[2,2,3,1],[0,0,2,2],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[0,0,2,2],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[0,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[0,0,2,2],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[0,0,3,2],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[0,0,3,2],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[0,0,3,2],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[0,0,3,2],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[0,0,3,2],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[0,0,3,2],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[0,0,3,2],[1,1,2,1]],[[0,3,2,1],[2,2,3,1],[0,0,3,2],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[0,0,3,2],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[0,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[0,0,3,2],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[0,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,1],[0,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,1],[0,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,2,4,1],[0,0,3,2],[1,2,2,0]],[[0,3,2,1],[2,2,3,1],[0,1,1,2],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[0,1,1,2],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[0,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[0,1,1,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[0,1,2,2],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[0,1,2,2],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[0,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[0,1,2,2],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[0,1,2,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,1],[0,1,2,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,1],[0,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,4,1],[0,1,2,2],[1,2,2,0]],[[0,3,2,1],[2,2,3,1],[0,1,3,0],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[0,1,3,0],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[0,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[0,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,3,1],[0,1,4,0],[1,2,2,1]],[[0,2,2,1],[2,2,3,1],[0,1,3,0],[2,2,2,1]],[[0,2,2,1],[2,2,3,1],[0,1,3,0],[1,3,2,1]],[[0,2,2,1],[2,2,3,1],[0,1,3,0],[1,2,3,1]],[[0,2,2,1],[2,2,3,1],[0,1,3,0],[1,2,2,2]],[[0,3,2,1],[2,2,3,1],[0,1,3,1],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[0,1,3,1],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[0,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[0,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,3,1],[0,1,4,1],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[0,1,3,1],[1,2,2,0]],[[0,2,3,1],[2,2,3,1],[0,1,3,1],[1,2,2,0]],[[0,2,2,2],[2,2,3,1],[0,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,2,4,1],[0,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,2,3,1],[0,1,4,1],[1,2,2,0]],[[0,2,2,1],[2,2,3,1],[0,1,3,1],[2,2,2,0]],[[0,2,2,1],[2,2,3,1],[0,1,3,1],[1,3,2,0]],[[0,2,2,1],[2,2,3,1],[0,1,3,1],[1,2,3,0]],[[0,3,2,1],[2,2,3,1],[0,1,3,2],[1,0,2,1]],[[0,2,3,1],[2,2,3,1],[0,1,3,2],[1,0,2,1]],[[0,2,2,2],[2,2,3,1],[0,1,3,2],[1,0,2,1]],[[0,2,2,1],[2,2,4,1],[0,1,3,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[0,1,3,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[0,1,3,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[0,1,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[0,1,3,2],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[0,1,3,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[0,1,3,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[0,1,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[0,1,3,2],[1,1,2,0]],[[0,3,2,1],[2,2,3,1],[0,2,0,2],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[0,2,0,2],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[0,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[0,2,0,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[0,2,1,2],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[0,2,1,2],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[0,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[0,2,1,2],[1,1,2,1]],[[0,3,2,1],[2,2,3,1],[0,2,2,2],[1,0,2,1]],[[0,2,3,1],[2,2,3,1],[0,2,2,2],[1,0,2,1]],[[0,2,2,2],[2,2,3,1],[0,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,2,4,1],[0,2,2,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[0,2,2,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[0,2,2,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[0,2,2,2],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[0,2,2,2],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[0,2,2,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[0,2,2,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[0,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[0,2,2,2],[1,1,2,0]],[[0,3,2,1],[2,2,3,1],[0,2,2,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,1],[0,2,2,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,1],[0,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,4,1],[0,2,2,2],[1,2,0,1]],[[0,3,2,1],[2,2,3,1],[0,2,2,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,1],[0,2,2,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,1],[0,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,4,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,0],[2,1,4,2],[1,3,3,1],[0,2,0,0]],[[1,2,2,0],[3,1,3,2],[1,3,3,1],[0,2,0,0]],[[1,2,3,0],[2,1,3,2],[1,3,3,1],[0,2,0,0]],[[1,3,2,0],[2,1,3,2],[1,3,3,1],[0,2,0,0]],[[0,3,2,1],[2,2,3,1],[0,2,3,0],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[0,2,3,0],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[0,2,3,0],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[0,2,3,0],[1,1,2,1]],[[0,2,2,1],[2,2,3,1],[0,2,4,0],[1,1,2,1]],[[0,2,2,1],[2,2,3,1],[0,2,3,0],[1,1,3,1]],[[0,2,2,1],[2,2,3,1],[0,2,3,0],[1,1,2,2]],[[0,3,2,1],[2,2,3,1],[0,2,3,0],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[0,2,3,0],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[0,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[0,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,3,1],[0,2,4,0],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[0,2,3,1],[1,0,2,1]],[[0,2,3,1],[2,2,3,1],[0,2,3,1],[1,0,2,1]],[[0,2,2,2],[2,2,3,1],[0,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,4,1],[0,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,2,3,1],[0,2,4,1],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[0,2,3,1],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[0,2,3,1],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[0,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[0,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,3,1],[0,2,4,1],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[0,2,3,1],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[0,2,3,1],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[0,2,3,1],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[0,2,3,1],[1,1,2,0]],[[0,2,2,1],[2,2,3,1],[0,2,4,1],[1,1,2,0]],[[0,2,2,1],[2,2,3,1],[0,2,3,1],[1,1,3,0]],[[0,3,2,1],[2,2,3,1],[0,2,3,1],[1,2,0,1]],[[0,2,3,1],[2,2,3,1],[0,2,3,1],[1,2,0,1]],[[0,2,2,2],[2,2,3,1],[0,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,4,1],[0,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,3,1],[0,2,4,1],[1,2,0,1]],[[0,3,2,1],[2,2,3,1],[0,2,3,1],[1,2,1,0]],[[0,2,3,1],[2,2,3,1],[0,2,3,1],[1,2,1,0]],[[0,2,2,2],[2,2,3,1],[0,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,4,1],[0,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,3,1],[0,2,4,1],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[1,3,3,1],[0,2,0,0]],[[0,2,3,1],[2,2,3,1],[0,2,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,1],[0,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,4,1],[0,2,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,1],[0,2,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[0,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[0,2,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[0,2,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[0,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[0,2,3,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,1],[0,2,3,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,1],[0,2,3,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,1],[0,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,2,4,1],[0,2,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,2,0],[2,1,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,3,1],[0,0,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,3,1],[0,0,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,0],[2,1,3,2],[1,3,4,1],[0,0,1,1]],[[1,2,2,0],[2,1,3,3],[1,3,3,1],[0,0,1,1]],[[1,2,2,0],[2,1,4,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,0],[3,1,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,0],[2,1,3,2],[1,3,3,1],[0,0,1,1]],[[1,3,2,0],[2,1,3,2],[1,3,3,1],[0,0,1,1]],[[2,2,2,0],[2,1,3,2],[1,3,3,1],[0,0,1,1]],[[0,3,2,1],[2,2,3,1],[0,3,0,1],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[0,3,0,1],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[0,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[0,3,0,1],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[0,3,0,2],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[0,3,0,2],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[0,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[0,3,0,2],[1,1,2,1]],[[0,3,2,1],[2,2,3,1],[0,3,0,2],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[0,3,0,2],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[0,3,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[0,3,0,2],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[0,3,0,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,1],[0,3,0,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,1],[0,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,4,1],[0,3,0,2],[1,2,2,0]],[[0,3,2,1],[2,2,3,1],[0,3,1,0],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[0,3,1,0],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[0,3,1,0],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[0,3,1,1],[1,2,2,0]],[[0,2,3,1],[2,2,3,1],[0,3,1,1],[1,2,2,0]],[[0,2,2,2],[2,2,3,1],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,4,1],[0,3,1,1],[1,2,2,0]],[[0,3,2,1],[2,2,3,1],[0,3,1,2],[0,1,2,1]],[[0,2,3,1],[2,2,3,1],[0,3,1,2],[0,1,2,1]],[[0,2,2,2],[2,2,3,1],[0,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,2,4,1],[0,3,1,2],[0,1,2,1]],[[0,3,2,1],[2,2,3,1],[0,3,1,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[0,3,1,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[0,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[0,3,1,2],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[0,3,1,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[0,3,1,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[0,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[0,3,1,2],[1,1,2,0]],[[0,3,2,1],[2,2,3,1],[0,3,1,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,1],[0,3,1,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,1],[0,3,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,4,1],[0,3,1,2],[1,2,0,1]],[[0,3,2,1],[2,2,3,1],[0,3,1,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,1],[0,3,1,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,1],[0,3,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,4,1],[0,3,1,2],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[1,3,3,0],[1,2,0,0]],[[1,2,2,0],[3,1,3,2],[1,3,3,0],[1,2,0,0]],[[1,2,3,0],[2,1,3,2],[1,3,3,0],[1,2,0,0]],[[1,3,2,0],[2,1,3,2],[1,3,3,0],[1,2,0,0]],[[0,3,2,1],[2,2,3,1],[0,3,2,0],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[0,3,2,0],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[0,3,2,0],[1,1,2,1]],[[0,3,2,1],[2,2,3,1],[0,3,2,0],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[0,3,2,0],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[0,3,2,0],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[0,3,2,1],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[0,3,2,1],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[0,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[0,3,2,1],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[0,3,2,1],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[0,3,2,1],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[0,3,2,1],[1,1,2,0]],[[0,3,2,1],[2,2,3,1],[0,3,2,1],[1,2,0,1]],[[0,2,3,1],[2,2,3,1],[0,3,2,1],[1,2,0,1]],[[0,2,2,2],[2,2,3,1],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,4,1],[0,3,2,1],[1,2,0,1]],[[0,3,2,1],[2,2,3,1],[0,3,2,1],[1,2,1,0]],[[0,2,3,1],[2,2,3,1],[0,3,2,1],[1,2,1,0]],[[0,2,2,2],[2,2,3,1],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,4,1],[0,3,2,1],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[1,3,3,0],[1,2,0,0]],[[0,3,2,1],[2,2,3,1],[0,3,2,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,1],[0,3,2,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,1],[0,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,2,4,1],[0,3,2,2],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[0,3,2,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[0,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[0,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[0,3,2,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[0,3,2,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[0,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[0,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[0,3,2,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,1],[0,3,2,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,1],[0,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,1],[0,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,4,1],[0,3,2,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,1],[0,3,2,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[0,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[0,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,0],[3,1,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,3,0],[2,1,3,2],[1,3,3,0],[1,1,1,0]],[[1,3,2,0],[2,1,3,2],[1,3,3,0],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,0],[2,1,4,2],[1,3,3,0],[1,0,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,3,0],[1,0,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,3,0],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,3,0],[1,0,2,0]],[[0,3,2,1],[2,2,3,1],[0,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,2,3,1],[0,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,2,3,1],[0,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,4,1],[0,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,3,1],[0,3,4,0],[0,1,2,1]],[[0,2,2,1],[2,2,3,1],[0,3,3,0],[0,1,3,1]],[[0,2,2,1],[2,2,3,1],[0,3,3,0],[0,1,2,2]],[[0,3,2,1],[2,2,3,1],[0,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[0,3,3,0],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[0,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[0,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,3,1],[0,3,4,0],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[0,3,3,0],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[0,3,3,0],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[0,3,3,0],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[0,3,3,0],[1,1,2,0]],[[0,3,2,1],[2,2,3,1],[0,3,3,0],[1,2,1,0]],[[0,2,3,1],[2,2,3,1],[0,3,3,0],[1,2,1,0]],[[0,2,2,2],[2,2,3,1],[0,3,3,0],[1,2,1,0]],[[0,2,2,1],[2,2,4,1],[0,3,3,0],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[1,3,3,0],[0,2,1,0]],[[1,2,2,0],[3,1,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,3,0],[2,1,3,2],[1,3,3,0],[0,2,1,0]],[[1,3,2,0],[2,1,3,2],[1,3,3,0],[0,2,1,0]],[[2,2,2,0],[2,1,3,2],[1,3,3,0],[0,2,1,0]],[[0,3,2,1],[2,2,3,1],[0,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,2,3,1],[0,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,2,3,1],[0,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,2,4,1],[0,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,2,3,1],[0,3,4,1],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[0,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[0,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[0,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[0,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,3,1],[0,3,4,1],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[0,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[0,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[0,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[0,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,3,1],[0,3,4,1],[0,1,2,0]],[[0,2,2,1],[2,2,3,1],[0,3,3,1],[0,1,3,0]],[[0,3,2,1],[2,2,3,1],[0,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,2,3,1],[0,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,2,3,1],[0,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,4,1],[0,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,3,1],[0,3,4,1],[0,2,0,1]],[[0,3,2,1],[2,2,3,1],[0,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[0,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[0,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[0,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,3,1],[0,3,4,1],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,3,0],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,3,0],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[1,3,4,0],[0,0,2,1]],[[1,2,2,0],[2,1,3,3],[1,3,3,0],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[0,3,3,1],[1,2,0,0]],[[0,2,3,1],[2,2,3,1],[0,3,3,1],[1,2,0,0]],[[0,2,2,2],[2,2,3,1],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,2,4,1],[0,3,3,1],[1,2,0,0]],[[1,2,2,0],[2,1,4,2],[1,3,3,0],[0,0,2,1]],[[1,2,2,0],[3,1,3,2],[1,3,3,0],[0,0,2,1]],[[1,2,3,0],[2,1,3,2],[1,3,3,0],[0,0,2,1]],[[1,3,2,0],[2,1,3,2],[1,3,3,0],[0,0,2,1]],[[2,2,2,0],[2,1,3,2],[1,3,3,0],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[0,3,3,2],[0,1,0,1]],[[0,2,3,1],[2,2,3,1],[0,3,3,2],[0,1,0,1]],[[0,2,2,2],[2,2,3,1],[0,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,2,4,1],[0,3,3,2],[0,1,0,1]],[[1,2,2,0],[2,1,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,0],[2,1,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,2,2],[0,0,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,2,2],[0,0,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[2,1,3,2],[1,3,2,2],[0,0,1,2]],[[1,2,2,0],[2,1,3,2],[1,3,2,3],[0,0,1,1]],[[1,2,2,0],[2,1,3,3],[1,3,2,2],[0,0,1,1]],[[1,2,2,0],[2,1,4,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,0],[3,1,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,0],[2,1,3,2],[1,3,2,2],[0,0,1,1]],[[1,3,2,0],[2,1,3,2],[1,3,2,2],[0,0,1,1]],[[2,2,2,0],[2,1,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,0],[2,1,3,3],[1,3,2,1],[1,2,0,0]],[[1,2,2,0],[2,1,4,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,0],[3,1,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,3,0],[2,1,3,2],[1,3,2,1],[1,2,0,0]],[[1,3,2,0],[2,1,3,2],[1,3,2,1],[1,2,0,0]],[[2,2,2,0],[2,1,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,0],[2,1,3,3],[1,3,2,1],[1,1,1,0]],[[1,2,2,0],[2,1,4,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,0],[3,1,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,3,0],[2,1,3,2],[1,3,2,1],[1,1,1,0]],[[1,3,2,0],[2,1,3,2],[1,3,2,1],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,0],[2,1,3,3],[1,3,2,1],[1,1,0,1]],[[1,2,2,0],[2,1,4,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,0],[3,1,3,2],[1,3,2,1],[1,1,0,1]],[[0,3,2,1],[2,2,3,1],[1,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[1,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[1,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[1,0,1,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[1,0,2,2],[0,2,2,1]],[[0,2,3,1],[2,2,3,1],[1,0,2,2],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[1,0,2,2],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[1,0,2,2],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[1,0,2,2],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[1,0,2,2],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[1,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[1,0,2,2],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[1,0,2,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,1],[1,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,1],[1,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,2,4,1],[1,0,2,2],[1,2,2,0]],[[0,3,2,1],[2,2,3,1],[1,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[1,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[1,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[1,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,2,3,1],[1,0,4,0],[1,2,2,1]],[[0,2,2,1],[2,2,3,1],[1,0,3,0],[2,2,2,1]],[[0,2,2,1],[2,2,3,1],[1,0,3,0],[1,3,2,1]],[[0,2,2,1],[2,2,3,1],[1,0,3,0],[1,2,3,1]],[[0,2,2,1],[2,2,3,1],[1,0,3,0],[1,2,2,2]],[[0,3,2,1],[2,2,3,1],[1,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[1,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[1,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[1,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,2,3,1],[1,0,4,1],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[1,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,2,3,1],[1,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,2,3,1],[1,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,2,4,1],[1,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,2,3,1],[1,0,4,1],[1,2,2,0]],[[0,2,2,1],[2,2,3,1],[1,0,3,1],[2,2,2,0]],[[0,2,2,1],[2,2,3,1],[1,0,3,1],[1,3,2,0]],[[0,2,2,1],[2,2,3,1],[1,0,3,1],[1,2,3,0]],[[0,3,2,1],[2,2,3,1],[1,0,3,2],[0,1,2,1]],[[0,2,3,1],[2,2,3,1],[1,0,3,2],[0,1,2,1]],[[0,2,2,2],[2,2,3,1],[1,0,3,2],[0,1,2,1]],[[0,2,2,1],[2,2,4,1],[1,0,3,2],[0,1,2,1]],[[0,3,2,1],[2,2,3,1],[1,0,3,2],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[1,0,3,2],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[1,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[1,0,3,2],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[1,0,3,2],[0,2,2,0]],[[0,2,3,1],[2,2,3,1],[1,0,3,2],[0,2,2,0]],[[0,2,2,2],[2,2,3,1],[1,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,2,4,1],[1,0,3,2],[0,2,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,0],[2,1,3,2],[1,3,2,1],[1,1,0,1]],[[2,2,2,0],[2,1,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,0],[2,1,3,3],[1,3,2,1],[1,0,2,0]],[[0,3,2,1],[2,2,3,1],[1,1,0,2],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[1,1,0,2],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[1,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[1,1,0,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[1,1,1,2],[0,2,2,1]],[[0,2,3,1],[2,2,3,1],[1,1,1,2],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[1,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[1,1,1,2],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[1,1,2,2],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[1,1,2,2],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[1,1,2,2],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[1,1,2,2],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[1,1,2,2],[0,2,2,0]],[[0,2,3,1],[2,2,3,1],[1,1,2,2],[0,2,2,0]],[[0,2,2,2],[2,2,3,1],[1,1,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,4,1],[1,1,2,2],[0,2,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,2,1],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,0],[2,1,3,3],[1,3,2,1],[1,0,1,1]],[[1,2,2,0],[2,1,4,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,0],[3,1,3,2],[1,3,2,1],[1,0,1,1]],[[1,2,3,0],[2,1,3,2],[1,3,2,1],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[1,1,3,0],[0,2,2,1]],[[0,2,3,1],[2,2,3,1],[1,1,3,0],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[1,1,3,0],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[1,1,3,0],[0,2,2,1]],[[0,2,2,1],[2,2,3,1],[1,1,4,0],[0,2,2,1]],[[0,2,2,1],[2,2,3,1],[1,1,3,0],[0,3,2,1]],[[0,2,2,1],[2,2,3,1],[1,1,3,0],[0,2,3,1]],[[0,2,2,1],[2,2,3,1],[1,1,3,0],[0,2,2,2]],[[0,3,2,1],[2,2,3,1],[1,1,3,1],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[1,1,3,1],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[1,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[1,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,3,1],[1,1,4,1],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[1,1,3,1],[0,2,2,0]],[[0,2,3,1],[2,2,3,1],[1,1,3,1],[0,2,2,0]],[[0,2,2,2],[2,2,3,1],[1,1,3,1],[0,2,2,0]],[[0,2,2,1],[2,2,4,1],[1,1,3,1],[0,2,2,0]],[[0,2,2,1],[2,2,3,1],[1,1,4,1],[0,2,2,0]],[[0,2,2,1],[2,2,3,1],[1,1,3,1],[0,3,2,0]],[[0,2,2,1],[2,2,3,1],[1,1,3,1],[0,2,3,0]],[[1,3,2,0],[2,1,3,2],[1,3,2,1],[1,0,1,1]],[[2,2,2,0],[2,1,3,2],[1,3,2,1],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[1,1,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,1],[1,1,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,1],[1,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,4,1],[1,1,3,2],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[1,1,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[1,1,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[1,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[1,1,3,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[1,1,3,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[1,1,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[1,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[1,1,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,3],[1,3,2,1],[0,2,1,0]],[[0,3,2,1],[2,2,3,1],[1,1,3,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,1],[1,1,3,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,1],[1,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,4,1],[1,1,3,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[1,1,3,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[1,1,3,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[1,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[1,1,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,0],[3,1,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,3,0],[2,1,3,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,0],[2,1,3,2],[1,3,2,1],[0,2,1,0]],[[2,2,2,0],[2,1,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,0],[2,1,3,3],[1,3,2,1],[0,2,0,1]],[[1,2,2,0],[2,1,4,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,0],[3,1,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,3,0],[2,1,3,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,0],[2,1,3,2],[1,3,2,1],[0,2,0,1]],[[2,2,2,0],[2,1,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,0],[2,1,3,3],[1,3,2,1],[0,1,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,2,1],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,0],[2,1,3,3],[1,3,2,1],[0,1,1,1]],[[1,2,2,0],[2,1,4,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,0],[3,1,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,3,0],[2,1,3,2],[1,3,2,1],[0,1,1,1]],[[1,3,2,0],[2,1,3,2],[1,3,2,1],[0,1,1,1]],[[2,2,2,0],[2,1,3,2],[1,3,2,1],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[1,2,0,2],[0,2,2,1]],[[0,2,3,1],[2,2,3,1],[1,2,0,2],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[1,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[1,2,0,2],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[1,2,1,2],[0,1,2,1]],[[0,2,3,1],[2,2,3,1],[1,2,1,2],[0,1,2,1]],[[0,2,2,2],[2,2,3,1],[1,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,2,4,1],[1,2,1,2],[0,1,2,1]],[[0,3,2,1],[2,2,3,1],[1,2,1,2],[1,0,2,1]],[[0,2,3,1],[2,2,3,1],[1,2,1,2],[1,0,2,1]],[[0,2,2,2],[2,2,3,1],[1,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,2,4,1],[1,2,1,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[1,2,2,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,1],[1,2,2,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,1],[1,2,2,2],[0,0,2,1]],[[0,2,2,1],[2,2,4,1],[1,2,2,2],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[1,2,2,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[1,2,2,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[1,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[1,2,2,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[1,2,2,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[1,2,2,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[1,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[1,2,2,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,1],[1,2,2,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,1],[1,2,2,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,1],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,4,1],[1,2,2,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,1],[1,2,2,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[1,2,2,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[1,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[1,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,0],[3,1,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,3,0],[2,1,3,2],[1,3,2,0],[1,2,0,1]],[[1,3,2,0],[2,1,3,2],[1,3,2,0],[1,2,0,1]],[[0,3,2,1],[2,2,3,1],[1,2,2,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,1],[1,2,2,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,1],[1,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,4,1],[1,2,2,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[1,2,2,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[1,2,2,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[1,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[1,2,2,2],[1,0,2,0]],[[0,3,2,1],[2,2,3,1],[1,2,2,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,1],[1,2,2,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,1],[1,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,4,1],[1,2,2,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,1],[1,2,2,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,1],[1,2,2,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,1],[1,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,4,1],[1,2,2,2],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,0],[2,1,3,3],[1,3,2,0],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[1,3,2,0],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[1,3,2,0],[1,0,2,1]],[[1,2,2,0],[2,1,4,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,0],[3,1,3,2],[1,3,2,0],[1,0,2,1]],[[1,2,3,0],[2,1,3,2],[1,3,2,0],[1,0,2,1]],[[1,3,2,0],[2,1,3,2],[1,3,2,0],[1,0,2,1]],[[2,2,2,0],[2,1,3,2],[1,3,2,0],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[1,2,3,0],[0,1,2,1]],[[0,2,3,1],[2,2,3,1],[1,2,3,0],[0,1,2,1]],[[0,2,2,2],[2,2,3,1],[1,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,4,1],[1,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,3,1],[1,2,4,0],[0,1,2,1]],[[0,2,2,1],[2,2,3,1],[1,2,3,0],[0,1,3,1]],[[0,2,2,1],[2,2,3,1],[1,2,3,0],[0,1,2,2]],[[0,3,2,1],[2,2,3,1],[1,2,3,0],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[1,2,3,0],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[1,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[1,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,3,1],[1,2,4,0],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[1,2,3,0],[1,0,2,1]],[[0,2,3,1],[2,2,3,1],[1,2,3,0],[1,0,2,1]],[[0,2,2,2],[2,2,3,1],[1,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,4,1],[1,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,3,1],[1,2,4,0],[1,0,2,1]],[[0,2,2,1],[2,2,3,1],[1,2,3,0],[1,0,3,1]],[[0,2,2,1],[2,2,3,1],[1,2,3,0],[1,0,2,2]],[[0,3,2,1],[2,2,3,1],[1,2,3,0],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[1,2,3,0],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[1,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[1,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,3,1],[1,2,4,0],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[1,3,2,0],[0,2,1,1]],[[1,2,2,0],[2,1,4,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,0],[3,1,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,3,0],[2,1,3,2],[1,3,2,0],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[1,2,3,1],[0,0,2,1]],[[0,2,3,1],[2,2,3,1],[1,2,3,1],[0,0,2,1]],[[0,2,2,2],[2,2,3,1],[1,2,3,1],[0,0,2,1]],[[0,2,2,1],[2,2,4,1],[1,2,3,1],[0,0,2,1]],[[0,2,2,1],[2,2,3,1],[1,2,4,1],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[1,2,3,1],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[1,2,3,1],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[1,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[1,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,3,1],[1,2,4,1],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[1,2,3,1],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[1,2,3,1],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[1,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[1,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,3,1],[1,2,4,1],[0,1,2,0]],[[0,2,2,1],[2,2,3,1],[1,2,3,1],[0,1,3,0]],[[0,3,2,1],[2,2,3,1],[1,2,3,1],[0,2,0,1]],[[0,2,3,1],[2,2,3,1],[1,2,3,1],[0,2,0,1]],[[0,2,2,2],[2,2,3,1],[1,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,4,1],[1,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,3,1],[1,2,4,1],[0,2,0,1]],[[0,3,2,1],[2,2,3,1],[1,2,3,1],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[1,2,3,1],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[1,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[1,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,3,1],[1,2,4,1],[0,2,1,0]],[[1,3,2,0],[2,1,3,2],[1,3,2,0],[0,2,1,1]],[[2,2,2,0],[2,1,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,0],[2,1,3,3],[1,3,2,0],[0,1,2,1]],[[1,2,2,0],[2,1,4,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,0],[3,1,3,2],[1,3,2,0],[0,1,2,1]],[[1,2,3,0],[2,1,3,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,0],[2,1,3,2],[1,3,2,0],[0,1,2,1]],[[2,2,2,0],[2,1,3,2],[1,3,2,0],[0,1,2,1]],[[0,3,2,1],[2,2,3,1],[1,2,3,1],[1,0,1,1]],[[0,2,3,1],[2,2,3,1],[1,2,3,1],[1,0,1,1]],[[0,2,2,2],[2,2,3,1],[1,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,4,1],[1,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,3,1],[1,2,4,1],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[1,2,3,1],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[1,2,3,1],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[1,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[1,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,3,1],[1,2,4,1],[1,0,2,0]],[[0,2,2,1],[2,2,3,1],[1,2,3,1],[1,0,3,0]],[[0,3,2,1],[2,2,3,1],[1,2,3,1],[1,1,0,1]],[[0,2,3,1],[2,2,3,1],[1,2,3,1],[1,1,0,1]],[[0,2,2,2],[2,2,3,1],[1,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,4,1],[1,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,3,1],[1,2,4,1],[1,1,0,1]],[[0,3,2,1],[2,2,3,1],[1,2,3,1],[1,1,1,0]],[[0,2,3,1],[2,2,3,1],[1,2,3,1],[1,1,1,0]],[[0,2,2,2],[2,2,3,1],[1,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,4,1],[1,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,3,1],[1,2,4,1],[1,1,1,0]],[[1,2,2,0],[2,1,3,3],[1,3,1,2],[1,2,0,0]],[[1,2,2,0],[2,1,4,2],[1,3,1,2],[1,2,0,0]],[[1,2,2,0],[3,1,3,2],[1,3,1,2],[1,2,0,0]],[[1,2,3,0],[2,1,3,2],[1,3,1,2],[1,2,0,0]],[[1,3,2,0],[2,1,3,2],[1,3,1,2],[1,2,0,0]],[[2,2,2,0],[2,1,3,2],[1,3,1,2],[1,2,0,0]],[[0,3,2,1],[2,2,3,1],[1,2,3,2],[0,1,0,1]],[[0,2,3,1],[2,2,3,1],[1,2,3,2],[0,1,0,1]],[[0,2,2,2],[2,2,3,1],[1,2,3,2],[0,1,0,1]],[[0,2,2,1],[2,2,4,1],[1,2,3,2],[0,1,0,1]],[[1,2,2,0],[2,1,3,2],[1,3,1,3],[1,1,1,0]],[[1,2,2,0],[2,1,3,3],[1,3,1,2],[1,1,1,0]],[[1,2,2,0],[2,1,4,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,0],[3,1,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,3,0],[2,1,3,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,0],[2,1,3,2],[1,3,1,2],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[1,3,1,2],[1,1,0,2]],[[1,2,2,0],[2,1,3,2],[1,3,1,3],[1,1,0,1]],[[1,2,2,0],[2,1,3,3],[1,3,1,2],[1,1,0,1]],[[1,2,2,0],[2,1,4,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,0],[3,1,3,2],[1,3,1,2],[1,1,0,1]],[[1,2,3,0],[2,1,3,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,0],[2,1,3,2],[1,3,1,2],[1,1,0,1]],[[2,2,2,0],[2,1,3,2],[1,3,1,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,1],[1,2,3,2],[1,0,0,1]],[[0,2,3,1],[2,2,3,1],[1,2,3,2],[1,0,0,1]],[[0,2,2,2],[2,2,3,1],[1,2,3,2],[1,0,0,1]],[[0,2,2,1],[2,2,4,1],[1,2,3,2],[1,0,0,1]],[[1,2,2,0],[2,1,3,2],[1,3,1,3],[1,0,2,0]],[[1,2,2,0],[2,1,3,3],[1,3,1,2],[1,0,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,1,2],[1,0,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,1,2],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[1,3,1,2],[1,0,1,2]],[[1,2,2,0],[2,1,3,2],[1,3,1,3],[1,0,1,1]],[[1,2,2,0],[2,1,3,3],[1,3,1,2],[1,0,1,1]],[[1,2,2,0],[2,1,4,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,0],[3,1,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,3,0],[2,1,3,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,0],[2,1,3,2],[1,3,1,2],[1,0,1,1]],[[2,2,2,0],[2,1,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,0],[2,1,3,2],[1,3,1,3],[0,2,1,0]],[[1,2,2,0],[2,1,3,3],[1,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,0],[3,1,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,3,0],[2,1,3,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,0],[2,1,3,2],[1,3,1,2],[0,2,1,0]],[[2,2,2,0],[2,1,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[1,3,1,2],[0,2,0,2]],[[1,2,2,0],[2,1,3,2],[1,3,1,3],[0,2,0,1]],[[1,2,2,0],[2,1,3,3],[1,3,1,2],[0,2,0,1]],[[1,2,2,0],[2,1,4,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,0],[3,1,3,2],[1,3,1,2],[0,2,0,1]],[[1,2,3,0],[2,1,3,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,0],[2,1,3,2],[1,3,1,2],[0,2,0,1]],[[2,2,2,0],[2,1,3,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,0],[2,1,3,2],[1,3,1,3],[0,1,2,0]],[[1,2,2,0],[2,1,3,3],[1,3,1,2],[0,1,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,1,2],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[1,3,1,2],[0,1,1,2]],[[1,2,2,0],[2,1,3,2],[1,3,1,3],[0,1,1,1]],[[1,2,2,0],[2,1,3,3],[1,3,1,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,0,1],[0,2,2,1]],[[0,2,3,1],[2,2,3,1],[1,3,0,1],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[1,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[1,3,0,1],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,0,1],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[1,3,0,1],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[1,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[1,3,0,1],[1,1,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,0,2],[0,1,2,1]],[[0,2,3,1],[2,2,3,1],[1,3,0,2],[0,1,2,1]],[[0,2,2,2],[2,2,3,1],[1,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,4,1],[1,3,0,2],[0,1,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,0,2],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[1,3,0,2],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[1,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[1,3,0,2],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,0,2],[0,2,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,0,2],[0,2,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,0,2],[0,2,2,0]],[[0,3,2,1],[2,2,3,1],[1,3,0,2],[1,0,2,1]],[[0,2,3,1],[2,2,3,1],[1,3,0,2],[1,0,2,1]],[[0,2,2,2],[2,2,3,1],[1,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,4,1],[1,3,0,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,0,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[1,3,0,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[1,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[1,3,0,2],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,0,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,0,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,0,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,1,2],[0,1,1,1]],[[1,2,2,0],[3,1,3,2],[1,3,1,2],[0,1,1,1]],[[1,2,3,0],[2,1,3,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,0],[2,1,3,2],[1,3,1,2],[0,1,1,1]],[[2,2,2,0],[2,1,3,2],[1,3,1,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,1,0],[0,2,2,1]],[[0,2,3,1],[2,2,3,1],[1,3,1,0],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[1,3,1,0],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,1,0],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[1,3,1,0],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[1,3,1,0],[1,1,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,1,1],[0,2,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,1,1],[0,2,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,1,1],[0,2,2,0]],[[0,3,2,1],[2,2,3,1],[1,3,1,1],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,1,1],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,1,1],[1,1,2,0]],[[0,3,2,1],[2,2,3,1],[1,3,1,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[1,3,1,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[1,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[1,3,1,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,1,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,1,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,1,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,1],[1,3,1,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,1],[1,3,1,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,1],[1,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,4,1],[1,3,1,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,1],[1,3,1,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[1,3,1,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[1,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[1,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,3],[1,3,1,1],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,1,1],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,1,1],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,1,1],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,1,1],[1,1,2,0]],[[0,3,2,1],[2,2,3,1],[1,3,1,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,1],[1,3,1,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,1],[1,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,4,1],[1,3,1,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,1,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,1,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,1,2],[1,0,2,0]],[[0,3,2,1],[2,2,3,1],[1,3,1,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,1],[1,3,1,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,1],[1,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,4,1],[1,3,1,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,1],[1,3,1,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,1],[1,3,1,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,1],[1,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,4,1],[1,3,1,2],[1,1,1,0]],[[0,3,2,1],[2,2,3,1],[1,3,1,2],[1,2,0,0]],[[0,2,3,1],[2,2,3,1],[1,3,1,2],[1,2,0,0]],[[0,2,2,2],[2,2,3,1],[1,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,2,4,1],[1,3,1,2],[1,2,0,0]],[[1,2,2,0],[2,1,3,3],[1,3,1,1],[0,2,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,1,1],[0,2,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,0],[2,1,3,3],[1,3,1,0],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,0],[3,1,3,2],[1,3,1,0],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[1,3,1,0],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[1,3,1,0],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[1,3,1,0],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,0],[0,1,2,1]],[[0,2,3,1],[2,2,3,1],[1,3,2,0],[0,1,2,1]],[[0,2,2,2],[2,2,3,1],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,2,4,1],[1,3,2,0],[0,1,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,0],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[1,3,2,0],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[1,3,2,0],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,0],[1,0,2,1]],[[0,2,3,1],[2,2,3,1],[1,3,2,0],[1,0,2,1]],[[0,2,2,2],[2,2,3,1],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,4,1],[1,3,2,0],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,0],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[1,3,2,0],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[1,3,2,0],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,0],[1,2,0,1]],[[0,2,3,1],[2,2,3,1],[1,3,2,0],[1,2,0,1]],[[0,2,2,2],[2,2,3,1],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,4,1],[1,3,2,0],[1,2,0,1]],[[1,2,2,0],[2,1,4,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,0],[3,1,3,2],[1,3,1,0],[0,2,2,1]],[[1,2,3,0],[2,1,3,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,0],[2,1,3,2],[1,3,1,0],[0,2,2,1]],[[2,2,2,0],[2,1,3,2],[1,3,1,0],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,1],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[1,3,2,1],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[1,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[1,3,2,1],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,1],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,2,1],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,2,1],[0,1,2,0]],[[0,3,2,1],[2,2,3,1],[1,3,2,1],[0,2,0,1]],[[0,2,3,1],[2,2,3,1],[1,3,2,1],[0,2,0,1]],[[0,2,2,2],[2,2,3,1],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,4,1],[1,3,2,1],[0,2,0,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,1],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[1,3,2,1],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[1,3,2,1],[0,2,1,0]],[[0,3,2,1],[2,2,3,1],[1,3,2,1],[1,0,1,1]],[[0,2,3,1],[2,2,3,1],[1,3,2,1],[1,0,1,1]],[[0,2,2,2],[2,2,3,1],[1,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,2,4,1],[1,3,2,1],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,1],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,2,1],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,2,1],[1,0,2,0]],[[0,3,2,1],[2,2,3,1],[1,3,2,1],[1,1,0,1]],[[0,2,3,1],[2,2,3,1],[1,3,2,1],[1,1,0,1]],[[0,2,2,2],[2,2,3,1],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,4,1],[1,3,2,1],[1,1,0,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,1],[1,1,1,0]],[[0,2,3,1],[2,2,3,1],[1,3,2,1],[1,1,1,0]],[[0,2,2,2],[2,2,3,1],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,4,1],[1,3,2,1],[1,1,1,0]],[[0,3,2,1],[2,2,3,1],[1,3,2,1],[1,2,0,0]],[[0,2,3,1],[2,2,3,1],[1,3,2,1],[1,2,0,0]],[[0,2,2,2],[2,2,3,1],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,4,1],[1,3,2,1],[1,2,0,0]],[[1,2,2,0],[2,1,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,2,0],[2,1,3,3],[1,3,0,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,0,2],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,0,2],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[1,3,0,2],[1,1,1,2]],[[1,2,2,0],[2,1,3,2],[1,3,0,3],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,2],[0,0,1,1]],[[0,2,3,1],[2,2,3,1],[1,3,2,2],[0,0,1,1]],[[0,2,2,2],[2,2,3,1],[1,3,2,2],[0,0,1,1]],[[0,2,2,1],[2,2,4,1],[1,3,2,2],[0,0,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,2,2],[0,0,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,2,2],[0,0,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,2,2],[0,0,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[2,1,3,3],[1,3,0,2],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[1,3,0,2],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[1,3,0,2],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[1,3,0,2],[1,0,2,2]],[[1,2,2,0],[2,1,3,2],[1,3,0,2],[1,0,3,1]],[[1,2,2,0],[2,1,3,2],[1,3,0,3],[1,0,2,1]],[[1,2,2,0],[2,1,3,3],[1,3,0,2],[1,0,2,1]],[[1,2,2,0],[2,1,4,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,0],[3,1,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,3,0],[2,1,3,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,0],[2,1,3,2],[1,3,0,2],[1,0,2,1]],[[2,2,2,0],[2,1,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,0],[2,1,3,2],[1,3,0,3],[0,2,2,0]],[[1,2,2,0],[2,1,3,3],[1,3,0,2],[0,2,2,0]],[[1,2,2,0],[2,1,4,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,0],[3,1,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,3,0],[2,1,3,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,0],[2,1,3,2],[1,3,0,2],[0,2,2,0]],[[2,2,2,0],[2,1,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,2],[1,3,0,2],[0,2,1,2]],[[1,2,2,0],[2,1,3,2],[1,3,0,3],[0,2,1,1]],[[1,2,2,0],[2,1,3,3],[1,3,0,2],[0,2,1,1]],[[1,2,2,0],[2,1,4,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,0],[3,1,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,3,0],[2,1,3,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,0],[2,1,3,2],[1,3,0,2],[0,2,1,1]],[[2,2,2,0],[2,1,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[1,3,0,2],[0,1,2,2]],[[1,2,2,0],[2,1,3,2],[1,3,0,2],[0,1,3,1]],[[1,2,2,0],[2,1,3,2],[1,3,0,3],[0,1,2,1]],[[1,2,2,0],[2,1,3,3],[1,3,0,2],[0,1,2,1]],[[1,2,2,0],[2,1,4,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,0],[3,1,3,2],[1,3,0,2],[0,1,2,1]],[[1,2,3,0],[2,1,3,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,0],[2,1,3,2],[1,3,0,2],[0,1,2,1]],[[2,2,2,0],[2,1,3,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,0],[2,1,3,3],[1,3,0,1],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,0],[3,1,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[1,3,0,1],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[1,3,0,1],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[1,3,0,1],[0,2,2,1]],[[1,2,2,0],[2,1,4,2],[1,3,0,1],[0,2,2,1]],[[1,2,2,0],[3,1,3,2],[1,3,0,1],[0,2,2,1]],[[1,2,3,0],[2,1,3,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,0],[2,1,3,2],[1,3,0,1],[0,2,2,1]],[[2,2,2,0],[2,1,3,2],[1,3,0,1],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,3,0],[0,0,2,1]],[[0,2,3,1],[2,2,3,1],[1,3,3,0],[0,0,2,1]],[[0,2,2,2],[2,2,3,1],[1,3,3,0],[0,0,2,1]],[[0,2,2,1],[2,2,4,1],[1,3,3,0],[0,0,2,1]],[[0,2,2,1],[2,2,3,1],[1,3,4,0],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[1,3,3,0],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,3,0],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,3,0],[0,1,2,0]],[[0,3,2,1],[2,2,3,1],[1,3,3,0],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[1,3,3,0],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[1,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[1,3,3,0],[0,2,1,0]],[[0,3,2,1],[2,2,3,1],[1,3,3,0],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,3,0],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,3,0],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,3,0],[1,0,2,0]],[[0,3,2,1],[2,2,3,1],[1,3,3,0],[1,1,1,0]],[[0,2,3,1],[2,2,3,1],[1,3,3,0],[1,1,1,0]],[[0,2,2,2],[2,2,3,1],[1,3,3,0],[1,1,1,0]],[[0,2,2,1],[2,2,4,1],[1,3,3,0],[1,1,1,0]],[[0,3,2,1],[2,2,3,1],[1,3,3,0],[1,2,0,0]],[[0,2,3,1],[2,2,3,1],[1,3,3,0],[1,2,0,0]],[[0,2,2,2],[2,2,3,1],[1,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,2,4,1],[1,3,3,0],[1,2,0,0]],[[1,2,2,0],[2,1,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,0],[2,1,3,3],[1,2,3,2],[1,0,0,1]],[[1,2,2,0],[2,1,4,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,0],[3,1,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,0],[2,1,3,2],[1,2,3,2],[1,0,0,1]],[[1,3,2,0],[2,1,3,2],[1,2,3,2],[1,0,0,1]],[[2,2,2,0],[2,1,3,2],[1,2,3,2],[1,0,0,1]],[[0,3,2,1],[2,2,3,1],[1,3,3,1],[0,0,1,1]],[[0,2,3,1],[2,2,3,1],[1,3,3,1],[0,0,1,1]],[[0,2,2,2],[2,2,3,1],[1,3,3,1],[0,0,1,1]],[[0,2,2,1],[2,2,4,1],[1,3,3,1],[0,0,1,1]],[[0,2,2,1],[2,2,3,1],[1,3,4,1],[0,0,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,3,1],[0,0,2,0]],[[0,2,3,1],[2,2,3,1],[1,3,3,1],[0,0,2,0]],[[0,2,2,2],[2,2,3,1],[1,3,3,1],[0,0,2,0]],[[0,2,2,1],[2,2,4,1],[1,3,3,1],[0,0,2,0]],[[0,2,2,1],[2,2,3,1],[1,3,4,1],[0,0,2,0]],[[0,3,2,1],[2,2,3,1],[1,3,3,1],[0,2,0,0]],[[0,2,3,1],[2,2,3,1],[1,3,3,1],[0,2,0,0]],[[0,2,2,2],[2,2,3,1],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,2,4,1],[1,3,3,1],[0,2,0,0]],[[1,2,2,0],[2,1,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,0],[2,1,3,3],[1,2,3,2],[0,1,0,1]],[[1,2,2,0],[2,1,4,2],[1,2,3,2],[0,1,0,1]],[[1,2,2,0],[3,1,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,0],[2,1,3,2],[1,2,3,2],[0,1,0,1]],[[1,3,2,0],[2,1,3,2],[1,2,3,2],[0,1,0,1]],[[2,2,2,0],[2,1,3,2],[1,2,3,2],[0,1,0,1]],[[0,3,2,1],[2,2,3,1],[1,3,3,1],[1,1,0,0]],[[0,2,3,1],[2,2,3,1],[1,3,3,1],[1,1,0,0]],[[0,2,2,2],[2,2,3,1],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,4,1],[1,3,3,1],[1,1,0,0]],[[1,2,2,0],[2,1,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,2,0],[2,1,3,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,1,4,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[3,1,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,3,0],[2,1,3,2],[1,2,3,1],[1,1,1,0]],[[1,3,2,0],[2,1,3,2],[1,2,3,1],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[1,2,4,1],[1,1,0,1]],[[1,2,2,0],[2,1,3,3],[1,2,3,1],[1,1,0,1]],[[1,2,2,0],[2,1,4,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,0],[3,1,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,0],[2,1,3,2],[1,2,3,1],[1,1,0,1]],[[1,3,2,0],[2,1,3,2],[1,2,3,1],[1,1,0,1]],[[2,2,2,0],[2,1,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,0],[2,1,3,2],[1,2,3,1],[1,0,3,0]],[[1,2,2,0],[2,1,3,2],[1,2,4,1],[1,0,2,0]],[[1,2,2,0],[2,1,3,3],[1,2,3,1],[1,0,2,0]],[[1,2,2,0],[2,1,4,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,0],[3,1,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[1,2,3,1],[1,0,2,0]],[[1,3,2,0],[2,1,3,2],[1,2,3,1],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[1,2,4,1],[1,0,1,1]],[[1,2,2,0],[2,1,3,3],[1,2,3,1],[1,0,1,1]],[[1,2,2,0],[2,1,4,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,0],[3,1,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,0],[2,1,3,2],[1,2,3,1],[1,0,1,1]],[[1,3,2,0],[2,1,3,2],[1,2,3,1],[1,0,1,1]],[[2,2,2,0],[2,1,3,2],[1,2,3,1],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[1,3,3,2],[0,0,0,1]],[[0,2,3,1],[2,2,3,1],[1,3,3,2],[0,0,0,1]],[[0,2,2,2],[2,2,3,1],[1,3,3,2],[0,0,0,1]],[[0,2,2,1],[2,2,4,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,0],[2,1,3,2],[1,2,4,1],[0,2,1,0]],[[1,2,2,0],[2,1,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,0],[3,1,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,0],[2,1,3,2],[1,2,3,1],[0,2,1,0]],[[1,3,2,0],[2,1,3,2],[1,2,3,1],[0,2,1,0]],[[2,2,2,0],[2,1,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[1,2,4,1],[0,2,0,1]],[[1,2,2,0],[2,1,3,3],[1,2,3,1],[0,2,0,1]],[[1,2,2,0],[2,1,4,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,0],[3,1,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,0],[2,1,3,2],[1,2,3,1],[0,2,0,1]],[[1,3,2,0],[2,1,3,2],[1,2,3,1],[0,2,0,1]],[[2,2,2,0],[2,1,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,0],[2,1,3,2],[1,2,3,1],[0,1,3,0]],[[1,2,2,0],[2,1,3,2],[1,2,4,1],[0,1,2,0]],[[1,2,2,0],[2,1,3,3],[1,2,3,1],[0,1,2,0]],[[1,2,2,0],[2,1,4,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,0],[3,1,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[1,2,3,1],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[1,2,3,1],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[1,2,4,1],[0,1,1,1]],[[1,2,2,0],[2,1,3,3],[1,2,3,1],[0,1,1,1]],[[1,2,2,0],[2,1,4,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,0],[3,1,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,0],[2,1,3,2],[1,2,3,1],[0,1,1,1]],[[1,3,2,0],[2,1,3,2],[1,2,3,1],[0,1,1,1]],[[2,2,2,0],[2,1,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,0],[2,1,3,2],[1,2,4,1],[0,0,2,1]],[[1,2,2,0],[2,1,3,3],[1,2,3,1],[0,0,2,1]],[[1,2,2,0],[2,1,4,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,0],[3,1,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,0],[2,1,3,2],[1,2,3,1],[0,0,2,1]],[[1,3,2,0],[2,1,3,2],[1,2,3,1],[0,0,2,1]],[[2,2,2,0],[2,1,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,0],[2,1,3,2],[1,2,4,0],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[1,2,3,0],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[1,2,3,0],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[1,2,3,0],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[1,2,3,0],[1,0,2,2]],[[1,2,2,0],[2,1,3,2],[1,2,3,0],[1,0,3,1]],[[1,2,2,0],[2,1,3,2],[1,2,4,0],[1,0,2,1]],[[1,2,2,0],[2,1,3,3],[1,2,3,0],[1,0,2,1]],[[1,2,2,0],[2,1,4,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,0],[3,1,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,0],[2,1,3,2],[1,2,3,0],[1,0,2,1]],[[1,3,2,0],[2,1,3,2],[1,2,3,0],[1,0,2,1]],[[2,2,2,0],[2,1,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,0],[2,1,3,2],[1,2,4,0],[0,2,1,1]],[[1,2,2,0],[2,1,3,3],[1,2,3,0],[0,2,1,1]],[[1,2,2,0],[2,1,4,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,0],[3,1,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,3,0],[2,1,3,2],[1,2,3,0],[0,2,1,1]],[[1,3,2,0],[2,1,3,2],[1,2,3,0],[0,2,1,1]],[[2,2,2,0],[2,1,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[1,2,3,0],[0,1,2,2]],[[1,2,2,0],[2,1,3,2],[1,2,3,0],[0,1,3,1]],[[1,2,2,0],[2,1,3,2],[1,2,4,0],[0,1,2,1]],[[1,2,2,0],[2,1,3,3],[1,2,3,0],[0,1,2,1]],[[1,2,2,0],[2,1,4,2],[1,2,3,0],[0,1,2,1]],[[1,2,2,0],[3,1,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,0],[2,1,3,2],[1,2,3,0],[0,1,2,1]],[[1,3,2,0],[2,1,3,2],[1,2,3,0],[0,1,2,1]],[[2,2,2,0],[2,1,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,2,0],[2,1,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,0],[2,1,3,3],[1,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,1,4,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,0],[3,1,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,0],[2,1,3,2],[1,2,2,2],[1,1,1,0]],[[1,3,2,0],[2,1,3,2],[1,2,2,2],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[1,2,2,2],[1,1,0,2]],[[1,2,2,0],[2,1,3,2],[1,2,2,3],[1,1,0,1]],[[1,2,2,0],[2,1,3,3],[1,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,1,4,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,0],[3,1,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,0],[2,1,3,2],[1,2,2,2],[1,1,0,1]],[[1,3,2,0],[2,1,3,2],[1,2,2,2],[1,1,0,1]],[[2,2,2,0],[2,1,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,1,3,2],[1,2,2,3],[1,0,2,0]],[[1,2,2,0],[2,1,3,3],[1,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,1,4,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,0],[3,1,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[1,2,2,2],[1,0,2,0]],[[1,3,2,0],[2,1,3,2],[1,2,2,2],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[1,2,2,2],[1,0,1,2]],[[1,2,2,0],[2,1,3,2],[1,2,2,3],[1,0,1,1]],[[1,2,2,0],[2,1,3,3],[1,2,2,2],[1,0,1,1]],[[1,2,2,0],[2,1,4,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,0],[3,1,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,0],[2,1,3,2],[1,2,2,2],[1,0,1,1]],[[1,3,2,0],[2,1,3,2],[1,2,2,2],[1,0,1,1]],[[2,2,2,0],[2,1,3,2],[1,2,2,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[2,0,1,1],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[2,0,1,1],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[2,0,1,1],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[2,0,1,1],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,0,1,2],[0,2,2,1]],[[0,2,3,1],[2,2,3,1],[2,0,1,2],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[2,0,1,2],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,0,1,2],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[2,0,1,2],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[2,0,1,2],[1,1,2,1]],[[0,3,2,1],[2,2,3,1],[2,0,1,2],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[2,0,1,2],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[2,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[2,0,1,2],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,0,1,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,1],[2,0,1,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,1],[2,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,4,1],[2,0,1,2],[1,2,2,0]],[[0,3,2,1],[2,2,3,1],[2,0,2,0],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[2,0,2,0],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[2,0,2,0],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,0,2,1],[1,2,2,0]],[[0,2,3,1],[2,2,3,1],[2,0,2,1],[1,2,2,0]],[[0,2,2,2],[2,2,3,1],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,2,4,1],[2,0,2,1],[1,2,2,0]],[[0,3,2,1],[2,2,3,1],[2,0,2,2],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[2,0,2,2],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[2,0,2,2],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,0,2,2],[0,2,2,0]],[[0,2,3,1],[2,2,3,1],[2,0,2,2],[0,2,2,0]],[[0,2,2,2],[2,2,3,1],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,2,4,1],[2,0,2,2],[0,2,2,0]],[[0,3,2,1],[2,2,3,1],[2,0,2,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[2,0,2,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[2,0,2,2],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[2,0,2,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[2,0,2,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[2,0,2,2],[1,1,2,0]],[[0,3,2,1],[2,2,3,1],[2,0,2,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,1],[2,0,2,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,1],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,2,4,1],[2,0,2,2],[1,2,0,1]],[[0,3,2,1],[2,2,3,1],[2,0,2,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,1],[2,0,2,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,1],[2,0,2,2],[1,2,1,0]],[[0,2,2,1],[2,2,4,1],[2,0,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,0],[2,1,3,3],[1,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,0],[3,1,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,0],[2,1,3,2],[1,2,2,2],[0,2,1,0]],[[0,3,2,1],[2,2,3,1],[2,0,3,0],[0,2,2,1]],[[0,2,3,1],[2,2,3,1],[2,0,3,0],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,2,3,1],[2,0,4,0],[0,2,2,1]],[[0,2,2,1],[2,2,3,1],[2,0,3,0],[0,3,2,1]],[[0,2,2,1],[2,2,3,1],[2,0,3,0],[0,2,3,1]],[[0,2,2,1],[2,2,3,1],[2,0,3,0],[0,2,2,2]],[[0,3,2,1],[2,2,3,1],[2,0,3,0],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[2,0,3,0],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,2,3,1],[2,0,4,0],[1,1,2,1]],[[0,2,2,1],[2,2,3,1],[2,0,3,0],[1,1,3,1]],[[0,2,2,1],[2,2,3,1],[2,0,3,0],[1,1,2,2]],[[0,3,2,1],[2,2,3,1],[2,0,3,0],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[2,0,3,0],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,3,1],[2,0,4,0],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,0,3,1],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[2,0,3,1],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[2,2,3,1],[2,0,4,1],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,0,3,1],[0,2,2,0]],[[0,2,3,1],[2,2,3,1],[2,0,3,1],[0,2,2,0]],[[0,2,2,2],[2,2,3,1],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,2,4,1],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,2,3,1],[2,0,4,1],[0,2,2,0]],[[0,2,2,1],[2,2,3,1],[2,0,3,1],[0,3,2,0]],[[0,2,2,1],[2,2,3,1],[2,0,3,1],[0,2,3,0]],[[0,3,2,1],[2,2,3,1],[2,0,3,1],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[2,0,3,1],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[2,2,3,1],[2,0,4,1],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[2,0,3,1],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[2,0,3,1],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,2,3,1],[2,0,4,1],[1,1,2,0]],[[0,2,2,1],[2,2,3,1],[2,0,3,1],[1,1,3,0]],[[0,3,2,1],[2,2,3,1],[2,0,3,1],[1,2,0,1]],[[0,2,3,1],[2,2,3,1],[2,0,3,1],[1,2,0,1]],[[0,2,2,2],[2,2,3,1],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,4,1],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,2,3,1],[2,0,4,1],[1,2,0,1]],[[0,3,2,1],[2,2,3,1],[2,0,3,1],[1,2,1,0]],[[0,2,3,1],[2,2,3,1],[2,0,3,1],[1,2,1,0]],[[0,2,2,2],[2,2,3,1],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,4,1],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,2,3,1],[2,0,4,1],[1,2,1,0]],[[1,3,2,0],[2,1,3,2],[1,2,2,2],[0,2,1,0]],[[2,2,2,0],[2,1,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[1,2,2,2],[0,2,0,2]],[[1,2,2,0],[2,1,3,2],[1,2,2,3],[0,2,0,1]],[[1,2,2,0],[2,1,3,3],[1,2,2,2],[0,2,0,1]],[[1,2,2,0],[2,1,4,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,0],[3,1,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,0],[2,1,3,2],[1,2,2,2],[0,2,0,1]],[[1,3,2,0],[2,1,3,2],[1,2,2,2],[0,2,0,1]],[[2,2,2,0],[2,1,3,2],[1,2,2,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,1],[2,0,3,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,1],[2,0,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,1],[2,0,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,4,1],[2,0,3,2],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[2,0,3,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[2,0,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[2,0,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[2,0,3,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[2,0,3,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[2,0,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[2,0,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[2,0,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[1,2,2,3],[0,1,2,0]],[[0,3,2,1],[2,2,3,1],[2,0,3,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,1],[2,0,3,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,1],[2,0,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,4,1],[2,0,3,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[2,0,3,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[2,0,3,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[2,0,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[2,0,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,3],[1,2,2,2],[0,1,2,0]],[[1,2,2,0],[2,1,4,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,0],[3,1,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[1,2,2,2],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[1,2,2,2],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[1,2,2,2],[0,1,1,2]],[[1,2,2,0],[2,1,3,2],[1,2,2,3],[0,1,1,1]],[[1,2,2,0],[2,1,3,3],[1,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,1,4,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,0],[3,1,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,0],[2,1,3,2],[1,2,2,2],[0,1,1,1]],[[1,3,2,0],[2,1,3,2],[1,2,2,2],[0,1,1,1]],[[2,2,2,0],[2,1,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,1,3,2],[1,2,2,2],[0,0,2,2]],[[1,2,2,0],[2,1,3,2],[1,2,2,3],[0,0,2,1]],[[1,2,2,0],[2,1,3,3],[1,2,2,2],[0,0,2,1]],[[1,2,2,0],[2,1,4,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,0],[3,1,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,0],[2,1,3,2],[1,2,2,2],[0,0,2,1]],[[1,3,2,0],[2,1,3,2],[1,2,2,2],[0,0,2,1]],[[2,2,2,0],[2,1,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,0],[2,1,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,0],[2,1,3,2],[1,2,1,2],[1,0,3,1]],[[1,2,2,0],[2,1,3,2],[1,2,1,3],[1,0,2,1]],[[1,2,2,0],[2,1,3,3],[1,2,1,2],[1,0,2,1]],[[1,2,2,0],[2,1,4,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,0],[3,1,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,3,0],[2,1,3,2],[1,2,1,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,0,1],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[2,1,0,1],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[2,1,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[2,1,0,1],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,0,2],[0,2,2,1]],[[0,2,3,1],[2,2,3,1],[2,1,0,2],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[2,1,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[2,1,0,2],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,0,2],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[2,1,0,2],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[2,1,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[2,1,0,2],[1,1,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,0,2],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[2,1,0,2],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[2,1,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[2,1,0,2],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,1,0,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,1],[2,1,0,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,1],[2,1,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,4,1],[2,1,0,2],[1,2,2,0]],[[0,3,2,1],[2,2,3,1],[2,1,1,0],[1,2,2,1]],[[0,2,3,1],[2,2,3,1],[2,1,1,0],[1,2,2,1]],[[0,2,2,2],[2,2,3,1],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,2,4,1],[2,1,1,0],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,1,1],[1,2,2,0]],[[0,2,3,1],[2,2,3,1],[2,1,1,1],[1,2,2,0]],[[0,2,2,2],[2,2,3,1],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,2,4,1],[2,1,1,1],[1,2,2,0]],[[0,3,2,1],[2,2,3,1],[2,1,1,2],[0,1,2,1]],[[0,2,3,1],[2,2,3,1],[2,1,1,2],[0,1,2,1]],[[0,2,2,2],[2,2,3,1],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,2,4,1],[2,1,1,2],[0,1,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,1,2],[1,0,2,1]],[[0,2,3,1],[2,2,3,1],[2,1,1,2],[1,0,2,1]],[[0,2,2,2],[2,2,3,1],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,2,4,1],[2,1,1,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,1,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,1],[2,1,1,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,1],[2,1,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,4,1],[2,1,1,2],[1,2,0,1]],[[0,3,2,1],[2,2,3,1],[2,1,1,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,1],[2,1,1,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,1],[2,1,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,4,1],[2,1,1,2],[1,2,1,0]],[[1,3,2,0],[2,1,3,2],[1,2,1,2],[1,0,2,1]],[[2,2,2,0],[2,1,3,2],[1,2,1,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,2,0],[1,2,1,1]],[[0,2,3,1],[2,2,3,1],[2,1,2,0],[1,2,1,1]],[[0,2,2,2],[2,2,3,1],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,2,4,1],[2,1,2,0],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,1,2,1],[1,2,0,1]],[[0,2,3,1],[2,2,3,1],[2,1,2,1],[1,2,0,1]],[[0,2,2,2],[2,2,3,1],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,2,4,1],[2,1,2,1],[1,2,0,1]],[[0,3,2,1],[2,2,3,1],[2,1,2,1],[1,2,1,0]],[[0,2,3,1],[2,2,3,1],[2,1,2,1],[1,2,1,0]],[[0,2,2,2],[2,2,3,1],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,2,4,1],[2,1,2,1],[1,2,1,0]],[[0,3,2,1],[2,2,3,1],[2,1,2,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,1],[2,1,2,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,1],[2,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,2,4,1],[2,1,2,2],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,2,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[2,1,2,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[2,1,2,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[2,1,2,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[2,1,2,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[2,1,2,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,1],[2,1,2,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,1],[2,1,2,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,1],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,2,4,1],[2,1,2,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,1],[2,1,2,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[2,1,2,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[2,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[2,1,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,2],[1,2,1,2],[0,1,2,2]],[[1,2,2,0],[2,1,3,2],[1,2,1,2],[0,1,3,1]],[[1,2,2,0],[2,1,3,2],[1,2,1,3],[0,1,2,1]],[[1,2,2,0],[2,1,3,3],[1,2,1,2],[0,1,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,2,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,1],[2,1,2,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,1],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,2,4,1],[2,1,2,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[2,1,2,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[2,1,2,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[2,1,2,2],[1,0,2,0]],[[0,3,2,1],[2,2,3,1],[2,1,2,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,1],[2,1,2,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,1],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,4,1],[2,1,2,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,1],[2,1,2,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,1],[2,1,2,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,1],[2,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,2,4,1],[2,1,2,2],[1,1,1,0]],[[1,2,2,0],[2,1,4,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,0],[3,1,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,0],[2,1,3,2],[1,2,1,2],[0,1,2,1]],[[1,3,2,0],[2,1,3,2],[1,2,1,2],[0,1,2,1]],[[2,2,2,0],[2,1,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,0],[2,1,3,2],[1,2,0,2],[0,2,2,2]],[[1,2,2,0],[2,1,3,2],[1,2,0,2],[0,2,3,1]],[[1,2,2,0],[2,1,3,2],[1,2,0,2],[0,3,2,1]],[[1,2,2,0],[2,1,3,2],[1,2,0,3],[0,2,2,1]],[[1,2,2,0],[2,1,3,3],[1,2,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,4,2],[1,2,0,2],[0,2,2,1]],[[1,2,2,0],[3,1,3,2],[1,2,0,2],[0,2,2,1]],[[1,2,3,0],[2,1,3,2],[1,2,0,2],[0,2,2,1]],[[1,3,2,0],[2,1,3,2],[1,2,0,2],[0,2,2,1]],[[2,2,2,0],[2,1,3,2],[1,2,0,2],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,3,0],[0,1,2,1]],[[0,2,3,1],[2,2,3,1],[2,1,3,0],[0,1,2,1]],[[0,2,2,2],[2,2,3,1],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,4,1],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,2,3,1],[2,1,4,0],[0,1,2,1]],[[0,2,2,1],[2,2,3,1],[2,1,3,0],[0,1,3,1]],[[0,2,2,1],[2,2,3,1],[2,1,3,0],[0,1,2,2]],[[0,3,2,1],[2,2,3,1],[2,1,3,0],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[2,1,3,0],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,3,1],[2,1,4,0],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,1,3,0],[1,0,2,1]],[[0,2,3,1],[2,2,3,1],[2,1,3,0],[1,0,2,1]],[[0,2,2,2],[2,2,3,1],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,4,1],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,3,1],[2,1,4,0],[1,0,2,1]],[[0,2,2,1],[2,2,3,1],[2,1,3,0],[1,0,3,1]],[[0,2,2,1],[2,2,3,1],[2,1,3,0],[1,0,2,2]],[[0,3,2,1],[2,2,3,1],[2,1,3,0],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[2,1,3,0],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,3,1],[2,1,4,0],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[2,1,3,0],[1,2,1,0]],[[0,2,3,1],[2,2,3,1],[2,1,3,0],[1,2,1,0]],[[0,2,2,2],[2,2,3,1],[2,1,3,0],[1,2,1,0]],[[0,2,2,1],[2,2,4,1],[2,1,3,0],[1,2,1,0]],[[0,3,2,1],[2,2,3,1],[2,1,3,1],[0,0,2,1]],[[0,2,3,1],[2,2,3,1],[2,1,3,1],[0,0,2,1]],[[0,2,2,2],[2,2,3,1],[2,1,3,1],[0,0,2,1]],[[0,2,2,1],[2,2,4,1],[2,1,3,1],[0,0,2,1]],[[0,2,2,1],[2,2,3,1],[2,1,4,1],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,3,1],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[2,1,3,1],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,2,3,1],[2,1,4,1],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[2,1,3,1],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[2,1,3,1],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,2,3,1],[2,1,4,1],[0,1,2,0]],[[0,2,2,1],[2,2,3,1],[2,1,3,1],[0,1,3,0]],[[0,3,2,1],[2,2,3,1],[2,1,3,1],[0,2,0,1]],[[0,2,3,1],[2,2,3,1],[2,1,3,1],[0,2,0,1]],[[0,2,2,2],[2,2,3,1],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,4,1],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,2,3,1],[2,1,4,1],[0,2,0,1]],[[0,3,2,1],[2,2,3,1],[2,1,3,1],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[2,1,3,1],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,2,3,1],[2,1,4,1],[0,2,1,0]],[[0,3,2,1],[2,2,3,1],[2,1,3,1],[1,0,1,1]],[[0,2,3,1],[2,2,3,1],[2,1,3,1],[1,0,1,1]],[[0,2,2,2],[2,2,3,1],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,4,1],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,2,3,1],[2,1,4,1],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[2,1,3,1],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[2,1,3,1],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,2,3,1],[2,1,4,1],[1,0,2,0]],[[0,2,2,1],[2,2,3,1],[2,1,3,1],[1,0,3,0]],[[0,3,2,1],[2,2,3,1],[2,1,3,1],[1,1,0,1]],[[0,2,3,1],[2,2,3,1],[2,1,3,1],[1,1,0,1]],[[0,2,2,2],[2,2,3,1],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,4,1],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,2,3,1],[2,1,4,1],[1,1,0,1]],[[0,3,2,1],[2,2,3,1],[2,1,3,1],[1,1,1,0]],[[0,2,3,1],[2,2,3,1],[2,1,3,1],[1,1,1,0]],[[0,2,2,2],[2,2,3,1],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,4,1],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,2,3,1],[2,1,4,1],[1,1,1,0]],[[1,2,2,0],[2,1,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,0],[2,1,3,3],[1,1,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,4,2],[1,1,3,2],[1,0,2,0]],[[1,2,3,0],[2,1,3,2],[1,1,3,2],[1,0,2,0]],[[1,3,2,0],[2,1,3,2],[1,1,3,2],[1,0,2,0]],[[2,2,2,0],[2,1,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,2],[1,1,3,2],[1,0,1,2]],[[1,2,2,0],[2,1,3,2],[1,1,3,3],[1,0,1,1]],[[1,2,2,0],[2,1,3,3],[1,1,3,2],[1,0,1,1]],[[1,2,2,0],[2,1,4,2],[1,1,3,2],[1,0,1,1]],[[1,2,3,0],[2,1,3,2],[1,1,3,2],[1,0,1,1]],[[1,3,2,0],[2,1,3,2],[1,1,3,2],[1,0,1,1]],[[2,2,2,0],[2,1,3,2],[1,1,3,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[2,1,3,2],[0,1,0,1]],[[0,2,3,1],[2,2,3,1],[2,1,3,2],[0,1,0,1]],[[0,2,2,2],[2,2,3,1],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,2,4,1],[2,1,3,2],[0,1,0,1]],[[1,2,2,0],[2,1,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,0],[2,1,3,3],[1,1,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,4,2],[1,1,3,2],[0,1,2,0]],[[1,2,3,0],[2,1,3,2],[1,1,3,2],[0,1,2,0]],[[1,3,2,0],[2,1,3,2],[1,1,3,2],[0,1,2,0]],[[2,2,2,0],[2,1,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,2],[1,1,3,2],[0,1,1,2]],[[1,2,2,0],[2,1,3,2],[1,1,3,3],[0,1,1,1]],[[1,2,2,0],[2,1,3,3],[1,1,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,4,2],[1,1,3,2],[0,1,1,1]],[[1,2,3,0],[2,1,3,2],[1,1,3,2],[0,1,1,1]],[[1,3,2,0],[2,1,3,2],[1,1,3,2],[0,1,1,1]],[[2,2,2,0],[2,1,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,3,2],[1,1,3,2],[0,0,2,2]],[[1,2,2,0],[2,1,3,2],[1,1,3,3],[0,0,2,1]],[[1,2,2,0],[2,1,3,3],[1,1,3,2],[0,0,2,1]],[[1,2,2,0],[2,1,4,2],[1,1,3,2],[0,0,2,1]],[[1,2,3,0],[2,1,3,2],[1,1,3,2],[0,0,2,1]],[[1,3,2,0],[2,1,3,2],[1,1,3,2],[0,0,2,1]],[[2,2,2,0],[2,1,3,2],[1,1,3,2],[0,0,2,1]],[[0,3,2,1],[2,2,3,1],[2,1,3,2],[1,0,0,1]],[[0,2,3,1],[2,2,3,1],[2,1,3,2],[1,0,0,1]],[[0,2,2,2],[2,2,3,1],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,2,4,1],[2,1,3,2],[1,0,0,1]],[[1,2,2,0],[2,1,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,2,0],[2,1,3,2],[1,1,3,1],[0,3,2,0]],[[1,2,2,0],[2,1,3,2],[1,1,4,1],[0,2,2,0]],[[1,2,2,0],[2,1,3,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[2,1,4,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[3,1,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,0],[2,1,3,2],[1,1,3,1],[0,2,2,0]],[[1,3,2,0],[2,1,3,2],[1,1,3,1],[0,2,2,0]],[[2,2,2,0],[2,1,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[2,1,3,2],[1,1,4,1],[0,2,1,1]],[[1,2,2,0],[2,1,3,3],[1,1,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,4,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,0],[3,1,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,0],[2,1,3,2],[1,1,3,1],[0,2,1,1]],[[1,3,2,0],[2,1,3,2],[1,1,3,1],[0,2,1,1]],[[2,2,2,0],[2,1,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[1,1,3,0],[0,2,2,2]],[[1,2,2,0],[2,1,3,2],[1,1,3,0],[0,2,3,1]],[[1,2,2,0],[2,1,3,2],[1,1,3,0],[0,3,2,1]],[[1,2,2,0],[2,1,3,2],[1,1,4,0],[0,2,2,1]],[[1,2,2,0],[2,1,3,3],[1,1,3,0],[0,2,2,1]],[[1,2,2,0],[2,1,4,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,0],[3,1,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,0],[2,1,3,2],[1,1,3,0],[0,2,2,1]],[[1,3,2,0],[2,1,3,2],[1,1,3,0],[0,2,2,1]],[[2,2,2,0],[2,1,3,2],[1,1,3,0],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,0,1],[0,2,2,1]],[[0,2,3,1],[2,2,3,1],[2,2,0,1],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[2,2,0,1],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[2,2,0,1],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,0,1],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[2,2,0,1],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[2,2,0,1],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[2,2,0,1],[1,1,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,0,2],[0,1,2,1]],[[0,2,3,1],[2,2,3,1],[2,2,0,2],[0,1,2,1]],[[0,2,2,2],[2,2,3,1],[2,2,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,4,1],[2,2,0,2],[0,1,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,0,2],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[2,2,0,2],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[2,2,0,2],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[2,2,0,2],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,2,0,2],[0,2,2,0]],[[0,2,3,1],[2,2,3,1],[2,2,0,2],[0,2,2,0]],[[0,2,2,2],[2,2,3,1],[2,2,0,2],[0,2,2,0]],[[0,2,2,1],[2,2,4,1],[2,2,0,2],[0,2,2,0]],[[0,3,2,1],[2,2,3,1],[2,2,0,2],[1,0,2,1]],[[0,2,3,1],[2,2,3,1],[2,2,0,2],[1,0,2,1]],[[0,2,2,2],[2,2,3,1],[2,2,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,4,1],[2,2,0,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,0,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[2,2,0,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[2,2,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[2,2,0,2],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[2,2,0,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[2,2,0,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[2,2,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[2,2,0,2],[1,1,2,0]],[[0,3,2,1],[2,2,3,1],[2,2,1,0],[0,2,2,1]],[[0,2,3,1],[2,2,3,1],[2,2,1,0],[0,2,2,1]],[[0,2,2,2],[2,2,3,1],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[2,2,4,1],[2,2,1,0],[0,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,1,0],[1,1,2,1]],[[0,2,3,1],[2,2,3,1],[2,2,1,0],[1,1,2,1]],[[0,2,2,2],[2,2,3,1],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,2,4,1],[2,2,1,0],[1,1,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,1,1],[0,2,2,0]],[[0,2,3,1],[2,2,3,1],[2,2,1,1],[0,2,2,0]],[[0,2,2,2],[2,2,3,1],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[2,2,4,1],[2,2,1,1],[0,2,2,0]],[[0,3,2,1],[2,2,3,1],[2,2,1,1],[1,1,2,0]],[[0,2,3,1],[2,2,3,1],[2,2,1,1],[1,1,2,0]],[[0,2,2,2],[2,2,3,1],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,2,4,1],[2,2,1,1],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,0],[2,1,3,3],[1,1,2,2],[0,2,2,0]],[[1,2,2,0],[2,1,4,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,0],[3,1,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,0],[2,1,3,2],[1,1,2,2],[0,2,2,0]],[[1,3,2,0],[2,1,3,2],[1,1,2,2],[0,2,2,0]],[[2,2,2,0],[2,1,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,2],[1,1,2,2],[0,2,1,2]],[[1,2,2,0],[2,1,3,2],[1,1,2,3],[0,2,1,1]],[[1,2,2,0],[2,1,3,3],[1,1,2,2],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,2,1,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[2,2,1,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[2,2,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[2,2,1,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[2,2,1,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[2,2,1,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[2,2,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[2,2,1,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,1],[2,2,1,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,1],[2,2,1,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,1],[2,2,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,4,1],[2,2,1,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,1],[2,2,1,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[2,2,1,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[2,2,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[2,2,1,2],[0,2,1,0]],[[1,2,2,0],[2,1,4,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,0],[3,1,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,0],[2,1,3,2],[1,1,2,2],[0,2,1,1]],[[1,3,2,0],[2,1,3,2],[1,1,2,2],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,2,1,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,1],[2,2,1,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,1],[2,2,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,4,1],[2,2,1,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[2,2,1,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[2,2,1,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[2,2,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[2,2,1,2],[1,0,2,0]],[[0,3,2,1],[2,2,3,1],[2,2,1,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,1],[2,2,1,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,1],[2,2,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,4,1],[2,2,1,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,1],[2,2,1,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,1],[2,2,1,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,1],[2,2,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,4,1],[2,2,1,2],[1,1,1,0]],[[2,2,2,0],[2,1,3,2],[1,1,2,2],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,2,1,2],[1,2,0,0]],[[0,2,3,1],[2,2,3,1],[2,2,1,2],[1,2,0,0]],[[0,2,2,2],[2,2,3,1],[2,2,1,2],[1,2,0,0]],[[0,2,2,1],[2,2,4,1],[2,2,1,2],[1,2,0,0]],[[1,2,2,0],[2,1,3,2],[1,1,1,2],[0,2,2,2]],[[1,2,2,0],[2,1,3,2],[1,1,1,2],[0,2,3,1]],[[1,2,2,0],[2,1,3,2],[1,1,1,2],[0,3,2,1]],[[1,2,2,0],[2,1,3,2],[1,1,1,3],[0,2,2,1]],[[1,2,2,0],[2,1,3,3],[1,1,1,2],[0,2,2,1]],[[1,2,2,0],[2,1,4,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,0],[3,1,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,0],[2,1,3,2],[1,1,1,2],[0,2,2,1]],[[1,3,2,0],[2,1,3,2],[1,1,1,2],[0,2,2,1]],[[2,2,2,0],[2,1,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,0],[2,1,3,2],[1,1,0,2],[1,2,2,2]],[[1,2,2,0],[2,1,3,2],[1,1,0,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,2],[1,1,0,2],[1,3,2,1]],[[1,2,2,0],[2,1,3,2],[1,1,0,2],[2,2,2,1]],[[1,2,2,0],[2,1,3,2],[1,1,0,3],[1,2,2,1]],[[1,2,2,0],[2,1,3,3],[1,1,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[1,1,0,2],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[1,1,0,2],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[1,1,0,2],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[1,1,0,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,2,0],[0,1,2,1]],[[0,2,3,1],[2,2,3,1],[2,2,2,0],[0,1,2,1]],[[0,2,2,2],[2,2,3,1],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[2,2,4,1],[2,2,2,0],[0,1,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,2,0],[0,2,1,1]],[[0,2,3,1],[2,2,3,1],[2,2,2,0],[0,2,1,1]],[[0,2,2,2],[2,2,3,1],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[2,2,4,1],[2,2,2,0],[0,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,2,2,0],[1,0,2,1]],[[0,2,3,1],[2,2,3,1],[2,2,2,0],[1,0,2,1]],[[0,2,2,2],[2,2,3,1],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,2,4,1],[2,2,2,0],[1,0,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,2,0],[1,1,1,1]],[[0,2,3,1],[2,2,3,1],[2,2,2,0],[1,1,1,1]],[[0,2,2,2],[2,2,3,1],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,4,1],[2,2,2,0],[1,1,1,1]],[[0,3,2,1],[2,2,3,1],[2,2,2,0],[1,2,0,1]],[[0,2,3,1],[2,2,3,1],[2,2,2,0],[1,2,0,1]],[[0,2,2,2],[2,2,3,1],[2,2,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,4,1],[2,2,2,0],[1,2,0,1]],[[2,2,2,0],[2,1,3,2],[1,1,0,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,2,1],[0,1,1,1]],[[0,2,3,1],[2,2,3,1],[2,2,2,1],[0,1,1,1]],[[0,2,2,2],[2,2,3,1],[2,2,2,1],[0,1,1,1]],[[0,2,2,1],[2,2,4,1],[2,2,2,1],[0,1,1,1]],[[0,3,2,1],[2,2,3,1],[2,2,2,1],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[2,2,2,1],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[2,2,2,1],[0,1,2,0]],[[0,3,2,1],[2,2,3,1],[2,2,2,1],[0,2,0,1]],[[0,2,3,1],[2,2,3,1],[2,2,2,1],[0,2,0,1]],[[0,2,2,2],[2,2,3,1],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[2,2,4,1],[2,2,2,1],[0,2,0,1]],[[0,3,2,1],[2,2,3,1],[2,2,2,1],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[2,2,2,1],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[2,2,2,1],[0,2,1,0]],[[0,3,2,1],[2,2,3,1],[2,2,2,1],[1,0,1,1]],[[0,2,3,1],[2,2,3,1],[2,2,2,1],[1,0,1,1]],[[0,2,2,2],[2,2,3,1],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[2,2,4,1],[2,2,2,1],[1,0,1,1]],[[0,3,2,1],[2,2,3,1],[2,2,2,1],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[2,2,2,1],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[2,2,2,1],[1,0,2,0]],[[0,3,2,1],[2,2,3,1],[2,2,2,1],[1,1,0,1]],[[0,2,3,1],[2,2,3,1],[2,2,2,1],[1,1,0,1]],[[0,2,2,2],[2,2,3,1],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,2,4,1],[2,2,2,1],[1,1,0,1]],[[0,3,2,1],[2,2,3,1],[2,2,2,1],[1,1,1,0]],[[0,2,3,1],[2,2,3,1],[2,2,2,1],[1,1,1,0]],[[0,2,2,2],[2,2,3,1],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,2,4,1],[2,2,2,1],[1,1,1,0]],[[0,3,2,1],[2,2,3,1],[2,2,2,1],[1,2,0,0]],[[0,2,3,1],[2,2,3,1],[2,2,2,1],[1,2,0,0]],[[0,2,2,2],[2,2,3,1],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,2,4,1],[2,2,2,1],[1,2,0,0]],[[1,2,2,0],[2,1,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,0],[2,1,3,3],[1,0,3,2],[0,2,2,0]],[[1,2,2,0],[2,1,4,2],[1,0,3,2],[0,2,2,0]],[[1,2,3,0],[2,1,3,2],[1,0,3,2],[0,2,2,0]],[[1,3,2,0],[2,1,3,2],[1,0,3,2],[0,2,2,0]],[[2,2,2,0],[2,1,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,2],[1,0,3,2],[0,2,1,2]],[[1,2,2,0],[2,1,3,2],[1,0,3,3],[0,2,1,1]],[[1,2,2,0],[2,1,3,3],[1,0,3,2],[0,2,1,1]],[[1,2,2,0],[2,1,4,2],[1,0,3,2],[0,2,1,1]],[[1,2,3,0],[2,1,3,2],[1,0,3,2],[0,2,1,1]],[[1,3,2,0],[2,1,3,2],[1,0,3,2],[0,2,1,1]],[[2,2,2,0],[2,1,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,2,0],[2,1,3,2],[1,0,3,2],[0,1,2,2]],[[1,2,2,0],[2,1,3,2],[1,0,3,3],[0,1,2,1]],[[1,2,2,0],[2,1,3,3],[1,0,3,2],[0,1,2,1]],[[1,2,2,0],[2,1,4,2],[1,0,3,2],[0,1,2,1]],[[1,2,3,0],[2,1,3,2],[1,0,3,2],[0,1,2,1]],[[1,3,2,0],[2,1,3,2],[1,0,3,2],[0,1,2,1]],[[2,2,2,0],[2,1,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,2,0],[2,1,3,2],[1,0,3,1],[1,2,3,0]],[[1,2,2,0],[2,1,3,2],[1,0,3,1],[1,3,2,0]],[[1,2,2,0],[2,1,3,2],[1,0,3,1],[2,2,2,0]],[[1,2,2,0],[2,1,3,2],[1,0,4,1],[1,2,2,0]],[[1,2,2,0],[2,1,3,3],[1,0,3,1],[1,2,2,0]],[[1,2,2,0],[2,1,4,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,0],[3,1,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,3,0],[2,1,3,2],[1,0,3,1],[1,2,2,0]],[[1,3,2,0],[2,1,3,2],[1,0,3,1],[1,2,2,0]],[[2,2,2,0],[2,1,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[1,0,4,1],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[1,0,3,1],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,0],[3,1,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[1,0,3,1],[1,2,1,1]],[[1,3,2,0],[2,1,3,2],[1,0,3,1],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[1,0,3,0],[1,2,2,2]],[[1,2,2,0],[2,1,3,2],[1,0,3,0],[1,2,3,1]],[[1,2,2,0],[2,1,3,2],[1,0,3,0],[1,3,2,1]],[[1,2,2,0],[2,1,3,2],[1,0,3,0],[2,2,2,1]],[[1,2,2,0],[2,1,3,2],[1,0,4,0],[1,2,2,1]],[[1,2,2,0],[2,1,3,3],[1,0,3,0],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[1,0,3,0],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[1,0,3,0],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,0],[2,1,3,2],[1,0,2,3],[1,2,2,0]],[[1,2,2,0],[2,1,3,3],[1,0,2,2],[1,2,2,0]],[[1,2,2,0],[2,1,4,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,0],[3,1,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,3,0],[2,1,3,2],[1,0,2,2],[1,2,2,0]],[[1,3,2,0],[2,1,3,2],[1,0,2,2],[1,2,2,0]],[[2,2,2,0],[2,1,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[1,0,2,2],[1,2,1,2]],[[1,2,2,0],[2,1,3,2],[1,0,2,3],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[1,0,2,2],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,0],[3,1,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[1,0,2,2],[1,2,1,1]],[[1,3,2,0],[2,1,3,2],[1,0,2,2],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[1,0,2,2],[0,2,2,2]],[[1,2,2,0],[2,1,3,2],[1,0,2,2],[0,2,3,1]],[[1,2,2,0],[2,1,3,2],[1,0,2,3],[0,2,2,1]],[[1,2,2,0],[2,1,3,3],[1,0,2,2],[0,2,2,1]],[[1,2,2,0],[2,1,4,2],[1,0,2,2],[0,2,2,1]],[[1,2,3,0],[2,1,3,2],[1,0,2,2],[0,2,2,1]],[[1,3,2,0],[2,1,3,2],[1,0,2,2],[0,2,2,1]],[[2,2,2,0],[2,1,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,2,0],[2,1,3,2],[1,0,1,2],[1,2,2,2]],[[1,2,2,0],[2,1,3,2],[1,0,1,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,2],[1,0,1,2],[1,3,2,1]],[[1,2,2,0],[2,1,3,2],[1,0,1,2],[2,2,2,1]],[[1,2,2,0],[2,1,3,2],[1,0,1,3],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,3,0],[0,1,2,0]],[[0,2,3,1],[2,2,3,1],[2,2,3,0],[0,1,2,0]],[[0,2,2,2],[2,2,3,1],[2,2,3,0],[0,1,2,0]],[[0,2,2,1],[2,2,4,1],[2,2,3,0],[0,1,2,0]],[[0,3,2,1],[2,2,3,1],[2,2,3,0],[0,2,1,0]],[[0,2,3,1],[2,2,3,1],[2,2,3,0],[0,2,1,0]],[[0,2,2,2],[2,2,3,1],[2,2,3,0],[0,2,1,0]],[[0,2,2,1],[2,2,4,1],[2,2,3,0],[0,2,1,0]],[[1,2,2,0],[2,1,3,3],[1,0,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[1,0,1,2],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[1,0,1,2],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[1,0,1,2],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[1,0,1,2],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[1,0,1,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,2,3,0],[1,0,2,0]],[[0,2,3,1],[2,2,3,1],[2,2,3,0],[1,0,2,0]],[[0,2,2,2],[2,2,3,1],[2,2,3,0],[1,0,2,0]],[[0,2,2,1],[2,2,4,1],[2,2,3,0],[1,0,2,0]],[[0,3,2,1],[2,2,3,1],[2,2,3,0],[1,1,1,0]],[[0,2,3,1],[2,2,3,1],[2,2,3,0],[1,1,1,0]],[[0,2,2,2],[2,2,3,1],[2,2,3,0],[1,1,1,0]],[[0,2,2,1],[2,2,4,1],[2,2,3,0],[1,1,1,0]],[[0,3,2,1],[2,2,3,1],[2,2,3,0],[1,2,0,0]],[[0,2,3,1],[2,2,3,1],[2,2,3,0],[1,2,0,0]],[[0,2,2,2],[2,2,3,1],[2,2,3,0],[1,2,0,0]],[[0,2,2,1],[2,2,4,1],[2,2,3,0],[1,2,0,0]],[[1,2,2,0],[2,1,3,3],[0,3,3,1],[1,2,0,0]],[[1,2,2,0],[2,1,4,2],[0,3,3,1],[1,2,0,0]],[[1,2,2,0],[3,1,3,2],[0,3,3,1],[1,2,0,0]],[[1,2,3,0],[2,1,3,2],[0,3,3,1],[1,2,0,0]],[[1,3,2,0],[2,1,3,2],[0,3,3,1],[1,2,0,0]],[[2,2,2,0],[2,1,3,2],[0,3,3,1],[1,2,0,0]],[[0,3,2,1],[2,2,3,1],[2,2,3,1],[0,2,0,0]],[[0,2,3,1],[2,2,3,1],[2,2,3,1],[0,2,0,0]],[[0,2,2,2],[2,2,3,1],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[2,2,4,1],[2,2,3,1],[0,2,0,0]],[[0,3,2,1],[2,2,3,1],[2,2,3,1],[1,1,0,0]],[[0,2,3,1],[2,2,3,1],[2,2,3,1],[1,1,0,0]],[[0,2,2,2],[2,2,3,1],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,2,4,1],[2,2,3,1],[1,1,0,0]],[[1,2,2,0],[2,1,4,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,0],[3,1,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,3,0],[2,1,3,2],[0,3,3,0],[1,2,1,0]],[[1,3,2,0],[2,1,3,2],[0,3,3,0],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[0,3,3,0],[1,1,2,0]],[[1,2,2,0],[3,1,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[0,3,3,0],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[0,3,3,0],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,2,0],[2,1,3,3],[0,3,2,1],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,0],[3,1,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,3,0],[2,1,3,2],[0,3,2,1],[1,2,1,0]],[[1,3,2,0],[2,1,3,2],[0,3,2,1],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,0],[2,1,3,3],[0,3,2,1],[1,2,0,1]],[[1,2,2,0],[2,1,4,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,0],[3,1,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,3,0],[2,1,3,2],[0,3,2,1],[1,2,0,1]],[[1,3,2,0],[2,1,3,2],[0,3,2,1],[1,2,0,1]],[[2,2,2,0],[2,1,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,0],[2,1,3,3],[0,3,2,1],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,0],[3,1,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[0,3,2,1],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[0,3,2,1],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,0],[2,1,3,3],[0,3,2,1],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[0,3,2,1],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[0,3,2,1],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[0,3,2,1],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[0,3,2,0],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,0],[3,1,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[0,3,2,0],[1,2,1,1]],[[1,3,2,0],[2,1,3,2],[0,3,2,0],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[0,3,2,0],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[0,3,2,0],[1,1,2,1]],[[1,2,2,0],[3,1,3,2],[0,3,2,0],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[0,3,2,0],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[0,3,2,0],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[0,3,2,0],[1,1,2,1]],[[1,2,2,0],[2,1,3,2],[0,3,1,3],[1,2,1,0]],[[1,2,2,0],[2,1,3,3],[0,3,1,2],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,0],[3,1,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,3,0],[2,1,3,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,0],[2,1,3,2],[0,3,1,2],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[0,3,1,2],[1,2,0,2]],[[1,2,2,0],[2,1,3,2],[0,3,1,3],[1,2,0,1]],[[1,2,2,0],[2,1,3,3],[0,3,1,2],[1,2,0,1]],[[1,2,2,0],[2,1,4,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,0],[3,1,3,2],[0,3,1,2],[1,2,0,1]],[[1,2,3,0],[2,1,3,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,0],[2,1,3,2],[0,3,1,2],[1,2,0,1]],[[2,2,2,0],[2,1,3,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,0],[2,1,3,2],[0,3,1,3],[1,1,2,0]],[[1,2,2,0],[2,1,3,3],[0,3,1,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,0],[3,1,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[0,3,1,2],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[0,3,1,2],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[0,3,1,2],[1,1,1,2]],[[1,2,2,0],[2,1,3,2],[0,3,1,3],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[0,3,1,2],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[0,3,1,2],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[0,3,1,2],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[0,3,1,1],[1,2,2,0]],[[1,2,2,0],[2,1,4,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,0],[3,1,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,3,0],[2,1,3,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,0],[2,1,3,2],[0,3,1,1],[1,2,2,0]],[[2,2,2,0],[2,1,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,0],[2,1,3,3],[0,3,1,0],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[0,3,1,0],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,0],[2,1,3,2],[0,3,0,3],[1,2,2,0]],[[1,2,2,0],[2,1,3,3],[0,3,0,2],[1,2,2,0]],[[1,2,2,0],[2,1,4,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,0],[3,1,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,3,0],[2,1,3,2],[0,3,0,2],[1,2,2,0]],[[1,3,2,0],[2,1,3,2],[0,3,0,2],[1,2,2,0]],[[2,2,2,0],[2,1,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[0,3,0,2],[1,2,1,2]],[[1,2,2,0],[2,1,3,2],[0,3,0,3],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[0,3,0,2],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,0],[3,1,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,0],[2,1,3,2],[0,3,0,2],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[0,3,0,2],[1,1,2,2]],[[1,2,2,0],[2,1,3,2],[0,3,0,2],[1,1,3,1]],[[1,2,2,0],[2,1,3,2],[0,3,0,3],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[0,3,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,1,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[0,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[0,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[0,3,0,1],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[0,3,0,1],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[0,3,0,1],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[0,3,0,1],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,0],[2,1,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,0],[2,1,3,3],[0,2,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,4,2],[0,2,3,2],[1,1,0,1]],[[1,2,3,0],[2,1,3,2],[0,2,3,2],[1,1,0,1]],[[1,3,2,0],[2,1,3,2],[0,2,3,2],[1,1,0,1]],[[2,2,2,0],[2,1,3,2],[0,2,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,2,0],[2,1,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[3,1,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,0],[2,1,3,2],[0,2,3,1],[1,2,1,0]],[[1,3,2,0],[2,1,3,2],[0,2,3,1],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[0,2,4,1],[1,2,0,1]],[[1,2,2,0],[2,1,3,3],[0,2,3,1],[1,2,0,1]],[[1,2,2,0],[2,1,4,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,0],[3,1,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,0],[2,1,3,2],[0,2,3,1],[1,2,0,1]],[[1,3,2,0],[2,1,3,2],[0,2,3,1],[1,2,0,1]],[[2,2,2,0],[2,1,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,0],[2,1,3,2],[0,2,3,1],[1,1,3,0]],[[1,2,2,0],[2,1,3,2],[0,2,4,1],[1,1,2,0]],[[1,2,2,0],[2,1,3,3],[0,2,3,1],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,0],[3,1,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[0,2,3,1],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[0,2,3,1],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[0,2,4,1],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[0,2,3,1],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[0,2,3,1],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[0,2,3,1],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[0,2,4,1],[1,0,2,1]],[[1,2,2,0],[2,1,3,3],[0,2,3,1],[1,0,2,1]],[[1,2,2,0],[2,1,4,2],[0,2,3,1],[1,0,2,1]],[[1,2,3,0],[2,1,3,2],[0,2,3,1],[1,0,2,1]],[[1,3,2,0],[2,1,3,2],[0,2,3,1],[1,0,2,1]],[[2,2,2,0],[2,1,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,2,0],[2,1,3,2],[0,2,4,0],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[0,2,3,0],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,0],[3,1,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[0,2,3,0],[1,2,1,1]],[[1,3,2,0],[2,1,3,2],[0,2,3,0],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[0,2,3,0],[1,1,2,2]],[[1,2,2,0],[2,1,3,2],[0,2,3,0],[1,1,3,1]],[[1,2,2,0],[2,1,3,2],[0,2,4,0],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[0,2,3,0],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,0],[3,1,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[0,2,3,0],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[0,2,3,0],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[0,2,3,0],[1,1,2,1]],[[0,3,2,1],[2,2,3,1],[2,3,1,2],[1,0,0,1]],[[0,2,3,1],[2,2,3,1],[2,3,1,2],[1,0,0,1]],[[0,2,2,2],[2,2,3,1],[2,3,1,2],[1,0,0,1]],[[0,2,2,1],[2,2,4,1],[2,3,1,2],[1,0,0,1]],[[0,3,2,1],[2,2,3,1],[2,3,1,2],[1,0,1,0]],[[0,2,3,1],[2,2,3,1],[2,3,1,2],[1,0,1,0]],[[0,2,2,2],[2,2,3,1],[2,3,1,2],[1,0,1,0]],[[0,2,2,1],[2,2,4,1],[2,3,1,2],[1,0,1,0]],[[1,2,2,0],[2,1,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,2,0],[2,1,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,4,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[3,1,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,0],[2,1,3,2],[0,2,2,2],[1,2,1,0]],[[1,3,2,0],[2,1,3,2],[0,2,2,2],[1,2,1,0]],[[2,2,2,0],[2,1,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,2],[0,2,2,2],[1,2,0,2]],[[1,2,2,0],[2,1,3,2],[0,2,2,3],[1,2,0,1]],[[1,2,2,0],[2,1,3,3],[0,2,2,2],[1,2,0,1]],[[1,2,2,0],[2,1,4,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,0],[3,1,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,0],[2,1,3,2],[0,2,2,2],[1,2,0,1]],[[1,3,2,0],[2,1,3,2],[0,2,2,2],[1,2,0,1]],[[2,2,2,0],[2,1,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,0],[2,1,3,2],[0,2,2,3],[1,1,2,0]],[[1,2,2,0],[2,1,3,3],[0,2,2,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,0],[3,1,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[0,2,2,2],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[0,2,2,2],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[0,2,2,2],[1,1,1,2]],[[1,2,2,0],[2,1,3,2],[0,2,2,3],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[0,2,2,2],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,0],[3,1,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[0,2,2,2],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[0,2,2,2],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[0,2,2,2],[1,0,2,2]],[[1,2,2,0],[2,1,3,2],[0,2,2,3],[1,0,2,1]],[[1,2,2,0],[2,1,3,3],[0,2,2,2],[1,0,2,1]],[[1,2,2,0],[2,1,4,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,0],[2,1,3,2],[0,2,2,2],[1,0,2,1]],[[1,3,2,0],[2,1,3,2],[0,2,2,2],[1,0,2,1]],[[2,2,2,0],[2,1,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,0],[2,1,3,2],[0,2,1,2],[1,1,2,2]],[[1,2,2,0],[2,1,3,2],[0,2,1,2],[1,1,3,1]],[[1,2,2,0],[2,1,3,2],[0,2,1,3],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[0,2,1,2],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,0],[3,1,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[0,2,1,2],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[0,2,1,2],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,0],[2,1,3,2],[0,2,0,2],[1,2,2,2]],[[1,2,2,0],[2,1,3,2],[0,2,0,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,2],[0,2,0,2],[1,3,2,1]],[[1,2,2,0],[2,1,3,2],[0,2,0,2],[2,2,2,1]],[[1,2,2,0],[2,1,3,2],[0,2,0,3],[1,2,2,1]],[[1,2,2,0],[2,1,3,3],[0,2,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[0,2,0,2],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[0,2,0,2],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[0,2,0,2],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[0,2,0,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,1],[2,3,2,0],[1,0,1,1]],[[0,2,3,1],[2,2,3,1],[2,3,2,0],[1,0,1,1]],[[0,2,2,2],[2,2,3,1],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[2,2,4,1],[2,3,2,0],[1,0,1,1]],[[1,2,2,0],[2,1,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,0],[2,1,3,3],[0,1,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,2],[0,1,3,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,2],[0,1,3,2],[1,1,2,0]],[[1,3,2,0],[2,1,3,2],[0,1,3,2],[1,1,2,0]],[[2,2,2,0],[2,1,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,2],[0,1,3,2],[1,1,1,2]],[[1,2,2,0],[2,1,3,2],[0,1,3,3],[1,1,1,1]],[[1,2,2,0],[2,1,3,3],[0,1,3,2],[1,1,1,1]],[[1,2,2,0],[2,1,4,2],[0,1,3,2],[1,1,1,1]],[[1,2,3,0],[2,1,3,2],[0,1,3,2],[1,1,1,1]],[[1,3,2,0],[2,1,3,2],[0,1,3,2],[1,1,1,1]],[[2,2,2,0],[2,1,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,2,0],[2,1,3,2],[0,1,3,2],[1,0,2,2]],[[1,2,2,0],[2,1,3,2],[0,1,3,3],[1,0,2,1]],[[1,2,2,0],[2,1,3,3],[0,1,3,2],[1,0,2,1]],[[1,2,2,0],[2,1,4,2],[0,1,3,2],[1,0,2,1]],[[1,2,3,0],[2,1,3,2],[0,1,3,2],[1,0,2,1]],[[1,3,2,0],[2,1,3,2],[0,1,3,2],[1,0,2,1]],[[2,2,2,0],[2,1,3,2],[0,1,3,2],[1,0,2,1]],[[1,2,2,0],[2,1,3,2],[0,1,3,1],[1,2,3,0]],[[1,2,2,0],[2,1,3,2],[0,1,3,1],[1,3,2,0]],[[1,2,2,0],[2,1,3,2],[0,1,3,1],[2,2,2,0]],[[1,2,2,0],[2,1,3,2],[0,1,4,1],[1,2,2,0]],[[1,2,2,0],[2,1,3,3],[0,1,3,1],[1,2,2,0]],[[1,2,2,0],[2,1,4,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,0],[3,1,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,0],[2,1,3,2],[0,1,3,1],[1,2,2,0]],[[1,3,2,0],[2,1,3,2],[0,1,3,1],[1,2,2,0]],[[2,2,2,0],[2,1,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[0,1,4,1],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[0,1,3,1],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,0],[3,1,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[0,1,3,1],[1,2,1,1]],[[0,3,2,1],[2,2,3,1],[2,3,2,1],[1,0,0,1]],[[0,2,3,1],[2,2,3,1],[2,3,2,1],[1,0,0,1]],[[0,2,2,2],[2,2,3,1],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[2,2,4,1],[2,3,2,1],[1,0,0,1]],[[0,3,2,1],[2,2,3,1],[2,3,2,1],[1,0,1,0]],[[0,2,3,1],[2,2,3,1],[2,3,2,1],[1,0,1,0]],[[0,2,2,2],[2,2,3,1],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[2,2,4,1],[2,3,2,1],[1,0,1,0]],[[1,3,2,0],[2,1,3,2],[0,1,3,1],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[0,1,3,0],[1,2,2,2]],[[1,2,2,0],[2,1,3,2],[0,1,3,0],[1,2,3,1]],[[1,2,2,0],[2,1,3,2],[0,1,3,0],[1,3,2,1]],[[1,2,2,0],[2,1,3,2],[0,1,3,0],[2,2,2,1]],[[1,2,2,0],[2,1,3,2],[0,1,4,0],[1,2,2,1]],[[1,2,2,0],[2,1,3,3],[0,1,3,0],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[0,1,3,0],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[0,1,3,0],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,0],[2,1,3,2],[0,1,2,3],[1,2,2,0]],[[1,2,2,0],[2,1,3,3],[0,1,2,2],[1,2,2,0]],[[1,2,2,0],[2,1,4,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,0],[3,1,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,0],[2,1,3,2],[0,1,2,2],[1,2,2,0]],[[1,3,2,0],[2,1,3,2],[0,1,2,2],[1,2,2,0]],[[2,2,2,0],[2,1,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[0,1,2,2],[1,2,1,2]],[[1,2,2,0],[2,1,3,2],[0,1,2,3],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[0,1,2,2],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,0],[3,1,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[0,1,2,2],[1,2,1,1]],[[1,3,2,0],[2,1,3,2],[0,1,2,2],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[0,1,1,2],[1,2,2,2]],[[1,2,2,0],[2,1,3,2],[0,1,1,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,2],[0,1,1,2],[1,3,2,1]],[[1,2,2,0],[2,1,3,2],[0,1,1,2],[2,2,2,1]],[[1,2,2,0],[2,1,3,2],[0,1,1,3],[1,2,2,1]],[[1,2,2,0],[2,1,3,3],[0,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,0],[3,1,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[0,1,1,2],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[0,1,1,2],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,3,2],[0,0,3,3],[1,2,2,0]],[[1,2,2,0],[2,1,3,3],[0,0,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,4,2],[0,0,3,2],[1,2,2,0]],[[1,2,3,0],[2,1,3,2],[0,0,3,2],[1,2,2,0]],[[1,3,2,0],[2,1,3,2],[0,0,3,2],[1,2,2,0]],[[2,2,2,0],[2,1,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,2],[0,0,3,2],[1,2,1,2]],[[1,2,2,0],[2,1,3,2],[0,0,3,3],[1,2,1,1]],[[1,2,2,0],[2,1,3,3],[0,0,3,2],[1,2,1,1]],[[1,2,2,0],[2,1,4,2],[0,0,3,2],[1,2,1,1]],[[1,2,3,0],[2,1,3,2],[0,0,3,2],[1,2,1,1]],[[1,3,2,0],[2,1,3,2],[0,0,3,2],[1,2,1,1]],[[2,2,2,0],[2,1,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,2,0],[2,1,3,2],[0,0,3,2],[1,1,2,2]],[[1,2,2,0],[2,1,3,2],[0,0,3,3],[1,1,2,1]],[[1,2,2,0],[2,1,3,3],[0,0,3,2],[1,1,2,1]],[[1,2,2,0],[2,1,4,2],[0,0,3,2],[1,1,2,1]],[[1,2,3,0],[2,1,3,2],[0,0,3,2],[1,1,2,1]],[[1,3,2,0],[2,1,3,2],[0,0,3,2],[1,1,2,1]],[[2,2,2,0],[2,1,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,2,0],[2,1,3,2],[0,0,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,3,2],[0,0,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,2],[0,0,2,3],[1,2,2,1]],[[1,2,2,0],[2,1,3,3],[0,0,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,4,2],[0,0,2,2],[1,2,2,1]],[[1,2,3,0],[2,1,3,2],[0,0,2,2],[1,2,2,1]],[[1,3,2,0],[2,1,3,2],[0,0,2,2],[1,2,2,1]],[[2,2,2,0],[2,1,3,2],[0,0,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,3,1],[3,3,3,2],[1,0,0,0]],[[1,2,2,0],[2,1,4,1],[2,3,3,2],[1,0,0,0]],[[1,2,2,0],[3,1,3,1],[2,3,3,2],[1,0,0,0]],[[1,2,3,0],[2,1,3,1],[2,3,3,2],[1,0,0,0]],[[1,3,2,0],[2,1,3,1],[2,3,3,2],[1,0,0,0]],[[2,2,2,0],[2,1,3,1],[2,3,3,2],[1,0,0,0]],[[1,2,2,0],[2,1,3,1],[3,3,2,2],[1,0,1,0]],[[1,2,2,0],[2,1,4,1],[2,3,2,2],[1,0,1,0]],[[1,2,2,0],[3,1,3,1],[2,3,2,2],[1,0,1,0]],[[1,2,3,0],[2,1,3,1],[2,3,2,2],[1,0,1,0]],[[1,3,2,0],[2,1,3,1],[2,3,2,2],[1,0,1,0]],[[2,2,2,0],[2,1,3,1],[2,3,2,2],[1,0,1,0]],[[1,2,2,0],[2,1,3,1],[3,3,2,2],[1,0,0,1]],[[1,2,2,0],[2,1,4,1],[2,3,2,2],[1,0,0,1]],[[1,2,2,0],[3,1,3,1],[2,3,2,2],[1,0,0,1]],[[1,2,3,0],[2,1,3,1],[2,3,2,2],[1,0,0,1]],[[1,3,2,0],[2,1,3,1],[2,3,2,2],[1,0,0,1]],[[2,2,2,0],[2,1,3,1],[2,3,2,2],[1,0,0,1]],[[0,3,2,1],[2,2,3,1],[2,3,3,0],[1,0,1,0]],[[0,2,3,1],[2,2,3,1],[2,3,3,0],[1,0,1,0]],[[0,2,2,2],[2,2,3,1],[2,3,3,0],[1,0,1,0]],[[0,2,2,1],[2,2,4,1],[2,3,3,0],[1,0,1,0]],[[1,2,2,0],[2,1,3,1],[2,2,3,2],[2,1,0,0]],[[1,2,2,0],[2,1,3,1],[3,2,3,2],[1,1,0,0]],[[1,2,2,0],[2,1,4,1],[2,2,3,2],[1,1,0,0]],[[1,2,2,0],[3,1,3,1],[2,2,3,2],[1,1,0,0]],[[1,2,3,0],[2,1,3,1],[2,2,3,2],[1,1,0,0]],[[1,3,2,0],[2,1,3,1],[2,2,3,2],[1,1,0,0]],[[2,2,2,0],[2,1,3,1],[2,2,3,2],[1,1,0,0]],[[1,2,2,0],[2,1,3,1],[3,2,3,2],[0,2,0,0]],[[1,2,2,0],[2,1,4,1],[2,2,3,2],[0,2,0,0]],[[1,2,2,0],[3,1,3,1],[2,2,3,2],[0,2,0,0]],[[1,2,3,0],[2,1,3,1],[2,2,3,2],[0,2,0,0]],[[1,3,2,0],[2,1,3,1],[2,2,3,2],[0,2,0,0]],[[2,2,2,0],[2,1,3,1],[2,2,3,2],[0,2,0,0]],[[1,2,2,0],[2,1,3,1],[2,2,2,2],[2,2,0,0]],[[1,2,2,0],[2,1,3,1],[3,2,2,2],[1,2,0,0]],[[1,2,2,0],[2,1,4,1],[2,2,2,2],[1,2,0,0]],[[1,2,2,0],[3,1,3,1],[2,2,2,2],[1,2,0,0]],[[1,2,3,0],[2,1,3,1],[2,2,2,2],[1,2,0,0]],[[1,3,2,0],[2,1,3,1],[2,2,2,2],[1,2,0,0]],[[2,2,2,0],[2,1,3,1],[2,2,2,2],[1,2,0,0]],[[0,3,2,1],[2,2,3,1],[2,3,3,1],[1,0,0,0]],[[0,2,3,1],[2,2,3,1],[2,3,3,1],[1,0,0,0]],[[0,2,2,2],[2,2,3,1],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[2,2,4,1],[2,3,3,1],[1,0,0,0]],[[1,2,2,0],[2,1,3,1],[2,2,2,2],[2,1,1,0]],[[1,2,2,0],[2,1,3,1],[3,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,1,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[3,1,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,3,0],[2,1,3,1],[2,2,2,2],[1,1,1,0]],[[1,3,2,0],[2,1,3,1],[2,2,2,2],[1,1,1,0]],[[2,2,2,0],[2,1,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,1,3,1],[2,2,2,2],[2,1,0,1]],[[1,2,2,0],[2,1,3,1],[3,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,1,4,1],[2,2,2,2],[1,1,0,1]],[[1,2,2,0],[3,1,3,1],[2,2,2,2],[1,1,0,1]],[[1,2,3,0],[2,1,3,1],[2,2,2,2],[1,1,0,1]],[[1,3,2,0],[2,1,3,1],[2,2,2,2],[1,1,0,1]],[[2,2,2,0],[2,1,3,1],[2,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,1,3,1],[2,2,2,2],[2,0,2,0]],[[1,2,2,0],[2,1,3,1],[3,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,1,4,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[3,1,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,3,0],[2,1,3,1],[2,2,2,2],[1,0,2,0]],[[1,3,2,0],[2,1,3,1],[2,2,2,2],[1,0,2,0]],[[2,2,2,0],[2,1,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,1],[2,2,2,2],[2,0,1,1]],[[1,2,2,0],[2,1,3,1],[3,2,2,2],[1,0,1,1]],[[1,2,2,0],[2,1,4,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,0],[3,1,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,3,0],[2,1,3,1],[2,2,2,2],[1,0,1,1]],[[1,3,2,0],[2,1,3,1],[2,2,2,2],[1,0,1,1]],[[2,2,2,0],[2,1,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,0],[2,1,3,1],[3,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,4,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[3,1,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,3,0],[2,1,3,1],[2,2,2,2],[0,2,1,0]],[[1,3,2,0],[2,1,3,1],[2,2,2,2],[0,2,1,0]],[[2,2,2,0],[2,1,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,1],[3,2,2,2],[0,2,0,1]],[[1,2,2,0],[2,1,4,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[3,1,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,3,0],[2,1,3,1],[2,2,2,2],[0,2,0,1]],[[1,3,2,0],[2,1,3,1],[2,2,2,2],[0,2,0,1]],[[2,2,2,0],[2,1,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[2,1,3,1],[3,2,2,2],[0,1,2,0]],[[1,2,2,0],[2,1,4,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[3,1,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,3,0],[2,1,3,1],[2,2,2,2],[0,1,2,0]],[[1,3,2,0],[2,1,3,1],[2,2,2,2],[0,1,2,0]],[[2,2,2,0],[2,1,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,1],[3,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,1,4,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[3,1,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,3,0],[2,1,3,1],[2,2,2,2],[0,1,1,1]],[[1,3,2,0],[2,1,3,1],[2,2,2,2],[0,1,1,1]],[[2,2,2,0],[2,1,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,1,3,1],[2,2,2,1],[2,1,1,1]],[[1,2,2,0],[2,1,3,1],[3,2,2,1],[1,1,1,1]],[[1,2,2,0],[2,1,4,1],[2,2,2,1],[1,1,1,1]],[[1,2,2,0],[3,1,3,1],[2,2,2,1],[1,1,1,1]],[[1,2,3,0],[2,1,3,1],[2,2,2,1],[1,1,1,1]],[[1,3,2,0],[2,1,3,1],[2,2,2,1],[1,1,1,1]],[[2,2,2,0],[2,1,3,1],[2,2,2,1],[1,1,1,1]],[[1,2,2,0],[2,1,3,1],[2,2,2,1],[2,0,2,1]],[[1,2,2,0],[2,1,3,1],[3,2,2,1],[1,0,2,1]],[[1,2,2,0],[2,1,4,1],[2,2,2,1],[1,0,2,1]],[[1,2,2,0],[3,1,3,1],[2,2,2,1],[1,0,2,1]],[[1,2,3,0],[2,1,3,1],[2,2,2,1],[1,0,2,1]],[[1,3,2,0],[2,1,3,1],[2,2,2,1],[1,0,2,1]],[[2,2,2,0],[2,1,3,1],[2,2,2,1],[1,0,2,1]],[[1,2,2,0],[2,1,3,1],[3,2,2,1],[0,2,1,1]],[[1,2,2,0],[2,1,4,1],[2,2,2,1],[0,2,1,1]],[[1,2,2,0],[3,1,3,1],[2,2,2,1],[0,2,1,1]],[[1,2,3,0],[2,1,3,1],[2,2,2,1],[0,2,1,1]],[[1,3,2,0],[2,1,3,1],[2,2,2,1],[0,2,1,1]],[[2,2,2,0],[2,1,3,1],[2,2,2,1],[0,2,1,1]],[[1,2,2,0],[2,1,3,1],[3,2,2,1],[0,1,2,1]],[[1,2,2,0],[2,1,4,1],[2,2,2,1],[0,1,2,1]],[[1,2,2,0],[3,1,3,1],[2,2,2,1],[0,1,2,1]],[[1,2,3,0],[2,1,3,1],[2,2,2,1],[0,1,2,1]],[[1,3,2,0],[2,1,3,1],[2,2,2,1],[0,1,2,1]],[[2,2,2,0],[2,1,3,1],[2,2,2,1],[0,1,2,1]],[[1,2,2,0],[2,1,3,1],[2,2,1,2],[2,1,2,0]],[[1,2,2,0],[2,1,3,1],[3,2,1,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,1],[2,2,1,2],[1,1,2,0]],[[1,2,2,0],[3,1,3,1],[2,2,1,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,1],[2,2,1,2],[1,1,2,0]],[[1,3,2,0],[2,1,3,1],[2,2,1,2],[1,1,2,0]],[[2,2,2,0],[2,1,3,1],[2,2,1,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,1],[3,2,1,2],[0,2,2,0]],[[1,2,2,0],[2,1,4,1],[2,2,1,2],[0,2,2,0]],[[1,2,2,0],[3,1,3,1],[2,2,1,2],[0,2,2,0]],[[1,2,3,0],[2,1,3,1],[2,2,1,2],[0,2,2,0]],[[1,3,2,0],[2,1,3,1],[2,2,1,2],[0,2,2,0]],[[2,2,2,0],[2,1,3,1],[2,2,1,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,1],[2,2,1,1],[2,1,2,1]],[[1,2,2,0],[2,1,3,1],[3,2,1,1],[1,1,2,1]],[[1,2,2,0],[2,1,4,1],[2,2,1,1],[1,1,2,1]],[[1,2,2,0],[3,1,3,1],[2,2,1,1],[1,1,2,1]],[[1,2,3,0],[2,1,3,1],[2,2,1,1],[1,1,2,1]],[[1,3,2,0],[2,1,3,1],[2,2,1,1],[1,1,2,1]],[[2,2,2,0],[2,1,3,1],[2,2,1,1],[1,1,2,1]],[[1,2,2,0],[2,1,3,1],[3,2,1,1],[0,2,2,1]],[[1,2,2,0],[2,1,4,1],[2,2,1,1],[0,2,2,1]],[[1,2,2,0],[3,1,3,1],[2,2,1,1],[0,2,2,1]],[[1,2,3,0],[2,1,3,1],[2,2,1,1],[0,2,2,1]],[[1,3,2,0],[2,1,3,1],[2,2,1,1],[0,2,2,1]],[[2,2,2,0],[2,1,3,1],[2,2,1,1],[0,2,2,1]],[[1,2,2,0],[2,1,3,1],[2,2,0,2],[2,1,2,1]],[[1,2,2,0],[2,1,3,1],[3,2,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,4,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,0],[3,1,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,3,0],[2,1,3,1],[2,2,0,2],[1,1,2,1]],[[1,3,2,0],[2,1,3,1],[2,2,0,2],[1,1,2,1]],[[2,2,2,0],[2,1,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,3,1],[3,2,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,4,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[3,1,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,3,0],[2,1,3,1],[2,2,0,2],[0,2,2,1]],[[1,3,2,0],[2,1,3,1],[2,2,0,2],[0,2,2,1]],[[2,2,2,0],[2,1,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,3,1],[2,1,3,2],[2,1,1,0]],[[1,2,2,0],[2,1,3,1],[2,1,3,3],[1,1,1,0]],[[1,2,2,0],[2,1,3,1],[2,1,4,2],[1,1,1,0]],[[1,2,2,0],[2,1,3,1],[3,1,3,2],[1,1,1,0]],[[1,2,2,0],[2,1,4,1],[2,1,3,2],[1,1,1,0]],[[1,2,2,0],[3,1,3,1],[2,1,3,2],[1,1,1,0]],[[1,2,3,0],[2,1,3,1],[2,1,3,2],[1,1,1,0]],[[1,3,2,0],[2,1,3,1],[2,1,3,2],[1,1,1,0]],[[2,2,2,0],[2,1,3,1],[2,1,3,2],[1,1,1,0]],[[1,2,2,0],[2,1,3,1],[2,1,3,2],[1,1,0,2]],[[1,2,2,0],[2,1,3,1],[2,1,3,2],[2,1,0,1]],[[1,2,2,0],[2,1,3,1],[2,1,3,3],[1,1,0,1]],[[1,2,2,0],[2,1,3,1],[2,1,4,2],[1,1,0,1]],[[1,2,2,0],[2,1,3,1],[3,1,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,4,1],[2,1,3,2],[1,1,0,1]],[[1,2,2,0],[3,1,3,1],[2,1,3,2],[1,1,0,1]],[[1,2,3,0],[2,1,3,1],[2,1,3,2],[1,1,0,1]],[[1,3,2,0],[2,1,3,1],[2,1,3,2],[1,1,0,1]],[[2,2,2,0],[2,1,3,1],[2,1,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,3,1],[2,1,3,2],[1,0,3,0]],[[1,2,2,0],[2,1,3,1],[2,1,3,2],[2,0,2,0]],[[1,2,2,0],[2,1,3,1],[2,1,3,3],[1,0,2,0]],[[1,2,2,0],[2,1,3,1],[2,1,4,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,1],[3,1,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,4,1],[2,1,3,2],[1,0,2,0]],[[1,2,2,0],[3,1,3,1],[2,1,3,2],[1,0,2,0]],[[1,2,3,0],[2,1,3,1],[2,1,3,2],[1,0,2,0]],[[1,3,2,0],[2,1,3,1],[2,1,3,2],[1,0,2,0]],[[2,2,2,0],[2,1,3,1],[2,1,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,1],[2,1,3,2],[1,0,1,2]],[[1,2,2,0],[2,1,3,1],[2,1,3,2],[2,0,1,1]],[[1,2,2,0],[2,1,3,1],[2,1,3,3],[1,0,1,1]],[[1,2,2,0],[2,1,3,1],[2,1,4,2],[1,0,1,1]],[[1,2,2,0],[2,1,3,1],[3,1,3,2],[1,0,1,1]],[[1,2,2,0],[2,1,4,1],[2,1,3,2],[1,0,1,1]],[[1,2,2,0],[3,1,3,1],[2,1,3,2],[1,0,1,1]],[[1,2,3,0],[2,1,3,1],[2,1,3,2],[1,0,1,1]],[[1,3,2,0],[2,1,3,1],[2,1,3,2],[1,0,1,1]],[[2,2,2,0],[2,1,3,1],[2,1,3,2],[1,0,1,1]],[[1,2,2,0],[2,1,3,1],[2,1,3,3],[0,2,1,0]],[[1,2,2,0],[2,1,3,1],[2,1,4,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,1],[3,1,3,2],[0,2,1,0]],[[1,2,2,0],[2,1,4,1],[2,1,3,2],[0,2,1,0]],[[1,2,2,0],[3,1,3,1],[2,1,3,2],[0,2,1,0]],[[1,2,3,0],[2,1,3,1],[2,1,3,2],[0,2,1,0]],[[1,3,2,0],[2,1,3,1],[2,1,3,2],[0,2,1,0]],[[2,2,2,0],[2,1,3,1],[2,1,3,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,1],[2,1,3,2],[0,2,0,2]],[[1,2,2,0],[2,1,3,1],[2,1,3,3],[0,2,0,1]],[[1,2,2,0],[2,1,3,1],[2,1,4,2],[0,2,0,1]],[[1,2,2,0],[2,1,3,1],[3,1,3,2],[0,2,0,1]],[[1,2,2,0],[2,1,4,1],[2,1,3,2],[0,2,0,1]],[[1,2,2,0],[3,1,3,1],[2,1,3,2],[0,2,0,1]],[[1,2,3,0],[2,1,3,1],[2,1,3,2],[0,2,0,1]],[[1,3,2,0],[2,1,3,1],[2,1,3,2],[0,2,0,1]],[[2,2,2,0],[2,1,3,1],[2,1,3,2],[0,2,0,1]],[[1,2,2,0],[2,1,3,1],[2,1,3,2],[0,1,3,0]],[[1,2,2,0],[2,1,3,1],[2,1,3,3],[0,1,2,0]],[[1,2,2,0],[2,1,3,1],[2,1,4,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,1],[3,1,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,4,1],[2,1,3,2],[0,1,2,0]],[[1,2,2,0],[3,1,3,1],[2,1,3,2],[0,1,2,0]],[[1,2,3,0],[2,1,3,1],[2,1,3,2],[0,1,2,0]],[[1,3,2,0],[2,1,3,1],[2,1,3,2],[0,1,2,0]],[[2,2,2,0],[2,1,3,1],[2,1,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,1],[2,1,3,2],[0,1,1,2]],[[1,2,2,0],[2,1,3,1],[2,1,3,3],[0,1,1,1]],[[1,2,2,0],[2,1,3,1],[2,1,4,2],[0,1,1,1]],[[1,2,2,0],[2,1,3,1],[3,1,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,4,1],[2,1,3,2],[0,1,1,1]],[[1,2,2,0],[3,1,3,1],[2,1,3,2],[0,1,1,1]],[[1,2,3,0],[2,1,3,1],[2,1,3,2],[0,1,1,1]],[[1,3,2,0],[2,1,3,1],[2,1,3,2],[0,1,1,1]],[[2,2,2,0],[2,1,3,1],[2,1,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,3,1],[2,1,3,2],[0,0,2,2]],[[1,2,2,0],[2,1,3,1],[2,1,3,3],[0,0,2,1]],[[1,2,2,0],[2,1,3,1],[2,1,4,2],[0,0,2,1]],[[1,2,2,0],[2,1,4,1],[2,1,3,2],[0,0,2,1]],[[1,2,2,0],[3,1,3,1],[2,1,3,2],[0,0,2,1]],[[1,2,3,0],[2,1,3,1],[2,1,3,2],[0,0,2,1]],[[1,3,2,0],[2,1,3,1],[2,1,3,2],[0,0,2,1]],[[2,2,2,0],[2,1,3,1],[2,1,3,2],[0,0,2,1]],[[1,2,2,0],[2,1,3,1],[2,1,3,1],[2,1,1,1]],[[1,2,2,0],[2,1,3,1],[2,1,4,1],[1,1,1,1]],[[1,2,2,0],[2,1,3,1],[3,1,3,1],[1,1,1,1]],[[1,2,2,0],[2,1,4,1],[2,1,3,1],[1,1,1,1]],[[1,2,2,0],[3,1,3,1],[2,1,3,1],[1,1,1,1]],[[1,2,3,0],[2,1,3,1],[2,1,3,1],[1,1,1,1]],[[1,3,2,0],[2,1,3,1],[2,1,3,1],[1,1,1,1]],[[2,2,2,0],[2,1,3,1],[2,1,3,1],[1,1,1,1]],[[1,2,2,0],[2,1,3,1],[2,1,3,1],[1,0,2,2]],[[1,2,2,0],[2,1,3,1],[2,1,3,1],[1,0,3,1]],[[1,2,2,0],[2,1,3,1],[2,1,3,1],[2,0,2,1]],[[1,2,2,0],[2,1,3,1],[2,1,4,1],[1,0,2,1]],[[1,2,2,0],[2,1,3,1],[3,1,3,1],[1,0,2,1]],[[1,2,2,0],[2,1,4,1],[2,1,3,1],[1,0,2,1]],[[1,2,2,0],[3,1,3,1],[2,1,3,1],[1,0,2,1]],[[1,2,3,0],[2,1,3,1],[2,1,3,1],[1,0,2,1]],[[1,3,2,0],[2,1,3,1],[2,1,3,1],[1,0,2,1]],[[2,2,2,0],[2,1,3,1],[2,1,3,1],[1,0,2,1]],[[0,2,3,1],[2,2,3,2],[0,0,3,2],[1,0,2,1]],[[0,2,2,2],[2,2,3,2],[0,0,3,2],[1,0,2,1]],[[0,2,2,1],[2,2,3,3],[0,0,3,2],[1,0,2,1]],[[0,2,2,1],[2,2,3,2],[0,0,3,3],[1,0,2,1]],[[0,2,2,1],[2,2,3,2],[0,0,3,2],[1,0,2,2]],[[0,2,3,1],[2,2,3,2],[0,0,3,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,2],[0,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,3,3],[0,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,2,3,2],[0,0,3,3],[1,1,1,1]],[[0,2,3,1],[2,2,3,2],[0,0,3,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,2],[0,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,2,3,3],[0,0,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,1],[2,1,4,1],[0,2,1,1]],[[0,3,2,1],[2,2,3,2],[0,1,0,2],[1,2,2,1]],[[0,2,3,1],[2,2,3,2],[0,1,0,2],[1,2,2,1]],[[0,2,2,2],[2,2,3,2],[0,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,3,3],[0,1,0,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,2],[0,1,1,2],[1,2,1,1]],[[0,2,3,1],[2,2,3,2],[0,1,1,2],[1,2,1,1]],[[0,2,2,2],[2,2,3,2],[0,1,1,2],[1,2,1,1]],[[0,2,2,1],[2,2,3,3],[0,1,1,2],[1,2,1,1]],[[0,3,2,1],[2,2,3,2],[0,1,1,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,2],[0,1,1,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,2],[0,1,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,3,3],[0,1,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,1],[3,1,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,4,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,0],[3,1,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,3,0],[2,1,3,1],[2,1,3,1],[0,2,1,1]],[[1,3,2,0],[2,1,3,1],[2,1,3,1],[0,2,1,1]],[[2,2,2,0],[2,1,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,3,1],[2,1,3,1],[0,1,2,2]],[[1,2,2,0],[2,1,3,1],[2,1,3,1],[0,1,3,1]],[[1,2,2,0],[2,1,3,1],[2,1,4,1],[0,1,2,1]],[[1,2,2,0],[2,1,3,1],[3,1,3,1],[0,1,2,1]],[[0,3,2,1],[2,2,3,2],[0,1,3,0],[1,2,1,1]],[[0,2,3,1],[2,2,3,2],[0,1,3,0],[1,2,1,1]],[[0,2,2,2],[2,2,3,2],[0,1,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,4,2],[0,1,3,0],[1,2,1,1]],[[0,3,2,1],[2,2,3,2],[0,1,3,0],[1,2,2,0]],[[0,2,3,1],[2,2,3,2],[0,1,3,0],[1,2,2,0]],[[0,2,2,2],[2,2,3,2],[0,1,3,0],[1,2,2,0]],[[0,2,2,1],[2,2,4,2],[0,1,3,0],[1,2,2,0]],[[1,2,2,0],[2,1,4,1],[2,1,3,1],[0,1,2,1]],[[1,2,2,0],[3,1,3,1],[2,1,3,1],[0,1,2,1]],[[1,2,3,0],[2,1,3,1],[2,1,3,1],[0,1,2,1]],[[1,3,2,0],[2,1,3,1],[2,1,3,1],[0,1,2,1]],[[2,2,2,0],[2,1,3,1],[2,1,3,1],[0,1,2,1]],[[1,2,2,0],[2,1,3,1],[2,1,2,2],[1,3,1,0]],[[1,2,2,0],[2,1,3,1],[2,1,2,2],[2,2,1,0]],[[1,2,2,0],[2,1,3,1],[3,1,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,4,1],[2,1,2,2],[1,2,1,0]],[[1,2,2,0],[3,1,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,3,0],[2,1,3,1],[2,1,2,2],[1,2,1,0]],[[1,3,2,0],[2,1,3,1],[2,1,2,2],[1,2,1,0]],[[2,2,2,0],[2,1,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,1],[2,1,2,2],[1,3,0,1]],[[1,2,2,0],[2,1,3,1],[2,1,2,2],[2,2,0,1]],[[1,2,2,0],[2,1,3,1],[3,1,2,2],[1,2,0,1]],[[1,2,2,0],[2,1,4,1],[2,1,2,2],[1,2,0,1]],[[1,2,2,0],[3,1,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,3,0],[2,1,3,1],[2,1,2,2],[1,2,0,1]],[[1,3,2,0],[2,1,3,1],[2,1,2,2],[1,2,0,1]],[[2,2,2,0],[2,1,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,2,0],[2,1,3,1],[2,1,2,2],[1,0,2,2]],[[1,2,2,0],[2,1,3,1],[2,1,2,2],[1,0,3,1]],[[1,2,2,0],[2,1,3,1],[2,1,2,3],[1,0,2,1]],[[1,2,2,0],[2,1,3,1],[2,1,2,2],[0,1,2,2]],[[1,2,2,0],[2,1,3,1],[2,1,2,2],[0,1,3,1]],[[1,2,2,0],[2,1,3,1],[2,1,2,3],[0,1,2,1]],[[0,3,2,1],[2,2,3,2],[0,2,0,2],[1,1,2,1]],[[0,2,3,1],[2,2,3,2],[0,2,0,2],[1,1,2,1]],[[0,2,2,2],[2,2,3,2],[0,2,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,3,3],[0,2,0,2],[1,1,2,1]],[[0,2,3,1],[2,2,3,2],[0,2,1,2],[1,0,2,1]],[[0,2,2,2],[2,2,3,2],[0,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,2,3,3],[0,2,1,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,2],[0,2,1,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,2],[0,2,1,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,2],[0,2,1,2],[1,1,1,1]],[[0,2,2,1],[2,2,3,3],[0,2,1,2],[1,1,1,1]],[[0,3,2,1],[2,2,3,2],[0,2,1,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,2],[0,2,1,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,2],[0,2,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,3,3],[0,2,1,2],[1,1,2,0]],[[0,3,2,1],[2,2,3,2],[0,2,1,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,2],[0,2,1,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,2],[0,2,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,3,3],[0,2,1,2],[1,2,0,1]],[[0,3,2,1],[2,2,3,2],[0,2,1,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,2],[0,2,1,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,2],[0,2,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,3,3],[0,2,1,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,1],[2,1,2,1],[1,3,1,1]],[[0,2,3,1],[2,2,3,2],[0,2,2,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,2],[0,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,2,3,3],[0,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,1,3,1],[2,1,2,1],[2,2,1,1]],[[1,2,2,0],[2,1,3,1],[3,1,2,1],[1,2,1,1]],[[1,2,2,0],[2,1,4,1],[2,1,2,1],[1,2,1,1]],[[1,2,2,0],[3,1,3,1],[2,1,2,1],[1,2,1,1]],[[1,2,3,0],[2,1,3,1],[2,1,2,1],[1,2,1,1]],[[1,3,2,0],[2,1,3,1],[2,1,2,1],[1,2,1,1]],[[2,2,2,0],[2,1,3,1],[2,1,2,1],[1,2,1,1]],[[1,2,2,0],[2,1,3,1],[2,1,1,2],[1,2,3,0]],[[1,2,2,0],[2,1,3,1],[2,1,1,2],[1,3,2,0]],[[1,2,2,0],[2,1,3,1],[2,1,1,2],[2,2,2,0]],[[1,2,2,0],[2,1,3,1],[3,1,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,4,1],[2,1,1,2],[1,2,2,0]],[[1,2,2,0],[3,1,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,3,0],[2,1,3,1],[2,1,1,2],[1,2,2,0]],[[1,3,2,0],[2,1,3,1],[2,1,1,2],[1,2,2,0]],[[2,2,2,0],[2,1,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,1],[2,1,1,1],[1,2,2,2]],[[1,2,2,0],[2,1,3,1],[2,1,1,1],[1,2,3,1]],[[1,2,2,0],[2,1,3,1],[2,1,1,1],[1,3,2,1]],[[1,2,2,0],[2,1,3,1],[2,1,1,1],[2,2,2,1]],[[0,2,3,1],[2,2,3,2],[0,2,3,0],[1,0,2,1]],[[0,2,2,2],[2,2,3,2],[0,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,2,4,2],[0,2,3,0],[1,0,2,1]],[[0,3,2,1],[2,2,3,2],[0,2,3,0],[1,1,1,1]],[[0,2,3,1],[2,2,3,2],[0,2,3,0],[1,1,1,1]],[[0,2,2,2],[2,2,3,2],[0,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,4,2],[0,2,3,0],[1,1,1,1]],[[0,3,2,1],[2,2,3,2],[0,2,3,0],[1,1,2,0]],[[0,2,3,1],[2,2,3,2],[0,2,3,0],[1,1,2,0]],[[0,2,2,2],[2,2,3,2],[0,2,3,0],[1,1,2,0]],[[0,2,2,1],[2,2,4,2],[0,2,3,0],[1,1,2,0]],[[0,3,2,1],[2,2,3,2],[0,2,3,0],[1,2,0,1]],[[0,2,3,1],[2,2,3,2],[0,2,3,0],[1,2,0,1]],[[0,2,2,2],[2,2,3,2],[0,2,3,0],[1,2,0,1]],[[0,2,2,1],[2,2,4,2],[0,2,3,0],[1,2,0,1]],[[0,3,2,1],[2,2,3,2],[0,2,3,0],[1,2,1,0]],[[0,2,3,1],[2,2,3,2],[0,2,3,0],[1,2,1,0]],[[0,2,2,2],[2,2,3,2],[0,2,3,0],[1,2,1,0]],[[0,2,2,1],[2,2,4,2],[0,2,3,0],[1,2,1,0]],[[1,2,2,0],[2,1,3,1],[3,1,1,1],[1,2,2,1]],[[1,2,2,0],[2,1,4,1],[2,1,1,1],[1,2,2,1]],[[1,2,2,0],[3,1,3,1],[2,1,1,1],[1,2,2,1]],[[1,2,3,0],[2,1,3,1],[2,1,1,1],[1,2,2,1]],[[1,3,2,0],[2,1,3,1],[2,1,1,1],[1,2,2,1]],[[2,2,2,0],[2,1,3,1],[2,1,1,1],[1,2,2,1]],[[1,2,2,0],[2,1,3,1],[2,1,0,2],[1,2,2,2]],[[1,2,2,0],[2,1,3,1],[2,1,0,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,1],[2,1,0,2],[1,3,2,1]],[[1,2,2,0],[2,1,3,1],[2,1,0,2],[2,2,2,1]],[[1,2,2,0],[2,1,3,1],[2,1,0,3],[1,2,2,1]],[[1,2,2,0],[2,1,3,1],[3,1,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,4,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[3,1,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,3,0],[2,1,3,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[2,1,3,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[2,1,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[1,3,1,0]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[2,2,1,0]],[[1,2,2,0],[2,1,3,1],[2,0,3,3],[1,2,1,0]],[[1,2,2,0],[2,1,3,1],[2,0,4,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,1],[3,0,3,2],[1,2,1,0]],[[1,2,2,0],[2,1,4,1],[2,0,3,2],[1,2,1,0]],[[1,2,2,0],[3,1,3,1],[2,0,3,2],[1,2,1,0]],[[1,2,3,0],[2,1,3,1],[2,0,3,2],[1,2,1,0]],[[1,3,2,0],[2,1,3,1],[2,0,3,2],[1,2,1,0]],[[2,2,2,0],[2,1,3,1],[2,0,3,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[1,2,0,2]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[1,3,0,1]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[2,2,0,1]],[[1,2,2,0],[2,1,3,1],[2,0,3,3],[1,2,0,1]],[[1,2,2,0],[2,1,3,1],[2,0,4,2],[1,2,0,1]],[[1,2,2,0],[2,1,3,1],[3,0,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,4,1],[2,0,3,2],[1,2,0,1]],[[1,2,2,0],[3,1,3,1],[2,0,3,2],[1,2,0,1]],[[1,2,3,0],[2,1,3,1],[2,0,3,2],[1,2,0,1]],[[1,3,2,0],[2,1,3,1],[2,0,3,2],[1,2,0,1]],[[2,2,2,0],[2,1,3,1],[2,0,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[1,1,3,0]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[2,1,2,0]],[[1,2,2,0],[2,1,3,1],[2,0,3,3],[1,1,2,0]],[[1,2,2,0],[2,1,3,1],[2,0,4,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,1],[3,0,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,1],[2,0,3,2],[1,1,2,0]],[[1,2,2,0],[3,1,3,1],[2,0,3,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,1],[2,0,3,2],[1,1,2,0]],[[1,3,2,0],[2,1,3,1],[2,0,3,2],[1,1,2,0]],[[2,2,2,0],[2,1,3,1],[2,0,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[1,1,1,2]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[2,1,1,1]],[[1,2,2,0],[2,1,3,1],[2,0,3,3],[1,1,1,1]],[[1,2,2,0],[2,1,3,1],[2,0,4,2],[1,1,1,1]],[[1,2,2,0],[2,1,3,1],[3,0,3,2],[1,1,1,1]],[[1,2,2,0],[2,1,4,1],[2,0,3,2],[1,1,1,1]],[[1,2,2,0],[3,1,3,1],[2,0,3,2],[1,1,1,1]],[[1,2,3,0],[2,1,3,1],[2,0,3,2],[1,1,1,1]],[[1,3,2,0],[2,1,3,1],[2,0,3,2],[1,1,1,1]],[[2,2,2,0],[2,1,3,1],[2,0,3,2],[1,1,1,1]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[0,2,3,0]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[0,3,2,0]],[[1,2,2,0],[2,1,3,1],[2,0,3,3],[0,2,2,0]],[[1,2,2,0],[2,1,3,1],[2,0,4,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,1],[3,0,3,2],[0,2,2,0]],[[1,2,2,0],[2,1,4,1],[2,0,3,2],[0,2,2,0]],[[1,2,2,0],[3,1,3,1],[2,0,3,2],[0,2,2,0]],[[1,2,3,0],[2,1,3,1],[2,0,3,2],[0,2,2,0]],[[1,3,2,0],[2,1,3,1],[2,0,3,2],[0,2,2,0]],[[2,2,2,0],[2,1,3,1],[2,0,3,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,1],[2,0,3,2],[0,2,1,2]],[[1,2,2,0],[2,1,3,1],[2,0,3,3],[0,2,1,1]],[[1,2,2,0],[2,1,3,1],[2,0,4,2],[0,2,1,1]],[[1,2,2,0],[2,1,3,1],[3,0,3,2],[0,2,1,1]],[[1,2,2,0],[2,1,4,1],[2,0,3,2],[0,2,1,1]],[[1,2,2,0],[3,1,3,1],[2,0,3,2],[0,2,1,1]],[[1,2,3,0],[2,1,3,1],[2,0,3,2],[0,2,1,1]],[[1,3,2,0],[2,1,3,1],[2,0,3,2],[0,2,1,1]],[[2,2,2,0],[2,1,3,1],[2,0,3,2],[0,2,1,1]],[[1,2,2,0],[2,1,3,1],[2,0,3,1],[1,3,1,1]],[[1,2,2,0],[2,1,3,1],[2,0,3,1],[2,2,1,1]],[[1,2,2,0],[2,1,3,1],[2,0,4,1],[1,2,1,1]],[[1,2,2,0],[2,1,3,1],[3,0,3,1],[1,2,1,1]],[[1,2,2,0],[2,1,4,1],[2,0,3,1],[1,2,1,1]],[[1,2,2,0],[3,1,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,3,0],[2,1,3,1],[2,0,3,1],[1,2,1,1]],[[1,3,2,0],[2,1,3,1],[2,0,3,1],[1,2,1,1]],[[2,2,2,0],[2,1,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,2,0],[2,1,3,1],[2,0,3,1],[1,1,2,2]],[[1,2,2,0],[2,1,3,1],[2,0,3,1],[1,1,3,1]],[[0,2,3,1],[2,2,3,2],[0,3,0,2],[0,1,2,1]],[[0,2,2,2],[2,2,3,2],[0,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,3,3],[0,3,0,2],[0,1,2,1]],[[0,3,2,1],[2,2,3,2],[0,3,0,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,2],[0,3,0,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,2],[0,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,2,3,3],[0,3,0,2],[1,1,1,1]],[[0,3,2,1],[2,2,3,2],[0,3,0,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,2],[0,3,0,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,2],[0,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,2,3,3],[0,3,0,2],[1,1,2,0]],[[0,3,2,1],[2,2,3,2],[0,3,0,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,2],[0,3,0,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,2],[0,3,0,2],[1,2,0,1]],[[0,2,2,1],[2,2,3,3],[0,3,0,2],[1,2,0,1]],[[0,3,2,1],[2,2,3,2],[0,3,0,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,2],[0,3,0,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,2],[0,3,0,2],[1,2,1,0]],[[0,2,2,1],[2,2,3,3],[0,3,0,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,1],[2,0,3,1],[2,1,2,1]],[[1,2,2,0],[2,1,3,1],[2,0,4,1],[1,1,2,1]],[[1,2,2,0],[2,1,3,1],[3,0,3,1],[1,1,2,1]],[[1,2,2,0],[2,1,4,1],[2,0,3,1],[1,1,2,1]],[[1,2,2,0],[3,1,3,1],[2,0,3,1],[1,1,2,1]],[[1,2,3,0],[2,1,3,1],[2,0,3,1],[1,1,2,1]],[[1,3,2,0],[2,1,3,1],[2,0,3,1],[1,1,2,1]],[[2,2,2,0],[2,1,3,1],[2,0,3,1],[1,1,2,1]],[[1,2,2,0],[2,1,3,1],[2,0,3,1],[0,2,2,2]],[[1,2,2,0],[2,1,3,1],[2,0,3,1],[0,2,3,1]],[[1,2,2,0],[2,1,3,1],[2,0,3,1],[0,3,2,1]],[[0,3,2,1],[2,2,3,2],[0,3,1,0],[1,2,2,0]],[[0,2,3,1],[2,2,3,2],[0,3,1,0],[1,2,2,0]],[[0,2,2,2],[2,2,3,2],[0,3,1,0],[1,2,2,0]],[[0,2,2,1],[2,2,4,2],[0,3,1,0],[1,2,2,0]],[[1,2,2,0],[2,1,3,1],[2,0,4,1],[0,2,2,1]],[[1,2,2,0],[2,1,3,1],[3,0,3,1],[0,2,2,1]],[[1,2,2,0],[2,1,4,1],[2,0,3,1],[0,2,2,1]],[[1,2,2,0],[3,1,3,1],[2,0,3,1],[0,2,2,1]],[[1,2,3,0],[2,1,3,1],[2,0,3,1],[0,2,2,1]],[[0,2,3,1],[2,2,3,2],[0,3,1,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,2],[0,3,1,2],[0,0,2,1]],[[0,2,2,1],[2,2,3,3],[0,3,1,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,2],[0,3,1,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,2],[0,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,3],[0,3,1,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,2],[0,3,1,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,2],[0,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,3],[0,3,1,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,2],[0,3,1,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,2],[0,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,3,3],[0,3,1,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[0,3,1,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,2],[0,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,3,3],[0,3,1,2],[0,2,1,0]],[[1,3,2,0],[2,1,3,1],[2,0,3,1],[0,2,2,1]],[[2,2,2,0],[2,1,3,1],[2,0,3,1],[0,2,2,1]],[[1,2,2,0],[2,1,3,1],[2,0,2,2],[1,2,3,0]],[[1,2,2,0],[2,1,3,1],[2,0,2,2],[1,3,2,0]],[[1,2,2,0],[2,1,3,1],[2,0,2,2],[2,2,2,0]],[[1,2,2,0],[2,1,3,1],[3,0,2,2],[1,2,2,0]],[[1,2,2,0],[2,1,4,1],[2,0,2,2],[1,2,2,0]],[[1,2,2,0],[3,1,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,3,0],[2,1,3,1],[2,0,2,2],[1,2,2,0]],[[1,3,2,0],[2,1,3,1],[2,0,2,2],[1,2,2,0]],[[2,2,2,0],[2,1,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,1],[2,0,2,2],[1,1,2,2]],[[1,2,2,0],[2,1,3,1],[2,0,2,2],[1,1,3,1]],[[1,2,2,0],[2,1,3,1],[2,0,2,3],[1,1,2,1]],[[1,2,2,0],[2,1,3,1],[2,0,2,2],[0,2,2,2]],[[1,2,2,0],[2,1,3,1],[2,0,2,2],[0,2,3,1]],[[1,2,2,0],[2,1,3,1],[2,0,2,2],[0,3,2,1]],[[1,2,2,0],[2,1,3,1],[2,0,2,3],[0,2,2,1]],[[1,2,2,0],[2,1,3,1],[2,0,2,1],[1,2,2,2]],[[1,2,2,0],[2,1,3,1],[2,0,2,1],[1,2,3,1]],[[1,2,2,0],[2,1,3,1],[2,0,2,1],[1,3,2,1]],[[1,2,2,0],[2,1,3,1],[2,0,2,1],[2,2,2,1]],[[1,2,2,0],[2,1,3,1],[3,0,2,1],[1,2,2,1]],[[1,2,2,0],[2,1,4,1],[2,0,2,1],[1,2,2,1]],[[1,2,2,0],[3,1,3,1],[2,0,2,1],[1,2,2,1]],[[1,2,3,0],[2,1,3,1],[2,0,2,1],[1,2,2,1]],[[1,3,2,0],[2,1,3,1],[2,0,2,1],[1,2,2,1]],[[2,2,2,0],[2,1,3,1],[2,0,2,1],[1,2,2,1]],[[1,2,2,0],[2,1,3,1],[2,0,1,2],[1,2,2,2]],[[0,3,2,1],[2,2,3,2],[0,3,2,0],[1,1,1,1]],[[0,2,3,1],[2,2,3,2],[0,3,2,0],[1,1,1,1]],[[0,2,2,2],[2,2,3,2],[0,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,2,4,2],[0,3,2,0],[1,1,1,1]],[[0,3,2,1],[2,2,3,2],[0,3,2,0],[1,1,2,0]],[[0,2,3,1],[2,2,3,2],[0,3,2,0],[1,1,2,0]],[[0,2,2,2],[2,2,3,2],[0,3,2,0],[1,1,2,0]],[[0,2,2,1],[2,2,4,2],[0,3,2,0],[1,1,2,0]],[[0,3,2,1],[2,2,3,2],[0,3,2,0],[1,2,0,1]],[[0,2,3,1],[2,2,3,2],[0,3,2,0],[1,2,0,1]],[[0,2,2,2],[2,2,3,2],[0,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,4,2],[0,3,2,0],[1,2,0,1]],[[0,3,2,1],[2,2,3,2],[0,3,2,0],[1,2,1,0]],[[0,2,3,1],[2,2,3,2],[0,3,2,0],[1,2,1,0]],[[0,2,2,2],[2,2,3,2],[0,3,2,0],[1,2,1,0]],[[0,2,2,1],[2,2,4,2],[0,3,2,0],[1,2,1,0]],[[1,2,2,0],[2,1,3,1],[2,0,1,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,1],[2,0,1,2],[1,3,2,1]],[[1,2,2,0],[2,1,3,1],[2,0,1,2],[2,2,2,1]],[[1,2,2,0],[2,1,3,1],[2,0,1,3],[1,2,2,1]],[[1,2,2,0],[2,1,3,1],[3,0,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,4,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[3,1,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,3,0],[2,1,3,1],[2,0,1,2],[1,2,2,1]],[[1,3,2,0],[2,1,3,1],[2,0,1,2],[1,2,2,1]],[[2,2,2,0],[2,1,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,4,1],[1,3,3,2],[1,1,0,0]],[[1,2,2,0],[3,1,3,1],[1,3,3,2],[1,1,0,0]],[[1,2,3,0],[2,1,3,1],[1,3,3,2],[1,1,0,0]],[[1,3,2,0],[2,1,3,1],[1,3,3,2],[1,1,0,0]],[[2,2,2,0],[2,1,3,1],[1,3,3,2],[1,1,0,0]],[[0,2,3,1],[2,2,3,2],[0,3,2,2],[0,1,0,1]],[[0,2,2,2],[2,2,3,2],[0,3,2,2],[0,1,0,1]],[[0,2,2,1],[2,2,3,3],[0,3,2,2],[0,1,0,1]],[[1,2,2,0],[2,1,4,1],[1,3,3,2],[0,2,0,0]],[[1,2,2,0],[3,1,3,1],[1,3,3,2],[0,2,0,0]],[[1,2,3,0],[2,1,3,1],[1,3,3,2],[0,2,0,0]],[[1,3,2,0],[2,1,3,1],[1,3,3,2],[0,2,0,0]],[[2,2,2,0],[2,1,3,1],[1,3,3,2],[0,2,0,0]],[[1,2,2,0],[2,1,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,2,0],[2,1,3,1],[1,3,4,2],[0,0,2,0]],[[1,2,2,0],[2,1,4,1],[1,3,3,2],[0,0,2,0]],[[1,2,2,0],[3,1,3,1],[1,3,3,2],[0,0,2,0]],[[1,2,3,0],[2,1,3,1],[1,3,3,2],[0,0,2,0]],[[1,3,2,0],[2,1,3,1],[1,3,3,2],[0,0,2,0]],[[2,2,2,0],[2,1,3,1],[1,3,3,2],[0,0,2,0]],[[1,2,2,0],[2,1,3,1],[1,3,3,2],[0,0,1,2]],[[1,2,2,0],[2,1,3,1],[1,3,3,3],[0,0,1,1]],[[1,2,2,0],[2,1,3,1],[1,3,4,2],[0,0,1,1]],[[1,2,2,0],[2,1,4,1],[1,3,3,2],[0,0,1,1]],[[1,2,2,0],[3,1,3,1],[1,3,3,2],[0,0,1,1]],[[1,2,3,0],[2,1,3,1],[1,3,3,2],[0,0,1,1]],[[1,3,2,0],[2,1,3,1],[1,3,3,2],[0,0,1,1]],[[2,2,2,0],[2,1,3,1],[1,3,3,2],[0,0,1,1]],[[0,2,3,1],[2,2,3,2],[0,3,3,0],[0,0,2,1]],[[0,2,2,2],[2,2,3,2],[0,3,3,0],[0,0,2,1]],[[0,2,2,1],[2,2,4,2],[0,3,3,0],[0,0,2,1]],[[0,3,2,1],[2,2,3,2],[0,3,3,0],[0,1,1,1]],[[0,2,3,1],[2,2,3,2],[0,3,3,0],[0,1,1,1]],[[0,2,2,2],[2,2,3,2],[0,3,3,0],[0,1,1,1]],[[0,2,2,1],[2,2,4,2],[0,3,3,0],[0,1,1,1]],[[0,3,2,1],[2,2,3,2],[0,3,3,0],[0,1,2,0]],[[0,2,3,1],[2,2,3,2],[0,3,3,0],[0,1,2,0]],[[0,2,2,2],[2,2,3,2],[0,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,2,4,2],[0,3,3,0],[0,1,2,0]],[[0,3,2,1],[2,2,3,2],[0,3,3,0],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[0,3,3,0],[0,2,0,1]],[[0,2,2,2],[2,2,3,2],[0,3,3,0],[0,2,0,1]],[[0,2,2,1],[2,2,4,2],[0,3,3,0],[0,2,0,1]],[[0,3,2,1],[2,2,3,2],[0,3,3,0],[0,2,1,0]],[[0,2,3,1],[2,2,3,2],[0,3,3,0],[0,2,1,0]],[[0,2,2,2],[2,2,3,2],[0,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,2,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,2,0],[2,1,3,1],[1,3,4,1],[0,0,2,1]],[[0,3,2,1],[2,2,3,2],[0,3,3,0],[1,2,0,0]],[[0,2,3,1],[2,2,3,2],[0,3,3,0],[1,2,0,0]],[[0,2,2,2],[2,2,3,2],[0,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,2,4,2],[0,3,3,0],[1,2,0,0]],[[1,2,2,0],[2,1,4,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,0],[3,1,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,3,0],[2,1,3,1],[1,3,3,1],[0,0,2,1]],[[1,3,2,0],[2,1,3,1],[1,3,3,1],[0,0,2,1]],[[2,2,2,0],[2,1,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,0],[2,1,4,1],[1,3,2,2],[1,2,0,0]],[[1,2,2,0],[3,1,3,1],[1,3,2,2],[1,2,0,0]],[[1,2,3,0],[2,1,3,1],[1,3,2,2],[1,2,0,0]],[[1,3,2,0],[2,1,3,1],[1,3,2,2],[1,2,0,0]],[[2,2,2,0],[2,1,3,1],[1,3,2,2],[1,2,0,0]],[[1,2,2,0],[2,1,4,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[3,1,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,3,0],[2,1,3,1],[1,3,2,2],[1,1,1,0]],[[1,3,2,0],[2,1,3,1],[1,3,2,2],[1,1,1,0]],[[2,2,2,0],[2,1,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[2,1,4,1],[1,3,2,2],[1,1,0,1]],[[1,2,2,0],[3,1,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,3,0],[2,1,3,1],[1,3,2,2],[1,1,0,1]],[[1,3,2,0],[2,1,3,1],[1,3,2,2],[1,1,0,1]],[[2,2,2,0],[2,1,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,2,0],[2,1,4,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[3,1,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,3,0],[2,1,3,1],[1,3,2,2],[1,0,2,0]],[[1,3,2,0],[2,1,3,1],[1,3,2,2],[1,0,2,0]],[[2,2,2,0],[2,1,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[2,1,4,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,0],[3,1,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,3,0],[2,1,3,1],[1,3,2,2],[1,0,1,1]],[[1,3,2,0],[2,1,3,1],[1,3,2,2],[1,0,1,1]],[[2,2,2,0],[2,1,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,0],[2,1,4,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[3,1,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,3,0],[2,1,3,1],[1,3,2,2],[0,2,1,0]],[[1,3,2,0],[2,1,3,1],[1,3,2,2],[0,2,1,0]],[[2,2,2,0],[2,1,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,4,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[3,1,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,3,0],[2,1,3,1],[1,3,2,2],[0,2,0,1]],[[1,3,2,0],[2,1,3,1],[1,3,2,2],[0,2,0,1]],[[2,2,2,0],[2,1,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[2,1,4,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[3,1,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,3,0],[2,1,3,1],[1,3,2,2],[0,1,2,0]],[[1,3,2,0],[2,1,3,1],[1,3,2,2],[0,1,2,0]],[[2,2,2,0],[2,1,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[2,1,4,1],[1,3,2,2],[0,1,1,1]],[[1,2,2,0],[3,1,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,3,0],[2,1,3,1],[1,3,2,2],[0,1,1,1]],[[1,3,2,0],[2,1,3,1],[1,3,2,2],[0,1,1,1]],[[2,2,2,0],[2,1,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,2,0],[2,1,4,1],[1,3,2,1],[1,1,1,1]],[[1,2,2,0],[3,1,3,1],[1,3,2,1],[1,1,1,1]],[[1,2,3,0],[2,1,3,1],[1,3,2,1],[1,1,1,1]],[[1,3,2,0],[2,1,3,1],[1,3,2,1],[1,1,1,1]],[[2,2,2,0],[2,1,3,1],[1,3,2,1],[1,1,1,1]],[[1,2,2,0],[2,1,4,1],[1,3,2,1],[1,0,2,1]],[[1,2,2,0],[3,1,3,1],[1,3,2,1],[1,0,2,1]],[[1,2,3,0],[2,1,3,1],[1,3,2,1],[1,0,2,1]],[[1,3,2,0],[2,1,3,1],[1,3,2,1],[1,0,2,1]],[[2,2,2,0],[2,1,3,1],[1,3,2,1],[1,0,2,1]],[[1,2,2,0],[2,1,4,1],[1,3,2,1],[0,2,1,1]],[[1,2,2,0],[3,1,3,1],[1,3,2,1],[0,2,1,1]],[[1,2,3,0],[2,1,3,1],[1,3,2,1],[0,2,1,1]],[[1,3,2,0],[2,1,3,1],[1,3,2,1],[0,2,1,1]],[[2,2,2,0],[2,1,3,1],[1,3,2,1],[0,2,1,1]],[[1,2,2,0],[2,1,4,1],[1,3,2,1],[0,1,2,1]],[[1,2,2,0],[3,1,3,1],[1,3,2,1],[0,1,2,1]],[[1,2,3,0],[2,1,3,1],[1,3,2,1],[0,1,2,1]],[[1,3,2,0],[2,1,3,1],[1,3,2,1],[0,1,2,1]],[[2,2,2,0],[2,1,3,1],[1,3,2,1],[0,1,2,1]],[[1,2,2,0],[2,1,4,1],[1,3,1,2],[1,1,2,0]],[[1,2,2,0],[3,1,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,1],[1,3,1,2],[1,1,2,0]],[[1,3,2,0],[2,1,3,1],[1,3,1,2],[1,1,2,0]],[[2,2,2,0],[2,1,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,1],[1,3,1,2],[0,2,2,0]],[[1,2,2,0],[3,1,3,1],[1,3,1,2],[0,2,2,0]],[[1,2,3,0],[2,1,3,1],[1,3,1,2],[0,2,2,0]],[[1,3,2,0],[2,1,3,1],[1,3,1,2],[0,2,2,0]],[[2,2,2,0],[2,1,3,1],[1,3,1,2],[0,2,2,0]],[[1,2,2,0],[2,1,4,1],[1,3,1,1],[1,1,2,1]],[[1,2,2,0],[3,1,3,1],[1,3,1,1],[1,1,2,1]],[[1,2,3,0],[2,1,3,1],[1,3,1,1],[1,1,2,1]],[[1,3,2,0],[2,1,3,1],[1,3,1,1],[1,1,2,1]],[[2,2,2,0],[2,1,3,1],[1,3,1,1],[1,1,2,1]],[[1,2,2,0],[2,1,4,1],[1,3,1,1],[0,2,2,1]],[[1,2,2,0],[3,1,3,1],[1,3,1,1],[0,2,2,1]],[[1,2,3,0],[2,1,3,1],[1,3,1,1],[0,2,2,1]],[[1,3,2,0],[2,1,3,1],[1,3,1,1],[0,2,2,1]],[[2,2,2,0],[2,1,3,1],[1,3,1,1],[0,2,2,1]],[[1,2,2,0],[2,1,4,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,1,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,3,0],[2,1,3,1],[1,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,1,3,1],[1,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,1,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,4,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[3,1,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,3,0],[2,1,3,1],[1,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,1,3,1],[1,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,1,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,2,0],[2,1,3,1],[1,2,4,2],[1,1,1,0]],[[1,2,2,0],[2,1,4,1],[1,2,3,2],[1,1,1,0]],[[1,2,2,0],[3,1,3,1],[1,2,3,2],[1,1,1,0]],[[1,2,3,0],[2,1,3,1],[1,2,3,2],[1,1,1,0]],[[1,3,2,0],[2,1,3,1],[1,2,3,2],[1,1,1,0]],[[2,2,2,0],[2,1,3,1],[1,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,1,3,1],[1,2,3,2],[1,1,0,2]],[[1,2,2,0],[2,1,3,1],[1,2,3,3],[1,1,0,1]],[[1,2,2,0],[2,1,3,1],[1,2,4,2],[1,1,0,1]],[[1,2,2,0],[2,1,4,1],[1,2,3,2],[1,1,0,1]],[[1,2,2,0],[3,1,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,3,0],[2,1,3,1],[1,2,3,2],[1,1,0,1]],[[1,3,2,0],[2,1,3,1],[1,2,3,2],[1,1,0,1]],[[2,2,2,0],[2,1,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,3,1],[1,2,3,2],[1,0,3,0]],[[1,2,2,0],[2,1,3,1],[1,2,3,3],[1,0,2,0]],[[1,2,2,0],[2,1,3,1],[1,2,4,2],[1,0,2,0]],[[1,2,2,0],[2,1,4,1],[1,2,3,2],[1,0,2,0]],[[1,2,2,0],[3,1,3,1],[1,2,3,2],[1,0,2,0]],[[1,2,3,0],[2,1,3,1],[1,2,3,2],[1,0,2,0]],[[1,3,2,0],[2,1,3,1],[1,2,3,2],[1,0,2,0]],[[2,2,2,0],[2,1,3,1],[1,2,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,1],[1,2,3,2],[1,0,1,2]],[[1,2,2,0],[2,1,3,1],[1,2,3,3],[1,0,1,1]],[[1,2,2,0],[2,1,3,1],[1,2,4,2],[1,0,1,1]],[[1,2,2,0],[2,1,4,1],[1,2,3,2],[1,0,1,1]],[[1,2,2,0],[3,1,3,1],[1,2,3,2],[1,0,1,1]],[[1,2,3,0],[2,1,3,1],[1,2,3,2],[1,0,1,1]],[[1,3,2,0],[2,1,3,1],[1,2,3,2],[1,0,1,1]],[[2,2,2,0],[2,1,3,1],[1,2,3,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,2],[1,0,0,2],[1,2,2,1]],[[0,2,3,1],[2,2,3,2],[1,0,0,2],[1,2,2,1]],[[0,2,2,2],[2,2,3,2],[1,0,0,2],[1,2,2,1]],[[0,2,2,1],[2,2,3,3],[1,0,0,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,2],[1,0,1,2],[1,2,1,1]],[[0,2,3,1],[2,2,3,2],[1,0,1,2],[1,2,1,1]],[[0,2,2,2],[2,2,3,2],[1,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,2,3,3],[1,0,1,2],[1,2,1,1]],[[0,3,2,1],[2,2,3,2],[1,0,1,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,2],[1,0,1,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,2],[1,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,2,3,3],[1,0,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,2,0],[2,1,3,1],[1,2,4,2],[0,2,1,0]],[[1,2,2,0],[2,1,4,1],[1,2,3,2],[0,2,1,0]],[[0,3,2,1],[2,2,3,2],[1,0,3,0],[1,2,1,1]],[[0,2,3,1],[2,2,3,2],[1,0,3,0],[1,2,1,1]],[[0,2,2,2],[2,2,3,2],[1,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,2,4,2],[1,0,3,0],[1,2,1,1]],[[0,3,2,1],[2,2,3,2],[1,0,3,0],[1,2,2,0]],[[0,2,3,1],[2,2,3,2],[1,0,3,0],[1,2,2,0]],[[0,2,2,2],[2,2,3,2],[1,0,3,0],[1,2,2,0]],[[0,2,2,1],[2,2,4,2],[1,0,3,0],[1,2,2,0]],[[1,2,2,0],[3,1,3,1],[1,2,3,2],[0,2,1,0]],[[1,2,3,0],[2,1,3,1],[1,2,3,2],[0,2,1,0]],[[1,3,2,0],[2,1,3,1],[1,2,3,2],[0,2,1,0]],[[2,2,2,0],[2,1,3,1],[1,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,1,3,1],[1,2,3,2],[0,2,0,2]],[[1,2,2,0],[2,1,3,1],[1,2,3,3],[0,2,0,1]],[[1,2,2,0],[2,1,3,1],[1,2,4,2],[0,2,0,1]],[[1,2,2,0],[2,1,4,1],[1,2,3,2],[0,2,0,1]],[[1,2,2,0],[3,1,3,1],[1,2,3,2],[0,2,0,1]],[[1,2,3,0],[2,1,3,1],[1,2,3,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[1,0,3,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,2],[1,0,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,3,3],[1,0,3,2],[0,0,2,1]],[[0,2,2,1],[2,2,3,2],[1,0,3,3],[0,0,2,1]],[[0,2,2,1],[2,2,3,2],[1,0,3,2],[0,0,2,2]],[[0,2,3,1],[2,2,3,2],[1,0,3,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,2],[1,0,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,3],[1,0,3,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,2],[1,0,3,3],[0,1,1,1]],[[0,2,3,1],[2,2,3,2],[1,0,3,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,2],[1,0,3,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,3],[1,0,3,2],[0,1,2,0]],[[1,3,2,0],[2,1,3,1],[1,2,3,2],[0,2,0,1]],[[2,2,2,0],[2,1,3,1],[1,2,3,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[1,0,3,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,2],[1,0,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,3,3],[1,0,3,2],[1,0,1,1]],[[0,2,2,1],[2,2,3,2],[1,0,3,3],[1,0,1,1]],[[0,2,3,1],[2,2,3,2],[1,0,3,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,2],[1,0,3,2],[1,0,2,0]],[[0,2,2,1],[2,2,3,3],[1,0,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,3,1],[1,2,3,2],[0,1,3,0]],[[1,2,2,0],[2,1,3,1],[1,2,3,3],[0,1,2,0]],[[1,2,2,0],[2,1,3,1],[1,2,4,2],[0,1,2,0]],[[1,2,2,0],[2,1,4,1],[1,2,3,2],[0,1,2,0]],[[1,2,2,0],[3,1,3,1],[1,2,3,2],[0,1,2,0]],[[1,2,3,0],[2,1,3,1],[1,2,3,2],[0,1,2,0]],[[1,3,2,0],[2,1,3,1],[1,2,3,2],[0,1,2,0]],[[2,2,2,0],[2,1,3,1],[1,2,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,3,1],[1,2,3,2],[0,1,1,2]],[[1,2,2,0],[2,1,3,1],[1,2,3,3],[0,1,1,1]],[[1,2,2,0],[2,1,3,1],[1,2,4,2],[0,1,1,1]],[[1,2,2,0],[2,1,4,1],[1,2,3,2],[0,1,1,1]],[[1,2,2,0],[3,1,3,1],[1,2,3,2],[0,1,1,1]],[[1,2,3,0],[2,1,3,1],[1,2,3,2],[0,1,1,1]],[[1,3,2,0],[2,1,3,1],[1,2,3,2],[0,1,1,1]],[[2,2,2,0],[2,1,3,1],[1,2,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,3,1],[1,2,3,2],[0,0,2,2]],[[1,2,2,0],[2,1,3,1],[1,2,3,3],[0,0,2,1]],[[1,2,2,0],[2,1,3,1],[1,2,4,2],[0,0,2,1]],[[1,2,2,0],[2,1,4,1],[1,2,3,2],[0,0,2,1]],[[1,2,2,0],[3,1,3,1],[1,2,3,2],[0,0,2,1]],[[1,2,3,0],[2,1,3,1],[1,2,3,2],[0,0,2,1]],[[1,3,2,0],[2,1,3,1],[1,2,3,2],[0,0,2,1]],[[2,2,2,0],[2,1,3,1],[1,2,3,2],[0,0,2,1]],[[0,3,2,1],[2,2,3,2],[1,1,0,2],[0,2,2,1]],[[0,2,3,1],[2,2,3,2],[1,1,0,2],[0,2,2,1]],[[0,2,2,2],[2,2,3,2],[1,1,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,3,3],[1,1,0,2],[0,2,2,1]],[[0,3,2,1],[2,2,3,2],[1,1,1,2],[0,2,1,1]],[[0,2,3,1],[2,2,3,2],[1,1,1,2],[0,2,1,1]],[[0,2,2,2],[2,2,3,2],[1,1,1,2],[0,2,1,1]],[[0,2,2,1],[2,2,3,3],[1,1,1,2],[0,2,1,1]],[[0,3,2,1],[2,2,3,2],[1,1,1,2],[0,2,2,0]],[[0,2,3,1],[2,2,3,2],[1,1,1,2],[0,2,2,0]],[[0,2,2,2],[2,2,3,2],[1,1,1,2],[0,2,2,0]],[[0,2,2,1],[2,2,3,3],[1,1,1,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,1],[1,2,4,1],[1,1,1,1]],[[1,2,2,0],[2,1,4,1],[1,2,3,1],[1,1,1,1]],[[1,2,2,0],[3,1,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,3,0],[2,1,3,1],[1,2,3,1],[1,1,1,1]],[[1,3,2,0],[2,1,3,1],[1,2,3,1],[1,1,1,1]],[[2,2,2,0],[2,1,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,2,0],[2,1,3,1],[1,2,3,1],[1,0,2,2]],[[1,2,2,0],[2,1,3,1],[1,2,3,1],[1,0,3,1]],[[1,2,2,0],[2,1,3,1],[1,2,4,1],[1,0,2,1]],[[1,2,2,0],[2,1,4,1],[1,2,3,1],[1,0,2,1]],[[1,2,2,0],[3,1,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,3,0],[2,1,3,1],[1,2,3,1],[1,0,2,1]],[[1,3,2,0],[2,1,3,1],[1,2,3,1],[1,0,2,1]],[[2,2,2,0],[2,1,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,2,0],[2,1,3,1],[1,2,4,1],[0,2,1,1]],[[1,2,2,0],[2,1,4,1],[1,2,3,1],[0,2,1,1]],[[1,2,2,0],[3,1,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,3,0],[2,1,3,1],[1,2,3,1],[0,2,1,1]],[[1,3,2,0],[2,1,3,1],[1,2,3,1],[0,2,1,1]],[[2,2,2,0],[2,1,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,3,1],[1,2,3,1],[0,1,2,2]],[[1,2,2,0],[2,1,3,1],[1,2,3,1],[0,1,3,1]],[[1,2,2,0],[2,1,3,1],[1,2,4,1],[0,1,2,1]],[[1,2,2,0],[2,1,4,1],[1,2,3,1],[0,1,2,1]],[[1,2,2,0],[3,1,3,1],[1,2,3,1],[0,1,2,1]],[[1,2,3,0],[2,1,3,1],[1,2,3,1],[0,1,2,1]],[[1,3,2,0],[2,1,3,1],[1,2,3,1],[0,1,2,1]],[[2,2,2,0],[2,1,3,1],[1,2,3,1],[0,1,2,1]],[[0,3,2,1],[2,2,3,2],[1,1,3,0],[0,2,1,1]],[[0,2,3,1],[2,2,3,2],[1,1,3,0],[0,2,1,1]],[[0,2,2,2],[2,2,3,2],[1,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,4,2],[1,1,3,0],[0,2,1,1]],[[0,3,2,1],[2,2,3,2],[1,1,3,0],[0,2,2,0]],[[0,2,3,1],[2,2,3,2],[1,1,3,0],[0,2,2,0]],[[0,2,2,2],[2,2,3,2],[1,1,3,0],[0,2,2,0]],[[0,2,2,1],[2,2,4,2],[1,1,3,0],[0,2,2,0]],[[1,2,2,0],[2,1,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,2,0],[2,1,3,1],[1,2,2,2],[1,0,3,1]],[[1,2,2,0],[2,1,3,1],[1,2,2,3],[1,0,2,1]],[[1,2,2,0],[2,1,3,1],[1,2,2,2],[0,1,2,2]],[[1,2,2,0],[2,1,3,1],[1,2,2,2],[0,1,3,1]],[[1,2,2,0],[2,1,3,1],[1,2,2,3],[0,1,2,1]],[[1,2,2,0],[2,1,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,2,0],[2,1,3,1],[1,1,3,2],[0,3,2,0]],[[1,2,2,0],[2,1,3,1],[1,1,3,3],[0,2,2,0]],[[1,2,2,0],[2,1,3,1],[1,1,4,2],[0,2,2,0]],[[1,2,2,0],[2,1,4,1],[1,1,3,2],[0,2,2,0]],[[1,2,2,0],[3,1,3,1],[1,1,3,2],[0,2,2,0]],[[1,2,3,0],[2,1,3,1],[1,1,3,2],[0,2,2,0]],[[1,3,2,0],[2,1,3,1],[1,1,3,2],[0,2,2,0]],[[2,2,2,0],[2,1,3,1],[1,1,3,2],[0,2,2,0]],[[1,2,2,0],[2,1,3,1],[1,1,3,2],[0,2,1,2]],[[1,2,2,0],[2,1,3,1],[1,1,3,3],[0,2,1,1]],[[1,2,2,0],[2,1,3,1],[1,1,4,2],[0,2,1,1]],[[1,2,2,0],[2,1,4,1],[1,1,3,2],[0,2,1,1]],[[1,2,2,0],[3,1,3,1],[1,1,3,2],[0,2,1,1]],[[1,2,3,0],[2,1,3,1],[1,1,3,2],[0,2,1,1]],[[1,3,2,0],[2,1,3,1],[1,1,3,2],[0,2,1,1]],[[2,2,2,0],[2,1,3,1],[1,1,3,2],[0,2,1,1]],[[1,2,2,0],[2,1,3,1],[1,1,3,1],[0,2,2,2]],[[1,2,2,0],[2,1,3,1],[1,1,3,1],[0,2,3,1]],[[1,2,2,0],[2,1,3,1],[1,1,3,1],[0,3,2,1]],[[1,2,2,0],[2,1,3,1],[1,1,4,1],[0,2,2,1]],[[1,2,2,0],[2,1,4,1],[1,1,3,1],[0,2,2,1]],[[1,2,2,0],[3,1,3,1],[1,1,3,1],[0,2,2,1]],[[1,2,3,0],[2,1,3,1],[1,1,3,1],[0,2,2,1]],[[1,3,2,0],[2,1,3,1],[1,1,3,1],[0,2,2,1]],[[2,2,2,0],[2,1,3,1],[1,1,3,1],[0,2,2,1]],[[1,2,2,0],[2,1,3,1],[1,1,2,2],[0,2,2,2]],[[1,2,2,0],[2,1,3,1],[1,1,2,2],[0,2,3,1]],[[1,2,2,0],[2,1,3,1],[1,1,2,2],[0,3,2,1]],[[1,2,2,0],[2,1,3,1],[1,1,2,3],[0,2,2,1]],[[1,2,2,0],[2,1,3,1],[1,0,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,3,1],[1,0,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,3,1],[1,0,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,3,1],[1,0,3,3],[1,2,2,0]],[[1,2,2,0],[2,1,3,1],[1,0,4,2],[1,2,2,0]],[[1,2,2,0],[2,1,4,1],[1,0,3,2],[1,2,2,0]],[[1,2,2,0],[3,1,3,1],[1,0,3,2],[1,2,2,0]],[[1,2,3,0],[2,1,3,1],[1,0,3,2],[1,2,2,0]],[[1,3,2,0],[2,1,3,1],[1,0,3,2],[1,2,2,0]],[[2,2,2,0],[2,1,3,1],[1,0,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,1],[1,0,3,2],[1,2,1,2]],[[1,2,2,0],[2,1,3,1],[1,0,3,3],[1,2,1,1]],[[1,2,2,0],[2,1,3,1],[1,0,4,2],[1,2,1,1]],[[1,2,2,0],[2,1,4,1],[1,0,3,2],[1,2,1,1]],[[1,2,2,0],[3,1,3,1],[1,0,3,2],[1,2,1,1]],[[1,2,3,0],[2,1,3,1],[1,0,3,2],[1,2,1,1]],[[1,3,2,0],[2,1,3,1],[1,0,3,2],[1,2,1,1]],[[2,2,2,0],[2,1,3,1],[1,0,3,2],[1,2,1,1]],[[1,2,2,0],[2,1,3,1],[1,0,3,2],[0,2,2,2]],[[1,2,2,0],[2,1,3,1],[1,0,3,2],[0,2,3,1]],[[1,2,2,0],[2,1,3,1],[1,0,3,3],[0,2,2,1]],[[1,2,2,0],[2,1,3,1],[1,0,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,3,1],[1,0,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,3,1],[1,0,3,1],[1,3,2,1]],[[1,2,2,0],[2,1,3,1],[1,0,3,1],[2,2,2,1]],[[1,2,2,0],[2,1,3,1],[1,0,4,1],[1,2,2,1]],[[1,2,2,0],[2,1,4,1],[1,0,3,1],[1,2,2,1]],[[1,2,2,0],[3,1,3,1],[1,0,3,1],[1,2,2,1]],[[1,2,3,0],[2,1,3,1],[1,0,3,1],[1,2,2,1]],[[1,3,2,0],[2,1,3,1],[1,0,3,1],[1,2,2,1]],[[2,2,2,0],[2,1,3,1],[1,0,3,1],[1,2,2,1]],[[1,2,2,0],[2,1,3,1],[1,0,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,3,1],[1,0,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,1],[1,0,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,3,1],[1,0,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,3,1],[1,0,2,3],[1,2,2,1]],[[0,3,2,1],[2,2,3,2],[1,2,0,2],[0,1,2,1]],[[0,2,3,1],[2,2,3,2],[1,2,0,2],[0,1,2,1]],[[0,2,2,2],[2,2,3,2],[1,2,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,3,3],[1,2,0,2],[0,1,2,1]],[[0,3,2,1],[2,2,3,2],[1,2,0,2],[1,0,2,1]],[[0,2,3,1],[2,2,3,2],[1,2,0,2],[1,0,2,1]],[[0,2,2,2],[2,2,3,2],[1,2,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,3,3],[1,2,0,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,2],[1,2,1,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,2],[1,2,1,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,2],[1,2,1,2],[0,0,2,1]],[[0,2,2,1],[2,2,3,3],[1,2,1,2],[0,0,2,1]],[[0,3,2,1],[2,2,3,2],[1,2,1,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,2],[1,2,1,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,2],[1,2,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,3],[1,2,1,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,2],[1,2,1,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,2],[1,2,1,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,2],[1,2,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,3],[1,2,1,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,2],[1,2,1,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[1,2,1,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,2],[1,2,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,3,3],[1,2,1,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,2],[1,2,1,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,2],[1,2,1,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,2],[1,2,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,3,3],[1,2,1,2],[0,2,1,0]],[[0,3,2,1],[2,2,3,2],[1,2,1,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,2],[1,2,1,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,2],[1,2,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,3,3],[1,2,1,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,2],[1,2,1,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,2],[1,2,1,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,2],[1,2,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,3,3],[1,2,1,2],[1,0,2,0]],[[0,3,2,1],[2,2,3,2],[1,2,1,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,2],[1,2,1,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,2],[1,2,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,3,3],[1,2,1,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,2],[1,2,1,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,2],[1,2,1,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,2],[1,2,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,3,3],[1,2,1,2],[1,1,1,0]],[[1,2,2,0],[2,1,4,1],[0,3,3,2],[1,2,0,0]],[[1,2,2,0],[3,1,3,1],[0,3,3,2],[1,2,0,0]],[[1,2,3,0],[2,1,3,1],[0,3,3,2],[1,2,0,0]],[[1,3,2,0],[2,1,3,1],[0,3,3,2],[1,2,0,0]],[[2,2,2,0],[2,1,3,1],[0,3,3,2],[1,2,0,0]],[[0,3,2,1],[2,2,3,2],[1,2,2,2],[0,1,0,1]],[[0,2,3,1],[2,2,3,2],[1,2,2,2],[0,1,0,1]],[[0,2,2,2],[2,2,3,2],[1,2,2,2],[0,1,0,1]],[[0,2,2,1],[2,2,3,3],[1,2,2,2],[0,1,0,1]],[[0,3,2,1],[2,2,3,2],[1,2,2,2],[1,0,0,1]],[[0,2,3,1],[2,2,3,2],[1,2,2,2],[1,0,0,1]],[[0,2,2,2],[2,2,3,2],[1,2,2,2],[1,0,0,1]],[[0,2,2,1],[2,2,3,3],[1,2,2,2],[1,0,0,1]],[[1,2,2,0],[2,1,4,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[3,1,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,3,0],[2,1,3,1],[0,3,2,2],[1,2,1,0]],[[1,3,2,0],[2,1,3,1],[0,3,2,2],[1,2,1,0]],[[2,2,2,0],[2,1,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,4,1],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[3,1,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,3,0],[2,1,3,1],[0,3,2,2],[1,2,0,1]],[[1,3,2,0],[2,1,3,1],[0,3,2,2],[1,2,0,1]],[[2,2,2,0],[2,1,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[2,1,4,1],[0,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,1,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,1],[0,3,2,2],[1,1,2,0]],[[1,3,2,0],[2,1,3,1],[0,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,1,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,1],[0,3,2,2],[1,1,1,1]],[[1,2,2,0],[3,1,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,3,0],[2,1,3,1],[0,3,2,2],[1,1,1,1]],[[1,3,2,0],[2,1,3,1],[0,3,2,2],[1,1,1,1]],[[2,2,2,0],[2,1,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,2,0],[2,1,4,1],[0,3,2,1],[1,2,1,1]],[[1,2,2,0],[3,1,3,1],[0,3,2,1],[1,2,1,1]],[[1,2,3,0],[2,1,3,1],[0,3,2,1],[1,2,1,1]],[[1,3,2,0],[2,1,3,1],[0,3,2,1],[1,2,1,1]],[[2,2,2,0],[2,1,3,1],[0,3,2,1],[1,2,1,1]],[[1,2,2,0],[2,1,4,1],[0,3,2,1],[1,1,2,1]],[[1,2,2,0],[3,1,3,1],[0,3,2,1],[1,1,2,1]],[[1,2,3,0],[2,1,3,1],[0,3,2,1],[1,1,2,1]],[[1,3,2,0],[2,1,3,1],[0,3,2,1],[1,1,2,1]],[[2,2,2,0],[2,1,3,1],[0,3,2,1],[1,1,2,1]],[[0,3,2,1],[2,2,3,2],[1,2,3,0],[0,0,2,1]],[[0,2,3,1],[2,2,3,2],[1,2,3,0],[0,0,2,1]],[[0,2,2,2],[2,2,3,2],[1,2,3,0],[0,0,2,1]],[[0,2,2,1],[2,2,4,2],[1,2,3,0],[0,0,2,1]],[[0,3,2,1],[2,2,3,2],[1,2,3,0],[0,1,1,1]],[[0,2,3,1],[2,2,3,2],[1,2,3,0],[0,1,1,1]],[[0,2,2,2],[2,2,3,2],[1,2,3,0],[0,1,1,1]],[[0,2,2,1],[2,2,4,2],[1,2,3,0],[0,1,1,1]],[[0,3,2,1],[2,2,3,2],[1,2,3,0],[0,1,2,0]],[[0,2,3,1],[2,2,3,2],[1,2,3,0],[0,1,2,0]],[[0,2,2,2],[2,2,3,2],[1,2,3,0],[0,1,2,0]],[[0,2,2,1],[2,2,4,2],[1,2,3,0],[0,1,2,0]],[[0,3,2,1],[2,2,3,2],[1,2,3,0],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[1,2,3,0],[0,2,0,1]],[[0,2,2,2],[2,2,3,2],[1,2,3,0],[0,2,0,1]],[[0,2,2,1],[2,2,4,2],[1,2,3,0],[0,2,0,1]],[[0,3,2,1],[2,2,3,2],[1,2,3,0],[0,2,1,0]],[[0,2,3,1],[2,2,3,2],[1,2,3,0],[0,2,1,0]],[[0,2,2,2],[2,2,3,2],[1,2,3,0],[0,2,1,0]],[[0,2,2,1],[2,2,4,2],[1,2,3,0],[0,2,1,0]],[[1,2,2,0],[2,1,4,1],[0,3,1,2],[1,2,2,0]],[[1,2,2,0],[3,1,3,1],[0,3,1,2],[1,2,2,0]],[[1,2,3,0],[2,1,3,1],[0,3,1,2],[1,2,2,0]],[[1,3,2,0],[2,1,3,1],[0,3,1,2],[1,2,2,0]],[[0,3,2,1],[2,2,3,2],[1,2,3,0],[1,0,1,1]],[[0,2,3,1],[2,2,3,2],[1,2,3,0],[1,0,1,1]],[[0,2,2,2],[2,2,3,2],[1,2,3,0],[1,0,1,1]],[[0,2,2,1],[2,2,4,2],[1,2,3,0],[1,0,1,1]],[[0,3,2,1],[2,2,3,2],[1,2,3,0],[1,0,2,0]],[[0,2,3,1],[2,2,3,2],[1,2,3,0],[1,0,2,0]],[[0,2,2,2],[2,2,3,2],[1,2,3,0],[1,0,2,0]],[[0,2,2,1],[2,2,4,2],[1,2,3,0],[1,0,2,0]],[[0,3,2,1],[2,2,3,2],[1,2,3,0],[1,1,0,1]],[[0,2,3,1],[2,2,3,2],[1,2,3,0],[1,1,0,1]],[[0,2,2,2],[2,2,3,2],[1,2,3,0],[1,1,0,1]],[[0,2,2,1],[2,2,4,2],[1,2,3,0],[1,1,0,1]],[[0,3,2,1],[2,2,3,2],[1,2,3,0],[1,1,1,0]],[[0,2,3,1],[2,2,3,2],[1,2,3,0],[1,1,1,0]],[[0,2,2,2],[2,2,3,2],[1,2,3,0],[1,1,1,0]],[[0,2,2,1],[2,2,4,2],[1,2,3,0],[1,1,1,0]],[[2,2,2,0],[2,1,3,1],[0,3,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,4,1],[0,3,1,1],[1,2,2,1]],[[1,2,2,0],[3,1,3,1],[0,3,1,1],[1,2,2,1]],[[1,2,3,0],[2,1,3,1],[0,3,1,1],[1,2,2,1]],[[1,3,2,0],[2,1,3,1],[0,3,1,1],[1,2,2,1]],[[2,2,2,0],[2,1,3,1],[0,3,1,1],[1,2,2,1]],[[1,2,2,0],[2,1,4,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[3,1,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,3,0],[2,1,3,1],[0,3,0,2],[1,2,2,1]],[[1,3,2,0],[2,1,3,1],[0,3,0,2],[1,2,2,1]],[[2,2,2,0],[2,1,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,2,0],[2,1,3,1],[0,2,4,2],[1,2,1,0]],[[1,2,2,0],[2,1,4,1],[0,2,3,2],[1,2,1,0]],[[1,2,2,0],[3,1,3,1],[0,2,3,2],[1,2,1,0]],[[1,2,3,0],[2,1,3,1],[0,2,3,2],[1,2,1,0]],[[1,3,2,0],[2,1,3,1],[0,2,3,2],[1,2,1,0]],[[2,2,2,0],[2,1,3,1],[0,2,3,2],[1,2,1,0]],[[1,2,2,0],[2,1,3,1],[0,2,3,2],[1,2,0,2]],[[1,2,2,0],[2,1,3,1],[0,2,3,3],[1,2,0,1]],[[1,2,2,0],[2,1,3,1],[0,2,4,2],[1,2,0,1]],[[1,2,2,0],[2,1,4,1],[0,2,3,2],[1,2,0,1]],[[1,2,2,0],[3,1,3,1],[0,2,3,2],[1,2,0,1]],[[1,2,3,0],[2,1,3,1],[0,2,3,2],[1,2,0,1]],[[1,3,2,0],[2,1,3,1],[0,2,3,2],[1,2,0,1]],[[2,2,2,0],[2,1,3,1],[0,2,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,3,1],[0,2,3,2],[1,1,3,0]],[[1,2,2,0],[2,1,3,1],[0,2,3,3],[1,1,2,0]],[[1,2,2,0],[2,1,3,1],[0,2,4,2],[1,1,2,0]],[[1,2,2,0],[2,1,4,1],[0,2,3,2],[1,1,2,0]],[[1,2,2,0],[3,1,3,1],[0,2,3,2],[1,1,2,0]],[[1,2,3,0],[2,1,3,1],[0,2,3,2],[1,1,2,0]],[[1,3,2,0],[2,1,3,1],[0,2,3,2],[1,1,2,0]],[[2,2,2,0],[2,1,3,1],[0,2,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,3,1],[0,2,3,2],[1,1,1,2]],[[1,2,2,0],[2,1,3,1],[0,2,3,3],[1,1,1,1]],[[1,2,2,0],[2,1,3,1],[0,2,4,2],[1,1,1,1]],[[1,2,2,0],[2,1,4,1],[0,2,3,2],[1,1,1,1]],[[1,2,2,0],[3,1,3,1],[0,2,3,2],[1,1,1,1]],[[1,2,3,0],[2,1,3,1],[0,2,3,2],[1,1,1,1]],[[1,3,2,0],[2,1,3,1],[0,2,3,2],[1,1,1,1]],[[2,2,2,0],[2,1,3,1],[0,2,3,2],[1,1,1,1]],[[1,2,2,0],[2,1,3,1],[0,2,3,2],[1,0,2,2]],[[1,2,2,0],[2,1,3,1],[0,2,3,3],[1,0,2,1]],[[1,2,2,0],[2,1,3,1],[0,2,4,2],[1,0,2,1]],[[1,2,2,0],[2,1,4,1],[0,2,3,2],[1,0,2,1]],[[1,2,3,0],[2,1,3,1],[0,2,3,2],[1,0,2,1]],[[1,3,2,0],[2,1,3,1],[0,2,3,2],[1,0,2,1]],[[2,2,2,0],[2,1,3,1],[0,2,3,2],[1,0,2,1]],[[1,2,2,0],[2,1,3,1],[0,2,4,1],[1,2,1,1]],[[1,2,2,0],[2,1,4,1],[0,2,3,1],[1,2,1,1]],[[1,2,2,0],[3,1,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,3,0],[2,1,3,1],[0,2,3,1],[1,2,1,1]],[[1,3,2,0],[2,1,3,1],[0,2,3,1],[1,2,1,1]],[[2,2,2,0],[2,1,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,2,0],[2,1,3,1],[0,2,3,1],[1,1,2,2]],[[1,2,2,0],[2,1,3,1],[0,2,3,1],[1,1,3,1]],[[1,2,2,0],[2,1,3,1],[0,2,4,1],[1,1,2,1]],[[1,2,2,0],[2,1,4,1],[0,2,3,1],[1,1,2,1]],[[1,2,2,0],[3,1,3,1],[0,2,3,1],[1,1,2,1]],[[1,2,3,0],[2,1,3,1],[0,2,3,1],[1,1,2,1]],[[1,3,2,0],[2,1,3,1],[0,2,3,1],[1,1,2,1]],[[2,2,2,0],[2,1,3,1],[0,2,3,1],[1,1,2,1]],[[1,2,2,0],[2,1,3,1],[0,2,2,2],[1,1,2,2]],[[1,2,2,0],[2,1,3,1],[0,2,2,2],[1,1,3,1]],[[1,2,2,0],[2,1,3,1],[0,2,2,3],[1,1,2,1]],[[1,2,2,0],[2,1,3,1],[0,1,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,3,1],[0,1,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,3,1],[0,1,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,3,1],[0,1,3,3],[1,2,2,0]],[[1,2,2,0],[2,1,3,1],[0,1,4,2],[1,2,2,0]],[[1,2,2,0],[2,1,4,1],[0,1,3,2],[1,2,2,0]],[[1,2,2,0],[3,1,3,1],[0,1,3,2],[1,2,2,0]],[[1,2,3,0],[2,1,3,1],[0,1,3,2],[1,2,2,0]],[[1,3,2,0],[2,1,3,1],[0,1,3,2],[1,2,2,0]],[[2,2,2,0],[2,1,3,1],[0,1,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,3,1],[0,1,3,2],[1,2,1,2]],[[1,2,2,0],[2,1,3,1],[0,1,3,3],[1,2,1,1]],[[1,2,2,0],[2,1,3,1],[0,1,4,2],[1,2,1,1]],[[1,2,2,0],[2,1,4,1],[0,1,3,2],[1,2,1,1]],[[1,2,2,0],[3,1,3,1],[0,1,3,2],[1,2,1,1]],[[1,2,3,0],[2,1,3,1],[0,1,3,2],[1,2,1,1]],[[1,3,2,0],[2,1,3,1],[0,1,3,2],[1,2,1,1]],[[2,2,2,0],[2,1,3,1],[0,1,3,2],[1,2,1,1]],[[1,2,2,0],[2,1,3,1],[0,1,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,3,1],[0,1,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,3,1],[0,1,3,1],[1,3,2,1]],[[1,2,2,0],[2,1,3,1],[0,1,3,1],[2,2,2,1]],[[1,2,2,0],[2,1,3,1],[0,1,4,1],[1,2,2,1]],[[1,2,2,0],[2,1,4,1],[0,1,3,1],[1,2,2,1]],[[1,2,2,0],[3,1,3,1],[0,1,3,1],[1,2,2,1]],[[1,2,3,0],[2,1,3,1],[0,1,3,1],[1,2,2,1]],[[1,3,2,0],[2,1,3,1],[0,1,3,1],[1,2,2,1]],[[2,2,2,0],[2,1,3,1],[0,1,3,1],[1,2,2,1]],[[1,2,2,0],[2,1,3,1],[0,1,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,3,1],[0,1,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,1],[0,1,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,3,1],[0,1,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,3,1],[0,1,2,3],[1,2,2,1]],[[1,2,2,0],[2,1,3,1],[0,0,3,2],[1,2,2,2]],[[1,2,2,0],[2,1,3,1],[0,0,3,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,1],[0,0,3,3],[1,2,2,1]],[[0,3,2,1],[2,2,3,2],[1,3,0,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,2],[1,3,0,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,2],[1,3,0,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,3],[1,3,0,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,2],[1,3,0,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,2],[1,3,0,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,2],[1,3,0,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,3],[1,3,0,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,2],[1,3,0,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[1,3,0,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,2],[1,3,0,2],[0,2,0,1]],[[0,2,2,1],[2,2,3,3],[1,3,0,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,2],[1,3,0,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,2],[1,3,0,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,2],[1,3,0,2],[0,2,1,0]],[[0,2,2,1],[2,2,3,3],[1,3,0,2],[0,2,1,0]],[[0,3,2,1],[2,2,3,2],[1,3,0,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,2],[1,3,0,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,2],[1,3,0,2],[1,0,1,1]],[[0,2,2,1],[2,2,3,3],[1,3,0,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,2],[1,3,0,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,2],[1,3,0,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,2],[1,3,0,2],[1,0,2,0]],[[0,2,2,1],[2,2,3,3],[1,3,0,2],[1,0,2,0]],[[0,3,2,1],[2,2,3,2],[1,3,0,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,2],[1,3,0,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,2],[1,3,0,2],[1,1,0,1]],[[0,2,2,1],[2,2,3,3],[1,3,0,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,2],[1,3,0,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,2],[1,3,0,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,2],[1,3,0,2],[1,1,1,0]],[[0,2,2,1],[2,2,3,3],[1,3,0,2],[1,1,1,0]],[[0,3,2,1],[2,2,3,2],[1,3,0,2],[1,2,0,0]],[[0,2,3,1],[2,2,3,2],[1,3,0,2],[1,2,0,0]],[[0,2,2,2],[2,2,3,2],[1,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,2,3,3],[1,3,0,2],[1,2,0,0]],[[0,3,2,1],[2,2,3,2],[1,3,1,0],[0,2,2,0]],[[0,2,3,1],[2,2,3,2],[1,3,1,0],[0,2,2,0]],[[0,2,2,2],[2,2,3,2],[1,3,1,0],[0,2,2,0]],[[0,2,2,1],[2,2,4,2],[1,3,1,0],[0,2,2,0]],[[0,3,2,1],[2,2,3,2],[1,3,1,0],[1,1,2,0]],[[0,2,3,1],[2,2,3,2],[1,3,1,0],[1,1,2,0]],[[0,2,2,2],[2,2,3,2],[1,3,1,0],[1,1,2,0]],[[0,2,2,1],[2,2,4,2],[1,3,1,0],[1,1,2,0]],[[1,2,2,0],[2,1,3,0],[2,1,3,2],[1,0,2,2]],[[1,2,2,0],[2,1,3,0],[2,1,3,2],[1,0,3,1]],[[1,2,2,0],[2,1,3,0],[2,1,4,2],[1,0,2,1]],[[1,2,2,0],[2,1,3,0],[2,1,3,2],[0,1,2,2]],[[1,2,2,0],[2,1,3,0],[2,1,3,2],[0,1,3,1]],[[1,2,2,0],[2,1,3,0],[2,1,4,2],[0,1,2,1]],[[1,2,2,0],[2,1,3,0],[2,0,3,2],[1,1,2,2]],[[1,2,2,0],[2,1,3,0],[2,0,3,2],[1,1,3,1]],[[1,2,2,0],[2,1,3,0],[2,0,4,2],[1,1,2,1]],[[1,2,2,0],[2,1,3,0],[2,0,3,2],[0,2,2,2]],[[1,2,2,0],[2,1,3,0],[2,0,3,2],[0,2,3,1]],[[1,2,2,0],[2,1,3,0],[2,0,3,2],[0,3,2,1]],[[0,3,2,1],[2,2,3,2],[1,3,1,2],[0,0,1,1]],[[0,2,3,1],[2,2,3,2],[1,3,1,2],[0,0,1,1]],[[0,2,2,2],[2,2,3,2],[1,3,1,2],[0,0,1,1]],[[0,2,2,1],[2,2,3,3],[1,3,1,2],[0,0,1,1]],[[0,3,2,1],[2,2,3,2],[1,3,1,2],[0,0,2,0]],[[0,2,3,1],[2,2,3,2],[1,3,1,2],[0,0,2,0]],[[0,2,2,2],[2,2,3,2],[1,3,1,2],[0,0,2,0]],[[0,2,2,1],[2,2,3,3],[1,3,1,2],[0,0,2,0]],[[1,2,2,0],[2,1,3,0],[2,0,4,2],[0,2,2,1]],[[1,2,2,0],[2,1,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,2,0],[2,1,3,0],[1,2,3,2],[1,0,3,1]],[[1,2,2,0],[2,1,3,0],[1,2,4,2],[1,0,2,1]],[[1,2,2,0],[2,1,3,0],[1,2,3,2],[0,1,2,2]],[[1,2,2,0],[2,1,3,0],[1,2,3,2],[0,1,3,1]],[[1,2,2,0],[2,1,3,0],[1,2,4,2],[0,1,2,1]],[[1,2,2,0],[2,1,3,0],[1,1,3,2],[0,2,2,2]],[[1,2,2,0],[2,1,3,0],[1,1,3,2],[0,2,3,1]],[[1,2,2,0],[2,1,3,0],[1,1,3,2],[0,3,2,1]],[[1,2,2,0],[2,1,3,0],[1,1,4,2],[0,2,2,1]],[[1,2,2,0],[2,1,3,0],[1,0,3,2],[1,2,2,2]],[[1,2,2,0],[2,1,3,0],[1,0,3,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,0],[1,0,3,2],[1,3,2,1]],[[1,2,2,0],[2,1,3,0],[1,0,3,2],[2,2,2,1]],[[1,2,2,0],[2,1,3,0],[1,0,4,2],[1,2,2,1]],[[1,2,2,0],[2,1,3,0],[0,2,3,2],[1,1,2,2]],[[1,2,2,0],[2,1,3,0],[0,2,3,2],[1,1,3,1]],[[1,2,2,0],[2,1,3,0],[0,2,4,2],[1,1,2,1]],[[1,2,2,0],[2,1,3,0],[0,1,3,2],[1,2,2,2]],[[1,2,2,0],[2,1,3,0],[0,1,3,2],[1,2,3,1]],[[1,2,2,0],[2,1,3,0],[0,1,3,2],[1,3,2,1]],[[1,2,2,0],[2,1,3,0],[0,1,3,2],[2,2,2,1]],[[1,2,2,0],[2,1,3,0],[0,1,4,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,2],[1,3,2,0],[0,1,1,1]],[[0,2,3,1],[2,2,3,2],[1,3,2,0],[0,1,1,1]],[[0,2,2,2],[2,2,3,2],[1,3,2,0],[0,1,1,1]],[[0,2,2,1],[2,2,4,2],[1,3,2,0],[0,1,1,1]],[[0,3,2,1],[2,2,3,2],[1,3,2,0],[0,1,2,0]],[[0,2,3,1],[2,2,3,2],[1,3,2,0],[0,1,2,0]],[[0,2,2,2],[2,2,3,2],[1,3,2,0],[0,1,2,0]],[[0,2,2,1],[2,2,4,2],[1,3,2,0],[0,1,2,0]],[[0,3,2,1],[2,2,3,2],[1,3,2,0],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[1,3,2,0],[0,2,0,1]],[[0,2,2,2],[2,2,3,2],[1,3,2,0],[0,2,0,1]],[[0,2,2,1],[2,2,4,2],[1,3,2,0],[0,2,0,1]],[[0,3,2,1],[2,2,3,2],[1,3,2,0],[0,2,1,0]],[[0,2,3,1],[2,2,3,2],[1,3,2,0],[0,2,1,0]],[[0,2,2,2],[2,2,3,2],[1,3,2,0],[0,2,1,0]],[[0,2,2,1],[2,2,4,2],[1,3,2,0],[0,2,1,0]],[[0,3,2,1],[2,2,3,2],[1,3,2,0],[1,0,1,1]],[[0,2,3,1],[2,2,3,2],[1,3,2,0],[1,0,1,1]],[[0,2,2,2],[2,2,3,2],[1,3,2,0],[1,0,1,1]],[[0,2,2,1],[2,2,4,2],[1,3,2,0],[1,0,1,1]],[[0,3,2,1],[2,2,3,2],[1,3,2,0],[1,0,2,0]],[[0,2,3,1],[2,2,3,2],[1,3,2,0],[1,0,2,0]],[[0,2,2,2],[2,2,3,2],[1,3,2,0],[1,0,2,0]],[[0,2,2,1],[2,2,4,2],[1,3,2,0],[1,0,2,0]],[[0,3,2,1],[2,2,3,2],[1,3,2,0],[1,1,0,1]],[[0,2,3,1],[2,2,3,2],[1,3,2,0],[1,1,0,1]],[[0,2,2,2],[2,2,3,2],[1,3,2,0],[1,1,0,1]],[[0,2,2,1],[2,2,4,2],[1,3,2,0],[1,1,0,1]],[[0,3,2,1],[2,2,3,2],[1,3,2,0],[1,1,1,0]],[[0,2,3,1],[2,2,3,2],[1,3,2,0],[1,1,1,0]],[[0,2,2,2],[2,2,3,2],[1,3,2,0],[1,1,1,0]],[[0,2,2,1],[2,2,4,2],[1,3,2,0],[1,1,1,0]],[[0,3,2,1],[2,2,3,2],[1,3,2,0],[1,2,0,0]],[[0,2,3,1],[2,2,3,2],[1,3,2,0],[1,2,0,0]],[[0,2,2,2],[2,2,3,2],[1,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,2,4,2],[1,3,2,0],[1,2,0,0]],[[1,2,2,0],[2,1,2,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,0],[2,1,2,2],[2,4,3,1],[1,1,0,0]],[[1,2,2,0],[2,1,2,2],[3,3,3,1],[1,1,0,0]],[[1,2,2,0],[3,1,2,2],[2,3,3,1],[1,1,0,0]],[[1,2,3,0],[2,1,2,2],[2,3,3,1],[1,1,0,0]],[[1,3,2,0],[2,1,2,2],[2,3,3,1],[1,1,0,0]],[[2,2,2,0],[2,1,2,2],[2,3,3,1],[1,1,0,0]],[[1,2,2,0],[2,1,2,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,0],[2,1,2,2],[3,3,3,1],[0,2,0,0]],[[1,2,2,0],[3,1,2,2],[2,3,3,1],[0,2,0,0]],[[1,2,3,0],[2,1,2,2],[2,3,3,1],[0,2,0,0]],[[1,3,2,0],[2,1,2,2],[2,3,3,1],[0,2,0,0]],[[2,2,2,0],[2,1,2,2],[2,3,3,1],[0,2,0,0]],[[1,2,2,0],[2,1,2,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,0],[2,1,2,2],[2,4,3,0],[1,2,0,0]],[[1,2,2,0],[2,1,2,2],[3,3,3,0],[1,2,0,0]],[[1,2,2,0],[3,1,2,2],[2,3,3,0],[1,2,0,0]],[[1,2,3,0],[2,1,2,2],[2,3,3,0],[1,2,0,0]],[[1,3,2,0],[2,1,2,2],[2,3,3,0],[1,2,0,0]],[[2,2,2,0],[2,1,2,2],[2,3,3,0],[1,2,0,0]],[[0,3,2,1],[2,2,3,2],[1,3,2,2],[0,0,0,1]],[[0,2,3,1],[2,2,3,2],[1,3,2,2],[0,0,0,1]],[[0,2,2,2],[2,2,3,2],[1,3,2,2],[0,0,0,1]],[[0,2,2,1],[2,2,3,3],[1,3,2,2],[0,0,0,1]],[[1,2,2,0],[2,1,2,2],[2,3,3,0],[2,1,1,0]],[[1,2,2,0],[2,1,2,2],[2,4,3,0],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[3,3,3,0],[1,1,1,0]],[[1,2,2,0],[3,1,2,2],[2,3,3,0],[1,1,1,0]],[[1,2,3,0],[2,1,2,2],[2,3,3,0],[1,1,1,0]],[[1,3,2,0],[2,1,2,2],[2,3,3,0],[1,1,1,0]],[[2,2,2,0],[2,1,2,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[2,3,3,0],[2,0,2,0]],[[1,2,2,0],[2,1,2,2],[2,4,3,0],[1,0,2,0]],[[1,2,2,0],[2,1,2,2],[3,3,3,0],[1,0,2,0]],[[1,2,2,0],[3,1,2,2],[2,3,3,0],[1,0,2,0]],[[1,2,3,0],[2,1,2,2],[2,3,3,0],[1,0,2,0]],[[1,3,2,0],[2,1,2,2],[2,3,3,0],[1,0,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,3,0],[1,0,2,0]],[[1,2,2,0],[2,1,2,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,0],[2,1,2,2],[2,4,3,0],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[3,3,3,0],[0,2,1,0]],[[1,2,2,0],[3,1,2,2],[2,3,3,0],[0,2,1,0]],[[1,2,3,0],[2,1,2,2],[2,3,3,0],[0,2,1,0]],[[1,3,2,0],[2,1,2,2],[2,3,3,0],[0,2,1,0]],[[2,2,2,0],[2,1,2,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,4,3,0],[0,1,2,0]],[[1,2,2,0],[2,1,2,2],[3,3,3,0],[0,1,2,0]],[[1,2,2,0],[3,1,2,2],[2,3,3,0],[0,1,2,0]],[[1,2,3,0],[2,1,2,2],[2,3,3,0],[0,1,2,0]],[[1,3,2,0],[2,1,2,2],[2,3,3,0],[0,1,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,3,0],[0,1,2,0]],[[1,2,2,0],[2,1,2,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,0],[2,1,2,2],[2,4,2,1],[1,2,0,0]],[[1,2,2,0],[2,1,2,2],[3,3,2,1],[1,2,0,0]],[[1,2,2,0],[3,1,2,2],[2,3,2,1],[1,2,0,0]],[[1,2,3,0],[2,1,2,2],[2,3,2,1],[1,2,0,0]],[[1,3,2,0],[2,1,2,2],[2,3,2,1],[1,2,0,0]],[[2,2,2,0],[2,1,2,2],[2,3,2,1],[1,2,0,0]],[[1,2,2,0],[2,1,2,2],[2,3,2,1],[2,1,1,0]],[[1,2,2,0],[2,1,2,2],[2,4,2,1],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[3,3,2,1],[1,1,1,0]],[[1,2,2,0],[3,1,2,2],[2,3,2,1],[1,1,1,0]],[[1,2,3,0],[2,1,2,2],[2,3,2,1],[1,1,1,0]],[[1,3,2,0],[2,1,2,2],[2,3,2,1],[1,1,1,0]],[[0,3,2,1],[2,2,3,2],[1,3,3,0],[0,0,1,1]],[[0,2,3,1],[2,2,3,2],[1,3,3,0],[0,0,1,1]],[[0,2,2,2],[2,2,3,2],[1,3,3,0],[0,0,1,1]],[[0,2,2,1],[2,2,4,2],[1,3,3,0],[0,0,1,1]],[[0,3,2,1],[2,2,3,2],[1,3,3,0],[0,0,2,0]],[[0,2,3,1],[2,2,3,2],[1,3,3,0],[0,0,2,0]],[[0,2,2,2],[2,2,3,2],[1,3,3,0],[0,0,2,0]],[[0,2,2,1],[2,2,4,2],[1,3,3,0],[0,0,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[2,3,2,1],[2,1,0,1]],[[1,2,2,0],[2,1,2,2],[2,4,2,1],[1,1,0,1]],[[1,2,2,0],[2,1,2,2],[3,3,2,1],[1,1,0,1]],[[1,2,2,0],[3,1,2,2],[2,3,2,1],[1,1,0,1]],[[1,2,3,0],[2,1,2,2],[2,3,2,1],[1,1,0,1]],[[1,3,2,0],[2,1,2,2],[2,3,2,1],[1,1,0,1]],[[2,2,2,0],[2,1,2,2],[2,3,2,1],[1,1,0,1]],[[0,3,2,1],[2,2,3,2],[1,3,3,0],[0,2,0,0]],[[0,2,3,1],[2,2,3,2],[1,3,3,0],[0,2,0,0]],[[0,2,2,2],[2,2,3,2],[1,3,3,0],[0,2,0,0]],[[0,2,2,1],[2,2,4,2],[1,3,3,0],[0,2,0,0]],[[1,2,2,0],[2,1,2,2],[2,3,2,1],[2,0,2,0]],[[1,2,2,0],[2,1,2,2],[2,4,2,1],[1,0,2,0]],[[1,2,2,0],[2,1,2,2],[3,3,2,1],[1,0,2,0]],[[1,2,2,0],[3,1,2,2],[2,3,2,1],[1,0,2,0]],[[1,2,3,0],[2,1,2,2],[2,3,2,1],[1,0,2,0]],[[1,3,2,0],[2,1,2,2],[2,3,2,1],[1,0,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,0],[2,1,2,2],[2,3,2,1],[2,0,1,1]],[[1,2,2,0],[2,1,2,2],[2,4,2,1],[1,0,1,1]],[[1,2,2,0],[2,1,2,2],[3,3,2,1],[1,0,1,1]],[[1,2,2,0],[3,1,2,2],[2,3,2,1],[1,0,1,1]],[[1,2,3,0],[2,1,2,2],[2,3,2,1],[1,0,1,1]],[[1,3,2,0],[2,1,2,2],[2,3,2,1],[1,0,1,1]],[[2,2,2,0],[2,1,2,2],[2,3,2,1],[1,0,1,1]],[[0,3,2,1],[2,2,3,2],[1,3,3,0],[1,1,0,0]],[[0,2,3,1],[2,2,3,2],[1,3,3,0],[1,1,0,0]],[[0,2,2,2],[2,2,3,2],[1,3,3,0],[1,1,0,0]],[[0,2,2,1],[2,2,4,2],[1,3,3,0],[1,1,0,0]],[[1,2,2,0],[2,1,2,2],[2,3,2,1],[0,3,1,0]],[[1,2,2,0],[2,1,2,2],[2,4,2,1],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[3,3,2,1],[0,2,1,0]],[[1,2,2,0],[3,1,2,2],[2,3,2,1],[0,2,1,0]],[[1,2,3,0],[2,1,2,2],[2,3,2,1],[0,2,1,0]],[[1,3,2,0],[2,1,2,2],[2,3,2,1],[0,2,1,0]],[[2,2,2,0],[2,1,2,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,3,2,1],[0,3,0,1]],[[1,2,2,0],[2,1,2,2],[2,4,2,1],[0,2,0,1]],[[1,2,2,0],[2,1,2,2],[3,3,2,1],[0,2,0,1]],[[1,2,2,0],[3,1,2,2],[2,3,2,1],[0,2,0,1]],[[1,2,3,0],[2,1,2,2],[2,3,2,1],[0,2,0,1]],[[1,3,2,0],[2,1,2,2],[2,3,2,1],[0,2,0,1]],[[2,2,2,0],[2,1,2,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,0],[2,1,2,2],[2,4,2,1],[0,1,2,0]],[[1,2,2,0],[2,1,2,2],[3,3,2,1],[0,1,2,0]],[[1,2,2,0],[3,1,2,2],[2,3,2,1],[0,1,2,0]],[[1,2,3,0],[2,1,2,2],[2,3,2,1],[0,1,2,0]],[[1,3,2,0],[2,1,2,2],[2,3,2,1],[0,1,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,2,1],[0,1,2,0]],[[1,2,2,0],[2,1,2,2],[2,4,2,1],[0,1,1,1]],[[1,2,2,0],[2,1,2,2],[3,3,2,1],[0,1,1,1]],[[1,2,2,0],[3,1,2,2],[2,3,2,1],[0,1,1,1]],[[1,2,3,0],[2,1,2,2],[2,3,2,1],[0,1,1,1]],[[1,3,2,0],[2,1,2,2],[2,3,2,1],[0,1,1,1]],[[2,2,2,0],[2,1,2,2],[2,3,2,1],[0,1,1,1]],[[1,2,2,0],[2,1,2,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,0],[2,1,2,2],[2,4,2,0],[1,2,0,1]],[[1,2,2,0],[2,1,2,2],[3,3,2,0],[1,2,0,1]],[[1,2,2,0],[3,1,2,2],[2,3,2,0],[1,2,0,1]],[[1,2,3,0],[2,1,2,2],[2,3,2,0],[1,2,0,1]],[[1,3,2,0],[2,1,2,2],[2,3,2,0],[1,2,0,1]],[[2,2,2,0],[2,1,2,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,0],[2,1,2,2],[2,3,2,0],[2,1,1,1]],[[1,2,2,0],[2,1,2,2],[2,4,2,0],[1,1,1,1]],[[1,2,2,0],[2,1,2,2],[3,3,2,0],[1,1,1,1]],[[1,2,2,0],[3,1,2,2],[2,3,2,0],[1,1,1,1]],[[1,2,3,0],[2,1,2,2],[2,3,2,0],[1,1,1,1]],[[1,3,2,0],[2,1,2,2],[2,3,2,0],[1,1,1,1]],[[2,2,2,0],[2,1,2,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,0],[2,1,2,2],[2,3,2,0],[2,0,2,1]],[[1,2,2,0],[2,1,2,2],[2,4,2,0],[1,0,2,1]],[[1,2,2,0],[2,1,2,2],[3,3,2,0],[1,0,2,1]],[[1,2,2,0],[3,1,2,2],[2,3,2,0],[1,0,2,1]],[[1,2,3,0],[2,1,2,2],[2,3,2,0],[1,0,2,1]],[[1,3,2,0],[2,1,2,2],[2,3,2,0],[1,0,2,1]],[[2,2,2,0],[2,1,2,2],[2,3,2,0],[1,0,2,1]],[[1,2,2,0],[2,1,2,2],[2,3,2,0],[0,3,1,1]],[[1,2,2,0],[2,1,2,2],[2,4,2,0],[0,2,1,1]],[[1,2,2,0],[2,1,2,2],[3,3,2,0],[0,2,1,1]],[[1,2,2,0],[3,1,2,2],[2,3,2,0],[0,2,1,1]],[[1,2,3,0],[2,1,2,2],[2,3,2,0],[0,2,1,1]],[[1,3,2,0],[2,1,2,2],[2,3,2,0],[0,2,1,1]],[[2,2,2,0],[2,1,2,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,0],[2,1,2,2],[2,4,2,0],[0,1,2,1]],[[1,2,2,0],[2,1,2,2],[3,3,2,0],[0,1,2,1]],[[1,2,2,0],[3,1,2,2],[2,3,2,0],[0,1,2,1]],[[1,2,3,0],[2,1,2,2],[2,3,2,0],[0,1,2,1]],[[1,3,2,0],[2,1,2,2],[2,3,2,0],[0,1,2,1]],[[2,2,2,0],[2,1,2,2],[2,3,2,0],[0,1,2,1]],[[1,2,2,0],[2,1,2,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[2,1,2,2],[2,4,1,2],[1,2,0,0]],[[1,2,2,0],[2,1,2,2],[3,3,1,2],[1,2,0,0]],[[1,2,2,0],[3,1,2,2],[2,3,1,2],[1,2,0,0]],[[1,2,3,0],[2,1,2,2],[2,3,1,2],[1,2,0,0]],[[1,3,2,0],[2,1,2,2],[2,3,1,2],[1,2,0,0]],[[2,2,2,0],[2,1,2,2],[2,3,1,2],[1,2,0,0]],[[1,2,2,0],[2,1,2,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,0],[2,1,2,2],[2,4,1,2],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[3,3,1,2],[1,1,1,0]],[[1,2,2,0],[3,1,2,2],[2,3,1,2],[1,1,1,0]],[[1,2,3,0],[2,1,2,2],[2,3,1,2],[1,1,1,0]],[[1,3,2,0],[2,1,2,2],[2,3,1,2],[1,1,1,0]],[[2,2,2,0],[2,1,2,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[2,3,1,2],[2,1,0,1]],[[1,2,2,0],[2,1,2,2],[2,4,1,2],[1,1,0,1]],[[1,2,2,0],[2,1,2,2],[3,3,1,2],[1,1,0,1]],[[1,2,2,0],[3,1,2,2],[2,3,1,2],[1,1,0,1]],[[1,2,3,0],[2,1,2,2],[2,3,1,2],[1,1,0,1]],[[1,3,2,0],[2,1,2,2],[2,3,1,2],[1,1,0,1]],[[2,2,2,0],[2,1,2,2],[2,3,1,2],[1,1,0,1]],[[1,2,2,0],[2,1,2,2],[2,3,1,2],[2,0,2,0]],[[1,2,2,0],[2,1,2,2],[2,4,1,2],[1,0,2,0]],[[1,2,2,0],[2,1,2,2],[3,3,1,2],[1,0,2,0]],[[1,2,2,0],[3,1,2,2],[2,3,1,2],[1,0,2,0]],[[1,2,3,0],[2,1,2,2],[2,3,1,2],[1,0,2,0]],[[1,3,2,0],[2,1,2,2],[2,3,1,2],[1,0,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,0],[2,1,2,2],[2,3,1,2],[2,0,1,1]],[[1,2,2,0],[2,1,2,2],[2,4,1,2],[1,0,1,1]],[[1,2,2,0],[2,1,2,2],[3,3,1,2],[1,0,1,1]],[[1,2,2,0],[3,1,2,2],[2,3,1,2],[1,0,1,1]],[[1,2,3,0],[2,1,2,2],[2,3,1,2],[1,0,1,1]],[[1,3,2,0],[2,1,2,2],[2,3,1,2],[1,0,1,1]],[[2,2,2,0],[2,1,2,2],[2,3,1,2],[1,0,1,1]],[[1,2,2,0],[2,1,2,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,0],[2,1,2,2],[2,4,1,2],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[3,3,1,2],[0,2,1,0]],[[1,2,2,0],[3,1,2,2],[2,3,1,2],[0,2,1,0]],[[1,2,3,0],[2,1,2,2],[2,3,1,2],[0,2,1,0]],[[1,3,2,0],[2,1,2,2],[2,3,1,2],[0,2,1,0]],[[2,2,2,0],[2,1,2,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,3,1,2],[0,3,0,1]],[[1,2,2,0],[2,1,2,2],[2,4,1,2],[0,2,0,1]],[[1,2,2,0],[2,1,2,2],[3,3,1,2],[0,2,0,1]],[[1,2,2,0],[3,1,2,2],[2,3,1,2],[0,2,0,1]],[[1,2,3,0],[2,1,2,2],[2,3,1,2],[0,2,0,1]],[[1,3,2,0],[2,1,2,2],[2,3,1,2],[0,2,0,1]],[[2,2,2,0],[2,1,2,2],[2,3,1,2],[0,2,0,1]],[[1,2,2,0],[2,1,2,2],[2,4,1,2],[0,1,2,0]],[[1,2,2,0],[2,1,2,2],[3,3,1,2],[0,1,2,0]],[[1,2,2,0],[3,1,2,2],[2,3,1,2],[0,1,2,0]],[[1,2,3,0],[2,1,2,2],[2,3,1,2],[0,1,2,0]],[[1,3,2,0],[2,1,2,2],[2,3,1,2],[0,1,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,0],[2,1,2,2],[2,4,1,2],[0,1,1,1]],[[1,2,2,0],[2,1,2,2],[3,3,1,2],[0,1,1,1]],[[1,2,2,0],[3,1,2,2],[2,3,1,2],[0,1,1,1]],[[1,2,3,0],[2,1,2,2],[2,3,1,2],[0,1,1,1]],[[1,3,2,0],[2,1,2,2],[2,3,1,2],[0,1,1,1]],[[2,2,2,0],[2,1,2,2],[2,3,1,2],[0,1,1,1]],[[1,2,2,0],[2,1,2,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,0],[2,1,2,2],[2,4,1,1],[1,1,2,0]],[[1,2,2,0],[2,1,2,2],[3,3,1,1],[1,1,2,0]],[[1,2,2,0],[3,1,2,2],[2,3,1,1],[1,1,2,0]],[[1,2,3,0],[2,1,2,2],[2,3,1,1],[1,1,2,0]],[[1,3,2,0],[2,1,2,2],[2,3,1,1],[1,1,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,1,1],[1,1,2,0]],[[1,2,2,0],[2,1,2,2],[2,3,1,1],[0,2,3,0]],[[1,2,2,0],[2,1,2,2],[2,3,1,1],[0,3,2,0]],[[1,2,2,0],[2,1,2,2],[2,4,1,1],[0,2,2,0]],[[1,2,2,0],[2,1,2,2],[3,3,1,1],[0,2,2,0]],[[1,2,2,0],[3,1,2,2],[2,3,1,1],[0,2,2,0]],[[1,2,3,0],[2,1,2,2],[2,3,1,1],[0,2,2,0]],[[1,3,2,0],[2,1,2,2],[2,3,1,1],[0,2,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,0],[2,1,2,2],[2,3,1,0],[2,1,2,1]],[[1,2,2,0],[2,1,2,2],[2,4,1,0],[1,1,2,1]],[[1,2,2,0],[2,1,2,2],[3,3,1,0],[1,1,2,1]],[[1,2,2,0],[3,1,2,2],[2,3,1,0],[1,1,2,1]],[[1,2,3,0],[2,1,2,2],[2,3,1,0],[1,1,2,1]],[[1,3,2,0],[2,1,2,2],[2,3,1,0],[1,1,2,1]],[[2,2,2,0],[2,1,2,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,0],[2,1,2,2],[2,3,1,0],[0,2,2,2]],[[1,2,2,0],[2,1,2,2],[2,3,1,0],[0,2,3,1]],[[1,2,2,0],[2,1,2,2],[2,3,1,0],[0,3,2,1]],[[1,2,2,0],[2,1,2,2],[2,4,1,0],[0,2,2,1]],[[1,2,2,0],[2,1,2,2],[3,3,1,0],[0,2,2,1]],[[1,2,2,0],[3,1,2,2],[2,3,1,0],[0,2,2,1]],[[1,2,3,0],[2,1,2,2],[2,3,1,0],[0,2,2,1]],[[1,3,2,0],[2,1,2,2],[2,3,1,0],[0,2,2,1]],[[2,2,2,0],[2,1,2,2],[2,3,1,0],[0,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,0],[2,1,2,2],[2,4,0,2],[1,1,2,0]],[[1,2,2,0],[2,1,2,2],[3,3,0,2],[1,1,2,0]],[[1,2,2,0],[3,1,2,2],[2,3,0,2],[1,1,2,0]],[[1,2,3,0],[2,1,2,2],[2,3,0,2],[1,1,2,0]],[[1,3,2,0],[2,1,2,2],[2,3,0,2],[1,1,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,0,2],[1,1,2,0]],[[1,2,2,0],[2,1,2,2],[2,3,0,2],[2,1,1,1]],[[1,2,2,0],[2,1,2,2],[2,4,0,2],[1,1,1,1]],[[1,2,2,0],[2,1,2,2],[3,3,0,2],[1,1,1,1]],[[1,2,2,0],[3,1,2,2],[2,3,0,2],[1,1,1,1]],[[1,2,3,0],[2,1,2,2],[2,3,0,2],[1,1,1,1]],[[1,3,2,0],[2,1,2,2],[2,3,0,2],[1,1,1,1]],[[2,2,2,0],[2,1,2,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,0],[2,1,2,2],[2,3,0,2],[2,0,2,1]],[[1,2,2,0],[2,1,2,2],[2,4,0,2],[1,0,2,1]],[[1,2,2,0],[2,1,2,2],[3,3,0,2],[1,0,2,1]],[[1,2,2,0],[3,1,2,2],[2,3,0,2],[1,0,2,1]],[[1,2,3,0],[2,1,2,2],[2,3,0,2],[1,0,2,1]],[[1,3,2,0],[2,1,2,2],[2,3,0,2],[1,0,2,1]],[[2,2,2,0],[2,1,2,2],[2,3,0,2],[1,0,2,1]],[[1,2,2,0],[2,1,2,2],[2,3,0,2],[0,2,3,0]],[[1,2,2,0],[2,1,2,2],[2,3,0,2],[0,3,2,0]],[[1,2,2,0],[2,1,2,2],[2,4,0,2],[0,2,2,0]],[[1,2,2,0],[2,1,2,2],[3,3,0,2],[0,2,2,0]],[[1,2,2,0],[3,1,2,2],[2,3,0,2],[0,2,2,0]],[[1,2,3,0],[2,1,2,2],[2,3,0,2],[0,2,2,0]],[[1,3,2,0],[2,1,2,2],[2,3,0,2],[0,2,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,0],[2,1,2,2],[2,3,0,2],[0,3,1,1]],[[1,2,2,0],[2,1,2,2],[2,4,0,2],[0,2,1,1]],[[1,2,2,0],[2,1,2,2],[3,3,0,2],[0,2,1,1]],[[1,2,2,0],[3,1,2,2],[2,3,0,2],[0,2,1,1]],[[1,2,3,0],[2,1,2,2],[2,3,0,2],[0,2,1,1]],[[1,3,2,0],[2,1,2,2],[2,3,0,2],[0,2,1,1]],[[2,2,2,0],[2,1,2,2],[2,3,0,2],[0,2,1,1]],[[1,2,2,0],[2,1,2,2],[2,4,0,2],[0,1,2,1]],[[1,2,2,0],[2,1,2,2],[3,3,0,2],[0,1,2,1]],[[1,2,2,0],[3,1,2,2],[2,3,0,2],[0,1,2,1]],[[1,2,3,0],[2,1,2,2],[2,3,0,2],[0,1,2,1]],[[1,3,2,0],[2,1,2,2],[2,3,0,2],[0,1,2,1]],[[2,2,2,0],[2,1,2,2],[2,3,0,2],[0,1,2,1]],[[1,2,2,0],[2,1,2,2],[2,3,0,1],[1,3,2,0]],[[1,2,2,0],[2,1,2,2],[2,3,0,1],[2,2,2,0]],[[1,2,2,0],[2,1,2,2],[3,3,0,1],[1,2,2,0]],[[1,2,2,0],[3,1,2,2],[2,3,0,1],[1,2,2,0]],[[1,2,3,0],[2,1,2,2],[2,3,0,1],[1,2,2,0]],[[1,3,2,0],[2,1,2,2],[2,3,0,1],[1,2,2,0]],[[2,2,2,0],[2,1,2,2],[2,3,0,1],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[2,3,0,1],[2,1,2,1]],[[1,2,2,0],[2,1,2,2],[2,4,0,1],[1,1,2,1]],[[1,2,2,0],[2,1,2,2],[3,3,0,1],[1,1,2,1]],[[1,2,2,0],[3,1,2,2],[2,3,0,1],[1,1,2,1]],[[1,2,3,0],[2,1,2,2],[2,3,0,1],[1,1,2,1]],[[1,3,2,0],[2,1,2,2],[2,3,0,1],[1,1,2,1]],[[2,2,2,0],[2,1,2,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,0],[2,1,2,2],[2,3,0,1],[0,2,2,2]],[[1,2,2,0],[2,1,2,2],[2,3,0,1],[0,2,3,1]],[[1,2,2,0],[2,1,2,2],[2,3,0,1],[0,3,2,1]],[[1,2,2,0],[2,1,2,2],[2,4,0,1],[0,2,2,1]],[[1,2,2,0],[2,1,2,2],[3,3,0,1],[0,2,2,1]],[[1,2,2,0],[3,1,2,2],[2,3,0,1],[0,2,2,1]],[[1,2,3,0],[2,1,2,2],[2,3,0,1],[0,2,2,1]],[[1,3,2,0],[2,1,2,2],[2,3,0,1],[0,2,2,1]],[[2,2,2,0],[2,1,2,2],[2,3,0,1],[0,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,3,0,0],[1,3,2,1]],[[1,2,2,0],[2,1,2,2],[2,3,0,0],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[3,3,0,0],[1,2,2,1]],[[1,2,2,0],[3,1,2,2],[2,3,0,0],[1,2,2,1]],[[1,2,3,0],[2,1,2,2],[2,3,0,0],[1,2,2,1]],[[1,3,2,0],[2,1,2,2],[2,3,0,0],[1,2,2,1]],[[2,2,2,0],[2,1,2,2],[2,3,0,0],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,2,3,0],[1,3,1,0]],[[1,2,2,0],[2,1,2,2],[2,2,3,0],[2,2,1,0]],[[1,2,2,0],[2,1,2,2],[3,2,3,0],[1,2,1,0]],[[1,2,2,0],[3,1,2,2],[2,2,3,0],[1,2,1,0]],[[1,2,3,0],[2,1,2,2],[2,2,3,0],[1,2,1,0]],[[1,3,2,0],[2,1,2,2],[2,2,3,0],[1,2,1,0]],[[2,2,2,0],[2,1,2,2],[2,2,3,0],[1,2,1,0]],[[0,3,2,1],[2,2,3,2],[2,0,0,1],[1,2,2,1]],[[0,2,3,1],[2,2,3,2],[2,0,0,1],[1,2,2,1]],[[0,2,2,2],[2,2,3,2],[2,0,0,1],[1,2,2,1]],[[0,2,2,1],[2,2,3,3],[2,0,0,1],[1,2,2,1]],[[0,3,2,1],[2,2,3,2],[2,0,0,2],[0,2,2,1]],[[0,2,3,1],[2,2,3,2],[2,0,0,2],[0,2,2,1]],[[0,2,2,2],[2,2,3,2],[2,0,0,2],[0,2,2,1]],[[0,2,2,1],[2,2,3,3],[2,0,0,2],[0,2,2,1]],[[0,3,2,1],[2,2,3,2],[2,0,0,2],[1,1,2,1]],[[0,2,3,1],[2,2,3,2],[2,0,0,2],[1,1,2,1]],[[0,2,2,2],[2,2,3,2],[2,0,0,2],[1,1,2,1]],[[0,2,2,1],[2,2,3,3],[2,0,0,2],[1,1,2,1]],[[0,3,2,1],[2,2,3,2],[2,0,0,2],[1,2,1,1]],[[0,2,3,1],[2,2,3,2],[2,0,0,2],[1,2,1,1]],[[0,2,2,2],[2,2,3,2],[2,0,0,2],[1,2,1,1]],[[0,2,2,1],[2,2,3,3],[2,0,0,2],[1,2,1,1]],[[0,3,2,1],[2,2,3,2],[2,0,0,2],[1,2,2,0]],[[0,2,3,1],[2,2,3,2],[2,0,0,2],[1,2,2,0]],[[0,2,2,2],[2,2,3,2],[2,0,0,2],[1,2,2,0]],[[0,2,2,1],[2,2,3,3],[2,0,0,2],[1,2,2,0]],[[0,3,2,1],[2,2,3,2],[2,0,1,2],[0,2,1,1]],[[0,2,3,1],[2,2,3,2],[2,0,1,2],[0,2,1,1]],[[0,2,2,2],[2,2,3,2],[2,0,1,2],[0,2,1,1]],[[0,2,2,1],[2,2,3,3],[2,0,1,2],[0,2,1,1]],[[0,3,2,1],[2,2,3,2],[2,0,1,2],[0,2,2,0]],[[0,2,3,1],[2,2,3,2],[2,0,1,2],[0,2,2,0]],[[0,2,2,2],[2,2,3,2],[2,0,1,2],[0,2,2,0]],[[0,2,2,1],[2,2,3,3],[2,0,1,2],[0,2,2,0]],[[0,3,2,1],[2,2,3,2],[2,0,1,2],[1,1,1,1]],[[0,2,3,1],[2,2,3,2],[2,0,1,2],[1,1,1,1]],[[0,2,2,2],[2,2,3,2],[2,0,1,2],[1,1,1,1]],[[0,2,2,1],[2,2,3,3],[2,0,1,2],[1,1,1,1]],[[0,3,2,1],[2,2,3,2],[2,0,1,2],[1,1,2,0]],[[0,2,3,1],[2,2,3,2],[2,0,1,2],[1,1,2,0]],[[0,2,2,2],[2,2,3,2],[2,0,1,2],[1,1,2,0]],[[0,2,2,1],[2,2,3,3],[2,0,1,2],[1,1,2,0]],[[0,3,2,1],[2,2,3,2],[2,0,1,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,2],[2,0,1,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,2],[2,0,1,2],[1,2,0,1]],[[0,2,2,1],[2,2,3,3],[2,0,1,2],[1,2,0,1]],[[0,3,2,1],[2,2,3,2],[2,0,1,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,2],[2,0,1,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,2],[2,0,1,2],[1,2,1,0]],[[0,2,2,1],[2,2,3,3],[2,0,1,2],[1,2,1,0]],[[0,3,2,1],[2,2,3,2],[2,0,2,0],[1,2,2,0]],[[0,2,3,1],[2,2,3,2],[2,0,2,0],[1,2,2,0]],[[0,2,2,2],[2,2,3,2],[2,0,2,0],[1,2,2,0]],[[0,2,2,1],[2,2,4,2],[2,0,2,0],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,0],[2,1,2,2],[2,2,2,1],[2,2,1,0]],[[1,2,2,0],[2,1,2,2],[3,2,2,1],[1,2,1,0]],[[1,2,2,0],[3,1,2,2],[2,2,2,1],[1,2,1,0]],[[1,2,3,0],[2,1,2,2],[2,2,2,1],[1,2,1,0]],[[1,3,2,0],[2,1,2,2],[2,2,2,1],[1,2,1,0]],[[2,2,2,0],[2,1,2,2],[2,2,2,1],[1,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,2,2,1],[1,3,0,1]],[[1,2,2,0],[2,1,2,2],[2,2,2,1],[2,2,0,1]],[[1,2,2,0],[2,1,2,2],[3,2,2,1],[1,2,0,1]],[[1,2,2,0],[3,1,2,2],[2,2,2,1],[1,2,0,1]],[[1,2,3,0],[2,1,2,2],[2,2,2,1],[1,2,0,1]],[[1,3,2,0],[2,1,2,2],[2,2,2,1],[1,2,0,1]],[[2,2,2,0],[2,1,2,2],[2,2,2,1],[1,2,0,1]],[[1,2,2,0],[2,1,2,2],[2,2,2,0],[1,3,1,1]],[[1,2,2,0],[2,1,2,2],[2,2,2,0],[2,2,1,1]],[[1,2,2,0],[2,1,2,2],[3,2,2,0],[1,2,1,1]],[[1,2,2,0],[3,1,2,2],[2,2,2,0],[1,2,1,1]],[[1,2,3,0],[2,1,2,2],[2,2,2,0],[1,2,1,1]],[[1,3,2,0],[2,1,2,2],[2,2,2,0],[1,2,1,1]],[[2,2,2,0],[2,1,2,2],[2,2,2,0],[1,2,1,1]],[[1,2,2,0],[2,1,2,2],[2,2,1,2],[1,3,1,0]],[[0,3,2,1],[2,2,3,2],[2,0,3,0],[0,2,1,1]],[[0,2,3,1],[2,2,3,2],[2,0,3,0],[0,2,1,1]],[[0,2,2,2],[2,2,3,2],[2,0,3,0],[0,2,1,1]],[[0,2,2,1],[2,2,4,2],[2,0,3,0],[0,2,1,1]],[[0,3,2,1],[2,2,3,2],[2,0,3,0],[0,2,2,0]],[[0,2,3,1],[2,2,3,2],[2,0,3,0],[0,2,2,0]],[[0,2,2,2],[2,2,3,2],[2,0,3,0],[0,2,2,0]],[[0,2,2,1],[2,2,4,2],[2,0,3,0],[0,2,2,0]],[[0,3,2,1],[2,2,3,2],[2,0,3,0],[1,1,1,1]],[[0,2,3,1],[2,2,3,2],[2,0,3,0],[1,1,1,1]],[[0,2,2,2],[2,2,3,2],[2,0,3,0],[1,1,1,1]],[[0,2,2,1],[2,2,4,2],[2,0,3,0],[1,1,1,1]],[[0,3,2,1],[2,2,3,2],[2,0,3,0],[1,1,2,0]],[[0,2,3,1],[2,2,3,2],[2,0,3,0],[1,1,2,0]],[[0,2,2,2],[2,2,3,2],[2,0,3,0],[1,1,2,0]],[[0,2,2,1],[2,2,4,2],[2,0,3,0],[1,1,2,0]],[[0,3,2,1],[2,2,3,2],[2,0,3,0],[1,2,0,1]],[[0,2,3,1],[2,2,3,2],[2,0,3,0],[1,2,0,1]],[[0,2,2,2],[2,2,3,2],[2,0,3,0],[1,2,0,1]],[[0,2,2,1],[2,2,4,2],[2,0,3,0],[1,2,0,1]],[[0,3,2,1],[2,2,3,2],[2,0,3,0],[1,2,1,0]],[[0,2,3,1],[2,2,3,2],[2,0,3,0],[1,2,1,0]],[[0,2,2,2],[2,2,3,2],[2,0,3,0],[1,2,1,0]],[[0,2,2,1],[2,2,4,2],[2,0,3,0],[1,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,2,1,2],[2,2,1,0]],[[1,2,2,0],[2,1,2,2],[3,2,1,2],[1,2,1,0]],[[1,2,2,0],[3,1,2,2],[2,2,1,2],[1,2,1,0]],[[1,2,3,0],[2,1,2,2],[2,2,1,2],[1,2,1,0]],[[1,3,2,0],[2,1,2,2],[2,2,1,2],[1,2,1,0]],[[2,2,2,0],[2,1,2,2],[2,2,1,2],[1,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,2,1,2],[1,3,0,1]],[[1,2,2,0],[2,1,2,2],[2,2,1,2],[2,2,0,1]],[[1,2,2,0],[2,1,2,2],[3,2,1,2],[1,2,0,1]],[[1,2,2,0],[3,1,2,2],[2,2,1,2],[1,2,0,1]],[[1,2,3,0],[2,1,2,2],[2,2,1,2],[1,2,0,1]],[[1,3,2,0],[2,1,2,2],[2,2,1,2],[1,2,0,1]],[[2,2,2,0],[2,1,2,2],[2,2,1,2],[1,2,0,1]],[[1,2,2,0],[2,1,2,2],[2,2,1,1],[1,2,3,0]],[[1,2,2,0],[2,1,2,2],[2,2,1,1],[1,3,2,0]],[[1,2,2,0],[2,1,2,2],[2,2,1,1],[2,2,2,0]],[[1,2,2,0],[2,1,2,2],[3,2,1,1],[1,2,2,0]],[[1,2,2,0],[3,1,2,2],[2,2,1,1],[1,2,2,0]],[[1,2,3,0],[2,1,2,2],[2,2,1,1],[1,2,2,0]],[[1,3,2,0],[2,1,2,2],[2,2,1,1],[1,2,2,0]],[[2,2,2,0],[2,1,2,2],[2,2,1,1],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[2,2,1,0],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[2,2,1,0],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[2,2,1,0],[1,3,2,1]],[[1,2,2,0],[2,1,2,2],[2,2,1,0],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[3,2,1,0],[1,2,2,1]],[[1,2,2,0],[3,1,2,2],[2,2,1,0],[1,2,2,1]],[[1,2,3,0],[2,1,2,2],[2,2,1,0],[1,2,2,1]],[[1,3,2,0],[2,1,2,2],[2,2,1,0],[1,2,2,1]],[[2,2,2,0],[2,1,2,2],[2,2,1,0],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,2,0,2],[1,2,3,0]],[[1,2,2,0],[2,1,2,2],[2,2,0,2],[1,3,2,0]],[[1,2,2,0],[2,1,2,2],[2,2,0,2],[2,2,2,0]],[[1,2,2,0],[2,1,2,2],[3,2,0,2],[1,2,2,0]],[[1,2,2,0],[3,1,2,2],[2,2,0,2],[1,2,2,0]],[[1,2,3,0],[2,1,2,2],[2,2,0,2],[1,2,2,0]],[[1,3,2,0],[2,1,2,2],[2,2,0,2],[1,2,2,0]],[[2,2,2,0],[2,1,2,2],[2,2,0,2],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[2,2,0,2],[1,3,1,1]],[[1,2,2,0],[2,1,2,2],[2,2,0,2],[2,2,1,1]],[[1,2,2,0],[2,1,2,2],[3,2,0,2],[1,2,1,1]],[[1,2,2,0],[3,1,2,2],[2,2,0,2],[1,2,1,1]],[[1,2,3,0],[2,1,2,2],[2,2,0,2],[1,2,1,1]],[[1,3,2,0],[2,1,2,2],[2,2,0,2],[1,2,1,1]],[[2,2,2,0],[2,1,2,2],[2,2,0,2],[1,2,1,1]],[[1,2,2,0],[2,1,2,2],[2,2,0,1],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[2,2,0,1],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[2,2,0,1],[1,3,2,1]],[[1,2,2,0],[2,1,2,2],[2,2,0,1],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[3,2,0,1],[1,2,2,1]],[[1,2,2,0],[3,1,2,2],[2,2,0,1],[1,2,2,1]],[[1,2,3,0],[2,1,2,2],[2,2,0,1],[1,2,2,1]],[[1,3,2,0],[2,1,2,2],[2,2,0,1],[1,2,2,1]],[[2,2,2,0],[2,1,2,2],[2,2,0,1],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[2,1,4,2],[1,1,1,0]],[[1,2,2,0],[2,1,2,3],[2,1,3,2],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[2,1,3,2],[1,1,0,2]],[[1,2,2,0],[2,1,2,2],[2,1,3,3],[1,1,0,1]],[[1,2,2,0],[2,1,2,2],[2,1,4,2],[1,1,0,1]],[[1,2,2,0],[2,1,2,3],[2,1,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,2,2],[2,1,3,2],[1,0,3,0]],[[1,2,2,0],[2,1,2,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,0],[2,1,2,2],[2,1,4,2],[1,0,2,0]],[[1,2,2,0],[2,1,2,3],[2,1,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,2,2],[2,1,3,2],[1,0,1,2]],[[1,2,2,0],[2,1,2,2],[2,1,3,3],[1,0,1,1]],[[1,2,2,0],[2,1,2,2],[2,1,4,2],[1,0,1,1]],[[1,2,2,0],[2,1,2,3],[2,1,3,2],[1,0,1,1]],[[1,2,2,0],[2,1,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,1,4,2],[0,2,1,0]],[[1,2,2,0],[2,1,2,3],[2,1,3,2],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,1,3,2],[0,2,0,2]],[[1,2,2,0],[2,1,2,2],[2,1,3,3],[0,2,0,1]],[[1,2,2,0],[2,1,2,2],[2,1,4,2],[0,2,0,1]],[[1,2,2,0],[2,1,2,3],[2,1,3,2],[0,2,0,1]],[[1,2,2,0],[2,1,2,2],[2,1,3,2],[0,1,3,0]],[[1,2,2,0],[2,1,2,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,0],[2,1,2,2],[2,1,4,2],[0,1,2,0]],[[1,2,2,0],[2,1,2,3],[2,1,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,2,2],[2,1,3,2],[0,1,1,2]],[[1,2,2,0],[2,1,2,2],[2,1,3,3],[0,1,1,1]],[[1,2,2,0],[2,1,2,2],[2,1,4,2],[0,1,1,1]],[[1,2,2,0],[2,1,2,3],[2,1,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,2,2],[2,1,3,2],[0,0,2,2]],[[1,2,2,0],[2,1,2,2],[2,1,3,3],[0,0,2,1]],[[1,2,2,0],[2,1,2,2],[2,1,4,2],[0,0,2,1]],[[1,2,2,0],[2,1,2,3],[2,1,3,2],[0,0,2,1]],[[1,2,2,0],[2,1,2,2],[2,1,3,1],[1,0,2,2]],[[1,2,2,0],[2,1,2,2],[2,1,3,1],[1,0,3,1]],[[1,2,2,0],[2,1,2,2],[2,1,4,1],[1,0,2,1]],[[1,2,2,0],[2,1,2,2],[2,1,3,1],[0,1,2,2]],[[1,2,2,0],[2,1,2,2],[2,1,3,1],[0,1,3,1]],[[1,2,2,0],[2,1,2,2],[2,1,4,1],[0,1,2,1]],[[0,3,2,1],[2,2,3,2],[2,1,0,2],[0,1,2,1]],[[0,2,3,1],[2,2,3,2],[2,1,0,2],[0,1,2,1]],[[0,2,2,2],[2,2,3,2],[2,1,0,2],[0,1,2,1]],[[0,2,2,1],[2,2,3,3],[2,1,0,2],[0,1,2,1]],[[0,3,2,1],[2,2,3,2],[2,1,0,2],[1,0,2,1]],[[0,2,3,1],[2,2,3,2],[2,1,0,2],[1,0,2,1]],[[0,2,2,2],[2,2,3,2],[2,1,0,2],[1,0,2,1]],[[0,2,2,1],[2,2,3,3],[2,1,0,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,2],[2,1,0,2],[1,2,0,1]],[[0,2,3,1],[2,2,3,2],[2,1,0,2],[1,2,0,1]],[[0,2,2,2],[2,2,3,2],[2,1,0,2],[1,2,0,1]],[[0,2,2,1],[2,2,3,3],[2,1,0,2],[1,2,0,1]],[[0,3,2,1],[2,2,3,2],[2,1,0,2],[1,2,1,0]],[[0,2,3,1],[2,2,3,2],[2,1,0,2],[1,2,1,0]],[[0,2,2,2],[2,2,3,2],[2,1,0,2],[1,2,1,0]],[[0,2,2,1],[2,2,3,3],[2,1,0,2],[1,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,0],[2,1,2,2],[2,1,2,2],[1,0,3,1]],[[1,2,2,0],[2,1,2,2],[2,1,2,3],[1,0,2,1]],[[1,2,2,0],[2,1,2,3],[2,1,2,2],[1,0,2,1]],[[0,3,2,1],[2,2,3,2],[2,1,1,0],[1,2,2,0]],[[0,2,3,1],[2,2,3,2],[2,1,1,0],[1,2,2,0]],[[0,2,2,2],[2,2,3,2],[2,1,1,0],[1,2,2,0]],[[0,2,2,1],[2,2,4,2],[2,1,1,0],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[2,1,2,2],[0,1,2,2]],[[1,2,2,0],[2,1,2,2],[2,1,2,2],[0,1,3,1]],[[0,3,2,1],[2,2,3,2],[2,1,1,2],[0,0,2,1]],[[0,2,3,1],[2,2,3,2],[2,1,1,2],[0,0,2,1]],[[0,2,2,2],[2,2,3,2],[2,1,1,2],[0,0,2,1]],[[0,2,2,1],[2,2,3,3],[2,1,1,2],[0,0,2,1]],[[0,3,2,1],[2,2,3,2],[2,1,1,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,2],[2,1,1,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,2],[2,1,1,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,3],[2,1,1,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,2],[2,1,1,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,2],[2,1,1,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,2],[2,1,1,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,3],[2,1,1,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,2],[2,1,1,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[2,1,1,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,2],[2,1,1,2],[0,2,0,1]],[[0,2,2,1],[2,2,3,3],[2,1,1,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,2],[2,1,1,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,2],[2,1,1,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,2],[2,1,1,2],[0,2,1,0]],[[0,2,2,1],[2,2,3,3],[2,1,1,2],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,1,2,3],[0,1,2,1]],[[1,2,2,0],[2,1,2,3],[2,1,2,2],[0,1,2,1]],[[0,3,2,1],[2,2,3,2],[2,1,1,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,2],[2,1,1,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,2],[2,1,1,2],[1,0,1,1]],[[0,2,2,1],[2,2,3,3],[2,1,1,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,2],[2,1,1,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,2],[2,1,1,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,2],[2,1,1,2],[1,0,2,0]],[[0,2,2,1],[2,2,3,3],[2,1,1,2],[1,0,2,0]],[[0,3,2,1],[2,2,3,2],[2,1,1,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,2],[2,1,1,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,2],[2,1,1,2],[1,1,0,1]],[[0,2,2,1],[2,2,3,3],[2,1,1,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,2],[2,1,1,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,2],[2,1,1,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,2],[2,1,1,2],[1,1,1,0]],[[0,2,2,1],[2,2,3,3],[2,1,1,2],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[2,1,0,2],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[2,1,0,2],[1,3,2,1]],[[1,2,2,0],[2,1,2,2],[2,1,0,2],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,1,0,3],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[3,1,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,2,3],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[3,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,3,0],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,0,4,2],[1,2,1,0]],[[1,2,2,0],[2,1,2,3],[2,0,3,2],[1,2,1,0]],[[0,3,2,1],[2,2,3,2],[2,1,2,0],[1,2,0,1]],[[0,2,3,1],[2,2,3,2],[2,1,2,0],[1,2,0,1]],[[0,2,2,2],[2,2,3,2],[2,1,2,0],[1,2,0,1]],[[0,2,2,1],[2,2,4,2],[2,1,2,0],[1,2,0,1]],[[0,3,2,1],[2,2,3,2],[2,1,2,0],[1,2,1,0]],[[0,2,3,1],[2,2,3,2],[2,1,2,0],[1,2,1,0]],[[0,2,2,2],[2,2,3,2],[2,1,2,0],[1,2,1,0]],[[0,2,2,1],[2,2,4,2],[2,1,2,0],[1,2,1,0]],[[1,2,2,0],[2,1,2,2],[2,0,3,2],[1,2,0,2]],[[1,2,2,0],[2,1,2,2],[2,0,3,3],[1,2,0,1]],[[1,2,2,0],[2,1,2,2],[2,0,4,2],[1,2,0,1]],[[1,2,2,0],[2,1,2,3],[2,0,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,2,2],[2,0,3,2],[1,1,3,0]],[[1,2,2,0],[2,1,2,2],[2,0,3,3],[1,1,2,0]],[[1,2,2,0],[2,1,2,2],[2,0,4,2],[1,1,2,0]],[[1,2,2,0],[2,1,2,3],[2,0,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,2,2],[2,0,3,2],[1,1,1,2]],[[1,2,2,0],[2,1,2,2],[2,0,3,3],[1,1,1,1]],[[1,2,2,0],[2,1,2,2],[2,0,4,2],[1,1,1,1]],[[1,2,2,0],[2,1,2,3],[2,0,3,2],[1,1,1,1]],[[0,3,2,1],[2,2,3,2],[2,1,2,2],[0,1,0,1]],[[0,2,3,1],[2,2,3,2],[2,1,2,2],[0,1,0,1]],[[0,2,2,2],[2,2,3,2],[2,1,2,2],[0,1,0,1]],[[0,2,2,1],[2,2,3,3],[2,1,2,2],[0,1,0,1]],[[1,2,2,0],[2,1,2,2],[2,0,3,2],[0,2,3,0]],[[1,2,2,0],[2,1,2,2],[2,0,3,2],[0,3,2,0]],[[1,2,2,0],[2,1,2,2],[2,0,3,3],[0,2,2,0]],[[1,2,2,0],[2,1,2,2],[2,0,4,2],[0,2,2,0]],[[1,2,2,0],[2,1,2,3],[2,0,3,2],[0,2,2,0]],[[1,2,2,0],[2,1,2,2],[2,0,3,2],[0,2,1,2]],[[1,2,2,0],[2,1,2,2],[2,0,3,3],[0,2,1,1]],[[1,2,2,0],[2,1,2,2],[2,0,4,2],[0,2,1,1]],[[1,2,2,0],[2,1,2,3],[2,0,3,2],[0,2,1,1]],[[1,2,2,0],[2,1,2,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,0],[2,1,2,2],[2,0,3,1],[1,3,2,0]],[[1,2,2,0],[2,1,2,2],[2,0,3,1],[2,2,2,0]],[[1,2,2,0],[2,1,2,2],[2,0,4,1],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[3,0,3,1],[1,2,2,0]],[[1,2,2,0],[3,1,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,0],[2,1,2,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,0],[2,1,2,2],[2,0,3,1],[1,2,2,0]],[[0,3,2,1],[2,2,3,2],[2,1,2,2],[1,0,0,1]],[[0,2,3,1],[2,2,3,2],[2,1,2,2],[1,0,0,1]],[[0,2,2,2],[2,2,3,2],[2,1,2,2],[1,0,0,1]],[[0,2,2,1],[2,2,3,3],[2,1,2,2],[1,0,0,1]],[[2,2,2,0],[2,1,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[2,0,3,1],[1,1,2,2]],[[1,2,2,0],[2,1,2,2],[2,0,3,1],[1,1,3,1]],[[1,2,2,0],[2,1,2,2],[2,0,4,1],[1,1,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,3,1],[0,2,2,2]],[[1,2,2,0],[2,1,2,2],[2,0,3,1],[0,2,3,1]],[[1,2,2,0],[2,1,2,2],[2,0,3,1],[0,3,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,4,1],[0,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,3,0],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[2,0,3,0],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[2,0,3,0],[1,3,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,3,0],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,4,0],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[3,0,3,0],[1,2,2,1]],[[1,2,2,0],[3,1,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,0],[2,1,2,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,0],[2,1,2,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,0],[2,1,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,2,2],[1,1,2,2]],[[1,2,2,0],[2,1,2,2],[2,0,2,2],[1,1,3,1]],[[1,2,2,0],[2,1,2,2],[2,0,2,3],[1,1,2,1]],[[1,2,2,0],[2,1,2,3],[2,0,2,2],[1,1,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,2,2],[0,2,2,2]],[[1,2,2,0],[2,1,2,2],[2,0,2,2],[0,2,3,1]],[[1,2,2,0],[2,1,2,2],[2,0,2,2],[0,3,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,2,3],[0,2,2,1]],[[1,2,2,0],[2,1,2,3],[2,0,2,2],[0,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,1,2],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[2,0,1,2],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[2,0,1,2],[1,3,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,1,2],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[2,0,1,3],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[3,0,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,2,3],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[3,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,0],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,3,2,0],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[2,2,2,0],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,2],[2,1,3,0],[0,0,2,1]],[[0,2,3,1],[2,2,3,2],[2,1,3,0],[0,0,2,1]],[[0,2,2,2],[2,2,3,2],[2,1,3,0],[0,0,2,1]],[[0,2,2,1],[2,2,4,2],[2,1,3,0],[0,0,2,1]],[[0,3,2,1],[2,2,3,2],[2,1,3,0],[0,1,1,1]],[[0,2,3,1],[2,2,3,2],[2,1,3,0],[0,1,1,1]],[[0,2,2,2],[2,2,3,2],[2,1,3,0],[0,1,1,1]],[[0,2,2,1],[2,2,4,2],[2,1,3,0],[0,1,1,1]],[[0,3,2,1],[2,2,3,2],[2,1,3,0],[0,1,2,0]],[[0,2,3,1],[2,2,3,2],[2,1,3,0],[0,1,2,0]],[[0,2,2,2],[2,2,3,2],[2,1,3,0],[0,1,2,0]],[[0,2,2,1],[2,2,4,2],[2,1,3,0],[0,1,2,0]],[[0,3,2,1],[2,2,3,2],[2,1,3,0],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[2,1,3,0],[0,2,0,1]],[[0,2,2,2],[2,2,3,2],[2,1,3,0],[0,2,0,1]],[[0,2,2,1],[2,2,4,2],[2,1,3,0],[0,2,0,1]],[[0,3,2,1],[2,2,3,2],[2,1,3,0],[0,2,1,0]],[[0,2,3,1],[2,2,3,2],[2,1,3,0],[0,2,1,0]],[[0,2,2,2],[2,2,3,2],[2,1,3,0],[0,2,1,0]],[[0,2,2,1],[2,2,4,2],[2,1,3,0],[0,2,1,0]],[[0,3,2,1],[2,2,3,2],[2,1,3,0],[1,0,1,1]],[[0,2,3,1],[2,2,3,2],[2,1,3,0],[1,0,1,1]],[[0,2,2,2],[2,2,3,2],[2,1,3,0],[1,0,1,1]],[[0,2,2,1],[2,2,4,2],[2,1,3,0],[1,0,1,1]],[[0,3,2,1],[2,2,3,2],[2,1,3,0],[1,0,2,0]],[[0,2,3,1],[2,2,3,2],[2,1,3,0],[1,0,2,0]],[[0,2,2,2],[2,2,3,2],[2,1,3,0],[1,0,2,0]],[[0,2,2,1],[2,2,4,2],[2,1,3,0],[1,0,2,0]],[[0,3,2,1],[2,2,3,2],[2,1,3,0],[1,1,0,1]],[[0,2,3,1],[2,2,3,2],[2,1,3,0],[1,1,0,1]],[[0,2,2,2],[2,2,3,2],[2,1,3,0],[1,1,0,1]],[[0,2,2,1],[2,2,4,2],[2,1,3,0],[1,1,0,1]],[[0,3,2,1],[2,2,3,2],[2,1,3,0],[1,1,1,0]],[[0,2,3,1],[2,2,3,2],[2,1,3,0],[1,1,1,0]],[[0,2,2,2],[2,2,3,2],[2,1,3,0],[1,1,1,0]],[[0,2,2,1],[2,2,4,2],[2,1,3,0],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,0],[2,1,2,2],[1,3,4,2],[0,0,2,0]],[[1,2,2,0],[2,1,2,3],[1,3,3,2],[0,0,2,0]],[[1,2,2,0],[2,1,2,2],[1,3,3,2],[0,0,1,2]],[[1,2,2,0],[2,1,2,2],[1,3,3,3],[0,0,1,1]],[[1,2,2,0],[2,1,2,2],[1,3,4,2],[0,0,1,1]],[[1,2,2,0],[2,1,2,3],[1,3,3,2],[0,0,1,1]],[[1,2,2,0],[2,1,2,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,0],[2,1,2,2],[1,3,3,0],[2,2,1,0]],[[1,2,2,0],[2,1,2,2],[1,4,3,0],[1,2,1,0]],[[1,2,2,0],[2,1,2,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,0],[2,1,2,2],[1,3,2,1],[2,2,1,0]],[[1,2,2,0],[2,1,2,2],[1,4,2,1],[1,2,1,0]],[[1,2,2,0],[2,1,2,2],[1,3,2,1],[1,3,0,1]],[[1,2,2,0],[2,1,2,2],[1,3,2,1],[2,2,0,1]],[[1,2,2,0],[2,1,2,2],[1,4,2,1],[1,2,0,1]],[[1,2,2,0],[2,1,2,2],[1,3,2,0],[1,3,1,1]],[[1,2,2,0],[2,1,2,2],[1,3,2,0],[2,2,1,1]],[[1,2,2,0],[2,1,2,2],[1,4,2,0],[1,2,1,1]],[[1,2,2,0],[2,1,2,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,0],[2,1,2,2],[1,3,1,2],[2,2,1,0]],[[1,2,2,0],[2,1,2,2],[1,4,1,2],[1,2,1,0]],[[1,2,2,0],[2,1,2,2],[1,3,1,2],[1,3,0,1]],[[1,2,2,0],[2,1,2,2],[1,3,1,2],[2,2,0,1]],[[1,2,2,0],[2,1,2,2],[1,4,1,2],[1,2,0,1]],[[1,2,2,0],[2,1,2,2],[1,3,1,1],[1,2,3,0]],[[1,2,2,0],[2,1,2,2],[1,3,1,1],[1,3,2,0]],[[1,2,2,0],[2,1,2,2],[1,3,1,1],[2,2,2,0]],[[1,2,2,0],[2,1,2,2],[1,4,1,1],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[1,3,1,0],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[1,3,1,0],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[1,3,1,0],[1,3,2,1]],[[1,2,2,0],[2,1,2,2],[1,3,1,0],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[1,4,1,0],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[1,3,0,2],[1,2,3,0]],[[1,2,2,0],[2,1,2,2],[1,3,0,2],[1,3,2,0]],[[1,2,2,0],[2,1,2,2],[1,3,0,2],[2,2,2,0]],[[1,2,2,0],[2,1,2,2],[1,4,0,2],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[1,3,0,2],[1,3,1,1]],[[1,2,2,0],[2,1,2,2],[1,3,0,2],[2,2,1,1]],[[1,2,2,0],[2,1,2,2],[1,4,0,2],[1,2,1,1]],[[1,2,2,0],[2,1,2,2],[1,3,0,1],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[1,3,0,1],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[1,3,0,1],[1,3,2,1]],[[1,2,2,0],[2,1,2,2],[1,3,0,1],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[1,4,0,1],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[1,2,4,2],[1,1,1,0]],[[1,2,2,0],[2,1,2,3],[1,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,1,2,2],[1,2,3,2],[1,1,0,2]],[[1,2,2,0],[2,1,2,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,0],[2,1,2,2],[1,2,4,2],[1,1,0,1]],[[1,2,2,0],[2,1,2,3],[1,2,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,2,2],[1,2,3,2],[1,0,3,0]],[[1,2,2,0],[2,1,2,2],[1,2,3,3],[1,0,2,0]],[[1,2,2,0],[2,1,2,2],[1,2,4,2],[1,0,2,0]],[[1,2,2,0],[2,1,2,3],[1,2,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,2,2],[1,2,3,2],[1,0,1,2]],[[1,2,2,0],[2,1,2,2],[1,2,3,3],[1,0,1,1]],[[1,2,2,0],[2,1,2,2],[1,2,4,2],[1,0,1,1]],[[1,2,2,0],[2,1,2,3],[1,2,3,2],[1,0,1,1]],[[1,2,2,0],[2,1,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[1,2,4,2],[0,2,1,0]],[[1,2,2,0],[2,1,2,3],[1,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[1,2,3,2],[0,2,0,2]],[[1,2,2,0],[2,1,2,2],[1,2,3,3],[0,2,0,1]],[[1,2,2,0],[2,1,2,2],[1,2,4,2],[0,2,0,1]],[[1,2,2,0],[2,1,2,3],[1,2,3,2],[0,2,0,1]],[[1,2,2,0],[2,1,2,2],[1,2,3,2],[0,1,3,0]],[[1,2,2,0],[2,1,2,2],[1,2,3,3],[0,1,2,0]],[[1,2,2,0],[2,1,2,2],[1,2,4,2],[0,1,2,0]],[[1,2,2,0],[2,1,2,3],[1,2,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,2,2],[1,2,3,2],[0,1,1,2]],[[1,2,2,0],[2,1,2,2],[1,2,3,3],[0,1,1,1]],[[1,2,2,0],[2,1,2,2],[1,2,4,2],[0,1,1,1]],[[1,2,2,0],[2,1,2,3],[1,2,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,2,2],[1,2,3,2],[0,0,2,2]],[[1,2,2,0],[2,1,2,2],[1,2,3,3],[0,0,2,1]],[[1,2,2,0],[2,1,2,2],[1,2,4,2],[0,0,2,1]],[[1,2,2,0],[2,1,2,3],[1,2,3,2],[0,0,2,1]],[[1,2,2,0],[2,1,2,2],[1,2,3,1],[1,0,2,2]],[[1,2,2,0],[2,1,2,2],[1,2,3,1],[1,0,3,1]],[[1,2,2,0],[2,1,2,2],[1,2,4,1],[1,0,2,1]],[[1,2,2,0],[2,1,2,2],[1,2,3,1],[0,1,2,2]],[[1,2,2,0],[2,1,2,2],[1,2,3,1],[0,1,3,1]],[[1,2,2,0],[2,1,2,2],[1,2,4,1],[0,1,2,1]],[[1,2,2,0],[2,1,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,0],[2,1,2,2],[1,2,2,2],[1,0,3,1]],[[1,2,2,0],[2,1,2,2],[1,2,2,3],[1,0,2,1]],[[1,2,2,0],[2,1,2,3],[1,2,2,2],[1,0,2,1]],[[1,2,2,0],[2,1,2,2],[1,2,2,2],[0,1,2,2]],[[1,2,2,0],[2,1,2,2],[1,2,2,2],[0,1,3,1]],[[1,2,2,0],[2,1,2,2],[1,2,2,3],[0,1,2,1]],[[1,2,2,0],[2,1,2,3],[1,2,2,2],[0,1,2,1]],[[1,2,2,0],[2,1,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,0],[2,1,2,2],[1,1,3,2],[0,3,2,0]],[[1,2,2,0],[2,1,2,2],[1,1,3,3],[0,2,2,0]],[[1,2,2,0],[2,1,2,2],[1,1,4,2],[0,2,2,0]],[[1,2,2,0],[2,1,2,3],[1,1,3,2],[0,2,2,0]],[[1,2,2,0],[2,1,2,2],[1,1,3,2],[0,2,1,2]],[[1,2,2,0],[2,1,2,2],[1,1,3,3],[0,2,1,1]],[[1,2,2,0],[2,1,2,2],[1,1,4,2],[0,2,1,1]],[[1,2,2,0],[2,1,2,3],[1,1,3,2],[0,2,1,1]],[[1,2,2,0],[2,1,2,2],[1,1,3,1],[0,2,2,2]],[[1,2,2,0],[2,1,2,2],[1,1,3,1],[0,2,3,1]],[[1,2,2,0],[2,1,2,2],[1,1,3,1],[0,3,2,1]],[[1,2,2,0],[2,1,2,2],[1,1,4,1],[0,2,2,1]],[[1,2,2,0],[2,1,2,2],[1,1,2,2],[0,2,2,2]],[[1,2,2,0],[2,1,2,2],[1,1,2,2],[0,2,3,1]],[[1,2,2,0],[2,1,2,2],[1,1,2,2],[0,3,2,1]],[[1,2,2,0],[2,1,2,2],[1,1,2,3],[0,2,2,1]],[[1,2,2,0],[2,1,2,3],[1,1,2,2],[0,2,2,1]],[[1,2,2,0],[2,1,2,2],[1,0,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,2,2],[1,0,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,2,2],[1,0,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,2,2],[1,0,3,3],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[1,0,4,2],[1,2,2,0]],[[1,2,2,0],[2,1,2,3],[1,0,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[1,0,3,2],[1,2,1,2]],[[1,2,2,0],[2,1,2,2],[1,0,3,3],[1,2,1,1]],[[1,2,2,0],[2,1,2,2],[1,0,4,2],[1,2,1,1]],[[1,2,2,0],[2,1,2,3],[1,0,3,2],[1,2,1,1]],[[1,2,2,0],[2,1,2,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,0],[2,1,2,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,0],[2,1,2,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,0],[2,1,2,3],[1,0,3,2],[0,2,2,1]],[[1,2,2,0],[2,1,2,2],[1,0,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[1,0,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[1,0,3,1],[1,3,2,1]],[[0,3,2,1],[2,2,3,2],[2,2,0,2],[0,1,1,1]],[[0,2,3,1],[2,2,3,2],[2,2,0,2],[0,1,1,1]],[[0,2,2,2],[2,2,3,2],[2,2,0,2],[0,1,1,1]],[[0,2,2,1],[2,2,3,3],[2,2,0,2],[0,1,1,1]],[[0,3,2,1],[2,2,3,2],[2,2,0,2],[0,1,2,0]],[[0,2,3,1],[2,2,3,2],[2,2,0,2],[0,1,2,0]],[[0,2,2,2],[2,2,3,2],[2,2,0,2],[0,1,2,0]],[[0,2,2,1],[2,2,3,3],[2,2,0,2],[0,1,2,0]],[[0,3,2,1],[2,2,3,2],[2,2,0,2],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[2,2,0,2],[0,2,0,1]],[[0,2,2,2],[2,2,3,2],[2,2,0,2],[0,2,0,1]],[[0,2,2,1],[2,2,3,3],[2,2,0,2],[0,2,0,1]],[[0,3,2,1],[2,2,3,2],[2,2,0,2],[0,2,1,0]],[[0,2,3,1],[2,2,3,2],[2,2,0,2],[0,2,1,0]],[[0,2,2,2],[2,2,3,2],[2,2,0,2],[0,2,1,0]],[[0,2,2,1],[2,2,3,3],[2,2,0,2],[0,2,1,0]],[[1,2,2,0],[2,1,2,2],[1,0,3,1],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[1,0,4,1],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[1,0,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[1,0,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[1,0,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,2,2],[1,0,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[1,0,2,3],[1,2,2,1]],[[1,2,2,0],[2,1,2,3],[1,0,2,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,2],[2,2,0,2],[1,0,1,1]],[[0,2,3,1],[2,2,3,2],[2,2,0,2],[1,0,1,1]],[[0,2,2,2],[2,2,3,2],[2,2,0,2],[1,0,1,1]],[[0,2,2,1],[2,2,3,3],[2,2,0,2],[1,0,1,1]],[[0,3,2,1],[2,2,3,2],[2,2,0,2],[1,0,2,0]],[[0,2,3,1],[2,2,3,2],[2,2,0,2],[1,0,2,0]],[[0,2,2,2],[2,2,3,2],[2,2,0,2],[1,0,2,0]],[[0,2,2,1],[2,2,3,3],[2,2,0,2],[1,0,2,0]],[[0,3,2,1],[2,2,3,2],[2,2,0,2],[1,1,0,1]],[[0,2,3,1],[2,2,3,2],[2,2,0,2],[1,1,0,1]],[[0,2,2,2],[2,2,3,2],[2,2,0,2],[1,1,0,1]],[[0,2,2,1],[2,2,3,3],[2,2,0,2],[1,1,0,1]],[[0,3,2,1],[2,2,3,2],[2,2,0,2],[1,1,1,0]],[[0,2,3,1],[2,2,3,2],[2,2,0,2],[1,1,1,0]],[[0,2,2,2],[2,2,3,2],[2,2,0,2],[1,1,1,0]],[[0,2,2,1],[2,2,3,3],[2,2,0,2],[1,1,1,0]],[[0,3,2,1],[2,2,3,2],[2,2,0,2],[1,2,0,0]],[[0,2,3,1],[2,2,3,2],[2,2,0,2],[1,2,0,0]],[[0,2,2,2],[2,2,3,2],[2,2,0,2],[1,2,0,0]],[[0,2,2,1],[2,2,3,3],[2,2,0,2],[1,2,0,0]],[[0,3,2,1],[2,2,3,2],[2,2,1,0],[0,2,2,0]],[[0,2,3,1],[2,2,3,2],[2,2,1,0],[0,2,2,0]],[[0,2,2,2],[2,2,3,2],[2,2,1,0],[0,2,2,0]],[[0,2,2,1],[2,2,4,2],[2,2,1,0],[0,2,2,0]],[[0,3,2,1],[2,2,3,2],[2,2,1,0],[1,1,2,0]],[[0,2,3,1],[2,2,3,2],[2,2,1,0],[1,1,2,0]],[[0,2,2,2],[2,2,3,2],[2,2,1,0],[1,1,2,0]],[[0,2,2,1],[2,2,4,2],[2,2,1,0],[1,1,2,0]],[[1,2,2,0],[2,1,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,0],[2,1,2,2],[0,2,4,2],[1,2,1,0]],[[1,2,2,0],[2,1,2,3],[0,2,3,2],[1,2,1,0]],[[1,2,2,0],[2,1,2,2],[0,2,3,2],[1,2,0,2]],[[1,2,2,0],[2,1,2,2],[0,2,3,3],[1,2,0,1]],[[1,2,2,0],[2,1,2,2],[0,2,4,2],[1,2,0,1]],[[1,2,2,0],[2,1,2,3],[0,2,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,2,2],[0,2,3,2],[1,1,3,0]],[[1,2,2,0],[2,1,2,2],[0,2,3,3],[1,1,2,0]],[[1,2,2,0],[2,1,2,2],[0,2,4,2],[1,1,2,0]],[[1,2,2,0],[2,1,2,3],[0,2,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,2,2],[0,2,3,2],[1,1,1,2]],[[1,2,2,0],[2,1,2,2],[0,2,3,3],[1,1,1,1]],[[1,2,2,0],[2,1,2,2],[0,2,4,2],[1,1,1,1]],[[1,2,2,0],[2,1,2,3],[0,2,3,2],[1,1,1,1]],[[1,2,2,0],[2,1,2,2],[0,2,3,2],[1,0,2,2]],[[1,2,2,0],[2,1,2,2],[0,2,3,3],[1,0,2,1]],[[1,2,2,0],[2,1,2,2],[0,2,4,2],[1,0,2,1]],[[1,2,2,0],[2,1,2,3],[0,2,3,2],[1,0,2,1]],[[1,2,2,0],[2,1,2,2],[0,2,3,1],[1,1,2,2]],[[1,2,2,0],[2,1,2,2],[0,2,3,1],[1,1,3,1]],[[1,2,2,0],[2,1,2,2],[0,2,4,1],[1,1,2,1]],[[1,2,2,0],[2,1,2,2],[0,2,2,2],[1,1,2,2]],[[1,2,2,0],[2,1,2,2],[0,2,2,2],[1,1,3,1]],[[1,2,2,0],[2,1,2,2],[0,2,2,3],[1,1,2,1]],[[1,2,2,0],[2,1,2,3],[0,2,2,2],[1,1,2,1]],[[1,2,2,0],[2,1,2,2],[0,1,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,2,2],[0,1,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,2,2],[0,1,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,2,2],[0,1,3,3],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[0,1,4,2],[1,2,2,0]],[[1,2,2,0],[2,1,2,3],[0,1,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,2,2],[0,1,3,2],[1,2,1,2]],[[1,2,2,0],[2,1,2,2],[0,1,3,3],[1,2,1,1]],[[1,2,2,0],[2,1,2,2],[0,1,4,2],[1,2,1,1]],[[1,2,2,0],[2,1,2,3],[0,1,3,2],[1,2,1,1]],[[1,2,2,0],[2,1,2,2],[0,1,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[0,1,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[0,1,3,1],[1,3,2,1]],[[1,2,2,0],[2,1,2,2],[0,1,3,1],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[0,1,4,1],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[0,1,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[0,1,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[0,1,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,2,2],[0,1,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,2,2],[0,1,2,3],[1,2,2,1]],[[1,2,2,0],[2,1,2,3],[0,1,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,2,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,0],[2,1,2,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,0],[2,1,2,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,0],[2,1,2,3],[0,0,3,2],[1,2,2,1]],[[1,2,2,0],[2,1,2,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,0],[2,1,2,1],[2,4,3,2],[1,1,0,0]],[[1,2,2,0],[2,1,2,1],[3,3,3,2],[1,1,0,0]],[[1,2,2,0],[3,1,2,1],[2,3,3,2],[1,1,0,0]],[[1,2,3,0],[2,1,2,1],[2,3,3,2],[1,1,0,0]],[[1,3,2,0],[2,1,2,1],[2,3,3,2],[1,1,0,0]],[[2,2,2,0],[2,1,2,1],[2,3,3,2],[1,1,0,0]],[[0,3,2,1],[2,2,3,2],[2,2,2,0],[0,1,1,1]],[[0,2,3,1],[2,2,3,2],[2,2,2,0],[0,1,1,1]],[[0,2,2,2],[2,2,3,2],[2,2,2,0],[0,1,1,1]],[[0,2,2,1],[2,2,4,2],[2,2,2,0],[0,1,1,1]],[[0,3,2,1],[2,2,3,2],[2,2,2,0],[0,1,2,0]],[[0,2,3,1],[2,2,3,2],[2,2,2,0],[0,1,2,0]],[[0,2,2,2],[2,2,3,2],[2,2,2,0],[0,1,2,0]],[[0,2,2,1],[2,2,4,2],[2,2,2,0],[0,1,2,0]],[[0,3,2,1],[2,2,3,2],[2,2,2,0],[0,2,0,1]],[[0,2,3,1],[2,2,3,2],[2,2,2,0],[0,2,0,1]],[[0,2,2,2],[2,2,3,2],[2,2,2,0],[0,2,0,1]],[[0,2,2,1],[2,2,4,2],[2,2,2,0],[0,2,0,1]],[[0,3,2,1],[2,2,3,2],[2,2,2,0],[0,2,1,0]],[[0,2,3,1],[2,2,3,2],[2,2,2,0],[0,2,1,0]],[[0,2,2,2],[2,2,3,2],[2,2,2,0],[0,2,1,0]],[[0,2,2,1],[2,2,4,2],[2,2,2,0],[0,2,1,0]],[[0,3,2,1],[2,2,3,2],[2,2,2,0],[1,0,1,1]],[[0,2,3,1],[2,2,3,2],[2,2,2,0],[1,0,1,1]],[[0,2,2,2],[2,2,3,2],[2,2,2,0],[1,0,1,1]],[[0,2,2,1],[2,2,4,2],[2,2,2,0],[1,0,1,1]],[[0,3,2,1],[2,2,3,2],[2,2,2,0],[1,0,2,0]],[[0,2,3,1],[2,2,3,2],[2,2,2,0],[1,0,2,0]],[[0,2,2,2],[2,2,3,2],[2,2,2,0],[1,0,2,0]],[[0,2,2,1],[2,2,4,2],[2,2,2,0],[1,0,2,0]],[[0,3,2,1],[2,2,3,2],[2,2,2,0],[1,1,0,1]],[[0,2,3,1],[2,2,3,2],[2,2,2,0],[1,1,0,1]],[[0,2,2,2],[2,2,3,2],[2,2,2,0],[1,1,0,1]],[[0,2,2,1],[2,2,4,2],[2,2,2,0],[1,1,0,1]],[[0,3,2,1],[2,2,3,2],[2,2,2,0],[1,1,1,0]],[[0,2,3,1],[2,2,3,2],[2,2,2,0],[1,1,1,0]],[[0,2,2,2],[2,2,3,2],[2,2,2,0],[1,1,1,0]],[[0,2,2,1],[2,2,4,2],[2,2,2,0],[1,1,1,0]],[[0,3,2,1],[2,2,3,2],[2,2,2,0],[1,2,0,0]],[[0,2,3,1],[2,2,3,2],[2,2,2,0],[1,2,0,0]],[[0,2,2,2],[2,2,3,2],[2,2,2,0],[1,2,0,0]],[[0,2,2,1],[2,2,4,2],[2,2,2,0],[1,2,0,0]],[[1,2,2,0],[2,1,2,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,0],[2,1,2,1],[3,3,3,2],[0,2,0,0]],[[1,2,2,0],[3,1,2,1],[2,3,3,2],[0,2,0,0]],[[1,2,3,0],[2,1,2,1],[2,3,3,2],[0,2,0,0]],[[1,3,2,0],[2,1,2,1],[2,3,3,2],[0,2,0,0]],[[2,2,2,0],[2,1,2,1],[2,3,3,2],[0,2,0,0]],[[1,2,2,0],[2,1,2,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,0],[2,1,2,1],[2,4,2,2],[1,2,0,0]],[[1,2,2,0],[2,1,2,1],[3,3,2,2],[1,2,0,0]],[[1,2,2,0],[3,1,2,1],[2,3,2,2],[1,2,0,0]],[[1,2,3,0],[2,1,2,1],[2,3,2,2],[1,2,0,0]],[[1,3,2,0],[2,1,2,1],[2,3,2,2],[1,2,0,0]],[[2,2,2,0],[2,1,2,1],[2,3,2,2],[1,2,0,0]],[[1,2,2,0],[2,1,2,1],[2,3,2,2],[2,1,1,0]],[[1,2,2,0],[2,1,2,1],[2,4,2,2],[1,1,1,0]],[[1,2,2,0],[2,1,2,1],[3,3,2,2],[1,1,1,0]],[[1,2,2,0],[3,1,2,1],[2,3,2,2],[1,1,1,0]],[[1,2,3,0],[2,1,2,1],[2,3,2,2],[1,1,1,0]],[[1,3,2,0],[2,1,2,1],[2,3,2,2],[1,1,1,0]],[[2,2,2,0],[2,1,2,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,0],[2,1,2,1],[2,3,2,2],[2,1,0,1]],[[1,2,2,0],[2,1,2,1],[2,4,2,2],[1,1,0,1]],[[1,2,2,0],[2,1,2,1],[3,3,2,2],[1,1,0,1]],[[1,2,2,0],[3,1,2,1],[2,3,2,2],[1,1,0,1]],[[1,2,3,0],[2,1,2,1],[2,3,2,2],[1,1,0,1]],[[1,3,2,0],[2,1,2,1],[2,3,2,2],[1,1,0,1]],[[2,2,2,0],[2,1,2,1],[2,3,2,2],[1,1,0,1]],[[1,2,2,0],[2,1,2,1],[2,3,2,2],[2,0,2,0]],[[1,2,2,0],[2,1,2,1],[2,4,2,2],[1,0,2,0]],[[1,2,2,0],[2,1,2,1],[3,3,2,2],[1,0,2,0]],[[1,2,2,0],[3,1,2,1],[2,3,2,2],[1,0,2,0]],[[1,2,3,0],[2,1,2,1],[2,3,2,2],[1,0,2,0]],[[1,3,2,0],[2,1,2,1],[2,3,2,2],[1,0,2,0]],[[2,2,2,0],[2,1,2,1],[2,3,2,2],[1,0,2,0]],[[1,2,2,0],[2,1,2,1],[2,3,2,2],[2,0,1,1]],[[1,2,2,0],[2,1,2,1],[2,4,2,2],[1,0,1,1]],[[1,2,2,0],[2,1,2,1],[3,3,2,2],[1,0,1,1]],[[1,2,2,0],[3,1,2,1],[2,3,2,2],[1,0,1,1]],[[1,2,3,0],[2,1,2,1],[2,3,2,2],[1,0,1,1]],[[1,3,2,0],[2,1,2,1],[2,3,2,2],[1,0,1,1]],[[2,2,2,0],[2,1,2,1],[2,3,2,2],[1,0,1,1]],[[1,2,2,0],[2,1,2,1],[2,3,2,2],[0,3,1,0]],[[1,2,2,0],[2,1,2,1],[2,4,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,2,1],[3,3,2,2],[0,2,1,0]],[[1,2,2,0],[3,1,2,1],[2,3,2,2],[0,2,1,0]],[[1,2,3,0],[2,1,2,1],[2,3,2,2],[0,2,1,0]],[[1,3,2,0],[2,1,2,1],[2,3,2,2],[0,2,1,0]],[[2,2,2,0],[2,1,2,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,1,2,1],[2,3,2,2],[0,3,0,1]],[[1,2,2,0],[2,1,2,1],[2,4,2,2],[0,2,0,1]],[[1,2,2,0],[2,1,2,1],[3,3,2,2],[0,2,0,1]],[[1,2,2,0],[3,1,2,1],[2,3,2,2],[0,2,0,1]],[[1,2,3,0],[2,1,2,1],[2,3,2,2],[0,2,0,1]],[[1,3,2,0],[2,1,2,1],[2,3,2,2],[0,2,0,1]],[[2,2,2,0],[2,1,2,1],[2,3,2,2],[0,2,0,1]],[[1,2,2,0],[2,1,2,1],[2,4,2,2],[0,1,2,0]],[[1,2,2,0],[2,1,2,1],[3,3,2,2],[0,1,2,0]],[[1,2,2,0],[3,1,2,1],[2,3,2,2],[0,1,2,0]],[[1,2,3,0],[2,1,2,1],[2,3,2,2],[0,1,2,0]],[[1,3,2,0],[2,1,2,1],[2,3,2,2],[0,1,2,0]],[[2,2,2,0],[2,1,2,1],[2,3,2,2],[0,1,2,0]],[[1,2,2,0],[2,1,2,1],[2,4,2,2],[0,1,1,1]],[[1,2,2,0],[2,1,2,1],[3,3,2,2],[0,1,1,1]],[[1,2,2,0],[3,1,2,1],[2,3,2,2],[0,1,1,1]],[[1,2,3,0],[2,1,2,1],[2,3,2,2],[0,1,1,1]],[[1,3,2,0],[2,1,2,1],[2,3,2,2],[0,1,1,1]],[[2,2,2,0],[2,1,2,1],[2,3,2,2],[0,1,1,1]],[[1,2,2,0],[2,1,2,1],[2,3,2,1],[2,2,0,1]],[[1,2,2,0],[2,1,2,1],[2,4,2,1],[1,2,0,1]],[[1,2,2,0],[2,1,2,1],[3,3,2,1],[1,2,0,1]],[[1,2,2,0],[3,1,2,1],[2,3,2,1],[1,2,0,1]],[[1,3,2,0],[2,1,2,1],[2,3,2,1],[1,2,0,1]],[[2,2,2,0],[2,1,2,1],[2,3,2,1],[1,2,0,1]],[[1,2,2,0],[2,1,2,1],[2,3,2,1],[2,1,1,1]],[[1,2,2,0],[2,1,2,1],[2,4,2,1],[1,1,1,1]],[[1,2,2,0],[2,1,2,1],[3,3,2,1],[1,1,1,1]],[[1,2,2,0],[3,1,2,1],[2,3,2,1],[1,1,1,1]],[[1,2,3,0],[2,1,2,1],[2,3,2,1],[1,1,1,1]],[[1,3,2,0],[2,1,2,1],[2,3,2,1],[1,1,1,1]],[[2,2,2,0],[2,1,2,1],[2,3,2,1],[1,1,1,1]],[[1,2,2,0],[2,1,2,1],[2,3,2,1],[2,0,2,1]],[[1,2,2,0],[2,1,2,1],[2,4,2,1],[1,0,2,1]],[[1,2,2,0],[2,1,2,1],[3,3,2,1],[1,0,2,1]],[[1,2,2,0],[3,1,2,1],[2,3,2,1],[1,0,2,1]],[[1,2,3,0],[2,1,2,1],[2,3,2,1],[1,0,2,1]],[[1,3,2,0],[2,1,2,1],[2,3,2,1],[1,0,2,1]],[[2,2,2,0],[2,1,2,1],[2,3,2,1],[1,0,2,1]],[[1,2,2,0],[2,1,2,1],[2,3,2,1],[0,3,1,1]],[[1,2,2,0],[2,1,2,1],[2,4,2,1],[0,2,1,1]],[[1,2,2,0],[2,1,2,1],[3,3,2,1],[0,2,1,1]],[[1,2,2,0],[3,1,2,1],[2,3,2,1],[0,2,1,1]],[[1,2,3,0],[2,1,2,1],[2,3,2,1],[0,2,1,1]],[[1,3,2,0],[2,1,2,1],[2,3,2,1],[0,2,1,1]],[[2,2,2,0],[2,1,2,1],[2,3,2,1],[0,2,1,1]],[[1,2,2,0],[2,1,2,1],[2,4,2,1],[0,1,2,1]],[[1,2,2,0],[2,1,2,1],[3,3,2,1],[0,1,2,1]],[[1,2,2,0],[3,1,2,1],[2,3,2,1],[0,1,2,1]],[[1,2,3,0],[2,1,2,1],[2,3,2,1],[0,1,2,1]],[[1,3,2,0],[2,1,2,1],[2,3,2,1],[0,1,2,1]],[[2,2,2,0],[2,1,2,1],[2,3,2,1],[0,1,2,1]],[[1,2,2,0],[2,1,2,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,0],[2,1,2,1],[2,4,1,2],[1,1,2,0]],[[1,2,2,0],[2,1,2,1],[3,3,1,2],[1,1,2,0]],[[1,2,2,0],[3,1,2,1],[2,3,1,2],[1,1,2,0]],[[1,2,3,0],[2,1,2,1],[2,3,1,2],[1,1,2,0]],[[1,3,2,0],[2,1,2,1],[2,3,1,2],[1,1,2,0]],[[2,2,2,0],[2,1,2,1],[2,3,1,2],[1,1,2,0]],[[0,3,2,1],[2,2,3,2],[2,2,3,0],[0,2,0,0]],[[0,2,3,1],[2,2,3,2],[2,2,3,0],[0,2,0,0]],[[0,2,2,2],[2,2,3,2],[2,2,3,0],[0,2,0,0]],[[0,2,2,1],[2,2,4,2],[2,2,3,0],[0,2,0,0]],[[1,2,2,0],[2,1,2,1],[2,3,1,2],[0,2,3,0]],[[1,2,2,0],[2,1,2,1],[2,3,1,2],[0,3,2,0]],[[1,2,2,0],[2,1,2,1],[2,4,1,2],[0,2,2,0]],[[1,2,2,0],[2,1,2,1],[3,3,1,2],[0,2,2,0]],[[1,2,2,0],[3,1,2,1],[2,3,1,2],[0,2,2,0]],[[1,2,3,0],[2,1,2,1],[2,3,1,2],[0,2,2,0]],[[1,3,2,0],[2,1,2,1],[2,3,1,2],[0,2,2,0]],[[2,2,2,0],[2,1,2,1],[2,3,1,2],[0,2,2,0]],[[1,2,2,0],[2,1,2,1],[2,3,1,1],[2,1,2,1]],[[1,2,2,0],[2,1,2,1],[2,4,1,1],[1,1,2,1]],[[1,2,2,0],[2,1,2,1],[3,3,1,1],[1,1,2,1]],[[1,2,2,0],[3,1,2,1],[2,3,1,1],[1,1,2,1]],[[1,2,3,0],[2,1,2,1],[2,3,1,1],[1,1,2,1]],[[1,3,2,0],[2,1,2,1],[2,3,1,1],[1,1,2,1]],[[2,2,2,0],[2,1,2,1],[2,3,1,1],[1,1,2,1]],[[1,2,2,0],[2,1,2,1],[2,3,1,1],[0,2,2,2]],[[0,3,2,1],[2,2,3,2],[2,2,3,0],[1,1,0,0]],[[0,2,3,1],[2,2,3,2],[2,2,3,0],[1,1,0,0]],[[0,2,2,2],[2,2,3,2],[2,2,3,0],[1,1,0,0]],[[0,2,2,1],[2,2,4,2],[2,2,3,0],[1,1,0,0]],[[1,2,2,0],[2,1,2,1],[2,3,1,1],[0,2,3,1]],[[1,2,2,0],[2,1,2,1],[2,3,1,1],[0,3,2,1]],[[1,2,2,0],[2,1,2,1],[2,4,1,1],[0,2,2,1]],[[1,2,2,0],[2,1,2,1],[3,3,1,1],[0,2,2,1]],[[1,2,2,0],[3,1,2,1],[2,3,1,1],[0,2,2,1]],[[1,2,3,0],[2,1,2,1],[2,3,1,1],[0,2,2,1]],[[1,3,2,0],[2,1,2,1],[2,3,1,1],[0,2,2,1]],[[2,2,2,0],[2,1,2,1],[2,3,1,1],[0,2,2,1]],[[1,2,2,0],[2,1,2,1],[2,3,0,2],[1,3,2,0]],[[1,2,2,0],[2,1,2,1],[2,3,0,2],[2,2,2,0]],[[1,2,2,0],[2,1,2,1],[3,3,0,2],[1,2,2,0]],[[1,2,2,0],[3,1,2,1],[2,3,0,2],[1,2,2,0]],[[1,3,2,0],[2,1,2,1],[2,3,0,2],[1,2,2,0]],[[2,2,2,0],[2,1,2,1],[2,3,0,2],[1,2,2,0]],[[1,2,2,0],[2,1,2,1],[2,3,0,2],[2,1,2,1]],[[1,2,2,0],[2,1,2,1],[2,4,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,2,1],[3,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,1,2,1],[2,3,0,2],[1,1,2,1]],[[1,2,3,0],[2,1,2,1],[2,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,1,2,1],[2,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,1,2,1],[2,3,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,2,1],[2,3,0,2],[0,2,2,2]],[[1,2,2,0],[2,1,2,1],[2,3,0,2],[0,2,3,1]],[[1,2,2,0],[2,1,2,1],[2,3,0,2],[0,3,2,1]],[[1,2,2,0],[2,1,2,1],[2,3,0,3],[0,2,2,1]],[[1,2,2,0],[2,1,2,1],[2,4,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,2,1],[3,3,0,2],[0,2,2,1]],[[1,2,2,0],[3,1,2,1],[2,3,0,2],[0,2,2,1]],[[1,2,3,0],[2,1,2,1],[2,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,1,2,1],[2,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,1,2,1],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,2,1],[2,3,0,1],[1,3,2,1]],[[1,2,2,0],[2,1,2,1],[2,3,0,1],[2,2,2,1]],[[1,2,2,0],[2,1,2,1],[3,3,0,1],[1,2,2,1]],[[1,2,2,0],[3,1,2,1],[2,3,0,1],[1,2,2,1]],[[1,3,2,0],[2,1,2,1],[2,3,0,1],[1,2,2,1]],[[2,2,2,0],[2,1,2,1],[2,3,0,1],[1,2,2,1]],[[1,2,2,0],[2,1,2,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,0],[2,1,2,1],[2,2,2,2],[2,2,1,0]],[[1,2,2,0],[2,1,2,1],[3,2,2,2],[1,2,1,0]],[[1,2,2,0],[3,1,2,1],[2,2,2,2],[1,2,1,0]],[[1,2,3,0],[2,1,2,1],[2,2,2,2],[1,2,1,0]],[[1,3,2,0],[2,1,2,1],[2,2,2,2],[1,2,1,0]],[[2,2,2,0],[2,1,2,1],[2,2,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,2,1],[2,2,2,2],[1,3,0,1]],[[1,2,2,0],[2,1,2,1],[2,2,2,2],[2,2,0,1]],[[1,2,2,0],[2,1,2,1],[3,2,2,2],[1,2,0,1]],[[1,2,2,0],[3,1,2,1],[2,2,2,2],[1,2,0,1]],[[1,2,3,0],[2,1,2,1],[2,2,2,2],[1,2,0,1]],[[1,3,2,0],[2,1,2,1],[2,2,2,2],[1,2,0,1]],[[2,2,2,0],[2,1,2,1],[2,2,2,2],[1,2,0,1]],[[1,2,2,0],[2,1,2,1],[2,2,2,1],[1,3,1,1]],[[1,2,2,0],[2,1,2,1],[2,2,2,1],[2,2,1,1]],[[1,2,2,0],[2,1,2,1],[3,2,2,1],[1,2,1,1]],[[1,2,2,0],[3,1,2,1],[2,2,2,1],[1,2,1,1]],[[1,2,3,0],[2,1,2,1],[2,2,2,1],[1,2,1,1]],[[1,3,2,0],[2,1,2,1],[2,2,2,1],[1,2,1,1]],[[2,2,2,0],[2,1,2,1],[2,2,2,1],[1,2,1,1]],[[1,2,2,0],[2,1,2,1],[2,2,1,2],[1,2,3,0]],[[1,2,2,0],[2,1,2,1],[2,2,1,2],[1,3,2,0]],[[1,2,2,0],[2,1,2,1],[2,2,1,2],[2,2,2,0]],[[1,2,2,0],[2,1,2,1],[3,2,1,2],[1,2,2,0]],[[1,2,2,0],[3,1,2,1],[2,2,1,2],[1,2,2,0]],[[1,2,3,0],[2,1,2,1],[2,2,1,2],[1,2,2,0]],[[1,3,2,0],[2,1,2,1],[2,2,1,2],[1,2,2,0]],[[2,2,2,0],[2,1,2,1],[2,2,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,2,1],[2,2,1,1],[1,2,2,2]],[[1,2,2,0],[2,1,2,1],[2,2,1,1],[1,2,3,1]],[[1,2,2,0],[2,1,2,1],[2,2,1,1],[1,3,2,1]],[[1,2,2,0],[2,1,2,1],[2,2,1,1],[2,2,2,1]],[[1,2,2,0],[2,1,2,1],[3,2,1,1],[1,2,2,1]],[[1,2,2,0],[3,1,2,1],[2,2,1,1],[1,2,2,1]],[[1,2,3,0],[2,1,2,1],[2,2,1,1],[1,2,2,1]],[[1,3,2,0],[2,1,2,1],[2,2,1,1],[1,2,2,1]],[[2,2,2,0],[2,1,2,1],[2,2,1,1],[1,2,2,1]],[[1,2,2,0],[2,1,2,1],[2,2,0,2],[1,2,2,2]],[[1,2,2,0],[2,1,2,1],[2,2,0,2],[1,2,3,1]],[[1,2,2,0],[2,1,2,1],[2,2,0,2],[1,3,2,1]],[[1,2,2,0],[2,1,2,1],[2,2,0,2],[2,2,2,1]],[[1,2,2,0],[2,1,2,1],[2,2,0,3],[1,2,2,1]],[[1,2,2,0],[2,1,2,1],[3,2,0,2],[1,2,2,1]],[[1,2,2,0],[3,1,2,1],[2,2,0,2],[1,2,2,1]],[[1,2,3,0],[2,1,2,1],[2,2,0,2],[1,2,2,1]],[[1,3,2,0],[2,1,2,1],[2,2,0,2],[1,2,2,1]],[[2,2,2,0],[2,1,2,1],[2,2,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,2,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,2,1],[2,0,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,2,1],[2,0,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,2,1],[2,0,3,3],[1,2,2,0]],[[1,2,2,0],[2,1,2,1],[2,0,4,2],[1,2,2,0]],[[1,2,2,0],[2,1,2,1],[3,0,3,2],[1,2,2,0]],[[1,2,2,0],[3,1,2,1],[2,0,3,2],[1,2,2,0]],[[1,2,3,0],[2,1,2,1],[2,0,3,2],[1,2,2,0]],[[1,3,2,0],[2,1,2,1],[2,0,3,2],[1,2,2,0]],[[2,2,2,0],[2,1,2,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,2,1],[2,0,3,2],[1,2,1,2]],[[1,2,2,0],[2,1,2,1],[2,0,3,3],[1,2,1,1]],[[1,2,2,0],[2,1,2,1],[2,0,4,2],[1,2,1,1]],[[1,2,2,0],[2,1,2,1],[2,0,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,2,1],[2,0,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,2,1],[2,0,3,1],[1,3,2,1]],[[1,2,2,0],[2,1,2,1],[2,0,3,1],[2,2,2,1]],[[1,2,2,0],[2,1,2,1],[2,0,4,1],[1,2,2,1]],[[1,2,2,0],[2,1,2,1],[3,0,3,1],[1,2,2,1]],[[1,2,2,0],[3,1,2,1],[2,0,3,1],[1,2,2,1]],[[1,2,3,0],[2,1,2,1],[2,0,3,1],[1,2,2,1]],[[1,3,2,0],[2,1,2,1],[2,0,3,1],[1,2,2,1]],[[2,2,2,0],[2,1,2,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,0],[2,1,2,1],[2,0,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,2,1],[2,0,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,2,1],[2,0,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,2,1],[2,0,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,2,1],[2,0,2,3],[1,2,2,1]],[[1,2,2,0],[2,1,2,1],[3,0,2,2],[1,2,2,1]],[[1,2,2,0],[3,1,2,1],[2,0,2,2],[1,2,2,1]],[[1,2,3,0],[2,1,2,1],[2,0,2,2],[1,2,2,1]],[[1,3,2,0],[2,1,2,1],[2,0,2,2],[1,2,2,1]],[[2,2,2,0],[2,1,2,1],[2,0,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,2,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,0],[2,1,2,1],[1,3,2,2],[2,2,1,0]],[[1,2,2,0],[2,1,2,1],[1,4,2,2],[1,2,1,0]],[[1,2,2,0],[2,1,2,1],[1,3,2,2],[1,3,0,1]],[[1,2,2,0],[2,1,2,1],[1,3,2,2],[2,2,0,1]],[[1,2,2,0],[2,1,2,1],[1,4,2,2],[1,2,0,1]],[[1,2,2,0],[2,1,2,1],[1,3,2,1],[1,3,1,1]],[[1,2,2,0],[2,1,2,1],[1,3,2,1],[2,2,1,1]],[[1,2,2,0],[2,1,2,1],[1,4,2,1],[1,2,1,1]],[[1,2,2,0],[2,1,2,1],[1,3,1,2],[1,2,3,0]],[[1,2,2,0],[2,1,2,1],[1,3,1,2],[1,3,2,0]],[[1,2,2,0],[2,1,2,1],[1,3,1,2],[2,2,2,0]],[[1,2,2,0],[2,1,2,1],[1,4,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,2,1],[1,3,1,1],[1,2,2,2]],[[1,2,2,0],[2,1,2,1],[1,3,1,1],[1,2,3,1]],[[1,2,2,0],[2,1,2,1],[1,3,1,1],[1,3,2,1]],[[1,2,2,0],[2,1,2,1],[1,3,1,1],[2,2,2,1]],[[1,2,2,0],[2,1,2,1],[1,4,1,1],[1,2,2,1]],[[1,2,2,0],[2,1,2,1],[1,3,0,2],[1,2,2,2]],[[1,2,2,0],[2,1,2,1],[1,3,0,2],[1,2,3,1]],[[1,2,2,0],[2,1,2,1],[1,3,0,2],[1,3,2,1]],[[1,2,2,0],[2,1,2,1],[1,3,0,2],[2,2,2,1]],[[1,2,2,0],[2,1,2,1],[1,3,0,3],[1,2,2,1]],[[1,2,2,0],[2,1,2,1],[1,4,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,2,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[2,1,2,0],[2,0,3,2],[1,2,3,1]],[[1,2,2,0],[2,1,2,0],[2,0,3,2],[1,3,2,1]],[[1,2,2,0],[2,1,2,0],[2,0,3,2],[2,2,2,1]],[[1,2,2,0],[2,1,2,0],[2,0,4,2],[1,2,2,1]],[[1,2,2,0],[2,1,2,0],[3,0,3,2],[1,2,2,1]],[[1,2,2,0],[3,1,2,0],[2,0,3,2],[1,2,2,1]],[[1,3,2,0],[2,1,2,0],[2,0,3,2],[1,2,2,1]],[[2,2,2,0],[2,1,2,0],[2,0,3,2],[1,2,2,1]],[[0,3,2,1],[2,2,3,2],[2,3,0,2],[1,0,0,1]],[[0,2,3,1],[2,2,3,2],[2,3,0,2],[1,0,0,1]],[[0,2,2,2],[2,2,3,2],[2,3,0,2],[1,0,0,1]],[[0,2,2,1],[2,2,3,3],[2,3,0,2],[1,0,0,1]],[[0,3,2,1],[2,2,3,2],[2,3,0,2],[1,0,1,0]],[[0,2,3,1],[2,2,3,2],[2,3,0,2],[1,0,1,0]],[[0,2,2,2],[2,2,3,2],[2,3,0,2],[1,0,1,0]],[[0,2,2,1],[2,2,3,3],[2,3,0,2],[1,0,1,0]],[[1,2,2,0],[2,1,1,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[2,1,1,2],[2,4,3,1],[1,2,0,0]],[[1,2,2,0],[2,1,1,2],[3,3,3,1],[1,2,0,0]],[[1,2,2,0],[3,1,1,2],[2,3,3,1],[1,2,0,0]],[[1,2,3,0],[2,1,1,2],[2,3,3,1],[1,2,0,0]],[[1,3,2,0],[2,1,1,2],[2,3,3,1],[1,2,0,0]],[[2,2,2,0],[2,1,1,2],[2,3,3,1],[1,2,0,0]],[[1,2,2,0],[2,1,1,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,0],[2,1,1,2],[2,3,4,1],[1,1,1,0]],[[1,2,2,0],[2,1,1,2],[2,4,3,1],[1,1,1,0]],[[1,2,2,0],[2,1,1,2],[3,3,3,1],[1,1,1,0]],[[1,2,2,0],[3,1,1,2],[2,3,3,1],[1,1,1,0]],[[1,2,3,0],[2,1,1,2],[2,3,3,1],[1,1,1,0]],[[1,3,2,0],[2,1,1,2],[2,3,3,1],[1,1,1,0]],[[2,2,2,0],[2,1,1,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,0],[2,1,1,2],[2,3,3,1],[2,1,0,1]],[[1,2,2,0],[2,1,1,2],[2,3,4,1],[1,1,0,1]],[[1,2,2,0],[2,1,1,2],[2,4,3,1],[1,1,0,1]],[[1,2,2,0],[2,1,1,2],[3,3,3,1],[1,1,0,1]],[[1,2,2,0],[3,1,1,2],[2,3,3,1],[1,1,0,1]],[[1,2,3,0],[2,1,1,2],[2,3,3,1],[1,1,0,1]],[[1,3,2,0],[2,1,1,2],[2,3,3,1],[1,1,0,1]],[[2,2,2,0],[2,1,1,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,0],[2,1,1,2],[2,3,3,1],[1,0,3,0]],[[1,2,2,0],[2,1,1,2],[2,3,3,1],[2,0,2,0]],[[1,2,2,0],[2,1,1,2],[2,3,4,1],[1,0,2,0]],[[1,2,2,0],[2,1,1,2],[2,4,3,1],[1,0,2,0]],[[1,2,2,0],[2,1,1,2],[3,3,3,1],[1,0,2,0]],[[1,2,2,0],[3,1,1,2],[2,3,3,1],[1,0,2,0]],[[1,2,3,0],[2,1,1,2],[2,3,3,1],[1,0,2,0]],[[1,3,2,0],[2,1,1,2],[2,3,3,1],[1,0,2,0]],[[2,2,2,0],[2,1,1,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,0],[2,1,1,2],[2,3,3,1],[2,0,1,1]],[[1,2,2,0],[2,1,1,2],[2,3,4,1],[1,0,1,1]],[[1,2,2,0],[2,1,1,2],[2,4,3,1],[1,0,1,1]],[[1,2,2,0],[2,1,1,2],[3,3,3,1],[1,0,1,1]],[[1,2,2,0],[3,1,1,2],[2,3,3,1],[1,0,1,1]],[[1,2,3,0],[2,1,1,2],[2,3,3,1],[1,0,1,1]],[[1,3,2,0],[2,1,1,2],[2,3,3,1],[1,0,1,1]],[[2,2,2,0],[2,1,1,2],[2,3,3,1],[1,0,1,1]],[[1,2,2,0],[2,1,1,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[2,1,1,2],[2,3,4,1],[0,2,1,0]],[[1,2,2,0],[2,1,1,2],[2,4,3,1],[0,2,1,0]],[[1,2,2,0],[2,1,1,2],[3,3,3,1],[0,2,1,0]],[[1,2,2,0],[3,1,1,2],[2,3,3,1],[0,2,1,0]],[[1,2,3,0],[2,1,1,2],[2,3,3,1],[0,2,1,0]],[[1,3,2,0],[2,1,1,2],[2,3,3,1],[0,2,1,0]],[[2,2,2,0],[2,1,1,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,0],[2,1,1,2],[2,3,3,1],[0,3,0,1]],[[1,2,2,0],[2,1,1,2],[2,3,4,1],[0,2,0,1]],[[1,2,2,0],[2,1,1,2],[2,4,3,1],[0,2,0,1]],[[1,2,2,0],[2,1,1,2],[3,3,3,1],[0,2,0,1]],[[1,2,2,0],[3,1,1,2],[2,3,3,1],[0,2,0,1]],[[1,2,3,0],[2,1,1,2],[2,3,3,1],[0,2,0,1]],[[1,3,2,0],[2,1,1,2],[2,3,3,1],[0,2,0,1]],[[2,2,2,0],[2,1,1,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,0],[2,1,1,2],[2,3,3,1],[0,1,3,0]],[[1,2,2,0],[2,1,1,2],[2,3,4,1],[0,1,2,0]],[[1,2,2,0],[2,1,1,2],[2,4,3,1],[0,1,2,0]],[[1,2,2,0],[2,1,1,2],[3,3,3,1],[0,1,2,0]],[[1,2,2,0],[3,1,1,2],[2,3,3,1],[0,1,2,0]],[[1,2,3,0],[2,1,1,2],[2,3,3,1],[0,1,2,0]],[[1,3,2,0],[2,1,1,2],[2,3,3,1],[0,1,2,0]],[[2,2,2,0],[2,1,1,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,0],[2,1,1,2],[2,3,4,1],[0,1,1,1]],[[1,2,2,0],[2,1,1,2],[2,4,3,1],[0,1,1,1]],[[1,2,2,0],[2,1,1,2],[3,3,3,1],[0,1,1,1]],[[1,2,2,0],[3,1,1,2],[2,3,3,1],[0,1,1,1]],[[1,2,3,0],[2,1,1,2],[2,3,3,1],[0,1,1,1]],[[1,3,2,0],[2,1,1,2],[2,3,3,1],[0,1,1,1]],[[2,2,2,0],[2,1,1,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,0],[2,1,1,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,0],[2,1,1,2],[2,4,3,0],[1,2,0,1]],[[1,2,2,0],[2,1,1,2],[3,3,3,0],[1,2,0,1]],[[1,2,2,0],[3,1,1,2],[2,3,3,0],[1,2,0,1]],[[1,2,3,0],[2,1,1,2],[2,3,3,0],[1,2,0,1]],[[1,3,2,0],[2,1,1,2],[2,3,3,0],[1,2,0,1]],[[2,2,2,0],[2,1,1,2],[2,3,3,0],[1,2,0,1]],[[1,2,2,0],[2,1,1,2],[2,3,3,0],[2,1,1,1]],[[1,2,2,0],[2,1,1,2],[2,3,4,0],[1,1,1,1]],[[1,2,2,0],[2,1,1,2],[2,4,3,0],[1,1,1,1]],[[1,2,2,0],[2,1,1,2],[3,3,3,0],[1,1,1,1]],[[1,2,2,0],[3,1,1,2],[2,3,3,0],[1,1,1,1]],[[1,2,3,0],[2,1,1,2],[2,3,3,0],[1,1,1,1]],[[1,3,2,0],[2,1,1,2],[2,3,3,0],[1,1,1,1]],[[2,2,2,0],[2,1,1,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,0],[2,1,1,2],[2,3,3,0],[1,0,2,2]],[[1,2,2,0],[2,1,1,2],[2,3,3,0],[1,0,3,1]],[[1,2,2,0],[2,1,1,2],[2,3,3,0],[2,0,2,1]],[[1,2,2,0],[2,1,1,2],[2,3,4,0],[1,0,2,1]],[[1,2,2,0],[2,1,1,2],[2,4,3,0],[1,0,2,1]],[[1,2,2,0],[2,1,1,2],[3,3,3,0],[1,0,2,1]],[[1,2,2,0],[3,1,1,2],[2,3,3,0],[1,0,2,1]],[[1,2,3,0],[2,1,1,2],[2,3,3,0],[1,0,2,1]],[[1,3,2,0],[2,1,1,2],[2,3,3,0],[1,0,2,1]],[[2,2,2,0],[2,1,1,2],[2,3,3,0],[1,0,2,1]],[[1,2,2,0],[2,1,1,2],[2,3,3,0],[0,3,1,1]],[[1,2,2,0],[2,1,1,2],[2,3,4,0],[0,2,1,1]],[[1,2,2,0],[2,1,1,2],[2,4,3,0],[0,2,1,1]],[[1,2,2,0],[2,1,1,2],[3,3,3,0],[0,2,1,1]],[[1,2,2,0],[3,1,1,2],[2,3,3,0],[0,2,1,1]],[[1,2,3,0],[2,1,1,2],[2,3,3,0],[0,2,1,1]],[[1,3,2,0],[2,1,1,2],[2,3,3,0],[0,2,1,1]],[[2,2,2,0],[2,1,1,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,0],[2,1,1,2],[2,3,3,0],[0,1,2,2]],[[1,2,2,0],[2,1,1,2],[2,3,3,0],[0,1,3,1]],[[1,2,2,0],[2,1,1,2],[2,3,4,0],[0,1,2,1]],[[1,2,2,0],[2,1,1,2],[2,4,3,0],[0,1,2,1]],[[1,2,2,0],[2,1,1,2],[3,3,3,0],[0,1,2,1]],[[1,2,2,0],[3,1,1,2],[2,3,3,0],[0,1,2,1]],[[1,2,3,0],[2,1,1,2],[2,3,3,0],[0,1,2,1]],[[1,3,2,0],[2,1,1,2],[2,3,3,0],[0,1,2,1]],[[2,2,2,0],[2,1,1,2],[2,3,3,0],[0,1,2,1]],[[1,2,2,0],[2,1,1,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[2,1,1,2],[2,4,2,1],[1,1,2,0]],[[1,2,2,0],[2,1,1,2],[3,3,2,1],[1,1,2,0]],[[1,2,2,0],[3,1,1,2],[2,3,2,1],[1,1,2,0]],[[1,2,3,0],[2,1,1,2],[2,3,2,1],[1,1,2,0]],[[1,3,2,0],[2,1,1,2],[2,3,2,1],[1,1,2,0]],[[2,2,2,0],[2,1,1,2],[2,3,2,1],[1,1,2,0]],[[1,2,2,0],[2,1,1,2],[2,3,2,1],[0,2,3,0]],[[1,2,2,0],[2,1,1,2],[2,3,2,1],[0,3,2,0]],[[1,2,2,0],[2,1,1,2],[2,4,2,1],[0,2,2,0]],[[1,2,2,0],[2,1,1,2],[3,3,2,1],[0,2,2,0]],[[1,2,2,0],[3,1,1,2],[2,3,2,1],[0,2,2,0]],[[1,2,3,0],[2,1,1,2],[2,3,2,1],[0,2,2,0]],[[1,3,2,0],[2,1,1,2],[2,3,2,1],[0,2,2,0]],[[2,2,2,0],[2,1,1,2],[2,3,2,1],[0,2,2,0]],[[1,2,2,0],[2,1,1,2],[2,3,2,0],[2,1,2,1]],[[1,2,2,0],[2,1,1,2],[2,4,2,0],[1,1,2,1]],[[1,2,2,0],[2,1,1,2],[3,3,2,0],[1,1,2,1]],[[1,2,2,0],[3,1,1,2],[2,3,2,0],[1,1,2,1]],[[1,2,3,0],[2,1,1,2],[2,3,2,0],[1,1,2,1]],[[1,3,2,0],[2,1,1,2],[2,3,2,0],[1,1,2,1]],[[2,2,2,0],[2,1,1,2],[2,3,2,0],[1,1,2,1]],[[1,2,2,0],[2,1,1,2],[2,3,2,0],[0,2,2,2]],[[1,2,2,0],[2,1,1,2],[2,3,2,0],[0,2,3,1]],[[1,2,2,0],[2,1,1,2],[2,3,2,0],[0,3,2,1]],[[1,2,2,0],[2,1,1,2],[2,4,2,0],[0,2,2,1]],[[1,2,2,0],[2,1,1,2],[3,3,2,0],[0,2,2,1]],[[1,2,2,0],[3,1,1,2],[2,3,2,0],[0,2,2,1]],[[1,2,3,0],[2,1,1,2],[2,3,2,0],[0,2,2,1]],[[1,3,2,0],[2,1,1,2],[2,3,2,0],[0,2,2,1]],[[2,2,2,0],[2,1,1,2],[2,3,2,0],[0,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,0],[2,1,1,2],[2,3,1,1],[2,2,2,0]],[[1,2,2,0],[2,1,1,2],[3,3,1,1],[1,2,2,0]],[[1,2,2,0],[3,1,1,2],[2,3,1,1],[1,2,2,0]],[[1,3,2,0],[2,1,1,2],[2,3,1,1],[1,2,2,0]],[[2,2,2,0],[2,1,1,2],[2,3,1,1],[1,2,2,0]],[[1,2,2,0],[2,1,1,2],[2,3,1,0],[1,3,2,1]],[[1,2,2,0],[2,1,1,2],[2,3,1,0],[2,2,2,1]],[[1,2,2,0],[2,1,1,2],[3,3,1,0],[1,2,2,1]],[[1,2,2,0],[3,1,1,2],[2,3,1,0],[1,2,2,1]],[[1,3,2,0],[2,1,1,2],[2,3,1,0],[1,2,2,1]],[[2,2,2,0],[2,1,1,2],[2,3,1,0],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,0],[2,1,1,2],[2,4,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,1,2],[3,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,1,1,2],[2,3,0,2],[1,1,2,1]],[[1,2,3,0],[2,1,1,2],[2,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,1,1,2],[2,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,1,1,2],[2,3,0,2],[1,1,2,1]],[[1,2,2,0],[2,1,1,2],[2,3,0,2],[0,2,2,2]],[[1,2,2,0],[2,1,1,2],[2,3,0,2],[0,2,3,1]],[[1,2,2,0],[2,1,1,2],[2,3,0,2],[0,3,2,1]],[[1,2,2,0],[2,1,1,2],[2,3,0,3],[0,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,4,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,1,2],[3,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,1,3],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[3,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,2,3,0],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[2,1,1,2],[2,2,3,1],[2,2,1,0]],[[1,2,2,0],[2,1,1,2],[3,2,3,1],[1,2,1,0]],[[1,2,2,0],[3,1,1,2],[2,2,3,1],[1,2,1,0]],[[1,2,3,0],[2,1,1,2],[2,2,3,1],[1,2,1,0]],[[1,3,2,0],[2,1,1,2],[2,2,3,1],[1,2,1,0]],[[2,2,2,0],[2,1,1,2],[2,2,3,1],[1,2,1,0]],[[1,2,2,0],[2,1,1,2],[2,2,3,1],[1,3,0,1]],[[1,2,2,0],[2,1,1,2],[2,2,3,1],[2,2,0,1]],[[1,2,2,0],[2,1,1,2],[3,2,3,1],[1,2,0,1]],[[1,2,2,0],[3,1,1,2],[2,2,3,1],[1,2,0,1]],[[1,2,3,0],[2,1,1,2],[2,2,3,1],[1,2,0,1]],[[1,3,2,0],[2,1,1,2],[2,2,3,1],[1,2,0,1]],[[2,2,2,0],[2,1,1,2],[2,2,3,1],[1,2,0,1]],[[1,2,2,0],[2,1,1,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,0],[2,1,1,2],[2,2,3,1],[0,3,2,0]],[[1,2,2,0],[2,1,1,2],[2,2,4,1],[0,2,2,0]],[[1,2,2,0],[2,1,1,2],[2,2,3,0],[1,3,1,1]],[[1,2,2,0],[2,1,1,2],[2,2,3,0],[2,2,1,1]],[[1,2,2,0],[2,1,1,2],[3,2,3,0],[1,2,1,1]],[[1,2,2,0],[3,1,1,2],[2,2,3,0],[1,2,1,1]],[[1,2,3,0],[2,1,1,2],[2,2,3,0],[1,2,1,1]],[[1,3,2,0],[2,1,1,2],[2,2,3,0],[1,2,1,1]],[[2,2,2,0],[2,1,1,2],[2,2,3,0],[1,2,1,1]],[[1,2,2,0],[2,1,1,2],[2,2,3,0],[0,2,2,2]],[[1,2,2,0],[2,1,1,2],[2,2,3,0],[0,2,3,1]],[[1,2,2,0],[2,1,1,2],[2,2,3,0],[0,3,2,1]],[[1,2,2,0],[2,1,1,2],[2,2,4,0],[0,2,2,1]],[[0,3,2,1],[2,2,3,2],[2,3,2,0],[1,0,0,1]],[[0,2,3,1],[2,2,3,2],[2,3,2,0],[1,0,0,1]],[[0,2,2,2],[2,2,3,2],[2,3,2,0],[1,0,0,1]],[[0,2,2,1],[2,2,4,2],[2,3,2,0],[1,0,0,1]],[[0,3,2,1],[2,2,3,2],[2,3,2,0],[1,0,1,0]],[[0,2,3,1],[2,2,3,2],[2,3,2,0],[1,0,1,0]],[[0,2,2,2],[2,2,3,2],[2,3,2,0],[1,0,1,0]],[[0,2,2,1],[2,2,4,2],[2,3,2,0],[1,0,1,0]],[[1,2,2,0],[2,1,1,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,0],[2,1,1,2],[2,2,2,1],[1,3,2,0]],[[1,2,2,0],[2,1,1,2],[2,2,2,1],[2,2,2,0]],[[1,2,2,0],[2,1,1,2],[3,2,2,1],[1,2,2,0]],[[1,2,2,0],[3,1,1,2],[2,2,2,1],[1,2,2,0]],[[1,2,3,0],[2,1,1,2],[2,2,2,1],[1,2,2,0]],[[1,3,2,0],[2,1,1,2],[2,2,2,1],[1,2,2,0]],[[2,2,2,0],[2,1,1,2],[2,2,2,1],[1,2,2,0]],[[1,2,2,0],[2,1,1,2],[2,2,2,0],[1,2,2,2]],[[1,2,2,0],[2,1,1,2],[2,2,2,0],[1,2,3,1]],[[1,2,2,0],[2,1,1,2],[2,2,2,0],[1,3,2,1]],[[1,2,2,0],[2,1,1,2],[2,2,2,0],[2,2,2,1]],[[1,2,2,0],[2,1,1,2],[3,2,2,0],[1,2,2,1]],[[1,2,2,0],[3,1,1,2],[2,2,2,0],[1,2,2,1]],[[1,2,3,0],[2,1,1,2],[2,2,2,0],[1,2,2,1]],[[1,3,2,0],[2,1,1,2],[2,2,2,0],[1,2,2,1]],[[2,2,2,0],[2,1,1,2],[2,2,2,0],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,2,0,2],[1,2,2,2]],[[1,2,2,0],[2,1,1,2],[2,2,0,2],[1,2,3,1]],[[1,2,2,0],[2,1,1,2],[2,2,0,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,2],[2,2,0,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,2,0,3],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[3,2,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,3],[2,2,0,2],[1,2,2,1]],[[1,2,2,0],[3,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,2,3,0],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,3,2,0],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[2,2,2,0],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,0],[2,1,1,2],[2,1,3,1],[1,3,2,0]],[[1,2,2,0],[2,1,1,2],[2,1,3,1],[2,2,2,0]],[[1,2,2,0],[2,1,1,2],[2,1,4,1],[1,2,2,0]],[[1,2,2,0],[2,1,1,2],[3,1,3,1],[1,2,2,0]],[[1,2,2,0],[3,1,1,2],[2,1,3,1],[1,2,2,0]],[[1,2,3,0],[2,1,1,2],[2,1,3,1],[1,2,2,0]],[[1,3,2,0],[2,1,1,2],[2,1,3,1],[1,2,2,0]],[[2,2,2,0],[2,1,1,2],[2,1,3,1],[1,2,2,0]],[[1,2,2,0],[2,1,1,2],[2,1,3,0],[1,2,2,2]],[[1,2,2,0],[2,1,1,2],[2,1,3,0],[1,2,3,1]],[[1,2,2,0],[2,1,1,2],[2,1,3,0],[1,3,2,1]],[[1,2,2,0],[2,1,1,2],[2,1,3,0],[2,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,1,4,0],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[3,1,3,0],[1,2,2,1]],[[1,2,2,0],[3,1,1,2],[2,1,3,0],[1,2,2,1]],[[1,2,3,0],[2,1,1,2],[2,1,3,0],[1,2,2,1]],[[1,3,2,0],[2,1,1,2],[2,1,3,0],[1,2,2,1]],[[2,2,2,0],[2,1,1,2],[2,1,3,0],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,1,2],[2,0,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,1,2],[2,0,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,1,2],[2,0,3,3],[1,2,2,0]],[[1,2,2,0],[2,1,1,2],[2,0,4,2],[1,2,2,0]],[[1,2,2,0],[2,1,1,2],[3,0,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,1,3],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[3,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,3,0],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,3,2,0],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[2,2,2,0],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,1,2],[2,0,3,2],[1,2,1,2]],[[1,2,2,0],[2,1,1,2],[2,0,3,3],[1,2,1,1]],[[1,2,2,0],[2,1,1,2],[2,0,4,2],[1,2,1,1]],[[1,2,2,0],[2,1,1,3],[2,0,3,2],[1,2,1,1]],[[1,2,2,0],[2,1,1,2],[2,0,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,1,2],[2,0,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,1,2],[2,0,3,1],[1,3,2,1]],[[1,2,2,0],[2,1,1,2],[2,0,3,1],[2,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,0,4,1],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[3,0,3,1],[1,2,2,1]],[[1,2,2,0],[3,1,1,2],[2,0,3,1],[1,2,2,1]],[[1,2,3,0],[2,1,1,2],[2,0,3,1],[1,2,2,1]],[[1,3,2,0],[2,1,1,2],[2,0,3,1],[1,2,2,1]],[[2,2,2,0],[2,1,1,2],[2,0,3,1],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,0,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,1,2],[2,0,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,1,2],[2,0,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,2],[2,0,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,2],[2,0,2,3],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[3,0,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,3],[2,0,2,2],[1,2,2,1]],[[1,2,2,0],[3,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,2,3,0],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,3,2,0],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[2,2,2,0],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[2,1,1,2],[1,3,3,1],[2,2,1,0]],[[1,2,2,0],[2,1,1,2],[1,3,4,1],[1,2,1,0]],[[1,2,2,0],[2,1,1,2],[1,4,3,1],[1,2,1,0]],[[1,2,2,0],[2,1,1,2],[1,3,3,1],[1,3,0,1]],[[1,2,2,0],[2,1,1,2],[1,3,3,1],[2,2,0,1]],[[1,2,2,0],[2,1,1,2],[1,3,4,1],[1,2,0,1]],[[1,2,2,0],[2,1,1,2],[1,4,3,1],[1,2,0,1]],[[1,2,2,0],[2,1,1,2],[1,3,3,1],[1,1,3,0]],[[1,2,2,0],[2,1,1,2],[1,3,4,1],[1,1,2,0]],[[1,2,2,0],[2,1,1,2],[1,4,3,1],[1,1,2,0]],[[1,2,2,0],[2,1,1,2],[1,3,3,0],[1,3,1,1]],[[1,2,2,0],[2,1,1,2],[1,3,3,0],[2,2,1,1]],[[1,2,2,0],[2,1,1,2],[1,3,4,0],[1,2,1,1]],[[1,2,2,0],[2,1,1,2],[1,4,3,0],[1,2,1,1]],[[1,2,2,0],[2,1,1,2],[1,3,3,0],[1,1,2,2]],[[1,2,2,0],[2,1,1,2],[1,3,3,0],[1,1,3,1]],[[1,2,2,0],[2,1,1,2],[1,3,4,0],[1,1,2,1]],[[1,2,2,0],[2,1,1,2],[1,4,3,0],[1,1,2,1]],[[1,2,2,0],[2,1,1,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,0],[2,1,1,2],[1,3,2,1],[1,3,2,0]],[[1,2,2,0],[2,1,1,2],[1,3,2,1],[2,2,2,0]],[[1,2,2,0],[2,1,1,2],[1,4,2,1],[1,2,2,0]],[[1,2,2,0],[2,1,1,2],[1,3,2,0],[1,2,2,2]],[[1,2,2,0],[2,1,1,2],[1,3,2,0],[1,2,3,1]],[[1,2,2,0],[2,1,1,2],[1,3,2,0],[1,3,2,1]],[[1,2,2,0],[2,1,1,2],[1,3,2,0],[2,2,2,1]],[[1,2,2,0],[2,1,1,2],[1,4,2,0],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,0],[2,1,1,2],[1,3,0,2],[1,2,3,1]],[[1,2,2,0],[2,1,1,2],[1,3,0,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,2],[1,3,0,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,2],[1,3,0,3],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[1,4,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,3],[1,3,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,0],[2,1,1,2],[1,2,3,1],[1,3,2,0]],[[1,2,2,0],[2,1,1,2],[1,2,3,1],[2,2,2,0]],[[1,2,2,0],[2,1,1,2],[1,2,4,1],[1,2,2,0]],[[1,2,2,0],[2,1,1,2],[1,2,3,0],[1,2,2,2]],[[1,2,2,0],[2,1,1,2],[1,2,3,0],[1,2,3,1]],[[1,2,2,0],[2,1,1,2],[1,2,3,0],[1,3,2,1]],[[1,2,2,0],[2,1,1,2],[1,2,3,0],[2,2,2,1]],[[1,2,2,0],[2,1,1,2],[1,2,4,0],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[2,1,1,1],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[2,1,1,1],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[3,1,1,1],[2,3,3,2],[1,2,0,0]],[[1,2,3,0],[2,1,1,1],[2,3,3,2],[1,2,0,0]],[[1,3,2,0],[2,1,1,1],[2,3,3,2],[1,2,0,0]],[[2,2,2,0],[2,1,1,1],[2,3,3,2],[1,2,0,0]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[2,1,1,1],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[2,1,1,1],[2,3,4,2],[1,1,1,0]],[[1,2,2,0],[2,1,1,1],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[2,1,1,1],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[3,1,1,1],[2,3,3,2],[1,1,1,0]],[[1,2,3,0],[2,1,1,1],[2,3,3,2],[1,1,1,0]],[[1,3,2,0],[2,1,1,1],[2,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,1,1,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[1,1,0,2]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[2,1,0,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,3],[1,1,0,1]],[[1,2,2,0],[2,1,1,1],[2,3,4,2],[1,1,0,1]],[[1,2,2,0],[2,1,1,1],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,1,1],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[3,1,1,1],[2,3,3,2],[1,1,0,1]],[[1,2,3,0],[2,1,1,1],[2,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,1,1,1],[2,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,1,1,1],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[1,0,3,0]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[2,1,1,1],[2,3,3,3],[1,0,2,0]],[[1,2,2,0],[2,1,1,1],[2,3,4,2],[1,0,2,0]],[[1,2,2,0],[2,1,1,1],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,1,1],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[3,1,1,1],[2,3,3,2],[1,0,2,0]],[[1,2,3,0],[2,1,1,1],[2,3,3,2],[1,0,2,0]],[[1,3,2,0],[2,1,1,1],[2,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,1,1,1],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[1,0,1,2]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[2,0,1,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,3],[1,0,1,1]],[[1,2,2,0],[2,1,1,1],[2,3,4,2],[1,0,1,1]],[[1,2,2,0],[2,1,1,1],[2,4,3,2],[1,0,1,1]],[[1,2,2,0],[2,1,1,1],[3,3,3,2],[1,0,1,1]],[[1,2,2,0],[3,1,1,1],[2,3,3,2],[1,0,1,1]],[[1,2,3,0],[2,1,1,1],[2,3,3,2],[1,0,1,1]],[[1,3,2,0],[2,1,1,1],[2,3,3,2],[1,0,1,1]],[[2,2,2,0],[2,1,1,1],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,1,1,1],[2,3,3,3],[0,2,1,0]],[[1,2,2,0],[2,1,1,1],[2,3,4,2],[0,2,1,0]],[[1,2,2,0],[2,1,1,1],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[2,1,1,1],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[3,1,1,1],[2,3,3,2],[0,2,1,0]],[[1,2,3,0],[2,1,1,1],[2,3,3,2],[0,2,1,0]],[[1,3,2,0],[2,1,1,1],[2,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,1,1,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[0,2,0,2]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[0,3,0,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,3],[0,2,0,1]],[[1,2,2,0],[2,1,1,1],[2,3,4,2],[0,2,0,1]],[[1,2,2,0],[2,1,1,1],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[2,1,1,1],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[3,1,1,1],[2,3,3,2],[0,2,0,1]],[[1,2,3,0],[2,1,1,1],[2,3,3,2],[0,2,0,1]],[[1,3,2,0],[2,1,1,1],[2,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,1,1,1],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[0,1,3,0]],[[1,2,2,0],[2,1,1,1],[2,3,3,3],[0,1,2,0]],[[1,2,2,0],[2,1,1,1],[2,3,4,2],[0,1,2,0]],[[1,2,2,0],[2,1,1,1],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,1,1],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[3,1,1,1],[2,3,3,2],[0,1,2,0]],[[1,2,3,0],[2,1,1,1],[2,3,3,2],[0,1,2,0]],[[1,3,2,0],[2,1,1,1],[2,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,1,1,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[0,1,1,2]],[[1,2,2,0],[2,1,1,1],[2,3,3,3],[0,1,1,1]],[[1,2,2,0],[2,1,1,1],[2,3,4,2],[0,1,1,1]],[[1,2,2,0],[2,1,1,1],[2,4,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,1,1],[3,3,3,2],[0,1,1,1]],[[1,2,2,0],[3,1,1,1],[2,3,3,2],[0,1,1,1]],[[1,2,3,0],[2,1,1,1],[2,3,3,2],[0,1,1,1]],[[1,3,2,0],[2,1,1,1],[2,3,3,2],[0,1,1,1]],[[2,2,2,0],[2,1,1,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,2],[0,0,2,2]],[[1,2,2,0],[2,1,1,1],[2,3,3,3],[0,0,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,4,2],[0,0,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[2,1,1,1],[2,4,3,1],[1,2,0,1]],[[1,2,2,0],[2,1,1,1],[3,3,3,1],[1,2,0,1]],[[1,2,2,0],[3,1,1,1],[2,3,3,1],[1,2,0,1]],[[1,3,2,0],[2,1,1,1],[2,3,3,1],[1,2,0,1]],[[2,2,2,0],[2,1,1,1],[2,3,3,1],[1,2,0,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[2,1,1,1],[2,3,4,1],[1,1,1,1]],[[1,2,2,0],[2,1,1,1],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[2,1,1,1],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,1,1,1],[2,3,3,1],[1,1,1,1]],[[1,2,3,0],[2,1,1,1],[2,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,1,1,1],[2,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,1,1,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,1],[1,0,2,2]],[[1,2,2,0],[2,1,1,1],[2,3,3,1],[1,0,3,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,4,1],[1,0,2,1]],[[1,2,2,0],[2,1,1,1],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[2,1,1,1],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[3,1,1,1],[2,3,3,1],[1,0,2,1]],[[1,2,3,0],[2,1,1,1],[2,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,1,1,1],[2,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,1,1,1],[2,3,3,1],[1,0,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[2,1,1,1],[2,3,4,1],[0,2,1,1]],[[1,2,2,0],[2,1,1,1],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,1,1],[3,3,3,1],[0,2,1,1]],[[1,2,2,0],[3,1,1,1],[2,3,3,1],[0,2,1,1]],[[1,2,3,0],[2,1,1,1],[2,3,3,1],[0,2,1,1]],[[1,3,2,0],[2,1,1,1],[2,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,1,1,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,1],[0,1,2,2]],[[1,2,2,0],[2,1,1,1],[2,3,3,1],[0,1,3,1]],[[1,2,2,0],[2,1,1,1],[2,3,4,1],[0,1,2,1]],[[1,2,2,0],[2,1,1,1],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[2,1,1,1],[3,3,3,1],[0,1,2,1]],[[1,2,2,0],[3,1,1,1],[2,3,3,1],[0,1,2,1]],[[1,2,3,0],[2,1,1,1],[2,3,3,1],[0,1,2,1]],[[1,3,2,0],[2,1,1,1],[2,3,3,1],[0,1,2,1]],[[2,2,2,0],[2,1,1,1],[2,3,3,1],[0,1,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,0],[2,1,2,1]],[[1,2,2,0],[2,1,1,1],[2,4,3,0],[1,1,2,1]],[[1,2,2,0],[2,1,1,1],[3,3,3,0],[1,1,2,1]],[[1,2,2,0],[3,1,1,1],[2,3,3,0],[1,1,2,1]],[[1,3,2,0],[2,1,1,1],[2,3,3,0],[1,1,2,1]],[[2,2,2,0],[2,1,1,1],[2,3,3,0],[1,1,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,0],[0,2,3,1]],[[1,2,2,0],[2,1,1,1],[2,3,3,0],[0,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,4,3,0],[0,2,2,1]],[[1,2,2,0],[2,1,1,1],[3,3,3,0],[0,2,2,1]],[[1,2,2,0],[3,1,1,1],[2,3,3,0],[0,2,2,1]],[[1,3,2,0],[2,1,1,1],[2,3,3,0],[0,2,2,1]],[[2,2,2,0],[2,1,1,1],[2,3,3,0],[0,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[2,1,1,1],[2,4,2,2],[1,1,2,0]],[[1,2,2,0],[2,1,1,1],[3,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,1,1,1],[2,3,2,2],[1,1,2,0]],[[1,2,3,0],[2,1,1,1],[2,3,2,2],[1,1,2,0]],[[1,3,2,0],[2,1,1,1],[2,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,1,1,1],[2,3,2,2],[1,1,2,0]],[[1,2,2,0],[2,1,1,1],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[2,1,1,1],[2,3,2,2],[1,0,3,1]],[[1,2,2,0],[2,1,1,1],[2,3,2,3],[1,0,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,2,2],[0,2,3,0]],[[1,2,2,0],[2,1,1,1],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[2,1,1,1],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[2,1,1,1],[3,3,2,2],[0,2,2,0]],[[1,2,2,0],[3,1,1,1],[2,3,2,2],[0,2,2,0]],[[1,2,3,0],[2,1,1,1],[2,3,2,2],[0,2,2,0]],[[1,3,2,0],[2,1,1,1],[2,3,2,2],[0,2,2,0]],[[2,2,2,0],[2,1,1,1],[2,3,2,2],[0,2,2,0]],[[1,2,2,0],[2,1,1,1],[2,3,2,2],[0,1,2,2]],[[1,2,2,0],[2,1,1,1],[2,3,2,2],[0,1,3,1]],[[1,2,2,0],[2,1,1,1],[2,3,2,3],[0,1,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[2,1,1,1],[2,4,2,1],[1,1,2,1]],[[1,2,2,0],[2,1,1,1],[3,3,2,1],[1,1,2,1]],[[1,2,2,0],[3,1,1,1],[2,3,2,1],[1,1,2,1]],[[1,2,3,0],[2,1,1,1],[2,3,2,1],[1,1,2,1]],[[1,3,2,0],[2,1,1,1],[2,3,2,1],[1,1,2,1]],[[2,2,2,0],[2,1,1,1],[2,3,2,1],[1,1,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,2,1],[0,2,2,2]],[[1,2,2,0],[2,1,1,1],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[2,1,1,1],[2,3,2,1],[0,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[2,1,1,1],[3,3,2,1],[0,2,2,1]],[[1,2,2,0],[3,1,1,1],[2,3,2,1],[0,2,2,1]],[[1,2,3,0],[2,1,1,1],[2,3,2,1],[0,2,2,1]],[[1,3,2,0],[2,1,1,1],[2,3,2,1],[0,2,2,1]],[[2,2,2,0],[2,1,1,1],[2,3,2,1],[0,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,2,0],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,2,0],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[3,3,2,0],[1,2,2,1]],[[1,2,2,0],[3,1,1,1],[2,3,2,0],[1,2,2,1]],[[2,2,2,0],[2,1,1,1],[2,3,2,0],[1,2,2,1]],[[0,3,2,1],[2,2,3,2],[2,3,3,0],[1,0,0,0]],[[0,2,3,1],[2,2,3,2],[2,3,3,0],[1,0,0,0]],[[0,2,2,2],[2,2,3,2],[2,3,3,0],[1,0,0,0]],[[0,2,2,1],[2,2,4,2],[2,3,3,0],[1,0,0,0]],[[1,2,2,0],[2,1,1,1],[2,3,1,2],[1,3,2,0]],[[1,2,2,0],[2,1,1,1],[2,3,1,2],[2,2,2,0]],[[1,2,2,0],[2,1,1,1],[3,3,1,2],[1,2,2,0]],[[1,2,2,0],[3,1,1,1],[2,3,1,2],[1,2,2,0]],[[1,3,2,0],[2,1,1,1],[2,3,1,2],[1,2,2,0]],[[2,2,2,0],[2,1,1,1],[2,3,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,1,1],[2,3,1,2],[2,1,2,1]],[[1,2,2,0],[2,1,1,1],[2,4,1,2],[1,1,2,1]],[[1,2,2,0],[2,1,1,1],[3,3,1,2],[1,1,2,1]],[[1,2,2,0],[3,1,1,1],[2,3,1,2],[1,1,2,1]],[[1,2,3,0],[2,1,1,1],[2,3,1,2],[1,1,2,1]],[[1,3,2,0],[2,1,1,1],[2,3,1,2],[1,1,2,1]],[[2,2,2,0],[2,1,1,1],[2,3,1,2],[1,1,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,1,2],[0,2,2,2]],[[1,2,2,0],[2,1,1,1],[2,3,1,2],[0,2,3,1]],[[1,2,2,0],[2,1,1,1],[2,3,1,2],[0,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,1,3],[0,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,4,1,2],[0,2,2,1]],[[1,2,2,0],[2,1,1,1],[3,3,1,2],[0,2,2,1]],[[1,2,2,0],[3,1,1,1],[2,3,1,2],[0,2,2,1]],[[1,2,3,0],[2,1,1,1],[2,3,1,2],[0,2,2,1]],[[1,3,2,0],[2,1,1,1],[2,3,1,2],[0,2,2,1]],[[2,2,2,0],[2,1,1,1],[2,3,1,2],[0,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,1,1],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,1,1],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[3,3,1,1],[1,2,2,1]],[[1,2,2,0],[3,1,1,1],[2,3,1,1],[1,2,2,1]],[[1,3,2,0],[2,1,1,1],[2,3,1,1],[1,2,2,1]],[[2,2,2,0],[2,1,1,1],[2,3,1,1],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,0,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,3,0,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[3,3,0,2],[1,2,2,1]],[[1,2,2,0],[3,1,1,1],[2,3,0,2],[1,2,2,1]],[[1,3,2,0],[2,1,1,1],[2,3,0,2],[1,2,2,1]],[[2,2,2,0],[2,1,1,1],[2,3,0,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[2,1,1,1],[2,2,3,2],[2,2,1,0]],[[1,2,2,0],[2,1,1,1],[3,2,3,2],[1,2,1,0]],[[1,2,2,0],[3,1,1,1],[2,2,3,2],[1,2,1,0]],[[1,2,3,0],[2,1,1,1],[2,2,3,2],[1,2,1,0]],[[1,3,2,0],[2,1,1,1],[2,2,3,2],[1,2,1,0]],[[2,2,2,0],[2,1,1,1],[2,2,3,2],[1,2,1,0]],[[1,2,2,0],[2,1,1,1],[2,2,3,2],[1,3,0,1]],[[1,2,2,0],[2,1,1,1],[2,2,3,2],[2,2,0,1]],[[1,2,2,0],[2,1,1,1],[3,2,3,2],[1,2,0,1]],[[1,2,2,0],[3,1,1,1],[2,2,3,2],[1,2,0,1]],[[1,2,3,0],[2,1,1,1],[2,2,3,2],[1,2,0,1]],[[1,3,2,0],[2,1,1,1],[2,2,3,2],[1,2,0,1]],[[2,2,2,0],[2,1,1,1],[2,2,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,1,1],[2,2,3,2],[0,2,3,0]],[[1,2,2,0],[2,1,1,1],[2,2,3,2],[0,3,2,0]],[[1,2,2,0],[2,1,1,1],[2,2,3,3],[0,2,2,0]],[[1,2,2,0],[2,1,1,1],[2,2,4,2],[0,2,2,0]],[[1,2,2,0],[2,1,1,1],[2,2,3,2],[0,2,1,2]],[[1,2,2,0],[2,1,1,1],[2,2,3,3],[0,2,1,1]],[[1,2,2,0],[2,1,1,1],[2,2,4,2],[0,2,1,1]],[[1,2,2,0],[2,1,1,1],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[2,1,1,1],[2,2,3,1],[2,2,1,1]],[[1,2,2,0],[2,1,1,1],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[3,1,1,1],[2,2,3,1],[1,2,1,1]],[[1,2,3,0],[2,1,1,1],[2,2,3,1],[1,2,1,1]],[[1,3,2,0],[2,1,1,1],[2,2,3,1],[1,2,1,1]],[[2,2,2,0],[2,1,1,1],[2,2,3,1],[1,2,1,1]],[[1,2,2,0],[2,1,1,1],[2,2,3,1],[0,2,2,2]],[[1,2,2,0],[2,1,1,1],[2,2,3,1],[0,2,3,1]],[[1,2,2,0],[2,1,1,1],[2,2,3,1],[0,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,2,4,1],[0,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,2,3,0],[1,2,3,1]],[[1,2,2,0],[2,1,1,1],[2,2,3,0],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,2,3,0],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[3,2,3,0],[1,2,2,1]],[[1,2,2,0],[3,1,1,1],[2,2,3,0],[1,2,2,1]],[[1,3,2,0],[2,1,1,1],[2,2,3,0],[1,2,2,1]],[[2,2,2,0],[2,1,1,1],[2,2,3,0],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,2,2,2],[1,2,3,0]],[[1,2,2,0],[2,1,1,1],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[2,1,1,1],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[2,1,1,1],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[3,1,1,1],[2,2,2,2],[1,2,2,0]],[[1,2,3,0],[2,1,1,1],[2,2,2,2],[1,2,2,0]],[[1,3,2,0],[2,1,1,1],[2,2,2,2],[1,2,2,0]],[[2,2,2,0],[2,1,1,1],[2,2,2,2],[1,2,2,0]],[[1,2,2,0],[2,1,1,1],[2,2,2,2],[0,2,2,2]],[[1,2,2,0],[2,1,1,1],[2,2,2,2],[0,2,3,1]],[[1,2,2,0],[2,1,1,1],[2,2,2,2],[0,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,2,2,3],[0,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,2,2,1],[1,2,2,2]],[[1,2,2,0],[2,1,1,1],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[2,1,1,1],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[3,1,1,1],[2,2,2,1],[1,2,2,1]],[[1,2,3,0],[2,1,1,1],[2,2,2,1],[1,2,2,1]],[[1,3,2,0],[2,1,1,1],[2,2,2,1],[1,2,2,1]],[[2,2,2,0],[2,1,1,1],[2,2,2,1],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,2,1,2],[1,2,2,2]],[[1,2,2,0],[2,1,1,1],[2,2,1,2],[1,2,3,1]],[[1,2,2,0],[2,1,1,1],[2,2,1,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,2,1,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,2,1,3],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[3,2,1,2],[1,2,2,1]],[[1,2,2,0],[3,1,1,1],[2,2,1,2],[1,2,2,1]],[[1,2,3,0],[2,1,1,1],[2,2,1,2],[1,2,2,1]],[[1,3,2,0],[2,1,1,1],[2,2,1,2],[1,2,2,1]],[[2,2,2,0],[2,1,1,1],[2,2,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,1,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,1,1],[2,1,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,1,1],[2,1,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,1,1],[2,1,3,3],[1,2,2,0]],[[1,2,2,0],[2,1,1,1],[2,1,4,2],[1,2,2,0]],[[1,2,2,0],[2,1,1,1],[3,1,3,2],[1,2,2,0]],[[1,2,2,0],[3,1,1,1],[2,1,3,2],[1,2,2,0]],[[1,2,3,0],[2,1,1,1],[2,1,3,2],[1,2,2,0]],[[1,3,2,0],[2,1,1,1],[2,1,3,2],[1,2,2,0]],[[2,2,2,0],[2,1,1,1],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,1,1],[2,1,3,2],[1,2,1,2]],[[1,2,2,0],[2,1,1,1],[2,1,3,3],[1,2,1,1]],[[1,2,2,0],[2,1,1,1],[2,1,4,2],[1,2,1,1]],[[1,2,2,0],[2,1,1,1],[2,1,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,1,1],[2,1,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,1,1],[2,1,3,1],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,1,3,1],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,1,4,1],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[3,1,3,1],[1,2,2,1]],[[1,2,2,0],[3,1,1,1],[2,1,3,1],[1,2,2,1]],[[1,2,3,0],[2,1,1,1],[2,1,3,1],[1,2,2,1]],[[1,3,2,0],[2,1,1,1],[2,1,3,1],[1,2,2,1]],[[2,2,2,0],[2,1,1,1],[2,1,3,1],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,1,1],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,1,1],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[2,1,2,3],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[3,1,2,2],[1,2,2,1]],[[1,2,2,0],[3,1,1,1],[2,1,2,2],[1,2,2,1]],[[1,2,3,0],[2,1,1,1],[2,1,2,2],[1,2,2,1]],[[1,3,2,0],[2,1,1,1],[2,1,2,2],[1,2,2,1]],[[2,2,2,0],[2,1,1,1],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,1,1,1],[1,3,3,2],[2,2,1,0]],[[1,2,2,0],[2,1,1,1],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[2,1,1,1],[1,3,4,2],[1,2,1,0]],[[1,2,2,0],[2,1,1,1],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[2,1,1,1],[1,3,3,2],[1,2,0,2]],[[1,2,2,0],[2,1,1,1],[1,3,3,2],[1,3,0,1]],[[1,2,2,0],[2,1,1,1],[1,3,3,2],[2,2,0,1]],[[1,2,2,0],[2,1,1,1],[1,3,3,3],[1,2,0,1]],[[1,2,2,0],[2,1,1,1],[1,3,4,2],[1,2,0,1]],[[1,2,2,0],[2,1,1,1],[1,4,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,1,1],[1,3,3,2],[1,1,3,0]],[[1,2,2,0],[2,1,1,1],[1,3,3,3],[1,1,2,0]],[[1,2,2,0],[2,1,1,1],[1,3,4,2],[1,1,2,0]],[[1,2,2,0],[2,1,1,1],[1,4,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,1,1],[1,3,3,2],[1,1,1,2]],[[1,2,2,0],[2,1,1,1],[1,3,3,3],[1,1,1,1]],[[1,2,2,0],[2,1,1,1],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[2,1,1,1],[1,4,3,2],[1,1,1,1]],[[1,2,2,0],[2,1,1,1],[1,3,3,1],[1,3,1,1]],[[1,2,2,0],[2,1,1,1],[1,3,3,1],[2,2,1,1]],[[1,2,2,0],[2,1,1,1],[1,3,4,1],[1,2,1,1]],[[1,2,2,0],[2,1,1,1],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[2,1,1,1],[1,3,3,1],[1,1,2,2]],[[1,2,2,0],[2,1,1,1],[1,3,3,1],[1,1,3,1]],[[1,2,2,0],[2,1,1,1],[1,3,4,1],[1,1,2,1]],[[1,2,2,0],[2,1,1,1],[1,4,3,1],[1,1,2,1]],[[1,2,2,0],[2,1,1,1],[1,3,3,0],[1,2,3,1]],[[1,2,2,0],[2,1,1,1],[1,3,3,0],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[1,3,3,0],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[1,4,3,0],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[1,3,2,2],[1,2,3,0]],[[1,2,2,0],[2,1,1,1],[1,3,2,2],[1,3,2,0]],[[1,2,2,0],[2,1,1,1],[1,3,2,2],[2,2,2,0]],[[1,2,2,0],[2,1,1,1],[1,4,2,2],[1,2,2,0]],[[1,2,2,0],[2,1,1,1],[1,3,2,2],[1,1,2,2]],[[1,2,2,0],[2,1,1,1],[1,3,2,2],[1,1,3,1]],[[1,2,2,0],[2,1,1,1],[1,3,2,3],[1,1,2,1]],[[1,2,2,0],[2,1,1,1],[1,3,2,1],[1,2,2,2]],[[1,2,2,0],[2,1,1,1],[1,3,2,1],[1,2,3,1]],[[1,2,2,0],[2,1,1,1],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[1,3,1,2],[1,2,2,2]],[[1,2,2,0],[2,1,1,1],[1,3,1,2],[1,2,3,1]],[[1,2,2,0],[2,1,1,1],[1,3,1,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[1,3,1,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[1,3,1,3],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[1,4,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[1,2,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,1,1],[1,2,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,1,1],[1,2,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,1,1],[1,2,3,3],[1,2,2,0]],[[1,2,2,0],[2,1,1,1],[1,2,4,2],[1,2,2,0]],[[1,2,2,0],[2,1,1,1],[1,2,3,2],[1,2,1,2]],[[1,2,2,0],[2,1,1,1],[1,2,3,3],[1,2,1,1]],[[1,2,2,0],[2,1,1,1],[1,2,4,2],[1,2,1,1]],[[1,2,2,0],[2,1,1,1],[1,2,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,1,1],[1,2,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,1,1],[1,2,3,1],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[1,2,3,1],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[1,2,4,1],[1,2,2,1]],[[1,2,2,0],[2,1,1,1],[1,2,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,1,1],[1,2,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,1,1],[1,2,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,1],[1,2,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,1],[1,2,2,3],[1,2,2,1]],[[1,2,2,0],[2,1,1,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,0],[2,1,1,0],[2,4,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,1,0],[3,3,3,2],[1,2,0,1]],[[1,2,2,0],[3,1,1,0],[2,3,3,2],[1,2,0,1]],[[2,2,2,0],[2,1,1,0],[2,3,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,1,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,0],[2,1,1,0],[2,3,4,2],[1,1,1,1]],[[1,2,2,0],[2,1,1,0],[2,4,3,2],[1,1,1,1]],[[1,2,2,0],[2,1,1,0],[3,3,3,2],[1,1,1,1]],[[1,2,2,0],[3,1,1,0],[2,3,3,2],[1,1,1,1]],[[1,3,2,0],[2,1,1,0],[2,3,3,2],[1,1,1,1]],[[2,2,2,0],[2,1,1,0],[2,3,3,2],[1,1,1,1]],[[1,2,2,0],[2,1,1,0],[2,3,3,2],[1,0,2,2]],[[1,2,2,0],[2,1,1,0],[2,3,3,2],[1,0,3,1]],[[1,2,2,0],[2,1,1,0],[2,3,3,2],[2,0,2,1]],[[1,2,2,0],[2,1,1,0],[2,3,4,2],[1,0,2,1]],[[1,2,2,0],[2,1,1,0],[2,4,3,2],[1,0,2,1]],[[1,2,2,0],[2,1,1,0],[3,3,3,2],[1,0,2,1]],[[1,2,2,0],[3,1,1,0],[2,3,3,2],[1,0,2,1]],[[1,3,2,0],[2,1,1,0],[2,3,3,2],[1,0,2,1]],[[2,2,2,0],[2,1,1,0],[2,3,3,2],[1,0,2,1]],[[1,2,2,0],[2,1,1,0],[2,3,3,2],[0,3,1,1]],[[1,2,2,0],[2,1,1,0],[2,3,4,2],[0,2,1,1]],[[1,2,2,0],[2,1,1,0],[2,4,3,2],[0,2,1,1]],[[1,2,2,0],[2,1,1,0],[3,3,3,2],[0,2,1,1]],[[1,2,2,0],[3,1,1,0],[2,3,3,2],[0,2,1,1]],[[1,3,2,0],[2,1,1,0],[2,3,3,2],[0,2,1,1]],[[2,2,2,0],[2,1,1,0],[2,3,3,2],[0,2,1,1]],[[1,2,2,0],[2,1,1,0],[2,3,3,2],[0,1,2,2]],[[1,2,2,0],[2,1,1,0],[2,3,3,2],[0,1,3,1]],[[1,2,2,0],[2,1,1,0],[2,3,4,2],[0,1,2,1]],[[1,2,2,0],[2,1,1,0],[2,4,3,2],[0,1,2,1]],[[1,2,2,0],[2,1,1,0],[3,3,3,2],[0,1,2,1]],[[1,2,2,0],[3,1,1,0],[2,3,3,2],[0,1,2,1]],[[1,3,2,0],[2,1,1,0],[2,3,3,2],[0,1,2,1]],[[2,2,2,0],[2,1,1,0],[2,3,3,2],[0,1,2,1]],[[1,2,2,0],[2,1,1,0],[2,3,2,2],[2,1,2,1]],[[1,2,2,0],[2,1,1,0],[2,4,2,2],[1,1,2,1]],[[1,2,2,0],[2,1,1,0],[3,3,2,2],[1,1,2,1]],[[1,2,2,0],[3,1,1,0],[2,3,2,2],[1,1,2,1]],[[1,3,2,0],[2,1,1,0],[2,3,2,2],[1,1,2,1]],[[2,2,2,0],[2,1,1,0],[2,3,2,2],[1,1,2,1]],[[1,2,2,0],[2,1,1,0],[2,3,2,2],[0,2,2,2]],[[1,2,2,0],[2,1,1,0],[2,3,2,2],[0,2,3,1]],[[1,2,2,0],[2,1,1,0],[2,3,2,2],[0,3,2,1]],[[1,2,2,0],[2,1,1,0],[2,4,2,2],[0,2,2,1]],[[1,2,2,0],[2,1,1,0],[3,3,2,2],[0,2,2,1]],[[1,2,2,0],[3,1,1,0],[2,3,2,2],[0,2,2,1]],[[1,3,2,0],[2,1,1,0],[2,3,2,2],[0,2,2,1]],[[2,2,2,0],[2,1,1,0],[2,3,2,2],[0,2,2,1]],[[1,2,2,0],[2,1,1,0],[2,3,1,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,0],[2,3,1,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,0],[3,3,1,2],[1,2,2,1]],[[1,2,2,0],[3,1,1,0],[2,3,1,2],[1,2,2,1]],[[2,2,2,0],[2,1,1,0],[2,3,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,0],[2,2,3,2],[1,3,1,1]],[[1,2,2,0],[2,1,1,0],[2,2,3,2],[2,2,1,1]],[[1,2,2,0],[2,1,1,0],[3,2,3,2],[1,2,1,1]],[[1,2,2,0],[3,1,1,0],[2,2,3,2],[1,2,1,1]],[[1,3,2,0],[2,1,1,0],[2,2,3,2],[1,2,1,1]],[[2,2,2,0],[2,1,1,0],[2,2,3,2],[1,2,1,1]],[[1,2,2,0],[2,1,1,0],[2,2,3,2],[0,2,2,2]],[[1,2,2,0],[2,1,1,0],[2,2,3,2],[0,2,3,1]],[[1,2,2,0],[2,1,1,0],[2,2,3,2],[0,3,2,1]],[[1,2,2,0],[2,1,1,0],[2,2,4,2],[0,2,2,1]],[[1,2,2,0],[2,1,1,0],[2,2,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,1,0],[2,2,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,1,0],[2,2,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,0],[2,2,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,0],[3,2,2,2],[1,2,2,1]],[[1,2,2,0],[3,1,1,0],[2,2,2,2],[1,2,2,1]],[[1,3,2,0],[2,1,1,0],[2,2,2,2],[1,2,2,1]],[[2,2,2,0],[2,1,1,0],[2,2,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,0],[2,1,3,2],[1,2,2,2]],[[1,2,2,0],[2,1,1,0],[2,1,3,2],[1,2,3,1]],[[1,2,2,0],[2,1,1,0],[2,1,3,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,0],[2,1,3,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,0],[2,1,4,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,0],[3,1,3,2],[1,2,2,1]],[[1,2,2,0],[3,1,1,0],[2,1,3,2],[1,2,2,1]],[[1,3,2,0],[2,1,1,0],[2,1,3,2],[1,2,2,1]],[[2,2,2,0],[2,1,1,0],[2,1,3,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,0],[1,3,3,2],[1,3,1,1]],[[1,2,2,0],[2,1,1,0],[1,3,3,2],[2,2,1,1]],[[1,2,2,0],[2,1,1,0],[1,3,4,2],[1,2,1,1]],[[1,2,2,0],[2,1,1,0],[1,4,3,2],[1,2,1,1]],[[1,2,2,0],[2,1,1,0],[1,3,3,2],[1,1,2,2]],[[1,2,2,0],[2,1,1,0],[1,3,3,2],[1,1,3,1]],[[1,2,2,0],[2,1,1,0],[1,3,4,2],[1,1,2,1]],[[1,2,2,0],[2,1,1,0],[1,4,3,2],[1,1,2,1]],[[1,2,2,0],[2,1,1,0],[1,3,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,1,0],[1,3,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,1,0],[1,3,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,0],[1,3,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,0],[1,4,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,1,0],[1,2,3,2],[1,2,2,2]],[[1,2,2,0],[2,1,1,0],[1,2,3,2],[1,2,3,1]],[[1,2,2,0],[2,1,1,0],[1,2,3,2],[1,3,2,1]],[[1,2,2,0],[2,1,1,0],[1,2,3,2],[2,2,2,1]],[[1,2,2,0],[2,1,1,0],[1,2,4,2],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[2,1,0,2],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[2,1,0,2],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[3,1,0,2],[2,3,3,2],[1,2,0,0]],[[1,2,3,0],[2,1,0,2],[2,3,3,2],[1,2,0,0]],[[1,3,2,0],[2,1,0,2],[2,3,3,2],[1,2,0,0]],[[2,2,2,0],[2,1,0,2],[2,3,3,2],[1,2,0,0]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[2,1,0,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[2,1,0,2],[2,3,4,2],[1,1,1,0]],[[1,2,2,0],[2,1,0,2],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[2,1,0,2],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,1,0,3],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[3,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,3,0],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,3,2,0],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[1,1,0,2]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[2,1,0,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,3],[1,1,0,1]],[[1,2,2,0],[2,1,0,2],[2,3,4,2],[1,1,0,1]],[[1,2,2,0],[2,1,0,2],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,0,2],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,0,3],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[3,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,2,3,0],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[1,0,3,0]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[2,1,0,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,0],[2,1,0,2],[2,3,4,2],[1,0,2,0]],[[1,2,2,0],[2,1,0,2],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,0,2],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,0,3],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[3,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,2,3,0],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,3,2,0],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[1,0,1,2]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[2,0,1,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,3],[1,0,1,1]],[[1,2,2,0],[2,1,0,2],[2,3,4,2],[1,0,1,1]],[[1,2,2,0],[2,1,0,2],[2,4,3,2],[1,0,1,1]],[[1,2,2,0],[2,1,0,2],[3,3,3,2],[1,0,1,1]],[[1,2,2,0],[2,1,0,3],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[3,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,2,3,0],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,3,2,0],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[2,2,2,0],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,1,0,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,0],[2,1,0,2],[2,3,4,2],[0,2,1,0]],[[1,2,2,0],[2,1,0,2],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[2,1,0,2],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,1,0,3],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[3,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,3,0],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,3,2,0],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[0,2,0,2]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[0,3,0,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,3],[0,2,0,1]],[[1,2,2,0],[2,1,0,2],[2,3,4,2],[0,2,0,1]],[[1,2,2,0],[2,1,0,2],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[2,1,0,2],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[2,1,0,3],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[3,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,3,0],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,3,2,0],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[0,1,3,0]],[[1,2,2,0],[2,1,0,2],[2,3,3,3],[0,1,2,0]],[[1,2,2,0],[2,1,0,2],[2,3,4,2],[0,1,2,0]],[[1,2,2,0],[2,1,0,2],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,0,2],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,0,3],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[3,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,3,0],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,3,2,0],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[0,1,1,2]],[[1,2,2,0],[2,1,0,2],[2,3,3,3],[0,1,1,1]],[[1,2,2,0],[2,1,0,2],[2,3,4,2],[0,1,1,1]],[[1,2,2,0],[2,1,0,2],[2,4,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,0,2],[3,3,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,0,3],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[3,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,2,3,0],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,3,2,0],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[2,2,2,0],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,2],[0,0,2,2]],[[1,2,2,0],[2,1,0,2],[2,3,3,3],[0,0,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,4,2],[0,0,2,1]],[[1,2,2,0],[2,1,0,3],[2,3,3,2],[0,0,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[2,1,0,2],[2,4,3,1],[1,2,0,1]],[[1,2,2,0],[2,1,0,2],[3,3,3,1],[1,2,0,1]],[[1,2,2,0],[3,1,0,2],[2,3,3,1],[1,2,0,1]],[[1,3,2,0],[2,1,0,2],[2,3,3,1],[1,2,0,1]],[[2,2,2,0],[2,1,0,2],[2,3,3,1],[1,2,0,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[2,1,0,2],[2,3,4,1],[1,1,1,1]],[[1,2,2,0],[2,1,0,2],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[2,1,0,2],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,1,0,2],[2,3,3,1],[1,1,1,1]],[[1,2,3,0],[2,1,0,2],[2,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,1,0,2],[2,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,1,0,2],[2,3,3,1],[1,1,1,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,0],[2,1,0,2],[2,3,3,1],[1,0,3,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,4,1],[1,0,2,1]],[[1,2,2,0],[2,1,0,2],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[2,1,0,2],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[3,1,0,2],[2,3,3,1],[1,0,2,1]],[[1,2,3,0],[2,1,0,2],[2,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,1,0,2],[2,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,1,0,2],[2,3,3,1],[1,0,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[2,1,0,2],[2,3,4,1],[0,2,1,1]],[[1,2,2,0],[2,1,0,2],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,0,2],[3,3,3,1],[0,2,1,1]],[[1,2,2,0],[3,1,0,2],[2,3,3,1],[0,2,1,1]],[[1,2,3,0],[2,1,0,2],[2,3,3,1],[0,2,1,1]],[[1,3,2,0],[2,1,0,2],[2,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,1,0,2],[2,3,3,1],[0,2,1,1]],[[1,2,2,0],[2,1,0,2],[2,3,3,1],[0,1,2,2]],[[1,2,2,0],[2,1,0,2],[2,3,3,1],[0,1,3,1]],[[1,2,2,0],[2,1,0,2],[2,3,4,1],[0,1,2,1]],[[1,2,2,0],[2,1,0,2],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[2,1,0,2],[3,3,3,1],[0,1,2,1]],[[1,2,2,0],[3,1,0,2],[2,3,3,1],[0,1,2,1]],[[1,2,3,0],[2,1,0,2],[2,3,3,1],[0,1,2,1]],[[1,3,2,0],[2,1,0,2],[2,3,3,1],[0,1,2,1]],[[2,2,2,0],[2,1,0,2],[2,3,3,1],[0,1,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[2,1,0,2],[2,4,2,2],[1,1,2,0]],[[1,2,2,0],[2,1,0,2],[3,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,1,0,2],[2,3,2,2],[1,1,2,0]],[[1,2,3,0],[2,1,0,2],[2,3,2,2],[1,1,2,0]],[[1,3,2,0],[2,1,0,2],[2,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,1,0,2],[2,3,2,2],[1,1,2,0]],[[1,2,2,0],[2,1,0,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[2,1,0,2],[2,3,2,2],[1,0,3,1]],[[1,2,2,0],[2,1,0,2],[2,3,2,3],[1,0,2,1]],[[1,2,2,0],[2,1,0,3],[2,3,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,0],[0,4,3,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[0,3,3,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,0],[0,3,3,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,0],[0,3,3,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,0],[0,3,3,1],[1,2,2,2]],[[0,2,2,1],[2,3,0,0],[0,4,3,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,0],[0,3,3,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,0],[0,3,3,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,0],[0,3,3,2],[1,2,3,0]],[[0,2,2,1],[2,3,0,0],[1,4,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[1,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,0,0],[1,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,0,0],[1,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,0,0],[1,3,1,2],[1,2,2,2]],[[0,2,2,1],[2,3,0,0],[1,4,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[1,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,0],[1,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,0],[1,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,0],[1,3,2,1],[1,2,2,2]],[[0,2,2,1],[2,3,0,0],[1,4,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,0],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,0],[1,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,0],[1,3,2,2],[1,2,3,0]],[[0,2,2,1],[2,3,0,0],[1,4,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[1,3,3,0],[2,2,2,1]],[[0,2,2,1],[2,3,0,0],[1,3,3,0],[1,3,2,1]],[[0,2,2,1],[2,3,0,0],[1,3,3,0],[1,2,3,1]],[[0,2,2,1],[2,3,0,0],[1,4,3,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,0],[1,3,3,1],[0,3,2,1]],[[0,2,2,1],[2,3,0,0],[1,3,3,1],[0,2,3,1]],[[0,2,2,1],[2,3,0,0],[1,3,3,1],[0,2,2,2]],[[0,2,2,1],[2,3,0,0],[1,4,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,0,0],[1,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,3,0,0],[1,3,3,1],[1,3,1,1]],[[0,2,2,1],[2,3,0,0],[1,4,3,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,0],[1,3,3,2],[0,3,2,0]],[[0,2,2,1],[2,3,0,0],[1,3,3,2],[0,2,3,0]],[[0,2,2,1],[2,3,0,0],[1,4,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,0],[1,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,3,0,0],[1,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,3,0,0],[1,4,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,0],[1,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,3,0,0],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,1,0,2],[2,3,2,2],[0,2,3,0]],[[1,2,2,0],[2,1,0,2],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[2,1,0,2],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[2,1,0,2],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[3,3,0,0],[2,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[3,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,2,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,2,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,0,0],[2,2,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,0,0],[2,2,1,2],[1,2,2,2]],[[0,2,2,1],[3,3,0,0],[2,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[3,2,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,2,2,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,2,2,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,0],[2,2,2,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,0],[2,2,2,1],[1,2,2,2]],[[0,2,2,1],[3,3,0,0],[2,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,0],[3,2,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,0],[2,2,2,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,0],[2,2,2,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,0],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[3,3,0,0],[2,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[3,2,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,2,3,0],[2,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,2,3,0],[1,3,2,1]],[[0,2,2,1],[2,3,0,0],[2,2,3,0],[1,2,3,1]],[[0,2,2,1],[3,3,0,0],[2,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,0,0],[3,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,0,0],[2,2,3,1],[2,2,1,1]],[[0,2,2,1],[2,3,0,0],[2,2,3,1],[1,3,1,1]],[[0,2,2,1],[3,3,0,0],[2,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,0],[3,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,0],[2,2,3,2],[2,2,0,1]],[[0,2,2,1],[2,3,0,0],[2,2,3,2],[1,3,0,1]],[[0,2,2,1],[3,3,0,0],[2,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,0],[3,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,0],[2,2,3,2],[2,2,1,0]],[[0,2,2,1],[2,3,0,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[3,1,0,2],[2,3,2,2],[0,2,2,0]],[[1,2,3,0],[2,1,0,2],[2,3,2,2],[0,2,2,0]],[[1,3,2,0],[2,1,0,2],[2,3,2,2],[0,2,2,0]],[[2,2,2,0],[2,1,0,2],[2,3,2,2],[0,2,2,0]],[[1,2,2,0],[2,1,0,2],[2,3,2,2],[0,1,2,2]],[[1,2,2,0],[2,1,0,2],[2,3,2,2],[0,1,3,1]],[[0,2,2,1],[3,3,0,0],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[3,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,0,2],[1,3,2,1]],[[0,2,2,1],[3,3,0,0],[2,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[3,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,1,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,1,1],[1,3,2,1]],[[0,2,2,1],[3,3,0,0],[2,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,0],[3,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,4,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,1,2],[0,3,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,1,2],[0,2,3,1]],[[0,2,2,1],[2,3,0,0],[2,3,1,2],[0,2,2,2]],[[0,2,2,1],[3,3,0,0],[2,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,0],[3,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,0],[2,4,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,1,2],[2,1,2,1]],[[0,2,2,1],[3,3,0,0],[2,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,0],[3,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,0],[2,3,1,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,0],[2,3,1,2],[1,3,2,0]],[[0,2,2,1],[3,3,0,0],[2,3,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[3,3,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,2,0],[2,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,2,0],[1,3,2,1]],[[0,2,2,1],[3,3,0,0],[2,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,0],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,4,2,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,2,1],[0,3,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,2,1],[0,2,3,1]],[[0,2,2,1],[2,3,0,0],[2,3,2,1],[0,2,2,2]],[[0,2,2,1],[3,3,0,0],[2,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,0],[3,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,0],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,2,1],[2,1,2,1]],[[0,2,2,1],[3,3,0,0],[2,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,0],[3,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,0],[2,4,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,0],[2,3,2,2],[0,3,2,0]],[[0,2,2,1],[2,3,0,0],[2,3,2,2],[0,2,3,0]],[[0,2,2,1],[3,3,0,0],[2,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,0],[3,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,0],[2,4,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,0],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[2,1,0,2],[2,3,2,3],[0,1,2,1]],[[1,2,2,0],[2,1,0,3],[2,3,2,2],[0,1,2,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,0],[3,3,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,4,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,3,0],[0,3,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,3,0],[0,2,3,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,0],[3,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,0],[2,4,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,3,0],[2,1,2,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,3,0,0],[3,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,3,0,0],[2,4,3,1],[0,1,2,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,0,0],[3,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,0,0],[2,4,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,0,0],[2,3,3,1],[0,3,1,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,0,0],[3,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,0,0],[2,4,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,0,0],[2,3,3,1],[2,0,2,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,0,0],[3,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,0,0],[2,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,0,0],[2,3,3,1],[2,1,1,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,0,0],[3,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,0,0],[2,4,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,0,0],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[2,1,0,2],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[2,1,0,2],[2,4,2,1],[1,1,2,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,0],[3,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,0],[2,4,3,2],[0,1,1,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,0],[3,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,0],[2,4,3,2],[0,1,2,0]],[[0,2,2,1],[3,3,0,0],[2,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,0],[3,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,0],[2,4,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,0],[2,3,3,2],[0,3,0,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,0],[3,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,0],[2,4,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,0],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,1,0,2],[3,3,2,1],[1,1,2,1]],[[1,2,2,0],[3,1,0,2],[2,3,2,1],[1,1,2,1]],[[1,2,3,0],[2,1,0,2],[2,3,2,1],[1,1,2,1]],[[1,3,2,0],[2,1,0,2],[2,3,2,1],[1,1,2,1]],[[2,2,2,0],[2,1,0,2],[2,3,2,1],[1,1,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,2,1],[0,2,2,2]],[[0,2,2,1],[3,3,0,0],[2,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,0],[3,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,0],[2,4,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,0],[2,3,3,2],[2,0,1,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,0],[3,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,0],[2,4,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,0],[2,3,3,2],[2,0,2,0]],[[0,2,2,1],[3,3,0,0],[2,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,0],[3,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,0],[2,4,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,0],[2,3,3,2],[2,1,0,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,0],[3,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,0],[2,4,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[2,1,0,2],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[2,1,0,2],[2,3,2,1],[0,3,2,1]],[[1,2,2,0],[2,1,0,2],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[2,1,0,2],[3,3,2,1],[0,2,2,1]],[[0,2,2,1],[3,3,0,0],[2,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,3,0,0],[3,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,3,0,0],[2,4,3,2],[1,2,0,0]],[[0,2,2,1],[2,3,0,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[3,1,0,2],[2,3,2,1],[0,2,2,1]],[[1,2,3,0],[2,1,0,2],[2,3,2,1],[0,2,2,1]],[[1,3,2,0],[2,1,0,2],[2,3,2,1],[0,2,2,1]],[[2,2,2,0],[2,1,0,2],[2,3,2,1],[0,2,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,1,2],[1,3,2,0]],[[1,2,2,0],[2,1,0,2],[2,3,1,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,1],[0,2,2,3],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[0,2,2,2],[2,2,2,1]],[[0,2,2,1],[2,3,0,1],[0,2,2,2],[1,3,2,1]],[[0,2,2,1],[2,3,0,1],[0,2,2,2],[1,2,3,1]],[[0,2,2,1],[2,3,0,1],[0,2,2,2],[1,2,2,2]],[[0,2,2,1],[2,3,0,1],[0,2,4,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[0,2,3,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,1],[0,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,1],[0,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,1],[0,2,3,1],[1,2,2,2]],[[0,2,2,1],[2,3,0,1],[0,2,4,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[0,2,3,3],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[0,2,3,2],[1,2,1,2]],[[0,2,2,1],[2,3,0,1],[0,2,4,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[0,2,3,3],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[0,2,3,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,1],[0,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,1],[0,2,3,2],[1,2,3,0]],[[0,3,2,1],[2,3,0,1],[0,3,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,0,1],[0,3,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,0,1],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,0,1],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,0,1],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[0,4,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,1,3],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,0,1],[0,3,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,0,1],[0,3,2,1],[1,2,2,1]],[[0,2,3,1],[2,3,0,1],[0,3,2,1],[1,2,2,1]],[[0,2,2,2],[2,3,0,1],[0,3,2,1],[1,2,2,1]],[[0,2,2,1],[3,3,0,1],[0,3,2,1],[1,2,2,1]],[[0,2,2,1],[2,4,0,1],[0,3,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[0,4,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,1],[0,3,2,1],[1,2,2,2]],[[0,2,2,1],[2,3,0,1],[0,3,2,3],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,2,2],[1,1,3,1]],[[0,2,2,1],[2,3,0,1],[0,3,2,2],[1,1,2,2]],[[0,3,2,1],[2,3,0,1],[0,3,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,0,1],[0,3,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,0,1],[0,3,2,2],[1,2,2,0]],[[0,2,2,1],[3,3,0,1],[0,3,2,2],[1,2,2,0]],[[0,2,2,1],[2,4,0,1],[0,3,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[0,4,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[0,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,1],[0,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,1],[0,3,2,2],[1,2,3,0]],[[0,3,2,1],[2,3,0,1],[0,3,3,1],[1,1,2,1]],[[0,2,3,1],[2,3,0,1],[0,3,3,1],[1,1,2,1]],[[0,2,2,2],[2,3,0,1],[0,3,3,1],[1,1,2,1]],[[0,2,2,1],[3,3,0,1],[0,3,3,1],[1,1,2,1]],[[0,2,2,1],[2,4,0,1],[0,3,3,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[0,4,3,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,4,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,1],[1,1,3,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,1],[1,1,2,2]],[[0,3,2,1],[2,3,0,1],[0,3,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,0,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,0,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[3,3,0,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[2,4,0,1],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[0,4,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[0,3,4,1],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,1],[1,3,1,1]],[[0,2,2,1],[2,3,0,1],[0,3,4,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,3],[1,0,2,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,2],[1,0,2,2]],[[0,3,2,1],[2,3,0,1],[0,3,3,2],[1,1,1,1]],[[0,2,3,1],[2,3,0,1],[0,3,3,2],[1,1,1,1]],[[0,2,2,2],[2,3,0,1],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[3,3,0,1],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,4,0,1],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[0,4,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[0,3,4,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,3],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,2],[1,1,1,2]],[[0,3,2,1],[2,3,0,1],[0,3,3,2],[1,1,2,0]],[[0,2,3,1],[2,3,0,1],[0,3,3,2],[1,1,2,0]],[[0,2,2,2],[2,3,0,1],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[3,3,0,1],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,4,0,1],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,1],[0,4,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,1],[0,3,4,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,1],[0,3,3,3],[1,1,2,0]],[[0,2,2,1],[2,3,0,1],[0,3,3,2],[1,1,3,0]],[[0,3,2,1],[2,3,0,1],[0,3,3,2],[1,2,0,1]],[[0,2,3,1],[2,3,0,1],[0,3,3,2],[1,2,0,1]],[[0,2,2,2],[2,3,0,1],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[3,3,0,1],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,4,0,1],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,1],[0,4,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,1],[0,3,4,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,3],[1,2,0,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,3,0,1],[0,3,3,2],[1,2,0,2]],[[0,3,2,1],[2,3,0,1],[0,3,3,2],[1,2,1,0]],[[0,2,3,1],[2,3,0,1],[0,3,3,2],[1,2,1,0]],[[0,2,2,2],[2,3,0,1],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[3,3,0,1],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,4,0,1],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,1],[0,4,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,1],[0,3,4,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,1],[0,3,3,3],[1,2,1,0]],[[0,2,2,1],[2,3,0,1],[0,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,3,0,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,1,0,2],[3,3,1,2],[1,2,2,0]],[[1,2,2,0],[3,1,0,2],[2,3,1,2],[1,2,2,0]],[[1,3,2,0],[2,1,0,2],[2,3,1,2],[1,2,2,0]],[[2,2,2,0],[2,1,0,2],[2,3,1,2],[1,2,2,0]],[[1,2,2,0],[2,1,0,2],[2,3,1,2],[2,1,2,1]],[[1,2,2,0],[2,1,0,2],[2,4,1,2],[1,1,2,1]],[[1,2,2,0],[2,1,0,2],[3,3,1,2],[1,1,2,1]],[[1,2,2,0],[3,1,0,2],[2,3,1,2],[1,1,2,1]],[[1,2,3,0],[2,1,0,2],[2,3,1,2],[1,1,2,1]],[[1,3,2,0],[2,1,0,2],[2,3,1,2],[1,1,2,1]],[[2,2,2,0],[2,1,0,2],[2,3,1,2],[1,1,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,1,2],[0,2,2,2]],[[0,2,2,1],[2,3,0,1],[1,2,2,3],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[1,2,2,2],[0,3,2,1]],[[0,2,2,1],[2,3,0,1],[1,2,2,2],[0,2,3,1]],[[0,2,2,1],[2,3,0,1],[1,2,2,2],[0,2,2,2]],[[0,2,2,1],[2,3,0,1],[1,2,4,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[1,2,3,1],[0,3,2,1]],[[0,2,2,1],[2,3,0,1],[1,2,3,1],[0,2,3,1]],[[0,2,2,1],[2,3,0,1],[1,2,3,1],[0,2,2,2]],[[0,2,2,1],[2,3,0,1],[1,2,4,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,1],[1,2,3,3],[0,2,1,1]],[[0,2,2,1],[2,3,0,1],[1,2,3,2],[0,2,1,2]],[[0,2,2,1],[2,3,0,1],[1,2,4,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,1],[1,2,3,3],[0,2,2,0]],[[0,2,2,1],[2,3,0,1],[1,2,3,2],[0,3,2,0]],[[0,2,2,1],[2,3,0,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[2,1,0,2],[2,3,1,2],[0,2,3,1]],[[1,2,2,0],[2,1,0,2],[2,3,1,2],[0,3,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,1,3],[0,2,2,1]],[[1,2,2,0],[2,1,0,2],[2,4,1,2],[0,2,2,1]],[[1,2,2,0],[2,1,0,2],[3,3,1,2],[0,2,2,1]],[[1,2,2,0],[2,1,0,3],[2,3,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,0,1],[1,3,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,0,1],[1,3,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,0,1],[1,3,1,2],[0,2,2,1]],[[0,2,2,1],[3,3,0,1],[1,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,4,0,1],[1,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[1,4,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,1,3],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,1,2],[0,3,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,1,2],[0,2,3,1]],[[0,2,2,1],[2,3,0,1],[1,3,1,2],[0,2,2,2]],[[0,3,2,1],[2,3,0,1],[1,3,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,0,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,0,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[3,3,0,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,4,0,1],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[1,4,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[1,4,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,2,0],[2,2,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,2,0],[1,3,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,2,0],[1,2,3,1]],[[0,3,2,1],[2,3,0,1],[1,3,2,1],[0,2,2,1]],[[0,2,3,1],[2,3,0,1],[1,3,2,1],[0,2,2,1]],[[0,2,2,2],[2,3,0,1],[1,3,2,1],[0,2,2,1]],[[0,2,2,1],[3,3,0,1],[1,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,4,0,1],[1,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[1,4,2,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,2,1],[0,3,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,2,1],[0,2,3,1]],[[0,2,2,1],[2,3,0,1],[1,3,2,1],[0,2,2,2]],[[0,3,2,1],[2,3,0,1],[1,3,2,1],[1,1,2,1]],[[0,2,3,1],[2,3,0,1],[1,3,2,1],[1,1,2,1]],[[0,2,2,2],[2,3,0,1],[1,3,2,1],[1,1,2,1]],[[0,2,2,1],[3,3,0,1],[1,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,4,0,1],[1,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[1,4,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[1,4,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[1,3,2,1],[2,2,2,0]],[[0,2,2,1],[2,3,0,1],[1,3,2,1],[1,3,2,0]],[[0,2,2,1],[2,3,0,1],[1,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,3,0,1],[1,3,2,2],[0,1,2,2]],[[0,3,2,1],[2,3,0,1],[1,3,2,2],[0,2,2,0]],[[0,2,3,1],[2,3,0,1],[1,3,2,2],[0,2,2,0]],[[0,2,2,2],[2,3,0,1],[1,3,2,2],[0,2,2,0]],[[0,2,2,1],[3,3,0,1],[1,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,4,0,1],[1,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,1],[1,4,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,1],[1,3,2,2],[0,3,2,0]],[[0,2,2,1],[2,3,0,1],[1,3,2,2],[0,2,3,0]],[[0,2,2,1],[2,3,0,1],[1,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,2,2],[1,0,3,1]],[[0,2,2,1],[2,3,0,1],[1,3,2,2],[1,0,2,2]],[[0,3,2,1],[2,3,0,1],[1,3,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,0,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,0,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[3,3,0,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,4,0,1],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,1],[1,4,2,2],[1,1,2,0]],[[1,2,2,0],[3,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,3,0],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,3,2,0],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[2,2,2,0],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,1,1],[1,3,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,1,1],[2,2,2,1]],[[1,2,2,0],[2,1,0,2],[3,3,1,1],[1,2,2,1]],[[1,2,2,0],[3,1,0,2],[2,3,1,1],[1,2,2,1]],[[1,3,2,0],[2,1,0,2],[2,3,1,1],[1,2,2,1]],[[2,2,2,0],[2,1,0,2],[2,3,1,1],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[2,3,0,2],[1,3,2,1]],[[0,2,2,1],[2,3,0,1],[1,4,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,0],[2,2,1,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,0],[1,3,1,1]],[[0,3,2,1],[2,3,0,1],[1,3,3,1],[0,1,2,1]],[[0,2,3,1],[2,3,0,1],[1,3,3,1],[0,1,2,1]],[[0,2,2,2],[2,3,0,1],[1,3,3,1],[0,1,2,1]],[[0,2,2,1],[3,3,0,1],[1,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,4,0,1],[1,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,3,0,1],[1,4,3,1],[0,1,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,1],[0,1,2,2]],[[0,3,2,1],[2,3,0,1],[1,3,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,0,1],[1,3,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,0,1],[1,3,3,1],[0,2,1,1]],[[0,2,2,1],[3,3,0,1],[1,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,4,0,1],[1,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,0,1],[1,4,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,0,1],[1,3,4,1],[0,2,1,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,1],[0,3,1,1]],[[0,3,2,1],[2,3,0,1],[1,3,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,0,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,0,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[3,3,0,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,4,0,1],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,0,1],[1,4,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,4,1],[1,0,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,1],[1,0,3,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,1],[1,0,2,2]],[[0,3,2,1],[2,3,0,1],[1,3,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,0,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,0,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,0,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,0,1],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[1,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[1,3,4,1],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[1,4,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,0,1],[1,3,3,1],[2,2,1,0]],[[0,2,2,1],[2,3,0,1],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[2,1,0,2],[2,3,0,2],[2,2,2,1]],[[1,2,2,0],[2,1,0,2],[3,3,0,2],[1,2,2,1]],[[1,2,2,0],[3,1,0,2],[2,3,0,2],[1,2,2,1]],[[1,3,2,0],[2,1,0,2],[2,3,0,2],[1,2,2,1]],[[2,2,2,0],[2,1,0,2],[2,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,2],[0,0,2,2]],[[0,3,2,1],[2,3,0,1],[1,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,0,1],[1,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,0,1],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[3,3,0,1],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,4,0,1],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,1],[1,4,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,1],[1,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,2],[0,1,1,2]],[[0,3,2,1],[2,3,0,1],[1,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,0,1],[1,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,0,1],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[3,3,0,1],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,4,0,1],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,1],[1,4,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,1],[1,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,1],[1,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,3,0,1],[1,3,3,2],[0,1,3,0]],[[0,3,2,1],[2,3,0,1],[1,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,0,1],[1,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,0,1],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[3,3,0,1],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,4,0,1],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,1],[1,4,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,1],[1,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,2],[0,3,0,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,2],[0,2,0,2]],[[0,3,2,1],[2,3,0,1],[1,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,0,1],[1,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,0,1],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[3,3,0,1],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,4,0,1],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,1],[1,4,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,1],[1,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,1],[1,3,3,3],[0,2,1,0]],[[0,2,2,1],[2,3,0,1],[1,3,3,2],[0,3,1,0]],[[0,3,2,1],[2,3,0,1],[1,3,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,0,1],[1,3,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,0,1],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[3,3,0,1],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,4,0,1],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,1],[1,4,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,1],[1,3,4,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,3],[1,0,1,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,2],[1,0,1,2]],[[0,3,2,1],[2,3,0,1],[1,3,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,0,1],[1,3,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,0,1],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[3,3,0,1],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,4,0,1],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,1],[1,4,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,1],[1,3,4,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,1],[1,3,3,3],[1,0,2,0]],[[0,2,2,1],[2,3,0,1],[1,3,3,2],[1,0,3,0]],[[0,3,2,1],[2,3,0,1],[1,3,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,0,1],[1,3,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,0,1],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[3,3,0,1],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,4,0,1],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,1],[1,4,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,1],[1,3,4,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,3],[1,1,0,1]],[[0,2,2,1],[2,3,0,1],[1,3,3,2],[1,1,0,2]],[[0,3,2,1],[2,3,0,1],[1,3,3,2],[1,1,1,0]],[[0,2,3,1],[2,3,0,1],[1,3,3,2],[1,1,1,0]],[[0,2,2,2],[2,3,0,1],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[3,3,0,1],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,4,0,1],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,1],[1,4,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,1],[1,3,4,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[2,1,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[2,1,0,2],[2,2,3,2],[2,2,1,0]],[[1,2,2,0],[2,1,0,2],[3,2,3,2],[1,2,1,0]],[[1,2,2,0],[3,1,0,2],[2,2,3,2],[1,2,1,0]],[[1,2,3,0],[2,1,0,2],[2,2,3,2],[1,2,1,0]],[[0,3,2,1],[2,3,0,1],[1,3,3,2],[1,2,0,0]],[[0,2,3,1],[2,3,0,1],[1,3,3,2],[1,2,0,0]],[[0,2,2,2],[2,3,0,1],[1,3,3,2],[1,2,0,0]],[[0,2,2,1],[3,3,0,1],[1,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,4,0,1],[1,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,3,0,1],[1,4,3,2],[1,2,0,0]],[[1,3,2,0],[2,1,0,2],[2,2,3,2],[1,2,1,0]],[[2,2,2,0],[2,1,0,2],[2,2,3,2],[1,2,1,0]],[[1,2,2,0],[2,1,0,2],[2,2,3,2],[1,3,0,1]],[[1,2,2,0],[2,1,0,2],[2,2,3,2],[2,2,0,1]],[[1,2,2,0],[2,1,0,2],[3,2,3,2],[1,2,0,1]],[[1,2,2,0],[3,1,0,2],[2,2,3,2],[1,2,0,1]],[[1,2,3,0],[2,1,0,2],[2,2,3,2],[1,2,0,1]],[[1,3,2,0],[2,1,0,2],[2,2,3,2],[1,2,0,1]],[[2,2,2,0],[2,1,0,2],[2,2,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,0,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,0],[2,1,0,2],[2,2,3,2],[0,3,2,0]],[[1,2,2,0],[2,1,0,2],[2,2,3,3],[0,2,2,0]],[[1,2,2,0],[2,1,0,2],[2,2,4,2],[0,2,2,0]],[[1,2,2,0],[2,1,0,3],[2,2,3,2],[0,2,2,0]],[[1,2,2,0],[2,1,0,2],[2,2,3,2],[0,2,1,2]],[[1,2,2,0],[2,1,0,2],[2,2,3,3],[0,2,1,1]],[[1,2,2,0],[2,1,0,2],[2,2,4,2],[0,2,1,1]],[[1,2,2,0],[2,1,0,3],[2,2,3,2],[0,2,1,1]],[[0,3,2,1],[2,3,0,1],[2,0,2,2],[1,2,2,1]],[[0,2,3,1],[2,3,0,1],[2,0,2,2],[1,2,2,1]],[[0,2,2,2],[2,3,0,1],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[3,3,0,1],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,4,0,1],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[3,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,0,2,3],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,0,2,2],[2,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,0,2,2],[1,3,2,1]],[[0,2,2,1],[2,3,0,1],[2,0,2,2],[1,2,3,1]],[[0,2,2,1],[2,3,0,1],[2,0,2,2],[1,2,2,2]],[[0,3,2,1],[2,3,0,1],[2,0,3,1],[1,2,2,1]],[[0,2,3,1],[2,3,0,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,2],[2,3,0,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[3,3,0,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,4,0,1],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[3,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,0,4,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,0,3,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,0,3,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,1],[2,0,3,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,1],[2,0,3,1],[1,2,2,2]],[[0,2,2,1],[2,3,0,1],[2,0,4,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[2,0,3,3],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[2,0,3,2],[1,2,1,2]],[[0,3,2,1],[2,3,0,1],[2,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,3,0,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,3,0,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[3,3,0,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,4,0,1],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[3,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,0,4,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,0,3,3],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,0,3,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,0,3,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,1],[2,0,3,2],[1,2,3,0]],[[0,3,2,1],[2,3,0,1],[2,1,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,0,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,0,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,0,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,0,1],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[3,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,1,1,3],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,1,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,1,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,0,1],[2,1,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,0,1],[2,1,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,0,1],[2,1,2,1],[1,2,2,1]],[[0,2,3,1],[2,3,0,1],[2,1,2,1],[1,2,2,1]],[[0,2,2,2],[2,3,0,1],[2,1,2,1],[1,2,2,1]],[[0,2,2,1],[3,3,0,1],[2,1,2,1],[1,2,2,1]],[[0,2,2,1],[2,4,0,1],[2,1,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[3,1,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,1,2,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,1,2,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,1],[2,1,2,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,1],[2,1,2,1],[1,2,2,2]],[[0,3,2,1],[2,3,0,1],[2,1,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,0,1],[2,1,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,0,1],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[3,3,0,1],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,4,0,1],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[3,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,1,2,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,1,2,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,1],[2,1,2,2],[1,2,3,0]],[[0,3,2,1],[2,3,0,1],[2,1,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,0,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,0,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[3,3,0,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,4,0,1],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[3,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[2,1,3,1],[2,2,1,1]],[[0,2,2,1],[2,3,0,1],[2,1,3,1],[1,3,1,1]],[[0,3,2,1],[2,3,0,1],[2,1,3,2],[1,2,0,1]],[[0,2,3,1],[2,3,0,1],[2,1,3,2],[1,2,0,1]],[[0,2,2,2],[2,3,0,1],[2,1,3,2],[1,2,0,1]],[[0,2,2,1],[3,3,0,1],[2,1,3,2],[1,2,0,1]],[[0,2,2,1],[2,4,0,1],[2,1,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,1],[3,1,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,1],[2,1,3,2],[2,2,0,1]],[[0,2,2,1],[2,3,0,1],[2,1,3,2],[1,3,0,1]],[[0,3,2,1],[2,3,0,1],[2,1,3,2],[1,2,1,0]],[[0,2,3,1],[2,3,0,1],[2,1,3,2],[1,2,1,0]],[[0,2,2,2],[2,3,0,1],[2,1,3,2],[1,2,1,0]],[[0,2,2,1],[3,3,0,1],[2,1,3,2],[1,2,1,0]],[[0,2,2,1],[2,4,0,1],[2,1,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,1],[3,1,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,1],[2,1,3,2],[2,2,1,0]],[[0,2,2,1],[2,3,0,1],[2,1,3,2],[1,3,1,0]],[[1,2,2,0],[2,1,0,2],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[2,1,0,2],[2,2,3,1],[2,2,1,1]],[[1,2,2,0],[2,1,0,2],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[3,1,0,2],[2,2,3,1],[1,2,1,1]],[[1,2,3,0],[2,1,0,2],[2,2,3,1],[1,2,1,1]],[[1,3,2,0],[2,1,0,2],[2,2,3,1],[1,2,1,1]],[[2,2,2,0],[2,1,0,2],[2,2,3,1],[1,2,1,1]],[[1,2,2,0],[2,1,0,2],[2,2,3,1],[0,2,2,2]],[[1,2,2,0],[2,1,0,2],[2,2,3,1],[0,2,3,1]],[[1,2,2,0],[2,1,0,2],[2,2,3,1],[0,3,2,1]],[[1,2,2,0],[2,1,0,2],[2,2,4,1],[0,2,2,1]],[[0,3,2,1],[2,3,0,1],[2,2,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,0,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,0,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[3,3,0,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,4,0,1],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[3,2,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,0,1],[2,2,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,0,1],[2,2,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,0,1],[2,2,1,2],[1,1,2,1]],[[0,2,2,1],[3,3,0,1],[2,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,4,0,1],[2,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[3,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[2,2,1,2],[2,1,2,1]],[[0,2,2,1],[3,3,0,1],[2,2,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[3,2,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,2,2,0],[2,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,2,2,0],[1,3,2,1]],[[0,2,2,1],[2,3,0,1],[2,2,2,0],[1,2,3,1]],[[0,3,2,1],[2,3,0,1],[2,2,2,1],[0,2,2,1]],[[0,2,3,1],[2,3,0,1],[2,2,2,1],[0,2,2,1]],[[0,2,2,2],[2,3,0,1],[2,2,2,1],[0,2,2,1]],[[0,2,2,1],[3,3,0,1],[2,2,2,1],[0,2,2,1]],[[0,2,2,1],[2,4,0,1],[2,2,2,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[3,2,2,1],[0,2,2,1]],[[0,3,2,1],[2,3,0,1],[2,2,2,1],[1,1,2,1]],[[0,2,3,1],[2,3,0,1],[2,2,2,1],[1,1,2,1]],[[0,2,2,2],[2,3,0,1],[2,2,2,1],[1,1,2,1]],[[0,2,2,1],[3,3,0,1],[2,2,2,1],[1,1,2,1]],[[0,2,2,1],[2,4,0,1],[2,2,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[3,2,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[2,2,2,1],[2,1,2,1]],[[0,2,2,1],[3,3,0,1],[2,2,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[3,2,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,2,2,1],[2,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,2,2,1],[1,3,2,0]],[[0,3,2,1],[2,3,0,1],[2,2,2,2],[0,2,2,0]],[[0,2,3,1],[2,3,0,1],[2,2,2,2],[0,2,2,0]],[[0,2,2,2],[2,3,0,1],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[3,3,0,1],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,4,0,1],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,1],[3,2,2,2],[0,2,2,0]],[[0,3,2,1],[2,3,0,1],[2,2,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,0,1],[2,2,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,0,1],[2,2,2,2],[1,1,2,0]],[[0,2,2,1],[3,3,0,1],[2,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,4,0,1],[2,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,1],[3,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,1],[2,2,2,2],[2,1,2,0]],[[1,2,2,0],[2,1,0,2],[2,2,2,2],[1,2,3,0]],[[0,2,2,1],[3,3,0,1],[2,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[3,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,0,1],[2,2,3,0],[2,2,1,1]],[[0,2,2,1],[2,3,0,1],[2,2,3,0],[1,3,1,1]],[[0,3,2,1],[2,3,0,1],[2,2,3,1],[0,1,2,1]],[[0,2,3,1],[2,3,0,1],[2,2,3,1],[0,1,2,1]],[[0,2,2,2],[2,3,0,1],[2,2,3,1],[0,1,2,1]],[[0,2,2,1],[3,3,0,1],[2,2,3,1],[0,1,2,1]],[[0,2,2,1],[2,4,0,1],[2,2,3,1],[0,1,2,1]],[[0,2,2,1],[2,3,0,1],[3,2,3,1],[0,1,2,1]],[[0,3,2,1],[2,3,0,1],[2,2,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,0,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,0,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[3,3,0,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,4,0,1],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,0,1],[3,2,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,0,1],[2,2,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,0,1],[2,2,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,0,1],[2,2,3,1],[1,0,2,1]],[[0,2,2,1],[3,3,0,1],[2,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,4,0,1],[2,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,0,1],[3,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,0,1],[2,2,3,1],[2,0,2,1]],[[0,3,2,1],[2,3,0,1],[2,2,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,0,1],[2,2,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,0,1],[2,2,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,0,1],[2,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,0,1],[2,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[3,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[2,2,3,1],[2,1,1,1]],[[0,2,2,1],[3,3,0,1],[2,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,0,1],[3,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,0,1],[2,2,3,1],[2,2,1,0]],[[0,2,2,1],[2,3,0,1],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[2,1,0,2],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[2,1,0,2],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[2,1,0,2],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[3,1,0,2],[2,2,2,2],[1,2,2,0]],[[1,2,3,0],[2,1,0,2],[2,2,2,2],[1,2,2,0]],[[1,3,2,0],[2,1,0,2],[2,2,2,2],[1,2,2,0]],[[2,2,2,0],[2,1,0,2],[2,2,2,2],[1,2,2,0]],[[1,2,2,0],[2,1,0,2],[2,2,2,2],[0,2,2,2]],[[1,2,2,0],[2,1,0,2],[2,2,2,2],[0,2,3,1]],[[1,2,2,0],[2,1,0,2],[2,2,2,2],[0,3,2,1]],[[1,2,2,0],[2,1,0,2],[2,2,2,3],[0,2,2,1]],[[0,3,2,1],[2,3,0,1],[2,2,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,0,1],[2,2,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,0,1],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[3,3,0,1],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,4,0,1],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,1],[3,2,3,2],[0,1,1,1]],[[0,3,2,1],[2,3,0,1],[2,2,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,0,1],[2,2,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,0,1],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[3,3,0,1],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,4,0,1],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,1],[3,2,3,2],[0,1,2,0]],[[0,3,2,1],[2,3,0,1],[2,2,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,0,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,0,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[3,3,0,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,4,0,1],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,1],[3,2,3,2],[0,2,0,1]],[[0,3,2,1],[2,3,0,1],[2,2,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,0,1],[2,2,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,0,1],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[3,3,0,1],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,4,0,1],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,1],[3,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,1,0,3],[2,2,2,2],[0,2,2,1]],[[1,2,2,0],[2,1,0,2],[2,2,2,1],[1,2,2,2]],[[1,2,2,0],[2,1,0,2],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[2,1,0,2],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[2,1,0,2],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[2,1,0,2],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[3,1,0,2],[2,2,2,1],[1,2,2,1]],[[1,2,3,0],[2,1,0,2],[2,2,2,1],[1,2,2,1]],[[1,3,2,0],[2,1,0,2],[2,2,2,1],[1,2,2,1]],[[2,2,2,0],[2,1,0,2],[2,2,2,1],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[2,2,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,0,1],[2,2,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,0,1],[2,2,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,0,1],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[3,3,0,1],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,4,0,1],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,1],[3,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,1],[2,2,3,2],[2,0,1,1]],[[0,3,2,1],[2,3,0,1],[2,2,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,0,1],[2,2,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,0,1],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[3,3,0,1],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,4,0,1],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,1],[3,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,1],[2,2,3,2],[2,0,2,0]],[[0,3,2,1],[2,3,0,1],[2,2,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,0,1],[2,2,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,0,1],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[3,3,0,1],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,4,0,1],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,1],[3,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,1],[2,2,3,2],[2,1,0,1]],[[0,3,2,1],[2,3,0,1],[2,2,3,2],[1,1,1,0]],[[0,2,3,1],[2,3,0,1],[2,2,3,2],[1,1,1,0]],[[0,2,2,2],[2,3,0,1],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[3,3,0,1],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,4,0,1],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,1],[3,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,1],[2,2,3,2],[2,1,1,0]],[[1,2,2,0],[2,1,0,2],[2,2,1,2],[1,2,3,1]],[[1,2,2,0],[2,1,0,2],[2,2,1,2],[1,3,2,1]],[[1,2,2,0],[2,1,0,2],[2,2,1,2],[2,2,2,1]],[[1,2,2,0],[2,1,0,2],[2,2,1,3],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[3,2,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,0,3],[2,2,1,2],[1,2,2,1]],[[1,2,2,0],[3,1,0,2],[2,2,1,2],[1,2,2,1]],[[0,3,2,1],[2,3,0,1],[2,2,3,2],[1,2,0,0]],[[0,2,3,1],[2,3,0,1],[2,2,3,2],[1,2,0,0]],[[0,2,2,2],[2,3,0,1],[2,2,3,2],[1,2,0,0]],[[0,2,2,1],[3,3,0,1],[2,2,3,2],[1,2,0,0]],[[0,2,2,1],[2,4,0,1],[2,2,3,2],[1,2,0,0]],[[0,2,2,1],[2,3,0,1],[3,2,3,2],[1,2,0,0]],[[0,2,2,1],[2,3,0,1],[2,2,3,2],[2,2,0,0]],[[1,2,3,0],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,3,2,0],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[2,2,2,0],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[2,1,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,0,2],[2,1,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,0,2],[2,1,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,0,2],[2,1,3,3],[1,2,2,0]],[[1,2,2,0],[2,1,0,2],[2,1,4,2],[1,2,2,0]],[[1,2,2,0],[2,1,0,2],[3,1,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,0,3],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[3,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,2,3,0],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,3,2,0],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[2,2,2,0],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,0,2],[2,1,3,2],[1,2,1,2]],[[1,2,2,0],[2,1,0,2],[2,1,3,3],[1,2,1,1]],[[1,2,2,0],[2,1,0,2],[2,1,4,2],[1,2,1,1]],[[1,2,2,0],[2,1,0,3],[2,1,3,2],[1,2,1,1]],[[1,2,2,0],[2,1,0,2],[2,1,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,0,2],[2,1,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,0,2],[2,1,3,1],[1,3,2,1]],[[1,2,2,0],[2,1,0,2],[2,1,3,1],[2,2,2,1]],[[0,2,2,1],[3,3,0,1],[2,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[3,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,3,1,0],[2,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,3,1,0],[1,3,2,1]],[[0,2,2,1],[3,3,0,1],[2,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[3,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,3,1,1],[2,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,3,1,1],[1,3,2,0]],[[1,2,2,0],[2,1,0,2],[2,1,4,1],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[3,1,3,1],[1,2,2,1]],[[1,2,2,0],[3,1,0,2],[2,1,3,1],[1,2,2,1]],[[1,2,3,0],[2,1,0,2],[2,1,3,1],[1,2,2,1]],[[1,3,2,0],[2,1,0,2],[2,1,3,1],[1,2,2,1]],[[2,2,2,0],[2,1,0,2],[2,1,3,1],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,0,2],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,0,2],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,0,2],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,0,2],[2,1,2,3],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[3,1,2,2],[1,2,2,1]],[[0,2,2,1],[3,3,0,1],[2,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[3,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,4,2,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,1],[2,3,2,0],[0,3,2,1]],[[0,2,2,1],[2,3,0,1],[2,3,2,0],[0,2,3,1]],[[0,2,2,1],[3,3,0,1],[2,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[3,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[2,4,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,1],[2,3,2,0],[2,1,2,1]],[[0,2,2,1],[3,3,0,1],[2,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,3,0,1],[3,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,4,2,1],[0,2,2,0]],[[0,2,2,1],[2,3,0,1],[2,3,2,1],[0,3,2,0]],[[0,2,2,1],[3,3,0,1],[2,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,1],[3,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,1],[2,4,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,1],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[2,1,0,3],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[3,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,2,3,0],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,3,2,0],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[2,2,2,0],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,1,0,2],[1,3,3,2],[2,2,1,0]],[[1,2,2,0],[2,1,0,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[2,1,0,2],[1,3,4,2],[1,2,1,0]],[[1,2,2,0],[2,1,0,2],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[2,1,0,3],[1,3,3,2],[1,2,1,0]],[[1,2,2,0],[2,1,0,2],[1,3,3,2],[1,2,0,2]],[[1,2,2,0],[2,1,0,2],[1,3,3,2],[1,3,0,1]],[[1,2,2,0],[2,1,0,2],[1,3,3,2],[2,2,0,1]],[[1,2,2,0],[2,1,0,2],[1,3,3,3],[1,2,0,1]],[[1,2,2,0],[2,1,0,2],[1,3,4,2],[1,2,0,1]],[[1,2,2,0],[2,1,0,2],[1,4,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,0,3],[1,3,3,2],[1,2,0,1]],[[1,2,2,0],[2,1,0,2],[1,3,3,2],[1,1,3,0]],[[1,2,2,0],[2,1,0,2],[1,3,3,3],[1,1,2,0]],[[1,2,2,0],[2,1,0,2],[1,3,4,2],[1,1,2,0]],[[1,2,2,0],[2,1,0,2],[1,4,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,0,3],[1,3,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,0,2],[1,3,3,2],[1,1,1,2]],[[1,2,2,0],[2,1,0,2],[1,3,3,3],[1,1,1,1]],[[1,2,2,0],[2,1,0,2],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[2,1,0,2],[1,4,3,2],[1,1,1,1]],[[1,2,2,0],[2,1,0,3],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[2,1,0,2],[1,3,3,1],[1,3,1,1]],[[0,2,2,1],[3,3,0,1],[2,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,0,1],[3,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,0,1],[2,4,3,0],[0,1,2,1]],[[0,2,2,1],[3,3,0,1],[2,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,0,1],[3,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,0,1],[2,4,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,0,1],[2,3,3,0],[0,3,1,1]],[[0,2,2,1],[3,3,0,1],[2,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,0,1],[3,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,0,1],[2,4,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,0,1],[2,3,3,0],[2,0,2,1]],[[0,2,2,1],[3,3,0,1],[2,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[3,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[2,4,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,0,1],[2,3,3,0],[2,1,1,1]],[[0,2,2,1],[3,3,0,1],[2,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,0,1],[3,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,0,1],[2,4,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,0,1],[2,3,3,0],[2,2,0,1]],[[1,2,2,0],[2,1,0,2],[1,3,3,1],[2,2,1,1]],[[1,2,2,0],[2,1,0,2],[1,3,4,1],[1,2,1,1]],[[1,2,2,0],[2,1,0,2],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[2,1,0,2],[1,3,3,1],[1,1,2,2]],[[1,2,2,0],[2,1,0,2],[1,3,3,1],[1,1,3,1]],[[1,2,2,0],[2,1,0,2],[1,3,4,1],[1,1,2,1]],[[0,2,2,1],[3,3,0,1],[2,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,0,1],[3,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,0,1],[2,4,3,1],[0,1,2,0]],[[0,2,2,1],[3,3,0,1],[2,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,0,1],[3,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,0,1],[2,4,3,1],[0,2,0,1]],[[0,2,2,1],[3,3,0,1],[2,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,0,1],[3,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,0,1],[2,4,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,0,1],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[2,1,0,2],[1,4,3,1],[1,1,2,1]],[[1,2,2,0],[2,1,0,2],[1,3,2,2],[1,2,3,0]],[[1,2,2,0],[2,1,0,2],[1,3,2,2],[1,3,2,0]],[[1,2,2,0],[2,1,0,2],[1,3,2,2],[2,2,2,0]],[[0,2,2,1],[3,3,0,1],[2,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,0,1],[3,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,0,1],[2,4,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,0,1],[2,3,3,1],[2,0,2,0]],[[0,2,2,1],[3,3,0,1],[2,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,0,1],[3,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,0,1],[2,4,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,0,1],[2,3,3,1],[2,1,0,1]],[[0,2,2,1],[3,3,0,1],[2,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,0,1],[3,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,0,1],[2,4,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,0,1],[2,3,3,1],[2,1,1,0]],[[1,2,2,0],[2,1,0,2],[1,4,2,2],[1,2,2,0]],[[1,2,2,0],[2,1,0,2],[1,3,2,2],[1,1,2,2]],[[1,2,2,0],[2,1,0,2],[1,3,2,2],[1,1,3,1]],[[1,2,2,0],[2,1,0,2],[1,3,2,3],[1,1,2,1]],[[1,2,2,0],[2,1,0,3],[1,3,2,2],[1,1,2,1]],[[1,2,2,0],[2,1,0,2],[1,3,2,1],[1,2,2,2]],[[1,2,2,0],[2,1,0,2],[1,3,2,1],[1,2,3,1]],[[1,2,2,0],[2,1,0,2],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[2,1,0,2],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[2,1,0,2],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[1,3,1,2],[1,2,2,2]],[[0,2,2,1],[3,3,0,1],[2,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,0,1],[3,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,0,1],[2,4,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,0,1],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[2,1,0,2],[1,3,1,2],[1,2,3,1]],[[1,2,2,0],[2,1,0,2],[1,3,1,2],[1,3,2,1]],[[1,2,2,0],[2,1,0,2],[1,3,1,2],[2,2,2,1]],[[1,2,2,0],[2,1,0,2],[1,3,1,3],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[1,4,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,0,3],[1,3,1,2],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[1,2,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,0,2],[1,2,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,0,2],[1,2,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,0,2],[1,2,3,3],[1,2,2,0]],[[1,2,2,0],[2,1,0,2],[1,2,4,2],[1,2,2,0]],[[1,2,2,0],[2,1,0,3],[1,2,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,0,2],[1,2,3,2],[1,2,1,2]],[[1,2,2,0],[2,1,0,2],[1,2,3,3],[1,2,1,1]],[[1,2,2,0],[2,1,0,2],[1,2,4,2],[1,2,1,1]],[[1,2,2,0],[2,1,0,3],[1,2,3,2],[1,2,1,1]],[[1,2,2,0],[2,1,0,2],[1,2,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,0,2],[1,2,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,0,2],[1,2,3,1],[1,3,2,1]],[[1,2,2,0],[2,1,0,2],[1,2,3,1],[2,2,2,1]],[[1,2,2,0],[2,1,0,2],[1,2,4,1],[1,2,2,1]],[[1,2,2,0],[2,1,0,2],[1,2,2,2],[1,2,2,2]],[[1,2,2,0],[2,1,0,2],[1,2,2,2],[1,2,3,1]],[[1,2,2,0],[2,1,0,2],[1,2,2,2],[1,3,2,1]],[[1,2,2,0],[2,1,0,2],[1,2,2,2],[2,2,2,1]],[[1,2,2,0],[2,1,0,2],[1,2,2,3],[1,2,2,1]],[[1,2,2,0],[2,1,0,3],[1,2,2,2],[1,2,2,1]],[[1,2,2,0],[2,1,0,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,0],[2,1,0,1],[2,4,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,0,1],[3,3,3,2],[1,1,2,0]],[[1,2,2,0],[3,1,0,1],[2,3,3,2],[1,1,2,0]],[[1,3,2,0],[2,1,0,1],[2,3,3,2],[1,1,2,0]],[[2,2,2,0],[2,1,0,1],[2,3,3,2],[1,1,2,0]],[[1,2,2,0],[2,1,0,1],[2,3,3,2],[0,2,3,0]],[[1,2,2,0],[2,1,0,1],[2,3,3,2],[0,3,2,0]],[[1,2,2,0],[2,1,0,1],[2,4,3,2],[0,2,2,0]],[[1,2,2,0],[2,1,0,1],[3,3,3,2],[0,2,2,0]],[[1,2,2,0],[3,1,0,1],[2,3,3,2],[0,2,2,0]],[[1,3,2,0],[2,1,0,1],[2,3,3,2],[0,2,2,0]],[[2,2,2,0],[2,1,0,1],[2,3,3,2],[0,2,2,0]],[[0,3,2,1],[2,3,0,1],[2,3,3,2],[1,0,0,1]],[[0,2,3,1],[2,3,0,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,2],[2,3,0,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[3,3,0,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,4,0,1],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,0,1],[3,3,3,2],[1,0,0,1]],[[0,3,2,1],[2,3,0,1],[2,3,3,2],[1,0,1,0]],[[0,2,3,1],[2,3,0,1],[2,3,3,2],[1,0,1,0]],[[0,2,2,2],[2,3,0,1],[2,3,3,2],[1,0,1,0]],[[0,2,2,1],[3,3,0,1],[2,3,3,2],[1,0,1,0]],[[0,2,2,1],[2,4,0,1],[2,3,3,2],[1,0,1,0]],[[0,2,2,1],[2,3,0,1],[3,3,3,2],[1,0,1,0]],[[1,2,2,0],[2,1,0,1],[2,3,3,1],[2,1,2,1]],[[1,2,2,0],[2,1,0,1],[2,4,3,1],[1,1,2,1]],[[1,2,2,0],[2,1,0,1],[3,3,3,1],[1,1,2,1]],[[1,2,2,0],[3,1,0,1],[2,3,3,1],[1,1,2,1]],[[1,3,2,0],[2,1,0,1],[2,3,3,1],[1,1,2,1]],[[2,2,2,0],[2,1,0,1],[2,3,3,1],[1,1,2,1]],[[1,2,2,0],[2,1,0,1],[2,3,3,1],[0,2,2,2]],[[1,2,2,0],[2,1,0,1],[2,3,3,1],[0,2,3,1]],[[1,2,2,0],[2,1,0,1],[2,3,3,1],[0,3,2,1]],[[1,2,2,0],[2,1,0,1],[2,4,3,1],[0,2,2,1]],[[1,2,2,0],[2,1,0,1],[3,3,3,1],[0,2,2,1]],[[1,2,2,0],[3,1,0,1],[2,3,3,1],[0,2,2,1]],[[1,3,2,0],[2,1,0,1],[2,3,3,1],[0,2,2,1]],[[2,2,2,0],[2,1,0,1],[2,3,3,1],[0,2,2,1]],[[1,2,2,0],[2,1,0,1],[2,2,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,0,1],[2,2,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,0,1],[2,2,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,0,1],[3,2,3,2],[1,2,2,0]],[[1,2,2,0],[3,1,0,1],[2,2,3,2],[1,2,2,0]],[[1,3,2,0],[2,1,0,1],[2,2,3,2],[1,2,2,0]],[[2,2,2,0],[2,1,0,1],[2,2,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,0,1],[2,2,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,0,1],[2,2,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,0,1],[2,2,3,1],[1,3,2,1]],[[1,2,2,0],[2,1,0,1],[2,2,3,1],[2,2,2,1]],[[1,2,2,0],[2,1,0,1],[3,2,3,1],[1,2,2,1]],[[1,2,2,0],[3,1,0,1],[2,2,3,1],[1,2,2,1]],[[1,3,2,0],[2,1,0,1],[2,2,3,1],[1,2,2,1]],[[2,2,2,0],[2,1,0,1],[2,2,3,1],[1,2,2,1]],[[1,2,2,0],[2,1,0,1],[1,3,3,2],[1,2,3,0]],[[1,2,2,0],[2,1,0,1],[1,3,3,2],[1,3,2,0]],[[1,2,2,0],[2,1,0,1],[1,3,3,2],[2,2,2,0]],[[1,2,2,0],[2,1,0,1],[1,4,3,2],[1,2,2,0]],[[1,2,2,0],[2,1,0,1],[1,3,3,1],[1,2,2,2]],[[1,2,2,0],[2,1,0,1],[1,3,3,1],[1,2,3,1]],[[1,2,2,0],[2,1,0,1],[1,3,3,1],[1,3,2,1]],[[1,2,2,0],[2,1,0,1],[1,3,3,1],[2,2,2,1]],[[1,2,2,0],[2,1,0,1],[1,4,3,1],[1,2,2,1]],[[1,2,2,0],[2,1,0,0],[2,3,3,2],[2,1,2,1]],[[1,2,2,0],[2,1,0,0],[2,4,3,2],[1,1,2,1]],[[1,2,2,0],[2,1,0,0],[3,3,3,2],[1,1,2,1]],[[1,2,2,0],[3,1,0,0],[2,3,3,2],[1,1,2,1]],[[1,3,2,0],[2,1,0,0],[2,3,3,2],[1,1,2,1]],[[2,2,2,0],[2,1,0,0],[2,3,3,2],[1,1,2,1]],[[1,2,2,0],[2,1,0,0],[2,3,3,2],[0,2,2,2]],[[1,2,2,0],[2,1,0,0],[2,3,3,2],[0,2,3,1]],[[1,2,2,0],[2,1,0,0],[2,3,3,2],[0,3,2,1]],[[1,2,2,0],[2,1,0,0],[2,4,3,2],[0,2,2,1]],[[1,2,2,0],[2,1,0,0],[3,3,3,2],[0,2,2,1]],[[1,2,2,0],[3,1,0,0],[2,3,3,2],[0,2,2,1]],[[1,3,2,0],[2,1,0,0],[2,3,3,2],[0,2,2,1]],[[2,2,2,0],[2,1,0,0],[2,3,3,2],[0,2,2,1]],[[1,2,2,0],[2,1,0,0],[2,2,3,2],[1,2,2,2]],[[1,2,2,0],[2,1,0,0],[2,2,3,2],[1,2,3,1]],[[1,2,2,0],[2,1,0,0],[2,2,3,2],[1,3,2,1]],[[1,2,2,0],[2,1,0,0],[2,2,3,2],[2,2,2,1]],[[1,2,2,0],[2,1,0,0],[3,2,3,2],[1,2,2,1]],[[1,2,2,0],[3,1,0,0],[2,2,3,2],[1,2,2,1]],[[1,3,2,0],[2,1,0,0],[2,2,3,2],[1,2,2,1]],[[2,2,2,0],[2,1,0,0],[2,2,3,2],[1,2,2,1]],[[1,2,2,0],[2,1,0,0],[1,3,3,2],[1,2,2,2]],[[1,2,2,0],[2,1,0,0],[1,3,3,2],[1,2,3,1]],[[1,2,2,0],[2,1,0,0],[1,3,3,2],[1,3,2,1]],[[1,2,2,0],[2,1,0,0],[1,3,3,2],[2,2,2,1]],[[1,2,2,0],[2,1,0,0],[1,4,3,2],[1,2,2,1]],[[0,3,2,1],[2,3,0,2],[0,0,3,2],[1,2,2,1]],[[0,2,3,1],[2,3,0,2],[0,0,3,2],[1,2,2,1]],[[0,2,2,2],[2,3,0,2],[0,0,3,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,3],[0,0,3,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,0,3,3],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,0,3,2],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[0,0,3,2],[1,2,2,2]],[[0,3,2,1],[2,3,0,2],[0,1,2,2],[1,2,2,1]],[[0,2,3,1],[2,3,0,2],[0,1,2,2],[1,2,2,1]],[[0,2,2,2],[2,3,0,2],[0,1,2,2],[1,2,2,1]],[[0,2,2,1],[3,3,0,2],[0,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,4,0,2],[0,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,3],[0,1,2,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,1,2,3],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,1,2,2],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,1,2,2],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[0,1,2,2],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[0,1,2,2],[1,2,2,2]],[[0,2,2,1],[2,3,0,2],[0,1,4,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,1,3,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,1,3,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[0,1,3,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[0,1,3,1],[1,2,2,2]],[[0,3,2,1],[2,3,0,2],[0,1,3,2],[1,2,1,1]],[[0,2,3,1],[2,3,0,2],[0,1,3,2],[1,2,1,1]],[[0,2,2,2],[2,3,0,2],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[3,3,0,2],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,4,0,2],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,3],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[0,1,4,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[0,1,3,3],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[0,1,3,2],[1,2,1,2]],[[0,3,2,1],[2,3,0,2],[0,1,3,2],[1,2,2,0]],[[0,2,3,1],[2,3,0,2],[0,1,3,2],[1,2,2,0]],[[0,2,2,2],[2,3,0,2],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[3,3,0,2],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,4,0,2],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,3],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,1,4,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,1,3,3],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,1,3,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,1,3,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,2],[0,1,3,2],[1,2,3,0]],[[0,3,2,1],[2,3,0,2],[0,2,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,0,2],[0,2,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,0,2],[0,2,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,0,2],[0,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,0,2],[0,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,3],[0,2,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,1,3],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[0,2,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,0,2],[0,2,2,2],[1,1,2,1]],[[0,2,3,1],[2,3,0,2],[0,2,2,2],[1,1,2,1]],[[0,2,2,2],[2,3,0,2],[0,2,2,2],[1,1,2,1]],[[0,2,2,1],[3,3,0,2],[0,2,2,2],[1,1,2,1]],[[0,2,2,1],[2,4,0,2],[0,2,2,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,3],[0,2,2,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,2,3],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,2,2],[1,1,3,1]],[[0,2,2,1],[2,3,0,2],[0,2,2,2],[1,1,2,2]],[[0,2,2,1],[2,3,0,2],[0,2,4,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,0],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,0],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,0],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,0],[1,2,2,2]],[[0,2,2,1],[2,3,0,2],[0,2,4,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,1],[1,1,3,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,1],[1,1,2,2]],[[0,2,2,1],[2,3,0,2],[0,2,4,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,2,3,1],[2,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,2,3,1],[1,3,2,0]],[[0,2,2,1],[2,3,0,2],[0,2,3,1],[1,2,3,0]],[[0,3,2,1],[2,3,0,2],[0,2,3,2],[1,0,2,1]],[[0,2,3,1],[2,3,0,2],[0,2,3,2],[1,0,2,1]],[[0,2,2,2],[2,3,0,2],[0,2,3,2],[1,0,2,1]],[[0,2,2,1],[2,4,0,2],[0,2,3,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,3],[0,2,3,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,4,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,3],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,2],[1,0,2,2]],[[0,3,2,1],[2,3,0,2],[0,2,3,2],[1,1,1,1]],[[0,2,3,1],[2,3,0,2],[0,2,3,2],[1,1,1,1]],[[0,2,2,2],[2,3,0,2],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[3,3,0,2],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[2,4,0,2],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,3],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[0,2,4,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,3],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,2],[1,1,1,2]],[[0,3,2,1],[2,3,0,2],[0,2,3,2],[1,1,2,0]],[[0,2,3,1],[2,3,0,2],[0,2,3,2],[1,1,2,0]],[[0,2,2,2],[2,3,0,2],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[3,3,0,2],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[2,4,0,2],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,3],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[0,2,4,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[0,2,3,3],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[0,2,3,2],[1,1,3,0]],[[0,3,2,1],[2,3,0,2],[0,2,3,2],[1,2,0,1]],[[0,2,3,1],[2,3,0,2],[0,2,3,2],[1,2,0,1]],[[0,2,2,2],[2,3,0,2],[0,2,3,2],[1,2,0,1]],[[0,2,2,1],[3,3,0,2],[0,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,4,0,2],[0,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,3],[0,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,2,4,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,3],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,2,3,2],[1,2,0,2]],[[0,3,2,1],[2,3,0,2],[0,2,3,2],[1,2,1,0]],[[0,2,3,1],[2,3,0,2],[0,2,3,2],[1,2,1,0]],[[0,2,2,2],[2,3,0,2],[0,2,3,2],[1,2,1,0]],[[0,2,2,1],[3,3,0,2],[0,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,4,0,2],[0,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,3],[0,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,2,4,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,2,3,3],[1,2,1,0]],[[0,3,2,1],[2,3,0,2],[0,3,1,1],[1,2,2,1]],[[0,2,3,1],[2,3,0,2],[0,3,1,1],[1,2,2,1]],[[0,2,2,2],[2,3,0,2],[0,3,1,1],[1,2,2,1]],[[0,2,2,1],[3,3,0,2],[0,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,4,0,2],[0,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,3],[0,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,4,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,1,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,1,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,1,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[0,3,1,1],[1,2,2,2]],[[0,3,2,1],[2,3,0,2],[0,3,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,0,2],[0,3,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,0,2],[0,3,1,2],[1,1,2,1]],[[0,2,2,1],[3,3,0,2],[0,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,4,0,2],[0,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,3],[0,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,4,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,1,3],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,1,2],[1,1,3,1]],[[0,2,2,1],[2,3,0,2],[0,3,1,2],[1,1,2,2]],[[0,3,2,1],[2,3,0,2],[0,3,1,2],[1,2,1,1]],[[0,2,3,1],[2,3,0,2],[0,3,1,2],[1,2,1,1]],[[0,2,2,2],[2,3,0,2],[0,3,1,2],[1,2,1,1]],[[0,2,2,1],[3,3,0,2],[0,3,1,2],[1,2,1,1]],[[0,2,2,1],[2,4,0,2],[0,3,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,3],[0,3,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[0,4,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,1,3],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,1,2],[2,2,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,1,2],[1,3,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,1,2],[1,2,1,2]],[[0,3,2,1],[2,3,0,2],[0,3,1,2],[1,2,2,0]],[[0,2,3,1],[2,3,0,2],[0,3,1,2],[1,2,2,0]],[[0,2,2,2],[2,3,0,2],[0,3,1,2],[1,2,2,0]],[[0,2,2,1],[3,3,0,2],[0,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,4,0,2],[0,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,3],[0,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,4,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,1,3],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,1,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,1,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,1,2],[1,2,3,0]],[[0,3,2,1],[2,3,0,2],[0,3,2,0],[1,2,2,1]],[[0,2,3,1],[2,3,0,2],[0,3,2,0],[1,2,2,1]],[[0,2,2,2],[2,3,0,2],[0,3,2,0],[1,2,2,1]],[[0,2,2,1],[3,3,0,2],[0,3,2,0],[1,2,2,1]],[[0,2,2,1],[2,4,0,2],[0,3,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,3],[0,3,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,4,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,0],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,0],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,0],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,0],[1,2,2,2]],[[0,3,2,1],[2,3,0,2],[0,3,2,1],[1,2,2,0]],[[0,2,3,1],[2,3,0,2],[0,3,2,1],[1,2,2,0]],[[0,2,2,2],[2,3,0,2],[0,3,2,1],[1,2,2,0]],[[0,2,2,1],[3,3,0,2],[0,3,2,1],[1,2,2,0]],[[0,2,2,1],[2,4,0,2],[0,3,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,3],[0,3,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,4,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,2,1],[2,2,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,2,1],[1,3,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,2,1],[1,2,3,0]],[[0,3,2,1],[2,3,0,2],[0,3,2,2],[0,1,2,1]],[[0,2,3,1],[2,3,0,2],[0,3,2,2],[0,1,2,1]],[[0,2,2,2],[2,3,0,2],[0,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,4,0,2],[0,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,3],[0,3,2,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,2],[0,1,2,2]],[[0,3,2,1],[2,3,0,2],[0,3,2,2],[1,1,1,1]],[[0,2,3,1],[2,3,0,2],[0,3,2,2],[1,1,1,1]],[[0,2,2,2],[2,3,0,2],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[3,3,0,2],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,4,0,2],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,3],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[0,4,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,3],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,2],[1,1,1,2]],[[0,3,2,1],[2,3,0,2],[0,3,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,0,2],[0,3,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,0,2],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[3,3,0,2],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,4,0,2],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,3],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[0,4,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,2,3],[1,1,2,0]],[[0,3,2,1],[2,3,0,2],[0,3,2,2],[1,2,0,1]],[[0,2,3,1],[2,3,0,2],[0,3,2,2],[1,2,0,1]],[[0,2,2,2],[2,3,0,2],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[3,3,0,2],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,4,0,2],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,3],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,4,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,3],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,2],[2,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,2],[1,3,0,1]],[[0,2,2,1],[2,3,0,2],[0,3,2,2],[1,2,0,2]],[[0,3,2,1],[2,3,0,2],[0,3,2,2],[1,2,1,0]],[[0,2,3,1],[2,3,0,2],[0,3,2,2],[1,2,1,0]],[[0,2,2,2],[2,3,0,2],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[3,3,0,2],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,4,0,2],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,3],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,4,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,3,2,3],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,3,2,2],[2,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,3,2,2],[1,3,1,0]],[[0,3,2,1],[2,3,0,2],[0,3,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,0,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,2],[2,3,0,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,1],[3,3,0,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,4,0,2],[0,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,3],[0,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,4,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,4,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,0],[1,1,3,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,0],[1,1,2,2]],[[0,3,2,1],[2,3,0,2],[0,3,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,0,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,2],[2,3,0,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,1],[3,3,0,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,4,0,2],[0,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,0,3],[0,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[0,4,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,4,0],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,0],[2,2,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,0],[1,3,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,1],[0,1,2,2]],[[0,3,2,1],[2,3,0,2],[0,3,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,0,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,0,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,0,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,0,2],[0,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,0,3],[0,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[0,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,4,1],[1,1,1,1]],[[0,3,2,1],[2,3,0,2],[0,3,3,1],[1,1,2,0]],[[0,2,3,1],[2,3,0,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,2],[2,3,0,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,1],[3,3,0,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,4,0,2],[0,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,3],[0,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[0,4,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,4,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,3,1],[1,1,3,0]],[[0,3,2,1],[2,3,0,2],[0,3,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,0,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,2],[2,3,0,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,0,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,0,2],[0,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,0,3],[0,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,4,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,3,4,1],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,1],[2,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,1],[1,3,0,1]],[[0,3,2,1],[2,3,0,2],[0,3,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,0,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,2],[2,3,0,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,1],[3,3,0,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,4,0,2],[0,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,0,3],[0,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,4,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,3,4,1],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,3,3,1],[2,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,3,3,1],[1,3,1,0]],[[0,3,2,1],[2,3,0,2],[0,3,3,2],[0,0,2,1]],[[0,2,3,1],[2,3,0,2],[0,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,3,0,2],[0,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,4,0,2],[0,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,3,0,3],[0,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,2],[0,0,2,2]],[[0,3,2,1],[2,3,0,2],[0,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,0,2],[0,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,0,2],[0,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,4,0,2],[0,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,3],[0,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,2],[0,1,1,2]],[[0,3,2,1],[2,3,0,2],[0,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,0,2],[0,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,0,2],[0,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,4,0,2],[0,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,3],[0,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[0,3,3,2],[0,1,3,0]],[[0,3,2,1],[2,3,0,2],[0,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,0,2],[0,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,0,2],[0,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,4,0,2],[0,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,3],[0,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[0,3,3,2],[0,2,0,2]],[[0,3,2,1],[2,3,0,2],[0,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,0,2],[0,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,0,2],[0,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,4,0,2],[0,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,3],[0,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,0],[2,0,3,2],[2,4,3,1],[1,1,0,0]],[[1,2,2,0],[2,0,3,2],[3,3,3,1],[1,1,0,0]],[[1,2,2,0],[2,0,3,3],[2,3,3,1],[1,1,0,0]],[[1,2,2,0],[2,0,4,2],[2,3,3,1],[1,1,0,0]],[[1,2,2,0],[3,0,3,2],[2,3,3,1],[1,1,0,0]],[[1,2,3,0],[2,0,3,2],[2,3,3,1],[1,1,0,0]],[[1,3,2,0],[2,0,3,2],[2,3,3,1],[1,1,0,0]],[[2,2,2,0],[2,0,3,2],[2,3,3,1],[1,1,0,0]],[[0,3,2,1],[2,3,0,2],[1,0,2,2],[1,2,2,1]],[[0,2,3,1],[2,3,0,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,2],[2,3,0,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[3,3,0,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,4,0,2],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,3],[1,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,0,2,3],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,0,2,2],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,0,2,2],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[1,0,2,2],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[1,0,2,2],[1,2,2,2]],[[0,2,2,1],[2,3,0,2],[1,0,4,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,0,3,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,0,3,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[1,0,3,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[1,0,3,1],[1,2,2,2]],[[0,3,2,1],[2,3,0,2],[1,0,3,2],[0,2,2,1]],[[0,2,3,1],[2,3,0,2],[1,0,3,2],[0,2,2,1]],[[0,2,2,2],[2,3,0,2],[1,0,3,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,3],[1,0,3,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,0,3,3],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,0,3,2],[0,2,3,1]],[[0,2,2,1],[2,3,0,2],[1,0,3,2],[0,2,2,2]],[[0,3,2,1],[2,3,0,2],[1,0,3,2],[1,2,1,1]],[[0,2,3,1],[2,3,0,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,2],[2,3,0,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[3,3,0,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,4,0,2],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,3],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,0,4,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,0,3,3],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,0,3,2],[1,2,1,2]],[[0,3,2,1],[2,3,0,2],[1,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,3,0,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,3,0,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[3,3,0,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,4,0,2],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,3],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,0,4,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,0,3,3],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,0,3,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,0,3,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,2],[1,0,3,2],[1,2,3,0]],[[0,3,2,1],[2,3,0,2],[1,1,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,0,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,0,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,0,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,0,2],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,3],[1,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,1,1,3],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,1,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,1,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[1,1,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[1,1,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,0,2],[1,1,2,2],[0,2,2,1]],[[0,2,3,1],[2,3,0,2],[1,1,2,2],[0,2,2,1]],[[0,2,2,2],[2,3,0,2],[1,1,2,2],[0,2,2,1]],[[0,2,2,1],[3,3,0,2],[1,1,2,2],[0,2,2,1]],[[0,2,2,1],[2,4,0,2],[1,1,2,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,3],[1,1,2,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,1,2,3],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,1,2,2],[0,3,2,1]],[[0,2,2,1],[2,3,0,2],[1,1,2,2],[0,2,3,1]],[[0,2,2,1],[2,3,0,2],[1,1,2,2],[0,2,2,2]],[[0,2,2,1],[2,3,0,2],[1,1,4,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,1,3,1],[0,3,2,1]],[[0,2,2,1],[2,3,0,2],[1,1,3,1],[0,2,3,1]],[[0,2,2,1],[2,3,0,2],[1,1,3,1],[0,2,2,2]],[[0,3,2,1],[2,3,0,2],[1,1,3,2],[0,2,1,1]],[[0,2,3,1],[2,3,0,2],[1,1,3,2],[0,2,1,1]],[[0,2,2,2],[2,3,0,2],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[3,3,0,2],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[2,4,0,2],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,3],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,1,4,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,1,3,3],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,1,3,2],[0,2,1,2]],[[0,3,2,1],[2,3,0,2],[1,1,3,2],[0,2,2,0]],[[0,2,3,1],[2,3,0,2],[1,1,3,2],[0,2,2,0]],[[0,2,2,2],[2,3,0,2],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[3,3,0,2],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[2,4,0,2],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,3],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,1,4,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,1,3,3],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,1,3,2],[0,3,2,0]],[[0,2,2,1],[2,3,0,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,0],[2,0,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,0],[2,0,3,2],[3,3,3,1],[0,2,0,0]],[[1,2,2,0],[2,0,3,3],[2,3,3,1],[0,2,0,0]],[[1,2,2,0],[2,0,4,2],[2,3,3,1],[0,2,0,0]],[[1,2,2,0],[3,0,3,2],[2,3,3,1],[0,2,0,0]],[[1,2,3,0],[2,0,3,2],[2,3,3,1],[0,2,0,0]],[[1,3,2,0],[2,0,3,2],[2,3,3,1],[0,2,0,0]],[[0,3,2,1],[2,3,0,2],[1,2,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,0,2],[1,2,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,0,2],[1,2,1,2],[0,2,2,1]],[[0,2,2,1],[3,3,0,2],[1,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,4,0,2],[1,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,3],[1,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,1,3],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,1,2],[0,3,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,1,2],[0,2,3,1]],[[0,2,2,1],[2,3,0,2],[1,2,1,2],[0,2,2,2]],[[0,3,2,1],[2,3,0,2],[1,2,2,2],[0,1,2,1]],[[0,2,3,1],[2,3,0,2],[1,2,2,2],[0,1,2,1]],[[0,2,2,2],[2,3,0,2],[1,2,2,2],[0,1,2,1]],[[0,2,2,1],[3,3,0,2],[1,2,2,2],[0,1,2,1]],[[0,2,2,1],[2,4,0,2],[1,2,2,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,3],[1,2,2,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,2,3],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,2,2],[0,1,3,1]],[[0,2,2,1],[2,3,0,2],[1,2,2,2],[0,1,2,2]],[[0,3,2,1],[2,3,0,2],[1,2,2,2],[1,0,2,1]],[[0,2,3,1],[2,3,0,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,2],[2,3,0,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,1],[3,3,0,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,4,0,2],[1,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,3],[1,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,2,3],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,2,2],[1,0,3,1]],[[0,2,2,1],[2,3,0,2],[1,2,2,2],[1,0,2,2]],[[2,2,2,0],[2,0,3,2],[2,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,3,0,2],[1,2,4,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,0],[0,3,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,0],[0,2,3,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,0],[0,2,2,2]],[[0,2,2,1],[2,3,0,2],[1,2,4,1],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,1],[0,1,3,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,1],[0,1,2,2]],[[0,2,2,1],[2,3,0,2],[1,2,4,1],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,2,3,1],[0,3,2,0]],[[0,2,2,1],[2,3,0,2],[1,2,3,1],[0,2,3,0]],[[0,2,2,1],[2,3,0,2],[1,2,4,1],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,1],[1,0,3,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,1],[1,0,2,2]],[[0,3,2,1],[2,3,0,2],[1,2,3,2],[0,0,2,1]],[[0,2,3,1],[2,3,0,2],[1,2,3,2],[0,0,2,1]],[[0,2,2,2],[2,3,0,2],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[3,3,0,2],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,4,0,2],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,3,0,3],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,4,2],[0,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,3],[0,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,2],[0,0,2,2]],[[0,3,2,1],[2,3,0,2],[1,2,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,0,2],[1,2,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,0,2],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[3,3,0,2],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,4,0,2],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,3],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,2,4,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,3],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,2],[0,1,1,2]],[[0,3,2,1],[2,3,0,2],[1,2,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,0,2],[1,2,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,0,2],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[3,3,0,2],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,4,0,2],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,3],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[1,2,4,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[1,2,3,3],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[1,2,3,2],[0,1,3,0]],[[0,3,2,1],[2,3,0,2],[1,2,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,0,2],[1,2,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,0,2],[1,2,3,2],[0,2,0,1]],[[0,2,2,1],[3,3,0,2],[1,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,4,0,2],[1,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,3],[1,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[1,2,4,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,3],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,2],[0,2,0,2]],[[0,3,2,1],[2,3,0,2],[1,2,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,0,2],[1,2,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,0,2],[1,2,3,2],[0,2,1,0]],[[0,2,2,1],[3,3,0,2],[1,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,4,0,2],[1,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,3],[1,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[1,2,4,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[1,2,3,3],[0,2,1,0]],[[0,3,2,1],[2,3,0,2],[1,2,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,0,2],[1,2,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,0,2],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[3,3,0,2],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,4,0,2],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,3],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[1,2,4,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,3],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,2],[1,0,1,2]],[[0,3,2,1],[2,3,0,2],[1,2,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,0,2],[1,2,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,0,2],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[3,3,0,2],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,4,0,2],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,3],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[1,2,4,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[1,2,3,3],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[1,2,3,2],[1,0,3,0]],[[0,3,2,1],[2,3,0,2],[1,2,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,0,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,0,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[3,3,0,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,4,0,2],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,3],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[1,2,4,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,3],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[1,2,3,2],[1,1,0,2]],[[0,3,2,1],[2,3,0,2],[1,2,3,2],[1,1,1,0]],[[0,2,3,1],[2,3,0,2],[1,2,3,2],[1,1,1,0]],[[0,2,2,2],[2,3,0,2],[1,2,3,2],[1,1,1,0]],[[0,2,2,1],[3,3,0,2],[1,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,4,0,2],[1,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,3],[1,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[1,2,4,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,0],[2,0,3,2],[2,4,3,0],[1,2,0,0]],[[1,2,2,0],[2,0,3,2],[3,3,3,0],[1,2,0,0]],[[1,2,2,0],[2,0,4,2],[2,3,3,0],[1,2,0,0]],[[1,2,2,0],[3,0,3,2],[2,3,3,0],[1,2,0,0]],[[1,2,3,0],[2,0,3,2],[2,3,3,0],[1,2,0,0]],[[1,3,2,0],[2,0,3,2],[2,3,3,0],[1,2,0,0]],[[2,2,2,0],[2,0,3,2],[2,3,3,0],[1,2,0,0]],[[0,3,2,1],[2,3,0,2],[1,3,1,1],[0,2,2,1]],[[0,2,3,1],[2,3,0,2],[1,3,1,1],[0,2,2,1]],[[0,2,2,2],[2,3,0,2],[1,3,1,1],[0,2,2,1]],[[0,2,2,1],[3,3,0,2],[1,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,4,0,2],[1,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,3],[1,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,4,1,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,1],[0,3,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,1],[0,2,3,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,1],[0,2,2,2]],[[0,3,2,1],[2,3,0,2],[1,3,1,1],[1,1,2,1]],[[0,2,3,1],[2,3,0,2],[1,3,1,1],[1,1,2,1]],[[0,2,2,2],[2,3,0,2],[1,3,1,1],[1,1,2,1]],[[0,2,2,1],[3,3,0,2],[1,3,1,1],[1,1,2,1]],[[0,2,2,1],[2,4,0,2],[1,3,1,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,3],[1,3,1,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[1,4,1,1],[1,1,2,1]],[[0,3,2,1],[2,3,0,2],[1,3,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,0,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,0,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,1],[3,3,0,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,4,0,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,3],[1,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[1,4,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,3],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,2],[0,1,3,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,2],[0,1,2,2]],[[0,3,2,1],[2,3,0,2],[1,3,1,2],[0,2,1,1]],[[0,2,3,1],[2,3,0,2],[1,3,1,2],[0,2,1,1]],[[0,2,2,2],[2,3,0,2],[1,3,1,2],[0,2,1,1]],[[0,2,2,1],[3,3,0,2],[1,3,1,2],[0,2,1,1]],[[0,2,2,1],[2,4,0,2],[1,3,1,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,3],[1,3,1,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,4,1,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,3],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,2],[0,3,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,2],[0,2,1,2]],[[0,3,2,1],[2,3,0,2],[1,3,1,2],[0,2,2,0]],[[0,2,3,1],[2,3,0,2],[1,3,1,2],[0,2,2,0]],[[0,2,2,2],[2,3,0,2],[1,3,1,2],[0,2,2,0]],[[0,2,2,1],[3,3,0,2],[1,3,1,2],[0,2,2,0]],[[0,2,2,1],[2,4,0,2],[1,3,1,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,3],[1,3,1,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,4,1,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,1,3],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,1,2],[0,3,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,1,2],[0,2,3,0]],[[0,3,2,1],[2,3,0,2],[1,3,1,2],[1,0,2,1]],[[0,2,3,1],[2,3,0,2],[1,3,1,2],[1,0,2,1]],[[0,2,2,2],[2,3,0,2],[1,3,1,2],[1,0,2,1]],[[0,2,2,1],[3,3,0,2],[1,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,4,0,2],[1,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,3],[1,3,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,4,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,3],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,2],[1,0,3,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,2],[1,0,2,2]],[[0,3,2,1],[2,3,0,2],[1,3,1,2],[1,1,1,1]],[[0,2,3,1],[2,3,0,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,2],[2,3,0,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[3,3,0,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,4,0,2],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,3],[1,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,4,1,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,3],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,1,2],[1,1,1,2]],[[0,3,2,1],[2,3,0,2],[1,3,1,2],[1,1,2,0]],[[0,2,3,1],[2,3,0,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,2],[2,3,0,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[3,3,0,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,4,0,2],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,3],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[1,4,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,1,3],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,2,0],[2,0,3,2],[2,4,3,0],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[3,3,3,0],[1,1,1,0]],[[1,2,2,0],[2,0,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,0],[3,0,3,2],[2,3,3,0],[1,1,1,0]],[[1,2,3,0],[2,0,3,2],[2,3,3,0],[1,1,1,0]],[[1,3,2,0],[2,0,3,2],[2,3,3,0],[1,1,1,0]],[[2,2,2,0],[2,0,3,2],[2,3,3,0],[1,1,1,0]],[[0,3,2,1],[2,3,0,2],[1,3,2,0],[0,2,2,1]],[[0,2,3,1],[2,3,0,2],[1,3,2,0],[0,2,2,1]],[[0,2,2,2],[2,3,0,2],[1,3,2,0],[0,2,2,1]],[[0,2,2,1],[3,3,0,2],[1,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,4,0,2],[1,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,3],[1,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,4,2,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,0],[0,3,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,0],[0,2,3,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,0],[0,2,2,2]],[[0,3,2,1],[2,3,0,2],[1,3,2,0],[1,1,2,1]],[[0,2,3,1],[2,3,0,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,2],[2,3,0,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[3,3,0,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,4,0,2],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,3],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[1,4,2,0],[1,1,2,1]],[[0,3,2,1],[2,3,0,2],[1,3,2,1],[0,2,2,0]],[[0,2,3,1],[2,3,0,2],[1,3,2,1],[0,2,2,0]],[[0,2,2,2],[2,3,0,2],[1,3,2,1],[0,2,2,0]],[[0,2,2,1],[3,3,0,2],[1,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,4,0,2],[1,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,3,0,3],[1,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,4,2,1],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,2,1],[0,3,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,2,1],[0,2,3,0]],[[0,3,2,1],[2,3,0,2],[1,3,2,1],[1,1,2,0]],[[0,2,3,1],[2,3,0,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,2],[2,3,0,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[3,3,0,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,4,0,2],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,3],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[1,4,2,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,3,0],[2,0,2,0]],[[1,2,2,0],[2,0,3,2],[2,4,3,0],[1,0,2,0]],[[0,3,2,1],[2,3,0,2],[1,3,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,0,2],[1,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,0,2],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[3,3,0,2],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,4,0,2],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,3],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,4,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,3],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,2],[0,1,1,2]],[[0,3,2,1],[2,3,0,2],[1,3,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,0,2],[1,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,0,2],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[3,3,0,2],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,4,0,2],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,3],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[1,4,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,2,3],[0,1,2,0]],[[0,3,2,1],[2,3,0,2],[1,3,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,0,2],[1,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,0,2],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[3,3,0,2],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,4,0,2],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,3],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[1,4,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,3],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,2],[0,3,0,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,2],[0,2,0,2]],[[0,3,2,1],[2,3,0,2],[1,3,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,0,2],[1,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,0,2],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[3,3,0,2],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,4,0,2],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,3],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[1,4,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[1,3,2,3],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[1,3,2,2],[0,3,1,0]],[[1,2,2,0],[2,0,3,2],[3,3,3,0],[1,0,2,0]],[[1,2,2,0],[2,0,4,2],[2,3,3,0],[1,0,2,0]],[[1,2,2,0],[3,0,3,2],[2,3,3,0],[1,0,2,0]],[[1,2,3,0],[2,0,3,2],[2,3,3,0],[1,0,2,0]],[[1,3,2,0],[2,0,3,2],[2,3,3,0],[1,0,2,0]],[[2,2,2,0],[2,0,3,2],[2,3,3,0],[1,0,2,0]],[[0,3,2,1],[2,3,0,2],[1,3,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,0,2],[1,3,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,0,2],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[3,3,0,2],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,4,0,2],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,3],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[1,4,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,3],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,2],[1,0,1,2]],[[0,3,2,1],[2,3,0,2],[1,3,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,0,2],[1,3,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,0,2],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[3,3,0,2],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,4,0,2],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,3],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[1,4,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,2,3],[1,0,2,0]],[[0,3,2,1],[2,3,0,2],[1,3,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,0,2],[1,3,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,0,2],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[3,3,0,2],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,4,0,2],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,3],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[1,4,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,3],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[1,3,2,2],[1,1,0,2]],[[0,3,2,1],[2,3,0,2],[1,3,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,0,2],[1,3,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,0,2],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[3,3,0,2],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,4,0,2],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,3],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[1,4,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[1,3,2,3],[1,1,1,0]],[[0,3,2,1],[2,3,0,2],[1,3,2,2],[1,2,0,0]],[[0,2,3,1],[2,3,0,2],[1,3,2,2],[1,2,0,0]],[[0,2,2,2],[2,3,0,2],[1,3,2,2],[1,2,0,0]],[[0,2,2,1],[3,3,0,2],[1,3,2,2],[1,2,0,0]],[[0,2,2,1],[2,4,0,2],[1,3,2,2],[1,2,0,0]],[[0,2,2,1],[2,3,0,3],[1,3,2,2],[1,2,0,0]],[[0,2,2,1],[2,3,0,2],[1,4,2,2],[1,2,0,0]],[[1,2,2,0],[2,0,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,0],[2,0,3,2],[2,4,3,0],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[3,3,3,0],[0,2,1,0]],[[1,2,2,0],[2,0,4,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,0],[3,0,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,3,0],[2,0,3,2],[2,3,3,0],[0,2,1,0]],[[1,3,2,0],[2,0,3,2],[2,3,3,0],[0,2,1,0]],[[2,2,2,0],[2,0,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,4,3,0],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[3,3,3,0],[0,1,2,0]],[[1,2,2,0],[2,0,4,2],[2,3,3,0],[0,1,2,0]],[[1,2,2,0],[3,0,3,2],[2,3,3,0],[0,1,2,0]],[[1,2,3,0],[2,0,3,2],[2,3,3,0],[0,1,2,0]],[[1,3,2,0],[2,0,3,2],[2,3,3,0],[0,1,2,0]],[[2,2,2,0],[2,0,3,2],[2,3,3,0],[0,1,2,0]],[[0,3,2,1],[2,3,0,2],[1,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,0,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,0,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,1],[3,3,0,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,0,2],[1,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,0,3],[1,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[1,4,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,4,0],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,3,0],[0,1,3,1]],[[0,2,2,1],[2,3,0,2],[1,3,3,0],[0,1,2,2]],[[0,3,2,1],[2,3,0,2],[1,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,0,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,0,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,1],[3,3,0,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,0,2],[1,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,0,3],[1,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,4,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,4,0],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,3,0],[0,3,1,1]],[[0,3,2,1],[2,3,0,2],[1,3,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,0,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,0,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,1],[3,3,0,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,4,0,2],[1,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,0,3],[1,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,4,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,4,0],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[1,3,3,0],[1,0,3,1]],[[0,2,2,1],[2,3,0,2],[1,3,3,0],[1,0,2,2]],[[0,3,2,1],[2,3,0,2],[1,3,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,0,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,0,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,1],[3,3,0,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,4,0,2],[1,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,0,3],[1,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,4,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,4,0],[1,1,1,1]],[[0,3,2,1],[2,3,0,2],[1,3,3,0],[1,2,0,1]],[[0,2,3,1],[2,3,0,2],[1,3,3,0],[1,2,0,1]],[[0,2,2,2],[2,3,0,2],[1,3,3,0],[1,2,0,1]],[[0,2,2,1],[3,3,0,2],[1,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,4,0,2],[1,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[1,4,3,0],[1,2,0,1]],[[0,3,2,1],[2,3,0,2],[1,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,0,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,0,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,1],[3,3,0,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,0,2],[1,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,0,3],[1,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,4,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,4,1],[0,1,1,1]],[[0,3,2,1],[2,3,0,2],[1,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,0,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,0,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,1],[3,3,0,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,0,2],[1,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,0,3],[1,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[1,4,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,4,1],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,3,1],[0,1,3,0]],[[0,3,2,1],[2,3,0,2],[1,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,0,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,0,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,1],[3,3,0,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,0,2],[1,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,0,3],[1,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[1,4,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[1,3,4,1],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[1,3,3,1],[0,3,0,1]],[[0,3,2,1],[2,3,0,2],[1,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,0,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,0,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,1],[3,3,0,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,0,2],[1,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,0,3],[1,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[1,4,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[1,3,4,1],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[1,3,3,1],[0,3,1,0]],[[0,3,2,1],[2,3,0,2],[1,3,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,0,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,0,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,1],[3,3,0,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,4,0,2],[1,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,0,3],[1,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[1,4,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,4,1],[1,0,1,1]],[[0,3,2,1],[2,3,0,2],[1,3,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,0,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,0,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,1],[3,3,0,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,4,0,2],[1,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,0,3],[1,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[1,4,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,4,1],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,3,1],[1,0,3,0]],[[0,3,2,1],[2,3,0,2],[1,3,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,0,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,0,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,1],[3,3,0,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,4,0,2],[1,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,0,3],[1,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[1,4,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[1,3,4,1],[1,1,0,1]],[[0,3,2,1],[2,3,0,2],[1,3,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,0,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,0,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,1],[3,3,0,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,4,0,2],[1,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,0,3],[1,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[1,4,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[1,3,4,1],[1,1,1,0]],[[0,3,2,1],[2,3,0,2],[1,3,3,1],[1,2,0,0]],[[0,2,3,1],[2,3,0,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,2],[2,3,0,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[3,3,0,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,4,0,2],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,0,3],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,0,2],[1,4,3,1],[1,2,0,0]],[[0,3,2,1],[2,3,0,2],[1,3,3,2],[0,0,1,1]],[[0,2,3,1],[2,3,0,2],[1,3,3,2],[0,0,1,1]],[[0,2,2,2],[2,3,0,2],[1,3,3,2],[0,0,1,1]],[[0,2,2,1],[3,3,0,2],[1,3,3,2],[0,0,1,1]],[[0,2,2,1],[2,4,0,2],[1,3,3,2],[0,0,1,1]],[[0,2,2,1],[2,3,0,3],[1,3,3,2],[0,0,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,4,2],[0,0,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,3,3],[0,0,1,1]],[[0,2,2,1],[2,3,0,2],[1,3,3,2],[0,0,1,2]],[[0,3,2,1],[2,3,0,2],[1,3,3,2],[0,0,2,0]],[[0,2,3,1],[2,3,0,2],[1,3,3,2],[0,0,2,0]],[[0,2,2,2],[2,3,0,2],[1,3,3,2],[0,0,2,0]],[[0,2,2,1],[3,3,0,2],[1,3,3,2],[0,0,2,0]],[[0,2,2,1],[2,4,0,2],[1,3,3,2],[0,0,2,0]],[[0,2,2,1],[2,3,0,3],[1,3,3,2],[0,0,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,4,2],[0,0,2,0]],[[0,2,2,1],[2,3,0,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,0],[2,0,3,2],[2,4,2,1],[1,2,0,0]],[[1,2,2,0],[2,0,3,2],[3,3,2,1],[1,2,0,0]],[[1,2,2,0],[2,0,3,3],[2,3,2,1],[1,2,0,0]],[[1,2,2,0],[2,0,4,2],[2,3,2,1],[1,2,0,0]],[[1,2,2,0],[3,0,3,2],[2,3,2,1],[1,2,0,0]],[[1,2,3,0],[2,0,3,2],[2,3,2,1],[1,2,0,0]],[[1,3,2,0],[2,0,3,2],[2,3,2,1],[1,2,0,0]],[[2,2,2,0],[2,0,3,2],[2,3,2,1],[1,2,0,0]],[[1,2,2,0],[2,0,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,2,0],[2,0,3,2],[2,4,2,1],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[3,3,2,1],[1,1,1,0]],[[1,2,2,0],[2,0,3,3],[2,3,2,1],[1,1,1,0]],[[1,2,2,0],[2,0,4,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,0],[3,0,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,3,0],[2,0,3,2],[2,3,2,1],[1,1,1,0]],[[1,3,2,0],[2,0,3,2],[2,3,2,1],[1,1,1,0]],[[2,2,2,0],[2,0,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[2,3,2,1],[2,1,0,1]],[[1,2,2,0],[2,0,3,2],[2,4,2,1],[1,1,0,1]],[[1,2,2,0],[2,0,3,2],[3,3,2,1],[1,1,0,1]],[[1,2,2,0],[2,0,3,3],[2,3,2,1],[1,1,0,1]],[[1,2,2,0],[2,0,4,2],[2,3,2,1],[1,1,0,1]],[[1,2,2,0],[3,0,3,2],[2,3,2,1],[1,1,0,1]],[[1,2,3,0],[2,0,3,2],[2,3,2,1],[1,1,0,1]],[[1,3,2,0],[2,0,3,2],[2,3,2,1],[1,1,0,1]],[[2,2,2,0],[2,0,3,2],[2,3,2,1],[1,1,0,1]],[[1,2,2,0],[2,0,3,2],[2,3,2,1],[2,0,2,0]],[[1,2,2,0],[2,0,3,2],[2,4,2,1],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[3,3,2,1],[1,0,2,0]],[[1,2,2,0],[2,0,3,3],[2,3,2,1],[1,0,2,0]],[[1,2,2,0],[2,0,4,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,0],[3,0,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,3,0],[2,0,3,2],[2,3,2,1],[1,0,2,0]],[[1,3,2,0],[2,0,3,2],[2,3,2,1],[1,0,2,0]],[[2,2,2,0],[2,0,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,2,1],[2,0,1,1]],[[1,2,2,0],[2,0,3,2],[2,4,2,1],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[3,3,2,1],[1,0,1,1]],[[1,2,2,0],[2,0,3,3],[2,3,2,1],[1,0,1,1]],[[1,2,2,0],[2,0,4,2],[2,3,2,1],[1,0,1,1]],[[1,2,2,0],[3,0,3,2],[2,3,2,1],[1,0,1,1]],[[1,2,3,0],[2,0,3,2],[2,3,2,1],[1,0,1,1]],[[1,3,2,0],[2,0,3,2],[2,3,2,1],[1,0,1,1]],[[2,2,2,0],[2,0,3,2],[2,3,2,1],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,2,0],[2,0,3,2],[2,4,2,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[3,3,2,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,3],[2,3,2,1],[0,2,1,0]],[[1,2,2,0],[2,0,4,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,0],[3,0,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,3,0],[2,0,3,2],[2,3,2,1],[0,2,1,0]],[[1,3,2,0],[2,0,3,2],[2,3,2,1],[0,2,1,0]],[[0,3,2,1],[2,3,0,2],[2,0,2,1],[1,2,2,1]],[[0,2,3,1],[2,3,0,2],[2,0,2,1],[1,2,2,1]],[[0,2,2,2],[2,3,0,2],[2,0,2,1],[1,2,2,1]],[[0,2,2,1],[3,3,0,2],[2,0,2,1],[1,2,2,1]],[[0,2,2,1],[2,4,0,2],[2,0,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,3],[2,0,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[3,0,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,1],[1,2,2,2]],[[0,3,2,1],[2,3,0,2],[2,0,2,2],[0,2,2,1]],[[0,2,3,1],[2,3,0,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,2],[2,3,0,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,1],[3,3,0,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,1],[2,4,0,2],[2,0,2,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,3],[2,0,2,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[3,0,2,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,3],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[0,3,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[0,2,3,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[0,2,2,2]],[[0,3,2,1],[2,3,0,2],[2,0,2,2],[1,1,2,1]],[[0,2,3,1],[2,3,0,2],[2,0,2,2],[1,1,2,1]],[[0,2,2,2],[2,3,0,2],[2,0,2,2],[1,1,2,1]],[[0,2,2,1],[3,3,0,2],[2,0,2,2],[1,1,2,1]],[[0,2,2,1],[2,4,0,2],[2,0,2,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,3],[2,0,2,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[3,0,2,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,3],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[2,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[1,1,3,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[1,1,2,2]],[[0,3,2,1],[2,3,0,2],[2,0,2,2],[1,2,1,1]],[[0,2,3,1],[2,3,0,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,2],[2,3,0,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[3,3,0,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,4,0,2],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,3],[2,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[3,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,3],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[2,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[1,3,1,1]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[1,2,1,2]],[[0,3,2,1],[2,3,0,2],[2,0,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,0,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,0,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[3,3,0,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,4,0,2],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,3],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[3,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,2,3],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,2,2],[1,2,3,0]],[[0,3,2,1],[2,3,0,2],[2,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,0,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,3,0,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[3,3,0,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,4,0,2],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,3],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[3,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,4,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,0],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,0],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,0],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,0],[1,2,2,2]],[[0,2,2,1],[2,3,0,2],[2,0,4,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,1],[0,3,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,1],[0,2,3,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,1],[0,2,2,2]],[[0,2,2,1],[2,3,0,2],[2,0,4,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,1],[1,1,3,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,1],[1,1,2,2]],[[0,3,2,1],[2,3,0,2],[2,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,3,0,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,3,0,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[3,3,0,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,4,0,2],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,3],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[3,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,4,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,1],[2,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,1],[1,3,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,1],[1,2,3,0]],[[0,3,2,1],[2,3,0,2],[2,0,3,2],[0,2,1,1]],[[0,2,3,1],[2,3,0,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,2],[2,3,0,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[3,3,0,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,4,0,2],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,3],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[3,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,0,4,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,3],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[0,2,1,2]],[[0,3,2,1],[2,3,0,2],[2,0,3,2],[0,2,2,0]],[[0,2,3,1],[2,3,0,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,2],[2,3,0,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[3,3,0,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,4,0,2],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,3],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[3,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,4,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,3],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[0,3,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[0,2,3,0]],[[0,3,2,1],[2,3,0,2],[2,0,3,2],[1,1,1,1]],[[0,2,3,1],[2,3,0,2],[2,0,3,2],[1,1,1,1]],[[0,2,2,2],[2,3,0,2],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[3,3,0,2],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,4,0,2],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,3],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[3,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,0,4,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,3],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[2,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[1,1,1,2]],[[0,3,2,1],[2,3,0,2],[2,0,3,2],[1,1,2,0]],[[0,2,3,1],[2,3,0,2],[2,0,3,2],[1,1,2,0]],[[0,2,2,2],[2,3,0,2],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[3,3,0,2],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,4,0,2],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,3],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[3,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,4,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,3],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[2,1,2,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[1,1,3,0]],[[0,3,2,1],[2,3,0,2],[2,0,3,2],[1,2,0,1]],[[0,2,3,1],[2,3,0,2],[2,0,3,2],[1,2,0,1]],[[0,2,2,2],[2,3,0,2],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[3,3,0,2],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[2,4,0,2],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,3],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[3,0,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,0,4,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,3],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[2,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[1,3,0,1]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[1,2,0,2]],[[0,3,2,1],[2,3,0,2],[2,0,3,2],[1,2,1,0]],[[0,2,3,1],[2,3,0,2],[2,0,3,2],[1,2,1,0]],[[0,2,2,2],[2,3,0,2],[2,0,3,2],[1,2,1,0]],[[0,2,2,1],[3,3,0,2],[2,0,3,2],[1,2,1,0]],[[0,2,2,1],[2,4,0,2],[2,0,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,3],[2,0,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[3,0,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,0,4,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,3],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[2,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,0,3,2],[1,3,1,0]],[[2,2,2,0],[2,0,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,3,2,1],[0,3,0,1]],[[1,2,2,0],[2,0,3,2],[2,4,2,1],[0,2,0,1]],[[1,2,2,0],[2,0,3,2],[3,3,2,1],[0,2,0,1]],[[1,2,2,0],[2,0,3,3],[2,3,2,1],[0,2,0,1]],[[1,2,2,0],[2,0,4,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,0],[3,0,3,2],[2,3,2,1],[0,2,0,1]],[[1,2,3,0],[2,0,3,2],[2,3,2,1],[0,2,0,1]],[[1,3,2,0],[2,0,3,2],[2,3,2,1],[0,2,0,1]],[[2,2,2,0],[2,0,3,2],[2,3,2,1],[0,2,0,1]],[[0,3,2,1],[2,3,0,2],[2,1,1,1],[1,2,2,1]],[[0,2,3,1],[2,3,0,2],[2,1,1,1],[1,2,2,1]],[[0,2,2,2],[2,3,0,2],[2,1,1,1],[1,2,2,1]],[[0,2,2,1],[3,3,0,2],[2,1,1,1],[1,2,2,1]],[[0,2,2,1],[2,4,0,2],[2,1,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,3],[2,1,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[3,1,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,1],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,1],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,1],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,1],[1,2,2,2]],[[0,3,2,1],[2,3,0,2],[2,1,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,0,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,0,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[3,3,0,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,4,0,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,3],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[3,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,3],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[0,3,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[0,2,3,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[0,2,2,2]],[[0,3,2,1],[2,3,0,2],[2,1,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,0,2],[2,1,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,0,2],[2,1,1,2],[1,1,2,1]],[[0,2,2,1],[3,3,0,2],[2,1,1,2],[1,1,2,1]],[[0,2,2,1],[2,4,0,2],[2,1,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,3],[2,1,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[3,1,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,3],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[2,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[1,1,3,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[1,1,2,2]],[[0,3,2,1],[2,3,0,2],[2,1,1,2],[1,2,1,1]],[[0,2,3,1],[2,3,0,2],[2,1,1,2],[1,2,1,1]],[[0,2,2,2],[2,3,0,2],[2,1,1,2],[1,2,1,1]],[[0,2,2,1],[3,3,0,2],[2,1,1,2],[1,2,1,1]],[[0,2,2,1],[2,4,0,2],[2,1,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,3],[2,1,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[3,1,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,3],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[2,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[1,3,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[1,2,1,2]],[[0,3,2,1],[2,3,0,2],[2,1,1,2],[1,2,2,0]],[[0,2,3,1],[2,3,0,2],[2,1,1,2],[1,2,2,0]],[[0,2,2,2],[2,3,0,2],[2,1,1,2],[1,2,2,0]],[[0,2,2,1],[3,3,0,2],[2,1,1,2],[1,2,2,0]],[[0,2,2,1],[2,4,0,2],[2,1,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,3],[2,1,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[3,1,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,1,3],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[2,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[1,3,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,1,2],[1,2,3,0]],[[0,3,2,1],[2,3,0,2],[2,1,2,0],[1,2,2,1]],[[0,2,3,1],[2,3,0,2],[2,1,2,0],[1,2,2,1]],[[0,2,2,2],[2,3,0,2],[2,1,2,0],[1,2,2,1]],[[0,2,2,1],[3,3,0,2],[2,1,2,0],[1,2,2,1]],[[0,2,2,1],[2,4,0,2],[2,1,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,3],[2,1,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[3,1,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,0],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,0],[1,3,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,0],[1,2,3,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,0],[1,2,2,2]],[[0,3,2,1],[2,3,0,2],[2,1,2,1],[1,2,2,0]],[[0,2,3,1],[2,3,0,2],[2,1,2,1],[1,2,2,0]],[[0,2,2,2],[2,3,0,2],[2,1,2,1],[1,2,2,0]],[[0,2,2,1],[3,3,0,2],[2,1,2,1],[1,2,2,0]],[[0,2,2,1],[2,4,0,2],[2,1,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,3],[2,1,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[3,1,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,2,1],[2,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,2,1],[1,3,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,2,1],[1,2,3,0]],[[0,3,2,1],[2,3,0,2],[2,1,2,2],[0,1,2,1]],[[0,2,3,1],[2,3,0,2],[2,1,2,2],[0,1,2,1]],[[0,2,2,2],[2,3,0,2],[2,1,2,2],[0,1,2,1]],[[0,2,2,1],[3,3,0,2],[2,1,2,2],[0,1,2,1]],[[0,2,2,1],[2,4,0,2],[2,1,2,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,3],[2,1,2,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[3,1,2,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,3],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,2],[0,1,3,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,2],[0,1,2,2]],[[0,3,2,1],[2,3,0,2],[2,1,2,2],[1,0,2,1]],[[0,2,3,1],[2,3,0,2],[2,1,2,2],[1,0,2,1]],[[0,2,2,2],[2,3,0,2],[2,1,2,2],[1,0,2,1]],[[0,2,2,1],[3,3,0,2],[2,1,2,2],[1,0,2,1]],[[0,2,2,1],[2,4,0,2],[2,1,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,3],[2,1,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[3,1,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,3],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,2],[2,0,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,2],[1,0,3,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,2],[1,0,2,2]],[[0,3,2,1],[2,3,0,2],[2,1,2,2],[1,2,0,1]],[[0,2,3,1],[2,3,0,2],[2,1,2,2],[1,2,0,1]],[[0,2,2,2],[2,3,0,2],[2,1,2,2],[1,2,0,1]],[[0,2,2,1],[3,3,0,2],[2,1,2,2],[1,2,0,1]],[[0,2,2,1],[2,4,0,2],[2,1,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,3],[2,1,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[3,1,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,3],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,2],[2,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,2],[1,3,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,2,2],[1,2,0,2]],[[0,3,2,1],[2,3,0,2],[2,1,2,2],[1,2,1,0]],[[0,2,3,1],[2,3,0,2],[2,1,2,2],[1,2,1,0]],[[0,2,2,2],[2,3,0,2],[2,1,2,2],[1,2,1,0]],[[0,2,2,1],[3,3,0,2],[2,1,2,2],[1,2,1,0]],[[0,2,2,1],[2,4,0,2],[2,1,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,3],[2,1,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[3,1,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,1,2,3],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,1,2,2],[2,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,1,2,2],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[2,4,2,1],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[3,3,2,1],[0,1,2,0]],[[1,2,2,0],[2,0,3,3],[2,3,2,1],[0,1,2,0]],[[1,2,2,0],[2,0,4,2],[2,3,2,1],[0,1,2,0]],[[1,2,2,0],[3,0,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,3,0],[2,0,3,2],[2,3,2,1],[0,1,2,0]],[[1,3,2,0],[2,0,3,2],[2,3,2,1],[0,1,2,0]],[[0,3,2,1],[2,3,0,2],[2,1,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,0,2],[2,1,3,0],[1,2,1,1]],[[0,2,2,2],[2,3,0,2],[2,1,3,0],[1,2,1,1]],[[0,2,2,1],[3,3,0,2],[2,1,3,0],[1,2,1,1]],[[0,2,2,1],[2,4,0,2],[2,1,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,0,3],[2,1,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[3,1,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,0],[2,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,0],[1,3,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,4,1],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,1],[0,1,3,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,1],[0,1,2,2]],[[0,2,2,1],[2,3,0,2],[2,1,4,1],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,1],[1,0,3,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,1],[1,0,2,2]],[[0,3,2,1],[2,3,0,2],[2,1,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,0,2],[2,1,3,1],[1,2,0,1]],[[0,2,2,2],[2,3,0,2],[2,1,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,0,2],[2,1,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,0,2],[2,1,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,0,3],[2,1,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[3,1,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,1],[2,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,1],[1,3,0,1]],[[0,3,2,1],[2,3,0,2],[2,1,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,0,2],[2,1,3,1],[1,2,1,0]],[[0,2,2,2],[2,3,0,2],[2,1,3,1],[1,2,1,0]],[[0,2,2,1],[3,3,0,2],[2,1,3,1],[1,2,1,0]],[[0,2,2,1],[2,4,0,2],[2,1,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,0,3],[2,1,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[3,1,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,1,3,1],[2,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,1,3,1],[1,3,1,0]],[[2,2,2,0],[2,0,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,4,2,1],[0,1,1,1]],[[1,2,2,0],[2,0,3,2],[3,3,2,1],[0,1,1,1]],[[1,2,2,0],[2,0,3,3],[2,3,2,1],[0,1,1,1]],[[1,2,2,0],[2,0,4,2],[2,3,2,1],[0,1,1,1]],[[1,2,2,0],[3,0,3,2],[2,3,2,1],[0,1,1,1]],[[1,2,3,0],[2,0,3,2],[2,3,2,1],[0,1,1,1]],[[1,3,2,0],[2,0,3,2],[2,3,2,1],[0,1,1,1]],[[2,2,2,0],[2,0,3,2],[2,3,2,1],[0,1,1,1]],[[0,3,2,1],[2,3,0,2],[2,1,3,2],[0,0,2,1]],[[0,2,3,1],[2,3,0,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,2],[2,3,0,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[3,3,0,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,4,0,2],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,3,0,3],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,4,2],[0,0,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,3],[0,0,2,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,2],[0,0,2,2]],[[0,3,2,1],[2,3,0,2],[2,1,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,0,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,0,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[3,3,0,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,4,0,2],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,3],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[3,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,4,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,3],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,2],[0,1,1,2]],[[0,3,2,1],[2,3,0,2],[2,1,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,0,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,0,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[3,3,0,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,4,0,2],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,3],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[3,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,4,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,3,3],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,3,2],[0,1,3,0]],[[0,3,2,1],[2,3,0,2],[2,1,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,0,2],[2,1,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,0,2],[2,1,3,2],[0,2,0,1]],[[0,2,2,1],[3,3,0,2],[2,1,3,2],[0,2,0,1]],[[0,2,2,1],[2,4,0,2],[2,1,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,3],[2,1,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[3,1,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,4,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,3],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,2],[0,2,0,2]],[[0,3,2,1],[2,3,0,2],[2,1,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,0,2],[2,1,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,0,2],[2,1,3,2],[0,2,1,0]],[[0,2,2,1],[3,3,0,2],[2,1,3,2],[0,2,1,0]],[[0,2,2,1],[2,4,0,2],[2,1,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,3],[2,1,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[3,1,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,1,4,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,4,2,0],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[3,3,2,0],[1,2,0,1]],[[1,2,2,0],[2,0,4,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,0],[3,0,3,2],[2,3,2,0],[1,2,0,1]],[[0,3,2,1],[2,3,0,2],[2,1,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,0,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,0,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[3,3,0,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,4,0,2],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,3],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[3,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,4,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,3],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,2],[2,0,1,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,2],[1,0,1,2]],[[0,3,2,1],[2,3,0,2],[2,1,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,0,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,0,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[3,3,0,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,4,0,2],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,3],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[3,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,4,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,3,3],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,3,2],[2,0,2,0]],[[0,2,2,1],[2,3,0,2],[2,1,3,2],[1,0,3,0]],[[0,3,2,1],[2,3,0,2],[2,1,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,0,2],[2,1,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,0,2],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[3,3,0,2],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,4,0,2],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,3],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[3,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,4,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,3],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,2],[2,1,0,1]],[[0,2,2,1],[2,3,0,2],[2,1,3,2],[1,1,0,2]],[[0,3,2,1],[2,3,0,2],[2,1,3,2],[1,1,1,0]],[[0,2,3,1],[2,3,0,2],[2,1,3,2],[1,1,1,0]],[[0,2,2,2],[2,3,0,2],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[3,3,0,2],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,4,0,2],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,3],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[3,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[2,1,4,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[2,1,3,3],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[2,1,3,2],[2,1,1,0]],[[1,2,3,0],[2,0,3,2],[2,3,2,0],[1,2,0,1]],[[1,3,2,0],[2,0,3,2],[2,3,2,0],[1,2,0,1]],[[2,2,2,0],[2,0,3,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,3,2,0],[2,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,4,2,0],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[3,3,2,0],[1,1,1,1]],[[1,2,2,0],[2,0,3,3],[2,3,2,0],[1,1,1,1]],[[1,2,2,0],[2,0,4,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,0],[3,0,3,2],[2,3,2,0],[1,1,1,1]],[[1,2,3,0],[2,0,3,2],[2,3,2,0],[1,1,1,1]],[[1,3,2,0],[2,0,3,2],[2,3,2,0],[1,1,1,1]],[[2,2,2,0],[2,0,3,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,3,2,0],[2,0,2,1]],[[1,2,2,0],[2,0,3,2],[2,4,2,0],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[3,3,2,0],[1,0,2,1]],[[1,2,2,0],[2,0,3,3],[2,3,2,0],[1,0,2,1]],[[1,2,2,0],[2,0,4,2],[2,3,2,0],[1,0,2,1]],[[1,2,2,0],[3,0,3,2],[2,3,2,0],[1,0,2,1]],[[1,2,3,0],[2,0,3,2],[2,3,2,0],[1,0,2,1]],[[1,3,2,0],[2,0,3,2],[2,3,2,0],[1,0,2,1]],[[2,2,2,0],[2,0,3,2],[2,3,2,0],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[2,3,2,0],[0,3,1,1]],[[1,2,2,0],[2,0,3,2],[2,4,2,0],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[3,3,2,0],[0,2,1,1]],[[1,2,2,0],[2,0,3,3],[2,3,2,0],[0,2,1,1]],[[1,2,2,0],[2,0,4,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,0],[3,0,3,2],[2,3,2,0],[0,2,1,1]],[[1,2,3,0],[2,0,3,2],[2,3,2,0],[0,2,1,1]],[[1,3,2,0],[2,0,3,2],[2,3,2,0],[0,2,1,1]],[[0,3,2,1],[2,3,0,2],[2,2,1,1],[0,2,2,1]],[[0,2,3,1],[2,3,0,2],[2,2,1,1],[0,2,2,1]],[[0,2,2,2],[2,3,0,2],[2,2,1,1],[0,2,2,1]],[[0,2,2,1],[3,3,0,2],[2,2,1,1],[0,2,2,1]],[[0,2,2,1],[2,4,0,2],[2,2,1,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,3],[2,2,1,1],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[3,2,1,1],[0,2,2,1]],[[0,3,2,1],[2,3,0,2],[2,2,1,1],[1,1,2,1]],[[0,2,3,1],[2,3,0,2],[2,2,1,1],[1,1,2,1]],[[0,2,2,2],[2,3,0,2],[2,2,1,1],[1,1,2,1]],[[0,2,2,1],[3,3,0,2],[2,2,1,1],[1,1,2,1]],[[0,2,2,1],[2,4,0,2],[2,2,1,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,3],[2,2,1,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[3,2,1,1],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,1],[2,1,2,1]],[[0,3,2,1],[2,3,0,2],[2,2,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,0,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,0,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[3,3,0,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,4,0,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,3],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[3,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,3],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,2],[0,1,3,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,2],[0,1,2,2]],[[0,3,2,1],[2,3,0,2],[2,2,1,2],[0,2,1,1]],[[0,2,3,1],[2,3,0,2],[2,2,1,2],[0,2,1,1]],[[0,2,2,2],[2,3,0,2],[2,2,1,2],[0,2,1,1]],[[0,2,2,1],[3,3,0,2],[2,2,1,2],[0,2,1,1]],[[0,2,2,1],[2,4,0,2],[2,2,1,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,3],[2,2,1,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[3,2,1,2],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,3],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,2],[0,2,1,2]],[[0,3,2,1],[2,3,0,2],[2,2,1,2],[0,2,2,0]],[[0,2,3,1],[2,3,0,2],[2,2,1,2],[0,2,2,0]],[[0,2,2,2],[2,3,0,2],[2,2,1,2],[0,2,2,0]],[[0,2,2,1],[3,3,0,2],[2,2,1,2],[0,2,2,0]],[[0,2,2,1],[2,4,0,2],[2,2,1,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,3],[2,2,1,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[3,2,1,2],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,2,1,3],[0,2,2,0]],[[0,3,2,1],[2,3,0,2],[2,2,1,2],[1,0,2,1]],[[0,2,3,1],[2,3,0,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,2],[2,3,0,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[3,3,0,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,4,0,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,3],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[3,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,3],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,2],[2,0,2,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,2],[1,0,3,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,2],[1,0,2,2]],[[0,3,2,1],[2,3,0,2],[2,2,1,2],[1,1,1,1]],[[0,2,3,1],[2,3,0,2],[2,2,1,2],[1,1,1,1]],[[0,2,2,2],[2,3,0,2],[2,2,1,2],[1,1,1,1]],[[0,2,2,1],[3,3,0,2],[2,2,1,2],[1,1,1,1]],[[0,2,2,1],[2,4,0,2],[2,2,1,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,3],[2,2,1,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[3,2,1,2],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,3],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,2],[2,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,1,2],[1,1,1,2]],[[0,3,2,1],[2,3,0,2],[2,2,1,2],[1,1,2,0]],[[0,2,3,1],[2,3,0,2],[2,2,1,2],[1,1,2,0]],[[0,2,2,2],[2,3,0,2],[2,2,1,2],[1,1,2,0]],[[0,2,2,1],[3,3,0,2],[2,2,1,2],[1,1,2,0]],[[0,2,2,1],[2,4,0,2],[2,2,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,3],[2,2,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[3,2,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[2,2,1,3],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[2,2,1,2],[2,1,2,0]],[[2,2,2,0],[2,0,3,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,4,2,0],[0,1,2,1]],[[1,2,2,0],[2,0,3,2],[3,3,2,0],[0,1,2,1]],[[1,2,2,0],[2,0,3,3],[2,3,2,0],[0,1,2,1]],[[1,2,2,0],[2,0,4,2],[2,3,2,0],[0,1,2,1]],[[1,2,2,0],[3,0,3,2],[2,3,2,0],[0,1,2,1]],[[1,2,3,0],[2,0,3,2],[2,3,2,0],[0,1,2,1]],[[1,3,2,0],[2,0,3,2],[2,3,2,0],[0,1,2,1]],[[2,2,2,0],[2,0,3,2],[2,3,2,0],[0,1,2,1]],[[0,3,2,1],[2,3,0,2],[2,2,2,0],[0,2,2,1]],[[0,2,3,1],[2,3,0,2],[2,2,2,0],[0,2,2,1]],[[0,2,2,2],[2,3,0,2],[2,2,2,0],[0,2,2,1]],[[0,2,2,1],[3,3,0,2],[2,2,2,0],[0,2,2,1]],[[0,2,2,1],[2,4,0,2],[2,2,2,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,3],[2,2,2,0],[0,2,2,1]],[[0,2,2,1],[2,3,0,2],[3,2,2,0],[0,2,2,1]],[[0,3,2,1],[2,3,0,2],[2,2,2,0],[1,1,2,1]],[[0,2,3,1],[2,3,0,2],[2,2,2,0],[1,1,2,1]],[[0,2,2,2],[2,3,0,2],[2,2,2,0],[1,1,2,1]],[[0,2,2,1],[3,3,0,2],[2,2,2,0],[1,1,2,1]],[[0,2,2,1],[2,4,0,2],[2,2,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,3],[2,2,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[3,2,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,0,2],[2,2,2,0],[2,1,2,1]],[[0,3,2,1],[2,3,0,2],[2,2,2,1],[0,2,2,0]],[[0,2,3,1],[2,3,0,2],[2,2,2,1],[0,2,2,0]],[[0,2,2,2],[2,3,0,2],[2,2,2,1],[0,2,2,0]],[[0,2,2,1],[3,3,0,2],[2,2,2,1],[0,2,2,0]],[[0,2,2,1],[2,4,0,2],[2,2,2,1],[0,2,2,0]],[[0,2,2,1],[2,3,0,3],[2,2,2,1],[0,2,2,0]],[[0,2,2,1],[2,3,0,2],[3,2,2,1],[0,2,2,0]],[[0,3,2,1],[2,3,0,2],[2,2,2,1],[1,1,2,0]],[[0,2,3,1],[2,3,0,2],[2,2,2,1],[1,1,2,0]],[[0,2,2,2],[2,3,0,2],[2,2,2,1],[1,1,2,0]],[[0,2,2,1],[3,3,0,2],[2,2,2,1],[1,1,2,0]],[[0,2,2,1],[2,4,0,2],[2,2,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,3],[2,2,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[3,2,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,0,2],[2,2,2,1],[2,1,2,0]],[[0,3,2,1],[2,3,0,2],[2,2,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,0,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,0,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[3,3,0,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,4,0,2],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,3],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[3,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,2,3],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,2,2],[0,1,1,2]],[[0,3,2,1],[2,3,0,2],[2,2,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,0,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,0,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[3,3,0,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,4,0,2],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,3],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[3,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[2,2,2,3],[0,1,2,0]],[[0,3,2,1],[2,3,0,2],[2,2,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,0,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,0,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[3,3,0,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,4,0,2],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,3],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[3,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,2,2,3],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,2,2,2],[0,2,0,2]],[[0,3,2,1],[2,3,0,2],[2,2,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,0,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,0,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[3,3,0,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,4,0,2],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,3],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[3,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[2,2,2,3],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[2,0,3,2],[2,4,1,2],[1,2,0,0]],[[0,3,2,1],[2,3,0,2],[2,2,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,0,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,0,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[3,3,0,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,4,0,2],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,3],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[3,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,2,3],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,2,2],[2,0,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,2,2],[1,0,1,2]],[[0,3,2,1],[2,3,0,2],[2,2,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,0,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,0,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[3,3,0,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,4,0,2],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,3],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[3,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[2,2,2,3],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[2,2,2,2],[2,0,2,0]],[[0,3,2,1],[2,3,0,2],[2,2,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,0,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,0,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[3,3,0,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,4,0,2],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,3],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[3,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[2,2,2,3],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[2,2,2,2],[2,1,0,1]],[[0,2,2,1],[2,3,0,2],[2,2,2,2],[1,1,0,2]],[[0,3,2,1],[2,3,0,2],[2,2,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,0,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,0,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[3,3,0,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,4,0,2],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,3],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[3,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[2,2,2,3],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[2,2,2,2],[2,1,1,0]],[[1,2,2,0],[2,0,3,2],[3,3,1,2],[1,2,0,0]],[[1,2,2,0],[2,0,3,3],[2,3,1,2],[1,2,0,0]],[[1,2,2,0],[2,0,4,2],[2,3,1,2],[1,2,0,0]],[[1,2,2,0],[3,0,3,2],[2,3,1,2],[1,2,0,0]],[[1,2,3,0],[2,0,3,2],[2,3,1,2],[1,2,0,0]],[[1,3,2,0],[2,0,3,2],[2,3,1,2],[1,2,0,0]],[[2,2,2,0],[2,0,3,2],[2,3,1,2],[1,2,0,0]],[[0,3,2,1],[2,3,0,2],[2,2,2,2],[1,2,0,0]],[[0,2,3,1],[2,3,0,2],[2,2,2,2],[1,2,0,0]],[[0,2,2,2],[2,3,0,2],[2,2,2,2],[1,2,0,0]],[[0,2,2,1],[3,3,0,2],[2,2,2,2],[1,2,0,0]],[[0,2,2,1],[2,4,0,2],[2,2,2,2],[1,2,0,0]],[[0,2,2,1],[2,3,0,3],[2,2,2,2],[1,2,0,0]],[[0,2,2,1],[2,3,0,2],[3,2,2,2],[1,2,0,0]],[[0,2,2,1],[2,3,0,2],[2,2,2,2],[2,2,0,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,3],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[2,4,1,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[3,3,1,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,3],[2,3,1,2],[1,1,1,0]],[[1,2,2,0],[2,0,4,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,0],[3,0,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,3,0],[2,0,3,2],[2,3,1,2],[1,1,1,0]],[[1,3,2,0],[2,0,3,2],[2,3,1,2],[1,1,1,0]],[[2,2,2,0],[2,0,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,2],[1,1,0,2]],[[1,2,2,0],[2,0,3,2],[2,3,1,2],[2,1,0,1]],[[1,2,2,0],[2,0,3,2],[2,3,1,3],[1,1,0,1]],[[1,2,2,0],[2,0,3,2],[2,4,1,2],[1,1,0,1]],[[1,2,2,0],[2,0,3,2],[3,3,1,2],[1,1,0,1]],[[1,2,2,0],[2,0,3,3],[2,3,1,2],[1,1,0,1]],[[1,2,2,0],[2,0,4,2],[2,3,1,2],[1,1,0,1]],[[0,3,2,1],[2,3,0,2],[2,2,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,0,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,0,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[3,3,0,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,0,2],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,0,3],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,0,2],[3,2,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,0,2],[2,2,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,0,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,0,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[3,3,0,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,0,2],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,0,3],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,0,2],[3,2,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,0,2],[2,2,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,0,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,0,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[3,3,0,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,4,0,2],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,0,3],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[3,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,0,2],[2,2,3,0],[2,0,2,1]],[[0,3,2,1],[2,3,0,2],[2,2,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,0,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,0,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[3,3,0,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,4,0,2],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,0,3],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[3,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,3,0],[2,1,1,1]],[[0,3,2,1],[2,3,0,2],[2,2,3,0],[1,2,0,1]],[[0,2,3,1],[2,3,0,2],[2,2,3,0],[1,2,0,1]],[[0,2,2,2],[2,3,0,2],[2,2,3,0],[1,2,0,1]],[[0,2,2,1],[3,3,0,2],[2,2,3,0],[1,2,0,1]],[[0,2,2,1],[2,4,0,2],[2,2,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[3,2,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,0,2],[2,2,3,0],[2,2,0,1]],[[1,2,2,0],[3,0,3,2],[2,3,1,2],[1,1,0,1]],[[1,2,3,0],[2,0,3,2],[2,3,1,2],[1,1,0,1]],[[1,3,2,0],[2,0,3,2],[2,3,1,2],[1,1,0,1]],[[2,2,2,0],[2,0,3,2],[2,3,1,2],[1,1,0,1]],[[0,3,2,1],[2,3,0,2],[2,2,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,0,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,0,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[3,3,0,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,0,2],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,0,3],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,0,2],[3,2,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,0,2],[2,2,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,0,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,0,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[3,3,0,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,0,2],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,0,3],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,0,2],[3,2,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,0,2],[2,2,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,0,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,0,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[3,3,0,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,0,2],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,0,3],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,0,2],[3,2,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,0,2],[2,2,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,0,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,0,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[3,3,0,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,0,2],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,0,3],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,0,2],[3,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,2],[2,0,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,3],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[2,4,1,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[3,3,1,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,3],[2,3,1,2],[1,0,2,0]],[[1,2,2,0],[2,0,4,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,0],[3,0,3,2],[2,3,1,2],[1,0,2,0]],[[0,3,2,1],[2,3,0,2],[2,2,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,0,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,0,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[3,3,0,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,4,0,2],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,0,3],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[3,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[2,2,3,1],[2,0,1,1]],[[0,3,2,1],[2,3,0,2],[2,2,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,0,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,0,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[3,3,0,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,4,0,2],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,0,3],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[3,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,0,2],[2,2,3,1],[2,0,2,0]],[[0,3,2,1],[2,3,0,2],[2,2,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,0,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,0,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[3,3,0,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,4,0,2],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,0,3],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[3,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,0,2],[2,2,3,1],[2,1,0,1]],[[0,3,2,1],[2,3,0,2],[2,2,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,0,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,0,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[3,3,0,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,4,0,2],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,0,3],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[3,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,0,2],[2,2,3,1],[2,1,1,0]],[[1,2,3,0],[2,0,3,2],[2,3,1,2],[1,0,2,0]],[[1,3,2,0],[2,0,3,2],[2,3,1,2],[1,0,2,0]],[[2,2,2,0],[2,0,3,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,2],[1,0,1,2]],[[1,2,2,0],[2,0,3,2],[2,3,1,2],[2,0,1,1]],[[1,2,2,0],[2,0,3,2],[2,3,1,3],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[2,4,1,2],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[3,3,1,2],[1,0,1,1]],[[1,2,2,0],[2,0,3,3],[2,3,1,2],[1,0,1,1]],[[1,2,2,0],[2,0,4,2],[2,3,1,2],[1,0,1,1]],[[1,2,2,0],[3,0,3,2],[2,3,1,2],[1,0,1,1]],[[0,3,2,1],[2,3,0,2],[2,2,3,1],[1,2,0,0]],[[0,2,3,1],[2,3,0,2],[2,2,3,1],[1,2,0,0]],[[0,2,2,2],[2,3,0,2],[2,2,3,1],[1,2,0,0]],[[0,2,2,1],[3,3,0,2],[2,2,3,1],[1,2,0,0]],[[0,2,2,1],[2,4,0,2],[2,2,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,0,3],[2,2,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,0,2],[3,2,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,0,2],[2,2,3,1],[2,2,0,0]],[[1,2,3,0],[2,0,3,2],[2,3,1,2],[1,0,1,1]],[[1,3,2,0],[2,0,3,2],[2,3,1,2],[1,0,1,1]],[[2,2,2,0],[2,0,3,2],[2,3,1,2],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,3],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,4,1,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[3,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,3],[2,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,0,4,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,0],[3,0,3,2],[2,3,1,2],[0,2,1,0]],[[1,2,3,0],[2,0,3,2],[2,3,1,2],[0,2,1,0]],[[1,3,2,0],[2,0,3,2],[2,3,1,2],[0,2,1,0]],[[2,2,2,0],[2,0,3,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,2],[0,2,0,2]],[[1,2,2,0],[2,0,3,2],[2,3,1,2],[0,3,0,1]],[[1,2,2,0],[2,0,3,2],[2,3,1,3],[0,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,4,1,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,2],[3,3,1,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,3],[2,3,1,2],[0,2,0,1]],[[1,2,2,0],[2,0,4,2],[2,3,1,2],[0,2,0,1]],[[1,2,2,0],[3,0,3,2],[2,3,1,2],[0,2,0,1]],[[1,2,3,0],[2,0,3,2],[2,3,1,2],[0,2,0,1]],[[1,3,2,0],[2,0,3,2],[2,3,1,2],[0,2,0,1]],[[2,2,2,0],[2,0,3,2],[2,3,1,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,3,1,3],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,4,1,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[3,3,1,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,3],[2,3,1,2],[0,1,2,0]],[[1,2,2,0],[2,0,4,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,0],[3,0,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,3,0],[2,0,3,2],[2,3,1,2],[0,1,2,0]],[[1,3,2,0],[2,0,3,2],[2,3,1,2],[0,1,2,0]],[[2,2,2,0],[2,0,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,2],[0,1,1,2]],[[1,2,2,0],[2,0,3,2],[2,3,1,3],[0,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,4,1,2],[0,1,1,1]],[[1,2,2,0],[2,0,3,2],[3,3,1,2],[0,1,1,1]],[[1,2,2,0],[2,0,3,3],[2,3,1,2],[0,1,1,1]],[[1,2,2,0],[2,0,4,2],[2,3,1,2],[0,1,1,1]],[[1,2,2,0],[3,0,3,2],[2,3,1,2],[0,1,1,1]],[[1,2,3,0],[2,0,3,2],[2,3,1,2],[0,1,1,1]],[[1,3,2,0],[2,0,3,2],[2,3,1,2],[0,1,1,1]],[[2,2,2,0],[2,0,3,2],[2,3,1,2],[0,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,4,1,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[3,3,1,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,3],[2,3,1,1],[1,1,2,0]],[[1,2,2,0],[2,0,4,2],[2,3,1,1],[1,1,2,0]],[[1,2,2,0],[3,0,3,2],[2,3,1,1],[1,1,2,0]],[[1,2,3,0],[2,0,3,2],[2,3,1,1],[1,1,2,0]],[[1,3,2,0],[2,0,3,2],[2,3,1,1],[1,1,2,0]],[[2,2,2,0],[2,0,3,2],[2,3,1,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,1],[0,2,3,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,1],[0,3,2,0]],[[1,2,2,0],[2,0,3,2],[2,4,1,1],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[3,3,1,1],[0,2,2,0]],[[1,2,2,0],[2,0,3,3],[2,3,1,1],[0,2,2,0]],[[1,2,2,0],[2,0,4,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,0],[3,0,3,2],[2,3,1,1],[0,2,2,0]],[[1,2,3,0],[2,0,3,2],[2,3,1,1],[0,2,2,0]],[[1,3,2,0],[2,0,3,2],[2,3,1,1],[0,2,2,0]],[[2,2,2,0],[2,0,3,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,1,0],[2,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,4,1,0],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[3,3,1,0],[1,1,2,1]],[[1,2,2,0],[2,0,3,3],[2,3,1,0],[1,1,2,1]],[[1,2,2,0],[2,0,4,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,0],[3,0,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,3,0],[2,0,3,2],[2,3,1,0],[1,1,2,1]],[[1,3,2,0],[2,0,3,2],[2,3,1,0],[1,1,2,1]],[[2,2,2,0],[2,0,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,3,1,0],[0,2,2,2]],[[1,2,2,0],[2,0,3,2],[2,3,1,0],[0,2,3,1]],[[1,2,2,0],[2,0,3,2],[2,3,1,0],[0,3,2,1]],[[1,2,2,0],[2,0,3,2],[2,4,1,0],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[3,3,1,0],[0,2,2,1]],[[1,2,2,0],[2,0,3,3],[2,3,1,0],[0,2,2,1]],[[1,2,2,0],[2,0,4,2],[2,3,1,0],[0,2,2,1]],[[1,2,2,0],[3,0,3,2],[2,3,1,0],[0,2,2,1]],[[1,2,3,0],[2,0,3,2],[2,3,1,0],[0,2,2,1]],[[1,3,2,0],[2,0,3,2],[2,3,1,0],[0,2,2,1]],[[2,2,2,0],[2,0,3,2],[2,3,1,0],[0,2,2,1]],[[0,2,2,1],[3,3,0,2],[2,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[3,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,3,0,0],[2,2,2,1]],[[0,2,2,1],[2,3,0,2],[2,3,0,0],[1,3,2,1]],[[0,2,2,1],[3,3,0,2],[2,3,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[3,3,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,3,0,1],[2,2,2,0]],[[0,2,2,1],[2,3,0,2],[2,3,0,1],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,0,3],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,4,0,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[3,3,0,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,3],[2,3,0,2],[1,1,2,0]],[[1,2,2,0],[2,0,4,2],[2,3,0,2],[1,1,2,0]],[[1,2,2,0],[3,0,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,3,0],[2,0,3,2],[2,3,0,2],[1,1,2,0]],[[1,3,2,0],[2,0,3,2],[2,3,0,2],[1,1,2,0]],[[2,2,2,0],[2,0,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[1,1,1,2]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[2,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,3],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,4,0,2],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[3,3,0,2],[1,1,1,1]],[[1,2,2,0],[2,0,3,3],[2,3,0,2],[1,1,1,1]],[[1,2,2,0],[2,0,4,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,0],[3,0,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,3,0],[2,0,3,2],[2,3,0,2],[1,1,1,1]],[[1,3,2,0],[2,0,3,2],[2,3,0,2],[1,1,1,1]],[[2,2,2,0],[2,0,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[1,0,2,2]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[1,0,3,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[2,0,2,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,3],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[2,4,0,2],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[3,3,0,2],[1,0,2,1]],[[1,2,2,0],[2,0,3,3],[2,3,0,2],[1,0,2,1]],[[1,2,2,0],[2,0,4,2],[2,3,0,2],[1,0,2,1]],[[1,2,2,0],[3,0,3,2],[2,3,0,2],[1,0,2,1]],[[1,2,3,0],[2,0,3,2],[2,3,0,2],[1,0,2,1]],[[1,3,2,0],[2,0,3,2],[2,3,0,2],[1,0,2,1]],[[2,2,2,0],[2,0,3,2],[2,3,0,2],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[0,2,3,0]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[0,3,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,0,3],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,4,0,2],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[3,3,0,2],[0,2,2,0]],[[1,2,2,0],[2,0,3,3],[2,3,0,2],[0,2,2,0]],[[1,2,2,0],[2,0,4,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,0],[3,0,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,3,0],[2,0,3,2],[2,3,0,2],[0,2,2,0]],[[1,3,2,0],[2,0,3,2],[2,3,0,2],[0,2,2,0]],[[2,2,2,0],[2,0,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[0,2,1,2]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[0,3,1,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,3],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,4,0,2],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[3,3,0,2],[0,2,1,1]],[[1,2,2,0],[2,0,3,3],[2,3,0,2],[0,2,1,1]],[[1,2,2,0],[2,0,4,2],[2,3,0,2],[0,2,1,1]],[[1,2,2,0],[3,0,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,3,0],[2,0,3,2],[2,3,0,2],[0,2,1,1]],[[1,3,2,0],[2,0,3,2],[2,3,0,2],[0,2,1,1]],[[2,2,2,0],[2,0,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[0,1,2,2]],[[1,2,2,0],[2,0,3,2],[2,3,0,2],[0,1,3,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,3],[0,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,4,0,2],[0,1,2,1]],[[1,2,2,0],[2,0,3,2],[3,3,0,2],[0,1,2,1]],[[1,2,2,0],[2,0,3,3],[2,3,0,2],[0,1,2,1]],[[1,2,2,0],[2,0,4,2],[2,3,0,2],[0,1,2,1]],[[1,2,2,0],[3,0,3,2],[2,3,0,2],[0,1,2,1]],[[1,2,3,0],[2,0,3,2],[2,3,0,2],[0,1,2,1]],[[1,3,2,0],[2,0,3,2],[2,3,0,2],[0,1,2,1]],[[2,2,2,0],[2,0,3,2],[2,3,0,2],[0,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,1],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,0,1],[2,2,2,0]],[[1,2,2,0],[2,0,3,2],[3,3,0,1],[1,2,2,0]],[[1,2,2,0],[3,0,3,2],[2,3,0,1],[1,2,2,0]],[[1,2,3,0],[2,0,3,2],[2,3,0,1],[1,2,2,0]],[[1,3,2,0],[2,0,3,2],[2,3,0,1],[1,2,2,0]],[[2,2,2,0],[2,0,3,2],[2,3,0,1],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,3,0,1],[2,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,4,0,1],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[3,3,0,1],[1,1,2,1]],[[1,2,2,0],[2,0,3,3],[2,3,0,1],[1,1,2,1]],[[1,2,2,0],[2,0,4,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,0],[3,0,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,3,0],[2,0,3,2],[2,3,0,1],[1,1,2,1]],[[1,3,2,0],[2,0,3,2],[2,3,0,1],[1,1,2,1]],[[2,2,2,0],[2,0,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,1],[0,2,2,2]],[[1,2,2,0],[2,0,3,2],[2,3,0,1],[0,2,3,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,1],[0,3,2,1]],[[1,2,2,0],[2,0,3,2],[2,4,0,1],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[3,3,0,1],[0,2,2,1]],[[1,2,2,0],[2,0,3,3],[2,3,0,1],[0,2,2,1]],[[1,2,2,0],[2,0,4,2],[2,3,0,1],[0,2,2,1]],[[1,2,2,0],[3,0,3,2],[2,3,0,1],[0,2,2,1]],[[1,2,3,0],[2,0,3,2],[2,3,0,1],[0,2,2,1]],[[1,3,2,0],[2,0,3,2],[2,3,0,1],[0,2,2,1]],[[2,2,2,0],[2,0,3,2],[2,3,0,1],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,0],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[2,3,0,0],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[3,3,0,0],[1,2,2,1]],[[1,2,2,0],[3,0,3,2],[2,3,0,0],[1,2,2,1]],[[1,2,3,0],[2,0,3,2],[2,3,0,0],[1,2,2,1]],[[1,3,2,0],[2,0,3,2],[2,3,0,0],[1,2,2,1]],[[2,2,2,0],[2,0,3,2],[2,3,0,0],[1,2,2,1]],[[0,3,2,1],[2,3,0,2],[2,3,2,2],[1,0,0,1]],[[0,2,3,1],[2,3,0,2],[2,3,2,2],[1,0,0,1]],[[0,2,2,2],[2,3,0,2],[2,3,2,2],[1,0,0,1]],[[0,2,2,1],[3,3,0,2],[2,3,2,2],[1,0,0,1]],[[0,2,2,1],[2,4,0,2],[2,3,2,2],[1,0,0,1]],[[0,2,2,1],[2,3,0,3],[2,3,2,2],[1,0,0,1]],[[0,2,2,1],[2,3,0,2],[3,3,2,2],[1,0,0,1]],[[0,2,2,1],[2,3,0,2],[2,3,2,3],[1,0,0,1]],[[0,3,2,1],[2,3,0,2],[2,3,2,2],[1,0,1,0]],[[0,2,3,1],[2,3,0,2],[2,3,2,2],[1,0,1,0]],[[0,2,2,2],[2,3,0,2],[2,3,2,2],[1,0,1,0]],[[0,2,2,1],[3,3,0,2],[2,3,2,2],[1,0,1,0]],[[0,2,2,1],[2,4,0,2],[2,3,2,2],[1,0,1,0]],[[0,2,2,1],[2,3,0,3],[2,3,2,2],[1,0,1,0]],[[0,2,2,1],[2,3,0,2],[3,3,2,2],[1,0,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,0],[2,0,3,2],[3,2,3,2],[1,0,0,1]],[[1,2,2,0],[2,0,3,3],[2,2,3,2],[1,0,0,1]],[[1,2,2,0],[2,0,4,2],[2,2,3,2],[1,0,0,1]],[[1,2,2,0],[3,0,3,2],[2,2,3,2],[1,0,0,1]],[[1,2,3,0],[2,0,3,2],[2,2,3,2],[1,0,0,1]],[[1,3,2,0],[2,0,3,2],[2,2,3,2],[1,0,0,1]],[[2,2,2,0],[2,0,3,2],[2,2,3,2],[1,0,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,2,0],[2,0,3,3],[2,2,3,2],[0,1,0,1]],[[1,2,2,0],[2,0,4,2],[2,2,3,2],[0,1,0,1]],[[1,2,2,0],[3,0,3,2],[2,2,3,2],[0,1,0,1]],[[1,2,3,0],[2,0,3,2],[2,2,3,2],[0,1,0,1]],[[1,3,2,0],[2,0,3,2],[2,2,3,2],[0,1,0,1]],[[2,2,2,0],[2,0,3,2],[2,2,3,2],[0,1,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,3,1],[2,1,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[3,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,0,3,3],[2,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,0,4,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,0],[3,0,3,2],[2,2,3,1],[1,1,1,0]],[[1,2,3,0],[2,0,3,2],[2,2,3,1],[1,1,1,0]],[[1,3,2,0],[2,0,3,2],[2,2,3,1],[1,1,1,0]],[[2,2,2,0],[2,0,3,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,3,1],[2,1,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,4,1],[1,1,0,1]],[[1,2,2,0],[2,0,3,2],[3,2,3,1],[1,1,0,1]],[[1,2,2,0],[2,0,3,3],[2,2,3,1],[1,1,0,1]],[[0,3,2,1],[2,3,0,2],[2,3,3,0],[1,0,1,1]],[[0,2,3,1],[2,3,0,2],[2,3,3,0],[1,0,1,1]],[[0,2,2,2],[2,3,0,2],[2,3,3,0],[1,0,1,1]],[[0,2,2,1],[3,3,0,2],[2,3,3,0],[1,0,1,1]],[[0,2,2,1],[2,4,0,2],[2,3,3,0],[1,0,1,1]],[[0,2,2,1],[2,3,0,2],[3,3,3,0],[1,0,1,1]],[[1,2,2,0],[2,0,4,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,0],[3,0,3,2],[2,2,3,1],[1,1,0,1]],[[1,2,3,0],[2,0,3,2],[2,2,3,1],[1,1,0,1]],[[1,3,2,0],[2,0,3,2],[2,2,3,1],[1,1,0,1]],[[2,2,2,0],[2,0,3,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,3,1],[1,0,3,0]],[[1,2,2,0],[2,0,3,2],[2,2,3,1],[2,0,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,4,1],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[3,2,3,1],[1,0,2,0]],[[1,2,2,0],[2,0,3,3],[2,2,3,1],[1,0,2,0]],[[1,2,2,0],[2,0,4,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,0],[3,0,3,2],[2,2,3,1],[1,0,2,0]],[[1,2,3,0],[2,0,3,2],[2,2,3,1],[1,0,2,0]],[[1,3,2,0],[2,0,3,2],[2,2,3,1],[1,0,2,0]],[[2,2,2,0],[2,0,3,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,3,1],[2,0,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,4,1],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[3,2,3,1],[1,0,1,1]],[[1,2,2,0],[2,0,3,3],[2,2,3,1],[1,0,1,1]],[[1,2,2,0],[2,0,4,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,0],[3,0,3,2],[2,2,3,1],[1,0,1,1]],[[1,2,3,0],[2,0,3,2],[2,2,3,1],[1,0,1,1]],[[1,3,2,0],[2,0,3,2],[2,2,3,1],[1,0,1,1]],[[2,2,2,0],[2,0,3,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[3,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,3],[2,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,0,4,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,0],[3,0,3,2],[2,2,3,1],[0,2,1,0]],[[1,2,3,0],[2,0,3,2],[2,2,3,1],[0,2,1,0]],[[1,3,2,0],[2,0,3,2],[2,2,3,1],[0,2,1,0]],[[2,2,2,0],[2,0,3,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,4,1],[0,2,0,1]],[[1,2,2,0],[2,0,3,2],[3,2,3,1],[0,2,0,1]],[[1,2,2,0],[2,0,3,3],[2,2,3,1],[0,2,0,1]],[[1,2,2,0],[2,0,4,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,0],[3,0,3,2],[2,2,3,1],[0,2,0,1]],[[1,2,3,0],[2,0,3,2],[2,2,3,1],[0,2,0,1]],[[1,3,2,0],[2,0,3,2],[2,2,3,1],[0,2,0,1]],[[2,2,2,0],[2,0,3,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,3,1],[0,1,3,0]],[[0,3,2,1],[2,3,0,2],[2,3,3,1],[1,0,0,1]],[[0,2,3,1],[2,3,0,2],[2,3,3,1],[1,0,0,1]],[[0,2,2,2],[2,3,0,2],[2,3,3,1],[1,0,0,1]],[[0,2,2,1],[3,3,0,2],[2,3,3,1],[1,0,0,1]],[[0,2,2,1],[2,4,0,2],[2,3,3,1],[1,0,0,1]],[[0,2,2,1],[2,3,0,3],[2,3,3,1],[1,0,0,1]],[[0,2,2,1],[2,3,0,2],[3,3,3,1],[1,0,0,1]],[[0,3,2,1],[2,3,0,2],[2,3,3,1],[1,0,1,0]],[[0,2,3,1],[2,3,0,2],[2,3,3,1],[1,0,1,0]],[[0,2,2,2],[2,3,0,2],[2,3,3,1],[1,0,1,0]],[[0,2,2,1],[3,3,0,2],[2,3,3,1],[1,0,1,0]],[[0,2,2,1],[2,4,0,2],[2,3,3,1],[1,0,1,0]],[[0,2,2,1],[2,3,0,3],[2,3,3,1],[1,0,1,0]],[[0,2,2,1],[2,3,0,2],[3,3,3,1],[1,0,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,4,1],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[3,2,3,1],[0,1,2,0]],[[1,2,2,0],[2,0,3,3],[2,2,3,1],[0,1,2,0]],[[1,2,2,0],[2,0,4,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,0],[3,0,3,2],[2,2,3,1],[0,1,2,0]],[[1,2,3,0],[2,0,3,2],[2,2,3,1],[0,1,2,0]],[[1,3,2,0],[2,0,3,2],[2,2,3,1],[0,1,2,0]],[[2,2,2,0],[2,0,3,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,4,1],[0,1,1,1]],[[1,2,2,0],[2,0,3,2],[3,2,3,1],[0,1,1,1]],[[1,2,2,0],[2,0,3,3],[2,2,3,1],[0,1,1,1]],[[1,2,2,0],[2,0,4,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,0],[3,0,3,2],[2,2,3,1],[0,1,1,1]],[[1,2,3,0],[2,0,3,2],[2,2,3,1],[0,1,1,1]],[[1,3,2,0],[2,0,3,2],[2,2,3,1],[0,1,1,1]],[[2,2,2,0],[2,0,3,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,4,1],[0,0,2,1]],[[1,2,2,0],[2,0,3,3],[2,2,3,1],[0,0,2,1]],[[1,2,2,0],[2,0,4,2],[2,2,3,1],[0,0,2,1]],[[1,2,2,0],[3,0,3,2],[2,2,3,1],[0,0,2,1]],[[1,2,3,0],[2,0,3,2],[2,2,3,1],[0,0,2,1]],[[1,3,2,0],[2,0,3,2],[2,2,3,1],[0,0,2,1]],[[2,2,2,0],[2,0,3,2],[2,2,3,1],[0,0,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,3,0],[2,2,1,0]],[[1,2,2,0],[2,0,3,2],[3,2,3,0],[1,2,1,0]],[[1,2,2,0],[2,0,4,2],[2,2,3,0],[1,2,1,0]],[[1,2,2,0],[3,0,3,2],[2,2,3,0],[1,2,1,0]],[[1,2,3,0],[2,0,3,2],[2,2,3,0],[1,2,1,0]],[[1,3,2,0],[2,0,3,2],[2,2,3,0],[1,2,1,0]],[[2,2,2,0],[2,0,3,2],[2,2,3,0],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,3,0],[2,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,4,0],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[3,2,3,0],[1,1,1,1]],[[1,2,2,0],[2,0,3,3],[2,2,3,0],[1,1,1,1]],[[1,2,2,0],[2,0,4,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,0],[3,0,3,2],[2,2,3,0],[1,1,1,1]],[[1,2,3,0],[2,0,3,2],[2,2,3,0],[1,1,1,1]],[[1,3,2,0],[2,0,3,2],[2,2,3,0],[1,1,1,1]],[[2,2,2,0],[2,0,3,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,3,0],[1,0,2,2]],[[1,2,2,0],[2,0,3,2],[2,2,3,0],[1,0,3,1]],[[1,2,2,0],[2,0,3,2],[2,2,3,0],[2,0,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,4,0],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[3,2,3,0],[1,0,2,1]],[[1,2,2,0],[2,0,3,3],[2,2,3,0],[1,0,2,1]],[[1,2,2,0],[2,0,4,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,0],[3,0,3,2],[2,2,3,0],[1,0,2,1]],[[1,2,3,0],[2,0,3,2],[2,2,3,0],[1,0,2,1]],[[1,3,2,0],[2,0,3,2],[2,2,3,0],[1,0,2,1]],[[2,2,2,0],[2,0,3,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,4,0],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[3,2,3,0],[0,2,1,1]],[[1,2,2,0],[2,0,3,3],[2,2,3,0],[0,2,1,1]],[[1,2,2,0],[2,0,4,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,0],[3,0,3,2],[2,2,3,0],[0,2,1,1]],[[1,2,3,0],[2,0,3,2],[2,2,3,0],[0,2,1,1]],[[1,3,2,0],[2,0,3,2],[2,2,3,0],[0,2,1,1]],[[2,2,2,0],[2,0,3,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,3,0],[0,1,2,2]],[[1,2,2,0],[2,0,3,2],[2,2,3,0],[0,1,3,1]],[[1,2,2,0],[2,0,3,2],[2,2,4,0],[0,1,2,1]],[[1,2,2,0],[2,0,3,2],[3,2,3,0],[0,1,2,1]],[[1,2,2,0],[2,0,3,3],[2,2,3,0],[0,1,2,1]],[[1,2,2,0],[2,0,4,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,0],[3,0,3,2],[2,2,3,0],[0,1,2,1]],[[1,2,3,0],[2,0,3,2],[2,2,3,0],[0,1,2,1]],[[1,3,2,0],[2,0,3,2],[2,2,3,0],[0,1,2,1]],[[2,2,2,0],[2,0,3,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,2,2],[2,1,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[3,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,3],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,0,4,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[3,0,3,2],[2,2,2,2],[1,1,1,0]],[[1,2,3,0],[2,0,3,2],[2,2,2,2],[1,1,1,0]],[[1,3,2,0],[2,0,3,2],[2,2,2,2],[1,1,1,0]],[[2,2,2,0],[2,0,3,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,2,2],[1,1,0,2]],[[1,2,2,0],[2,0,3,2],[2,2,2,2],[2,1,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,2,3],[1,1,0,1]],[[1,2,2,0],[2,0,3,2],[3,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,0,3,3],[2,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,0,4,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,0],[3,0,3,2],[2,2,2,2],[1,1,0,1]],[[1,2,3,0],[2,0,3,2],[2,2,2,2],[1,1,0,1]],[[1,3,2,0],[2,0,3,2],[2,2,2,2],[1,1,0,1]],[[2,2,2,0],[2,0,3,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,2,2],[2,0,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,2,3],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[3,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,3],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,0,4,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[3,0,3,2],[2,2,2,2],[1,0,2,0]],[[1,2,3,0],[2,0,3,2],[2,2,2,2],[1,0,2,0]],[[1,3,2,0],[2,0,3,2],[2,2,2,2],[1,0,2,0]],[[2,2,2,0],[2,0,3,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,2,2],[1,0,1,2]],[[1,2,2,0],[2,0,3,2],[2,2,2,2],[2,0,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,2,3],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[3,2,2,2],[1,0,1,1]],[[1,2,2,0],[2,0,3,3],[2,2,2,2],[1,0,1,1]],[[1,2,2,0],[2,0,4,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,0],[3,0,3,2],[2,2,2,2],[1,0,1,1]],[[1,2,3,0],[2,0,3,2],[2,2,2,2],[1,0,1,1]],[[1,3,2,0],[2,0,3,2],[2,2,2,2],[1,0,1,1]],[[2,2,2,0],[2,0,3,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[3,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,3],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,0,4,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[3,0,3,2],[2,2,2,2],[0,2,1,0]],[[1,2,3,0],[2,0,3,2],[2,2,2,2],[0,2,1,0]],[[1,3,2,0],[2,0,3,2],[2,2,2,2],[0,2,1,0]],[[2,2,2,0],[2,0,3,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,2,2],[0,2,0,2]],[[1,2,2,0],[2,0,3,2],[2,2,2,3],[0,2,0,1]],[[1,2,2,0],[2,0,3,2],[3,2,2,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,3],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[2,0,4,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[3,0,3,2],[2,2,2,2],[0,2,0,1]],[[1,2,3,0],[2,0,3,2],[2,2,2,2],[0,2,0,1]],[[1,3,2,0],[2,0,3,2],[2,2,2,2],[0,2,0,1]],[[2,2,2,0],[2,0,3,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,2,3],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[3,2,2,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,3],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[2,0,4,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[3,0,3,2],[2,2,2,2],[0,1,2,0]],[[1,2,3,0],[2,0,3,2],[2,2,2,2],[0,1,2,0]],[[1,3,2,0],[2,0,3,2],[2,2,2,2],[0,1,2,0]],[[2,2,2,0],[2,0,3,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,2,2],[0,1,1,2]],[[1,2,2,0],[2,0,3,2],[2,2,2,3],[0,1,1,1]],[[1,2,2,0],[2,0,3,2],[3,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,0,3,3],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,0,4,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[3,0,3,2],[2,2,2,2],[0,1,1,1]],[[1,2,3,0],[2,0,3,2],[2,2,2,2],[0,1,1,1]],[[1,3,2,0],[2,0,3,2],[2,2,2,2],[0,1,1,1]],[[2,2,2,0],[2,0,3,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,2,2],[0,0,2,2]],[[1,2,2,0],[2,0,3,2],[2,2,2,3],[0,0,2,1]],[[1,2,2,0],[2,0,3,3],[2,2,2,2],[0,0,2,1]],[[1,2,2,0],[2,0,4,2],[2,2,2,2],[0,0,2,1]],[[1,2,2,0],[3,0,3,2],[2,2,2,2],[0,0,2,1]],[[1,2,3,0],[2,0,3,2],[2,2,2,2],[0,0,2,1]],[[1,3,2,0],[2,0,3,2],[2,2,2,2],[0,0,2,1]],[[2,2,2,0],[2,0,3,2],[2,2,2,2],[0,0,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,2,1],[2,2,1,0]],[[1,2,2,0],[2,0,3,2],[3,2,2,1],[1,2,1,0]],[[1,2,2,0],[2,0,3,3],[2,2,2,1],[1,2,1,0]],[[1,2,2,0],[2,0,4,2],[2,2,2,1],[1,2,1,0]],[[1,2,2,0],[3,0,3,2],[2,2,2,1],[1,2,1,0]],[[1,2,3,0],[2,0,3,2],[2,2,2,1],[1,2,1,0]],[[1,3,2,0],[2,0,3,2],[2,2,2,1],[1,2,1,0]],[[2,2,2,0],[2,0,3,2],[2,2,2,1],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,2,1],[1,3,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,2,1],[2,2,0,1]],[[1,2,2,0],[2,0,3,2],[3,2,2,1],[1,2,0,1]],[[1,2,2,0],[2,0,3,3],[2,2,2,1],[1,2,0,1]],[[1,2,2,0],[2,0,4,2],[2,2,2,1],[1,2,0,1]],[[1,2,2,0],[3,0,3,2],[2,2,2,1],[1,2,0,1]],[[1,2,3,0],[2,0,3,2],[2,2,2,1],[1,2,0,1]],[[1,3,2,0],[2,0,3,2],[2,2,2,1],[1,2,0,1]],[[2,2,2,0],[2,0,3,2],[2,2,2,1],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,2,0],[1,3,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,2,0],[2,2,1,1]],[[1,2,2,0],[2,0,3,2],[3,2,2,0],[1,2,1,1]],[[1,2,2,0],[2,0,3,3],[2,2,2,0],[1,2,1,1]],[[1,2,2,0],[2,0,4,2],[2,2,2,0],[1,2,1,1]],[[1,2,2,0],[3,0,3,2],[2,2,2,0],[1,2,1,1]],[[1,2,3,0],[2,0,3,2],[2,2,2,0],[1,2,1,1]],[[1,3,2,0],[2,0,3,2],[2,2,2,0],[1,2,1,1]],[[2,2,2,0],[2,0,3,2],[2,2,2,0],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,1,2],[2,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,1,3],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[3,2,1,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,3],[2,2,1,2],[1,2,1,0]],[[1,2,2,0],[2,0,4,2],[2,2,1,2],[1,2,1,0]],[[1,2,2,0],[3,0,3,2],[2,2,1,2],[1,2,1,0]],[[1,2,3,0],[2,0,3,2],[2,2,1,2],[1,2,1,0]],[[1,3,2,0],[2,0,3,2],[2,2,1,2],[1,2,1,0]],[[2,2,2,0],[2,0,3,2],[2,2,1,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,1,2],[1,2,0,2]],[[1,2,2,0],[2,0,3,2],[2,2,1,2],[1,3,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,1,2],[2,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,2,1,3],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[3,2,1,2],[1,2,0,1]],[[1,2,2,0],[2,0,3,3],[2,2,1,2],[1,2,0,1]],[[1,2,2,0],[2,0,4,2],[2,2,1,2],[1,2,0,1]],[[1,2,2,0],[3,0,3,2],[2,2,1,2],[1,2,0,1]],[[1,2,3,0],[2,0,3,2],[2,2,1,2],[1,2,0,1]],[[1,3,2,0],[2,0,3,2],[2,2,1,2],[1,2,0,1]],[[2,2,2,0],[2,0,3,2],[2,2,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,0],[0,2,2,3],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,2,2,2],[2,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,2,2,2],[1,3,2,1]],[[0,2,2,1],[2,3,1,0],[0,2,2,2],[1,2,3,1]],[[0,2,2,1],[2,3,1,0],[0,2,2,2],[1,2,2,2]],[[0,2,2,1],[2,3,1,0],[0,2,4,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,2,3,1],[2,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,2,3,1],[1,3,2,1]],[[0,2,2,1],[2,3,1,0],[0,2,3,1],[1,2,3,1]],[[0,2,2,1],[2,3,1,0],[0,2,3,1],[1,2,2,2]],[[0,2,2,1],[2,3,1,0],[0,2,4,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,0],[0,2,3,3],[1,2,1,1]],[[0,2,2,1],[2,3,1,0],[0,2,3,2],[1,2,1,2]],[[0,2,2,1],[2,3,1,0],[0,2,4,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[0,2,3,3],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[0,2,3,2],[2,2,2,0]],[[0,2,2,1],[2,3,1,0],[0,2,3,2],[1,3,2,0]],[[0,2,2,1],[2,3,1,0],[0,2,3,2],[1,2,3,0]],[[0,3,2,1],[2,3,1,0],[0,3,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,1,0],[0,3,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,1,0],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,1,0],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,1,0],[0,3,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,4,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,1,3],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,1,0],[0,3,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,1,0],[0,3,2,1],[1,2,2,1]],[[0,2,3,1],[2,3,1,0],[0,3,2,1],[1,2,2,1]],[[0,2,2,2],[2,3,1,0],[0,3,2,1],[1,2,2,1]],[[0,2,2,1],[3,3,1,0],[0,3,2,1],[1,2,2,1]],[[0,2,2,1],[2,4,1,0],[0,3,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,4,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,2,1],[2,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,2,1],[1,3,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,2,1],[1,2,3,1]],[[0,2,2,1],[2,3,1,0],[0,3,2,1],[1,2,2,2]],[[0,2,2,1],[2,3,1,0],[0,3,2,3],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,2,2],[1,1,3,1]],[[0,2,2,1],[2,3,1,0],[0,3,2,2],[1,1,2,2]],[[0,3,2,1],[2,3,1,0],[0,3,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,1,0],[0,3,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,1,0],[0,3,2,2],[1,2,2,0]],[[0,2,2,1],[3,3,1,0],[0,3,2,2],[1,2,2,0]],[[0,2,2,1],[2,4,1,0],[0,3,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[0,4,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[0,3,2,2],[2,2,2,0]],[[0,2,2,1],[2,3,1,0],[0,3,2,2],[1,3,2,0]],[[0,2,2,1],[2,3,1,0],[0,3,2,2],[1,2,3,0]],[[0,3,2,1],[2,3,1,0],[0,3,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,1,0],[0,3,3,0],[1,2,2,1]],[[0,2,2,1],[3,3,1,0],[0,3,3,0],[1,2,2,1]],[[0,2,2,1],[2,4,1,0],[0,3,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,4,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,0],[2,2,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,0],[1,3,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,0],[1,2,3,1]],[[0,3,2,1],[2,3,1,0],[0,3,3,1],[1,1,2,1]],[[0,2,3,1],[2,3,1,0],[0,3,3,1],[1,1,2,1]],[[0,2,2,2],[2,3,1,0],[0,3,3,1],[1,1,2,1]],[[0,2,2,1],[3,3,1,0],[0,3,3,1],[1,1,2,1]],[[0,2,2,1],[2,4,1,0],[0,3,3,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[0,4,3,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,4,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,1],[1,1,3,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,1],[1,1,2,2]],[[0,3,2,1],[2,3,1,0],[0,3,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,1,0],[0,3,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,1,0],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[3,3,1,0],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[2,4,1,0],[0,3,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,1,0],[0,4,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,1,0],[0,3,4,1],[1,2,1,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,1],[2,2,1,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,1],[1,3,1,1]],[[0,2,2,1],[2,3,1,0],[0,3,4,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,3],[1,0,2,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,2],[1,0,2,2]],[[0,3,2,1],[2,3,1,0],[0,3,3,2],[1,1,1,1]],[[0,2,3,1],[2,3,1,0],[0,3,3,2],[1,1,1,1]],[[0,2,2,2],[2,3,1,0],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[3,3,1,0],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,4,1,0],[0,3,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,0],[0,4,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,0],[0,3,4,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,3],[1,1,1,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,2],[1,1,1,2]],[[0,3,2,1],[2,3,1,0],[0,3,3,2],[1,1,2,0]],[[0,2,3,1],[2,3,1,0],[0,3,3,2],[1,1,2,0]],[[0,2,2,2],[2,3,1,0],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[3,3,1,0],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,4,1,0],[0,3,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,0],[0,4,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,0],[0,3,4,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,0],[0,3,3,3],[1,1,2,0]],[[0,2,2,1],[2,3,1,0],[0,3,3,2],[1,1,3,0]],[[0,3,2,1],[2,3,1,0],[0,3,3,2],[1,2,0,1]],[[0,2,3,1],[2,3,1,0],[0,3,3,2],[1,2,0,1]],[[0,2,2,2],[2,3,1,0],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[3,3,1,0],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,4,1,0],[0,3,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,0],[0,4,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,0],[0,3,4,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,3],[1,2,0,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,2],[2,2,0,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,2],[1,3,0,1]],[[0,2,2,1],[2,3,1,0],[0,3,3,2],[1,2,0,2]],[[0,3,2,1],[2,3,1,0],[0,3,3,2],[1,2,1,0]],[[0,2,3,1],[2,3,1,0],[0,3,3,2],[1,2,1,0]],[[0,2,2,2],[2,3,1,0],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[3,3,1,0],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,4,1,0],[0,3,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,0],[0,4,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,0],[0,3,4,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,0],[0,3,3,3],[1,2,1,0]],[[0,2,2,1],[2,3,1,0],[0,3,3,2],[2,2,1,0]],[[0,2,2,1],[2,3,1,0],[0,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,1,2],[1,0,2,2]],[[1,2,2,0],[2,0,3,2],[2,2,1,2],[1,0,3,1]],[[1,2,2,0],[2,0,3,2],[2,2,1,2],[2,0,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,1,3],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[3,2,1,2],[1,0,2,1]],[[1,2,2,0],[2,0,3,3],[2,2,1,2],[1,0,2,1]],[[1,2,2,0],[2,0,4,2],[2,2,1,2],[1,0,2,1]],[[1,2,2,0],[3,0,3,2],[2,2,1,2],[1,0,2,1]],[[1,2,3,0],[2,0,3,2],[2,2,1,2],[1,0,2,1]],[[1,3,2,0],[2,0,3,2],[2,2,1,2],[1,0,2,1]],[[2,2,2,0],[2,0,3,2],[2,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,0],[1,2,2,3],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[1,2,2,2],[0,3,2,1]],[[0,2,2,1],[2,3,1,0],[1,2,2,2],[0,2,3,1]],[[0,2,2,1],[2,3,1,0],[1,2,2,2],[0,2,2,2]],[[0,2,2,1],[2,3,1,0],[1,2,4,1],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[1,2,3,1],[0,3,2,1]],[[0,2,2,1],[2,3,1,0],[1,2,3,1],[0,2,3,1]],[[0,2,2,1],[2,3,1,0],[1,2,3,1],[0,2,2,2]],[[0,2,2,1],[2,3,1,0],[1,2,4,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,0],[1,2,3,3],[0,2,1,1]],[[0,2,2,1],[2,3,1,0],[1,2,3,2],[0,2,1,2]],[[0,2,2,1],[2,3,1,0],[1,2,4,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,0],[1,2,3,3],[0,2,2,0]],[[0,2,2,1],[2,3,1,0],[1,2,3,2],[0,3,2,0]],[[0,2,2,1],[2,3,1,0],[1,2,3,2],[0,2,3,0]],[[0,3,2,1],[2,3,1,0],[1,3,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,1,0],[1,3,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,1,0],[1,3,1,2],[0,2,2,1]],[[0,2,2,1],[3,3,1,0],[1,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,4,1,0],[1,3,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[1,4,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,1,3],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,1,2],[0,3,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,1,2],[0,2,3,1]],[[0,2,2,1],[2,3,1,0],[1,3,1,2],[0,2,2,2]],[[0,3,2,1],[2,3,1,0],[1,3,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,1,0],[1,3,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,1,0],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[3,3,1,0],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,4,1,0],[1,3,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[1,4,1,2],[1,1,2,1]],[[0,3,2,1],[2,3,1,0],[1,3,2,1],[0,2,2,1]],[[0,2,3,1],[2,3,1,0],[1,3,2,1],[0,2,2,1]],[[0,2,2,2],[2,3,1,0],[1,3,2,1],[0,2,2,1]],[[0,2,2,1],[3,3,1,0],[1,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,4,1,0],[1,3,2,1],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[1,4,2,1],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,2,1],[0,3,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,2,1],[0,2,3,1]],[[0,2,2,1],[2,3,1,0],[1,3,2,1],[0,2,2,2]],[[0,3,2,1],[2,3,1,0],[1,3,2,1],[1,1,2,1]],[[0,2,3,1],[2,3,1,0],[1,3,2,1],[1,1,2,1]],[[0,2,2,2],[2,3,1,0],[1,3,2,1],[1,1,2,1]],[[0,2,2,1],[3,3,1,0],[1,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,4,1,0],[1,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[1,4,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,2,3],[0,1,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,2,2],[0,1,3,1]],[[0,2,2,1],[2,3,1,0],[1,3,2,2],[0,1,2,2]],[[0,3,2,1],[2,3,1,0],[1,3,2,2],[0,2,2,0]],[[0,2,3,1],[2,3,1,0],[1,3,2,2],[0,2,2,0]],[[0,2,2,2],[2,3,1,0],[1,3,2,2],[0,2,2,0]],[[0,2,2,1],[3,3,1,0],[1,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,4,1,0],[1,3,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,0],[1,4,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,0],[1,3,2,2],[0,3,2,0]],[[0,2,2,1],[2,3,1,0],[1,3,2,2],[0,2,3,0]],[[0,2,2,1],[2,3,1,0],[1,3,2,3],[1,0,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,2,2],[1,0,3,1]],[[0,2,2,1],[2,3,1,0],[1,3,2,2],[1,0,2,2]],[[0,3,2,1],[2,3,1,0],[1,3,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,1,0],[1,3,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,1,0],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[3,3,1,0],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,4,1,0],[1,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,0],[1,4,2,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,1,2],[0,1,2,2]],[[1,2,2,0],[2,0,3,2],[2,2,1,2],[0,1,3,1]],[[1,2,2,0],[2,0,3,2],[2,2,1,3],[0,1,2,1]],[[1,2,2,0],[2,0,3,2],[3,2,1,2],[0,1,2,1]],[[1,2,2,0],[2,0,3,3],[2,2,1,2],[0,1,2,1]],[[1,2,2,0],[2,0,4,2],[2,2,1,2],[0,1,2,1]],[[0,3,2,1],[2,3,1,0],[1,3,3,0],[0,2,2,1]],[[0,2,3,1],[2,3,1,0],[1,3,3,0],[0,2,2,1]],[[0,2,2,1],[3,3,1,0],[1,3,3,0],[0,2,2,1]],[[0,2,2,1],[2,4,1,0],[1,3,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[1,4,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,0],[0,3,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,0],[0,2,3,1]],[[0,3,2,1],[2,3,1,0],[1,3,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,1,0],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[3,3,1,0],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,4,1,0],[1,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[1,4,3,0],[1,1,2,1]],[[0,3,2,1],[2,3,1,0],[1,3,3,1],[0,1,2,1]],[[0,2,3,1],[2,3,1,0],[1,3,3,1],[0,1,2,1]],[[0,2,2,2],[2,3,1,0],[1,3,3,1],[0,1,2,1]],[[0,2,2,1],[3,3,1,0],[1,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,4,1,0],[1,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,3,1,0],[1,4,3,1],[0,1,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,4,1],[0,1,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,1],[0,1,3,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,1],[0,1,2,2]],[[0,3,2,1],[2,3,1,0],[1,3,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,1,0],[1,3,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,1,0],[1,3,3,1],[0,2,1,1]],[[0,2,2,1],[3,3,1,0],[1,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,4,1,0],[1,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,1,0],[1,4,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,1,0],[1,3,4,1],[0,2,1,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,1],[0,3,1,1]],[[0,3,2,1],[2,3,1,0],[1,3,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,1,0],[1,3,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,1,0],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[3,3,1,0],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,4,1,0],[1,3,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,1,0],[1,4,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,4,1],[1,0,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,1],[1,0,3,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,1],[1,0,2,2]],[[0,3,2,1],[2,3,1,0],[1,3,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,1,0],[1,3,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,1,0],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,1,0],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,1,0],[1,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,0],[1,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,0],[1,3,4,1],[1,1,1,1]],[[0,3,2,1],[2,3,1,0],[1,3,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,1,0],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,1,0],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,1,0],[1,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,0],[1,4,3,1],[1,2,0,1]],[[1,2,2,0],[3,0,3,2],[2,2,1,2],[0,1,2,1]],[[1,2,3,0],[2,0,3,2],[2,2,1,2],[0,1,2,1]],[[1,3,2,0],[2,0,3,2],[2,2,1,2],[0,1,2,1]],[[2,2,2,0],[2,0,3,2],[2,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,4,2],[0,0,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,3],[0,0,2,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,2],[0,0,2,2]],[[0,3,2,1],[2,3,1,0],[1,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,1,0],[1,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,1,0],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[3,3,1,0],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,4,1,0],[1,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,0],[1,4,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,0],[1,3,4,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,3],[0,1,1,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,2],[0,1,1,2]],[[0,3,2,1],[2,3,1,0],[1,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,1,0],[1,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,1,0],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[3,3,1,0],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,4,1,0],[1,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,0],[1,4,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,0],[1,3,4,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,0],[1,3,3,3],[0,1,2,0]],[[0,2,2,1],[2,3,1,0],[1,3,3,2],[0,1,3,0]],[[0,3,2,1],[2,3,1,0],[1,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,1,0],[1,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,1,0],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[3,3,1,0],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,4,1,0],[1,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,0],[1,4,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,0],[1,3,4,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,3],[0,2,0,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,2],[0,3,0,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,2],[0,2,0,2]],[[0,3,2,1],[2,3,1,0],[1,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,1,0],[1,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,1,0],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[3,3,1,0],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,4,1,0],[1,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,0],[1,4,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,0],[1,3,4,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,0],[1,3,3,3],[0,2,1,0]],[[0,2,2,1],[2,3,1,0],[1,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,0,3,2],[2,2,1,1],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[2,2,1,1],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,1,1],[2,2,2,0]],[[1,2,2,0],[2,0,3,2],[3,2,1,1],[1,2,2,0]],[[1,2,2,0],[2,0,3,3],[2,2,1,1],[1,2,2,0]],[[1,2,2,0],[2,0,4,2],[2,2,1,1],[1,2,2,0]],[[1,2,2,0],[3,0,3,2],[2,2,1,1],[1,2,2,0]],[[0,3,2,1],[2,3,1,0],[1,3,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,1,0],[1,3,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,1,0],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[3,3,1,0],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,4,1,0],[1,3,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,0],[1,4,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,0],[1,3,4,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,3],[1,0,1,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,2],[1,0,1,2]],[[0,3,2,1],[2,3,1,0],[1,3,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,1,0],[1,3,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,1,0],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[3,3,1,0],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,4,1,0],[1,3,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,0],[1,4,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,0],[1,3,4,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,0],[1,3,3,3],[1,0,2,0]],[[0,2,2,1],[2,3,1,0],[1,3,3,2],[1,0,3,0]],[[0,3,2,1],[2,3,1,0],[1,3,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,1,0],[1,3,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,1,0],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[3,3,1,0],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,4,1,0],[1,3,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,0],[1,4,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,0],[1,3,4,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,3],[1,1,0,1]],[[0,2,2,1],[2,3,1,0],[1,3,3,2],[1,1,0,2]],[[0,3,2,1],[2,3,1,0],[1,3,3,2],[1,1,1,0]],[[0,2,3,1],[2,3,1,0],[1,3,3,2],[1,1,1,0]],[[0,2,2,2],[2,3,1,0],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[3,3,1,0],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,4,1,0],[1,3,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,0],[1,4,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,0],[1,3,4,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,0],[1,3,3,3],[1,1,1,0]],[[1,2,3,0],[2,0,3,2],[2,2,1,1],[1,2,2,0]],[[1,3,2,0],[2,0,3,2],[2,2,1,1],[1,2,2,0]],[[2,2,2,0],[2,0,3,2],[2,2,1,1],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,1,0],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[2,2,1,0],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[2,2,1,0],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,1,0],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[3,2,1,0],[1,2,2,1]],[[1,2,2,0],[2,0,3,3],[2,2,1,0],[1,2,2,1]],[[1,2,2,0],[2,0,4,2],[2,2,1,0],[1,2,2,1]],[[0,3,2,1],[2,3,1,0],[1,3,3,2],[1,2,0,0]],[[0,2,3,1],[2,3,1,0],[1,3,3,2],[1,2,0,0]],[[0,2,2,2],[2,3,1,0],[1,3,3,2],[1,2,0,0]],[[0,2,2,1],[3,3,1,0],[1,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,4,1,0],[1,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,3,1,0],[1,4,3,2],[1,2,0,0]],[[1,2,2,0],[3,0,3,2],[2,2,1,0],[1,2,2,1]],[[1,2,3,0],[2,0,3,2],[2,2,1,0],[1,2,2,1]],[[1,3,2,0],[2,0,3,2],[2,2,1,0],[1,2,2,1]],[[2,2,2,0],[2,0,3,2],[2,2,1,0],[1,2,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[2,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,0,3],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[3,2,0,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,3],[2,2,0,2],[1,2,2,0]],[[1,2,2,0],[2,0,4,2],[2,2,0,2],[1,2,2,0]],[[1,2,2,0],[3,0,3,2],[2,2,0,2],[1,2,2,0]],[[1,2,3,0],[2,0,3,2],[2,2,0,2],[1,2,2,0]],[[1,3,2,0],[2,0,3,2],[2,2,0,2],[1,2,2,0]],[[2,2,2,0],[2,0,3,2],[2,2,0,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[1,2,1,2]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[1,3,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[2,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,3],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[3,2,0,2],[1,2,1,1]],[[1,2,2,0],[2,0,3,3],[2,2,0,2],[1,2,1,1]],[[1,2,2,0],[2,0,4,2],[2,2,0,2],[1,2,1,1]],[[0,3,2,1],[2,3,1,0],[2,0,2,2],[1,2,2,1]],[[0,2,3,1],[2,3,1,0],[2,0,2,2],[1,2,2,1]],[[0,2,2,2],[2,3,1,0],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[3,3,1,0],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,4,1,0],[2,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[3,0,2,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,0,2,3],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,0,2,2],[2,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,0,2,2],[1,3,2,1]],[[0,2,2,1],[2,3,1,0],[2,0,2,2],[1,2,3,1]],[[0,2,2,1],[2,3,1,0],[2,0,2,2],[1,2,2,2]],[[0,3,2,1],[2,3,1,0],[2,0,3,1],[1,2,2,1]],[[0,2,3,1],[2,3,1,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,2],[2,3,1,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[3,3,1,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,4,1,0],[2,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[3,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,0,4,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,0,3,1],[2,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,0,3,1],[1,3,2,1]],[[0,2,2,1],[2,3,1,0],[2,0,3,1],[1,2,3,1]],[[0,2,2,1],[2,3,1,0],[2,0,3,1],[1,2,2,2]],[[0,2,2,1],[2,3,1,0],[2,0,4,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,0],[2,0,3,3],[1,2,1,1]],[[0,2,2,1],[2,3,1,0],[2,0,3,2],[1,2,1,2]],[[0,3,2,1],[2,3,1,0],[2,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,3,1,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,3,1,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[3,3,1,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,4,1,0],[2,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[3,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[2,0,4,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[2,0,3,3],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[2,0,3,2],[2,2,2,0]],[[0,2,2,1],[2,3,1,0],[2,0,3,2],[1,3,2,0]],[[0,2,2,1],[2,3,1,0],[2,0,3,2],[1,2,3,0]],[[0,3,2,1],[2,3,1,0],[2,1,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,1,0],[2,1,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,1,0],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,1,0],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,1,0],[2,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[3,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,1,1,3],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,1,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,1,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,1,0],[2,1,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,1,0],[2,1,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,1,0],[2,1,2,1],[1,2,2,1]],[[0,2,3,1],[2,3,1,0],[2,1,2,1],[1,2,2,1]],[[0,2,2,2],[2,3,1,0],[2,1,2,1],[1,2,2,1]],[[0,2,2,1],[3,3,1,0],[2,1,2,1],[1,2,2,1]],[[0,2,2,1],[2,4,1,0],[2,1,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[3,1,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,1,2,1],[2,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,1,2,1],[1,3,2,1]],[[0,2,2,1],[2,3,1,0],[2,1,2,1],[1,2,3,1]],[[0,2,2,1],[2,3,1,0],[2,1,2,1],[1,2,2,2]],[[0,3,2,1],[2,3,1,0],[2,1,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,1,0],[2,1,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,1,0],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[3,3,1,0],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,4,1,0],[2,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[3,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[2,1,2,2],[2,2,2,0]],[[0,2,2,1],[2,3,1,0],[2,1,2,2],[1,3,2,0]],[[0,2,2,1],[2,3,1,0],[2,1,2,2],[1,2,3,0]],[[0,3,2,1],[2,3,1,0],[2,1,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,1,0],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[3,3,1,0],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,4,1,0],[2,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[3,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,1,3,0],[2,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,1,3,0],[1,3,2,1]],[[0,2,2,1],[2,3,1,0],[2,1,3,0],[1,2,3,1]],[[0,3,2,1],[2,3,1,0],[2,1,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,1,0],[2,1,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,1,0],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[3,3,1,0],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,4,1,0],[2,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,1,0],[3,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,1,0],[2,1,3,1],[2,2,1,1]],[[0,2,2,1],[2,3,1,0],[2,1,3,1],[1,3,1,1]],[[0,3,2,1],[2,3,1,0],[2,1,3,2],[1,2,0,1]],[[0,2,3,1],[2,3,1,0],[2,1,3,2],[1,2,0,1]],[[0,2,2,2],[2,3,1,0],[2,1,3,2],[1,2,0,1]],[[0,2,2,1],[3,3,1,0],[2,1,3,2],[1,2,0,1]],[[0,2,2,1],[2,4,1,0],[2,1,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,0],[3,1,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,0],[2,1,3,2],[2,2,0,1]],[[0,2,2,1],[2,3,1,0],[2,1,3,2],[1,3,0,1]],[[0,3,2,1],[2,3,1,0],[2,1,3,2],[1,2,1,0]],[[0,2,3,1],[2,3,1,0],[2,1,3,2],[1,2,1,0]],[[0,2,2,2],[2,3,1,0],[2,1,3,2],[1,2,1,0]],[[0,2,2,1],[3,3,1,0],[2,1,3,2],[1,2,1,0]],[[0,2,2,1],[2,4,1,0],[2,1,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,0],[3,1,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,0],[2,1,3,2],[2,2,1,0]],[[0,2,2,1],[2,3,1,0],[2,1,3,2],[1,3,1,0]],[[1,2,2,0],[3,0,3,2],[2,2,0,2],[1,2,1,1]],[[1,2,3,0],[2,0,3,2],[2,2,0,2],[1,2,1,1]],[[1,3,2,0],[2,0,3,2],[2,2,0,2],[1,2,1,1]],[[2,2,2,0],[2,0,3,2],[2,2,0,2],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[1,1,2,2]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[1,1,3,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[2,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,3],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[3,2,0,2],[1,1,2,1]],[[1,2,2,0],[2,0,3,3],[2,2,0,2],[1,1,2,1]],[[1,2,2,0],[2,0,4,2],[2,2,0,2],[1,1,2,1]],[[1,2,2,0],[3,0,3,2],[2,2,0,2],[1,1,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,1,0],[2,2,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,1,0],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[3,3,1,0],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,4,1,0],[2,2,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[3,2,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,1,0],[2,2,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,1,0],[2,2,1,2],[1,1,2,1]],[[0,2,2,1],[3,3,1,0],[2,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,4,1,0],[2,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[3,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[2,2,1,2],[2,1,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,2,1],[0,2,2,1]],[[0,2,3,1],[2,3,1,0],[2,2,2,1],[0,2,2,1]],[[0,2,2,2],[2,3,1,0],[2,2,2,1],[0,2,2,1]],[[0,2,2,1],[3,3,1,0],[2,2,2,1],[0,2,2,1]],[[0,2,2,1],[2,4,1,0],[2,2,2,1],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[3,2,2,1],[0,2,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,2,1],[1,1,2,1]],[[0,2,3,1],[2,3,1,0],[2,2,2,1],[1,1,2,1]],[[0,2,2,2],[2,3,1,0],[2,2,2,1],[1,1,2,1]],[[0,2,2,1],[3,3,1,0],[2,2,2,1],[1,1,2,1]],[[0,2,2,1],[2,4,1,0],[2,2,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[3,2,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[2,2,2,1],[2,1,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,2,2],[0,2,2,0]],[[0,2,3,1],[2,3,1,0],[2,2,2,2],[0,2,2,0]],[[0,2,2,2],[2,3,1,0],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[3,3,1,0],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,4,1,0],[2,2,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,0],[3,2,2,2],[0,2,2,0]],[[0,3,2,1],[2,3,1,0],[2,2,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,1,0],[2,2,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,1,0],[2,2,2,2],[1,1,2,0]],[[0,2,2,1],[3,3,1,0],[2,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,4,1,0],[2,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,0],[3,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,0],[2,2,2,2],[2,1,2,0]],[[1,2,3,0],[2,0,3,2],[2,2,0,2],[1,1,2,1]],[[1,3,2,0],[2,0,3,2],[2,2,0,2],[1,1,2,1]],[[2,2,2,0],[2,0,3,2],[2,2,0,2],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,2],[0,3,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,3],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[3,2,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,3],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,4,2],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[3,0,3,2],[2,2,0,2],[0,2,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,0],[0,2,2,1]],[[0,2,3,1],[2,3,1,0],[2,2,3,0],[0,2,2,1]],[[0,2,2,1],[3,3,1,0],[2,2,3,0],[0,2,2,1]],[[0,2,2,1],[2,4,1,0],[2,2,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,0],[3,2,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,1,0],[2,2,3,0],[1,1,2,1]],[[0,2,2,1],[3,3,1,0],[2,2,3,0],[1,1,2,1]],[[0,2,2,1],[2,4,1,0],[2,2,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[3,2,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,0],[2,2,3,0],[2,1,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,1],[0,1,2,1]],[[0,2,3,1],[2,3,1,0],[2,2,3,1],[0,1,2,1]],[[0,2,2,2],[2,3,1,0],[2,2,3,1],[0,1,2,1]],[[0,2,2,1],[3,3,1,0],[2,2,3,1],[0,1,2,1]],[[0,2,2,1],[2,4,1,0],[2,2,3,1],[0,1,2,1]],[[0,2,2,1],[2,3,1,0],[3,2,3,1],[0,1,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,1,0],[2,2,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,1,0],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[3,3,1,0],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,4,1,0],[2,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,1,0],[3,2,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,1,0],[2,2,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,1,0],[2,2,3,1],[1,0,2,1]],[[0,2,2,1],[3,3,1,0],[2,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,4,1,0],[2,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,1,0],[3,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,1,0],[2,2,3,1],[2,0,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,1,0],[2,2,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,1,0],[2,2,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,1,0],[2,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,1,0],[2,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,0],[3,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,0],[2,2,3,1],[2,1,1,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,1,0],[2,2,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,1,0],[2,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,1,0],[2,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,0],[3,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,0],[2,2,3,1],[2,2,0,1]],[[1,2,3,0],[2,0,3,2],[2,2,0,2],[0,2,2,1]],[[1,3,2,0],[2,0,3,2],[2,2,0,2],[0,2,2,1]],[[2,2,2,0],[2,0,3,2],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,1],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[2,2,0,1],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,1],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[2,2,0,1],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[3,2,0,1],[1,2,2,1]],[[1,2,2,0],[2,0,3,3],[2,2,0,1],[1,2,2,1]],[[1,2,2,0],[2,0,4,2],[2,2,0,1],[1,2,2,1]],[[1,2,2,0],[3,0,3,2],[2,2,0,1],[1,2,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,1,0],[2,2,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,1,0],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[3,3,1,0],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,4,1,0],[2,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,0],[3,2,3,2],[0,1,1,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,1,0],[2,2,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,1,0],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[3,3,1,0],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,4,1,0],[2,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,0],[3,2,3,2],[0,1,2,0]],[[0,3,2,1],[2,3,1,0],[2,2,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,1,0],[2,2,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,1,0],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[3,3,1,0],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,4,1,0],[2,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,0],[3,2,3,2],[0,2,0,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,1,0],[2,2,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,1,0],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[3,3,1,0],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,4,1,0],[2,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,0],[3,2,3,2],[0,2,1,0]],[[1,2,3,0],[2,0,3,2],[2,2,0,1],[1,2,2,1]],[[1,3,2,0],[2,0,3,2],[2,2,0,1],[1,2,2,1]],[[2,2,2,0],[2,0,3,2],[2,2,0,1],[1,2,2,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,1,0],[2,2,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,1,0],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[3,3,1,0],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,4,1,0],[2,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,0],[3,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,0],[2,2,3,2],[2,0,1,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,1,0],[2,2,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,1,0],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[3,3,1,0],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,4,1,0],[2,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,0],[3,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,0],[2,2,3,2],[2,0,2,0]],[[0,3,2,1],[2,3,1,0],[2,2,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,1,0],[2,2,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,1,0],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[3,3,1,0],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,4,1,0],[2,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,0],[3,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,0],[2,2,3,2],[2,1,0,1]],[[0,3,2,1],[2,3,1,0],[2,2,3,2],[1,1,1,0]],[[0,2,3,1],[2,3,1,0],[2,2,3,2],[1,1,1,0]],[[0,2,2,2],[2,3,1,0],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[3,3,1,0],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,4,1,0],[2,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,0],[3,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,0],[2,2,3,2],[2,1,1,0]],[[0,3,2,1],[2,3,1,0],[2,2,3,2],[1,2,0,0]],[[0,2,3,1],[2,3,1,0],[2,2,3,2],[1,2,0,0]],[[0,2,2,2],[2,3,1,0],[2,2,3,2],[1,2,0,0]],[[0,2,2,1],[3,3,1,0],[2,2,3,2],[1,2,0,0]],[[0,2,2,1],[2,4,1,0],[2,2,3,2],[1,2,0,0]],[[0,2,2,1],[2,3,1,0],[3,2,3,2],[1,2,0,0]],[[0,2,2,1],[2,3,1,0],[2,2,3,2],[2,2,0,0]],[[0,2,2,1],[3,3,1,0],[2,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[3,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,3,0,1],[2,2,2,1]],[[0,2,2,1],[2,3,1,0],[2,3,0,1],[1,3,2,1]],[[0,2,2,1],[3,3,1,0],[2,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[3,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,0],[2,3,0,2],[2,2,2,0]],[[0,2,2,1],[2,3,1,0],[2,3,0,2],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,3,1],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[2,1,3,1],[2,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,1,4,1],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[3,1,3,1],[1,2,1,0]],[[1,2,2,0],[2,0,3,3],[2,1,3,1],[1,2,1,0]],[[1,2,2,0],[2,0,4,2],[2,1,3,1],[1,2,1,0]],[[1,2,2,0],[3,0,3,2],[2,1,3,1],[1,2,1,0]],[[1,2,3,0],[2,0,3,2],[2,1,3,1],[1,2,1,0]],[[1,3,2,0],[2,0,3,2],[2,1,3,1],[1,2,1,0]],[[2,2,2,0],[2,0,3,2],[2,1,3,1],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,1,3,1],[1,3,0,1]],[[1,2,2,0],[2,0,3,2],[2,1,3,1],[2,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,1,4,1],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[3,1,3,1],[1,2,0,1]],[[1,2,2,0],[2,0,3,3],[2,1,3,1],[1,2,0,1]],[[1,2,2,0],[2,0,4,2],[2,1,3,1],[1,2,0,1]],[[1,2,2,0],[3,0,3,2],[2,1,3,1],[1,2,0,1]],[[1,2,3,0],[2,0,3,2],[2,1,3,1],[1,2,0,1]],[[1,3,2,0],[2,0,3,2],[2,1,3,1],[1,2,0,1]],[[2,2,2,0],[2,0,3,2],[2,1,3,1],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,1,3,1],[1,1,3,0]],[[1,2,2,0],[2,0,3,2],[2,1,3,1],[2,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,4,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[3,1,3,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,3],[2,1,3,1],[1,1,2,0]],[[1,2,2,0],[2,0,4,2],[2,1,3,1],[1,1,2,0]],[[1,2,2,0],[3,0,3,2],[2,1,3,1],[1,1,2,0]],[[1,2,3,0],[2,0,3,2],[2,1,3,1],[1,1,2,0]],[[1,3,2,0],[2,0,3,2],[2,1,3,1],[1,1,2,0]],[[2,2,2,0],[2,0,3,2],[2,1,3,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,3,1],[2,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,1,4,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[3,1,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,3],[2,1,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,4,2],[2,1,3,1],[1,1,1,1]],[[1,2,2,0],[3,0,3,2],[2,1,3,1],[1,1,1,1]],[[1,2,3,0],[2,0,3,2],[2,1,3,1],[1,1,1,1]],[[1,3,2,0],[2,0,3,2],[2,1,3,1],[1,1,1,1]],[[0,3,2,1],[2,3,1,0],[2,3,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,1,0],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[3,3,1,0],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,4,1,0],[2,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,0],[3,3,3,1],[1,0,1,1]],[[2,2,2,0],[2,0,3,2],[2,1,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,2,0],[2,0,3,2],[2,1,3,1],[0,3,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,4,1],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[3,1,3,1],[0,2,2,0]],[[1,2,2,0],[2,0,3,3],[2,1,3,1],[0,2,2,0]],[[1,2,2,0],[2,0,4,2],[2,1,3,1],[0,2,2,0]],[[1,2,2,0],[3,0,3,2],[2,1,3,1],[0,2,2,0]],[[1,2,3,0],[2,0,3,2],[2,1,3,1],[0,2,2,0]],[[1,3,2,0],[2,0,3,2],[2,1,3,1],[0,2,2,0]],[[2,2,2,0],[2,0,3,2],[2,1,3,1],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,4,1],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[3,1,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,3,3],[2,1,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,4,2],[2,1,3,1],[0,2,1,1]],[[1,2,2,0],[3,0,3,2],[2,1,3,1],[0,2,1,1]],[[1,2,3,0],[2,0,3,2],[2,1,3,1],[0,2,1,1]],[[1,3,2,0],[2,0,3,2],[2,1,3,1],[0,2,1,1]],[[2,2,2,0],[2,0,3,2],[2,1,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,1,3,0],[1,3,1,1]],[[1,2,2,0],[2,0,3,2],[2,1,3,0],[2,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,1,4,0],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[3,1,3,0],[1,2,1,1]],[[1,2,2,0],[2,0,3,3],[2,1,3,0],[1,2,1,1]],[[1,2,2,0],[2,0,4,2],[2,1,3,0],[1,2,1,1]],[[1,2,2,0],[3,0,3,2],[2,1,3,0],[1,2,1,1]],[[1,2,3,0],[2,0,3,2],[2,1,3,0],[1,2,1,1]],[[1,3,2,0],[2,0,3,2],[2,1,3,0],[1,2,1,1]],[[2,2,2,0],[2,0,3,2],[2,1,3,0],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,1,3,0],[1,1,2,2]],[[1,2,2,0],[2,0,3,2],[2,1,3,0],[1,1,3,1]],[[1,2,2,0],[2,0,3,2],[2,1,3,0],[2,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,1,4,0],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[3,1,3,0],[1,1,2,1]],[[1,2,2,0],[2,0,3,3],[2,1,3,0],[1,1,2,1]],[[1,2,2,0],[2,0,4,2],[2,1,3,0],[1,1,2,1]],[[1,2,2,0],[3,0,3,2],[2,1,3,0],[1,1,2,1]],[[1,2,3,0],[2,0,3,2],[2,1,3,0],[1,1,2,1]],[[1,3,2,0],[2,0,3,2],[2,1,3,0],[1,1,2,1]],[[2,2,2,0],[2,0,3,2],[2,1,3,0],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,1,3,0],[0,2,2,2]],[[1,2,2,0],[2,0,3,2],[2,1,3,0],[0,2,3,1]],[[1,2,2,0],[2,0,3,2],[2,1,3,0],[0,3,2,1]],[[1,2,2,0],[2,0,3,2],[2,1,4,0],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[3,1,3,0],[0,2,2,1]],[[1,2,2,0],[2,0,3,3],[2,1,3,0],[0,2,2,1]],[[1,2,2,0],[2,0,4,2],[2,1,3,0],[0,2,2,1]],[[1,2,2,0],[3,0,3,2],[2,1,3,0],[0,2,2,1]],[[1,2,3,0],[2,0,3,2],[2,1,3,0],[0,2,2,1]],[[1,3,2,0],[2,0,3,2],[2,1,3,0],[0,2,2,1]],[[2,2,2,0],[2,0,3,2],[2,1,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,1,0],[2,3,3,2],[1,0,0,1]],[[0,2,3,1],[2,3,1,0],[2,3,3,2],[1,0,0,1]],[[0,2,2,2],[2,3,1,0],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[3,3,1,0],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,4,1,0],[2,3,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,1,0],[3,3,3,2],[1,0,0,1]],[[0,3,2,1],[2,3,1,0],[2,3,3,2],[1,0,1,0]],[[0,2,3,1],[2,3,1,0],[2,3,3,2],[1,0,1,0]],[[0,2,2,2],[2,3,1,0],[2,3,3,2],[1,0,1,0]],[[0,2,2,1],[3,3,1,0],[2,3,3,2],[1,0,1,0]],[[0,2,2,1],[2,4,1,0],[2,3,3,2],[1,0,1,0]],[[0,2,2,1],[2,3,1,0],[3,3,3,2],[1,0,1,0]],[[1,2,2,0],[2,0,3,2],[2,1,2,2],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[2,1,2,2],[2,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,1,2,3],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[3,1,2,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,3],[2,1,2,2],[1,2,1,0]],[[1,2,2,0],[2,0,4,2],[2,1,2,2],[1,2,1,0]],[[1,2,2,0],[3,0,3,2],[2,1,2,2],[1,2,1,0]],[[1,2,3,0],[2,0,3,2],[2,1,2,2],[1,2,1,0]],[[1,3,2,0],[2,0,3,2],[2,1,2,2],[1,2,1,0]],[[2,2,2,0],[2,0,3,2],[2,1,2,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[2,1,2,2],[1,2,0,2]],[[1,2,2,0],[2,0,3,2],[2,1,2,2],[1,3,0,1]],[[1,2,2,0],[2,0,3,2],[2,1,2,2],[2,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,1,2,3],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[3,1,2,2],[1,2,0,1]],[[1,2,2,0],[2,0,3,3],[2,1,2,2],[1,2,0,1]],[[1,2,2,0],[2,0,4,2],[2,1,2,2],[1,2,0,1]],[[1,2,2,0],[3,0,3,2],[2,1,2,2],[1,2,0,1]],[[1,2,3,0],[2,0,3,2],[2,1,2,2],[1,2,0,1]],[[1,3,2,0],[2,0,3,2],[2,1,2,2],[1,2,0,1]],[[2,2,2,0],[2,0,3,2],[2,1,2,2],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[2,1,2,2],[2,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,2,3],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[3,1,2,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,3],[2,1,2,2],[1,1,2,0]],[[1,2,2,0],[2,0,4,2],[2,1,2,2],[1,1,2,0]],[[1,2,2,0],[3,0,3,2],[2,1,2,2],[1,1,2,0]],[[1,2,3,0],[2,0,3,2],[2,1,2,2],[1,1,2,0]],[[1,3,2,0],[2,0,3,2],[2,1,2,2],[1,1,2,0]],[[2,2,2,0],[2,0,3,2],[2,1,2,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,2,2],[1,1,1,2]],[[1,2,2,0],[2,0,3,2],[2,1,2,2],[2,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,1,2,3],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[3,1,2,2],[1,1,1,1]],[[1,2,2,0],[2,0,3,3],[2,1,2,2],[1,1,1,1]],[[1,2,2,0],[2,0,4,2],[2,1,2,2],[1,1,1,1]],[[1,2,2,0],[3,0,3,2],[2,1,2,2],[1,1,1,1]],[[1,2,3,0],[2,0,3,2],[2,1,2,2],[1,1,1,1]],[[1,3,2,0],[2,0,3,2],[2,1,2,2],[1,1,1,1]],[[2,2,2,0],[2,0,3,2],[2,1,2,2],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[3,1,2,2],[0,2,2,0]],[[1,2,2,0],[2,0,3,3],[2,1,2,2],[0,2,2,0]],[[1,2,2,0],[2,0,4,2],[2,1,2,2],[0,2,2,0]],[[1,2,2,0],[3,0,3,2],[2,1,2,2],[0,2,2,0]],[[1,2,3,0],[2,0,3,2],[2,1,2,2],[0,2,2,0]],[[1,3,2,0],[2,0,3,2],[2,1,2,2],[0,2,2,0]],[[2,2,2,0],[2,0,3,2],[2,1,2,2],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,2,2],[0,2,1,2]],[[1,2,2,0],[2,0,3,2],[2,1,2,3],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[3,1,2,2],[0,2,1,1]],[[1,2,2,0],[2,0,3,3],[2,1,2,2],[0,2,1,1]],[[1,2,2,0],[2,0,4,2],[2,1,2,2],[0,2,1,1]],[[1,2,2,0],[3,0,3,2],[2,1,2,2],[0,2,1,1]],[[1,2,3,0],[2,0,3,2],[2,1,2,2],[0,2,1,1]],[[1,3,2,0],[2,0,3,2],[2,1,2,2],[0,2,1,1]],[[2,2,2,0],[2,0,3,2],[2,1,2,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,1],[0,2,4,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[0,2,3,0],[2,2,2,1]],[[0,2,2,1],[2,3,1,1],[0,2,3,0],[1,3,2,1]],[[0,2,2,1],[2,3,1,1],[0,2,3,0],[1,2,3,1]],[[0,2,2,1],[2,3,1,1],[0,2,3,0],[1,2,2,2]],[[0,2,2,1],[2,3,1,1],[0,2,4,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,1],[0,2,3,1],[2,2,2,0]],[[0,2,2,1],[2,3,1,1],[0,2,3,1],[1,3,2,0]],[[0,2,2,1],[2,3,1,1],[0,2,3,1],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[2,1,2,1],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[2,1,2,1],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,2,1],[2,2,2,0]],[[1,2,2,0],[2,0,3,2],[3,1,2,1],[1,2,2,0]],[[0,3,2,1],[2,3,1,1],[0,3,0,2],[1,2,2,1]],[[0,2,3,1],[2,3,1,1],[0,3,0,2],[1,2,2,1]],[[0,2,2,2],[2,3,1,1],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[3,3,1,1],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,4,1,1],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[0,4,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[0,3,0,3],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[0,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,3,1,1],[0,3,0,2],[1,3,2,1]],[[0,2,2,1],[2,3,1,1],[0,3,0,2],[1,2,3,1]],[[0,2,2,1],[2,3,1,1],[0,3,0,2],[1,2,2,2]],[[0,3,2,1],[2,3,1,1],[0,3,2,0],[1,2,2,1]],[[0,2,3,1],[2,3,1,1],[0,3,2,0],[1,2,2,1]],[[0,2,2,2],[2,3,1,1],[0,3,2,0],[1,2,2,1]],[[0,2,2,1],[3,3,1,1],[0,3,2,0],[1,2,2,1]],[[0,2,2,1],[2,4,1,1],[0,3,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[0,4,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[0,3,2,0],[2,2,2,1]],[[0,2,2,1],[2,3,1,1],[0,3,2,0],[1,3,2,1]],[[0,2,2,1],[2,3,1,1],[0,3,2,0],[1,2,3,1]],[[0,2,2,1],[2,3,1,1],[0,3,2,0],[1,2,2,2]],[[0,3,2,1],[2,3,1,1],[0,3,2,1],[1,2,2,0]],[[0,2,3,1],[2,3,1,1],[0,3,2,1],[1,2,2,0]],[[0,2,2,2],[2,3,1,1],[0,3,2,1],[1,2,2,0]],[[0,2,2,1],[3,3,1,1],[0,3,2,1],[1,2,2,0]],[[0,2,2,1],[2,4,1,1],[0,3,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,1],[0,4,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,1],[0,3,2,1],[2,2,2,0]],[[0,2,2,1],[2,3,1,1],[0,3,2,1],[1,3,2,0]],[[0,2,2,1],[2,3,1,1],[0,3,2,1],[1,2,3,0]],[[1,2,2,0],[2,0,3,3],[2,1,2,1],[1,2,2,0]],[[1,2,2,0],[2,0,4,2],[2,1,2,1],[1,2,2,0]],[[1,2,2,0],[3,0,3,2],[2,1,2,1],[1,2,2,0]],[[1,2,3,0],[2,0,3,2],[2,1,2,1],[1,2,2,0]],[[1,3,2,0],[2,0,3,2],[2,1,2,1],[1,2,2,0]],[[2,2,2,0],[2,0,3,2],[2,1,2,1],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,2,0],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[2,1,2,0],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[2,1,2,0],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[2,1,2,0],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[3,1,2,0],[1,2,2,1]],[[0,3,2,1],[2,3,1,1],[0,3,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,1,1],[0,3,3,0],[1,1,2,1]],[[0,2,2,2],[2,3,1,1],[0,3,3,0],[1,1,2,1]],[[0,2,2,1],[3,3,1,1],[0,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,4,1,1],[0,3,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,1],[0,4,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,1],[0,3,4,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,1],[0,3,3,0],[1,1,3,1]],[[0,2,2,1],[2,3,1,1],[0,3,3,0],[1,1,2,2]],[[0,3,2,1],[2,3,1,1],[0,3,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,1,1],[0,3,3,0],[1,2,1,1]],[[0,2,2,2],[2,3,1,1],[0,3,3,0],[1,2,1,1]],[[0,2,2,1],[3,3,1,1],[0,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,4,1,1],[0,3,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,1],[0,4,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,1],[0,3,4,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,1],[0,3,3,0],[2,2,1,1]],[[0,2,2,1],[2,3,1,1],[0,3,3,0],[1,3,1,1]],[[0,3,2,1],[2,3,1,1],[0,3,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,1,1],[0,3,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,1,1],[0,3,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,1,1],[0,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,1,1],[0,3,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,1],[0,4,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,1],[0,3,4,1],[1,1,1,1]],[[0,3,2,1],[2,3,1,1],[0,3,3,1],[1,1,2,0]],[[0,2,3,1],[2,3,1,1],[0,3,3,1],[1,1,2,0]],[[0,2,2,2],[2,3,1,1],[0,3,3,1],[1,1,2,0]],[[0,2,2,1],[3,3,1,1],[0,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,4,1,1],[0,3,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,1],[0,4,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,1],[0,3,4,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,1],[0,3,3,1],[1,1,3,0]],[[0,3,2,1],[2,3,1,1],[0,3,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,1,1],[0,3,3,1],[1,2,0,1]],[[0,2,2,2],[2,3,1,1],[0,3,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,1,1],[0,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,1,1],[0,3,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,1],[0,4,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,1],[0,3,4,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,1],[0,3,3,1],[2,2,0,1]],[[0,2,2,1],[2,3,1,1],[0,3,3,1],[1,3,0,1]],[[0,3,2,1],[2,3,1,1],[0,3,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,1,1],[0,3,3,1],[1,2,1,0]],[[0,2,2,2],[2,3,1,1],[0,3,3,1],[1,2,1,0]],[[0,2,2,1],[3,3,1,1],[0,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,4,1,1],[0,3,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,1],[0,4,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,1],[0,3,4,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,1],[0,3,3,1],[2,2,1,0]],[[0,2,2,1],[2,3,1,1],[0,3,3,1],[1,3,1,0]],[[1,2,2,0],[2,0,3,3],[2,1,2,0],[1,2,2,1]],[[1,2,2,0],[2,0,4,2],[2,1,2,0],[1,2,2,1]],[[1,2,2,0],[3,0,3,2],[2,1,2,0],[1,2,2,1]],[[1,2,3,0],[2,0,3,2],[2,1,2,0],[1,2,2,1]],[[1,3,2,0],[2,0,3,2],[2,1,2,0],[1,2,2,1]],[[2,2,2,0],[2,0,3,2],[2,1,2,0],[1,2,2,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[2,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,1,3],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[3,1,1,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,3],[2,1,1,2],[1,2,2,0]],[[1,2,2,0],[2,0,4,2],[2,1,1,2],[1,2,2,0]],[[1,2,2,0],[3,0,3,2],[2,1,1,2],[1,2,2,0]],[[1,2,3,0],[2,0,3,2],[2,1,1,2],[1,2,2,0]],[[1,3,2,0],[2,0,3,2],[2,1,1,2],[1,2,2,0]],[[2,2,2,0],[2,0,3,2],[2,1,1,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[1,2,1,2]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[1,3,1,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[2,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,3],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[3,1,1,2],[1,2,1,1]],[[1,2,2,0],[2,0,3,3],[2,1,1,2],[1,2,1,1]],[[1,2,2,0],[2,0,4,2],[2,1,1,2],[1,2,1,1]],[[1,2,2,0],[3,0,3,2],[2,1,1,2],[1,2,1,1]],[[1,2,3,0],[2,0,3,2],[2,1,1,2],[1,2,1,1]],[[1,3,2,0],[2,0,3,2],[2,1,1,2],[1,2,1,1]],[[2,2,2,0],[2,0,3,2],[2,1,1,2],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[1,1,2,2]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[1,1,3,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[2,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,3],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[3,1,1,2],[1,1,2,1]],[[1,2,2,0],[2,0,3,3],[2,1,1,2],[1,1,2,1]],[[1,2,2,0],[2,0,4,2],[2,1,1,2],[1,1,2,1]],[[1,2,2,0],[3,0,3,2],[2,1,1,2],[1,1,2,1]],[[1,2,3,0],[2,0,3,2],[2,1,1,2],[1,1,2,1]],[[1,3,2,0],[2,0,3,2],[2,1,1,2],[1,1,2,1]],[[2,2,2,0],[2,0,3,2],[2,1,1,2],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,2],[0,3,2,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,3],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[3,1,1,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,3],[2,1,1,2],[0,2,2,1]],[[1,2,2,0],[2,0,4,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,0],[3,0,3,2],[2,1,1,2],[0,2,2,1]],[[1,2,3,0],[2,0,3,2],[2,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,1],[1,2,4,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,1],[1,2,3,0],[0,3,2,1]],[[0,2,2,1],[2,3,1,1],[1,2,3,0],[0,2,3,1]],[[0,2,2,1],[2,3,1,1],[1,2,3,0],[0,2,2,2]],[[0,2,2,1],[2,3,1,1],[1,2,4,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,1],[1,2,3,1],[0,3,2,0]],[[0,2,2,1],[2,3,1,1],[1,2,3,1],[0,2,3,0]],[[1,3,2,0],[2,0,3,2],[2,1,1,2],[0,2,2,1]],[[2,2,2,0],[2,0,3,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,1],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[2,1,1,1],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,1],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[2,1,1,1],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[3,1,1,1],[1,2,2,1]],[[1,2,2,0],[2,0,3,3],[2,1,1,1],[1,2,2,1]],[[1,2,2,0],[2,0,4,2],[2,1,1,1],[1,2,2,1]],[[1,2,2,0],[3,0,3,2],[2,1,1,1],[1,2,2,1]],[[1,2,3,0],[2,0,3,2],[2,1,1,1],[1,2,2,1]],[[1,3,2,0],[2,0,3,2],[2,1,1,1],[1,2,2,1]],[[2,2,2,0],[2,0,3,2],[2,1,1,1],[1,2,2,1]],[[0,3,2,1],[2,3,1,1],[1,3,0,2],[0,2,2,1]],[[0,2,3,1],[2,3,1,1],[1,3,0,2],[0,2,2,1]],[[0,2,2,2],[2,3,1,1],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[3,3,1,1],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,4,1,1],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,1],[1,4,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,1],[1,3,0,3],[0,2,2,1]],[[0,2,2,1],[2,3,1,1],[1,3,0,2],[0,3,2,1]],[[0,2,2,1],[2,3,1,1],[1,3,0,2],[0,2,3,1]],[[0,2,2,1],[2,3,1,1],[1,3,0,2],[0,2,2,2]],[[0,3,2,1],[2,3,1,1],[1,3,0,2],[1,1,2,1]],[[0,2,3,1],[2,3,1,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,2],[2,3,1,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[3,3,1,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,4,1,1],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,1],[1,4,0,2],[1,1,2,1]],[[0,3,2,1],[2,3,1,1],[1,3,2,0],[0,2,2,1]],[[0,2,3,1],[2,3,1,1],[1,3,2,0],[0,2,2,1]],[[0,2,2,2],[2,3,1,1],[1,3,2,0],[0,2,2,1]],[[0,2,2,1],[3,3,1,1],[1,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,4,1,1],[1,3,2,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,1],[1,4,2,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,1],[1,3,2,0],[0,3,2,1]],[[0,2,2,1],[2,3,1,1],[1,3,2,0],[0,2,3,1]],[[0,2,2,1],[2,3,1,1],[1,3,2,0],[0,2,2,2]],[[0,3,2,1],[2,3,1,1],[1,3,2,0],[1,1,2,1]],[[0,2,3,1],[2,3,1,1],[1,3,2,0],[1,1,2,1]],[[0,2,2,2],[2,3,1,1],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[3,3,1,1],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,4,1,1],[1,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,1],[1,4,2,0],[1,1,2,1]],[[0,3,2,1],[2,3,1,1],[1,3,2,1],[0,2,2,0]],[[0,2,3,1],[2,3,1,1],[1,3,2,1],[0,2,2,0]],[[0,2,2,2],[2,3,1,1],[1,3,2,1],[0,2,2,0]],[[0,2,2,1],[3,3,1,1],[1,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,4,1,1],[1,3,2,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,1],[1,4,2,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,1],[1,3,2,1],[0,3,2,0]],[[0,2,2,1],[2,3,1,1],[1,3,2,1],[0,2,3,0]],[[0,3,2,1],[2,3,1,1],[1,3,2,1],[1,1,2,0]],[[0,2,3,1],[2,3,1,1],[1,3,2,1],[1,1,2,0]],[[0,2,2,2],[2,3,1,1],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[3,3,1,1],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,4,1,1],[1,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,1],[1,4,2,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,0],[2,0,3,3],[1,3,3,2],[1,0,0,1]],[[1,2,2,0],[2,0,4,2],[1,3,3,2],[1,0,0,1]],[[1,2,2,0],[3,0,3,2],[1,3,3,2],[1,0,0,1]],[[1,2,3,0],[2,0,3,2],[1,3,3,2],[1,0,0,1]],[[1,3,2,0],[2,0,3,2],[1,3,3,2],[1,0,0,1]],[[2,2,2,0],[2,0,3,2],[1,3,3,2],[1,0,0,1]],[[0,3,2,1],[2,3,1,1],[1,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,1,1],[1,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,1,1],[1,3,3,0],[0,1,2,1]],[[0,2,2,1],[3,3,1,1],[1,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,1,1],[1,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,1],[1,4,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,1],[1,3,4,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,1],[1,3,3,0],[0,1,3,1]],[[0,2,2,1],[2,3,1,1],[1,3,3,0],[0,1,2,2]],[[0,3,2,1],[2,3,1,1],[1,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,1,1],[1,3,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,1,1],[1,3,3,0],[0,2,1,1]],[[0,2,2,1],[3,3,1,1],[1,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,1,1],[1,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,1],[1,4,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,1],[1,3,4,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,1],[1,3,3,0],[0,3,1,1]],[[0,3,2,1],[2,3,1,1],[1,3,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,1,1],[1,3,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,1,1],[1,3,3,0],[1,0,2,1]],[[0,2,2,1],[3,3,1,1],[1,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,4,1,1],[1,3,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,1],[1,4,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,1],[1,3,4,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,1],[1,3,3,0],[1,0,3,1]],[[0,2,2,1],[2,3,1,1],[1,3,3,0],[1,0,2,2]],[[0,3,2,1],[2,3,1,1],[1,3,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,1,1],[1,3,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,1,1],[1,3,3,0],[1,1,1,1]],[[0,2,2,1],[3,3,1,1],[1,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,4,1,1],[1,3,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,1],[1,4,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,1],[1,3,4,0],[1,1,1,1]],[[0,3,2,1],[2,3,1,1],[1,3,3,0],[1,2,0,1]],[[0,2,3,1],[2,3,1,1],[1,3,3,0],[1,2,0,1]],[[0,2,2,2],[2,3,1,1],[1,3,3,0],[1,2,0,1]],[[0,2,2,1],[3,3,1,1],[1,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,4,1,1],[1,3,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,1,1],[1,4,3,0],[1,2,0,1]],[[0,3,2,1],[2,3,1,1],[1,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,1,1],[1,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,1,1],[1,3,3,1],[0,1,1,1]],[[0,2,2,1],[3,3,1,1],[1,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,1,1],[1,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,1,1],[1,4,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,1,1],[1,3,4,1],[0,1,1,1]],[[0,3,2,1],[2,3,1,1],[1,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,1,1],[1,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,1,1],[1,3,3,1],[0,1,2,0]],[[0,2,2,1],[3,3,1,1],[1,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,1,1],[1,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,1],[1,4,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,1],[1,3,4,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,1],[1,3,3,1],[0,1,3,0]],[[0,3,2,1],[2,3,1,1],[1,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,1,1],[1,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,1,1],[1,3,3,1],[0,2,0,1]],[[0,2,2,1],[3,3,1,1],[1,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,1,1],[1,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,1],[1,4,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,1],[1,3,4,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,1],[1,3,3,1],[0,3,0,1]],[[0,3,2,1],[2,3,1,1],[1,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,1,1],[1,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,1,1],[1,3,3,1],[0,2,1,0]],[[0,2,2,1],[3,3,1,1],[1,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,1,1],[1,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,1],[1,4,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,1],[1,3,4,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,1],[1,3,3,1],[0,3,1,0]],[[0,3,2,1],[2,3,1,1],[1,3,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,1,1],[1,3,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,1,1],[1,3,3,1],[1,0,1,1]],[[0,2,2,1],[3,3,1,1],[1,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,4,1,1],[1,3,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,1],[1,4,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,1],[1,3,4,1],[1,0,1,1]],[[0,3,2,1],[2,3,1,1],[1,3,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,1,1],[1,3,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,1,1],[1,3,3,1],[1,0,2,0]],[[0,2,2,1],[3,3,1,1],[1,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,4,1,1],[1,3,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,1],[1,4,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,1],[1,3,4,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,1],[1,3,3,1],[1,0,3,0]],[[0,3,2,1],[2,3,1,1],[1,3,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,1,1],[1,3,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,1,1],[1,3,3,1],[1,1,0,1]],[[0,2,2,1],[3,3,1,1],[1,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,4,1,1],[1,3,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,1],[1,4,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,1],[1,3,4,1],[1,1,0,1]],[[0,3,2,1],[2,3,1,1],[1,3,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,1,1],[1,3,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,1,1],[1,3,3,1],[1,1,1,0]],[[0,2,2,1],[3,3,1,1],[1,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,4,1,1],[1,3,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,1],[1,4,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,1],[1,3,4,1],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,0],[2,0,3,3],[1,3,3,2],[0,1,0,1]],[[1,2,2,0],[2,0,4,2],[1,3,3,2],[0,1,0,1]],[[1,2,2,0],[3,0,3,2],[1,3,3,2],[0,1,0,1]],[[1,2,3,0],[2,0,3,2],[1,3,3,2],[0,1,0,1]],[[1,3,2,0],[2,0,3,2],[1,3,3,2],[0,1,0,1]],[[0,3,2,1],[2,3,1,1],[1,3,3,1],[1,2,0,0]],[[0,2,3,1],[2,3,1,1],[1,3,3,1],[1,2,0,0]],[[0,2,2,2],[2,3,1,1],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[3,3,1,1],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,4,1,1],[1,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,1],[1,4,3,1],[1,2,0,0]],[[2,2,2,0],[2,0,3,2],[1,3,3,2],[0,1,0,1]],[[1,2,2,0],[2,0,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[1,4,3,1],[1,1,1,0]],[[1,2,2,0],[2,0,3,3],[1,3,3,1],[1,1,1,0]],[[1,2,2,0],[2,0,4,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,0],[3,0,3,2],[1,3,3,1],[1,1,1,0]],[[1,2,3,0],[2,0,3,2],[1,3,3,1],[1,1,1,0]],[[1,3,2,0],[2,0,3,2],[1,3,3,1],[1,1,1,0]],[[2,2,2,0],[2,0,3,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,4,1],[1,1,0,1]],[[1,2,2,0],[2,0,3,2],[1,4,3,1],[1,1,0,1]],[[1,2,2,0],[2,0,3,3],[1,3,3,1],[1,1,0,1]],[[1,2,2,0],[2,0,4,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,0],[3,0,3,2],[1,3,3,1],[1,1,0,1]],[[1,2,3,0],[2,0,3,2],[1,3,3,1],[1,1,0,1]],[[1,3,2,0],[2,0,3,2],[1,3,3,1],[1,1,0,1]],[[2,2,2,0],[2,0,3,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,0],[2,0,3,2],[1,3,3,1],[1,0,3,0]],[[1,2,2,0],[2,0,3,2],[1,3,4,1],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[1,4,3,1],[1,0,2,0]],[[1,2,2,0],[2,0,3,3],[1,3,3,1],[1,0,2,0]],[[1,2,2,0],[2,0,4,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,0],[3,0,3,2],[1,3,3,1],[1,0,2,0]],[[1,2,3,0],[2,0,3,2],[1,3,3,1],[1,0,2,0]],[[1,3,2,0],[2,0,3,2],[1,3,3,1],[1,0,2,0]],[[2,2,2,0],[2,0,3,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,4,1],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[1,4,3,1],[1,0,1,1]],[[1,2,2,0],[2,0,3,3],[1,3,3,1],[1,0,1,1]],[[1,2,2,0],[2,0,4,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,0],[3,0,3,2],[1,3,3,1],[1,0,1,1]],[[1,2,3,0],[2,0,3,2],[1,3,3,1],[1,0,1,1]],[[1,3,2,0],[2,0,3,2],[1,3,3,1],[1,0,1,1]],[[2,2,2,0],[2,0,3,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,4,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[1,4,3,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,3],[1,3,3,1],[0,2,1,0]],[[1,2,2,0],[2,0,4,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,0],[3,0,3,2],[1,3,3,1],[0,2,1,0]],[[1,2,3,0],[2,0,3,2],[1,3,3,1],[0,2,1,0]],[[1,3,2,0],[2,0,3,2],[1,3,3,1],[0,2,1,0]],[[2,2,2,0],[2,0,3,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,3,1],[0,3,0,1]],[[1,2,2,0],[2,0,3,2],[1,3,4,1],[0,2,0,1]],[[1,2,2,0],[2,0,3,2],[1,4,3,1],[0,2,0,1]],[[1,2,2,0],[2,0,3,3],[1,3,3,1],[0,2,0,1]],[[1,2,2,0],[2,0,4,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,0],[3,0,3,2],[1,3,3,1],[0,2,0,1]],[[1,2,3,0],[2,0,3,2],[1,3,3,1],[0,2,0,1]],[[1,3,2,0],[2,0,3,2],[1,3,3,1],[0,2,0,1]],[[2,2,2,0],[2,0,3,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,0],[2,0,3,2],[1,3,3,1],[0,1,3,0]],[[1,2,2,0],[2,0,3,2],[1,3,4,1],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[1,4,3,1],[0,1,2,0]],[[1,2,2,0],[2,0,3,3],[1,3,3,1],[0,1,2,0]],[[1,2,2,0],[2,0,4,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,0],[3,0,3,2],[1,3,3,1],[0,1,2,0]],[[1,2,3,0],[2,0,3,2],[1,3,3,1],[0,1,2,0]],[[1,3,2,0],[2,0,3,2],[1,3,3,1],[0,1,2,0]],[[2,2,2,0],[2,0,3,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,4,1],[0,1,1,1]],[[1,2,2,0],[2,0,3,2],[1,4,3,1],[0,1,1,1]],[[1,2,2,0],[2,0,3,3],[1,3,3,1],[0,1,1,1]],[[1,2,2,0],[2,0,4,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,0],[3,0,3,2],[1,3,3,1],[0,1,1,1]],[[1,2,3,0],[2,0,3,2],[1,3,3,1],[0,1,1,1]],[[1,3,2,0],[2,0,3,2],[1,3,3,1],[0,1,1,1]],[[2,2,2,0],[2,0,3,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,0],[2,0,3,2],[1,3,4,1],[0,0,2,1]],[[1,2,2,0],[2,0,3,3],[1,3,3,1],[0,0,2,1]],[[1,2,2,0],[2,0,4,2],[1,3,3,1],[0,0,2,1]],[[1,2,2,0],[3,0,3,2],[1,3,3,1],[0,0,2,1]],[[1,2,3,0],[2,0,3,2],[1,3,3,1],[0,0,2,1]],[[1,3,2,0],[2,0,3,2],[1,3,3,1],[0,0,2,1]],[[2,2,2,0],[2,0,3,2],[1,3,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,1,1],[2,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,1,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,1,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,1,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,1,1],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[3,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,0,1,3],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,0,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,0,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,1,1],[2,0,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,1,1],[2,0,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,1,1],[2,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,1,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,3,1,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[3,3,1,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,4,1,1],[2,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[3,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,0,4,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,0,3,0],[2,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,0,3,0],[1,3,2,1]],[[0,2,2,1],[2,3,1,1],[2,0,3,0],[1,2,3,1]],[[0,2,2,1],[2,3,1,1],[2,0,3,0],[1,2,2,2]],[[0,3,2,1],[2,3,1,1],[2,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,3,1,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,3,1,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[3,3,1,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,4,1,1],[2,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,1],[3,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,1],[2,0,4,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,1],[2,0,3,1],[2,2,2,0]],[[0,2,2,1],[2,3,1,1],[2,0,3,1],[1,3,2,0]],[[0,2,2,1],[2,3,1,1],[2,0,3,1],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,3,0],[2,2,1,0]],[[0,3,2,1],[2,3,1,1],[2,1,0,2],[1,2,2,1]],[[0,2,3,1],[2,3,1,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,2],[2,3,1,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[3,3,1,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,4,1,1],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[3,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,1,0,3],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,1,0,2],[2,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,1,0,2],[1,3,2,1]],[[0,2,2,1],[2,3,1,1],[2,1,0,2],[1,2,3,1]],[[0,2,2,1],[2,3,1,1],[2,1,0,2],[1,2,2,2]],[[0,3,2,1],[2,3,1,1],[2,1,2,0],[1,2,2,1]],[[0,2,3,1],[2,3,1,1],[2,1,2,0],[1,2,2,1]],[[0,2,2,2],[2,3,1,1],[2,1,2,0],[1,2,2,1]],[[0,2,2,1],[3,3,1,1],[2,1,2,0],[1,2,2,1]],[[0,2,2,1],[2,4,1,1],[2,1,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[3,1,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,1,2,0],[2,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,1,2,0],[1,3,2,1]],[[0,2,2,1],[2,3,1,1],[2,1,2,0],[1,2,3,1]],[[0,2,2,1],[2,3,1,1],[2,1,2,0],[1,2,2,2]],[[0,3,2,1],[2,3,1,1],[2,1,2,1],[1,2,2,0]],[[0,2,3,1],[2,3,1,1],[2,1,2,1],[1,2,2,0]],[[0,2,2,2],[2,3,1,1],[2,1,2,1],[1,2,2,0]],[[0,2,2,1],[3,3,1,1],[2,1,2,1],[1,2,2,0]],[[0,2,2,1],[2,4,1,1],[2,1,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,1],[3,1,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,1],[2,1,2,1],[2,2,2,0]],[[0,2,2,1],[2,3,1,1],[2,1,2,1],[1,3,2,0]],[[0,2,2,1],[2,3,1,1],[2,1,2,1],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[1,4,3,0],[1,2,1,0]],[[0,3,2,1],[2,3,1,1],[2,1,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,1,1],[2,1,3,0],[1,2,1,1]],[[0,2,2,2],[2,3,1,1],[2,1,3,0],[1,2,1,1]],[[0,2,2,1],[3,3,1,1],[2,1,3,0],[1,2,1,1]],[[0,2,2,1],[2,4,1,1],[2,1,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,1],[3,1,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,1],[2,1,3,0],[2,2,1,1]],[[0,2,2,1],[2,3,1,1],[2,1,3,0],[1,3,1,1]],[[0,3,2,1],[2,3,1,1],[2,1,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,1,1],[2,1,3,1],[1,2,0,1]],[[0,2,2,2],[2,3,1,1],[2,1,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,1,1],[2,1,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,1,1],[2,1,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,1],[3,1,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,1],[2,1,3,1],[2,2,0,1]],[[0,2,2,1],[2,3,1,1],[2,1,3,1],[1,3,0,1]],[[0,3,2,1],[2,3,1,1],[2,1,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,1,1],[2,1,3,1],[1,2,1,0]],[[0,2,2,2],[2,3,1,1],[2,1,3,1],[1,2,1,0]],[[0,2,2,1],[3,3,1,1],[2,1,3,1],[1,2,1,0]],[[0,2,2,1],[2,4,1,1],[2,1,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,1],[3,1,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,1],[2,1,3,1],[2,2,1,0]],[[0,2,2,1],[2,3,1,1],[2,1,3,1],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,4,0],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[1,4,3,0],[1,1,1,1]],[[1,2,2,0],[2,0,3,3],[1,3,3,0],[1,1,1,1]],[[1,2,2,0],[2,0,4,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,0],[3,0,3,2],[1,3,3,0],[1,1,1,1]],[[1,2,3,0],[2,0,3,2],[1,3,3,0],[1,1,1,1]],[[1,3,2,0],[2,0,3,2],[1,3,3,0],[1,1,1,1]],[[2,2,2,0],[2,0,3,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[1,3,3,0],[1,0,2,2]],[[1,2,2,0],[2,0,3,2],[1,3,3,0],[1,0,3,1]],[[1,2,2,0],[2,0,3,2],[1,3,4,0],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[1,4,3,0],[1,0,2,1]],[[1,2,2,0],[2,0,3,3],[1,3,3,0],[1,0,2,1]],[[1,2,2,0],[2,0,4,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,0],[3,0,3,2],[1,3,3,0],[1,0,2,1]],[[1,2,3,0],[2,0,3,2],[1,3,3,0],[1,0,2,1]],[[1,3,2,0],[2,0,3,2],[1,3,3,0],[1,0,2,1]],[[2,2,2,0],[2,0,3,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[1,3,3,0],[0,3,1,1]],[[1,2,2,0],[2,0,3,2],[1,3,4,0],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[1,4,3,0],[0,2,1,1]],[[1,2,2,0],[2,0,3,3],[1,3,3,0],[0,2,1,1]],[[1,2,2,0],[2,0,4,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,0],[3,0,3,2],[1,3,3,0],[0,2,1,1]],[[1,2,3,0],[2,0,3,2],[1,3,3,0],[0,2,1,1]],[[1,3,2,0],[2,0,3,2],[1,3,3,0],[0,2,1,1]],[[2,2,2,0],[2,0,3,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[1,3,3,0],[0,1,2,2]],[[1,2,2,0],[2,0,3,2],[1,3,3,0],[0,1,3,1]],[[1,2,2,0],[2,0,3,2],[1,3,4,0],[0,1,2,1]],[[1,2,2,0],[2,0,3,2],[1,4,3,0],[0,1,2,1]],[[1,2,2,0],[2,0,3,3],[1,3,3,0],[0,1,2,1]],[[1,2,2,0],[2,0,4,2],[1,3,3,0],[0,1,2,1]],[[1,2,2,0],[3,0,3,2],[1,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,1,1],[2,2,0,2],[0,2,2,1]],[[0,2,3,1],[2,3,1,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,2],[2,3,1,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[3,3,1,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,4,1,1],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,1],[3,2,0,2],[0,2,2,1]],[[0,3,2,1],[2,3,1,1],[2,2,0,2],[1,1,2,1]],[[0,2,3,1],[2,3,1,1],[2,2,0,2],[1,1,2,1]],[[0,2,2,2],[2,3,1,1],[2,2,0,2],[1,1,2,1]],[[0,2,2,1],[3,3,1,1],[2,2,0,2],[1,1,2,1]],[[0,2,2,1],[2,4,1,1],[2,2,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,1],[3,2,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,1],[2,2,0,2],[2,1,2,1]],[[1,2,3,0],[2,0,3,2],[1,3,3,0],[0,1,2,1]],[[1,3,2,0],[2,0,3,2],[1,3,3,0],[0,1,2,1]],[[2,2,2,0],[2,0,3,2],[1,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,1,1],[2,2,2,0],[0,2,2,1]],[[0,2,3,1],[2,3,1,1],[2,2,2,0],[0,2,2,1]],[[0,2,2,2],[2,3,1,1],[2,2,2,0],[0,2,2,1]],[[0,2,2,1],[3,3,1,1],[2,2,2,0],[0,2,2,1]],[[0,2,2,1],[2,4,1,1],[2,2,2,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,1],[3,2,2,0],[0,2,2,1]],[[0,3,2,1],[2,3,1,1],[2,2,2,0],[1,1,2,1]],[[0,2,3,1],[2,3,1,1],[2,2,2,0],[1,1,2,1]],[[0,2,2,2],[2,3,1,1],[2,2,2,0],[1,1,2,1]],[[0,2,2,1],[3,3,1,1],[2,2,2,0],[1,1,2,1]],[[0,2,2,1],[2,4,1,1],[2,2,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,1],[3,2,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,1],[2,2,2,0],[2,1,2,1]],[[0,3,2,1],[2,3,1,1],[2,2,2,1],[0,2,2,0]],[[0,2,3,1],[2,3,1,1],[2,2,2,1],[0,2,2,0]],[[0,2,2,2],[2,3,1,1],[2,2,2,1],[0,2,2,0]],[[0,2,2,1],[3,3,1,1],[2,2,2,1],[0,2,2,0]],[[0,2,2,1],[2,4,1,1],[2,2,2,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,1],[3,2,2,1],[0,2,2,0]],[[0,3,2,1],[2,3,1,1],[2,2,2,1],[1,1,2,0]],[[0,2,3,1],[2,3,1,1],[2,2,2,1],[1,1,2,0]],[[0,2,2,2],[2,3,1,1],[2,2,2,1],[1,1,2,0]],[[0,2,2,1],[3,3,1,1],[2,2,2,1],[1,1,2,0]],[[0,2,2,1],[2,4,1,1],[2,2,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,1],[3,2,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,1],[2,2,2,1],[2,1,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,0],[2,0,3,3],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[2,0,4,2],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[3,0,3,2],[1,3,2,2],[1,1,1,0]],[[1,2,3,0],[2,0,3,2],[1,3,2,2],[1,1,1,0]],[[1,3,2,0],[2,0,3,2],[1,3,2,2],[1,1,1,0]],[[2,2,2,0],[2,0,3,2],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,2,2],[1,1,0,2]],[[1,2,2,0],[2,0,3,2],[1,3,2,3],[1,1,0,1]],[[1,2,2,0],[2,0,3,3],[1,3,2,2],[1,1,0,1]],[[1,2,2,0],[2,0,4,2],[1,3,2,2],[1,1,0,1]],[[1,2,2,0],[3,0,3,2],[1,3,2,2],[1,1,0,1]],[[1,2,3,0],[2,0,3,2],[1,3,2,2],[1,1,0,1]],[[1,3,2,0],[2,0,3,2],[1,3,2,2],[1,1,0,1]],[[2,2,2,0],[2,0,3,2],[1,3,2,2],[1,1,0,1]],[[0,3,2,1],[2,3,1,1],[2,2,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,1,1],[2,2,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,1,1],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[3,3,1,1],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,1,1],[2,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,1],[3,2,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,1,1],[2,2,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,1,1],[2,2,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,1,1],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[3,3,1,1],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,1,1],[2,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,1],[3,2,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,1,1],[2,2,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,1,1],[2,2,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,1,1],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[3,3,1,1],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,4,1,1],[2,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,1],[3,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,1],[2,2,3,0],[2,0,2,1]],[[0,3,2,1],[2,3,1,1],[2,2,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,1,1],[2,2,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,1,1],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[3,3,1,1],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,4,1,1],[2,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,1],[3,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,1],[2,2,3,0],[2,1,1,1]],[[0,3,2,1],[2,3,1,1],[2,2,3,0],[1,2,0,1]],[[0,2,3,1],[2,3,1,1],[2,2,3,0],[1,2,0,1]],[[0,2,2,2],[2,3,1,1],[2,2,3,0],[1,2,0,1]],[[0,2,2,1],[3,3,1,1],[2,2,3,0],[1,2,0,1]],[[0,2,2,1],[2,4,1,1],[2,2,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,1,1],[3,2,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,1,1],[2,2,3,0],[2,2,0,1]],[[1,2,2,0],[2,0,3,2],[1,3,2,3],[1,0,2,0]],[[1,2,2,0],[2,0,3,3],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[2,0,4,2],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[3,0,3,2],[1,3,2,2],[1,0,2,0]],[[1,2,3,0],[2,0,3,2],[1,3,2,2],[1,0,2,0]],[[1,3,2,0],[2,0,3,2],[1,3,2,2],[1,0,2,0]],[[0,3,2,1],[2,3,1,1],[2,2,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,1,1],[2,2,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,1,1],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[3,3,1,1],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,1,1],[2,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,1,1],[3,2,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,1,1],[2,2,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,1,1],[2,2,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,1,1],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[3,3,1,1],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,1,1],[2,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,1],[3,2,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,1,1],[2,2,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,1,1],[2,2,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,1,1],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[3,3,1,1],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,1,1],[2,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,1],[3,2,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,1,1],[2,2,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,1,1],[2,2,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,1,1],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[3,3,1,1],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,1,1],[2,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,1],[3,2,3,1],[0,2,1,0]],[[2,2,2,0],[2,0,3,2],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,2,2],[1,0,1,2]],[[1,2,2,0],[2,0,3,2],[1,3,2,3],[1,0,1,1]],[[1,2,2,0],[2,0,3,3],[1,3,2,2],[1,0,1,1]],[[1,2,2,0],[2,0,4,2],[1,3,2,2],[1,0,1,1]],[[1,2,2,0],[3,0,3,2],[1,3,2,2],[1,0,1,1]],[[1,2,3,0],[2,0,3,2],[1,3,2,2],[1,0,1,1]],[[1,3,2,0],[2,0,3,2],[1,3,2,2],[1,0,1,1]],[[2,2,2,0],[2,0,3,2],[1,3,2,2],[1,0,1,1]],[[0,3,2,1],[2,3,1,1],[2,2,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,1,1],[2,2,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,1,1],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[3,3,1,1],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,4,1,1],[2,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,1],[3,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,1],[2,2,3,1],[2,0,1,1]],[[0,3,2,1],[2,3,1,1],[2,2,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,1,1],[2,2,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,1,1],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[3,3,1,1],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,4,1,1],[2,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,1],[3,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,1],[2,2,3,1],[2,0,2,0]],[[0,3,2,1],[2,3,1,1],[2,2,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,1,1],[2,2,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,1,1],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[3,3,1,1],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,4,1,1],[2,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,1],[3,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,1],[2,2,3,1],[2,1,0,1]],[[0,3,2,1],[2,3,1,1],[2,2,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,1,1],[2,2,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,1,1],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[3,3,1,1],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,4,1,1],[2,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,1],[3,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,1],[2,2,3,1],[2,1,1,0]],[[0,3,2,1],[2,3,1,1],[2,2,3,1],[1,2,0,0]],[[0,2,3,1],[2,3,1,1],[2,2,3,1],[1,2,0,0]],[[0,2,2,2],[2,3,1,1],[2,2,3,1],[1,2,0,0]],[[0,2,2,1],[3,3,1,1],[2,2,3,1],[1,2,0,0]],[[0,2,2,1],[2,4,1,1],[2,2,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,1],[3,2,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,1],[2,2,3,1],[2,2,0,0]],[[1,2,2,0],[2,0,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,2,0],[2,0,3,3],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,0,4,2],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[3,0,3,2],[1,3,2,2],[0,2,1,0]],[[1,2,3,0],[2,0,3,2],[1,3,2,2],[0,2,1,0]],[[1,3,2,0],[2,0,3,2],[1,3,2,2],[0,2,1,0]],[[2,2,2,0],[2,0,3,2],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,2,2],[0,2,0,2]],[[1,2,2,0],[2,0,3,2],[1,3,2,3],[0,2,0,1]],[[1,2,2,0],[2,0,3,3],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[2,0,4,2],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[3,0,3,2],[1,3,2,2],[0,2,0,1]],[[1,2,3,0],[2,0,3,2],[1,3,2,2],[0,2,0,1]],[[1,3,2,0],[2,0,3,2],[1,3,2,2],[0,2,0,1]],[[2,2,2,0],[2,0,3,2],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,2],[1,3,2,3],[0,1,2,0]],[[1,2,2,0],[2,0,3,3],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[2,0,4,2],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[3,0,3,2],[1,3,2,2],[0,1,2,0]],[[1,2,3,0],[2,0,3,2],[1,3,2,2],[0,1,2,0]],[[1,3,2,0],[2,0,3,2],[1,3,2,2],[0,1,2,0]],[[2,2,2,0],[2,0,3,2],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,2,2],[0,1,1,2]],[[1,2,2,0],[2,0,3,2],[1,3,2,3],[0,1,1,1]],[[1,2,2,0],[2,0,3,3],[1,3,2,2],[0,1,1,1]],[[1,2,2,0],[2,0,4,2],[1,3,2,2],[0,1,1,1]],[[1,2,2,0],[3,0,3,2],[1,3,2,2],[0,1,1,1]],[[1,2,3,0],[2,0,3,2],[1,3,2,2],[0,1,1,1]],[[1,3,2,0],[2,0,3,2],[1,3,2,2],[0,1,1,1]],[[2,2,2,0],[2,0,3,2],[1,3,2,2],[0,1,1,1]],[[1,2,2,0],[2,0,3,2],[1,3,2,2],[0,0,2,2]],[[1,2,2,0],[2,0,3,2],[1,3,2,3],[0,0,2,1]],[[1,2,2,0],[2,0,3,3],[1,3,2,2],[0,0,2,1]],[[1,2,2,0],[2,0,4,2],[1,3,2,2],[0,0,2,1]],[[1,2,2,0],[3,0,3,2],[1,3,2,2],[0,0,2,1]],[[1,2,3,0],[2,0,3,2],[1,3,2,2],[0,0,2,1]],[[1,3,2,0],[2,0,3,2],[1,3,2,2],[0,0,2,1]],[[2,2,2,0],[2,0,3,2],[1,3,2,2],[0,0,2,1]],[[1,2,2,0],[2,0,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,2,1],[2,2,1,0]],[[1,2,2,0],[2,0,3,2],[1,4,2,1],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,2,1],[1,3,0,1]],[[1,2,2,0],[2,0,3,2],[1,3,2,1],[2,2,0,1]],[[1,2,2,0],[2,0,3,2],[1,4,2,1],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[1,3,2,1],[0,2,3,0]],[[1,2,2,0],[2,0,3,2],[1,3,2,1],[0,3,2,0]],[[1,2,2,0],[2,0,3,2],[1,4,2,1],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,2,0],[1,3,1,1]],[[1,2,2,0],[2,0,3,2],[1,3,2,0],[2,2,1,1]],[[1,2,2,0],[2,0,3,2],[1,4,2,0],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[1,3,2,0],[0,2,2,2]],[[1,2,2,0],[2,0,3,2],[1,3,2,0],[0,2,3,1]],[[1,2,2,0],[2,0,3,2],[1,3,2,0],[0,3,2,1]],[[1,2,2,0],[2,0,3,2],[1,4,2,0],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,1,2],[2,2,1,0]],[[1,2,2,0],[2,0,3,2],[1,4,1,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[1,3,1,2],[1,3,0,1]],[[1,2,2,0],[2,0,3,2],[1,3,1,2],[2,2,0,1]],[[1,2,2,0],[2,0,3,2],[1,4,1,2],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[1,3,1,2],[1,0,2,2]],[[1,2,2,0],[2,0,3,2],[1,3,1,2],[1,0,3,1]],[[1,2,2,0],[2,0,3,2],[1,3,1,3],[1,0,2,1]],[[1,2,2,0],[2,0,3,3],[1,3,1,2],[1,0,2,1]],[[1,2,2,0],[2,0,4,2],[1,3,1,2],[1,0,2,1]],[[1,2,2,0],[3,0,3,2],[1,3,1,2],[1,0,2,1]],[[1,2,3,0],[2,0,3,2],[1,3,1,2],[1,0,2,1]],[[1,3,2,0],[2,0,3,2],[1,3,1,2],[1,0,2,1]],[[2,2,2,0],[2,0,3,2],[1,3,1,2],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[1,3,1,2],[0,1,2,2]],[[1,2,2,0],[2,0,3,2],[1,3,1,2],[0,1,3,1]],[[1,2,2,0],[2,0,3,2],[1,3,1,3],[0,1,2,1]],[[1,2,2,0],[2,0,3,3],[1,3,1,2],[0,1,2,1]],[[1,2,2,0],[2,0,4,2],[1,3,1,2],[0,1,2,1]],[[1,2,2,0],[3,0,3,2],[1,3,1,2],[0,1,2,1]],[[1,2,3,0],[2,0,3,2],[1,3,1,2],[0,1,2,1]],[[1,3,2,0],[2,0,3,2],[1,3,1,2],[0,1,2,1]],[[2,2,2,0],[2,0,3,2],[1,3,1,2],[0,1,2,1]],[[0,2,2,1],[3,3,1,1],[2,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[3,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,3,0,0],[2,2,2,1]],[[0,2,2,1],[2,3,1,1],[2,3,0,0],[1,3,2,1]],[[0,2,2,1],[3,3,1,1],[2,3,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,1],[3,3,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,1],[2,3,0,1],[2,2,2,0]],[[0,2,2,1],[2,3,1,1],[2,3,0,1],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,1,1],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[1,3,1,1],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,1,1],[2,2,2,0]],[[1,2,2,0],[2,0,3,2],[1,4,1,1],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,1,0],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[1,3,1,0],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[1,3,1,0],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[1,3,1,0],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,4,1,0],[1,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,3,0,2],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[1,3,0,2],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,0,2],[2,2,2,0]],[[1,2,2,0],[2,0,3,2],[1,4,0,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[1,3,0,2],[1,3,1,1]],[[1,2,2,0],[2,0,3,2],[1,3,0,2],[2,2,1,1]],[[1,2,2,0],[2,0,3,2],[1,4,0,2],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[1,3,0,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,2],[1,3,0,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,2],[1,3,0,2],[0,3,2,1]],[[1,2,2,0],[2,0,3,2],[1,3,0,3],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,4,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,3],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,4,2],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[3,0,3,2],[1,3,0,2],[0,2,2,1]],[[1,2,3,0],[2,0,3,2],[1,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,0,3,2],[1,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,0,3,2],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,3,0,1],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[1,3,0,1],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[1,3,0,1],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[1,3,0,1],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,4,0,1],[1,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,0],[2,0,3,2],[1,2,3,1],[0,3,2,0]],[[1,2,2,0],[2,0,3,2],[1,2,4,1],[0,2,2,0]],[[1,2,2,0],[2,0,3,3],[1,2,3,1],[0,2,2,0]],[[1,2,2,0],[2,0,4,2],[1,2,3,1],[0,2,2,0]],[[1,2,2,0],[3,0,3,2],[1,2,3,1],[0,2,2,0]],[[1,2,3,0],[2,0,3,2],[1,2,3,1],[0,2,2,0]],[[1,3,2,0],[2,0,3,2],[1,2,3,1],[0,2,2,0]],[[2,2,2,0],[2,0,3,2],[1,2,3,1],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[1,2,4,1],[0,2,1,1]],[[1,2,2,0],[2,0,3,3],[1,2,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,4,2],[1,2,3,1],[0,2,1,1]],[[1,2,2,0],[3,0,3,2],[1,2,3,1],[0,2,1,1]],[[1,2,3,0],[2,0,3,2],[1,2,3,1],[0,2,1,1]],[[1,3,2,0],[2,0,3,2],[1,2,3,1],[0,2,1,1]],[[2,2,2,0],[2,0,3,2],[1,2,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,3,2],[1,2,3,0],[0,2,2,2]],[[1,2,2,0],[2,0,3,2],[1,2,3,0],[0,2,3,1]],[[1,2,2,0],[2,0,3,2],[1,2,3,0],[0,3,2,1]],[[1,2,2,0],[2,0,3,2],[1,2,4,0],[0,2,2,1]],[[1,2,2,0],[2,0,3,3],[1,2,3,0],[0,2,2,1]],[[1,2,2,0],[2,0,4,2],[1,2,3,0],[0,2,2,1]],[[1,2,2,0],[3,0,3,2],[1,2,3,0],[0,2,2,1]],[[1,2,3,0],[2,0,3,2],[1,2,3,0],[0,2,2,1]],[[1,3,2,0],[2,0,3,2],[1,2,3,0],[0,2,2,1]],[[2,2,2,0],[2,0,3,2],[1,2,3,0],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,2,0],[2,0,3,3],[1,2,2,2],[0,2,2,0]],[[1,2,2,0],[2,0,4,2],[1,2,2,2],[0,2,2,0]],[[1,2,2,0],[3,0,3,2],[1,2,2,2],[0,2,2,0]],[[1,2,3,0],[2,0,3,2],[1,2,2,2],[0,2,2,0]],[[1,3,2,0],[2,0,3,2],[1,2,2,2],[0,2,2,0]],[[2,2,2,0],[2,0,3,2],[1,2,2,2],[0,2,2,0]],[[1,2,2,0],[2,0,3,2],[1,2,2,2],[0,2,1,2]],[[1,2,2,0],[2,0,3,2],[1,2,2,3],[0,2,1,1]],[[1,2,2,0],[2,0,3,3],[1,2,2,2],[0,2,1,1]],[[1,2,2,0],[2,0,4,2],[1,2,2,2],[0,2,1,1]],[[1,2,2,0],[3,0,3,2],[1,2,2,2],[0,2,1,1]],[[1,2,3,0],[2,0,3,2],[1,2,2,2],[0,2,1,1]],[[1,3,2,0],[2,0,3,2],[1,2,2,2],[0,2,1,1]],[[2,2,2,0],[2,0,3,2],[1,2,2,2],[0,2,1,1]],[[0,3,2,1],[2,3,1,1],[2,3,3,0],[1,0,1,1]],[[0,2,3,1],[2,3,1,1],[2,3,3,0],[1,0,1,1]],[[0,2,2,2],[2,3,1,1],[2,3,3,0],[1,0,1,1]],[[0,2,2,1],[3,3,1,1],[2,3,3,0],[1,0,1,1]],[[0,2,2,1],[2,4,1,1],[2,3,3,0],[1,0,1,1]],[[0,2,2,1],[2,3,1,1],[3,3,3,0],[1,0,1,1]],[[1,2,2,0],[2,0,3,2],[1,2,1,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,2],[1,2,1,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,2],[1,2,1,2],[0,3,2,1]],[[1,2,2,0],[2,0,3,2],[1,2,1,3],[0,2,2,1]],[[1,2,2,0],[2,0,3,3],[1,2,1,2],[0,2,2,1]],[[1,2,2,0],[2,0,4,2],[1,2,1,2],[0,2,2,1]],[[1,2,2,0],[3,0,3,2],[1,2,1,2],[0,2,2,1]],[[1,2,3,0],[2,0,3,2],[1,2,1,2],[0,2,2,1]],[[1,3,2,0],[2,0,3,2],[1,2,1,2],[0,2,2,1]],[[2,2,2,0],[2,0,3,2],[1,2,1,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,2,0,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[1,2,0,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[1,2,0,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[1,2,0,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,2,0,3],[1,2,2,1]],[[1,2,2,0],[2,0,3,3],[1,2,0,2],[1,2,2,1]],[[1,2,2,0],[2,0,4,2],[1,2,0,2],[1,2,2,1]],[[1,2,2,0],[3,0,3,2],[1,2,0,2],[1,2,2,1]],[[1,2,3,0],[2,0,3,2],[1,2,0,2],[1,2,2,1]],[[1,3,2,0],[2,0,3,2],[1,2,0,2],[1,2,2,1]],[[2,2,2,0],[2,0,3,2],[1,2,0,2],[1,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,1,3,1],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[1,1,3,1],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[1,1,3,1],[2,2,2,0]],[[1,2,2,0],[2,0,3,2],[1,1,4,1],[1,2,2,0]],[[1,2,2,0],[2,0,3,3],[1,1,3,1],[1,2,2,0]],[[1,2,2,0],[2,0,4,2],[1,1,3,1],[1,2,2,0]],[[1,2,2,0],[3,0,3,2],[1,1,3,1],[1,2,2,0]],[[1,2,3,0],[2,0,3,2],[1,1,3,1],[1,2,2,0]],[[1,3,2,0],[2,0,3,2],[1,1,3,1],[1,2,2,0]],[[2,2,2,0],[2,0,3,2],[1,1,3,1],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[1,1,4,1],[1,2,1,1]],[[1,2,2,0],[2,0,3,3],[1,1,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,4,2],[1,1,3,1],[1,2,1,1]],[[1,2,2,0],[3,0,3,2],[1,1,3,1],[1,2,1,1]],[[1,2,3,0],[2,0,3,2],[1,1,3,1],[1,2,1,1]],[[1,3,2,0],[2,0,3,2],[1,1,3,1],[1,2,1,1]],[[0,3,2,1],[2,3,1,1],[2,3,3,1],[1,0,0,1]],[[0,2,3,1],[2,3,1,1],[2,3,3,1],[1,0,0,1]],[[0,2,2,2],[2,3,1,1],[2,3,3,1],[1,0,0,1]],[[0,2,2,1],[3,3,1,1],[2,3,3,1],[1,0,0,1]],[[0,2,2,1],[2,4,1,1],[2,3,3,1],[1,0,0,1]],[[0,2,2,1],[2,3,1,1],[3,3,3,1],[1,0,0,1]],[[0,3,2,1],[2,3,1,1],[2,3,3,1],[1,0,1,0]],[[0,2,3,1],[2,3,1,1],[2,3,3,1],[1,0,1,0]],[[0,2,2,2],[2,3,1,1],[2,3,3,1],[1,0,1,0]],[[0,2,2,1],[3,3,1,1],[2,3,3,1],[1,0,1,0]],[[0,2,2,1],[2,4,1,1],[2,3,3,1],[1,0,1,0]],[[0,2,2,1],[2,3,1,1],[3,3,3,1],[1,0,1,0]],[[2,2,2,0],[2,0,3,2],[1,1,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[1,1,3,0],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[1,1,3,0],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[1,1,3,0],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[1,1,3,0],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,1,4,0],[1,2,2,1]],[[1,2,2,0],[2,0,3,3],[1,1,3,0],[1,2,2,1]],[[1,2,2,0],[2,0,4,2],[1,1,3,0],[1,2,2,1]],[[1,2,2,0],[3,0,3,2],[1,1,3,0],[1,2,2,1]],[[1,2,3,0],[2,0,3,2],[1,1,3,0],[1,2,2,1]],[[1,3,2,0],[2,0,3,2],[1,1,3,0],[1,2,2,1]],[[2,2,2,0],[2,0,3,2],[1,1,3,0],[1,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,1,2,3],[1,2,2,0]],[[1,2,2,0],[2,0,3,3],[1,1,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,4,2],[1,1,2,2],[1,2,2,0]],[[1,2,2,0],[3,0,3,2],[1,1,2,2],[1,2,2,0]],[[1,2,3,0],[2,0,3,2],[1,1,2,2],[1,2,2,0]],[[1,3,2,0],[2,0,3,2],[1,1,2,2],[1,2,2,0]],[[2,2,2,0],[2,0,3,2],[1,1,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[1,1,2,2],[1,2,1,2]],[[1,2,2,0],[2,0,3,2],[1,1,2,3],[1,2,1,1]],[[1,2,2,0],[2,0,3,3],[1,1,2,2],[1,2,1,1]],[[1,2,2,0],[2,0,4,2],[1,1,2,2],[1,2,1,1]],[[1,2,2,0],[3,0,3,2],[1,1,2,2],[1,2,1,1]],[[1,2,3,0],[2,0,3,2],[1,1,2,2],[1,2,1,1]],[[1,3,2,0],[2,0,3,2],[1,1,2,2],[1,2,1,1]],[[2,2,2,0],[2,0,3,2],[1,1,2,2],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[1,1,1,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[1,1,1,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[1,1,1,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[1,1,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,1,1,3],[1,2,2,1]],[[1,2,2,0],[2,0,3,3],[1,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,4,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,0],[3,0,3,2],[1,1,1,2],[1,2,2,1]],[[1,2,3,0],[2,0,3,2],[1,1,1,2],[1,2,2,1]],[[1,3,2,0],[2,0,3,2],[1,1,1,2],[1,2,2,1]],[[2,2,2,0],[2,0,3,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,3,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,0],[2,0,3,3],[1,0,3,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,2,0],[2,0,3,3],[0,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,4,2],[0,3,3,2],[1,1,0,1]],[[1,2,3,0],[2,0,3,2],[0,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,0,3,2],[0,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,0,3,2],[0,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[0,3,3,1],[2,2,1,0]],[[1,2,2,0],[2,0,3,2],[0,3,4,1],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[0,4,3,1],[1,2,1,0]],[[1,2,2,0],[2,0,3,3],[0,3,3,1],[1,2,1,0]],[[1,2,2,0],[2,0,4,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,0],[3,0,3,2],[0,3,3,1],[1,2,1,0]],[[1,2,3,0],[2,0,3,2],[0,3,3,1],[1,2,1,0]],[[1,3,2,0],[2,0,3,2],[0,3,3,1],[1,2,1,0]],[[2,2,2,0],[2,0,3,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[0,3,3,1],[1,3,0,1]],[[1,2,2,0],[2,0,3,2],[0,3,3,1],[2,2,0,1]],[[1,2,2,0],[2,0,3,2],[0,3,4,1],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[0,4,3,1],[1,2,0,1]],[[1,2,2,0],[2,0,3,3],[0,3,3,1],[1,2,0,1]],[[1,2,2,0],[2,0,4,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,0],[3,0,3,2],[0,3,3,1],[1,2,0,1]],[[1,2,3,0],[2,0,3,2],[0,3,3,1],[1,2,0,1]],[[1,3,2,0],[2,0,3,2],[0,3,3,1],[1,2,0,1]],[[2,2,2,0],[2,0,3,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[0,3,3,1],[1,1,3,0]],[[1,2,2,0],[2,0,3,2],[0,3,4,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[0,4,3,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,3],[0,3,3,1],[1,1,2,0]],[[1,2,2,0],[2,0,4,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,0],[3,0,3,2],[0,3,3,1],[1,1,2,0]],[[1,2,3,0],[2,0,3,2],[0,3,3,1],[1,1,2,0]],[[1,3,2,0],[2,0,3,2],[0,3,3,1],[1,1,2,0]],[[2,2,2,0],[2,0,3,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[0,3,4,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[0,4,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,3],[0,3,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,4,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,0,3,2],[0,3,3,1],[1,1,1,1]],[[1,2,3,0],[2,0,3,2],[0,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,0,3,2],[0,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,0,3,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[0,3,4,1],[1,0,2,1]],[[1,2,2,0],[2,0,3,3],[0,3,3,1],[1,0,2,1]],[[1,2,2,0],[2,0,4,2],[0,3,3,1],[1,0,2,1]],[[1,2,3,0],[2,0,3,2],[0,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,0,3,2],[0,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,0,3,2],[0,3,3,1],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[0,3,3,0],[1,3,1,1]],[[1,2,2,0],[2,0,3,2],[0,3,3,0],[2,2,1,1]],[[1,2,2,0],[2,0,3,2],[0,3,4,0],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[0,4,3,0],[1,2,1,1]],[[1,2,2,0],[2,0,3,3],[0,3,3,0],[1,2,1,1]],[[1,2,2,0],[2,0,4,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,0],[3,0,3,2],[0,3,3,0],[1,2,1,1]],[[1,2,3,0],[2,0,3,2],[0,3,3,0],[1,2,1,1]],[[1,3,2,0],[2,0,3,2],[0,3,3,0],[1,2,1,1]],[[2,2,2,0],[2,0,3,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[0,3,3,0],[1,1,2,2]],[[1,2,2,0],[2,0,3,2],[0,3,3,0],[1,1,3,1]],[[1,2,2,0],[2,0,3,2],[0,3,4,0],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[0,4,3,0],[1,1,2,1]],[[1,2,2,0],[2,0,3,3],[0,3,3,0],[1,1,2,1]],[[1,2,2,0],[2,0,4,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,0],[3,0,3,2],[0,3,3,0],[1,1,2,1]],[[1,2,3,0],[2,0,3,2],[0,3,3,0],[1,1,2,1]],[[1,3,2,0],[2,0,3,2],[0,3,3,0],[1,1,2,1]],[[2,2,2,0],[2,0,3,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,0],[2,0,3,3],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[2,0,4,2],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[3,0,3,2],[0,3,2,2],[1,2,1,0]],[[1,2,3,0],[2,0,3,2],[0,3,2,2],[1,2,1,0]],[[1,3,2,0],[2,0,3,2],[0,3,2,2],[1,2,1,0]],[[2,2,2,0],[2,0,3,2],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[0,3,2,2],[1,2,0,2]],[[1,2,2,0],[2,0,3,2],[0,3,2,3],[1,2,0,1]],[[1,2,2,0],[2,0,3,3],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[2,0,4,2],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[3,0,3,2],[0,3,2,2],[1,2,0,1]],[[1,2,3,0],[2,0,3,2],[0,3,2,2],[1,2,0,1]],[[1,3,2,0],[2,0,3,2],[0,3,2,2],[1,2,0,1]],[[2,2,2,0],[2,0,3,2],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[2,0,3,2],[0,3,2,3],[1,1,2,0]],[[1,2,2,0],[2,0,3,3],[0,3,2,2],[1,1,2,0]],[[1,2,2,0],[2,0,4,2],[0,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,0,3,2],[0,3,2,2],[1,1,2,0]],[[1,2,3,0],[2,0,3,2],[0,3,2,2],[1,1,2,0]],[[1,3,2,0],[2,0,3,2],[0,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,0,3,2],[0,3,2,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,2],[0,3,2,2],[1,1,1,2]],[[1,2,2,0],[2,0,3,2],[0,3,2,3],[1,1,1,1]],[[1,2,2,0],[2,0,3,3],[0,3,2,2],[1,1,1,1]],[[1,2,2,0],[2,0,4,2],[0,3,2,2],[1,1,1,1]],[[1,2,2,0],[3,0,3,2],[0,3,2,2],[1,1,1,1]],[[1,2,3,0],[2,0,3,2],[0,3,2,2],[1,1,1,1]],[[1,3,2,0],[2,0,3,2],[0,3,2,2],[1,1,1,1]],[[2,2,2,0],[2,0,3,2],[0,3,2,2],[1,1,1,1]],[[1,2,2,0],[2,0,3,2],[0,3,2,2],[1,0,2,2]],[[1,2,2,0],[2,0,3,2],[0,3,2,3],[1,0,2,1]],[[1,2,2,0],[2,0,3,3],[0,3,2,2],[1,0,2,1]],[[1,2,2,0],[2,0,4,2],[0,3,2,2],[1,0,2,1]],[[1,2,3,0],[2,0,3,2],[0,3,2,2],[1,0,2,1]],[[1,3,2,0],[2,0,3,2],[0,3,2,2],[1,0,2,1]],[[2,2,2,0],[2,0,3,2],[0,3,2,2],[1,0,2,1]],[[1,2,2,0],[2,0,3,2],[0,3,2,1],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[0,3,2,1],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[0,3,2,1],[2,2,2,0]],[[1,2,2,0],[2,0,3,2],[0,4,2,1],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[0,3,2,0],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[0,3,2,0],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[0,3,2,0],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[0,3,2,0],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[0,4,2,0],[1,2,2,1]],[[1,2,2,0],[2,0,3,2],[0,3,1,2],[1,1,2,2]],[[1,2,2,0],[2,0,3,2],[0,3,1,2],[1,1,3,1]],[[1,2,2,0],[2,0,3,2],[0,3,1,3],[1,1,2,1]],[[1,2,2,0],[2,0,3,3],[0,3,1,2],[1,1,2,1]],[[1,2,2,0],[2,0,4,2],[0,3,1,2],[1,1,2,1]],[[1,2,2,0],[3,0,3,2],[0,3,1,2],[1,1,2,1]],[[1,2,3,0],[2,0,3,2],[0,3,1,2],[1,1,2,1]],[[1,3,2,0],[2,0,3,2],[0,3,1,2],[1,1,2,1]],[[2,2,2,0],[2,0,3,2],[0,3,1,2],[1,1,2,1]],[[1,2,2,0],[2,0,3,2],[0,3,0,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[0,3,0,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[0,3,0,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[0,3,0,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[0,3,0,3],[1,2,2,1]],[[1,2,2,0],[2,0,3,2],[0,4,0,2],[1,2,2,1]],[[1,2,2,0],[2,0,3,3],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[2,0,4,2],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[3,0,3,2],[0,3,0,2],[1,2,2,1]],[[1,2,3,0],[2,0,3,2],[0,3,0,2],[1,2,2,1]],[[1,3,2,0],[2,0,3,2],[0,3,0,2],[1,2,2,1]],[[2,2,2,0],[2,0,3,2],[0,3,0,2],[1,2,2,1]],[[0,3,2,1],[2,3,1,2],[0,1,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[0,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[0,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,1,1,3],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,1,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,1,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,1,2],[0,1,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,1,2],[0,1,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,1,2],[0,1,2,2],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[0,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,3],[0,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[0,1,2,3],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[0,1,2,2],[1,2,1,2]],[[0,3,2,1],[2,3,1,2],[0,1,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,1,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,1,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,1],[3,3,1,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,4,1,2],[0,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,3],[0,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[0,1,2,3],[1,2,2,0]],[[0,3,2,1],[2,3,1,2],[0,1,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[0,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[0,1,3,0],[1,2,2,1]],[[0,3,2,1],[2,3,1,2],[0,1,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[0,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,1,3],[0,1,3,1],[1,2,1,1]],[[0,3,2,1],[2,3,1,2],[0,1,3,1],[1,2,2,0]],[[0,2,3,1],[2,3,1,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,2],[2,3,1,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,1],[3,3,1,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,4,1,2],[0,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,3],[0,1,3,1],[1,2,2,0]],[[0,3,2,1],[2,3,1,2],[0,2,0,2],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[0,2,0,2],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[0,2,0,2],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[0,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[0,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[0,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,2,0,3],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,2,0,2],[2,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,2,0,2],[1,3,2,1]],[[0,2,2,1],[2,3,1,2],[0,2,0,2],[1,2,3,1]],[[0,2,2,1],[2,3,1,2],[0,2,0,2],[1,2,2,2]],[[0,3,2,1],[2,3,1,2],[0,2,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[0,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,3],[0,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[0,2,1,3],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[0,2,1,2],[1,1,3,1]],[[0,2,2,1],[2,3,1,2],[0,2,1,2],[1,1,2,2]],[[0,3,2,1],[2,3,1,2],[0,2,2,2],[1,0,2,1]],[[0,2,3,1],[2,3,1,2],[0,2,2,2],[1,0,2,1]],[[0,2,2,2],[2,3,1,2],[0,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,4,1,2],[0,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,3],[0,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[0,2,2,3],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[0,2,2,2],[1,0,2,2]],[[0,3,2,1],[2,3,1,2],[0,2,2,2],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[0,2,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[0,2,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[0,2,2,3],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[0,2,2,2],[1,1,1,2]],[[0,3,2,1],[2,3,1,2],[0,2,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,1,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,1,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,1],[3,3,1,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,4,1,2],[0,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,3],[0,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[0,2,2,3],[1,1,2,0]],[[0,3,2,1],[2,3,1,2],[0,2,2,2],[1,2,0,1]],[[0,2,3,1],[2,3,1,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,2],[2,3,1,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,1],[3,3,1,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,4,1,2],[0,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,3],[0,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[0,2,2,3],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[0,2,2,2],[1,2,0,2]],[[0,3,2,1],[2,3,1,2],[0,2,2,2],[1,2,1,0]],[[0,2,3,1],[2,3,1,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,2],[2,3,1,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,1],[3,3,1,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,4,1,2],[0,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,3],[0,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[0,2,2,3],[1,2,1,0]],[[0,3,2,1],[2,3,1,2],[0,2,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[0,2,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,3],[0,2,3,0],[1,1,2,1]],[[0,3,2,1],[2,3,1,2],[0,2,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[0,2,3,0],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[0,2,3,0],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[0,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[0,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,3],[0,2,3,0],[1,2,1,1]],[[0,3,2,1],[2,3,1,2],[0,2,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,1,2],[0,2,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,1,2],[0,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,4,1,2],[0,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,1,3],[0,2,3,1],[1,0,2,1]],[[0,3,2,1],[2,3,1,2],[0,2,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[0,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[0,2,3,1],[1,1,1,1]],[[0,3,2,1],[2,3,1,2],[0,2,3,1],[1,1,2,0]],[[0,2,3,1],[2,3,1,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,2],[2,3,1,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,1],[3,3,1,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,1],[2,4,1,2],[0,2,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,3],[0,2,3,1],[1,1,2,0]],[[0,3,2,1],[2,3,1,2],[0,2,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,1,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,2],[2,3,1,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,1,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,1,2],[0,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,3],[0,2,3,1],[1,2,0,1]],[[0,3,2,1],[2,3,1,2],[0,2,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,1,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,2],[2,3,1,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,1],[3,3,1,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,4,1,2],[0,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[2,0,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,2,0],[2,0,3,2],[0,2,3,1],[1,3,2,0]],[[1,2,2,0],[2,0,3,2],[0,2,3,1],[2,2,2,0]],[[1,2,2,0],[2,0,3,2],[0,2,4,1],[1,2,2,0]],[[1,2,2,0],[2,0,3,3],[0,2,3,1],[1,2,2,0]],[[1,2,2,0],[2,0,4,2],[0,2,3,1],[1,2,2,0]],[[1,2,2,0],[3,0,3,2],[0,2,3,1],[1,2,2,0]],[[1,2,3,0],[2,0,3,2],[0,2,3,1],[1,2,2,0]],[[1,3,2,0],[2,0,3,2],[0,2,3,1],[1,2,2,0]],[[2,2,2,0],[2,0,3,2],[0,2,3,1],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[0,2,4,1],[1,2,1,1]],[[0,3,2,1],[2,3,1,2],[0,2,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,1,2],[0,2,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,1,2],[0,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,4,1,2],[0,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,3],[0,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,0],[2,0,3,3],[0,2,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,4,2],[0,2,3,1],[1,2,1,1]],[[1,2,2,0],[3,0,3,2],[0,2,3,1],[1,2,1,1]],[[1,2,3,0],[2,0,3,2],[0,2,3,1],[1,2,1,1]],[[1,3,2,0],[2,0,3,2],[0,2,3,1],[1,2,1,1]],[[2,2,2,0],[2,0,3,2],[0,2,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[0,2,3,0],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[0,2,3,0],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[0,2,3,0],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[0,2,3,0],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[0,2,4,0],[1,2,2,1]],[[1,2,2,0],[2,0,3,3],[0,2,3,0],[1,2,2,1]],[[1,2,2,0],[2,0,4,2],[0,2,3,0],[1,2,2,1]],[[1,2,2,0],[3,0,3,2],[0,2,3,0],[1,2,2,1]],[[1,2,3,0],[2,0,3,2],[0,2,3,0],[1,2,2,1]],[[1,3,2,0],[2,0,3,2],[0,2,3,0],[1,2,2,1]],[[2,2,2,0],[2,0,3,2],[0,2,3,0],[1,2,2,1]],[[1,2,2,0],[2,0,3,2],[0,2,2,3],[1,2,2,0]],[[1,2,2,0],[2,0,3,3],[0,2,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,4,2],[0,2,2,2],[1,2,2,0]],[[1,2,2,0],[3,0,3,2],[0,2,2,2],[1,2,2,0]],[[1,2,3,0],[2,0,3,2],[0,2,2,2],[1,2,2,0]],[[1,3,2,0],[2,0,3,2],[0,2,2,2],[1,2,2,0]],[[2,2,2,0],[2,0,3,2],[0,2,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,2],[0,2,2,2],[1,2,1,2]],[[1,2,2,0],[2,0,3,2],[0,2,2,3],[1,2,1,1]],[[1,2,2,0],[2,0,3,3],[0,2,2,2],[1,2,1,1]],[[1,2,2,0],[2,0,4,2],[0,2,2,2],[1,2,1,1]],[[1,2,2,0],[3,0,3,2],[0,2,2,2],[1,2,1,1]],[[1,2,3,0],[2,0,3,2],[0,2,2,2],[1,2,1,1]],[[1,3,2,0],[2,0,3,2],[0,2,2,2],[1,2,1,1]],[[0,3,2,1],[2,3,1,2],[0,3,0,1],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[0,3,0,1],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[0,3,0,1],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[0,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[0,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[0,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,4,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,0,1],[2,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,0,1],[1,3,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,0,1],[1,2,3,1]],[[0,2,2,1],[2,3,1,2],[0,3,0,1],[1,2,2,2]],[[0,3,2,1],[2,3,1,2],[0,3,0,2],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[0,3,0,2],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[0,3,0,2],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[0,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[0,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,3],[0,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[0,4,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,0,3],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,0,2],[1,1,3,1]],[[0,2,2,1],[2,3,1,2],[0,3,0,2],[1,1,2,2]],[[0,3,2,1],[2,3,1,2],[0,3,0,2],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[0,3,0,2],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[0,3,0,2],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[0,3,0,2],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[0,3,0,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,3],[0,3,0,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[0,4,0,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[0,3,0,3],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[0,3,0,2],[2,2,1,1]],[[0,2,2,1],[2,3,1,2],[0,3,0,2],[1,3,1,1]],[[0,2,2,1],[2,3,1,2],[0,3,0,2],[1,2,1,2]],[[0,3,2,1],[2,3,1,2],[0,3,0,2],[1,2,2,0]],[[0,2,3,1],[2,3,1,2],[0,3,0,2],[1,2,2,0]],[[0,2,2,2],[2,3,1,2],[0,3,0,2],[1,2,2,0]],[[0,2,2,1],[3,3,1,2],[0,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,4,1,2],[0,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,3],[0,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[0,4,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[0,3,0,3],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[0,3,0,2],[2,2,2,0]],[[0,2,2,1],[2,3,1,2],[0,3,0,2],[1,3,2,0]],[[0,2,2,1],[2,3,1,2],[0,3,0,2],[1,2,3,0]],[[0,3,2,1],[2,3,1,2],[0,3,1,0],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[0,3,1,0],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,4,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,0],[2,2,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,0],[1,3,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,0],[1,2,3,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,0],[1,2,2,2]],[[0,3,2,1],[2,3,1,2],[0,3,1,1],[1,2,2,0]],[[0,2,3,1],[2,3,1,2],[0,3,1,1],[1,2,2,0]],[[0,2,2,2],[2,3,1,2],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[3,3,1,2],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,4,1,2],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,3],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[0,4,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[0,3,1,1],[2,2,2,0]],[[0,2,2,1],[2,3,1,2],[0,3,1,1],[1,3,2,0]],[[0,2,2,1],[2,3,1,2],[0,3,1,1],[1,2,3,0]],[[0,3,2,1],[2,3,1,2],[0,3,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,1,2],[0,3,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,1,2],[0,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,4,1,2],[0,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,3],[0,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,3],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,2],[0,1,3,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,2],[0,1,2,2]],[[0,3,2,1],[2,3,1,2],[0,3,1,2],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[0,3,1,2],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[0,3,1,2],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[0,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[0,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[0,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[0,4,1,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,3],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,2],[1,1,1,2]],[[0,3,2,1],[2,3,1,2],[0,3,1,2],[1,1,2,0]],[[0,2,3,1],[2,3,1,2],[0,3,1,2],[1,1,2,0]],[[0,2,2,2],[2,3,1,2],[0,3,1,2],[1,1,2,0]],[[0,2,2,1],[3,3,1,2],[0,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,4,1,2],[0,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,3],[0,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[0,4,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[0,3,1,3],[1,1,2,0]],[[0,3,2,1],[2,3,1,2],[0,3,1,2],[1,2,0,1]],[[0,2,3,1],[2,3,1,2],[0,3,1,2],[1,2,0,1]],[[0,2,2,2],[2,3,1,2],[0,3,1,2],[1,2,0,1]],[[0,2,2,1],[3,3,1,2],[0,3,1,2],[1,2,0,1]],[[0,2,2,1],[2,4,1,2],[0,3,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,3],[0,3,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[0,4,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,3],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,2],[2,2,0,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,2],[1,3,0,1]],[[0,2,2,1],[2,3,1,2],[0,3,1,2],[1,2,0,2]],[[0,3,2,1],[2,3,1,2],[0,3,1,2],[1,2,1,0]],[[0,2,3,1],[2,3,1,2],[0,3,1,2],[1,2,1,0]],[[0,2,2,2],[2,3,1,2],[0,3,1,2],[1,2,1,0]],[[0,2,2,1],[3,3,1,2],[0,3,1,2],[1,2,1,0]],[[0,2,2,1],[2,4,1,2],[0,3,1,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,3],[0,3,1,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[0,4,1,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[0,3,1,3],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[0,3,1,2],[2,2,1,0]],[[0,2,2,1],[2,3,1,2],[0,3,1,2],[1,3,1,0]],[[2,2,2,0],[2,0,3,2],[0,2,2,2],[1,2,1,1]],[[1,2,2,0],[2,0,3,2],[0,2,1,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[0,2,1,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[0,2,1,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,2],[0,2,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,2],[0,2,1,3],[1,2,2,1]],[[1,2,2,0],[2,0,3,3],[0,2,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,4,2],[0,2,1,2],[1,2,2,1]],[[1,2,2,0],[3,0,3,2],[0,2,1,2],[1,2,2,1]],[[1,2,3,0],[2,0,3,2],[0,2,1,2],[1,2,2,1]],[[1,3,2,0],[2,0,3,2],[0,2,1,2],[1,2,2,1]],[[2,2,2,0],[2,0,3,2],[0,2,1,2],[1,2,2,1]],[[0,3,2,1],[2,3,1,2],[0,3,2,0],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[0,3,2,0],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,3],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[0,4,2,0],[1,1,2,1]],[[0,3,2,1],[2,3,1,2],[0,3,2,0],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[0,3,2,0],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,3],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[0,4,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[0,3,2,0],[2,2,1,1]],[[0,2,2,1],[2,3,1,2],[0,3,2,0],[1,3,1,1]],[[0,3,2,1],[2,3,1,2],[0,3,2,1],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[0,3,2,1],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[0,3,2,1],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[0,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[0,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[0,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[0,4,2,1],[1,1,1,1]],[[0,3,2,1],[2,3,1,2],[0,3,2,1],[1,1,2,0]],[[0,2,3,1],[2,3,1,2],[0,3,2,1],[1,1,2,0]],[[0,2,2,2],[2,3,1,2],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[3,3,1,2],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,4,1,2],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,3],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[0,4,2,1],[1,1,2,0]],[[0,3,2,1],[2,3,1,2],[0,3,2,1],[1,2,0,1]],[[0,2,3,1],[2,3,1,2],[0,3,2,1],[1,2,0,1]],[[0,2,2,2],[2,3,1,2],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[3,3,1,2],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,4,1,2],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,3],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[0,4,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[0,3,2,1],[2,2,0,1]],[[0,2,2,1],[2,3,1,2],[0,3,2,1],[1,3,0,1]],[[0,3,2,1],[2,3,1,2],[0,3,2,1],[1,2,1,0]],[[0,2,3,1],[2,3,1,2],[0,3,2,1],[1,2,1,0]],[[0,2,2,2],[2,3,1,2],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[3,3,1,2],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[2,4,1,2],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,3],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[0,4,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[0,3,2,1],[2,2,1,0]],[[0,2,2,1],[2,3,1,2],[0,3,2,1],[1,3,1,0]],[[1,2,2,0],[2,0,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,0],[2,0,3,3],[0,0,3,2],[1,2,2,1]],[[0,3,2,1],[2,3,1,2],[0,3,2,2],[0,0,2,1]],[[0,2,3,1],[2,3,1,2],[0,3,2,2],[0,0,2,1]],[[0,2,2,2],[2,3,1,2],[0,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,4,1,2],[0,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,1,3],[0,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,2,3],[0,0,2,1]],[[0,2,2,1],[2,3,1,2],[0,3,2,2],[0,0,2,2]],[[0,3,2,1],[2,3,1,2],[0,3,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,1,2],[0,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,1,2],[0,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,4,1,2],[0,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,3],[0,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[0,3,2,3],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[0,3,2,2],[0,1,1,2]],[[0,3,2,1],[2,3,1,2],[0,3,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,1,2],[0,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,1,2],[0,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,4,1,2],[0,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,3],[0,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,2],[0,3,2,3],[0,1,2,0]],[[0,3,2,1],[2,3,1,2],[0,3,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[0,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[0,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[0,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,3],[0,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[0,3,2,3],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[0,3,2,2],[0,2,0,2]],[[0,3,2,1],[2,3,1,2],[0,3,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[0,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[0,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[0,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,3],[0,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,0],[2,0,3,1],[2,4,3,2],[1,1,0,0]],[[1,2,2,0],[2,0,3,1],[3,3,3,2],[1,1,0,0]],[[1,2,2,0],[2,0,4,1],[2,3,3,2],[1,1,0,0]],[[1,2,2,0],[3,0,3,1],[2,3,3,2],[1,1,0,0]],[[1,2,3,0],[2,0,3,1],[2,3,3,2],[1,1,0,0]],[[1,3,2,0],[2,0,3,1],[2,3,3,2],[1,1,0,0]],[[2,2,2,0],[2,0,3,1],[2,3,3,2],[1,1,0,0]],[[0,3,2,1],[2,3,1,2],[0,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,1,2],[0,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,1,2],[0,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,1,2],[0,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,3],[0,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,1,2],[0,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[0,3,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[0,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[0,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,3],[0,3,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,1,2],[0,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,3,1,2],[0,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,3,1,2],[0,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,4,1,2],[0,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,3,1,3],[0,3,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,1,2],[0,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,1,2],[0,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,1,2],[0,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,1,2],[0,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,1,3],[0,3,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,1,2],[0,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,1,2],[0,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,1,2],[0,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,1,2],[0,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,3],[0,3,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,1,2],[0,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[0,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[0,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[0,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,3],[0,3,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,1,2],[0,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[0,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[0,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[0,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,3],[0,3,3,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,0],[2,0,3,1],[3,3,3,2],[0,2,0,0]],[[1,2,2,0],[2,0,4,1],[2,3,3,2],[0,2,0,0]],[[1,2,2,0],[3,0,3,1],[2,3,3,2],[0,2,0,0]],[[1,2,3,0],[2,0,3,1],[2,3,3,2],[0,2,0,0]],[[0,3,2,1],[2,3,1,2],[0,3,3,1],[1,2,0,0]],[[0,2,3,1],[2,3,1,2],[0,3,3,1],[1,2,0,0]],[[0,2,2,2],[2,3,1,2],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[3,3,1,2],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,4,1,2],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,3],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,2],[0,4,3,1],[1,2,0,0]],[[1,3,2,0],[2,0,3,1],[2,3,3,2],[0,2,0,0]],[[2,2,2,0],[2,0,3,1],[2,3,3,2],[0,2,0,0]],[[0,3,2,1],[2,3,1,2],[0,3,3,2],[0,1,0,1]],[[0,2,3,1],[2,3,1,2],[0,3,3,2],[0,1,0,1]],[[0,2,2,2],[2,3,1,2],[0,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,4,1,2],[0,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,1,3],[0,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,1,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,0],[2,0,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,0],[2,0,3,1],[2,4,2,2],[1,2,0,0]],[[1,2,2,0],[2,0,3,1],[3,3,2,2],[1,2,0,0]],[[1,2,2,0],[2,0,4,1],[2,3,2,2],[1,2,0,0]],[[1,2,2,0],[3,0,3,1],[2,3,2,2],[1,2,0,0]],[[1,2,3,0],[2,0,3,1],[2,3,2,2],[1,2,0,0]],[[1,3,2,0],[2,0,3,1],[2,3,2,2],[1,2,0,0]],[[2,2,2,0],[2,0,3,1],[2,3,2,2],[1,2,0,0]],[[1,2,2,0],[2,0,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,2,0],[2,0,3,1],[2,4,2,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,1],[3,3,2,2],[1,1,1,0]],[[1,2,2,0],[2,0,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,0],[3,0,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,3,0],[2,0,3,1],[2,3,2,2],[1,1,1,0]],[[1,3,2,0],[2,0,3,1],[2,3,2,2],[1,1,1,0]],[[2,2,2,0],[2,0,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,1],[2,3,2,2],[2,1,0,1]],[[1,2,2,0],[2,0,3,1],[2,4,2,2],[1,1,0,1]],[[1,2,2,0],[2,0,3,1],[3,3,2,2],[1,1,0,1]],[[1,2,2,0],[2,0,4,1],[2,3,2,2],[1,1,0,1]],[[1,2,2,0],[3,0,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,3,0],[2,0,3,1],[2,3,2,2],[1,1,0,1]],[[1,3,2,0],[2,0,3,1],[2,3,2,2],[1,1,0,1]],[[2,2,2,0],[2,0,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,2,0],[2,0,3,1],[2,3,2,2],[2,0,2,0]],[[1,2,2,0],[2,0,3,1],[2,4,2,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,1],[3,3,2,2],[1,0,2,0]],[[1,2,2,0],[2,0,4,1],[2,3,2,2],[1,0,2,0]],[[1,2,2,0],[3,0,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,3,0],[2,0,3,1],[2,3,2,2],[1,0,2,0]],[[1,3,2,0],[2,0,3,1],[2,3,2,2],[1,0,2,0]],[[2,2,2,0],[2,0,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,1],[2,3,2,2],[2,0,1,1]],[[0,3,2,1],[2,3,1,2],[1,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[1,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[1,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,0,1,3],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,0,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,0,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,1,2],[1,0,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,1,2],[1,0,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,1,2],[1,0,2,2],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[1,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,3],[1,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[1,0,2,3],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[1,0,2,2],[1,2,1,2]],[[0,3,2,1],[2,3,1,2],[1,0,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,1,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,1,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,1],[3,3,1,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,4,1,2],[1,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,3],[1,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[1,0,2,3],[1,2,2,0]],[[0,3,2,1],[2,3,1,2],[1,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[1,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[1,0,3,0],[1,2,2,1]],[[0,3,2,1],[2,3,1,2],[1,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[1,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,1,3],[1,0,3,1],[1,2,1,1]],[[0,3,2,1],[2,3,1,2],[1,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,3,1,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,3,1,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,1],[3,3,1,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,4,1,2],[1,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,3],[1,0,3,1],[1,2,2,0]],[[1,2,2,0],[2,0,3,1],[2,4,2,2],[1,0,1,1]],[[1,2,2,0],[2,0,3,1],[3,3,2,2],[1,0,1,1]],[[1,2,2,0],[2,0,4,1],[2,3,2,2],[1,0,1,1]],[[1,2,2,0],[3,0,3,1],[2,3,2,2],[1,0,1,1]],[[1,2,3,0],[2,0,3,1],[2,3,2,2],[1,0,1,1]],[[1,3,2,0],[2,0,3,1],[2,3,2,2],[1,0,1,1]],[[2,2,2,0],[2,0,3,1],[2,3,2,2],[1,0,1,1]],[[0,3,2,1],[2,3,1,2],[1,1,0,2],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[1,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[1,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,1,0,3],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,1,0,2],[2,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,1,0,2],[1,3,2,1]],[[0,2,2,1],[2,3,1,2],[1,1,0,2],[1,2,3,1]],[[0,2,2,1],[2,3,1,2],[1,1,0,2],[1,2,2,2]],[[0,3,2,1],[2,3,1,2],[1,1,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,1,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,1,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,1],[3,3,1,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,4,1,2],[1,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,3],[1,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,1,1,3],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,1,1,2],[0,3,2,1]],[[0,2,2,1],[2,3,1,2],[1,1,1,2],[0,2,3,1]],[[0,2,2,1],[2,3,1,2],[1,1,1,2],[0,2,2,2]],[[0,3,2,1],[2,3,1,2],[1,1,2,2],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,1],[3,3,1,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[1,1,2,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,3],[1,1,2,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[1,1,2,3],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[1,1,2,2],[0,2,1,2]],[[0,3,2,1],[2,3,1,2],[1,1,2,2],[0,2,2,0]],[[0,2,3,1],[2,3,1,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,2],[2,3,1,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,1],[3,3,1,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,1],[2,4,1,2],[1,1,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,3],[1,1,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[1,1,2,3],[0,2,2,0]],[[0,3,2,1],[2,3,1,2],[1,1,3,0],[0,2,2,1]],[[0,2,3,1],[2,3,1,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,2],[2,3,1,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,1],[3,3,1,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,1],[2,4,1,2],[1,1,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,3],[1,1,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,1,2],[1,1,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,1],[3,3,1,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[1,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,1,3],[1,1,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,1,2],[1,1,3,1],[0,2,2,0]],[[0,2,3,1],[2,3,1,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,2],[2,3,1,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,1],[3,3,1,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,1],[2,4,1,2],[1,1,3,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[2,0,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,2,0],[2,0,3,1],[2,4,2,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[3,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,0,4,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,0],[3,0,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,3,0],[2,0,3,1],[2,3,2,2],[0,2,1,0]],[[1,3,2,0],[2,0,3,1],[2,3,2,2],[0,2,1,0]],[[2,2,2,0],[2,0,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[2,3,2,2],[0,3,0,1]],[[1,2,2,0],[2,0,3,1],[2,4,2,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,1],[3,3,2,2],[0,2,0,1]],[[1,2,2,0],[2,0,4,1],[2,3,2,2],[0,2,0,1]],[[1,2,2,0],[3,0,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,3,0],[2,0,3,1],[2,3,2,2],[0,2,0,1]],[[1,3,2,0],[2,0,3,1],[2,3,2,2],[0,2,0,1]],[[2,2,2,0],[2,0,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,1],[2,4,2,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,1],[3,3,2,2],[0,1,2,0]],[[1,2,2,0],[2,0,4,1],[2,3,2,2],[0,1,2,0]],[[1,2,2,0],[3,0,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,3,0],[2,0,3,1],[2,3,2,2],[0,1,2,0]],[[1,3,2,0],[2,0,3,1],[2,3,2,2],[0,1,2,0]],[[2,2,2,0],[2,0,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,1],[2,4,2,2],[0,1,1,1]],[[1,2,2,0],[2,0,3,1],[3,3,2,2],[0,1,1,1]],[[1,2,2,0],[2,0,4,1],[2,3,2,2],[0,1,1,1]],[[1,2,2,0],[3,0,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,3,0],[2,0,3,1],[2,3,2,2],[0,1,1,1]],[[1,3,2,0],[2,0,3,1],[2,3,2,2],[0,1,1,1]],[[2,2,2,0],[2,0,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,2,0],[2,0,3,1],[2,3,2,1],[2,2,0,1]],[[1,2,2,0],[2,0,3,1],[2,4,2,1],[1,2,0,1]],[[1,2,2,0],[2,0,3,1],[3,3,2,1],[1,2,0,1]],[[1,2,2,0],[3,0,3,1],[2,3,2,1],[1,2,0,1]],[[0,3,2,1],[2,3,1,2],[1,2,0,2],[0,2,2,1]],[[0,2,3,1],[2,3,1,2],[1,2,0,2],[0,2,2,1]],[[0,2,2,2],[2,3,1,2],[1,2,0,2],[0,2,2,1]],[[0,2,2,1],[3,3,1,2],[1,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,4,1,2],[1,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,3],[1,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,2,0,3],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,2,0,2],[0,3,2,1]],[[0,2,2,1],[2,3,1,2],[1,2,0,2],[0,2,3,1]],[[0,2,2,1],[2,3,1,2],[1,2,0,2],[0,2,2,2]],[[0,3,2,1],[2,3,1,2],[1,2,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,1,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,1,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,1],[3,3,1,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,4,1,2],[1,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,3],[1,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[1,2,1,3],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[1,2,1,2],[0,1,3,1]],[[0,2,2,1],[2,3,1,2],[1,2,1,2],[0,1,2,2]],[[0,3,2,1],[2,3,1,2],[1,2,1,2],[1,0,2,1]],[[0,2,3,1],[2,3,1,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,2],[2,3,1,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,1],[3,3,1,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,4,1,2],[1,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,3],[1,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[1,2,1,3],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[1,2,1,2],[1,0,3,1]],[[0,2,2,1],[2,3,1,2],[1,2,1,2],[1,0,2,2]],[[1,3,2,0],[2,0,3,1],[2,3,2,1],[1,2,0,1]],[[2,2,2,0],[2,0,3,1],[2,3,2,1],[1,2,0,1]],[[1,2,2,0],[2,0,3,1],[2,3,2,1],[2,1,1,1]],[[0,3,2,1],[2,3,1,2],[1,2,2,2],[0,0,2,1]],[[0,2,3,1],[2,3,1,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,2],[2,3,1,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,1],[3,3,1,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,1],[2,4,1,2],[1,2,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,1,3],[1,2,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,1,2],[1,2,2,3],[0,0,2,1]],[[0,2,2,1],[2,3,1,2],[1,2,2,2],[0,0,2,2]],[[0,3,2,1],[2,3,1,2],[1,2,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,1,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,1,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,1],[3,3,1,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,4,1,2],[1,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,3],[1,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[1,2,2,3],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[1,2,2,2],[0,1,1,2]],[[0,3,2,1],[2,3,1,2],[1,2,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,1,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,1,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,1],[3,3,1,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,4,1,2],[1,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,3],[1,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,2],[1,2,2,3],[0,1,2,0]],[[0,3,2,1],[2,3,1,2],[1,2,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[3,3,1,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,3],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[1,2,2,3],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[1,2,2,2],[0,2,0,2]],[[0,3,2,1],[2,3,1,2],[1,2,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,1],[3,3,1,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[1,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,3],[1,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[2,4,2,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[3,3,2,1],[1,1,1,1]],[[1,2,2,0],[2,0,4,1],[2,3,2,1],[1,1,1,1]],[[1,2,2,0],[3,0,3,1],[2,3,2,1],[1,1,1,1]],[[1,2,3,0],[2,0,3,1],[2,3,2,1],[1,1,1,1]],[[1,3,2,0],[2,0,3,1],[2,3,2,1],[1,1,1,1]],[[2,2,2,0],[2,0,3,1],[2,3,2,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[2,3,2,1],[2,0,2,1]],[[1,2,2,0],[2,0,3,1],[2,4,2,1],[1,0,2,1]],[[1,2,2,0],[2,0,3,1],[3,3,2,1],[1,0,2,1]],[[0,3,2,1],[2,3,1,2],[1,2,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,1,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,1,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,1],[3,3,1,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,4,1,2],[1,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,3],[1,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[1,2,2,3],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[1,2,2,2],[1,0,1,2]],[[0,3,2,1],[2,3,1,2],[1,2,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,1,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,1,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,1],[3,3,1,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,4,1,2],[1,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,3],[1,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[1,2,2,3],[1,0,2,0]],[[0,3,2,1],[2,3,1,2],[1,2,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,1,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,1,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,1],[3,3,1,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,4,1,2],[1,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,3],[1,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[1,2,2,3],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[1,2,2,2],[1,1,0,2]],[[0,3,2,1],[2,3,1,2],[1,2,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,1,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,1,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,1],[3,3,1,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,4,1,2],[1,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,3],[1,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,0],[2,0,4,1],[2,3,2,1],[1,0,2,1]],[[1,2,2,0],[3,0,3,1],[2,3,2,1],[1,0,2,1]],[[1,2,3,0],[2,0,3,1],[2,3,2,1],[1,0,2,1]],[[1,3,2,0],[2,0,3,1],[2,3,2,1],[1,0,2,1]],[[2,2,2,0],[2,0,3,1],[2,3,2,1],[1,0,2,1]],[[1,2,2,0],[2,0,3,1],[2,3,2,1],[0,3,1,1]],[[1,2,2,0],[2,0,3,1],[2,4,2,1],[0,2,1,1]],[[1,2,2,0],[2,0,3,1],[3,3,2,1],[0,2,1,1]],[[1,2,2,0],[2,0,4,1],[2,3,2,1],[0,2,1,1]],[[1,2,2,0],[3,0,3,1],[2,3,2,1],[0,2,1,1]],[[1,2,3,0],[2,0,3,1],[2,3,2,1],[0,2,1,1]],[[1,3,2,0],[2,0,3,1],[2,3,2,1],[0,2,1,1]],[[2,2,2,0],[2,0,3,1],[2,3,2,1],[0,2,1,1]],[[1,2,2,0],[2,0,3,1],[2,4,2,1],[0,1,2,1]],[[1,2,2,0],[2,0,3,1],[3,3,2,1],[0,1,2,1]],[[1,2,2,0],[2,0,4,1],[2,3,2,1],[0,1,2,1]],[[1,2,2,0],[3,0,3,1],[2,3,2,1],[0,1,2,1]],[[1,2,3,0],[2,0,3,1],[2,3,2,1],[0,1,2,1]],[[1,3,2,0],[2,0,3,1],[2,3,2,1],[0,1,2,1]],[[2,2,2,0],[2,0,3,1],[2,3,2,1],[0,1,2,1]],[[0,3,2,1],[2,3,1,2],[1,2,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,1,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,1,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,1],[3,3,1,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,1,2],[1,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,3],[1,2,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,1,2],[1,2,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[1,2,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[1,2,3,0],[0,2,1,1]],[[0,2,2,1],[3,3,1,2],[1,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[1,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,3],[1,2,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,1,2],[1,2,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,1,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,1,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,1],[3,3,1,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,4,1,2],[1,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,3],[1,2,3,0],[1,0,2,1]],[[0,3,2,1],[2,3,1,2],[1,2,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[1,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[1,2,3,0],[1,1,1,1]],[[0,3,2,1],[2,3,1,2],[1,2,3,1],[0,0,2,1]],[[0,2,3,1],[2,3,1,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,2],[2,3,1,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,1],[3,3,1,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,1],[2,4,1,2],[1,2,3,1],[0,0,2,1]],[[0,2,2,1],[2,3,1,3],[1,2,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,1,2],[1,2,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,1,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,1,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,1],[3,3,1,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,1,2],[1,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,1,3],[1,2,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,1,2],[1,2,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,1,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,1,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,1],[3,3,1,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,1,2],[1,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,3],[1,2,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,1,2],[1,2,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,1],[3,3,1,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[1,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,3],[1,2,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,1,2],[1,2,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,1],[3,3,1,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[1,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,0],[2,0,3,1],[2,4,1,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,1],[3,3,1,2],[1,1,2,0]],[[1,2,2,0],[2,0,4,1],[2,3,1,2],[1,1,2,0]],[[1,2,2,0],[3,0,3,1],[2,3,1,2],[1,1,2,0]],[[1,2,3,0],[2,0,3,1],[2,3,1,2],[1,1,2,0]],[[1,3,2,0],[2,0,3,1],[2,3,1,2],[1,1,2,0]],[[2,2,2,0],[2,0,3,1],[2,3,1,2],[1,1,2,0]],[[0,3,2,1],[2,3,1,2],[1,2,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,1,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,1,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,1],[3,3,1,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,4,1,2],[1,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,3],[1,2,3,1],[1,0,1,1]],[[0,3,2,1],[2,3,1,2],[1,2,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,1,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,1,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,1],[3,3,1,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,4,1,2],[1,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,3],[1,2,3,1],[1,0,2,0]],[[0,3,2,1],[2,3,1,2],[1,2,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,1,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,1,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,1],[3,3,1,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,4,1,2],[1,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,3],[1,2,3,1],[1,1,0,1]],[[0,3,2,1],[2,3,1,2],[1,2,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,1,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,1,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,1],[3,3,1,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,4,1,2],[1,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[2,0,3,1],[2,3,1,2],[0,2,3,0]],[[1,2,2,0],[2,0,3,1],[2,3,1,2],[0,3,2,0]],[[1,2,2,0],[2,0,3,1],[2,4,1,2],[0,2,2,0]],[[1,2,2,0],[2,0,3,1],[3,3,1,2],[0,2,2,0]],[[1,2,2,0],[2,0,4,1],[2,3,1,2],[0,2,2,0]],[[1,2,2,0],[3,0,3,1],[2,3,1,2],[0,2,2,0]],[[1,2,3,0],[2,0,3,1],[2,3,1,2],[0,2,2,0]],[[1,3,2,0],[2,0,3,1],[2,3,1,2],[0,2,2,0]],[[2,2,2,0],[2,0,3,1],[2,3,1,2],[0,2,2,0]],[[1,2,2,0],[2,0,3,1],[2,3,1,1],[2,1,2,1]],[[1,2,2,0],[2,0,3,1],[2,4,1,1],[1,1,2,1]],[[1,2,2,0],[2,0,3,1],[3,3,1,1],[1,1,2,1]],[[1,2,2,0],[2,0,4,1],[2,3,1,1],[1,1,2,1]],[[1,2,2,0],[3,0,3,1],[2,3,1,1],[1,1,2,1]],[[0,3,2,1],[2,3,1,2],[1,2,3,2],[0,1,0,1]],[[0,2,3,1],[2,3,1,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,2],[2,3,1,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,1],[3,3,1,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,1],[2,4,1,2],[1,2,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,1,3],[1,2,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,1,2],[1,2,3,3],[0,1,0,1]],[[1,2,3,0],[2,0,3,1],[2,3,1,1],[1,1,2,1]],[[1,3,2,0],[2,0,3,1],[2,3,1,1],[1,1,2,1]],[[2,2,2,0],[2,0,3,1],[2,3,1,1],[1,1,2,1]],[[1,2,2,0],[2,0,3,1],[2,3,1,1],[0,2,2,2]],[[1,2,2,0],[2,0,3,1],[2,3,1,1],[0,2,3,1]],[[1,2,2,0],[2,0,3,1],[2,3,1,1],[0,3,2,1]],[[1,2,2,0],[2,0,3,1],[2,4,1,1],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[3,3,1,1],[0,2,2,1]],[[1,2,2,0],[2,0,4,1],[2,3,1,1],[0,2,2,1]],[[1,2,2,0],[3,0,3,1],[2,3,1,1],[0,2,2,1]],[[1,2,3,0],[2,0,3,1],[2,3,1,1],[0,2,2,1]],[[1,3,2,0],[2,0,3,1],[2,3,1,1],[0,2,2,1]],[[2,2,2,0],[2,0,3,1],[2,3,1,1],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[2,3,0,2],[1,3,2,0]],[[1,2,2,0],[2,0,3,1],[2,3,0,2],[2,2,2,0]],[[1,2,2,0],[2,0,3,1],[3,3,0,2],[1,2,2,0]],[[1,2,2,0],[3,0,3,1],[2,3,0,2],[1,2,2,0]],[[1,3,2,0],[2,0,3,1],[2,3,0,2],[1,2,2,0]],[[2,2,2,0],[2,0,3,1],[2,3,0,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,1],[2,3,0,2],[2,1,2,1]],[[1,2,2,0],[2,0,3,1],[2,4,0,2],[1,1,2,1]],[[1,2,2,0],[2,0,3,1],[3,3,0,2],[1,1,2,1]],[[1,2,2,0],[2,0,4,1],[2,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,0,3,1],[2,3,0,2],[1,1,2,1]],[[1,2,3,0],[2,0,3,1],[2,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,0,3,1],[2,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,0,3,1],[2,3,0,2],[1,1,2,1]],[[1,2,2,0],[2,0,3,1],[2,3,0,2],[0,2,2,2]],[[0,3,2,1],[2,3,1,2],[1,2,3,2],[1,0,0,1]],[[0,2,3,1],[2,3,1,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,2],[2,3,1,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,1],[3,3,1,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,1],[2,4,1,2],[1,2,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,1,3],[1,2,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,1,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,0],[2,0,3,1],[2,3,0,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,1],[2,3,0,2],[0,3,2,1]],[[1,2,2,0],[2,0,3,1],[2,3,0,3],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[2,4,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[3,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,4,1],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[3,0,3,1],[2,3,0,2],[0,2,2,1]],[[1,2,3,0],[2,0,3,1],[2,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,0,3,1],[2,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,0,3,1],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[2,3,0,1],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[2,3,0,1],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[3,3,0,1],[1,2,2,1]],[[1,2,2,0],[3,0,3,1],[2,3,0,1],[1,2,2,1]],[[1,3,2,0],[2,0,3,1],[2,3,0,1],[1,2,2,1]],[[2,2,2,0],[2,0,3,1],[2,3,0,1],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[2,2,3,2],[2,1,1,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,2,0],[2,0,3,1],[2,2,4,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,1],[3,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,4,1],[2,2,3,2],[1,1,1,0]],[[1,2,2,0],[3,0,3,1],[2,2,3,2],[1,1,1,0]],[[1,2,3,0],[2,0,3,1],[2,2,3,2],[1,1,1,0]],[[1,3,2,0],[2,0,3,1],[2,2,3,2],[1,1,1,0]],[[2,2,2,0],[2,0,3,1],[2,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,2],[1,1,0,2]],[[1,2,2,0],[2,0,3,1],[2,2,3,2],[2,1,0,1]],[[1,2,2,0],[2,0,3,1],[2,2,3,3],[1,1,0,1]],[[1,2,2,0],[2,0,3,1],[2,2,4,2],[1,1,0,1]],[[1,2,2,0],[2,0,3,1],[3,2,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,4,1],[2,2,3,2],[1,1,0,1]],[[1,2,2,0],[3,0,3,1],[2,2,3,2],[1,1,0,1]],[[1,2,3,0],[2,0,3,1],[2,2,3,2],[1,1,0,1]],[[1,3,2,0],[2,0,3,1],[2,2,3,2],[1,1,0,1]],[[2,2,2,0],[2,0,3,1],[2,2,3,2],[1,1,0,1]],[[0,3,2,1],[2,3,1,2],[1,3,0,1],[0,2,2,1]],[[0,2,3,1],[2,3,1,2],[1,3,0,1],[0,2,2,1]],[[0,2,2,2],[2,3,1,2],[1,3,0,1],[0,2,2,1]],[[0,2,2,1],[3,3,1,2],[1,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,4,1,2],[1,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,3,1,3],[1,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,4,0,1],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,1],[0,3,2,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,1],[0,2,3,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,1],[0,2,2,2]],[[0,3,2,1],[2,3,1,2],[1,3,0,1],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[1,3,0,1],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[1,3,0,1],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[1,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[1,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,3],[1,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[1,4,0,1],[1,1,2,1]],[[0,3,2,1],[2,3,1,2],[1,3,0,2],[0,1,2,1]],[[0,2,3,1],[2,3,1,2],[1,3,0,2],[0,1,2,1]],[[0,2,2,2],[2,3,1,2],[1,3,0,2],[0,1,2,1]],[[0,2,2,1],[3,3,1,2],[1,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,4,1,2],[1,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,3],[1,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[1,4,0,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,3],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,2],[0,1,3,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,2],[0,1,2,2]],[[0,3,2,1],[2,3,1,2],[1,3,0,2],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[1,3,0,2],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[1,3,0,2],[0,2,1,1]],[[0,2,2,1],[3,3,1,2],[1,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[1,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,3],[1,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[1,4,0,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,3],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,2],[0,3,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,2],[0,2,1,2]],[[0,3,2,1],[2,3,1,2],[1,3,0,2],[0,2,2,0]],[[0,2,3,1],[2,3,1,2],[1,3,0,2],[0,2,2,0]],[[0,2,2,2],[2,3,1,2],[1,3,0,2],[0,2,2,0]],[[0,2,2,1],[3,3,1,2],[1,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,4,1,2],[1,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,3],[1,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[1,4,0,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[1,3,0,3],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[1,3,0,2],[0,3,2,0]],[[0,2,2,1],[2,3,1,2],[1,3,0,2],[0,2,3,0]],[[0,3,2,1],[2,3,1,2],[1,3,0,2],[1,0,2,1]],[[0,2,3,1],[2,3,1,2],[1,3,0,2],[1,0,2,1]],[[0,2,2,2],[2,3,1,2],[1,3,0,2],[1,0,2,1]],[[0,2,2,1],[3,3,1,2],[1,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,4,1,2],[1,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,3],[1,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[1,4,0,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,3],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,2],[1,0,3,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,2],[1,0,2,2]],[[0,3,2,1],[2,3,1,2],[1,3,0,2],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[1,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[1,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[1,4,0,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,3],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,0,2],[1,1,1,2]],[[0,3,2,1],[2,3,1,2],[1,3,0,2],[1,1,2,0]],[[0,2,3,1],[2,3,1,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,2],[2,3,1,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,1],[3,3,1,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,4,1,2],[1,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,3],[1,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[1,4,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[1,3,0,3],[1,1,2,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,2],[1,0,3,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,2],[2,0,2,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,3],[1,0,2,0]],[[1,2,2,0],[2,0,3,1],[2,2,4,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,1],[3,2,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,4,1],[2,2,3,2],[1,0,2,0]],[[1,2,2,0],[3,0,3,1],[2,2,3,2],[1,0,2,0]],[[1,2,3,0],[2,0,3,1],[2,2,3,2],[1,0,2,0]],[[1,3,2,0],[2,0,3,1],[2,2,3,2],[1,0,2,0]],[[2,2,2,0],[2,0,3,1],[2,2,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,2],[1,0,1,2]],[[1,2,2,0],[2,0,3,1],[2,2,3,2],[2,0,1,1]],[[0,3,2,1],[2,3,1,2],[1,3,1,0],[0,2,2,1]],[[0,2,3,1],[2,3,1,2],[1,3,1,0],[0,2,2,1]],[[0,2,2,2],[2,3,1,2],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[3,3,1,2],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,4,1,2],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,3],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,4,1,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,0],[0,3,2,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,0],[0,2,3,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,0],[0,2,2,2]],[[0,3,2,1],[2,3,1,2],[1,3,1,0],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[1,3,1,0],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,3],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[1,4,1,0],[1,1,2,1]],[[0,3,2,1],[2,3,1,2],[1,3,1,1],[0,2,2,0]],[[0,2,3,1],[2,3,1,2],[1,3,1,1],[0,2,2,0]],[[0,2,2,2],[2,3,1,2],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[3,3,1,2],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,4,1,2],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,3],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[1,4,1,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[1,3,1,1],[0,3,2,0]],[[0,2,2,1],[2,3,1,2],[1,3,1,1],[0,2,3,0]],[[0,3,2,1],[2,3,1,2],[1,3,1,1],[1,1,2,0]],[[0,2,3,1],[2,3,1,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,2],[2,3,1,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[3,3,1,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,4,1,2],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,3],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[1,4,1,1],[1,1,2,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,3],[1,0,1,1]],[[1,2,2,0],[2,0,3,1],[2,2,4,2],[1,0,1,1]],[[1,2,2,0],[2,0,3,1],[3,2,3,2],[1,0,1,1]],[[1,2,2,0],[2,0,4,1],[2,2,3,2],[1,0,1,1]],[[1,2,2,0],[3,0,3,1],[2,2,3,2],[1,0,1,1]],[[1,2,3,0],[2,0,3,1],[2,2,3,2],[1,0,1,1]],[[1,3,2,0],[2,0,3,1],[2,2,3,2],[1,0,1,1]],[[2,2,2,0],[2,0,3,1],[2,2,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,1,2],[1,3,1,2],[0,1,1,1]],[[0,2,3,1],[2,3,1,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,2],[2,3,1,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,1],[3,3,1,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,4,1,2],[1,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,3],[1,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[1,4,1,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,3],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,2],[0,1,1,2]],[[0,3,2,1],[2,3,1,2],[1,3,1,2],[0,1,2,0]],[[0,2,3,1],[2,3,1,2],[1,3,1,2],[0,1,2,0]],[[0,2,2,2],[2,3,1,2],[1,3,1,2],[0,1,2,0]],[[0,2,2,1],[3,3,1,2],[1,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,4,1,2],[1,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,3],[1,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,2],[1,4,1,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,2],[1,3,1,3],[0,1,2,0]],[[0,3,2,1],[2,3,1,2],[1,3,1,2],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[1,3,1,2],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[1,3,1,2],[0,2,0,1]],[[0,2,2,1],[3,3,1,2],[1,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[1,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,3],[1,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[1,4,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,3],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,2],[0,3,0,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,2],[0,2,0,2]],[[0,3,2,1],[2,3,1,2],[1,3,1,2],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[1,3,1,2],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[1,3,1,2],[0,2,1,0]],[[0,2,2,1],[3,3,1,2],[1,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[1,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,3],[1,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[1,4,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[1,3,1,3],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[1,3,1,2],[0,3,1,0]],[[0,3,2,1],[2,3,1,2],[1,3,1,2],[1,0,1,1]],[[0,2,3,1],[2,3,1,2],[1,3,1,2],[1,0,1,1]],[[0,2,2,2],[2,3,1,2],[1,3,1,2],[1,0,1,1]],[[0,2,2,1],[3,3,1,2],[1,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,4,1,2],[1,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,3],[1,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[1,4,1,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,3],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,2],[1,0,1,2]],[[0,3,2,1],[2,3,1,2],[1,3,1,2],[1,0,2,0]],[[0,2,3,1],[2,3,1,2],[1,3,1,2],[1,0,2,0]],[[0,2,2,2],[2,3,1,2],[1,3,1,2],[1,0,2,0]],[[0,2,2,1],[3,3,1,2],[1,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,4,1,2],[1,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,3],[1,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[1,4,1,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[1,3,1,3],[1,0,2,0]],[[0,3,2,1],[2,3,1,2],[1,3,1,2],[1,1,0,1]],[[0,2,3,1],[2,3,1,2],[1,3,1,2],[1,1,0,1]],[[0,2,2,2],[2,3,1,2],[1,3,1,2],[1,1,0,1]],[[0,2,2,1],[3,3,1,2],[1,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,4,1,2],[1,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,3],[1,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[1,4,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,3],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[1,3,1,2],[1,1,0,2]],[[0,3,2,1],[2,3,1,2],[1,3,1,2],[1,1,1,0]],[[0,2,3,1],[2,3,1,2],[1,3,1,2],[1,1,1,0]],[[0,2,2,2],[2,3,1,2],[1,3,1,2],[1,1,1,0]],[[0,2,2,1],[3,3,1,2],[1,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,4,1,2],[1,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,3],[1,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[1,4,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[1,3,1,3],[1,1,1,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,3],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[2,2,4,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[3,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,4,1],[2,2,3,2],[0,2,1,0]],[[1,2,2,0],[3,0,3,1],[2,2,3,2],[0,2,1,0]],[[0,3,2,1],[2,3,1,2],[1,3,1,2],[1,2,0,0]],[[0,2,3,1],[2,3,1,2],[1,3,1,2],[1,2,0,0]],[[0,2,2,2],[2,3,1,2],[1,3,1,2],[1,2,0,0]],[[0,2,2,1],[3,3,1,2],[1,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,4,1,2],[1,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,3,1,3],[1,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,3,1,2],[1,4,1,2],[1,2,0,0]],[[1,2,3,0],[2,0,3,1],[2,2,3,2],[0,2,1,0]],[[1,3,2,0],[2,0,3,1],[2,2,3,2],[0,2,1,0]],[[2,2,2,0],[2,0,3,1],[2,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,2],[0,2,0,2]],[[1,2,2,0],[2,0,3,1],[2,2,3,3],[0,2,0,1]],[[1,2,2,0],[2,0,3,1],[2,2,4,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,1],[3,2,3,2],[0,2,0,1]],[[1,2,2,0],[2,0,4,1],[2,2,3,2],[0,2,0,1]],[[1,2,2,0],[3,0,3,1],[2,2,3,2],[0,2,0,1]],[[1,2,3,0],[2,0,3,1],[2,2,3,2],[0,2,0,1]],[[1,3,2,0],[2,0,3,1],[2,2,3,2],[0,2,0,1]],[[2,2,2,0],[2,0,3,1],[2,2,3,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,1],[2,2,3,2],[0,1,3,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,3],[0,1,2,0]],[[1,2,2,0],[2,0,3,1],[2,2,4,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,1],[3,2,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,4,1],[2,2,3,2],[0,1,2,0]],[[1,2,2,0],[3,0,3,1],[2,2,3,2],[0,1,2,0]],[[1,2,3,0],[2,0,3,1],[2,2,3,2],[0,1,2,0]],[[1,3,2,0],[2,0,3,1],[2,2,3,2],[0,1,2,0]],[[2,2,2,0],[2,0,3,1],[2,2,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,2],[0,1,1,2]],[[1,2,2,0],[2,0,3,1],[2,2,3,3],[0,1,1,1]],[[1,2,2,0],[2,0,3,1],[2,2,4,2],[0,1,1,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,0],[0,1,2,1]],[[0,2,3,1],[2,3,1,2],[1,3,2,0],[0,1,2,1]],[[0,2,2,2],[2,3,1,2],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[3,3,1,2],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,4,1,2],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,3],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[1,4,2,0],[0,1,2,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,0],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[1,3,2,0],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[3,3,1,2],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,3],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[1,4,2,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,2,0],[0,3,1,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,0],[1,0,2,1]],[[0,2,3,1],[2,3,1,2],[1,3,2,0],[1,0,2,1]],[[0,2,2,2],[2,3,1,2],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[3,3,1,2],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,4,1,2],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,3],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[1,4,2,0],[1,0,2,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,0],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[1,4,2,0],[1,1,1,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,0],[1,2,0,1]],[[0,2,3,1],[2,3,1,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,2],[2,3,1,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[3,3,1,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,4,1,2],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[1,4,2,0],[1,2,0,1]],[[1,2,2,0],[2,0,3,1],[3,2,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,4,1],[2,2,3,2],[0,1,1,1]],[[1,2,2,0],[3,0,3,1],[2,2,3,2],[0,1,1,1]],[[1,2,3,0],[2,0,3,1],[2,2,3,2],[0,1,1,1]],[[1,3,2,0],[2,0,3,1],[2,2,3,2],[0,1,1,1]],[[2,2,2,0],[2,0,3,1],[2,2,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,3,1],[2,2,3,2],[0,0,2,2]],[[1,2,2,0],[2,0,3,1],[2,2,3,3],[0,0,2,1]],[[1,2,2,0],[2,0,3,1],[2,2,4,2],[0,0,2,1]],[[1,2,2,0],[2,0,4,1],[2,2,3,2],[0,0,2,1]],[[1,2,2,0],[3,0,3,1],[2,2,3,2],[0,0,2,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,1],[0,1,1,1]],[[0,2,3,1],[2,3,1,2],[1,3,2,1],[0,1,1,1]],[[0,2,2,2],[2,3,1,2],[1,3,2,1],[0,1,1,1]],[[0,2,2,1],[3,3,1,2],[1,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,4,1,2],[1,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,3,1,3],[1,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[1,4,2,1],[0,1,1,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,1],[0,1,2,0]],[[0,2,3,1],[2,3,1,2],[1,3,2,1],[0,1,2,0]],[[0,2,2,2],[2,3,1,2],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[3,3,1,2],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,4,1,2],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,3],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,2],[1,4,2,1],[0,1,2,0]],[[0,3,2,1],[2,3,1,2],[1,3,2,1],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[1,3,2,1],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[3,3,1,2],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,3],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[1,4,2,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[1,3,2,1],[0,3,0,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,1],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[1,3,2,1],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[3,3,1,2],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,3],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[1,4,2,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[1,3,2,1],[0,3,1,0]],[[1,2,3,0],[2,0,3,1],[2,2,3,2],[0,0,2,1]],[[1,3,2,0],[2,0,3,1],[2,2,3,2],[0,0,2,1]],[[2,2,2,0],[2,0,3,1],[2,2,3,2],[0,0,2,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,1],[1,0,1,1]],[[0,2,3,1],[2,3,1,2],[1,3,2,1],[1,0,1,1]],[[0,2,2,2],[2,3,1,2],[1,3,2,1],[1,0,1,1]],[[0,2,2,1],[3,3,1,2],[1,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,4,1,2],[1,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,3],[1,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[1,4,2,1],[1,0,1,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,1],[1,0,2,0]],[[0,2,3,1],[2,3,1,2],[1,3,2,1],[1,0,2,0]],[[0,2,2,2],[2,3,1,2],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[3,3,1,2],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,4,1,2],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,3],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[1,4,2,1],[1,0,2,0]],[[0,3,2,1],[2,3,1,2],[1,3,2,1],[1,1,0,1]],[[0,2,3,1],[2,3,1,2],[1,3,2,1],[1,1,0,1]],[[0,2,2,2],[2,3,1,2],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[3,3,1,2],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,4,1,2],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,3],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[1,4,2,1],[1,1,0,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,1],[1,1,1,0]],[[0,2,3,1],[2,3,1,2],[1,3,2,1],[1,1,1,0]],[[0,2,2,2],[2,3,1,2],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[3,3,1,2],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,4,1,2],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,3],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[1,4,2,1],[1,1,1,0]],[[0,3,2,1],[2,3,1,2],[1,3,2,1],[1,2,0,0]],[[0,2,3,1],[2,3,1,2],[1,3,2,1],[1,2,0,0]],[[0,2,2,2],[2,3,1,2],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[3,3,1,2],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,4,1,2],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,3],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,2],[1,4,2,1],[1,2,0,0]],[[1,2,2,0],[2,0,3,1],[2,2,3,1],[2,1,1,1]],[[1,2,2,0],[2,0,3,1],[2,2,4,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[3,2,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,4,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,0],[3,0,3,1],[2,2,3,1],[1,1,1,1]],[[1,2,3,0],[2,0,3,1],[2,2,3,1],[1,1,1,1]],[[1,3,2,0],[2,0,3,1],[2,2,3,1],[1,1,1,1]],[[2,2,2,0],[2,0,3,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[2,2,3,1],[1,0,2,2]],[[1,2,2,0],[2,0,3,1],[2,2,3,1],[1,0,3,1]],[[1,2,2,0],[2,0,3,1],[2,2,3,1],[2,0,2,1]],[[1,2,2,0],[2,0,3,1],[2,2,4,1],[1,0,2,1]],[[1,2,2,0],[2,0,3,1],[3,2,3,1],[1,0,2,1]],[[1,2,2,0],[2,0,4,1],[2,2,3,1],[1,0,2,1]],[[1,2,2,0],[3,0,3,1],[2,2,3,1],[1,0,2,1]],[[1,2,3,0],[2,0,3,1],[2,2,3,1],[1,0,2,1]],[[1,3,2,0],[2,0,3,1],[2,2,3,1],[1,0,2,1]],[[2,2,2,0],[2,0,3,1],[2,2,3,1],[1,0,2,1]],[[0,3,2,1],[2,3,1,2],[1,3,2,2],[0,0,1,1]],[[0,2,3,1],[2,3,1,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,2],[2,3,1,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,1],[3,3,1,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,1],[2,4,1,2],[1,3,2,2],[0,0,1,1]],[[0,2,2,1],[2,3,1,3],[1,3,2,2],[0,0,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,2,3],[0,0,1,1]],[[0,2,2,1],[2,3,1,2],[1,3,2,2],[0,0,1,2]],[[0,3,2,1],[2,3,1,2],[1,3,2,2],[0,0,2,0]],[[0,2,3,1],[2,3,1,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,2],[2,3,1,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,1],[3,3,1,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,1],[2,4,1,2],[1,3,2,2],[0,0,2,0]],[[0,2,2,1],[2,3,1,3],[1,3,2,2],[0,0,2,0]],[[0,2,2,1],[2,3,1,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,0],[2,0,3,1],[2,2,4,1],[0,2,1,1]],[[1,2,2,0],[2,0,3,1],[3,2,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,4,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[3,0,3,1],[2,2,3,1],[0,2,1,1]],[[1,2,3,0],[2,0,3,1],[2,2,3,1],[0,2,1,1]],[[1,3,2,0],[2,0,3,1],[2,2,3,1],[0,2,1,1]],[[2,2,2,0],[2,0,3,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,3,1],[2,2,3,1],[0,1,2,2]],[[1,2,2,0],[2,0,3,1],[2,2,3,1],[0,1,3,1]],[[1,2,2,0],[2,0,3,1],[2,2,4,1],[0,1,2,1]],[[1,2,2,0],[2,0,3,1],[3,2,3,1],[0,1,2,1]],[[1,2,2,0],[2,0,4,1],[2,2,3,1],[0,1,2,1]],[[1,2,2,0],[3,0,3,1],[2,2,3,1],[0,1,2,1]],[[1,2,3,0],[2,0,3,1],[2,2,3,1],[0,1,2,1]],[[1,3,2,0],[2,0,3,1],[2,2,3,1],[0,1,2,1]],[[2,2,2,0],[2,0,3,1],[2,2,3,1],[0,1,2,1]],[[1,2,2,0],[2,0,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,0],[2,0,3,1],[2,2,2,2],[2,2,1,0]],[[1,2,2,0],[2,0,3,1],[3,2,2,2],[1,2,1,0]],[[1,2,2,0],[2,0,4,1],[2,2,2,2],[1,2,1,0]],[[1,2,2,0],[3,0,3,1],[2,2,2,2],[1,2,1,0]],[[1,2,3,0],[2,0,3,1],[2,2,2,2],[1,2,1,0]],[[1,3,2,0],[2,0,3,1],[2,2,2,2],[1,2,1,0]],[[2,2,2,0],[2,0,3,1],[2,2,2,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,1],[2,2,2,2],[1,3,0,1]],[[1,2,2,0],[2,0,3,1],[2,2,2,2],[2,2,0,1]],[[1,2,2,0],[2,0,3,1],[3,2,2,2],[1,2,0,1]],[[1,2,2,0],[2,0,4,1],[2,2,2,2],[1,2,0,1]],[[1,2,2,0],[3,0,3,1],[2,2,2,2],[1,2,0,1]],[[1,2,3,0],[2,0,3,1],[2,2,2,2],[1,2,0,1]],[[1,3,2,0],[2,0,3,1],[2,2,2,2],[1,2,0,1]],[[2,2,2,0],[2,0,3,1],[2,2,2,2],[1,2,0,1]],[[1,2,2,0],[2,0,3,1],[2,2,2,2],[1,0,2,2]],[[1,2,2,0],[2,0,3,1],[2,2,2,2],[1,0,3,1]],[[1,2,2,0],[2,0,3,1],[2,2,2,3],[1,0,2,1]],[[1,2,2,0],[2,0,3,1],[2,2,2,2],[0,1,2,2]],[[1,2,2,0],[2,0,3,1],[2,2,2,2],[0,1,3,1]],[[1,2,2,0],[2,0,3,1],[2,2,2,3],[0,1,2,1]],[[1,2,2,0],[2,0,3,1],[2,2,2,1],[1,3,1,1]],[[1,2,2,0],[2,0,3,1],[2,2,2,1],[2,2,1,1]],[[1,2,2,0],[2,0,3,1],[3,2,2,1],[1,2,1,1]],[[1,2,2,0],[2,0,4,1],[2,2,2,1],[1,2,1,1]],[[1,2,2,0],[3,0,3,1],[2,2,2,1],[1,2,1,1]],[[1,2,3,0],[2,0,3,1],[2,2,2,1],[1,2,1,1]],[[1,3,2,0],[2,0,3,1],[2,2,2,1],[1,2,1,1]],[[2,2,2,0],[2,0,3,1],[2,2,2,1],[1,2,1,1]],[[1,2,2,0],[2,0,3,1],[2,2,1,2],[1,2,3,0]],[[1,2,2,0],[2,0,3,1],[2,2,1,2],[1,3,2,0]],[[1,2,2,0],[2,0,3,1],[2,2,1,2],[2,2,2,0]],[[1,2,2,0],[2,0,3,1],[3,2,1,2],[1,2,2,0]],[[1,2,2,0],[2,0,4,1],[2,2,1,2],[1,2,2,0]],[[1,2,2,0],[3,0,3,1],[2,2,1,2],[1,2,2,0]],[[1,2,3,0],[2,0,3,1],[2,2,1,2],[1,2,2,0]],[[1,3,2,0],[2,0,3,1],[2,2,1,2],[1,2,2,0]],[[2,2,2,0],[2,0,3,1],[2,2,1,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,1],[2,2,1,1],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[2,2,1,1],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[2,2,1,1],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[2,2,1,1],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[3,2,1,1],[1,2,2,1]],[[1,2,2,0],[2,0,4,1],[2,2,1,1],[1,2,2,1]],[[1,2,2,0],[3,0,3,1],[2,2,1,1],[1,2,2,1]],[[1,2,3,0],[2,0,3,1],[2,2,1,1],[1,2,2,1]],[[1,3,2,0],[2,0,3,1],[2,2,1,1],[1,2,2,1]],[[2,2,2,0],[2,0,3,1],[2,2,1,1],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[2,2,0,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[2,2,0,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[2,2,0,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[2,2,0,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[2,2,0,3],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[3,2,0,2],[1,2,2,1]],[[1,2,2,0],[2,0,4,1],[2,2,0,2],[1,2,2,1]],[[1,2,2,0],[3,0,3,1],[2,2,0,2],[1,2,2,1]],[[1,2,3,0],[2,0,3,1],[2,2,0,2],[1,2,2,1]],[[1,3,2,0],[2,0,3,1],[2,2,0,2],[1,2,2,1]],[[2,2,2,0],[2,0,3,1],[2,2,0,2],[1,2,2,1]],[[0,3,2,1],[2,3,1,2],[1,3,3,0],[0,0,2,1]],[[0,2,3,1],[2,3,1,2],[1,3,3,0],[0,0,2,1]],[[0,2,2,2],[2,3,1,2],[1,3,3,0],[0,0,2,1]],[[0,2,2,1],[3,3,1,2],[1,3,3,0],[0,0,2,1]],[[0,2,2,1],[2,4,1,2],[1,3,3,0],[0,0,2,1]],[[0,2,2,1],[2,3,1,3],[1,3,3,0],[0,0,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[1,3,1,0]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[2,2,1,0]],[[1,2,2,0],[2,0,3,1],[2,1,3,3],[1,2,1,0]],[[1,2,2,0],[2,0,3,1],[2,1,4,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,1],[3,1,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,4,1],[2,1,3,2],[1,2,1,0]],[[1,2,2,0],[3,0,3,1],[2,1,3,2],[1,2,1,0]],[[1,2,3,0],[2,0,3,1],[2,1,3,2],[1,2,1,0]],[[1,3,2,0],[2,0,3,1],[2,1,3,2],[1,2,1,0]],[[2,2,2,0],[2,0,3,1],[2,1,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[1,2,0,2]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[1,3,0,1]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[2,2,0,1]],[[1,2,2,0],[2,0,3,1],[2,1,3,3],[1,2,0,1]],[[1,2,2,0],[2,0,3,1],[2,1,4,2],[1,2,0,1]],[[1,2,2,0],[2,0,3,1],[3,1,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,4,1],[2,1,3,2],[1,2,0,1]],[[1,2,2,0],[3,0,3,1],[2,1,3,2],[1,2,0,1]],[[1,2,3,0],[2,0,3,1],[2,1,3,2],[1,2,0,1]],[[1,3,2,0],[2,0,3,1],[2,1,3,2],[1,2,0,1]],[[2,2,2,0],[2,0,3,1],[2,1,3,2],[1,2,0,1]],[[0,3,2,1],[2,3,1,2],[1,3,3,1],[0,0,1,1]],[[0,2,3,1],[2,3,1,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,2],[2,3,1,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,1],[3,3,1,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,1],[2,4,1,2],[1,3,3,1],[0,0,1,1]],[[0,2,2,1],[2,3,1,3],[1,3,3,1],[0,0,1,1]],[[0,3,2,1],[2,3,1,2],[1,3,3,1],[0,0,2,0]],[[0,2,3,1],[2,3,1,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,2],[2,3,1,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,1],[3,3,1,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,1],[2,4,1,2],[1,3,3,1],[0,0,2,0]],[[0,2,2,1],[2,3,1,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[1,1,3,0]],[[0,3,2,1],[2,3,1,2],[1,3,3,1],[0,2,0,0]],[[0,2,3,1],[2,3,1,2],[1,3,3,1],[0,2,0,0]],[[0,2,2,2],[2,3,1,2],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[3,3,1,2],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,4,1,2],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,3,1,3],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,3,1,2],[1,4,3,1],[0,2,0,0]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[2,1,2,0]],[[1,2,2,0],[2,0,3,1],[2,1,3,3],[1,1,2,0]],[[1,2,2,0],[2,0,3,1],[2,1,4,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,1],[3,1,3,2],[1,1,2,0]],[[1,2,2,0],[2,0,4,1],[2,1,3,2],[1,1,2,0]],[[1,2,2,0],[3,0,3,1],[2,1,3,2],[1,1,2,0]],[[1,2,3,0],[2,0,3,1],[2,1,3,2],[1,1,2,0]],[[1,3,2,0],[2,0,3,1],[2,1,3,2],[1,1,2,0]],[[2,2,2,0],[2,0,3,1],[2,1,3,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[1,1,1,2]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[2,1,1,1]],[[1,2,2,0],[2,0,3,1],[2,1,3,3],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[2,1,4,2],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[3,1,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,4,1],[2,1,3,2],[1,1,1,1]],[[1,2,2,0],[3,0,3,1],[2,1,3,2],[1,1,1,1]],[[1,2,3,0],[2,0,3,1],[2,1,3,2],[1,1,1,1]],[[1,3,2,0],[2,0,3,1],[2,1,3,2],[1,1,1,1]],[[2,2,2,0],[2,0,3,1],[2,1,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[0,2,3,0]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[0,3,2,0]],[[1,2,2,0],[2,0,3,1],[2,1,3,3],[0,2,2,0]],[[1,2,2,0],[2,0,3,1],[2,1,4,2],[0,2,2,0]],[[1,2,2,0],[2,0,3,1],[3,1,3,2],[0,2,2,0]],[[1,2,2,0],[2,0,4,1],[2,1,3,2],[0,2,2,0]],[[1,2,2,0],[3,0,3,1],[2,1,3,2],[0,2,2,0]],[[1,2,3,0],[2,0,3,1],[2,1,3,2],[0,2,2,0]],[[1,3,2,0],[2,0,3,1],[2,1,3,2],[0,2,2,0]],[[2,2,2,0],[2,0,3,1],[2,1,3,2],[0,2,2,0]],[[0,3,2,1],[2,3,1,2],[1,3,3,1],[1,1,0,0]],[[0,2,3,1],[2,3,1,2],[1,3,3,1],[1,1,0,0]],[[0,2,2,2],[2,3,1,2],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[3,3,1,2],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,4,1,2],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,3,1,3],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,3,1,2],[1,4,3,1],[1,1,0,0]],[[1,2,2,0],[2,0,3,1],[2,1,3,2],[0,2,1,2]],[[1,2,2,0],[2,0,3,1],[2,1,3,3],[0,2,1,1]],[[1,2,2,0],[2,0,3,1],[2,1,4,2],[0,2,1,1]],[[1,2,2,0],[2,0,3,1],[3,1,3,2],[0,2,1,1]],[[1,2,2,0],[2,0,4,1],[2,1,3,2],[0,2,1,1]],[[1,2,2,0],[3,0,3,1],[2,1,3,2],[0,2,1,1]],[[1,2,3,0],[2,0,3,1],[2,1,3,2],[0,2,1,1]],[[1,3,2,0],[2,0,3,1],[2,1,3,2],[0,2,1,1]],[[2,2,2,0],[2,0,3,1],[2,1,3,2],[0,2,1,1]],[[1,2,2,0],[2,0,3,1],[2,1,3,1],[1,3,1,1]],[[1,2,2,0],[2,0,3,1],[2,1,3,1],[2,2,1,1]],[[1,2,2,0],[2,0,3,1],[2,1,4,1],[1,2,1,1]],[[1,2,2,0],[2,0,3,1],[3,1,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,4,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,0],[3,0,3,1],[2,1,3,1],[1,2,1,1]],[[1,2,3,0],[2,0,3,1],[2,1,3,1],[1,2,1,1]],[[1,3,2,0],[2,0,3,1],[2,1,3,1],[1,2,1,1]],[[2,2,2,0],[2,0,3,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,3,1],[2,1,3,1],[1,1,2,2]],[[1,2,2,0],[2,0,3,1],[2,1,3,1],[1,1,3,1]],[[1,2,2,0],[2,0,3,1],[2,1,3,1],[2,1,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,4,1],[1,1,2,1]],[[1,2,2,0],[2,0,3,1],[3,1,3,1],[1,1,2,1]],[[1,2,2,0],[2,0,4,1],[2,1,3,1],[1,1,2,1]],[[1,2,2,0],[3,0,3,1],[2,1,3,1],[1,1,2,1]],[[1,2,3,0],[2,0,3,1],[2,1,3,1],[1,1,2,1]],[[1,3,2,0],[2,0,3,1],[2,1,3,1],[1,1,2,1]],[[2,2,2,0],[2,0,3,1],[2,1,3,1],[1,1,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,3,1],[0,2,2,2]],[[1,2,2,0],[2,0,3,1],[2,1,3,1],[0,2,3,1]],[[1,2,2,0],[2,0,3,1],[2,1,3,1],[0,3,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,4,1],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[3,1,3,1],[0,2,2,1]],[[1,2,2,0],[2,0,4,1],[2,1,3,1],[0,2,2,1]],[[1,2,2,0],[3,0,3,1],[2,1,3,1],[0,2,2,1]],[[1,2,3,0],[2,0,3,1],[2,1,3,1],[0,2,2,1]],[[1,3,2,0],[2,0,3,1],[2,1,3,1],[0,2,2,1]],[[2,2,2,0],[2,0,3,1],[2,1,3,1],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,2,2],[1,2,3,0]],[[1,2,2,0],[2,0,3,1],[2,1,2,2],[1,3,2,0]],[[1,2,2,0],[2,0,3,1],[2,1,2,2],[2,2,2,0]],[[1,2,2,0],[2,0,3,1],[3,1,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,4,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,0],[3,0,3,1],[2,1,2,2],[1,2,2,0]],[[1,2,3,0],[2,0,3,1],[2,1,2,2],[1,2,2,0]],[[1,3,2,0],[2,0,3,1],[2,1,2,2],[1,2,2,0]],[[2,2,2,0],[2,0,3,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,1],[2,1,2,2],[1,1,2,2]],[[1,2,2,0],[2,0,3,1],[2,1,2,2],[1,1,3,1]],[[1,2,2,0],[2,0,3,1],[2,1,2,3],[1,1,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,2,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,1],[2,1,2,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,1],[2,1,2,2],[0,3,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,2,3],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,2,1],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[2,1,2,1],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[2,1,2,1],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,2,1],[2,2,2,1]],[[0,3,2,1],[2,3,1,2],[1,3,3,2],[0,0,0,1]],[[0,2,3,1],[2,3,1,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,2],[2,3,1,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,1],[3,3,1,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,1],[2,4,1,2],[1,3,3,2],[0,0,0,1]],[[0,2,2,1],[2,3,1,3],[1,3,3,2],[0,0,0,1]],[[0,2,2,1],[2,3,1,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,0],[2,0,3,1],[3,1,2,1],[1,2,2,1]],[[1,2,2,0],[2,0,4,1],[2,1,2,1],[1,2,2,1]],[[1,2,2,0],[3,0,3,1],[2,1,2,1],[1,2,2,1]],[[1,2,3,0],[2,0,3,1],[2,1,2,1],[1,2,2,1]],[[1,3,2,0],[2,0,3,1],[2,1,2,1],[1,2,2,1]],[[2,2,2,0],[2,0,3,1],[2,1,2,1],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,1,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[2,1,1,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[2,1,1,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[2,1,1,3],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[3,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,4,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[3,0,3,1],[2,1,1,2],[1,2,2,1]],[[1,2,3,0],[2,0,3,1],[2,1,1,2],[1,2,2,1]],[[1,3,2,0],[2,0,3,1],[2,1,1,2],[1,2,2,1]],[[2,2,2,0],[2,0,3,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[2,0,3,2],[1,1,2,2]],[[1,2,2,0],[2,0,3,1],[2,0,3,2],[1,1,3,1]],[[1,2,2,0],[2,0,3,1],[2,0,3,3],[1,1,2,1]],[[1,2,2,0],[2,0,3,1],[2,0,3,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,1],[2,0,3,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,1],[2,0,3,3],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[2,0,3,1],[1,3,4,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,1],[1,4,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,4,1],[1,3,3,2],[1,1,1,0]],[[1,2,2,0],[3,0,3,1],[1,3,3,2],[1,1,1,0]],[[1,2,3,0],[2,0,3,1],[1,3,3,2],[1,1,1,0]],[[1,3,2,0],[2,0,3,1],[1,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,0,3,1],[1,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,3,1],[1,3,3,2],[1,1,0,2]],[[1,2,2,0],[2,0,3,1],[1,3,3,3],[1,1,0,1]],[[1,2,2,0],[2,0,3,1],[1,3,4,2],[1,1,0,1]],[[1,2,2,0],[2,0,3,1],[1,4,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,4,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[3,0,3,1],[1,3,3,2],[1,1,0,1]],[[1,2,3,0],[2,0,3,1],[1,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,0,3,1],[1,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,0,3,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,3,1],[1,3,3,2],[1,0,3,0]],[[1,2,2,0],[2,0,3,1],[1,3,3,3],[1,0,2,0]],[[1,2,2,0],[2,0,3,1],[1,3,4,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,1],[1,4,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,4,1],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[3,0,3,1],[1,3,3,2],[1,0,2,0]],[[1,2,3,0],[2,0,3,1],[1,3,3,2],[1,0,2,0]],[[1,3,2,0],[2,0,3,1],[1,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,0,3,1],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,3,1],[1,3,3,2],[1,0,1,2]],[[1,2,2,0],[2,0,3,1],[1,3,3,3],[1,0,1,1]],[[1,2,2,0],[2,0,3,1],[1,3,4,2],[1,0,1,1]],[[1,2,2,0],[2,0,3,1],[1,4,3,2],[1,0,1,1]],[[1,2,2,0],[2,0,4,1],[1,3,3,2],[1,0,1,1]],[[1,2,2,0],[3,0,3,1],[1,3,3,2],[1,0,1,1]],[[1,2,3,0],[2,0,3,1],[1,3,3,2],[1,0,1,1]],[[1,3,2,0],[2,0,3,1],[1,3,3,2],[1,0,1,1]],[[2,2,2,0],[2,0,3,1],[1,3,3,2],[1,0,1,1]],[[1,2,2,0],[2,0,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,0,3,1],[1,3,3,3],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[1,3,4,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[1,4,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,4,1],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[3,0,3,1],[1,3,3,2],[0,2,1,0]],[[1,2,3,0],[2,0,3,1],[1,3,3,2],[0,2,1,0]],[[1,3,2,0],[2,0,3,1],[1,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,0,3,1],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[1,3,3,2],[0,2,0,2]],[[1,2,2,0],[2,0,3,1],[1,3,3,2],[0,3,0,1]],[[1,2,2,0],[2,0,3,1],[1,3,3,3],[0,2,0,1]],[[1,2,2,0],[2,0,3,1],[1,3,4,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,1],[1,4,3,2],[0,2,0,1]],[[1,2,2,0],[2,0,4,1],[1,3,3,2],[0,2,0,1]],[[1,2,2,0],[3,0,3,1],[1,3,3,2],[0,2,0,1]],[[1,2,3,0],[2,0,3,1],[1,3,3,2],[0,2,0,1]],[[1,3,2,0],[2,0,3,1],[1,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,0,3,1],[1,3,3,2],[0,2,0,1]],[[1,2,2,0],[2,0,3,1],[1,3,3,2],[0,1,3,0]],[[1,2,2,0],[2,0,3,1],[1,3,3,3],[0,1,2,0]],[[1,2,2,0],[2,0,3,1],[1,3,4,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,1],[1,4,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,4,1],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[3,0,3,1],[1,3,3,2],[0,1,2,0]],[[1,2,3,0],[2,0,3,1],[1,3,3,2],[0,1,2,0]],[[1,3,2,0],[2,0,3,1],[1,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,0,3,1],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,3,1],[1,3,3,2],[0,1,1,2]],[[1,2,2,0],[2,0,3,1],[1,3,3,3],[0,1,1,1]],[[1,2,2,0],[2,0,3,1],[1,3,4,2],[0,1,1,1]],[[1,2,2,0],[2,0,3,1],[1,4,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,4,1],[1,3,3,2],[0,1,1,1]],[[1,2,2,0],[3,0,3,1],[1,3,3,2],[0,1,1,1]],[[1,2,3,0],[2,0,3,1],[1,3,3,2],[0,1,1,1]],[[1,3,2,0],[2,0,3,1],[1,3,3,2],[0,1,1,1]],[[2,2,2,0],[2,0,3,1],[1,3,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,3,1],[1,3,3,2],[0,0,2,2]],[[1,2,2,0],[2,0,3,1],[1,3,3,3],[0,0,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,4,2],[0,0,2,1]],[[1,2,2,0],[2,0,4,1],[1,3,3,2],[0,0,2,1]],[[1,2,2,0],[3,0,3,1],[1,3,3,2],[0,0,2,1]],[[1,2,3,0],[2,0,3,1],[1,3,3,2],[0,0,2,1]],[[1,3,2,0],[2,0,3,1],[1,3,3,2],[0,0,2,1]],[[2,2,2,0],[2,0,3,1],[1,3,3,2],[0,0,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[1,4,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,4,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,0,3,1],[1,3,3,1],[1,1,1,1]],[[1,2,3,0],[2,0,3,1],[1,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,0,3,1],[1,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,0,3,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[1,3,3,1],[1,0,2,2]],[[1,2,2,0],[2,0,3,1],[1,3,3,1],[1,0,3,1]],[[1,2,2,0],[2,0,3,1],[1,3,4,1],[1,0,2,1]],[[1,2,2,0],[2,0,3,1],[1,4,3,1],[1,0,2,1]],[[1,2,2,0],[2,0,4,1],[1,3,3,1],[1,0,2,1]],[[1,2,2,0],[3,0,3,1],[1,3,3,1],[1,0,2,1]],[[1,2,3,0],[2,0,3,1],[1,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,0,3,1],[1,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,0,3,1],[1,3,3,1],[1,0,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,3,1],[0,3,1,1]],[[1,2,2,0],[2,0,3,1],[1,3,4,1],[0,2,1,1]],[[1,2,2,0],[2,0,3,1],[1,4,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,4,1],[1,3,3,1],[0,2,1,1]],[[1,2,2,0],[3,0,3,1],[1,3,3,1],[0,2,1,1]],[[1,2,3,0],[2,0,3,1],[1,3,3,1],[0,2,1,1]],[[1,3,2,0],[2,0,3,1],[1,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,0,3,1],[1,3,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,3,1],[1,3,3,1],[0,1,2,2]],[[1,2,2,0],[2,0,3,1],[1,3,3,1],[0,1,3,1]],[[1,2,2,0],[2,0,3,1],[1,3,4,1],[0,1,2,1]],[[1,2,2,0],[2,0,3,1],[1,4,3,1],[0,1,2,1]],[[1,2,2,0],[2,0,4,1],[1,3,3,1],[0,1,2,1]],[[1,2,2,0],[3,0,3,1],[1,3,3,1],[0,1,2,1]],[[0,3,2,1],[2,3,1,2],[2,0,1,1],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[2,0,1,1],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[2,0,1,1],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[2,0,1,1],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[2,0,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[2,0,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[3,0,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,1],[2,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,1],[1,3,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,1],[1,2,3,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,1],[1,2,2,2]],[[0,3,2,1],[2,3,1,2],[2,0,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,1,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,1,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[3,3,1,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,4,1,2],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,3],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[3,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,3],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[0,3,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[0,2,3,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[0,2,2,2]],[[0,3,2,1],[2,3,1,2],[2,0,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,3],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[3,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,3],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[2,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[1,1,3,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[1,1,2,2]],[[0,3,2,1],[2,3,1,2],[2,0,1,2],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[2,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,3],[2,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[3,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,3],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[2,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[1,3,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[1,2,1,2]],[[0,3,2,1],[2,3,1,2],[2,0,1,2],[1,2,2,0]],[[0,2,3,1],[2,3,1,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,2],[2,3,1,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,1],[3,3,1,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,4,1,2],[2,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,3],[2,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[3,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,0,1,3],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[2,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[1,3,2,0]],[[0,2,2,1],[2,3,1,2],[2,0,1,2],[1,2,3,0]],[[0,3,2,1],[2,3,1,2],[2,0,2,0],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[3,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,0],[2,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,0],[1,3,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,0],[1,2,3,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,0],[1,2,2,2]],[[0,3,2,1],[2,3,1,2],[2,0,2,1],[1,2,2,0]],[[0,2,3,1],[2,3,1,2],[2,0,2,1],[1,2,2,0]],[[0,2,2,2],[2,3,1,2],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[3,3,1,2],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,4,1,2],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,3],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[3,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,0,2,1],[2,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,0,2,1],[1,3,2,0]],[[0,2,2,1],[2,3,1,2],[2,0,2,1],[1,2,3,0]],[[0,3,2,1],[2,3,1,2],[2,0,2,2],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[3,3,1,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,3],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[3,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,3],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,2],[0,2,1,2]],[[0,3,2,1],[2,3,1,2],[2,0,2,2],[0,2,2,0]],[[0,2,3,1],[2,3,1,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,2],[2,3,1,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[3,3,1,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,4,1,2],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,3],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[3,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,0,2,3],[0,2,2,0]],[[0,3,2,1],[2,3,1,2],[2,0,2,2],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[3,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,3],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,2],[2,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,2],[1,1,1,2]],[[0,3,2,1],[2,3,1,2],[2,0,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,1,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,1,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[3,3,1,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,4,1,2],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,3],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[3,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[2,0,2,3],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[2,0,2,2],[2,1,2,0]],[[0,3,2,1],[2,3,1,2],[2,0,2,2],[1,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,3],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,3],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,2],[2,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,2],[1,3,0,1]],[[0,2,2,1],[2,3,1,2],[2,0,2,2],[1,2,0,2]],[[0,3,2,1],[2,3,1,2],[2,0,2,2],[1,2,1,0]],[[0,2,3,1],[2,3,1,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,2],[2,3,1,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,1],[3,3,1,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,1],[2,4,1,2],[2,0,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,3],[2,0,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[3,0,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,0,2,3],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,0,2,2],[2,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,0,2,2],[1,3,1,0]],[[1,2,3,0],[2,0,3,1],[1,3,3,1],[0,1,2,1]],[[1,3,2,0],[2,0,3,1],[1,3,3,1],[0,1,2,1]],[[2,2,2,0],[2,0,3,1],[1,3,3,1],[0,1,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,3,0],[0,2,3,1]],[[1,2,2,0],[2,0,3,1],[1,3,3,0],[0,3,2,1]],[[1,2,2,0],[2,0,3,1],[1,4,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,1,2],[2,0,3,0],[0,2,2,1]],[[0,2,3,1],[2,3,1,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,2],[2,3,1,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[3,3,1,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,4,1,2],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,3],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[3,0,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,1,2],[2,0,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,3],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[3,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,0,3,0],[2,1,2,1]],[[0,3,2,1],[2,3,1,2],[2,0,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,3],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[3,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,3,0],[2,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,3,0],[1,3,1,1]],[[0,3,2,1],[2,3,1,2],[2,0,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[3,3,1,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,1,3],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[3,0,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,1,2],[2,0,3,1],[0,2,2,0]],[[0,2,3,1],[2,3,1,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,2],[2,3,1,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[3,3,1,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,4,1,2],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,3],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[3,0,3,1],[0,2,2,0]],[[0,3,2,1],[2,3,1,2],[2,0,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[3,0,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,0,3,1],[2,1,1,1]],[[0,3,2,1],[2,3,1,2],[2,0,3,1],[1,1,2,0]],[[0,2,3,1],[2,3,1,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,2],[2,3,1,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[3,3,1,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,4,1,2],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,3],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[3,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[2,0,3,1],[2,1,2,0]],[[0,3,2,1],[2,3,1,2],[2,0,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,3],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,0,3,1],[2,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,0,3,1],[1,3,0,1]],[[0,3,2,1],[2,3,1,2],[2,0,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,1,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,2],[2,3,1,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[3,3,1,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,4,1,2],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,3],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[3,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,0,3,1],[2,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,0,3,1],[1,3,1,0]],[[1,2,2,0],[2,0,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,0],[2,0,3,1],[1,3,2,2],[2,2,1,0]],[[1,2,2,0],[2,0,3,1],[1,4,2,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,1],[1,3,2,2],[1,3,0,1]],[[1,2,2,0],[2,0,3,1],[1,3,2,2],[2,2,0,1]],[[1,2,2,0],[2,0,3,1],[1,4,2,2],[1,2,0,1]],[[1,2,2,0],[2,0,3,1],[1,3,2,2],[1,0,2,2]],[[1,2,2,0],[2,0,3,1],[1,3,2,2],[1,0,3,1]],[[1,2,2,0],[2,0,3,1],[1,3,2,3],[1,0,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,2,2],[0,2,3,0]],[[1,2,2,0],[2,0,3,1],[1,3,2,2],[0,3,2,0]],[[1,2,2,0],[2,0,3,1],[1,4,2,2],[0,2,2,0]],[[1,2,2,0],[2,0,3,1],[1,3,2,2],[0,1,2,2]],[[1,2,2,0],[2,0,3,1],[1,3,2,2],[0,1,3,1]],[[1,2,2,0],[2,0,3,1],[1,3,2,3],[0,1,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,2,1],[1,3,1,1]],[[1,2,2,0],[2,0,3,1],[1,3,2,1],[2,2,1,1]],[[1,2,2,0],[2,0,3,1],[1,4,2,1],[1,2,1,1]],[[1,2,2,0],[2,0,3,1],[1,3,2,1],[0,2,2,2]],[[1,2,2,0],[2,0,3,1],[1,3,2,1],[0,2,3,1]],[[1,2,2,0],[2,0,3,1],[1,3,2,1],[0,3,2,1]],[[1,2,2,0],[2,0,3,1],[1,4,2,1],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,1,2],[1,2,3,0]],[[1,2,2,0],[2,0,3,1],[1,3,1,2],[1,3,2,0]],[[1,2,2,0],[2,0,3,1],[1,3,1,2],[2,2,2,0]],[[1,2,2,0],[2,0,3,1],[1,4,1,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,1],[1,3,1,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,1],[1,3,1,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,1],[1,3,1,2],[0,3,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,1,3],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,4,1,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,1,1],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[1,3,1,1],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[1,3,1,1],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,1,1],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,4,1,1],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,0,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[1,3,0,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[1,3,0,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,0,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,3,0,3],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,4,0,2],[1,2,2,1]],[[0,3,2,1],[2,3,1,2],[2,1,0,1],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[2,1,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[2,1,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[3,1,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,1],[2,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,1],[1,3,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,1],[1,2,3,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,1],[1,2,2,2]],[[0,3,2,1],[2,3,1,2],[2,1,0,2],[0,2,2,1]],[[0,2,3,1],[2,3,1,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,2],[2,3,1,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,1],[3,3,1,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,1],[2,4,1,2],[2,1,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,3],[2,1,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[3,1,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,3],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[0,3,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[0,2,3,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[0,2,2,2]],[[0,3,2,1],[2,3,1,2],[2,1,0,2],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[2,1,0,2],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[2,1,0,2],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[2,1,0,2],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[2,1,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,3],[2,1,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[3,1,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,3],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[2,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[1,1,3,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[1,1,2,2]],[[0,3,2,1],[2,3,1,2],[2,1,0,2],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[2,1,0,2],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[2,1,0,2],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[2,1,0,2],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[2,1,0,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,3],[2,1,0,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[3,1,0,2],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,3],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[2,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[1,3,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[1,2,1,2]],[[0,3,2,1],[2,3,1,2],[2,1,0,2],[1,2,2,0]],[[0,2,3,1],[2,3,1,2],[2,1,0,2],[1,2,2,0]],[[0,2,2,2],[2,3,1,2],[2,1,0,2],[1,2,2,0]],[[0,2,2,1],[3,3,1,2],[2,1,0,2],[1,2,2,0]],[[0,2,2,1],[2,4,1,2],[2,1,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,3],[2,1,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[3,1,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,1,0,3],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[2,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[1,3,2,0]],[[0,2,2,1],[2,3,1,2],[2,1,0,2],[1,2,3,0]],[[0,3,2,1],[2,3,1,2],[2,1,1,0],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,3],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[3,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,0],[2,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,0],[1,3,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,0],[1,2,3,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,0],[1,2,2,2]],[[0,3,2,1],[2,3,1,2],[2,1,1,1],[1,2,2,0]],[[0,2,3,1],[2,3,1,2],[2,1,1,1],[1,2,2,0]],[[0,2,2,2],[2,3,1,2],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[3,3,1,2],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,4,1,2],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,3],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[3,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,1,1,1],[2,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,1,1,1],[1,3,2,0]],[[0,2,2,1],[2,3,1,2],[2,1,1,1],[1,2,3,0]],[[0,3,2,1],[2,3,1,2],[2,1,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,1,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,1,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[3,3,1,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,4,1,2],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,3],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[3,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,3],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,2],[0,1,3,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,2],[0,1,2,2]],[[0,3,2,1],[2,3,1,2],[2,1,1,2],[1,0,2,1]],[[0,2,3,1],[2,3,1,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,2],[2,3,1,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[3,3,1,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,4,1,2],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,3],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[3,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,3],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,2],[2,0,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,2],[1,0,3,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,2],[1,0,2,2]],[[0,3,2,1],[2,3,1,2],[2,1,1,2],[1,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,1,1,2],[1,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,1,1,2],[1,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,1,1,2],[1,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,1,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,3],[2,1,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,1,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,3],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,2],[2,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,2],[1,3,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,1,2],[1,2,0,2]],[[0,3,2,1],[2,3,1,2],[2,1,1,2],[1,2,1,0]],[[0,2,3,1],[2,3,1,2],[2,1,1,2],[1,2,1,0]],[[0,2,2,2],[2,3,1,2],[2,1,1,2],[1,2,1,0]],[[0,2,2,1],[3,3,1,2],[2,1,1,2],[1,2,1,0]],[[0,2,2,1],[2,4,1,2],[2,1,1,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,3],[2,1,1,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[3,1,1,2],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,1,1,3],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,1,1,2],[2,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,1,1,2],[1,3,1,0]],[[0,3,2,1],[2,3,1,2],[2,1,2,0],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[2,1,2,0],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,3],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[3,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,0],[2,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,0],[1,3,1,1]],[[0,3,2,1],[2,3,1,2],[2,1,2,1],[1,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,1,2,1],[1,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,3],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,1],[2,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,1],[1,3,0,1]],[[0,3,2,1],[2,3,1,2],[2,1,2,1],[1,2,1,0]],[[0,2,3,1],[2,3,1,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,2],[2,3,1,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[3,3,1,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,4,1,2],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,3],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[3,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,1,2,1],[2,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,1,2,1],[1,3,1,0]],[[1,2,2,0],[2,0,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[2,0,3,1],[1,2,3,2],[0,3,2,0]],[[0,3,2,1],[2,3,1,2],[2,1,2,2],[0,0,2,1]],[[0,2,3,1],[2,3,1,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,2],[2,3,1,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,1],[3,3,1,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,4,1,2],[2,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,1,3],[2,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,3],[0,0,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,2],[0,0,2,2]],[[0,3,2,1],[2,3,1,2],[2,1,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,1,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,1,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[3,3,1,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,4,1,2],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,3],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[3,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,3],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,2],[0,1,1,2]],[[0,3,2,1],[2,3,1,2],[2,1,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,1,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,1,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[3,3,1,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,4,1,2],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,3],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,2],[3,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,2],[2,1,2,3],[0,1,2,0]],[[0,3,2,1],[2,3,1,2],[2,1,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,3],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,3],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,2],[0,2,0,2]],[[0,3,2,1],[2,3,1,2],[2,1,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,1],[3,3,1,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[2,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,3],[2,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[3,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,1,2,3],[0,2,1,0]],[[1,2,2,0],[2,0,3,1],[1,2,3,3],[0,2,2,0]],[[1,2,2,0],[2,0,3,1],[1,2,4,2],[0,2,2,0]],[[1,2,2,0],[2,0,4,1],[1,2,3,2],[0,2,2,0]],[[1,2,2,0],[3,0,3,1],[1,2,3,2],[0,2,2,0]],[[1,2,3,0],[2,0,3,1],[1,2,3,2],[0,2,2,0]],[[1,3,2,0],[2,0,3,1],[1,2,3,2],[0,2,2,0]],[[2,2,2,0],[2,0,3,1],[1,2,3,2],[0,2,2,0]],[[1,2,2,0],[2,0,3,1],[1,2,3,2],[0,2,1,2]],[[1,2,2,0],[2,0,3,1],[1,2,3,3],[0,2,1,1]],[[1,2,2,0],[2,0,3,1],[1,2,4,2],[0,2,1,1]],[[1,2,2,0],[2,0,4,1],[1,2,3,2],[0,2,1,1]],[[0,3,2,1],[2,3,1,2],[2,1,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,1,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,1,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[3,3,1,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,4,1,2],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,3],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[3,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,3],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,2],[2,0,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,2],[1,0,1,2]],[[0,3,2,1],[2,3,1,2],[2,1,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,1,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,1,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[3,3,1,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,4,1,2],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,3],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[3,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[2,1,2,3],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[2,1,2,2],[2,0,2,0]],[[0,3,2,1],[2,3,1,2],[2,1,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,1,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,1,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[3,3,1,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,4,1,2],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,3],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[3,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,3],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,2],[2,1,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,2,2],[1,1,0,2]],[[0,3,2,1],[2,3,1,2],[2,1,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,1,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,1,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,1],[3,3,1,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,4,1,2],[2,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,3],[2,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[3,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[2,1,2,3],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[2,1,2,2],[2,1,1,0]],[[1,2,2,0],[3,0,3,1],[1,2,3,2],[0,2,1,1]],[[1,2,3,0],[2,0,3,1],[1,2,3,2],[0,2,1,1]],[[1,3,2,0],[2,0,3,1],[1,2,3,2],[0,2,1,1]],[[2,2,2,0],[2,0,3,1],[1,2,3,2],[0,2,1,1]],[[1,2,2,0],[2,0,3,1],[1,2,3,1],[0,2,2,2]],[[1,2,2,0],[2,0,3,1],[1,2,3,1],[0,2,3,1]],[[1,2,2,0],[2,0,3,1],[1,2,3,1],[0,3,2,1]],[[1,2,2,0],[2,0,3,1],[1,2,4,1],[0,2,2,1]],[[1,2,2,0],[2,0,4,1],[1,2,3,1],[0,2,2,1]],[[1,2,2,0],[3,0,3,1],[1,2,3,1],[0,2,2,1]],[[1,2,3,0],[2,0,3,1],[1,2,3,1],[0,2,2,1]],[[1,3,2,0],[2,0,3,1],[1,2,3,1],[0,2,2,1]],[[2,2,2,0],[2,0,3,1],[1,2,3,1],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,2,2,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,1],[1,2,2,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,1],[1,2,2,2],[0,3,2,1]],[[1,2,2,0],[2,0,3,1],[1,2,2,3],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,1,3,2],[1,2,3,0]],[[1,2,2,0],[2,0,3,1],[1,1,3,2],[1,3,2,0]],[[0,3,2,1],[2,3,1,2],[2,1,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,1,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,1,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[3,3,1,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,1,2],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,3],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[3,1,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,1,2],[2,1,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[3,3,1,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,3],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[3,1,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,1,2],[2,1,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,1,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,1,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[3,3,1,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,4,1,2],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,3],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[3,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[2,1,3,0],[2,0,2,1]],[[0,3,2,1],[2,3,1,2],[2,1,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[2,1,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[3,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,3,0],[2,1,1,1]],[[1,2,2,0],[2,0,3,1],[1,1,3,2],[2,2,2,0]],[[1,2,2,0],[2,0,3,1],[1,1,3,3],[1,2,2,0]],[[1,2,2,0],[2,0,3,1],[1,1,4,2],[1,2,2,0]],[[1,2,2,0],[2,0,4,1],[1,1,3,2],[1,2,2,0]],[[1,2,2,0],[3,0,3,1],[1,1,3,2],[1,2,2,0]],[[1,2,3,0],[2,0,3,1],[1,1,3,2],[1,2,2,0]],[[1,3,2,0],[2,0,3,1],[1,1,3,2],[1,2,2,0]],[[2,2,2,0],[2,0,3,1],[1,1,3,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,1],[1,1,3,2],[1,2,1,2]],[[1,2,2,0],[2,0,3,1],[1,1,3,3],[1,2,1,1]],[[1,2,2,0],[2,0,3,1],[1,1,4,2],[1,2,1,1]],[[1,2,2,0],[2,0,4,1],[1,1,3,2],[1,2,1,1]],[[0,3,2,1],[2,3,1,2],[2,1,3,1],[0,0,2,1]],[[0,2,3,1],[2,3,1,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,2],[2,3,1,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,1],[3,3,1,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,1],[2,4,1,2],[2,1,3,1],[0,0,2,1]],[[0,2,2,1],[2,3,1,3],[2,1,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,1,2],[2,1,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,1,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,1,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[3,3,1,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,1,2],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,1,3],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[3,1,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,1,2],[2,1,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,1,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,1,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[3,3,1,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,1,2],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,3],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,2],[3,1,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,1,2],[2,1,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,3],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,1,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,1,2],[2,1,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[3,3,1,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,3],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[3,1,3,1],[0,2,1,0]],[[1,2,2,0],[3,0,3,1],[1,1,3,2],[1,2,1,1]],[[1,2,3,0],[2,0,3,1],[1,1,3,2],[1,2,1,1]],[[1,3,2,0],[2,0,3,1],[1,1,3,2],[1,2,1,1]],[[2,2,2,0],[2,0,3,1],[1,1,3,2],[1,2,1,1]],[[1,2,2,0],[2,0,3,1],[1,1,3,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,1],[1,1,3,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,1],[1,1,3,3],[0,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,1,3,1],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[1,1,3,1],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[1,1,3,1],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[1,1,3,1],[2,2,2,1]],[[0,3,2,1],[2,3,1,2],[2,1,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,1,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,1,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[3,3,1,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,4,1,2],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,3],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[3,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[2,1,3,1],[2,0,1,1]],[[0,3,2,1],[2,3,1,2],[2,1,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,1,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,1,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[3,3,1,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,4,1,2],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,3],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[3,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[2,1,3,1],[2,0,2,0]],[[0,3,2,1],[2,3,1,2],[2,1,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,1,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,1,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[3,3,1,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,4,1,2],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,3],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[3,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,3,1],[2,1,0,1]],[[0,3,2,1],[2,3,1,2],[2,1,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,1,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,1,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[3,3,1,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,4,1,2],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,3],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[3,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[2,1,3,1],[2,1,1,0]],[[1,2,2,0],[2,0,3,1],[1,1,4,1],[1,2,2,1]],[[1,2,2,0],[2,0,4,1],[1,1,3,1],[1,2,2,1]],[[1,2,2,0],[3,0,3,1],[1,1,3,1],[1,2,2,1]],[[1,2,3,0],[2,0,3,1],[1,1,3,1],[1,2,2,1]],[[1,3,2,0],[2,0,3,1],[1,1,3,1],[1,2,2,1]],[[2,2,2,0],[2,0,3,1],[1,1,3,1],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,1,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[1,1,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[1,1,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[1,1,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,1,2,3],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[1,0,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[1,0,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[1,0,3,3],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,0,3,1],[0,3,3,2],[2,2,1,0]],[[1,2,2,0],[2,0,3,1],[0,3,3,3],[1,2,1,0]],[[1,2,2,0],[2,0,3,1],[0,3,4,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,1],[0,4,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,4,1],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[3,0,3,1],[0,3,3,2],[1,2,1,0]],[[0,3,2,1],[2,3,1,2],[2,1,3,2],[0,1,0,1]],[[0,2,3,1],[2,3,1,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,2],[2,3,1,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[3,3,1,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,4,1,2],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,1,3],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,3,3],[0,1,0,1]],[[1,2,3,0],[2,0,3,1],[0,3,3,2],[1,2,1,0]],[[1,3,2,0],[2,0,3,1],[0,3,3,2],[1,2,1,0]],[[2,2,2,0],[2,0,3,1],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,3,1],[0,3,3,2],[1,2,0,2]],[[1,2,2,0],[2,0,3,1],[0,3,3,2],[1,3,0,1]],[[1,2,2,0],[2,0,3,1],[0,3,3,2],[2,2,0,1]],[[1,2,2,0],[2,0,3,1],[0,3,3,3],[1,2,0,1]],[[1,2,2,0],[2,0,3,1],[0,3,4,2],[1,2,0,1]],[[1,2,2,0],[2,0,3,1],[0,4,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,4,1],[0,3,3,2],[1,2,0,1]],[[1,2,2,0],[3,0,3,1],[0,3,3,2],[1,2,0,1]],[[1,2,3,0],[2,0,3,1],[0,3,3,2],[1,2,0,1]],[[1,3,2,0],[2,0,3,1],[0,3,3,2],[1,2,0,1]],[[2,2,2,0],[2,0,3,1],[0,3,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,3,1],[0,3,3,2],[1,1,3,0]],[[1,2,2,0],[2,0,3,1],[0,3,3,3],[1,1,2,0]],[[1,2,2,0],[2,0,3,1],[0,3,4,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,1],[0,4,3,2],[1,1,2,0]],[[1,2,2,0],[2,0,4,1],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[3,0,3,1],[0,3,3,2],[1,1,2,0]],[[1,2,3,0],[2,0,3,1],[0,3,3,2],[1,1,2,0]],[[1,3,2,0],[2,0,3,1],[0,3,3,2],[1,1,2,0]],[[2,2,2,0],[2,0,3,1],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[2,0,3,1],[0,3,3,2],[1,1,1,2]],[[1,2,2,0],[2,0,3,1],[0,3,3,3],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[0,3,4,2],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[0,4,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,4,1],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[3,0,3,1],[0,3,3,2],[1,1,1,1]],[[1,2,3,0],[2,0,3,1],[0,3,3,2],[1,1,1,1]],[[1,3,2,0],[2,0,3,1],[0,3,3,2],[1,1,1,1]],[[2,2,2,0],[2,0,3,1],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,3,1],[0,3,3,2],[1,0,2,2]],[[1,2,2,0],[2,0,3,1],[0,3,3,3],[1,0,2,1]],[[0,3,2,1],[2,3,1,2],[2,1,3,2],[1,0,0,1]],[[0,2,3,1],[2,3,1,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,2],[2,3,1,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[3,3,1,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,4,1,2],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,1,3],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,1,2],[3,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,1,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,0],[2,0,3,1],[0,3,4,2],[1,0,2,1]],[[1,2,2,0],[2,0,4,1],[0,3,3,2],[1,0,2,1]],[[1,2,3,0],[2,0,3,1],[0,3,3,2],[1,0,2,1]],[[1,3,2,0],[2,0,3,1],[0,3,3,2],[1,0,2,1]],[[2,2,2,0],[2,0,3,1],[0,3,3,2],[1,0,2,1]],[[1,2,2,0],[2,0,3,1],[0,3,3,1],[1,3,1,1]],[[1,2,2,0],[2,0,3,1],[0,3,3,1],[2,2,1,1]],[[1,2,2,0],[2,0,3,1],[0,3,4,1],[1,2,1,1]],[[1,2,2,0],[2,0,3,1],[0,4,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,4,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,0],[3,0,3,1],[0,3,3,1],[1,2,1,1]],[[1,2,3,0],[2,0,3,1],[0,3,3,1],[1,2,1,1]],[[1,3,2,0],[2,0,3,1],[0,3,3,1],[1,2,1,1]],[[2,2,2,0],[2,0,3,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,3,1],[0,3,3,1],[1,1,2,2]],[[1,2,2,0],[2,0,3,1],[0,3,3,1],[1,1,3,1]],[[1,2,2,0],[2,0,3,1],[0,3,4,1],[1,1,2,1]],[[1,2,2,0],[2,0,3,1],[0,4,3,1],[1,1,2,1]],[[1,2,2,0],[2,0,4,1],[0,3,3,1],[1,1,2,1]],[[1,2,2,0],[3,0,3,1],[0,3,3,1],[1,1,2,1]],[[1,2,3,0],[2,0,3,1],[0,3,3,1],[1,1,2,1]],[[1,3,2,0],[2,0,3,1],[0,3,3,1],[1,1,2,1]],[[2,2,2,0],[2,0,3,1],[0,3,3,1],[1,1,2,1]],[[1,2,2,0],[2,0,3,1],[0,3,3,0],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[0,3,3,0],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[0,3,3,0],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[0,4,3,0],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[0,3,2,2],[1,2,3,0]],[[1,2,2,0],[2,0,3,1],[0,3,2,2],[1,3,2,0]],[[1,2,2,0],[2,0,3,1],[0,3,2,2],[2,2,2,0]],[[1,2,2,0],[2,0,3,1],[0,4,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,1],[0,3,2,2],[1,1,2,2]],[[1,2,2,0],[2,0,3,1],[0,3,2,2],[1,1,3,1]],[[1,2,2,0],[2,0,3,1],[0,3,2,3],[1,1,2,1]],[[1,2,2,0],[2,0,3,1],[0,3,2,1],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[0,3,2,1],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[0,3,2,1],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[0,3,2,1],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[0,4,2,1],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[0,3,1,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[0,3,1,2],[1,2,3,1]],[[0,0,0,1],[0,1,3,2],[2,3,3,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[0,3,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[0,3,1,3],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[0,4,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[0,2,3,2],[1,2,3,0]],[[1,2,2,0],[2,0,3,1],[0,2,3,2],[1,3,2,0]],[[1,2,2,0],[2,0,3,1],[0,2,3,2],[2,2,2,0]],[[1,2,2,0],[2,0,3,1],[0,2,3,3],[1,2,2,0]],[[1,2,2,0],[2,0,3,1],[0,2,4,2],[1,2,2,0]],[[1,2,2,0],[2,0,4,1],[0,2,3,2],[1,2,2,0]],[[1,2,2,0],[3,0,3,1],[0,2,3,2],[1,2,2,0]],[[1,2,3,0],[2,0,3,1],[0,2,3,2],[1,2,2,0]],[[1,3,2,0],[2,0,3,1],[0,2,3,2],[1,2,2,0]],[[2,2,2,0],[2,0,3,1],[0,2,3,2],[1,2,2,0]],[[1,2,2,0],[2,0,3,1],[0,2,3,2],[1,2,1,2]],[[1,2,2,0],[2,0,3,1],[0,2,3,3],[1,2,1,1]],[[1,2,2,0],[2,0,3,1],[0,2,4,2],[1,2,1,1]],[[1,2,2,0],[2,0,4,1],[0,2,3,2],[1,2,1,1]],[[1,2,2,0],[3,0,3,1],[0,2,3,2],[1,2,1,1]],[[1,2,3,0],[2,0,3,1],[0,2,3,2],[1,2,1,1]],[[1,3,2,0],[2,0,3,1],[0,2,3,2],[1,2,1,1]],[[2,2,2,0],[2,0,3,1],[0,2,3,2],[1,2,1,1]],[[1,2,2,0],[2,0,3,1],[0,2,3,1],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[0,2,3,1],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[0,2,3,1],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[0,2,3,1],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[0,2,4,1],[1,2,2,1]],[[1,2,2,0],[2,0,4,1],[0,2,3,1],[1,2,2,1]],[[1,2,2,0],[3,0,3,1],[0,2,3,1],[1,2,2,1]],[[1,2,3,0],[2,0,3,1],[0,2,3,1],[1,2,2,1]],[[1,3,2,0],[2,0,3,1],[0,2,3,1],[1,2,2,1]],[[2,2,2,0],[2,0,3,1],[0,2,3,1],[1,2,2,1]],[[1,2,2,0],[2,0,3,1],[0,2,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[0,2,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[0,2,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,1],[0,2,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,1],[0,2,2,3],[1,2,2,1]],[[0,3,2,1],[2,3,1,2],[2,2,0,0],[1,2,2,1]],[[0,2,3,1],[2,3,1,2],[2,2,0,0],[1,2,2,1]],[[0,2,2,2],[2,3,1,2],[2,2,0,0],[1,2,2,1]],[[0,2,2,1],[3,3,1,2],[2,2,0,0],[1,2,2,1]],[[0,2,2,1],[2,4,1,2],[2,2,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[3,2,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,0],[2,2,2,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,0],[1,3,2,1]],[[0,3,2,1],[2,3,1,2],[2,2,0,1],[0,2,2,1]],[[0,2,3,1],[2,3,1,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,2],[2,3,1,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,1],[3,3,1,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,1],[2,4,1,2],[2,2,0,1],[0,2,2,1]],[[0,2,2,1],[2,3,1,3],[2,2,0,1],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[3,2,0,1],[0,2,2,1]],[[0,3,2,1],[2,3,1,2],[2,2,0,1],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[2,2,0,1],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[2,2,0,1],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[2,2,0,1],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[2,2,0,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,3],[2,2,0,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[3,2,0,1],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,1],[2,1,2,1]],[[0,3,2,1],[2,3,1,2],[2,2,0,1],[1,2,2,0]],[[0,2,3,1],[2,3,1,2],[2,2,0,1],[1,2,2,0]],[[0,2,2,2],[2,3,1,2],[2,2,0,1],[1,2,2,0]],[[0,2,2,1],[3,3,1,2],[2,2,0,1],[1,2,2,0]],[[0,2,2,1],[2,4,1,2],[2,2,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[3,2,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,2,0,1],[2,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,2,0,1],[1,3,2,0]],[[0,3,2,1],[2,3,1,2],[2,2,0,2],[0,1,2,1]],[[0,2,3,1],[2,3,1,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,2],[2,3,1,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,1],[3,3,1,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,1],[2,4,1,2],[2,2,0,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,3],[2,2,0,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[3,2,0,2],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,3],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,2],[0,1,3,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,2],[0,1,2,2]],[[0,3,2,1],[2,3,1,2],[2,2,0,2],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[2,2,0,2],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[2,2,0,2],[0,2,1,1]],[[0,2,2,1],[3,3,1,2],[2,2,0,2],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[2,2,0,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,3],[2,2,0,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[3,2,0,2],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,3],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,2],[0,2,1,2]],[[0,3,2,1],[2,3,1,2],[2,2,0,2],[0,2,2,0]],[[0,2,3,1],[2,3,1,2],[2,2,0,2],[0,2,2,0]],[[0,2,2,2],[2,3,1,2],[2,2,0,2],[0,2,2,0]],[[0,2,2,1],[3,3,1,2],[2,2,0,2],[0,2,2,0]],[[0,2,2,1],[2,4,1,2],[2,2,0,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,3],[2,2,0,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[3,2,0,2],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[2,2,0,3],[0,2,2,0]],[[0,3,2,1],[2,3,1,2],[2,2,0,2],[1,0,2,1]],[[0,2,3,1],[2,3,1,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,2],[2,3,1,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,1],[3,3,1,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,1],[2,4,1,2],[2,2,0,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,3],[2,2,0,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[3,2,0,2],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,3],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,2],[2,0,2,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,2],[1,0,3,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,2],[1,0,2,2]],[[0,3,2,1],[2,3,1,2],[2,2,0,2],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[2,2,0,2],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[2,2,0,2],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[2,2,0,2],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[2,2,0,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[2,2,0,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[3,2,0,2],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,3],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,2],[2,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,0,2],[1,1,1,2]],[[0,3,2,1],[2,3,1,2],[2,2,0,2],[1,1,2,0]],[[0,2,3,1],[2,3,1,2],[2,2,0,2],[1,1,2,0]],[[0,2,2,2],[2,3,1,2],[2,2,0,2],[1,1,2,0]],[[0,2,2,1],[3,3,1,2],[2,2,0,2],[1,1,2,0]],[[0,2,2,1],[2,4,1,2],[2,2,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,3],[2,2,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[3,2,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[2,2,0,3],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[2,2,0,2],[2,1,2,0]],[[1,2,2,0],[2,0,3,1],[0,1,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,1],[0,1,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,1],[0,1,3,3],[1,2,2,1]],[[0,3,2,1],[2,3,1,2],[2,2,1,0],[0,2,2,1]],[[0,2,3,1],[2,3,1,2],[2,2,1,0],[0,2,2,1]],[[0,2,2,2],[2,3,1,2],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[3,3,1,2],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[2,4,1,2],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,3],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[3,2,1,0],[0,2,2,1]],[[0,3,2,1],[2,3,1,2],[2,2,1,0],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[2,2,1,0],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,3],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[3,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,2,1,0],[2,1,2,1]],[[0,3,2,1],[2,3,1,2],[2,2,1,1],[0,2,2,0]],[[0,2,3,1],[2,3,1,2],[2,2,1,1],[0,2,2,0]],[[0,2,2,2],[2,3,1,2],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[3,3,1,2],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[2,4,1,2],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,3],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[3,2,1,1],[0,2,2,0]],[[0,3,2,1],[2,3,1,2],[2,2,1,1],[1,1,2,0]],[[0,2,3,1],[2,3,1,2],[2,2,1,1],[1,1,2,0]],[[0,2,2,2],[2,3,1,2],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[3,3,1,2],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,4,1,2],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,3],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[3,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[2,2,1,1],[2,1,2,0]],[[0,3,2,1],[2,3,1,2],[2,2,1,2],[0,1,1,1]],[[0,2,3,1],[2,3,1,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,2],[2,3,1,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,1],[3,3,1,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,1],[2,4,1,2],[2,2,1,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,3],[2,2,1,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[3,2,1,2],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,1,3],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,1,2],[0,1,1,2]],[[0,3,2,1],[2,3,1,2],[2,2,1,2],[0,1,2,0]],[[0,2,3,1],[2,3,1,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,2],[2,3,1,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,1],[3,3,1,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,1],[2,4,1,2],[2,2,1,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,3],[2,2,1,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,2],[3,2,1,2],[0,1,2,0]],[[0,2,2,1],[2,3,1,2],[2,2,1,3],[0,1,2,0]],[[0,3,2,1],[2,3,1,2],[2,2,1,2],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,2,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,3],[2,2,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,2,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,2,1,3],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,2,1,2],[0,2,0,2]],[[0,3,2,1],[2,3,1,2],[2,2,1,2],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,1],[3,3,1,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[2,2,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,3],[2,2,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[3,2,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,2,1,3],[0,2,1,0]],[[0,3,2,1],[2,3,1,2],[2,2,1,2],[1,0,1,1]],[[0,2,3,1],[2,3,1,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,2],[2,3,1,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,1],[3,3,1,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,1],[2,4,1,2],[2,2,1,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,3],[2,2,1,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[3,2,1,2],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,1,3],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,1,2],[2,0,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,1,2],[1,0,1,2]],[[0,3,2,1],[2,3,1,2],[2,2,1,2],[1,0,2,0]],[[0,2,3,1],[2,3,1,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,2],[2,3,1,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,1],[3,3,1,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,1],[2,4,1,2],[2,2,1,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,3],[2,2,1,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[3,2,1,2],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[2,2,1,3],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[2,2,1,2],[2,0,2,0]],[[0,3,2,1],[2,3,1,2],[2,2,1,2],[1,1,0,1]],[[0,2,3,1],[2,3,1,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,2],[2,3,1,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,1],[3,3,1,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,1],[2,4,1,2],[2,2,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,3],[2,2,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[3,2,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[2,2,1,3],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[2,2,1,2],[2,1,0,1]],[[0,2,2,1],[2,3,1,2],[2,2,1,2],[1,1,0,2]],[[0,3,2,1],[2,3,1,2],[2,2,1,2],[1,1,1,0]],[[0,2,3,1],[2,3,1,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,2],[2,3,1,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,1],[3,3,1,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,1],[2,4,1,2],[2,2,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,3],[2,2,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[3,2,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[2,2,1,3],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[2,2,1,2],[2,1,1,0]],[[0,3,2,1],[2,3,1,2],[2,2,1,2],[1,2,0,0]],[[0,2,3,1],[2,3,1,2],[2,2,1,2],[1,2,0,0]],[[0,2,2,2],[2,3,1,2],[2,2,1,2],[1,2,0,0]],[[0,2,2,1],[3,3,1,2],[2,2,1,2],[1,2,0,0]],[[0,2,2,1],[2,4,1,2],[2,2,1,2],[1,2,0,0]],[[0,2,2,1],[2,3,1,3],[2,2,1,2],[1,2,0,0]],[[0,2,2,1],[2,3,1,2],[3,2,1,2],[1,2,0,0]],[[0,2,2,1],[2,3,1,2],[2,2,1,2],[2,2,0,0]],[[1,2,2,0],[2,0,3,0],[2,2,3,2],[1,0,2,2]],[[1,2,2,0],[2,0,3,0],[2,2,3,2],[1,0,3,1]],[[1,2,2,0],[2,0,3,0],[2,2,4,2],[1,0,2,1]],[[0,3,2,1],[2,3,1,2],[2,2,2,0],[0,1,2,1]],[[0,2,3,1],[2,3,1,2],[2,2,2,0],[0,1,2,1]],[[0,2,2,2],[2,3,1,2],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[3,3,1,2],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[2,4,1,2],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,3],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[2,3,1,2],[3,2,2,0],[0,1,2,1]],[[0,3,2,1],[2,3,1,2],[2,2,2,0],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[2,2,2,0],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[3,3,1,2],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,3],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[3,2,2,0],[0,2,1,1]],[[0,3,2,1],[2,3,1,2],[2,2,2,0],[1,0,2,1]],[[0,2,3,1],[2,3,1,2],[2,2,2,0],[1,0,2,1]],[[0,2,2,2],[2,3,1,2],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[3,3,1,2],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,4,1,2],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,3],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[3,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,3,1,2],[2,2,2,0],[2,0,2,1]],[[0,3,2,1],[2,3,1,2],[2,2,2,0],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[2,2,2,0],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,3],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[3,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,2,0],[2,1,1,1]],[[0,3,2,1],[2,3,1,2],[2,2,2,0],[1,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,2,2,0],[1,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,2,2,0],[1,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,2,2,0],[1,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,2,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,2,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,2,2,0],[2,2,0,1]],[[1,2,2,0],[2,0,3,0],[2,2,3,2],[0,1,2,2]],[[1,2,2,0],[2,0,3,0],[2,2,3,2],[0,1,3,1]],[[1,2,2,0],[2,0,3,0],[2,2,4,2],[0,1,2,1]],[[0,3,2,1],[2,3,1,2],[2,2,2,1],[0,1,1,1]],[[0,2,3,1],[2,3,1,2],[2,2,2,1],[0,1,1,1]],[[0,2,2,2],[2,3,1,2],[2,2,2,1],[0,1,1,1]],[[0,2,2,1],[3,3,1,2],[2,2,2,1],[0,1,1,1]],[[0,2,2,1],[2,4,1,2],[2,2,2,1],[0,1,1,1]],[[0,2,2,1],[2,3,1,3],[2,2,2,1],[0,1,1,1]],[[0,2,2,1],[2,3,1,2],[3,2,2,1],[0,1,1,1]],[[0,3,2,1],[2,3,1,2],[2,2,2,1],[0,1,2,0]],[[0,2,3,1],[2,3,1,2],[2,2,2,1],[0,1,2,0]],[[0,2,2,2],[2,3,1,2],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[3,3,1,2],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[2,4,1,2],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,3],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[2,3,1,2],[3,2,2,1],[0,1,2,0]],[[0,3,2,1],[2,3,1,2],[2,2,2,1],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,2,2,1],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,3],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,2,2,1],[0,2,0,1]],[[0,3,2,1],[2,3,1,2],[2,2,2,1],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[2,2,2,1],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[3,3,1,2],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,3],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[3,2,2,1],[0,2,1,0]],[[0,3,2,1],[2,3,1,2],[2,2,2,1],[1,0,1,1]],[[0,2,3,1],[2,3,1,2],[2,2,2,1],[1,0,1,1]],[[0,2,2,2],[2,3,1,2],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[3,3,1,2],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[2,4,1,2],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,3],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[3,2,2,1],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[2,2,2,1],[2,0,1,1]],[[0,3,2,1],[2,3,1,2],[2,2,2,1],[1,0,2,0]],[[0,2,3,1],[2,3,1,2],[2,2,2,1],[1,0,2,0]],[[0,2,2,2],[2,3,1,2],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[3,3,1,2],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,4,1,2],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,3],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[3,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,3,1,2],[2,2,2,1],[2,0,2,0]],[[0,3,2,1],[2,3,1,2],[2,2,2,1],[1,1,0,1]],[[0,2,3,1],[2,3,1,2],[2,2,2,1],[1,1,0,1]],[[0,2,2,2],[2,3,1,2],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[3,3,1,2],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,4,1,2],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,3],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[3,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[2,2,2,1],[2,1,0,1]],[[0,3,2,1],[2,3,1,2],[2,2,2,1],[1,1,1,0]],[[0,2,3,1],[2,3,1,2],[2,2,2,1],[1,1,1,0]],[[0,2,2,2],[2,3,1,2],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[3,3,1,2],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,4,1,2],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,3],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[3,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[2,2,2,1],[2,1,1,0]],[[1,2,2,0],[2,0,3,0],[2,1,3,2],[1,1,2,2]],[[1,2,2,0],[2,0,3,0],[2,1,3,2],[1,1,3,1]],[[1,2,2,0],[2,0,3,0],[2,1,4,2],[1,1,2,1]],[[1,2,2,0],[2,0,3,0],[2,1,3,2],[0,2,2,2]],[[0,3,2,1],[2,3,1,2],[2,2,2,1],[1,2,0,0]],[[0,2,3,1],[2,3,1,2],[2,2,2,1],[1,2,0,0]],[[0,2,2,2],[2,3,1,2],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[3,3,1,2],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,4,1,2],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,3],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,2],[3,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,2],[2,2,2,1],[2,2,0,0]],[[1,2,2,0],[2,0,3,0],[2,1,3,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,0],[2,1,3,2],[0,3,2,1]],[[1,2,2,0],[2,0,3,0],[2,1,4,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,0],[1,3,3,2],[1,0,2,2]],[[1,2,2,0],[2,0,3,0],[1,3,3,2],[1,0,3,1]],[[1,2,2,0],[2,0,3,0],[1,3,4,2],[1,0,2,1]],[[1,2,2,0],[2,0,3,0],[1,4,3,2],[1,0,2,1]],[[1,2,2,0],[2,0,3,0],[1,3,3,2],[0,3,1,1]],[[1,2,2,0],[2,0,3,0],[1,3,4,2],[0,2,1,1]],[[1,2,2,0],[2,0,3,0],[1,4,3,2],[0,2,1,1]],[[1,2,2,0],[2,0,3,0],[1,3,3,2],[0,1,2,2]],[[1,2,2,0],[2,0,3,0],[1,3,3,2],[0,1,3,1]],[[1,2,2,0],[2,0,3,0],[1,3,4,2],[0,1,2,1]],[[1,2,2,0],[2,0,3,0],[1,4,3,2],[0,1,2,1]],[[1,2,2,0],[2,0,3,0],[1,3,2,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,0],[1,3,2,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,0],[1,3,2,2],[0,3,2,1]],[[1,2,2,0],[2,0,3,0],[1,4,2,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,0],[1,2,3,2],[0,2,2,2]],[[1,2,2,0],[2,0,3,0],[1,2,3,2],[0,2,3,1]],[[1,2,2,0],[2,0,3,0],[1,2,3,2],[0,3,2,1]],[[1,2,2,0],[2,0,3,0],[1,2,4,2],[0,2,2,1]],[[1,2,2,0],[2,0,3,0],[1,1,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,0],[1,1,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,0],[1,1,3,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,0],[1,1,3,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,0],[1,1,4,2],[1,2,2,1]],[[1,2,2,0],[2,0,3,0],[0,3,3,2],[1,3,1,1]],[[1,2,2,0],[2,0,3,0],[0,3,3,2],[2,2,1,1]],[[1,2,2,0],[2,0,3,0],[0,3,4,2],[1,2,1,1]],[[1,2,2,0],[2,0,3,0],[0,4,3,2],[1,2,1,1]],[[1,2,2,0],[2,0,3,0],[0,3,3,2],[1,1,2,2]],[[1,2,2,0],[2,0,3,0],[0,3,3,2],[1,1,3,1]],[[1,2,2,0],[2,0,3,0],[0,3,4,2],[1,1,2,1]],[[1,2,2,0],[2,0,3,0],[0,4,3,2],[1,1,2,1]],[[1,2,2,0],[2,0,3,0],[0,3,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,0],[0,3,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,0],[0,3,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,0],[0,3,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,0],[0,4,2,2],[1,2,2,1]],[[1,2,2,0],[2,0,3,0],[0,2,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,3,0],[0,2,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,3,0],[0,2,3,2],[1,3,2,1]],[[1,2,2,0],[2,0,3,0],[0,2,3,2],[2,2,2,1]],[[1,2,2,0],[2,0,3,0],[0,2,4,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[2,0,2,2],[2,4,3,1],[1,2,0,0]],[[1,2,2,0],[2,0,2,2],[3,3,3,1],[1,2,0,0]],[[1,2,2,0],[3,0,2,2],[2,3,3,1],[1,2,0,0]],[[1,2,3,0],[2,0,2,2],[2,3,3,1],[1,2,0,0]],[[1,3,2,0],[2,0,2,2],[2,3,3,1],[1,2,0,0]],[[2,2,2,0],[2,0,2,2],[2,3,3,1],[1,2,0,0]],[[1,2,2,0],[2,0,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,0],[2,0,2,2],[2,3,4,1],[1,1,1,0]],[[1,2,2,0],[2,0,2,2],[2,4,3,1],[1,1,1,0]],[[0,3,2,1],[2,3,1,2],[2,2,3,1],[0,2,0,0]],[[0,2,3,1],[2,3,1,2],[2,2,3,1],[0,2,0,0]],[[0,2,2,2],[2,3,1,2],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[3,3,1,2],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[2,4,1,2],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[2,3,1,3],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[2,3,1,2],[3,2,3,1],[0,2,0,0]],[[1,2,2,0],[2,0,2,2],[3,3,3,1],[1,1,1,0]],[[1,2,2,0],[3,0,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,3,0],[2,0,2,2],[2,3,3,1],[1,1,1,0]],[[1,3,2,0],[2,0,2,2],[2,3,3,1],[1,1,1,0]],[[2,2,2,0],[2,0,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,0],[2,0,2,2],[2,3,3,1],[2,1,0,1]],[[1,2,2,0],[2,0,2,2],[2,3,4,1],[1,1,0,1]],[[1,2,2,0],[2,0,2,2],[2,4,3,1],[1,1,0,1]],[[1,2,2,0],[2,0,2,2],[3,3,3,1],[1,1,0,1]],[[1,2,2,0],[3,0,2,2],[2,3,3,1],[1,1,0,1]],[[1,2,3,0],[2,0,2,2],[2,3,3,1],[1,1,0,1]],[[1,3,2,0],[2,0,2,2],[2,3,3,1],[1,1,0,1]],[[2,2,2,0],[2,0,2,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,0],[2,0,2,2],[2,3,3,1],[1,0,3,0]],[[1,2,2,0],[2,0,2,2],[2,3,3,1],[2,0,2,0]],[[1,2,2,0],[2,0,2,2],[2,3,4,1],[1,0,2,0]],[[1,2,2,0],[2,0,2,2],[2,4,3,1],[1,0,2,0]],[[1,2,2,0],[2,0,2,2],[3,3,3,1],[1,0,2,0]],[[1,2,2,0],[3,0,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,3,0],[2,0,2,2],[2,3,3,1],[1,0,2,0]],[[1,3,2,0],[2,0,2,2],[2,3,3,1],[1,0,2,0]],[[2,2,2,0],[2,0,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,0],[2,0,2,2],[2,3,3,1],[2,0,1,1]],[[1,2,2,0],[2,0,2,2],[2,3,4,1],[1,0,1,1]],[[1,2,2,0],[2,0,2,2],[2,4,3,1],[1,0,1,1]],[[1,2,2,0],[2,0,2,2],[3,3,3,1],[1,0,1,1]],[[1,2,2,0],[3,0,2,2],[2,3,3,1],[1,0,1,1]],[[1,2,3,0],[2,0,2,2],[2,3,3,1],[1,0,1,1]],[[1,3,2,0],[2,0,2,2],[2,3,3,1],[1,0,1,1]],[[0,3,2,1],[2,3,1,2],[2,2,3,1],[1,1,0,0]],[[0,2,3,1],[2,3,1,2],[2,2,3,1],[1,1,0,0]],[[0,2,2,2],[2,3,1,2],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[3,3,1,2],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,4,1,2],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,3,1,3],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,3,1,2],[3,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,3,1,2],[2,2,3,1],[2,1,0,0]],[[2,2,2,0],[2,0,2,2],[2,3,3,1],[1,0,1,1]],[[1,2,2,0],[2,0,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[2,0,2,2],[2,3,4,1],[0,2,1,0]],[[1,2,2,0],[2,0,2,2],[2,4,3,1],[0,2,1,0]],[[1,2,2,0],[2,0,2,2],[3,3,3,1],[0,2,1,0]],[[1,2,2,0],[3,0,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,3,0],[2,0,2,2],[2,3,3,1],[0,2,1,0]],[[1,3,2,0],[2,0,2,2],[2,3,3,1],[0,2,1,0]],[[2,2,2,0],[2,0,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,0],[2,0,2,2],[2,3,3,1],[0,3,0,1]],[[1,2,2,0],[2,0,2,2],[2,3,4,1],[0,2,0,1]],[[1,2,2,0],[2,0,2,2],[2,4,3,1],[0,2,0,1]],[[1,2,2,0],[2,0,2,2],[3,3,3,1],[0,2,0,1]],[[1,2,2,0],[3,0,2,2],[2,3,3,1],[0,2,0,1]],[[1,2,3,0],[2,0,2,2],[2,3,3,1],[0,2,0,1]],[[1,3,2,0],[2,0,2,2],[2,3,3,1],[0,2,0,1]],[[2,2,2,0],[2,0,2,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,0],[2,0,2,2],[2,3,3,1],[0,1,3,0]],[[1,2,2,0],[2,0,2,2],[2,3,4,1],[0,1,2,0]],[[1,2,2,0],[2,0,2,2],[2,4,3,1],[0,1,2,0]],[[1,2,2,0],[2,0,2,2],[3,3,3,1],[0,1,2,0]],[[1,2,2,0],[3,0,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,3,0],[2,0,2,2],[2,3,3,1],[0,1,2,0]],[[1,3,2,0],[2,0,2,2],[2,3,3,1],[0,1,2,0]],[[2,2,2,0],[2,0,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,0],[2,0,2,2],[2,3,4,1],[0,1,1,1]],[[1,2,2,0],[2,0,2,2],[2,4,3,1],[0,1,1,1]],[[1,2,2,0],[2,0,2,2],[3,3,3,1],[0,1,1,1]],[[1,2,2,0],[3,0,2,2],[2,3,3,1],[0,1,1,1]],[[1,2,3,0],[2,0,2,2],[2,3,3,1],[0,1,1,1]],[[1,3,2,0],[2,0,2,2],[2,3,3,1],[0,1,1,1]],[[2,2,2,0],[2,0,2,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,0],[2,0,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,0],[2,0,2,2],[2,4,3,0],[1,2,0,1]],[[1,2,2,0],[2,0,2,2],[3,3,3,0],[1,2,0,1]],[[1,2,2,0],[3,0,2,2],[2,3,3,0],[1,2,0,1]],[[1,2,3,0],[2,0,2,2],[2,3,3,0],[1,2,0,1]],[[1,3,2,0],[2,0,2,2],[2,3,3,0],[1,2,0,1]],[[2,2,2,0],[2,0,2,2],[2,3,3,0],[1,2,0,1]],[[1,2,2,0],[2,0,2,2],[2,3,3,0],[2,1,1,1]],[[1,2,2,0],[2,0,2,2],[2,3,4,0],[1,1,1,1]],[[1,2,2,0],[2,0,2,2],[2,4,3,0],[1,1,1,1]],[[1,2,2,0],[2,0,2,2],[3,3,3,0],[1,1,1,1]],[[1,2,2,0],[3,0,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,3,0],[2,0,2,2],[2,3,3,0],[1,1,1,1]],[[1,3,2,0],[2,0,2,2],[2,3,3,0],[1,1,1,1]],[[2,2,2,0],[2,0,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,0],[2,0,2,2],[2,3,3,0],[1,0,2,2]],[[1,2,2,0],[2,0,2,2],[2,3,3,0],[1,0,3,1]],[[1,2,2,0],[2,0,2,2],[2,3,3,0],[2,0,2,1]],[[1,2,2,0],[2,0,2,2],[2,3,4,0],[1,0,2,1]],[[1,2,2,0],[2,0,2,2],[2,4,3,0],[1,0,2,1]],[[1,2,2,0],[2,0,2,2],[3,3,3,0],[1,0,2,1]],[[1,2,2,0],[3,0,2,2],[2,3,3,0],[1,0,2,1]],[[1,2,3,0],[2,0,2,2],[2,3,3,0],[1,0,2,1]],[[1,3,2,0],[2,0,2,2],[2,3,3,0],[1,0,2,1]],[[2,2,2,0],[2,0,2,2],[2,3,3,0],[1,0,2,1]],[[1,2,2,0],[2,0,2,2],[2,3,3,0],[0,3,1,1]],[[1,2,2,0],[2,0,2,2],[2,3,4,0],[0,2,1,1]],[[1,2,2,0],[2,0,2,2],[2,4,3,0],[0,2,1,1]],[[1,2,2,0],[2,0,2,2],[3,3,3,0],[0,2,1,1]],[[1,2,2,0],[3,0,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,3,0],[2,0,2,2],[2,3,3,0],[0,2,1,1]],[[1,3,2,0],[2,0,2,2],[2,3,3,0],[0,2,1,1]],[[2,2,2,0],[2,0,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,0],[2,0,2,2],[2,3,3,0],[0,1,2,2]],[[1,2,2,0],[2,0,2,2],[2,3,3,0],[0,1,3,1]],[[1,2,2,0],[2,0,2,2],[2,3,4,0],[0,1,2,1]],[[1,2,2,0],[2,0,2,2],[2,4,3,0],[0,1,2,1]],[[1,2,2,0],[2,0,2,2],[3,3,3,0],[0,1,2,1]],[[1,2,2,0],[3,0,2,2],[2,3,3,0],[0,1,2,1]],[[1,2,3,0],[2,0,2,2],[2,3,3,0],[0,1,2,1]],[[1,3,2,0],[2,0,2,2],[2,3,3,0],[0,1,2,1]],[[2,2,2,0],[2,0,2,2],[2,3,3,0],[0,1,2,1]],[[1,2,2,0],[2,0,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[2,0,2,2],[2,4,2,1],[1,1,2,0]],[[1,2,2,0],[2,0,2,2],[3,3,2,1],[1,1,2,0]],[[1,2,2,0],[3,0,2,2],[2,3,2,1],[1,1,2,0]],[[1,2,3,0],[2,0,2,2],[2,3,2,1],[1,1,2,0]],[[1,3,2,0],[2,0,2,2],[2,3,2,1],[1,1,2,0]],[[2,2,2,0],[2,0,2,2],[2,3,2,1],[1,1,2,0]],[[1,2,2,0],[2,0,2,2],[2,3,2,1],[0,2,3,0]],[[1,2,2,0],[2,0,2,2],[2,3,2,1],[0,3,2,0]],[[1,2,2,0],[2,0,2,2],[2,4,2,1],[0,2,2,0]],[[1,2,2,0],[2,0,2,2],[3,3,2,1],[0,2,2,0]],[[1,2,2,0],[3,0,2,2],[2,3,2,1],[0,2,2,0]],[[1,2,3,0],[2,0,2,2],[2,3,2,1],[0,2,2,0]],[[1,3,2,0],[2,0,2,2],[2,3,2,1],[0,2,2,0]],[[2,2,2,0],[2,0,2,2],[2,3,2,1],[0,2,2,0]],[[1,2,2,0],[2,0,2,2],[2,3,2,0],[2,1,2,1]],[[1,2,2,0],[2,0,2,2],[2,4,2,0],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[3,3,2,0],[1,1,2,1]],[[1,2,2,0],[3,0,2,2],[2,3,2,0],[1,1,2,1]],[[1,2,3,0],[2,0,2,2],[2,3,2,0],[1,1,2,1]],[[1,3,2,0],[2,0,2,2],[2,3,2,0],[1,1,2,1]],[[2,2,2,0],[2,0,2,2],[2,3,2,0],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[2,3,2,0],[0,2,2,2]],[[1,2,2,0],[2,0,2,2],[2,3,2,0],[0,2,3,1]],[[1,2,2,0],[2,0,2,2],[2,3,2,0],[0,3,2,1]],[[1,2,2,0],[2,0,2,2],[2,4,2,0],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[3,3,2,0],[0,2,2,1]],[[1,2,2,0],[3,0,2,2],[2,3,2,0],[0,2,2,1]],[[1,2,3,0],[2,0,2,2],[2,3,2,0],[0,2,2,1]],[[1,3,2,0],[2,0,2,2],[2,3,2,0],[0,2,2,1]],[[2,2,2,0],[2,0,2,2],[2,3,2,0],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,0],[2,0,2,2],[2,4,0,2],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[3,3,0,2],[1,1,2,1]],[[1,2,2,0],[3,0,2,2],[2,3,0,2],[1,1,2,1]],[[1,2,3,0],[2,0,2,2],[2,3,0,2],[1,1,2,1]],[[1,3,2,0],[2,0,2,2],[2,3,0,2],[1,1,2,1]],[[2,2,2,0],[2,0,2,2],[2,3,0,2],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[2,3,0,2],[0,2,2,2]],[[1,2,2,0],[2,0,2,2],[2,3,0,2],[0,2,3,1]],[[1,2,2,0],[2,0,2,2],[2,3,0,2],[0,3,2,1]],[[1,2,2,0],[2,0,2,2],[2,3,0,3],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,4,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[3,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,3],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[3,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,2,3,0],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,3,2,0],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[2,2,2,0],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,0],[2,0,2,2],[2,2,4,2],[1,1,1,0]],[[1,2,2,0],[2,0,2,3],[2,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,2],[1,1,0,2]],[[1,2,2,0],[2,0,2,2],[2,2,3,3],[1,1,0,1]],[[1,2,2,0],[2,0,2,2],[2,2,4,2],[1,1,0,1]],[[1,2,2,0],[2,0,2,3],[2,2,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,2,2],[2,2,3,2],[1,0,3,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,3],[1,0,2,0]],[[1,2,2,0],[2,0,2,2],[2,2,4,2],[1,0,2,0]],[[1,2,2,0],[2,0,2,3],[2,2,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,2],[1,0,1,2]],[[1,2,2,0],[2,0,2,2],[2,2,3,3],[1,0,1,1]],[[1,2,2,0],[2,0,2,2],[2,2,4,2],[1,0,1,1]],[[1,2,2,0],[2,0,2,3],[2,2,3,2],[1,0,1,1]],[[1,2,2,0],[2,0,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,0],[2,0,2,2],[2,2,4,2],[0,2,1,0]],[[0,3,2,1],[2,3,1,2],[2,3,0,0],[0,2,2,1]],[[0,2,3,1],[2,3,1,2],[2,3,0,0],[0,2,2,1]],[[0,2,2,2],[2,3,1,2],[2,3,0,0],[0,2,2,1]],[[0,2,2,1],[3,3,1,2],[2,3,0,0],[0,2,2,1]],[[0,2,2,1],[2,4,1,2],[2,3,0,0],[0,2,2,1]],[[0,2,2,1],[2,3,1,2],[3,3,0,0],[0,2,2,1]],[[0,3,2,1],[2,3,1,2],[2,3,0,0],[1,1,2,1]],[[0,2,3,1],[2,3,1,2],[2,3,0,0],[1,1,2,1]],[[0,2,2,2],[2,3,1,2],[2,3,0,0],[1,1,2,1]],[[0,2,2,1],[3,3,1,2],[2,3,0,0],[1,1,2,1]],[[0,2,2,1],[2,4,1,2],[2,3,0,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[3,3,0,0],[1,1,2,1]],[[0,2,2,1],[2,3,1,2],[2,3,0,0],[2,1,2,1]],[[0,3,2,1],[2,3,1,2],[2,3,0,0],[1,2,1,1]],[[0,2,3,1],[2,3,1,2],[2,3,0,0],[1,2,1,1]],[[0,2,2,2],[2,3,1,2],[2,3,0,0],[1,2,1,1]],[[0,2,2,1],[3,3,1,2],[2,3,0,0],[1,2,1,1]],[[0,2,2,1],[2,4,1,2],[2,3,0,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[3,3,0,0],[1,2,1,1]],[[0,2,2,1],[2,3,1,2],[2,3,0,0],[2,2,1,1]],[[0,3,2,1],[2,3,1,2],[2,3,0,1],[0,2,2,0]],[[0,2,3,1],[2,3,1,2],[2,3,0,1],[0,2,2,0]],[[0,2,2,2],[2,3,1,2],[2,3,0,1],[0,2,2,0]],[[0,2,2,1],[3,3,1,2],[2,3,0,1],[0,2,2,0]],[[0,2,2,1],[2,4,1,2],[2,3,0,1],[0,2,2,0]],[[0,2,2,1],[2,3,1,2],[3,3,0,1],[0,2,2,0]],[[0,3,2,1],[2,3,1,2],[2,3,0,1],[1,1,2,0]],[[0,2,3,1],[2,3,1,2],[2,3,0,1],[1,1,2,0]],[[0,2,2,2],[2,3,1,2],[2,3,0,1],[1,1,2,0]],[[0,2,2,1],[3,3,1,2],[2,3,0,1],[1,1,2,0]],[[0,2,2,1],[2,4,1,2],[2,3,0,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[3,3,0,1],[1,1,2,0]],[[0,2,2,1],[2,3,1,2],[2,3,0,1],[2,1,2,0]],[[0,3,2,1],[2,3,1,2],[2,3,0,1],[1,2,1,0]],[[0,2,3,1],[2,3,1,2],[2,3,0,1],[1,2,1,0]],[[0,2,2,2],[2,3,1,2],[2,3,0,1],[1,2,1,0]],[[0,2,2,1],[3,3,1,2],[2,3,0,1],[1,2,1,0]],[[0,2,2,1],[2,4,1,2],[2,3,0,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[3,3,0,1],[1,2,1,0]],[[0,2,2,1],[2,3,1,2],[2,3,0,1],[2,2,1,0]],[[1,2,2,0],[2,0,2,3],[2,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,2],[0,2,0,2]],[[1,2,2,0],[2,0,2,2],[2,2,3,3],[0,2,0,1]],[[1,2,2,0],[2,0,2,2],[2,2,4,2],[0,2,0,1]],[[1,2,2,0],[2,0,2,3],[2,2,3,2],[0,2,0,1]],[[1,2,2,0],[2,0,2,2],[2,2,3,2],[0,1,3,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,3],[0,1,2,0]],[[0,3,2,1],[2,3,1,2],[2,3,0,2],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,3,0,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,3],[2,3,0,2],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,3,0,2],[0,2,0,1]],[[0,3,2,1],[2,3,1,2],[2,3,0,2],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,1],[3,3,1,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[2,3,0,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,3],[2,3,0,2],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[3,3,0,2],[0,2,1,0]],[[1,2,2,0],[2,0,2,2],[2,2,4,2],[0,1,2,0]],[[1,2,2,0],[2,0,2,3],[2,2,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,2],[0,1,1,2]],[[1,2,2,0],[2,0,2,2],[2,2,3,3],[0,1,1,1]],[[1,2,2,0],[2,0,2,2],[2,2,4,2],[0,1,1,1]],[[1,2,2,0],[2,0,2,3],[2,2,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,2,2],[2,2,3,2],[0,0,2,2]],[[1,2,2,0],[2,0,2,2],[2,2,3,3],[0,0,2,1]],[[1,2,2,0],[2,0,2,2],[2,2,4,2],[0,0,2,1]],[[1,2,2,0],[2,0,2,3],[2,2,3,2],[0,0,2,1]],[[0,3,2,1],[2,3,1,2],[2,3,0,2],[1,1,0,1]],[[0,2,3,1],[2,3,1,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,2],[2,3,1,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,1],[3,3,1,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,1],[2,4,1,2],[2,3,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,3],[2,3,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[3,3,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[2,3,0,2],[2,1,0,1]],[[0,3,2,1],[2,3,1,2],[2,3,0,2],[1,1,1,0]],[[0,2,3,1],[2,3,1,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,2],[2,3,1,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,1],[3,3,1,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,1],[2,4,1,2],[2,3,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,3],[2,3,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[3,3,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[2,3,0,2],[2,1,1,0]],[[0,3,2,1],[2,3,1,2],[2,3,0,2],[1,2,0,0]],[[0,2,3,1],[2,3,1,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,2],[2,3,1,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,1],[3,3,1,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,4,1,2],[2,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,3,1,3],[2,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,3,1,2],[3,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,3,1,2],[2,3,0,2],[2,2,0,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,1],[2,2,1,0]],[[1,2,2,0],[2,0,2,2],[3,2,3,1],[1,2,1,0]],[[1,2,2,0],[3,0,2,2],[2,2,3,1],[1,2,1,0]],[[1,2,3,0],[2,0,2,2],[2,2,3,1],[1,2,1,0]],[[1,3,2,0],[2,0,2,2],[2,2,3,1],[1,2,1,0]],[[2,2,2,0],[2,0,2,2],[2,2,3,1],[1,2,1,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,1],[1,3,0,1]],[[1,2,2,0],[2,0,2,2],[2,2,3,1],[2,2,0,1]],[[1,2,2,0],[2,0,2,2],[3,2,3,1],[1,2,0,1]],[[1,2,2,0],[3,0,2,2],[2,2,3,1],[1,2,0,1]],[[1,2,3,0],[2,0,2,2],[2,2,3,1],[1,2,0,1]],[[1,3,2,0],[2,0,2,2],[2,2,3,1],[1,2,0,1]],[[2,2,2,0],[2,0,2,2],[2,2,3,1],[1,2,0,1]],[[1,2,2,0],[2,0,2,2],[2,2,3,1],[1,0,2,2]],[[1,2,2,0],[2,0,2,2],[2,2,3,1],[1,0,3,1]],[[1,2,2,0],[2,0,2,2],[2,2,4,1],[1,0,2,1]],[[1,2,2,0],[2,0,2,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,1],[0,3,2,0]],[[1,2,2,0],[2,0,2,2],[2,2,4,1],[0,2,2,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,1],[0,1,2,2]],[[1,2,2,0],[2,0,2,2],[2,2,3,1],[0,1,3,1]],[[1,2,2,0],[2,0,2,2],[2,2,4,1],[0,1,2,1]],[[0,3,2,1],[2,3,1,2],[2,3,1,0],[0,2,1,1]],[[0,2,3,1],[2,3,1,2],[2,3,1,0],[0,2,1,1]],[[0,2,2,2],[2,3,1,2],[2,3,1,0],[0,2,1,1]],[[0,2,2,1],[3,3,1,2],[2,3,1,0],[0,2,1,1]],[[0,2,2,1],[2,4,1,2],[2,3,1,0],[0,2,1,1]],[[0,2,2,1],[2,3,1,2],[3,3,1,0],[0,2,1,1]],[[0,3,2,1],[2,3,1,2],[2,3,1,0],[1,1,1,1]],[[0,2,3,1],[2,3,1,2],[2,3,1,0],[1,1,1,1]],[[0,2,2,2],[2,3,1,2],[2,3,1,0],[1,1,1,1]],[[0,2,2,1],[3,3,1,2],[2,3,1,0],[1,1,1,1]],[[0,2,2,1],[2,4,1,2],[2,3,1,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[3,3,1,0],[1,1,1,1]],[[0,2,2,1],[2,3,1,2],[2,3,1,0],[2,1,1,1]],[[0,3,2,1],[2,3,1,2],[2,3,1,0],[1,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,3,1,0],[1,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,3,1,0],[1,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,3,1,0],[1,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,3,1,0],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,3,1,0],[1,2,0,1]],[[0,2,2,1],[2,3,1,2],[2,3,1,0],[2,2,0,1]],[[1,2,2,0],[2,0,2,2],[2,2,3,0],[1,3,1,1]],[[1,2,2,0],[2,0,2,2],[2,2,3,0],[2,2,1,1]],[[1,2,2,0],[2,0,2,2],[3,2,3,0],[1,2,1,1]],[[1,2,2,0],[3,0,2,2],[2,2,3,0],[1,2,1,1]],[[1,2,3,0],[2,0,2,2],[2,2,3,0],[1,2,1,1]],[[1,3,2,0],[2,0,2,2],[2,2,3,0],[1,2,1,1]],[[2,2,2,0],[2,0,2,2],[2,2,3,0],[1,2,1,1]],[[0,3,2,1],[2,3,1,2],[2,3,1,1],[0,2,0,1]],[[0,2,3,1],[2,3,1,2],[2,3,1,1],[0,2,0,1]],[[0,2,2,2],[2,3,1,2],[2,3,1,1],[0,2,0,1]],[[0,2,2,1],[3,3,1,2],[2,3,1,1],[0,2,0,1]],[[0,2,2,1],[2,4,1,2],[2,3,1,1],[0,2,0,1]],[[0,2,2,1],[2,3,1,2],[3,3,1,1],[0,2,0,1]],[[0,3,2,1],[2,3,1,2],[2,3,1,1],[0,2,1,0]],[[0,2,3,1],[2,3,1,2],[2,3,1,1],[0,2,1,0]],[[0,2,2,2],[2,3,1,2],[2,3,1,1],[0,2,1,0]],[[0,2,2,1],[3,3,1,2],[2,3,1,1],[0,2,1,0]],[[0,2,2,1],[2,4,1,2],[2,3,1,1],[0,2,1,0]],[[0,2,2,1],[2,3,1,2],[3,3,1,1],[0,2,1,0]],[[1,2,2,0],[2,0,2,2],[2,2,3,0],[0,2,2,2]],[[1,2,2,0],[2,0,2,2],[2,2,3,0],[0,2,3,1]],[[1,2,2,0],[2,0,2,2],[2,2,3,0],[0,3,2,1]],[[1,2,2,0],[2,0,2,2],[2,2,4,0],[0,2,2,1]],[[0,3,2,1],[2,3,1,2],[2,3,1,1],[1,1,0,1]],[[0,2,3,1],[2,3,1,2],[2,3,1,1],[1,1,0,1]],[[0,2,2,2],[2,3,1,2],[2,3,1,1],[1,1,0,1]],[[0,2,2,1],[3,3,1,2],[2,3,1,1],[1,1,0,1]],[[0,2,2,1],[2,4,1,2],[2,3,1,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[3,3,1,1],[1,1,0,1]],[[0,2,2,1],[2,3,1,2],[2,3,1,1],[2,1,0,1]],[[0,3,2,1],[2,3,1,2],[2,3,1,1],[1,1,1,0]],[[0,2,3,1],[2,3,1,2],[2,3,1,1],[1,1,1,0]],[[0,2,2,2],[2,3,1,2],[2,3,1,1],[1,1,1,0]],[[0,2,2,1],[3,3,1,2],[2,3,1,1],[1,1,1,0]],[[0,2,2,1],[2,4,1,2],[2,3,1,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[3,3,1,1],[1,1,1,0]],[[0,2,2,1],[2,3,1,2],[2,3,1,1],[2,1,1,0]],[[1,2,2,0],[2,0,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,0],[2,0,2,2],[2,2,2,2],[1,0,3,1]],[[1,2,2,0],[2,0,2,2],[2,2,2,3],[1,0,2,1]],[[1,2,2,0],[2,0,2,3],[2,2,2,2],[1,0,2,1]],[[0,3,2,1],[2,3,1,2],[2,3,1,1],[1,2,0,0]],[[0,2,3,1],[2,3,1,2],[2,3,1,1],[1,2,0,0]],[[0,2,2,2],[2,3,1,2],[2,3,1,1],[1,2,0,0]],[[0,2,2,1],[3,3,1,2],[2,3,1,1],[1,2,0,0]],[[0,2,2,1],[2,4,1,2],[2,3,1,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,2],[3,3,1,1],[1,2,0,0]],[[0,2,2,1],[2,3,1,2],[2,3,1,1],[2,2,0,0]],[[1,2,2,0],[2,0,2,2],[2,2,2,2],[0,1,2,2]],[[1,2,2,0],[2,0,2,2],[2,2,2,2],[0,1,3,1]],[[1,2,2,0],[2,0,2,2],[2,2,2,3],[0,1,2,1]],[[1,2,2,0],[2,0,2,3],[2,2,2,2],[0,1,2,1]],[[1,2,2,0],[2,0,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,0],[2,0,2,2],[2,2,2,1],[1,3,2,0]],[[1,2,2,0],[2,0,2,2],[2,2,2,1],[2,2,2,0]],[[1,2,2,0],[2,0,2,2],[3,2,2,1],[1,2,2,0]],[[1,2,2,0],[3,0,2,2],[2,2,2,1],[1,2,2,0]],[[1,2,3,0],[2,0,2,2],[2,2,2,1],[1,2,2,0]],[[1,3,2,0],[2,0,2,2],[2,2,2,1],[1,2,2,0]],[[2,2,2,0],[2,0,2,2],[2,2,2,1],[1,2,2,0]],[[1,2,2,0],[2,0,2,2],[2,2,2,0],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[2,2,2,0],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[2,2,2,0],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[2,2,2,0],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[3,2,2,0],[1,2,2,1]],[[1,2,2,0],[3,0,2,2],[2,2,2,0],[1,2,2,1]],[[1,2,3,0],[2,0,2,2],[2,2,2,0],[1,2,2,1]],[[1,3,2,0],[2,0,2,2],[2,2,2,0],[1,2,2,1]],[[2,2,2,0],[2,0,2,2],[2,2,2,0],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,2,0,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[2,2,0,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[2,2,0,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[2,2,0,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,2,0,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[3,2,0,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,3],[2,2,0,2],[1,2,2,1]],[[1,2,2,0],[3,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,2,3,0],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,3,2,0],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[2,2,2,0],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,3,3],[1,2,1,0]],[[1,2,2,0],[2,0,2,2],[2,1,4,2],[1,2,1,0]],[[1,2,2,0],[2,0,2,3],[2,1,3,2],[1,2,1,0]],[[0,3,2,1],[2,3,1,2],[2,3,1,2],[1,0,0,1]],[[0,2,3,1],[2,3,1,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,2],[2,3,1,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,1],[3,3,1,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,1],[2,4,1,2],[2,3,1,2],[1,0,0,1]],[[0,2,2,1],[2,3,1,3],[2,3,1,2],[1,0,0,1]],[[0,2,2,1],[2,3,1,2],[3,3,1,2],[1,0,0,1]],[[0,2,2,1],[2,3,1,2],[2,3,1,3],[1,0,0,1]],[[0,3,2,1],[2,3,1,2],[2,3,1,2],[1,0,1,0]],[[0,2,3,1],[2,3,1,2],[2,3,1,2],[1,0,1,0]],[[0,2,2,2],[2,3,1,2],[2,3,1,2],[1,0,1,0]],[[0,2,2,1],[3,3,1,2],[2,3,1,2],[1,0,1,0]],[[0,2,2,1],[2,4,1,2],[2,3,1,2],[1,0,1,0]],[[0,2,2,1],[2,3,1,3],[2,3,1,2],[1,0,1,0]],[[0,2,2,1],[2,3,1,2],[3,3,1,2],[1,0,1,0]],[[1,2,2,0],[2,0,2,2],[2,1,3,2],[1,2,0,2]],[[1,2,2,0],[2,0,2,2],[2,1,3,3],[1,2,0,1]],[[1,2,2,0],[2,0,2,2],[2,1,4,2],[1,2,0,1]],[[1,2,2,0],[2,0,2,3],[2,1,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,2,2],[2,1,3,2],[1,1,3,0]],[[1,2,2,0],[2,0,2,2],[2,1,3,3],[1,1,2,0]],[[1,2,2,0],[2,0,2,2],[2,1,4,2],[1,1,2,0]],[[1,2,2,0],[2,0,2,3],[2,1,3,2],[1,1,2,0]],[[1,2,2,0],[2,0,2,2],[2,1,3,2],[1,1,1,2]],[[1,2,2,0],[2,0,2,2],[2,1,3,3],[1,1,1,1]],[[1,2,2,0],[2,0,2,2],[2,1,4,2],[1,1,1,1]],[[1,2,2,0],[2,0,2,3],[2,1,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,0],[2,0,2,2],[2,1,3,2],[0,3,2,0]],[[1,2,2,0],[2,0,2,2],[2,1,3,3],[0,2,2,0]],[[1,2,2,0],[2,0,2,2],[2,1,4,2],[0,2,2,0]],[[1,2,2,0],[2,0,2,3],[2,1,3,2],[0,2,2,0]],[[1,2,2,0],[2,0,2,2],[2,1,3,2],[0,2,1,2]],[[1,2,2,0],[2,0,2,2],[2,1,3,3],[0,2,1,1]],[[1,2,2,0],[2,0,2,2],[2,1,4,2],[0,2,1,1]],[[1,2,2,0],[2,0,2,3],[2,1,3,2],[0,2,1,1]],[[1,2,2,0],[2,0,2,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,0],[2,0,2,2],[2,1,3,1],[1,3,2,0]],[[1,2,2,0],[2,0,2,2],[2,1,3,1],[2,2,2,0]],[[1,2,2,0],[2,0,2,2],[2,1,4,1],[1,2,2,0]],[[1,2,2,0],[2,0,2,2],[3,1,3,1],[1,2,2,0]],[[1,2,2,0],[3,0,2,2],[2,1,3,1],[1,2,2,0]],[[1,2,3,0],[2,0,2,2],[2,1,3,1],[1,2,2,0]],[[1,3,2,0],[2,0,2,2],[2,1,3,1],[1,2,2,0]],[[2,2,2,0],[2,0,2,2],[2,1,3,1],[1,2,2,0]],[[1,2,2,0],[2,0,2,2],[2,1,3,1],[1,1,2,2]],[[1,2,2,0],[2,0,2,2],[2,1,3,1],[1,1,3,1]],[[1,2,2,0],[2,0,2,2],[2,1,4,1],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,3,1],[0,2,2,2]],[[1,2,2,0],[2,0,2,2],[2,1,3,1],[0,2,3,1]],[[1,2,2,0],[2,0,2,2],[2,1,3,1],[0,3,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,4,1],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,3,0],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[2,1,3,0],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[2,1,3,0],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,3,0],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,4,0],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[3,1,3,0],[1,2,2,1]],[[1,2,2,0],[3,0,2,2],[2,1,3,0],[1,2,2,1]],[[1,2,3,0],[2,0,2,2],[2,1,3,0],[1,2,2,1]],[[1,3,2,0],[2,0,2,2],[2,1,3,0],[1,2,2,1]],[[2,2,2,0],[2,0,2,2],[2,1,3,0],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,2,2],[1,1,2,2]],[[1,2,2,0],[2,0,2,2],[2,1,2,2],[1,1,3,1]],[[1,2,2,0],[2,0,2,2],[2,1,2,3],[1,1,2,1]],[[1,2,2,0],[2,0,2,3],[2,1,2,2],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,2,2],[0,2,2,2]],[[1,2,2,0],[2,0,2,2],[2,1,2,2],[0,2,3,1]],[[1,2,2,0],[2,0,2,2],[2,1,2,2],[0,3,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,2,3],[0,2,2,1]],[[1,2,2,0],[2,0,2,3],[2,1,2,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,1,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[2,1,1,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[2,1,1,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,1,1,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[3,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,3],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[3,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,2,3,0],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,3,2,0],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[2,2,2,0],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[2,0,3,2],[1,1,2,2]],[[1,2,2,0],[2,0,2,2],[2,0,3,2],[1,1,3,1]],[[1,2,2,0],[2,0,2,2],[2,0,3,3],[1,1,2,1]],[[1,2,2,0],[2,0,2,3],[2,0,3,2],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[2,0,3,2],[0,2,2,2]],[[1,2,2,0],[2,0,2,2],[2,0,3,2],[0,2,3,1]],[[1,2,2,0],[2,0,2,2],[2,0,3,3],[0,2,2,1]],[[1,2,2,0],[2,0,2,3],[2,0,3,2],[0,2,2,1]],[[0,3,2,1],[2,3,1,2],[2,3,2,0],[1,0,1,1]],[[0,2,3,1],[2,3,1,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,2],[2,3,1,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[3,3,1,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[2,4,1,2],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[2,3,1,2],[3,3,2,0],[1,0,1,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[2,0,2,2],[1,3,4,2],[1,1,1,0]],[[1,2,2,0],[2,0,2,2],[1,4,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,2,3],[1,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,2,2],[1,3,3,2],[1,1,0,2]],[[1,2,2,0],[2,0,2,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,0],[2,0,2,2],[1,3,4,2],[1,1,0,1]],[[1,2,2,0],[2,0,2,2],[1,4,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,2,3],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,2],[1,0,3,0]],[[1,2,2,0],[2,0,2,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,0],[2,0,2,2],[1,3,4,2],[1,0,2,0]],[[1,2,2,0],[2,0,2,2],[1,4,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,2,3],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,2,2],[1,3,3,2],[1,0,1,2]],[[1,2,2,0],[2,0,2,2],[1,3,3,3],[1,0,1,1]],[[1,2,2,0],[2,0,2,2],[1,3,4,2],[1,0,1,1]],[[1,2,2,0],[2,0,2,2],[1,4,3,2],[1,0,1,1]],[[1,2,2,0],[2,0,2,3],[1,3,3,2],[1,0,1,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,0,2,2],[1,3,3,3],[0,2,1,0]],[[1,2,2,0],[2,0,2,2],[1,3,4,2],[0,2,1,0]],[[1,2,2,0],[2,0,2,2],[1,4,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,2,3],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,2,2],[1,3,3,2],[0,2,0,2]],[[1,2,2,0],[2,0,2,2],[1,3,3,2],[0,3,0,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,3],[0,2,0,1]],[[1,2,2,0],[2,0,2,2],[1,3,4,2],[0,2,0,1]],[[1,2,2,0],[2,0,2,2],[1,4,3,2],[0,2,0,1]],[[1,2,2,0],[2,0,2,3],[1,3,3,2],[0,2,0,1]],[[0,3,2,1],[2,3,1,2],[2,3,2,1],[1,0,0,1]],[[0,2,3,1],[2,3,1,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,2],[2,3,1,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[3,3,1,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[2,4,1,2],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[2,3,1,3],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[2,3,1,2],[3,3,2,1],[1,0,0,1]],[[0,3,2,1],[2,3,1,2],[2,3,2,1],[1,0,1,0]],[[0,2,3,1],[2,3,1,2],[2,3,2,1],[1,0,1,0]],[[0,2,2,2],[2,3,1,2],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[3,3,1,2],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[2,4,1,2],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[2,3,1,3],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[2,3,1,2],[3,3,2,1],[1,0,1,0]],[[1,2,2,0],[2,0,2,2],[1,3,3,2],[0,1,3,0]],[[1,2,2,0],[2,0,2,2],[1,3,3,3],[0,1,2,0]],[[1,2,2,0],[2,0,2,2],[1,3,4,2],[0,1,2,0]],[[1,2,2,0],[2,0,2,2],[1,4,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,2,3],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,2,2],[1,3,3,2],[0,1,1,2]],[[1,2,2,0],[2,0,2,2],[1,3,3,3],[0,1,1,1]],[[1,2,2,0],[2,0,2,2],[1,3,4,2],[0,1,1,1]],[[1,2,2,0],[2,0,2,2],[1,4,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,2,3],[1,3,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,2],[0,0,2,2]],[[1,2,2,0],[2,0,2,2],[1,3,3,3],[0,0,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,4,2],[0,0,2,1]],[[1,2,2,0],[2,0,2,3],[1,3,3,2],[0,0,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[2,0,2,2],[1,3,3,1],[2,2,1,0]],[[1,2,2,0],[2,0,2,2],[1,3,4,1],[1,2,1,0]],[[1,2,2,0],[2,0,2,2],[1,4,3,1],[1,2,1,0]],[[1,2,2,0],[2,0,2,2],[1,3,3,1],[1,3,0,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,1],[2,2,0,1]],[[1,2,2,0],[2,0,2,2],[1,3,4,1],[1,2,0,1]],[[1,2,2,0],[2,0,2,2],[1,4,3,1],[1,2,0,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,1],[1,1,3,0]],[[1,2,2,0],[2,0,2,2],[1,3,4,1],[1,1,2,0]],[[1,2,2,0],[2,0,2,2],[1,4,3,1],[1,1,2,0]],[[1,2,2,0],[2,0,2,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,0],[2,0,2,2],[1,3,3,1],[1,0,3,1]],[[1,2,2,0],[2,0,2,2],[1,3,4,1],[1,0,2,1]],[[1,2,2,0],[2,0,2,2],[1,4,3,1],[1,0,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,1],[0,3,1,1]],[[1,2,2,0],[2,0,2,2],[1,3,4,1],[0,2,1,1]],[[1,2,2,0],[2,0,2,2],[1,4,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,1],[0,1,2,2]],[[1,2,2,0],[2,0,2,2],[1,3,3,1],[0,1,3,1]],[[1,2,2,0],[2,0,2,2],[1,3,4,1],[0,1,2,1]],[[1,2,2,0],[2,0,2,2],[1,4,3,1],[0,1,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,0],[1,3,1,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,0],[2,2,1,1]],[[1,2,2,0],[2,0,2,2],[1,3,4,0],[1,2,1,1]],[[1,2,2,0],[2,0,2,2],[1,4,3,0],[1,2,1,1]],[[1,2,2,0],[2,0,2,2],[1,3,3,0],[1,1,2,2]],[[1,2,2,0],[2,0,2,2],[1,3,3,0],[1,1,3,1]],[[1,2,2,0],[2,0,2,2],[1,3,4,0],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[1,4,3,0],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,0],[2,0,2,2],[1,3,2,2],[1,0,3,1]],[[1,2,2,0],[2,0,2,2],[1,3,2,3],[1,0,2,1]],[[1,2,2,0],[2,0,2,3],[1,3,2,2],[1,0,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,2,2],[0,2,3,0]],[[1,2,2,0],[2,0,2,2],[1,3,2,2],[0,3,2,0]],[[1,2,2,0],[2,0,2,2],[1,4,2,2],[0,2,2,0]],[[1,2,2,0],[2,0,2,2],[1,3,2,2],[0,1,2,2]],[[1,2,2,0],[2,0,2,2],[1,3,2,2],[0,1,3,1]],[[1,2,2,0],[2,0,2,2],[1,3,2,3],[0,1,2,1]],[[1,2,2,0],[2,0,2,3],[1,3,2,2],[0,1,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,0],[2,0,2,2],[1,3,2,1],[1,3,2,0]],[[1,2,2,0],[2,0,2,2],[1,3,2,1],[2,2,2,0]],[[1,2,2,0],[2,0,2,2],[1,4,2,1],[1,2,2,0]],[[1,2,2,0],[2,0,2,2],[1,3,2,1],[0,2,2,2]],[[1,2,2,0],[2,0,2,2],[1,3,2,1],[0,2,3,1]],[[1,2,2,0],[2,0,2,2],[1,3,2,1],[0,3,2,1]],[[1,2,2,0],[2,0,2,2],[1,4,2,1],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,2,0],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[1,3,2,0],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[1,3,2,0],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,2,0],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,4,2,0],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,1,2],[0,2,2,2]],[[1,2,2,0],[2,0,2,2],[1,3,1,2],[0,2,3,1]],[[1,2,2,0],[2,0,2,2],[1,3,1,2],[0,3,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,1,3],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,4,1,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,3],[1,3,1,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[1,3,0,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[1,3,0,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,0,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,3,0,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,4,0,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,3],[1,3,0,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[2,0,2,2],[1,2,3,2],[0,3,2,0]],[[1,2,2,0],[2,0,2,2],[1,2,3,3],[0,2,2,0]],[[1,2,2,0],[2,0,2,2],[1,2,4,2],[0,2,2,0]],[[1,2,2,0],[2,0,2,3],[1,2,3,2],[0,2,2,0]],[[1,2,2,0],[2,0,2,2],[1,2,3,2],[0,2,1,2]],[[1,2,2,0],[2,0,2,2],[1,2,3,3],[0,2,1,1]],[[1,2,2,0],[2,0,2,2],[1,2,4,2],[0,2,1,1]],[[1,2,2,0],[2,0,2,3],[1,2,3,2],[0,2,1,1]],[[1,2,2,0],[2,0,2,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,0],[2,0,2,2],[1,2,3,1],[1,3,2,0]],[[1,2,2,0],[2,0,2,2],[1,2,3,1],[2,2,2,0]],[[1,2,2,0],[2,0,2,2],[1,2,4,1],[1,2,2,0]],[[1,2,2,0],[2,0,2,2],[1,2,3,1],[0,2,2,2]],[[1,2,2,0],[2,0,2,2],[1,2,3,1],[0,2,3,1]],[[1,2,2,0],[2,0,2,2],[1,2,3,1],[0,3,2,1]],[[1,2,2,0],[2,0,2,2],[1,2,4,1],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,2,3,0],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[1,2,3,0],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[1,2,3,0],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[1,2,3,0],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,2,4,0],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,2,2,2],[0,2,2,2]],[[1,2,2,0],[2,0,2,2],[1,2,2,2],[0,2,3,1]],[[1,2,2,0],[2,0,2,2],[1,2,2,2],[0,3,2,1]],[[1,2,2,0],[2,0,2,2],[1,2,2,3],[0,2,2,1]],[[1,2,2,0],[2,0,2,3],[1,2,2,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,1,3,2],[1,2,3,0]],[[1,2,2,0],[2,0,2,2],[1,1,3,2],[1,3,2,0]],[[1,2,2,0],[2,0,2,2],[1,1,3,2],[2,2,2,0]],[[1,2,2,0],[2,0,2,2],[1,1,3,3],[1,2,2,0]],[[1,2,2,0],[2,0,2,2],[1,1,4,2],[1,2,2,0]],[[1,2,2,0],[2,0,2,3],[1,1,3,2],[1,2,2,0]],[[1,2,2,0],[2,0,2,2],[1,1,3,2],[1,2,1,2]],[[1,2,2,0],[2,0,2,2],[1,1,3,3],[1,2,1,1]],[[1,2,2,0],[2,0,2,2],[1,1,4,2],[1,2,1,1]],[[1,2,2,0],[2,0,2,3],[1,1,3,2],[1,2,1,1]],[[1,2,2,0],[2,0,2,2],[1,1,3,2],[0,2,2,2]],[[1,2,2,0],[2,0,2,2],[1,1,3,2],[0,2,3,1]],[[1,2,2,0],[2,0,2,2],[1,1,3,3],[0,2,2,1]],[[1,2,2,0],[2,0,2,3],[1,1,3,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,1,3,1],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[1,1,3,1],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[1,1,3,1],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[1,1,3,1],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,1,4,1],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,1,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[1,1,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[1,1,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[1,1,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,1,2,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,3],[1,1,2,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[1,0,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[1,0,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[1,0,3,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,3],[1,0,3,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,0,2,2],[0,3,3,2],[2,2,1,0]],[[1,2,2,0],[2,0,2,2],[0,3,3,3],[1,2,1,0]],[[1,2,2,0],[2,0,2,2],[0,3,4,2],[1,2,1,0]],[[1,2,2,0],[2,0,2,2],[0,4,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,2,3],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,2,2],[0,3,3,2],[1,2,0,2]],[[1,2,2,0],[2,0,2,2],[0,3,3,2],[1,3,0,1]],[[1,2,2,0],[2,0,2,2],[0,3,3,2],[2,2,0,1]],[[1,2,2,0],[2,0,2,2],[0,3,3,3],[1,2,0,1]],[[1,2,2,0],[2,0,2,2],[0,3,4,2],[1,2,0,1]],[[1,2,2,0],[2,0,2,2],[0,4,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,2,3],[0,3,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,2,2],[0,3,3,2],[1,1,3,0]],[[1,2,2,0],[2,0,2,2],[0,3,3,3],[1,1,2,0]],[[1,2,2,0],[2,0,2,2],[0,3,4,2],[1,1,2,0]],[[1,2,2,0],[2,0,2,2],[0,4,3,2],[1,1,2,0]],[[1,2,2,0],[2,0,2,3],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[2,0,2,2],[0,3,3,2],[1,1,1,2]],[[1,2,2,0],[2,0,2,2],[0,3,3,3],[1,1,1,1]],[[1,2,2,0],[2,0,2,2],[0,3,4,2],[1,1,1,1]],[[1,2,2,0],[2,0,2,2],[0,4,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,2,3],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,2,2],[0,3,3,2],[1,0,2,2]],[[1,2,2,0],[2,0,2,2],[0,3,3,3],[1,0,2,1]],[[1,2,2,0],[2,0,2,2],[0,3,4,2],[1,0,2,1]],[[1,2,2,0],[2,0,2,3],[0,3,3,2],[1,0,2,1]],[[1,2,2,0],[2,0,2,2],[0,3,3,1],[1,3,1,1]],[[1,2,2,0],[2,0,2,2],[0,3,3,1],[2,2,1,1]],[[1,2,2,0],[2,0,2,2],[0,3,4,1],[1,2,1,1]],[[1,2,2,0],[2,0,2,2],[0,4,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,2,2],[0,3,3,1],[1,1,2,2]],[[1,2,2,0],[2,0,2,2],[0,3,3,1],[1,1,3,1]],[[1,2,2,0],[2,0,2,2],[0,3,4,1],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[0,4,3,1],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[0,3,2,2],[1,2,3,0]],[[1,2,2,0],[2,0,2,2],[0,3,2,2],[1,3,2,0]],[[1,2,2,0],[2,0,2,2],[0,3,2,2],[2,2,2,0]],[[1,2,2,0],[2,0,2,2],[0,4,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,2,2],[0,3,2,2],[1,1,2,2]],[[1,2,2,0],[2,0,2,2],[0,3,2,2],[1,1,3,1]],[[1,2,2,0],[2,0,2,2],[0,3,2,3],[1,1,2,1]],[[1,2,2,0],[2,0,2,3],[0,3,2,2],[1,1,2,1]],[[1,2,2,0],[2,0,2,2],[0,3,2,1],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[0,3,2,1],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[0,3,2,1],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[0,3,2,1],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[0,4,2,1],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[0,3,1,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[0,3,1,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[0,3,1,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[0,3,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[0,3,1,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[0,4,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,3],[0,3,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[0,2,3,2],[1,2,3,0]],[[1,2,2,0],[2,0,2,2],[0,2,3,2],[1,3,2,0]],[[1,2,2,0],[2,0,2,2],[0,2,3,2],[2,2,2,0]],[[1,2,2,0],[2,0,2,2],[0,2,3,3],[1,2,2,0]],[[1,2,2,0],[2,0,2,2],[0,2,4,2],[1,2,2,0]],[[1,2,2,0],[2,0,2,3],[0,2,3,2],[1,2,2,0]],[[1,2,2,0],[2,0,2,2],[0,2,3,2],[1,2,1,2]],[[1,2,2,0],[2,0,2,2],[0,2,3,3],[1,2,1,1]],[[1,2,2,0],[2,0,2,2],[0,2,4,2],[1,2,1,1]],[[1,2,2,0],[2,0,2,3],[0,2,3,2],[1,2,1,1]],[[1,2,2,0],[2,0,2,2],[0,2,3,1],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[0,2,3,1],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[0,2,3,1],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[0,2,3,1],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[0,2,4,1],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[0,2,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[0,2,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[0,2,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,2],[0,2,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,2],[0,2,2,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,3],[0,2,2,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,2],[0,1,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,2],[0,1,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,2],[0,1,3,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,3],[0,1,3,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[2,0,2,1],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[2,0,2,1],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[3,0,2,1],[2,3,3,2],[1,2,0,0]],[[1,2,3,0],[2,0,2,1],[2,3,3,2],[1,2,0,0]],[[1,3,2,0],[2,0,2,1],[2,3,3,2],[1,2,0,0]],[[2,2,2,0],[2,0,2,1],[2,3,3,2],[1,2,0,0]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[2,0,2,1],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[2,0,2,1],[2,3,4,2],[1,1,1,0]],[[1,2,2,0],[2,0,2,1],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,2,1],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[3,0,2,1],[2,3,3,2],[1,1,1,0]],[[1,2,3,0],[2,0,2,1],[2,3,3,2],[1,1,1,0]],[[1,3,2,0],[2,0,2,1],[2,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,0,2,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[1,1,0,2]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[2,1,0,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,3],[1,1,0,1]],[[1,2,2,0],[2,0,2,1],[2,3,4,2],[1,1,0,1]],[[1,2,2,0],[2,0,2,1],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,2,1],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[3,0,2,1],[2,3,3,2],[1,1,0,1]],[[1,2,3,0],[2,0,2,1],[2,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,0,2,1],[2,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,0,2,1],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[1,0,3,0]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[2,0,2,1],[2,3,3,3],[1,0,2,0]],[[1,2,2,0],[2,0,2,1],[2,3,4,2],[1,0,2,0]],[[1,2,2,0],[2,0,2,1],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,2,1],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[3,0,2,1],[2,3,3,2],[1,0,2,0]],[[1,2,3,0],[2,0,2,1],[2,3,3,2],[1,0,2,0]],[[1,3,2,0],[2,0,2,1],[2,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,0,2,1],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[1,0,1,2]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[2,0,1,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,3],[1,0,1,1]],[[1,2,2,0],[2,0,2,1],[2,3,4,2],[1,0,1,1]],[[1,2,2,0],[2,0,2,1],[2,4,3,2],[1,0,1,1]],[[1,2,2,0],[2,0,2,1],[3,3,3,2],[1,0,1,1]],[[1,2,2,0],[3,0,2,1],[2,3,3,2],[1,0,1,1]],[[1,2,3,0],[2,0,2,1],[2,3,3,2],[1,0,1,1]],[[1,3,2,0],[2,0,2,1],[2,3,3,2],[1,0,1,1]],[[2,2,2,0],[2,0,2,1],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,0,2,1],[2,3,3,3],[0,2,1,0]],[[1,2,2,0],[2,0,2,1],[2,3,4,2],[0,2,1,0]],[[1,2,2,0],[2,0,2,1],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,2,1],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[3,0,2,1],[2,3,3,2],[0,2,1,0]],[[1,2,3,0],[2,0,2,1],[2,3,3,2],[0,2,1,0]],[[1,3,2,0],[2,0,2,1],[2,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,0,2,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[0,2,0,2]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[0,3,0,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,3],[0,2,0,1]],[[1,2,2,0],[2,0,2,1],[2,3,4,2],[0,2,0,1]],[[1,2,2,0],[2,0,2,1],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[2,0,2,1],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[3,0,2,1],[2,3,3,2],[0,2,0,1]],[[1,2,3,0],[2,0,2,1],[2,3,3,2],[0,2,0,1]],[[1,3,2,0],[2,0,2,1],[2,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,0,2,1],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[0,1,3,0]],[[1,2,2,0],[2,0,2,1],[2,3,3,3],[0,1,2,0]],[[1,2,2,0],[2,0,2,1],[2,3,4,2],[0,1,2,0]],[[1,2,2,0],[2,0,2,1],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,2,1],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[3,0,2,1],[2,3,3,2],[0,1,2,0]],[[1,2,3,0],[2,0,2,1],[2,3,3,2],[0,1,2,0]],[[1,3,2,0],[2,0,2,1],[2,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,0,2,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[0,1,1,2]],[[1,2,2,0],[2,0,2,1],[2,3,3,3],[0,1,1,1]],[[1,2,2,0],[2,0,2,1],[2,3,4,2],[0,1,1,1]],[[1,2,2,0],[2,0,2,1],[2,4,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,2,1],[3,3,3,2],[0,1,1,1]],[[1,2,2,0],[3,0,2,1],[2,3,3,2],[0,1,1,1]],[[1,2,3,0],[2,0,2,1],[2,3,3,2],[0,1,1,1]],[[1,3,2,0],[2,0,2,1],[2,3,3,2],[0,1,1,1]],[[2,2,2,0],[2,0,2,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,2],[0,0,2,2]],[[1,2,2,0],[2,0,2,1],[2,3,3,3],[0,0,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,4,2],[0,0,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[2,0,2,1],[2,4,3,1],[1,2,0,1]],[[1,2,2,0],[2,0,2,1],[3,3,3,1],[1,2,0,1]],[[1,2,2,0],[3,0,2,1],[2,3,3,1],[1,2,0,1]],[[1,3,2,0],[2,0,2,1],[2,3,3,1],[1,2,0,1]],[[0,3,2,1],[2,3,1,2],[2,3,3,1],[1,0,0,0]],[[0,2,3,1],[2,3,1,2],[2,3,3,1],[1,0,0,0]],[[0,2,2,2],[2,3,1,2],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[3,3,1,2],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[2,4,1,2],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[2,3,1,3],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[2,3,1,2],[3,3,3,1],[1,0,0,0]],[[2,2,2,0],[2,0,2,1],[2,3,3,1],[1,2,0,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[2,0,2,1],[2,3,4,1],[1,1,1,1]],[[1,2,2,0],[2,0,2,1],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,2,1],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,0,2,1],[2,3,3,1],[1,1,1,1]],[[1,2,3,0],[2,0,2,1],[2,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,0,2,1],[2,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,0,2,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,1],[1,0,2,2]],[[1,2,2,0],[2,0,2,1],[2,3,3,1],[1,0,3,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,4,1],[1,0,2,1]],[[1,2,2,0],[2,0,2,1],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[2,0,2,1],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[3,0,2,1],[2,3,3,1],[1,0,2,1]],[[1,2,3,0],[2,0,2,1],[2,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,0,2,1],[2,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,0,2,1],[2,3,3,1],[1,0,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[2,0,2,1],[2,3,4,1],[0,2,1,1]],[[1,2,2,0],[2,0,2,1],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,2,1],[3,3,3,1],[0,2,1,1]],[[1,2,2,0],[3,0,2,1],[2,3,3,1],[0,2,1,1]],[[1,2,3,0],[2,0,2,1],[2,3,3,1],[0,2,1,1]],[[1,3,2,0],[2,0,2,1],[2,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,0,2,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,1],[0,1,2,2]],[[1,2,2,0],[2,0,2,1],[2,3,3,1],[0,1,3,1]],[[1,2,2,0],[2,0,2,1],[2,3,4,1],[0,1,2,1]],[[1,2,2,0],[2,0,2,1],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[2,0,2,1],[3,3,3,1],[0,1,2,1]],[[1,2,2,0],[3,0,2,1],[2,3,3,1],[0,1,2,1]],[[1,2,3,0],[2,0,2,1],[2,3,3,1],[0,1,2,1]],[[1,3,2,0],[2,0,2,1],[2,3,3,1],[0,1,2,1]],[[2,2,2,0],[2,0,2,1],[2,3,3,1],[0,1,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,0],[2,1,2,1]],[[1,2,2,0],[2,0,2,1],[2,4,3,0],[1,1,2,1]],[[1,2,2,0],[2,0,2,1],[3,3,3,0],[1,1,2,1]],[[1,2,2,0],[3,0,2,1],[2,3,3,0],[1,1,2,1]],[[1,3,2,0],[2,0,2,1],[2,3,3,0],[1,1,2,1]],[[2,2,2,0],[2,0,2,1],[2,3,3,0],[1,1,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,0],[0,2,3,1]],[[1,2,2,0],[2,0,2,1],[2,3,3,0],[0,3,2,1]],[[1,2,2,0],[2,0,2,1],[2,4,3,0],[0,2,2,1]],[[1,2,2,0],[2,0,2,1],[3,3,3,0],[0,2,2,1]],[[1,2,2,0],[3,0,2,1],[2,3,3,0],[0,2,2,1]],[[1,3,2,0],[2,0,2,1],[2,3,3,0],[0,2,2,1]],[[2,2,2,0],[2,0,2,1],[2,3,3,0],[0,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[2,0,2,1],[2,4,2,2],[1,1,2,0]],[[1,2,2,0],[2,0,2,1],[3,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,0,2,1],[2,3,2,2],[1,1,2,0]],[[1,2,3,0],[2,0,2,1],[2,3,2,2],[1,1,2,0]],[[1,3,2,0],[2,0,2,1],[2,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,0,2,1],[2,3,2,2],[1,1,2,0]],[[1,2,2,0],[2,0,2,1],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[2,0,2,1],[2,3,2,2],[1,0,3,1]],[[1,2,2,0],[2,0,2,1],[2,3,2,3],[1,0,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,2,2],[0,2,3,0]],[[1,2,2,0],[2,0,2,1],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[2,0,2,1],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[2,0,2,1],[3,3,2,2],[0,2,2,0]],[[1,2,2,0],[3,0,2,1],[2,3,2,2],[0,2,2,0]],[[1,2,3,0],[2,0,2,1],[2,3,2,2],[0,2,2,0]],[[1,3,2,0],[2,0,2,1],[2,3,2,2],[0,2,2,0]],[[2,2,2,0],[2,0,2,1],[2,3,2,2],[0,2,2,0]],[[1,2,2,0],[2,0,2,1],[2,3,2,2],[0,1,2,2]],[[1,2,2,0],[2,0,2,1],[2,3,2,2],[0,1,3,1]],[[1,2,2,0],[2,0,2,1],[2,3,2,3],[0,1,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[2,0,2,1],[2,4,2,1],[1,1,2,1]],[[1,2,2,0],[2,0,2,1],[3,3,2,1],[1,1,2,1]],[[1,2,2,0],[3,0,2,1],[2,3,2,1],[1,1,2,1]],[[1,2,3,0],[2,0,2,1],[2,3,2,1],[1,1,2,1]],[[1,3,2,0],[2,0,2,1],[2,3,2,1],[1,1,2,1]],[[2,2,2,0],[2,0,2,1],[2,3,2,1],[1,1,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,2,1],[0,2,2,2]],[[1,2,2,0],[2,0,2,1],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[2,0,2,1],[2,3,2,1],[0,3,2,1]],[[1,2,2,0],[2,0,2,1],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[2,0,2,1],[3,3,2,1],[0,2,2,1]],[[1,2,2,0],[3,0,2,1],[2,3,2,1],[0,2,2,1]],[[1,2,3,0],[2,0,2,1],[2,3,2,1],[0,2,2,1]],[[1,3,2,0],[2,0,2,1],[2,3,2,1],[0,2,2,1]],[[2,2,2,0],[2,0,2,1],[2,3,2,1],[0,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,1,2],[2,1,2,1]],[[1,2,2,0],[2,0,2,1],[2,4,1,2],[1,1,2,1]],[[1,2,2,0],[2,0,2,1],[3,3,1,2],[1,1,2,1]],[[1,2,2,0],[3,0,2,1],[2,3,1,2],[1,1,2,1]],[[1,2,3,0],[2,0,2,1],[2,3,1,2],[1,1,2,1]],[[1,3,2,0],[2,0,2,1],[2,3,1,2],[1,1,2,1]],[[2,2,2,0],[2,0,2,1],[2,3,1,2],[1,1,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,1,2],[0,2,2,2]],[[1,2,2,0],[2,0,2,1],[2,3,1,2],[0,2,3,1]],[[1,2,2,0],[2,0,2,1],[2,3,1,2],[0,3,2,1]],[[1,2,2,0],[2,0,2,1],[2,3,1,3],[0,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,4,1,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,1],[3,3,1,2],[0,2,2,1]],[[1,2,2,0],[3,0,2,1],[2,3,1,2],[0,2,2,1]],[[1,2,3,0],[2,0,2,1],[2,3,1,2],[0,2,2,1]],[[1,3,2,0],[2,0,2,1],[2,3,1,2],[0,2,2,1]],[[2,2,2,0],[2,0,2,1],[2,3,1,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[2,0,2,1],[2,2,3,2],[2,2,1,0]],[[1,2,2,0],[2,0,2,1],[3,2,3,2],[1,2,1,0]],[[1,2,2,0],[3,0,2,1],[2,2,3,2],[1,2,1,0]],[[1,2,3,0],[2,0,2,1],[2,2,3,2],[1,2,1,0]],[[1,3,2,0],[2,0,2,1],[2,2,3,2],[1,2,1,0]],[[2,2,2,0],[2,0,2,1],[2,2,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,2,1],[2,2,3,2],[1,3,0,1]],[[1,2,2,0],[2,0,2,1],[2,2,3,2],[2,2,0,1]],[[1,2,2,0],[2,0,2,1],[3,2,3,2],[1,2,0,1]],[[1,2,2,0],[3,0,2,1],[2,2,3,2],[1,2,0,1]],[[1,2,3,0],[2,0,2,1],[2,2,3,2],[1,2,0,1]],[[1,3,2,0],[2,0,2,1],[2,2,3,2],[1,2,0,1]],[[2,2,2,0],[2,0,2,1],[2,2,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,2,1],[2,2,3,2],[0,2,3,0]],[[1,2,2,0],[2,0,2,1],[2,2,3,2],[0,3,2,0]],[[1,2,2,0],[2,0,2,1],[2,2,3,3],[0,2,2,0]],[[1,2,2,0],[2,0,2,1],[2,2,4,2],[0,2,2,0]],[[1,2,2,0],[2,0,2,1],[2,2,3,2],[0,2,1,2]],[[1,2,2,0],[2,0,2,1],[2,2,3,3],[0,2,1,1]],[[1,2,2,0],[2,0,2,1],[2,2,4,2],[0,2,1,1]],[[1,2,2,0],[2,0,2,1],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[2,0,2,1],[2,2,3,1],[2,2,1,1]],[[1,2,2,0],[2,0,2,1],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[3,0,2,1],[2,2,3,1],[1,2,1,1]],[[1,2,3,0],[2,0,2,1],[2,2,3,1],[1,2,1,1]],[[1,3,2,0],[2,0,2,1],[2,2,3,1],[1,2,1,1]],[[2,2,2,0],[2,0,2,1],[2,2,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,2,1],[2,2,3,1],[0,2,2,2]],[[1,2,2,0],[2,0,2,1],[2,2,3,1],[0,2,3,1]],[[1,2,2,0],[2,0,2,1],[2,2,3,1],[0,3,2,1]],[[1,2,2,0],[2,0,2,1],[2,2,4,1],[0,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,2,3,0],[1,2,3,1]],[[1,2,2,0],[2,0,2,1],[2,2,3,0],[1,3,2,1]],[[1,2,2,0],[2,0,2,1],[2,2,3,0],[2,2,2,1]],[[1,2,2,0],[2,0,2,1],[3,2,3,0],[1,2,2,1]],[[1,2,2,0],[3,0,2,1],[2,2,3,0],[1,2,2,1]],[[1,3,2,0],[2,0,2,1],[2,2,3,0],[1,2,2,1]],[[2,2,2,0],[2,0,2,1],[2,2,3,0],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,2,2,2],[1,2,3,0]],[[1,2,2,0],[2,0,2,1],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[2,0,2,1],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[2,0,2,1],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[3,0,2,1],[2,2,2,2],[1,2,2,0]],[[1,2,3,0],[2,0,2,1],[2,2,2,2],[1,2,2,0]],[[1,3,2,0],[2,0,2,1],[2,2,2,2],[1,2,2,0]],[[2,2,2,0],[2,0,2,1],[2,2,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,2,1],[2,2,2,2],[0,2,2,2]],[[1,2,2,0],[2,0,2,1],[2,2,2,2],[0,2,3,1]],[[1,2,2,0],[2,0,2,1],[2,2,2,2],[0,3,2,1]],[[1,2,2,0],[2,0,2,1],[2,2,2,3],[0,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,2,2,1],[1,2,2,2]],[[1,2,2,0],[2,0,2,1],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[2,0,2,1],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[2,0,2,1],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[2,0,2,1],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[3,0,2,1],[2,2,2,1],[1,2,2,1]],[[1,2,3,0],[2,0,2,1],[2,2,2,1],[1,2,2,1]],[[1,3,2,0],[2,0,2,1],[2,2,2,1],[1,2,2,1]],[[2,2,2,0],[2,0,2,1],[2,2,2,1],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,2,1,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,1],[2,2,1,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,1],[2,2,1,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,1],[2,2,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,2,1,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[3,2,1,2],[1,2,2,1]],[[1,2,2,0],[3,0,2,1],[2,2,1,2],[1,2,2,1]],[[1,2,3,0],[2,0,2,1],[2,2,1,2],[1,2,2,1]],[[1,3,2,0],[2,0,2,1],[2,2,1,2],[1,2,2,1]],[[2,2,2,0],[2,0,2,1],[2,2,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,1,3,2],[1,2,3,0]],[[1,2,2,0],[2,0,2,1],[2,1,3,2],[1,3,2,0]],[[1,2,2,0],[2,0,2,1],[2,1,3,2],[2,2,2,0]],[[1,2,2,0],[2,0,2,1],[2,1,3,3],[1,2,2,0]],[[1,2,2,0],[2,0,2,1],[2,1,4,2],[1,2,2,0]],[[1,2,2,0],[2,0,2,1],[3,1,3,2],[1,2,2,0]],[[1,2,2,0],[3,0,2,1],[2,1,3,2],[1,2,2,0]],[[1,2,3,0],[2,0,2,1],[2,1,3,2],[1,2,2,0]],[[1,3,2,0],[2,0,2,1],[2,1,3,2],[1,2,2,0]],[[2,2,2,0],[2,0,2,1],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[2,0,2,1],[2,1,3,2],[1,2,1,2]],[[1,2,2,0],[2,0,2,1],[2,1,3,3],[1,2,1,1]],[[1,2,2,0],[2,0,2,1],[2,1,4,2],[1,2,1,1]],[[1,2,2,0],[2,0,2,1],[2,1,3,1],[1,2,2,2]],[[1,2,2,0],[2,0,2,1],[2,1,3,1],[1,2,3,1]],[[1,2,2,0],[2,0,2,1],[2,1,3,1],[1,3,2,1]],[[1,2,2,0],[2,0,2,1],[2,1,3,1],[2,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,1,4,1],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[3,1,3,1],[1,2,2,1]],[[1,2,2,0],[3,0,2,1],[2,1,3,1],[1,2,2,1]],[[1,2,3,0],[2,0,2,1],[2,1,3,1],[1,2,2,1]],[[1,3,2,0],[2,0,2,1],[2,1,3,1],[1,2,2,1]],[[2,2,2,0],[2,0,2,1],[2,1,3,1],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,1],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,1],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,1],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,1,2,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[3,1,2,2],[1,2,2,1]],[[1,2,2,0],[3,0,2,1],[2,1,2,2],[1,2,2,1]],[[1,2,3,0],[2,0,2,1],[2,1,2,2],[1,2,2,1]],[[1,3,2,0],[2,0,2,1],[2,1,2,2],[1,2,2,1]],[[2,2,2,0],[2,0,2,1],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,1],[2,0,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,1],[2,0,3,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,0,2,1],[1,3,3,2],[2,2,1,0]],[[1,2,2,0],[2,0,2,1],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[2,0,2,1],[1,3,4,2],[1,2,1,0]],[[1,2,2,0],[2,0,2,1],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,2,1],[1,3,3,2],[1,2,0,2]],[[1,2,2,0],[2,0,2,1],[1,3,3,2],[1,3,0,1]],[[1,2,2,0],[2,0,2,1],[1,3,3,2],[2,2,0,1]],[[1,2,2,0],[2,0,2,1],[1,3,3,3],[1,2,0,1]],[[1,2,2,0],[2,0,2,1],[1,3,4,2],[1,2,0,1]],[[1,2,2,0],[2,0,2,1],[1,4,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,2,1],[1,3,3,2],[1,1,3,0]],[[1,2,2,0],[2,0,2,1],[1,3,3,3],[1,1,2,0]],[[1,2,2,0],[2,0,2,1],[1,3,4,2],[1,1,2,0]],[[1,2,2,0],[2,0,2,1],[1,4,3,2],[1,1,2,0]],[[1,2,2,0],[2,0,2,1],[1,3,3,2],[1,1,1,2]],[[1,2,2,0],[2,0,2,1],[1,3,3,3],[1,1,1,1]],[[1,2,2,0],[2,0,2,1],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[2,0,2,1],[1,4,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,2,1],[1,3,3,1],[1,3,1,1]],[[1,2,2,0],[2,0,2,1],[1,3,3,1],[2,2,1,1]],[[1,2,2,0],[2,0,2,1],[1,3,4,1],[1,2,1,1]],[[1,2,2,0],[2,0,2,1],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,2,1],[1,3,3,1],[1,1,2,2]],[[1,2,2,0],[2,0,2,1],[1,3,3,1],[1,1,3,1]],[[1,2,2,0],[2,0,2,1],[1,3,4,1],[1,1,2,1]],[[1,2,2,0],[2,0,2,1],[1,4,3,1],[1,1,2,1]],[[1,2,2,0],[2,0,2,1],[1,3,3,0],[1,2,3,1]],[[1,2,2,0],[2,0,2,1],[1,3,3,0],[1,3,2,1]],[[1,2,2,0],[2,0,2,1],[1,3,3,0],[2,2,2,1]],[[1,2,2,0],[2,0,2,1],[1,4,3,0],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[1,3,2,2],[1,2,3,0]],[[1,2,2,0],[2,0,2,1],[1,3,2,2],[1,3,2,0]],[[1,2,2,0],[2,0,2,1],[1,3,2,2],[2,2,2,0]],[[1,2,2,0],[2,0,2,1],[1,4,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,2,1],[1,3,2,2],[1,1,2,2]],[[1,2,2,0],[2,0,2,1],[1,3,2,2],[1,1,3,1]],[[1,2,2,0],[2,0,2,1],[1,3,2,3],[1,1,2,1]],[[1,2,2,0],[2,0,2,1],[1,3,2,1],[1,2,2,2]],[[1,2,2,0],[2,0,2,1],[1,3,2,1],[1,2,3,1]],[[1,2,2,0],[2,0,2,1],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[2,0,2,1],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[2,0,2,1],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[1,3,1,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,1],[1,3,1,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,1],[1,3,1,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,1],[1,3,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,1],[1,3,1,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[1,4,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[1,2,3,2],[1,2,3,0]],[[1,2,2,0],[2,0,2,1],[1,2,3,2],[1,3,2,0]],[[1,2,2,0],[2,0,2,1],[1,2,3,2],[2,2,2,0]],[[1,2,2,0],[2,0,2,1],[1,2,3,3],[1,2,2,0]],[[1,2,2,0],[2,0,2,1],[1,2,4,2],[1,2,2,0]],[[1,2,2,0],[2,0,2,1],[1,2,3,2],[1,2,1,2]],[[1,2,2,0],[2,0,2,1],[1,2,3,3],[1,2,1,1]],[[1,2,2,0],[2,0,2,1],[1,2,4,2],[1,2,1,1]],[[1,2,2,0],[2,0,2,1],[1,2,3,1],[1,2,2,2]],[[1,2,2,0],[2,0,2,1],[1,2,3,1],[1,2,3,1]],[[1,2,2,0],[2,0,2,1],[1,2,3,1],[1,3,2,1]],[[1,2,2,0],[2,0,2,1],[1,2,3,1],[2,2,2,1]],[[1,2,2,0],[2,0,2,1],[1,2,4,1],[1,2,2,1]],[[1,2,2,0],[2,0,2,1],[1,2,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,1],[1,2,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,1],[1,2,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,1],[1,2,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,1],[1,2,2,3],[1,2,2,1]],[[1,2,2,0],[2,0,2,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,0],[2,0,2,0],[2,3,4,2],[1,1,1,1]],[[1,2,2,0],[2,0,2,0],[2,4,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,2,0],[3,3,3,2],[1,1,1,1]],[[1,2,2,0],[3,0,2,0],[2,3,3,2],[1,1,1,1]],[[1,3,2,0],[2,0,2,0],[2,3,3,2],[1,1,1,1]],[[2,2,2,0],[2,0,2,0],[2,3,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,2,0],[2,3,3,2],[1,0,2,2]],[[1,2,2,0],[2,0,2,0],[2,3,3,2],[1,0,3,1]],[[1,2,2,0],[2,0,2,0],[2,3,3,2],[2,0,2,1]],[[1,2,2,0],[2,0,2,0],[2,3,4,2],[1,0,2,1]],[[1,2,2,0],[2,0,2,0],[2,4,3,2],[1,0,2,1]],[[1,2,2,0],[2,0,2,0],[3,3,3,2],[1,0,2,1]],[[1,2,2,0],[3,0,2,0],[2,3,3,2],[1,0,2,1]],[[1,3,2,0],[2,0,2,0],[2,3,3,2],[1,0,2,1]],[[2,2,2,0],[2,0,2,0],[2,3,3,2],[1,0,2,1]],[[0,3,2,1],[2,3,2,0],[0,1,3,1],[1,2,2,1]],[[0,2,3,1],[2,3,2,0],[0,1,3,1],[1,2,2,1]],[[0,2,2,2],[2,3,2,0],[0,1,3,1],[1,2,2,1]],[[0,2,2,1],[3,3,2,0],[0,1,3,1],[1,2,2,1]],[[0,2,2,1],[2,4,2,0],[0,1,3,1],[1,2,2,1]],[[0,3,2,1],[2,3,2,0],[0,1,3,2],[1,2,1,1]],[[0,2,3,1],[2,3,2,0],[0,1,3,2],[1,2,1,1]],[[0,2,2,2],[2,3,2,0],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[3,3,2,0],[0,1,3,2],[1,2,1,1]],[[0,2,2,1],[2,4,2,0],[0,1,3,2],[1,2,1,1]],[[0,3,2,1],[2,3,2,0],[0,1,3,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,0],[0,1,3,2],[1,2,2,0]],[[0,2,2,2],[2,3,2,0],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[3,3,2,0],[0,1,3,2],[1,2,2,0]],[[0,2,2,1],[2,4,2,0],[0,1,3,2],[1,2,2,0]],[[0,3,2,1],[2,3,2,0],[0,2,3,1],[1,1,2,1]],[[0,2,3,1],[2,3,2,0],[0,2,3,1],[1,1,2,1]],[[0,2,2,2],[2,3,2,0],[0,2,3,1],[1,1,2,1]],[[0,2,2,1],[3,3,2,0],[0,2,3,1],[1,1,2,1]],[[0,2,2,1],[2,4,2,0],[0,2,3,1],[1,1,2,1]],[[0,3,2,1],[2,3,2,0],[0,2,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,2,0],[0,2,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,2,0],[0,2,3,1],[1,2,1,1]],[[0,2,2,1],[3,3,2,0],[0,2,3,1],[1,2,1,1]],[[0,2,2,1],[2,4,2,0],[0,2,3,1],[1,2,1,1]],[[0,3,2,1],[2,3,2,0],[0,2,3,2],[1,0,2,1]],[[0,2,3,1],[2,3,2,0],[0,2,3,2],[1,0,2,1]],[[0,2,2,2],[2,3,2,0],[0,2,3,2],[1,0,2,1]],[[0,2,2,1],[2,4,2,0],[0,2,3,2],[1,0,2,1]],[[0,3,2,1],[2,3,2,0],[0,2,3,2],[1,1,1,1]],[[0,2,3,1],[2,3,2,0],[0,2,3,2],[1,1,1,1]],[[0,2,2,2],[2,3,2,0],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[3,3,2,0],[0,2,3,2],[1,1,1,1]],[[0,2,2,1],[2,4,2,0],[0,2,3,2],[1,1,1,1]],[[0,3,2,1],[2,3,2,0],[0,2,3,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,0],[0,2,3,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,0],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[3,3,2,0],[0,2,3,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,0],[0,2,3,2],[1,1,2,0]],[[0,3,2,1],[2,3,2,0],[0,2,3,2],[1,2,0,1]],[[0,2,3,1],[2,3,2,0],[0,2,3,2],[1,2,0,1]],[[0,2,2,2],[2,3,2,0],[0,2,3,2],[1,2,0,1]],[[0,2,2,1],[3,3,2,0],[0,2,3,2],[1,2,0,1]],[[0,2,2,1],[2,4,2,0],[0,2,3,2],[1,2,0,1]],[[0,3,2,1],[2,3,2,0],[0,2,3,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,0],[0,2,3,2],[1,2,1,0]],[[0,2,2,2],[2,3,2,0],[0,2,3,2],[1,2,1,0]],[[0,2,2,1],[3,3,2,0],[0,2,3,2],[1,2,1,0]],[[0,2,2,1],[2,4,2,0],[0,2,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,2,0],[2,3,3,2],[0,3,1,1]],[[1,2,2,0],[2,0,2,0],[2,3,4,2],[0,2,1,1]],[[1,2,2,0],[2,0,2,0],[2,4,3,2],[0,2,1,1]],[[1,2,2,0],[2,0,2,0],[3,3,3,2],[0,2,1,1]],[[1,2,2,0],[3,0,2,0],[2,3,3,2],[0,2,1,1]],[[1,3,2,0],[2,0,2,0],[2,3,3,2],[0,2,1,1]],[[2,2,2,0],[2,0,2,0],[2,3,3,2],[0,2,1,1]],[[0,3,2,1],[2,3,2,0],[0,3,0,2],[1,2,2,1]],[[0,2,3,1],[2,3,2,0],[0,3,0,2],[1,2,2,1]],[[0,2,2,2],[2,3,2,0],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[3,3,2,0],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,4,2,0],[0,3,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[0,4,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[0,3,0,3],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[0,3,0,2],[2,2,2,1]],[[0,2,2,1],[2,3,2,0],[0,3,0,2],[1,3,2,1]],[[0,2,2,1],[2,3,2,0],[0,3,0,2],[1,2,3,1]],[[0,2,2,1],[2,3,2,0],[0,3,0,2],[1,2,2,2]],[[0,3,2,1],[2,3,2,0],[0,3,1,1],[1,2,2,1]],[[0,2,3,1],[2,3,2,0],[0,3,1,1],[1,2,2,1]],[[0,2,2,2],[2,3,2,0],[0,3,1,1],[1,2,2,1]],[[0,2,2,1],[3,3,2,0],[0,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,4,2,0],[0,3,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[0,4,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[0,3,1,1],[2,2,2,1]],[[0,2,2,1],[2,3,2,0],[0,3,1,1],[1,3,2,1]],[[0,2,2,1],[2,3,2,0],[0,3,1,1],[1,2,3,1]],[[0,2,2,1],[2,3,2,0],[0,3,1,1],[1,2,2,2]],[[0,3,2,1],[2,3,2,0],[0,3,1,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,0],[0,3,1,2],[1,2,2,0]],[[0,2,2,2],[2,3,2,0],[0,3,1,2],[1,2,2,0]],[[0,2,2,1],[3,3,2,0],[0,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,4,2,0],[0,3,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,0],[0,4,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,0],[0,3,1,2],[2,2,2,0]],[[0,2,2,1],[2,3,2,0],[0,3,1,2],[1,3,2,0]],[[0,2,2,1],[2,3,2,0],[0,3,1,2],[1,2,3,0]],[[0,3,2,1],[2,3,2,0],[0,3,2,1],[1,1,2,1]],[[0,2,3,1],[2,3,2,0],[0,3,2,1],[1,1,2,1]],[[0,2,2,2],[2,3,2,0],[0,3,2,1],[1,1,2,1]],[[0,2,2,1],[3,3,2,0],[0,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,4,2,0],[0,3,2,1],[1,1,2,1]],[[0,2,2,1],[2,3,2,0],[0,4,2,1],[1,1,2,1]],[[0,3,2,1],[2,3,2,0],[0,3,2,1],[1,2,1,1]],[[0,2,3,1],[2,3,2,0],[0,3,2,1],[1,2,1,1]],[[0,2,2,2],[2,3,2,0],[0,3,2,1],[1,2,1,1]],[[0,2,2,1],[3,3,2,0],[0,3,2,1],[1,2,1,1]],[[0,2,2,1],[2,4,2,0],[0,3,2,1],[1,2,1,1]],[[0,2,2,1],[2,3,2,0],[0,4,2,1],[1,2,1,1]],[[0,2,2,1],[2,3,2,0],[0,3,2,1],[2,2,1,1]],[[0,2,2,1],[2,3,2,0],[0,3,2,1],[1,3,1,1]],[[0,3,2,1],[2,3,2,0],[0,3,2,2],[1,1,1,1]],[[0,2,3,1],[2,3,2,0],[0,3,2,2],[1,1,1,1]],[[0,2,2,2],[2,3,2,0],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[3,3,2,0],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,4,2,0],[0,3,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,0],[0,4,2,2],[1,1,1,1]],[[0,3,2,1],[2,3,2,0],[0,3,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,0],[0,3,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,0],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[3,3,2,0],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,0],[0,3,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,0],[0,4,2,2],[1,1,2,0]],[[0,3,2,1],[2,3,2,0],[0,3,2,2],[1,2,0,1]],[[0,2,3,1],[2,3,2,0],[0,3,2,2],[1,2,0,1]],[[0,2,2,2],[2,3,2,0],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[3,3,2,0],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,4,2,0],[0,3,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,0],[0,4,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,0],[0,3,2,2],[2,2,0,1]],[[0,2,2,1],[2,3,2,0],[0,3,2,2],[1,3,0,1]],[[0,3,2,1],[2,3,2,0],[0,3,2,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,0],[0,3,2,2],[1,2,1,0]],[[0,2,2,2],[2,3,2,0],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[3,3,2,0],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,4,2,0],[0,3,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,0],[0,4,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,0],[0,3,2,2],[2,2,1,0]],[[0,2,2,1],[2,3,2,0],[0,3,2,2],[1,3,1,0]],[[1,2,2,0],[2,0,2,0],[2,3,3,2],[0,1,2,2]],[[1,2,2,0],[2,0,2,0],[2,3,3,2],[0,1,3,1]],[[1,2,2,0],[2,0,2,0],[2,3,4,2],[0,1,2,1]],[[1,2,2,0],[2,0,2,0],[2,4,3,2],[0,1,2,1]],[[1,2,2,0],[2,0,2,0],[3,3,3,2],[0,1,2,1]],[[1,2,2,0],[3,0,2,0],[2,3,3,2],[0,1,2,1]],[[1,3,2,0],[2,0,2,0],[2,3,3,2],[0,1,2,1]],[[2,2,2,0],[2,0,2,0],[2,3,3,2],[0,1,2,1]],[[0,3,2,1],[2,3,2,0],[0,3,3,1],[0,1,2,1]],[[0,2,3,1],[2,3,2,0],[0,3,3,1],[0,1,2,1]],[[0,2,2,2],[2,3,2,0],[0,3,3,1],[0,1,2,1]],[[0,2,2,1],[2,4,2,0],[0,3,3,1],[0,1,2,1]],[[0,3,2,1],[2,3,2,0],[0,3,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,2,0],[0,3,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,2,0],[0,3,3,1],[0,2,1,1]],[[0,2,2,1],[2,4,2,0],[0,3,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,2,0],[2,3,2,2],[2,1,2,1]],[[1,2,2,0],[2,0,2,0],[2,4,2,2],[1,1,2,1]],[[1,2,2,0],[2,0,2,0],[3,3,2,2],[1,1,2,1]],[[1,2,2,0],[3,0,2,0],[2,3,2,2],[1,1,2,1]],[[1,3,2,0],[2,0,2,0],[2,3,2,2],[1,1,2,1]],[[0,3,2,1],[2,3,2,0],[0,3,3,2],[0,0,2,1]],[[0,2,3,1],[2,3,2,0],[0,3,3,2],[0,0,2,1]],[[0,2,2,2],[2,3,2,0],[0,3,3,2],[0,0,2,1]],[[0,2,2,1],[2,4,2,0],[0,3,3,2],[0,0,2,1]],[[0,3,2,1],[2,3,2,0],[0,3,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,0],[0,3,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,0],[0,3,3,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,0],[0,3,3,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,0],[0,3,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,0],[0,3,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,0],[0,3,3,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,0],[0,3,3,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,0],[0,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,0],[0,3,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,0],[0,3,3,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,0],[0,3,3,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,0],[0,3,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,0],[0,3,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,0],[0,3,3,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,0],[0,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,0,2,0],[2,3,2,2],[1,1,2,1]],[[1,2,2,0],[2,0,2,0],[2,3,2,2],[0,2,2,2]],[[1,2,2,0],[2,0,2,0],[2,3,2,2],[0,2,3,1]],[[1,2,2,0],[2,0,2,0],[2,3,2,2],[0,3,2,1]],[[1,2,2,0],[2,0,2,0],[2,4,2,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,0],[3,3,2,2],[0,2,2,1]],[[1,2,2,0],[3,0,2,0],[2,3,2,2],[0,2,2,1]],[[1,3,2,0],[2,0,2,0],[2,3,2,2],[0,2,2,1]],[[2,2,2,0],[2,0,2,0],[2,3,2,2],[0,2,2,1]],[[0,3,2,1],[2,3,2,0],[0,3,3,2],[1,2,0,0]],[[0,2,3,1],[2,3,2,0],[0,3,3,2],[1,2,0,0]],[[0,2,2,2],[2,3,2,0],[0,3,3,2],[1,2,0,0]],[[0,2,2,1],[3,3,2,0],[0,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,4,2,0],[0,3,3,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,0],[0,4,3,2],[1,2,0,0]],[[1,2,2,0],[2,0,2,0],[2,2,3,2],[1,3,1,1]],[[1,2,2,0],[2,0,2,0],[2,2,3,2],[2,2,1,1]],[[1,2,2,0],[2,0,2,0],[3,2,3,2],[1,2,1,1]],[[1,2,2,0],[3,0,2,0],[2,2,3,2],[1,2,1,1]],[[1,3,2,0],[2,0,2,0],[2,2,3,2],[1,2,1,1]],[[2,2,2,0],[2,0,2,0],[2,2,3,2],[1,2,1,1]],[[1,2,2,0],[2,0,2,0],[2,2,3,2],[0,2,2,2]],[[1,2,2,0],[2,0,2,0],[2,2,3,2],[0,2,3,1]],[[1,2,2,0],[2,0,2,0],[2,2,3,2],[0,3,2,1]],[[1,2,2,0],[2,0,2,0],[2,2,4,2],[0,2,2,1]],[[1,2,2,0],[2,0,2,0],[2,2,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,0],[2,2,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,0],[2,2,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,0],[2,2,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,0],[3,2,2,2],[1,2,2,1]],[[1,2,2,0],[3,0,2,0],[2,2,2,2],[1,2,2,1]],[[1,3,2,0],[2,0,2,0],[2,2,2,2],[1,2,2,1]],[[2,2,2,0],[2,0,2,0],[2,2,2,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,0],[2,1,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,0],[2,1,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,0],[2,1,3,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,0],[2,1,3,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,0],[2,1,4,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,0],[3,1,3,2],[1,2,2,1]],[[1,2,2,0],[3,0,2,0],[2,1,3,2],[1,2,2,1]],[[1,3,2,0],[2,0,2,0],[2,1,3,2],[1,2,2,1]],[[2,2,2,0],[2,0,2,0],[2,1,3,2],[1,2,2,1]],[[0,3,2,1],[2,3,2,0],[1,0,3,1],[1,2,2,1]],[[0,2,3,1],[2,3,2,0],[1,0,3,1],[1,2,2,1]],[[0,2,2,2],[2,3,2,0],[1,0,3,1],[1,2,2,1]],[[0,2,2,1],[3,3,2,0],[1,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,4,2,0],[1,0,3,1],[1,2,2,1]],[[0,3,2,1],[2,3,2,0],[1,0,3,2],[1,2,1,1]],[[0,2,3,1],[2,3,2,0],[1,0,3,2],[1,2,1,1]],[[0,2,2,2],[2,3,2,0],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[3,3,2,0],[1,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,4,2,0],[1,0,3,2],[1,2,1,1]],[[0,3,2,1],[2,3,2,0],[1,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,0],[1,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,3,2,0],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[3,3,2,0],[1,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,4,2,0],[1,0,3,2],[1,2,2,0]],[[0,3,2,1],[2,3,2,0],[1,1,3,1],[0,2,2,1]],[[0,2,3,1],[2,3,2,0],[1,1,3,1],[0,2,2,1]],[[0,2,2,2],[2,3,2,0],[1,1,3,1],[0,2,2,1]],[[0,2,2,1],[3,3,2,0],[1,1,3,1],[0,2,2,1]],[[0,2,2,1],[2,4,2,0],[1,1,3,1],[0,2,2,1]],[[0,3,2,1],[2,3,2,0],[1,1,3,2],[0,2,1,1]],[[0,2,3,1],[2,3,2,0],[1,1,3,2],[0,2,1,1]],[[0,2,2,2],[2,3,2,0],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[3,3,2,0],[1,1,3,2],[0,2,1,1]],[[0,2,2,1],[2,4,2,0],[1,1,3,2],[0,2,1,1]],[[0,3,2,1],[2,3,2,0],[1,1,3,2],[0,2,2,0]],[[0,2,3,1],[2,3,2,0],[1,1,3,2],[0,2,2,0]],[[0,2,2,2],[2,3,2,0],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[3,3,2,0],[1,1,3,2],[0,2,2,0]],[[0,2,2,1],[2,4,2,0],[1,1,3,2],[0,2,2,0]],[[1,2,2,0],[2,0,2,0],[1,3,3,2],[1,3,1,1]],[[1,2,2,0],[2,0,2,0],[1,3,3,2],[2,2,1,1]],[[1,2,2,0],[2,0,2,0],[1,3,4,2],[1,2,1,1]],[[1,2,2,0],[2,0,2,0],[1,4,3,2],[1,2,1,1]],[[1,2,2,0],[2,0,2,0],[1,3,3,2],[1,1,2,2]],[[1,2,2,0],[2,0,2,0],[1,3,3,2],[1,1,3,1]],[[1,2,2,0],[2,0,2,0],[1,3,4,2],[1,1,2,1]],[[0,3,2,1],[2,3,2,0],[1,2,3,1],[0,1,2,1]],[[0,2,3,1],[2,3,2,0],[1,2,3,1],[0,1,2,1]],[[0,2,2,2],[2,3,2,0],[1,2,3,1],[0,1,2,1]],[[0,2,2,1],[3,3,2,0],[1,2,3,1],[0,1,2,1]],[[0,2,2,1],[2,4,2,0],[1,2,3,1],[0,1,2,1]],[[0,3,2,1],[2,3,2,0],[1,2,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,2,0],[1,2,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,2,0],[1,2,3,1],[0,2,1,1]],[[0,2,2,1],[3,3,2,0],[1,2,3,1],[0,2,1,1]],[[0,2,2,1],[2,4,2,0],[1,2,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,2,0],[1,2,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,2,0],[1,2,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,2,0],[1,2,3,1],[1,0,2,1]],[[0,2,2,1],[3,3,2,0],[1,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,4,2,0],[1,2,3,1],[1,0,2,1]],[[0,3,2,1],[2,3,2,0],[1,2,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,2,0],[1,2,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,2,0],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,2,0],[1,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,2,0],[1,2,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,2,0],[1,4,3,2],[1,1,2,1]],[[1,2,2,0],[2,0,2,0],[1,3,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,0],[1,3,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,0],[1,3,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,0],[1,3,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,2,0],[1,4,2,2],[1,2,2,1]],[[1,2,2,0],[2,0,2,0],[1,2,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,2,0],[1,2,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,2,0],[1,2,3,2],[1,3,2,1]],[[1,2,2,0],[2,0,2,0],[1,2,3,2],[2,2,2,1]],[[0,3,2,1],[2,3,2,0],[1,2,3,2],[0,0,2,1]],[[0,2,3,1],[2,3,2,0],[1,2,3,2],[0,0,2,1]],[[0,2,2,2],[2,3,2,0],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[3,3,2,0],[1,2,3,2],[0,0,2,1]],[[0,2,2,1],[2,4,2,0],[1,2,3,2],[0,0,2,1]],[[0,3,2,1],[2,3,2,0],[1,2,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,0],[1,2,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,0],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[3,3,2,0],[1,2,3,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,0],[1,2,3,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,0],[1,2,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,0],[1,2,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,0],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[3,3,2,0],[1,2,3,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,0],[1,2,3,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,0],[1,2,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,0],[1,2,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,0],[1,2,3,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,0],[1,2,3,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,0],[1,2,3,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,0],[1,2,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,0],[1,2,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,0],[1,2,3,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,0],[1,2,3,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,0],[1,2,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,2,0],[1,2,4,2],[1,2,2,1]],[[0,3,2,1],[2,3,2,0],[1,2,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,0],[1,2,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,0],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[3,3,2,0],[1,2,3,2],[1,0,1,1]],[[0,2,2,1],[2,4,2,0],[1,2,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,0],[1,2,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,0],[1,2,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,0],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[3,3,2,0],[1,2,3,2],[1,0,2,0]],[[0,2,2,1],[2,4,2,0],[1,2,3,2],[1,0,2,0]],[[0,3,2,1],[2,3,2,0],[1,2,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,0],[1,2,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,0],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,0],[1,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,0],[1,2,3,2],[1,1,0,1]],[[0,3,2,1],[2,3,2,0],[1,2,3,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,0],[1,2,3,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,0],[1,2,3,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,0],[1,2,3,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,0],[1,2,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[2,0,1,2],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[2,0,1,2],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[3,0,1,2],[2,3,3,2],[1,2,0,0]],[[1,2,3,0],[2,0,1,2],[2,3,3,2],[1,2,0,0]],[[1,3,2,0],[2,0,1,2],[2,3,3,2],[1,2,0,0]],[[2,2,2,0],[2,0,1,2],[2,3,3,2],[1,2,0,0]],[[0,3,2,1],[2,3,2,0],[1,3,0,2],[0,2,2,1]],[[0,2,3,1],[2,3,2,0],[1,3,0,2],[0,2,2,1]],[[0,2,2,2],[2,3,2,0],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[3,3,2,0],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,4,2,0],[1,3,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,2,0],[1,4,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,2,0],[1,3,0,3],[0,2,2,1]],[[0,2,2,1],[2,3,2,0],[1,3,0,2],[0,3,2,1]],[[0,2,2,1],[2,3,2,0],[1,3,0,2],[0,2,3,1]],[[0,2,2,1],[2,3,2,0],[1,3,0,2],[0,2,2,2]],[[0,3,2,1],[2,3,2,0],[1,3,0,2],[1,1,2,1]],[[0,2,3,1],[2,3,2,0],[1,3,0,2],[1,1,2,1]],[[0,2,2,2],[2,3,2,0],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[3,3,2,0],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,4,2,0],[1,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,2,0],[1,4,0,2],[1,1,2,1]],[[0,3,2,1],[2,3,2,0],[1,3,1,1],[0,2,2,1]],[[0,2,3,1],[2,3,2,0],[1,3,1,1],[0,2,2,1]],[[0,2,2,2],[2,3,2,0],[1,3,1,1],[0,2,2,1]],[[0,2,2,1],[3,3,2,0],[1,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,4,2,0],[1,3,1,1],[0,2,2,1]],[[0,2,2,1],[2,3,2,0],[1,4,1,1],[0,2,2,1]],[[0,2,2,1],[2,3,2,0],[1,3,1,1],[0,3,2,1]],[[0,2,2,1],[2,3,2,0],[1,3,1,1],[0,2,3,1]],[[0,2,2,1],[2,3,2,0],[1,3,1,1],[0,2,2,2]],[[0,3,2,1],[2,3,2,0],[1,3,1,1],[1,1,2,1]],[[0,2,3,1],[2,3,2,0],[1,3,1,1],[1,1,2,1]],[[0,2,2,2],[2,3,2,0],[1,3,1,1],[1,1,2,1]],[[0,2,2,1],[3,3,2,0],[1,3,1,1],[1,1,2,1]],[[0,2,2,1],[2,4,2,0],[1,3,1,1],[1,1,2,1]],[[0,2,2,1],[2,3,2,0],[1,4,1,1],[1,1,2,1]],[[0,3,2,1],[2,3,2,0],[1,3,1,2],[0,2,2,0]],[[0,2,3,1],[2,3,2,0],[1,3,1,2],[0,2,2,0]],[[0,2,2,2],[2,3,2,0],[1,3,1,2],[0,2,2,0]],[[0,2,2,1],[3,3,2,0],[1,3,1,2],[0,2,2,0]],[[0,2,2,1],[2,4,2,0],[1,3,1,2],[0,2,2,0]],[[0,2,2,1],[2,3,2,0],[1,4,1,2],[0,2,2,0]],[[0,2,2,1],[2,3,2,0],[1,3,1,2],[0,3,2,0]],[[0,2,2,1],[2,3,2,0],[1,3,1,2],[0,2,3,0]],[[0,3,2,1],[2,3,2,0],[1,3,1,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,0],[1,3,1,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,0],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[3,3,2,0],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,0],[1,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,0],[1,4,1,2],[1,1,2,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,3],[1,1,1,0]],[[0,3,2,1],[2,3,2,0],[1,3,2,1],[0,1,2,1]],[[0,2,3,1],[2,3,2,0],[1,3,2,1],[0,1,2,1]],[[0,2,2,2],[2,3,2,0],[1,3,2,1],[0,1,2,1]],[[0,2,2,1],[3,3,2,0],[1,3,2,1],[0,1,2,1]],[[0,2,2,1],[2,4,2,0],[1,3,2,1],[0,1,2,1]],[[0,2,2,1],[2,3,2,0],[1,4,2,1],[0,1,2,1]],[[0,3,2,1],[2,3,2,0],[1,3,2,1],[0,2,1,1]],[[0,2,3,1],[2,3,2,0],[1,3,2,1],[0,2,1,1]],[[0,2,2,2],[2,3,2,0],[1,3,2,1],[0,2,1,1]],[[0,2,2,1],[3,3,2,0],[1,3,2,1],[0,2,1,1]],[[0,2,2,1],[2,4,2,0],[1,3,2,1],[0,2,1,1]],[[0,2,2,1],[2,3,2,0],[1,4,2,1],[0,2,1,1]],[[0,2,2,1],[2,3,2,0],[1,3,2,1],[0,3,1,1]],[[0,3,2,1],[2,3,2,0],[1,3,2,1],[1,0,2,1]],[[0,2,3,1],[2,3,2,0],[1,3,2,1],[1,0,2,1]],[[0,2,2,2],[2,3,2,0],[1,3,2,1],[1,0,2,1]],[[0,2,2,1],[3,3,2,0],[1,3,2,1],[1,0,2,1]],[[0,2,2,1],[2,4,2,0],[1,3,2,1],[1,0,2,1]],[[0,2,2,1],[2,3,2,0],[1,4,2,1],[1,0,2,1]],[[0,3,2,1],[2,3,2,0],[1,3,2,1],[1,1,1,1]],[[0,2,3,1],[2,3,2,0],[1,3,2,1],[1,1,1,1]],[[0,2,2,2],[2,3,2,0],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[3,3,2,0],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,4,2,0],[1,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,3,2,0],[1,4,2,1],[1,1,1,1]],[[0,3,2,1],[2,3,2,0],[1,3,2,1],[1,2,0,1]],[[0,2,3,1],[2,3,2,0],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[3,3,2,0],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,4,2,0],[1,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,0],[1,4,2,1],[1,2,0,1]],[[1,2,2,0],[2,0,1,2],[2,3,4,2],[1,1,1,0]],[[1,2,2,0],[2,0,1,2],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,1,2],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,1,3],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[3,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,3,0],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,3,2,0],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[2,2,2,0],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[1,1,0,2]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[2,1,0,1]],[[0,3,2,1],[2,3,2,0],[1,3,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,0],[1,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,0],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[3,3,2,0],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,0],[1,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,0],[1,4,2,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,0],[1,3,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,0],[1,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,0],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[3,3,2,0],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,0],[1,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,0],[1,4,2,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,0],[1,3,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,0],[1,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,0],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,0],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,0],[1,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,0],[1,4,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,0],[1,3,2,2],[0,3,0,1]],[[0,3,2,1],[2,3,2,0],[1,3,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,0],[1,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,0],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,0],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,0],[1,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,0],[1,4,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,0],[1,3,2,2],[0,3,1,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,3],[1,1,0,1]],[[1,2,2,0],[2,0,1,2],[2,3,4,2],[1,1,0,1]],[[1,2,2,0],[2,0,1,2],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,1,2],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[2,0,1,3],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[3,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,3,0],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,3,2,0],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[2,2,2,0],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[0,3,2,1],[2,3,2,0],[1,3,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,0],[1,3,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,0],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[3,3,2,0],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,4,2,0],[1,3,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,0],[1,4,2,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,0],[1,3,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,0],[1,3,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,0],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[3,3,2,0],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,4,2,0],[1,3,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,0],[1,4,2,2],[1,0,2,0]],[[0,3,2,1],[2,3,2,0],[1,3,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,0],[1,3,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,0],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,0],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,0],[1,3,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,0],[1,4,2,2],[1,1,0,1]],[[0,3,2,1],[2,3,2,0],[1,3,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,0],[1,3,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,0],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,0],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,0],[1,3,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,0],[1,4,2,2],[1,1,1,0]],[[0,3,2,1],[2,3,2,0],[1,3,2,2],[1,2,0,0]],[[0,2,3,1],[2,3,2,0],[1,3,2,2],[1,2,0,0]],[[0,2,2,2],[2,3,2,0],[1,3,2,2],[1,2,0,0]],[[0,2,2,1],[3,3,2,0],[1,3,2,2],[1,2,0,0]],[[0,2,2,1],[2,4,2,0],[1,3,2,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,0],[1,4,2,2],[1,2,0,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[1,0,3,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,0],[2,0,1,2],[2,3,4,2],[1,0,2,0]],[[1,2,2,0],[2,0,1,2],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,1,2],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,1,3],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[3,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,3,0],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,3,2,0],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[2,2,2,0],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[1,0,1,2]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[2,0,1,1]],[[1,2,2,0],[2,0,1,2],[2,3,3,3],[1,0,1,1]],[[1,2,2,0],[2,0,1,2],[2,3,4,2],[1,0,1,1]],[[1,2,2,0],[2,0,1,2],[2,4,3,2],[1,0,1,1]],[[1,2,2,0],[2,0,1,2],[3,3,3,2],[1,0,1,1]],[[1,2,2,0],[2,0,1,3],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[3,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,2,3,0],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,3,2,0],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[2,2,2,0],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,0],[1,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,3,2,0],[1,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,3,2,0],[1,3,3,1],[0,0,2,1]],[[0,2,2,1],[3,3,2,0],[1,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,4,2,0],[1,3,3,1],[0,0,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,0],[2,0,1,2],[2,3,4,2],[0,2,1,0]],[[1,2,2,0],[2,0,1,2],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,1,2],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,1,3],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[3,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,3,0],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,3,2,0],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[2,2,2,0],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[0,2,0,2]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[0,3,0,1]],[[1,2,2,0],[2,0,1,2],[2,3,3,3],[0,2,0,1]],[[1,2,2,0],[2,0,1,2],[2,3,4,2],[0,2,0,1]],[[1,2,2,0],[2,0,1,2],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[2,0,1,2],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[2,0,1,3],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[3,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,3,0],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,3,2,0],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[2,2,2,0],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,0],[1,3,3,2],[0,0,1,1]],[[0,2,3,1],[2,3,2,0],[1,3,3,2],[0,0,1,1]],[[0,2,2,2],[2,3,2,0],[1,3,3,2],[0,0,1,1]],[[0,2,2,1],[3,3,2,0],[1,3,3,2],[0,0,1,1]],[[0,2,2,1],[2,4,2,0],[1,3,3,2],[0,0,1,1]],[[0,3,2,1],[2,3,2,0],[1,3,3,2],[0,0,2,0]],[[0,2,3,1],[2,3,2,0],[1,3,3,2],[0,0,2,0]],[[0,2,2,2],[2,3,2,0],[1,3,3,2],[0,0,2,0]],[[0,2,2,1],[3,3,2,0],[1,3,3,2],[0,0,2,0]],[[0,2,2,1],[2,4,2,0],[1,3,3,2],[0,0,2,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[0,1,3,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,3],[0,1,2,0]],[[1,2,2,0],[2,0,1,2],[2,3,4,2],[0,1,2,0]],[[1,2,2,0],[2,0,1,2],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,1,2],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,1,3],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[3,0,1,2],[2,3,3,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,0],[1,3,3,2],[0,2,0,0]],[[0,2,3,1],[2,3,2,0],[1,3,3,2],[0,2,0,0]],[[0,2,2,2],[2,3,2,0],[1,3,3,2],[0,2,0,0]],[[0,2,2,1],[3,3,2,0],[1,3,3,2],[0,2,0,0]],[[0,2,2,1],[2,4,2,0],[1,3,3,2],[0,2,0,0]],[[0,2,2,1],[2,3,2,0],[1,4,3,2],[0,2,0,0]],[[1,2,3,0],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[1,3,2,0],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[2,2,2,0],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[0,1,1,2]],[[1,2,2,0],[2,0,1,2],[2,3,3,3],[0,1,1,1]],[[1,2,2,0],[2,0,1,2],[2,3,4,2],[0,1,1,1]],[[1,2,2,0],[2,0,1,2],[2,4,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,1,2],[3,3,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,1,3],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[3,0,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,3,0],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[1,3,2,0],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[2,2,2,0],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[2,0,1,2],[2,3,3,2],[0,0,2,2]],[[1,2,2,0],[2,0,1,2],[2,3,3,3],[0,0,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,4,2],[0,0,2,1]],[[1,2,2,0],[2,0,1,3],[2,3,3,2],[0,0,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,1],[2,2,1,0]],[[1,2,2,0],[2,0,1,2],[3,3,3,1],[1,2,1,0]],[[0,3,2,1],[2,3,2,0],[1,3,3,2],[1,1,0,0]],[[0,2,3,1],[2,3,2,0],[1,3,3,2],[1,1,0,0]],[[0,2,2,2],[2,3,2,0],[1,3,3,2],[1,1,0,0]],[[0,2,2,1],[3,3,2,0],[1,3,3,2],[1,1,0,0]],[[0,2,2,1],[2,4,2,0],[1,3,3,2],[1,1,0,0]],[[0,2,2,1],[2,3,2,0],[1,4,3,2],[1,1,0,0]],[[1,2,2,0],[2,0,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[2,0,1,2],[2,3,4,1],[1,1,1,1]],[[1,2,2,0],[2,0,1,2],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,1,2],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[3,0,1,2],[2,3,3,1],[1,1,1,1]],[[1,2,3,0],[2,0,1,2],[2,3,3,1],[1,1,1,1]],[[1,3,2,0],[2,0,1,2],[2,3,3,1],[1,1,1,1]],[[2,2,2,0],[2,0,1,2],[2,3,3,1],[1,1,1,1]],[[1,2,2,0],[2,0,1,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,0],[2,0,1,2],[2,3,3,1],[1,0,3,1]],[[1,2,2,0],[2,0,1,2],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,4,1],[1,0,2,1]],[[1,2,2,0],[2,0,1,2],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[2,0,1,2],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[3,0,1,2],[2,3,3,1],[1,0,2,1]],[[1,2,3,0],[2,0,1,2],[2,3,3,1],[1,0,2,1]],[[1,3,2,0],[2,0,1,2],[2,3,3,1],[1,0,2,1]],[[2,2,2,0],[2,0,1,2],[2,3,3,1],[1,0,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[2,0,1,2],[2,3,4,1],[0,2,1,1]],[[1,2,2,0],[2,0,1,2],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,1,2],[3,3,3,1],[0,2,1,1]],[[1,2,2,0],[3,0,1,2],[2,3,3,1],[0,2,1,1]],[[1,2,3,0],[2,0,1,2],[2,3,3,1],[0,2,1,1]],[[1,3,2,0],[2,0,1,2],[2,3,3,1],[0,2,1,1]],[[2,2,2,0],[2,0,1,2],[2,3,3,1],[0,2,1,1]],[[1,2,2,0],[2,0,1,2],[2,3,3,1],[0,1,2,2]],[[1,2,2,0],[2,0,1,2],[2,3,3,1],[0,1,3,1]],[[1,2,2,0],[2,0,1,2],[2,3,4,1],[0,1,2,1]],[[1,2,2,0],[2,0,1,2],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[2,0,1,2],[3,3,3,1],[0,1,2,1]],[[1,2,2,0],[3,0,1,2],[2,3,3,1],[0,1,2,1]],[[1,2,3,0],[2,0,1,2],[2,3,3,1],[0,1,2,1]],[[1,3,2,0],[2,0,1,2],[2,3,3,1],[0,1,2,1]],[[2,2,2,0],[2,0,1,2],[2,3,3,1],[0,1,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,3,0],[1,3,1,1]],[[1,2,2,0],[2,0,1,2],[2,3,3,0],[2,2,1,1]],[[1,2,2,0],[2,0,1,2],[3,3,3,0],[1,2,1,1]],[[1,2,2,0],[2,0,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[2,0,1,2],[2,4,2,2],[1,1,2,0]],[[1,2,2,0],[2,0,1,2],[3,3,2,2],[1,1,2,0]],[[1,2,2,0],[3,0,1,2],[2,3,2,2],[1,1,2,0]],[[1,2,3,0],[2,0,1,2],[2,3,2,2],[1,1,2,0]],[[1,3,2,0],[2,0,1,2],[2,3,2,2],[1,1,2,0]],[[2,2,2,0],[2,0,1,2],[2,3,2,2],[1,1,2,0]],[[1,2,2,0],[2,0,1,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[2,0,1,2],[2,3,2,2],[1,0,3,1]],[[1,2,2,0],[2,0,1,2],[2,3,2,3],[1,0,2,1]],[[0,3,2,1],[2,3,2,0],[2,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,2,0],[2,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,2,0],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,2,0],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,2,0],[2,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[3,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,0,1,3],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,0,1,2],[2,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,0,1,2],[1,3,2,1]],[[0,2,2,1],[2,3,2,0],[2,0,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,2,0],[2,0,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,2,0],[2,0,2,1],[1,2,2,1]],[[0,2,3,1],[2,3,2,0],[2,0,2,1],[1,2,2,1]],[[0,2,2,2],[2,3,2,0],[2,0,2,1],[1,2,2,1]],[[0,2,2,1],[3,3,2,0],[2,0,2,1],[1,2,2,1]],[[0,2,2,1],[2,4,2,0],[2,0,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[3,0,2,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,0,2,1],[2,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,0,2,1],[1,3,2,1]],[[0,2,2,1],[2,3,2,0],[2,0,2,1],[1,2,3,1]],[[0,2,2,1],[2,3,2,0],[2,0,2,1],[1,2,2,2]],[[0,3,2,1],[2,3,2,0],[2,0,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,0],[2,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,2,0],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[3,3,2,0],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,4,2,0],[2,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,0],[3,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,0],[2,0,2,2],[2,2,2,0]],[[0,2,2,1],[2,3,2,0],[2,0,2,2],[1,3,2,0]],[[0,2,2,1],[2,3,2,0],[2,0,2,2],[1,2,3,0]],[[0,3,2,1],[2,3,2,0],[2,0,3,1],[0,2,2,1]],[[0,2,3,1],[2,3,2,0],[2,0,3,1],[0,2,2,1]],[[0,2,2,2],[2,3,2,0],[2,0,3,1],[0,2,2,1]],[[0,2,2,1],[3,3,2,0],[2,0,3,1],[0,2,2,1]],[[0,2,2,1],[2,4,2,0],[2,0,3,1],[0,2,2,1]],[[0,2,2,1],[2,3,2,0],[3,0,3,1],[0,2,2,1]],[[0,3,2,1],[2,3,2,0],[2,0,3,1],[1,1,2,1]],[[0,2,3,1],[2,3,2,0],[2,0,3,1],[1,1,2,1]],[[0,2,2,2],[2,3,2,0],[2,0,3,1],[1,1,2,1]],[[0,2,2,1],[3,3,2,0],[2,0,3,1],[1,1,2,1]],[[0,2,2,1],[2,4,2,0],[2,0,3,1],[1,1,2,1]],[[0,2,2,1],[2,3,2,0],[3,0,3,1],[1,1,2,1]],[[0,2,2,1],[2,3,2,0],[2,0,3,1],[2,1,2,1]],[[0,3,2,1],[2,3,2,0],[2,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,2,0],[2,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,2,0],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[3,3,2,0],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,4,2,0],[2,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,2,0],[3,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,2,0],[2,0,3,1],[2,2,1,1]],[[0,2,2,1],[2,3,2,0],[2,0,3,1],[1,3,1,1]],[[0,3,2,1],[2,3,2,0],[2,0,3,2],[0,2,1,1]],[[0,2,3,1],[2,3,2,0],[2,0,3,2],[0,2,1,1]],[[0,2,2,2],[2,3,2,0],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[3,3,2,0],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,4,2,0],[2,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,3,2,0],[3,0,3,2],[0,2,1,1]],[[0,3,2,1],[2,3,2,0],[2,0,3,2],[0,2,2,0]],[[0,2,3,1],[2,3,2,0],[2,0,3,2],[0,2,2,0]],[[0,2,2,2],[2,3,2,0],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[3,3,2,0],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,4,2,0],[2,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,3,2,0],[3,0,3,2],[0,2,2,0]],[[0,3,2,1],[2,3,2,0],[2,0,3,2],[1,1,1,1]],[[0,2,3,1],[2,3,2,0],[2,0,3,2],[1,1,1,1]],[[0,2,2,2],[2,3,2,0],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[3,3,2,0],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,4,2,0],[2,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,0],[3,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,0],[2,0,3,2],[2,1,1,1]],[[0,3,2,1],[2,3,2,0],[2,0,3,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,0],[2,0,3,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,0],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[3,3,2,0],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,0],[2,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,0],[3,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,0],[2,0,3,2],[2,1,2,0]],[[0,3,2,1],[2,3,2,0],[2,0,3,2],[1,2,0,1]],[[0,2,3,1],[2,3,2,0],[2,0,3,2],[1,2,0,1]],[[0,2,2,2],[2,3,2,0],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[3,3,2,0],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[2,4,2,0],[2,0,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,0],[3,0,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,0],[2,0,3,2],[2,2,0,1]],[[0,2,2,1],[2,3,2,0],[2,0,3,2],[1,3,0,1]],[[0,3,2,1],[2,3,2,0],[2,0,3,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,0],[2,0,3,2],[1,2,1,0]],[[0,2,2,2],[2,3,2,0],[2,0,3,2],[1,2,1,0]],[[0,2,2,1],[3,3,2,0],[2,0,3,2],[1,2,1,0]],[[0,2,2,1],[2,4,2,0],[2,0,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,0],[3,0,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,0],[2,0,3,2],[2,2,1,0]],[[0,2,2,1],[2,3,2,0],[2,0,3,2],[1,3,1,0]],[[1,2,2,0],[2,0,1,3],[2,3,2,2],[1,0,2,1]],[[0,3,2,1],[2,3,2,0],[2,1,0,2],[1,2,2,1]],[[0,2,3,1],[2,3,2,0],[2,1,0,2],[1,2,2,1]],[[0,2,2,2],[2,3,2,0],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[3,3,2,0],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,4,2,0],[2,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[3,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,1,0,3],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,1,0,2],[2,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,1,0,2],[1,3,2,1]],[[0,2,2,1],[2,3,2,0],[2,1,0,2],[1,2,3,1]],[[0,2,2,1],[2,3,2,0],[2,1,0,2],[1,2,2,2]],[[0,3,2,1],[2,3,2,0],[2,1,1,1],[1,2,2,1]],[[0,2,3,1],[2,3,2,0],[2,1,1,1],[1,2,2,1]],[[0,2,2,2],[2,3,2,0],[2,1,1,1],[1,2,2,1]],[[0,2,2,1],[3,3,2,0],[2,1,1,1],[1,2,2,1]],[[0,2,2,1],[2,4,2,0],[2,1,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[3,1,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,1,1,1],[2,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,1,1,1],[1,3,2,1]],[[0,2,2,1],[2,3,2,0],[2,1,1,1],[1,2,3,1]],[[0,2,2,1],[2,3,2,0],[2,1,1,1],[1,2,2,2]],[[0,3,2,1],[2,3,2,0],[2,1,1,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,0],[2,1,1,2],[1,2,2,0]],[[0,2,2,2],[2,3,2,0],[2,1,1,2],[1,2,2,0]],[[0,2,2,1],[3,3,2,0],[2,1,1,2],[1,2,2,0]],[[0,2,2,1],[2,4,2,0],[2,1,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,0],[3,1,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,0],[2,1,1,2],[2,2,2,0]],[[0,2,2,1],[2,3,2,0],[2,1,1,2],[1,3,2,0]],[[0,2,2,1],[2,3,2,0],[2,1,1,2],[1,2,3,0]],[[0,3,2,1],[2,3,2,0],[2,1,2,1],[1,2,1,1]],[[0,2,3,1],[2,3,2,0],[2,1,2,1],[1,2,1,1]],[[0,2,2,2],[2,3,2,0],[2,1,2,1],[1,2,1,1]],[[0,2,2,1],[3,3,2,0],[2,1,2,1],[1,2,1,1]],[[0,2,2,1],[2,4,2,0],[2,1,2,1],[1,2,1,1]],[[0,2,2,1],[2,3,2,0],[3,1,2,1],[1,2,1,1]],[[0,2,2,1],[2,3,2,0],[2,1,2,1],[2,2,1,1]],[[0,2,2,1],[2,3,2,0],[2,1,2,1],[1,3,1,1]],[[0,3,2,1],[2,3,2,0],[2,1,2,2],[1,2,0,1]],[[0,2,3,1],[2,3,2,0],[2,1,2,2],[1,2,0,1]],[[0,2,2,2],[2,3,2,0],[2,1,2,2],[1,2,0,1]],[[0,2,2,1],[3,3,2,0],[2,1,2,2],[1,2,0,1]],[[0,2,2,1],[2,4,2,0],[2,1,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,0],[3,1,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,0],[2,1,2,2],[2,2,0,1]],[[0,2,2,1],[2,3,2,0],[2,1,2,2],[1,3,0,1]],[[0,3,2,1],[2,3,2,0],[2,1,2,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,0],[2,1,2,2],[1,2,1,0]],[[0,2,2,2],[2,3,2,0],[2,1,2,2],[1,2,1,0]],[[0,2,2,1],[3,3,2,0],[2,1,2,2],[1,2,1,0]],[[0,2,2,1],[2,4,2,0],[2,1,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,0],[3,1,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,0],[2,1,2,2],[2,2,1,0]],[[0,2,2,1],[2,3,2,0],[2,1,2,2],[1,3,1,0]],[[1,2,2,0],[2,0,1,2],[2,3,2,2],[0,2,3,0]],[[1,2,2,0],[2,0,1,2],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[2,0,1,2],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[2,0,1,2],[3,3,2,2],[0,2,2,0]],[[1,2,2,0],[3,0,1,2],[2,3,2,2],[0,2,2,0]],[[1,2,3,0],[2,0,1,2],[2,3,2,2],[0,2,2,0]],[[1,3,2,0],[2,0,1,2],[2,3,2,2],[0,2,2,0]],[[2,2,2,0],[2,0,1,2],[2,3,2,2],[0,2,2,0]],[[1,2,2,0],[2,0,1,2],[2,3,2,2],[0,1,2,2]],[[1,2,2,0],[2,0,1,2],[2,3,2,2],[0,1,3,1]],[[1,2,2,0],[2,0,1,2],[2,3,2,3],[0,1,2,1]],[[0,3,2,1],[2,3,2,0],[2,1,3,1],[0,1,2,1]],[[0,2,3,1],[2,3,2,0],[2,1,3,1],[0,1,2,1]],[[0,2,2,2],[2,3,2,0],[2,1,3,1],[0,1,2,1]],[[0,2,2,1],[3,3,2,0],[2,1,3,1],[0,1,2,1]],[[0,2,2,1],[2,4,2,0],[2,1,3,1],[0,1,2,1]],[[0,2,2,1],[2,3,2,0],[3,1,3,1],[0,1,2,1]],[[0,3,2,1],[2,3,2,0],[2,1,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,2,0],[2,1,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,2,0],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[3,3,2,0],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,4,2,0],[2,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,2,0],[3,1,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,2,0],[2,1,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,2,0],[2,1,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,2,0],[2,1,3,1],[1,0,2,1]],[[0,2,2,1],[3,3,2,0],[2,1,3,1],[1,0,2,1]],[[0,2,2,1],[2,4,2,0],[2,1,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,2,0],[3,1,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,2,0],[2,1,3,1],[2,0,2,1]],[[0,3,2,1],[2,3,2,0],[2,1,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,2,0],[2,1,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,2,0],[2,1,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,2,0],[2,1,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,2,0],[2,1,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,2,0],[3,1,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,2,0],[2,1,3,1],[2,1,1,1]],[[1,2,2,0],[2,0,1,3],[2,3,2,2],[0,1,2,1]],[[0,3,2,1],[2,3,2,0],[2,1,3,2],[0,0,2,1]],[[0,2,3,1],[2,3,2,0],[2,1,3,2],[0,0,2,1]],[[0,2,2,2],[2,3,2,0],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[3,3,2,0],[2,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,4,2,0],[2,1,3,2],[0,0,2,1]],[[0,3,2,1],[2,3,2,0],[2,1,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,0],[2,1,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,0],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[3,3,2,0],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,0],[2,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,0],[3,1,3,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,0],[2,1,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,0],[2,1,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,0],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[3,3,2,0],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,0],[2,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,0],[3,1,3,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,0],[2,1,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,0],[2,1,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,0],[2,1,3,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,0],[2,1,3,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,0],[2,1,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,0],[3,1,3,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,0],[2,1,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,0],[2,1,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,0],[2,1,3,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,0],[2,1,3,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,0],[2,1,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,0],[3,1,3,2],[0,2,1,0]],[[1,2,2,0],[2,0,1,2],[2,3,2,1],[1,3,2,0]],[[1,2,2,0],[2,0,1,2],[2,3,2,1],[2,2,2,0]],[[1,2,2,0],[2,0,1,2],[3,3,2,1],[1,2,2,0]],[[1,2,2,0],[2,0,1,2],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[2,0,1,2],[2,4,2,1],[1,1,2,1]],[[1,2,2,0],[2,0,1,2],[3,3,2,1],[1,1,2,1]],[[0,3,2,1],[2,3,2,0],[2,1,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,0],[2,1,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,0],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[3,3,2,0],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,4,2,0],[2,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,0],[3,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,0],[2,1,3,2],[2,0,1,1]],[[0,3,2,1],[2,3,2,0],[2,1,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,0],[2,1,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,0],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[3,3,2,0],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,4,2,0],[2,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,0],[3,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,0],[2,1,3,2],[2,0,2,0]],[[0,3,2,1],[2,3,2,0],[2,1,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,0],[2,1,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,0],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,0],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,0],[2,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,0],[3,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,0],[2,1,3,2],[2,1,0,1]],[[0,3,2,1],[2,3,2,0],[2,1,3,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,0],[2,1,3,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,0],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,0],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,0],[2,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,0],[3,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,0],[2,1,3,2],[2,1,1,0]],[[1,2,2,0],[3,0,1,2],[2,3,2,1],[1,1,2,1]],[[1,2,3,0],[2,0,1,2],[2,3,2,1],[1,1,2,1]],[[1,3,2,0],[2,0,1,2],[2,3,2,1],[1,1,2,1]],[[2,2,2,0],[2,0,1,2],[2,3,2,1],[1,1,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,2,1],[0,2,2,2]],[[1,2,2,0],[2,0,1,2],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[2,0,1,2],[2,3,2,1],[0,3,2,1]],[[1,2,2,0],[2,0,1,2],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[2,0,1,2],[3,3,2,1],[0,2,2,1]],[[1,2,2,0],[3,0,1,2],[2,3,2,1],[0,2,2,1]],[[1,2,3,0],[2,0,1,2],[2,3,2,1],[0,2,2,1]],[[1,3,2,0],[2,0,1,2],[2,3,2,1],[0,2,2,1]],[[2,2,2,0],[2,0,1,2],[2,3,2,1],[0,2,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,2,0],[1,2,3,1]],[[1,2,2,0],[2,0,1,2],[2,3,2,0],[1,3,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,2,0],[2,2,2,1]],[[1,2,2,0],[2,0,1,2],[3,3,2,0],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,1,2],[2,1,2,1]],[[1,2,2,0],[2,0,1,2],[2,4,1,2],[1,1,2,1]],[[1,2,2,0],[2,0,1,2],[3,3,1,2],[1,1,2,1]],[[1,2,2,0],[3,0,1,2],[2,3,1,2],[1,1,2,1]],[[1,2,3,0],[2,0,1,2],[2,3,1,2],[1,1,2,1]],[[1,3,2,0],[2,0,1,2],[2,3,1,2],[1,1,2,1]],[[2,2,2,0],[2,0,1,2],[2,3,1,2],[1,1,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,1,2],[0,2,2,2]],[[1,2,2,0],[2,0,1,2],[2,3,1,2],[0,2,3,1]],[[1,2,2,0],[2,0,1,2],[2,3,1,2],[0,3,2,1]],[[1,2,2,0],[2,0,1,2],[2,3,1,3],[0,2,2,1]],[[1,2,2,0],[2,0,1,2],[2,4,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,2,0],[2,2,0,1],[1,2,2,1]],[[0,2,3,1],[2,3,2,0],[2,2,0,1],[1,2,2,1]],[[0,2,2,1],[3,3,2,0],[2,2,0,1],[1,2,2,1]],[[0,2,2,1],[2,4,2,0],[2,2,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[3,2,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,2,0,1],[2,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,2,0,1],[1,3,2,1]],[[0,3,2,1],[2,3,2,0],[2,2,0,2],[0,2,2,1]],[[0,2,3,1],[2,3,2,0],[2,2,0,2],[0,2,2,1]],[[0,2,2,2],[2,3,2,0],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[3,3,2,0],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,4,2,0],[2,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,2,0],[3,2,0,2],[0,2,2,1]],[[0,3,2,1],[2,3,2,0],[2,2,0,2],[1,1,2,1]],[[0,2,3,1],[2,3,2,0],[2,2,0,2],[1,1,2,1]],[[0,2,2,2],[2,3,2,0],[2,2,0,2],[1,1,2,1]],[[0,2,2,1],[3,3,2,0],[2,2,0,2],[1,1,2,1]],[[0,2,2,1],[2,4,2,0],[2,2,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,2,0],[3,2,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,2,0],[2,2,0,2],[2,1,2,1]],[[0,3,2,1],[2,3,2,0],[2,2,0,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,0],[2,2,0,2],[1,2,2,0]],[[0,2,2,1],[3,3,2,0],[2,2,0,2],[1,2,2,0]],[[0,2,2,1],[2,4,2,0],[2,2,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,0],[3,2,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,0],[2,2,0,2],[2,2,2,0]],[[0,2,2,1],[2,3,2,0],[2,2,0,2],[1,3,2,0]],[[0,3,2,1],[2,3,2,0],[2,2,1,1],[0,2,2,1]],[[0,2,3,1],[2,3,2,0],[2,2,1,1],[0,2,2,1]],[[0,2,2,2],[2,3,2,0],[2,2,1,1],[0,2,2,1]],[[0,2,2,1],[3,3,2,0],[2,2,1,1],[0,2,2,1]],[[0,2,2,1],[2,4,2,0],[2,2,1,1],[0,2,2,1]],[[0,2,2,1],[2,3,2,0],[3,2,1,1],[0,2,2,1]],[[0,3,2,1],[2,3,2,0],[2,2,1,1],[1,1,2,1]],[[0,2,3,1],[2,3,2,0],[2,2,1,1],[1,1,2,1]],[[0,2,2,2],[2,3,2,0],[2,2,1,1],[1,1,2,1]],[[0,2,2,1],[3,3,2,0],[2,2,1,1],[1,1,2,1]],[[0,2,2,1],[2,4,2,0],[2,2,1,1],[1,1,2,1]],[[0,2,2,1],[2,3,2,0],[3,2,1,1],[1,1,2,1]],[[0,2,2,1],[2,3,2,0],[2,2,1,1],[2,1,2,1]],[[0,3,2,1],[2,3,2,0],[2,2,1,2],[0,2,2,0]],[[0,2,3,1],[2,3,2,0],[2,2,1,2],[0,2,2,0]],[[0,2,2,2],[2,3,2,0],[2,2,1,2],[0,2,2,0]],[[0,2,2,1],[3,3,2,0],[2,2,1,2],[0,2,2,0]],[[0,2,2,1],[2,4,2,0],[2,2,1,2],[0,2,2,0]],[[0,2,2,1],[2,3,2,0],[3,2,1,2],[0,2,2,0]],[[0,3,2,1],[2,3,2,0],[2,2,1,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,0],[2,2,1,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,0],[2,2,1,2],[1,1,2,0]],[[0,2,2,1],[3,3,2,0],[2,2,1,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,0],[2,2,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,0],[3,2,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,0],[2,2,1,2],[2,1,2,0]],[[1,2,2,0],[2,0,1,2],[3,3,1,2],[0,2,2,1]],[[1,2,2,0],[2,0,1,3],[2,3,1,2],[0,2,2,1]],[[1,2,2,0],[3,0,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,3,0],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[1,3,2,0],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[2,2,2,0],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,2,0],[2,2,2,1],[0,1,2,1]],[[0,2,3,1],[2,3,2,0],[2,2,2,1],[0,1,2,1]],[[0,2,2,2],[2,3,2,0],[2,2,2,1],[0,1,2,1]],[[0,2,2,1],[3,3,2,0],[2,2,2,1],[0,1,2,1]],[[0,2,2,1],[2,4,2,0],[2,2,2,1],[0,1,2,1]],[[0,2,2,1],[2,3,2,0],[3,2,2,1],[0,1,2,1]],[[0,3,2,1],[2,3,2,0],[2,2,2,1],[0,2,1,1]],[[0,2,3,1],[2,3,2,0],[2,2,2,1],[0,2,1,1]],[[0,2,2,2],[2,3,2,0],[2,2,2,1],[0,2,1,1]],[[0,2,2,1],[3,3,2,0],[2,2,2,1],[0,2,1,1]],[[0,2,2,1],[2,4,2,0],[2,2,2,1],[0,2,1,1]],[[0,2,2,1],[2,3,2,0],[3,2,2,1],[0,2,1,1]],[[0,3,2,1],[2,3,2,0],[2,2,2,1],[1,0,2,1]],[[0,2,3,1],[2,3,2,0],[2,2,2,1],[1,0,2,1]],[[0,2,2,2],[2,3,2,0],[2,2,2,1],[1,0,2,1]],[[0,2,2,1],[3,3,2,0],[2,2,2,1],[1,0,2,1]],[[0,2,2,1],[2,4,2,0],[2,2,2,1],[1,0,2,1]],[[0,2,2,1],[2,3,2,0],[3,2,2,1],[1,0,2,1]],[[0,2,2,1],[2,3,2,0],[2,2,2,1],[2,0,2,1]],[[0,3,2,1],[2,3,2,0],[2,2,2,1],[1,1,1,1]],[[0,2,3,1],[2,3,2,0],[2,2,2,1],[1,1,1,1]],[[0,2,2,2],[2,3,2,0],[2,2,2,1],[1,1,1,1]],[[0,2,2,1],[3,3,2,0],[2,2,2,1],[1,1,1,1]],[[0,2,2,1],[2,4,2,0],[2,2,2,1],[1,1,1,1]],[[0,2,2,1],[2,3,2,0],[3,2,2,1],[1,1,1,1]],[[0,2,2,1],[2,3,2,0],[2,2,2,1],[2,1,1,1]],[[0,3,2,1],[2,3,2,0],[2,2,2,1],[1,2,0,1]],[[0,2,3,1],[2,3,2,0],[2,2,2,1],[1,2,0,1]],[[0,2,2,1],[3,3,2,0],[2,2,2,1],[1,2,0,1]],[[0,2,2,1],[2,4,2,0],[2,2,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,0],[3,2,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,0],[2,2,2,1],[2,2,0,1]],[[0,3,2,1],[2,3,2,0],[2,2,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,0],[2,2,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,0],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[3,3,2,0],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,0],[2,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,0],[3,2,2,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,0],[2,2,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,0],[2,2,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,0],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[3,3,2,0],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,0],[2,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,0],[3,2,2,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,0],[2,2,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,0],[2,2,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,0],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,0],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,0],[2,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,0],[3,2,2,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,0],[2,2,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,0],[2,2,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,0],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,0],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,0],[2,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,0],[3,2,2,2],[0,2,1,0]],[[1,2,2,0],[2,0,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[2,0,1,2],[2,2,3,2],[2,2,1,0]],[[1,2,2,0],[2,0,1,2],[3,2,3,2],[1,2,1,0]],[[0,3,2,1],[2,3,2,0],[2,2,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,0],[2,2,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,0],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[3,3,2,0],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,4,2,0],[2,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,0],[3,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,0],[2,2,2,2],[2,0,1,1]],[[0,3,2,1],[2,3,2,0],[2,2,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,0],[2,2,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,0],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[3,3,2,0],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,4,2,0],[2,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,0],[3,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,0],[2,2,2,2],[2,0,2,0]],[[0,3,2,1],[2,3,2,0],[2,2,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,0],[2,2,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,0],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,0],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,0],[2,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,0],[3,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,0],[2,2,2,2],[2,1,0,1]],[[0,3,2,1],[2,3,2,0],[2,2,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,0],[2,2,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,0],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,0],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,0],[2,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,0],[3,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,0],[2,2,2,2],[2,1,1,0]],[[1,2,2,0],[3,0,1,2],[2,2,3,2],[1,2,1,0]],[[1,2,3,0],[2,0,1,2],[2,2,3,2],[1,2,1,0]],[[1,3,2,0],[2,0,1,2],[2,2,3,2],[1,2,1,0]],[[2,2,2,0],[2,0,1,2],[2,2,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,1,2],[2,2,3,2],[1,3,0,1]],[[1,2,2,0],[2,0,1,2],[2,2,3,2],[2,2,0,1]],[[1,2,2,0],[2,0,1,2],[3,2,3,2],[1,2,0,1]],[[0,3,2,1],[2,3,2,0],[2,2,2,2],[1,2,0,0]],[[0,2,3,1],[2,3,2,0],[2,2,2,2],[1,2,0,0]],[[0,2,2,2],[2,3,2,0],[2,2,2,2],[1,2,0,0]],[[0,2,2,1],[3,3,2,0],[2,2,2,2],[1,2,0,0]],[[0,2,2,1],[2,4,2,0],[2,2,2,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,0],[3,2,2,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,0],[2,2,2,2],[2,2,0,0]],[[1,2,2,0],[3,0,1,2],[2,2,3,2],[1,2,0,1]],[[1,2,3,0],[2,0,1,2],[2,2,3,2],[1,2,0,1]],[[1,3,2,0],[2,0,1,2],[2,2,3,2],[1,2,0,1]],[[2,2,2,0],[2,0,1,2],[2,2,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,1,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,0],[2,0,1,2],[2,2,3,2],[0,3,2,0]],[[1,2,2,0],[2,0,1,2],[2,2,3,3],[0,2,2,0]],[[1,2,2,0],[2,0,1,2],[2,2,4,2],[0,2,2,0]],[[1,2,2,0],[2,0,1,3],[2,2,3,2],[0,2,2,0]],[[1,2,2,0],[2,0,1,2],[2,2,3,2],[0,2,1,2]],[[1,2,2,0],[2,0,1,2],[2,2,3,3],[0,2,1,1]],[[1,2,2,0],[2,0,1,2],[2,2,4,2],[0,2,1,1]],[[1,2,2,0],[2,0,1,3],[2,2,3,2],[0,2,1,1]],[[1,2,2,0],[2,0,1,2],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[2,0,1,2],[2,2,3,1],[2,2,1,1]],[[1,2,2,0],[2,0,1,2],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[3,0,1,2],[2,2,3,1],[1,2,1,1]],[[1,2,3,0],[2,0,1,2],[2,2,3,1],[1,2,1,1]],[[1,3,2,0],[2,0,1,2],[2,2,3,1],[1,2,1,1]],[[2,2,2,0],[2,0,1,2],[2,2,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,1,2],[2,2,3,1],[0,2,2,2]],[[1,2,2,0],[2,0,1,2],[2,2,3,1],[0,2,3,1]],[[1,2,2,0],[2,0,1,2],[2,2,3,1],[0,3,2,1]],[[1,2,2,0],[2,0,1,2],[2,2,4,1],[0,2,2,1]],[[1,2,2,0],[2,0,1,2],[2,2,2,2],[1,2,3,0]],[[1,2,2,0],[2,0,1,2],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[2,0,1,2],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[2,0,1,2],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[3,0,1,2],[2,2,2,2],[1,2,2,0]],[[1,2,3,0],[2,0,1,2],[2,2,2,2],[1,2,2,0]],[[1,3,2,0],[2,0,1,2],[2,2,2,2],[1,2,2,0]],[[2,2,2,0],[2,0,1,2],[2,2,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,1,2],[2,2,2,2],[0,2,2,2]],[[1,2,2,0],[2,0,1,2],[2,2,2,2],[0,2,3,1]],[[1,2,2,0],[2,0,1,2],[2,2,2,2],[0,3,2,1]],[[1,2,2,0],[2,0,1,2],[2,2,2,3],[0,2,2,1]],[[1,2,2,0],[2,0,1,3],[2,2,2,2],[0,2,2,1]],[[1,2,2,0],[2,0,1,2],[2,2,2,1],[1,2,2,2]],[[1,2,2,0],[2,0,1,2],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[2,0,1,2],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[2,0,1,2],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[2,0,1,2],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[3,0,1,2],[2,2,2,1],[1,2,2,1]],[[1,2,3,0],[2,0,1,2],[2,2,2,1],[1,2,2,1]],[[1,3,2,0],[2,0,1,2],[2,2,2,1],[1,2,2,1]],[[2,2,2,0],[2,0,1,2],[2,2,2,1],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[2,2,1,2],[1,2,2,2]],[[1,2,2,0],[2,0,1,2],[2,2,1,2],[1,2,3,1]],[[1,2,2,0],[2,0,1,2],[2,2,1,2],[1,3,2,1]],[[1,2,2,0],[2,0,1,2],[2,2,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,1,2],[2,2,1,3],[1,2,2,1]],[[0,3,2,1],[2,3,2,0],[2,2,3,2],[0,2,0,0]],[[0,2,3,1],[2,3,2,0],[2,2,3,2],[0,2,0,0]],[[0,2,2,2],[2,3,2,0],[2,2,3,2],[0,2,0,0]],[[0,2,2,1],[3,3,2,0],[2,2,3,2],[0,2,0,0]],[[0,2,2,1],[2,4,2,0],[2,2,3,2],[0,2,0,0]],[[0,2,2,1],[2,3,2,0],[3,2,3,2],[0,2,0,0]],[[1,2,2,0],[2,0,1,2],[3,2,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,1,3],[2,2,1,2],[1,2,2,1]],[[1,2,2,0],[3,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,3,0],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,3,2,0],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[2,2,2,0],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[2,1,3,2],[1,2,3,0]],[[1,2,2,0],[2,0,1,2],[2,1,3,2],[1,3,2,0]],[[1,2,2,0],[2,0,1,2],[2,1,3,2],[2,2,2,0]],[[1,2,2,0],[2,0,1,2],[2,1,3,3],[1,2,2,0]],[[1,2,2,0],[2,0,1,2],[2,1,4,2],[1,2,2,0]],[[1,2,2,0],[2,0,1,2],[3,1,3,2],[1,2,2,0]],[[1,2,2,0],[2,0,1,3],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[3,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,3,0],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,3,2,0],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[2,2,2,0],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[2,0,1,2],[2,1,3,2],[1,2,1,2]],[[1,2,2,0],[2,0,1,2],[2,1,3,3],[1,2,1,1]],[[1,2,2,0],[2,0,1,2],[2,1,4,2],[1,2,1,1]],[[1,2,2,0],[2,0,1,3],[2,1,3,2],[1,2,1,1]],[[1,2,2,0],[2,0,1,2],[2,1,3,1],[1,2,2,2]],[[1,2,2,0],[2,0,1,2],[2,1,3,1],[1,2,3,1]],[[1,2,2,0],[2,0,1,2],[2,1,3,1],[1,3,2,1]],[[1,2,2,0],[2,0,1,2],[2,1,3,1],[2,2,2,1]],[[0,3,2,1],[2,3,2,0],[2,2,3,2],[1,1,0,0]],[[0,2,3,1],[2,3,2,0],[2,2,3,2],[1,1,0,0]],[[0,2,2,2],[2,3,2,0],[2,2,3,2],[1,1,0,0]],[[0,2,2,1],[3,3,2,0],[2,2,3,2],[1,1,0,0]],[[0,2,2,1],[2,4,2,0],[2,2,3,2],[1,1,0,0]],[[0,2,2,1],[2,3,2,0],[3,2,3,2],[1,1,0,0]],[[0,2,2,1],[2,3,2,0],[2,2,3,2],[2,1,0,0]],[[1,2,2,0],[2,0,1,2],[2,1,4,1],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[3,1,3,1],[1,2,2,1]],[[1,2,2,0],[3,0,1,2],[2,1,3,1],[1,2,2,1]],[[1,2,3,0],[2,0,1,2],[2,1,3,1],[1,2,2,1]],[[1,3,2,0],[2,0,1,2],[2,1,3,1],[1,2,2,1]],[[2,2,2,0],[2,0,1,2],[2,1,3,1],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,1,2],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,1,2],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,1,2],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,1,2],[2,1,2,3],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[3,1,2,2],[1,2,2,1]],[[1,2,2,0],[2,0,1,3],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[3,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,3,0],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,3,2,0],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[2,2,2,0],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,1,2],[2,0,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,1,2],[2,0,3,3],[1,2,2,1]],[[1,2,2,0],[2,0,1,3],[2,0,3,2],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,0,1,2],[1,3,3,2],[2,2,1,0]],[[1,2,2,0],[2,0,1,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[2,0,1,2],[1,3,4,2],[1,2,1,0]],[[1,2,2,0],[2,0,1,2],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,1,3],[1,3,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,1,2],[1,3,3,2],[1,2,0,2]],[[1,2,2,0],[2,0,1,2],[1,3,3,2],[1,3,0,1]],[[1,2,2,0],[2,0,1,2],[1,3,3,2],[2,2,0,1]],[[1,2,2,0],[2,0,1,2],[1,3,3,3],[1,2,0,1]],[[1,2,2,0],[2,0,1,2],[1,3,4,2],[1,2,0,1]],[[1,2,2,0],[2,0,1,2],[1,4,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,1,3],[1,3,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,1,2],[1,3,3,2],[1,1,3,0]],[[1,2,2,0],[2,0,1,2],[1,3,3,3],[1,1,2,0]],[[1,2,2,0],[2,0,1,2],[1,3,4,2],[1,1,2,0]],[[1,2,2,0],[2,0,1,2],[1,4,3,2],[1,1,2,0]],[[1,2,2,0],[2,0,1,3],[1,3,3,2],[1,1,2,0]],[[1,2,2,0],[2,0,1,2],[1,3,3,2],[1,1,1,2]],[[1,2,2,0],[2,0,1,2],[1,3,3,3],[1,1,1,1]],[[1,2,2,0],[2,0,1,2],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[2,0,1,2],[1,4,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,1,3],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[2,0,1,2],[1,3,3,2],[0,1,2,2]],[[1,2,2,0],[2,0,1,2],[1,3,3,2],[0,1,3,1]],[[1,2,2,0],[2,0,1,2],[1,3,3,3],[0,1,2,1]],[[0,2,2,1],[3,3,2,0],[2,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[3,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,3,0,0],[2,2,2,1]],[[0,2,2,1],[2,3,2,0],[2,3,0,0],[1,3,2,1]],[[0,3,2,1],[2,3,2,0],[2,3,0,1],[0,2,2,1]],[[0,2,3,1],[2,3,2,0],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[3,3,2,0],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,4,2,0],[2,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,3,2,0],[3,3,0,1],[0,2,2,1]],[[0,3,2,1],[2,3,2,0],[2,3,0,1],[1,1,2,1]],[[0,2,3,1],[2,3,2,0],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[3,3,2,0],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,4,2,0],[2,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,3,2,0],[3,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,3,2,0],[2,3,0,1],[2,1,2,1]],[[0,3,2,1],[2,3,2,0],[2,3,0,1],[1,2,1,1]],[[0,2,3,1],[2,3,2,0],[2,3,0,1],[1,2,1,1]],[[0,2,2,1],[3,3,2,0],[2,3,0,1],[1,2,1,1]],[[0,2,2,1],[2,4,2,0],[2,3,0,1],[1,2,1,1]],[[0,2,2,1],[2,3,2,0],[3,3,0,1],[1,2,1,1]],[[0,2,2,1],[2,3,2,0],[2,3,0,1],[2,2,1,1]],[[0,3,2,1],[2,3,2,0],[2,3,0,2],[0,2,2,0]],[[0,2,3,1],[2,3,2,0],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[3,3,2,0],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,4,2,0],[2,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,3,2,0],[3,3,0,2],[0,2,2,0]],[[0,3,2,1],[2,3,2,0],[2,3,0,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,0],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[3,3,2,0],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,0],[2,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,0],[3,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,0],[2,3,0,2],[2,1,2,0]],[[0,3,2,1],[2,3,2,0],[2,3,0,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,0],[2,3,0,2],[1,2,1,0]],[[0,2,2,1],[3,3,2,0],[2,3,0,2],[1,2,1,0]],[[0,2,2,1],[2,4,2,0],[2,3,0,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,0],[3,3,0,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,0],[2,3,0,2],[2,2,1,0]],[[1,2,2,0],[2,0,1,2],[1,3,3,1],[1,3,1,1]],[[1,2,2,0],[2,0,1,2],[1,3,3,1],[2,2,1,1]],[[1,2,2,0],[2,0,1,2],[1,3,4,1],[1,2,1,1]],[[1,2,2,0],[2,0,1,2],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,1,2],[1,3,3,1],[1,1,2,2]],[[1,2,2,0],[2,0,1,2],[1,3,3,1],[1,1,3,1]],[[1,2,2,0],[2,0,1,2],[1,3,4,1],[1,1,2,1]],[[0,3,2,1],[2,3,2,0],[2,3,1,1],[0,2,1,1]],[[0,2,3,1],[2,3,2,0],[2,3,1,1],[0,2,1,1]],[[0,2,2,1],[3,3,2,0],[2,3,1,1],[0,2,1,1]],[[0,2,2,1],[2,4,2,0],[2,3,1,1],[0,2,1,1]],[[0,2,2,1],[2,3,2,0],[3,3,1,1],[0,2,1,1]],[[0,3,2,1],[2,3,2,0],[2,3,1,1],[1,1,1,1]],[[0,2,3,1],[2,3,2,0],[2,3,1,1],[1,1,1,1]],[[0,2,2,1],[3,3,2,0],[2,3,1,1],[1,1,1,1]],[[0,2,2,1],[2,4,2,0],[2,3,1,1],[1,1,1,1]],[[0,2,2,1],[2,3,2,0],[3,3,1,1],[1,1,1,1]],[[0,2,2,1],[2,3,2,0],[2,3,1,1],[2,1,1,1]],[[0,3,2,1],[2,3,2,0],[2,3,1,1],[1,2,0,1]],[[0,2,3,1],[2,3,2,0],[2,3,1,1],[1,2,0,1]],[[0,2,2,1],[3,3,2,0],[2,3,1,1],[1,2,0,1]],[[0,2,2,1],[2,4,2,0],[2,3,1,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,0],[3,3,1,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,0],[2,3,1,1],[2,2,0,1]],[[1,2,2,0],[2,0,1,2],[1,4,3,1],[1,1,2,1]],[[1,2,2,0],[2,0,1,2],[1,3,2,2],[1,2,3,0]],[[1,2,2,0],[2,0,1,2],[1,3,2,2],[1,3,2,0]],[[1,2,2,0],[2,0,1,2],[1,3,2,2],[2,2,2,0]],[[0,3,2,1],[2,3,2,0],[2,3,1,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,0],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,0],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,0],[2,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,0],[3,3,1,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,0],[2,3,1,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,0],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,0],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,0],[2,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,0],[3,3,1,2],[0,2,1,0]],[[1,2,2,0],[2,0,1,2],[1,4,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,1,2],[1,3,2,2],[1,1,2,2]],[[1,2,2,0],[2,0,1,2],[1,3,2,2],[1,1,3,1]],[[1,2,2,0],[2,0,1,2],[1,3,2,3],[1,1,2,1]],[[1,2,2,0],[2,0,1,3],[1,3,2,2],[1,1,2,1]],[[1,2,2,0],[2,0,1,2],[1,3,2,1],[1,2,2,2]],[[1,2,2,0],[2,0,1,2],[1,3,2,1],[1,2,3,1]],[[1,2,2,0],[2,0,1,2],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[2,0,1,2],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[2,0,1,2],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[1,3,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,2,0],[2,3,1,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,0],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,0],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,0],[2,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,0],[3,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,0],[2,3,1,2],[2,1,0,1]],[[0,3,2,1],[2,3,2,0],[2,3,1,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,0],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,0],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,0],[2,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,0],[3,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,0],[2,3,1,2],[2,1,1,0]],[[1,2,2,0],[2,0,1,2],[1,3,1,2],[1,2,3,1]],[[1,2,2,0],[2,0,1,2],[1,3,1,2],[1,3,2,1]],[[1,2,2,0],[2,0,1,2],[1,3,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,1,2],[1,3,1,3],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[1,4,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,1,3],[1,3,1,2],[1,2,2,1]],[[0,3,2,1],[2,3,2,0],[2,3,1,2],[1,2,0,0]],[[0,2,3,1],[2,3,2,0],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[3,3,2,0],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,4,2,0],[2,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,0],[3,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,0],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[2,0,1,2],[1,2,3,2],[1,2,3,0]],[[1,2,2,0],[2,0,1,2],[1,2,3,2],[1,3,2,0]],[[1,2,2,0],[2,0,1,2],[1,2,3,2],[2,2,2,0]],[[1,2,2,0],[2,0,1,2],[1,2,3,3],[1,2,2,0]],[[1,2,2,0],[2,0,1,2],[1,2,4,2],[1,2,2,0]],[[1,2,2,0],[2,0,1,3],[1,2,3,2],[1,2,2,0]],[[1,2,2,0],[2,0,1,2],[1,2,3,2],[1,2,1,2]],[[1,2,2,0],[2,0,1,2],[1,2,3,3],[1,2,1,1]],[[1,2,2,0],[2,0,1,2],[1,2,4,2],[1,2,1,1]],[[1,2,2,0],[2,0,1,3],[1,2,3,2],[1,2,1,1]],[[1,2,2,0],[2,0,1,2],[1,2,3,2],[0,2,2,2]],[[1,2,2,0],[2,0,1,2],[1,2,3,2],[0,2,3,1]],[[1,2,2,0],[2,0,1,2],[1,2,3,3],[0,2,2,1]],[[1,2,2,0],[2,0,1,2],[1,2,3,1],[1,2,2,2]],[[1,2,2,0],[2,0,1,2],[1,2,3,1],[1,2,3,1]],[[1,2,2,0],[2,0,1,2],[1,2,3,1],[1,3,2,1]],[[1,2,2,0],[2,0,1,2],[1,2,3,1],[2,2,2,1]],[[1,2,2,0],[2,0,1,2],[1,2,4,1],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[1,2,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,1,2],[1,2,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,1,2],[1,2,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,1,2],[1,2,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,1,2],[1,2,2,3],[1,2,2,1]],[[1,2,2,0],[2,0,1,3],[1,2,2,2],[1,2,2,1]],[[1,2,2,0],[2,0,1,2],[0,3,3,2],[1,1,2,2]],[[1,2,2,0],[2,0,1,2],[0,3,3,2],[1,1,3,1]],[[1,2,2,0],[2,0,1,2],[0,3,3,3],[1,1,2,1]],[[1,2,2,0],[2,0,1,2],[0,2,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,1,2],[0,2,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,1,2],[0,2,3,2],[1,3,2,1]],[[1,2,2,0],[2,0,1,2],[0,2,3,3],[1,2,2,1]],[[0,3,2,1],[2,3,2,0],[2,3,2,1],[1,0,1,1]],[[0,2,3,1],[2,3,2,0],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[3,3,2,0],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,4,2,0],[2,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,3,2,0],[3,3,2,1],[1,0,1,1]],[[1,2,2,0],[2,0,1,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,0,1,1],[2,3,3,2],[2,2,1,0]],[[1,2,2,0],[2,0,1,1],[3,3,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,1,1],[2,3,3,2],[1,3,0,1]],[[1,2,2,0],[2,0,1,1],[2,3,3,2],[2,2,0,1]],[[1,2,2,0],[2,0,1,1],[3,3,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,1,1],[2,3,3,1],[1,3,1,1]],[[1,2,2,0],[2,0,1,1],[2,3,3,1],[2,2,1,1]],[[1,2,2,0],[2,0,1,1],[3,3,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,1,1],[2,3,3,0],[1,2,3,1]],[[1,2,2,0],[2,0,1,1],[2,3,3,0],[1,3,2,1]],[[1,2,2,0],[2,0,1,1],[2,3,3,0],[2,2,2,1]],[[1,2,2,0],[2,0,1,1],[3,3,3,0],[1,2,2,1]],[[1,2,2,0],[2,0,1,1],[2,3,2,2],[1,2,3,0]],[[1,2,2,0],[2,0,1,1],[2,3,2,2],[1,3,2,0]],[[1,2,2,0],[2,0,1,1],[2,3,2,2],[2,2,2,0]],[[1,2,2,0],[2,0,1,1],[3,3,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,1,1],[2,3,2,1],[1,2,2,2]],[[1,2,2,0],[2,0,1,1],[2,3,2,1],[1,2,3,1]],[[1,2,2,0],[2,0,1,1],[2,3,2,1],[1,3,2,1]],[[1,2,2,0],[2,0,1,1],[2,3,2,1],[2,2,2,1]],[[1,2,2,0],[2,0,1,1],[3,3,2,1],[1,2,2,1]],[[1,2,2,0],[2,0,1,1],[2,3,1,2],[1,2,2,2]],[[1,2,2,0],[2,0,1,1],[2,3,1,2],[1,2,3,1]],[[1,2,2,0],[2,0,1,1],[2,3,1,2],[1,3,2,1]],[[1,2,2,0],[2,0,1,1],[2,3,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,1,1],[3,3,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,1,0],[2,3,3,2],[1,3,1,1]],[[1,2,2,0],[2,0,1,0],[2,3,3,2],[2,2,1,1]],[[1,2,2,0],[2,0,1,0],[3,3,3,2],[1,2,1,1]],[[1,2,2,0],[2,0,1,0],[2,3,2,2],[1,2,2,2]],[[1,2,2,0],[2,0,1,0],[2,3,2,2],[1,2,3,1]],[[1,2,2,0],[2,0,1,0],[2,3,2,2],[1,3,2,1]],[[1,2,2,0],[2,0,1,0],[2,3,2,2],[2,2,2,1]],[[1,2,2,0],[2,0,1,0],[3,3,2,2],[1,2,2,1]],[[1,2,2,0],[2,0,0,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,0],[2,0,0,2],[2,3,3,2],[2,2,1,0]],[[1,2,2,0],[2,0,0,2],[3,3,3,2],[1,2,1,0]],[[1,2,2,0],[2,0,0,2],[2,3,3,2],[1,3,0,1]],[[0,3,2,1],[2,3,2,0],[2,3,2,2],[1,0,0,1]],[[0,2,3,1],[2,3,2,0],[2,3,2,2],[1,0,0,1]],[[0,2,2,2],[2,3,2,0],[2,3,2,2],[1,0,0,1]],[[0,2,2,1],[3,3,2,0],[2,3,2,2],[1,0,0,1]],[[0,2,2,1],[2,4,2,0],[2,3,2,2],[1,0,0,1]],[[0,2,2,1],[2,3,2,0],[3,3,2,2],[1,0,0,1]],[[0,3,2,1],[2,3,2,0],[2,3,2,2],[1,0,1,0]],[[0,2,3,1],[2,3,2,0],[2,3,2,2],[1,0,1,0]],[[0,2,2,2],[2,3,2,0],[2,3,2,2],[1,0,1,0]],[[0,2,2,1],[3,3,2,0],[2,3,2,2],[1,0,1,0]],[[0,2,2,1],[2,4,2,0],[2,3,2,2],[1,0,1,0]],[[0,2,2,1],[2,3,2,0],[3,3,2,2],[1,0,1,0]],[[1,2,2,0],[2,0,0,2],[2,3,3,2],[2,2,0,1]],[[1,2,2,0],[2,0,0,2],[3,3,3,2],[1,2,0,1]],[[1,2,2,0],[2,0,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,0],[2,0,0,2],[2,3,3,2],[1,0,3,1]],[[1,2,2,0],[2,0,0,2],[2,3,3,3],[1,0,2,1]],[[1,2,2,0],[2,0,0,2],[2,3,3,2],[0,1,2,2]],[[1,2,2,0],[2,0,0,2],[2,3,3,2],[0,1,3,1]],[[1,2,2,0],[2,0,0,2],[2,3,3,3],[0,1,2,1]],[[1,2,2,0],[2,0,0,2],[2,3,3,1],[1,3,1,1]],[[1,2,2,0],[2,0,0,2],[2,3,3,1],[2,2,1,1]],[[1,2,2,0],[2,0,0,2],[3,3,3,1],[1,2,1,1]],[[1,2,2,0],[2,0,0,2],[2,3,2,2],[1,2,3,0]],[[1,2,2,0],[2,0,0,2],[2,3,2,2],[1,3,2,0]],[[1,2,2,0],[2,0,0,2],[2,3,2,2],[2,2,2,0]],[[1,2,2,0],[2,0,0,2],[3,3,2,2],[1,2,2,0]],[[1,2,2,0],[2,0,0,2],[2,3,2,1],[1,2,2,2]],[[1,2,2,0],[2,0,0,2],[2,3,2,1],[1,2,3,1]],[[1,2,2,0],[2,0,0,2],[2,3,2,1],[1,3,2,1]],[[1,2,2,0],[2,0,0,2],[2,3,2,1],[2,2,2,1]],[[1,2,2,0],[2,0,0,2],[3,3,2,1],[1,2,2,1]],[[1,2,2,0],[2,0,0,2],[2,3,1,2],[1,2,2,2]],[[1,2,2,0],[2,0,0,2],[2,3,1,2],[1,2,3,1]],[[1,2,2,0],[2,0,0,2],[2,3,1,2],[1,3,2,1]],[[1,2,2,0],[2,0,0,2],[2,3,1,2],[2,2,2,1]],[[1,2,2,0],[2,0,0,2],[2,3,1,3],[1,2,2,1]],[[1,2,2,0],[2,0,0,2],[3,3,1,2],[1,2,2,1]],[[1,2,2,0],[2,0,0,2],[2,2,3,2],[0,2,2,2]],[[1,2,2,0],[2,0,0,2],[2,2,3,2],[0,2,3,1]],[[1,2,2,0],[2,0,0,2],[2,2,3,2],[0,3,2,1]],[[1,2,2,0],[2,0,0,2],[2,2,3,3],[0,2,2,1]],[[1,2,2,0],[2,0,0,2],[2,1,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,0,2],[2,1,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,0,2],[2,1,3,2],[1,3,2,1]],[[1,2,2,0],[2,0,0,2],[2,1,3,2],[2,2,2,1]],[[1,2,2,0],[2,0,0,2],[2,1,3,3],[1,2,2,1]],[[1,2,2,0],[2,0,0,2],[3,1,3,2],[1,2,2,1]],[[1,2,2,0],[2,0,0,2],[1,3,3,2],[1,1,2,2]],[[1,2,2,0],[2,0,0,2],[1,3,3,2],[1,1,3,1]],[[1,2,2,0],[2,0,0,2],[1,3,3,3],[1,1,2,1]],[[1,2,2,0],[2,0,0,2],[1,2,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,0,2],[1,2,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,0,2],[1,2,3,2],[1,3,2,1]],[[1,2,2,0],[2,0,0,2],[1,2,3,2],[2,2,2,1]],[[1,2,2,0],[2,0,0,2],[1,2,3,3],[1,2,2,1]],[[1,2,2,0],[2,0,0,1],[2,3,3,2],[1,2,3,0]],[[1,2,2,0],[2,0,0,1],[2,3,3,2],[1,3,2,0]],[[1,2,2,0],[2,0,0,1],[2,3,3,2],[2,2,2,0]],[[1,2,2,0],[2,0,0,1],[3,3,3,2],[1,2,2,0]],[[1,2,2,0],[2,0,0,1],[2,3,3,1],[1,2,2,2]],[[1,2,2,0],[2,0,0,1],[2,3,3,1],[1,2,3,1]],[[1,2,2,0],[2,0,0,1],[2,3,3,1],[1,3,2,1]],[[1,2,2,0],[2,0,0,1],[2,3,3,1],[2,2,2,1]],[[1,2,2,0],[2,0,0,1],[3,3,3,1],[1,2,2,1]],[[1,2,2,0],[2,0,0,0],[2,3,3,2],[1,2,2,2]],[[1,2,2,0],[2,0,0,0],[2,3,3,2],[1,2,3,1]],[[1,2,2,0],[2,0,0,0],[2,3,3,2],[1,3,2,1]],[[1,2,2,0],[2,0,0,0],[2,3,3,2],[2,2,2,1]],[[1,2,2,0],[2,0,0,0],[3,3,3,2],[1,2,2,1]],[[1,2,2,0],[1,4,3,2],[2,3,2,1],[1,0,0,0]],[[1,2,3,0],[1,3,3,2],[2,3,2,1],[1,0,0,0]],[[1,3,2,0],[1,3,3,2],[2,3,2,1],[1,0,0,0]],[[2,2,2,0],[1,3,3,2],[2,3,2,1],[1,0,0,0]],[[1,2,2,0],[1,4,3,2],[2,3,1,1],[1,0,1,0]],[[1,2,3,0],[1,3,3,2],[2,3,1,1],[1,0,1,0]],[[1,3,2,0],[1,3,3,2],[2,3,1,1],[1,0,1,0]],[[2,2,2,0],[1,3,3,2],[2,3,1,1],[1,0,1,0]],[[1,2,2,0],[1,4,3,2],[2,3,1,1],[1,0,0,1]],[[1,2,3,0],[1,3,3,2],[2,3,1,1],[1,0,0,1]],[[1,3,2,0],[1,3,3,2],[2,3,1,1],[1,0,0,1]],[[2,2,2,0],[1,3,3,2],[2,3,1,1],[1,0,0,1]],[[1,2,2,0],[1,4,3,2],[2,3,1,0],[1,0,1,1]],[[1,2,3,0],[1,3,3,2],[2,3,1,0],[1,0,1,1]],[[1,3,2,0],[1,3,3,2],[2,3,1,0],[1,0,1,1]],[[2,2,2,0],[1,3,3,2],[2,3,1,0],[1,0,1,1]],[[1,2,2,0],[1,4,3,2],[2,3,0,2],[1,0,1,0]],[[1,2,3,0],[1,3,3,2],[2,3,0,2],[1,0,1,0]],[[1,3,2,0],[1,3,3,2],[2,3,0,2],[1,0,1,0]],[[2,2,2,0],[1,3,3,2],[2,3,0,2],[1,0,1,0]],[[1,2,2,0],[1,4,3,2],[2,3,0,2],[1,0,0,1]],[[1,2,3,0],[1,3,3,2],[2,3,0,2],[1,0,0,1]],[[1,3,2,0],[1,3,3,2],[2,3,0,2],[1,0,0,1]],[[2,2,2,0],[1,3,3,2],[2,3,0,2],[1,0,0,1]],[[1,2,2,0],[1,4,3,2],[2,3,0,1],[1,2,0,0]],[[1,2,3,0],[1,3,3,2],[2,3,0,1],[1,2,0,0]],[[1,3,2,0],[1,3,3,2],[2,3,0,1],[1,2,0,0]],[[2,2,2,0],[1,3,3,2],[2,3,0,1],[1,2,0,0]],[[1,2,2,0],[1,4,3,2],[2,3,0,1],[1,1,1,0]],[[1,2,3,0],[1,3,3,2],[2,3,0,1],[1,1,1,0]],[[1,3,2,0],[1,3,3,2],[2,3,0,1],[1,1,1,0]],[[2,2,2,0],[1,3,3,2],[2,3,0,1],[1,1,1,0]],[[1,2,2,0],[1,4,3,2],[2,3,0,1],[1,1,0,1]],[[0,3,2,1],[2,3,2,0],[2,3,3,2],[1,0,0,0]],[[0,2,3,1],[2,3,2,0],[2,3,3,2],[1,0,0,0]],[[0,2,2,2],[2,3,2,0],[2,3,3,2],[1,0,0,0]],[[0,2,2,1],[3,3,2,0],[2,3,3,2],[1,0,0,0]],[[0,2,2,1],[2,4,2,0],[2,3,3,2],[1,0,0,0]],[[0,2,2,1],[2,3,2,0],[3,3,3,2],[1,0,0,0]],[[1,2,3,0],[1,3,3,2],[2,3,0,1],[1,1,0,1]],[[1,3,2,0],[1,3,3,2],[2,3,0,1],[1,1,0,1]],[[2,2,2,0],[1,3,3,2],[2,3,0,1],[1,1,0,1]],[[1,2,2,0],[1,4,3,2],[2,3,0,1],[0,2,1,0]],[[1,2,3,0],[1,3,3,2],[2,3,0,1],[0,2,1,0]],[[1,3,2,0],[1,3,3,2],[2,3,0,1],[0,2,1,0]],[[2,2,2,0],[1,3,3,2],[2,3,0,1],[0,2,1,0]],[[1,2,2,0],[1,4,3,2],[2,3,0,1],[0,2,0,1]],[[1,2,3,0],[1,3,3,2],[2,3,0,1],[0,2,0,1]],[[1,3,2,0],[1,3,3,2],[2,3,0,1],[0,2,0,1]],[[2,2,2,0],[1,3,3,2],[2,3,0,1],[0,2,0,1]],[[1,2,2,0],[1,4,3,2],[2,3,0,0],[1,2,0,1]],[[1,2,3,0],[1,3,3,2],[2,3,0,0],[1,2,0,1]],[[1,3,2,0],[1,3,3,2],[2,3,0,0],[1,2,0,1]],[[2,2,2,0],[1,3,3,2],[2,3,0,0],[1,2,0,1]],[[1,2,2,0],[1,4,3,2],[2,3,0,0],[1,1,1,1]],[[1,2,3,0],[1,3,3,2],[2,3,0,0],[1,1,1,1]],[[1,3,2,0],[1,3,3,2],[2,3,0,0],[1,1,1,1]],[[2,2,2,0],[1,3,3,2],[2,3,0,0],[1,1,1,1]],[[1,2,2,0],[1,4,3,2],[2,3,0,0],[0,2,1,1]],[[1,2,3,0],[1,3,3,2],[2,3,0,0],[0,2,1,1]],[[1,3,2,0],[1,3,3,2],[2,3,0,0],[0,2,1,1]],[[2,2,2,0],[1,3,3,2],[2,3,0,0],[0,2,1,1]],[[1,2,2,0],[1,4,3,2],[2,2,2,1],[1,1,0,0]],[[1,2,3,0],[1,3,3,2],[2,2,2,1],[1,1,0,0]],[[1,3,2,0],[1,3,3,2],[2,2,2,1],[1,1,0,0]],[[2,2,2,0],[1,3,3,2],[2,2,2,1],[1,1,0,0]],[[0,3,2,1],[2,3,2,1],[0,1,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[0,1,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[0,1,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[0,1,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[0,1,1,2],[1,2,2,1]],[[0,3,2,1],[2,3,2,1],[0,1,2,2],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[0,1,2,2],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[0,1,2,2],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[0,1,2,2],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[0,1,2,2],[1,2,1,1]],[[0,3,2,1],[2,3,2,1],[0,1,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[0,1,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,2,1],[0,1,2,2],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[0,1,2,2],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[0,1,2,2],[1,2,2,0]],[[0,3,2,1],[2,3,2,1],[0,1,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[0,1,3,0],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[0,1,3,0],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[0,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[0,1,3,0],[1,2,2,1]],[[0,3,2,1],[2,3,2,1],[0,1,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[0,1,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[0,1,3,1],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[0,1,3,1],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[0,1,3,1],[1,2,1,1]],[[0,3,2,1],[2,3,2,1],[0,1,3,1],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[0,1,3,1],[1,2,2,0]],[[0,2,2,2],[2,3,2,1],[0,1,3,1],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[0,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[0,1,3,1],[1,2,2,0]],[[0,3,2,1],[2,3,2,1],[0,2,0,2],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[0,2,0,2],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[0,2,0,2],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[0,2,0,2],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[0,2,0,2],[1,2,2,1]],[[0,3,2,1],[2,3,2,1],[0,2,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[0,2,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[0,2,1,2],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[0,2,1,2],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[0,2,1,2],[1,1,2,1]],[[0,3,2,1],[2,3,2,1],[0,2,2,2],[1,0,2,1]],[[0,2,3,1],[2,3,2,1],[0,2,2,2],[1,0,2,1]],[[0,2,2,2],[2,3,2,1],[0,2,2,2],[1,0,2,1]],[[0,2,2,1],[2,4,2,1],[0,2,2,2],[1,0,2,1]],[[0,3,2,1],[2,3,2,1],[0,2,2,2],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[0,2,2,2],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[0,2,2,2],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[0,2,2,2],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[0,2,2,2],[1,1,1,1]],[[0,3,2,1],[2,3,2,1],[0,2,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[0,2,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[0,2,2,2],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[0,2,2,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[0,2,2,2],[1,1,2,0]],[[0,3,2,1],[2,3,2,1],[0,2,2,2],[1,2,0,1]],[[0,2,3,1],[2,3,2,1],[0,2,2,2],[1,2,0,1]],[[0,2,2,2],[2,3,2,1],[0,2,2,2],[1,2,0,1]],[[0,2,2,1],[3,3,2,1],[0,2,2,2],[1,2,0,1]],[[0,2,2,1],[2,4,2,1],[0,2,2,2],[1,2,0,1]],[[0,3,2,1],[2,3,2,1],[0,2,2,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,1],[0,2,2,2],[1,2,1,0]],[[0,2,2,2],[2,3,2,1],[0,2,2,2],[1,2,1,0]],[[0,2,2,1],[3,3,2,1],[0,2,2,2],[1,2,1,0]],[[0,2,2,1],[2,4,2,1],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[1,4,3,2],[2,2,2,1],[0,2,0,0]],[[1,2,3,0],[1,3,3,2],[2,2,2,1],[0,2,0,0]],[[1,3,2,0],[1,3,3,2],[2,2,2,1],[0,2,0,0]],[[2,2,2,0],[1,3,3,2],[2,2,2,1],[0,2,0,0]],[[0,3,2,1],[2,3,2,1],[0,2,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[0,2,3,0],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[0,2,3,0],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[0,2,3,0],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[0,2,3,0],[1,1,2,1]],[[0,3,2,1],[2,3,2,1],[0,2,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[0,2,3,0],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[0,2,3,0],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[0,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[0,2,3,0],[1,2,1,1]],[[0,3,2,1],[2,3,2,1],[0,2,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,2,1],[0,2,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,2,1],[0,2,3,1],[1,0,2,1]],[[0,2,2,1],[2,4,2,1],[0,2,3,1],[1,0,2,1]],[[0,3,2,1],[2,3,2,1],[0,2,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[0,2,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[0,2,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[0,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[0,2,3,1],[1,1,1,1]],[[0,3,2,1],[2,3,2,1],[0,2,3,1],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[0,2,3,1],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[0,2,3,1],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[0,2,3,1],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[0,2,3,1],[1,1,2,0]],[[0,3,2,1],[2,3,2,1],[0,2,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,2,1],[0,2,3,1],[1,2,0,1]],[[0,2,2,2],[2,3,2,1],[0,2,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,2,1],[0,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,2,1],[0,2,3,1],[1,2,0,1]],[[0,3,2,1],[2,3,2,1],[0,2,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,2,1],[0,2,3,1],[1,2,1,0]],[[0,2,2,2],[2,3,2,1],[0,2,3,1],[1,2,1,0]],[[0,2,2,1],[3,3,2,1],[0,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,4,2,1],[0,2,3,1],[1,2,1,0]],[[0,3,2,1],[2,3,2,1],[0,2,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,1],[0,2,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,1],[0,2,3,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,1],[0,2,3,2],[1,1,0,1]],[[0,3,2,1],[2,3,2,1],[0,3,0,1],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[0,3,0,1],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[0,3,0,1],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[0,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[0,3,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[0,4,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[0,3,0,1],[2,2,2,1]],[[0,2,2,1],[2,3,2,1],[0,3,0,1],[1,3,2,1]],[[0,2,2,1],[2,3,2,1],[0,3,0,1],[1,2,3,1]],[[0,2,2,1],[2,3,2,1],[0,3,0,1],[1,2,2,2]],[[0,3,2,1],[2,3,2,1],[0,3,0,2],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[0,3,0,2],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[0,3,0,2],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[0,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[0,3,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[0,4,0,2],[1,1,2,1]],[[0,3,2,1],[2,3,2,1],[0,3,0,2],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[0,3,0,2],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[0,3,0,2],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[0,3,0,2],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[0,3,0,2],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[0,4,0,2],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[0,3,0,2],[2,2,1,1]],[[0,2,2,1],[2,3,2,1],[0,3,0,2],[1,3,1,1]],[[0,3,2,1],[2,3,2,1],[0,3,0,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[0,3,0,2],[1,2,2,0]],[[0,2,2,2],[2,3,2,1],[0,3,0,2],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[0,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[0,3,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[0,4,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[0,3,0,2],[2,2,2,0]],[[0,2,2,1],[2,3,2,1],[0,3,0,2],[1,3,2,0]],[[0,2,2,1],[2,3,2,1],[0,3,0,2],[1,2,3,0]],[[0,3,2,1],[2,3,2,1],[0,3,1,0],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[0,3,1,0],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[0,4,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[0,3,1,0],[2,2,2,1]],[[0,2,2,1],[2,3,2,1],[0,3,1,0],[1,3,2,1]],[[0,2,2,1],[2,3,2,1],[0,3,1,0],[1,2,3,1]],[[0,2,2,1],[2,3,2,1],[0,3,1,0],[1,2,2,2]],[[0,3,2,1],[2,3,2,1],[0,3,1,1],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[0,3,1,1],[1,2,2,0]],[[0,2,2,2],[2,3,2,1],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[0,4,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[0,3,1,1],[2,2,2,0]],[[0,2,2,1],[2,3,2,1],[0,3,1,1],[1,3,2,0]],[[0,2,2,1],[2,3,2,1],[0,3,1,1],[1,2,3,0]],[[0,3,2,1],[2,3,2,1],[0,3,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,2,1],[0,3,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,2,1],[0,3,1,2],[0,1,2,1]],[[0,2,2,1],[2,4,2,1],[0,3,1,2],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[0,3,1,2],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[0,3,1,2],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[0,3,1,2],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[0,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[0,3,1,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[0,4,1,2],[1,1,1,1]],[[0,3,2,1],[2,3,2,1],[0,3,1,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[0,3,1,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[0,3,1,2],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[0,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[0,3,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[0,4,1,2],[1,1,2,0]],[[0,3,2,1],[2,3,2,1],[0,3,1,2],[1,2,0,1]],[[0,2,3,1],[2,3,2,1],[0,3,1,2],[1,2,0,1]],[[0,2,2,2],[2,3,2,1],[0,3,1,2],[1,2,0,1]],[[0,2,2,1],[3,3,2,1],[0,3,1,2],[1,2,0,1]],[[0,2,2,1],[2,4,2,1],[0,3,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[0,4,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[0,3,1,2],[2,2,0,1]],[[0,2,2,1],[2,3,2,1],[0,3,1,2],[1,3,0,1]],[[0,3,2,1],[2,3,2,1],[0,3,1,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,1],[0,3,1,2],[1,2,1,0]],[[0,2,2,2],[2,3,2,1],[0,3,1,2],[1,2,1,0]],[[0,2,2,1],[3,3,2,1],[0,3,1,2],[1,2,1,0]],[[0,2,2,1],[2,4,2,1],[0,3,1,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[0,4,1,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[0,3,1,2],[2,2,1,0]],[[0,2,2,1],[2,3,2,1],[0,3,1,2],[1,3,1,0]],[[0,3,2,1],[2,3,2,1],[0,3,2,0],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[0,3,2,0],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[0,4,2,0],[1,1,2,1]],[[0,3,2,1],[2,3,2,1],[0,3,2,0],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[0,3,2,0],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[0,4,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[0,3,2,0],[2,2,1,1]],[[0,2,2,1],[2,3,2,1],[0,3,2,0],[1,3,1,1]],[[0,3,2,1],[2,3,2,1],[0,3,2,1],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[0,3,2,1],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[0,3,2,1],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[0,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[0,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[0,4,2,1],[1,1,1,1]],[[0,3,2,1],[2,3,2,1],[0,3,2,1],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[0,3,2,1],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[0,4,2,1],[1,1,2,0]],[[0,3,2,1],[2,3,2,1],[0,3,2,1],[1,2,0,1]],[[0,2,3,1],[2,3,2,1],[0,3,2,1],[1,2,0,1]],[[0,2,2,2],[2,3,2,1],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[3,3,2,1],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,4,2,1],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[0,4,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[0,3,2,1],[2,2,0,1]],[[0,2,2,1],[2,3,2,1],[0,3,2,1],[1,3,0,1]],[[0,3,2,1],[2,3,2,1],[0,3,2,1],[1,2,1,0]],[[0,2,3,1],[2,3,2,1],[0,3,2,1],[1,2,1,0]],[[0,2,2,2],[2,3,2,1],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[3,3,2,1],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[2,4,2,1],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[0,4,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[0,3,2,1],[2,2,1,0]],[[0,2,2,1],[2,3,2,1],[0,3,2,1],[1,3,1,0]],[[0,3,2,1],[2,3,2,1],[0,3,2,2],[0,0,2,1]],[[0,2,3,1],[2,3,2,1],[0,3,2,2],[0,0,2,1]],[[0,2,2,2],[2,3,2,1],[0,3,2,2],[0,0,2,1]],[[0,2,2,1],[2,4,2,1],[0,3,2,2],[0,0,2,1]],[[0,3,2,1],[2,3,2,1],[0,3,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,1],[0,3,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,1],[0,3,2,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,1],[0,3,2,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[0,3,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[0,3,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[0,3,2,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[0,3,2,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[0,3,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[0,3,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[0,3,2,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[0,3,2,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[0,3,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[0,3,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[0,3,2,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[0,3,2,2],[0,2,1,0]],[[0,3,2,1],[2,3,2,1],[0,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,2,1],[0,3,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,2,1],[0,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,2,1],[0,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[0,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[0,3,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[0,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[0,3,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[0,3,3,0],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[0,3,3,0],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[0,3,3,0],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[0,3,3,0],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[0,3,3,0],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[0,4,3,0],[1,1,2,0]],[[0,3,2,1],[2,3,2,1],[0,3,3,0],[1,2,1,0]],[[0,2,3,1],[2,3,2,1],[0,3,3,0],[1,2,1,0]],[[0,2,2,2],[2,3,2,1],[0,3,3,0],[1,2,1,0]],[[0,2,2,1],[3,3,2,1],[0,3,3,0],[1,2,1,0]],[[0,2,2,1],[2,4,2,1],[0,3,3,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[0,4,3,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[0,3,3,0],[2,2,1,0]],[[0,2,2,1],[2,3,2,1],[0,3,3,0],[1,3,1,0]],[[1,2,2,0],[1,4,3,2],[2,2,1,1],[1,2,0,0]],[[1,2,3,0],[1,3,3,2],[2,2,1,1],[1,2,0,0]],[[0,3,2,1],[2,3,2,1],[0,3,3,1],[0,0,2,1]],[[0,2,3,1],[2,3,2,1],[0,3,3,1],[0,0,2,1]],[[0,2,2,2],[2,3,2,1],[0,3,3,1],[0,0,2,1]],[[0,2,2,1],[2,4,2,1],[0,3,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,2,1],[0,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,2,1],[0,3,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,2,1],[0,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,2,1],[0,3,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[0,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[0,3,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[0,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[0,3,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[0,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[0,3,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[0,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[0,3,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[0,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[0,3,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[0,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[0,3,3,1],[0,2,1,0]],[[1,3,2,0],[1,3,3,2],[2,2,1,1],[1,2,0,0]],[[2,2,2,0],[1,3,3,2],[2,2,1,1],[1,2,0,0]],[[1,2,2,0],[1,4,3,2],[2,2,1,1],[1,1,1,0]],[[0,3,2,1],[2,3,2,1],[0,3,3,1],[1,2,0,0]],[[0,2,3,1],[2,3,2,1],[0,3,3,1],[1,2,0,0]],[[0,2,2,2],[2,3,2,1],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[3,3,2,1],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,4,2,1],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[0,4,3,1],[1,2,0,0]],[[1,2,3,0],[1,3,3,2],[2,2,1,1],[1,1,1,0]],[[1,3,2,0],[1,3,3,2],[2,2,1,1],[1,1,1,0]],[[2,2,2,0],[1,3,3,2],[2,2,1,1],[1,1,1,0]],[[1,2,2,0],[1,4,3,2],[2,2,1,1],[1,1,0,1]],[[1,2,3,0],[1,3,3,2],[2,2,1,1],[1,1,0,1]],[[1,3,2,0],[1,3,3,2],[2,2,1,1],[1,1,0,1]],[[2,2,2,0],[1,3,3,2],[2,2,1,1],[1,1,0,1]],[[1,2,2,0],[1,4,3,2],[2,2,1,1],[1,0,2,0]],[[1,2,3,0],[1,3,3,2],[2,2,1,1],[1,0,2,0]],[[1,3,2,0],[1,3,3,2],[2,2,1,1],[1,0,2,0]],[[2,2,2,0],[1,3,3,2],[2,2,1,1],[1,0,2,0]],[[1,2,2,0],[1,4,3,2],[2,2,1,1],[1,0,1,1]],[[1,2,3,0],[1,3,3,2],[2,2,1,1],[1,0,1,1]],[[1,3,2,0],[1,3,3,2],[2,2,1,1],[1,0,1,1]],[[2,2,2,0],[1,3,3,2],[2,2,1,1],[1,0,1,1]],[[1,2,2,0],[1,4,3,2],[2,2,1,1],[0,2,1,0]],[[0,3,2,1],[2,3,2,1],[0,3,3,2],[0,1,0,1]],[[0,2,3,1],[2,3,2,1],[0,3,3,2],[0,1,0,1]],[[0,2,2,2],[2,3,2,1],[0,3,3,2],[0,1,0,1]],[[0,2,2,1],[2,4,2,1],[0,3,3,2],[0,1,0,1]],[[1,2,3,0],[1,3,3,2],[2,2,1,1],[0,2,1,0]],[[1,3,2,0],[1,3,3,2],[2,2,1,1],[0,2,1,0]],[[2,2,2,0],[1,3,3,2],[2,2,1,1],[0,2,1,0]],[[1,2,2,0],[1,4,3,2],[2,2,1,1],[0,2,0,1]],[[1,2,3,0],[1,3,3,2],[2,2,1,1],[0,2,0,1]],[[1,3,2,0],[1,3,3,2],[2,2,1,1],[0,2,0,1]],[[2,2,2,0],[1,3,3,2],[2,2,1,1],[0,2,0,1]],[[1,2,2,0],[1,4,3,2],[2,2,1,1],[0,1,2,0]],[[1,2,3,0],[1,3,3,2],[2,2,1,1],[0,1,2,0]],[[1,3,2,0],[1,3,3,2],[2,2,1,1],[0,1,2,0]],[[2,2,2,0],[1,3,3,2],[2,2,1,1],[0,1,2,0]],[[1,2,2,0],[1,4,3,2],[2,2,1,1],[0,1,1,1]],[[1,2,3,0],[1,3,3,2],[2,2,1,1],[0,1,1,1]],[[1,3,2,0],[1,3,3,2],[2,2,1,1],[0,1,1,1]],[[2,2,2,0],[1,3,3,2],[2,2,1,1],[0,1,1,1]],[[1,2,2,0],[1,4,3,2],[2,2,1,0],[1,2,0,1]],[[1,2,3,0],[1,3,3,2],[2,2,1,0],[1,2,0,1]],[[1,3,2,0],[1,3,3,2],[2,2,1,0],[1,2,0,1]],[[2,2,2,0],[1,3,3,2],[2,2,1,0],[1,2,0,1]],[[1,2,2,0],[1,4,3,2],[2,2,1,0],[1,1,1,1]],[[1,2,3,0],[1,3,3,2],[2,2,1,0],[1,1,1,1]],[[1,3,2,0],[1,3,3,2],[2,2,1,0],[1,1,1,1]],[[2,2,2,0],[1,3,3,2],[2,2,1,0],[1,1,1,1]],[[1,2,2,0],[1,4,3,2],[2,2,1,0],[1,0,2,1]],[[1,2,3,0],[1,3,3,2],[2,2,1,0],[1,0,2,1]],[[1,3,2,0],[1,3,3,2],[2,2,1,0],[1,0,2,1]],[[2,2,2,0],[1,3,3,2],[2,2,1,0],[1,0,2,1]],[[1,2,2,0],[1,4,3,2],[2,2,1,0],[0,2,1,1]],[[1,2,3,0],[1,3,3,2],[2,2,1,0],[0,2,1,1]],[[1,3,2,0],[1,3,3,2],[2,2,1,0],[0,2,1,1]],[[2,2,2,0],[1,3,3,2],[2,2,1,0],[0,2,1,1]],[[1,2,2,0],[1,4,3,2],[2,2,1,0],[0,1,2,1]],[[1,2,3,0],[1,3,3,2],[2,2,1,0],[0,1,2,1]],[[1,3,2,0],[1,3,3,2],[2,2,1,0],[0,1,2,1]],[[2,2,2,0],[1,3,3,2],[2,2,1,0],[0,1,2,1]],[[1,2,2,0],[1,4,3,2],[2,2,0,2],[1,2,0,0]],[[1,2,3,0],[1,3,3,2],[2,2,0,2],[1,2,0,0]],[[1,3,2,0],[1,3,3,2],[2,2,0,2],[1,2,0,0]],[[2,2,2,0],[1,3,3,2],[2,2,0,2],[1,2,0,0]],[[1,2,2,0],[1,4,3,2],[2,2,0,2],[1,1,1,0]],[[1,2,3,0],[1,3,3,2],[2,2,0,2],[1,1,1,0]],[[1,3,2,0],[1,3,3,2],[2,2,0,2],[1,1,1,0]],[[2,2,2,0],[1,3,3,2],[2,2,0,2],[1,1,1,0]],[[1,2,2,0],[1,4,3,2],[2,2,0,2],[1,1,0,1]],[[1,2,3,0],[1,3,3,2],[2,2,0,2],[1,1,0,1]],[[1,3,2,0],[1,3,3,2],[2,2,0,2],[1,1,0,1]],[[2,2,2,0],[1,3,3,2],[2,2,0,2],[1,1,0,1]],[[1,2,2,0],[1,4,3,2],[2,2,0,2],[1,0,2,0]],[[1,2,3,0],[1,3,3,2],[2,2,0,2],[1,0,2,0]],[[1,3,2,0],[1,3,3,2],[2,2,0,2],[1,0,2,0]],[[2,2,2,0],[1,3,3,2],[2,2,0,2],[1,0,2,0]],[[1,2,2,0],[1,4,3,2],[2,2,0,2],[1,0,1,1]],[[1,2,3,0],[1,3,3,2],[2,2,0,2],[1,0,1,1]],[[1,3,2,0],[1,3,3,2],[2,2,0,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,1],[1,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[1,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[1,0,1,2],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[1,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[1,0,1,2],[1,2,2,1]],[[0,3,2,1],[2,3,2,1],[1,0,2,2],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[1,0,2,2],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[1,0,2,2],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[1,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[1,0,2,2],[1,2,1,1]],[[0,3,2,1],[2,3,2,1],[1,0,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[1,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,2,1],[1,0,2,2],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[1,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[1,0,2,2],[1,2,2,0]],[[0,3,2,1],[2,3,2,1],[1,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[1,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[1,0,3,0],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[1,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[1,0,3,0],[1,2,2,1]],[[0,3,2,1],[2,3,2,1],[1,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[1,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[1,0,3,1],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[1,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[1,0,3,1],[1,2,1,1]],[[0,3,2,1],[2,3,2,1],[1,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[1,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,3,2,1],[1,0,3,1],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[1,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[1,0,3,1],[1,2,2,0]],[[2,2,2,0],[1,3,3,2],[2,2,0,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,1],[1,1,0,2],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[1,1,0,2],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[1,1,0,2],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[1,1,0,2],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[1,1,0,2],[1,2,2,1]],[[0,3,2,1],[2,3,2,1],[1,1,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,2,1],[1,1,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,2,1],[1,1,1,2],[0,2,2,1]],[[0,2,2,1],[3,3,2,1],[1,1,1,2],[0,2,2,1]],[[0,2,2,1],[2,4,2,1],[1,1,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[1,1,2,2],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[1,1,2,2],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[1,1,2,2],[0,2,1,1]],[[0,2,2,1],[3,3,2,1],[1,1,2,2],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[1,1,2,2],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[1,1,2,2],[0,2,2,0]],[[0,2,3,1],[2,3,2,1],[1,1,2,2],[0,2,2,0]],[[0,2,2,2],[2,3,2,1],[1,1,2,2],[0,2,2,0]],[[0,2,2,1],[3,3,2,1],[1,1,2,2],[0,2,2,0]],[[0,2,2,1],[2,4,2,1],[1,1,2,2],[0,2,2,0]],[[0,3,2,1],[2,3,2,1],[1,1,3,0],[0,2,2,1]],[[0,2,3,1],[2,3,2,1],[1,1,3,0],[0,2,2,1]],[[0,2,2,2],[2,3,2,1],[1,1,3,0],[0,2,2,1]],[[0,2,2,1],[3,3,2,1],[1,1,3,0],[0,2,2,1]],[[0,2,2,1],[2,4,2,1],[1,1,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[1,1,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[1,1,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[1,1,3,1],[0,2,1,1]],[[0,2,2,1],[3,3,2,1],[1,1,3,1],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[1,1,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[1,1,3,1],[0,2,2,0]],[[0,2,3,1],[2,3,2,1],[1,1,3,1],[0,2,2,0]],[[0,2,2,2],[2,3,2,1],[1,1,3,1],[0,2,2,0]],[[0,2,2,1],[3,3,2,1],[1,1,3,1],[0,2,2,0]],[[0,2,2,1],[2,4,2,1],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[1,4,3,2],[2,2,0,2],[0,2,1,0]],[[1,2,3,0],[1,3,3,2],[2,2,0,2],[0,2,1,0]],[[1,3,2,0],[1,3,3,2],[2,2,0,2],[0,2,1,0]],[[2,2,2,0],[1,3,3,2],[2,2,0,2],[0,2,1,0]],[[1,2,2,0],[1,4,3,2],[2,2,0,2],[0,2,0,1]],[[1,2,3,0],[1,3,3,2],[2,2,0,2],[0,2,0,1]],[[1,3,2,0],[1,3,3,2],[2,2,0,2],[0,2,0,1]],[[2,2,2,0],[1,3,3,2],[2,2,0,2],[0,2,0,1]],[[1,2,2,0],[1,4,3,2],[2,2,0,2],[0,1,2,0]],[[1,2,3,0],[1,3,3,2],[2,2,0,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[1,2,0,2],[0,2,2,1]],[[0,2,3,1],[2,3,2,1],[1,2,0,2],[0,2,2,1]],[[0,2,2,2],[2,3,2,1],[1,2,0,2],[0,2,2,1]],[[0,2,2,1],[3,3,2,1],[1,2,0,2],[0,2,2,1]],[[0,2,2,1],[2,4,2,1],[1,2,0,2],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[1,2,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,2,1],[1,2,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,2,1],[1,2,1,2],[0,1,2,1]],[[0,2,2,1],[3,3,2,1],[1,2,1,2],[0,1,2,1]],[[0,2,2,1],[2,4,2,1],[1,2,1,2],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[1,2,1,2],[1,0,2,1]],[[0,2,3,1],[2,3,2,1],[1,2,1,2],[1,0,2,1]],[[0,2,2,2],[2,3,2,1],[1,2,1,2],[1,0,2,1]],[[0,2,2,1],[3,3,2,1],[1,2,1,2],[1,0,2,1]],[[0,2,2,1],[2,4,2,1],[1,2,1,2],[1,0,2,1]],[[1,3,2,0],[1,3,3,2],[2,2,0,2],[0,1,2,0]],[[2,2,2,0],[1,3,3,2],[2,2,0,2],[0,1,2,0]],[[1,2,2,0],[1,4,3,2],[2,2,0,2],[0,1,1,1]],[[1,2,3,0],[1,3,3,2],[2,2,0,2],[0,1,1,1]],[[1,3,2,0],[1,3,3,2],[2,2,0,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[1,2,2,2],[0,0,2,1]],[[0,2,3,1],[2,3,2,1],[1,2,2,2],[0,0,2,1]],[[0,2,2,2],[2,3,2,1],[1,2,2,2],[0,0,2,1]],[[0,2,2,1],[3,3,2,1],[1,2,2,2],[0,0,2,1]],[[0,2,2,1],[2,4,2,1],[1,2,2,2],[0,0,2,1]],[[0,3,2,1],[2,3,2,1],[1,2,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,1],[1,2,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,1],[1,2,2,2],[0,1,1,1]],[[0,2,2,1],[3,3,2,1],[1,2,2,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,1],[1,2,2,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[1,2,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[1,2,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[1,2,2,2],[0,1,2,0]],[[0,2,2,1],[3,3,2,1],[1,2,2,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[1,2,2,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[1,2,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[1,2,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,1],[1,2,2,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[1,2,2,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[1,2,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[1,2,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[1,2,2,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[1,2,2,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[1,2,2,2],[0,2,1,0]],[[2,2,2,0],[1,3,3,2],[2,2,0,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[1,2,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,1],[1,2,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,1],[1,2,2,2],[1,0,1,1]],[[0,2,2,1],[3,3,2,1],[1,2,2,2],[1,0,1,1]],[[0,2,2,1],[2,4,2,1],[1,2,2,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,1],[1,2,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,1],[1,2,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,1],[1,2,2,2],[1,0,2,0]],[[0,2,2,1],[3,3,2,1],[1,2,2,2],[1,0,2,0]],[[0,2,2,1],[2,4,2,1],[1,2,2,2],[1,0,2,0]],[[0,3,2,1],[2,3,2,1],[1,2,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,1],[1,2,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,1],[1,2,2,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,1],[1,2,2,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,1],[1,2,2,2],[1,1,0,1]],[[0,3,2,1],[2,3,2,1],[1,2,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[1,2,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[1,2,2,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[1,2,2,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[1,2,2,2],[1,1,1,0]],[[1,2,2,0],[1,4,3,2],[2,2,0,1],[1,1,2,0]],[[1,2,3,0],[1,3,3,2],[2,2,0,1],[1,1,2,0]],[[1,3,2,0],[1,3,3,2],[2,2,0,1],[1,1,2,0]],[[2,2,2,0],[1,3,3,2],[2,2,0,1],[1,1,2,0]],[[1,2,2,0],[1,4,3,2],[2,2,0,1],[0,2,2,0]],[[1,2,3,0],[1,3,3,2],[2,2,0,1],[0,2,2,0]],[[1,3,2,0],[1,3,3,2],[2,2,0,1],[0,2,2,0]],[[2,2,2,0],[1,3,3,2],[2,2,0,1],[0,2,2,0]],[[1,2,2,0],[1,4,3,2],[2,2,0,0],[1,1,2,1]],[[1,2,3,0],[1,3,3,2],[2,2,0,0],[1,1,2,1]],[[1,3,2,0],[1,3,3,2],[2,2,0,0],[1,1,2,1]],[[2,2,2,0],[1,3,3,2],[2,2,0,0],[1,1,2,1]],[[1,2,2,0],[1,4,3,2],[2,2,0,0],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[1,2,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,2,1],[1,2,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,2,1],[1,2,3,0],[0,1,2,1]],[[0,2,2,1],[3,3,2,1],[1,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,2,1],[1,2,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[1,2,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[1,2,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[1,2,3,0],[0,2,1,1]],[[0,2,2,1],[3,3,2,1],[1,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[1,2,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[1,2,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,2,1],[1,2,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,2,1],[1,2,3,0],[1,0,2,1]],[[0,2,2,1],[3,3,2,1],[1,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,4,2,1],[1,2,3,0],[1,0,2,1]],[[0,3,2,1],[2,3,2,1],[1,2,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[1,2,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[1,2,3,0],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[1,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[1,2,3,0],[1,1,1,1]],[[1,2,3,0],[1,3,3,2],[2,2,0,0],[0,2,2,1]],[[1,3,2,0],[1,3,3,2],[2,2,0,0],[0,2,2,1]],[[2,2,2,0],[1,3,3,2],[2,2,0,0],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[1,2,3,1],[0,0,2,1]],[[0,2,3,1],[2,3,2,1],[1,2,3,1],[0,0,2,1]],[[0,2,2,2],[2,3,2,1],[1,2,3,1],[0,0,2,1]],[[0,2,2,1],[3,3,2,1],[1,2,3,1],[0,0,2,1]],[[0,2,2,1],[2,4,2,1],[1,2,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,2,1],[1,2,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,2,1],[1,2,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,2,1],[1,2,3,1],[0,1,1,1]],[[0,2,2,1],[3,3,2,1],[1,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,2,1],[1,2,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[1,2,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[1,2,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[1,2,3,1],[0,1,2,0]],[[0,2,2,1],[3,3,2,1],[1,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[1,2,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[1,2,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[1,2,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[1,2,3,1],[0,2,0,1]],[[0,2,2,1],[3,3,2,1],[1,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[1,2,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[1,2,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[1,2,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[1,2,3,1],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[1,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[1,2,3,1],[0,2,1,0]],[[0,3,2,1],[2,3,2,1],[1,2,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,2,1],[1,2,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,2,1],[1,2,3,1],[1,0,1,1]],[[0,2,2,1],[3,3,2,1],[1,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,4,2,1],[1,2,3,1],[1,0,1,1]],[[0,3,2,1],[2,3,2,1],[1,2,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,2,1],[1,2,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,2,1],[1,2,3,1],[1,0,2,0]],[[0,2,2,1],[3,3,2,1],[1,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,4,2,1],[1,2,3,1],[1,0,2,0]],[[0,3,2,1],[2,3,2,1],[1,2,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,2,1],[1,2,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,2,1],[1,2,3,1],[1,1,0,1]],[[0,2,2,1],[3,3,2,1],[1,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,4,2,1],[1,2,3,1],[1,1,0,1]],[[0,3,2,1],[2,3,2,1],[1,2,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[1,2,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[1,2,3,1],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[1,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[1,2,3,1],[1,1,1,0]],[[0,3,2,1],[2,3,2,1],[1,2,3,2],[0,1,0,1]],[[0,2,3,1],[2,3,2,1],[1,2,3,2],[0,1,0,1]],[[0,2,2,2],[2,3,2,1],[1,2,3,2],[0,1,0,1]],[[0,2,2,1],[3,3,2,1],[1,2,3,2],[0,1,0,1]],[[0,2,2,1],[2,4,2,1],[1,2,3,2],[0,1,0,1]],[[0,3,2,1],[2,3,2,1],[1,2,3,2],[1,0,0,1]],[[0,2,3,1],[2,3,2,1],[1,2,3,2],[1,0,0,1]],[[0,2,2,2],[2,3,2,1],[1,2,3,2],[1,0,0,1]],[[0,2,2,1],[3,3,2,1],[1,2,3,2],[1,0,0,1]],[[0,2,2,1],[2,4,2,1],[1,2,3,2],[1,0,0,1]],[[0,3,2,1],[2,3,2,1],[1,3,0,1],[0,2,2,1]],[[0,2,3,1],[2,3,2,1],[1,3,0,1],[0,2,2,1]],[[0,2,2,2],[2,3,2,1],[1,3,0,1],[0,2,2,1]],[[0,2,2,1],[3,3,2,1],[1,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,4,2,1],[1,3,0,1],[0,2,2,1]],[[0,2,2,1],[2,3,2,1],[1,4,0,1],[0,2,2,1]],[[0,2,2,1],[2,3,2,1],[1,3,0,1],[0,3,2,1]],[[0,2,2,1],[2,3,2,1],[1,3,0,1],[0,2,3,1]],[[0,2,2,1],[2,3,2,1],[1,3,0,1],[0,2,2,2]],[[0,3,2,1],[2,3,2,1],[1,3,0,1],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[1,3,0,1],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[1,3,0,1],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[1,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[1,3,0,1],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[1,4,0,1],[1,1,2,1]],[[0,3,2,1],[2,3,2,1],[1,3,0,2],[0,1,2,1]],[[0,2,3,1],[2,3,2,1],[1,3,0,2],[0,1,2,1]],[[0,2,2,2],[2,3,2,1],[1,3,0,2],[0,1,2,1]],[[0,2,2,1],[3,3,2,1],[1,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,4,2,1],[1,3,0,2],[0,1,2,1]],[[0,2,2,1],[2,3,2,1],[1,4,0,2],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[1,3,0,2],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[1,3,0,2],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[1,3,0,2],[0,2,1,1]],[[0,2,2,1],[3,3,2,1],[1,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[1,3,0,2],[0,2,1,1]],[[0,2,2,1],[2,3,2,1],[1,4,0,2],[0,2,1,1]],[[0,2,2,1],[2,3,2,1],[1,3,0,2],[0,3,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,0,2],[0,2,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,0,2],[0,2,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,0,2],[0,2,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,0,2],[0,2,2,0]],[[0,2,2,1],[2,3,2,1],[1,4,0,2],[0,2,2,0]],[[0,2,2,1],[2,3,2,1],[1,3,0,2],[0,3,2,0]],[[0,2,2,1],[2,3,2,1],[1,3,0,2],[0,2,3,0]],[[0,3,2,1],[2,3,2,1],[1,3,0,2],[1,0,2,1]],[[0,2,3,1],[2,3,2,1],[1,3,0,2],[1,0,2,1]],[[0,2,2,2],[2,3,2,1],[1,3,0,2],[1,0,2,1]],[[0,2,2,1],[3,3,2,1],[1,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,4,2,1],[1,3,0,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,1],[1,4,0,2],[1,0,2,1]],[[0,3,2,1],[2,3,2,1],[1,3,0,2],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[1,3,0,2],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[1,3,0,2],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[1,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[1,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[1,4,0,2],[1,1,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,0,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,0,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,0,2],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[1,4,0,2],[1,1,2,0]],[[0,3,2,1],[2,3,2,1],[1,3,1,0],[0,2,2,1]],[[0,2,3,1],[2,3,2,1],[1,3,1,0],[0,2,2,1]],[[0,2,2,2],[2,3,2,1],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[3,3,2,1],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,4,2,1],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,3,2,1],[1,4,1,0],[0,2,2,1]],[[0,2,2,1],[2,3,2,1],[1,3,1,0],[0,3,2,1]],[[0,2,2,1],[2,3,2,1],[1,3,1,0],[0,2,3,1]],[[0,2,2,1],[2,3,2,1],[1,3,1,0],[0,2,2,2]],[[0,3,2,1],[2,3,2,1],[1,3,1,0],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[1,3,1,0],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[1,4,1,0],[1,1,2,1]],[[0,3,2,1],[2,3,2,1],[1,3,1,1],[0,2,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,1,1],[0,2,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,3,2,1],[1,4,1,1],[0,2,2,0]],[[0,2,2,1],[2,3,2,1],[1,3,1,1],[0,3,2,0]],[[0,2,2,1],[2,3,2,1],[1,3,1,1],[0,2,3,0]],[[0,3,2,1],[2,3,2,1],[1,3,1,1],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,1,1],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[1,4,1,1],[1,1,2,0]],[[0,3,2,1],[2,3,2,1],[1,3,1,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,1],[1,3,1,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,1],[1,3,1,2],[0,1,1,1]],[[0,2,2,1],[3,3,2,1],[1,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,1],[1,3,1,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,1],[1,4,1,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,1,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,1,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,1,2],[0,1,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,1,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,1],[1,4,1,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[1,3,1,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[1,3,1,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[1,3,1,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,1],[1,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[1,3,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,1],[1,4,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,1],[1,3,1,2],[0,3,0,1]],[[0,3,2,1],[2,3,2,1],[1,3,1,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[1,3,1,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[1,3,1,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[1,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[1,3,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[1,4,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[1,3,1,2],[0,3,1,0]],[[0,3,2,1],[2,3,2,1],[1,3,1,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,1],[1,3,1,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,1],[1,3,1,2],[1,0,1,1]],[[0,2,2,1],[3,3,2,1],[1,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,4,2,1],[1,3,1,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,1],[1,4,1,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,1,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,1,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,1,2],[1,0,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,1,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[1,4,1,2],[1,0,2,0]],[[0,3,2,1],[2,3,2,1],[1,3,1,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,1],[1,3,1,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,1],[1,3,1,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,1],[1,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,1],[1,3,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[1,4,1,2],[1,1,0,1]],[[0,3,2,1],[2,3,2,1],[1,3,1,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[1,3,1,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[1,3,1,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[1,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[1,3,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[1,4,1,2],[1,1,1,0]],[[0,3,2,1],[2,3,2,1],[1,3,1,2],[1,2,0,0]],[[0,2,3,1],[2,3,2,1],[1,3,1,2],[1,2,0,0]],[[0,2,2,2],[2,3,2,1],[1,3,1,2],[1,2,0,0]],[[0,2,2,1],[3,3,2,1],[1,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,4,2,1],[1,3,1,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[1,4,1,2],[1,2,0,0]],[[0,3,2,1],[2,3,2,1],[1,3,2,0],[0,1,2,1]],[[0,2,3,1],[2,3,2,1],[1,3,2,0],[0,1,2,1]],[[0,2,2,2],[2,3,2,1],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[3,3,2,1],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,4,2,1],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,3,2,1],[1,4,2,0],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[1,3,2,0],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[1,3,2,0],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[3,3,2,1],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,3,2,1],[1,4,2,0],[0,2,1,1]],[[0,2,2,1],[2,3,2,1],[1,3,2,0],[0,3,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,2,0],[1,0,2,1]],[[0,2,3,1],[2,3,2,1],[1,3,2,0],[1,0,2,1]],[[0,2,2,2],[2,3,2,1],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[3,3,2,1],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,4,2,1],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,3,2,1],[1,4,2,0],[1,0,2,1]],[[0,3,2,1],[2,3,2,1],[1,3,2,0],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[1,3,2,0],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[1,4,2,0],[1,1,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,2,0],[1,2,0,1]],[[0,2,3,1],[2,3,2,1],[1,3,2,0],[1,2,0,1]],[[0,2,2,2],[2,3,2,1],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[3,3,2,1],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,4,2,1],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[1,4,2,0],[1,2,0,1]],[[0,3,2,1],[2,3,2,1],[1,3,2,1],[0,1,1,1]],[[0,2,3,1],[2,3,2,1],[1,3,2,1],[0,1,1,1]],[[0,2,2,2],[2,3,2,1],[1,3,2,1],[0,1,1,1]],[[0,2,2,1],[3,3,2,1],[1,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,4,2,1],[1,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,3,2,1],[1,4,2,1],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,2,1],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,2,1],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,3,2,1],[1,4,2,1],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[1,3,2,1],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[1,3,2,1],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[3,3,2,1],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,3,2,1],[1,4,2,1],[0,2,0,1]],[[0,2,2,1],[2,3,2,1],[1,3,2,1],[0,3,0,1]],[[0,3,2,1],[2,3,2,1],[1,3,2,1],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[1,3,2,1],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[1,4,2,1],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[1,3,2,1],[0,3,1,0]],[[0,3,2,1],[2,3,2,1],[1,3,2,1],[1,0,1,1]],[[0,2,3,1],[2,3,2,1],[1,3,2,1],[1,0,1,1]],[[0,2,2,2],[2,3,2,1],[1,3,2,1],[1,0,1,1]],[[0,2,2,1],[3,3,2,1],[1,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,4,2,1],[1,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,3,2,1],[1,4,2,1],[1,0,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,2,1],[1,0,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,2,1],[1,0,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[1,4,2,1],[1,0,2,0]],[[0,3,2,1],[2,3,2,1],[1,3,2,1],[1,1,0,1]],[[0,2,3,1],[2,3,2,1],[1,3,2,1],[1,1,0,1]],[[0,2,2,2],[2,3,2,1],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[3,3,2,1],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,4,2,1],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[1,4,2,1],[1,1,0,1]],[[0,3,2,1],[2,3,2,1],[1,3,2,1],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[1,3,2,1],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[1,4,2,1],[1,1,1,0]],[[0,3,2,1],[2,3,2,1],[1,3,2,1],[1,2,0,0]],[[0,2,3,1],[2,3,2,1],[1,3,2,1],[1,2,0,0]],[[0,2,2,2],[2,3,2,1],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[3,3,2,1],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,4,2,1],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[1,4,2,1],[1,2,0,0]],[[1,2,2,0],[1,4,3,2],[2,1,1,1],[1,2,1,0]],[[1,2,3,0],[1,3,3,2],[2,1,1,1],[1,2,1,0]],[[1,3,2,0],[1,3,3,2],[2,1,1,1],[1,2,1,0]],[[2,2,2,0],[1,3,3,2],[2,1,1,1],[1,2,1,0]],[[1,2,2,0],[1,4,3,2],[2,1,1,1],[1,2,0,1]],[[1,2,3,0],[1,3,3,2],[2,1,1,1],[1,2,0,1]],[[1,3,2,0],[1,3,3,2],[2,1,1,1],[1,2,0,1]],[[2,2,2,0],[1,3,3,2],[2,1,1,1],[1,2,0,1]],[[0,3,2,1],[2,3,2,1],[1,3,2,2],[0,0,1,1]],[[0,2,3,1],[2,3,2,1],[1,3,2,2],[0,0,1,1]],[[0,2,2,2],[2,3,2,1],[1,3,2,2],[0,0,1,1]],[[0,2,2,1],[3,3,2,1],[1,3,2,2],[0,0,1,1]],[[0,2,2,1],[2,4,2,1],[1,3,2,2],[0,0,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,2,2],[0,0,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,2,2],[0,0,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,2,2],[0,0,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,2,2],[0,0,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[1,4,3,2],[2,1,1,0],[1,2,1,1]],[[1,2,3,0],[1,3,3,2],[2,1,1,0],[1,2,1,1]],[[1,3,2,0],[1,3,3,2],[2,1,1,0],[1,2,1,1]],[[2,2,2,0],[1,3,3,2],[2,1,1,0],[1,2,1,1]],[[1,2,2,0],[1,4,3,2],[2,1,0,2],[1,2,1,0]],[[1,2,3,0],[1,3,3,2],[2,1,0,2],[1,2,1,0]],[[1,3,2,0],[1,3,3,2],[2,1,0,2],[1,2,1,0]],[[2,2,2,0],[1,3,3,2],[2,1,0,2],[1,2,1,0]],[[1,2,2,0],[1,4,3,2],[2,1,0,2],[1,2,0,1]],[[1,2,3,0],[1,3,3,2],[2,1,0,2],[1,2,0,1]],[[1,3,2,0],[1,3,3,2],[2,1,0,2],[1,2,0,1]],[[2,2,2,0],[1,3,3,2],[2,1,0,2],[1,2,0,1]],[[1,2,2,0],[1,4,3,2],[2,1,0,1],[1,2,2,0]],[[1,2,3,0],[1,3,3,2],[2,1,0,1],[1,2,2,0]],[[1,3,2,0],[1,3,3,2],[2,1,0,1],[1,2,2,0]],[[2,2,2,0],[1,3,3,2],[2,1,0,1],[1,2,2,0]],[[1,2,2,0],[1,4,3,2],[2,1,0,0],[1,2,2,1]],[[1,2,3,0],[1,3,3,2],[2,1,0,0],[1,2,2,1]],[[1,3,2,0],[1,3,3,2],[2,1,0,0],[1,2,2,1]],[[2,2,2,0],[1,3,3,2],[2,1,0,0],[1,2,2,1]],[[1,2,2,0],[1,3,3,2],[2,0,3,3],[1,0,0,1]],[[1,2,2,0],[1,3,3,3],[2,0,3,2],[1,0,0,1]],[[1,2,2,0],[1,3,4,2],[2,0,3,2],[1,0,0,1]],[[1,2,3,0],[1,3,3,2],[2,0,3,2],[1,0,0,1]],[[1,3,2,0],[1,3,3,2],[2,0,3,2],[1,0,0,1]],[[2,2,2,0],[1,3,3,2],[2,0,3,2],[1,0,0,1]],[[0,3,2,1],[2,3,2,1],[1,3,3,0],[0,0,2,1]],[[0,2,3,1],[2,3,2,1],[1,3,3,0],[0,0,2,1]],[[0,2,2,2],[2,3,2,1],[1,3,3,0],[0,0,2,1]],[[0,2,2,1],[3,3,2,1],[1,3,3,0],[0,0,2,1]],[[0,2,2,1],[2,4,2,1],[1,3,3,0],[0,0,2,1]],[[0,3,2,1],[2,3,2,1],[1,3,3,0],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,3,0],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,3,0],[0,1,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,3,2,1],[1,4,3,0],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[1,3,3,0],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[1,3,3,0],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[1,3,3,0],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[1,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[1,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[1,4,3,0],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[1,3,3,0],[0,3,1,0]],[[0,3,2,1],[2,3,2,1],[1,3,3,0],[1,0,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,3,0],[1,0,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,3,0],[1,0,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,3,0],[1,0,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,3,0],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[1,4,3,0],[1,0,2,0]],[[0,3,2,1],[2,3,2,1],[1,3,3,0],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[1,3,3,0],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[1,3,3,0],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[1,3,3,0],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[1,3,3,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[1,4,3,0],[1,1,1,0]],[[1,2,2,0],[1,3,3,2],[2,0,3,3],[0,1,0,1]],[[1,2,2,0],[1,3,3,3],[2,0,3,2],[0,1,0,1]],[[1,2,2,0],[1,3,4,2],[2,0,3,2],[0,1,0,1]],[[1,2,3,0],[1,3,3,2],[2,0,3,2],[0,1,0,1]],[[1,3,2,0],[1,3,3,2],[2,0,3,2],[0,1,0,1]],[[2,2,2,0],[1,3,3,2],[2,0,3,2],[0,1,0,1]],[[0,3,2,1],[2,3,2,1],[1,3,3,0],[1,2,0,0]],[[0,2,3,1],[2,3,2,1],[1,3,3,0],[1,2,0,0]],[[0,2,2,2],[2,3,2,1],[1,3,3,0],[1,2,0,0]],[[0,2,2,1],[3,3,2,1],[1,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,4,2,1],[1,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[1,4,3,0],[1,2,0,0]],[[0,3,2,1],[2,3,2,1],[1,3,3,1],[0,0,1,1]],[[0,2,3,1],[2,3,2,1],[1,3,3,1],[0,0,1,1]],[[0,2,2,2],[2,3,2,1],[1,3,3,1],[0,0,1,1]],[[0,2,2,1],[3,3,2,1],[1,3,3,1],[0,0,1,1]],[[0,2,2,1],[2,4,2,1],[1,3,3,1],[0,0,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,3,1],[0,0,2,0]],[[0,2,3,1],[2,3,2,1],[1,3,3,1],[0,0,2,0]],[[0,2,2,2],[2,3,2,1],[1,3,3,1],[0,0,2,0]],[[0,2,2,1],[3,3,2,1],[1,3,3,1],[0,0,2,0]],[[0,2,2,1],[2,4,2,1],[1,3,3,1],[0,0,2,0]],[[1,2,2,0],[1,3,3,3],[2,0,3,1],[1,1,1,0]],[[1,2,2,0],[1,3,4,2],[2,0,3,1],[1,1,1,0]],[[0,3,2,1],[2,3,2,1],[1,3,3,1],[0,2,0,0]],[[0,2,3,1],[2,3,2,1],[1,3,3,1],[0,2,0,0]],[[0,2,2,2],[2,3,2,1],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[3,3,2,1],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,4,2,1],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,3,2,1],[1,4,3,1],[0,2,0,0]],[[1,2,3,0],[1,3,3,2],[2,0,3,1],[1,1,1,0]],[[1,3,2,0],[1,3,3,2],[2,0,3,1],[1,1,1,0]],[[2,2,2,0],[1,3,3,2],[2,0,3,1],[1,1,1,0]],[[1,2,2,0],[1,3,3,3],[2,0,3,1],[1,1,0,1]],[[1,2,2,0],[1,3,4,2],[2,0,3,1],[1,1,0,1]],[[1,2,3,0],[1,3,3,2],[2,0,3,1],[1,1,0,1]],[[1,3,2,0],[1,3,3,2],[2,0,3,1],[1,1,0,1]],[[2,2,2,0],[1,3,3,2],[2,0,3,1],[1,1,0,1]],[[1,2,2,0],[1,3,3,3],[2,0,3,1],[1,0,2,0]],[[1,2,2,0],[1,3,4,2],[2,0,3,1],[1,0,2,0]],[[1,2,3,0],[1,3,3,2],[2,0,3,1],[1,0,2,0]],[[1,3,2,0],[1,3,3,2],[2,0,3,1],[1,0,2,0]],[[2,2,2,0],[1,3,3,2],[2,0,3,1],[1,0,2,0]],[[1,2,2,0],[1,3,3,3],[2,0,3,1],[1,0,1,1]],[[1,2,2,0],[1,3,4,2],[2,0,3,1],[1,0,1,1]],[[1,2,3,0],[1,3,3,2],[2,0,3,1],[1,0,1,1]],[[1,3,2,0],[1,3,3,2],[2,0,3,1],[1,0,1,1]],[[2,2,2,0],[1,3,3,2],[2,0,3,1],[1,0,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,3,1],[1,1,0,0]],[[0,2,3,1],[2,3,2,1],[1,3,3,1],[1,1,0,0]],[[0,2,2,2],[2,3,2,1],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[3,3,2,1],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,4,2,1],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,3,2,1],[1,4,3,1],[1,1,0,0]],[[1,2,2,0],[1,3,3,3],[2,0,3,1],[0,2,1,0]],[[1,2,2,0],[1,3,4,2],[2,0,3,1],[0,2,1,0]],[[1,2,3,0],[1,3,3,2],[2,0,3,1],[0,2,1,0]],[[1,3,2,0],[1,3,3,2],[2,0,3,1],[0,2,1,0]],[[2,2,2,0],[1,3,3,2],[2,0,3,1],[0,2,1,0]],[[1,2,2,0],[1,3,3,3],[2,0,3,1],[0,2,0,1]],[[1,2,2,0],[1,3,4,2],[2,0,3,1],[0,2,0,1]],[[1,2,3,0],[1,3,3,2],[2,0,3,1],[0,2,0,1]],[[1,3,2,0],[1,3,3,2],[2,0,3,1],[0,2,0,1]],[[2,2,2,0],[1,3,3,2],[2,0,3,1],[0,2,0,1]],[[1,2,2,0],[1,3,3,3],[2,0,3,1],[0,1,2,0]],[[1,2,2,0],[1,3,4,2],[2,0,3,1],[0,1,2,0]],[[1,2,3,0],[1,3,3,2],[2,0,3,1],[0,1,2,0]],[[1,3,2,0],[1,3,3,2],[2,0,3,1],[0,1,2,0]],[[2,2,2,0],[1,3,3,2],[2,0,3,1],[0,1,2,0]],[[1,2,2,0],[1,3,3,3],[2,0,3,1],[0,1,1,1]],[[1,2,2,0],[1,3,4,2],[2,0,3,1],[0,1,1,1]],[[1,2,3,0],[1,3,3,2],[2,0,3,1],[0,1,1,1]],[[1,3,2,0],[1,3,3,2],[2,0,3,1],[0,1,1,1]],[[2,2,2,0],[1,3,3,2],[2,0,3,1],[0,1,1,1]],[[1,2,2,0],[1,3,3,3],[2,0,3,1],[0,0,2,1]],[[1,2,2,0],[1,3,4,2],[2,0,3,1],[0,0,2,1]],[[1,2,3,0],[1,3,3,2],[2,0,3,1],[0,0,2,1]],[[1,3,2,0],[1,3,3,2],[2,0,3,1],[0,0,2,1]],[[2,2,2,0],[1,3,3,2],[2,0,3,1],[0,0,2,1]],[[1,2,2,0],[1,3,4,2],[2,0,3,0],[1,1,1,1]],[[1,2,3,0],[1,3,3,2],[2,0,3,0],[1,1,1,1]],[[1,3,2,0],[1,3,3,2],[2,0,3,0],[1,1,1,1]],[[2,2,2,0],[1,3,3,2],[2,0,3,0],[1,1,1,1]],[[1,2,2,0],[1,3,3,3],[2,0,3,0],[1,0,2,1]],[[1,2,2,0],[1,3,4,2],[2,0,3,0],[1,0,2,1]],[[1,2,3,0],[1,3,3,2],[2,0,3,0],[1,0,2,1]],[[1,3,2,0],[1,3,3,2],[2,0,3,0],[1,0,2,1]],[[2,2,2,0],[1,3,3,2],[2,0,3,0],[1,0,2,1]],[[1,2,2,0],[1,3,4,2],[2,0,3,0],[0,2,1,1]],[[1,2,3,0],[1,3,3,2],[2,0,3,0],[0,2,1,1]],[[1,3,2,0],[1,3,3,2],[2,0,3,0],[0,2,1,1]],[[2,2,2,0],[1,3,3,2],[2,0,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[1,3,3,2],[0,0,0,1]],[[0,2,3,1],[2,3,2,1],[1,3,3,2],[0,0,0,1]],[[0,2,2,2],[2,3,2,1],[1,3,3,2],[0,0,0,1]],[[0,2,2,1],[3,3,2,1],[1,3,3,2],[0,0,0,1]],[[0,2,2,1],[2,4,2,1],[1,3,3,2],[0,0,0,1]],[[1,2,2,0],[1,3,3,3],[2,0,3,0],[0,1,2,1]],[[1,2,2,0],[1,3,4,2],[2,0,3,0],[0,1,2,1]],[[1,2,3,0],[1,3,3,2],[2,0,3,0],[0,1,2,1]],[[1,3,2,0],[1,3,3,2],[2,0,3,0],[0,1,2,1]],[[2,2,2,0],[1,3,3,2],[2,0,3,0],[0,1,2,1]],[[1,2,2,0],[1,3,3,3],[2,0,2,2],[1,1,1,0]],[[1,2,2,0],[1,3,4,2],[2,0,2,2],[1,1,1,0]],[[1,2,3,0],[1,3,3,2],[2,0,2,2],[1,1,1,0]],[[1,3,2,0],[1,3,3,2],[2,0,2,2],[1,1,1,0]],[[2,2,2,0],[1,3,3,2],[2,0,2,2],[1,1,1,0]],[[1,2,2,0],[1,3,3,2],[2,0,2,3],[1,1,0,1]],[[1,2,2,0],[1,3,3,3],[2,0,2,2],[1,1,0,1]],[[1,2,2,0],[1,3,4,2],[2,0,2,2],[1,1,0,1]],[[1,2,3,0],[1,3,3,2],[2,0,2,2],[1,1,0,1]],[[1,3,2,0],[1,3,3,2],[2,0,2,2],[1,1,0,1]],[[2,2,2,0],[1,3,3,2],[2,0,2,2],[1,1,0,1]],[[1,2,2,0],[1,3,3,2],[2,0,2,3],[1,0,2,0]],[[1,2,2,0],[1,3,3,3],[2,0,2,2],[1,0,2,0]],[[1,2,2,0],[1,3,4,2],[2,0,2,2],[1,0,2,0]],[[1,2,3,0],[1,3,3,2],[2,0,2,2],[1,0,2,0]],[[1,3,2,0],[1,3,3,2],[2,0,2,2],[1,0,2,0]],[[2,2,2,0],[1,3,3,2],[2,0,2,2],[1,0,2,0]],[[1,2,2,0],[1,3,3,2],[2,0,2,2],[1,0,1,2]],[[1,2,2,0],[1,3,3,2],[2,0,2,3],[1,0,1,1]],[[1,2,2,0],[1,3,3,3],[2,0,2,2],[1,0,1,1]],[[1,2,2,0],[1,3,4,2],[2,0,2,2],[1,0,1,1]],[[1,2,3,0],[1,3,3,2],[2,0,2,2],[1,0,1,1]],[[1,3,2,0],[1,3,3,2],[2,0,2,2],[1,0,1,1]],[[2,2,2,0],[1,3,3,2],[2,0,2,2],[1,0,1,1]],[[1,2,2,0],[1,3,3,3],[2,0,2,2],[0,2,1,0]],[[1,2,2,0],[1,3,4,2],[2,0,2,2],[0,2,1,0]],[[1,2,3,0],[1,3,3,2],[2,0,2,2],[0,2,1,0]],[[1,3,2,0],[1,3,3,2],[2,0,2,2],[0,2,1,0]],[[2,2,2,0],[1,3,3,2],[2,0,2,2],[0,2,1,0]],[[1,2,2,0],[1,3,3,2],[2,0,2,3],[0,2,0,1]],[[1,2,2,0],[1,3,3,3],[2,0,2,2],[0,2,0,1]],[[1,2,2,0],[1,3,4,2],[2,0,2,2],[0,2,0,1]],[[1,2,3,0],[1,3,3,2],[2,0,2,2],[0,2,0,1]],[[1,3,2,0],[1,3,3,2],[2,0,2,2],[0,2,0,1]],[[2,2,2,0],[1,3,3,2],[2,0,2,2],[0,2,0,1]],[[1,2,2,0],[1,3,3,2],[2,0,2,3],[0,1,2,0]],[[1,2,2,0],[1,3,3,3],[2,0,2,2],[0,1,2,0]],[[1,2,2,0],[1,3,4,2],[2,0,2,2],[0,1,2,0]],[[1,2,3,0],[1,3,3,2],[2,0,2,2],[0,1,2,0]],[[1,3,2,0],[1,3,3,2],[2,0,2,2],[0,1,2,0]],[[2,2,2,0],[1,3,3,2],[2,0,2,2],[0,1,2,0]],[[1,2,2,0],[1,3,3,2],[2,0,2,2],[0,1,1,2]],[[1,2,2,0],[1,3,3,2],[2,0,2,3],[0,1,1,1]],[[1,2,2,0],[1,3,3,3],[2,0,2,2],[0,1,1,1]],[[1,2,2,0],[1,3,4,2],[2,0,2,2],[0,1,1,1]],[[1,2,3,0],[1,3,3,2],[2,0,2,2],[0,1,1,1]],[[1,3,2,0],[1,3,3,2],[2,0,2,2],[0,1,1,1]],[[2,2,2,0],[1,3,3,2],[2,0,2,2],[0,1,1,1]],[[1,2,2,0],[1,3,3,2],[2,0,2,2],[0,0,2,2]],[[1,2,2,0],[1,3,3,2],[2,0,2,3],[0,0,2,1]],[[1,2,2,0],[1,3,3,3],[2,0,2,2],[0,0,2,1]],[[1,2,2,0],[1,3,4,2],[2,0,2,2],[0,0,2,1]],[[1,2,3,0],[1,3,3,2],[2,0,2,2],[0,0,2,1]],[[1,3,2,0],[1,3,3,2],[2,0,2,2],[0,0,2,1]],[[2,2,2,0],[1,3,3,2],[2,0,2,2],[0,0,2,1]],[[1,2,2,0],[1,3,3,2],[2,0,1,2],[1,0,2,2]],[[1,2,2,0],[1,3,3,2],[2,0,1,3],[1,0,2,1]],[[1,2,2,0],[1,3,3,3],[2,0,1,2],[1,0,2,1]],[[1,2,2,0],[1,3,4,2],[2,0,1,2],[1,0,2,1]],[[1,2,3,0],[1,3,3,2],[2,0,1,2],[1,0,2,1]],[[1,3,2,0],[1,3,3,2],[2,0,1,2],[1,0,2,1]],[[2,2,2,0],[1,3,3,2],[2,0,1,2],[1,0,2,1]],[[1,2,2,0],[1,3,3,2],[2,0,1,2],[0,1,2,2]],[[1,2,2,0],[1,3,3,2],[2,0,1,3],[0,1,2,1]],[[1,2,2,0],[1,3,3,3],[2,0,1,2],[0,1,2,1]],[[1,2,2,0],[1,3,4,2],[2,0,1,2],[0,1,2,1]],[[1,2,3,0],[1,3,3,2],[2,0,1,2],[0,1,2,1]],[[1,3,2,0],[1,3,3,2],[2,0,1,2],[0,1,2,1]],[[2,2,2,0],[1,3,3,2],[2,0,1,2],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,0,1,1],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[2,0,1,1],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[2,0,1,1],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[2,0,1,1],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[2,0,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[3,0,1,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[2,0,1,1],[2,2,2,1]],[[0,2,2,1],[2,3,2,1],[2,0,1,1],[1,3,2,1]],[[0,2,2,1],[2,3,2,1],[2,0,1,1],[1,2,3,1]],[[0,2,2,1],[2,3,2,1],[2,0,1,1],[1,2,2,2]],[[0,3,2,1],[2,3,2,1],[2,0,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,2,1],[2,0,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,2,1],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[3,3,2,1],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,4,2,1],[2,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,2,1],[3,0,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[2,0,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[2,0,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[2,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[3,0,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[2,0,1,2],[2,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,0,1,2],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[2,0,1,2],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[2,0,1,2],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[2,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[2,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[3,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[2,0,1,2],[2,2,1,1]],[[0,2,2,1],[2,3,2,1],[2,0,1,2],[1,3,1,1]],[[0,3,2,1],[2,3,2,1],[2,0,1,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[2,0,1,2],[1,2,2,0]],[[0,2,2,2],[2,3,2,1],[2,0,1,2],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[2,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[2,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[3,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[2,0,1,2],[2,2,2,0]],[[0,2,2,1],[2,3,2,1],[2,0,1,2],[1,3,2,0]],[[0,2,2,1],[2,3,2,1],[2,0,1,2],[1,2,3,0]],[[0,3,2,1],[2,3,2,1],[2,0,2,0],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[2,0,2,0],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[3,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[2,0,2,0],[2,2,2,1]],[[0,2,2,1],[2,3,2,1],[2,0,2,0],[1,3,2,1]],[[0,2,2,1],[2,3,2,1],[2,0,2,0],[1,2,3,1]],[[0,2,2,1],[2,3,2,1],[2,0,2,0],[1,2,2,2]],[[0,3,2,1],[2,3,2,1],[2,0,2,1],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[2,0,2,1],[1,2,2,0]],[[0,2,2,2],[2,3,2,1],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[3,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[2,0,2,1],[2,2,2,0]],[[0,2,2,1],[2,3,2,1],[2,0,2,1],[1,3,2,0]],[[0,2,2,1],[2,3,2,1],[2,0,2,1],[1,2,3,0]],[[0,3,2,1],[2,3,2,1],[2,0,2,2],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[2,0,2,2],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[3,3,2,1],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[2,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,3,2,1],[3,0,2,2],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[2,0,2,2],[0,2,2,0]],[[0,2,3,1],[2,3,2,1],[2,0,2,2],[0,2,2,0]],[[0,2,2,2],[2,3,2,1],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[3,3,2,1],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,4,2,1],[2,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,2,1],[3,0,2,2],[0,2,2,0]],[[0,3,2,1],[2,3,2,1],[2,0,2,2],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[2,0,2,2],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[2,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[3,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[2,0,2,2],[2,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,0,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[2,0,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[2,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[3,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[2,0,2,2],[2,1,2,0]],[[0,3,2,1],[2,3,2,1],[2,0,2,2],[1,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,0,2,2],[1,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,0,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[2,0,2,2],[2,2,0,1]],[[0,2,2,1],[2,3,2,1],[2,0,2,2],[1,3,0,1]],[[0,3,2,1],[2,3,2,1],[2,0,2,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,0,2,2],[1,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,0,2,2],[1,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,0,2,2],[1,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,0,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,0,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[2,0,2,2],[2,2,1,0]],[[0,2,2,1],[2,3,2,1],[2,0,2,2],[1,3,1,0]],[[0,3,2,1],[2,3,2,1],[2,0,3,0],[0,2,2,1]],[[0,2,3,1],[2,3,2,1],[2,0,3,0],[0,2,2,1]],[[0,2,2,2],[2,3,2,1],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[3,3,2,1],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,4,2,1],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,2,1],[3,0,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[2,0,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[2,0,3,0],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[3,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[2,0,3,0],[2,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,0,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[2,0,3,0],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[3,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[2,0,3,0],[2,2,1,1]],[[0,2,2,1],[2,3,2,1],[2,0,3,0],[1,3,1,1]],[[0,3,2,1],[2,3,2,1],[2,0,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[2,0,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[3,3,2,1],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[2,0,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,2,1],[3,0,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[2,0,3,1],[0,2,2,0]],[[0,2,3,1],[2,3,2,1],[2,0,3,1],[0,2,2,0]],[[0,2,2,2],[2,3,2,1],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[3,3,2,1],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,4,2,1],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,3,2,1],[3,0,3,1],[0,2,2,0]],[[0,3,2,1],[2,3,2,1],[2,0,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[2,0,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[2,0,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[3,0,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[2,0,3,1],[2,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,0,3,1],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[2,0,3,1],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[3,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[2,0,3,1],[2,1,2,0]],[[0,3,2,1],[2,3,2,1],[2,0,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,0,3,1],[1,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[2,0,3,1],[2,2,0,1]],[[0,2,2,1],[2,3,2,1],[2,0,3,1],[1,3,0,1]],[[0,3,2,1],[2,3,2,1],[2,0,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,0,3,1],[1,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[2,0,3,1],[2,2,1,0]],[[0,2,2,1],[2,3,2,1],[2,0,3,1],[1,3,1,0]],[[0,3,2,1],[2,3,2,1],[2,1,0,1],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[2,1,0,1],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[2,1,0,1],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[2,1,0,1],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[2,1,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[3,1,0,1],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[2,1,0,1],[2,2,2,1]],[[0,2,2,1],[2,3,2,1],[2,1,0,1],[1,3,2,1]],[[0,2,2,1],[2,3,2,1],[2,1,0,1],[1,2,3,1]],[[0,2,2,1],[2,3,2,1],[2,1,0,1],[1,2,2,2]],[[0,3,2,1],[2,3,2,1],[2,1,0,2],[0,2,2,1]],[[0,2,3,1],[2,3,2,1],[2,1,0,2],[0,2,2,1]],[[0,2,2,2],[2,3,2,1],[2,1,0,2],[0,2,2,1]],[[0,2,2,1],[3,3,2,1],[2,1,0,2],[0,2,2,1]],[[0,2,2,1],[2,4,2,1],[2,1,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,2,1],[3,1,0,2],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[2,1,0,2],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[2,1,0,2],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[2,1,0,2],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[2,1,0,2],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[2,1,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[3,1,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[2,1,0,2],[2,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,1,0,2],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[2,1,0,2],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[2,1,0,2],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[2,1,0,2],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[2,1,0,2],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[3,1,0,2],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[2,1,0,2],[2,2,1,1]],[[0,2,2,1],[2,3,2,1],[2,1,0,2],[1,3,1,1]],[[0,3,2,1],[2,3,2,1],[2,1,0,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[2,1,0,2],[1,2,2,0]],[[0,2,2,2],[2,3,2,1],[2,1,0,2],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[2,1,0,2],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[2,1,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[3,1,0,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[2,1,0,2],[2,2,2,0]],[[0,2,2,1],[2,3,2,1],[2,1,0,2],[1,3,2,0]],[[0,2,2,1],[2,3,2,1],[2,1,0,2],[1,2,3,0]],[[0,3,2,1],[2,3,2,1],[2,1,1,0],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[2,1,1,0],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[3,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[2,1,1,0],[2,2,2,1]],[[0,2,2,1],[2,3,2,1],[2,1,1,0],[1,3,2,1]],[[0,2,2,1],[2,3,2,1],[2,1,1,0],[1,2,3,1]],[[0,2,2,1],[2,3,2,1],[2,1,1,0],[1,2,2,2]],[[0,3,2,1],[2,3,2,1],[2,1,1,1],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[2,1,1,1],[1,2,2,0]],[[0,2,2,2],[2,3,2,1],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[3,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[2,1,1,1],[2,2,2,0]],[[0,2,2,1],[2,3,2,1],[2,1,1,1],[1,3,2,0]],[[0,2,2,1],[2,3,2,1],[2,1,1,1],[1,2,3,0]],[[0,3,2,1],[2,3,2,1],[2,1,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,2,1],[2,1,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,2,1],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[3,3,2,1],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,4,2,1],[2,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,2,1],[3,1,1,2],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,1,1,2],[1,0,2,1]],[[0,2,3,1],[2,3,2,1],[2,1,1,2],[1,0,2,1]],[[0,2,2,2],[2,3,2,1],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[3,3,2,1],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,4,2,1],[2,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,1],[3,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,1],[2,1,1,2],[2,0,2,1]],[[0,3,2,1],[2,3,2,1],[2,1,1,2],[1,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,1,1,2],[1,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,1,1,2],[1,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,1,1,2],[1,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,1,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,1,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[2,1,1,2],[2,2,0,1]],[[0,2,2,1],[2,3,2,1],[2,1,1,2],[1,3,0,1]],[[0,3,2,1],[2,3,2,1],[2,1,1,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,1,1,2],[1,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,1,1,2],[1,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,1,1,2],[1,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,1,1,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,1,1,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[2,1,1,2],[2,2,1,0]],[[0,2,2,1],[2,3,2,1],[2,1,1,2],[1,3,1,0]],[[0,3,2,1],[2,3,2,1],[2,1,2,0],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[2,1,2,0],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[3,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[2,1,2,0],[2,2,1,1]],[[0,2,2,1],[2,3,2,1],[2,1,2,0],[1,3,1,1]],[[0,3,2,1],[2,3,2,1],[2,1,2,1],[1,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,1,2,1],[1,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[2,1,2,1],[2,2,0,1]],[[0,2,2,1],[2,3,2,1],[2,1,2,1],[1,3,0,1]],[[0,3,2,1],[2,3,2,1],[2,1,2,1],[1,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,1,2,1],[1,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[2,1,2,1],[2,2,1,0]],[[0,2,2,1],[2,3,2,1],[2,1,2,1],[1,3,1,0]],[[1,2,2,0],[1,4,3,2],[1,3,2,1],[1,1,0,0]],[[1,2,3,0],[1,3,3,2],[1,3,2,1],[1,1,0,0]],[[1,3,2,0],[1,3,3,2],[1,3,2,1],[1,1,0,0]],[[2,2,2,0],[1,3,3,2],[1,3,2,1],[1,1,0,0]],[[0,3,2,1],[2,3,2,1],[2,1,2,2],[0,0,2,1]],[[0,2,3,1],[2,3,2,1],[2,1,2,2],[0,0,2,1]],[[0,2,2,2],[2,3,2,1],[2,1,2,2],[0,0,2,1]],[[0,2,2,1],[3,3,2,1],[2,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,4,2,1],[2,1,2,2],[0,0,2,1]],[[0,3,2,1],[2,3,2,1],[2,1,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,1],[2,1,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,1],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[3,3,2,1],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,1],[2,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,1],[3,1,2,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,1,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[2,1,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[3,3,2,1],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[2,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,1],[3,1,2,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[2,1,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,1,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,1,2,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[2,1,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,1,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,1,2,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,1,2,2],[0,2,1,0]],[[0,3,2,1],[2,3,2,1],[2,1,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,1],[2,1,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,1],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[3,3,2,1],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,4,2,1],[2,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,1],[3,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,1],[2,1,2,2],[2,0,1,1]],[[0,3,2,1],[2,3,2,1],[2,1,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,1],[2,1,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,1],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[3,3,2,1],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,4,2,1],[2,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[3,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[2,1,2,2],[2,0,2,0]],[[0,3,2,1],[2,3,2,1],[2,1,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,1],[2,1,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,1],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,1],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,1],[2,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[3,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[2,1,2,2],[2,1,0,1]],[[0,3,2,1],[2,3,2,1],[2,1,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[2,1,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[2,1,2,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[2,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[2,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[3,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[2,1,2,2],[2,1,1,0]],[[1,2,2,0],[1,4,3,2],[1,3,2,1],[0,2,0,0]],[[1,2,3,0],[1,3,3,2],[1,3,2,1],[0,2,0,0]],[[1,3,2,0],[1,3,3,2],[1,3,2,1],[0,2,0,0]],[[2,2,2,0],[1,3,3,2],[1,3,2,1],[0,2,0,0]],[[0,3,2,1],[2,3,2,1],[2,1,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,2,1],[2,1,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,2,1],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[3,3,2,1],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,2,1],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,2,1],[3,1,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,1,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[2,1,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[3,3,2,1],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,2,1],[3,1,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[2,1,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,2,1],[2,1,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,2,1],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[3,3,2,1],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,4,2,1],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,2,1],[3,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,2,1],[2,1,3,0],[2,0,2,1]],[[0,3,2,1],[2,3,2,1],[2,1,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[2,1,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[3,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[2,1,3,0],[2,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,1,3,0],[1,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,1,3,0],[1,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,1,3,0],[1,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,1,3,0],[1,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,1,3,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,1,3,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[2,1,3,0],[2,2,1,0]],[[0,2,2,1],[2,3,2,1],[2,1,3,0],[1,3,1,0]],[[0,3,2,1],[2,3,2,1],[2,1,3,1],[0,0,2,1]],[[0,2,3,1],[2,3,2,1],[2,1,3,1],[0,0,2,1]],[[0,2,2,2],[2,3,2,1],[2,1,3,1],[0,0,2,1]],[[0,2,2,1],[3,3,2,1],[2,1,3,1],[0,0,2,1]],[[0,2,2,1],[2,4,2,1],[2,1,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,2,1],[2,1,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,2,1],[2,1,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,2,1],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[3,3,2,1],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,2,1],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,2,1],[3,1,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,1,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[2,1,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[3,3,2,1],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,2,1],[3,1,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[2,1,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,1,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,1,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[2,1,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,1,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,1,3,1],[0,2,1,0]],[[0,3,2,1],[2,3,2,1],[2,1,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,2,1],[2,1,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,2,1],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[3,3,2,1],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,4,2,1],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,2,1],[3,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,2,1],[2,1,3,1],[2,0,1,1]],[[0,3,2,1],[2,3,2,1],[2,1,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,2,1],[2,1,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,2,1],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[3,3,2,1],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,4,2,1],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[3,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[2,1,3,1],[2,0,2,0]],[[0,3,2,1],[2,3,2,1],[2,1,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,2,1],[2,1,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,2,1],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[3,3,2,1],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,4,2,1],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[3,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[2,1,3,1],[2,1,0,1]],[[0,3,2,1],[2,3,2,1],[2,1,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[2,1,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[3,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[2,1,3,1],[2,1,1,0]],[[0,3,2,1],[2,3,2,1],[2,1,3,2],[0,1,0,1]],[[0,2,3,1],[2,3,2,1],[2,1,3,2],[0,1,0,1]],[[0,2,2,2],[2,3,2,1],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[3,3,2,1],[2,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,4,2,1],[2,1,3,2],[0,1,0,1]],[[0,3,2,1],[2,3,2,1],[2,1,3,2],[1,0,0,1]],[[0,2,3,1],[2,3,2,1],[2,1,3,2],[1,0,0,1]],[[0,2,2,2],[2,3,2,1],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[3,3,2,1],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,4,2,1],[2,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,2,1],[3,1,3,2],[1,0,0,1]],[[1,2,2,0],[1,4,3,2],[1,3,1,1],[1,2,0,0]],[[1,2,3,0],[1,3,3,2],[1,3,1,1],[1,2,0,0]],[[1,3,2,0],[1,3,3,2],[1,3,1,1],[1,2,0,0]],[[2,2,2,0],[1,3,3,2],[1,3,1,1],[1,2,0,0]],[[1,2,2,0],[1,4,3,2],[1,3,1,1],[1,1,1,0]],[[1,2,3,0],[1,3,3,2],[1,3,1,1],[1,1,1,0]],[[1,3,2,0],[1,3,3,2],[1,3,1,1],[1,1,1,0]],[[2,2,2,0],[1,3,3,2],[1,3,1,1],[1,1,1,0]],[[1,2,2,0],[1,4,3,2],[1,3,1,1],[1,1,0,1]],[[1,2,3,0],[1,3,3,2],[1,3,1,1],[1,1,0,1]],[[1,3,2,0],[1,3,3,2],[1,3,1,1],[1,1,0,1]],[[2,2,2,0],[1,3,3,2],[1,3,1,1],[1,1,0,1]],[[1,2,2,0],[1,4,3,2],[1,3,1,1],[1,0,2,0]],[[1,2,3,0],[1,3,3,2],[1,3,1,1],[1,0,2,0]],[[1,3,2,0],[1,3,3,2],[1,3,1,1],[1,0,2,0]],[[2,2,2,0],[1,3,3,2],[1,3,1,1],[1,0,2,0]],[[1,2,2,0],[1,4,3,2],[1,3,1,1],[1,0,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,0,0],[1,2,2,1]],[[0,2,3,1],[2,3,2,1],[2,2,0,0],[1,2,2,1]],[[0,2,2,2],[2,3,2,1],[2,2,0,0],[1,2,2,1]],[[0,2,2,1],[3,3,2,1],[2,2,0,0],[1,2,2,1]],[[0,2,2,1],[2,4,2,1],[2,2,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[3,2,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,2,1],[2,2,0,0],[2,2,2,1]],[[0,2,2,1],[2,3,2,1],[2,2,0,0],[1,3,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,0,1],[0,2,2,1]],[[0,2,3,1],[2,3,2,1],[2,2,0,1],[0,2,2,1]],[[0,2,2,2],[2,3,2,1],[2,2,0,1],[0,2,2,1]],[[0,2,2,1],[3,3,2,1],[2,2,0,1],[0,2,2,1]],[[0,2,2,1],[2,4,2,1],[2,2,0,1],[0,2,2,1]],[[0,2,2,1],[2,3,2,1],[3,2,0,1],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,0,1],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[2,2,0,1],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[2,2,0,1],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[2,2,0,1],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[2,2,0,1],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[3,2,0,1],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[2,2,0,1],[2,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,0,1],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[2,2,0,1],[1,2,2,0]],[[0,2,2,2],[2,3,2,1],[2,2,0,1],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[2,2,0,1],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[2,2,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[3,2,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[2,2,0,1],[2,2,2,0]],[[0,2,2,1],[2,3,2,1],[2,2,0,1],[1,3,2,0]],[[0,3,2,1],[2,3,2,1],[2,2,0,2],[0,1,2,1]],[[0,2,3,1],[2,3,2,1],[2,2,0,2],[0,1,2,1]],[[0,2,2,2],[2,3,2,1],[2,2,0,2],[0,1,2,1]],[[0,2,2,1],[3,3,2,1],[2,2,0,2],[0,1,2,1]],[[0,2,2,1],[2,4,2,1],[2,2,0,2],[0,1,2,1]],[[0,2,2,1],[2,3,2,1],[3,2,0,2],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,0,2],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[2,2,0,2],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[2,2,0,2],[0,2,1,1]],[[0,2,2,1],[3,3,2,1],[2,2,0,2],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[2,2,0,2],[0,2,1,1]],[[0,2,2,1],[2,3,2,1],[3,2,0,2],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,0,2],[0,2,2,0]],[[0,2,3,1],[2,3,2,1],[2,2,0,2],[0,2,2,0]],[[0,2,2,2],[2,3,2,1],[2,2,0,2],[0,2,2,0]],[[0,2,2,1],[3,3,2,1],[2,2,0,2],[0,2,2,0]],[[0,2,2,1],[2,4,2,1],[2,2,0,2],[0,2,2,0]],[[0,2,2,1],[2,3,2,1],[3,2,0,2],[0,2,2,0]],[[0,3,2,1],[2,3,2,1],[2,2,0,2],[1,0,2,1]],[[0,2,3,1],[2,3,2,1],[2,2,0,2],[1,0,2,1]],[[0,2,2,2],[2,3,2,1],[2,2,0,2],[1,0,2,1]],[[0,2,2,1],[3,3,2,1],[2,2,0,2],[1,0,2,1]],[[0,2,2,1],[2,4,2,1],[2,2,0,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,1],[3,2,0,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,1],[2,2,0,2],[2,0,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,0,2],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[2,2,0,2],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[2,2,0,2],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[2,2,0,2],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[2,2,0,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[3,2,0,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[2,2,0,2],[2,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,0,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[2,2,0,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[2,2,0,2],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[2,2,0,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[2,2,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[3,2,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[2,2,0,2],[2,1,2,0]],[[1,2,3,0],[1,3,3,2],[1,3,1,1],[1,0,1,1]],[[1,3,2,0],[1,3,3,2],[1,3,1,1],[1,0,1,1]],[[2,2,2,0],[1,3,3,2],[1,3,1,1],[1,0,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,1,0],[0,2,2,1]],[[0,2,3,1],[2,3,2,1],[2,2,1,0],[0,2,2,1]],[[0,2,2,2],[2,3,2,1],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[3,3,2,1],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[2,4,2,1],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[2,3,2,1],[3,2,1,0],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,1,0],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[2,2,1,0],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[3,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[2,2,1,0],[2,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,1,1],[0,2,2,0]],[[0,2,3,1],[2,3,2,1],[2,2,1,1],[0,2,2,0]],[[0,2,2,2],[2,3,2,1],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[3,3,2,1],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[2,4,2,1],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[2,3,2,1],[3,2,1,1],[0,2,2,0]],[[0,3,2,1],[2,3,2,1],[2,2,1,1],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[2,2,1,1],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[3,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[2,2,1,1],[2,1,2,0]],[[1,2,2,0],[1,4,3,2],[1,3,1,1],[0,2,1,0]],[[1,2,3,0],[1,3,3,2],[1,3,1,1],[0,2,1,0]],[[1,3,2,0],[1,3,3,2],[1,3,1,1],[0,2,1,0]],[[2,2,2,0],[1,3,3,2],[1,3,1,1],[0,2,1,0]],[[1,2,2,0],[1,4,3,2],[1,3,1,1],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[2,2,1,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,1],[2,2,1,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,1],[2,2,1,2],[0,1,1,1]],[[0,2,2,1],[3,3,2,1],[2,2,1,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,1],[2,2,1,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,1],[3,2,1,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,1,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[2,2,1,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[2,2,1,2],[0,1,2,0]],[[0,2,2,1],[3,3,2,1],[2,2,1,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[2,2,1,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,1],[3,2,1,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[2,2,1,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,2,1,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,2,1,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,2,1,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,2,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,2,1,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[2,2,1,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,2,1,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,2,1,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,2,1,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,2,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,2,1,2],[0,2,1,0]],[[1,2,3,0],[1,3,3,2],[1,3,1,1],[0,2,0,1]],[[1,3,2,0],[1,3,3,2],[1,3,1,1],[0,2,0,1]],[[2,2,2,0],[1,3,3,2],[1,3,1,1],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[2,2,1,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,1],[2,2,1,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,1],[2,2,1,2],[1,0,1,1]],[[0,2,2,1],[3,3,2,1],[2,2,1,2],[1,0,1,1]],[[0,2,2,1],[2,4,2,1],[2,2,1,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,1],[3,2,1,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,1],[2,2,1,2],[2,0,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,1,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,1],[2,2,1,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,1],[2,2,1,2],[1,0,2,0]],[[0,2,2,1],[3,3,2,1],[2,2,1,2],[1,0,2,0]],[[0,2,2,1],[2,4,2,1],[2,2,1,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[3,2,1,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[2,2,1,2],[2,0,2,0]],[[0,3,2,1],[2,3,2,1],[2,2,1,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,1],[2,2,1,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,1],[2,2,1,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,1],[2,2,1,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,1],[2,2,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[3,2,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[2,2,1,2],[2,1,0,1]],[[0,3,2,1],[2,3,2,1],[2,2,1,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[2,2,1,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[2,2,1,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[2,2,1,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[2,2,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[3,2,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[2,2,1,2],[2,1,1,0]],[[1,2,2,0],[1,4,3,2],[1,3,1,1],[0,1,2,0]],[[1,2,3,0],[1,3,3,2],[1,3,1,1],[0,1,2,0]],[[1,3,2,0],[1,3,3,2],[1,3,1,1],[0,1,2,0]],[[2,2,2,0],[1,3,3,2],[1,3,1,1],[0,1,2,0]],[[1,2,2,0],[1,4,3,2],[1,3,1,1],[0,1,1,1]],[[1,2,3,0],[1,3,3,2],[1,3,1,1],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,1,2],[1,2,0,0]],[[0,2,3,1],[2,3,2,1],[2,2,1,2],[1,2,0,0]],[[0,2,2,2],[2,3,2,1],[2,2,1,2],[1,2,0,0]],[[0,2,2,1],[3,3,2,1],[2,2,1,2],[1,2,0,0]],[[0,2,2,1],[2,4,2,1],[2,2,1,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[3,2,1,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[2,2,1,2],[2,2,0,0]],[[1,3,2,0],[1,3,3,2],[1,3,1,1],[0,1,1,1]],[[2,2,2,0],[1,3,3,2],[1,3,1,1],[0,1,1,1]],[[1,2,2,0],[1,4,3,2],[1,3,1,0],[1,2,0,1]],[[1,2,3,0],[1,3,3,2],[1,3,1,0],[1,2,0,1]],[[1,3,2,0],[1,3,3,2],[1,3,1,0],[1,2,0,1]],[[2,2,2,0],[1,3,3,2],[1,3,1,0],[1,2,0,1]],[[1,2,2,0],[1,4,3,2],[1,3,1,0],[1,1,1,1]],[[1,2,3,0],[1,3,3,2],[1,3,1,0],[1,1,1,1]],[[1,3,2,0],[1,3,3,2],[1,3,1,0],[1,1,1,1]],[[2,2,2,0],[1,3,3,2],[1,3,1,0],[1,1,1,1]],[[1,2,2,0],[1,4,3,2],[1,3,1,0],[1,0,2,1]],[[1,2,3,0],[1,3,3,2],[1,3,1,0],[1,0,2,1]],[[1,3,2,0],[1,3,3,2],[1,3,1,0],[1,0,2,1]],[[2,2,2,0],[1,3,3,2],[1,3,1,0],[1,0,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,2,0],[0,1,2,1]],[[0,2,3,1],[2,3,2,1],[2,2,2,0],[0,1,2,1]],[[0,2,2,2],[2,3,2,1],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[3,3,2,1],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[2,4,2,1],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[2,3,2,1],[3,2,2,0],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,2,0],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[2,2,2,0],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[3,3,2,1],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[2,3,2,1],[3,2,2,0],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,2,0],[1,0,2,1]],[[0,2,3,1],[2,3,2,1],[2,2,2,0],[1,0,2,1]],[[0,2,2,2],[2,3,2,1],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[3,3,2,1],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,4,2,1],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,3,2,1],[3,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,3,2,1],[2,2,2,0],[2,0,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,2,0],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[2,2,2,0],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[3,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[2,2,2,0],[2,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,2,0],[1,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,2,2,0],[1,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,2,2,0],[1,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,2,2,0],[1,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,2,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,2,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[2,2,2,0],[2,2,0,1]],[[1,2,2,0],[1,4,3,2],[1,3,1,0],[0,2,1,1]],[[1,2,3,0],[1,3,3,2],[1,3,1,0],[0,2,1,1]],[[1,3,2,0],[1,3,3,2],[1,3,1,0],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,2,1],[0,1,1,1]],[[0,2,3,1],[2,3,2,1],[2,2,2,1],[0,1,1,1]],[[0,2,2,2],[2,3,2,1],[2,2,2,1],[0,1,1,1]],[[0,2,2,1],[3,3,2,1],[2,2,2,1],[0,1,1,1]],[[0,2,2,1],[2,4,2,1],[2,2,2,1],[0,1,1,1]],[[0,2,2,1],[2,3,2,1],[3,2,2,1],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,2,1],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[2,2,2,1],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[3,3,2,1],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[2,3,2,1],[3,2,2,1],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[2,2,2,1],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,2,2,1],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,2,2,1],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[2,2,2,1],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,2,2,1],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,2,2,1],[0,2,1,0]],[[2,2,2,0],[1,3,3,2],[1,3,1,0],[0,2,1,1]],[[1,2,2,0],[1,4,3,2],[1,3,1,0],[0,1,2,1]],[[1,2,3,0],[1,3,3,2],[1,3,1,0],[0,1,2,1]],[[1,3,2,0],[1,3,3,2],[1,3,1,0],[0,1,2,1]],[[2,2,2,0],[1,3,3,2],[1,3,1,0],[0,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,2,1],[1,0,1,1]],[[0,2,3,1],[2,3,2,1],[2,2,2,1],[1,0,1,1]],[[0,2,2,2],[2,3,2,1],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[3,3,2,1],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[2,4,2,1],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[2,3,2,1],[3,2,2,1],[1,0,1,1]],[[0,2,2,1],[2,3,2,1],[2,2,2,1],[2,0,1,1]],[[0,3,2,1],[2,3,2,1],[2,2,2,1],[1,0,2,0]],[[0,2,3,1],[2,3,2,1],[2,2,2,1],[1,0,2,0]],[[0,2,2,2],[2,3,2,1],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[3,3,2,1],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,4,2,1],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[3,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[2,2,2,1],[2,0,2,0]],[[0,3,2,1],[2,3,2,1],[2,2,2,1],[1,1,0,1]],[[0,2,3,1],[2,3,2,1],[2,2,2,1],[1,1,0,1]],[[0,2,2,2],[2,3,2,1],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[3,3,2,1],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,4,2,1],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[3,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[2,2,2,1],[2,1,0,1]],[[0,3,2,1],[2,3,2,1],[2,2,2,1],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[2,2,2,1],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[3,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[2,2,2,1],[2,1,1,0]],[[0,3,2,1],[2,3,2,1],[2,2,2,1],[1,2,0,0]],[[0,2,3,1],[2,3,2,1],[2,2,2,1],[1,2,0,0]],[[0,2,2,2],[2,3,2,1],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[3,3,2,1],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,4,2,1],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[3,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[2,2,2,1],[2,2,0,0]],[[1,2,2,0],[1,4,3,2],[1,3,0,2],[1,2,0,0]],[[1,2,3,0],[1,3,3,2],[1,3,0,2],[1,2,0,0]],[[1,3,2,0],[1,3,3,2],[1,3,0,2],[1,2,0,0]],[[2,2,2,0],[1,3,3,2],[1,3,0,2],[1,2,0,0]],[[1,2,2,0],[1,4,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,3,0],[1,3,3,2],[1,3,0,2],[1,1,1,0]],[[1,3,2,0],[1,3,3,2],[1,3,0,2],[1,1,1,0]],[[2,2,2,0],[1,3,3,2],[1,3,0,2],[1,1,1,0]],[[1,2,2,0],[1,4,3,2],[1,3,0,2],[1,1,0,1]],[[1,2,3,0],[1,3,3,2],[1,3,0,2],[1,1,0,1]],[[1,3,2,0],[1,3,3,2],[1,3,0,2],[1,1,0,1]],[[2,2,2,0],[1,3,3,2],[1,3,0,2],[1,1,0,1]],[[1,2,2,0],[1,4,3,2],[1,3,0,2],[1,0,2,0]],[[1,2,3,0],[1,3,3,2],[1,3,0,2],[1,0,2,0]],[[1,3,2,0],[1,3,3,2],[1,3,0,2],[1,0,2,0]],[[2,2,2,0],[1,3,3,2],[1,3,0,2],[1,0,2,0]],[[1,2,2,0],[1,4,3,2],[1,3,0,2],[1,0,1,1]],[[1,2,3,0],[1,3,3,2],[1,3,0,2],[1,0,1,1]],[[1,3,2,0],[1,3,3,2],[1,3,0,2],[1,0,1,1]],[[2,2,2,0],[1,3,3,2],[1,3,0,2],[1,0,1,1]],[[1,2,2,0],[1,4,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,3,0],[1,3,3,2],[1,3,0,2],[0,2,1,0]],[[1,3,2,0],[1,3,3,2],[1,3,0,2],[0,2,1,0]],[[2,2,2,0],[1,3,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,2,0],[1,4,3,2],[1,3,0,2],[0,2,0,1]],[[1,2,3,0],[1,3,3,2],[1,3,0,2],[0,2,0,1]],[[1,3,2,0],[1,3,3,2],[1,3,0,2],[0,2,0,1]],[[2,2,2,0],[1,3,3,2],[1,3,0,2],[0,2,0,1]],[[1,2,2,0],[1,4,3,2],[1,3,0,2],[0,1,2,0]],[[1,2,3,0],[1,3,3,2],[1,3,0,2],[0,1,2,0]],[[1,3,2,0],[1,3,3,2],[1,3,0,2],[0,1,2,0]],[[2,2,2,0],[1,3,3,2],[1,3,0,2],[0,1,2,0]],[[1,2,2,0],[1,4,3,2],[1,3,0,2],[0,1,1,1]],[[1,2,3,0],[1,3,3,2],[1,3,0,2],[0,1,1,1]],[[1,3,2,0],[1,3,3,2],[1,3,0,2],[0,1,1,1]],[[2,2,2,0],[1,3,3,2],[1,3,0,2],[0,1,1,1]],[[1,2,2,0],[1,4,3,2],[1,3,0,1],[1,1,2,0]],[[1,2,3,0],[1,3,3,2],[1,3,0,1],[1,1,2,0]],[[1,3,2,0],[1,3,3,2],[1,3,0,1],[1,1,2,0]],[[2,2,2,0],[1,3,3,2],[1,3,0,1],[1,1,2,0]],[[1,2,2,0],[1,4,3,2],[1,3,0,1],[0,2,2,0]],[[1,2,3,0],[1,3,3,2],[1,3,0,1],[0,2,2,0]],[[1,3,2,0],[1,3,3,2],[1,3,0,1],[0,2,2,0]],[[2,2,2,0],[1,3,3,2],[1,3,0,1],[0,2,2,0]],[[1,2,2,0],[1,4,3,2],[1,3,0,0],[1,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,3,0],[0,1,2,0]],[[0,2,3,1],[2,3,2,1],[2,2,3,0],[0,1,2,0]],[[0,2,2,2],[2,3,2,1],[2,2,3,0],[0,1,2,0]],[[0,2,2,1],[3,3,2,1],[2,2,3,0],[0,1,2,0]],[[0,2,2,1],[2,4,2,1],[2,2,3,0],[0,1,2,0]],[[0,2,2,1],[2,3,2,1],[3,2,3,0],[0,1,2,0]],[[0,3,2,1],[2,3,2,1],[2,2,3,0],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,2,3,0],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,2,3,0],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,2,3,0],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,2,3,0],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,2,3,0],[0,2,1,0]],[[1,2,3,0],[1,3,3,2],[1,3,0,0],[1,1,2,1]],[[1,3,2,0],[1,3,3,2],[1,3,0,0],[1,1,2,1]],[[2,2,2,0],[1,3,3,2],[1,3,0,0],[1,1,2,1]],[[1,2,2,0],[1,4,3,2],[1,3,0,0],[0,2,2,1]],[[1,2,3,0],[1,3,3,2],[1,3,0,0],[0,2,2,1]],[[1,3,2,0],[1,3,3,2],[1,3,0,0],[0,2,2,1]],[[2,2,2,0],[1,3,3,2],[1,3,0,0],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[2,2,3,0],[1,0,2,0]],[[0,2,3,1],[2,3,2,1],[2,2,3,0],[1,0,2,0]],[[0,2,2,2],[2,3,2,1],[2,2,3,0],[1,0,2,0]],[[0,2,2,1],[3,3,2,1],[2,2,3,0],[1,0,2,0]],[[0,2,2,1],[2,4,2,1],[2,2,3,0],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[3,2,3,0],[1,0,2,0]],[[0,2,2,1],[2,3,2,1],[2,2,3,0],[2,0,2,0]],[[0,3,2,1],[2,3,2,1],[2,2,3,0],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[2,2,3,0],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[2,2,3,0],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[2,2,3,0],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[2,2,3,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[3,2,3,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[2,2,3,0],[2,1,1,0]],[[0,3,2,1],[2,3,2,1],[2,2,3,0],[1,2,0,0]],[[0,2,3,1],[2,3,2,1],[2,2,3,0],[1,2,0,0]],[[0,2,2,2],[2,3,2,1],[2,2,3,0],[1,2,0,0]],[[0,2,2,1],[3,3,2,1],[2,2,3,0],[1,2,0,0]],[[0,2,2,1],[2,4,2,1],[2,2,3,0],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[3,2,3,0],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[2,2,3,0],[2,2,0,0]],[[1,2,2,0],[1,3,3,2],[1,2,3,3],[0,0,0,1]],[[1,2,2,0],[1,3,3,3],[1,2,3,2],[0,0,0,1]],[[1,2,2,0],[1,3,4,2],[1,2,3,2],[0,0,0,1]],[[1,2,3,0],[1,3,3,2],[1,2,3,2],[0,0,0,1]],[[1,3,2,0],[1,3,3,2],[1,2,3,2],[0,0,0,1]],[[2,2,2,0],[1,3,3,2],[1,2,3,2],[0,0,0,1]],[[0,3,2,1],[2,3,2,1],[2,2,3,1],[0,2,0,0]],[[0,2,3,1],[2,3,2,1],[2,2,3,1],[0,2,0,0]],[[0,2,2,2],[2,3,2,1],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[3,3,2,1],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[2,4,2,1],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[2,3,2,1],[3,2,3,1],[0,2,0,0]],[[0,3,2,1],[2,3,2,1],[2,2,3,1],[1,1,0,0]],[[0,2,3,1],[2,3,2,1],[2,2,3,1],[1,1,0,0]],[[0,2,2,2],[2,3,2,1],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[3,3,2,1],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,4,2,1],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,3,2,1],[3,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,3,2,1],[2,2,3,1],[2,1,0,0]],[[1,2,2,0],[1,3,3,3],[1,2,3,1],[0,0,2,0]],[[1,2,2,0],[1,3,4,2],[1,2,3,1],[0,0,2,0]],[[1,2,3,0],[1,3,3,2],[1,2,3,1],[0,0,2,0]],[[1,3,2,0],[1,3,3,2],[1,2,3,1],[0,0,2,0]],[[2,2,2,0],[1,3,3,2],[1,2,3,1],[0,0,2,0]],[[1,2,2,0],[1,3,3,3],[1,2,3,1],[0,0,1,1]],[[1,2,2,0],[1,3,4,2],[1,2,3,1],[0,0,1,1]],[[1,2,3,0],[1,3,3,2],[1,2,3,1],[0,0,1,1]],[[1,3,2,0],[1,3,3,2],[1,2,3,1],[0,0,1,1]],[[2,2,2,0],[1,3,3,2],[1,2,3,1],[0,0,1,1]],[[1,2,2,0],[1,3,4,2],[1,2,3,0],[0,0,2,1]],[[1,2,3,0],[1,3,3,2],[1,2,3,0],[0,0,2,1]],[[1,3,2,0],[1,3,3,2],[1,2,3,0],[0,0,2,1]],[[2,2,2,0],[1,3,3,2],[1,2,3,0],[0,0,2,1]],[[1,2,2,0],[1,3,3,3],[1,2,2,2],[0,0,2,0]],[[1,2,2,0],[1,3,4,2],[1,2,2,2],[0,0,2,0]],[[1,2,3,0],[1,3,3,2],[1,2,2,2],[0,0,2,0]],[[1,3,2,0],[1,3,3,2],[1,2,2,2],[0,0,2,0]],[[2,2,2,0],[1,3,3,2],[1,2,2,2],[0,0,2,0]],[[1,2,2,0],[1,3,3,2],[1,2,2,3],[0,0,1,1]],[[1,2,2,0],[1,3,3,3],[1,2,2,2],[0,0,1,1]],[[1,2,2,0],[1,3,4,2],[1,2,2,2],[0,0,1,1]],[[1,2,3,0],[1,3,3,2],[1,2,2,2],[0,0,1,1]],[[1,3,2,0],[1,3,3,2],[1,2,2,2],[0,0,1,1]],[[2,2,2,0],[1,3,3,2],[1,2,2,2],[0,0,1,1]],[[1,2,2,0],[1,3,3,2],[1,1,3,3],[1,0,0,1]],[[1,2,2,0],[1,3,3,3],[1,1,3,2],[1,0,0,1]],[[1,2,2,0],[1,3,4,2],[1,1,3,2],[1,0,0,1]],[[1,2,3,0],[1,3,3,2],[1,1,3,2],[1,0,0,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,2],[1,0,0,1]],[[2,2,2,0],[1,3,3,2],[1,1,3,2],[1,0,0,1]],[[1,2,2,0],[1,3,3,2],[1,1,3,3],[0,1,0,1]],[[1,2,2,0],[1,3,3,3],[1,1,3,2],[0,1,0,1]],[[1,2,2,0],[1,3,4,2],[1,1,3,2],[0,1,0,1]],[[1,2,3,0],[1,3,3,2],[1,1,3,2],[0,1,0,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,2],[0,1,0,1]],[[2,2,2,0],[1,3,3,2],[1,1,3,2],[0,1,0,1]],[[0,3,2,1],[2,3,2,1],[2,3,0,0],[0,2,2,1]],[[0,2,3,1],[2,3,2,1],[2,3,0,0],[0,2,2,1]],[[0,2,2,2],[2,3,2,1],[2,3,0,0],[0,2,2,1]],[[0,2,2,1],[3,3,2,1],[2,3,0,0],[0,2,2,1]],[[0,2,2,1],[2,4,2,1],[2,3,0,0],[0,2,2,1]],[[0,2,2,1],[2,3,2,1],[3,3,0,0],[0,2,2,1]],[[0,3,2,1],[2,3,2,1],[2,3,0,0],[1,1,2,1]],[[0,2,3,1],[2,3,2,1],[2,3,0,0],[1,1,2,1]],[[0,2,2,2],[2,3,2,1],[2,3,0,0],[1,1,2,1]],[[0,2,2,1],[3,3,2,1],[2,3,0,0],[1,1,2,1]],[[0,2,2,1],[2,4,2,1],[2,3,0,0],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[3,3,0,0],[1,1,2,1]],[[0,2,2,1],[2,3,2,1],[2,3,0,0],[2,1,2,1]],[[0,3,2,1],[2,3,2,1],[2,3,0,0],[1,2,1,1]],[[0,2,3,1],[2,3,2,1],[2,3,0,0],[1,2,1,1]],[[0,2,2,2],[2,3,2,1],[2,3,0,0],[1,2,1,1]],[[0,2,2,1],[3,3,2,1],[2,3,0,0],[1,2,1,1]],[[0,2,2,1],[2,4,2,1],[2,3,0,0],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[3,3,0,0],[1,2,1,1]],[[0,2,2,1],[2,3,2,1],[2,3,0,0],[2,2,1,1]],[[0,3,2,1],[2,3,2,1],[2,3,0,0],[1,2,2,0]],[[0,2,3,1],[2,3,2,1],[2,3,0,0],[1,2,2,0]],[[0,2,2,1],[3,3,2,1],[2,3,0,0],[1,2,2,0]],[[0,2,2,1],[2,4,2,1],[2,3,0,0],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[3,3,0,0],[1,2,2,0]],[[0,2,2,1],[2,3,2,1],[2,3,0,0],[2,2,2,0]],[[0,3,2,1],[2,3,2,1],[2,3,0,1],[0,2,2,0]],[[0,2,3,1],[2,3,2,1],[2,3,0,1],[0,2,2,0]],[[0,2,2,2],[2,3,2,1],[2,3,0,1],[0,2,2,0]],[[0,2,2,1],[3,3,2,1],[2,3,0,1],[0,2,2,0]],[[0,2,2,1],[2,4,2,1],[2,3,0,1],[0,2,2,0]],[[0,2,2,1],[2,3,2,1],[3,3,0,1],[0,2,2,0]],[[0,3,2,1],[2,3,2,1],[2,3,0,1],[1,1,2,0]],[[0,2,3,1],[2,3,2,1],[2,3,0,1],[1,1,2,0]],[[0,2,2,2],[2,3,2,1],[2,3,0,1],[1,1,2,0]],[[0,2,2,1],[3,3,2,1],[2,3,0,1],[1,1,2,0]],[[0,2,2,1],[2,4,2,1],[2,3,0,1],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[3,3,0,1],[1,1,2,0]],[[0,2,2,1],[2,3,2,1],[2,3,0,1],[2,1,2,0]],[[0,3,2,1],[2,3,2,1],[2,3,0,1],[1,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,3,0,1],[1,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,3,0,1],[1,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,3,0,1],[1,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,3,0,1],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,3,0,1],[1,2,1,0]],[[0,2,2,1],[2,3,2,1],[2,3,0,1],[2,2,1,0]],[[0,3,2,1],[2,3,2,1],[2,3,0,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,3,0,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,3,0,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,3,0,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,3,0,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,3,0,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[2,3,0,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,3,0,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,3,0,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,3,0,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,3,0,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,3,0,2],[0,2,1,0]],[[1,2,2,0],[1,3,3,3],[1,1,3,1],[1,1,1,0]],[[1,2,2,0],[1,3,4,2],[1,1,3,1],[1,1,1,0]],[[1,2,3,0],[1,3,3,2],[1,1,3,1],[1,1,1,0]],[[1,3,2,0],[1,3,3,2],[1,1,3,1],[1,1,1,0]],[[2,2,2,0],[1,3,3,2],[1,1,3,1],[1,1,1,0]],[[0,3,2,1],[2,3,2,1],[2,3,0,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,1],[2,3,0,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,1],[2,3,0,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,1],[2,3,0,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,1],[2,3,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[3,3,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[2,3,0,2],[2,1,0,1]],[[0,3,2,1],[2,3,2,1],[2,3,0,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[2,3,0,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[2,3,0,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[2,3,0,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[2,3,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[3,3,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[2,3,0,2],[2,1,1,0]],[[1,2,2,0],[1,3,3,3],[1,1,3,1],[1,1,0,1]],[[1,2,2,0],[1,3,4,2],[1,1,3,1],[1,1,0,1]],[[1,2,3,0],[1,3,3,2],[1,1,3,1],[1,1,0,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,1],[1,1,0,1]],[[2,2,2,0],[1,3,3,2],[1,1,3,1],[1,1,0,1]],[[0,3,2,1],[2,3,2,1],[2,3,0,2],[1,2,0,0]],[[0,2,3,1],[2,3,2,1],[2,3,0,2],[1,2,0,0]],[[0,2,2,2],[2,3,2,1],[2,3,0,2],[1,2,0,0]],[[0,2,2,1],[3,3,2,1],[2,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,4,2,1],[2,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[3,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[2,3,0,2],[2,2,0,0]],[[1,2,2,0],[1,3,3,3],[1,1,3,1],[1,0,2,0]],[[1,2,2,0],[1,3,4,2],[1,1,3,1],[1,0,2,0]],[[1,2,3,0],[1,3,3,2],[1,1,3,1],[1,0,2,0]],[[1,3,2,0],[1,3,3,2],[1,1,3,1],[1,0,2,0]],[[2,2,2,0],[1,3,3,2],[1,1,3,1],[1,0,2,0]],[[1,2,2,0],[1,3,3,3],[1,1,3,1],[1,0,1,1]],[[1,2,2,0],[1,3,4,2],[1,1,3,1],[1,0,1,1]],[[1,2,3,0],[1,3,3,2],[1,1,3,1],[1,0,1,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,1],[1,0,1,1]],[[2,2,2,0],[1,3,3,2],[1,1,3,1],[1,0,1,1]],[[1,2,2,0],[1,3,3,3],[1,1,3,1],[0,2,1,0]],[[1,2,2,0],[1,3,4,2],[1,1,3,1],[0,2,1,0]],[[1,2,3,0],[1,3,3,2],[1,1,3,1],[0,2,1,0]],[[0,3,2,1],[2,3,2,1],[2,3,1,0],[0,2,1,1]],[[0,2,3,1],[2,3,2,1],[2,3,1,0],[0,2,1,1]],[[0,2,2,2],[2,3,2,1],[2,3,1,0],[0,2,1,1]],[[0,2,2,1],[3,3,2,1],[2,3,1,0],[0,2,1,1]],[[0,2,2,1],[2,4,2,1],[2,3,1,0],[0,2,1,1]],[[0,2,2,1],[2,3,2,1],[3,3,1,0],[0,2,1,1]],[[0,3,2,1],[2,3,2,1],[2,3,1,0],[1,1,1,1]],[[0,2,3,1],[2,3,2,1],[2,3,1,0],[1,1,1,1]],[[0,2,2,2],[2,3,2,1],[2,3,1,0],[1,1,1,1]],[[0,2,2,1],[3,3,2,1],[2,3,1,0],[1,1,1,1]],[[0,2,2,1],[2,4,2,1],[2,3,1,0],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[3,3,1,0],[1,1,1,1]],[[0,2,2,1],[2,3,2,1],[2,3,1,0],[2,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,3,1,0],[1,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,3,1,0],[1,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,3,1,0],[1,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,3,1,0],[1,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,3,1,0],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,3,1,0],[1,2,0,1]],[[0,2,2,1],[2,3,2,1],[2,3,1,0],[2,2,0,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,1],[0,2,1,0]],[[2,2,2,0],[1,3,3,2],[1,1,3,1],[0,2,1,0]],[[1,2,2,0],[1,3,3,3],[1,1,3,1],[0,2,0,1]],[[1,2,2,0],[1,3,4,2],[1,1,3,1],[0,2,0,1]],[[1,2,3,0],[1,3,3,2],[1,1,3,1],[0,2,0,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,1],[0,2,0,1]],[[2,2,2,0],[1,3,3,2],[1,1,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[2,3,1,1],[0,2,0,1]],[[0,2,3,1],[2,3,2,1],[2,3,1,1],[0,2,0,1]],[[0,2,2,2],[2,3,2,1],[2,3,1,1],[0,2,0,1]],[[0,2,2,1],[3,3,2,1],[2,3,1,1],[0,2,0,1]],[[0,2,2,1],[2,4,2,1],[2,3,1,1],[0,2,0,1]],[[0,2,2,1],[2,3,2,1],[3,3,1,1],[0,2,0,1]],[[0,3,2,1],[2,3,2,1],[2,3,1,1],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,3,1,1],[0,2,1,0]],[[0,2,2,2],[2,3,2,1],[2,3,1,1],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,3,1,1],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,3,1,1],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,3,1,1],[0,2,1,0]],[[1,2,2,0],[1,3,3,3],[1,1,3,1],[0,1,2,0]],[[1,2,2,0],[1,3,4,2],[1,1,3,1],[0,1,2,0]],[[1,2,3,0],[1,3,3,2],[1,1,3,1],[0,1,2,0]],[[1,3,2,0],[1,3,3,2],[1,1,3,1],[0,1,2,0]],[[2,2,2,0],[1,3,3,2],[1,1,3,1],[0,1,2,0]],[[1,2,2,0],[1,3,3,3],[1,1,3,1],[0,1,1,1]],[[1,2,2,0],[1,3,4,2],[1,1,3,1],[0,1,1,1]],[[1,2,3,0],[1,3,3,2],[1,1,3,1],[0,1,1,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,2,1],[2,3,1,1],[1,1,0,1]],[[0,2,3,1],[2,3,2,1],[2,3,1,1],[1,1,0,1]],[[0,2,2,2],[2,3,2,1],[2,3,1,1],[1,1,0,1]],[[0,2,2,1],[3,3,2,1],[2,3,1,1],[1,1,0,1]],[[0,2,2,1],[2,4,2,1],[2,3,1,1],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[3,3,1,1],[1,1,0,1]],[[0,2,2,1],[2,3,2,1],[2,3,1,1],[2,1,0,1]],[[0,3,2,1],[2,3,2,1],[2,3,1,1],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[2,3,1,1],[1,1,1,0]],[[0,2,2,2],[2,3,2,1],[2,3,1,1],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[2,3,1,1],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[2,3,1,1],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[3,3,1,1],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[2,3,1,1],[2,1,1,0]],[[2,2,2,0],[1,3,3,2],[1,1,3,1],[0,1,1,1]],[[1,2,2,0],[1,3,3,3],[1,1,3,1],[0,0,2,1]],[[1,2,2,0],[1,3,4,2],[1,1,3,1],[0,0,2,1]],[[1,2,3,0],[1,3,3,2],[1,1,3,1],[0,0,2,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,1],[0,0,2,1]],[[2,2,2,0],[1,3,3,2],[1,1,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,2,1],[2,3,1,1],[1,2,0,0]],[[0,2,3,1],[2,3,2,1],[2,3,1,1],[1,2,0,0]],[[0,2,2,2],[2,3,2,1],[2,3,1,1],[1,2,0,0]],[[0,2,2,1],[3,3,2,1],[2,3,1,1],[1,2,0,0]],[[0,2,2,1],[2,4,2,1],[2,3,1,1],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[3,3,1,1],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[2,3,1,1],[2,2,0,0]],[[1,2,2,0],[1,3,4,2],[1,1,3,0],[1,1,1,1]],[[1,2,3,0],[1,3,3,2],[1,1,3,0],[1,1,1,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,0],[1,1,1,1]],[[2,2,2,0],[1,3,3,2],[1,1,3,0],[1,1,1,1]],[[1,2,2,0],[1,3,3,3],[1,1,3,0],[1,0,2,1]],[[1,2,2,0],[1,3,4,2],[1,1,3,0],[1,0,2,1]],[[1,2,3,0],[1,3,3,2],[1,1,3,0],[1,0,2,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,0],[1,0,2,1]],[[2,2,2,0],[1,3,3,2],[1,1,3,0],[1,0,2,1]],[[1,2,2,0],[1,3,4,2],[1,1,3,0],[0,2,1,1]],[[1,2,3,0],[1,3,3,2],[1,1,3,0],[0,2,1,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,0],[0,2,1,1]],[[2,2,2,0],[1,3,3,2],[1,1,3,0],[0,2,1,1]],[[1,2,2,0],[1,3,3,3],[1,1,3,0],[0,1,2,1]],[[1,2,2,0],[1,3,4,2],[1,1,3,0],[0,1,2,1]],[[1,2,3,0],[1,3,3,2],[1,1,3,0],[0,1,2,1]],[[1,3,2,0],[1,3,3,2],[1,1,3,0],[0,1,2,1]],[[2,2,2,0],[1,3,3,2],[1,1,3,0],[0,1,2,1]],[[1,2,2,0],[1,3,3,3],[1,1,2,2],[1,1,1,0]],[[1,2,2,0],[1,3,4,2],[1,1,2,2],[1,1,1,0]],[[1,2,3,0],[1,3,3,2],[1,1,2,2],[1,1,1,0]],[[1,3,2,0],[1,3,3,2],[1,1,2,2],[1,1,1,0]],[[0,3,2,1],[2,3,2,1],[2,3,1,2],[1,0,0,1]],[[0,2,3,1],[2,3,2,1],[2,3,1,2],[1,0,0,1]],[[0,2,2,2],[2,3,2,1],[2,3,1,2],[1,0,0,1]],[[0,2,2,1],[3,3,2,1],[2,3,1,2],[1,0,0,1]],[[0,2,2,1],[2,4,2,1],[2,3,1,2],[1,0,0,1]],[[0,2,2,1],[2,3,2,1],[3,3,1,2],[1,0,0,1]],[[0,3,2,1],[2,3,2,1],[2,3,1,2],[1,0,1,0]],[[0,2,3,1],[2,3,2,1],[2,3,1,2],[1,0,1,0]],[[0,2,2,2],[2,3,2,1],[2,3,1,2],[1,0,1,0]],[[0,2,2,1],[3,3,2,1],[2,3,1,2],[1,0,1,0]],[[0,2,2,1],[2,4,2,1],[2,3,1,2],[1,0,1,0]],[[0,2,2,1],[2,3,2,1],[3,3,1,2],[1,0,1,0]],[[2,2,2,0],[1,3,3,2],[1,1,2,2],[1,1,1,0]],[[1,2,2,0],[1,3,3,2],[1,1,2,3],[1,1,0,1]],[[1,2,2,0],[1,3,3,3],[1,1,2,2],[1,1,0,1]],[[1,2,2,0],[1,3,4,2],[1,1,2,2],[1,1,0,1]],[[1,2,3,0],[1,3,3,2],[1,1,2,2],[1,1,0,1]],[[1,3,2,0],[1,3,3,2],[1,1,2,2],[1,1,0,1]],[[2,2,2,0],[1,3,3,2],[1,1,2,2],[1,1,0,1]],[[1,2,2,0],[1,3,3,2],[1,1,2,3],[1,0,2,0]],[[1,2,2,0],[1,3,3,3],[1,1,2,2],[1,0,2,0]],[[1,2,2,0],[1,3,4,2],[1,1,2,2],[1,0,2,0]],[[1,2,3,0],[1,3,3,2],[1,1,2,2],[1,0,2,0]],[[1,3,2,0],[1,3,3,2],[1,1,2,2],[1,0,2,0]],[[2,2,2,0],[1,3,3,2],[1,1,2,2],[1,0,2,0]],[[1,2,2,0],[1,3,3,2],[1,1,2,2],[1,0,1,2]],[[1,2,2,0],[1,3,3,2],[1,1,2,3],[1,0,1,1]],[[1,2,2,0],[1,3,3,3],[1,1,2,2],[1,0,1,1]],[[1,2,2,0],[1,3,4,2],[1,1,2,2],[1,0,1,1]],[[1,2,3,0],[1,3,3,2],[1,1,2,2],[1,0,1,1]],[[1,3,2,0],[1,3,3,2],[1,1,2,2],[1,0,1,1]],[[2,2,2,0],[1,3,3,2],[1,1,2,2],[1,0,1,1]],[[1,2,2,0],[1,3,3,3],[1,1,2,2],[0,2,1,0]],[[1,2,2,0],[1,3,4,2],[1,1,2,2],[0,2,1,0]],[[1,2,3,0],[1,3,3,2],[1,1,2,2],[0,2,1,0]],[[1,3,2,0],[1,3,3,2],[1,1,2,2],[0,2,1,0]],[[2,2,2,0],[1,3,3,2],[1,1,2,2],[0,2,1,0]],[[1,2,2,0],[1,3,3,2],[1,1,2,3],[0,2,0,1]],[[1,2,2,0],[1,3,3,3],[1,1,2,2],[0,2,0,1]],[[1,2,2,0],[1,3,4,2],[1,1,2,2],[0,2,0,1]],[[1,2,3,0],[1,3,3,2],[1,1,2,2],[0,2,0,1]],[[1,3,2,0],[1,3,3,2],[1,1,2,2],[0,2,0,1]],[[2,2,2,0],[1,3,3,2],[1,1,2,2],[0,2,0,1]],[[1,2,2,0],[1,3,3,2],[1,1,2,3],[0,1,2,0]],[[1,2,2,0],[1,3,3,3],[1,1,2,2],[0,1,2,0]],[[1,2,2,0],[1,3,4,2],[1,1,2,2],[0,1,2,0]],[[1,2,3,0],[1,3,3,2],[1,1,2,2],[0,1,2,0]],[[1,3,2,0],[1,3,3,2],[1,1,2,2],[0,1,2,0]],[[2,2,2,0],[1,3,3,2],[1,1,2,2],[0,1,2,0]],[[1,2,2,0],[1,3,3,2],[1,1,2,2],[0,1,1,2]],[[1,2,2,0],[1,3,3,2],[1,1,2,3],[0,1,1,1]],[[1,2,2,0],[1,3,3,3],[1,1,2,2],[0,1,1,1]],[[1,2,2,0],[1,3,4,2],[1,1,2,2],[0,1,1,1]],[[1,2,3,0],[1,3,3,2],[1,1,2,2],[0,1,1,1]],[[1,3,2,0],[1,3,3,2],[1,1,2,2],[0,1,1,1]],[[2,2,2,0],[1,3,3,2],[1,1,2,2],[0,1,1,1]],[[1,2,2,0],[1,3,3,2],[1,1,2,2],[0,0,2,2]],[[1,2,2,0],[1,3,3,2],[1,1,2,3],[0,0,2,1]],[[1,2,2,0],[1,3,3,3],[1,1,2,2],[0,0,2,1]],[[1,2,2,0],[1,3,4,2],[1,1,2,2],[0,0,2,1]],[[1,2,3,0],[1,3,3,2],[1,1,2,2],[0,0,2,1]],[[1,3,2,0],[1,3,3,2],[1,1,2,2],[0,0,2,1]],[[2,2,2,0],[1,3,3,2],[1,1,2,2],[0,0,2,1]],[[0,3,2,1],[2,3,2,1],[2,3,2,0],[0,2,1,0]],[[0,2,3,1],[2,3,2,1],[2,3,2,0],[0,2,1,0]],[[0,2,2,1],[3,3,2,1],[2,3,2,0],[0,2,1,0]],[[0,2,2,1],[2,4,2,1],[2,3,2,0],[0,2,1,0]],[[0,2,2,1],[2,3,2,1],[3,3,2,0],[0,2,1,0]],[[1,2,2,0],[1,3,3,2],[1,1,1,2],[1,0,2,2]],[[1,2,2,0],[1,3,3,2],[1,1,1,3],[1,0,2,1]],[[1,2,2,0],[1,3,3,3],[1,1,1,2],[1,0,2,1]],[[1,2,2,0],[1,3,4,2],[1,1,1,2],[1,0,2,1]],[[0,3,2,1],[2,3,2,1],[2,3,2,0],[1,0,1,1]],[[0,2,3,1],[2,3,2,1],[2,3,2,0],[1,0,1,1]],[[0,2,2,2],[2,3,2,1],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[3,3,2,1],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[2,4,2,1],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[2,3,2,1],[3,3,2,0],[1,0,1,1]],[[0,3,2,1],[2,3,2,1],[2,3,2,0],[1,1,1,0]],[[0,2,3,1],[2,3,2,1],[2,3,2,0],[1,1,1,0]],[[0,2,2,1],[3,3,2,1],[2,3,2,0],[1,1,1,0]],[[0,2,2,1],[2,4,2,1],[2,3,2,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[3,3,2,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,1],[2,3,2,0],[2,1,1,0]],[[1,2,3,0],[1,3,3,2],[1,1,1,2],[1,0,2,1]],[[1,3,2,0],[1,3,3,2],[1,1,1,2],[1,0,2,1]],[[2,2,2,0],[1,3,3,2],[1,1,1,2],[1,0,2,1]],[[0,3,2,1],[2,3,2,1],[2,3,2,0],[1,2,0,0]],[[0,2,3,1],[2,3,2,1],[2,3,2,0],[1,2,0,0]],[[0,2,2,1],[3,3,2,1],[2,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,4,2,1],[2,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[3,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,3,2,1],[2,3,2,0],[2,2,0,0]],[[1,2,2,0],[1,3,3,2],[1,1,1,2],[0,1,2,2]],[[1,2,2,0],[1,3,3,2],[1,1,1,3],[0,1,2,1]],[[1,2,2,0],[1,3,3,3],[1,1,1,2],[0,1,2,1]],[[1,2,2,0],[1,3,4,2],[1,1,1,2],[0,1,2,1]],[[1,2,3,0],[1,3,3,2],[1,1,1,2],[0,1,2,1]],[[1,3,2,0],[1,3,3,2],[1,1,1,2],[0,1,2,1]],[[2,2,2,0],[1,3,3,2],[1,1,1,2],[0,1,2,1]],[[1,2,2,0],[1,3,3,2],[1,0,3,3],[1,0,2,0]],[[1,2,2,0],[1,3,3,3],[1,0,3,2],[1,0,2,0]],[[1,2,2,0],[1,3,4,2],[1,0,3,2],[1,0,2,0]],[[1,2,3,0],[1,3,3,2],[1,0,3,2],[1,0,2,0]],[[1,3,2,0],[1,3,3,2],[1,0,3,2],[1,0,2,0]],[[2,2,2,0],[1,3,3,2],[1,0,3,2],[1,0,2,0]],[[1,2,2,0],[1,3,3,2],[1,0,3,2],[1,0,1,2]],[[1,2,2,0],[1,3,3,2],[1,0,3,3],[1,0,1,1]],[[1,2,2,0],[1,3,3,3],[1,0,3,2],[1,0,1,1]],[[1,2,2,0],[1,3,4,2],[1,0,3,2],[1,0,1,1]],[[1,2,3,0],[1,3,3,2],[1,0,3,2],[1,0,1,1]],[[1,3,2,0],[1,3,3,2],[1,0,3,2],[1,0,1,1]],[[2,2,2,0],[1,3,3,2],[1,0,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,1],[2,3,2,1],[1,0,0,1]],[[0,2,3,1],[2,3,2,1],[2,3,2,1],[1,0,0,1]],[[0,2,2,2],[2,3,2,1],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[3,3,2,1],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[2,4,2,1],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[2,3,2,1],[3,3,2,1],[1,0,0,1]],[[0,3,2,1],[2,3,2,1],[2,3,2,1],[1,0,1,0]],[[0,2,3,1],[2,3,2,1],[2,3,2,1],[1,0,1,0]],[[0,2,2,2],[2,3,2,1],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[3,3,2,1],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[2,4,2,1],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[2,3,2,1],[3,3,2,1],[1,0,1,0]],[[1,2,2,0],[1,3,3,2],[1,0,3,3],[0,1,2,0]],[[1,2,2,0],[1,3,3,3],[1,0,3,2],[0,1,2,0]],[[1,2,2,0],[1,3,4,2],[1,0,3,2],[0,1,2,0]],[[1,2,3,0],[1,3,3,2],[1,0,3,2],[0,1,2,0]],[[1,3,2,0],[1,3,3,2],[1,0,3,2],[0,1,2,0]],[[2,2,2,0],[1,3,3,2],[1,0,3,2],[0,1,2,0]],[[1,2,2,0],[1,3,3,2],[1,0,3,2],[0,1,1,2]],[[1,2,2,0],[1,3,3,2],[1,0,3,3],[0,1,1,1]],[[1,2,2,0],[1,3,3,3],[1,0,3,2],[0,1,1,1]],[[1,2,2,0],[1,3,4,2],[1,0,3,2],[0,1,1,1]],[[1,2,3,0],[1,3,3,2],[1,0,3,2],[0,1,1,1]],[[1,3,2,0],[1,3,3,2],[1,0,3,2],[0,1,1,1]],[[2,2,2,0],[1,3,3,2],[1,0,3,2],[0,1,1,1]],[[1,2,2,0],[1,3,3,2],[1,0,3,2],[0,0,2,2]],[[1,2,2,0],[1,3,3,2],[1,0,3,3],[0,0,2,1]],[[1,2,2,0],[1,3,3,3],[1,0,3,2],[0,0,2,1]],[[1,2,2,0],[1,3,4,2],[1,0,3,2],[0,0,2,1]],[[1,2,3,0],[1,3,3,2],[1,0,3,2],[0,0,2,1]],[[1,3,2,0],[1,3,3,2],[1,0,3,2],[0,0,2,1]],[[2,2,2,0],[1,3,3,2],[1,0,3,2],[0,0,2,1]],[[1,2,2,0],[1,3,3,3],[1,0,3,1],[0,2,2,0]],[[1,2,2,0],[1,3,4,2],[1,0,3,1],[0,2,2,0]],[[1,2,3,0],[1,3,3,2],[1,0,3,1],[0,2,2,0]],[[1,3,2,0],[1,3,3,2],[1,0,3,1],[0,2,2,0]],[[2,2,2,0],[1,3,3,2],[1,0,3,1],[0,2,2,0]],[[1,2,2,0],[1,3,3,3],[1,0,3,1],[0,2,1,1]],[[1,2,2,0],[1,3,4,2],[1,0,3,1],[0,2,1,1]],[[1,2,3,0],[1,3,3,2],[1,0,3,1],[0,2,1,1]],[[1,3,2,0],[1,3,3,2],[1,0,3,1],[0,2,1,1]],[[2,2,2,0],[1,3,3,2],[1,0,3,1],[0,2,1,1]],[[1,2,2,0],[1,3,3,3],[1,0,3,0],[0,2,2,1]],[[1,2,2,0],[1,3,4,2],[1,0,3,0],[0,2,2,1]],[[1,2,3,0],[1,3,3,2],[1,0,3,0],[0,2,2,1]],[[1,3,2,0],[1,3,3,2],[1,0,3,0],[0,2,2,1]],[[2,2,2,0],[1,3,3,2],[1,0,3,0],[0,2,2,1]],[[1,2,2,0],[1,3,3,2],[1,0,2,3],[0,2,2,0]],[[1,2,2,0],[1,3,3,3],[1,0,2,2],[0,2,2,0]],[[1,2,2,0],[1,3,4,2],[1,0,2,2],[0,2,2,0]],[[1,2,3,0],[1,3,3,2],[1,0,2,2],[0,2,2,0]],[[1,3,2,0],[1,3,3,2],[1,0,2,2],[0,2,2,0]],[[2,2,2,0],[1,3,3,2],[1,0,2,2],[0,2,2,0]],[[1,2,2,0],[1,3,3,2],[1,0,2,2],[0,2,1,2]],[[1,2,2,0],[1,3,3,2],[1,0,2,3],[0,2,1,1]],[[1,2,2,0],[1,3,3,3],[1,0,2,2],[0,2,1,1]],[[1,2,2,0],[1,3,4,2],[1,0,2,2],[0,2,1,1]],[[1,2,3,0],[1,3,3,2],[1,0,2,2],[0,2,1,1]],[[1,3,2,0],[1,3,3,2],[1,0,2,2],[0,2,1,1]],[[2,2,2,0],[1,3,3,2],[1,0,2,2],[0,2,1,1]],[[1,2,2,0],[1,3,3,2],[1,0,1,2],[0,2,2,2]],[[1,2,2,0],[1,3,3,2],[1,0,1,2],[0,2,3,1]],[[1,2,2,0],[1,3,3,2],[1,0,1,3],[0,2,2,1]],[[1,2,2,0],[1,3,3,3],[1,0,1,2],[0,2,2,1]],[[1,2,2,0],[1,3,4,2],[1,0,1,2],[0,2,2,1]],[[1,2,3,0],[1,3,3,2],[1,0,1,2],[0,2,2,1]],[[1,3,2,0],[1,3,3,2],[1,0,1,2],[0,2,2,1]],[[2,2,2,0],[1,3,3,2],[1,0,1,2],[0,2,2,1]],[[1,2,2,0],[1,4,3,2],[0,3,2,1],[1,2,0,0]],[[1,2,3,0],[1,3,3,2],[0,3,2,1],[1,2,0,0]],[[1,3,2,0],[1,3,3,2],[0,3,2,1],[1,2,0,0]],[[2,2,2,0],[1,3,3,2],[0,3,2,1],[1,2,0,0]],[[0,3,2,1],[2,3,2,1],[2,3,3,0],[1,0,1,0]],[[0,2,3,1],[2,3,2,1],[2,3,3,0],[1,0,1,0]],[[0,2,2,2],[2,3,2,1],[2,3,3,0],[1,0,1,0]],[[0,2,2,1],[3,3,2,1],[2,3,3,0],[1,0,1,0]],[[0,2,2,1],[2,4,2,1],[2,3,3,0],[1,0,1,0]],[[0,2,2,1],[2,3,2,1],[3,3,3,0],[1,0,1,0]],[[1,2,2,0],[1,4,3,2],[0,3,1,1],[1,2,1,0]],[[1,2,3,0],[1,3,3,2],[0,3,1,1],[1,2,1,0]],[[1,3,2,0],[1,3,3,2],[0,3,1,1],[1,2,1,0]],[[2,2,2,0],[1,3,3,2],[0,3,1,1],[1,2,1,0]],[[1,2,2,0],[1,4,3,2],[0,3,1,1],[1,2,0,1]],[[1,2,3,0],[1,3,3,2],[0,3,1,1],[1,2,0,1]],[[1,3,2,0],[1,3,3,2],[0,3,1,1],[1,2,0,1]],[[2,2,2,0],[1,3,3,2],[0,3,1,1],[1,2,0,1]],[[1,2,2,0],[1,4,3,2],[0,3,1,1],[1,1,2,0]],[[1,2,3,0],[1,3,3,2],[0,3,1,1],[1,1,2,0]],[[1,3,2,0],[1,3,3,2],[0,3,1,1],[1,1,2,0]],[[2,2,2,0],[1,3,3,2],[0,3,1,1],[1,1,2,0]],[[1,2,2,0],[1,4,3,2],[0,3,1,1],[1,1,1,1]],[[1,2,3,0],[1,3,3,2],[0,3,1,1],[1,1,1,1]],[[1,3,2,0],[1,3,3,2],[0,3,1,1],[1,1,1,1]],[[2,2,2,0],[1,3,3,2],[0,3,1,1],[1,1,1,1]],[[1,2,2,0],[1,4,3,2],[0,3,1,0],[1,2,1,1]],[[1,2,3,0],[1,3,3,2],[0,3,1,0],[1,2,1,1]],[[1,3,2,0],[1,3,3,2],[0,3,1,0],[1,2,1,1]],[[2,2,2,0],[1,3,3,2],[0,3,1,0],[1,2,1,1]],[[1,2,2,0],[1,4,3,2],[0,3,1,0],[1,1,2,1]],[[1,2,3,0],[1,3,3,2],[0,3,1,0],[1,1,2,1]],[[1,3,2,0],[1,3,3,2],[0,3,1,0],[1,1,2,1]],[[2,2,2,0],[1,3,3,2],[0,3,1,0],[1,1,2,1]],[[1,2,2,0],[1,4,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,3,0],[1,3,3,2],[0,3,0,2],[1,2,1,0]],[[1,3,2,0],[1,3,3,2],[0,3,0,2],[1,2,1,0]],[[2,2,2,0],[1,3,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,2,0],[1,4,3,2],[0,3,0,2],[1,2,0,1]],[[1,2,3,0],[1,3,3,2],[0,3,0,2],[1,2,0,1]],[[1,3,2,0],[1,3,3,2],[0,3,0,2],[1,2,0,1]],[[2,2,2,0],[1,3,3,2],[0,3,0,2],[1,2,0,1]],[[1,2,2,0],[1,4,3,2],[0,3,0,2],[1,1,2,0]],[[1,2,3,0],[1,3,3,2],[0,3,0,2],[1,1,2,0]],[[1,3,2,0],[1,3,3,2],[0,3,0,2],[1,1,2,0]],[[2,2,2,0],[1,3,3,2],[0,3,0,2],[1,1,2,0]],[[1,2,2,0],[1,4,3,2],[0,3,0,2],[1,1,1,1]],[[1,2,3,0],[1,3,3,2],[0,3,0,2],[1,1,1,1]],[[1,3,2,0],[1,3,3,2],[0,3,0,2],[1,1,1,1]],[[2,2,2,0],[1,3,3,2],[0,3,0,2],[1,1,1,1]],[[1,2,2,0],[1,4,3,2],[0,3,0,1],[1,2,2,0]],[[1,2,3,0],[1,3,3,2],[0,3,0,1],[1,2,2,0]],[[1,3,2,0],[1,3,3,2],[0,3,0,1],[1,2,2,0]],[[2,2,2,0],[1,3,3,2],[0,3,0,1],[1,2,2,0]],[[1,2,2,0],[1,4,3,2],[0,3,0,0],[1,2,2,1]],[[1,2,3,0],[1,3,3,2],[0,3,0,0],[1,2,2,1]],[[1,3,2,0],[1,3,3,2],[0,3,0,0],[1,2,2,1]],[[2,2,2,0],[1,3,3,2],[0,3,0,0],[1,2,2,1]],[[0,3,2,1],[2,3,2,1],[2,3,3,1],[1,0,0,0]],[[0,2,3,1],[2,3,2,1],[2,3,3,1],[1,0,0,0]],[[0,2,2,2],[2,3,2,1],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[3,3,2,1],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[2,4,2,1],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[2,3,2,1],[3,3,3,1],[1,0,0,0]],[[1,2,2,0],[1,3,3,2],[0,1,3,3],[1,1,0,1]],[[1,2,2,0],[1,3,3,3],[0,1,3,2],[1,1,0,1]],[[1,2,2,0],[1,3,4,2],[0,1,3,2],[1,1,0,1]],[[1,2,3,0],[1,3,3,2],[0,1,3,2],[1,1,0,1]],[[1,3,2,0],[1,3,3,2],[0,1,3,2],[1,1,0,1]],[[2,2,2,0],[1,3,3,2],[0,1,3,2],[1,1,0,1]],[[1,2,2,0],[1,3,3,3],[0,1,3,1],[1,2,1,0]],[[1,2,2,0],[1,3,4,2],[0,1,3,1],[1,2,1,0]],[[1,2,3,0],[1,3,3,2],[0,1,3,1],[1,2,1,0]],[[1,3,2,0],[1,3,3,2],[0,1,3,1],[1,2,1,0]],[[2,2,2,0],[1,3,3,2],[0,1,3,1],[1,2,1,0]],[[1,2,2,0],[1,3,3,3],[0,1,3,1],[1,2,0,1]],[[1,2,2,0],[1,3,4,2],[0,1,3,1],[1,2,0,1]],[[1,2,3,0],[1,3,3,2],[0,1,3,1],[1,2,0,1]],[[1,3,2,0],[1,3,3,2],[0,1,3,1],[1,2,0,1]],[[2,2,2,0],[1,3,3,2],[0,1,3,1],[1,2,0,1]],[[1,2,2,0],[1,3,3,3],[0,1,3,1],[1,1,2,0]],[[1,2,2,0],[1,3,4,2],[0,1,3,1],[1,1,2,0]],[[1,2,3,0],[1,3,3,2],[0,1,3,1],[1,1,2,0]],[[1,3,2,0],[1,3,3,2],[0,1,3,1],[1,1,2,0]],[[2,2,2,0],[1,3,3,2],[0,1,3,1],[1,1,2,0]],[[1,2,2,0],[1,3,3,3],[0,1,3,1],[1,1,1,1]],[[1,2,2,0],[1,3,4,2],[0,1,3,1],[1,1,1,1]],[[1,2,3,0],[1,3,3,2],[0,1,3,1],[1,1,1,1]],[[1,3,2,0],[1,3,3,2],[0,1,3,1],[1,1,1,1]],[[2,2,2,0],[1,3,3,2],[0,1,3,1],[1,1,1,1]],[[1,2,2,0],[1,3,3,3],[0,1,3,1],[1,0,2,1]],[[1,2,2,0],[1,3,4,2],[0,1,3,1],[1,0,2,1]],[[1,2,3,0],[1,3,3,2],[0,1,3,1],[1,0,2,1]],[[1,3,2,0],[1,3,3,2],[0,1,3,1],[1,0,2,1]],[[2,2,2,0],[1,3,3,2],[0,1,3,1],[1,0,2,1]],[[1,2,2,0],[1,3,4,2],[0,1,3,0],[1,2,1,1]],[[1,2,3,0],[1,3,3,2],[0,1,3,0],[1,2,1,1]],[[1,3,2,0],[1,3,3,2],[0,1,3,0],[1,2,1,1]],[[2,2,2,0],[1,3,3,2],[0,1,3,0],[1,2,1,1]],[[1,2,2,0],[1,3,3,3],[0,1,3,0],[1,1,2,1]],[[1,2,2,0],[1,3,4,2],[0,1,3,0],[1,1,2,1]],[[1,2,3,0],[1,3,3,2],[0,1,3,0],[1,1,2,1]],[[1,3,2,0],[1,3,3,2],[0,1,3,0],[1,1,2,1]],[[2,2,2,0],[1,3,3,2],[0,1,3,0],[1,1,2,1]],[[1,2,2,0],[1,3,3,3],[0,1,2,2],[1,2,1,0]],[[1,2,2,0],[1,3,4,2],[0,1,2,2],[1,2,1,0]],[[1,2,3,0],[1,3,3,2],[0,1,2,2],[1,2,1,0]],[[1,3,2,0],[1,3,3,2],[0,1,2,2],[1,2,1,0]],[[2,2,2,0],[1,3,3,2],[0,1,2,2],[1,2,1,0]],[[1,2,2,0],[1,3,3,2],[0,1,2,3],[1,2,0,1]],[[1,2,2,0],[1,3,3,3],[0,1,2,2],[1,2,0,1]],[[1,2,2,0],[1,3,4,2],[0,1,2,2],[1,2,0,1]],[[1,2,3,0],[1,3,3,2],[0,1,2,2],[1,2,0,1]],[[1,3,2,0],[1,3,3,2],[0,1,2,2],[1,2,0,1]],[[2,2,2,0],[1,3,3,2],[0,1,2,2],[1,2,0,1]],[[1,2,2,0],[1,3,3,2],[0,1,2,3],[1,1,2,0]],[[1,2,2,0],[1,3,3,3],[0,1,2,2],[1,1,2,0]],[[1,2,2,0],[1,3,4,2],[0,1,2,2],[1,1,2,0]],[[1,2,3,0],[1,3,3,2],[0,1,2,2],[1,1,2,0]],[[1,3,2,0],[1,3,3,2],[0,1,2,2],[1,1,2,0]],[[2,2,2,0],[1,3,3,2],[0,1,2,2],[1,1,2,0]],[[1,2,2,0],[1,3,3,2],[0,1,2,2],[1,1,1,2]],[[1,2,2,0],[1,3,3,2],[0,1,2,3],[1,1,1,1]],[[1,2,2,0],[1,3,3,3],[0,1,2,2],[1,1,1,1]],[[1,2,2,0],[1,3,4,2],[0,1,2,2],[1,1,1,1]],[[1,2,3,0],[1,3,3,2],[0,1,2,2],[1,1,1,1]],[[1,3,2,0],[1,3,3,2],[0,1,2,2],[1,1,1,1]],[[2,2,2,0],[1,3,3,2],[0,1,2,2],[1,1,1,1]],[[1,2,2,0],[1,3,3,2],[0,1,2,2],[1,0,2,2]],[[1,2,2,0],[1,3,3,2],[0,1,2,3],[1,0,2,1]],[[1,2,2,0],[1,3,3,3],[0,1,2,2],[1,0,2,1]],[[1,2,2,0],[1,3,4,2],[0,1,2,2],[1,0,2,1]],[[1,2,3,0],[1,3,3,2],[0,1,2,2],[1,0,2,1]],[[1,3,2,0],[1,3,3,2],[0,1,2,2],[1,0,2,1]],[[2,2,2,0],[1,3,3,2],[0,1,2,2],[1,0,2,1]],[[1,2,2,0],[1,3,3,2],[0,1,1,2],[1,1,2,2]],[[1,2,2,0],[1,3,3,2],[0,1,1,3],[1,1,2,1]],[[1,2,2,0],[1,3,3,3],[0,1,1,2],[1,1,2,1]],[[1,2,2,0],[1,3,4,2],[0,1,1,2],[1,1,2,1]],[[1,2,3,0],[1,3,3,2],[0,1,1,2],[1,1,2,1]],[[1,3,2,0],[1,3,3,2],[0,1,1,2],[1,1,2,1]],[[2,2,2,0],[1,3,3,2],[0,1,1,2],[1,1,2,1]],[[1,2,2,0],[1,3,3,2],[0,0,3,3],[1,1,2,0]],[[1,2,2,0],[1,3,3,3],[0,0,3,2],[1,1,2,0]],[[1,2,2,0],[1,3,4,2],[0,0,3,2],[1,1,2,0]],[[1,2,3,0],[1,3,3,2],[0,0,3,2],[1,1,2,0]],[[1,3,2,0],[1,3,3,2],[0,0,3,2],[1,1,2,0]],[[2,2,2,0],[1,3,3,2],[0,0,3,2],[1,1,2,0]],[[1,2,2,0],[1,3,3,2],[0,0,3,2],[1,1,1,2]],[[1,2,2,0],[1,3,3,2],[0,0,3,3],[1,1,1,1]],[[1,2,2,0],[1,3,3,3],[0,0,3,2],[1,1,1,1]],[[1,2,2,0],[1,3,4,2],[0,0,3,2],[1,1,1,1]],[[1,2,3,0],[1,3,3,2],[0,0,3,2],[1,1,1,1]],[[1,3,2,0],[1,3,3,2],[0,0,3,2],[1,1,1,1]],[[2,2,2,0],[1,3,3,2],[0,0,3,2],[1,1,1,1]],[[1,2,2,0],[1,3,3,2],[0,0,3,2],[1,0,2,2]],[[1,2,2,0],[1,3,3,2],[0,0,3,3],[1,0,2,1]],[[1,2,2,0],[1,3,3,3],[0,0,3,2],[1,0,2,1]],[[1,2,2,0],[1,3,4,2],[0,0,3,2],[1,0,2,1]],[[1,2,3,0],[1,3,3,2],[0,0,3,2],[1,0,2,1]],[[1,3,2,0],[1,3,3,2],[0,0,3,2],[1,0,2,1]],[[2,2,2,0],[1,3,3,2],[0,0,3,2],[1,0,2,1]],[[1,2,2,0],[1,3,3,3],[0,0,3,1],[1,2,2,0]],[[1,2,2,0],[1,3,4,2],[0,0,3,1],[1,2,2,0]],[[1,2,3,0],[1,3,3,2],[0,0,3,1],[1,2,2,0]],[[1,3,2,0],[1,3,3,2],[0,0,3,1],[1,2,2,0]],[[2,2,2,0],[1,3,3,2],[0,0,3,1],[1,2,2,0]],[[1,2,2,0],[1,3,3,3],[0,0,3,1],[1,2,1,1]],[[1,2,2,0],[1,3,4,2],[0,0,3,1],[1,2,1,1]],[[1,2,3,0],[1,3,3,2],[0,0,3,1],[1,2,1,1]],[[1,3,2,0],[1,3,3,2],[0,0,3,1],[1,2,1,1]],[[2,2,2,0],[1,3,3,2],[0,0,3,1],[1,2,1,1]],[[1,2,2,0],[1,3,3,3],[0,0,3,0],[1,2,2,1]],[[1,2,2,0],[1,3,4,2],[0,0,3,0],[1,2,2,1]],[[1,2,3,0],[1,3,3,2],[0,0,3,0],[1,2,2,1]],[[1,3,2,0],[1,3,3,2],[0,0,3,0],[1,2,2,1]],[[2,2,2,0],[1,3,3,2],[0,0,3,0],[1,2,2,1]],[[1,2,2,0],[1,3,3,2],[0,0,2,3],[1,2,2,0]],[[1,2,2,0],[1,3,3,3],[0,0,2,2],[1,2,2,0]],[[1,2,2,0],[1,3,4,2],[0,0,2,2],[1,2,2,0]],[[1,2,3,0],[1,3,3,2],[0,0,2,2],[1,2,2,0]],[[1,3,2,0],[1,3,3,2],[0,0,2,2],[1,2,2,0]],[[2,2,2,0],[1,3,3,2],[0,0,2,2],[1,2,2,0]],[[1,2,2,0],[1,3,3,2],[0,0,2,2],[1,2,1,2]],[[1,2,2,0],[1,3,3,2],[0,0,2,3],[1,2,1,1]],[[1,2,2,0],[1,3,3,3],[0,0,2,2],[1,2,1,1]],[[1,2,2,0],[1,3,4,2],[0,0,2,2],[1,2,1,1]],[[1,2,3,0],[1,3,3,2],[0,0,2,2],[1,2,1,1]],[[1,3,2,0],[1,3,3,2],[0,0,2,2],[1,2,1,1]],[[2,2,2,0],[1,3,3,2],[0,0,2,2],[1,2,1,1]],[[1,2,2,0],[1,3,3,2],[0,0,1,2],[1,2,2,2]],[[1,2,2,0],[1,3,3,2],[0,0,1,2],[1,2,3,1]],[[1,2,2,0],[1,3,3,2],[0,0,1,3],[1,2,2,1]],[[1,2,2,0],[1,3,3,3],[0,0,1,2],[1,2,2,1]],[[1,2,2,0],[1,3,4,2],[0,0,1,2],[1,2,2,1]],[[1,2,3,0],[1,3,3,2],[0,0,1,2],[1,2,2,1]],[[1,3,2,0],[1,3,3,2],[0,0,1,2],[1,2,2,1]],[[2,2,2,0],[1,3,3,2],[0,0,1,2],[1,2,2,1]],[[0,3,2,1],[2,3,2,2],[0,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,2,2],[0,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,2,2],[0,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,2,3],[0,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,2,2],[0,0,1,3],[1,2,2,1]],[[0,2,2,1],[2,3,2,2],[0,0,1,2],[1,2,3,1]],[[0,2,2,1],[2,3,2,2],[0,0,1,2],[1,2,2,2]],[[0,3,2,1],[2,3,2,2],[0,0,2,2],[1,2,1,1]],[[0,2,3,1],[2,3,2,2],[0,0,2,2],[1,2,1,1]],[[0,2,2,2],[2,3,2,2],[0,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,3,2,3],[0,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,3,2,2],[0,0,2,3],[1,2,1,1]],[[0,2,2,1],[2,3,2,2],[0,0,2,2],[1,2,1,2]],[[0,3,2,1],[2,3,2,2],[0,0,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,2,2],[0,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,2,2],[0,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,3],[0,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,2,2],[0,0,2,3],[1,2,2,0]],[[0,3,2,1],[2,3,2,2],[0,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,2,2],[0,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,3,2,2],[0,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,2,3],[0,0,3,0],[1,2,2,1]],[[0,3,2,1],[2,3,2,2],[0,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,2,2],[0,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,2,2],[0,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,2,3],[0,0,3,1],[1,2,1,1]],[[0,3,2,1],[2,3,2,2],[0,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,3,2,2],[0,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,3,2,2],[0,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,3,2,3],[0,0,3,1],[1,2,2,0]],[[0,3,2,1],[2,3,2,2],[0,0,3,2],[1,0,2,1]],[[0,2,3,1],[2,3,2,2],[0,0,3,2],[1,0,2,1]],[[0,2,2,2],[2,3,2,2],[0,0,3,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,3],[0,0,3,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,2],[0,0,3,3],[1,0,2,1]],[[0,2,2,1],[2,3,2,2],[0,0,3,2],[1,0,2,2]],[[0,3,2,1],[2,3,2,2],[0,0,3,2],[1,1,1,1]],[[0,2,3,1],[2,3,2,2],[0,0,3,2],[1,1,1,1]],[[0,2,2,2],[2,3,2,2],[0,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,3],[0,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,2],[0,0,3,3],[1,1,1,1]],[[0,2,2,1],[2,3,2,2],[0,0,3,2],[1,1,1,2]],[[0,3,2,1],[2,3,2,2],[0,0,3,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,2],[0,0,3,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,2],[0,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,3],[0,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,2],[0,0,3,3],[1,1,2,0]],[[0,3,2,1],[2,3,2,2],[0,1,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,2,2],[0,1,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,2,2],[0,1,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,2,3],[0,1,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,2,2],[0,1,1,3],[1,1,2,1]],[[0,2,2,1],[2,3,2,2],[0,1,1,2],[1,1,2,2]],[[0,3,2,1],[2,3,2,2],[0,1,2,2],[1,0,2,1]],[[0,2,3,1],[2,3,2,2],[0,1,2,2],[1,0,2,1]],[[0,2,2,2],[2,3,2,2],[0,1,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,3],[0,1,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,2],[0,1,2,3],[1,0,2,1]],[[0,2,2,1],[2,3,2,2],[0,1,2,2],[1,0,2,2]],[[0,3,2,1],[2,3,2,2],[0,1,2,2],[1,1,1,1]],[[0,2,3,1],[2,3,2,2],[0,1,2,2],[1,1,1,1]],[[0,2,2,2],[2,3,2,2],[0,1,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,3],[0,1,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,2],[0,1,2,3],[1,1,1,1]],[[0,2,2,1],[2,3,2,2],[0,1,2,2],[1,1,1,2]],[[0,3,2,1],[2,3,2,2],[0,1,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,2],[0,1,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,2],[0,1,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,3],[0,1,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,2],[0,1,2,3],[1,1,2,0]],[[0,3,2,1],[2,3,2,2],[0,1,2,2],[1,2,0,1]],[[0,2,3,1],[2,3,2,2],[0,1,2,2],[1,2,0,1]],[[0,2,2,2],[2,3,2,2],[0,1,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,3],[0,1,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,2],[0,1,2,3],[1,2,0,1]],[[0,3,2,1],[2,3,2,2],[0,1,2,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,2],[0,1,2,2],[1,2,1,0]],[[0,2,2,2],[2,3,2,2],[0,1,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,3],[0,1,2,2],[1,2,1,0]],[[0,3,2,1],[2,3,2,2],[0,1,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,2,2],[0,1,3,0],[1,1,2,1]],[[0,2,2,2],[2,3,2,2],[0,1,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,2,3],[0,1,3,0],[1,1,2,1]],[[0,3,2,1],[2,3,2,2],[0,1,3,0],[1,2,2,0]],[[0,2,3,1],[2,3,2,2],[0,1,3,0],[1,2,2,0]],[[0,2,2,2],[2,3,2,2],[0,1,3,0],[1,2,2,0]],[[0,2,2,1],[3,3,2,2],[0,1,3,0],[1,2,2,0]],[[0,2,2,1],[2,4,2,2],[0,1,3,0],[1,2,2,0]],[[0,3,2,1],[2,3,2,2],[0,1,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,2,2],[0,1,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,2,2],[0,1,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,2,3],[0,1,3,1],[1,0,2,1]],[[0,3,2,1],[2,3,2,2],[0,1,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,2,2],[0,1,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,2,2],[0,1,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,2,3],[0,1,3,1],[1,1,1,1]],[[0,3,2,1],[2,3,2,2],[0,1,3,1],[1,1,2,0]],[[0,2,3,1],[2,3,2,2],[0,1,3,1],[1,1,2,0]],[[0,2,2,2],[2,3,2,2],[0,1,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,2,3],[0,1,3,1],[1,1,2,0]],[[0,3,2,1],[2,3,2,2],[0,1,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,2,2],[0,1,3,1],[1,2,0,1]],[[0,2,2,2],[2,3,2,2],[0,1,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,2,3],[0,1,3,1],[1,2,0,1]],[[0,3,2,1],[2,3,2,2],[0,1,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,2,2],[0,1,3,1],[1,2,1,0]],[[0,2,2,2],[2,3,2,2],[0,1,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,2,3],[0,1,3,1],[1,2,1,0]],[[0,3,2,1],[2,3,2,2],[0,1,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[0,1,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[0,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,3],[0,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[0,1,3,3],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[0,2,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,2,2],[0,2,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,2,2],[0,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,4,2,2],[0,2,3,0],[1,1,1,1]],[[0,3,2,1],[2,3,2,2],[0,2,3,0],[1,1,2,0]],[[0,2,3,1],[2,3,2,2],[0,2,3,0],[1,1,2,0]],[[0,2,2,2],[2,3,2,2],[0,2,3,0],[1,1,2,0]],[[0,2,2,1],[3,3,2,2],[0,2,3,0],[1,1,2,0]],[[0,2,2,1],[2,4,2,2],[0,2,3,0],[1,1,2,0]],[[0,3,2,1],[2,3,2,2],[0,2,3,0],[1,2,0,1]],[[0,2,3,1],[2,3,2,2],[0,2,3,0],[1,2,0,1]],[[0,2,2,2],[2,3,2,2],[0,2,3,0],[1,2,0,1]],[[0,2,2,1],[3,3,2,2],[0,2,3,0],[1,2,0,1]],[[0,2,2,1],[2,4,2,2],[0,2,3,0],[1,2,0,1]],[[0,3,2,1],[2,3,2,2],[0,2,3,0],[1,2,1,0]],[[0,2,3,1],[2,3,2,2],[0,2,3,0],[1,2,1,0]],[[0,2,2,2],[2,3,2,2],[0,2,3,0],[1,2,1,0]],[[0,2,2,1],[3,3,2,2],[0,2,3,0],[1,2,1,0]],[[0,2,2,1],[2,4,2,2],[0,2,3,0],[1,2,1,0]],[[0,3,2,1],[2,3,2,2],[0,3,0,2],[1,1,1,1]],[[0,2,3,1],[2,3,2,2],[0,3,0,2],[1,1,1,1]],[[0,2,2,2],[2,3,2,2],[0,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,4,2,2],[0,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,3,2,3],[0,3,0,2],[1,1,1,1]],[[0,3,2,1],[2,3,2,2],[0,3,0,2],[1,1,2,0]],[[0,2,3,1],[2,3,2,2],[0,3,0,2],[1,1,2,0]],[[0,2,2,2],[2,3,2,2],[0,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,4,2,2],[0,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,2,3],[0,3,0,2],[1,1,2,0]],[[0,3,2,1],[2,3,2,2],[0,3,0,2],[1,2,0,1]],[[0,2,3,1],[2,3,2,2],[0,3,0,2],[1,2,0,1]],[[0,2,2,2],[2,3,2,2],[0,3,0,2],[1,2,0,1]],[[0,2,2,1],[3,3,2,2],[0,3,0,2],[1,2,0,1]],[[0,2,2,1],[2,4,2,2],[0,3,0,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,3],[0,3,0,2],[1,2,0,1]],[[0,3,2,1],[2,3,2,2],[0,3,0,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,2],[0,3,0,2],[1,2,1,0]],[[0,2,2,2],[2,3,2,2],[0,3,0,2],[1,2,1,0]],[[0,2,2,1],[3,3,2,2],[0,3,0,2],[1,2,1,0]],[[0,2,2,1],[2,4,2,2],[0,3,0,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,3],[0,3,0,2],[1,2,1,0]],[[0,3,2,1],[2,3,2,2],[0,3,1,0],[1,2,2,0]],[[0,2,3,1],[2,3,2,2],[0,3,1,0],[1,2,2,0]],[[0,2,2,2],[2,3,2,2],[0,3,1,0],[1,2,2,0]],[[0,2,2,1],[3,3,2,2],[0,3,1,0],[1,2,2,0]],[[0,2,2,1],[2,4,2,2],[0,3,1,0],[1,2,2,0]],[[0,2,2,1],[2,3,2,2],[0,4,1,0],[1,2,2,0]],[[0,2,2,1],[2,3,2,2],[0,3,1,0],[2,2,2,0]],[[0,2,2,1],[2,3,2,2],[0,3,1,0],[1,3,2,0]],[[1,2,2,0],[1,3,4,1],[2,0,3,2],[1,1,1,0]],[[1,2,3,0],[1,3,3,1],[2,0,3,2],[1,1,1,0]],[[1,3,2,0],[1,3,3,1],[2,0,3,2],[1,1,1,0]],[[2,2,2,0],[1,3,3,1],[2,0,3,2],[1,1,1,0]],[[1,2,2,0],[1,3,4,1],[2,0,3,2],[1,1,0,1]],[[1,2,3,0],[1,3,3,1],[2,0,3,2],[1,1,0,1]],[[1,3,2,0],[1,3,3,1],[2,0,3,2],[1,1,0,1]],[[2,2,2,0],[1,3,3,1],[2,0,3,2],[1,1,0,1]],[[1,2,2,0],[1,3,4,1],[2,0,3,2],[1,0,2,0]],[[1,2,3,0],[1,3,3,1],[2,0,3,2],[1,0,2,0]],[[1,3,2,0],[1,3,3,1],[2,0,3,2],[1,0,2,0]],[[2,2,2,0],[1,3,3,1],[2,0,3,2],[1,0,2,0]],[[1,2,2,0],[1,3,4,1],[2,0,3,2],[1,0,1,1]],[[1,2,3,0],[1,3,3,1],[2,0,3,2],[1,0,1,1]],[[1,3,2,0],[1,3,3,1],[2,0,3,2],[1,0,1,1]],[[2,2,2,0],[1,3,3,1],[2,0,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[0,3,2,0],[1,1,1,1]],[[0,2,3,1],[2,3,2,2],[0,3,2,0],[1,1,1,1]],[[0,2,2,2],[2,3,2,2],[0,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,4,2,2],[0,3,2,0],[1,1,1,1]],[[0,3,2,1],[2,3,2,2],[0,3,2,0],[1,1,2,0]],[[0,2,3,1],[2,3,2,2],[0,3,2,0],[1,1,2,0]],[[0,2,2,2],[2,3,2,2],[0,3,2,0],[1,1,2,0]],[[0,2,2,1],[3,3,2,2],[0,3,2,0],[1,1,2,0]],[[0,2,2,1],[2,4,2,2],[0,3,2,0],[1,1,2,0]],[[0,2,2,1],[2,3,2,2],[0,4,2,0],[1,1,2,0]],[[0,3,2,1],[2,3,2,2],[0,3,2,0],[1,2,0,1]],[[0,2,3,1],[2,3,2,2],[0,3,2,0],[1,2,0,1]],[[0,2,2,2],[2,3,2,2],[0,3,2,0],[1,2,0,1]],[[0,2,2,1],[3,3,2,2],[0,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,4,2,2],[0,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,2,2],[0,4,2,0],[1,2,0,1]],[[0,3,2,1],[2,3,2,2],[0,3,2,0],[1,2,1,0]],[[0,2,3,1],[2,3,2,2],[0,3,2,0],[1,2,1,0]],[[0,2,2,2],[2,3,2,2],[0,3,2,0],[1,2,1,0]],[[0,2,2,1],[3,3,2,2],[0,3,2,0],[1,2,1,0]],[[0,2,2,1],[2,4,2,2],[0,3,2,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,2],[0,4,2,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,2],[0,3,2,0],[2,2,1,0]],[[0,2,2,1],[2,3,2,2],[0,3,2,0],[1,3,1,0]],[[1,2,2,0],[1,3,4,1],[2,0,3,2],[0,2,1,0]],[[1,2,3,0],[1,3,3,1],[2,0,3,2],[0,2,1,0]],[[1,3,2,0],[1,3,3,1],[2,0,3,2],[0,2,1,0]],[[2,2,2,0],[1,3,3,1],[2,0,3,2],[0,2,1,0]],[[1,2,2,0],[1,3,4,1],[2,0,3,2],[0,2,0,1]],[[1,2,3,0],[1,3,3,1],[2,0,3,2],[0,2,0,1]],[[1,3,2,0],[1,3,3,1],[2,0,3,2],[0,2,0,1]],[[2,2,2,0],[1,3,3,1],[2,0,3,2],[0,2,0,1]],[[1,2,2,0],[1,3,4,1],[2,0,3,2],[0,1,2,0]],[[1,2,3,0],[1,3,3,1],[2,0,3,2],[0,1,2,0]],[[1,3,2,0],[1,3,3,1],[2,0,3,2],[0,1,2,0]],[[2,2,2,0],[1,3,3,1],[2,0,3,2],[0,1,2,0]],[[1,2,2,0],[1,3,4,1],[2,0,3,2],[0,1,1,1]],[[1,2,3,0],[1,3,3,1],[2,0,3,2],[0,1,1,1]],[[1,3,2,0],[1,3,3,1],[2,0,3,2],[0,1,1,1]],[[2,2,2,0],[1,3,3,1],[2,0,3,2],[0,1,1,1]],[[1,2,2,0],[1,3,4,1],[2,0,3,2],[0,0,2,1]],[[1,2,3,0],[1,3,3,1],[2,0,3,2],[0,0,2,1]],[[1,3,2,0],[1,3,3,1],[2,0,3,2],[0,0,2,1]],[[2,2,2,0],[1,3,3,1],[2,0,3,2],[0,0,2,1]],[[1,2,2,0],[1,3,4,1],[2,0,3,1],[1,0,2,1]],[[1,2,3,0],[1,3,3,1],[2,0,3,1],[1,0,2,1]],[[1,3,2,0],[1,3,3,1],[2,0,3,1],[1,0,2,1]],[[2,2,2,0],[1,3,3,1],[2,0,3,1],[1,0,2,1]],[[1,2,2,0],[1,3,4,1],[2,0,3,1],[0,1,2,1]],[[1,2,3,0],[1,3,3,1],[2,0,3,1],[0,1,2,1]],[[1,3,2,0],[1,3,3,1],[2,0,3,1],[0,1,2,1]],[[2,2,2,0],[1,3,3,1],[2,0,3,1],[0,1,2,1]],[[0,3,2,1],[2,3,2,2],[0,3,3,0],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[0,3,3,0],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[0,3,3,0],[0,1,1,1]],[[0,2,2,1],[2,4,2,2],[0,3,3,0],[0,1,1,1]],[[0,3,2,1],[2,3,2,2],[0,3,3,0],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[0,3,3,0],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[0,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,4,2,2],[0,3,3,0],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[0,3,3,0],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[0,3,3,0],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[0,3,3,0],[0,2,0,1]],[[0,2,2,1],[2,4,2,2],[0,3,3,0],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[0,3,3,0],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[0,3,3,0],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[0,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,4,2,2],[0,3,3,0],[0,2,1,0]],[[0,3,2,1],[2,3,2,2],[0,3,3,0],[1,2,0,0]],[[0,2,3,1],[2,3,2,2],[0,3,3,0],[1,2,0,0]],[[0,2,2,2],[2,3,2,2],[0,3,3,0],[1,2,0,0]],[[0,2,2,1],[3,3,2,2],[0,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,4,2,2],[0,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,3,2,2],[0,4,3,0],[1,2,0,0]],[[1,2,2,0],[1,3,4,1],[1,2,3,2],[0,0,2,0]],[[1,2,3,0],[1,3,3,1],[1,2,3,2],[0,0,2,0]],[[1,3,2,0],[1,3,3,1],[1,2,3,2],[0,0,2,0]],[[2,2,2,0],[1,3,3,1],[1,2,3,2],[0,0,2,0]],[[1,2,2,0],[1,3,4,1],[1,2,3,2],[0,0,1,1]],[[1,2,3,0],[1,3,3,1],[1,2,3,2],[0,0,1,1]],[[1,3,2,0],[1,3,3,1],[1,2,3,2],[0,0,1,1]],[[2,2,2,0],[1,3,3,1],[1,2,3,2],[0,0,1,1]],[[1,2,2,0],[1,3,4,1],[1,1,3,2],[1,1,1,0]],[[1,2,3,0],[1,3,3,1],[1,1,3,2],[1,1,1,0]],[[1,3,2,0],[1,3,3,1],[1,1,3,2],[1,1,1,0]],[[2,2,2,0],[1,3,3,1],[1,1,3,2],[1,1,1,0]],[[1,2,2,0],[1,3,4,1],[1,1,3,2],[1,1,0,1]],[[1,2,3,0],[1,3,3,1],[1,1,3,2],[1,1,0,1]],[[1,3,2,0],[1,3,3,1],[1,1,3,2],[1,1,0,1]],[[2,2,2,0],[1,3,3,1],[1,1,3,2],[1,1,0,1]],[[1,2,2,0],[1,3,4,1],[1,1,3,2],[1,0,2,0]],[[1,2,3,0],[1,3,3,1],[1,1,3,2],[1,0,2,0]],[[1,3,2,0],[1,3,3,1],[1,1,3,2],[1,0,2,0]],[[2,2,2,0],[1,3,3,1],[1,1,3,2],[1,0,2,0]],[[1,2,2,0],[1,3,4,1],[1,1,3,2],[1,0,1,1]],[[1,2,3,0],[1,3,3,1],[1,1,3,2],[1,0,1,1]],[[1,3,2,0],[1,3,3,1],[1,1,3,2],[1,0,1,1]],[[2,2,2,0],[1,3,3,1],[1,1,3,2],[1,0,1,1]],[[1,2,2,0],[1,3,4,1],[1,1,3,2],[0,2,1,0]],[[1,2,3,0],[1,3,3,1],[1,1,3,2],[0,2,1,0]],[[1,3,2,0],[1,3,3,1],[1,1,3,2],[0,2,1,0]],[[2,2,2,0],[1,3,3,1],[1,1,3,2],[0,2,1,0]],[[1,2,2,0],[1,3,4,1],[1,1,3,2],[0,2,0,1]],[[1,2,3,0],[1,3,3,1],[1,1,3,2],[0,2,0,1]],[[1,3,2,0],[1,3,3,1],[1,1,3,2],[0,2,0,1]],[[2,2,2,0],[1,3,3,1],[1,1,3,2],[0,2,0,1]],[[1,2,2,0],[1,3,4,1],[1,1,3,2],[0,1,2,0]],[[1,2,3,0],[1,3,3,1],[1,1,3,2],[0,1,2,0]],[[1,3,2,0],[1,3,3,1],[1,1,3,2],[0,1,2,0]],[[2,2,2,0],[1,3,3,1],[1,1,3,2],[0,1,2,0]],[[1,2,2,0],[1,3,4,1],[1,1,3,2],[0,1,1,1]],[[1,2,3,0],[1,3,3,1],[1,1,3,2],[0,1,1,1]],[[1,3,2,0],[1,3,3,1],[1,1,3,2],[0,1,1,1]],[[2,2,2,0],[1,3,3,1],[1,1,3,2],[0,1,1,1]],[[1,2,2,0],[1,3,4,1],[1,1,3,2],[0,0,2,1]],[[1,2,3,0],[1,3,3,1],[1,1,3,2],[0,0,2,1]],[[1,3,2,0],[1,3,3,1],[1,1,3,2],[0,0,2,1]],[[2,2,2,0],[1,3,3,1],[1,1,3,2],[0,0,2,1]],[[1,2,2,0],[1,3,4,1],[1,1,3,1],[1,0,2,1]],[[1,2,3,0],[1,3,3,1],[1,1,3,1],[1,0,2,1]],[[1,3,2,0],[1,3,3,1],[1,1,3,1],[1,0,2,1]],[[2,2,2,0],[1,3,3,1],[1,1,3,1],[1,0,2,1]],[[1,2,2,0],[1,3,4,1],[1,1,3,1],[0,1,2,1]],[[1,2,3,0],[1,3,3,1],[1,1,3,1],[0,1,2,1]],[[1,3,2,0],[1,3,3,1],[1,1,3,1],[0,1,2,1]],[[2,2,2,0],[1,3,3,1],[1,1,3,1],[0,1,2,1]],[[1,2,2,0],[1,3,4,1],[1,0,3,2],[0,2,2,0]],[[1,2,3,0],[1,3,3,1],[1,0,3,2],[0,2,2,0]],[[1,3,2,0],[1,3,3,1],[1,0,3,2],[0,2,2,0]],[[2,2,2,0],[1,3,3,1],[1,0,3,2],[0,2,2,0]],[[1,2,2,0],[1,3,4,1],[1,0,3,2],[0,2,1,1]],[[1,2,3,0],[1,3,3,1],[1,0,3,2],[0,2,1,1]],[[1,3,2,0],[1,3,3,1],[1,0,3,2],[0,2,1,1]],[[2,2,2,0],[1,3,3,1],[1,0,3,2],[0,2,1,1]],[[1,2,2,0],[1,3,4,1],[1,0,3,1],[0,2,2,1]],[[1,2,3,0],[1,3,3,1],[1,0,3,1],[0,2,2,1]],[[1,3,2,0],[1,3,3,1],[1,0,3,1],[0,2,2,1]],[[0,3,2,1],[2,3,2,2],[1,0,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,2,2],[1,0,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,2,2],[1,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,2,3],[1,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,2,2],[1,0,1,3],[0,2,2,1]],[[0,2,2,1],[2,3,2,2],[1,0,1,2],[0,2,3,1]],[[0,2,2,1],[2,3,2,2],[1,0,1,2],[0,2,2,2]],[[0,3,2,1],[2,3,2,2],[1,0,2,2],[0,2,1,1]],[[0,2,3,1],[2,3,2,2],[1,0,2,2],[0,2,1,1]],[[0,2,2,2],[2,3,2,2],[1,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,3,2,3],[1,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,3,2,2],[1,0,2,3],[0,2,1,1]],[[0,2,2,1],[2,3,2,2],[1,0,2,2],[0,2,1,2]],[[0,3,2,1],[2,3,2,2],[1,0,2,2],[0,2,2,0]],[[0,2,3,1],[2,3,2,2],[1,0,2,2],[0,2,2,0]],[[0,2,2,2],[2,3,2,2],[1,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,2,3],[1,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,2,2],[1,0,2,3],[0,2,2,0]],[[2,2,2,0],[1,3,3,1],[1,0,3,1],[0,2,2,1]],[[0,3,2,1],[2,3,2,2],[1,0,3,0],[0,2,2,1]],[[0,2,3,1],[2,3,2,2],[1,0,3,0],[0,2,2,1]],[[0,2,2,2],[2,3,2,2],[1,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,2,3],[1,0,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,2,2],[1,0,3,0],[1,2,2,0]],[[0,2,3,1],[2,3,2,2],[1,0,3,0],[1,2,2,0]],[[0,2,2,2],[2,3,2,2],[1,0,3,0],[1,2,2,0]],[[0,2,2,1],[3,3,2,2],[1,0,3,0],[1,2,2,0]],[[0,2,2,1],[2,4,2,2],[1,0,3,0],[1,2,2,0]],[[0,3,2,1],[2,3,2,2],[1,0,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,2,2],[1,0,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,2,2],[1,0,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,2,3],[1,0,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,2,2],[1,0,3,1],[0,2,2,0]],[[0,2,3,1],[2,3,2,2],[1,0,3,1],[0,2,2,0]],[[0,2,2,2],[2,3,2,2],[1,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,3,2,3],[1,0,3,1],[0,2,2,0]],[[0,3,2,1],[2,3,2,2],[1,0,3,2],[0,0,2,1]],[[0,2,3,1],[2,3,2,2],[1,0,3,2],[0,0,2,1]],[[0,2,2,2],[2,3,2,2],[1,0,3,2],[0,0,2,1]],[[0,2,2,1],[2,3,2,3],[1,0,3,2],[0,0,2,1]],[[0,2,2,1],[2,3,2,2],[1,0,3,3],[0,0,2,1]],[[0,2,2,1],[2,3,2,2],[1,0,3,2],[0,0,2,2]],[[0,3,2,1],[2,3,2,2],[1,0,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[1,0,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[1,0,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,3],[1,0,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,2],[1,0,3,3],[0,1,1,1]],[[0,2,2,1],[2,3,2,2],[1,0,3,2],[0,1,1,2]],[[0,3,2,1],[2,3,2,2],[1,0,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[1,0,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[1,0,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,3],[1,0,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,2],[1,0,3,3],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[1,0,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,2],[1,0,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,2],[1,0,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,3],[1,0,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,2],[1,0,3,3],[1,0,1,1]],[[0,2,2,1],[2,3,2,2],[1,0,3,2],[1,0,1,2]],[[0,3,2,1],[2,3,2,2],[1,0,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,2],[1,0,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,2],[1,0,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,3],[1,0,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,2],[1,0,3,3],[1,0,2,0]],[[0,3,2,1],[2,3,2,2],[1,1,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,2,2],[1,1,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,2,2],[1,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,2,3],[1,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,2,2],[1,1,1,3],[0,1,2,1]],[[0,2,2,1],[2,3,2,2],[1,1,1,2],[0,1,2,2]],[[0,3,2,1],[2,3,2,2],[1,1,1,2],[1,0,2,1]],[[0,2,3,1],[2,3,2,2],[1,1,1,2],[1,0,2,1]],[[0,2,2,2],[2,3,2,2],[1,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,3],[1,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,2],[1,1,1,3],[1,0,2,1]],[[0,2,2,1],[2,3,2,2],[1,1,1,2],[1,0,2,2]],[[0,3,2,1],[2,3,2,2],[1,1,2,2],[0,0,2,1]],[[0,2,3,1],[2,3,2,2],[1,1,2,2],[0,0,2,1]],[[0,2,2,2],[2,3,2,2],[1,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,2,3],[1,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,2,2],[1,1,2,3],[0,0,2,1]],[[0,2,2,1],[2,3,2,2],[1,1,2,2],[0,0,2,2]],[[0,3,2,1],[2,3,2,2],[1,1,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[1,1,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[1,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,3],[1,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,2],[1,1,2,3],[0,1,1,1]],[[0,2,2,1],[2,3,2,2],[1,1,2,2],[0,1,1,2]],[[0,3,2,1],[2,3,2,2],[1,1,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[1,1,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[1,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,3],[1,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,2],[1,1,2,3],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[1,1,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[1,1,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[1,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,3],[1,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,2],[1,1,2,3],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[1,1,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[1,1,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[1,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,3],[1,1,2,2],[0,2,1,0]],[[0,3,2,1],[2,3,2,2],[1,1,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,2],[1,1,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,2],[1,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,3],[1,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,2],[1,1,2,3],[1,0,1,1]],[[0,2,2,1],[2,3,2,2],[1,1,2,2],[1,0,1,2]],[[0,3,2,1],[2,3,2,2],[1,1,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,2],[1,1,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,2],[1,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,3],[1,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,2],[1,1,2,3],[1,0,2,0]],[[0,3,2,1],[2,3,2,2],[1,1,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[1,1,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[1,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,3],[1,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[1,1,2,3],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[1,1,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,2],[1,1,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,2],[1,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,3],[1,1,2,2],[1,1,1,0]],[[0,3,2,1],[2,3,2,2],[1,1,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,2,2],[1,1,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,2,2],[1,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,2,3],[1,1,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,2,2],[1,1,3,0],[0,2,2,0]],[[0,2,3,1],[2,3,2,2],[1,1,3,0],[0,2,2,0]],[[0,2,2,2],[2,3,2,2],[1,1,3,0],[0,2,2,0]],[[0,2,2,1],[3,3,2,2],[1,1,3,0],[0,2,2,0]],[[0,2,2,1],[2,4,2,2],[1,1,3,0],[0,2,2,0]],[[0,3,2,1],[2,3,2,2],[1,1,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,2,2],[1,1,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,2,2],[1,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,2,3],[1,1,3,0],[1,0,2,1]],[[0,3,2,1],[2,3,2,2],[1,1,3,1],[0,0,2,1]],[[0,2,3,1],[2,3,2,2],[1,1,3,1],[0,0,2,1]],[[0,2,2,2],[2,3,2,2],[1,1,3,1],[0,0,2,1]],[[0,2,2,1],[2,3,2,3],[1,1,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,2,2],[1,1,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[1,1,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[1,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,2,3],[1,1,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,2,2],[1,1,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[1,1,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[1,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,2,3],[1,1,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[1,1,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[1,1,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[1,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,2,3],[1,1,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[1,1,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[1,1,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[1,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,2,3],[1,1,3,1],[0,2,1,0]],[[0,3,2,1],[2,3,2,2],[1,1,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,2,2],[1,1,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,2,2],[1,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,2,3],[1,1,3,1],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[1,1,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,2,2],[1,1,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,2,2],[1,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,2,3],[1,1,3,1],[1,0,2,0]],[[0,3,2,1],[2,3,2,2],[1,1,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[1,1,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[1,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,2,3],[1,1,3,1],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[1,1,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,2,2],[1,1,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,2,2],[1,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,2,3],[1,1,3,1],[1,1,1,0]],[[0,3,2,1],[2,3,2,2],[1,1,3,2],[0,1,0,1]],[[0,2,3,1],[2,3,2,2],[1,1,3,2],[0,1,0,1]],[[0,2,2,2],[2,3,2,2],[1,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,2,3],[1,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,2,2],[1,1,3,3],[0,1,0,1]],[[0,3,2,1],[2,3,2,2],[1,1,3,2],[1,0,0,1]],[[0,2,3,1],[2,3,2,2],[1,1,3,2],[1,0,0,1]],[[0,2,2,2],[2,3,2,2],[1,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,2,3],[1,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,2,2],[1,1,3,3],[1,0,0,1]],[[1,2,2,0],[1,3,4,1],[0,1,3,2],[1,2,1,0]],[[1,2,3,0],[1,3,3,1],[0,1,3,2],[1,2,1,0]],[[1,3,2,0],[1,3,3,1],[0,1,3,2],[1,2,1,0]],[[2,2,2,0],[1,3,3,1],[0,1,3,2],[1,2,1,0]],[[1,2,2,0],[1,3,4,1],[0,1,3,2],[1,2,0,1]],[[1,2,3,0],[1,3,3,1],[0,1,3,2],[1,2,0,1]],[[1,3,2,0],[1,3,3,1],[0,1,3,2],[1,2,0,1]],[[2,2,2,0],[1,3,3,1],[0,1,3,2],[1,2,0,1]],[[1,2,2,0],[1,3,4,1],[0,1,3,2],[1,1,2,0]],[[1,2,3,0],[1,3,3,1],[0,1,3,2],[1,1,2,0]],[[1,3,2,0],[1,3,3,1],[0,1,3,2],[1,1,2,0]],[[2,2,2,0],[1,3,3,1],[0,1,3,2],[1,1,2,0]],[[1,2,2,0],[1,3,4,1],[0,1,3,2],[1,1,1,1]],[[1,2,3,0],[1,3,3,1],[0,1,3,2],[1,1,1,1]],[[1,3,2,0],[1,3,3,1],[0,1,3,2],[1,1,1,1]],[[2,2,2,0],[1,3,3,1],[0,1,3,2],[1,1,1,1]],[[1,2,2,0],[1,3,4,1],[0,1,3,2],[1,0,2,1]],[[1,2,3,0],[1,3,3,1],[0,1,3,2],[1,0,2,1]],[[1,3,2,0],[1,3,3,1],[0,1,3,2],[1,0,2,1]],[[2,2,2,0],[1,3,3,1],[0,1,3,2],[1,0,2,1]],[[1,2,2,0],[1,3,4,1],[0,1,3,1],[1,1,2,1]],[[1,2,3,0],[1,3,3,1],[0,1,3,1],[1,1,2,1]],[[1,3,2,0],[1,3,3,1],[0,1,3,1],[1,1,2,1]],[[2,2,2,0],[1,3,3,1],[0,1,3,1],[1,1,2,1]],[[1,2,2,0],[1,3,4,1],[0,0,3,2],[1,2,2,0]],[[1,2,3,0],[1,3,3,1],[0,0,3,2],[1,2,2,0]],[[1,3,2,0],[1,3,3,1],[0,0,3,2],[1,2,2,0]],[[2,2,2,0],[1,3,3,1],[0,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,3,4,1],[0,0,3,2],[1,2,1,1]],[[1,2,3,0],[1,3,3,1],[0,0,3,2],[1,2,1,1]],[[1,3,2,0],[1,3,3,1],[0,0,3,2],[1,2,1,1]],[[2,2,2,0],[1,3,3,1],[0,0,3,2],[1,2,1,1]],[[1,2,2,0],[1,3,4,1],[0,0,3,1],[1,2,2,1]],[[1,2,3,0],[1,3,3,1],[0,0,3,1],[1,2,2,1]],[[1,3,2,0],[1,3,3,1],[0,0,3,1],[1,2,2,1]],[[2,2,2,0],[1,3,3,1],[0,0,3,1],[1,2,2,1]],[[0,3,2,1],[2,3,2,2],[1,2,2,2],[0,0,1,1]],[[0,2,3,1],[2,3,2,2],[1,2,2,2],[0,0,1,1]],[[0,2,2,2],[2,3,2,2],[1,2,2,2],[0,0,1,1]],[[0,2,2,1],[2,3,2,3],[1,2,2,2],[0,0,1,1]],[[0,2,2,1],[2,3,2,2],[1,2,2,3],[0,0,1,1]],[[0,3,2,1],[2,3,2,2],[1,2,2,2],[0,0,2,0]],[[0,2,3,1],[2,3,2,2],[1,2,2,2],[0,0,2,0]],[[0,2,2,2],[2,3,2,2],[1,2,2,2],[0,0,2,0]],[[0,2,2,1],[2,3,2,3],[1,2,2,2],[0,0,2,0]],[[0,3,2,1],[2,3,2,2],[1,2,3,0],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[1,2,3,0],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[1,2,3,0],[0,1,1,1]],[[0,2,2,1],[3,3,2,2],[1,2,3,0],[0,1,1,1]],[[0,2,2,1],[2,4,2,2],[1,2,3,0],[0,1,1,1]],[[0,3,2,1],[2,3,2,2],[1,2,3,0],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[1,2,3,0],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[1,2,3,0],[0,1,2,0]],[[0,2,2,1],[3,3,2,2],[1,2,3,0],[0,1,2,0]],[[0,2,2,1],[2,4,2,2],[1,2,3,0],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[1,2,3,0],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[1,2,3,0],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[1,2,3,0],[0,2,0,1]],[[0,2,2,1],[3,3,2,2],[1,2,3,0],[0,2,0,1]],[[0,2,2,1],[2,4,2,2],[1,2,3,0],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[1,2,3,0],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[1,2,3,0],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[1,2,3,0],[0,2,1,0]],[[0,2,2,1],[3,3,2,2],[1,2,3,0],[0,2,1,0]],[[0,2,2,1],[2,4,2,2],[1,2,3,0],[0,2,1,0]],[[0,3,2,1],[2,3,2,2],[1,2,3,0],[1,0,1,1]],[[0,2,3,1],[2,3,2,2],[1,2,3,0],[1,0,1,1]],[[0,2,2,2],[2,3,2,2],[1,2,3,0],[1,0,1,1]],[[0,2,2,1],[3,3,2,2],[1,2,3,0],[1,0,1,1]],[[0,2,2,1],[2,4,2,2],[1,2,3,0],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[1,2,3,0],[1,0,2,0]],[[0,2,3,1],[2,3,2,2],[1,2,3,0],[1,0,2,0]],[[0,2,2,2],[2,3,2,2],[1,2,3,0],[1,0,2,0]],[[0,2,2,1],[3,3,2,2],[1,2,3,0],[1,0,2,0]],[[0,2,2,1],[2,4,2,2],[1,2,3,0],[1,0,2,0]],[[0,3,2,1],[2,3,2,2],[1,2,3,0],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[1,2,3,0],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[1,2,3,0],[1,1,0,1]],[[0,2,2,1],[3,3,2,2],[1,2,3,0],[1,1,0,1]],[[0,2,2,1],[2,4,2,2],[1,2,3,0],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[1,2,3,0],[1,1,1,0]],[[0,2,3,1],[2,3,2,2],[1,2,3,0],[1,1,1,0]],[[0,2,2,2],[2,3,2,2],[1,2,3,0],[1,1,1,0]],[[0,2,2,1],[3,3,2,2],[1,2,3,0],[1,1,1,0]],[[0,2,2,1],[2,4,2,2],[1,2,3,0],[1,1,1,0]],[[0,3,2,1],[2,3,2,2],[1,2,3,1],[0,0,1,1]],[[0,2,3,1],[2,3,2,2],[1,2,3,1],[0,0,1,1]],[[0,2,2,2],[2,3,2,2],[1,2,3,1],[0,0,1,1]],[[0,2,2,1],[2,3,2,3],[1,2,3,1],[0,0,1,1]],[[0,3,2,1],[2,3,2,2],[1,2,3,1],[0,0,2,0]],[[0,2,3,1],[2,3,2,2],[1,2,3,1],[0,0,2,0]],[[0,2,2,2],[2,3,2,2],[1,2,3,1],[0,0,2,0]],[[0,2,2,1],[2,3,2,3],[1,2,3,1],[0,0,2,0]],[[0,3,2,1],[2,3,2,2],[1,2,3,2],[0,0,0,1]],[[0,2,3,1],[2,3,2,2],[1,2,3,2],[0,0,0,1]],[[0,2,2,2],[2,3,2,2],[1,2,3,2],[0,0,0,1]],[[0,2,2,1],[2,3,2,3],[1,2,3,2],[0,0,0,1]],[[0,2,2,1],[2,3,2,2],[1,2,3,3],[0,0,0,1]],[[1,2,2,0],[1,4,2,2],[2,3,3,1],[1,0,0,0]],[[1,2,3,0],[1,3,2,2],[2,3,3,1],[1,0,0,0]],[[1,3,2,0],[1,3,2,2],[2,3,3,1],[1,0,0,0]],[[2,2,2,0],[1,3,2,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,0],[1,4,2,2],[2,3,3,0],[1,0,1,0]],[[1,2,3,0],[1,3,2,2],[2,3,3,0],[1,0,1,0]],[[1,3,2,0],[1,3,2,2],[2,3,3,0],[1,0,1,0]],[[2,2,2,0],[1,3,2,2],[2,3,3,0],[1,0,1,0]],[[1,2,2,0],[1,4,2,2],[2,3,2,1],[1,0,1,0]],[[1,2,3,0],[1,3,2,2],[2,3,2,1],[1,0,1,0]],[[1,3,2,0],[1,3,2,2],[2,3,2,1],[1,0,1,0]],[[2,2,2,0],[1,3,2,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,0],[1,4,2,2],[2,3,2,1],[1,0,0,1]],[[1,2,3,0],[1,3,2,2],[2,3,2,1],[1,0,0,1]],[[1,3,2,0],[1,3,2,2],[2,3,2,1],[1,0,0,1]],[[2,2,2,0],[1,3,2,2],[2,3,2,1],[1,0,0,1]],[[0,3,2,1],[2,3,2,2],[1,3,0,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[1,3,0,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[1,3,0,2],[0,1,1,1]],[[0,2,2,1],[3,3,2,2],[1,3,0,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,2],[1,3,0,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,3],[1,3,0,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,2],[1,3,0,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[1,3,0,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[1,3,0,2],[0,1,2,0]],[[0,2,2,1],[3,3,2,2],[1,3,0,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,2],[1,3,0,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,3],[1,3,0,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[1,3,0,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[1,3,0,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[1,3,0,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,2],[1,3,0,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,2],[1,3,0,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,3],[1,3,0,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[1,3,0,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[1,3,0,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[1,3,0,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,2],[1,3,0,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,2],[1,3,0,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,3],[1,3,0,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,3,2,0],[1,2,0,0]],[[1,3,2,0],[1,3,2,2],[2,3,2,0],[1,2,0,0]],[[2,2,2,0],[1,3,2,2],[2,3,2,0],[1,2,0,0]],[[0,3,2,1],[2,3,2,2],[1,3,0,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,2],[1,3,0,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,2],[1,3,0,2],[1,0,1,1]],[[0,2,2,1],[3,3,2,2],[1,3,0,2],[1,0,1,1]],[[0,2,2,1],[2,4,2,2],[1,3,0,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,3],[1,3,0,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[1,3,0,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,2],[1,3,0,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,2],[1,3,0,2],[1,0,2,0]],[[0,2,2,1],[3,3,2,2],[1,3,0,2],[1,0,2,0]],[[0,2,2,1],[2,4,2,2],[1,3,0,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,3],[1,3,0,2],[1,0,2,0]],[[0,3,2,1],[2,3,2,2],[1,3,0,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[1,3,0,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[1,3,0,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,2],[1,3,0,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,2],[1,3,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,3],[1,3,0,2],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[1,3,0,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,2],[1,3,0,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,2],[1,3,0,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,2],[1,3,0,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,2],[1,3,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,3],[1,3,0,2],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[2,3,2,0],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[2,3,2,0],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[2,3,2,0],[1,1,1,0]],[[0,3,2,1],[2,3,2,2],[1,3,0,2],[1,2,0,0]],[[0,2,3,1],[2,3,2,2],[1,3,0,2],[1,2,0,0]],[[0,2,2,2],[2,3,2,2],[1,3,0,2],[1,2,0,0]],[[0,2,2,1],[3,3,2,2],[1,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,4,2,2],[1,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,3],[1,3,0,2],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[2,3,2,0],[1,0,1,1]],[[1,2,3,0],[1,3,2,2],[2,3,2,0],[1,0,1,1]],[[1,3,2,0],[1,3,2,2],[2,3,2,0],[1,0,1,1]],[[2,2,2,0],[1,3,2,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,0],[1,4,2,2],[2,3,2,0],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,3,2,0],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,3,2,0],[0,2,1,0]],[[0,3,2,1],[2,3,2,2],[1,3,1,0],[0,2,2,0]],[[0,2,3,1],[2,3,2,2],[1,3,1,0],[0,2,2,0]],[[0,2,2,2],[2,3,2,2],[1,3,1,0],[0,2,2,0]],[[0,2,2,1],[3,3,2,2],[1,3,1,0],[0,2,2,0]],[[0,2,2,1],[2,4,2,2],[1,3,1,0],[0,2,2,0]],[[0,2,2,1],[2,3,2,2],[1,4,1,0],[0,2,2,0]],[[0,2,2,1],[2,3,2,2],[1,3,1,0],[0,3,2,0]],[[0,3,2,1],[2,3,2,2],[1,3,1,0],[1,1,2,0]],[[0,2,3,1],[2,3,2,2],[1,3,1,0],[1,1,2,0]],[[0,2,2,2],[2,3,2,2],[1,3,1,0],[1,1,2,0]],[[0,2,2,1],[3,3,2,2],[1,3,1,0],[1,1,2,0]],[[0,2,2,1],[2,4,2,2],[1,3,1,0],[1,1,2,0]],[[0,2,2,1],[2,3,2,2],[1,4,1,0],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[2,3,1,2],[1,0,1,0]],[[1,2,3,0],[1,3,2,2],[2,3,1,2],[1,0,1,0]],[[1,3,2,0],[1,3,2,2],[2,3,1,2],[1,0,1,0]],[[2,2,2,0],[1,3,2,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,0],[1,4,2,2],[2,3,1,2],[1,0,0,1]],[[1,2,3,0],[1,3,2,2],[2,3,1,2],[1,0,0,1]],[[1,3,2,0],[1,3,2,2],[2,3,1,2],[1,0,0,1]],[[2,2,2,0],[1,3,2,2],[2,3,1,2],[1,0,0,1]],[[1,2,2,0],[1,4,2,2],[2,3,1,1],[1,2,0,0]],[[1,2,3,0],[1,3,2,2],[2,3,1,1],[1,2,0,0]],[[1,3,2,0],[1,3,2,2],[2,3,1,1],[1,2,0,0]],[[2,2,2,0],[1,3,2,2],[2,3,1,1],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[2,3,1,1],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[2,3,1,1],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[2,3,1,1],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[2,3,1,1],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[2,3,1,1],[1,1,0,1]],[[1,2,3,0],[1,3,2,2],[2,3,1,1],[1,1,0,1]],[[1,3,2,0],[1,3,2,2],[2,3,1,1],[1,1,0,1]],[[2,2,2,0],[1,3,2,2],[2,3,1,1],[1,1,0,1]],[[1,2,2,0],[1,4,2,2],[2,3,1,1],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,3,1,1],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,3,1,1],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,3,1,1],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,3,1,1],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,3,1,1],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,3,1,1],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,3,1,1],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,3,1,0],[1,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,3,1,0],[1,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,3,1,0],[1,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,3,1,0],[1,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,3,1,0],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[2,3,1,0],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[2,3,1,0],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[2,3,1,0],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[2,3,1,0],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[2,3,1,0],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[2,3,1,0],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[2,3,1,0],[0,2,1,1]],[[1,2,2,0],[1,4,2,2],[2,3,0,2],[1,2,0,0]],[[1,2,3,0],[1,3,2,2],[2,3,0,2],[1,2,0,0]],[[1,3,2,0],[1,3,2,2],[2,3,0,2],[1,2,0,0]],[[2,2,2,0],[1,3,2,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[2,3,0,2],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[2,3,0,2],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[2,3,0,2],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[2,3,0,2],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[1,3,2,0],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[1,3,2,0],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[1,3,2,0],[0,1,1,1]],[[0,2,2,1],[3,3,2,2],[1,3,2,0],[0,1,1,1]],[[0,2,2,1],[2,4,2,2],[1,3,2,0],[0,1,1,1]],[[0,3,2,1],[2,3,2,2],[1,3,2,0],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[1,3,2,0],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[1,3,2,0],[0,1,2,0]],[[0,2,2,1],[3,3,2,2],[1,3,2,0],[0,1,2,0]],[[0,2,2,1],[2,4,2,2],[1,3,2,0],[0,1,2,0]],[[0,2,2,1],[2,3,2,2],[1,4,2,0],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[1,3,2,0],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[1,3,2,0],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[1,3,2,0],[0,2,0,1]],[[0,2,2,1],[3,3,2,2],[1,3,2,0],[0,2,0,1]],[[0,2,2,1],[2,4,2,2],[1,3,2,0],[0,2,0,1]],[[0,2,2,1],[2,3,2,2],[1,4,2,0],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[1,3,2,0],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[1,3,2,0],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[1,3,2,0],[0,2,1,0]],[[0,2,2,1],[3,3,2,2],[1,3,2,0],[0,2,1,0]],[[0,2,2,1],[2,4,2,2],[1,3,2,0],[0,2,1,0]],[[0,2,2,1],[2,3,2,2],[1,4,2,0],[0,2,1,0]],[[0,2,2,1],[2,3,2,2],[1,3,2,0],[0,3,1,0]],[[1,2,3,0],[1,3,2,2],[2,3,0,2],[1,1,0,1]],[[1,3,2,0],[1,3,2,2],[2,3,0,2],[1,1,0,1]],[[2,2,2,0],[1,3,2,2],[2,3,0,2],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[1,3,2,0],[1,0,1,1]],[[0,2,3,1],[2,3,2,2],[1,3,2,0],[1,0,1,1]],[[0,2,2,2],[2,3,2,2],[1,3,2,0],[1,0,1,1]],[[0,2,2,1],[3,3,2,2],[1,3,2,0],[1,0,1,1]],[[0,2,2,1],[2,4,2,2],[1,3,2,0],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[1,3,2,0],[1,0,2,0]],[[0,2,3,1],[2,3,2,2],[1,3,2,0],[1,0,2,0]],[[0,2,2,2],[2,3,2,2],[1,3,2,0],[1,0,2,0]],[[0,2,2,1],[3,3,2,2],[1,3,2,0],[1,0,2,0]],[[0,2,2,1],[2,4,2,2],[1,3,2,0],[1,0,2,0]],[[0,2,2,1],[2,3,2,2],[1,4,2,0],[1,0,2,0]],[[0,3,2,1],[2,3,2,2],[1,3,2,0],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[1,3,2,0],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[1,3,2,0],[1,1,0,1]],[[0,2,2,1],[3,3,2,2],[1,3,2,0],[1,1,0,1]],[[0,2,2,1],[2,4,2,2],[1,3,2,0],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[1,4,2,0],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[1,3,2,0],[1,1,1,0]],[[0,2,3,1],[2,3,2,2],[1,3,2,0],[1,1,1,0]],[[0,2,2,2],[2,3,2,2],[1,3,2,0],[1,1,1,0]],[[0,2,2,1],[3,3,2,2],[1,3,2,0],[1,1,1,0]],[[0,2,2,1],[2,4,2,2],[1,3,2,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,2],[1,4,2,0],[1,1,1,0]],[[0,3,2,1],[2,3,2,2],[1,3,2,0],[1,2,0,0]],[[0,2,3,1],[2,3,2,2],[1,3,2,0],[1,2,0,0]],[[0,2,2,2],[2,3,2,2],[1,3,2,0],[1,2,0,0]],[[0,2,2,1],[3,3,2,2],[1,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,4,2,2],[1,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,3,2,2],[1,4,2,0],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[2,3,0,2],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,3,0,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,3,0,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,3,0,2],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,3,0,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,3,0,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,3,0,1],[1,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,3,0,1],[1,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,3,0,1],[1,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,3,0,1],[1,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,3,0,1],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[2,3,0,1],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[2,3,0,1],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[2,3,0,1],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[2,3,0,1],[0,2,2,0]],[[1,2,3,0],[1,3,2,2],[2,3,0,1],[0,2,2,0]],[[1,3,2,0],[1,3,2,2],[2,3,0,1],[0,2,2,0]],[[2,2,2,0],[1,3,2,2],[2,3,0,1],[0,2,2,0]],[[1,2,2,0],[1,4,2,2],[2,3,0,0],[1,2,2,0]],[[1,3,2,0],[1,3,2,2],[2,3,0,0],[1,2,2,0]],[[2,2,2,0],[1,3,2,2],[2,3,0,0],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[2,3,0,0],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[2,3,0,0],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[2,3,0,0],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[2,3,0,0],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[2,3,0,0],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[2,3,0,0],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[2,3,0,0],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[2,3,0,0],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[2,3,0,0],[0,2,2,1]],[[1,2,3,0],[1,3,2,2],[2,3,0,0],[0,2,2,1]],[[1,3,2,0],[1,3,2,2],[2,3,0,0],[0,2,2,1]],[[2,2,2,0],[1,3,2,2],[2,3,0,0],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[2,2,3,1],[1,1,0,0]],[[1,2,3,0],[1,3,2,2],[2,2,3,1],[1,1,0,0]],[[1,3,2,0],[1,3,2,2],[2,2,3,1],[1,1,0,0]],[[2,2,2,0],[1,3,2,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,0],[1,4,2,2],[2,2,3,1],[0,2,0,0]],[[1,2,3,0],[1,3,2,2],[2,2,3,1],[0,2,0,0]],[[1,3,2,0],[1,3,2,2],[2,2,3,1],[0,2,0,0]],[[2,2,2,0],[1,3,2,2],[2,2,3,1],[0,2,0,0]],[[1,2,2,0],[1,4,2,2],[2,2,3,0],[1,2,0,0]],[[1,2,3,0],[1,3,2,2],[2,2,3,0],[1,2,0,0]],[[1,3,2,0],[1,3,2,2],[2,2,3,0],[1,2,0,0]],[[2,2,2,0],[1,3,2,2],[2,2,3,0],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[2,2,3,0],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[2,2,3,0],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[2,2,3,0],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[2,2,3,0],[1,0,2,0]],[[1,2,3,0],[1,3,2,2],[2,2,3,0],[1,0,2,0]],[[1,3,2,0],[1,3,2,2],[2,2,3,0],[1,0,2,0]],[[2,2,2,0],[1,3,2,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,3,0],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,2,3,0],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,2,3,0],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,2,3,0],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[2,2,3,0],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[2,2,3,0],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,2,1],[1,2,0,0]],[[1,2,3,0],[1,3,2,2],[2,2,2,1],[1,2,0,0]],[[1,3,2,0],[1,3,2,2],[2,2,2,1],[1,2,0,0]],[[2,2,2,0],[1,3,2,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[2,2,2,1],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[2,2,2,1],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[2,2,2,1],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[2,2,2,1],[1,1,0,1]],[[1,2,3,0],[1,3,2,2],[2,2,2,1],[1,1,0,1]],[[1,3,2,0],[1,3,2,2],[2,2,2,1],[1,1,0,1]],[[2,2,2,0],[1,3,2,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,0],[1,4,2,2],[2,2,2,1],[1,0,2,0]],[[1,2,3,0],[1,3,2,2],[2,2,2,1],[1,0,2,0]],[[1,3,2,0],[1,3,2,2],[2,2,2,1],[1,0,2,0]],[[2,2,2,0],[1,3,2,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,2,1],[1,0,1,1]],[[1,2,3,0],[1,3,2,2],[2,2,2,1],[1,0,1,1]],[[1,3,2,0],[1,3,2,2],[2,2,2,1],[1,0,1,1]],[[2,2,2,0],[1,3,2,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,0],[1,4,2,2],[2,2,2,1],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,2,2,1],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,2,2,1],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,2,2,1],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,2,2,1],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,2,2,1],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,2,2,1],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[2,2,2,1],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[2,2,2,1],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,2,1],[0,1,1,1]],[[1,2,3,0],[1,3,2,2],[2,2,2,1],[0,1,1,1]],[[1,3,2,0],[1,3,2,2],[2,2,2,1],[0,1,1,1]],[[2,2,2,0],[1,3,2,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,0],[1,4,2,2],[2,2,2,0],[1,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,2,2,0],[1,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,2,2,0],[1,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,2,2,0],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[2,2,2,0],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[2,2,2,0],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[2,2,2,0],[1,0,2,1]],[[1,2,3,0],[1,3,2,2],[2,2,2,0],[1,0,2,1]],[[1,3,2,0],[1,3,2,2],[2,2,2,0],[1,0,2,1]],[[2,2,2,0],[1,3,2,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,0],[1,4,2,2],[2,2,2,0],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[2,2,2,0],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[2,2,2,0],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,0],[1,4,2,2],[2,2,2,0],[0,1,2,1]],[[1,2,3,0],[1,3,2,2],[2,2,2,0],[0,1,2,1]],[[1,3,2,0],[1,3,2,2],[2,2,2,0],[0,1,2,1]],[[2,2,2,0],[1,3,2,2],[2,2,2,0],[0,1,2,1]],[[0,3,2,1],[2,3,2,2],[1,3,3,0],[0,0,1,1]],[[0,2,3,1],[2,3,2,2],[1,3,3,0],[0,0,1,1]],[[0,2,2,2],[2,3,2,2],[1,3,3,0],[0,0,1,1]],[[0,2,2,1],[3,3,2,2],[1,3,3,0],[0,0,1,1]],[[0,2,2,1],[2,4,2,2],[1,3,3,0],[0,0,1,1]],[[0,3,2,1],[2,3,2,2],[1,3,3,0],[0,0,2,0]],[[0,2,3,1],[2,3,2,2],[1,3,3,0],[0,0,2,0]],[[0,2,2,2],[2,3,2,2],[1,3,3,0],[0,0,2,0]],[[0,2,2,1],[3,3,2,2],[1,3,3,0],[0,0,2,0]],[[0,2,2,1],[2,4,2,2],[1,3,3,0],[0,0,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,1,2],[1,2,0,0]],[[0,3,2,1],[2,3,2,2],[1,3,3,0],[0,2,0,0]],[[0,2,3,1],[2,3,2,2],[1,3,3,0],[0,2,0,0]],[[0,2,2,2],[2,3,2,2],[1,3,3,0],[0,2,0,0]],[[0,2,2,1],[3,3,2,2],[1,3,3,0],[0,2,0,0]],[[0,2,2,1],[2,4,2,2],[1,3,3,0],[0,2,0,0]],[[0,2,2,1],[2,3,2,2],[1,4,3,0],[0,2,0,0]],[[1,2,3,0],[1,3,2,2],[2,2,1,2],[1,2,0,0]],[[1,3,2,0],[1,3,2,2],[2,2,1,2],[1,2,0,0]],[[2,2,2,0],[1,3,2,2],[2,2,1,2],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[2,2,1,2],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[2,2,1,2],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[2,2,1,2],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[2,2,1,2],[1,1,0,1]],[[1,2,3,0],[1,3,2,2],[2,2,1,2],[1,1,0,1]],[[1,3,2,0],[1,3,2,2],[2,2,1,2],[1,1,0,1]],[[2,2,2,0],[1,3,2,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,0],[1,4,2,2],[2,2,1,2],[1,0,2,0]],[[1,2,3,0],[1,3,2,2],[2,2,1,2],[1,0,2,0]],[[1,3,2,0],[1,3,2,2],[2,2,1,2],[1,0,2,0]],[[2,2,2,0],[1,3,2,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,1,2],[1,0,1,1]],[[1,2,3,0],[1,3,2,2],[2,2,1,2],[1,0,1,1]],[[1,3,2,0],[1,3,2,2],[2,2,1,2],[1,0,1,1]],[[2,2,2,0],[1,3,2,2],[2,2,1,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[1,3,3,0],[1,1,0,0]],[[0,2,3,1],[2,3,2,2],[1,3,3,0],[1,1,0,0]],[[0,2,2,2],[2,3,2,2],[1,3,3,0],[1,1,0,0]],[[0,2,2,1],[3,3,2,2],[1,3,3,0],[1,1,0,0]],[[0,2,2,1],[2,4,2,2],[1,3,3,0],[1,1,0,0]],[[0,2,2,1],[2,3,2,2],[1,4,3,0],[1,1,0,0]],[[1,2,2,0],[1,4,2,2],[2,2,1,2],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,2,1,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,2,1,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,2,1,2],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,2,1,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,2,1,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,2,1,2],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[2,2,1,2],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[2,2,1,2],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,1,2],[0,1,1,1]],[[1,2,3,0],[1,3,2,2],[2,2,1,2],[0,1,1,1]],[[1,3,2,0],[1,3,2,2],[2,2,1,2],[0,1,1,1]],[[2,2,2,0],[1,3,2,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,0],[1,4,2,2],[2,2,1,1],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[2,2,1,1],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[2,2,1,1],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,1,1],[0,2,2,0]],[[1,2,3,0],[1,3,2,2],[2,2,1,1],[0,2,2,0]],[[1,3,2,0],[1,3,2,2],[2,2,1,1],[0,2,2,0]],[[2,2,2,0],[1,3,2,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,1,0],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[2,2,1,0],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[2,2,1,0],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[2,2,1,0],[0,2,2,1]],[[1,2,3,0],[1,3,2,2],[2,2,1,0],[0,2,2,1]],[[1,3,2,0],[1,3,2,2],[2,2,1,0],[0,2,2,1]],[[2,2,2,0],[1,3,2,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[2,2,0,2],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[2,2,0,2],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[2,2,0,2],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,0,2],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[2,2,0,2],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[2,2,0,2],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[2,2,0,2],[1,0,2,1]],[[1,2,3,0],[1,3,2,2],[2,2,0,2],[1,0,2,1]],[[1,3,2,0],[1,3,2,2],[2,2,0,2],[1,0,2,1]],[[2,2,2,0],[1,3,2,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,0],[1,4,2,2],[2,2,0,2],[0,2,2,0]],[[1,2,3,0],[1,3,2,2],[2,2,0,2],[0,2,2,0]],[[1,3,2,0],[1,3,2,2],[2,2,0,2],[0,2,2,0]],[[2,2,2,0],[1,3,2,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,0,2],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[2,2,0,2],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[2,2,0,2],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,0],[1,4,2,2],[2,2,0,2],[0,1,2,1]],[[1,2,3,0],[1,3,2,2],[2,2,0,2],[0,1,2,1]],[[1,3,2,0],[1,3,2,2],[2,2,0,2],[0,1,2,1]],[[2,2,2,0],[1,3,2,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,0],[1,4,2,2],[2,2,0,1],[1,2,2,0]],[[1,2,3,0],[1,3,2,2],[2,2,0,1],[1,2,2,0]],[[1,3,2,0],[1,3,2,2],[2,2,0,1],[1,2,2,0]],[[2,2,2,0],[1,3,2,2],[2,2,0,1],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[2,2,0,1],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[2,2,0,1],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[2,2,0,1],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[2,2,0,1],[0,2,2,1]],[[1,2,3,0],[1,3,2,2],[2,2,0,1],[0,2,2,1]],[[1,3,2,0],[1,3,2,2],[2,2,0,1],[0,2,2,1]],[[2,2,2,0],[1,3,2,2],[2,2,0,1],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[2,2,0,0],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[2,2,0,0],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[2,2,0,0],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[2,2,0,0],[1,2,2,1]],[[1,2,2,0],[1,4,2,2],[2,1,3,2],[1,0,0,1]],[[1,2,3,0],[1,3,2,2],[2,1,3,2],[1,0,0,1]],[[1,3,2,0],[1,3,2,2],[2,1,3,2],[1,0,0,1]],[[2,2,2,0],[1,3,2,2],[2,1,3,2],[1,0,0,1]],[[1,2,2,0],[1,4,2,2],[2,1,3,2],[0,1,0,1]],[[1,2,3,0],[1,3,2,2],[2,1,3,2],[0,1,0,1]],[[1,3,2,0],[1,3,2,2],[2,1,3,2],[0,1,0,1]],[[2,2,2,0],[1,3,2,2],[2,1,3,2],[0,1,0,1]],[[1,2,2,0],[1,4,2,2],[2,1,3,1],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[2,1,3,1],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[2,1,3,1],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[2,1,3,1],[1,1,0,1]],[[1,2,3,0],[1,3,2,2],[2,1,3,1],[1,1,0,1]],[[1,3,2,0],[1,3,2,2],[2,1,3,1],[1,1,0,1]],[[2,2,2,0],[1,3,2,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,0],[1,4,2,2],[2,1,3,1],[1,0,2,0]],[[1,2,3,0],[1,3,2,2],[2,1,3,1],[1,0,2,0]],[[1,3,2,0],[1,3,2,2],[2,1,3,1],[1,0,2,0]],[[2,2,2,0],[1,3,2,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,0],[1,4,2,2],[2,1,3,1],[1,0,1,1]],[[1,2,3,0],[1,3,2,2],[2,1,3,1],[1,0,1,1]],[[1,3,2,0],[1,3,2,2],[2,1,3,1],[1,0,1,1]],[[2,2,2,0],[1,3,2,2],[2,1,3,1],[1,0,1,1]],[[1,2,2,0],[1,4,2,2],[2,1,3,1],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,1,3,1],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,1,3,1],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,1,3,1],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,1,3,1],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,1,3,1],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,1,3,1],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[2,1,3,1],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[2,1,3,1],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[2,1,3,1],[0,1,1,1]],[[1,2,3,0],[1,3,2,2],[2,1,3,1],[0,1,1,1]],[[1,3,2,0],[1,3,2,2],[2,1,3,1],[0,1,1,1]],[[2,2,2,0],[1,3,2,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,0],[1,4,2,2],[2,1,3,1],[0,0,2,1]],[[1,2,3,0],[1,3,2,2],[2,1,3,1],[0,0,2,1]],[[1,3,2,0],[1,3,2,2],[2,1,3,1],[0,0,2,1]],[[2,2,2,0],[1,3,2,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,0],[1,4,2,2],[2,1,3,0],[1,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,1,3,0],[1,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,1,3,0],[1,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,1,3,0],[1,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,1,3,0],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[2,1,3,0],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[2,1,3,0],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[2,1,3,0],[1,0,2,1]],[[1,2,3,0],[1,3,2,2],[2,1,3,0],[1,0,2,1]],[[1,3,2,0],[1,3,2,2],[2,1,3,0],[1,0,2,1]],[[2,2,2,0],[1,3,2,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,0],[1,4,2,2],[2,1,3,0],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[2,1,3,0],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[2,1,3,0],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,0],[1,4,2,2],[2,1,3,0],[0,1,2,1]],[[1,2,3,0],[1,3,2,2],[2,1,3,0],[0,1,2,1]],[[1,3,2,0],[1,3,2,2],[2,1,3,0],[0,1,2,1]],[[2,2,2,0],[1,3,2,2],[2,1,3,0],[0,1,2,1]],[[1,2,2,0],[1,4,2,2],[2,1,2,2],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[2,1,2,2],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[2,1,2,2],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[2,1,2,2],[1,1,0,1]],[[1,2,3,0],[1,3,2,2],[2,1,2,2],[1,1,0,1]],[[1,3,2,0],[1,3,2,2],[2,1,2,2],[1,1,0,1]],[[2,2,2,0],[1,3,2,2],[2,1,2,2],[1,1,0,1]],[[1,2,2,0],[1,4,2,2],[2,1,2,2],[1,0,2,0]],[[1,2,3,0],[1,3,2,2],[2,1,2,2],[1,0,2,0]],[[1,3,2,0],[1,3,2,2],[2,1,2,2],[1,0,2,0]],[[2,2,2,0],[1,3,2,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,0],[1,4,2,2],[2,1,2,2],[1,0,1,1]],[[1,2,3,0],[1,3,2,2],[2,1,2,2],[1,0,1,1]],[[1,3,2,0],[1,3,2,2],[2,1,2,2],[1,0,1,1]],[[2,2,2,0],[1,3,2,2],[2,1,2,2],[1,0,1,1]],[[1,2,2,0],[1,4,2,2],[2,1,2,2],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,1,2,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,1,2,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,1,2,2],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,1,2,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,1,2,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,1,2,2],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[2,1,2,2],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[2,1,2,2],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[2,1,2,2],[0,1,1,1]],[[1,2,3,0],[1,3,2,2],[2,1,2,2],[0,1,1,1]],[[1,3,2,0],[1,3,2,2],[2,1,2,2],[0,1,1,1]],[[2,2,2,0],[1,3,2,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,0],[1,4,2,2],[2,1,2,2],[0,0,2,1]],[[1,2,3,0],[1,3,2,2],[2,1,2,2],[0,0,2,1]],[[1,3,2,0],[1,3,2,2],[2,1,2,2],[0,0,2,1]],[[2,2,2,0],[1,3,2,2],[2,1,2,2],[0,0,2,1]],[[1,2,2,0],[1,4,2,2],[2,1,2,1],[1,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,1,2,1],[1,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,1,2,1],[1,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,1,2,1],[1,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,1,2,1],[1,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,1,2,1],[1,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,1,2,0],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[2,1,2,0],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[2,1,2,0],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[2,1,2,0],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[2,1,1,2],[1,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,1,1,2],[1,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,1,1,2],[1,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,1,1,2],[1,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,1,1,2],[1,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,1,1,2],[1,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,1,1,2],[1,0,2,1]],[[1,2,3,0],[1,3,2,2],[2,1,1,2],[1,0,2,1]],[[1,3,2,0],[1,3,2,2],[2,1,1,2],[1,0,2,1]],[[2,2,2,0],[1,3,2,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,0],[1,4,2,2],[2,1,1,2],[0,1,2,1]],[[1,2,3,0],[1,3,2,2],[2,1,1,2],[0,1,2,1]],[[1,3,2,0],[1,3,2,2],[2,1,1,2],[0,1,2,1]],[[2,2,2,0],[1,3,2,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,0],[1,4,2,2],[2,1,1,1],[1,2,2,0]],[[1,2,3,0],[1,3,2,2],[2,1,1,1],[1,2,2,0]],[[1,3,2,0],[1,3,2,2],[2,1,1,1],[1,2,2,0]],[[2,2,2,0],[1,3,2,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[2,1,1,0],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[2,1,1,0],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[2,1,1,0],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,0],[1,4,2,2],[2,1,0,2],[1,2,2,0]],[[1,2,3,0],[1,3,2,2],[2,1,0,2],[1,2,2,0]],[[1,3,2,0],[1,3,2,2],[2,1,0,2],[1,2,2,0]],[[2,2,2,0],[1,3,2,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[2,1,0,2],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[2,1,0,2],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[2,1,0,2],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[2,1,0,2],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[2,1,0,2],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[2,1,0,2],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[2,1,0,2],[0,2,2,1]],[[1,2,3,0],[1,3,2,2],[2,1,0,2],[0,2,2,1]],[[1,3,2,0],[1,3,2,2],[2,1,0,2],[0,2,2,1]],[[2,2,2,0],[1,3,2,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[2,1,0,1],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[2,1,0,1],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[2,1,0,1],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[2,1,0,1],[1,2,2,1]],[[1,2,2,0],[1,4,2,2],[2,0,3,1],[1,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,0,3,1],[1,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,0,3,1],[1,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,0,3,1],[1,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,0,3,1],[1,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,0,3,1],[1,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,0,3,1],[1,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,0,3,1],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[2,0,3,1],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[2,0,3,1],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[2,0,3,1],[1,1,1,1]],[[0,3,2,1],[2,3,2,2],[2,0,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,2,2],[2,0,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,2,2],[2,0,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,2,3],[2,0,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,2,2],[2,0,1,3],[0,1,2,1]],[[0,2,2,1],[2,3,2,2],[2,0,1,2],[0,1,2,2]],[[0,3,2,1],[2,3,2,2],[2,0,1,2],[1,0,2,1]],[[0,2,3,1],[2,3,2,2],[2,0,1,2],[1,0,2,1]],[[0,2,2,2],[2,3,2,2],[2,0,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,3],[2,0,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,2,2],[2,0,1,3],[1,0,2,1]],[[0,2,2,1],[2,3,2,2],[2,0,1,2],[1,0,2,2]],[[1,2,3,0],[1,3,2,2],[2,0,3,1],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[2,0,3,1],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[2,0,3,1],[0,2,2,0]],[[0,3,2,1],[2,3,2,2],[2,0,2,0],[1,2,2,0]],[[0,2,3,1],[2,3,2,2],[2,0,2,0],[1,2,2,0]],[[0,2,2,2],[2,3,2,2],[2,0,2,0],[1,2,2,0]],[[0,2,2,1],[3,3,2,2],[2,0,2,0],[1,2,2,0]],[[0,2,2,1],[2,4,2,2],[2,0,2,0],[1,2,2,0]],[[0,2,2,1],[2,3,2,2],[3,0,2,0],[1,2,2,0]],[[0,2,2,1],[2,3,2,2],[2,0,2,0],[2,2,2,0]],[[0,2,2,1],[2,3,2,2],[2,0,2,0],[1,3,2,0]],[[1,2,3,0],[1,3,2,2],[2,0,3,1],[0,2,2,0]],[[1,3,2,0],[1,3,2,2],[2,0,3,1],[0,2,2,0]],[[2,2,2,0],[1,3,2,2],[2,0,3,1],[0,2,2,0]],[[1,2,2,0],[1,4,2,2],[2,0,3,1],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[2,0,3,1],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[2,0,3,1],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[2,0,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,2,2],[2,0,2,2],[0,0,2,1]],[[0,2,3,1],[2,3,2,2],[2,0,2,2],[0,0,2,1]],[[0,2,2,2],[2,3,2,2],[2,0,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,2,3],[2,0,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,2,2],[2,0,2,3],[0,0,2,1]],[[0,2,2,1],[2,3,2,2],[2,0,2,2],[0,0,2,2]],[[0,3,2,1],[2,3,2,2],[2,0,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[2,0,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[2,0,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,3],[2,0,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,2],[2,0,2,3],[0,1,1,1]],[[0,2,2,1],[2,3,2,2],[2,0,2,2],[0,1,1,2]],[[0,3,2,1],[2,3,2,2],[2,0,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[2,0,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[2,0,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,3],[2,0,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,2],[2,0,2,3],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[2,0,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[2,0,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[2,0,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,3],[2,0,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,2],[2,0,2,3],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[2,0,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[2,0,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[2,0,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,3],[2,0,2,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,0,3,0],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[2,0,3,0],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[2,0,3,0],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[2,0,3,0],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[2,0,3,0],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[2,0,3,0],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[2,0,3,0],[0,2,2,1]],[[1,2,3,0],[1,3,2,2],[2,0,3,0],[0,2,2,1]],[[1,3,2,0],[1,3,2,2],[2,0,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,2,2],[2,0,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,2],[2,0,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,2],[2,0,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,3],[2,0,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,2],[2,0,2,3],[1,0,1,1]],[[0,2,2,1],[2,3,2,2],[2,0,2,2],[1,0,1,2]],[[0,3,2,1],[2,3,2,2],[2,0,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,2],[2,0,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,2],[2,0,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,3],[2,0,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,2],[2,0,2,3],[1,0,2,0]],[[0,3,2,1],[2,3,2,2],[2,0,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[2,0,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[2,0,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,3],[2,0,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[2,0,2,3],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[2,0,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,2],[2,0,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,2],[2,0,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,3],[2,0,2,2],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[2,0,3,0],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[2,0,2,2],[1,2,1,0]],[[1,2,3,0],[1,3,2,2],[2,0,2,2],[1,2,1,0]],[[1,3,2,0],[1,3,2,2],[2,0,2,2],[1,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,0],[1,4,2,2],[2,0,2,2],[1,2,0,1]],[[1,2,3,0],[1,3,2,2],[2,0,2,2],[1,2,0,1]],[[1,3,2,0],[1,3,2,2],[2,0,2,2],[1,2,0,1]],[[2,2,2,0],[1,3,2,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,0],[1,4,2,2],[2,0,2,2],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[2,0,2,2],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[2,0,2,2],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[2,0,2,2],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[2,0,2,2],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[2,0,2,2],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[2,0,2,2],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[2,0,2,2],[0,2,2,0]],[[1,2,3,0],[1,3,2,2],[2,0,2,2],[0,2,2,0]],[[1,3,2,0],[1,3,2,2],[2,0,2,2],[0,2,2,0]],[[0,3,2,1],[2,3,2,2],[2,0,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,2,2],[2,0,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,2,2],[2,0,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,2,3],[2,0,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,2,2],[2,0,3,0],[0,2,2,0]],[[0,2,3,1],[2,3,2,2],[2,0,3,0],[0,2,2,0]],[[0,2,2,2],[2,3,2,2],[2,0,3,0],[0,2,2,0]],[[0,2,2,1],[3,3,2,2],[2,0,3,0],[0,2,2,0]],[[0,2,2,1],[2,4,2,2],[2,0,3,0],[0,2,2,0]],[[0,2,2,1],[2,3,2,2],[3,0,3,0],[0,2,2,0]],[[0,3,2,1],[2,3,2,2],[2,0,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,2,2],[2,0,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,2,2],[2,0,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,2,3],[2,0,3,0],[1,0,2,1]],[[0,3,2,1],[2,3,2,2],[2,0,3,0],[1,1,2,0]],[[0,2,3,1],[2,3,2,2],[2,0,3,0],[1,1,2,0]],[[0,2,2,2],[2,3,2,2],[2,0,3,0],[1,1,2,0]],[[0,2,2,1],[3,3,2,2],[2,0,3,0],[1,1,2,0]],[[0,2,2,1],[2,4,2,2],[2,0,3,0],[1,1,2,0]],[[0,2,2,1],[2,3,2,2],[3,0,3,0],[1,1,2,0]],[[0,2,2,1],[2,3,2,2],[2,0,3,0],[2,1,2,0]],[[0,3,2,1],[2,3,2,2],[2,0,3,0],[1,2,0,1]],[[0,2,3,1],[2,3,2,2],[2,0,3,0],[1,2,0,1]],[[0,2,2,2],[2,3,2,2],[2,0,3,0],[1,2,0,1]],[[0,2,2,1],[3,3,2,2],[2,0,3,0],[1,2,0,1]],[[0,2,2,1],[2,4,2,2],[2,0,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,2,2],[3,0,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,2,2],[2,0,3,0],[2,2,0,1]],[[0,3,2,1],[2,3,2,2],[2,0,3,0],[1,2,1,0]],[[0,2,3,1],[2,3,2,2],[2,0,3,0],[1,2,1,0]],[[0,2,2,2],[2,3,2,2],[2,0,3,0],[1,2,1,0]],[[0,2,2,1],[3,3,2,2],[2,0,3,0],[1,2,1,0]],[[0,2,2,1],[2,4,2,2],[2,0,3,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,2],[3,0,3,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,2],[2,0,3,0],[2,2,1,0]],[[0,2,2,1],[2,3,2,2],[2,0,3,0],[1,3,1,0]],[[2,2,2,0],[1,3,2,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,0],[1,4,2,2],[2,0,2,2],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[2,0,2,2],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[2,0,2,2],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,0],[1,4,2,2],[2,0,2,1],[1,2,2,0]],[[1,2,3,0],[1,3,2,2],[2,0,2,1],[1,2,2,0]],[[1,3,2,0],[1,3,2,2],[2,0,2,1],[1,2,2,0]],[[0,3,2,1],[2,3,2,2],[2,0,3,1],[0,0,2,1]],[[0,2,3,1],[2,3,2,2],[2,0,3,1],[0,0,2,1]],[[0,2,2,2],[2,3,2,2],[2,0,3,1],[0,0,2,1]],[[0,2,2,1],[2,3,2,3],[2,0,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,2,2],[2,0,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[2,0,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[2,0,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,2,3],[2,0,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,2,2],[2,0,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[2,0,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[2,0,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,2,3],[2,0,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[2,0,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[2,0,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[2,0,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,2,3],[2,0,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[2,0,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[2,0,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[2,0,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,2,3],[2,0,3,1],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[2,0,2,0],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[2,0,2,0],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[2,0,2,0],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[2,0,2,0],[1,2,2,1]],[[1,2,2,0],[1,4,2,2],[2,0,1,2],[1,2,2,0]],[[1,2,3,0],[1,3,2,2],[2,0,1,2],[1,2,2,0]],[[0,3,2,1],[2,3,2,2],[2,0,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,2,2],[2,0,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,2,2],[2,0,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,2,3],[2,0,3,1],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[2,0,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,2,2],[2,0,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,2,2],[2,0,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,2,3],[2,0,3,1],[1,0,2,0]],[[0,3,2,1],[2,3,2,2],[2,0,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[2,0,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[2,0,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,2,3],[2,0,3,1],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[2,0,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,2,2],[2,0,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,2,2],[2,0,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,2,3],[2,0,3,1],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[2,0,1,2],[1,2,2,0]],[[2,2,2,0],[1,3,2,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[2,0,1,2],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[2,0,1,2],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[2,0,1,2],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[2,0,1,2],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[2,0,1,2],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[2,0,1,2],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[2,0,1,2],[0,2,2,1]],[[1,2,3,0],[1,3,2,2],[2,0,1,2],[0,2,2,1]],[[1,3,2,0],[1,3,2,2],[2,0,1,2],[0,2,2,1]],[[2,2,2,0],[1,3,2,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[2,0,1,1],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[2,0,1,1],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[2,0,1,1],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[2,0,1,1],[1,2,2,1]],[[0,3,2,1],[2,3,2,2],[2,0,3,2],[0,1,0,1]],[[0,2,3,1],[2,3,2,2],[2,0,3,2],[0,1,0,1]],[[0,2,2,2],[2,3,2,2],[2,0,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,2,3],[2,0,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,2,2],[2,0,3,3],[0,1,0,1]],[[1,2,2,0],[1,4,2,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,0],[1,3,2,2],[1,3,3,2],[0,0,0,1]],[[1,3,2,0],[1,3,2,2],[1,3,3,2],[0,0,0,1]],[[2,2,2,0],[1,3,2,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,0],[1,3,2,2],[1,4,3,1],[1,1,0,0]],[[1,2,2,0],[1,4,2,2],[1,3,3,1],[1,1,0,0]],[[1,2,3,0],[1,3,2,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,0],[1,3,2,2],[1,3,3,1],[1,1,0,0]],[[2,2,2,0],[1,3,2,2],[1,3,3,1],[1,1,0,0]],[[0,3,2,1],[2,3,2,2],[2,0,3,2],[1,0,0,1]],[[0,2,3,1],[2,3,2,2],[2,0,3,2],[1,0,0,1]],[[0,2,2,2],[2,3,2,2],[2,0,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,2,3],[2,0,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,2,2],[2,0,3,3],[1,0,0,1]],[[1,2,2,0],[1,3,2,2],[1,4,3,1],[0,2,0,0]],[[1,2,2,0],[1,4,2,2],[1,3,3,1],[0,2,0,0]],[[1,2,3,0],[1,3,2,2],[1,3,3,1],[0,2,0,0]],[[1,3,2,0],[1,3,2,2],[1,3,3,1],[0,2,0,0]],[[2,2,2,0],[1,3,2,2],[1,3,3,1],[0,2,0,0]],[[1,2,2,0],[1,4,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,3,1],[0,0,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,3,1],[0,0,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,0],[1,3,2,2],[1,3,3,1],[0,0,1,1]],[[1,3,2,0],[1,3,2,2],[1,3,3,1],[0,0,1,1]],[[2,2,2,0],[1,3,2,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,0],[1,3,2,2],[1,4,3,0],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[1,3,3,0],[1,2,0,0]],[[1,2,3,0],[1,3,2,2],[1,3,3,0],[1,2,0,0]],[[1,3,2,0],[1,3,2,2],[1,3,3,0],[1,2,0,0]],[[2,2,2,0],[1,3,2,2],[1,3,3,0],[1,2,0,0]],[[1,2,2,0],[1,3,2,2],[1,4,3,0],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[1,3,3,0],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[1,3,3,0],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[1,3,3,0],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,0],[1,3,2,2],[1,4,3,0],[1,0,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,3,0],[1,0,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,3,0],[1,0,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,3,0],[1,0,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,3,0],[1,0,2,0]],[[0,3,2,1],[2,3,2,2],[2,1,0,2],[1,2,0,1]],[[0,2,3,1],[2,3,2,2],[2,1,0,2],[1,2,0,1]],[[0,2,2,2],[2,3,2,2],[2,1,0,2],[1,2,0,1]],[[0,2,2,1],[3,3,2,2],[2,1,0,2],[1,2,0,1]],[[0,2,2,1],[2,4,2,2],[2,1,0,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,3],[2,1,0,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,2],[3,1,0,2],[1,2,0,1]],[[0,2,2,1],[2,3,2,2],[2,1,0,2],[2,2,0,1]],[[0,3,2,1],[2,3,2,2],[2,1,0,2],[1,2,1,0]],[[0,2,3,1],[2,3,2,2],[2,1,0,2],[1,2,1,0]],[[0,2,2,2],[2,3,2,2],[2,1,0,2],[1,2,1,0]],[[0,2,2,1],[3,3,2,2],[2,1,0,2],[1,2,1,0]],[[0,2,2,1],[2,4,2,2],[2,1,0,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,3],[2,1,0,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,2],[3,1,0,2],[1,2,1,0]],[[0,2,2,1],[2,3,2,2],[2,1,0,2],[2,2,1,0]],[[1,2,2,0],[1,3,2,2],[1,3,3,0],[0,3,1,0]],[[0,3,2,1],[2,3,2,2],[2,1,1,0],[1,2,2,0]],[[0,2,3,1],[2,3,2,2],[2,1,1,0],[1,2,2,0]],[[0,2,2,2],[2,3,2,2],[2,1,1,0],[1,2,2,0]],[[0,2,2,1],[3,3,2,2],[2,1,1,0],[1,2,2,0]],[[0,2,2,1],[2,4,2,2],[2,1,1,0],[1,2,2,0]],[[0,2,2,1],[2,3,2,2],[3,1,1,0],[1,2,2,0]],[[0,2,2,1],[2,3,2,2],[2,1,1,0],[2,2,2,0]],[[0,2,2,1],[2,3,2,2],[2,1,1,0],[1,3,2,0]],[[1,2,2,0],[1,3,2,2],[1,4,3,0],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[1,3,3,0],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[1,3,3,0],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[1,3,3,0],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[1,3,3,0],[0,2,1,0]],[[1,2,2,0],[1,3,2,2],[1,4,3,0],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,3,0],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,3,0],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,3,0],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,3,0],[0,0,2,1]],[[1,2,3,0],[1,3,2,2],[1,3,3,0],[0,0,2,1]],[[1,3,2,0],[1,3,2,2],[1,3,3,0],[0,0,2,1]],[[2,2,2,0],[1,3,2,2],[1,3,3,0],[0,0,2,1]],[[0,3,2,1],[2,3,2,2],[2,1,2,0],[1,2,0,1]],[[0,2,3,1],[2,3,2,2],[2,1,2,0],[1,2,0,1]],[[0,2,2,2],[2,3,2,2],[2,1,2,0],[1,2,0,1]],[[0,2,2,1],[3,3,2,2],[2,1,2,0],[1,2,0,1]],[[0,2,2,1],[2,4,2,2],[2,1,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,2,2],[3,1,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,2,2],[2,1,2,0],[2,2,0,1]],[[0,3,2,1],[2,3,2,2],[2,1,2,0],[1,2,1,0]],[[0,2,3,1],[2,3,2,2],[2,1,2,0],[1,2,1,0]],[[0,2,2,2],[2,3,2,2],[2,1,2,0],[1,2,1,0]],[[0,2,2,1],[3,3,2,2],[2,1,2,0],[1,2,1,0]],[[0,2,2,1],[2,4,2,2],[2,1,2,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,2],[3,1,2,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,2],[2,1,2,0],[2,2,1,0]],[[0,2,2,1],[2,3,2,2],[2,1,2,0],[1,3,1,0]],[[1,2,2,0],[1,4,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,2,2],[0,0,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,2,2],[0,0,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,0],[1,3,2,2],[1,3,2,2],[0,0,1,1]],[[1,3,2,0],[1,3,2,2],[1,3,2,2],[0,0,1,1]],[[2,2,2,0],[1,3,2,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,0],[1,3,2,2],[1,4,2,1],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[1,3,2,1],[1,2,0,0]],[[1,2,3,0],[1,3,2,2],[1,3,2,1],[1,2,0,0]],[[1,3,2,0],[1,3,2,2],[1,3,2,1],[1,2,0,0]],[[2,2,2,0],[1,3,2,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,0],[1,3,2,2],[1,4,2,1],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[1,3,2,1],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[1,3,2,1],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[1,3,2,1],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,0],[1,3,2,2],[1,4,2,1],[1,1,0,1]],[[1,2,2,0],[1,4,2,2],[1,3,2,1],[1,1,0,1]],[[1,2,3,0],[1,3,2,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,0],[1,3,2,2],[1,3,2,1],[1,1,0,1]],[[2,2,2,0],[1,3,2,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,0],[1,3,2,2],[1,4,2,1],[1,0,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,2,1],[1,0,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,2,1],[1,0,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,0],[1,3,2,2],[1,4,2,1],[1,0,1,1]],[[1,2,2,0],[1,4,2,2],[1,3,2,1],[1,0,1,1]],[[1,2,3,0],[1,3,2,2],[1,3,2,1],[1,0,1,1]],[[1,3,2,0],[1,3,2,2],[1,3,2,1],[1,0,1,1]],[[2,2,2,0],[1,3,2,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,0],[1,3,2,2],[1,3,2,1],[0,3,1,0]],[[1,2,2,0],[1,3,2,2],[1,4,2,1],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[1,3,2,1],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[1,3,2,1],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,0],[1,3,2,2],[1,3,2,1],[0,3,0,1]],[[1,2,2,0],[1,3,2,2],[1,4,2,1],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[1,3,2,1],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[1,3,2,1],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,0],[1,3,2,2],[1,4,2,1],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,2,1],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,2,1],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,0],[1,3,2,2],[1,4,2,1],[0,1,1,1]],[[1,2,2,0],[1,4,2,2],[1,3,2,1],[0,1,1,1]],[[1,2,3,0],[1,3,2,2],[1,3,2,1],[0,1,1,1]],[[1,3,2,0],[1,3,2,2],[1,3,2,1],[0,1,1,1]],[[2,2,2,0],[1,3,2,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,0],[1,3,2,2],[1,4,2,0],[1,2,0,1]],[[1,2,2,0],[1,4,2,2],[1,3,2,0],[1,2,0,1]],[[1,2,3,0],[1,3,2,2],[1,3,2,0],[1,2,0,1]],[[1,3,2,0],[1,3,2,2],[1,3,2,0],[1,2,0,1]],[[2,2,2,0],[1,3,2,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,0],[1,3,2,2],[1,4,2,0],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[1,3,2,0],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[1,3,2,0],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,0],[1,3,2,2],[1,4,2,0],[1,0,2,1]],[[1,2,2,0],[1,4,2,2],[1,3,2,0],[1,0,2,1]],[[1,2,3,0],[1,3,2,2],[1,3,2,0],[1,0,2,1]],[[1,3,2,0],[1,3,2,2],[1,3,2,0],[1,0,2,1]],[[2,2,2,0],[1,3,2,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,0],[1,3,2,2],[1,3,2,0],[0,3,1,1]],[[1,2,2,0],[1,3,2,2],[1,4,2,0],[0,2,1,1]],[[1,2,2,0],[1,4,2,2],[1,3,2,0],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[1,3,2,0],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[1,3,2,0],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,0],[1,3,2,2],[1,4,2,0],[0,1,2,1]],[[1,2,2,0],[1,4,2,2],[1,3,2,0],[0,1,2,1]],[[1,2,3,0],[1,3,2,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,0],[1,3,2,2],[1,3,2,0],[0,1,2,1]],[[2,2,2,0],[1,3,2,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,0],[1,3,2,2],[1,4,1,2],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[1,3,1,2],[1,2,0,0]],[[1,2,3,0],[1,3,2,2],[1,3,1,2],[1,2,0,0]],[[1,3,2,0],[1,3,2,2],[1,3,1,2],[1,2,0,0]],[[2,2,2,0],[1,3,2,2],[1,3,1,2],[1,2,0,0]],[[0,3,2,1],[2,3,2,2],[2,1,3,0],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[2,1,3,0],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[2,1,3,0],[0,1,1,1]],[[0,2,2,1],[3,3,2,2],[2,1,3,0],[0,1,1,1]],[[0,2,2,1],[2,4,2,2],[2,1,3,0],[0,1,1,1]],[[0,3,2,1],[2,3,2,2],[2,1,3,0],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[2,1,3,0],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[2,1,3,0],[0,1,2,0]],[[0,2,2,1],[3,3,2,2],[2,1,3,0],[0,1,2,0]],[[0,2,2,1],[2,4,2,2],[2,1,3,0],[0,1,2,0]],[[0,2,2,1],[2,3,2,2],[3,1,3,0],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[2,1,3,0],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[2,1,3,0],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[2,1,3,0],[0,2,0,1]],[[0,2,2,1],[3,3,2,2],[2,1,3,0],[0,2,0,1]],[[0,2,2,1],[2,4,2,2],[2,1,3,0],[0,2,0,1]],[[0,2,2,1],[2,3,2,2],[3,1,3,0],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[2,1,3,0],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[2,1,3,0],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[2,1,3,0],[0,2,1,0]],[[0,2,2,1],[3,3,2,2],[2,1,3,0],[0,2,1,0]],[[0,2,2,1],[2,4,2,2],[2,1,3,0],[0,2,1,0]],[[0,2,2,1],[2,3,2,2],[3,1,3,0],[0,2,1,0]],[[0,3,2,1],[2,3,2,2],[2,1,3,0],[1,0,1,1]],[[0,2,3,1],[2,3,2,2],[2,1,3,0],[1,0,1,1]],[[0,2,2,2],[2,3,2,2],[2,1,3,0],[1,0,1,1]],[[0,2,2,1],[3,3,2,2],[2,1,3,0],[1,0,1,1]],[[0,2,2,1],[2,4,2,2],[2,1,3,0],[1,0,1,1]],[[0,2,2,1],[2,3,2,2],[3,1,3,0],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[2,1,3,0],[1,0,2,0]],[[0,2,3,1],[2,3,2,2],[2,1,3,0],[1,0,2,0]],[[0,2,2,2],[2,3,2,2],[2,1,3,0],[1,0,2,0]],[[0,2,2,1],[3,3,2,2],[2,1,3,0],[1,0,2,0]],[[0,2,2,1],[2,4,2,2],[2,1,3,0],[1,0,2,0]],[[0,2,2,1],[2,3,2,2],[3,1,3,0],[1,0,2,0]],[[0,2,2,1],[2,3,2,2],[2,1,3,0],[2,0,2,0]],[[0,3,2,1],[2,3,2,2],[2,1,3,0],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[2,1,3,0],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[2,1,3,0],[1,1,0,1]],[[0,2,2,1],[3,3,2,2],[2,1,3,0],[1,1,0,1]],[[0,2,2,1],[2,4,2,2],[2,1,3,0],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[3,1,3,0],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[2,1,3,0],[2,1,0,1]],[[0,3,2,1],[2,3,2,2],[2,1,3,0],[1,1,1,0]],[[0,2,3,1],[2,3,2,2],[2,1,3,0],[1,1,1,0]],[[0,2,2,2],[2,3,2,2],[2,1,3,0],[1,1,1,0]],[[0,2,2,1],[3,3,2,2],[2,1,3,0],[1,1,1,0]],[[0,2,2,1],[2,4,2,2],[2,1,3,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,2],[3,1,3,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,2],[2,1,3,0],[2,1,1,0]],[[1,2,2,0],[1,3,2,2],[1,4,1,2],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[1,3,1,2],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[1,3,1,2],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,0],[1,3,2,2],[1,4,1,2],[1,1,0,1]],[[1,2,2,0],[1,4,2,2],[1,3,1,2],[1,1,0,1]],[[1,2,3,0],[1,3,2,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,0],[1,3,2,2],[1,3,1,2],[1,1,0,1]],[[2,2,2,0],[1,3,2,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,0],[1,3,2,2],[1,4,1,2],[1,0,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,1,2],[1,0,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,1,2],[1,0,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,1,2],[1,0,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,0],[1,3,2,2],[1,4,1,2],[1,0,1,1]],[[1,2,2,0],[1,4,2,2],[1,3,1,2],[1,0,1,1]],[[1,2,3,0],[1,3,2,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,0],[1,3,2,2],[1,3,1,2],[1,0,1,1]],[[2,2,2,0],[1,3,2,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,0],[1,3,2,2],[1,3,1,2],[0,3,1,0]],[[1,2,2,0],[1,3,2,2],[1,4,1,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[1,3,1,2],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[1,3,1,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,0],[1,3,2,2],[1,3,1,2],[0,3,0,1]],[[1,2,2,0],[1,3,2,2],[1,4,1,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[1,3,1,2],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[1,3,1,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,0],[1,3,2,2],[1,4,1,2],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,1,2],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,1,2],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,0],[1,3,2,2],[1,4,1,2],[0,1,1,1]],[[1,2,2,0],[1,4,2,2],[1,3,1,2],[0,1,1,1]],[[1,2,3,0],[1,3,2,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,0],[1,3,2,2],[1,3,1,2],[0,1,1,1]],[[2,2,2,0],[1,3,2,2],[1,3,1,2],[0,1,1,1]],[[1,2,2,0],[1,3,2,2],[1,4,1,1],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,1,1],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,1,1],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,1,1],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,0],[1,3,2,2],[1,3,1,1],[0,2,3,0]],[[1,2,2,0],[1,3,2,2],[1,3,1,1],[0,3,2,0]],[[1,2,2,0],[1,3,2,2],[1,4,1,1],[0,2,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,1,1],[0,2,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,1,1],[0,2,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,0],[1,3,2,2],[1,4,1,0],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[1,3,1,0],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[1,3,1,0],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[1,3,1,0],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,0],[1,3,2,2],[1,3,1,0],[0,2,2,2]],[[1,2,2,0],[1,3,2,2],[1,3,1,0],[0,2,3,1]],[[1,2,2,0],[1,3,2,2],[1,3,1,0],[0,3,2,1]],[[1,2,2,0],[1,3,2,2],[1,4,1,0],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[1,3,1,0],[0,2,2,1]],[[1,2,3,0],[1,3,2,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,0],[1,3,2,2],[1,3,1,0],[0,2,2,1]],[[2,2,2,0],[1,3,2,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,0],[1,3,2,2],[1,4,0,2],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,0,2],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,0,2],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,0,2],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,0],[1,3,2,2],[1,4,0,2],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[1,3,0,2],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[1,3,0,2],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[1,3,0,2],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,0],[1,3,2,2],[1,4,0,2],[1,0,2,1]],[[1,2,2,0],[1,4,2,2],[1,3,0,2],[1,0,2,1]],[[1,2,3,0],[1,3,2,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,0],[1,3,2,2],[1,3,0,2],[1,0,2,1]],[[2,2,2,0],[1,3,2,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,0],[1,3,2,2],[1,3,0,2],[0,2,3,0]],[[1,2,2,0],[1,3,2,2],[1,3,0,2],[0,3,2,0]],[[1,2,2,0],[1,3,2,2],[1,4,0,2],[0,2,2,0]],[[1,2,2,0],[1,4,2,2],[1,3,0,2],[0,2,2,0]],[[1,2,3,0],[1,3,2,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,0],[1,3,2,2],[1,3,0,2],[0,2,2,0]],[[2,2,2,0],[1,3,2,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,0],[1,3,2,2],[1,3,0,2],[0,3,1,1]],[[1,2,2,0],[1,3,2,2],[1,4,0,2],[0,2,1,1]],[[1,2,2,0],[1,4,2,2],[1,3,0,2],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[1,3,0,2],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,0],[1,3,2,2],[1,4,0,2],[0,1,2,1]],[[1,2,2,0],[1,4,2,2],[1,3,0,2],[0,1,2,1]],[[1,2,3,0],[1,3,2,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,0],[1,3,2,2],[1,3,0,2],[0,1,2,1]],[[2,2,2,0],[1,3,2,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,0],[1,3,2,2],[1,4,0,1],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[1,3,0,1],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[1,3,0,1],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[1,3,0,1],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,0],[1,3,2,2],[1,3,0,1],[0,2,2,2]],[[1,2,2,0],[1,3,2,2],[1,3,0,1],[0,2,3,1]],[[1,2,2,0],[1,3,2,2],[1,3,0,1],[0,3,2,1]],[[1,2,2,0],[1,3,2,2],[1,4,0,1],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[1,3,0,1],[0,2,2,1]],[[1,2,3,0],[1,3,2,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,0],[1,3,2,2],[1,3,0,1],[0,2,2,1]],[[2,2,2,0],[1,3,2,2],[1,3,0,1],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,0],[1,3,2,2],[1,2,3,2],[1,0,0,1]],[[1,3,2,0],[1,3,2,2],[1,2,3,2],[1,0,0,1]],[[2,2,2,0],[1,3,2,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,0],[1,4,2,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,0],[1,3,2,2],[1,2,3,2],[0,1,0,1]],[[1,3,2,0],[1,3,2,2],[1,2,3,2],[0,1,0,1]],[[2,2,2,0],[1,3,2,2],[1,2,3,2],[0,1,0,1]],[[1,2,2,0],[1,4,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[1,2,3,1],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[1,2,3,1],[1,1,1,0]],[[2,2,2,0],[1,3,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,0],[1,3,2,2],[1,2,3,1],[1,1,0,1]],[[1,3,2,0],[1,3,2,2],[1,2,3,1],[1,1,0,1]],[[2,2,2,0],[1,3,2,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,0],[1,4,2,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,0],[1,3,2,2],[1,2,3,1],[1,0,2,0]],[[1,3,2,0],[1,3,2,2],[1,2,3,1],[1,0,2,0]],[[2,2,2,0],[1,3,2,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,0],[1,4,2,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,0],[1,3,2,2],[1,2,3,1],[1,0,1,1]],[[1,3,2,0],[1,3,2,2],[1,2,3,1],[1,0,1,1]],[[2,2,2,0],[1,3,2,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,0],[1,4,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[1,2,3,1],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[1,2,3,1],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[1,2,3,1],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[1,2,3,1],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[1,2,3,1],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[1,2,3,1],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,0],[1,3,2,2],[1,2,3,1],[0,1,1,1]],[[1,3,2,0],[1,3,2,2],[1,2,3,1],[0,1,1,1]],[[2,2,2,0],[1,3,2,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,0],[1,4,2,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,0],[1,3,2,2],[1,2,3,1],[0,0,2,1]],[[1,3,2,0],[1,3,2,2],[1,2,3,1],[0,0,2,1]],[[2,2,2,0],[1,3,2,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,0],[1,4,2,2],[1,2,3,0],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[1,2,3,0],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[1,2,3,0],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,0],[1,3,2,2],[1,2,3,0],[1,0,2,1]],[[1,3,2,0],[1,3,2,2],[1,2,3,0],[1,0,2,1]],[[2,2,2,0],[1,3,2,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,0],[1,4,2,2],[1,2,3,0],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[1,2,3,0],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[1,2,3,0],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,0],[1,4,2,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,0],[1,3,2,2],[1,2,3,0],[0,1,2,1]],[[1,3,2,0],[1,3,2,2],[1,2,3,0],[0,1,2,1]],[[2,2,2,0],[1,3,2,2],[1,2,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,2,2],[2,2,0,0],[1,2,2,0]],[[0,2,3,1],[2,3,2,2],[2,2,0,0],[1,2,2,0]],[[0,2,2,2],[2,3,2,2],[2,2,0,0],[1,2,2,0]],[[0,2,2,1],[3,3,2,2],[2,2,0,0],[1,2,2,0]],[[0,2,2,1],[2,4,2,2],[2,2,0,0],[1,2,2,0]],[[0,2,2,1],[2,3,2,2],[3,2,0,0],[1,2,2,0]],[[0,2,2,1],[2,3,2,2],[2,2,0,0],[2,2,2,0]],[[0,2,2,1],[2,3,2,2],[2,2,0,0],[1,3,2,0]],[[1,2,2,0],[1,4,2,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,0],[1,3,2,2],[1,2,2,2],[1,1,1,0]],[[1,3,2,0],[1,3,2,2],[1,2,2,2],[1,1,1,0]],[[0,3,2,1],[2,3,2,2],[2,2,0,2],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[2,2,0,2],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[2,2,0,2],[0,1,1,1]],[[0,2,2,1],[3,3,2,2],[2,2,0,2],[0,1,1,1]],[[0,2,2,1],[2,4,2,2],[2,2,0,2],[0,1,1,1]],[[0,2,2,1],[2,3,2,3],[2,2,0,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,2],[2,2,0,2],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[2,2,0,2],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[2,2,0,2],[0,1,2,0]],[[0,2,2,1],[3,3,2,2],[2,2,0,2],[0,1,2,0]],[[0,2,2,1],[2,4,2,2],[2,2,0,2],[0,1,2,0]],[[0,2,2,1],[2,3,2,3],[2,2,0,2],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[2,2,0,2],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[2,2,0,2],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[2,2,0,2],[0,2,0,1]],[[0,2,2,1],[3,3,2,2],[2,2,0,2],[0,2,0,1]],[[0,2,2,1],[2,4,2,2],[2,2,0,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,3],[2,2,0,2],[0,2,0,1]],[[0,2,2,1],[2,3,2,2],[3,2,0,2],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[2,2,0,2],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[2,2,0,2],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[2,2,0,2],[0,2,1,0]],[[0,2,2,1],[3,3,2,2],[2,2,0,2],[0,2,1,0]],[[0,2,2,1],[2,4,2,2],[2,2,0,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,3],[2,2,0,2],[0,2,1,0]],[[0,2,2,1],[2,3,2,2],[3,2,0,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,0],[1,4,2,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,0],[1,3,2,2],[1,2,2,2],[1,1,0,1]],[[1,3,2,0],[1,3,2,2],[1,2,2,2],[1,1,0,1]],[[2,2,2,0],[1,3,2,2],[1,2,2,2],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[2,2,0,2],[1,0,1,1]],[[0,2,3,1],[2,3,2,2],[2,2,0,2],[1,0,1,1]],[[0,2,2,2],[2,3,2,2],[2,2,0,2],[1,0,1,1]],[[0,2,2,1],[3,3,2,2],[2,2,0,2],[1,0,1,1]],[[0,2,2,1],[2,4,2,2],[2,2,0,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,3],[2,2,0,2],[1,0,1,1]],[[0,2,2,1],[2,3,2,2],[3,2,0,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[2,2,0,2],[1,0,2,0]],[[0,2,3,1],[2,3,2,2],[2,2,0,2],[1,0,2,0]],[[0,2,2,2],[2,3,2,2],[2,2,0,2],[1,0,2,0]],[[0,2,2,1],[3,3,2,2],[2,2,0,2],[1,0,2,0]],[[0,2,2,1],[2,4,2,2],[2,2,0,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,3],[2,2,0,2],[1,0,2,0]],[[0,2,2,1],[2,3,2,2],[3,2,0,2],[1,0,2,0]],[[0,3,2,1],[2,3,2,2],[2,2,0,2],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[2,2,0,2],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[2,2,0,2],[1,1,0,1]],[[0,2,2,1],[3,3,2,2],[2,2,0,2],[1,1,0,1]],[[0,2,2,1],[2,4,2,2],[2,2,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,3],[2,2,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[3,2,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[2,2,0,2],[2,1,0,1]],[[0,3,2,1],[2,3,2,2],[2,2,0,2],[1,1,1,0]],[[0,2,3,1],[2,3,2,2],[2,2,0,2],[1,1,1,0]],[[0,2,2,2],[2,3,2,2],[2,2,0,2],[1,1,1,0]],[[0,2,2,1],[3,3,2,2],[2,2,0,2],[1,1,1,0]],[[0,2,2,1],[2,4,2,2],[2,2,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,3],[2,2,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,2],[3,2,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,2,2],[2,2,0,2],[2,1,1,0]],[[1,2,2,0],[1,4,2,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,0],[1,3,2,2],[1,2,2,2],[1,0,2,0]],[[1,3,2,0],[1,3,2,2],[1,2,2,2],[1,0,2,0]],[[2,2,2,0],[1,3,2,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,0],[1,4,2,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,0],[1,3,2,2],[1,2,2,2],[1,0,1,1]],[[1,3,2,0],[1,3,2,2],[1,2,2,2],[1,0,1,1]],[[2,2,2,0],[1,3,2,2],[1,2,2,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[2,2,0,2],[1,2,0,0]],[[0,2,3,1],[2,3,2,2],[2,2,0,2],[1,2,0,0]],[[0,2,2,2],[2,3,2,2],[2,2,0,2],[1,2,0,0]],[[0,2,2,1],[3,3,2,2],[2,2,0,2],[1,2,0,0]],[[0,2,2,1],[2,4,2,2],[2,2,0,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,3],[2,2,0,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,2],[3,2,0,2],[1,2,0,0]],[[0,2,2,1],[2,3,2,2],[2,2,0,2],[2,2,0,0]],[[1,2,2,0],[1,4,2,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[1,2,2,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[1,2,2,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[1,2,2,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[1,2,2,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[1,2,2,2],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[1,2,2,2],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,0],[1,3,2,2],[1,2,2,2],[0,1,1,1]],[[1,3,2,0],[1,3,2,2],[1,2,2,2],[0,1,1,1]],[[2,2,2,0],[1,3,2,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,0],[1,4,2,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,0],[1,3,2,2],[1,2,2,2],[0,0,2,1]],[[1,3,2,0],[1,3,2,2],[1,2,2,2],[0,0,2,1]],[[0,3,2,1],[2,3,2,2],[2,2,1,0],[0,2,2,0]],[[0,2,3,1],[2,3,2,2],[2,2,1,0],[0,2,2,0]],[[0,2,2,2],[2,3,2,2],[2,2,1,0],[0,2,2,0]],[[0,2,2,1],[3,3,2,2],[2,2,1,0],[0,2,2,0]],[[0,2,2,1],[2,4,2,2],[2,2,1,0],[0,2,2,0]],[[0,2,2,1],[2,3,2,2],[3,2,1,0],[0,2,2,0]],[[0,3,2,1],[2,3,2,2],[2,2,1,0],[1,1,2,0]],[[0,2,3,1],[2,3,2,2],[2,2,1,0],[1,1,2,0]],[[0,2,2,2],[2,3,2,2],[2,2,1,0],[1,1,2,0]],[[0,2,2,1],[3,3,2,2],[2,2,1,0],[1,1,2,0]],[[0,2,2,1],[2,4,2,2],[2,2,1,0],[1,1,2,0]],[[0,2,2,1],[2,3,2,2],[3,2,1,0],[1,1,2,0]],[[0,2,2,1],[2,3,2,2],[2,2,1,0],[2,1,2,0]],[[2,2,2,0],[1,3,2,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,0],[1,4,2,2],[1,2,1,2],[1,0,2,1]],[[1,2,3,0],[1,3,2,2],[1,2,1,2],[1,0,2,1]],[[1,3,2,0],[1,3,2,2],[1,2,1,2],[1,0,2,1]],[[2,2,2,0],[1,3,2,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,0],[1,4,2,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,0],[1,3,2,2],[1,2,1,2],[0,1,2,1]],[[1,3,2,0],[1,3,2,2],[1,2,1,2],[0,1,2,1]],[[2,2,2,0],[1,3,2,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,0],[1,4,2,2],[1,2,0,2],[0,2,2,1]],[[1,2,3,0],[1,3,2,2],[1,2,0,2],[0,2,2,1]],[[1,3,2,0],[1,3,2,2],[1,2,0,2],[0,2,2,1]],[[2,2,2,0],[1,3,2,2],[1,2,0,2],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,0],[1,3,2,2],[1,1,3,1],[0,2,2,0]],[[1,3,2,0],[1,3,2,2],[1,1,3,1],[0,2,2,0]],[[2,2,2,0],[1,3,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[1,4,2,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[1,1,3,1],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[1,1,3,1],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,0],[1,4,2,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,0],[1,3,2,2],[1,1,3,0],[0,2,2,1]],[[1,3,2,0],[1,3,2,2],[1,1,3,0],[0,2,2,1]],[[2,2,2,0],[1,3,2,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,0],[1,3,2,2],[1,1,2,2],[0,2,2,0]],[[1,3,2,0],[1,3,2,2],[1,1,2,2],[0,2,2,0]],[[2,2,2,0],[1,3,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,0],[1,4,2,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[1,1,2,2],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[1,1,2,2],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,0],[1,4,2,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,0],[1,3,2,2],[1,1,1,2],[0,2,2,1]],[[1,3,2,0],[1,3,2,2],[1,1,1,2],[0,2,2,1]],[[2,2,2,0],[1,3,2,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,0],[1,4,2,2],[1,1,0,2],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[1,1,0,2],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[1,1,0,2],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[1,1,0,2],[1,2,2,1]],[[1,2,2,0],[1,4,2,2],[1,0,3,1],[1,2,2,0]],[[1,2,3,0],[1,3,2,2],[1,0,3,1],[1,2,2,0]],[[1,3,2,0],[1,3,2,2],[1,0,3,1],[1,2,2,0]],[[2,2,2,0],[1,3,2,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[1,0,3,1],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[1,0,3,1],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[1,0,3,1],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[1,0,3,0],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[1,0,3,0],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[1,0,3,0],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,0],[1,4,2,2],[1,0,2,2],[1,2,2,0]],[[1,2,3,0],[1,3,2,2],[1,0,2,2],[1,2,2,0]],[[1,3,2,0],[1,3,2,2],[1,0,2,2],[1,2,2,0]],[[2,2,2,0],[1,3,2,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[1,0,2,2],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[1,0,2,2],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[1,0,2,2],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[1,0,1,2],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[1,0,1,2],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[1,0,1,2],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[1,0,1,2],[1,2,2,1]],[[0,3,2,1],[2,3,2,2],[2,2,2,0],[0,1,1,1]],[[0,2,3,1],[2,3,2,2],[2,2,2,0],[0,1,1,1]],[[0,2,2,2],[2,3,2,2],[2,2,2,0],[0,1,1,1]],[[0,2,2,1],[3,3,2,2],[2,2,2,0],[0,1,1,1]],[[0,2,2,1],[2,4,2,2],[2,2,2,0],[0,1,1,1]],[[0,3,2,1],[2,3,2,2],[2,2,2,0],[0,1,2,0]],[[0,2,3,1],[2,3,2,2],[2,2,2,0],[0,1,2,0]],[[0,2,2,2],[2,3,2,2],[2,2,2,0],[0,1,2,0]],[[0,2,2,1],[3,3,2,2],[2,2,2,0],[0,1,2,0]],[[0,2,2,1],[2,4,2,2],[2,2,2,0],[0,1,2,0]],[[0,2,2,1],[2,3,2,2],[3,2,2,0],[0,1,2,0]],[[0,3,2,1],[2,3,2,2],[2,2,2,0],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[2,2,2,0],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[2,2,2,0],[0,2,0,1]],[[0,2,2,1],[3,3,2,2],[2,2,2,0],[0,2,0,1]],[[0,2,2,1],[2,4,2,2],[2,2,2,0],[0,2,0,1]],[[0,2,2,1],[2,3,2,2],[3,2,2,0],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[2,2,2,0],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[2,2,2,0],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[2,2,2,0],[0,2,1,0]],[[0,2,2,1],[3,3,2,2],[2,2,2,0],[0,2,1,0]],[[0,2,2,1],[2,4,2,2],[2,2,2,0],[0,2,1,0]],[[0,2,2,1],[2,3,2,2],[3,2,2,0],[0,2,1,0]],[[0,3,2,1],[2,3,2,2],[2,2,2,0],[1,0,1,1]],[[0,2,3,1],[2,3,2,2],[2,2,2,0],[1,0,1,1]],[[0,2,2,2],[2,3,2,2],[2,2,2,0],[1,0,1,1]],[[0,2,2,1],[3,3,2,2],[2,2,2,0],[1,0,1,1]],[[0,2,2,1],[2,4,2,2],[2,2,2,0],[1,0,1,1]],[[0,2,2,1],[2,3,2,2],[3,2,2,0],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[2,2,2,0],[1,0,2,0]],[[0,2,3,1],[2,3,2,2],[2,2,2,0],[1,0,2,0]],[[0,2,2,2],[2,3,2,2],[2,2,2,0],[1,0,2,0]],[[0,2,2,1],[3,3,2,2],[2,2,2,0],[1,0,2,0]],[[0,2,2,1],[2,4,2,2],[2,2,2,0],[1,0,2,0]],[[0,2,2,1],[2,3,2,2],[3,2,2,0],[1,0,2,0]],[[0,2,2,1],[2,3,2,2],[2,2,2,0],[2,0,2,0]],[[0,3,2,1],[2,3,2,2],[2,2,2,0],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[2,2,2,0],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[2,2,2,0],[1,1,0,1]],[[0,2,2,1],[3,3,2,2],[2,2,2,0],[1,1,0,1]],[[0,2,2,1],[2,4,2,2],[2,2,2,0],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[3,2,2,0],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[2,2,2,0],[2,1,0,1]],[[0,3,2,1],[2,3,2,2],[2,2,2,0],[1,1,1,0]],[[0,2,3,1],[2,3,2,2],[2,2,2,0],[1,1,1,0]],[[0,2,2,2],[2,3,2,2],[2,2,2,0],[1,1,1,0]],[[0,2,2,1],[3,3,2,2],[2,2,2,0],[1,1,1,0]],[[0,2,2,1],[2,4,2,2],[2,2,2,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,2],[3,2,2,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,2],[2,2,2,0],[2,1,1,0]],[[0,3,2,1],[2,3,2,2],[2,2,2,0],[1,2,0,0]],[[0,2,3,1],[2,3,2,2],[2,2,2,0],[1,2,0,0]],[[0,2,2,2],[2,3,2,2],[2,2,2,0],[1,2,0,0]],[[0,2,2,1],[3,3,2,2],[2,2,2,0],[1,2,0,0]],[[0,2,2,1],[2,4,2,2],[2,2,2,0],[1,2,0,0]],[[0,2,2,1],[2,3,2,2],[3,2,2,0],[1,2,0,0]],[[0,2,2,1],[2,3,2,2],[2,2,2,0],[2,2,0,0]],[[1,2,2,0],[1,4,2,2],[0,3,3,2],[0,1,0,1]],[[1,2,3,0],[1,3,2,2],[0,3,3,2],[0,1,0,1]],[[1,3,2,0],[1,3,2,2],[0,3,3,2],[0,1,0,1]],[[2,2,2,0],[1,3,2,2],[0,3,3,2],[0,1,0,1]],[[1,2,2,0],[1,3,2,2],[0,4,3,1],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[0,3,3,1],[1,2,0,0]],[[1,2,3,0],[1,3,2,2],[0,3,3,1],[1,2,0,0]],[[1,3,2,0],[1,3,2,2],[0,3,3,1],[1,2,0,0]],[[2,2,2,0],[1,3,2,2],[0,3,3,1],[1,2,0,0]],[[1,2,2,0],[1,4,2,2],[0,3,3,1],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[0,3,3,1],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[0,3,3,1],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[0,3,3,1],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[0,3,3,1],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[0,3,3,1],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[0,3,3,1],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[0,3,3,1],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[0,3,3,1],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[0,3,3,1],[0,1,1,1]],[[1,2,3,0],[1,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,3,2,0],[1,3,2,2],[0,3,3,1],[0,1,1,1]],[[2,2,2,0],[1,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,2,2,0],[1,4,2,2],[0,3,3,1],[0,0,2,1]],[[1,2,3,0],[1,3,2,2],[0,3,3,1],[0,0,2,1]],[[1,3,2,0],[1,3,2,2],[0,3,3,1],[0,0,2,1]],[[2,2,2,0],[1,3,2,2],[0,3,3,1],[0,0,2,1]],[[1,2,2,0],[1,3,2,2],[0,3,3,0],[1,3,1,0]],[[1,2,2,0],[1,3,2,2],[0,3,3,0],[2,2,1,0]],[[1,2,2,0],[1,3,2,2],[0,4,3,0],[1,2,1,0]],[[1,2,2,0],[1,4,2,2],[0,3,3,0],[1,2,1,0]],[[1,2,3,0],[1,3,2,2],[0,3,3,0],[1,2,1,0]],[[1,3,2,0],[1,3,2,2],[0,3,3,0],[1,2,1,0]],[[2,2,2,0],[1,3,2,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,0],[1,3,2,2],[0,4,3,0],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[0,3,3,0],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[0,3,3,0],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[0,3,3,0],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[0,3,3,0],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[0,3,3,0],[0,2,1,1]],[[1,2,3,0],[1,3,2,2],[0,3,3,0],[0,2,1,1]],[[1,3,2,0],[1,3,2,2],[0,3,3,0],[0,2,1,1]],[[2,2,2,0],[1,3,2,2],[0,3,3,0],[0,2,1,1]],[[1,2,2,0],[1,4,2,2],[0,3,3,0],[0,1,2,1]],[[1,2,3,0],[1,3,2,2],[0,3,3,0],[0,1,2,1]],[[1,3,2,0],[1,3,2,2],[0,3,3,0],[0,1,2,1]],[[2,2,2,0],[1,3,2,2],[0,3,3,0],[0,1,2,1]],[[1,2,2,0],[1,4,2,2],[0,3,2,2],[0,2,1,0]],[[1,2,3,0],[1,3,2,2],[0,3,2,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,2],[0,3,2,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,2],[0,3,2,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,2],[0,3,2,2],[0,2,0,1]],[[1,2,3,0],[1,3,2,2],[0,3,2,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,2],[0,3,2,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,2],[0,3,2,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,2],[0,3,2,2],[0,1,2,0]],[[1,2,3,0],[1,3,2,2],[0,3,2,2],[0,1,2,0]],[[1,3,2,0],[1,3,2,2],[0,3,2,2],[0,1,2,0]],[[2,2,2,0],[1,3,2,2],[0,3,2,2],[0,1,2,0]],[[1,2,2,0],[1,4,2,2],[0,3,2,2],[0,1,1,1]],[[1,2,3,0],[1,3,2,2],[0,3,2,2],[0,1,1,1]],[[1,3,2,0],[1,3,2,2],[0,3,2,2],[0,1,1,1]],[[2,2,2,0],[1,3,2,2],[0,3,2,2],[0,1,1,1]],[[1,2,2,0],[1,4,2,2],[0,3,2,2],[0,0,2,1]],[[1,2,3,0],[1,3,2,2],[0,3,2,2],[0,0,2,1]],[[1,3,2,0],[1,3,2,2],[0,3,2,2],[0,0,2,1]],[[2,2,2,0],[1,3,2,2],[0,3,2,2],[0,0,2,1]],[[1,2,2,0],[1,3,2,2],[0,3,2,1],[1,3,1,0]],[[1,2,2,0],[1,3,2,2],[0,3,2,1],[2,2,1,0]],[[1,2,2,0],[1,3,2,2],[0,4,2,1],[1,2,1,0]],[[1,2,2,0],[1,4,2,2],[0,3,2,1],[1,2,1,0]],[[1,2,3,0],[1,3,2,2],[0,3,2,1],[1,2,1,0]],[[1,3,2,0],[1,3,2,2],[0,3,2,1],[1,2,1,0]],[[2,2,2,0],[1,3,2,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,0],[1,3,2,2],[0,3,2,1],[1,3,0,1]],[[1,2,2,0],[1,3,2,2],[0,3,2,1],[2,2,0,1]],[[1,2,2,0],[1,3,2,2],[0,4,2,1],[1,2,0,1]],[[1,2,2,0],[1,4,2,2],[0,3,2,1],[1,2,0,1]],[[1,2,3,0],[1,3,2,2],[0,3,2,1],[1,2,0,1]],[[1,3,2,0],[1,3,2,2],[0,3,2,1],[1,2,0,1]],[[2,2,2,0],[1,3,2,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,0],[1,3,2,2],[0,4,2,1],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[0,3,2,1],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[0,3,2,1],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[0,3,2,1],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,0],[1,3,2,2],[0,4,2,1],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[0,3,2,1],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[0,3,2,1],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[0,3,2,1],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,0],[1,3,2,2],[0,3,2,0],[1,3,1,1]],[[1,2,2,0],[1,3,2,2],[0,3,2,0],[2,2,1,1]],[[1,2,2,0],[1,3,2,2],[0,4,2,0],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[0,3,2,0],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[0,3,2,0],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[0,3,2,0],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,0],[1,3,2,2],[0,4,2,0],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[0,3,2,0],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[0,3,2,0],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[0,3,2,0],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[0,3,2,0],[1,1,2,1]],[[1,2,2,0],[1,3,2,2],[0,3,1,2],[1,3,1,0]],[[1,2,2,0],[1,3,2,2],[0,3,1,2],[2,2,1,0]],[[1,2,2,0],[1,3,2,2],[0,4,1,2],[1,2,1,0]],[[1,2,2,0],[1,4,2,2],[0,3,1,2],[1,2,1,0]],[[1,2,3,0],[1,3,2,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,0],[1,3,2,2],[0,3,1,2],[1,2,1,0]],[[2,2,2,0],[1,3,2,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,0],[1,3,2,2],[0,3,1,2],[1,3,0,1]],[[1,2,2,0],[1,3,2,2],[0,3,1,2],[2,2,0,1]],[[1,2,2,0],[1,3,2,2],[0,4,1,2],[1,2,0,1]],[[1,2,2,0],[1,4,2,2],[0,3,1,2],[1,2,0,1]],[[1,2,3,0],[1,3,2,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,0],[1,3,2,2],[0,3,1,2],[1,2,0,1]],[[2,2,2,0],[1,3,2,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,0],[1,3,2,2],[0,4,1,2],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[0,3,1,2],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[0,3,1,2],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[0,3,1,2],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,0],[1,3,2,2],[0,4,1,2],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[0,3,1,2],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[0,3,1,2],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[0,3,1,2],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[0,3,1,2],[0,1,2,1]],[[1,2,3,0],[1,3,2,2],[0,3,1,2],[0,1,2,1]],[[1,3,2,0],[1,3,2,2],[0,3,1,2],[0,1,2,1]],[[2,2,2,0],[1,3,2,2],[0,3,1,2],[0,1,2,1]],[[1,2,2,0],[1,3,2,2],[0,3,1,1],[1,2,3,0]],[[1,2,2,0],[1,3,2,2],[0,3,1,1],[1,3,2,0]],[[1,2,2,0],[1,3,2,2],[0,3,1,1],[2,2,2,0]],[[1,2,2,0],[1,3,2,2],[0,4,1,1],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[0,3,1,1],[1,2,2,0]],[[1,2,3,0],[1,3,2,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,0],[1,3,2,2],[0,3,1,1],[1,2,2,0]],[[2,2,2,0],[1,3,2,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,0],[1,3,2,2],[0,3,1,0],[1,2,2,2]],[[1,2,2,0],[1,3,2,2],[0,3,1,0],[1,2,3,1]],[[1,2,2,0],[1,3,2,2],[0,3,1,0],[1,3,2,1]],[[1,2,2,0],[1,3,2,2],[0,3,1,0],[2,2,2,1]],[[1,2,2,0],[1,3,2,2],[0,4,1,0],[1,2,2,1]],[[1,2,2,0],[1,4,2,2],[0,3,1,0],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[0,3,1,0],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[0,3,1,0],[1,2,2,1]],[[0,3,2,1],[2,3,2,2],[2,2,3,0],[0,2,0,0]],[[0,2,3,1],[2,3,2,2],[2,2,3,0],[0,2,0,0]],[[0,2,2,2],[2,3,2,2],[2,2,3,0],[0,2,0,0]],[[0,2,2,1],[3,3,2,2],[2,2,3,0],[0,2,0,0]],[[0,2,2,1],[2,4,2,2],[2,2,3,0],[0,2,0,0]],[[0,2,2,1],[2,3,2,2],[3,2,3,0],[0,2,0,0]],[[1,2,2,0],[1,3,2,2],[0,3,0,2],[1,2,3,0]],[[1,2,2,0],[1,3,2,2],[0,3,0,2],[1,3,2,0]],[[1,2,2,0],[1,3,2,2],[0,3,0,2],[2,2,2,0]],[[1,2,2,0],[1,3,2,2],[0,4,0,2],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[0,3,0,2],[1,2,2,0]],[[1,2,3,0],[1,3,2,2],[0,3,0,2],[1,2,2,0]],[[1,3,2,0],[1,3,2,2],[0,3,0,2],[1,2,2,0]],[[2,2,2,0],[1,3,2,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,0],[1,3,2,2],[0,3,0,2],[1,3,1,1]],[[1,2,2,0],[1,3,2,2],[0,3,0,2],[2,2,1,1]],[[1,2,2,0],[1,3,2,2],[0,4,0,2],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[0,3,0,2],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[0,3,0,2],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,0],[1,3,2,2],[0,4,0,2],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[0,3,0,2],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[0,3,0,2],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[0,3,0,2],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,0],[1,3,2,2],[0,3,0,1],[1,2,2,2]],[[1,2,2,0],[1,3,2,2],[0,3,0,1],[1,2,3,1]],[[1,2,2,0],[1,3,2,2],[0,3,0,1],[1,3,2,1]],[[1,2,2,0],[1,3,2,2],[0,3,0,1],[2,2,2,1]],[[1,2,2,0],[1,3,2,2],[0,4,0,1],[1,2,2,1]],[[1,2,2,0],[1,4,2,2],[0,3,0,1],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[0,3,0,1],[1,2,2,1]],[[0,3,2,1],[2,3,2,2],[2,2,3,0],[1,1,0,0]],[[0,2,3,1],[2,3,2,2],[2,2,3,0],[1,1,0,0]],[[0,2,2,2],[2,3,2,2],[2,2,3,0],[1,1,0,0]],[[0,2,2,1],[3,3,2,2],[2,2,3,0],[1,1,0,0]],[[0,2,2,1],[2,4,2,2],[2,2,3,0],[1,1,0,0]],[[0,2,2,1],[2,3,2,2],[3,2,3,0],[1,1,0,0]],[[0,2,2,1],[2,3,2,2],[2,2,3,0],[2,1,0,0]],[[1,3,2,0],[1,3,2,2],[0,3,0,1],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,0],[1,4,2,2],[0,2,3,2],[1,1,0,1]],[[1,2,3,0],[1,3,2,2],[0,2,3,2],[1,1,0,1]],[[1,3,2,0],[1,3,2,2],[0,2,3,2],[1,1,0,1]],[[2,2,2,0],[1,3,2,2],[0,2,3,2],[1,1,0,1]],[[1,2,2,0],[1,4,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,0],[1,3,2,2],[0,2,3,1],[1,2,1,0]],[[1,3,2,0],[1,3,2,2],[0,2,3,1],[1,2,1,0]],[[2,2,2,0],[1,3,2,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[1,4,2,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,0],[1,3,2,2],[0,2,3,1],[1,2,0,1]],[[1,3,2,0],[1,3,2,2],[0,2,3,1],[1,2,0,1]],[[2,2,2,0],[1,3,2,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,0],[1,4,2,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[0,2,3,1],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[0,2,3,1],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[0,2,3,1],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[0,2,3,1],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[0,2,3,1],[1,0,2,1]],[[1,2,3,0],[1,3,2,2],[0,2,3,1],[1,0,2,1]],[[1,3,2,0],[1,3,2,2],[0,2,3,1],[1,0,2,1]],[[2,2,2,0],[1,3,2,2],[0,2,3,1],[1,0,2,1]],[[1,2,2,0],[1,4,2,2],[0,2,3,0],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[0,2,3,0],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[0,2,3,0],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[0,2,3,0],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[0,2,3,0],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,0],[1,3,2,2],[0,2,2,2],[1,2,1,0]],[[1,3,2,0],[1,3,2,2],[0,2,2,2],[1,2,1,0]],[[2,2,2,0],[1,3,2,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[1,4,2,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,0],[1,3,2,2],[0,2,2,2],[1,2,0,1]],[[1,3,2,0],[1,3,2,2],[0,2,2,2],[1,2,0,1]],[[2,2,2,0],[1,3,2,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,0],[1,4,2,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,0],[1,3,2,2],[0,2,2,2],[1,1,2,0]],[[1,3,2,0],[1,3,2,2],[0,2,2,2],[1,1,2,0]],[[2,2,2,0],[1,3,2,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,0],[1,4,2,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,0],[1,3,2,2],[0,2,2,2],[1,1,1,1]],[[1,3,2,0],[1,3,2,2],[0,2,2,2],[1,1,1,1]],[[2,2,2,0],[1,3,2,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,0],[1,4,2,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,0],[1,3,2,2],[0,2,2,2],[1,0,2,1]],[[1,3,2,0],[1,3,2,2],[0,2,2,2],[1,0,2,1]],[[2,2,2,0],[1,3,2,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,0],[1,4,2,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,0],[1,3,2,2],[0,2,1,2],[1,1,2,1]],[[1,3,2,0],[1,3,2,2],[0,2,1,2],[1,1,2,1]],[[2,2,2,0],[1,3,2,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,0],[1,4,2,2],[0,2,0,2],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[0,2,0,2],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[0,2,0,2],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,0],[1,4,2,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,0],[1,3,2,2],[0,1,3,1],[1,2,2,0]],[[1,3,2,0],[1,3,2,2],[0,1,3,1],[1,2,2,0]],[[2,2,2,0],[1,3,2,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[0,1,3,1],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[0,1,3,1],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[0,1,3,0],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[0,1,3,0],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,0],[1,4,2,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,0],[1,3,2,2],[0,1,2,2],[1,2,2,0]],[[1,3,2,0],[1,3,2,2],[0,1,2,2],[1,2,2,0]],[[2,2,2,0],[1,3,2,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,0],[1,4,2,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,0],[1,3,2,2],[0,1,2,2],[1,2,1,1]],[[1,3,2,0],[1,3,2,2],[0,1,2,2],[1,2,1,1]],[[2,2,2,0],[1,3,2,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,0],[1,4,2,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,0],[1,3,2,2],[0,1,1,2],[1,2,2,1]],[[1,3,2,0],[1,3,2,2],[0,1,1,2],[1,2,2,1]],[[2,2,2,0],[1,3,2,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,0],[1,4,2,1],[2,3,3,2],[1,0,0,0]],[[1,2,3,0],[1,3,2,1],[2,3,3,2],[1,0,0,0]],[[1,3,2,0],[1,3,2,1],[2,3,3,2],[1,0,0,0]],[[2,2,2,0],[1,3,2,1],[2,3,3,2],[1,0,0,0]],[[1,2,2,0],[1,4,2,1],[2,3,2,2],[1,0,1,0]],[[1,2,3,0],[1,3,2,1],[2,3,2,2],[1,0,1,0]],[[1,3,2,0],[1,3,2,1],[2,3,2,2],[1,0,1,0]],[[2,2,2,0],[1,3,2,1],[2,3,2,2],[1,0,1,0]],[[1,2,2,0],[1,4,2,1],[2,3,2,2],[1,0,0,1]],[[1,2,3,0],[1,3,2,1],[2,3,2,2],[1,0,0,1]],[[1,3,2,0],[1,3,2,1],[2,3,2,2],[1,0,0,1]],[[2,2,2,0],[1,3,2,1],[2,3,2,2],[1,0,0,1]],[[1,2,2,0],[1,4,2,1],[2,3,2,1],[1,0,1,1]],[[1,3,2,0],[1,3,2,1],[2,3,2,1],[1,0,1,1]],[[2,2,2,0],[1,3,2,1],[2,3,2,1],[1,0,1,1]],[[1,2,2,0],[1,4,2,1],[2,3,1,2],[1,2,0,0]],[[1,3,2,0],[1,3,2,1],[2,3,1,2],[1,2,0,0]],[[2,2,2,0],[1,3,2,1],[2,3,1,2],[1,2,0,0]],[[1,2,2,0],[1,4,2,1],[2,3,1,2],[1,1,1,0]],[[1,3,2,0],[1,3,2,1],[2,3,1,2],[1,1,1,0]],[[2,2,2,0],[1,3,2,1],[2,3,1,2],[1,1,1,0]],[[1,2,2,0],[1,4,2,1],[2,3,1,2],[1,1,0,1]],[[1,3,2,0],[1,3,2,1],[2,3,1,2],[1,1,0,1]],[[2,2,2,0],[1,3,2,1],[2,3,1,2],[1,1,0,1]],[[1,2,2,0],[1,4,2,1],[2,3,1,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,1],[2,3,1,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,1],[2,3,1,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,1],[2,3,1,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,1],[2,3,1,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,1],[2,3,1,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,1],[2,3,1,1],[1,2,0,1]],[[1,3,2,0],[1,3,2,1],[2,3,1,1],[1,2,0,1]],[[2,2,2,0],[1,3,2,1],[2,3,1,1],[1,2,0,1]],[[1,2,2,0],[1,4,2,1],[2,3,1,1],[1,1,1,1]],[[1,3,2,0],[1,3,2,1],[2,3,1,1],[1,1,1,1]],[[2,2,2,0],[1,3,2,1],[2,3,1,1],[1,1,1,1]],[[1,2,2,0],[1,4,2,1],[2,3,1,1],[0,2,1,1]],[[1,3,2,0],[1,3,2,1],[2,3,1,1],[0,2,1,1]],[[2,2,2,0],[1,3,2,1],[2,3,1,1],[0,2,1,1]],[[1,2,2,0],[1,4,2,1],[2,3,0,2],[1,2,1,0]],[[1,3,2,0],[1,3,2,1],[2,3,0,2],[1,2,1,0]],[[2,2,2,0],[1,3,2,1],[2,3,0,2],[1,2,1,0]],[[1,2,2,0],[1,4,2,1],[2,3,0,2],[1,1,2,0]],[[1,3,2,0],[1,3,2,1],[2,3,0,2],[1,1,2,0]],[[2,2,2,0],[1,3,2,1],[2,3,0,2],[1,1,2,0]],[[1,2,2,0],[1,4,2,1],[2,3,0,2],[0,2,2,0]],[[1,3,2,0],[1,3,2,1],[2,3,0,2],[0,2,2,0]],[[2,2,2,0],[1,3,2,1],[2,3,0,2],[0,2,2,0]],[[1,2,2,0],[1,4,2,1],[2,3,0,1],[1,2,1,1]],[[1,3,2,0],[1,3,2,1],[2,3,0,1],[1,2,1,1]],[[2,2,2,0],[1,3,2,1],[2,3,0,1],[1,2,1,1]],[[1,2,2,0],[1,4,2,1],[2,3,0,1],[1,1,2,1]],[[1,3,2,0],[1,3,2,1],[2,3,0,1],[1,1,2,1]],[[2,2,2,0],[1,3,2,1],[2,3,0,1],[1,1,2,1]],[[1,2,2,0],[1,4,2,1],[2,3,0,1],[0,2,2,1]],[[1,3,2,0],[1,3,2,1],[2,3,0,1],[0,2,2,1]],[[2,2,2,0],[1,3,2,1],[2,3,0,1],[0,2,2,1]],[[1,2,2,0],[1,4,2,1],[2,2,3,2],[1,1,0,0]],[[1,2,3,0],[1,3,2,1],[2,2,3,2],[1,1,0,0]],[[1,3,2,0],[1,3,2,1],[2,2,3,2],[1,1,0,0]],[[2,2,2,0],[1,3,2,1],[2,2,3,2],[1,1,0,0]],[[1,2,2,0],[1,4,2,1],[2,2,3,2],[0,2,0,0]],[[1,2,3,0],[1,3,2,1],[2,2,3,2],[0,2,0,0]],[[1,3,2,0],[1,3,2,1],[2,2,3,2],[0,2,0,0]],[[2,2,2,0],[1,3,2,1],[2,2,3,2],[0,2,0,0]],[[0,3,2,1],[2,3,2,2],[2,3,0,0],[0,2,2,0]],[[0,2,3,1],[2,3,2,2],[2,3,0,0],[0,2,2,0]],[[0,2,2,2],[2,3,2,2],[2,3,0,0],[0,2,2,0]],[[0,2,2,1],[3,3,2,2],[2,3,0,0],[0,2,2,0]],[[0,2,2,1],[2,4,2,2],[2,3,0,0],[0,2,2,0]],[[0,2,2,1],[2,3,2,2],[3,3,0,0],[0,2,2,0]],[[0,3,2,1],[2,3,2,2],[2,3,0,0],[1,1,2,0]],[[0,2,3,1],[2,3,2,2],[2,3,0,0],[1,1,2,0]],[[0,2,2,2],[2,3,2,2],[2,3,0,0],[1,1,2,0]],[[0,2,2,1],[3,3,2,2],[2,3,0,0],[1,1,2,0]],[[0,2,2,1],[2,4,2,2],[2,3,0,0],[1,1,2,0]],[[0,2,2,1],[2,3,2,2],[3,3,0,0],[1,1,2,0]],[[0,2,2,1],[2,3,2,2],[2,3,0,0],[2,1,2,0]],[[0,3,2,1],[2,3,2,2],[2,3,0,0],[1,2,1,0]],[[0,2,3,1],[2,3,2,2],[2,3,0,0],[1,2,1,0]],[[0,2,2,2],[2,3,2,2],[2,3,0,0],[1,2,1,0]],[[0,2,2,1],[3,3,2,2],[2,3,0,0],[1,2,1,0]],[[0,2,2,1],[2,4,2,2],[2,3,0,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,2],[3,3,0,0],[1,2,1,0]],[[0,2,2,1],[2,3,2,2],[2,3,0,0],[2,2,1,0]],[[1,2,2,0],[1,4,2,1],[2,2,2,2],[1,2,0,0]],[[1,2,3,0],[1,3,2,1],[2,2,2,2],[1,2,0,0]],[[1,3,2,0],[1,3,2,1],[2,2,2,2],[1,2,0,0]],[[2,2,2,0],[1,3,2,1],[2,2,2,2],[1,2,0,0]],[[1,2,2,0],[1,4,2,1],[2,2,2,2],[1,1,1,0]],[[1,2,3,0],[1,3,2,1],[2,2,2,2],[1,1,1,0]],[[1,3,2,0],[1,3,2,1],[2,2,2,2],[1,1,1,0]],[[2,2,2,0],[1,3,2,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[1,4,2,1],[2,2,2,2],[1,1,0,1]],[[1,2,3,0],[1,3,2,1],[2,2,2,2],[1,1,0,1]],[[1,3,2,0],[1,3,2,1],[2,2,2,2],[1,1,0,1]],[[2,2,2,0],[1,3,2,1],[2,2,2,2],[1,1,0,1]],[[1,2,2,0],[1,4,2,1],[2,2,2,2],[1,0,2,0]],[[1,2,3,0],[1,3,2,1],[2,2,2,2],[1,0,2,0]],[[1,3,2,0],[1,3,2,1],[2,2,2,2],[1,0,2,0]],[[2,2,2,0],[1,3,2,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[1,4,2,1],[2,2,2,2],[1,0,1,1]],[[1,2,3,0],[1,3,2,1],[2,2,2,2],[1,0,1,1]],[[1,3,2,0],[1,3,2,1],[2,2,2,2],[1,0,1,1]],[[2,2,2,0],[1,3,2,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,0],[1,4,2,1],[2,2,2,2],[0,2,1,0]],[[1,2,3,0],[1,3,2,1],[2,2,2,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,1],[2,2,2,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,1],[2,2,2,2],[0,2,0,1]],[[1,2,3,0],[1,3,2,1],[2,2,2,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,1],[2,2,2,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,1],[2,2,2,2],[0,1,2,0]],[[1,2,3,0],[1,3,2,1],[2,2,2,2],[0,1,2,0]],[[1,3,2,0],[1,3,2,1],[2,2,2,2],[0,1,2,0]],[[2,2,2,0],[1,3,2,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[1,4,2,1],[2,2,2,2],[0,1,1,1]],[[1,2,3,0],[1,3,2,1],[2,2,2,2],[0,1,1,1]],[[1,3,2,0],[1,3,2,1],[2,2,2,2],[0,1,1,1]],[[2,2,2,0],[1,3,2,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[1,4,2,1],[2,2,2,1],[1,2,0,1]],[[1,3,2,0],[1,3,2,1],[2,2,2,1],[1,2,0,1]],[[2,2,2,0],[1,3,2,1],[2,2,2,1],[1,2,0,1]],[[1,2,2,0],[1,4,2,1],[2,2,2,1],[1,1,1,1]],[[1,2,3,0],[1,3,2,1],[2,2,2,1],[1,1,1,1]],[[1,3,2,0],[1,3,2,1],[2,2,2,1],[1,1,1,1]],[[2,2,2,0],[1,3,2,1],[2,2,2,1],[1,1,1,1]],[[1,2,2,0],[1,4,2,1],[2,2,2,1],[1,0,2,1]],[[1,2,3,0],[1,3,2,1],[2,2,2,1],[1,0,2,1]],[[1,3,2,0],[1,3,2,1],[2,2,2,1],[1,0,2,1]],[[2,2,2,0],[1,3,2,1],[2,2,2,1],[1,0,2,1]],[[1,2,2,0],[1,4,2,1],[2,2,2,1],[0,2,1,1]],[[1,2,3,0],[1,3,2,1],[2,2,2,1],[0,2,1,1]],[[1,3,2,0],[1,3,2,1],[2,2,2,1],[0,2,1,1]],[[0,3,2,1],[2,3,2,2],[2,3,0,2],[1,0,0,1]],[[0,2,3,1],[2,3,2,2],[2,3,0,2],[1,0,0,1]],[[0,2,2,2],[2,3,2,2],[2,3,0,2],[1,0,0,1]],[[0,2,2,1],[3,3,2,2],[2,3,0,2],[1,0,0,1]],[[0,2,2,1],[2,4,2,2],[2,3,0,2],[1,0,0,1]],[[0,2,2,1],[2,3,2,3],[2,3,0,2],[1,0,0,1]],[[0,2,2,1],[2,3,2,2],[3,3,0,2],[1,0,0,1]],[[0,3,2,1],[2,3,2,2],[2,3,0,2],[1,0,1,0]],[[0,2,3,1],[2,3,2,2],[2,3,0,2],[1,0,1,0]],[[0,2,2,2],[2,3,2,2],[2,3,0,2],[1,0,1,0]],[[0,2,2,1],[3,3,2,2],[2,3,0,2],[1,0,1,0]],[[0,2,2,1],[2,4,2,2],[2,3,0,2],[1,0,1,0]],[[0,2,2,1],[2,3,2,3],[2,3,0,2],[1,0,1,0]],[[0,2,2,1],[2,3,2,2],[3,3,0,2],[1,0,1,0]],[[2,2,2,0],[1,3,2,1],[2,2,2,1],[0,2,1,1]],[[1,2,2,0],[1,4,2,1],[2,2,2,1],[0,1,2,1]],[[1,2,3,0],[1,3,2,1],[2,2,2,1],[0,1,2,1]],[[1,3,2,0],[1,3,2,1],[2,2,2,1],[0,1,2,1]],[[2,2,2,0],[1,3,2,1],[2,2,2,1],[0,1,2,1]],[[1,2,2,0],[1,4,2,1],[2,2,1,2],[1,1,2,0]],[[1,2,3,0],[1,3,2,1],[2,2,1,2],[1,1,2,0]],[[1,3,2,0],[1,3,2,1],[2,2,1,2],[1,1,2,0]],[[2,2,2,0],[1,3,2,1],[2,2,1,2],[1,1,2,0]],[[1,2,2,0],[1,4,2,1],[2,2,1,2],[0,2,2,0]],[[1,2,3,0],[1,3,2,1],[2,2,1,2],[0,2,2,0]],[[1,3,2,0],[1,3,2,1],[2,2,1,2],[0,2,2,0]],[[2,2,2,0],[1,3,2,1],[2,2,1,2],[0,2,2,0]],[[1,2,2,0],[1,4,2,1],[2,2,1,1],[1,1,2,1]],[[1,2,3,0],[1,3,2,1],[2,2,1,1],[1,1,2,1]],[[1,3,2,0],[1,3,2,1],[2,2,1,1],[1,1,2,1]],[[2,2,2,0],[1,3,2,1],[2,2,1,1],[1,1,2,1]],[[1,2,2,0],[1,4,2,1],[2,2,1,1],[0,2,2,1]],[[1,2,3,0],[1,3,2,1],[2,2,1,1],[0,2,2,1]],[[1,3,2,0],[1,3,2,1],[2,2,1,1],[0,2,2,1]],[[2,2,2,0],[1,3,2,1],[2,2,1,1],[0,2,2,1]],[[1,2,2,0],[1,4,2,1],[2,2,0,2],[1,2,2,0]],[[1,3,2,0],[1,3,2,1],[2,2,0,2],[1,2,2,0]],[[2,2,2,0],[1,3,2,1],[2,2,0,2],[1,2,2,0]],[[1,2,2,0],[1,4,2,1],[2,2,0,2],[1,1,2,1]],[[1,2,3,0],[1,3,2,1],[2,2,0,2],[1,1,2,1]],[[1,3,2,0],[1,3,2,1],[2,2,0,2],[1,1,2,1]],[[2,2,2,0],[1,3,2,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,0],[1,4,2,1],[2,2,0,2],[0,2,2,1]],[[1,2,3,0],[1,3,2,1],[2,2,0,2],[0,2,2,1]],[[1,3,2,0],[1,3,2,1],[2,2,0,2],[0,2,2,1]],[[2,2,2,0],[1,3,2,1],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[1,4,2,1],[2,2,0,1],[1,2,2,1]],[[1,3,2,0],[1,3,2,1],[2,2,0,1],[1,2,2,1]],[[2,2,2,0],[1,3,2,1],[2,2,0,1],[1,2,2,1]],[[1,2,2,0],[1,4,2,1],[2,1,3,2],[1,1,1,0]],[[1,2,3,0],[1,3,2,1],[2,1,3,2],[1,1,1,0]],[[1,3,2,0],[1,3,2,1],[2,1,3,2],[1,1,1,0]],[[2,2,2,0],[1,3,2,1],[2,1,3,2],[1,1,1,0]],[[1,2,2,0],[1,4,2,1],[2,1,3,2],[1,1,0,1]],[[1,2,3,0],[1,3,2,1],[2,1,3,2],[1,1,0,1]],[[1,3,2,0],[1,3,2,1],[2,1,3,2],[1,1,0,1]],[[2,2,2,0],[1,3,2,1],[2,1,3,2],[1,1,0,1]],[[0,3,2,1],[2,3,2,2],[2,3,1,0],[0,2,0,1]],[[0,2,3,1],[2,3,2,2],[2,3,1,0],[0,2,0,1]],[[0,2,2,2],[2,3,2,2],[2,3,1,0],[0,2,0,1]],[[0,2,2,1],[3,3,2,2],[2,3,1,0],[0,2,0,1]],[[0,2,2,1],[2,4,2,2],[2,3,1,0],[0,2,0,1]],[[0,2,2,1],[2,3,2,2],[3,3,1,0],[0,2,0,1]],[[0,3,2,1],[2,3,2,2],[2,3,1,0],[0,2,1,0]],[[0,2,3,1],[2,3,2,2],[2,3,1,0],[0,2,1,0]],[[0,2,2,2],[2,3,2,2],[2,3,1,0],[0,2,1,0]],[[0,2,2,1],[3,3,2,2],[2,3,1,0],[0,2,1,0]],[[0,2,2,1],[2,4,2,2],[2,3,1,0],[0,2,1,0]],[[0,2,2,1],[2,3,2,2],[3,3,1,0],[0,2,1,0]],[[1,2,2,0],[1,4,2,1],[2,1,3,2],[1,0,2,0]],[[1,2,3,0],[1,3,2,1],[2,1,3,2],[1,0,2,0]],[[1,3,2,0],[1,3,2,1],[2,1,3,2],[1,0,2,0]],[[2,2,2,0],[1,3,2,1],[2,1,3,2],[1,0,2,0]],[[1,2,2,0],[1,4,2,1],[2,1,3,2],[1,0,1,1]],[[1,2,3,0],[1,3,2,1],[2,1,3,2],[1,0,1,1]],[[1,3,2,0],[1,3,2,1],[2,1,3,2],[1,0,1,1]],[[2,2,2,0],[1,3,2,1],[2,1,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,2,2],[2,3,1,0],[1,1,0,1]],[[0,2,3,1],[2,3,2,2],[2,3,1,0],[1,1,0,1]],[[0,2,2,2],[2,3,2,2],[2,3,1,0],[1,1,0,1]],[[0,2,2,1],[3,3,2,2],[2,3,1,0],[1,1,0,1]],[[0,2,2,1],[2,4,2,2],[2,3,1,0],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[3,3,1,0],[1,1,0,1]],[[0,2,2,1],[2,3,2,2],[2,3,1,0],[2,1,0,1]],[[0,3,2,1],[2,3,2,2],[2,3,1,0],[1,1,1,0]],[[0,2,3,1],[2,3,2,2],[2,3,1,0],[1,1,1,0]],[[0,2,2,2],[2,3,2,2],[2,3,1,0],[1,1,1,0]],[[0,2,2,1],[3,3,2,2],[2,3,1,0],[1,1,1,0]],[[0,2,2,1],[2,4,2,2],[2,3,1,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,2],[3,3,1,0],[1,1,1,0]],[[0,2,2,1],[2,3,2,2],[2,3,1,0],[2,1,1,0]],[[1,2,2,0],[1,4,2,1],[2,1,3,2],[0,2,1,0]],[[1,2,3,0],[1,3,2,1],[2,1,3,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,1],[2,1,3,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,1],[2,1,3,2],[0,2,1,0]],[[0,3,2,1],[2,3,2,2],[2,3,1,0],[1,2,0,0]],[[0,2,3,1],[2,3,2,2],[2,3,1,0],[1,2,0,0]],[[0,2,2,2],[2,3,2,2],[2,3,1,0],[1,2,0,0]],[[0,2,2,1],[3,3,2,2],[2,3,1,0],[1,2,0,0]],[[0,2,2,1],[2,4,2,2],[2,3,1,0],[1,2,0,0]],[[0,2,2,1],[2,3,2,2],[3,3,1,0],[1,2,0,0]],[[0,2,2,1],[2,3,2,2],[2,3,1,0],[2,2,0,0]],[[1,2,2,0],[1,4,2,1],[2,1,3,2],[0,2,0,1]],[[1,2,3,0],[1,3,2,1],[2,1,3,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,1],[2,1,3,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,1],[2,1,3,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,1],[2,1,3,2],[0,1,2,0]],[[1,2,3,0],[1,3,2,1],[2,1,3,2],[0,1,2,0]],[[1,3,2,0],[1,3,2,1],[2,1,3,2],[0,1,2,0]],[[2,2,2,0],[1,3,2,1],[2,1,3,2],[0,1,2,0]],[[1,2,2,0],[1,4,2,1],[2,1,3,2],[0,1,1,1]],[[1,2,3,0],[1,3,2,1],[2,1,3,2],[0,1,1,1]],[[1,3,2,0],[1,3,2,1],[2,1,3,2],[0,1,1,1]],[[2,2,2,0],[1,3,2,1],[2,1,3,2],[0,1,1,1]],[[1,2,2,0],[1,4,2,1],[2,1,3,2],[0,0,2,1]],[[1,2,3,0],[1,3,2,1],[2,1,3,2],[0,0,2,1]],[[1,3,2,0],[1,3,2,1],[2,1,3,2],[0,0,2,1]],[[2,2,2,0],[1,3,2,1],[2,1,3,2],[0,0,2,1]],[[1,2,2,0],[1,4,2,1],[2,1,3,1],[1,1,1,1]],[[1,2,3,0],[1,3,2,1],[2,1,3,1],[1,1,1,1]],[[1,3,2,0],[1,3,2,1],[2,1,3,1],[1,1,1,1]],[[2,2,2,0],[1,3,2,1],[2,1,3,1],[1,1,1,1]],[[1,2,2,0],[1,4,2,1],[2,1,3,1],[1,0,2,1]],[[1,2,3,0],[1,3,2,1],[2,1,3,1],[1,0,2,1]],[[1,3,2,0],[1,3,2,1],[2,1,3,1],[1,0,2,1]],[[2,2,2,0],[1,3,2,1],[2,1,3,1],[1,0,2,1]],[[1,2,2,0],[1,4,2,1],[2,1,3,1],[0,2,1,1]],[[1,2,3,0],[1,3,2,1],[2,1,3,1],[0,2,1,1]],[[1,3,2,0],[1,3,2,1],[2,1,3,1],[0,2,1,1]],[[2,2,2,0],[1,3,2,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,0],[1,4,2,1],[2,1,3,1],[0,1,2,1]],[[1,2,3,0],[1,3,2,1],[2,1,3,1],[0,1,2,1]],[[1,3,2,0],[1,3,2,1],[2,1,3,1],[0,1,2,1]],[[2,2,2,0],[1,3,2,1],[2,1,3,1],[0,1,2,1]],[[1,2,2,0],[1,4,2,1],[2,1,2,2],[1,2,1,0]],[[1,2,3,0],[1,3,2,1],[2,1,2,2],[1,2,1,0]],[[1,3,2,0],[1,3,2,1],[2,1,2,2],[1,2,1,0]],[[2,2,2,0],[1,3,2,1],[2,1,2,2],[1,2,1,0]],[[1,2,2,0],[1,4,2,1],[2,1,2,2],[1,2,0,1]],[[1,2,3,0],[1,3,2,1],[2,1,2,2],[1,2,0,1]],[[1,3,2,0],[1,3,2,1],[2,1,2,2],[1,2,0,1]],[[2,2,2,0],[1,3,2,1],[2,1,2,2],[1,2,0,1]],[[1,2,2,0],[1,4,2,1],[2,1,2,1],[1,2,1,1]],[[1,2,3,0],[1,3,2,1],[2,1,2,1],[1,2,1,1]],[[1,3,2,0],[1,3,2,1],[2,1,2,1],[1,2,1,1]],[[2,2,2,0],[1,3,2,1],[2,1,2,1],[1,2,1,1]],[[1,2,2,0],[1,4,2,1],[2,1,1,2],[1,2,2,0]],[[1,2,3,0],[1,3,2,1],[2,1,1,2],[1,2,2,0]],[[1,3,2,0],[1,3,2,1],[2,1,1,2],[1,2,2,0]],[[2,2,2,0],[1,3,2,1],[2,1,1,2],[1,2,2,0]],[[1,2,2,0],[1,4,2,1],[2,1,1,1],[1,2,2,1]],[[1,2,3,0],[1,3,2,1],[2,1,1,1],[1,2,2,1]],[[1,3,2,0],[1,3,2,1],[2,1,1,1],[1,2,2,1]],[[2,2,2,0],[1,3,2,1],[2,1,1,1],[1,2,2,1]],[[1,2,2,0],[1,4,2,1],[2,1,0,2],[1,2,2,1]],[[1,2,3,0],[1,3,2,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[1,3,2,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[1,3,2,1],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[1,4,2,1],[2,0,3,2],[1,2,1,0]],[[1,2,3,0],[1,3,2,1],[2,0,3,2],[1,2,1,0]],[[1,3,2,0],[1,3,2,1],[2,0,3,2],[1,2,1,0]],[[2,2,2,0],[1,3,2,1],[2,0,3,2],[1,2,1,0]],[[1,2,2,0],[1,4,2,1],[2,0,3,2],[1,2,0,1]],[[1,2,3,0],[1,3,2,1],[2,0,3,2],[1,2,0,1]],[[1,3,2,0],[1,3,2,1],[2,0,3,2],[1,2,0,1]],[[2,2,2,0],[1,3,2,1],[2,0,3,2],[1,2,0,1]],[[1,2,2,0],[1,4,2,1],[2,0,3,2],[1,1,2,0]],[[1,2,3,0],[1,3,2,1],[2,0,3,2],[1,1,2,0]],[[1,3,2,0],[1,3,2,1],[2,0,3,2],[1,1,2,0]],[[2,2,2,0],[1,3,2,1],[2,0,3,2],[1,1,2,0]],[[1,2,2,0],[1,4,2,1],[2,0,3,2],[1,1,1,1]],[[1,2,3,0],[1,3,2,1],[2,0,3,2],[1,1,1,1]],[[1,3,2,0],[1,3,2,1],[2,0,3,2],[1,1,1,1]],[[2,2,2,0],[1,3,2,1],[2,0,3,2],[1,1,1,1]],[[1,2,2,0],[1,4,2,1],[2,0,3,2],[0,2,2,0]],[[1,2,3,0],[1,3,2,1],[2,0,3,2],[0,2,2,0]],[[1,3,2,0],[1,3,2,1],[2,0,3,2],[0,2,2,0]],[[2,2,2,0],[1,3,2,1],[2,0,3,2],[0,2,2,0]],[[1,2,2,0],[1,4,2,1],[2,0,3,2],[0,2,1,1]],[[1,2,3,0],[1,3,2,1],[2,0,3,2],[0,2,1,1]],[[1,3,2,0],[1,3,2,1],[2,0,3,2],[0,2,1,1]],[[2,2,2,0],[1,3,2,1],[2,0,3,2],[0,2,1,1]],[[1,2,2,0],[1,4,2,1],[2,0,3,1],[1,2,1,1]],[[1,2,3,0],[1,3,2,1],[2,0,3,1],[1,2,1,1]],[[1,3,2,0],[1,3,2,1],[2,0,3,1],[1,2,1,1]],[[2,2,2,0],[1,3,2,1],[2,0,3,1],[1,2,1,1]],[[1,2,2,0],[1,4,2,1],[2,0,3,1],[1,1,2,1]],[[1,2,3,0],[1,3,2,1],[2,0,3,1],[1,1,2,1]],[[1,3,2,0],[1,3,2,1],[2,0,3,1],[1,1,2,1]],[[2,2,2,0],[1,3,2,1],[2,0,3,1],[1,1,2,1]],[[1,2,2,0],[1,4,2,1],[2,0,3,1],[0,2,2,1]],[[1,2,3,0],[1,3,2,1],[2,0,3,1],[0,2,2,1]],[[1,3,2,0],[1,3,2,1],[2,0,3,1],[0,2,2,1]],[[2,2,2,0],[1,3,2,1],[2,0,3,1],[0,2,2,1]],[[1,2,2,0],[1,4,2,1],[2,0,2,2],[1,2,2,0]],[[1,2,3,0],[1,3,2,1],[2,0,2,2],[1,2,2,0]],[[1,3,2,0],[1,3,2,1],[2,0,2,2],[1,2,2,0]],[[2,2,2,0],[1,3,2,1],[2,0,2,2],[1,2,2,0]],[[1,2,2,0],[1,4,2,1],[2,0,2,1],[1,2,2,1]],[[1,2,3,0],[1,3,2,1],[2,0,2,1],[1,2,2,1]],[[1,3,2,0],[1,3,2,1],[2,0,2,1],[1,2,2,1]],[[2,2,2,0],[1,3,2,1],[2,0,2,1],[1,2,2,1]],[[1,2,2,0],[1,4,2,1],[2,0,1,2],[1,2,2,1]],[[1,2,3,0],[1,3,2,1],[2,0,1,2],[1,2,2,1]],[[1,3,2,0],[1,3,2,1],[2,0,1,2],[1,2,2,1]],[[2,2,2,0],[1,3,2,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[1,3,2,1],[1,4,3,2],[1,1,0,0]],[[1,2,2,0],[1,4,2,1],[1,3,3,2],[1,1,0,0]],[[1,2,3,0],[1,3,2,1],[1,3,3,2],[1,1,0,0]],[[1,3,2,0],[1,3,2,1],[1,3,3,2],[1,1,0,0]],[[2,2,2,0],[1,3,2,1],[1,3,3,2],[1,1,0,0]],[[1,2,2,0],[1,3,2,1],[1,4,3,2],[0,2,0,0]],[[1,2,2,0],[1,4,2,1],[1,3,3,2],[0,2,0,0]],[[1,2,3,0],[1,3,2,1],[1,3,3,2],[0,2,0,0]],[[1,3,2,0],[1,3,2,1],[1,3,3,2],[0,2,0,0]],[[2,2,2,0],[1,3,2,1],[1,3,3,2],[0,2,0,0]],[[1,2,2,0],[1,4,2,1],[1,3,3,2],[0,0,2,0]],[[1,2,3,0],[1,3,2,1],[1,3,3,2],[0,0,2,0]],[[1,3,2,0],[1,3,2,1],[1,3,3,2],[0,0,2,0]],[[2,2,2,0],[1,3,2,1],[1,3,3,2],[0,0,2,0]],[[1,2,2,0],[1,4,2,1],[1,3,3,2],[0,0,1,1]],[[1,2,3,0],[1,3,2,1],[1,3,3,2],[0,0,1,1]],[[1,3,2,0],[1,3,2,1],[1,3,3,2],[0,0,1,1]],[[2,2,2,0],[1,3,2,1],[1,3,3,2],[0,0,1,1]],[[1,2,2,0],[1,4,2,1],[1,3,3,1],[0,0,2,1]],[[1,2,3,0],[1,3,2,1],[1,3,3,1],[0,0,2,1]],[[1,3,2,0],[1,3,2,1],[1,3,3,1],[0,0,2,1]],[[2,2,2,0],[1,3,2,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,0],[1,3,2,1],[1,4,2,2],[1,2,0,0]],[[1,2,2,0],[1,4,2,1],[1,3,2,2],[1,2,0,0]],[[1,2,3,0],[1,3,2,1],[1,3,2,2],[1,2,0,0]],[[1,3,2,0],[1,3,2,1],[1,3,2,2],[1,2,0,0]],[[2,2,2,0],[1,3,2,1],[1,3,2,2],[1,2,0,0]],[[1,2,2,0],[1,3,2,1],[1,4,2,2],[1,1,1,0]],[[1,2,2,0],[1,4,2,1],[1,3,2,2],[1,1,1,0]],[[1,2,3,0],[1,3,2,1],[1,3,2,2],[1,1,1,0]],[[1,3,2,0],[1,3,2,1],[1,3,2,2],[1,1,1,0]],[[2,2,2,0],[1,3,2,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[1,3,2,1],[1,4,2,2],[1,1,0,1]],[[1,2,2,0],[1,4,2,1],[1,3,2,2],[1,1,0,1]],[[1,2,3,0],[1,3,2,1],[1,3,2,2],[1,1,0,1]],[[1,3,2,0],[1,3,2,1],[1,3,2,2],[1,1,0,1]],[[2,2,2,0],[1,3,2,1],[1,3,2,2],[1,1,0,1]],[[1,2,2,0],[1,3,2,1],[1,4,2,2],[1,0,2,0]],[[1,2,2,0],[1,4,2,1],[1,3,2,2],[1,0,2,0]],[[1,2,3,0],[1,3,2,1],[1,3,2,2],[1,0,2,0]],[[1,3,2,0],[1,3,2,1],[1,3,2,2],[1,0,2,0]],[[2,2,2,0],[1,3,2,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[1,3,2,1],[1,4,2,2],[1,0,1,1]],[[1,2,2,0],[1,4,2,1],[1,3,2,2],[1,0,1,1]],[[1,2,3,0],[1,3,2,1],[1,3,2,2],[1,0,1,1]],[[1,3,2,0],[1,3,2,1],[1,3,2,2],[1,0,1,1]],[[2,2,2,0],[1,3,2,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,0],[1,3,2,1],[1,3,2,2],[0,3,1,0]],[[1,2,2,0],[1,3,2,1],[1,4,2,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,1],[1,3,2,2],[0,2,1,0]],[[1,2,3,0],[1,3,2,1],[1,3,2,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,1],[1,3,2,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[1,3,2,1],[1,3,2,2],[0,3,0,1]],[[1,2,2,0],[1,3,2,1],[1,4,2,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,1],[1,3,2,2],[0,2,0,1]],[[1,2,3,0],[1,3,2,1],[1,3,2,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,1],[1,3,2,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[1,3,2,1],[1,4,2,2],[0,1,2,0]],[[1,2,2,0],[1,4,2,1],[1,3,2,2],[0,1,2,0]],[[1,2,3,0],[1,3,2,1],[1,3,2,2],[0,1,2,0]],[[1,3,2,0],[1,3,2,1],[1,3,2,2],[0,1,2,0]],[[2,2,2,0],[1,3,2,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[1,3,2,1],[1,4,2,2],[0,1,1,1]],[[1,2,2,0],[1,4,2,1],[1,3,2,2],[0,1,1,1]],[[0,3,2,1],[2,3,2,2],[2,3,2,0],[1,0,0,1]],[[0,2,3,1],[2,3,2,2],[2,3,2,0],[1,0,0,1]],[[0,2,2,2],[2,3,2,2],[2,3,2,0],[1,0,0,1]],[[0,2,2,1],[3,3,2,2],[2,3,2,0],[1,0,0,1]],[[0,2,2,1],[2,4,2,2],[2,3,2,0],[1,0,0,1]],[[0,2,2,1],[2,3,2,2],[3,3,2,0],[1,0,0,1]],[[0,3,2,1],[2,3,2,2],[2,3,2,0],[1,0,1,0]],[[0,2,3,1],[2,3,2,2],[2,3,2,0],[1,0,1,0]],[[0,2,2,2],[2,3,2,2],[2,3,2,0],[1,0,1,0]],[[0,2,2,1],[3,3,2,2],[2,3,2,0],[1,0,1,0]],[[0,2,2,1],[2,4,2,2],[2,3,2,0],[1,0,1,0]],[[0,2,2,1],[2,3,2,2],[3,3,2,0],[1,0,1,0]],[[1,2,3,0],[1,3,2,1],[1,3,2,2],[0,1,1,1]],[[1,3,2,0],[1,3,2,1],[1,3,2,2],[0,1,1,1]],[[2,2,2,0],[1,3,2,1],[1,3,2,2],[0,1,1,1]],[[1,2,2,0],[1,3,2,1],[1,4,2,1],[1,2,0,1]],[[1,2,2,0],[1,4,2,1],[1,3,2,1],[1,2,0,1]],[[1,3,2,0],[1,3,2,1],[1,3,2,1],[1,2,0,1]],[[2,2,2,0],[1,3,2,1],[1,3,2,1],[1,2,0,1]],[[1,2,2,0],[1,3,2,1],[1,4,2,1],[1,1,1,1]],[[1,2,2,0],[1,4,2,1],[1,3,2,1],[1,1,1,1]],[[1,2,3,0],[1,3,2,1],[1,3,2,1],[1,1,1,1]],[[1,3,2,0],[1,3,2,1],[1,3,2,1],[1,1,1,1]],[[2,2,2,0],[1,3,2,1],[1,3,2,1],[1,1,1,1]],[[1,2,2,0],[1,3,2,1],[1,4,2,1],[1,0,2,1]],[[1,2,2,0],[1,4,2,1],[1,3,2,1],[1,0,2,1]],[[1,2,3,0],[1,3,2,1],[1,3,2,1],[1,0,2,1]],[[1,3,2,0],[1,3,2,1],[1,3,2,1],[1,0,2,1]],[[2,2,2,0],[1,3,2,1],[1,3,2,1],[1,0,2,1]],[[1,2,2,0],[1,3,2,1],[1,3,2,1],[0,3,1,1]],[[1,2,2,0],[1,3,2,1],[1,4,2,1],[0,2,1,1]],[[1,2,2,0],[1,4,2,1],[1,3,2,1],[0,2,1,1]],[[1,2,3,0],[1,3,2,1],[1,3,2,1],[0,2,1,1]],[[1,3,2,0],[1,3,2,1],[1,3,2,1],[0,2,1,1]],[[2,2,2,0],[1,3,2,1],[1,3,2,1],[0,2,1,1]],[[1,2,2,0],[1,3,2,1],[1,4,2,1],[0,1,2,1]],[[1,2,2,0],[1,4,2,1],[1,3,2,1],[0,1,2,1]],[[1,2,3,0],[1,3,2,1],[1,3,2,1],[0,1,2,1]],[[1,3,2,0],[1,3,2,1],[1,3,2,1],[0,1,2,1]],[[2,2,2,0],[1,3,2,1],[1,3,2,1],[0,1,2,1]],[[1,2,2,0],[1,3,2,1],[1,4,1,2],[1,1,2,0]],[[1,2,2,0],[1,4,2,1],[1,3,1,2],[1,1,2,0]],[[1,2,3,0],[1,3,2,1],[1,3,1,2],[1,1,2,0]],[[1,3,2,0],[1,3,2,1],[1,3,1,2],[1,1,2,0]],[[2,2,2,0],[1,3,2,1],[1,3,1,2],[1,1,2,0]],[[1,2,2,0],[1,3,2,1],[1,3,1,2],[0,2,3,0]],[[1,2,2,0],[1,3,2,1],[1,3,1,2],[0,3,2,0]],[[1,2,2,0],[1,3,2,1],[1,4,1,2],[0,2,2,0]],[[1,2,2,0],[1,4,2,1],[1,3,1,2],[0,2,2,0]],[[1,2,3,0],[1,3,2,1],[1,3,1,2],[0,2,2,0]],[[1,3,2,0],[1,3,2,1],[1,3,1,2],[0,2,2,0]],[[2,2,2,0],[1,3,2,1],[1,3,1,2],[0,2,2,0]],[[1,2,2,0],[1,3,2,1],[1,4,1,1],[1,1,2,1]],[[1,2,2,0],[1,4,2,1],[1,3,1,1],[1,1,2,1]],[[1,2,3,0],[1,3,2,1],[1,3,1,1],[1,1,2,1]],[[1,3,2,0],[1,3,2,1],[1,3,1,1],[1,1,2,1]],[[2,2,2,0],[1,3,2,1],[1,3,1,1],[1,1,2,1]],[[1,2,2,0],[1,3,2,1],[1,3,1,1],[0,2,2,2]],[[1,2,2,0],[1,3,2,1],[1,3,1,1],[0,2,3,1]],[[1,2,2,0],[1,3,2,1],[1,3,1,1],[0,3,2,1]],[[1,2,2,0],[1,3,2,1],[1,4,1,1],[0,2,2,1]],[[1,2,2,0],[1,4,2,1],[1,3,1,1],[0,2,2,1]],[[1,2,3,0],[1,3,2,1],[1,3,1,1],[0,2,2,1]],[[1,3,2,0],[1,3,2,1],[1,3,1,1],[0,2,2,1]],[[2,2,2,0],[1,3,2,1],[1,3,1,1],[0,2,2,1]],[[1,2,2,0],[1,3,2,1],[1,4,0,2],[1,1,2,1]],[[1,2,2,0],[1,4,2,1],[1,3,0,2],[1,1,2,1]],[[1,2,3,0],[1,3,2,1],[1,3,0,2],[1,1,2,1]],[[1,3,2,0],[1,3,2,1],[1,3,0,2],[1,1,2,1]],[[2,2,2,0],[1,3,2,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[1,3,2,1],[1,3,0,2],[0,2,2,2]],[[1,2,2,0],[1,3,2,1],[1,3,0,2],[0,2,3,1]],[[1,2,2,0],[1,3,2,1],[1,3,0,2],[0,3,2,1]],[[1,2,2,0],[1,3,2,1],[1,3,0,3],[0,2,2,1]],[[1,2,2,0],[1,3,2,1],[1,4,0,2],[0,2,2,1]],[[1,2,2,0],[1,4,2,1],[1,3,0,2],[0,2,2,1]],[[1,2,3,0],[1,3,2,1],[1,3,0,2],[0,2,2,1]],[[1,3,2,0],[1,3,2,1],[1,3,0,2],[0,2,2,1]],[[2,2,2,0],[1,3,2,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[1,4,2,1],[1,2,3,2],[1,1,1,0]],[[1,2,3,0],[1,3,2,1],[1,2,3,2],[1,1,1,0]],[[1,3,2,0],[1,3,2,1],[1,2,3,2],[1,1,1,0]],[[2,2,2,0],[1,3,2,1],[1,2,3,2],[1,1,1,0]],[[1,2,2,0],[1,4,2,1],[1,2,3,2],[1,1,0,1]],[[1,2,3,0],[1,3,2,1],[1,2,3,2],[1,1,0,1]],[[1,3,2,0],[1,3,2,1],[1,2,3,2],[1,1,0,1]],[[2,2,2,0],[1,3,2,1],[1,2,3,2],[1,1,0,1]],[[1,2,2,0],[1,4,2,1],[1,2,3,2],[1,0,2,0]],[[1,2,3,0],[1,3,2,1],[1,2,3,2],[1,0,2,0]],[[1,3,2,0],[1,3,2,1],[1,2,3,2],[1,0,2,0]],[[2,2,2,0],[1,3,2,1],[1,2,3,2],[1,0,2,0]],[[1,2,2,0],[1,4,2,1],[1,2,3,2],[1,0,1,1]],[[1,2,3,0],[1,3,2,1],[1,2,3,2],[1,0,1,1]],[[1,3,2,0],[1,3,2,1],[1,2,3,2],[1,0,1,1]],[[2,2,2,0],[1,3,2,1],[1,2,3,2],[1,0,1,1]],[[1,2,2,0],[1,4,2,1],[1,2,3,2],[0,2,1,0]],[[1,2,3,0],[1,3,2,1],[1,2,3,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,1],[1,2,3,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,1],[1,2,3,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,1],[1,2,3,2],[0,2,0,1]],[[1,2,3,0],[1,3,2,1],[1,2,3,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,1],[1,2,3,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,1],[1,2,3,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,1],[1,2,3,2],[0,1,2,0]],[[1,2,3,0],[1,3,2,1],[1,2,3,2],[0,1,2,0]],[[1,3,2,0],[1,3,2,1],[1,2,3,2],[0,1,2,0]],[[2,2,2,0],[1,3,2,1],[1,2,3,2],[0,1,2,0]],[[1,2,2,0],[1,4,2,1],[1,2,3,2],[0,1,1,1]],[[1,2,3,0],[1,3,2,1],[1,2,3,2],[0,1,1,1]],[[1,3,2,0],[1,3,2,1],[1,2,3,2],[0,1,1,1]],[[2,2,2,0],[1,3,2,1],[1,2,3,2],[0,1,1,1]],[[1,2,2,0],[1,4,2,1],[1,2,3,2],[0,0,2,1]],[[1,2,3,0],[1,3,2,1],[1,2,3,2],[0,0,2,1]],[[1,3,2,0],[1,3,2,1],[1,2,3,2],[0,0,2,1]],[[2,2,2,0],[1,3,2,1],[1,2,3,2],[0,0,2,1]],[[1,2,2,0],[1,4,2,1],[1,2,3,1],[1,1,1,1]],[[1,2,3,0],[1,3,2,1],[1,2,3,1],[1,1,1,1]],[[1,3,2,0],[1,3,2,1],[1,2,3,1],[1,1,1,1]],[[2,2,2,0],[1,3,2,1],[1,2,3,1],[1,1,1,1]],[[1,2,2,0],[1,4,2,1],[1,2,3,1],[1,0,2,1]],[[1,2,3,0],[1,3,2,1],[1,2,3,1],[1,0,2,1]],[[1,3,2,0],[1,3,2,1],[1,2,3,1],[1,0,2,1]],[[2,2,2,0],[1,3,2,1],[1,2,3,1],[1,0,2,1]],[[1,2,2,0],[1,4,2,1],[1,2,3,1],[0,2,1,1]],[[1,2,3,0],[1,3,2,1],[1,2,3,1],[0,2,1,1]],[[1,3,2,0],[1,3,2,1],[1,2,3,1],[0,2,1,1]],[[2,2,2,0],[1,3,2,1],[1,2,3,1],[0,2,1,1]],[[1,2,2,0],[1,4,2,1],[1,2,3,1],[0,1,2,1]],[[1,2,3,0],[1,3,2,1],[1,2,3,1],[0,1,2,1]],[[1,3,2,0],[1,3,2,1],[1,2,3,1],[0,1,2,1]],[[2,2,2,0],[1,3,2,1],[1,2,3,1],[0,1,2,1]],[[1,2,2,0],[1,4,2,1],[1,1,3,2],[0,2,2,0]],[[1,2,3,0],[1,3,2,1],[1,1,3,2],[0,2,2,0]],[[1,3,2,0],[1,3,2,1],[1,1,3,2],[0,2,2,0]],[[2,2,2,0],[1,3,2,1],[1,1,3,2],[0,2,2,0]],[[1,2,2,0],[1,4,2,1],[1,1,3,2],[0,2,1,1]],[[1,2,3,0],[1,3,2,1],[1,1,3,2],[0,2,1,1]],[[1,3,2,0],[1,3,2,1],[1,1,3,2],[0,2,1,1]],[[2,2,2,0],[1,3,2,1],[1,1,3,2],[0,2,1,1]],[[1,2,2,0],[1,4,2,1],[1,1,3,1],[0,2,2,1]],[[1,2,3,0],[1,3,2,1],[1,1,3,1],[0,2,2,1]],[[1,3,2,0],[1,3,2,1],[1,1,3,1],[0,2,2,1]],[[2,2,2,0],[1,3,2,1],[1,1,3,1],[0,2,2,1]],[[1,2,2,0],[1,4,2,1],[1,0,3,2],[1,2,2,0]],[[1,2,3,0],[1,3,2,1],[1,0,3,2],[1,2,2,0]],[[1,3,2,0],[1,3,2,1],[1,0,3,2],[1,2,2,0]],[[2,2,2,0],[1,3,2,1],[1,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,4,2,1],[1,0,3,2],[1,2,1,1]],[[1,2,3,0],[1,3,2,1],[1,0,3,2],[1,2,1,1]],[[1,3,2,0],[1,3,2,1],[1,0,3,2],[1,2,1,1]],[[2,2,2,0],[1,3,2,1],[1,0,3,2],[1,2,1,1]],[[1,2,2,0],[1,4,2,1],[1,0,3,1],[1,2,2,1]],[[1,2,3,0],[1,3,2,1],[1,0,3,1],[1,2,2,1]],[[1,3,2,0],[1,3,2,1],[1,0,3,1],[1,2,2,1]],[[2,2,2,0],[1,3,2,1],[1,0,3,1],[1,2,2,1]],[[1,2,2,0],[1,3,2,1],[0,4,3,2],[1,2,0,0]],[[1,2,2,0],[1,4,2,1],[0,3,3,2],[1,2,0,0]],[[1,2,3,0],[1,3,2,1],[0,3,3,2],[1,2,0,0]],[[1,3,2,0],[1,3,2,1],[0,3,3,2],[1,2,0,0]],[[2,2,2,0],[1,3,2,1],[0,3,3,2],[1,2,0,0]],[[1,2,2,0],[1,4,2,1],[0,3,3,2],[0,2,1,0]],[[1,2,3,0],[1,3,2,1],[0,3,3,2],[0,2,1,0]],[[1,3,2,0],[1,3,2,1],[0,3,3,2],[0,2,1,0]],[[2,2,2,0],[1,3,2,1],[0,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,4,2,1],[0,3,3,2],[0,2,0,1]],[[1,2,3,0],[1,3,2,1],[0,3,3,2],[0,2,0,1]],[[1,3,2,0],[1,3,2,1],[0,3,3,2],[0,2,0,1]],[[2,2,2,0],[1,3,2,1],[0,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,4,2,1],[0,3,3,2],[0,1,2,0]],[[1,2,3,0],[1,3,2,1],[0,3,3,2],[0,1,2,0]],[[1,3,2,0],[1,3,2,1],[0,3,3,2],[0,1,2,0]],[[2,2,2,0],[1,3,2,1],[0,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,4,2,1],[0,3,3,2],[0,1,1,1]],[[1,2,3,0],[1,3,2,1],[0,3,3,2],[0,1,1,1]],[[1,3,2,0],[1,3,2,1],[0,3,3,2],[0,1,1,1]],[[2,2,2,0],[1,3,2,1],[0,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,4,2,1],[0,3,3,2],[0,0,2,1]],[[1,2,3,0],[1,3,2,1],[0,3,3,2],[0,0,2,1]],[[1,3,2,0],[1,3,2,1],[0,3,3,2],[0,0,2,1]],[[2,2,2,0],[1,3,2,1],[0,3,3,2],[0,0,2,1]],[[1,2,2,0],[1,4,2,1],[0,3,3,1],[0,2,1,1]],[[1,2,3,0],[1,3,2,1],[0,3,3,1],[0,2,1,1]],[[1,3,2,0],[1,3,2,1],[0,3,3,1],[0,2,1,1]],[[2,2,2,0],[1,3,2,1],[0,3,3,1],[0,2,1,1]],[[1,2,2,0],[1,4,2,1],[0,3,3,1],[0,1,2,1]],[[1,2,3,0],[1,3,2,1],[0,3,3,1],[0,1,2,1]],[[1,3,2,0],[1,3,2,1],[0,3,3,1],[0,1,2,1]],[[2,2,2,0],[1,3,2,1],[0,3,3,1],[0,1,2,1]],[[1,2,2,0],[1,3,2,1],[0,3,2,2],[1,3,1,0]],[[1,2,2,0],[1,3,2,1],[0,3,2,2],[2,2,1,0]],[[1,2,2,0],[1,3,2,1],[0,4,2,2],[1,2,1,0]],[[1,2,2,0],[1,4,2,1],[0,3,2,2],[1,2,1,0]],[[1,2,3,0],[1,3,2,1],[0,3,2,2],[1,2,1,0]],[[1,3,2,0],[1,3,2,1],[0,3,2,2],[1,2,1,0]],[[2,2,2,0],[1,3,2,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[1,3,2,1],[0,3,2,2],[1,3,0,1]],[[1,2,2,0],[1,3,2,1],[0,3,2,2],[2,2,0,1]],[[1,2,2,0],[1,3,2,1],[0,4,2,2],[1,2,0,1]],[[1,2,2,0],[1,4,2,1],[0,3,2,2],[1,2,0,1]],[[1,2,3,0],[1,3,2,1],[0,3,2,2],[1,2,0,1]],[[1,3,2,0],[1,3,2,1],[0,3,2,2],[1,2,0,1]],[[2,2,2,0],[1,3,2,1],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[1,3,2,1],[0,4,2,2],[1,1,2,0]],[[1,2,2,0],[1,4,2,1],[0,3,2,2],[1,1,2,0]],[[1,2,3,0],[1,3,2,1],[0,3,2,2],[1,1,2,0]],[[1,3,2,0],[1,3,2,1],[0,3,2,2],[1,1,2,0]],[[2,2,2,0],[1,3,2,1],[0,3,2,2],[1,1,2,0]],[[1,2,2,0],[1,3,2,1],[0,4,2,2],[1,1,1,1]],[[1,2,2,0],[1,4,2,1],[0,3,2,2],[1,1,1,1]],[[1,2,3,0],[1,3,2,1],[0,3,2,2],[1,1,1,1]],[[1,3,2,0],[1,3,2,1],[0,3,2,2],[1,1,1,1]],[[2,2,2,0],[1,3,2,1],[0,3,2,2],[1,1,1,1]],[[1,2,2,0],[1,3,2,1],[0,3,2,1],[1,3,1,1]],[[1,2,2,0],[1,3,2,1],[0,3,2,1],[2,2,1,1]],[[1,2,2,0],[1,3,2,1],[0,4,2,1],[1,2,1,1]],[[1,2,2,0],[1,4,2,1],[0,3,2,1],[1,2,1,1]],[[1,2,3,0],[1,3,2,1],[0,3,2,1],[1,2,1,1]],[[1,3,2,0],[1,3,2,1],[0,3,2,1],[1,2,1,1]],[[2,2,2,0],[1,3,2,1],[0,3,2,1],[1,2,1,1]],[[1,2,2,0],[1,3,2,1],[0,4,2,1],[1,1,2,1]],[[1,2,2,0],[1,4,2,1],[0,3,2,1],[1,1,2,1]],[[1,2,3,0],[1,3,2,1],[0,3,2,1],[1,1,2,1]],[[1,3,2,0],[1,3,2,1],[0,3,2,1],[1,1,2,1]],[[2,2,2,0],[1,3,2,1],[0,3,2,1],[1,1,2,1]],[[1,2,2,0],[1,3,2,1],[0,3,1,2],[1,2,3,0]],[[1,2,2,0],[1,3,2,1],[0,3,1,2],[1,3,2,0]],[[1,2,2,0],[1,3,2,1],[0,3,1,2],[2,2,2,0]],[[1,2,2,0],[1,3,2,1],[0,4,1,2],[1,2,2,0]],[[1,2,2,0],[1,4,2,1],[0,3,1,2],[1,2,2,0]],[[1,2,3,0],[1,3,2,1],[0,3,1,2],[1,2,2,0]],[[1,3,2,0],[1,3,2,1],[0,3,1,2],[1,2,2,0]],[[2,2,2,0],[1,3,2,1],[0,3,1,2],[1,2,2,0]],[[1,2,2,0],[1,3,2,1],[0,3,1,1],[1,2,2,2]],[[1,2,2,0],[1,3,2,1],[0,3,1,1],[1,2,3,1]],[[1,2,2,0],[1,3,2,1],[0,3,1,1],[1,3,2,1]],[[1,2,2,0],[1,3,2,1],[0,3,1,1],[2,2,2,1]],[[1,2,2,0],[1,3,2,1],[0,4,1,1],[1,2,2,1]],[[1,2,2,0],[1,4,2,1],[0,3,1,1],[1,2,2,1]],[[1,2,3,0],[1,3,2,1],[0,3,1,1],[1,2,2,1]],[[1,3,2,0],[1,3,2,1],[0,3,1,1],[1,2,2,1]],[[2,2,2,0],[1,3,2,1],[0,3,1,1],[1,2,2,1]],[[1,2,2,0],[1,3,2,1],[0,3,0,2],[1,2,2,2]],[[1,2,2,0],[1,3,2,1],[0,3,0,2],[1,2,3,1]],[[1,2,2,0],[1,3,2,1],[0,3,0,2],[1,3,2,1]],[[1,2,2,0],[1,3,2,1],[0,3,0,2],[2,2,2,1]],[[1,2,2,0],[1,3,2,1],[0,3,0,3],[1,2,2,1]],[[1,2,2,0],[1,3,2,1],[0,4,0,2],[1,2,2,1]],[[1,2,2,0],[1,4,2,1],[0,3,0,2],[1,2,2,1]],[[1,2,3,0],[1,3,2,1],[0,3,0,2],[1,2,2,1]],[[1,3,2,0],[1,3,2,1],[0,3,0,2],[1,2,2,1]],[[2,2,2,0],[1,3,2,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[1,4,2,1],[0,2,3,2],[1,2,1,0]],[[1,2,3,0],[1,3,2,1],[0,2,3,2],[1,2,1,0]],[[1,3,2,0],[1,3,2,1],[0,2,3,2],[1,2,1,0]],[[2,2,2,0],[1,3,2,1],[0,2,3,2],[1,2,1,0]],[[1,2,2,0],[1,4,2,1],[0,2,3,2],[1,2,0,1]],[[1,2,3,0],[1,3,2,1],[0,2,3,2],[1,2,0,1]],[[1,3,2,0],[1,3,2,1],[0,2,3,2],[1,2,0,1]],[[2,2,2,0],[1,3,2,1],[0,2,3,2],[1,2,0,1]],[[1,2,2,0],[1,4,2,1],[0,2,3,2],[1,1,2,0]],[[1,2,3,0],[1,3,2,1],[0,2,3,2],[1,1,2,0]],[[1,3,2,0],[1,3,2,1],[0,2,3,2],[1,1,2,0]],[[2,2,2,0],[1,3,2,1],[0,2,3,2],[1,1,2,0]],[[1,2,2,0],[1,4,2,1],[0,2,3,2],[1,1,1,1]],[[1,2,3,0],[1,3,2,1],[0,2,3,2],[1,1,1,1]],[[1,3,2,0],[1,3,2,1],[0,2,3,2],[1,1,1,1]],[[2,2,2,0],[1,3,2,1],[0,2,3,2],[1,1,1,1]],[[1,2,2,0],[1,4,2,1],[0,2,3,2],[1,0,2,1]],[[1,2,3,0],[1,3,2,1],[0,2,3,2],[1,0,2,1]],[[1,3,2,0],[1,3,2,1],[0,2,3,2],[1,0,2,1]],[[2,2,2,0],[1,3,2,1],[0,2,3,2],[1,0,2,1]],[[1,2,2,0],[1,4,2,1],[0,2,3,1],[1,2,1,1]],[[1,2,3,0],[1,3,2,1],[0,2,3,1],[1,2,1,1]],[[1,3,2,0],[1,3,2,1],[0,2,3,1],[1,2,1,1]],[[2,2,2,0],[1,3,2,1],[0,2,3,1],[1,2,1,1]],[[1,2,2,0],[1,4,2,1],[0,2,3,1],[1,1,2,1]],[[1,2,3,0],[1,3,2,1],[0,2,3,1],[1,1,2,1]],[[1,3,2,0],[1,3,2,1],[0,2,3,1],[1,1,2,1]],[[2,2,2,0],[1,3,2,1],[0,2,3,1],[1,1,2,1]],[[1,2,2,0],[1,4,2,1],[0,1,3,2],[1,2,2,0]],[[1,2,3,0],[1,3,2,1],[0,1,3,2],[1,2,2,0]],[[1,3,2,0],[1,3,2,1],[0,1,3,2],[1,2,2,0]],[[2,2,2,0],[1,3,2,1],[0,1,3,2],[1,2,2,0]],[[1,2,2,0],[1,4,2,1],[0,1,3,2],[1,2,1,1]],[[1,2,3,0],[1,3,2,1],[0,1,3,2],[1,2,1,1]],[[1,3,2,0],[1,3,2,1],[0,1,3,2],[1,2,1,1]],[[2,2,2,0],[1,3,2,1],[0,1,3,2],[1,2,1,1]],[[1,2,2,0],[1,4,2,1],[0,1,3,1],[1,2,2,1]],[[1,2,3,0],[1,3,2,1],[0,1,3,1],[1,2,2,1]],[[1,3,2,0],[1,3,2,1],[0,1,3,1],[1,2,2,1]],[[2,2,2,0],[1,3,2,1],[0,1,3,1],[1,2,2,1]],[[0,3,2,1],[2,3,2,2],[2,3,3,0],[1,0,0,0]],[[0,2,3,1],[2,3,2,2],[2,3,3,0],[1,0,0,0]],[[0,2,2,2],[2,3,2,2],[2,3,3,0],[1,0,0,0]],[[0,2,2,1],[3,3,2,2],[2,3,3,0],[1,0,0,0]],[[0,2,2,1],[2,4,2,2],[2,3,3,0],[1,0,0,0]],[[0,2,2,1],[2,3,2,2],[3,3,3,0],[1,0,0,0]],[[1,2,2,0],[1,4,1,2],[2,3,3,1],[1,0,1,0]],[[1,2,3,0],[1,3,1,2],[2,3,3,1],[1,0,1,0]],[[1,3,2,0],[1,3,1,2],[2,3,3,1],[1,0,1,0]],[[2,2,2,0],[1,3,1,2],[2,3,3,1],[1,0,1,0]],[[1,2,2,0],[1,4,1,2],[2,3,3,1],[1,0,0,1]],[[1,2,3,0],[1,3,1,2],[2,3,3,1],[1,0,0,1]],[[1,3,2,0],[1,3,1,2],[2,3,3,1],[1,0,0,1]],[[2,2,2,0],[1,3,1,2],[2,3,3,1],[1,0,0,1]],[[1,2,2,0],[1,4,1,2],[2,3,3,0],[1,0,1,1]],[[1,2,3,0],[1,3,1,2],[2,3,3,0],[1,0,1,1]],[[1,3,2,0],[1,3,1,2],[2,3,3,0],[1,0,1,1]],[[2,2,2,0],[1,3,1,2],[2,3,3,0],[1,0,1,1]],[[1,2,2,0],[1,4,1,2],[2,2,3,1],[1,2,0,0]],[[1,2,3,0],[1,3,1,2],[2,2,3,1],[1,2,0,0]],[[1,3,2,0],[1,3,1,2],[2,2,3,1],[1,2,0,0]],[[2,2,2,0],[1,3,1,2],[2,2,3,1],[1,2,0,0]],[[1,2,2,0],[1,4,1,2],[2,2,3,1],[1,1,1,0]],[[1,2,3,0],[1,3,1,2],[2,2,3,1],[1,1,1,0]],[[1,3,2,0],[1,3,1,2],[2,2,3,1],[1,1,1,0]],[[2,2,2,0],[1,3,1,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,0],[1,4,1,2],[2,2,3,1],[1,1,0,1]],[[1,2,3,0],[1,3,1,2],[2,2,3,1],[1,1,0,1]],[[1,3,2,0],[1,3,1,2],[2,2,3,1],[1,1,0,1]],[[2,2,2,0],[1,3,1,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,0],[1,4,1,2],[2,2,3,1],[1,0,2,0]],[[1,2,3,0],[1,3,1,2],[2,2,3,1],[1,0,2,0]],[[1,3,2,0],[1,3,1,2],[2,2,3,1],[1,0,2,0]],[[2,2,2,0],[1,3,1,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,0],[1,4,1,2],[2,2,3,1],[1,0,1,1]],[[1,2,3,0],[1,3,1,2],[2,2,3,1],[1,0,1,1]],[[1,3,2,0],[1,3,1,2],[2,2,3,1],[1,0,1,1]],[[2,2,2,0],[1,3,1,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,0],[1,4,1,2],[2,2,3,1],[0,2,1,0]],[[1,2,3,0],[1,3,1,2],[2,2,3,1],[0,2,1,0]],[[1,3,2,0],[1,3,1,2],[2,2,3,1],[0,2,1,0]],[[2,2,2,0],[1,3,1,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,0],[1,4,1,2],[2,2,3,1],[0,2,0,1]],[[1,2,3,0],[1,3,1,2],[2,2,3,1],[0,2,0,1]],[[1,3,2,0],[1,3,1,2],[2,2,3,1],[0,2,0,1]],[[2,2,2,0],[1,3,1,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,0],[1,4,1,2],[2,2,3,1],[0,1,2,0]],[[1,2,3,0],[1,3,1,2],[2,2,3,1],[0,1,2,0]],[[1,3,2,0],[1,3,1,2],[2,2,3,1],[0,1,2,0]],[[2,2,2,0],[1,3,1,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,0],[1,4,1,2],[2,2,3,1],[0,1,1,1]],[[1,2,3,0],[1,3,1,2],[2,2,3,1],[0,1,1,1]],[[1,3,2,0],[1,3,1,2],[2,2,3,1],[0,1,1,1]],[[2,2,2,0],[1,3,1,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,0],[1,4,1,2],[2,2,3,0],[1,2,0,1]],[[1,2,3,0],[1,3,1,2],[2,2,3,0],[1,2,0,1]],[[1,3,2,0],[1,3,1,2],[2,2,3,0],[1,2,0,1]],[[2,2,2,0],[1,3,1,2],[2,2,3,0],[1,2,0,1]],[[1,2,2,0],[1,4,1,2],[2,2,3,0],[1,1,1,1]],[[1,2,3,0],[1,3,1,2],[2,2,3,0],[1,1,1,1]],[[1,3,2,0],[1,3,1,2],[2,2,3,0],[1,1,1,1]],[[2,2,2,0],[1,3,1,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,0],[1,4,1,2],[2,2,3,0],[1,0,2,1]],[[1,2,3,0],[1,3,1,2],[2,2,3,0],[1,0,2,1]],[[1,3,2,0],[1,3,1,2],[2,2,3,0],[1,0,2,1]],[[2,2,2,0],[1,3,1,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,0],[1,4,1,2],[2,2,3,0],[0,2,1,1]],[[1,2,3,0],[1,3,1,2],[2,2,3,0],[0,2,1,1]],[[1,3,2,0],[1,3,1,2],[2,2,3,0],[0,2,1,1]],[[2,2,2,0],[1,3,1,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,0],[1,4,1,2],[2,2,3,0],[0,1,2,1]],[[1,2,3,0],[1,3,1,2],[2,2,3,0],[0,1,2,1]],[[1,3,2,0],[1,3,1,2],[2,2,3,0],[0,1,2,1]],[[2,2,2,0],[1,3,1,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,0],[1,4,1,2],[2,2,2,1],[1,1,2,0]],[[1,2,3,0],[1,3,1,2],[2,2,2,1],[1,1,2,0]],[[1,3,2,0],[1,3,1,2],[2,2,2,1],[1,1,2,0]],[[2,2,2,0],[1,3,1,2],[2,2,2,1],[1,1,2,0]],[[1,2,2,0],[1,4,1,2],[2,2,2,1],[0,2,2,0]],[[1,2,3,0],[1,3,1,2],[2,2,2,1],[0,2,2,0]],[[1,3,2,0],[1,3,1,2],[2,2,2,1],[0,2,2,0]],[[2,2,2,0],[1,3,1,2],[2,2,2,1],[0,2,2,0]],[[1,2,2,0],[1,4,1,2],[2,2,2,0],[1,1,2,1]],[[1,2,3,0],[1,3,1,2],[2,2,2,0],[1,1,2,1]],[[1,3,2,0],[1,3,1,2],[2,2,2,0],[1,1,2,1]],[[2,2,2,0],[1,3,1,2],[2,2,2,0],[1,1,2,1]],[[1,2,2,0],[1,4,1,2],[2,2,2,0],[0,2,2,1]],[[1,2,3,0],[1,3,1,2],[2,2,2,0],[0,2,2,1]],[[1,3,2,0],[1,3,1,2],[2,2,2,0],[0,2,2,1]],[[2,2,2,0],[1,3,1,2],[2,2,2,0],[0,2,2,1]],[[1,2,2,0],[1,4,1,2],[2,2,0,2],[1,1,2,1]],[[1,2,3,0],[1,3,1,2],[2,2,0,2],[1,1,2,1]],[[1,3,2,0],[1,3,1,2],[2,2,0,2],[1,1,2,1]],[[2,2,2,0],[1,3,1,2],[2,2,0,2],[1,1,2,1]],[[1,2,2,0],[1,4,1,2],[2,2,0,2],[0,2,2,1]],[[1,2,3,0],[1,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,3,2,0],[1,3,1,2],[2,2,0,2],[0,2,2,1]],[[2,2,2,0],[1,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[1,4,1,2],[2,1,3,1],[1,2,1,0]],[[1,2,3,0],[1,3,1,2],[2,1,3,1],[1,2,1,0]],[[1,3,2,0],[1,3,1,2],[2,1,3,1],[1,2,1,0]],[[2,2,2,0],[1,3,1,2],[2,1,3,1],[1,2,1,0]],[[1,2,2,0],[1,4,1,2],[2,1,3,1],[1,2,0,1]],[[1,2,3,0],[1,3,1,2],[2,1,3,1],[1,2,0,1]],[[1,3,2,0],[1,3,1,2],[2,1,3,1],[1,2,0,1]],[[2,2,2,0],[1,3,1,2],[2,1,3,1],[1,2,0,1]],[[1,2,2,0],[1,4,1,2],[2,1,3,0],[1,2,1,1]],[[1,2,3,0],[1,3,1,2],[2,1,3,0],[1,2,1,1]],[[1,3,2,0],[1,3,1,2],[2,1,3,0],[1,2,1,1]],[[2,2,2,0],[1,3,1,2],[2,1,3,0],[1,2,1,1]],[[1,2,2,0],[1,4,1,2],[2,1,2,1],[1,2,2,0]],[[1,2,3,0],[1,3,1,2],[2,1,2,1],[1,2,2,0]],[[1,3,2,0],[1,3,1,2],[2,1,2,1],[1,2,2,0]],[[2,2,2,0],[1,3,1,2],[2,1,2,1],[1,2,2,0]],[[1,2,2,0],[1,4,1,2],[2,1,2,0],[1,2,2,1]],[[1,2,3,0],[1,3,1,2],[2,1,2,0],[1,2,2,1]],[[1,3,2,0],[1,3,1,2],[2,1,2,0],[1,2,2,1]],[[2,2,2,0],[1,3,1,2],[2,1,2,0],[1,2,2,1]],[[1,2,2,0],[1,4,1,2],[2,1,0,2],[1,2,2,1]],[[1,2,3,0],[1,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[1,3,1,2],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[1,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[1,4,1,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,0],[1,3,1,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,0],[1,3,1,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,0],[1,3,1,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,0],[1,4,1,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,0],[1,3,1,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,0],[1,3,1,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,0],[1,3,1,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,0],[1,4,1,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,0],[1,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,3,2,0],[1,3,1,2],[2,0,1,2],[1,2,2,1]],[[2,2,2,0],[1,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[1,3,1,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,0],[1,4,1,2],[1,3,3,1],[1,2,0,0]],[[1,2,3,0],[1,3,1,2],[1,3,3,1],[1,2,0,0]],[[1,3,2,0],[1,3,1,2],[1,3,3,1],[1,2,0,0]],[[2,2,2,0],[1,3,1,2],[1,3,3,1],[1,2,0,0]],[[1,2,2,0],[1,3,1,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,0],[1,3,1,2],[1,4,3,1],[1,1,1,0]],[[1,2,2,0],[1,4,1,2],[1,3,3,1],[1,1,1,0]],[[1,2,3,0],[1,3,1,2],[1,3,3,1],[1,1,1,0]],[[1,3,2,0],[1,3,1,2],[1,3,3,1],[1,1,1,0]],[[2,2,2,0],[1,3,1,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,0],[1,3,1,2],[1,3,4,1],[1,1,0,1]],[[1,2,2,0],[1,3,1,2],[1,4,3,1],[1,1,0,1]],[[1,2,2,0],[1,4,1,2],[1,3,3,1],[1,1,0,1]],[[1,2,3,0],[1,3,1,2],[1,3,3,1],[1,1,0,1]],[[1,3,2,0],[1,3,1,2],[1,3,3,1],[1,1,0,1]],[[2,2,2,0],[1,3,1,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,0],[1,3,1,2],[1,3,3,1],[1,0,3,0]],[[1,2,2,0],[1,3,1,2],[1,3,4,1],[1,0,2,0]],[[1,2,2,0],[1,3,1,2],[1,4,3,1],[1,0,2,0]],[[1,2,2,0],[1,4,1,2],[1,3,3,1],[1,0,2,0]],[[1,2,3,0],[1,3,1,2],[1,3,3,1],[1,0,2,0]],[[1,3,2,0],[1,3,1,2],[1,3,3,1],[1,0,2,0]],[[2,2,2,0],[1,3,1,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,0],[1,3,1,2],[1,3,4,1],[1,0,1,1]],[[1,2,2,0],[1,3,1,2],[1,4,3,1],[1,0,1,1]],[[1,2,2,0],[1,4,1,2],[1,3,3,1],[1,0,1,1]],[[1,2,3,0],[1,3,1,2],[1,3,3,1],[1,0,1,1]],[[1,3,2,0],[1,3,1,2],[1,3,3,1],[1,0,1,1]],[[2,2,2,0],[1,3,1,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,0],[1,3,1,2],[1,3,3,1],[0,3,1,0]],[[1,2,2,0],[1,3,1,2],[1,3,4,1],[0,2,1,0]],[[1,2,2,0],[1,3,1,2],[1,4,3,1],[0,2,1,0]],[[1,2,2,0],[1,4,1,2],[1,3,3,1],[0,2,1,0]],[[1,2,3,0],[1,3,1,2],[1,3,3,1],[0,2,1,0]],[[1,3,2,0],[1,3,1,2],[1,3,3,1],[0,2,1,0]],[[2,2,2,0],[1,3,1,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,0],[1,3,1,2],[1,3,3,1],[0,3,0,1]],[[1,2,2,0],[1,3,1,2],[1,3,4,1],[0,2,0,1]],[[1,2,2,0],[1,3,1,2],[1,4,3,1],[0,2,0,1]],[[1,2,2,0],[1,4,1,2],[1,3,3,1],[0,2,0,1]],[[1,2,3,0],[1,3,1,2],[1,3,3,1],[0,2,0,1]],[[1,3,2,0],[1,3,1,2],[1,3,3,1],[0,2,0,1]],[[2,2,2,0],[1,3,1,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,0],[1,3,1,2],[1,3,3,1],[0,1,3,0]],[[1,2,2,0],[1,3,1,2],[1,3,4,1],[0,1,2,0]],[[1,2,2,0],[1,3,1,2],[1,4,3,1],[0,1,2,0]],[[1,2,2,0],[1,4,1,2],[1,3,3,1],[0,1,2,0]],[[1,2,3,0],[1,3,1,2],[1,3,3,1],[0,1,2,0]],[[1,3,2,0],[1,3,1,2],[1,3,3,1],[0,1,2,0]],[[2,2,2,0],[1,3,1,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,0],[1,3,1,2],[1,3,4,1],[0,1,1,1]],[[1,2,2,0],[1,3,1,2],[1,4,3,1],[0,1,1,1]],[[1,2,2,0],[1,4,1,2],[1,3,3,1],[0,1,1,1]],[[1,2,3,0],[1,3,1,2],[1,3,3,1],[0,1,1,1]],[[1,3,2,0],[1,3,1,2],[1,3,3,1],[0,1,1,1]],[[2,2,2,0],[1,3,1,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,0],[1,3,1,2],[1,4,3,0],[1,2,0,1]],[[1,2,2,0],[1,4,1,2],[1,3,3,0],[1,2,0,1]],[[1,2,3,0],[1,3,1,2],[1,3,3,0],[1,2,0,1]],[[1,3,2,0],[1,3,1,2],[1,3,3,0],[1,2,0,1]],[[2,2,2,0],[1,3,1,2],[1,3,3,0],[1,2,0,1]],[[1,2,2,0],[1,3,1,2],[1,3,4,0],[1,1,1,1]],[[0,3,2,1],[2,3,3,0],[0,0,3,1],[1,2,2,1]],[[0,2,3,1],[2,3,3,0],[0,0,3,1],[1,2,2,1]],[[0,2,2,2],[2,3,3,0],[0,0,3,1],[1,2,2,1]],[[0,2,2,1],[2,3,4,0],[0,0,3,1],[1,2,2,1]],[[0,3,2,1],[2,3,3,0],[0,0,3,2],[1,2,1,1]],[[0,2,3,1],[2,3,3,0],[0,0,3,2],[1,2,1,1]],[[0,2,2,2],[2,3,3,0],[0,0,3,2],[1,2,1,1]],[[0,2,2,1],[2,3,4,0],[0,0,3,2],[1,2,1,1]],[[0,3,2,1],[2,3,3,0],[0,0,3,2],[1,2,2,0]],[[0,2,3,1],[2,3,3,0],[0,0,3,2],[1,2,2,0]],[[0,2,2,2],[2,3,3,0],[0,0,3,2],[1,2,2,0]],[[0,2,2,1],[2,3,4,0],[0,0,3,2],[1,2,2,0]],[[0,3,2,1],[2,3,3,0],[0,1,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,3,0],[0,1,3,0],[1,2,2,1]],[[0,2,2,1],[3,3,3,0],[0,1,3,0],[1,2,2,1]],[[0,2,2,1],[2,4,3,0],[0,1,3,0],[1,2,2,1]],[[0,3,2,1],[2,3,3,0],[0,1,3,1],[1,1,2,1]],[[0,2,3,1],[2,3,3,0],[0,1,3,1],[1,1,2,1]],[[0,2,2,2],[2,3,3,0],[0,1,3,1],[1,1,2,1]],[[0,2,2,1],[2,3,4,0],[0,1,3,1],[1,1,2,1]],[[0,3,2,1],[2,3,3,0],[0,1,3,1],[1,2,2,0]],[[0,2,3,1],[2,3,3,0],[0,1,3,1],[1,2,2,0]],[[0,2,2,1],[3,3,3,0],[0,1,3,1],[1,2,2,0]],[[0,2,2,1],[2,4,3,0],[0,1,3,1],[1,2,2,0]],[[0,3,2,1],[2,3,3,0],[0,1,3,2],[1,0,2,1]],[[0,2,3,1],[2,3,3,0],[0,1,3,2],[1,0,2,1]],[[0,2,2,2],[2,3,3,0],[0,1,3,2],[1,0,2,1]],[[0,2,2,1],[2,3,4,0],[0,1,3,2],[1,0,2,1]],[[0,3,2,1],[2,3,3,0],[0,1,3,2],[1,1,1,1]],[[0,2,3,1],[2,3,3,0],[0,1,3,2],[1,1,1,1]],[[0,2,2,2],[2,3,3,0],[0,1,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,4,0],[0,1,3,2],[1,1,1,1]],[[0,3,2,1],[2,3,3,0],[0,1,3,2],[1,1,2,0]],[[0,2,3,1],[2,3,3,0],[0,1,3,2],[1,1,2,0]],[[0,2,2,2],[2,3,3,0],[0,1,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,4,0],[0,1,3,2],[1,1,2,0]],[[0,3,2,1],[2,3,3,0],[0,1,3,2],[1,2,0,1]],[[0,2,3,1],[2,3,3,0],[0,1,3,2],[1,2,0,1]],[[0,2,2,2],[2,3,3,0],[0,1,3,2],[1,2,0,1]],[[0,2,2,1],[2,3,4,0],[0,1,3,2],[1,2,0,1]],[[0,3,2,1],[2,3,3,0],[0,1,3,2],[1,2,1,0]],[[0,2,3,1],[2,3,3,0],[0,1,3,2],[1,2,1,0]],[[0,2,2,2],[2,3,3,0],[0,1,3,2],[1,2,1,0]],[[0,2,2,1],[2,3,4,0],[0,1,3,2],[1,2,1,0]],[[1,2,2,0],[1,3,1,2],[1,4,3,0],[1,1,1,1]],[[1,2,2,0],[1,4,1,2],[1,3,3,0],[1,1,1,1]],[[1,2,3,0],[1,3,1,2],[1,3,3,0],[1,1,1,1]],[[1,3,2,0],[1,3,1,2],[1,3,3,0],[1,1,1,1]],[[2,2,2,0],[1,3,1,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,0],[1,3,1,2],[1,3,3,0],[1,0,2,2]],[[1,2,2,0],[1,3,1,2],[1,3,3,0],[1,0,3,1]],[[1,2,2,0],[1,3,1,2],[1,3,4,0],[1,0,2,1]],[[1,2,2,0],[1,3,1,2],[1,4,3,0],[1,0,2,1]],[[1,2,2,0],[1,4,1,2],[1,3,3,0],[1,0,2,1]],[[1,2,3,0],[1,3,1,2],[1,3,3,0],[1,0,2,1]],[[1,3,2,0],[1,3,1,2],[1,3,3,0],[1,0,2,1]],[[2,2,2,0],[1,3,1,2],[1,3,3,0],[1,0,2,1]],[[0,3,2,1],[2,3,3,0],[0,2,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,3,0],[0,2,3,0],[1,1,2,1]],[[0,2,2,1],[3,3,3,0],[0,2,3,0],[1,1,2,1]],[[0,2,2,1],[2,4,3,0],[0,2,3,0],[1,1,2,1]],[[0,3,2,1],[2,3,3,0],[0,2,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,3,0],[0,2,3,0],[1,2,1,1]],[[0,2,2,1],[3,3,3,0],[0,2,3,0],[1,2,1,1]],[[0,2,2,1],[2,4,3,0],[0,2,3,0],[1,2,1,1]],[[0,3,2,1],[2,3,3,0],[0,2,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,3,0],[0,2,3,1],[1,1,1,1]],[[0,2,2,1],[2,4,3,0],[0,2,3,1],[1,1,1,1]],[[0,3,2,1],[2,3,3,0],[0,2,3,1],[1,1,2,0]],[[0,2,3,1],[2,3,3,0],[0,2,3,1],[1,1,2,0]],[[0,2,2,1],[3,3,3,0],[0,2,3,1],[1,1,2,0]],[[0,2,2,1],[2,4,3,0],[0,2,3,1],[1,1,2,0]],[[0,3,2,1],[2,3,3,0],[0,2,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,3,0],[0,2,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,3,0],[0,2,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,3,0],[0,2,3,1],[1,2,0,1]],[[0,3,2,1],[2,3,3,0],[0,2,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,3,0],[0,2,3,1],[1,2,1,0]],[[0,2,2,1],[3,3,3,0],[0,2,3,1],[1,2,1,0]],[[0,2,2,1],[2,4,3,0],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[1,3,1,2],[1,3,3,0],[0,3,1,1]],[[1,2,2,0],[1,3,1,2],[1,3,4,0],[0,2,1,1]],[[1,2,2,0],[1,3,1,2],[1,4,3,0],[0,2,1,1]],[[1,2,2,0],[1,4,1,2],[1,3,3,0],[0,2,1,1]],[[1,2,3,0],[1,3,1,2],[1,3,3,0],[0,2,1,1]],[[1,3,2,0],[1,3,1,2],[1,3,3,0],[0,2,1,1]],[[2,2,2,0],[1,3,1,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,0],[1,3,1,2],[1,3,3,0],[0,1,2,2]],[[1,2,2,0],[1,3,1,2],[1,3,3,0],[0,1,3,1]],[[1,2,2,0],[1,3,1,2],[1,3,4,0],[0,1,2,1]],[[1,2,2,0],[1,3,1,2],[1,4,3,0],[0,1,2,1]],[[1,2,2,0],[1,4,1,2],[1,3,3,0],[0,1,2,1]],[[1,2,3,0],[1,3,1,2],[1,3,3,0],[0,1,2,1]],[[1,3,2,0],[1,3,1,2],[1,3,3,0],[0,1,2,1]],[[2,2,2,0],[1,3,1,2],[1,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,0],[0,3,1,0],[1,2,2,1]],[[0,2,3,1],[2,3,3,0],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[3,3,3,0],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,4,3,0],[0,3,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,3,0],[0,4,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,3,0],[0,3,1,0],[2,2,2,1]],[[0,2,2,1],[2,3,3,0],[0,3,1,0],[1,3,2,1]],[[0,2,2,1],[2,3,3,0],[0,3,1,0],[1,2,3,1]],[[0,3,2,1],[2,3,3,0],[0,3,1,1],[1,2,2,0]],[[0,2,3,1],[2,3,3,0],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[3,3,3,0],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,4,3,0],[0,3,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,3,0],[0,4,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,3,0],[0,3,1,1],[2,2,2,0]],[[0,2,2,1],[2,3,3,0],[0,3,1,1],[1,3,2,0]],[[1,2,2,0],[1,3,1,2],[1,4,2,1],[1,1,2,0]],[[1,2,2,0],[1,4,1,2],[1,3,2,1],[1,1,2,0]],[[1,2,3,0],[1,3,1,2],[1,3,2,1],[1,1,2,0]],[[1,3,2,0],[1,3,1,2],[1,3,2,1],[1,1,2,0]],[[2,2,2,0],[1,3,1,2],[1,3,2,1],[1,1,2,0]],[[0,3,2,1],[2,3,3,0],[0,3,2,0],[1,1,2,1]],[[0,2,3,1],[2,3,3,0],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[3,3,3,0],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,4,3,0],[0,3,2,0],[1,1,2,1]],[[0,2,2,1],[2,3,3,0],[0,4,2,0],[1,1,2,1]],[[0,3,2,1],[2,3,3,0],[0,3,2,0],[1,2,1,1]],[[0,2,3,1],[2,3,3,0],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[3,3,3,0],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[2,4,3,0],[0,3,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,3,0],[0,4,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,3,0],[0,3,2,0],[2,2,1,1]],[[0,2,2,1],[2,3,3,0],[0,3,2,0],[1,3,1,1]],[[0,3,2,1],[2,3,3,0],[0,3,2,1],[1,1,1,1]],[[0,2,3,1],[2,3,3,0],[0,3,2,1],[1,1,1,1]],[[0,2,2,1],[2,4,3,0],[0,3,2,1],[1,1,1,1]],[[0,3,2,1],[2,3,3,0],[0,3,2,1],[1,1,2,0]],[[0,2,3,1],[2,3,3,0],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[3,3,3,0],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,4,3,0],[0,3,2,1],[1,1,2,0]],[[0,2,2,1],[2,3,3,0],[0,4,2,1],[1,1,2,0]],[[0,3,2,1],[2,3,3,0],[0,3,2,1],[1,2,0,1]],[[0,2,3,1],[2,3,3,0],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[3,3,3,0],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,4,3,0],[0,3,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,3,0],[0,4,2,1],[1,2,0,1]],[[0,3,2,1],[2,3,3,0],[0,3,2,1],[1,2,1,0]],[[0,2,3,1],[2,3,3,0],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[3,3,3,0],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[2,4,3,0],[0,3,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[0,4,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[0,3,2,1],[2,2,1,0]],[[0,2,2,1],[2,3,3,0],[0,3,2,1],[1,3,1,0]],[[1,2,2,0],[1,3,1,2],[1,3,2,1],[0,2,3,0]],[[1,2,2,0],[1,3,1,2],[1,3,2,1],[0,3,2,0]],[[1,2,2,0],[1,3,1,2],[1,4,2,1],[0,2,2,0]],[[1,2,2,0],[1,4,1,2],[1,3,2,1],[0,2,2,0]],[[1,2,3,0],[1,3,1,2],[1,3,2,1],[0,2,2,0]],[[1,3,2,0],[1,3,1,2],[1,3,2,1],[0,2,2,0]],[[2,2,2,0],[1,3,1,2],[1,3,2,1],[0,2,2,0]],[[1,2,2,0],[1,3,1,2],[1,4,2,0],[1,1,2,1]],[[1,2,2,0],[1,4,1,2],[1,3,2,0],[1,1,2,1]],[[1,2,3,0],[1,3,1,2],[1,3,2,0],[1,1,2,1]],[[1,3,2,0],[1,3,1,2],[1,3,2,0],[1,1,2,1]],[[2,2,2,0],[1,3,1,2],[1,3,2,0],[1,1,2,1]],[[1,2,2,0],[1,3,1,2],[1,3,2,0],[0,2,2,2]],[[1,2,2,0],[1,3,1,2],[1,3,2,0],[0,2,3,1]],[[1,2,2,0],[1,3,1,2],[1,3,2,0],[0,3,2,1]],[[1,2,2,0],[1,3,1,2],[1,4,2,0],[0,2,2,1]],[[1,2,2,0],[1,4,1,2],[1,3,2,0],[0,2,2,1]],[[1,2,3,0],[1,3,1,2],[1,3,2,0],[0,2,2,1]],[[1,3,2,0],[1,3,1,2],[1,3,2,0],[0,2,2,1]],[[2,2,2,0],[1,3,1,2],[1,3,2,0],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[0,3,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,3,0],[0,3,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,3,0],[0,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,0],[0,3,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,0],[0,3,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,3,0],[0,3,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,0],[0,3,3,0],[1,1,2,0]],[[0,2,3,1],[2,3,3,0],[0,3,3,0],[1,1,2,0]],[[0,2,2,1],[3,3,3,0],[0,3,3,0],[1,1,2,0]],[[0,2,2,1],[2,4,3,0],[0,3,3,0],[1,1,2,0]],[[0,2,2,1],[2,3,3,0],[0,4,3,0],[1,1,2,0]],[[0,3,2,1],[2,3,3,0],[0,3,3,0],[1,2,1,0]],[[0,2,3,1],[2,3,3,0],[0,3,3,0],[1,2,1,0]],[[0,2,2,1],[3,3,3,0],[0,3,3,0],[1,2,1,0]],[[0,2,2,1],[2,4,3,0],[0,3,3,0],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[0,4,3,0],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[0,3,3,0],[2,2,1,0]],[[0,2,2,1],[2,3,3,0],[0,3,3,0],[1,3,1,0]],[[1,2,2,0],[1,3,1,2],[1,4,0,2],[1,1,2,1]],[[1,2,2,0],[1,4,1,2],[1,3,0,2],[1,1,2,1]],[[1,2,3,0],[1,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,3,2,0],[1,3,1,2],[1,3,0,2],[1,1,2,1]],[[2,2,2,0],[1,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[1,3,1,2],[1,3,0,2],[0,2,2,2]],[[1,2,2,0],[1,3,1,2],[1,3,0,2],[0,2,3,1]],[[0,3,2,1],[2,3,3,0],[0,3,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,3,0],[0,3,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,3,0],[0,3,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,0],[0,3,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,3,0],[0,3,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,3,0],[0,3,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,3,0],[0,3,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,0],[0,3,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,3,0],[0,3,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,0],[0,3,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,0],[0,3,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,3,0],[0,3,3,1],[0,2,1,0]],[[1,2,2,0],[1,3,1,2],[1,3,0,2],[0,3,2,1]],[[1,2,2,0],[1,3,1,2],[1,3,0,3],[0,2,2,1]],[[1,2,2,0],[1,3,1,2],[1,4,0,2],[0,2,2,1]],[[1,2,2,0],[1,3,1,3],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[1,4,1,2],[1,3,0,2],[0,2,2,1]],[[1,2,3,0],[1,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,3,2,0],[1,3,1,2],[1,3,0,2],[0,2,2,1]],[[2,2,2,0],[1,3,1,2],[1,3,0,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[0,3,3,1],[1,2,0,0]],[[0,2,3,1],[2,3,3,0],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[3,3,3,0],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,4,3,0],[0,3,3,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,0],[0,4,3,1],[1,2,0,0]],[[1,2,2,0],[1,3,1,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,0],[1,3,1,2],[1,2,3,1],[0,3,2,0]],[[1,2,2,0],[1,3,1,2],[1,2,4,1],[0,2,2,0]],[[1,2,2,0],[1,3,1,2],[1,2,3,0],[0,2,2,2]],[[1,2,2,0],[1,3,1,2],[1,2,3,0],[0,2,3,1]],[[1,2,2,0],[1,3,1,2],[1,2,3,0],[0,3,2,1]],[[1,2,2,0],[1,3,1,2],[1,2,4,0],[0,2,2,1]],[[1,2,2,0],[1,3,1,2],[0,3,3,1],[1,3,1,0]],[[1,2,2,0],[1,3,1,2],[0,3,3,1],[2,2,1,0]],[[1,2,2,0],[1,3,1,2],[0,3,4,1],[1,2,1,0]],[[1,2,2,0],[1,3,1,2],[0,4,3,1],[1,2,1,0]],[[1,2,2,0],[1,4,1,2],[0,3,3,1],[1,2,1,0]],[[1,2,3,0],[1,3,1,2],[0,3,3,1],[1,2,1,0]],[[1,3,2,0],[1,3,1,2],[0,3,3,1],[1,2,1,0]],[[2,2,2,0],[1,3,1,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,0],[1,3,1,2],[0,3,3,1],[1,3,0,1]],[[1,2,2,0],[1,3,1,2],[0,3,3,1],[2,2,0,1]],[[1,2,2,0],[1,3,1,2],[0,3,4,1],[1,2,0,1]],[[1,2,2,0],[1,3,1,2],[0,4,3,1],[1,2,0,1]],[[1,2,2,0],[1,4,1,2],[0,3,3,1],[1,2,0,1]],[[1,2,3,0],[1,3,1,2],[0,3,3,1],[1,2,0,1]],[[1,3,2,0],[1,3,1,2],[0,3,3,1],[1,2,0,1]],[[2,2,2,0],[1,3,1,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,0],[1,3,1,2],[0,3,3,1],[1,1,3,0]],[[1,2,2,0],[1,3,1,2],[0,3,4,1],[1,1,2,0]],[[1,2,2,0],[1,3,1,2],[0,4,3,1],[1,1,2,0]],[[1,2,2,0],[1,4,1,2],[0,3,3,1],[1,1,2,0]],[[1,2,3,0],[1,3,1,2],[0,3,3,1],[1,1,2,0]],[[1,3,2,0],[1,3,1,2],[0,3,3,1],[1,1,2,0]],[[2,2,2,0],[1,3,1,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,0],[1,3,1,2],[0,3,4,1],[1,1,1,1]],[[1,2,2,0],[1,3,1,2],[0,4,3,1],[1,1,1,1]],[[1,2,2,0],[1,4,1,2],[0,3,3,1],[1,1,1,1]],[[1,2,3,0],[1,3,1,2],[0,3,3,1],[1,1,1,1]],[[1,3,2,0],[1,3,1,2],[0,3,3,1],[1,1,1,1]],[[2,2,2,0],[1,3,1,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,0],[1,3,1,2],[0,3,3,0],[1,3,1,1]],[[1,2,2,0],[1,3,1,2],[0,3,3,0],[2,2,1,1]],[[1,2,2,0],[1,3,1,2],[0,3,4,0],[1,2,1,1]],[[1,2,2,0],[1,3,1,2],[0,4,3,0],[1,2,1,1]],[[1,2,2,0],[1,4,1,2],[0,3,3,0],[1,2,1,1]],[[1,2,3,0],[1,3,1,2],[0,3,3,0],[1,2,1,1]],[[1,3,2,0],[1,3,1,2],[0,3,3,0],[1,2,1,1]],[[2,2,2,0],[1,3,1,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,0],[1,3,1,2],[0,3,3,0],[1,1,2,2]],[[1,2,2,0],[1,3,1,2],[0,3,3,0],[1,1,3,1]],[[1,2,2,0],[1,3,1,2],[0,3,4,0],[1,1,2,1]],[[1,2,2,0],[1,3,1,2],[0,4,3,0],[1,1,2,1]],[[1,2,2,0],[1,4,1,2],[0,3,3,0],[1,1,2,1]],[[1,2,3,0],[1,3,1,2],[0,3,3,0],[1,1,2,1]],[[1,3,2,0],[1,3,1,2],[0,3,3,0],[1,1,2,1]],[[2,2,2,0],[1,3,1,2],[0,3,3,0],[1,1,2,1]],[[0,3,2,1],[2,3,3,0],[1,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,3,0],[1,0,3,0],[1,2,2,1]],[[0,2,2,1],[3,3,3,0],[1,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,4,3,0],[1,0,3,0],[1,2,2,1]],[[0,3,2,1],[2,3,3,0],[1,0,3,1],[0,2,2,1]],[[0,2,3,1],[2,3,3,0],[1,0,3,1],[0,2,2,1]],[[0,2,2,2],[2,3,3,0],[1,0,3,1],[0,2,2,1]],[[0,2,2,1],[2,3,4,0],[1,0,3,1],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[1,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,3,3,0],[1,0,3,1],[1,2,2,0]],[[0,2,2,1],[3,3,3,0],[1,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,4,3,0],[1,0,3,1],[1,2,2,0]],[[0,3,2,1],[2,3,3,0],[1,0,3,2],[0,2,1,1]],[[0,2,3,1],[2,3,3,0],[1,0,3,2],[0,2,1,1]],[[0,2,2,2],[2,3,3,0],[1,0,3,2],[0,2,1,1]],[[0,2,2,1],[2,3,4,0],[1,0,3,2],[0,2,1,1]],[[0,3,2,1],[2,3,3,0],[1,0,3,2],[0,2,2,0]],[[0,2,3,1],[2,3,3,0],[1,0,3,2],[0,2,2,0]],[[0,2,2,2],[2,3,3,0],[1,0,3,2],[0,2,2,0]],[[0,2,2,1],[2,3,4,0],[1,0,3,2],[0,2,2,0]],[[1,2,2,0],[1,3,1,2],[0,3,2,1],[1,2,3,0]],[[1,2,2,0],[1,3,1,2],[0,3,2,1],[1,3,2,0]],[[1,2,2,0],[1,3,1,2],[0,3,2,1],[2,2,2,0]],[[1,2,2,0],[1,3,1,2],[0,4,2,1],[1,2,2,0]],[[1,2,2,0],[1,4,1,2],[0,3,2,1],[1,2,2,0]],[[1,2,3,0],[1,3,1,2],[0,3,2,1],[1,2,2,0]],[[1,3,2,0],[1,3,1,2],[0,3,2,1],[1,2,2,0]],[[2,2,2,0],[1,3,1,2],[0,3,2,1],[1,2,2,0]],[[1,2,2,0],[1,3,1,2],[0,3,2,0],[1,2,2,2]],[[1,2,2,0],[1,3,1,2],[0,3,2,0],[1,2,3,1]],[[1,2,2,0],[1,3,1,2],[0,3,2,0],[1,3,2,1]],[[0,3,2,1],[2,3,3,0],[1,1,3,0],[0,2,2,1]],[[0,2,3,1],[2,3,3,0],[1,1,3,0],[0,2,2,1]],[[0,2,2,1],[3,3,3,0],[1,1,3,0],[0,2,2,1]],[[0,2,2,1],[2,4,3,0],[1,1,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[1,1,3,1],[0,1,2,1]],[[0,2,3,1],[2,3,3,0],[1,1,3,1],[0,1,2,1]],[[0,2,2,2],[2,3,3,0],[1,1,3,1],[0,1,2,1]],[[0,2,2,1],[2,3,4,0],[1,1,3,1],[0,1,2,1]],[[0,3,2,1],[2,3,3,0],[1,1,3,1],[0,2,2,0]],[[0,2,3,1],[2,3,3,0],[1,1,3,1],[0,2,2,0]],[[0,2,2,1],[3,3,3,0],[1,1,3,1],[0,2,2,0]],[[0,2,2,1],[2,4,3,0],[1,1,3,1],[0,2,2,0]],[[0,3,2,1],[2,3,3,0],[1,1,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,3,0],[1,1,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,3,0],[1,1,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,4,0],[1,1,3,1],[1,0,2,1]],[[1,2,2,0],[1,3,1,2],[0,3,2,0],[2,2,2,1]],[[1,2,2,0],[1,3,1,2],[0,4,2,0],[1,2,2,1]],[[1,2,2,0],[1,4,1,2],[0,3,2,0],[1,2,2,1]],[[1,2,3,0],[1,3,1,2],[0,3,2,0],[1,2,2,1]],[[1,3,2,0],[1,3,1,2],[0,3,2,0],[1,2,2,1]],[[2,2,2,0],[1,3,1,2],[0,3,2,0],[1,2,2,1]],[[0,3,2,1],[2,3,3,0],[1,1,3,2],[0,0,2,1]],[[0,2,3,1],[2,3,3,0],[1,1,3,2],[0,0,2,1]],[[0,2,2,2],[2,3,3,0],[1,1,3,2],[0,0,2,1]],[[0,2,2,1],[2,3,4,0],[1,1,3,2],[0,0,2,1]],[[0,3,2,1],[2,3,3,0],[1,1,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,0],[1,1,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,0],[1,1,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,4,0],[1,1,3,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,0],[1,1,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,3,0],[1,1,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,0],[1,1,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,4,0],[1,1,3,2],[0,1,2,0]],[[0,3,2,1],[2,3,3,0],[1,1,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,0],[1,1,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,3,0],[1,1,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,4,0],[1,1,3,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,0],[1,1,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,3,0],[1,1,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,3,0],[1,1,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,4,0],[1,1,3,2],[0,2,1,0]],[[1,2,2,0],[1,3,1,2],[0,3,0,2],[1,2,2,2]],[[1,2,2,0],[1,3,1,2],[0,3,0,2],[1,2,3,1]],[[1,2,2,0],[1,3,1,2],[0,3,0,2],[1,3,2,1]],[[1,2,2,0],[1,3,1,2],[0,3,0,2],[2,2,2,1]],[[1,2,2,0],[1,3,1,2],[0,3,0,3],[1,2,2,1]],[[0,3,2,1],[2,3,3,0],[1,1,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,0],[1,1,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,0],[1,1,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,4,0],[1,1,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,0],[1,1,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,3,0],[1,1,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,0],[1,1,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,4,0],[1,1,3,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,0],[1,1,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,3,0],[1,1,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,0],[1,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,4,0],[1,1,3,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,0],[1,1,3,2],[1,1,1,0]],[[0,2,3,1],[2,3,3,0],[1,1,3,2],[1,1,1,0]],[[0,2,2,2],[2,3,3,0],[1,1,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,4,0],[1,1,3,2],[1,1,1,0]],[[1,2,2,0],[1,3,1,2],[0,4,0,2],[1,2,2,1]],[[1,2,2,0],[1,3,1,3],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[1,4,1,2],[0,3,0,2],[1,2,2,1]],[[1,2,3,0],[1,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,3,2,0],[1,3,1,2],[0,3,0,2],[1,2,2,1]],[[2,2,2,0],[1,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[1,3,1,2],[0,2,3,1],[1,2,3,0]],[[1,2,2,0],[1,3,1,2],[0,2,3,1],[1,3,2,0]],[[1,2,2,0],[1,3,1,2],[0,2,3,1],[2,2,2,0]],[[1,2,2,0],[1,3,1,2],[0,2,4,1],[1,2,2,0]],[[1,2,2,0],[1,3,1,2],[0,2,3,0],[1,2,2,2]],[[1,2,2,0],[1,3,1,2],[0,2,3,0],[1,2,3,1]],[[1,2,2,0],[1,3,1,2],[0,2,3,0],[1,3,2,1]],[[1,2,2,0],[1,3,1,2],[0,2,3,0],[2,2,2,1]],[[1,2,2,0],[1,3,1,2],[0,2,4,0],[1,2,2,1]],[[0,3,2,1],[2,3,3,0],[1,2,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,3,0],[1,2,3,0],[0,1,2,1]],[[0,2,2,1],[3,3,3,0],[1,2,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,3,0],[1,2,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,0],[1,2,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,0],[1,2,3,0],[0,2,1,1]],[[0,2,2,1],[3,3,3,0],[1,2,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,3,0],[1,2,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,0],[1,2,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,3,0],[1,2,3,0],[1,0,2,1]],[[0,2,2,1],[3,3,3,0],[1,2,3,0],[1,0,2,1]],[[0,2,2,1],[2,4,3,0],[1,2,3,0],[1,0,2,1]],[[0,3,2,1],[2,3,3,0],[1,2,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,0],[1,2,3,0],[1,1,1,1]],[[0,2,2,1],[3,3,3,0],[1,2,3,0],[1,1,1,1]],[[0,2,2,1],[2,4,3,0],[1,2,3,0],[1,1,1,1]],[[0,3,2,1],[2,3,3,0],[1,2,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,3,0],[1,2,3,1],[0,1,1,1]],[[0,2,2,1],[3,3,3,0],[1,2,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,3,0],[1,2,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,0],[1,2,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,3,0],[1,2,3,1],[0,1,2,0]],[[0,2,2,1],[3,3,3,0],[1,2,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,3,0],[1,2,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,3,0],[1,2,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,0],[1,2,3,1],[0,2,0,1]],[[0,2,2,1],[3,3,3,0],[1,2,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,3,0],[1,2,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,0],[1,2,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,0],[1,2,3,1],[0,2,1,0]],[[0,2,2,1],[3,3,3,0],[1,2,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,3,0],[1,2,3,1],[0,2,1,0]],[[0,3,2,1],[2,3,3,0],[1,2,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,3,0],[1,2,3,1],[1,0,1,1]],[[0,2,2,1],[3,3,3,0],[1,2,3,1],[1,0,1,1]],[[0,2,2,1],[2,4,3,0],[1,2,3,1],[1,0,1,1]],[[0,3,2,1],[2,3,3,0],[1,2,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,3,0],[1,2,3,1],[1,0,2,0]],[[0,2,2,1],[3,3,3,0],[1,2,3,1],[1,0,2,0]],[[0,2,2,1],[2,4,3,0],[1,2,3,1],[1,0,2,0]],[[0,3,2,1],[2,3,3,0],[1,2,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,0],[1,2,3,1],[1,1,0,1]],[[0,2,2,1],[3,3,3,0],[1,2,3,1],[1,1,0,1]],[[0,2,2,1],[2,4,3,0],[1,2,3,1],[1,1,0,1]],[[0,3,2,1],[2,3,3,0],[1,2,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,0],[1,2,3,1],[1,1,1,0]],[[0,2,2,1],[3,3,3,0],[1,2,3,1],[1,1,1,0]],[[0,2,2,1],[2,4,3,0],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[1,4,1,1],[2,3,3,2],[1,0,1,0]],[[1,2,3,0],[1,3,1,1],[2,3,3,2],[1,0,1,0]],[[1,3,2,0],[1,3,1,1],[2,3,3,2],[1,0,1,0]],[[2,2,2,0],[1,3,1,1],[2,3,3,2],[1,0,1,0]],[[1,2,2,0],[1,4,1,1],[2,3,3,2],[1,0,0,1]],[[1,2,3,0],[1,3,1,1],[2,3,3,2],[1,0,0,1]],[[1,3,2,0],[1,3,1,1],[2,3,3,2],[1,0,0,1]],[[2,2,2,0],[1,3,1,1],[2,3,3,2],[1,0,0,1]],[[0,3,2,1],[2,3,3,0],[1,2,3,2],[0,0,1,1]],[[0,2,3,1],[2,3,3,0],[1,2,3,2],[0,0,1,1]],[[0,2,2,2],[2,3,3,0],[1,2,3,2],[0,0,1,1]],[[0,2,2,1],[2,3,4,0],[1,2,3,2],[0,0,1,1]],[[0,3,2,1],[2,3,3,0],[1,2,3,2],[0,0,2,0]],[[0,2,3,1],[2,3,3,0],[1,2,3,2],[0,0,2,0]],[[0,2,2,2],[2,3,3,0],[1,2,3,2],[0,0,2,0]],[[0,2,2,1],[2,3,4,0],[1,2,3,2],[0,0,2,0]],[[1,2,2,0],[1,4,1,1],[2,3,3,1],[1,0,1,1]],[[1,3,2,0],[1,3,1,1],[2,3,3,1],[1,0,1,1]],[[2,2,2,0],[1,3,1,1],[2,3,3,1],[1,0,1,1]],[[0,3,2,1],[2,3,3,0],[1,3,1,0],[0,2,2,1]],[[0,2,3,1],[2,3,3,0],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[3,3,3,0],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,4,3,0],[1,3,1,0],[0,2,2,1]],[[0,2,2,1],[2,3,3,0],[1,4,1,0],[0,2,2,1]],[[0,2,2,1],[2,3,3,0],[1,3,1,0],[0,3,2,1]],[[0,2,2,1],[2,3,3,0],[1,3,1,0],[0,2,3,1]],[[0,3,2,1],[2,3,3,0],[1,3,1,0],[1,1,2,1]],[[0,2,3,1],[2,3,3,0],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[3,3,3,0],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,4,3,0],[1,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,3,3,0],[1,4,1,0],[1,1,2,1]],[[0,3,2,1],[2,3,3,0],[1,3,1,1],[0,2,2,0]],[[0,2,3,1],[2,3,3,0],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[3,3,3,0],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,4,3,0],[1,3,1,1],[0,2,2,0]],[[0,2,2,1],[2,3,3,0],[1,4,1,1],[0,2,2,0]],[[0,2,2,1],[2,3,3,0],[1,3,1,1],[0,3,2,0]],[[0,3,2,1],[2,3,3,0],[1,3,1,1],[1,1,2,0]],[[0,2,3,1],[2,3,3,0],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[3,3,3,0],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,4,3,0],[1,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,3,3,0],[1,4,1,1],[1,1,2,0]],[[1,2,2,0],[1,4,1,1],[2,2,3,2],[1,2,0,0]],[[1,2,3,0],[1,3,1,1],[2,2,3,2],[1,2,0,0]],[[1,3,2,0],[1,3,1,1],[2,2,3,2],[1,2,0,0]],[[2,2,2,0],[1,3,1,1],[2,2,3,2],[1,2,0,0]],[[1,2,2,0],[1,4,1,1],[2,2,3,2],[1,1,1,0]],[[1,2,3,0],[1,3,1,1],[2,2,3,2],[1,1,1,0]],[[1,3,2,0],[1,3,1,1],[2,2,3,2],[1,1,1,0]],[[2,2,2,0],[1,3,1,1],[2,2,3,2],[1,1,1,0]],[[0,3,2,1],[2,3,3,0],[1,3,2,0],[0,1,2,1]],[[0,2,3,1],[2,3,3,0],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[3,3,3,0],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,4,3,0],[1,3,2,0],[0,1,2,1]],[[0,2,2,1],[2,3,3,0],[1,4,2,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,0],[1,3,2,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,0],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[3,3,3,0],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,4,3,0],[1,3,2,0],[0,2,1,1]],[[0,2,2,1],[2,3,3,0],[1,4,2,0],[0,2,1,1]],[[0,2,2,1],[2,3,3,0],[1,3,2,0],[0,3,1,1]],[[0,3,2,1],[2,3,3,0],[1,3,2,0],[1,0,2,1]],[[0,2,3,1],[2,3,3,0],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[3,3,3,0],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,4,3,0],[1,3,2,0],[1,0,2,1]],[[0,2,2,1],[2,3,3,0],[1,4,2,0],[1,0,2,1]],[[0,3,2,1],[2,3,3,0],[1,3,2,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,0],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[3,3,3,0],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,4,3,0],[1,3,2,0],[1,1,1,1]],[[0,2,2,1],[2,3,3,0],[1,4,2,0],[1,1,1,1]],[[0,3,2,1],[2,3,3,0],[1,3,2,0],[1,2,0,1]],[[0,2,3,1],[2,3,3,0],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[3,3,3,0],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,4,3,0],[1,3,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,3,0],[1,4,2,0],[1,2,0,1]],[[1,2,2,0],[1,4,1,1],[2,2,3,2],[1,1,0,1]],[[1,2,3,0],[1,3,1,1],[2,2,3,2],[1,1,0,1]],[[1,3,2,0],[1,3,1,1],[2,2,3,2],[1,1,0,1]],[[2,2,2,0],[1,3,1,1],[2,2,3,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,0],[1,3,2,1],[0,1,1,1]],[[0,2,3,1],[2,3,3,0],[1,3,2,1],[0,1,1,1]],[[0,2,2,1],[3,3,3,0],[1,3,2,1],[0,1,1,1]],[[0,2,2,1],[2,4,3,0],[1,3,2,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,0],[1,3,2,1],[0,1,2,0]],[[0,2,3,1],[2,3,3,0],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[3,3,3,0],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,4,3,0],[1,3,2,1],[0,1,2,0]],[[0,2,2,1],[2,3,3,0],[1,4,2,1],[0,1,2,0]],[[0,3,2,1],[2,3,3,0],[1,3,2,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,0],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[3,3,3,0],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,4,3,0],[1,3,2,1],[0,2,0,1]],[[0,2,2,1],[2,3,3,0],[1,4,2,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,0],[1,3,2,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,0],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[3,3,3,0],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,4,3,0],[1,3,2,1],[0,2,1,0]],[[0,2,2,1],[2,3,3,0],[1,4,2,1],[0,2,1,0]],[[0,2,2,1],[2,3,3,0],[1,3,2,1],[0,3,1,0]],[[1,2,2,0],[1,4,1,1],[2,2,3,2],[1,0,2,0]],[[1,2,3,0],[1,3,1,1],[2,2,3,2],[1,0,2,0]],[[1,3,2,0],[1,3,1,1],[2,2,3,2],[1,0,2,0]],[[2,2,2,0],[1,3,1,1],[2,2,3,2],[1,0,2,0]],[[1,2,2,0],[1,4,1,1],[2,2,3,2],[1,0,1,1]],[[1,2,3,0],[1,3,1,1],[2,2,3,2],[1,0,1,1]],[[1,3,2,0],[1,3,1,1],[2,2,3,2],[1,0,1,1]],[[2,2,2,0],[1,3,1,1],[2,2,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,0],[1,3,2,1],[1,0,1,1]],[[0,2,3,1],[2,3,3,0],[1,3,2,1],[1,0,1,1]],[[0,2,2,1],[3,3,3,0],[1,3,2,1],[1,0,1,1]],[[0,2,2,1],[2,4,3,0],[1,3,2,1],[1,0,1,1]],[[0,3,2,1],[2,3,3,0],[1,3,2,1],[1,0,2,0]],[[0,2,3,1],[2,3,3,0],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[3,3,3,0],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,4,3,0],[1,3,2,1],[1,0,2,0]],[[0,2,2,1],[2,3,3,0],[1,4,2,1],[1,0,2,0]],[[0,3,2,1],[2,3,3,0],[1,3,2,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,0],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[3,3,3,0],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,4,3,0],[1,3,2,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,0],[1,4,2,1],[1,1,0,1]],[[0,3,2,1],[2,3,3,0],[1,3,2,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,0],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[3,3,3,0],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,4,3,0],[1,3,2,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[1,4,2,1],[1,1,1,0]],[[0,3,2,1],[2,3,3,0],[1,3,2,1],[1,2,0,0]],[[0,2,3,1],[2,3,3,0],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[3,3,3,0],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,4,3,0],[1,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,0],[1,4,2,1],[1,2,0,0]],[[1,2,2,0],[1,4,1,1],[2,2,3,2],[0,2,1,0]],[[1,2,3,0],[1,3,1,1],[2,2,3,2],[0,2,1,0]],[[1,3,2,0],[1,3,1,1],[2,2,3,2],[0,2,1,0]],[[2,2,2,0],[1,3,1,1],[2,2,3,2],[0,2,1,0]],[[1,2,2,0],[1,4,1,1],[2,2,3,2],[0,2,0,1]],[[1,2,3,0],[1,3,1,1],[2,2,3,2],[0,2,0,1]],[[1,3,2,0],[1,3,1,1],[2,2,3,2],[0,2,0,1]],[[2,2,2,0],[1,3,1,1],[2,2,3,2],[0,2,0,1]],[[1,2,2,0],[1,4,1,1],[2,2,3,2],[0,1,2,0]],[[1,2,3,0],[1,3,1,1],[2,2,3,2],[0,1,2,0]],[[1,3,2,0],[1,3,1,1],[2,2,3,2],[0,1,2,0]],[[2,2,2,0],[1,3,1,1],[2,2,3,2],[0,1,2,0]],[[1,2,2,0],[1,4,1,1],[2,2,3,2],[0,1,1,1]],[[1,2,3,0],[1,3,1,1],[2,2,3,2],[0,1,1,1]],[[1,3,2,0],[1,3,1,1],[2,2,3,2],[0,1,1,1]],[[2,2,2,0],[1,3,1,1],[2,2,3,2],[0,1,1,1]],[[1,2,2,0],[1,4,1,1],[2,2,3,1],[1,2,0,1]],[[1,3,2,0],[1,3,1,1],[2,2,3,1],[1,2,0,1]],[[2,2,2,0],[1,3,1,1],[2,2,3,1],[1,2,0,1]],[[1,2,2,0],[1,4,1,1],[2,2,3,1],[1,1,1,1]],[[1,2,3,0],[1,3,1,1],[2,2,3,1],[1,1,1,1]],[[1,3,2,0],[1,3,1,1],[2,2,3,1],[1,1,1,1]],[[2,2,2,0],[1,3,1,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,0],[1,4,1,1],[2,2,3,1],[1,0,2,1]],[[1,2,3,0],[1,3,1,1],[2,2,3,1],[1,0,2,1]],[[1,3,2,0],[1,3,1,1],[2,2,3,1],[1,0,2,1]],[[2,2,2,0],[1,3,1,1],[2,2,3,1],[1,0,2,1]],[[1,2,2,0],[1,4,1,1],[2,2,3,1],[0,2,1,1]],[[1,2,3,0],[1,3,1,1],[2,2,3,1],[0,2,1,1]],[[1,3,2,0],[1,3,1,1],[2,2,3,1],[0,2,1,1]],[[2,2,2,0],[1,3,1,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[1,4,1,1],[2,2,3,1],[0,1,2,1]],[[1,2,3,0],[1,3,1,1],[2,2,3,1],[0,1,2,1]],[[1,3,2,0],[1,3,1,1],[2,2,3,1],[0,1,2,1]],[[2,2,2,0],[1,3,1,1],[2,2,3,1],[0,1,2,1]],[[1,2,2,0],[1,4,1,1],[2,2,3,0],[1,1,2,1]],[[1,3,2,0],[1,3,1,1],[2,2,3,0],[1,1,2,1]],[[2,2,2,0],[1,3,1,1],[2,2,3,0],[1,1,2,1]],[[1,2,2,0],[1,4,1,1],[2,2,3,0],[0,2,2,1]],[[1,3,2,0],[1,3,1,1],[2,2,3,0],[0,2,2,1]],[[2,2,2,0],[1,3,1,1],[2,2,3,0],[0,2,2,1]],[[1,2,2,0],[1,4,1,1],[2,2,2,2],[1,1,2,0]],[[1,2,3,0],[1,3,1,1],[2,2,2,2],[1,1,2,0]],[[1,3,2,0],[1,3,1,1],[2,2,2,2],[1,1,2,0]],[[2,2,2,0],[1,3,1,1],[2,2,2,2],[1,1,2,0]],[[1,2,2,0],[1,4,1,1],[2,2,2,2],[0,2,2,0]],[[1,2,3,0],[1,3,1,1],[2,2,2,2],[0,2,2,0]],[[1,3,2,0],[1,3,1,1],[2,2,2,2],[0,2,2,0]],[[2,2,2,0],[1,3,1,1],[2,2,2,2],[0,2,2,0]],[[1,2,2,0],[1,4,1,1],[2,2,2,1],[1,1,2,1]],[[1,2,3,0],[1,3,1,1],[2,2,2,1],[1,1,2,1]],[[1,3,2,0],[1,3,1,1],[2,2,2,1],[1,1,2,1]],[[2,2,2,0],[1,3,1,1],[2,2,2,1],[1,1,2,1]],[[1,2,2,0],[1,4,1,1],[2,2,2,1],[0,2,2,1]],[[1,2,3,0],[1,3,1,1],[2,2,2,1],[0,2,2,1]],[[1,3,2,0],[1,3,1,1],[2,2,2,1],[0,2,2,1]],[[2,2,2,0],[1,3,1,1],[2,2,2,1],[0,2,2,1]],[[1,2,2,0],[1,4,1,1],[2,2,1,2],[1,1,2,1]],[[1,2,3,0],[1,3,1,1],[2,2,1,2],[1,1,2,1]],[[1,3,2,0],[1,3,1,1],[2,2,1,2],[1,1,2,1]],[[2,2,2,0],[1,3,1,1],[2,2,1,2],[1,1,2,1]],[[1,2,2,0],[1,4,1,1],[2,2,1,2],[0,2,2,1]],[[1,2,3,0],[1,3,1,1],[2,2,1,2],[0,2,2,1]],[[1,3,2,0],[1,3,1,1],[2,2,1,2],[0,2,2,1]],[[2,2,2,0],[1,3,1,1],[2,2,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[1,3,3,0],[0,0,2,1]],[[0,2,3,1],[2,3,3,0],[1,3,3,0],[0,0,2,1]],[[0,2,2,1],[3,3,3,0],[1,3,3,0],[0,0,2,1]],[[0,2,2,1],[2,4,3,0],[1,3,3,0],[0,0,2,1]],[[0,3,2,1],[2,3,3,0],[1,3,3,0],[0,1,2,0]],[[0,2,3,1],[2,3,3,0],[1,3,3,0],[0,1,2,0]],[[0,2,2,1],[3,3,3,0],[1,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,4,3,0],[1,3,3,0],[0,1,2,0]],[[0,2,2,1],[2,3,3,0],[1,4,3,0],[0,1,2,0]],[[0,3,2,1],[2,3,3,0],[1,3,3,0],[0,2,1,0]],[[0,2,3,1],[2,3,3,0],[1,3,3,0],[0,2,1,0]],[[0,2,2,1],[3,3,3,0],[1,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,4,3,0],[1,3,3,0],[0,2,1,0]],[[0,2,2,1],[2,3,3,0],[1,4,3,0],[0,2,1,0]],[[0,2,2,1],[2,3,3,0],[1,3,3,0],[0,3,1,0]],[[0,3,2,1],[2,3,3,0],[1,3,3,0],[1,0,2,0]],[[0,2,3,1],[2,3,3,0],[1,3,3,0],[1,0,2,0]],[[0,2,2,1],[3,3,3,0],[1,3,3,0],[1,0,2,0]],[[0,2,2,1],[2,4,3,0],[1,3,3,0],[1,0,2,0]],[[0,2,2,1],[2,3,3,0],[1,4,3,0],[1,0,2,0]],[[0,3,2,1],[2,3,3,0],[1,3,3,0],[1,1,1,0]],[[0,2,3,1],[2,3,3,0],[1,3,3,0],[1,1,1,0]],[[0,2,2,1],[3,3,3,0],[1,3,3,0],[1,1,1,0]],[[0,2,2,1],[2,4,3,0],[1,3,3,0],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[1,4,3,0],[1,1,1,0]],[[1,2,2,0],[1,4,1,1],[2,1,3,2],[1,2,1,0]],[[1,2,3,0],[1,3,1,1],[2,1,3,2],[1,2,1,0]],[[1,3,2,0],[1,3,1,1],[2,1,3,2],[1,2,1,0]],[[0,3,2,1],[2,3,3,0],[1,3,3,0],[1,2,0,0]],[[0,2,3,1],[2,3,3,0],[1,3,3,0],[1,2,0,0]],[[0,2,2,1],[3,3,3,0],[1,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,4,3,0],[1,3,3,0],[1,2,0,0]],[[0,2,2,1],[2,3,3,0],[1,4,3,0],[1,2,0,0]],[[2,2,2,0],[1,3,1,1],[2,1,3,2],[1,2,1,0]],[[1,2,2,0],[1,4,1,1],[2,1,3,2],[1,2,0,1]],[[1,2,3,0],[1,3,1,1],[2,1,3,2],[1,2,0,1]],[[1,3,2,0],[1,3,1,1],[2,1,3,2],[1,2,0,1]],[[2,2,2,0],[1,3,1,1],[2,1,3,2],[1,2,0,1]],[[1,2,2,0],[1,4,1,1],[2,1,3,1],[1,2,1,1]],[[1,2,3,0],[1,3,1,1],[2,1,3,1],[1,2,1,1]],[[1,3,2,0],[1,3,1,1],[2,1,3,1],[1,2,1,1]],[[2,2,2,0],[1,3,1,1],[2,1,3,1],[1,2,1,1]],[[1,2,2,0],[1,4,1,1],[2,1,3,0],[1,2,2,1]],[[1,3,2,0],[1,3,1,1],[2,1,3,0],[1,2,2,1]],[[2,2,2,0],[1,3,1,1],[2,1,3,0],[1,2,2,1]],[[0,3,2,1],[2,3,3,0],[1,3,3,1],[0,0,1,1]],[[0,2,3,1],[2,3,3,0],[1,3,3,1],[0,0,1,1]],[[0,2,2,1],[3,3,3,0],[1,3,3,1],[0,0,1,1]],[[0,2,2,1],[2,4,3,0],[1,3,3,1],[0,0,1,1]],[[0,3,2,1],[2,3,3,0],[1,3,3,1],[0,0,2,0]],[[0,2,3,1],[2,3,3,0],[1,3,3,1],[0,0,2,0]],[[0,2,2,1],[3,3,3,0],[1,3,3,1],[0,0,2,0]],[[0,2,2,1],[2,4,3,0],[1,3,3,1],[0,0,2,0]],[[0,3,2,1],[2,3,3,0],[1,3,3,1],[0,2,0,0]],[[0,2,3,1],[2,3,3,0],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[3,3,3,0],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,4,3,0],[1,3,3,1],[0,2,0,0]],[[0,2,2,1],[2,3,3,0],[1,4,3,1],[0,2,0,0]],[[1,2,2,0],[1,4,1,1],[2,1,2,2],[1,2,2,0]],[[1,2,3,0],[1,3,1,1],[2,1,2,2],[1,2,2,0]],[[1,3,2,0],[1,3,1,1],[2,1,2,2],[1,2,2,0]],[[2,2,2,0],[1,3,1,1],[2,1,2,2],[1,2,2,0]],[[1,2,2,0],[1,4,1,1],[2,1,2,1],[1,2,2,1]],[[1,2,3,0],[1,3,1,1],[2,1,2,1],[1,2,2,1]],[[1,3,2,0],[1,3,1,1],[2,1,2,1],[1,2,2,1]],[[2,2,2,0],[1,3,1,1],[2,1,2,1],[1,2,2,1]],[[1,2,2,0],[1,4,1,1],[2,1,1,2],[1,2,2,1]],[[1,2,3,0],[1,3,1,1],[2,1,1,2],[1,2,2,1]],[[1,3,2,0],[1,3,1,1],[2,1,1,2],[1,2,2,1]],[[2,2,2,0],[1,3,1,1],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[1,4,1,1],[2,0,3,2],[1,2,2,0]],[[1,2,3,0],[1,3,1,1],[2,0,3,2],[1,2,2,0]],[[1,3,2,0],[1,3,1,1],[2,0,3,2],[1,2,2,0]],[[2,2,2,0],[1,3,1,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,4,1,1],[2,0,3,1],[1,2,2,1]],[[1,2,3,0],[1,3,1,1],[2,0,3,1],[1,2,2,1]],[[1,3,2,0],[1,3,1,1],[2,0,3,1],[1,2,2,1]],[[2,2,2,0],[1,3,1,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,0],[1,4,1,1],[2,0,2,2],[1,2,2,1]],[[1,2,3,0],[1,3,1,1],[2,0,2,2],[1,2,2,1]],[[1,3,2,0],[1,3,1,1],[2,0,2,2],[1,2,2,1]],[[2,2,2,0],[1,3,1,1],[2,0,2,2],[1,2,2,1]],[[0,3,2,1],[2,3,3,0],[1,3,3,1],[1,1,0,0]],[[0,2,3,1],[2,3,3,0],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[3,3,3,0],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,4,3,0],[1,3,3,1],[1,1,0,0]],[[0,2,2,1],[2,3,3,0],[1,4,3,1],[1,1,0,0]],[[1,2,2,0],[1,3,1,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,0],[1,4,1,1],[1,3,3,2],[1,2,0,0]],[[1,2,3,0],[1,3,1,1],[1,3,3,2],[1,2,0,0]],[[1,3,2,0],[1,3,1,1],[1,3,3,2],[1,2,0,0]],[[2,2,2,0],[1,3,1,1],[1,3,3,2],[1,2,0,0]],[[1,2,2,0],[1,3,1,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[1,3,1,1],[1,3,4,2],[1,1,1,0]],[[1,2,2,0],[1,3,1,1],[1,4,3,2],[1,1,1,0]],[[1,2,2,0],[1,4,1,1],[1,3,3,2],[1,1,1,0]],[[1,2,3,0],[1,3,1,1],[1,3,3,2],[1,1,1,0]],[[1,3,2,0],[1,3,1,1],[1,3,3,2],[1,1,1,0]],[[2,2,2,0],[1,3,1,1],[1,3,3,2],[1,1,1,0]],[[1,2,2,0],[1,3,1,1],[1,3,3,2],[1,1,0,2]],[[1,2,2,0],[1,3,1,1],[1,3,3,3],[1,1,0,1]],[[1,2,2,0],[1,3,1,1],[1,3,4,2],[1,1,0,1]],[[1,2,2,0],[1,3,1,1],[1,4,3,2],[1,1,0,1]],[[1,2,2,0],[1,4,1,1],[1,3,3,2],[1,1,0,1]],[[1,2,3,0],[1,3,1,1],[1,3,3,2],[1,1,0,1]],[[1,3,2,0],[1,3,1,1],[1,3,3,2],[1,1,0,1]],[[2,2,2,0],[1,3,1,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[1,3,1,1],[1,3,3,2],[1,0,3,0]],[[1,2,2,0],[1,3,1,1],[1,3,3,3],[1,0,2,0]],[[1,2,2,0],[1,3,1,1],[1,3,4,2],[1,0,2,0]],[[1,2,2,0],[1,3,1,1],[1,4,3,2],[1,0,2,0]],[[1,2,2,0],[1,4,1,1],[1,3,3,2],[1,0,2,0]],[[1,2,3,0],[1,3,1,1],[1,3,3,2],[1,0,2,0]],[[1,3,2,0],[1,3,1,1],[1,3,3,2],[1,0,2,0]],[[2,2,2,0],[1,3,1,1],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[1,3,1,1],[1,3,3,2],[1,0,1,2]],[[1,2,2,0],[1,3,1,1],[1,3,3,3],[1,0,1,1]],[[1,2,2,0],[1,3,1,1],[1,3,4,2],[1,0,1,1]],[[1,2,2,0],[1,3,1,1],[1,4,3,2],[1,0,1,1]],[[1,2,2,0],[1,4,1,1],[1,3,3,2],[1,0,1,1]],[[1,2,3,0],[1,3,1,1],[1,3,3,2],[1,0,1,1]],[[1,3,2,0],[1,3,1,1],[1,3,3,2],[1,0,1,1]],[[2,2,2,0],[1,3,1,1],[1,3,3,2],[1,0,1,1]],[[1,2,2,0],[1,3,1,1],[1,3,3,2],[0,3,1,0]],[[1,2,2,0],[1,3,1,1],[1,3,3,3],[0,2,1,0]],[[1,2,2,0],[1,3,1,1],[1,3,4,2],[0,2,1,0]],[[1,2,2,0],[1,3,1,1],[1,4,3,2],[0,2,1,0]],[[1,2,2,0],[1,4,1,1],[1,3,3,2],[0,2,1,0]],[[1,2,3,0],[1,3,1,1],[1,3,3,2],[0,2,1,0]],[[1,3,2,0],[1,3,1,1],[1,3,3,2],[0,2,1,0]],[[2,2,2,0],[1,3,1,1],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,3,1,1],[1,3,3,2],[0,2,0,2]],[[1,2,2,0],[1,3,1,1],[1,3,3,2],[0,3,0,1]],[[1,2,2,0],[1,3,1,1],[1,3,3,3],[0,2,0,1]],[[1,2,2,0],[1,3,1,1],[1,3,4,2],[0,2,0,1]],[[1,2,2,0],[1,3,1,1],[1,4,3,2],[0,2,0,1]],[[1,2,2,0],[1,4,1,1],[1,3,3,2],[0,2,0,1]],[[1,2,3,0],[1,3,1,1],[1,3,3,2],[0,2,0,1]],[[1,3,2,0],[1,3,1,1],[1,3,3,2],[0,2,0,1]],[[2,2,2,0],[1,3,1,1],[1,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,3,1,1],[1,3,3,2],[0,1,3,0]],[[1,2,2,0],[1,3,1,1],[1,3,3,3],[0,1,2,0]],[[1,2,2,0],[1,3,1,1],[1,3,4,2],[0,1,2,0]],[[1,2,2,0],[1,3,1,1],[1,4,3,2],[0,1,2,0]],[[1,2,2,0],[1,4,1,1],[1,3,3,2],[0,1,2,0]],[[1,2,3,0],[1,3,1,1],[1,3,3,2],[0,1,2,0]],[[1,3,2,0],[1,3,1,1],[1,3,3,2],[0,1,2,0]],[[2,2,2,0],[1,3,1,1],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,3,1,1],[1,3,3,2],[0,1,1,2]],[[1,2,2,0],[1,3,1,1],[1,3,3,3],[0,1,1,1]],[[1,2,2,0],[1,3,1,1],[1,3,4,2],[0,1,1,1]],[[1,2,2,0],[1,3,1,1],[1,4,3,2],[0,1,1,1]],[[1,2,2,0],[1,4,1,1],[1,3,3,2],[0,1,1,1]],[[1,2,3,0],[1,3,1,1],[1,3,3,2],[0,1,1,1]],[[1,3,2,0],[1,3,1,1],[1,3,3,2],[0,1,1,1]],[[2,2,2,0],[1,3,1,1],[1,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,3,1,1],[1,3,3,2],[0,0,2,2]],[[1,2,2,0],[1,3,1,1],[1,3,3,3],[0,0,2,1]],[[1,2,2,0],[1,3,1,1],[1,3,4,2],[0,0,2,1]],[[1,2,2,0],[1,3,1,1],[1,4,3,1],[1,2,0,1]],[[1,2,2,0],[1,4,1,1],[1,3,3,1],[1,2,0,1]],[[1,3,2,0],[1,3,1,1],[1,3,3,1],[1,2,0,1]],[[2,2,2,0],[1,3,1,1],[1,3,3,1],[1,2,0,1]],[[1,2,2,0],[1,3,1,1],[1,3,4,1],[1,1,1,1]],[[1,2,2,0],[1,3,1,1],[1,4,3,1],[1,1,1,1]],[[1,2,2,0],[1,4,1,1],[1,3,3,1],[1,1,1,1]],[[1,2,3,0],[1,3,1,1],[1,3,3,1],[1,1,1,1]],[[1,3,2,0],[1,3,1,1],[1,3,3,1],[1,1,1,1]],[[2,2,2,0],[1,3,1,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[1,3,1,1],[1,3,3,1],[1,0,2,2]],[[1,2,2,0],[1,3,1,1],[1,3,3,1],[1,0,3,1]],[[1,2,2,0],[1,3,1,1],[1,3,4,1],[1,0,2,1]],[[1,2,2,0],[1,3,1,1],[1,4,3,1],[1,0,2,1]],[[1,2,2,0],[1,4,1,1],[1,3,3,1],[1,0,2,1]],[[1,2,3,0],[1,3,1,1],[1,3,3,1],[1,0,2,1]],[[1,3,2,0],[1,3,1,1],[1,3,3,1],[1,0,2,1]],[[2,2,2,0],[1,3,1,1],[1,3,3,1],[1,0,2,1]],[[1,2,2,0],[1,3,1,1],[1,3,3,1],[0,3,1,1]],[[1,2,2,0],[1,3,1,1],[1,3,4,1],[0,2,1,1]],[[1,2,2,0],[1,3,1,1],[1,4,3,1],[0,2,1,1]],[[1,2,2,0],[1,4,1,1],[1,3,3,1],[0,2,1,1]],[[1,2,3,0],[1,3,1,1],[1,3,3,1],[0,2,1,1]],[[1,3,2,0],[1,3,1,1],[1,3,3,1],[0,2,1,1]],[[2,2,2,0],[1,3,1,1],[1,3,3,1],[0,2,1,1]],[[1,2,2,0],[1,3,1,1],[1,3,3,1],[0,1,2,2]],[[1,2,2,0],[1,3,1,1],[1,3,3,1],[0,1,3,1]],[[1,2,2,0],[1,3,1,1],[1,3,4,1],[0,1,2,1]],[[1,2,2,0],[1,3,1,1],[1,4,3,1],[0,1,2,1]],[[1,2,2,0],[1,4,1,1],[1,3,3,1],[0,1,2,1]],[[1,2,3,0],[1,3,1,1],[1,3,3,1],[0,1,2,1]],[[1,3,2,0],[1,3,1,1],[1,3,3,1],[0,1,2,1]],[[2,2,2,0],[1,3,1,1],[1,3,3,1],[0,1,2,1]],[[1,2,2,0],[1,3,1,1],[1,4,3,0],[1,1,2,1]],[[1,2,2,0],[1,4,1,1],[1,3,3,0],[1,1,2,1]],[[1,3,2,0],[1,3,1,1],[1,3,3,0],[1,1,2,1]],[[2,2,2,0],[1,3,1,1],[1,3,3,0],[1,1,2,1]],[[1,2,2,0],[1,3,1,1],[1,3,3,0],[0,2,3,1]],[[1,2,2,0],[1,3,1,1],[1,3,3,0],[0,3,2,1]],[[1,2,2,0],[1,3,1,1],[1,4,3,0],[0,2,2,1]],[[1,2,2,0],[1,4,1,1],[1,3,3,0],[0,2,2,1]],[[1,3,2,0],[1,3,1,1],[1,3,3,0],[0,2,2,1]],[[2,2,2,0],[1,3,1,1],[1,3,3,0],[0,2,2,1]],[[1,2,2,0],[1,3,1,1],[1,4,2,2],[1,1,2,0]],[[1,2,2,0],[1,4,1,1],[1,3,2,2],[1,1,2,0]],[[1,2,3,0],[1,3,1,1],[1,3,2,2],[1,1,2,0]],[[1,3,2,0],[1,3,1,1],[1,3,2,2],[1,1,2,0]],[[2,2,2,0],[1,3,1,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,0],[1,3,1,1],[1,3,2,2],[1,0,2,2]],[[1,2,2,0],[1,3,1,1],[1,3,2,2],[1,0,3,1]],[[1,2,2,0],[1,3,1,1],[1,3,2,3],[1,0,2,1]],[[1,2,2,0],[1,3,1,1],[1,3,2,2],[0,2,3,0]],[[1,2,2,0],[1,3,1,1],[1,3,2,2],[0,3,2,0]],[[1,2,2,0],[1,3,1,1],[1,4,2,2],[0,2,2,0]],[[1,2,2,0],[1,4,1,1],[1,3,2,2],[0,2,2,0]],[[1,2,3,0],[1,3,1,1],[1,3,2,2],[0,2,2,0]],[[1,3,2,0],[1,3,1,1],[1,3,2,2],[0,2,2,0]],[[2,2,2,0],[1,3,1,1],[1,3,2,2],[0,2,2,0]],[[1,2,2,0],[1,3,1,1],[1,3,2,2],[0,1,2,2]],[[1,2,2,0],[1,3,1,1],[1,3,2,2],[0,1,3,1]],[[1,2,2,0],[1,3,1,1],[1,3,2,3],[0,1,2,1]],[[1,2,2,0],[1,3,1,1],[1,4,2,1],[1,1,2,1]],[[1,2,2,0],[1,4,1,1],[1,3,2,1],[1,1,2,1]],[[1,2,3,0],[1,3,1,1],[1,3,2,1],[1,1,2,1]],[[1,3,2,0],[1,3,1,1],[1,3,2,1],[1,1,2,1]],[[2,2,2,0],[1,3,1,1],[1,3,2,1],[1,1,2,1]],[[1,2,2,0],[1,3,1,1],[1,3,2,1],[0,2,2,2]],[[1,2,2,0],[1,3,1,1],[1,3,2,1],[0,2,3,1]],[[1,2,2,0],[1,3,1,1],[1,3,2,1],[0,3,2,1]],[[1,2,2,0],[1,3,1,1],[1,4,2,1],[0,2,2,1]],[[1,2,2,0],[1,4,1,1],[1,3,2,1],[0,2,2,1]],[[1,2,3,0],[1,3,1,1],[1,3,2,1],[0,2,2,1]],[[1,3,2,0],[1,3,1,1],[1,3,2,1],[0,2,2,1]],[[2,2,2,0],[1,3,1,1],[1,3,2,1],[0,2,2,1]],[[1,2,2,0],[1,3,1,1],[1,4,1,2],[1,1,2,1]],[[1,2,2,0],[1,4,1,1],[1,3,1,2],[1,1,2,1]],[[1,2,3,0],[1,3,1,1],[1,3,1,2],[1,1,2,1]],[[1,3,2,0],[1,3,1,1],[1,3,1,2],[1,1,2,1]],[[2,2,2,0],[1,3,1,1],[1,3,1,2],[1,1,2,1]],[[1,2,2,0],[1,3,1,1],[1,3,1,2],[0,2,2,2]],[[1,2,2,0],[1,3,1,1],[1,3,1,2],[0,2,3,1]],[[1,2,2,0],[1,3,1,1],[1,3,1,2],[0,3,2,1]],[[1,2,2,0],[1,3,1,1],[1,3,1,3],[0,2,2,1]],[[1,2,2,0],[1,3,1,1],[1,4,1,2],[0,2,2,1]],[[1,2,2,0],[1,4,1,1],[1,3,1,2],[0,2,2,1]],[[1,2,3,0],[1,3,1,1],[1,3,1,2],[0,2,2,1]],[[1,3,2,0],[1,3,1,1],[1,3,1,2],[0,2,2,1]],[[2,2,2,0],[1,3,1,1],[1,3,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,0,2,0],[1,2,2,1]],[[0,2,3,1],[2,3,3,0],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[3,3,3,0],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,4,3,0],[2,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,3,0],[3,0,2,0],[1,2,2,1]],[[0,2,2,1],[2,3,3,0],[2,0,2,0],[2,2,2,1]],[[0,2,2,1],[2,3,3,0],[2,0,2,0],[1,3,2,1]],[[0,2,2,1],[2,3,3,0],[2,0,2,0],[1,2,3,1]],[[0,3,2,1],[2,3,3,0],[2,0,2,1],[1,2,2,0]],[[0,2,3,1],[2,3,3,0],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[3,3,3,0],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,4,3,0],[2,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,3,0],[3,0,2,1],[1,2,2,0]],[[0,2,2,1],[2,3,3,0],[2,0,2,1],[2,2,2,0]],[[0,2,2,1],[2,3,3,0],[2,0,2,1],[1,3,2,0]],[[1,2,2,0],[1,3,1,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[1,3,1,1],[1,2,3,2],[0,3,2,0]],[[1,2,2,0],[1,3,1,1],[1,2,3,3],[0,2,2,0]],[[1,2,2,0],[1,3,1,1],[1,2,4,2],[0,2,2,0]],[[1,2,2,0],[1,3,1,1],[1,2,3,2],[0,2,1,2]],[[1,2,2,0],[1,3,1,1],[1,2,3,3],[0,2,1,1]],[[1,2,2,0],[1,3,1,1],[1,2,4,2],[0,2,1,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,0],[0,2,2,1]],[[0,2,3,1],[2,3,3,0],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[3,3,3,0],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,4,3,0],[2,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,3,0],[3,0,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,3,0],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[3,3,3,0],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,4,3,0],[2,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,3,0],[3,0,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,3,0],[2,0,3,0],[2,1,2,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,3,0],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[3,3,3,0],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,4,3,0],[2,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,3,0],[3,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,3,0],[2,0,3,0],[2,2,1,1]],[[0,2,2,1],[2,3,3,0],[2,0,3,0],[1,3,1,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,1],[0,1,2,1]],[[0,2,3,1],[2,3,3,0],[2,0,3,1],[0,1,2,1]],[[0,2,2,2],[2,3,3,0],[2,0,3,1],[0,1,2,1]],[[0,2,2,1],[2,3,4,0],[2,0,3,1],[0,1,2,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,1],[0,2,2,0]],[[0,2,3,1],[2,3,3,0],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[3,3,3,0],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,4,3,0],[2,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,3,3,0],[3,0,3,1],[0,2,2,0]],[[0,3,2,1],[2,3,3,0],[2,0,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,3,0],[2,0,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,3,0],[2,0,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,4,0],[2,0,3,1],[1,0,2,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,1],[1,1,2,0]],[[0,2,3,1],[2,3,3,0],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[3,3,3,0],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,4,3,0],[2,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,3,0],[3,0,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,3,0],[2,0,3,1],[2,1,2,0]],[[0,3,2,1],[2,3,3,0],[2,0,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,3,0],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[3,3,3,0],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,4,3,0],[2,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,3,0],[3,0,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,3,0],[2,0,3,1],[2,2,0,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,3,0],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[3,3,3,0],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,4,3,0],[2,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[3,0,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[2,0,3,1],[2,2,1,0]],[[0,2,2,1],[2,3,3,0],[2,0,3,1],[1,3,1,0]],[[1,2,2,0],[1,3,1,1],[1,2,3,1],[0,2,2,2]],[[1,2,2,0],[1,3,1,1],[1,2,3,1],[0,2,3,1]],[[1,2,2,0],[1,3,1,1],[1,2,3,1],[0,3,2,1]],[[1,2,2,0],[1,3,1,1],[1,2,4,1],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,2],[0,0,2,1]],[[0,2,3,1],[2,3,3,0],[2,0,3,2],[0,0,2,1]],[[0,2,2,2],[2,3,3,0],[2,0,3,2],[0,0,2,1]],[[0,2,2,1],[2,3,4,0],[2,0,3,2],[0,0,2,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,0],[2,0,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,0],[2,0,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,4,0],[2,0,3,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,3,0],[2,0,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,0],[2,0,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,4,0],[2,0,3,2],[0,1,2,0]],[[0,3,2,1],[2,3,3,0],[2,0,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,0],[2,0,3,2],[0,2,0,1]],[[0,2,2,2],[2,3,3,0],[2,0,3,2],[0,2,0,1]],[[0,2,2,1],[2,3,4,0],[2,0,3,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,2],[0,2,1,0]],[[0,2,3,1],[2,3,3,0],[2,0,3,2],[0,2,1,0]],[[0,2,2,2],[2,3,3,0],[2,0,3,2],[0,2,1,0]],[[0,2,2,1],[2,3,4,0],[2,0,3,2],[0,2,1,0]],[[1,2,2,0],[1,3,1,1],[1,2,2,2],[0,2,2,2]],[[1,2,2,0],[1,3,1,1],[1,2,2,2],[0,2,3,1]],[[1,2,2,0],[1,3,1,1],[1,2,2,2],[0,3,2,1]],[[1,2,2,0],[1,3,1,1],[1,2,2,3],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,0],[2,0,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,0],[2,0,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,4,0],[2,0,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,3,0],[2,0,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,0],[2,0,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,4,0],[2,0,3,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,0],[2,0,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,3,0],[2,0,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,0],[2,0,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,4,0],[2,0,3,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,0],[2,0,3,2],[1,1,1,0]],[[0,2,3,1],[2,3,3,0],[2,0,3,2],[1,1,1,0]],[[0,2,2,2],[2,3,3,0],[2,0,3,2],[1,1,1,0]],[[0,2,2,1],[2,3,4,0],[2,0,3,2],[1,1,1,0]],[[1,2,2,0],[1,3,1,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,0],[1,3,1,1],[0,3,3,2],[2,2,1,0]],[[1,2,2,0],[1,3,1,1],[0,3,3,3],[1,2,1,0]],[[1,2,2,0],[1,3,1,1],[0,3,4,2],[1,2,1,0]],[[1,2,2,0],[1,3,1,1],[0,4,3,2],[1,2,1,0]],[[1,2,2,0],[1,4,1,1],[0,3,3,2],[1,2,1,0]],[[1,2,3,0],[1,3,1,1],[0,3,3,2],[1,2,1,0]],[[1,3,2,0],[1,3,1,1],[0,3,3,2],[1,2,1,0]],[[2,2,2,0],[1,3,1,1],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[1,3,1,1],[0,3,3,2],[1,2,0,2]],[[1,2,2,0],[1,3,1,1],[0,3,3,2],[1,3,0,1]],[[1,2,2,0],[1,3,1,1],[0,3,3,2],[2,2,0,1]],[[1,2,2,0],[1,3,1,1],[0,3,3,3],[1,2,0,1]],[[1,2,2,0],[1,3,1,1],[0,3,4,2],[1,2,0,1]],[[1,2,2,0],[1,3,1,1],[0,4,3,2],[1,2,0,1]],[[1,2,2,0],[1,4,1,1],[0,3,3,2],[1,2,0,1]],[[1,2,3,0],[1,3,1,1],[0,3,3,2],[1,2,0,1]],[[1,3,2,0],[1,3,1,1],[0,3,3,2],[1,2,0,1]],[[2,2,2,0],[1,3,1,1],[0,3,3,2],[1,2,0,1]],[[1,2,2,0],[1,3,1,1],[0,3,3,2],[1,1,3,0]],[[1,2,2,0],[1,3,1,1],[0,3,3,3],[1,1,2,0]],[[1,2,2,0],[1,3,1,1],[0,3,4,2],[1,1,2,0]],[[1,2,2,0],[1,3,1,1],[0,4,3,2],[1,1,2,0]],[[1,2,2,0],[1,4,1,1],[0,3,3,2],[1,1,2,0]],[[1,2,3,0],[1,3,1,1],[0,3,3,2],[1,1,2,0]],[[1,3,2,0],[1,3,1,1],[0,3,3,2],[1,1,2,0]],[[0,3,2,1],[2,3,3,0],[2,1,1,0],[1,2,2,1]],[[0,2,3,1],[2,3,3,0],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[3,3,3,0],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,4,3,0],[2,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,3,0],[3,1,1,0],[1,2,2,1]],[[0,2,2,1],[2,3,3,0],[2,1,1,0],[2,2,2,1]],[[0,2,2,1],[2,3,3,0],[2,1,1,0],[1,3,2,1]],[[0,2,2,1],[2,3,3,0],[2,1,1,0],[1,2,3,1]],[[0,3,2,1],[2,3,3,0],[2,1,1,1],[1,2,2,0]],[[0,2,3,1],[2,3,3,0],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[3,3,3,0],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,4,3,0],[2,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,3,0],[3,1,1,1],[1,2,2,0]],[[0,2,2,1],[2,3,3,0],[2,1,1,1],[2,2,2,0]],[[0,2,2,1],[2,3,3,0],[2,1,1,1],[1,3,2,0]],[[2,2,2,0],[1,3,1,1],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[1,3,1,1],[0,3,3,2],[1,1,1,2]],[[1,2,2,0],[1,3,1,1],[0,3,3,3],[1,1,1,1]],[[1,2,2,0],[1,3,1,1],[0,3,4,2],[1,1,1,1]],[[1,2,2,0],[1,3,1,1],[0,4,3,2],[1,1,1,1]],[[1,2,2,0],[1,4,1,1],[0,3,3,2],[1,1,1,1]],[[1,2,3,0],[1,3,1,1],[0,3,3,2],[1,1,1,1]],[[1,3,2,0],[1,3,1,1],[0,3,3,2],[1,1,1,1]],[[2,2,2,0],[1,3,1,1],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[1,3,1,1],[0,3,3,2],[1,0,2,2]],[[1,2,2,0],[1,3,1,1],[0,3,3,3],[1,0,2,1]],[[1,2,2,0],[1,3,1,1],[0,3,4,2],[1,0,2,1]],[[0,3,2,1],[2,3,3,0],[2,1,2,0],[1,2,1,1]],[[0,2,3,1],[2,3,3,0],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[3,3,3,0],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,4,3,0],[2,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,3,0],[3,1,2,0],[1,2,1,1]],[[0,2,2,1],[2,3,3,0],[2,1,2,0],[2,2,1,1]],[[0,2,2,1],[2,3,3,0],[2,1,2,0],[1,3,1,1]],[[0,3,2,1],[2,3,3,0],[2,1,2,1],[1,2,0,1]],[[0,2,3,1],[2,3,3,0],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[3,3,3,0],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,4,3,0],[2,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,3,0],[3,1,2,1],[1,2,0,1]],[[0,2,2,1],[2,3,3,0],[2,1,2,1],[2,2,0,1]],[[0,3,2,1],[2,3,3,0],[2,1,2,1],[1,2,1,0]],[[0,2,3,1],[2,3,3,0],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[3,3,3,0],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,4,3,0],[2,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[3,1,2,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[2,1,2,1],[2,2,1,0]],[[0,2,2,1],[2,3,3,0],[2,1,2,1],[1,3,1,0]],[[1,2,2,0],[1,3,1,1],[0,3,3,1],[1,3,1,1]],[[1,2,2,0],[1,3,1,1],[0,3,3,1],[2,2,1,1]],[[1,2,2,0],[1,3,1,1],[0,3,4,1],[1,2,1,1]],[[1,2,2,0],[1,3,1,1],[0,4,3,1],[1,2,1,1]],[[1,2,2,0],[1,4,1,1],[0,3,3,1],[1,2,1,1]],[[1,2,3,0],[1,3,1,1],[0,3,3,1],[1,2,1,1]],[[1,3,2,0],[1,3,1,1],[0,3,3,1],[1,2,1,1]],[[2,2,2,0],[1,3,1,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,0],[1,3,1,1],[0,3,3,1],[1,1,2,2]],[[1,2,2,0],[1,3,1,1],[0,3,3,1],[1,1,3,1]],[[1,2,2,0],[1,3,1,1],[0,3,4,1],[1,1,2,1]],[[1,2,2,0],[1,3,1,1],[0,4,3,1],[1,1,2,1]],[[1,2,2,0],[1,4,1,1],[0,3,3,1],[1,1,2,1]],[[1,2,3,0],[1,3,1,1],[0,3,3,1],[1,1,2,1]],[[1,3,2,0],[1,3,1,1],[0,3,3,1],[1,1,2,1]],[[2,2,2,0],[1,3,1,1],[0,3,3,1],[1,1,2,1]],[[1,2,2,0],[1,3,1,1],[0,3,3,0],[1,2,3,1]],[[1,2,2,0],[1,3,1,1],[0,3,3,0],[1,3,2,1]],[[1,2,2,0],[1,3,1,1],[0,3,3,0],[2,2,2,1]],[[1,2,2,0],[1,3,1,1],[0,4,3,0],[1,2,2,1]],[[1,2,2,0],[1,4,1,1],[0,3,3,0],[1,2,2,1]],[[1,3,2,0],[1,3,1,1],[0,3,3,0],[1,2,2,1]],[[2,2,2,0],[1,3,1,1],[0,3,3,0],[1,2,2,1]],[[1,2,2,0],[1,3,1,1],[0,3,2,2],[1,2,3,0]],[[1,2,2,0],[1,3,1,1],[0,3,2,2],[1,3,2,0]],[[1,2,2,0],[1,3,1,1],[0,3,2,2],[2,2,2,0]],[[1,2,2,0],[1,3,1,1],[0,4,2,2],[1,2,2,0]],[[1,2,2,0],[1,4,1,1],[0,3,2,2],[1,2,2,0]],[[1,2,3,0],[1,3,1,1],[0,3,2,2],[1,2,2,0]],[[0,3,2,1],[2,3,3,0],[2,1,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,3,0],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[3,3,3,0],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,4,3,0],[2,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,3,0],[3,1,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,0],[2,1,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,0],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[3,3,3,0],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,4,3,0],[2,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,3,0],[3,1,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,0],[2,1,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,3,0],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[3,3,3,0],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,4,3,0],[2,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,3,0],[3,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,3,0],[2,1,3,0],[2,0,2,1]],[[0,3,2,1],[2,3,3,0],[2,1,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,0],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[3,3,3,0],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,4,3,0],[2,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,3,0],[3,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,3,0],[2,1,3,0],[2,1,1,1]],[[0,3,2,1],[2,3,3,0],[2,1,3,0],[1,2,1,0]],[[0,2,3,1],[2,3,3,0],[2,1,3,0],[1,2,1,0]],[[0,2,2,1],[3,3,3,0],[2,1,3,0],[1,2,1,0]],[[0,2,2,1],[2,4,3,0],[2,1,3,0],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[3,1,3,0],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[2,1,3,0],[2,2,1,0]],[[0,2,2,1],[2,3,3,0],[2,1,3,0],[1,3,1,0]],[[1,3,2,0],[1,3,1,1],[0,3,2,2],[1,2,2,0]],[[2,2,2,0],[1,3,1,1],[0,3,2,2],[1,2,2,0]],[[1,2,2,0],[1,3,1,1],[0,3,2,2],[1,1,2,2]],[[1,2,2,0],[1,3,1,1],[0,3,2,2],[1,1,3,1]],[[1,2,2,0],[1,3,1,1],[0,3,2,3],[1,1,2,1]],[[1,2,2,0],[1,3,1,1],[0,3,2,1],[1,2,2,2]],[[1,2,2,0],[1,3,1,1],[0,3,2,1],[1,2,3,1]],[[1,2,2,0],[1,3,1,1],[0,3,2,1],[1,3,2,1]],[[0,3,2,1],[2,3,3,0],[2,1,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,3,0],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[3,3,3,0],[2,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,4,3,0],[2,1,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,0],[2,1,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,3,0],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[3,3,3,0],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,4,3,0],[2,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,3,0],[3,1,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,3,0],[2,1,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,0],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[3,3,3,0],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,4,3,0],[2,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,3,0],[3,1,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,0],[2,1,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,0],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[3,3,3,0],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,4,3,0],[2,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,3,0],[3,1,3,1],[0,2,1,0]],[[1,2,2,0],[1,3,1,1],[0,3,2,1],[2,2,2,1]],[[1,2,2,0],[1,3,1,1],[0,4,2,1],[1,2,2,1]],[[1,2,2,0],[1,4,1,1],[0,3,2,1],[1,2,2,1]],[[1,2,3,0],[1,3,1,1],[0,3,2,1],[1,2,2,1]],[[1,3,2,0],[1,3,1,1],[0,3,2,1],[1,2,2,1]],[[2,2,2,0],[1,3,1,1],[0,3,2,1],[1,2,2,1]],[[1,2,2,0],[1,3,1,1],[0,3,1,2],[1,2,2,2]],[[1,2,2,0],[1,3,1,1],[0,3,1,2],[1,2,3,1]],[[1,2,2,0],[1,3,1,1],[0,3,1,2],[1,3,2,1]],[[1,2,2,0],[1,3,1,1],[0,3,1,2],[2,2,2,1]],[[1,2,2,0],[1,3,1,1],[0,3,1,3],[1,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,1,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,3,0],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[3,3,3,0],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,4,3,0],[2,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,3,0],[3,1,3,1],[1,0,1,1]],[[0,3,2,1],[2,3,3,0],[2,1,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,3,0],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[3,3,3,0],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,4,3,0],[2,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,3,0],[3,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,3,0],[2,1,3,1],[2,0,2,0]],[[0,3,2,1],[2,3,3,0],[2,1,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,0],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[3,3,3,0],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,4,3,0],[2,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,0],[3,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,0],[2,1,3,1],[2,1,0,1]],[[0,3,2,1],[2,3,3,0],[2,1,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,0],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[3,3,3,0],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,4,3,0],[2,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[3,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[2,1,3,1],[2,1,1,0]],[[1,2,2,0],[1,3,1,1],[0,4,1,2],[1,2,2,1]],[[1,2,2,0],[1,4,1,1],[0,3,1,2],[1,2,2,1]],[[1,2,3,0],[1,3,1,1],[0,3,1,2],[1,2,2,1]],[[1,3,2,0],[1,3,1,1],[0,3,1,2],[1,2,2,1]],[[2,2,2,0],[1,3,1,1],[0,3,1,2],[1,2,2,1]],[[1,2,2,0],[1,3,1,1],[0,2,3,2],[1,2,3,0]],[[1,2,2,0],[1,3,1,1],[0,2,3,2],[1,3,2,0]],[[1,2,2,0],[1,3,1,1],[0,2,3,2],[2,2,2,0]],[[1,2,2,0],[1,3,1,1],[0,2,3,3],[1,2,2,0]],[[1,2,2,0],[1,3,1,1],[0,2,4,2],[1,2,2,0]],[[1,2,2,0],[1,3,1,1],[0,2,3,2],[1,2,1,2]],[[1,2,2,0],[1,3,1,1],[0,2,3,3],[1,2,1,1]],[[1,2,2,0],[1,3,1,1],[0,2,4,2],[1,2,1,1]],[[1,2,2,0],[1,3,1,1],[0,2,3,1],[1,2,2,2]],[[1,2,2,0],[1,3,1,1],[0,2,3,1],[1,2,3,1]],[[1,2,2,0],[1,3,1,1],[0,2,3,1],[1,3,2,1]],[[1,2,2,0],[1,3,1,1],[0,2,3,1],[2,2,2,1]],[[1,2,2,0],[1,3,1,1],[0,2,4,1],[1,2,2,1]],[[1,2,2,0],[1,3,1,1],[0,2,2,2],[1,2,2,2]],[[1,2,2,0],[1,3,1,1],[0,2,2,2],[1,2,3,1]],[[1,2,2,0],[1,3,1,1],[0,2,2,2],[1,3,2,1]],[[1,2,2,0],[1,3,1,1],[0,2,2,2],[2,2,2,1]],[[1,2,2,0],[1,3,1,1],[0,2,2,3],[1,2,2,1]],[[1,2,2,0],[1,4,1,0],[2,2,3,2],[1,1,1,1]],[[1,3,2,0],[1,3,1,0],[2,2,3,2],[1,1,1,1]],[[2,2,2,0],[1,3,1,0],[2,2,3,2],[1,1,1,1]],[[1,2,2,0],[1,4,1,0],[2,2,3,2],[1,0,2,1]],[[1,3,2,0],[1,3,1,0],[2,2,3,2],[1,0,2,1]],[[2,2,2,0],[1,3,1,0],[2,2,3,2],[1,0,2,1]],[[1,2,2,0],[1,4,1,0],[2,2,3,2],[0,2,1,1]],[[1,3,2,0],[1,3,1,0],[2,2,3,2],[0,2,1,1]],[[2,2,2,0],[1,3,1,0],[2,2,3,2],[0,2,1,1]],[[1,2,2,0],[1,4,1,0],[2,2,3,2],[0,1,2,1]],[[1,3,2,0],[1,3,1,0],[2,2,3,2],[0,1,2,1]],[[2,2,2,0],[1,3,1,0],[2,2,3,2],[0,1,2,1]],[[1,2,2,0],[1,4,1,0],[2,2,2,2],[1,1,2,1]],[[1,3,2,0],[1,3,1,0],[2,2,2,2],[1,1,2,1]],[[2,2,2,0],[1,3,1,0],[2,2,2,2],[1,1,2,1]],[[1,2,2,0],[1,4,1,0],[2,2,2,2],[0,2,2,1]],[[1,3,2,0],[1,3,1,0],[2,2,2,2],[0,2,2,1]],[[2,2,2,0],[1,3,1,0],[2,2,2,2],[0,2,2,1]],[[1,2,2,0],[1,4,1,0],[2,1,3,2],[1,2,1,1]],[[1,3,2,0],[1,3,1,0],[2,1,3,2],[1,2,1,1]],[[2,2,2,0],[1,3,1,0],[2,1,3,2],[1,2,1,1]],[[1,2,2,0],[1,4,1,0],[2,1,2,2],[1,2,2,1]],[[1,3,2,0],[1,3,1,0],[2,1,2,2],[1,2,2,1]],[[2,2,2,0],[1,3,1,0],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[1,4,1,0],[2,0,3,2],[1,2,2,1]],[[1,3,2,0],[1,3,1,0],[2,0,3,2],[1,2,2,1]],[[2,2,2,0],[1,3,1,0],[2,0,3,2],[1,2,2,1]],[[1,2,2,0],[1,3,1,0],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[1,3,1,0],[1,4,3,2],[1,1,1,1]],[[1,2,2,0],[1,4,1,0],[1,3,3,2],[1,1,1,1]],[[1,3,2,0],[1,3,1,0],[1,3,3,2],[1,1,1,1]],[[2,2,2,0],[1,3,1,0],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[1,3,1,0],[1,3,3,2],[1,0,2,2]],[[1,2,2,0],[1,3,1,0],[1,3,3,2],[1,0,3,1]],[[1,2,2,0],[1,3,1,0],[1,3,4,2],[1,0,2,1]],[[1,2,2,0],[1,3,1,0],[1,4,3,2],[1,0,2,1]],[[1,2,2,0],[1,4,1,0],[1,3,3,2],[1,0,2,1]],[[1,3,2,0],[1,3,1,0],[1,3,3,2],[1,0,2,1]],[[2,2,2,0],[1,3,1,0],[1,3,3,2],[1,0,2,1]],[[1,2,2,0],[1,3,1,0],[1,3,3,2],[0,3,1,1]],[[1,2,2,0],[1,3,1,0],[1,3,4,2],[0,2,1,1]],[[1,2,2,0],[1,3,1,0],[1,4,3,2],[0,2,1,1]],[[1,2,2,0],[1,4,1,0],[1,3,3,2],[0,2,1,1]],[[1,3,2,0],[1,3,1,0],[1,3,3,2],[0,2,1,1]],[[2,2,2,0],[1,3,1,0],[1,3,3,2],[0,2,1,1]],[[1,2,2,0],[1,3,1,0],[1,3,3,2],[0,1,2,2]],[[1,2,2,0],[1,3,1,0],[1,3,3,2],[0,1,3,1]],[[1,2,2,0],[1,3,1,0],[1,3,4,2],[0,1,2,1]],[[1,2,2,0],[1,3,1,0],[1,4,3,2],[0,1,2,1]],[[1,2,2,0],[1,4,1,0],[1,3,3,2],[0,1,2,1]],[[1,3,2,0],[1,3,1,0],[1,3,3,2],[0,1,2,1]],[[2,2,2,0],[1,3,1,0],[1,3,3,2],[0,1,2,1]],[[0,3,2,1],[2,3,3,0],[2,2,0,0],[1,2,2,1]],[[0,2,3,1],[2,3,3,0],[2,2,0,0],[1,2,2,1]],[[0,2,2,1],[3,3,3,0],[2,2,0,0],[1,2,2,1]],[[0,2,2,1],[2,4,3,0],[2,2,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,3,0],[3,2,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,3,0],[2,2,0,0],[2,2,2,1]],[[0,2,2,1],[2,3,3,0],[2,2,0,0],[1,3,2,1]],[[0,3,2,1],[2,3,3,0],[2,2,0,1],[1,2,2,0]],[[0,2,3,1],[2,3,3,0],[2,2,0,1],[1,2,2,0]],[[0,2,2,1],[3,3,3,0],[2,2,0,1],[1,2,2,0]],[[0,2,2,1],[2,4,3,0],[2,2,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,3,0],[3,2,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,3,0],[2,2,0,1],[2,2,2,0]],[[0,2,2,1],[2,3,3,0],[2,2,0,1],[1,3,2,0]],[[1,2,2,0],[1,3,1,0],[1,4,2,2],[1,1,2,1]],[[1,2,2,0],[1,4,1,0],[1,3,2,2],[1,1,2,1]],[[1,3,2,0],[1,3,1,0],[1,3,2,2],[1,1,2,1]],[[2,2,2,0],[1,3,1,0],[1,3,2,2],[1,1,2,1]],[[1,2,2,0],[1,3,1,0],[1,3,2,2],[0,2,2,2]],[[1,2,2,0],[1,3,1,0],[1,3,2,2],[0,2,3,1]],[[1,2,2,0],[1,3,1,0],[1,3,2,2],[0,3,2,1]],[[0,3,2,1],[2,3,3,0],[2,2,1,0],[0,2,2,1]],[[0,2,3,1],[2,3,3,0],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[3,3,3,0],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[2,4,3,0],[2,2,1,0],[0,2,2,1]],[[0,2,2,1],[2,3,3,0],[3,2,1,0],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,2,1,0],[1,1,2,1]],[[0,2,3,1],[2,3,3,0],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[3,3,3,0],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,4,3,0],[2,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,3,3,0],[3,2,1,0],[1,1,2,1]],[[0,2,2,1],[2,3,3,0],[2,2,1,0],[2,1,2,1]],[[0,3,2,1],[2,3,3,0],[2,2,1,1],[0,2,2,0]],[[0,2,3,1],[2,3,3,0],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[3,3,3,0],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[2,4,3,0],[2,2,1,1],[0,2,2,0]],[[0,2,2,1],[2,3,3,0],[3,2,1,1],[0,2,2,0]],[[0,3,2,1],[2,3,3,0],[2,2,1,1],[1,1,2,0]],[[0,2,3,1],[2,3,3,0],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[3,3,3,0],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,4,3,0],[2,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,3,3,0],[3,2,1,1],[1,1,2,0]],[[0,2,2,1],[2,3,3,0],[2,2,1,1],[2,1,2,0]],[[1,2,2,0],[1,3,1,0],[1,4,2,2],[0,2,2,1]],[[1,2,2,0],[1,4,1,0],[1,3,2,2],[0,2,2,1]],[[1,3,2,0],[1,3,1,0],[1,3,2,2],[0,2,2,1]],[[2,2,2,0],[1,3,1,0],[1,3,2,2],[0,2,2,1]],[[1,2,2,0],[1,3,1,0],[1,2,3,2],[0,2,2,2]],[[1,2,2,0],[1,3,1,0],[1,2,3,2],[0,2,3,1]],[[1,2,2,0],[1,3,1,0],[1,2,3,2],[0,3,2,1]],[[1,2,2,0],[1,3,1,0],[1,2,4,2],[0,2,2,1]],[[1,2,2,0],[1,3,1,0],[0,3,3,2],[1,3,1,1]],[[1,2,2,0],[1,3,1,0],[0,3,3,2],[2,2,1,1]],[[1,2,2,0],[1,3,1,0],[0,3,4,2],[1,2,1,1]],[[1,2,2,0],[1,3,1,0],[0,4,3,2],[1,2,1,1]],[[1,2,2,0],[1,4,1,0],[0,3,3,2],[1,2,1,1]],[[1,3,2,0],[1,3,1,0],[0,3,3,2],[1,2,1,1]],[[2,2,2,0],[1,3,1,0],[0,3,3,2],[1,2,1,1]],[[1,2,2,0],[1,3,1,0],[0,3,3,2],[1,1,2,2]],[[1,2,2,0],[1,3,1,0],[0,3,3,2],[1,1,3,1]],[[1,2,2,0],[1,3,1,0],[0,3,4,2],[1,1,2,1]],[[1,2,2,0],[1,3,1,0],[0,4,3,2],[1,1,2,1]],[[1,2,2,0],[1,4,1,0],[0,3,3,2],[1,1,2,1]],[[1,3,2,0],[1,3,1,0],[0,3,3,2],[1,1,2,1]],[[2,2,2,0],[1,3,1,0],[0,3,3,2],[1,1,2,1]],[[1,2,2,0],[1,3,1,0],[0,3,2,2],[1,2,2,2]],[[1,2,2,0],[1,3,1,0],[0,3,2,2],[1,2,3,1]],[[1,2,2,0],[1,3,1,0],[0,3,2,2],[1,3,2,1]],[[1,2,2,0],[1,3,1,0],[0,3,2,2],[2,2,2,1]],[[1,2,2,0],[1,3,1,0],[0,4,2,2],[1,2,2,1]],[[1,2,2,0],[1,4,1,0],[0,3,2,2],[1,2,2,1]],[[1,3,2,0],[1,3,1,0],[0,3,2,2],[1,2,2,1]],[[2,2,2,0],[1,3,1,0],[0,3,2,2],[1,2,2,1]],[[1,2,2,0],[1,3,1,0],[0,2,3,2],[1,2,2,2]],[[1,2,2,0],[1,3,1,0],[0,2,3,2],[1,2,3,1]],[[1,2,2,0],[1,3,1,0],[0,2,3,2],[1,3,2,1]],[[1,2,2,0],[1,3,1,0],[0,2,3,2],[2,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,2,2,0],[0,1,2,1]],[[0,2,3,1],[2,3,3,0],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[3,3,3,0],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[2,4,3,0],[2,2,2,0],[0,1,2,1]],[[0,2,2,1],[2,3,3,0],[3,2,2,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,0],[2,2,2,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,0],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[3,3,3,0],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[2,4,3,0],[2,2,2,0],[0,2,1,1]],[[0,2,2,1],[2,3,3,0],[3,2,2,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,0],[2,2,2,0],[1,0,2,1]],[[0,2,3,1],[2,3,3,0],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[3,3,3,0],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,4,3,0],[2,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,3,3,0],[3,2,2,0],[1,0,2,1]],[[0,2,2,1],[2,3,3,0],[2,2,2,0],[2,0,2,1]],[[0,3,2,1],[2,3,3,0],[2,2,2,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,0],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[3,3,3,0],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,4,3,0],[2,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,3,3,0],[3,2,2,0],[1,1,1,1]],[[0,2,2,1],[2,3,3,0],[2,2,2,0],[2,1,1,1]],[[0,3,2,1],[2,3,3,0],[2,2,2,0],[1,2,0,1]],[[0,2,3,1],[2,3,3,0],[2,2,2,0],[1,2,0,1]],[[0,2,2,1],[3,3,3,0],[2,2,2,0],[1,2,0,1]],[[0,2,2,1],[2,4,3,0],[2,2,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,3,0],[3,2,2,0],[1,2,0,1]],[[0,2,2,1],[2,3,3,0],[2,2,2,0],[2,2,0,1]],[[1,2,2,0],[1,3,1,0],[0,2,4,2],[1,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,2,2,1],[0,1,1,1]],[[0,2,3,1],[2,3,3,0],[2,2,2,1],[0,1,1,1]],[[0,2,2,1],[3,3,3,0],[2,2,2,1],[0,1,1,1]],[[0,2,2,1],[2,4,3,0],[2,2,2,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,0],[2,2,2,1],[0,1,2,0]],[[0,2,3,1],[2,3,3,0],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[3,3,3,0],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[2,4,3,0],[2,2,2,1],[0,1,2,0]],[[0,2,2,1],[2,3,3,0],[3,2,2,1],[0,1,2,0]],[[0,3,2,1],[2,3,3,0],[2,2,2,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,0],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[3,3,3,0],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[2,4,3,0],[2,2,2,1],[0,2,0,1]],[[0,2,2,1],[2,3,3,0],[3,2,2,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,0],[2,2,2,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,0],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[3,3,3,0],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[2,4,3,0],[2,2,2,1],[0,2,1,0]],[[0,2,2,1],[2,3,3,0],[3,2,2,1],[0,2,1,0]],[[0,3,2,1],[2,3,3,0],[2,2,2,1],[1,0,1,1]],[[0,2,3,1],[2,3,3,0],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[3,3,3,0],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[2,4,3,0],[2,2,2,1],[1,0,1,1]],[[0,2,2,1],[2,3,3,0],[3,2,2,1],[1,0,1,1]],[[0,3,2,1],[2,3,3,0],[2,2,2,1],[1,0,2,0]],[[0,2,3,1],[2,3,3,0],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[3,3,3,0],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,4,3,0],[2,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,3,3,0],[3,2,2,1],[1,0,2,0]],[[0,2,2,1],[2,3,3,0],[2,2,2,1],[2,0,2,0]],[[0,3,2,1],[2,3,3,0],[2,2,2,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,0],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[3,3,3,0],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,4,3,0],[2,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,0],[3,2,2,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,0],[2,2,2,1],[2,1,0,1]],[[0,3,2,1],[2,3,3,0],[2,2,2,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,0],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[3,3,3,0],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,4,3,0],[2,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[3,2,2,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[2,2,2,1],[2,1,1,0]],[[0,3,2,1],[2,3,3,0],[2,2,2,1],[1,2,0,0]],[[0,2,3,1],[2,3,3,0],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[3,3,3,0],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,4,3,0],[2,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,0],[3,2,2,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,0],[2,2,2,1],[2,2,0,0]],[[1,2,2,0],[1,4,0,2],[2,3,3,2],[1,0,1,0]],[[1,2,3,0],[1,3,0,2],[2,3,3,2],[1,0,1,0]],[[1,3,2,0],[1,3,0,2],[2,3,3,2],[1,0,1,0]],[[2,2,2,0],[1,3,0,2],[2,3,3,2],[1,0,1,0]],[[1,2,2,0],[1,4,0,2],[2,3,3,2],[1,0,0,1]],[[1,2,3,0],[1,3,0,2],[2,3,3,2],[1,0,0,1]],[[1,3,2,0],[1,3,0,2],[2,3,3,2],[1,0,0,1]],[[2,2,2,0],[1,3,0,2],[2,3,3,2],[1,0,0,1]],[[0,3,2,1],[2,3,3,0],[2,2,3,0],[0,1,2,0]],[[0,2,3,1],[2,3,3,0],[2,2,3,0],[0,1,2,0]],[[0,2,2,1],[3,3,3,0],[2,2,3,0],[0,1,2,0]],[[0,2,2,1],[2,4,3,0],[2,2,3,0],[0,1,2,0]],[[0,2,2,1],[2,3,3,0],[3,2,3,0],[0,1,2,0]],[[0,3,2,1],[2,3,3,0],[2,2,3,0],[0,2,1,0]],[[0,2,3,1],[2,3,3,0],[2,2,3,0],[0,2,1,0]],[[0,2,2,1],[3,3,3,0],[2,2,3,0],[0,2,1,0]],[[0,2,2,1],[2,4,3,0],[2,2,3,0],[0,2,1,0]],[[0,2,2,1],[2,3,3,0],[3,2,3,0],[0,2,1,0]],[[0,3,2,1],[2,3,3,0],[2,2,3,0],[1,0,2,0]],[[0,2,3,1],[2,3,3,0],[2,2,3,0],[1,0,2,0]],[[0,2,2,1],[3,3,3,0],[2,2,3,0],[1,0,2,0]],[[0,2,2,1],[2,4,3,0],[2,2,3,0],[1,0,2,0]],[[0,2,2,1],[2,3,3,0],[3,2,3,0],[1,0,2,0]],[[0,2,2,1],[2,3,3,0],[2,2,3,0],[2,0,2,0]],[[0,3,2,1],[2,3,3,0],[2,2,3,0],[1,1,1,0]],[[0,2,3,1],[2,3,3,0],[2,2,3,0],[1,1,1,0]],[[0,2,2,1],[3,3,3,0],[2,2,3,0],[1,1,1,0]],[[0,2,2,1],[2,4,3,0],[2,2,3,0],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[3,2,3,0],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[2,2,3,0],[2,1,1,0]],[[0,3,2,1],[2,3,3,0],[2,2,3,0],[1,2,0,0]],[[0,2,3,1],[2,3,3,0],[2,2,3,0],[1,2,0,0]],[[0,2,2,1],[3,3,3,0],[2,2,3,0],[1,2,0,0]],[[0,2,2,1],[2,4,3,0],[2,2,3,0],[1,2,0,0]],[[0,2,2,1],[2,3,3,0],[3,2,3,0],[1,2,0,0]],[[0,2,2,1],[2,3,3,0],[2,2,3,0],[2,2,0,0]],[[0,3,2,1],[2,3,3,0],[2,2,3,1],[0,2,0,0]],[[0,2,3,1],[2,3,3,0],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[3,3,3,0],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[2,4,3,0],[2,2,3,1],[0,2,0,0]],[[0,2,2,1],[2,3,3,0],[3,2,3,1],[0,2,0,0]],[[1,2,2,0],[1,4,0,2],[2,2,3,2],[1,2,0,0]],[[1,2,3,0],[1,3,0,2],[2,2,3,2],[1,2,0,0]],[[1,3,2,0],[1,3,0,2],[2,2,3,2],[1,2,0,0]],[[2,2,2,0],[1,3,0,2],[2,2,3,2],[1,2,0,0]],[[1,2,2,0],[1,4,0,2],[2,2,3,2],[1,1,1,0]],[[1,2,3,0],[1,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,3,2,0],[1,3,0,2],[2,2,3,2],[1,1,1,0]],[[2,2,2,0],[1,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,2,2,0],[1,4,0,2],[2,2,3,2],[1,1,0,1]],[[1,2,3,0],[1,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,3,2,0],[1,3,0,2],[2,2,3,2],[1,1,0,1]],[[2,2,2,0],[1,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,2,2,0],[1,4,0,2],[2,2,3,2],[1,0,2,0]],[[1,2,3,0],[1,3,0,2],[2,2,3,2],[1,0,2,0]],[[1,3,2,0],[1,3,0,2],[2,2,3,2],[1,0,2,0]],[[2,2,2,0],[1,3,0,2],[2,2,3,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,0],[2,2,3,1],[1,1,0,0]],[[0,2,3,1],[2,3,3,0],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[3,3,3,0],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,4,3,0],[2,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,3,3,0],[3,2,3,1],[1,1,0,0]],[[0,2,2,1],[2,3,3,0],[2,2,3,1],[2,1,0,0]],[[1,2,2,0],[1,4,0,2],[2,2,3,2],[1,0,1,1]],[[1,2,3,0],[1,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,3,2,0],[1,3,0,2],[2,2,3,2],[1,0,1,1]],[[2,2,2,0],[1,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,2,2,0],[1,4,0,2],[2,2,3,2],[0,2,1,0]],[[1,2,3,0],[1,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,3,2,0],[1,3,0,2],[2,2,3,2],[0,2,1,0]],[[2,2,2,0],[1,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,2,2,0],[1,4,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,3,0],[1,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,3,2,0],[1,3,0,2],[2,2,3,2],[0,2,0,1]],[[2,2,2,0],[1,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,2,0],[1,4,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,3,0],[1,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,3,2,0],[1,3,0,2],[2,2,3,2],[0,1,2,0]],[[2,2,2,0],[1,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,2,0],[1,4,0,2],[2,2,3,2],[0,1,1,1]],[[1,2,3,0],[1,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,3,2,0],[1,3,0,2],[2,2,3,2],[0,1,1,1]],[[2,2,2,0],[1,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,2,2,0],[1,4,0,2],[2,2,3,1],[1,1,1,1]],[[1,2,3,0],[1,3,0,2],[2,2,3,1],[1,1,1,1]],[[1,3,2,0],[1,3,0,2],[2,2,3,1],[1,1,1,1]],[[2,2,2,0],[1,3,0,2],[2,2,3,1],[1,1,1,1]],[[1,2,2,0],[1,4,0,2],[2,2,3,1],[1,0,2,1]],[[1,2,3,0],[1,3,0,2],[2,2,3,1],[1,0,2,1]],[[1,3,2,0],[1,3,0,2],[2,2,3,1],[1,0,2,1]],[[2,2,2,0],[1,3,0,2],[2,2,3,1],[1,0,2,1]],[[1,2,2,0],[1,4,0,2],[2,2,3,1],[0,2,1,1]],[[1,2,3,0],[1,3,0,2],[2,2,3,1],[0,2,1,1]],[[1,3,2,0],[1,3,0,2],[2,2,3,1],[0,2,1,1]],[[2,2,2,0],[1,3,0,2],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[1,4,0,2],[2,2,3,1],[0,1,2,1]],[[1,2,3,0],[1,3,0,2],[2,2,3,1],[0,1,2,1]],[[1,3,2,0],[1,3,0,2],[2,2,3,1],[0,1,2,1]],[[2,2,2,0],[1,3,0,2],[2,2,3,1],[0,1,2,1]],[[1,2,2,0],[1,4,0,2],[2,2,2,2],[1,1,2,0]],[[1,2,3,0],[1,3,0,2],[2,2,2,2],[1,1,2,0]],[[1,3,2,0],[1,3,0,2],[2,2,2,2],[1,1,2,0]],[[2,2,2,0],[1,3,0,2],[2,2,2,2],[1,1,2,0]],[[1,2,2,0],[1,4,0,2],[2,2,2,2],[0,2,2,0]],[[1,2,3,0],[1,3,0,2],[2,2,2,2],[0,2,2,0]],[[1,3,2,0],[1,3,0,2],[2,2,2,2],[0,2,2,0]],[[2,2,2,0],[1,3,0,2],[2,2,2,2],[0,2,2,0]],[[1,2,2,0],[1,4,0,2],[2,2,2,1],[1,1,2,1]],[[1,2,3,0],[1,3,0,2],[2,2,2,1],[1,1,2,1]],[[1,3,2,0],[1,3,0,2],[2,2,2,1],[1,1,2,1]],[[2,2,2,0],[1,3,0,2],[2,2,2,1],[1,1,2,1]],[[1,2,2,0],[1,4,0,2],[2,2,2,1],[0,2,2,1]],[[1,2,3,0],[1,3,0,2],[2,2,2,1],[0,2,2,1]],[[1,3,2,0],[1,3,0,2],[2,2,2,1],[0,2,2,1]],[[2,2,2,0],[1,3,0,2],[2,2,2,1],[0,2,2,1]],[[1,2,2,0],[1,4,0,2],[2,2,1,2],[1,1,2,1]],[[1,2,3,0],[1,3,0,2],[2,2,1,2],[1,1,2,1]],[[1,3,2,0],[1,3,0,2],[2,2,1,2],[1,1,2,1]],[[2,2,2,0],[1,3,0,2],[2,2,1,2],[1,1,2,1]],[[1,2,2,0],[1,4,0,2],[2,2,1,2],[0,2,2,1]],[[1,2,3,0],[1,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,3,2,0],[1,3,0,2],[2,2,1,2],[0,2,2,1]],[[2,2,2,0],[1,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,0],[1,4,0,2],[2,1,3,2],[1,2,1,0]],[[1,2,3,0],[1,3,0,2],[2,1,3,2],[1,2,1,0]],[[1,3,2,0],[1,3,0,2],[2,1,3,2],[1,2,1,0]],[[2,2,2,0],[1,3,0,2],[2,1,3,2],[1,2,1,0]],[[1,2,2,0],[1,4,0,2],[2,1,3,2],[1,2,0,1]],[[1,2,3,0],[1,3,0,2],[2,1,3,2],[1,2,0,1]],[[1,3,2,0],[1,3,0,2],[2,1,3,2],[1,2,0,1]],[[2,2,2,0],[1,3,0,2],[2,1,3,2],[1,2,0,1]],[[1,2,2,0],[1,4,0,2],[2,1,3,1],[1,2,1,1]],[[1,2,3,0],[1,3,0,2],[2,1,3,1],[1,2,1,1]],[[1,3,2,0],[1,3,0,2],[2,1,3,1],[1,2,1,1]],[[2,2,2,0],[1,3,0,2],[2,1,3,1],[1,2,1,1]],[[1,2,2,0],[1,4,0,2],[2,1,2,2],[1,2,2,0]],[[1,2,3,0],[1,3,0,2],[2,1,2,2],[1,2,2,0]],[[1,3,2,0],[1,3,0,2],[2,1,2,2],[1,2,2,0]],[[2,2,2,0],[1,3,0,2],[2,1,2,2],[1,2,2,0]],[[1,2,2,0],[1,4,0,2],[2,1,2,1],[1,2,2,1]],[[1,2,3,0],[1,3,0,2],[2,1,2,1],[1,2,2,1]],[[1,3,2,0],[1,3,0,2],[2,1,2,1],[1,2,2,1]],[[2,2,2,0],[1,3,0,2],[2,1,2,1],[1,2,2,1]],[[1,2,2,0],[1,4,0,2],[2,1,1,2],[1,2,2,1]],[[1,2,3,0],[1,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,3,2,0],[1,3,0,2],[2,1,1,2],[1,2,2,1]],[[2,2,2,0],[1,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[1,4,0,2],[2,0,3,2],[1,2,2,0]],[[1,2,3,0],[1,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,3,2,0],[1,3,0,2],[2,0,3,2],[1,2,2,0]],[[2,2,2,0],[1,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,4,0,2],[2,0,3,1],[1,2,2,1]],[[1,2,3,0],[1,3,0,2],[2,0,3,1],[1,2,2,1]],[[1,3,2,0],[1,3,0,2],[2,0,3,1],[1,2,2,1]],[[2,2,2,0],[1,3,0,2],[2,0,3,1],[1,2,2,1]],[[1,2,2,0],[1,4,0,2],[2,0,2,2],[1,2,2,1]],[[1,2,3,0],[1,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,3,2,0],[1,3,0,2],[2,0,2,2],[1,2,2,1]],[[2,2,2,0],[1,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,2,2,0],[1,3,0,2],[1,4,3,2],[1,2,0,0]],[[1,2,2,0],[1,4,0,2],[1,3,3,2],[1,2,0,0]],[[1,2,3,0],[1,3,0,2],[1,3,3,2],[1,2,0,0]],[[1,3,2,0],[1,3,0,2],[1,3,3,2],[1,2,0,0]],[[2,2,2,0],[1,3,0,2],[1,3,3,2],[1,2,0,0]],[[1,2,2,0],[1,3,0,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[1,3,0,2],[1,3,4,2],[1,1,1,0]],[[1,2,2,0],[1,3,0,2],[1,4,3,2],[1,1,1,0]],[[1,2,2,0],[1,3,0,3],[1,3,3,2],[1,1,1,0]],[[1,2,2,0],[1,4,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,3,0],[1,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,3,2,0],[1,3,0,2],[1,3,3,2],[1,1,1,0]],[[2,2,2,0],[1,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,2,0],[1,3,0,2],[1,3,3,2],[1,1,0,2]],[[1,2,2,0],[1,3,0,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,0],[1,3,0,2],[1,3,4,2],[1,1,0,1]],[[1,2,2,0],[1,3,0,2],[1,4,3,2],[1,1,0,1]],[[1,2,2,0],[1,3,0,3],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[1,4,0,2],[1,3,3,2],[1,1,0,1]],[[1,2,3,0],[1,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,3,2,0],[1,3,0,2],[1,3,3,2],[1,1,0,1]],[[2,2,2,0],[1,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[1,3,0,2],[1,3,3,2],[1,0,3,0]],[[1,2,2,0],[1,3,0,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,0],[1,3,0,2],[1,3,4,2],[1,0,2,0]],[[1,2,2,0],[1,3,0,2],[1,4,3,2],[1,0,2,0]],[[1,2,2,0],[1,3,0,3],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[1,4,0,2],[1,3,3,2],[1,0,2,0]],[[1,2,3,0],[1,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,3,2,0],[1,3,0,2],[1,3,3,2],[1,0,2,0]],[[2,2,2,0],[1,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[1,3,0,2],[1,3,3,2],[1,0,1,2]],[[1,2,2,0],[1,3,0,2],[1,3,3,3],[1,0,1,1]],[[1,2,2,0],[1,3,0,2],[1,3,4,2],[1,0,1,1]],[[1,2,2,0],[1,3,0,2],[1,4,3,2],[1,0,1,1]],[[1,2,2,0],[1,3,0,3],[1,3,3,2],[1,0,1,1]],[[1,2,2,0],[1,4,0,2],[1,3,3,2],[1,0,1,1]],[[1,2,3,0],[1,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,3,2,0],[1,3,0,2],[1,3,3,2],[1,0,1,1]],[[2,2,2,0],[1,3,0,2],[1,3,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,0],[2,3,0,0],[0,2,2,1]],[[0,2,3,1],[2,3,3,0],[2,3,0,0],[0,2,2,1]],[[0,2,2,1],[3,3,3,0],[2,3,0,0],[0,2,2,1]],[[0,2,2,1],[2,4,3,0],[2,3,0,0],[0,2,2,1]],[[0,2,2,1],[2,3,3,0],[3,3,0,0],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,3,0,0],[1,1,2,1]],[[0,2,3,1],[2,3,3,0],[2,3,0,0],[1,1,2,1]],[[0,2,2,1],[3,3,3,0],[2,3,0,0],[1,1,2,1]],[[0,2,2,1],[2,4,3,0],[2,3,0,0],[1,1,2,1]],[[0,2,2,1],[2,3,3,0],[3,3,0,0],[1,1,2,1]],[[0,2,2,1],[2,3,3,0],[2,3,0,0],[2,1,2,1]],[[0,3,2,1],[2,3,3,0],[2,3,0,0],[1,2,1,1]],[[0,2,3,1],[2,3,3,0],[2,3,0,0],[1,2,1,1]],[[0,2,2,1],[3,3,3,0],[2,3,0,0],[1,2,1,1]],[[0,2,2,1],[2,4,3,0],[2,3,0,0],[1,2,1,1]],[[0,2,2,1],[2,3,3,0],[3,3,0,0],[1,2,1,1]],[[0,2,2,1],[2,3,3,0],[2,3,0,0],[2,2,1,1]],[[0,3,2,1],[2,3,3,0],[2,3,0,0],[1,2,2,0]],[[0,2,3,1],[2,3,3,0],[2,3,0,0],[1,2,2,0]],[[0,2,2,1],[3,3,3,0],[2,3,0,0],[1,2,2,0]],[[0,2,2,1],[2,4,3,0],[2,3,0,0],[1,2,2,0]],[[0,2,2,1],[2,3,3,0],[3,3,0,0],[1,2,2,0]],[[0,2,2,1],[2,3,3,0],[2,3,0,0],[2,2,2,0]],[[0,3,2,1],[2,3,3,0],[2,3,0,1],[0,2,2,0]],[[0,2,3,1],[2,3,3,0],[2,3,0,1],[0,2,2,0]],[[0,2,2,1],[3,3,3,0],[2,3,0,1],[0,2,2,0]],[[0,2,2,1],[2,4,3,0],[2,3,0,1],[0,2,2,0]],[[0,2,2,1],[2,3,3,0],[3,3,0,1],[0,2,2,0]],[[0,3,2,1],[2,3,3,0],[2,3,0,1],[1,1,2,0]],[[0,2,3,1],[2,3,3,0],[2,3,0,1],[1,1,2,0]],[[0,2,2,1],[3,3,3,0],[2,3,0,1],[1,1,2,0]],[[0,2,2,1],[2,4,3,0],[2,3,0,1],[1,1,2,0]],[[0,2,2,1],[2,3,3,0],[3,3,0,1],[1,1,2,0]],[[0,2,2,1],[2,3,3,0],[2,3,0,1],[2,1,2,0]],[[0,3,2,1],[2,3,3,0],[2,3,0,1],[1,2,1,0]],[[0,2,3,1],[2,3,3,0],[2,3,0,1],[1,2,1,0]],[[0,2,2,1],[3,3,3,0],[2,3,0,1],[1,2,1,0]],[[0,2,2,1],[2,4,3,0],[2,3,0,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[3,3,0,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,0],[2,3,0,1],[2,2,1,0]],[[1,2,2,0],[1,3,0,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,0],[1,3,0,2],[1,3,3,3],[0,2,1,0]],[[1,2,2,0],[1,3,0,2],[1,3,4,2],[0,2,1,0]],[[1,2,2,0],[1,3,0,2],[1,4,3,2],[0,2,1,0]],[[1,2,2,0],[1,3,0,3],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,4,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,3,0],[1,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,3,2,0],[1,3,0,2],[1,3,3,2],[0,2,1,0]],[[2,2,2,0],[1,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,3,0,2],[1,3,3,2],[0,2,0,2]],[[1,2,2,0],[1,3,0,2],[1,3,3,2],[0,3,0,1]],[[1,2,2,0],[1,3,0,2],[1,3,3,3],[0,2,0,1]],[[1,2,2,0],[1,3,0,2],[1,3,4,2],[0,2,0,1]],[[1,2,2,0],[1,3,0,2],[1,4,3,2],[0,2,0,1]],[[1,2,2,0],[1,3,0,3],[1,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,4,0,2],[1,3,3,2],[0,2,0,1]],[[1,2,3,0],[1,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,3,2,0],[1,3,0,2],[1,3,3,2],[0,2,0,1]],[[2,2,2,0],[1,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,3,0,2],[1,3,3,2],[0,1,3,0]],[[1,2,2,0],[1,3,0,2],[1,3,3,3],[0,1,2,0]],[[1,2,2,0],[1,3,0,2],[1,3,4,2],[0,1,2,0]],[[1,2,2,0],[1,3,0,2],[1,4,3,2],[0,1,2,0]],[[1,2,2,0],[1,3,0,3],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,4,0,2],[1,3,3,2],[0,1,2,0]],[[1,2,3,0],[1,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,3,2,0],[1,3,0,2],[1,3,3,2],[0,1,2,0]],[[2,2,2,0],[1,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,3,0,2],[1,3,3,2],[0,1,1,2]],[[1,2,2,0],[1,3,0,2],[1,3,3,3],[0,1,1,1]],[[1,2,2,0],[1,3,0,2],[1,3,4,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,0],[2,3,1,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,0],[2,3,1,0],[0,2,1,1]],[[0,2,2,1],[3,3,3,0],[2,3,1,0],[0,2,1,1]],[[0,2,2,1],[2,4,3,0],[2,3,1,0],[0,2,1,1]],[[0,2,2,1],[2,3,3,0],[3,3,1,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,0],[2,3,1,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,0],[2,3,1,0],[1,1,1,1]],[[0,2,2,1],[3,3,3,0],[2,3,1,0],[1,1,1,1]],[[0,2,2,1],[2,4,3,0],[2,3,1,0],[1,1,1,1]],[[0,2,2,1],[2,3,3,0],[3,3,1,0],[1,1,1,1]],[[0,2,2,1],[2,3,3,0],[2,3,1,0],[2,1,1,1]],[[0,3,2,1],[2,3,3,0],[2,3,1,0],[1,2,0,1]],[[0,2,3,1],[2,3,3,0],[2,3,1,0],[1,2,0,1]],[[0,2,2,1],[3,3,3,0],[2,3,1,0],[1,2,0,1]],[[0,2,2,1],[2,4,3,0],[2,3,1,0],[1,2,0,1]],[[0,2,2,1],[2,3,3,0],[3,3,1,0],[1,2,0,1]],[[0,2,2,1],[2,3,3,0],[2,3,1,0],[2,2,0,1]],[[1,2,2,0],[1,3,0,2],[1,4,3,2],[0,1,1,1]],[[1,2,2,0],[1,3,0,3],[1,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,4,0,2],[1,3,3,2],[0,1,1,1]],[[1,2,3,0],[1,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,3,2,0],[1,3,0,2],[1,3,3,2],[0,1,1,1]],[[2,2,2,0],[1,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,3,0,2],[1,3,3,2],[0,0,2,2]],[[1,2,2,0],[1,3,0,2],[1,3,3,3],[0,0,2,1]],[[1,2,2,0],[1,3,0,2],[1,3,4,2],[0,0,2,1]],[[0,3,2,1],[2,3,3,0],[2,3,1,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,0],[2,3,1,1],[0,2,0,1]],[[0,2,2,1],[3,3,3,0],[2,3,1,1],[0,2,0,1]],[[0,2,2,1],[2,4,3,0],[2,3,1,1],[0,2,0,1]],[[0,2,2,1],[2,3,3,0],[3,3,1,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,0],[2,3,1,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,0],[2,3,1,1],[0,2,1,0]],[[0,2,2,1],[3,3,3,0],[2,3,1,1],[0,2,1,0]],[[0,2,2,1],[2,4,3,0],[2,3,1,1],[0,2,1,0]],[[0,2,2,1],[2,3,3,0],[3,3,1,1],[0,2,1,0]],[[1,2,2,0],[1,3,0,3],[1,3,3,2],[0,0,2,1]],[[0,3,2,1],[2,3,3,0],[2,3,1,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,0],[2,3,1,1],[1,1,0,1]],[[0,2,2,1],[3,3,3,0],[2,3,1,1],[1,1,0,1]],[[0,2,2,1],[2,4,3,0],[2,3,1,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,0],[3,3,1,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,0],[2,3,1,1],[2,1,0,1]],[[0,3,2,1],[2,3,3,0],[2,3,1,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,0],[2,3,1,1],[1,1,1,0]],[[0,2,2,1],[3,3,3,0],[2,3,1,1],[1,1,1,0]],[[0,2,2,1],[2,4,3,0],[2,3,1,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[3,3,1,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[2,3,1,1],[2,1,1,0]],[[1,2,2,0],[1,3,0,2],[1,3,4,1],[1,1,1,1]],[[1,2,2,0],[1,3,0,2],[1,4,3,1],[1,1,1,1]],[[1,2,2,0],[1,4,0,2],[1,3,3,1],[1,1,1,1]],[[0,3,2,1],[2,3,3,0],[2,3,1,1],[1,2,0,0]],[[0,2,3,1],[2,3,3,0],[2,3,1,1],[1,2,0,0]],[[0,2,2,1],[3,3,3,0],[2,3,1,1],[1,2,0,0]],[[0,2,2,1],[2,4,3,0],[2,3,1,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,0],[3,3,1,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,0],[2,3,1,1],[2,2,0,0]],[[1,2,3,0],[1,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,3,2,0],[1,3,0,2],[1,3,3,1],[1,1,1,1]],[[2,2,2,0],[1,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[1,3,0,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,0],[1,3,0,2],[1,3,3,1],[1,0,3,1]],[[1,2,2,0],[1,3,0,2],[1,3,4,1],[1,0,2,1]],[[1,2,2,0],[1,3,0,2],[1,4,3,1],[1,0,2,1]],[[1,2,2,0],[1,4,0,2],[1,3,3,1],[1,0,2,1]],[[1,2,3,0],[1,3,0,2],[1,3,3,1],[1,0,2,1]],[[1,3,2,0],[1,3,0,2],[1,3,3,1],[1,0,2,1]],[[2,2,2,0],[1,3,0,2],[1,3,3,1],[1,0,2,1]],[[1,2,2,0],[1,3,0,2],[1,3,3,1],[0,3,1,1]],[[1,2,2,0],[1,3,0,2],[1,3,4,1],[0,2,1,1]],[[1,2,2,0],[1,3,0,2],[1,4,3,1],[0,2,1,1]],[[1,2,2,0],[1,4,0,2],[1,3,3,1],[0,2,1,1]],[[1,2,3,0],[1,3,0,2],[1,3,3,1],[0,2,1,1]],[[1,3,2,0],[1,3,0,2],[1,3,3,1],[0,2,1,1]],[[2,2,2,0],[1,3,0,2],[1,3,3,1],[0,2,1,1]],[[1,2,2,0],[1,3,0,2],[1,3,3,1],[0,1,2,2]],[[1,2,2,0],[1,3,0,2],[1,3,3,1],[0,1,3,1]],[[1,2,2,0],[1,3,0,2],[1,3,4,1],[0,1,2,1]],[[1,2,2,0],[1,3,0,2],[1,4,3,1],[0,1,2,1]],[[1,2,2,0],[1,4,0,2],[1,3,3,1],[0,1,2,1]],[[1,2,3,0],[1,3,0,2],[1,3,3,1],[0,1,2,1]],[[1,3,2,0],[1,3,0,2],[1,3,3,1],[0,1,2,1]],[[2,2,2,0],[1,3,0,2],[1,3,3,1],[0,1,2,1]],[[1,2,2,0],[1,3,0,2],[1,4,2,2],[1,1,2,0]],[[1,2,2,0],[1,4,0,2],[1,3,2,2],[1,1,2,0]],[[1,2,3,0],[1,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,3,2,0],[1,3,0,2],[1,3,2,2],[1,1,2,0]],[[2,2,2,0],[1,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,2,2,0],[1,3,0,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,0],[1,3,0,2],[1,3,2,2],[1,0,3,1]],[[1,2,2,0],[1,3,0,2],[1,3,2,3],[1,0,2,1]],[[1,2,2,0],[1,3,0,3],[1,3,2,2],[1,0,2,1]],[[1,2,2,0],[1,3,0,2],[1,3,2,2],[0,2,3,0]],[[1,2,2,0],[1,3,0,2],[1,3,2,2],[0,3,2,0]],[[1,2,2,0],[1,3,0,2],[1,4,2,2],[0,2,2,0]],[[1,2,2,0],[1,4,0,2],[1,3,2,2],[0,2,2,0]],[[1,2,3,0],[1,3,0,2],[1,3,2,2],[0,2,2,0]],[[1,3,2,0],[1,3,0,2],[1,3,2,2],[0,2,2,0]],[[2,2,2,0],[1,3,0,2],[1,3,2,2],[0,2,2,0]],[[1,2,2,0],[1,3,0,2],[1,3,2,2],[0,1,2,2]],[[1,2,2,0],[1,3,0,2],[1,3,2,2],[0,1,3,1]],[[1,2,2,0],[1,3,0,2],[1,3,2,3],[0,1,2,1]],[[1,2,2,0],[1,3,0,3],[1,3,2,2],[0,1,2,1]],[[1,2,2,0],[1,3,0,2],[1,4,2,1],[1,1,2,1]],[[1,2,2,0],[1,4,0,2],[1,3,2,1],[1,1,2,1]],[[1,2,3,0],[1,3,0,2],[1,3,2,1],[1,1,2,1]],[[1,3,2,0],[1,3,0,2],[1,3,2,1],[1,1,2,1]],[[2,2,2,0],[1,3,0,2],[1,3,2,1],[1,1,2,1]],[[1,2,2,0],[1,3,0,2],[1,3,2,1],[0,2,2,2]],[[1,2,2,0],[1,3,0,2],[1,3,2,1],[0,2,3,1]],[[1,2,2,0],[1,3,0,2],[1,3,2,1],[0,3,2,1]],[[1,2,2,0],[1,3,0,2],[1,4,2,1],[0,2,2,1]],[[1,2,2,0],[1,4,0,2],[1,3,2,1],[0,2,2,1]],[[1,2,3,0],[1,3,0,2],[1,3,2,1],[0,2,2,1]],[[1,3,2,0],[1,3,0,2],[1,3,2,1],[0,2,2,1]],[[2,2,2,0],[1,3,0,2],[1,3,2,1],[0,2,2,1]],[[1,2,2,0],[1,3,0,2],[1,4,1,2],[1,1,2,1]],[[1,2,2,0],[1,4,0,2],[1,3,1,2],[1,1,2,1]],[[1,2,3,0],[1,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,3,2,0],[1,3,0,2],[1,3,1,2],[1,1,2,1]],[[0,3,2,1],[2,3,3,0],[2,3,2,0],[0,2,1,0]],[[0,2,3,1],[2,3,3,0],[2,3,2,0],[0,2,1,0]],[[0,2,2,1],[3,3,3,0],[2,3,2,0],[0,2,1,0]],[[0,2,2,1],[2,4,3,0],[2,3,2,0],[0,2,1,0]],[[0,2,2,1],[2,3,3,0],[3,3,2,0],[0,2,1,0]],[[2,2,2,0],[1,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,2,2,0],[1,3,0,2],[1,3,1,2],[0,2,2,2]],[[1,2,2,0],[1,3,0,2],[1,3,1,2],[0,2,3,1]],[[1,2,2,0],[1,3,0,2],[1,3,1,2],[0,3,2,1]],[[1,2,2,0],[1,3,0,2],[1,3,1,3],[0,2,2,1]],[[1,2,2,0],[1,3,0,2],[1,4,1,2],[0,2,2,1]],[[1,2,2,0],[1,3,0,3],[1,3,1,2],[0,2,2,1]],[[1,2,2,0],[1,4,0,2],[1,3,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,3,2,0],[1,0,1,1]],[[0,2,3,1],[2,3,3,0],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[3,3,3,0],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[2,4,3,0],[2,3,2,0],[1,0,1,1]],[[0,2,2,1],[2,3,3,0],[3,3,2,0],[1,0,1,1]],[[0,3,2,1],[2,3,3,0],[2,3,2,0],[1,1,1,0]],[[0,2,3,1],[2,3,3,0],[2,3,2,0],[1,1,1,0]],[[0,2,2,1],[3,3,3,0],[2,3,2,0],[1,1,1,0]],[[0,2,2,1],[2,4,3,0],[2,3,2,0],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[3,3,2,0],[1,1,1,0]],[[0,2,2,1],[2,3,3,0],[2,3,2,0],[2,1,1,0]],[[1,2,3,0],[1,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,3,2,0],[1,3,0,2],[1,3,1,2],[0,2,2,1]],[[2,2,2,0],[1,3,0,2],[1,3,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,3,2,0],[1,2,0,0]],[[0,2,3,1],[2,3,3,0],[2,3,2,0],[1,2,0,0]],[[0,2,2,1],[3,3,3,0],[2,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,4,3,0],[2,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,3,3,0],[3,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,3,3,0],[2,3,2,0],[2,2,0,0]],[[1,2,2,0],[1,3,0,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[1,3,0,2],[1,2,3,2],[0,3,2,0]],[[1,2,2,0],[1,3,0,2],[1,2,3,3],[0,2,2,0]],[[1,2,2,0],[1,3,0,2],[1,2,4,2],[0,2,2,0]],[[1,2,2,0],[1,3,0,3],[1,2,3,2],[0,2,2,0]],[[1,2,2,0],[1,3,0,2],[1,2,3,2],[0,2,1,2]],[[1,2,2,0],[1,3,0,2],[1,2,3,3],[0,2,1,1]],[[1,2,2,0],[1,3,0,2],[1,2,4,2],[0,2,1,1]],[[1,2,2,0],[1,3,0,3],[1,2,3,2],[0,2,1,1]],[[1,2,2,0],[1,3,0,2],[1,2,3,1],[0,2,2,2]],[[1,2,2,0],[1,3,0,2],[1,2,3,1],[0,2,3,1]],[[1,2,2,0],[1,3,0,2],[1,2,3,1],[0,3,2,1]],[[1,2,2,0],[1,3,0,2],[1,2,4,1],[0,2,2,1]],[[1,2,2,0],[1,3,0,2],[1,2,2,2],[0,2,2,2]],[[1,2,2,0],[1,3,0,2],[1,2,2,2],[0,2,3,1]],[[1,2,2,0],[1,3,0,2],[1,2,2,2],[0,3,2,1]],[[1,2,2,0],[1,3,0,2],[1,2,2,3],[0,2,2,1]],[[1,2,2,0],[1,3,0,3],[1,2,2,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,0],[2,3,2,1],[1,0,0,1]],[[0,2,3,1],[2,3,3,0],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[3,3,3,0],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[2,4,3,0],[2,3,2,1],[1,0,0,1]],[[0,2,2,1],[2,3,3,0],[3,3,2,1],[1,0,0,1]],[[0,3,2,1],[2,3,3,0],[2,3,2,1],[1,0,1,0]],[[0,2,3,1],[2,3,3,0],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[3,3,3,0],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[2,4,3,0],[2,3,2,1],[1,0,1,0]],[[0,2,2,1],[2,3,3,0],[3,3,2,1],[1,0,1,0]],[[1,2,2,0],[1,3,0,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,0],[1,3,0,2],[0,3,3,2],[2,2,1,0]],[[1,2,2,0],[1,3,0,2],[0,3,3,3],[1,2,1,0]],[[1,2,2,0],[1,3,0,2],[0,3,4,2],[1,2,1,0]],[[1,2,2,0],[1,3,0,2],[0,4,3,2],[1,2,1,0]],[[1,2,2,0],[1,3,0,3],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[1,4,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,3,0],[1,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,3,2,0],[1,3,0,2],[0,3,3,2],[1,2,1,0]],[[2,2,2,0],[1,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[1,3,0,2],[0,3,3,2],[1,2,0,2]],[[1,2,2,0],[1,3,0,2],[0,3,3,2],[1,3,0,1]],[[1,2,2,0],[1,3,0,2],[0,3,3,2],[2,2,0,1]],[[1,2,2,0],[1,3,0,2],[0,3,3,3],[1,2,0,1]],[[1,2,2,0],[1,3,0,2],[0,3,4,2],[1,2,0,1]],[[1,2,2,0],[1,3,0,2],[0,4,3,2],[1,2,0,1]],[[1,2,2,0],[1,3,0,3],[0,3,3,2],[1,2,0,1]],[[1,2,2,0],[1,4,0,2],[0,3,3,2],[1,2,0,1]],[[1,2,3,0],[1,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,3,2,0],[1,3,0,2],[0,3,3,2],[1,2,0,1]],[[2,2,2,0],[1,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,2,2,0],[1,3,0,2],[0,3,3,2],[1,1,3,0]],[[1,2,2,0],[1,3,0,2],[0,3,3,3],[1,1,2,0]],[[1,2,2,0],[1,3,0,2],[0,3,4,2],[1,1,2,0]],[[1,2,2,0],[1,3,0,2],[0,4,3,2],[1,1,2,0]],[[1,2,2,0],[1,3,0,3],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[1,4,0,2],[0,3,3,2],[1,1,2,0]],[[1,2,3,0],[1,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,3,2,0],[1,3,0,2],[0,3,3,2],[1,1,2,0]],[[2,2,2,0],[1,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[1,3,0,2],[0,3,3,2],[1,1,1,2]],[[1,2,2,0],[1,3,0,2],[0,3,3,3],[1,1,1,1]],[[1,2,2,0],[1,3,0,2],[0,3,4,2],[1,1,1,1]],[[1,2,2,0],[1,3,0,2],[0,4,3,2],[1,1,1,1]],[[1,2,2,0],[1,3,0,3],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[1,4,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,3,0],[1,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,3,2,0],[1,3,0,2],[0,3,3,2],[1,1,1,1]],[[2,2,2,0],[1,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[1,3,0,2],[0,3,3,2],[1,0,2,2]],[[1,2,2,0],[1,3,0,2],[0,3,3,3],[1,0,2,1]],[[1,2,2,0],[1,3,0,2],[0,3,4,2],[1,0,2,1]],[[1,2,2,0],[1,3,0,3],[0,3,3,2],[1,0,2,1]],[[1,2,2,0],[1,3,0,2],[0,3,3,1],[1,3,1,1]],[[1,2,2,0],[1,3,0,2],[0,3,3,1],[2,2,1,1]],[[1,2,2,0],[1,3,0,2],[0,3,4,1],[1,2,1,1]],[[1,2,2,0],[1,3,0,2],[0,4,3,1],[1,2,1,1]],[[1,2,2,0],[1,4,0,2],[0,3,3,1],[1,2,1,1]],[[1,2,3,0],[1,3,0,2],[0,3,3,1],[1,2,1,1]],[[1,3,2,0],[1,3,0,2],[0,3,3,1],[1,2,1,1]],[[2,2,2,0],[1,3,0,2],[0,3,3,1],[1,2,1,1]],[[1,2,2,0],[1,3,0,2],[0,3,3,1],[1,1,2,2]],[[1,2,2,0],[1,3,0,2],[0,3,3,1],[1,1,3,1]],[[1,2,2,0],[1,3,0,2],[0,3,4,1],[1,1,2,1]],[[1,2,2,0],[1,3,0,2],[0,4,3,1],[1,1,2,1]],[[1,2,2,0],[1,4,0,2],[0,3,3,1],[1,1,2,1]],[[1,2,3,0],[1,3,0,2],[0,3,3,1],[1,1,2,1]],[[1,3,2,0],[1,3,0,2],[0,3,3,1],[1,1,2,1]],[[2,2,2,0],[1,3,0,2],[0,3,3,1],[1,1,2,1]],[[1,2,2,0],[1,3,0,2],[0,3,2,2],[1,2,3,0]],[[1,2,2,0],[1,3,0,2],[0,3,2,2],[1,3,2,0]],[[1,2,2,0],[1,3,0,2],[0,3,2,2],[2,2,2,0]],[[1,2,2,0],[1,3,0,2],[0,4,2,2],[1,2,2,0]],[[1,2,2,0],[1,4,0,2],[0,3,2,2],[1,2,2,0]],[[1,2,3,0],[1,3,0,2],[0,3,2,2],[1,2,2,0]],[[1,3,2,0],[1,3,0,2],[0,3,2,2],[1,2,2,0]],[[2,2,2,0],[1,3,0,2],[0,3,2,2],[1,2,2,0]],[[1,2,2,0],[1,3,0,2],[0,3,2,2],[1,1,2,2]],[[1,2,2,0],[1,3,0,2],[0,3,2,2],[1,1,3,1]],[[1,2,2,0],[1,3,0,2],[0,3,2,3],[1,1,2,1]],[[1,2,2,0],[1,3,0,3],[0,3,2,2],[1,1,2,1]],[[1,2,2,0],[1,3,0,2],[0,3,2,1],[1,2,2,2]],[[1,2,2,0],[1,3,0,2],[0,3,2,1],[1,2,3,1]],[[1,2,2,0],[1,3,0,2],[0,3,2,1],[1,3,2,1]],[[1,2,2,0],[1,3,0,2],[0,3,2,1],[2,2,2,1]],[[1,2,2,0],[1,3,0,2],[0,4,2,1],[1,2,2,1]],[[1,2,2,0],[1,4,0,2],[0,3,2,1],[1,2,2,1]],[[1,2,3,0],[1,3,0,2],[0,3,2,1],[1,2,2,1]],[[1,3,2,0],[1,3,0,2],[0,3,2,1],[1,2,2,1]],[[2,2,2,0],[1,3,0,2],[0,3,2,1],[1,2,2,1]],[[1,2,2,0],[1,3,0,2],[0,3,1,2],[1,2,2,2]],[[1,2,2,0],[1,3,0,2],[0,3,1,2],[1,2,3,1]],[[1,2,2,0],[1,3,0,2],[0,3,1,2],[1,3,2,1]],[[1,2,2,0],[1,3,0,2],[0,3,1,2],[2,2,2,1]],[[1,2,2,0],[1,3,0,2],[0,3,1,3],[1,2,2,1]],[[1,2,2,0],[1,3,0,2],[0,4,1,2],[1,2,2,1]],[[1,2,2,0],[1,3,0,3],[0,3,1,2],[1,2,2,1]],[[1,2,2,0],[1,4,0,2],[0,3,1,2],[1,2,2,1]],[[1,2,3,0],[1,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,3,2,0],[1,3,0,2],[0,3,1,2],[1,2,2,1]],[[2,2,2,0],[1,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,2,2,0],[1,3,0,2],[0,2,3,2],[1,2,3,0]],[[1,2,2,0],[1,3,0,2],[0,2,3,2],[1,3,2,0]],[[1,2,2,0],[1,3,0,2],[0,2,3,2],[2,2,2,0]],[[1,2,2,0],[1,3,0,2],[0,2,3,3],[1,2,2,0]],[[1,2,2,0],[1,3,0,2],[0,2,4,2],[1,2,2,0]],[[1,2,2,0],[1,3,0,3],[0,2,3,2],[1,2,2,0]],[[1,2,2,0],[1,3,0,2],[0,2,3,2],[1,2,1,2]],[[1,2,2,0],[1,3,0,2],[0,2,3,3],[1,2,1,1]],[[1,2,2,0],[1,3,0,2],[0,2,4,2],[1,2,1,1]],[[1,2,2,0],[1,3,0,3],[0,2,3,2],[1,2,1,1]],[[1,2,2,0],[1,3,0,2],[0,2,3,1],[1,2,2,2]],[[1,2,2,0],[1,3,0,2],[0,2,3,1],[1,2,3,1]],[[1,2,2,0],[1,3,0,2],[0,2,3,1],[1,3,2,1]],[[1,2,2,0],[1,3,0,2],[0,2,3,1],[2,2,2,1]],[[1,2,2,0],[1,3,0,2],[0,2,4,1],[1,2,2,1]],[[1,2,2,0],[1,3,0,2],[0,2,2,2],[1,2,2,2]],[[1,2,2,0],[1,3,0,2],[0,2,2,2],[1,2,3,1]],[[1,2,2,0],[1,3,0,2],[0,2,2,2],[1,3,2,1]],[[1,2,2,0],[1,3,0,2],[0,2,2,2],[2,2,2,1]],[[1,2,2,0],[1,3,0,2],[0,2,2,3],[1,2,2,1]],[[1,2,2,0],[1,3,0,3],[0,2,2,2],[1,2,2,1]],[[1,2,2,0],[1,3,0,1],[1,3,3,2],[0,2,3,0]],[[1,2,2,0],[1,3,0,1],[1,3,3,2],[0,3,2,0]],[[1,2,2,0],[1,3,0,1],[1,4,3,2],[0,2,2,0]],[[1,2,2,0],[1,3,0,1],[1,3,3,1],[0,2,2,2]],[[1,2,2,0],[1,3,0,1],[1,3,3,1],[0,2,3,1]],[[1,2,2,0],[1,3,0,1],[1,3,3,1],[0,3,2,1]],[[1,2,2,0],[1,3,0,1],[1,4,3,1],[0,2,2,1]],[[1,2,2,0],[1,3,0,1],[0,3,3,2],[1,2,3,0]],[[1,2,2,0],[1,3,0,1],[0,3,3,2],[1,3,2,0]],[[1,2,2,0],[1,3,0,1],[0,3,3,2],[2,2,2,0]],[[1,2,2,0],[1,3,0,1],[0,4,3,2],[1,2,2,0]],[[1,2,2,0],[1,3,0,1],[0,3,3,1],[1,2,2,2]],[[1,2,2,0],[1,3,0,1],[0,3,3,1],[1,2,3,1]],[[1,2,2,0],[1,3,0,1],[0,3,3,1],[1,3,2,1]],[[1,2,2,0],[1,3,0,1],[0,3,3,1],[2,2,2,1]],[[1,2,2,0],[1,3,0,1],[0,4,3,1],[1,2,2,1]],[[1,2,2,0],[1,3,0,0],[1,3,3,2],[0,2,2,2]],[[1,2,2,0],[1,3,0,0],[1,3,3,2],[0,2,3,1]],[[1,2,2,0],[1,3,0,0],[1,3,3,2],[0,3,2,1]],[[1,2,2,0],[1,3,0,0],[1,4,3,2],[0,2,2,1]],[[1,2,2,0],[1,3,0,0],[0,3,3,2],[1,2,2,2]],[[1,2,2,0],[1,3,0,0],[0,3,3,2],[1,2,3,1]],[[1,2,2,0],[1,3,0,0],[0,3,3,2],[1,3,2,1]],[[1,2,2,0],[1,3,0,0],[0,3,3,2],[2,2,2,1]],[[1,2,2,0],[1,3,0,0],[0,4,3,2],[1,2,2,1]],[[1,2,2,0],[1,2,3,3],[2,3,3,1],[1,0,0,0]],[[1,2,2,0],[1,2,4,2],[2,3,3,1],[1,0,0,0]],[[1,2,3,0],[1,2,3,2],[2,3,3,1],[1,0,0,0]],[[1,3,2,0],[1,2,3,2],[2,3,3,1],[1,0,0,0]],[[2,2,2,0],[1,2,3,2],[2,3,3,1],[1,0,0,0]],[[1,2,2,0],[1,2,4,2],[2,3,3,0],[1,0,1,0]],[[1,2,3,0],[1,2,3,2],[2,3,3,0],[1,0,1,0]],[[1,3,2,0],[1,2,3,2],[2,3,3,0],[1,0,1,0]],[[2,2,2,0],[1,2,3,2],[2,3,3,0],[1,0,1,0]],[[0,3,2,1],[2,3,3,0],[2,3,3,0],[1,0,1,0]],[[0,2,3,1],[2,3,3,0],[2,3,3,0],[1,0,1,0]],[[0,2,2,1],[3,3,3,0],[2,3,3,0],[1,0,1,0]],[[0,2,2,1],[2,4,3,0],[2,3,3,0],[1,0,1,0]],[[0,2,2,1],[2,3,3,0],[3,3,3,0],[1,0,1,0]],[[1,2,2,0],[1,2,3,3],[2,3,2,1],[1,0,1,0]],[[1,2,2,0],[1,2,4,2],[2,3,2,1],[1,0,1,0]],[[1,2,3,0],[1,2,3,2],[2,3,2,1],[1,0,1,0]],[[1,3,2,0],[1,2,3,2],[2,3,2,1],[1,0,1,0]],[[2,2,2,0],[1,2,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,2,0],[1,2,3,3],[2,3,2,1],[1,0,0,1]],[[1,2,2,0],[1,2,4,2],[2,3,2,1],[1,0,0,1]],[[1,2,3,0],[1,2,3,2],[2,3,2,1],[1,0,0,1]],[[1,3,2,0],[1,2,3,2],[2,3,2,1],[1,0,0,1]],[[2,2,2,0],[1,2,3,2],[2,3,2,1],[1,0,0,1]],[[1,2,2,0],[1,2,4,2],[2,3,2,0],[1,0,1,1]],[[1,2,3,0],[1,2,3,2],[2,3,2,0],[1,0,1,1]],[[1,3,2,0],[1,2,3,2],[2,3,2,0],[1,0,1,1]],[[2,2,2,0],[1,2,3,2],[2,3,2,0],[1,0,1,1]],[[1,2,2,0],[1,2,3,3],[2,3,1,2],[1,0,1,0]],[[1,2,2,0],[1,2,4,2],[2,3,1,2],[1,0,1,0]],[[0,3,2,1],[2,3,3,0],[2,3,3,1],[1,0,0,0]],[[0,2,3,1],[2,3,3,0],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[3,3,3,0],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[2,4,3,0],[2,3,3,1],[1,0,0,0]],[[0,2,2,1],[2,3,3,0],[3,3,3,1],[1,0,0,0]],[[1,2,3,0],[1,2,3,2],[2,3,1,2],[1,0,1,0]],[[1,3,2,0],[1,2,3,2],[2,3,1,2],[1,0,1,0]],[[2,2,2,0],[1,2,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,2,0],[1,2,3,2],[2,3,1,3],[1,0,0,1]],[[1,2,2,0],[1,2,3,3],[2,3,1,2],[1,0,0,1]],[[1,2,2,0],[1,2,4,2],[2,3,1,2],[1,0,0,1]],[[1,2,3,0],[1,2,3,2],[2,3,1,2],[1,0,0,1]],[[1,3,2,0],[1,2,3,2],[2,3,1,2],[1,0,0,1]],[[2,2,2,0],[1,2,3,2],[2,3,1,2],[1,0,0,1]],[[1,2,2,0],[1,2,3,3],[2,2,3,1],[1,1,0,0]],[[1,2,2,0],[1,2,4,2],[2,2,3,1],[1,1,0,0]],[[1,2,3,0],[1,2,3,2],[2,2,3,1],[1,1,0,0]],[[1,3,2,0],[1,2,3,2],[2,2,3,1],[1,1,0,0]],[[2,2,2,0],[1,2,3,2],[2,2,3,1],[1,1,0,0]],[[1,2,2,0],[1,2,3,3],[2,2,3,1],[0,2,0,0]],[[1,2,2,0],[1,2,4,2],[2,2,3,1],[0,2,0,0]],[[1,2,3,0],[1,2,3,2],[2,2,3,1],[0,2,0,0]],[[1,3,2,0],[1,2,3,2],[2,2,3,1],[0,2,0,0]],[[2,2,2,0],[1,2,3,2],[2,2,3,1],[0,2,0,0]],[[1,2,2,0],[1,2,4,2],[2,2,3,0],[1,2,0,0]],[[1,2,3,0],[1,2,3,2],[2,2,3,0],[1,2,0,0]],[[1,3,2,0],[1,2,3,2],[2,2,3,0],[1,2,0,0]],[[2,2,2,0],[1,2,3,2],[2,2,3,0],[1,2,0,0]],[[1,2,2,0],[1,2,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,3,0],[1,2,3,2],[2,2,3,0],[1,1,1,0]],[[1,3,2,0],[1,2,3,2],[2,2,3,0],[1,1,1,0]],[[2,2,2,0],[1,2,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[2,2,3,0],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[2,2,3,0],[1,0,2,0]],[[1,3,2,0],[1,2,3,2],[2,2,3,0],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[2,2,3,0],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[2,2,3,0],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[2,2,3,0],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[2,2,3,0],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[2,2,3,0],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[2,2,3,0],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[2,2,3,0],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[2,2,2,1],[1,2,0,0]],[[1,2,2,0],[1,2,4,2],[2,2,2,1],[1,2,0,0]],[[1,2,3,0],[1,2,3,2],[2,2,2,1],[1,2,0,0]],[[1,3,2,0],[1,2,3,2],[2,2,2,1],[1,2,0,0]],[[2,2,2,0],[1,2,3,2],[2,2,2,1],[1,2,0,0]],[[1,2,2,0],[1,2,3,3],[2,2,2,1],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[2,2,2,1],[1,1,1,0]],[[1,2,3,0],[1,2,3,2],[2,2,2,1],[1,1,1,0]],[[1,3,2,0],[1,2,3,2],[2,2,2,1],[1,1,1,0]],[[2,2,2,0],[1,2,3,2],[2,2,2,1],[1,1,1,0]],[[1,2,2,0],[1,2,3,3],[2,2,2,1],[1,1,0,1]],[[1,2,2,0],[1,2,4,2],[2,2,2,1],[1,1,0,1]],[[1,2,3,0],[1,2,3,2],[2,2,2,1],[1,1,0,1]],[[1,3,2,0],[1,2,3,2],[2,2,2,1],[1,1,0,1]],[[2,2,2,0],[1,2,3,2],[2,2,2,1],[1,1,0,1]],[[1,2,2,0],[1,2,3,3],[2,2,2,1],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[2,2,2,1],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[2,2,2,1],[1,0,2,0]],[[1,3,2,0],[1,2,3,2],[2,2,2,1],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,2,0],[1,2,3,3],[2,2,2,1],[1,0,1,1]],[[1,2,2,0],[1,2,4,2],[2,2,2,1],[1,0,1,1]],[[1,2,3,0],[1,2,3,2],[2,2,2,1],[1,0,1,1]],[[1,3,2,0],[1,2,3,2],[2,2,2,1],[1,0,1,1]],[[2,2,2,0],[1,2,3,2],[2,2,2,1],[1,0,1,1]],[[1,2,2,0],[1,2,3,3],[2,2,2,1],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[2,2,2,1],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[2,2,2,1],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[2,2,2,1],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[2,2,2,1],[0,2,1,0]],[[1,2,2,0],[1,2,3,3],[2,2,2,1],[0,2,0,1]],[[1,2,2,0],[1,2,4,2],[2,2,2,1],[0,2,0,1]],[[1,2,3,0],[1,2,3,2],[2,2,2,1],[0,2,0,1]],[[1,3,2,0],[1,2,3,2],[2,2,2,1],[0,2,0,1]],[[2,2,2,0],[1,2,3,2],[2,2,2,1],[0,2,0,1]],[[1,2,2,0],[1,2,3,3],[2,2,2,1],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[2,2,2,1],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[2,2,2,1],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[2,2,2,1],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[2,2,2,1],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[2,2,2,1],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[2,2,2,1],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[2,2,2,1],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[2,2,2,1],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[2,2,2,0],[1,2,0,1]],[[1,2,3,0],[1,2,3,2],[2,2,2,0],[1,2,0,1]],[[1,3,2,0],[1,2,3,2],[2,2,2,0],[1,2,0,1]],[[2,2,2,0],[1,2,3,2],[2,2,2,0],[1,2,0,1]],[[1,2,2,0],[1,2,3,3],[2,2,2,0],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[2,2,2,0],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[2,2,2,0],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[2,2,2,0],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[2,2,2,0],[1,0,2,1]],[[1,2,2,0],[1,2,4,2],[2,2,2,0],[1,0,2,1]],[[1,2,3,0],[1,2,3,2],[2,2,2,0],[1,0,2,1]],[[1,3,2,0],[1,2,3,2],[2,2,2,0],[1,0,2,1]],[[2,2,2,0],[1,2,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[2,2,2,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,1],[0,0,1,2],[1,2,2,1]],[[0,2,3,1],[2,3,3,1],[0,0,1,2],[1,2,2,1]],[[0,2,2,2],[2,3,3,1],[0,0,1,2],[1,2,2,1]],[[0,2,2,1],[2,3,4,1],[0,0,1,2],[1,2,2,1]],[[0,3,2,1],[2,3,3,1],[0,0,2,2],[1,2,1,1]],[[0,2,3,1],[2,3,3,1],[0,0,2,2],[1,2,1,1]],[[0,2,2,2],[2,3,3,1],[0,0,2,2],[1,2,1,1]],[[0,2,2,1],[2,3,4,1],[0,0,2,2],[1,2,1,1]],[[0,3,2,1],[2,3,3,1],[0,0,2,2],[1,2,2,0]],[[0,2,3,1],[2,3,3,1],[0,0,2,2],[1,2,2,0]],[[0,2,2,2],[2,3,3,1],[0,0,2,2],[1,2,2,0]],[[0,2,2,1],[2,3,4,1],[0,0,2,2],[1,2,2,0]],[[0,3,2,1],[2,3,3,1],[0,0,3,0],[1,2,2,1]],[[0,2,3,1],[2,3,3,1],[0,0,3,0],[1,2,2,1]],[[0,2,2,2],[2,3,3,1],[0,0,3,0],[1,2,2,1]],[[0,2,2,1],[2,3,4,1],[0,0,3,0],[1,2,2,1]],[[0,3,2,1],[2,3,3,1],[0,0,3,1],[1,2,1,1]],[[0,2,3,1],[2,3,3,1],[0,0,3,1],[1,2,1,1]],[[0,2,2,2],[2,3,3,1],[0,0,3,1],[1,2,1,1]],[[0,2,2,1],[2,3,4,1],[0,0,3,1],[1,2,1,1]],[[0,3,2,1],[2,3,3,1],[0,0,3,1],[1,2,2,0]],[[0,2,3,1],[2,3,3,1],[0,0,3,1],[1,2,2,0]],[[0,2,2,2],[2,3,3,1],[0,0,3,1],[1,2,2,0]],[[0,2,2,1],[2,3,4,1],[0,0,3,1],[1,2,2,0]],[[0,3,2,1],[2,3,3,1],[0,0,3,2],[1,0,2,1]],[[0,2,3,1],[2,3,3,1],[0,0,3,2],[1,0,2,1]],[[0,2,2,2],[2,3,3,1],[0,0,3,2],[1,0,2,1]],[[0,2,2,1],[2,3,4,1],[0,0,3,2],[1,0,2,1]],[[0,3,2,1],[2,3,3,1],[0,0,3,2],[1,1,1,1]],[[0,2,3,1],[2,3,3,1],[0,0,3,2],[1,1,1,1]],[[0,2,2,2],[2,3,3,1],[0,0,3,2],[1,1,1,1]],[[0,2,2,1],[2,3,4,1],[0,0,3,2],[1,1,1,1]],[[0,3,2,1],[2,3,3,1],[0,0,3,2],[1,1,2,0]],[[0,2,3,1],[2,3,3,1],[0,0,3,2],[1,1,2,0]],[[0,2,2,2],[2,3,3,1],[0,0,3,2],[1,1,2,0]],[[0,2,2,1],[2,3,4,1],[0,0,3,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,2],[2,2,2,0],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[2,2,2,0],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[2,2,2,0],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[2,2,2,0],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[2,2,2,0],[0,1,2,1]],[[1,2,2,0],[1,2,4,2],[2,2,2,0],[0,1,2,1]],[[1,2,3,0],[1,2,3,2],[2,2,2,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,1],[0,1,1,2],[1,1,2,1]],[[0,2,3,1],[2,3,3,1],[0,1,1,2],[1,1,2,1]],[[0,2,2,2],[2,3,3,1],[0,1,1,2],[1,1,2,1]],[[0,2,2,1],[2,3,4,1],[0,1,1,2],[1,1,2,1]],[[0,3,2,1],[2,3,3,1],[0,1,2,2],[1,0,2,1]],[[0,2,3,1],[2,3,3,1],[0,1,2,2],[1,0,2,1]],[[0,2,2,2],[2,3,3,1],[0,1,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,4,1],[0,1,2,2],[1,0,2,1]],[[0,3,2,1],[2,3,3,1],[0,1,2,2],[1,1,1,1]],[[0,2,3,1],[2,3,3,1],[0,1,2,2],[1,1,1,1]],[[0,2,2,2],[2,3,3,1],[0,1,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,4,1],[0,1,2,2],[1,1,1,1]],[[0,3,2,1],[2,3,3,1],[0,1,2,2],[1,1,2,0]],[[0,2,3,1],[2,3,3,1],[0,1,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,3,1],[0,1,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,4,1],[0,1,2,2],[1,1,2,0]],[[0,3,2,1],[2,3,3,1],[0,1,2,2],[1,2,0,1]],[[0,2,3,1],[2,3,3,1],[0,1,2,2],[1,2,0,1]],[[0,2,2,2],[2,3,3,1],[0,1,2,2],[1,2,0,1]],[[0,2,2,1],[2,3,4,1],[0,1,2,2],[1,2,0,1]],[[0,3,2,1],[2,3,3,1],[0,1,2,2],[1,2,1,0]],[[0,2,3,1],[2,3,3,1],[0,1,2,2],[1,2,1,0]],[[0,2,2,2],[2,3,3,1],[0,1,2,2],[1,2,1,0]],[[0,2,2,1],[2,3,4,1],[0,1,2,2],[1,2,1,0]],[[1,3,2,0],[1,2,3,2],[2,2,2,0],[0,1,2,1]],[[2,2,2,0],[1,2,3,2],[2,2,2,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,1],[0,1,3,0],[1,1,2,1]],[[0,2,3,1],[2,3,3,1],[0,1,3,0],[1,1,2,1]],[[0,2,2,2],[2,3,3,1],[0,1,3,0],[1,1,2,1]],[[0,2,2,1],[2,3,4,1],[0,1,3,0],[1,1,2,1]],[[0,3,2,1],[2,3,3,1],[0,1,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,3,1],[0,1,3,0],[1,2,1,1]],[[0,2,2,2],[2,3,3,1],[0,1,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,4,1],[0,1,3,0],[1,2,1,1]],[[0,3,2,1],[2,3,3,1],[0,1,3,1],[1,0,2,1]],[[0,2,3,1],[2,3,3,1],[0,1,3,1],[1,0,2,1]],[[0,2,2,2],[2,3,3,1],[0,1,3,1],[1,0,2,1]],[[0,2,2,1],[2,3,4,1],[0,1,3,1],[1,0,2,1]],[[0,3,2,1],[2,3,3,1],[0,1,3,1],[1,1,1,1]],[[0,2,3,1],[2,3,3,1],[0,1,3,1],[1,1,1,1]],[[0,2,2,2],[2,3,3,1],[0,1,3,1],[1,1,1,1]],[[0,2,2,1],[2,3,4,1],[0,1,3,1],[1,1,1,1]],[[0,3,2,1],[2,3,3,1],[0,1,3,1],[1,1,2,0]],[[0,2,3,1],[2,3,3,1],[0,1,3,1],[1,1,2,0]],[[0,2,2,2],[2,3,3,1],[0,1,3,1],[1,1,2,0]],[[0,2,2,1],[2,3,4,1],[0,1,3,1],[1,1,2,0]],[[0,3,2,1],[2,3,3,1],[0,1,3,1],[1,2,0,1]],[[0,2,3,1],[2,3,3,1],[0,1,3,1],[1,2,0,1]],[[0,2,2,2],[2,3,3,1],[0,1,3,1],[1,2,0,1]],[[0,2,2,1],[2,3,4,1],[0,1,3,1],[1,2,0,1]],[[0,3,2,1],[2,3,3,1],[0,1,3,1],[1,2,1,0]],[[0,2,3,1],[2,3,3,1],[0,1,3,1],[1,2,1,0]],[[0,2,2,2],[2,3,3,1],[0,1,3,1],[1,2,1,0]],[[0,2,2,1],[2,3,4,1],[0,1,3,1],[1,2,1,0]],[[1,2,2,0],[1,2,3,3],[2,2,1,2],[1,2,0,0]],[[1,2,2,0],[1,2,4,2],[2,2,1,2],[1,2,0,0]],[[1,2,3,0],[1,2,3,2],[2,2,1,2],[1,2,0,0]],[[1,3,2,0],[1,2,3,2],[2,2,1,2],[1,2,0,0]],[[2,2,2,0],[1,2,3,2],[2,2,1,2],[1,2,0,0]],[[0,3,2,1],[2,3,3,1],[0,1,3,2],[1,1,0,1]],[[0,2,3,1],[2,3,3,1],[0,1,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,1],[0,1,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,4,1],[0,1,3,2],[1,1,0,1]],[[1,2,2,0],[1,2,3,2],[2,2,1,3],[1,1,1,0]],[[1,2,2,0],[1,2,3,3],[2,2,1,2],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[2,2,1,2],[1,1,1,0]],[[1,2,3,0],[1,2,3,2],[2,2,1,2],[1,1,1,0]],[[1,3,2,0],[1,2,3,2],[2,2,1,2],[1,1,1,0]],[[2,2,2,0],[1,2,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,2,0],[1,2,3,2],[2,2,1,2],[1,1,0,2]],[[1,2,2,0],[1,2,3,2],[2,2,1,3],[1,1,0,1]],[[1,2,2,0],[1,2,3,3],[2,2,1,2],[1,1,0,1]],[[1,2,2,0],[1,2,4,2],[2,2,1,2],[1,1,0,1]],[[1,2,3,0],[1,2,3,2],[2,2,1,2],[1,1,0,1]],[[1,3,2,0],[1,2,3,2],[2,2,1,2],[1,1,0,1]],[[2,2,2,0],[1,2,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,2,0],[1,2,3,2],[2,2,1,3],[1,0,2,0]],[[1,2,2,0],[1,2,3,3],[2,2,1,2],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[2,2,1,2],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[2,2,1,2],[1,0,2,0]],[[1,3,2,0],[1,2,3,2],[2,2,1,2],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,2,0],[1,2,3,2],[2,2,1,2],[1,0,1,2]],[[1,2,2,0],[1,2,3,2],[2,2,1,3],[1,0,1,1]],[[1,2,2,0],[1,2,3,3],[2,2,1,2],[1,0,1,1]],[[1,2,2,0],[1,2,4,2],[2,2,1,2],[1,0,1,1]],[[1,2,3,0],[1,2,3,2],[2,2,1,2],[1,0,1,1]],[[1,3,2,0],[1,2,3,2],[2,2,1,2],[1,0,1,1]],[[2,2,2,0],[1,2,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,2,0],[1,2,3,2],[2,2,1,3],[0,2,1,0]],[[1,2,2,0],[1,2,3,3],[2,2,1,2],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[2,2,1,2],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[2,2,1,2],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[2,2,1,2],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[2,2,1,2],[0,2,0,2]],[[1,2,2,0],[1,2,3,2],[2,2,1,3],[0,2,0,1]],[[1,2,2,0],[1,2,3,3],[2,2,1,2],[0,2,0,1]],[[1,2,2,0],[1,2,4,2],[2,2,1,2],[0,2,0,1]],[[1,2,3,0],[1,2,3,2],[2,2,1,2],[0,2,0,1]],[[1,3,2,0],[1,2,3,2],[2,2,1,2],[0,2,0,1]],[[2,2,2,0],[1,2,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,2,0],[1,2,3,2],[2,2,1,3],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[2,2,1,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[2,2,1,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[2,2,1,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[2,2,1,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[2,2,1,2],[0,1,1,2]],[[1,2,2,0],[1,2,3,2],[2,2,1,3],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[2,2,1,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[2,2,1,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[2,2,1,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[2,2,1,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[2,2,1,1],[1,1,2,0]],[[1,2,2,0],[1,2,4,2],[2,2,1,1],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[2,2,1,1],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[2,2,1,1],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[2,2,1,1],[1,1,2,0]],[[1,2,2,0],[1,2,3,3],[2,2,1,1],[0,2,2,0]],[[1,2,2,0],[1,2,4,2],[2,2,1,1],[0,2,2,0]],[[1,2,3,0],[1,2,3,2],[2,2,1,1],[0,2,2,0]],[[1,3,2,0],[1,2,3,2],[2,2,1,1],[0,2,2,0]],[[2,2,2,0],[1,2,3,2],[2,2,1,1],[0,2,2,0]],[[1,2,2,0],[1,2,3,3],[2,2,1,0],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[2,2,1,0],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[2,2,1,0],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[2,2,1,0],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[2,2,1,0],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[2,2,1,0],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[2,2,1,0],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[2,2,1,0],[0,2,2,1]],[[2,2,2,0],[1,2,3,2],[2,2,1,0],[0,2,2,1]],[[1,2,2,0],[1,2,3,2],[2,2,0,3],[1,1,2,0]],[[1,2,2,0],[1,2,3,3],[2,2,0,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,2],[2,2,0,2],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[2,2,0,2],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[2,2,0,2],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,2,0],[1,2,3,2],[2,2,0,2],[1,1,1,2]],[[1,2,2,0],[1,2,3,2],[2,2,0,3],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[2,2,0,2],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[2,2,0,2],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[2,2,0,2],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[2,2,0,2],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,2,0],[1,2,3,2],[2,2,0,2],[1,0,2,2]],[[1,2,2,0],[1,2,3,2],[2,2,0,2],[1,0,3,1]],[[1,2,2,0],[1,2,3,2],[2,2,0,3],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[2,2,0,2],[1,0,2,1]],[[1,2,2,0],[1,2,4,2],[2,2,0,2],[1,0,2,1]],[[1,2,3,0],[1,2,3,2],[2,2,0,2],[1,0,2,1]],[[1,3,2,0],[1,2,3,2],[2,2,0,2],[1,0,2,1]],[[2,2,2,0],[1,2,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,2,0],[1,2,3,2],[2,2,0,3],[0,2,2,0]],[[1,2,2,0],[1,2,3,3],[2,2,0,2],[0,2,2,0]],[[1,2,2,0],[1,2,4,2],[2,2,0,2],[0,2,2,0]],[[1,2,3,0],[1,2,3,2],[2,2,0,2],[0,2,2,0]],[[1,3,2,0],[1,2,3,2],[2,2,0,2],[0,2,2,0]],[[2,2,2,0],[1,2,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,2,0],[1,2,3,2],[2,2,0,2],[0,2,1,2]],[[1,2,2,0],[1,2,3,2],[2,2,0,3],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[2,2,0,2],[0,2,1,1]],[[1,2,2,0],[1,2,4,2],[2,2,0,2],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[2,2,0,2],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[2,2,0,2],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,2,0],[1,2,3,2],[2,2,0,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,2],[2,2,0,2],[0,1,3,1]],[[1,2,2,0],[1,2,3,2],[2,2,0,3],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[2,2,0,2],[0,1,2,1]],[[1,2,2,0],[1,2,4,2],[2,2,0,2],[0,1,2,1]],[[1,2,3,0],[1,2,3,2],[2,2,0,2],[0,1,2,1]],[[1,3,2,0],[1,2,3,2],[2,2,0,2],[0,1,2,1]],[[2,2,2,0],[1,2,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[2,2,0,1],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[2,2,0,1],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[2,2,0,1],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[2,2,0,1],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[2,2,0,1],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[2,2,0,1],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[2,2,0,1],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[2,2,0,1],[0,2,2,1]],[[2,2,2,0],[1,2,3,2],[2,2,0,1],[0,2,2,1]],[[0,3,2,1],[2,3,3,1],[0,3,0,0],[1,2,2,1]],[[0,2,3,1],[2,3,3,1],[0,3,0,0],[1,2,2,1]],[[0,2,2,2],[2,3,3,1],[0,3,0,0],[1,2,2,1]],[[0,2,2,1],[3,3,3,1],[0,3,0,0],[1,2,2,1]],[[0,2,2,1],[2,4,3,1],[0,3,0,0],[1,2,2,1]],[[0,3,2,1],[2,3,3,1],[0,3,0,1],[1,2,2,0]],[[0,2,3,1],[2,3,3,1],[0,3,0,1],[1,2,2,0]],[[0,2,2,2],[2,3,3,1],[0,3,0,1],[1,2,2,0]],[[0,2,2,1],[3,3,3,1],[0,3,0,1],[1,2,2,0]],[[0,2,2,1],[2,4,3,1],[0,3,0,1],[1,2,2,0]],[[0,3,2,1],[2,3,3,1],[0,3,0,2],[1,1,1,1]],[[0,2,3,1],[2,3,3,1],[0,3,0,2],[1,1,1,1]],[[0,2,2,2],[2,3,3,1],[0,3,0,2],[1,1,1,1]],[[0,2,2,1],[2,4,3,1],[0,3,0,2],[1,1,1,1]],[[0,3,2,1],[2,3,3,1],[0,3,0,2],[1,1,2,0]],[[0,2,3,1],[2,3,3,1],[0,3,0,2],[1,1,2,0]],[[0,2,2,2],[2,3,3,1],[0,3,0,2],[1,1,2,0]],[[0,2,2,1],[2,4,3,1],[0,3,0,2],[1,1,2,0]],[[0,3,2,1],[2,3,3,1],[0,3,0,2],[1,2,0,1]],[[0,2,3,1],[2,3,3,1],[0,3,0,2],[1,2,0,1]],[[0,2,2,2],[2,3,3,1],[0,3,0,2],[1,2,0,1]],[[0,2,2,1],[3,3,3,1],[0,3,0,2],[1,2,0,1]],[[0,2,2,1],[2,4,3,1],[0,3,0,2],[1,2,0,1]],[[0,3,2,1],[2,3,3,1],[0,3,0,2],[1,2,1,0]],[[0,2,3,1],[2,3,3,1],[0,3,0,2],[1,2,1,0]],[[0,2,2,2],[2,3,3,1],[0,3,0,2],[1,2,1,0]],[[0,2,2,1],[3,3,3,1],[0,3,0,2],[1,2,1,0]],[[0,2,2,1],[2,4,3,1],[0,3,0,2],[1,2,1,0]],[[0,3,2,1],[2,3,3,1],[0,3,1,0],[1,1,2,1]],[[0,2,3,1],[2,3,3,1],[0,3,1,0],[1,1,2,1]],[[0,2,2,2],[2,3,3,1],[0,3,1,0],[1,1,2,1]],[[0,2,2,1],[2,4,3,1],[0,3,1,0],[1,1,2,1]],[[0,3,2,1],[2,3,3,1],[0,3,1,0],[1,2,1,1]],[[0,2,3,1],[2,3,3,1],[0,3,1,0],[1,2,1,1]],[[0,2,2,2],[2,3,3,1],[0,3,1,0],[1,2,1,1]],[[0,2,2,1],[3,3,3,1],[0,3,1,0],[1,2,1,1]],[[0,2,2,1],[2,4,3,1],[0,3,1,0],[1,2,1,1]],[[0,3,2,1],[2,3,3,1],[0,3,1,1],[1,1,1,1]],[[0,2,3,1],[2,3,3,1],[0,3,1,1],[1,1,1,1]],[[0,2,2,2],[2,3,3,1],[0,3,1,1],[1,1,1,1]],[[0,2,2,1],[2,4,3,1],[0,3,1,1],[1,1,1,1]],[[0,3,2,1],[2,3,3,1],[0,3,1,1],[1,1,2,0]],[[0,2,3,1],[2,3,3,1],[0,3,1,1],[1,1,2,0]],[[0,2,2,2],[2,3,3,1],[0,3,1,1],[1,1,2,0]],[[0,2,2,1],[2,4,3,1],[0,3,1,1],[1,1,2,0]],[[0,3,2,1],[2,3,3,1],[0,3,1,1],[1,2,0,1]],[[0,2,3,1],[2,3,3,1],[0,3,1,1],[1,2,0,1]],[[0,2,2,2],[2,3,3,1],[0,3,1,1],[1,2,0,1]],[[0,2,2,1],[3,3,3,1],[0,3,1,1],[1,2,0,1]],[[0,2,2,1],[2,4,3,1],[0,3,1,1],[1,2,0,1]],[[0,3,2,1],[2,3,3,1],[0,3,1,1],[1,2,1,0]],[[0,2,3,1],[2,3,3,1],[0,3,1,1],[1,2,1,0]],[[0,2,2,2],[2,3,3,1],[0,3,1,1],[1,2,1,0]],[[0,2,2,1],[3,3,3,1],[0,3,1,1],[1,2,1,0]],[[0,2,2,1],[2,4,3,1],[0,3,1,1],[1,2,1,0]],[[1,2,2,0],[1,2,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,2,0],[1,2,3,3],[2,1,3,2],[1,0,0,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,2],[1,0,0,1]],[[1,2,3,0],[1,2,3,2],[2,1,3,2],[1,0,0,1]],[[1,3,2,0],[1,2,3,2],[2,1,3,2],[1,0,0,1]],[[2,2,2,0],[1,2,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,2,0],[1,2,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,2,0],[1,2,3,3],[2,1,3,2],[0,1,0,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,2],[0,1,0,1]],[[1,2,3,0],[1,2,3,2],[2,1,3,2],[0,1,0,1]],[[1,3,2,0],[1,2,3,2],[2,1,3,2],[0,1,0,1]],[[2,2,2,0],[1,2,3,2],[2,1,3,2],[0,1,0,1]],[[0,3,2,1],[2,3,3,1],[0,3,2,1],[1,2,0,0]],[[0,2,3,1],[2,3,3,1],[0,3,2,1],[1,2,0,0]],[[0,2,2,2],[2,3,3,1],[0,3,2,1],[1,2,0,0]],[[0,2,2,1],[2,4,3,1],[0,3,2,1],[1,2,0,0]],[[1,2,2,0],[1,2,3,2],[2,1,4,1],[1,1,1,0]],[[1,2,2,0],[1,2,3,3],[2,1,3,1],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[2,1,3,1],[1,1,1,0]],[[1,2,3,0],[1,2,3,2],[2,1,3,1],[1,1,1,0]],[[1,3,2,0],[1,2,3,2],[2,1,3,1],[1,1,1,0]],[[2,2,2,0],[1,2,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,2,0],[1,2,3,2],[2,1,4,1],[1,1,0,1]],[[1,2,2,0],[1,2,3,3],[2,1,3,1],[1,1,0,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,1],[1,1,0,1]],[[1,2,3,0],[1,2,3,2],[2,1,3,1],[1,1,0,1]],[[1,3,2,0],[1,2,3,2],[2,1,3,1],[1,1,0,1]],[[2,2,2,0],[1,2,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,2,0],[1,2,3,2],[2,1,3,1],[1,0,3,0]],[[1,2,2,0],[1,2,3,2],[2,1,4,1],[1,0,2,0]],[[1,2,2,0],[1,2,3,3],[2,1,3,1],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[2,1,3,1],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[2,1,3,1],[1,0,2,0]],[[1,3,2,0],[1,2,3,2],[2,1,3,1],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,2,0],[1,2,3,2],[2,1,4,1],[1,0,1,1]],[[1,2,2,0],[1,2,3,3],[2,1,3,1],[1,0,1,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,1],[1,0,1,1]],[[1,2,3,0],[1,2,3,2],[2,1,3,1],[1,0,1,1]],[[1,3,2,0],[1,2,3,2],[2,1,3,1],[1,0,1,1]],[[2,2,2,0],[1,2,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,2,0],[1,2,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,2,0],[1,2,3,3],[2,1,3,1],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[2,1,3,1],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[2,1,3,1],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[2,1,3,1],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[2,1,4,1],[0,2,0,1]],[[1,2,2,0],[1,2,3,3],[2,1,3,1],[0,2,0,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,1],[0,2,0,1]],[[1,2,3,0],[1,2,3,2],[2,1,3,1],[0,2,0,1]],[[1,3,2,0],[1,2,3,2],[2,1,3,1],[0,2,0,1]],[[2,2,2,0],[1,2,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,2,0],[1,2,3,2],[2,1,3,1],[0,1,3,0]],[[1,2,2,0],[1,2,3,2],[2,1,4,1],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[2,1,3,1],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[2,1,3,1],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[2,1,3,1],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[2,1,3,1],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[2,1,4,1],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[2,1,3,1],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,1],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[2,1,3,1],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[2,1,3,1],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,2,0],[1,2,3,2],[2,1,4,1],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[2,1,3,1],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,1],[0,0,2,1]],[[1,2,3,0],[1,2,3,2],[2,1,3,1],[0,0,2,1]],[[1,3,2,0],[1,2,3,2],[2,1,3,1],[0,0,2,1]],[[2,2,2,0],[1,2,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,0],[1,2,1,0]],[[1,2,3,0],[1,2,3,2],[2,1,3,0],[1,2,1,0]],[[1,3,2,0],[1,2,3,2],[2,1,3,0],[1,2,1,0]],[[2,2,2,0],[1,2,3,2],[2,1,3,0],[1,2,1,0]],[[1,2,2,0],[1,2,3,2],[2,1,4,0],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[2,1,3,0],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,0],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[2,1,3,0],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[2,1,3,0],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,2,0],[1,2,3,2],[2,1,3,0],[1,0,2,2]],[[1,2,2,0],[1,2,3,2],[2,1,3,0],[1,0,3,1]],[[1,2,2,0],[1,2,3,2],[2,1,4,0],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[2,1,3,0],[1,0,2,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,0],[1,0,2,1]],[[1,2,3,0],[1,2,3,2],[2,1,3,0],[1,0,2,1]],[[1,3,2,0],[1,2,3,2],[2,1,3,0],[1,0,2,1]],[[2,2,2,0],[1,2,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,2,0],[1,2,3,2],[2,1,4,0],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[2,1,3,0],[0,2,1,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,0],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[2,1,3,0],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[2,1,3,0],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,2,0],[1,2,3,2],[2,1,3,0],[0,1,2,2]],[[1,2,2,0],[1,2,3,2],[2,1,3,0],[0,1,3,1]],[[1,2,2,0],[1,2,3,2],[2,1,4,0],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[2,1,3,0],[0,1,2,1]],[[1,2,2,0],[1,2,4,2],[2,1,3,0],[0,1,2,1]],[[1,2,3,0],[1,2,3,2],[2,1,3,0],[0,1,2,1]],[[1,3,2,0],[1,2,3,2],[2,1,3,0],[0,1,2,1]],[[2,2,2,0],[1,2,3,2],[2,1,3,0],[0,1,2,1]],[[1,2,2,0],[1,2,3,2],[2,1,2,3],[1,1,1,0]],[[1,2,2,0],[1,2,3,3],[2,1,2,2],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[2,1,2,2],[1,1,1,0]],[[1,2,3,0],[1,2,3,2],[2,1,2,2],[1,1,1,0]],[[1,3,2,0],[1,2,3,2],[2,1,2,2],[1,1,1,0]],[[2,2,2,0],[1,2,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,2,0],[1,2,3,2],[2,1,2,2],[1,1,0,2]],[[1,2,2,0],[1,2,3,2],[2,1,2,3],[1,1,0,1]],[[1,2,2,0],[1,2,3,3],[2,1,2,2],[1,1,0,1]],[[1,2,2,0],[1,2,4,2],[2,1,2,2],[1,1,0,1]],[[1,2,3,0],[1,2,3,2],[2,1,2,2],[1,1,0,1]],[[1,3,2,0],[1,2,3,2],[2,1,2,2],[1,1,0,1]],[[2,2,2,0],[1,2,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,2,0],[1,2,3,2],[2,1,2,3],[1,0,2,0]],[[1,2,2,0],[1,2,3,3],[2,1,2,2],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[2,1,2,2],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[2,1,2,2],[1,0,2,0]],[[1,3,2,0],[1,2,3,2],[2,1,2,2],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,2,0],[1,2,3,2],[2,1,2,2],[1,0,1,2]],[[1,2,2,0],[1,2,3,2],[2,1,2,3],[1,0,1,1]],[[1,2,2,0],[1,2,3,3],[2,1,2,2],[1,0,1,1]],[[1,2,2,0],[1,2,4,2],[2,1,2,2],[1,0,1,1]],[[1,2,3,0],[1,2,3,2],[2,1,2,2],[1,0,1,1]],[[1,3,2,0],[1,2,3,2],[2,1,2,2],[1,0,1,1]],[[2,2,2,0],[1,2,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,2,0],[1,2,3,2],[2,1,2,3],[0,2,1,0]],[[1,2,2,0],[1,2,3,3],[2,1,2,2],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[2,1,2,2],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[2,1,2,2],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[2,1,2,2],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[2,1,2,2],[0,2,0,2]],[[1,2,2,0],[1,2,3,2],[2,1,2,3],[0,2,0,1]],[[1,2,2,0],[1,2,3,3],[2,1,2,2],[0,2,0,1]],[[1,2,2,0],[1,2,4,2],[2,1,2,2],[0,2,0,1]],[[1,2,3,0],[1,2,3,2],[2,1,2,2],[0,2,0,1]],[[1,3,2,0],[1,2,3,2],[2,1,2,2],[0,2,0,1]],[[2,2,2,0],[1,2,3,2],[2,1,2,2],[0,2,0,1]],[[1,2,2,0],[1,2,3,2],[2,1,2,3],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[2,1,2,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[2,1,2,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[2,1,2,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[2,1,2,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[2,1,2,2],[0,1,1,2]],[[1,2,2,0],[1,2,3,2],[2,1,2,3],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[2,1,2,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[2,1,2,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[2,1,2,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[2,1,2,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,2,0],[1,2,3,2],[2,1,2,2],[0,0,2,2]],[[1,2,2,0],[1,2,3,2],[2,1,2,3],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[2,1,2,2],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[2,1,2,2],[0,0,2,1]],[[1,2,3,0],[1,2,3,2],[2,1,2,2],[0,0,2,1]],[[1,3,2,0],[1,2,3,2],[2,1,2,2],[0,0,2,1]],[[2,2,2,0],[1,2,3,2],[2,1,2,2],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[2,1,2,1],[1,2,1,0]],[[1,2,2,0],[1,2,4,2],[2,1,2,1],[1,2,1,0]],[[1,2,3,0],[1,2,3,2],[2,1,2,1],[1,2,1,0]],[[1,3,2,0],[1,2,3,2],[2,1,2,1],[1,2,1,0]],[[2,2,2,0],[1,2,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,2,0],[1,2,3,3],[2,1,2,1],[1,2,0,1]],[[1,2,2,0],[1,2,4,2],[2,1,2,1],[1,2,0,1]],[[1,2,3,0],[1,2,3,2],[2,1,2,1],[1,2,0,1]],[[1,3,2,0],[1,2,3,2],[2,1,2,1],[1,2,0,1]],[[2,2,2,0],[1,2,3,2],[2,1,2,1],[1,2,0,1]],[[1,2,2,0],[1,2,3,3],[2,1,2,0],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[2,1,2,0],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[2,1,2,0],[1,2,1,1]],[[1,3,2,0],[1,2,3,2],[2,1,2,0],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[2,1,2,0],[1,2,1,1]],[[1,2,2,0],[1,2,3,2],[2,1,1,3],[1,2,1,0]],[[1,2,2,0],[1,2,3,3],[2,1,1,2],[1,2,1,0]],[[1,2,2,0],[1,2,4,2],[2,1,1,2],[1,2,1,0]],[[1,2,3,0],[1,2,3,2],[2,1,1,2],[1,2,1,0]],[[1,3,2,0],[1,2,3,2],[2,1,1,2],[1,2,1,0]],[[2,2,2,0],[1,2,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,2,0],[1,2,3,2],[2,1,1,2],[1,2,0,2]],[[1,2,2,0],[1,2,3,2],[2,1,1,3],[1,2,0,1]],[[1,2,2,0],[1,2,3,3],[2,1,1,2],[1,2,0,1]],[[1,2,2,0],[1,2,4,2],[2,1,1,2],[1,2,0,1]],[[1,2,3,0],[1,2,3,2],[2,1,1,2],[1,2,0,1]],[[1,3,2,0],[1,2,3,2],[2,1,1,2],[1,2,0,1]],[[2,2,2,0],[1,2,3,2],[2,1,1,2],[1,2,0,1]],[[1,2,2,0],[1,2,3,2],[2,1,1,2],[1,0,2,2]],[[1,2,2,0],[1,2,3,2],[2,1,1,2],[1,0,3,1]],[[1,2,2,0],[1,2,3,2],[2,1,1,3],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[2,1,1,2],[1,0,2,1]],[[1,2,2,0],[1,2,4,2],[2,1,1,2],[1,0,2,1]],[[1,2,3,0],[1,2,3,2],[2,1,1,2],[1,0,2,1]],[[1,3,2,0],[1,2,3,2],[2,1,1,2],[1,0,2,1]],[[2,2,2,0],[1,2,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,2,0],[1,2,3,2],[2,1,1,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,2],[2,1,1,2],[0,1,3,1]],[[1,2,2,0],[1,2,3,2],[2,1,1,3],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[2,1,1,2],[0,1,2,1]],[[1,2,2,0],[1,2,4,2],[2,1,1,2],[0,1,2,1]],[[1,2,3,0],[1,2,3,2],[2,1,1,2],[0,1,2,1]],[[1,3,2,0],[1,2,3,2],[2,1,1,2],[0,1,2,1]],[[2,2,2,0],[1,2,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[2,1,1,1],[1,2,2,0]],[[1,2,2,0],[1,2,4,2],[2,1,1,1],[1,2,2,0]],[[1,2,3,0],[1,2,3,2],[2,1,1,1],[1,2,2,0]],[[1,3,2,0],[1,2,3,2],[2,1,1,1],[1,2,2,0]],[[2,2,2,0],[1,2,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,2,0],[1,2,3,3],[2,1,1,0],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[2,1,1,0],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[2,1,1,0],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[2,1,1,0],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[2,1,1,0],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[2,1,0,3],[1,2,2,0]],[[1,2,2,0],[1,2,3,3],[2,1,0,2],[1,2,2,0]],[[1,2,2,0],[1,2,4,2],[2,1,0,2],[1,2,2,0]],[[1,2,3,0],[1,2,3,2],[2,1,0,2],[1,2,2,0]],[[1,3,2,0],[1,2,3,2],[2,1,0,2],[1,2,2,0]],[[2,2,2,0],[1,2,3,2],[2,1,0,2],[1,2,2,0]],[[1,2,2,0],[1,2,3,2],[2,1,0,2],[1,2,1,2]],[[1,2,2,0],[1,2,3,2],[2,1,0,3],[1,2,1,1]],[[1,2,2,0],[1,2,3,3],[2,1,0,2],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[2,1,0,2],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[2,1,0,2],[1,2,1,1]],[[1,3,2,0],[1,2,3,2],[2,1,0,2],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,2,0],[1,2,3,2],[2,1,0,2],[1,1,2,2]],[[1,2,2,0],[1,2,3,2],[2,1,0,2],[1,1,3,1]],[[1,2,2,0],[1,2,3,2],[2,1,0,3],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[2,1,0,2],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[2,1,0,2],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[2,1,0,2],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[2,1,0,2],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,2,0],[1,2,3,2],[2,1,0,2],[0,2,2,2]],[[1,2,2,0],[1,2,3,2],[2,1,0,2],[0,2,3,1]],[[1,2,2,0],[1,2,3,2],[2,1,0,2],[0,3,2,1]],[[1,2,2,0],[1,2,3,2],[2,1,0,3],[0,2,2,1]],[[1,2,2,0],[1,2,3,3],[2,1,0,2],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[2,1,0,2],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[2,1,0,2],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[2,1,0,2],[0,2,2,1]],[[2,2,2,0],[1,2,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,2,0],[1,2,3,3],[2,1,0,1],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[2,1,0,1],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[2,1,0,1],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[2,1,0,1],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[2,1,0,1],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,2,0],[1,2,3,3],[2,0,3,2],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[2,0,3,2],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[2,0,3,2],[1,0,2,0]],[[1,3,2,0],[1,2,3,2],[2,0,3,2],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[2,0,3,2],[1,0,2,0]],[[1,2,2,0],[1,2,3,2],[2,0,3,2],[1,0,1,2]],[[1,2,2,0],[1,2,3,2],[2,0,3,3],[1,0,1,1]],[[1,2,2,0],[1,2,3,3],[2,0,3,2],[1,0,1,1]],[[1,2,2,0],[1,2,4,2],[2,0,3,2],[1,0,1,1]],[[1,2,3,0],[1,2,3,2],[2,0,3,2],[1,0,1,1]],[[1,3,2,0],[1,2,3,2],[2,0,3,2],[1,0,1,1]],[[2,2,2,0],[1,2,3,2],[2,0,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,1],[1,0,1,2],[0,2,2,1]],[[0,2,3,1],[2,3,3,1],[1,0,1,2],[0,2,2,1]],[[0,2,2,2],[2,3,3,1],[1,0,1,2],[0,2,2,1]],[[0,2,2,1],[2,3,4,1],[1,0,1,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,1],[1,0,2,2],[0,2,1,1]],[[0,2,3,1],[2,3,3,1],[1,0,2,2],[0,2,1,1]],[[0,2,2,2],[2,3,3,1],[1,0,2,2],[0,2,1,1]],[[0,2,2,1],[2,3,4,1],[1,0,2,2],[0,2,1,1]],[[0,3,2,1],[2,3,3,1],[1,0,2,2],[0,2,2,0]],[[0,2,3,1],[2,3,3,1],[1,0,2,2],[0,2,2,0]],[[0,2,2,2],[2,3,3,1],[1,0,2,2],[0,2,2,0]],[[0,2,2,1],[2,3,4,1],[1,0,2,2],[0,2,2,0]],[[0,3,2,1],[2,3,3,1],[1,0,3,0],[0,2,2,1]],[[0,2,3,1],[2,3,3,1],[1,0,3,0],[0,2,2,1]],[[0,2,2,2],[2,3,3,1],[1,0,3,0],[0,2,2,1]],[[0,2,2,1],[2,3,4,1],[1,0,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,3,1],[1,0,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,3,1],[1,0,3,1],[0,2,1,1]],[[0,2,2,2],[2,3,3,1],[1,0,3,1],[0,2,1,1]],[[0,2,2,1],[2,3,4,1],[1,0,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,3,1],[1,0,3,1],[0,2,2,0]],[[0,2,3,1],[2,3,3,1],[1,0,3,1],[0,2,2,0]],[[0,2,2,2],[2,3,3,1],[1,0,3,1],[0,2,2,0]],[[0,2,2,1],[2,3,4,1],[1,0,3,1],[0,2,2,0]],[[0,3,2,1],[2,3,3,1],[1,0,3,2],[0,0,2,1]],[[0,2,3,1],[2,3,3,1],[1,0,3,2],[0,0,2,1]],[[0,2,2,2],[2,3,3,1],[1,0,3,2],[0,0,2,1]],[[0,2,2,1],[2,3,4,1],[1,0,3,2],[0,0,2,1]],[[0,3,2,1],[2,3,3,1],[1,0,3,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,1],[1,0,3,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,1],[1,0,3,2],[0,1,1,1]],[[0,2,2,1],[2,3,4,1],[1,0,3,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,1],[1,0,3,2],[0,1,2,0]],[[0,2,3,1],[2,3,3,1],[1,0,3,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,1],[1,0,3,2],[0,1,2,0]],[[0,2,2,1],[2,3,4,1],[1,0,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[2,0,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[2,0,3,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[2,0,3,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[2,0,3,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[2,0,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[2,0,3,2],[0,1,1,2]],[[0,3,2,1],[2,3,3,1],[1,0,3,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,1],[1,0,3,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,1],[1,0,3,2],[1,0,1,1]],[[0,2,2,1],[2,3,4,1],[1,0,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,1],[1,0,3,2],[1,0,2,0]],[[0,2,3,1],[2,3,3,1],[1,0,3,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,1],[1,0,3,2],[1,0,2,0]],[[0,2,2,1],[2,3,4,1],[1,0,3,2],[1,0,2,0]],[[1,2,2,0],[1,2,3,2],[2,0,3,3],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[2,0,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[2,0,3,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[2,0,3,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[2,0,3,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[2,0,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,3,2],[2,0,3,2],[0,0,2,2]],[[1,2,2,0],[1,2,3,2],[2,0,3,3],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[2,0,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[2,0,3,2],[0,0,2,1]],[[1,2,3,0],[1,2,3,2],[2,0,3,2],[0,0,2,1]],[[1,3,2,0],[1,2,3,2],[2,0,3,2],[0,0,2,1]],[[2,2,2,0],[1,2,3,2],[2,0,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,3,2],[2,0,4,1],[1,2,1,0]],[[1,2,2,0],[1,2,3,3],[2,0,3,1],[1,2,1,0]],[[1,2,2,0],[1,2,4,2],[2,0,3,1],[1,2,1,0]],[[1,2,3,0],[1,2,3,2],[2,0,3,1],[1,2,1,0]],[[1,3,2,0],[1,2,3,2],[2,0,3,1],[1,2,1,0]],[[2,2,2,0],[1,2,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,2,0],[1,2,3,2],[2,0,4,1],[1,2,0,1]],[[0,3,2,1],[2,3,3,1],[1,1,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,3,1],[1,1,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,3,1],[1,1,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,4,1],[1,1,1,2],[0,1,2,1]],[[0,3,2,1],[2,3,3,1],[1,1,1,2],[1,0,2,1]],[[0,2,3,1],[2,3,3,1],[1,1,1,2],[1,0,2,1]],[[0,2,2,2],[2,3,3,1],[1,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,4,1],[1,1,1,2],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[2,0,3,1],[1,2,0,1]],[[1,2,2,0],[1,2,4,2],[2,0,3,1],[1,2,0,1]],[[1,2,3,0],[1,2,3,2],[2,0,3,1],[1,2,0,1]],[[1,3,2,0],[1,2,3,2],[2,0,3,1],[1,2,0,1]],[[2,2,2,0],[1,2,3,2],[2,0,3,1],[1,2,0,1]],[[0,3,2,1],[2,3,3,1],[1,1,2,2],[0,0,2,1]],[[0,2,3,1],[2,3,3,1],[1,1,2,2],[0,0,2,1]],[[0,2,2,2],[2,3,3,1],[1,1,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,4,1],[1,1,2,2],[0,0,2,1]],[[0,3,2,1],[2,3,3,1],[1,1,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,1],[1,1,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,1],[1,1,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,4,1],[1,1,2,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,1],[1,1,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,3,1],[1,1,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,1],[1,1,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,4,1],[1,1,2,2],[0,1,2,0]],[[0,3,2,1],[2,3,3,1],[1,1,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,1],[1,1,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,3,1],[1,1,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,4,1],[1,1,2,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[1,1,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,3,1],[1,1,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,3,1],[1,1,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,4,1],[1,1,2,2],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[2,0,3,1],[1,1,3,0]],[[1,2,2,0],[1,2,3,2],[2,0,4,1],[1,1,2,0]],[[1,2,2,0],[1,2,3,3],[2,0,3,1],[1,1,2,0]],[[0,3,2,1],[2,3,3,1],[1,1,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,1],[1,1,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,1],[1,1,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,4,1],[1,1,2,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,1],[1,1,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,3,1],[1,1,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,1],[1,1,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,4,1],[1,1,2,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,1],[1,1,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,3,1],[1,1,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,1],[1,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,4,1],[1,1,2,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,1],[1,1,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,3,1],[1,1,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,3,1],[1,1,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,4,1],[1,1,2,2],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[2,0,3,1],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[2,0,3,1],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[2,0,3,1],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,2,0],[1,2,3,2],[2,0,4,1],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[2,0,3,1],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[2,0,3,1],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[2,0,3,1],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[2,0,3,1],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,2,0],[1,2,3,2],[2,0,3,1],[0,2,3,0]],[[1,2,2,0],[1,2,3,2],[2,0,3,1],[0,3,2,0]],[[1,2,2,0],[1,2,3,2],[2,0,4,1],[0,2,2,0]],[[1,2,2,0],[1,2,3,3],[2,0,3,1],[0,2,2,0]],[[1,2,2,0],[1,2,4,2],[2,0,3,1],[0,2,2,0]],[[1,2,3,0],[1,2,3,2],[2,0,3,1],[0,2,2,0]],[[1,3,2,0],[1,2,3,2],[2,0,3,1],[0,2,2,0]],[[2,2,2,0],[1,2,3,2],[2,0,3,1],[0,2,2,0]],[[0,3,2,1],[2,3,3,1],[1,1,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,3,1],[1,1,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,3,1],[1,1,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,4,1],[1,1,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,1],[1,1,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,3,1],[1,1,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,4,1],[1,1,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,3,1],[1,1,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,3,1],[1,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,4,1],[1,1,3,0],[1,0,2,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,1],[1,1,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,3,1],[1,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,4,1],[1,1,3,0],[1,1,1,1]],[[1,2,2,0],[1,2,3,2],[2,0,4,1],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[2,0,3,1],[0,2,1,1]],[[1,2,2,0],[1,2,4,2],[2,0,3,1],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[2,0,3,1],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[2,0,3,1],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[2,0,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,1],[0,0,2,1]],[[0,2,3,1],[2,3,3,1],[1,1,3,1],[0,0,2,1]],[[0,2,2,2],[2,3,3,1],[1,1,3,1],[0,0,2,1]],[[0,2,2,1],[2,3,4,1],[1,1,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,3,1],[1,1,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,3,1],[1,1,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,4,1],[1,1,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,3,1],[1,1,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,3,1],[1,1,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,4,1],[1,1,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,3,1],[1,1,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,1],[1,1,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,3,1],[1,1,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,4,1],[1,1,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,1],[1,1,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,3,1],[1,1,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,4,1],[1,1,3,1],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[2,0,4,0],[1,2,1,1]],[[1,2,2,0],[1,2,3,3],[2,0,3,0],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[2,0,3,0],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[2,0,3,0],[1,2,1,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,3,1],[1,1,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,3,1],[1,1,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,4,1],[1,1,3,1],[1,0,1,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,3,1],[1,1,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,3,1],[1,1,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,4,1],[1,1,3,1],[1,0,2,0]],[[0,3,2,1],[2,3,3,1],[1,1,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,1],[1,1,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,3,1],[1,1,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,4,1],[1,1,3,1],[1,1,0,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,1],[1,1,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,3,1],[1,1,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,4,1],[1,1,3,1],[1,1,1,0]],[[1,3,2,0],[1,2,3,2],[2,0,3,0],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,2,0],[1,2,3,2],[2,0,3,0],[1,1,2,2]],[[1,2,2,0],[1,2,3,2],[2,0,3,0],[1,1,3,1]],[[1,2,2,0],[1,2,3,2],[2,0,4,0],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[2,0,3,0],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[2,0,3,0],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[2,0,3,0],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[2,0,3,0],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,2,0],[1,2,3,2],[2,0,3,0],[0,2,2,2]],[[1,2,2,0],[1,2,3,2],[2,0,3,0],[0,2,3,1]],[[1,2,2,0],[1,2,3,2],[2,0,3,0],[0,3,2,1]],[[1,2,2,0],[1,2,3,2],[2,0,4,0],[0,2,2,1]],[[1,2,2,0],[1,2,3,3],[2,0,3,0],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[2,0,3,0],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[2,0,3,0],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[2,0,3,0],[0,2,2,1]],[[2,2,2,0],[1,2,3,2],[2,0,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,2],[0,1,0,1]],[[0,2,3,1],[2,3,3,1],[1,1,3,2],[0,1,0,1]],[[0,2,2,2],[2,3,3,1],[1,1,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,4,1],[1,1,3,2],[0,1,0,1]],[[1,2,2,0],[1,2,3,2],[2,0,2,3],[1,2,1,0]],[[1,2,2,0],[1,2,3,3],[2,0,2,2],[1,2,1,0]],[[1,2,2,0],[1,2,4,2],[2,0,2,2],[1,2,1,0]],[[1,2,3,0],[1,2,3,2],[2,0,2,2],[1,2,1,0]],[[1,3,2,0],[1,2,3,2],[2,0,2,2],[1,2,1,0]],[[2,2,2,0],[1,2,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,2,0],[1,2,3,2],[2,0,2,2],[1,2,0,2]],[[1,2,2,0],[1,2,3,2],[2,0,2,3],[1,2,0,1]],[[1,2,2,0],[1,2,3,3],[2,0,2,2],[1,2,0,1]],[[1,2,2,0],[1,2,4,2],[2,0,2,2],[1,2,0,1]],[[1,2,3,0],[1,2,3,2],[2,0,2,2],[1,2,0,1]],[[1,3,2,0],[1,2,3,2],[2,0,2,2],[1,2,0,1]],[[2,2,2,0],[1,2,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,2,0],[1,2,3,2],[2,0,2,3],[1,1,2,0]],[[1,2,2,0],[1,2,3,3],[2,0,2,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,2],[2,0,2,2],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[2,0,2,2],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[2,0,2,2],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,2,0],[1,2,3,2],[2,0,2,2],[1,1,1,2]],[[1,2,2,0],[1,2,3,2],[2,0,2,3],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[2,0,2,2],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[2,0,2,2],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[2,0,2,2],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[2,0,2,2],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[2,0,2,2],[1,1,1,1]],[[0,3,2,1],[2,3,3,1],[1,1,3,2],[1,0,0,1]],[[0,2,3,1],[2,3,3,1],[1,1,3,2],[1,0,0,1]],[[0,2,2,2],[2,3,3,1],[1,1,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,4,1],[1,1,3,2],[1,0,0,1]],[[1,2,2,0],[1,2,3,2],[2,0,2,3],[0,2,2,0]],[[1,2,2,0],[1,2,3,3],[2,0,2,2],[0,2,2,0]],[[1,2,2,0],[1,2,4,2],[2,0,2,2],[0,2,2,0]],[[1,2,3,0],[1,2,3,2],[2,0,2,2],[0,2,2,0]],[[1,3,2,0],[1,2,3,2],[2,0,2,2],[0,2,2,0]],[[2,2,2,0],[1,2,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,2,0],[1,2,3,2],[2,0,2,2],[0,2,1,2]],[[1,2,2,0],[1,2,3,2],[2,0,2,3],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[2,0,2,2],[0,2,1,1]],[[1,2,2,0],[1,2,4,2],[2,0,2,2],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[2,0,2,2],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[2,0,2,2],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[2,0,2,1],[1,2,2,0]],[[1,2,2,0],[1,2,4,2],[2,0,2,1],[1,2,2,0]],[[1,2,3,0],[1,2,3,2],[2,0,2,1],[1,2,2,0]],[[1,3,2,0],[1,2,3,2],[2,0,2,1],[1,2,2,0]],[[2,2,2,0],[1,2,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,2,0],[1,2,3,3],[2,0,2,0],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[2,0,2,0],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[2,0,2,0],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[2,0,2,0],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[2,0,1,3],[1,2,2,0]],[[1,2,2,0],[1,2,3,3],[2,0,1,2],[1,2,2,0]],[[1,2,2,0],[1,2,4,2],[2,0,1,2],[1,2,2,0]],[[1,2,3,0],[1,2,3,2],[2,0,1,2],[1,2,2,0]],[[1,3,2,0],[1,2,3,2],[2,0,1,2],[1,2,2,0]],[[2,2,2,0],[1,2,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,2,0],[1,2,3,2],[2,0,1,2],[1,2,1,2]],[[1,2,2,0],[1,2,3,2],[2,0,1,3],[1,2,1,1]],[[1,2,2,0],[1,2,3,3],[2,0,1,2],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[2,0,1,2],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[2,0,1,2],[1,2,1,1]],[[1,3,2,0],[1,2,3,2],[2,0,1,2],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,2,0],[1,2,3,2],[2,0,1,2],[1,1,2,2]],[[1,2,2,0],[1,2,3,2],[2,0,1,2],[1,1,3,1]],[[1,2,2,0],[1,2,3,2],[2,0,1,3],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[2,0,1,2],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[2,0,1,2],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[2,0,1,2],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[2,0,1,2],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,2,0],[1,2,3,2],[2,0,1,2],[0,2,2,2]],[[1,2,2,0],[1,2,3,2],[2,0,1,2],[0,2,3,1]],[[1,2,2,0],[1,2,3,2],[2,0,1,2],[0,3,2,1]],[[1,2,2,0],[1,2,3,2],[2,0,1,3],[0,2,2,1]],[[1,2,2,0],[1,2,3,3],[2,0,1,2],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[2,0,1,2],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[2,0,1,2],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[2,0,1,2],[0,2,2,1]],[[2,2,2,0],[1,2,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,2,0],[1,2,3,3],[2,0,1,1],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[2,0,1,1],[1,2,2,1]],[[0,3,2,1],[2,3,3,1],[1,2,2,2],[0,0,1,1]],[[0,2,3,1],[2,3,3,1],[1,2,2,2],[0,0,1,1]],[[0,2,2,2],[2,3,3,1],[1,2,2,2],[0,0,1,1]],[[0,2,2,1],[2,3,4,1],[1,2,2,2],[0,0,1,1]],[[0,3,2,1],[2,3,3,1],[1,2,2,2],[0,0,2,0]],[[0,2,3,1],[2,3,3,1],[1,2,2,2],[0,0,2,0]],[[0,2,2,2],[2,3,3,1],[1,2,2,2],[0,0,2,0]],[[0,2,2,1],[2,3,4,1],[1,2,2,2],[0,0,2,0]],[[1,2,3,0],[1,2,3,2],[2,0,1,1],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[2,0,1,1],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,0],[1,2,3,3],[1,3,3,2],[0,0,0,1]],[[1,2,2,0],[1,2,4,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,0],[1,2,3,2],[1,3,3,2],[0,0,0,1]],[[1,3,2,0],[1,2,3,2],[1,3,3,2],[0,0,0,1]],[[2,2,2,0],[1,2,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,0],[1,2,3,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,0],[1,2,4,2],[1,3,3,1],[1,1,0,0]],[[1,2,3,0],[1,2,3,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,0],[1,2,3,2],[1,3,3,1],[1,1,0,0]],[[2,2,2,0],[1,2,3,2],[1,3,3,1],[1,1,0,0]],[[0,3,2,1],[2,3,3,1],[1,2,3,0],[0,0,2,1]],[[0,2,3,1],[2,3,3,1],[1,2,3,0],[0,0,2,1]],[[0,2,2,2],[2,3,3,1],[1,2,3,0],[0,0,2,1]],[[0,2,2,1],[2,3,4,1],[1,2,3,0],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,0],[1,2,4,2],[1,3,3,1],[0,2,0,0]],[[1,2,3,0],[1,2,3,2],[1,3,3,1],[0,2,0,0]],[[1,3,2,0],[1,2,3,2],[1,3,3,1],[0,2,0,0]],[[2,2,2,0],[1,2,3,2],[1,3,3,1],[0,2,0,0]],[[1,2,2,0],[1,2,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,2,0],[1,2,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,0],[1,2,4,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,3,1],[0,0,2,0]],[[1,3,2,0],[1,2,3,2],[1,3,3,1],[0,0,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,3,1],[0,0,2,0]],[[0,3,2,1],[2,3,3,1],[1,2,3,1],[0,0,1,1]],[[0,2,3,1],[2,3,3,1],[1,2,3,1],[0,0,1,1]],[[0,2,2,2],[2,3,3,1],[1,2,3,1],[0,0,1,1]],[[0,2,2,1],[2,3,4,1],[1,2,3,1],[0,0,1,1]],[[0,3,2,1],[2,3,3,1],[1,2,3,1],[0,0,2,0]],[[0,2,3,1],[2,3,3,1],[1,2,3,1],[0,0,2,0]],[[0,2,2,2],[2,3,3,1],[1,2,3,1],[0,0,2,0]],[[0,2,2,1],[2,3,4,1],[1,2,3,1],[0,0,2,0]],[[1,2,2,0],[1,2,3,2],[1,3,4,1],[0,0,1,1]],[[1,2,2,0],[1,2,3,3],[1,3,3,1],[0,0,1,1]],[[1,2,2,0],[1,2,4,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,0],[1,2,3,2],[1,3,3,1],[0,0,1,1]],[[1,3,2,0],[1,2,3,2],[1,3,3,1],[0,0,1,1]],[[2,2,2,0],[1,2,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,0],[1,2,4,2],[1,3,3,0],[1,2,0,0]],[[1,2,3,0],[1,2,3,2],[1,3,3,0],[1,2,0,0]],[[1,3,2,0],[1,2,3,2],[1,3,3,0],[1,2,0,0]],[[2,2,2,0],[1,2,3,2],[1,3,3,0],[1,2,0,0]],[[1,2,2,0],[1,2,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,3,0],[1,2,3,2],[1,3,3,0],[1,1,1,0]],[[1,3,2,0],[1,2,3,2],[1,3,3,0],[1,1,1,0]],[[2,2,2,0],[1,2,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[1,3,3,0],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,3,0],[1,0,2,0]],[[1,3,2,0],[1,2,3,2],[1,3,3,0],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[1,3,3,0],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[1,3,3,0],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[1,3,3,0],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[1,3,3,0],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,3,0],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[1,3,3,0],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[1,3,4,0],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[1,3,3,0],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[1,3,3,0],[0,0,2,1]],[[1,2,3,0],[1,2,3,2],[1,3,3,0],[0,0,2,1]],[[1,3,2,0],[1,2,3,2],[1,3,3,0],[0,0,2,1]],[[2,2,2,0],[1,2,3,2],[1,3,3,0],[0,0,2,1]],[[0,3,2,1],[2,3,3,1],[1,2,3,2],[0,0,0,1]],[[0,2,3,1],[2,3,3,1],[1,2,3,2],[0,0,0,1]],[[0,2,2,2],[2,3,3,1],[1,2,3,2],[0,0,0,1]],[[0,2,2,1],[2,3,4,1],[1,2,3,2],[0,0,0,1]],[[1,2,2,0],[1,2,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,0],[1,2,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[1,2,4,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,2,2],[0,0,2,0]],[[1,3,2,0],[1,2,3,2],[1,3,2,2],[0,0,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[1,2,3,2],[1,3,2,2],[0,0,1,2]],[[1,2,2,0],[1,2,3,2],[1,3,2,3],[0,0,1,1]],[[1,2,2,0],[1,2,3,3],[1,3,2,2],[0,0,1,1]],[[1,2,2,0],[1,2,4,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,0],[1,2,3,2],[1,3,2,2],[0,0,1,1]],[[1,3,2,0],[1,2,3,2],[1,3,2,2],[0,0,1,1]],[[2,2,2,0],[1,2,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,2,0],[1,2,3,3],[1,3,2,1],[1,2,0,0]],[[1,2,2,0],[1,2,4,2],[1,3,2,1],[1,2,0,0]],[[1,2,3,0],[1,2,3,2],[1,3,2,1],[1,2,0,0]],[[1,3,2,0],[1,2,3,2],[1,3,2,1],[1,2,0,0]],[[2,2,2,0],[1,2,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,2,0],[1,2,3,3],[1,3,2,1],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[1,3,2,1],[1,1,1,0]],[[1,2,3,0],[1,2,3,2],[1,3,2,1],[1,1,1,0]],[[1,3,2,0],[1,2,3,2],[1,3,2,1],[1,1,1,0]],[[2,2,2,0],[1,2,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,0],[1,2,3,3],[1,3,2,1],[1,1,0,1]],[[1,2,2,0],[1,2,4,2],[1,3,2,1],[1,1,0,1]],[[1,2,3,0],[1,2,3,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,0],[1,2,3,2],[1,3,2,1],[1,1,0,1]],[[2,2,2,0],[1,2,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,0],[1,2,3,3],[1,3,2,1],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[1,3,2,1],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,0],[1,2,3,2],[1,3,2,1],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,0],[1,2,3,3],[1,3,2,1],[1,0,1,1]],[[1,2,2,0],[1,2,4,2],[1,3,2,1],[1,0,1,1]],[[1,2,3,0],[1,2,3,2],[1,3,2,1],[1,0,1,1]],[[1,3,2,0],[1,2,3,2],[1,3,2,1],[1,0,1,1]],[[2,2,2,0],[1,2,3,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,0],[1,2,3,3],[1,3,2,1],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[1,3,2,1],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[1,3,2,1],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,0],[1,2,3,3],[1,3,2,1],[0,2,0,1]],[[1,2,2,0],[1,2,4,2],[1,3,2,1],[0,2,0,1]],[[1,2,3,0],[1,2,3,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,0],[1,2,3,2],[1,3,2,1],[0,2,0,1]],[[2,2,2,0],[1,2,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,0],[1,2,3,3],[1,3,2,1],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[1,3,2,1],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[1,3,2,1],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[1,3,2,1],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[1,3,2,1],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[1,3,2,1],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[1,3,2,1],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[1,3,2,0],[1,2,0,1]],[[1,2,3,0],[1,2,3,2],[1,3,2,0],[1,2,0,1]],[[1,3,2,0],[1,2,3,2],[1,3,2,0],[1,2,0,1]],[[2,2,2,0],[1,2,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,2,0],[1,2,3,3],[1,3,2,0],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[1,3,2,0],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[1,3,2,0],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[1,3,2,0],[1,0,2,1]],[[1,2,2,0],[1,2,4,2],[1,3,2,0],[1,0,2,1]],[[1,2,3,0],[1,2,3,2],[1,3,2,0],[1,0,2,1]],[[1,3,2,0],[1,2,3,2],[1,3,2,0],[1,0,2,1]],[[2,2,2,0],[1,2,3,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[1,3,2,0],[0,2,1,1]],[[1,2,2,0],[1,2,4,2],[1,3,2,0],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[1,3,2,0],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[1,3,2,0],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[1,3,2,0],[0,1,2,1]],[[1,2,2,0],[1,2,4,2],[1,3,2,0],[0,1,2,1]],[[1,2,3,0],[1,2,3,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,0],[1,2,3,2],[1,3,2,0],[0,1,2,1]],[[2,2,2,0],[1,2,3,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[1,3,1,2],[1,2,0,0]],[[1,2,2,0],[1,2,4,2],[1,3,1,2],[1,2,0,0]],[[1,2,3,0],[1,2,3,2],[1,3,1,2],[1,2,0,0]],[[1,3,2,0],[1,2,3,2],[1,3,1,2],[1,2,0,0]],[[2,2,2,0],[1,2,3,2],[1,3,1,2],[1,2,0,0]],[[0,3,2,1],[2,3,3,1],[1,3,0,0],[0,2,2,1]],[[0,2,3,1],[2,3,3,1],[1,3,0,0],[0,2,2,1]],[[0,2,2,2],[2,3,3,1],[1,3,0,0],[0,2,2,1]],[[0,2,2,1],[3,3,3,1],[1,3,0,0],[0,2,2,1]],[[0,2,2,1],[2,4,3,1],[1,3,0,0],[0,2,2,1]],[[0,3,2,1],[2,3,3,1],[1,3,0,0],[1,1,2,1]],[[0,2,3,1],[2,3,3,1],[1,3,0,0],[1,1,2,1]],[[0,2,2,2],[2,3,3,1],[1,3,0,0],[1,1,2,1]],[[0,2,2,1],[3,3,3,1],[1,3,0,0],[1,1,2,1]],[[0,2,2,1],[2,4,3,1],[1,3,0,0],[1,1,2,1]],[[0,3,2,1],[2,3,3,1],[1,3,0,1],[0,2,2,0]],[[0,2,3,1],[2,3,3,1],[1,3,0,1],[0,2,2,0]],[[0,2,2,2],[2,3,3,1],[1,3,0,1],[0,2,2,0]],[[0,2,2,1],[3,3,3,1],[1,3,0,1],[0,2,2,0]],[[0,2,2,1],[2,4,3,1],[1,3,0,1],[0,2,2,0]],[[0,3,2,1],[2,3,3,1],[1,3,0,1],[1,1,2,0]],[[0,2,3,1],[2,3,3,1],[1,3,0,1],[1,1,2,0]],[[0,2,2,2],[2,3,3,1],[1,3,0,1],[1,1,2,0]],[[0,2,2,1],[3,3,3,1],[1,3,0,1],[1,1,2,0]],[[0,2,2,1],[2,4,3,1],[1,3,0,1],[1,1,2,0]],[[1,2,2,0],[1,2,3,2],[1,3,1,3],[1,1,1,0]],[[1,2,2,0],[1,2,3,3],[1,3,1,2],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[1,3,1,2],[1,1,1,0]],[[1,2,3,0],[1,2,3,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,0],[1,2,3,2],[1,3,1,2],[1,1,1,0]],[[2,2,2,0],[1,2,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,0],[1,2,3,2],[1,3,1,2],[1,1,0,2]],[[0,3,2,1],[2,3,3,1],[1,3,0,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,1],[1,3,0,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,1],[1,3,0,2],[0,1,1,1]],[[0,2,2,1],[3,3,3,1],[1,3,0,2],[0,1,1,1]],[[0,2,2,1],[2,4,3,1],[1,3,0,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,1],[1,3,0,2],[0,1,2,0]],[[0,2,3,1],[2,3,3,1],[1,3,0,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,1],[1,3,0,2],[0,1,2,0]],[[0,2,2,1],[3,3,3,1],[1,3,0,2],[0,1,2,0]],[[0,2,2,1],[2,4,3,1],[1,3,0,2],[0,1,2,0]],[[0,3,2,1],[2,3,3,1],[1,3,0,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,1],[1,3,0,2],[0,2,0,1]],[[0,2,2,2],[2,3,3,1],[1,3,0,2],[0,2,0,1]],[[0,2,2,1],[3,3,3,1],[1,3,0,2],[0,2,0,1]],[[0,2,2,1],[2,4,3,1],[1,3,0,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[1,3,0,2],[0,2,1,0]],[[0,2,3,1],[2,3,3,1],[1,3,0,2],[0,2,1,0]],[[0,2,2,2],[2,3,3,1],[1,3,0,2],[0,2,1,0]],[[0,2,2,1],[3,3,3,1],[1,3,0,2],[0,2,1,0]],[[0,2,2,1],[2,4,3,1],[1,3,0,2],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[1,3,1,3],[1,1,0,1]],[[1,2,2,0],[1,2,3,3],[1,3,1,2],[1,1,0,1]],[[1,2,2,0],[1,2,4,2],[1,3,1,2],[1,1,0,1]],[[1,2,3,0],[1,2,3,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,0],[1,2,3,2],[1,3,1,2],[1,1,0,1]],[[2,2,2,0],[1,2,3,2],[1,3,1,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,1],[1,3,0,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,1],[1,3,0,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,1],[1,3,0,2],[1,0,1,1]],[[0,2,2,1],[3,3,3,1],[1,3,0,2],[1,0,1,1]],[[0,2,2,1],[2,4,3,1],[1,3,0,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,1],[1,3,0,2],[1,0,2,0]],[[0,2,3,1],[2,3,3,1],[1,3,0,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,1],[1,3,0,2],[1,0,2,0]],[[0,2,2,1],[3,3,3,1],[1,3,0,2],[1,0,2,0]],[[0,2,2,1],[2,4,3,1],[1,3,0,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,1],[1,3,0,2],[1,1,0,1]],[[0,2,3,1],[2,3,3,1],[1,3,0,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,1],[1,3,0,2],[1,1,0,1]],[[0,2,2,1],[3,3,3,1],[1,3,0,2],[1,1,0,1]],[[0,2,2,1],[2,4,3,1],[1,3,0,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,1],[1,3,0,2],[1,1,1,0]],[[0,2,3,1],[2,3,3,1],[1,3,0,2],[1,1,1,0]],[[0,2,2,2],[2,3,3,1],[1,3,0,2],[1,1,1,0]],[[0,2,2,1],[3,3,3,1],[1,3,0,2],[1,1,1,0]],[[0,2,2,1],[2,4,3,1],[1,3,0,2],[1,1,1,0]],[[1,2,2,0],[1,2,3,2],[1,3,1,3],[1,0,2,0]],[[1,2,2,0],[1,2,3,3],[1,3,1,2],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[1,3,1,2],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,1,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,1],[1,3,0,2],[1,2,0,0]],[[0,2,3,1],[2,3,3,1],[1,3,0,2],[1,2,0,0]],[[0,2,2,2],[2,3,3,1],[1,3,0,2],[1,2,0,0]],[[0,2,2,1],[3,3,3,1],[1,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,4,3,1],[1,3,0,2],[1,2,0,0]],[[1,3,2,0],[1,2,3,2],[1,3,1,2],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,0],[1,2,3,2],[1,3,1,2],[1,0,1,2]],[[1,2,2,0],[1,2,3,2],[1,3,1,3],[1,0,1,1]],[[1,2,2,0],[1,2,3,3],[1,3,1,2],[1,0,1,1]],[[1,2,2,0],[1,2,4,2],[1,3,1,2],[1,0,1,1]],[[1,2,3,0],[1,2,3,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,0],[1,2,3,2],[1,3,1,2],[1,0,1,1]],[[2,2,2,0],[1,2,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,0],[1,2,3,2],[1,3,1,3],[0,2,1,0]],[[1,2,2,0],[1,2,3,3],[1,3,1,2],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[1,3,1,2],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[1,3,1,2],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[1,3,1,2],[0,2,0,2]],[[1,2,2,0],[1,2,3,2],[1,3,1,3],[0,2,0,1]],[[1,2,2,0],[1,2,3,3],[1,3,1,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,0],[0,1,2,1]],[[0,2,3,1],[2,3,3,1],[1,3,1,0],[0,1,2,1]],[[0,2,2,2],[2,3,3,1],[1,3,1,0],[0,1,2,1]],[[0,2,2,1],[3,3,3,1],[1,3,1,0],[0,1,2,1]],[[0,2,2,1],[2,4,3,1],[1,3,1,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,1],[1,3,1,0],[0,2,1,1]],[[0,2,2,2],[2,3,3,1],[1,3,1,0],[0,2,1,1]],[[0,2,2,1],[3,3,3,1],[1,3,1,0],[0,2,1,1]],[[0,2,2,1],[2,4,3,1],[1,3,1,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,0],[1,0,2,1]],[[0,2,3,1],[2,3,3,1],[1,3,1,0],[1,0,2,1]],[[0,2,2,2],[2,3,3,1],[1,3,1,0],[1,0,2,1]],[[0,2,2,1],[3,3,3,1],[1,3,1,0],[1,0,2,1]],[[0,2,2,1],[2,4,3,1],[1,3,1,0],[1,0,2,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,1],[1,3,1,0],[1,1,1,1]],[[0,2,2,2],[2,3,3,1],[1,3,1,0],[1,1,1,1]],[[0,2,2,1],[3,3,3,1],[1,3,1,0],[1,1,1,1]],[[0,2,2,1],[2,4,3,1],[1,3,1,0],[1,1,1,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,0],[1,2,0,1]],[[0,2,3,1],[2,3,3,1],[1,3,1,0],[1,2,0,1]],[[0,2,2,2],[2,3,3,1],[1,3,1,0],[1,2,0,1]],[[0,2,2,1],[3,3,3,1],[1,3,1,0],[1,2,0,1]],[[0,2,2,1],[2,4,3,1],[1,3,1,0],[1,2,0,1]],[[1,2,2,0],[1,2,4,2],[1,3,1,2],[0,2,0,1]],[[1,2,3,0],[1,2,3,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,0],[1,2,3,2],[1,3,1,2],[0,2,0,1]],[[2,2,2,0],[1,2,3,2],[1,3,1,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,1],[0,1,1,1]],[[0,2,3,1],[2,3,3,1],[1,3,1,1],[0,1,1,1]],[[0,2,2,2],[2,3,3,1],[1,3,1,1],[0,1,1,1]],[[0,2,2,1],[3,3,3,1],[1,3,1,1],[0,1,1,1]],[[0,2,2,1],[2,4,3,1],[1,3,1,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,1],[0,1,2,0]],[[0,2,3,1],[2,3,3,1],[1,3,1,1],[0,1,2,0]],[[0,2,2,2],[2,3,3,1],[1,3,1,1],[0,1,2,0]],[[0,2,2,1],[3,3,3,1],[1,3,1,1],[0,1,2,0]],[[0,2,2,1],[2,4,3,1],[1,3,1,1],[0,1,2,0]],[[0,3,2,1],[2,3,3,1],[1,3,1,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,1],[1,3,1,1],[0,2,0,1]],[[0,2,2,2],[2,3,3,1],[1,3,1,1],[0,2,0,1]],[[0,2,2,1],[3,3,3,1],[1,3,1,1],[0,2,0,1]],[[0,2,2,1],[2,4,3,1],[1,3,1,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,1],[1,3,1,1],[0,2,1,0]],[[0,2,2,2],[2,3,3,1],[1,3,1,1],[0,2,1,0]],[[0,2,2,1],[3,3,3,1],[1,3,1,1],[0,2,1,0]],[[0,2,2,1],[2,4,3,1],[1,3,1,1],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[1,3,1,3],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[1,3,1,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[1,3,1,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[1,3,1,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[1,3,1,2],[0,1,1,2]],[[1,2,2,0],[1,2,3,2],[1,3,1,3],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[1,3,1,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,1],[1,0,1,1]],[[0,2,3,1],[2,3,3,1],[1,3,1,1],[1,0,1,1]],[[0,2,2,2],[2,3,3,1],[1,3,1,1],[1,0,1,1]],[[0,2,2,1],[3,3,3,1],[1,3,1,1],[1,0,1,1]],[[0,2,2,1],[2,4,3,1],[1,3,1,1],[1,0,1,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,1],[1,0,2,0]],[[0,2,3,1],[2,3,3,1],[1,3,1,1],[1,0,2,0]],[[0,2,2,2],[2,3,3,1],[1,3,1,1],[1,0,2,0]],[[0,2,2,1],[3,3,3,1],[1,3,1,1],[1,0,2,0]],[[0,2,2,1],[2,4,3,1],[1,3,1,1],[1,0,2,0]],[[0,3,2,1],[2,3,3,1],[1,3,1,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,1],[1,3,1,1],[1,1,0,1]],[[0,2,2,2],[2,3,3,1],[1,3,1,1],[1,1,0,1]],[[0,2,2,1],[3,3,3,1],[1,3,1,1],[1,1,0,1]],[[0,2,2,1],[2,4,3,1],[1,3,1,1],[1,1,0,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,1],[1,3,1,1],[1,1,1,0]],[[0,2,2,2],[2,3,3,1],[1,3,1,1],[1,1,1,0]],[[0,2,2,1],[3,3,3,1],[1,3,1,1],[1,1,1,0]],[[0,2,2,1],[2,4,3,1],[1,3,1,1],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[1,3,1,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[1,3,1,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[1,3,1,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,1],[1,3,1,1],[1,2,0,0]],[[0,2,3,1],[2,3,3,1],[1,3,1,1],[1,2,0,0]],[[0,2,2,2],[2,3,3,1],[1,3,1,1],[1,2,0,0]],[[0,2,2,1],[3,3,3,1],[1,3,1,1],[1,2,0,0]],[[0,2,2,1],[2,4,3,1],[1,3,1,1],[1,2,0,0]],[[1,2,2,0],[1,2,3,3],[1,3,1,1],[1,1,2,0]],[[1,2,2,0],[1,2,4,2],[1,3,1,1],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,1,1],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[1,3,1,1],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,1,1],[1,1,2,0]],[[1,2,2,0],[1,2,3,3],[1,3,1,1],[0,2,2,0]],[[1,2,2,0],[1,2,4,2],[1,3,1,1],[0,2,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,0],[1,2,3,2],[1,3,1,1],[0,2,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,0],[1,2,3,3],[1,3,1,0],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[1,3,1,0],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[1,3,1,0],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[1,3,1,0],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[1,3,1,0],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[1,3,1,0],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[1,3,1,0],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[1,3,1,0],[0,2,2,1]],[[2,2,2,0],[1,2,3,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,2,0],[1,2,3,3],[1,3,0,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,2],[1,3,0,2],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,0,2],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[1,3,0,2],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,2,0],[1,2,3,2],[1,3,0,2],[1,1,1,2]],[[1,2,2,0],[1,2,3,2],[1,3,0,3],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[1,3,0,2],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[1,3,0,2],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[1,3,0,2],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[1,3,0,2],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,2,0],[1,2,3,2],[1,3,0,2],[1,0,2,2]],[[1,2,2,0],[1,2,3,2],[1,3,0,2],[1,0,3,1]],[[1,2,2,0],[1,2,3,2],[1,3,0,3],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[1,3,0,2],[1,0,2,1]],[[1,2,2,0],[1,2,4,2],[1,3,0,2],[1,0,2,1]],[[1,2,3,0],[1,2,3,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,0],[1,2,3,2],[1,3,0,2],[1,0,2,1]],[[2,2,2,0],[1,2,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,0],[1,2,3,2],[1,3,0,3],[0,2,2,0]],[[1,2,2,0],[1,2,3,3],[1,3,0,2],[0,2,2,0]],[[1,2,2,0],[1,2,4,2],[1,3,0,2],[0,2,2,0]],[[1,2,3,0],[1,2,3,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,0],[1,2,3,2],[1,3,0,2],[0,2,2,0]],[[2,2,2,0],[1,2,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,0],[1,2,3,2],[1,3,0,2],[0,2,1,2]],[[1,2,2,0],[1,2,3,2],[1,3,0,3],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[1,3,0,2],[0,2,1,1]],[[1,2,2,0],[1,2,4,2],[1,3,0,2],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[1,3,0,2],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,0],[1,2,3,2],[1,3,0,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,2],[1,3,0,2],[0,1,3,1]],[[1,2,2,0],[1,2,3,2],[1,3,0,3],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[1,3,0,2],[0,1,2,1]],[[1,2,2,0],[1,2,4,2],[1,3,0,2],[0,1,2,1]],[[1,2,3,0],[1,2,3,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,0],[1,2,3,2],[1,3,0,2],[0,1,2,1]],[[2,2,2,0],[1,2,3,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[1,3,0,1],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[1,3,0,1],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[1,3,0,1],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[1,3,0,1],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[1,3,0,1],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[1,3,0,1],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[1,3,0,1],[0,2,2,1]],[[2,2,2,0],[1,2,3,2],[1,3,0,1],[0,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,0],[1,2,3,3],[1,2,3,2],[1,0,0,1]],[[1,2,2,0],[1,2,4,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,0],[1,2,3,2],[1,2,3,2],[1,0,0,1]],[[1,3,2,0],[1,2,3,2],[1,2,3,2],[1,0,0,1]],[[2,2,2,0],[1,2,3,2],[1,2,3,2],[1,0,0,1]],[[0,3,2,1],[2,3,3,1],[1,3,2,1],[0,2,0,0]],[[0,2,3,1],[2,3,3,1],[1,3,2,1],[0,2,0,0]],[[0,2,2,2],[2,3,3,1],[1,3,2,1],[0,2,0,0]],[[0,2,2,1],[3,3,3,1],[1,3,2,1],[0,2,0,0]],[[0,2,2,1],[2,4,3,1],[1,3,2,1],[0,2,0,0]],[[1,2,2,0],[1,2,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,0],[1,2,3,3],[1,2,3,2],[0,1,0,1]],[[1,2,2,0],[1,2,4,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,0],[1,2,3,2],[1,2,3,2],[0,1,0,1]],[[1,3,2,0],[1,2,3,2],[1,2,3,2],[0,1,0,1]],[[2,2,2,0],[1,2,3,2],[1,2,3,2],[0,1,0,1]],[[0,3,2,1],[2,3,3,1],[1,3,2,1],[1,1,0,0]],[[0,2,3,1],[2,3,3,1],[1,3,2,1],[1,1,0,0]],[[0,2,2,2],[2,3,3,1],[1,3,2,1],[1,1,0,0]],[[0,2,2,1],[3,3,3,1],[1,3,2,1],[1,1,0,0]],[[0,2,2,1],[2,4,3,1],[1,3,2,1],[1,1,0,0]],[[1,2,2,0],[1,2,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,2,0],[1,2,3,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[1,2,3,1],[1,1,1,0]],[[1,2,3,0],[1,2,3,2],[1,2,3,1],[1,1,1,0]],[[1,3,2,0],[1,2,3,2],[1,2,3,1],[1,1,1,0]],[[2,2,2,0],[1,2,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[1,2,3,2],[1,2,4,1],[1,1,0,1]],[[1,2,2,0],[1,2,3,3],[1,2,3,1],[1,1,0,1]],[[1,2,2,0],[1,2,4,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,0],[1,2,3,2],[1,2,3,1],[1,1,0,1]],[[1,3,2,0],[1,2,3,2],[1,2,3,1],[1,1,0,1]],[[2,2,2,0],[1,2,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,0],[1,2,3,2],[1,2,3,1],[1,0,3,0]],[[1,2,2,0],[1,2,3,2],[1,2,4,1],[1,0,2,0]],[[1,2,2,0],[1,2,3,3],[1,2,3,1],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[1,2,3,1],[1,0,2,0]],[[1,3,2,0],[1,2,3,2],[1,2,3,1],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,0],[1,2,3,2],[1,2,4,1],[1,0,1,1]],[[1,2,2,0],[1,2,3,3],[1,2,3,1],[1,0,1,1]],[[1,2,2,0],[1,2,4,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,0],[1,2,3,2],[1,2,3,1],[1,0,1,1]],[[1,3,2,0],[1,2,3,2],[1,2,3,1],[1,0,1,1]],[[2,2,2,0],[1,2,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,0],[1,2,3,2],[1,2,4,1],[0,2,1,0]],[[1,2,2,0],[1,2,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[1,2,3,1],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[1,2,3,1],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[1,2,4,1],[0,2,0,1]],[[1,2,2,0],[1,2,3,3],[1,2,3,1],[0,2,0,1]],[[1,2,2,0],[1,2,4,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,0],[1,2,3,2],[1,2,3,1],[0,2,0,1]],[[1,3,2,0],[1,2,3,2],[1,2,3,1],[0,2,0,1]],[[2,2,2,0],[1,2,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,0],[1,2,3,2],[1,2,3,1],[0,1,3,0]],[[1,2,2,0],[1,2,3,2],[1,2,4,1],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[1,2,3,1],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[1,2,3,1],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[1,2,3,1],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[1,2,4,1],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[1,2,3,1],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[1,2,3,1],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[1,2,3,1],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,0],[1,2,3,2],[1,2,4,1],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[1,2,3,1],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,0],[1,2,3,2],[1,2,3,1],[0,0,2,1]],[[1,3,2,0],[1,2,3,2],[1,2,3,1],[0,0,2,1]],[[2,2,2,0],[1,2,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,0],[1,2,3,2],[1,2,4,0],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[1,2,3,0],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[1,2,3,0],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[1,2,3,0],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[1,2,3,0],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,0],[1,2,3,2],[1,2,3,0],[1,0,2,2]],[[1,2,2,0],[1,2,3,2],[1,2,3,0],[1,0,3,1]],[[1,2,2,0],[1,2,3,2],[1,2,4,0],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[1,2,3,0],[1,0,2,1]],[[1,2,2,0],[1,2,4,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,0],[1,2,3,2],[1,2,3,0],[1,0,2,1]],[[1,3,2,0],[1,2,3,2],[1,2,3,0],[1,0,2,1]],[[2,2,2,0],[1,2,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,0],[1,2,3,2],[1,2,4,0],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[1,2,3,0],[0,2,1,1]],[[1,2,2,0],[1,2,4,2],[1,2,3,0],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[1,2,3,0],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[1,2,3,0],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,0],[1,2,3,2],[1,2,3,0],[0,1,2,2]],[[1,2,2,0],[1,2,3,2],[1,2,3,0],[0,1,3,1]],[[1,2,2,0],[1,2,3,2],[1,2,4,0],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[1,2,3,0],[0,1,2,1]],[[1,2,2,0],[1,2,4,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,0],[1,2,3,2],[1,2,3,0],[0,1,2,1]],[[1,3,2,0],[1,2,3,2],[1,2,3,0],[0,1,2,1]],[[2,2,2,0],[1,2,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,2,0],[1,2,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,2,0],[1,2,3,3],[1,2,2,2],[1,1,1,0]],[[1,2,2,0],[1,2,4,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,0],[1,2,3,2],[1,2,2,2],[1,1,1,0]],[[1,3,2,0],[1,2,3,2],[1,2,2,2],[1,1,1,0]],[[2,2,2,0],[1,2,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,0],[1,2,3,2],[1,2,2,2],[1,1,0,2]],[[1,2,2,0],[1,2,3,2],[1,2,2,3],[1,1,0,1]],[[1,2,2,0],[1,2,3,3],[1,2,2,2],[1,1,0,1]],[[1,2,2,0],[1,2,4,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,0],[1,2,3,2],[1,2,2,2],[1,1,0,1]],[[1,3,2,0],[1,2,3,2],[1,2,2,2],[1,1,0,1]],[[2,2,2,0],[1,2,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,0],[1,2,3,2],[1,2,2,3],[1,0,2,0]],[[1,2,2,0],[1,2,3,3],[1,2,2,2],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[1,2,2,2],[1,0,2,0]],[[1,3,2,0],[1,2,3,2],[1,2,2,2],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,0],[1,2,3,2],[1,2,2,2],[1,0,1,2]],[[1,2,2,0],[1,2,3,2],[1,2,2,3],[1,0,1,1]],[[1,2,2,0],[1,2,3,3],[1,2,2,2],[1,0,1,1]],[[1,2,2,0],[1,2,4,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,0],[1,2,3,2],[1,2,2,2],[1,0,1,1]],[[1,3,2,0],[1,2,3,2],[1,2,2,2],[1,0,1,1]],[[2,2,2,0],[1,2,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,0],[1,2,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,0],[1,2,3,3],[1,2,2,2],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[1,2,2,2],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[1,2,2,2],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[1,2,2,2],[0,2,0,2]],[[1,2,2,0],[1,2,3,2],[1,2,2,3],[0,2,0,1]],[[1,2,2,0],[1,2,3,3],[1,2,2,2],[0,2,0,1]],[[1,2,2,0],[1,2,4,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,0],[1,2,3,2],[1,2,2,2],[0,2,0,1]],[[1,3,2,0],[1,2,3,2],[1,2,2,2],[0,2,0,1]],[[2,2,2,0],[1,2,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,0],[1,2,3,2],[1,2,2,3],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[1,2,2,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[1,2,2,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[1,2,2,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[1,2,2,2],[0,1,1,2]],[[1,2,2,0],[1,2,3,2],[1,2,2,3],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[1,2,2,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[1,2,2,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[1,2,2,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,0],[1,2,3,2],[1,2,2,2],[0,0,2,2]],[[1,2,2,0],[1,2,3,2],[1,2,2,3],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[1,2,2,2],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,0],[1,2,3,2],[1,2,2,2],[0,0,2,1]],[[1,3,2,0],[1,2,3,2],[1,2,2,2],[0,0,2,1]],[[2,2,2,0],[1,2,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,0],[1,2,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,0],[1,2,3,2],[1,2,1,2],[1,0,3,1]],[[1,2,2,0],[1,2,3,2],[1,2,1,3],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[1,2,1,2],[1,0,2,1]],[[1,2,2,0],[1,2,4,2],[1,2,1,2],[1,0,2,1]],[[1,2,3,0],[1,2,3,2],[1,2,1,2],[1,0,2,1]],[[1,3,2,0],[1,2,3,2],[1,2,1,2],[1,0,2,1]],[[2,2,2,0],[1,2,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,0],[1,2,3,2],[1,2,1,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,2],[1,2,1,2],[0,1,3,1]],[[1,2,2,0],[1,2,3,2],[1,2,1,3],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[1,2,1,2],[0,1,2,1]],[[1,2,2,0],[1,2,4,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,0],[1,2,3,2],[1,2,1,2],[0,1,2,1]],[[1,3,2,0],[1,2,3,2],[1,2,1,2],[0,1,2,1]],[[2,2,2,0],[1,2,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,0],[1,2,3,2],[1,2,0,2],[0,2,2,2]],[[1,2,2,0],[1,2,3,2],[1,2,0,2],[0,2,3,1]],[[1,2,2,0],[1,2,3,2],[1,2,0,2],[0,3,2,1]],[[1,2,2,0],[1,2,3,2],[1,2,0,3],[0,2,2,1]],[[1,2,2,0],[1,2,3,3],[1,2,0,2],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[1,2,0,2],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[1,2,0,2],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[1,2,0,2],[0,2,2,1]],[[2,2,2,0],[1,2,3,2],[1,2,0,2],[0,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,0],[1,2,3,3],[1,1,3,2],[1,0,2,0]],[[1,2,2,0],[1,2,4,2],[1,1,3,2],[1,0,2,0]],[[1,2,3,0],[1,2,3,2],[1,1,3,2],[1,0,2,0]],[[1,3,2,0],[1,2,3,2],[1,1,3,2],[1,0,2,0]],[[2,2,2,0],[1,2,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,2,0],[1,2,3,2],[1,1,3,2],[1,0,1,2]],[[1,2,2,0],[1,2,3,2],[1,1,3,3],[1,0,1,1]],[[1,2,2,0],[1,2,3,3],[1,1,3,2],[1,0,1,1]],[[1,2,2,0],[1,2,4,2],[1,1,3,2],[1,0,1,1]],[[1,2,3,0],[1,2,3,2],[1,1,3,2],[1,0,1,1]],[[1,3,2,0],[1,2,3,2],[1,1,3,2],[1,0,1,1]],[[2,2,2,0],[1,2,3,2],[1,1,3,2],[1,0,1,1]],[[1,2,2,0],[1,2,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[1,1,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[1,1,3,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[1,1,3,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[1,1,3,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[1,1,3,2],[0,1,1,2]],[[1,2,2,0],[1,2,3,2],[1,1,3,3],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[1,1,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[1,1,3,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[1,1,3,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[1,1,3,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,3,2],[1,1,3,2],[0,0,2,2]],[[1,2,2,0],[1,2,3,2],[1,1,3,3],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[1,1,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[1,1,3,2],[0,0,2,1]],[[1,2,3,0],[1,2,3,2],[1,1,3,2],[0,0,2,1]],[[1,3,2,0],[1,2,3,2],[1,1,3,2],[0,0,2,1]],[[2,2,2,0],[1,2,3,2],[1,1,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,2,0],[1,2,3,2],[1,1,3,1],[0,3,2,0]],[[1,2,2,0],[1,2,3,2],[1,1,4,1],[0,2,2,0]],[[1,2,2,0],[1,2,3,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[1,2,4,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,0],[1,2,3,2],[1,1,3,1],[0,2,2,0]],[[1,3,2,0],[1,2,3,2],[1,1,3,1],[0,2,2,0]],[[2,2,2,0],[1,2,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[1,2,3,2],[1,1,4,1],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[1,1,3,1],[0,2,1,1]],[[1,2,2,0],[1,2,4,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[1,1,3,1],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[1,1,3,1],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,0],[1,2,3,2],[1,1,3,0],[0,2,2,2]],[[1,2,2,0],[1,2,3,2],[1,1,3,0],[0,2,3,1]],[[1,2,2,0],[1,2,3,2],[1,1,3,0],[0,3,2,1]],[[1,2,2,0],[1,2,3,2],[1,1,4,0],[0,2,2,1]],[[1,2,2,0],[1,2,3,3],[1,1,3,0],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[1,1,3,0],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[1,1,3,0],[0,2,2,1]],[[2,2,2,0],[1,2,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,0],[1,2,3,3],[1,1,2,2],[0,2,2,0]],[[1,2,2,0],[1,2,4,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,0],[1,2,3,2],[1,1,2,2],[0,2,2,0]],[[1,3,2,0],[1,2,3,2],[1,1,2,2],[0,2,2,0]],[[2,2,2,0],[1,2,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,0],[1,2,3,2],[1,1,2,2],[0,2,1,2]],[[1,2,2,0],[1,2,3,2],[1,1,2,3],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[1,1,2,2],[0,2,1,1]],[[1,2,2,0],[1,2,4,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[1,1,2,2],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[1,1,2,2],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,0],[1,2,3,2],[1,1,1,2],[0,2,2,2]],[[1,2,2,0],[1,2,3,2],[1,1,1,2],[0,2,3,1]],[[1,2,2,0],[1,2,3,2],[1,1,1,2],[0,3,2,1]],[[1,2,2,0],[1,2,3,2],[1,1,1,3],[0,2,2,1]],[[1,2,2,0],[1,2,3,3],[1,1,1,2],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[1,1,1,2],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[1,1,1,2],[0,2,2,1]],[[2,2,2,0],[1,2,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,1,0,2],[1,2,2,2]],[[1,2,2,0],[1,2,3,2],[1,1,0,2],[1,2,3,1]],[[1,2,2,0],[1,2,3,2],[1,1,0,2],[1,3,2,1]],[[1,2,2,0],[1,2,3,2],[1,1,0,2],[2,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,1,0,3],[1,2,2,1]],[[1,2,2,0],[1,2,3,3],[1,1,0,2],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[1,1,0,2],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[1,1,0,2],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[1,1,0,2],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[1,1,0,2],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,0],[1,2,3,3],[1,0,3,2],[0,2,2,0]],[[1,2,2,0],[1,2,4,2],[1,0,3,2],[0,2,2,0]],[[1,2,3,0],[1,2,3,2],[1,0,3,2],[0,2,2,0]],[[1,3,2,0],[1,2,3,2],[1,0,3,2],[0,2,2,0]],[[2,2,2,0],[1,2,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,2,0],[1,2,3,2],[1,0,3,2],[0,2,1,2]],[[1,2,2,0],[1,2,3,2],[1,0,3,3],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[1,0,3,2],[0,2,1,1]],[[1,2,2,0],[1,2,4,2],[1,0,3,2],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[1,0,3,2],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[1,0,3,2],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,2,0],[1,2,3,2],[1,0,3,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,2],[1,0,3,3],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[1,0,3,2],[0,1,2,1]],[[1,2,2,0],[1,2,4,2],[1,0,3,2],[0,1,2,1]],[[1,2,3,0],[1,2,3,2],[1,0,3,2],[0,1,2,1]],[[1,3,2,0],[1,2,3,2],[1,0,3,2],[0,1,2,1]],[[2,2,2,0],[1,2,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,2,0],[1,2,3,2],[1,0,3,1],[1,2,3,0]],[[1,2,2,0],[1,2,3,2],[1,0,3,1],[1,3,2,0]],[[1,2,2,0],[1,2,3,2],[1,0,3,1],[2,2,2,0]],[[1,2,2,0],[1,2,3,2],[1,0,4,1],[1,2,2,0]],[[1,2,2,0],[1,2,3,3],[1,0,3,1],[1,2,2,0]],[[1,2,2,0],[1,2,4,2],[1,0,3,1],[1,2,2,0]],[[1,2,3,0],[1,2,3,2],[1,0,3,1],[1,2,2,0]],[[1,3,2,0],[1,2,3,2],[1,0,3,1],[1,2,2,0]],[[2,2,2,0],[1,2,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,2,0],[1,2,3,2],[1,0,4,1],[1,2,1,1]],[[1,2,2,0],[1,2,3,3],[1,0,3,1],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[1,0,3,1],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[1,0,3,1],[1,2,1,1]],[[1,3,2,0],[1,2,3,2],[1,0,3,1],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,2,0],[1,2,3,2],[1,0,3,0],[1,2,2,2]],[[1,2,2,0],[1,2,3,2],[1,0,3,0],[1,2,3,1]],[[1,2,2,0],[1,2,3,2],[1,0,3,0],[1,3,2,1]],[[1,2,2,0],[1,2,3,2],[1,0,3,0],[2,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,0,4,0],[1,2,2,1]],[[1,2,2,0],[1,2,3,3],[1,0,3,0],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[1,0,3,0],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[1,0,3,0],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[1,0,3,0],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,0,2,3],[1,2,2,0]],[[1,2,2,0],[1,2,3,3],[1,0,2,2],[1,2,2,0]],[[1,2,2,0],[1,2,4,2],[1,0,2,2],[1,2,2,0]],[[1,2,3,0],[1,2,3,2],[1,0,2,2],[1,2,2,0]],[[1,3,2,0],[1,2,3,2],[1,0,2,2],[1,2,2,0]],[[2,2,2,0],[1,2,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,2,0],[1,2,3,2],[1,0,2,2],[1,2,1,2]],[[1,2,2,0],[1,2,3,2],[1,0,2,3],[1,2,1,1]],[[1,2,2,0],[1,2,3,3],[1,0,2,2],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[1,0,2,2],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[1,0,2,2],[1,2,1,1]],[[1,3,2,0],[1,2,3,2],[1,0,2,2],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,2,0],[1,2,3,2],[1,0,2,2],[0,2,2,2]],[[1,2,2,0],[1,2,3,2],[1,0,2,2],[0,2,3,1]],[[1,2,2,0],[1,2,3,2],[1,0,2,3],[0,2,2,1]],[[1,2,2,0],[1,2,3,3],[1,0,2,2],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[1,0,2,2],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[1,0,2,2],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[1,0,2,2],[0,2,2,1]],[[2,2,2,0],[1,2,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,0,1,2],[1,2,2,2]],[[1,2,2,0],[1,2,3,2],[1,0,1,2],[1,2,3,1]],[[1,2,2,0],[1,2,3,2],[1,0,1,2],[1,3,2,1]],[[1,2,2,0],[1,2,3,2],[1,0,1,2],[2,2,2,1]],[[1,2,2,0],[1,2,3,2],[1,0,1,3],[1,2,2,1]],[[1,2,2,0],[1,2,3,3],[1,0,1,2],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[1,0,1,2],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[1,0,1,2],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[1,0,1,2],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[1,0,1,2],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,0],[1,2,3,3],[0,3,3,2],[0,1,0,1]],[[1,2,2,0],[1,2,4,2],[0,3,3,2],[0,1,0,1]],[[1,2,3,0],[1,2,3,2],[0,3,3,2],[0,1,0,1]],[[1,3,2,0],[1,2,3,2],[0,3,3,2],[0,1,0,1]],[[2,2,2,0],[1,2,3,2],[0,3,3,2],[0,1,0,1]],[[1,2,2,0],[1,2,3,3],[0,3,3,1],[1,2,0,0]],[[1,2,2,0],[1,2,4,2],[0,3,3,1],[1,2,0,0]],[[1,2,3,0],[1,2,3,2],[0,3,3,1],[1,2,0,0]],[[1,3,2,0],[1,2,3,2],[0,3,3,1],[1,2,0,0]],[[2,2,2,0],[1,2,3,2],[0,3,3,1],[1,2,0,0]],[[1,2,2,0],[1,2,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,2,0],[1,2,3,3],[0,3,3,1],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[0,3,3,1],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[0,3,3,1],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[0,3,3,1],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[0,3,4,1],[0,2,0,1]],[[1,2,2,0],[1,2,3,3],[0,3,3,1],[0,2,0,1]],[[1,2,2,0],[1,2,4,2],[0,3,3,1],[0,2,0,1]],[[1,2,3,0],[1,2,3,2],[0,3,3,1],[0,2,0,1]],[[1,3,2,0],[1,2,3,2],[0,3,3,1],[0,2,0,1]],[[2,2,2,0],[1,2,3,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,0],[1,2,3,2],[0,3,3,1],[0,1,3,0]],[[1,2,2,0],[1,2,3,2],[0,3,4,1],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[0,3,3,1],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[0,3,3,1],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[0,3,3,1],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[0,3,3,1],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[0,3,3,1],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[0,3,4,1],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[0,3,3,1],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[0,3,3,1],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[0,3,3,1],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[0,3,3,1],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[0,3,3,1],[0,1,1,1]],[[1,2,2,0],[1,2,3,2],[0,3,4,1],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[0,3,3,1],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[0,3,3,1],[0,0,2,1]],[[1,2,3,0],[1,2,3,2],[0,3,3,1],[0,0,2,1]],[[1,3,2,0],[1,2,3,2],[0,3,3,1],[0,0,2,1]],[[2,2,2,0],[1,2,3,2],[0,3,3,1],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[0,3,3,0],[1,2,1,0]],[[1,2,3,0],[1,2,3,2],[0,3,3,0],[1,2,1,0]],[[1,3,2,0],[1,2,3,2],[0,3,3,0],[1,2,1,0]],[[2,2,2,0],[1,2,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,0],[1,2,4,2],[0,3,3,0],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[0,3,3,0],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[0,3,3,0],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,2,0],[1,2,3,2],[0,3,4,0],[0,2,1,1]],[[1,2,2,0],[1,2,3,3],[0,3,3,0],[0,2,1,1]],[[1,2,2,0],[1,2,4,2],[0,3,3,0],[0,2,1,1]],[[1,2,3,0],[1,2,3,2],[0,3,3,0],[0,2,1,1]],[[1,3,2,0],[1,2,3,2],[0,3,3,0],[0,2,1,1]],[[2,2,2,0],[1,2,3,2],[0,3,3,0],[0,2,1,1]],[[1,2,2,0],[1,2,3,2],[0,3,3,0],[0,1,2,2]],[[1,2,2,0],[1,2,3,2],[0,3,3,0],[0,1,3,1]],[[1,2,2,0],[1,2,3,2],[0,3,4,0],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[0,3,3,0],[0,1,2,1]],[[1,2,2,0],[1,2,4,2],[0,3,3,0],[0,1,2,1]],[[1,2,3,0],[1,2,3,2],[0,3,3,0],[0,1,2,1]],[[1,3,2,0],[1,2,3,2],[0,3,3,0],[0,1,2,1]],[[2,2,2,0],[1,2,3,2],[0,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,1],[2,0,1,2],[0,1,2,1]],[[0,2,3,1],[2,3,3,1],[2,0,1,2],[0,1,2,1]],[[0,2,2,2],[2,3,3,1],[2,0,1,2],[0,1,2,1]],[[0,2,2,1],[2,3,4,1],[2,0,1,2],[0,1,2,1]],[[0,3,2,1],[2,3,3,1],[2,0,1,2],[1,0,2,1]],[[0,2,3,1],[2,3,3,1],[2,0,1,2],[1,0,2,1]],[[0,2,2,2],[2,3,3,1],[2,0,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,4,1],[2,0,1,2],[1,0,2,1]],[[1,2,2,0],[1,2,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,0],[1,2,3,3],[0,3,2,2],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[0,3,2,2],[0,2,1,0]],[[1,2,3,0],[1,2,3,2],[0,3,2,2],[0,2,1,0]],[[1,3,2,0],[1,2,3,2],[0,3,2,2],[0,2,1,0]],[[2,2,2,0],[1,2,3,2],[0,3,2,2],[0,2,1,0]],[[0,3,2,1],[2,3,3,1],[2,0,2,2],[0,0,2,1]],[[0,2,3,1],[2,3,3,1],[2,0,2,2],[0,0,2,1]],[[0,2,2,2],[2,3,3,1],[2,0,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,4,1],[2,0,2,2],[0,0,2,1]],[[0,3,2,1],[2,3,3,1],[2,0,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,1],[2,0,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,1],[2,0,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,4,1],[2,0,2,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,1],[2,0,2,2],[0,1,2,0]],[[0,2,3,1],[2,3,3,1],[2,0,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,1],[2,0,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,4,1],[2,0,2,2],[0,1,2,0]],[[0,3,2,1],[2,3,3,1],[2,0,2,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,1],[2,0,2,2],[0,2,0,1]],[[0,2,2,2],[2,3,3,1],[2,0,2,2],[0,2,0,1]],[[0,2,2,1],[2,3,4,1],[2,0,2,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[2,0,2,2],[0,2,1,0]],[[0,2,3,1],[2,3,3,1],[2,0,2,2],[0,2,1,0]],[[0,2,2,2],[2,3,3,1],[2,0,2,2],[0,2,1,0]],[[0,2,2,1],[2,3,4,1],[2,0,2,2],[0,2,1,0]],[[1,2,2,0],[1,2,3,2],[0,3,2,2],[0,2,0,2]],[[1,2,2,0],[1,2,3,2],[0,3,2,3],[0,2,0,1]],[[1,2,2,0],[1,2,3,3],[0,3,2,2],[0,2,0,1]],[[1,2,2,0],[1,2,4,2],[0,3,2,2],[0,2,0,1]],[[1,2,3,0],[1,2,3,2],[0,3,2,2],[0,2,0,1]],[[1,3,2,0],[1,2,3,2],[0,3,2,2],[0,2,0,1]],[[2,2,2,0],[1,2,3,2],[0,3,2,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[2,0,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,1],[2,0,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,1],[2,0,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,4,1],[2,0,2,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,1],[2,0,2,2],[1,0,2,0]],[[0,2,3,1],[2,3,3,1],[2,0,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,1],[2,0,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,4,1],[2,0,2,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,1],[2,0,2,2],[1,1,0,1]],[[0,2,3,1],[2,3,3,1],[2,0,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,1],[2,0,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,4,1],[2,0,2,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,1],[2,0,2,2],[1,1,1,0]],[[0,2,3,1],[2,3,3,1],[2,0,2,2],[1,1,1,0]],[[0,2,2,2],[2,3,3,1],[2,0,2,2],[1,1,1,0]],[[0,2,2,1],[2,3,4,1],[2,0,2,2],[1,1,1,0]],[[1,2,2,0],[1,2,3,2],[0,3,2,3],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[0,3,2,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[0,3,2,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[0,3,2,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[0,3,2,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,2],[0,3,2,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[0,3,2,2],[0,1,1,2]],[[1,2,2,0],[1,2,3,2],[0,3,2,3],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[0,3,2,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[0,3,2,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[0,3,2,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[0,3,2,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,2],[0,3,2,2],[0,1,1,1]],[[1,2,2,0],[1,2,3,2],[0,3,2,2],[0,0,2,2]],[[1,2,2,0],[1,2,3,2],[0,3,2,3],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[0,3,2,2],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[0,3,2,2],[0,0,2,1]],[[1,2,3,0],[1,2,3,2],[0,3,2,2],[0,0,2,1]],[[1,3,2,0],[1,2,3,2],[0,3,2,2],[0,0,2,1]],[[2,2,2,0],[1,2,3,2],[0,3,2,2],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[0,3,2,1],[1,2,1,0]],[[1,2,2,0],[1,2,4,2],[0,3,2,1],[1,2,1,0]],[[1,2,3,0],[1,2,3,2],[0,3,2,1],[1,2,1,0]],[[1,3,2,0],[1,2,3,2],[0,3,2,1],[1,2,1,0]],[[0,3,2,1],[2,3,3,1],[2,0,3,0],[0,1,2,1]],[[0,2,3,1],[2,3,3,1],[2,0,3,0],[0,1,2,1]],[[0,2,2,2],[2,3,3,1],[2,0,3,0],[0,1,2,1]],[[0,2,2,1],[2,3,4,1],[2,0,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,1],[2,0,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,1],[2,0,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,3,1],[2,0,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,4,1],[2,0,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,1],[2,0,3,0],[1,0,2,1]],[[0,2,3,1],[2,3,3,1],[2,0,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,3,1],[2,0,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,4,1],[2,0,3,0],[1,0,2,1]],[[0,3,2,1],[2,3,3,1],[2,0,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,1],[2,0,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,3,1],[2,0,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,4,1],[2,0,3,0],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,0],[1,2,3,3],[0,3,2,1],[1,2,0,1]],[[1,2,2,0],[1,2,4,2],[0,3,2,1],[1,2,0,1]],[[1,2,3,0],[1,2,3,2],[0,3,2,1],[1,2,0,1]],[[1,3,2,0],[1,2,3,2],[0,3,2,1],[1,2,0,1]],[[2,2,2,0],[1,2,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,0],[1,2,3,3],[0,3,2,1],[1,1,2,0]],[[0,3,2,1],[2,3,3,1],[2,0,3,1],[0,0,2,1]],[[0,2,3,1],[2,3,3,1],[2,0,3,1],[0,0,2,1]],[[0,2,2,2],[2,3,3,1],[2,0,3,1],[0,0,2,1]],[[0,2,2,1],[2,3,4,1],[2,0,3,1],[0,0,2,1]],[[0,3,2,1],[2,3,3,1],[2,0,3,1],[0,1,1,1]],[[0,2,3,1],[2,3,3,1],[2,0,3,1],[0,1,1,1]],[[0,2,2,2],[2,3,3,1],[2,0,3,1],[0,1,1,1]],[[0,2,2,1],[2,3,4,1],[2,0,3,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,1],[2,0,3,1],[0,1,2,0]],[[0,2,3,1],[2,3,3,1],[2,0,3,1],[0,1,2,0]],[[0,2,2,2],[2,3,3,1],[2,0,3,1],[0,1,2,0]],[[0,2,2,1],[2,3,4,1],[2,0,3,1],[0,1,2,0]],[[0,3,2,1],[2,3,3,1],[2,0,3,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,1],[2,0,3,1],[0,2,0,1]],[[0,2,2,2],[2,3,3,1],[2,0,3,1],[0,2,0,1]],[[0,2,2,1],[2,3,4,1],[2,0,3,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[2,0,3,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,1],[2,0,3,1],[0,2,1,0]],[[0,2,2,2],[2,3,3,1],[2,0,3,1],[0,2,1,0]],[[0,2,2,1],[2,3,4,1],[2,0,3,1],[0,2,1,0]],[[1,2,2,0],[1,2,4,2],[0,3,2,1],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[0,3,2,1],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[0,3,2,1],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,0],[1,2,3,3],[0,3,2,1],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[0,3,2,1],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[0,3,2,1],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[0,3,2,1],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[0,3,2,1],[1,1,1,1]],[[0,3,2,1],[2,3,3,1],[2,0,3,1],[1,0,1,1]],[[0,2,3,1],[2,3,3,1],[2,0,3,1],[1,0,1,1]],[[0,2,2,2],[2,3,3,1],[2,0,3,1],[1,0,1,1]],[[0,2,2,1],[2,3,4,1],[2,0,3,1],[1,0,1,1]],[[0,3,2,1],[2,3,3,1],[2,0,3,1],[1,0,2,0]],[[0,2,3,1],[2,3,3,1],[2,0,3,1],[1,0,2,0]],[[0,2,2,2],[2,3,3,1],[2,0,3,1],[1,0,2,0]],[[0,2,2,1],[2,3,4,1],[2,0,3,1],[1,0,2,0]],[[0,3,2,1],[2,3,3,1],[2,0,3,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,1],[2,0,3,1],[1,1,0,1]],[[0,2,2,2],[2,3,3,1],[2,0,3,1],[1,1,0,1]],[[0,2,2,1],[2,3,4,1],[2,0,3,1],[1,1,0,1]],[[0,3,2,1],[2,3,3,1],[2,0,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,1],[2,0,3,1],[1,1,1,0]],[[0,2,2,2],[2,3,3,1],[2,0,3,1],[1,1,1,0]],[[0,2,2,1],[2,3,4,1],[2,0,3,1],[1,1,1,0]],[[1,2,2,0],[1,2,3,3],[0,3,2,0],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[0,3,2,0],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[0,3,2,0],[1,2,1,1]],[[1,3,2,0],[1,2,3,2],[0,3,2,0],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,0],[1,2,3,3],[0,3,2,0],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[0,3,2,0],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[0,3,2,0],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[0,3,2,0],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[0,3,2,0],[1,1,2,1]],[[1,2,2,0],[1,2,3,2],[0,3,1,3],[1,2,1,0]],[[1,2,2,0],[1,2,3,3],[0,3,1,2],[1,2,1,0]],[[1,2,2,0],[1,2,4,2],[0,3,1,2],[1,2,1,0]],[[1,2,3,0],[1,2,3,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,0],[1,2,3,2],[0,3,1,2],[1,2,1,0]],[[2,2,2,0],[1,2,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,0],[1,2,3,2],[0,3,1,2],[1,2,0,2]],[[1,2,2,0],[1,2,3,2],[0,3,1,3],[1,2,0,1]],[[1,2,2,0],[1,2,3,3],[0,3,1,2],[1,2,0,1]],[[1,2,2,0],[1,2,4,2],[0,3,1,2],[1,2,0,1]],[[1,2,3,0],[1,2,3,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,0],[1,2,3,2],[0,3,1,2],[1,2,0,1]],[[2,2,2,0],[1,2,3,2],[0,3,1,2],[1,2,0,1]],[[0,3,2,1],[2,3,3,1],[2,0,3,2],[0,1,0,1]],[[0,2,3,1],[2,3,3,1],[2,0,3,2],[0,1,0,1]],[[0,2,2,2],[2,3,3,1],[2,0,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,4,1],[2,0,3,2],[0,1,0,1]],[[1,2,2,0],[1,2,3,2],[0,3,1,3],[1,1,2,0]],[[1,2,2,0],[1,2,3,3],[0,3,1,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,2],[0,3,1,2],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[0,3,1,2],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[0,3,1,2],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,0],[1,2,3,2],[0,3,1,2],[1,1,1,2]],[[1,2,2,0],[1,2,3,2],[0,3,1,3],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[0,3,1,2],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[0,3,1,2],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[0,3,1,2],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[0,3,1,2],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,0],[1,2,3,2],[0,3,1,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,2],[0,3,1,2],[0,1,3,1]],[[1,2,2,0],[1,2,3,2],[0,3,1,3],[0,1,2,1]],[[1,2,2,0],[1,2,3,3],[0,3,1,2],[0,1,2,1]],[[1,2,2,0],[1,2,4,2],[0,3,1,2],[0,1,2,1]],[[1,2,3,0],[1,2,3,2],[0,3,1,2],[0,1,2,1]],[[1,3,2,0],[1,2,3,2],[0,3,1,2],[0,1,2,1]],[[2,2,2,0],[1,2,3,2],[0,3,1,2],[0,1,2,1]],[[0,3,2,1],[2,3,3,1],[2,0,3,2],[1,0,0,1]],[[0,2,3,1],[2,3,3,1],[2,0,3,2],[1,0,0,1]],[[0,2,2,2],[2,3,3,1],[2,0,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,4,1],[2,0,3,2],[1,0,0,1]],[[1,2,2,0],[1,2,3,3],[0,3,1,1],[1,2,2,0]],[[1,2,2,0],[1,2,4,2],[0,3,1,1],[1,2,2,0]],[[1,2,3,0],[1,2,3,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,0],[1,2,3,2],[0,3,1,1],[1,2,2,0]],[[2,2,2,0],[1,2,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,0],[1,2,3,3],[0,3,1,0],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[0,3,1,0],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[0,3,1,0],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[0,3,0,3],[1,2,2,0]],[[1,2,2,0],[1,2,3,3],[0,3,0,2],[1,2,2,0]],[[1,2,2,0],[1,2,4,2],[0,3,0,2],[1,2,2,0]],[[1,2,3,0],[1,2,3,2],[0,3,0,2],[1,2,2,0]],[[1,3,2,0],[1,2,3,2],[0,3,0,2],[1,2,2,0]],[[2,2,2,0],[1,2,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,0],[1,2,3,2],[0,3,0,2],[1,2,1,2]],[[1,2,2,0],[1,2,3,2],[0,3,0,3],[1,2,1,1]],[[1,2,2,0],[1,2,3,3],[0,3,0,2],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[0,3,0,2],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,0],[1,2,3,2],[0,3,0,2],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,0],[1,2,3,2],[0,3,0,2],[1,1,2,2]],[[1,2,2,0],[1,2,3,2],[0,3,0,2],[1,1,3,1]],[[1,2,2,0],[1,2,3,2],[0,3,0,3],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[0,3,0,2],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[0,3,0,2],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[0,3,0,2],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[0,3,0,2],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[0,3,0,1],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[0,3,0,1],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[0,3,0,1],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[0,3,0,1],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[0,3,0,1],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,0],[1,2,3,3],[0,2,3,2],[1,1,0,1]],[[1,2,2,0],[1,2,4,2],[0,2,3,2],[1,1,0,1]],[[1,2,3,0],[1,2,3,2],[0,2,3,2],[1,1,0,1]],[[1,3,2,0],[1,2,3,2],[0,2,3,2],[1,1,0,1]],[[2,2,2,0],[1,2,3,2],[0,2,3,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,1],[2,1,0,0],[1,2,2,1]],[[0,2,3,1],[2,3,3,1],[2,1,0,0],[1,2,2,1]],[[0,2,2,2],[2,3,3,1],[2,1,0,0],[1,2,2,1]],[[0,2,2,1],[3,3,3,1],[2,1,0,0],[1,2,2,1]],[[0,2,2,1],[2,4,3,1],[2,1,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,3,1],[3,1,0,0],[1,2,2,1]],[[0,2,2,1],[2,3,3,1],[2,1,0,0],[2,2,2,1]],[[0,2,2,1],[2,3,3,1],[2,1,0,0],[1,3,2,1]],[[0,3,2,1],[2,3,3,1],[2,1,0,1],[1,2,2,0]],[[0,2,3,1],[2,3,3,1],[2,1,0,1],[1,2,2,0]],[[0,2,2,2],[2,3,3,1],[2,1,0,1],[1,2,2,0]],[[0,2,2,1],[3,3,3,1],[2,1,0,1],[1,2,2,0]],[[0,2,2,1],[2,4,3,1],[2,1,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,3,1],[3,1,0,1],[1,2,2,0]],[[0,2,2,1],[2,3,3,1],[2,1,0,1],[2,2,2,0]],[[0,2,2,1],[2,3,3,1],[2,1,0,1],[1,3,2,0]],[[0,3,2,1],[2,3,3,1],[2,1,0,2],[1,2,0,1]],[[0,2,3,1],[2,3,3,1],[2,1,0,2],[1,2,0,1]],[[0,2,2,2],[2,3,3,1],[2,1,0,2],[1,2,0,1]],[[0,2,2,1],[3,3,3,1],[2,1,0,2],[1,2,0,1]],[[0,2,2,1],[2,4,3,1],[2,1,0,2],[1,2,0,1]],[[0,2,2,1],[2,3,3,1],[3,1,0,2],[1,2,0,1]],[[0,2,2,1],[2,3,3,1],[2,1,0,2],[2,2,0,1]],[[0,3,2,1],[2,3,3,1],[2,1,0,2],[1,2,1,0]],[[0,2,3,1],[2,3,3,1],[2,1,0,2],[1,2,1,0]],[[0,2,2,2],[2,3,3,1],[2,1,0,2],[1,2,1,0]],[[0,2,2,1],[3,3,3,1],[2,1,0,2],[1,2,1,0]],[[0,2,2,1],[2,4,3,1],[2,1,0,2],[1,2,1,0]],[[0,2,2,1],[2,3,3,1],[3,1,0,2],[1,2,1,0]],[[0,2,2,1],[2,3,3,1],[2,1,0,2],[2,2,1,0]],[[0,3,2,1],[2,3,3,1],[2,1,1,0],[1,2,1,1]],[[0,2,3,1],[2,3,3,1],[2,1,1,0],[1,2,1,1]],[[0,2,2,2],[2,3,3,1],[2,1,1,0],[1,2,1,1]],[[0,2,2,1],[3,3,3,1],[2,1,1,0],[1,2,1,1]],[[0,2,2,1],[2,4,3,1],[2,1,1,0],[1,2,1,1]],[[0,2,2,1],[2,3,3,1],[3,1,1,0],[1,2,1,1]],[[0,2,2,1],[2,3,3,1],[2,1,1,0],[2,2,1,1]],[[0,3,2,1],[2,3,3,1],[2,1,1,1],[1,2,0,1]],[[0,2,3,1],[2,3,3,1],[2,1,1,1],[1,2,0,1]],[[0,2,2,2],[2,3,3,1],[2,1,1,1],[1,2,0,1]],[[0,2,2,1],[3,3,3,1],[2,1,1,1],[1,2,0,1]],[[0,2,2,1],[2,4,3,1],[2,1,1,1],[1,2,0,1]],[[0,2,2,1],[2,3,3,1],[3,1,1,1],[1,2,0,1]],[[0,2,2,1],[2,3,3,1],[2,1,1,1],[2,2,0,1]],[[0,3,2,1],[2,3,3,1],[2,1,1,1],[1,2,1,0]],[[0,2,3,1],[2,3,3,1],[2,1,1,1],[1,2,1,0]],[[0,2,2,2],[2,3,3,1],[2,1,1,1],[1,2,1,0]],[[0,2,2,1],[3,3,3,1],[2,1,1,1],[1,2,1,0]],[[0,2,2,1],[2,4,3,1],[2,1,1,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,1],[3,1,1,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,1],[2,1,1,1],[2,2,1,0]],[[1,2,2,0],[1,2,3,2],[0,2,3,3],[0,1,2,0]],[[1,2,2,0],[1,2,3,3],[0,2,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,2],[0,2,3,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,2],[0,2,3,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,2],[0,2,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,2],[0,2,3,2],[0,1,1,2]],[[1,2,2,0],[1,2,3,2],[0,2,3,3],[0,1,1,1]],[[1,2,2,0],[1,2,3,3],[0,2,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,2],[0,2,3,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,2],[0,2,3,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,2],[0,2,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,3,2],[0,2,3,2],[0,0,2,2]],[[1,2,2,0],[1,2,3,2],[0,2,3,3],[0,0,2,1]],[[1,2,2,0],[1,2,3,3],[0,2,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,4,2],[0,2,3,2],[0,0,2,1]],[[1,2,3,0],[1,2,3,2],[0,2,3,2],[0,0,2,1]],[[1,3,2,0],[1,2,3,2],[0,2,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,2,0],[1,2,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[1,2,4,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,0],[1,2,3,2],[0,2,3,1],[1,2,1,0]],[[1,3,2,0],[1,2,3,2],[0,2,3,1],[1,2,1,0]],[[2,2,2,0],[1,2,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[1,2,3,2],[0,2,4,1],[1,2,0,1]],[[1,2,2,0],[1,2,3,3],[0,2,3,1],[1,2,0,1]],[[1,2,2,0],[1,2,4,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,0],[1,2,3,2],[0,2,3,1],[1,2,0,1]],[[1,3,2,0],[1,2,3,2],[0,2,3,1],[1,2,0,1]],[[2,2,2,0],[1,2,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,2,0],[1,2,3,2],[0,2,3,1],[1,1,3,0]],[[1,2,2,0],[1,2,3,2],[0,2,4,1],[1,1,2,0]],[[1,2,2,0],[1,2,3,3],[0,2,3,1],[1,1,2,0]],[[1,2,2,0],[1,2,4,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[0,2,3,1],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[0,2,3,1],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,2,0],[1,2,3,2],[0,2,4,1],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[0,2,3,1],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[0,2,3,1],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[0,2,3,1],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,0],[1,2,3,2],[0,2,4,1],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[0,2,3,1],[1,0,2,1]],[[1,2,2,0],[1,2,4,2],[0,2,3,1],[1,0,2,1]],[[1,2,3,0],[1,2,3,2],[0,2,3,1],[1,0,2,1]],[[1,3,2,0],[1,2,3,2],[0,2,3,1],[1,0,2,1]],[[2,2,2,0],[1,2,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,2,0],[1,2,3,2],[0,2,4,0],[1,2,1,1]],[[1,2,2,0],[1,2,3,3],[0,2,3,0],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[0,2,3,0],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[0,2,3,0],[1,2,1,1]],[[1,3,2,0],[1,2,3,2],[0,2,3,0],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,0],[1,2,3,2],[0,2,3,0],[1,1,2,2]],[[1,2,2,0],[1,2,3,2],[0,2,3,0],[1,1,3,1]],[[1,2,2,0],[1,2,3,2],[0,2,4,0],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[0,2,3,0],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[0,2,3,0],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[0,2,3,0],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,0],[1,2,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,2,0],[1,2,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[1,2,4,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,0],[1,2,3,2],[0,2,2,2],[1,2,1,0]],[[1,3,2,0],[1,2,3,2],[0,2,2,2],[1,2,1,0]],[[2,2,2,0],[1,2,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[1,2,3,2],[0,2,2,2],[1,2,0,2]],[[1,2,2,0],[1,2,3,2],[0,2,2,3],[1,2,0,1]],[[1,2,2,0],[1,2,3,3],[0,2,2,2],[1,2,0,1]],[[1,2,2,0],[1,2,4,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,0],[1,2,3,2],[0,2,2,2],[1,2,0,1]],[[1,3,2,0],[1,2,3,2],[0,2,2,2],[1,2,0,1]],[[2,2,2,0],[1,2,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,0],[1,2,3,2],[0,2,2,3],[1,1,2,0]],[[1,2,2,0],[1,2,3,3],[0,2,2,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[0,2,2,2],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[0,2,2,2],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,0],[1,2,3,2],[0,2,2,2],[1,1,1,2]],[[1,2,2,0],[1,2,3,2],[0,2,2,3],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[0,2,2,2],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[0,2,2,2],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[0,2,2,2],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,0],[1,2,3,2],[0,2,2,2],[1,0,2,2]],[[1,2,2,0],[1,2,3,2],[0,2,2,3],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[0,2,2,2],[1,0,2,1]],[[1,2,2,0],[1,2,4,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,0],[1,2,3,2],[0,2,2,2],[1,0,2,1]],[[1,3,2,0],[1,2,3,2],[0,2,2,2],[1,0,2,1]],[[2,2,2,0],[1,2,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,0],[1,2,3,2],[0,2,1,2],[1,1,2,2]],[[1,2,2,0],[1,2,3,2],[0,2,1,2],[1,1,3,1]],[[1,2,2,0],[1,2,3,2],[0,2,1,3],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[0,2,1,2],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[0,2,1,2],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[0,2,1,2],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,0],[1,2,3,2],[0,2,0,2],[1,2,2,2]],[[1,2,2,0],[1,2,3,2],[0,2,0,2],[1,2,3,1]],[[1,2,2,0],[1,2,3,2],[0,2,0,2],[1,3,2,1]],[[1,2,2,0],[1,2,3,2],[0,2,0,2],[2,2,2,1]],[[1,2,2,0],[1,2,3,2],[0,2,0,3],[1,2,2,1]],[[1,2,2,0],[1,2,3,3],[0,2,0,2],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[0,2,0,2],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[0,2,0,2],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[0,2,0,2],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,0],[1,2,3,3],[0,1,3,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,2],[0,1,3,2],[1,1,2,0]],[[1,2,3,0],[1,2,3,2],[0,1,3,2],[1,1,2,0]],[[1,3,2,0],[1,2,3,2],[0,1,3,2],[1,1,2,0]],[[2,2,2,0],[1,2,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,2,0],[1,2,3,2],[0,1,3,2],[1,1,1,2]],[[1,2,2,0],[1,2,3,2],[0,1,3,3],[1,1,1,1]],[[1,2,2,0],[1,2,3,3],[0,1,3,2],[1,1,1,1]],[[1,2,2,0],[1,2,4,2],[0,1,3,2],[1,1,1,1]],[[1,2,3,0],[1,2,3,2],[0,1,3,2],[1,1,1,1]],[[1,3,2,0],[1,2,3,2],[0,1,3,2],[1,1,1,1]],[[2,2,2,0],[1,2,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,2,0],[1,2,3,2],[0,1,3,2],[1,0,2,2]],[[1,2,2,0],[1,2,3,2],[0,1,3,3],[1,0,2,1]],[[1,2,2,0],[1,2,3,3],[0,1,3,2],[1,0,2,1]],[[1,2,2,0],[1,2,4,2],[0,1,3,2],[1,0,2,1]],[[1,2,3,0],[1,2,3,2],[0,1,3,2],[1,0,2,1]],[[1,3,2,0],[1,2,3,2],[0,1,3,2],[1,0,2,1]],[[2,2,2,0],[1,2,3,2],[0,1,3,2],[1,0,2,1]],[[1,2,2,0],[1,2,3,2],[0,1,3,1],[1,2,3,0]],[[1,2,2,0],[1,2,3,2],[0,1,3,1],[1,3,2,0]],[[1,2,2,0],[1,2,3,2],[0,1,3,1],[2,2,2,0]],[[1,2,2,0],[1,2,3,2],[0,1,4,1],[1,2,2,0]],[[1,2,2,0],[1,2,3,3],[0,1,3,1],[1,2,2,0]],[[1,2,2,0],[1,2,4,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,0],[1,2,3,2],[0,1,3,1],[1,2,2,0]],[[1,3,2,0],[1,2,3,2],[0,1,3,1],[1,2,2,0]],[[2,2,2,0],[1,2,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,0],[1,2,3,2],[0,1,4,1],[1,2,1,1]],[[1,2,2,0],[1,2,3,3],[0,1,3,1],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[0,1,3,1],[1,2,1,1]],[[1,3,2,0],[1,2,3,2],[0,1,3,1],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,0],[1,2,3,2],[0,1,3,0],[1,2,2,2]],[[1,2,2,0],[1,2,3,2],[0,1,3,0],[1,2,3,1]],[[1,2,2,0],[1,2,3,2],[0,1,3,0],[1,3,2,1]],[[1,2,2,0],[1,2,3,2],[0,1,3,0],[2,2,2,1]],[[1,2,2,0],[1,2,3,2],[0,1,4,0],[1,2,2,1]],[[1,2,2,0],[1,2,3,3],[0,1,3,0],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[0,1,3,0],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[0,1,3,0],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[0,1,2,3],[1,2,2,0]],[[1,2,2,0],[1,2,3,3],[0,1,2,2],[1,2,2,0]],[[1,2,2,0],[1,2,4,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,0],[1,2,3,2],[0,1,2,2],[1,2,2,0]],[[1,3,2,0],[1,2,3,2],[0,1,2,2],[1,2,2,0]],[[2,2,2,0],[1,2,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,0],[1,2,3,2],[0,1,2,2],[1,2,1,2]],[[1,2,2,0],[1,2,3,2],[0,1,2,3],[1,2,1,1]],[[1,2,2,0],[1,2,3,3],[0,1,2,2],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[0,1,2,2],[1,2,1,1]],[[1,3,2,0],[1,2,3,2],[0,1,2,2],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,0],[1,2,3,2],[0,1,1,2],[1,2,2,2]],[[1,2,2,0],[1,2,3,2],[0,1,1,2],[1,2,3,1]],[[1,2,2,0],[1,2,3,2],[0,1,1,2],[1,3,2,1]],[[1,2,2,0],[1,2,3,2],[0,1,1,2],[2,2,2,1]],[[1,2,2,0],[1,2,3,2],[0,1,1,3],[1,2,2,1]],[[1,2,2,0],[1,2,3,3],[0,1,1,2],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[0,1,1,2],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[0,1,1,2],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,0],[1,2,3,2],[0,0,3,3],[1,2,2,0]],[[1,2,2,0],[1,2,3,3],[0,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,2,4,2],[0,0,3,2],[1,2,2,0]],[[1,2,3,0],[1,2,3,2],[0,0,3,2],[1,2,2,0]],[[1,3,2,0],[1,2,3,2],[0,0,3,2],[1,2,2,0]],[[2,2,2,0],[1,2,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,2,3,2],[0,0,3,2],[1,2,1,2]],[[1,2,2,0],[1,2,3,2],[0,0,3,3],[1,2,1,1]],[[1,2,2,0],[1,2,3,3],[0,0,3,2],[1,2,1,1]],[[1,2,2,0],[1,2,4,2],[0,0,3,2],[1,2,1,1]],[[1,2,3,0],[1,2,3,2],[0,0,3,2],[1,2,1,1]],[[1,3,2,0],[1,2,3,2],[0,0,3,2],[1,2,1,1]],[[2,2,2,0],[1,2,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,2,0],[1,2,3,2],[0,0,3,2],[1,1,2,2]],[[1,2,2,0],[1,2,3,2],[0,0,3,3],[1,1,2,1]],[[1,2,2,0],[1,2,3,3],[0,0,3,2],[1,1,2,1]],[[1,2,2,0],[1,2,4,2],[0,0,3,2],[1,1,2,1]],[[1,2,3,0],[1,2,3,2],[0,0,3,2],[1,1,2,1]],[[1,3,2,0],[1,2,3,2],[0,0,3,2],[1,1,2,1]],[[2,2,2,0],[1,2,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,2,0],[1,2,3,2],[0,0,3,2],[0,2,2,2]],[[1,2,2,0],[1,2,3,2],[0,0,3,3],[0,2,2,1]],[[1,2,2,0],[1,2,3,3],[0,0,3,2],[0,2,2,1]],[[1,2,2,0],[1,2,4,2],[0,0,3,2],[0,2,2,1]],[[1,2,3,0],[1,2,3,2],[0,0,3,2],[0,2,2,1]],[[1,3,2,0],[1,2,3,2],[0,0,3,2],[0,2,2,1]],[[1,2,2,0],[1,2,3,2],[0,0,2,2],[1,2,2,2]],[[1,2,2,0],[1,2,3,2],[0,0,2,2],[1,2,3,1]],[[1,2,2,0],[1,2,3,2],[0,0,2,3],[1,2,2,1]],[[1,2,2,0],[1,2,3,3],[0,0,2,2],[1,2,2,1]],[[1,2,2,0],[1,2,4,2],[0,0,2,2],[1,2,2,1]],[[1,2,3,0],[1,2,3,2],[0,0,2,2],[1,2,2,1]],[[1,3,2,0],[1,2,3,2],[0,0,2,2],[1,2,2,1]],[[2,2,2,0],[1,2,3,2],[0,0,2,2],[1,2,2,1]],[[1,2,2,0],[1,2,4,1],[2,3,3,2],[1,0,0,0]],[[1,2,3,0],[1,2,3,1],[2,3,3,2],[1,0,0,0]],[[1,3,2,0],[1,2,3,1],[2,3,3,2],[1,0,0,0]],[[2,2,2,0],[1,2,3,1],[2,3,3,2],[1,0,0,0]],[[1,2,2,0],[1,2,4,1],[2,3,2,2],[1,0,1,0]],[[1,2,3,0],[1,2,3,1],[2,3,2,2],[1,0,1,0]],[[1,3,2,0],[1,2,3,1],[2,3,2,2],[1,0,1,0]],[[2,2,2,0],[1,2,3,1],[2,3,2,2],[1,0,1,0]],[[1,2,2,0],[1,2,4,1],[2,3,2,2],[1,0,0,1]],[[1,2,3,0],[1,2,3,1],[2,3,2,2],[1,0,0,1]],[[1,3,2,0],[1,2,3,1],[2,3,2,2],[1,0,0,1]],[[2,2,2,0],[1,2,3,1],[2,3,2,2],[1,0,0,1]],[[1,2,2,0],[1,2,4,1],[2,2,3,2],[1,1,0,0]],[[1,2,3,0],[1,2,3,1],[2,2,3,2],[1,1,0,0]],[[1,3,2,0],[1,2,3,1],[2,2,3,2],[1,1,0,0]],[[2,2,2,0],[1,2,3,1],[2,2,3,2],[1,1,0,0]],[[1,2,2,0],[1,2,4,1],[2,2,3,2],[0,2,0,0]],[[1,2,3,0],[1,2,3,1],[2,2,3,2],[0,2,0,0]],[[1,3,2,0],[1,2,3,1],[2,2,3,2],[0,2,0,0]],[[2,2,2,0],[1,2,3,1],[2,2,3,2],[0,2,0,0]],[[1,2,2,0],[1,2,4,1],[2,2,2,2],[1,2,0,0]],[[1,2,3,0],[1,2,3,1],[2,2,2,2],[1,2,0,0]],[[1,3,2,0],[1,2,3,1],[2,2,2,2],[1,2,0,0]],[[2,2,2,0],[1,2,3,1],[2,2,2,2],[1,2,0,0]],[[1,2,2,0],[1,2,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,3,0],[1,2,3,1],[2,2,2,2],[1,1,1,0]],[[1,3,2,0],[1,2,3,1],[2,2,2,2],[1,1,1,0]],[[2,2,2,0],[1,2,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[1,2,4,1],[2,2,2,2],[1,1,0,1]],[[1,2,3,0],[1,2,3,1],[2,2,2,2],[1,1,0,1]],[[1,3,2,0],[1,2,3,1],[2,2,2,2],[1,1,0,1]],[[2,2,2,0],[1,2,3,1],[2,2,2,2],[1,1,0,1]],[[1,2,2,0],[1,2,4,1],[2,2,2,2],[1,0,2,0]],[[1,2,3,0],[1,2,3,1],[2,2,2,2],[1,0,2,0]],[[1,3,2,0],[1,2,3,1],[2,2,2,2],[1,0,2,0]],[[2,2,2,0],[1,2,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[1,2,4,1],[2,2,2,2],[1,0,1,1]],[[1,2,3,0],[1,2,3,1],[2,2,2,2],[1,0,1,1]],[[1,3,2,0],[1,2,3,1],[2,2,2,2],[1,0,1,1]],[[2,2,2,0],[1,2,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,2,0],[1,2,4,1],[2,2,2,2],[0,2,1,0]],[[1,2,3,0],[1,2,3,1],[2,2,2,2],[0,2,1,0]],[[1,3,2,0],[1,2,3,1],[2,2,2,2],[0,2,1,0]],[[2,2,2,0],[1,2,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[1,2,4,1],[2,2,2,2],[0,2,0,1]],[[1,2,3,0],[1,2,3,1],[2,2,2,2],[0,2,0,1]],[[1,3,2,0],[1,2,3,1],[2,2,2,2],[0,2,0,1]],[[2,2,2,0],[1,2,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[1,2,4,1],[2,2,2,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,1],[2,2,2,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,1],[2,2,2,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,1],[2,2,2,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,1],[2,2,2,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,1],[2,2,2,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,1],[2,2,2,1],[1,1,1,1]],[[1,2,3,0],[1,2,3,1],[2,2,2,1],[1,1,1,1]],[[1,3,2,0],[1,2,3,1],[2,2,2,1],[1,1,1,1]],[[2,2,2,0],[1,2,3,1],[2,2,2,1],[1,1,1,1]],[[0,3,2,1],[2,3,3,1],[2,2,0,0],[0,2,2,1]],[[0,2,3,1],[2,3,3,1],[2,2,0,0],[0,2,2,1]],[[0,2,2,2],[2,3,3,1],[2,2,0,0],[0,2,2,1]],[[0,2,2,1],[3,3,3,1],[2,2,0,0],[0,2,2,1]],[[0,2,2,1],[2,4,3,1],[2,2,0,0],[0,2,2,1]],[[0,2,2,1],[2,3,3,1],[3,2,0,0],[0,2,2,1]],[[0,3,2,1],[2,3,3,1],[2,2,0,0],[1,1,2,1]],[[0,2,3,1],[2,3,3,1],[2,2,0,0],[1,1,2,1]],[[0,2,2,2],[2,3,3,1],[2,2,0,0],[1,1,2,1]],[[0,2,2,1],[3,3,3,1],[2,2,0,0],[1,1,2,1]],[[0,2,2,1],[2,4,3,1],[2,2,0,0],[1,1,2,1]],[[0,2,2,1],[2,3,3,1],[3,2,0,0],[1,1,2,1]],[[0,2,2,1],[2,3,3,1],[2,2,0,0],[2,1,2,1]],[[0,3,2,1],[2,3,3,1],[2,2,0,1],[0,2,2,0]],[[0,2,3,1],[2,3,3,1],[2,2,0,1],[0,2,2,0]],[[0,2,2,2],[2,3,3,1],[2,2,0,1],[0,2,2,0]],[[0,2,2,1],[3,3,3,1],[2,2,0,1],[0,2,2,0]],[[0,2,2,1],[2,4,3,1],[2,2,0,1],[0,2,2,0]],[[0,2,2,1],[2,3,3,1],[3,2,0,1],[0,2,2,0]],[[0,3,2,1],[2,3,3,1],[2,2,0,1],[1,1,2,0]],[[0,2,3,1],[2,3,3,1],[2,2,0,1],[1,1,2,0]],[[0,2,2,2],[2,3,3,1],[2,2,0,1],[1,1,2,0]],[[0,2,2,1],[3,3,3,1],[2,2,0,1],[1,1,2,0]],[[0,2,2,1],[2,4,3,1],[2,2,0,1],[1,1,2,0]],[[0,2,2,1],[2,3,3,1],[3,2,0,1],[1,1,2,0]],[[0,2,2,1],[2,3,3,1],[2,2,0,1],[2,1,2,0]],[[1,2,2,0],[1,2,4,1],[2,2,2,1],[1,0,2,1]],[[1,2,3,0],[1,2,3,1],[2,2,2,1],[1,0,2,1]],[[1,3,2,0],[1,2,3,1],[2,2,2,1],[1,0,2,1]],[[2,2,2,0],[1,2,3,1],[2,2,2,1],[1,0,2,1]],[[1,2,2,0],[1,2,4,1],[2,2,2,1],[0,2,1,1]],[[1,2,3,0],[1,2,3,1],[2,2,2,1],[0,2,1,1]],[[1,3,2,0],[1,2,3,1],[2,2,2,1],[0,2,1,1]],[[0,3,2,1],[2,3,3,1],[2,2,0,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,1],[2,2,0,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,1],[2,2,0,2],[0,1,1,1]],[[0,2,2,1],[3,3,3,1],[2,2,0,2],[0,1,1,1]],[[0,2,2,1],[2,4,3,1],[2,2,0,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,1],[2,2,0,2],[0,1,2,0]],[[0,2,3,1],[2,3,3,1],[2,2,0,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,1],[2,2,0,2],[0,1,2,0]],[[0,2,2,1],[3,3,3,1],[2,2,0,2],[0,1,2,0]],[[0,2,2,1],[2,4,3,1],[2,2,0,2],[0,1,2,0]],[[0,3,2,1],[2,3,3,1],[2,2,0,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,1],[2,2,0,2],[0,2,0,1]],[[0,2,2,2],[2,3,3,1],[2,2,0,2],[0,2,0,1]],[[0,2,2,1],[3,3,3,1],[2,2,0,2],[0,2,0,1]],[[0,2,2,1],[2,4,3,1],[2,2,0,2],[0,2,0,1]],[[0,2,2,1],[2,3,3,1],[3,2,0,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[2,2,0,2],[0,2,1,0]],[[0,2,3,1],[2,3,3,1],[2,2,0,2],[0,2,1,0]],[[0,2,2,2],[2,3,3,1],[2,2,0,2],[0,2,1,0]],[[0,2,2,1],[3,3,3,1],[2,2,0,2],[0,2,1,0]],[[0,2,2,1],[2,4,3,1],[2,2,0,2],[0,2,1,0]],[[0,2,2,1],[2,3,3,1],[3,2,0,2],[0,2,1,0]],[[2,2,2,0],[1,2,3,1],[2,2,2,1],[0,2,1,1]],[[1,2,2,0],[1,2,4,1],[2,2,2,1],[0,1,2,1]],[[1,2,3,0],[1,2,3,1],[2,2,2,1],[0,1,2,1]],[[1,3,2,0],[1,2,3,1],[2,2,2,1],[0,1,2,1]],[[2,2,2,0],[1,2,3,1],[2,2,2,1],[0,1,2,1]],[[0,3,2,1],[2,3,3,1],[2,2,0,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,1],[2,2,0,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,1],[2,2,0,2],[1,0,1,1]],[[0,2,2,1],[3,3,3,1],[2,2,0,2],[1,0,1,1]],[[0,2,2,1],[2,4,3,1],[2,2,0,2],[1,0,1,1]],[[0,2,2,1],[2,3,3,1],[3,2,0,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,1],[2,2,0,2],[1,0,2,0]],[[0,2,3,1],[2,3,3,1],[2,2,0,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,1],[2,2,0,2],[1,0,2,0]],[[0,2,2,1],[3,3,3,1],[2,2,0,2],[1,0,2,0]],[[0,2,2,1],[2,4,3,1],[2,2,0,2],[1,0,2,0]],[[0,2,2,1],[2,3,3,1],[3,2,0,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,1],[2,2,0,2],[1,1,0,1]],[[0,2,3,1],[2,3,3,1],[2,2,0,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,1],[2,2,0,2],[1,1,0,1]],[[0,2,2,1],[3,3,3,1],[2,2,0,2],[1,1,0,1]],[[0,2,2,1],[2,4,3,1],[2,2,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,3,1],[3,2,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,3,1],[2,2,0,2],[2,1,0,1]],[[0,3,2,1],[2,3,3,1],[2,2,0,2],[1,1,1,0]],[[0,2,3,1],[2,3,3,1],[2,2,0,2],[1,1,1,0]],[[0,2,2,2],[2,3,3,1],[2,2,0,2],[1,1,1,0]],[[0,2,2,1],[3,3,3,1],[2,2,0,2],[1,1,1,0]],[[0,2,2,1],[2,4,3,1],[2,2,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,3,1],[3,2,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,3,1],[2,2,0,2],[2,1,1,0]],[[1,2,2,0],[1,2,4,1],[2,2,1,2],[1,1,2,0]],[[1,2,3,0],[1,2,3,1],[2,2,1,2],[1,1,2,0]],[[0,3,2,1],[2,3,3,1],[2,2,0,2],[1,2,0,0]],[[0,2,3,1],[2,3,3,1],[2,2,0,2],[1,2,0,0]],[[0,2,2,2],[2,3,3,1],[2,2,0,2],[1,2,0,0]],[[0,2,2,1],[3,3,3,1],[2,2,0,2],[1,2,0,0]],[[0,2,2,1],[2,4,3,1],[2,2,0,2],[1,2,0,0]],[[0,2,2,1],[2,3,3,1],[3,2,0,2],[1,2,0,0]],[[0,2,2,1],[2,3,3,1],[2,2,0,2],[2,2,0,0]],[[1,3,2,0],[1,2,3,1],[2,2,1,2],[1,1,2,0]],[[2,2,2,0],[1,2,3,1],[2,2,1,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,1],[2,2,1,2],[0,2,2,0]],[[1,2,3,0],[1,2,3,1],[2,2,1,2],[0,2,2,0]],[[1,3,2,0],[1,2,3,1],[2,2,1,2],[0,2,2,0]],[[2,2,2,0],[1,2,3,1],[2,2,1,2],[0,2,2,0]],[[1,2,2,0],[1,2,4,1],[2,2,1,1],[1,1,2,1]],[[1,2,3,0],[1,2,3,1],[2,2,1,1],[1,1,2,1]],[[1,3,2,0],[1,2,3,1],[2,2,1,1],[1,1,2,1]],[[2,2,2,0],[1,2,3,1],[2,2,1,1],[1,1,2,1]],[[1,2,2,0],[1,2,4,1],[2,2,1,1],[0,2,2,1]],[[1,2,3,0],[1,2,3,1],[2,2,1,1],[0,2,2,1]],[[1,3,2,0],[1,2,3,1],[2,2,1,1],[0,2,2,1]],[[2,2,2,0],[1,2,3,1],[2,2,1,1],[0,2,2,1]],[[1,2,2,0],[1,2,4,1],[2,2,0,2],[1,1,2,1]],[[1,2,3,0],[1,2,3,1],[2,2,0,2],[1,1,2,1]],[[1,3,2,0],[1,2,3,1],[2,2,0,2],[1,1,2,1]],[[2,2,2,0],[1,2,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,2,0],[1,2,4,1],[2,2,0,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,1],[2,2,1,0],[0,1,2,1]],[[0,2,3,1],[2,3,3,1],[2,2,1,0],[0,1,2,1]],[[0,2,2,2],[2,3,3,1],[2,2,1,0],[0,1,2,1]],[[0,2,2,1],[3,3,3,1],[2,2,1,0],[0,1,2,1]],[[0,2,2,1],[2,4,3,1],[2,2,1,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,1],[2,2,1,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,1],[2,2,1,0],[0,2,1,1]],[[0,2,2,2],[2,3,3,1],[2,2,1,0],[0,2,1,1]],[[0,2,2,1],[3,3,3,1],[2,2,1,0],[0,2,1,1]],[[0,2,2,1],[2,4,3,1],[2,2,1,0],[0,2,1,1]],[[0,2,2,1],[2,3,3,1],[3,2,1,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,1],[2,2,1,0],[1,0,2,1]],[[0,2,3,1],[2,3,3,1],[2,2,1,0],[1,0,2,1]],[[0,2,2,2],[2,3,3,1],[2,2,1,0],[1,0,2,1]],[[0,2,2,1],[3,3,3,1],[2,2,1,0],[1,0,2,1]],[[0,2,2,1],[2,4,3,1],[2,2,1,0],[1,0,2,1]],[[0,2,2,1],[2,3,3,1],[3,2,1,0],[1,0,2,1]],[[0,3,2,1],[2,3,3,1],[2,2,1,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,1],[2,2,1,0],[1,1,1,1]],[[0,2,2,2],[2,3,3,1],[2,2,1,0],[1,1,1,1]],[[0,2,2,1],[3,3,3,1],[2,2,1,0],[1,1,1,1]],[[0,2,2,1],[2,4,3,1],[2,2,1,0],[1,1,1,1]],[[0,2,2,1],[2,3,3,1],[3,2,1,0],[1,1,1,1]],[[0,2,2,1],[2,3,3,1],[2,2,1,0],[2,1,1,1]],[[0,3,2,1],[2,3,3,1],[2,2,1,0],[1,2,0,1]],[[0,2,3,1],[2,3,3,1],[2,2,1,0],[1,2,0,1]],[[0,2,2,2],[2,3,3,1],[2,2,1,0],[1,2,0,1]],[[0,2,2,1],[3,3,3,1],[2,2,1,0],[1,2,0,1]],[[0,2,2,1],[2,4,3,1],[2,2,1,0],[1,2,0,1]],[[0,2,2,1],[2,3,3,1],[3,2,1,0],[1,2,0,1]],[[0,2,2,1],[2,3,3,1],[2,2,1,0],[2,2,0,1]],[[1,2,3,0],[1,2,3,1],[2,2,0,2],[0,2,2,1]],[[1,3,2,0],[1,2,3,1],[2,2,0,2],[0,2,2,1]],[[2,2,2,0],[1,2,3,1],[2,2,0,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,1],[2,2,1,1],[0,1,1,1]],[[0,2,3,1],[2,3,3,1],[2,2,1,1],[0,1,1,1]],[[0,2,2,2],[2,3,3,1],[2,2,1,1],[0,1,1,1]],[[0,2,2,1],[3,3,3,1],[2,2,1,1],[0,1,1,1]],[[0,2,2,1],[2,4,3,1],[2,2,1,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,1],[2,2,1,1],[0,1,2,0]],[[0,2,3,1],[2,3,3,1],[2,2,1,1],[0,1,2,0]],[[0,2,2,2],[2,3,3,1],[2,2,1,1],[0,1,2,0]],[[0,2,2,1],[3,3,3,1],[2,2,1,1],[0,1,2,0]],[[0,2,2,1],[2,4,3,1],[2,2,1,1],[0,1,2,0]],[[0,3,2,1],[2,3,3,1],[2,2,1,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,1],[2,2,1,1],[0,2,0,1]],[[0,2,2,2],[2,3,3,1],[2,2,1,1],[0,2,0,1]],[[0,2,2,1],[3,3,3,1],[2,2,1,1],[0,2,0,1]],[[0,2,2,1],[2,4,3,1],[2,2,1,1],[0,2,0,1]],[[0,2,2,1],[2,3,3,1],[3,2,1,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[2,2,1,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,1],[2,2,1,1],[0,2,1,0]],[[0,2,2,2],[2,3,3,1],[2,2,1,1],[0,2,1,0]],[[0,2,2,1],[3,3,3,1],[2,2,1,1],[0,2,1,0]],[[0,2,2,1],[2,4,3,1],[2,2,1,1],[0,2,1,0]],[[0,2,2,1],[2,3,3,1],[3,2,1,1],[0,2,1,0]],[[0,3,2,1],[2,3,3,1],[2,2,1,1],[1,0,1,1]],[[0,2,3,1],[2,3,3,1],[2,2,1,1],[1,0,1,1]],[[0,2,2,2],[2,3,3,1],[2,2,1,1],[1,0,1,1]],[[0,2,2,1],[3,3,3,1],[2,2,1,1],[1,0,1,1]],[[0,2,2,1],[2,4,3,1],[2,2,1,1],[1,0,1,1]],[[0,2,2,1],[2,3,3,1],[3,2,1,1],[1,0,1,1]],[[0,3,2,1],[2,3,3,1],[2,2,1,1],[1,0,2,0]],[[0,2,3,1],[2,3,3,1],[2,2,1,1],[1,0,2,0]],[[0,2,2,2],[2,3,3,1],[2,2,1,1],[1,0,2,0]],[[0,2,2,1],[3,3,3,1],[2,2,1,1],[1,0,2,0]],[[0,2,2,1],[2,4,3,1],[2,2,1,1],[1,0,2,0]],[[0,2,2,1],[2,3,3,1],[3,2,1,1],[1,0,2,0]],[[0,3,2,1],[2,3,3,1],[2,2,1,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,1],[2,2,1,1],[1,1,0,1]],[[0,2,2,2],[2,3,3,1],[2,2,1,1],[1,1,0,1]],[[0,2,2,1],[3,3,3,1],[2,2,1,1],[1,1,0,1]],[[0,2,2,1],[2,4,3,1],[2,2,1,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,1],[3,2,1,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,1],[2,2,1,1],[2,1,0,1]],[[0,3,2,1],[2,3,3,1],[2,2,1,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,1],[2,2,1,1],[1,1,1,0]],[[0,2,2,2],[2,3,3,1],[2,2,1,1],[1,1,1,0]],[[0,2,2,1],[3,3,3,1],[2,2,1,1],[1,1,1,0]],[[0,2,2,1],[2,4,3,1],[2,2,1,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,1],[3,2,1,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,1],[2,2,1,1],[2,1,1,0]],[[0,3,2,1],[2,3,3,1],[2,2,1,1],[1,2,0,0]],[[0,2,3,1],[2,3,3,1],[2,2,1,1],[1,2,0,0]],[[0,2,2,2],[2,3,3,1],[2,2,1,1],[1,2,0,0]],[[0,2,2,1],[3,3,3,1],[2,2,1,1],[1,2,0,0]],[[0,2,2,1],[2,4,3,1],[2,2,1,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,1],[3,2,1,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,1],[2,2,1,1],[2,2,0,0]],[[1,2,2,0],[1,2,3,1],[2,1,3,3],[1,1,1,0]],[[1,2,2,0],[1,2,3,1],[2,1,4,2],[1,1,1,0]],[[1,2,2,0],[1,2,4,1],[2,1,3,2],[1,1,1,0]],[[1,2,3,0],[1,2,3,1],[2,1,3,2],[1,1,1,0]],[[1,3,2,0],[1,2,3,1],[2,1,3,2],[1,1,1,0]],[[2,2,2,0],[1,2,3,1],[2,1,3,2],[1,1,1,0]],[[1,2,2,0],[1,2,3,1],[2,1,3,2],[1,1,0,2]],[[1,2,2,0],[1,2,3,1],[2,1,3,3],[1,1,0,1]],[[1,2,2,0],[1,2,3,1],[2,1,4,2],[1,1,0,1]],[[1,2,2,0],[1,2,4,1],[2,1,3,2],[1,1,0,1]],[[1,2,3,0],[1,2,3,1],[2,1,3,2],[1,1,0,1]],[[1,3,2,0],[1,2,3,1],[2,1,3,2],[1,1,0,1]],[[2,2,2,0],[1,2,3,1],[2,1,3,2],[1,1,0,1]],[[1,2,2,0],[1,2,3,1],[2,1,3,2],[1,0,3,0]],[[1,2,2,0],[1,2,3,1],[2,1,3,3],[1,0,2,0]],[[1,2,2,0],[1,2,3,1],[2,1,4,2],[1,0,2,0]],[[1,2,2,0],[1,2,4,1],[2,1,3,2],[1,0,2,0]],[[1,2,3,0],[1,2,3,1],[2,1,3,2],[1,0,2,0]],[[1,3,2,0],[1,2,3,1],[2,1,3,2],[1,0,2,0]],[[2,2,2,0],[1,2,3,1],[2,1,3,2],[1,0,2,0]],[[1,2,2,0],[1,2,3,1],[2,1,3,2],[1,0,1,2]],[[1,2,2,0],[1,2,3,1],[2,1,3,3],[1,0,1,1]],[[1,2,2,0],[1,2,3,1],[2,1,4,2],[1,0,1,1]],[[1,2,2,0],[1,2,4,1],[2,1,3,2],[1,0,1,1]],[[1,2,3,0],[1,2,3,1],[2,1,3,2],[1,0,1,1]],[[1,3,2,0],[1,2,3,1],[2,1,3,2],[1,0,1,1]],[[2,2,2,0],[1,2,3,1],[2,1,3,2],[1,0,1,1]],[[1,2,2,0],[1,2,3,1],[2,1,3,3],[0,2,1,0]],[[1,2,2,0],[1,2,3,1],[2,1,4,2],[0,2,1,0]],[[1,2,2,0],[1,2,4,1],[2,1,3,2],[0,2,1,0]],[[1,2,3,0],[1,2,3,1],[2,1,3,2],[0,2,1,0]],[[1,3,2,0],[1,2,3,1],[2,1,3,2],[0,2,1,0]],[[2,2,2,0],[1,2,3,1],[2,1,3,2],[0,2,1,0]],[[1,2,2,0],[1,2,3,1],[2,1,3,2],[0,2,0,2]],[[1,2,2,0],[1,2,3,1],[2,1,3,3],[0,2,0,1]],[[1,2,2,0],[1,2,3,1],[2,1,4,2],[0,2,0,1]],[[1,2,2,0],[1,2,4,1],[2,1,3,2],[0,2,0,1]],[[1,2,3,0],[1,2,3,1],[2,1,3,2],[0,2,0,1]],[[1,3,2,0],[1,2,3,1],[2,1,3,2],[0,2,0,1]],[[2,2,2,0],[1,2,3,1],[2,1,3,2],[0,2,0,1]],[[1,2,2,0],[1,2,3,1],[2,1,3,2],[0,1,3,0]],[[1,2,2,0],[1,2,3,1],[2,1,3,3],[0,1,2,0]],[[1,2,2,0],[1,2,3,1],[2,1,4,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,1],[2,1,3,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,1],[2,1,3,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,1],[2,1,3,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,1],[2,1,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,1],[2,1,3,2],[0,1,1,2]],[[1,2,2,0],[1,2,3,1],[2,1,3,3],[0,1,1,1]],[[1,2,2,0],[1,2,3,1],[2,1,4,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,1],[2,1,3,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,1],[2,1,3,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,1],[2,1,3,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,1],[2,1,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,3,1],[2,1,3,2],[0,0,2,2]],[[1,2,2,0],[1,2,3,1],[2,1,3,3],[0,0,2,1]],[[1,2,2,0],[1,2,3,1],[2,1,4,2],[0,0,2,1]],[[1,2,2,0],[1,2,4,1],[2,1,3,2],[0,0,2,1]],[[1,2,3,0],[1,2,3,1],[2,1,3,2],[0,0,2,1]],[[1,3,2,0],[1,2,3,1],[2,1,3,2],[0,0,2,1]],[[2,2,2,0],[1,2,3,1],[2,1,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,3,1],[2,1,4,1],[1,1,1,1]],[[1,2,2,0],[1,2,4,1],[2,1,3,1],[1,1,1,1]],[[1,2,3,0],[1,2,3,1],[2,1,3,1],[1,1,1,1]],[[1,3,2,0],[1,2,3,1],[2,1,3,1],[1,1,1,1]],[[2,2,2,0],[1,2,3,1],[2,1,3,1],[1,1,1,1]],[[1,2,2,0],[1,2,3,1],[2,1,3,1],[1,0,2,2]],[[1,2,2,0],[1,2,3,1],[2,1,3,1],[1,0,3,1]],[[1,2,2,0],[1,2,3,1],[2,1,4,1],[1,0,2,1]],[[1,2,2,0],[1,2,4,1],[2,1,3,1],[1,0,2,1]],[[1,2,3,0],[1,2,3,1],[2,1,3,1],[1,0,2,1]],[[1,3,2,0],[1,2,3,1],[2,1,3,1],[1,0,2,1]],[[2,2,2,0],[1,2,3,1],[2,1,3,1],[1,0,2,1]],[[1,2,2,0],[1,2,3,1],[2,1,4,1],[0,2,1,1]],[[1,2,2,0],[1,2,4,1],[2,1,3,1],[0,2,1,1]],[[1,2,3,0],[1,2,3,1],[2,1,3,1],[0,2,1,1]],[[1,3,2,0],[1,2,3,1],[2,1,3,1],[0,2,1,1]],[[2,2,2,0],[1,2,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,2,0],[1,2,3,1],[2,1,3,1],[0,1,2,2]],[[1,2,2,0],[1,2,3,1],[2,1,3,1],[0,1,3,1]],[[1,2,2,0],[1,2,3,1],[2,1,4,1],[0,1,2,1]],[[1,2,2,0],[1,2,4,1],[2,1,3,1],[0,1,2,1]],[[1,2,3,0],[1,2,3,1],[2,1,3,1],[0,1,2,1]],[[1,3,2,0],[1,2,3,1],[2,1,3,1],[0,1,2,1]],[[2,2,2,0],[1,2,3,1],[2,1,3,1],[0,1,2,1]],[[1,2,2,0],[1,2,4,1],[2,1,2,2],[1,2,1,0]],[[1,2,3,0],[1,2,3,1],[2,1,2,2],[1,2,1,0]],[[1,3,2,0],[1,2,3,1],[2,1,2,2],[1,2,1,0]],[[2,2,2,0],[1,2,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,2,0],[1,2,4,1],[2,1,2,2],[1,2,0,1]],[[1,2,3,0],[1,2,3,1],[2,1,2,2],[1,2,0,1]],[[1,3,2,0],[1,2,3,1],[2,1,2,2],[1,2,0,1]],[[2,2,2,0],[1,2,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,2,0],[1,2,3,1],[2,1,2,2],[1,0,2,2]],[[1,2,2,0],[1,2,3,1],[2,1,2,2],[1,0,3,1]],[[1,2,2,0],[1,2,3,1],[2,1,2,3],[1,0,2,1]],[[1,2,2,0],[1,2,3,1],[2,1,2,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,1],[2,1,2,2],[0,1,3,1]],[[1,2,2,0],[1,2,3,1],[2,1,2,3],[0,1,2,1]],[[1,2,2,0],[1,2,4,1],[2,1,2,1],[1,2,1,1]],[[1,2,3,0],[1,2,3,1],[2,1,2,1],[1,2,1,1]],[[1,3,2,0],[1,2,3,1],[2,1,2,1],[1,2,1,1]],[[2,2,2,0],[1,2,3,1],[2,1,2,1],[1,2,1,1]],[[0,3,2,1],[2,3,3,1],[2,2,2,1],[0,2,0,0]],[[0,2,3,1],[2,3,3,1],[2,2,2,1],[0,2,0,0]],[[0,2,2,2],[2,3,3,1],[2,2,2,1],[0,2,0,0]],[[0,2,2,1],[3,3,3,1],[2,2,2,1],[0,2,0,0]],[[0,2,2,1],[2,4,3,1],[2,2,2,1],[0,2,0,0]],[[1,2,2,0],[1,2,4,1],[2,1,1,2],[1,2,2,0]],[[1,2,3,0],[1,2,3,1],[2,1,1,2],[1,2,2,0]],[[1,3,2,0],[1,2,3,1],[2,1,1,2],[1,2,2,0]],[[2,2,2,0],[1,2,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,2,0],[1,2,4,1],[2,1,1,1],[1,2,2,1]],[[1,2,3,0],[1,2,3,1],[2,1,1,1],[1,2,2,1]],[[1,3,2,0],[1,2,3,1],[2,1,1,1],[1,2,2,1]],[[2,2,2,0],[1,2,3,1],[2,1,1,1],[1,2,2,1]],[[1,2,2,0],[1,2,4,1],[2,1,0,2],[1,2,2,1]],[[1,2,3,0],[1,2,3,1],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[1,2,3,1],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[1,2,3,1],[2,1,0,2],[1,2,2,1]],[[0,3,2,1],[2,3,3,1],[2,2,2,1],[1,1,0,0]],[[0,2,3,1],[2,3,3,1],[2,2,2,1],[1,1,0,0]],[[0,2,2,2],[2,3,3,1],[2,2,2,1],[1,1,0,0]],[[0,2,2,1],[3,3,3,1],[2,2,2,1],[1,1,0,0]],[[0,2,2,1],[2,4,3,1],[2,2,2,1],[1,1,0,0]],[[0,2,2,1],[2,3,3,1],[3,2,2,1],[1,1,0,0]],[[1,2,2,0],[1,2,3,1],[2,0,3,3],[1,2,1,0]],[[1,2,2,0],[1,2,3,1],[2,0,4,2],[1,2,1,0]],[[1,2,2,0],[1,2,4,1],[2,0,3,2],[1,2,1,0]],[[1,2,3,0],[1,2,3,1],[2,0,3,2],[1,2,1,0]],[[1,3,2,0],[1,2,3,1],[2,0,3,2],[1,2,1,0]],[[2,2,2,0],[1,2,3,1],[2,0,3,2],[1,2,1,0]],[[1,2,2,0],[1,2,3,1],[2,0,3,2],[1,2,0,2]],[[1,2,2,0],[1,2,3,1],[2,0,3,3],[1,2,0,1]],[[1,2,2,0],[1,2,3,1],[2,0,4,2],[1,2,0,1]],[[1,2,2,0],[1,2,4,1],[2,0,3,2],[1,2,0,1]],[[1,2,3,0],[1,2,3,1],[2,0,3,2],[1,2,0,1]],[[1,3,2,0],[1,2,3,1],[2,0,3,2],[1,2,0,1]],[[2,2,2,0],[1,2,3,1],[2,0,3,2],[1,2,0,1]],[[1,2,2,0],[1,2,3,1],[2,0,3,2],[1,1,3,0]],[[1,2,2,0],[1,2,3,1],[2,0,3,3],[1,1,2,0]],[[1,2,2,0],[1,2,3,1],[2,0,4,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,1],[2,0,3,2],[1,1,2,0]],[[1,2,3,0],[1,2,3,1],[2,0,3,2],[1,1,2,0]],[[1,3,2,0],[1,2,3,1],[2,0,3,2],[1,1,2,0]],[[2,2,2,0],[1,2,3,1],[2,0,3,2],[1,1,2,0]],[[1,2,2,0],[1,2,3,1],[2,0,3,2],[1,1,1,2]],[[1,2,2,0],[1,2,3,1],[2,0,3,3],[1,1,1,1]],[[1,2,2,0],[1,2,3,1],[2,0,4,2],[1,1,1,1]],[[1,2,2,0],[1,2,4,1],[2,0,3,2],[1,1,1,1]],[[1,2,3,0],[1,2,3,1],[2,0,3,2],[1,1,1,1]],[[1,3,2,0],[1,2,3,1],[2,0,3,2],[1,1,1,1]],[[2,2,2,0],[1,2,3,1],[2,0,3,2],[1,1,1,1]],[[1,2,2,0],[1,2,3,1],[2,0,3,2],[0,2,3,0]],[[1,2,2,0],[1,2,3,1],[2,0,3,2],[0,3,2,0]],[[1,2,2,0],[1,2,3,1],[2,0,3,3],[0,2,2,0]],[[1,2,2,0],[1,2,3,1],[2,0,4,2],[0,2,2,0]],[[1,2,2,0],[1,2,4,1],[2,0,3,2],[0,2,2,0]],[[1,2,3,0],[1,2,3,1],[2,0,3,2],[0,2,2,0]],[[1,3,2,0],[1,2,3,1],[2,0,3,2],[0,2,2,0]],[[2,2,2,0],[1,2,3,1],[2,0,3,2],[0,2,2,0]],[[1,2,2,0],[1,2,3,1],[2,0,3,2],[0,2,1,2]],[[1,2,2,0],[1,2,3,1],[2,0,3,3],[0,2,1,1]],[[1,2,2,0],[1,2,3,1],[2,0,4,2],[0,2,1,1]],[[1,2,2,0],[1,2,4,1],[2,0,3,2],[0,2,1,1]],[[1,2,3,0],[1,2,3,1],[2,0,3,2],[0,2,1,1]],[[1,3,2,0],[1,2,3,1],[2,0,3,2],[0,2,1,1]],[[2,2,2,0],[1,2,3,1],[2,0,3,2],[0,2,1,1]],[[1,2,2,0],[1,2,3,1],[2,0,4,1],[1,2,1,1]],[[1,2,2,0],[1,2,4,1],[2,0,3,1],[1,2,1,1]],[[1,2,3,0],[1,2,3,1],[2,0,3,1],[1,2,1,1]],[[1,3,2,0],[1,2,3,1],[2,0,3,1],[1,2,1,1]],[[2,2,2,0],[1,2,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,2,0],[1,2,3,1],[2,0,3,1],[1,1,2,2]],[[1,2,2,0],[1,2,3,1],[2,0,3,1],[1,1,3,1]],[[1,2,2,0],[1,2,3,1],[2,0,4,1],[1,1,2,1]],[[1,2,2,0],[1,2,4,1],[2,0,3,1],[1,1,2,1]],[[1,2,3,0],[1,2,3,1],[2,0,3,1],[1,1,2,1]],[[1,3,2,0],[1,2,3,1],[2,0,3,1],[1,1,2,1]],[[2,2,2,0],[1,2,3,1],[2,0,3,1],[1,1,2,1]],[[1,2,2,0],[1,2,3,1],[2,0,3,1],[0,2,2,2]],[[1,2,2,0],[1,2,3,1],[2,0,3,1],[0,2,3,1]],[[1,2,2,0],[1,2,3,1],[2,0,3,1],[0,3,2,1]],[[1,2,2,0],[1,2,3,1],[2,0,4,1],[0,2,2,1]],[[1,2,2,0],[1,2,4,1],[2,0,3,1],[0,2,2,1]],[[1,2,3,0],[1,2,3,1],[2,0,3,1],[0,2,2,1]],[[1,3,2,0],[1,2,3,1],[2,0,3,1],[0,2,2,1]],[[2,2,2,0],[1,2,3,1],[2,0,3,1],[0,2,2,1]],[[1,2,2,0],[1,2,4,1],[2,0,2,2],[1,2,2,0]],[[1,2,3,0],[1,2,3,1],[2,0,2,2],[1,2,2,0]],[[1,3,2,0],[1,2,3,1],[2,0,2,2],[1,2,2,0]],[[2,2,2,0],[1,2,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,2,0],[1,2,3,1],[2,0,2,2],[1,1,2,2]],[[1,2,2,0],[1,2,3,1],[2,0,2,2],[1,1,3,1]],[[1,2,2,0],[1,2,3,1],[2,0,2,3],[1,1,2,1]],[[1,2,2,0],[1,2,3,1],[2,0,2,2],[0,2,2,2]],[[1,2,2,0],[1,2,3,1],[2,0,2,2],[0,2,3,1]],[[1,2,2,0],[1,2,3,1],[2,0,2,2],[0,3,2,1]],[[1,2,2,0],[1,2,3,1],[2,0,2,3],[0,2,2,1]],[[1,2,2,0],[1,2,4,1],[2,0,2,1],[1,2,2,1]],[[1,2,3,0],[1,2,3,1],[2,0,2,1],[1,2,2,1]],[[1,3,2,0],[1,2,3,1],[2,0,2,1],[1,2,2,1]],[[2,2,2,0],[1,2,3,1],[2,0,2,1],[1,2,2,1]],[[1,2,2,0],[1,2,4,1],[2,0,1,2],[1,2,2,1]],[[1,2,3,0],[1,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,3,2,0],[1,2,3,1],[2,0,1,2],[1,2,2,1]],[[2,2,2,0],[1,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[1,2,4,1],[1,3,3,2],[1,1,0,0]],[[1,2,3,0],[1,2,3,1],[1,3,3,2],[1,1,0,0]],[[1,3,2,0],[1,2,3,1],[1,3,3,2],[1,1,0,0]],[[2,2,2,0],[1,2,3,1],[1,3,3,2],[1,1,0,0]],[[1,2,2,0],[1,2,4,1],[1,3,3,2],[0,2,0,0]],[[1,2,3,0],[1,2,3,1],[1,3,3,2],[0,2,0,0]],[[1,3,2,0],[1,2,3,1],[1,3,3,2],[0,2,0,0]],[[2,2,2,0],[1,2,3,1],[1,3,3,2],[0,2,0,0]],[[1,2,2,0],[1,2,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,2,0],[1,2,3,1],[1,3,4,2],[0,0,2,0]],[[1,2,2,0],[1,2,4,1],[1,3,3,2],[0,0,2,0]],[[1,2,3,0],[1,2,3,1],[1,3,3,2],[0,0,2,0]],[[1,3,2,0],[1,2,3,1],[1,3,3,2],[0,0,2,0]],[[2,2,2,0],[1,2,3,1],[1,3,3,2],[0,0,2,0]],[[1,2,2,0],[1,2,3,1],[1,3,3,2],[0,0,1,2]],[[1,2,2,0],[1,2,3,1],[1,3,3,3],[0,0,1,1]],[[1,2,2,0],[1,2,3,1],[1,3,4,2],[0,0,1,1]],[[1,2,2,0],[1,2,4,1],[1,3,3,2],[0,0,1,1]],[[1,2,3,0],[1,2,3,1],[1,3,3,2],[0,0,1,1]],[[1,3,2,0],[1,2,3,1],[1,3,3,2],[0,0,1,1]],[[2,2,2,0],[1,2,3,1],[1,3,3,2],[0,0,1,1]],[[1,2,2,0],[1,2,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,2,0],[1,2,4,1],[1,3,3,1],[0,0,2,1]],[[1,2,3,0],[1,2,3,1],[1,3,3,1],[0,0,2,1]],[[1,3,2,0],[1,2,3,1],[1,3,3,1],[0,0,2,1]],[[2,2,2,0],[1,2,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,0],[1,2,4,1],[1,3,2,2],[1,2,0,0]],[[1,2,3,0],[1,2,3,1],[1,3,2,2],[1,2,0,0]],[[1,3,2,0],[1,2,3,1],[1,3,2,2],[1,2,0,0]],[[2,2,2,0],[1,2,3,1],[1,3,2,2],[1,2,0,0]],[[1,2,2,0],[1,2,4,1],[1,3,2,2],[1,1,1,0]],[[1,2,3,0],[1,2,3,1],[1,3,2,2],[1,1,1,0]],[[1,3,2,0],[1,2,3,1],[1,3,2,2],[1,1,1,0]],[[2,2,2,0],[1,2,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[1,2,4,1],[1,3,2,2],[1,1,0,1]],[[1,2,3,0],[1,2,3,1],[1,3,2,2],[1,1,0,1]],[[1,3,2,0],[1,2,3,1],[1,3,2,2],[1,1,0,1]],[[2,2,2,0],[1,2,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,2,0],[1,2,4,1],[1,3,2,2],[1,0,2,0]],[[1,2,3,0],[1,2,3,1],[1,3,2,2],[1,0,2,0]],[[1,3,2,0],[1,2,3,1],[1,3,2,2],[1,0,2,0]],[[2,2,2,0],[1,2,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[1,2,4,1],[1,3,2,2],[1,0,1,1]],[[1,2,3,0],[1,2,3,1],[1,3,2,2],[1,0,1,1]],[[1,3,2,0],[1,2,3,1],[1,3,2,2],[1,0,1,1]],[[2,2,2,0],[1,2,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,0],[1,2,4,1],[1,3,2,2],[0,2,1,0]],[[1,2,3,0],[1,2,3,1],[1,3,2,2],[0,2,1,0]],[[1,3,2,0],[1,2,3,1],[1,3,2,2],[0,2,1,0]],[[2,2,2,0],[1,2,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[1,2,4,1],[1,3,2,2],[0,2,0,1]],[[1,2,3,0],[1,2,3,1],[1,3,2,2],[0,2,0,1]],[[1,3,2,0],[1,2,3,1],[1,3,2,2],[0,2,0,1]],[[2,2,2,0],[1,2,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[1,2,4,1],[1,3,2,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,1],[1,3,2,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,1],[1,3,2,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,1],[1,3,2,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,1],[1,3,2,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,1],[1,3,2,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,1],[1,3,2,1],[1,1,1,1]],[[1,2,3,0],[1,2,3,1],[1,3,2,1],[1,1,1,1]],[[1,3,2,0],[1,2,3,1],[1,3,2,1],[1,1,1,1]],[[2,2,2,0],[1,2,3,1],[1,3,2,1],[1,1,1,1]],[[1,2,2,0],[1,2,4,1],[1,3,2,1],[1,0,2,1]],[[1,2,3,0],[1,2,3,1],[1,3,2,1],[1,0,2,1]],[[1,3,2,0],[1,2,3,1],[1,3,2,1],[1,0,2,1]],[[2,2,2,0],[1,2,3,1],[1,3,2,1],[1,0,2,1]],[[1,2,2,0],[1,2,4,1],[1,3,2,1],[0,2,1,1]],[[1,2,3,0],[1,2,3,1],[1,3,2,1],[0,2,1,1]],[[1,3,2,0],[1,2,3,1],[1,3,2,1],[0,2,1,1]],[[2,2,2,0],[1,2,3,1],[1,3,2,1],[0,2,1,1]],[[1,2,2,0],[1,2,4,1],[1,3,2,1],[0,1,2,1]],[[1,2,3,0],[1,2,3,1],[1,3,2,1],[0,1,2,1]],[[1,3,2,0],[1,2,3,1],[1,3,2,1],[0,1,2,1]],[[2,2,2,0],[1,2,3,1],[1,3,2,1],[0,1,2,1]],[[1,2,2,0],[1,2,4,1],[1,3,1,2],[1,1,2,0]],[[1,2,3,0],[1,2,3,1],[1,3,1,2],[1,1,2,0]],[[1,3,2,0],[1,2,3,1],[1,3,1,2],[1,1,2,0]],[[2,2,2,0],[1,2,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,1],[1,3,1,2],[0,2,2,0]],[[1,2,3,0],[1,2,3,1],[1,3,1,2],[0,2,2,0]],[[1,3,2,0],[1,2,3,1],[1,3,1,2],[0,2,2,0]],[[2,2,2,0],[1,2,3,1],[1,3,1,2],[0,2,2,0]],[[1,2,2,0],[1,2,4,1],[1,3,1,1],[1,1,2,1]],[[1,2,3,0],[1,2,3,1],[1,3,1,1],[1,1,2,1]],[[1,3,2,0],[1,2,3,1],[1,3,1,1],[1,1,2,1]],[[2,2,2,0],[1,2,3,1],[1,3,1,1],[1,1,2,1]],[[1,2,2,0],[1,2,4,1],[1,3,1,1],[0,2,2,1]],[[1,2,3,0],[1,2,3,1],[1,3,1,1],[0,2,2,1]],[[1,3,2,0],[1,2,3,1],[1,3,1,1],[0,2,2,1]],[[2,2,2,0],[1,2,3,1],[1,3,1,1],[0,2,2,1]],[[1,2,2,0],[1,2,4,1],[1,3,0,2],[1,1,2,1]],[[1,2,3,0],[1,2,3,1],[1,3,0,2],[1,1,2,1]],[[1,3,2,0],[1,2,3,1],[1,3,0,2],[1,1,2,1]],[[2,2,2,0],[1,2,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[1,2,4,1],[1,3,0,2],[0,2,2,1]],[[1,2,3,0],[1,2,3,1],[1,3,0,2],[0,2,2,1]],[[1,3,2,0],[1,2,3,1],[1,3,0,2],[0,2,2,1]],[[2,2,2,0],[1,2,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[1,2,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,2,0],[1,2,3,1],[1,2,4,2],[1,1,1,0]],[[1,2,2,0],[1,2,4,1],[1,2,3,2],[1,1,1,0]],[[1,2,3,0],[1,2,3,1],[1,2,3,2],[1,1,1,0]],[[1,3,2,0],[1,2,3,1],[1,2,3,2],[1,1,1,0]],[[2,2,2,0],[1,2,3,1],[1,2,3,2],[1,1,1,0]],[[1,2,2,0],[1,2,3,1],[1,2,3,2],[1,1,0,2]],[[1,2,2,0],[1,2,3,1],[1,2,3,3],[1,1,0,1]],[[1,2,2,0],[1,2,3,1],[1,2,4,2],[1,1,0,1]],[[1,2,2,0],[1,2,4,1],[1,2,3,2],[1,1,0,1]],[[1,2,3,0],[1,2,3,1],[1,2,3,2],[1,1,0,1]],[[1,3,2,0],[1,2,3,1],[1,2,3,2],[1,1,0,1]],[[2,2,2,0],[1,2,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,2,0],[1,2,3,1],[1,2,3,2],[1,0,3,0]],[[1,2,2,0],[1,2,3,1],[1,2,3,3],[1,0,2,0]],[[1,2,2,0],[1,2,3,1],[1,2,4,2],[1,0,2,0]],[[1,2,2,0],[1,2,4,1],[1,2,3,2],[1,0,2,0]],[[1,2,3,0],[1,2,3,1],[1,2,3,2],[1,0,2,0]],[[1,3,2,0],[1,2,3,1],[1,2,3,2],[1,0,2,0]],[[2,2,2,0],[1,2,3,1],[1,2,3,2],[1,0,2,0]],[[1,2,2,0],[1,2,3,1],[1,2,3,2],[1,0,1,2]],[[1,2,2,0],[1,2,3,1],[1,2,3,3],[1,0,1,1]],[[1,2,2,0],[1,2,3,1],[1,2,4,2],[1,0,1,1]],[[1,2,2,0],[1,2,4,1],[1,2,3,2],[1,0,1,1]],[[1,2,3,0],[1,2,3,1],[1,2,3,2],[1,0,1,1]],[[1,3,2,0],[1,2,3,1],[1,2,3,2],[1,0,1,1]],[[2,2,2,0],[1,2,3,1],[1,2,3,2],[1,0,1,1]],[[1,2,2,0],[1,2,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,2,0],[1,2,3,1],[1,2,4,2],[0,2,1,0]],[[1,2,2,0],[1,2,4,1],[1,2,3,2],[0,2,1,0]],[[1,2,3,0],[1,2,3,1],[1,2,3,2],[0,2,1,0]],[[1,3,2,0],[1,2,3,1],[1,2,3,2],[0,2,1,0]],[[2,2,2,0],[1,2,3,1],[1,2,3,2],[0,2,1,0]],[[1,2,2,0],[1,2,3,1],[1,2,3,2],[0,2,0,2]],[[1,2,2,0],[1,2,3,1],[1,2,3,3],[0,2,0,1]],[[1,2,2,0],[1,2,3,1],[1,2,4,2],[0,2,0,1]],[[1,2,2,0],[1,2,4,1],[1,2,3,2],[0,2,0,1]],[[1,2,3,0],[1,2,3,1],[1,2,3,2],[0,2,0,1]],[[1,3,2,0],[1,2,3,1],[1,2,3,2],[0,2,0,1]],[[2,2,2,0],[1,2,3,1],[1,2,3,2],[0,2,0,1]],[[1,2,2,0],[1,2,3,1],[1,2,3,2],[0,1,3,0]],[[1,2,2,0],[1,2,3,1],[1,2,3,3],[0,1,2,0]],[[1,2,2,0],[1,2,3,1],[1,2,4,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,1],[1,2,3,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,1],[1,2,3,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,1],[1,2,3,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,1],[1,2,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,1],[1,2,3,2],[0,1,1,2]],[[1,2,2,0],[1,2,3,1],[1,2,3,3],[0,1,1,1]],[[1,2,2,0],[1,2,3,1],[1,2,4,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,1],[1,2,3,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,1],[1,2,3,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,1],[1,2,3,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,1],[1,2,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,3,1],[1,2,3,2],[0,0,2,2]],[[1,2,2,0],[1,2,3,1],[1,2,3,3],[0,0,2,1]],[[1,2,2,0],[1,2,3,1],[1,2,4,2],[0,0,2,1]],[[1,2,2,0],[1,2,4,1],[1,2,3,2],[0,0,2,1]],[[1,2,3,0],[1,2,3,1],[1,2,3,2],[0,0,2,1]],[[1,3,2,0],[1,2,3,1],[1,2,3,2],[0,0,2,1]],[[2,2,2,0],[1,2,3,1],[1,2,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,3,1],[1,2,4,1],[1,1,1,1]],[[1,2,2,0],[1,2,4,1],[1,2,3,1],[1,1,1,1]],[[1,2,3,0],[1,2,3,1],[1,2,3,1],[1,1,1,1]],[[1,3,2,0],[1,2,3,1],[1,2,3,1],[1,1,1,1]],[[2,2,2,0],[1,2,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,2,0],[1,2,3,1],[1,2,3,1],[1,0,2,2]],[[1,2,2,0],[1,2,3,1],[1,2,3,1],[1,0,3,1]],[[1,2,2,0],[1,2,3,1],[1,2,4,1],[1,0,2,1]],[[1,2,2,0],[1,2,4,1],[1,2,3,1],[1,0,2,1]],[[1,2,3,0],[1,2,3,1],[1,2,3,1],[1,0,2,1]],[[1,3,2,0],[1,2,3,1],[1,2,3,1],[1,0,2,1]],[[2,2,2,0],[1,2,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,2,0],[1,2,3,1],[1,2,4,1],[0,2,1,1]],[[1,2,2,0],[1,2,4,1],[1,2,3,1],[0,2,1,1]],[[1,2,3,0],[1,2,3,1],[1,2,3,1],[0,2,1,1]],[[1,3,2,0],[1,2,3,1],[1,2,3,1],[0,2,1,1]],[[2,2,2,0],[1,2,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,2,0],[1,2,3,1],[1,2,3,1],[0,1,2,2]],[[1,2,2,0],[1,2,3,1],[1,2,3,1],[0,1,3,1]],[[1,2,2,0],[1,2,3,1],[1,2,4,1],[0,1,2,1]],[[1,2,2,0],[1,2,4,1],[1,2,3,1],[0,1,2,1]],[[1,2,3,0],[1,2,3,1],[1,2,3,1],[0,1,2,1]],[[1,3,2,0],[1,2,3,1],[1,2,3,1],[0,1,2,1]],[[2,2,2,0],[1,2,3,1],[1,2,3,1],[0,1,2,1]],[[1,2,2,0],[1,2,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,2,0],[1,2,3,1],[1,2,2,2],[1,0,3,1]],[[1,2,2,0],[1,2,3,1],[1,2,2,3],[1,0,2,1]],[[1,2,2,0],[1,2,3,1],[1,2,2,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,1],[1,2,2,2],[0,1,3,1]],[[1,2,2,0],[1,2,3,1],[1,2,2,3],[0,1,2,1]],[[1,2,2,0],[1,2,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,2,0],[1,2,3,1],[1,1,3,2],[0,3,2,0]],[[1,2,2,0],[1,2,3,1],[1,1,3,3],[0,2,2,0]],[[1,2,2,0],[1,2,3,1],[1,1,4,2],[0,2,2,0]],[[1,2,2,0],[1,2,4,1],[1,1,3,2],[0,2,2,0]],[[1,2,3,0],[1,2,3,1],[1,1,3,2],[0,2,2,0]],[[1,3,2,0],[1,2,3,1],[1,1,3,2],[0,2,2,0]],[[2,2,2,0],[1,2,3,1],[1,1,3,2],[0,2,2,0]],[[1,2,2,0],[1,2,3,1],[1,1,3,2],[0,2,1,2]],[[1,2,2,0],[1,2,3,1],[1,1,3,3],[0,2,1,1]],[[1,2,2,0],[1,2,3,1],[1,1,4,2],[0,2,1,1]],[[1,2,2,0],[1,2,4,1],[1,1,3,2],[0,2,1,1]],[[1,2,3,0],[1,2,3,1],[1,1,3,2],[0,2,1,1]],[[1,3,2,0],[1,2,3,1],[1,1,3,2],[0,2,1,1]],[[2,2,2,0],[1,2,3,1],[1,1,3,2],[0,2,1,1]],[[1,2,2,0],[1,2,3,1],[1,1,3,1],[0,2,2,2]],[[1,2,2,0],[1,2,3,1],[1,1,3,1],[0,2,3,1]],[[1,2,2,0],[1,2,3,1],[1,1,3,1],[0,3,2,1]],[[1,2,2,0],[1,2,3,1],[1,1,4,1],[0,2,2,1]],[[1,2,2,0],[1,2,4,1],[1,1,3,1],[0,2,2,1]],[[1,2,3,0],[1,2,3,1],[1,1,3,1],[0,2,2,1]],[[1,3,2,0],[1,2,3,1],[1,1,3,1],[0,2,2,1]],[[2,2,2,0],[1,2,3,1],[1,1,3,1],[0,2,2,1]],[[1,2,2,0],[1,2,3,1],[1,1,2,2],[0,2,2,2]],[[1,2,2,0],[1,2,3,1],[1,1,2,2],[0,2,3,1]],[[1,2,2,0],[1,2,3,1],[1,1,2,2],[0,3,2,1]],[[1,2,2,0],[1,2,3,1],[1,1,2,3],[0,2,2,1]],[[1,2,2,0],[1,2,3,1],[1,0,3,2],[1,2,3,0]],[[1,2,2,0],[1,2,3,1],[1,0,3,2],[1,3,2,0]],[[1,2,2,0],[1,2,3,1],[1,0,3,2],[2,2,2,0]],[[1,2,2,0],[1,2,3,1],[1,0,3,3],[1,2,2,0]],[[1,2,2,0],[1,2,3,1],[1,0,4,2],[1,2,2,0]],[[1,2,2,0],[1,2,4,1],[1,0,3,2],[1,2,2,0]],[[1,2,3,0],[1,2,3,1],[1,0,3,2],[1,2,2,0]],[[1,3,2,0],[1,2,3,1],[1,0,3,2],[1,2,2,0]],[[2,2,2,0],[1,2,3,1],[1,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,2,3,1],[1,0,3,2],[1,2,1,2]],[[1,2,2,0],[1,2,3,1],[1,0,3,3],[1,2,1,1]],[[1,2,2,0],[1,2,3,1],[1,0,4,2],[1,2,1,1]],[[1,2,2,0],[1,2,4,1],[1,0,3,2],[1,2,1,1]],[[1,2,3,0],[1,2,3,1],[1,0,3,2],[1,2,1,1]],[[1,3,2,0],[1,2,3,1],[1,0,3,2],[1,2,1,1]],[[2,2,2,0],[1,2,3,1],[1,0,3,2],[1,2,1,1]],[[1,2,2,0],[1,2,3,1],[1,0,3,2],[0,2,2,2]],[[1,2,2,0],[1,2,3,1],[1,0,3,2],[0,2,3,1]],[[1,2,2,0],[1,2,3,1],[1,0,3,3],[0,2,2,1]],[[1,2,2,0],[1,2,3,1],[1,0,3,1],[1,2,2,2]],[[1,2,2,0],[1,2,3,1],[1,0,3,1],[1,2,3,1]],[[1,2,2,0],[1,2,3,1],[1,0,3,1],[1,3,2,1]],[[1,2,2,0],[1,2,3,1],[1,0,3,1],[2,2,2,1]],[[1,2,2,0],[1,2,3,1],[1,0,4,1],[1,2,2,1]],[[1,2,2,0],[1,2,4,1],[1,0,3,1],[1,2,2,1]],[[1,2,3,0],[1,2,3,1],[1,0,3,1],[1,2,2,1]],[[1,3,2,0],[1,2,3,1],[1,0,3,1],[1,2,2,1]],[[2,2,2,0],[1,2,3,1],[1,0,3,1],[1,2,2,1]],[[1,2,2,0],[1,2,3,1],[1,0,2,2],[1,2,2,2]],[[1,2,2,0],[1,2,3,1],[1,0,2,2],[1,2,3,1]],[[1,2,2,0],[1,2,3,1],[1,0,2,2],[1,3,2,1]],[[1,2,2,0],[1,2,3,1],[1,0,2,2],[2,2,2,1]],[[1,2,2,0],[1,2,3,1],[1,0,2,3],[1,2,2,1]],[[1,2,2,0],[1,2,4,1],[0,3,3,2],[1,2,0,0]],[[1,2,3,0],[1,2,3,1],[0,3,3,2],[1,2,0,0]],[[1,3,2,0],[1,2,3,1],[0,3,3,2],[1,2,0,0]],[[2,2,2,0],[1,2,3,1],[0,3,3,2],[1,2,0,0]],[[1,2,2,0],[1,2,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,2,0],[1,2,3,1],[0,3,4,2],[0,2,1,0]],[[1,2,2,0],[1,2,4,1],[0,3,3,2],[0,2,1,0]],[[1,2,3,0],[1,2,3,1],[0,3,3,2],[0,2,1,0]],[[1,3,2,0],[1,2,3,1],[0,3,3,2],[0,2,1,0]],[[2,2,2,0],[1,2,3,1],[0,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,2,3,1],[0,3,3,2],[0,2,0,2]],[[1,2,2,0],[1,2,3,1],[0,3,3,3],[0,2,0,1]],[[1,2,2,0],[1,2,3,1],[0,3,4,2],[0,2,0,1]],[[1,2,2,0],[1,2,4,1],[0,3,3,2],[0,2,0,1]],[[1,2,3,0],[1,2,3,1],[0,3,3,2],[0,2,0,1]],[[1,3,2,0],[1,2,3,1],[0,3,3,2],[0,2,0,1]],[[2,2,2,0],[1,2,3,1],[0,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,2,3,1],[0,3,3,2],[0,1,3,0]],[[1,2,2,0],[1,2,3,1],[0,3,3,3],[0,1,2,0]],[[1,2,2,0],[1,2,3,1],[0,3,4,2],[0,1,2,0]],[[1,2,2,0],[1,2,4,1],[0,3,3,2],[0,1,2,0]],[[1,2,3,0],[1,2,3,1],[0,3,3,2],[0,1,2,0]],[[1,3,2,0],[1,2,3,1],[0,3,3,2],[0,1,2,0]],[[2,2,2,0],[1,2,3,1],[0,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,3,1],[0,3,3,2],[0,1,1,2]],[[1,2,2,0],[1,2,3,1],[0,3,3,3],[0,1,1,1]],[[1,2,2,0],[1,2,3,1],[0,3,4,2],[0,1,1,1]],[[1,2,2,0],[1,2,4,1],[0,3,3,2],[0,1,1,1]],[[1,2,3,0],[1,2,3,1],[0,3,3,2],[0,1,1,1]],[[1,3,2,0],[1,2,3,1],[0,3,3,2],[0,1,1,1]],[[2,2,2,0],[1,2,3,1],[0,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,3,1],[0,3,3,2],[0,0,2,2]],[[1,2,2,0],[1,2,3,1],[0,3,3,3],[0,0,2,1]],[[1,2,2,0],[1,2,3,1],[0,3,4,2],[0,0,2,1]],[[1,2,2,0],[1,2,4,1],[0,3,3,2],[0,0,2,1]],[[1,2,3,0],[1,2,3,1],[0,3,3,2],[0,0,2,1]],[[1,3,2,0],[1,2,3,1],[0,3,3,2],[0,0,2,1]],[[2,2,2,0],[1,2,3,1],[0,3,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,3,1],[0,3,4,1],[0,2,1,1]],[[1,2,2,0],[1,2,4,1],[0,3,3,1],[0,2,1,1]],[[1,2,3,0],[1,2,3,1],[0,3,3,1],[0,2,1,1]],[[1,3,2,0],[1,2,3,1],[0,3,3,1],[0,2,1,1]],[[2,2,2,0],[1,2,3,1],[0,3,3,1],[0,2,1,1]],[[1,2,2,0],[1,2,3,1],[0,3,3,1],[0,1,2,2]],[[1,2,2,0],[1,2,3,1],[0,3,3,1],[0,1,3,1]],[[1,2,2,0],[1,2,3,1],[0,3,4,1],[0,1,2,1]],[[1,2,2,0],[1,2,4,1],[0,3,3,1],[0,1,2,1]],[[1,2,3,0],[1,2,3,1],[0,3,3,1],[0,1,2,1]],[[1,3,2,0],[1,2,3,1],[0,3,3,1],[0,1,2,1]],[[2,2,2,0],[1,2,3,1],[0,3,3,1],[0,1,2,1]],[[1,2,2,0],[1,2,4,1],[0,3,2,2],[1,2,1,0]],[[1,2,3,0],[1,2,3,1],[0,3,2,2],[1,2,1,0]],[[1,3,2,0],[1,2,3,1],[0,3,2,2],[1,2,1,0]],[[2,2,2,0],[1,2,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[1,2,4,1],[0,3,2,2],[1,2,0,1]],[[1,2,3,0],[1,2,3,1],[0,3,2,2],[1,2,0,1]],[[1,3,2,0],[1,2,3,1],[0,3,2,2],[1,2,0,1]],[[2,2,2,0],[1,2,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[1,2,4,1],[0,3,2,2],[1,1,2,0]],[[1,2,3,0],[1,2,3,1],[0,3,2,2],[1,1,2,0]],[[1,3,2,0],[1,2,3,1],[0,3,2,2],[1,1,2,0]],[[2,2,2,0],[1,2,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,1],[0,3,2,2],[1,1,1,1]],[[1,2,3,0],[1,2,3,1],[0,3,2,2],[1,1,1,1]],[[1,3,2,0],[1,2,3,1],[0,3,2,2],[1,1,1,1]],[[2,2,2,0],[1,2,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,2,0],[1,2,3,1],[0,3,2,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,1],[0,3,2,2],[0,1,3,1]],[[1,2,2,0],[1,2,3,1],[0,3,2,3],[0,1,2,1]],[[1,2,2,0],[1,2,4,1],[0,3,2,1],[1,2,1,1]],[[1,2,3,0],[1,2,3,1],[0,3,2,1],[1,2,1,1]],[[1,3,2,0],[1,2,3,1],[0,3,2,1],[1,2,1,1]],[[2,2,2,0],[1,2,3,1],[0,3,2,1],[1,2,1,1]],[[1,2,2,0],[1,2,4,1],[0,3,2,1],[1,1,2,1]],[[1,2,3,0],[1,2,3,1],[0,3,2,1],[1,1,2,1]],[[1,3,2,0],[1,2,3,1],[0,3,2,1],[1,1,2,1]],[[0,3,2,1],[2,3,3,1],[2,3,0,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,1],[2,3,0,0],[0,2,1,1]],[[0,2,2,2],[2,3,3,1],[2,3,0,0],[0,2,1,1]],[[0,2,2,1],[3,3,3,1],[2,3,0,0],[0,2,1,1]],[[0,2,2,1],[2,4,3,1],[2,3,0,0],[0,2,1,1]],[[0,2,2,1],[2,3,3,1],[3,3,0,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,1],[2,3,0,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,1],[2,3,0,0],[1,1,1,1]],[[0,2,2,2],[2,3,3,1],[2,3,0,0],[1,1,1,1]],[[0,2,2,1],[3,3,3,1],[2,3,0,0],[1,1,1,1]],[[0,2,2,1],[2,4,3,1],[2,3,0,0],[1,1,1,1]],[[0,2,2,1],[2,3,3,1],[3,3,0,0],[1,1,1,1]],[[0,2,2,1],[2,3,3,1],[2,3,0,0],[2,1,1,1]],[[0,3,2,1],[2,3,3,1],[2,3,0,0],[1,2,0,1]],[[0,2,3,1],[2,3,3,1],[2,3,0,0],[1,2,0,1]],[[0,2,2,2],[2,3,3,1],[2,3,0,0],[1,2,0,1]],[[0,2,2,1],[3,3,3,1],[2,3,0,0],[1,2,0,1]],[[0,2,2,1],[2,4,3,1],[2,3,0,0],[1,2,0,1]],[[0,2,2,1],[2,3,3,1],[3,3,0,0],[1,2,0,1]],[[0,2,2,1],[2,3,3,1],[2,3,0,0],[2,2,0,1]],[[2,2,2,0],[1,2,3,1],[0,3,2,1],[1,1,2,1]],[[0,3,2,1],[2,3,3,1],[2,3,0,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,1],[2,3,0,1],[0,2,0,1]],[[0,2,2,2],[2,3,3,1],[2,3,0,1],[0,2,0,1]],[[0,2,2,1],[3,3,3,1],[2,3,0,1],[0,2,0,1]],[[0,2,2,1],[2,4,3,1],[2,3,0,1],[0,2,0,1]],[[0,2,2,1],[2,3,3,1],[3,3,0,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,1],[2,3,0,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,1],[2,3,0,1],[0,2,1,0]],[[0,2,2,2],[2,3,3,1],[2,3,0,1],[0,2,1,0]],[[0,2,2,1],[3,3,3,1],[2,3,0,1],[0,2,1,0]],[[0,2,2,1],[2,4,3,1],[2,3,0,1],[0,2,1,0]],[[0,2,2,1],[2,3,3,1],[3,3,0,1],[0,2,1,0]],[[1,2,2,0],[1,2,4,1],[0,3,1,2],[1,2,2,0]],[[1,2,3,0],[1,2,3,1],[0,3,1,2],[1,2,2,0]],[[1,3,2,0],[1,2,3,1],[0,3,1,2],[1,2,2,0]],[[2,2,2,0],[1,2,3,1],[0,3,1,2],[1,2,2,0]],[[1,2,2,0],[1,2,4,1],[0,3,1,1],[1,2,2,1]],[[1,2,3,0],[1,2,3,1],[0,3,1,1],[1,2,2,1]],[[1,3,2,0],[1,2,3,1],[0,3,1,1],[1,2,2,1]],[[2,2,2,0],[1,2,3,1],[0,3,1,1],[1,2,2,1]],[[0,3,2,1],[2,3,3,1],[2,3,0,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,1],[2,3,0,1],[1,1,0,1]],[[0,2,2,2],[2,3,3,1],[2,3,0,1],[1,1,0,1]],[[0,2,2,1],[3,3,3,1],[2,3,0,1],[1,1,0,1]],[[0,2,2,1],[2,4,3,1],[2,3,0,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,1],[3,3,0,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,1],[2,3,0,1],[2,1,0,1]],[[0,3,2,1],[2,3,3,1],[2,3,0,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,1],[2,3,0,1],[1,1,1,0]],[[0,2,2,2],[2,3,3,1],[2,3,0,1],[1,1,1,0]],[[0,2,2,1],[3,3,3,1],[2,3,0,1],[1,1,1,0]],[[0,2,2,1],[2,4,3,1],[2,3,0,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,1],[3,3,0,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,1],[2,3,0,1],[2,1,1,0]],[[1,2,2,0],[1,2,4,1],[0,3,0,2],[1,2,2,1]],[[1,2,3,0],[1,2,3,1],[0,3,0,2],[1,2,2,1]],[[1,3,2,0],[1,2,3,1],[0,3,0,2],[1,2,2,1]],[[2,2,2,0],[1,2,3,1],[0,3,0,2],[1,2,2,1]],[[0,3,2,1],[2,3,3,1],[2,3,0,1],[1,2,0,0]],[[0,2,3,1],[2,3,3,1],[2,3,0,1],[1,2,0,0]],[[0,2,2,2],[2,3,3,1],[2,3,0,1],[1,2,0,0]],[[0,2,2,1],[3,3,3,1],[2,3,0,1],[1,2,0,0]],[[0,2,2,1],[2,4,3,1],[2,3,0,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,1],[3,3,0,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,1],[2,3,0,1],[2,2,0,0]],[[1,2,2,0],[1,2,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,2,0],[1,2,3,1],[0,2,4,2],[1,2,1,0]],[[1,2,2,0],[1,2,4,1],[0,2,3,2],[1,2,1,0]],[[1,2,3,0],[1,2,3,1],[0,2,3,2],[1,2,1,0]],[[1,3,2,0],[1,2,3,1],[0,2,3,2],[1,2,1,0]],[[2,2,2,0],[1,2,3,1],[0,2,3,2],[1,2,1,0]],[[1,2,2,0],[1,2,3,1],[0,2,3,2],[1,2,0,2]],[[1,2,2,0],[1,2,3,1],[0,2,3,3],[1,2,0,1]],[[1,2,2,0],[1,2,3,1],[0,2,4,2],[1,2,0,1]],[[1,2,2,0],[1,2,4,1],[0,2,3,2],[1,2,0,1]],[[1,2,3,0],[1,2,3,1],[0,2,3,2],[1,2,0,1]],[[1,3,2,0],[1,2,3,1],[0,2,3,2],[1,2,0,1]],[[2,2,2,0],[1,2,3,1],[0,2,3,2],[1,2,0,1]],[[1,2,2,0],[1,2,3,1],[0,2,3,2],[1,1,3,0]],[[1,2,2,0],[1,2,3,1],[0,2,3,3],[1,1,2,0]],[[1,2,2,0],[1,2,3,1],[0,2,4,2],[1,1,2,0]],[[1,2,2,0],[1,2,4,1],[0,2,3,2],[1,1,2,0]],[[1,2,3,0],[1,2,3,1],[0,2,3,2],[1,1,2,0]],[[1,3,2,0],[1,2,3,1],[0,2,3,2],[1,1,2,0]],[[2,2,2,0],[1,2,3,1],[0,2,3,2],[1,1,2,0]],[[1,2,2,0],[1,2,3,1],[0,2,3,2],[1,1,1,2]],[[1,2,2,0],[1,2,3,1],[0,2,3,3],[1,1,1,1]],[[1,2,2,0],[1,2,3,1],[0,2,4,2],[1,1,1,1]],[[1,2,2,0],[1,2,4,1],[0,2,3,2],[1,1,1,1]],[[1,2,3,0],[1,2,3,1],[0,2,3,2],[1,1,1,1]],[[1,3,2,0],[1,2,3,1],[0,2,3,2],[1,1,1,1]],[[2,2,2,0],[1,2,3,1],[0,2,3,2],[1,1,1,1]],[[1,2,2,0],[1,2,3,1],[0,2,3,2],[1,0,2,2]],[[1,2,2,0],[1,2,3,1],[0,2,3,3],[1,0,2,1]],[[1,2,2,0],[1,2,3,1],[0,2,4,2],[1,0,2,1]],[[1,2,2,0],[1,2,4,1],[0,2,3,2],[1,0,2,1]],[[1,2,3,0],[1,2,3,1],[0,2,3,2],[1,0,2,1]],[[1,3,2,0],[1,2,3,1],[0,2,3,2],[1,0,2,1]],[[2,2,2,0],[1,2,3,1],[0,2,3,2],[1,0,2,1]],[[1,2,2,0],[1,2,3,1],[0,2,4,1],[1,2,1,1]],[[1,2,2,0],[1,2,4,1],[0,2,3,1],[1,2,1,1]],[[1,2,3,0],[1,2,3,1],[0,2,3,1],[1,2,1,1]],[[1,3,2,0],[1,2,3,1],[0,2,3,1],[1,2,1,1]],[[0,3,2,1],[2,3,3,1],[2,3,0,2],[1,0,0,1]],[[0,2,3,1],[2,3,3,1],[2,3,0,2],[1,0,0,1]],[[0,2,2,2],[2,3,3,1],[2,3,0,2],[1,0,0,1]],[[0,2,2,1],[3,3,3,1],[2,3,0,2],[1,0,0,1]],[[0,2,2,1],[2,4,3,1],[2,3,0,2],[1,0,0,1]],[[0,2,2,1],[2,3,3,1],[3,3,0,2],[1,0,0,1]],[[0,3,2,1],[2,3,3,1],[2,3,0,2],[1,0,1,0]],[[0,2,3,1],[2,3,3,1],[2,3,0,2],[1,0,1,0]],[[0,2,2,2],[2,3,3,1],[2,3,0,2],[1,0,1,0]],[[0,2,2,1],[3,3,3,1],[2,3,0,2],[1,0,1,0]],[[0,2,2,1],[2,4,3,1],[2,3,0,2],[1,0,1,0]],[[0,2,2,1],[2,3,3,1],[3,3,0,2],[1,0,1,0]],[[2,2,2,0],[1,2,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,2,0],[1,2,3,1],[0,2,3,1],[1,1,2,2]],[[1,2,2,0],[1,2,3,1],[0,2,3,1],[1,1,3,1]],[[1,2,2,0],[1,2,3,1],[0,2,4,1],[1,1,2,1]],[[1,2,2,0],[1,2,4,1],[0,2,3,1],[1,1,2,1]],[[1,2,3,0],[1,2,3,1],[0,2,3,1],[1,1,2,1]],[[1,3,2,0],[1,2,3,1],[0,2,3,1],[1,1,2,1]],[[2,2,2,0],[1,2,3,1],[0,2,3,1],[1,1,2,1]],[[1,2,2,0],[1,2,3,1],[0,2,2,2],[1,1,2,2]],[[1,2,2,0],[1,2,3,1],[0,2,2,2],[1,1,3,1]],[[1,2,2,0],[1,2,3,1],[0,2,2,3],[1,1,2,1]],[[1,2,2,0],[1,2,3,1],[0,1,3,2],[1,2,3,0]],[[1,2,2,0],[1,2,3,1],[0,1,3,2],[1,3,2,0]],[[1,2,2,0],[1,2,3,1],[0,1,3,2],[2,2,2,0]],[[1,2,2,0],[1,2,3,1],[0,1,3,3],[1,2,2,0]],[[1,2,2,0],[1,2,3,1],[0,1,4,2],[1,2,2,0]],[[1,2,2,0],[1,2,4,1],[0,1,3,2],[1,2,2,0]],[[1,2,3,0],[1,2,3,1],[0,1,3,2],[1,2,2,0]],[[1,3,2,0],[1,2,3,1],[0,1,3,2],[1,2,2,0]],[[2,2,2,0],[1,2,3,1],[0,1,3,2],[1,2,2,0]],[[1,2,2,0],[1,2,3,1],[0,1,3,2],[1,2,1,2]],[[1,2,2,0],[1,2,3,1],[0,1,3,3],[1,2,1,1]],[[1,2,2,0],[1,2,3,1],[0,1,4,2],[1,2,1,1]],[[1,2,2,0],[1,2,4,1],[0,1,3,2],[1,2,1,1]],[[1,2,3,0],[1,2,3,1],[0,1,3,2],[1,2,1,1]],[[1,3,2,0],[1,2,3,1],[0,1,3,2],[1,2,1,1]],[[2,2,2,0],[1,2,3,1],[0,1,3,2],[1,2,1,1]],[[1,2,2,0],[1,2,3,1],[0,1,3,1],[1,2,2,2]],[[1,2,2,0],[1,2,3,1],[0,1,3,1],[1,2,3,1]],[[1,2,2,0],[1,2,3,1],[0,1,3,1],[1,3,2,1]],[[1,2,2,0],[1,2,3,1],[0,1,3,1],[2,2,2,1]],[[1,2,2,0],[1,2,3,1],[0,1,4,1],[1,2,2,1]],[[1,2,2,0],[1,2,4,1],[0,1,3,1],[1,2,2,1]],[[1,2,3,0],[1,2,3,1],[0,1,3,1],[1,2,2,1]],[[1,3,2,0],[1,2,3,1],[0,1,3,1],[1,2,2,1]],[[2,2,2,0],[1,2,3,1],[0,1,3,1],[1,2,2,1]],[[1,2,2,0],[1,2,3,1],[0,1,2,2],[1,2,2,2]],[[1,2,2,0],[1,2,3,1],[0,1,2,2],[1,2,3,1]],[[1,2,2,0],[1,2,3,1],[0,1,2,2],[1,3,2,1]],[[1,2,2,0],[1,2,3,1],[0,1,2,2],[2,2,2,1]],[[1,2,2,0],[1,2,3,1],[0,1,2,3],[1,2,2,1]],[[1,2,2,0],[1,2,3,1],[0,0,3,2],[1,2,2,2]],[[1,2,2,0],[1,2,3,1],[0,0,3,2],[1,2,3,1]],[[1,2,2,0],[1,2,3,1],[0,0,3,3],[1,2,2,1]],[[1,2,2,0],[1,2,3,0],[2,1,3,2],[1,0,2,2]],[[1,2,2,0],[1,2,3,0],[2,1,3,2],[1,0,3,1]],[[1,2,2,0],[1,2,3,0],[2,1,4,2],[1,0,2,1]],[[1,2,2,0],[1,2,3,0],[2,1,3,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,0],[2,1,3,2],[0,1,3,1]],[[1,2,2,0],[1,2,3,0],[2,1,4,2],[0,1,2,1]],[[1,2,2,0],[1,2,3,0],[2,0,3,2],[1,1,2,2]],[[1,2,2,0],[1,2,3,0],[2,0,3,2],[1,1,3,1]],[[1,2,2,0],[1,2,3,0],[2,0,4,2],[1,1,2,1]],[[1,2,2,0],[1,2,3,0],[2,0,3,2],[0,2,2,2]],[[1,2,2,0],[1,2,3,0],[2,0,3,2],[0,2,3,1]],[[1,2,2,0],[1,2,3,0],[2,0,3,2],[0,3,2,1]],[[1,2,2,0],[1,2,3,0],[2,0,4,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,1],[2,3,1,0],[1,0,1,1]],[[0,2,3,1],[2,3,3,1],[2,3,1,0],[1,0,1,1]],[[0,2,2,2],[2,3,3,1],[2,3,1,0],[1,0,1,1]],[[0,2,2,1],[3,3,3,1],[2,3,1,0],[1,0,1,1]],[[0,2,2,1],[2,4,3,1],[2,3,1,0],[1,0,1,1]],[[0,2,2,1],[2,3,3,1],[3,3,1,0],[1,0,1,1]],[[1,2,2,0],[1,2,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,2,0],[1,2,3,0],[1,2,3,2],[1,0,3,1]],[[1,2,2,0],[1,2,3,0],[1,2,4,2],[1,0,2,1]],[[1,2,2,0],[1,2,3,0],[1,2,3,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,0],[1,2,3,2],[0,1,3,1]],[[1,2,2,0],[1,2,3,0],[1,2,4,2],[0,1,2,1]],[[1,2,2,0],[1,2,3,0],[1,1,3,2],[0,2,2,2]],[[1,2,2,0],[1,2,3,0],[1,1,3,2],[0,2,3,1]],[[1,2,2,0],[1,2,3,0],[1,1,3,2],[0,3,2,1]],[[1,2,2,0],[1,2,3,0],[1,1,4,2],[0,2,2,1]],[[1,2,2,0],[1,2,3,0],[1,0,3,2],[1,2,2,2]],[[1,2,2,0],[1,2,3,0],[1,0,3,2],[1,2,3,1]],[[1,2,2,0],[1,2,3,0],[1,0,3,2],[1,3,2,1]],[[1,2,2,0],[1,2,3,0],[1,0,3,2],[2,2,2,1]],[[1,2,2,0],[1,2,3,0],[1,0,4,2],[1,2,2,1]],[[1,2,2,0],[1,2,3,0],[0,3,3,2],[0,1,2,2]],[[1,2,2,0],[1,2,3,0],[0,3,3,2],[0,1,3,1]],[[1,2,2,0],[1,2,3,0],[0,3,4,2],[0,1,2,1]],[[1,2,2,0],[1,2,3,0],[0,2,3,2],[1,1,2,2]],[[1,2,2,0],[1,2,3,0],[0,2,3,2],[1,1,3,1]],[[1,2,2,0],[1,2,3,0],[0,2,4,2],[1,1,2,1]],[[1,2,2,0],[1,2,3,0],[0,1,3,2],[1,2,2,2]],[[0,3,2,1],[2,3,3,1],[2,3,1,1],[1,0,0,1]],[[0,2,3,1],[2,3,3,1],[2,3,1,1],[1,0,0,1]],[[0,2,2,2],[2,3,3,1],[2,3,1,1],[1,0,0,1]],[[0,2,2,1],[3,3,3,1],[2,3,1,1],[1,0,0,1]],[[0,2,2,1],[2,4,3,1],[2,3,1,1],[1,0,0,1]],[[0,2,2,1],[2,3,3,1],[3,3,1,1],[1,0,0,1]],[[0,3,2,1],[2,3,3,1],[2,3,1,1],[1,0,1,0]],[[0,2,3,1],[2,3,3,1],[2,3,1,1],[1,0,1,0]],[[0,2,2,2],[2,3,3,1],[2,3,1,1],[1,0,1,0]],[[0,2,2,1],[3,3,3,1],[2,3,1,1],[1,0,1,0]],[[0,2,2,1],[2,4,3,1],[2,3,1,1],[1,0,1,0]],[[0,2,2,1],[2,3,3,1],[3,3,1,1],[1,0,1,0]],[[1,2,2,0],[1,2,3,0],[0,1,3,2],[1,2,3,1]],[[1,2,2,0],[1,2,3,0],[0,1,3,2],[1,3,2,1]],[[1,2,2,0],[1,2,3,0],[0,1,3,2],[2,2,2,1]],[[1,2,2,0],[1,2,3,0],[0,1,4,2],[1,2,2,1]],[[1,2,2,0],[1,2,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,0],[1,2,2,2],[2,1,4,2],[1,1,1,0]],[[1,2,2,0],[1,2,2,3],[2,1,3,2],[1,1,1,0]],[[1,2,2,0],[1,2,2,2],[2,1,3,2],[1,1,0,2]],[[1,2,2,0],[1,2,2,2],[2,1,3,3],[1,1,0,1]],[[1,2,2,0],[1,2,2,2],[2,1,4,2],[1,1,0,1]],[[1,2,2,0],[1,2,2,3],[2,1,3,2],[1,1,0,1]],[[1,2,2,0],[1,2,2,2],[2,1,3,2],[1,0,3,0]],[[1,2,2,0],[1,2,2,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,0],[1,2,2,2],[2,1,4,2],[1,0,2,0]],[[1,2,2,0],[1,2,2,3],[2,1,3,2],[1,0,2,0]],[[1,2,2,0],[1,2,2,2],[2,1,3,2],[1,0,1,2]],[[1,2,2,0],[1,2,2,2],[2,1,3,3],[1,0,1,1]],[[1,2,2,0],[1,2,2,2],[2,1,4,2],[1,0,1,1]],[[1,2,2,0],[1,2,2,3],[2,1,3,2],[1,0,1,1]],[[1,2,2,0],[1,2,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,2,0],[1,2,2,2],[2,1,4,2],[0,2,1,0]],[[1,2,2,0],[1,2,2,3],[2,1,3,2],[0,2,1,0]],[[1,2,2,0],[1,2,2,2],[2,1,3,2],[0,2,0,2]],[[1,2,2,0],[1,2,2,2],[2,1,3,3],[0,2,0,1]],[[1,2,2,0],[1,2,2,2],[2,1,4,2],[0,2,0,1]],[[1,2,2,0],[1,2,2,3],[2,1,3,2],[0,2,0,1]],[[1,2,2,0],[1,2,2,2],[2,1,3,2],[0,1,3,0]],[[1,2,2,0],[1,2,2,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,0],[1,2,2,2],[2,1,4,2],[0,1,2,0]],[[1,2,2,0],[1,2,2,3],[2,1,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,2,2],[2,1,3,2],[0,1,1,2]],[[1,2,2,0],[1,2,2,2],[2,1,3,3],[0,1,1,1]],[[1,2,2,0],[1,2,2,2],[2,1,4,2],[0,1,1,1]],[[1,2,2,0],[1,2,2,3],[2,1,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,2,2],[2,1,3,2],[0,0,2,2]],[[1,2,2,0],[1,2,2,2],[2,1,3,3],[0,0,2,1]],[[1,2,2,0],[1,2,2,2],[2,1,4,2],[0,0,2,1]],[[1,2,2,0],[1,2,2,3],[2,1,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,2,2],[2,1,3,1],[1,0,2,2]],[[1,2,2,0],[1,2,2,2],[2,1,3,1],[1,0,3,1]],[[1,2,2,0],[1,2,2,2],[2,1,4,1],[1,0,2,1]],[[1,2,2,0],[1,2,2,2],[2,1,3,1],[0,1,2,2]],[[1,2,2,0],[1,2,2,2],[2,1,3,1],[0,1,3,1]],[[1,2,2,0],[1,2,2,2],[2,1,4,1],[0,1,2,1]],[[1,2,2,0],[1,2,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,0],[1,2,2,2],[2,1,2,2],[1,0,3,1]],[[1,2,2,0],[1,2,2,2],[2,1,2,3],[1,0,2,1]],[[1,2,2,0],[1,2,2,3],[2,1,2,2],[1,0,2,1]],[[1,2,2,0],[1,2,2,2],[2,1,2,2],[0,1,2,2]],[[1,2,2,0],[1,2,2,2],[2,1,2,2],[0,1,3,1]],[[1,2,2,0],[1,2,2,2],[2,1,2,3],[0,1,2,1]],[[1,2,2,0],[1,2,2,3],[2,1,2,2],[0,1,2,1]],[[1,2,2,0],[1,2,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,0],[1,2,2,2],[2,0,4,2],[1,2,1,0]],[[1,2,2,0],[1,2,2,3],[2,0,3,2],[1,2,1,0]],[[1,2,2,0],[1,2,2,2],[2,0,3,2],[1,2,0,2]],[[1,2,2,0],[1,2,2,2],[2,0,3,3],[1,2,0,1]],[[1,2,2,0],[1,2,2,2],[2,0,4,2],[1,2,0,1]],[[1,2,2,0],[1,2,2,3],[2,0,3,2],[1,2,0,1]],[[1,2,2,0],[1,2,2,2],[2,0,3,2],[1,1,3,0]],[[1,2,2,0],[1,2,2,2],[2,0,3,3],[1,1,2,0]],[[1,2,2,0],[1,2,2,2],[2,0,4,2],[1,1,2,0]],[[1,2,2,0],[1,2,2,3],[2,0,3,2],[1,1,2,0]],[[1,2,2,0],[1,2,2,2],[2,0,3,2],[1,1,1,2]],[[1,2,2,0],[1,2,2,2],[2,0,3,3],[1,1,1,1]],[[1,2,2,0],[1,2,2,2],[2,0,4,2],[1,1,1,1]],[[1,2,2,0],[1,2,2,3],[2,0,3,2],[1,1,1,1]],[[1,2,2,0],[1,2,2,2],[2,0,3,2],[0,2,3,0]],[[1,2,2,0],[1,2,2,2],[2,0,3,2],[0,3,2,0]],[[1,2,2,0],[1,2,2,2],[2,0,3,3],[0,2,2,0]],[[1,2,2,0],[1,2,2,2],[2,0,4,2],[0,2,2,0]],[[1,2,2,0],[1,2,2,3],[2,0,3,2],[0,2,2,0]],[[1,2,2,0],[1,2,2,2],[2,0,3,2],[0,2,1,2]],[[1,2,2,0],[1,2,2,2],[2,0,3,3],[0,2,1,1]],[[1,2,2,0],[1,2,2,2],[2,0,4,2],[0,2,1,1]],[[1,2,2,0],[1,2,2,3],[2,0,3,2],[0,2,1,1]],[[1,2,2,0],[1,2,2,2],[2,0,3,1],[1,1,2,2]],[[1,2,2,0],[1,2,2,2],[2,0,3,1],[1,1,3,1]],[[1,2,2,0],[1,2,2,2],[2,0,4,1],[1,1,2,1]],[[1,2,2,0],[1,2,2,2],[2,0,3,1],[0,2,2,2]],[[1,2,2,0],[1,2,2,2],[2,0,3,1],[0,2,3,1]],[[1,2,2,0],[1,2,2,2],[2,0,3,1],[0,3,2,1]],[[1,2,2,0],[1,2,2,2],[2,0,4,1],[0,2,2,1]],[[1,2,2,0],[1,2,2,2],[2,0,2,2],[1,1,2,2]],[[1,2,2,0],[1,2,2,2],[2,0,2,2],[1,1,3,1]],[[1,2,2,0],[1,2,2,2],[2,0,2,3],[1,1,2,1]],[[1,2,2,0],[1,2,2,3],[2,0,2,2],[1,1,2,1]],[[1,2,2,0],[1,2,2,2],[2,0,2,2],[0,2,2,2]],[[1,2,2,0],[1,2,2,2],[2,0,2,2],[0,2,3,1]],[[1,2,2,0],[1,2,2,2],[2,0,2,2],[0,3,2,1]],[[1,2,2,0],[1,2,2,2],[2,0,2,3],[0,2,2,1]],[[1,2,2,0],[1,2,2,3],[2,0,2,2],[0,2,2,1]],[[1,2,2,0],[1,2,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,0],[1,2,2,2],[1,3,4,2],[0,0,2,0]],[[1,2,2,0],[1,2,2,3],[1,3,3,2],[0,0,2,0]],[[1,2,2,0],[1,2,2,2],[1,3,3,2],[0,0,1,2]],[[1,2,2,0],[1,2,2,2],[1,3,3,3],[0,0,1,1]],[[1,2,2,0],[1,2,2,2],[1,3,4,2],[0,0,1,1]],[[1,2,2,0],[1,2,2,3],[1,3,3,2],[0,0,1,1]],[[1,2,2,0],[1,2,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,0],[1,2,2,2],[1,2,4,2],[1,1,1,0]],[[1,2,2,0],[1,2,2,3],[1,2,3,2],[1,1,1,0]],[[1,2,2,0],[1,2,2,2],[1,2,3,2],[1,1,0,2]],[[1,2,2,0],[1,2,2,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,0],[1,2,2,2],[1,2,4,2],[1,1,0,1]],[[1,2,2,0],[1,2,2,3],[1,2,3,2],[1,1,0,1]],[[1,2,2,0],[1,2,2,2],[1,2,3,2],[1,0,3,0]],[[1,2,2,0],[1,2,2,2],[1,2,3,3],[1,0,2,0]],[[1,2,2,0],[1,2,2,2],[1,2,4,2],[1,0,2,0]],[[1,2,2,0],[1,2,2,3],[1,2,3,2],[1,0,2,0]],[[1,2,2,0],[1,2,2,2],[1,2,3,2],[1,0,1,2]],[[1,2,2,0],[1,2,2,2],[1,2,3,3],[1,0,1,1]],[[1,2,2,0],[1,2,2,2],[1,2,4,2],[1,0,1,1]],[[1,2,2,0],[1,2,2,3],[1,2,3,2],[1,0,1,1]],[[1,2,2,0],[1,2,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,0],[1,2,2,2],[1,2,4,2],[0,2,1,0]],[[1,2,2,0],[1,2,2,3],[1,2,3,2],[0,2,1,0]],[[1,2,2,0],[1,2,2,2],[1,2,3,2],[0,2,0,2]],[[1,2,2,0],[1,2,2,2],[1,2,3,3],[0,2,0,1]],[[1,2,2,0],[1,2,2,2],[1,2,4,2],[0,2,0,1]],[[1,2,2,0],[1,2,2,3],[1,2,3,2],[0,2,0,1]],[[1,2,2,0],[1,2,2,2],[1,2,3,2],[0,1,3,0]],[[1,2,2,0],[1,2,2,2],[1,2,3,3],[0,1,2,0]],[[1,2,2,0],[1,2,2,2],[1,2,4,2],[0,1,2,0]],[[1,2,2,0],[1,2,2,3],[1,2,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,2,2],[1,2,3,2],[0,1,1,2]],[[1,2,2,0],[1,2,2,2],[1,2,3,3],[0,1,1,1]],[[1,2,2,0],[1,2,2,2],[1,2,4,2],[0,1,1,1]],[[1,2,2,0],[1,2,2,3],[1,2,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,2,2],[1,2,3,2],[0,0,2,2]],[[1,2,2,0],[1,2,2,2],[1,2,3,3],[0,0,2,1]],[[1,2,2,0],[1,2,2,2],[1,2,4,2],[0,0,2,1]],[[1,2,2,0],[1,2,2,3],[1,2,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,2,2],[1,2,3,1],[1,0,2,2]],[[1,2,2,0],[1,2,2,2],[1,2,3,1],[1,0,3,1]],[[1,2,2,0],[1,2,2,2],[1,2,4,1],[1,0,2,1]],[[1,2,2,0],[1,2,2,2],[1,2,3,1],[0,1,2,2]],[[1,2,2,0],[1,2,2,2],[1,2,3,1],[0,1,3,1]],[[1,2,2,0],[1,2,2,2],[1,2,4,1],[0,1,2,1]],[[1,2,2,0],[1,2,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,0],[1,2,2,2],[1,2,2,2],[1,0,3,1]],[[1,2,2,0],[1,2,2,2],[1,2,2,3],[1,0,2,1]],[[1,2,2,0],[1,2,2,3],[1,2,2,2],[1,0,2,1]],[[1,2,2,0],[1,2,2,2],[1,2,2,2],[0,1,2,2]],[[1,2,2,0],[1,2,2,2],[1,2,2,2],[0,1,3,1]],[[1,2,2,0],[1,2,2,2],[1,2,2,3],[0,1,2,1]],[[1,2,2,0],[1,2,2,3],[1,2,2,2],[0,1,2,1]],[[1,2,2,0],[1,2,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,0],[1,2,2,2],[1,1,3,2],[0,3,2,0]],[[1,2,2,0],[1,2,2,2],[1,1,3,3],[0,2,2,0]],[[1,2,2,0],[1,2,2,2],[1,1,4,2],[0,2,2,0]],[[1,2,2,0],[1,2,2,3],[1,1,3,2],[0,2,2,0]],[[1,2,2,0],[1,2,2,2],[1,1,3,2],[0,2,1,2]],[[1,2,2,0],[1,2,2,2],[1,1,3,3],[0,2,1,1]],[[1,2,2,0],[1,2,2,2],[1,1,4,2],[0,2,1,1]],[[1,2,2,0],[1,2,2,3],[1,1,3,2],[0,2,1,1]],[[1,2,2,0],[1,2,2,2],[1,1,3,1],[0,2,2,2]],[[1,2,2,0],[1,2,2,2],[1,1,3,1],[0,2,3,1]],[[1,2,2,0],[1,2,2,2],[1,1,3,1],[0,3,2,1]],[[1,2,2,0],[1,2,2,2],[1,1,4,1],[0,2,2,1]],[[1,2,2,0],[1,2,2,2],[1,1,2,2],[0,2,2,2]],[[1,2,2,0],[1,2,2,2],[1,1,2,2],[0,2,3,1]],[[1,2,2,0],[1,2,2,2],[1,1,2,2],[0,3,2,1]],[[1,2,2,0],[1,2,2,2],[1,1,2,3],[0,2,2,1]],[[1,2,2,0],[1,2,2,3],[1,1,2,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,1],[2,3,2,1],[1,0,0,0]],[[0,2,3,1],[2,3,3,1],[2,3,2,1],[1,0,0,0]],[[0,2,2,2],[2,3,3,1],[2,3,2,1],[1,0,0,0]],[[0,2,2,1],[3,3,3,1],[2,3,2,1],[1,0,0,0]],[[0,2,2,1],[2,4,3,1],[2,3,2,1],[1,0,0,0]],[[0,2,2,1],[2,3,3,1],[3,3,2,1],[1,0,0,0]],[[1,2,2,0],[1,2,2,2],[1,0,3,2],[1,2,3,0]],[[1,2,2,0],[1,2,2,2],[1,0,3,2],[1,3,2,0]],[[1,2,2,0],[1,2,2,2],[1,0,3,2],[2,2,2,0]],[[1,2,2,0],[1,2,2,2],[1,0,3,3],[1,2,2,0]],[[1,2,2,0],[1,2,2,2],[1,0,4,2],[1,2,2,0]],[[1,2,2,0],[1,2,2,3],[1,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,2,2,2],[1,0,3,2],[1,2,1,2]],[[1,2,2,0],[1,2,2,2],[1,0,3,3],[1,2,1,1]],[[1,2,2,0],[1,2,2,2],[1,0,4,2],[1,2,1,1]],[[1,2,2,0],[1,2,2,3],[1,0,3,2],[1,2,1,1]],[[1,2,2,0],[1,2,2,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,0],[1,2,2,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,0],[1,2,2,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,0],[1,2,2,3],[1,0,3,2],[0,2,2,1]],[[1,2,2,0],[1,2,2,2],[1,0,3,1],[1,2,2,2]],[[1,2,2,0],[1,2,2,2],[1,0,3,1],[1,2,3,1]],[[1,2,2,0],[1,2,2,2],[1,0,3,1],[1,3,2,1]],[[1,2,2,0],[1,2,2,2],[1,0,3,1],[2,2,2,1]],[[1,2,2,0],[1,2,2,2],[1,0,4,1],[1,2,2,1]],[[1,2,2,0],[1,2,2,2],[1,0,2,2],[1,2,2,2]],[[1,2,2,0],[1,2,2,2],[1,0,2,2],[1,2,3,1]],[[1,2,2,0],[1,2,2,2],[1,0,2,2],[1,3,2,1]],[[1,2,2,0],[1,2,2,2],[1,0,2,2],[2,2,2,1]],[[1,2,2,0],[1,2,2,2],[1,0,2,3],[1,2,2,1]],[[1,2,2,0],[1,2,2,3],[1,0,2,2],[1,2,2,1]],[[1,2,2,0],[1,2,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,0],[1,2,2,2],[0,3,4,2],[0,2,1,0]],[[1,2,2,0],[1,2,2,3],[0,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,2,2,2],[0,3,3,2],[0,2,0,2]],[[1,2,2,0],[1,2,2,2],[0,3,3,3],[0,2,0,1]],[[1,2,2,0],[1,2,2,2],[0,3,4,2],[0,2,0,1]],[[1,2,2,0],[1,2,2,3],[0,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,2,2,2],[0,3,3,2],[0,1,3,0]],[[1,2,2,0],[1,2,2,2],[0,3,3,3],[0,1,2,0]],[[1,2,2,0],[1,2,2,2],[0,3,4,2],[0,1,2,0]],[[1,2,2,0],[1,2,2,3],[0,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,2,2,2],[0,3,3,2],[0,1,1,2]],[[1,2,2,0],[1,2,2,2],[0,3,3,3],[0,1,1,1]],[[1,2,2,0],[1,2,2,2],[0,3,4,2],[0,1,1,1]],[[1,2,2,0],[1,2,2,3],[0,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,2,2,2],[0,3,3,2],[0,0,2,2]],[[1,2,2,0],[1,2,2,2],[0,3,3,3],[0,0,2,1]],[[1,2,2,0],[1,2,2,2],[0,3,4,2],[0,0,2,1]],[[1,2,2,0],[1,2,2,3],[0,3,3,2],[0,0,2,1]],[[1,2,2,0],[1,2,2,2],[0,3,3,1],[0,1,2,2]],[[1,2,2,0],[1,2,2,2],[0,3,3,1],[0,1,3,1]],[[1,2,2,0],[1,2,2,2],[0,3,4,1],[0,1,2,1]],[[1,2,2,0],[1,2,2,2],[0,3,2,2],[0,1,2,2]],[[1,2,2,0],[1,2,2,2],[0,3,2,2],[0,1,3,1]],[[1,2,2,0],[1,2,2,2],[0,3,2,3],[0,1,2,1]],[[1,2,2,0],[1,2,2,3],[0,3,2,2],[0,1,2,1]],[[1,2,2,0],[1,2,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,0],[1,2,2,2],[0,2,4,2],[1,2,1,0]],[[1,2,2,0],[1,2,2,3],[0,2,3,2],[1,2,1,0]],[[1,2,2,0],[1,2,2,2],[0,2,3,2],[1,2,0,2]],[[1,2,2,0],[1,2,2,2],[0,2,3,3],[1,2,0,1]],[[1,2,2,0],[1,2,2,2],[0,2,4,2],[1,2,0,1]],[[1,2,2,0],[1,2,2,3],[0,2,3,2],[1,2,0,1]],[[1,2,2,0],[1,2,2,2],[0,2,3,2],[1,1,3,0]],[[1,2,2,0],[1,2,2,2],[0,2,3,3],[1,1,2,0]],[[1,2,2,0],[1,2,2,2],[0,2,4,2],[1,1,2,0]],[[1,2,2,0],[1,2,2,3],[0,2,3,2],[1,1,2,0]],[[1,2,2,0],[1,2,2,2],[0,2,3,2],[1,1,1,2]],[[1,2,2,0],[1,2,2,2],[0,2,3,3],[1,1,1,1]],[[1,2,2,0],[1,2,2,2],[0,2,4,2],[1,1,1,1]],[[1,2,2,0],[1,2,2,3],[0,2,3,2],[1,1,1,1]],[[1,2,2,0],[1,2,2,2],[0,2,3,2],[1,0,2,2]],[[1,2,2,0],[1,2,2,2],[0,2,3,3],[1,0,2,1]],[[1,2,2,0],[1,2,2,2],[0,2,4,2],[1,0,2,1]],[[1,2,2,0],[1,2,2,3],[0,2,3,2],[1,0,2,1]],[[1,2,2,0],[1,2,2,2],[0,2,3,1],[1,1,2,2]],[[1,2,2,0],[1,2,2,2],[0,2,3,1],[1,1,3,1]],[[1,2,2,0],[1,2,2,2],[0,2,4,1],[1,1,2,1]],[[1,2,2,0],[1,2,2,2],[0,2,2,2],[1,1,2,2]],[[1,2,2,0],[1,2,2,2],[0,2,2,2],[1,1,3,1]],[[1,2,2,0],[1,2,2,2],[0,2,2,3],[1,1,2,1]],[[1,2,2,0],[1,2,2,3],[0,2,2,2],[1,1,2,1]],[[1,2,2,0],[1,2,2,2],[0,1,3,2],[1,2,3,0]],[[1,2,2,0],[1,2,2,2],[0,1,3,2],[1,3,2,0]],[[1,2,2,0],[1,2,2,2],[0,1,3,2],[2,2,2,0]],[[1,2,2,0],[1,2,2,2],[0,1,3,3],[1,2,2,0]],[[1,2,2,0],[1,2,2,2],[0,1,4,2],[1,2,2,0]],[[1,2,2,0],[1,2,2,3],[0,1,3,2],[1,2,2,0]],[[1,2,2,0],[1,2,2,2],[0,1,3,2],[1,2,1,2]],[[1,2,2,0],[1,2,2,2],[0,1,3,3],[1,2,1,1]],[[1,2,2,0],[1,2,2,2],[0,1,4,2],[1,2,1,1]],[[1,2,2,0],[1,2,2,3],[0,1,3,2],[1,2,1,1]],[[1,2,2,0],[1,2,2,2],[0,1,3,1],[1,2,2,2]],[[1,2,2,0],[1,2,2,2],[0,1,3,1],[1,2,3,1]],[[1,2,2,0],[1,2,2,2],[0,1,3,1],[1,3,2,1]],[[1,2,2,0],[1,2,2,2],[0,1,3,1],[2,2,2,1]],[[1,2,2,0],[1,2,2,2],[0,1,4,1],[1,2,2,1]],[[1,2,2,0],[1,2,2,2],[0,1,2,2],[1,2,2,2]],[[1,2,2,0],[1,2,2,2],[0,1,2,2],[1,2,3,1]],[[1,2,2,0],[1,2,2,2],[0,1,2,2],[1,3,2,1]],[[1,2,2,0],[1,2,2,2],[0,1,2,2],[2,2,2,1]],[[1,2,2,0],[1,2,2,2],[0,1,2,3],[1,2,2,1]],[[1,2,2,0],[1,2,2,3],[0,1,2,2],[1,2,2,1]],[[1,2,2,0],[1,2,2,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,0],[1,2,2,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,0],[1,2,2,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,0],[1,2,2,3],[0,0,3,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,2],[2,1,0,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,2],[2,1,0,2],[1,3,2,1]],[[1,2,2,0],[1,1,3,2],[2,1,0,2],[2,2,2,1]],[[1,2,2,0],[1,1,3,2],[2,1,0,3],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[3,1,0,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,3],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[1,1,4,2],[2,1,0,2],[1,2,2,1]],[[1,2,3,0],[1,1,3,2],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[1,1,3,2],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[1,1,3,2],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,0],[1,1,3,2],[2,0,3,1],[1,3,2,0]],[[1,2,2,0],[1,1,3,2],[2,0,3,1],[2,2,2,0]],[[1,2,2,0],[1,1,3,2],[2,0,4,1],[1,2,2,0]],[[1,2,2,0],[1,1,3,2],[3,0,3,1],[1,2,2,0]],[[1,2,2,0],[1,1,3,3],[2,0,3,1],[1,2,2,0]],[[1,2,2,0],[1,1,4,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,0],[1,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,0],[1,1,3,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,0],[1,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,0],[1,1,3,2],[2,0,4,1],[1,2,1,1]],[[1,2,2,0],[1,1,3,3],[2,0,3,1],[1,2,1,1]],[[1,2,2,0],[1,1,4,2],[2,0,3,1],[1,2,1,1]],[[1,2,3,0],[1,1,3,2],[2,0,3,1],[1,2,1,1]],[[1,3,2,0],[1,1,3,2],[2,0,3,1],[1,2,1,1]],[[2,2,2,0],[1,1,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,2,0],[1,1,3,2],[2,0,3,0],[1,2,2,2]],[[1,2,2,0],[1,1,3,2],[2,0,3,0],[1,2,3,1]],[[1,2,2,0],[1,1,3,2],[2,0,3,0],[1,3,2,1]],[[1,2,2,0],[1,1,3,2],[2,0,3,0],[2,2,2,1]],[[1,2,2,0],[1,1,3,2],[2,0,4,0],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[3,0,3,0],[1,2,2,1]],[[1,2,2,0],[1,1,3,3],[2,0,3,0],[1,2,2,1]],[[1,2,2,0],[1,1,4,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,0],[1,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,0],[1,1,3,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,0],[1,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[2,0,2,3],[1,2,2,0]],[[1,2,2,0],[1,1,3,3],[2,0,2,2],[1,2,2,0]],[[1,2,2,0],[1,1,4,2],[2,0,2,2],[1,2,2,0]],[[1,2,3,0],[1,1,3,2],[2,0,2,2],[1,2,2,0]],[[1,3,2,0],[1,1,3,2],[2,0,2,2],[1,2,2,0]],[[2,2,2,0],[1,1,3,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,0],[1,1,3,2],[2,0,2,2],[1,2,1,2]],[[1,2,2,0],[1,1,3,2],[2,0,2,3],[1,2,1,1]],[[1,2,2,0],[1,1,3,3],[2,0,2,2],[1,2,1,1]],[[1,2,2,0],[1,1,4,2],[2,0,2,2],[1,2,1,1]],[[1,2,3,0],[1,1,3,2],[2,0,2,2],[1,2,1,1]],[[1,3,2,0],[1,1,3,2],[2,0,2,2],[1,2,1,1]],[[2,2,2,0],[1,1,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,0],[1,1,3,2],[2,0,1,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,2],[2,0,1,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,2],[2,0,1,2],[1,3,2,1]],[[1,2,2,0],[1,1,3,2],[2,0,1,2],[2,2,2,1]],[[1,2,2,0],[1,1,3,2],[2,0,1,3],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[3,0,1,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,3],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[1,1,4,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,0],[1,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,3,2,0],[1,1,3,2],[2,0,1,2],[1,2,2,1]],[[2,2,2,0],[1,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,2,0],[1,1,3,3],[1,3,3,2],[1,0,0,1]],[[1,2,2,0],[1,1,4,2],[1,3,3,2],[1,0,0,1]],[[1,2,3,0],[1,1,3,2],[1,3,3,2],[1,0,0,1]],[[1,3,2,0],[1,1,3,2],[1,3,3,2],[1,0,0,1]],[[2,2,2,0],[1,1,3,2],[1,3,3,2],[1,0,0,1]],[[1,2,2,0],[1,1,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,2,0],[1,1,3,3],[1,3,3,2],[0,1,0,1]],[[1,2,2,0],[1,1,4,2],[1,3,3,2],[0,1,0,1]],[[1,2,3,0],[1,1,3,2],[1,3,3,2],[0,1,0,1]],[[1,3,2,0],[1,1,3,2],[1,3,3,2],[0,1,0,1]],[[2,2,2,0],[1,1,3,2],[1,3,3,2],[0,1,0,1]],[[1,2,2,0],[1,1,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,2,0],[1,1,3,2],[1,4,3,1],[1,1,1,0]],[[1,2,2,0],[1,1,3,3],[1,3,3,1],[1,1,1,0]],[[1,2,2,0],[1,1,4,2],[1,3,3,1],[1,1,1,0]],[[1,2,3,0],[1,1,3,2],[1,3,3,1],[1,1,1,0]],[[1,3,2,0],[1,1,3,2],[1,3,3,1],[1,1,1,0]],[[2,2,2,0],[1,1,3,2],[1,3,3,1],[1,1,1,0]],[[1,2,2,0],[1,1,3,2],[1,3,4,1],[1,1,0,1]],[[1,2,2,0],[1,1,3,2],[1,4,3,1],[1,1,0,1]],[[1,2,2,0],[1,1,3,3],[1,3,3,1],[1,1,0,1]],[[1,2,2,0],[1,1,4,2],[1,3,3,1],[1,1,0,1]],[[1,2,3,0],[1,1,3,2],[1,3,3,1],[1,1,0,1]],[[1,3,2,0],[1,1,3,2],[1,3,3,1],[1,1,0,1]],[[2,2,2,0],[1,1,3,2],[1,3,3,1],[1,1,0,1]],[[1,2,2,0],[1,1,3,2],[1,3,3,1],[1,0,3,0]],[[1,2,2,0],[1,1,3,2],[1,3,4,1],[1,0,2,0]],[[1,2,2,0],[1,1,3,2],[1,4,3,1],[1,0,2,0]],[[1,2,2,0],[1,1,3,3],[1,3,3,1],[1,0,2,0]],[[1,2,2,0],[1,1,4,2],[1,3,3,1],[1,0,2,0]],[[1,2,3,0],[1,1,3,2],[1,3,3,1],[1,0,2,0]],[[1,3,2,0],[1,1,3,2],[1,3,3,1],[1,0,2,0]],[[2,2,2,0],[1,1,3,2],[1,3,3,1],[1,0,2,0]],[[1,2,2,0],[1,1,3,2],[1,3,4,1],[1,0,1,1]],[[1,2,2,0],[1,1,3,2],[1,4,3,1],[1,0,1,1]],[[1,2,2,0],[1,1,3,3],[1,3,3,1],[1,0,1,1]],[[1,2,2,0],[1,1,4,2],[1,3,3,1],[1,0,1,1]],[[1,2,3,0],[1,1,3,2],[1,3,3,1],[1,0,1,1]],[[1,3,2,0],[1,1,3,2],[1,3,3,1],[1,0,1,1]],[[2,2,2,0],[1,1,3,2],[1,3,3,1],[1,0,1,1]],[[1,2,2,0],[1,1,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,2,0],[1,1,3,2],[1,3,4,1],[0,2,1,0]],[[1,2,2,0],[1,1,3,2],[1,4,3,1],[0,2,1,0]],[[1,2,2,0],[1,1,3,3],[1,3,3,1],[0,2,1,0]],[[1,2,2,0],[1,1,4,2],[1,3,3,1],[0,2,1,0]],[[1,2,3,0],[1,1,3,2],[1,3,3,1],[0,2,1,0]],[[1,3,2,0],[1,1,3,2],[1,3,3,1],[0,2,1,0]],[[2,2,2,0],[1,1,3,2],[1,3,3,1],[0,2,1,0]],[[1,2,2,0],[1,1,3,2],[1,3,3,1],[0,3,0,1]],[[1,2,2,0],[1,1,3,2],[1,3,4,1],[0,2,0,1]],[[1,2,2,0],[1,1,3,2],[1,4,3,1],[0,2,0,1]],[[1,2,2,0],[1,1,3,3],[1,3,3,1],[0,2,0,1]],[[1,2,2,0],[1,1,4,2],[1,3,3,1],[0,2,0,1]],[[1,2,3,0],[1,1,3,2],[1,3,3,1],[0,2,0,1]],[[1,3,2,0],[1,1,3,2],[1,3,3,1],[0,2,0,1]],[[2,2,2,0],[1,1,3,2],[1,3,3,1],[0,2,0,1]],[[1,2,2,0],[1,1,3,2],[1,3,3,1],[0,1,3,0]],[[1,2,2,0],[1,1,3,2],[1,3,4,1],[0,1,2,0]],[[1,2,2,0],[1,1,3,2],[1,4,3,1],[0,1,2,0]],[[1,2,2,0],[1,1,3,3],[1,3,3,1],[0,1,2,0]],[[1,2,2,0],[1,1,4,2],[1,3,3,1],[0,1,2,0]],[[1,2,3,0],[1,1,3,2],[1,3,3,1],[0,1,2,0]],[[1,3,2,0],[1,1,3,2],[1,3,3,1],[0,1,2,0]],[[2,2,2,0],[1,1,3,2],[1,3,3,1],[0,1,2,0]],[[1,2,2,0],[1,1,3,2],[1,3,4,1],[0,1,1,1]],[[1,2,2,0],[1,1,3,2],[1,4,3,1],[0,1,1,1]],[[1,2,2,0],[1,1,3,3],[1,3,3,1],[0,1,1,1]],[[1,2,2,0],[1,1,4,2],[1,3,3,1],[0,1,1,1]],[[1,2,3,0],[1,1,3,2],[1,3,3,1],[0,1,1,1]],[[1,3,2,0],[1,1,3,2],[1,3,3,1],[0,1,1,1]],[[2,2,2,0],[1,1,3,2],[1,3,3,1],[0,1,1,1]],[[1,2,2,0],[1,1,3,2],[1,3,4,1],[0,0,2,1]],[[1,2,2,0],[1,1,3,3],[1,3,3,1],[0,0,2,1]],[[1,2,2,0],[1,1,4,2],[1,3,3,1],[0,0,2,1]],[[1,2,3,0],[1,1,3,2],[1,3,3,1],[0,0,2,1]],[[1,3,2,0],[1,1,3,2],[1,3,3,1],[0,0,2,1]],[[2,2,2,0],[1,1,3,2],[1,3,3,1],[0,0,2,1]],[[1,2,2,0],[1,1,3,2],[1,3,4,0],[1,1,1,1]],[[1,2,2,0],[1,1,3,2],[1,4,3,0],[1,1,1,1]],[[1,2,2,0],[1,1,3,3],[1,3,3,0],[1,1,1,1]],[[1,2,2,0],[1,1,4,2],[1,3,3,0],[1,1,1,1]],[[1,2,3,0],[1,1,3,2],[1,3,3,0],[1,1,1,1]],[[1,3,2,0],[1,1,3,2],[1,3,3,0],[1,1,1,1]],[[2,2,2,0],[1,1,3,2],[1,3,3,0],[1,1,1,1]],[[1,2,2,0],[1,1,3,2],[1,3,3,0],[1,0,2,2]],[[1,2,2,0],[1,1,3,2],[1,3,3,0],[1,0,3,1]],[[1,2,2,0],[1,1,3,2],[1,3,4,0],[1,0,2,1]],[[1,2,2,0],[1,1,3,2],[1,4,3,0],[1,0,2,1]],[[1,2,2,0],[1,1,3,3],[1,3,3,0],[1,0,2,1]],[[1,2,2,0],[1,1,4,2],[1,3,3,0],[1,0,2,1]],[[1,2,3,0],[1,1,3,2],[1,3,3,0],[1,0,2,1]],[[1,3,2,0],[1,1,3,2],[1,3,3,0],[1,0,2,1]],[[2,2,2,0],[1,1,3,2],[1,3,3,0],[1,0,2,1]],[[1,2,2,0],[1,1,3,2],[1,3,3,0],[0,3,1,1]],[[1,2,2,0],[1,1,3,2],[1,3,4,0],[0,2,1,1]],[[1,2,2,0],[1,1,3,2],[1,4,3,0],[0,2,1,1]],[[1,2,2,0],[1,1,3,3],[1,3,3,0],[0,2,1,1]],[[1,2,2,0],[1,1,4,2],[1,3,3,0],[0,2,1,1]],[[1,2,3,0],[1,1,3,2],[1,3,3,0],[0,2,1,1]],[[1,3,2,0],[1,1,3,2],[1,3,3,0],[0,2,1,1]],[[2,2,2,0],[1,1,3,2],[1,3,3,0],[0,2,1,1]],[[1,2,2,0],[1,1,3,2],[1,3,3,0],[0,1,2,2]],[[1,2,2,0],[1,1,3,2],[1,3,3,0],[0,1,3,1]],[[1,2,2,0],[1,1,3,2],[1,3,4,0],[0,1,2,1]],[[1,2,2,0],[1,1,3,2],[1,4,3,0],[0,1,2,1]],[[1,2,2,0],[1,1,3,3],[1,3,3,0],[0,1,2,1]],[[1,2,2,0],[1,1,4,2],[1,3,3,0],[0,1,2,1]],[[1,2,3,0],[1,1,3,2],[1,3,3,0],[0,1,2,1]],[[1,3,2,0],[1,1,3,2],[1,3,3,0],[0,1,2,1]],[[2,2,2,0],[1,1,3,2],[1,3,3,0],[0,1,2,1]],[[1,2,2,0],[1,1,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,2,0],[1,1,3,3],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[1,1,4,2],[1,3,2,2],[1,1,1,0]],[[1,2,3,0],[1,1,3,2],[1,3,2,2],[1,1,1,0]],[[1,3,2,0],[1,1,3,2],[1,3,2,2],[1,1,1,0]],[[2,2,2,0],[1,1,3,2],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[1,1,3,2],[1,3,2,2],[1,1,0,2]],[[1,2,2,0],[1,1,3,2],[1,3,2,3],[1,1,0,1]],[[1,2,2,0],[1,1,3,3],[1,3,2,2],[1,1,0,1]],[[1,2,2,0],[1,1,4,2],[1,3,2,2],[1,1,0,1]],[[1,2,3,0],[1,1,3,2],[1,3,2,2],[1,1,0,1]],[[1,3,2,0],[1,1,3,2],[1,3,2,2],[1,1,0,1]],[[2,2,2,0],[1,1,3,2],[1,3,2,2],[1,1,0,1]],[[1,2,2,0],[1,1,3,2],[1,3,2,3],[1,0,2,0]],[[1,2,2,0],[1,1,3,3],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[1,1,4,2],[1,3,2,2],[1,0,2,0]],[[1,2,3,0],[1,1,3,2],[1,3,2,2],[1,0,2,0]],[[1,3,2,0],[1,1,3,2],[1,3,2,2],[1,0,2,0]],[[2,2,2,0],[1,1,3,2],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[1,1,3,2],[1,3,2,2],[1,0,1,2]],[[1,2,2,0],[1,1,3,2],[1,3,2,3],[1,0,1,1]],[[1,2,2,0],[1,1,3,3],[1,3,2,2],[1,0,1,1]],[[1,2,2,0],[1,1,4,2],[1,3,2,2],[1,0,1,1]],[[1,2,3,0],[1,1,3,2],[1,3,2,2],[1,0,1,1]],[[1,3,2,0],[1,1,3,2],[1,3,2,2],[1,0,1,1]],[[2,2,2,0],[1,1,3,2],[1,3,2,2],[1,0,1,1]],[[1,2,2,0],[1,1,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,2,0],[1,1,3,3],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[1,1,4,2],[1,3,2,2],[0,2,1,0]],[[1,2,3,0],[1,1,3,2],[1,3,2,2],[0,2,1,0]],[[1,3,2,0],[1,1,3,2],[1,3,2,2],[0,2,1,0]],[[2,2,2,0],[1,1,3,2],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[1,1,3,2],[1,3,2,2],[0,2,0,2]],[[1,2,2,0],[1,1,3,2],[1,3,2,3],[0,2,0,1]],[[1,2,2,0],[1,1,3,3],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[1,1,4,2],[1,3,2,2],[0,2,0,1]],[[1,2,3,0],[1,1,3,2],[1,3,2,2],[0,2,0,1]],[[1,3,2,0],[1,1,3,2],[1,3,2,2],[0,2,0,1]],[[2,2,2,0],[1,1,3,2],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[1,1,3,2],[1,3,2,3],[0,1,2,0]],[[1,2,2,0],[1,1,3,3],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[1,1,4,2],[1,3,2,2],[0,1,2,0]],[[1,2,3,0],[1,1,3,2],[1,3,2,2],[0,1,2,0]],[[1,3,2,0],[1,1,3,2],[1,3,2,2],[0,1,2,0]],[[2,2,2,0],[1,1,3,2],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[1,1,3,2],[1,3,2,2],[0,1,1,2]],[[1,2,2,0],[1,1,3,2],[1,3,2,3],[0,1,1,1]],[[1,2,2,0],[1,1,3,3],[1,3,2,2],[0,1,1,1]],[[1,2,2,0],[1,1,4,2],[1,3,2,2],[0,1,1,1]],[[1,2,3,0],[1,1,3,2],[1,3,2,2],[0,1,1,1]],[[1,3,2,0],[1,1,3,2],[1,3,2,2],[0,1,1,1]],[[2,2,2,0],[1,1,3,2],[1,3,2,2],[0,1,1,1]],[[1,2,2,0],[1,1,3,2],[1,3,2,2],[0,0,2,2]],[[1,2,2,0],[1,1,3,2],[1,3,2,3],[0,0,2,1]],[[1,2,2,0],[1,1,3,3],[1,3,2,2],[0,0,2,1]],[[1,2,2,0],[1,1,4,2],[1,3,2,2],[0,0,2,1]],[[1,2,3,0],[1,1,3,2],[1,3,2,2],[0,0,2,1]],[[1,3,2,0],[1,1,3,2],[1,3,2,2],[0,0,2,1]],[[2,2,2,0],[1,1,3,2],[1,3,2,2],[0,0,2,1]],[[1,2,2,0],[1,1,3,2],[1,3,2,1],[0,2,3,0]],[[1,2,2,0],[1,1,3,2],[1,3,2,1],[0,3,2,0]],[[1,2,2,0],[1,1,3,2],[1,4,2,1],[0,2,2,0]],[[1,2,2,0],[1,1,3,2],[1,3,2,0],[0,2,2,2]],[[1,2,2,0],[1,1,3,2],[1,3,2,0],[0,2,3,1]],[[1,2,2,0],[1,1,3,2],[1,3,2,0],[0,3,2,1]],[[1,2,2,0],[1,1,3,2],[1,4,2,0],[0,2,2,1]],[[1,2,2,0],[1,1,3,2],[1,3,1,2],[1,0,2,2]],[[1,2,2,0],[1,1,3,2],[1,3,1,2],[1,0,3,1]],[[1,2,2,0],[1,1,3,2],[1,3,1,3],[1,0,2,1]],[[1,2,2,0],[1,1,3,3],[1,3,1,2],[1,0,2,1]],[[1,2,2,0],[1,1,4,2],[1,3,1,2],[1,0,2,1]],[[1,2,3,0],[1,1,3,2],[1,3,1,2],[1,0,2,1]],[[1,3,2,0],[1,1,3,2],[1,3,1,2],[1,0,2,1]],[[2,2,2,0],[1,1,3,2],[1,3,1,2],[1,0,2,1]],[[1,2,2,0],[1,1,3,2],[1,3,1,2],[0,1,2,2]],[[1,2,2,0],[1,1,3,2],[1,3,1,2],[0,1,3,1]],[[1,2,2,0],[1,1,3,2],[1,3,1,3],[0,1,2,1]],[[1,2,2,0],[1,1,3,3],[1,3,1,2],[0,1,2,1]],[[1,2,2,0],[1,1,4,2],[1,3,1,2],[0,1,2,1]],[[1,2,3,0],[1,1,3,2],[1,3,1,2],[0,1,2,1]],[[1,3,2,0],[1,1,3,2],[1,3,1,2],[0,1,2,1]],[[2,2,2,0],[1,1,3,2],[1,3,1,2],[0,1,2,1]],[[1,2,2,0],[1,1,3,2],[1,3,0,2],[0,2,2,2]],[[1,2,2,0],[1,1,3,2],[1,3,0,2],[0,2,3,1]],[[1,2,2,0],[1,1,3,2],[1,3,0,2],[0,3,2,1]],[[1,2,2,0],[1,1,3,2],[1,3,0,3],[0,2,2,1]],[[1,2,2,0],[1,1,3,2],[1,4,0,2],[0,2,2,1]],[[1,2,2,0],[1,1,3,3],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[1,1,4,2],[1,3,0,2],[0,2,2,1]],[[1,2,3,0],[1,1,3,2],[1,3,0,2],[0,2,2,1]],[[1,3,2,0],[1,1,3,2],[1,3,0,2],[0,2,2,1]],[[2,2,2,0],[1,1,3,2],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[1,1,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,2,0],[1,1,3,2],[1,2,3,1],[0,3,2,0]],[[1,2,2,0],[1,1,3,2],[1,2,4,1],[0,2,2,0]],[[1,2,2,0],[1,1,3,3],[1,2,3,1],[0,2,2,0]],[[0,3,2,1],[2,3,3,2],[0,0,0,2],[1,2,2,1]],[[0,2,3,1],[2,3,3,2],[0,0,0,2],[1,2,2,1]],[[0,2,2,2],[2,3,3,2],[0,0,0,2],[1,2,2,1]],[[0,2,2,1],[2,3,3,3],[0,0,0,2],[1,2,2,1]],[[0,3,2,1],[2,3,3,2],[0,0,1,2],[1,2,1,1]],[[0,2,3,1],[2,3,3,2],[0,0,1,2],[1,2,1,1]],[[0,2,2,2],[2,3,3,2],[0,0,1,2],[1,2,1,1]],[[0,2,2,1],[2,3,3,3],[0,0,1,2],[1,2,1,1]],[[0,3,2,1],[2,3,3,2],[0,0,1,2],[1,2,2,0]],[[0,2,3,1],[2,3,3,2],[0,0,1,2],[1,2,2,0]],[[0,2,2,2],[2,3,3,2],[0,0,1,2],[1,2,2,0]],[[0,2,2,1],[2,3,3,3],[0,0,1,2],[1,2,2,0]],[[0,2,3,1],[2,3,3,2],[0,0,2,2],[1,0,2,1]],[[0,2,2,2],[2,3,3,2],[0,0,2,2],[1,0,2,1]],[[0,2,2,1],[2,3,3,3],[0,0,2,2],[1,0,2,1]],[[0,2,3,1],[2,3,3,2],[0,0,2,2],[1,1,1,1]],[[0,2,2,2],[2,3,3,2],[0,0,2,2],[1,1,1,1]],[[0,2,2,1],[2,3,3,3],[0,0,2,2],[1,1,1,1]],[[0,2,3,1],[2,3,3,2],[0,0,2,2],[1,1,2,0]],[[0,2,2,2],[2,3,3,2],[0,0,2,2],[1,1,2,0]],[[0,2,2,1],[2,3,3,3],[0,0,2,2],[1,1,2,0]],[[1,2,2,0],[1,1,4,2],[1,2,3,1],[0,2,2,0]],[[1,2,3,0],[1,1,3,2],[1,2,3,1],[0,2,2,0]],[[1,3,2,0],[1,1,3,2],[1,2,3,1],[0,2,2,0]],[[2,2,2,0],[1,1,3,2],[1,2,3,1],[0,2,2,0]],[[1,2,2,0],[1,1,3,2],[1,2,4,1],[0,2,1,1]],[[1,2,2,0],[1,1,3,3],[1,2,3,1],[0,2,1,1]],[[1,2,2,0],[1,1,4,2],[1,2,3,1],[0,2,1,1]],[[1,2,3,0],[1,1,3,2],[1,2,3,1],[0,2,1,1]],[[0,3,2,1],[2,3,3,2],[0,0,3,0],[1,2,1,1]],[[0,2,3,1],[2,3,3,2],[0,0,3,0],[1,2,1,1]],[[0,2,2,2],[2,3,3,2],[0,0,3,0],[1,2,1,1]],[[0,2,2,1],[2,3,4,2],[0,0,3,0],[1,2,1,1]],[[0,3,2,1],[2,3,3,2],[0,0,3,0],[1,2,2,0]],[[0,2,3,1],[2,3,3,2],[0,0,3,0],[1,2,2,0]],[[0,2,2,2],[2,3,3,2],[0,0,3,0],[1,2,2,0]],[[0,2,2,1],[2,3,4,2],[0,0,3,0],[1,2,2,0]],[[1,3,2,0],[1,1,3,2],[1,2,3,1],[0,2,1,1]],[[2,2,2,0],[1,1,3,2],[1,2,3,1],[0,2,1,1]],[[0,2,3,1],[2,3,3,2],[0,0,3,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[0,0,3,2],[1,1,0,1]],[[0,2,2,1],[2,3,3,3],[0,0,3,2],[1,1,0,1]],[[1,2,2,0],[1,1,3,2],[1,2,3,0],[0,2,2,2]],[[1,2,2,0],[1,1,3,2],[1,2,3,0],[0,2,3,1]],[[1,2,2,0],[1,1,3,2],[1,2,3,0],[0,3,2,1]],[[1,2,2,0],[1,1,3,2],[1,2,4,0],[0,2,2,1]],[[1,2,2,0],[1,1,3,3],[1,2,3,0],[0,2,2,1]],[[1,2,2,0],[1,1,4,2],[1,2,3,0],[0,2,2,1]],[[1,2,3,0],[1,1,3,2],[1,2,3,0],[0,2,2,1]],[[1,3,2,0],[1,1,3,2],[1,2,3,0],[0,2,2,1]],[[2,2,2,0],[1,1,3,2],[1,2,3,0],[0,2,2,1]],[[0,3,2,1],[2,3,3,2],[0,1,0,2],[1,1,2,1]],[[0,2,3,1],[2,3,3,2],[0,1,0,2],[1,1,2,1]],[[0,2,2,2],[2,3,3,2],[0,1,0,2],[1,1,2,1]],[[0,2,2,1],[2,3,3,3],[0,1,0,2],[1,1,2,1]],[[0,2,3,1],[2,3,3,2],[0,1,1,2],[1,0,2,1]],[[0,2,2,2],[2,3,3,2],[0,1,1,2],[1,0,2,1]],[[0,2,2,1],[2,3,3,3],[0,1,1,2],[1,0,2,1]],[[0,3,2,1],[2,3,3,2],[0,1,1,2],[1,1,1,1]],[[0,2,3,1],[2,3,3,2],[0,1,1,2],[1,1,1,1]],[[0,2,2,2],[2,3,3,2],[0,1,1,2],[1,1,1,1]],[[0,2,2,1],[2,3,3,3],[0,1,1,2],[1,1,1,1]],[[0,3,2,1],[2,3,3,2],[0,1,1,2],[1,1,2,0]],[[0,2,3,1],[2,3,3,2],[0,1,1,2],[1,1,2,0]],[[0,2,2,2],[2,3,3,2],[0,1,1,2],[1,1,2,0]],[[0,2,2,1],[2,3,3,3],[0,1,1,2],[1,1,2,0]],[[0,3,2,1],[2,3,3,2],[0,1,1,2],[1,2,0,1]],[[0,2,3,1],[2,3,3,2],[0,1,1,2],[1,2,0,1]],[[0,2,2,2],[2,3,3,2],[0,1,1,2],[1,2,0,1]],[[0,2,2,1],[2,3,3,3],[0,1,1,2],[1,2,0,1]],[[0,3,2,1],[2,3,3,2],[0,1,1,2],[1,2,1,0]],[[0,2,3,1],[2,3,3,2],[0,1,1,2],[1,2,1,0]],[[0,2,2,2],[2,3,3,2],[0,1,1,2],[1,2,1,0]],[[0,2,2,1],[2,3,3,3],[0,1,1,2],[1,2,1,0]],[[1,2,2,0],[1,1,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,2,0],[1,1,3,3],[1,2,2,2],[0,2,2,0]],[[1,2,2,0],[1,1,4,2],[1,2,2,2],[0,2,2,0]],[[1,2,3,0],[1,1,3,2],[1,2,2,2],[0,2,2,0]],[[1,3,2,0],[1,1,3,2],[1,2,2,2],[0,2,2,0]],[[2,2,2,0],[1,1,3,2],[1,2,2,2],[0,2,2,0]],[[1,2,2,0],[1,1,3,2],[1,2,2,2],[0,2,1,2]],[[1,2,2,0],[1,1,3,2],[1,2,2,3],[0,2,1,1]],[[0,2,3,1],[2,3,3,2],[0,1,2,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[0,1,2,2],[1,1,0,1]],[[0,2,2,1],[2,3,3,3],[0,1,2,2],[1,1,0,1]],[[1,2,2,0],[1,1,3,3],[1,2,2,2],[0,2,1,1]],[[1,2,2,0],[1,1,4,2],[1,2,2,2],[0,2,1,1]],[[1,2,3,0],[1,1,3,2],[1,2,2,2],[0,2,1,1]],[[1,3,2,0],[1,1,3,2],[1,2,2,2],[0,2,1,1]],[[2,2,2,0],[1,1,3,2],[1,2,2,2],[0,2,1,1]],[[1,2,2,0],[1,1,3,2],[1,2,1,2],[0,2,2,2]],[[1,2,2,0],[1,1,3,2],[1,2,1,2],[0,2,3,1]],[[1,2,2,0],[1,1,3,2],[1,2,1,2],[0,3,2,1]],[[1,2,2,0],[1,1,3,2],[1,2,1,3],[0,2,2,1]],[[1,2,2,0],[1,1,3,3],[1,2,1,2],[0,2,2,1]],[[1,2,2,0],[1,1,4,2],[1,2,1,2],[0,2,2,1]],[[1,2,3,0],[1,1,3,2],[1,2,1,2],[0,2,2,1]],[[1,3,2,0],[1,1,3,2],[1,2,1,2],[0,2,2,1]],[[2,2,2,0],[1,1,3,2],[1,2,1,2],[0,2,2,1]],[[1,2,2,0],[1,1,3,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,0],[1,1,3,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,0],[1,1,3,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,0],[1,1,3,3],[1,0,3,2],[0,2,2,1]],[[0,2,3,1],[2,3,3,2],[0,1,3,0],[1,0,2,1]],[[0,2,2,2],[2,3,3,2],[0,1,3,0],[1,0,2,1]],[[0,2,2,1],[2,3,4,2],[0,1,3,0],[1,0,2,1]],[[0,3,2,1],[2,3,3,2],[0,1,3,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,2],[0,1,3,0],[1,1,1,1]],[[0,2,2,2],[2,3,3,2],[0,1,3,0],[1,1,1,1]],[[0,2,2,1],[2,3,4,2],[0,1,3,0],[1,1,1,1]],[[0,3,2,1],[2,3,3,2],[0,1,3,0],[1,1,2,0]],[[0,2,3,1],[2,3,3,2],[0,1,3,0],[1,1,2,0]],[[0,2,2,2],[2,3,3,2],[0,1,3,0],[1,1,2,0]],[[0,2,2,1],[2,3,4,2],[0,1,3,0],[1,1,2,0]],[[0,3,2,1],[2,3,3,2],[0,1,3,0],[1,2,0,1]],[[0,2,3,1],[2,3,3,2],[0,1,3,0],[1,2,0,1]],[[0,2,2,2],[2,3,3,2],[0,1,3,0],[1,2,0,1]],[[0,2,2,1],[2,3,4,2],[0,1,3,0],[1,2,0,1]],[[0,3,2,1],[2,3,3,2],[0,1,3,0],[1,2,1,0]],[[0,2,3,1],[2,3,3,2],[0,1,3,0],[1,2,1,0]],[[0,2,2,2],[2,3,3,2],[0,1,3,0],[1,2,1,0]],[[0,2,2,1],[2,3,4,2],[0,1,3,0],[1,2,1,0]],[[1,2,2,0],[1,1,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,2,0],[1,1,3,3],[0,3,3,2],[1,1,0,1]],[[1,2,2,0],[1,1,4,2],[0,3,3,2],[1,1,0,1]],[[1,2,3,0],[1,1,3,2],[0,3,3,2],[1,1,0,1]],[[1,3,2,0],[1,1,3,2],[0,3,3,2],[1,1,0,1]],[[2,2,2,0],[1,1,3,2],[0,3,3,2],[1,1,0,1]],[[1,2,2,0],[1,1,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,2,0],[1,1,3,2],[0,3,3,1],[2,2,1,0]],[[1,2,2,0],[1,1,3,2],[0,3,4,1],[1,2,1,0]],[[1,2,2,0],[1,1,3,2],[0,4,3,1],[1,2,1,0]],[[1,2,2,0],[1,1,3,3],[0,3,3,1],[1,2,1,0]],[[1,2,2,0],[1,1,4,2],[0,3,3,1],[1,2,1,0]],[[1,2,3,0],[1,1,3,2],[0,3,3,1],[1,2,1,0]],[[1,3,2,0],[1,1,3,2],[0,3,3,1],[1,2,1,0]],[[2,2,2,0],[1,1,3,2],[0,3,3,1],[1,2,1,0]],[[1,2,2,0],[1,1,3,2],[0,3,3,1],[1,3,0,1]],[[1,2,2,0],[1,1,3,2],[0,3,3,1],[2,2,0,1]],[[1,2,2,0],[1,1,3,2],[0,3,4,1],[1,2,0,1]],[[1,2,2,0],[1,1,3,2],[0,4,3,1],[1,2,0,1]],[[1,2,2,0],[1,1,3,3],[0,3,3,1],[1,2,0,1]],[[1,2,2,0],[1,1,4,2],[0,3,3,1],[1,2,0,1]],[[1,2,3,0],[1,1,3,2],[0,3,3,1],[1,2,0,1]],[[1,3,2,0],[1,1,3,2],[0,3,3,1],[1,2,0,1]],[[2,2,2,0],[1,1,3,2],[0,3,3,1],[1,2,0,1]],[[1,2,2,0],[1,1,3,2],[0,3,3,1],[1,1,3,0]],[[1,2,2,0],[1,1,3,2],[0,3,4,1],[1,1,2,0]],[[1,2,2,0],[1,1,3,2],[0,4,3,1],[1,1,2,0]],[[1,2,2,0],[1,1,3,3],[0,3,3,1],[1,1,2,0]],[[1,2,2,0],[1,1,4,2],[0,3,3,1],[1,1,2,0]],[[1,2,3,0],[1,1,3,2],[0,3,3,1],[1,1,2,0]],[[1,3,2,0],[1,1,3,2],[0,3,3,1],[1,1,2,0]],[[2,2,2,0],[1,1,3,2],[0,3,3,1],[1,1,2,0]],[[1,2,2,0],[1,1,3,2],[0,3,4,1],[1,1,1,1]],[[1,2,2,0],[1,1,3,2],[0,4,3,1],[1,1,1,1]],[[1,2,2,0],[1,1,3,3],[0,3,3,1],[1,1,1,1]],[[1,2,2,0],[1,1,4,2],[0,3,3,1],[1,1,1,1]],[[1,2,3,0],[1,1,3,2],[0,3,3,1],[1,1,1,1]],[[1,3,2,0],[1,1,3,2],[0,3,3,1],[1,1,1,1]],[[2,2,2,0],[1,1,3,2],[0,3,3,1],[1,1,1,1]],[[1,2,2,0],[1,1,3,2],[0,3,4,1],[1,0,2,1]],[[1,2,2,0],[1,1,3,3],[0,3,3,1],[1,0,2,1]],[[1,2,2,0],[1,1,4,2],[0,3,3,1],[1,0,2,1]],[[1,2,3,0],[1,1,3,2],[0,3,3,1],[1,0,2,1]],[[1,3,2,0],[1,1,3,2],[0,3,3,1],[1,0,2,1]],[[2,2,2,0],[1,1,3,2],[0,3,3,1],[1,0,2,1]],[[0,3,2,1],[2,3,3,2],[0,2,0,2],[1,1,1,1]],[[0,2,3,1],[2,3,3,2],[0,2,0,2],[1,1,1,1]],[[0,2,2,2],[2,3,3,2],[0,2,0,2],[1,1,1,1]],[[0,2,2,1],[2,3,3,3],[0,2,0,2],[1,1,1,1]],[[0,3,2,1],[2,3,3,2],[0,2,0,2],[1,1,2,0]],[[0,2,3,1],[2,3,3,2],[0,2,0,2],[1,1,2,0]],[[0,2,2,2],[2,3,3,2],[0,2,0,2],[1,1,2,0]],[[0,2,2,1],[2,3,3,3],[0,2,0,2],[1,1,2,0]],[[0,3,2,1],[2,3,3,2],[0,2,0,2],[1,2,0,1]],[[0,2,3,1],[2,3,3,2],[0,2,0,2],[1,2,0,1]],[[0,2,2,2],[2,3,3,2],[0,2,0,2],[1,2,0,1]],[[0,2,2,1],[2,3,3,3],[0,2,0,2],[1,2,0,1]],[[0,3,2,1],[2,3,3,2],[0,2,0,2],[1,2,1,0]],[[0,2,3,1],[2,3,3,2],[0,2,0,2],[1,2,1,0]],[[0,2,2,2],[2,3,3,2],[0,2,0,2],[1,2,1,0]],[[0,2,2,1],[2,3,3,3],[0,2,0,2],[1,2,1,0]],[[1,2,2,0],[1,1,3,2],[0,3,3,0],[1,3,1,1]],[[1,2,2,0],[1,1,3,2],[0,3,3,0],[2,2,1,1]],[[1,2,2,0],[1,1,3,2],[0,3,4,0],[1,2,1,1]],[[1,2,2,0],[1,1,3,2],[0,4,3,0],[1,2,1,1]],[[1,2,2,0],[1,1,3,3],[0,3,3,0],[1,2,1,1]],[[1,2,2,0],[1,1,4,2],[0,3,3,0],[1,2,1,1]],[[1,2,3,0],[1,1,3,2],[0,3,3,0],[1,2,1,1]],[[1,3,2,0],[1,1,3,2],[0,3,3,0],[1,2,1,1]],[[2,2,2,0],[1,1,3,2],[0,3,3,0],[1,2,1,1]],[[1,2,2,0],[1,1,3,2],[0,3,3,0],[1,1,2,2]],[[1,2,2,0],[1,1,3,2],[0,3,3,0],[1,1,3,1]],[[1,2,2,0],[1,1,3,2],[0,3,4,0],[1,1,2,1]],[[1,2,2,0],[1,1,3,2],[0,4,3,0],[1,1,2,1]],[[1,2,2,0],[1,1,3,3],[0,3,3,0],[1,1,2,1]],[[1,2,2,0],[1,1,4,2],[0,3,3,0],[1,1,2,1]],[[1,2,3,0],[1,1,3,2],[0,3,3,0],[1,1,2,1]],[[1,3,2,0],[1,1,3,2],[0,3,3,0],[1,1,2,1]],[[2,2,2,0],[1,1,3,2],[0,3,3,0],[1,1,2,1]],[[1,2,2,0],[1,1,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,2,0],[1,1,3,3],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[1,1,4,2],[0,3,2,2],[1,2,1,0]],[[1,2,3,0],[1,1,3,2],[0,3,2,2],[1,2,1,0]],[[1,3,2,0],[1,1,3,2],[0,3,2,2],[1,2,1,0]],[[2,2,2,0],[1,1,3,2],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[1,1,3,2],[0,3,2,2],[1,2,0,2]],[[1,2,2,0],[1,1,3,2],[0,3,2,3],[1,2,0,1]],[[1,2,2,0],[1,1,3,3],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[1,1,4,2],[0,3,2,2],[1,2,0,1]],[[1,2,3,0],[1,1,3,2],[0,3,2,2],[1,2,0,1]],[[1,3,2,0],[1,1,3,2],[0,3,2,2],[1,2,0,1]],[[2,2,2,0],[1,1,3,2],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[1,1,3,2],[0,3,2,3],[1,1,2,0]],[[1,2,2,0],[1,1,3,3],[0,3,2,2],[1,1,2,0]],[[1,2,2,0],[1,1,4,2],[0,3,2,2],[1,1,2,0]],[[1,2,3,0],[1,1,3,2],[0,3,2,2],[1,1,2,0]],[[1,3,2,0],[1,1,3,2],[0,3,2,2],[1,1,2,0]],[[2,2,2,0],[1,1,3,2],[0,3,2,2],[1,1,2,0]],[[1,2,2,0],[1,1,3,2],[0,3,2,2],[1,1,1,2]],[[1,2,2,0],[1,1,3,2],[0,3,2,3],[1,1,1,1]],[[1,2,2,0],[1,1,3,3],[0,3,2,2],[1,1,1,1]],[[1,2,2,0],[1,1,4,2],[0,3,2,2],[1,1,1,1]],[[1,2,3,0],[1,1,3,2],[0,3,2,2],[1,1,1,1]],[[1,3,2,0],[1,1,3,2],[0,3,2,2],[1,1,1,1]],[[2,2,2,0],[1,1,3,2],[0,3,2,2],[1,1,1,1]],[[1,2,2,0],[1,1,3,2],[0,3,2,2],[1,0,2,2]],[[1,2,2,0],[1,1,3,2],[0,3,2,3],[1,0,2,1]],[[1,2,2,0],[1,1,3,3],[0,3,2,2],[1,0,2,1]],[[1,2,2,0],[1,1,4,2],[0,3,2,2],[1,0,2,1]],[[1,2,3,0],[1,1,3,2],[0,3,2,2],[1,0,2,1]],[[1,3,2,0],[1,1,3,2],[0,3,2,2],[1,0,2,1]],[[2,2,2,0],[1,1,3,2],[0,3,2,2],[1,0,2,1]],[[1,2,2,0],[1,1,3,2],[0,3,2,1],[1,2,3,0]],[[1,2,2,0],[1,1,3,2],[0,3,2,1],[1,3,2,0]],[[1,2,2,0],[1,1,3,2],[0,3,2,1],[2,2,2,0]],[[1,2,2,0],[1,1,3,2],[0,4,2,1],[1,2,2,0]],[[1,2,2,0],[1,1,3,2],[0,3,2,0],[1,2,2,2]],[[1,2,2,0],[1,1,3,2],[0,3,2,0],[1,2,3,1]],[[1,2,2,0],[1,1,3,2],[0,3,2,0],[1,3,2,1]],[[1,2,2,0],[1,1,3,2],[0,3,2,0],[2,2,2,1]],[[1,2,2,0],[1,1,3,2],[0,4,2,0],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[0,3,1,2],[1,1,2,2]],[[1,2,2,0],[1,1,3,2],[0,3,1,2],[1,1,3,1]],[[1,2,2,0],[1,1,3,2],[0,3,1,3],[1,1,2,1]],[[1,2,2,0],[1,1,3,3],[0,3,1,2],[1,1,2,1]],[[1,2,2,0],[1,1,4,2],[0,3,1,2],[1,1,2,1]],[[1,2,3,0],[1,1,3,2],[0,3,1,2],[1,1,2,1]],[[1,3,2,0],[1,1,3,2],[0,3,1,2],[1,1,2,1]],[[2,2,2,0],[1,1,3,2],[0,3,1,2],[1,1,2,1]],[[1,2,2,0],[1,1,3,2],[0,3,0,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,2],[0,3,0,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,2],[0,3,0,2],[1,3,2,1]],[[1,2,2,0],[1,1,3,2],[0,3,0,2],[2,2,2,1]],[[1,2,2,0],[1,1,3,2],[0,3,0,3],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[0,4,0,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,3],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[1,1,4,2],[0,3,0,2],[1,2,2,1]],[[1,2,3,0],[1,1,3,2],[0,3,0,2],[1,2,2,1]],[[1,3,2,0],[1,1,3,2],[0,3,0,2],[1,2,2,1]],[[2,2,2,0],[1,1,3,2],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,2,0],[1,1,3,2],[0,2,3,1],[1,3,2,0]],[[1,2,2,0],[1,1,3,2],[0,2,3,1],[2,2,2,0]],[[1,2,2,0],[1,1,3,2],[0,2,4,1],[1,2,2,0]],[[1,2,2,0],[1,1,3,3],[0,2,3,1],[1,2,2,0]],[[1,2,2,0],[1,1,4,2],[0,2,3,1],[1,2,2,0]],[[1,2,3,0],[1,1,3,2],[0,2,3,1],[1,2,2,0]],[[1,3,2,0],[1,1,3,2],[0,2,3,1],[1,2,2,0]],[[2,2,2,0],[1,1,3,2],[0,2,3,1],[1,2,2,0]],[[1,2,2,0],[1,1,3,2],[0,2,4,1],[1,2,1,1]],[[1,2,2,0],[1,1,3,3],[0,2,3,1],[1,2,1,1]],[[1,2,2,0],[1,1,4,2],[0,2,3,1],[1,2,1,1]],[[1,2,3,0],[1,1,3,2],[0,2,3,1],[1,2,1,1]],[[1,3,2,0],[1,1,3,2],[0,2,3,1],[1,2,1,1]],[[2,2,2,0],[1,1,3,2],[0,2,3,1],[1,2,1,1]],[[1,2,2,0],[1,1,3,2],[0,2,3,0],[1,2,2,2]],[[1,2,2,0],[1,1,3,2],[0,2,3,0],[1,2,3,1]],[[1,2,2,0],[1,1,3,2],[0,2,3,0],[1,3,2,1]],[[1,2,2,0],[1,1,3,2],[0,2,3,0],[2,2,2,1]],[[1,2,2,0],[1,1,3,2],[0,2,4,0],[1,2,2,1]],[[1,2,2,0],[1,1,3,3],[0,2,3,0],[1,2,2,1]],[[1,2,2,0],[1,1,4,2],[0,2,3,0],[1,2,2,1]],[[1,2,3,0],[1,1,3,2],[0,2,3,0],[1,2,2,1]],[[1,3,2,0],[1,1,3,2],[0,2,3,0],[1,2,2,1]],[[2,2,2,0],[1,1,3,2],[0,2,3,0],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[0,2,2,3],[1,2,2,0]],[[1,2,2,0],[1,1,3,3],[0,2,2,2],[1,2,2,0]],[[1,2,2,0],[1,1,4,2],[0,2,2,2],[1,2,2,0]],[[1,2,3,0],[1,1,3,2],[0,2,2,2],[1,2,2,0]],[[1,3,2,0],[1,1,3,2],[0,2,2,2],[1,2,2,0]],[[2,2,2,0],[1,1,3,2],[0,2,2,2],[1,2,2,0]],[[1,2,2,0],[1,1,3,2],[0,2,2,2],[1,2,1,2]],[[1,2,2,0],[1,1,3,2],[0,2,2,3],[1,2,1,1]],[[1,2,2,0],[1,1,3,3],[0,2,2,2],[1,2,1,1]],[[1,2,2,0],[1,1,4,2],[0,2,2,2],[1,2,1,1]],[[1,2,3,0],[1,1,3,2],[0,2,2,2],[1,2,1,1]],[[1,3,2,0],[1,1,3,2],[0,2,2,2],[1,2,1,1]],[[2,2,2,0],[1,1,3,2],[0,2,2,2],[1,2,1,1]],[[1,2,2,0],[1,1,3,2],[0,2,1,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,2],[0,2,1,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,2],[0,2,1,2],[1,3,2,1]],[[1,2,2,0],[1,1,3,2],[0,2,1,2],[2,2,2,1]],[[1,2,2,0],[1,1,3,2],[0,2,1,3],[1,2,2,1]],[[1,2,2,0],[1,1,3,3],[0,2,1,2],[1,2,2,1]],[[1,2,2,0],[1,1,4,2],[0,2,1,2],[1,2,2,1]],[[1,2,3,0],[1,1,3,2],[0,2,1,2],[1,2,2,1]],[[1,3,2,0],[1,1,3,2],[0,2,1,2],[1,2,2,1]],[[2,2,2,0],[1,1,3,2],[0,2,1,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,0],[1,1,3,3],[0,0,3,2],[1,2,2,1]],[[0,3,2,1],[2,3,3,2],[0,3,0,0],[1,2,2,0]],[[0,2,3,1],[2,3,3,2],[0,3,0,0],[1,2,2,0]],[[0,2,2,2],[2,3,3,2],[0,3,0,0],[1,2,2,0]],[[0,2,2,1],[3,3,3,2],[0,3,0,0],[1,2,2,0]],[[0,2,2,1],[2,4,3,2],[0,3,0,0],[1,2,2,0]],[[0,3,2,1],[2,3,3,2],[0,3,0,1],[1,1,1,1]],[[0,2,3,1],[2,3,3,2],[0,3,0,1],[1,1,1,1]],[[0,2,2,2],[2,3,3,2],[0,3,0,1],[1,1,1,1]],[[0,2,2,1],[2,4,3,2],[0,3,0,1],[1,1,1,1]],[[0,3,2,1],[2,3,3,2],[0,3,0,1],[1,1,2,0]],[[0,2,3,1],[2,3,3,2],[0,3,0,1],[1,1,2,0]],[[0,2,2,2],[2,3,3,2],[0,3,0,1],[1,1,2,0]],[[0,2,2,1],[2,4,3,2],[0,3,0,1],[1,1,2,0]],[[0,3,2,1],[2,3,3,2],[0,3,0,1],[1,2,0,1]],[[0,2,3,1],[2,3,3,2],[0,3,0,1],[1,2,0,1]],[[0,2,2,2],[2,3,3,2],[0,3,0,1],[1,2,0,1]],[[0,2,2,1],[3,3,3,2],[0,3,0,1],[1,2,0,1]],[[0,2,2,1],[2,4,3,2],[0,3,0,1],[1,2,0,1]],[[0,3,2,1],[2,3,3,2],[0,3,0,1],[1,2,1,0]],[[0,2,3,1],[2,3,3,2],[0,3,0,1],[1,2,1,0]],[[0,2,2,2],[2,3,3,2],[0,3,0,1],[1,2,1,0]],[[0,2,2,1],[3,3,3,2],[0,3,0,1],[1,2,1,0]],[[0,2,2,1],[2,4,3,2],[0,3,0,1],[1,2,1,0]],[[0,3,2,1],[2,3,3,2],[0,3,0,2],[1,2,0,0]],[[0,2,3,1],[2,3,3,2],[0,3,0,2],[1,2,0,0]],[[0,2,2,2],[2,3,3,2],[0,3,0,2],[1,2,0,0]],[[0,2,2,1],[2,4,3,2],[0,3,0,2],[1,2,0,0]],[[0,3,2,1],[2,3,3,2],[0,3,1,0],[1,1,1,1]],[[0,2,3,1],[2,3,3,2],[0,3,1,0],[1,1,1,1]],[[0,2,2,2],[2,3,3,2],[0,3,1,0],[1,1,1,1]],[[0,2,2,1],[2,4,3,2],[0,3,1,0],[1,1,1,1]],[[0,3,2,1],[2,3,3,2],[0,3,1,0],[1,1,2,0]],[[0,2,3,1],[2,3,3,2],[0,3,1,0],[1,1,2,0]],[[0,2,2,2],[2,3,3,2],[0,3,1,0],[1,1,2,0]],[[0,2,2,1],[2,4,3,2],[0,3,1,0],[1,1,2,0]],[[0,3,2,1],[2,3,3,2],[0,3,1,0],[1,2,0,1]],[[0,2,3,1],[2,3,3,2],[0,3,1,0],[1,2,0,1]],[[0,2,2,2],[2,3,3,2],[0,3,1,0],[1,2,0,1]],[[0,2,2,1],[3,3,3,2],[0,3,1,0],[1,2,0,1]],[[0,2,2,1],[2,4,3,2],[0,3,1,0],[1,2,0,1]],[[0,3,2,1],[2,3,3,2],[0,3,1,0],[1,2,1,0]],[[0,2,3,1],[2,3,3,2],[0,3,1,0],[1,2,1,0]],[[0,2,2,2],[2,3,3,2],[0,3,1,0],[1,2,1,0]],[[0,2,2,1],[3,3,3,2],[0,3,1,0],[1,2,1,0]],[[0,2,2,1],[2,4,3,2],[0,3,1,0],[1,2,1,0]],[[1,2,2,0],[1,1,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[1,1,3,1],[2,0,3,2],[1,3,2,0]],[[1,2,2,0],[1,1,3,1],[2,0,3,2],[2,2,2,0]],[[1,2,2,0],[1,1,3,1],[2,0,3,3],[1,2,2,0]],[[1,2,2,0],[1,1,3,1],[2,0,4,2],[1,2,2,0]],[[1,2,2,0],[1,1,3,1],[3,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,1,4,1],[2,0,3,2],[1,2,2,0]],[[1,2,3,0],[1,1,3,1],[2,0,3,2],[1,2,2,0]],[[1,3,2,0],[1,1,3,1],[2,0,3,2],[1,2,2,0]],[[2,2,2,0],[1,1,3,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,1,3,1],[2,0,3,2],[1,2,1,2]],[[1,2,2,0],[1,1,3,1],[2,0,3,3],[1,2,1,1]],[[1,2,2,0],[1,1,3,1],[2,0,4,2],[1,2,1,1]],[[1,2,2,0],[1,1,4,1],[2,0,3,2],[1,2,1,1]],[[1,2,3,0],[1,1,3,1],[2,0,3,2],[1,2,1,1]],[[1,3,2,0],[1,1,3,1],[2,0,3,2],[1,2,1,1]],[[2,2,2,0],[1,1,3,1],[2,0,3,2],[1,2,1,1]],[[1,2,2,0],[1,1,3,1],[2,0,3,1],[1,2,2,2]],[[1,2,2,0],[1,1,3,1],[2,0,3,1],[1,2,3,1]],[[1,2,2,0],[1,1,3,1],[2,0,3,1],[1,3,2,1]],[[1,2,2,0],[1,1,3,1],[2,0,3,1],[2,2,2,1]],[[1,2,2,0],[1,1,3,1],[2,0,4,1],[1,2,2,1]],[[1,2,2,0],[1,1,3,1],[3,0,3,1],[1,2,2,1]],[[1,2,2,0],[1,1,4,1],[2,0,3,1],[1,2,2,1]],[[1,2,3,0],[1,1,3,1],[2,0,3,1],[1,2,2,1]],[[1,3,2,0],[1,1,3,1],[2,0,3,1],[1,2,2,1]],[[2,2,2,0],[1,1,3,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,0],[1,1,3,1],[2,0,2,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,1],[2,0,2,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,1],[2,0,2,2],[1,3,2,1]],[[1,2,2,0],[1,1,3,1],[2,0,2,2],[2,2,2,1]],[[1,2,2,0],[1,1,3,1],[2,0,2,3],[1,2,2,1]],[[1,2,2,0],[1,1,3,1],[3,0,2,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[1,1,3,1],[1,3,4,2],[1,1,1,0]],[[1,2,2,0],[1,1,3,1],[1,4,3,2],[1,1,1,0]],[[1,2,2,0],[1,1,4,1],[1,3,3,2],[1,1,1,0]],[[1,2,3,0],[1,1,3,1],[1,3,3,2],[1,1,1,0]],[[1,3,2,0],[1,1,3,1],[1,3,3,2],[1,1,1,0]],[[2,2,2,0],[1,1,3,1],[1,3,3,2],[1,1,1,0]],[[1,2,2,0],[1,1,3,1],[1,3,3,2],[1,1,0,2]],[[1,2,2,0],[1,1,3,1],[1,3,3,3],[1,1,0,1]],[[1,2,2,0],[1,1,3,1],[1,3,4,2],[1,1,0,1]],[[1,2,2,0],[1,1,3,1],[1,4,3,2],[1,1,0,1]],[[1,2,2,0],[1,1,4,1],[1,3,3,2],[1,1,0,1]],[[1,2,3,0],[1,1,3,1],[1,3,3,2],[1,1,0,1]],[[1,3,2,0],[1,1,3,1],[1,3,3,2],[1,1,0,1]],[[2,2,2,0],[1,1,3,1],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[1,1,3,1],[1,3,3,2],[1,0,3,0]],[[1,2,2,0],[1,1,3,1],[1,3,3,3],[1,0,2,0]],[[1,2,2,0],[1,1,3,1],[1,3,4,2],[1,0,2,0]],[[1,2,2,0],[1,1,3,1],[1,4,3,2],[1,0,2,0]],[[1,2,2,0],[1,1,4,1],[1,3,3,2],[1,0,2,0]],[[1,2,3,0],[1,1,3,1],[1,3,3,2],[1,0,2,0]],[[1,3,2,0],[1,1,3,1],[1,3,3,2],[1,0,2,0]],[[2,2,2,0],[1,1,3,1],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[1,1,3,1],[1,3,3,2],[1,0,1,2]],[[1,2,2,0],[1,1,3,1],[1,3,3,3],[1,0,1,1]],[[1,2,2,0],[1,1,3,1],[1,3,4,2],[1,0,1,1]],[[1,2,2,0],[1,1,3,1],[1,4,3,2],[1,0,1,1]],[[1,2,2,0],[1,1,4,1],[1,3,3,2],[1,0,1,1]],[[1,2,3,0],[1,1,3,1],[1,3,3,2],[1,0,1,1]],[[1,3,2,0],[1,1,3,1],[1,3,3,2],[1,0,1,1]],[[2,2,2,0],[1,1,3,1],[1,3,3,2],[1,0,1,1]],[[1,2,2,0],[1,1,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,2,0],[1,1,3,1],[1,3,3,3],[0,2,1,0]],[[1,2,2,0],[1,1,3,1],[1,3,4,2],[0,2,1,0]],[[1,2,2,0],[1,1,3,1],[1,4,3,2],[0,2,1,0]],[[1,2,2,0],[1,1,4,1],[1,3,3,2],[0,2,1,0]],[[1,2,3,0],[1,1,3,1],[1,3,3,2],[0,2,1,0]],[[0,3,2,1],[2,3,3,2],[0,3,2,0],[1,2,0,0]],[[0,2,3,1],[2,3,3,2],[0,3,2,0],[1,2,0,0]],[[0,2,2,2],[2,3,3,2],[0,3,2,0],[1,2,0,0]],[[0,2,2,1],[2,4,3,2],[0,3,2,0],[1,2,0,0]],[[1,3,2,0],[1,1,3,1],[1,3,3,2],[0,2,1,0]],[[2,2,2,0],[1,1,3,1],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,1,3,1],[1,3,3,2],[0,2,0,2]],[[1,2,2,0],[1,1,3,1],[1,3,3,2],[0,3,0,1]],[[1,2,2,0],[1,1,3,1],[1,3,3,3],[0,2,0,1]],[[1,2,2,0],[1,1,3,1],[1,3,4,2],[0,2,0,1]],[[1,2,2,0],[1,1,3,1],[1,4,3,2],[0,2,0,1]],[[1,2,2,0],[1,1,4,1],[1,3,3,2],[0,2,0,1]],[[1,2,3,0],[1,1,3,1],[1,3,3,2],[0,2,0,1]],[[1,3,2,0],[1,1,3,1],[1,3,3,2],[0,2,0,1]],[[2,2,2,0],[1,1,3,1],[1,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,1,3,1],[1,3,3,2],[0,1,3,0]],[[1,2,2,0],[1,1,3,1],[1,3,3,3],[0,1,2,0]],[[1,2,2,0],[1,1,3,1],[1,3,4,2],[0,1,2,0]],[[1,2,2,0],[1,1,3,1],[1,4,3,2],[0,1,2,0]],[[1,2,2,0],[1,1,4,1],[1,3,3,2],[0,1,2,0]],[[1,2,3,0],[1,1,3,1],[1,3,3,2],[0,1,2,0]],[[1,3,2,0],[1,1,3,1],[1,3,3,2],[0,1,2,0]],[[2,2,2,0],[1,1,3,1],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,1,3,1],[1,3,3,2],[0,1,1,2]],[[1,2,2,0],[1,1,3,1],[1,3,3,3],[0,1,1,1]],[[1,2,2,0],[1,1,3,1],[1,3,4,2],[0,1,1,1]],[[1,2,2,0],[1,1,3,1],[1,4,3,2],[0,1,1,1]],[[1,2,2,0],[1,1,4,1],[1,3,3,2],[0,1,1,1]],[[1,2,3,0],[1,1,3,1],[1,3,3,2],[0,1,1,1]],[[1,3,2,0],[1,1,3,1],[1,3,3,2],[0,1,1,1]],[[2,2,2,0],[1,1,3,1],[1,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,1,3,1],[1,3,3,2],[0,0,2,2]],[[1,2,2,0],[1,1,3,1],[1,3,3,3],[0,0,2,1]],[[1,2,2,0],[1,1,3,1],[1,3,4,2],[0,0,2,1]],[[1,2,2,0],[1,1,4,1],[1,3,3,2],[0,0,2,1]],[[1,2,3,0],[1,1,3,1],[1,3,3,2],[0,0,2,1]],[[1,3,2,0],[1,1,3,1],[1,3,3,2],[0,0,2,1]],[[2,2,2,0],[1,1,3,1],[1,3,3,2],[0,0,2,1]],[[1,2,2,0],[1,1,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,2,0],[1,1,3,1],[1,4,3,1],[1,1,1,1]],[[1,2,2,0],[1,1,4,1],[1,3,3,1],[1,1,1,1]],[[1,2,3,0],[1,1,3,1],[1,3,3,1],[1,1,1,1]],[[1,3,2,0],[1,1,3,1],[1,3,3,1],[1,1,1,1]],[[2,2,2,0],[1,1,3,1],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[1,1,3,1],[1,3,3,1],[1,0,2,2]],[[1,2,2,0],[1,1,3,1],[1,3,3,1],[1,0,3,1]],[[1,2,2,0],[1,1,3,1],[1,3,4,1],[1,0,2,1]],[[1,2,2,0],[1,1,3,1],[1,4,3,1],[1,0,2,1]],[[1,2,2,0],[1,1,4,1],[1,3,3,1],[1,0,2,1]],[[1,2,3,0],[1,1,3,1],[1,3,3,1],[1,0,2,1]],[[1,3,2,0],[1,1,3,1],[1,3,3,1],[1,0,2,1]],[[2,2,2,0],[1,1,3,1],[1,3,3,1],[1,0,2,1]],[[1,2,2,0],[1,1,3,1],[1,3,3,1],[0,3,1,1]],[[1,2,2,0],[1,1,3,1],[1,3,4,1],[0,2,1,1]],[[1,2,2,0],[1,1,3,1],[1,4,3,1],[0,2,1,1]],[[1,2,2,0],[1,1,4,1],[1,3,3,1],[0,2,1,1]],[[1,2,3,0],[1,1,3,1],[1,3,3,1],[0,2,1,1]],[[1,3,2,0],[1,1,3,1],[1,3,3,1],[0,2,1,1]],[[2,2,2,0],[1,1,3,1],[1,3,3,1],[0,2,1,1]],[[1,2,2,0],[1,1,3,1],[1,3,3,1],[0,1,2,2]],[[1,2,2,0],[1,1,3,1],[1,3,3,1],[0,1,3,1]],[[1,2,2,0],[1,1,3,1],[1,3,4,1],[0,1,2,1]],[[1,2,2,0],[1,1,3,1],[1,4,3,1],[0,1,2,1]],[[1,2,2,0],[1,1,4,1],[1,3,3,1],[0,1,2,1]],[[1,2,3,0],[1,1,3,1],[1,3,3,1],[0,1,2,1]],[[1,3,2,0],[1,1,3,1],[1,3,3,1],[0,1,2,1]],[[2,2,2,0],[1,1,3,1],[1,3,3,1],[0,1,2,1]],[[1,2,2,0],[1,1,3,1],[1,3,3,0],[0,2,3,1]],[[1,2,2,0],[1,1,3,1],[1,3,3,0],[0,3,2,1]],[[1,2,2,0],[1,1,3,1],[1,4,3,0],[0,2,2,1]],[[1,2,2,0],[1,1,3,1],[1,3,2,2],[1,0,2,2]],[[1,2,2,0],[1,1,3,1],[1,3,2,2],[1,0,3,1]],[[1,2,2,0],[1,1,3,1],[1,3,2,3],[1,0,2,1]],[[1,2,2,0],[1,1,3,1],[1,3,2,2],[0,2,3,0]],[[1,2,2,0],[1,1,3,1],[1,3,2,2],[0,3,2,0]],[[1,2,2,0],[1,1,3,1],[1,4,2,2],[0,2,2,0]],[[1,2,2,0],[1,1,3,1],[1,3,2,2],[0,1,2,2]],[[1,2,2,0],[1,1,3,1],[1,3,2,2],[0,1,3,1]],[[1,2,2,0],[1,1,3,1],[1,3,2,3],[0,1,2,1]],[[1,2,2,0],[1,1,3,1],[1,3,2,1],[0,2,2,2]],[[1,2,2,0],[1,1,3,1],[1,3,2,1],[0,2,3,1]],[[1,2,2,0],[1,1,3,1],[1,3,2,1],[0,3,2,1]],[[1,2,2,0],[1,1,3,1],[1,4,2,1],[0,2,2,1]],[[1,2,2,0],[1,1,3,1],[1,3,1,2],[0,2,2,2]],[[1,2,2,0],[1,1,3,1],[1,3,1,2],[0,2,3,1]],[[1,2,2,0],[1,1,3,1],[1,3,1,2],[0,3,2,1]],[[1,2,2,0],[1,1,3,1],[1,3,1,3],[0,2,2,1]],[[1,2,2,0],[1,1,3,1],[1,4,1,2],[0,2,2,1]],[[1,2,2,0],[1,1,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[1,1,3,1],[1,2,3,2],[0,3,2,0]],[[1,2,2,0],[1,1,3,1],[1,2,3,3],[0,2,2,0]],[[1,2,2,0],[1,1,3,1],[1,2,4,2],[0,2,2,0]],[[1,2,2,0],[1,1,4,1],[1,2,3,2],[0,2,2,0]],[[1,2,3,0],[1,1,3,1],[1,2,3,2],[0,2,2,0]],[[1,3,2,0],[1,1,3,1],[1,2,3,2],[0,2,2,0]],[[2,2,2,0],[1,1,3,1],[1,2,3,2],[0,2,2,0]],[[1,2,2,0],[1,1,3,1],[1,2,3,2],[0,2,1,2]],[[1,2,2,0],[1,1,3,1],[1,2,3,3],[0,2,1,1]],[[1,2,2,0],[1,1,3,1],[1,2,4,2],[0,2,1,1]],[[1,2,2,0],[1,1,4,1],[1,2,3,2],[0,2,1,1]],[[1,2,3,0],[1,1,3,1],[1,2,3,2],[0,2,1,1]],[[1,3,2,0],[1,1,3,1],[1,2,3,2],[0,2,1,1]],[[2,2,2,0],[1,1,3,1],[1,2,3,2],[0,2,1,1]],[[1,2,2,0],[1,1,3,1],[1,2,3,1],[0,2,2,2]],[[1,2,2,0],[1,1,3,1],[1,2,3,1],[0,2,3,1]],[[1,2,2,0],[1,1,3,1],[1,2,3,1],[0,3,2,1]],[[1,2,2,0],[1,1,3,1],[1,2,4,1],[0,2,2,1]],[[1,2,2,0],[1,1,4,1],[1,2,3,1],[0,2,2,1]],[[1,2,3,0],[1,1,3,1],[1,2,3,1],[0,2,2,1]],[[1,3,2,0],[1,1,3,1],[1,2,3,1],[0,2,2,1]],[[2,2,2,0],[1,1,3,1],[1,2,3,1],[0,2,2,1]],[[1,2,2,0],[1,1,3,1],[1,2,2,2],[0,2,2,2]],[[1,2,2,0],[1,1,3,1],[1,2,2,2],[0,2,3,1]],[[1,2,2,0],[1,1,3,1],[1,2,2,2],[0,3,2,1]],[[1,2,2,0],[1,1,3,1],[1,2,2,3],[0,2,2,1]],[[1,2,2,0],[1,1,3,1],[1,1,3,2],[0,2,2,2]],[[1,2,2,0],[1,1,3,1],[1,1,3,2],[0,2,3,1]],[[1,2,2,0],[1,1,3,1],[1,1,3,3],[0,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,0],[1,1,3,1],[0,3,3,2],[2,2,1,0]],[[1,2,2,0],[1,1,3,1],[0,3,3,3],[1,2,1,0]],[[1,2,2,0],[1,1,3,1],[0,3,4,2],[1,2,1,0]],[[1,2,2,0],[1,1,3,1],[0,4,3,2],[1,2,1,0]],[[1,2,2,0],[1,1,4,1],[0,3,3,2],[1,2,1,0]],[[1,2,3,0],[1,1,3,1],[0,3,3,2],[1,2,1,0]],[[1,3,2,0],[1,1,3,1],[0,3,3,2],[1,2,1,0]],[[2,2,2,0],[1,1,3,1],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[1,1,3,1],[0,3,3,2],[1,2,0,2]],[[1,2,2,0],[1,1,3,1],[0,3,3,2],[1,3,0,1]],[[1,2,2,0],[1,1,3,1],[0,3,3,2],[2,2,0,1]],[[1,2,2,0],[1,1,3,1],[0,3,3,3],[1,2,0,1]],[[1,2,2,0],[1,1,3,1],[0,3,4,2],[1,2,0,1]],[[1,2,2,0],[1,1,3,1],[0,4,3,2],[1,2,0,1]],[[1,2,2,0],[1,1,4,1],[0,3,3,2],[1,2,0,1]],[[1,2,3,0],[1,1,3,1],[0,3,3,2],[1,2,0,1]],[[1,3,2,0],[1,1,3,1],[0,3,3,2],[1,2,0,1]],[[2,2,2,0],[1,1,3,1],[0,3,3,2],[1,2,0,1]],[[1,2,2,0],[1,1,3,1],[0,3,3,2],[1,1,3,0]],[[1,2,2,0],[1,1,3,1],[0,3,3,3],[1,1,2,0]],[[1,2,2,0],[1,1,3,1],[0,3,4,2],[1,1,2,0]],[[1,2,2,0],[1,1,3,1],[0,4,3,2],[1,1,2,0]],[[1,2,2,0],[1,1,4,1],[0,3,3,2],[1,1,2,0]],[[1,2,3,0],[1,1,3,1],[0,3,3,2],[1,1,2,0]],[[1,3,2,0],[1,1,3,1],[0,3,3,2],[1,1,2,0]],[[2,2,2,0],[1,1,3,1],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[1,1,3,1],[0,3,3,2],[1,1,1,2]],[[1,2,2,0],[1,1,3,1],[0,3,3,3],[1,1,1,1]],[[1,2,2,0],[1,1,3,1],[0,3,4,2],[1,1,1,1]],[[1,2,2,0],[1,1,3,1],[0,4,3,2],[1,1,1,1]],[[1,2,2,0],[1,1,4,1],[0,3,3,2],[1,1,1,1]],[[1,2,3,0],[1,1,3,1],[0,3,3,2],[1,1,1,1]],[[1,3,2,0],[1,1,3,1],[0,3,3,2],[1,1,1,1]],[[2,2,2,0],[1,1,3,1],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[1,1,3,1],[0,3,3,2],[1,0,2,2]],[[1,2,2,0],[1,1,3,1],[0,3,3,3],[1,0,2,1]],[[1,2,2,0],[1,1,3,1],[0,3,4,2],[1,0,2,1]],[[1,2,2,0],[1,1,4,1],[0,3,3,2],[1,0,2,1]],[[1,2,3,0],[1,1,3,1],[0,3,3,2],[1,0,2,1]],[[1,3,2,0],[1,1,3,1],[0,3,3,2],[1,0,2,1]],[[2,2,2,0],[1,1,3,1],[0,3,3,2],[1,0,2,1]],[[1,2,2,0],[1,1,3,1],[0,3,3,1],[1,3,1,1]],[[1,2,2,0],[1,1,3,1],[0,3,3,1],[2,2,1,1]],[[1,2,2,0],[1,1,3,1],[0,3,4,1],[1,2,1,1]],[[1,2,2,0],[1,1,3,1],[0,4,3,1],[1,2,1,1]],[[1,2,2,0],[1,1,4,1],[0,3,3,1],[1,2,1,1]],[[1,2,3,0],[1,1,3,1],[0,3,3,1],[1,2,1,1]],[[1,3,2,0],[1,1,3,1],[0,3,3,1],[1,2,1,1]],[[2,2,2,0],[1,1,3,1],[0,3,3,1],[1,2,1,1]],[[1,2,2,0],[1,1,3,1],[0,3,3,1],[1,1,2,2]],[[1,2,2,0],[1,1,3,1],[0,3,3,1],[1,1,3,1]],[[1,2,2,0],[1,1,3,1],[0,3,4,1],[1,1,2,1]],[[1,2,2,0],[1,1,3,1],[0,4,3,1],[1,1,2,1]],[[1,2,2,0],[1,1,4,1],[0,3,3,1],[1,1,2,1]],[[1,2,3,0],[1,1,3,1],[0,3,3,1],[1,1,2,1]],[[1,3,2,0],[1,1,3,1],[0,3,3,1],[1,1,2,1]],[[2,2,2,0],[1,1,3,1],[0,3,3,1],[1,1,2,1]],[[1,2,2,0],[1,1,3,1],[0,3,3,0],[1,2,3,1]],[[1,2,2,0],[1,1,3,1],[0,3,3,0],[1,3,2,1]],[[1,2,2,0],[1,1,3,1],[0,3,3,0],[2,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,4,3,0],[1,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,3,2,2],[1,2,3,0]],[[1,2,2,0],[1,1,3,1],[0,3,2,2],[1,3,2,0]],[[1,2,2,0],[1,1,3,1],[0,3,2,2],[2,2,2,0]],[[1,2,2,0],[1,1,3,1],[0,4,2,2],[1,2,2,0]],[[1,2,2,0],[1,1,3,1],[0,3,2,2],[1,1,2,2]],[[1,2,2,0],[1,1,3,1],[0,3,2,2],[1,1,3,1]],[[1,2,2,0],[1,1,3,1],[0,3,2,3],[1,1,2,1]],[[1,2,2,0],[1,1,3,1],[0,3,2,1],[1,2,2,2]],[[1,2,2,0],[1,1,3,1],[0,3,2,1],[1,2,3,1]],[[1,2,2,0],[1,1,3,1],[0,3,2,1],[1,3,2,1]],[[1,2,2,0],[1,1,3,1],[0,3,2,1],[2,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,4,2,1],[1,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,3,1,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,1],[0,3,1,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,1],[0,3,1,2],[1,3,2,1]],[[1,2,2,0],[1,1,3,1],[0,3,1,2],[2,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,3,1,3],[1,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,4,1,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,2,3,2],[1,2,3,0]],[[1,2,2,0],[1,1,3,1],[0,2,3,2],[1,3,2,0]],[[1,2,2,0],[1,1,3,1],[0,2,3,2],[2,2,2,0]],[[1,2,2,0],[1,1,3,1],[0,2,3,3],[1,2,2,0]],[[1,2,2,0],[1,1,3,1],[0,2,4,2],[1,2,2,0]],[[1,2,2,0],[1,1,4,1],[0,2,3,2],[1,2,2,0]],[[1,2,3,0],[1,1,3,1],[0,2,3,2],[1,2,2,0]],[[1,3,2,0],[1,1,3,1],[0,2,3,2],[1,2,2,0]],[[2,2,2,0],[1,1,3,1],[0,2,3,2],[1,2,2,0]],[[1,2,2,0],[1,1,3,1],[0,2,3,2],[1,2,1,2]],[[1,2,2,0],[1,1,3,1],[0,2,3,3],[1,2,1,1]],[[1,2,2,0],[1,1,3,1],[0,2,4,2],[1,2,1,1]],[[1,2,2,0],[1,1,4,1],[0,2,3,2],[1,2,1,1]],[[1,2,3,0],[1,1,3,1],[0,2,3,2],[1,2,1,1]],[[1,3,2,0],[1,1,3,1],[0,2,3,2],[1,2,1,1]],[[2,2,2,0],[1,1,3,1],[0,2,3,2],[1,2,1,1]],[[1,2,2,0],[1,1,3,1],[0,2,3,1],[1,2,2,2]],[[1,2,2,0],[1,1,3,1],[0,2,3,1],[1,2,3,1]],[[1,2,2,0],[1,1,3,1],[0,2,3,1],[1,3,2,1]],[[1,2,2,0],[1,1,3,1],[0,2,3,1],[2,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,2,4,1],[1,2,2,1]],[[1,2,2,0],[1,1,4,1],[0,2,3,1],[1,2,2,1]],[[1,2,3,0],[1,1,3,1],[0,2,3,1],[1,2,2,1]],[[1,3,2,0],[1,1,3,1],[0,2,3,1],[1,2,2,1]],[[2,2,2,0],[1,1,3,1],[0,2,3,1],[1,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,2,2,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,1],[0,2,2,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,1],[0,2,2,2],[1,3,2,1]],[[1,2,2,0],[1,1,3,1],[0,2,2,2],[2,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,2,2,3],[1,2,2,1]],[[1,2,2,0],[1,1,3,1],[0,1,3,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,1],[0,1,3,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,1],[0,1,3,3],[1,2,2,1]],[[1,2,2,0],[1,1,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,0],[2,0,3,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,0],[2,0,3,2],[1,3,2,1]],[[1,2,2,0],[1,1,3,0],[2,0,3,2],[2,2,2,1]],[[1,2,2,0],[1,1,3,0],[2,0,4,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,0],[3,0,3,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,0],[1,3,3,2],[1,0,2,2]],[[1,2,2,0],[1,1,3,0],[1,3,3,2],[1,0,3,1]],[[1,2,2,0],[1,1,3,0],[1,3,4,2],[1,0,2,1]],[[1,2,2,0],[1,1,3,0],[1,4,3,2],[1,0,2,1]],[[1,2,2,0],[1,1,3,0],[1,3,3,2],[0,3,1,1]],[[1,2,2,0],[1,1,3,0],[1,3,4,2],[0,2,1,1]],[[1,2,2,0],[1,1,3,0],[1,4,3,2],[0,2,1,1]],[[1,2,2,0],[1,1,3,0],[1,3,3,2],[0,1,2,2]],[[1,2,2,0],[1,1,3,0],[1,3,3,2],[0,1,3,1]],[[1,2,2,0],[1,1,3,0],[1,3,4,2],[0,1,2,1]],[[1,2,2,0],[1,1,3,0],[1,4,3,2],[0,1,2,1]],[[1,2,2,0],[1,1,3,0],[1,3,2,2],[0,2,2,2]],[[1,2,2,0],[1,1,3,0],[1,3,2,2],[0,2,3,1]],[[1,2,2,0],[1,1,3,0],[1,3,2,2],[0,3,2,1]],[[1,2,2,0],[1,1,3,0],[1,4,2,2],[0,2,2,1]],[[1,2,2,0],[1,1,3,0],[1,2,3,2],[0,2,2,2]],[[1,2,2,0],[1,1,3,0],[1,2,3,2],[0,2,3,1]],[[1,2,2,0],[1,1,3,0],[1,2,3,2],[0,3,2,1]],[[1,2,2,0],[1,1,3,0],[1,2,4,2],[0,2,2,1]],[[1,2,2,0],[1,1,3,0],[0,3,3,2],[1,3,1,1]],[[1,2,2,0],[1,1,3,0],[0,3,3,2],[2,2,1,1]],[[1,2,2,0],[1,1,3,0],[0,3,4,2],[1,2,1,1]],[[1,2,2,0],[1,1,3,0],[0,4,3,2],[1,2,1,1]],[[1,2,2,0],[1,1,3,0],[0,3,3,2],[1,1,2,2]],[[1,2,2,0],[1,1,3,0],[0,3,3,2],[1,1,3,1]],[[1,2,2,0],[1,1,3,0],[0,3,4,2],[1,1,2,1]],[[1,2,2,0],[1,1,3,0],[0,4,3,2],[1,1,2,1]],[[1,2,2,0],[1,1,3,0],[0,3,2,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,0],[0,3,2,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,0],[0,3,2,2],[1,3,2,1]],[[1,2,2,0],[1,1,3,0],[0,3,2,2],[2,2,2,1]],[[1,2,2,0],[1,1,3,0],[0,4,2,2],[1,2,2,1]],[[1,2,2,0],[1,1,3,0],[0,2,3,2],[1,2,2,2]],[[1,2,2,0],[1,1,3,0],[0,2,3,2],[1,2,3,1]],[[1,2,2,0],[1,1,3,0],[0,2,3,2],[1,3,2,1]],[[1,2,2,0],[1,1,3,0],[0,2,3,2],[2,2,2,1]],[[1,2,2,0],[1,1,3,0],[0,2,4,2],[1,2,2,1]],[[1,2,2,0],[1,1,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[1,1,2,2],[2,0,3,2],[1,3,2,0]],[[1,2,2,0],[1,1,2,2],[2,0,3,2],[2,2,2,0]],[[1,2,2,0],[1,1,2,2],[2,0,3,3],[1,2,2,0]],[[1,2,2,0],[1,1,2,2],[2,0,4,2],[1,2,2,0]],[[1,2,2,0],[1,1,2,2],[3,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,1,2,3],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[1,1,2,2],[2,0,3,2],[1,2,1,2]],[[1,2,2,0],[1,1,2,2],[2,0,3,3],[1,2,1,1]],[[1,2,2,0],[1,1,2,2],[2,0,4,2],[1,2,1,1]],[[1,2,2,0],[1,1,2,3],[2,0,3,2],[1,2,1,1]],[[1,2,2,0],[1,1,2,2],[2,0,3,1],[1,2,2,2]],[[1,2,2,0],[1,1,2,2],[2,0,3,1],[1,2,3,1]],[[1,2,2,0],[1,1,2,2],[2,0,3,1],[1,3,2,1]],[[1,2,2,0],[1,1,2,2],[2,0,3,1],[2,2,2,1]],[[1,2,2,0],[1,1,2,2],[2,0,4,1],[1,2,2,1]],[[1,2,2,0],[1,1,2,2],[3,0,3,1],[1,2,2,1]],[[1,2,2,0],[1,1,2,2],[2,0,2,2],[1,2,2,2]],[[1,2,2,0],[1,1,2,2],[2,0,2,2],[1,2,3,1]],[[1,2,2,0],[1,1,2,2],[2,0,2,2],[1,3,2,1]],[[1,2,2,0],[1,1,2,2],[2,0,2,2],[2,2,2,1]],[[1,2,2,0],[1,1,2,2],[2,0,2,3],[1,2,2,1]],[[1,2,2,0],[1,1,2,2],[3,0,2,2],[1,2,2,1]],[[1,2,2,0],[1,1,2,3],[2,0,2,2],[1,2,2,1]],[[1,2,2,0],[1,1,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[1,1,2,2],[1,3,4,2],[1,1,1,0]],[[1,2,2,0],[1,1,2,2],[1,4,3,2],[1,1,1,0]],[[1,2,2,0],[1,1,2,3],[1,3,3,2],[1,1,1,0]],[[1,2,2,0],[1,1,2,2],[1,3,3,2],[1,1,0,2]],[[1,2,2,0],[1,1,2,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,0],[1,1,2,2],[1,3,4,2],[1,1,0,1]],[[1,2,2,0],[1,1,2,2],[1,4,3,2],[1,1,0,1]],[[1,2,2,0],[1,1,2,3],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[1,1,2,2],[1,3,3,2],[1,0,3,0]],[[1,2,2,0],[1,1,2,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,0],[1,1,2,2],[1,3,4,2],[1,0,2,0]],[[1,2,2,0],[1,1,2,2],[1,4,3,2],[1,0,2,0]],[[1,2,2,0],[1,1,2,3],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[1,1,2,2],[1,3,3,2],[1,0,1,2]],[[1,2,2,0],[1,1,2,2],[1,3,3,3],[1,0,1,1]],[[1,2,2,0],[1,1,2,2],[1,3,4,2],[1,0,1,1]],[[1,2,2,0],[1,1,2,2],[1,4,3,2],[1,0,1,1]],[[1,2,2,0],[1,1,2,3],[1,3,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[1,0,0,2],[0,2,2,1]],[[0,2,3,1],[2,3,3,2],[1,0,0,2],[0,2,2,1]],[[0,2,2,2],[2,3,3,2],[1,0,0,2],[0,2,2,1]],[[0,2,2,1],[2,3,3,3],[1,0,0,2],[0,2,2,1]],[[0,3,2,1],[2,3,3,2],[1,0,1,2],[0,2,1,1]],[[0,2,3,1],[2,3,3,2],[1,0,1,2],[0,2,1,1]],[[0,2,2,2],[2,3,3,2],[1,0,1,2],[0,2,1,1]],[[0,2,2,1],[2,3,3,3],[1,0,1,2],[0,2,1,1]],[[0,3,2,1],[2,3,3,2],[1,0,1,2],[0,2,2,0]],[[0,2,3,1],[2,3,3,2],[1,0,1,2],[0,2,2,0]],[[0,2,2,2],[2,3,3,2],[1,0,1,2],[0,2,2,0]],[[0,2,2,1],[2,3,3,3],[1,0,1,2],[0,2,2,0]],[[1,2,2,0],[1,1,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,0],[1,1,2,2],[1,3,3,3],[0,2,1,0]],[[1,2,2,0],[1,1,2,2],[1,3,4,2],[0,2,1,0]],[[1,2,2,0],[1,1,2,2],[1,4,3,2],[0,2,1,0]],[[1,2,2,0],[1,1,2,3],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,1,2,2],[1,3,3,2],[0,2,0,2]],[[1,2,2,0],[1,1,2,2],[1,3,3,2],[0,3,0,1]],[[1,2,2,0],[1,1,2,2],[1,3,3,3],[0,2,0,1]],[[1,2,2,0],[1,1,2,2],[1,3,4,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[1,0,2,2],[0,0,2,1]],[[0,2,2,2],[2,3,3,2],[1,0,2,2],[0,0,2,1]],[[0,2,2,1],[2,3,3,3],[1,0,2,2],[0,0,2,1]],[[0,2,3,1],[2,3,3,2],[1,0,2,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,2],[1,0,2,2],[0,1,1,1]],[[0,2,2,1],[2,3,3,3],[1,0,2,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,2],[1,0,2,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,2],[1,0,2,2],[0,1,2,0]],[[0,2,2,1],[2,3,3,3],[1,0,2,2],[0,1,2,0]],[[1,2,2,0],[1,1,2,2],[1,4,3,2],[0,2,0,1]],[[1,2,2,0],[1,1,2,3],[1,3,3,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[1,0,2,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,2],[1,0,2,2],[1,0,1,1]],[[0,2,2,1],[2,3,3,3],[1,0,2,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,2],[1,0,2,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,2],[1,0,2,2],[1,0,2,0]],[[0,2,2,1],[2,3,3,3],[1,0,2,2],[1,0,2,0]],[[1,2,2,0],[1,1,2,2],[1,3,3,2],[0,1,3,0]],[[1,2,2,0],[1,1,2,2],[1,3,3,3],[0,1,2,0]],[[1,2,2,0],[1,1,2,2],[1,3,4,2],[0,1,2,0]],[[1,2,2,0],[1,1,2,2],[1,4,3,2],[0,1,2,0]],[[1,2,2,0],[1,1,2,3],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,1,2,2],[1,3,3,2],[0,1,1,2]],[[1,2,2,0],[1,1,2,2],[1,3,3,3],[0,1,1,1]],[[1,2,2,0],[1,1,2,2],[1,3,4,2],[0,1,1,1]],[[1,2,2,0],[1,1,2,2],[1,4,3,2],[0,1,1,1]],[[1,2,2,0],[1,1,2,3],[1,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,1,2,2],[1,3,3,2],[0,0,2,2]],[[1,2,2,0],[1,1,2,2],[1,3,3,3],[0,0,2,1]],[[1,2,2,0],[1,1,2,2],[1,3,4,2],[0,0,2,1]],[[1,2,2,0],[1,1,2,3],[1,3,3,2],[0,0,2,1]],[[1,2,2,0],[1,1,2,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,0],[1,1,2,2],[1,3,3,1],[1,0,3,1]],[[1,2,2,0],[1,1,2,2],[1,3,4,1],[1,0,2,1]],[[1,2,2,0],[1,1,2,2],[1,4,3,1],[1,0,2,1]],[[1,2,2,0],[1,1,2,2],[1,3,3,1],[0,3,1,1]],[[0,3,2,1],[2,3,3,2],[1,0,3,0],[0,2,1,1]],[[0,2,3,1],[2,3,3,2],[1,0,3,0],[0,2,1,1]],[[0,2,2,2],[2,3,3,2],[1,0,3,0],[0,2,1,1]],[[0,2,2,1],[2,3,4,2],[1,0,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,2],[1,0,3,0],[0,2,2,0]],[[0,2,3,1],[2,3,3,2],[1,0,3,0],[0,2,2,0]],[[0,2,2,2],[2,3,3,2],[1,0,3,0],[0,2,2,0]],[[0,2,2,1],[2,3,4,2],[1,0,3,0],[0,2,2,0]],[[1,2,2,0],[1,1,2,2],[1,3,4,1],[0,2,1,1]],[[1,2,2,0],[1,1,2,2],[1,4,3,1],[0,2,1,1]],[[1,2,2,0],[1,1,2,2],[1,3,3,1],[0,1,2,2]],[[1,2,2,0],[1,1,2,2],[1,3,3,1],[0,1,3,1]],[[1,2,2,0],[1,1,2,2],[1,3,4,1],[0,1,2,1]],[[1,2,2,0],[1,1,2,2],[1,4,3,1],[0,1,2,1]],[[1,2,2,0],[1,1,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,0],[1,1,2,2],[1,3,2,2],[1,0,3,1]],[[1,2,2,0],[1,1,2,2],[1,3,2,3],[1,0,2,1]],[[1,2,2,0],[1,1,2,3],[1,3,2,2],[1,0,2,1]],[[1,2,2,0],[1,1,2,2],[1,3,2,2],[0,2,3,0]],[[1,2,2,0],[1,1,2,2],[1,3,2,2],[0,3,2,0]],[[1,2,2,0],[1,1,2,2],[1,4,2,2],[0,2,2,0]],[[1,2,2,0],[1,1,2,2],[1,3,2,2],[0,1,2,2]],[[1,2,2,0],[1,1,2,2],[1,3,2,2],[0,1,3,1]],[[1,2,2,0],[1,1,2,2],[1,3,2,3],[0,1,2,1]],[[1,2,2,0],[1,1,2,3],[1,3,2,2],[0,1,2,1]],[[1,2,2,0],[1,1,2,2],[1,3,2,1],[0,2,2,2]],[[1,2,2,0],[1,1,2,2],[1,3,2,1],[0,2,3,1]],[[1,2,2,0],[1,1,2,2],[1,3,2,1],[0,3,2,1]],[[1,2,2,0],[1,1,2,2],[1,4,2,1],[0,2,2,1]],[[1,2,2,0],[1,1,2,2],[1,3,1,2],[0,2,2,2]],[[0,2,3,1],[2,3,3,2],[1,0,3,2],[0,0,1,1]],[[0,2,2,2],[2,3,3,2],[1,0,3,2],[0,0,1,1]],[[0,2,2,1],[2,3,3,3],[1,0,3,2],[0,0,1,1]],[[0,2,3,1],[2,3,3,2],[1,0,3,2],[0,1,0,1]],[[0,2,2,2],[2,3,3,2],[1,0,3,2],[0,1,0,1]],[[0,2,2,1],[2,3,3,3],[1,0,3,2],[0,1,0,1]],[[1,2,2,0],[1,1,2,2],[1,3,1,2],[0,2,3,1]],[[1,2,2,0],[1,1,2,2],[1,3,1,2],[0,3,2,1]],[[1,2,2,0],[1,1,2,2],[1,3,1,3],[0,2,2,1]],[[1,2,2,0],[1,1,2,2],[1,4,1,2],[0,2,2,1]],[[1,2,2,0],[1,1,2,3],[1,3,1,2],[0,2,2,1]],[[1,2,2,0],[1,1,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[1,1,2,2],[1,2,3,2],[0,3,2,0]],[[1,2,2,0],[1,1,2,2],[1,2,3,3],[0,2,2,0]],[[1,2,2,0],[1,1,2,2],[1,2,4,2],[0,2,2,0]],[[1,2,2,0],[1,1,2,3],[1,2,3,2],[0,2,2,0]],[[1,2,2,0],[1,1,2,2],[1,2,3,2],[0,2,1,2]],[[1,2,2,0],[1,1,2,2],[1,2,3,3],[0,2,1,1]],[[0,2,3,1],[2,3,3,2],[1,0,3,2],[1,0,0,1]],[[0,2,2,2],[2,3,3,2],[1,0,3,2],[1,0,0,1]],[[0,2,2,1],[2,3,3,3],[1,0,3,2],[1,0,0,1]],[[1,2,2,0],[1,1,2,2],[1,2,4,2],[0,2,1,1]],[[1,2,2,0],[1,1,2,3],[1,2,3,2],[0,2,1,1]],[[1,2,2,0],[1,1,2,2],[1,2,3,1],[0,2,2,2]],[[1,2,2,0],[1,1,2,2],[1,2,3,1],[0,2,3,1]],[[1,2,2,0],[1,1,2,2],[1,2,3,1],[0,3,2,1]],[[1,2,2,0],[1,1,2,2],[1,2,4,1],[0,2,2,1]],[[1,2,2,0],[1,1,2,2],[1,2,2,2],[0,2,2,2]],[[1,2,2,0],[1,1,2,2],[1,2,2,2],[0,2,3,1]],[[1,2,2,0],[1,1,2,2],[1,2,2,2],[0,3,2,1]],[[1,2,2,0],[1,1,2,2],[1,2,2,3],[0,2,2,1]],[[1,2,2,0],[1,1,2,3],[1,2,2,2],[0,2,2,1]],[[1,2,2,0],[1,1,2,2],[1,1,3,2],[0,2,2,2]],[[1,2,2,0],[1,1,2,2],[1,1,3,2],[0,2,3,1]],[[1,2,2,0],[1,1,2,2],[1,1,3,3],[0,2,2,1]],[[1,2,2,0],[1,1,2,3],[1,1,3,2],[0,2,2,1]],[[1,2,2,0],[1,1,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,0],[1,1,2,2],[0,3,3,2],[2,2,1,0]],[[1,2,2,0],[1,1,2,2],[0,3,3,3],[1,2,1,0]],[[1,2,2,0],[1,1,2,2],[0,3,4,2],[1,2,1,0]],[[1,2,2,0],[1,1,2,2],[0,4,3,2],[1,2,1,0]],[[1,2,2,0],[1,1,2,3],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[1,1,2,2],[0,3,3,2],[1,2,0,2]],[[1,2,2,0],[1,1,2,2],[0,3,3,2],[1,3,0,1]],[[1,2,2,0],[1,1,2,2],[0,3,3,2],[2,2,0,1]],[[1,2,2,0],[1,1,2,2],[0,3,3,3],[1,2,0,1]],[[1,2,2,0],[1,1,2,2],[0,3,4,2],[1,2,0,1]],[[1,2,2,0],[1,1,2,2],[0,4,3,2],[1,2,0,1]],[[1,2,2,0],[1,1,2,3],[0,3,3,2],[1,2,0,1]],[[1,2,2,0],[1,1,2,2],[0,3,3,2],[1,1,3,0]],[[1,2,2,0],[1,1,2,2],[0,3,3,3],[1,1,2,0]],[[0,3,2,1],[2,3,3,2],[1,1,0,2],[0,1,2,1]],[[0,2,3,1],[2,3,3,2],[1,1,0,2],[0,1,2,1]],[[0,2,2,2],[2,3,3,2],[1,1,0,2],[0,1,2,1]],[[0,2,2,1],[2,3,3,3],[1,1,0,2],[0,1,2,1]],[[0,3,2,1],[2,3,3,2],[1,1,0,2],[1,0,2,1]],[[0,2,3,1],[2,3,3,2],[1,1,0,2],[1,0,2,1]],[[0,2,2,2],[2,3,3,2],[1,1,0,2],[1,0,2,1]],[[0,2,2,1],[2,3,3,3],[1,1,0,2],[1,0,2,1]],[[1,2,2,0],[1,1,2,2],[0,3,4,2],[1,1,2,0]],[[1,2,2,0],[1,1,2,2],[0,4,3,2],[1,1,2,0]],[[1,2,2,0],[1,1,2,3],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[1,1,2,2],[0,3,3,2],[1,1,1,2]],[[1,2,2,0],[1,1,2,2],[0,3,3,3],[1,1,1,1]],[[1,2,2,0],[1,1,2,2],[0,3,4,2],[1,1,1,1]],[[1,2,2,0],[1,1,2,2],[0,4,3,2],[1,1,1,1]],[[1,2,2,0],[1,1,2,3],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[1,1,2,2],[0,3,3,2],[1,0,2,2]],[[1,2,2,0],[1,1,2,2],[0,3,3,3],[1,0,2,1]],[[1,2,2,0],[1,1,2,2],[0,3,4,2],[1,0,2,1]],[[1,2,2,0],[1,1,2,3],[0,3,3,2],[1,0,2,1]],[[0,3,2,1],[2,3,3,2],[1,1,1,2],[0,0,2,1]],[[0,2,3,1],[2,3,3,2],[1,1,1,2],[0,0,2,1]],[[0,2,2,2],[2,3,3,2],[1,1,1,2],[0,0,2,1]],[[0,2,2,1],[2,3,3,3],[1,1,1,2],[0,0,2,1]],[[0,3,2,1],[2,3,3,2],[1,1,1,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,2],[1,1,1,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,2],[1,1,1,2],[0,1,1,1]],[[0,2,2,1],[2,3,3,3],[1,1,1,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,2],[1,1,1,2],[0,1,2,0]],[[0,2,3,1],[2,3,3,2],[1,1,1,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,2],[1,1,1,2],[0,1,2,0]],[[0,2,2,1],[2,3,3,3],[1,1,1,2],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[1,1,1,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[1,1,1,2],[0,2,0,1]],[[0,2,2,2],[2,3,3,2],[1,1,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,3,3],[1,1,1,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,2],[1,1,1,2],[0,2,1,0]],[[0,2,3,1],[2,3,3,2],[1,1,1,2],[0,2,1,0]],[[0,2,2,2],[2,3,3,2],[1,1,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,3,3],[1,1,1,2],[0,2,1,0]],[[1,2,2,0],[1,1,2,2],[0,3,3,1],[1,3,1,1]],[[1,2,2,0],[1,1,2,2],[0,3,3,1],[2,2,1,1]],[[1,2,2,0],[1,1,2,2],[0,3,4,1],[1,2,1,1]],[[1,2,2,0],[1,1,2,2],[0,4,3,1],[1,2,1,1]],[[1,2,2,0],[1,1,2,2],[0,3,3,1],[1,1,2,2]],[[0,3,2,1],[2,3,3,2],[1,1,1,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,2],[1,1,1,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,2],[1,1,1,2],[1,0,1,1]],[[0,2,2,1],[2,3,3,3],[1,1,1,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[1,1,1,2],[1,0,2,0]],[[0,2,3,1],[2,3,3,2],[1,1,1,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,2],[1,1,1,2],[1,0,2,0]],[[0,2,2,1],[2,3,3,3],[1,1,1,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,2],[1,1,1,2],[1,1,0,1]],[[0,2,3,1],[2,3,3,2],[1,1,1,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[1,1,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,3,3],[1,1,1,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,2],[1,1,1,2],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[1,1,1,2],[1,1,1,0]],[[0,2,2,2],[2,3,3,2],[1,1,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,3,3],[1,1,1,2],[1,1,1,0]],[[1,2,2,0],[1,1,2,2],[0,3,3,1],[1,1,3,1]],[[1,2,2,0],[1,1,2,2],[0,3,4,1],[1,1,2,1]],[[1,2,2,0],[1,1,2,2],[0,4,3,1],[1,1,2,1]],[[1,2,2,0],[1,1,2,2],[0,3,2,2],[1,2,3,0]],[[1,2,2,0],[1,1,2,2],[0,3,2,2],[1,3,2,0]],[[1,2,2,0],[1,1,2,2],[0,3,2,2],[2,2,2,0]],[[1,2,2,0],[1,1,2,2],[0,4,2,2],[1,2,2,0]],[[1,2,2,0],[1,1,2,2],[0,3,2,2],[1,1,2,2]],[[1,2,2,0],[1,1,2,2],[0,3,2,2],[1,1,3,1]],[[1,2,2,0],[1,1,2,2],[0,3,2,3],[1,1,2,1]],[[1,2,2,0],[1,1,2,3],[0,3,2,2],[1,1,2,1]],[[1,2,2,0],[1,1,2,2],[0,3,2,1],[1,2,2,2]],[[1,2,2,0],[1,1,2,2],[0,3,2,1],[1,2,3,1]],[[1,2,2,0],[1,1,2,2],[0,3,2,1],[1,3,2,1]],[[1,2,2,0],[1,1,2,2],[0,3,2,1],[2,2,2,1]],[[1,2,2,0],[1,1,2,2],[0,4,2,1],[1,2,2,1]],[[1,2,2,0],[1,1,2,2],[0,3,1,2],[1,2,2,2]],[[1,2,2,0],[1,1,2,2],[0,3,1,2],[1,2,3,1]],[[1,2,2,0],[1,1,2,2],[0,3,1,2],[1,3,2,1]],[[1,2,2,0],[1,1,2,2],[0,3,1,2],[2,2,2,1]],[[0,3,2,1],[2,3,3,2],[1,1,2,2],[0,1,0,1]],[[0,2,3,1],[2,3,3,2],[1,1,2,2],[0,1,0,1]],[[0,2,2,2],[2,3,3,2],[1,1,2,2],[0,1,0,1]],[[0,2,2,1],[2,3,3,3],[1,1,2,2],[0,1,0,1]],[[1,2,2,0],[1,1,2,2],[0,3,1,3],[1,2,2,1]],[[1,2,2,0],[1,1,2,2],[0,4,1,2],[1,2,2,1]],[[1,2,2,0],[1,1,2,3],[0,3,1,2],[1,2,2,1]],[[1,2,2,0],[1,1,2,2],[0,2,3,2],[1,2,3,0]],[[1,2,2,0],[1,1,2,2],[0,2,3,2],[1,3,2,0]],[[1,2,2,0],[1,1,2,2],[0,2,3,2],[2,2,2,0]],[[1,2,2,0],[1,1,2,2],[0,2,3,3],[1,2,2,0]],[[1,2,2,0],[1,1,2,2],[0,2,4,2],[1,2,2,0]],[[1,2,2,0],[1,1,2,3],[0,2,3,2],[1,2,2,0]],[[1,2,2,0],[1,1,2,2],[0,2,3,2],[1,2,1,2]],[[1,2,2,0],[1,1,2,2],[0,2,3,3],[1,2,1,1]],[[1,2,2,0],[1,1,2,2],[0,2,4,2],[1,2,1,1]],[[1,2,2,0],[1,1,2,3],[0,2,3,2],[1,2,1,1]],[[1,2,2,0],[1,1,2,2],[0,2,3,1],[1,2,2,2]],[[1,2,2,0],[1,1,2,2],[0,2,3,1],[1,2,3,1]],[[1,2,2,0],[1,1,2,2],[0,2,3,1],[1,3,2,1]],[[1,2,2,0],[1,1,2,2],[0,2,3,1],[2,2,2,1]],[[1,2,2,0],[1,1,2,2],[0,2,4,1],[1,2,2,1]],[[1,2,2,0],[1,1,2,2],[0,2,2,2],[1,2,2,2]],[[1,2,2,0],[1,1,2,2],[0,2,2,2],[1,2,3,1]],[[1,2,2,0],[1,1,2,2],[0,2,2,2],[1,3,2,1]],[[1,2,2,0],[1,1,2,2],[0,2,2,2],[2,2,2,1]],[[1,2,2,0],[1,1,2,2],[0,2,2,3],[1,2,2,1]],[[1,2,2,0],[1,1,2,3],[0,2,2,2],[1,2,2,1]],[[1,2,2,0],[1,1,2,2],[0,1,3,2],[1,2,2,2]],[[1,2,2,0],[1,1,2,2],[0,1,3,2],[1,2,3,1]],[[1,2,2,0],[1,1,2,2],[0,1,3,3],[1,2,2,1]],[[1,2,2,0],[1,1,2,3],[0,1,3,2],[1,2,2,1]],[[0,3,2,1],[2,3,3,2],[1,1,2,2],[1,0,0,1]],[[0,2,3,1],[2,3,3,2],[1,1,2,2],[1,0,0,1]],[[0,2,2,2],[2,3,3,2],[1,1,2,2],[1,0,0,1]],[[0,2,2,1],[2,3,3,3],[1,1,2,2],[1,0,0,1]],[[1,2,2,0],[1,1,1,2],[1,3,3,2],[0,1,2,2]],[[1,2,2,0],[1,1,1,2],[1,3,3,2],[0,1,3,1]],[[1,2,2,0],[1,1,1,2],[1,3,3,3],[0,1,2,1]],[[1,2,2,0],[1,1,1,2],[1,2,3,2],[0,2,2,2]],[[1,2,2,0],[1,1,1,2],[1,2,3,2],[0,2,3,1]],[[1,2,2,0],[1,1,1,2],[1,2,3,3],[0,2,2,1]],[[1,2,2,0],[1,1,1,2],[0,3,3,2],[1,1,2,2]],[[1,2,2,0],[1,1,1,2],[0,3,3,2],[1,1,3,1]],[[1,2,2,0],[1,1,1,2],[0,3,3,3],[1,1,2,1]],[[1,2,2,0],[1,1,1,2],[0,2,3,2],[1,2,2,2]],[[1,2,2,0],[1,1,1,2],[0,2,3,2],[1,2,3,1]],[[1,2,2,0],[1,1,1,2],[0,2,3,2],[1,3,2,1]],[[1,2,2,0],[1,1,1,2],[0,2,3,3],[1,2,2,1]],[[0,3,2,1],[2,3,3,2],[1,1,3,0],[0,0,2,1]],[[0,2,3,1],[2,3,3,2],[1,1,3,0],[0,0,2,1]],[[0,2,2,2],[2,3,3,2],[1,1,3,0],[0,0,2,1]],[[0,2,2,1],[2,3,4,2],[1,1,3,0],[0,0,2,1]],[[0,3,2,1],[2,3,3,2],[1,1,3,0],[0,1,1,1]],[[0,2,3,1],[2,3,3,2],[1,1,3,0],[0,1,1,1]],[[0,2,2,2],[2,3,3,2],[1,1,3,0],[0,1,1,1]],[[0,2,2,1],[2,3,4,2],[1,1,3,0],[0,1,1,1]],[[0,3,2,1],[2,3,3,2],[1,1,3,0],[0,1,2,0]],[[0,2,3,1],[2,3,3,2],[1,1,3,0],[0,1,2,0]],[[0,2,2,2],[2,3,3,2],[1,1,3,0],[0,1,2,0]],[[0,2,2,1],[2,3,4,2],[1,1,3,0],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[1,1,3,0],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[1,1,3,0],[0,2,0,1]],[[0,2,2,2],[2,3,3,2],[1,1,3,0],[0,2,0,1]],[[0,2,2,1],[2,3,4,2],[1,1,3,0],[0,2,0,1]],[[0,3,2,1],[2,3,3,2],[1,1,3,0],[0,2,1,0]],[[0,2,3,1],[2,3,3,2],[1,1,3,0],[0,2,1,0]],[[0,2,2,2],[2,3,3,2],[1,1,3,0],[0,2,1,0]],[[0,2,2,1],[2,3,4,2],[1,1,3,0],[0,2,1,0]],[[0,3,2,1],[2,3,3,2],[1,1,3,0],[1,0,1,1]],[[0,2,3,1],[2,3,3,2],[1,1,3,0],[1,0,1,1]],[[0,2,2,2],[2,3,3,2],[1,1,3,0],[1,0,1,1]],[[0,2,2,1],[2,3,4,2],[1,1,3,0],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[1,1,3,0],[1,0,2,0]],[[0,2,3,1],[2,3,3,2],[1,1,3,0],[1,0,2,0]],[[0,2,2,2],[2,3,3,2],[1,1,3,0],[1,0,2,0]],[[0,2,2,1],[2,3,4,2],[1,1,3,0],[1,0,2,0]],[[0,3,2,1],[2,3,3,2],[1,1,3,0],[1,1,0,1]],[[0,2,3,1],[2,3,3,2],[1,1,3,0],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[1,1,3,0],[1,1,0,1]],[[0,2,2,1],[2,3,4,2],[1,1,3,0],[1,1,0,1]],[[0,3,2,1],[2,3,3,2],[1,1,3,0],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[1,1,3,0],[1,1,1,0]],[[0,2,2,2],[2,3,3,2],[1,1,3,0],[1,1,1,0]],[[0,2,2,1],[2,3,4,2],[1,1,3,0],[1,1,1,0]],[[1,2,2,0],[1,0,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,0],[1,0,3,3],[2,3,3,2],[1,0,0,1]],[[1,2,2,0],[1,0,4,2],[2,3,3,2],[1,0,0,1]],[[1,2,3,0],[1,0,3,2],[2,3,3,2],[1,0,0,1]],[[1,3,2,0],[1,0,3,2],[2,3,3,2],[1,0,0,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,2],[1,0,0,1]],[[1,2,2,0],[1,0,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,0],[1,0,3,3],[2,3,3,2],[0,1,0,1]],[[1,2,2,0],[1,0,4,2],[2,3,3,2],[0,1,0,1]],[[1,2,3,0],[1,0,3,2],[2,3,3,2],[0,1,0,1]],[[1,3,2,0],[1,0,3,2],[2,3,3,2],[0,1,0,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,2],[0,1,0,1]],[[1,2,2,0],[1,0,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[1,0,3,2],[2,4,3,1],[1,2,0,0]],[[1,2,2,0],[1,0,3,2],[3,3,3,1],[1,2,0,0]],[[1,2,2,0],[1,0,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,0],[1,0,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,2,0],[1,0,3,2],[2,4,3,1],[1,1,1,0]],[[1,2,2,0],[1,0,3,2],[3,3,3,1],[1,1,1,0]],[[1,2,2,0],[1,0,3,3],[2,3,3,1],[1,1,1,0]],[[1,2,2,0],[1,0,4,2],[2,3,3,1],[1,1,1,0]],[[1,2,3,0],[1,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,3,2,0],[1,0,3,2],[2,3,3,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[1,1,3,2],[0,0,0,1]],[[0,2,2,2],[2,3,3,2],[1,1,3,2],[0,0,0,1]],[[0,2,2,1],[2,3,3,3],[1,1,3,2],[0,0,0,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,0],[1,0,3,2],[2,3,3,1],[2,1,0,1]],[[1,2,2,0],[1,0,3,2],[2,3,4,1],[1,1,0,1]],[[1,2,2,0],[1,0,3,2],[2,4,3,1],[1,1,0,1]],[[1,2,2,0],[1,0,3,2],[3,3,3,1],[1,1,0,1]],[[1,2,2,0],[1,0,3,3],[2,3,3,1],[1,1,0,1]],[[1,2,2,0],[1,0,4,2],[2,3,3,1],[1,1,0,1]],[[1,2,3,0],[1,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,3,2,0],[1,0,3,2],[2,3,3,1],[1,1,0,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,0],[1,0,3,2],[2,3,3,1],[1,0,3,0]],[[1,2,2,0],[1,0,3,2],[2,3,3,1],[2,0,2,0]],[[1,2,2,0],[1,0,3,2],[2,3,4,1],[1,0,2,0]],[[1,2,2,0],[1,0,3,2],[2,4,3,1],[1,0,2,0]],[[1,2,2,0],[1,0,3,2],[3,3,3,1],[1,0,2,0]],[[1,2,2,0],[1,0,3,3],[2,3,3,1],[1,0,2,0]],[[1,2,2,0],[1,0,4,2],[2,3,3,1],[1,0,2,0]],[[1,2,3,0],[1,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,3,2,0],[1,0,3,2],[2,3,3,1],[1,0,2,0]],[[2,2,2,0],[1,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,0],[1,0,3,2],[2,3,3,1],[2,0,1,1]],[[1,2,2,0],[1,0,3,2],[2,3,4,1],[1,0,1,1]],[[1,2,2,0],[1,0,3,2],[2,4,3,1],[1,0,1,1]],[[1,2,2,0],[1,0,3,2],[3,3,3,1],[1,0,1,1]],[[1,2,2,0],[1,0,3,3],[2,3,3,1],[1,0,1,1]],[[1,2,2,0],[1,0,4,2],[2,3,3,1],[1,0,1,1]],[[1,2,3,0],[1,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,3,2,0],[1,0,3,2],[2,3,3,1],[1,0,1,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,2,2,0],[1,0,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[1,0,3,2],[2,3,4,1],[0,2,1,0]],[[1,2,2,0],[1,0,3,2],[2,4,3,1],[0,2,1,0]],[[1,2,2,0],[1,0,3,2],[3,3,3,1],[0,2,1,0]],[[1,2,2,0],[1,0,3,3],[2,3,3,1],[0,2,1,0]],[[1,2,2,0],[1,0,4,2],[2,3,3,1],[0,2,1,0]],[[1,2,3,0],[1,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,3,2,0],[1,0,3,2],[2,3,3,1],[0,2,1,0]],[[2,2,2,0],[1,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,0],[1,0,3,2],[2,3,3,1],[0,3,0,1]],[[1,2,2,0],[1,0,3,2],[2,3,4,1],[0,2,0,1]],[[1,2,2,0],[1,0,3,2],[2,4,3,1],[0,2,0,1]],[[1,2,2,0],[1,0,3,2],[3,3,3,1],[0,2,0,1]],[[1,2,2,0],[1,0,3,3],[2,3,3,1],[0,2,0,1]],[[1,2,2,0],[1,0,4,2],[2,3,3,1],[0,2,0,1]],[[1,2,3,0],[1,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,3,2,0],[1,0,3,2],[2,3,3,1],[0,2,0,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,0],[1,0,3,2],[2,3,3,1],[0,1,3,0]],[[1,2,2,0],[1,0,3,2],[2,3,4,1],[0,1,2,0]],[[1,2,2,0],[1,0,3,2],[2,4,3,1],[0,1,2,0]],[[1,2,2,0],[1,0,3,2],[3,3,3,1],[0,1,2,0]],[[1,2,2,0],[1,0,3,3],[2,3,3,1],[0,1,2,0]],[[1,2,2,0],[1,0,4,2],[2,3,3,1],[0,1,2,0]],[[1,2,3,0],[1,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,3,2,0],[1,0,3,2],[2,3,3,1],[0,1,2,0]],[[2,2,2,0],[1,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,0],[1,0,3,2],[2,3,4,1],[0,1,1,1]],[[1,2,2,0],[1,0,3,2],[2,4,3,1],[0,1,1,1]],[[1,2,2,0],[1,0,3,2],[3,3,3,1],[0,1,1,1]],[[1,2,2,0],[1,0,3,3],[2,3,3,1],[0,1,1,1]],[[1,2,2,0],[1,0,4,2],[2,3,3,1],[0,1,1,1]],[[1,2,3,0],[1,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,3,2,0],[1,0,3,2],[2,3,3,1],[0,1,1,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,0],[1,0,3,2],[2,3,4,1],[0,0,2,1]],[[1,2,2,0],[1,0,3,3],[2,3,3,1],[0,0,2,1]],[[1,2,2,0],[1,0,4,2],[2,3,3,1],[0,0,2,1]],[[1,2,3,0],[1,0,3,2],[2,3,3,1],[0,0,2,1]],[[1,3,2,0],[1,0,3,2],[2,3,3,1],[0,0,2,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,1],[0,0,2,1]],[[1,2,2,0],[1,0,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,0],[1,0,3,2],[2,4,3,0],[1,2,0,1]],[[1,2,2,0],[1,0,3,2],[3,3,3,0],[1,2,0,1]],[[1,2,2,0],[1,0,3,2],[2,3,3,0],[2,1,1,1]],[[1,2,2,0],[1,0,3,2],[2,3,4,0],[1,1,1,1]],[[1,2,2,0],[1,0,3,2],[2,4,3,0],[1,1,1,1]],[[1,2,2,0],[1,0,3,2],[3,3,3,0],[1,1,1,1]],[[1,2,2,0],[1,0,3,3],[2,3,3,0],[1,1,1,1]],[[1,2,2,0],[1,0,4,2],[2,3,3,0],[1,1,1,1]],[[1,2,3,0],[1,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,3,2,0],[1,0,3,2],[2,3,3,0],[1,1,1,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,0],[1,0,3,2],[2,3,3,0],[1,0,2,2]],[[1,2,2,0],[1,0,3,2],[2,3,3,0],[1,0,3,1]],[[1,2,2,0],[1,0,3,2],[2,3,3,0],[2,0,2,1]],[[1,2,2,0],[1,0,3,2],[2,3,4,0],[1,0,2,1]],[[1,2,2,0],[1,0,3,2],[2,4,3,0],[1,0,2,1]],[[1,2,2,0],[1,0,3,2],[3,3,3,0],[1,0,2,1]],[[1,2,2,0],[1,0,3,3],[2,3,3,0],[1,0,2,1]],[[1,2,2,0],[1,0,4,2],[2,3,3,0],[1,0,2,1]],[[1,2,3,0],[1,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,3,2,0],[1,0,3,2],[2,3,3,0],[1,0,2,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,2,2,0],[1,0,3,2],[2,3,3,0],[0,3,1,1]],[[1,2,2,0],[1,0,3,2],[2,3,4,0],[0,2,1,1]],[[1,2,2,0],[1,0,3,2],[2,4,3,0],[0,2,1,1]],[[0,3,2,1],[2,3,3,2],[1,2,0,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,2],[1,2,0,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,2],[1,2,0,2],[0,1,1,1]],[[0,2,2,1],[2,3,3,3],[1,2,0,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,2],[1,2,0,2],[0,1,2,0]],[[0,2,3,1],[2,3,3,2],[1,2,0,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,2],[1,2,0,2],[0,1,2,0]],[[0,2,2,1],[2,3,3,3],[1,2,0,2],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[1,2,0,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[1,2,0,2],[0,2,0,1]],[[0,2,2,2],[2,3,3,2],[1,2,0,2],[0,2,0,1]],[[0,2,2,1],[2,3,3,3],[1,2,0,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,2],[1,2,0,2],[0,2,1,0]],[[0,2,3,1],[2,3,3,2],[1,2,0,2],[0,2,1,0]],[[0,2,2,2],[2,3,3,2],[1,2,0,2],[0,2,1,0]],[[0,2,2,1],[2,3,3,3],[1,2,0,2],[0,2,1,0]],[[1,2,2,0],[1,0,3,2],[3,3,3,0],[0,2,1,1]],[[1,2,2,0],[1,0,3,3],[2,3,3,0],[0,2,1,1]],[[1,2,2,0],[1,0,4,2],[2,3,3,0],[0,2,1,1]],[[1,2,3,0],[1,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,3,2,0],[1,0,3,2],[2,3,3,0],[0,2,1,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,0],[1,0,3,2],[2,3,3,0],[0,1,2,2]],[[1,2,2,0],[1,0,3,2],[2,3,3,0],[0,1,3,1]],[[1,2,2,0],[1,0,3,2],[2,3,4,0],[0,1,2,1]],[[1,2,2,0],[1,0,3,2],[2,4,3,0],[0,1,2,1]],[[1,2,2,0],[1,0,3,2],[3,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,2],[1,2,0,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,2],[1,2,0,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,2],[1,2,0,2],[1,0,1,1]],[[0,2,2,1],[2,3,3,3],[1,2,0,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[1,2,0,2],[1,0,2,0]],[[0,2,3,1],[2,3,3,2],[1,2,0,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,2],[1,2,0,2],[1,0,2,0]],[[0,2,2,1],[2,3,3,3],[1,2,0,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,2],[1,2,0,2],[1,1,0,1]],[[0,2,3,1],[2,3,3,2],[1,2,0,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[1,2,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,3,3],[1,2,0,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,2],[1,2,0,2],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[1,2,0,2],[1,1,1,0]],[[0,2,2,2],[2,3,3,2],[1,2,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,3,3],[1,2,0,2],[1,1,1,0]],[[1,2,2,0],[1,0,3,3],[2,3,3,0],[0,1,2,1]],[[1,2,2,0],[1,0,4,2],[2,3,3,0],[0,1,2,1]],[[1,2,3,0],[1,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,3,2,0],[1,0,3,2],[2,3,3,0],[0,1,2,1]],[[2,2,2,0],[1,0,3,2],[2,3,3,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,2],[1,2,1,2],[0,0,1,1]],[[0,2,3,1],[2,3,3,2],[1,2,1,2],[0,0,1,1]],[[0,2,2,2],[2,3,3,2],[1,2,1,2],[0,0,1,1]],[[0,2,2,1],[2,3,3,3],[1,2,1,2],[0,0,1,1]],[[0,3,2,1],[2,3,3,2],[1,2,1,2],[0,0,2,0]],[[0,2,3,1],[2,3,3,2],[1,2,1,2],[0,0,2,0]],[[0,2,2,2],[2,3,3,2],[1,2,1,2],[0,0,2,0]],[[0,2,2,1],[2,3,3,3],[1,2,1,2],[0,0,2,0]],[[1,2,2,0],[1,0,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,0],[1,0,3,3],[2,3,2,2],[1,1,1,0]],[[1,2,2,0],[1,0,4,2],[2,3,2,2],[1,1,1,0]],[[1,2,3,0],[1,0,3,2],[2,3,2,2],[1,1,1,0]],[[1,3,2,0],[1,0,3,2],[2,3,2,2],[1,1,1,0]],[[2,2,2,0],[1,0,3,2],[2,3,2,2],[1,1,1,0]],[[1,2,2,0],[1,0,3,2],[2,3,2,2],[1,1,0,2]],[[1,2,2,0],[1,0,3,2],[2,3,2,3],[1,1,0,1]],[[1,2,2,0],[1,0,3,3],[2,3,2,2],[1,1,0,1]],[[1,2,2,0],[1,0,4,2],[2,3,2,2],[1,1,0,1]],[[1,2,3,0],[1,0,3,2],[2,3,2,2],[1,1,0,1]],[[1,3,2,0],[1,0,3,2],[2,3,2,2],[1,1,0,1]],[[2,2,2,0],[1,0,3,2],[2,3,2,2],[1,1,0,1]],[[1,2,2,0],[1,0,3,2],[2,3,2,3],[1,0,2,0]],[[1,2,2,0],[1,0,3,3],[2,3,2,2],[1,0,2,0]],[[1,2,2,0],[1,0,4,2],[2,3,2,2],[1,0,2,0]],[[1,2,3,0],[1,0,3,2],[2,3,2,2],[1,0,2,0]],[[1,3,2,0],[1,0,3,2],[2,3,2,2],[1,0,2,0]],[[2,2,2,0],[1,0,3,2],[2,3,2,2],[1,0,2,0]],[[1,2,2,0],[1,0,3,2],[2,3,2,2],[1,0,1,2]],[[1,2,2,0],[1,0,3,2],[2,3,2,3],[1,0,1,1]],[[1,2,2,0],[1,0,3,3],[2,3,2,2],[1,0,1,1]],[[1,2,2,0],[1,0,4,2],[2,3,2,2],[1,0,1,1]],[[1,2,3,0],[1,0,3,2],[2,3,2,2],[1,0,1,1]],[[1,3,2,0],[1,0,3,2],[2,3,2,2],[1,0,1,1]],[[2,2,2,0],[1,0,3,2],[2,3,2,2],[1,0,1,1]],[[1,2,2,0],[1,0,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,0],[1,0,3,3],[2,3,2,2],[0,2,1,0]],[[1,2,2,0],[1,0,4,2],[2,3,2,2],[0,2,1,0]],[[1,2,3,0],[1,0,3,2],[2,3,2,2],[0,2,1,0]],[[1,3,2,0],[1,0,3,2],[2,3,2,2],[0,2,1,0]],[[2,2,2,0],[1,0,3,2],[2,3,2,2],[0,2,1,0]],[[1,2,2,0],[1,0,3,2],[2,3,2,2],[0,2,0,2]],[[1,2,2,0],[1,0,3,2],[2,3,2,3],[0,2,0,1]],[[1,2,2,0],[1,0,3,3],[2,3,2,2],[0,2,0,1]],[[1,2,2,0],[1,0,4,2],[2,3,2,2],[0,2,0,1]],[[1,2,3,0],[1,0,3,2],[2,3,2,2],[0,2,0,1]],[[1,3,2,0],[1,0,3,2],[2,3,2,2],[0,2,0,1]],[[2,2,2,0],[1,0,3,2],[2,3,2,2],[0,2,0,1]],[[1,2,2,0],[1,0,3,2],[2,3,2,3],[0,1,2,0]],[[1,2,2,0],[1,0,3,3],[2,3,2,2],[0,1,2,0]],[[1,2,2,0],[1,0,4,2],[2,3,2,2],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[1,2,2,2],[0,0,0,1]],[[0,2,3,1],[2,3,3,2],[1,2,2,2],[0,0,0,1]],[[0,2,2,2],[2,3,3,2],[1,2,2,2],[0,0,0,1]],[[0,2,2,1],[2,3,3,3],[1,2,2,2],[0,0,0,1]],[[1,2,3,0],[1,0,3,2],[2,3,2,2],[0,1,2,0]],[[1,3,2,0],[1,0,3,2],[2,3,2,2],[0,1,2,0]],[[2,2,2,0],[1,0,3,2],[2,3,2,2],[0,1,2,0]],[[1,2,2,0],[1,0,3,2],[2,3,2,2],[0,1,1,2]],[[1,2,2,0],[1,0,3,2],[2,3,2,3],[0,1,1,1]],[[1,2,2,0],[1,0,3,3],[2,3,2,2],[0,1,1,1]],[[1,2,2,0],[1,0,4,2],[2,3,2,2],[0,1,1,1]],[[1,2,3,0],[1,0,3,2],[2,3,2,2],[0,1,1,1]],[[1,3,2,0],[1,0,3,2],[2,3,2,2],[0,1,1,1]],[[2,2,2,0],[1,0,3,2],[2,3,2,2],[0,1,1,1]],[[1,2,2,0],[1,0,3,2],[2,3,2,2],[0,0,2,2]],[[1,2,2,0],[1,0,3,2],[2,3,2,3],[0,0,2,1]],[[1,2,2,0],[1,0,3,3],[2,3,2,2],[0,0,2,1]],[[1,2,2,0],[1,0,4,2],[2,3,2,2],[0,0,2,1]],[[1,2,3,0],[1,0,3,2],[2,3,2,2],[0,0,2,1]],[[1,3,2,0],[1,0,3,2],[2,3,2,2],[0,0,2,1]],[[2,2,2,0],[1,0,3,2],[2,3,2,2],[0,0,2,1]],[[1,2,2,0],[1,0,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[1,0,3,2],[2,4,2,1],[1,1,2,0]],[[1,2,2,0],[1,0,3,2],[3,3,2,1],[1,1,2,0]],[[1,2,2,0],[1,0,3,2],[2,3,2,1],[0,2,3,0]],[[1,2,2,0],[1,0,3,2],[2,3,2,1],[0,3,2,0]],[[1,2,2,0],[1,0,3,2],[2,4,2,1],[0,2,2,0]],[[1,2,2,0],[1,0,3,2],[3,3,2,1],[0,2,2,0]],[[1,2,2,0],[1,0,3,2],[2,3,2,0],[2,1,2,1]],[[1,2,2,0],[1,0,3,2],[2,4,2,0],[1,1,2,1]],[[1,2,2,0],[1,0,3,2],[3,3,2,0],[1,1,2,1]],[[1,2,2,0],[1,0,3,2],[2,3,2,0],[0,2,2,2]],[[1,2,2,0],[1,0,3,2],[2,3,2,0],[0,2,3,1]],[[1,2,2,0],[1,0,3,2],[2,3,2,0],[0,3,2,1]],[[1,2,2,0],[1,0,3,2],[2,4,2,0],[0,2,2,1]],[[1,2,2,0],[1,0,3,2],[3,3,2,0],[0,2,2,1]],[[1,2,2,0],[1,0,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,0],[1,0,3,2],[2,3,1,2],[1,0,3,1]],[[1,2,2,0],[1,0,3,2],[2,3,1,3],[1,0,2,1]],[[1,2,2,0],[1,0,3,3],[2,3,1,2],[1,0,2,1]],[[1,2,2,0],[1,0,4,2],[2,3,1,2],[1,0,2,1]],[[1,2,3,0],[1,0,3,2],[2,3,1,2],[1,0,2,1]],[[1,3,2,0],[1,0,3,2],[2,3,1,2],[1,0,2,1]],[[2,2,2,0],[1,0,3,2],[2,3,1,2],[1,0,2,1]],[[1,2,2,0],[1,0,3,2],[2,3,1,2],[0,1,2,2]],[[1,2,2,0],[1,0,3,2],[2,3,1,2],[0,1,3,1]],[[1,2,2,0],[1,0,3,2],[2,3,1,3],[0,1,2,1]],[[1,2,2,0],[1,0,3,3],[2,3,1,2],[0,1,2,1]],[[1,2,2,0],[1,0,4,2],[2,3,1,2],[0,1,2,1]],[[1,2,3,0],[1,0,3,2],[2,3,1,2],[0,1,2,1]],[[1,3,2,0],[1,0,3,2],[2,3,1,2],[0,1,2,1]],[[2,2,2,0],[1,0,3,2],[2,3,1,2],[0,1,2,1]],[[1,2,2,0],[1,0,3,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,0],[1,0,3,2],[2,4,0,2],[1,1,2,1]],[[1,2,2,0],[1,0,3,2],[3,3,0,2],[1,1,2,1]],[[1,2,2,0],[1,0,3,2],[2,3,0,2],[0,2,2,2]],[[1,2,2,0],[1,0,3,2],[2,3,0,2],[0,2,3,1]],[[1,2,2,0],[1,0,3,2],[2,3,0,2],[0,3,2,1]],[[1,2,2,0],[1,0,3,2],[2,3,0,3],[0,2,2,1]],[[1,2,2,0],[1,0,3,2],[2,4,0,2],[0,2,2,1]],[[1,2,2,0],[1,0,3,2],[3,3,0,2],[0,2,2,1]],[[1,2,2,0],[1,0,3,3],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[1,0,4,2],[2,3,0,2],[0,2,2,1]],[[1,2,3,0],[1,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,3,2,0],[1,0,3,2],[2,3,0,2],[0,2,2,1]],[[2,2,2,0],[1,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[1,0,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[1,0,3,2],[2,2,3,1],[2,2,1,0]],[[1,2,2,0],[1,0,3,2],[3,2,3,1],[1,2,1,0]],[[1,2,2,0],[1,0,3,2],[2,2,3,1],[1,3,0,1]],[[1,2,2,0],[1,0,3,2],[2,2,3,1],[2,2,0,1]],[[1,2,2,0],[1,0,3,2],[3,2,3,1],[1,2,0,1]],[[1,2,2,0],[1,0,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,0],[1,0,3,2],[2,2,3,1],[0,3,2,0]],[[1,2,2,0],[1,0,3,2],[2,2,4,1],[0,2,2,0]],[[1,2,2,0],[1,0,3,3],[2,2,3,1],[0,2,2,0]],[[1,2,2,0],[1,0,4,2],[2,2,3,1],[0,2,2,0]],[[1,2,3,0],[1,0,3,2],[2,2,3,1],[0,2,2,0]],[[1,3,2,0],[1,0,3,2],[2,2,3,1],[0,2,2,0]],[[2,2,2,0],[1,0,3,2],[2,2,3,1],[0,2,2,0]],[[1,2,2,0],[1,0,3,2],[2,2,4,1],[0,2,1,1]],[[1,2,2,0],[1,0,3,3],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[1,0,4,2],[2,2,3,1],[0,2,1,1]],[[1,2,3,0],[1,0,3,2],[2,2,3,1],[0,2,1,1]],[[1,3,2,0],[1,0,3,2],[2,2,3,1],[0,2,1,1]],[[2,2,2,0],[1,0,3,2],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[1,0,3,2],[2,2,3,0],[1,3,1,1]],[[0,3,2,1],[2,3,3,2],[1,2,3,0],[0,0,1,1]],[[0,2,3,1],[2,3,3,2],[1,2,3,0],[0,0,1,1]],[[0,2,2,2],[2,3,3,2],[1,2,3,0],[0,0,1,1]],[[0,2,2,1],[2,3,4,2],[1,2,3,0],[0,0,1,1]],[[0,3,2,1],[2,3,3,2],[1,2,3,0],[0,0,2,0]],[[0,2,3,1],[2,3,3,2],[1,2,3,0],[0,0,2,0]],[[0,2,2,2],[2,3,3,2],[1,2,3,0],[0,0,2,0]],[[0,2,2,1],[2,3,4,2],[1,2,3,0],[0,0,2,0]],[[1,2,2,0],[1,0,3,2],[2,2,3,0],[2,2,1,1]],[[1,2,2,0],[1,0,3,2],[3,2,3,0],[1,2,1,1]],[[1,2,2,0],[1,0,3,2],[2,2,3,0],[0,2,2,2]],[[1,2,2,0],[1,0,3,2],[2,2,3,0],[0,2,3,1]],[[1,2,2,0],[1,0,3,2],[2,2,3,0],[0,3,2,1]],[[1,2,2,0],[1,0,3,2],[2,2,4,0],[0,2,2,1]],[[1,2,2,0],[1,0,3,3],[2,2,3,0],[0,2,2,1]],[[1,2,2,0],[1,0,4,2],[2,2,3,0],[0,2,2,1]],[[1,2,3,0],[1,0,3,2],[2,2,3,0],[0,2,2,1]],[[1,3,2,0],[1,0,3,2],[2,2,3,0],[0,2,2,1]],[[2,2,2,0],[1,0,3,2],[2,2,3,0],[0,2,2,1]],[[1,2,2,0],[1,0,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,0],[1,0,3,3],[2,2,2,2],[0,2,2,0]],[[1,2,2,0],[1,0,4,2],[2,2,2,2],[0,2,2,0]],[[1,2,3,0],[1,0,3,2],[2,2,2,2],[0,2,2,0]],[[1,3,2,0],[1,0,3,2],[2,2,2,2],[0,2,2,0]],[[2,2,2,0],[1,0,3,2],[2,2,2,2],[0,2,2,0]],[[1,2,2,0],[1,0,3,2],[2,2,2,2],[0,2,1,2]],[[1,2,2,0],[1,0,3,2],[2,2,2,3],[0,2,1,1]],[[1,2,2,0],[1,0,3,3],[2,2,2,2],[0,2,1,1]],[[1,2,2,0],[1,0,4,2],[2,2,2,2],[0,2,1,1]],[[1,2,3,0],[1,0,3,2],[2,2,2,2],[0,2,1,1]],[[1,3,2,0],[1,0,3,2],[2,2,2,2],[0,2,1,1]],[[2,2,2,0],[1,0,3,2],[2,2,2,2],[0,2,1,1]],[[1,2,2,0],[1,0,3,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,0],[1,0,3,2],[2,2,2,1],[1,3,2,0]],[[1,2,2,0],[1,0,3,2],[2,2,2,1],[2,2,2,0]],[[1,2,2,0],[1,0,3,2],[3,2,2,1],[1,2,2,0]],[[1,2,2,0],[1,0,3,2],[2,2,2,0],[1,2,2,2]],[[1,2,2,0],[1,0,3,2],[2,2,2,0],[1,2,3,1]],[[1,2,2,0],[1,0,3,2],[2,2,2,0],[1,3,2,1]],[[1,2,2,0],[1,0,3,2],[2,2,2,0],[2,2,2,1]],[[1,2,2,0],[1,0,3,2],[3,2,2,0],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[2,2,1,2],[0,2,2,2]],[[1,2,2,0],[1,0,3,2],[2,2,1,2],[0,2,3,1]],[[1,2,2,0],[1,0,3,2],[2,2,1,2],[0,3,2,1]],[[1,2,2,0],[1,0,3,2],[2,2,1,3],[0,2,2,1]],[[1,2,2,0],[1,0,3,3],[2,2,1,2],[0,2,2,1]],[[1,2,2,0],[1,0,4,2],[2,2,1,2],[0,2,2,1]],[[1,2,3,0],[1,0,3,2],[2,2,1,2],[0,2,2,1]],[[1,3,2,0],[1,0,3,2],[2,2,1,2],[0,2,2,1]],[[2,2,2,0],[1,0,3,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,0],[1,0,3,2],[2,2,0,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,2],[2,2,0,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,2],[2,2,0,2],[1,3,2,1]],[[1,2,2,0],[1,0,3,2],[2,2,0,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,2],[2,2,0,3],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[3,2,0,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,3],[2,2,0,2],[1,2,2,1]],[[1,2,2,0],[1,0,4,2],[2,2,0,2],[1,2,2,1]],[[1,2,3,0],[1,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,3,2,0],[1,0,3,2],[2,2,0,2],[1,2,2,1]],[[2,2,2,0],[1,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,0],[1,0,3,2],[2,1,3,1],[1,3,2,0]],[[1,2,2,0],[1,0,3,2],[2,1,3,1],[2,2,2,0]],[[1,2,2,0],[1,0,3,2],[2,1,4,1],[1,2,2,0]],[[1,2,2,0],[1,0,3,2],[3,1,3,1],[1,2,2,0]],[[1,2,2,0],[1,0,3,3],[2,1,3,1],[1,2,2,0]],[[1,2,2,0],[1,0,4,2],[2,1,3,1],[1,2,2,0]],[[1,2,3,0],[1,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,3,2,0],[1,0,3,2],[2,1,3,1],[1,2,2,0]],[[2,2,2,0],[1,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,2,2,0],[1,0,3,2],[2,1,4,1],[1,2,1,1]],[[1,2,2,0],[1,0,3,3],[2,1,3,1],[1,2,1,1]],[[1,2,2,0],[1,0,4,2],[2,1,3,1],[1,2,1,1]],[[1,2,3,0],[1,0,3,2],[2,1,3,1],[1,2,1,1]],[[1,3,2,0],[1,0,3,2],[2,1,3,1],[1,2,1,1]],[[2,2,2,0],[1,0,3,2],[2,1,3,1],[1,2,1,1]],[[1,2,2,0],[1,0,3,2],[2,1,3,0],[1,2,2,2]],[[1,2,2,0],[1,0,3,2],[2,1,3,0],[1,2,3,1]],[[1,2,2,0],[1,0,3,2],[2,1,3,0],[1,3,2,1]],[[1,2,2,0],[1,0,3,2],[2,1,3,0],[2,2,2,1]],[[1,2,2,0],[1,0,3,2],[2,1,4,0],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[3,1,3,0],[1,2,2,1]],[[1,2,2,0],[1,0,3,3],[2,1,3,0],[1,2,2,1]],[[1,2,2,0],[1,0,4,2],[2,1,3,0],[1,2,2,1]],[[1,2,3,0],[1,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,3,2,0],[1,0,3,2],[2,1,3,0],[1,2,2,1]],[[2,2,2,0],[1,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[2,1,2,3],[1,2,2,0]],[[1,2,2,0],[1,0,3,3],[2,1,2,2],[1,2,2,0]],[[1,2,2,0],[1,0,4,2],[2,1,2,2],[1,2,2,0]],[[1,2,3,0],[1,0,3,2],[2,1,2,2],[1,2,2,0]],[[1,3,2,0],[1,0,3,2],[2,1,2,2],[1,2,2,0]],[[2,2,2,0],[1,0,3,2],[2,1,2,2],[1,2,2,0]],[[1,2,2,0],[1,0,3,2],[2,1,2,2],[1,2,1,2]],[[1,2,2,0],[1,0,3,2],[2,1,2,3],[1,2,1,1]],[[1,2,2,0],[1,0,3,3],[2,1,2,2],[1,2,1,1]],[[1,2,2,0],[1,0,4,2],[2,1,2,2],[1,2,1,1]],[[1,2,3,0],[1,0,3,2],[2,1,2,2],[1,2,1,1]],[[1,3,2,0],[1,0,3,2],[2,1,2,2],[1,2,1,1]],[[2,2,2,0],[1,0,3,2],[2,1,2,2],[1,2,1,1]],[[1,2,2,0],[1,0,3,2],[2,1,1,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,2],[2,1,1,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,2],[2,1,1,2],[1,3,2,1]],[[1,2,2,0],[1,0,3,2],[2,1,1,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,2],[2,1,1,3],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[3,1,1,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,3],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[1,0,4,2],[2,1,1,2],[1,2,2,1]],[[1,2,3,0],[1,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,3,2,0],[1,0,3,2],[2,1,1,2],[1,2,2,1]],[[2,2,2,0],[1,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[1,3,3,3],[1,0,2,0]],[[1,2,2,0],[1,0,3,2],[1,3,4,2],[1,0,2,0]],[[1,2,2,0],[1,0,3,3],[1,3,3,2],[1,0,2,0]],[[1,2,2,0],[1,0,3,2],[1,3,3,2],[1,0,1,2]],[[1,2,2,0],[1,0,3,2],[1,3,3,3],[1,0,1,1]],[[1,2,2,0],[1,0,3,2],[1,3,4,2],[1,0,1,1]],[[1,2,2,0],[1,0,3,3],[1,3,3,2],[1,0,1,1]],[[1,2,2,0],[1,0,3,2],[1,3,3,3],[0,2,1,0]],[[1,2,2,0],[1,0,3,2],[1,3,4,2],[0,2,1,0]],[[1,2,2,0],[1,0,3,3],[1,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,0,3,2],[1,3,3,2],[0,2,0,2]],[[1,2,2,0],[1,0,3,2],[1,3,3,3],[0,2,0,1]],[[1,2,2,0],[1,0,3,2],[1,3,4,2],[0,2,0,1]],[[1,2,2,0],[1,0,3,3],[1,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,0,3,2],[1,3,3,2],[0,1,3,0]],[[1,2,2,0],[1,0,3,2],[1,3,3,3],[0,1,2,0]],[[1,2,2,0],[1,0,3,2],[1,3,4,2],[0,1,2,0]],[[1,2,2,0],[1,0,3,3],[1,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,0,3,2],[1,3,3,2],[0,1,1,2]],[[1,2,2,0],[1,0,3,2],[1,3,3,3],[0,1,1,1]],[[1,2,2,0],[1,0,3,2],[1,3,4,2],[0,1,1,1]],[[1,2,2,0],[1,0,3,3],[1,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,0,3,2],[1,3,3,2],[0,0,2,2]],[[1,2,2,0],[1,0,3,2],[1,3,3,3],[0,0,2,1]],[[1,2,2,0],[1,0,3,2],[1,3,4,2],[0,0,2,1]],[[1,2,2,0],[1,0,3,3],[1,3,3,2],[0,0,2,1]],[[1,2,2,0],[1,0,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[1,0,3,2],[1,3,3,1],[2,2,1,0]],[[1,2,2,0],[1,0,3,2],[1,3,4,1],[1,2,1,0]],[[1,2,2,0],[1,0,3,2],[1,4,3,1],[1,2,1,0]],[[1,2,2,0],[1,0,3,3],[1,3,3,1],[1,2,1,0]],[[1,2,2,0],[1,0,4,2],[1,3,3,1],[1,2,1,0]],[[1,2,3,0],[1,0,3,2],[1,3,3,1],[1,2,1,0]],[[1,3,2,0],[1,0,3,2],[1,3,3,1],[1,2,1,0]],[[2,2,2,0],[1,0,3,2],[1,3,3,1],[1,2,1,0]],[[1,2,2,0],[1,0,3,2],[1,3,3,1],[1,3,0,1]],[[1,2,2,0],[1,0,3,2],[1,3,3,1],[2,2,0,1]],[[1,2,2,0],[1,0,3,2],[1,3,4,1],[1,2,0,1]],[[1,2,2,0],[1,0,3,2],[1,4,3,1],[1,2,0,1]],[[1,2,2,0],[1,0,3,3],[1,3,3,1],[1,2,0,1]],[[1,2,2,0],[1,0,4,2],[1,3,3,1],[1,2,0,1]],[[1,2,3,0],[1,0,3,2],[1,3,3,1],[1,2,0,1]],[[1,3,2,0],[1,0,3,2],[1,3,3,1],[1,2,0,1]],[[2,2,2,0],[1,0,3,2],[1,3,3,1],[1,2,0,1]],[[1,2,2,0],[1,0,3,2],[1,3,3,1],[1,1,3,0]],[[1,2,2,0],[1,0,3,2],[1,3,4,1],[1,1,2,0]],[[1,2,2,0],[1,0,3,2],[1,4,3,1],[1,1,2,0]],[[1,2,2,0],[1,0,3,3],[1,3,3,1],[1,1,2,0]],[[1,2,2,0],[1,0,4,2],[1,3,3,1],[1,1,2,0]],[[1,2,3,0],[1,0,3,2],[1,3,3,1],[1,1,2,0]],[[1,3,2,0],[1,0,3,2],[1,3,3,1],[1,1,2,0]],[[2,2,2,0],[1,0,3,2],[1,3,3,1],[1,1,2,0]],[[1,2,2,0],[1,0,3,2],[1,3,4,1],[1,1,1,1]],[[1,2,2,0],[1,0,3,2],[1,4,3,1],[1,1,1,1]],[[1,2,2,0],[1,0,3,3],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[1,0,4,2],[1,3,3,1],[1,1,1,1]],[[1,2,3,0],[1,0,3,2],[1,3,3,1],[1,1,1,1]],[[1,3,2,0],[1,0,3,2],[1,3,3,1],[1,1,1,1]],[[2,2,2,0],[1,0,3,2],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[1,0,3,2],[1,3,3,1],[0,1,2,2]],[[1,2,2,0],[1,0,3,2],[1,3,3,1],[0,1,3,1]],[[1,2,2,0],[1,0,3,2],[1,3,4,1],[0,1,2,1]],[[1,2,2,0],[1,0,3,2],[1,3,3,0],[1,3,1,1]],[[1,2,2,0],[1,0,3,2],[1,3,3,0],[2,2,1,1]],[[1,2,2,0],[1,0,3,2],[1,3,4,0],[1,2,1,1]],[[1,2,2,0],[1,0,3,2],[1,4,3,0],[1,2,1,1]],[[1,2,2,0],[1,0,3,3],[1,3,3,0],[1,2,1,1]],[[1,2,2,0],[1,0,4,2],[1,3,3,0],[1,2,1,1]],[[1,2,3,0],[1,0,3,2],[1,3,3,0],[1,2,1,1]],[[1,3,2,0],[1,0,3,2],[1,3,3,0],[1,2,1,1]],[[2,2,2,0],[1,0,3,2],[1,3,3,0],[1,2,1,1]],[[1,2,2,0],[1,0,3,2],[1,3,3,0],[1,1,2,2]],[[1,2,2,0],[1,0,3,2],[1,3,3,0],[1,1,3,1]],[[1,2,2,0],[1,0,3,2],[1,3,4,0],[1,1,2,1]],[[1,2,2,0],[1,0,3,2],[1,4,3,0],[1,1,2,1]],[[1,2,2,0],[1,0,3,3],[1,3,3,0],[1,1,2,1]],[[1,2,2,0],[1,0,4,2],[1,3,3,0],[1,1,2,1]],[[1,2,3,0],[1,0,3,2],[1,3,3,0],[1,1,2,1]],[[1,3,2,0],[1,0,3,2],[1,3,3,0],[1,1,2,1]],[[2,2,2,0],[1,0,3,2],[1,3,3,0],[1,1,2,1]],[[1,2,2,0],[1,0,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,0],[1,0,3,3],[1,3,2,2],[1,2,1,0]],[[1,2,2,0],[1,0,4,2],[1,3,2,2],[1,2,1,0]],[[1,2,3,0],[1,0,3,2],[1,3,2,2],[1,2,1,0]],[[1,3,2,0],[1,0,3,2],[1,3,2,2],[1,2,1,0]],[[2,2,2,0],[1,0,3,2],[1,3,2,2],[1,2,1,0]],[[1,2,2,0],[1,0,3,2],[1,3,2,2],[1,2,0,2]],[[1,2,2,0],[1,0,3,2],[1,3,2,3],[1,2,0,1]],[[1,2,2,0],[1,0,3,3],[1,3,2,2],[1,2,0,1]],[[1,2,2,0],[1,0,4,2],[1,3,2,2],[1,2,0,1]],[[1,2,3,0],[1,0,3,2],[1,3,2,2],[1,2,0,1]],[[1,3,2,0],[1,0,3,2],[1,3,2,2],[1,2,0,1]],[[2,2,2,0],[1,0,3,2],[1,3,2,2],[1,2,0,1]],[[1,2,2,0],[1,0,3,2],[1,3,2,3],[1,1,2,0]],[[1,2,2,0],[1,0,3,3],[1,3,2,2],[1,1,2,0]],[[1,2,2,0],[1,0,4,2],[1,3,2,2],[1,1,2,0]],[[1,2,3,0],[1,0,3,2],[1,3,2,2],[1,1,2,0]],[[1,3,2,0],[1,0,3,2],[1,3,2,2],[1,1,2,0]],[[2,2,2,0],[1,0,3,2],[1,3,2,2],[1,1,2,0]],[[1,2,2,0],[1,0,3,2],[1,3,2,2],[1,1,1,2]],[[1,2,2,0],[1,0,3,2],[1,3,2,3],[1,1,1,1]],[[1,2,2,0],[1,0,3,3],[1,3,2,2],[1,1,1,1]],[[1,2,2,0],[1,0,4,2],[1,3,2,2],[1,1,1,1]],[[1,2,3,0],[1,0,3,2],[1,3,2,2],[1,1,1,1]],[[1,3,2,0],[1,0,3,2],[1,3,2,2],[1,1,1,1]],[[2,2,2,0],[1,0,3,2],[1,3,2,2],[1,1,1,1]],[[1,2,2,0],[1,0,3,2],[1,3,2,2],[0,1,2,2]],[[1,2,2,0],[1,0,3,2],[1,3,2,2],[0,1,3,1]],[[1,2,2,0],[1,0,3,2],[1,3,2,3],[0,1,2,1]],[[1,2,2,0],[1,0,3,3],[1,3,2,2],[0,1,2,1]],[[1,2,2,0],[1,0,3,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,0],[1,0,3,2],[1,3,2,1],[1,3,2,0]],[[1,2,2,0],[1,0,3,2],[1,3,2,1],[2,2,2,0]],[[1,2,2,0],[1,0,3,2],[1,4,2,1],[1,2,2,0]],[[1,2,2,0],[1,0,3,2],[1,3,2,0],[1,2,2,2]],[[1,2,2,0],[1,0,3,2],[1,3,2,0],[1,2,3,1]],[[1,2,2,0],[1,0,3,2],[1,3,2,0],[1,3,2,1]],[[1,2,2,0],[1,0,3,2],[1,3,2,0],[2,2,2,1]],[[1,2,2,0],[1,0,3,2],[1,4,2,0],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[1,3,1,2],[1,1,2,2]],[[1,2,2,0],[1,0,3,2],[1,3,1,2],[1,1,3,1]],[[1,2,2,0],[1,0,3,2],[1,3,1,3],[1,1,2,1]],[[1,2,2,0],[1,0,3,3],[1,3,1,2],[1,1,2,1]],[[1,2,2,0],[1,0,4,2],[1,3,1,2],[1,1,2,1]],[[1,2,3,0],[1,0,3,2],[1,3,1,2],[1,1,2,1]],[[1,3,2,0],[1,0,3,2],[1,3,1,2],[1,1,2,1]],[[2,2,2,0],[1,0,3,2],[1,3,1,2],[1,1,2,1]],[[1,2,2,0],[1,0,3,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,2],[1,3,0,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,2],[1,3,0,2],[1,3,2,1]],[[1,2,2,0],[1,0,3,2],[1,3,0,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,2],[1,3,0,3],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[1,4,0,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,3],[1,3,0,2],[1,2,2,1]],[[1,2,2,0],[1,0,4,2],[1,3,0,2],[1,2,2,1]],[[1,2,3,0],[1,0,3,2],[1,3,0,2],[1,2,2,1]],[[1,3,2,0],[1,0,3,2],[1,3,0,2],[1,2,2,1]],[[2,2,2,0],[1,0,3,2],[1,3,0,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[1,0,3,2],[1,2,3,3],[0,2,2,0]],[[1,2,2,0],[1,0,3,2],[1,2,4,2],[0,2,2,0]],[[1,2,2,0],[1,0,3,3],[1,2,3,2],[0,2,2,0]],[[1,2,2,0],[1,0,3,2],[1,2,3,2],[0,2,1,2]],[[1,2,2,0],[1,0,3,2],[1,2,3,3],[0,2,1,1]],[[1,2,2,0],[1,0,3,2],[1,2,4,2],[0,2,1,1]],[[1,2,2,0],[1,0,3,3],[1,2,3,2],[0,2,1,1]],[[1,2,2,0],[1,0,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,0],[1,0,3,2],[1,2,3,1],[1,3,2,0]],[[1,2,2,0],[1,0,3,2],[1,2,3,1],[2,2,2,0]],[[1,2,2,0],[1,0,3,2],[1,2,4,1],[1,2,2,0]],[[1,2,2,0],[1,0,3,3],[1,2,3,1],[1,2,2,0]],[[1,2,2,0],[1,0,4,2],[1,2,3,1],[1,2,2,0]],[[1,2,3,0],[1,0,3,2],[1,2,3,1],[1,2,2,0]],[[1,3,2,0],[1,0,3,2],[1,2,3,1],[1,2,2,0]],[[2,2,2,0],[1,0,3,2],[1,2,3,1],[1,2,2,0]],[[1,2,2,0],[1,0,3,2],[1,2,4,1],[1,2,1,1]],[[1,2,2,0],[1,0,3,3],[1,2,3,1],[1,2,1,1]],[[1,2,2,0],[1,0,4,2],[1,2,3,1],[1,2,1,1]],[[1,2,3,0],[1,0,3,2],[1,2,3,1],[1,2,1,1]],[[1,3,2,0],[1,0,3,2],[1,2,3,1],[1,2,1,1]],[[2,2,2,0],[1,0,3,2],[1,2,3,1],[1,2,1,1]],[[1,2,2,0],[1,0,3,2],[1,2,3,1],[0,2,2,2]],[[1,2,2,0],[1,0,3,2],[1,2,3,1],[0,2,3,1]],[[1,2,2,0],[1,0,3,2],[1,2,4,1],[0,2,2,1]],[[1,2,2,0],[1,0,3,2],[1,2,3,0],[1,2,2,2]],[[1,2,2,0],[1,0,3,2],[1,2,3,0],[1,2,3,1]],[[1,2,2,0],[1,0,3,2],[1,2,3,0],[1,3,2,1]],[[1,2,2,0],[1,0,3,2],[1,2,3,0],[2,2,2,1]],[[1,2,2,0],[1,0,3,2],[1,2,4,0],[1,2,2,1]],[[1,2,2,0],[1,0,3,3],[1,2,3,0],[1,2,2,1]],[[1,2,2,0],[1,0,4,2],[1,2,3,0],[1,2,2,1]],[[1,2,3,0],[1,0,3,2],[1,2,3,0],[1,2,2,1]],[[1,3,2,0],[1,0,3,2],[1,2,3,0],[1,2,2,1]],[[2,2,2,0],[1,0,3,2],[1,2,3,0],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[1,2,2,3],[1,2,2,0]],[[1,2,2,0],[1,0,3,3],[1,2,2,2],[1,2,2,0]],[[1,2,2,0],[1,0,4,2],[1,2,2,2],[1,2,2,0]],[[1,2,3,0],[1,0,3,2],[1,2,2,2],[1,2,2,0]],[[0,3,2,1],[2,3,3,2],[1,3,0,0],[0,2,2,0]],[[0,2,3,1],[2,3,3,2],[1,3,0,0],[0,2,2,0]],[[0,2,2,2],[2,3,3,2],[1,3,0,0],[0,2,2,0]],[[0,2,2,1],[3,3,3,2],[1,3,0,0],[0,2,2,0]],[[0,2,2,1],[2,4,3,2],[1,3,0,0],[0,2,2,0]],[[0,3,2,1],[2,3,3,2],[1,3,0,0],[1,1,2,0]],[[0,2,3,1],[2,3,3,2],[1,3,0,0],[1,1,2,0]],[[0,2,2,2],[2,3,3,2],[1,3,0,0],[1,1,2,0]],[[0,2,2,1],[3,3,3,2],[1,3,0,0],[1,1,2,0]],[[0,2,2,1],[2,4,3,2],[1,3,0,0],[1,1,2,0]],[[1,3,2,0],[1,0,3,2],[1,2,2,2],[1,2,2,0]],[[2,2,2,0],[1,0,3,2],[1,2,2,2],[1,2,2,0]],[[1,2,2,0],[1,0,3,2],[1,2,2,2],[1,2,1,2]],[[1,2,2,0],[1,0,3,2],[1,2,2,3],[1,2,1,1]],[[1,2,2,0],[1,0,3,3],[1,2,2,2],[1,2,1,1]],[[0,3,2,1],[2,3,3,2],[1,3,0,1],[0,1,1,1]],[[0,2,3,1],[2,3,3,2],[1,3,0,1],[0,1,1,1]],[[0,2,2,2],[2,3,3,2],[1,3,0,1],[0,1,1,1]],[[0,2,2,1],[3,3,3,2],[1,3,0,1],[0,1,1,1]],[[0,2,2,1],[2,4,3,2],[1,3,0,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,2],[1,3,0,1],[0,1,2,0]],[[0,2,3,1],[2,3,3,2],[1,3,0,1],[0,1,2,0]],[[0,2,2,2],[2,3,3,2],[1,3,0,1],[0,1,2,0]],[[0,2,2,1],[3,3,3,2],[1,3,0,1],[0,1,2,0]],[[0,2,2,1],[2,4,3,2],[1,3,0,1],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[1,3,0,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[1,3,0,1],[0,2,0,1]],[[0,2,2,2],[2,3,3,2],[1,3,0,1],[0,2,0,1]],[[0,2,2,1],[3,3,3,2],[1,3,0,1],[0,2,0,1]],[[0,2,2,1],[2,4,3,2],[1,3,0,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,2],[1,3,0,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,2],[1,3,0,1],[0,2,1,0]],[[0,2,2,2],[2,3,3,2],[1,3,0,1],[0,2,1,0]],[[0,2,2,1],[3,3,3,2],[1,3,0,1],[0,2,1,0]],[[0,2,2,1],[2,4,3,2],[1,3,0,1],[0,2,1,0]],[[1,2,2,0],[1,0,4,2],[1,2,2,2],[1,2,1,1]],[[1,2,3,0],[1,0,3,2],[1,2,2,2],[1,2,1,1]],[[1,3,2,0],[1,0,3,2],[1,2,2,2],[1,2,1,1]],[[2,2,2,0],[1,0,3,2],[1,2,2,2],[1,2,1,1]],[[1,2,2,0],[1,0,3,2],[1,2,2,2],[0,2,2,2]],[[1,2,2,0],[1,0,3,2],[1,2,2,2],[0,2,3,1]],[[1,2,2,0],[1,0,3,2],[1,2,2,3],[0,2,2,1]],[[1,2,2,0],[1,0,3,3],[1,2,2,2],[0,2,2,1]],[[1,2,2,0],[1,0,3,2],[1,2,1,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,2],[1,2,1,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,2],[1,2,1,2],[1,3,2,1]],[[0,3,2,1],[2,3,3,2],[1,3,0,1],[1,0,1,1]],[[0,2,3,1],[2,3,3,2],[1,3,0,1],[1,0,1,1]],[[0,2,2,2],[2,3,3,2],[1,3,0,1],[1,0,1,1]],[[0,2,2,1],[3,3,3,2],[1,3,0,1],[1,0,1,1]],[[0,2,2,1],[2,4,3,2],[1,3,0,1],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[1,3,0,1],[1,0,2,0]],[[0,2,3,1],[2,3,3,2],[1,3,0,1],[1,0,2,0]],[[0,2,2,2],[2,3,3,2],[1,3,0,1],[1,0,2,0]],[[0,2,2,1],[3,3,3,2],[1,3,0,1],[1,0,2,0]],[[0,2,2,1],[2,4,3,2],[1,3,0,1],[1,0,2,0]],[[0,3,2,1],[2,3,3,2],[1,3,0,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,2],[1,3,0,1],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[1,3,0,1],[1,1,0,1]],[[0,2,2,1],[3,3,3,2],[1,3,0,1],[1,1,0,1]],[[0,2,2,1],[2,4,3,2],[1,3,0,1],[1,1,0,1]],[[0,3,2,1],[2,3,3,2],[1,3,0,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[1,3,0,1],[1,1,1,0]],[[0,2,2,2],[2,3,3,2],[1,3,0,1],[1,1,1,0]],[[0,2,2,1],[3,3,3,2],[1,3,0,1],[1,1,1,0]],[[0,2,2,1],[2,4,3,2],[1,3,0,1],[1,1,1,0]],[[1,2,2,0],[1,0,3,2],[1,2,1,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,2],[1,2,1,3],[1,2,2,1]],[[1,2,2,0],[1,0,3,3],[1,2,1,2],[1,2,2,1]],[[1,2,2,0],[1,0,4,2],[1,2,1,2],[1,2,2,1]],[[1,2,3,0],[1,0,3,2],[1,2,1,2],[1,2,2,1]],[[1,3,2,0],[1,0,3,2],[1,2,1,2],[1,2,2,1]],[[2,2,2,0],[1,0,3,2],[1,2,1,2],[1,2,2,1]],[[0,3,2,1],[2,3,3,2],[1,3,0,1],[1,2,0,0]],[[0,2,3,1],[2,3,3,2],[1,3,0,1],[1,2,0,0]],[[0,2,2,2],[2,3,3,2],[1,3,0,1],[1,2,0,0]],[[0,2,2,1],[3,3,3,2],[1,3,0,1],[1,2,0,0]],[[0,2,2,1],[2,4,3,2],[1,3,0,1],[1,2,0,0]],[[1,2,2,0],[1,0,3,2],[1,1,3,2],[0,2,2,2]],[[1,2,2,0],[1,0,3,2],[1,1,3,2],[0,2,3,1]],[[1,2,2,0],[1,0,3,2],[1,1,3,3],[0,2,2,1]],[[1,2,2,0],[1,0,3,3],[1,1,3,2],[0,2,2,1]],[[1,2,2,0],[1,0,3,2],[0,3,3,3],[1,2,1,0]],[[1,2,2,0],[1,0,3,2],[0,3,4,2],[1,2,1,0]],[[1,2,2,0],[1,0,3,3],[0,3,3,2],[1,2,1,0]],[[1,2,2,0],[1,0,3,2],[0,3,3,2],[1,2,0,2]],[[1,2,2,0],[1,0,3,2],[0,3,3,3],[1,2,0,1]],[[1,2,2,0],[1,0,3,2],[0,3,4,2],[1,2,0,1]],[[0,3,2,1],[2,3,3,2],[1,3,0,2],[0,0,1,1]],[[0,2,3,1],[2,3,3,2],[1,3,0,2],[0,0,1,1]],[[0,2,2,2],[2,3,3,2],[1,3,0,2],[0,0,1,1]],[[0,2,2,1],[2,3,3,3],[1,3,0,2],[0,0,1,1]],[[0,3,2,1],[2,3,3,2],[1,3,0,2],[0,0,2,0]],[[0,2,3,1],[2,3,3,2],[1,3,0,2],[0,0,2,0]],[[0,2,2,2],[2,3,3,2],[1,3,0,2],[0,0,2,0]],[[0,2,2,1],[2,3,3,3],[1,3,0,2],[0,0,2,0]],[[0,3,2,1],[2,3,3,2],[1,3,0,2],[0,1,0,1]],[[0,2,3,1],[2,3,3,2],[1,3,0,2],[0,1,0,1]],[[0,2,2,2],[2,3,3,2],[1,3,0,2],[0,1,0,1]],[[0,2,2,1],[2,3,3,3],[1,3,0,2],[0,1,0,1]],[[1,2,2,0],[1,0,3,3],[0,3,3,2],[1,2,0,1]],[[1,2,2,0],[1,0,3,2],[0,3,3,2],[1,1,3,0]],[[1,2,2,0],[1,0,3,2],[0,3,3,3],[1,1,2,0]],[[1,2,2,0],[1,0,3,2],[0,3,4,2],[1,1,2,0]],[[1,2,2,0],[1,0,3,3],[0,3,3,2],[1,1,2,0]],[[1,2,2,0],[1,0,3,2],[0,3,3,2],[1,1,1,2]],[[0,3,2,1],[2,3,3,2],[1,3,0,2],[0,2,0,0]],[[0,2,3,1],[2,3,3,2],[1,3,0,2],[0,2,0,0]],[[0,2,2,2],[2,3,3,2],[1,3,0,2],[0,2,0,0]],[[0,2,2,1],[3,3,3,2],[1,3,0,2],[0,2,0,0]],[[0,2,2,1],[2,4,3,2],[1,3,0,2],[0,2,0,0]],[[1,2,2,0],[1,0,3,2],[0,3,3,3],[1,1,1,1]],[[1,2,2,0],[1,0,3,2],[0,3,4,2],[1,1,1,1]],[[1,2,2,0],[1,0,3,3],[0,3,3,2],[1,1,1,1]],[[1,2,2,0],[1,0,3,2],[0,3,3,2],[1,0,2,2]],[[1,2,2,0],[1,0,3,2],[0,3,3,3],[1,0,2,1]],[[1,2,2,0],[1,0,3,2],[0,3,4,2],[1,0,2,1]],[[1,2,2,0],[1,0,3,3],[0,3,3,2],[1,0,2,1]],[[1,2,2,0],[1,0,3,2],[0,3,3,1],[1,1,2,2]],[[1,2,2,0],[1,0,3,2],[0,3,3,1],[1,1,3,1]],[[1,2,2,0],[1,0,3,2],[0,3,4,1],[1,1,2,1]],[[1,2,2,0],[1,0,3,2],[0,3,2,2],[1,1,2,2]],[[1,2,2,0],[1,0,3,2],[0,3,2,2],[1,1,3,1]],[[1,2,2,0],[1,0,3,2],[0,3,2,3],[1,1,2,1]],[[1,2,2,0],[1,0,3,3],[0,3,2,2],[1,1,2,1]],[[1,2,2,0],[1,0,3,2],[0,2,3,2],[1,2,3,0]],[[1,2,2,0],[1,0,3,2],[0,2,3,2],[1,3,2,0]],[[1,2,2,0],[1,0,3,2],[0,2,3,3],[1,2,2,0]],[[1,2,2,0],[1,0,3,2],[0,2,4,2],[1,2,2,0]],[[1,2,2,0],[1,0,3,3],[0,2,3,2],[1,2,2,0]],[[0,3,2,1],[2,3,3,2],[1,3,0,2],[1,0,0,1]],[[0,2,3,1],[2,3,3,2],[1,3,0,2],[1,0,0,1]],[[0,2,2,2],[2,3,3,2],[1,3,0,2],[1,0,0,1]],[[0,2,2,1],[2,3,3,3],[1,3,0,2],[1,0,0,1]],[[1,2,2,0],[1,0,3,2],[0,2,3,2],[1,2,1,2]],[[1,2,2,0],[1,0,3,2],[0,2,3,3],[1,2,1,1]],[[1,2,2,0],[1,0,3,2],[0,2,4,2],[1,2,1,1]],[[1,2,2,0],[1,0,3,3],[0,2,3,2],[1,2,1,1]],[[1,2,2,0],[1,0,3,2],[0,2,3,1],[1,2,2,2]],[[1,2,2,0],[1,0,3,2],[0,2,3,1],[1,2,3,1]],[[1,2,2,0],[1,0,3,2],[0,2,3,1],[1,3,2,1]],[[1,2,2,0],[1,0,3,2],[0,2,4,1],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[0,2,2,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,2],[0,2,2,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,2],[0,2,2,2],[1,3,2,1]],[[0,3,2,1],[2,3,3,2],[1,3,0,2],[1,1,0,0]],[[0,2,3,1],[2,3,3,2],[1,3,0,2],[1,1,0,0]],[[0,2,2,2],[2,3,3,2],[1,3,0,2],[1,1,0,0]],[[0,2,2,1],[3,3,3,2],[1,3,0,2],[1,1,0,0]],[[0,2,2,1],[2,4,3,2],[1,3,0,2],[1,1,0,0]],[[1,2,2,0],[1,0,3,2],[0,2,2,3],[1,2,2,1]],[[1,2,2,0],[1,0,3,3],[0,2,2,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,2],[0,1,3,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,2],[0,1,3,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,2],[0,1,3,3],[1,2,2,1]],[[1,2,2,0],[1,0,3,3],[0,1,3,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[1,0,3,1],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[1,0,3,1],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[1,0,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[1,0,3,1],[2,3,4,2],[1,1,1,0]],[[1,2,2,0],[1,0,3,1],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[1,0,3,1],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[1,0,4,1],[2,3,3,2],[1,1,1,0]],[[1,2,3,0],[1,0,3,1],[2,3,3,2],[1,1,1,0]],[[1,3,2,0],[1,0,3,1],[2,3,3,2],[1,1,1,0]],[[2,2,2,0],[1,0,3,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[1,1,0,2]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[2,1,0,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,3],[1,1,0,1]],[[1,2,2,0],[1,0,3,1],[2,3,4,2],[1,1,0,1]],[[1,2,2,0],[1,0,3,1],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[1,0,3,1],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[1,0,4,1],[2,3,3,2],[1,1,0,1]],[[1,2,3,0],[1,0,3,1],[2,3,3,2],[1,1,0,1]],[[1,3,2,0],[1,0,3,1],[2,3,3,2],[1,1,0,1]],[[2,2,2,0],[1,0,3,1],[2,3,3,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,2],[1,3,1,0],[0,1,1,1]],[[0,2,3,1],[2,3,3,2],[1,3,1,0],[0,1,1,1]],[[0,2,2,2],[2,3,3,2],[1,3,1,0],[0,1,1,1]],[[0,2,2,1],[3,3,3,2],[1,3,1,0],[0,1,1,1]],[[0,2,2,1],[2,4,3,2],[1,3,1,0],[0,1,1,1]],[[0,3,2,1],[2,3,3,2],[1,3,1,0],[0,1,2,0]],[[0,2,3,1],[2,3,3,2],[1,3,1,0],[0,1,2,0]],[[0,2,2,2],[2,3,3,2],[1,3,1,0],[0,1,2,0]],[[0,2,2,1],[3,3,3,2],[1,3,1,0],[0,1,2,0]],[[0,2,2,1],[2,4,3,2],[1,3,1,0],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[1,3,1,0],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[1,3,1,0],[0,2,0,1]],[[0,2,2,2],[2,3,3,2],[1,3,1,0],[0,2,0,1]],[[0,2,2,1],[3,3,3,2],[1,3,1,0],[0,2,0,1]],[[0,2,2,1],[2,4,3,2],[1,3,1,0],[0,2,0,1]],[[0,3,2,1],[2,3,3,2],[1,3,1,0],[0,2,1,0]],[[0,2,3,1],[2,3,3,2],[1,3,1,0],[0,2,1,0]],[[0,2,2,2],[2,3,3,2],[1,3,1,0],[0,2,1,0]],[[0,2,2,1],[3,3,3,2],[1,3,1,0],[0,2,1,0]],[[0,2,2,1],[2,4,3,2],[1,3,1,0],[0,2,1,0]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[1,0,3,0]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[1,0,3,1],[2,3,3,3],[1,0,2,0]],[[1,2,2,0],[1,0,3,1],[2,3,4,2],[1,0,2,0]],[[1,2,2,0],[1,0,3,1],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[1,0,3,1],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[1,0,4,1],[2,3,3,2],[1,0,2,0]],[[1,2,3,0],[1,0,3,1],[2,3,3,2],[1,0,2,0]],[[1,3,2,0],[1,0,3,1],[2,3,3,2],[1,0,2,0]],[[2,2,2,0],[1,0,3,1],[2,3,3,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,2],[1,3,1,0],[1,0,1,1]],[[0,2,3,1],[2,3,3,2],[1,3,1,0],[1,0,1,1]],[[0,2,2,2],[2,3,3,2],[1,3,1,0],[1,0,1,1]],[[0,2,2,1],[3,3,3,2],[1,3,1,0],[1,0,1,1]],[[0,2,2,1],[2,4,3,2],[1,3,1,0],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[1,3,1,0],[1,0,2,0]],[[0,2,3,1],[2,3,3,2],[1,3,1,0],[1,0,2,0]],[[0,2,2,2],[2,3,3,2],[1,3,1,0],[1,0,2,0]],[[0,2,2,1],[3,3,3,2],[1,3,1,0],[1,0,2,0]],[[0,2,2,1],[2,4,3,2],[1,3,1,0],[1,0,2,0]],[[0,3,2,1],[2,3,3,2],[1,3,1,0],[1,1,0,1]],[[0,2,3,1],[2,3,3,2],[1,3,1,0],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[1,3,1,0],[1,1,0,1]],[[0,2,2,1],[3,3,3,2],[1,3,1,0],[1,1,0,1]],[[0,2,2,1],[2,4,3,2],[1,3,1,0],[1,1,0,1]],[[0,3,2,1],[2,3,3,2],[1,3,1,0],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[1,3,1,0],[1,1,1,0]],[[0,2,2,2],[2,3,3,2],[1,3,1,0],[1,1,1,0]],[[0,2,2,1],[3,3,3,2],[1,3,1,0],[1,1,1,0]],[[0,2,2,1],[2,4,3,2],[1,3,1,0],[1,1,1,0]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[1,0,1,2]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[2,0,1,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,3],[1,0,1,1]],[[1,2,2,0],[1,0,3,1],[2,3,4,2],[1,0,1,1]],[[1,2,2,0],[1,0,3,1],[2,4,3,2],[1,0,1,1]],[[1,2,2,0],[1,0,3,1],[3,3,3,2],[1,0,1,1]],[[1,2,2,0],[1,0,4,1],[2,3,3,2],[1,0,1,1]],[[1,2,3,0],[1,0,3,1],[2,3,3,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[1,3,1,0],[1,2,0,0]],[[0,2,3,1],[2,3,3,2],[1,3,1,0],[1,2,0,0]],[[0,2,2,2],[2,3,3,2],[1,3,1,0],[1,2,0,0]],[[0,2,2,1],[3,3,3,2],[1,3,1,0],[1,2,0,0]],[[0,2,2,1],[2,4,3,2],[1,3,1,0],[1,2,0,0]],[[1,3,2,0],[1,0,3,1],[2,3,3,2],[1,0,1,1]],[[2,2,2,0],[1,0,3,1],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[1,0,3,1],[2,3,3,3],[0,2,1,0]],[[1,2,2,0],[1,0,3,1],[2,3,4,2],[0,2,1,0]],[[1,2,2,0],[1,0,3,1],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[1,0,3,1],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,0,4,1],[2,3,3,2],[0,2,1,0]],[[1,2,3,0],[1,0,3,1],[2,3,3,2],[0,2,1,0]],[[1,3,2,0],[1,0,3,1],[2,3,3,2],[0,2,1,0]],[[2,2,2,0],[1,0,3,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[0,2,0,2]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[0,3,0,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,3],[0,2,0,1]],[[1,2,2,0],[1,0,3,1],[2,3,4,2],[0,2,0,1]],[[1,2,2,0],[1,0,3,1],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[1,0,3,1],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,0,4,1],[2,3,3,2],[0,2,0,1]],[[1,2,3,0],[1,0,3,1],[2,3,3,2],[0,2,0,1]],[[1,3,2,0],[1,0,3,1],[2,3,3,2],[0,2,0,1]],[[2,2,2,0],[1,0,3,1],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[0,1,3,0]],[[1,2,2,0],[1,0,3,1],[2,3,3,3],[0,1,2,0]],[[1,2,2,0],[1,0,3,1],[2,3,4,2],[0,1,2,0]],[[1,2,2,0],[1,0,3,1],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[1,0,3,1],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,0,4,1],[2,3,3,2],[0,1,2,0]],[[1,2,3,0],[1,0,3,1],[2,3,3,2],[0,1,2,0]],[[1,3,2,0],[1,0,3,1],[2,3,3,2],[0,1,2,0]],[[2,2,2,0],[1,0,3,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[0,1,1,2]],[[1,2,2,0],[1,0,3,1],[2,3,3,3],[0,1,1,1]],[[1,2,2,0],[1,0,3,1],[2,3,4,2],[0,1,1,1]],[[1,2,2,0],[1,0,3,1],[2,4,3,2],[0,1,1,1]],[[1,2,2,0],[1,0,3,1],[3,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,0,4,1],[2,3,3,2],[0,1,1,1]],[[1,2,3,0],[1,0,3,1],[2,3,3,2],[0,1,1,1]],[[1,3,2,0],[1,0,3,1],[2,3,3,2],[0,1,1,1]],[[2,2,2,0],[1,0,3,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,2],[0,0,2,2]],[[1,2,2,0],[1,0,3,1],[2,3,3,3],[0,0,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,4,2],[0,0,2,1]],[[1,2,2,0],[1,0,4,1],[2,3,3,2],[0,0,2,1]],[[1,2,3,0],[1,0,3,1],[2,3,3,2],[0,0,2,1]],[[1,3,2,0],[1,0,3,1],[2,3,3,2],[0,0,2,1]],[[2,2,2,0],[1,0,3,1],[2,3,3,2],[0,0,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[1,0,3,1],[2,4,3,1],[1,2,0,1]],[[1,2,2,0],[1,0,3,1],[3,3,3,1],[1,2,0,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[1,0,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,2,0],[1,0,3,1],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[1,0,3,1],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[1,0,4,1],[2,3,3,1],[1,1,1,1]],[[1,2,3,0],[1,0,3,1],[2,3,3,1],[1,1,1,1]],[[1,3,2,0],[1,0,3,1],[2,3,3,1],[1,1,1,1]],[[2,2,2,0],[1,0,3,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,1],[1,0,2,2]],[[1,2,2,0],[1,0,3,1],[2,3,3,1],[1,0,3,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,4,1],[1,0,2,1]],[[1,2,2,0],[1,0,3,1],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[1,0,3,1],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[1,0,4,1],[2,3,3,1],[1,0,2,1]],[[1,2,3,0],[1,0,3,1],[2,3,3,1],[1,0,2,1]],[[1,3,2,0],[1,0,3,1],[2,3,3,1],[1,0,2,1]],[[2,2,2,0],[1,0,3,1],[2,3,3,1],[1,0,2,1]],[[0,3,2,1],[2,3,3,2],[1,3,1,2],[0,0,0,1]],[[0,2,3,1],[2,3,3,2],[1,3,1,2],[0,0,0,1]],[[0,2,2,2],[2,3,3,2],[1,3,1,2],[0,0,0,1]],[[0,2,2,1],[2,3,3,3],[1,3,1,2],[0,0,0,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[1,0,3,1],[2,3,4,1],[0,2,1,1]],[[1,2,2,0],[1,0,3,1],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[1,0,3,1],[3,3,3,1],[0,2,1,1]],[[1,2,2,0],[1,0,4,1],[2,3,3,1],[0,2,1,1]],[[1,2,3,0],[1,0,3,1],[2,3,3,1],[0,2,1,1]],[[1,3,2,0],[1,0,3,1],[2,3,3,1],[0,2,1,1]],[[2,2,2,0],[1,0,3,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,1],[0,1,2,2]],[[1,2,2,0],[1,0,3,1],[2,3,3,1],[0,1,3,1]],[[1,2,2,0],[1,0,3,1],[2,3,4,1],[0,1,2,1]],[[1,2,2,0],[1,0,3,1],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[1,0,3,1],[3,3,3,1],[0,1,2,1]],[[1,2,2,0],[1,0,4,1],[2,3,3,1],[0,1,2,1]],[[1,2,3,0],[1,0,3,1],[2,3,3,1],[0,1,2,1]],[[1,3,2,0],[1,0,3,1],[2,3,3,1],[0,1,2,1]],[[2,2,2,0],[1,0,3,1],[2,3,3,1],[0,1,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,0],[2,1,2,1]],[[1,2,2,0],[1,0,3,1],[2,4,3,0],[1,1,2,1]],[[1,2,2,0],[1,0,3,1],[3,3,3,0],[1,1,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,0],[0,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,3,3,0],[0,3,2,1]],[[1,2,2,0],[1,0,3,1],[2,4,3,0],[0,2,2,1]],[[1,2,2,0],[1,0,3,1],[3,3,3,0],[0,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[1,0,3,1],[2,4,2,2],[1,1,2,0]],[[1,2,2,0],[1,0,3,1],[3,3,2,2],[1,1,2,0]],[[1,2,2,0],[1,0,3,1],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[1,0,3,1],[2,3,2,2],[1,0,3,1]],[[1,2,2,0],[1,0,3,1],[2,3,2,3],[1,0,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,2,2],[0,2,3,0]],[[1,2,2,0],[1,0,3,1],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[1,0,3,1],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[1,0,3,1],[3,3,2,2],[0,2,2,0]],[[1,2,2,0],[1,0,3,1],[2,3,2,2],[0,1,2,2]],[[1,2,2,0],[1,0,3,1],[2,3,2,2],[0,1,3,1]],[[1,2,2,0],[1,0,3,1],[2,3,2,3],[0,1,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[1,0,3,1],[2,4,2,1],[1,1,2,1]],[[1,2,2,0],[1,0,3,1],[3,3,2,1],[1,1,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,2,1],[0,2,2,2]],[[1,2,2,0],[1,0,3,1],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,3,2,1],[0,3,2,1]],[[1,2,2,0],[1,0,3,1],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[1,0,3,1],[3,3,2,1],[0,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,1,2],[2,1,2,1]],[[1,2,2,0],[1,0,3,1],[2,4,1,2],[1,1,2,1]],[[1,2,2,0],[1,0,3,1],[3,3,1,2],[1,1,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,1,2],[0,2,2,2]],[[1,2,2,0],[1,0,3,1],[2,3,1,2],[0,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,3,1,2],[0,3,2,1]],[[1,2,2,0],[1,0,3,1],[2,3,1,3],[0,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,4,1,2],[0,2,2,1]],[[1,2,2,0],[1,0,3,1],[3,3,1,2],[0,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[1,0,3,1],[2,2,3,2],[2,2,1,0]],[[1,2,2,0],[1,0,3,1],[3,2,3,2],[1,2,1,0]],[[1,2,2,0],[1,0,3,1],[2,2,3,2],[1,3,0,1]],[[1,2,2,0],[1,0,3,1],[2,2,3,2],[2,2,0,1]],[[1,2,2,0],[1,0,3,1],[3,2,3,2],[1,2,0,1]],[[1,2,2,0],[1,0,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,2,0],[1,0,3,1],[2,2,3,2],[0,3,2,0]],[[1,2,2,0],[1,0,3,1],[2,2,3,3],[0,2,2,0]],[[1,2,2,0],[1,0,3,1],[2,2,4,2],[0,2,2,0]],[[1,2,2,0],[1,0,4,1],[2,2,3,2],[0,2,2,0]],[[1,2,3,0],[1,0,3,1],[2,2,3,2],[0,2,2,0]],[[1,3,2,0],[1,0,3,1],[2,2,3,2],[0,2,2,0]],[[2,2,2,0],[1,0,3,1],[2,2,3,2],[0,2,2,0]],[[1,2,2,0],[1,0,3,1],[2,2,3,2],[0,2,1,2]],[[1,2,2,0],[1,0,3,1],[2,2,3,3],[0,2,1,1]],[[1,2,2,0],[1,0,3,1],[2,2,4,2],[0,2,1,1]],[[1,2,2,0],[1,0,4,1],[2,2,3,2],[0,2,1,1]],[[1,2,3,0],[1,0,3,1],[2,2,3,2],[0,2,1,1]],[[1,3,2,0],[1,0,3,1],[2,2,3,2],[0,2,1,1]],[[2,2,2,0],[1,0,3,1],[2,2,3,2],[0,2,1,1]],[[1,2,2,0],[1,0,3,1],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[1,0,3,1],[2,2,3,1],[2,2,1,1]],[[1,2,2,0],[1,0,3,1],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[1,0,3,1],[2,2,3,1],[0,2,2,2]],[[1,2,2,0],[1,0,3,1],[2,2,3,1],[0,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,2,3,1],[0,3,2,1]],[[1,2,2,0],[1,0,3,1],[2,2,4,1],[0,2,2,1]],[[1,2,2,0],[1,0,4,1],[2,2,3,1],[0,2,2,1]],[[1,2,3,0],[1,0,3,1],[2,2,3,1],[0,2,2,1]],[[1,3,2,0],[1,0,3,1],[2,2,3,1],[0,2,2,1]],[[2,2,2,0],[1,0,3,1],[2,2,3,1],[0,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,2,3,0],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,2,3,0],[1,3,2,1]],[[1,2,2,0],[1,0,3,1],[2,2,3,0],[2,2,2,1]],[[1,2,2,0],[1,0,3,1],[3,2,3,0],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,2,2,2],[1,2,3,0]],[[1,2,2,0],[1,0,3,1],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[1,0,3,1],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[1,0,3,1],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[1,0,3,1],[2,2,2,2],[0,2,2,2]],[[1,2,2,0],[1,0,3,1],[2,2,2,2],[0,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,2,2,2],[0,3,2,1]],[[1,2,2,0],[1,0,3,1],[2,2,2,3],[0,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,2,2,1],[1,2,2,2]],[[1,2,2,0],[1,0,3,1],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[1,0,3,1],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[1,0,3,1],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,2,1,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,1],[2,2,1,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,2,1,2],[1,3,2,1]],[[1,2,2,0],[1,0,3,1],[2,2,1,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,2,1,3],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[3,2,1,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,1,3,2],[1,2,3,0]],[[1,2,2,0],[1,0,3,1],[2,1,3,2],[1,3,2,0]],[[1,2,2,0],[1,0,3,1],[2,1,3,2],[2,2,2,0]],[[1,2,2,0],[1,0,3,1],[2,1,3,3],[1,2,2,0]],[[1,2,2,0],[1,0,3,1],[2,1,4,2],[1,2,2,0]],[[1,2,2,0],[1,0,3,1],[3,1,3,2],[1,2,2,0]],[[1,2,2,0],[1,0,4,1],[2,1,3,2],[1,2,2,0]],[[1,2,3,0],[1,0,3,1],[2,1,3,2],[1,2,2,0]],[[1,3,2,0],[1,0,3,1],[2,1,3,2],[1,2,2,0]],[[2,2,2,0],[1,0,3,1],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[1,0,3,1],[2,1,3,2],[1,2,1,2]],[[1,2,2,0],[1,0,3,1],[2,1,3,3],[1,2,1,1]],[[1,2,2,0],[1,0,3,1],[2,1,4,2],[1,2,1,1]],[[1,2,2,0],[1,0,4,1],[2,1,3,2],[1,2,1,1]],[[1,2,3,0],[1,0,3,1],[2,1,3,2],[1,2,1,1]],[[1,3,2,0],[1,0,3,1],[2,1,3,2],[1,2,1,1]],[[2,2,2,0],[1,0,3,1],[2,1,3,2],[1,2,1,1]],[[1,2,2,0],[1,0,3,1],[2,1,3,2],[0,2,2,2]],[[1,2,2,0],[1,0,3,1],[2,1,3,2],[0,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,1,3,3],[0,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,1,3,1],[1,2,2,2]],[[1,2,2,0],[1,0,3,1],[2,1,3,1],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,1,3,1],[1,3,2,1]],[[1,2,2,0],[1,0,3,1],[2,1,3,1],[2,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,1,4,1],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[3,1,3,1],[1,2,2,1]],[[1,2,2,0],[1,0,4,1],[2,1,3,1],[1,2,2,1]],[[1,2,3,0],[1,0,3,1],[2,1,3,1],[1,2,2,1]],[[1,3,2,0],[1,0,3,1],[2,1,3,1],[1,2,2,1]],[[2,2,2,0],[1,0,3,1],[2,1,3,1],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,1],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[1,0,3,1],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,1,2,3],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[3,1,2,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,1],[2,0,3,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[2,0,3,3],[1,2,2,1]],[[0,3,2,1],[2,3,3,2],[1,3,2,0],[0,2,0,0]],[[0,2,3,1],[2,3,3,2],[1,3,2,0],[0,2,0,0]],[[0,2,2,2],[2,3,3,2],[1,3,2,0],[0,2,0,0]],[[0,2,2,1],[3,3,3,2],[1,3,2,0],[0,2,0,0]],[[0,2,2,1],[2,4,3,2],[1,3,2,0],[0,2,0,0]],[[1,2,2,0],[1,0,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[1,0,3,1],[1,3,3,2],[2,2,1,0]],[[1,2,2,0],[1,0,3,1],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[1,0,3,1],[1,3,4,2],[1,2,1,0]],[[1,2,2,0],[1,0,3,1],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[1,0,4,1],[1,3,3,2],[1,2,1,0]],[[1,2,3,0],[1,0,3,1],[1,3,3,2],[1,2,1,0]],[[1,3,2,0],[1,0,3,1],[1,3,3,2],[1,2,1,0]],[[2,2,2,0],[1,0,3,1],[1,3,3,2],[1,2,1,0]],[[1,2,2,0],[1,0,3,1],[1,3,3,2],[1,2,0,2]],[[1,2,2,0],[1,0,3,1],[1,3,3,2],[1,3,0,1]],[[1,2,2,0],[1,0,3,1],[1,3,3,2],[2,2,0,1]],[[1,2,2,0],[1,0,3,1],[1,3,3,3],[1,2,0,1]],[[1,2,2,0],[1,0,3,1],[1,3,4,2],[1,2,0,1]],[[1,2,2,0],[1,0,3,1],[1,4,3,2],[1,2,0,1]],[[1,2,2,0],[1,0,4,1],[1,3,3,2],[1,2,0,1]],[[0,3,2,1],[2,3,3,2],[1,3,2,0],[1,1,0,0]],[[0,2,3,1],[2,3,3,2],[1,3,2,0],[1,1,0,0]],[[0,2,2,2],[2,3,3,2],[1,3,2,0],[1,1,0,0]],[[0,2,2,1],[3,3,3,2],[1,3,2,0],[1,1,0,0]],[[0,2,2,1],[2,4,3,2],[1,3,2,0],[1,1,0,0]],[[1,2,3,0],[1,0,3,1],[1,3,3,2],[1,2,0,1]],[[1,3,2,0],[1,0,3,1],[1,3,3,2],[1,2,0,1]],[[2,2,2,0],[1,0,3,1],[1,3,3,2],[1,2,0,1]],[[1,2,2,0],[1,0,3,1],[1,3,3,2],[1,1,3,0]],[[1,2,2,0],[1,0,3,1],[1,3,3,3],[1,1,2,0]],[[1,2,2,0],[1,0,3,1],[1,3,4,2],[1,1,2,0]],[[1,2,2,0],[1,0,3,1],[1,4,3,2],[1,1,2,0]],[[1,2,2,0],[1,0,4,1],[1,3,3,2],[1,1,2,0]],[[1,2,3,0],[1,0,3,1],[1,3,3,2],[1,1,2,0]],[[1,3,2,0],[1,0,3,1],[1,3,3,2],[1,1,2,0]],[[2,2,2,0],[1,0,3,1],[1,3,3,2],[1,1,2,0]],[[1,2,2,0],[1,0,3,1],[1,3,3,2],[1,1,1,2]],[[1,2,2,0],[1,0,3,1],[1,3,3,3],[1,1,1,1]],[[1,2,2,0],[1,0,3,1],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[1,0,3,1],[1,4,3,2],[1,1,1,1]],[[1,2,2,0],[1,0,4,1],[1,3,3,2],[1,1,1,1]],[[1,2,3,0],[1,0,3,1],[1,3,3,2],[1,1,1,1]],[[1,3,2,0],[1,0,3,1],[1,3,3,2],[1,1,1,1]],[[2,2,2,0],[1,0,3,1],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[1,0,3,1],[1,3,3,2],[1,0,2,2]],[[1,2,2,0],[1,0,3,1],[1,3,3,3],[1,0,2,1]],[[1,2,2,0],[1,0,3,1],[1,3,4,2],[1,0,2,1]],[[1,2,2,0],[1,0,3,1],[1,3,3,1],[1,3,1,1]],[[1,2,2,0],[1,0,3,1],[1,3,3,1],[2,2,1,1]],[[1,2,2,0],[1,0,3,1],[1,3,4,1],[1,2,1,1]],[[1,2,2,0],[1,0,3,1],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[1,0,4,1],[1,3,3,1],[1,2,1,1]],[[1,2,3,0],[1,0,3,1],[1,3,3,1],[1,2,1,1]],[[1,3,2,0],[1,0,3,1],[1,3,3,1],[1,2,1,1]],[[2,2,2,0],[1,0,3,1],[1,3,3,1],[1,2,1,1]],[[1,2,2,0],[1,0,3,1],[1,3,3,1],[1,1,2,2]],[[1,2,2,0],[1,0,3,1],[1,3,3,1],[1,1,3,1]],[[1,2,2,0],[1,0,3,1],[1,3,4,1],[1,1,2,1]],[[1,2,2,0],[1,0,3,1],[1,4,3,1],[1,1,2,1]],[[1,2,2,0],[1,0,4,1],[1,3,3,1],[1,1,2,1]],[[1,2,3,0],[1,0,3,1],[1,3,3,1],[1,1,2,1]],[[1,3,2,0],[1,0,3,1],[1,3,3,1],[1,1,2,1]],[[2,2,2,0],[1,0,3,1],[1,3,3,1],[1,1,2,1]],[[1,2,2,0],[1,0,3,1],[1,3,3,0],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[1,3,3,0],[1,3,2,1]],[[1,2,2,0],[1,0,3,1],[1,3,3,0],[2,2,2,1]],[[1,2,2,0],[1,0,3,1],[1,4,3,0],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[1,3,2,2],[1,2,3,0]],[[1,2,2,0],[1,0,3,1],[1,3,2,2],[1,3,2,0]],[[1,2,2,0],[1,0,3,1],[1,3,2,2],[2,2,2,0]],[[1,2,2,0],[1,0,3,1],[1,4,2,2],[1,2,2,0]],[[1,2,2,0],[1,0,3,1],[1,3,2,2],[1,1,2,2]],[[1,2,2,0],[1,0,3,1],[1,3,2,2],[1,1,3,1]],[[1,2,2,0],[1,0,3,1],[1,3,2,3],[1,1,2,1]],[[1,2,2,0],[1,0,3,1],[1,3,2,1],[1,2,2,2]],[[1,2,2,0],[1,0,3,1],[1,3,2,1],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[1,0,3,1],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[1,0,3,1],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[1,3,1,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,1],[1,3,1,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[1,3,1,2],[1,3,2,1]],[[1,2,2,0],[1,0,3,1],[1,3,1,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,1],[1,3,1,3],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[1,4,1,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[1,2,3,2],[1,2,3,0]],[[1,2,2,0],[1,0,3,1],[1,2,3,2],[1,3,2,0]],[[1,2,2,0],[1,0,3,1],[1,2,3,2],[2,2,2,0]],[[1,2,2,0],[1,0,3,1],[1,2,3,3],[1,2,2,0]],[[1,2,2,0],[1,0,3,1],[1,2,4,2],[1,2,2,0]],[[1,2,2,0],[1,0,4,1],[1,2,3,2],[1,2,2,0]],[[1,2,3,0],[1,0,3,1],[1,2,3,2],[1,2,2,0]],[[1,3,2,0],[1,0,3,1],[1,2,3,2],[1,2,2,0]],[[2,2,2,0],[1,0,3,1],[1,2,3,2],[1,2,2,0]],[[1,2,2,0],[1,0,3,1],[1,2,3,2],[1,2,1,2]],[[1,2,2,0],[1,0,3,1],[1,2,3,3],[1,2,1,1]],[[1,2,2,0],[1,0,3,1],[1,2,4,2],[1,2,1,1]],[[1,2,2,0],[1,0,4,1],[1,2,3,2],[1,2,1,1]],[[1,2,3,0],[1,0,3,1],[1,2,3,2],[1,2,1,1]],[[1,3,2,0],[1,0,3,1],[1,2,3,2],[1,2,1,1]],[[2,2,2,0],[1,0,3,1],[1,2,3,2],[1,2,1,1]],[[1,2,2,0],[1,0,3,1],[1,2,3,1],[1,2,2,2]],[[1,2,2,0],[1,0,3,1],[1,2,3,1],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[1,2,3,1],[1,3,2,1]],[[1,2,2,0],[1,0,3,1],[1,2,3,1],[2,2,2,1]],[[1,2,2,0],[1,0,3,1],[1,2,4,1],[1,2,2,1]],[[1,2,2,0],[1,0,4,1],[1,2,3,1],[1,2,2,1]],[[1,2,3,0],[1,0,3,1],[1,2,3,1],[1,2,2,1]],[[1,3,2,0],[1,0,3,1],[1,2,3,1],[1,2,2,1]],[[2,2,2,0],[1,0,3,1],[1,2,3,1],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[1,2,2,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,1],[1,2,2,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[1,2,2,2],[1,3,2,1]],[[1,2,2,0],[1,0,3,1],[1,2,2,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,1],[1,2,2,3],[1,2,2,1]],[[1,2,2,0],[1,0,3,1],[1,1,3,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,1],[1,1,3,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,1],[1,1,3,3],[1,2,2,1]],[[1,2,2,0],[1,0,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,0],[1,0,3,0],[2,3,4,2],[1,1,1,1]],[[1,2,2,0],[1,0,3,0],[2,4,3,2],[1,1,1,1]],[[1,2,2,0],[1,0,3,0],[3,3,3,2],[1,1,1,1]],[[1,2,2,0],[1,0,3,0],[2,3,3,2],[1,0,2,2]],[[1,2,2,0],[1,0,3,0],[2,3,3,2],[1,0,3,1]],[[1,2,2,0],[1,0,3,0],[2,3,3,2],[2,0,2,1]],[[1,2,2,0],[1,0,3,0],[2,3,4,2],[1,0,2,1]],[[1,2,2,0],[1,0,3,0],[2,4,3,2],[1,0,2,1]],[[1,2,2,0],[1,0,3,0],[3,3,3,2],[1,0,2,1]],[[1,2,2,0],[1,0,3,0],[2,3,3,2],[0,3,1,1]],[[1,2,2,0],[1,0,3,0],[2,3,4,2],[0,2,1,1]],[[1,2,2,0],[1,0,3,0],[2,4,3,2],[0,2,1,1]],[[1,2,2,0],[1,0,3,0],[3,3,3,2],[0,2,1,1]],[[1,2,2,0],[1,0,3,0],[2,3,3,2],[0,1,2,2]],[[1,2,2,0],[1,0,3,0],[2,3,3,2],[0,1,3,1]],[[1,2,2,0],[1,0,3,0],[2,3,4,2],[0,1,2,1]],[[1,2,2,0],[1,0,3,0],[2,4,3,2],[0,1,2,1]],[[1,2,2,0],[1,0,3,0],[3,3,3,2],[0,1,2,1]],[[1,2,2,0],[1,0,3,0],[2,3,2,2],[2,1,2,1]],[[1,2,2,0],[1,0,3,0],[2,4,2,2],[1,1,2,1]],[[1,2,2,0],[1,0,3,0],[3,3,2,2],[1,1,2,1]],[[1,2,2,0],[1,0,3,0],[2,3,2,2],[0,2,2,2]],[[1,2,2,0],[1,0,3,0],[2,3,2,2],[0,2,3,1]],[[1,2,2,0],[1,0,3,0],[2,3,2,2],[0,3,2,1]],[[1,2,2,0],[1,0,3,0],[2,4,2,2],[0,2,2,1]],[[1,2,2,0],[1,0,3,0],[3,3,2,2],[0,2,2,1]],[[1,2,2,0],[1,0,3,0],[2,2,3,2],[1,3,1,1]],[[1,2,2,0],[1,0,3,0],[2,2,3,2],[2,2,1,1]],[[1,2,2,0],[1,0,3,0],[3,2,3,2],[1,2,1,1]],[[1,2,2,0],[1,0,3,0],[2,2,3,2],[0,2,2,2]],[[1,2,2,0],[1,0,3,0],[2,2,3,2],[0,2,3,1]],[[1,2,2,0],[1,0,3,0],[2,2,3,2],[0,3,2,1]],[[1,2,2,0],[1,0,3,0],[2,2,4,2],[0,2,2,1]],[[1,2,2,0],[1,0,3,0],[2,2,2,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,0],[2,2,2,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,0],[2,2,2,2],[1,3,2,1]],[[1,2,2,0],[1,0,3,0],[2,2,2,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,0],[3,2,2,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,0],[2,1,3,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,0],[2,1,3,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,0],[2,1,3,2],[1,3,2,1]],[[1,2,2,0],[1,0,3,0],[2,1,3,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,0],[2,1,4,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,0],[3,1,3,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,0],[1,3,3,2],[1,3,1,1]],[[1,2,2,0],[1,0,3,0],[1,3,3,2],[2,2,1,1]],[[1,2,2,0],[1,0,3,0],[1,3,4,2],[1,2,1,1]],[[1,2,2,0],[1,0,3,0],[1,4,3,2],[1,2,1,1]],[[1,2,2,0],[1,0,3,0],[1,3,3,2],[1,1,2,2]],[[1,2,2,0],[1,0,3,0],[1,3,3,2],[1,1,3,1]],[[1,2,2,0],[1,0,3,0],[1,3,4,2],[1,1,2,1]],[[1,2,2,0],[1,0,3,0],[1,4,3,2],[1,1,2,1]],[[1,2,2,0],[1,0,3,0],[1,3,2,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,0],[1,3,2,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,0],[1,3,2,2],[1,3,2,1]],[[1,2,2,0],[1,0,3,0],[1,3,2,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,0],[1,4,2,2],[1,2,2,1]],[[1,2,2,0],[1,0,3,0],[1,2,3,2],[1,2,2,2]],[[1,2,2,0],[1,0,3,0],[1,2,3,2],[1,2,3,1]],[[1,2,2,0],[1,0,3,0],[1,2,3,2],[1,3,2,1]],[[1,2,2,0],[1,0,3,0],[1,2,3,2],[2,2,2,1]],[[1,2,2,0],[1,0,3,0],[1,2,4,2],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[1,0,2,2],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[1,0,2,2],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[1,0,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[1,0,2,2],[2,3,4,2],[1,1,1,0]],[[1,2,2,0],[1,0,2,2],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[1,0,2,2],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[1,0,2,3],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[1,1,0,2]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[2,1,0,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,3],[1,1,0,1]],[[1,2,2,0],[1,0,2,2],[2,3,4,2],[1,1,0,1]],[[1,2,2,0],[1,0,2,2],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[1,0,2,2],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[1,0,2,3],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[1,0,3,0]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[1,0,2,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,0],[1,0,2,2],[2,3,4,2],[1,0,2,0]],[[1,2,2,0],[1,0,2,2],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[1,0,2,2],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[1,0,2,3],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[1,0,1,2]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[2,0,1,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,3],[1,0,1,1]],[[1,2,2,0],[1,0,2,2],[2,3,4,2],[1,0,1,1]],[[1,2,2,0],[1,0,2,2],[2,4,3,2],[1,0,1,1]],[[1,2,2,0],[1,0,2,2],[3,3,3,2],[1,0,1,1]],[[1,2,2,0],[1,0,2,3],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[1,0,2,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,0],[1,0,2,2],[2,3,4,2],[0,2,1,0]],[[1,2,2,0],[1,0,2,2],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[1,0,2,2],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,0,2,3],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[0,2,0,2]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[0,3,0,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,3],[0,2,0,1]],[[1,2,2,0],[1,0,2,2],[2,3,4,2],[0,2,0,1]],[[1,2,2,0],[1,0,2,2],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[1,0,2,2],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,0,2,3],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[0,1,3,0]],[[1,2,2,0],[1,0,2,2],[2,3,3,3],[0,1,2,0]],[[1,2,2,0],[1,0,2,2],[2,3,4,2],[0,1,2,0]],[[1,2,2,0],[1,0,2,2],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[1,0,2,2],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,0,2,3],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[0,1,1,2]],[[1,2,2,0],[1,0,2,2],[2,3,3,3],[0,1,1,1]],[[1,2,2,0],[1,0,2,2],[2,3,4,2],[0,1,1,1]],[[1,2,2,0],[1,0,2,2],[2,4,3,2],[0,1,1,1]],[[1,2,2,0],[1,0,2,2],[3,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,0,2,3],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,2],[0,0,2,2]],[[1,2,2,0],[1,0,2,2],[2,3,3,3],[0,0,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,4,2],[0,0,2,1]],[[1,2,2,0],[1,0,2,3],[2,3,3,2],[0,0,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[1,0,2,2],[2,3,4,1],[1,1,1,1]],[[1,2,2,0],[1,0,2,2],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[1,0,2,2],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,0],[1,0,2,2],[2,3,3,1],[1,0,3,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,4,1],[1,0,2,1]],[[1,2,2,0],[1,0,2,2],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[1,0,2,2],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[1,0,2,2],[2,3,4,1],[0,2,1,1]],[[1,2,2,0],[1,0,2,2],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[1,0,2,2],[3,3,3,1],[0,2,1,1]],[[1,2,2,0],[1,0,2,2],[2,3,3,1],[0,1,2,2]],[[1,2,2,0],[1,0,2,2],[2,3,3,1],[0,1,3,1]],[[1,2,2,0],[1,0,2,2],[2,3,4,1],[0,1,2,1]],[[1,2,2,0],[1,0,2,2],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[1,0,2,2],[3,3,3,1],[0,1,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[1,0,2,2],[2,4,2,2],[1,1,2,0]],[[1,2,2,0],[1,0,2,2],[3,3,2,2],[1,1,2,0]],[[1,2,2,0],[1,0,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[1,0,2,2],[2,3,2,2],[1,0,3,1]],[[1,2,2,0],[1,0,2,2],[2,3,2,3],[1,0,2,1]],[[1,2,2,0],[1,0,2,3],[2,3,2,2],[1,0,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,2,2],[0,2,3,0]],[[1,2,2,0],[1,0,2,2],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[1,0,2,2],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[1,0,2,2],[3,3,2,2],[0,2,2,0]],[[1,2,2,0],[1,0,2,2],[2,3,2,2],[0,1,2,2]],[[1,2,2,0],[1,0,2,2],[2,3,2,2],[0,1,3,1]],[[1,2,2,0],[1,0,2,2],[2,3,2,3],[0,1,2,1]],[[1,2,2,0],[1,0,2,3],[2,3,2,2],[0,1,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[1,0,2,2],[2,4,2,1],[1,1,2,1]],[[1,2,2,0],[1,0,2,2],[3,3,2,1],[1,1,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,2,1],[0,2,2,2]],[[1,2,2,0],[1,0,2,2],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[1,0,2,2],[2,3,2,1],[0,3,2,1]],[[1,2,2,0],[1,0,2,2],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[1,0,2,2],[3,3,2,1],[0,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,1,2],[2,1,2,1]],[[1,2,2,0],[1,0,2,2],[2,4,1,2],[1,1,2,1]],[[1,2,2,0],[1,0,2,2],[3,3,1,2],[1,1,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,1,2],[0,2,2,2]],[[1,2,2,0],[1,0,2,2],[2,3,1,2],[0,2,3,1]],[[1,2,2,0],[1,0,2,2],[2,3,1,2],[0,3,2,1]],[[1,2,2,0],[1,0,2,2],[2,3,1,3],[0,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,4,1,2],[0,2,2,1]],[[1,2,2,0],[1,0,2,2],[3,3,1,2],[0,2,2,1]],[[1,2,2,0],[1,0,2,3],[2,3,1,2],[0,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[1,0,2,2],[2,2,3,2],[2,2,1,0]],[[1,2,2,0],[1,0,2,2],[3,2,3,2],[1,2,1,0]],[[1,2,2,0],[1,0,2,2],[2,2,3,2],[1,3,0,1]],[[1,2,2,0],[1,0,2,2],[2,2,3,2],[2,2,0,1]],[[1,2,2,0],[1,0,2,2],[3,2,3,2],[1,2,0,1]],[[1,2,2,0],[1,0,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,0],[1,0,2,2],[2,2,3,2],[0,3,2,0]],[[1,2,2,0],[1,0,2,2],[2,2,3,3],[0,2,2,0]],[[1,2,2,0],[1,0,2,2],[2,2,4,2],[0,2,2,0]],[[1,2,2,0],[1,0,2,3],[2,2,3,2],[0,2,2,0]],[[1,2,2,0],[1,0,2,2],[2,2,3,2],[0,2,1,2]],[[1,2,2,0],[1,0,2,2],[2,2,3,3],[0,2,1,1]],[[1,2,2,0],[1,0,2,2],[2,2,4,2],[0,2,1,1]],[[1,2,2,0],[1,0,2,3],[2,2,3,2],[0,2,1,1]],[[1,2,2,0],[1,0,2,2],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[1,0,2,2],[2,2,3,1],[2,2,1,1]],[[1,2,2,0],[1,0,2,2],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[1,0,2,2],[2,2,3,1],[0,2,2,2]],[[1,2,2,0],[1,0,2,2],[2,2,3,1],[0,2,3,1]],[[1,2,2,0],[1,0,2,2],[2,2,3,1],[0,3,2,1]],[[1,2,2,0],[1,0,2,2],[2,2,4,1],[0,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,2,2,2],[1,2,3,0]],[[1,2,2,0],[1,0,2,2],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[1,0,2,2],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[1,0,2,2],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[1,0,2,2],[2,2,2,2],[0,2,2,2]],[[1,2,2,0],[1,0,2,2],[2,2,2,2],[0,2,3,1]],[[1,2,2,0],[1,0,2,2],[2,2,2,2],[0,3,2,1]],[[1,2,2,0],[1,0,2,2],[2,2,2,3],[0,2,2,1]],[[1,2,2,0],[1,0,2,3],[2,2,2,2],[0,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,2,2,1],[1,2,2,2]],[[1,2,2,0],[1,0,2,2],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[1,0,2,2],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[1,0,2,2],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[1,0,2,2],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,2,1,2],[1,2,2,2]],[[1,2,2,0],[1,0,2,2],[2,2,1,2],[1,2,3,1]],[[1,2,2,0],[1,0,2,2],[2,2,1,2],[1,3,2,1]],[[1,2,2,0],[1,0,2,2],[2,2,1,2],[2,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,2,1,3],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[3,2,1,2],[1,2,2,1]],[[1,2,2,0],[1,0,2,3],[2,2,1,2],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,1,3,2],[1,2,3,0]],[[1,2,2,0],[1,0,2,2],[2,1,3,2],[1,3,2,0]],[[1,2,2,0],[1,0,2,2],[2,1,3,2],[2,2,2,0]],[[1,2,2,0],[1,0,2,2],[2,1,3,3],[1,2,2,0]],[[1,2,2,0],[1,0,2,2],[2,1,4,2],[1,2,2,0]],[[1,2,2,0],[1,0,2,2],[3,1,3,2],[1,2,2,0]],[[1,2,2,0],[1,0,2,3],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[1,0,2,2],[2,1,3,2],[1,2,1,2]],[[1,2,2,0],[1,0,2,2],[2,1,3,3],[1,2,1,1]],[[1,2,2,0],[1,0,2,2],[2,1,4,2],[1,2,1,1]],[[1,2,2,0],[1,0,2,3],[2,1,3,2],[1,2,1,1]],[[1,2,2,0],[1,0,2,2],[2,1,3,2],[0,2,2,2]],[[1,2,2,0],[1,0,2,2],[2,1,3,2],[0,2,3,1]],[[1,2,2,0],[1,0,2,2],[2,1,3,3],[0,2,2,1]],[[1,2,2,0],[1,0,2,3],[2,1,3,2],[0,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,1,3,1],[1,2,2,2]],[[1,2,2,0],[1,0,2,2],[2,1,3,1],[1,2,3,1]],[[1,2,2,0],[1,0,2,2],[2,1,3,1],[1,3,2,1]],[[1,2,2,0],[1,0,2,2],[2,1,3,1],[2,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,1,4,1],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[3,1,3,1],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[1,0,2,2],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[1,0,2,2],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[1,0,2,2],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,1,2,3],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[3,1,2,2],[1,2,2,1]],[[1,2,2,0],[1,0,2,3],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[1,0,2,2],[2,0,3,2],[1,2,3,1]],[[1,2,2,0],[1,0,2,2],[2,0,3,3],[1,2,2,1]],[[1,2,2,0],[1,0,2,3],[2,0,3,2],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[1,0,2,2],[1,3,3,2],[2,2,1,0]],[[1,2,2,0],[1,0,2,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[1,0,2,2],[1,3,4,2],[1,2,1,0]],[[1,2,2,0],[1,0,2,2],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[1,0,2,3],[1,3,3,2],[1,2,1,0]],[[1,2,2,0],[1,0,2,2],[1,3,3,2],[1,2,0,2]],[[1,2,2,0],[1,0,2,2],[1,3,3,2],[1,3,0,1]],[[1,2,2,0],[1,0,2,2],[1,3,3,2],[2,2,0,1]],[[1,2,2,0],[1,0,2,2],[1,3,3,3],[1,2,0,1]],[[1,2,2,0],[1,0,2,2],[1,3,4,2],[1,2,0,1]],[[1,2,2,0],[1,0,2,2],[1,4,3,2],[1,2,0,1]],[[1,2,2,0],[1,0,2,3],[1,3,3,2],[1,2,0,1]],[[1,2,2,0],[1,0,2,2],[1,3,3,2],[1,1,3,0]],[[1,2,2,0],[1,0,2,2],[1,3,3,3],[1,1,2,0]],[[1,2,2,0],[1,0,2,2],[1,3,4,2],[1,1,2,0]],[[1,2,2,0],[1,0,2,2],[1,4,3,2],[1,1,2,0]],[[1,2,2,0],[1,0,2,3],[1,3,3,2],[1,1,2,0]],[[1,2,2,0],[1,0,2,2],[1,3,3,2],[1,1,1,2]],[[1,2,2,0],[1,0,2,2],[1,3,3,3],[1,1,1,1]],[[1,2,2,0],[1,0,2,2],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[1,0,2,2],[1,4,3,2],[1,1,1,1]],[[1,2,2,0],[1,0,2,3],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[1,0,2,2],[1,3,3,2],[1,0,2,2]],[[1,2,2,0],[1,0,2,2],[1,3,3,3],[1,0,2,1]],[[1,2,2,0],[1,0,2,2],[1,3,4,2],[1,0,2,1]],[[1,2,2,0],[1,0,2,3],[1,3,3,2],[1,0,2,1]],[[1,2,2,0],[1,0,2,2],[1,3,3,1],[1,3,1,1]],[[1,2,2,0],[1,0,2,2],[1,3,3,1],[2,2,1,1]],[[1,2,2,0],[1,0,2,2],[1,3,4,1],[1,2,1,1]],[[1,2,2,0],[1,0,2,2],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[1,0,2,2],[1,3,3,1],[1,1,2,2]],[[1,2,2,0],[1,0,2,2],[1,3,3,1],[1,1,3,1]],[[1,2,2,0],[1,0,2,2],[1,3,4,1],[1,1,2,1]],[[1,2,2,0],[1,0,2,2],[1,4,3,1],[1,1,2,1]],[[1,2,2,0],[1,0,2,2],[1,3,2,2],[1,2,3,0]],[[1,2,2,0],[1,0,2,2],[1,3,2,2],[1,3,2,0]],[[1,2,2,0],[1,0,2,2],[1,3,2,2],[2,2,2,0]],[[1,2,2,0],[1,0,2,2],[1,4,2,2],[1,2,2,0]],[[1,2,2,0],[1,0,2,2],[1,3,2,2],[1,1,2,2]],[[1,2,2,0],[1,0,2,2],[1,3,2,2],[1,1,3,1]],[[1,2,2,0],[1,0,2,2],[1,3,2,3],[1,1,2,1]],[[1,2,2,0],[1,0,2,3],[1,3,2,2],[1,1,2,1]],[[1,2,2,0],[1,0,2,2],[1,3,2,1],[1,2,2,2]],[[1,2,2,0],[1,0,2,2],[1,3,2,1],[1,2,3,1]],[[1,2,2,0],[1,0,2,2],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[1,0,2,2],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[1,0,2,2],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[1,3,1,2],[1,2,2,2]],[[1,2,2,0],[1,0,2,2],[1,3,1,2],[1,2,3,1]],[[1,2,2,0],[1,0,2,2],[1,3,1,2],[1,3,2,1]],[[1,2,2,0],[1,0,2,2],[1,3,1,2],[2,2,2,1]],[[1,2,2,0],[1,0,2,2],[1,3,1,3],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[1,4,1,2],[1,2,2,1]],[[1,2,2,0],[1,0,2,3],[1,3,1,2],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[1,2,3,2],[1,2,3,0]],[[1,2,2,0],[1,0,2,2],[1,2,3,2],[1,3,2,0]],[[1,2,2,0],[1,0,2,2],[1,2,3,2],[2,2,2,0]],[[1,2,2,0],[1,0,2,2],[1,2,3,3],[1,2,2,0]],[[1,2,2,0],[1,0,2,2],[1,2,4,2],[1,2,2,0]],[[1,2,2,0],[1,0,2,3],[1,2,3,2],[1,2,2,0]],[[1,2,2,0],[1,0,2,2],[1,2,3,2],[1,2,1,2]],[[1,2,2,0],[1,0,2,2],[1,2,3,3],[1,2,1,1]],[[1,2,2,0],[1,0,2,2],[1,2,4,2],[1,2,1,1]],[[1,2,2,0],[1,0,2,3],[1,2,3,2],[1,2,1,1]],[[1,2,2,0],[1,0,2,2],[1,2,3,1],[1,2,2,2]],[[1,2,2,0],[1,0,2,2],[1,2,3,1],[1,2,3,1]],[[1,2,2,0],[1,0,2,2],[1,2,3,1],[1,3,2,1]],[[1,2,2,0],[1,0,2,2],[1,2,3,1],[2,2,2,1]],[[1,2,2,0],[1,0,2,2],[1,2,4,1],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[1,2,2,2],[1,2,2,2]],[[1,2,2,0],[1,0,2,2],[1,2,2,2],[1,2,3,1]],[[1,2,2,0],[1,0,2,2],[1,2,2,2],[1,3,2,1]],[[1,2,2,0],[1,0,2,2],[1,2,2,2],[2,2,2,1]],[[1,2,2,0],[1,0,2,2],[1,2,2,3],[1,2,2,1]],[[1,2,2,0],[1,0,2,3],[1,2,2,2],[1,2,2,1]],[[1,2,2,0],[1,0,2,2],[1,1,3,2],[1,2,2,2]],[[1,2,2,0],[1,0,2,2],[1,1,3,2],[1,2,3,1]],[[1,2,2,0],[1,0,2,2],[1,1,3,3],[1,2,2,1]],[[1,2,2,0],[1,0,2,3],[1,1,3,2],[1,2,2,1]],[[1,2,2,0],[1,0,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,0],[1,0,1,2],[2,3,3,2],[1,0,3,1]],[[1,2,2,0],[1,0,1,2],[2,3,3,3],[1,0,2,1]],[[1,2,2,0],[1,0,1,2],[2,3,3,2],[0,1,2,2]],[[1,2,2,0],[1,0,1,2],[2,3,3,2],[0,1,3,1]],[[1,2,2,0],[1,0,1,2],[2,3,3,3],[0,1,2,1]],[[1,2,2,0],[1,0,1,2],[2,2,3,2],[0,2,2,2]],[[1,2,2,0],[1,0,1,2],[2,2,3,2],[0,2,3,1]],[[1,2,2,0],[1,0,1,2],[2,2,3,2],[0,3,2,1]],[[1,2,2,0],[1,0,1,2],[2,2,3,3],[0,2,2,1]],[[1,2,2,0],[1,0,1,2],[2,1,3,2],[1,2,2,2]],[[1,2,2,0],[1,0,1,2],[2,1,3,2],[1,2,3,1]],[[1,2,2,0],[1,0,1,2],[2,1,3,2],[1,3,2,1]],[[1,2,2,0],[1,0,1,2],[2,1,3,2],[2,2,2,1]],[[1,2,2,0],[1,0,1,2],[2,1,3,3],[1,2,2,1]],[[1,2,2,0],[1,0,1,2],[1,3,3,2],[1,1,2,2]],[[1,2,2,0],[1,0,1,2],[1,3,3,2],[1,1,3,1]],[[1,2,2,0],[1,0,1,2],[1,3,3,3],[1,1,2,1]],[[1,2,2,0],[1,0,1,2],[1,2,3,2],[1,2,2,2]],[[1,2,2,0],[1,0,1,2],[1,2,3,2],[1,2,3,1]],[[1,2,2,0],[1,0,1,2],[1,2,3,2],[1,3,2,1]],[[1,2,2,0],[1,0,1,2],[1,2,3,2],[2,2,2,1]],[[1,2,2,0],[1,0,1,2],[1,2,3,3],[1,2,2,1]],[[1,2,2,0],[0,4,3,2],[2,3,2,1],[1,1,0,0]],[[1,2,3,0],[0,3,3,2],[2,3,2,1],[1,1,0,0]],[[1,3,2,0],[0,3,3,2],[2,3,2,1],[1,1,0,0]],[[2,2,2,0],[0,3,3,2],[2,3,2,1],[1,1,0,0]],[[1,2,2,0],[0,4,3,2],[2,3,2,1],[0,2,0,0]],[[1,2,3,0],[0,3,3,2],[2,3,2,1],[0,2,0,0]],[[1,3,2,0],[0,3,3,2],[2,3,2,1],[0,2,0,0]],[[2,2,2,0],[0,3,3,2],[2,3,2,1],[0,2,0,0]],[[1,2,2,0],[0,4,3,2],[2,3,1,1],[1,2,0,0]],[[1,2,3,0],[0,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,3,2,0],[0,3,3,2],[2,3,1,1],[1,2,0,0]],[[2,2,2,0],[0,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,2,2,0],[0,4,3,2],[2,3,1,1],[1,1,1,0]],[[1,2,3,0],[0,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,3,2,0],[0,3,3,2],[2,3,1,1],[1,1,1,0]],[[2,2,2,0],[0,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,2,2,0],[0,4,3,2],[2,3,1,1],[1,1,0,1]],[[1,2,3,0],[0,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,3,2,0],[0,3,3,2],[2,3,1,1],[1,1,0,1]],[[2,2,2,0],[0,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,2,2,0],[0,4,3,2],[2,3,1,1],[1,0,2,0]],[[1,2,3,0],[0,3,3,2],[2,3,1,1],[1,0,2,0]],[[1,3,2,0],[0,3,3,2],[2,3,1,1],[1,0,2,0]],[[2,2,2,0],[0,3,3,2],[2,3,1,1],[1,0,2,0]],[[1,2,2,0],[0,4,3,2],[2,3,1,1],[1,0,1,1]],[[1,2,3,0],[0,3,3,2],[2,3,1,1],[1,0,1,1]],[[1,3,2,0],[0,3,3,2],[2,3,1,1],[1,0,1,1]],[[2,2,2,0],[0,3,3,2],[2,3,1,1],[1,0,1,1]],[[1,2,2,0],[0,4,3,2],[2,3,1,1],[0,2,1,0]],[[1,2,3,0],[0,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,3,2,0],[0,3,3,2],[2,3,1,1],[0,2,1,0]],[[2,2,2,0],[0,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,2,2,0],[0,4,3,2],[2,3,1,1],[0,2,0,1]],[[1,2,3,0],[0,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,3,2,0],[0,3,3,2],[2,3,1,1],[0,2,0,1]],[[2,2,2,0],[0,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,2,2,0],[0,4,3,2],[2,3,1,1],[0,1,2,0]],[[1,2,3,0],[0,3,3,2],[2,3,1,1],[0,1,2,0]],[[1,3,2,0],[0,3,3,2],[2,3,1,1],[0,1,2,0]],[[2,2,2,0],[0,3,3,2],[2,3,1,1],[0,1,2,0]],[[1,2,2,0],[0,4,3,2],[2,3,1,1],[0,1,1,1]],[[1,2,3,0],[0,3,3,2],[2,3,1,1],[0,1,1,1]],[[1,3,2,0],[0,3,3,2],[2,3,1,1],[0,1,1,1]],[[2,2,2,0],[0,3,3,2],[2,3,1,1],[0,1,1,1]],[[1,2,2,0],[0,4,3,2],[2,3,1,0],[1,2,0,1]],[[1,2,3,0],[0,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,3,2,0],[0,3,3,2],[2,3,1,0],[1,2,0,1]],[[2,2,2,0],[0,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,2,2,0],[0,4,3,2],[2,3,1,0],[1,1,1,1]],[[1,2,3,0],[0,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,3,2,0],[0,3,3,2],[2,3,1,0],[1,1,1,1]],[[2,2,2,0],[0,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,2,2,0],[0,4,3,2],[2,3,1,0],[1,0,2,1]],[[1,2,3,0],[0,3,3,2],[2,3,1,0],[1,0,2,1]],[[1,3,2,0],[0,3,3,2],[2,3,1,0],[1,0,2,1]],[[2,2,2,0],[0,3,3,2],[2,3,1,0],[1,0,2,1]],[[1,2,2,0],[0,4,3,2],[2,3,1,0],[0,2,1,1]],[[1,2,3,0],[0,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,3,2,0],[0,3,3,2],[2,3,1,0],[0,2,1,1]],[[2,2,2,0],[0,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,2,2,0],[0,4,3,2],[2,3,1,0],[0,1,2,1]],[[1,2,3,0],[0,3,3,2],[2,3,1,0],[0,1,2,1]],[[1,3,2,0],[0,3,3,2],[2,3,1,0],[0,1,2,1]],[[2,2,2,0],[0,3,3,2],[2,3,1,0],[0,1,2,1]],[[1,2,2,0],[0,4,3,2],[2,3,0,2],[1,2,0,0]],[[1,2,3,0],[0,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,3,2,0],[0,3,3,2],[2,3,0,2],[1,2,0,0]],[[2,2,2,0],[0,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,2,2,0],[0,4,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,3,0],[0,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,3,2,0],[0,3,3,2],[2,3,0,2],[1,1,1,0]],[[2,2,2,0],[0,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,2,0],[0,4,3,2],[2,3,0,2],[1,1,0,1]],[[1,2,3,0],[0,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,3,2,0],[0,3,3,2],[2,3,0,2],[1,1,0,1]],[[2,2,2,0],[0,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,2,2,0],[0,4,3,2],[2,3,0,2],[1,0,2,0]],[[1,2,3,0],[0,3,3,2],[2,3,0,2],[1,0,2,0]],[[1,3,2,0],[0,3,3,2],[2,3,0,2],[1,0,2,0]],[[2,2,2,0],[0,3,3,2],[2,3,0,2],[1,0,2,0]],[[1,2,2,0],[0,4,3,2],[2,3,0,2],[1,0,1,1]],[[1,2,3,0],[0,3,3,2],[2,3,0,2],[1,0,1,1]],[[1,3,2,0],[0,3,3,2],[2,3,0,2],[1,0,1,1]],[[2,2,2,0],[0,3,3,2],[2,3,0,2],[1,0,1,1]],[[1,2,2,0],[0,4,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,3,0],[0,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,3,2,0],[0,3,3,2],[2,3,0,2],[0,2,1,0]],[[2,2,2,0],[0,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,2,0],[0,4,3,2],[2,3,0,2],[0,2,0,1]],[[1,2,3,0],[0,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,3,2,0],[0,3,3,2],[2,3,0,2],[0,2,0,1]],[[2,2,2,0],[0,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,2,2,0],[0,4,3,2],[2,3,0,2],[0,1,2,0]],[[1,2,3,0],[0,3,3,2],[2,3,0,2],[0,1,2,0]],[[1,3,2,0],[0,3,3,2],[2,3,0,2],[0,1,2,0]],[[2,2,2,0],[0,3,3,2],[2,3,0,2],[0,1,2,0]],[[1,2,2,0],[0,4,3,2],[2,3,0,2],[0,1,1,1]],[[1,2,3,0],[0,3,3,2],[2,3,0,2],[0,1,1,1]],[[1,3,2,0],[0,3,3,2],[2,3,0,2],[0,1,1,1]],[[2,2,2,0],[0,3,3,2],[2,3,0,2],[0,1,1,1]],[[1,2,2,0],[0,4,3,2],[2,3,0,1],[1,1,2,0]],[[1,2,3,0],[0,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,3,2,0],[0,3,3,2],[2,3,0,1],[1,1,2,0]],[[2,2,2,0],[0,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,2,2,0],[0,4,3,2],[2,3,0,1],[0,2,2,0]],[[1,2,3,0],[0,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,3,2,0],[0,3,3,2],[2,3,0,1],[0,2,2,0]],[[2,2,2,0],[0,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,2,2,0],[0,4,3,2],[2,3,0,0],[1,1,2,1]],[[1,2,3,0],[0,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,3,2,0],[0,3,3,2],[2,3,0,0],[1,1,2,1]],[[2,2,2,0],[0,3,3,2],[2,3,0,0],[1,1,2,1]],[[0,3,2,1],[2,3,3,2],[2,0,0,2],[0,1,2,1]],[[0,2,3,1],[2,3,3,2],[2,0,0,2],[0,1,2,1]],[[0,2,2,2],[2,3,3,2],[2,0,0,2],[0,1,2,1]],[[0,2,2,1],[2,3,3,3],[2,0,0,2],[0,1,2,1]],[[0,3,2,1],[2,3,3,2],[2,0,0,2],[1,0,2,1]],[[0,2,3,1],[2,3,3,2],[2,0,0,2],[1,0,2,1]],[[0,2,2,2],[2,3,3,2],[2,0,0,2],[1,0,2,1]],[[0,2,2,1],[2,3,3,3],[2,0,0,2],[1,0,2,1]],[[0,3,2,1],[2,3,3,2],[2,0,0,2],[1,2,0,1]],[[0,2,3,1],[2,3,3,2],[2,0,0,2],[1,2,0,1]],[[0,2,2,2],[2,3,3,2],[2,0,0,2],[1,2,0,1]],[[0,2,2,1],[2,3,3,3],[2,0,0,2],[1,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,0,0,2],[1,2,1,0]],[[0,2,3,1],[2,3,3,2],[2,0,0,2],[1,2,1,0]],[[0,2,2,2],[2,3,3,2],[2,0,0,2],[1,2,1,0]],[[0,2,2,1],[2,3,3,3],[2,0,0,2],[1,2,1,0]],[[1,2,2,0],[0,4,3,2],[2,3,0,0],[0,2,2,1]],[[1,2,3,0],[0,3,3,2],[2,3,0,0],[0,2,2,1]],[[1,3,2,0],[0,3,3,2],[2,3,0,0],[0,2,2,1]],[[2,2,2,0],[0,3,3,2],[2,3,0,0],[0,2,2,1]],[[0,3,2,1],[2,3,3,2],[2,0,1,2],[0,0,2,1]],[[0,2,3,1],[2,3,3,2],[2,0,1,2],[0,0,2,1]],[[0,2,2,2],[2,3,3,2],[2,0,1,2],[0,0,2,1]],[[0,2,2,1],[2,3,3,3],[2,0,1,2],[0,0,2,1]],[[0,3,2,1],[2,3,3,2],[2,0,1,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,2],[2,0,1,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,2],[2,0,1,2],[0,1,1,1]],[[0,2,2,1],[2,3,3,3],[2,0,1,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,2],[2,0,1,2],[0,1,2,0]],[[0,2,3,1],[2,3,3,2],[2,0,1,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,2],[2,0,1,2],[0,1,2,0]],[[0,2,2,1],[2,3,3,3],[2,0,1,2],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[2,0,1,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[2,0,1,2],[0,2,0,1]],[[0,2,2,2],[2,3,3,2],[2,0,1,2],[0,2,0,1]],[[0,2,2,1],[2,3,3,3],[2,0,1,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,0,1,2],[0,2,1,0]],[[0,2,3,1],[2,3,3,2],[2,0,1,2],[0,2,1,0]],[[0,2,2,2],[2,3,3,2],[2,0,1,2],[0,2,1,0]],[[0,2,2,1],[2,3,3,3],[2,0,1,2],[0,2,1,0]],[[0,3,2,1],[2,3,3,2],[2,0,1,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,2],[2,0,1,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,2],[2,0,1,2],[1,0,1,1]],[[0,2,2,1],[2,3,3,3],[2,0,1,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[2,0,1,2],[1,0,2,0]],[[0,2,3,1],[2,3,3,2],[2,0,1,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,2],[2,0,1,2],[1,0,2,0]],[[0,2,2,1],[2,3,3,3],[2,0,1,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,2],[2,0,1,2],[1,1,0,1]],[[0,2,3,1],[2,3,3,2],[2,0,1,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[2,0,1,2],[1,1,0,1]],[[0,2,2,1],[2,3,3,3],[2,0,1,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,2],[2,0,1,2],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[2,0,1,2],[1,1,1,0]],[[0,2,2,2],[2,3,3,2],[2,0,1,2],[1,1,1,0]],[[0,2,2,1],[2,3,3,3],[2,0,1,2],[1,1,1,0]],[[0,3,2,1],[2,3,3,2],[2,0,2,2],[0,1,0,1]],[[0,2,3,1],[2,3,3,2],[2,0,2,2],[0,1,0,1]],[[0,2,2,2],[2,3,3,2],[2,0,2,2],[0,1,0,1]],[[0,2,2,1],[2,3,3,3],[2,0,2,2],[0,1,0,1]],[[0,3,2,1],[2,3,3,2],[2,0,2,2],[1,0,0,1]],[[0,2,3,1],[2,3,3,2],[2,0,2,2],[1,0,0,1]],[[0,2,2,2],[2,3,3,2],[2,0,2,2],[1,0,0,1]],[[0,2,2,1],[2,3,3,3],[2,0,2,2],[1,0,0,1]],[[0,3,2,1],[2,3,3,2],[2,0,3,0],[0,0,2,1]],[[0,2,3,1],[2,3,3,2],[2,0,3,0],[0,0,2,1]],[[0,2,2,2],[2,3,3,2],[2,0,3,0],[0,0,2,1]],[[0,2,2,1],[2,3,4,2],[2,0,3,0],[0,0,2,1]],[[0,3,2,1],[2,3,3,2],[2,0,3,0],[0,1,1,1]],[[0,2,3,1],[2,3,3,2],[2,0,3,0],[0,1,1,1]],[[0,2,2,2],[2,3,3,2],[2,0,3,0],[0,1,1,1]],[[0,2,2,1],[2,3,4,2],[2,0,3,0],[0,1,1,1]],[[0,3,2,1],[2,3,3,2],[2,0,3,0],[0,1,2,0]],[[0,2,3,1],[2,3,3,2],[2,0,3,0],[0,1,2,0]],[[0,2,2,2],[2,3,3,2],[2,0,3,0],[0,1,2,0]],[[0,2,2,1],[2,3,4,2],[2,0,3,0],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[2,0,3,0],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[2,0,3,0],[0,2,0,1]],[[0,2,2,2],[2,3,3,2],[2,0,3,0],[0,2,0,1]],[[0,2,2,1],[2,3,4,2],[2,0,3,0],[0,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,0,3,0],[0,2,1,0]],[[0,2,3,1],[2,3,3,2],[2,0,3,0],[0,2,1,0]],[[0,2,2,2],[2,3,3,2],[2,0,3,0],[0,2,1,0]],[[0,2,2,1],[2,3,4,2],[2,0,3,0],[0,2,1,0]],[[0,3,2,1],[2,3,3,2],[2,0,3,0],[1,0,1,1]],[[0,2,3,1],[2,3,3,2],[2,0,3,0],[1,0,1,1]],[[0,2,2,2],[2,3,3,2],[2,0,3,0],[1,0,1,1]],[[0,2,2,1],[2,3,4,2],[2,0,3,0],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[2,0,3,0],[1,0,2,0]],[[0,2,3,1],[2,3,3,2],[2,0,3,0],[1,0,2,0]],[[0,2,2,2],[2,3,3,2],[2,0,3,0],[1,0,2,0]],[[0,2,2,1],[2,3,4,2],[2,0,3,0],[1,0,2,0]],[[0,3,2,1],[2,3,3,2],[2,0,3,0],[1,1,0,1]],[[0,2,3,1],[2,3,3,2],[2,0,3,0],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[2,0,3,0],[1,1,0,1]],[[0,2,2,1],[2,3,4,2],[2,0,3,0],[1,1,0,1]],[[0,3,2,1],[2,3,3,2],[2,0,3,0],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[2,0,3,0],[1,1,1,0]],[[0,2,2,2],[2,3,3,2],[2,0,3,0],[1,1,1,0]],[[0,2,2,1],[2,3,4,2],[2,0,3,0],[1,1,1,0]],[[1,2,2,0],[0,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,2,0],[0,3,3,3],[1,3,3,2],[0,0,0,1]],[[1,2,2,0],[0,3,4,2],[1,3,3,2],[0,0,0,1]],[[1,2,3,0],[0,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,3,2,0],[0,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,2,0],[0,3,3,3],[1,3,3,1],[1,1,0,0]],[[1,2,2,0],[0,3,4,2],[1,3,3,1],[1,1,0,0]],[[1,2,3,0],[0,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,3,2,0],[0,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,2,2,0],[0,3,3,3],[1,3,3,1],[0,2,0,0]],[[1,2,2,0],[0,3,4,2],[1,3,3,1],[0,2,0,0]],[[1,2,3,0],[0,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,3,2,0],[0,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,2,2,0],[0,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,2,0],[0,3,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,2,0],[0,3,4,2],[1,3,3,1],[0,0,2,0]],[[1,2,3,0],[0,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,3,2,0],[0,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,2,0],[0,3,3,2],[1,3,4,1],[0,0,1,1]],[[1,2,2,0],[0,3,3,3],[1,3,3,1],[0,0,1,1]],[[1,2,2,0],[0,3,4,2],[1,3,3,1],[0,0,1,1]],[[1,2,3,0],[0,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,3,2,0],[0,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,2,0],[0,3,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,3,0],[0,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,3,2,0],[0,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,2,0],[0,3,4,2],[1,3,3,0],[1,0,2,0]],[[1,2,3,0],[0,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,3,2,0],[0,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,2,0],[0,3,4,2],[1,3,3,0],[0,2,1,0]],[[1,2,3,0],[0,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,3,2,0],[0,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,2,0],[0,3,4,2],[1,3,3,0],[0,1,2,0]],[[1,2,3,0],[0,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,3,2,0],[0,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,2,0],[0,3,3,2],[1,3,4,0],[0,0,2,1]],[[1,2,2,0],[0,3,3,3],[1,3,3,0],[0,0,2,1]],[[1,2,2,0],[0,3,4,2],[1,3,3,0],[0,0,2,1]],[[1,2,3,0],[0,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,3,2,0],[0,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,2,2,0],[0,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,2,0],[0,3,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[0,3,4,2],[1,3,2,2],[0,0,2,0]],[[1,2,3,0],[0,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,3,2,0],[0,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,2,0],[0,3,3,2],[1,3,2,2],[0,0,1,2]],[[1,2,2,0],[0,3,3,2],[1,3,2,3],[0,0,1,1]],[[1,2,2,0],[0,3,3,3],[1,3,2,2],[0,0,1,1]],[[1,2,2,0],[0,3,4,2],[1,3,2,2],[0,0,1,1]],[[1,2,3,0],[0,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,3,2,0],[0,3,3,2],[1,3,2,2],[0,0,1,1]],[[0,3,2,1],[2,3,3,2],[2,1,0,0],[1,2,2,0]],[[0,2,3,1],[2,3,3,2],[2,1,0,0],[1,2,2,0]],[[0,2,2,2],[2,3,3,2],[2,1,0,0],[1,2,2,0]],[[0,2,2,1],[3,3,3,2],[2,1,0,0],[1,2,2,0]],[[0,2,2,1],[2,4,3,2],[2,1,0,0],[1,2,2,0]],[[0,2,2,1],[2,3,3,2],[3,1,0,0],[1,2,2,0]],[[0,2,2,1],[2,3,3,2],[2,1,0,0],[2,2,2,0]],[[0,2,2,1],[2,3,3,2],[2,1,0,0],[1,3,2,0]],[[0,3,2,1],[2,3,3,2],[2,1,0,1],[1,2,0,1]],[[0,2,3,1],[2,3,3,2],[2,1,0,1],[1,2,0,1]],[[0,2,2,2],[2,3,3,2],[2,1,0,1],[1,2,0,1]],[[0,2,2,1],[3,3,3,2],[2,1,0,1],[1,2,0,1]],[[0,2,2,1],[2,4,3,2],[2,1,0,1],[1,2,0,1]],[[0,2,2,1],[2,3,3,2],[3,1,0,1],[1,2,0,1]],[[0,2,2,1],[2,3,3,2],[2,1,0,1],[2,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,1,0,1],[1,2,1,0]],[[0,2,3,1],[2,3,3,2],[2,1,0,1],[1,2,1,0]],[[0,2,2,2],[2,3,3,2],[2,1,0,1],[1,2,1,0]],[[0,2,2,1],[3,3,3,2],[2,1,0,1],[1,2,1,0]],[[0,2,2,1],[2,4,3,2],[2,1,0,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,2],[3,1,0,1],[1,2,1,0]],[[0,2,2,1],[2,3,3,2],[2,1,0,1],[2,2,1,0]],[[0,3,2,1],[2,3,3,2],[2,1,0,2],[0,1,1,1]],[[0,2,3,1],[2,3,3,2],[2,1,0,2],[0,1,1,1]],[[0,2,2,2],[2,3,3,2],[2,1,0,2],[0,1,1,1]],[[0,2,2,1],[2,3,3,3],[2,1,0,2],[0,1,1,1]],[[0,3,2,1],[2,3,3,2],[2,1,0,2],[0,1,2,0]],[[0,2,3,1],[2,3,3,2],[2,1,0,2],[0,1,2,0]],[[0,2,2,2],[2,3,3,2],[2,1,0,2],[0,1,2,0]],[[0,2,2,1],[2,3,3,3],[2,1,0,2],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[2,1,0,2],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[2,1,0,2],[0,2,0,1]],[[0,2,2,2],[2,3,3,2],[2,1,0,2],[0,2,0,1]],[[0,2,2,1],[2,3,3,3],[2,1,0,2],[0,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,1,0,2],[0,2,1,0]],[[0,2,3,1],[2,3,3,2],[2,1,0,2],[0,2,1,0]],[[0,2,2,2],[2,3,3,2],[2,1,0,2],[0,2,1,0]],[[0,2,2,1],[2,3,3,3],[2,1,0,2],[0,2,1,0]],[[0,3,2,1],[2,3,3,2],[2,1,0,2],[1,0,1,1]],[[0,2,3,1],[2,3,3,2],[2,1,0,2],[1,0,1,1]],[[0,2,2,2],[2,3,3,2],[2,1,0,2],[1,0,1,1]],[[0,2,2,1],[2,3,3,3],[2,1,0,2],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[2,1,0,2],[1,0,2,0]],[[0,2,3,1],[2,3,3,2],[2,1,0,2],[1,0,2,0]],[[0,2,2,2],[2,3,3,2],[2,1,0,2],[1,0,2,0]],[[0,2,2,1],[2,3,3,3],[2,1,0,2],[1,0,2,0]],[[0,3,2,1],[2,3,3,2],[2,1,0,2],[1,1,0,1]],[[0,2,3,1],[2,3,3,2],[2,1,0,2],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[2,1,0,2],[1,1,0,1]],[[0,2,2,1],[2,3,3,3],[2,1,0,2],[1,1,0,1]],[[0,3,2,1],[2,3,3,2],[2,1,0,2],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[2,1,0,2],[1,1,1,0]],[[0,2,2,2],[2,3,3,2],[2,1,0,2],[1,1,1,0]],[[0,2,2,1],[2,3,3,3],[2,1,0,2],[1,1,1,0]],[[1,2,2,0],[0,3,3,3],[1,3,2,1],[1,1,1,0]],[[1,2,2,0],[0,3,4,2],[1,3,2,1],[1,1,1,0]],[[1,2,3,0],[0,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,3,2,0],[0,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,2,0],[0,3,3,3],[1,3,2,1],[1,1,0,1]],[[1,2,2,0],[0,3,4,2],[1,3,2,1],[1,1,0,1]],[[1,2,3,0],[0,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,3,2,0],[0,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,2,0],[0,3,3,3],[1,3,2,1],[1,0,2,0]],[[1,2,2,0],[0,3,4,2],[1,3,2,1],[1,0,2,0]],[[1,2,3,0],[0,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,3,2,0],[0,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,2,0],[0,3,3,3],[1,3,2,1],[1,0,1,1]],[[1,2,2,0],[0,3,4,2],[1,3,2,1],[1,0,1,1]],[[1,2,3,0],[0,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,3,2,0],[0,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,2,2,0],[0,3,3,3],[1,3,2,1],[0,2,1,0]],[[1,2,2,0],[0,3,4,2],[1,3,2,1],[0,2,1,0]],[[1,2,3,0],[0,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,3,2,0],[0,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,2,0],[0,3,3,3],[1,3,2,1],[0,2,0,1]],[[1,2,2,0],[0,3,4,2],[1,3,2,1],[0,2,0,1]],[[1,2,3,0],[0,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,3,2,0],[0,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,2,0],[0,3,3,3],[1,3,2,1],[0,1,2,0]],[[1,2,2,0],[0,3,4,2],[1,3,2,1],[0,1,2,0]],[[1,2,3,0],[0,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,3,2,0],[0,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,2,0],[0,3,3,3],[1,3,2,1],[0,1,1,1]],[[1,2,2,0],[0,3,4,2],[1,3,2,1],[0,1,1,1]],[[1,2,3,0],[0,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,3,2,0],[0,3,3,2],[1,3,2,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,2],[2,1,1,0],[1,2,0,1]],[[0,2,3,1],[2,3,3,2],[2,1,1,0],[1,2,0,1]],[[0,2,2,2],[2,3,3,2],[2,1,1,0],[1,2,0,1]],[[0,2,2,1],[3,3,3,2],[2,1,1,0],[1,2,0,1]],[[0,2,2,1],[2,4,3,2],[2,1,1,0],[1,2,0,1]],[[0,2,2,1],[2,3,3,2],[3,1,1,0],[1,2,0,1]],[[0,2,2,1],[2,3,3,2],[2,1,1,0],[2,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,1,1,0],[1,2,1,0]],[[0,2,3,1],[2,3,3,2],[2,1,1,0],[1,2,1,0]],[[0,2,2,2],[2,3,3,2],[2,1,1,0],[1,2,1,0]],[[0,2,2,1],[3,3,3,2],[2,1,1,0],[1,2,1,0]],[[0,2,2,1],[2,4,3,2],[2,1,1,0],[1,2,1,0]],[[0,2,2,1],[2,3,3,2],[3,1,1,0],[1,2,1,0]],[[0,2,2,1],[2,3,3,2],[2,1,1,0],[2,2,1,0]],[[1,2,2,0],[0,3,4,2],[1,3,2,0],[1,1,1,1]],[[1,2,3,0],[0,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,3,2,0],[0,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,2,0],[0,3,3,3],[1,3,2,0],[1,0,2,1]],[[1,2,2,0],[0,3,4,2],[1,3,2,0],[1,0,2,1]],[[1,2,3,0],[0,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,3,2,0],[0,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,2,2,0],[0,3,3,3],[1,3,2,0],[0,2,1,1]],[[1,2,2,0],[0,3,4,2],[1,3,2,0],[0,2,1,1]],[[1,2,3,0],[0,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,3,2,0],[0,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,2,0],[0,3,3,3],[1,3,2,0],[0,1,2,1]],[[1,2,2,0],[0,3,4,2],[1,3,2,0],[0,1,2,1]],[[1,2,3,0],[0,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,3,2,0],[0,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,2,2,0],[0,3,3,3],[1,3,1,2],[1,1,1,0]],[[1,2,2,0],[0,3,4,2],[1,3,1,2],[1,1,1,0]],[[1,2,3,0],[0,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,3,2,0],[0,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,2,0],[0,3,3,2],[1,3,1,3],[1,1,0,1]],[[1,2,2,0],[0,3,3,3],[1,3,1,2],[1,1,0,1]],[[1,2,2,0],[0,3,4,2],[1,3,1,2],[1,1,0,1]],[[1,2,3,0],[0,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,3,2,0],[0,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,2,2,0],[0,3,3,2],[1,3,1,3],[1,0,2,0]],[[1,2,2,0],[0,3,3,3],[1,3,1,2],[1,0,2,0]],[[1,2,2,0],[0,3,4,2],[1,3,1,2],[1,0,2,0]],[[1,2,3,0],[0,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,3,2,0],[0,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,2,0],[0,3,3,2],[1,3,1,2],[1,0,1,2]],[[1,2,2,0],[0,3,3,2],[1,3,1,3],[1,0,1,1]],[[1,2,2,0],[0,3,3,3],[1,3,1,2],[1,0,1,1]],[[1,2,2,0],[0,3,4,2],[1,3,1,2],[1,0,1,1]],[[1,2,3,0],[0,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,3,2,0],[0,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,2,0],[0,3,3,2],[1,3,1,3],[0,2,1,0]],[[1,2,2,0],[0,3,3,3],[1,3,1,2],[0,2,1,0]],[[1,2,2,0],[0,3,4,2],[1,3,1,2],[0,2,1,0]],[[1,2,3,0],[0,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,3,2,0],[0,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,2,0],[0,3,3,2],[1,3,1,2],[0,2,0,2]],[[1,2,2,0],[0,3,3,2],[1,3,1,3],[0,2,0,1]],[[1,2,2,0],[0,3,3,3],[1,3,1,2],[0,2,0,1]],[[1,2,2,0],[0,3,4,2],[1,3,1,2],[0,2,0,1]],[[1,2,3,0],[0,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,3,2,0],[0,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,2,2,0],[0,3,3,2],[1,3,1,3],[0,1,2,0]],[[1,2,2,0],[0,3,3,3],[1,3,1,2],[0,1,2,0]],[[1,2,2,0],[0,3,4,2],[1,3,1,2],[0,1,2,0]],[[1,2,3,0],[0,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,3,2,0],[0,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,2,0],[0,3,3,2],[1,3,1,2],[0,1,1,2]],[[1,2,2,0],[0,3,3,2],[1,3,1,3],[0,1,1,1]],[[1,2,2,0],[0,3,3,3],[1,3,1,2],[0,1,1,1]],[[1,2,2,0],[0,3,4,2],[1,3,1,2],[0,1,1,1]],[[1,2,3,0],[0,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,3,2,0],[0,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,2,2,0],[0,4,3,2],[1,3,1,1],[1,2,1,0]],[[1,2,3,0],[0,3,3,2],[1,3,1,1],[1,2,1,0]],[[1,3,2,0],[0,3,3,2],[1,3,1,1],[1,2,1,0]],[[2,2,2,0],[0,3,3,2],[1,3,1,1],[1,2,1,0]],[[1,2,2,0],[0,4,3,2],[1,3,1,1],[1,2,0,1]],[[1,2,3,0],[0,3,3,2],[1,3,1,1],[1,2,0,1]],[[1,3,2,0],[0,3,3,2],[1,3,1,1],[1,2,0,1]],[[2,2,2,0],[0,3,3,2],[1,3,1,1],[1,2,0,1]],[[1,2,2,0],[0,3,3,3],[1,3,1,1],[0,2,2,0]],[[1,2,2,0],[0,3,4,2],[1,3,1,1],[0,2,2,0]],[[1,2,3,0],[0,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,3,2,0],[0,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,2,0],[0,4,3,2],[1,3,1,0],[1,2,1,1]],[[1,2,3,0],[0,3,3,2],[1,3,1,0],[1,2,1,1]],[[1,3,2,0],[0,3,3,2],[1,3,1,0],[1,2,1,1]],[[2,2,2,0],[0,3,3,2],[1,3,1,0],[1,2,1,1]],[[1,2,2,0],[0,3,3,3],[1,3,1,0],[0,2,2,1]],[[1,2,2,0],[0,3,4,2],[1,3,1,0],[0,2,2,1]],[[1,2,3,0],[0,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,3,2,0],[0,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,2,2,0],[0,4,3,2],[1,3,0,2],[1,2,1,0]],[[1,2,3,0],[0,3,3,2],[1,3,0,2],[1,2,1,0]],[[1,3,2,0],[0,3,3,2],[1,3,0,2],[1,2,1,0]],[[2,2,2,0],[0,3,3,2],[1,3,0,2],[1,2,1,0]],[[1,2,2,0],[0,4,3,2],[1,3,0,2],[1,2,0,1]],[[1,2,3,0],[0,3,3,2],[1,3,0,2],[1,2,0,1]],[[1,3,2,0],[0,3,3,2],[1,3,0,2],[1,2,0,1]],[[2,2,2,0],[0,3,3,2],[1,3,0,2],[1,2,0,1]],[[1,2,2,0],[0,3,3,2],[1,3,0,2],[1,0,2,2]],[[1,2,2,0],[0,3,3,2],[1,3,0,3],[1,0,2,1]],[[1,2,2,0],[0,3,3,3],[1,3,0,2],[1,0,2,1]],[[1,2,2,0],[0,3,4,2],[1,3,0,2],[1,0,2,1]],[[1,2,3,0],[0,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,3,2,0],[0,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,2,0],[0,3,3,2],[1,3,0,3],[0,2,2,0]],[[1,2,2,0],[0,3,3,3],[1,3,0,2],[0,2,2,0]],[[1,2,2,0],[0,3,4,2],[1,3,0,2],[0,2,2,0]],[[1,2,3,0],[0,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,3,2,0],[0,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,2,0],[0,3,3,2],[1,3,0,2],[0,2,1,2]],[[1,2,2,0],[0,3,3,2],[1,3,0,3],[0,2,1,1]],[[1,2,2,0],[0,3,3,3],[1,3,0,2],[0,2,1,1]],[[1,2,2,0],[0,3,4,2],[1,3,0,2],[0,2,1,1]],[[1,2,3,0],[0,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,3,2,0],[0,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,2,0],[0,3,3,2],[1,3,0,2],[0,1,2,2]],[[1,2,2,0],[0,3,3,2],[1,3,0,2],[0,1,3,1]],[[1,2,2,0],[0,3,3,2],[1,3,0,3],[0,1,2,1]],[[1,2,2,0],[0,3,3,3],[1,3,0,2],[0,1,2,1]],[[1,2,2,0],[0,3,4,2],[1,3,0,2],[0,1,2,1]],[[1,2,3,0],[0,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,3,2,0],[0,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,2,2,0],[0,4,3,2],[1,3,0,1],[1,2,2,0]],[[1,2,3,0],[0,3,3,2],[1,3,0,1],[1,2,2,0]],[[1,3,2,0],[0,3,3,2],[1,3,0,1],[1,2,2,0]],[[2,2,2,0],[0,3,3,2],[1,3,0,1],[1,2,2,0]],[[1,2,2,0],[0,3,3,3],[1,3,0,1],[0,2,2,1]],[[1,2,2,0],[0,3,4,2],[1,3,0,1],[0,2,2,1]],[[1,2,3,0],[0,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,3,2,0],[0,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,2,2,0],[0,4,3,2],[1,3,0,0],[1,2,2,1]],[[1,2,3,0],[0,3,3,2],[1,3,0,0],[1,2,2,1]],[[1,3,2,0],[0,3,3,2],[1,3,0,0],[1,2,2,1]],[[2,2,2,0],[0,3,3,2],[1,3,0,0],[1,2,2,1]],[[1,2,2,0],[0,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,2,0],[0,3,3,3],[1,2,3,2],[1,0,0,1]],[[1,2,2,0],[0,3,4,2],[1,2,3,2],[1,0,0,1]],[[1,2,3,0],[0,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,3,2,0],[0,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,2,0],[0,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,2,0],[0,3,3,3],[1,2,3,2],[0,1,0,1]],[[1,2,2,0],[0,3,4,2],[1,2,3,2],[0,1,0,1]],[[1,2,3,0],[0,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,3,2,0],[0,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,2,0],[0,3,3,3],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[0,3,4,2],[1,2,3,1],[1,1,1,0]],[[1,2,3,0],[0,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,3,2,0],[0,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,2,0],[0,3,3,3],[1,2,3,1],[1,1,0,1]],[[1,2,2,0],[0,3,4,2],[1,2,3,1],[1,1,0,1]],[[1,2,3,0],[0,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,3,2,0],[0,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,2,0],[0,3,3,2],[1,2,4,1],[1,0,2,0]],[[1,2,2,0],[0,3,3,3],[1,2,3,1],[1,0,2,0]],[[1,2,2,0],[0,3,4,2],[1,2,3,1],[1,0,2,0]],[[1,2,3,0],[0,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,3,2,0],[0,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,2,0],[0,3,3,2],[1,2,4,1],[1,0,1,1]],[[1,2,2,0],[0,3,3,3],[1,2,3,1],[1,0,1,1]],[[1,2,2,0],[0,3,4,2],[1,2,3,1],[1,0,1,1]],[[1,2,3,0],[0,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,3,2,0],[0,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,2,0],[0,3,3,2],[1,2,4,1],[0,2,1,0]],[[1,2,2,0],[0,3,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,2,0],[0,3,4,2],[1,2,3,1],[0,2,1,0]],[[1,2,3,0],[0,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,3,2,0],[0,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,2,0],[0,3,3,2],[1,2,4,1],[0,2,0,1]],[[1,2,2,0],[0,3,3,3],[1,2,3,1],[0,2,0,1]],[[1,2,2,0],[0,3,4,2],[1,2,3,1],[0,2,0,1]],[[1,2,3,0],[0,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,3,2,0],[0,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,2,0],[0,3,3,2],[1,2,3,1],[0,1,3,0]],[[1,2,2,0],[0,3,3,2],[1,2,4,1],[0,1,2,0]],[[1,2,2,0],[0,3,3,3],[1,2,3,1],[0,1,2,0]],[[1,2,2,0],[0,3,4,2],[1,2,3,1],[0,1,2,0]],[[1,2,3,0],[0,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,3,2,0],[0,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,2,0],[0,3,3,2],[1,2,4,1],[0,1,1,1]],[[1,2,2,0],[0,3,3,3],[1,2,3,1],[0,1,1,1]],[[1,2,2,0],[0,3,4,2],[1,2,3,1],[0,1,1,1]],[[1,2,3,0],[0,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,3,2,0],[0,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,2,0],[0,3,3,2],[1,2,4,1],[0,0,2,1]],[[1,2,2,0],[0,3,3,3],[1,2,3,1],[0,0,2,1]],[[1,2,2,0],[0,3,4,2],[1,2,3,1],[0,0,2,1]],[[1,2,3,0],[0,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,3,2,0],[0,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,2,0],[0,3,4,2],[1,2,3,0],[1,1,1,1]],[[1,2,3,0],[0,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,3,2,0],[0,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,2,0],[0,3,3,2],[1,2,4,0],[1,0,2,1]],[[1,2,2,0],[0,3,3,3],[1,2,3,0],[1,0,2,1]],[[1,2,2,0],[0,3,4,2],[1,2,3,0],[1,0,2,1]],[[1,2,3,0],[0,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,3,2,0],[0,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,2,0],[0,3,3,2],[1,2,4,0],[0,2,1,1]],[[1,2,2,0],[0,3,3,3],[1,2,3,0],[0,2,1,1]],[[1,2,2,0],[0,3,4,2],[1,2,3,0],[0,2,1,1]],[[1,2,3,0],[0,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,3,2,0],[0,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,2,0],[0,3,3,2],[1,2,3,0],[0,1,2,2]],[[1,2,2,0],[0,3,3,2],[1,2,3,0],[0,1,3,1]],[[1,2,2,0],[0,3,3,2],[1,2,4,0],[0,1,2,1]],[[1,2,2,0],[0,3,3,3],[1,2,3,0],[0,1,2,1]],[[1,2,2,0],[0,3,4,2],[1,2,3,0],[0,1,2,1]],[[1,2,3,0],[0,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,3,2,0],[0,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,2,0],[0,3,3,3],[1,2,2,2],[1,1,1,0]],[[1,2,2,0],[0,3,4,2],[1,2,2,2],[1,1,1,0]],[[1,2,3,0],[0,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,3,2,0],[0,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,2,0],[0,3,3,2],[1,2,2,3],[1,1,0,1]],[[1,2,2,0],[0,3,3,3],[1,2,2,2],[1,1,0,1]],[[1,2,2,0],[0,3,4,2],[1,2,2,2],[1,1,0,1]],[[1,2,3,0],[0,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,3,2,0],[0,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,2,0],[0,3,3,2],[1,2,2,3],[1,0,2,0]],[[1,2,2,0],[0,3,3,3],[1,2,2,2],[1,0,2,0]],[[1,2,2,0],[0,3,4,2],[1,2,2,2],[1,0,2,0]],[[1,2,3,0],[0,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,3,2,0],[0,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,2,0],[0,3,3,2],[1,2,2,2],[1,0,1,2]],[[1,2,2,0],[0,3,3,2],[1,2,2,3],[1,0,1,1]],[[1,2,2,0],[0,3,3,3],[1,2,2,2],[1,0,1,1]],[[1,2,2,0],[0,3,4,2],[1,2,2,2],[1,0,1,1]],[[1,2,3,0],[0,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,3,2,0],[0,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,2,0],[0,3,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,2,0],[0,3,3,3],[1,2,2,2],[0,2,1,0]],[[1,2,2,0],[0,3,4,2],[1,2,2,2],[0,2,1,0]],[[1,2,3,0],[0,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,3,2,0],[0,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,2,0],[0,3,3,2],[1,2,2,2],[0,2,0,2]],[[1,2,2,0],[0,3,3,2],[1,2,2,3],[0,2,0,1]],[[1,2,2,0],[0,3,3,3],[1,2,2,2],[0,2,0,1]],[[1,2,2,0],[0,3,4,2],[1,2,2,2],[0,2,0,1]],[[1,2,3,0],[0,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,3,2,0],[0,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,2,0],[0,3,3,2],[1,2,2,3],[0,1,2,0]],[[1,2,2,0],[0,3,3,3],[1,2,2,2],[0,1,2,0]],[[1,2,2,0],[0,3,4,2],[1,2,2,2],[0,1,2,0]],[[1,2,3,0],[0,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,3,2,0],[0,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,2,0],[0,3,3,2],[1,2,2,2],[0,1,1,2]],[[1,2,2,0],[0,3,3,2],[1,2,2,3],[0,1,1,1]],[[1,2,2,0],[0,3,3,3],[1,2,2,2],[0,1,1,1]],[[1,2,2,0],[0,3,4,2],[1,2,2,2],[0,1,1,1]],[[1,2,3,0],[0,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,3,2,0],[0,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,2,0],[0,3,3,2],[1,2,2,2],[0,0,2,2]],[[1,2,2,0],[0,3,3,2],[1,2,2,3],[0,0,2,1]],[[1,2,2,0],[0,3,3,3],[1,2,2,2],[0,0,2,1]],[[1,2,2,0],[0,3,4,2],[1,2,2,2],[0,0,2,1]],[[1,2,3,0],[0,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,3,2,0],[0,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,2,0],[0,3,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,2,0],[0,3,3,2],[1,2,1,3],[1,0,2,1]],[[1,2,2,0],[0,3,3,3],[1,2,1,2],[1,0,2,1]],[[1,2,2,0],[0,3,4,2],[1,2,1,2],[1,0,2,1]],[[1,2,3,0],[0,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,3,2,0],[0,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,2,0],[0,3,3,2],[1,2,1,2],[0,1,2,2]],[[1,2,2,0],[0,3,3,2],[1,2,1,2],[0,1,3,1]],[[1,2,2,0],[0,3,3,2],[1,2,1,3],[0,1,2,1]],[[1,2,2,0],[0,3,3,3],[1,2,1,2],[0,1,2,1]],[[1,2,2,0],[0,3,4,2],[1,2,1,2],[0,1,2,1]],[[1,2,3,0],[0,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,3,2,0],[0,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,2,0],[0,3,3,2],[1,2,0,2],[0,2,2,2]],[[1,2,2,0],[0,3,3,2],[1,2,0,2],[0,2,3,1]],[[1,2,2,0],[0,3,3,2],[1,2,0,3],[0,2,2,1]],[[1,2,2,0],[0,3,3,3],[1,2,0,2],[0,2,2,1]],[[1,2,2,0],[0,3,4,2],[1,2,0,2],[0,2,2,1]],[[1,2,3,0],[0,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,3,2,0],[0,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,2,2,0],[0,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,2,0],[0,3,3,3],[1,1,3,2],[1,0,2,0]],[[1,2,2,0],[0,3,4,2],[1,1,3,2],[1,0,2,0]],[[1,2,3,0],[0,3,3,2],[1,1,3,2],[1,0,2,0]],[[1,3,2,0],[0,3,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,2,0],[0,3,3,2],[1,1,3,2],[1,0,1,2]],[[1,2,2,0],[0,3,3,2],[1,1,3,3],[1,0,1,1]],[[1,2,2,0],[0,3,3,3],[1,1,3,2],[1,0,1,1]],[[1,2,2,0],[0,3,4,2],[1,1,3,2],[1,0,1,1]],[[1,2,3,0],[0,3,3,2],[1,1,3,2],[1,0,1,1]],[[1,3,2,0],[0,3,3,2],[1,1,3,2],[1,0,1,1]],[[1,2,2,0],[0,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,2,0],[0,3,3,3],[1,1,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,4,2],[1,1,3,2],[0,1,2,0]],[[1,2,3,0],[0,3,3,2],[1,1,3,2],[0,1,2,0]],[[1,3,2,0],[0,3,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,3,2],[1,1,3,2],[0,1,1,2]],[[1,2,2,0],[0,3,3,2],[1,1,3,3],[0,1,1,1]],[[1,2,2,0],[0,3,3,3],[1,1,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,4,2],[1,1,3,2],[0,1,1,1]],[[1,2,3,0],[0,3,3,2],[1,1,3,2],[0,1,1,1]],[[1,3,2,0],[0,3,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,3,2],[1,1,3,2],[0,0,2,2]],[[1,2,2,0],[0,3,3,2],[1,1,3,3],[0,0,2,1]],[[1,2,2,0],[0,3,3,3],[1,1,3,2],[0,0,2,1]],[[1,2,2,0],[0,3,4,2],[1,1,3,2],[0,0,2,1]],[[1,2,3,0],[0,3,3,2],[1,1,3,2],[0,0,2,1]],[[1,3,2,0],[0,3,3,2],[1,1,3,2],[0,0,2,1]],[[1,2,2,0],[0,3,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,2,0],[0,3,3,2],[1,1,4,1],[0,2,2,0]],[[1,2,2,0],[0,3,3,3],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[0,3,4,2],[1,1,3,1],[0,2,2,0]],[[1,2,3,0],[0,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,3,2,0],[0,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,2,0],[0,3,3,2],[1,1,4,1],[0,2,1,1]],[[1,2,2,0],[0,3,3,3],[1,1,3,1],[0,2,1,1]],[[1,2,2,0],[0,3,4,2],[1,1,3,1],[0,2,1,1]],[[1,2,3,0],[0,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,3,2,0],[0,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,2,0],[0,3,3,2],[1,1,3,0],[0,2,2,2]],[[1,2,2,0],[0,3,3,2],[1,1,3,0],[0,2,3,1]],[[1,2,2,0],[0,3,3,2],[1,1,4,0],[0,2,2,1]],[[1,2,2,0],[0,3,3,3],[1,1,3,0],[0,2,2,1]],[[1,2,2,0],[0,3,4,2],[1,1,3,0],[0,2,2,1]],[[1,2,3,0],[0,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,3,2,0],[0,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,2,0],[0,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,2,0],[0,3,3,3],[1,1,2,2],[0,2,2,0]],[[1,2,2,0],[0,3,4,2],[1,1,2,2],[0,2,2,0]],[[1,2,3,0],[0,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,3,2,0],[0,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,2,0],[0,3,3,2],[1,1,2,2],[0,2,1,2]],[[1,2,2,0],[0,3,3,2],[1,1,2,3],[0,2,1,1]],[[1,2,2,0],[0,3,3,3],[1,1,2,2],[0,2,1,1]],[[1,2,2,0],[0,3,4,2],[1,1,2,2],[0,2,1,1]],[[1,2,3,0],[0,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,3,2,0],[0,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,2,0],[0,3,3,2],[1,1,1,2],[0,2,2,2]],[[1,2,2,0],[0,3,3,2],[1,1,1,2],[0,2,3,1]],[[1,2,2,0],[0,3,3,2],[1,1,1,3],[0,2,2,1]],[[1,2,2,0],[0,3,3,3],[1,1,1,2],[0,2,2,1]],[[1,2,2,0],[0,3,4,2],[1,1,1,2],[0,2,2,1]],[[1,2,3,0],[0,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,3,2,0],[0,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,2,0],[0,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,2,0],[0,3,3,3],[1,0,3,2],[0,2,2,0]],[[1,2,2,0],[0,3,4,2],[1,0,3,2],[0,2,2,0]],[[1,2,3,0],[0,3,3,2],[1,0,3,2],[0,2,2,0]],[[1,3,2,0],[0,3,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,2,0],[0,3,3,2],[1,0,3,2],[0,2,1,2]],[[1,2,2,0],[0,3,3,2],[1,0,3,3],[0,2,1,1]],[[1,2,2,0],[0,3,3,3],[1,0,3,2],[0,2,1,1]],[[1,2,2,0],[0,3,4,2],[1,0,3,2],[0,2,1,1]],[[1,2,3,0],[0,3,3,2],[1,0,3,2],[0,2,1,1]],[[1,3,2,0],[0,3,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,2,0],[0,3,3,2],[1,0,3,2],[0,1,2,2]],[[1,2,2,0],[0,3,3,2],[1,0,3,3],[0,1,2,1]],[[1,2,2,0],[0,3,3,3],[1,0,3,2],[0,1,2,1]],[[1,2,2,0],[0,3,4,2],[1,0,3,2],[0,1,2,1]],[[1,2,3,0],[0,3,3,2],[1,0,3,2],[0,1,2,1]],[[1,3,2,0],[0,3,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,2,0],[0,3,3,2],[1,0,2,2],[0,2,2,2]],[[1,2,2,0],[0,3,3,2],[1,0,2,2],[0,2,3,1]],[[1,2,2,0],[0,3,3,2],[1,0,2,3],[0,2,2,1]],[[1,2,2,0],[0,3,3,3],[1,0,2,2],[0,2,2,1]],[[1,2,2,0],[0,3,4,2],[1,0,2,2],[0,2,2,1]],[[1,2,3,0],[0,3,3,2],[1,0,2,2],[0,2,2,1]],[[1,3,2,0],[0,3,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,2,0],[0,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,2,0],[0,3,3,3],[0,3,3,2],[0,1,0,1]],[[1,2,2,0],[0,3,4,2],[0,3,3,2],[0,1,0,1]],[[1,2,3,0],[0,3,3,2],[0,3,3,2],[0,1,0,1]],[[1,3,2,0],[0,3,3,2],[0,3,3,2],[0,1,0,1]],[[1,2,2,0],[0,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,2,2,0],[0,3,4,2],[0,3,3,1],[1,2,0,0]],[[1,2,3,0],[0,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,3,2,0],[0,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,2,2,0],[0,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,2,0],[0,3,3,3],[0,3,3,1],[0,2,1,0]],[[1,2,2,0],[0,3,4,2],[0,3,3,1],[0,2,1,0]],[[1,2,3,0],[0,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,3,2,0],[0,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,2,2,0],[0,3,3,2],[0,3,4,1],[0,2,0,1]],[[1,2,2,0],[0,3,3,3],[0,3,3,1],[0,2,0,1]],[[1,2,2,0],[0,3,4,2],[0,3,3,1],[0,2,0,1]],[[1,2,3,0],[0,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,3,2,0],[0,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,2,2,0],[0,3,3,2],[0,3,3,1],[0,1,3,0]],[[1,2,2,0],[0,3,3,2],[0,3,4,1],[0,1,2,0]],[[1,2,2,0],[0,3,3,3],[0,3,3,1],[0,1,2,0]],[[1,2,2,0],[0,3,4,2],[0,3,3,1],[0,1,2,0]],[[1,2,3,0],[0,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,3,2,0],[0,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,2,2,0],[0,3,3,2],[0,3,4,1],[0,1,1,1]],[[1,2,2,0],[0,3,3,3],[0,3,3,1],[0,1,1,1]],[[1,2,2,0],[0,3,4,2],[0,3,3,1],[0,1,1,1]],[[1,2,3,0],[0,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,3,2,0],[0,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,2,2,0],[0,3,3,2],[0,3,4,1],[0,0,2,1]],[[1,2,2,0],[0,3,3,3],[0,3,3,1],[0,0,2,1]],[[1,2,2,0],[0,3,4,2],[0,3,3,1],[0,0,2,1]],[[1,2,3,0],[0,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,3,2,0],[0,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,2,2,0],[0,3,4,2],[0,3,3,0],[1,2,1,0]],[[1,2,3,0],[0,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,3,2,0],[0,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,2,0],[0,3,4,2],[0,3,3,0],[1,1,2,0]],[[1,2,3,0],[0,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,3,2,0],[0,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,2,0],[0,3,3,2],[0,3,4,0],[0,2,1,1]],[[1,2,2,0],[0,3,3,3],[0,3,3,0],[0,2,1,1]],[[1,2,2,0],[0,3,4,2],[0,3,3,0],[0,2,1,1]],[[1,2,3,0],[0,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,3,2,0],[0,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,2,2,0],[0,3,3,2],[0,3,3,0],[0,1,2,2]],[[1,2,2,0],[0,3,3,2],[0,3,3,0],[0,1,3,1]],[[1,2,2,0],[0,3,3,2],[0,3,4,0],[0,1,2,1]],[[1,2,2,0],[0,3,3,3],[0,3,3,0],[0,1,2,1]],[[1,2,2,0],[0,3,4,2],[0,3,3,0],[0,1,2,1]],[[1,2,3,0],[0,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,3,2,0],[0,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,2,2,0],[0,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,2,0],[0,3,3,3],[0,3,2,2],[0,2,1,0]],[[1,2,2,0],[0,3,4,2],[0,3,2,2],[0,2,1,0]],[[1,2,3,0],[0,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,3,2,0],[0,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,2,2,0],[0,3,3,2],[0,3,2,2],[0,2,0,2]],[[1,2,2,0],[0,3,3,2],[0,3,2,3],[0,2,0,1]],[[1,2,2,0],[0,3,3,3],[0,3,2,2],[0,2,0,1]],[[1,2,2,0],[0,3,4,2],[0,3,2,2],[0,2,0,1]],[[1,2,3,0],[0,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,3,2,0],[0,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,2,2,0],[0,3,3,2],[0,3,2,3],[0,1,2,0]],[[1,2,2,0],[0,3,3,3],[0,3,2,2],[0,1,2,0]],[[1,2,2,0],[0,3,4,2],[0,3,2,2],[0,1,2,0]],[[1,2,3,0],[0,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,3,2,0],[0,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,2,2,0],[0,3,3,2],[0,3,2,2],[0,1,1,2]],[[1,2,2,0],[0,3,3,2],[0,3,2,3],[0,1,1,1]],[[1,2,2,0],[0,3,3,3],[0,3,2,2],[0,1,1,1]],[[1,2,2,0],[0,3,4,2],[0,3,2,2],[0,1,1,1]],[[1,2,3,0],[0,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,3,2,0],[0,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,2,2,0],[0,3,3,2],[0,3,2,2],[0,0,2,2]],[[1,2,2,0],[0,3,3,2],[0,3,2,3],[0,0,2,1]],[[1,2,2,0],[0,3,3,3],[0,3,2,2],[0,0,2,1]],[[1,2,2,0],[0,3,4,2],[0,3,2,2],[0,0,2,1]],[[1,2,3,0],[0,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,3,2,0],[0,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,2,2,0],[0,3,3,3],[0,3,2,1],[1,2,1,0]],[[1,2,2,0],[0,3,4,2],[0,3,2,1],[1,2,1,0]],[[1,2,3,0],[0,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,3,2,0],[0,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,2,0],[0,3,3,3],[0,3,2,1],[1,2,0,1]],[[1,2,2,0],[0,3,4,2],[0,3,2,1],[1,2,0,1]],[[1,2,3,0],[0,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,3,2,0],[0,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,2,0],[0,3,3,3],[0,3,2,1],[1,1,2,0]],[[1,2,2,0],[0,3,4,2],[0,3,2,1],[1,1,2,0]],[[1,2,3,0],[0,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,3,2,0],[0,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,2,0],[0,3,3,3],[0,3,2,1],[1,1,1,1]],[[1,2,2,0],[0,3,4,2],[0,3,2,1],[1,1,1,1]],[[1,2,3,0],[0,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,3,2,0],[0,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,2,2,0],[0,3,3,3],[0,3,2,0],[1,2,1,1]],[[1,2,2,0],[0,3,4,2],[0,3,2,0],[1,2,1,1]],[[1,2,3,0],[0,3,3,2],[0,3,2,0],[1,2,1,1]],[[0,3,2,1],[2,3,3,2],[2,2,0,0],[0,2,2,0]],[[0,2,3,1],[2,3,3,2],[2,2,0,0],[0,2,2,0]],[[0,2,2,2],[2,3,3,2],[2,2,0,0],[0,2,2,0]],[[0,2,2,1],[3,3,3,2],[2,2,0,0],[0,2,2,0]],[[0,2,2,1],[2,4,3,2],[2,2,0,0],[0,2,2,0]],[[0,2,2,1],[2,3,3,2],[3,2,0,0],[0,2,2,0]],[[0,3,2,1],[2,3,3,2],[2,2,0,0],[1,1,2,0]],[[0,2,3,1],[2,3,3,2],[2,2,0,0],[1,1,2,0]],[[0,2,2,2],[2,3,3,2],[2,2,0,0],[1,1,2,0]],[[0,2,2,1],[3,3,3,2],[2,2,0,0],[1,1,2,0]],[[0,2,2,1],[2,4,3,2],[2,2,0,0],[1,1,2,0]],[[0,2,2,1],[2,3,3,2],[3,2,0,0],[1,1,2,0]],[[0,2,2,1],[2,3,3,2],[2,2,0,0],[2,1,2,0]],[[1,3,2,0],[0,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,2,0],[0,3,3,3],[0,3,2,0],[1,1,2,1]],[[1,2,2,0],[0,3,4,2],[0,3,2,0],[1,1,2,1]],[[1,2,3,0],[0,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,3,2,0],[0,3,3,2],[0,3,2,0],[1,1,2,1]],[[0,3,2,1],[2,3,3,2],[2,2,0,1],[0,1,1,1]],[[0,2,3,1],[2,3,3,2],[2,2,0,1],[0,1,1,1]],[[0,2,2,2],[2,3,3,2],[2,2,0,1],[0,1,1,1]],[[0,2,2,1],[3,3,3,2],[2,2,0,1],[0,1,1,1]],[[0,2,2,1],[2,4,3,2],[2,2,0,1],[0,1,1,1]],[[0,3,2,1],[2,3,3,2],[2,2,0,1],[0,1,2,0]],[[0,2,3,1],[2,3,3,2],[2,2,0,1],[0,1,2,0]],[[0,2,2,2],[2,3,3,2],[2,2,0,1],[0,1,2,0]],[[0,2,2,1],[3,3,3,2],[2,2,0,1],[0,1,2,0]],[[0,2,2,1],[2,4,3,2],[2,2,0,1],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[2,2,0,1],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[2,2,0,1],[0,2,0,1]],[[0,2,2,2],[2,3,3,2],[2,2,0,1],[0,2,0,1]],[[0,2,2,1],[3,3,3,2],[2,2,0,1],[0,2,0,1]],[[0,2,2,1],[2,4,3,2],[2,2,0,1],[0,2,0,1]],[[0,2,2,1],[2,3,3,2],[3,2,0,1],[0,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,2,0,1],[0,2,1,0]],[[0,2,3,1],[2,3,3,2],[2,2,0,1],[0,2,1,0]],[[0,2,2,2],[2,3,3,2],[2,2,0,1],[0,2,1,0]],[[0,2,2,1],[3,3,3,2],[2,2,0,1],[0,2,1,0]],[[0,2,2,1],[2,4,3,2],[2,2,0,1],[0,2,1,0]],[[0,2,2,1],[2,3,3,2],[3,2,0,1],[0,2,1,0]],[[0,3,2,1],[2,3,3,2],[2,2,0,1],[1,0,1,1]],[[0,2,3,1],[2,3,3,2],[2,2,0,1],[1,0,1,1]],[[0,2,2,2],[2,3,3,2],[2,2,0,1],[1,0,1,1]],[[0,2,2,1],[3,3,3,2],[2,2,0,1],[1,0,1,1]],[[0,2,2,1],[2,4,3,2],[2,2,0,1],[1,0,1,1]],[[0,2,2,1],[2,3,3,2],[3,2,0,1],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[2,2,0,1],[1,0,2,0]],[[0,2,3,1],[2,3,3,2],[2,2,0,1],[1,0,2,0]],[[0,2,2,2],[2,3,3,2],[2,2,0,1],[1,0,2,0]],[[0,2,2,1],[3,3,3,2],[2,2,0,1],[1,0,2,0]],[[0,2,2,1],[2,4,3,2],[2,2,0,1],[1,0,2,0]],[[0,2,2,1],[2,3,3,2],[3,2,0,1],[1,0,2,0]],[[0,3,2,1],[2,3,3,2],[2,2,0,1],[1,1,0,1]],[[0,2,3,1],[2,3,3,2],[2,2,0,1],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[2,2,0,1],[1,1,0,1]],[[0,2,2,1],[3,3,3,2],[2,2,0,1],[1,1,0,1]],[[0,2,2,1],[2,4,3,2],[2,2,0,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,2],[3,2,0,1],[1,1,0,1]],[[0,2,2,1],[2,3,3,2],[2,2,0,1],[2,1,0,1]],[[0,3,2,1],[2,3,3,2],[2,2,0,1],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[2,2,0,1],[1,1,1,0]],[[0,2,2,2],[2,3,3,2],[2,2,0,1],[1,1,1,0]],[[0,2,2,1],[3,3,3,2],[2,2,0,1],[1,1,1,0]],[[0,2,2,1],[2,4,3,2],[2,2,0,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,2],[3,2,0,1],[1,1,1,0]],[[0,2,2,1],[2,3,3,2],[2,2,0,1],[2,1,1,0]],[[1,2,2,0],[0,3,3,2],[0,3,1,3],[1,2,1,0]],[[1,2,2,0],[0,3,3,3],[0,3,1,2],[1,2,1,0]],[[1,2,2,0],[0,3,4,2],[0,3,1,2],[1,2,1,0]],[[1,2,3,0],[0,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,3,2,0],[0,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,2,0],[0,3,3,2],[0,3,1,2],[1,2,0,2]],[[1,2,2,0],[0,3,3,2],[0,3,1,3],[1,2,0,1]],[[1,2,2,0],[0,3,3,3],[0,3,1,2],[1,2,0,1]],[[1,2,2,0],[0,3,4,2],[0,3,1,2],[1,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,2,0,1],[1,2,0,0]],[[0,2,3,1],[2,3,3,2],[2,2,0,1],[1,2,0,0]],[[0,2,2,2],[2,3,3,2],[2,2,0,1],[1,2,0,0]],[[0,2,2,1],[3,3,3,2],[2,2,0,1],[1,2,0,0]],[[0,2,2,1],[2,4,3,2],[2,2,0,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,2],[3,2,0,1],[1,2,0,0]],[[0,2,2,1],[2,3,3,2],[2,2,0,1],[2,2,0,0]],[[1,2,3,0],[0,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,3,2,0],[0,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,2,2,0],[0,3,3,2],[0,3,1,3],[1,1,2,0]],[[1,2,2,0],[0,3,3,3],[0,3,1,2],[1,1,2,0]],[[1,2,2,0],[0,3,4,2],[0,3,1,2],[1,1,2,0]],[[1,2,3,0],[0,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,3,2,0],[0,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,2,0],[0,3,3,2],[0,3,1,2],[1,1,1,2]],[[1,2,2,0],[0,3,3,2],[0,3,1,3],[1,1,1,1]],[[1,2,2,0],[0,3,3,3],[0,3,1,2],[1,1,1,1]],[[1,2,2,0],[0,3,4,2],[0,3,1,2],[1,1,1,1]],[[1,2,3,0],[0,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,3,2,0],[0,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,2,0],[0,3,3,2],[0,3,1,2],[0,1,2,2]],[[1,2,2,0],[0,3,3,2],[0,3,1,2],[0,1,3,1]],[[1,2,2,0],[0,3,3,2],[0,3,1,3],[0,1,2,1]],[[1,2,2,0],[0,3,3,3],[0,3,1,2],[0,1,2,1]],[[1,2,2,0],[0,3,4,2],[0,3,1,2],[0,1,2,1]],[[1,2,3,0],[0,3,3,2],[0,3,1,2],[0,1,2,1]],[[1,3,2,0],[0,3,3,2],[0,3,1,2],[0,1,2,1]],[[0,3,2,1],[2,3,3,2],[2,2,0,2],[0,2,0,0]],[[0,2,3,1],[2,3,3,2],[2,2,0,2],[0,2,0,0]],[[0,2,2,2],[2,3,3,2],[2,2,0,2],[0,2,0,0]],[[0,2,2,1],[3,3,3,2],[2,2,0,2],[0,2,0,0]],[[0,2,2,1],[2,4,3,2],[2,2,0,2],[0,2,0,0]],[[1,2,2,0],[0,3,3,3],[0,3,1,1],[1,2,2,0]],[[1,2,2,0],[0,3,4,2],[0,3,1,1],[1,2,2,0]],[[1,2,3,0],[0,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,3,2,0],[0,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,2,0],[0,3,3,3],[0,3,1,0],[1,2,2,1]],[[1,2,2,0],[0,3,4,2],[0,3,1,0],[1,2,2,1]],[[1,2,3,0],[0,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,3,2,0],[0,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,2,0],[0,3,3,2],[0,3,0,3],[1,2,2,0]],[[1,2,2,0],[0,3,3,3],[0,3,0,2],[1,2,2,0]],[[1,2,2,0],[0,3,4,2],[0,3,0,2],[1,2,2,0]],[[1,2,3,0],[0,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,3,2,0],[0,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,2,0],[0,3,3,2],[0,3,0,2],[1,2,1,2]],[[1,2,2,0],[0,3,3,2],[0,3,0,3],[1,2,1,1]],[[1,2,2,0],[0,3,3,3],[0,3,0,2],[1,2,1,1]],[[1,2,2,0],[0,3,4,2],[0,3,0,2],[1,2,1,1]],[[1,2,3,0],[0,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,3,2,0],[0,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,2,0],[0,3,3,2],[0,3,0,2],[1,1,2,2]],[[1,2,2,0],[0,3,3,2],[0,3,0,2],[1,1,3,1]],[[1,2,2,0],[0,3,3,2],[0,3,0,3],[1,1,2,1]],[[1,2,2,0],[0,3,3,3],[0,3,0,2],[1,1,2,1]],[[0,3,2,1],[2,3,3,2],[2,2,0,2],[1,0,0,1]],[[0,2,3,1],[2,3,3,2],[2,2,0,2],[1,0,0,1]],[[0,2,2,2],[2,3,3,2],[2,2,0,2],[1,0,0,1]],[[0,2,2,1],[2,3,3,3],[2,2,0,2],[1,0,0,1]],[[1,2,2,0],[0,3,4,2],[0,3,0,2],[1,1,2,1]],[[1,2,3,0],[0,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,3,2,0],[0,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,2,0],[0,3,3,3],[0,3,0,1],[1,2,2,1]],[[1,2,2,0],[0,3,4,2],[0,3,0,1],[1,2,2,1]],[[1,2,3,0],[0,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,3,2,0],[0,3,3,2],[0,3,0,1],[1,2,2,1]],[[0,3,2,1],[2,3,3,2],[2,2,0,2],[1,1,0,0]],[[0,2,3,1],[2,3,3,2],[2,2,0,2],[1,1,0,0]],[[0,2,2,2],[2,3,3,2],[2,2,0,2],[1,1,0,0]],[[0,2,2,1],[3,3,3,2],[2,2,0,2],[1,1,0,0]],[[0,2,2,1],[2,4,3,2],[2,2,0,2],[1,1,0,0]],[[0,2,2,1],[2,3,3,2],[3,2,0,2],[1,1,0,0]],[[1,2,2,0],[0,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,2,0],[0,3,3,3],[0,2,3,2],[1,1,0,1]],[[1,2,2,0],[0,3,4,2],[0,2,3,2],[1,1,0,1]],[[1,2,3,0],[0,3,3,2],[0,2,3,2],[1,1,0,1]],[[1,3,2,0],[0,3,3,2],[0,2,3,2],[1,1,0,1]],[[1,2,2,0],[0,3,3,2],[0,2,3,3],[0,1,2,0]],[[1,2,2,0],[0,3,3,3],[0,2,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,4,2],[0,2,3,2],[0,1,2,0]],[[1,2,3,0],[0,3,3,2],[0,2,3,2],[0,1,2,0]],[[1,3,2,0],[0,3,3,2],[0,2,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,3,2],[0,2,3,2],[0,1,1,2]],[[1,2,2,0],[0,3,3,2],[0,2,3,3],[0,1,1,1]],[[1,2,2,0],[0,3,3,3],[0,2,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,4,2],[0,2,3,2],[0,1,1,1]],[[1,2,3,0],[0,3,3,2],[0,2,3,2],[0,1,1,1]],[[1,3,2,0],[0,3,3,2],[0,2,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,3,2],[0,2,3,2],[0,0,2,2]],[[1,2,2,0],[0,3,3,2],[0,2,3,3],[0,0,2,1]],[[1,2,2,0],[0,3,3,3],[0,2,3,2],[0,0,2,1]],[[1,2,2,0],[0,3,4,2],[0,2,3,2],[0,0,2,1]],[[1,2,3,0],[0,3,3,2],[0,2,3,2],[0,0,2,1]],[[1,3,2,0],[0,3,3,2],[0,2,3,2],[0,0,2,1]],[[1,2,2,0],[0,3,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,2,0],[0,3,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[0,3,4,2],[0,2,3,1],[1,2,1,0]],[[1,2,3,0],[0,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,3,2,0],[0,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,2,0],[0,3,3,2],[0,2,4,1],[1,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,2,1,0],[0,1,1,1]],[[0,2,3,1],[2,3,3,2],[2,2,1,0],[0,1,1,1]],[[0,2,2,2],[2,3,3,2],[2,2,1,0],[0,1,1,1]],[[0,2,2,1],[3,3,3,2],[2,2,1,0],[0,1,1,1]],[[0,2,2,1],[2,4,3,2],[2,2,1,0],[0,1,1,1]],[[0,3,2,1],[2,3,3,2],[2,2,1,0],[0,1,2,0]],[[0,2,3,1],[2,3,3,2],[2,2,1,0],[0,1,2,0]],[[0,2,2,2],[2,3,3,2],[2,2,1,0],[0,1,2,0]],[[0,2,2,1],[3,3,3,2],[2,2,1,0],[0,1,2,0]],[[0,2,2,1],[2,4,3,2],[2,2,1,0],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[2,2,1,0],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[2,2,1,0],[0,2,0,1]],[[0,2,2,2],[2,3,3,2],[2,2,1,0],[0,2,0,1]],[[0,2,2,1],[3,3,3,2],[2,2,1,0],[0,2,0,1]],[[0,2,2,1],[2,4,3,2],[2,2,1,0],[0,2,0,1]],[[0,2,2,1],[2,3,3,2],[3,2,1,0],[0,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,2,1,0],[0,2,1,0]],[[0,2,3,1],[2,3,3,2],[2,2,1,0],[0,2,1,0]],[[0,2,2,2],[2,3,3,2],[2,2,1,0],[0,2,1,0]],[[0,2,2,1],[3,3,3,2],[2,2,1,0],[0,2,1,0]],[[0,2,2,1],[2,4,3,2],[2,2,1,0],[0,2,1,0]],[[0,2,2,1],[2,3,3,2],[3,2,1,0],[0,2,1,0]],[[1,2,2,0],[0,3,3,3],[0,2,3,1],[1,2,0,1]],[[1,2,2,0],[0,3,4,2],[0,2,3,1],[1,2,0,1]],[[1,2,3,0],[0,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,3,2,0],[0,3,3,2],[0,2,3,1],[1,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,2,1,0],[1,0,1,1]],[[0,2,3,1],[2,3,3,2],[2,2,1,0],[1,0,1,1]],[[0,2,2,2],[2,3,3,2],[2,2,1,0],[1,0,1,1]],[[0,2,2,1],[3,3,3,2],[2,2,1,0],[1,0,1,1]],[[0,2,2,1],[2,4,3,2],[2,2,1,0],[1,0,1,1]],[[0,2,2,1],[2,3,3,2],[3,2,1,0],[1,0,1,1]],[[0,3,2,1],[2,3,3,2],[2,2,1,0],[1,0,2,0]],[[0,2,3,1],[2,3,3,2],[2,2,1,0],[1,0,2,0]],[[0,2,2,2],[2,3,3,2],[2,2,1,0],[1,0,2,0]],[[0,2,2,1],[3,3,3,2],[2,2,1,0],[1,0,2,0]],[[0,2,2,1],[2,4,3,2],[2,2,1,0],[1,0,2,0]],[[0,2,2,1],[2,3,3,2],[3,2,1,0],[1,0,2,0]],[[0,3,2,1],[2,3,3,2],[2,2,1,0],[1,1,0,1]],[[0,2,3,1],[2,3,3,2],[2,2,1,0],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[2,2,1,0],[1,1,0,1]],[[0,2,2,1],[3,3,3,2],[2,2,1,0],[1,1,0,1]],[[0,2,2,1],[2,4,3,2],[2,2,1,0],[1,1,0,1]],[[0,2,2,1],[2,3,3,2],[3,2,1,0],[1,1,0,1]],[[0,2,2,1],[2,3,3,2],[2,2,1,0],[2,1,0,1]],[[0,3,2,1],[2,3,3,2],[2,2,1,0],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[2,2,1,0],[1,1,1,0]],[[0,2,2,2],[2,3,3,2],[2,2,1,0],[1,1,1,0]],[[0,2,2,1],[3,3,3,2],[2,2,1,0],[1,1,1,0]],[[0,2,2,1],[2,4,3,2],[2,2,1,0],[1,1,1,0]],[[0,2,2,1],[2,3,3,2],[3,2,1,0],[1,1,1,0]],[[0,2,2,1],[2,3,3,2],[2,2,1,0],[2,1,1,0]],[[1,2,2,0],[0,3,3,2],[0,2,3,1],[1,1,3,0]],[[1,2,2,0],[0,3,3,2],[0,2,4,1],[1,1,2,0]],[[1,2,2,0],[0,3,3,3],[0,2,3,1],[1,1,2,0]],[[1,2,2,0],[0,3,4,2],[0,2,3,1],[1,1,2,0]],[[1,2,3,0],[0,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,3,2,0],[0,3,3,2],[0,2,3,1],[1,1,2,0]],[[0,3,2,1],[2,3,3,2],[2,2,1,0],[1,2,0,0]],[[0,2,3,1],[2,3,3,2],[2,2,1,0],[1,2,0,0]],[[0,2,2,2],[2,3,3,2],[2,2,1,0],[1,2,0,0]],[[0,2,2,1],[3,3,3,2],[2,2,1,0],[1,2,0,0]],[[0,2,2,1],[2,4,3,2],[2,2,1,0],[1,2,0,0]],[[0,2,2,1],[2,3,3,2],[3,2,1,0],[1,2,0,0]],[[0,2,2,1],[2,3,3,2],[2,2,1,0],[2,2,0,0]],[[1,2,2,0],[0,3,3,2],[0,2,4,1],[1,1,1,1]],[[1,2,2,0],[0,3,3,3],[0,2,3,1],[1,1,1,1]],[[1,2,2,0],[0,3,4,2],[0,2,3,1],[1,1,1,1]],[[1,2,3,0],[0,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,3,2,0],[0,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,2,0],[0,3,3,2],[0,2,4,1],[1,0,2,1]],[[1,2,2,0],[0,3,3,3],[0,2,3,1],[1,0,2,1]],[[1,2,2,0],[0,3,4,2],[0,2,3,1],[1,0,2,1]],[[1,2,3,0],[0,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,3,2,0],[0,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,2,0],[0,3,3,2],[0,2,4,0],[1,2,1,1]],[[1,2,2,0],[0,3,3,3],[0,2,3,0],[1,2,1,1]],[[1,2,2,0],[0,3,4,2],[0,2,3,0],[1,2,1,1]],[[1,2,3,0],[0,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,3,2,0],[0,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,2,0],[0,3,3,2],[0,2,3,0],[1,1,2,2]],[[1,2,2,0],[0,3,3,2],[0,2,3,0],[1,1,3,1]],[[1,2,2,0],[0,3,3,2],[0,2,4,0],[1,1,2,1]],[[1,2,2,0],[0,3,3,3],[0,2,3,0],[1,1,2,1]],[[1,2,2,0],[0,3,4,2],[0,2,3,0],[1,1,2,1]],[[1,2,3,0],[0,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,3,2,0],[0,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,2,0],[0,3,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,2,0],[0,3,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[0,3,4,2],[0,2,2,2],[1,2,1,0]],[[1,2,3,0],[0,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,3,2,0],[0,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,2,0],[0,3,3,2],[0,2,2,2],[1,2,0,2]],[[1,2,2,0],[0,3,3,2],[0,2,2,3],[1,2,0,1]],[[1,2,2,0],[0,3,3,3],[0,2,2,2],[1,2,0,1]],[[1,2,2,0],[0,3,4,2],[0,2,2,2],[1,2,0,1]],[[1,2,3,0],[0,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,3,2,0],[0,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,2,0],[0,3,3,2],[0,2,2,3],[1,1,2,0]],[[1,2,2,0],[0,3,3,3],[0,2,2,2],[1,1,2,0]],[[1,2,2,0],[0,3,4,2],[0,2,2,2],[1,1,2,0]],[[1,2,3,0],[0,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,3,2,0],[0,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,2,0],[0,3,3,2],[0,2,2,2],[1,1,1,2]],[[1,2,2,0],[0,3,3,2],[0,2,2,3],[1,1,1,1]],[[1,2,2,0],[0,3,3,3],[0,2,2,2],[1,1,1,1]],[[1,2,2,0],[0,3,4,2],[0,2,2,2],[1,1,1,1]],[[1,2,3,0],[0,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,3,2,0],[0,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,2,0],[0,3,3,2],[0,2,2,2],[1,0,2,2]],[[1,2,2,0],[0,3,3,2],[0,2,2,3],[1,0,2,1]],[[1,2,2,0],[0,3,3,3],[0,2,2,2],[1,0,2,1]],[[1,2,2,0],[0,3,4,2],[0,2,2,2],[1,0,2,1]],[[1,2,3,0],[0,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,3,2,0],[0,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,2,0],[0,3,3,2],[0,2,1,2],[1,1,2,2]],[[1,2,2,0],[0,3,3,2],[0,2,1,2],[1,1,3,1]],[[1,2,2,0],[0,3,3,2],[0,2,1,3],[1,1,2,1]],[[1,2,2,0],[0,3,3,3],[0,2,1,2],[1,1,2,1]],[[1,2,2,0],[0,3,4,2],[0,2,1,2],[1,1,2,1]],[[1,2,3,0],[0,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,3,2,0],[0,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,2,0],[0,3,3,2],[0,2,0,2],[1,2,2,2]],[[1,2,2,0],[0,3,3,2],[0,2,0,2],[1,2,3,1]],[[1,2,2,0],[0,3,3,2],[0,2,0,2],[1,3,2,1]],[[1,2,2,0],[0,3,3,2],[0,2,0,3],[1,2,2,1]],[[1,2,2,0],[0,3,3,3],[0,2,0,2],[1,2,2,1]],[[1,2,2,0],[0,3,4,2],[0,2,0,2],[1,2,2,1]],[[1,2,3,0],[0,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,3,2,0],[0,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,2,2,0],[0,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,2,0],[0,3,3,3],[0,1,3,2],[1,1,2,0]],[[1,2,2,0],[0,3,4,2],[0,1,3,2],[1,1,2,0]],[[1,2,3,0],[0,3,3,2],[0,1,3,2],[1,1,2,0]],[[1,3,2,0],[0,3,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,2,0],[0,3,3,2],[0,1,3,2],[1,1,1,2]],[[1,2,2,0],[0,3,3,2],[0,1,3,3],[1,1,1,1]],[[1,2,2,0],[0,3,3,3],[0,1,3,2],[1,1,1,1]],[[1,2,2,0],[0,3,4,2],[0,1,3,2],[1,1,1,1]],[[1,2,3,0],[0,3,3,2],[0,1,3,2],[1,1,1,1]],[[1,3,2,0],[0,3,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,2,0],[0,3,3,2],[0,1,3,2],[1,0,2,2]],[[1,2,2,0],[0,3,3,2],[0,1,3,3],[1,0,2,1]],[[1,2,2,0],[0,3,3,3],[0,1,3,2],[1,0,2,1]],[[1,2,2,0],[0,3,4,2],[0,1,3,2],[1,0,2,1]],[[1,2,3,0],[0,3,3,2],[0,1,3,2],[1,0,2,1]],[[1,3,2,0],[0,3,3,2],[0,1,3,2],[1,0,2,1]],[[1,2,2,0],[0,3,3,2],[0,1,3,1],[1,2,3,0]],[[1,2,2,0],[0,3,3,2],[0,1,3,1],[1,3,2,0]],[[1,2,2,0],[0,3,3,2],[0,1,4,1],[1,2,2,0]],[[1,2,2,0],[0,3,3,3],[0,1,3,1],[1,2,2,0]],[[1,2,2,0],[0,3,4,2],[0,1,3,1],[1,2,2,0]],[[1,2,3,0],[0,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,3,2,0],[0,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,2,0],[0,3,3,2],[0,1,4,1],[1,2,1,1]],[[1,2,2,0],[0,3,3,3],[0,1,3,1],[1,2,1,1]],[[1,2,2,0],[0,3,4,2],[0,1,3,1],[1,2,1,1]],[[1,2,3,0],[0,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,3,2,0],[0,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,2,0],[0,3,3,2],[0,1,3,0],[1,2,2,2]],[[1,2,2,0],[0,3,3,2],[0,1,3,0],[1,2,3,1]],[[1,2,2,0],[0,3,3,2],[0,1,3,0],[1,3,2,1]],[[1,2,2,0],[0,3,3,2],[0,1,4,0],[1,2,2,1]],[[1,2,2,0],[0,3,3,3],[0,1,3,0],[1,2,2,1]],[[1,2,2,0],[0,3,4,2],[0,1,3,0],[1,2,2,1]],[[1,2,3,0],[0,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,3,2,0],[0,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,2,0],[0,3,3,2],[0,1,2,3],[1,2,2,0]],[[1,2,2,0],[0,3,3,3],[0,1,2,2],[1,2,2,0]],[[1,2,2,0],[0,3,4,2],[0,1,2,2],[1,2,2,0]],[[1,2,3,0],[0,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,3,2,0],[0,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,2,0],[0,3,3,2],[0,1,2,2],[1,2,1,2]],[[1,2,2,0],[0,3,3,2],[0,1,2,3],[1,2,1,1]],[[1,2,2,0],[0,3,3,3],[0,1,2,2],[1,2,1,1]],[[1,2,2,0],[0,3,4,2],[0,1,2,2],[1,2,1,1]],[[1,2,3,0],[0,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,3,2,0],[0,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,2,0],[0,3,3,2],[0,1,1,2],[1,2,2,2]],[[1,2,2,0],[0,3,3,2],[0,1,1,2],[1,2,3,1]],[[1,2,2,0],[0,3,3,2],[0,1,1,2],[1,3,2,1]],[[1,2,2,0],[0,3,3,2],[0,1,1,3],[1,2,2,1]],[[1,2,2,0],[0,3,3,3],[0,1,1,2],[1,2,2,1]],[[1,2,2,0],[0,3,4,2],[0,1,1,2],[1,2,2,1]],[[1,2,3,0],[0,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,3,2,0],[0,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,2,0],[0,3,3,2],[0,0,3,3],[1,2,2,0]],[[1,2,2,0],[0,3,3,3],[0,0,3,2],[1,2,2,0]],[[1,2,2,0],[0,3,4,2],[0,0,3,2],[1,2,2,0]],[[1,2,3,0],[0,3,3,2],[0,0,3,2],[1,2,2,0]],[[1,3,2,0],[0,3,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,2,0],[0,3,3,2],[0,0,3,2],[1,2,1,2]],[[1,2,2,0],[0,3,3,2],[0,0,3,3],[1,2,1,1]],[[1,2,2,0],[0,3,3,3],[0,0,3,2],[1,2,1,1]],[[1,2,2,0],[0,3,4,2],[0,0,3,2],[1,2,1,1]],[[1,2,3,0],[0,3,3,2],[0,0,3,2],[1,2,1,1]],[[1,3,2,0],[0,3,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,2,0],[0,3,3,2],[0,0,3,2],[1,1,2,2]],[[1,2,2,0],[0,3,3,2],[0,0,3,3],[1,1,2,1]],[[1,2,2,0],[0,3,3,3],[0,0,3,2],[1,1,2,1]],[[1,2,2,0],[0,3,4,2],[0,0,3,2],[1,1,2,1]],[[1,2,3,0],[0,3,3,2],[0,0,3,2],[1,1,2,1]],[[1,3,2,0],[0,3,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,2,0],[0,3,3,2],[0,0,3,2],[0,2,2,2]],[[1,2,2,0],[0,3,3,2],[0,0,3,3],[0,2,2,1]],[[1,2,2,0],[0,3,3,3],[0,0,3,2],[0,2,2,1]],[[1,2,2,0],[0,3,4,2],[0,0,3,2],[0,2,2,1]],[[1,2,3,0],[0,3,3,2],[0,0,3,2],[0,2,2,1]],[[1,3,2,0],[0,3,3,2],[0,0,3,2],[0,2,2,1]],[[1,2,2,0],[0,3,3,2],[0,0,2,2],[1,2,2,2]],[[1,2,2,0],[0,3,3,2],[0,0,2,2],[1,2,3,1]],[[1,2,2,0],[0,3,3,2],[0,0,2,3],[1,2,2,1]],[[1,2,2,0],[0,3,3,3],[0,0,2,2],[1,2,2,1]],[[1,2,2,0],[0,3,4,2],[0,0,2,2],[1,2,2,1]],[[1,2,3,0],[0,3,3,2],[0,0,2,2],[1,2,2,1]],[[1,3,2,0],[0,3,3,2],[0,0,2,2],[1,2,2,1]],[[0,3,2,1],[2,3,3,2],[2,2,2,0],[0,2,0,0]],[[0,2,3,1],[2,3,3,2],[2,2,2,0],[0,2,0,0]],[[0,2,2,2],[2,3,3,2],[2,2,2,0],[0,2,0,0]],[[0,2,2,1],[3,3,3,2],[2,2,2,0],[0,2,0,0]],[[0,2,2,1],[2,4,3,2],[2,2,2,0],[0,2,0,0]],[[0,3,2,1],[2,3,3,2],[2,2,2,0],[1,1,0,0]],[[0,2,3,1],[2,3,3,2],[2,2,2,0],[1,1,0,0]],[[0,2,2,2],[2,3,3,2],[2,2,2,0],[1,1,0,0]],[[0,2,2,1],[3,3,3,2],[2,2,2,0],[1,1,0,0]],[[0,2,2,1],[2,4,3,2],[2,2,2,0],[1,1,0,0]],[[0,2,2,1],[2,3,3,2],[3,2,2,0],[1,1,0,0]],[[1,2,2,0],[0,3,4,1],[1,3,3,2],[1,1,0,0]],[[1,2,3,0],[0,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,3,2,0],[0,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,2,2,0],[0,3,4,1],[1,3,3,2],[0,2,0,0]],[[1,2,3,0],[0,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,3,2,0],[0,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,2,2,0],[0,3,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,2,0],[0,3,3,1],[1,3,4,2],[0,0,2,0]],[[1,2,2,0],[0,3,4,1],[1,3,3,2],[0,0,2,0]],[[1,2,3,0],[0,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,3,2,0],[0,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,2,2,0],[0,3,3,1],[1,3,3,2],[0,0,1,2]],[[1,2,2,0],[0,3,3,1],[1,3,3,3],[0,0,1,1]],[[1,2,2,0],[0,3,3,1],[1,3,4,2],[0,0,1,1]],[[1,2,2,0],[0,3,4,1],[1,3,3,2],[0,0,1,1]],[[1,2,3,0],[0,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,3,2,0],[0,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,2,2,0],[0,3,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,2,0],[0,3,4,1],[1,3,3,1],[0,0,2,1]],[[1,2,3,0],[0,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,3,2,0],[0,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,2,0],[0,3,4,1],[1,3,2,2],[1,1,1,0]],[[1,2,3,0],[0,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,3,2,0],[0,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,2,0],[0,3,4,1],[1,3,2,2],[1,1,0,1]],[[1,2,3,0],[0,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,3,2,0],[0,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,2,0],[0,3,4,1],[1,3,2,2],[1,0,2,0]],[[1,2,3,0],[0,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,3,2,0],[0,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,2,0],[0,3,4,1],[1,3,2,2],[1,0,1,1]],[[1,2,3,0],[0,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,3,2,0],[0,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,2,0],[0,3,4,1],[1,3,2,2],[0,2,1,0]],[[1,2,3,0],[0,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,3,2,0],[0,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,2,0],[0,3,4,1],[1,3,2,2],[0,2,0,1]],[[1,2,3,0],[0,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,3,2,0],[0,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,2,0],[0,3,4,1],[1,3,2,2],[0,1,2,0]],[[1,2,3,0],[0,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,3,2,0],[0,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,2,0],[0,3,4,1],[1,3,2,2],[0,1,1,1]],[[1,2,3,0],[0,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,3,2,0],[0,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,2,0],[0,3,4,1],[1,3,2,1],[1,0,2,1]],[[1,2,3,0],[0,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,3,2,0],[0,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,2,2,0],[0,3,4,1],[1,3,2,1],[0,2,1,1]],[[1,2,3,0],[0,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,3,2,0],[0,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,2,2,0],[0,3,4,1],[1,3,2,1],[0,1,2,1]],[[1,2,3,0],[0,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,3,2,0],[0,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,2,2,0],[0,3,4,1],[1,3,1,2],[0,2,2,0]],[[1,2,3,0],[0,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,3,2,0],[0,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,2,2,0],[0,3,4,1],[1,3,1,1],[0,2,2,1]],[[1,2,3,0],[0,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,3,2,0],[0,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,2,2,0],[0,3,4,1],[1,3,0,2],[0,2,2,1]],[[1,2,3,0],[0,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,3,2,0],[0,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,2,0],[0,3,4,1],[1,2,3,2],[1,1,1,0]],[[1,2,3,0],[0,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,3,2,0],[0,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,2,2,0],[0,3,4,1],[1,2,3,2],[1,1,0,1]],[[1,2,3,0],[0,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,3,2,0],[0,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,2,0],[0,3,3,1],[1,2,3,3],[1,0,2,0]],[[1,2,2,0],[0,3,3,1],[1,2,4,2],[1,0,2,0]],[[1,2,2,0],[0,3,4,1],[1,2,3,2],[1,0,2,0]],[[1,2,3,0],[0,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,3,2,0],[0,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,2,2,0],[0,3,3,1],[1,2,3,2],[1,0,1,2]],[[1,2,2,0],[0,3,3,1],[1,2,3,3],[1,0,1,1]],[[1,2,2,0],[0,3,3,1],[1,2,4,2],[1,0,1,1]],[[1,2,2,0],[0,3,4,1],[1,2,3,2],[1,0,1,1]],[[1,2,3,0],[0,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,3,2,0],[0,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,2,2,0],[0,3,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,2,0],[0,3,3,1],[1,2,4,2],[0,2,1,0]],[[1,2,2,0],[0,3,4,1],[1,2,3,2],[0,2,1,0]],[[1,2,3,0],[0,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,3,2,0],[0,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,2,2,0],[0,3,3,1],[1,2,3,2],[0,2,0,2]],[[1,2,2,0],[0,3,3,1],[1,2,3,3],[0,2,0,1]],[[1,2,2,0],[0,3,3,1],[1,2,4,2],[0,2,0,1]],[[1,2,2,0],[0,3,4,1],[1,2,3,2],[0,2,0,1]],[[1,2,3,0],[0,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,3,2,0],[0,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,2,2,0],[0,3,3,1],[1,2,3,2],[0,1,3,0]],[[1,2,2,0],[0,3,3,1],[1,2,3,3],[0,1,2,0]],[[1,2,2,0],[0,3,3,1],[1,2,4,2],[0,1,2,0]],[[1,2,2,0],[0,3,4,1],[1,2,3,2],[0,1,2,0]],[[1,2,3,0],[0,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,3,2,0],[0,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,3,1],[1,2,3,2],[0,1,1,2]],[[1,2,2,0],[0,3,3,1],[1,2,3,3],[0,1,1,1]],[[1,2,2,0],[0,3,3,1],[1,2,4,2],[0,1,1,1]],[[1,2,2,0],[0,3,4,1],[1,2,3,2],[0,1,1,1]],[[1,2,3,0],[0,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,3,2,0],[0,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,3,1],[1,2,3,2],[0,0,2,2]],[[1,2,2,0],[0,3,3,1],[1,2,3,3],[0,0,2,1]],[[1,2,2,0],[0,3,3,1],[1,2,4,2],[0,0,2,1]],[[1,2,2,0],[0,3,4,1],[1,2,3,2],[0,0,2,1]],[[1,2,3,0],[0,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,3,2,0],[0,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,2,2,0],[0,3,3,1],[1,2,4,1],[1,0,2,1]],[[1,2,2,0],[0,3,4,1],[1,2,3,1],[1,0,2,1]],[[1,2,3,0],[0,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,3,2,0],[0,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,2,0],[0,3,3,1],[1,2,4,1],[0,2,1,1]],[[1,2,2,0],[0,3,4,1],[1,2,3,1],[0,2,1,1]],[[1,2,3,0],[0,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,3,2,0],[0,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,2,0],[0,3,3,1],[1,2,3,1],[0,1,2,2]],[[1,2,2,0],[0,3,3,1],[1,2,3,1],[0,1,3,1]],[[1,2,2,0],[0,3,3,1],[1,2,4,1],[0,1,2,1]],[[1,2,2,0],[0,3,4,1],[1,2,3,1],[0,1,2,1]],[[1,2,3,0],[0,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,3,2,0],[0,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,2,2,0],[0,3,3,1],[1,2,2,2],[0,1,2,2]],[[1,2,2,0],[0,3,3,1],[1,2,2,2],[0,1,3,1]],[[1,2,2,0],[0,3,3,1],[1,2,2,3],[0,1,2,1]],[[1,2,2,0],[0,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,2,0],[0,3,3,1],[1,1,3,3],[0,2,2,0]],[[1,2,2,0],[0,3,3,1],[1,1,4,2],[0,2,2,0]],[[1,2,2,0],[0,3,4,1],[1,1,3,2],[0,2,2,0]],[[1,2,3,0],[0,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,3,2,0],[0,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,2,2,0],[0,3,3,1],[1,1,3,2],[0,2,1,2]],[[1,2,2,0],[0,3,3,1],[1,1,3,3],[0,2,1,1]],[[1,2,2,0],[0,3,3,1],[1,1,4,2],[0,2,1,1]],[[1,2,2,0],[0,3,4,1],[1,1,3,2],[0,2,1,1]],[[1,2,3,0],[0,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,3,2,0],[0,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,2,2,0],[0,3,3,1],[1,1,3,1],[0,2,2,2]],[[1,2,2,0],[0,3,3,1],[1,1,3,1],[0,2,3,1]],[[1,2,2,0],[0,3,3,1],[1,1,4,1],[0,2,2,1]],[[1,2,2,0],[0,3,4,1],[1,1,3,1],[0,2,2,1]],[[1,2,3,0],[0,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,3,2,0],[0,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,2,2,0],[0,3,3,1],[1,1,2,2],[0,2,2,2]],[[1,2,2,0],[0,3,3,1],[1,1,2,2],[0,2,3,1]],[[1,2,2,0],[0,3,3,1],[1,1,2,3],[0,2,2,1]],[[1,2,2,0],[0,3,3,1],[1,0,3,2],[0,2,2,2]],[[1,2,2,0],[0,3,3,1],[1,0,3,2],[0,2,3,1]],[[1,2,2,0],[0,3,3,1],[1,0,3,3],[0,2,2,1]],[[1,2,2,0],[0,3,4,1],[0,3,3,2],[1,2,0,0]],[[1,2,3,0],[0,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,3,2,0],[0,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,2,2,0],[0,3,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,2,0],[0,3,3,1],[0,3,4,2],[0,2,1,0]],[[1,2,2,0],[0,3,4,1],[0,3,3,2],[0,2,1,0]],[[1,2,3,0],[0,3,3,1],[0,3,3,2],[0,2,1,0]],[[1,3,2,0],[0,3,3,1],[0,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,3,3,1],[0,3,3,2],[0,2,0,2]],[[1,2,2,0],[0,3,3,1],[0,3,3,3],[0,2,0,1]],[[1,2,2,0],[0,3,3,1],[0,3,4,2],[0,2,0,1]],[[1,2,2,0],[0,3,4,1],[0,3,3,2],[0,2,0,1]],[[1,2,3,0],[0,3,3,1],[0,3,3,2],[0,2,0,1]],[[1,3,2,0],[0,3,3,1],[0,3,3,2],[0,2,0,1]],[[1,2,2,0],[0,3,3,1],[0,3,3,2],[0,1,3,0]],[[1,2,2,0],[0,3,3,1],[0,3,3,3],[0,1,2,0]],[[1,2,2,0],[0,3,3,1],[0,3,4,2],[0,1,2,0]],[[1,2,2,0],[0,3,4,1],[0,3,3,2],[0,1,2,0]],[[1,2,3,0],[0,3,3,1],[0,3,3,2],[0,1,2,0]],[[1,3,2,0],[0,3,3,1],[0,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,3,1],[0,3,3,2],[0,1,1,2]],[[1,2,2,0],[0,3,3,1],[0,3,3,3],[0,1,1,1]],[[1,2,2,0],[0,3,3,1],[0,3,4,2],[0,1,1,1]],[[1,2,2,0],[0,3,4,1],[0,3,3,2],[0,1,1,1]],[[1,2,3,0],[0,3,3,1],[0,3,3,2],[0,1,1,1]],[[1,3,2,0],[0,3,3,1],[0,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,3,1],[0,3,3,2],[0,0,2,2]],[[1,2,2,0],[0,3,3,1],[0,3,3,3],[0,0,2,1]],[[1,2,2,0],[0,3,3,1],[0,3,4,2],[0,0,2,1]],[[1,2,2,0],[0,3,4,1],[0,3,3,2],[0,0,2,1]],[[1,2,3,0],[0,3,3,1],[0,3,3,2],[0,0,2,1]],[[1,3,2,0],[0,3,3,1],[0,3,3,2],[0,0,2,1]],[[1,2,2,0],[0,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,2,2,0],[0,3,4,1],[0,3,3,1],[0,2,1,1]],[[1,2,3,0],[0,3,3,1],[0,3,3,1],[0,2,1,1]],[[1,3,2,0],[0,3,3,1],[0,3,3,1],[0,2,1,1]],[[1,2,2,0],[0,3,3,1],[0,3,3,1],[0,1,2,2]],[[1,2,2,0],[0,3,3,1],[0,3,3,1],[0,1,3,1]],[[1,2,2,0],[0,3,3,1],[0,3,4,1],[0,1,2,1]],[[1,2,2,0],[0,3,4,1],[0,3,3,1],[0,1,2,1]],[[1,2,3,0],[0,3,3,1],[0,3,3,1],[0,1,2,1]],[[1,3,2,0],[0,3,3,1],[0,3,3,1],[0,1,2,1]],[[1,2,2,0],[0,3,4,1],[0,3,2,2],[1,2,1,0]],[[1,2,3,0],[0,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,3,2,0],[0,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,2,0],[0,3,4,1],[0,3,2,2],[1,2,0,1]],[[1,2,3,0],[0,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,3,2,0],[0,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,2,0],[0,3,4,1],[0,3,2,2],[1,1,2,0]],[[1,2,3,0],[0,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,3,2,0],[0,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,2,0],[0,3,4,1],[0,3,2,2],[1,1,1,1]],[[1,2,3,0],[0,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,3,2,0],[0,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,2,0],[0,3,3,1],[0,3,2,2],[0,1,2,2]],[[1,2,2,0],[0,3,3,1],[0,3,2,2],[0,1,3,1]],[[1,2,2,0],[0,3,3,1],[0,3,2,3],[0,1,2,1]],[[1,2,2,0],[0,3,4,1],[0,3,2,1],[1,2,1,1]],[[1,2,3,0],[0,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,3,2,0],[0,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,2,2,0],[0,3,4,1],[0,3,2,1],[1,1,2,1]],[[1,2,3,0],[0,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,3,2,0],[0,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,2,2,0],[0,3,4,1],[0,3,1,2],[1,2,2,0]],[[1,2,3,0],[0,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,3,2,0],[0,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,2,2,0],[0,3,4,1],[0,3,1,1],[1,2,2,1]],[[1,2,3,0],[0,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,3,2,0],[0,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,2,2,0],[0,3,4,1],[0,3,0,2],[1,2,2,1]],[[1,2,3,0],[0,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,3,2,0],[0,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,2,0],[0,3,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,2,0],[0,3,3,1],[0,2,4,2],[1,2,1,0]],[[1,2,2,0],[0,3,4,1],[0,2,3,2],[1,2,1,0]],[[1,2,3,0],[0,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,3,2,0],[0,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,2,2,0],[0,3,3,1],[0,2,3,2],[1,2,0,2]],[[1,2,2,0],[0,3,3,1],[0,2,3,3],[1,2,0,1]],[[1,2,2,0],[0,3,3,1],[0,2,4,2],[1,2,0,1]],[[1,2,2,0],[0,3,4,1],[0,2,3,2],[1,2,0,1]],[[1,2,3,0],[0,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,3,2,0],[0,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,2,2,0],[0,3,3,1],[0,2,3,2],[1,1,3,0]],[[1,2,2,0],[0,3,3,1],[0,2,3,3],[1,1,2,0]],[[1,2,2,0],[0,3,3,1],[0,2,4,2],[1,1,2,0]],[[1,2,2,0],[0,3,4,1],[0,2,3,2],[1,1,2,0]],[[1,2,3,0],[0,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,3,2,0],[0,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,2,2,0],[0,3,3,1],[0,2,3,2],[1,1,1,2]],[[1,2,2,0],[0,3,3,1],[0,2,3,3],[1,1,1,1]],[[1,2,2,0],[0,3,3,1],[0,2,4,2],[1,1,1,1]],[[1,2,2,0],[0,3,4,1],[0,2,3,2],[1,1,1,1]],[[1,2,3,0],[0,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,3,2,0],[0,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,2,2,0],[0,3,3,1],[0,2,3,2],[1,0,2,2]],[[1,2,2,0],[0,3,3,1],[0,2,3,3],[1,0,2,1]],[[1,2,2,0],[0,3,3,1],[0,2,4,2],[1,0,2,1]],[[1,2,2,0],[0,3,4,1],[0,2,3,2],[1,0,2,1]],[[1,2,3,0],[0,3,3,1],[0,2,3,2],[1,0,2,1]],[[1,3,2,0],[0,3,3,1],[0,2,3,2],[1,0,2,1]],[[1,2,2,0],[0,3,3,1],[0,2,4,1],[1,2,1,1]],[[1,2,2,0],[0,3,4,1],[0,2,3,1],[1,2,1,1]],[[1,2,3,0],[0,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,3,2,0],[0,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,2,0],[0,3,3,1],[0,2,3,1],[1,1,2,2]],[[1,2,2,0],[0,3,3,1],[0,2,3,1],[1,1,3,1]],[[1,2,2,0],[0,3,3,1],[0,2,4,1],[1,1,2,1]],[[1,2,2,0],[0,3,4,1],[0,2,3,1],[1,1,2,1]],[[1,2,3,0],[0,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,3,2,0],[0,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,2,2,0],[0,3,3,1],[0,2,2,2],[1,1,2,2]],[[1,2,2,0],[0,3,3,1],[0,2,2,2],[1,1,3,1]],[[1,2,2,0],[0,3,3,1],[0,2,2,3],[1,1,2,1]],[[1,2,2,0],[0,3,3,1],[0,1,3,2],[1,2,3,0]],[[1,2,2,0],[0,3,3,1],[0,1,3,2],[1,3,2,0]],[[1,2,2,0],[0,3,3,1],[0,1,3,3],[1,2,2,0]],[[1,2,2,0],[0,3,3,1],[0,1,4,2],[1,2,2,0]],[[1,2,2,0],[0,3,4,1],[0,1,3,2],[1,2,2,0]],[[1,2,3,0],[0,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,3,2,0],[0,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,3,3,1],[0,1,3,2],[1,2,1,2]],[[1,2,2,0],[0,3,3,1],[0,1,3,3],[1,2,1,1]],[[1,2,2,0],[0,3,3,1],[0,1,4,2],[1,2,1,1]],[[1,2,2,0],[0,3,4,1],[0,1,3,2],[1,2,1,1]],[[1,2,3,0],[0,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,3,2,0],[0,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,2,2,0],[0,3,3,1],[0,1,3,1],[1,2,2,2]],[[1,2,2,0],[0,3,3,1],[0,1,3,1],[1,2,3,1]],[[1,2,2,0],[0,3,3,1],[0,1,3,1],[1,3,2,1]],[[1,2,2,0],[0,3,3,1],[0,1,4,1],[1,2,2,1]],[[1,2,2,0],[0,3,4,1],[0,1,3,1],[1,2,2,1]],[[1,2,3,0],[0,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,3,2,0],[0,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,2,2,0],[0,3,3,1],[0,1,2,2],[1,2,2,2]],[[1,2,2,0],[0,3,3,1],[0,1,2,2],[1,2,3,1]],[[1,2,2,0],[0,3,3,1],[0,1,2,2],[1,3,2,1]],[[1,2,2,0],[0,3,3,1],[0,1,2,3],[1,2,2,1]],[[1,2,2,0],[0,3,3,1],[0,0,3,2],[1,2,2,2]],[[1,2,2,0],[0,3,3,1],[0,0,3,2],[1,2,3,1]],[[1,2,2,0],[0,3,3,1],[0,0,3,3],[1,2,2,1]],[[1,2,2,0],[0,3,3,0],[1,2,3,2],[0,1,2,2]],[[1,2,2,0],[0,3,3,0],[1,2,3,2],[0,1,3,1]],[[1,2,2,0],[0,3,3,0],[1,2,4,2],[0,1,2,1]],[[1,2,2,0],[0,3,3,0],[1,1,3,2],[0,2,2,2]],[[1,2,2,0],[0,3,3,0],[1,1,3,2],[0,2,3,1]],[[1,2,2,0],[0,3,3,0],[1,1,4,2],[0,2,2,1]],[[1,2,2,0],[0,3,3,0],[0,3,3,2],[0,1,2,2]],[[1,2,2,0],[0,3,3,0],[0,3,3,2],[0,1,3,1]],[[1,2,2,0],[0,3,3,0],[0,3,4,2],[0,1,2,1]],[[1,2,2,0],[0,3,3,0],[0,2,3,2],[1,1,2,2]],[[1,2,2,0],[0,3,3,0],[0,2,3,2],[1,1,3,1]],[[1,2,2,0],[0,3,3,0],[0,2,4,2],[1,1,2,1]],[[1,2,2,0],[0,3,3,0],[0,1,3,2],[1,2,2,2]],[[1,2,2,0],[0,3,3,0],[0,1,3,2],[1,2,3,1]],[[1,2,2,0],[0,3,3,0],[0,1,3,2],[1,3,2,1]],[[1,2,2,0],[0,3,3,0],[0,1,4,2],[1,2,2,1]],[[1,2,2,0],[0,4,2,2],[2,3,3,2],[0,0,0,1]],[[1,2,3,0],[0,3,2,2],[2,3,3,2],[0,0,0,1]],[[1,3,2,0],[0,3,2,2],[2,3,3,2],[0,0,0,1]],[[2,2,2,0],[0,3,2,2],[2,3,3,2],[0,0,0,1]],[[1,2,2,0],[0,3,2,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,0],[0,3,2,2],[2,4,3,1],[1,1,0,0]],[[1,2,2,0],[0,3,2,2],[3,3,3,1],[1,1,0,0]],[[1,2,2,0],[0,4,2,2],[2,3,3,1],[1,1,0,0]],[[1,2,3,0],[0,3,2,2],[2,3,3,1],[1,1,0,0]],[[1,3,2,0],[0,3,2,2],[2,3,3,1],[1,1,0,0]],[[2,2,2,0],[0,3,2,2],[2,3,3,1],[1,1,0,0]],[[0,3,2,1],[2,3,3,2],[2,3,0,0],[0,2,0,1]],[[0,2,3,1],[2,3,3,2],[2,3,0,0],[0,2,0,1]],[[0,2,2,2],[2,3,3,2],[2,3,0,0],[0,2,0,1]],[[0,2,2,1],[3,3,3,2],[2,3,0,0],[0,2,0,1]],[[0,2,2,1],[2,4,3,2],[2,3,0,0],[0,2,0,1]],[[0,2,2,1],[2,3,3,2],[3,3,0,0],[0,2,0,1]],[[0,3,2,1],[2,3,3,2],[2,3,0,0],[0,2,1,0]],[[0,2,3,1],[2,3,3,2],[2,3,0,0],[0,2,1,0]],[[0,2,2,2],[2,3,3,2],[2,3,0,0],[0,2,1,0]],[[0,2,2,1],[3,3,3,2],[2,3,0,0],[0,2,1,0]],[[0,2,2,1],[2,4,3,2],[2,3,0,0],[0,2,1,0]],[[0,2,2,1],[2,3,3,2],[3,3,0,0],[0,2,1,0]],[[0,3,2,1],[2,3,3,2],[2,3,0,0],[1,1,0,1]],[[0,2,3,1],[2,3,3,2],[2,3,0,0],[1,1,0,1]],[[0,2,2,2],[2,3,3,2],[2,3,0,0],[1,1,0,1]],[[0,2,2,1],[3,3,3,2],[2,3,0,0],[1,1,0,1]],[[0,2,2,1],[2,4,3,2],[2,3,0,0],[1,1,0,1]],[[0,2,2,1],[2,3,3,2],[3,3,0,0],[1,1,0,1]],[[0,2,2,1],[2,3,3,2],[2,3,0,0],[2,1,0,1]],[[0,3,2,1],[2,3,3,2],[2,3,0,0],[1,1,1,0]],[[0,2,3,1],[2,3,3,2],[2,3,0,0],[1,1,1,0]],[[0,2,2,2],[2,3,3,2],[2,3,0,0],[1,1,1,0]],[[0,2,2,1],[3,3,3,2],[2,3,0,0],[1,1,1,0]],[[0,2,2,1],[2,4,3,2],[2,3,0,0],[1,1,1,0]],[[0,2,2,1],[2,3,3,2],[3,3,0,0],[1,1,1,0]],[[0,2,2,1],[2,3,3,2],[2,3,0,0],[2,1,1,0]],[[1,2,2,0],[0,3,2,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,0],[0,3,2,2],[3,3,3,1],[0,2,0,0]],[[1,2,2,0],[0,4,2,2],[2,3,3,1],[0,2,0,0]],[[1,2,3,0],[0,3,2,2],[2,3,3,1],[0,2,0,0]],[[0,3,2,1],[2,3,3,2],[2,3,0,0],[1,2,0,0]],[[0,2,3,1],[2,3,3,2],[2,3,0,0],[1,2,0,0]],[[0,2,2,2],[2,3,3,2],[2,3,0,0],[1,2,0,0]],[[0,2,2,1],[3,3,3,2],[2,3,0,0],[1,2,0,0]],[[0,2,2,1],[2,4,3,2],[2,3,0,0],[1,2,0,0]],[[0,2,2,1],[2,3,3,2],[3,3,0,0],[1,2,0,0]],[[0,2,2,1],[2,3,3,2],[2,3,0,0],[2,2,0,0]],[[1,3,2,0],[0,3,2,2],[2,3,3,1],[0,2,0,0]],[[2,2,2,0],[0,3,2,2],[2,3,3,1],[0,2,0,0]],[[1,2,2,0],[0,4,2,2],[2,3,3,1],[0,0,2,0]],[[1,2,3,0],[0,3,2,2],[2,3,3,1],[0,0,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,3,1],[0,0,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,3,1],[0,0,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,3,1],[0,0,1,1]],[[1,2,3,0],[0,3,2,2],[2,3,3,1],[0,0,1,1]],[[1,3,2,0],[0,3,2,2],[2,3,3,1],[0,0,1,1]],[[2,2,2,0],[0,3,2,2],[2,3,3,1],[0,0,1,1]],[[1,2,2,0],[0,3,2,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,0],[0,3,2,2],[2,4,3,0],[1,2,0,0]],[[1,2,2,0],[0,3,2,2],[3,3,3,0],[1,2,0,0]],[[1,2,2,0],[0,4,2,2],[2,3,3,0],[1,2,0,0]],[[1,2,3,0],[0,3,2,2],[2,3,3,0],[1,2,0,0]],[[1,3,2,0],[0,3,2,2],[2,3,3,0],[1,2,0,0]],[[2,2,2,0],[0,3,2,2],[2,3,3,0],[1,2,0,0]],[[0,3,2,1],[2,3,3,2],[2,3,0,1],[1,0,0,1]],[[0,2,3,1],[2,3,3,2],[2,3,0,1],[1,0,0,1]],[[0,2,2,2],[2,3,3,2],[2,3,0,1],[1,0,0,1]],[[0,2,2,1],[3,3,3,2],[2,3,0,1],[1,0,0,1]],[[0,2,2,1],[2,4,3,2],[2,3,0,1],[1,0,0,1]],[[0,2,2,1],[2,3,3,2],[3,3,0,1],[1,0,0,1]],[[0,3,2,1],[2,3,3,2],[2,3,0,1],[1,0,1,0]],[[0,2,3,1],[2,3,3,2],[2,3,0,1],[1,0,1,0]],[[0,2,2,2],[2,3,3,2],[2,3,0,1],[1,0,1,0]],[[0,2,2,1],[3,3,3,2],[2,3,0,1],[1,0,1,0]],[[0,2,2,1],[2,4,3,2],[2,3,0,1],[1,0,1,0]],[[0,2,2,1],[2,3,3,2],[3,3,0,1],[1,0,1,0]],[[1,2,2,0],[0,3,2,2],[2,3,3,0],[2,1,1,0]],[[1,2,2,0],[0,3,2,2],[2,4,3,0],[1,1,1,0]],[[1,2,2,0],[0,3,2,2],[3,3,3,0],[1,1,1,0]],[[1,2,2,0],[0,4,2,2],[2,3,3,0],[1,1,1,0]],[[1,2,3,0],[0,3,2,2],[2,3,3,0],[1,1,1,0]],[[1,3,2,0],[0,3,2,2],[2,3,3,0],[1,1,1,0]],[[2,2,2,0],[0,3,2,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,0],[0,3,2,2],[2,3,3,0],[2,0,2,0]],[[1,2,2,0],[0,3,2,2],[2,4,3,0],[1,0,2,0]],[[1,2,2,0],[0,3,2,2],[3,3,3,0],[1,0,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,3,0],[1,0,2,0]],[[1,2,3,0],[0,3,2,2],[2,3,3,0],[1,0,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,3,0],[1,0,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,3,0],[1,0,2,0]],[[1,2,2,0],[0,3,2,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,0],[0,3,2,2],[2,4,3,0],[0,2,1,0]],[[1,2,2,0],[0,3,2,2],[3,3,3,0],[0,2,1,0]],[[1,2,2,0],[0,4,2,2],[2,3,3,0],[0,2,1,0]],[[1,2,3,0],[0,3,2,2],[2,3,3,0],[0,2,1,0]],[[1,3,2,0],[0,3,2,2],[2,3,3,0],[0,2,1,0]],[[2,2,2,0],[0,3,2,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,0],[0,3,2,2],[2,4,3,0],[0,1,2,0]],[[1,2,2,0],[0,3,2,2],[3,3,3,0],[0,1,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,3,0],[0,1,2,0]],[[0,3,2,1],[2,3,3,2],[2,3,0,2],[0,0,0,1]],[[0,2,3,1],[2,3,3,2],[2,3,0,2],[0,0,0,1]],[[0,2,2,2],[2,3,3,2],[2,3,0,2],[0,0,0,1]],[[0,2,2,1],[2,3,3,3],[2,3,0,2],[0,0,0,1]],[[1,2,3,0],[0,3,2,2],[2,3,3,0],[0,1,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,3,0],[0,1,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,3,0],[0,1,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,3,0],[0,0,2,1]],[[1,2,3,0],[0,3,2,2],[2,3,3,0],[0,0,2,1]],[[1,3,2,0],[0,3,2,2],[2,3,3,0],[0,0,2,1]],[[2,2,2,0],[0,3,2,2],[2,3,3,0],[0,0,2,1]],[[1,2,2,0],[0,4,2,2],[2,3,2,2],[0,0,2,0]],[[1,2,3,0],[0,3,2,2],[2,3,2,2],[0,0,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,2,2],[0,0,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,2,2],[0,0,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,2,2],[0,0,1,1]],[[1,2,3,0],[0,3,2,2],[2,3,2,2],[0,0,1,1]],[[1,3,2,0],[0,3,2,2],[2,3,2,2],[0,0,1,1]],[[0,3,2,1],[2,3,3,2],[2,3,0,2],[1,0,0,0]],[[0,2,3,1],[2,3,3,2],[2,3,0,2],[1,0,0,0]],[[0,2,2,2],[2,3,3,2],[2,3,0,2],[1,0,0,0]],[[0,2,2,1],[3,3,3,2],[2,3,0,2],[1,0,0,0]],[[0,2,2,1],[2,4,3,2],[2,3,0,2],[1,0,0,0]],[[0,2,2,1],[2,3,3,2],[3,3,0,2],[1,0,0,0]],[[2,2,2,0],[0,3,2,2],[2,3,2,2],[0,0,1,1]],[[1,2,2,0],[0,3,2,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,0],[0,3,2,2],[2,4,2,1],[1,2,0,0]],[[1,2,2,0],[0,3,2,2],[3,3,2,1],[1,2,0,0]],[[1,2,2,0],[0,4,2,2],[2,3,2,1],[1,2,0,0]],[[1,2,3,0],[0,3,2,2],[2,3,2,1],[1,2,0,0]],[[1,3,2,0],[0,3,2,2],[2,3,2,1],[1,2,0,0]],[[2,2,2,0],[0,3,2,2],[2,3,2,1],[1,2,0,0]],[[1,2,2,0],[0,3,2,2],[2,3,2,1],[2,1,1,0]],[[1,2,2,0],[0,3,2,2],[2,4,2,1],[1,1,1,0]],[[1,2,2,0],[0,3,2,2],[3,3,2,1],[1,1,1,0]],[[1,2,2,0],[0,4,2,2],[2,3,2,1],[1,1,1,0]],[[1,2,3,0],[0,3,2,2],[2,3,2,1],[1,1,1,0]],[[1,3,2,0],[0,3,2,2],[2,3,2,1],[1,1,1,0]],[[2,2,2,0],[0,3,2,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,0],[0,3,2,2],[2,3,2,1],[2,1,0,1]],[[1,2,2,0],[0,3,2,2],[2,4,2,1],[1,1,0,1]],[[1,2,2,0],[0,3,2,2],[3,3,2,1],[1,1,0,1]],[[1,2,2,0],[0,4,2,2],[2,3,2,1],[1,1,0,1]],[[1,2,3,0],[0,3,2,2],[2,3,2,1],[1,1,0,1]],[[1,3,2,0],[0,3,2,2],[2,3,2,1],[1,1,0,1]],[[2,2,2,0],[0,3,2,2],[2,3,2,1],[1,1,0,1]],[[1,2,2,0],[0,3,2,2],[2,3,2,1],[2,0,2,0]],[[1,2,2,0],[0,3,2,2],[2,4,2,1],[1,0,2,0]],[[1,2,2,0],[0,3,2,2],[3,3,2,1],[1,0,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,2,1],[1,0,2,0]],[[1,2,3,0],[0,3,2,2],[2,3,2,1],[1,0,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,2,1],[1,0,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,0],[0,3,2,2],[2,3,2,1],[2,0,1,1]],[[1,2,2,0],[0,3,2,2],[2,4,2,1],[1,0,1,1]],[[1,2,2,0],[0,3,2,2],[3,3,2,1],[1,0,1,1]],[[1,2,2,0],[0,4,2,2],[2,3,2,1],[1,0,1,1]],[[1,2,3,0],[0,3,2,2],[2,3,2,1],[1,0,1,1]],[[1,3,2,0],[0,3,2,2],[2,3,2,1],[1,0,1,1]],[[2,2,2,0],[0,3,2,2],[2,3,2,1],[1,0,1,1]],[[1,2,2,0],[0,3,2,2],[2,3,2,1],[0,3,1,0]],[[1,2,2,0],[0,3,2,2],[2,4,2,1],[0,2,1,0]],[[1,2,2,0],[0,3,2,2],[3,3,2,1],[0,2,1,0]],[[1,2,2,0],[0,4,2,2],[2,3,2,1],[0,2,1,0]],[[1,2,3,0],[0,3,2,2],[2,3,2,1],[0,2,1,0]],[[1,3,2,0],[0,3,2,2],[2,3,2,1],[0,2,1,0]],[[2,2,2,0],[0,3,2,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,0],[0,3,2,2],[2,3,2,1],[0,3,0,1]],[[1,2,2,0],[0,3,2,2],[2,4,2,1],[0,2,0,1]],[[1,2,2,0],[0,3,2,2],[3,3,2,1],[0,2,0,1]],[[1,2,2,0],[0,4,2,2],[2,3,2,1],[0,2,0,1]],[[1,2,3,0],[0,3,2,2],[2,3,2,1],[0,2,0,1]],[[1,3,2,0],[0,3,2,2],[2,3,2,1],[0,2,0,1]],[[2,2,2,0],[0,3,2,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,0],[0,3,2,2],[2,4,2,1],[0,1,2,0]],[[1,2,2,0],[0,3,2,2],[3,3,2,1],[0,1,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,2,1],[0,1,2,0]],[[1,2,3,0],[0,3,2,2],[2,3,2,1],[0,1,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,2,1],[0,1,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,2,1],[0,1,2,0]],[[1,2,2,0],[0,3,2,2],[2,4,2,1],[0,1,1,1]],[[1,2,2,0],[0,3,2,2],[3,3,2,1],[0,1,1,1]],[[1,2,2,0],[0,4,2,2],[2,3,2,1],[0,1,1,1]],[[1,2,3,0],[0,3,2,2],[2,3,2,1],[0,1,1,1]],[[1,3,2,0],[0,3,2,2],[2,3,2,1],[0,1,1,1]],[[2,2,2,0],[0,3,2,2],[2,3,2,1],[0,1,1,1]],[[1,2,2,0],[0,3,2,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,0],[0,3,2,2],[2,4,2,0],[1,2,0,1]],[[1,2,2,0],[0,3,2,2],[3,3,2,0],[1,2,0,1]],[[1,2,2,0],[0,4,2,2],[2,3,2,0],[1,2,0,1]],[[1,2,3,0],[0,3,2,2],[2,3,2,0],[1,2,0,1]],[[1,3,2,0],[0,3,2,2],[2,3,2,0],[1,2,0,1]],[[2,2,2,0],[0,3,2,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,0],[0,3,2,2],[2,3,2,0],[2,1,1,1]],[[1,2,2,0],[0,3,2,2],[2,4,2,0],[1,1,1,1]],[[1,2,2,0],[0,3,2,2],[3,3,2,0],[1,1,1,1]],[[1,2,2,0],[0,4,2,2],[2,3,2,0],[1,1,1,1]],[[1,2,3,0],[0,3,2,2],[2,3,2,0],[1,1,1,1]],[[1,3,2,0],[0,3,2,2],[2,3,2,0],[1,1,1,1]],[[2,2,2,0],[0,3,2,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,0],[0,3,2,2],[2,3,2,0],[2,0,2,1]],[[1,2,2,0],[0,3,2,2],[2,4,2,0],[1,0,2,1]],[[1,2,2,0],[0,3,2,2],[3,3,2,0],[1,0,2,1]],[[1,2,2,0],[0,4,2,2],[2,3,2,0],[1,0,2,1]],[[1,2,3,0],[0,3,2,2],[2,3,2,0],[1,0,2,1]],[[1,3,2,0],[0,3,2,2],[2,3,2,0],[1,0,2,1]],[[2,2,2,0],[0,3,2,2],[2,3,2,0],[1,0,2,1]],[[1,2,2,0],[0,3,2,2],[2,3,2,0],[0,3,1,1]],[[1,2,2,0],[0,3,2,2],[2,4,2,0],[0,2,1,1]],[[1,2,2,0],[0,3,2,2],[3,3,2,0],[0,2,1,1]],[[1,2,2,0],[0,4,2,2],[2,3,2,0],[0,2,1,1]],[[1,2,3,0],[0,3,2,2],[2,3,2,0],[0,2,1,1]],[[1,3,2,0],[0,3,2,2],[2,3,2,0],[0,2,1,1]],[[2,2,2,0],[0,3,2,2],[2,3,2,0],[0,2,1,1]],[[1,2,2,0],[0,3,2,2],[2,4,2,0],[0,1,2,1]],[[1,2,2,0],[0,3,2,2],[3,3,2,0],[0,1,2,1]],[[1,2,2,0],[0,4,2,2],[2,3,2,0],[0,1,2,1]],[[0,3,2,1],[2,3,3,2],[2,3,1,0],[1,0,0,1]],[[0,2,3,1],[2,3,3,2],[2,3,1,0],[1,0,0,1]],[[0,2,2,2],[2,3,3,2],[2,3,1,0],[1,0,0,1]],[[0,2,2,1],[3,3,3,2],[2,3,1,0],[1,0,0,1]],[[0,2,2,1],[2,4,3,2],[2,3,1,0],[1,0,0,1]],[[0,2,2,1],[2,3,3,2],[3,3,1,0],[1,0,0,1]],[[0,3,2,1],[2,3,3,2],[2,3,1,0],[1,0,1,0]],[[0,2,3,1],[2,3,3,2],[2,3,1,0],[1,0,1,0]],[[0,2,2,2],[2,3,3,2],[2,3,1,0],[1,0,1,0]],[[0,2,2,1],[3,3,3,2],[2,3,1,0],[1,0,1,0]],[[0,2,2,1],[2,4,3,2],[2,3,1,0],[1,0,1,0]],[[0,2,2,1],[2,3,3,2],[3,3,1,0],[1,0,1,0]],[[1,2,3,0],[0,3,2,2],[2,3,2,0],[0,1,2,1]],[[1,3,2,0],[0,3,2,2],[2,3,2,0],[0,1,2,1]],[[2,2,2,0],[0,3,2,2],[2,3,2,0],[0,1,2,1]],[[1,2,2,0],[0,3,2,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[0,3,2,2],[2,4,1,2],[1,2,0,0]],[[1,2,2,0],[0,3,2,2],[3,3,1,2],[1,2,0,0]],[[1,2,2,0],[0,4,2,2],[2,3,1,2],[1,2,0,0]],[[1,2,3,0],[0,3,2,2],[2,3,1,2],[1,2,0,0]],[[1,3,2,0],[0,3,2,2],[2,3,1,2],[1,2,0,0]],[[2,2,2,0],[0,3,2,2],[2,3,1,2],[1,2,0,0]],[[1,2,2,0],[0,3,2,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,0],[0,3,2,2],[2,4,1,2],[1,1,1,0]],[[1,2,2,0],[0,3,2,2],[3,3,1,2],[1,1,1,0]],[[1,2,2,0],[0,4,2,2],[2,3,1,2],[1,1,1,0]],[[1,2,3,0],[0,3,2,2],[2,3,1,2],[1,1,1,0]],[[1,3,2,0],[0,3,2,2],[2,3,1,2],[1,1,1,0]],[[2,2,2,0],[0,3,2,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,0],[0,3,2,2],[2,3,1,2],[2,1,0,1]],[[1,2,2,0],[0,3,2,2],[2,4,1,2],[1,1,0,1]],[[1,2,2,0],[0,3,2,2],[3,3,1,2],[1,1,0,1]],[[1,2,2,0],[0,4,2,2],[2,3,1,2],[1,1,0,1]],[[1,2,3,0],[0,3,2,2],[2,3,1,2],[1,1,0,1]],[[1,3,2,0],[0,3,2,2],[2,3,1,2],[1,1,0,1]],[[2,2,2,0],[0,3,2,2],[2,3,1,2],[1,1,0,1]],[[1,2,2,0],[0,3,2,2],[2,3,1,2],[2,0,2,0]],[[1,2,2,0],[0,3,2,2],[2,4,1,2],[1,0,2,0]],[[1,2,2,0],[0,3,2,2],[3,3,1,2],[1,0,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,1,2],[1,0,2,0]],[[1,2,3,0],[0,3,2,2],[2,3,1,2],[1,0,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,1,2],[1,0,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,0],[0,3,2,2],[2,3,1,2],[2,0,1,1]],[[1,2,2,0],[0,3,2,2],[2,4,1,2],[1,0,1,1]],[[1,2,2,0],[0,3,2,2],[3,3,1,2],[1,0,1,1]],[[1,2,2,0],[0,4,2,2],[2,3,1,2],[1,0,1,1]],[[1,2,3,0],[0,3,2,2],[2,3,1,2],[1,0,1,1]],[[1,3,2,0],[0,3,2,2],[2,3,1,2],[1,0,1,1]],[[2,2,2,0],[0,3,2,2],[2,3,1,2],[1,0,1,1]],[[1,2,2,0],[0,3,2,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,0],[0,3,2,2],[2,4,1,2],[0,2,1,0]],[[1,2,2,0],[0,3,2,2],[3,3,1,2],[0,2,1,0]],[[1,2,2,0],[0,4,2,2],[2,3,1,2],[0,2,1,0]],[[1,2,3,0],[0,3,2,2],[2,3,1,2],[0,2,1,0]],[[1,3,2,0],[0,3,2,2],[2,3,1,2],[0,2,1,0]],[[2,2,2,0],[0,3,2,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,0],[0,3,2,2],[2,3,1,2],[0,3,0,1]],[[1,2,2,0],[0,3,2,2],[2,4,1,2],[0,2,0,1]],[[1,2,2,0],[0,3,2,2],[3,3,1,2],[0,2,0,1]],[[1,2,2,0],[0,4,2,2],[2,3,1,2],[0,2,0,1]],[[1,2,3,0],[0,3,2,2],[2,3,1,2],[0,2,0,1]],[[1,3,2,0],[0,3,2,2],[2,3,1,2],[0,2,0,1]],[[2,2,2,0],[0,3,2,2],[2,3,1,2],[0,2,0,1]],[[1,2,2,0],[0,3,2,2],[2,4,1,2],[0,1,2,0]],[[1,2,2,0],[0,3,2,2],[3,3,1,2],[0,1,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,1,2],[0,1,2,0]],[[1,2,3,0],[0,3,2,2],[2,3,1,2],[0,1,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,1,2],[0,1,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,0],[0,3,2,2],[2,4,1,2],[0,1,1,1]],[[1,2,2,0],[0,3,2,2],[3,3,1,2],[0,1,1,1]],[[1,2,2,0],[0,4,2,2],[2,3,1,2],[0,1,1,1]],[[1,2,3,0],[0,3,2,2],[2,3,1,2],[0,1,1,1]],[[1,3,2,0],[0,3,2,2],[2,3,1,2],[0,1,1,1]],[[2,2,2,0],[0,3,2,2],[2,3,1,2],[0,1,1,1]],[[1,2,2,0],[0,3,2,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,0],[0,3,2,2],[2,4,1,1],[1,1,2,0]],[[1,2,2,0],[0,3,2,2],[3,3,1,1],[1,1,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,1,1],[1,1,2,0]],[[1,2,3,0],[0,3,2,2],[2,3,1,1],[1,1,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,1,1],[1,1,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,1,1],[1,1,2,0]],[[1,2,2,0],[0,3,2,2],[2,3,1,1],[0,2,3,0]],[[1,2,2,0],[0,3,2,2],[2,3,1,1],[0,3,2,0]],[[1,2,2,0],[0,3,2,2],[2,4,1,1],[0,2,2,0]],[[1,2,2,0],[0,3,2,2],[3,3,1,1],[0,2,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,1,1],[0,2,2,0]],[[1,2,3,0],[0,3,2,2],[2,3,1,1],[0,2,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,1,1],[0,2,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,1,1],[0,2,2,0]],[[1,2,2,0],[0,3,2,2],[2,3,1,0],[2,1,2,1]],[[1,2,2,0],[0,3,2,2],[2,4,1,0],[1,1,2,1]],[[1,2,2,0],[0,3,2,2],[3,3,1,0],[1,1,2,1]],[[1,2,2,0],[0,4,2,2],[2,3,1,0],[1,1,2,1]],[[1,2,3,0],[0,3,2,2],[2,3,1,0],[1,1,2,1]],[[1,3,2,0],[0,3,2,2],[2,3,1,0],[1,1,2,1]],[[2,2,2,0],[0,3,2,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,0],[0,3,2,2],[2,3,1,0],[0,2,2,2]],[[1,2,2,0],[0,3,2,2],[2,3,1,0],[0,2,3,1]],[[1,2,2,0],[0,3,2,2],[2,3,1,0],[0,3,2,1]],[[1,2,2,0],[0,3,2,2],[2,4,1,0],[0,2,2,1]],[[1,2,2,0],[0,3,2,2],[3,3,1,0],[0,2,2,1]],[[1,2,2,0],[0,4,2,2],[2,3,1,0],[0,2,2,1]],[[1,2,3,0],[0,3,2,2],[2,3,1,0],[0,2,2,1]],[[1,3,2,0],[0,3,2,2],[2,3,1,0],[0,2,2,1]],[[2,2,2,0],[0,3,2,2],[2,3,1,0],[0,2,2,1]],[[1,2,2,0],[0,3,2,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,0],[0,3,2,2],[2,4,0,2],[1,1,2,0]],[[1,2,2,0],[0,3,2,2],[3,3,0,2],[1,1,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,0,2],[1,1,2,0]],[[1,2,3,0],[0,3,2,2],[2,3,0,2],[1,1,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,0,2],[1,1,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,0,2],[1,1,2,0]],[[1,2,2,0],[0,3,2,2],[2,3,0,2],[2,1,1,1]],[[1,2,2,0],[0,3,2,2],[2,4,0,2],[1,1,1,1]],[[1,2,2,0],[0,3,2,2],[3,3,0,2],[1,1,1,1]],[[1,2,2,0],[0,4,2,2],[2,3,0,2],[1,1,1,1]],[[1,2,3,0],[0,3,2,2],[2,3,0,2],[1,1,1,1]],[[1,3,2,0],[0,3,2,2],[2,3,0,2],[1,1,1,1]],[[2,2,2,0],[0,3,2,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,0],[0,3,2,2],[2,3,0,2],[2,0,2,1]],[[1,2,2,0],[0,3,2,2],[2,4,0,2],[1,0,2,1]],[[1,2,2,0],[0,3,2,2],[3,3,0,2],[1,0,2,1]],[[1,2,2,0],[0,4,2,2],[2,3,0,2],[1,0,2,1]],[[1,2,3,0],[0,3,2,2],[2,3,0,2],[1,0,2,1]],[[1,3,2,0],[0,3,2,2],[2,3,0,2],[1,0,2,1]],[[2,2,2,0],[0,3,2,2],[2,3,0,2],[1,0,2,1]],[[1,2,2,0],[0,3,2,2],[2,3,0,2],[0,2,3,0]],[[1,2,2,0],[0,3,2,2],[2,3,0,2],[0,3,2,0]],[[1,2,2,0],[0,3,2,2],[2,4,0,2],[0,2,2,0]],[[1,2,2,0],[0,3,2,2],[3,3,0,2],[0,2,2,0]],[[1,2,2,0],[0,4,2,2],[2,3,0,2],[0,2,2,0]],[[1,2,3,0],[0,3,2,2],[2,3,0,2],[0,2,2,0]],[[1,3,2,0],[0,3,2,2],[2,3,0,2],[0,2,2,0]],[[2,2,2,0],[0,3,2,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,0],[0,3,2,2],[2,3,0,2],[0,3,1,1]],[[1,2,2,0],[0,3,2,2],[2,4,0,2],[0,2,1,1]],[[1,2,2,0],[0,3,2,2],[3,3,0,2],[0,2,1,1]],[[1,2,2,0],[0,4,2,2],[2,3,0,2],[0,2,1,1]],[[1,2,3,0],[0,3,2,2],[2,3,0,2],[0,2,1,1]],[[1,3,2,0],[0,3,2,2],[2,3,0,2],[0,2,1,1]],[[2,2,2,0],[0,3,2,2],[2,3,0,2],[0,2,1,1]],[[1,2,2,0],[0,3,2,2],[2,4,0,2],[0,1,2,1]],[[1,2,2,0],[0,3,2,2],[3,3,0,2],[0,1,2,1]],[[1,2,2,0],[0,4,2,2],[2,3,0,2],[0,1,2,1]],[[1,2,3,0],[0,3,2,2],[2,3,0,2],[0,1,2,1]],[[1,3,2,0],[0,3,2,2],[2,3,0,2],[0,1,2,1]],[[2,2,2,0],[0,3,2,2],[2,3,0,2],[0,1,2,1]],[[1,2,2,0],[0,3,2,2],[2,3,0,1],[1,3,2,0]],[[1,2,2,0],[0,3,2,2],[2,3,0,1],[2,2,2,0]],[[1,2,2,0],[0,3,2,2],[3,3,0,1],[1,2,2,0]],[[1,2,2,0],[0,3,2,2],[2,3,0,1],[2,1,2,1]],[[1,2,2,0],[0,3,2,2],[2,4,0,1],[1,1,2,1]],[[1,2,2,0],[0,3,2,2],[3,3,0,1],[1,1,2,1]],[[1,2,2,0],[0,4,2,2],[2,3,0,1],[1,1,2,1]],[[1,2,3,0],[0,3,2,2],[2,3,0,1],[1,1,2,1]],[[1,3,2,0],[0,3,2,2],[2,3,0,1],[1,1,2,1]],[[2,2,2,0],[0,3,2,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,0],[0,3,2,2],[2,3,0,1],[0,2,2,2]],[[1,2,2,0],[0,3,2,2],[2,3,0,1],[0,2,3,1]],[[1,2,2,0],[0,3,2,2],[2,3,0,1],[0,3,2,1]],[[1,2,2,0],[0,3,2,2],[2,4,0,1],[0,2,2,1]],[[1,2,2,0],[0,3,2,2],[3,3,0,1],[0,2,2,1]],[[1,2,2,0],[0,4,2,2],[2,3,0,1],[0,2,2,1]],[[1,2,3,0],[0,3,2,2],[2,3,0,1],[0,2,2,1]],[[1,3,2,0],[0,3,2,2],[2,3,0,1],[0,2,2,1]],[[2,2,2,0],[0,3,2,2],[2,3,0,1],[0,2,2,1]],[[1,2,2,0],[0,3,2,2],[2,3,0,0],[1,3,2,1]],[[1,2,2,0],[0,3,2,2],[2,3,0,0],[2,2,2,1]],[[1,2,2,0],[0,3,2,2],[3,3,0,0],[1,2,2,1]],[[1,2,2,0],[0,4,2,2],[2,2,3,2],[1,0,0,1]],[[1,2,3,0],[0,3,2,2],[2,2,3,2],[1,0,0,1]],[[1,3,2,0],[0,3,2,2],[2,2,3,2],[1,0,0,1]],[[2,2,2,0],[0,3,2,2],[2,2,3,2],[1,0,0,1]],[[1,2,2,0],[0,4,2,2],[2,2,3,2],[0,1,0,1]],[[1,2,3,0],[0,3,2,2],[2,2,3,2],[0,1,0,1]],[[1,3,2,0],[0,3,2,2],[2,2,3,2],[0,1,0,1]],[[2,2,2,0],[0,3,2,2],[2,2,3,2],[0,1,0,1]],[[1,2,2,0],[0,4,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,3,0],[0,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,3,2,0],[0,3,2,2],[2,2,3,1],[1,1,1,0]],[[2,2,2,0],[0,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,0],[0,4,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,3,0],[0,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,3,2,0],[0,3,2,2],[2,2,3,1],[1,1,0,1]],[[2,2,2,0],[0,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,0],[0,4,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,3,0],[0,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,3,2,0],[0,3,2,2],[2,2,3,1],[1,0,2,0]],[[2,2,2,0],[0,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,0],[0,4,2,2],[2,2,3,1],[1,0,1,1]],[[1,2,3,0],[0,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,3,2,0],[0,3,2,2],[2,2,3,1],[1,0,1,1]],[[2,2,2,0],[0,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,2,2,0],[0,4,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,3,0],[0,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,3,2,0],[0,3,2,2],[2,2,3,1],[0,2,1,0]],[[2,2,2,0],[0,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,0],[0,4,2,2],[2,2,3,1],[0,2,0,1]],[[1,2,3,0],[0,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,3,2,0],[0,3,2,2],[2,2,3,1],[0,2,0,1]],[[2,2,2,0],[0,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,0],[0,4,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,3,0],[0,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,3,2,0],[0,3,2,2],[2,2,3,1],[0,1,2,0]],[[2,2,2,0],[0,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,0],[0,4,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,3,0],[0,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,3,2,0],[0,3,2,2],[2,2,3,1],[0,1,1,1]],[[2,2,2,0],[0,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,0],[0,4,2,2],[2,2,3,1],[0,0,2,1]],[[1,2,3,0],[0,3,2,2],[2,2,3,1],[0,0,2,1]],[[1,3,2,0],[0,3,2,2],[2,2,3,1],[0,0,2,1]],[[2,2,2,0],[0,3,2,2],[2,2,3,1],[0,0,2,1]],[[1,2,2,0],[0,3,2,2],[2,2,3,0],[1,3,1,0]],[[1,2,2,0],[0,3,2,2],[2,2,3,0],[2,2,1,0]],[[1,2,2,0],[0,3,2,2],[3,2,3,0],[1,2,1,0]],[[1,2,2,0],[0,4,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,3,0],[0,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,3,2,0],[0,3,2,2],[2,2,3,0],[1,1,1,1]],[[2,2,2,0],[0,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,0],[0,4,2,2],[2,2,3,0],[1,0,2,1]],[[1,2,3,0],[0,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,3,2,0],[0,3,2,2],[2,2,3,0],[1,0,2,1]],[[2,2,2,0],[0,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,0],[0,4,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,3,0],[0,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,3,2,0],[0,3,2,2],[2,2,3,0],[0,2,1,1]],[[2,2,2,0],[0,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,0],[0,4,2,2],[2,2,3,0],[0,1,2,1]],[[1,2,3,0],[0,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,3,2,0],[0,3,2,2],[2,2,3,0],[0,1,2,1]],[[2,2,2,0],[0,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,0],[0,4,2,2],[2,2,2,2],[1,1,1,0]],[[1,2,3,0],[0,3,2,2],[2,2,2,2],[1,1,1,0]],[[1,3,2,0],[0,3,2,2],[2,2,2,2],[1,1,1,0]],[[2,2,2,0],[0,3,2,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[0,4,2,2],[2,2,2,2],[1,1,0,1]],[[1,2,3,0],[0,3,2,2],[2,2,2,2],[1,1,0,1]],[[1,3,2,0],[0,3,2,2],[2,2,2,2],[1,1,0,1]],[[2,2,2,0],[0,3,2,2],[2,2,2,2],[1,1,0,1]],[[1,2,2,0],[0,4,2,2],[2,2,2,2],[1,0,2,0]],[[1,2,3,0],[0,3,2,2],[2,2,2,2],[1,0,2,0]],[[1,3,2,0],[0,3,2,2],[2,2,2,2],[1,0,2,0]],[[2,2,2,0],[0,3,2,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[0,4,2,2],[2,2,2,2],[1,0,1,1]],[[1,2,3,0],[0,3,2,2],[2,2,2,2],[1,0,1,1]],[[1,3,2,0],[0,3,2,2],[2,2,2,2],[1,0,1,1]],[[2,2,2,0],[0,3,2,2],[2,2,2,2],[1,0,1,1]],[[1,2,2,0],[0,4,2,2],[2,2,2,2],[0,2,1,0]],[[1,2,3,0],[0,3,2,2],[2,2,2,2],[0,2,1,0]],[[1,3,2,0],[0,3,2,2],[2,2,2,2],[0,2,1,0]],[[2,2,2,0],[0,3,2,2],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[0,4,2,2],[2,2,2,2],[0,2,0,1]],[[1,2,3,0],[0,3,2,2],[2,2,2,2],[0,2,0,1]],[[1,3,2,0],[0,3,2,2],[2,2,2,2],[0,2,0,1]],[[2,2,2,0],[0,3,2,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[0,4,2,2],[2,2,2,2],[0,1,2,0]],[[1,2,3,0],[0,3,2,2],[2,2,2,2],[0,1,2,0]],[[1,3,2,0],[0,3,2,2],[2,2,2,2],[0,1,2,0]],[[2,2,2,0],[0,3,2,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[0,4,2,2],[2,2,2,2],[0,1,1,1]],[[1,2,3,0],[0,3,2,2],[2,2,2,2],[0,1,1,1]],[[1,3,2,0],[0,3,2,2],[2,2,2,2],[0,1,1,1]],[[2,2,2,0],[0,3,2,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[0,4,2,2],[2,2,2,2],[0,0,2,1]],[[1,2,3,0],[0,3,2,2],[2,2,2,2],[0,0,2,1]],[[1,3,2,0],[0,3,2,2],[2,2,2,2],[0,0,2,1]],[[2,2,2,0],[0,3,2,2],[2,2,2,2],[0,0,2,1]],[[1,2,2,0],[0,3,2,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,0],[0,3,2,2],[2,2,2,1],[2,2,1,0]],[[1,2,2,0],[0,3,2,2],[3,2,2,1],[1,2,1,0]],[[1,2,2,0],[0,3,2,2],[2,2,2,1],[1,3,0,1]],[[1,2,2,0],[0,3,2,2],[2,2,2,1],[2,2,0,1]],[[1,2,2,0],[0,3,2,2],[3,2,2,1],[1,2,0,1]],[[1,2,2,0],[0,3,2,2],[2,2,2,0],[1,3,1,1]],[[1,2,2,0],[0,3,2,2],[2,2,2,0],[2,2,1,1]],[[1,2,2,0],[0,3,2,2],[3,2,2,0],[1,2,1,1]],[[1,2,2,0],[0,3,2,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,0],[0,3,2,2],[2,2,1,2],[2,2,1,0]],[[1,2,2,0],[0,3,2,2],[3,2,1,2],[1,2,1,0]],[[1,2,2,0],[0,3,2,2],[2,2,1,2],[1,3,0,1]],[[1,2,2,0],[0,3,2,2],[2,2,1,2],[2,2,0,1]],[[1,2,2,0],[0,3,2,2],[3,2,1,2],[1,2,0,1]],[[1,2,2,0],[0,4,2,2],[2,2,1,2],[1,0,2,1]],[[1,2,3,0],[0,3,2,2],[2,2,1,2],[1,0,2,1]],[[1,3,2,0],[0,3,2,2],[2,2,1,2],[1,0,2,1]],[[0,3,2,1],[2,3,3,2],[2,3,2,0],[1,0,0,0]],[[0,2,3,1],[2,3,3,2],[2,3,2,0],[1,0,0,0]],[[0,2,2,2],[2,3,3,2],[2,3,2,0],[1,0,0,0]],[[0,2,2,1],[3,3,3,2],[2,3,2,0],[1,0,0,0]],[[0,2,2,1],[2,4,3,2],[2,3,2,0],[1,0,0,0]],[[0,2,2,1],[2,3,3,2],[3,3,2,0],[1,0,0,0]],[[2,2,2,0],[0,3,2,2],[2,2,1,2],[1,0,2,1]],[[1,2,2,0],[0,4,2,2],[2,2,1,2],[0,1,2,1]],[[1,2,3,0],[0,3,2,2],[2,2,1,2],[0,1,2,1]],[[1,3,2,0],[0,3,2,2],[2,2,1,2],[0,1,2,1]],[[2,2,2,0],[0,3,2,2],[2,2,1,2],[0,1,2,1]],[[1,2,2,0],[0,3,2,2],[2,2,1,1],[1,2,3,0]],[[1,2,2,0],[0,3,2,2],[2,2,1,1],[1,3,2,0]],[[1,2,2,0],[0,3,2,2],[2,2,1,1],[2,2,2,0]],[[1,2,2,0],[0,3,2,2],[3,2,1,1],[1,2,2,0]],[[1,2,2,0],[0,3,2,2],[2,2,1,0],[1,2,2,2]],[[1,2,2,0],[0,3,2,2],[2,2,1,0],[1,2,3,1]],[[1,2,2,0],[0,3,2,2],[2,2,1,0],[1,3,2,1]],[[1,2,2,0],[0,3,2,2],[2,2,1,0],[2,2,2,1]],[[1,2,2,0],[0,3,2,2],[3,2,1,0],[1,2,2,1]],[[1,2,2,0],[0,3,2,2],[2,2,0,2],[1,2,3,0]],[[1,2,2,0],[0,3,2,2],[2,2,0,2],[1,3,2,0]],[[1,2,2,0],[0,3,2,2],[2,2,0,2],[2,2,2,0]],[[1,2,2,0],[0,3,2,2],[3,2,0,2],[1,2,2,0]],[[1,2,2,0],[0,3,2,2],[2,2,0,2],[1,3,1,1]],[[1,2,2,0],[0,3,2,2],[2,2,0,2],[2,2,1,1]],[[1,2,2,0],[0,3,2,2],[3,2,0,2],[1,2,1,1]],[[1,2,2,0],[0,4,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,3,0],[0,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,3,2,0],[0,3,2,2],[2,2,0,2],[0,2,2,1]],[[2,2,2,0],[0,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[0,3,2,2],[2,2,0,1],[1,2,2,2]],[[1,2,2,0],[0,3,2,2],[2,2,0,1],[1,2,3,1]],[[1,2,2,0],[0,3,2,2],[2,2,0,1],[1,3,2,1]],[[1,2,2,0],[0,3,2,2],[2,2,0,1],[2,2,2,1]],[[1,2,2,0],[0,3,2,2],[3,2,0,1],[1,2,2,1]],[[1,2,2,0],[0,4,2,2],[2,1,3,1],[0,2,2,0]],[[1,2,3,0],[0,3,2,2],[2,1,3,1],[0,2,2,0]],[[1,3,2,0],[0,3,2,2],[2,1,3,1],[0,2,2,0]],[[2,2,2,0],[0,3,2,2],[2,1,3,1],[0,2,2,0]],[[1,2,2,0],[0,4,2,2],[2,1,3,1],[0,2,1,1]],[[1,2,3,0],[0,3,2,2],[2,1,3,1],[0,2,1,1]],[[1,3,2,0],[0,3,2,2],[2,1,3,1],[0,2,1,1]],[[2,2,2,0],[0,3,2,2],[2,1,3,1],[0,2,1,1]],[[1,2,2,0],[0,4,2,2],[2,1,3,0],[0,2,2,1]],[[1,2,3,0],[0,3,2,2],[2,1,3,0],[0,2,2,1]],[[1,3,2,0],[0,3,2,2],[2,1,3,0],[0,2,2,1]],[[2,2,2,0],[0,3,2,2],[2,1,3,0],[0,2,2,1]],[[1,2,2,0],[0,4,2,2],[2,1,2,2],[0,2,2,0]],[[1,2,3,0],[0,3,2,2],[2,1,2,2],[0,2,2,0]],[[1,3,2,0],[0,3,2,2],[2,1,2,2],[0,2,2,0]],[[2,2,2,0],[0,3,2,2],[2,1,2,2],[0,2,2,0]],[[1,2,2,0],[0,4,2,2],[2,1,2,2],[0,2,1,1]],[[1,2,3,0],[0,3,2,2],[2,1,2,2],[0,2,1,1]],[[1,3,2,0],[0,3,2,2],[2,1,2,2],[0,2,1,1]],[[2,2,2,0],[0,3,2,2],[2,1,2,2],[0,2,1,1]],[[1,2,2,0],[0,4,2,2],[2,1,1,2],[0,2,2,1]],[[1,2,3,0],[0,3,2,2],[2,1,1,2],[0,2,2,1]],[[1,3,2,0],[0,3,2,2],[2,1,1,2],[0,2,2,1]],[[2,2,2,0],[0,3,2,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,0],[0,4,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,3,0],[0,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[0,3,2,2],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[0,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[0,4,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,0],[0,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,0],[0,3,2,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,0],[0,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,0],[0,4,2,2],[2,0,3,1],[1,2,1,1]],[[1,2,3,0],[0,3,2,2],[2,0,3,1],[1,2,1,1]],[[1,3,2,0],[0,3,2,2],[2,0,3,1],[1,2,1,1]],[[2,2,2,0],[0,3,2,2],[2,0,3,1],[1,2,1,1]],[[1,2,2,0],[0,4,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,0],[0,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,0],[0,3,2,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,0],[0,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,0],[0,4,2,2],[2,0,2,2],[1,2,2,0]],[[1,2,3,0],[0,3,2,2],[2,0,2,2],[1,2,2,0]],[[1,3,2,0],[0,3,2,2],[2,0,2,2],[1,2,2,0]],[[2,2,2,0],[0,3,2,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,0],[0,4,2,2],[2,0,2,2],[1,2,1,1]],[[1,2,3,0],[0,3,2,2],[2,0,2,2],[1,2,1,1]],[[1,3,2,0],[0,3,2,2],[2,0,2,2],[1,2,1,1]],[[2,2,2,0],[0,3,2,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,0],[0,4,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,0],[0,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,3,2,0],[0,3,2,2],[2,0,1,2],[1,2,2,1]],[[2,2,2,0],[0,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[0,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,0],[0,3,2,2],[1,3,4,2],[0,0,2,0]],[[1,2,2,0],[0,3,2,3],[1,3,3,2],[0,0,2,0]],[[1,2,2,0],[0,3,2,2],[1,3,3,2],[0,0,1,2]],[[1,2,2,0],[0,3,2,2],[1,3,3,3],[0,0,1,1]],[[1,2,2,0],[0,3,2,2],[1,3,4,2],[0,0,1,1]],[[1,2,2,0],[0,3,2,3],[1,3,3,2],[0,0,1,1]],[[1,2,2,0],[0,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,2,2,0],[0,4,2,2],[1,3,3,1],[1,2,0,0]],[[1,2,3,0],[0,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,3,2,0],[0,3,2,2],[1,3,3,1],[1,2,0,0]],[[2,2,2,0],[0,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,2,2,0],[0,3,2,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,0],[0,3,2,2],[1,3,3,0],[2,2,1,0]],[[1,2,2,0],[0,3,2,2],[1,4,3,0],[1,2,1,0]],[[1,2,2,0],[0,4,2,2],[1,3,3,0],[1,2,1,0]],[[1,2,3,0],[0,3,2,2],[1,3,3,0],[1,2,1,0]],[[1,3,2,0],[0,3,2,2],[1,3,3,0],[1,2,1,0]],[[2,2,2,0],[0,3,2,2],[1,3,3,0],[1,2,1,0]],[[1,2,2,0],[0,3,2,2],[1,4,3,0],[1,1,2,0]],[[1,2,2,0],[0,4,2,2],[1,3,3,0],[1,1,2,0]],[[1,2,3,0],[0,3,2,2],[1,3,3,0],[1,1,2,0]],[[1,3,2,0],[0,3,2,2],[1,3,3,0],[1,1,2,0]],[[2,2,2,0],[0,3,2,2],[1,3,3,0],[1,1,2,0]],[[1,2,2,0],[0,3,2,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,0],[0,3,2,2],[1,3,2,1],[2,2,1,0]],[[1,2,2,0],[0,3,2,2],[1,4,2,1],[1,2,1,0]],[[1,2,2,0],[0,4,2,2],[1,3,2,1],[1,2,1,0]],[[1,2,3,0],[0,3,2,2],[1,3,2,1],[1,2,1,0]],[[1,3,2,0],[0,3,2,2],[1,3,2,1],[1,2,1,0]],[[2,2,2,0],[0,3,2,2],[1,3,2,1],[1,2,1,0]],[[1,2,2,0],[0,3,2,2],[1,3,2,1],[1,3,0,1]],[[1,2,2,0],[0,3,2,2],[1,3,2,1],[2,2,0,1]],[[1,2,2,0],[0,3,2,2],[1,4,2,1],[1,2,0,1]],[[1,2,2,0],[0,4,2,2],[1,3,2,1],[1,2,0,1]],[[1,2,3,0],[0,3,2,2],[1,3,2,1],[1,2,0,1]],[[1,3,2,0],[0,3,2,2],[1,3,2,1],[1,2,0,1]],[[2,2,2,0],[0,3,2,2],[1,3,2,1],[1,2,0,1]],[[1,2,2,0],[0,3,2,2],[1,4,2,1],[1,1,2,0]],[[1,2,2,0],[0,4,2,2],[1,3,2,1],[1,1,2,0]],[[1,2,3,0],[0,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,3,2,0],[0,3,2,2],[1,3,2,1],[1,1,2,0]],[[2,2,2,0],[0,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,2,2,0],[0,3,2,2],[1,4,2,1],[1,1,1,1]],[[1,2,2,0],[0,4,2,2],[1,3,2,1],[1,1,1,1]],[[1,2,3,0],[0,3,2,2],[1,3,2,1],[1,1,1,1]],[[1,3,2,0],[0,3,2,2],[1,3,2,1],[1,1,1,1]],[[2,2,2,0],[0,3,2,2],[1,3,2,1],[1,1,1,1]],[[1,2,2,0],[0,3,2,2],[1,3,2,0],[1,3,1,1]],[[1,2,2,0],[0,3,2,2],[1,3,2,0],[2,2,1,1]],[[1,2,2,0],[0,3,2,2],[1,4,2,0],[1,2,1,1]],[[1,2,2,0],[0,4,2,2],[1,3,2,0],[1,2,1,1]],[[1,2,3,0],[0,3,2,2],[1,3,2,0],[1,2,1,1]],[[1,3,2,0],[0,3,2,2],[1,3,2,0],[1,2,1,1]],[[2,2,2,0],[0,3,2,2],[1,3,2,0],[1,2,1,1]],[[1,2,2,0],[0,3,2,2],[1,4,2,0],[1,1,2,1]],[[1,2,2,0],[0,4,2,2],[1,3,2,0],[1,1,2,1]],[[1,2,3,0],[0,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,3,2,0],[0,3,2,2],[1,3,2,0],[1,1,2,1]],[[2,2,2,0],[0,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,2,2,0],[0,3,2,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,0],[0,3,2,2],[1,3,1,2],[2,2,1,0]],[[1,2,2,0],[0,3,2,2],[1,4,1,2],[1,2,1,0]],[[1,2,2,0],[0,4,2,2],[1,3,1,2],[1,2,1,0]],[[1,2,3,0],[0,3,2,2],[1,3,1,2],[1,2,1,0]],[[1,3,2,0],[0,3,2,2],[1,3,1,2],[1,2,1,0]],[[2,2,2,0],[0,3,2,2],[1,3,1,2],[1,2,1,0]],[[1,2,2,0],[0,3,2,2],[1,3,1,2],[1,3,0,1]],[[1,2,2,0],[0,3,2,2],[1,3,1,2],[2,2,0,1]],[[1,2,2,0],[0,3,2,2],[1,4,1,2],[1,2,0,1]],[[1,2,2,0],[0,4,2,2],[1,3,1,2],[1,2,0,1]],[[1,2,3,0],[0,3,2,2],[1,3,1,2],[1,2,0,1]],[[1,3,2,0],[0,3,2,2],[1,3,1,2],[1,2,0,1]],[[2,2,2,0],[0,3,2,2],[1,3,1,2],[1,2,0,1]],[[1,2,2,0],[0,3,2,2],[1,4,1,2],[1,1,2,0]],[[1,2,2,0],[0,4,2,2],[1,3,1,2],[1,1,2,0]],[[1,2,3,0],[0,3,2,2],[1,3,1,2],[1,1,2,0]],[[1,3,2,0],[0,3,2,2],[1,3,1,2],[1,1,2,0]],[[2,2,2,0],[0,3,2,2],[1,3,1,2],[1,1,2,0]],[[1,2,2,0],[0,3,2,2],[1,4,1,2],[1,1,1,1]],[[1,2,2,0],[0,4,2,2],[1,3,1,2],[1,1,1,1]],[[1,2,3,0],[0,3,2,2],[1,3,1,2],[1,1,1,1]],[[1,3,2,0],[0,3,2,2],[1,3,1,2],[1,1,1,1]],[[2,2,2,0],[0,3,2,2],[1,3,1,2],[1,1,1,1]],[[1,2,2,0],[0,3,2,2],[1,3,1,1],[1,2,3,0]],[[1,2,2,0],[0,3,2,2],[1,3,1,1],[1,3,2,0]],[[1,2,2,0],[0,3,2,2],[1,3,1,1],[2,2,2,0]],[[1,2,2,0],[0,3,2,2],[1,4,1,1],[1,2,2,0]],[[1,2,2,0],[0,4,2,2],[1,3,1,1],[1,2,2,0]],[[1,2,3,0],[0,3,2,2],[1,3,1,1],[1,2,2,0]],[[1,3,2,0],[0,3,2,2],[1,3,1,1],[1,2,2,0]],[[2,2,2,0],[0,3,2,2],[1,3,1,1],[1,2,2,0]],[[1,2,2,0],[0,3,2,2],[1,3,1,0],[1,2,2,2]],[[1,2,2,0],[0,3,2,2],[1,3,1,0],[1,2,3,1]],[[1,2,2,0],[0,3,2,2],[1,3,1,0],[1,3,2,1]],[[1,2,2,0],[0,3,2,2],[1,3,1,0],[2,2,2,1]],[[1,2,2,0],[0,3,2,2],[1,4,1,0],[1,2,2,1]],[[1,2,2,0],[0,4,2,2],[1,3,1,0],[1,2,2,1]],[[1,2,3,0],[0,3,2,2],[1,3,1,0],[1,2,2,1]],[[1,3,2,0],[0,3,2,2],[1,3,1,0],[1,2,2,1]],[[2,2,2,0],[0,3,2,2],[1,3,1,0],[1,2,2,1]],[[1,2,2,0],[0,3,2,2],[1,3,0,2],[1,2,3,0]],[[1,2,2,0],[0,3,2,2],[1,3,0,2],[1,3,2,0]],[[1,2,2,0],[0,3,2,2],[1,3,0,2],[2,2,2,0]],[[1,2,2,0],[0,3,2,2],[1,4,0,2],[1,2,2,0]],[[1,2,2,0],[0,4,2,2],[1,3,0,2],[1,2,2,0]],[[1,2,3,0],[0,3,2,2],[1,3,0,2],[1,2,2,0]],[[1,3,2,0],[0,3,2,2],[1,3,0,2],[1,2,2,0]],[[2,2,2,0],[0,3,2,2],[1,3,0,2],[1,2,2,0]],[[1,2,2,0],[0,3,2,2],[1,3,0,2],[1,3,1,1]],[[1,2,2,0],[0,3,2,2],[1,3,0,2],[2,2,1,1]],[[1,2,2,0],[0,3,2,2],[1,4,0,2],[1,2,1,1]],[[1,2,2,0],[0,4,2,2],[1,3,0,2],[1,2,1,1]],[[1,2,3,0],[0,3,2,2],[1,3,0,2],[1,2,1,1]],[[1,3,2,0],[0,3,2,2],[1,3,0,2],[1,2,1,1]],[[2,2,2,0],[0,3,2,2],[1,3,0,2],[1,2,1,1]],[[1,2,2,0],[0,3,2,2],[1,4,0,2],[1,1,2,1]],[[1,2,2,0],[0,4,2,2],[1,3,0,2],[1,1,2,1]],[[1,2,3,0],[0,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,3,2,0],[0,3,2,2],[1,3,0,2],[1,1,2,1]],[[2,2,2,0],[0,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[0,3,2,2],[1,3,0,1],[1,2,2,2]],[[1,2,2,0],[0,3,2,2],[1,3,0,1],[1,2,3,1]],[[1,2,2,0],[0,3,2,2],[1,3,0,1],[1,3,2,1]],[[1,2,2,0],[0,3,2,2],[1,3,0,1],[2,2,2,1]],[[1,2,2,0],[0,3,2,2],[1,4,0,1],[1,2,2,1]],[[1,2,2,0],[0,4,2,2],[1,3,0,1],[1,2,2,1]],[[1,2,3,0],[0,3,2,2],[1,3,0,1],[1,2,2,1]],[[1,3,2,0],[0,3,2,2],[1,3,0,1],[1,2,2,1]],[[2,2,2,0],[0,3,2,2],[1,3,0,1],[1,2,2,1]],[[1,2,2,0],[0,3,2,2],[1,2,3,3],[1,0,2,0]],[[1,2,2,0],[0,3,2,2],[1,2,4,2],[1,0,2,0]],[[1,2,2,0],[0,3,2,3],[1,2,3,2],[1,0,2,0]],[[1,2,2,0],[0,3,2,2],[1,2,3,2],[1,0,1,2]],[[1,2,2,0],[0,3,2,2],[1,2,3,3],[1,0,1,1]],[[1,2,2,0],[0,3,2,2],[1,2,4,2],[1,0,1,1]],[[1,2,2,0],[0,3,2,3],[1,2,3,2],[1,0,1,1]],[[1,2,2,0],[0,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,0],[0,3,2,2],[1,2,4,2],[0,2,1,0]],[[1,2,2,0],[0,3,2,3],[1,2,3,2],[0,2,1,0]],[[1,2,2,0],[0,3,2,2],[1,2,3,2],[0,2,0,2]],[[1,2,2,0],[0,3,2,2],[1,2,3,3],[0,2,0,1]],[[1,2,2,0],[0,3,2,2],[1,2,4,2],[0,2,0,1]],[[1,2,2,0],[0,3,2,3],[1,2,3,2],[0,2,0,1]],[[1,2,2,0],[0,3,2,2],[1,2,3,2],[0,1,3,0]],[[1,2,2,0],[0,3,2,2],[1,2,3,3],[0,1,2,0]],[[1,2,2,0],[0,3,2,2],[1,2,4,2],[0,1,2,0]],[[1,2,2,0],[0,3,2,3],[1,2,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,2,2],[1,2,3,2],[0,1,1,2]],[[1,2,2,0],[0,3,2,2],[1,2,3,3],[0,1,1,1]],[[1,2,2,0],[0,3,2,2],[1,2,4,2],[0,1,1,1]],[[1,2,2,0],[0,3,2,3],[1,2,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,2,2],[1,2,3,2],[0,0,2,2]],[[1,2,2,0],[0,3,2,2],[1,2,3,3],[0,0,2,1]],[[1,2,2,0],[0,3,2,2],[1,2,4,2],[0,0,2,1]],[[1,2,2,0],[0,3,2,3],[1,2,3,2],[0,0,2,1]],[[1,2,2,0],[0,4,2,2],[1,2,3,1],[1,2,1,0]],[[1,2,3,0],[0,3,2,2],[1,2,3,1],[1,2,1,0]],[[1,3,2,0],[0,3,2,2],[1,2,3,1],[1,2,1,0]],[[2,2,2,0],[0,3,2,2],[1,2,3,1],[1,2,1,0]],[[1,2,2,0],[0,4,2,2],[1,2,3,1],[1,2,0,1]],[[1,2,3,0],[0,3,2,2],[1,2,3,1],[1,2,0,1]],[[1,3,2,0],[0,3,2,2],[1,2,3,1],[1,2,0,1]],[[2,2,2,0],[0,3,2,2],[1,2,3,1],[1,2,0,1]],[[1,2,2,0],[0,4,2,2],[1,2,3,1],[1,1,2,0]],[[1,2,3,0],[0,3,2,2],[1,2,3,1],[1,1,2,0]],[[1,3,2,0],[0,3,2,2],[1,2,3,1],[1,1,2,0]],[[2,2,2,0],[0,3,2,2],[1,2,3,1],[1,1,2,0]],[[1,2,2,0],[0,4,2,2],[1,2,3,1],[1,1,1,1]],[[1,2,3,0],[0,3,2,2],[1,2,3,1],[1,1,1,1]],[[1,3,2,0],[0,3,2,2],[1,2,3,1],[1,1,1,1]],[[2,2,2,0],[0,3,2,2],[1,2,3,1],[1,1,1,1]],[[1,2,2,0],[0,3,2,2],[1,2,3,1],[0,1,2,2]],[[1,2,2,0],[0,3,2,2],[1,2,3,1],[0,1,3,1]],[[1,2,2,0],[0,3,2,2],[1,2,4,1],[0,1,2,1]],[[1,2,2,0],[0,4,2,2],[1,2,3,0],[1,2,1,1]],[[1,2,3,0],[0,3,2,2],[1,2,3,0],[1,2,1,1]],[[1,3,2,0],[0,3,2,2],[1,2,3,0],[1,2,1,1]],[[2,2,2,0],[0,3,2,2],[1,2,3,0],[1,2,1,1]],[[1,2,2,0],[0,4,2,2],[1,2,3,0],[1,1,2,1]],[[1,2,3,0],[0,3,2,2],[1,2,3,0],[1,1,2,1]],[[1,3,2,0],[0,3,2,2],[1,2,3,0],[1,1,2,1]],[[2,2,2,0],[0,3,2,2],[1,2,3,0],[1,1,2,1]],[[1,2,2,0],[0,4,2,2],[1,2,2,2],[1,2,1,0]],[[1,2,3,0],[0,3,2,2],[1,2,2,2],[1,2,1,0]],[[1,3,2,0],[0,3,2,2],[1,2,2,2],[1,2,1,0]],[[2,2,2,0],[0,3,2,2],[1,2,2,2],[1,2,1,0]],[[1,2,2,0],[0,4,2,2],[1,2,2,2],[1,2,0,1]],[[1,2,3,0],[0,3,2,2],[1,2,2,2],[1,2,0,1]],[[1,3,2,0],[0,3,2,2],[1,2,2,2],[1,2,0,1]],[[2,2,2,0],[0,3,2,2],[1,2,2,2],[1,2,0,1]],[[1,2,2,0],[0,4,2,2],[1,2,2,2],[1,1,2,0]],[[1,2,3,0],[0,3,2,2],[1,2,2,2],[1,1,2,0]],[[1,3,2,0],[0,3,2,2],[1,2,2,2],[1,1,2,0]],[[2,2,2,0],[0,3,2,2],[1,2,2,2],[1,1,2,0]],[[1,2,2,0],[0,4,2,2],[1,2,2,2],[1,1,1,1]],[[1,2,3,0],[0,3,2,2],[1,2,2,2],[1,1,1,1]],[[1,3,2,0],[0,3,2,2],[1,2,2,2],[1,1,1,1]],[[2,2,2,0],[0,3,2,2],[1,2,2,2],[1,1,1,1]],[[1,2,2,0],[0,3,2,2],[1,2,2,2],[0,1,2,2]],[[1,2,2,0],[0,3,2,2],[1,2,2,2],[0,1,3,1]],[[1,2,2,0],[0,3,2,2],[1,2,2,3],[0,1,2,1]],[[1,2,2,0],[0,3,2,3],[1,2,2,2],[0,1,2,1]],[[1,2,2,0],[0,4,2,2],[1,2,1,2],[1,1,2,1]],[[1,2,3,0],[0,3,2,2],[1,2,1,2],[1,1,2,1]],[[1,3,2,0],[0,3,2,2],[1,2,1,2],[1,1,2,1]],[[2,2,2,0],[0,3,2,2],[1,2,1,2],[1,1,2,1]],[[1,2,2,0],[0,4,2,2],[1,2,0,2],[1,2,2,1]],[[1,2,3,0],[0,3,2,2],[1,2,0,2],[1,2,2,1]],[[1,3,2,0],[0,3,2,2],[1,2,0,2],[1,2,2,1]],[[2,2,2,0],[0,3,2,2],[1,2,0,2],[1,2,2,1]],[[1,2,2,0],[0,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,2,0],[0,3,2,2],[1,1,3,3],[0,2,2,0]],[[1,2,2,0],[0,3,2,2],[1,1,4,2],[0,2,2,0]],[[1,2,2,0],[0,3,2,3],[1,1,3,2],[0,2,2,0]],[[1,2,2,0],[0,3,2,2],[1,1,3,2],[0,2,1,2]],[[1,2,2,0],[0,3,2,2],[1,1,3,3],[0,2,1,1]],[[1,2,2,0],[0,3,2,2],[1,1,4,2],[0,2,1,1]],[[1,2,2,0],[0,3,2,3],[1,1,3,2],[0,2,1,1]],[[1,2,2,0],[0,4,2,2],[1,1,3,1],[1,2,2,0]],[[1,2,3,0],[0,3,2,2],[1,1,3,1],[1,2,2,0]],[[1,3,2,0],[0,3,2,2],[1,1,3,1],[1,2,2,0]],[[2,2,2,0],[0,3,2,2],[1,1,3,1],[1,2,2,0]],[[1,2,2,0],[0,4,2,2],[1,1,3,1],[1,2,1,1]],[[1,2,3,0],[0,3,2,2],[1,1,3,1],[1,2,1,1]],[[1,3,2,0],[0,3,2,2],[1,1,3,1],[1,2,1,1]],[[2,2,2,0],[0,3,2,2],[1,1,3,1],[1,2,1,1]],[[1,2,2,0],[0,3,2,2],[1,1,3,1],[0,2,2,2]],[[1,2,2,0],[0,3,2,2],[1,1,3,1],[0,2,3,1]],[[1,2,2,0],[0,3,2,2],[1,1,4,1],[0,2,2,1]],[[1,2,2,0],[0,4,2,2],[1,1,3,0],[1,2,2,1]],[[1,2,3,0],[0,3,2,2],[1,1,3,0],[1,2,2,1]],[[1,3,2,0],[0,3,2,2],[1,1,3,0],[1,2,2,1]],[[2,2,2,0],[0,3,2,2],[1,1,3,0],[1,2,2,1]],[[1,2,2,0],[0,4,2,2],[1,1,2,2],[1,2,2,0]],[[1,2,3,0],[0,3,2,2],[1,1,2,2],[1,2,2,0]],[[1,3,2,0],[0,3,2,2],[1,1,2,2],[1,2,2,0]],[[2,2,2,0],[0,3,2,2],[1,1,2,2],[1,2,2,0]],[[1,2,2,0],[0,4,2,2],[1,1,2,2],[1,2,1,1]],[[1,2,3,0],[0,3,2,2],[1,1,2,2],[1,2,1,1]],[[1,3,2,0],[0,3,2,2],[1,1,2,2],[1,2,1,1]],[[2,2,2,0],[0,3,2,2],[1,1,2,2],[1,2,1,1]],[[1,2,2,0],[0,3,2,2],[1,1,2,2],[0,2,2,2]],[[1,2,2,0],[0,3,2,2],[1,1,2,2],[0,2,3,1]],[[1,2,2,0],[0,3,2,2],[1,1,2,3],[0,2,2,1]],[[1,2,2,0],[0,3,2,3],[1,1,2,2],[0,2,2,1]],[[1,2,2,0],[0,4,2,2],[1,1,1,2],[1,2,2,1]],[[1,2,3,0],[0,3,2,2],[1,1,1,2],[1,2,2,1]],[[1,3,2,0],[0,3,2,2],[1,1,1,2],[1,2,2,1]],[[2,2,2,0],[0,3,2,2],[1,1,1,2],[1,2,2,1]],[[1,2,2,0],[0,3,2,2],[1,0,3,2],[0,2,2,2]],[[1,2,2,0],[0,3,2,2],[1,0,3,2],[0,2,3,1]],[[1,2,2,0],[0,3,2,2],[1,0,3,3],[0,2,2,1]],[[1,2,2,0],[0,3,2,3],[1,0,3,2],[0,2,2,1]],[[1,2,2,0],[0,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,0],[0,3,2,2],[0,3,4,2],[0,2,1,0]],[[1,2,2,0],[0,3,2,3],[0,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,3,2,2],[0,3,3,2],[0,2,0,2]],[[1,2,2,0],[0,3,2,2],[0,3,3,3],[0,2,0,1]],[[1,2,2,0],[0,3,2,2],[0,3,4,2],[0,2,0,1]],[[1,2,2,0],[0,3,2,3],[0,3,3,2],[0,2,0,1]],[[1,2,2,0],[0,3,2,2],[0,3,3,2],[0,1,3,0]],[[1,2,2,0],[0,3,2,2],[0,3,3,3],[0,1,2,0]],[[1,2,2,0],[0,3,2,2],[0,3,4,2],[0,1,2,0]],[[1,2,2,0],[0,3,2,3],[0,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,2,2],[0,3,3,2],[0,1,1,2]],[[1,2,2,0],[0,3,2,2],[0,3,3,3],[0,1,1,1]],[[1,2,2,0],[0,3,2,2],[0,3,4,2],[0,1,1,1]],[[1,2,2,0],[0,3,2,3],[0,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,2,2],[0,3,3,2],[0,0,2,2]],[[1,2,2,0],[0,3,2,2],[0,3,3,3],[0,0,2,1]],[[1,2,2,0],[0,3,2,2],[0,3,4,2],[0,0,2,1]],[[1,2,2,0],[0,3,2,3],[0,3,3,2],[0,0,2,1]],[[1,2,2,0],[0,3,2,2],[0,3,3,1],[0,1,2,2]],[[1,2,2,0],[0,3,2,2],[0,3,3,1],[0,1,3,1]],[[1,2,2,0],[0,3,2,2],[0,3,4,1],[0,1,2,1]],[[1,2,2,0],[0,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,2,2,0],[0,3,2,2],[0,3,2,2],[0,1,3,1]],[[1,2,2,0],[0,3,2,2],[0,3,2,3],[0,1,2,1]],[[1,2,2,0],[0,3,2,3],[0,3,2,2],[0,1,2,1]],[[1,2,2,0],[0,3,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,2,0],[0,3,2,2],[0,2,4,2],[1,2,1,0]],[[1,2,2,0],[0,3,2,3],[0,2,3,2],[1,2,1,0]],[[1,2,2,0],[0,3,2,2],[0,2,3,2],[1,2,0,2]],[[1,2,2,0],[0,3,2,2],[0,2,3,3],[1,2,0,1]],[[1,2,2,0],[0,3,2,2],[0,2,4,2],[1,2,0,1]],[[1,2,2,0],[0,3,2,3],[0,2,3,2],[1,2,0,1]],[[1,2,2,0],[0,3,2,2],[0,2,3,2],[1,1,3,0]],[[1,2,2,0],[0,3,2,2],[0,2,3,3],[1,1,2,0]],[[1,2,2,0],[0,3,2,2],[0,2,4,2],[1,1,2,0]],[[1,2,2,0],[0,3,2,3],[0,2,3,2],[1,1,2,0]],[[1,2,2,0],[0,3,2,2],[0,2,3,2],[1,1,1,2]],[[1,2,2,0],[0,3,2,2],[0,2,3,3],[1,1,1,1]],[[1,2,2,0],[0,3,2,2],[0,2,4,2],[1,1,1,1]],[[1,2,2,0],[0,3,2,3],[0,2,3,2],[1,1,1,1]],[[1,2,2,0],[0,3,2,2],[0,2,3,2],[1,0,2,2]],[[1,2,2,0],[0,3,2,2],[0,2,3,3],[1,0,2,1]],[[1,2,2,0],[0,3,2,2],[0,2,4,2],[1,0,2,1]],[[1,2,2,0],[0,3,2,3],[0,2,3,2],[1,0,2,1]],[[1,2,2,0],[0,3,2,2],[0,2,3,1],[1,1,2,2]],[[1,2,2,0],[0,3,2,2],[0,2,3,1],[1,1,3,1]],[[1,2,2,0],[0,3,2,2],[0,2,4,1],[1,1,2,1]],[[1,2,2,0],[0,3,2,2],[0,2,2,2],[1,1,2,2]],[[1,2,2,0],[0,3,2,2],[0,2,2,2],[1,1,3,1]],[[1,2,2,0],[0,3,2,2],[0,2,2,3],[1,1,2,1]],[[1,2,2,0],[0,3,2,3],[0,2,2,2],[1,1,2,1]],[[1,2,2,0],[0,3,2,2],[0,1,3,2],[1,2,3,0]],[[1,2,2,0],[0,3,2,2],[0,1,3,2],[1,3,2,0]],[[1,2,2,0],[0,3,2,2],[0,1,3,3],[1,2,2,0]],[[1,2,2,0],[0,3,2,2],[0,1,4,2],[1,2,2,0]],[[1,2,2,0],[0,3,2,3],[0,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,3,2,2],[0,1,3,2],[1,2,1,2]],[[1,2,2,0],[0,3,2,2],[0,1,3,3],[1,2,1,1]],[[1,2,2,0],[0,3,2,2],[0,1,4,2],[1,2,1,1]],[[1,2,2,0],[0,3,2,3],[0,1,3,2],[1,2,1,1]],[[1,2,2,0],[0,3,2,2],[0,1,3,1],[1,2,2,2]],[[1,2,2,0],[0,3,2,2],[0,1,3,1],[1,2,3,1]],[[1,2,2,0],[0,3,2,2],[0,1,3,1],[1,3,2,1]],[[1,2,2,0],[0,3,2,2],[0,1,4,1],[1,2,2,1]],[[1,2,2,0],[0,3,2,2],[0,1,2,2],[1,2,2,2]],[[1,2,2,0],[0,3,2,2],[0,1,2,2],[1,2,3,1]],[[1,2,2,0],[0,3,2,2],[0,1,2,2],[1,3,2,1]],[[1,2,2,0],[0,3,2,2],[0,1,2,3],[1,2,2,1]],[[1,2,2,0],[0,3,2,3],[0,1,2,2],[1,2,2,1]],[[1,2,2,0],[0,3,2,2],[0,0,3,2],[1,2,2,2]],[[1,2,2,0],[0,3,2,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,0],[0,3,2,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,0],[0,3,2,3],[0,0,3,2],[1,2,2,1]],[[1,2,2,0],[0,3,2,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,0],[0,3,2,1],[2,4,3,2],[1,1,0,0]],[[1,2,2,0],[0,3,2,1],[3,3,3,2],[1,1,0,0]],[[1,2,2,0],[0,4,2,1],[2,3,3,2],[1,1,0,0]],[[1,2,3,0],[0,3,2,1],[2,3,3,2],[1,1,0,0]],[[1,3,2,0],[0,3,2,1],[2,3,3,2],[1,1,0,0]],[[2,2,2,0],[0,3,2,1],[2,3,3,2],[1,1,0,0]],[[1,2,2,0],[0,3,2,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,0],[0,3,2,1],[3,3,3,2],[0,2,0,0]],[[1,2,2,0],[0,4,2,1],[2,3,3,2],[0,2,0,0]],[[1,2,3,0],[0,3,2,1],[2,3,3,2],[0,2,0,0]],[[1,3,2,0],[0,3,2,1],[2,3,3,2],[0,2,0,0]],[[2,2,2,0],[0,3,2,1],[2,3,3,2],[0,2,0,0]],[[1,2,2,0],[0,4,2,1],[2,3,3,2],[0,0,2,0]],[[1,2,3,0],[0,3,2,1],[2,3,3,2],[0,0,2,0]],[[1,3,2,0],[0,3,2,1],[2,3,3,2],[0,0,2,0]],[[2,2,2,0],[0,3,2,1],[2,3,3,2],[0,0,2,0]],[[1,2,2,0],[0,4,2,1],[2,3,3,2],[0,0,1,1]],[[1,2,3,0],[0,3,2,1],[2,3,3,2],[0,0,1,1]],[[1,3,2,0],[0,3,2,1],[2,3,3,2],[0,0,1,1]],[[2,2,2,0],[0,3,2,1],[2,3,3,2],[0,0,1,1]],[[1,2,2,0],[0,4,2,1],[2,3,3,1],[0,0,2,1]],[[1,2,3,0],[0,3,2,1],[2,3,3,1],[0,0,2,1]],[[1,3,2,0],[0,3,2,1],[2,3,3,1],[0,0,2,1]],[[2,2,2,0],[0,3,2,1],[2,3,3,1],[0,0,2,1]],[[1,2,2,0],[0,3,2,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,0],[0,3,2,1],[2,4,2,2],[1,2,0,0]],[[1,2,2,0],[0,3,2,1],[3,3,2,2],[1,2,0,0]],[[1,2,2,0],[0,4,2,1],[2,3,2,2],[1,2,0,0]],[[1,2,3,0],[0,3,2,1],[2,3,2,2],[1,2,0,0]],[[1,3,2,0],[0,3,2,1],[2,3,2,2],[1,2,0,0]],[[2,2,2,0],[0,3,2,1],[2,3,2,2],[1,2,0,0]],[[1,2,2,0],[0,3,2,1],[2,3,2,2],[2,1,1,0]],[[1,2,2,0],[0,3,2,1],[2,4,2,2],[1,1,1,0]],[[1,2,2,0],[0,3,2,1],[3,3,2,2],[1,1,1,0]],[[1,2,2,0],[0,4,2,1],[2,3,2,2],[1,1,1,0]],[[1,2,3,0],[0,3,2,1],[2,3,2,2],[1,1,1,0]],[[1,3,2,0],[0,3,2,1],[2,3,2,2],[1,1,1,0]],[[2,2,2,0],[0,3,2,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,0],[0,3,2,1],[2,3,2,2],[2,1,0,1]],[[1,2,2,0],[0,3,2,1],[2,4,2,2],[1,1,0,1]],[[1,2,2,0],[0,3,2,1],[3,3,2,2],[1,1,0,1]],[[1,2,2,0],[0,4,2,1],[2,3,2,2],[1,1,0,1]],[[1,2,3,0],[0,3,2,1],[2,3,2,2],[1,1,0,1]],[[1,3,2,0],[0,3,2,1],[2,3,2,2],[1,1,0,1]],[[2,2,2,0],[0,3,2,1],[2,3,2,2],[1,1,0,1]],[[1,2,2,0],[0,3,2,1],[2,3,2,2],[2,0,2,0]],[[1,2,2,0],[0,3,2,1],[2,4,2,2],[1,0,2,0]],[[1,2,2,0],[0,3,2,1],[3,3,2,2],[1,0,2,0]],[[1,2,2,0],[0,4,2,1],[2,3,2,2],[1,0,2,0]],[[1,2,3,0],[0,3,2,1],[2,3,2,2],[1,0,2,0]],[[1,3,2,0],[0,3,2,1],[2,3,2,2],[1,0,2,0]],[[2,2,2,0],[0,3,2,1],[2,3,2,2],[1,0,2,0]],[[1,2,2,0],[0,3,2,1],[2,3,2,2],[2,0,1,1]],[[1,2,2,0],[0,3,2,1],[2,4,2,2],[1,0,1,1]],[[1,2,2,0],[0,3,2,1],[3,3,2,2],[1,0,1,1]],[[1,2,2,0],[0,4,2,1],[2,3,2,2],[1,0,1,1]],[[1,2,3,0],[0,3,2,1],[2,3,2,2],[1,0,1,1]],[[1,3,2,0],[0,3,2,1],[2,3,2,2],[1,0,1,1]],[[2,2,2,0],[0,3,2,1],[2,3,2,2],[1,0,1,1]],[[1,2,2,0],[0,3,2,1],[2,3,2,2],[0,3,1,0]],[[1,2,2,0],[0,3,2,1],[2,4,2,2],[0,2,1,0]],[[1,2,2,0],[0,3,2,1],[3,3,2,2],[0,2,1,0]],[[1,2,2,0],[0,4,2,1],[2,3,2,2],[0,2,1,0]],[[1,2,3,0],[0,3,2,1],[2,3,2,2],[0,2,1,0]],[[1,3,2,0],[0,3,2,1],[2,3,2,2],[0,2,1,0]],[[2,2,2,0],[0,3,2,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,0],[0,3,2,1],[2,3,2,2],[0,3,0,1]],[[1,2,2,0],[0,3,2,1],[2,4,2,2],[0,2,0,1]],[[1,2,2,0],[0,3,2,1],[3,3,2,2],[0,2,0,1]],[[1,2,2,0],[0,4,2,1],[2,3,2,2],[0,2,0,1]],[[1,2,3,0],[0,3,2,1],[2,3,2,2],[0,2,0,1]],[[1,3,2,0],[0,3,2,1],[2,3,2,2],[0,2,0,1]],[[2,2,2,0],[0,3,2,1],[2,3,2,2],[0,2,0,1]],[[1,2,2,0],[0,3,2,1],[2,4,2,2],[0,1,2,0]],[[1,2,2,0],[0,3,2,1],[3,3,2,2],[0,1,2,0]],[[1,2,2,0],[0,4,2,1],[2,3,2,2],[0,1,2,0]],[[1,2,3,0],[0,3,2,1],[2,3,2,2],[0,1,2,0]],[[1,3,2,0],[0,3,2,1],[2,3,2,2],[0,1,2,0]],[[2,2,2,0],[0,3,2,1],[2,3,2,2],[0,1,2,0]],[[1,2,2,0],[0,3,2,1],[2,4,2,2],[0,1,1,1]],[[1,2,2,0],[0,3,2,1],[3,3,2,2],[0,1,1,1]],[[1,2,2,0],[0,4,2,1],[2,3,2,2],[0,1,1,1]],[[1,2,3,0],[0,3,2,1],[2,3,2,2],[0,1,1,1]],[[1,3,2,0],[0,3,2,1],[2,3,2,2],[0,1,1,1]],[[2,2,2,0],[0,3,2,1],[2,3,2,2],[0,1,1,1]],[[1,2,2,0],[0,3,2,1],[2,3,2,1],[2,2,0,1]],[[1,2,2,0],[0,3,2,1],[2,4,2,1],[1,2,0,1]],[[1,2,2,0],[0,3,2,1],[3,3,2,1],[1,2,0,1]],[[1,2,2,0],[0,4,2,1],[2,3,2,1],[1,2,0,1]],[[1,3,2,0],[0,3,2,1],[2,3,2,1],[1,2,0,1]],[[2,2,2,0],[0,3,2,1],[2,3,2,1],[1,2,0,1]],[[1,2,2,0],[0,3,2,1],[2,3,2,1],[2,1,1,1]],[[1,2,2,0],[0,3,2,1],[2,4,2,1],[1,1,1,1]],[[1,2,2,0],[0,3,2,1],[3,3,2,1],[1,1,1,1]],[[1,2,2,0],[0,4,2,1],[2,3,2,1],[1,1,1,1]],[[1,2,3,0],[0,3,2,1],[2,3,2,1],[1,1,1,1]],[[1,3,2,0],[0,3,2,1],[2,3,2,1],[1,1,1,1]],[[2,2,2,0],[0,3,2,1],[2,3,2,1],[1,1,1,1]],[[1,2,2,0],[0,3,2,1],[2,3,2,1],[2,0,2,1]],[[1,2,2,0],[0,3,2,1],[2,4,2,1],[1,0,2,1]],[[1,2,2,0],[0,3,2,1],[3,3,2,1],[1,0,2,1]],[[1,2,2,0],[0,4,2,1],[2,3,2,1],[1,0,2,1]],[[1,2,3,0],[0,3,2,1],[2,3,2,1],[1,0,2,1]],[[1,3,2,0],[0,3,2,1],[2,3,2,1],[1,0,2,1]],[[2,2,2,0],[0,3,2,1],[2,3,2,1],[1,0,2,1]],[[1,2,2,0],[0,3,2,1],[2,3,2,1],[0,3,1,1]],[[1,2,2,0],[0,3,2,1],[2,4,2,1],[0,2,1,1]],[[1,2,2,0],[0,3,2,1],[3,3,2,1],[0,2,1,1]],[[1,2,2,0],[0,4,2,1],[2,3,2,1],[0,2,1,1]],[[1,2,3,0],[0,3,2,1],[2,3,2,1],[0,2,1,1]],[[1,3,2,0],[0,3,2,1],[2,3,2,1],[0,2,1,1]],[[2,2,2,0],[0,3,2,1],[2,3,2,1],[0,2,1,1]],[[1,2,2,0],[0,3,2,1],[2,4,2,1],[0,1,2,1]],[[1,2,2,0],[0,3,2,1],[3,3,2,1],[0,1,2,1]],[[1,2,2,0],[0,4,2,1],[2,3,2,1],[0,1,2,1]],[[1,2,3,0],[0,3,2,1],[2,3,2,1],[0,1,2,1]],[[1,3,2,0],[0,3,2,1],[2,3,2,1],[0,1,2,1]],[[2,2,2,0],[0,3,2,1],[2,3,2,1],[0,1,2,1]],[[1,2,2,0],[0,3,2,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,0],[0,3,2,1],[2,4,1,2],[1,1,2,0]],[[1,2,2,0],[0,3,2,1],[3,3,1,2],[1,1,2,0]],[[1,2,2,0],[0,4,2,1],[2,3,1,2],[1,1,2,0]],[[1,2,3,0],[0,3,2,1],[2,3,1,2],[1,1,2,0]],[[1,3,2,0],[0,3,2,1],[2,3,1,2],[1,1,2,0]],[[2,2,2,0],[0,3,2,1],[2,3,1,2],[1,1,2,0]],[[1,2,2,0],[0,3,2,1],[2,3,1,2],[0,2,3,0]],[[1,2,2,0],[0,3,2,1],[2,3,1,2],[0,3,2,0]],[[1,2,2,0],[0,3,2,1],[2,4,1,2],[0,2,2,0]],[[1,2,2,0],[0,3,2,1],[3,3,1,2],[0,2,2,0]],[[1,2,2,0],[0,4,2,1],[2,3,1,2],[0,2,2,0]],[[1,2,3,0],[0,3,2,1],[2,3,1,2],[0,2,2,0]],[[1,3,2,0],[0,3,2,1],[2,3,1,2],[0,2,2,0]],[[2,2,2,0],[0,3,2,1],[2,3,1,2],[0,2,2,0]],[[1,2,2,0],[0,3,2,1],[2,3,1,1],[2,1,2,1]],[[1,2,2,0],[0,3,2,1],[2,4,1,1],[1,1,2,1]],[[1,2,2,0],[0,3,2,1],[3,3,1,1],[1,1,2,1]],[[1,2,2,0],[0,4,2,1],[2,3,1,1],[1,1,2,1]],[[1,2,3,0],[0,3,2,1],[2,3,1,1],[1,1,2,1]],[[1,3,2,0],[0,3,2,1],[2,3,1,1],[1,1,2,1]],[[2,2,2,0],[0,3,2,1],[2,3,1,1],[1,1,2,1]],[[1,2,2,0],[0,3,2,1],[2,3,1,1],[0,2,2,2]],[[1,2,2,0],[0,3,2,1],[2,3,1,1],[0,2,3,1]],[[1,2,2,0],[0,3,2,1],[2,3,1,1],[0,3,2,1]],[[1,2,2,0],[0,3,2,1],[2,4,1,1],[0,2,2,1]],[[1,2,2,0],[0,3,2,1],[3,3,1,1],[0,2,2,1]],[[1,2,2,0],[0,4,2,1],[2,3,1,1],[0,2,2,1]],[[1,2,3,0],[0,3,2,1],[2,3,1,1],[0,2,2,1]],[[1,3,2,0],[0,3,2,1],[2,3,1,1],[0,2,2,1]],[[2,2,2,0],[0,3,2,1],[2,3,1,1],[0,2,2,1]],[[1,2,2,0],[0,3,2,1],[2,3,0,2],[1,3,2,0]],[[1,2,2,0],[0,3,2,1],[2,3,0,2],[2,2,2,0]],[[1,2,2,0],[0,3,2,1],[3,3,0,2],[1,2,2,0]],[[1,2,2,0],[0,3,2,1],[2,3,0,2],[2,1,2,1]],[[1,2,2,0],[0,3,2,1],[2,4,0,2],[1,1,2,1]],[[1,2,2,0],[0,3,2,1],[3,3,0,2],[1,1,2,1]],[[1,2,2,0],[0,4,2,1],[2,3,0,2],[1,1,2,1]],[[1,2,3,0],[0,3,2,1],[2,3,0,2],[1,1,2,1]],[[1,3,2,0],[0,3,2,1],[2,3,0,2],[1,1,2,1]],[[2,2,2,0],[0,3,2,1],[2,3,0,2],[1,1,2,1]],[[1,2,2,0],[0,3,2,1],[2,3,0,2],[0,2,2,2]],[[1,2,2,0],[0,3,2,1],[2,3,0,2],[0,2,3,1]],[[1,2,2,0],[0,3,2,1],[2,3,0,2],[0,3,2,1]],[[1,2,2,0],[0,3,2,1],[2,3,0,3],[0,2,2,1]],[[1,2,2,0],[0,3,2,1],[2,4,0,2],[0,2,2,1]],[[1,2,2,0],[0,3,2,1],[3,3,0,2],[0,2,2,1]],[[1,2,2,0],[0,4,2,1],[2,3,0,2],[0,2,2,1]],[[1,2,3,0],[0,3,2,1],[2,3,0,2],[0,2,2,1]],[[1,3,2,0],[0,3,2,1],[2,3,0,2],[0,2,2,1]],[[2,2,2,0],[0,3,2,1],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[0,3,2,1],[2,3,0,1],[1,3,2,1]],[[1,2,2,0],[0,3,2,1],[2,3,0,1],[2,2,2,1]],[[1,2,2,0],[0,3,2,1],[3,3,0,1],[1,2,2,1]],[[1,2,2,0],[0,4,2,1],[2,2,3,2],[1,1,1,0]],[[1,2,3,0],[0,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,3,2,0],[0,3,2,1],[2,2,3,2],[1,1,1,0]],[[2,2,2,0],[0,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,2,2,0],[0,4,2,1],[2,2,3,2],[1,1,0,1]],[[1,2,3,0],[0,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,3,2,0],[0,3,2,1],[2,2,3,2],[1,1,0,1]],[[2,2,2,0],[0,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,2,2,0],[0,4,2,1],[2,2,3,2],[1,0,2,0]],[[1,2,3,0],[0,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,3,2,0],[0,3,2,1],[2,2,3,2],[1,0,2,0]],[[2,2,2,0],[0,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,2,2,0],[0,4,2,1],[2,2,3,2],[1,0,1,1]],[[1,2,3,0],[0,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,3,2,0],[0,3,2,1],[2,2,3,2],[1,0,1,1]],[[2,2,2,0],[0,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,2,2,0],[0,4,2,1],[2,2,3,2],[0,2,1,0]],[[1,2,3,0],[0,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,3,2,0],[0,3,2,1],[2,2,3,2],[0,2,1,0]],[[2,2,2,0],[0,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,2,2,0],[0,4,2,1],[2,2,3,2],[0,2,0,1]],[[1,2,3,0],[0,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,3,2,0],[0,3,2,1],[2,2,3,2],[0,2,0,1]],[[2,2,2,0],[0,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,2,2,0],[0,4,2,1],[2,2,3,2],[0,1,2,0]],[[1,2,3,0],[0,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,3,2,0],[0,3,2,1],[2,2,3,2],[0,1,2,0]],[[2,2,2,0],[0,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,2,2,0],[0,4,2,1],[2,2,3,2],[0,1,1,1]],[[1,2,3,0],[0,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,3,2,0],[0,3,2,1],[2,2,3,2],[0,1,1,1]],[[2,2,2,0],[0,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,2,2,0],[0,4,2,1],[2,2,3,2],[0,0,2,1]],[[1,2,3,0],[0,3,2,1],[2,2,3,2],[0,0,2,1]],[[1,3,2,0],[0,3,2,1],[2,2,3,2],[0,0,2,1]],[[2,2,2,0],[0,3,2,1],[2,2,3,2],[0,0,2,1]],[[1,2,2,0],[0,4,2,1],[2,2,3,1],[1,1,1,1]],[[1,2,3,0],[0,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,3,2,0],[0,3,2,1],[2,2,3,1],[1,1,1,1]],[[2,2,2,0],[0,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,0],[0,4,2,1],[2,2,3,1],[1,0,2,1]],[[1,2,3,0],[0,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,3,2,0],[0,3,2,1],[2,2,3,1],[1,0,2,1]],[[2,2,2,0],[0,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,2,2,0],[0,4,2,1],[2,2,3,1],[0,2,1,1]],[[1,2,3,0],[0,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,3,2,0],[0,3,2,1],[2,2,3,1],[0,2,1,1]],[[2,2,2,0],[0,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[0,4,2,1],[2,2,3,1],[0,1,2,1]],[[1,2,3,0],[0,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,3,2,0],[0,3,2,1],[2,2,3,1],[0,1,2,1]],[[2,2,2,0],[0,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,2,2,0],[0,3,2,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,0],[0,3,2,1],[2,2,2,2],[2,2,1,0]],[[1,2,2,0],[0,3,2,1],[3,2,2,2],[1,2,1,0]],[[1,2,2,0],[0,3,2,1],[2,2,2,2],[1,3,0,1]],[[1,2,2,0],[0,3,2,1],[2,2,2,2],[2,2,0,1]],[[1,2,2,0],[0,3,2,1],[3,2,2,2],[1,2,0,1]],[[1,2,2,0],[0,3,2,1],[2,2,2,1],[1,3,1,1]],[[1,2,2,0],[0,3,2,1],[2,2,2,1],[2,2,1,1]],[[1,2,2,0],[0,3,2,1],[3,2,2,1],[1,2,1,1]],[[1,2,2,0],[0,3,2,1],[2,2,1,2],[1,2,3,0]],[[1,2,2,0],[0,3,2,1],[2,2,1,2],[1,3,2,0]],[[1,2,2,0],[0,3,2,1],[2,2,1,2],[2,2,2,0]],[[1,2,2,0],[0,3,2,1],[3,2,1,2],[1,2,2,0]],[[1,2,2,0],[0,3,2,1],[2,2,1,1],[1,2,2,2]],[[1,2,2,0],[0,3,2,1],[2,2,1,1],[1,2,3,1]],[[1,2,2,0],[0,3,2,1],[2,2,1,1],[1,3,2,1]],[[1,2,2,0],[0,3,2,1],[2,2,1,1],[2,2,2,1]],[[1,2,2,0],[0,3,2,1],[3,2,1,1],[1,2,2,1]],[[1,2,2,0],[0,3,2,1],[2,2,0,2],[1,2,2,2]],[[1,2,2,0],[0,3,2,1],[2,2,0,2],[1,2,3,1]],[[1,2,2,0],[0,3,2,1],[2,2,0,2],[1,3,2,1]],[[1,2,2,0],[0,3,2,1],[2,2,0,2],[2,2,2,1]],[[1,2,2,0],[0,3,2,1],[2,2,0,3],[1,2,2,1]],[[1,2,2,0],[0,3,2,1],[3,2,0,2],[1,2,2,1]],[[1,2,2,0],[0,4,2,1],[2,1,3,2],[0,2,2,0]],[[1,2,3,0],[0,3,2,1],[2,1,3,2],[0,2,2,0]],[[1,3,2,0],[0,3,2,1],[2,1,3,2],[0,2,2,0]],[[2,2,2,0],[0,3,2,1],[2,1,3,2],[0,2,2,0]],[[1,2,2,0],[0,4,2,1],[2,1,3,2],[0,2,1,1]],[[1,2,3,0],[0,3,2,1],[2,1,3,2],[0,2,1,1]],[[1,3,2,0],[0,3,2,1],[2,1,3,2],[0,2,1,1]],[[2,2,2,0],[0,3,2,1],[2,1,3,2],[0,2,1,1]],[[1,2,2,0],[0,4,2,1],[2,1,3,1],[0,2,2,1]],[[1,2,3,0],[0,3,2,1],[2,1,3,1],[0,2,2,1]],[[1,3,2,0],[0,3,2,1],[2,1,3,1],[0,2,2,1]],[[2,2,2,0],[0,3,2,1],[2,1,3,1],[0,2,2,1]],[[1,2,2,0],[0,4,2,1],[2,0,3,2],[1,2,2,0]],[[1,2,3,0],[0,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,3,2,0],[0,3,2,1],[2,0,3,2],[1,2,2,0]],[[2,2,2,0],[0,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[0,4,2,1],[2,0,3,2],[1,2,1,1]],[[1,2,3,0],[0,3,2,1],[2,0,3,2],[1,2,1,1]],[[1,3,2,0],[0,3,2,1],[2,0,3,2],[1,2,1,1]],[[2,2,2,0],[0,3,2,1],[2,0,3,2],[1,2,1,1]],[[1,2,2,0],[0,4,2,1],[2,0,3,1],[1,2,2,1]],[[1,2,3,0],[0,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,3,2,0],[0,3,2,1],[2,0,3,1],[1,2,2,1]],[[2,2,2,0],[0,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,0],[0,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,2,0],[0,4,2,1],[1,3,3,2],[1,2,0,0]],[[1,2,3,0],[0,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,3,2,0],[0,3,2,1],[1,3,3,2],[1,2,0,0]],[[2,2,2,0],[0,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,0,0,0],[2,0,2,2],[3,3,3,2],[1,2,2,1]],[[1,0,0,0],[2,0,2,2],[2,3,3,2],[2,2,2,1]],[[1,0,0,0],[2,0,2,2],[2,3,3,2],[1,3,2,1]],[[1,0,0,0],[2,0,2,2],[2,3,3,2],[1,2,3,1]],[[1,0,0,0],[2,0,2,2],[2,3,3,2],[1,2,2,2]],[[1,0,0,0],[2,0,3,1],[3,3,3,2],[1,2,2,1]],[[1,0,0,0],[2,0,3,1],[2,3,3,2],[2,2,2,1]],[[1,0,0,0],[2,0,3,1],[2,3,3,2],[1,3,2,1]],[[1,0,0,0],[2,0,3,1],[2,3,3,2],[1,2,3,1]],[[1,0,0,0],[2,0,3,1],[2,3,3,2],[1,2,2,2]],[[1,0,0,0],[2,0,3,2],[3,3,3,1],[1,2,2,1]],[[1,0,0,0],[2,0,3,2],[2,3,3,1],[2,2,2,1]],[[1,0,0,0],[2,0,3,2],[2,3,3,1],[1,3,2,1]],[[1,0,0,0],[2,0,3,2],[2,3,3,1],[1,2,3,1]],[[1,0,0,0],[2,0,3,2],[2,3,3,1],[1,2,2,2]],[[1,0,0,0],[2,0,3,2],[3,3,3,2],[1,2,2,0]],[[1,0,0,0],[2,0,3,2],[2,3,3,2],[2,2,2,0]],[[1,0,0,0],[2,0,3,2],[2,3,3,2],[1,3,2,0]],[[1,0,0,0],[2,0,3,2],[2,3,3,2],[1,2,3,0]],[[1,0,0,0],[2,1,3,0],[3,3,3,2],[1,2,2,1]],[[1,0,0,0],[2,1,3,0],[2,3,3,2],[2,2,2,1]],[[1,0,0,0],[2,1,3,0],[2,3,3,2],[1,3,2,1]],[[1,0,0,0],[2,1,3,0],[2,3,3,2],[1,2,3,1]],[[1,0,0,0],[2,1,3,0],[2,3,3,2],[1,2,2,2]],[[1,0,0,0],[2,1,3,1],[3,3,3,1],[1,2,2,1]],[[1,0,0,0],[2,1,3,1],[2,3,3,1],[2,2,2,1]],[[1,0,0,0],[2,1,3,1],[2,3,3,1],[1,3,2,1]],[[1,0,0,0],[2,1,3,1],[2,3,3,1],[1,2,3,1]],[[1,0,0,0],[2,1,3,1],[2,3,3,1],[1,2,2,2]],[[1,0,0,0],[2,1,3,1],[3,3,3,2],[1,2,2,0]],[[1,0,0,0],[2,1,3,1],[2,3,3,2],[2,2,2,0]],[[1,0,0,0],[2,1,3,1],[2,3,3,2],[1,3,2,0]],[[1,0,0,0],[2,1,3,1],[2,3,3,2],[1,2,3,0]],[[1,0,0,0],[2,2,0,2],[3,3,3,2],[1,2,2,1]],[[1,0,0,0],[2,2,0,2],[2,3,3,2],[2,2,2,1]],[[1,0,0,0],[2,2,0,2],[2,3,3,2],[1,3,2,1]],[[1,0,0,0],[2,2,0,2],[2,3,3,2],[1,2,3,1]],[[1,0,0,0],[2,2,0,2],[2,3,3,2],[1,2,2,2]],[[1,0,0,0],[2,2,2,0],[3,3,3,2],[1,2,2,1]],[[1,0,0,0],[2,2,2,0],[2,3,3,2],[2,2,2,1]],[[1,0,0,0],[2,2,2,0],[2,3,3,2],[1,3,2,1]],[[1,0,0,0],[2,2,2,0],[2,3,3,2],[1,2,3,1]],[[1,0,0,0],[2,2,2,0],[2,3,3,2],[1,2,2,2]],[[1,0,0,0],[2,2,2,1],[3,3,3,1],[1,2,2,1]],[[1,0,0,0],[2,2,2,1],[2,3,3,1],[2,2,2,1]],[[1,0,0,0],[2,2,2,1],[2,3,3,1],[1,3,2,1]],[[1,0,0,0],[2,2,2,1],[2,3,3,1],[1,2,3,1]],[[1,0,0,0],[2,2,2,1],[2,3,3,1],[1,2,2,2]],[[1,0,0,0],[2,2,2,1],[3,3,3,2],[1,2,2,0]],[[1,0,0,0],[2,2,2,1],[2,3,3,2],[2,2,2,0]],[[1,0,0,0],[2,2,2,1],[2,3,3,2],[1,3,2,0]],[[1,0,0,0],[2,2,2,1],[2,3,3,2],[1,2,3,0]],[[1,0,0,0],[2,2,3,0],[3,3,2,2],[1,2,2,1]],[[1,0,0,0],[2,2,3,0],[2,3,2,2],[2,2,2,1]],[[1,0,0,0],[2,2,3,0],[2,3,2,2],[1,3,2,1]],[[1,0,0,0],[2,2,3,0],[2,3,2,2],[1,2,3,1]],[[1,0,0,0],[2,2,3,0],[2,3,2,2],[1,2,2,2]],[[1,0,0,0],[2,2,3,0],[3,3,3,2],[1,2,1,1]],[[1,0,0,0],[2,2,3,0],[2,3,3,2],[2,2,1,1]],[[1,0,0,0],[2,2,3,0],[2,3,3,2],[1,3,1,1]],[[1,0,0,0],[2,2,3,1],[3,3,1,2],[1,2,2,1]],[[1,0,0,0],[2,2,3,1],[2,3,1,2],[2,2,2,1]],[[1,0,0,0],[2,2,3,1],[2,3,1,2],[1,3,2,1]],[[1,0,0,0],[2,2,3,1],[2,3,1,2],[1,2,3,1]],[[1,0,0,0],[2,2,3,1],[2,3,1,2],[1,2,2,2]],[[1,0,0,0],[2,2,3,1],[3,3,2,1],[1,2,2,1]],[[1,0,0,0],[2,2,3,1],[2,3,2,1],[2,2,2,1]],[[1,0,0,0],[2,2,3,1],[2,3,2,1],[1,3,2,1]],[[1,0,0,0],[2,2,3,1],[2,3,2,1],[1,2,3,1]],[[1,0,0,0],[2,2,3,1],[2,3,2,1],[1,2,2,2]],[[1,0,0,0],[2,2,3,1],[3,3,2,2],[1,2,2,0]],[[1,0,0,0],[2,2,3,1],[2,3,2,2],[2,2,2,0]],[[1,0,0,0],[2,2,3,1],[2,3,2,2],[1,3,2,0]],[[1,0,0,0],[2,2,3,1],[2,3,2,2],[1,2,3,0]],[[1,0,0,0],[2,2,3,1],[3,3,3,0],[1,2,2,1]],[[1,0,0,0],[2,2,3,1],[2,3,3,0],[2,2,2,1]],[[1,0,0,0],[2,2,3,1],[2,3,3,0],[1,3,2,1]],[[1,0,0,0],[2,2,3,1],[2,3,3,0],[1,2,3,1]],[[1,0,0,0],[2,2,3,1],[3,3,3,1],[1,2,1,1]],[[1,0,0,0],[2,2,3,1],[2,3,3,1],[2,2,1,1]],[[1,0,0,0],[2,2,3,1],[2,3,3,1],[1,3,1,1]],[[1,0,0,0],[2,2,3,1],[3,3,3,2],[1,2,0,1]],[[1,0,0,0],[2,2,3,1],[2,3,3,2],[2,2,0,1]],[[1,0,0,0],[2,2,3,1],[2,3,3,2],[1,3,0,1]],[[1,0,0,0],[2,2,3,1],[3,3,3,2],[1,2,1,0]],[[1,0,0,0],[2,2,3,1],[2,3,3,2],[2,2,1,0]],[[1,0,0,0],[2,2,3,1],[2,3,3,2],[1,3,1,0]],[[1,0,0,0],[2,2,3,2],[3,3,2,0],[1,2,2,1]],[[1,0,0,0],[2,2,3,2],[2,3,2,0],[2,2,2,1]],[[1,0,0,0],[2,2,3,2],[2,3,2,0],[1,3,2,1]],[[1,0,0,0],[2,2,3,2],[2,3,2,0],[1,2,3,1]],[[1,0,0,0],[2,2,3,2],[3,3,2,1],[1,2,2,0]],[[1,0,0,0],[2,2,3,2],[2,3,2,1],[2,2,2,0]],[[1,0,0,0],[2,2,3,2],[2,3,2,1],[1,3,2,0]],[[1,0,0,0],[2,2,3,2],[3,3,3,0],[1,2,1,1]],[[1,0,0,0],[2,2,3,2],[2,3,3,0],[2,2,1,1]],[[1,0,0,0],[2,2,3,2],[2,3,3,0],[1,3,1,1]],[[1,0,0,0],[2,2,3,2],[3,3,3,1],[1,2,1,0]],[[1,0,0,0],[2,2,3,2],[2,3,3,1],[2,2,1,0]],[[1,0,0,0],[2,2,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,3,2,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,0],[0,3,2,1],[1,3,2,2],[2,2,1,0]],[[1,2,2,0],[0,3,2,1],[1,4,2,2],[1,2,1,0]],[[1,2,2,0],[0,4,2,1],[1,3,2,2],[1,2,1,0]],[[1,2,3,0],[0,3,2,1],[1,3,2,2],[1,2,1,0]],[[1,3,2,0],[0,3,2,1],[1,3,2,2],[1,2,1,0]],[[1,0,0,0],[2,3,0,2],[1,4,3,2],[1,2,2,1]],[[1,0,0,0],[2,3,0,2],[1,3,3,2],[2,2,2,1]],[[1,0,0,0],[2,3,0,2],[1,3,3,2],[1,3,2,1]],[[1,0,0,0],[2,3,0,2],[1,3,3,2],[1,2,3,1]],[[1,0,0,0],[2,3,0,2],[1,3,3,2],[1,2,2,2]],[[1,0,0,0],[3,3,0,2],[2,2,3,2],[1,2,2,1]],[[1,0,0,0],[2,3,0,2],[3,2,3,2],[1,2,2,1]],[[1,0,0,0],[2,3,0,2],[2,2,3,2],[2,2,2,1]],[[1,0,0,0],[2,3,0,2],[2,2,3,2],[1,3,2,1]],[[1,0,0,0],[2,3,0,2],[2,2,3,2],[1,2,3,1]],[[1,0,0,0],[2,3,0,2],[2,2,3,2],[1,2,2,2]],[[1,0,0,0],[3,3,0,2],[2,3,3,2],[0,2,2,1]],[[1,0,0,0],[2,3,0,2],[3,3,3,2],[0,2,2,1]],[[1,0,0,0],[2,3,0,2],[2,4,3,2],[0,2,2,1]],[[1,0,0,0],[2,3,0,2],[2,3,3,2],[0,3,2,1]],[[1,0,0,0],[2,3,0,2],[2,3,3,2],[0,2,3,1]],[[1,0,0,0],[2,3,0,2],[2,3,3,2],[0,2,2,2]],[[1,0,0,0],[3,3,0,2],[2,3,3,2],[1,1,2,1]],[[1,0,0,0],[2,3,0,2],[3,3,3,2],[1,1,2,1]],[[1,0,0,0],[2,3,0,2],[2,4,3,2],[1,1,2,1]],[[1,0,0,0],[2,3,0,2],[2,3,3,2],[2,1,2,1]],[[1,0,0,0],[2,3,1,0],[3,3,3,2],[1,2,2,1]],[[1,0,0,0],[2,3,1,0],[2,3,3,2],[2,2,2,1]],[[1,0,0,0],[2,3,1,0],[2,3,3,2],[1,3,2,1]],[[1,0,0,0],[2,3,1,0],[2,3,3,2],[1,2,3,1]],[[1,0,0,0],[2,3,1,0],[2,3,3,2],[1,2,2,2]],[[1,0,0,0],[2,3,1,1],[3,3,3,1],[1,2,2,1]],[[1,0,0,0],[2,3,1,1],[2,3,3,1],[2,2,2,1]],[[1,0,0,0],[2,3,1,1],[2,3,3,1],[1,3,2,1]],[[1,0,0,0],[2,3,1,1],[2,3,3,1],[1,2,3,1]],[[1,0,0,0],[2,3,1,1],[3,3,3,2],[1,2,2,0]],[[1,0,0,0],[2,3,1,1],[2,3,3,2],[2,2,2,0]],[[1,0,0,0],[2,3,1,1],[2,3,3,2],[1,3,2,0]],[[2,2,2,0],[0,3,2,1],[1,3,2,2],[1,2,1,0]],[[1,2,2,0],[0,3,2,1],[1,3,2,2],[1,3,0,1]],[[1,2,2,0],[0,3,2,1],[1,3,2,2],[2,2,0,1]],[[1,2,2,0],[0,3,2,1],[1,4,2,2],[1,2,0,1]],[[1,2,2,0],[0,4,2,1],[1,3,2,2],[1,2,0,1]],[[1,2,3,0],[0,3,2,1],[1,3,2,2],[1,2,0,1]],[[1,3,2,0],[0,3,2,1],[1,3,2,2],[1,2,0,1]],[[1,0,0,0],[2,3,2,0],[1,4,3,2],[1,2,2,1]],[[1,0,0,0],[2,3,2,0],[1,3,3,2],[2,2,2,1]],[[1,0,0,0],[2,3,2,0],[1,3,3,2],[1,3,2,1]],[[1,0,0,0],[2,3,2,0],[1,3,3,2],[1,2,3,1]],[[1,0,0,0],[2,3,2,0],[1,3,3,2],[1,2,2,2]],[[1,0,0,0],[3,3,2,0],[2,2,3,2],[1,2,2,1]],[[1,0,0,0],[2,3,2,0],[3,2,3,2],[1,2,2,1]],[[1,0,0,0],[2,3,2,0],[2,2,3,2],[2,2,2,1]],[[1,0,0,0],[2,3,2,0],[2,2,3,2],[1,3,2,1]],[[1,0,0,0],[2,3,2,0],[2,2,3,2],[1,2,3,1]],[[1,0,0,0],[2,3,2,0],[2,2,3,2],[1,2,2,2]],[[1,0,0,0],[3,3,2,0],[2,3,3,2],[0,2,2,1]],[[1,0,0,0],[2,3,2,0],[3,3,3,2],[0,2,2,1]],[[1,0,0,0],[2,3,2,0],[2,4,3,2],[0,2,2,1]],[[1,0,0,0],[2,3,2,0],[2,3,3,2],[0,3,2,1]],[[1,0,0,0],[2,3,2,0],[2,3,3,2],[0,2,3,1]],[[1,0,0,0],[2,3,2,0],[2,3,3,2],[0,2,2,2]],[[1,0,0,0],[3,3,2,0],[2,3,3,2],[1,1,2,1]],[[1,0,0,0],[2,3,2,0],[3,3,3,2],[1,1,2,1]],[[1,0,0,0],[2,3,2,0],[2,4,3,2],[1,1,2,1]],[[1,0,0,0],[2,3,2,0],[2,3,3,2],[2,1,2,1]],[[1,0,0,0],[2,3,2,1],[1,4,3,1],[1,2,2,1]],[[1,0,0,0],[2,3,2,1],[1,3,3,1],[2,2,2,1]],[[1,0,0,0],[2,3,2,1],[1,3,3,1],[1,3,2,1]],[[1,0,0,0],[2,3,2,1],[1,3,3,1],[1,2,3,1]],[[1,0,0,0],[2,3,2,1],[1,3,3,1],[1,2,2,2]],[[1,0,0,0],[2,3,2,1],[1,4,3,2],[1,2,2,0]],[[1,0,0,0],[2,3,2,1],[1,3,3,2],[2,2,2,0]],[[1,0,0,0],[2,3,2,1],[1,3,3,2],[1,3,2,0]],[[1,0,0,0],[2,3,2,1],[1,3,3,2],[1,2,3,0]],[[1,0,0,0],[3,3,2,1],[2,2,3,1],[1,2,2,1]],[[1,0,0,0],[2,3,2,1],[3,2,3,1],[1,2,2,1]],[[1,0,0,0],[2,3,2,1],[2,2,3,1],[2,2,2,1]],[[1,0,0,0],[2,3,2,1],[2,2,3,1],[1,3,2,1]],[[1,0,0,0],[2,3,2,1],[2,2,3,1],[1,2,3,1]],[[1,0,0,0],[2,3,2,1],[2,2,3,1],[1,2,2,2]],[[1,0,0,0],[3,3,2,1],[2,2,3,2],[1,2,2,0]],[[1,0,0,0],[2,3,2,1],[3,2,3,2],[1,2,2,0]],[[1,0,0,0],[2,3,2,1],[2,2,3,2],[2,2,2,0]],[[1,0,0,0],[2,3,2,1],[2,2,3,2],[1,3,2,0]],[[1,0,0,0],[2,3,2,1],[2,2,3,2],[1,2,3,0]],[[1,0,0,0],[3,3,2,1],[2,3,3,1],[0,2,2,1]],[[1,0,0,0],[2,3,2,1],[3,3,3,1],[0,2,2,1]],[[1,0,0,0],[2,3,2,1],[2,4,3,1],[0,2,2,1]],[[1,0,0,0],[2,3,2,1],[2,3,3,1],[0,3,2,1]],[[1,0,0,0],[2,3,2,1],[2,3,3,1],[0,2,3,1]],[[1,0,0,0],[2,3,2,1],[2,3,3,1],[0,2,2,2]],[[1,0,0,0],[3,3,2,1],[2,3,3,1],[1,1,2,1]],[[1,0,0,0],[2,3,2,1],[3,3,3,1],[1,1,2,1]],[[1,0,0,0],[2,3,2,1],[2,4,3,1],[1,1,2,1]],[[1,0,0,0],[2,3,2,1],[2,3,3,1],[2,1,2,1]],[[1,0,0,0],[3,3,2,1],[2,3,3,2],[0,2,2,0]],[[1,0,0,0],[2,3,2,1],[3,3,3,2],[0,2,2,0]],[[1,0,0,0],[2,3,2,1],[2,4,3,2],[0,2,2,0]],[[1,0,0,0],[2,3,2,1],[2,3,3,2],[0,3,2,0]],[[1,0,0,0],[2,3,2,1],[2,3,3,2],[0,2,3,0]],[[1,0,0,0],[3,3,2,1],[2,3,3,2],[1,1,2,0]],[[1,0,0,0],[2,3,2,1],[3,3,3,2],[1,1,2,0]],[[1,0,0,0],[2,3,2,1],[2,4,3,2],[1,1,2,0]],[[1,0,0,0],[2,3,2,1],[2,3,3,2],[2,1,2,0]],[[2,2,2,0],[0,3,2,1],[1,3,2,2],[1,2,0,1]],[[1,2,2,0],[0,3,2,1],[1,4,2,2],[1,1,2,0]],[[1,2,2,0],[0,4,2,1],[1,3,2,2],[1,1,2,0]],[[1,2,3,0],[0,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,3,2,0],[0,3,2,1],[1,3,2,2],[1,1,2,0]],[[2,2,2,0],[0,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,0],[0,3,2,1],[1,4,2,2],[1,1,1,1]],[[1,2,2,0],[0,4,2,1],[1,3,2,2],[1,1,1,1]],[[1,2,3,0],[0,3,2,1],[1,3,2,2],[1,1,1,1]],[[1,3,2,0],[0,3,2,1],[1,3,2,2],[1,1,1,1]],[[2,2,2,0],[0,3,2,1],[1,3,2,2],[1,1,1,1]],[[1,2,2,0],[0,3,2,1],[1,3,2,1],[1,3,1,1]],[[1,2,2,0],[0,3,2,1],[1,3,2,1],[2,2,1,1]],[[1,2,2,0],[0,3,2,1],[1,4,2,1],[1,2,1,1]],[[1,2,2,0],[0,4,2,1],[1,3,2,1],[1,2,1,1]],[[1,2,3,0],[0,3,2,1],[1,3,2,1],[1,2,1,1]],[[1,3,2,0],[0,3,2,1],[1,3,2,1],[1,2,1,1]],[[2,2,2,0],[0,3,2,1],[1,3,2,1],[1,2,1,1]],[[1,2,2,0],[0,3,2,1],[1,4,2,1],[1,1,2,1]],[[1,2,2,0],[0,4,2,1],[1,3,2,1],[1,1,2,1]],[[1,2,3,0],[0,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,3,2,0],[0,3,2,1],[1,3,2,1],[1,1,2,1]],[[2,2,2,0],[0,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,0,0,0],[2,3,3,0],[1,2,4,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,0],[1,2,3,2],[2,2,2,1]],[[1,0,0,0],[2,3,3,0],[1,2,3,2],[1,3,2,1]],[[1,0,0,0],[2,3,3,0],[1,2,3,2],[1,2,3,1]],[[1,0,0,0],[2,3,3,0],[1,2,3,2],[1,2,2,2]],[[1,0,0,0],[2,3,3,0],[1,4,2,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,0],[1,3,2,2],[2,2,2,1]],[[1,0,0,0],[2,3,3,0],[1,3,2,2],[1,3,2,1]],[[1,0,0,0],[2,3,3,0],[1,3,2,2],[1,2,3,1]],[[1,0,0,0],[2,3,3,0],[1,3,2,2],[1,2,2,2]],[[1,0,0,0],[2,3,3,0],[1,4,3,2],[1,1,2,1]],[[1,0,0,0],[2,3,3,0],[1,3,4,2],[1,1,2,1]],[[1,0,0,0],[2,3,3,0],[1,3,3,2],[1,1,3,1]],[[1,0,0,0],[2,3,3,0],[1,3,3,2],[1,1,2,2]],[[1,0,0,0],[2,3,3,0],[1,4,3,2],[1,2,1,1]],[[1,0,0,0],[2,3,3,0],[1,3,4,2],[1,2,1,1]],[[1,0,0,0],[2,3,3,0],[1,3,3,2],[2,2,1,1]],[[1,0,0,0],[2,3,3,0],[1,3,3,2],[1,3,1,1]],[[1,0,0,0],[3,3,3,0],[2,1,3,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,0],[3,1,3,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,0],[2,1,4,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,0],[2,1,3,2],[2,2,2,1]],[[1,0,0,0],[2,3,3,0],[2,1,3,2],[1,3,2,1]],[[1,0,0,0],[2,3,3,0],[2,1,3,2],[1,2,3,1]],[[1,0,0,0],[2,3,3,0],[2,1,3,2],[1,2,2,2]],[[1,0,0,0],[3,3,3,0],[2,2,2,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,0],[3,2,2,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,0],[2,2,2,2],[2,2,2,1]],[[1,0,0,0],[2,3,3,0],[2,2,2,2],[1,3,2,1]],[[1,0,0,0],[2,3,3,0],[2,2,2,2],[1,2,3,1]],[[1,0,0,0],[2,3,3,0],[2,2,2,2],[1,2,2,2]],[[1,0,0,0],[2,3,3,0],[2,2,4,2],[0,2,2,1]],[[1,0,0,0],[2,3,3,0],[2,2,3,2],[0,3,2,1]],[[1,0,0,0],[2,3,3,0],[2,2,3,2],[0,2,3,1]],[[1,0,0,0],[2,3,3,0],[2,2,3,2],[0,2,2,2]],[[1,0,0,0],[3,3,3,0],[2,2,3,2],[1,2,1,1]],[[1,0,0,0],[2,3,3,0],[3,2,3,2],[1,2,1,1]],[[1,0,0,0],[2,3,3,0],[2,2,3,2],[2,2,1,1]],[[1,0,0,0],[2,3,3,0],[2,2,3,2],[1,3,1,1]],[[1,0,0,0],[3,3,3,0],[2,3,1,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,0],[3,3,1,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,0],[2,3,1,2],[2,2,2,1]],[[1,0,0,0],[2,3,3,0],[2,3,1,2],[1,3,2,1]],[[1,0,0,0],[3,3,3,0],[2,3,2,2],[0,2,2,1]],[[1,0,0,0],[2,3,3,0],[3,3,2,2],[0,2,2,1]],[[1,0,0,0],[2,3,3,0],[2,4,2,2],[0,2,2,1]],[[1,0,0,0],[2,3,3,0],[2,3,2,2],[0,3,2,1]],[[1,0,0,0],[2,3,3,0],[2,3,2,2],[0,2,3,1]],[[1,0,0,0],[2,3,3,0],[2,3,2,2],[0,2,2,2]],[[1,0,0,0],[3,3,3,0],[2,3,2,2],[1,1,2,1]],[[1,0,0,0],[2,3,3,0],[3,3,2,2],[1,1,2,1]],[[1,0,0,0],[2,3,3,0],[2,4,2,2],[1,1,2,1]],[[1,0,0,0],[2,3,3,0],[2,3,2,2],[2,1,2,1]],[[1,0,0,0],[3,3,3,0],[2,3,3,2],[0,1,2,1]],[[1,0,0,0],[2,3,3,0],[3,3,3,2],[0,1,2,1]],[[1,0,0,0],[2,3,3,0],[2,4,3,2],[0,1,2,1]],[[1,0,0,0],[2,3,3,0],[2,3,4,2],[0,1,2,1]],[[1,0,0,0],[2,3,3,0],[2,3,3,2],[0,1,3,1]],[[1,0,0,0],[2,3,3,0],[2,3,3,2],[0,1,2,2]],[[1,0,0,0],[3,3,3,0],[2,3,3,2],[0,2,1,1]],[[1,0,0,0],[2,3,3,0],[3,3,3,2],[0,2,1,1]],[[1,0,0,0],[2,3,3,0],[2,4,3,2],[0,2,1,1]],[[1,0,0,0],[2,3,3,0],[2,3,4,2],[0,2,1,1]],[[1,0,0,0],[2,3,3,0],[2,3,3,2],[0,3,1,1]],[[1,0,0,0],[3,3,3,0],[2,3,3,2],[1,0,2,1]],[[1,0,0,0],[2,3,3,0],[3,3,3,2],[1,0,2,1]],[[1,0,0,0],[2,3,3,0],[2,4,3,2],[1,0,2,1]],[[1,0,0,0],[2,3,3,0],[2,3,4,2],[1,0,2,1]],[[1,0,0,0],[2,3,3,0],[2,3,3,2],[2,0,2,1]],[[1,0,0,0],[2,3,3,0],[2,3,3,2],[1,0,3,1]],[[1,0,0,0],[2,3,3,0],[2,3,3,2],[1,0,2,2]],[[1,0,0,0],[3,3,3,0],[2,3,3,2],[1,1,1,1]],[[1,0,0,0],[2,3,3,0],[3,3,3,2],[1,1,1,1]],[[1,0,0,0],[2,3,3,0],[2,4,3,2],[1,1,1,1]],[[1,0,0,0],[2,3,3,0],[2,3,4,2],[1,1,1,1]],[[1,0,0,0],[2,3,3,0],[2,3,3,2],[2,1,1,1]],[[1,0,0,0],[3,3,3,0],[2,3,3,2],[1,2,0,1]],[[1,0,0,0],[2,3,3,0],[3,3,3,2],[1,2,0,1]],[[1,0,0,0],[2,3,3,0],[2,4,3,2],[1,2,0,1]],[[1,0,0,0],[2,3,3,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,0],[0,3,2,1],[1,3,1,2],[1,2,3,0]],[[1,2,2,0],[0,3,2,1],[1,3,1,2],[1,3,2,0]],[[1,2,2,0],[0,3,2,1],[1,3,1,2],[2,2,2,0]],[[1,2,2,0],[0,3,2,1],[1,4,1,2],[1,2,2,0]],[[1,2,2,0],[0,4,2,1],[1,3,1,2],[1,2,2,0]],[[1,2,3,0],[0,3,2,1],[1,3,1,2],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[1,2,2,3],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[1,2,2,2],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[1,2,2,2],[1,3,2,1]],[[1,0,0,0],[2,3,3,1],[1,2,2,2],[1,2,3,1]],[[1,0,0,0],[2,3,3,1],[1,2,2,2],[1,2,2,2]],[[1,0,0,0],[2,3,3,1],[1,2,4,1],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[1,2,3,1],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[1,2,3,1],[1,3,2,1]],[[1,0,0,0],[2,3,3,1],[1,2,3,1],[1,2,3,1]],[[1,0,0,0],[2,3,3,1],[1,2,3,1],[1,2,2,2]],[[1,0,0,0],[2,3,3,1],[1,2,4,2],[1,2,1,1]],[[1,0,0,0],[2,3,3,1],[1,2,3,3],[1,2,1,1]],[[1,0,0,0],[2,3,3,1],[1,2,3,2],[1,2,1,2]],[[1,0,0,0],[2,3,3,1],[1,2,4,2],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[1,2,3,3],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[1,2,3,2],[2,2,2,0]],[[1,0,0,0],[2,3,3,1],[1,2,3,2],[1,3,2,0]],[[1,0,0,0],[2,3,3,1],[1,2,3,2],[1,2,3,0]],[[1,0,0,0],[2,3,3,1],[1,4,1,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,1,3],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,1,2],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,1,2],[1,3,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,1,2],[1,2,3,1]],[[1,0,0,0],[2,3,3,1],[1,3,1,2],[1,2,2,2]],[[1,0,0,0],[2,3,3,1],[1,4,2,1],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,2,1],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,2,1],[1,3,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,2,1],[1,2,3,1]],[[1,0,0,0],[2,3,3,1],[1,3,2,1],[1,2,2,2]],[[1,0,0,0],[2,3,3,1],[1,3,2,3],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,2,2],[1,1,3,1]],[[1,0,0,0],[2,3,3,1],[1,3,2,2],[1,1,2,2]],[[1,0,0,0],[2,3,3,1],[1,4,2,2],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[1,3,2,2],[2,2,2,0]],[[1,0,0,0],[2,3,3,1],[1,3,2,2],[1,3,2,0]],[[1,0,0,0],[2,3,3,1],[1,3,2,2],[1,2,3,0]],[[1,0,0,0],[2,3,3,1],[1,4,3,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,0],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,0],[1,3,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,0],[1,2,3,1]],[[1,0,0,0],[2,3,3,1],[1,4,3,1],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,4,1],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,1],[1,1,3,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,1],[1,1,2,2]],[[1,0,0,0],[2,3,3,1],[1,4,3,1],[1,2,1,1]],[[1,0,0,0],[2,3,3,1],[1,3,4,1],[1,2,1,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,1],[2,2,1,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,1],[1,3,1,1]],[[1,0,0,0],[2,3,3,1],[1,4,3,2],[1,1,1,1]],[[1,0,0,0],[2,3,3,1],[1,3,4,2],[1,1,1,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,3],[1,1,1,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,2],[1,1,1,2]],[[1,0,0,0],[2,3,3,1],[1,4,3,2],[1,1,2,0]],[[1,0,0,0],[2,3,3,1],[1,3,4,2],[1,1,2,0]],[[1,0,0,0],[2,3,3,1],[1,3,3,3],[1,1,2,0]],[[1,0,0,0],[2,3,3,1],[1,3,3,2],[1,1,3,0]],[[1,0,0,0],[2,3,3,1],[1,4,3,2],[1,2,0,1]],[[1,0,0,0],[2,3,3,1],[1,3,4,2],[1,2,0,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,3],[1,2,0,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,2],[2,2,0,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,2],[1,3,0,1]],[[1,0,0,0],[2,3,3,1],[1,3,3,2],[1,2,0,2]],[[1,0,0,0],[2,3,3,1],[1,4,3,2],[1,2,1,0]],[[1,0,0,0],[2,3,3,1],[1,3,4,2],[1,2,1,0]],[[1,0,0,0],[2,3,3,1],[1,3,3,3],[1,2,1,0]],[[1,0,0,0],[2,3,3,1],[1,3,3,2],[2,2,1,0]],[[1,0,0,0],[2,3,3,1],[1,3,3,2],[1,3,1,0]],[[1,3,2,0],[0,3,2,1],[1,3,1,2],[1,2,2,0]],[[2,2,2,0],[0,3,2,1],[1,3,1,2],[1,2,2,0]],[[1,2,2,0],[0,3,2,1],[1,3,1,1],[1,2,2,2]],[[1,2,2,0],[0,3,2,1],[1,3,1,1],[1,2,3,1]],[[1,2,2,0],[0,3,2,1],[1,3,1,1],[1,3,2,1]],[[1,2,2,0],[0,3,2,1],[1,3,1,1],[2,2,2,1]],[[1,2,2,0],[0,3,2,1],[1,4,1,1],[1,2,2,1]],[[1,0,0,0],[3,3,3,1],[2,1,2,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[3,1,2,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,1,2,3],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,1,2,2],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,1,2,2],[1,3,2,1]],[[1,0,0,0],[2,3,3,1],[2,1,2,2],[1,2,3,1]],[[1,0,0,0],[2,3,3,1],[2,1,2,2],[1,2,2,2]],[[1,0,0,0],[3,3,3,1],[2,1,3,1],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[3,1,3,1],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,1,4,1],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,1,3,1],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,1,3,1],[1,3,2,1]],[[1,0,0,0],[2,3,3,1],[2,1,3,1],[1,2,3,1]],[[1,0,0,0],[2,3,3,1],[2,1,3,1],[1,2,2,2]],[[1,0,0,0],[2,3,3,1],[2,1,4,2],[1,2,1,1]],[[1,0,0,0],[2,3,3,1],[2,1,3,3],[1,2,1,1]],[[1,0,0,0],[2,3,3,1],[2,1,3,2],[1,2,1,2]],[[1,0,0,0],[3,3,3,1],[2,1,3,2],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[3,1,3,2],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,1,4,2],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,1,3,3],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,1,3,2],[2,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,1,3,2],[1,3,2,0]],[[1,0,0,0],[2,3,3,1],[2,1,3,2],[1,2,3,0]],[[1,0,0,0],[3,3,3,1],[2,2,1,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[3,2,1,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,1,3],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,1,2],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,1,2],[1,3,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,1,2],[1,2,3,1]],[[1,0,0,0],[2,3,3,1],[2,2,1,2],[1,2,2,2]],[[1,0,0,0],[3,3,3,1],[2,2,2,1],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[3,2,2,1],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,2,1],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,2,1],[1,3,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,2,1],[1,2,3,1]],[[1,0,0,0],[2,3,3,1],[2,2,2,1],[1,2,2,2]],[[1,0,0,0],[2,3,3,1],[2,2,2,3],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,2,2],[0,3,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,2,2],[0,2,3,1]],[[1,0,0,0],[2,3,3,1],[2,2,2,2],[0,2,2,2]],[[1,0,0,0],[3,3,3,1],[2,2,2,2],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[3,2,2,2],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,2,2,2],[2,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,2,2,2],[1,3,2,0]],[[1,0,0,0],[2,3,3,1],[2,2,2,2],[1,2,3,0]],[[1,0,0,0],[3,3,3,1],[2,2,3,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[3,2,3,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,0],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,0],[1,3,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,0],[1,2,3,1]],[[1,0,0,0],[2,3,3,1],[2,2,4,1],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,1],[0,3,2,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,1],[0,2,3,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,1],[0,2,2,2]],[[1,0,0,0],[3,3,3,1],[2,2,3,1],[1,2,1,1]],[[1,0,0,0],[2,3,3,1],[3,2,3,1],[1,2,1,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,1],[2,2,1,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,1],[1,3,1,1]],[[1,0,0,0],[2,3,3,1],[2,2,4,2],[0,2,1,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,3],[0,2,1,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,2],[0,2,1,2]],[[1,0,0,0],[2,3,3,1],[2,2,4,2],[0,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,2,3,3],[0,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,2,3,2],[0,3,2,0]],[[1,0,0,0],[2,3,3,1],[2,2,3,2],[0,2,3,0]],[[1,0,0,0],[3,3,3,1],[2,2,3,2],[1,2,0,1]],[[1,0,0,0],[2,3,3,1],[3,2,3,2],[1,2,0,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,2],[2,2,0,1]],[[1,0,0,0],[2,3,3,1],[2,2,3,2],[1,3,0,1]],[[1,0,0,0],[3,3,3,1],[2,2,3,2],[1,2,1,0]],[[1,0,0,0],[2,3,3,1],[3,2,3,2],[1,2,1,0]],[[1,0,0,0],[2,3,3,1],[2,2,3,2],[2,2,1,0]],[[1,0,0,0],[2,3,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,4,2,1],[1,3,1,1],[1,2,2,1]],[[1,2,3,0],[0,3,2,1],[1,3,1,1],[1,2,2,1]],[[1,3,2,0],[0,3,2,1],[1,3,1,1],[1,2,2,1]],[[2,2,2,0],[0,3,2,1],[1,3,1,1],[1,2,2,1]],[[1,2,2,0],[0,3,2,1],[1,3,0,2],[1,2,2,2]],[[1,2,2,0],[0,3,2,1],[1,3,0,2],[1,2,3,1]],[[1,2,2,0],[0,3,2,1],[1,3,0,2],[1,3,2,1]],[[1,2,2,0],[0,3,2,1],[1,3,0,2],[2,2,2,1]],[[1,0,0,0],[3,3,3,1],[2,3,0,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[3,3,0,2],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,0,2],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,0,2],[1,3,2,1]],[[1,0,0,0],[3,3,3,1],[2,3,1,1],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[3,3,1,1],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,1,1],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,1,1],[1,3,2,1]],[[1,0,0,0],[3,3,3,1],[2,3,1,2],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[3,3,1,2],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,4,1,2],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,1,3],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,1,2],[0,3,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,1,2],[0,2,3,1]],[[1,0,0,0],[2,3,3,1],[2,3,1,2],[0,2,2,2]],[[1,0,0,0],[3,3,3,1],[2,3,1,2],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[3,3,1,2],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[2,4,1,2],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,1,2],[2,1,2,1]],[[1,0,0,0],[3,3,3,1],[2,3,1,2],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[3,3,1,2],[1,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,1,2],[2,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,1,2],[1,3,2,0]],[[1,0,0,0],[3,3,3,1],[2,3,2,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[3,3,2,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,2,0],[2,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,2,0],[1,3,2,1]],[[1,0,0,0],[3,3,3,1],[2,3,2,1],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[3,3,2,1],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,4,2,1],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,2,1],[0,3,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,2,1],[0,2,3,1]],[[1,0,0,0],[2,3,3,1],[2,3,2,1],[0,2,2,2]],[[1,0,0,0],[3,3,3,1],[2,3,2,1],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[3,3,2,1],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[2,4,2,1],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,2,1],[2,1,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,2,3],[0,1,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,2,2],[0,1,3,1]],[[1,0,0,0],[2,3,3,1],[2,3,2,2],[0,1,2,2]],[[1,0,0,0],[3,3,3,1],[2,3,2,2],[0,2,2,0]],[[1,0,0,0],[2,3,3,1],[3,3,2,2],[0,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,4,2,2],[0,2,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,2,2],[0,3,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,2,2],[0,2,3,0]],[[1,0,0,0],[2,3,3,1],[2,3,2,3],[1,0,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,2,2],[1,0,3,1]],[[1,0,0,0],[2,3,3,1],[2,3,2,2],[1,0,2,2]],[[1,0,0,0],[3,3,3,1],[2,3,2,2],[1,1,2,0]],[[1,0,0,0],[2,3,3,1],[3,3,2,2],[1,1,2,0]],[[1,0,0,0],[2,3,3,1],[2,4,2,2],[1,1,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,3,2,1],[1,3,0,3],[1,2,2,1]],[[1,2,2,0],[0,3,2,1],[1,4,0,2],[1,2,2,1]],[[1,2,2,0],[0,4,2,1],[1,3,0,2],[1,2,2,1]],[[1,2,3,0],[0,3,2,1],[1,3,0,2],[1,2,2,1]],[[1,3,2,0],[0,3,2,1],[1,3,0,2],[1,2,2,1]],[[2,2,2,0],[0,3,2,1],[1,3,0,2],[1,2,2,1]],[[1,0,0,0],[3,3,3,1],[2,3,3,0],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[3,3,3,0],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,4,3,0],[0,2,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,0],[0,3,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,0],[0,2,3,1]],[[1,0,0,0],[3,3,3,1],[2,3,3,0],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[3,3,3,0],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[2,4,3,0],[1,1,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,0],[2,1,2,1]],[[1,0,0,0],[3,3,3,1],[2,3,3,1],[0,1,2,1]],[[1,0,0,0],[2,3,3,1],[3,3,3,1],[0,1,2,1]],[[1,0,0,0],[2,3,3,1],[2,4,3,1],[0,1,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,4,1],[0,1,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,1],[0,1,3,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,1],[0,1,2,2]],[[1,0,0,0],[3,3,3,1],[2,3,3,1],[0,2,1,1]],[[1,0,0,0],[2,3,3,1],[3,3,3,1],[0,2,1,1]],[[1,0,0,0],[2,3,3,1],[2,4,3,1],[0,2,1,1]],[[1,0,0,0],[2,3,3,1],[2,3,4,1],[0,2,1,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,1],[0,3,1,1]],[[1,0,0,0],[3,3,3,1],[2,3,3,1],[1,0,2,1]],[[1,0,0,0],[2,3,3,1],[3,3,3,1],[1,0,2,1]],[[1,0,0,0],[2,3,3,1],[2,4,3,1],[1,0,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,4,1],[1,0,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,1],[2,0,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,1],[1,0,3,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,1],[1,0,2,2]],[[1,0,0,0],[3,3,3,1],[2,3,3,1],[1,1,1,1]],[[1,0,0,0],[2,3,3,1],[3,3,3,1],[1,1,1,1]],[[1,0,0,0],[2,3,3,1],[2,4,3,1],[1,1,1,1]],[[1,0,0,0],[2,3,3,1],[2,3,4,1],[1,1,1,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,1],[2,1,1,1]],[[1,0,0,0],[3,3,3,1],[2,3,3,1],[1,2,0,1]],[[1,0,0,0],[2,3,3,1],[3,3,3,1],[1,2,0,1]],[[1,0,0,0],[2,3,3,1],[2,4,3,1],[1,2,0,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,1],[2,2,0,1]],[[1,0,0,0],[2,3,3,1],[2,3,4,2],[0,0,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,3],[0,0,2,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[0,0,2,2]],[[1,0,0,0],[3,3,3,1],[2,3,3,2],[0,1,1,1]],[[1,0,0,0],[2,3,3,1],[3,3,3,2],[0,1,1,1]],[[1,0,0,0],[2,3,3,1],[2,4,3,2],[0,1,1,1]],[[1,0,0,0],[2,3,3,1],[2,3,4,2],[0,1,1,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,3],[0,1,1,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[0,1,1,2]],[[1,0,0,0],[3,3,3,1],[2,3,3,2],[0,1,2,0]],[[1,0,0,0],[2,3,3,1],[3,3,3,2],[0,1,2,0]],[[1,0,0,0],[2,3,3,1],[2,4,3,2],[0,1,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,4,2],[0,1,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,3,3],[0,1,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[0,1,3,0]],[[1,0,0,0],[3,3,3,1],[2,3,3,2],[0,2,0,1]],[[1,0,0,0],[2,3,3,1],[3,3,3,2],[0,2,0,1]],[[1,0,0,0],[2,3,3,1],[2,4,3,2],[0,2,0,1]],[[1,0,0,0],[2,3,3,1],[2,3,4,2],[0,2,0,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,3],[0,2,0,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[0,3,0,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[0,2,0,2]],[[1,0,0,0],[3,3,3,1],[2,3,3,2],[0,2,1,0]],[[1,0,0,0],[2,3,3,1],[3,3,3,2],[0,2,1,0]],[[1,0,0,0],[2,3,3,1],[2,4,3,2],[0,2,1,0]],[[1,0,0,0],[2,3,3,1],[2,3,4,2],[0,2,1,0]],[[1,0,0,0],[2,3,3,1],[2,3,3,3],[0,2,1,0]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,4,2,1],[1,2,3,2],[1,2,1,0]],[[1,2,3,0],[0,3,2,1],[1,2,3,2],[1,2,1,0]],[[1,0,0,0],[3,3,3,1],[2,3,3,2],[1,0,1,1]],[[1,0,0,0],[2,3,3,1],[3,3,3,2],[1,0,1,1]],[[1,0,0,0],[2,3,3,1],[2,4,3,2],[1,0,1,1]],[[1,0,0,0],[2,3,3,1],[2,3,4,2],[1,0,1,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,3],[1,0,1,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[2,0,1,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[1,0,1,2]],[[1,0,0,0],[3,3,3,1],[2,3,3,2],[1,0,2,0]],[[1,0,0,0],[2,3,3,1],[3,3,3,2],[1,0,2,0]],[[1,0,0,0],[2,3,3,1],[2,4,3,2],[1,0,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,4,2],[1,0,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,3,3],[1,0,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[2,0,2,0]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[1,0,3,0]],[[1,0,0,0],[3,3,3,1],[2,3,3,2],[1,1,0,1]],[[1,0,0,0],[2,3,3,1],[3,3,3,2],[1,1,0,1]],[[1,0,0,0],[2,3,3,1],[2,4,3,2],[1,1,0,1]],[[1,0,0,0],[2,3,3,1],[2,3,4,2],[1,1,0,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,3],[1,1,0,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[2,1,0,1]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[1,1,0,2]],[[1,0,0,0],[3,3,3,1],[2,3,3,2],[1,1,1,0]],[[1,0,0,0],[2,3,3,1],[3,3,3,2],[1,1,1,0]],[[1,0,0,0],[2,3,3,1],[2,4,3,2],[1,1,1,0]],[[1,0,0,0],[2,3,3,1],[2,3,4,2],[1,1,1,0]],[[1,0,0,0],[2,3,3,1],[2,3,3,3],[1,1,1,0]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[2,1,1,0]],[[1,3,2,0],[0,3,2,1],[1,2,3,2],[1,2,1,0]],[[2,2,2,0],[0,3,2,1],[1,2,3,2],[1,2,1,0]],[[1,2,2,0],[0,4,2,1],[1,2,3,2],[1,2,0,1]],[[1,2,3,0],[0,3,2,1],[1,2,3,2],[1,2,0,1]],[[1,3,2,0],[0,3,2,1],[1,2,3,2],[1,2,0,1]],[[2,2,2,0],[0,3,2,1],[1,2,3,2],[1,2,0,1]],[[1,0,0,0],[3,3,3,1],[2,3,3,2],[1,2,0,0]],[[1,0,0,0],[2,3,3,1],[3,3,3,2],[1,2,0,0]],[[1,0,0,0],[2,3,3,1],[2,4,3,2],[1,2,0,0]],[[1,0,0,0],[2,3,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,4,2,1],[1,2,3,2],[1,1,2,0]],[[1,2,3,0],[0,3,2,1],[1,2,3,2],[1,1,2,0]],[[1,3,2,0],[0,3,2,1],[1,2,3,2],[1,1,2,0]],[[2,2,2,0],[0,3,2,1],[1,2,3,2],[1,1,2,0]],[[1,2,2,0],[0,4,2,1],[1,2,3,2],[1,1,1,1]],[[1,2,3,0],[0,3,2,1],[1,2,3,2],[1,1,1,1]],[[1,3,2,0],[0,3,2,1],[1,2,3,2],[1,1,1,1]],[[2,2,2,0],[0,3,2,1],[1,2,3,2],[1,1,1,1]],[[1,2,2,0],[0,4,2,1],[1,2,3,1],[1,2,1,1]],[[1,2,3,0],[0,3,2,1],[1,2,3,1],[1,2,1,1]],[[1,3,2,0],[0,3,2,1],[1,2,3,1],[1,2,1,1]],[[2,2,2,0],[0,3,2,1],[1,2,3,1],[1,2,1,1]],[[1,2,2,0],[0,4,2,1],[1,2,3,1],[1,1,2,1]],[[1,2,3,0],[0,3,2,1],[1,2,3,1],[1,1,2,1]],[[1,0,0,0],[2,3,3,2],[1,2,4,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,2],[1,2,3,0],[2,2,2,1]],[[1,0,0,0],[2,3,3,2],[1,2,3,0],[1,3,2,1]],[[1,0,0,0],[2,3,3,2],[1,2,3,0],[1,2,3,1]],[[1,0,0,0],[2,3,3,2],[1,2,3,0],[1,2,2,2]],[[1,0,0,0],[2,3,3,2],[1,2,4,1],[1,2,2,0]],[[1,0,0,0],[2,3,3,2],[1,2,3,1],[2,2,2,0]],[[1,0,0,0],[2,3,3,2],[1,2,3,1],[1,3,2,0]],[[1,0,0,0],[2,3,3,2],[1,2,3,1],[1,2,3,0]],[[1,3,2,0],[0,3,2,1],[1,2,3,1],[1,1,2,1]],[[2,2,2,0],[0,3,2,1],[1,2,3,1],[1,1,2,1]],[[1,0,0,0],[2,3,3,2],[1,4,2,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,2],[1,3,2,0],[2,2,2,1]],[[1,0,0,0],[2,3,3,2],[1,3,2,0],[1,3,2,1]],[[1,0,0,0],[2,3,3,2],[1,3,2,0],[1,2,3,1]],[[1,0,0,0],[2,3,3,2],[1,3,2,0],[1,2,2,2]],[[1,0,0,0],[2,3,3,2],[1,4,2,1],[1,2,2,0]],[[1,0,0,0],[2,3,3,2],[1,3,2,1],[2,2,2,0]],[[1,0,0,0],[2,3,3,2],[1,3,2,1],[1,3,2,0]],[[1,0,0,0],[2,3,3,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,0],[0,4,2,1],[1,1,3,2],[1,2,2,0]],[[1,0,0,0],[2,3,3,2],[1,4,3,0],[1,1,2,1]],[[1,0,0,0],[2,3,3,2],[1,3,4,0],[1,1,2,1]],[[1,0,0,0],[2,3,3,2],[1,3,3,0],[1,1,3,1]],[[1,0,0,0],[2,3,3,2],[1,3,3,0],[1,1,2,2]],[[1,0,0,0],[2,3,3,2],[1,4,3,0],[1,2,1,1]],[[1,0,0,0],[2,3,3,2],[1,3,4,0],[1,2,1,1]],[[1,0,0,0],[2,3,3,2],[1,3,3,0],[2,2,1,1]],[[1,0,0,0],[2,3,3,2],[1,3,3,0],[1,3,1,1]],[[1,0,0,0],[2,3,3,2],[1,4,3,1],[1,1,2,0]],[[1,0,0,0],[2,3,3,2],[1,3,4,1],[1,1,2,0]],[[1,0,0,0],[2,3,3,2],[1,3,3,1],[1,1,3,0]],[[1,0,0,0],[2,3,3,2],[1,4,3,1],[1,2,0,1]],[[1,0,0,0],[2,3,3,2],[1,3,4,1],[1,2,0,1]],[[1,0,0,0],[2,3,3,2],[1,3,3,1],[2,2,0,1]],[[1,0,0,0],[2,3,3,2],[1,3,3,1],[1,3,0,1]],[[1,0,0,0],[2,3,3,2],[1,4,3,1],[1,2,1,0]],[[1,0,0,0],[2,3,3,2],[1,3,4,1],[1,2,1,0]],[[1,0,0,0],[2,3,3,2],[1,3,3,1],[2,2,1,0]],[[1,0,0,0],[2,3,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,3,0],[0,3,2,1],[1,1,3,2],[1,2,2,0]],[[1,3,2,0],[0,3,2,1],[1,1,3,2],[1,2,2,0]],[[2,2,2,0],[0,3,2,1],[1,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,4,2,1],[1,1,3,2],[1,2,1,1]],[[1,2,3,0],[0,3,2,1],[1,1,3,2],[1,2,1,1]],[[1,3,2,0],[0,3,2,1],[1,1,3,2],[1,2,1,1]],[[2,2,2,0],[0,3,2,1],[1,1,3,2],[1,2,1,1]],[[1,2,2,0],[0,4,2,1],[1,1,3,1],[1,2,2,1]],[[1,2,3,0],[0,3,2,1],[1,1,3,1],[1,2,2,1]],[[1,3,2,0],[0,3,2,1],[1,1,3,1],[1,2,2,1]],[[2,2,2,0],[0,3,2,1],[1,1,3,1],[1,2,2,1]],[[1,0,0,0],[3,3,3,2],[2,1,3,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,2],[3,1,3,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,2],[2,1,4,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,2],[2,1,3,0],[2,2,2,1]],[[1,0,0,0],[2,3,3,2],[2,1,3,0],[1,3,2,1]],[[1,0,0,0],[2,3,3,2],[2,1,3,0],[1,2,3,1]],[[1,0,0,0],[2,3,3,2],[2,1,3,0],[1,2,2,2]],[[1,0,0,0],[3,3,3,2],[2,1,3,1],[1,2,2,0]],[[1,0,0,0],[2,3,3,2],[3,1,3,1],[1,2,2,0]],[[1,0,0,0],[2,3,3,2],[2,1,4,1],[1,2,2,0]],[[1,0,0,0],[2,3,3,2],[2,1,3,1],[2,2,2,0]],[[1,0,0,0],[2,3,3,2],[2,1,3,1],[1,3,2,0]],[[1,0,0,0],[2,3,3,2],[2,1,3,1],[1,2,3,0]],[[1,0,0,0],[3,3,3,2],[2,2,2,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,2],[3,2,2,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,2],[2,2,2,0],[2,2,2,1]],[[1,0,0,0],[2,3,3,2],[2,2,2,0],[1,3,2,1]],[[1,0,0,0],[2,3,3,2],[2,2,2,0],[1,2,3,1]],[[1,0,0,0],[2,3,3,2],[2,2,2,0],[1,2,2,2]],[[1,0,0,0],[3,3,3,2],[2,2,2,1],[1,2,2,0]],[[1,0,0,0],[2,3,3,2],[3,2,2,1],[1,2,2,0]],[[1,0,0,0],[2,3,3,2],[2,2,2,1],[2,2,2,0]],[[1,0,0,0],[2,3,3,2],[2,2,2,1],[1,3,2,0]],[[1,0,0,0],[2,3,3,2],[2,2,2,1],[1,2,3,0]],[[1,0,0,0],[2,3,3,2],[2,2,4,0],[0,2,2,1]],[[1,0,0,0],[2,3,3,2],[2,2,3,0],[0,3,2,1]],[[1,0,0,0],[2,3,3,2],[2,2,3,0],[0,2,3,1]],[[1,0,0,0],[2,3,3,2],[2,2,3,0],[0,2,2,2]],[[1,0,0,0],[3,3,3,2],[2,2,3,0],[1,2,1,1]],[[1,0,0,0],[2,3,3,2],[3,2,3,0],[1,2,1,1]],[[1,0,0,0],[2,3,3,2],[2,2,3,0],[2,2,1,1]],[[1,0,0,0],[2,3,3,2],[2,2,3,0],[1,3,1,1]],[[1,0,0,0],[2,3,3,2],[2,2,4,1],[0,2,2,0]],[[1,0,0,0],[2,3,3,2],[2,2,3,1],[0,3,2,0]],[[1,0,0,0],[2,3,3,2],[2,2,3,1],[0,2,3,0]],[[1,0,0,0],[3,3,3,2],[2,2,3,1],[1,2,0,1]],[[1,0,0,0],[2,3,3,2],[3,2,3,1],[1,2,0,1]],[[1,0,0,0],[2,3,3,2],[2,2,3,1],[2,2,0,1]],[[1,0,0,0],[2,3,3,2],[2,2,3,1],[1,3,0,1]],[[1,0,0,0],[3,3,3,2],[2,2,3,1],[1,2,1,0]],[[1,0,0,0],[2,3,3,2],[3,2,3,1],[1,2,1,0]],[[1,0,0,0],[2,3,3,2],[2,2,3,1],[2,2,1,0]],[[1,0,0,0],[2,3,3,2],[2,2,3,1],[1,3,1,0]],[[1,0,0,0],[3,3,3,2],[2,3,1,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,2],[3,3,1,0],[1,2,2,1]],[[1,0,0,0],[2,3,3,2],[2,3,1,0],[2,2,2,1]],[[1,0,0,0],[2,3,3,2],[2,3,1,0],[1,3,2,1]],[[1,0,0,0],[3,3,3,2],[2,3,1,1],[1,2,2,0]],[[1,0,0,0],[2,3,3,2],[3,3,1,1],[1,2,2,0]],[[1,0,0,0],[2,3,3,2],[2,3,1,1],[2,2,2,0]],[[1,0,0,0],[2,3,3,2],[2,3,1,1],[1,3,2,0]],[[1,0,0,0],[3,3,3,2],[2,3,2,0],[0,2,2,1]],[[1,0,0,0],[2,3,3,2],[3,3,2,0],[0,2,2,1]],[[1,0,0,0],[2,3,3,2],[2,4,2,0],[0,2,2,1]],[[1,0,0,0],[2,3,3,2],[2,3,2,0],[0,3,2,1]],[[1,0,0,0],[2,3,3,2],[2,3,2,0],[0,2,3,1]],[[1,0,0,0],[2,3,3,2],[2,3,2,0],[0,2,2,2]],[[1,0,0,0],[3,3,3,2],[2,3,2,0],[1,1,2,1]],[[1,0,0,0],[2,3,3,2],[3,3,2,0],[1,1,2,1]],[[1,0,0,0],[2,3,3,2],[2,4,2,0],[1,1,2,1]],[[1,0,0,0],[2,3,3,2],[2,3,2,0],[2,1,2,1]],[[1,0,0,0],[3,3,3,2],[2,3,2,1],[0,2,2,0]],[[1,0,0,0],[2,3,3,2],[3,3,2,1],[0,2,2,0]],[[1,0,0,0],[2,3,3,2],[2,4,2,1],[0,2,2,0]],[[1,0,0,0],[2,3,3,2],[2,3,2,1],[0,3,2,0]],[[1,0,0,0],[2,3,3,2],[2,3,2,1],[0,2,3,0]],[[1,0,0,0],[3,3,3,2],[2,3,2,1],[1,1,2,0]],[[1,0,0,0],[2,3,3,2],[3,3,2,1],[1,1,2,0]],[[1,0,0,0],[2,3,3,2],[2,4,2,1],[1,1,2,0]],[[1,0,0,0],[2,3,3,2],[2,3,2,1],[2,1,2,0]],[[1,0,0,0],[3,3,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,0,0],[2,3,3,2],[3,3,3,0],[0,1,2,1]],[[1,0,0,0],[2,3,3,2],[2,4,3,0],[0,1,2,1]],[[1,0,0,0],[2,3,3,2],[2,3,4,0],[0,1,2,1]],[[1,0,0,0],[2,3,3,2],[2,3,3,0],[0,1,3,1]],[[1,0,0,0],[2,3,3,2],[2,3,3,0],[0,1,2,2]],[[1,0,0,0],[3,3,3,2],[2,3,3,0],[0,2,1,1]],[[1,0,0,0],[2,3,3,2],[3,3,3,0],[0,2,1,1]],[[1,0,0,0],[2,3,3,2],[2,4,3,0],[0,2,1,1]],[[1,0,0,0],[2,3,3,2],[2,3,4,0],[0,2,1,1]],[[1,0,0,0],[2,3,3,2],[2,3,3,0],[0,3,1,1]],[[1,0,0,0],[3,3,3,2],[2,3,3,0],[1,0,2,1]],[[1,0,0,0],[2,3,3,2],[3,3,3,0],[1,0,2,1]],[[1,0,0,0],[2,3,3,2],[2,4,3,0],[1,0,2,1]],[[1,0,0,0],[2,3,3,2],[2,3,4,0],[1,0,2,1]],[[1,0,0,0],[2,3,3,2],[2,3,3,0],[2,0,2,1]],[[1,0,0,0],[2,3,3,2],[2,3,3,0],[1,0,3,1]],[[1,0,0,0],[2,3,3,2],[2,3,3,0],[1,0,2,2]],[[1,0,0,0],[3,3,3,2],[2,3,3,0],[1,1,1,1]],[[1,0,0,0],[2,3,3,2],[3,3,3,0],[1,1,1,1]],[[1,0,0,0],[2,3,3,2],[2,4,3,0],[1,1,1,1]],[[1,0,0,0],[2,3,3,2],[2,3,4,0],[1,1,1,1]],[[1,0,0,0],[2,3,3,2],[2,3,3,0],[2,1,1,1]],[[1,0,0,0],[3,3,3,2],[2,3,3,0],[1,2,0,1]],[[1,0,0,0],[2,3,3,2],[3,3,3,0],[1,2,0,1]],[[1,0,0,0],[2,3,3,2],[2,4,3,0],[1,2,0,1]],[[1,0,0,0],[2,3,3,2],[2,3,3,0],[2,2,0,1]],[[1,0,0,0],[3,3,3,2],[2,3,3,1],[0,1,1,1]],[[1,0,0,0],[2,3,3,2],[3,3,3,1],[0,1,1,1]],[[1,0,0,0],[2,3,3,2],[2,4,3,1],[0,1,1,1]],[[1,0,0,0],[2,3,3,2],[2,3,4,1],[0,1,1,1]],[[1,0,0,0],[3,3,3,2],[2,3,3,1],[0,1,2,0]],[[1,0,0,0],[2,3,3,2],[3,3,3,1],[0,1,2,0]],[[1,0,0,0],[2,3,3,2],[2,4,3,1],[0,1,2,0]],[[1,0,0,0],[2,3,3,2],[2,3,4,1],[0,1,2,0]],[[1,0,0,0],[2,3,3,2],[2,3,3,1],[0,1,3,0]],[[1,0,0,0],[3,3,3,2],[2,3,3,1],[0,2,0,1]],[[1,0,0,0],[2,3,3,2],[3,3,3,1],[0,2,0,1]],[[1,0,0,0],[2,3,3,2],[2,4,3,1],[0,2,0,1]],[[1,0,0,0],[2,3,3,2],[2,3,4,1],[0,2,0,1]],[[1,0,0,0],[2,3,3,2],[2,3,3,1],[0,3,0,1]],[[1,0,0,0],[3,3,3,2],[2,3,3,1],[0,2,1,0]],[[1,0,0,0],[2,3,3,2],[3,3,3,1],[0,2,1,0]],[[1,0,0,0],[2,3,3,2],[2,4,3,1],[0,2,1,0]],[[1,0,0,0],[2,3,3,2],[2,3,4,1],[0,2,1,0]],[[1,0,0,0],[2,3,3,2],[2,3,3,1],[0,3,1,0]],[[1,0,0,0],[3,3,3,2],[2,3,3,1],[1,0,1,1]],[[1,0,0,0],[2,3,3,2],[3,3,3,1],[1,0,1,1]],[[1,0,0,0],[2,3,3,2],[2,4,3,1],[1,0,1,1]],[[1,0,0,0],[2,3,3,2],[2,3,4,1],[1,0,1,1]],[[1,0,0,0],[2,3,3,2],[2,3,3,1],[2,0,1,1]],[[1,0,0,0],[3,3,3,2],[2,3,3,1],[1,0,2,0]],[[1,0,0,0],[2,3,3,2],[3,3,3,1],[1,0,2,0]],[[1,0,0,0],[2,3,3,2],[2,4,3,1],[1,0,2,0]],[[1,0,0,0],[2,3,3,2],[2,3,4,1],[1,0,2,0]],[[1,0,0,0],[2,3,3,2],[2,3,3,1],[2,0,2,0]],[[1,0,0,0],[2,3,3,2],[2,3,3,1],[1,0,3,0]],[[1,0,0,0],[3,3,3,2],[2,3,3,1],[1,1,0,1]],[[1,0,0,0],[2,3,3,2],[3,3,3,1],[1,1,0,1]],[[1,0,0,0],[2,3,3,2],[2,4,3,1],[1,1,0,1]],[[1,0,0,0],[2,3,3,2],[2,3,4,1],[1,1,0,1]],[[1,0,0,0],[2,3,3,2],[2,3,3,1],[2,1,0,1]],[[1,0,0,0],[3,3,3,2],[2,3,3,1],[1,1,1,0]],[[1,0,0,0],[2,3,3,2],[3,3,3,1],[1,1,1,0]],[[1,0,0,0],[2,3,3,2],[2,4,3,1],[1,1,1,0]],[[1,0,0,0],[2,3,3,2],[2,3,4,1],[1,1,1,0]],[[1,0,0,0],[2,3,3,2],[2,3,3,1],[2,1,1,0]],[[1,0,0,0],[3,3,3,2],[2,3,3,1],[1,2,0,0]],[[1,0,0,0],[2,3,3,2],[3,3,3,1],[1,2,0,0]],[[1,0,0,0],[2,3,3,2],[2,4,3,1],[1,2,0,0]],[[1,0,0,0],[2,3,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[0,3,1,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[0,3,1,2],[2,4,3,1],[1,2,0,0]],[[1,2,2,0],[0,3,1,2],[3,3,3,1],[1,2,0,0]],[[1,2,2,0],[0,4,1,2],[2,3,3,1],[1,2,0,0]],[[1,2,3,0],[0,3,1,2],[2,3,3,1],[1,2,0,0]],[[1,3,2,0],[0,3,1,2],[2,3,3,1],[1,2,0,0]],[[2,2,2,0],[0,3,1,2],[2,3,3,1],[1,2,0,0]],[[1,2,2,0],[0,3,1,2],[2,3,3,1],[2,1,1,0]],[[1,0,0,1],[0,0,3,2],[2,3,3,3],[1,2,2,1]],[[1,0,0,1],[0,0,3,2],[2,3,3,2],[2,2,2,1]],[[1,0,0,1],[0,0,3,2],[2,3,3,2],[1,3,2,1]],[[1,0,0,1],[0,0,3,2],[2,3,3,2],[1,2,3,1]],[[1,0,0,1],[0,0,3,2],[2,3,3,2],[1,2,2,2]],[[1,0,0,1],[0,1,2,2],[2,3,3,3],[1,2,2,1]],[[1,0,0,1],[0,1,2,2],[2,3,3,2],[2,2,2,1]],[[1,0,0,1],[0,1,2,2],[2,3,3,2],[1,3,2,1]],[[1,0,0,1],[0,1,2,2],[2,3,3,2],[1,2,3,1]],[[1,0,0,1],[0,1,2,2],[2,3,3,2],[1,2,2,2]],[[1,0,0,1],[0,1,3,3],[2,3,2,2],[1,2,2,1]],[[1,0,0,1],[0,1,3,2],[2,3,2,3],[1,2,2,1]],[[1,0,0,1],[0,1,3,2],[2,3,2,2],[2,2,2,1]],[[1,0,0,1],[0,1,3,2],[2,3,2,2],[1,3,2,1]],[[1,0,0,1],[0,1,3,2],[2,3,2,2],[1,2,3,1]],[[1,0,0,1],[0,1,3,2],[2,3,2,2],[1,2,2,2]],[[1,0,0,1],[0,1,3,2],[2,3,4,1],[1,2,2,1]],[[1,0,0,1],[0,1,3,2],[2,3,3,1],[2,2,2,1]],[[1,0,0,1],[0,1,3,2],[2,3,3,1],[1,3,2,1]],[[1,0,0,1],[0,1,3,2],[2,3,3,1],[1,2,3,1]],[[1,0,0,1],[0,1,3,2],[2,3,3,1],[1,2,2,2]],[[1,0,0,1],[0,1,3,3],[2,3,3,2],[1,2,1,1]],[[1,0,0,1],[0,1,3,2],[2,3,4,2],[1,2,1,1]],[[1,0,0,1],[0,1,3,2],[2,3,3,3],[1,2,1,1]],[[1,0,0,1],[0,1,3,2],[2,3,3,2],[1,2,1,2]],[[1,0,0,1],[0,1,3,3],[2,3,3,2],[1,2,2,0]],[[1,0,0,1],[0,1,3,2],[2,3,4,2],[1,2,2,0]],[[1,0,0,1],[0,1,3,2],[2,3,3,3],[1,2,2,0]],[[1,0,0,1],[0,1,3,2],[2,3,3,2],[2,2,2,0]],[[1,0,0,1],[0,1,3,2],[2,3,3,2],[1,3,2,0]],[[1,0,0,1],[0,1,3,2],[2,3,3,2],[1,2,3,0]],[[1,0,0,1],[0,2,2,2],[2,2,3,3],[1,2,2,1]],[[1,0,0,1],[0,2,2,2],[2,2,3,2],[2,2,2,1]],[[1,0,0,1],[0,2,2,2],[2,2,3,2],[1,3,2,1]],[[1,0,0,1],[0,2,2,2],[2,2,3,2],[1,2,3,1]],[[1,0,0,1],[0,2,2,2],[2,2,3,2],[1,2,2,2]],[[1,0,0,1],[0,2,2,2],[2,3,3,3],[1,1,2,1]],[[1,0,0,1],[0,2,2,2],[2,3,3,2],[1,1,3,1]],[[1,0,0,1],[0,2,2,2],[2,3,3,2],[1,1,2,2]],[[1,0,0,1],[0,2,3,3],[2,1,3,2],[1,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,1,3,3],[1,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,1,3,2],[1,2,3,1]],[[1,0,0,1],[0,2,3,2],[2,1,3,2],[1,2,2,2]],[[1,0,0,1],[0,2,3,3],[2,2,2,2],[1,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,2,2,3],[1,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,2,2,2],[2,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,2,2,2],[1,3,2,1]],[[1,0,0,1],[0,2,3,2],[2,2,2,2],[1,2,3,1]],[[1,0,0,1],[0,2,3,2],[2,2,2,2],[1,2,2,2]],[[1,0,0,1],[0,2,3,2],[2,2,4,1],[1,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,2,3,1],[2,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,2,3,1],[1,3,2,1]],[[1,0,0,1],[0,2,3,2],[2,2,3,1],[1,2,3,1]],[[1,0,0,1],[0,2,3,2],[2,2,3,1],[1,2,2,2]],[[1,0,0,1],[0,2,3,3],[2,2,3,2],[1,2,1,1]],[[1,0,0,1],[0,2,3,2],[2,2,4,2],[1,2,1,1]],[[1,0,0,1],[0,2,3,2],[2,2,3,3],[1,2,1,1]],[[1,0,0,1],[0,2,3,2],[2,2,3,2],[1,2,1,2]],[[1,0,0,1],[0,2,3,3],[2,2,3,2],[1,2,2,0]],[[1,0,0,1],[0,2,3,2],[2,2,4,2],[1,2,2,0]],[[1,0,0,1],[0,2,3,2],[2,2,3,3],[1,2,2,0]],[[1,0,0,1],[0,2,3,2],[2,2,3,2],[2,2,2,0]],[[1,0,0,1],[0,2,3,2],[2,2,3,2],[1,3,2,0]],[[1,0,0,1],[0,2,3,2],[2,2,3,2],[1,2,3,0]],[[1,0,0,1],[0,2,3,3],[2,3,1,2],[1,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,4,1,2],[1,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,1,3],[1,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,1,2],[2,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,1,2],[1,3,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,1,2],[1,2,3,1]],[[1,0,0,1],[0,2,3,2],[2,3,1,2],[1,2,2,2]],[[1,0,0,1],[0,2,3,2],[2,4,2,1],[1,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,2,1],[2,2,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,2,1],[1,3,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,2,1],[1,2,3,1]],[[1,0,0,1],[0,2,3,2],[2,3,2,1],[1,2,2,2]],[[1,0,0,1],[0,2,3,3],[2,3,2,2],[1,1,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,2,3],[1,1,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,2,2],[1,1,3,1]],[[1,0,0,1],[0,2,3,2],[2,3,2,2],[1,1,2,2]],[[1,0,0,1],[0,2,3,2],[2,4,2,2],[1,2,2,0]],[[1,0,0,1],[0,2,3,2],[2,3,2,2],[2,2,2,0]],[[1,0,0,1],[0,2,3,2],[2,3,2,2],[1,3,2,0]],[[1,0,0,1],[0,2,3,2],[2,3,2,2],[1,2,3,0]],[[1,0,0,1],[0,2,3,2],[2,4,3,1],[1,1,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,4,1],[1,1,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,1],[1,1,3,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,1],[1,1,2,2]],[[1,0,0,1],[0,2,3,2],[2,4,3,1],[1,2,1,1]],[[1,0,0,1],[0,2,3,2],[2,3,4,1],[1,2,1,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,1],[2,2,1,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,1],[1,3,1,1]],[[1,0,0,1],[0,2,3,3],[2,3,3,2],[1,0,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,4,2],[1,0,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,3],[1,0,2,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,2],[1,0,2,2]],[[1,0,0,1],[0,2,3,3],[2,3,3,2],[1,1,1,1]],[[1,0,0,1],[0,2,3,2],[2,4,3,2],[1,1,1,1]],[[1,0,0,1],[0,2,3,2],[2,3,4,2],[1,1,1,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,3],[1,1,1,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,2],[1,1,1,2]],[[1,0,0,1],[0,2,3,3],[2,3,3,2],[1,1,2,0]],[[1,0,0,1],[0,2,3,2],[2,4,3,2],[1,1,2,0]],[[1,0,0,1],[0,2,3,2],[2,3,4,2],[1,1,2,0]],[[1,0,0,1],[0,2,3,2],[2,3,3,3],[1,1,2,0]],[[1,0,0,1],[0,2,3,2],[2,3,3,2],[1,1,3,0]],[[1,0,0,1],[0,2,3,3],[2,3,3,2],[1,2,0,1]],[[1,0,0,1],[0,2,3,2],[2,4,3,2],[1,2,0,1]],[[1,0,0,1],[0,2,3,2],[2,3,4,2],[1,2,0,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,3],[1,2,0,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,2],[2,2,0,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,2],[1,3,0,1]],[[1,0,0,1],[0,2,3,2],[2,3,3,2],[1,2,0,2]],[[1,0,0,1],[0,2,3,3],[2,3,3,2],[1,2,1,0]],[[1,0,0,1],[0,2,3,2],[2,4,3,2],[1,2,1,0]],[[1,0,0,1],[0,2,3,2],[2,3,4,2],[1,2,1,0]],[[1,0,0,1],[0,2,3,2],[2,3,3,3],[1,2,1,0]],[[1,0,0,1],[0,2,3,2],[2,3,3,2],[2,2,1,0]],[[1,0,0,1],[0,2,3,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,3,1,2],[2,3,4,1],[1,1,1,0]],[[1,2,2,0],[0,3,1,2],[2,4,3,1],[1,1,1,0]],[[1,2,2,0],[0,3,1,2],[3,3,3,1],[1,1,1,0]],[[1,2,2,0],[0,4,1,2],[2,3,3,1],[1,1,1,0]],[[1,2,3,0],[0,3,1,2],[2,3,3,1],[1,1,1,0]],[[1,3,2,0],[0,3,1,2],[2,3,3,1],[1,1,1,0]],[[2,2,2,0],[0,3,1,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,0],[0,3,1,2],[2,3,3,1],[2,1,0,1]],[[1,0,0,1],[0,3,0,2],[2,3,3,3],[1,2,2,1]],[[1,0,0,1],[0,3,0,2],[2,3,3,2],[2,2,2,1]],[[1,0,0,1],[0,3,0,2],[2,3,3,2],[1,3,2,1]],[[1,0,0,1],[0,3,0,2],[2,3,3,2],[1,2,3,1]],[[1,0,0,1],[0,3,0,2],[2,3,3,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,2],[2,3,4,1],[1,1,0,1]],[[1,2,2,0],[0,3,1,2],[2,4,3,1],[1,1,0,1]],[[1,2,2,0],[0,3,1,2],[3,3,3,1],[1,1,0,1]],[[1,2,2,0],[0,4,1,2],[2,3,3,1],[1,1,0,1]],[[1,2,3,0],[0,3,1,2],[2,3,3,1],[1,1,0,1]],[[1,3,2,0],[0,3,1,2],[2,3,3,1],[1,1,0,1]],[[2,2,2,0],[0,3,1,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,0],[0,3,1,2],[2,3,3,1],[1,0,3,0]],[[1,2,2,0],[0,3,1,2],[2,3,3,1],[2,0,2,0]],[[1,2,2,0],[0,3,1,2],[2,3,4,1],[1,0,2,0]],[[1,2,2,0],[0,3,1,2],[2,4,3,1],[1,0,2,0]],[[1,2,2,0],[0,3,1,2],[3,3,3,1],[1,0,2,0]],[[1,2,2,0],[0,4,1,2],[2,3,3,1],[1,0,2,0]],[[1,2,3,0],[0,3,1,2],[2,3,3,1],[1,0,2,0]],[[1,3,2,0],[0,3,1,2],[2,3,3,1],[1,0,2,0]],[[2,2,2,0],[0,3,1,2],[2,3,3,1],[1,0,2,0]],[[1,2,2,0],[0,3,1,2],[2,3,3,1],[2,0,1,1]],[[1,2,2,0],[0,3,1,2],[2,3,4,1],[1,0,1,1]],[[1,2,2,0],[0,3,1,2],[2,4,3,1],[1,0,1,1]],[[1,2,2,0],[0,3,1,2],[3,3,3,1],[1,0,1,1]],[[1,2,2,0],[0,4,1,2],[2,3,3,1],[1,0,1,1]],[[1,2,3,0],[0,3,1,2],[2,3,3,1],[1,0,1,1]],[[1,3,2,0],[0,3,1,2],[2,3,3,1],[1,0,1,1]],[[2,2,2,0],[0,3,1,2],[2,3,3,1],[1,0,1,1]],[[1,2,2,0],[0,3,1,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[0,3,1,2],[2,3,4,1],[0,2,1,0]],[[1,0,0,1],[1,0,2,2],[2,3,3,3],[1,2,2,1]],[[1,0,0,1],[1,0,2,2],[2,3,3,2],[2,2,2,1]],[[1,0,0,1],[1,0,2,2],[2,3,3,2],[1,3,2,1]],[[1,0,0,1],[1,0,2,2],[2,3,3,2],[1,2,3,1]],[[1,0,0,1],[1,0,2,2],[2,3,3,2],[1,2,2,2]],[[1,0,0,1],[1,0,3,2],[1,3,3,3],[1,2,2,1]],[[1,0,0,1],[1,0,3,2],[1,3,3,2],[1,3,2,1]],[[1,0,0,1],[1,0,3,2],[1,3,3,2],[1,2,3,1]],[[1,0,0,1],[1,0,3,2],[1,3,3,2],[1,2,2,2]],[[1,0,0,1],[1,0,3,3],[2,3,2,2],[1,2,2,1]],[[1,0,0,1],[1,0,3,2],[2,3,2,3],[1,2,2,1]],[[1,0,0,1],[1,0,3,2],[2,3,2,2],[2,2,2,1]],[[1,0,0,1],[1,0,3,2],[2,3,2,2],[1,3,2,1]],[[1,0,0,1],[1,0,3,2],[2,3,2,2],[1,2,3,1]],[[1,0,0,1],[1,0,3,2],[2,3,2,2],[1,2,2,2]],[[1,0,0,1],[1,0,3,2],[2,3,4,1],[1,2,2,1]],[[1,0,0,1],[1,0,3,2],[2,3,3,1],[2,2,2,1]],[[1,0,0,1],[1,0,3,2],[2,3,3,1],[1,3,2,1]],[[1,0,0,1],[1,0,3,2],[2,3,3,1],[1,2,3,1]],[[1,0,0,1],[1,0,3,2],[2,3,3,1],[1,2,2,2]],[[1,0,0,1],[1,0,3,2],[2,3,3,3],[0,2,2,1]],[[1,0,0,1],[1,0,3,2],[2,3,3,2],[0,2,3,1]],[[1,0,0,1],[1,0,3,2],[2,3,3,2],[0,2,2,2]],[[1,0,0,1],[1,0,3,3],[2,3,3,2],[1,2,1,1]],[[1,0,0,1],[1,0,3,2],[2,3,4,2],[1,2,1,1]],[[1,0,0,1],[1,0,3,2],[2,3,3,3],[1,2,1,1]],[[1,0,0,1],[1,0,3,2],[2,3,3,2],[1,2,1,2]],[[1,0,0,1],[1,0,3,3],[2,3,3,2],[1,2,2,0]],[[1,0,0,1],[1,0,3,2],[2,3,4,2],[1,2,2,0]],[[1,0,0,1],[1,0,3,2],[2,3,3,3],[1,2,2,0]],[[1,0,0,1],[1,0,3,2],[2,3,3,2],[2,2,2,0]],[[1,0,0,1],[1,0,3,2],[2,3,3,2],[1,3,2,0]],[[1,0,0,1],[1,0,3,2],[2,3,3,2],[1,2,3,0]],[[1,0,0,1],[1,1,2,2],[1,3,3,3],[1,2,2,1]],[[1,0,0,1],[1,1,2,2],[1,3,3,2],[2,2,2,1]],[[1,0,0,1],[1,1,2,2],[1,3,3,2],[1,3,2,1]],[[1,0,0,1],[1,1,2,2],[1,3,3,2],[1,2,3,1]],[[1,0,0,1],[1,1,2,2],[1,3,3,2],[1,2,2,2]],[[1,0,0,1],[1,1,2,2],[2,3,3,3],[0,2,2,1]],[[1,0,0,1],[1,1,2,2],[2,3,3,2],[0,3,2,1]],[[1,0,0,1],[1,1,2,2],[2,3,3,2],[0,2,3,1]],[[1,0,0,1],[1,1,2,2],[2,3,3,2],[0,2,2,2]],[[1,0,0,1],[1,1,3,3],[1,3,2,2],[1,2,2,1]],[[1,0,0,1],[1,1,3,2],[1,3,2,3],[1,2,2,1]],[[1,0,0,1],[1,1,3,2],[1,3,2,2],[2,2,2,1]],[[1,0,0,1],[1,1,3,2],[1,3,2,2],[1,3,2,1]],[[1,0,0,1],[1,1,3,2],[1,3,2,2],[1,2,3,1]],[[1,0,0,1],[1,1,3,2],[1,3,2,2],[1,2,2,2]],[[1,0,0,1],[1,1,3,2],[1,3,4,1],[1,2,2,1]],[[1,0,0,1],[1,1,3,2],[1,3,3,1],[2,2,2,1]],[[1,0,0,1],[1,1,3,2],[1,3,3,1],[1,3,2,1]],[[1,0,0,1],[1,1,3,2],[1,3,3,1],[1,2,3,1]],[[1,0,0,1],[1,1,3,2],[1,3,3,1],[1,2,2,2]],[[1,0,0,1],[1,1,3,3],[1,3,3,2],[1,2,1,1]],[[1,0,0,1],[1,1,3,2],[1,3,4,2],[1,2,1,1]],[[1,0,0,1],[1,1,3,2],[1,3,3,3],[1,2,1,1]],[[1,0,0,1],[1,1,3,2],[1,3,3,2],[1,2,1,2]],[[1,0,0,1],[1,1,3,3],[1,3,3,2],[1,2,2,0]],[[1,0,0,1],[1,1,3,2],[1,3,4,2],[1,2,2,0]],[[1,0,0,1],[1,1,3,2],[1,3,3,3],[1,2,2,0]],[[1,0,0,1],[1,1,3,2],[1,3,3,2],[2,2,2,0]],[[1,0,0,1],[1,1,3,2],[1,3,3,2],[1,3,2,0]],[[1,0,0,1],[1,1,3,2],[1,3,3,2],[1,2,3,0]],[[1,0,0,1],[1,1,3,3],[2,3,2,2],[0,2,2,1]],[[1,0,0,1],[1,1,3,2],[2,3,2,3],[0,2,2,1]],[[1,0,0,1],[1,1,3,2],[2,3,2,2],[0,3,2,1]],[[1,0,0,1],[1,1,3,2],[2,3,2,2],[0,2,3,1]],[[1,0,0,1],[1,1,3,2],[2,3,2,2],[0,2,2,2]],[[1,0,0,1],[1,1,3,2],[2,3,4,1],[0,2,2,1]],[[1,0,0,1],[1,1,3,2],[2,3,3,1],[0,3,2,1]],[[1,0,0,1],[1,1,3,2],[2,3,3,1],[0,2,3,1]],[[1,0,0,1],[1,1,3,2],[2,3,3,1],[0,2,2,2]],[[1,0,0,1],[1,1,3,3],[2,3,3,2],[0,2,1,1]],[[1,0,0,1],[1,1,3,2],[2,3,4,2],[0,2,1,1]],[[1,0,0,1],[1,1,3,2],[2,3,3,3],[0,2,1,1]],[[1,0,0,1],[1,1,3,2],[2,3,3,2],[0,2,1,2]],[[1,0,0,1],[1,1,3,3],[2,3,3,2],[0,2,2,0]],[[1,0,0,1],[1,1,3,2],[2,3,4,2],[0,2,2,0]],[[1,0,0,1],[1,1,3,2],[2,3,3,3],[0,2,2,0]],[[1,0,0,1],[1,1,3,2],[2,3,3,2],[0,3,2,0]],[[1,0,0,1],[1,1,3,2],[2,3,3,2],[0,2,3,0]],[[1,2,2,0],[0,3,1,2],[2,4,3,1],[0,2,1,0]],[[1,2,2,0],[0,3,1,2],[3,3,3,1],[0,2,1,0]],[[1,2,2,0],[0,4,1,2],[2,3,3,1],[0,2,1,0]],[[1,2,3,0],[0,3,1,2],[2,3,3,1],[0,2,1,0]],[[1,3,2,0],[0,3,1,2],[2,3,3,1],[0,2,1,0]],[[2,2,2,0],[0,3,1,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,0],[0,3,1,2],[2,3,3,1],[0,3,0,1]],[[1,0,0,1],[1,2,0,2],[2,3,3,3],[1,2,2,1]],[[1,0,0,1],[1,2,0,2],[2,3,3,2],[2,2,2,1]],[[1,0,0,1],[1,2,0,2],[2,3,3,2],[1,3,2,1]],[[1,0,0,1],[1,2,0,2],[2,3,3,2],[1,2,3,1]],[[1,0,0,1],[1,2,0,2],[2,3,3,2],[1,2,2,2]],[[1,0,0,1],[1,2,2,2],[0,3,3,3],[1,2,2,1]],[[1,0,0,1],[1,2,2,2],[0,3,3,2],[1,3,2,1]],[[1,0,0,1],[1,2,2,2],[0,3,3,2],[1,2,3,1]],[[1,0,0,1],[1,2,2,2],[0,3,3,2],[1,2,2,2]],[[1,0,0,1],[1,2,2,2],[1,2,3,3],[1,2,2,1]],[[1,0,0,1],[1,2,2,2],[1,2,3,2],[2,2,2,1]],[[1,0,0,1],[1,2,2,2],[1,2,3,2],[1,3,2,1]],[[1,0,0,1],[1,2,2,2],[1,2,3,2],[1,2,3,1]],[[1,0,0,1],[1,2,2,2],[1,2,3,2],[1,2,2,2]],[[1,0,0,1],[1,2,2,2],[1,3,3,3],[1,1,2,1]],[[1,0,0,1],[1,2,2,2],[1,3,3,2],[1,1,3,1]],[[1,0,0,1],[1,2,2,2],[1,3,3,2],[1,1,2,2]],[[1,0,0,1],[1,2,2,2],[2,1,3,3],[1,2,2,1]],[[1,0,0,1],[1,2,2,2],[2,1,3,2],[2,2,2,1]],[[1,0,0,1],[1,2,2,2],[2,1,3,2],[1,3,2,1]],[[1,0,0,1],[1,2,2,2],[2,1,3,2],[1,2,3,1]],[[1,0,0,1],[1,2,2,2],[2,1,3,2],[1,2,2,2]],[[1,0,0,1],[1,2,2,2],[2,2,3,3],[0,2,2,1]],[[1,0,0,1],[1,2,2,2],[2,2,3,2],[0,3,2,1]],[[1,0,0,1],[1,2,2,2],[2,2,3,2],[0,2,3,1]],[[1,0,0,1],[1,2,2,2],[2,2,3,2],[0,2,2,2]],[[1,0,0,1],[1,2,2,2],[2,3,3,3],[0,1,2,1]],[[1,0,0,1],[1,2,2,2],[2,3,3,2],[0,1,3,1]],[[1,0,0,1],[1,2,2,2],[2,3,3,2],[0,1,2,2]],[[1,0,0,1],[1,2,2,2],[2,3,3,3],[1,0,2,1]],[[1,0,0,1],[1,2,2,2],[2,3,3,2],[1,0,3,1]],[[1,0,0,1],[1,2,2,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,0],[0,3,1,2],[2,3,4,1],[0,2,0,1]],[[1,2,2,0],[0,3,1,2],[2,4,3,1],[0,2,0,1]],[[1,2,2,0],[0,3,1,2],[3,3,3,1],[0,2,0,1]],[[1,2,2,0],[0,4,1,2],[2,3,3,1],[0,2,0,1]],[[1,2,3,0],[0,3,1,2],[2,3,3,1],[0,2,0,1]],[[1,0,0,1],[1,2,3,3],[0,2,3,2],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[0,2,3,3],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[0,2,3,2],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[0,2,3,2],[1,2,2,2]],[[1,0,0,1],[1,2,3,3],[0,3,2,2],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[0,3,2,3],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[0,3,2,2],[1,3,2,1]],[[1,0,0,1],[1,2,3,2],[0,3,2,2],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[0,3,2,2],[1,2,2,2]],[[1,0,0,1],[1,2,3,2],[0,3,4,1],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[0,3,3,1],[1,3,2,1]],[[1,0,0,1],[1,2,3,2],[0,3,3,1],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[0,3,3,1],[1,2,2,2]],[[1,0,0,1],[1,2,3,3],[0,3,3,2],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[0,3,4,2],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[0,3,3,3],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[0,3,3,2],[1,2,1,2]],[[1,0,0,1],[1,2,3,3],[0,3,3,2],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[0,3,4,2],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[0,3,3,3],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[0,3,3,2],[1,3,2,0]],[[1,0,0,1],[1,2,3,2],[0,3,3,2],[1,2,3,0]],[[1,0,0,1],[1,2,3,3],[1,1,3,2],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,1,3,3],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,1,3,2],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[1,1,3,2],[1,2,2,2]],[[1,0,0,1],[1,2,3,3],[1,2,2,2],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,2,2,3],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,2,2,2],[2,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,2,2,2],[1,3,2,1]],[[1,0,0,1],[1,2,3,2],[1,2,2,2],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[1,2,2,2],[1,2,2,2]],[[1,0,0,1],[1,2,3,2],[1,2,4,1],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,2,3,1],[2,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,2,3,1],[1,3,2,1]],[[1,0,0,1],[1,2,3,2],[1,2,3,1],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[1,2,3,1],[1,2,2,2]],[[1,0,0,1],[1,2,3,3],[1,2,3,2],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[1,2,4,2],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[1,2,3,3],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[1,2,3,2],[1,2,1,2]],[[1,0,0,1],[1,2,3,3],[1,2,3,2],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[1,2,4,2],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[1,2,3,3],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[1,2,3,2],[2,2,2,0]],[[1,0,0,1],[1,2,3,2],[1,2,3,2],[1,3,2,0]],[[1,0,0,1],[1,2,3,2],[1,2,3,2],[1,2,3,0]],[[1,0,0,1],[1,2,3,3],[1,3,1,2],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,4,1,2],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,1,3],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,1,2],[2,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,1,2],[1,3,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,1,2],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[1,3,1,2],[1,2,2,2]],[[1,0,0,1],[1,2,3,2],[1,4,2,1],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,2,1],[2,2,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,2,1],[1,3,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,2,1],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[1,3,2,1],[1,2,2,2]],[[1,0,0,1],[1,2,3,3],[1,3,2,2],[1,1,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,2,3],[1,1,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,2,2],[1,1,3,1]],[[1,0,0,1],[1,2,3,2],[1,3,2,2],[1,1,2,2]],[[1,0,0,1],[1,2,3,2],[1,4,2,2],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[1,3,2,2],[2,2,2,0]],[[1,0,0,1],[1,2,3,2],[1,3,2,2],[1,3,2,0]],[[1,0,0,1],[1,2,3,2],[1,3,2,2],[1,2,3,0]],[[1,0,0,1],[1,2,3,2],[1,4,3,1],[1,1,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,4,1],[1,1,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,1],[1,1,3,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,1],[1,1,2,2]],[[1,0,0,1],[1,2,3,2],[1,4,3,1],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[1,3,4,1],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,1],[2,2,1,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,1],[1,3,1,1]],[[1,0,0,1],[1,2,3,3],[1,3,3,2],[1,0,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,4,2],[1,0,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,3],[1,0,2,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,2],[1,0,2,2]],[[1,0,0,1],[1,2,3,3],[1,3,3,2],[1,1,1,1]],[[1,0,0,1],[1,2,3,2],[1,4,3,2],[1,1,1,1]],[[1,0,0,1],[1,2,3,2],[1,3,4,2],[1,1,1,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,3],[1,1,1,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,2],[1,1,1,2]],[[1,0,0,1],[1,2,3,3],[1,3,3,2],[1,1,2,0]],[[1,0,0,1],[1,2,3,2],[1,4,3,2],[1,1,2,0]],[[1,0,0,1],[1,2,3,2],[1,3,4,2],[1,1,2,0]],[[1,0,0,1],[1,2,3,2],[1,3,3,3],[1,1,2,0]],[[1,0,0,1],[1,2,3,2],[1,3,3,2],[1,1,3,0]],[[1,0,0,1],[1,2,3,3],[1,3,3,2],[1,2,0,1]],[[1,0,0,1],[1,2,3,2],[1,4,3,2],[1,2,0,1]],[[1,0,0,1],[1,2,3,2],[1,3,4,2],[1,2,0,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,3],[1,2,0,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,2],[2,2,0,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,2],[1,3,0,1]],[[1,0,0,1],[1,2,3,2],[1,3,3,2],[1,2,0,2]],[[1,0,0,1],[1,2,3,3],[1,3,3,2],[1,2,1,0]],[[1,0,0,1],[1,2,3,2],[1,4,3,2],[1,2,1,0]],[[1,0,0,1],[1,2,3,2],[1,3,4,2],[1,2,1,0]],[[1,0,0,1],[1,2,3,2],[1,3,3,3],[1,2,1,0]],[[1,0,0,1],[1,2,3,2],[1,3,3,2],[2,2,1,0]],[[1,0,0,1],[1,2,3,2],[1,3,3,2],[1,3,1,0]],[[1,3,2,0],[0,3,1,2],[2,3,3,1],[0,2,0,1]],[[2,2,2,0],[0,3,1,2],[2,3,3,1],[0,2,0,1]],[[1,0,0,1],[1,2,3,3],[2,0,3,2],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,0,3,3],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,0,3,2],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[2,0,3,2],[1,2,2,2]],[[1,0,0,1],[1,2,3,3],[2,1,2,2],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[3,1,2,2],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,1,2,3],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,1,2,2],[2,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,1,2,2],[1,3,2,1]],[[1,0,0,1],[1,2,3,2],[2,1,2,2],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[2,1,2,2],[1,2,2,2]],[[1,0,0,1],[1,2,3,2],[3,1,3,1],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,1,4,1],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,1,3,1],[2,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,1,3,1],[1,3,2,1]],[[1,0,0,1],[1,2,3,2],[2,1,3,1],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[2,1,3,1],[1,2,2,2]],[[1,0,0,1],[1,2,3,3],[2,1,3,2],[0,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,1,3,3],[0,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,1,3,2],[0,2,3,1]],[[1,0,0,1],[1,2,3,2],[2,1,3,2],[0,2,2,2]],[[1,0,0,1],[1,2,3,3],[2,1,3,2],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[2,1,4,2],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[2,1,3,3],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[2,1,3,2],[1,2,1,2]],[[1,0,0,1],[1,2,3,3],[2,1,3,2],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[3,1,3,2],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[2,1,4,2],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[2,1,3,3],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[2,1,3,2],[2,2,2,0]],[[1,0,0,1],[1,2,3,2],[2,1,3,2],[1,3,2,0]],[[1,0,0,1],[1,2,3,2],[2,1,3,2],[1,2,3,0]],[[1,0,0,1],[1,2,3,3],[2,2,1,2],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[3,2,1,2],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,1,3],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,1,2],[2,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,1,2],[1,3,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,1,2],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[2,2,1,2],[1,2,2,2]],[[1,0,0,1],[1,2,3,2],[3,2,2,1],[1,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,2,1],[2,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,2,1],[1,3,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,2,1],[1,2,3,1]],[[1,0,0,1],[1,2,3,2],[2,2,2,1],[1,2,2,2]],[[1,0,0,1],[1,2,3,3],[2,2,2,2],[0,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,2,3],[0,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,2,2],[0,3,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,2,2],[0,2,3,1]],[[1,0,0,1],[1,2,3,2],[2,2,2,2],[0,2,2,2]],[[1,0,0,1],[1,2,3,2],[3,2,2,2],[1,2,2,0]],[[1,0,0,1],[1,2,3,2],[2,2,2,2],[2,2,2,0]],[[1,0,0,1],[1,2,3,2],[2,2,2,2],[1,3,2,0]],[[1,0,0,1],[1,2,3,2],[2,2,2,2],[1,2,3,0]],[[1,0,0,1],[1,2,3,2],[2,2,4,1],[0,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,3,1],[0,3,2,1]],[[1,0,0,1],[1,2,3,2],[2,2,3,1],[0,2,3,1]],[[1,0,0,1],[1,2,3,2],[2,2,3,1],[0,2,2,2]],[[1,0,0,1],[1,2,3,2],[3,2,3,1],[1,2,1,1]],[[1,0,0,1],[1,2,3,2],[2,2,3,1],[2,2,1,1]],[[1,0,0,1],[1,2,3,2],[2,2,3,1],[1,3,1,1]],[[1,0,0,1],[1,2,3,3],[2,2,3,2],[0,2,1,1]],[[1,0,0,1],[1,2,3,2],[2,2,4,2],[0,2,1,1]],[[1,0,0,1],[1,2,3,2],[2,2,3,3],[0,2,1,1]],[[1,0,0,1],[1,2,3,2],[2,2,3,2],[0,2,1,2]],[[1,0,0,1],[1,2,3,3],[2,2,3,2],[0,2,2,0]],[[1,0,0,1],[1,2,3,2],[2,2,4,2],[0,2,2,0]],[[1,0,0,1],[1,2,3,2],[2,2,3,3],[0,2,2,0]],[[1,0,0,1],[1,2,3,2],[2,2,3,2],[0,3,2,0]],[[1,0,0,1],[1,2,3,2],[2,2,3,2],[0,2,3,0]],[[1,0,0,1],[1,2,3,2],[3,2,3,2],[1,2,0,1]],[[1,0,0,1],[1,2,3,2],[2,2,3,2],[2,2,0,1]],[[1,0,0,1],[1,2,3,2],[2,2,3,2],[1,3,0,1]],[[1,0,0,1],[1,2,3,2],[3,2,3,2],[1,2,1,0]],[[1,0,0,1],[1,2,3,2],[2,2,3,2],[2,2,1,0]],[[1,0,0,1],[1,2,3,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,3,1,2],[2,3,3,1],[0,1,3,0]],[[1,2,2,0],[0,3,1,2],[2,3,4,1],[0,1,2,0]],[[1,2,2,0],[0,3,1,2],[2,4,3,1],[0,1,2,0]],[[1,2,2,0],[0,3,1,2],[3,3,3,1],[0,1,2,0]],[[1,2,2,0],[0,4,1,2],[2,3,3,1],[0,1,2,0]],[[1,0,0,1],[1,2,3,3],[2,3,1,2],[0,2,2,1]],[[1,0,0,1],[1,2,3,2],[3,3,1,2],[0,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,4,1,2],[0,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,1,3],[0,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,1,2],[0,3,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,1,2],[0,2,3,1]],[[1,0,0,1],[1,2,3,2],[2,3,1,2],[0,2,2,2]],[[1,0,0,1],[1,2,3,2],[3,3,1,2],[1,1,2,1]],[[1,0,0,1],[1,2,3,2],[2,4,1,2],[1,1,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,1,2],[2,1,2,1]],[[1,0,0,1],[1,2,3,2],[3,3,2,1],[0,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,4,2,1],[0,2,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,2,1],[0,3,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,2,1],[0,2,3,1]],[[1,0,0,1],[1,2,3,2],[2,3,2,1],[0,2,2,2]],[[1,0,0,1],[1,2,3,2],[3,3,2,1],[1,1,2,1]],[[1,0,0,1],[1,2,3,2],[2,4,2,1],[1,1,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,2,1],[2,1,2,1]],[[1,0,0,1],[1,2,3,3],[2,3,2,2],[0,1,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,2,3],[0,1,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,2,2],[0,1,3,1]],[[1,0,0,1],[1,2,3,2],[2,3,2,2],[0,1,2,2]],[[1,0,0,1],[1,2,3,2],[3,3,2,2],[0,2,2,0]],[[1,0,0,1],[1,2,3,2],[2,4,2,2],[0,2,2,0]],[[1,0,0,1],[1,2,3,2],[2,3,2,2],[0,3,2,0]],[[1,0,0,1],[1,2,3,2],[2,3,2,2],[0,2,3,0]],[[1,0,0,1],[1,2,3,3],[2,3,2,2],[1,0,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,2,3],[1,0,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,2,2],[1,0,3,1]],[[1,0,0,1],[1,2,3,2],[2,3,2,2],[1,0,2,2]],[[1,0,0,1],[1,2,3,2],[3,3,2,2],[1,1,2,0]],[[1,0,0,1],[1,2,3,2],[2,4,2,2],[1,1,2,0]],[[1,0,0,1],[1,2,3,2],[2,3,2,2],[2,1,2,0]],[[1,2,3,0],[0,3,1,2],[2,3,3,1],[0,1,2,0]],[[1,3,2,0],[0,3,1,2],[2,3,3,1],[0,1,2,0]],[[2,2,2,0],[0,3,1,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,0],[0,3,1,2],[2,3,4,1],[0,1,1,1]],[[1,2,2,0],[0,3,1,2],[2,4,3,1],[0,1,1,1]],[[1,2,2,0],[0,3,1,2],[3,3,3,1],[0,1,1,1]],[[1,2,2,0],[0,4,1,2],[2,3,3,1],[0,1,1,1]],[[1,2,3,0],[0,3,1,2],[2,3,3,1],[0,1,1,1]],[[1,0,0,1],[1,2,3,2],[3,3,3,1],[0,1,2,1]],[[1,0,0,1],[1,2,3,2],[2,4,3,1],[0,1,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,4,1],[0,1,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,1],[0,1,3,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,1],[0,1,2,2]],[[1,0,0,1],[1,2,3,2],[3,3,3,1],[0,2,1,1]],[[1,0,0,1],[1,2,3,2],[2,4,3,1],[0,2,1,1]],[[1,0,0,1],[1,2,3,2],[2,3,4,1],[0,2,1,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,1],[0,3,1,1]],[[1,0,0,1],[1,2,3,2],[3,3,3,1],[1,0,2,1]],[[1,0,0,1],[1,2,3,2],[2,4,3,1],[1,0,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,4,1],[1,0,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,1],[2,0,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,1],[1,0,3,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,1],[1,0,2,2]],[[1,0,0,1],[1,2,3,2],[3,3,3,1],[1,1,1,1]],[[1,0,0,1],[1,2,3,2],[2,4,3,1],[1,1,1,1]],[[1,0,0,1],[1,2,3,2],[2,3,4,1],[1,1,1,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,1],[2,1,1,1]],[[1,3,2,0],[0,3,1,2],[2,3,3,1],[0,1,1,1]],[[2,2,2,0],[0,3,1,2],[2,3,3,1],[0,1,1,1]],[[1,0,0,1],[1,2,3,3],[2,3,3,2],[0,0,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,4,2],[0,0,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,3],[0,0,2,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[0,0,2,2]],[[1,0,0,1],[1,2,3,3],[2,3,3,2],[0,1,1,1]],[[1,0,0,1],[1,2,3,2],[3,3,3,2],[0,1,1,1]],[[1,0,0,1],[1,2,3,2],[2,4,3,2],[0,1,1,1]],[[1,0,0,1],[1,2,3,2],[2,3,4,2],[0,1,1,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,3],[0,1,1,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[0,1,1,2]],[[1,0,0,1],[1,2,3,3],[2,3,3,2],[0,1,2,0]],[[1,0,0,1],[1,2,3,2],[3,3,3,2],[0,1,2,0]],[[1,0,0,1],[1,2,3,2],[2,4,3,2],[0,1,2,0]],[[1,0,0,1],[1,2,3,2],[2,3,4,2],[0,1,2,0]],[[1,0,0,1],[1,2,3,2],[2,3,3,3],[0,1,2,0]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[0,1,3,0]],[[1,0,0,1],[1,2,3,3],[2,3,3,2],[0,2,0,1]],[[1,0,0,1],[1,2,3,2],[3,3,3,2],[0,2,0,1]],[[1,0,0,1],[1,2,3,2],[2,4,3,2],[0,2,0,1]],[[1,0,0,1],[1,2,3,2],[2,3,4,2],[0,2,0,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,3],[0,2,0,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[0,3,0,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[0,2,0,2]],[[1,0,0,1],[1,2,3,3],[2,3,3,2],[0,2,1,0]],[[1,0,0,1],[1,2,3,2],[3,3,3,2],[0,2,1,0]],[[1,0,0,1],[1,2,3,2],[2,4,3,2],[0,2,1,0]],[[1,0,0,1],[1,2,3,2],[2,3,4,2],[0,2,1,0]],[[1,0,0,1],[1,2,3,2],[2,3,3,3],[0,2,1,0]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,3,1,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,0],[0,3,1,2],[2,4,3,0],[1,2,0,1]],[[1,2,2,0],[0,3,1,2],[3,3,3,0],[1,2,0,1]],[[1,2,2,0],[0,4,1,2],[2,3,3,0],[1,2,0,1]],[[1,0,0,1],[1,2,3,3],[2,3,3,2],[1,0,1,1]],[[1,0,0,1],[1,2,3,2],[3,3,3,2],[1,0,1,1]],[[1,0,0,1],[1,2,3,2],[2,4,3,2],[1,0,1,1]],[[1,0,0,1],[1,2,3,2],[2,3,4,2],[1,0,1,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,3],[1,0,1,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[2,0,1,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[1,0,1,2]],[[1,0,0,1],[1,2,3,3],[2,3,3,2],[1,0,2,0]],[[1,0,0,1],[1,2,3,2],[3,3,3,2],[1,0,2,0]],[[1,0,0,1],[1,2,3,2],[2,4,3,2],[1,0,2,0]],[[1,0,0,1],[1,2,3,2],[2,3,4,2],[1,0,2,0]],[[1,0,0,1],[1,2,3,2],[2,3,3,3],[1,0,2,0]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[2,0,2,0]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[1,0,3,0]],[[1,0,0,1],[1,2,3,3],[2,3,3,2],[1,1,0,1]],[[1,0,0,1],[1,2,3,2],[3,3,3,2],[1,1,0,1]],[[1,0,0,1],[1,2,3,2],[2,4,3,2],[1,1,0,1]],[[1,0,0,1],[1,2,3,2],[2,3,4,2],[1,1,0,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,3],[1,1,0,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[2,1,0,1]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[1,1,0,2]],[[1,0,0,1],[1,2,3,3],[2,3,3,2],[1,1,1,0]],[[1,0,0,1],[1,2,3,2],[3,3,3,2],[1,1,1,0]],[[1,0,0,1],[1,2,3,2],[2,4,3,2],[1,1,1,0]],[[1,0,0,1],[1,2,3,2],[2,3,4,2],[1,1,1,0]],[[1,0,0,1],[1,2,3,2],[2,3,3,3],[1,1,1,0]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[2,1,1,0]],[[1,2,3,0],[0,3,1,2],[2,3,3,0],[1,2,0,1]],[[1,3,2,0],[0,3,1,2],[2,3,3,0],[1,2,0,1]],[[2,2,2,0],[0,3,1,2],[2,3,3,0],[1,2,0,1]],[[1,0,0,1],[1,2,3,2],[3,3,3,2],[1,2,0,0]],[[1,0,0,1],[1,2,3,2],[2,4,3,2],[1,2,0,0]],[[1,0,0,1],[1,2,3,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,3,1,2],[2,3,3,0],[2,1,1,1]],[[1,2,2,0],[0,3,1,2],[2,3,4,0],[1,1,1,1]],[[1,2,2,0],[0,3,1,2],[2,4,3,0],[1,1,1,1]],[[1,2,2,0],[0,3,1,2],[3,3,3,0],[1,1,1,1]],[[1,2,2,0],[0,4,1,2],[2,3,3,0],[1,1,1,1]],[[1,2,3,0],[0,3,1,2],[2,3,3,0],[1,1,1,1]],[[1,3,2,0],[0,3,1,2],[2,3,3,0],[1,1,1,1]],[[2,2,2,0],[0,3,1,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,0],[0,3,1,2],[2,3,3,0],[1,0,2,2]],[[1,2,2,0],[0,3,1,2],[2,3,3,0],[1,0,3,1]],[[1,2,2,0],[0,3,1,2],[2,3,3,0],[2,0,2,1]],[[1,2,2,0],[0,3,1,2],[2,3,4,0],[1,0,2,1]],[[1,2,2,0],[0,3,1,2],[2,4,3,0],[1,0,2,1]],[[1,2,2,0],[0,3,1,2],[3,3,3,0],[1,0,2,1]],[[1,2,2,0],[0,4,1,2],[2,3,3,0],[1,0,2,1]],[[1,2,3,0],[0,3,1,2],[2,3,3,0],[1,0,2,1]],[[1,3,2,0],[0,3,1,2],[2,3,3,0],[1,0,2,1]],[[2,2,2,0],[0,3,1,2],[2,3,3,0],[1,0,2,1]],[[1,0,0,1],[1,3,0,2],[1,3,3,3],[1,2,2,1]],[[1,0,0,1],[1,3,0,2],[1,3,3,2],[2,2,2,1]],[[1,0,0,1],[1,3,0,2],[1,3,3,2],[1,3,2,1]],[[1,0,0,1],[1,3,0,2],[1,3,3,2],[1,2,3,1]],[[1,0,0,1],[1,3,0,2],[1,3,3,2],[1,2,2,2]],[[1,0,0,1],[1,3,0,2],[2,3,3,3],[0,2,2,1]],[[1,0,0,1],[1,3,0,2],[2,3,3,2],[0,3,2,1]],[[1,0,0,1],[1,3,0,2],[2,3,3,2],[0,2,3,1]],[[1,0,0,1],[1,3,0,2],[2,3,3,2],[0,2,2,2]],[[1,2,2,0],[0,3,1,2],[2,3,3,0],[0,3,1,1]],[[1,2,2,0],[0,3,1,2],[2,3,4,0],[0,2,1,1]],[[1,2,2,0],[0,3,1,2],[2,4,3,0],[0,2,1,1]],[[1,2,2,0],[0,3,1,2],[3,3,3,0],[0,2,1,1]],[[1,2,2,0],[0,4,1,2],[2,3,3,0],[0,2,1,1]],[[1,2,3,0],[0,3,1,2],[2,3,3,0],[0,2,1,1]],[[1,3,2,0],[0,3,1,2],[2,3,3,0],[0,2,1,1]],[[2,2,2,0],[0,3,1,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,0],[0,3,1,2],[2,3,3,0],[0,1,2,2]],[[1,2,2,0],[0,3,1,2],[2,3,3,0],[0,1,3,1]],[[1,2,2,0],[0,3,1,2],[2,3,4,0],[0,1,2,1]],[[1,2,2,0],[0,3,1,2],[2,4,3,0],[0,1,2,1]],[[1,2,2,0],[0,3,1,2],[3,3,3,0],[0,1,2,1]],[[1,2,2,0],[0,4,1,2],[2,3,3,0],[0,1,2,1]],[[1,2,3,0],[0,3,1,2],[2,3,3,0],[0,1,2,1]],[[1,3,2,0],[0,3,1,2],[2,3,3,0],[0,1,2,1]],[[2,2,2,0],[0,3,1,2],[2,3,3,0],[0,1,2,1]],[[1,0,0,1],[1,3,3,3],[1,0,3,2],[1,2,2,1]],[[1,0,0,1],[1,3,3,2],[1,0,3,3],[1,2,2,1]],[[1,0,0,1],[1,3,3,2],[1,0,3,2],[1,2,3,1]],[[1,0,0,1],[1,3,3,2],[1,0,3,2],[1,2,2,2]],[[1,0,0,1],[1,3,3,3],[1,1,2,2],[1,2,2,1]],[[1,0,0,1],[1,3,3,2],[1,1,2,3],[1,2,2,1]],[[1,0,0,1],[1,3,3,2],[1,1,2,2],[2,2,2,1]],[[1,0,0,1],[1,3,3,2],[1,1,2,2],[1,3,2,1]],[[1,0,0,1],[1,3,3,2],[1,1,2,2],[1,2,3,1]],[[1,0,0,1],[1,3,3,2],[1,1,2,2],[1,2,2,2]],[[1,0,0,1],[1,3,3,2],[1,1,4,1],[1,2,2,1]],[[1,0,0,1],[1,3,3,2],[1,1,3,1],[2,2,2,1]],[[1,0,0,1],[1,3,3,2],[1,1,3,1],[1,3,2,1]],[[1,0,0,1],[1,3,3,2],[1,1,3,1],[1,2,3,1]],[[1,0,0,1],[1,3,3,2],[1,1,3,1],[1,2,2,2]],[[1,0,0,1],[1,3,3,3],[1,1,3,2],[1,2,1,1]],[[1,0,0,1],[1,3,3,2],[1,1,4,2],[1,2,1,1]],[[1,0,0,1],[1,3,3,2],[1,1,3,3],[1,2,1,1]],[[1,0,0,1],[1,3,3,2],[1,1,3,2],[1,2,1,2]],[[1,0,0,1],[1,3,3,3],[1,1,3,2],[1,2,2,0]],[[1,0,0,1],[1,3,3,2],[1,1,4,2],[1,2,2,0]],[[1,0,0,1],[1,3,3,2],[1,1,3,3],[1,2,2,0]],[[1,0,0,1],[1,3,3,2],[1,1,3,2],[2,2,2,0]],[[1,0,0,1],[1,3,3,2],[1,1,3,2],[1,3,2,0]],[[1,0,0,1],[1,3,3,2],[1,1,3,2],[1,2,3,0]],[[1,0,0,1],[1,3,3,3],[1,2,2,2],[1,1,2,1]],[[1,0,0,1],[1,3,3,2],[1,2,2,3],[1,1,2,1]],[[1,0,0,1],[1,3,3,2],[1,2,2,2],[1,1,3,1]],[[1,0,0,1],[1,3,3,2],[1,2,2,2],[1,1,2,2]],[[1,0,0,1],[1,3,3,2],[1,2,4,1],[1,1,2,1]],[[1,0,0,1],[1,3,3,2],[1,2,3,1],[1,1,3,1]],[[1,0,0,1],[1,3,3,2],[1,2,3,1],[1,1,2,2]],[[1,0,0,1],[1,3,3,3],[1,2,3,2],[1,0,2,1]],[[1,0,0,1],[1,3,3,2],[1,2,4,2],[1,0,2,1]],[[1,0,0,1],[1,3,3,2],[1,2,3,3],[1,0,2,1]],[[1,0,0,1],[1,3,3,2],[1,2,3,2],[1,0,2,2]],[[1,0,0,1],[1,3,3,3],[1,2,3,2],[1,1,1,1]],[[1,0,0,1],[1,3,3,2],[1,2,4,2],[1,1,1,1]],[[1,0,0,1],[1,3,3,2],[1,2,3,3],[1,1,1,1]],[[1,0,0,1],[1,3,3,2],[1,2,3,2],[1,1,1,2]],[[1,0,0,1],[1,3,3,3],[1,2,3,2],[1,1,2,0]],[[1,0,0,1],[1,3,3,2],[1,2,4,2],[1,1,2,0]],[[1,0,0,1],[1,3,3,2],[1,2,3,3],[1,1,2,0]],[[1,0,0,1],[1,3,3,2],[1,2,3,2],[1,1,3,0]],[[1,0,0,1],[1,3,3,3],[1,2,3,2],[1,2,0,1]],[[1,0,0,1],[1,3,3,2],[1,2,4,2],[1,2,0,1]],[[1,0,0,1],[1,3,3,2],[1,2,3,3],[1,2,0,1]],[[1,0,0,1],[1,3,3,2],[1,2,3,2],[1,2,0,2]],[[1,0,0,1],[1,3,3,3],[1,2,3,2],[1,2,1,0]],[[1,0,0,1],[1,3,3,2],[1,2,4,2],[1,2,1,0]],[[1,0,0,1],[1,3,3,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,0],[0,3,1,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[0,3,1,2],[2,4,2,1],[1,1,2,0]],[[1,2,2,0],[0,3,1,2],[3,3,2,1],[1,1,2,0]],[[1,2,2,0],[0,4,1,2],[2,3,2,1],[1,1,2,0]],[[1,2,3,0],[0,3,1,2],[2,3,2,1],[1,1,2,0]],[[1,3,2,0],[0,3,1,2],[2,3,2,1],[1,1,2,0]],[[2,2,2,0],[0,3,1,2],[2,3,2,1],[1,1,2,0]],[[1,2,2,0],[0,3,1,2],[2,3,2,1],[0,2,3,0]],[[1,0,0,1],[1,3,3,3],[2,0,2,2],[1,2,2,1]],[[1,0,0,1],[1,3,3,2],[3,0,2,2],[1,2,2,1]],[[1,0,0,1],[1,3,3,2],[2,0,2,3],[1,2,2,1]],[[1,0,0,1],[1,3,3,2],[2,0,2,2],[2,2,2,1]],[[1,0,0,1],[1,3,3,2],[2,0,2,2],[1,3,2,1]],[[1,0,0,1],[1,3,3,2],[2,0,2,2],[1,2,3,1]],[[1,0,0,1],[1,3,3,2],[2,0,2,2],[1,2,2,2]],[[1,0,0,1],[1,3,3,2],[3,0,3,1],[1,2,2,1]],[[1,0,0,1],[1,3,3,2],[2,0,4,1],[1,2,2,1]],[[1,0,0,1],[1,3,3,2],[2,0,3,1],[2,2,2,1]],[[1,0,0,1],[1,3,3,2],[2,0,3,1],[1,3,2,1]],[[1,0,0,1],[1,3,3,2],[2,0,3,1],[1,2,3,1]],[[1,0,0,1],[1,3,3,2],[2,0,3,1],[1,2,2,2]],[[1,0,0,1],[1,3,3,3],[2,0,3,2],[0,2,2,1]],[[1,0,0,1],[1,3,3,2],[2,0,3,3],[0,2,2,1]],[[1,0,0,1],[1,3,3,2],[2,0,3,2],[0,2,3,1]],[[1,0,0,1],[1,3,3,2],[2,0,3,2],[0,2,2,2]],[[1,0,0,1],[1,3,3,3],[2,0,3,2],[1,2,1,1]],[[1,0,0,1],[1,3,3,2],[2,0,4,2],[1,2,1,1]],[[1,0,0,1],[1,3,3,2],[2,0,3,3],[1,2,1,1]],[[1,0,0,1],[1,3,3,2],[2,0,3,2],[1,2,1,2]],[[1,0,0,1],[1,3,3,3],[2,0,3,2],[1,2,2,0]],[[1,0,0,1],[1,3,3,2],[3,0,3,2],[1,2,2,0]],[[1,0,0,1],[1,3,3,2],[2,0,4,2],[1,2,2,0]],[[1,0,0,1],[1,3,3,2],[2,0,3,3],[1,2,2,0]],[[1,0,0,1],[1,3,3,2],[2,0,3,2],[2,2,2,0]],[[1,0,0,1],[1,3,3,2],[2,0,3,2],[1,3,2,0]],[[1,0,0,1],[1,3,3,2],[2,0,3,2],[1,2,3,0]],[[1,0,0,1],[1,3,3,3],[2,1,2,2],[0,2,2,1]],[[1,0,0,1],[1,3,3,2],[2,1,2,3],[0,2,2,1]],[[1,0,0,1],[1,3,3,2],[2,1,2,2],[0,3,2,1]],[[1,0,0,1],[1,3,3,2],[2,1,2,2],[0,2,3,1]],[[1,0,0,1],[1,3,3,2],[2,1,2,2],[0,2,2,2]],[[1,0,0,1],[1,3,3,2],[2,1,4,1],[0,2,2,1]],[[1,0,0,1],[1,3,3,2],[2,1,3,1],[0,3,2,1]],[[1,0,0,1],[1,3,3,2],[2,1,3,1],[0,2,3,1]],[[1,0,0,1],[1,3,3,2],[2,1,3,1],[0,2,2,2]],[[1,0,0,1],[1,3,3,3],[2,1,3,2],[0,2,1,1]],[[1,0,0,1],[1,3,3,2],[2,1,4,2],[0,2,1,1]],[[1,0,0,1],[1,3,3,2],[2,1,3,3],[0,2,1,1]],[[1,0,0,1],[1,3,3,2],[2,1,3,2],[0,2,1,2]],[[1,0,0,1],[1,3,3,3],[2,1,3,2],[0,2,2,0]],[[1,0,0,1],[1,3,3,2],[2,1,4,2],[0,2,2,0]],[[1,0,0,1],[1,3,3,2],[2,1,3,3],[0,2,2,0]],[[1,0,0,1],[1,3,3,2],[2,1,3,2],[0,3,2,0]],[[1,0,0,1],[1,3,3,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,0],[0,3,1,2],[2,3,2,1],[0,3,2,0]],[[1,2,2,0],[0,3,1,2],[2,4,2,1],[0,2,2,0]],[[1,2,2,0],[0,3,1,2],[3,3,2,1],[0,2,2,0]],[[1,2,2,0],[0,4,1,2],[2,3,2,1],[0,2,2,0]],[[1,2,3,0],[0,3,1,2],[2,3,2,1],[0,2,2,0]],[[1,3,2,0],[0,3,1,2],[2,3,2,1],[0,2,2,0]],[[2,2,2,0],[0,3,1,2],[2,3,2,1],[0,2,2,0]],[[1,0,0,1],[1,3,3,3],[2,2,2,2],[0,1,2,1]],[[1,0,0,1],[1,3,3,2],[2,2,2,3],[0,1,2,1]],[[1,0,0,1],[1,3,3,2],[2,2,2,2],[0,1,3,1]],[[1,0,0,1],[1,3,3,2],[2,2,2,2],[0,1,2,2]],[[1,0,0,1],[1,3,3,3],[2,2,2,2],[1,0,2,1]],[[1,0,0,1],[1,3,3,2],[2,2,2,3],[1,0,2,1]],[[1,0,0,1],[1,3,3,2],[2,2,2,2],[1,0,3,1]],[[1,0,0,1],[1,3,3,2],[2,2,2,2],[1,0,2,2]],[[1,0,0,1],[1,3,3,2],[2,2,4,1],[0,1,2,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,1],[0,1,3,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,1],[0,1,2,2]],[[1,0,0,1],[1,3,3,2],[2,2,4,1],[1,0,2,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,1],[1,0,3,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,1],[1,0,2,2]],[[1,2,2,0],[0,3,1,2],[2,3,2,0],[2,1,2,1]],[[1,2,2,0],[0,3,1,2],[2,4,2,0],[1,1,2,1]],[[1,2,2,0],[0,3,1,2],[3,3,2,0],[1,1,2,1]],[[1,2,2,0],[0,4,1,2],[2,3,2,0],[1,1,2,1]],[[1,0,0,1],[1,3,3,3],[2,2,3,2],[0,0,2,1]],[[1,0,0,1],[1,3,3,2],[2,2,4,2],[0,0,2,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,3],[0,0,2,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,2],[0,0,2,2]],[[1,0,0,1],[1,3,3,3],[2,2,3,2],[0,1,1,1]],[[1,0,0,1],[1,3,3,2],[2,2,4,2],[0,1,1,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,3],[0,1,1,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,2],[0,1,1,2]],[[1,0,0,1],[1,3,3,3],[2,2,3,2],[0,1,2,0]],[[1,0,0,1],[1,3,3,2],[2,2,4,2],[0,1,2,0]],[[1,0,0,1],[1,3,3,2],[2,2,3,3],[0,1,2,0]],[[1,0,0,1],[1,3,3,2],[2,2,3,2],[0,1,3,0]],[[1,0,0,1],[1,3,3,3],[2,2,3,2],[0,2,0,1]],[[1,0,0,1],[1,3,3,2],[2,2,4,2],[0,2,0,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,3],[0,2,0,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,2],[0,2,0,2]],[[1,0,0,1],[1,3,3,3],[2,2,3,2],[0,2,1,0]],[[1,0,0,1],[1,3,3,2],[2,2,4,2],[0,2,1,0]],[[1,0,0,1],[1,3,3,2],[2,2,3,3],[0,2,1,0]],[[1,2,3,0],[0,3,1,2],[2,3,2,0],[1,1,2,1]],[[1,3,2,0],[0,3,1,2],[2,3,2,0],[1,1,2,1]],[[2,2,2,0],[0,3,1,2],[2,3,2,0],[1,1,2,1]],[[1,2,2,0],[0,3,1,2],[2,3,2,0],[0,2,2,2]],[[1,2,2,0],[0,3,1,2],[2,3,2,0],[0,2,3,1]],[[1,2,2,0],[0,3,1,2],[2,3,2,0],[0,3,2,1]],[[1,0,0,1],[1,3,3,3],[2,2,3,2],[1,0,1,1]],[[1,0,0,1],[1,3,3,2],[2,2,4,2],[1,0,1,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,3],[1,0,1,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,2],[1,0,1,2]],[[1,0,0,1],[1,3,3,3],[2,2,3,2],[1,0,2,0]],[[1,0,0,1],[1,3,3,2],[2,2,4,2],[1,0,2,0]],[[1,0,0,1],[1,3,3,2],[2,2,3,3],[1,0,2,0]],[[1,0,0,1],[1,3,3,2],[2,2,3,2],[1,0,3,0]],[[1,0,0,1],[1,3,3,3],[2,2,3,2],[1,1,0,1]],[[1,0,0,1],[1,3,3,2],[2,2,4,2],[1,1,0,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,3],[1,1,0,1]],[[1,0,0,1],[1,3,3,2],[2,2,3,2],[1,1,0,2]],[[1,0,0,1],[1,3,3,3],[2,2,3,2],[1,1,1,0]],[[1,0,0,1],[1,3,3,2],[2,2,4,2],[1,1,1,0]],[[1,0,0,1],[1,3,3,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,0],[0,3,1,2],[2,4,2,0],[0,2,2,1]],[[1,2,2,0],[0,3,1,2],[3,3,2,0],[0,2,2,1]],[[1,2,2,0],[0,4,1,2],[2,3,2,0],[0,2,2,1]],[[1,2,3,0],[0,3,1,2],[2,3,2,0],[0,2,2,1]],[[1,3,2,0],[0,3,1,2],[2,3,2,0],[0,2,2,1]],[[2,2,2,0],[0,3,1,2],[2,3,2,0],[0,2,2,1]],[[1,2,2,0],[0,3,1,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,0],[0,3,1,2],[2,3,1,1],[2,2,2,0]],[[1,2,2,0],[0,3,1,2],[3,3,1,1],[1,2,2,0]],[[1,2,2,0],[0,3,1,2],[2,3,1,0],[1,3,2,1]],[[1,2,2,0],[0,3,1,2],[2,3,1,0],[2,2,2,1]],[[1,2,2,0],[0,3,1,2],[3,3,1,0],[1,2,2,1]],[[1,2,2,0],[0,3,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,0],[0,3,1,2],[2,4,0,2],[1,1,2,1]],[[1,2,2,0],[0,3,1,2],[3,3,0,2],[1,1,2,1]],[[1,2,2,0],[0,4,1,2],[2,3,0,2],[1,1,2,1]],[[1,2,3,0],[0,3,1,2],[2,3,0,2],[1,1,2,1]],[[1,3,2,0],[0,3,1,2],[2,3,0,2],[1,1,2,1]],[[2,2,2,0],[0,3,1,2],[2,3,0,2],[1,1,2,1]],[[1,2,2,0],[0,3,1,2],[2,3,0,2],[0,2,2,2]],[[1,2,2,0],[0,3,1,2],[2,3,0,2],[0,2,3,1]],[[1,2,2,0],[0,3,1,2],[2,3,0,2],[0,3,2,1]],[[1,2,2,0],[0,3,1,2],[2,3,0,3],[0,2,2,1]],[[1,2,2,0],[0,3,1,2],[2,4,0,2],[0,2,2,1]],[[1,2,2,0],[0,3,1,2],[3,3,0,2],[0,2,2,1]],[[1,2,2,0],[0,3,1,3],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[0,4,1,2],[2,3,0,2],[0,2,2,1]],[[1,2,3,0],[0,3,1,2],[2,3,0,2],[0,2,2,1]],[[1,3,2,0],[0,3,1,2],[2,3,0,2],[0,2,2,1]],[[2,2,2,0],[0,3,1,2],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[0,3,1,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[0,3,1,2],[2,2,3,1],[2,2,1,0]],[[1,2,2,0],[0,3,1,2],[3,2,3,1],[1,2,1,0]],[[1,0,0,1],[1,3,3,3],[2,3,3,2],[0,0,1,1]],[[1,0,0,1],[1,3,3,2],[2,3,4,2],[0,0,1,1]],[[1,0,0,1],[1,3,3,2],[2,3,3,3],[0,0,1,1]],[[1,0,0,1],[1,3,3,2],[2,3,3,2],[0,0,1,2]],[[1,0,0,1],[1,3,3,3],[2,3,3,2],[0,0,2,0]],[[1,0,0,1],[1,3,3,2],[2,3,4,2],[0,0,2,0]],[[1,0,0,1],[1,3,3,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,0],[0,3,1,2],[2,2,3,1],[1,3,0,1]],[[1,2,2,0],[0,3,1,2],[2,2,3,1],[2,2,0,1]],[[1,2,2,0],[0,3,1,2],[3,2,3,1],[1,2,0,1]],[[1,2,2,0],[0,3,1,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,0],[0,3,1,2],[2,2,3,1],[0,3,2,0]],[[1,2,2,0],[0,3,1,2],[2,2,4,1],[0,2,2,0]],[[1,2,2,0],[0,3,1,2],[2,2,3,0],[1,3,1,1]],[[1,2,2,0],[0,3,1,2],[2,2,3,0],[2,2,1,1]],[[1,2,2,0],[0,3,1,2],[3,2,3,0],[1,2,1,1]],[[1,2,2,0],[0,3,1,2],[2,2,3,0],[0,2,2,2]],[[1,2,2,0],[0,3,1,2],[2,2,3,0],[0,2,3,1]],[[1,2,2,0],[0,3,1,2],[2,2,3,0],[0,3,2,1]],[[1,2,2,0],[0,3,1,2],[2,2,4,0],[0,2,2,1]],[[1,2,2,0],[0,3,1,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,0],[0,3,1,2],[2,2,2,1],[1,3,2,0]],[[1,2,2,0],[0,3,1,2],[2,2,2,1],[2,2,2,0]],[[1,2,2,0],[0,3,1,2],[3,2,2,1],[1,2,2,0]],[[1,2,2,0],[0,3,1,2],[2,2,2,0],[1,2,2,2]],[[1,2,2,0],[0,3,1,2],[2,2,2,0],[1,2,3,1]],[[1,2,2,0],[0,3,1,2],[2,2,2,0],[1,3,2,1]],[[1,2,2,0],[0,3,1,2],[2,2,2,0],[2,2,2,1]],[[1,2,2,0],[0,3,1,2],[3,2,2,0],[1,2,2,1]],[[1,2,2,0],[0,3,1,2],[2,2,0,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,2],[2,2,0,2],[1,2,3,1]],[[1,2,2,0],[0,3,1,2],[2,2,0,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,2],[2,2,0,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,2],[2,2,0,3],[1,2,2,1]],[[1,2,2,0],[0,3,1,2],[3,2,0,2],[1,2,2,1]],[[1,2,2,0],[0,3,1,3],[2,2,0,2],[1,2,2,1]],[[1,2,2,0],[0,3,1,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,0],[0,3,1,2],[2,1,3,1],[1,3,2,0]],[[1,2,2,0],[0,3,1,2],[2,1,3,1],[2,2,2,0]],[[1,2,2,0],[0,3,1,2],[2,1,4,1],[1,2,2,0]],[[1,2,2,0],[0,3,1,2],[3,1,3,1],[1,2,2,0]],[[1,2,2,0],[0,3,1,2],[2,1,3,0],[1,2,2,2]],[[1,2,2,0],[0,3,1,2],[2,1,3,0],[1,2,3,1]],[[1,2,2,0],[0,3,1,2],[2,1,3,0],[1,3,2,1]],[[1,2,2,0],[0,3,1,2],[2,1,3,0],[2,2,2,1]],[[1,2,2,0],[0,3,1,2],[2,1,4,0],[1,2,2,1]],[[1,2,2,0],[0,3,1,2],[3,1,3,0],[1,2,2,1]],[[1,0,0,1],[2,0,2,1],[3,3,3,2],[1,2,2,1]],[[1,0,0,1],[2,0,2,1],[2,3,3,2],[2,2,2,1]],[[1,0,0,1],[2,0,2,1],[2,3,3,2],[1,3,2,1]],[[1,0,0,1],[2,0,2,1],[2,3,3,2],[1,2,3,1]],[[1,0,0,1],[2,0,2,1],[2,3,3,2],[1,2,2,2]],[[1,0,0,1],[2,0,2,2],[1,3,3,3],[1,2,2,1]],[[1,0,0,1],[2,0,2,2],[1,3,3,2],[2,2,2,1]],[[1,0,0,1],[2,0,2,2],[1,3,3,2],[1,3,2,1]],[[1,0,0,1],[2,0,2,2],[1,3,3,2],[1,2,3,1]],[[1,0,0,1],[2,0,2,2],[1,3,3,2],[1,2,2,2]],[[1,0,0,1],[2,0,2,2],[3,2,3,2],[1,2,2,1]],[[1,0,0,1],[2,0,2,2],[2,2,3,3],[1,2,2,1]],[[1,0,0,1],[2,0,2,2],[2,2,3,2],[2,2,2,1]],[[1,0,0,1],[2,0,2,2],[2,2,3,2],[1,3,2,1]],[[1,0,0,1],[2,0,2,2],[2,2,3,2],[1,2,3,1]],[[1,0,0,1],[2,0,2,2],[2,2,3,2],[1,2,2,2]],[[1,0,0,1],[2,0,2,2],[3,3,2,2],[1,2,2,1]],[[1,0,0,1],[2,0,2,2],[2,3,2,3],[1,2,2,1]],[[1,0,0,1],[2,0,2,2],[2,3,2,2],[2,2,2,1]],[[1,0,0,1],[2,0,2,2],[2,3,2,2],[1,3,2,1]],[[1,0,0,1],[2,0,2,2],[2,3,2,2],[1,2,3,1]],[[1,0,0,1],[2,0,2,2],[2,3,2,2],[1,2,2,2]],[[1,0,0,1],[2,0,2,2],[3,3,3,1],[1,2,2,1]],[[1,0,0,1],[2,0,2,2],[2,3,3,1],[2,2,2,1]],[[1,0,0,1],[2,0,2,2],[2,3,3,1],[1,3,2,1]],[[1,0,0,1],[2,0,2,2],[2,3,3,1],[1,2,3,1]],[[1,0,0,1],[2,0,2,2],[2,3,3,1],[1,2,2,2]],[[1,0,0,1],[2,0,2,2],[2,3,3,3],[0,2,2,1]],[[1,0,0,1],[2,0,2,2],[2,3,3,2],[0,3,2,1]],[[1,0,0,1],[2,0,2,2],[2,3,3,2],[0,2,3,1]],[[1,0,0,1],[2,0,2,2],[2,3,3,2],[0,2,2,2]],[[1,0,0,1],[2,0,2,2],[3,3,3,2],[1,2,2,0]],[[1,0,0,1],[2,0,2,2],[2,3,3,2],[2,2,2,0]],[[1,0,0,1],[2,0,2,2],[2,3,3,2],[1,3,2,0]],[[1,0,0,1],[2,0,2,2],[2,3,3,2],[1,2,3,0]],[[1,0,0,1],[2,0,3,0],[3,3,3,2],[1,2,2,1]],[[1,0,0,1],[2,0,3,0],[2,3,3,2],[2,2,2,1]],[[1,0,0,1],[2,0,3,0],[2,3,3,2],[1,3,2,1]],[[1,0,0,1],[2,0,3,0],[2,3,3,2],[1,2,3,1]],[[1,0,0,1],[2,0,3,0],[2,3,3,2],[1,2,2,2]],[[1,0,0,1],[2,0,3,1],[3,3,3,1],[1,2,2,1]],[[1,0,0,1],[2,0,3,1],[2,3,3,1],[2,2,2,1]],[[1,0,0,1],[2,0,3,1],[2,3,3,1],[1,3,2,1]],[[1,0,0,1],[2,0,3,1],[2,3,3,1],[1,2,3,1]],[[1,0,0,1],[2,0,3,1],[2,3,3,1],[1,2,2,2]],[[1,0,0,1],[2,0,3,1],[3,3,3,2],[1,2,2,0]],[[1,0,0,1],[2,0,3,1],[2,3,3,2],[2,2,2,0]],[[1,0,0,1],[2,0,3,1],[2,3,3,2],[1,3,2,0]],[[1,0,0,1],[2,0,3,1],[2,3,3,2],[1,2,3,0]],[[1,0,0,1],[2,0,3,3],[1,3,2,2],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[1,3,2,3],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[1,3,2,2],[2,2,2,1]],[[1,0,0,1],[2,0,3,2],[1,3,2,2],[1,3,2,1]],[[1,0,0,1],[2,0,3,2],[1,3,2,2],[1,2,3,1]],[[1,0,0,1],[2,0,3,2],[1,3,2,2],[1,2,2,2]],[[1,0,0,1],[2,0,3,2],[1,3,4,1],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[1,3,3,1],[2,2,2,1]],[[1,0,0,1],[2,0,3,2],[1,3,3,1],[1,3,2,1]],[[1,0,0,1],[2,0,3,2],[1,3,3,1],[1,2,3,1]],[[1,0,0,1],[2,0,3,2],[1,3,3,1],[1,2,2,2]],[[1,0,0,1],[2,0,3,3],[1,3,3,2],[1,2,1,1]],[[1,0,0,1],[2,0,3,2],[1,3,4,2],[1,2,1,1]],[[1,0,0,1],[2,0,3,2],[1,3,3,3],[1,2,1,1]],[[1,0,0,1],[2,0,3,2],[1,3,3,2],[1,2,1,2]],[[1,0,0,1],[2,0,3,3],[1,3,3,2],[1,2,2,0]],[[1,0,0,1],[2,0,3,2],[1,3,4,2],[1,2,2,0]],[[1,0,0,1],[2,0,3,2],[1,3,3,3],[1,2,2,0]],[[1,0,0,1],[2,0,3,2],[1,3,3,2],[2,2,2,0]],[[1,0,0,1],[2,0,3,2],[1,3,3,2],[1,3,2,0]],[[1,0,0,1],[2,0,3,2],[1,3,3,2],[1,2,3,0]],[[1,0,0,1],[2,0,3,3],[2,2,2,2],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[3,2,2,2],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,2,2,3],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,2,2,2],[2,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,2,2,2],[1,3,2,1]],[[1,0,0,1],[2,0,3,2],[2,2,2,2],[1,2,3,1]],[[1,0,0,1],[2,0,3,2],[2,2,2,2],[1,2,2,2]],[[1,0,0,1],[2,0,3,2],[3,2,3,1],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,2,4,1],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,2,3,1],[2,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,2,3,1],[1,3,2,1]],[[1,0,0,1],[2,0,3,2],[2,2,3,1],[1,2,3,1]],[[1,0,0,1],[2,0,3,2],[2,2,3,1],[1,2,2,2]],[[1,0,0,1],[2,0,3,3],[2,2,3,2],[1,2,1,1]],[[1,0,0,1],[2,0,3,2],[2,2,4,2],[1,2,1,1]],[[1,0,0,1],[2,0,3,2],[2,2,3,3],[1,2,1,1]],[[1,0,0,1],[2,0,3,2],[2,2,3,2],[1,2,1,2]],[[1,0,0,1],[2,0,3,3],[2,2,3,2],[1,2,2,0]],[[1,0,0,1],[2,0,3,2],[3,2,3,2],[1,2,2,0]],[[1,0,0,1],[2,0,3,2],[2,2,4,2],[1,2,2,0]],[[1,0,0,1],[2,0,3,2],[2,2,3,3],[1,2,2,0]],[[1,0,0,1],[2,0,3,2],[2,2,3,2],[2,2,2,0]],[[1,0,0,1],[2,0,3,2],[2,2,3,2],[1,3,2,0]],[[1,0,0,1],[2,0,3,2],[2,2,3,2],[1,2,3,0]],[[1,0,0,1],[2,0,3,3],[2,3,1,2],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[3,3,1,2],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,1,3],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,1,2],[2,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,1,2],[1,3,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,1,2],[1,2,3,1]],[[1,0,0,1],[2,0,3,2],[2,3,1,2],[1,2,2,2]],[[1,0,0,1],[2,0,3,2],[3,3,2,1],[1,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,2,1],[2,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,2,1],[1,3,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,2,1],[1,2,3,1]],[[1,0,0,1],[2,0,3,2],[2,3,2,1],[1,2,2,2]],[[1,0,0,1],[2,0,3,3],[2,3,2,2],[0,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,2,3],[0,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,2,2],[0,3,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,2,2],[0,2,3,1]],[[1,0,0,1],[2,0,3,2],[2,3,2,2],[0,2,2,2]],[[1,0,0,1],[2,0,3,2],[3,3,2,2],[1,2,2,0]],[[1,0,0,1],[2,0,3,2],[2,3,2,2],[2,2,2,0]],[[1,0,0,1],[2,0,3,2],[2,3,2,2],[1,3,2,0]],[[1,0,0,1],[2,0,3,2],[2,3,2,2],[1,2,3,0]],[[1,0,0,1],[2,0,3,2],[2,3,4,1],[0,2,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,3,1],[0,3,2,1]],[[1,0,0,1],[2,0,3,2],[2,3,3,1],[0,2,3,1]],[[1,0,0,1],[2,0,3,2],[2,3,3,1],[0,2,2,2]],[[1,0,0,1],[2,0,3,2],[3,3,3,1],[1,2,1,1]],[[1,0,0,1],[2,0,3,2],[2,3,3,1],[2,2,1,1]],[[1,0,0,1],[2,0,3,2],[2,3,3,1],[1,3,1,1]],[[1,0,0,1],[2,0,3,3],[2,3,3,2],[0,2,1,1]],[[1,0,0,1],[2,0,3,2],[2,3,4,2],[0,2,1,1]],[[1,0,0,1],[2,0,3,2],[2,3,3,3],[0,2,1,1]],[[1,0,0,1],[2,0,3,2],[2,3,3,2],[0,2,1,2]],[[1,0,0,1],[2,0,3,3],[2,3,3,2],[0,2,2,0]],[[1,0,0,1],[2,0,3,2],[2,3,4,2],[0,2,2,0]],[[1,0,0,1],[2,0,3,2],[2,3,3,3],[0,2,2,0]],[[1,0,0,1],[2,0,3,2],[2,3,3,2],[0,3,2,0]],[[1,0,0,1],[2,0,3,2],[2,3,3,2],[0,2,3,0]],[[1,0,0,1],[2,0,3,2],[3,3,3,2],[1,2,0,1]],[[1,0,0,1],[2,0,3,2],[2,3,3,2],[2,2,0,1]],[[1,0,0,1],[2,0,3,2],[2,3,3,2],[1,3,0,1]],[[1,0,0,1],[2,0,3,2],[3,3,3,2],[1,2,1,0]],[[1,0,0,1],[2,0,3,2],[2,3,3,2],[2,2,1,0]],[[1,0,0,1],[2,0,3,2],[2,3,3,2],[1,3,1,0]],[[1,0,0,1],[2,1,2,2],[1,2,3,3],[1,2,2,1]],[[1,0,0,1],[2,1,2,2],[1,2,3,2],[2,2,2,1]],[[1,0,0,1],[2,1,2,2],[1,2,3,2],[1,3,2,1]],[[1,0,0,1],[2,1,2,2],[1,2,3,2],[1,2,3,1]],[[1,0,0,1],[2,1,2,2],[1,2,3,2],[1,2,2,2]],[[1,0,0,1],[2,1,2,2],[1,3,3,3],[1,1,2,1]],[[1,0,0,1],[2,1,2,2],[1,3,3,2],[1,1,3,1]],[[1,0,0,1],[2,1,2,2],[1,3,3,2],[1,1,2,2]],[[1,0,0,1],[2,1,2,2],[3,1,3,2],[1,2,2,1]],[[1,0,0,1],[2,1,2,2],[2,1,3,3],[1,2,2,1]],[[1,0,0,1],[2,1,2,2],[2,1,3,2],[2,2,2,1]],[[1,0,0,1],[2,1,2,2],[2,1,3,2],[1,3,2,1]],[[1,0,0,1],[2,1,2,2],[2,1,3,2],[1,2,3,1]],[[1,0,0,1],[2,1,2,2],[2,1,3,2],[1,2,2,2]],[[1,0,0,1],[2,1,2,2],[2,2,3,3],[0,2,2,1]],[[1,0,0,1],[2,1,2,2],[2,2,3,2],[0,3,2,1]],[[1,0,0,1],[2,1,2,2],[2,2,3,2],[0,2,3,1]],[[1,0,0,1],[2,1,2,2],[2,2,3,2],[0,2,2,2]],[[1,0,0,1],[2,1,2,2],[2,3,3,3],[0,1,2,1]],[[1,0,0,1],[2,1,2,2],[2,3,3,2],[0,1,3,1]],[[1,0,0,1],[2,1,2,2],[2,3,3,2],[0,1,2,2]],[[1,0,0,1],[2,1,2,2],[2,3,3,3],[1,0,2,1]],[[1,0,0,1],[2,1,2,2],[2,3,3,2],[1,0,3,1]],[[1,0,0,1],[2,1,2,2],[2,3,3,2],[1,0,2,2]],[[1,0,0,1],[2,1,3,3],[1,1,3,2],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,1,3,3],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,1,3,2],[1,2,3,1]],[[1,0,0,1],[2,1,3,2],[1,1,3,2],[1,2,2,2]],[[1,0,0,1],[2,1,3,3],[1,2,2,2],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,2,2,3],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,2,2,2],[2,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,2,2,2],[1,3,2,1]],[[1,0,0,1],[2,1,3,2],[1,2,2,2],[1,2,3,1]],[[1,0,0,1],[2,1,3,2],[1,2,2,2],[1,2,2,2]],[[1,0,0,1],[2,1,3,2],[1,2,4,1],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,2,3,1],[2,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,2,3,1],[1,3,2,1]],[[1,0,0,1],[2,1,3,2],[1,2,3,1],[1,2,3,1]],[[1,0,0,1],[2,1,3,2],[1,2,3,1],[1,2,2,2]],[[1,0,0,1],[2,1,3,3],[1,2,3,2],[1,2,1,1]],[[1,0,0,1],[2,1,3,2],[1,2,4,2],[1,2,1,1]],[[1,0,0,1],[2,1,3,2],[1,2,3,3],[1,2,1,1]],[[1,0,0,1],[2,1,3,2],[1,2,3,2],[1,2,1,2]],[[1,0,0,1],[2,1,3,3],[1,2,3,2],[1,2,2,0]],[[1,0,0,1],[2,1,3,2],[1,2,4,2],[1,2,2,0]],[[1,0,0,1],[2,1,3,2],[1,2,3,3],[1,2,2,0]],[[1,0,0,1],[2,1,3,2],[1,2,3,2],[2,2,2,0]],[[1,0,0,1],[2,1,3,2],[1,2,3,2],[1,3,2,0]],[[1,0,0,1],[2,1,3,2],[1,2,3,2],[1,2,3,0]],[[1,0,0,1],[2,1,3,3],[1,3,1,2],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,4,1,2],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,1,3],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,1,2],[2,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,1,2],[1,3,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,1,2],[1,2,3,1]],[[1,0,0,1],[2,1,3,2],[1,3,1,2],[1,2,2,2]],[[1,0,0,1],[2,1,3,2],[1,4,2,1],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,2,1],[2,2,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,2,1],[1,3,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,2,1],[1,2,3,1]],[[1,0,0,1],[2,1,3,2],[1,3,2,1],[1,2,2,2]],[[1,0,0,1],[2,1,3,3],[1,3,2,2],[1,1,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,2,3],[1,1,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,2,2],[1,1,3,1]],[[1,0,0,1],[2,1,3,2],[1,3,2,2],[1,1,2,2]],[[1,0,0,1],[2,1,3,2],[1,4,2,2],[1,2,2,0]],[[1,0,0,1],[2,1,3,2],[1,3,2,2],[2,2,2,0]],[[1,0,0,1],[2,1,3,2],[1,3,2,2],[1,3,2,0]],[[1,0,0,1],[2,1,3,2],[1,3,2,2],[1,2,3,0]],[[1,0,0,1],[2,1,3,2],[1,4,3,1],[1,1,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,4,1],[1,1,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,1],[1,1,3,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,1],[1,1,2,2]],[[1,0,0,1],[2,1,3,2],[1,4,3,1],[1,2,1,1]],[[1,0,0,1],[2,1,3,2],[1,3,4,1],[1,2,1,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,1],[2,2,1,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,1],[1,3,1,1]],[[1,0,0,1],[2,1,3,3],[1,3,3,2],[1,0,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,4,2],[1,0,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,3],[1,0,2,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,2],[1,0,2,2]],[[1,0,0,1],[2,1,3,3],[1,3,3,2],[1,1,1,1]],[[1,0,0,1],[2,1,3,2],[1,4,3,2],[1,1,1,1]],[[1,0,0,1],[2,1,3,2],[1,3,4,2],[1,1,1,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,3],[1,1,1,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,2],[1,1,1,2]],[[1,0,0,1],[2,1,3,3],[1,3,3,2],[1,1,2,0]],[[1,0,0,1],[2,1,3,2],[1,4,3,2],[1,1,2,0]],[[1,0,0,1],[2,1,3,2],[1,3,4,2],[1,1,2,0]],[[1,0,0,1],[2,1,3,2],[1,3,3,3],[1,1,2,0]],[[1,0,0,1],[2,1,3,2],[1,3,3,2],[1,1,3,0]],[[1,0,0,1],[2,1,3,3],[1,3,3,2],[1,2,0,1]],[[1,0,0,1],[2,1,3,2],[1,4,3,2],[1,2,0,1]],[[1,0,0,1],[2,1,3,2],[1,3,4,2],[1,2,0,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,3],[1,2,0,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,2],[2,2,0,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,2],[1,3,0,1]],[[1,0,0,1],[2,1,3,2],[1,3,3,2],[1,2,0,2]],[[1,0,0,1],[2,1,3,3],[1,3,3,2],[1,2,1,0]],[[1,0,0,1],[2,1,3,2],[1,4,3,2],[1,2,1,0]],[[1,0,0,1],[2,1,3,2],[1,3,4,2],[1,2,1,0]],[[1,0,0,1],[2,1,3,2],[1,3,3,3],[1,2,1,0]],[[1,0,0,1],[2,1,3,2],[1,3,3,2],[2,2,1,0]],[[1,0,0,1],[2,1,3,2],[1,3,3,2],[1,3,1,0]],[[1,0,0,1],[2,1,3,3],[2,0,3,2],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,0,3,3],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,0,3,2],[1,2,3,1]],[[1,0,0,1],[2,1,3,2],[2,0,3,2],[1,2,2,2]],[[1,0,0,1],[3,1,3,2],[2,1,2,2],[1,2,2,1]],[[1,0,0,1],[2,1,3,3],[2,1,2,2],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[3,1,2,2],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,1,2,3],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,1,2,2],[2,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,1,2,2],[1,3,2,1]],[[1,0,0,1],[2,1,3,2],[2,1,2,2],[1,2,3,1]],[[1,0,0,1],[2,1,3,2],[2,1,2,2],[1,2,2,2]],[[1,0,0,1],[3,1,3,2],[2,1,3,1],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[3,1,3,1],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,1,4,1],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,1,3,1],[2,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,1,3,1],[1,3,2,1]],[[1,0,0,1],[2,1,3,2],[2,1,3,1],[1,2,3,1]],[[1,0,0,1],[2,1,3,2],[2,1,3,1],[1,2,2,2]],[[1,0,0,1],[2,1,3,3],[2,1,3,2],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,1,3,3],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,1,3,2],[0,2,3,1]],[[1,0,0,1],[2,1,3,2],[2,1,3,2],[0,2,2,2]],[[1,0,0,1],[2,1,3,3],[2,1,3,2],[1,2,1,1]],[[1,0,0,1],[2,1,3,2],[2,1,4,2],[1,2,1,1]],[[1,0,0,1],[2,1,3,2],[2,1,3,3],[1,2,1,1]],[[1,0,0,1],[2,1,3,2],[2,1,3,2],[1,2,1,2]],[[1,0,0,1],[3,1,3,2],[2,1,3,2],[1,2,2,0]],[[1,0,0,1],[2,1,3,3],[2,1,3,2],[1,2,2,0]],[[1,0,0,1],[2,1,3,2],[3,1,3,2],[1,2,2,0]],[[1,0,0,1],[2,1,3,2],[2,1,4,2],[1,2,2,0]],[[1,0,0,1],[2,1,3,2],[2,1,3,3],[1,2,2,0]],[[1,0,0,1],[2,1,3,2],[2,1,3,2],[2,2,2,0]],[[1,0,0,1],[2,1,3,2],[2,1,3,2],[1,3,2,0]],[[1,0,0,1],[2,1,3,2],[2,1,3,2],[1,2,3,0]],[[1,0,0,1],[3,1,3,2],[2,2,1,2],[1,2,2,1]],[[1,0,0,1],[2,1,3,3],[2,2,1,2],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[3,2,1,2],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,1,3],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,1,2],[2,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,1,2],[1,3,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,1,2],[1,2,3,1]],[[1,0,0,1],[2,1,3,2],[2,2,1,2],[1,2,2,2]],[[1,0,0,1],[3,1,3,2],[2,2,2,1],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[3,2,2,1],[1,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,2,1],[2,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,2,1],[1,3,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,2,1],[1,2,3,1]],[[1,0,0,1],[2,1,3,2],[2,2,2,1],[1,2,2,2]],[[1,0,0,1],[2,1,3,3],[2,2,2,2],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,2,3],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,2,2],[0,3,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,2,2],[0,2,3,1]],[[1,0,0,1],[2,1,3,2],[2,2,2,2],[0,2,2,2]],[[1,0,0,1],[3,1,3,2],[2,2,2,2],[1,2,2,0]],[[1,0,0,1],[2,1,3,2],[3,2,2,2],[1,2,2,0]],[[1,0,0,1],[2,1,3,2],[2,2,2,2],[2,2,2,0]],[[1,0,0,1],[2,1,3,2],[2,2,2,2],[1,3,2,0]],[[1,0,0,1],[2,1,3,2],[2,2,2,2],[1,2,3,0]],[[1,0,0,1],[2,1,3,2],[2,2,4,1],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,3,1],[0,3,2,1]],[[1,0,0,1],[2,1,3,2],[2,2,3,1],[0,2,3,1]],[[1,0,0,1],[2,1,3,2],[2,2,3,1],[0,2,2,2]],[[1,0,0,1],[3,1,3,2],[2,2,3,1],[1,2,1,1]],[[1,0,0,1],[2,1,3,2],[3,2,3,1],[1,2,1,1]],[[1,0,0,1],[2,1,3,2],[2,2,3,1],[2,2,1,1]],[[1,0,0,1],[2,1,3,2],[2,2,3,1],[1,3,1,1]],[[1,0,0,1],[2,1,3,3],[2,2,3,2],[0,2,1,1]],[[1,0,0,1],[2,1,3,2],[2,2,4,2],[0,2,1,1]],[[1,0,0,1],[2,1,3,2],[2,2,3,3],[0,2,1,1]],[[1,0,0,1],[2,1,3,2],[2,2,3,2],[0,2,1,2]],[[1,0,0,1],[2,1,3,3],[2,2,3,2],[0,2,2,0]],[[1,0,0,1],[2,1,3,2],[2,2,4,2],[0,2,2,0]],[[1,0,0,1],[2,1,3,2],[2,2,3,3],[0,2,2,0]],[[1,0,0,1],[2,1,3,2],[2,2,3,2],[0,3,2,0]],[[1,0,0,1],[2,1,3,2],[2,2,3,2],[0,2,3,0]],[[1,0,0,1],[3,1,3,2],[2,2,3,2],[1,2,0,1]],[[1,0,0,1],[2,1,3,2],[3,2,3,2],[1,2,0,1]],[[1,0,0,1],[2,1,3,2],[2,2,3,2],[2,2,0,1]],[[1,0,0,1],[2,1,3,2],[2,2,3,2],[1,3,0,1]],[[1,0,0,1],[3,1,3,2],[2,2,3,2],[1,2,1,0]],[[1,0,0,1],[2,1,3,2],[3,2,3,2],[1,2,1,0]],[[1,0,0,1],[2,1,3,2],[2,2,3,2],[2,2,1,0]],[[1,0,0,1],[2,1,3,2],[2,2,3,2],[1,3,1,0]],[[1,0,0,1],[3,1,3,2],[2,3,1,2],[0,2,2,1]],[[1,0,0,1],[2,1,3,3],[2,3,1,2],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[3,3,1,2],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,4,1,2],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,1,3],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,1,2],[0,3,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,1,2],[0,2,3,1]],[[1,0,0,1],[2,1,3,2],[2,3,1,2],[0,2,2,2]],[[1,0,0,1],[3,1,3,2],[2,3,1,2],[1,1,2,1]],[[1,0,0,1],[2,1,3,2],[3,3,1,2],[1,1,2,1]],[[1,0,0,1],[2,1,3,2],[2,4,1,2],[1,1,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,1,2],[2,1,2,1]],[[1,0,0,1],[3,1,3,2],[2,3,2,1],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[3,3,2,1],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,4,2,1],[0,2,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,2,1],[0,3,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,2,1],[0,2,3,1]],[[1,0,0,1],[2,1,3,2],[2,3,2,1],[0,2,2,2]],[[1,0,0,1],[3,1,3,2],[2,3,2,1],[1,1,2,1]],[[1,0,0,1],[2,1,3,2],[3,3,2,1],[1,1,2,1]],[[1,0,0,1],[2,1,3,2],[2,4,2,1],[1,1,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,2,1],[2,1,2,1]],[[1,0,0,1],[2,1,3,3],[2,3,2,2],[0,1,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,2,3],[0,1,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,2,2],[0,1,3,1]],[[1,0,0,1],[2,1,3,2],[2,3,2,2],[0,1,2,2]],[[1,0,0,1],[3,1,3,2],[2,3,2,2],[0,2,2,0]],[[1,0,0,1],[2,1,3,2],[3,3,2,2],[0,2,2,0]],[[1,0,0,1],[2,1,3,2],[2,4,2,2],[0,2,2,0]],[[1,0,0,1],[2,1,3,2],[2,3,2,2],[0,3,2,0]],[[1,0,0,1],[2,1,3,2],[2,3,2,2],[0,2,3,0]],[[1,0,0,1],[2,1,3,3],[2,3,2,2],[1,0,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,2,3],[1,0,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,2,2],[1,0,3,1]],[[1,0,0,1],[2,1,3,2],[2,3,2,2],[1,0,2,2]],[[1,0,0,1],[3,1,3,2],[2,3,2,2],[1,1,2,0]],[[1,0,0,1],[2,1,3,2],[3,3,2,2],[1,1,2,0]],[[1,0,0,1],[2,1,3,2],[2,4,2,2],[1,1,2,0]],[[1,0,0,1],[2,1,3,2],[2,3,2,2],[2,1,2,0]],[[1,0,0,1],[3,1,3,2],[2,3,3,1],[0,1,2,1]],[[1,0,0,1],[2,1,3,2],[3,3,3,1],[0,1,2,1]],[[1,0,0,1],[2,1,3,2],[2,4,3,1],[0,1,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,4,1],[0,1,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,1],[0,1,3,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,1],[0,1,2,2]],[[1,0,0,1],[3,1,3,2],[2,3,3,1],[0,2,1,1]],[[1,0,0,1],[2,1,3,2],[3,3,3,1],[0,2,1,1]],[[1,0,0,1],[2,1,3,2],[2,4,3,1],[0,2,1,1]],[[1,0,0,1],[2,1,3,2],[2,3,4,1],[0,2,1,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,1],[0,3,1,1]],[[1,0,0,1],[3,1,3,2],[2,3,3,1],[1,0,2,1]],[[1,0,0,1],[2,1,3,2],[3,3,3,1],[1,0,2,1]],[[1,0,0,1],[2,1,3,2],[2,4,3,1],[1,0,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,4,1],[1,0,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,1],[2,0,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,1],[1,0,3,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,1],[1,0,2,2]],[[1,0,0,1],[3,1,3,2],[2,3,3,1],[1,1,1,1]],[[1,0,0,1],[2,1,3,2],[3,3,3,1],[1,1,1,1]],[[1,0,0,1],[2,1,3,2],[2,4,3,1],[1,1,1,1]],[[1,0,0,1],[2,1,3,2],[2,3,4,1],[1,1,1,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,1],[2,1,1,1]],[[1,0,0,1],[2,1,3,3],[2,3,3,2],[0,0,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,4,2],[0,0,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,3],[0,0,2,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[0,0,2,2]],[[1,0,0,1],[3,1,3,2],[2,3,3,2],[0,1,1,1]],[[1,0,0,1],[2,1,3,3],[2,3,3,2],[0,1,1,1]],[[1,0,0,1],[2,1,3,2],[3,3,3,2],[0,1,1,1]],[[1,0,0,1],[2,1,3,2],[2,4,3,2],[0,1,1,1]],[[1,0,0,1],[2,1,3,2],[2,3,4,2],[0,1,1,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,3],[0,1,1,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[0,1,1,2]],[[1,0,0,1],[3,1,3,2],[2,3,3,2],[0,1,2,0]],[[1,0,0,1],[2,1,3,3],[2,3,3,2],[0,1,2,0]],[[1,0,0,1],[2,1,3,2],[3,3,3,2],[0,1,2,0]],[[1,0,0,1],[2,1,3,2],[2,4,3,2],[0,1,2,0]],[[1,0,0,1],[2,1,3,2],[2,3,4,2],[0,1,2,0]],[[1,0,0,1],[2,1,3,2],[2,3,3,3],[0,1,2,0]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[0,1,3,0]],[[1,0,0,1],[3,1,3,2],[2,3,3,2],[0,2,0,1]],[[1,0,0,1],[2,1,3,3],[2,3,3,2],[0,2,0,1]],[[1,0,0,1],[2,1,3,2],[3,3,3,2],[0,2,0,1]],[[1,0,0,1],[2,1,3,2],[2,4,3,2],[0,2,0,1]],[[1,0,0,1],[2,1,3,2],[2,3,4,2],[0,2,0,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,3],[0,2,0,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[0,3,0,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[0,2,0,2]],[[1,0,0,1],[3,1,3,2],[2,3,3,2],[0,2,1,0]],[[1,0,0,1],[2,1,3,3],[2,3,3,2],[0,2,1,0]],[[1,0,0,1],[2,1,3,2],[3,3,3,2],[0,2,1,0]],[[1,0,0,1],[2,1,3,2],[2,4,3,2],[0,2,1,0]],[[1,0,0,1],[2,1,3,2],[2,3,4,2],[0,2,1,0]],[[1,0,0,1],[2,1,3,2],[2,3,3,3],[0,2,1,0]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,3,1,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,3,1,2],[1,3,3,1],[2,2,1,0]],[[1,2,2,0],[0,3,1,2],[1,3,4,1],[1,2,1,0]],[[1,2,2,0],[0,3,1,2],[1,4,3,1],[1,2,1,0]],[[1,2,2,0],[0,4,1,2],[1,3,3,1],[1,2,1,0]],[[1,2,3,0],[0,3,1,2],[1,3,3,1],[1,2,1,0]],[[1,0,0,1],[3,1,3,2],[2,3,3,2],[1,0,1,1]],[[1,0,0,1],[2,1,3,3],[2,3,3,2],[1,0,1,1]],[[1,0,0,1],[2,1,3,2],[3,3,3,2],[1,0,1,1]],[[1,0,0,1],[2,1,3,2],[2,4,3,2],[1,0,1,1]],[[1,0,0,1],[2,1,3,2],[2,3,4,2],[1,0,1,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,3],[1,0,1,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[2,0,1,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[1,0,1,2]],[[1,0,0,1],[3,1,3,2],[2,3,3,2],[1,0,2,0]],[[1,0,0,1],[2,1,3,3],[2,3,3,2],[1,0,2,0]],[[1,0,0,1],[2,1,3,2],[3,3,3,2],[1,0,2,0]],[[1,0,0,1],[2,1,3,2],[2,4,3,2],[1,0,2,0]],[[1,0,0,1],[2,1,3,2],[2,3,4,2],[1,0,2,0]],[[1,0,0,1],[2,1,3,2],[2,3,3,3],[1,0,2,0]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[2,0,2,0]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[1,0,3,0]],[[1,0,0,1],[3,1,3,2],[2,3,3,2],[1,1,0,1]],[[1,0,0,1],[2,1,3,3],[2,3,3,2],[1,1,0,1]],[[1,0,0,1],[2,1,3,2],[3,3,3,2],[1,1,0,1]],[[1,0,0,1],[2,1,3,2],[2,4,3,2],[1,1,0,1]],[[1,0,0,1],[2,1,3,2],[2,3,4,2],[1,1,0,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,3],[1,1,0,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[2,1,0,1]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[1,1,0,2]],[[1,0,0,1],[3,1,3,2],[2,3,3,2],[1,1,1,0]],[[1,0,0,1],[2,1,3,3],[2,3,3,2],[1,1,1,0]],[[1,0,0,1],[2,1,3,2],[3,3,3,2],[1,1,1,0]],[[1,0,0,1],[2,1,3,2],[2,4,3,2],[1,1,1,0]],[[1,0,0,1],[2,1,3,2],[2,3,4,2],[1,1,1,0]],[[1,0,0,1],[2,1,3,2],[2,3,3,3],[1,1,1,0]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[2,1,1,0]],[[1,3,2,0],[0,3,1,2],[1,3,3,1],[1,2,1,0]],[[2,2,2,0],[0,3,1,2],[1,3,3,1],[1,2,1,0]],[[1,2,2,0],[0,3,1,2],[1,3,3,1],[1,3,0,1]],[[1,2,2,0],[0,3,1,2],[1,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,3,1,2],[1,3,4,1],[1,2,0,1]],[[1,2,2,0],[0,3,1,2],[1,4,3,1],[1,2,0,1]],[[1,2,2,0],[0,4,1,2],[1,3,3,1],[1,2,0,1]],[[1,2,3,0],[0,3,1,2],[1,3,3,1],[1,2,0,1]],[[1,3,2,0],[0,3,1,2],[1,3,3,1],[1,2,0,1]],[[1,0,0,1],[3,1,3,2],[2,3,3,2],[1,2,0,0]],[[1,0,0,1],[2,1,3,2],[3,3,3,2],[1,2,0,0]],[[1,0,0,1],[2,1,3,2],[2,4,3,2],[1,2,0,0]],[[1,0,0,1],[2,1,3,2],[2,3,3,2],[2,2,0,0]],[[2,2,2,0],[0,3,1,2],[1,3,3,1],[1,2,0,1]],[[1,2,2,0],[0,3,1,2],[1,3,3,1],[1,1,3,0]],[[1,2,2,0],[0,3,1,2],[1,3,4,1],[1,1,2,0]],[[1,2,2,0],[0,3,1,2],[1,4,3,1],[1,1,2,0]],[[1,2,2,0],[0,4,1,2],[1,3,3,1],[1,1,2,0]],[[1,2,3,0],[0,3,1,2],[1,3,3,1],[1,1,2,0]],[[1,3,2,0],[0,3,1,2],[1,3,3,1],[1,1,2,0]],[[2,2,2,0],[0,3,1,2],[1,3,3,1],[1,1,2,0]],[[1,2,2,0],[0,3,1,2],[1,3,4,1],[1,1,1,1]],[[1,2,2,0],[0,3,1,2],[1,4,3,1],[1,1,1,1]],[[1,2,2,0],[0,4,1,2],[1,3,3,1],[1,1,1,1]],[[1,2,3,0],[0,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,3,2,0],[0,3,1,2],[1,3,3,1],[1,1,1,1]],[[2,2,2,0],[0,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,0,0,1],[2,2,0,1],[3,3,3,2],[1,2,2,1]],[[1,0,0,1],[2,2,0,1],[2,3,3,2],[2,2,2,1]],[[1,0,0,1],[2,2,0,1],[2,3,3,2],[1,3,2,1]],[[1,0,0,1],[2,2,0,1],[2,3,3,2],[1,2,3,1]],[[1,0,0,1],[2,2,0,1],[2,3,3,2],[1,2,2,2]],[[1,0,0,1],[2,2,0,2],[1,3,3,3],[1,2,2,1]],[[1,0,0,1],[2,2,0,2],[1,3,3,2],[2,2,2,1]],[[1,0,0,1],[2,2,0,2],[1,3,3,2],[1,3,2,1]],[[1,0,0,1],[2,2,0,2],[1,3,3,2],[1,2,3,1]],[[1,0,0,1],[2,2,0,2],[1,3,3,2],[1,2,2,2]],[[1,0,0,1],[2,2,0,2],[3,2,3,2],[1,2,2,1]],[[1,0,0,1],[2,2,0,2],[2,2,3,3],[1,2,2,1]],[[1,0,0,1],[2,2,0,2],[2,2,3,2],[2,2,2,1]],[[1,0,0,1],[2,2,0,2],[2,2,3,2],[1,3,2,1]],[[1,0,0,1],[2,2,0,2],[2,2,3,2],[1,2,3,1]],[[1,0,0,1],[2,2,0,2],[2,2,3,2],[1,2,2,2]],[[1,0,0,1],[2,2,0,2],[3,3,2,2],[1,2,2,1]],[[1,0,0,1],[2,2,0,2],[2,3,2,3],[1,2,2,1]],[[1,0,0,1],[2,2,0,2],[2,3,2,2],[2,2,2,1]],[[1,0,0,1],[2,2,0,2],[2,3,2,2],[1,3,2,1]],[[1,0,0,1],[2,2,0,2],[2,3,2,2],[1,2,3,1]],[[1,0,0,1],[2,2,0,2],[2,3,2,2],[1,2,2,2]],[[1,0,0,1],[2,2,0,2],[3,3,3,1],[1,2,2,1]],[[1,0,0,1],[2,2,0,2],[2,3,3,1],[2,2,2,1]],[[1,0,0,1],[2,2,0,2],[2,3,3,1],[1,3,2,1]],[[1,0,0,1],[2,2,0,2],[2,3,3,1],[1,2,3,1]],[[1,0,0,1],[2,2,0,2],[2,3,3,1],[1,2,2,2]],[[1,0,0,1],[2,2,0,2],[2,3,3,3],[0,2,2,1]],[[1,0,0,1],[2,2,0,2],[2,3,3,2],[0,3,2,1]],[[1,0,0,1],[2,2,0,2],[2,3,3,2],[0,2,3,1]],[[1,0,0,1],[2,2,0,2],[2,3,3,2],[0,2,2,2]],[[1,0,0,1],[2,2,0,2],[3,3,3,2],[1,2,2,0]],[[1,0,0,1],[2,2,0,2],[2,3,3,2],[2,2,2,0]],[[1,0,0,1],[2,2,0,2],[2,3,3,2],[1,3,2,0]],[[1,0,0,1],[2,2,0,2],[2,3,3,2],[1,2,3,0]],[[1,0,0,1],[2,2,1,0],[3,3,3,2],[1,2,2,1]],[[1,0,0,1],[2,2,1,0],[2,3,3,2],[2,2,2,1]],[[1,0,0,1],[2,2,1,0],[2,3,3,2],[1,3,2,1]],[[1,0,0,1],[2,2,1,0],[2,3,3,2],[1,2,3,1]],[[1,0,0,1],[2,2,1,0],[2,3,3,2],[1,2,2,2]],[[1,0,0,1],[2,2,1,1],[3,3,3,1],[1,2,2,1]],[[1,0,0,1],[2,2,1,1],[2,3,3,1],[2,2,2,1]],[[1,0,0,1],[2,2,1,1],[2,3,3,1],[1,3,2,1]],[[1,0,0,1],[2,2,1,1],[2,3,3,1],[1,2,3,1]],[[1,0,0,1],[2,2,1,1],[2,3,3,1],[1,2,2,2]],[[1,0,0,1],[2,2,1,1],[3,3,3,2],[1,2,2,0]],[[1,0,0,1],[2,2,1,1],[2,3,3,2],[2,2,2,0]],[[1,0,0,1],[2,2,1,1],[2,3,3,2],[1,3,2,0]],[[1,0,0,1],[2,2,1,1],[2,3,3,2],[1,2,3,0]],[[1,0,0,1],[2,2,1,2],[3,3,1,2],[1,2,2,1]],[[1,0,0,1],[2,2,1,2],[2,3,1,3],[1,2,2,1]],[[1,0,0,1],[2,2,1,2],[2,3,1,2],[2,2,2,1]],[[1,0,0,1],[2,2,1,2],[2,3,1,2],[1,3,2,1]],[[1,0,0,1],[2,2,1,2],[2,3,1,2],[1,2,3,1]],[[1,0,0,1],[2,2,1,2],[2,3,1,2],[1,2,2,2]],[[1,0,0,1],[2,2,1,2],[3,3,2,1],[1,2,2,1]],[[1,0,0,1],[2,2,1,2],[2,3,2,1],[2,2,2,1]],[[1,0,0,1],[2,2,1,2],[2,3,2,1],[1,3,2,1]],[[1,0,0,1],[2,2,1,2],[2,3,2,1],[1,2,3,1]],[[1,0,0,1],[2,2,1,2],[2,3,2,1],[1,2,2,2]],[[1,0,0,1],[2,2,1,2],[3,3,2,2],[1,2,2,0]],[[1,0,0,1],[2,2,1,2],[2,3,2,2],[2,2,2,0]],[[1,0,0,1],[2,2,1,2],[2,3,2,2],[1,3,2,0]],[[1,0,0,1],[2,2,1,2],[2,3,2,2],[1,2,3,0]],[[1,0,0,1],[2,2,1,2],[3,3,3,1],[1,2,1,1]],[[1,0,0,1],[2,2,1,2],[2,3,3,1],[2,2,1,1]],[[1,0,0,1],[2,2,1,2],[2,3,3,1],[1,3,1,1]],[[1,0,0,1],[2,2,1,2],[3,3,3,2],[1,2,0,1]],[[1,0,0,1],[2,2,1,2],[2,3,3,2],[2,2,0,1]],[[1,0,0,1],[2,2,1,2],[2,3,3,2],[1,3,0,1]],[[1,0,0,1],[2,2,1,2],[3,3,3,2],[1,2,1,0]],[[1,0,0,1],[2,2,1,2],[2,3,3,2],[2,2,1,0]],[[1,0,0,1],[2,2,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,3,1,2],[1,3,3,0],[1,3,1,1]],[[1,2,2,0],[0,3,1,2],[1,3,3,0],[2,2,1,1]],[[1,0,0,1],[2,2,2,0],[3,3,2,2],[1,2,2,1]],[[1,0,0,1],[2,2,2,0],[2,3,2,2],[2,2,2,1]],[[1,0,0,1],[2,2,2,0],[2,3,2,2],[1,3,2,1]],[[1,0,0,1],[2,2,2,0],[2,3,2,2],[1,2,3,1]],[[1,0,0,1],[2,2,2,0],[2,3,2,2],[1,2,2,2]],[[1,0,0,1],[2,2,2,0],[3,3,3,2],[1,2,1,1]],[[1,0,0,1],[2,2,2,0],[2,3,3,2],[2,2,1,1]],[[1,0,0,1],[2,2,2,0],[2,3,3,2],[1,3,1,1]],[[1,0,0,1],[2,2,2,1],[3,3,1,2],[1,2,2,1]],[[1,0,0,1],[2,2,2,1],[2,3,1,2],[2,2,2,1]],[[1,0,0,1],[2,2,2,1],[2,3,1,2],[1,3,2,1]],[[1,0,0,1],[2,2,2,1],[2,3,1,2],[1,2,3,1]],[[1,0,0,1],[2,2,2,1],[2,3,1,2],[1,2,2,2]],[[1,0,0,1],[2,2,2,1],[3,3,2,1],[1,2,2,1]],[[1,0,0,1],[2,2,2,1],[2,3,2,1],[2,2,2,1]],[[1,0,0,1],[2,2,2,1],[2,3,2,1],[1,3,2,1]],[[1,0,0,1],[2,2,2,1],[2,3,2,1],[1,2,3,1]],[[1,0,0,1],[2,2,2,1],[2,3,2,1],[1,2,2,2]],[[1,0,0,1],[2,2,2,1],[3,3,2,2],[1,2,2,0]],[[1,0,0,1],[2,2,2,1],[2,3,2,2],[2,2,2,0]],[[1,0,0,1],[2,2,2,1],[2,3,2,2],[1,3,2,0]],[[1,0,0,1],[2,2,2,1],[2,3,2,2],[1,2,3,0]],[[1,0,0,1],[2,2,2,1],[3,3,3,0],[1,2,2,1]],[[1,0,0,1],[2,2,2,1],[2,3,3,0],[2,2,2,1]],[[1,0,0,1],[2,2,2,1],[2,3,3,0],[1,3,2,1]],[[1,0,0,1],[2,2,2,1],[2,3,3,0],[1,2,3,1]],[[1,0,0,1],[2,2,2,1],[3,3,3,1],[1,2,1,1]],[[1,0,0,1],[2,2,2,1],[2,3,3,1],[2,2,1,1]],[[1,0,0,1],[2,2,2,1],[2,3,3,1],[1,3,1,1]],[[1,0,0,1],[2,2,2,1],[3,3,3,2],[1,2,0,1]],[[1,0,0,1],[2,2,2,1],[2,3,3,2],[2,2,0,1]],[[1,0,0,1],[2,2,2,1],[2,3,3,2],[1,3,0,1]],[[1,0,0,1],[2,2,2,1],[3,3,3,2],[1,2,1,0]],[[1,0,0,1],[2,2,2,1],[2,3,3,2],[2,2,1,0]],[[1,0,0,1],[2,2,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,3,1,2],[1,3,4,0],[1,2,1,1]],[[1,2,2,0],[0,3,1,2],[1,4,3,0],[1,2,1,1]],[[1,2,2,0],[0,4,1,2],[1,3,3,0],[1,2,1,1]],[[1,2,3,0],[0,3,1,2],[1,3,3,0],[1,2,1,1]],[[1,3,2,0],[0,3,1,2],[1,3,3,0],[1,2,1,1]],[[1,0,0,1],[2,2,2,2],[0,2,3,3],[1,2,2,1]],[[1,0,0,1],[2,2,2,2],[0,2,3,2],[1,3,2,1]],[[1,0,0,1],[2,2,2,2],[0,2,3,2],[1,2,3,1]],[[1,0,0,1],[2,2,2,2],[0,2,3,2],[1,2,2,2]],[[1,0,0,1],[2,2,2,2],[0,3,3,3],[1,1,2,1]],[[1,0,0,1],[2,2,2,2],[0,3,3,2],[1,1,3,1]],[[1,0,0,1],[2,2,2,2],[0,3,3,2],[1,1,2,2]],[[1,0,0,1],[2,2,2,2],[1,2,3,3],[0,2,2,1]],[[1,0,0,1],[2,2,2,2],[1,2,3,2],[0,2,3,1]],[[1,0,0,1],[2,2,2,2],[1,2,3,2],[0,2,2,2]],[[1,0,0,1],[2,2,2,2],[1,3,3,3],[0,1,2,1]],[[1,0,0,1],[2,2,2,2],[1,3,3,2],[0,1,3,1]],[[1,0,0,1],[2,2,2,2],[1,3,3,2],[0,1,2,2]],[[2,2,2,0],[0,3,1,2],[1,3,3,0],[1,2,1,1]],[[1,2,2,0],[0,3,1,2],[1,3,3,0],[1,1,2,2]],[[1,2,2,0],[0,3,1,2],[1,3,3,0],[1,1,3,1]],[[1,2,2,0],[0,3,1,2],[1,3,4,0],[1,1,2,1]],[[1,2,2,0],[0,3,1,2],[1,4,3,0],[1,1,2,1]],[[1,2,2,0],[0,4,1,2],[1,3,3,0],[1,1,2,1]],[[1,2,3,0],[0,3,1,2],[1,3,3,0],[1,1,2,1]],[[1,3,2,0],[0,3,1,2],[1,3,3,0],[1,1,2,1]],[[2,2,2,0],[0,3,1,2],[1,3,3,0],[1,1,2,1]],[[1,0,0,1],[2,2,2,2],[3,3,2,0],[1,2,2,1]],[[1,0,0,1],[2,2,2,2],[2,3,2,0],[2,2,2,1]],[[1,0,0,1],[2,2,2,2],[2,3,2,0],[1,3,2,1]],[[1,0,0,1],[2,2,2,2],[2,3,2,0],[1,2,3,1]],[[1,0,0,1],[2,2,2,2],[3,3,2,1],[1,2,2,0]],[[1,0,0,1],[2,2,2,2],[2,3,2,1],[2,2,2,0]],[[1,0,0,1],[2,2,2,2],[2,3,2,1],[1,3,2,0]],[[1,0,0,1],[2,2,2,2],[3,3,3,0],[1,2,1,1]],[[1,0,0,1],[2,2,2,2],[2,3,3,0],[2,2,1,1]],[[1,0,0,1],[2,2,2,2],[2,3,3,0],[1,3,1,1]],[[1,0,0,1],[2,2,2,2],[3,3,3,1],[1,2,1,0]],[[1,0,0,1],[2,2,2,2],[2,3,3,1],[2,2,1,0]],[[1,0,0,1],[2,2,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,3,1,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,0],[0,3,1,2],[1,3,2,1],[1,3,2,0]],[[1,2,2,0],[0,3,1,2],[1,3,2,1],[2,2,2,0]],[[1,2,2,0],[0,3,1,2],[1,4,2,1],[1,2,2,0]],[[1,2,2,0],[0,4,1,2],[1,3,2,1],[1,2,2,0]],[[1,2,3,0],[0,3,1,2],[1,3,2,1],[1,2,2,0]],[[1,3,2,0],[0,3,1,2],[1,3,2,1],[1,2,2,0]],[[2,2,2,0],[0,3,1,2],[1,3,2,1],[1,2,2,0]],[[1,2,2,0],[0,3,1,2],[1,3,2,0],[1,2,2,2]],[[1,2,2,0],[0,3,1,2],[1,3,2,0],[1,2,3,1]],[[1,2,2,0],[0,3,1,2],[1,3,2,0],[1,3,2,1]],[[1,2,2,0],[0,3,1,2],[1,3,2,0],[2,2,2,1]],[[1,2,2,0],[0,3,1,2],[1,4,2,0],[1,2,2,1]],[[1,2,2,0],[0,4,1,2],[1,3,2,0],[1,2,2,1]],[[1,2,3,0],[0,3,1,2],[1,3,2,0],[1,2,2,1]],[[1,3,2,0],[0,3,1,2],[1,3,2,0],[1,2,2,1]],[[2,2,2,0],[0,3,1,2],[1,3,2,0],[1,2,2,1]],[[1,2,2,0],[0,3,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,2],[1,3,0,2],[1,2,3,1]],[[1,2,2,0],[0,3,1,2],[1,3,0,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,2],[1,3,0,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,2],[1,3,0,3],[1,2,2,1]],[[1,2,2,0],[0,3,1,2],[1,4,0,2],[1,2,2,1]],[[1,2,2,0],[0,3,1,3],[1,3,0,2],[1,2,2,1]],[[1,2,2,0],[0,4,1,2],[1,3,0,2],[1,2,2,1]],[[1,2,3,0],[0,3,1,2],[1,3,0,2],[1,2,2,1]],[[1,3,2,0],[0,3,1,2],[1,3,0,2],[1,2,2,1]],[[2,2,2,0],[0,3,1,2],[1,3,0,2],[1,2,2,1]],[[1,0,0,1],[2,2,3,3],[0,1,3,2],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,1,3,3],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,1,3,2],[1,2,3,1]],[[1,0,0,1],[2,2,3,2],[0,1,3,2],[1,2,2,2]],[[1,0,0,1],[2,2,3,3],[0,2,2,2],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,2,2,3],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,2,2,2],[2,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,2,2,2],[1,3,2,1]],[[1,0,0,1],[2,2,3,2],[0,2,2,2],[1,2,3,1]],[[1,0,0,1],[2,2,3,2],[0,2,2,2],[1,2,2,2]],[[1,0,0,1],[2,2,3,2],[0,2,4,1],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,2,3,1],[2,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,2,3,1],[1,3,2,1]],[[1,0,0,1],[2,2,3,2],[0,2,3,1],[1,2,3,1]],[[1,0,0,1],[2,2,3,2],[0,2,3,1],[1,2,2,2]],[[1,0,0,1],[2,2,3,3],[0,2,3,2],[1,2,1,1]],[[1,0,0,1],[2,2,3,2],[0,2,4,2],[1,2,1,1]],[[1,0,0,1],[2,2,3,2],[0,2,3,3],[1,2,1,1]],[[1,0,0,1],[2,2,3,2],[0,2,3,2],[1,2,1,2]],[[1,0,0,1],[2,2,3,3],[0,2,3,2],[1,2,2,0]],[[1,0,0,1],[2,2,3,2],[0,2,4,2],[1,2,2,0]],[[1,0,0,1],[2,2,3,2],[0,2,3,3],[1,2,2,0]],[[1,0,0,1],[2,2,3,2],[0,2,3,2],[2,2,2,0]],[[1,0,0,1],[2,2,3,2],[0,2,3,2],[1,3,2,0]],[[1,0,0,1],[2,2,3,2],[0,2,3,2],[1,2,3,0]],[[1,0,0,1],[2,2,3,3],[0,3,1,2],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,4,1,2],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,1,3],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,1,2],[2,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,1,2],[1,3,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,1,2],[1,2,3,1]],[[1,0,0,1],[2,2,3,2],[0,3,1,2],[1,2,2,2]],[[1,0,0,1],[2,2,3,2],[0,4,2,1],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,2,1],[2,2,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,2,1],[1,3,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,2,1],[1,2,3,1]],[[1,0,0,1],[2,2,3,2],[0,3,2,1],[1,2,2,2]],[[1,0,0,1],[2,2,3,3],[0,3,2,2],[1,1,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,2,3],[1,1,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,2,2],[1,1,3,1]],[[1,0,0,1],[2,2,3,2],[0,3,2,2],[1,1,2,2]],[[1,0,0,1],[2,2,3,2],[0,4,2,2],[1,2,2,0]],[[1,0,0,1],[2,2,3,2],[0,3,2,2],[2,2,2,0]],[[1,0,0,1],[2,2,3,2],[0,3,2,2],[1,3,2,0]],[[1,0,0,1],[2,2,3,2],[0,3,2,2],[1,2,3,0]],[[1,0,0,1],[2,2,3,2],[0,4,3,1],[1,1,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,4,1],[1,1,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,1],[1,1,3,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,1],[1,1,2,2]],[[1,0,0,1],[2,2,3,2],[0,4,3,1],[1,2,1,1]],[[1,0,0,1],[2,2,3,2],[0,3,4,1],[1,2,1,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,1],[2,2,1,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,1],[1,3,1,1]],[[1,0,0,1],[2,2,3,3],[0,3,3,2],[1,0,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,4,2],[1,0,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,3],[1,0,2,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,2],[1,0,2,2]],[[1,0,0,1],[2,2,3,3],[0,3,3,2],[1,1,1,1]],[[1,0,0,1],[2,2,3,2],[0,4,3,2],[1,1,1,1]],[[1,0,0,1],[2,2,3,2],[0,3,4,2],[1,1,1,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,3],[1,1,1,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,2],[1,1,1,2]],[[1,0,0,1],[2,2,3,3],[0,3,3,2],[1,1,2,0]],[[1,0,0,1],[2,2,3,2],[0,4,3,2],[1,1,2,0]],[[1,0,0,1],[2,2,3,2],[0,3,4,2],[1,1,2,0]],[[1,0,0,1],[2,2,3,2],[0,3,3,3],[1,1,2,0]],[[1,0,0,1],[2,2,3,2],[0,3,3,2],[1,1,3,0]],[[1,0,0,1],[2,2,3,3],[0,3,3,2],[1,2,0,1]],[[1,0,0,1],[2,2,3,2],[0,4,3,2],[1,2,0,1]],[[1,0,0,1],[2,2,3,2],[0,3,4,2],[1,2,0,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,3],[1,2,0,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,2],[2,2,0,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,2],[1,3,0,1]],[[1,0,0,1],[2,2,3,2],[0,3,3,2],[1,2,0,2]],[[1,0,0,1],[2,2,3,3],[0,3,3,2],[1,2,1,0]],[[1,0,0,1],[2,2,3,2],[0,4,3,2],[1,2,1,0]],[[1,0,0,1],[2,2,3,2],[0,3,4,2],[1,2,1,0]],[[1,0,0,1],[2,2,3,2],[0,3,3,3],[1,2,1,0]],[[1,0,0,1],[2,2,3,2],[0,3,3,2],[2,2,1,0]],[[1,0,0,1],[2,2,3,2],[0,3,3,2],[1,3,1,0]],[[1,0,0,1],[2,2,3,3],[1,1,3,2],[0,2,2,1]],[[1,0,0,1],[2,2,3,2],[1,1,3,3],[0,2,2,1]],[[1,0,0,1],[2,2,3,2],[1,1,3,2],[0,2,3,1]],[[1,0,0,1],[2,2,3,2],[1,1,3,2],[0,2,2,2]],[[1,0,0,1],[2,2,3,3],[1,2,2,2],[0,2,2,1]],[[1,0,0,1],[2,2,3,2],[1,2,2,3],[0,2,2,1]],[[1,0,0,1],[2,2,3,2],[1,2,2,2],[0,3,2,1]],[[1,0,0,1],[2,2,3,2],[1,2,2,2],[0,2,3,1]],[[1,0,0,1],[2,2,3,2],[1,2,2,2],[0,2,2,2]],[[1,0,0,1],[2,2,3,2],[1,2,4,1],[0,2,2,1]],[[1,0,0,1],[2,2,3,2],[1,2,3,1],[0,3,2,1]],[[1,0,0,1],[2,2,3,2],[1,2,3,1],[0,2,3,1]],[[1,0,0,1],[2,2,3,2],[1,2,3,1],[0,2,2,2]],[[1,0,0,1],[2,2,3,3],[1,2,3,2],[0,2,1,1]],[[1,0,0,1],[2,2,3,2],[1,2,4,2],[0,2,1,1]],[[1,0,0,1],[2,2,3,2],[1,2,3,3],[0,2,1,1]],[[1,0,0,1],[2,2,3,2],[1,2,3,2],[0,2,1,2]],[[1,0,0,1],[2,2,3,3],[1,2,3,2],[0,2,2,0]],[[1,0,0,1],[2,2,3,2],[1,2,4,2],[0,2,2,0]],[[1,0,0,1],[2,2,3,2],[1,2,3,3],[0,2,2,0]],[[1,0,0,1],[2,2,3,2],[1,2,3,2],[0,3,2,0]],[[1,0,0,1],[2,2,3,2],[1,2,3,2],[0,2,3,0]],[[1,0,0,1],[2,2,3,3],[1,3,1,2],[0,2,2,1]],[[1,0,0,1],[2,2,3,2],[1,4,1,2],[0,2,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,1,3],[0,2,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,1,2],[0,3,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,1,2],[0,2,3,1]],[[1,0,0,1],[2,2,3,2],[1,3,1,2],[0,2,2,2]],[[1,0,0,1],[2,2,3,2],[1,4,2,1],[0,2,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,2,1],[0,3,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,2,1],[0,2,3,1]],[[1,0,0,1],[2,2,3,2],[1,3,2,1],[0,2,2,2]],[[1,0,0,1],[2,2,3,3],[1,3,2,2],[0,1,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,2,3],[0,1,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,2,2],[0,1,3,1]],[[1,0,0,1],[2,2,3,2],[1,3,2,2],[0,1,2,2]],[[1,0,0,1],[2,2,3,2],[1,4,2,2],[0,2,2,0]],[[1,0,0,1],[2,2,3,2],[1,3,2,2],[0,3,2,0]],[[1,0,0,1],[2,2,3,2],[1,3,2,2],[0,2,3,0]],[[1,0,0,1],[2,2,3,3],[1,3,2,2],[1,0,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,2,3],[1,0,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,2,2],[1,0,3,1]],[[1,0,0,1],[2,2,3,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,0],[0,3,1,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,0],[0,3,1,2],[1,2,3,1],[1,3,2,0]],[[1,2,2,0],[0,3,1,2],[1,2,3,1],[2,2,2,0]],[[1,2,2,0],[0,3,1,2],[1,2,4,1],[1,2,2,0]],[[1,2,2,0],[0,3,1,2],[1,2,3,0],[1,2,2,2]],[[1,2,2,0],[0,3,1,2],[1,2,3,0],[1,2,3,1]],[[1,2,2,0],[0,3,1,2],[1,2,3,0],[1,3,2,1]],[[1,0,0,1],[2,2,3,2],[1,4,3,1],[0,1,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,4,1],[0,1,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,1],[0,1,3,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,1],[0,1,2,2]],[[1,0,0,1],[2,2,3,2],[1,4,3,1],[0,2,1,1]],[[1,0,0,1],[2,2,3,2],[1,3,4,1],[0,2,1,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,1],[0,3,1,1]],[[1,0,0,1],[2,2,3,2],[1,4,3,1],[1,0,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,4,1],[1,0,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,1],[1,0,3,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,1],[1,0,2,2]],[[1,2,2,0],[0,3,1,2],[1,2,3,0],[2,2,2,1]],[[1,2,2,0],[0,3,1,2],[1,2,4,0],[1,2,2,1]],[[1,0,0,1],[2,2,3,3],[1,3,3,2],[0,0,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,4,2],[0,0,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,3],[0,0,2,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,2],[0,0,2,2]],[[1,0,0,1],[2,2,3,3],[1,3,3,2],[0,1,1,1]],[[1,0,0,1],[2,2,3,2],[1,4,3,2],[0,1,1,1]],[[1,0,0,1],[2,2,3,2],[1,3,4,2],[0,1,1,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,3],[0,1,1,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,2],[0,1,1,2]],[[1,0,0,1],[2,2,3,3],[1,3,3,2],[0,1,2,0]],[[1,0,0,1],[2,2,3,2],[1,4,3,2],[0,1,2,0]],[[1,0,0,1],[2,2,3,2],[1,3,4,2],[0,1,2,0]],[[1,0,0,1],[2,2,3,2],[1,3,3,3],[0,1,2,0]],[[1,0,0,1],[2,2,3,2],[1,3,3,2],[0,1,3,0]],[[1,0,0,1],[2,2,3,3],[1,3,3,2],[0,2,0,1]],[[1,0,0,1],[2,2,3,2],[1,4,3,2],[0,2,0,1]],[[1,0,0,1],[2,2,3,2],[1,3,4,2],[0,2,0,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,3],[0,2,0,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,2],[0,3,0,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,2],[0,2,0,2]],[[1,0,0,1],[2,2,3,3],[1,3,3,2],[0,2,1,0]],[[1,0,0,1],[2,2,3,2],[1,4,3,2],[0,2,1,0]],[[1,0,0,1],[2,2,3,2],[1,3,4,2],[0,2,1,0]],[[1,0,0,1],[2,2,3,2],[1,3,3,3],[0,2,1,0]],[[1,0,0,1],[2,2,3,2],[1,3,3,2],[0,3,1,0]],[[1,0,0,1],[2,2,3,3],[1,3,3,2],[1,0,1,1]],[[1,0,0,1],[2,2,3,2],[1,4,3,2],[1,0,1,1]],[[1,0,0,1],[2,2,3,2],[1,3,4,2],[1,0,1,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,3],[1,0,1,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,2],[1,0,1,2]],[[1,0,0,1],[2,2,3,3],[1,3,3,2],[1,0,2,0]],[[1,0,0,1],[2,2,3,2],[1,4,3,2],[1,0,2,0]],[[1,0,0,1],[2,2,3,2],[1,3,4,2],[1,0,2,0]],[[1,0,0,1],[2,2,3,2],[1,3,3,3],[1,0,2,0]],[[1,0,0,1],[2,2,3,2],[1,3,3,2],[1,0,3,0]],[[1,0,0,1],[2,2,3,3],[1,3,3,2],[1,1,0,1]],[[1,0,0,1],[2,2,3,2],[1,4,3,2],[1,1,0,1]],[[1,0,0,1],[2,2,3,2],[1,3,4,2],[1,1,0,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,3],[1,1,0,1]],[[1,0,0,1],[2,2,3,2],[1,3,3,2],[1,1,0,2]],[[1,0,0,1],[2,2,3,3],[1,3,3,2],[1,1,1,0]],[[1,0,0,1],[2,2,3,2],[1,4,3,2],[1,1,1,0]],[[1,0,0,1],[2,2,3,2],[1,3,4,2],[1,1,1,0]],[[1,0,0,1],[2,2,3,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[0,3,1,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,0],[0,3,1,2],[0,3,3,1],[1,3,2,0]],[[1,2,2,0],[0,3,1,2],[0,3,4,1],[1,2,2,0]],[[1,2,2,0],[0,3,1,2],[0,3,3,0],[1,2,2,2]],[[1,2,2,0],[0,3,1,2],[0,3,3,0],[1,2,3,1]],[[1,2,2,0],[0,3,1,2],[0,3,3,0],[1,3,2,1]],[[1,2,2,0],[0,3,1,2],[0,3,4,0],[1,2,2,1]],[[1,0,0,1],[3,2,3,2],[2,0,2,2],[1,2,2,1]],[[1,0,0,1],[2,2,3,3],[2,0,2,2],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[3,0,2,2],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[2,0,2,3],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[2,0,2,2],[2,2,2,1]],[[1,0,0,1],[2,2,3,2],[2,0,2,2],[1,3,2,1]],[[1,0,0,1],[2,2,3,2],[2,0,2,2],[1,2,3,1]],[[1,0,0,1],[2,2,3,2],[2,0,2,2],[1,2,2,2]],[[1,0,0,1],[3,2,3,2],[2,0,3,1],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[3,0,3,1],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[2,0,4,1],[1,2,2,1]],[[1,0,0,1],[2,2,3,2],[2,0,3,1],[2,2,2,1]],[[1,0,0,1],[2,2,3,2],[2,0,3,1],[1,3,2,1]],[[1,0,0,1],[2,2,3,2],[2,0,3,1],[1,2,3,1]],[[1,0,0,1],[2,2,3,2],[2,0,3,1],[1,2,2,2]],[[1,0,0,1],[2,2,3,3],[2,0,3,2],[1,2,1,1]],[[1,0,0,1],[2,2,3,2],[2,0,4,2],[1,2,1,1]],[[1,0,0,1],[2,2,3,2],[2,0,3,3],[1,2,1,1]],[[1,0,0,1],[2,2,3,2],[2,0,3,2],[1,2,1,2]],[[1,0,0,1],[3,2,3,2],[2,0,3,2],[1,2,2,0]],[[1,0,0,1],[2,2,3,3],[2,0,3,2],[1,2,2,0]],[[1,0,0,1],[2,2,3,2],[3,0,3,2],[1,2,2,0]],[[1,0,0,1],[2,2,3,2],[2,0,4,2],[1,2,2,0]],[[1,0,0,1],[2,2,3,2],[2,0,3,3],[1,2,2,0]],[[1,0,0,1],[2,2,3,2],[2,0,3,2],[2,2,2,0]],[[1,0,0,1],[2,2,3,2],[2,0,3,2],[1,3,2,0]],[[1,0,0,1],[2,2,3,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,3,1,1],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[0,3,1,1],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[0,4,1,1],[2,3,3,2],[1,2,0,0]],[[1,2,3,0],[0,3,1,1],[2,3,3,2],[1,2,0,0]],[[1,3,2,0],[0,3,1,1],[2,3,3,2],[1,2,0,0]],[[2,2,2,0],[0,3,1,1],[2,3,3,2],[1,2,0,0]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,3,1,1],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[0,3,1,1],[2,3,4,2],[1,1,1,0]],[[1,2,2,0],[0,3,1,1],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[0,3,1,1],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[0,4,1,1],[2,3,3,2],[1,1,1,0]],[[1,2,3,0],[0,3,1,1],[2,3,3,2],[1,1,1,0]],[[1,3,2,0],[0,3,1,1],[2,3,3,2],[1,1,1,0]],[[2,2,2,0],[0,3,1,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[1,1,0,2]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[2,1,0,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,3],[1,1,0,1]],[[1,2,2,0],[0,3,1,1],[2,3,4,2],[1,1,0,1]],[[1,2,2,0],[0,3,1,1],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[0,3,1,1],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[0,4,1,1],[2,3,3,2],[1,1,0,1]],[[1,2,3,0],[0,3,1,1],[2,3,3,2],[1,1,0,1]],[[1,3,2,0],[0,3,1,1],[2,3,3,2],[1,1,0,1]],[[2,2,2,0],[0,3,1,1],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[1,0,3,0]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[0,3,1,1],[2,3,3,3],[1,0,2,0]],[[1,2,2,0],[0,3,1,1],[2,3,4,2],[1,0,2,0]],[[1,2,2,0],[0,3,1,1],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[0,3,1,1],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[0,4,1,1],[2,3,3,2],[1,0,2,0]],[[1,2,3,0],[0,3,1,1],[2,3,3,2],[1,0,2,0]],[[1,3,2,0],[0,3,1,1],[2,3,3,2],[1,0,2,0]],[[2,2,2,0],[0,3,1,1],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[1,0,1,2]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[2,0,1,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,3],[1,0,1,1]],[[1,2,2,0],[0,3,1,1],[2,3,4,2],[1,0,1,1]],[[1,2,2,0],[0,3,1,1],[2,4,3,2],[1,0,1,1]],[[1,2,2,0],[0,3,1,1],[3,3,3,2],[1,0,1,1]],[[1,2,2,0],[0,4,1,1],[2,3,3,2],[1,0,1,1]],[[1,2,3,0],[0,3,1,1],[2,3,3,2],[1,0,1,1]],[[1,3,2,0],[0,3,1,1],[2,3,3,2],[1,0,1,1]],[[2,2,2,0],[0,3,1,1],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,3,1,1],[2,3,3,3],[0,2,1,0]],[[1,2,2,0],[0,3,1,1],[2,3,4,2],[0,2,1,0]],[[1,2,2,0],[0,3,1,1],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[0,3,1,1],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,4,1,1],[2,3,3,2],[0,2,1,0]],[[1,2,3,0],[0,3,1,1],[2,3,3,2],[0,2,1,0]],[[1,3,2,0],[0,3,1,1],[2,3,3,2],[0,2,1,0]],[[2,2,2,0],[0,3,1,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[0,2,0,2]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[0,3,0,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,3],[0,2,0,1]],[[1,2,2,0],[0,3,1,1],[2,3,4,2],[0,2,0,1]],[[1,2,2,0],[0,3,1,1],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[0,3,1,1],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[0,4,1,1],[2,3,3,2],[0,2,0,1]],[[1,2,3,0],[0,3,1,1],[2,3,3,2],[0,2,0,1]],[[1,3,2,0],[0,3,1,1],[2,3,3,2],[0,2,0,1]],[[2,2,2,0],[0,3,1,1],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[0,1,3,0]],[[1,2,2,0],[0,3,1,1],[2,3,3,3],[0,1,2,0]],[[1,2,2,0],[0,3,1,1],[2,3,4,2],[0,1,2,0]],[[1,2,2,0],[0,3,1,1],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,1,1],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,4,1,1],[2,3,3,2],[0,1,2,0]],[[1,2,3,0],[0,3,1,1],[2,3,3,2],[0,1,2,0]],[[1,3,2,0],[0,3,1,1],[2,3,3,2],[0,1,2,0]],[[2,2,2,0],[0,3,1,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[0,1,1,2]],[[1,2,2,0],[0,3,1,1],[2,3,3,3],[0,1,1,1]],[[1,2,2,0],[0,3,1,1],[2,3,4,2],[0,1,1,1]],[[1,2,2,0],[0,3,1,1],[2,4,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,1,1],[3,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,4,1,1],[2,3,3,2],[0,1,1,1]],[[1,2,3,0],[0,3,1,1],[2,3,3,2],[0,1,1,1]],[[1,3,2,0],[0,3,1,1],[2,3,3,2],[0,1,1,1]],[[2,2,2,0],[0,3,1,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,2],[0,0,2,2]],[[1,2,2,0],[0,3,1,1],[2,3,3,3],[0,0,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,4,2],[0,0,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,3,1,1],[2,4,3,1],[1,2,0,1]],[[1,2,2,0],[0,3,1,1],[3,3,3,1],[1,2,0,1]],[[1,2,2,0],[0,4,1,1],[2,3,3,1],[1,2,0,1]],[[1,3,2,0],[0,3,1,1],[2,3,3,1],[1,2,0,1]],[[2,2,2,0],[0,3,1,1],[2,3,3,1],[1,2,0,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[0,3,1,1],[2,3,4,1],[1,1,1,1]],[[1,2,2,0],[0,3,1,1],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[0,3,1,1],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[0,4,1,1],[2,3,3,1],[1,1,1,1]],[[1,2,3,0],[0,3,1,1],[2,3,3,1],[1,1,1,1]],[[1,3,2,0],[0,3,1,1],[2,3,3,1],[1,1,1,1]],[[2,2,2,0],[0,3,1,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,1],[1,0,2,2]],[[1,2,2,0],[0,3,1,1],[2,3,3,1],[1,0,3,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,4,1],[1,0,2,1]],[[1,2,2,0],[0,3,1,1],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[0,3,1,1],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[0,4,1,1],[2,3,3,1],[1,0,2,1]],[[1,2,3,0],[0,3,1,1],[2,3,3,1],[1,0,2,1]],[[1,3,2,0],[0,3,1,1],[2,3,3,1],[1,0,2,1]],[[2,2,2,0],[0,3,1,1],[2,3,3,1],[1,0,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[0,3,1,1],[2,3,4,1],[0,2,1,1]],[[1,2,2,0],[0,3,1,1],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[0,3,1,1],[3,3,3,1],[0,2,1,1]],[[1,2,2,0],[0,4,1,1],[2,3,3,1],[0,2,1,1]],[[1,2,3,0],[0,3,1,1],[2,3,3,1],[0,2,1,1]],[[1,3,2,0],[0,3,1,1],[2,3,3,1],[0,2,1,1]],[[2,2,2,0],[0,3,1,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,1],[0,1,2,2]],[[1,2,2,0],[0,3,1,1],[2,3,3,1],[0,1,3,1]],[[1,2,2,0],[0,3,1,1],[2,3,4,1],[0,1,2,1]],[[1,2,2,0],[0,3,1,1],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[0,3,1,1],[3,3,3,1],[0,1,2,1]],[[1,2,2,0],[0,4,1,1],[2,3,3,1],[0,1,2,1]],[[1,2,3,0],[0,3,1,1],[2,3,3,1],[0,1,2,1]],[[1,3,2,0],[0,3,1,1],[2,3,3,1],[0,1,2,1]],[[2,2,2,0],[0,3,1,1],[2,3,3,1],[0,1,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,0],[2,1,2,1]],[[1,2,2,0],[0,3,1,1],[2,4,3,0],[1,1,2,1]],[[1,2,2,0],[0,3,1,1],[3,3,3,0],[1,1,2,1]],[[1,2,2,0],[0,4,1,1],[2,3,3,0],[1,1,2,1]],[[1,3,2,0],[0,3,1,1],[2,3,3,0],[1,1,2,1]],[[2,2,2,0],[0,3,1,1],[2,3,3,0],[1,1,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,0],[0,2,3,1]],[[1,2,2,0],[0,3,1,1],[2,3,3,0],[0,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,4,3,0],[0,2,2,1]],[[1,2,2,0],[0,3,1,1],[3,3,3,0],[0,2,2,1]],[[1,2,2,0],[0,4,1,1],[2,3,3,0],[0,2,2,1]],[[1,0,0,1],[2,3,0,0],[3,3,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,0,0],[2,3,3,2],[2,2,2,1]],[[1,0,0,1],[2,3,0,0],[2,3,3,2],[1,3,2,1]],[[1,0,0,1],[2,3,0,0],[2,3,3,2],[1,2,3,1]],[[1,0,0,1],[2,3,0,0],[2,3,3,2],[1,2,2,2]],[[1,0,0,1],[2,3,0,1],[1,4,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,0,1],[1,3,3,2],[2,2,2,1]],[[1,0,0,1],[2,3,0,1],[1,3,3,2],[1,3,2,1]],[[1,0,0,1],[2,3,0,1],[1,3,3,2],[1,2,3,1]],[[1,0,0,1],[2,3,0,1],[1,3,3,2],[1,2,2,2]],[[1,0,0,1],[3,3,0,1],[2,2,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,0,1],[3,2,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,0,1],[2,2,3,2],[2,2,2,1]],[[1,0,0,1],[2,3,0,1],[2,2,3,2],[1,3,2,1]],[[1,0,0,1],[2,3,0,1],[2,2,3,2],[1,2,3,1]],[[1,0,0,1],[2,3,0,1],[2,2,3,2],[1,2,2,2]],[[1,0,0,1],[2,3,0,1],[3,3,3,1],[1,2,2,1]],[[1,0,0,1],[2,3,0,1],[2,3,3,1],[2,2,2,1]],[[1,0,0,1],[2,3,0,1],[2,3,3,1],[1,3,2,1]],[[1,0,0,1],[2,3,0,1],[2,3,3,1],[1,2,3,1]],[[1,0,0,1],[3,3,0,1],[2,3,3,2],[0,2,2,1]],[[1,0,0,1],[2,3,0,1],[3,3,3,2],[0,2,2,1]],[[1,0,0,1],[2,3,0,1],[2,4,3,2],[0,2,2,1]],[[1,0,0,1],[2,3,0,1],[2,3,3,2],[0,3,2,1]],[[1,0,0,1],[2,3,0,1],[2,3,3,2],[0,2,3,1]],[[1,0,0,1],[2,3,0,1],[2,3,3,2],[0,2,2,2]],[[1,0,0,1],[3,3,0,1],[2,3,3,2],[1,1,2,1]],[[1,0,0,1],[2,3,0,1],[3,3,3,2],[1,1,2,1]],[[1,0,0,1],[2,3,0,1],[2,4,3,2],[1,1,2,1]],[[1,0,0,1],[2,3,0,1],[2,3,3,2],[2,1,2,1]],[[1,0,0,1],[2,3,0,1],[3,3,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,0,1],[2,3,3,2],[2,2,2,0]],[[1,0,0,1],[2,3,0,1],[2,3,3,2],[1,3,2,0]],[[1,0,0,1],[2,3,0,2],[1,2,3,3],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[1,2,3,2],[2,2,2,1]],[[1,0,0,1],[2,3,0,2],[1,2,3,2],[1,3,2,1]],[[1,0,0,1],[2,3,0,2],[1,2,3,2],[1,2,3,1]],[[1,0,0,1],[2,3,0,2],[1,2,3,2],[1,2,2,2]],[[1,0,0,1],[2,3,0,2],[1,4,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[1,3,2,3],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[1,3,2,2],[2,2,2,1]],[[1,0,0,1],[2,3,0,2],[1,3,2,2],[1,3,2,1]],[[1,0,0,1],[2,3,0,2],[1,3,2,2],[1,2,3,1]],[[1,0,0,1],[2,3,0,2],[1,3,2,2],[1,2,2,2]],[[1,0,0,1],[2,3,0,2],[1,4,3,1],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[1,3,3,1],[2,2,2,1]],[[1,0,0,1],[2,3,0,2],[1,3,3,1],[1,3,2,1]],[[1,0,0,1],[2,3,0,2],[1,3,3,1],[1,2,3,1]],[[1,0,0,1],[2,3,0,2],[1,3,3,1],[1,2,2,2]],[[1,0,0,1],[2,3,0,2],[1,3,3,3],[1,1,2,1]],[[1,0,0,1],[2,3,0,2],[1,3,3,2],[1,1,3,1]],[[1,0,0,1],[2,3,0,2],[1,3,3,2],[1,1,2,2]],[[1,0,0,1],[2,3,0,2],[1,4,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,0,2],[1,3,3,2],[2,2,2,0]],[[1,0,0,1],[2,3,0,2],[1,3,3,2],[1,3,2,0]],[[1,0,0,1],[2,3,0,2],[1,3,3,2],[1,2,3,0]],[[1,0,0,1],[3,3,0,2],[2,1,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[3,1,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,1,3,3],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,1,3,2],[2,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,1,3,2],[1,3,2,1]],[[1,0,0,1],[2,3,0,2],[2,1,3,2],[1,2,3,1]],[[1,0,0,1],[2,3,0,2],[2,1,3,2],[1,2,2,2]],[[1,0,0,1],[3,3,0,2],[2,2,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[3,2,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,2,2,3],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,2,2,2],[2,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,2,2,2],[1,3,2,1]],[[1,0,0,1],[2,3,0,2],[2,2,2,2],[1,2,3,1]],[[1,0,0,1],[2,3,0,2],[2,2,2,2],[1,2,2,2]],[[1,0,0,1],[3,3,0,2],[2,2,3,1],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[3,2,3,1],[1,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,2,3,1],[2,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,2,3,1],[1,3,2,1]],[[1,0,0,1],[2,3,0,2],[2,2,3,1],[1,2,3,1]],[[1,0,0,1],[2,3,0,2],[2,2,3,1],[1,2,2,2]],[[1,0,0,1],[2,3,0,2],[2,2,3,3],[0,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,2,3,2],[0,3,2,1]],[[1,0,0,1],[2,3,0,2],[2,2,3,2],[0,2,3,1]],[[1,0,0,1],[2,3,0,2],[2,2,3,2],[0,2,2,2]],[[1,0,0,1],[3,3,0,2],[2,2,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,0,2],[3,2,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,0,2],[2,2,3,2],[2,2,2,0]],[[1,0,0,1],[2,3,0,2],[2,2,3,2],[1,3,2,0]],[[1,0,0,1],[2,3,0,2],[2,2,3,2],[1,2,3,0]],[[1,0,0,1],[3,3,0,2],[2,3,2,2],[0,2,2,1]],[[1,0,0,1],[2,3,0,2],[3,3,2,2],[0,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,4,2,2],[0,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,3,2,3],[0,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,3,2,2],[0,3,2,1]],[[1,0,0,1],[2,3,0,2],[2,3,2,2],[0,2,3,1]],[[1,0,0,1],[2,3,0,2],[2,3,2,2],[0,2,2,2]],[[1,0,0,1],[3,3,0,2],[2,3,2,2],[1,1,2,1]],[[1,0,0,1],[2,3,0,2],[3,3,2,2],[1,1,2,1]],[[1,0,0,1],[2,3,0,2],[2,4,2,2],[1,1,2,1]],[[1,0,0,1],[2,3,0,2],[2,3,2,2],[2,1,2,1]],[[1,0,0,1],[3,3,0,2],[2,3,3,1],[0,2,2,1]],[[1,0,0,1],[2,3,0,2],[3,3,3,1],[0,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,4,3,1],[0,2,2,1]],[[1,0,0,1],[2,3,0,2],[2,3,3,1],[0,3,2,1]],[[1,0,0,1],[2,3,0,2],[2,3,3,1],[0,2,3,1]],[[1,0,0,1],[2,3,0,2],[2,3,3,1],[0,2,2,2]],[[1,0,0,1],[3,3,0,2],[2,3,3,1],[1,1,2,1]],[[1,0,0,1],[2,3,0,2],[3,3,3,1],[1,1,2,1]],[[1,0,0,1],[2,3,0,2],[2,4,3,1],[1,1,2,1]],[[1,0,0,1],[2,3,0,2],[2,3,3,1],[2,1,2,1]],[[1,0,0,1],[2,3,0,2],[2,3,3,3],[0,1,2,1]],[[1,0,0,1],[2,3,0,2],[2,3,3,2],[0,1,3,1]],[[1,0,0,1],[2,3,0,2],[2,3,3,2],[0,1,2,2]],[[1,0,0,1],[3,3,0,2],[2,3,3,2],[0,2,2,0]],[[1,0,0,1],[2,3,0,2],[3,3,3,2],[0,2,2,0]],[[1,0,0,1],[2,3,0,2],[2,4,3,2],[0,2,2,0]],[[1,0,0,1],[2,3,0,2],[2,3,3,2],[0,3,2,0]],[[1,0,0,1],[2,3,0,2],[2,3,3,2],[0,2,3,0]],[[1,0,0,1],[2,3,0,2],[2,3,3,3],[1,0,2,1]],[[1,0,0,1],[2,3,0,2],[2,3,3,2],[1,0,3,1]],[[1,0,0,1],[2,3,0,2],[2,3,3,2],[1,0,2,2]],[[1,0,0,1],[3,3,0,2],[2,3,3,2],[1,1,2,0]],[[1,0,0,1],[2,3,0,2],[3,3,3,2],[1,1,2,0]],[[1,0,0,1],[2,3,0,2],[2,4,3,2],[1,1,2,0]],[[1,0,0,1],[2,3,0,2],[2,3,3,2],[2,1,2,0]],[[1,3,2,0],[0,3,1,1],[2,3,3,0],[0,2,2,1]],[[2,2,2,0],[0,3,1,1],[2,3,3,0],[0,2,2,1]],[[1,0,0,1],[2,3,1,0],[1,4,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,0],[1,3,3,2],[2,2,2,1]],[[1,0,0,1],[2,3,1,0],[1,3,3,2],[1,3,2,1]],[[1,0,0,1],[2,3,1,0],[1,3,3,2],[1,2,3,1]],[[1,0,0,1],[2,3,1,0],[1,3,3,2],[1,2,2,2]],[[1,0,0,1],[3,3,1,0],[2,2,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,0],[3,2,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,0],[2,2,3,2],[2,2,2,1]],[[1,0,0,1],[2,3,1,0],[2,2,3,2],[1,3,2,1]],[[1,0,0,1],[2,3,1,0],[2,2,3,2],[1,2,3,1]],[[1,0,0,1],[2,3,1,0],[2,2,3,2],[1,2,2,2]],[[1,0,0,1],[3,3,1,0],[2,3,3,2],[0,2,2,1]],[[1,0,0,1],[2,3,1,0],[3,3,3,2],[0,2,2,1]],[[1,0,0,1],[2,3,1,0],[2,4,3,2],[0,2,2,1]],[[1,0,0,1],[2,3,1,0],[2,3,3,2],[0,3,2,1]],[[1,0,0,1],[2,3,1,0],[2,3,3,2],[0,2,3,1]],[[1,0,0,1],[2,3,1,0],[2,3,3,2],[0,2,2,2]],[[1,0,0,1],[3,3,1,0],[2,3,3,2],[1,1,2,1]],[[1,0,0,1],[2,3,1,0],[3,3,3,2],[1,1,2,1]],[[1,0,0,1],[2,3,1,0],[2,4,3,2],[1,1,2,1]],[[1,0,0,1],[2,3,1,0],[2,3,3,2],[2,1,2,1]],[[1,0,0,1],[2,3,1,1],[1,4,3,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,1],[1,3,3,1],[2,2,2,1]],[[1,0,0,1],[2,3,1,1],[1,3,3,1],[1,3,2,1]],[[1,0,0,1],[2,3,1,1],[1,3,3,1],[1,2,3,1]],[[1,0,0,1],[2,3,1,1],[1,3,3,1],[1,2,2,2]],[[1,0,0,1],[2,3,1,1],[1,4,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,1],[1,3,3,2],[2,2,2,0]],[[1,0,0,1],[2,3,1,1],[1,3,3,2],[1,3,2,0]],[[1,0,0,1],[2,3,1,1],[1,3,3,2],[1,2,3,0]],[[1,0,0,1],[3,3,1,1],[2,2,3,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,1],[3,2,3,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,1],[2,2,3,1],[2,2,2,1]],[[1,0,0,1],[2,3,1,1],[2,2,3,1],[1,3,2,1]],[[1,0,0,1],[2,3,1,1],[2,2,3,1],[1,2,3,1]],[[1,0,0,1],[2,3,1,1],[2,2,3,1],[1,2,2,2]],[[1,0,0,1],[3,3,1,1],[2,2,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,1],[3,2,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,1],[2,2,3,2],[2,2,2,0]],[[1,0,0,1],[2,3,1,1],[2,2,3,2],[1,3,2,0]],[[1,0,0,1],[2,3,1,1],[2,2,3,2],[1,2,3,0]],[[1,0,0,1],[3,3,1,1],[2,3,3,1],[0,2,2,1]],[[1,0,0,1],[2,3,1,1],[3,3,3,1],[0,2,2,1]],[[1,0,0,1],[2,3,1,1],[2,4,3,1],[0,2,2,1]],[[1,0,0,1],[2,3,1,1],[2,3,3,1],[0,3,2,1]],[[1,0,0,1],[2,3,1,1],[2,3,3,1],[0,2,3,1]],[[1,0,0,1],[2,3,1,1],[2,3,3,1],[0,2,2,2]],[[1,0,0,1],[3,3,1,1],[2,3,3,1],[1,1,2,1]],[[1,0,0,1],[2,3,1,1],[3,3,3,1],[1,1,2,1]],[[1,0,0,1],[2,3,1,1],[2,4,3,1],[1,1,2,1]],[[1,0,0,1],[2,3,1,1],[2,3,3,1],[2,1,2,1]],[[1,0,0,1],[3,3,1,1],[2,3,3,2],[0,2,2,0]],[[1,0,0,1],[2,3,1,1],[3,3,3,2],[0,2,2,0]],[[1,0,0,1],[2,3,1,1],[2,4,3,2],[0,2,2,0]],[[1,0,0,1],[2,3,1,1],[2,3,3,2],[0,3,2,0]],[[1,0,0,1],[2,3,1,1],[2,3,3,2],[0,2,3,0]],[[1,0,0,1],[3,3,1,1],[2,3,3,2],[1,1,2,0]],[[1,0,0,1],[2,3,1,1],[3,3,3,2],[1,1,2,0]],[[1,0,0,1],[2,3,1,1],[2,4,3,2],[1,1,2,0]],[[1,0,0,1],[2,3,1,1],[2,3,3,2],[2,1,2,0]],[[1,0,0,1],[2,3,1,3],[1,2,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[1,2,2,3],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[1,2,2,2],[2,2,2,1]],[[1,0,0,1],[2,3,1,2],[1,2,2,2],[1,3,2,1]],[[1,0,0,1],[2,3,1,2],[1,2,2,2],[1,2,3,1]],[[1,0,0,1],[2,3,1,2],[1,2,2,2],[1,2,2,2]],[[1,0,0,1],[2,3,1,2],[1,2,4,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[1,2,3,1],[2,2,2,1]],[[1,0,0,1],[2,3,1,2],[1,2,3,1],[1,3,2,1]],[[1,0,0,1],[2,3,1,2],[1,2,3,1],[1,2,3,1]],[[1,0,0,1],[2,3,1,2],[1,2,3,1],[1,2,2,2]],[[1,0,0,1],[2,3,1,3],[1,2,3,2],[1,2,1,1]],[[1,0,0,1],[2,3,1,2],[1,2,4,2],[1,2,1,1]],[[1,0,0,1],[2,3,1,2],[1,2,3,3],[1,2,1,1]],[[1,0,0,1],[2,3,1,2],[1,2,3,2],[1,2,1,2]],[[1,0,0,1],[2,3,1,3],[1,2,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[1,2,4,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[1,2,3,3],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[1,2,3,2],[2,2,2,0]],[[1,0,0,1],[2,3,1,2],[1,2,3,2],[1,3,2,0]],[[1,0,0,1],[2,3,1,2],[1,2,3,2],[1,2,3,0]],[[1,0,0,1],[2,3,1,3],[1,3,1,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[1,4,1,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[1,3,1,3],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[1,3,1,2],[2,2,2,1]],[[1,0,0,1],[2,3,1,2],[1,3,1,2],[1,3,2,1]],[[1,0,0,1],[2,3,1,2],[1,3,1,2],[1,2,3,1]],[[1,0,0,1],[2,3,1,2],[1,3,1,2],[1,2,2,2]],[[1,0,0,1],[2,3,1,2],[1,4,2,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[1,3,2,1],[2,2,2,1]],[[1,0,0,1],[2,3,1,2],[1,3,2,1],[1,3,2,1]],[[1,0,0,1],[2,3,1,2],[1,3,2,1],[1,2,3,1]],[[1,0,0,1],[2,3,1,2],[1,3,2,1],[1,2,2,2]],[[1,0,0,1],[2,3,1,3],[1,3,2,2],[1,1,2,1]],[[1,0,0,1],[2,3,1,2],[1,3,2,3],[1,1,2,1]],[[1,0,0,1],[2,3,1,2],[1,3,2,2],[1,1,3,1]],[[1,0,0,1],[2,3,1,2],[1,3,2,2],[1,1,2,2]],[[1,0,0,1],[2,3,1,2],[1,4,2,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[1,3,2,2],[2,2,2,0]],[[1,0,0,1],[2,3,1,2],[1,3,2,2],[1,3,2,0]],[[1,0,0,1],[2,3,1,2],[1,3,2,2],[1,2,3,0]],[[1,0,0,1],[2,3,1,2],[1,4,3,1],[1,1,2,1]],[[1,0,0,1],[2,3,1,2],[1,3,4,1],[1,1,2,1]],[[1,0,0,1],[2,3,1,2],[1,3,3,1],[1,1,3,1]],[[1,0,0,1],[2,3,1,2],[1,3,3,1],[1,1,2,2]],[[1,0,0,1],[2,3,1,2],[1,4,3,1],[1,2,1,1]],[[1,0,0,1],[2,3,1,2],[1,3,4,1],[1,2,1,1]],[[1,0,0,1],[2,3,1,2],[1,3,3,1],[2,2,1,1]],[[1,0,0,1],[2,3,1,2],[1,3,3,1],[1,3,1,1]],[[1,0,0,1],[2,3,1,3],[1,3,3,2],[1,1,1,1]],[[1,0,0,1],[2,3,1,2],[1,4,3,2],[1,1,1,1]],[[1,0,0,1],[2,3,1,2],[1,3,4,2],[1,1,1,1]],[[1,0,0,1],[2,3,1,2],[1,3,3,3],[1,1,1,1]],[[1,0,0,1],[2,3,1,2],[1,3,3,2],[1,1,1,2]],[[1,0,0,1],[2,3,1,3],[1,3,3,2],[1,1,2,0]],[[1,0,0,1],[2,3,1,2],[1,4,3,2],[1,1,2,0]],[[1,0,0,1],[2,3,1,2],[1,3,4,2],[1,1,2,0]],[[1,0,0,1],[2,3,1,2],[1,3,3,3],[1,1,2,0]],[[1,0,0,1],[2,3,1,2],[1,3,3,2],[1,1,3,0]],[[1,0,0,1],[2,3,1,3],[1,3,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,1,2],[1,4,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,1,2],[1,3,4,2],[1,2,0,1]],[[1,0,0,1],[2,3,1,2],[1,3,3,3],[1,2,0,1]],[[1,0,0,1],[2,3,1,2],[1,3,3,2],[2,2,0,1]],[[1,0,0,1],[2,3,1,2],[1,3,3,2],[1,3,0,1]],[[1,0,0,1],[2,3,1,2],[1,3,3,2],[1,2,0,2]],[[1,0,0,1],[2,3,1,3],[1,3,3,2],[1,2,1,0]],[[1,0,0,1],[2,3,1,2],[1,4,3,2],[1,2,1,0]],[[1,0,0,1],[2,3,1,2],[1,3,4,2],[1,2,1,0]],[[1,0,0,1],[2,3,1,2],[1,3,3,3],[1,2,1,0]],[[1,0,0,1],[2,3,1,2],[1,3,3,2],[2,2,1,0]],[[1,0,0,1],[2,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,3,1,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,3,1,1],[2,4,2,2],[1,1,2,0]],[[1,0,0,1],[3,3,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,3],[2,1,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[3,1,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,1,2,3],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,1,2,2],[2,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,1,2,2],[1,3,2,1]],[[1,0,0,1],[2,3,1,2],[2,1,2,2],[1,2,3,1]],[[1,0,0,1],[2,3,1,2],[2,1,2,2],[1,2,2,2]],[[1,0,0,1],[3,3,1,2],[2,1,3,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[3,1,3,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,1,4,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,1,3,1],[2,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,1,3,1],[1,3,2,1]],[[1,0,0,1],[2,3,1,2],[2,1,3,1],[1,2,3,1]],[[1,0,0,1],[2,3,1,2],[2,1,3,1],[1,2,2,2]],[[1,0,0,1],[2,3,1,3],[2,1,3,2],[1,2,1,1]],[[1,0,0,1],[2,3,1,2],[2,1,4,2],[1,2,1,1]],[[1,0,0,1],[2,3,1,2],[2,1,3,3],[1,2,1,1]],[[1,0,0,1],[2,3,1,2],[2,1,3,2],[1,2,1,2]],[[1,0,0,1],[3,3,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,3],[2,1,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[3,1,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,1,4,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,1,3,3],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,1,3,2],[2,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,1,3,2],[1,3,2,0]],[[1,0,0,1],[2,3,1,2],[2,1,3,2],[1,2,3,0]],[[1,0,0,1],[3,3,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,3],[2,2,1,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[3,2,1,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,1,3],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,1,2],[2,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,1,2],[1,3,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,1,2],[1,2,3,1]],[[1,0,0,1],[2,3,1,2],[2,2,1,2],[1,2,2,2]],[[1,0,0,1],[3,3,1,2],[2,2,2,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[3,2,2,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,2,1],[2,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,2,1],[1,3,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,2,1],[1,2,3,1]],[[1,0,0,1],[2,3,1,2],[2,2,2,1],[1,2,2,2]],[[1,0,0,1],[2,3,1,3],[2,2,2,2],[0,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,2,3],[0,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,2,2],[0,3,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,2,2],[0,2,3,1]],[[1,0,0,1],[2,3,1,2],[2,2,2,2],[0,2,2,2]],[[1,0,0,1],[3,3,1,2],[2,2,2,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[3,2,2,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,2,2,2],[2,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,2,2,2],[1,3,2,0]],[[1,0,0,1],[2,3,1,2],[2,2,2,2],[1,2,3,0]],[[1,0,0,1],[2,3,1,2],[2,2,4,1],[0,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,3,1],[0,3,2,1]],[[1,0,0,1],[2,3,1,2],[2,2,3,1],[0,2,3,1]],[[1,0,0,1],[2,3,1,2],[2,2,3,1],[0,2,2,2]],[[1,0,0,1],[3,3,1,2],[2,2,3,1],[1,2,1,1]],[[1,0,0,1],[2,3,1,2],[3,2,3,1],[1,2,1,1]],[[1,0,0,1],[2,3,1,2],[2,2,3,1],[2,2,1,1]],[[1,0,0,1],[2,3,1,2],[2,2,3,1],[1,3,1,1]],[[1,0,0,1],[2,3,1,3],[2,2,3,2],[0,2,1,1]],[[1,0,0,1],[2,3,1,2],[2,2,4,2],[0,2,1,1]],[[1,0,0,1],[2,3,1,2],[2,2,3,3],[0,2,1,1]],[[1,0,0,1],[2,3,1,2],[2,2,3,2],[0,2,1,2]],[[1,0,0,1],[2,3,1,3],[2,2,3,2],[0,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,2,4,2],[0,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,2,3,3],[0,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,2,3,2],[0,3,2,0]],[[1,0,0,1],[2,3,1,2],[2,2,3,2],[0,2,3,0]],[[1,0,0,1],[3,3,1,2],[2,2,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,1,2],[3,2,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,1,2],[2,2,3,2],[2,2,0,1]],[[1,0,0,1],[2,3,1,2],[2,2,3,2],[1,3,0,1]],[[1,0,0,1],[3,3,1,2],[2,2,3,2],[1,2,1,0]],[[1,0,0,1],[2,3,1,2],[3,2,3,2],[1,2,1,0]],[[1,0,0,1],[2,3,1,2],[2,2,3,2],[2,2,1,0]],[[1,0,0,1],[2,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,3,1,1],[3,3,2,2],[1,1,2,0]],[[1,2,2,0],[0,4,1,1],[2,3,2,2],[1,1,2,0]],[[1,2,3,0],[0,3,1,1],[2,3,2,2],[1,1,2,0]],[[1,3,2,0],[0,3,1,1],[2,3,2,2],[1,1,2,0]],[[2,2,2,0],[0,3,1,1],[2,3,2,2],[1,1,2,0]],[[1,2,2,0],[0,3,1,1],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[0,3,1,1],[2,3,2,2],[1,0,3,1]],[[1,2,2,0],[0,3,1,1],[2,3,2,3],[1,0,2,1]],[[1,0,0,1],[3,3,1,2],[2,3,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[3,3,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,0,2],[2,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,0,2],[1,3,2,1]],[[1,0,0,1],[3,3,1,2],[2,3,1,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[3,3,1,1],[1,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,1,1],[2,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,1,1],[1,3,2,1]],[[1,0,0,1],[3,3,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,0,1],[2,3,1,3],[2,3,1,2],[0,2,2,1]],[[1,0,0,1],[2,3,1,2],[3,3,1,2],[0,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,4,1,2],[0,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,1,3],[0,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,1,2],[0,3,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,1,2],[0,2,3,1]],[[1,0,0,1],[2,3,1,2],[2,3,1,2],[0,2,2,2]],[[1,0,0,1],[3,3,1,2],[2,3,1,2],[1,1,2,1]],[[1,0,0,1],[2,3,1,2],[3,3,1,2],[1,1,2,1]],[[1,0,0,1],[2,3,1,2],[2,4,1,2],[1,1,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,1,2],[2,1,2,1]],[[1,0,0,1],[3,3,1,2],[2,3,1,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[3,3,1,2],[1,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,1,2],[2,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,1,2],[1,3,2,0]],[[1,0,0,1],[3,3,1,2],[2,3,2,1],[0,2,2,1]],[[1,0,0,1],[2,3,1,2],[3,3,2,1],[0,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,4,2,1],[0,2,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,2,1],[0,3,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,2,1],[0,2,3,1]],[[1,0,0,1],[2,3,1,2],[2,3,2,1],[0,2,2,2]],[[1,0,0,1],[3,3,1,2],[2,3,2,1],[1,1,2,1]],[[1,0,0,1],[2,3,1,2],[3,3,2,1],[1,1,2,1]],[[1,0,0,1],[2,3,1,2],[2,4,2,1],[1,1,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,2,1],[2,1,2,1]],[[1,0,0,1],[2,3,1,3],[2,3,2,2],[0,1,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,2,3],[0,1,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,2,2],[0,1,3,1]],[[1,0,0,1],[2,3,1,2],[2,3,2,2],[0,1,2,2]],[[1,0,0,1],[3,3,1,2],[2,3,2,2],[0,2,2,0]],[[1,0,0,1],[2,3,1,2],[3,3,2,2],[0,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,4,2,2],[0,2,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,2,2],[0,3,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,2,2],[0,2,3,0]],[[1,0,0,1],[2,3,1,3],[2,3,2,2],[1,0,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,2,3],[1,0,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,2,2],[1,0,3,1]],[[1,0,0,1],[2,3,1,2],[2,3,2,2],[1,0,2,2]],[[1,0,0,1],[3,3,1,2],[2,3,2,2],[1,1,2,0]],[[1,0,0,1],[2,3,1,2],[3,3,2,2],[1,1,2,0]],[[1,0,0,1],[2,3,1,2],[2,4,2,2],[1,1,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,0,0,1],[3,3,1,2],[2,3,3,1],[0,1,2,1]],[[1,0,0,1],[2,3,1,2],[3,3,3,1],[0,1,2,1]],[[1,0,0,1],[2,3,1,2],[2,4,3,1],[0,1,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,4,1],[0,1,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,1],[0,1,3,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,1],[0,1,2,2]],[[1,0,0,1],[3,3,1,2],[2,3,3,1],[0,2,1,1]],[[1,0,0,1],[2,3,1,2],[3,3,3,1],[0,2,1,1]],[[1,0,0,1],[2,3,1,2],[2,4,3,1],[0,2,1,1]],[[1,0,0,1],[2,3,1,2],[2,3,4,1],[0,2,1,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,1],[0,3,1,1]],[[1,0,0,1],[3,3,1,2],[2,3,3,1],[1,0,2,1]],[[1,0,0,1],[2,3,1,2],[3,3,3,1],[1,0,2,1]],[[1,0,0,1],[2,3,1,2],[2,4,3,1],[1,0,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,4,1],[1,0,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,1],[2,0,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,1],[1,0,3,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,1],[1,0,2,2]],[[1,0,0,1],[3,3,1,2],[2,3,3,1],[1,1,1,1]],[[1,0,0,1],[2,3,1,2],[3,3,3,1],[1,1,1,1]],[[1,0,0,1],[2,3,1,2],[2,4,3,1],[1,1,1,1]],[[1,0,0,1],[2,3,1,2],[2,3,4,1],[1,1,1,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,1],[2,1,1,1]],[[1,0,0,1],[3,3,1,2],[2,3,3,1],[1,2,0,1]],[[1,0,0,1],[2,3,1,2],[3,3,3,1],[1,2,0,1]],[[1,0,0,1],[2,3,1,2],[2,4,3,1],[1,2,0,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,3,1,1],[2,3,2,2],[0,2,3,0]],[[1,2,2,0],[0,3,1,1],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[0,3,1,1],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[0,3,1,1],[3,3,2,2],[0,2,2,0]],[[1,2,2,0],[0,4,1,1],[2,3,2,2],[0,2,2,0]],[[1,2,3,0],[0,3,1,1],[2,3,2,2],[0,2,2,0]],[[1,3,2,0],[0,3,1,1],[2,3,2,2],[0,2,2,0]],[[2,2,2,0],[0,3,1,1],[2,3,2,2],[0,2,2,0]],[[1,0,0,1],[2,3,1,3],[2,3,3,2],[0,0,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,4,2],[0,0,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,3],[0,0,2,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[0,0,2,2]],[[1,0,0,1],[3,3,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,0,1],[2,3,1,3],[2,3,3,2],[0,1,1,1]],[[1,0,0,1],[2,3,1,2],[3,3,3,2],[0,1,1,1]],[[1,0,0,1],[2,3,1,2],[2,4,3,2],[0,1,1,1]],[[1,0,0,1],[2,3,1,2],[2,3,4,2],[0,1,1,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,3],[0,1,1,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[0,1,1,2]],[[1,0,0,1],[3,3,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,0,1],[2,3,1,3],[2,3,3,2],[0,1,2,0]],[[1,0,0,1],[2,3,1,2],[3,3,3,2],[0,1,2,0]],[[1,0,0,1],[2,3,1,2],[2,4,3,2],[0,1,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,4,2],[0,1,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,3,3],[0,1,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[0,1,3,0]],[[1,0,0,1],[3,3,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,0,1],[2,3,1,3],[2,3,3,2],[0,2,0,1]],[[1,0,0,1],[2,3,1,2],[3,3,3,2],[0,2,0,1]],[[1,0,0,1],[2,3,1,2],[2,4,3,2],[0,2,0,1]],[[1,0,0,1],[2,3,1,2],[2,3,4,2],[0,2,0,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,3],[0,2,0,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[0,3,0,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[0,2,0,2]],[[1,0,0,1],[3,3,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,0,1],[2,3,1,3],[2,3,3,2],[0,2,1,0]],[[1,0,0,1],[2,3,1,2],[3,3,3,2],[0,2,1,0]],[[1,0,0,1],[2,3,1,2],[2,4,3,2],[0,2,1,0]],[[1,0,0,1],[2,3,1,2],[2,3,4,2],[0,2,1,0]],[[1,0,0,1],[2,3,1,2],[2,3,3,3],[0,2,1,0]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,3,1,1],[2,3,2,2],[0,1,2,2]],[[1,2,2,0],[0,3,1,1],[2,3,2,2],[0,1,3,1]],[[1,2,2,0],[0,3,1,1],[2,3,2,3],[0,1,2,1]],[[1,0,0,1],[3,3,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,0,1],[2,3,1,3],[2,3,3,2],[1,0,1,1]],[[1,0,0,1],[2,3,1,2],[3,3,3,2],[1,0,1,1]],[[1,0,0,1],[2,3,1,2],[2,4,3,2],[1,0,1,1]],[[1,0,0,1],[2,3,1,2],[2,3,4,2],[1,0,1,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,3],[1,0,1,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[2,0,1,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[1,0,1,2]],[[1,0,0,1],[3,3,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,0,1],[2,3,1,3],[2,3,3,2],[1,0,2,0]],[[1,0,0,1],[2,3,1,2],[3,3,3,2],[1,0,2,0]],[[1,0,0,1],[2,3,1,2],[2,4,3,2],[1,0,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,4,2],[1,0,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,3,3],[1,0,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[2,0,2,0]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[1,0,3,0]],[[1,0,0,1],[3,3,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,0,1],[2,3,1,3],[2,3,3,2],[1,1,0,1]],[[1,0,0,1],[2,3,1,2],[3,3,3,2],[1,1,0,1]],[[1,0,0,1],[2,3,1,2],[2,4,3,2],[1,1,0,1]],[[1,0,0,1],[2,3,1,2],[2,3,4,2],[1,1,0,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,3],[1,1,0,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[2,1,0,1]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[1,1,0,2]],[[1,0,0,1],[3,3,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,0,1],[2,3,1,3],[2,3,3,2],[1,1,1,0]],[[1,0,0,1],[2,3,1,2],[3,3,3,2],[1,1,1,0]],[[1,0,0,1],[2,3,1,2],[2,4,3,2],[1,1,1,0]],[[1,0,0,1],[2,3,1,2],[2,3,4,2],[1,1,1,0]],[[1,0,0,1],[2,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,3,1,1],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[0,3,1,1],[2,4,2,1],[1,1,2,1]],[[1,2,2,0],[0,3,1,1],[3,3,2,1],[1,1,2,1]],[[1,2,2,0],[0,4,1,1],[2,3,2,1],[1,1,2,1]],[[1,2,3,0],[0,3,1,1],[2,3,2,1],[1,1,2,1]],[[1,0,0,1],[3,3,1,2],[2,3,3,2],[1,2,0,0]],[[1,0,0,1],[2,3,1,2],[3,3,3,2],[1,2,0,0]],[[1,0,0,1],[2,3,1,2],[2,4,3,2],[1,2,0,0]],[[1,0,0,1],[2,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,3,2,0],[0,3,1,1],[2,3,2,1],[1,1,2,1]],[[2,2,2,0],[0,3,1,1],[2,3,2,1],[1,1,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,2,1],[0,2,2,2]],[[1,2,2,0],[0,3,1,1],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[0,3,1,1],[2,3,2,1],[0,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[0,3,1,1],[3,3,2,1],[0,2,2,1]],[[1,2,2,0],[0,4,1,1],[2,3,2,1],[0,2,2,1]],[[1,2,3,0],[0,3,1,1],[2,3,2,1],[0,2,2,1]],[[1,3,2,0],[0,3,1,1],[2,3,2,1],[0,2,2,1]],[[2,2,2,0],[0,3,1,1],[2,3,2,1],[0,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,2,0],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,2,0],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[3,3,2,0],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,1,2],[1,3,2,0]],[[1,2,2,0],[0,3,1,1],[2,3,1,2],[2,2,2,0]],[[1,2,2,0],[0,3,1,1],[3,3,1,2],[1,2,2,0]],[[1,0,0,1],[2,3,2,0],[1,2,4,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,0],[1,2,3,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,0],[1,2,3,2],[1,3,2,1]],[[1,0,0,1],[2,3,2,0],[1,2,3,2],[1,2,3,1]],[[1,0,0,1],[2,3,2,0],[1,2,3,2],[1,2,2,2]],[[1,0,0,1],[2,3,2,0],[1,4,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,0],[1,3,2,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,0],[1,3,2,2],[1,3,2,1]],[[1,0,0,1],[2,3,2,0],[1,3,2,2],[1,2,3,1]],[[1,0,0,1],[2,3,2,0],[1,3,2,2],[1,2,2,2]],[[1,0,0,1],[2,3,2,0],[1,4,3,2],[1,1,2,1]],[[1,0,0,1],[2,3,2,0],[1,3,4,2],[1,1,2,1]],[[1,0,0,1],[2,3,2,0],[1,3,3,2],[1,1,3,1]],[[1,0,0,1],[2,3,2,0],[1,3,3,2],[1,1,2,2]],[[1,0,0,1],[2,3,2,0],[1,4,3,2],[1,2,1,1]],[[1,0,0,1],[2,3,2,0],[1,3,4,2],[1,2,1,1]],[[1,0,0,1],[2,3,2,0],[1,3,3,2],[2,2,1,1]],[[1,0,0,1],[2,3,2,0],[1,3,3,2],[1,3,1,1]],[[1,0,0,1],[3,3,2,0],[2,1,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,0],[3,1,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,0],[2,1,4,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,0],[2,1,3,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,0],[2,1,3,2],[1,3,2,1]],[[1,0,0,1],[2,3,2,0],[2,1,3,2],[1,2,3,1]],[[1,0,0,1],[2,3,2,0],[2,1,3,2],[1,2,2,2]],[[1,0,0,1],[3,3,2,0],[2,2,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,0],[3,2,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,0],[2,2,2,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,0],[2,2,2,2],[1,3,2,1]],[[1,0,0,1],[2,3,2,0],[2,2,2,2],[1,2,3,1]],[[1,0,0,1],[2,3,2,0],[2,2,2,2],[1,2,2,2]],[[1,0,0,1],[2,3,2,0],[2,2,4,2],[0,2,2,1]],[[1,0,0,1],[2,3,2,0],[2,2,3,2],[0,3,2,1]],[[1,0,0,1],[2,3,2,0],[2,2,3,2],[0,2,3,1]],[[1,0,0,1],[2,3,2,0],[2,2,3,2],[0,2,2,2]],[[1,0,0,1],[3,3,2,0],[2,2,3,2],[1,2,1,1]],[[1,0,0,1],[2,3,2,0],[3,2,3,2],[1,2,1,1]],[[1,0,0,1],[2,3,2,0],[2,2,3,2],[2,2,1,1]],[[1,0,0,1],[2,3,2,0],[2,2,3,2],[1,3,1,1]],[[1,0,0,1],[3,3,2,0],[2,3,1,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,0],[3,3,1,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,0],[2,3,1,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,0],[2,3,1,2],[1,3,2,1]],[[1,0,0,1],[3,3,2,0],[2,3,2,2],[0,2,2,1]],[[1,0,0,1],[2,3,2,0],[3,3,2,2],[0,2,2,1]],[[1,0,0,1],[2,3,2,0],[2,4,2,2],[0,2,2,1]],[[1,0,0,1],[2,3,2,0],[2,3,2,2],[0,3,2,1]],[[1,0,0,1],[2,3,2,0],[2,3,2,2],[0,2,3,1]],[[1,0,0,1],[2,3,2,0],[2,3,2,2],[0,2,2,2]],[[1,0,0,1],[3,3,2,0],[2,3,2,2],[1,1,2,1]],[[1,0,0,1],[2,3,2,0],[3,3,2,2],[1,1,2,1]],[[1,0,0,1],[2,3,2,0],[2,4,2,2],[1,1,2,1]],[[1,0,0,1],[2,3,2,0],[2,3,2,2],[2,1,2,1]],[[1,0,0,1],[3,3,2,0],[2,3,3,2],[0,1,2,1]],[[1,0,0,1],[2,3,2,0],[3,3,3,2],[0,1,2,1]],[[1,0,0,1],[2,3,2,0],[2,4,3,2],[0,1,2,1]],[[1,0,0,1],[2,3,2,0],[2,3,4,2],[0,1,2,1]],[[1,0,0,1],[2,3,2,0],[2,3,3,2],[0,1,3,1]],[[1,0,0,1],[2,3,2,0],[2,3,3,2],[0,1,2,2]],[[1,0,0,1],[3,3,2,0],[2,3,3,2],[0,2,1,1]],[[1,0,0,1],[2,3,2,0],[3,3,3,2],[0,2,1,1]],[[1,0,0,1],[2,3,2,0],[2,4,3,2],[0,2,1,1]],[[1,0,0,1],[2,3,2,0],[2,3,4,2],[0,2,1,1]],[[1,0,0,1],[2,3,2,0],[2,3,3,2],[0,3,1,1]],[[1,0,0,1],[3,3,2,0],[2,3,3,2],[1,0,2,1]],[[1,0,0,1],[2,3,2,0],[3,3,3,2],[1,0,2,1]],[[1,0,0,1],[2,3,2,0],[2,4,3,2],[1,0,2,1]],[[1,0,0,1],[2,3,2,0],[2,3,4,2],[1,0,2,1]],[[1,0,0,1],[2,3,2,0],[2,3,3,2],[2,0,2,1]],[[1,0,0,1],[2,3,2,0],[2,3,3,2],[1,0,3,1]],[[1,0,0,1],[2,3,2,0],[2,3,3,2],[1,0,2,2]],[[1,0,0,1],[3,3,2,0],[2,3,3,2],[1,1,1,1]],[[1,0,0,1],[2,3,2,0],[3,3,3,2],[1,1,1,1]],[[1,0,0,1],[2,3,2,0],[2,4,3,2],[1,1,1,1]],[[1,0,0,1],[2,3,2,0],[2,3,4,2],[1,1,1,1]],[[1,0,0,1],[2,3,2,0],[2,3,3,2],[2,1,1,1]],[[1,0,0,1],[3,3,2,0],[2,3,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,2,0],[3,3,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,2,0],[2,4,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,0],[0,3,1,1],[2,3,1,2],[2,1,2,1]],[[1,2,2,0],[0,3,1,1],[2,4,1,2],[1,1,2,1]],[[1,2,2,0],[0,3,1,1],[3,3,1,2],[1,1,2,1]],[[1,2,2,0],[0,4,1,1],[2,3,1,2],[1,1,2,1]],[[1,2,3,0],[0,3,1,1],[2,3,1,2],[1,1,2,1]],[[1,3,2,0],[0,3,1,1],[2,3,1,2],[1,1,2,1]],[[2,2,2,0],[0,3,1,1],[2,3,1,2],[1,1,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,1,2],[0,2,2,2]],[[1,0,0,1],[2,3,2,1],[1,2,2,3],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[1,2,2,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[1,2,2,2],[1,3,2,1]],[[1,0,0,1],[2,3,2,1],[1,2,2,2],[1,2,3,1]],[[1,0,0,1],[2,3,2,1],[1,2,2,2],[1,2,2,2]],[[1,0,0,1],[2,3,2,1],[1,2,4,1],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[1,2,3,1],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[1,2,3,1],[1,3,2,1]],[[1,0,0,1],[2,3,2,1],[1,2,3,1],[1,2,3,1]],[[1,0,0,1],[2,3,2,1],[1,2,3,1],[1,2,2,2]],[[1,0,0,1],[2,3,2,1],[1,2,4,2],[1,2,1,1]],[[1,0,0,1],[2,3,2,1],[1,2,3,3],[1,2,1,1]],[[1,0,0,1],[2,3,2,1],[1,2,3,2],[1,2,1,2]],[[1,0,0,1],[2,3,2,1],[1,2,4,2],[1,2,2,0]],[[1,0,0,1],[2,3,2,1],[1,2,3,3],[1,2,2,0]],[[1,0,0,1],[2,3,2,1],[1,2,3,2],[2,2,2,0]],[[1,0,0,1],[2,3,2,1],[1,2,3,2],[1,3,2,0]],[[1,0,0,1],[2,3,2,1],[1,2,3,2],[1,2,3,0]],[[1,0,0,1],[2,3,2,1],[1,4,1,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,1,3],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,1,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,1,2],[1,3,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,1,2],[1,2,3,1]],[[1,0,0,1],[2,3,2,1],[1,3,1,2],[1,2,2,2]],[[1,0,0,1],[2,3,2,1],[1,4,2,1],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,2,1],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,2,1],[1,3,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,2,1],[1,2,3,1]],[[1,0,0,1],[2,3,2,1],[1,3,2,1],[1,2,2,2]],[[1,0,0,1],[2,3,2,1],[1,3,2,3],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,2,2],[1,1,3,1]],[[1,0,0,1],[2,3,2,1],[1,3,2,2],[1,1,2,2]],[[1,0,0,1],[2,3,2,1],[1,4,2,2],[1,2,2,0]],[[1,0,0,1],[2,3,2,1],[1,3,2,2],[2,2,2,0]],[[1,0,0,1],[2,3,2,1],[1,3,2,2],[1,3,2,0]],[[1,0,0,1],[2,3,2,1],[1,3,2,2],[1,2,3,0]],[[1,0,0,1],[2,3,2,1],[1,4,3,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,0],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,0],[1,3,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,0],[1,2,3,1]],[[1,0,0,1],[2,3,2,1],[1,4,3,1],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,4,1],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,1],[1,1,3,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,1],[1,1,2,2]],[[1,0,0,1],[2,3,2,1],[1,4,3,1],[1,2,1,1]],[[1,0,0,1],[2,3,2,1],[1,3,4,1],[1,2,1,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,1],[2,2,1,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,1],[1,3,1,1]],[[1,0,0,1],[2,3,2,1],[1,4,3,2],[1,1,1,1]],[[1,0,0,1],[2,3,2,1],[1,3,4,2],[1,1,1,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,3],[1,1,1,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,2],[1,1,1,2]],[[1,0,0,1],[2,3,2,1],[1,4,3,2],[1,1,2,0]],[[1,0,0,1],[2,3,2,1],[1,3,4,2],[1,1,2,0]],[[1,0,0,1],[2,3,2,1],[1,3,3,3],[1,1,2,0]],[[1,0,0,1],[2,3,2,1],[1,3,3,2],[1,1,3,0]],[[1,0,0,1],[2,3,2,1],[1,4,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,2,1],[1,3,4,2],[1,2,0,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,3],[1,2,0,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,2],[2,2,0,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,2],[1,3,0,1]],[[1,0,0,1],[2,3,2,1],[1,3,3,2],[1,2,0,2]],[[1,0,0,1],[2,3,2,1],[1,4,3,2],[1,2,1,0]],[[1,0,0,1],[2,3,2,1],[1,3,4,2],[1,2,1,0]],[[1,0,0,1],[2,3,2,1],[1,3,3,3],[1,2,1,0]],[[1,0,0,1],[2,3,2,1],[1,3,3,2],[2,2,1,0]],[[1,0,0,1],[2,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,3,1,1],[2,3,1,2],[0,2,3,1]],[[1,2,2,0],[0,3,1,1],[2,3,1,2],[0,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,1,3],[0,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,4,1,2],[0,2,2,1]],[[1,2,2,0],[0,3,1,1],[3,3,1,2],[0,2,2,1]],[[1,2,2,0],[0,4,1,1],[2,3,1,2],[0,2,2,1]],[[1,2,3,0],[0,3,1,1],[2,3,1,2],[0,2,2,1]],[[1,0,0,1],[3,3,2,1],[2,1,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[3,1,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,1,2,3],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,1,2,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,1,2,2],[1,3,2,1]],[[1,0,0,1],[2,3,2,1],[2,1,2,2],[1,2,3,1]],[[1,0,0,1],[2,3,2,1],[2,1,2,2],[1,2,2,2]],[[1,0,0,1],[3,3,2,1],[2,1,3,1],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[3,1,3,1],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,1,4,1],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,1,3,1],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,1,3,1],[1,3,2,1]],[[1,0,0,1],[2,3,2,1],[2,1,3,1],[1,2,3,1]],[[1,0,0,1],[2,3,2,1],[2,1,3,1],[1,2,2,2]],[[1,0,0,1],[2,3,2,1],[2,1,4,2],[1,2,1,1]],[[1,0,0,1],[2,3,2,1],[2,1,3,3],[1,2,1,1]],[[1,0,0,1],[2,3,2,1],[2,1,3,2],[1,2,1,2]],[[1,0,0,1],[3,3,2,1],[2,1,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,2,1],[3,1,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,1,4,2],[1,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,1,3,3],[1,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,1,3,2],[2,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,1,3,2],[1,3,2,0]],[[1,0,0,1],[2,3,2,1],[2,1,3,2],[1,2,3,0]],[[1,0,0,1],[3,3,2,1],[2,2,1,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[3,2,1,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,1,3],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,1,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,1,2],[1,3,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,1,2],[1,2,3,1]],[[1,0,0,1],[2,3,2,1],[2,2,1,2],[1,2,2,2]],[[1,0,0,1],[3,3,2,1],[2,2,2,1],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[3,2,2,1],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,2,1],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,2,1],[1,3,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,2,1],[1,2,3,1]],[[1,0,0,1],[2,3,2,1],[2,2,2,1],[1,2,2,2]],[[1,0,0,1],[2,3,2,1],[2,2,2,3],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,2,2],[0,3,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,2,2],[0,2,3,1]],[[1,0,0,1],[2,3,2,1],[2,2,2,2],[0,2,2,2]],[[1,0,0,1],[3,3,2,1],[2,2,2,2],[1,2,2,0]],[[1,0,0,1],[2,3,2,1],[3,2,2,2],[1,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,2,2,2],[2,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,2,2,2],[1,3,2,0]],[[1,0,0,1],[2,3,2,1],[2,2,2,2],[1,2,3,0]],[[1,0,0,1],[3,3,2,1],[2,2,3,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[3,2,3,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,0],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,0],[1,3,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,0],[1,2,3,1]],[[1,0,0,1],[2,3,2,1],[2,2,4,1],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,1],[0,3,2,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,1],[0,2,3,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,1],[0,2,2,2]],[[1,0,0,1],[3,3,2,1],[2,2,3,1],[1,2,1,1]],[[1,0,0,1],[2,3,2,1],[3,2,3,1],[1,2,1,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,1],[2,2,1,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,1],[1,3,1,1]],[[1,0,0,1],[2,3,2,1],[2,2,4,2],[0,2,1,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,3],[0,2,1,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,2],[0,2,1,2]],[[1,0,0,1],[2,3,2,1],[2,2,4,2],[0,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,2,3,3],[0,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,2,3,2],[0,3,2,0]],[[1,0,0,1],[2,3,2,1],[2,2,3,2],[0,2,3,0]],[[1,0,0,1],[3,3,2,1],[2,2,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,2,1],[3,2,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,2],[2,2,0,1]],[[1,0,0,1],[2,3,2,1],[2,2,3,2],[1,3,0,1]],[[1,0,0,1],[3,3,2,1],[2,2,3,2],[1,2,1,0]],[[1,0,0,1],[2,3,2,1],[3,2,3,2],[1,2,1,0]],[[1,0,0,1],[2,3,2,1],[2,2,3,2],[2,2,1,0]],[[1,0,0,1],[2,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,3,2,0],[0,3,1,1],[2,3,1,2],[0,2,2,1]],[[2,2,2,0],[0,3,1,1],[2,3,1,2],[0,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,1,1],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,1,1],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[3,3,1,1],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,0,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,3,0,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[3,3,0,2],[1,2,2,1]],[[1,0,0,1],[3,3,2,1],[2,3,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[3,3,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,0,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,0,2],[1,3,2,1]],[[1,0,0,1],[3,3,2,1],[2,3,1,1],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[3,3,1,1],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,1,1],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,1,1],[1,3,2,1]],[[1,0,0,1],[3,3,2,1],[2,3,1,2],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[3,3,1,2],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,4,1,2],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,1,3],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,1,2],[0,3,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,1,2],[0,2,3,1]],[[1,0,0,1],[2,3,2,1],[2,3,1,2],[0,2,2,2]],[[1,0,0,1],[3,3,2,1],[2,3,1,2],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[3,3,1,2],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[2,4,1,2],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,1,2],[2,1,2,1]],[[1,0,0,1],[3,3,2,1],[2,3,1,2],[1,2,2,0]],[[1,0,0,1],[2,3,2,1],[3,3,1,2],[1,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,1,2],[2,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,1,2],[1,3,2,0]],[[1,0,0,1],[3,3,2,1],[2,3,2,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[3,3,2,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,2,0],[2,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,2,0],[1,3,2,1]],[[1,0,0,1],[3,3,2,1],[2,3,2,1],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[3,3,2,1],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,4,2,1],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,2,1],[0,3,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,2,1],[0,2,3,1]],[[1,0,0,1],[2,3,2,1],[2,3,2,1],[0,2,2,2]],[[1,0,0,1],[3,3,2,1],[2,3,2,1],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[3,3,2,1],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[2,4,2,1],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,2,1],[2,1,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,2,3],[0,1,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,2,2],[0,1,3,1]],[[1,0,0,1],[2,3,2,1],[2,3,2,2],[0,1,2,2]],[[1,0,0,1],[3,3,2,1],[2,3,2,2],[0,2,2,0]],[[1,0,0,1],[2,3,2,1],[3,3,2,2],[0,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,4,2,2],[0,2,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,2,2],[0,3,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,2,2],[0,2,3,0]],[[1,0,0,1],[2,3,2,1],[2,3,2,3],[1,0,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,2,2],[1,0,3,1]],[[1,0,0,1],[2,3,2,1],[2,3,2,2],[1,0,2,2]],[[1,0,0,1],[3,3,2,1],[2,3,2,2],[1,1,2,0]],[[1,0,0,1],[2,3,2,1],[3,3,2,2],[1,1,2,0]],[[1,0,0,1],[2,3,2,1],[2,4,2,2],[1,1,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,0,0,1],[3,3,2,1],[2,3,3,0],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[3,3,3,0],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,4,3,0],[0,2,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,0],[0,3,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,0],[0,2,3,1]],[[1,0,0,1],[3,3,2,1],[2,3,3,0],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[3,3,3,0],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[2,4,3,0],[1,1,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,0],[2,1,2,1]],[[1,0,0,1],[3,3,2,1],[2,3,3,1],[0,1,2,1]],[[1,0,0,1],[2,3,2,1],[3,3,3,1],[0,1,2,1]],[[1,0,0,1],[2,3,2,1],[2,4,3,1],[0,1,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,4,1],[0,1,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,1],[0,1,3,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,1],[0,1,2,2]],[[1,0,0,1],[3,3,2,1],[2,3,3,1],[0,2,1,1]],[[1,0,0,1],[2,3,2,1],[3,3,3,1],[0,2,1,1]],[[1,0,0,1],[2,3,2,1],[2,4,3,1],[0,2,1,1]],[[1,0,0,1],[2,3,2,1],[2,3,4,1],[0,2,1,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,1],[0,3,1,1]],[[1,0,0,1],[3,3,2,1],[2,3,3,1],[1,0,2,1]],[[1,0,0,1],[2,3,2,1],[3,3,3,1],[1,0,2,1]],[[1,0,0,1],[2,3,2,1],[2,4,3,1],[1,0,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,4,1],[1,0,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,1],[2,0,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,1],[1,0,3,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,1],[1,0,2,2]],[[1,0,0,1],[3,3,2,1],[2,3,3,1],[1,1,1,1]],[[1,0,0,1],[2,3,2,1],[3,3,3,1],[1,1,1,1]],[[1,0,0,1],[2,3,2,1],[2,4,3,1],[1,1,1,1]],[[1,0,0,1],[2,3,2,1],[2,3,4,1],[1,1,1,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,1],[2,1,1,1]],[[1,0,0,1],[3,3,2,1],[2,3,3,1],[1,2,0,1]],[[1,0,0,1],[2,3,2,1],[3,3,3,1],[1,2,0,1]],[[1,0,0,1],[2,3,2,1],[2,4,3,1],[1,2,0,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,3,1,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,3,1,1],[2,2,3,2],[2,2,1,0]],[[1,2,2,0],[0,3,1,1],[3,2,3,2],[1,2,1,0]],[[1,2,2,0],[0,3,1,1],[2,2,3,2],[1,3,0,1]],[[1,0,0,1],[2,3,2,1],[2,3,4,2],[0,0,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,3],[0,0,2,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[0,0,2,2]],[[1,0,0,1],[3,3,2,1],[2,3,3,2],[0,1,1,1]],[[1,0,0,1],[2,3,2,1],[3,3,3,2],[0,1,1,1]],[[1,0,0,1],[2,3,2,1],[2,4,3,2],[0,1,1,1]],[[1,0,0,1],[2,3,2,1],[2,3,4,2],[0,1,1,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,3],[0,1,1,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[0,1,1,2]],[[1,0,0,1],[3,3,2,1],[2,3,3,2],[0,1,2,0]],[[1,0,0,1],[2,3,2,1],[3,3,3,2],[0,1,2,0]],[[1,0,0,1],[2,3,2,1],[2,4,3,2],[0,1,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,4,2],[0,1,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,3,3],[0,1,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[0,1,3,0]],[[1,0,0,1],[3,3,2,1],[2,3,3,2],[0,2,0,1]],[[1,0,0,1],[2,3,2,1],[3,3,3,2],[0,2,0,1]],[[1,0,0,1],[2,3,2,1],[2,4,3,2],[0,2,0,1]],[[1,0,0,1],[2,3,2,1],[2,3,4,2],[0,2,0,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,3],[0,2,0,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[0,3,0,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[0,2,0,2]],[[1,0,0,1],[3,3,2,1],[2,3,3,2],[0,2,1,0]],[[1,0,0,1],[2,3,2,1],[3,3,3,2],[0,2,1,0]],[[1,0,0,1],[2,3,2,1],[2,4,3,2],[0,2,1,0]],[[1,0,0,1],[2,3,2,1],[2,3,4,2],[0,2,1,0]],[[1,0,0,1],[2,3,2,1],[2,3,3,3],[0,2,1,0]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,3,1,1],[2,2,3,2],[2,2,0,1]],[[1,2,2,0],[0,3,1,1],[3,2,3,2],[1,2,0,1]],[[1,2,2,0],[0,3,1,1],[2,2,3,2],[0,2,3,0]],[[1,0,0,1],[3,3,2,1],[2,3,3,2],[1,0,1,1]],[[1,0,0,1],[2,3,2,1],[3,3,3,2],[1,0,1,1]],[[1,0,0,1],[2,3,2,1],[2,4,3,2],[1,0,1,1]],[[1,0,0,1],[2,3,2,1],[2,3,4,2],[1,0,1,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,3],[1,0,1,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[2,0,1,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[1,0,1,2]],[[1,0,0,1],[3,3,2,1],[2,3,3,2],[1,0,2,0]],[[1,0,0,1],[2,3,2,1],[3,3,3,2],[1,0,2,0]],[[1,0,0,1],[2,3,2,1],[2,4,3,2],[1,0,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,4,2],[1,0,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,3,3],[1,0,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[2,0,2,0]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[1,0,3,0]],[[1,0,0,1],[3,3,2,1],[2,3,3,2],[1,1,0,1]],[[1,0,0,1],[2,3,2,1],[3,3,3,2],[1,1,0,1]],[[1,0,0,1],[2,3,2,1],[2,4,3,2],[1,1,0,1]],[[1,0,0,1],[2,3,2,1],[2,3,4,2],[1,1,0,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,3],[1,1,0,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[2,1,0,1]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[1,1,0,2]],[[1,0,0,1],[3,3,2,1],[2,3,3,2],[1,1,1,0]],[[1,0,0,1],[2,3,2,1],[3,3,3,2],[1,1,1,0]],[[1,0,0,1],[2,3,2,1],[2,4,3,2],[1,1,1,0]],[[1,0,0,1],[2,3,2,1],[2,3,4,2],[1,1,1,0]],[[1,0,0,1],[2,3,2,1],[2,3,3,3],[1,1,1,0]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,3,1,1],[2,2,3,2],[0,3,2,0]],[[1,2,2,0],[0,3,1,1],[2,2,3,3],[0,2,2,0]],[[1,2,2,0],[0,3,1,1],[2,2,4,2],[0,2,2,0]],[[1,2,2,0],[0,3,1,1],[2,2,3,2],[0,2,1,2]],[[1,2,2,0],[0,3,1,1],[2,2,3,3],[0,2,1,1]],[[1,2,2,0],[0,3,1,1],[2,2,4,2],[0,2,1,1]],[[1,0,0,1],[3,3,2,1],[2,3,3,2],[1,2,0,0]],[[1,0,0,1],[2,3,2,1],[3,3,3,2],[1,2,0,0]],[[1,0,0,1],[2,3,2,1],[2,4,3,2],[1,2,0,0]],[[1,0,0,1],[2,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,3,1,1],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[0,3,1,1],[2,2,3,1],[2,2,1,1]],[[1,2,2,0],[0,3,1,1],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[0,3,1,1],[2,2,3,1],[0,2,2,2]],[[1,2,2,0],[0,3,1,1],[2,2,3,1],[0,2,3,1]],[[1,2,2,0],[0,3,1,1],[2,2,3,1],[0,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,2,4,1],[0,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,2,3,0],[1,2,3,1]],[[1,2,2,0],[0,3,1,1],[2,2,3,0],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,2,3,0],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[3,2,3,0],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,2,2,2],[1,2,3,0]],[[1,2,2,0],[0,3,1,1],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[0,3,1,1],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[0,3,1,1],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[0,3,1,1],[2,2,2,2],[0,2,2,2]],[[1,2,2,0],[0,3,1,1],[2,2,2,2],[0,2,3,1]],[[1,2,2,0],[0,3,1,1],[2,2,2,2],[0,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,2,2,3],[0,2,2,1]],[[1,0,0,1],[2,3,2,2],[1,2,4,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[1,2,3,0],[2,2,2,1]],[[1,0,0,1],[2,3,2,2],[1,2,3,0],[1,3,2,1]],[[1,0,0,1],[2,3,2,2],[1,2,3,0],[1,2,3,1]],[[1,0,0,1],[2,3,2,2],[1,2,3,0],[1,2,2,2]],[[1,0,0,1],[2,3,2,2],[1,2,4,1],[1,2,2,0]],[[1,0,0,1],[2,3,2,2],[1,2,3,1],[2,2,2,0]],[[1,0,0,1],[2,3,2,2],[1,2,3,1],[1,3,2,0]],[[1,0,0,1],[2,3,2,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,0],[0,3,1,1],[2,2,2,1],[1,2,2,2]],[[1,2,2,0],[0,3,1,1],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[0,3,1,1],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,2,1,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,1],[2,2,1,2],[1,2,3,1]],[[1,0,0,1],[2,3,2,3],[1,3,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[1,4,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[1,3,0,3],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[1,3,0,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,2],[1,3,0,2],[1,3,2,1]],[[1,0,0,1],[2,3,2,2],[1,3,0,2],[1,2,3,1]],[[1,0,0,1],[2,3,2,2],[1,3,0,2],[1,2,2,2]],[[1,0,0,1],[2,3,2,2],[1,4,2,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[1,3,2,0],[2,2,2,1]],[[1,0,0,1],[2,3,2,2],[1,3,2,0],[1,3,2,1]],[[1,0,0,1],[2,3,2,2],[1,3,2,0],[1,2,3,1]],[[1,0,0,1],[2,3,2,2],[1,3,2,0],[1,2,2,2]],[[1,0,0,1],[2,3,2,2],[1,4,2,1],[1,2,2,0]],[[1,0,0,1],[2,3,2,2],[1,3,2,1],[2,2,2,0]],[[1,0,0,1],[2,3,2,2],[1,3,2,1],[1,3,2,0]],[[1,0,0,1],[2,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,0],[0,3,1,1],[2,2,1,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,2,1,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,2,1,3],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[3,2,1,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[1,4,3,0],[1,1,2,1]],[[1,0,0,1],[2,3,2,2],[1,3,4,0],[1,1,2,1]],[[1,0,0,1],[2,3,2,2],[1,3,3,0],[1,1,3,1]],[[1,0,0,1],[2,3,2,2],[1,3,3,0],[1,1,2,2]],[[1,0,0,1],[2,3,2,2],[1,4,3,0],[1,2,1,1]],[[1,0,0,1],[2,3,2,2],[1,3,4,0],[1,2,1,1]],[[1,0,0,1],[2,3,2,2],[1,3,3,0],[2,2,1,1]],[[1,0,0,1],[2,3,2,2],[1,3,3,0],[1,3,1,1]],[[1,0,0,1],[2,3,2,2],[1,4,3,1],[1,1,2,0]],[[1,0,0,1],[2,3,2,2],[1,3,4,1],[1,1,2,0]],[[1,0,0,1],[2,3,2,2],[1,3,3,1],[1,1,3,0]],[[1,0,0,1],[2,3,2,2],[1,4,3,1],[1,2,0,1]],[[1,0,0,1],[2,3,2,2],[1,3,4,1],[1,2,0,1]],[[1,0,0,1],[2,3,2,2],[1,3,3,1],[2,2,0,1]],[[1,0,0,1],[2,3,2,2],[1,3,3,1],[1,3,0,1]],[[1,0,0,1],[2,3,2,2],[1,4,3,1],[1,2,1,0]],[[1,0,0,1],[2,3,2,2],[1,3,4,1],[1,2,1,0]],[[1,0,0,1],[2,3,2,2],[1,3,3,1],[2,2,1,0]],[[1,0,0,1],[2,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,3,1,1],[2,1,3,2],[1,2,3,0]],[[1,2,2,0],[0,3,1,1],[2,1,3,2],[1,3,2,0]],[[1,2,2,0],[0,3,1,1],[2,1,3,2],[2,2,2,0]],[[1,2,2,0],[0,3,1,1],[2,1,3,3],[1,2,2,0]],[[1,2,2,0],[0,3,1,1],[2,1,4,2],[1,2,2,0]],[[1,2,2,0],[0,3,1,1],[3,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,3,1,1],[2,1,3,2],[1,2,1,2]],[[1,2,2,0],[0,3,1,1],[2,1,3,3],[1,2,1,1]],[[1,2,2,0],[0,3,1,1],[2,1,4,2],[1,2,1,1]],[[1,2,2,0],[0,3,1,1],[2,1,3,1],[1,2,2,2]],[[1,2,2,0],[0,3,1,1],[2,1,3,1],[1,2,3,1]],[[1,2,2,0],[0,3,1,1],[2,1,3,1],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,1,3,1],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,1,4,1],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[3,1,3,1],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,1],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[0,3,1,1],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[2,1,2,3],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[3,1,2,2],[1,2,2,1]],[[1,0,0,1],[3,3,2,2],[2,1,3,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[3,1,3,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,1,4,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,1,3,0],[2,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,1,3,0],[1,3,2,1]],[[1,0,0,1],[2,3,2,2],[2,1,3,0],[1,2,3,1]],[[1,0,0,1],[2,3,2,2],[2,1,3,0],[1,2,2,2]],[[1,0,0,1],[3,3,2,2],[2,1,3,1],[1,2,2,0]],[[1,0,0,1],[2,3,2,2],[3,1,3,1],[1,2,2,0]],[[1,0,0,1],[2,3,2,2],[2,1,4,1],[1,2,2,0]],[[1,0,0,1],[2,3,2,2],[2,1,3,1],[2,2,2,0]],[[1,0,0,1],[2,3,2,2],[2,1,3,1],[1,3,2,0]],[[1,0,0,1],[2,3,2,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,0],[0,3,1,1],[1,3,3,2],[1,3,1,0]],[[1,0,0,1],[3,3,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,3],[2,2,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[3,2,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,2,0,3],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,2,0,2],[2,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,2,0,2],[1,3,2,1]],[[1,0,0,1],[2,3,2,2],[2,2,0,2],[1,2,3,1]],[[1,0,0,1],[2,3,2,2],[2,2,0,2],[1,2,2,2]],[[1,0,0,1],[3,3,2,2],[2,2,2,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[3,2,2,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,2,2,0],[2,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,2,2,0],[1,3,2,1]],[[1,0,0,1],[2,3,2,2],[2,2,2,0],[1,2,3,1]],[[1,0,0,1],[2,3,2,2],[2,2,2,0],[1,2,2,2]],[[1,0,0,1],[3,3,2,2],[2,2,2,1],[1,2,2,0]],[[1,0,0,1],[2,3,2,2],[3,2,2,1],[1,2,2,0]],[[1,0,0,1],[2,3,2,2],[2,2,2,1],[2,2,2,0]],[[1,0,0,1],[2,3,2,2],[2,2,2,1],[1,3,2,0]],[[1,0,0,1],[2,3,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,0],[0,3,1,1],[1,3,3,2],[2,2,1,0]],[[1,2,2,0],[0,3,1,1],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[0,3,1,1],[1,3,4,2],[1,2,1,0]],[[1,2,2,0],[0,3,1,1],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[0,4,1,1],[1,3,3,2],[1,2,1,0]],[[1,2,3,0],[0,3,1,1],[1,3,3,2],[1,2,1,0]],[[1,3,2,0],[0,3,1,1],[1,3,3,2],[1,2,1,0]],[[2,2,2,0],[0,3,1,1],[1,3,3,2],[1,2,1,0]],[[1,0,0,1],[2,3,2,2],[2,2,4,0],[0,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,2,3,0],[0,3,2,1]],[[1,0,0,1],[2,3,2,2],[2,2,3,0],[0,2,3,1]],[[1,0,0,1],[2,3,2,2],[2,2,3,0],[0,2,2,2]],[[1,0,0,1],[3,3,2,2],[2,2,3,0],[1,2,1,1]],[[1,0,0,1],[2,3,2,2],[3,2,3,0],[1,2,1,1]],[[1,0,0,1],[2,3,2,2],[2,2,3,0],[2,2,1,1]],[[1,0,0,1],[2,3,2,2],[2,2,3,0],[1,3,1,1]],[[1,0,0,1],[2,3,2,2],[2,2,4,1],[0,2,2,0]],[[1,0,0,1],[2,3,2,2],[2,2,3,1],[0,3,2,0]],[[1,0,0,1],[2,3,2,2],[2,2,3,1],[0,2,3,0]],[[1,0,0,1],[3,3,2,2],[2,2,3,1],[1,2,0,1]],[[1,0,0,1],[2,3,2,2],[3,2,3,1],[1,2,0,1]],[[1,0,0,1],[2,3,2,2],[2,2,3,1],[2,2,0,1]],[[1,0,0,1],[2,3,2,2],[2,2,3,1],[1,3,0,1]],[[1,0,0,1],[3,3,2,2],[2,2,3,1],[1,2,1,0]],[[1,0,0,1],[2,3,2,2],[3,2,3,1],[1,2,1,0]],[[1,0,0,1],[2,3,2,2],[2,2,3,1],[2,2,1,0]],[[1,0,0,1],[2,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[0,3,1,1],[1,3,3,2],[1,2,0,2]],[[1,2,2,0],[0,3,1,1],[1,3,3,2],[1,3,0,1]],[[1,2,2,0],[0,3,1,1],[1,3,3,2],[2,2,0,1]],[[1,2,2,0],[0,3,1,1],[1,3,3,3],[1,2,0,1]],[[1,2,2,0],[0,3,1,1],[1,3,4,2],[1,2,0,1]],[[1,2,2,0],[0,3,1,1],[1,4,3,2],[1,2,0,1]],[[1,2,2,0],[0,4,1,1],[1,3,3,2],[1,2,0,1]],[[1,2,3,0],[0,3,1,1],[1,3,3,2],[1,2,0,1]],[[1,3,2,0],[0,3,1,1],[1,3,3,2],[1,2,0,1]],[[2,2,2,0],[0,3,1,1],[1,3,3,2],[1,2,0,1]],[[1,2,2,0],[0,3,1,1],[1,3,3,2],[1,1,3,0]],[[1,2,2,0],[0,3,1,1],[1,3,3,3],[1,1,2,0]],[[1,2,2,0],[0,3,1,1],[1,3,4,2],[1,1,2,0]],[[1,2,2,0],[0,3,1,1],[1,4,3,2],[1,1,2,0]],[[1,2,2,0],[0,4,1,1],[1,3,3,2],[1,1,2,0]],[[1,2,3,0],[0,3,1,1],[1,3,3,2],[1,1,2,0]],[[1,3,2,0],[0,3,1,1],[1,3,3,2],[1,1,2,0]],[[2,2,2,0],[0,3,1,1],[1,3,3,2],[1,1,2,0]],[[1,2,2,0],[0,3,1,1],[1,3,3,2],[1,1,1,2]],[[1,2,2,0],[0,3,1,1],[1,3,3,3],[1,1,1,1]],[[1,2,2,0],[0,3,1,1],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[0,3,1,1],[1,4,3,2],[1,1,1,1]],[[1,2,2,0],[0,4,1,1],[1,3,3,2],[1,1,1,1]],[[1,2,3,0],[0,3,1,1],[1,3,3,2],[1,1,1,1]],[[1,3,2,0],[0,3,1,1],[1,3,3,2],[1,1,1,1]],[[2,2,2,0],[0,3,1,1],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[0,3,1,1],[1,3,3,2],[1,0,2,2]],[[1,2,2,0],[0,3,1,1],[1,3,3,3],[1,0,2,1]],[[1,2,2,0],[0,3,1,1],[1,3,4,2],[1,0,2,1]],[[1,0,0,1],[3,3,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,0,1],[2,3,2,3],[2,3,0,2],[0,2,2,1]],[[1,0,0,1],[2,3,2,2],[3,3,0,2],[0,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,4,0,2],[0,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,0,3],[0,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,0,2],[0,3,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,0,2],[0,2,3,1]],[[1,0,0,1],[2,3,2,2],[2,3,0,2],[0,2,2,2]],[[1,0,0,1],[3,3,2,2],[2,3,0,2],[1,1,2,1]],[[1,0,0,1],[2,3,2,2],[3,3,0,2],[1,1,2,1]],[[1,0,0,1],[2,3,2,2],[2,4,0,2],[1,1,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,0,2],[2,1,2,1]],[[1,0,0,1],[3,3,2,2],[2,3,1,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[3,3,1,0],[1,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,1,0],[2,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,1,0],[1,3,2,1]],[[1,0,0,1],[3,3,2,2],[2,3,1,1],[1,2,2,0]],[[1,0,0,1],[2,3,2,2],[3,3,1,1],[1,2,2,0]],[[1,0,0,1],[2,3,2,2],[2,3,1,1],[2,2,2,0]],[[1,0,0,1],[2,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,0,0,1],[3,3,2,2],[2,3,2,0],[0,2,2,1]],[[1,0,0,1],[2,3,2,2],[3,3,2,0],[0,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,4,2,0],[0,2,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,2,0],[0,3,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,2,0],[0,2,3,1]],[[1,0,0,1],[2,3,2,2],[2,3,2,0],[0,2,2,2]],[[1,0,0,1],[3,3,2,2],[2,3,2,0],[1,1,2,1]],[[1,0,0,1],[2,3,2,2],[3,3,2,0],[1,1,2,1]],[[1,0,0,1],[2,3,2,2],[2,4,2,0],[1,1,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,2,0],[2,1,2,1]],[[1,0,0,1],[3,3,2,2],[2,3,2,1],[0,2,2,0]],[[1,0,0,1],[2,3,2,2],[3,3,2,1],[0,2,2,0]],[[1,0,0,1],[2,3,2,2],[2,4,2,1],[0,2,2,0]],[[1,0,0,1],[2,3,2,2],[2,3,2,1],[0,3,2,0]],[[1,0,0,1],[2,3,2,2],[2,3,2,1],[0,2,3,0]],[[1,0,0,1],[3,3,2,2],[2,3,2,1],[1,1,2,0]],[[1,0,0,1],[2,3,2,2],[3,3,2,1],[1,1,2,0]],[[1,0,0,1],[2,3,2,2],[2,4,2,1],[1,1,2,0]],[[1,0,0,1],[2,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[0,3,1,1],[1,3,3,1],[1,3,1,1]],[[1,2,2,0],[0,3,1,1],[1,3,3,1],[2,2,1,1]],[[1,2,2,0],[0,3,1,1],[1,3,4,1],[1,2,1,1]],[[1,2,2,0],[0,3,1,1],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[0,4,1,1],[1,3,3,1],[1,2,1,1]],[[1,2,3,0],[0,3,1,1],[1,3,3,1],[1,2,1,1]],[[1,3,2,0],[0,3,1,1],[1,3,3,1],[1,2,1,1]],[[2,2,2,0],[0,3,1,1],[1,3,3,1],[1,2,1,1]],[[1,2,2,0],[0,3,1,1],[1,3,3,1],[1,1,2,2]],[[1,2,2,0],[0,3,1,1],[1,3,3,1],[1,1,3,1]],[[1,2,2,0],[0,3,1,1],[1,3,4,1],[1,1,2,1]],[[1,2,2,0],[0,3,1,1],[1,4,3,1],[1,1,2,1]],[[1,2,2,0],[0,4,1,1],[1,3,3,1],[1,1,2,1]],[[1,2,3,0],[0,3,1,1],[1,3,3,1],[1,1,2,1]],[[1,3,2,0],[0,3,1,1],[1,3,3,1],[1,1,2,1]],[[2,2,2,0],[0,3,1,1],[1,3,3,1],[1,1,2,1]],[[1,2,2,0],[0,3,1,1],[1,3,3,0],[1,2,3,1]],[[1,2,2,0],[0,3,1,1],[1,3,3,0],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[1,3,3,0],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[1,4,3,0],[1,2,2,1]],[[1,2,2,0],[0,4,1,1],[1,3,3,0],[1,2,2,1]],[[1,3,2,0],[0,3,1,1],[1,3,3,0],[1,2,2,1]],[[2,2,2,0],[0,3,1,1],[1,3,3,0],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[1,3,2,2],[1,2,3,0]],[[1,2,2,0],[0,3,1,1],[1,3,2,2],[1,3,2,0]],[[1,2,2,0],[0,3,1,1],[1,3,2,2],[2,2,2,0]],[[1,2,2,0],[0,3,1,1],[1,4,2,2],[1,2,2,0]],[[1,0,0,1],[3,3,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,0,1],[2,3,2,2],[3,3,3,0],[0,1,2,1]],[[1,0,0,1],[2,3,2,2],[2,4,3,0],[0,1,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,4,0],[0,1,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,3,0],[0,1,3,1]],[[1,0,0,1],[2,3,2,2],[2,3,3,0],[0,1,2,2]],[[1,0,0,1],[3,3,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,0,1],[2,3,2,2],[3,3,3,0],[0,2,1,1]],[[1,0,0,1],[2,3,2,2],[2,4,3,0],[0,2,1,1]],[[1,0,0,1],[2,3,2,2],[2,3,4,0],[0,2,1,1]],[[1,0,0,1],[2,3,2,2],[2,3,3,0],[0,3,1,1]],[[1,0,0,1],[3,3,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,0,1],[2,3,2,2],[3,3,3,0],[1,0,2,1]],[[1,0,0,1],[2,3,2,2],[2,4,3,0],[1,0,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,4,0],[1,0,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,3,0],[2,0,2,1]],[[1,0,0,1],[2,3,2,2],[2,3,3,0],[1,0,3,1]],[[1,0,0,1],[2,3,2,2],[2,3,3,0],[1,0,2,2]],[[1,0,0,1],[3,3,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,0,1],[2,3,2,2],[3,3,3,0],[1,1,1,1]],[[1,0,0,1],[2,3,2,2],[2,4,3,0],[1,1,1,1]],[[1,0,0,1],[2,3,2,2],[2,3,4,0],[1,1,1,1]],[[1,0,0,1],[2,3,2,2],[2,3,3,0],[2,1,1,1]],[[1,0,0,1],[3,3,2,2],[2,3,3,0],[1,2,0,1]],[[1,0,0,1],[2,3,2,2],[3,3,3,0],[1,2,0,1]],[[1,0,0,1],[2,3,2,2],[2,4,3,0],[1,2,0,1]],[[1,0,0,1],[2,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,0],[0,4,1,1],[1,3,2,2],[1,2,2,0]],[[1,2,3,0],[0,3,1,1],[1,3,2,2],[1,2,2,0]],[[1,3,2,0],[0,3,1,1],[1,3,2,2],[1,2,2,0]],[[2,2,2,0],[0,3,1,1],[1,3,2,2],[1,2,2,0]],[[1,2,2,0],[0,3,1,1],[1,3,2,2],[1,1,2,2]],[[1,2,2,0],[0,3,1,1],[1,3,2,2],[1,1,3,1]],[[1,2,2,0],[0,3,1,1],[1,3,2,3],[1,1,2,1]],[[1,2,2,0],[0,3,1,1],[1,3,2,1],[1,2,2,2]],[[1,0,0,1],[3,3,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,0,1],[2,3,2,2],[3,3,3,1],[0,1,1,1]],[[1,0,0,1],[2,3,2,2],[2,4,3,1],[0,1,1,1]],[[1,0,0,1],[2,3,2,2],[2,3,4,1],[0,1,1,1]],[[1,0,0,1],[3,3,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,0,1],[2,3,2,2],[3,3,3,1],[0,1,2,0]],[[1,0,0,1],[2,3,2,2],[2,4,3,1],[0,1,2,0]],[[1,0,0,1],[2,3,2,2],[2,3,4,1],[0,1,2,0]],[[1,0,0,1],[2,3,2,2],[2,3,3,1],[0,1,3,0]],[[1,0,0,1],[3,3,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,0,1],[2,3,2,2],[3,3,3,1],[0,2,0,1]],[[1,0,0,1],[2,3,2,2],[2,4,3,1],[0,2,0,1]],[[1,0,0,1],[2,3,2,2],[2,3,4,1],[0,2,0,1]],[[1,0,0,1],[2,3,2,2],[2,3,3,1],[0,3,0,1]],[[1,0,0,1],[3,3,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,0,1],[2,3,2,2],[3,3,3,1],[0,2,1,0]],[[1,0,0,1],[2,3,2,2],[2,4,3,1],[0,2,1,0]],[[1,0,0,1],[2,3,2,2],[2,3,4,1],[0,2,1,0]],[[1,0,0,1],[2,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[0,3,1,1],[1,3,2,1],[1,2,3,1]],[[1,2,2,0],[0,3,1,1],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[0,4,1,1],[1,3,2,1],[1,2,2,1]],[[1,2,3,0],[0,3,1,1],[1,3,2,1],[1,2,2,1]],[[1,3,2,0],[0,3,1,1],[1,3,2,1],[1,2,2,1]],[[1,0,0,1],[3,3,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,0,1],[2,3,2,2],[3,3,3,1],[1,0,1,1]],[[1,0,0,1],[2,3,2,2],[2,4,3,1],[1,0,1,1]],[[1,0,0,1],[2,3,2,2],[2,3,4,1],[1,0,1,1]],[[1,0,0,1],[2,3,2,2],[2,3,3,1],[2,0,1,1]],[[1,0,0,1],[3,3,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,0,1],[2,3,2,2],[3,3,3,1],[1,0,2,0]],[[1,0,0,1],[2,3,2,2],[2,4,3,1],[1,0,2,0]],[[1,0,0,1],[2,3,2,2],[2,3,4,1],[1,0,2,0]],[[1,0,0,1],[2,3,2,2],[2,3,3,1],[2,0,2,0]],[[1,0,0,1],[2,3,2,2],[2,3,3,1],[1,0,3,0]],[[1,0,0,1],[3,3,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,0,1],[2,3,2,2],[3,3,3,1],[1,1,0,1]],[[1,0,0,1],[2,3,2,2],[2,4,3,1],[1,1,0,1]],[[1,0,0,1],[2,3,2,2],[2,3,4,1],[1,1,0,1]],[[1,0,0,1],[2,3,2,2],[2,3,3,1],[2,1,0,1]],[[1,0,0,1],[3,3,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,0,1],[2,3,2,2],[3,3,3,1],[1,1,1,0]],[[1,0,0,1],[2,3,2,2],[2,4,3,1],[1,1,1,0]],[[1,0,0,1],[2,3,2,2],[2,3,4,1],[1,1,1,0]],[[1,0,0,1],[2,3,2,2],[2,3,3,1],[2,1,1,0]],[[2,2,2,0],[0,3,1,1],[1,3,2,1],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[1,3,1,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,1],[1,3,1,2],[1,2,3,1]],[[1,2,2,0],[0,3,1,1],[1,3,1,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[1,3,1,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[1,3,1,3],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[1,4,1,2],[1,2,2,1]],[[1,0,0,1],[3,3,2,2],[2,3,3,1],[1,2,0,0]],[[1,0,0,1],[2,3,2,2],[3,3,3,1],[1,2,0,0]],[[1,0,0,1],[2,3,2,2],[2,4,3,1],[1,2,0,0]],[[1,0,0,1],[2,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[0,4,1,1],[1,3,1,2],[1,2,2,1]],[[1,2,3,0],[0,3,1,1],[1,3,1,2],[1,2,2,1]],[[1,3,2,0],[0,3,1,1],[1,3,1,2],[1,2,2,1]],[[2,2,2,0],[0,3,1,1],[1,3,1,2],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[1,2,3,2],[1,2,3,0]],[[1,2,2,0],[0,3,1,1],[1,2,3,2],[1,3,2,0]],[[1,2,2,0],[0,3,1,1],[1,2,3,2],[2,2,2,0]],[[1,2,2,0],[0,3,1,1],[1,2,3,3],[1,2,2,0]],[[1,2,2,0],[0,3,1,1],[1,2,4,2],[1,2,2,0]],[[1,2,2,0],[0,3,1,1],[1,2,3,2],[1,2,1,2]],[[1,2,2,0],[0,3,1,1],[1,2,3,3],[1,2,1,1]],[[1,2,2,0],[0,3,1,1],[1,2,4,2],[1,2,1,1]],[[1,2,2,0],[0,3,1,1],[1,2,3,1],[1,2,2,2]],[[1,2,2,0],[0,3,1,1],[1,2,3,1],[1,2,3,1]],[[1,2,2,0],[0,3,1,1],[1,2,3,1],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[1,2,3,1],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[1,2,4,1],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[1,2,2,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,1],[1,2,2,2],[1,2,3,1]],[[1,2,2,0],[0,3,1,1],[1,2,2,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[1,2,2,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,1],[1,2,2,3],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[0,3,3,2],[1,2,3,0]],[[1,2,2,0],[0,3,1,1],[0,3,3,2],[1,3,2,0]],[[1,2,2,0],[0,3,1,1],[0,3,3,3],[1,2,2,0]],[[1,2,2,0],[0,3,1,1],[0,3,4,2],[1,2,2,0]],[[1,2,2,0],[0,3,1,1],[0,3,3,2],[1,2,1,2]],[[1,2,2,0],[0,3,1,1],[0,3,3,3],[1,2,1,1]],[[1,2,2,0],[0,3,1,1],[0,3,4,2],[1,2,1,1]],[[1,2,2,0],[0,3,1,1],[0,3,3,1],[1,2,2,2]],[[1,2,2,0],[0,3,1,1],[0,3,3,1],[1,2,3,1]],[[1,2,2,0],[0,3,1,1],[0,3,3,1],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[0,3,4,1],[1,2,2,1]],[[1,2,2,0],[0,3,1,1],[0,3,2,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,1],[0,3,2,2],[1,2,3,1]],[[1,2,2,0],[0,3,1,1],[0,3,2,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,1],[0,3,2,3],[1,2,2,1]],[[1,2,2,0],[0,3,1,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,0],[0,3,1,0],[2,4,3,2],[1,2,0,1]],[[1,2,2,0],[0,3,1,0],[3,3,3,2],[1,2,0,1]],[[1,2,2,0],[0,3,1,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,0],[0,3,1,0],[2,3,4,2],[1,1,1,1]],[[1,2,2,0],[0,3,1,0],[2,4,3,2],[1,1,1,1]],[[1,2,2,0],[0,3,1,0],[3,3,3,2],[1,1,1,1]],[[1,2,2,0],[0,4,1,0],[2,3,3,2],[1,1,1,1]],[[1,3,2,0],[0,3,1,0],[2,3,3,2],[1,1,1,1]],[[2,2,2,0],[0,3,1,0],[2,3,3,2],[1,1,1,1]],[[1,2,2,0],[0,3,1,0],[2,3,3,2],[1,0,2,2]],[[1,2,2,0],[0,3,1,0],[2,3,3,2],[1,0,3,1]],[[1,2,2,0],[0,3,1,0],[2,3,3,2],[2,0,2,1]],[[1,2,2,0],[0,3,1,0],[2,3,4,2],[1,0,2,1]],[[1,2,2,0],[0,3,1,0],[2,4,3,2],[1,0,2,1]],[[1,2,2,0],[0,3,1,0],[3,3,3,2],[1,0,2,1]],[[1,2,2,0],[0,4,1,0],[2,3,3,2],[1,0,2,1]],[[1,3,2,0],[0,3,1,0],[2,3,3,2],[1,0,2,1]],[[2,2,2,0],[0,3,1,0],[2,3,3,2],[1,0,2,1]],[[1,2,2,0],[0,3,1,0],[2,3,3,2],[0,3,1,1]],[[1,2,2,0],[0,3,1,0],[2,3,4,2],[0,2,1,1]],[[1,2,2,0],[0,3,1,0],[2,4,3,2],[0,2,1,1]],[[1,2,2,0],[0,3,1,0],[3,3,3,2],[0,2,1,1]],[[1,2,2,0],[0,4,1,0],[2,3,3,2],[0,2,1,1]],[[1,3,2,0],[0,3,1,0],[2,3,3,2],[0,2,1,1]],[[2,2,2,0],[0,3,1,0],[2,3,3,2],[0,2,1,1]],[[1,2,2,0],[0,3,1,0],[2,3,3,2],[0,1,2,2]],[[1,2,2,0],[0,3,1,0],[2,3,3,2],[0,1,3,1]],[[1,2,2,0],[0,3,1,0],[2,3,4,2],[0,1,2,1]],[[1,2,2,0],[0,3,1,0],[2,4,3,2],[0,1,2,1]],[[1,2,2,0],[0,3,1,0],[3,3,3,2],[0,1,2,1]],[[1,2,2,0],[0,4,1,0],[2,3,3,2],[0,1,2,1]],[[1,3,2,0],[0,3,1,0],[2,3,3,2],[0,1,2,1]],[[2,2,2,0],[0,3,1,0],[2,3,3,2],[0,1,2,1]],[[1,2,2,0],[0,3,1,0],[2,3,2,2],[2,1,2,1]],[[1,2,2,0],[0,3,1,0],[2,4,2,2],[1,1,2,1]],[[1,2,2,0],[0,3,1,0],[3,3,2,2],[1,1,2,1]],[[1,2,2,0],[0,4,1,0],[2,3,2,2],[1,1,2,1]],[[1,3,2,0],[0,3,1,0],[2,3,2,2],[1,1,2,1]],[[2,2,2,0],[0,3,1,0],[2,3,2,2],[1,1,2,1]],[[1,2,2,0],[0,3,1,0],[2,3,2,2],[0,2,2,2]],[[1,2,2,0],[0,3,1,0],[2,3,2,2],[0,2,3,1]],[[1,2,2,0],[0,3,1,0],[2,3,2,2],[0,3,2,1]],[[1,2,2,0],[0,3,1,0],[2,4,2,2],[0,2,2,1]],[[1,2,2,0],[0,3,1,0],[3,3,2,2],[0,2,2,1]],[[1,2,2,0],[0,4,1,0],[2,3,2,2],[0,2,2,1]],[[1,3,2,0],[0,3,1,0],[2,3,2,2],[0,2,2,1]],[[2,2,2,0],[0,3,1,0],[2,3,2,2],[0,2,2,1]],[[1,2,2,0],[0,3,1,0],[2,3,1,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,0],[2,3,1,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,0],[3,3,1,2],[1,2,2,1]],[[1,2,2,0],[0,3,1,0],[2,2,3,2],[1,3,1,1]],[[1,2,2,0],[0,3,1,0],[2,2,3,2],[2,2,1,1]],[[1,2,2,0],[0,3,1,0],[3,2,3,2],[1,2,1,1]],[[1,2,2,0],[0,3,1,0],[2,2,3,2],[0,2,2,2]],[[1,2,2,0],[0,3,1,0],[2,2,3,2],[0,2,3,1]],[[1,2,2,0],[0,3,1,0],[2,2,3,2],[0,3,2,1]],[[1,2,2,0],[0,3,1,0],[2,2,4,2],[0,2,2,1]],[[1,2,2,0],[0,3,1,0],[2,2,2,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,0],[2,2,2,2],[1,2,3,1]],[[1,2,2,0],[0,3,1,0],[2,2,2,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,0],[2,2,2,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,0],[3,2,2,2],[1,2,2,1]],[[1,2,2,0],[0,3,1,0],[2,1,3,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,0],[2,1,3,2],[1,2,3,1]],[[1,2,2,0],[0,3,1,0],[2,1,3,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,0],[2,1,3,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,0],[2,1,4,2],[1,2,2,1]],[[1,2,2,0],[0,3,1,0],[3,1,3,2],[1,2,2,1]],[[1,2,2,0],[0,3,1,0],[1,3,3,2],[1,3,1,1]],[[1,2,2,0],[0,3,1,0],[1,3,3,2],[2,2,1,1]],[[1,2,2,0],[0,3,1,0],[1,3,4,2],[1,2,1,1]],[[1,2,2,0],[0,3,1,0],[1,4,3,2],[1,2,1,1]],[[1,2,2,0],[0,4,1,0],[1,3,3,2],[1,2,1,1]],[[1,3,2,0],[0,3,1,0],[1,3,3,2],[1,2,1,1]],[[2,2,2,0],[0,3,1,0],[1,3,3,2],[1,2,1,1]],[[1,2,2,0],[0,3,1,0],[1,3,3,2],[1,1,2,2]],[[1,2,2,0],[0,3,1,0],[1,3,3,2],[1,1,3,1]],[[1,2,2,0],[0,3,1,0],[1,3,4,2],[1,1,2,1]],[[1,2,2,0],[0,3,1,0],[1,4,3,2],[1,1,2,1]],[[1,2,2,0],[0,4,1,0],[1,3,3,2],[1,1,2,1]],[[1,3,2,0],[0,3,1,0],[1,3,3,2],[1,1,2,1]],[[2,2,2,0],[0,3,1,0],[1,3,3,2],[1,1,2,1]],[[1,2,2,0],[0,3,1,0],[1,3,2,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,0],[1,3,2,2],[1,2,3,1]],[[1,2,2,0],[0,3,1,0],[1,3,2,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,0],[1,3,2,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,0],[1,4,2,2],[1,2,2,1]],[[1,2,2,0],[0,4,1,0],[1,3,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,3,1],[1,4,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,3,1],[1,3,0,3],[1,2,2,1]],[[1,0,0,1],[2,3,3,1],[1,3,0,2],[2,2,2,1]],[[1,0,0,1],[2,3,3,1],[1,3,0,2],[1,3,2,1]],[[1,0,0,1],[2,3,3,1],[1,3,0,2],[1,2,3,1]],[[1,0,0,1],[2,3,3,1],[1,3,0,2],[1,2,2,2]],[[1,0,0,1],[2,3,3,1],[1,4,1,1],[1,2,2,1]],[[1,0,0,1],[2,3,3,1],[1,3,1,1],[2,2,2,1]],[[1,0,0,1],[2,3,3,1],[1,3,1,1],[1,3,2,1]],[[1,0,0,1],[2,3,3,1],[1,3,1,1],[1,2,3,1]],[[1,0,0,1],[2,3,3,1],[1,3,1,1],[1,2,2,2]],[[1,0,0,1],[2,3,3,1],[1,4,1,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,1],[1,3,1,2],[2,2,2,0]],[[1,0,0,1],[2,3,3,1],[1,3,1,2],[1,3,2,0]],[[1,0,0,1],[2,3,3,1],[1,3,1,2],[1,2,3,0]],[[1,0,0,1],[2,3,3,1],[1,4,2,1],[1,2,1,1]],[[1,0,0,1],[2,3,3,1],[1,3,2,1],[2,2,1,1]],[[1,0,0,1],[2,3,3,1],[1,3,2,1],[1,3,1,1]],[[1,0,0,1],[2,3,3,1],[1,4,2,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,1],[1,3,2,2],[2,2,0,1]],[[1,0,0,1],[2,3,3,1],[1,3,2,2],[1,3,0,1]],[[1,0,0,1],[2,3,3,1],[1,4,2,2],[1,2,1,0]],[[1,0,0,1],[2,3,3,1],[1,3,2,2],[2,2,1,0]],[[1,0,0,1],[2,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,3,2,0],[0,3,1,0],[1,3,2,2],[1,2,2,1]],[[2,2,2,0],[0,3,1,0],[1,3,2,2],[1,2,2,1]],[[1,2,2,0],[0,3,1,0],[1,2,3,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,0],[1,2,3,2],[1,2,3,1]],[[1,2,2,0],[0,3,1,0],[1,2,3,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,0],[1,2,3,2],[2,2,2,1]],[[1,2,2,0],[0,3,1,0],[1,2,4,2],[1,2,2,1]],[[1,2,2,0],[0,3,1,0],[0,3,3,2],[1,2,2,2]],[[1,2,2,0],[0,3,1,0],[0,3,3,2],[1,2,3,1]],[[1,2,2,0],[0,3,1,0],[0,3,3,2],[1,3,2,1]],[[1,2,2,0],[0,3,1,0],[0,3,4,2],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,3,0,2],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[0,3,0,2],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[0,4,0,2],[2,3,3,2],[1,2,0,0]],[[1,2,3,0],[0,3,0,2],[2,3,3,2],[1,2,0,0]],[[1,3,2,0],[0,3,0,2],[2,3,3,2],[1,2,0,0]],[[2,2,2,0],[0,3,0,2],[2,3,3,2],[1,2,0,0]],[[1,0,0,1],[3,3,3,1],[2,2,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,3,1],[3,2,0,2],[1,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,2,0,3],[1,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,2,0,2],[2,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,2,0,2],[1,3,2,1]],[[1,0,0,1],[2,3,3,1],[2,2,0,2],[1,2,3,1]],[[1,0,0,1],[2,3,3,1],[2,2,0,2],[1,2,2,2]],[[1,0,0,1],[3,3,3,1],[2,2,1,1],[1,2,2,1]],[[1,0,0,1],[2,3,3,1],[3,2,1,1],[1,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,2,1,1],[2,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,2,1,1],[1,3,2,1]],[[1,0,0,1],[2,3,3,1],[2,2,1,1],[1,2,3,1]],[[1,0,0,1],[2,3,3,1],[2,2,1,1],[1,2,2,2]],[[1,0,0,1],[3,3,3,1],[2,2,1,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,1],[3,2,1,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,1],[2,2,1,2],[2,2,2,0]],[[1,0,0,1],[2,3,3,1],[2,2,1,2],[1,3,2,0]],[[1,0,0,1],[2,3,3,1],[2,2,1,2],[1,2,3,0]],[[1,0,0,1],[3,3,3,1],[2,2,2,1],[1,2,1,1]],[[1,0,0,1],[2,3,3,1],[3,2,2,1],[1,2,1,1]],[[1,0,0,1],[2,3,3,1],[2,2,2,1],[2,2,1,1]],[[1,0,0,1],[2,3,3,1],[2,2,2,1],[1,3,1,1]],[[1,0,0,1],[3,3,3,1],[2,2,2,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,1],[3,2,2,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,1],[2,2,2,2],[2,2,0,1]],[[1,0,0,1],[2,3,3,1],[2,2,2,2],[1,3,0,1]],[[1,0,0,1],[3,3,3,1],[2,2,2,2],[1,2,1,0]],[[1,0,0,1],[2,3,3,1],[3,2,2,2],[1,2,1,0]],[[1,0,0,1],[2,3,3,1],[2,2,2,2],[2,2,1,0]],[[1,0,0,1],[2,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,3,0,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[0,3,0,2],[2,3,4,2],[1,1,1,0]],[[1,2,2,0],[0,3,0,2],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[0,3,0,2],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[0,3,0,3],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[0,4,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,3,0],[0,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,3,2,0],[0,3,0,2],[2,3,3,2],[1,1,1,0]],[[2,2,2,0],[0,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[1,1,0,2]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[2,1,0,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,3],[1,1,0,1]],[[1,2,2,0],[0,3,0,2],[2,3,4,2],[1,1,0,1]],[[1,2,2,0],[0,3,0,2],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[0,3,0,2],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[0,3,0,3],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[0,4,0,2],[2,3,3,2],[1,1,0,1]],[[1,2,3,0],[0,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,3,2,0],[0,3,0,2],[2,3,3,2],[1,1,0,1]],[[2,2,2,0],[0,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,0,0,1],[3,3,3,1],[2,3,0,1],[1,2,2,1]],[[1,0,0,1],[2,3,3,1],[3,3,0,1],[1,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,3,0,1],[2,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,3,0,1],[1,3,2,1]],[[1,0,0,1],[3,3,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,0,1],[2,3,3,1],[3,3,0,2],[0,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,4,0,2],[0,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,3,0,3],[0,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,3,0,2],[0,3,2,1]],[[1,0,0,1],[2,3,3,1],[2,3,0,2],[0,2,3,1]],[[1,0,0,1],[2,3,3,1],[2,3,0,2],[0,2,2,2]],[[1,0,0,1],[3,3,3,1],[2,3,0,2],[1,1,2,1]],[[1,0,0,1],[2,3,3,1],[3,3,0,2],[1,1,2,1]],[[1,0,0,1],[2,3,3,1],[2,4,0,2],[1,1,2,1]],[[1,0,0,1],[2,3,3,1],[2,3,0,2],[2,1,2,1]],[[1,0,0,1],[3,3,3,1],[2,3,0,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,1],[3,3,0,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,1],[2,3,0,2],[2,2,2,0]],[[1,0,0,1],[2,3,3,1],[2,3,0,2],[1,3,2,0]],[[1,0,0,1],[3,3,3,1],[2,3,1,1],[0,2,2,1]],[[1,0,0,1],[2,3,3,1],[3,3,1,1],[0,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,4,1,1],[0,2,2,1]],[[1,0,0,1],[2,3,3,1],[2,3,1,1],[0,3,2,1]],[[1,0,0,1],[2,3,3,1],[2,3,1,1],[0,2,3,1]],[[1,0,0,1],[2,3,3,1],[2,3,1,1],[0,2,2,2]],[[1,0,0,1],[3,3,3,1],[2,3,1,1],[1,1,2,1]],[[1,0,0,1],[2,3,3,1],[3,3,1,1],[1,1,2,1]],[[1,0,0,1],[2,3,3,1],[2,4,1,1],[1,1,2,1]],[[1,0,0,1],[2,3,3,1],[2,3,1,1],[2,1,2,1]],[[1,0,0,1],[3,3,3,1],[2,3,1,2],[0,2,2,0]],[[1,0,0,1],[2,3,3,1],[3,3,1,2],[0,2,2,0]],[[1,0,0,1],[2,3,3,1],[2,4,1,2],[0,2,2,0]],[[1,0,0,1],[2,3,3,1],[2,3,1,2],[0,3,2,0]],[[1,0,0,1],[2,3,3,1],[2,3,1,2],[0,2,3,0]],[[1,0,0,1],[3,3,3,1],[2,3,1,2],[1,1,2,0]],[[1,0,0,1],[2,3,3,1],[3,3,1,2],[1,1,2,0]],[[1,0,0,1],[2,3,3,1],[2,4,1,2],[1,1,2,0]],[[1,0,0,1],[2,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,0,0,1],[3,3,3,1],[2,3,2,1],[0,1,2,1]],[[1,0,0,1],[2,3,3,1],[3,3,2,1],[0,1,2,1]],[[1,0,0,1],[2,3,3,1],[2,4,2,1],[0,1,2,1]],[[1,0,0,1],[3,3,3,1],[2,3,2,1],[0,2,1,1]],[[1,0,0,1],[2,3,3,1],[3,3,2,1],[0,2,1,1]],[[1,0,0,1],[2,3,3,1],[2,4,2,1],[0,2,1,1]],[[1,0,0,1],[2,3,3,1],[2,3,2,1],[0,3,1,1]],[[1,0,0,1],[3,3,3,1],[2,3,2,1],[1,0,2,1]],[[1,0,0,1],[2,3,3,1],[3,3,2,1],[1,0,2,1]],[[1,0,0,1],[2,3,3,1],[2,4,2,1],[1,0,2,1]],[[1,0,0,1],[2,3,3,1],[2,3,2,1],[2,0,2,1]],[[1,0,0,1],[3,3,3,1],[2,3,2,1],[1,1,1,1]],[[1,0,0,1],[2,3,3,1],[3,3,2,1],[1,1,1,1]],[[1,0,0,1],[2,3,3,1],[2,4,2,1],[1,1,1,1]],[[1,0,0,1],[2,3,3,1],[2,3,2,1],[2,1,1,1]],[[1,0,0,1],[3,3,3,1],[2,3,2,1],[1,2,0,1]],[[1,0,0,1],[2,3,3,1],[3,3,2,1],[1,2,0,1]],[[1,0,0,1],[2,3,3,1],[2,4,2,1],[1,2,0,1]],[[1,0,0,1],[2,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[1,0,3,0]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[0,3,0,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,0],[0,3,0,2],[2,3,4,2],[1,0,2,0]],[[1,0,0,1],[3,3,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,0,1],[2,3,3,1],[3,3,2,2],[0,1,1,1]],[[1,0,0,1],[2,3,3,1],[2,4,2,2],[0,1,1,1]],[[1,0,0,1],[3,3,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,0,1],[2,3,3,1],[3,3,2,2],[0,1,2,0]],[[1,0,0,1],[2,3,3,1],[2,4,2,2],[0,1,2,0]],[[1,0,0,1],[3,3,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,1],[3,3,2,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,1],[2,4,2,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,1],[2,3,2,2],[0,3,0,1]],[[1,0,0,1],[3,3,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,1],[3,3,2,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,1],[2,4,2,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,2,0],[0,3,0,2],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[0,3,0,2],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[0,3,0,3],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[0,4,0,2],[2,3,3,2],[1,0,2,0]],[[1,2,3,0],[0,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,3,2,0],[0,3,0,2],[2,3,3,2],[1,0,2,0]],[[2,2,2,0],[0,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,0,0,1],[3,3,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,0,1],[2,3,3,1],[3,3,2,2],[1,0,1,1]],[[1,0,0,1],[2,3,3,1],[2,4,2,2],[1,0,1,1]],[[1,0,0,1],[2,3,3,1],[2,3,2,2],[2,0,1,1]],[[1,0,0,1],[3,3,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,0,1],[2,3,3,1],[3,3,2,2],[1,0,2,0]],[[1,0,0,1],[2,3,3,1],[2,4,2,2],[1,0,2,0]],[[1,0,0,1],[2,3,3,1],[2,3,2,2],[2,0,2,0]],[[1,0,0,1],[3,3,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,0,1],[2,3,3,1],[3,3,2,2],[1,1,0,1]],[[1,0,0,1],[2,3,3,1],[2,4,2,2],[1,1,0,1]],[[1,0,0,1],[2,3,3,1],[2,3,2,2],[2,1,0,1]],[[1,0,0,1],[3,3,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,0,1],[2,3,3,1],[3,3,2,2],[1,1,1,0]],[[1,0,0,1],[2,3,3,1],[2,4,2,2],[1,1,1,0]],[[1,0,0,1],[2,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[1,0,1,2]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[2,0,1,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,3],[1,0,1,1]],[[1,2,2,0],[0,3,0,2],[2,3,4,2],[1,0,1,1]],[[1,2,2,0],[0,3,0,2],[2,4,3,2],[1,0,1,1]],[[1,2,2,0],[0,3,0,2],[3,3,3,2],[1,0,1,1]],[[1,2,2,0],[0,3,0,3],[2,3,3,2],[1,0,1,1]],[[1,0,0,1],[3,3,3,1],[2,3,2,2],[1,2,0,0]],[[1,0,0,1],[2,3,3,1],[3,3,2,2],[1,2,0,0]],[[1,0,0,1],[2,3,3,1],[2,4,2,2],[1,2,0,0]],[[1,0,0,1],[2,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,0],[0,4,0,2],[2,3,3,2],[1,0,1,1]],[[1,2,3,0],[0,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,3,2,0],[0,3,0,2],[2,3,3,2],[1,0,1,1]],[[2,2,2,0],[0,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,3,0,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,0],[0,3,0,2],[2,3,4,2],[0,2,1,0]],[[1,2,2,0],[0,3,0,2],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[0,3,0,2],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,3,0,3],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,4,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,3,0],[0,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,3,2,0],[0,3,0,2],[2,3,3,2],[0,2,1,0]],[[2,2,2,0],[0,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[0,2,0,2]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[0,3,0,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,3],[0,2,0,1]],[[1,2,2,0],[0,3,0,2],[2,3,4,2],[0,2,0,1]],[[1,2,2,0],[0,3,0,2],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[0,3,0,2],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[0,3,0,3],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[0,4,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,3,0],[0,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,3,2,0],[0,3,0,2],[2,3,3,2],[0,2,0,1]],[[2,2,2,0],[0,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[0,1,3,0]],[[1,2,2,0],[0,3,0,2],[2,3,3,3],[0,1,2,0]],[[1,0,0,1],[3,3,3,1],[2,3,3,2],[0,2,0,0]],[[1,0,0,1],[2,3,3,1],[3,3,3,2],[0,2,0,0]],[[1,0,0,1],[2,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,0],[0,3,0,2],[2,3,4,2],[0,1,2,0]],[[1,2,2,0],[0,3,0,2],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,0,2],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,0,3],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,4,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,3,0],[0,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,3,2,0],[0,3,0,2],[2,3,3,2],[0,1,2,0]],[[2,2,2,0],[0,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[0,1,1,2]],[[1,2,2,0],[0,3,0,2],[2,3,3,3],[0,1,1,1]],[[1,2,2,0],[0,3,0,2],[2,3,4,2],[0,1,1,1]],[[1,2,2,0],[0,3,0,2],[2,4,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,0,2],[3,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,0,3],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,4,0,2],[2,3,3,2],[0,1,1,1]],[[1,2,3,0],[0,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,3,2,0],[0,3,0,2],[2,3,3,2],[0,1,1,1]],[[2,2,2,0],[0,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,2],[0,0,2,2]],[[1,2,2,0],[0,3,0,2],[2,3,3,3],[0,0,2,1]],[[1,2,2,0],[0,3,0,2],[2,3,4,2],[0,0,2,1]],[[1,2,2,0],[0,3,0,3],[2,3,3,2],[0,0,2,1]],[[1,0,0,1],[3,3,3,1],[2,3,3,2],[1,1,0,0]],[[1,0,0,1],[2,3,3,1],[3,3,3,2],[1,1,0,0]],[[1,0,0,1],[2,3,3,1],[2,4,3,2],[1,1,0,0]],[[1,0,0,1],[2,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,0],[0,3,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,3,0,2],[2,4,3,1],[1,2,0,1]],[[1,2,2,0],[0,3,0,2],[3,3,3,1],[1,2,0,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[0,3,0,2],[2,3,4,1],[1,1,1,1]],[[1,2,2,0],[0,3,0,2],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[0,3,0,2],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[0,4,0,2],[2,3,3,1],[1,1,1,1]],[[1,2,3,0],[0,3,0,2],[2,3,3,1],[1,1,1,1]],[[1,3,2,0],[0,3,0,2],[2,3,3,1],[1,1,1,1]],[[2,2,2,0],[0,3,0,2],[2,3,3,1],[1,1,1,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,0],[0,3,0,2],[2,3,3,1],[1,0,3,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[0,3,0,2],[2,3,4,1],[1,0,2,1]],[[1,2,2,0],[0,3,0,2],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[0,3,0,2],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[0,4,0,2],[2,3,3,1],[1,0,2,1]],[[1,2,3,0],[0,3,0,2],[2,3,3,1],[1,0,2,1]],[[1,3,2,0],[0,3,0,2],[2,3,3,1],[1,0,2,1]],[[2,2,2,0],[0,3,0,2],[2,3,3,1],[1,0,2,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[0,3,0,2],[2,3,4,1],[0,2,1,1]],[[1,2,2,0],[0,3,0,2],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[0,3,0,2],[3,3,3,1],[0,2,1,1]],[[1,2,2,0],[0,4,0,2],[2,3,3,1],[0,2,1,1]],[[1,2,3,0],[0,3,0,2],[2,3,3,1],[0,2,1,1]],[[1,3,2,0],[0,3,0,2],[2,3,3,1],[0,2,1,1]],[[2,2,2,0],[0,3,0,2],[2,3,3,1],[0,2,1,1]],[[1,2,2,0],[0,3,0,2],[2,3,3,1],[0,1,2,2]],[[1,2,2,0],[0,3,0,2],[2,3,3,1],[0,1,3,1]],[[1,2,2,0],[0,3,0,2],[2,3,4,1],[0,1,2,1]],[[1,2,2,0],[0,3,0,2],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[0,3,0,2],[3,3,3,1],[0,1,2,1]],[[1,2,2,0],[0,4,0,2],[2,3,3,1],[0,1,2,1]],[[1,2,3,0],[0,3,0,2],[2,3,3,1],[0,1,2,1]],[[1,3,2,0],[0,3,0,2],[2,3,3,1],[0,1,2,1]],[[2,2,2,0],[0,3,0,2],[2,3,3,1],[0,1,2,1]],[[1,0,0,1],[2,3,3,3],[0,0,3,2],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[0,0,3,3],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[0,0,3,2],[1,2,3,1]],[[1,0,0,1],[2,3,3,2],[0,0,3,2],[1,2,2,2]],[[1,0,0,1],[2,3,3,3],[0,1,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[0,1,2,3],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[0,1,2,2],[2,2,2,1]],[[1,0,0,1],[2,3,3,2],[0,1,2,2],[1,3,2,1]],[[1,0,0,1],[2,3,3,2],[0,1,2,2],[1,2,3,1]],[[1,0,0,1],[2,3,3,2],[0,1,2,2],[1,2,2,2]],[[1,0,0,1],[2,3,3,2],[0,1,4,1],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[0,1,3,1],[2,2,2,1]],[[1,0,0,1],[2,3,3,2],[0,1,3,1],[1,3,2,1]],[[1,0,0,1],[2,3,3,2],[0,1,3,1],[1,2,3,1]],[[1,0,0,1],[2,3,3,2],[0,1,3,1],[1,2,2,2]],[[1,0,0,1],[2,3,3,3],[0,1,3,2],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[0,1,4,2],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[0,1,3,3],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[0,1,3,2],[1,2,1,2]],[[1,0,0,1],[2,3,3,3],[0,1,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[0,1,4,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[0,1,3,3],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[0,1,3,2],[2,2,2,0]],[[1,0,0,1],[2,3,3,2],[0,1,3,2],[1,3,2,0]],[[1,0,0,1],[2,3,3,2],[0,1,3,2],[1,2,3,0]],[[1,0,0,1],[2,3,3,3],[0,2,2,2],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[0,2,2,3],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[0,2,2,2],[1,1,3,1]],[[1,0,0,1],[2,3,3,2],[0,2,2,2],[1,1,2,2]],[[1,0,0,1],[2,3,3,2],[0,2,4,1],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[0,2,3,1],[1,1,3,1]],[[1,0,0,1],[2,3,3,2],[0,2,3,1],[1,1,2,2]],[[1,0,0,1],[2,3,3,3],[0,2,3,2],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[0,2,4,2],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[0,2,3,3],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[0,2,3,2],[1,0,2,2]],[[1,0,0,1],[2,3,3,3],[0,2,3,2],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[0,2,4,2],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[0,2,3,3],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[0,2,3,2],[1,1,1,2]],[[1,0,0,1],[2,3,3,3],[0,2,3,2],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[0,2,4,2],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[0,2,3,3],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[0,2,3,2],[1,1,3,0]],[[1,0,0,1],[2,3,3,3],[0,2,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[0,2,4,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[0,2,3,3],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[0,2,3,2],[1,2,0,2]],[[1,0,0,1],[2,3,3,3],[0,2,3,2],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[0,2,4,2],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[0,2,3,3],[1,2,1,0]],[[1,0,0,1],[2,3,3,3],[0,3,2,2],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[0,3,2,3],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[0,3,2,2],[0,1,3,1]],[[1,0,0,1],[2,3,3,2],[0,3,2,2],[0,1,2,2]],[[1,0,0,1],[2,3,3,2],[0,3,4,1],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[0,3,3,1],[0,1,3,1]],[[1,0,0,1],[2,3,3,2],[0,3,3,1],[0,1,2,2]],[[1,2,2,0],[0,3,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,3,0,2],[2,4,2,2],[1,1,2,0]],[[1,2,2,0],[0,3,0,2],[3,3,2,2],[1,1,2,0]],[[1,0,0,1],[2,3,3,3],[0,3,3,2],[0,0,2,1]],[[1,0,0,1],[2,3,3,2],[0,3,4,2],[0,0,2,1]],[[1,0,0,1],[2,3,3,2],[0,3,3,3],[0,0,2,1]],[[1,0,0,1],[2,3,3,2],[0,3,3,2],[0,0,2,2]],[[1,0,0,1],[2,3,3,3],[0,3,3,2],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[0,3,4,2],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[0,3,3,3],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[0,3,3,2],[0,1,1,2]],[[1,0,0,1],[2,3,3,3],[0,3,3,2],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[0,3,4,2],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[0,3,3,3],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[0,3,3,2],[0,1,3,0]],[[1,0,0,1],[2,3,3,3],[0,3,3,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[0,3,4,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[0,3,3,3],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[0,3,3,2],[0,2,0,2]],[[1,0,0,1],[2,3,3,3],[0,3,3,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[0,3,4,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[0,3,3,3],[0,2,1,0]],[[1,2,2,0],[0,4,0,2],[2,3,2,2],[1,1,2,0]],[[1,2,3,0],[0,3,0,2],[2,3,2,2],[1,1,2,0]],[[1,3,2,0],[0,3,0,2],[2,3,2,2],[1,1,2,0]],[[2,2,2,0],[0,3,0,2],[2,3,2,2],[1,1,2,0]],[[1,2,2,0],[0,3,0,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[0,3,0,2],[2,3,2,2],[1,0,3,1]],[[1,2,2,0],[0,3,0,2],[2,3,2,3],[1,0,2,1]],[[1,2,2,0],[0,3,0,3],[2,3,2,2],[1,0,2,1]],[[1,2,2,0],[0,3,0,2],[2,3,2,2],[0,2,3,0]],[[1,2,2,0],[0,3,0,2],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[0,3,0,2],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[0,3,0,2],[3,3,2,2],[0,2,2,0]],[[1,2,2,0],[0,4,0,2],[2,3,2,2],[0,2,2,0]],[[1,2,3,0],[0,3,0,2],[2,3,2,2],[0,2,2,0]],[[1,3,2,0],[0,3,0,2],[2,3,2,2],[0,2,2,0]],[[2,2,2,0],[0,3,0,2],[2,3,2,2],[0,2,2,0]],[[1,2,2,0],[0,3,0,2],[2,3,2,2],[0,1,2,2]],[[1,2,2,0],[0,3,0,2],[2,3,2,2],[0,1,3,1]],[[1,2,2,0],[0,3,0,2],[2,3,2,3],[0,1,2,1]],[[1,2,2,0],[0,3,0,3],[2,3,2,2],[0,1,2,1]],[[1,0,0,1],[2,3,3,3],[1,0,2,2],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,0,2,3],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,0,2,2],[2,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,0,2,2],[1,3,2,1]],[[1,0,0,1],[2,3,3,2],[1,0,2,2],[1,2,3,1]],[[1,0,0,1],[2,3,3,2],[1,0,2,2],[1,2,2,2]],[[1,0,0,1],[2,3,3,2],[1,0,4,1],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,0,3,1],[2,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,0,3,1],[1,3,2,1]],[[1,0,0,1],[2,3,3,2],[1,0,3,1],[1,2,3,1]],[[1,0,0,1],[2,3,3,2],[1,0,3,1],[1,2,2,2]],[[1,0,0,1],[2,3,3,3],[1,0,3,2],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,0,3,3],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,0,3,2],[0,2,3,1]],[[1,0,0,1],[2,3,3,2],[1,0,3,2],[0,2,2,2]],[[1,0,0,1],[2,3,3,3],[1,0,3,2],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[1,0,4,2],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[1,0,3,3],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[1,0,3,2],[1,2,1,2]],[[1,0,0,1],[2,3,3,3],[1,0,3,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[1,0,4,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[1,0,3,3],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[1,0,3,2],[2,2,2,0]],[[1,0,0,1],[2,3,3,2],[1,0,3,2],[1,3,2,0]],[[1,0,0,1],[2,3,3,2],[1,0,3,2],[1,2,3,0]],[[1,0,0,1],[2,3,3,3],[1,1,2,2],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,1,2,3],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,1,2,2],[0,3,2,1]],[[1,0,0,1],[2,3,3,2],[1,1,2,2],[0,2,3,1]],[[1,0,0,1],[2,3,3,2],[1,1,2,2],[0,2,2,2]],[[1,0,0,1],[2,3,3,2],[1,1,4,1],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,1,3,1],[0,3,2,1]],[[1,0,0,1],[2,3,3,2],[1,1,3,1],[0,2,3,1]],[[1,0,0,1],[2,3,3,2],[1,1,3,1],[0,2,2,2]],[[1,0,0,1],[2,3,3,3],[1,1,3,2],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[1,1,4,2],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[1,1,3,3],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[1,1,3,2],[0,2,1,2]],[[1,0,0,1],[2,3,3,3],[1,1,3,2],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[1,1,4,2],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[1,1,3,3],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[1,1,3,2],[0,3,2,0]],[[1,0,0,1],[2,3,3,2],[1,1,3,2],[0,2,3,0]],[[1,0,0,1],[2,3,3,3],[1,2,2,2],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[1,2,2,3],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[1,2,2,2],[0,1,3,1]],[[1,0,0,1],[2,3,3,2],[1,2,2,2],[0,1,2,2]],[[1,0,0,1],[2,3,3,3],[1,2,2,2],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[1,2,2,3],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[1,2,2,2],[1,0,3,1]],[[1,0,0,1],[2,3,3,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,0],[0,3,0,2],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[0,3,0,2],[2,4,2,1],[1,1,2,1]],[[1,2,2,0],[0,3,0,2],[3,3,2,1],[1,1,2,1]],[[1,2,2,0],[0,4,0,2],[2,3,2,1],[1,1,2,1]],[[1,2,3,0],[0,3,0,2],[2,3,2,1],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[1,2,4,1],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,1],[0,1,3,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,1],[0,1,2,2]],[[1,0,0,1],[2,3,3,2],[1,2,4,1],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,1],[1,0,3,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,1],[1,0,2,2]],[[1,3,2,0],[0,3,0,2],[2,3,2,1],[1,1,2,1]],[[2,2,2,0],[0,3,0,2],[2,3,2,1],[1,1,2,1]],[[1,2,2,0],[0,3,0,2],[2,3,2,1],[0,2,2,2]],[[1,2,2,0],[0,3,0,2],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[0,3,0,2],[2,3,2,1],[0,3,2,1]],[[1,0,0,1],[2,3,3,3],[1,2,3,2],[0,0,2,1]],[[1,0,0,1],[2,3,3,2],[1,2,4,2],[0,0,2,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,3],[0,0,2,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,2],[0,0,2,2]],[[1,0,0,1],[2,3,3,3],[1,2,3,2],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[1,2,4,2],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,3],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,2],[0,1,1,2]],[[1,0,0,1],[2,3,3,3],[1,2,3,2],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[1,2,4,2],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[1,2,3,3],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[1,2,3,2],[0,1,3,0]],[[1,0,0,1],[2,3,3,3],[1,2,3,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[1,2,4,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,3],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,2],[0,2,0,2]],[[1,0,0,1],[2,3,3,3],[1,2,3,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[1,2,4,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[1,2,3,3],[0,2,1,0]],[[1,2,2,0],[0,3,0,2],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[0,3,0,2],[3,3,2,1],[0,2,2,1]],[[1,2,2,0],[0,4,0,2],[2,3,2,1],[0,2,2,1]],[[1,2,3,0],[0,3,0,2],[2,3,2,1],[0,2,2,1]],[[1,3,2,0],[0,3,0,2],[2,3,2,1],[0,2,2,1]],[[2,2,2,0],[0,3,0,2],[2,3,2,1],[0,2,2,1]],[[1,0,0,1],[2,3,3,3],[1,2,3,2],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[1,2,4,2],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,3],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,2],[1,0,1,2]],[[1,0,0,1],[2,3,3,3],[1,2,3,2],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[1,2,4,2],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[1,2,3,3],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[1,2,3,2],[1,0,3,0]],[[1,0,0,1],[2,3,3,3],[1,2,3,2],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[1,2,4,2],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[1,2,3,2],[1,1,0,2]],[[1,0,0,1],[2,3,3,3],[1,2,3,2],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[1,2,4,2],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[1,2,3,3],[1,1,1,0]],[[1,2,2,0],[0,3,0,2],[2,3,1,2],[1,3,2,0]],[[1,2,2,0],[0,3,0,2],[2,3,1,2],[2,2,2,0]],[[1,2,2,0],[0,3,0,2],[3,3,1,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,2],[2,3,1,2],[2,1,2,1]],[[1,2,2,0],[0,3,0,2],[2,4,1,2],[1,1,2,1]],[[1,2,2,0],[0,3,0,2],[3,3,1,2],[1,1,2,1]],[[1,2,2,0],[0,4,0,2],[2,3,1,2],[1,1,2,1]],[[1,2,3,0],[0,3,0,2],[2,3,1,2],[1,1,2,1]],[[1,3,2,0],[0,3,0,2],[2,3,1,2],[1,1,2,1]],[[2,2,2,0],[0,3,0,2],[2,3,1,2],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[1,4,0,1],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,3,0,1],[2,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,3,0,1],[1,3,2,1]],[[1,0,0,1],[2,3,3,2],[1,3,0,1],[1,2,3,1]],[[1,0,0,1],[2,3,3,2],[1,3,0,1],[1,2,2,2]],[[1,0,0,1],[2,3,3,2],[1,4,0,2],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[1,3,0,2],[2,2,1,1]],[[1,0,0,1],[2,3,3,2],[1,3,0,2],[1,3,1,1]],[[1,0,0,1],[2,3,3,2],[1,4,0,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[1,3,0,2],[2,2,2,0]],[[1,0,0,1],[2,3,3,2],[1,3,0,2],[1,3,2,0]],[[1,0,0,1],[2,3,3,2],[1,3,0,2],[1,2,3,0]],[[1,0,0,1],[2,3,3,2],[1,4,1,0],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,3,1,0],[2,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,3,1,0],[1,3,2,1]],[[1,0,0,1],[2,3,3,2],[1,3,1,0],[1,2,3,1]],[[1,0,0,1],[2,3,3,2],[1,3,1,0],[1,2,2,2]],[[1,0,0,1],[2,3,3,2],[1,4,1,1],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[1,3,1,1],[2,2,2,0]],[[1,0,0,1],[2,3,3,2],[1,3,1,1],[1,3,2,0]],[[1,0,0,1],[2,3,3,2],[1,3,1,1],[1,2,3,0]],[[1,0,0,1],[2,3,3,2],[1,4,1,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[1,3,1,2],[2,2,0,1]],[[1,0,0,1],[2,3,3,2],[1,3,1,2],[1,3,0,1]],[[1,0,0,1],[2,3,3,2],[1,4,1,2],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[1,3,1,2],[2,2,1,0]],[[1,0,0,1],[2,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,0],[0,3,0,2],[2,3,1,2],[0,2,2,2]],[[1,2,2,0],[0,3,0,2],[2,3,1,2],[0,2,3,1]],[[1,2,2,0],[0,3,0,2],[2,3,1,2],[0,3,2,1]],[[1,2,2,0],[0,3,0,2],[2,3,1,3],[0,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,4,1,2],[0,2,2,1]],[[1,2,2,0],[0,3,0,2],[3,3,1,2],[0,2,2,1]],[[1,2,2,0],[0,3,0,3],[2,3,1,2],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[1,4,2,0],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[1,3,2,0],[2,2,1,1]],[[1,0,0,1],[2,3,3,2],[1,3,2,0],[1,3,1,1]],[[1,0,0,1],[2,3,3,2],[1,4,2,1],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[1,3,2,1],[2,2,0,1]],[[1,0,0,1],[2,3,3,2],[1,3,2,1],[1,3,0,1]],[[1,0,0,1],[2,3,3,2],[1,4,2,1],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[1,3,2,1],[2,2,1,0]],[[1,0,0,1],[2,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,0],[0,4,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,3,0],[0,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,3,2,0],[0,3,0,2],[2,3,1,2],[0,2,2,1]],[[2,2,2,0],[0,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,3,1,1],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[2,3,1,1],[2,2,2,1]],[[1,2,2,0],[0,3,0,2],[3,3,1,1],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,3,0,2],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[2,3,0,2],[2,2,2,1]],[[1,2,2,0],[0,3,0,2],[3,3,0,2],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,3,0,2],[2,2,3,2],[2,2,1,0]],[[1,2,2,0],[0,3,0,2],[3,2,3,2],[1,2,1,0]],[[1,2,2,0],[0,3,0,2],[2,2,3,2],[1,3,0,1]],[[1,2,2,0],[0,3,0,2],[2,2,3,2],[2,2,0,1]],[[1,0,0,1],[2,3,3,2],[1,4,3,0],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[1,3,3,0],[2,2,1,0]],[[1,0,0,1],[2,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,0],[0,3,0,2],[3,2,3,2],[1,2,0,1]],[[1,2,2,0],[0,3,0,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,0],[0,3,0,2],[2,2,3,2],[0,3,2,0]],[[1,2,2,0],[0,3,0,2],[2,2,3,3],[0,2,2,0]],[[1,2,2,0],[0,3,0,2],[2,2,4,2],[0,2,2,0]],[[1,2,2,0],[0,3,0,3],[2,2,3,2],[0,2,2,0]],[[1,2,2,0],[0,3,0,2],[2,2,3,2],[0,2,1,2]],[[1,2,2,0],[0,3,0,2],[2,2,3,3],[0,2,1,1]],[[1,2,2,0],[0,3,0,2],[2,2,4,2],[0,2,1,1]],[[1,2,2,0],[0,3,0,3],[2,2,3,2],[0,2,1,1]],[[1,2,2,0],[0,3,0,2],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[0,3,0,2],[2,2,3,1],[2,2,1,1]],[[1,2,2,0],[0,3,0,2],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[0,3,0,2],[2,2,3,1],[0,2,2,2]],[[1,2,2,0],[0,3,0,2],[2,2,3,1],[0,2,3,1]],[[1,2,2,0],[0,3,0,2],[2,2,3,1],[0,3,2,1]],[[1,2,2,0],[0,3,0,2],[2,2,4,1],[0,2,2,1]],[[1,0,0,1],[2,3,3,3],[1,3,3,2],[0,0,1,1]],[[1,0,0,1],[2,3,3,2],[1,3,4,2],[0,0,1,1]],[[1,0,0,1],[2,3,3,2],[1,3,3,3],[0,0,1,1]],[[1,0,0,1],[2,3,3,2],[1,3,3,2],[0,0,1,2]],[[1,0,0,1],[2,3,3,3],[1,3,3,2],[0,0,2,0]],[[1,0,0,1],[2,3,3,2],[1,3,4,2],[0,0,2,0]],[[1,0,0,1],[2,3,3,2],[1,3,3,3],[0,0,2,0]],[[1,2,2,0],[0,3,0,2],[2,2,2,2],[1,2,3,0]],[[1,2,2,0],[0,3,0,2],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[0,3,0,2],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[0,3,0,2],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,2],[2,2,2,2],[0,2,2,2]],[[1,2,2,0],[0,3,0,2],[2,2,2,2],[0,2,3,1]],[[1,2,2,0],[0,3,0,2],[2,2,2,2],[0,3,2,1]],[[1,2,2,0],[0,3,0,2],[2,2,2,3],[0,2,2,1]],[[1,2,2,0],[0,3,0,3],[2,2,2,2],[0,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,2,2,1],[1,2,2,2]],[[1,2,2,0],[0,3,0,2],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[0,3,0,2],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[0,3,0,2],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,2,1,2],[1,2,2,2]],[[1,2,2,0],[0,3,0,2],[2,2,1,2],[1,2,3,1]],[[1,2,2,0],[0,3,0,2],[2,2,1,2],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[2,2,1,2],[2,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,2,1,3],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[3,2,1,2],[1,2,2,1]],[[1,2,2,0],[0,3,0,3],[2,2,1,2],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,1,3,2],[1,2,3,0]],[[1,2,2,0],[0,3,0,2],[2,1,3,2],[1,3,2,0]],[[1,2,2,0],[0,3,0,2],[2,1,3,2],[2,2,2,0]],[[1,2,2,0],[0,3,0,2],[2,1,3,3],[1,2,2,0]],[[1,2,2,0],[0,3,0,2],[2,1,4,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,2],[3,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,3],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,2],[2,1,3,2],[1,2,1,2]],[[1,2,2,0],[0,3,0,2],[2,1,3,3],[1,2,1,1]],[[1,2,2,0],[0,3,0,2],[2,1,4,2],[1,2,1,1]],[[1,2,2,0],[0,3,0,3],[2,1,3,2],[1,2,1,1]],[[1,2,2,0],[0,3,0,2],[2,1,3,1],[1,2,2,2]],[[1,2,2,0],[0,3,0,2],[2,1,3,1],[1,2,3,1]],[[1,2,2,0],[0,3,0,2],[2,1,3,1],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[2,1,3,1],[2,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,1,4,1],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[3,1,3,1],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[0,3,0,2],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[0,3,0,2],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[0,3,0,2],[2,1,2,3],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[3,1,2,2],[1,2,2,1]],[[1,2,2,0],[0,3,0,3],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,0,0,1],[2,3,3,3],[2,0,2,2],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,0,2,3],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,0,2,2],[0,3,2,1]],[[1,0,0,1],[2,3,3,2],[2,0,2,2],[0,2,3,1]],[[1,0,0,1],[2,3,3,2],[2,0,2,2],[0,2,2,2]],[[1,0,0,1],[2,3,3,3],[2,0,2,2],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,0,2,3],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,0,2,2],[1,1,3,1]],[[1,0,0,1],[2,3,3,2],[2,0,2,2],[1,1,2,2]],[[1,0,0,1],[2,3,3,2],[2,0,4,1],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,0,3,1],[0,3,2,1]],[[1,0,0,1],[2,3,3,2],[2,0,3,1],[0,2,3,1]],[[1,0,0,1],[2,3,3,2],[2,0,3,1],[0,2,2,2]],[[1,0,0,1],[2,3,3,2],[2,0,4,1],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,0,3,1],[1,1,3,1]],[[1,0,0,1],[2,3,3,2],[2,0,3,1],[1,1,2,2]],[[1,0,0,1],[2,3,3,3],[2,0,3,2],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[2,0,4,2],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[2,0,3,3],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[2,0,3,2],[0,2,1,2]],[[1,0,0,1],[2,3,3,3],[2,0,3,2],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,0,4,2],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,0,3,3],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,0,3,2],[0,3,2,0]],[[1,0,0,1],[2,3,3,2],[2,0,3,2],[0,2,3,0]],[[1,0,0,1],[2,3,3,3],[2,0,3,2],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,0,4,2],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,0,3,3],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,0,3,2],[1,1,1,2]],[[1,0,0,1],[2,3,3,3],[2,0,3,2],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,0,4,2],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,0,3,3],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,0,3,2],[1,1,3,0]],[[1,0,0,1],[2,3,3,3],[2,0,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,0,4,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,0,3,3],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,0,3,2],[1,2,0,2]],[[1,0,0,1],[2,3,3,3],[2,0,3,2],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,0,4,2],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,0,3,3],[1,2,1,0]],[[1,2,2,0],[0,3,0,2],[1,3,3,2],[2,2,1,0]],[[1,2,2,0],[0,3,0,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[0,3,0,2],[1,3,4,2],[1,2,1,0]],[[1,2,2,0],[0,3,0,2],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[0,3,0,3],[1,3,3,2],[1,2,1,0]],[[1,2,2,0],[0,4,0,2],[1,3,3,2],[1,2,1,0]],[[1,2,3,0],[0,3,0,2],[1,3,3,2],[1,2,1,0]],[[1,3,2,0],[0,3,0,2],[1,3,3,2],[1,2,1,0]],[[2,2,2,0],[0,3,0,2],[1,3,3,2],[1,2,1,0]],[[1,0,0,1],[2,3,3,3],[2,1,2,2],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,1,2,3],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,1,2,2],[0,1,3,1]],[[1,0,0,1],[2,3,3,2],[2,1,2,2],[0,1,2,2]],[[1,0,0,1],[2,3,3,3],[2,1,2,2],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[2,1,2,3],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[2,1,2,2],[1,0,3,1]],[[1,0,0,1],[2,3,3,2],[2,1,2,2],[1,0,2,2]],[[1,2,2,0],[0,3,0,2],[1,3,3,2],[1,2,0,2]],[[1,2,2,0],[0,3,0,2],[1,3,3,2],[1,3,0,1]],[[1,2,2,0],[0,3,0,2],[1,3,3,2],[2,2,0,1]],[[1,2,2,0],[0,3,0,2],[1,3,3,3],[1,2,0,1]],[[1,2,2,0],[0,3,0,2],[1,3,4,2],[1,2,0,1]],[[1,2,2,0],[0,3,0,2],[1,4,3,2],[1,2,0,1]],[[1,2,2,0],[0,3,0,3],[1,3,3,2],[1,2,0,1]],[[1,2,2,0],[0,4,0,2],[1,3,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,1,4,1],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,1],[0,1,3,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,1],[0,1,2,2]],[[1,0,0,1],[2,3,3,2],[2,1,4,1],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,1],[1,0,3,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,1],[1,0,2,2]],[[1,2,3,0],[0,3,0,2],[1,3,3,2],[1,2,0,1]],[[1,3,2,0],[0,3,0,2],[1,3,3,2],[1,2,0,1]],[[2,2,2,0],[0,3,0,2],[1,3,3,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,3],[2,1,3,2],[0,0,2,1]],[[1,0,0,1],[2,3,3,2],[2,1,4,2],[0,0,2,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,3],[0,0,2,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,2],[0,0,2,2]],[[1,0,0,1],[2,3,3,3],[2,1,3,2],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,1,4,2],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,3],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,2],[0,1,1,2]],[[1,0,0,1],[2,3,3,3],[2,1,3,2],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,1,4,2],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,1,3,3],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,1,3,2],[0,1,3,0]],[[1,0,0,1],[2,3,3,3],[2,1,3,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,1,4,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,3],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,2],[0,2,0,2]],[[1,0,0,1],[2,3,3,3],[2,1,3,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,1,4,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,1,3,3],[0,2,1,0]],[[1,0,0,1],[2,3,3,3],[2,1,3,2],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[2,1,4,2],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,3],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,2],[1,0,1,2]],[[1,0,0,1],[2,3,3,3],[2,1,3,2],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[2,1,4,2],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[2,1,3,3],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[2,1,3,2],[1,0,3,0]],[[1,0,0,1],[2,3,3,3],[2,1,3,2],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[2,1,4,2],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,3],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[2,1,3,2],[1,1,0,2]],[[1,0,0,1],[2,3,3,3],[2,1,3,2],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[2,1,4,2],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[2,1,3,3],[1,1,1,0]],[[1,2,2,0],[0,3,0,2],[1,3,3,2],[1,1,3,0]],[[1,2,2,0],[0,3,0,2],[1,3,3,3],[1,1,2,0]],[[1,2,2,0],[0,3,0,2],[1,3,4,2],[1,1,2,0]],[[1,2,2,0],[0,3,0,2],[1,4,3,2],[1,1,2,0]],[[1,2,2,0],[0,3,0,3],[1,3,3,2],[1,1,2,0]],[[1,2,2,0],[0,4,0,2],[1,3,3,2],[1,1,2,0]],[[1,2,3,0],[0,3,0,2],[1,3,3,2],[1,1,2,0]],[[1,3,2,0],[0,3,0,2],[1,3,3,2],[1,1,2,0]],[[2,2,2,0],[0,3,0,2],[1,3,3,2],[1,1,2,0]],[[1,2,2,0],[0,3,0,2],[1,3,3,2],[1,1,1,2]],[[1,2,2,0],[0,3,0,2],[1,3,3,3],[1,1,1,1]],[[1,2,2,0],[0,3,0,2],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[0,3,0,2],[1,4,3,2],[1,1,1,1]],[[1,2,2,0],[0,3,0,3],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[0,4,0,2],[1,3,3,2],[1,1,1,1]],[[1,2,3,0],[0,3,0,2],[1,3,3,2],[1,1,1,1]],[[1,3,2,0],[0,3,0,2],[1,3,3,2],[1,1,1,1]],[[2,2,2,0],[0,3,0,2],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[0,3,0,2],[1,3,3,2],[1,0,2,2]],[[1,2,2,0],[0,3,0,2],[1,3,3,3],[1,0,2,1]],[[1,2,2,0],[0,3,0,2],[1,3,4,2],[1,0,2,1]],[[1,2,2,0],[0,3,0,3],[1,3,3,2],[1,0,2,1]],[[1,0,0,1],[3,3,3,2],[2,2,0,1],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[3,2,0,1],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,2,0,1],[2,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,2,0,1],[1,3,2,1]],[[1,0,0,1],[2,3,3,2],[2,2,0,1],[1,2,3,1]],[[1,0,0,1],[2,3,3,2],[2,2,0,1],[1,2,2,2]],[[1,0,0,1],[3,3,3,2],[2,2,0,2],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[3,2,0,2],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[2,2,0,2],[2,2,1,1]],[[1,0,0,1],[2,3,3,2],[2,2,0,2],[1,3,1,1]],[[1,0,0,1],[3,3,3,2],[2,2,0,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[3,2,0,2],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,2,0,2],[2,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,2,0,2],[1,3,2,0]],[[1,0,0,1],[2,3,3,2],[2,2,0,2],[1,2,3,0]],[[1,0,0,1],[3,3,3,2],[2,2,1,0],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[3,2,1,0],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,2,1,0],[2,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,2,1,0],[1,3,2,1]],[[1,0,0,1],[2,3,3,2],[2,2,1,0],[1,2,3,1]],[[1,0,0,1],[2,3,3,2],[2,2,1,0],[1,2,2,2]],[[1,0,0,1],[3,3,3,2],[2,2,1,1],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[3,2,1,1],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,2,1,1],[2,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,2,1,1],[1,3,2,0]],[[1,0,0,1],[2,3,3,2],[2,2,1,1],[1,2,3,0]],[[1,0,0,1],[3,3,3,2],[2,2,1,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[3,2,1,2],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,2,1,2],[2,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,2,1,2],[1,3,0,1]],[[1,0,0,1],[3,3,3,2],[2,2,1,2],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[3,2,1,2],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,2,1,2],[2,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,0],[0,3,0,2],[1,3,3,1],[1,3,1,1]],[[1,2,2,0],[0,3,0,2],[1,3,3,1],[2,2,1,1]],[[1,0,0,1],[3,3,3,2],[2,2,2,0],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[3,2,2,0],[1,2,1,1]],[[1,0,0,1],[2,3,3,2],[2,2,2,0],[2,2,1,1]],[[1,0,0,1],[2,3,3,2],[2,2,2,0],[1,3,1,1]],[[1,0,0,1],[3,3,3,2],[2,2,2,1],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[3,2,2,1],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,2,2,1],[2,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,2,2,1],[1,3,0,1]],[[1,0,0,1],[3,3,3,2],[2,2,2,1],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[3,2,2,1],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,2,2,1],[2,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,2,0],[0,3,0,2],[1,3,4,1],[1,2,1,1]],[[1,2,2,0],[0,3,0,2],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[0,4,0,2],[1,3,3,1],[1,2,1,1]],[[1,2,3,0],[0,3,0,2],[1,3,3,1],[1,2,1,1]],[[1,3,2,0],[0,3,0,2],[1,3,3,1],[1,2,1,1]],[[2,2,2,0],[0,3,0,2],[1,3,3,1],[1,2,1,1]],[[1,2,2,0],[0,3,0,2],[1,3,3,1],[1,1,2,2]],[[1,2,2,0],[0,3,0,2],[1,3,3,1],[1,1,3,1]],[[1,2,2,0],[0,3,0,2],[1,3,4,1],[1,1,2,1]],[[1,2,2,0],[0,3,0,2],[1,4,3,1],[1,1,2,1]],[[1,2,2,0],[0,4,0,2],[1,3,3,1],[1,1,2,1]],[[1,2,3,0],[0,3,0,2],[1,3,3,1],[1,1,2,1]],[[1,3,2,0],[0,3,0,2],[1,3,3,1],[1,1,2,1]],[[2,2,2,0],[0,3,0,2],[1,3,3,1],[1,1,2,1]],[[1,2,2,0],[0,3,0,2],[1,3,2,2],[1,2,3,0]],[[1,2,2,0],[0,3,0,2],[1,3,2,2],[1,3,2,0]],[[1,2,2,0],[0,3,0,2],[1,3,2,2],[2,2,2,0]],[[1,2,2,0],[0,3,0,2],[1,4,2,2],[1,2,2,0]],[[1,2,2,0],[0,4,0,2],[1,3,2,2],[1,2,2,0]],[[1,2,3,0],[0,3,0,2],[1,3,2,2],[1,2,2,0]],[[1,3,2,0],[0,3,0,2],[1,3,2,2],[1,2,2,0]],[[1,0,0,1],[3,3,3,2],[2,2,3,0],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[3,2,3,0],[1,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,2,3,0],[2,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,2,3,0],[1,3,1,0]],[[2,2,2,0],[0,3,0,2],[1,3,2,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,2],[1,3,2,2],[1,1,2,2]],[[1,2,2,0],[0,3,0,2],[1,3,2,2],[1,1,3,1]],[[1,2,2,0],[0,3,0,2],[1,3,2,3],[1,1,2,1]],[[1,2,2,0],[0,3,0,3],[1,3,2,2],[1,1,2,1]],[[1,2,2,0],[0,3,0,2],[1,3,2,1],[1,2,2,2]],[[1,2,2,0],[0,3,0,2],[1,3,2,1],[1,2,3,1]],[[1,2,2,0],[0,3,0,2],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[0,3,0,2],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[0,4,0,2],[1,3,2,1],[1,2,2,1]],[[1,2,3,0],[0,3,0,2],[1,3,2,1],[1,2,2,1]],[[1,3,2,0],[0,3,0,2],[1,3,2,1],[1,2,2,1]],[[2,2,2,0],[0,3,0,2],[1,3,2,1],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[1,3,1,2],[1,2,2,2]],[[1,2,2,0],[0,3,0,2],[1,3,1,2],[1,2,3,1]],[[1,2,2,0],[0,3,0,2],[1,3,1,2],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[1,3,1,2],[2,2,2,1]],[[1,2,2,0],[0,3,0,2],[1,3,1,3],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[1,4,1,2],[1,2,2,1]],[[1,2,2,0],[0,3,0,3],[1,3,1,2],[1,2,2,1]],[[1,2,2,0],[0,4,0,2],[1,3,1,2],[1,2,2,1]],[[1,2,3,0],[0,3,0,2],[1,3,1,2],[1,2,2,1]],[[1,3,2,0],[0,3,0,2],[1,3,1,2],[1,2,2,1]],[[2,2,2,0],[0,3,0,2],[1,3,1,2],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[1,2,3,2],[1,2,3,0]],[[1,2,2,0],[0,3,0,2],[1,2,3,2],[1,3,2,0]],[[1,2,2,0],[0,3,0,2],[1,2,3,2],[2,2,2,0]],[[1,2,2,0],[0,3,0,2],[1,2,3,3],[1,2,2,0]],[[1,2,2,0],[0,3,0,2],[1,2,4,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,3],[1,2,3,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,2],[1,2,3,2],[1,2,1,2]],[[1,2,2,0],[0,3,0,2],[1,2,3,3],[1,2,1,1]],[[1,2,2,0],[0,3,0,2],[1,2,4,2],[1,2,1,1]],[[1,2,2,0],[0,3,0,3],[1,2,3,2],[1,2,1,1]],[[1,2,2,0],[0,3,0,2],[1,2,3,1],[1,2,2,2]],[[1,2,2,0],[0,3,0,2],[1,2,3,1],[1,2,3,1]],[[1,2,2,0],[0,3,0,2],[1,2,3,1],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[1,2,3,1],[2,2,2,1]],[[1,2,2,0],[0,3,0,2],[1,2,4,1],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[1,2,2,2],[1,2,2,2]],[[1,2,2,0],[0,3,0,2],[1,2,2,2],[1,2,3,1]],[[1,2,2,0],[0,3,0,2],[1,2,2,2],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[1,2,2,2],[2,2,2,1]],[[1,2,2,0],[0,3,0,2],[1,2,2,3],[1,2,2,1]],[[1,2,2,0],[0,3,0,3],[1,2,2,2],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[0,3,3,2],[1,2,3,0]],[[1,2,2,0],[0,3,0,2],[0,3,3,2],[1,3,2,0]],[[1,2,2,0],[0,3,0,2],[0,3,3,3],[1,2,2,0]],[[1,2,2,0],[0,3,0,2],[0,3,4,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,3],[0,3,3,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,2],[0,3,3,2],[1,2,1,2]],[[1,2,2,0],[0,3,0,2],[0,3,3,3],[1,2,1,1]],[[1,2,2,0],[0,3,0,2],[0,3,4,2],[1,2,1,1]],[[1,2,2,0],[0,3,0,3],[0,3,3,2],[1,2,1,1]],[[1,2,2,0],[0,3,0,2],[0,3,3,1],[1,2,2,2]],[[1,2,2,0],[0,3,0,2],[0,3,3,1],[1,2,3,1]],[[1,2,2,0],[0,3,0,2],[0,3,3,1],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[0,3,4,1],[1,2,2,1]],[[1,2,2,0],[0,3,0,2],[0,3,2,2],[1,2,2,2]],[[1,2,2,0],[0,3,0,2],[0,3,2,2],[1,2,3,1]],[[1,2,2,0],[0,3,0,2],[0,3,2,2],[1,3,2,1]],[[1,2,2,0],[0,3,0,2],[0,3,2,3],[1,2,2,1]],[[1,2,2,0],[0,3,0,3],[0,3,2,2],[1,2,2,1]],[[1,2,2,0],[0,3,0,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,0],[0,3,0,1],[2,4,3,2],[1,1,2,0]],[[1,2,2,0],[0,3,0,1],[3,3,3,2],[1,1,2,0]],[[1,2,2,0],[0,3,0,1],[2,3,3,2],[0,2,3,0]],[[1,2,2,0],[0,3,0,1],[2,3,3,2],[0,3,2,0]],[[1,2,2,0],[0,3,0,1],[2,4,3,2],[0,2,2,0]],[[1,2,2,0],[0,3,0,1],[3,3,3,2],[0,2,2,0]],[[1,2,2,0],[0,3,0,1],[2,3,3,1],[2,1,2,1]],[[1,2,2,0],[0,3,0,1],[2,4,3,1],[1,1,2,1]],[[1,2,2,0],[0,3,0,1],[3,3,3,1],[1,1,2,1]],[[1,2,2,0],[0,3,0,1],[2,3,3,1],[0,2,2,2]],[[1,2,2,0],[0,3,0,1],[2,3,3,1],[0,2,3,1]],[[1,2,2,0],[0,3,0,1],[2,3,3,1],[0,3,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,0,0],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[3,3,0,0],[1,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,3,0,0],[2,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,3,0,0],[1,3,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[3,3,0,1],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,4,0,1],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,3,0,1],[0,3,2,1]],[[1,0,0,1],[2,3,3,2],[2,3,0,1],[0,2,3,1]],[[1,0,0,1],[2,3,3,2],[2,3,0,1],[0,2,2,2]],[[1,0,0,1],[3,3,3,2],[2,3,0,1],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[3,3,0,1],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,4,0,1],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,3,0,1],[2,1,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,0,1],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[3,3,0,1],[1,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,3,0,1],[2,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,3,0,1],[1,3,2,0]],[[1,0,0,1],[3,3,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[3,3,0,2],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,4,0,2],[0,1,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,0,2],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[3,3,0,2],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[2,4,0,2],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[2,3,0,2],[0,3,1,1]],[[1,0,0,1],[3,3,3,2],[2,3,0,2],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[3,3,0,2],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,4,0,2],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,3,0,2],[0,3,2,0]],[[1,0,0,1],[2,3,3,2],[2,3,0,2],[0,2,3,0]],[[1,0,0,1],[3,3,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[3,3,0,2],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[2,4,0,2],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[2,3,0,2],[2,0,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,0,2],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[3,3,0,2],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,4,0,2],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,3,0,2],[2,1,1,1]],[[1,0,0,1],[3,3,3,2],[2,3,0,2],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[3,3,0,2],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,4,0,2],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,0],[0,3,0,1],[2,4,3,1],[0,2,2,1]],[[1,2,2,0],[0,3,0,1],[3,3,3,1],[0,2,2,1]],[[1,2,2,0],[0,3,0,1],[2,2,3,2],[1,2,3,0]],[[1,2,2,0],[0,3,0,1],[2,2,3,2],[1,3,2,0]],[[1,0,0,1],[3,3,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[3,3,1,0],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,4,1,0],[0,2,2,1]],[[1,0,0,1],[2,3,3,2],[2,3,1,0],[0,3,2,1]],[[1,0,0,1],[2,3,3,2],[2,3,1,0],[0,2,3,1]],[[1,0,0,1],[2,3,3,2],[2,3,1,0],[0,2,2,2]],[[1,0,0,1],[3,3,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[3,3,1,0],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,4,1,0],[1,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,3,1,0],[2,1,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[3,3,1,1],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,4,1,1],[0,2,2,0]],[[1,0,0,1],[2,3,3,2],[2,3,1,1],[0,3,2,0]],[[1,0,0,1],[2,3,3,2],[2,3,1,1],[0,2,3,0]],[[1,0,0,1],[3,3,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[3,3,1,1],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,4,1,1],[1,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,2,0],[0,3,0,1],[2,2,3,2],[2,2,2,0]],[[1,2,2,0],[0,3,0,1],[3,2,3,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,1],[2,2,3,1],[1,2,2,2]],[[1,2,2,0],[0,3,0,1],[2,2,3,1],[1,2,3,1]],[[1,2,2,0],[0,3,0,1],[2,2,3,1],[1,3,2,1]],[[1,2,2,0],[0,3,0,1],[2,2,3,1],[2,2,2,1]],[[1,2,2,0],[0,3,0,1],[3,2,3,1],[1,2,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[3,3,1,2],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,4,1,2],[0,1,1,1]],[[1,0,0,1],[3,3,3,2],[2,3,1,2],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[3,3,1,2],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,4,1,2],[0,1,2,0]],[[1,0,0,1],[3,3,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[3,3,1,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,4,1,2],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,3,1,2],[0,3,0,1]],[[1,0,0,1],[3,3,3,2],[2,3,1,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[3,3,1,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,4,1,2],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,0],[0,3,0,1],[1,3,3,2],[1,2,3,0]],[[1,2,2,0],[0,3,0,1],[1,3,3,2],[1,3,2,0]],[[1,2,2,0],[0,3,0,1],[1,3,3,2],[2,2,2,0]],[[1,0,0,1],[3,3,3,2],[2,3,1,2],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[3,3,1,2],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[2,4,1,2],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[2,3,1,2],[2,0,1,1]],[[1,0,0,1],[3,3,3,2],[2,3,1,2],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[3,3,1,2],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[2,4,1,2],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[2,3,1,2],[2,0,2,0]],[[1,0,0,1],[3,3,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[3,3,1,2],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[2,4,1,2],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[2,3,1,2],[2,1,0,1]],[[1,0,0,1],[3,3,3,2],[2,3,1,2],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[3,3,1,2],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[2,4,1,2],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,0],[0,3,0,1],[1,4,3,2],[1,2,2,0]],[[1,2,2,0],[0,3,0,1],[1,3,3,1],[1,2,2,2]],[[1,2,2,0],[0,3,0,1],[1,3,3,1],[1,2,3,1]],[[1,2,2,0],[0,3,0,1],[1,3,3,1],[1,3,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,1,2],[1,2,0,0]],[[1,0,0,1],[2,3,3,2],[3,3,1,2],[1,2,0,0]],[[1,0,0,1],[2,3,3,2],[2,4,1,2],[1,2,0,0]],[[1,0,0,1],[2,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[0,3,0,1],[1,3,3,1],[2,2,2,1]],[[1,2,2,0],[0,3,0,1],[1,4,3,1],[1,2,2,1]],[[1,2,2,0],[0,3,0,0],[2,3,3,2],[2,1,2,1]],[[1,2,2,0],[0,3,0,0],[2,4,3,2],[1,1,2,1]],[[1,2,2,0],[0,3,0,0],[3,3,3,2],[1,1,2,1]],[[1,2,2,0],[0,3,0,0],[2,3,3,2],[0,2,2,2]],[[1,2,2,0],[0,3,0,0],[2,3,3,2],[0,2,3,1]],[[1,2,2,0],[0,3,0,0],[2,3,3,2],[0,3,2,1]],[[1,2,2,0],[0,3,0,0],[2,4,3,2],[0,2,2,1]],[[1,2,2,0],[0,3,0,0],[3,3,3,2],[0,2,2,1]],[[1,2,2,0],[0,3,0,0],[2,2,3,2],[1,2,2,2]],[[1,2,2,0],[0,3,0,0],[2,2,3,2],[1,2,3,1]],[[1,2,2,0],[0,3,0,0],[2,2,3,2],[1,3,2,1]],[[1,2,2,0],[0,3,0,0],[2,2,3,2],[2,2,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[3,3,2,0],[0,1,2,1]],[[1,0,0,1],[2,3,3,2],[2,4,2,0],[0,1,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[3,3,2,0],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[2,4,2,0],[0,2,1,1]],[[1,0,0,1],[2,3,3,2],[2,3,2,0],[0,3,1,1]],[[1,0,0,1],[3,3,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[3,3,2,0],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[2,4,2,0],[1,0,2,1]],[[1,0,0,1],[2,3,3,2],[2,3,2,0],[2,0,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,2,0],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[3,3,2,0],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,4,2,0],[1,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,3,2,0],[2,1,1,1]],[[1,0,0,1],[3,3,3,2],[2,3,2,0],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[3,3,2,0],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,4,2,0],[1,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,0],[0,3,0,0],[3,2,3,2],[1,2,2,1]],[[1,2,2,0],[0,3,0,0],[1,3,3,2],[1,2,2,2]],[[1,2,2,0],[0,3,0,0],[1,3,3,2],[1,2,3,1]],[[1,2,2,0],[0,3,0,0],[1,3,3,2],[1,3,2,1]],[[1,2,2,0],[0,3,0,0],[1,3,3,2],[2,2,2,1]],[[1,2,2,0],[0,3,0,0],[1,4,3,2],[1,2,2,1]],[[1,0,0,1],[3,3,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[3,3,2,1],[0,1,1,1]],[[1,0,0,1],[2,3,3,2],[2,4,2,1],[0,1,1,1]],[[1,0,0,1],[3,3,3,2],[2,3,2,1],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[3,3,2,1],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,4,2,1],[0,1,2,0]],[[1,0,0,1],[3,3,3,2],[2,3,2,1],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[3,3,2,1],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,4,2,1],[0,2,0,1]],[[1,0,0,1],[2,3,3,2],[2,3,2,1],[0,3,0,1]],[[1,0,0,1],[3,3,3,2],[2,3,2,1],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[3,3,2,1],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,4,2,1],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,0,0,1],[3,3,3,2],[2,3,2,1],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[3,3,2,1],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[2,4,2,1],[1,0,1,1]],[[1,0,0,1],[2,3,3,2],[2,3,2,1],[2,0,1,1]],[[1,0,0,1],[3,3,3,2],[2,3,2,1],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[3,3,2,1],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[2,4,2,1],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[2,3,2,1],[2,0,2,0]],[[1,0,0,1],[3,3,3,2],[2,3,2,1],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[3,3,2,1],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[2,4,2,1],[1,1,0,1]],[[1,0,0,1],[2,3,3,2],[2,3,2,1],[2,1,0,1]],[[1,0,0,1],[3,3,3,2],[2,3,2,1],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[3,3,2,1],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[2,4,2,1],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,0,0,1],[3,3,3,2],[2,3,2,1],[1,2,0,0]],[[1,0,0,1],[2,3,3,2],[3,3,2,1],[1,2,0,0]],[[1,0,0,1],[2,3,3,2],[2,4,2,1],[1,2,0,0]],[[1,0,0,1],[2,3,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,0],[0,2,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,2,0],[0,2,3,3],[2,3,3,2],[0,0,0,1]],[[1,2,2,0],[0,2,4,2],[2,3,3,2],[0,0,0,1]],[[1,2,3,0],[0,2,3,2],[2,3,3,2],[0,0,0,1]],[[1,3,2,0],[0,2,3,2],[2,3,3,2],[0,0,0,1]],[[2,2,2,0],[0,2,3,2],[2,3,3,2],[0,0,0,1]],[[1,2,2,0],[0,2,3,3],[2,3,3,1],[1,1,0,0]],[[1,2,2,0],[0,2,4,2],[2,3,3,1],[1,1,0,0]],[[1,2,3,0],[0,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,3,2,0],[0,2,3,2],[2,3,3,1],[1,1,0,0]],[[2,2,2,0],[0,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,0,1],[3,3,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[3,3,3,0],[0,1,2,0]],[[1,0,0,1],[2,3,3,2],[2,4,3,0],[0,1,2,0]],[[1,0,0,1],[3,3,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[3,3,3,0],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,4,3,0],[0,2,1,0]],[[1,0,0,1],[2,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,0],[0,2,3,3],[2,3,3,1],[0,2,0,0]],[[1,2,2,0],[0,2,4,2],[2,3,3,1],[0,2,0,0]],[[1,2,3,0],[0,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,0,1],[3,3,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[3,3,3,0],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[2,4,3,0],[1,0,2,0]],[[1,0,0,1],[2,3,3,2],[2,3,3,0],[2,0,2,0]],[[1,0,0,1],[3,3,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[3,3,3,0],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[2,4,3,0],[1,1,1,0]],[[1,0,0,1],[2,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,3,2,0],[0,2,3,2],[2,3,3,1],[0,2,0,0]],[[2,2,2,0],[0,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,0,1],[3,3,3,2],[2,3,3,0],[1,2,0,0]],[[1,0,0,1],[2,3,3,2],[3,3,3,0],[1,2,0,0]],[[1,0,0,1],[2,3,3,2],[2,4,3,0],[1,2,0,0]],[[1,0,0,1],[2,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,0],[0,2,3,2],[2,3,4,1],[0,0,2,0]],[[1,2,2,0],[0,2,3,3],[2,3,3,1],[0,0,2,0]],[[1,2,2,0],[0,2,4,2],[2,3,3,1],[0,0,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,3,1],[0,0,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,3,1],[0,0,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,3,1],[0,0,2,0]],[[1,2,2,0],[0,2,3,2],[2,3,4,1],[0,0,1,1]],[[1,0,0,1],[3,3,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,0,1],[2,3,3,2],[3,3,3,1],[0,2,0,0]],[[1,0,0,1],[2,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,0],[0,2,3,3],[2,3,3,1],[0,0,1,1]],[[1,2,2,0],[0,2,4,2],[2,3,3,1],[0,0,1,1]],[[1,2,3,0],[0,2,3,2],[2,3,3,1],[0,0,1,1]],[[1,3,2,0],[0,2,3,2],[2,3,3,1],[0,0,1,1]],[[2,2,2,0],[0,2,3,2],[2,3,3,1],[0,0,1,1]],[[1,2,2,0],[0,2,4,2],[2,3,3,0],[1,2,0,0]],[[1,2,3,0],[0,2,3,2],[2,3,3,0],[1,2,0,0]],[[1,3,2,0],[0,2,3,2],[2,3,3,0],[1,2,0,0]],[[2,2,2,0],[0,2,3,2],[2,3,3,0],[1,2,0,0]],[[1,0,0,1],[3,3,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,0,1],[2,3,3,2],[3,3,3,1],[1,1,0,0]],[[1,0,0,1],[2,3,3,2],[2,4,3,1],[1,1,0,0]],[[1,0,0,1],[2,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,0],[0,2,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,3,0],[0,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,3,2,0],[0,2,3,2],[2,3,3,0],[1,1,1,0]],[[2,2,2,0],[0,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,2,2,0],[0,2,4,2],[2,3,3,0],[1,0,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,3,0],[1,0,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,2,2,0],[0,2,4,2],[2,3,3,0],[0,2,1,0]],[[1,2,3,0],[0,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,3,2,0],[0,2,3,2],[2,3,3,0],[0,2,1,0]],[[2,2,2,0],[0,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,2,0],[0,2,4,2],[2,3,3,0],[0,1,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,3,0],[0,1,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,2,2,0],[0,2,3,2],[2,3,4,0],[0,0,2,1]],[[1,2,2,0],[0,2,3,3],[2,3,3,0],[0,0,2,1]],[[1,2,2,0],[0,2,4,2],[2,3,3,0],[0,0,2,1]],[[1,2,3,0],[0,2,3,2],[2,3,3,0],[0,0,2,1]],[[1,3,2,0],[0,2,3,2],[2,3,3,0],[0,0,2,1]],[[2,2,2,0],[0,2,3,2],[2,3,3,0],[0,0,2,1]],[[1,2,2,0],[0,2,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,0],[0,2,3,3],[2,3,2,2],[0,0,2,0]],[[1,2,2,0],[0,2,4,2],[2,3,2,2],[0,0,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,2,2],[0,0,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,2,2],[0,0,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,2,2],[0,0,2,0]],[[1,2,2,0],[0,2,3,2],[2,3,2,2],[0,0,1,2]],[[1,2,2,0],[0,2,3,2],[2,3,2,3],[0,0,1,1]],[[1,2,2,0],[0,2,3,3],[2,3,2,2],[0,0,1,1]],[[1,2,2,0],[0,2,4,2],[2,3,2,2],[0,0,1,1]],[[1,2,3,0],[0,2,3,2],[2,3,2,2],[0,0,1,1]],[[1,3,2,0],[0,2,3,2],[2,3,2,2],[0,0,1,1]],[[2,2,2,0],[0,2,3,2],[2,3,2,2],[0,0,1,1]],[[1,2,2,0],[0,2,3,3],[2,3,2,1],[1,2,0,0]],[[1,2,2,0],[0,2,4,2],[2,3,2,1],[1,2,0,0]],[[1,2,3,0],[0,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,3,2,0],[0,2,3,2],[2,3,2,1],[1,2,0,0]],[[2,2,2,0],[0,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,2,2,0],[0,2,3,3],[2,3,2,1],[1,1,1,0]],[[1,2,2,0],[0,2,4,2],[2,3,2,1],[1,1,1,0]],[[1,2,3,0],[0,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,3,2,0],[0,2,3,2],[2,3,2,1],[1,1,1,0]],[[2,2,2,0],[0,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,2,0],[0,2,3,3],[2,3,2,1],[1,1,0,1]],[[1,2,2,0],[0,2,4,2],[2,3,2,1],[1,1,0,1]],[[1,2,3,0],[0,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,3,2,0],[0,2,3,2],[2,3,2,1],[1,1,0,1]],[[2,2,2,0],[0,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,2,2,0],[0,2,3,3],[2,3,2,1],[1,0,2,0]],[[1,2,2,0],[0,2,4,2],[2,3,2,1],[1,0,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,2,1],[1,0,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,2,0],[0,2,3,3],[2,3,2,1],[1,0,1,1]],[[1,2,2,0],[0,2,4,2],[2,3,2,1],[1,0,1,1]],[[1,2,3,0],[0,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,3,2,0],[0,2,3,2],[2,3,2,1],[1,0,1,1]],[[2,2,2,0],[0,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,2,2,0],[0,2,3,3],[2,3,2,1],[0,2,1,0]],[[1,2,2,0],[0,2,4,2],[2,3,2,1],[0,2,1,0]],[[1,2,3,0],[0,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,3,2,0],[0,2,3,2],[2,3,2,1],[0,2,1,0]],[[2,2,2,0],[0,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,2,0],[0,2,3,3],[2,3,2,1],[0,2,0,1]],[[1,2,2,0],[0,2,4,2],[2,3,2,1],[0,2,0,1]],[[1,2,3,0],[0,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,3,2,0],[0,2,3,2],[2,3,2,1],[0,2,0,1]],[[2,2,2,0],[0,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,2,2,0],[0,2,3,3],[2,3,2,1],[0,1,2,0]],[[1,2,2,0],[0,2,4,2],[2,3,2,1],[0,1,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,2,1],[0,1,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,2,0],[0,2,3,3],[2,3,2,1],[0,1,1,1]],[[1,2,2,0],[0,2,4,2],[2,3,2,1],[0,1,1,1]],[[1,2,3,0],[0,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,1,0],[2,0,1,2],[3,3,3,2],[1,2,2,1]],[[1,0,1,0],[2,0,1,2],[2,3,3,2],[2,2,2,1]],[[1,0,1,0],[2,0,1,2],[2,3,3,2],[1,3,2,1]],[[1,0,1,0],[2,0,1,2],[2,3,3,2],[1,2,3,1]],[[1,0,1,0],[2,0,1,2],[2,3,3,2],[1,2,2,2]],[[1,0,1,0],[2,0,3,0],[3,3,3,2],[1,2,2,1]],[[1,0,1,0],[2,0,3,0],[2,3,3,2],[2,2,2,1]],[[1,0,1,0],[2,0,3,0],[2,3,3,2],[1,3,2,1]],[[1,0,1,0],[2,0,3,0],[2,3,3,2],[1,2,3,1]],[[1,0,1,0],[2,0,3,0],[2,3,3,2],[1,2,2,2]],[[1,0,1,0],[2,0,3,1],[3,3,3,1],[1,2,2,1]],[[1,0,1,0],[2,0,3,1],[2,3,3,1],[2,2,2,1]],[[1,0,1,0],[2,0,3,1],[2,3,3,1],[1,3,2,1]],[[1,0,1,0],[2,0,3,1],[2,3,3,1],[1,2,3,1]],[[1,0,1,0],[2,0,3,1],[2,3,3,1],[1,2,2,2]],[[1,0,1,0],[2,0,3,1],[3,3,3,2],[1,2,2,0]],[[1,0,1,0],[2,0,3,1],[2,3,3,2],[2,2,2,0]],[[1,0,1,0],[2,0,3,1],[2,3,3,2],[1,3,2,0]],[[1,0,1,0],[2,0,3,1],[2,3,3,2],[1,2,3,0]],[[1,3,2,0],[0,2,3,2],[2,3,2,1],[0,1,1,1]],[[2,2,2,0],[0,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,1,0],[2,1,0,2],[3,3,3,2],[1,2,2,1]],[[1,0,1,0],[2,1,0,2],[2,3,3,2],[2,2,2,1]],[[1,0,1,0],[2,1,0,2],[2,3,3,2],[1,3,2,1]],[[1,0,1,0],[2,1,0,2],[2,3,3,2],[1,2,3,1]],[[1,0,1,0],[2,1,0,2],[2,3,3,2],[1,2,2,2]],[[1,2,2,0],[0,2,4,2],[2,3,2,0],[1,2,0,1]],[[1,2,3,0],[0,2,3,2],[2,3,2,0],[1,2,0,1]],[[1,3,2,0],[0,2,3,2],[2,3,2,0],[1,2,0,1]],[[2,2,2,0],[0,2,3,2],[2,3,2,0],[1,2,0,1]],[[1,2,2,0],[0,2,3,3],[2,3,2,0],[1,1,1,1]],[[1,2,2,0],[0,2,4,2],[2,3,2,0],[1,1,1,1]],[[1,2,3,0],[0,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,3,2,0],[0,2,3,2],[2,3,2,0],[1,1,1,1]],[[2,2,2,0],[0,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,2,2,0],[0,2,3,3],[2,3,2,0],[1,0,2,1]],[[1,2,2,0],[0,2,4,2],[2,3,2,0],[1,0,2,1]],[[1,2,3,0],[0,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,3,2,0],[0,2,3,2],[2,3,2,0],[1,0,2,1]],[[2,2,2,0],[0,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,1,0],[2,2,0,1],[3,3,3,2],[1,2,2,1]],[[1,0,1,0],[2,2,0,1],[2,3,3,2],[2,2,2,1]],[[1,0,1,0],[2,2,0,1],[2,3,3,2],[1,3,2,1]],[[1,0,1,0],[2,2,0,1],[2,3,3,2],[1,2,3,1]],[[1,0,1,0],[2,2,0,1],[2,3,3,2],[1,2,2,2]],[[1,0,1,0],[2,2,0,2],[3,3,2,2],[1,2,2,1]],[[1,0,1,0],[2,2,0,2],[2,3,2,2],[2,2,2,1]],[[1,0,1,0],[2,2,0,2],[2,3,2,2],[1,3,2,1]],[[1,0,1,0],[2,2,0,2],[2,3,2,2],[1,2,3,1]],[[1,0,1,0],[2,2,0,2],[2,3,2,2],[1,2,2,2]],[[1,0,1,0],[2,2,0,2],[3,3,3,1],[1,2,2,1]],[[1,0,1,0],[2,2,0,2],[2,3,3,1],[2,2,2,1]],[[1,0,1,0],[2,2,0,2],[2,3,3,1],[1,3,2,1]],[[1,0,1,0],[2,2,0,2],[2,3,3,1],[1,2,3,1]],[[1,0,1,0],[2,2,0,2],[2,3,3,1],[1,2,2,2]],[[1,0,1,0],[2,2,0,2],[3,3,3,2],[1,2,2,0]],[[1,0,1,0],[2,2,0,2],[2,3,3,2],[2,2,2,0]],[[1,0,1,0],[2,2,0,2],[2,3,3,2],[1,3,2,0]],[[1,0,1,0],[2,2,0,2],[2,3,3,2],[1,2,3,0]],[[1,0,1,0],[2,2,1,0],[3,3,3,2],[1,2,2,1]],[[1,0,1,0],[2,2,1,0],[2,3,3,2],[2,2,2,1]],[[1,0,1,0],[2,2,1,0],[2,3,3,2],[1,3,2,1]],[[1,0,1,0],[2,2,1,0],[2,3,3,2],[1,2,3,1]],[[1,0,1,0],[2,2,1,0],[2,3,3,2],[1,2,2,2]],[[1,0,1,0],[2,2,1,1],[3,3,3,1],[1,2,2,1]],[[1,0,1,0],[2,2,1,1],[2,3,3,1],[2,2,2,1]],[[1,0,1,0],[2,2,1,1],[2,3,3,1],[1,3,2,1]],[[1,0,1,0],[2,2,1,1],[2,3,3,1],[1,2,3,1]],[[1,0,1,0],[2,2,1,1],[2,3,3,1],[1,2,2,2]],[[1,0,1,0],[2,2,1,1],[3,3,3,2],[1,2,2,0]],[[1,0,1,0],[2,2,1,1],[2,3,3,2],[2,2,2,0]],[[1,0,1,0],[2,2,1,1],[2,3,3,2],[1,3,2,0]],[[1,0,1,0],[2,2,1,1],[2,3,3,2],[1,2,3,0]],[[1,0,1,0],[2,2,1,2],[3,3,1,2],[1,2,2,1]],[[1,0,1,0],[2,2,1,2],[2,3,1,2],[2,2,2,1]],[[1,0,1,0],[2,2,1,2],[2,3,1,2],[1,3,2,1]],[[1,0,1,0],[2,2,1,2],[2,3,1,2],[1,2,3,1]],[[1,0,1,0],[2,2,1,2],[2,3,1,2],[1,2,2,2]],[[1,0,1,0],[2,2,1,2],[3,3,2,1],[1,2,2,1]],[[1,0,1,0],[2,2,1,2],[2,3,2,1],[2,2,2,1]],[[1,0,1,0],[2,2,1,2],[2,3,2,1],[1,3,2,1]],[[1,0,1,0],[2,2,1,2],[2,3,2,1],[1,2,3,1]],[[1,0,1,0],[2,2,1,2],[2,3,2,1],[1,2,2,2]],[[1,0,1,0],[2,2,1,2],[3,3,2,2],[1,2,2,0]],[[1,0,1,0],[2,2,1,2],[2,3,2,2],[2,2,2,0]],[[1,0,1,0],[2,2,1,2],[2,3,2,2],[1,3,2,0]],[[1,0,1,0],[2,2,1,2],[2,3,2,2],[1,2,3,0]],[[1,0,1,0],[2,2,1,2],[3,3,3,1],[1,2,1,1]],[[1,0,1,0],[2,2,1,2],[2,3,3,1],[2,2,1,1]],[[1,0,1,0],[2,2,1,2],[2,3,3,1],[1,3,1,1]],[[1,0,1,0],[2,2,1,2],[3,3,3,2],[1,2,0,1]],[[1,0,1,0],[2,2,1,2],[2,3,3,2],[2,2,0,1]],[[1,0,1,0],[2,2,1,2],[2,3,3,2],[1,3,0,1]],[[1,0,1,0],[2,2,1,2],[3,3,3,2],[1,2,1,0]],[[1,0,1,0],[2,2,1,2],[2,3,3,2],[2,2,1,0]],[[1,0,1,0],[2,2,1,2],[2,3,3,2],[1,3,1,0]],[[1,0,1,0],[2,2,2,0],[3,3,2,2],[1,2,2,1]],[[1,0,1,0],[2,2,2,0],[2,3,2,2],[2,2,2,1]],[[1,0,1,0],[2,2,2,0],[2,3,2,2],[1,3,2,1]],[[1,0,1,0],[2,2,2,0],[2,3,2,2],[1,2,3,1]],[[1,0,1,0],[2,2,2,0],[2,3,2,2],[1,2,2,2]],[[1,0,1,0],[2,2,2,0],[3,3,3,2],[1,2,1,1]],[[1,0,1,0],[2,2,2,0],[2,3,3,2],[2,2,1,1]],[[1,0,1,0],[2,2,2,0],[2,3,3,2],[1,3,1,1]],[[1,0,1,0],[2,2,2,1],[3,3,1,2],[1,2,2,1]],[[1,0,1,0],[2,2,2,1],[2,3,1,2],[2,2,2,1]],[[1,0,1,0],[2,2,2,1],[2,3,1,2],[1,3,2,1]],[[1,0,1,0],[2,2,2,1],[2,3,1,2],[1,2,3,1]],[[1,0,1,0],[2,2,2,1],[2,3,1,2],[1,2,2,2]],[[1,0,1,0],[2,2,2,1],[3,3,2,1],[1,2,2,1]],[[1,0,1,0],[2,2,2,1],[2,3,2,1],[2,2,2,1]],[[1,0,1,0],[2,2,2,1],[2,3,2,1],[1,3,2,1]],[[1,0,1,0],[2,2,2,1],[2,3,2,1],[1,2,3,1]],[[1,0,1,0],[2,2,2,1],[2,3,2,1],[1,2,2,2]],[[1,0,1,0],[2,2,2,1],[3,3,2,2],[1,2,2,0]],[[1,0,1,0],[2,2,2,1],[2,3,2,2],[2,2,2,0]],[[1,0,1,0],[2,2,2,1],[2,3,2,2],[1,3,2,0]],[[1,0,1,0],[2,2,2,1],[2,3,2,2],[1,2,3,0]],[[1,0,1,0],[2,2,2,1],[3,3,3,0],[1,2,2,1]],[[1,0,1,0],[2,2,2,1],[2,3,3,0],[2,2,2,1]],[[1,0,1,0],[2,2,2,1],[2,3,3,0],[1,3,2,1]],[[1,0,1,0],[2,2,2,1],[2,3,3,0],[1,2,3,1]],[[1,0,1,0],[2,2,2,1],[3,3,3,1],[1,2,1,1]],[[1,0,1,0],[2,2,2,1],[2,3,3,1],[2,2,1,1]],[[1,0,1,0],[2,2,2,1],[2,3,3,1],[1,3,1,1]],[[1,0,1,0],[2,2,2,1],[3,3,3,2],[1,2,0,1]],[[1,0,1,0],[2,2,2,1],[2,3,3,2],[2,2,0,1]],[[1,0,1,0],[2,2,2,1],[2,3,3,2],[1,3,0,1]],[[1,0,1,0],[2,2,2,1],[3,3,3,2],[1,2,1,0]],[[1,0,1,0],[2,2,2,1],[2,3,3,2],[2,2,1,0]],[[1,0,1,0],[2,2,2,1],[2,3,3,2],[1,3,1,0]],[[1,0,1,0],[2,2,2,2],[3,3,2,0],[1,2,2,1]],[[1,0,1,0],[2,2,2,2],[2,3,2,0],[2,2,2,1]],[[1,0,1,0],[2,2,2,2],[2,3,2,0],[1,3,2,1]],[[1,0,1,0],[2,2,2,2],[2,3,2,0],[1,2,3,1]],[[1,0,1,0],[2,2,2,2],[3,3,2,1],[1,2,2,0]],[[1,0,1,0],[2,2,2,2],[2,3,2,1],[2,2,2,0]],[[1,0,1,0],[2,2,2,2],[2,3,2,1],[1,3,2,0]],[[1,2,2,0],[0,2,3,3],[2,3,2,0],[0,2,1,1]],[[1,2,2,0],[0,2,4,2],[2,3,2,0],[0,2,1,1]],[[1,2,3,0],[0,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,3,2,0],[0,2,3,2],[2,3,2,0],[0,2,1,1]],[[2,2,2,0],[0,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,1,0],[2,2,2,2],[3,3,3,0],[1,2,1,1]],[[1,0,1,0],[2,2,2,2],[2,3,3,0],[2,2,1,1]],[[1,0,1,0],[2,2,2,2],[2,3,3,0],[1,3,1,1]],[[1,0,1,0],[2,2,2,2],[3,3,3,1],[1,2,1,0]],[[1,0,1,0],[2,2,2,2],[2,3,3,1],[2,2,1,0]],[[1,0,1,0],[2,2,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,2,3,3],[2,3,2,0],[0,1,2,1]],[[1,2,2,0],[0,2,4,2],[2,3,2,0],[0,1,2,1]],[[1,2,3,0],[0,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,3,2,0],[0,2,3,2],[2,3,2,0],[0,1,2,1]],[[2,2,2,0],[0,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,1,0],[2,2,3,0],[3,3,2,1],[1,2,2,1]],[[1,0,1,0],[2,2,3,0],[2,3,2,1],[2,2,2,1]],[[1,0,1,0],[2,2,3,0],[2,3,2,1],[1,3,2,1]],[[1,0,1,0],[2,2,3,0],[2,3,2,1],[1,2,3,1]],[[1,0,1,0],[2,2,3,0],[3,3,2,2],[1,2,2,0]],[[1,0,1,0],[2,2,3,0],[2,3,2,2],[2,2,2,0]],[[1,0,1,0],[2,2,3,0],[2,3,2,2],[1,3,2,0]],[[1,0,1,0],[2,2,3,0],[3,3,3,0],[1,2,2,1]],[[1,0,1,0],[2,2,3,0],[2,3,3,0],[2,2,2,1]],[[1,0,1,0],[2,2,3,0],[2,3,3,0],[1,3,2,1]],[[1,0,1,0],[2,2,3,0],[2,3,3,0],[1,2,3,1]],[[1,0,1,0],[2,2,3,0],[3,3,3,1],[1,2,1,1]],[[1,0,1,0],[2,2,3,0],[2,3,3,1],[2,2,1,1]],[[1,0,1,0],[2,2,3,0],[2,3,3,1],[1,3,1,1]],[[1,0,1,0],[2,2,3,0],[3,3,3,2],[1,2,1,0]],[[1,0,1,0],[2,2,3,0],[2,3,3,2],[2,2,1,0]],[[1,0,1,0],[2,2,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,2,3,3],[2,3,1,2],[1,2,0,0]],[[1,2,2,0],[0,2,4,2],[2,3,1,2],[1,2,0,0]],[[1,2,3,0],[0,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,3,2,0],[0,2,3,2],[2,3,1,2],[1,2,0,0]],[[2,2,2,0],[0,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,2,2,0],[0,2,3,2],[2,3,1,3],[1,1,1,0]],[[1,2,2,0],[0,2,3,3],[2,3,1,2],[1,1,1,0]],[[1,2,2,0],[0,2,4,2],[2,3,1,2],[1,1,1,0]],[[1,2,3,0],[0,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,3,2,0],[0,2,3,2],[2,3,1,2],[1,1,1,0]],[[2,2,2,0],[0,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,2,0],[0,2,3,2],[2,3,1,2],[1,1,0,2]],[[1,2,2,0],[0,2,3,2],[2,3,1,3],[1,1,0,1]],[[1,2,2,0],[0,2,3,3],[2,3,1,2],[1,1,0,1]],[[1,2,2,0],[0,2,4,2],[2,3,1,2],[1,1,0,1]],[[1,2,3,0],[0,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,3,2,0],[0,2,3,2],[2,3,1,2],[1,1,0,1]],[[2,2,2,0],[0,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,2,2,0],[0,2,3,2],[2,3,1,3],[1,0,2,0]],[[1,2,2,0],[0,2,3,3],[2,3,1,2],[1,0,2,0]],[[1,2,2,0],[0,2,4,2],[2,3,1,2],[1,0,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,1,2],[1,0,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,2,2,0],[0,2,3,2],[2,3,1,2],[1,0,1,2]],[[1,2,2,0],[0,2,3,2],[2,3,1,3],[1,0,1,1]],[[1,2,2,0],[0,2,3,3],[2,3,1,2],[1,0,1,1]],[[1,2,2,0],[0,2,4,2],[2,3,1,2],[1,0,1,1]],[[1,2,3,0],[0,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,3,2,0],[0,2,3,2],[2,3,1,2],[1,0,1,1]],[[2,2,2,0],[0,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,2,2,0],[0,2,3,2],[2,3,1,3],[0,2,1,0]],[[1,2,2,0],[0,2,3,3],[2,3,1,2],[0,2,1,0]],[[1,2,2,0],[0,2,4,2],[2,3,1,2],[0,2,1,0]],[[1,2,3,0],[0,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,3,2,0],[0,2,3,2],[2,3,1,2],[0,2,1,0]],[[2,2,2,0],[0,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,2,2,0],[0,2,3,2],[2,3,1,2],[0,2,0,2]],[[1,2,2,0],[0,2,3,2],[2,3,1,3],[0,2,0,1]],[[1,2,2,0],[0,2,3,3],[2,3,1,2],[0,2,0,1]],[[1,2,2,0],[0,2,4,2],[2,3,1,2],[0,2,0,1]],[[1,2,3,0],[0,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,3,2,0],[0,2,3,2],[2,3,1,2],[0,2,0,1]],[[2,2,2,0],[0,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,1,0],[2,3,0,0],[3,3,3,2],[1,2,2,1]],[[1,0,1,0],[2,3,0,0],[2,3,3,2],[2,2,2,1]],[[1,0,1,0],[2,3,0,0],[2,3,3,2],[1,3,2,1]],[[1,0,1,0],[2,3,0,0],[2,3,3,2],[1,2,3,1]],[[1,0,1,0],[2,3,0,0],[2,3,3,2],[1,2,2,2]],[[1,0,1,0],[2,3,0,1],[1,4,3,2],[1,2,2,1]],[[1,0,1,0],[2,3,0,1],[1,3,3,2],[2,2,2,1]],[[1,0,1,0],[2,3,0,1],[1,3,3,2],[1,3,2,1]],[[1,0,1,0],[2,3,0,1],[1,3,3,2],[1,2,3,1]],[[1,0,1,0],[2,3,0,1],[1,3,3,2],[1,2,2,2]],[[1,0,1,0],[3,3,0,1],[2,2,3,2],[1,2,2,1]],[[1,0,1,0],[2,3,0,1],[3,2,3,2],[1,2,2,1]],[[1,0,1,0],[2,3,0,1],[2,2,3,2],[2,2,2,1]],[[1,0,1,0],[2,3,0,1],[2,2,3,2],[1,3,2,1]],[[1,0,1,0],[2,3,0,1],[2,2,3,2],[1,2,3,1]],[[1,0,1,0],[2,3,0,1],[2,2,3,2],[1,2,2,2]],[[1,0,1,0],[2,3,0,1],[3,3,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,0,1],[2,3,3,1],[2,2,2,1]],[[1,0,1,0],[2,3,0,1],[2,3,3,1],[1,3,2,1]],[[1,0,1,0],[2,3,0,1],[2,3,3,1],[1,2,3,1]],[[1,0,1,0],[3,3,0,1],[2,3,3,2],[0,2,2,1]],[[1,0,1,0],[2,3,0,1],[3,3,3,2],[0,2,2,1]],[[1,0,1,0],[2,3,0,1],[2,4,3,2],[0,2,2,1]],[[1,0,1,0],[2,3,0,1],[2,3,3,2],[0,3,2,1]],[[1,0,1,0],[2,3,0,1],[2,3,3,2],[0,2,3,1]],[[1,0,1,0],[2,3,0,1],[2,3,3,2],[0,2,2,2]],[[1,0,1,0],[3,3,0,1],[2,3,3,2],[1,1,2,1]],[[1,0,1,0],[2,3,0,1],[3,3,3,2],[1,1,2,1]],[[1,0,1,0],[2,3,0,1],[2,4,3,2],[1,1,2,1]],[[1,0,1,0],[2,3,0,1],[2,3,3,2],[2,1,2,1]],[[1,0,1,0],[2,3,0,1],[3,3,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,0,1],[2,3,3,2],[2,2,2,0]],[[1,0,1,0],[2,3,0,1],[2,3,3,2],[1,3,2,0]],[[1,0,1,0],[2,3,0,2],[1,2,3,3],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[1,2,3,2],[2,2,2,1]],[[1,0,1,0],[2,3,0,2],[1,2,3,2],[1,3,2,1]],[[1,0,1,0],[2,3,0,2],[1,2,3,2],[1,2,3,1]],[[1,0,1,0],[2,3,0,2],[1,2,3,2],[1,2,2,2]],[[1,0,1,0],[2,3,0,2],[1,4,2,2],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[1,3,2,3],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[1,3,2,2],[2,2,2,1]],[[1,0,1,0],[2,3,0,2],[1,3,2,2],[1,3,2,1]],[[1,0,1,0],[2,3,0,2],[1,3,2,2],[1,2,3,1]],[[1,0,1,0],[2,3,0,2],[1,3,2,2],[1,2,2,2]],[[1,0,1,0],[2,3,0,2],[1,4,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[1,3,3,1],[2,2,2,1]],[[1,0,1,0],[2,3,0,2],[1,3,3,1],[1,3,2,1]],[[1,0,1,0],[2,3,0,2],[1,3,3,1],[1,2,3,1]],[[1,0,1,0],[2,3,0,2],[1,3,3,1],[1,2,2,2]],[[1,0,1,0],[2,3,0,2],[1,3,3,3],[1,1,2,1]],[[1,0,1,0],[2,3,0,2],[1,3,3,2],[1,1,3,1]],[[1,0,1,0],[2,3,0,2],[1,3,3,2],[1,1,2,2]],[[1,0,1,0],[2,3,0,2],[1,4,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,0,2],[1,3,3,2],[2,2,2,0]],[[1,0,1,0],[2,3,0,2],[1,3,3,2],[1,3,2,0]],[[1,0,1,0],[2,3,0,2],[1,3,3,2],[1,2,3,0]],[[1,0,1,0],[3,3,0,2],[2,1,3,2],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[3,1,3,2],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,1,3,3],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,1,3,2],[2,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,1,3,2],[1,3,2,1]],[[1,0,1,0],[2,3,0,2],[2,1,3,2],[1,2,3,1]],[[1,0,1,0],[2,3,0,2],[2,1,3,2],[1,2,2,2]],[[1,0,1,0],[3,3,0,2],[2,2,2,2],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[3,2,2,2],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,2,2,3],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,2,2,2],[2,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,2,2,2],[1,3,2,1]],[[1,0,1,0],[2,3,0,2],[2,2,2,2],[1,2,3,1]],[[1,0,1,0],[2,3,0,2],[2,2,2,2],[1,2,2,2]],[[1,0,1,0],[3,3,0,2],[2,2,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[3,2,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,2,3,1],[2,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,2,3,1],[1,3,2,1]],[[1,0,1,0],[2,3,0,2],[2,2,3,1],[1,2,3,1]],[[1,0,1,0],[2,3,0,2],[2,2,3,1],[1,2,2,2]],[[1,0,1,0],[2,3,0,2],[2,2,3,3],[0,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,2,3,2],[0,3,2,1]],[[1,0,1,0],[2,3,0,2],[2,2,3,2],[0,2,3,1]],[[1,0,1,0],[2,3,0,2],[2,2,3,2],[0,2,2,2]],[[1,0,1,0],[3,3,0,2],[2,2,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,0,2],[3,2,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,0,2],[2,2,3,2],[2,2,2,0]],[[1,0,1,0],[2,3,0,2],[2,2,3,2],[1,3,2,0]],[[1,0,1,0],[2,3,0,2],[2,2,3,2],[1,2,3,0]],[[1,0,1,0],[3,3,0,2],[2,3,2,2],[0,2,2,1]],[[1,0,1,0],[2,3,0,2],[3,3,2,2],[0,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,4,2,2],[0,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,3,2,3],[0,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,3,2,2],[0,3,2,1]],[[1,0,1,0],[2,3,0,2],[2,3,2,2],[0,2,3,1]],[[1,0,1,0],[2,3,0,2],[2,3,2,2],[0,2,2,2]],[[1,0,1,0],[3,3,0,2],[2,3,2,2],[1,1,2,1]],[[1,0,1,0],[2,3,0,2],[3,3,2,2],[1,1,2,1]],[[1,0,1,0],[2,3,0,2],[2,4,2,2],[1,1,2,1]],[[1,0,1,0],[2,3,0,2],[2,3,2,2],[2,1,2,1]],[[1,0,1,0],[3,3,0,2],[2,3,3,1],[0,2,2,1]],[[1,0,1,0],[2,3,0,2],[3,3,3,1],[0,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,4,3,1],[0,2,2,1]],[[1,0,1,0],[2,3,0,2],[2,3,3,1],[0,3,2,1]],[[1,0,1,0],[2,3,0,2],[2,3,3,1],[0,2,3,1]],[[1,0,1,0],[2,3,0,2],[2,3,3,1],[0,2,2,2]],[[1,0,1,0],[3,3,0,2],[2,3,3,1],[1,1,2,1]],[[1,0,1,0],[2,3,0,2],[3,3,3,1],[1,1,2,1]],[[1,0,1,0],[2,3,0,2],[2,4,3,1],[1,1,2,1]],[[1,0,1,0],[2,3,0,2],[2,3,3,1],[2,1,2,1]],[[1,0,1,0],[2,3,0,2],[2,3,3,3],[0,1,2,1]],[[1,0,1,0],[2,3,0,2],[2,3,3,2],[0,1,3,1]],[[1,0,1,0],[2,3,0,2],[2,3,3,2],[0,1,2,2]],[[1,0,1,0],[3,3,0,2],[2,3,3,2],[0,2,2,0]],[[1,0,1,0],[2,3,0,2],[3,3,3,2],[0,2,2,0]],[[1,0,1,0],[2,3,0,2],[2,4,3,2],[0,2,2,0]],[[1,0,1,0],[2,3,0,2],[2,3,3,2],[0,3,2,0]],[[1,0,1,0],[2,3,0,2],[2,3,3,2],[0,2,3,0]],[[1,0,1,0],[2,3,0,2],[2,3,3,3],[1,0,2,1]],[[1,0,1,0],[2,3,0,2],[2,3,3,2],[1,0,3,1]],[[1,0,1,0],[2,3,0,2],[2,3,3,2],[1,0,2,2]],[[1,0,1,0],[3,3,0,2],[2,3,3,2],[1,1,2,0]],[[1,0,1,0],[2,3,0,2],[3,3,3,2],[1,1,2,0]],[[1,0,1,0],[2,3,0,2],[2,4,3,2],[1,1,2,0]],[[1,0,1,0],[2,3,0,2],[2,3,3,2],[2,1,2,0]],[[1,0,1,0],[2,3,1,0],[1,4,3,2],[1,2,2,1]],[[1,0,1,0],[2,3,1,0],[1,3,3,2],[2,2,2,1]],[[1,0,1,0],[2,3,1,0],[1,3,3,2],[1,3,2,1]],[[1,0,1,0],[2,3,1,0],[1,3,3,2],[1,2,3,1]],[[1,0,1,0],[2,3,1,0],[1,3,3,2],[1,2,2,2]],[[1,0,1,0],[3,3,1,0],[2,2,3,2],[1,2,2,1]],[[1,0,1,0],[2,3,1,0],[3,2,3,2],[1,2,2,1]],[[1,0,1,0],[2,3,1,0],[2,2,3,2],[2,2,2,1]],[[1,0,1,0],[2,3,1,0],[2,2,3,2],[1,3,2,1]],[[1,0,1,0],[2,3,1,0],[2,2,3,2],[1,2,3,1]],[[1,0,1,0],[2,3,1,0],[2,2,3,2],[1,2,2,2]],[[1,0,1,0],[3,3,1,0],[2,3,3,2],[0,2,2,1]],[[1,0,1,0],[2,3,1,0],[3,3,3,2],[0,2,2,1]],[[1,0,1,0],[2,3,1,0],[2,4,3,2],[0,2,2,1]],[[1,0,1,0],[2,3,1,0],[2,3,3,2],[0,3,2,1]],[[1,0,1,0],[2,3,1,0],[2,3,3,2],[0,2,3,1]],[[1,0,1,0],[2,3,1,0],[2,3,3,2],[0,2,2,2]],[[1,0,1,0],[3,3,1,0],[2,3,3,2],[1,1,2,1]],[[1,0,1,0],[2,3,1,0],[3,3,3,2],[1,1,2,1]],[[1,0,1,0],[2,3,1,0],[2,4,3,2],[1,1,2,1]],[[1,0,1,0],[2,3,1,0],[2,3,3,2],[2,1,2,1]],[[1,0,1,0],[2,3,1,1],[1,4,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,1],[1,3,3,1],[2,2,2,1]],[[1,0,1,0],[2,3,1,1],[1,3,3,1],[1,3,2,1]],[[1,0,1,0],[2,3,1,1],[1,3,3,1],[1,2,3,1]],[[1,0,1,0],[2,3,1,1],[1,3,3,1],[1,2,2,2]],[[1,0,1,0],[2,3,1,1],[1,4,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,1],[1,3,3,2],[2,2,2,0]],[[1,0,1,0],[2,3,1,1],[1,3,3,2],[1,3,2,0]],[[1,0,1,0],[2,3,1,1],[1,3,3,2],[1,2,3,0]],[[1,0,1,0],[3,3,1,1],[2,2,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,1],[3,2,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,1],[2,2,3,1],[2,2,2,1]],[[1,0,1,0],[2,3,1,1],[2,2,3,1],[1,3,2,1]],[[1,0,1,0],[2,3,1,1],[2,2,3,1],[1,2,3,1]],[[1,0,1,0],[2,3,1,1],[2,2,3,1],[1,2,2,2]],[[1,0,1,0],[3,3,1,1],[2,2,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,1],[3,2,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,1],[2,2,3,2],[2,2,2,0]],[[1,0,1,0],[2,3,1,1],[2,2,3,2],[1,3,2,0]],[[1,0,1,0],[2,3,1,1],[2,2,3,2],[1,2,3,0]],[[1,0,1,0],[3,3,1,1],[2,3,3,1],[0,2,2,1]],[[1,0,1,0],[2,3,1,1],[3,3,3,1],[0,2,2,1]],[[1,0,1,0],[2,3,1,1],[2,4,3,1],[0,2,2,1]],[[1,0,1,0],[2,3,1,1],[2,3,3,1],[0,3,2,1]],[[1,0,1,0],[2,3,1,1],[2,3,3,1],[0,2,3,1]],[[1,0,1,0],[2,3,1,1],[2,3,3,1],[0,2,2,2]],[[1,0,1,0],[3,3,1,1],[2,3,3,1],[1,1,2,1]],[[1,0,1,0],[2,3,1,1],[3,3,3,1],[1,1,2,1]],[[1,0,1,0],[2,3,1,1],[2,4,3,1],[1,1,2,1]],[[1,0,1,0],[2,3,1,1],[2,3,3,1],[2,1,2,1]],[[1,0,1,0],[3,3,1,1],[2,3,3,2],[0,2,2,0]],[[1,0,1,0],[2,3,1,1],[3,3,3,2],[0,2,2,0]],[[1,0,1,0],[2,3,1,1],[2,4,3,2],[0,2,2,0]],[[1,0,1,0],[2,3,1,1],[2,3,3,2],[0,3,2,0]],[[1,0,1,0],[2,3,1,1],[2,3,3,2],[0,2,3,0]],[[1,0,1,0],[3,3,1,1],[2,3,3,2],[1,1,2,0]],[[1,0,1,0],[2,3,1,1],[3,3,3,2],[1,1,2,0]],[[1,0,1,0],[2,3,1,1],[2,4,3,2],[1,1,2,0]],[[1,0,1,0],[2,3,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,0],[0,2,3,2],[2,3,1,3],[0,1,2,0]],[[1,2,2,0],[0,2,3,3],[2,3,1,2],[0,1,2,0]],[[1,2,2,0],[0,2,4,2],[2,3,1,2],[0,1,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,1,2],[0,1,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,2,0],[0,2,3,2],[2,3,1,2],[0,1,1,2]],[[1,0,1,0],[2,3,1,2],[1,2,2,3],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[1,2,2,2],[2,2,2,1]],[[1,0,1,0],[2,3,1,2],[1,2,2,2],[1,3,2,1]],[[1,0,1,0],[2,3,1,2],[1,2,2,2],[1,2,3,1]],[[1,0,1,0],[2,3,1,2],[1,2,2,2],[1,2,2,2]],[[1,0,1,0],[2,3,1,2],[1,2,4,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[1,2,3,1],[2,2,2,1]],[[1,0,1,0],[2,3,1,2],[1,2,3,1],[1,3,2,1]],[[1,0,1,0],[2,3,1,2],[1,2,3,1],[1,2,3,1]],[[1,0,1,0],[2,3,1,2],[1,2,3,1],[1,2,2,2]],[[1,0,1,0],[2,3,1,2],[1,2,4,2],[1,2,1,1]],[[1,0,1,0],[2,3,1,2],[1,2,3,3],[1,2,1,1]],[[1,0,1,0],[2,3,1,2],[1,2,3,2],[1,2,1,2]],[[1,0,1,0],[2,3,1,2],[1,2,4,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,2],[1,2,3,3],[1,2,2,0]],[[1,0,1,0],[2,3,1,2],[1,2,3,2],[2,2,2,0]],[[1,0,1,0],[2,3,1,2],[1,2,3,2],[1,3,2,0]],[[1,0,1,0],[2,3,1,2],[1,2,3,2],[1,2,3,0]],[[1,0,1,0],[2,3,1,2],[1,4,1,2],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[1,3,1,3],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[1,3,1,2],[2,2,2,1]],[[1,0,1,0],[2,3,1,2],[1,3,1,2],[1,3,2,1]],[[1,0,1,0],[2,3,1,2],[1,3,1,2],[1,2,3,1]],[[1,0,1,0],[2,3,1,2],[1,3,1,2],[1,2,2,2]],[[1,0,1,0],[2,3,1,2],[1,4,2,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[1,3,2,1],[2,2,2,1]],[[1,0,1,0],[2,3,1,2],[1,3,2,1],[1,3,2,1]],[[1,0,1,0],[2,3,1,2],[1,3,2,1],[1,2,3,1]],[[1,0,1,0],[2,3,1,2],[1,3,2,1],[1,2,2,2]],[[1,0,1,0],[2,3,1,2],[1,3,2,3],[1,1,2,1]],[[1,0,1,0],[2,3,1,2],[1,3,2,2],[1,1,3,1]],[[1,0,1,0],[2,3,1,2],[1,3,2,2],[1,1,2,2]],[[1,0,1,0],[2,3,1,2],[1,4,2,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,2],[1,3,2,2],[2,2,2,0]],[[1,0,1,0],[2,3,1,2],[1,3,2,2],[1,3,2,0]],[[1,0,1,0],[2,3,1,2],[1,3,2,2],[1,2,3,0]],[[1,0,1,0],[2,3,1,2],[1,4,3,1],[1,1,2,1]],[[1,0,1,0],[2,3,1,2],[1,3,4,1],[1,1,2,1]],[[1,0,1,0],[2,3,1,2],[1,3,3,1],[1,1,3,1]],[[1,0,1,0],[2,3,1,2],[1,3,3,1],[1,1,2,2]],[[1,0,1,0],[2,3,1,2],[1,4,3,1],[1,2,1,1]],[[1,0,1,0],[2,3,1,2],[1,3,4,1],[1,2,1,1]],[[1,0,1,0],[2,3,1,2],[1,3,3,1],[2,2,1,1]],[[1,0,1,0],[2,3,1,2],[1,3,3,1],[1,3,1,1]],[[1,0,1,0],[2,3,1,2],[1,4,3,2],[1,1,1,1]],[[1,0,1,0],[2,3,1,2],[1,3,4,2],[1,1,1,1]],[[1,0,1,0],[2,3,1,2],[1,3,3,3],[1,1,1,1]],[[1,0,1,0],[2,3,1,2],[1,3,3,2],[1,1,1,2]],[[1,0,1,0],[2,3,1,2],[1,4,3,2],[1,1,2,0]],[[1,0,1,0],[2,3,1,2],[1,3,4,2],[1,1,2,0]],[[1,0,1,0],[2,3,1,2],[1,3,3,3],[1,1,2,0]],[[1,0,1,0],[2,3,1,2],[1,3,3,2],[1,1,3,0]],[[1,0,1,0],[2,3,1,2],[1,4,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,1,2],[1,3,4,2],[1,2,0,1]],[[1,0,1,0],[2,3,1,2],[1,3,3,3],[1,2,0,1]],[[1,0,1,0],[2,3,1,2],[1,3,3,2],[2,2,0,1]],[[1,0,1,0],[2,3,1,2],[1,3,3,2],[1,3,0,1]],[[1,0,1,0],[2,3,1,2],[1,3,3,2],[1,2,0,2]],[[1,0,1,0],[2,3,1,2],[1,4,3,2],[1,2,1,0]],[[1,0,1,0],[2,3,1,2],[1,3,4,2],[1,2,1,0]],[[1,0,1,0],[2,3,1,2],[1,3,3,3],[1,2,1,0]],[[1,0,1,0],[2,3,1,2],[1,3,3,2],[2,2,1,0]],[[1,0,1,0],[2,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,2,3,2],[2,3,1,3],[0,1,1,1]],[[1,2,2,0],[0,2,3,3],[2,3,1,2],[0,1,1,1]],[[1,2,2,0],[0,2,4,2],[2,3,1,2],[0,1,1,1]],[[1,2,3,0],[0,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,3,2,0],[0,2,3,2],[2,3,1,2],[0,1,1,1]],[[2,2,2,0],[0,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,1,0],[3,3,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[3,1,2,2],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,1,2,3],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,1,2,2],[2,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,1,2,2],[1,3,2,1]],[[1,0,1,0],[2,3,1,2],[2,1,2,2],[1,2,3,1]],[[1,0,1,0],[2,3,1,2],[2,1,2,2],[1,2,2,2]],[[1,0,1,0],[3,3,1,2],[2,1,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[3,1,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,1,4,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,1,3,1],[2,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,1,3,1],[1,3,2,1]],[[1,0,1,0],[2,3,1,2],[2,1,3,1],[1,2,3,1]],[[1,0,1,0],[2,3,1,2],[2,1,3,1],[1,2,2,2]],[[1,0,1,0],[2,3,1,2],[2,1,4,2],[1,2,1,1]],[[1,0,1,0],[2,3,1,2],[2,1,3,3],[1,2,1,1]],[[1,0,1,0],[2,3,1,2],[2,1,3,2],[1,2,1,2]],[[1,0,1,0],[3,3,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,2],[3,1,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,1,4,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,1,3,3],[1,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,1,3,2],[2,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,1,3,2],[1,3,2,0]],[[1,0,1,0],[2,3,1,2],[2,1,3,2],[1,2,3,0]],[[1,0,1,0],[3,3,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[3,2,1,2],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,2,1,3],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,2,1,2],[2,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,2,1,2],[1,3,2,1]],[[1,0,1,0],[2,3,1,2],[2,2,1,2],[1,2,3,1]],[[1,0,1,0],[2,3,1,2],[2,2,1,2],[1,2,2,2]],[[1,0,1,0],[3,3,1,2],[2,2,2,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[3,2,2,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,2,2,1],[2,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,2,2,1],[1,3,2,1]],[[1,0,1,0],[2,3,1,2],[2,2,2,1],[1,2,3,1]],[[1,0,1,0],[2,3,1,2],[2,2,2,1],[1,2,2,2]],[[1,0,1,0],[2,3,1,2],[2,2,2,3],[0,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,2,2,2],[0,3,2,1]],[[1,0,1,0],[2,3,1,2],[2,2,2,2],[0,2,3,1]],[[1,0,1,0],[2,3,1,2],[2,2,2,2],[0,2,2,2]],[[1,0,1,0],[3,3,1,2],[2,2,2,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,2],[3,2,2,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,2,2,2],[2,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,2,2,2],[1,3,2,0]],[[1,0,1,0],[2,3,1,2],[2,2,2,2],[1,2,3,0]],[[1,0,1,0],[2,3,1,2],[2,2,4,1],[0,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,2,3,1],[0,3,2,1]],[[1,0,1,0],[2,3,1,2],[2,2,3,1],[0,2,3,1]],[[1,0,1,0],[2,3,1,2],[2,2,3,1],[0,2,2,2]],[[1,0,1,0],[3,3,1,2],[2,2,3,1],[1,2,1,1]],[[1,0,1,0],[2,3,1,2],[3,2,3,1],[1,2,1,1]],[[1,0,1,0],[2,3,1,2],[2,2,3,1],[2,2,1,1]],[[1,0,1,0],[2,3,1,2],[2,2,3,1],[1,3,1,1]],[[1,0,1,0],[2,3,1,2],[2,2,4,2],[0,2,1,1]],[[1,0,1,0],[2,3,1,2],[2,2,3,3],[0,2,1,1]],[[1,0,1,0],[2,3,1,2],[2,2,3,2],[0,2,1,2]],[[1,0,1,0],[2,3,1,2],[2,2,4,2],[0,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,2,3,3],[0,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,2,3,2],[0,3,2,0]],[[1,0,1,0],[2,3,1,2],[2,2,3,2],[0,2,3,0]],[[1,0,1,0],[3,3,1,2],[2,2,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,1,2],[3,2,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,1,2],[2,2,3,2],[2,2,0,1]],[[1,0,1,0],[2,3,1,2],[2,2,3,2],[1,3,0,1]],[[1,0,1,0],[3,3,1,2],[2,2,3,2],[1,2,1,0]],[[1,0,1,0],[2,3,1,2],[3,2,3,2],[1,2,1,0]],[[1,0,1,0],[2,3,1,2],[2,2,3,2],[2,2,1,0]],[[1,0,1,0],[2,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,0,1,0],[3,3,1,2],[2,3,0,2],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[3,3,0,2],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,0,2],[2,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,0,2],[1,3,2,1]],[[1,0,1,0],[3,3,1,2],[2,3,1,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[3,3,1,1],[1,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,1,1],[2,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,1,1],[1,3,2,1]],[[1,0,1,0],[3,3,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,1,0],[2,3,1,2],[3,3,1,2],[0,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,4,1,2],[0,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,1,3],[0,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,1,2],[0,3,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,1,2],[0,2,3,1]],[[1,0,1,0],[2,3,1,2],[2,3,1,2],[0,2,2,2]],[[1,0,1,0],[3,3,1,2],[2,3,1,2],[1,1,2,1]],[[1,0,1,0],[2,3,1,2],[3,3,1,2],[1,1,2,1]],[[1,0,1,0],[2,3,1,2],[2,4,1,2],[1,1,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,1,2],[2,1,2,1]],[[1,0,1,0],[3,3,1,2],[2,3,1,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,2],[3,3,1,2],[1,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,1,2],[2,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,1,2],[1,3,2,0]],[[1,0,1,0],[3,3,1,2],[2,3,2,1],[0,2,2,1]],[[1,0,1,0],[2,3,1,2],[3,3,2,1],[0,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,4,2,1],[0,2,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,2,1],[0,3,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,2,1],[0,2,3,1]],[[1,0,1,0],[2,3,1,2],[2,3,2,1],[0,2,2,2]],[[1,0,1,0],[3,3,1,2],[2,3,2,1],[1,1,2,1]],[[1,0,1,0],[2,3,1,2],[3,3,2,1],[1,1,2,1]],[[1,0,1,0],[2,3,1,2],[2,4,2,1],[1,1,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,2,1],[2,1,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,2,3],[0,1,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,2,2],[0,1,3,1]],[[1,0,1,0],[2,3,1,2],[2,3,2,2],[0,1,2,2]],[[1,0,1,0],[3,3,1,2],[2,3,2,2],[0,2,2,0]],[[1,0,1,0],[2,3,1,2],[3,3,2,2],[0,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,4,2,2],[0,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,2,2],[0,3,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,2,2],[0,2,3,0]],[[1,0,1,0],[2,3,1,2],[2,3,2,3],[1,0,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,2,2],[1,0,3,1]],[[1,0,1,0],[2,3,1,2],[2,3,2,2],[1,0,2,2]],[[1,0,1,0],[3,3,1,2],[2,3,2,2],[1,1,2,0]],[[1,0,1,0],[2,3,1,2],[3,3,2,2],[1,1,2,0]],[[1,0,1,0],[2,3,1,2],[2,4,2,2],[1,1,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,2,3,3],[2,3,1,1],[1,1,2,0]],[[1,2,2,0],[0,2,4,2],[2,3,1,1],[1,1,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,1,1],[1,1,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,1,0],[3,3,1,2],[2,3,3,1],[0,1,2,1]],[[1,0,1,0],[2,3,1,2],[3,3,3,1],[0,1,2,1]],[[1,0,1,0],[2,3,1,2],[2,4,3,1],[0,1,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,4,1],[0,1,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,1],[0,1,3,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,1],[0,1,2,2]],[[1,0,1,0],[3,3,1,2],[2,3,3,1],[0,2,1,1]],[[1,0,1,0],[2,3,1,2],[3,3,3,1],[0,2,1,1]],[[1,0,1,0],[2,3,1,2],[2,4,3,1],[0,2,1,1]],[[1,0,1,0],[2,3,1,2],[2,3,4,1],[0,2,1,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,1],[0,3,1,1]],[[1,0,1,0],[3,3,1,2],[2,3,3,1],[1,0,2,1]],[[1,0,1,0],[2,3,1,2],[3,3,3,1],[1,0,2,1]],[[1,0,1,0],[2,3,1,2],[2,4,3,1],[1,0,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,4,1],[1,0,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,1],[2,0,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,1],[1,0,3,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,1],[1,0,2,2]],[[1,0,1,0],[3,3,1,2],[2,3,3,1],[1,1,1,1]],[[1,0,1,0],[2,3,1,2],[3,3,3,1],[1,1,1,1]],[[1,0,1,0],[2,3,1,2],[2,4,3,1],[1,1,1,1]],[[1,0,1,0],[2,3,1,2],[2,3,4,1],[1,1,1,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,1],[2,1,1,1]],[[1,0,1,0],[3,3,1,2],[2,3,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,1,2],[3,3,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,1,2],[2,4,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,2,3,3],[2,3,1,1],[0,2,2,0]],[[1,2,2,0],[0,2,4,2],[2,3,1,1],[0,2,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,1,1],[0,2,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,4,2],[0,0,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,3],[0,0,2,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[0,0,2,2]],[[1,0,1,0],[3,3,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,0],[2,3,1,2],[3,3,3,2],[0,1,1,1]],[[1,0,1,0],[2,3,1,2],[2,4,3,2],[0,1,1,1]],[[1,0,1,0],[2,3,1,2],[2,3,4,2],[0,1,1,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,3],[0,1,1,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[0,1,1,2]],[[1,0,1,0],[3,3,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,0],[2,3,1,2],[3,3,3,2],[0,1,2,0]],[[1,0,1,0],[2,3,1,2],[2,4,3,2],[0,1,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,4,2],[0,1,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,3,3],[0,1,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[0,1,3,0]],[[1,0,1,0],[3,3,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,0],[2,3,1,2],[3,3,3,2],[0,2,0,1]],[[1,0,1,0],[2,3,1,2],[2,4,3,2],[0,2,0,1]],[[1,0,1,0],[2,3,1,2],[2,3,4,2],[0,2,0,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,3],[0,2,0,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[0,3,0,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[0,2,0,2]],[[1,0,1,0],[3,3,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,0],[2,3,1,2],[3,3,3,2],[0,2,1,0]],[[1,0,1,0],[2,3,1,2],[2,4,3,2],[0,2,1,0]],[[1,0,1,0],[2,3,1,2],[2,3,4,2],[0,2,1,0]],[[1,0,1,0],[2,3,1,2],[2,3,3,3],[0,2,1,0]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,2,3,3],[2,3,1,0],[1,1,2,1]],[[1,2,2,0],[0,2,4,2],[2,3,1,0],[1,1,2,1]],[[1,2,3,0],[0,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,1,0],[3,3,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,0],[2,3,1,2],[3,3,3,2],[1,0,1,1]],[[1,0,1,0],[2,3,1,2],[2,4,3,2],[1,0,1,1]],[[1,0,1,0],[2,3,1,2],[2,3,4,2],[1,0,1,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,3],[1,0,1,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[2,0,1,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[1,0,1,2]],[[1,0,1,0],[3,3,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,0],[2,3,1,2],[3,3,3,2],[1,0,2,0]],[[1,0,1,0],[2,3,1,2],[2,4,3,2],[1,0,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,4,2],[1,0,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,3,3],[1,0,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[2,0,2,0]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[1,0,3,0]],[[1,0,1,0],[3,3,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,0],[2,3,1,2],[3,3,3,2],[1,1,0,1]],[[1,0,1,0],[2,3,1,2],[2,4,3,2],[1,1,0,1]],[[1,0,1,0],[2,3,1,2],[2,3,4,2],[1,1,0,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,3],[1,1,0,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[2,1,0,1]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[1,1,0,2]],[[1,0,1,0],[3,3,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,0],[2,3,1,2],[3,3,3,2],[1,1,1,0]],[[1,0,1,0],[2,3,1,2],[2,4,3,2],[1,1,1,0]],[[1,0,1,0],[2,3,1,2],[2,3,4,2],[1,1,1,0]],[[1,0,1,0],[2,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,3,2,0],[0,2,3,2],[2,3,1,0],[1,1,2,1]],[[2,2,2,0],[0,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,2,0],[0,2,3,3],[2,3,1,0],[0,2,2,1]],[[1,2,2,0],[0,2,4,2],[2,3,1,0],[0,2,2,1]],[[1,2,3,0],[0,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,3,2,0],[0,2,3,2],[2,3,1,0],[0,2,2,1]],[[2,2,2,0],[0,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,1,0],[3,3,1,2],[2,3,3,2],[1,2,0,0]],[[1,0,1,0],[2,3,1,2],[3,3,3,2],[1,2,0,0]],[[1,0,1,0],[2,3,1,2],[2,4,3,2],[1,2,0,0]],[[1,0,1,0],[2,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,2,3,2],[2,3,0,3],[1,1,2,0]],[[1,2,2,0],[0,2,3,3],[2,3,0,2],[1,1,2,0]],[[1,0,1,0],[2,3,2,0],[1,2,4,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,0],[1,2,3,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,0],[1,2,3,2],[1,3,2,1]],[[1,0,1,0],[2,3,2,0],[1,2,3,2],[1,2,3,1]],[[1,0,1,0],[2,3,2,0],[1,2,3,2],[1,2,2,2]],[[1,0,1,0],[2,3,2,0],[1,4,2,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,0],[1,3,2,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,0],[1,3,2,2],[1,3,2,1]],[[1,0,1,0],[2,3,2,0],[1,3,2,2],[1,2,3,1]],[[1,0,1,0],[2,3,2,0],[1,3,2,2],[1,2,2,2]],[[1,0,1,0],[2,3,2,0],[1,4,3,2],[1,1,2,1]],[[1,0,1,0],[2,3,2,0],[1,3,4,2],[1,1,2,1]],[[1,0,1,0],[2,3,2,0],[1,3,3,2],[1,1,3,1]],[[1,0,1,0],[2,3,2,0],[1,3,3,2],[1,1,2,2]],[[1,0,1,0],[2,3,2,0],[1,4,3,2],[1,2,1,1]],[[1,0,1,0],[2,3,2,0],[1,3,4,2],[1,2,1,1]],[[1,0,1,0],[2,3,2,0],[1,3,3,2],[2,2,1,1]],[[1,0,1,0],[2,3,2,0],[1,3,3,2],[1,3,1,1]],[[1,0,1,0],[3,3,2,0],[2,1,3,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,0],[3,1,3,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,0],[2,1,4,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,0],[2,1,3,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,0],[2,1,3,2],[1,3,2,1]],[[1,0,1,0],[2,3,2,0],[2,1,3,2],[1,2,3,1]],[[1,0,1,0],[2,3,2,0],[2,1,3,2],[1,2,2,2]],[[1,0,1,0],[3,3,2,0],[2,2,2,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,0],[3,2,2,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,0],[2,2,2,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,0],[2,2,2,2],[1,3,2,1]],[[1,0,1,0],[2,3,2,0],[2,2,2,2],[1,2,3,1]],[[1,0,1,0],[2,3,2,0],[2,2,2,2],[1,2,2,2]],[[1,0,1,0],[2,3,2,0],[2,2,4,2],[0,2,2,1]],[[1,0,1,0],[2,3,2,0],[2,2,3,2],[0,3,2,1]],[[1,0,1,0],[2,3,2,0],[2,2,3,2],[0,2,3,1]],[[1,0,1,0],[2,3,2,0],[2,2,3,2],[0,2,2,2]],[[1,0,1,0],[3,3,2,0],[2,2,3,2],[1,2,1,1]],[[1,0,1,0],[2,3,2,0],[3,2,3,2],[1,2,1,1]],[[1,0,1,0],[2,3,2,0],[2,2,3,2],[2,2,1,1]],[[1,0,1,0],[2,3,2,0],[2,2,3,2],[1,3,1,1]],[[1,0,1,0],[3,3,2,0],[2,3,1,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,0],[3,3,1,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,0],[2,3,1,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,0],[2,3,1,2],[1,3,2,1]],[[1,0,1,0],[3,3,2,0],[2,3,2,2],[0,2,2,1]],[[1,0,1,0],[2,3,2,0],[3,3,2,2],[0,2,2,1]],[[1,0,1,0],[2,3,2,0],[2,4,2,2],[0,2,2,1]],[[1,0,1,0],[2,3,2,0],[2,3,2,2],[0,3,2,1]],[[1,0,1,0],[2,3,2,0],[2,3,2,2],[0,2,3,1]],[[1,0,1,0],[2,3,2,0],[2,3,2,2],[0,2,2,2]],[[1,0,1,0],[3,3,2,0],[2,3,2,2],[1,1,2,1]],[[1,0,1,0],[2,3,2,0],[3,3,2,2],[1,1,2,1]],[[1,0,1,0],[2,3,2,0],[2,4,2,2],[1,1,2,1]],[[1,0,1,0],[2,3,2,0],[2,3,2,2],[2,1,2,1]],[[1,0,1,0],[3,3,2,0],[2,3,3,2],[0,1,2,1]],[[1,0,1,0],[2,3,2,0],[3,3,3,2],[0,1,2,1]],[[1,0,1,0],[2,3,2,0],[2,4,3,2],[0,1,2,1]],[[1,0,1,0],[2,3,2,0],[2,3,4,2],[0,1,2,1]],[[1,0,1,0],[2,3,2,0],[2,3,3,2],[0,1,3,1]],[[1,0,1,0],[2,3,2,0],[2,3,3,2],[0,1,2,2]],[[1,0,1,0],[3,3,2,0],[2,3,3,2],[0,2,1,1]],[[1,0,1,0],[2,3,2,0],[3,3,3,2],[0,2,1,1]],[[1,0,1,0],[2,3,2,0],[2,4,3,2],[0,2,1,1]],[[1,0,1,0],[2,3,2,0],[2,3,4,2],[0,2,1,1]],[[1,0,1,0],[2,3,2,0],[2,3,3,2],[0,3,1,1]],[[1,0,1,0],[3,3,2,0],[2,3,3,2],[1,0,2,1]],[[1,0,1,0],[2,3,2,0],[3,3,3,2],[1,0,2,1]],[[1,0,1,0],[2,3,2,0],[2,4,3,2],[1,0,2,1]],[[1,0,1,0],[2,3,2,0],[2,3,4,2],[1,0,2,1]],[[1,0,1,0],[2,3,2,0],[2,3,3,2],[2,0,2,1]],[[1,0,1,0],[2,3,2,0],[2,3,3,2],[1,0,3,1]],[[1,0,1,0],[2,3,2,0],[2,3,3,2],[1,0,2,2]],[[1,0,1,0],[3,3,2,0],[2,3,3,2],[1,1,1,1]],[[1,0,1,0],[2,3,2,0],[3,3,3,2],[1,1,1,1]],[[1,0,1,0],[2,3,2,0],[2,4,3,2],[1,1,1,1]],[[1,0,1,0],[2,3,2,0],[2,3,4,2],[1,1,1,1]],[[1,0,1,0],[2,3,2,0],[2,3,3,2],[2,1,1,1]],[[1,0,1,0],[3,3,2,0],[2,3,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,2,0],[3,3,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,2,0],[2,4,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,2,0],[0,2,4,2],[2,3,0,2],[1,1,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,0,2],[1,1,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,2,0],[0,2,3,2],[2,3,0,2],[1,1,1,2]],[[1,2,2,0],[0,2,3,2],[2,3,0,3],[1,1,1,1]],[[1,2,2,0],[0,2,3,3],[2,3,0,2],[1,1,1,1]],[[1,2,2,0],[0,2,4,2],[2,3,0,2],[1,1,1,1]],[[1,0,1,0],[2,3,2,1],[1,2,2,3],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[1,2,2,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[1,2,2,2],[1,3,2,1]],[[1,0,1,0],[2,3,2,1],[1,2,2,2],[1,2,3,1]],[[1,0,1,0],[2,3,2,1],[1,2,2,2],[1,2,2,2]],[[1,0,1,0],[2,3,2,1],[1,2,4,1],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[1,2,3,1],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[1,2,3,1],[1,3,2,1]],[[1,0,1,0],[2,3,2,1],[1,2,3,1],[1,2,3,1]],[[1,0,1,0],[2,3,2,1],[1,2,3,1],[1,2,2,2]],[[1,0,1,0],[2,3,2,1],[1,2,4,2],[1,2,1,1]],[[1,0,1,0],[2,3,2,1],[1,2,3,3],[1,2,1,1]],[[1,0,1,0],[2,3,2,1],[1,2,3,2],[1,2,1,2]],[[1,0,1,0],[2,3,2,1],[1,2,4,2],[1,2,2,0]],[[1,0,1,0],[2,3,2,1],[1,2,3,3],[1,2,2,0]],[[1,0,1,0],[2,3,2,1],[1,2,3,2],[2,2,2,0]],[[1,0,1,0],[2,3,2,1],[1,2,3,2],[1,3,2,0]],[[1,0,1,0],[2,3,2,1],[1,2,3,2],[1,2,3,0]],[[1,0,1,0],[2,3,2,1],[1,4,1,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,1,3],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,1,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,1,2],[1,3,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,1,2],[1,2,3,1]],[[1,0,1,0],[2,3,2,1],[1,3,1,2],[1,2,2,2]],[[1,0,1,0],[2,3,2,1],[1,4,2,1],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,2,1],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,2,1],[1,3,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,2,1],[1,2,3,1]],[[1,0,1,0],[2,3,2,1],[1,3,2,1],[1,2,2,2]],[[1,0,1,0],[2,3,2,1],[1,3,2,3],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,2,2],[1,1,3,1]],[[1,0,1,0],[2,3,2,1],[1,3,2,2],[1,1,2,2]],[[1,0,1,0],[2,3,2,1],[1,4,2,2],[1,2,2,0]],[[1,0,1,0],[2,3,2,1],[1,3,2,2],[2,2,2,0]],[[1,0,1,0],[2,3,2,1],[1,3,2,2],[1,3,2,0]],[[1,0,1,0],[2,3,2,1],[1,3,2,2],[1,2,3,0]],[[1,0,1,0],[2,3,2,1],[1,4,3,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,0],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,0],[1,3,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,0],[1,2,3,1]],[[1,0,1,0],[2,3,2,1],[1,4,3,1],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,4,1],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,1],[1,1,3,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,1],[1,1,2,2]],[[1,0,1,0],[2,3,2,1],[1,4,3,1],[1,2,1,1]],[[1,0,1,0],[2,3,2,1],[1,3,4,1],[1,2,1,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,1],[2,2,1,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,1],[1,3,1,1]],[[1,0,1,0],[2,3,2,1],[1,4,3,2],[1,1,1,1]],[[1,0,1,0],[2,3,2,1],[1,3,4,2],[1,1,1,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,3],[1,1,1,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,2],[1,1,1,2]],[[1,0,1,0],[2,3,2,1],[1,4,3,2],[1,1,2,0]],[[1,0,1,0],[2,3,2,1],[1,3,4,2],[1,1,2,0]],[[1,0,1,0],[2,3,2,1],[1,3,3,3],[1,1,2,0]],[[1,0,1,0],[2,3,2,1],[1,3,3,2],[1,1,3,0]],[[1,0,1,0],[2,3,2,1],[1,4,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,2,1],[1,3,4,2],[1,2,0,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,3],[1,2,0,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,2],[2,2,0,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,2],[1,3,0,1]],[[1,0,1,0],[2,3,2,1],[1,3,3,2],[1,2,0,2]],[[1,0,1,0],[2,3,2,1],[1,4,3,2],[1,2,1,0]],[[1,0,1,0],[2,3,2,1],[1,3,4,2],[1,2,1,0]],[[1,0,1,0],[2,3,2,1],[1,3,3,3],[1,2,1,0]],[[1,0,1,0],[2,3,2,1],[1,3,3,2],[2,2,1,0]],[[1,0,1,0],[2,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,3,0],[0,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,3,2,0],[0,2,3,2],[2,3,0,2],[1,1,1,1]],[[2,2,2,0],[0,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,2,0],[0,2,3,2],[2,3,0,2],[1,0,2,2]],[[1,2,2,0],[0,2,3,2],[2,3,0,2],[1,0,3,1]],[[1,2,2,0],[0,2,3,2],[2,3,0,3],[1,0,2,1]],[[1,2,2,0],[0,2,3,3],[2,3,0,2],[1,0,2,1]],[[1,0,1,0],[3,3,2,1],[2,1,2,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[3,1,2,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,1,2,3],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,1,2,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,1,2,2],[1,3,2,1]],[[1,0,1,0],[2,3,2,1],[2,1,2,2],[1,2,3,1]],[[1,0,1,0],[2,3,2,1],[2,1,2,2],[1,2,2,2]],[[1,0,1,0],[3,3,2,1],[2,1,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[3,1,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,1,4,1],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,1,3,1],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,1,3,1],[1,3,2,1]],[[1,0,1,0],[2,3,2,1],[2,1,3,1],[1,2,3,1]],[[1,0,1,0],[2,3,2,1],[2,1,3,1],[1,2,2,2]],[[1,0,1,0],[2,3,2,1],[2,1,4,2],[1,2,1,1]],[[1,0,1,0],[2,3,2,1],[2,1,3,3],[1,2,1,1]],[[1,0,1,0],[2,3,2,1],[2,1,3,2],[1,2,1,2]],[[1,0,1,0],[3,3,2,1],[2,1,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,2,1],[3,1,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,1,4,2],[1,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,1,3,3],[1,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,1,3,2],[2,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,1,3,2],[1,3,2,0]],[[1,0,1,0],[2,3,2,1],[2,1,3,2],[1,2,3,0]],[[1,0,1,0],[3,3,2,1],[2,2,1,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[3,2,1,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,1,3],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,1,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,1,2],[1,3,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,1,2],[1,2,3,1]],[[1,0,1,0],[2,3,2,1],[2,2,1,2],[1,2,2,2]],[[1,0,1,0],[3,3,2,1],[2,2,2,1],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[3,2,2,1],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,2,1],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,2,1],[1,3,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,2,1],[1,2,3,1]],[[1,0,1,0],[2,3,2,1],[2,2,2,1],[1,2,2,2]],[[1,0,1,0],[2,3,2,1],[2,2,2,3],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,2,2],[0,3,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,2,2],[0,2,3,1]],[[1,0,1,0],[2,3,2,1],[2,2,2,2],[0,2,2,2]],[[1,0,1,0],[3,3,2,1],[2,2,2,2],[1,2,2,0]],[[1,0,1,0],[2,3,2,1],[3,2,2,2],[1,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,2,2,2],[2,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,2,2,2],[1,3,2,0]],[[1,0,1,0],[2,3,2,1],[2,2,2,2],[1,2,3,0]],[[1,0,1,0],[3,3,2,1],[2,2,3,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[3,2,3,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,0],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,0],[1,3,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,0],[1,2,3,1]],[[1,0,1,0],[2,3,2,1],[2,2,4,1],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,1],[0,3,2,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,1],[0,2,3,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,1],[0,2,2,2]],[[1,0,1,0],[3,3,2,1],[2,2,3,1],[1,2,1,1]],[[1,0,1,0],[2,3,2,1],[3,2,3,1],[1,2,1,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,1],[2,2,1,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,1],[1,3,1,1]],[[1,0,1,0],[2,3,2,1],[2,2,4,2],[0,2,1,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,3],[0,2,1,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,2],[0,2,1,2]],[[1,0,1,0],[2,3,2,1],[2,2,4,2],[0,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,2,3,3],[0,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,2,3,2],[0,3,2,0]],[[1,0,1,0],[2,3,2,1],[2,2,3,2],[0,2,3,0]],[[1,0,1,0],[3,3,2,1],[2,2,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,2,1],[3,2,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,2],[2,2,0,1]],[[1,0,1,0],[2,3,2,1],[2,2,3,2],[1,3,0,1]],[[1,0,1,0],[3,3,2,1],[2,2,3,2],[1,2,1,0]],[[1,0,1,0],[2,3,2,1],[3,2,3,2],[1,2,1,0]],[[1,0,1,0],[2,3,2,1],[2,2,3,2],[2,2,1,0]],[[1,0,1,0],[2,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,2,4,2],[2,3,0,2],[1,0,2,1]],[[1,2,3,0],[0,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,3,2,0],[0,2,3,2],[2,3,0,2],[1,0,2,1]],[[2,2,2,0],[0,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,1,0],[3,3,2,1],[2,3,0,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[3,3,0,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,0,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,0,2],[1,3,2,1]],[[1,0,1,0],[3,3,2,1],[2,3,1,1],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[3,3,1,1],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,1,1],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,1,1],[1,3,2,1]],[[1,0,1,0],[3,3,2,1],[2,3,1,2],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[3,3,1,2],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,4,1,2],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,1,3],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,1,2],[0,3,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,1,2],[0,2,3,1]],[[1,0,1,0],[2,3,2,1],[2,3,1,2],[0,2,2,2]],[[1,0,1,0],[3,3,2,1],[2,3,1,2],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[3,3,1,2],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[2,4,1,2],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,1,2],[2,1,2,1]],[[1,0,1,0],[3,3,2,1],[2,3,1,2],[1,2,2,0]],[[1,0,1,0],[2,3,2,1],[3,3,1,2],[1,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,1,2],[2,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,1,2],[1,3,2,0]],[[1,0,1,0],[3,3,2,1],[2,3,2,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[3,3,2,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,2,0],[2,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,2,0],[1,3,2,1]],[[1,0,1,0],[3,3,2,1],[2,3,2,1],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[3,3,2,1],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,4,2,1],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,2,1],[0,3,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,2,1],[0,2,3,1]],[[1,0,1,0],[2,3,2,1],[2,3,2,1],[0,2,2,2]],[[1,0,1,0],[3,3,2,1],[2,3,2,1],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[3,3,2,1],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[2,4,2,1],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,2,1],[2,1,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,2,3],[0,1,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,2,2],[0,1,3,1]],[[1,0,1,0],[2,3,2,1],[2,3,2,2],[0,1,2,2]],[[1,0,1,0],[3,3,2,1],[2,3,2,2],[0,2,2,0]],[[1,0,1,0],[2,3,2,1],[3,3,2,2],[0,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,4,2,2],[0,2,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,2,2],[0,3,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,2,2],[0,2,3,0]],[[1,0,1,0],[2,3,2,1],[2,3,2,3],[1,0,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,2,2],[1,0,3,1]],[[1,0,1,0],[2,3,2,1],[2,3,2,2],[1,0,2,2]],[[1,0,1,0],[3,3,2,1],[2,3,2,2],[1,1,2,0]],[[1,0,1,0],[2,3,2,1],[3,3,2,2],[1,1,2,0]],[[1,0,1,0],[2,3,2,1],[2,4,2,2],[1,1,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,2,3,2],[2,3,0,3],[0,2,2,0]],[[1,0,1,0],[3,3,2,1],[2,3,3,0],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[3,3,3,0],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,4,3,0],[0,2,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,0],[0,3,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,0],[0,2,3,1]],[[1,0,1,0],[3,3,2,1],[2,3,3,0],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[3,3,3,0],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[2,4,3,0],[1,1,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,0],[2,1,2,1]],[[1,0,1,0],[3,3,2,1],[2,3,3,1],[0,1,2,1]],[[1,0,1,0],[2,3,2,1],[3,3,3,1],[0,1,2,1]],[[1,0,1,0],[2,3,2,1],[2,4,3,1],[0,1,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,4,1],[0,1,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,1],[0,1,3,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,1],[0,1,2,2]],[[1,0,1,0],[3,3,2,1],[2,3,3,1],[0,2,1,1]],[[1,0,1,0],[2,3,2,1],[3,3,3,1],[0,2,1,1]],[[1,0,1,0],[2,3,2,1],[2,4,3,1],[0,2,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,4,1],[0,2,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,1],[0,3,1,1]],[[1,0,1,0],[3,3,2,1],[2,3,3,1],[1,0,2,1]],[[1,0,1,0],[2,3,2,1],[3,3,3,1],[1,0,2,1]],[[1,0,1,0],[2,3,2,1],[2,4,3,1],[1,0,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,4,1],[1,0,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,1],[2,0,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,1],[1,0,3,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,1],[1,0,2,2]],[[1,0,1,0],[3,3,2,1],[2,3,3,1],[1,1,1,1]],[[1,0,1,0],[2,3,2,1],[3,3,3,1],[1,1,1,1]],[[1,0,1,0],[2,3,2,1],[2,4,3,1],[1,1,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,4,1],[1,1,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,1],[2,1,1,1]],[[1,0,1,0],[3,3,2,1],[2,3,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,2,1],[3,3,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,2,1],[2,4,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,2,3,3],[2,3,0,2],[0,2,2,0]],[[1,2,2,0],[0,2,4,2],[2,3,0,2],[0,2,2,0]],[[1,2,3,0],[0,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,3,2,0],[0,2,3,2],[2,3,0,2],[0,2,2,0]],[[2,2,2,0],[0,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,2,0],[0,2,3,2],[2,3,0,2],[0,2,1,2]],[[1,2,2,0],[0,2,3,2],[2,3,0,3],[0,2,1,1]],[[1,2,2,0],[0,2,3,3],[2,3,0,2],[0,2,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,4,2],[0,0,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,3],[0,0,2,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[0,0,2,2]],[[1,0,1,0],[3,3,2,1],[2,3,3,2],[0,1,1,1]],[[1,0,1,0],[2,3,2,1],[3,3,3,2],[0,1,1,1]],[[1,0,1,0],[2,3,2,1],[2,4,3,2],[0,1,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,4,2],[0,1,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,3],[0,1,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[0,1,1,2]],[[1,0,1,0],[3,3,2,1],[2,3,3,2],[0,1,2,0]],[[1,0,1,0],[2,3,2,1],[3,3,3,2],[0,1,2,0]],[[1,0,1,0],[2,3,2,1],[2,4,3,2],[0,1,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,4,2],[0,1,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,3,3],[0,1,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[0,1,3,0]],[[1,0,1,0],[3,3,2,1],[2,3,3,2],[0,2,0,1]],[[1,0,1,0],[2,3,2,1],[3,3,3,2],[0,2,0,1]],[[1,0,1,0],[2,3,2,1],[2,4,3,2],[0,2,0,1]],[[1,0,1,0],[2,3,2,1],[2,3,4,2],[0,2,0,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,3],[0,2,0,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[0,3,0,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[0,2,0,2]],[[1,0,1,0],[3,3,2,1],[2,3,3,2],[0,2,1,0]],[[1,0,1,0],[2,3,2,1],[3,3,3,2],[0,2,1,0]],[[1,0,1,0],[2,3,2,1],[2,4,3,2],[0,2,1,0]],[[1,0,1,0],[2,3,2,1],[2,3,4,2],[0,2,1,0]],[[1,0,1,0],[2,3,2,1],[2,3,3,3],[0,2,1,0]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,2,4,2],[2,3,0,2],[0,2,1,1]],[[1,2,3,0],[0,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,3,2,0],[0,2,3,2],[2,3,0,2],[0,2,1,1]],[[2,2,2,0],[0,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,2,0],[0,2,3,2],[2,3,0,2],[0,1,2,2]],[[1,2,2,0],[0,2,3,2],[2,3,0,2],[0,1,3,1]],[[1,2,2,0],[0,2,3,2],[2,3,0,3],[0,1,2,1]],[[1,2,2,0],[0,2,3,3],[2,3,0,2],[0,1,2,1]],[[1,0,1,0],[3,3,2,1],[2,3,3,2],[1,0,1,1]],[[1,0,1,0],[2,3,2,1],[3,3,3,2],[1,0,1,1]],[[1,0,1,0],[2,3,2,1],[2,4,3,2],[1,0,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,4,2],[1,0,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,3],[1,0,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[2,0,1,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[1,0,1,2]],[[1,0,1,0],[3,3,2,1],[2,3,3,2],[1,0,2,0]],[[1,0,1,0],[2,3,2,1],[3,3,3,2],[1,0,2,0]],[[1,0,1,0],[2,3,2,1],[2,4,3,2],[1,0,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,4,2],[1,0,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,3,3],[1,0,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[2,0,2,0]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[1,0,3,0]],[[1,0,1,0],[3,3,2,1],[2,3,3,2],[1,1,0,1]],[[1,0,1,0],[2,3,2,1],[3,3,3,2],[1,1,0,1]],[[1,0,1,0],[2,3,2,1],[2,4,3,2],[1,1,0,1]],[[1,0,1,0],[2,3,2,1],[2,3,4,2],[1,1,0,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,3],[1,1,0,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[2,1,0,1]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[1,1,0,2]],[[1,0,1,0],[3,3,2,1],[2,3,3,2],[1,1,1,0]],[[1,0,1,0],[2,3,2,1],[3,3,3,2],[1,1,1,0]],[[1,0,1,0],[2,3,2,1],[2,4,3,2],[1,1,1,0]],[[1,0,1,0],[2,3,2,1],[2,3,4,2],[1,1,1,0]],[[1,0,1,0],[2,3,2,1],[2,3,3,3],[1,1,1,0]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,2,4,2],[2,3,0,2],[0,1,2,1]],[[1,2,3,0],[0,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,3,2,0],[0,2,3,2],[2,3,0,2],[0,1,2,1]],[[2,2,2,0],[0,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,1,0],[3,3,2,1],[2,3,3,2],[1,2,0,0]],[[1,0,1,0],[2,3,2,1],[3,3,3,2],[1,2,0,0]],[[1,0,1,0],[2,3,2,1],[2,4,3,2],[1,2,0,0]],[[1,0,1,0],[2,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,2,3,3],[2,3,0,1],[1,1,2,1]],[[1,2,2,0],[0,2,4,2],[2,3,0,1],[1,1,2,1]],[[1,2,3,0],[0,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,3,2,0],[0,2,3,2],[2,3,0,1],[1,1,2,1]],[[2,2,2,0],[0,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,2,0],[0,2,3,3],[2,3,0,1],[0,2,2,1]],[[1,2,2,0],[0,2,4,2],[2,3,0,1],[0,2,2,1]],[[1,2,3,0],[0,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,3,2,0],[0,2,3,2],[2,3,0,1],[0,2,2,1]],[[2,2,2,0],[0,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,1,0],[2,3,2,2],[1,2,4,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[1,2,3,0],[2,2,2,1]],[[1,0,1,0],[2,3,2,2],[1,2,3,0],[1,3,2,1]],[[1,0,1,0],[2,3,2,2],[1,2,3,0],[1,2,3,1]],[[1,0,1,0],[2,3,2,2],[1,2,3,0],[1,2,2,2]],[[1,0,1,0],[2,3,2,2],[1,2,4,1],[1,2,2,0]],[[1,0,1,0],[2,3,2,2],[1,2,3,1],[2,2,2,0]],[[1,0,1,0],[2,3,2,2],[1,2,3,1],[1,3,2,0]],[[1,0,1,0],[2,3,2,2],[1,2,3,1],[1,2,3,0]],[[1,0,1,0],[2,3,2,2],[1,4,0,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[1,3,0,3],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[1,3,0,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,2],[1,3,0,2],[1,3,2,1]],[[1,0,1,0],[2,3,2,2],[1,3,0,2],[1,2,3,1]],[[1,0,1,0],[2,3,2,2],[1,3,0,2],[1,2,2,2]],[[1,0,1,0],[2,3,2,2],[1,4,2,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[1,3,2,0],[2,2,2,1]],[[1,0,1,0],[2,3,2,2],[1,3,2,0],[1,3,2,1]],[[1,0,1,0],[2,3,2,2],[1,3,2,0],[1,2,3,1]],[[1,0,1,0],[2,3,2,2],[1,3,2,0],[1,2,2,2]],[[1,0,1,0],[2,3,2,2],[1,4,2,1],[1,2,2,0]],[[1,0,1,0],[2,3,2,2],[1,3,2,1],[2,2,2,0]],[[1,0,1,0],[2,3,2,2],[1,3,2,1],[1,3,2,0]],[[1,0,1,0],[2,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,0,1,0],[2,3,2,2],[1,4,3,0],[1,1,2,1]],[[1,0,1,0],[2,3,2,2],[1,3,4,0],[1,1,2,1]],[[1,0,1,0],[2,3,2,2],[1,3,3,0],[1,1,3,1]],[[1,0,1,0],[2,3,2,2],[1,3,3,0],[1,1,2,2]],[[1,0,1,0],[2,3,2,2],[1,4,3,0],[1,2,1,1]],[[1,0,1,0],[2,3,2,2],[1,3,4,0],[1,2,1,1]],[[1,0,1,0],[2,3,2,2],[1,3,3,0],[2,2,1,1]],[[1,0,1,0],[2,3,2,2],[1,3,3,0],[1,3,1,1]],[[1,0,1,0],[2,3,2,2],[1,4,3,1],[1,1,2,0]],[[1,0,1,0],[2,3,2,2],[1,3,4,1],[1,1,2,0]],[[1,0,1,0],[2,3,2,2],[1,3,3,1],[1,1,3,0]],[[1,0,1,0],[2,3,2,2],[1,4,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,2,2],[1,3,4,1],[1,2,0,1]],[[1,0,1,0],[2,3,2,2],[1,3,3,1],[2,2,0,1]],[[1,0,1,0],[2,3,2,2],[1,3,3,1],[1,3,0,1]],[[1,0,1,0],[2,3,2,2],[1,4,3,1],[1,2,1,0]],[[1,0,1,0],[2,3,2,2],[1,3,4,1],[1,2,1,0]],[[1,0,1,0],[2,3,2,2],[1,3,3,1],[2,2,1,0]],[[1,0,1,0],[2,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,2,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,0],[0,2,3,3],[2,2,3,2],[1,0,0,1]],[[1,2,2,0],[0,2,4,2],[2,2,3,2],[1,0,0,1]],[[1,2,3,0],[0,2,3,2],[2,2,3,2],[1,0,0,1]],[[1,3,2,0],[0,2,3,2],[2,2,3,2],[1,0,0,1]],[[2,2,2,0],[0,2,3,2],[2,2,3,2],[1,0,0,1]],[[1,0,1,0],[3,3,2,2],[2,1,3,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[3,1,3,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,1,4,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,1,3,0],[2,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,1,3,0],[1,3,2,1]],[[1,0,1,0],[2,3,2,2],[2,1,3,0],[1,2,3,1]],[[1,0,1,0],[2,3,2,2],[2,1,3,0],[1,2,2,2]],[[1,0,1,0],[3,3,2,2],[2,1,3,1],[1,2,2,0]],[[1,0,1,0],[2,3,2,2],[3,1,3,1],[1,2,2,0]],[[1,0,1,0],[2,3,2,2],[2,1,4,1],[1,2,2,0]],[[1,0,1,0],[2,3,2,2],[2,1,3,1],[2,2,2,0]],[[1,0,1,0],[2,3,2,2],[2,1,3,1],[1,3,2,0]],[[1,0,1,0],[2,3,2,2],[2,1,3,1],[1,2,3,0]],[[1,0,1,0],[3,3,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[3,2,0,2],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,2,0,3],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,2,0,2],[2,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,2,0,2],[1,3,2,1]],[[1,0,1,0],[2,3,2,2],[2,2,0,2],[1,2,3,1]],[[1,0,1,0],[2,3,2,2],[2,2,0,2],[1,2,2,2]],[[1,0,1,0],[3,3,2,2],[2,2,2,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[3,2,2,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,2,2,0],[2,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,2,2,0],[1,3,2,1]],[[1,0,1,0],[2,3,2,2],[2,2,2,0],[1,2,3,1]],[[1,0,1,0],[2,3,2,2],[2,2,2,0],[1,2,2,2]],[[1,0,1,0],[3,3,2,2],[2,2,2,1],[1,2,2,0]],[[1,0,1,0],[2,3,2,2],[3,2,2,1],[1,2,2,0]],[[1,0,1,0],[2,3,2,2],[2,2,2,1],[2,2,2,0]],[[1,0,1,0],[2,3,2,2],[2,2,2,1],[1,3,2,0]],[[1,0,1,0],[2,3,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,0],[0,2,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,2,0],[0,2,3,3],[2,2,3,2],[0,1,0,1]],[[1,2,2,0],[0,2,4,2],[2,2,3,2],[0,1,0,1]],[[1,0,1,0],[2,3,2,2],[2,2,4,0],[0,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,2,3,0],[0,3,2,1]],[[1,0,1,0],[2,3,2,2],[2,2,3,0],[0,2,3,1]],[[1,0,1,0],[2,3,2,2],[2,2,3,0],[0,2,2,2]],[[1,0,1,0],[3,3,2,2],[2,2,3,0],[1,2,1,1]],[[1,0,1,0],[2,3,2,2],[3,2,3,0],[1,2,1,1]],[[1,0,1,0],[2,3,2,2],[2,2,3,0],[2,2,1,1]],[[1,0,1,0],[2,3,2,2],[2,2,3,0],[1,3,1,1]],[[1,0,1,0],[2,3,2,2],[2,2,4,1],[0,2,2,0]],[[1,0,1,0],[2,3,2,2],[2,2,3,1],[0,3,2,0]],[[1,0,1,0],[2,3,2,2],[2,2,3,1],[0,2,3,0]],[[1,0,1,0],[3,3,2,2],[2,2,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,2,2],[3,2,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,2,2],[2,2,3,1],[2,2,0,1]],[[1,0,1,0],[2,3,2,2],[2,2,3,1],[1,3,0,1]],[[1,0,1,0],[3,3,2,2],[2,2,3,1],[1,2,1,0]],[[1,0,1,0],[2,3,2,2],[3,2,3,1],[1,2,1,0]],[[1,0,1,0],[2,3,2,2],[2,2,3,1],[2,2,1,0]],[[1,0,1,0],[2,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,3,0],[0,2,3,2],[2,2,3,2],[0,1,0,1]],[[1,3,2,0],[0,2,3,2],[2,2,3,2],[0,1,0,1]],[[2,2,2,0],[0,2,3,2],[2,2,3,2],[0,1,0,1]],[[1,0,1,0],[3,3,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,0],[2,3,2,2],[3,3,0,2],[0,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,4,0,2],[0,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,0,3],[0,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,0,2],[0,3,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,0,2],[0,2,3,1]],[[1,0,1,0],[2,3,2,2],[2,3,0,2],[0,2,2,2]],[[1,0,1,0],[3,3,2,2],[2,3,0,2],[1,1,2,1]],[[1,0,1,0],[2,3,2,2],[3,3,0,2],[1,1,2,1]],[[1,0,1,0],[2,3,2,2],[2,4,0,2],[1,1,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,0,2],[2,1,2,1]],[[1,0,1,0],[3,3,2,2],[2,3,1,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[3,3,1,0],[1,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,1,0],[2,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,1,0],[1,3,2,1]],[[1,0,1,0],[3,3,2,2],[2,3,1,1],[1,2,2,0]],[[1,0,1,0],[2,3,2,2],[3,3,1,1],[1,2,2,0]],[[1,0,1,0],[2,3,2,2],[2,3,1,1],[2,2,2,0]],[[1,0,1,0],[2,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,0,1,0],[3,3,2,2],[2,3,2,0],[0,2,2,1]],[[1,0,1,0],[2,3,2,2],[3,3,2,0],[0,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,4,2,0],[0,2,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,2,0],[0,3,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,2,0],[0,2,3,1]],[[1,0,1,0],[2,3,2,2],[2,3,2,0],[0,2,2,2]],[[1,0,1,0],[3,3,2,2],[2,3,2,0],[1,1,2,1]],[[1,0,1,0],[2,3,2,2],[3,3,2,0],[1,1,2,1]],[[1,0,1,0],[2,3,2,2],[2,4,2,0],[1,1,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,2,0],[2,1,2,1]],[[1,0,1,0],[3,3,2,2],[2,3,2,1],[0,2,2,0]],[[1,0,1,0],[2,3,2,2],[3,3,2,1],[0,2,2,0]],[[1,0,1,0],[2,3,2,2],[2,4,2,1],[0,2,2,0]],[[1,0,1,0],[2,3,2,2],[2,3,2,1],[0,3,2,0]],[[1,0,1,0],[2,3,2,2],[2,3,2,1],[0,2,3,0]],[[1,0,1,0],[3,3,2,2],[2,3,2,1],[1,1,2,0]],[[1,0,1,0],[2,3,2,2],[3,3,2,1],[1,1,2,0]],[[1,0,1,0],[2,3,2,2],[2,4,2,1],[1,1,2,0]],[[1,0,1,0],[2,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[0,2,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,2,0],[0,2,3,3],[2,2,3,1],[1,1,1,0]],[[1,2,2,0],[0,2,4,2],[2,2,3,1],[1,1,1,0]],[[1,2,3,0],[0,2,3,2],[2,2,3,1],[1,1,1,0]],[[1,3,2,0],[0,2,3,2],[2,2,3,1],[1,1,1,0]],[[2,2,2,0],[0,2,3,2],[2,2,3,1],[1,1,1,0]],[[1,2,2,0],[0,2,3,2],[2,2,4,1],[1,1,0,1]],[[1,2,2,0],[0,2,3,3],[2,2,3,1],[1,1,0,1]],[[1,2,2,0],[0,2,4,2],[2,2,3,1],[1,1,0,1]],[[1,2,3,0],[0,2,3,2],[2,2,3,1],[1,1,0,1]],[[1,3,2,0],[0,2,3,2],[2,2,3,1],[1,1,0,1]],[[2,2,2,0],[0,2,3,2],[2,2,3,1],[1,1,0,1]],[[1,2,2,0],[0,2,3,2],[2,2,3,1],[1,0,3,0]],[[1,2,2,0],[0,2,3,2],[2,2,4,1],[1,0,2,0]],[[1,2,2,0],[0,2,3,3],[2,2,3,1],[1,0,2,0]],[[1,2,2,0],[0,2,4,2],[2,2,3,1],[1,0,2,0]],[[1,2,3,0],[0,2,3,2],[2,2,3,1],[1,0,2,0]],[[1,3,2,0],[0,2,3,2],[2,2,3,1],[1,0,2,0]],[[2,2,2,0],[0,2,3,2],[2,2,3,1],[1,0,2,0]],[[1,2,2,0],[0,2,3,2],[2,2,4,1],[1,0,1,1]],[[1,2,2,0],[0,2,3,3],[2,2,3,1],[1,0,1,1]],[[1,2,2,0],[0,2,4,2],[2,2,3,1],[1,0,1,1]],[[1,2,3,0],[0,2,3,2],[2,2,3,1],[1,0,1,1]],[[1,3,2,0],[0,2,3,2],[2,2,3,1],[1,0,1,1]],[[2,2,2,0],[0,2,3,2],[2,2,3,1],[1,0,1,1]],[[1,0,1,0],[3,3,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,1,0],[2,3,2,2],[3,3,3,0],[0,1,2,1]],[[1,0,1,0],[2,3,2,2],[2,4,3,0],[0,1,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,4,0],[0,1,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,3,0],[0,1,3,1]],[[1,0,1,0],[2,3,2,2],[2,3,3,0],[0,1,2,2]],[[1,0,1,0],[3,3,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,1,0],[2,3,2,2],[3,3,3,0],[0,2,1,1]],[[1,0,1,0],[2,3,2,2],[2,4,3,0],[0,2,1,1]],[[1,0,1,0],[2,3,2,2],[2,3,4,0],[0,2,1,1]],[[1,0,1,0],[2,3,2,2],[2,3,3,0],[0,3,1,1]],[[1,0,1,0],[3,3,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,1,0],[2,3,2,2],[3,3,3,0],[1,0,2,1]],[[1,0,1,0],[2,3,2,2],[2,4,3,0],[1,0,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,4,0],[1,0,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,3,0],[2,0,2,1]],[[1,0,1,0],[2,3,2,2],[2,3,3,0],[1,0,3,1]],[[1,0,1,0],[2,3,2,2],[2,3,3,0],[1,0,2,2]],[[1,0,1,0],[3,3,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,1,0],[2,3,2,2],[3,3,3,0],[1,1,1,1]],[[1,0,1,0],[2,3,2,2],[2,4,3,0],[1,1,1,1]],[[1,0,1,0],[2,3,2,2],[2,3,4,0],[1,1,1,1]],[[1,0,1,0],[2,3,2,2],[2,3,3,0],[2,1,1,1]],[[1,0,1,0],[3,3,2,2],[2,3,3,0],[1,2,0,1]],[[1,0,1,0],[2,3,2,2],[3,3,3,0],[1,2,0,1]],[[1,0,1,0],[2,3,2,2],[2,4,3,0],[1,2,0,1]],[[1,0,1,0],[2,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,0,1,0],[3,3,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,1,0],[2,3,2,2],[3,3,3,1],[0,1,1,1]],[[1,0,1,0],[2,3,2,2],[2,4,3,1],[0,1,1,1]],[[1,0,1,0],[2,3,2,2],[2,3,4,1],[0,1,1,1]],[[1,0,1,0],[3,3,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,1,0],[2,3,2,2],[3,3,3,1],[0,1,2,0]],[[1,0,1,0],[2,3,2,2],[2,4,3,1],[0,1,2,0]],[[1,0,1,0],[2,3,2,2],[2,3,4,1],[0,1,2,0]],[[1,0,1,0],[2,3,2,2],[2,3,3,1],[0,1,3,0]],[[1,0,1,0],[3,3,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,1,0],[2,3,2,2],[3,3,3,1],[0,2,0,1]],[[1,0,1,0],[2,3,2,2],[2,4,3,1],[0,2,0,1]],[[1,0,1,0],[2,3,2,2],[2,3,4,1],[0,2,0,1]],[[1,0,1,0],[2,3,2,2],[2,3,3,1],[0,3,0,1]],[[1,0,1,0],[3,3,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,1,0],[2,3,2,2],[3,3,3,1],[0,2,1,0]],[[1,0,1,0],[2,3,2,2],[2,4,3,1],[0,2,1,0]],[[1,0,1,0],[2,3,2,2],[2,3,4,1],[0,2,1,0]],[[1,0,1,0],[2,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[0,2,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,2,0],[0,2,3,3],[2,2,3,1],[0,2,1,0]],[[1,2,2,0],[0,2,4,2],[2,2,3,1],[0,2,1,0]],[[1,0,1,0],[3,3,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,1,0],[2,3,2,2],[3,3,3,1],[1,0,1,1]],[[1,0,1,0],[2,3,2,2],[2,4,3,1],[1,0,1,1]],[[1,0,1,0],[2,3,2,2],[2,3,4,1],[1,0,1,1]],[[1,0,1,0],[2,3,2,2],[2,3,3,1],[2,0,1,1]],[[1,0,1,0],[3,3,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,1,0],[2,3,2,2],[3,3,3,1],[1,0,2,0]],[[1,0,1,0],[2,3,2,2],[2,4,3,1],[1,0,2,0]],[[1,0,1,0],[2,3,2,2],[2,3,4,1],[1,0,2,0]],[[1,0,1,0],[2,3,2,2],[2,3,3,1],[2,0,2,0]],[[1,0,1,0],[2,3,2,2],[2,3,3,1],[1,0,3,0]],[[1,0,1,0],[3,3,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,1,0],[2,3,2,2],[3,3,3,1],[1,1,0,1]],[[1,0,1,0],[2,3,2,2],[2,4,3,1],[1,1,0,1]],[[1,0,1,0],[2,3,2,2],[2,3,4,1],[1,1,0,1]],[[1,0,1,0],[2,3,2,2],[2,3,3,1],[2,1,0,1]],[[1,0,1,0],[3,3,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,1,0],[2,3,2,2],[3,3,3,1],[1,1,1,0]],[[1,0,1,0],[2,3,2,2],[2,4,3,1],[1,1,1,0]],[[1,0,1,0],[2,3,2,2],[2,3,4,1],[1,1,1,0]],[[1,0,1,0],[2,3,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,3,0],[0,2,3,2],[2,2,3,1],[0,2,1,0]],[[1,3,2,0],[0,2,3,2],[2,2,3,1],[0,2,1,0]],[[2,2,2,0],[0,2,3,2],[2,2,3,1],[0,2,1,0]],[[1,2,2,0],[0,2,3,2],[2,2,4,1],[0,2,0,1]],[[1,2,2,0],[0,2,3,3],[2,2,3,1],[0,2,0,1]],[[1,2,2,0],[0,2,4,2],[2,2,3,1],[0,2,0,1]],[[1,2,3,0],[0,2,3,2],[2,2,3,1],[0,2,0,1]],[[1,0,1,0],[3,3,2,2],[2,3,3,1],[1,2,0,0]],[[1,0,1,0],[2,3,2,2],[3,3,3,1],[1,2,0,0]],[[1,0,1,0],[2,3,2,2],[2,4,3,1],[1,2,0,0]],[[1,0,1,0],[2,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,3,2,0],[0,2,3,2],[2,2,3,1],[0,2,0,1]],[[2,2,2,0],[0,2,3,2],[2,2,3,1],[0,2,0,1]],[[1,2,2,0],[0,2,3,2],[2,2,3,1],[0,1,3,0]],[[1,2,2,0],[0,2,3,2],[2,2,4,1],[0,1,2,0]],[[1,2,2,0],[0,2,3,3],[2,2,3,1],[0,1,2,0]],[[1,2,2,0],[0,2,4,2],[2,2,3,1],[0,1,2,0]],[[1,2,3,0],[0,2,3,2],[2,2,3,1],[0,1,2,0]],[[1,3,2,0],[0,2,3,2],[2,2,3,1],[0,1,2,0]],[[2,2,2,0],[0,2,3,2],[2,2,3,1],[0,1,2,0]],[[1,2,2,0],[0,2,3,2],[2,2,4,1],[0,1,1,1]],[[1,2,2,0],[0,2,3,3],[2,2,3,1],[0,1,1,1]],[[1,2,2,0],[0,2,4,2],[2,2,3,1],[0,1,1,1]],[[1,2,3,0],[0,2,3,2],[2,2,3,1],[0,1,1,1]],[[1,3,2,0],[0,2,3,2],[2,2,3,1],[0,1,1,1]],[[2,2,2,0],[0,2,3,2],[2,2,3,1],[0,1,1,1]],[[1,2,2,0],[0,2,3,2],[2,2,4,1],[0,0,2,1]],[[1,2,2,0],[0,2,3,3],[2,2,3,1],[0,0,2,1]],[[1,2,2,0],[0,2,4,2],[2,2,3,1],[0,0,2,1]],[[1,2,3,0],[0,2,3,2],[2,2,3,1],[0,0,2,1]],[[1,3,2,0],[0,2,3,2],[2,2,3,1],[0,0,2,1]],[[2,2,2,0],[0,2,3,2],[2,2,3,1],[0,0,2,1]],[[1,2,2,0],[0,2,3,2],[2,2,4,0],[1,1,1,1]],[[1,2,2,0],[0,2,3,3],[2,2,3,0],[1,1,1,1]],[[1,2,2,0],[0,2,4,2],[2,2,3,0],[1,1,1,1]],[[1,2,3,0],[0,2,3,2],[2,2,3,0],[1,1,1,1]],[[1,3,2,0],[0,2,3,2],[2,2,3,0],[1,1,1,1]],[[2,2,2,0],[0,2,3,2],[2,2,3,0],[1,1,1,1]],[[1,2,2,0],[0,2,3,2],[2,2,3,0],[1,0,2,2]],[[1,2,2,0],[0,2,3,2],[2,2,3,0],[1,0,3,1]],[[1,2,2,0],[0,2,3,2],[2,2,4,0],[1,0,2,1]],[[1,2,2,0],[0,2,3,3],[2,2,3,0],[1,0,2,1]],[[1,2,2,0],[0,2,4,2],[2,2,3,0],[1,0,2,1]],[[1,2,3,0],[0,2,3,2],[2,2,3,0],[1,0,2,1]],[[1,3,2,0],[0,2,3,2],[2,2,3,0],[1,0,2,1]],[[2,2,2,0],[0,2,3,2],[2,2,3,0],[1,0,2,1]],[[1,2,2,0],[0,2,3,2],[2,2,4,0],[0,2,1,1]],[[1,2,2,0],[0,2,3,3],[2,2,3,0],[0,2,1,1]],[[1,2,2,0],[0,2,4,2],[2,2,3,0],[0,2,1,1]],[[1,2,3,0],[0,2,3,2],[2,2,3,0],[0,2,1,1]],[[1,3,2,0],[0,2,3,2],[2,2,3,0],[0,2,1,1]],[[2,2,2,0],[0,2,3,2],[2,2,3,0],[0,2,1,1]],[[1,2,2,0],[0,2,3,2],[2,2,3,0],[0,1,2,2]],[[1,2,2,0],[0,2,3,2],[2,2,3,0],[0,1,3,1]],[[1,2,2,0],[0,2,3,2],[2,2,4,0],[0,1,2,1]],[[1,2,2,0],[0,2,3,3],[2,2,3,0],[0,1,2,1]],[[1,2,2,0],[0,2,4,2],[2,2,3,0],[0,1,2,1]],[[1,2,3,0],[0,2,3,2],[2,2,3,0],[0,1,2,1]],[[1,3,2,0],[0,2,3,2],[2,2,3,0],[0,1,2,1]],[[2,2,2,0],[0,2,3,2],[2,2,3,0],[0,1,2,1]],[[1,2,2,0],[0,2,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,0],[0,2,3,3],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[0,2,4,2],[2,2,2,2],[1,1,1,0]],[[1,2,3,0],[0,2,3,2],[2,2,2,2],[1,1,1,0]],[[1,3,2,0],[0,2,3,2],[2,2,2,2],[1,1,1,0]],[[2,2,2,0],[0,2,3,2],[2,2,2,2],[1,1,1,0]],[[1,2,2,0],[0,2,3,2],[2,2,2,2],[1,1,0,2]],[[1,2,2,0],[0,2,3,2],[2,2,2,3],[1,1,0,1]],[[1,2,2,0],[0,2,3,3],[2,2,2,2],[1,1,0,1]],[[1,2,2,0],[0,2,4,2],[2,2,2,2],[1,1,0,1]],[[1,2,3,0],[0,2,3,2],[2,2,2,2],[1,1,0,1]],[[1,0,1,0],[2,3,3,0],[1,2,4,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[1,2,3,1],[2,2,2,1]],[[1,0,1,0],[2,3,3,0],[1,2,3,1],[1,3,2,1]],[[1,0,1,0],[2,3,3,0],[1,2,3,1],[1,2,3,1]],[[1,0,1,0],[2,3,3,0],[1,2,3,1],[1,2,2,2]],[[1,0,1,0],[2,3,3,0],[1,2,4,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,0],[1,2,3,2],[2,2,2,0]],[[1,0,1,0],[2,3,3,0],[1,2,3,2],[1,3,2,0]],[[1,0,1,0],[2,3,3,0],[1,2,3,2],[1,2,3,0]],[[1,0,1,0],[2,3,3,0],[1,4,2,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[1,3,2,1],[2,2,2,1]],[[1,0,1,0],[2,3,3,0],[1,3,2,1],[1,3,2,1]],[[1,0,1,0],[2,3,3,0],[1,3,2,1],[1,2,3,1]],[[1,0,1,0],[2,3,3,0],[1,3,2,1],[1,2,2,2]],[[1,0,1,0],[2,3,3,0],[1,4,2,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,0],[1,3,2,2],[2,2,2,0]],[[1,0,1,0],[2,3,3,0],[1,3,2,2],[1,3,2,0]],[[1,0,1,0],[2,3,3,0],[1,3,2,2],[1,2,3,0]],[[1,0,1,0],[2,3,3,0],[1,4,3,0],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[1,3,3,0],[2,2,2,1]],[[1,0,1,0],[2,3,3,0],[1,3,3,0],[1,3,2,1]],[[1,0,1,0],[2,3,3,0],[1,3,3,0],[1,2,3,1]],[[1,0,1,0],[2,3,3,0],[1,4,3,1],[1,1,2,1]],[[1,0,1,0],[2,3,3,0],[1,3,4,1],[1,1,2,1]],[[1,0,1,0],[2,3,3,0],[1,3,3,1],[1,1,3,1]],[[1,0,1,0],[2,3,3,0],[1,3,3,1],[1,1,2,2]],[[1,0,1,0],[2,3,3,0],[1,4,3,1],[1,2,1,1]],[[1,0,1,0],[2,3,3,0],[1,3,4,1],[1,2,1,1]],[[1,0,1,0],[2,3,3,0],[1,3,3,1],[2,2,1,1]],[[1,0,1,0],[2,3,3,0],[1,3,3,1],[1,3,1,1]],[[1,0,1,0],[2,3,3,0],[1,4,3,2],[1,1,2,0]],[[1,0,1,0],[2,3,3,0],[1,3,4,2],[1,1,2,0]],[[1,0,1,0],[2,3,3,0],[1,3,3,2],[1,1,3,0]],[[1,0,1,0],[2,3,3,0],[1,4,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,3,0],[1,3,4,2],[1,2,0,1]],[[1,0,1,0],[2,3,3,0],[1,3,3,2],[2,2,0,1]],[[1,0,1,0],[2,3,3,0],[1,3,3,2],[1,3,0,1]],[[1,0,1,0],[2,3,3,0],[1,4,3,2],[1,2,1,0]],[[1,0,1,0],[2,3,3,0],[1,3,4,2],[1,2,1,0]],[[1,0,1,0],[2,3,3,0],[1,3,3,2],[2,2,1,0]],[[1,0,1,0],[2,3,3,0],[1,3,3,2],[1,3,1,0]],[[1,3,2,0],[0,2,3,2],[2,2,2,2],[1,1,0,1]],[[2,2,2,0],[0,2,3,2],[2,2,2,2],[1,1,0,1]],[[1,0,1,0],[3,3,3,0],[2,1,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[3,1,3,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,1,4,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,1,3,1],[2,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,1,3,1],[1,3,2,1]],[[1,0,1,0],[2,3,3,0],[2,1,3,1],[1,2,3,1]],[[1,0,1,0],[2,3,3,0],[2,1,3,1],[1,2,2,2]],[[1,0,1,0],[3,3,3,0],[2,1,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,0],[3,1,3,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,0],[2,1,4,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,0],[2,1,3,2],[2,2,2,0]],[[1,0,1,0],[2,3,3,0],[2,1,3,2],[1,3,2,0]],[[1,0,1,0],[2,3,3,0],[2,1,3,2],[1,2,3,0]],[[1,0,1,0],[3,3,3,0],[2,2,2,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[3,2,2,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,2,2,1],[2,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,2,2,1],[1,3,2,1]],[[1,0,1,0],[2,3,3,0],[2,2,2,1],[1,2,3,1]],[[1,0,1,0],[2,3,3,0],[2,2,2,1],[1,2,2,2]],[[1,0,1,0],[3,3,3,0],[2,2,2,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,0],[3,2,2,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,0],[2,2,2,2],[2,2,2,0]],[[1,0,1,0],[2,3,3,0],[2,2,2,2],[1,3,2,0]],[[1,0,1,0],[2,3,3,0],[2,2,2,2],[1,2,3,0]],[[1,0,1,0],[3,3,3,0],[2,2,3,0],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[3,2,3,0],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,2,3,0],[2,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,2,3,0],[1,3,2,1]],[[1,0,1,0],[2,3,3,0],[2,2,3,0],[1,2,3,1]],[[1,0,1,0],[2,3,3,0],[2,2,4,1],[0,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,2,3,1],[0,3,2,1]],[[1,0,1,0],[2,3,3,0],[2,2,3,1],[0,2,3,1]],[[1,0,1,0],[2,3,3,0],[2,2,3,1],[0,2,2,2]],[[1,0,1,0],[3,3,3,0],[2,2,3,1],[1,2,1,1]],[[1,0,1,0],[2,3,3,0],[3,2,3,1],[1,2,1,1]],[[1,0,1,0],[2,3,3,0],[2,2,3,1],[2,2,1,1]],[[1,0,1,0],[2,3,3,0],[2,2,3,1],[1,3,1,1]],[[1,0,1,0],[2,3,3,0],[2,2,4,2],[0,2,2,0]],[[1,0,1,0],[2,3,3,0],[2,2,3,2],[0,3,2,0]],[[1,0,1,0],[2,3,3,0],[2,2,3,2],[0,2,3,0]],[[1,0,1,0],[3,3,3,0],[2,2,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,3,0],[3,2,3,2],[1,2,0,1]],[[1,0,1,0],[2,3,3,0],[2,2,3,2],[2,2,0,1]],[[1,0,1,0],[2,3,3,0],[2,2,3,2],[1,3,0,1]],[[1,0,1,0],[3,3,3,0],[2,2,3,2],[1,2,1,0]],[[1,0,1,0],[2,3,3,0],[3,2,3,2],[1,2,1,0]],[[1,0,1,0],[2,3,3,0],[2,2,3,2],[2,2,1,0]],[[1,0,1,0],[2,3,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,2,3,2],[2,2,2,3],[1,0,2,0]],[[1,2,2,0],[0,2,3,3],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[0,2,4,2],[2,2,2,2],[1,0,2,0]],[[1,0,1,0],[3,3,3,0],[2,3,1,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[3,3,1,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,1,1],[2,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,1,1],[1,3,2,1]],[[1,0,1,0],[3,3,3,0],[2,3,1,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,0],[3,3,1,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,0],[2,3,1,2],[2,2,2,0]],[[1,0,1,0],[2,3,3,0],[2,3,1,2],[1,3,2,0]],[[1,0,1,0],[3,3,3,0],[2,3,2,0],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[3,3,2,0],[1,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,2,0],[2,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,2,0],[1,3,2,1]],[[1,0,1,0],[3,3,3,0],[2,3,2,1],[0,2,2,1]],[[1,0,1,0],[2,3,3,0],[3,3,2,1],[0,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,4,2,1],[0,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,2,1],[0,3,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,2,1],[0,2,3,1]],[[1,0,1,0],[2,3,3,0],[2,3,2,1],[0,2,2,2]],[[1,0,1,0],[3,3,3,0],[2,3,2,1],[1,1,2,1]],[[1,0,1,0],[2,3,3,0],[3,3,2,1],[1,1,2,1]],[[1,0,1,0],[2,3,3,0],[2,4,2,1],[1,1,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,2,1],[2,1,2,1]],[[1,0,1,0],[3,3,3,0],[2,3,2,2],[0,2,2,0]],[[1,0,1,0],[2,3,3,0],[3,3,2,2],[0,2,2,0]],[[1,0,1,0],[2,3,3,0],[2,4,2,2],[0,2,2,0]],[[1,0,1,0],[2,3,3,0],[2,3,2,2],[0,3,2,0]],[[1,0,1,0],[2,3,3,0],[2,3,2,2],[0,2,3,0]],[[1,0,1,0],[3,3,3,0],[2,3,2,2],[1,1,2,0]],[[1,0,1,0],[2,3,3,0],[3,3,2,2],[1,1,2,0]],[[1,0,1,0],[2,3,3,0],[2,4,2,2],[1,1,2,0]],[[1,0,1,0],[2,3,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,3,0],[0,2,3,2],[2,2,2,2],[1,0,2,0]],[[1,3,2,0],[0,2,3,2],[2,2,2,2],[1,0,2,0]],[[2,2,2,0],[0,2,3,2],[2,2,2,2],[1,0,2,0]],[[1,2,2,0],[0,2,3,2],[2,2,2,2],[1,0,1,2]],[[1,2,2,0],[0,2,3,2],[2,2,2,3],[1,0,1,1]],[[1,2,2,0],[0,2,3,3],[2,2,2,2],[1,0,1,1]],[[1,2,2,0],[0,2,4,2],[2,2,2,2],[1,0,1,1]],[[1,0,1,0],[3,3,3,0],[2,3,3,0],[0,2,2,1]],[[1,0,1,0],[2,3,3,0],[3,3,3,0],[0,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,4,3,0],[0,2,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,0],[0,3,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,0],[0,2,3,1]],[[1,0,1,0],[3,3,3,0],[2,3,3,0],[1,1,2,1]],[[1,0,1,0],[2,3,3,0],[3,3,3,0],[1,1,2,1]],[[1,0,1,0],[2,3,3,0],[2,4,3,0],[1,1,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,0],[2,1,2,1]],[[1,0,1,0],[3,3,3,0],[2,3,3,1],[0,1,2,1]],[[1,0,1,0],[2,3,3,0],[3,3,3,1],[0,1,2,1]],[[1,0,1,0],[2,3,3,0],[2,4,3,1],[0,1,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,4,1],[0,1,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,1],[0,1,3,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,1],[0,1,2,2]],[[1,0,1,0],[3,3,3,0],[2,3,3,1],[0,2,1,1]],[[1,0,1,0],[2,3,3,0],[3,3,3,1],[0,2,1,1]],[[1,0,1,0],[2,3,3,0],[2,4,3,1],[0,2,1,1]],[[1,0,1,0],[2,3,3,0],[2,3,4,1],[0,2,1,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,1],[0,3,1,1]],[[1,0,1,0],[3,3,3,0],[2,3,3,1],[1,0,2,1]],[[1,0,1,0],[2,3,3,0],[3,3,3,1],[1,0,2,1]],[[1,0,1,0],[2,3,3,0],[2,4,3,1],[1,0,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,4,1],[1,0,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,1],[2,0,2,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,1],[1,0,3,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,1],[1,0,2,2]],[[1,0,1,0],[3,3,3,0],[2,3,3,1],[1,1,1,1]],[[1,0,1,0],[2,3,3,0],[3,3,3,1],[1,1,1,1]],[[1,0,1,0],[2,3,3,0],[2,4,3,1],[1,1,1,1]],[[1,0,1,0],[2,3,3,0],[2,3,4,1],[1,1,1,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,1],[2,1,1,1]],[[1,0,1,0],[3,3,3,0],[2,3,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,3,0],[3,3,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,3,0],[2,4,3,1],[1,2,0,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,3,0],[0,2,3,2],[2,2,2,2],[1,0,1,1]],[[1,3,2,0],[0,2,3,2],[2,2,2,2],[1,0,1,1]],[[2,2,2,0],[0,2,3,2],[2,2,2,2],[1,0,1,1]],[[1,0,1,0],[3,3,3,0],[2,3,3,2],[0,1,1,1]],[[1,0,1,0],[2,3,3,0],[3,3,3,2],[0,1,1,1]],[[1,0,1,0],[2,3,3,0],[2,4,3,2],[0,1,1,1]],[[1,0,1,0],[2,3,3,0],[2,3,4,2],[0,1,1,1]],[[1,0,1,0],[3,3,3,0],[2,3,3,2],[0,1,2,0]],[[1,0,1,0],[2,3,3,0],[3,3,3,2],[0,1,2,0]],[[1,0,1,0],[2,3,3,0],[2,4,3,2],[0,1,2,0]],[[1,0,1,0],[2,3,3,0],[2,3,4,2],[0,1,2,0]],[[1,0,1,0],[2,3,3,0],[2,3,3,2],[0,1,3,0]],[[1,0,1,0],[3,3,3,0],[2,3,3,2],[0,2,0,1]],[[1,0,1,0],[2,3,3,0],[3,3,3,2],[0,2,0,1]],[[1,0,1,0],[2,3,3,0],[2,4,3,2],[0,2,0,1]],[[1,0,1,0],[2,3,3,0],[2,3,4,2],[0,2,0,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,2],[0,3,0,1]],[[1,0,1,0],[3,3,3,0],[2,3,3,2],[0,2,1,0]],[[1,0,1,0],[2,3,3,0],[3,3,3,2],[0,2,1,0]],[[1,0,1,0],[2,3,3,0],[2,4,3,2],[0,2,1,0]],[[1,0,1,0],[2,3,3,0],[2,3,4,2],[0,2,1,0]],[[1,0,1,0],[2,3,3,0],[2,3,3,2],[0,3,1,0]],[[1,0,1,0],[3,3,3,0],[2,3,3,2],[1,0,1,1]],[[1,0,1,0],[2,3,3,0],[3,3,3,2],[1,0,1,1]],[[1,0,1,0],[2,3,3,0],[2,4,3,2],[1,0,1,1]],[[1,0,1,0],[2,3,3,0],[2,3,4,2],[1,0,1,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,2],[2,0,1,1]],[[1,0,1,0],[3,3,3,0],[2,3,3,2],[1,0,2,0]],[[1,0,1,0],[2,3,3,0],[3,3,3,2],[1,0,2,0]],[[1,0,1,0],[2,3,3,0],[2,4,3,2],[1,0,2,0]],[[1,0,1,0],[2,3,3,0],[2,3,4,2],[1,0,2,0]],[[1,0,1,0],[2,3,3,0],[2,3,3,2],[2,0,2,0]],[[1,0,1,0],[2,3,3,0],[2,3,3,2],[1,0,3,0]],[[1,0,1,0],[3,3,3,0],[2,3,3,2],[1,1,0,1]],[[1,0,1,0],[2,3,3,0],[3,3,3,2],[1,1,0,1]],[[1,0,1,0],[2,3,3,0],[2,4,3,2],[1,1,0,1]],[[1,0,1,0],[2,3,3,0],[2,3,4,2],[1,1,0,1]],[[1,0,1,0],[2,3,3,0],[2,3,3,2],[2,1,0,1]],[[1,0,1,0],[3,3,3,0],[2,3,3,2],[1,1,1,0]],[[1,0,1,0],[2,3,3,0],[3,3,3,2],[1,1,1,0]],[[1,0,1,0],[2,3,3,0],[2,4,3,2],[1,1,1,0]],[[1,0,1,0],[2,3,3,0],[2,3,4,2],[1,1,1,0]],[[1,0,1,0],[2,3,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,2,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,2,0],[0,2,3,3],[2,2,2,2],[0,2,1,0]],[[1,2,2,0],[0,2,4,2],[2,2,2,2],[0,2,1,0]],[[1,2,3,0],[0,2,3,2],[2,2,2,2],[0,2,1,0]],[[1,3,2,0],[0,2,3,2],[2,2,2,2],[0,2,1,0]],[[2,2,2,0],[0,2,3,2],[2,2,2,2],[0,2,1,0]],[[1,0,1,0],[3,3,3,0],[2,3,3,2],[1,2,0,0]],[[1,0,1,0],[2,3,3,0],[3,3,3,2],[1,2,0,0]],[[1,0,1,0],[2,3,3,0],[2,4,3,2],[1,2,0,0]],[[1,0,1,0],[2,3,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,2,3,2],[2,2,2,2],[0,2,0,2]],[[1,2,2,0],[0,2,3,2],[2,2,2,3],[0,2,0,1]],[[1,2,2,0],[0,2,3,3],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[0,2,4,2],[2,2,2,2],[0,2,0,1]],[[1,2,3,0],[0,2,3,2],[2,2,2,2],[0,2,0,1]],[[1,3,2,0],[0,2,3,2],[2,2,2,2],[0,2,0,1]],[[2,2,2,0],[0,2,3,2],[2,2,2,2],[0,2,0,1]],[[1,2,2,0],[0,2,3,2],[2,2,2,3],[0,1,2,0]],[[1,2,2,0],[0,2,3,3],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[0,2,4,2],[2,2,2,2],[0,1,2,0]],[[1,2,3,0],[0,2,3,2],[2,2,2,2],[0,1,2,0]],[[1,3,2,0],[0,2,3,2],[2,2,2,2],[0,1,2,0]],[[2,2,2,0],[0,2,3,2],[2,2,2,2],[0,1,2,0]],[[1,2,2,0],[0,2,3,2],[2,2,2,2],[0,1,1,2]],[[1,2,2,0],[0,2,3,2],[2,2,2,3],[0,1,1,1]],[[1,2,2,0],[0,2,3,3],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[0,2,4,2],[2,2,2,2],[0,1,1,1]],[[1,2,3,0],[0,2,3,2],[2,2,2,2],[0,1,1,1]],[[1,3,2,0],[0,2,3,2],[2,2,2,2],[0,1,1,1]],[[1,0,1,0],[2,3,3,1],[1,4,0,2],[1,2,2,1]],[[1,0,1,0],[2,3,3,1],[1,3,0,3],[1,2,2,1]],[[1,0,1,0],[2,3,3,1],[1,3,0,2],[2,2,2,1]],[[1,0,1,0],[2,3,3,1],[1,3,0,2],[1,3,2,1]],[[1,0,1,0],[2,3,3,1],[1,3,0,2],[1,2,3,1]],[[1,0,1,0],[2,3,3,1],[1,3,0,2],[1,2,2,2]],[[1,0,1,0],[2,3,3,1],[1,4,1,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,1],[1,3,1,1],[2,2,2,1]],[[1,0,1,0],[2,3,3,1],[1,3,1,1],[1,3,2,1]],[[1,0,1,0],[2,3,3,1],[1,3,1,1],[1,2,3,1]],[[1,0,1,0],[2,3,3,1],[1,3,1,1],[1,2,2,2]],[[1,0,1,0],[2,3,3,1],[1,4,1,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,1],[1,3,1,2],[2,2,2,0]],[[1,0,1,0],[2,3,3,1],[1,3,1,2],[1,3,2,0]],[[1,0,1,0],[2,3,3,1],[1,3,1,2],[1,2,3,0]],[[1,0,1,0],[2,3,3,1],[1,4,2,1],[1,2,1,1]],[[1,0,1,0],[2,3,3,1],[1,3,2,1],[2,2,1,1]],[[1,0,1,0],[2,3,3,1],[1,3,2,1],[1,3,1,1]],[[1,0,1,0],[2,3,3,1],[1,4,2,2],[1,2,0,1]],[[1,0,1,0],[2,3,3,1],[1,3,2,2],[2,2,0,1]],[[1,0,1,0],[2,3,3,1],[1,3,2,2],[1,3,0,1]],[[1,0,1,0],[2,3,3,1],[1,4,2,2],[1,2,1,0]],[[1,0,1,0],[2,3,3,1],[1,3,2,2],[2,2,1,0]],[[1,0,1,0],[2,3,3,1],[1,3,2,2],[1,3,1,0]],[[2,2,2,0],[0,2,3,2],[2,2,2,2],[0,1,1,1]],[[1,2,2,0],[0,2,3,2],[2,2,2,2],[0,0,2,2]],[[1,2,2,0],[0,2,3,2],[2,2,2,3],[0,0,2,1]],[[1,2,2,0],[0,2,3,3],[2,2,2,2],[0,0,2,1]],[[1,2,2,0],[0,2,4,2],[2,2,2,2],[0,0,2,1]],[[1,2,3,0],[0,2,3,2],[2,2,2,2],[0,0,2,1]],[[1,3,2,0],[0,2,3,2],[2,2,2,2],[0,0,2,1]],[[2,2,2,0],[0,2,3,2],[2,2,2,2],[0,0,2,1]],[[1,2,2,0],[0,2,3,2],[2,2,1,2],[1,0,2,2]],[[1,2,2,0],[0,2,3,2],[2,2,1,2],[1,0,3,1]],[[1,2,2,0],[0,2,3,2],[2,2,1,3],[1,0,2,1]],[[1,2,2,0],[0,2,3,3],[2,2,1,2],[1,0,2,1]],[[1,2,2,0],[0,2,4,2],[2,2,1,2],[1,0,2,1]],[[1,2,3,0],[0,2,3,2],[2,2,1,2],[1,0,2,1]],[[1,3,2,0],[0,2,3,2],[2,2,1,2],[1,0,2,1]],[[2,2,2,0],[0,2,3,2],[2,2,1,2],[1,0,2,1]],[[1,2,2,0],[0,2,3,2],[2,2,1,2],[0,1,2,2]],[[1,2,2,0],[0,2,3,2],[2,2,1,2],[0,1,3,1]],[[1,0,1,0],[3,3,3,1],[2,2,0,2],[1,2,2,1]],[[1,0,1,0],[2,3,3,1],[3,2,0,2],[1,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,2,0,3],[1,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,2,0,2],[2,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,2,0,2],[1,3,2,1]],[[1,0,1,0],[2,3,3,1],[2,2,0,2],[1,2,3,1]],[[1,0,1,0],[2,3,3,1],[2,2,0,2],[1,2,2,2]],[[1,0,1,0],[3,3,3,1],[2,2,1,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,1],[3,2,1,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,2,1,1],[2,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,2,1,1],[1,3,2,1]],[[1,0,1,0],[2,3,3,1],[2,2,1,1],[1,2,3,1]],[[1,0,1,0],[2,3,3,1],[2,2,1,1],[1,2,2,2]],[[1,0,1,0],[3,3,3,1],[2,2,1,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,1],[3,2,1,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,1],[2,2,1,2],[2,2,2,0]],[[1,0,1,0],[2,3,3,1],[2,2,1,2],[1,3,2,0]],[[1,0,1,0],[2,3,3,1],[2,2,1,2],[1,2,3,0]],[[1,0,1,0],[3,3,3,1],[2,2,2,1],[1,2,1,1]],[[1,0,1,0],[2,3,3,1],[3,2,2,1],[1,2,1,1]],[[1,0,1,0],[2,3,3,1],[2,2,2,1],[2,2,1,1]],[[1,0,1,0],[2,3,3,1],[2,2,2,1],[1,3,1,1]],[[1,0,1,0],[3,3,3,1],[2,2,2,2],[1,2,0,1]],[[1,0,1,0],[2,3,3,1],[3,2,2,2],[1,2,0,1]],[[1,0,1,0],[2,3,3,1],[2,2,2,2],[2,2,0,1]],[[1,0,1,0],[2,3,3,1],[2,2,2,2],[1,3,0,1]],[[1,0,1,0],[3,3,3,1],[2,2,2,2],[1,2,1,0]],[[1,0,1,0],[2,3,3,1],[3,2,2,2],[1,2,1,0]],[[1,0,1,0],[2,3,3,1],[2,2,2,2],[2,2,1,0]],[[1,0,1,0],[2,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,0],[0,2,3,2],[2,2,1,3],[0,1,2,1]],[[1,2,2,0],[0,2,3,3],[2,2,1,2],[0,1,2,1]],[[1,2,2,0],[0,2,4,2],[2,2,1,2],[0,1,2,1]],[[1,2,3,0],[0,2,3,2],[2,2,1,2],[0,1,2,1]],[[1,3,2,0],[0,2,3,2],[2,2,1,2],[0,1,2,1]],[[2,2,2,0],[0,2,3,2],[2,2,1,2],[0,1,2,1]],[[1,2,2,0],[0,2,3,2],[2,2,0,2],[0,2,2,2]],[[1,2,2,0],[0,2,3,2],[2,2,0,2],[0,2,3,1]],[[1,2,2,0],[0,2,3,2],[2,2,0,2],[0,3,2,1]],[[1,2,2,0],[0,2,3,2],[2,2,0,3],[0,2,2,1]],[[1,2,2,0],[0,2,3,3],[2,2,0,2],[0,2,2,1]],[[1,2,2,0],[0,2,4,2],[2,2,0,2],[0,2,2,1]],[[1,2,3,0],[0,2,3,2],[2,2,0,2],[0,2,2,1]],[[1,3,2,0],[0,2,3,2],[2,2,0,2],[0,2,2,1]],[[2,2,2,0],[0,2,3,2],[2,2,0,2],[0,2,2,1]],[[1,0,1,0],[3,3,3,1],[2,3,0,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,1],[3,3,0,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,3,0,1],[2,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,3,0,1],[1,3,2,1]],[[1,0,1,0],[3,3,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,1,0],[2,3,3,1],[3,3,0,2],[0,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,4,0,2],[0,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,3,0,3],[0,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,3,0,2],[0,3,2,1]],[[1,0,1,0],[2,3,3,1],[2,3,0,2],[0,2,3,1]],[[1,0,1,0],[2,3,3,1],[2,3,0,2],[0,2,2,2]],[[1,0,1,0],[3,3,3,1],[2,3,0,2],[1,1,2,1]],[[1,0,1,0],[2,3,3,1],[3,3,0,2],[1,1,2,1]],[[1,0,1,0],[2,3,3,1],[2,4,0,2],[1,1,2,1]],[[1,0,1,0],[2,3,3,1],[2,3,0,2],[2,1,2,1]],[[1,0,1,0],[3,3,3,1],[2,3,0,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,1],[3,3,0,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,1],[2,3,0,2],[2,2,2,0]],[[1,0,1,0],[2,3,3,1],[2,3,0,2],[1,3,2,0]],[[1,0,1,0],[3,3,3,1],[2,3,1,1],[0,2,2,1]],[[1,0,1,0],[2,3,3,1],[3,3,1,1],[0,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,4,1,1],[0,2,2,1]],[[1,0,1,0],[2,3,3,1],[2,3,1,1],[0,3,2,1]],[[1,0,1,0],[2,3,3,1],[2,3,1,1],[0,2,3,1]],[[1,0,1,0],[2,3,3,1],[2,3,1,1],[0,2,2,2]],[[1,0,1,0],[3,3,3,1],[2,3,1,1],[1,1,2,1]],[[1,0,1,0],[2,3,3,1],[3,3,1,1],[1,1,2,1]],[[1,0,1,0],[2,3,3,1],[2,4,1,1],[1,1,2,1]],[[1,0,1,0],[2,3,3,1],[2,3,1,1],[2,1,2,1]],[[1,0,1,0],[3,3,3,1],[2,3,1,2],[0,2,2,0]],[[1,0,1,0],[2,3,3,1],[3,3,1,2],[0,2,2,0]],[[1,0,1,0],[2,3,3,1],[2,4,1,2],[0,2,2,0]],[[1,0,1,0],[2,3,3,1],[2,3,1,2],[0,3,2,0]],[[1,0,1,0],[2,3,3,1],[2,3,1,2],[0,2,3,0]],[[1,0,1,0],[3,3,3,1],[2,3,1,2],[1,1,2,0]],[[1,0,1,0],[2,3,3,1],[3,3,1,2],[1,1,2,0]],[[1,0,1,0],[2,3,3,1],[2,4,1,2],[1,1,2,0]],[[1,0,1,0],[2,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,0],[0,2,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,0],[0,2,3,3],[2,1,3,2],[1,0,2,0]],[[1,2,2,0],[0,2,4,2],[2,1,3,2],[1,0,2,0]],[[1,2,3,0],[0,2,3,2],[2,1,3,2],[1,0,2,0]],[[1,3,2,0],[0,2,3,2],[2,1,3,2],[1,0,2,0]],[[1,2,2,0],[0,2,3,2],[2,1,3,2],[1,0,1,2]],[[1,0,1,0],[3,3,3,1],[2,3,2,1],[0,1,2,1]],[[1,0,1,0],[2,3,3,1],[3,3,2,1],[0,1,2,1]],[[1,0,1,0],[2,3,3,1],[2,4,2,1],[0,1,2,1]],[[1,0,1,0],[3,3,3,1],[2,3,2,1],[0,2,1,1]],[[1,0,1,0],[2,3,3,1],[3,3,2,1],[0,2,1,1]],[[1,0,1,0],[2,3,3,1],[2,4,2,1],[0,2,1,1]],[[1,0,1,0],[2,3,3,1],[2,3,2,1],[0,3,1,1]],[[1,0,1,0],[3,3,3,1],[2,3,2,1],[1,0,2,1]],[[1,0,1,0],[2,3,3,1],[3,3,2,1],[1,0,2,1]],[[1,0,1,0],[2,3,3,1],[2,4,2,1],[1,0,2,1]],[[1,0,1,0],[2,3,3,1],[2,3,2,1],[2,0,2,1]],[[1,0,1,0],[3,3,3,1],[2,3,2,1],[1,1,1,1]],[[1,0,1,0],[2,3,3,1],[3,3,2,1],[1,1,1,1]],[[1,0,1,0],[2,3,3,1],[2,4,2,1],[1,1,1,1]],[[1,0,1,0],[2,3,3,1],[2,3,2,1],[2,1,1,1]],[[1,0,1,0],[3,3,3,1],[2,3,2,1],[1,2,0,1]],[[1,0,1,0],[2,3,3,1],[3,3,2,1],[1,2,0,1]],[[1,0,1,0],[2,3,3,1],[2,4,2,1],[1,2,0,1]],[[1,0,1,0],[2,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,2,2,0],[0,2,3,2],[2,1,3,3],[1,0,1,1]],[[1,2,2,0],[0,2,3,3],[2,1,3,2],[1,0,1,1]],[[1,2,2,0],[0,2,4,2],[2,1,3,2],[1,0,1,1]],[[1,2,3,0],[0,2,3,2],[2,1,3,2],[1,0,1,1]],[[1,3,2,0],[0,2,3,2],[2,1,3,2],[1,0,1,1]],[[1,0,1,0],[3,3,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,1,0],[2,3,3,1],[3,3,2,2],[0,1,1,1]],[[1,0,1,0],[2,3,3,1],[2,4,2,2],[0,1,1,1]],[[1,0,1,0],[3,3,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,1,0],[2,3,3,1],[3,3,2,2],[0,1,2,0]],[[1,0,1,0],[2,3,3,1],[2,4,2,2],[0,1,2,0]],[[1,0,1,0],[3,3,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,1,0],[2,3,3,1],[3,3,2,2],[0,2,0,1]],[[1,0,1,0],[2,3,3,1],[2,4,2,2],[0,2,0,1]],[[1,0,1,0],[2,3,3,1],[2,3,2,2],[0,3,0,1]],[[1,0,1,0],[3,3,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,1,0],[2,3,3,1],[3,3,2,2],[0,2,1,0]],[[1,0,1,0],[2,3,3,1],[2,4,2,2],[0,2,1,0]],[[1,0,1,0],[2,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,0,1,0],[3,3,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,1,0],[2,3,3,1],[3,3,2,2],[1,0,1,1]],[[1,0,1,0],[2,3,3,1],[2,4,2,2],[1,0,1,1]],[[1,0,1,0],[2,3,3,1],[2,3,2,2],[2,0,1,1]],[[1,0,1,0],[3,3,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,1,0],[2,3,3,1],[3,3,2,2],[1,0,2,0]],[[1,0,1,0],[2,3,3,1],[2,4,2,2],[1,0,2,0]],[[1,0,1,0],[2,3,3,1],[2,3,2,2],[2,0,2,0]],[[1,0,1,0],[3,3,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,1,0],[2,3,3,1],[3,3,2,2],[1,1,0,1]],[[1,0,1,0],[2,3,3,1],[2,4,2,2],[1,1,0,1]],[[1,0,1,0],[2,3,3,1],[2,3,2,2],[2,1,0,1]],[[1,0,1,0],[3,3,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,1,0],[2,3,3,1],[3,3,2,2],[1,1,1,0]],[[1,0,1,0],[2,3,3,1],[2,4,2,2],[1,1,1,0]],[[1,0,1,0],[2,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,0,1,0],[3,3,3,1],[2,3,2,2],[1,2,0,0]],[[1,0,1,0],[2,3,3,1],[3,3,2,2],[1,2,0,0]],[[1,0,1,0],[2,3,3,1],[2,4,2,2],[1,2,0,0]],[[1,0,1,0],[2,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,0],[0,2,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,2,0],[0,2,3,3],[2,1,3,2],[0,1,2,0]],[[1,2,2,0],[0,2,4,2],[2,1,3,2],[0,1,2,0]],[[1,2,3,0],[0,2,3,2],[2,1,3,2],[0,1,2,0]],[[1,3,2,0],[0,2,3,2],[2,1,3,2],[0,1,2,0]],[[1,2,2,0],[0,2,3,2],[2,1,3,2],[0,1,1,2]],[[1,2,2,0],[0,2,3,2],[2,1,3,3],[0,1,1,1]],[[1,2,2,0],[0,2,3,3],[2,1,3,2],[0,1,1,1]],[[1,2,2,0],[0,2,4,2],[2,1,3,2],[0,1,1,1]],[[1,2,3,0],[0,2,3,2],[2,1,3,2],[0,1,1,1]],[[1,3,2,0],[0,2,3,2],[2,1,3,2],[0,1,1,1]],[[1,2,2,0],[0,2,3,2],[2,1,3,2],[0,0,2,2]],[[1,2,2,0],[0,2,3,2],[2,1,3,3],[0,0,2,1]],[[1,2,2,0],[0,2,3,3],[2,1,3,2],[0,0,2,1]],[[1,2,2,0],[0,2,4,2],[2,1,3,2],[0,0,2,1]],[[1,2,3,0],[0,2,3,2],[2,1,3,2],[0,0,2,1]],[[1,3,2,0],[0,2,3,2],[2,1,3,2],[0,0,2,1]],[[1,2,2,0],[0,2,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,2,0],[0,2,3,2],[2,1,3,1],[0,3,2,0]],[[1,2,2,0],[0,2,3,2],[2,1,4,1],[0,2,2,0]],[[1,2,2,0],[0,2,3,3],[2,1,3,1],[0,2,2,0]],[[1,2,2,0],[0,2,4,2],[2,1,3,1],[0,2,2,0]],[[1,2,3,0],[0,2,3,2],[2,1,3,1],[0,2,2,0]],[[1,3,2,0],[0,2,3,2],[2,1,3,1],[0,2,2,0]],[[2,2,2,0],[0,2,3,2],[2,1,3,1],[0,2,2,0]],[[1,2,2,0],[0,2,3,2],[2,1,4,1],[0,2,1,1]],[[1,2,2,0],[0,2,3,3],[2,1,3,1],[0,2,1,1]],[[1,2,2,0],[0,2,4,2],[2,1,3,1],[0,2,1,1]],[[1,0,1,0],[3,3,3,1],[2,3,3,2],[0,2,0,0]],[[1,0,1,0],[2,3,3,1],[3,3,3,2],[0,2,0,0]],[[1,0,1,0],[2,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,3,0],[0,2,3,2],[2,1,3,1],[0,2,1,1]],[[1,3,2,0],[0,2,3,2],[2,1,3,1],[0,2,1,1]],[[2,2,2,0],[0,2,3,2],[2,1,3,1],[0,2,1,1]],[[1,2,2,0],[0,2,3,2],[2,1,3,0],[0,2,2,2]],[[1,2,2,0],[0,2,3,2],[2,1,3,0],[0,2,3,1]],[[1,2,2,0],[0,2,3,2],[2,1,3,0],[0,3,2,1]],[[1,2,2,0],[0,2,3,2],[2,1,4,0],[0,2,2,1]],[[1,2,2,0],[0,2,3,3],[2,1,3,0],[0,2,2,1]],[[1,2,2,0],[0,2,4,2],[2,1,3,0],[0,2,2,1]],[[1,2,3,0],[0,2,3,2],[2,1,3,0],[0,2,2,1]],[[1,3,2,0],[0,2,3,2],[2,1,3,0],[0,2,2,1]],[[2,2,2,0],[0,2,3,2],[2,1,3,0],[0,2,2,1]],[[1,0,1,0],[3,3,3,1],[2,3,3,2],[1,1,0,0]],[[1,0,1,0],[2,3,3,1],[3,3,3,2],[1,1,0,0]],[[1,0,1,0],[2,3,3,1],[2,4,3,2],[1,1,0,0]],[[1,0,1,0],[2,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,0],[0,2,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,0],[0,2,3,3],[2,1,2,2],[0,2,2,0]],[[1,2,2,0],[0,2,4,2],[2,1,2,2],[0,2,2,0]],[[1,2,3,0],[0,2,3,2],[2,1,2,2],[0,2,2,0]],[[1,3,2,0],[0,2,3,2],[2,1,2,2],[0,2,2,0]],[[2,2,2,0],[0,2,3,2],[2,1,2,2],[0,2,2,0]],[[1,2,2,0],[0,2,3,2],[2,1,2,2],[0,2,1,2]],[[1,2,2,0],[0,2,3,2],[2,1,2,3],[0,2,1,1]],[[1,2,2,0],[0,2,3,3],[2,1,2,2],[0,2,1,1]],[[1,2,2,0],[0,2,4,2],[2,1,2,2],[0,2,1,1]],[[1,2,3,0],[0,2,3,2],[2,1,2,2],[0,2,1,1]],[[1,3,2,0],[0,2,3,2],[2,1,2,2],[0,2,1,1]],[[2,2,2,0],[0,2,3,2],[2,1,2,2],[0,2,1,1]],[[1,2,2,0],[0,2,3,2],[2,1,1,2],[0,2,2,2]],[[1,2,2,0],[0,2,3,2],[2,1,1,2],[0,2,3,1]],[[1,2,2,0],[0,2,3,2],[2,1,1,2],[0,3,2,1]],[[1,2,2,0],[0,2,3,2],[2,1,1,3],[0,2,2,1]],[[1,2,2,0],[0,2,3,3],[2,1,1,2],[0,2,2,1]],[[1,2,2,0],[0,2,4,2],[2,1,1,2],[0,2,2,1]],[[1,2,3,0],[0,2,3,2],[2,1,1,2],[0,2,2,1]],[[1,3,2,0],[0,2,3,2],[2,1,1,2],[0,2,2,1]],[[2,2,2,0],[0,2,3,2],[2,1,1,2],[0,2,2,1]],[[1,2,2,0],[0,2,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,2,0],[0,2,3,2],[2,1,0,2],[1,2,3,1]],[[1,2,2,0],[0,2,3,2],[2,1,0,2],[1,3,2,1]],[[1,2,2,0],[0,2,3,2],[2,1,0,2],[2,2,2,1]],[[1,2,2,0],[0,2,3,2],[2,1,0,3],[1,2,2,1]],[[1,2,2,0],[0,2,3,2],[3,1,0,2],[1,2,2,1]],[[1,2,2,0],[0,2,3,3],[2,1,0,2],[1,2,2,1]],[[1,2,2,0],[0,2,4,2],[2,1,0,2],[1,2,2,1]],[[1,2,3,0],[0,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,3,2,0],[0,2,3,2],[2,1,0,2],[1,2,2,1]],[[2,2,2,0],[0,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,0],[2,3,3,2],[1,4,0,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,2],[1,3,0,1],[2,2,2,1]],[[1,0,1,0],[2,3,3,2],[1,3,0,1],[1,3,2,1]],[[1,0,1,0],[2,3,3,2],[1,3,0,1],[1,2,3,1]],[[1,0,1,0],[2,3,3,2],[1,3,0,1],[1,2,2,2]],[[1,0,1,0],[2,3,3,2],[1,4,0,2],[1,2,1,1]],[[1,0,1,0],[2,3,3,2],[1,3,0,2],[2,2,1,1]],[[1,0,1,0],[2,3,3,2],[1,3,0,2],[1,3,1,1]],[[1,0,1,0],[2,3,3,2],[1,4,0,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,2],[1,3,0,2],[2,2,2,0]],[[1,0,1,0],[2,3,3,2],[1,3,0,2],[1,3,2,0]],[[1,0,1,0],[2,3,3,2],[1,3,0,2],[1,2,3,0]],[[1,0,1,0],[2,3,3,2],[1,4,1,0],[1,2,2,1]],[[1,0,1,0],[2,3,3,2],[1,3,1,0],[2,2,2,1]],[[1,0,1,0],[2,3,3,2],[1,3,1,0],[1,3,2,1]],[[1,0,1,0],[2,3,3,2],[1,3,1,0],[1,2,3,1]],[[1,0,1,0],[2,3,3,2],[1,3,1,0],[1,2,2,2]],[[1,0,1,0],[2,3,3,2],[1,4,1,1],[1,2,2,0]],[[1,0,1,0],[2,3,3,2],[1,3,1,1],[2,2,2,0]],[[1,0,1,0],[2,3,3,2],[1,3,1,1],[1,3,2,0]],[[1,0,1,0],[2,3,3,2],[1,3,1,1],[1,2,3,0]],[[1,0,1,0],[2,3,3,2],[1,4,1,2],[1,2,0,1]],[[1,0,1,0],[2,3,3,2],[1,3,1,2],[2,2,0,1]],[[1,0,1,0],[2,3,3,2],[1,3,1,2],[1,3,0,1]],[[1,0,1,0],[2,3,3,2],[1,4,1,2],[1,2,1,0]],[[1,0,1,0],[2,3,3,2],[1,3,1,2],[2,2,1,0]],[[1,0,1,0],[2,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,2,0],[0,2,3,2],[2,0,3,3],[0,2,2,0]],[[1,0,1,0],[2,3,3,2],[1,4,2,0],[1,2,1,1]],[[1,0,1,0],[2,3,3,2],[1,3,2,0],[2,2,1,1]],[[1,0,1,0],[2,3,3,2],[1,3,2,0],[1,3,1,1]],[[1,0,1,0],[2,3,3,2],[1,4,2,1],[1,2,0,1]],[[1,0,1,0],[2,3,3,2],[1,3,2,1],[2,2,0,1]],[[1,0,1,0],[2,3,3,2],[1,3,2,1],[1,3,0,1]],[[1,0,1,0],[2,3,3,2],[1,4,2,1],[1,2,1,0]],[[1,0,1,0],[2,3,3,2],[1,3,2,1],[2,2,1,0]],[[1,0,1,0],[2,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,0],[0,2,3,3],[2,0,3,2],[0,2,2,0]],[[1,2,2,0],[0,2,4,2],[2,0,3,2],[0,2,2,0]],[[1,2,3,0],[0,2,3,2],[2,0,3,2],[0,2,2,0]],[[1,3,2,0],[0,2,3,2],[2,0,3,2],[0,2,2,0]],[[1,2,2,0],[0,2,3,2],[2,0,3,2],[0,2,1,2]],[[1,2,2,0],[0,2,3,2],[2,0,3,3],[0,2,1,1]],[[1,2,2,0],[0,2,3,3],[2,0,3,2],[0,2,1,1]],[[1,2,2,0],[0,2,4,2],[2,0,3,2],[0,2,1,1]],[[1,2,3,0],[0,2,3,2],[2,0,3,2],[0,2,1,1]],[[1,3,2,0],[0,2,3,2],[2,0,3,2],[0,2,1,1]],[[1,2,2,0],[0,2,3,2],[2,0,3,2],[0,1,2,2]],[[1,2,2,0],[0,2,3,2],[2,0,3,3],[0,1,2,1]],[[1,2,2,0],[0,2,3,3],[2,0,3,2],[0,1,2,1]],[[1,2,2,0],[0,2,4,2],[2,0,3,2],[0,1,2,1]],[[1,2,3,0],[0,2,3,2],[2,0,3,2],[0,1,2,1]],[[1,3,2,0],[0,2,3,2],[2,0,3,2],[0,1,2,1]],[[1,0,1,0],[2,3,3,2],[1,4,3,0],[1,2,1,0]],[[1,0,1,0],[2,3,3,2],[1,3,3,0],[2,2,1,0]],[[1,0,1,0],[2,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,0],[0,2,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,2,0],[0,2,3,2],[2,0,3,1],[1,3,2,0]],[[1,2,2,0],[0,2,3,2],[2,0,3,1],[2,2,2,0]],[[1,2,2,0],[0,2,3,2],[2,0,4,1],[1,2,2,0]],[[1,2,2,0],[0,2,3,2],[3,0,3,1],[1,2,2,0]],[[1,2,2,0],[0,2,3,3],[2,0,3,1],[1,2,2,0]],[[1,2,2,0],[0,2,4,2],[2,0,3,1],[1,2,2,0]],[[1,2,3,0],[0,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,3,2,0],[0,2,3,2],[2,0,3,1],[1,2,2,0]],[[2,2,2,0],[0,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,2,0],[0,2,3,2],[2,0,4,1],[1,2,1,1]],[[1,2,2,0],[0,2,3,3],[2,0,3,1],[1,2,1,1]],[[1,2,2,0],[0,2,4,2],[2,0,3,1],[1,2,1,1]],[[1,2,3,0],[0,2,3,2],[2,0,3,1],[1,2,1,1]],[[1,3,2,0],[0,2,3,2],[2,0,3,1],[1,2,1,1]],[[2,2,2,0],[0,2,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,2,0],[0,2,3,2],[2,0,3,0],[1,2,2,2]],[[1,2,2,0],[0,2,3,2],[2,0,3,0],[1,2,3,1]],[[1,2,2,0],[0,2,3,2],[2,0,3,0],[1,3,2,1]],[[1,2,2,0],[0,2,3,2],[2,0,3,0],[2,2,2,1]],[[1,2,2,0],[0,2,3,2],[2,0,4,0],[1,2,2,1]],[[1,2,2,0],[0,2,3,2],[3,0,3,0],[1,2,2,1]],[[1,2,2,0],[0,2,3,3],[2,0,3,0],[1,2,2,1]],[[1,2,2,0],[0,2,4,2],[2,0,3,0],[1,2,2,1]],[[1,2,3,0],[0,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,3,2,0],[0,2,3,2],[2,0,3,0],[1,2,2,1]],[[2,2,2,0],[0,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,2,0],[0,2,3,2],[2,0,2,3],[1,2,2,0]],[[1,2,2,0],[0,2,3,3],[2,0,2,2],[1,2,2,0]],[[1,2,2,0],[0,2,4,2],[2,0,2,2],[1,2,2,0]],[[1,2,3,0],[0,2,3,2],[2,0,2,2],[1,2,2,0]],[[1,3,2,0],[0,2,3,2],[2,0,2,2],[1,2,2,0]],[[2,2,2,0],[0,2,3,2],[2,0,2,2],[1,2,2,0]],[[1,2,2,0],[0,2,3,2],[2,0,2,2],[1,2,1,2]],[[1,2,2,0],[0,2,3,2],[2,0,2,3],[1,2,1,1]],[[1,2,2,0],[0,2,3,3],[2,0,2,2],[1,2,1,1]],[[1,2,2,0],[0,2,4,2],[2,0,2,2],[1,2,1,1]],[[1,2,3,0],[0,2,3,2],[2,0,2,2],[1,2,1,1]],[[1,3,2,0],[0,2,3,2],[2,0,2,2],[1,2,1,1]],[[2,2,2,0],[0,2,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,2,0],[0,2,3,2],[2,0,2,2],[0,2,2,2]],[[1,2,2,0],[0,2,3,2],[2,0,2,2],[0,2,3,1]],[[1,2,2,0],[0,2,3,2],[2,0,2,3],[0,2,2,1]],[[1,2,2,0],[0,2,3,3],[2,0,2,2],[0,2,2,1]],[[1,2,2,0],[0,2,4,2],[2,0,2,2],[0,2,2,1]],[[1,2,3,0],[0,2,3,2],[2,0,2,2],[0,2,2,1]],[[1,3,2,0],[0,2,3,2],[2,0,2,2],[0,2,2,1]],[[1,2,2,0],[0,2,3,2],[2,0,1,2],[1,2,2,2]],[[1,2,2,0],[0,2,3,2],[2,0,1,2],[1,2,3,1]],[[1,2,2,0],[0,2,3,2],[2,0,1,2],[1,3,2,1]],[[1,2,2,0],[0,2,3,2],[2,0,1,2],[2,2,2,1]],[[1,2,2,0],[0,2,3,2],[2,0,1,3],[1,2,2,1]],[[1,2,2,0],[0,2,3,2],[3,0,1,2],[1,2,2,1]],[[1,2,2,0],[0,2,3,3],[2,0,1,2],[1,2,2,1]],[[1,2,2,0],[0,2,4,2],[2,0,1,2],[1,2,2,1]],[[1,2,3,0],[0,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,3,2,0],[0,2,3,2],[2,0,1,2],[1,2,2,1]],[[2,2,2,0],[0,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,0],[3,3,3,2],[2,2,0,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,2],[3,2,0,1],[1,2,2,1]],[[1,0,1,0],[2,3,3,2],[2,2,0,1],[2,2,2,1]],[[1,0,1,0],[2,3,3,2],[2,2,0,1],[1,3,2,1]],[[1,0,1,0],[2,3,3,2],[2,2,0,1],[1,2,3,1]],[[1,0,1,0],[2,3,3,2],[2,2,0,1],[1,2,2,2]],[[1,0,1,0],[3,3,3,2],[2,2,0,2],[1,2,1,1]],[[1,0,1,0],[2,3,3,2],[3,2,0,2],[1,2,1,1]],[[1,0,1,0],[2,3,3,2],[2,2,0,2],[2,2,1,1]],[[1,0,1,0],[2,3,3,2],[2,2,0,2],[1,3,1,1]],[[1,0,1,0],[3,3,3,2],[2,2,0,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,2],[3,2,0,2],[1,2,2,0]],[[1,0,1,0],[2,3,3,2],[2,2,0,2],[2,2,2,0]],[[1,0,1,0],[2,3,3,2],[2,2,0,2],[1,3,2,0]],[[1,0,1,0],[2,3,3,2],[2,2,0,2],[1,2,3,0]],[[1,0,1,0],[3,3,3,2],[2,2,1,0],[1,2,2,1]],[[1,0,1,0],[2,3,3,2],[3,2,1,0],[1,2,2,1]],[[1,0,1,0],[2,3,3,2],[2,2,1,0],[2,2,2,1]],[[1,0,1,0],[2,3,3,2],[2,2,1,0],[1,3,2,1]],[[1,0,1,0],[2,3,3,2],[2,2,1,0],[1,2,3,1]],[[1,0,1,0],[2,3,3,2],[2,2,1,0],[1,2,2,2]],[[1,0,1,0],[3,3,3,2],[2,2,1,1],[1,2,2,0]],[[1,0,1,0],[2,3,3,2],[3,2,1,1],[1,2,2,0]],[[1,0,1,0],[2,3,3,2],[2,2,1,1],[2,2,2,0]],[[1,0,1,0],[2,3,3,2],[2,2,1,1],[1,3,2,0]],[[1,0,1,0],[2,3,3,2],[2,2,1,1],[1,2,3,0]],[[1,0,1,0],[3,3,3,2],[2,2,1,2],[1,2,0,1]],[[1,0,1,0],[2,3,3,2],[3,2,1,2],[1,2,0,1]],[[1,0,1,0],[2,3,3,2],[2,2,1,2],[2,2,0,1]],[[1,0,1,0],[2,3,3,2],[2,2,1,2],[1,3,0,1]],[[1,0,1,0],[3,3,3,2],[2,2,1,2],[1,2,1,0]],[[1,0,1,0],[2,3,3,2],[3,2,1,2],[1,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,2,1,2],[2,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,0],[0,2,3,3],[1,3,3,1],[1,2,0,0]],[[1,2,2,0],[0,2,4,2],[1,3,3,1],[1,2,0,0]],[[1,2,3,0],[0,2,3,2],[1,3,3,1],[1,2,0,0]],[[1,3,2,0],[0,2,3,2],[1,3,3,1],[1,2,0,0]],[[1,0,1,0],[3,3,3,2],[2,2,2,0],[1,2,1,1]],[[1,0,1,0],[2,3,3,2],[3,2,2,0],[1,2,1,1]],[[1,0,1,0],[2,3,3,2],[2,2,2,0],[2,2,1,1]],[[1,0,1,0],[2,3,3,2],[2,2,2,0],[1,3,1,1]],[[1,0,1,0],[3,3,3,2],[2,2,2,1],[1,2,0,1]],[[1,0,1,0],[2,3,3,2],[3,2,2,1],[1,2,0,1]],[[1,0,1,0],[2,3,3,2],[2,2,2,1],[2,2,0,1]],[[1,0,1,0],[2,3,3,2],[2,2,2,1],[1,3,0,1]],[[1,0,1,0],[3,3,3,2],[2,2,2,1],[1,2,1,0]],[[1,0,1,0],[2,3,3,2],[3,2,2,1],[1,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,2,2,1],[2,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,2,2,1],[1,3,1,0]],[[2,2,2,0],[0,2,3,2],[1,3,3,1],[1,2,0,0]],[[1,0,1,0],[3,3,3,2],[2,2,3,0],[1,2,1,0]],[[1,0,1,0],[2,3,3,2],[3,2,3,0],[1,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,2,3,0],[2,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,2,0],[0,2,4,2],[1,3,3,0],[1,2,1,0]],[[1,2,3,0],[0,2,3,2],[1,3,3,0],[1,2,1,0]],[[1,3,2,0],[0,2,3,2],[1,3,3,0],[1,2,1,0]],[[2,2,2,0],[0,2,3,2],[1,3,3,0],[1,2,1,0]],[[1,2,2,0],[0,2,4,2],[1,3,3,0],[1,1,2,0]],[[1,2,3,0],[0,2,3,2],[1,3,3,0],[1,1,2,0]],[[1,3,2,0],[0,2,3,2],[1,3,3,0],[1,1,2,0]],[[2,2,2,0],[0,2,3,2],[1,3,3,0],[1,1,2,0]],[[1,0,1,0],[3,3,3,2],[2,3,0,0],[1,2,2,1]],[[1,0,1,0],[2,3,3,2],[3,3,0,0],[1,2,2,1]],[[1,0,1,0],[2,3,3,2],[2,3,0,0],[2,2,2,1]],[[1,0,1,0],[2,3,3,2],[2,3,0,0],[1,3,2,1]],[[1,0,1,0],[3,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,1,0],[2,3,3,2],[3,3,0,1],[0,2,2,1]],[[1,0,1,0],[2,3,3,2],[2,4,0,1],[0,2,2,1]],[[1,0,1,0],[2,3,3,2],[2,3,0,1],[0,3,2,1]],[[1,0,1,0],[2,3,3,2],[2,3,0,1],[0,2,3,1]],[[1,0,1,0],[2,3,3,2],[2,3,0,1],[0,2,2,2]],[[1,0,1,0],[3,3,3,2],[2,3,0,1],[1,1,2,1]],[[1,0,1,0],[2,3,3,2],[3,3,0,1],[1,1,2,1]],[[1,0,1,0],[2,3,3,2],[2,4,0,1],[1,1,2,1]],[[1,0,1,0],[2,3,3,2],[2,3,0,1],[2,1,2,1]],[[1,0,1,0],[3,3,3,2],[2,3,0,1],[1,2,2,0]],[[1,0,1,0],[2,3,3,2],[3,3,0,1],[1,2,2,0]],[[1,0,1,0],[2,3,3,2],[2,3,0,1],[2,2,2,0]],[[1,0,1,0],[2,3,3,2],[2,3,0,1],[1,3,2,0]],[[1,0,1,0],[3,3,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,1,0],[2,3,3,2],[3,3,0,2],[0,1,2,1]],[[1,0,1,0],[2,3,3,2],[2,4,0,2],[0,1,2,1]],[[1,0,1,0],[3,3,3,2],[2,3,0,2],[0,2,1,1]],[[1,0,1,0],[2,3,3,2],[3,3,0,2],[0,2,1,1]],[[1,0,1,0],[2,3,3,2],[2,4,0,2],[0,2,1,1]],[[1,0,1,0],[2,3,3,2],[2,3,0,2],[0,3,1,1]],[[1,0,1,0],[3,3,3,2],[2,3,0,2],[0,2,2,0]],[[1,0,1,0],[2,3,3,2],[3,3,0,2],[0,2,2,0]],[[1,0,1,0],[2,3,3,2],[2,4,0,2],[0,2,2,0]],[[1,0,1,0],[2,3,3,2],[2,3,0,2],[0,3,2,0]],[[1,0,1,0],[2,3,3,2],[2,3,0,2],[0,2,3,0]],[[1,0,1,0],[3,3,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,1,0],[2,3,3,2],[3,3,0,2],[1,0,2,1]],[[1,0,1,0],[2,3,3,2],[2,4,0,2],[1,0,2,1]],[[1,0,1,0],[2,3,3,2],[2,3,0,2],[2,0,2,1]],[[1,0,1,0],[3,3,3,2],[2,3,0,2],[1,1,1,1]],[[1,0,1,0],[2,3,3,2],[3,3,0,2],[1,1,1,1]],[[1,0,1,0],[2,3,3,2],[2,4,0,2],[1,1,1,1]],[[1,0,1,0],[2,3,3,2],[2,3,0,2],[2,1,1,1]],[[1,0,1,0],[3,3,3,2],[2,3,0,2],[1,1,2,0]],[[1,0,1,0],[2,3,3,2],[3,3,0,2],[1,1,2,0]],[[1,0,1,0],[2,3,3,2],[2,4,0,2],[1,1,2,0]],[[1,0,1,0],[2,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,0],[0,2,3,3],[1,3,2,1],[1,2,1,0]],[[1,2,2,0],[0,2,4,2],[1,3,2,1],[1,2,1,0]],[[1,2,3,0],[0,2,3,2],[1,3,2,1],[1,2,1,0]],[[1,3,2,0],[0,2,3,2],[1,3,2,1],[1,2,1,0]],[[2,2,2,0],[0,2,3,2],[1,3,2,1],[1,2,1,0]],[[1,2,2,0],[0,2,3,3],[1,3,2,1],[1,2,0,1]],[[1,2,2,0],[0,2,4,2],[1,3,2,1],[1,2,0,1]],[[1,0,1,0],[3,3,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,1,0],[2,3,3,2],[3,3,1,0],[0,2,2,1]],[[1,0,1,0],[2,3,3,2],[2,4,1,0],[0,2,2,1]],[[1,0,1,0],[2,3,3,2],[2,3,1,0],[0,3,2,1]],[[1,0,1,0],[2,3,3,2],[2,3,1,0],[0,2,3,1]],[[1,0,1,0],[2,3,3,2],[2,3,1,0],[0,2,2,2]],[[1,0,1,0],[3,3,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,1,0],[2,3,3,2],[3,3,1,0],[1,1,2,1]],[[1,0,1,0],[2,3,3,2],[2,4,1,0],[1,1,2,1]],[[1,0,1,0],[2,3,3,2],[2,3,1,0],[2,1,2,1]],[[1,0,1,0],[3,3,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,1,0],[2,3,3,2],[3,3,1,1],[0,2,2,0]],[[1,0,1,0],[2,3,3,2],[2,4,1,1],[0,2,2,0]],[[1,0,1,0],[2,3,3,2],[2,3,1,1],[0,3,2,0]],[[1,0,1,0],[2,3,3,2],[2,3,1,1],[0,2,3,0]],[[1,0,1,0],[3,3,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,1,0],[2,3,3,2],[3,3,1,1],[1,1,2,0]],[[1,0,1,0],[2,3,3,2],[2,4,1,1],[1,1,2,0]],[[1,0,1,0],[2,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,3,0],[0,2,3,2],[1,3,2,1],[1,2,0,1]],[[1,3,2,0],[0,2,3,2],[1,3,2,1],[1,2,0,1]],[[2,2,2,0],[0,2,3,2],[1,3,2,1],[1,2,0,1]],[[1,0,1,0],[3,3,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,1,0],[2,3,3,2],[3,3,1,2],[0,1,1,1]],[[1,0,1,0],[2,3,3,2],[2,4,1,2],[0,1,1,1]],[[1,0,1,0],[3,3,3,2],[2,3,1,2],[0,1,2,0]],[[1,0,1,0],[2,3,3,2],[3,3,1,2],[0,1,2,0]],[[1,0,1,0],[2,3,3,2],[2,4,1,2],[0,1,2,0]],[[1,0,1,0],[3,3,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,1,0],[2,3,3,2],[3,3,1,2],[0,2,0,1]],[[1,0,1,0],[2,3,3,2],[2,4,1,2],[0,2,0,1]],[[1,0,1,0],[2,3,3,2],[2,3,1,2],[0,3,0,1]],[[1,0,1,0],[3,3,3,2],[2,3,1,2],[0,2,1,0]],[[1,0,1,0],[2,3,3,2],[3,3,1,2],[0,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,4,1,2],[0,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,2,0],[0,2,3,3],[1,3,2,1],[1,1,2,0]],[[1,2,2,0],[0,2,4,2],[1,3,2,1],[1,1,2,0]],[[1,2,3,0],[0,2,3,2],[1,3,2,1],[1,1,2,0]],[[1,3,2,0],[0,2,3,2],[1,3,2,1],[1,1,2,0]],[[2,2,2,0],[0,2,3,2],[1,3,2,1],[1,1,2,0]],[[1,2,2,0],[0,2,3,3],[1,3,2,1],[1,1,1,1]],[[1,0,1,0],[3,3,3,2],[2,3,1,2],[1,0,1,1]],[[1,0,1,0],[2,3,3,2],[3,3,1,2],[1,0,1,1]],[[1,0,1,0],[2,3,3,2],[2,4,1,2],[1,0,1,1]],[[1,0,1,0],[2,3,3,2],[2,3,1,2],[2,0,1,1]],[[1,0,1,0],[3,3,3,2],[2,3,1,2],[1,0,2,0]],[[1,0,1,0],[2,3,3,2],[3,3,1,2],[1,0,2,0]],[[1,0,1,0],[2,3,3,2],[2,4,1,2],[1,0,2,0]],[[1,0,1,0],[2,3,3,2],[2,3,1,2],[2,0,2,0]],[[1,0,1,0],[3,3,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,1,0],[2,3,3,2],[3,3,1,2],[1,1,0,1]],[[1,0,1,0],[2,3,3,2],[2,4,1,2],[1,1,0,1]],[[1,0,1,0],[2,3,3,2],[2,3,1,2],[2,1,0,1]],[[1,0,1,0],[3,3,3,2],[2,3,1,2],[1,1,1,0]],[[1,0,1,0],[2,3,3,2],[3,3,1,2],[1,1,1,0]],[[1,0,1,0],[2,3,3,2],[2,4,1,2],[1,1,1,0]],[[1,0,1,0],[2,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,2,0],[0,2,4,2],[1,3,2,1],[1,1,1,1]],[[1,2,3,0],[0,2,3,2],[1,3,2,1],[1,1,1,1]],[[1,3,2,0],[0,2,3,2],[1,3,2,1],[1,1,1,1]],[[2,2,2,0],[0,2,3,2],[1,3,2,1],[1,1,1,1]],[[1,0,1,0],[3,3,3,2],[2,3,1,2],[1,2,0,0]],[[1,0,1,0],[2,3,3,2],[3,3,1,2],[1,2,0,0]],[[1,0,1,0],[2,3,3,2],[2,4,1,2],[1,2,0,0]],[[1,0,1,0],[2,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[0,2,3,3],[1,3,2,0],[1,2,1,1]],[[1,2,2,0],[0,2,4,2],[1,3,2,0],[1,2,1,1]],[[1,2,3,0],[0,2,3,2],[1,3,2,0],[1,2,1,1]],[[1,3,2,0],[0,2,3,2],[1,3,2,0],[1,2,1,1]],[[2,2,2,0],[0,2,3,2],[1,3,2,0],[1,2,1,1]],[[1,2,2,0],[0,2,3,3],[1,3,2,0],[1,1,2,1]],[[1,2,2,0],[0,2,4,2],[1,3,2,0],[1,1,2,1]],[[1,2,3,0],[0,2,3,2],[1,3,2,0],[1,1,2,1]],[[1,3,2,0],[0,2,3,2],[1,3,2,0],[1,1,2,1]],[[1,0,1,0],[3,3,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,1,0],[2,3,3,2],[3,3,2,0],[0,1,2,1]],[[1,0,1,0],[2,3,3,2],[2,4,2,0],[0,1,2,1]],[[1,0,1,0],[3,3,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,1,0],[2,3,3,2],[3,3,2,0],[0,2,1,1]],[[1,0,1,0],[2,3,3,2],[2,4,2,0],[0,2,1,1]],[[1,0,1,0],[2,3,3,2],[2,3,2,0],[0,3,1,1]],[[1,0,1,0],[3,3,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,1,0],[2,3,3,2],[3,3,2,0],[1,0,2,1]],[[1,0,1,0],[2,3,3,2],[2,4,2,0],[1,0,2,1]],[[1,0,1,0],[2,3,3,2],[2,3,2,0],[2,0,2,1]],[[1,0,1,0],[3,3,3,2],[2,3,2,0],[1,1,1,1]],[[1,0,1,0],[2,3,3,2],[3,3,2,0],[1,1,1,1]],[[1,0,1,0],[2,3,3,2],[2,4,2,0],[1,1,1,1]],[[1,0,1,0],[2,3,3,2],[2,3,2,0],[2,1,1,1]],[[1,0,1,0],[3,3,3,2],[2,3,2,0],[1,2,0,1]],[[1,0,1,0],[2,3,3,2],[3,3,2,0],[1,2,0,1]],[[1,0,1,0],[2,3,3,2],[2,4,2,0],[1,2,0,1]],[[1,0,1,0],[2,3,3,2],[2,3,2,0],[2,2,0,1]],[[2,2,2,0],[0,2,3,2],[1,3,2,0],[1,1,2,1]],[[1,0,1,0],[3,3,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,1,0],[2,3,3,2],[3,3,2,1],[0,1,1,1]],[[1,0,1,0],[2,3,3,2],[2,4,2,1],[0,1,1,1]],[[1,0,1,0],[3,3,3,2],[2,3,2,1],[0,1,2,0]],[[1,0,1,0],[2,3,3,2],[3,3,2,1],[0,1,2,0]],[[1,0,1,0],[2,3,3,2],[2,4,2,1],[0,1,2,0]],[[1,0,1,0],[3,3,3,2],[2,3,2,1],[0,2,0,1]],[[1,0,1,0],[2,3,3,2],[3,3,2,1],[0,2,0,1]],[[1,0,1,0],[2,3,3,2],[2,4,2,1],[0,2,0,1]],[[1,0,1,0],[2,3,3,2],[2,3,2,1],[0,3,0,1]],[[1,0,1,0],[3,3,3,2],[2,3,2,1],[0,2,1,0]],[[1,0,1,0],[2,3,3,2],[3,3,2,1],[0,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,4,2,1],[0,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,0,1,0],[3,3,3,2],[2,3,2,1],[1,0,1,1]],[[1,0,1,0],[2,3,3,2],[3,3,2,1],[1,0,1,1]],[[1,0,1,0],[2,3,3,2],[2,4,2,1],[1,0,1,1]],[[1,0,1,0],[2,3,3,2],[2,3,2,1],[2,0,1,1]],[[1,0,1,0],[3,3,3,2],[2,3,2,1],[1,0,2,0]],[[1,0,1,0],[2,3,3,2],[3,3,2,1],[1,0,2,0]],[[1,0,1,0],[2,3,3,2],[2,4,2,1],[1,0,2,0]],[[1,0,1,0],[2,3,3,2],[2,3,2,1],[2,0,2,0]],[[1,0,1,0],[3,3,3,2],[2,3,2,1],[1,1,0,1]],[[1,0,1,0],[2,3,3,2],[3,3,2,1],[1,1,0,1]],[[1,0,1,0],[2,3,3,2],[2,4,2,1],[1,1,0,1]],[[1,0,1,0],[2,3,3,2],[2,3,2,1],[2,1,0,1]],[[1,0,1,0],[3,3,3,2],[2,3,2,1],[1,1,1,0]],[[1,0,1,0],[2,3,3,2],[3,3,2,1],[1,1,1,0]],[[1,0,1,0],[2,3,3,2],[2,4,2,1],[1,1,1,0]],[[1,0,1,0],[2,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,2,0],[0,2,3,2],[1,3,1,3],[1,2,1,0]],[[1,2,2,0],[0,2,3,3],[1,3,1,2],[1,2,1,0]],[[1,2,2,0],[0,2,4,2],[1,3,1,2],[1,2,1,0]],[[1,0,1,0],[3,3,3,2],[2,3,2,1],[1,2,0,0]],[[1,0,1,0],[2,3,3,2],[3,3,2,1],[1,2,0,0]],[[1,0,1,0],[2,3,3,2],[2,4,2,1],[1,2,0,0]],[[1,0,1,0],[2,3,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,3,0],[0,2,3,2],[1,3,1,2],[1,2,1,0]],[[1,3,2,0],[0,2,3,2],[1,3,1,2],[1,2,1,0]],[[2,2,2,0],[0,2,3,2],[1,3,1,2],[1,2,1,0]],[[1,2,2,0],[0,2,3,2],[1,3,1,2],[1,2,0,2]],[[1,2,2,0],[0,2,3,2],[1,3,1,3],[1,2,0,1]],[[1,2,2,0],[0,2,3,3],[1,3,1,2],[1,2,0,1]],[[1,2,2,0],[0,2,4,2],[1,3,1,2],[1,2,0,1]],[[1,2,3,0],[0,2,3,2],[1,3,1,2],[1,2,0,1]],[[1,3,2,0],[0,2,3,2],[1,3,1,2],[1,2,0,1]],[[2,2,2,0],[0,2,3,2],[1,3,1,2],[1,2,0,1]],[[1,2,2,0],[0,2,3,2],[1,3,1,3],[1,1,2,0]],[[1,2,2,0],[0,2,3,3],[1,3,1,2],[1,1,2,0]],[[1,2,2,0],[0,2,4,2],[1,3,1,2],[1,1,2,0]],[[1,2,3,0],[0,2,3,2],[1,3,1,2],[1,1,2,0]],[[1,3,2,0],[0,2,3,2],[1,3,1,2],[1,1,2,0]],[[2,2,2,0],[0,2,3,2],[1,3,1,2],[1,1,2,0]],[[1,2,2,0],[0,2,3,2],[1,3,1,2],[1,1,1,2]],[[1,2,2,0],[0,2,3,2],[1,3,1,3],[1,1,1,1]],[[1,2,2,0],[0,2,3,3],[1,3,1,2],[1,1,1,1]],[[1,2,2,0],[0,2,4,2],[1,3,1,2],[1,1,1,1]],[[1,2,3,0],[0,2,3,2],[1,3,1,2],[1,1,1,1]],[[1,3,2,0],[0,2,3,2],[1,3,1,2],[1,1,1,1]],[[2,2,2,0],[0,2,3,2],[1,3,1,2],[1,1,1,1]],[[1,2,2,0],[0,2,3,3],[1,3,1,1],[1,2,2,0]],[[1,2,2,0],[0,2,4,2],[1,3,1,1],[1,2,2,0]],[[1,2,3,0],[0,2,3,2],[1,3,1,1],[1,2,2,0]],[[1,3,2,0],[0,2,3,2],[1,3,1,1],[1,2,2,0]],[[2,2,2,0],[0,2,3,2],[1,3,1,1],[1,2,2,0]],[[1,2,2,0],[0,2,3,3],[1,3,1,0],[1,2,2,1]],[[1,2,2,0],[0,2,4,2],[1,3,1,0],[1,2,2,1]],[[1,2,3,0],[0,2,3,2],[1,3,1,0],[1,2,2,1]],[[1,3,2,0],[0,2,3,2],[1,3,1,0],[1,2,2,1]],[[2,2,2,0],[0,2,3,2],[1,3,1,0],[1,2,2,1]],[[1,2,2,0],[0,2,3,2],[1,3,0,3],[1,2,2,0]],[[1,2,2,0],[0,2,3,3],[1,3,0,2],[1,2,2,0]],[[1,2,2,0],[0,2,4,2],[1,3,0,2],[1,2,2,0]],[[1,2,3,0],[0,2,3,2],[1,3,0,2],[1,2,2,0]],[[1,3,2,0],[0,2,3,2],[1,3,0,2],[1,2,2,0]],[[2,2,2,0],[0,2,3,2],[1,3,0,2],[1,2,2,0]],[[1,2,2,0],[0,2,3,2],[1,3,0,2],[1,2,1,2]],[[1,2,2,0],[0,2,3,2],[1,3,0,3],[1,2,1,1]],[[1,2,2,0],[0,2,3,3],[1,3,0,2],[1,2,1,1]],[[1,2,2,0],[0,2,4,2],[1,3,0,2],[1,2,1,1]],[[1,2,3,0],[0,2,3,2],[1,3,0,2],[1,2,1,1]],[[1,3,2,0],[0,2,3,2],[1,3,0,2],[1,2,1,1]],[[2,2,2,0],[0,2,3,2],[1,3,0,2],[1,2,1,1]],[[1,2,2,0],[0,2,3,2],[1,3,0,2],[1,1,2,2]],[[1,2,2,0],[0,2,3,2],[1,3,0,2],[1,1,3,1]],[[1,2,2,0],[0,2,3,2],[1,3,0,3],[1,1,2,1]],[[1,2,2,0],[0,2,3,3],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[0,2,4,2],[1,3,0,2],[1,1,2,1]],[[1,2,3,0],[0,2,3,2],[1,3,0,2],[1,1,2,1]],[[1,3,2,0],[0,2,3,2],[1,3,0,2],[1,1,2,1]],[[2,2,2,0],[0,2,3,2],[1,3,0,2],[1,1,2,1]],[[1,2,2,0],[0,2,3,3],[1,3,0,1],[1,2,2,1]],[[1,2,2,0],[0,2,4,2],[1,3,0,1],[1,2,2,1]],[[1,2,3,0],[0,2,3,2],[1,3,0,1],[1,2,2,1]],[[1,3,2,0],[0,2,3,2],[1,3,0,1],[1,2,2,1]],[[2,2,2,0],[0,2,3,2],[1,3,0,1],[1,2,2,1]],[[1,0,1,0],[3,3,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,1,0],[2,3,3,2],[3,3,3,0],[0,1,2,0]],[[1,0,1,0],[2,3,3,2],[2,4,3,0],[0,1,2,0]],[[1,0,1,0],[3,3,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,1,0],[2,3,3,2],[3,3,3,0],[0,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,4,3,0],[0,2,1,0]],[[1,0,1,0],[2,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,0,1,0],[3,3,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,1,0],[2,3,3,2],[3,3,3,0],[1,0,2,0]],[[1,0,1,0],[2,3,3,2],[2,4,3,0],[1,0,2,0]],[[1,0,1,0],[2,3,3,2],[2,3,3,0],[2,0,2,0]],[[1,0,1,0],[3,3,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,1,0],[2,3,3,2],[3,3,3,0],[1,1,1,0]],[[1,0,1,0],[2,3,3,2],[2,4,3,0],[1,1,1,0]],[[1,0,1,0],[2,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,0,1,0],[3,3,3,2],[2,3,3,0],[1,2,0,0]],[[1,0,1,0],[2,3,3,2],[3,3,3,0],[1,2,0,0]],[[1,0,1,0],[2,3,3,2],[2,4,3,0],[1,2,0,0]],[[1,0,1,0],[2,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,0],[0,2,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,0],[0,2,3,3],[1,2,3,2],[1,1,0,1]],[[1,2,2,0],[0,2,4,2],[1,2,3,2],[1,1,0,1]],[[1,2,3,0],[0,2,3,2],[1,2,3,2],[1,1,0,1]],[[1,3,2,0],[0,2,3,2],[1,2,3,2],[1,1,0,1]],[[1,0,1,0],[3,3,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,1,0],[2,3,3,2],[3,3,3,1],[0,2,0,0]],[[1,0,1,0],[2,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,2,0],[0,2,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,2,0],[0,2,3,3],[1,2,3,1],[1,2,1,0]],[[1,2,2,0],[0,2,4,2],[1,2,3,1],[1,2,1,0]],[[1,2,3,0],[0,2,3,2],[1,2,3,1],[1,2,1,0]],[[1,3,2,0],[0,2,3,2],[1,2,3,1],[1,2,1,0]],[[2,2,2,0],[0,2,3,2],[1,2,3,1],[1,2,1,0]],[[1,2,2,0],[0,2,3,2],[1,2,4,1],[1,2,0,1]],[[1,2,2,0],[0,2,3,3],[1,2,3,1],[1,2,0,1]],[[1,2,2,0],[0,2,4,2],[1,2,3,1],[1,2,0,1]],[[1,2,3,0],[0,2,3,2],[1,2,3,1],[1,2,0,1]],[[1,3,2,0],[0,2,3,2],[1,2,3,1],[1,2,0,1]],[[2,2,2,0],[0,2,3,2],[1,2,3,1],[1,2,0,1]],[[1,0,1,0],[3,3,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,1,0],[2,3,3,2],[3,3,3,1],[1,1,0,0]],[[1,0,1,0],[2,3,3,2],[2,4,3,1],[1,1,0,0]],[[1,0,1,0],[2,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,0],[0,2,3,2],[1,2,3,1],[1,1,3,0]],[[1,2,2,0],[0,2,3,2],[1,2,4,1],[1,1,2,0]],[[1,2,2,0],[0,2,3,3],[1,2,3,1],[1,1,2,0]],[[1,2,2,0],[0,2,4,2],[1,2,3,1],[1,1,2,0]],[[1,2,3,0],[0,2,3,2],[1,2,3,1],[1,1,2,0]],[[1,3,2,0],[0,2,3,2],[1,2,3,1],[1,1,2,0]],[[2,2,2,0],[0,2,3,2],[1,2,3,1],[1,1,2,0]],[[1,2,2,0],[0,2,3,2],[1,2,4,1],[1,1,1,1]],[[1,2,2,0],[0,2,3,3],[1,2,3,1],[1,1,1,1]],[[1,2,2,0],[0,2,4,2],[1,2,3,1],[1,1,1,1]],[[1,2,3,0],[0,2,3,2],[1,2,3,1],[1,1,1,1]],[[1,3,2,0],[0,2,3,2],[1,2,3,1],[1,1,1,1]],[[2,2,2,0],[0,2,3,2],[1,2,3,1],[1,1,1,1]],[[1,2,2,0],[0,2,3,2],[1,2,4,1],[1,0,2,1]],[[1,2,2,0],[0,2,3,3],[1,2,3,1],[1,0,2,1]],[[1,2,2,0],[0,2,4,2],[1,2,3,1],[1,0,2,1]],[[1,2,3,0],[0,2,3,2],[1,2,3,1],[1,0,2,1]],[[1,3,2,0],[0,2,3,2],[1,2,3,1],[1,0,2,1]],[[1,2,2,0],[0,2,3,2],[1,2,4,0],[1,2,1,1]],[[1,2,2,0],[0,2,3,3],[1,2,3,0],[1,2,1,1]],[[1,2,2,0],[0,2,4,2],[1,2,3,0],[1,2,1,1]],[[1,2,3,0],[0,2,3,2],[1,2,3,0],[1,2,1,1]],[[1,3,2,0],[0,2,3,2],[1,2,3,0],[1,2,1,1]],[[2,2,2,0],[0,2,3,2],[1,2,3,0],[1,2,1,1]],[[1,2,2,0],[0,2,3,2],[1,2,3,0],[1,1,2,2]],[[1,2,2,0],[0,2,3,2],[1,2,3,0],[1,1,3,1]],[[1,2,2,0],[0,2,3,2],[1,2,4,0],[1,1,2,1]],[[1,2,2,0],[0,2,3,3],[1,2,3,0],[1,1,2,1]],[[1,2,2,0],[0,2,4,2],[1,2,3,0],[1,1,2,1]],[[1,2,3,0],[0,2,3,2],[1,2,3,0],[1,1,2,1]],[[1,3,2,0],[0,2,3,2],[1,2,3,0],[1,1,2,1]],[[2,2,2,0],[0,2,3,2],[1,2,3,0],[1,1,2,1]],[[1,2,2,0],[0,2,3,2],[1,2,2,3],[1,2,1,0]],[[1,2,2,0],[0,2,3,3],[1,2,2,2],[1,2,1,0]],[[1,2,2,0],[0,2,4,2],[1,2,2,2],[1,2,1,0]],[[1,2,3,0],[0,2,3,2],[1,2,2,2],[1,2,1,0]],[[1,3,2,0],[0,2,3,2],[1,2,2,2],[1,2,1,0]],[[2,2,2,0],[0,2,3,2],[1,2,2,2],[1,2,1,0]],[[1,2,2,0],[0,2,3,2],[1,2,2,2],[1,2,0,2]],[[1,2,2,0],[0,2,3,2],[1,2,2,3],[1,2,0,1]],[[1,2,2,0],[0,2,3,3],[1,2,2,2],[1,2,0,1]],[[1,2,2,0],[0,2,4,2],[1,2,2,2],[1,2,0,1]],[[1,2,3,0],[0,2,3,2],[1,2,2,2],[1,2,0,1]],[[1,3,2,0],[0,2,3,2],[1,2,2,2],[1,2,0,1]],[[2,2,2,0],[0,2,3,2],[1,2,2,2],[1,2,0,1]],[[1,2,2,0],[0,2,3,2],[1,2,2,3],[1,1,2,0]],[[1,2,2,0],[0,2,3,3],[1,2,2,2],[1,1,2,0]],[[1,2,2,0],[0,2,4,2],[1,2,2,2],[1,1,2,0]],[[1,2,3,0],[0,2,3,2],[1,2,2,2],[1,1,2,0]],[[1,3,2,0],[0,2,3,2],[1,2,2,2],[1,1,2,0]],[[2,2,2,0],[0,2,3,2],[1,2,2,2],[1,1,2,0]],[[1,2,2,0],[0,2,3,2],[1,2,2,2],[1,1,1,2]],[[1,2,2,0],[0,2,3,2],[1,2,2,3],[1,1,1,1]],[[1,2,2,0],[0,2,3,3],[1,2,2,2],[1,1,1,1]],[[1,2,2,0],[0,2,4,2],[1,2,2,2],[1,1,1,1]],[[1,2,3,0],[0,2,3,2],[1,2,2,2],[1,1,1,1]],[[1,3,2,0],[0,2,3,2],[1,2,2,2],[1,1,1,1]],[[2,2,2,0],[0,2,3,2],[1,2,2,2],[1,1,1,1]],[[1,2,2,0],[0,2,3,2],[1,2,2,2],[1,0,2,2]],[[1,2,2,0],[0,2,3,2],[1,2,2,3],[1,0,2,1]],[[1,2,2,0],[0,2,3,3],[1,2,2,2],[1,0,2,1]],[[1,2,2,0],[0,2,4,2],[1,2,2,2],[1,0,2,1]],[[1,2,3,0],[0,2,3,2],[1,2,2,2],[1,0,2,1]],[[1,3,2,0],[0,2,3,2],[1,2,2,2],[1,0,2,1]],[[1,2,2,0],[0,2,3,2],[1,2,1,2],[1,1,2,2]],[[1,2,2,0],[0,2,3,2],[1,2,1,2],[1,1,3,1]],[[1,2,2,0],[0,2,3,2],[1,2,1,3],[1,1,2,1]],[[1,2,2,0],[0,2,3,3],[1,2,1,2],[1,1,2,1]],[[1,2,2,0],[0,2,4,2],[1,2,1,2],[1,1,2,1]],[[1,2,3,0],[0,2,3,2],[1,2,1,2],[1,1,2,1]],[[1,3,2,0],[0,2,3,2],[1,2,1,2],[1,1,2,1]],[[2,2,2,0],[0,2,3,2],[1,2,1,2],[1,1,2,1]],[[1,2,2,0],[0,2,3,2],[1,2,0,2],[1,2,2,2]],[[1,2,2,0],[0,2,3,2],[1,2,0,2],[1,2,3,1]],[[1,2,2,0],[0,2,3,2],[1,2,0,2],[1,3,2,1]],[[1,2,2,0],[0,2,3,2],[1,2,0,2],[2,2,2,1]],[[1,2,2,0],[0,2,3,2],[1,2,0,3],[1,2,2,1]],[[1,2,2,0],[0,2,3,3],[1,2,0,2],[1,2,2,1]],[[1,2,2,0],[0,2,4,2],[1,2,0,2],[1,2,2,1]],[[1,2,3,0],[0,2,3,2],[1,2,0,2],[1,2,2,1]],[[1,3,2,0],[0,2,3,2],[1,2,0,2],[1,2,2,1]],[[2,2,2,0],[0,2,3,2],[1,2,0,2],[1,2,2,1]],[[1,2,2,0],[0,2,3,2],[1,1,3,3],[1,1,2,0]],[[1,2,2,0],[0,2,3,3],[1,1,3,2],[1,1,2,0]],[[1,2,2,0],[0,2,4,2],[1,1,3,2],[1,1,2,0]],[[1,2,3,0],[0,2,3,2],[1,1,3,2],[1,1,2,0]],[[1,3,2,0],[0,2,3,2],[1,1,3,2],[1,1,2,0]],[[1,2,2,0],[0,2,3,2],[1,1,3,2],[1,1,1,2]],[[1,2,2,0],[0,2,3,2],[1,1,3,3],[1,1,1,1]],[[1,2,2,0],[0,2,3,3],[1,1,3,2],[1,1,1,1]],[[1,2,2,0],[0,2,4,2],[1,1,3,2],[1,1,1,1]],[[1,2,3,0],[0,2,3,2],[1,1,3,2],[1,1,1,1]],[[1,3,2,0],[0,2,3,2],[1,1,3,2],[1,1,1,1]],[[1,2,2,0],[0,2,3,2],[1,1,3,2],[1,0,2,2]],[[1,2,2,0],[0,2,3,2],[1,1,3,3],[1,0,2,1]],[[1,2,2,0],[0,2,3,3],[1,1,3,2],[1,0,2,1]],[[1,2,2,0],[0,2,4,2],[1,1,3,2],[1,0,2,1]],[[1,2,3,0],[0,2,3,2],[1,1,3,2],[1,0,2,1]],[[1,3,2,0],[0,2,3,2],[1,1,3,2],[1,0,2,1]],[[1,2,2,0],[0,2,3,2],[1,1,3,1],[1,2,3,0]],[[1,2,2,0],[0,2,3,2],[1,1,3,1],[1,3,2,0]],[[1,2,2,0],[0,2,3,2],[1,1,3,1],[2,2,2,0]],[[1,2,2,0],[0,2,3,2],[1,1,4,1],[1,2,2,0]],[[1,2,2,0],[0,2,3,3],[1,1,3,1],[1,2,2,0]],[[1,2,2,0],[0,2,4,2],[1,1,3,1],[1,2,2,0]],[[1,2,3,0],[0,2,3,2],[1,1,3,1],[1,2,2,0]],[[1,3,2,0],[0,2,3,2],[1,1,3,1],[1,2,2,0]],[[2,2,2,0],[0,2,3,2],[1,1,3,1],[1,2,2,0]],[[1,2,2,0],[0,2,3,2],[1,1,4,1],[1,2,1,1]],[[1,2,2,0],[0,2,3,3],[1,1,3,1],[1,2,1,1]],[[1,2,2,0],[0,2,4,2],[1,1,3,1],[1,2,1,1]],[[1,2,3,0],[0,2,3,2],[1,1,3,1],[1,2,1,1]],[[1,3,2,0],[0,2,3,2],[1,1,3,1],[1,2,1,1]],[[2,2,2,0],[0,2,3,2],[1,1,3,1],[1,2,1,1]],[[1,2,2,0],[0,2,3,2],[1,1,3,0],[1,2,2,2]],[[1,2,2,0],[0,2,3,2],[1,1,3,0],[1,2,3,1]],[[1,2,2,0],[0,2,3,2],[1,1,3,0],[1,3,2,1]],[[1,2,2,0],[0,2,3,2],[1,1,3,0],[2,2,2,1]],[[1,2,2,0],[0,2,3,2],[1,1,4,0],[1,2,2,1]],[[1,2,2,0],[0,2,3,3],[1,1,3,0],[1,2,2,1]],[[1,2,2,0],[0,2,4,2],[1,1,3,0],[1,2,2,1]],[[1,2,3,0],[0,2,3,2],[1,1,3,0],[1,2,2,1]],[[1,3,2,0],[0,2,3,2],[1,1,3,0],[1,2,2,1]],[[2,2,2,0],[0,2,3,2],[1,1,3,0],[1,2,2,1]],[[1,0,1,1],[0,0,2,2],[2,3,3,3],[1,2,2,1]],[[1,0,1,1],[0,0,2,2],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[0,0,2,2],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[0,0,2,2],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[0,0,2,2],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[0,0,3,3],[2,2,3,2],[1,2,2,1]],[[1,0,1,1],[0,0,3,2],[2,2,3,3],[1,2,2,1]],[[1,0,1,1],[0,0,3,2],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[0,0,3,2],[2,2,3,2],[1,2,2,2]],[[1,0,1,2],[0,0,3,2],[2,3,2,2],[1,2,2,1]],[[1,0,1,1],[0,0,3,3],[2,3,2,2],[1,2,2,1]],[[1,0,1,1],[0,0,3,2],[2,3,2,3],[1,2,2,1]],[[1,0,1,1],[0,0,3,2],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[0,0,3,2],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[0,0,3,2],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[0,0,3,2],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[0,0,3,2],[2,3,4,1],[1,2,2,1]],[[1,0,1,1],[0,0,3,2],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[0,0,3,2],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[0,0,3,2],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[0,0,3,2],[2,3,3,1],[1,2,2,2]],[[1,0,1,2],[0,0,3,2],[2,3,3,2],[1,2,1,1]],[[1,0,1,1],[0,0,3,3],[2,3,3,2],[1,2,1,1]],[[1,0,1,1],[0,0,3,2],[2,3,4,2],[1,2,1,1]],[[1,0,1,1],[0,0,3,2],[2,3,3,3],[1,2,1,1]],[[1,0,1,1],[0,0,3,2],[2,3,3,2],[1,2,1,2]],[[1,0,1,2],[0,0,3,2],[2,3,3,2],[1,2,2,0]],[[1,0,1,1],[0,0,3,3],[2,3,3,2],[1,2,2,0]],[[1,0,1,1],[0,0,3,2],[2,3,4,2],[1,2,2,0]],[[1,0,1,1],[0,0,3,2],[2,3,3,3],[1,2,2,0]],[[1,0,1,1],[0,0,3,2],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[0,0,3,2],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[0,0,3,2],[2,3,3,2],[1,2,3,0]],[[1,0,1,1],[0,1,1,2],[2,3,3,3],[1,2,2,1]],[[1,0,1,1],[0,1,1,2],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[0,1,1,2],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[0,1,1,2],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[0,1,1,2],[2,3,3,2],[1,2,2,2]],[[1,0,1,2],[0,1,2,2],[2,3,2,2],[1,2,2,1]],[[1,0,1,1],[0,1,2,3],[2,3,2,2],[1,2,2,1]],[[1,0,1,1],[0,1,2,2],[2,3,2,3],[1,2,2,1]],[[1,0,1,1],[0,1,2,2],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[0,1,2,2],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[0,1,2,2],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[0,1,2,2],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[0,1,2,2],[2,3,4,1],[1,2,2,1]],[[1,0,1,1],[0,1,2,2],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[0,1,2,2],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[0,1,2,2],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[0,1,2,2],[2,3,3,1],[1,2,2,2]],[[1,0,1,2],[0,1,2,2],[2,3,3,2],[1,2,1,1]],[[1,0,1,1],[0,1,2,3],[2,3,3,2],[1,2,1,1]],[[1,0,1,1],[0,1,2,2],[2,3,4,2],[1,2,1,1]],[[1,0,1,1],[0,1,2,2],[2,3,3,3],[1,2,1,1]],[[1,0,1,1],[0,1,2,2],[2,3,3,2],[1,2,1,2]],[[1,0,1,2],[0,1,2,2],[2,3,3,2],[1,2,2,0]],[[1,0,1,1],[0,1,2,3],[2,3,3,2],[1,2,2,0]],[[1,0,1,1],[0,1,2,2],[2,3,4,2],[1,2,2,0]],[[1,0,1,1],[0,1,2,2],[2,3,3,3],[1,2,2,0]],[[1,0,1,1],[0,1,2,2],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[0,1,2,2],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[0,1,2,2],[2,3,3,2],[1,2,3,0]],[[1,0,1,1],[0,1,3,0],[2,3,4,2],[1,2,2,1]],[[1,0,1,1],[0,1,3,0],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[0,1,3,0],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[0,1,3,0],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[0,1,3,0],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[0,1,3,1],[2,3,2,3],[1,2,2,1]],[[1,0,1,1],[0,1,3,1],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[0,1,3,1],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[0,1,3,1],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[0,1,3,1],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[0,1,3,1],[2,3,4,1],[1,2,2,1]],[[1,0,1,1],[0,1,3,1],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[0,1,3,1],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[0,1,3,1],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[0,1,3,1],[2,3,3,1],[1,2,2,2]],[[1,0,1,1],[0,1,3,1],[2,3,4,2],[1,2,1,1]],[[1,0,1,1],[0,1,3,1],[2,3,3,3],[1,2,1,1]],[[1,0,1,1],[0,1,3,1],[2,3,3,2],[1,2,1,2]],[[1,0,1,1],[0,1,3,1],[2,3,4,2],[1,2,2,0]],[[1,0,1,1],[0,1,3,1],[2,3,3,3],[1,2,2,0]],[[1,0,1,1],[0,1,3,1],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[0,1,3,1],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[0,1,3,1],[2,3,3,2],[1,2,3,0]],[[1,0,1,1],[0,1,3,3],[2,1,3,2],[1,2,2,1]],[[1,0,1,1],[0,1,3,2],[2,1,3,3],[1,2,2,1]],[[1,0,1,1],[0,1,3,2],[2,1,3,2],[1,2,3,1]],[[1,0,1,1],[0,1,3,2],[2,1,3,2],[1,2,2,2]],[[1,0,1,2],[0,1,3,2],[2,2,2,2],[1,2,2,1]],[[1,0,1,1],[0,1,3,3],[2,2,2,2],[1,2,2,1]],[[1,0,1,1],[0,1,3,2],[2,2,2,3],[1,2,2,1]],[[1,0,1,1],[0,1,3,2],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[0,1,3,2],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[0,1,3,2],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[0,1,3,2],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[0,1,3,2],[2,2,4,1],[1,2,2,1]],[[1,0,1,1],[0,1,3,2],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[0,1,3,2],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[0,1,3,2],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[0,1,3,2],[2,2,3,1],[1,2,2,2]],[[1,0,1,2],[0,1,3,2],[2,2,3,2],[1,2,1,1]],[[1,0,1,1],[0,1,3,3],[2,2,3,2],[1,2,1,1]],[[1,0,1,1],[0,1,3,2],[2,2,4,2],[1,2,1,1]],[[1,0,1,1],[0,1,3,2],[2,2,3,3],[1,2,1,1]],[[1,0,1,1],[0,1,3,2],[2,2,3,2],[1,2,1,2]],[[1,0,1,2],[0,1,3,2],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[0,1,3,3],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[0,1,3,2],[2,2,4,2],[1,2,2,0]],[[1,0,1,1],[0,1,3,2],[2,2,3,3],[1,2,2,0]],[[1,0,1,1],[0,1,3,2],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[0,1,3,2],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[0,1,3,2],[2,2,3,2],[1,2,3,0]],[[1,0,1,2],[0,1,3,2],[2,3,2,2],[1,1,2,1]],[[1,0,1,1],[0,1,3,3],[2,3,2,2],[1,1,2,1]],[[1,0,1,1],[0,1,3,2],[2,3,2,3],[1,1,2,1]],[[1,0,1,1],[0,1,3,2],[2,3,2,2],[1,1,3,1]],[[1,0,1,1],[0,1,3,2],[2,3,2,2],[1,1,2,2]],[[1,0,1,1],[0,1,3,2],[2,3,4,0],[1,2,2,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,0],[2,2,2,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,0],[1,3,2,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,0],[1,2,3,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,0],[1,2,2,2]],[[1,0,1,1],[0,1,3,2],[2,3,4,1],[1,1,2,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,1],[1,1,3,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,1],[1,1,2,2]],[[1,0,1,1],[0,1,3,2],[2,3,4,1],[1,2,2,0]],[[1,0,1,1],[0,1,3,2],[2,3,3,1],[2,2,2,0]],[[1,0,1,1],[0,1,3,2],[2,3,3,1],[1,3,2,0]],[[1,0,1,1],[0,1,3,2],[2,3,3,1],[1,2,3,0]],[[1,0,1,1],[0,1,3,3],[2,3,3,2],[1,0,2,1]],[[1,0,1,1],[0,1,3,2],[2,3,4,2],[1,0,2,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,3],[1,0,2,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,2],[1,0,2,2]],[[1,0,1,2],[0,1,3,2],[2,3,3,2],[1,1,1,1]],[[1,0,1,1],[0,1,3,3],[2,3,3,2],[1,1,1,1]],[[1,0,1,1],[0,1,3,2],[2,3,4,2],[1,1,1,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,3],[1,1,1,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,2],[1,1,1,2]],[[1,0,1,2],[0,1,3,2],[2,3,3,2],[1,1,2,0]],[[1,0,1,1],[0,1,3,3],[2,3,3,2],[1,1,2,0]],[[1,0,1,1],[0,1,3,2],[2,3,4,2],[1,1,2,0]],[[1,0,1,1],[0,1,3,2],[2,3,3,3],[1,1,2,0]],[[1,0,1,1],[0,1,3,2],[2,3,3,2],[1,1,3,0]],[[1,0,1,2],[0,1,3,2],[2,3,3,2],[1,2,0,1]],[[1,0,1,1],[0,1,3,3],[2,3,3,2],[1,2,0,1]],[[1,0,1,1],[0,1,3,2],[2,3,4,2],[1,2,0,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,3],[1,2,0,1]],[[1,0,1,1],[0,1,3,2],[2,3,3,2],[1,2,0,2]],[[1,0,1,2],[0,1,3,2],[2,3,3,2],[1,2,1,0]],[[1,0,1,1],[0,1,3,3],[2,3,3,2],[1,2,1,0]],[[1,0,1,1],[0,1,3,2],[2,3,4,2],[1,2,1,0]],[[1,0,1,1],[0,1,3,2],[2,3,3,3],[1,2,1,0]],[[1,2,2,0],[0,2,3,2],[1,1,2,3],[1,2,2,0]],[[1,2,2,0],[0,2,3,3],[1,1,2,2],[1,2,2,0]],[[1,0,1,1],[0,2,0,2],[2,3,3,3],[1,2,2,1]],[[1,0,1,1],[0,2,0,2],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[0,2,0,2],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[0,2,0,2],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[0,2,0,2],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[0,2,1,2],[2,2,3,3],[1,2,2,1]],[[1,0,1,1],[0,2,1,2],[2,2,3,2],[2,2,2,1]],[[1,0,1,1],[0,2,1,2],[2,2,3,2],[1,3,2,1]],[[1,0,1,1],[0,2,1,2],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[0,2,1,2],[2,2,3,2],[1,2,2,2]],[[1,0,1,1],[0,2,1,2],[2,3,3,3],[1,1,2,1]],[[1,0,1,1],[0,2,1,2],[2,3,3,2],[1,1,3,1]],[[1,0,1,1],[0,2,1,2],[2,3,3,2],[1,1,2,2]],[[1,0,1,1],[0,2,2,3],[2,1,3,2],[1,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,1,3,3],[1,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,1,3,2],[1,2,3,1]],[[1,0,1,1],[0,2,2,2],[2,1,3,2],[1,2,2,2]],[[1,0,1,2],[0,2,2,2],[2,2,2,2],[1,2,2,1]],[[1,0,1,1],[0,2,2,3],[2,2,2,2],[1,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,2,2,3],[1,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[0,2,2,2],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[0,2,2,2],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[0,2,2,2],[2,2,4,1],[1,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[0,2,2,2],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[0,2,2,2],[2,2,3,1],[1,2,2,2]],[[1,0,1,2],[0,2,2,2],[2,2,3,2],[1,2,1,1]],[[1,0,1,1],[0,2,2,3],[2,2,3,2],[1,2,1,1]],[[1,0,1,1],[0,2,2,2],[2,2,4,2],[1,2,1,1]],[[1,0,1,1],[0,2,2,2],[2,2,3,3],[1,2,1,1]],[[1,0,1,1],[0,2,2,2],[2,2,3,2],[1,2,1,2]],[[1,0,1,2],[0,2,2,2],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[0,2,2,3],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[0,2,2,2],[2,2,4,2],[1,2,2,0]],[[1,0,1,1],[0,2,2,2],[2,2,3,3],[1,2,2,0]],[[1,0,1,1],[0,2,2,2],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[0,2,2,2],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[0,2,2,2],[2,2,3,2],[1,2,3,0]],[[1,0,1,2],[0,2,2,2],[2,3,1,2],[1,2,2,1]],[[1,0,1,1],[0,2,2,3],[2,3,1,2],[1,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,4,1,2],[1,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,1,3],[1,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,1,2],[2,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,1,2],[1,3,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,1,2],[1,2,3,1]],[[1,0,1,1],[0,2,2,2],[2,3,1,2],[1,2,2,2]],[[1,0,1,1],[0,2,2,2],[2,4,2,1],[1,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,2,1],[2,2,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,2,1],[1,3,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,2,1],[1,2,3,1]],[[1,0,1,1],[0,2,2,2],[2,3,2,1],[1,2,2,2]],[[1,0,1,2],[0,2,2,2],[2,3,2,2],[1,1,2,1]],[[1,0,1,1],[0,2,2,3],[2,3,2,2],[1,1,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,2,3],[1,1,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,2,2],[1,1,3,1]],[[1,0,1,1],[0,2,2,2],[2,3,2,2],[1,1,2,2]],[[1,0,1,1],[0,2,2,2],[2,4,2,2],[1,2,2,0]],[[1,0,1,1],[0,2,2,2],[2,3,2,2],[2,2,2,0]],[[1,0,1,1],[0,2,2,2],[2,3,2,2],[1,3,2,0]],[[1,0,1,1],[0,2,2,2],[2,3,2,2],[1,2,3,0]],[[1,0,1,1],[0,2,2,2],[2,4,3,1],[1,1,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,4,1],[1,1,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,1],[1,1,3,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,1],[1,1,2,2]],[[1,0,1,1],[0,2,2,2],[2,4,3,1],[1,2,1,1]],[[1,0,1,1],[0,2,2,2],[2,3,4,1],[1,2,1,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,1],[2,2,1,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,1],[1,3,1,1]],[[1,0,1,1],[0,2,2,3],[2,3,3,2],[1,0,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,4,2],[1,0,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,3],[1,0,2,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,2],[1,0,2,2]],[[1,0,1,2],[0,2,2,2],[2,3,3,2],[1,1,1,1]],[[1,0,1,1],[0,2,2,3],[2,3,3,2],[1,1,1,1]],[[1,0,1,1],[0,2,2,2],[2,4,3,2],[1,1,1,1]],[[1,0,1,1],[0,2,2,2],[2,3,4,2],[1,1,1,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,3],[1,1,1,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,2],[1,1,1,2]],[[1,0,1,2],[0,2,2,2],[2,3,3,2],[1,1,2,0]],[[1,0,1,1],[0,2,2,3],[2,3,3,2],[1,1,2,0]],[[1,0,1,1],[0,2,2,2],[2,4,3,2],[1,1,2,0]],[[1,0,1,1],[0,2,2,2],[2,3,4,2],[1,1,2,0]],[[1,0,1,1],[0,2,2,2],[2,3,3,3],[1,1,2,0]],[[1,0,1,1],[0,2,2,2],[2,3,3,2],[1,1,3,0]],[[1,0,1,2],[0,2,2,2],[2,3,3,2],[1,2,0,1]],[[1,0,1,1],[0,2,2,3],[2,3,3,2],[1,2,0,1]],[[1,0,1,1],[0,2,2,2],[2,4,3,2],[1,2,0,1]],[[1,0,1,1],[0,2,2,2],[2,3,4,2],[1,2,0,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,3],[1,2,0,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,2],[2,2,0,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,2],[1,3,0,1]],[[1,0,1,1],[0,2,2,2],[2,3,3,2],[1,2,0,2]],[[1,0,1,2],[0,2,2,2],[2,3,3,2],[1,2,1,0]],[[1,0,1,1],[0,2,2,3],[2,3,3,2],[1,2,1,0]],[[1,0,1,1],[0,2,2,2],[2,4,3,2],[1,2,1,0]],[[1,0,1,1],[0,2,2,2],[2,3,4,2],[1,2,1,0]],[[1,0,1,1],[0,2,2,2],[2,3,3,3],[1,2,1,0]],[[1,0,1,1],[0,2,2,2],[2,3,3,2],[2,2,1,0]],[[1,0,1,1],[0,2,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,2,4,2],[1,1,2,2],[1,2,2,0]],[[1,2,3,0],[0,2,3,2],[1,1,2,2],[1,2,2,0]],[[1,3,2,0],[0,2,3,2],[1,1,2,2],[1,2,2,0]],[[2,2,2,0],[0,2,3,2],[1,1,2,2],[1,2,2,0]],[[1,2,2,0],[0,2,3,2],[1,1,2,2],[1,2,1,2]],[[1,2,2,0],[0,2,3,2],[1,1,2,3],[1,2,1,1]],[[1,2,2,0],[0,2,3,3],[1,1,2,2],[1,2,1,1]],[[1,2,2,0],[0,2,4,2],[1,1,2,2],[1,2,1,1]],[[1,2,3,0],[0,2,3,2],[1,1,2,2],[1,2,1,1]],[[1,0,1,1],[0,2,3,0],[2,2,4,2],[1,2,2,1]],[[1,0,1,1],[0,2,3,0],[2,2,3,2],[2,2,2,1]],[[1,0,1,1],[0,2,3,0],[2,2,3,2],[1,3,2,1]],[[1,0,1,1],[0,2,3,0],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[0,2,3,0],[2,2,3,2],[1,2,2,2]],[[1,0,1,1],[0,2,3,0],[2,4,2,2],[1,2,2,1]],[[1,0,1,1],[0,2,3,0],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[0,2,3,0],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[0,2,3,0],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[0,2,3,0],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[0,2,3,0],[2,4,3,2],[1,1,2,1]],[[1,0,1,1],[0,2,3,0],[2,3,4,2],[1,1,2,1]],[[1,0,1,1],[0,2,3,0],[2,3,3,2],[1,1,3,1]],[[1,0,1,1],[0,2,3,0],[2,3,3,2],[1,1,2,2]],[[1,0,1,1],[0,2,3,0],[2,4,3,2],[1,2,1,1]],[[1,0,1,1],[0,2,3,0],[2,3,4,2],[1,2,1,1]],[[1,0,1,1],[0,2,3,0],[2,3,3,2],[2,2,1,1]],[[1,0,1,1],[0,2,3,0],[2,3,3,2],[1,3,1,1]],[[1,0,1,1],[0,2,3,1],[2,1,3,3],[1,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,1,3,2],[1,2,3,1]],[[1,0,1,1],[0,2,3,1],[2,1,3,2],[1,2,2,2]],[[1,0,1,1],[0,2,3,1],[2,2,2,3],[1,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[0,2,3,1],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[0,2,3,1],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[0,2,4,1],[2,2,3,1],[1,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,2,4,1],[1,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[0,2,3,1],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[0,2,3,1],[2,2,3,1],[1,2,2,2]],[[1,0,1,1],[0,2,4,1],[2,2,3,2],[1,2,1,1]],[[1,0,1,1],[0,2,3,1],[2,2,4,2],[1,2,1,1]],[[1,0,1,1],[0,2,3,1],[2,2,3,3],[1,2,1,1]],[[1,0,1,1],[0,2,3,1],[2,2,3,2],[1,2,1,2]],[[1,0,1,1],[0,2,4,1],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[0,2,3,1],[2,2,4,2],[1,2,2,0]],[[1,0,1,1],[0,2,3,1],[2,2,3,3],[1,2,2,0]],[[1,0,1,1],[0,2,3,1],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[0,2,3,1],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[0,2,3,1],[2,2,3,2],[1,2,3,0]],[[1,0,1,1],[0,2,3,1],[2,4,1,2],[1,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,1,3],[1,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,1,2],[2,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,1,2],[1,3,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,1,2],[1,2,3,1]],[[1,0,1,1],[0,2,3,1],[2,3,1,2],[1,2,2,2]],[[1,0,1,1],[0,2,3,1],[2,4,2,1],[1,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,2,1],[2,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,2,1],[1,3,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,2,1],[1,2,3,1]],[[1,0,1,1],[0,2,3,1],[2,3,2,1],[1,2,2,2]],[[1,0,1,1],[0,2,3,1],[2,3,2,3],[1,1,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,2,2],[1,1,3,1]],[[1,0,1,1],[0,2,3,1],[2,3,2,2],[1,1,2,2]],[[1,0,1,1],[0,2,3,1],[2,4,2,2],[1,2,2,0]],[[1,0,1,1],[0,2,3,1],[2,3,2,2],[2,2,2,0]],[[1,0,1,1],[0,2,3,1],[2,3,2,2],[1,3,2,0]],[[1,0,1,1],[0,2,3,1],[2,3,2,2],[1,2,3,0]],[[1,0,1,1],[0,2,3,1],[2,4,3,0],[1,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,0],[2,2,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,0],[1,3,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,0],[1,2,3,1]],[[1,0,1,1],[0,2,4,1],[2,3,3,1],[1,1,2,1]],[[1,0,1,1],[0,2,3,1],[2,4,3,1],[1,1,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,4,1],[1,1,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,1],[1,1,3,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,1],[1,1,2,2]],[[1,0,1,1],[0,2,4,1],[2,3,3,1],[1,2,1,1]],[[1,0,1,1],[0,2,3,1],[2,4,3,1],[1,2,1,1]],[[1,0,1,1],[0,2,3,1],[2,3,4,1],[1,2,1,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,1],[2,2,1,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,1],[1,3,1,1]],[[1,0,1,1],[0,2,3,1],[2,3,4,2],[1,0,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,3],[1,0,2,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,2],[1,0,2,2]],[[1,0,1,1],[0,2,4,1],[2,3,3,2],[1,1,1,1]],[[1,0,1,1],[0,2,3,1],[2,4,3,2],[1,1,1,1]],[[1,0,1,1],[0,2,3,1],[2,3,4,2],[1,1,1,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,3],[1,1,1,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,2],[1,1,1,2]],[[1,0,1,1],[0,2,4,1],[2,3,3,2],[1,1,2,0]],[[1,0,1,1],[0,2,3,1],[2,4,3,2],[1,1,2,0]],[[1,0,1,1],[0,2,3,1],[2,3,4,2],[1,1,2,0]],[[1,0,1,1],[0,2,3,1],[2,3,3,3],[1,1,2,0]],[[1,0,1,1],[0,2,3,1],[2,3,3,2],[1,1,3,0]],[[1,0,1,1],[0,2,4,1],[2,3,3,2],[1,2,0,1]],[[1,0,1,1],[0,2,3,1],[2,4,3,2],[1,2,0,1]],[[1,0,1,1],[0,2,3,1],[2,3,4,2],[1,2,0,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,3],[1,2,0,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,2],[2,2,0,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,2],[1,3,0,1]],[[1,0,1,1],[0,2,3,1],[2,3,3,2],[1,2,0,2]],[[1,0,1,1],[0,2,4,1],[2,3,3,2],[1,2,1,0]],[[1,0,1,1],[0,2,3,1],[2,4,3,2],[1,2,1,0]],[[1,0,1,1],[0,2,3,1],[2,3,4,2],[1,2,1,0]],[[1,0,1,1],[0,2,3,1],[2,3,3,3],[1,2,1,0]],[[1,0,1,1],[0,2,3,1],[2,3,3,2],[2,2,1,0]],[[1,0,1,1],[0,2,3,1],[2,3,3,2],[1,3,1,0]],[[1,3,2,0],[0,2,3,2],[1,1,2,2],[1,2,1,1]],[[2,2,2,0],[0,2,3,2],[1,1,2,2],[1,2,1,1]],[[1,2,2,0],[0,2,3,2],[1,1,1,2],[1,2,2,2]],[[1,2,2,0],[0,2,3,2],[1,1,1,2],[1,2,3,1]],[[1,2,2,0],[0,2,3,2],[1,1,1,2],[1,3,2,1]],[[1,2,2,0],[0,2,3,2],[1,1,1,2],[2,2,2,1]],[[1,2,2,0],[0,2,3,2],[1,1,1,3],[1,2,2,1]],[[1,2,2,0],[0,2,3,3],[1,1,1,2],[1,2,2,1]],[[1,0,1,2],[0,2,3,2],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[0,2,4,2],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[0,2,3,3],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,2,1,3],[1,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,2,1,2],[2,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,2,1,2],[1,3,2,1]],[[1,0,1,1],[0,2,3,2],[2,2,1,2],[1,2,3,1]],[[1,0,1,1],[0,2,3,2],[2,2,1,2],[1,2,2,2]],[[1,0,1,2],[0,2,3,2],[2,2,2,2],[1,2,1,1]],[[1,0,1,1],[0,2,4,2],[2,2,2,2],[1,2,1,1]],[[1,0,1,1],[0,2,3,3],[2,2,2,2],[1,2,1,1]],[[1,0,1,1],[0,2,3,2],[2,2,2,3],[1,2,1,1]],[[1,0,1,1],[0,2,3,2],[2,2,2,2],[1,2,1,2]],[[1,0,1,2],[0,2,3,2],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[0,2,4,2],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[0,2,3,3],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[0,2,3,2],[2,2,2,3],[1,2,2,0]],[[1,0,1,2],[0,2,3,2],[2,2,3,0],[1,2,2,1]],[[1,0,1,1],[0,2,4,2],[2,2,3,0],[1,2,2,1]],[[1,0,1,1],[0,2,3,3],[2,2,3,0],[1,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,2,4,0],[1,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,2,3,0],[2,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,2,3,0],[1,3,2,1]],[[1,0,1,1],[0,2,3,2],[2,2,3,0],[1,2,3,1]],[[1,0,1,1],[0,2,3,2],[2,2,3,0],[1,2,2,2]],[[1,0,1,2],[0,2,3,2],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[0,2,4,2],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[0,2,3,3],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[0,2,3,2],[2,2,4,1],[1,2,1,1]],[[1,0,1,2],[0,2,3,2],[2,2,3,1],[1,2,2,0]],[[1,0,1,1],[0,2,4,2],[2,2,3,1],[1,2,2,0]],[[1,0,1,1],[0,2,3,3],[2,2,3,1],[1,2,2,0]],[[1,0,1,1],[0,2,3,2],[2,2,4,1],[1,2,2,0]],[[1,0,1,1],[0,2,3,2],[2,2,3,1],[2,2,2,0]],[[1,0,1,1],[0,2,3,2],[2,2,3,1],[1,3,2,0]],[[1,0,1,1],[0,2,3,2],[2,2,3,1],[1,2,3,0]],[[1,2,2,0],[0,2,4,2],[1,1,1,2],[1,2,2,1]],[[1,2,3,0],[0,2,3,2],[1,1,1,2],[1,2,2,1]],[[1,3,2,0],[0,2,3,2],[1,1,1,2],[1,2,2,1]],[[2,2,2,0],[0,2,3,2],[1,1,1,2],[1,2,2,1]],[[1,0,1,2],[0,2,3,2],[2,3,0,2],[1,2,2,1]],[[1,0,1,1],[0,2,4,2],[2,3,0,2],[1,2,2,1]],[[1,0,1,1],[0,2,3,3],[2,3,0,2],[1,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,4,0,2],[1,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,3,0,3],[1,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,3,0,2],[2,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,3,0,2],[1,3,2,1]],[[1,0,1,1],[0,2,3,2],[2,3,0,2],[1,2,3,1]],[[1,0,1,1],[0,2,3,2],[2,3,0,2],[1,2,2,2]],[[1,0,1,2],[0,2,3,2],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[0,2,4,2],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[0,2,3,3],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[0,2,3,2],[2,3,1,3],[1,1,2,1]],[[1,0,1,1],[0,2,3,2],[2,3,1,2],[1,1,3,1]],[[1,0,1,1],[0,2,3,2],[2,3,1,2],[1,1,2,2]],[[1,0,1,1],[0,2,3,2],[2,4,2,0],[1,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,3,2,0],[2,2,2,1]],[[1,0,1,1],[0,2,3,2],[2,3,2,0],[1,3,2,1]],[[1,0,1,1],[0,2,3,2],[2,3,2,0],[1,2,3,1]],[[1,0,1,1],[0,2,3,2],[2,3,2,0],[1,2,2,2]],[[1,0,1,1],[0,2,3,2],[2,4,2,1],[1,2,2,0]],[[1,0,1,1],[0,2,3,2],[2,3,2,1],[2,2,2,0]],[[1,0,1,1],[0,2,3,2],[2,3,2,1],[1,3,2,0]],[[1,0,1,1],[0,2,3,2],[2,3,2,1],[1,2,3,0]],[[1,0,1,2],[0,2,3,2],[2,3,2,2],[1,1,1,1]],[[1,0,1,1],[0,2,4,2],[2,3,2,2],[1,1,1,1]],[[1,0,1,1],[0,2,3,3],[2,3,2,2],[1,1,1,1]],[[1,0,1,1],[0,2,3,2],[2,3,2,3],[1,1,1,1]],[[1,0,1,1],[0,2,3,2],[2,3,2,2],[1,1,1,2]],[[1,0,1,2],[0,2,3,2],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[0,2,4,2],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[0,2,3,3],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[0,2,3,2],[2,3,2,3],[1,1,2,0]],[[1,0,1,2],[0,2,3,2],[2,3,2,2],[1,2,0,1]],[[1,0,1,1],[0,2,4,2],[2,3,2,2],[1,2,0,1]],[[1,0,1,1],[0,2,3,3],[2,3,2,2],[1,2,0,1]],[[1,0,1,1],[0,2,3,2],[2,3,2,3],[1,2,0,1]],[[1,0,1,1],[0,2,3,2],[2,3,2,2],[1,2,0,2]],[[1,0,1,2],[0,2,3,2],[2,3,2,2],[1,2,1,0]],[[1,0,1,1],[0,2,4,2],[2,3,2,2],[1,2,1,0]],[[1,0,1,1],[0,2,3,3],[2,3,2,2],[1,2,1,0]],[[1,0,1,1],[0,2,3,2],[2,3,2,3],[1,2,1,0]],[[1,2,2,0],[0,2,3,2],[1,0,3,3],[1,2,2,0]],[[1,2,2,0],[0,2,3,3],[1,0,3,2],[1,2,2,0]],[[1,2,2,0],[0,2,4,2],[1,0,3,2],[1,2,2,0]],[[1,2,3,0],[0,2,3,2],[1,0,3,2],[1,2,2,0]],[[1,3,2,0],[0,2,3,2],[1,0,3,2],[1,2,2,0]],[[1,2,2,0],[0,2,3,2],[1,0,3,2],[1,2,1,2]],[[1,2,2,0],[0,2,3,2],[1,0,3,3],[1,2,1,1]],[[1,0,1,2],[0,2,3,2],[2,3,3,0],[1,1,2,1]],[[1,0,1,1],[0,2,4,2],[2,3,3,0],[1,1,2,1]],[[1,0,1,1],[0,2,3,3],[2,3,3,0],[1,1,2,1]],[[1,0,1,1],[0,2,3,2],[2,4,3,0],[1,1,2,1]],[[1,0,1,1],[0,2,3,2],[2,3,4,0],[1,1,2,1]],[[1,0,1,1],[0,2,3,2],[2,3,3,0],[1,1,3,1]],[[1,0,1,1],[0,2,3,2],[2,3,3,0],[1,1,2,2]],[[1,0,1,2],[0,2,3,2],[2,3,3,0],[1,2,1,1]],[[1,0,1,1],[0,2,4,2],[2,3,3,0],[1,2,1,1]],[[1,0,1,1],[0,2,3,3],[2,3,3,0],[1,2,1,1]],[[1,0,1,1],[0,2,3,2],[2,4,3,0],[1,2,1,1]],[[1,0,1,1],[0,2,3,2],[2,3,4,0],[1,2,1,1]],[[1,0,1,1],[0,2,3,2],[2,3,3,0],[2,2,1,1]],[[1,0,1,1],[0,2,3,2],[2,3,3,0],[1,3,1,1]],[[1,0,1,2],[0,2,3,2],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[0,2,4,2],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[0,2,3,3],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[0,2,3,2],[2,4,3,1],[1,1,1,1]],[[1,0,1,1],[0,2,3,2],[2,3,4,1],[1,1,1,1]],[[1,0,1,2],[0,2,3,2],[2,3,3,1],[1,1,2,0]],[[1,0,1,1],[0,2,4,2],[2,3,3,1],[1,1,2,0]],[[1,0,1,1],[0,2,3,3],[2,3,3,1],[1,1,2,0]],[[1,0,1,1],[0,2,3,2],[2,4,3,1],[1,1,2,0]],[[1,0,1,1],[0,2,3,2],[2,3,4,1],[1,1,2,0]],[[1,0,1,1],[0,2,3,2],[2,3,3,1],[1,1,3,0]],[[1,0,1,2],[0,2,3,2],[2,3,3,1],[1,2,0,1]],[[1,0,1,1],[0,2,4,2],[2,3,3,1],[1,2,0,1]],[[1,0,1,1],[0,2,3,3],[2,3,3,1],[1,2,0,1]],[[1,0,1,1],[0,2,3,2],[2,4,3,1],[1,2,0,1]],[[1,0,1,1],[0,2,3,2],[2,3,4,1],[1,2,0,1]],[[1,0,1,1],[0,2,3,2],[2,3,3,1],[2,2,0,1]],[[1,0,1,1],[0,2,3,2],[2,3,3,1],[1,3,0,1]],[[1,0,1,2],[0,2,3,2],[2,3,3,1],[1,2,1,0]],[[1,0,1,1],[0,2,4,2],[2,3,3,1],[1,2,1,0]],[[1,0,1,1],[0,2,3,3],[2,3,3,1],[1,2,1,0]],[[1,0,1,1],[0,2,3,2],[2,4,3,1],[1,2,1,0]],[[1,0,1,1],[0,2,3,2],[2,3,4,1],[1,2,1,0]],[[1,0,1,1],[0,2,3,2],[2,3,3,1],[2,2,1,0]],[[1,0,1,1],[0,2,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,2,3,3],[1,0,3,2],[1,2,1,1]],[[1,2,2,0],[0,2,4,2],[1,0,3,2],[1,2,1,1]],[[1,2,3,0],[0,2,3,2],[1,0,3,2],[1,2,1,1]],[[1,3,2,0],[0,2,3,2],[1,0,3,2],[1,2,1,1]],[[1,2,2,0],[0,2,3,2],[1,0,3,2],[1,1,2,2]],[[1,2,2,0],[0,2,3,2],[1,0,3,3],[1,1,2,1]],[[1,2,2,0],[0,2,3,3],[1,0,3,2],[1,1,2,1]],[[1,2,2,0],[0,2,4,2],[1,0,3,2],[1,1,2,1]],[[1,2,3,0],[0,2,3,2],[1,0,3,2],[1,1,2,1]],[[1,3,2,0],[0,2,3,2],[1,0,3,2],[1,1,2,1]],[[1,2,2,0],[0,2,3,2],[1,0,2,2],[1,2,2,2]],[[1,2,2,0],[0,2,3,2],[1,0,2,2],[1,2,3,1]],[[1,2,2,0],[0,2,3,2],[1,0,2,3],[1,2,2,1]],[[1,2,2,0],[0,2,3,3],[1,0,2,2],[1,2,2,1]],[[1,2,2,0],[0,2,4,2],[1,0,2,2],[1,2,2,1]],[[1,2,3,0],[0,2,3,2],[1,0,2,2],[1,2,2,1]],[[1,3,2,0],[0,2,3,2],[1,0,2,2],[1,2,2,1]],[[1,0,1,1],[0,3,0,1],[2,4,3,2],[1,2,2,1]],[[1,0,1,1],[0,3,0,1],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[0,3,0,1],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[0,3,0,1],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[0,3,0,1],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[0,3,0,2],[2,2,3,3],[1,2,2,1]],[[1,0,1,1],[0,3,0,2],[2,2,3,2],[2,2,2,1]],[[1,0,1,1],[0,3,0,2],[2,2,3,2],[1,3,2,1]],[[1,0,1,1],[0,3,0,2],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[0,3,0,2],[2,2,3,2],[1,2,2,2]],[[1,0,1,1],[0,3,0,2],[2,4,2,2],[1,2,2,1]],[[1,0,1,1],[0,3,0,2],[2,3,2,3],[1,2,2,1]],[[1,0,1,1],[0,3,0,2],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[0,3,0,2],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[0,3,0,2],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[0,3,0,2],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[0,3,0,2],[2,4,3,1],[1,2,2,1]],[[1,0,1,1],[0,3,0,2],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[0,3,0,2],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[0,3,0,2],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[0,3,0,2],[2,3,3,1],[1,2,2,2]],[[1,0,1,1],[0,3,0,2],[2,3,3,3],[1,1,2,1]],[[1,0,1,1],[0,3,0,2],[2,3,3,2],[1,1,3,1]],[[1,0,1,1],[0,3,0,2],[2,3,3,2],[1,1,2,2]],[[1,0,1,1],[0,3,0,2],[2,4,3,2],[1,2,2,0]],[[1,0,1,1],[0,3,0,2],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[0,3,0,2],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[0,3,0,2],[2,3,3,2],[1,2,3,0]],[[1,0,1,1],[0,3,1,0],[2,4,3,2],[1,2,2,1]],[[1,0,1,1],[0,3,1,0],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[0,3,1,0],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[0,3,1,0],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[0,3,1,0],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[0,3,1,1],[2,4,3,1],[1,2,2,1]],[[1,0,1,1],[0,3,1,1],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[0,3,1,1],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[0,3,1,1],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[0,3,1,1],[2,3,3,1],[1,2,2,2]],[[1,0,1,1],[0,3,1,1],[2,4,3,2],[1,2,2,0]],[[1,0,1,1],[0,3,1,1],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[0,3,1,1],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[0,3,1,1],[2,3,3,2],[1,2,3,0]],[[1,0,1,2],[0,3,1,2],[2,2,2,2],[1,2,2,1]],[[1,0,1,1],[0,3,1,3],[2,2,2,2],[1,2,2,1]],[[1,0,1,1],[0,3,1,2],[2,2,2,3],[1,2,2,1]],[[1,0,1,1],[0,3,1,2],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[0,3,1,2],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[0,3,1,2],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[0,3,1,2],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[0,3,1,2],[2,2,4,1],[1,2,2,1]],[[1,0,1,1],[0,3,1,2],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[0,3,1,2],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[0,3,1,2],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[0,3,1,2],[2,2,3,1],[1,2,2,2]],[[1,0,1,2],[0,3,1,2],[2,2,3,2],[1,2,1,1]],[[1,0,1,1],[0,3,1,3],[2,2,3,2],[1,2,1,1]],[[1,0,1,1],[0,3,1,2],[2,2,4,2],[1,2,1,1]],[[1,0,1,1],[0,3,1,2],[2,2,3,3],[1,2,1,1]],[[1,0,1,1],[0,3,1,2],[2,2,3,2],[1,2,1,2]],[[1,0,1,2],[0,3,1,2],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[0,3,1,3],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[0,3,1,2],[2,2,4,2],[1,2,2,0]],[[1,0,1,1],[0,3,1,2],[2,2,3,3],[1,2,2,0]],[[1,0,1,1],[0,3,1,2],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[0,3,1,2],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[0,3,1,2],[2,2,3,2],[1,2,3,0]],[[1,0,1,2],[0,3,1,2],[2,3,1,2],[1,2,2,1]],[[1,0,1,1],[0,3,1,3],[2,3,1,2],[1,2,2,1]],[[1,0,1,1],[0,3,1,2],[2,4,1,2],[1,2,2,1]],[[1,0,1,1],[0,3,1,2],[2,3,1,3],[1,2,2,1]],[[1,0,1,1],[0,3,1,2],[2,3,1,2],[2,2,2,1]],[[1,0,1,1],[0,3,1,2],[2,3,1,2],[1,3,2,1]],[[1,0,1,1],[0,3,1,2],[2,3,1,2],[1,2,3,1]],[[1,0,1,1],[0,3,1,2],[2,3,1,2],[1,2,2,2]],[[1,0,1,1],[0,3,1,2],[2,4,2,1],[1,2,2,1]],[[1,0,1,1],[0,3,1,2],[2,3,2,1],[2,2,2,1]],[[1,0,1,1],[0,3,1,2],[2,3,2,1],[1,3,2,1]],[[1,0,1,1],[0,3,1,2],[2,3,2,1],[1,2,3,1]],[[1,0,1,1],[0,3,1,2],[2,3,2,1],[1,2,2,2]],[[1,0,1,2],[0,3,1,2],[2,3,2,2],[1,1,2,1]],[[1,0,1,1],[0,3,1,3],[2,3,2,2],[1,1,2,1]],[[1,0,1,1],[0,3,1,2],[2,3,2,3],[1,1,2,1]],[[1,0,1,1],[0,3,1,2],[2,3,2,2],[1,1,3,1]],[[1,0,1,1],[0,3,1,2],[2,3,2,2],[1,1,2,2]],[[1,0,1,1],[0,3,1,2],[2,4,2,2],[1,2,2,0]],[[1,0,1,1],[0,3,1,2],[2,3,2,2],[2,2,2,0]],[[1,0,1,1],[0,3,1,2],[2,3,2,2],[1,3,2,0]],[[1,0,1,1],[0,3,1,2],[2,3,2,2],[1,2,3,0]],[[1,0,1,1],[0,3,1,2],[2,4,3,1],[1,1,2,1]],[[1,0,1,1],[0,3,1,2],[2,3,4,1],[1,1,2,1]],[[1,0,1,1],[0,3,1,2],[2,3,3,1],[1,1,3,1]],[[1,0,1,1],[0,3,1,2],[2,3,3,1],[1,1,2,2]],[[1,0,1,1],[0,3,1,2],[2,4,3,1],[1,2,1,1]],[[1,0,1,1],[0,3,1,2],[2,3,4,1],[1,2,1,1]],[[1,0,1,1],[0,3,1,2],[2,3,3,1],[2,2,1,1]],[[1,0,1,1],[0,3,1,2],[2,3,3,1],[1,3,1,1]],[[1,0,1,2],[0,3,1,2],[2,3,3,2],[1,1,1,1]],[[1,0,1,1],[0,3,1,3],[2,3,3,2],[1,1,1,1]],[[1,0,1,1],[0,3,1,2],[2,4,3,2],[1,1,1,1]],[[1,0,1,1],[0,3,1,2],[2,3,4,2],[1,1,1,1]],[[1,0,1,1],[0,3,1,2],[2,3,3,3],[1,1,1,1]],[[1,0,1,1],[0,3,1,2],[2,3,3,2],[1,1,1,2]],[[1,0,1,2],[0,3,1,2],[2,3,3,2],[1,1,2,0]],[[1,0,1,1],[0,3,1,3],[2,3,3,2],[1,1,2,0]],[[1,0,1,1],[0,3,1,2],[2,4,3,2],[1,1,2,0]],[[1,0,1,1],[0,3,1,2],[2,3,4,2],[1,1,2,0]],[[1,0,1,1],[0,3,1,2],[2,3,3,3],[1,1,2,0]],[[1,0,1,1],[0,3,1,2],[2,3,3,2],[1,1,3,0]],[[1,0,1,2],[0,3,1,2],[2,3,3,2],[1,2,0,1]],[[1,0,1,1],[0,3,1,3],[2,3,3,2],[1,2,0,1]],[[1,0,1,1],[0,3,1,2],[2,4,3,2],[1,2,0,1]],[[1,0,1,1],[0,3,1,2],[2,3,4,2],[1,2,0,1]],[[1,0,1,1],[0,3,1,2],[2,3,3,3],[1,2,0,1]],[[1,0,1,1],[0,3,1,2],[2,3,3,2],[2,2,0,1]],[[1,0,1,1],[0,3,1,2],[2,3,3,2],[1,3,0,1]],[[1,0,1,1],[0,3,1,2],[2,3,3,2],[1,2,0,2]],[[1,0,1,2],[0,3,1,2],[2,3,3,2],[1,2,1,0]],[[1,0,1,1],[0,3,1,3],[2,3,3,2],[1,2,1,0]],[[1,0,1,1],[0,3,1,2],[2,4,3,2],[1,2,1,0]],[[1,0,1,1],[0,3,1,2],[2,3,4,2],[1,2,1,0]],[[1,0,1,1],[0,3,1,2],[2,3,3,3],[1,2,1,0]],[[1,0,1,1],[0,3,1,2],[2,3,3,2],[2,2,1,0]],[[1,0,1,1],[0,3,1,2],[2,3,3,2],[1,3,1,0]],[[1,0,1,1],[0,3,2,0],[2,2,4,2],[1,2,2,1]],[[1,0,1,1],[0,3,2,0],[2,2,3,2],[2,2,2,1]],[[1,0,1,1],[0,3,2,0],[2,2,3,2],[1,3,2,1]],[[1,0,1,1],[0,3,2,0],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[0,3,2,0],[2,2,3,2],[1,2,2,2]],[[1,0,1,1],[0,3,2,0],[2,4,2,2],[1,2,2,1]],[[1,0,1,1],[0,3,2,0],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[0,3,2,0],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[0,3,2,0],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[0,3,2,0],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[0,3,2,0],[2,4,3,2],[1,1,2,1]],[[1,0,1,1],[0,3,2,0],[2,3,4,2],[1,1,2,1]],[[1,0,1,1],[0,3,2,0],[2,3,3,2],[1,1,3,1]],[[1,0,1,1],[0,3,2,0],[2,3,3,2],[1,1,2,2]],[[1,0,1,1],[0,3,2,0],[2,4,3,2],[1,2,1,1]],[[1,0,1,1],[0,3,2,0],[2,3,4,2],[1,2,1,1]],[[1,0,1,1],[0,3,2,0],[2,3,3,2],[2,2,1,1]],[[1,0,1,1],[0,3,2,0],[2,3,3,2],[1,3,1,1]],[[1,0,1,1],[0,3,2,1],[2,2,2,3],[1,2,2,1]],[[1,0,1,1],[0,3,2,1],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[0,3,2,1],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[0,3,2,1],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[0,3,2,1],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[0,3,2,1],[2,2,4,1],[1,2,2,1]],[[1,0,1,1],[0,3,2,1],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[0,3,2,1],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[0,3,2,1],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[0,3,2,1],[2,2,3,1],[1,2,2,2]],[[1,0,1,1],[0,3,2,1],[2,2,4,2],[1,2,1,1]],[[1,0,1,1],[0,3,2,1],[2,2,3,3],[1,2,1,1]],[[1,0,1,1],[0,3,2,1],[2,2,3,2],[1,2,1,2]],[[1,0,1,1],[0,3,2,1],[2,2,4,2],[1,2,2,0]],[[1,0,1,1],[0,3,2,1],[2,2,3,3],[1,2,2,0]],[[1,0,1,1],[0,3,2,1],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[0,3,2,1],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[0,3,2,1],[2,2,3,2],[1,2,3,0]],[[1,0,1,1],[0,3,2,1],[2,4,1,2],[1,2,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,1,3],[1,2,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,1,2],[2,2,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,1,2],[1,3,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,1,2],[1,2,3,1]],[[1,0,1,1],[0,3,2,1],[2,3,1,2],[1,2,2,2]],[[1,0,1,1],[0,3,2,1],[2,4,2,1],[1,2,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,2,1],[2,2,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,2,1],[1,3,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,2,1],[1,2,3,1]],[[1,0,1,1],[0,3,2,1],[2,3,2,1],[1,2,2,2]],[[1,0,1,1],[0,3,2,1],[2,3,2,3],[1,1,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,2,2],[1,1,3,1]],[[1,0,1,1],[0,3,2,1],[2,3,2,2],[1,1,2,2]],[[1,0,1,1],[0,3,2,1],[2,4,2,2],[1,2,2,0]],[[1,0,1,1],[0,3,2,1],[2,3,2,2],[2,2,2,0]],[[1,0,1,1],[0,3,2,1],[2,3,2,2],[1,3,2,0]],[[1,0,1,1],[0,3,2,1],[2,3,2,2],[1,2,3,0]],[[1,0,1,1],[0,3,2,1],[2,4,3,0],[1,2,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,0],[2,2,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,0],[1,3,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,0],[1,2,3,1]],[[1,0,1,1],[0,3,2,1],[2,4,3,1],[1,1,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,4,1],[1,1,2,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,1],[1,1,3,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,1],[1,1,2,2]],[[1,0,1,1],[0,3,2,1],[2,4,3,1],[1,2,1,1]],[[1,0,1,1],[0,3,2,1],[2,3,4,1],[1,2,1,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,1],[2,2,1,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,1],[1,3,1,1]],[[1,0,1,1],[0,3,2,1],[2,4,3,2],[1,1,1,1]],[[1,0,1,1],[0,3,2,1],[2,3,4,2],[1,1,1,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,3],[1,1,1,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,2],[1,1,1,2]],[[1,0,1,1],[0,3,2,1],[2,4,3,2],[1,1,2,0]],[[1,0,1,1],[0,3,2,1],[2,3,4,2],[1,1,2,0]],[[1,0,1,1],[0,3,2,1],[2,3,3,3],[1,1,2,0]],[[1,0,1,1],[0,3,2,1],[2,3,3,2],[1,1,3,0]],[[1,0,1,1],[0,3,2,1],[2,4,3,2],[1,2,0,1]],[[1,0,1,1],[0,3,2,1],[2,3,4,2],[1,2,0,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,3],[1,2,0,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,2],[2,2,0,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,2],[1,3,0,1]],[[1,0,1,1],[0,3,2,1],[2,3,3,2],[1,2,0,2]],[[1,0,1,1],[0,3,2,1],[2,4,3,2],[1,2,1,0]],[[1,0,1,1],[0,3,2,1],[2,3,4,2],[1,2,1,0]],[[1,0,1,1],[0,3,2,1],[2,3,3,3],[1,2,1,0]],[[1,0,1,1],[0,3,2,1],[2,3,3,2],[2,2,1,0]],[[1,0,1,1],[0,3,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,2,3,2],[0,0,3,2],[1,2,2,2]],[[1,0,1,1],[0,3,2,2],[2,2,4,0],[1,2,2,1]],[[1,0,1,1],[0,3,2,2],[2,2,3,0],[2,2,2,1]],[[1,0,1,1],[0,3,2,2],[2,2,3,0],[1,3,2,1]],[[1,0,1,1],[0,3,2,2],[2,2,3,0],[1,2,3,1]],[[1,0,1,1],[0,3,2,2],[2,2,3,0],[1,2,2,2]],[[1,0,1,1],[0,3,2,2],[2,2,4,1],[1,2,2,0]],[[1,0,1,1],[0,3,2,2],[2,2,3,1],[2,2,2,0]],[[1,0,1,1],[0,3,2,2],[2,2,3,1],[1,3,2,0]],[[1,0,1,1],[0,3,2,2],[2,2,3,1],[1,2,3,0]],[[1,2,2,0],[0,2,3,2],[0,0,3,2],[1,2,3,1]],[[1,2,2,0],[0,2,3,2],[0,0,3,3],[1,2,2,1]],[[1,2,2,0],[0,2,3,3],[0,0,3,2],[1,2,2,1]],[[1,0,1,2],[0,3,2,2],[2,3,0,2],[1,2,2,1]],[[1,0,1,1],[0,3,2,3],[2,3,0,2],[1,2,2,1]],[[1,0,1,1],[0,3,2,2],[2,4,0,2],[1,2,2,1]],[[1,0,1,1],[0,3,2,2],[2,3,0,3],[1,2,2,1]],[[1,0,1,1],[0,3,2,2],[2,3,0,2],[2,2,2,1]],[[1,0,1,1],[0,3,2,2],[2,3,0,2],[1,3,2,1]],[[1,0,1,1],[0,3,2,2],[2,3,0,2],[1,2,3,1]],[[1,0,1,1],[0,3,2,2],[2,3,0,2],[1,2,2,2]],[[1,0,1,1],[0,3,2,2],[2,4,2,0],[1,2,2,1]],[[1,0,1,1],[0,3,2,2],[2,3,2,0],[2,2,2,1]],[[1,0,1,1],[0,3,2,2],[2,3,2,0],[1,3,2,1]],[[1,0,1,1],[0,3,2,2],[2,3,2,0],[1,2,3,1]],[[1,0,1,1],[0,3,2,2],[2,3,2,0],[1,2,2,2]],[[1,0,1,1],[0,3,2,2],[2,4,2,1],[1,2,2,0]],[[1,0,1,1],[0,3,2,2],[2,3,2,1],[2,2,2,0]],[[1,0,1,1],[0,3,2,2],[2,3,2,1],[1,3,2,0]],[[1,0,1,1],[0,3,2,2],[2,3,2,1],[1,2,3,0]],[[1,0,1,1],[0,3,2,2],[2,4,3,0],[1,1,2,1]],[[1,0,1,1],[0,3,2,2],[2,3,4,0],[1,1,2,1]],[[1,0,1,1],[0,3,2,2],[2,3,3,0],[1,1,3,1]],[[1,0,1,1],[0,3,2,2],[2,3,3,0],[1,1,2,2]],[[1,0,1,1],[0,3,2,2],[2,4,3,0],[1,2,1,1]],[[1,0,1,1],[0,3,2,2],[2,3,4,0],[1,2,1,1]],[[1,0,1,1],[0,3,2,2],[2,3,3,0],[2,2,1,1]],[[1,0,1,1],[0,3,2,2],[2,3,3,0],[1,3,1,1]],[[1,0,1,1],[0,3,2,2],[2,4,3,1],[1,1,2,0]],[[1,0,1,1],[0,3,2,2],[2,3,4,1],[1,1,2,0]],[[1,0,1,1],[0,3,2,2],[2,3,3,1],[1,1,3,0]],[[1,0,1,1],[0,3,2,2],[2,4,3,1],[1,2,0,1]],[[1,0,1,1],[0,3,2,2],[2,3,4,1],[1,2,0,1]],[[1,0,1,1],[0,3,2,2],[2,3,3,1],[2,2,0,1]],[[1,0,1,1],[0,3,2,2],[2,3,3,1],[1,3,0,1]],[[1,0,1,1],[0,3,2,2],[2,4,3,1],[1,2,1,0]],[[1,0,1,1],[0,3,2,2],[2,3,4,1],[1,2,1,0]],[[1,0,1,1],[0,3,2,2],[2,3,3,1],[2,2,1,0]],[[1,0,1,1],[0,3,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,2,4,1],[2,3,3,2],[1,1,0,0]],[[1,2,3,0],[0,2,3,1],[2,3,3,2],[1,1,0,0]],[[1,3,2,0],[0,2,3,1],[2,3,3,2],[1,1,0,0]],[[2,2,2,0],[0,2,3,1],[2,3,3,2],[1,1,0,0]],[[1,0,1,1],[0,3,3,1],[2,4,0,2],[1,2,2,1]],[[1,0,1,1],[0,3,3,1],[2,3,0,3],[1,2,2,1]],[[1,0,1,1],[0,3,3,1],[2,3,0,2],[2,2,2,1]],[[1,0,1,1],[0,3,3,1],[2,3,0,2],[1,3,2,1]],[[1,0,1,1],[0,3,3,1],[2,3,0,2],[1,2,3,1]],[[1,0,1,1],[0,3,3,1],[2,3,0,2],[1,2,2,2]],[[1,0,1,1],[0,3,3,1],[2,4,1,1],[1,2,2,1]],[[1,0,1,1],[0,3,3,1],[2,3,1,1],[2,2,2,1]],[[1,0,1,1],[0,3,3,1],[2,3,1,1],[1,3,2,1]],[[1,0,1,1],[0,3,3,1],[2,3,1,1],[1,2,3,1]],[[1,0,1,1],[0,3,3,1],[2,3,1,1],[1,2,2,2]],[[1,0,1,1],[0,3,3,1],[2,4,1,2],[1,2,2,0]],[[1,0,1,1],[0,3,3,1],[2,3,1,2],[2,2,2,0]],[[1,0,1,1],[0,3,3,1],[2,3,1,2],[1,3,2,0]],[[1,0,1,1],[0,3,3,1],[2,3,1,2],[1,2,3,0]],[[1,0,1,1],[0,3,3,1],[2,4,2,1],[1,2,1,1]],[[1,0,1,1],[0,3,3,1],[2,3,2,1],[2,2,1,1]],[[1,0,1,1],[0,3,3,1],[2,3,2,1],[1,3,1,1]],[[1,0,1,1],[0,3,3,1],[2,4,2,2],[1,2,0,1]],[[1,0,1,1],[0,3,3,1],[2,3,2,2],[2,2,0,1]],[[1,0,1,1],[0,3,3,1],[2,3,2,2],[1,3,0,1]],[[1,0,1,1],[0,3,3,1],[2,4,2,2],[1,2,1,0]],[[1,0,1,1],[0,3,3,1],[2,3,2,2],[2,2,1,0]],[[1,0,1,1],[0,3,3,1],[2,3,2,2],[1,3,1,0]],[[1,2,2,0],[0,2,4,1],[2,3,3,2],[0,2,0,0]],[[1,2,3,0],[0,2,3,1],[2,3,3,2],[0,2,0,0]],[[1,3,2,0],[0,2,3,1],[2,3,3,2],[0,2,0,0]],[[2,2,2,0],[0,2,3,1],[2,3,3,2],[0,2,0,0]],[[1,2,2,0],[0,2,3,1],[2,3,3,3],[0,0,2,0]],[[1,2,2,0],[0,2,3,1],[2,3,4,2],[0,0,2,0]],[[1,2,2,0],[0,2,4,1],[2,3,3,2],[0,0,2,0]],[[1,2,3,0],[0,2,3,1],[2,3,3,2],[0,0,2,0]],[[1,3,2,0],[0,2,3,1],[2,3,3,2],[0,0,2,0]],[[2,2,2,0],[0,2,3,1],[2,3,3,2],[0,0,2,0]],[[1,2,2,0],[0,2,3,1],[2,3,3,2],[0,0,1,2]],[[1,2,2,0],[0,2,3,1],[2,3,3,3],[0,0,1,1]],[[1,2,2,0],[0,2,3,1],[2,3,4,2],[0,0,1,1]],[[1,2,2,0],[0,2,4,1],[2,3,3,2],[0,0,1,1]],[[1,2,3,0],[0,2,3,1],[2,3,3,2],[0,0,1,1]],[[1,3,2,0],[0,2,3,1],[2,3,3,2],[0,0,1,1]],[[2,2,2,0],[0,2,3,1],[2,3,3,2],[0,0,1,1]],[[1,0,1,1],[0,3,3,2],[2,4,0,1],[1,2,2,1]],[[1,0,1,1],[0,3,3,2],[2,3,0,1],[2,2,2,1]],[[1,0,1,1],[0,3,3,2],[2,3,0,1],[1,3,2,1]],[[1,0,1,1],[0,3,3,2],[2,3,0,1],[1,2,3,1]],[[1,0,1,1],[0,3,3,2],[2,3,0,1],[1,2,2,2]],[[1,0,1,1],[0,3,3,2],[2,4,0,2],[1,2,1,1]],[[1,0,1,1],[0,3,3,2],[2,3,0,2],[2,2,1,1]],[[1,0,1,1],[0,3,3,2],[2,3,0,2],[1,3,1,1]],[[1,0,1,1],[0,3,3,2],[2,4,0,2],[1,2,2,0]],[[1,0,1,1],[0,3,3,2],[2,3,0,2],[2,2,2,0]],[[1,0,1,1],[0,3,3,2],[2,3,0,2],[1,3,2,0]],[[1,0,1,1],[0,3,3,2],[2,3,0,2],[1,2,3,0]],[[1,0,1,1],[0,3,3,2],[2,4,1,0],[1,2,2,1]],[[1,0,1,1],[0,3,3,2],[2,3,1,0],[2,2,2,1]],[[1,0,1,1],[0,3,3,2],[2,3,1,0],[1,3,2,1]],[[1,0,1,1],[0,3,3,2],[2,3,1,0],[1,2,3,1]],[[1,0,1,1],[0,3,3,2],[2,3,1,0],[1,2,2,2]],[[1,0,1,1],[0,3,3,2],[2,4,1,1],[1,2,2,0]],[[1,0,1,1],[0,3,3,2],[2,3,1,1],[2,2,2,0]],[[1,0,1,1],[0,3,3,2],[2,3,1,1],[1,3,2,0]],[[1,0,1,1],[0,3,3,2],[2,3,1,1],[1,2,3,0]],[[1,0,1,1],[0,3,3,2],[2,4,1,2],[1,2,0,1]],[[1,0,1,1],[0,3,3,2],[2,3,1,2],[2,2,0,1]],[[1,0,1,1],[0,3,3,2],[2,3,1,2],[1,3,0,1]],[[1,0,1,1],[0,3,3,2],[2,4,1,2],[1,2,1,0]],[[1,0,1,1],[0,3,3,2],[2,3,1,2],[2,2,1,0]],[[1,0,1,1],[0,3,3,2],[2,3,1,2],[1,3,1,0]],[[1,2,2,0],[0,2,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,2,0],[0,2,4,1],[2,3,3,1],[0,0,2,1]],[[1,2,3,0],[0,2,3,1],[2,3,3,1],[0,0,2,1]],[[1,3,2,0],[0,2,3,1],[2,3,3,1],[0,0,2,1]],[[2,2,2,0],[0,2,3,1],[2,3,3,1],[0,0,2,1]],[[1,0,1,1],[0,3,3,2],[2,4,2,0],[1,2,1,1]],[[1,0,1,1],[0,3,3,2],[2,3,2,0],[2,2,1,1]],[[1,0,1,1],[0,3,3,2],[2,3,2,0],[1,3,1,1]],[[1,0,1,1],[0,3,3,2],[2,4,2,1],[1,2,0,1]],[[1,0,1,1],[0,3,3,2],[2,3,2,1],[2,2,0,1]],[[1,0,1,1],[0,3,3,2],[2,3,2,1],[1,3,0,1]],[[1,0,1,1],[0,3,3,2],[2,4,2,1],[1,2,1,0]],[[1,0,1,1],[0,3,3,2],[2,3,2,1],[2,2,1,0]],[[1,0,1,1],[0,3,3,2],[2,3,2,1],[1,3,1,0]],[[1,2,2,0],[0,2,4,1],[2,3,2,2],[1,2,0,0]],[[1,2,3,0],[0,2,3,1],[2,3,2,2],[1,2,0,0]],[[1,3,2,0],[0,2,3,1],[2,3,2,2],[1,2,0,0]],[[2,2,2,0],[0,2,3,1],[2,3,2,2],[1,2,0,0]],[[1,2,2,0],[0,2,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,3,0],[0,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,3,2,0],[0,2,3,1],[2,3,2,2],[1,1,1,0]],[[2,2,2,0],[0,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,2,0],[0,2,4,1],[2,3,2,2],[1,1,0,1]],[[1,2,3,0],[0,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,3,2,0],[0,2,3,1],[2,3,2,2],[1,1,0,1]],[[2,2,2,0],[0,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[0,3,3,2],[2,4,3,0],[1,2,1,0]],[[1,0,1,1],[0,3,3,2],[2,3,3,0],[2,2,1,0]],[[1,0,1,1],[0,3,3,2],[2,3,3,0],[1,3,1,0]],[[1,2,2,0],[0,2,4,1],[2,3,2,2],[1,0,2,0]],[[1,2,3,0],[0,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,3,2,0],[0,2,3,1],[2,3,2,2],[1,0,2,0]],[[2,2,2,0],[0,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,2,0],[0,2,4,1],[2,3,2,2],[1,0,1,1]],[[1,2,3,0],[0,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,3,2,0],[0,2,3,1],[2,3,2,2],[1,0,1,1]],[[2,2,2,0],[0,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,2,2,0],[0,2,4,1],[2,3,2,2],[0,2,1,0]],[[1,2,3,0],[0,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,3,2,0],[0,2,3,1],[2,3,2,2],[0,2,1,0]],[[2,2,2,0],[0,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,2,0],[0,2,4,1],[2,3,2,2],[0,2,0,1]],[[1,2,3,0],[0,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,3,2,0],[0,2,3,1],[2,3,2,2],[0,2,0,1]],[[2,2,2,0],[0,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,2,0],[0,2,4,1],[2,3,2,2],[0,1,2,0]],[[1,2,3,0],[0,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,3,2,0],[0,2,3,1],[2,3,2,2],[0,1,2,0]],[[2,2,2,0],[0,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,2,0],[0,2,4,1],[2,3,2,2],[0,1,1,1]],[[1,2,3,0],[0,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,3,2,0],[0,2,3,1],[2,3,2,2],[0,1,1,1]],[[2,2,2,0],[0,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,2,0],[0,2,4,1],[2,3,2,1],[1,1,1,1]],[[1,2,3,0],[0,2,3,1],[2,3,2,1],[1,1,1,1]],[[1,3,2,0],[0,2,3,1],[2,3,2,1],[1,1,1,1]],[[2,2,2,0],[0,2,3,1],[2,3,2,1],[1,1,1,1]],[[1,2,2,0],[0,2,4,1],[2,3,2,1],[1,0,2,1]],[[1,2,3,0],[0,2,3,1],[2,3,2,1],[1,0,2,1]],[[1,3,2,0],[0,2,3,1],[2,3,2,1],[1,0,2,1]],[[2,2,2,0],[0,2,3,1],[2,3,2,1],[1,0,2,1]],[[1,2,2,0],[0,2,4,1],[2,3,2,1],[0,2,1,1]],[[1,2,3,0],[0,2,3,1],[2,3,2,1],[0,2,1,1]],[[1,3,2,0],[0,2,3,1],[2,3,2,1],[0,2,1,1]],[[2,2,2,0],[0,2,3,1],[2,3,2,1],[0,2,1,1]],[[1,2,2,0],[0,2,4,1],[2,3,2,1],[0,1,2,1]],[[1,2,3,0],[0,2,3,1],[2,3,2,1],[0,1,2,1]],[[1,3,2,0],[0,2,3,1],[2,3,2,1],[0,1,2,1]],[[2,2,2,0],[0,2,3,1],[2,3,2,1],[0,1,2,1]],[[1,2,2,0],[0,2,4,1],[2,3,1,2],[1,1,2,0]],[[1,2,3,0],[0,2,3,1],[2,3,1,2],[1,1,2,0]],[[1,3,2,0],[0,2,3,1],[2,3,1,2],[1,1,2,0]],[[2,2,2,0],[0,2,3,1],[2,3,1,2],[1,1,2,0]],[[1,2,2,0],[0,2,4,1],[2,3,1,2],[0,2,2,0]],[[1,0,1,1],[1,0,1,2],[2,3,3,3],[1,2,2,1]],[[1,0,1,1],[1,0,1,2],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[1,0,1,2],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,0,1,2],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,0,1,2],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,0,2,2],[1,3,3,3],[1,2,2,1]],[[1,0,1,1],[1,0,2,2],[1,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,0,2,2],[1,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,0,2,2],[1,3,3,2],[1,2,2,2]],[[1,0,1,2],[1,0,2,2],[2,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,0,2,3],[2,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,0,2,2],[2,3,2,3],[1,2,2,1]],[[1,0,1,1],[1,0,2,2],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[1,0,2,2],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,0,2,2],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,0,2,2],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,0,2,2],[2,3,4,1],[1,2,2,1]],[[1,0,1,1],[1,0,2,2],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[1,0,2,2],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,0,2,2],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,0,2,2],[2,3,3,1],[1,2,2,2]],[[1,0,1,1],[1,0,2,2],[2,3,3,3],[0,2,2,1]],[[1,0,1,1],[1,0,2,2],[2,3,3,2],[0,2,3,1]],[[1,0,1,1],[1,0,2,2],[2,3,3,2],[0,2,2,2]],[[1,0,1,2],[1,0,2,2],[2,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,0,2,3],[2,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,0,2,2],[2,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,0,2,2],[2,3,3,3],[1,2,1,1]],[[1,0,1,1],[1,0,2,2],[2,3,3,2],[1,2,1,2]],[[1,0,1,2],[1,0,2,2],[2,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,0,2,3],[2,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,0,2,2],[2,3,4,2],[1,2,2,0]],[[1,0,1,1],[1,0,2,2],[2,3,3,3],[1,2,2,0]],[[1,0,1,1],[1,0,2,2],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[1,0,2,2],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,0,2,2],[2,3,3,2],[1,2,3,0]],[[1,0,1,1],[1,0,3,0],[2,3,4,2],[1,2,2,1]],[[1,0,1,1],[1,0,3,0],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[1,0,3,0],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,0,3,0],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,0,3,0],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,0,3,1],[2,3,2,3],[1,2,2,1]],[[1,0,1,1],[1,0,3,1],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[1,0,3,1],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,0,3,1],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,0,3,1],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,0,3,1],[2,3,4,1],[1,2,2,1]],[[1,0,1,1],[1,0,3,1],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[1,0,3,1],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,0,3,1],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,0,3,1],[2,3,3,1],[1,2,2,2]],[[1,0,1,1],[1,0,3,1],[2,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,0,3,1],[2,3,3,3],[1,2,1,1]],[[1,0,1,1],[1,0,3,1],[2,3,3,2],[1,2,1,2]],[[1,0,1,1],[1,0,3,1],[2,3,4,2],[1,2,2,0]],[[1,0,1,1],[1,0,3,1],[2,3,3,3],[1,2,2,0]],[[1,0,1,1],[1,0,3,1],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[1,0,3,1],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,0,3,1],[2,3,3,2],[1,2,3,0]],[[1,0,1,1],[1,0,3,3],[0,3,3,2],[1,2,2,1]],[[1,0,1,1],[1,0,3,2],[0,3,3,3],[1,2,2,1]],[[1,0,1,1],[1,0,3,2],[0,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,0,3,2],[0,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,0,3,3],[1,2,3,2],[1,2,2,1]],[[1,0,1,1],[1,0,3,2],[1,2,3,3],[1,2,2,1]],[[1,0,1,1],[1,0,3,2],[1,2,3,2],[1,2,3,1]],[[1,0,1,1],[1,0,3,2],[1,2,3,2],[1,2,2,2]],[[1,0,1,2],[1,0,3,2],[1,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,0,3,3],[1,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,0,3,2],[1,3,2,3],[1,2,2,1]],[[1,0,1,1],[1,0,3,2],[1,3,2,2],[2,2,2,1]],[[1,0,1,1],[1,0,3,2],[1,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,0,3,2],[1,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,0,3,2],[1,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,0,3,2],[1,3,4,1],[1,2,2,1]],[[1,0,1,1],[1,0,3,2],[1,3,3,1],[2,2,2,1]],[[1,0,1,1],[1,0,3,2],[1,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,0,3,2],[1,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,0,3,2],[1,3,3,1],[1,2,2,2]],[[1,0,1,2],[1,0,3,2],[1,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,0,3,3],[1,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,0,3,2],[1,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,0,3,2],[1,3,3,3],[1,2,1,1]],[[1,0,1,1],[1,0,3,2],[1,3,3,2],[1,2,1,2]],[[1,0,1,2],[1,0,3,2],[1,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,0,3,3],[1,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,0,3,2],[1,3,4,2],[1,2,2,0]],[[1,0,1,1],[1,0,3,2],[1,3,3,3],[1,2,2,0]],[[1,0,1,1],[1,0,3,2],[1,3,3,2],[2,2,2,0]],[[1,0,1,1],[1,0,3,2],[1,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,0,3,2],[1,3,3,2],[1,2,3,0]],[[1,0,1,1],[1,0,3,3],[2,2,3,2],[0,2,2,1]],[[1,0,1,1],[1,0,3,2],[2,2,3,3],[0,2,2,1]],[[1,0,1,1],[1,0,3,2],[2,2,3,2],[0,2,3,1]],[[1,0,1,1],[1,0,3,2],[2,2,3,2],[0,2,2,2]],[[1,0,1,2],[1,0,3,2],[2,3,2,2],[0,2,2,1]],[[1,0,1,1],[1,0,3,3],[2,3,2,2],[0,2,2,1]],[[1,0,1,1],[1,0,3,2],[2,3,2,3],[0,2,2,1]],[[1,0,1,1],[1,0,3,2],[2,3,2,2],[0,3,2,1]],[[1,0,1,1],[1,0,3,2],[2,3,2,2],[0,2,3,1]],[[1,0,1,1],[1,0,3,2],[2,3,2,2],[0,2,2,2]],[[1,0,1,1],[1,0,3,2],[2,3,4,0],[1,2,2,1]],[[1,0,1,1],[1,0,3,2],[2,3,3,0],[2,2,2,1]],[[1,0,1,1],[1,0,3,2],[2,3,3,0],[1,3,2,1]],[[1,0,1,1],[1,0,3,2],[2,3,3,0],[1,2,3,1]],[[1,0,1,1],[1,0,3,2],[2,3,3,0],[1,2,2,2]],[[1,0,1,1],[1,0,3,2],[2,3,4,1],[0,2,2,1]],[[1,0,1,1],[1,0,3,2],[2,3,3,1],[0,3,2,1]],[[1,0,1,1],[1,0,3,2],[2,3,3,1],[0,2,3,1]],[[1,0,1,1],[1,0,3,2],[2,3,3,1],[0,2,2,2]],[[1,0,1,1],[1,0,3,2],[2,3,4,1],[1,2,2,0]],[[1,0,1,1],[1,0,3,2],[2,3,3,1],[2,2,2,0]],[[1,0,1,1],[1,0,3,2],[2,3,3,1],[1,3,2,0]],[[1,0,1,1],[1,0,3,2],[2,3,3,1],[1,2,3,0]],[[1,0,1,2],[1,0,3,2],[2,3,3,2],[0,2,1,1]],[[1,0,1,1],[1,0,3,3],[2,3,3,2],[0,2,1,1]],[[1,0,1,1],[1,0,3,2],[2,3,4,2],[0,2,1,1]],[[1,0,1,1],[1,0,3,2],[2,3,3,3],[0,2,1,1]],[[1,0,1,1],[1,0,3,2],[2,3,3,2],[0,2,1,2]],[[1,0,1,2],[1,0,3,2],[2,3,3,2],[0,2,2,0]],[[1,0,1,1],[1,0,3,3],[2,3,3,2],[0,2,2,0]],[[1,0,1,1],[1,0,3,2],[2,3,4,2],[0,2,2,0]],[[1,0,1,1],[1,0,3,2],[2,3,3,3],[0,2,2,0]],[[1,0,1,1],[1,0,3,2],[2,3,3,2],[0,3,2,0]],[[1,0,1,1],[1,0,3,2],[2,3,3,2],[0,2,3,0]],[[1,2,3,0],[0,2,3,1],[2,3,1,2],[0,2,2,0]],[[1,3,2,0],[0,2,3,1],[2,3,1,2],[0,2,2,0]],[[2,2,2,0],[0,2,3,1],[2,3,1,2],[0,2,2,0]],[[1,2,2,0],[0,2,4,1],[2,3,1,1],[1,1,2,1]],[[1,0,1,1],[1,1,0,2],[2,3,3,3],[1,2,2,1]],[[1,0,1,1],[1,1,0,2],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[1,1,0,2],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,1,0,2],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,1,0,2],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,1,1,2],[1,3,3,3],[1,2,2,1]],[[1,0,1,1],[1,1,1,2],[1,3,3,2],[2,2,2,1]],[[1,0,1,1],[1,1,1,2],[1,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,1,1,2],[1,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,1,1,2],[1,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,1,1,2],[2,3,3,3],[0,2,2,1]],[[1,0,1,1],[1,1,1,2],[2,3,3,2],[0,3,2,1]],[[1,0,1,1],[1,1,1,2],[2,3,3,2],[0,2,3,1]],[[1,0,1,1],[1,1,1,2],[2,3,3,2],[0,2,2,2]],[[1,0,1,2],[1,1,2,2],[1,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,1,2,3],[1,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,1,2,2],[1,3,2,3],[1,2,2,1]],[[1,0,1,1],[1,1,2,2],[1,3,2,2],[2,2,2,1]],[[1,0,1,1],[1,1,2,2],[1,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,1,2,2],[1,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,1,2,2],[1,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,1,2,2],[1,3,4,1],[1,2,2,1]],[[1,0,1,1],[1,1,2,2],[1,3,3,1],[2,2,2,1]],[[1,0,1,1],[1,1,2,2],[1,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,1,2,2],[1,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,1,2,2],[1,3,3,1],[1,2,2,2]],[[1,0,1,2],[1,1,2,2],[1,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,1,2,3],[1,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,1,2,2],[1,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,1,2,2],[1,3,3,3],[1,2,1,1]],[[1,0,1,1],[1,1,2,2],[1,3,3,2],[1,2,1,2]],[[1,0,1,2],[1,1,2,2],[1,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,1,2,3],[1,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,1,2,2],[1,3,4,2],[1,2,2,0]],[[1,0,1,1],[1,1,2,2],[1,3,3,3],[1,2,2,0]],[[1,0,1,1],[1,1,2,2],[1,3,3,2],[2,2,2,0]],[[1,0,1,1],[1,1,2,2],[1,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,1,2,2],[1,3,3,2],[1,2,3,0]],[[1,0,1,2],[1,1,2,2],[2,3,2,2],[0,2,2,1]],[[1,0,1,1],[1,1,2,3],[2,3,2,2],[0,2,2,1]],[[1,0,1,1],[1,1,2,2],[2,3,2,3],[0,2,2,1]],[[1,0,1,1],[1,1,2,2],[2,3,2,2],[0,3,2,1]],[[1,0,1,1],[1,1,2,2],[2,3,2,2],[0,2,3,1]],[[1,0,1,1],[1,1,2,2],[2,3,2,2],[0,2,2,2]],[[1,0,1,1],[1,1,2,2],[2,3,4,1],[0,2,2,1]],[[1,0,1,1],[1,1,2,2],[2,3,3,1],[0,3,2,1]],[[1,0,1,1],[1,1,2,2],[2,3,3,1],[0,2,3,1]],[[1,0,1,1],[1,1,2,2],[2,3,3,1],[0,2,2,2]],[[1,0,1,2],[1,1,2,2],[2,3,3,2],[0,2,1,1]],[[1,0,1,1],[1,1,2,3],[2,3,3,2],[0,2,1,1]],[[1,0,1,1],[1,1,2,2],[2,3,4,2],[0,2,1,1]],[[1,0,1,1],[1,1,2,2],[2,3,3,3],[0,2,1,1]],[[1,0,1,1],[1,1,2,2],[2,3,3,2],[0,2,1,2]],[[1,0,1,2],[1,1,2,2],[2,3,3,2],[0,2,2,0]],[[1,0,1,1],[1,1,2,3],[2,3,3,2],[0,2,2,0]],[[1,0,1,1],[1,1,2,2],[2,3,4,2],[0,2,2,0]],[[1,0,1,1],[1,1,2,2],[2,3,3,3],[0,2,2,0]],[[1,0,1,1],[1,1,2,2],[2,3,3,2],[0,3,2,0]],[[1,0,1,1],[1,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,3,0],[0,2,3,1],[2,3,1,1],[1,1,2,1]],[[1,3,2,0],[0,2,3,1],[2,3,1,1],[1,1,2,1]],[[2,2,2,0],[0,2,3,1],[2,3,1,1],[1,1,2,1]],[[1,2,2,0],[0,2,4,1],[2,3,1,1],[0,2,2,1]],[[1,2,3,0],[0,2,3,1],[2,3,1,1],[0,2,2,1]],[[1,3,2,0],[0,2,3,1],[2,3,1,1],[0,2,2,1]],[[2,2,2,0],[0,2,3,1],[2,3,1,1],[0,2,2,1]],[[1,0,1,1],[1,1,3,0],[1,3,4,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,0],[1,3,3,2],[2,2,2,1]],[[1,0,1,1],[1,1,3,0],[1,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,1,3,0],[1,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,1,3,0],[1,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,1,3,0],[2,3,4,2],[0,2,2,1]],[[1,0,1,1],[1,1,3,0],[2,3,3,2],[0,3,2,1]],[[1,0,1,1],[1,1,3,0],[2,3,3,2],[0,2,3,1]],[[1,0,1,1],[1,1,3,0],[2,3,3,2],[0,2,2,2]],[[1,0,1,1],[1,1,3,1],[1,3,2,3],[1,2,2,1]],[[1,0,1,1],[1,1,3,1],[1,3,2,2],[2,2,2,1]],[[1,0,1,1],[1,1,3,1],[1,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,1,3,1],[1,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,1,3,1],[1,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,1,3,1],[1,3,4,1],[1,2,2,1]],[[1,0,1,1],[1,1,3,1],[1,3,3,1],[2,2,2,1]],[[1,0,1,1],[1,1,3,1],[1,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,1,3,1],[1,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,1,3,1],[1,3,3,1],[1,2,2,2]],[[1,0,1,1],[1,1,3,1],[1,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,1,3,1],[1,3,3,3],[1,2,1,1]],[[1,0,1,1],[1,1,3,1],[1,3,3,2],[1,2,1,2]],[[1,0,1,1],[1,1,3,1],[1,3,4,2],[1,2,2,0]],[[1,0,1,1],[1,1,3,1],[1,3,3,3],[1,2,2,0]],[[1,0,1,1],[1,1,3,1],[1,3,3,2],[2,2,2,0]],[[1,0,1,1],[1,1,3,1],[1,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,1,3,1],[1,3,3,2],[1,2,3,0]],[[1,0,1,1],[1,1,3,1],[2,3,2,3],[0,2,2,1]],[[1,0,1,1],[1,1,3,1],[2,3,2,2],[0,3,2,1]],[[1,0,1,1],[1,1,3,1],[2,3,2,2],[0,2,3,1]],[[1,0,1,1],[1,1,3,1],[2,3,2,2],[0,2,2,2]],[[1,0,1,1],[1,1,3,1],[2,3,4,1],[0,2,2,1]],[[1,0,1,1],[1,1,3,1],[2,3,3,1],[0,3,2,1]],[[1,0,1,1],[1,1,3,1],[2,3,3,1],[0,2,3,1]],[[1,0,1,1],[1,1,3,1],[2,3,3,1],[0,2,2,2]],[[1,0,1,1],[1,1,3,1],[2,3,4,2],[0,2,1,1]],[[1,0,1,1],[1,1,3,1],[2,3,3,3],[0,2,1,1]],[[1,0,1,1],[1,1,3,1],[2,3,3,2],[0,2,1,2]],[[1,0,1,1],[1,1,3,1],[2,3,4,2],[0,2,2,0]],[[1,0,1,1],[1,1,3,1],[2,3,3,3],[0,2,2,0]],[[1,0,1,1],[1,1,3,1],[2,3,3,2],[0,3,2,0]],[[1,0,1,1],[1,1,3,1],[2,3,3,2],[0,2,3,0]],[[1,2,2,0],[0,2,4,1],[2,3,0,2],[1,1,2,1]],[[1,2,3,0],[0,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,3,2,0],[0,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,0,1,1],[1,1,3,3],[0,2,3,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[0,2,3,3],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[0,2,3,2],[1,2,3,1]],[[1,0,1,1],[1,1,3,2],[0,2,3,2],[1,2,2,2]],[[1,0,1,2],[1,1,3,2],[0,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,3],[0,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[0,3,2,3],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[0,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,1,3,2],[0,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,1,3,2],[0,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,1,3,2],[0,3,4,1],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[0,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,1,3,2],[0,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,1,3,2],[0,3,3,1],[1,2,2,2]],[[1,0,1,2],[1,1,3,2],[0,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,1,3,3],[0,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,1,3,2],[0,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,1,3,2],[0,3,3,3],[1,2,1,1]],[[1,0,1,1],[1,1,3,2],[0,3,3,2],[1,2,1,2]],[[1,0,1,2],[1,1,3,2],[0,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,1,3,3],[0,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,1,3,2],[0,3,4,2],[1,2,2,0]],[[1,0,1,1],[1,1,3,2],[0,3,3,3],[1,2,2,0]],[[1,0,1,1],[1,1,3,2],[0,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,1,3,2],[0,3,3,2],[1,2,3,0]],[[1,0,1,2],[1,1,3,2],[1,1,3,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,3],[1,1,3,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[1,1,3,3],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[1,1,3,2],[1,2,3,1]],[[1,0,1,1],[1,1,3,2],[1,1,3,2],[1,2,2,2]],[[1,0,1,2],[1,1,3,2],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,3],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[1,2,2,3],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[1,2,2,2],[2,2,2,1]],[[1,0,1,1],[1,1,3,2],[1,2,2,2],[1,3,2,1]],[[1,0,1,1],[1,1,3,2],[1,2,2,2],[1,2,3,1]],[[1,0,1,1],[1,1,3,2],[1,2,2,2],[1,2,2,2]],[[1,0,1,1],[1,1,3,2],[1,2,4,1],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[1,2,3,1],[2,2,2,1]],[[1,0,1,1],[1,1,3,2],[1,2,3,1],[1,3,2,1]],[[1,0,1,1],[1,1,3,2],[1,2,3,1],[1,2,3,1]],[[1,0,1,1],[1,1,3,2],[1,2,3,1],[1,2,2,2]],[[1,0,1,2],[1,1,3,2],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[1,1,3,3],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[1,1,3,2],[1,2,4,2],[1,2,1,1]],[[1,0,1,1],[1,1,3,2],[1,2,3,3],[1,2,1,1]],[[1,0,1,1],[1,1,3,2],[1,2,3,2],[1,2,1,2]],[[1,0,1,2],[1,1,3,2],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[1,1,3,3],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[1,1,3,2],[1,2,4,2],[1,2,2,0]],[[1,0,1,1],[1,1,3,2],[1,2,3,3],[1,2,2,0]],[[1,0,1,1],[1,1,3,2],[1,2,3,2],[2,2,2,0]],[[1,0,1,1],[1,1,3,2],[1,2,3,2],[1,3,2,0]],[[1,0,1,1],[1,1,3,2],[1,2,3,2],[1,2,3,0]],[[1,0,1,2],[1,1,3,2],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[1,1,3,3],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[1,1,3,2],[1,3,2,3],[1,1,2,1]],[[1,0,1,1],[1,1,3,2],[1,3,2,2],[1,1,3,1]],[[1,0,1,1],[1,1,3,2],[1,3,2,2],[1,1,2,2]],[[1,0,1,1],[1,1,3,2],[1,3,4,0],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,0],[2,2,2,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,0],[1,3,2,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,0],[1,2,3,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,0],[1,2,2,2]],[[1,0,1,1],[1,1,3,2],[1,3,4,1],[1,1,2,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,1],[1,1,3,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,1],[1,1,2,2]],[[1,0,1,1],[1,1,3,2],[1,3,4,1],[1,2,2,0]],[[1,0,1,1],[1,1,3,2],[1,3,3,1],[2,2,2,0]],[[1,0,1,1],[1,1,3,2],[1,3,3,1],[1,3,2,0]],[[1,0,1,1],[1,1,3,2],[1,3,3,1],[1,2,3,0]],[[1,0,1,2],[1,1,3,2],[1,3,3,2],[1,0,2,1]],[[1,0,1,1],[1,1,3,3],[1,3,3,2],[1,0,2,1]],[[1,0,1,1],[1,1,3,2],[1,3,4,2],[1,0,2,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,3],[1,0,2,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,2],[1,0,2,2]],[[1,0,1,2],[1,1,3,2],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[1,1,3,3],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[1,1,3,2],[1,3,4,2],[1,1,1,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,3],[1,1,1,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,2],[1,1,1,2]],[[1,0,1,2],[1,1,3,2],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[1,1,3,3],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[1,1,3,2],[1,3,4,2],[1,1,2,0]],[[1,0,1,1],[1,1,3,2],[1,3,3,3],[1,1,2,0]],[[1,0,1,1],[1,1,3,2],[1,3,3,2],[1,1,3,0]],[[1,0,1,2],[1,1,3,2],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[1,1,3,3],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[1,1,3,2],[1,3,4,2],[1,2,0,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,3],[1,2,0,1]],[[1,0,1,1],[1,1,3,2],[1,3,3,2],[1,2,0,2]],[[1,0,1,2],[1,1,3,2],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[1,1,3,3],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[1,1,3,2],[1,3,4,2],[1,2,1,0]],[[1,0,1,1],[1,1,3,2],[1,3,3,3],[1,2,1,0]],[[2,2,2,0],[0,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,2,2,0],[0,2,4,1],[2,3,0,2],[0,2,2,1]],[[1,2,3,0],[0,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,3,2,0],[0,2,3,1],[2,3,0,2],[0,2,2,1]],[[2,2,2,0],[0,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,1,2],[1,1,3,2],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,3],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,0,3,3],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,0,3,2],[1,2,3,1]],[[1,0,1,1],[1,1,3,2],[2,0,3,2],[1,2,2,2]],[[1,0,1,2],[1,1,3,2],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,3],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,1,2,3],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,1,2,2],[2,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,1,2,2],[1,3,2,1]],[[1,0,1,1],[1,1,3,2],[2,1,2,2],[1,2,3,1]],[[1,0,1,1],[1,1,3,2],[2,1,2,2],[1,2,2,2]],[[1,0,1,1],[1,1,3,2],[2,1,4,1],[1,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,1,3,1],[2,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,1,3,1],[1,3,2,1]],[[1,0,1,1],[1,1,3,2],[2,1,3,1],[1,2,3,1]],[[1,0,1,1],[1,1,3,2],[2,1,3,1],[1,2,2,2]],[[1,0,1,2],[1,1,3,2],[2,1,3,2],[0,2,2,1]],[[1,0,1,1],[1,1,3,3],[2,1,3,2],[0,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,1,3,3],[0,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,1,3,2],[0,2,3,1]],[[1,0,1,1],[1,1,3,2],[2,1,3,2],[0,2,2,2]],[[1,0,1,2],[1,1,3,2],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[1,1,3,3],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[1,1,3,2],[2,1,4,2],[1,2,1,1]],[[1,0,1,1],[1,1,3,2],[2,1,3,3],[1,2,1,1]],[[1,0,1,1],[1,1,3,2],[2,1,3,2],[1,2,1,2]],[[1,0,1,2],[1,1,3,2],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,1,3,3],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,1,3,2],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[1,1,3,2],[2,1,3,3],[1,2,2,0]],[[1,0,1,1],[1,1,3,2],[2,1,3,2],[2,2,2,0]],[[1,0,1,1],[1,1,3,2],[2,1,3,2],[1,3,2,0]],[[1,0,1,1],[1,1,3,2],[2,1,3,2],[1,2,3,0]],[[1,0,1,2],[1,1,3,2],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[1,1,3,3],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,2,2,3],[0,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,2,2,2],[0,3,2,1]],[[1,0,1,1],[1,1,3,2],[2,2,2,2],[0,2,3,1]],[[1,0,1,1],[1,1,3,2],[2,2,2,2],[0,2,2,2]],[[1,0,1,1],[1,1,3,2],[2,2,4,1],[0,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,2,3,1],[0,3,2,1]],[[1,0,1,1],[1,1,3,2],[2,2,3,1],[0,2,3,1]],[[1,0,1,1],[1,1,3,2],[2,2,3,1],[0,2,2,2]],[[1,0,1,2],[1,1,3,2],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[1,1,3,3],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[1,1,3,2],[2,2,4,2],[0,2,1,1]],[[1,0,1,1],[1,1,3,2],[2,2,3,3],[0,2,1,1]],[[1,0,1,1],[1,1,3,2],[2,2,3,2],[0,2,1,2]],[[1,0,1,2],[1,1,3,2],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[1,1,3,3],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[1,1,3,2],[2,2,4,2],[0,2,2,0]],[[1,0,1,1],[1,1,3,2],[2,2,3,3],[0,2,2,0]],[[1,0,1,1],[1,1,3,2],[2,2,3,2],[0,3,2,0]],[[1,0,1,1],[1,1,3,2],[2,2,3,2],[0,2,3,0]],[[1,0,1,2],[1,1,3,2],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[1,1,3,3],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[1,1,3,2],[2,3,2,3],[0,1,2,1]],[[1,0,1,1],[1,1,3,2],[2,3,2,2],[0,1,3,1]],[[1,0,1,1],[1,1,3,2],[2,3,2,2],[0,1,2,2]],[[1,0,1,2],[1,1,3,2],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[1,1,3,3],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[1,1,3,2],[2,3,2,3],[1,0,2,1]],[[1,0,1,1],[1,1,3,2],[2,3,2,2],[1,0,3,1]],[[1,0,1,1],[1,1,3,2],[2,3,2,2],[1,0,2,2]],[[1,0,1,1],[1,1,3,2],[2,3,4,0],[0,2,2,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,0],[0,3,2,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,0],[0,2,3,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,0],[0,2,2,2]],[[1,0,1,1],[1,1,3,2],[2,3,4,1],[0,1,2,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,1],[0,1,3,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,1],[0,1,2,2]],[[1,0,1,1],[1,1,3,2],[2,3,4,1],[0,2,2,0]],[[1,0,1,1],[1,1,3,2],[2,3,3,1],[0,3,2,0]],[[1,0,1,1],[1,1,3,2],[2,3,3,1],[0,2,3,0]],[[1,0,1,1],[1,1,3,2],[2,3,4,1],[1,0,2,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,1],[1,0,3,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,1],[1,0,2,2]],[[1,0,1,2],[1,1,3,2],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[1,1,3,3],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[1,1,3,2],[2,3,4,2],[0,0,2,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,3],[0,0,2,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,2],[0,0,2,2]],[[1,0,1,2],[1,1,3,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,1,3,3],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,1,3,2],[2,3,4,2],[0,1,1,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,3],[0,1,1,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,2],[0,1,1,2]],[[1,0,1,2],[1,1,3,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,1,3,3],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,1,3,2],[2,3,4,2],[0,1,2,0]],[[1,0,1,1],[1,1,3,2],[2,3,3,3],[0,1,2,0]],[[1,0,1,1],[1,1,3,2],[2,3,3,2],[0,1,3,0]],[[1,0,1,2],[1,1,3,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,1,3,3],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,1,3,2],[2,3,4,2],[0,2,0,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,3],[0,2,0,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,2],[0,2,0,2]],[[1,0,1,2],[1,1,3,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,1,3,3],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,1,3,2],[2,3,4,2],[0,2,1,0]],[[1,0,1,1],[1,1,3,2],[2,3,3,3],[0,2,1,0]],[[1,0,1,2],[1,1,3,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,1,3,3],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,1,3,2],[2,3,4,2],[1,0,1,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,3],[1,0,1,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,2],[1,0,1,2]],[[1,0,1,2],[1,1,3,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,1,3,3],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,1,3,2],[2,3,4,2],[1,0,2,0]],[[1,0,1,1],[1,1,3,2],[2,3,3,3],[1,0,2,0]],[[1,0,1,1],[1,1,3,2],[2,3,3,2],[1,0,3,0]],[[1,0,1,2],[1,1,3,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,1,3,3],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,1,3,2],[2,3,4,2],[1,1,0,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,3],[1,1,0,1]],[[1,0,1,1],[1,1,3,2],[2,3,3,2],[1,1,0,2]],[[1,0,1,2],[1,1,3,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,1,3,3],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,1,3,2],[2,3,4,2],[1,1,1,0]],[[1,0,1,1],[1,1,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[0,2,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,2,0],[0,2,3,1],[2,2,4,2],[1,1,1,0]],[[1,2,2,0],[0,2,4,1],[2,2,3,2],[1,1,1,0]],[[1,2,3,0],[0,2,3,1],[2,2,3,2],[1,1,1,0]],[[1,3,2,0],[0,2,3,1],[2,2,3,2],[1,1,1,0]],[[2,2,2,0],[0,2,3,1],[2,2,3,2],[1,1,1,0]],[[1,2,2,0],[0,2,3,1],[2,2,3,2],[1,1,0,2]],[[1,2,2,0],[0,2,3,1],[2,2,3,3],[1,1,0,1]],[[1,2,2,0],[0,2,3,1],[2,2,4,2],[1,1,0,1]],[[1,2,2,0],[0,2,4,1],[2,2,3,2],[1,1,0,1]],[[1,2,3,0],[0,2,3,1],[2,2,3,2],[1,1,0,1]],[[1,3,2,0],[0,2,3,1],[2,2,3,2],[1,1,0,1]],[[2,2,2,0],[0,2,3,1],[2,2,3,2],[1,1,0,1]],[[1,2,2,0],[0,2,3,1],[2,2,3,2],[1,0,3,0]],[[1,2,2,0],[0,2,3,1],[2,2,3,3],[1,0,2,0]],[[1,0,1,1],[1,2,0,2],[1,3,3,3],[1,2,2,1]],[[1,0,1,1],[1,2,0,2],[1,3,3,2],[2,2,2,1]],[[1,0,1,1],[1,2,0,2],[1,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,2,0,2],[1,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,0,2],[1,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,2,0,2],[2,3,3,3],[0,2,2,1]],[[1,0,1,1],[1,2,0,2],[2,3,3,2],[0,3,2,1]],[[1,0,1,1],[1,2,0,2],[2,3,3,2],[0,2,3,1]],[[1,0,1,1],[1,2,0,2],[2,3,3,2],[0,2,2,2]],[[1,0,1,1],[1,2,1,2],[0,3,3,3],[1,2,2,1]],[[1,0,1,1],[1,2,1,2],[0,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,2,1,2],[0,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,1,2],[0,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,2,1,2],[1,2,3,3],[1,2,2,1]],[[1,0,1,1],[1,2,1,2],[1,2,3,2],[2,2,2,1]],[[1,0,1,1],[1,2,1,2],[1,2,3,2],[1,3,2,1]],[[1,0,1,1],[1,2,1,2],[1,2,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,1,2],[1,2,3,2],[1,2,2,2]],[[1,0,1,1],[1,2,1,2],[1,3,3,3],[1,1,2,1]],[[1,0,1,1],[1,2,1,2],[1,3,3,2],[1,1,3,1]],[[1,0,1,1],[1,2,1,2],[1,3,3,2],[1,1,2,2]],[[1,0,1,1],[1,2,1,2],[2,1,3,3],[1,2,2,1]],[[1,0,1,1],[1,2,1,2],[2,1,3,2],[2,2,2,1]],[[1,0,1,1],[1,2,1,2],[2,1,3,2],[1,3,2,1]],[[1,0,1,1],[1,2,1,2],[2,1,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,1,2],[2,1,3,2],[1,2,2,2]],[[1,0,1,1],[1,2,1,2],[2,2,3,3],[0,2,2,1]],[[1,0,1,1],[1,2,1,2],[2,2,3,2],[0,3,2,1]],[[1,0,1,1],[1,2,1,2],[2,2,3,2],[0,2,3,1]],[[1,0,1,1],[1,2,1,2],[2,2,3,2],[0,2,2,2]],[[1,0,1,1],[1,2,1,2],[2,3,3,3],[0,1,2,1]],[[1,0,1,1],[1,2,1,2],[2,3,3,2],[0,1,3,1]],[[1,0,1,1],[1,2,1,2],[2,3,3,2],[0,1,2,2]],[[1,0,1,1],[1,2,1,2],[2,3,3,3],[1,0,2,1]],[[1,0,1,1],[1,2,1,2],[2,3,3,2],[1,0,3,1]],[[1,0,1,1],[1,2,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,0],[0,2,3,1],[2,2,4,2],[1,0,2,0]],[[1,2,2,0],[0,2,4,1],[2,2,3,2],[1,0,2,0]],[[1,2,3,0],[0,2,3,1],[2,2,3,2],[1,0,2,0]],[[1,3,2,0],[0,2,3,1],[2,2,3,2],[1,0,2,0]],[[2,2,2,0],[0,2,3,1],[2,2,3,2],[1,0,2,0]],[[1,0,1,1],[1,2,2,3],[0,2,3,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[0,2,3,3],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[0,2,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[0,2,3,2],[1,2,2,2]],[[1,0,1,2],[1,2,2,2],[0,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,3],[0,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[0,3,2,3],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[0,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,2,2,2],[0,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[0,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,2,2,2],[0,3,4,1],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[0,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,2,2,2],[0,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[0,3,3,1],[1,2,2,2]],[[1,0,1,2],[1,2,2,2],[0,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,2,2,3],[0,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[0,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[0,3,3,3],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[0,3,3,2],[1,2,1,2]],[[1,0,1,2],[1,2,2,2],[0,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,3],[0,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[0,3,4,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[0,3,3,3],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[0,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,2,2,2],[0,3,3,2],[1,2,3,0]],[[1,0,1,2],[1,2,2,2],[1,1,3,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,3],[1,1,3,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,1,3,3],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,1,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[1,1,3,2],[1,2,2,2]],[[1,0,1,2],[1,2,2,2],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,3],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,2,2,3],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,2,2,2],[2,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,2,2,2],[1,3,2,1]],[[1,0,1,1],[1,2,2,2],[1,2,2,2],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[1,2,2,2],[1,2,2,2]],[[1,0,1,1],[1,2,2,2],[1,2,4,1],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,2,3,1],[2,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,2,3,1],[1,3,2,1]],[[1,0,1,1],[1,2,2,2],[1,2,3,1],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[1,2,3,1],[1,2,2,2]],[[1,0,1,2],[1,2,2,2],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[1,2,2,3],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[1,2,4,2],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[1,2,3,3],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[1,2,3,2],[1,2,1,2]],[[1,0,1,2],[1,2,2,2],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,3],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[1,2,4,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[1,2,3,3],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[1,2,3,2],[2,2,2,0]],[[1,0,1,1],[1,2,2,2],[1,2,3,2],[1,3,2,0]],[[1,0,1,1],[1,2,2,2],[1,2,3,2],[1,2,3,0]],[[1,0,1,2],[1,2,2,2],[1,3,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,3],[1,3,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,4,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,1,3],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,1,2],[2,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,1,2],[1,3,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,1,2],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[1,3,1,2],[1,2,2,2]],[[1,0,1,1],[1,2,2,2],[1,4,2,1],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,2,1],[2,2,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,2,1],[1,3,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,2,1],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[1,3,2,1],[1,2,2,2]],[[1,0,1,2],[1,2,2,2],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[1,2,2,3],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,2,3],[1,1,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,2,2],[1,1,3,1]],[[1,0,1,1],[1,2,2,2],[1,3,2,2],[1,1,2,2]],[[1,0,1,1],[1,2,2,2],[1,4,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[1,3,2,2],[2,2,2,0]],[[1,0,1,1],[1,2,2,2],[1,3,2,2],[1,3,2,0]],[[1,0,1,1],[1,2,2,2],[1,3,2,2],[1,2,3,0]],[[1,0,1,1],[1,2,2,2],[1,4,3,1],[1,1,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,4,1],[1,1,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,1],[1,1,3,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,1],[1,1,2,2]],[[1,0,1,1],[1,2,2,2],[1,4,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[1,3,4,1],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,1],[2,2,1,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,1],[1,3,1,1]],[[1,0,1,2],[1,2,2,2],[1,3,3,2],[1,0,2,1]],[[1,0,1,1],[1,2,2,3],[1,3,3,2],[1,0,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,4,2],[1,0,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,3],[1,0,2,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,2],[1,0,2,2]],[[1,0,1,2],[1,2,2,2],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[1,2,2,3],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[1,2,2,2],[1,4,3,2],[1,1,1,1]],[[1,0,1,1],[1,2,2,2],[1,3,4,2],[1,1,1,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,3],[1,1,1,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,2],[1,1,1,2]],[[1,0,1,2],[1,2,2,2],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[1,2,2,3],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[1,2,2,2],[1,4,3,2],[1,1,2,0]],[[1,0,1,1],[1,2,2,2],[1,3,4,2],[1,1,2,0]],[[1,0,1,1],[1,2,2,2],[1,3,3,3],[1,1,2,0]],[[1,0,1,1],[1,2,2,2],[1,3,3,2],[1,1,3,0]],[[1,0,1,2],[1,2,2,2],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[1,2,2,3],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[1,2,2,2],[1,4,3,2],[1,2,0,1]],[[1,0,1,1],[1,2,2,2],[1,3,4,2],[1,2,0,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,3],[1,2,0,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,2],[2,2,0,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,2],[1,3,0,1]],[[1,0,1,1],[1,2,2,2],[1,3,3,2],[1,2,0,2]],[[1,0,1,2],[1,2,2,2],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[1,2,2,3],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[1,2,2,2],[1,4,3,2],[1,2,1,0]],[[1,0,1,1],[1,2,2,2],[1,3,4,2],[1,2,1,0]],[[1,0,1,1],[1,2,2,2],[1,3,3,3],[1,2,1,0]],[[1,0,1,1],[1,2,2,2],[1,3,3,2],[2,2,1,0]],[[1,0,1,1],[1,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,2,3,1],[2,2,3,2],[1,0,1,2]],[[1,2,2,0],[0,2,3,1],[2,2,3,3],[1,0,1,1]],[[1,2,2,0],[0,2,3,1],[2,2,4,2],[1,0,1,1]],[[1,2,2,0],[0,2,4,1],[2,2,3,2],[1,0,1,1]],[[1,2,3,0],[0,2,3,1],[2,2,3,2],[1,0,1,1]],[[1,3,2,0],[0,2,3,1],[2,2,3,2],[1,0,1,1]],[[2,2,2,0],[0,2,3,1],[2,2,3,2],[1,0,1,1]],[[1,0,1,2],[1,2,2,2],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,3],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,0,3,3],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,0,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[2,0,3,2],[1,2,2,2]],[[1,0,1,2],[1,2,2,2],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,3],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[3,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,1,2,3],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,1,2,2],[2,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,1,2,2],[1,3,2,1]],[[1,0,1,1],[1,2,2,2],[2,1,2,2],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[2,1,2,2],[1,2,2,2]],[[1,0,1,1],[1,2,2,2],[3,1,3,1],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,1,4,1],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,1,3,1],[2,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,1,3,1],[1,3,2,1]],[[1,0,1,1],[1,2,2,2],[2,1,3,1],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[2,1,3,1],[1,2,2,2]],[[1,0,1,2],[1,2,2,2],[2,1,3,2],[0,2,2,1]],[[1,0,1,1],[1,2,2,3],[2,1,3,2],[0,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,1,3,3],[0,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,1,3,2],[0,2,3,1]],[[1,0,1,1],[1,2,2,2],[2,1,3,2],[0,2,2,2]],[[1,0,1,2],[1,2,2,2],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[1,2,2,3],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[2,1,4,2],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[2,1,3,3],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[2,1,3,2],[1,2,1,2]],[[1,0,1,2],[1,2,2,2],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,3],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[3,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[2,1,3,3],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[2,1,3,2],[2,2,2,0]],[[1,0,1,1],[1,2,2,2],[2,1,3,2],[1,3,2,0]],[[1,0,1,1],[1,2,2,2],[2,1,3,2],[1,2,3,0]],[[1,0,1,2],[1,2,2,2],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,3],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[3,2,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,1,3],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,1,2],[2,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,1,2],[1,3,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,1,2],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[2,2,1,2],[1,2,2,2]],[[1,0,1,1],[1,2,2,2],[3,2,2,1],[1,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,2,1],[2,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,2,1],[1,3,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,2,1],[1,2,3,1]],[[1,0,1,1],[1,2,2,2],[2,2,2,1],[1,2,2,2]],[[1,0,1,2],[1,2,2,2],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[1,2,2,3],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,2,3],[0,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,2,2],[0,3,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,2,2],[0,2,3,1]],[[1,0,1,1],[1,2,2,2],[2,2,2,2],[0,2,2,2]],[[1,0,1,1],[1,2,2,2],[3,2,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,2,2],[2,2,2,2],[2,2,2,0]],[[1,0,1,1],[1,2,2,2],[2,2,2,2],[1,3,2,0]],[[1,0,1,1],[1,2,2,2],[2,2,2,2],[1,2,3,0]],[[1,0,1,1],[1,2,2,2],[2,2,4,1],[0,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,3,1],[0,3,2,1]],[[1,0,1,1],[1,2,2,2],[2,2,3,1],[0,2,3,1]],[[1,0,1,1],[1,2,2,2],[2,2,3,1],[0,2,2,2]],[[1,0,1,1],[1,2,2,2],[3,2,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,2,2],[2,2,3,1],[2,2,1,1]],[[1,0,1,1],[1,2,2,2],[2,2,3,1],[1,3,1,1]],[[1,0,1,2],[1,2,2,2],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[1,2,2,3],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[1,2,2,2],[2,2,4,2],[0,2,1,1]],[[1,0,1,1],[1,2,2,2],[2,2,3,3],[0,2,1,1]],[[1,0,1,1],[1,2,2,2],[2,2,3,2],[0,2,1,2]],[[1,0,1,2],[1,2,2,2],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[1,2,2,3],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[1,2,2,2],[2,2,4,2],[0,2,2,0]],[[1,0,1,1],[1,2,2,2],[2,2,3,3],[0,2,2,0]],[[1,0,1,1],[1,2,2,2],[2,2,3,2],[0,3,2,0]],[[1,0,1,1],[1,2,2,2],[2,2,3,2],[0,2,3,0]],[[1,0,1,1],[1,2,2,2],[3,2,3,2],[1,2,0,1]],[[1,0,1,1],[1,2,2,2],[2,2,3,2],[2,2,0,1]],[[1,0,1,1],[1,2,2,2],[2,2,3,2],[1,3,0,1]],[[1,0,1,1],[1,2,2,2],[3,2,3,2],[1,2,1,0]],[[1,0,1,1],[1,2,2,2],[2,2,3,2],[2,2,1,0]],[[1,0,1,1],[1,2,2,2],[2,2,3,2],[1,3,1,0]],[[1,0,1,2],[1,2,2,2],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[1,2,2,3],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[1,2,2,2],[3,3,1,2],[0,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,4,1,2],[0,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,1,3],[0,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,1,2],[0,3,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,1,2],[0,2,3,1]],[[1,0,1,1],[1,2,2,2],[2,3,1,2],[0,2,2,2]],[[1,0,1,1],[1,2,2,2],[3,3,1,2],[1,1,2,1]],[[1,0,1,1],[1,2,2,2],[2,4,1,2],[1,1,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,1,2],[2,1,2,1]],[[1,0,1,1],[1,2,2,2],[3,3,2,1],[0,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,4,2,1],[0,2,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,2,1],[0,3,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,2,1],[0,2,3,1]],[[1,0,1,1],[1,2,2,2],[2,3,2,1],[0,2,2,2]],[[1,0,1,1],[1,2,2,2],[3,3,2,1],[1,1,2,1]],[[1,0,1,1],[1,2,2,2],[2,4,2,1],[1,1,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,2,1],[2,1,2,1]],[[1,0,1,2],[1,2,2,2],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[1,2,2,3],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,2,3],[0,1,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,2,2],[0,1,3,1]],[[1,0,1,1],[1,2,2,2],[2,3,2,2],[0,1,2,2]],[[1,0,1,1],[1,2,2,2],[3,3,2,2],[0,2,2,0]],[[1,0,1,1],[1,2,2,2],[2,4,2,2],[0,2,2,0]],[[1,0,1,1],[1,2,2,2],[2,3,2,2],[0,3,2,0]],[[1,0,1,1],[1,2,2,2],[2,3,2,2],[0,2,3,0]],[[1,0,1,2],[1,2,2,2],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[1,2,2,3],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,2,3],[1,0,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,2,2],[1,0,3,1]],[[1,0,1,1],[1,2,2,2],[2,3,2,2],[1,0,2,2]],[[1,0,1,1],[1,2,2,2],[3,3,2,2],[1,1,2,0]],[[1,0,1,1],[1,2,2,2],[2,4,2,2],[1,1,2,0]],[[1,0,1,1],[1,2,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,2,3,1],[2,2,3,3],[0,2,1,0]],[[1,2,2,0],[0,2,3,1],[2,2,4,2],[0,2,1,0]],[[1,2,2,0],[0,2,4,1],[2,2,3,2],[0,2,1,0]],[[1,2,3,0],[0,2,3,1],[2,2,3,2],[0,2,1,0]],[[1,3,2,0],[0,2,3,1],[2,2,3,2],[0,2,1,0]],[[1,0,1,1],[1,2,2,2],[3,3,3,1],[0,1,2,1]],[[1,0,1,1],[1,2,2,2],[2,4,3,1],[0,1,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,4,1],[0,1,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,1],[0,1,3,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,1],[0,1,2,2]],[[1,0,1,1],[1,2,2,2],[3,3,3,1],[0,2,1,1]],[[1,0,1,1],[1,2,2,2],[2,4,3,1],[0,2,1,1]],[[1,0,1,1],[1,2,2,2],[2,3,4,1],[0,2,1,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,1],[0,3,1,1]],[[1,0,1,1],[1,2,2,2],[3,3,3,1],[1,0,2,1]],[[1,0,1,1],[1,2,2,2],[2,4,3,1],[1,0,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,4,1],[1,0,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,1],[2,0,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,1],[1,0,3,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,1],[1,0,2,2]],[[1,0,1,1],[1,2,2,2],[3,3,3,1],[1,1,1,1]],[[1,0,1,1],[1,2,2,2],[2,4,3,1],[1,1,1,1]],[[1,0,1,1],[1,2,2,2],[2,3,4,1],[1,1,1,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,1],[2,1,1,1]],[[2,2,2,0],[0,2,3,1],[2,2,3,2],[0,2,1,0]],[[1,2,2,0],[0,2,3,1],[2,2,3,2],[0,2,0,2]],[[1,2,2,0],[0,2,3,1],[2,2,3,3],[0,2,0,1]],[[1,2,2,0],[0,2,3,1],[2,2,4,2],[0,2,0,1]],[[1,2,2,0],[0,2,4,1],[2,2,3,2],[0,2,0,1]],[[1,2,3,0],[0,2,3,1],[2,2,3,2],[0,2,0,1]],[[1,3,2,0],[0,2,3,1],[2,2,3,2],[0,2,0,1]],[[1,0,1,2],[1,2,2,2],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[1,2,2,3],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,4,2],[0,0,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,3],[0,0,2,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[0,0,2,2]],[[1,0,1,2],[1,2,2,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,2,2,3],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,2,2,2],[3,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,2,2,2],[2,4,3,2],[0,1,1,1]],[[1,0,1,1],[1,2,2,2],[2,3,4,2],[0,1,1,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,3],[0,1,1,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[0,1,1,2]],[[1,0,1,2],[1,2,2,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,2,2,3],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,2,2,2],[3,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,2,2,2],[2,4,3,2],[0,1,2,0]],[[1,0,1,1],[1,2,2,2],[2,3,4,2],[0,1,2,0]],[[1,0,1,1],[1,2,2,2],[2,3,3,3],[0,1,2,0]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[0,1,3,0]],[[1,0,1,2],[1,2,2,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,2,2,3],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,2,2,2],[3,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,2,2,2],[2,4,3,2],[0,2,0,1]],[[1,0,1,1],[1,2,2,2],[2,3,4,2],[0,2,0,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,3],[0,2,0,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[0,3,0,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[0,2,0,2]],[[1,0,1,2],[1,2,2,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,2,2,3],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,2,2,2],[3,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,2,2,2],[2,4,3,2],[0,2,1,0]],[[1,0,1,1],[1,2,2,2],[2,3,4,2],[0,2,1,0]],[[1,0,1,1],[1,2,2,2],[2,3,3,3],[0,2,1,0]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[0,3,1,0]],[[2,2,2,0],[0,2,3,1],[2,2,3,2],[0,2,0,1]],[[1,0,1,2],[1,2,2,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,2,2,3],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,2,2,2],[3,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,2,2,2],[2,4,3,2],[1,0,1,1]],[[1,0,1,1],[1,2,2,2],[2,3,4,2],[1,0,1,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,3],[1,0,1,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[2,0,1,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[1,0,1,2]],[[1,0,1,2],[1,2,2,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,2,2,3],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,2,2,2],[3,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,2,2,2],[2,4,3,2],[1,0,2,0]],[[1,0,1,1],[1,2,2,2],[2,3,4,2],[1,0,2,0]],[[1,0,1,1],[1,2,2,2],[2,3,3,3],[1,0,2,0]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[2,0,2,0]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[1,0,3,0]],[[1,0,1,2],[1,2,2,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,2,2,3],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,2,2,2],[3,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,2,2,2],[2,4,3,2],[1,1,0,1]],[[1,0,1,1],[1,2,2,2],[2,3,4,2],[1,1,0,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,3],[1,1,0,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[2,1,0,1]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[1,1,0,2]],[[1,0,1,2],[1,2,2,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,2,2,3],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,2,2,2],[3,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,2,2,2],[2,4,3,2],[1,1,1,0]],[[1,0,1,1],[1,2,2,2],[2,3,4,2],[1,1,1,0]],[[1,0,1,1],[1,2,2,2],[2,3,3,3],[1,1,1,0]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,2,3,1],[2,2,3,2],[0,1,3,0]],[[1,2,2,0],[0,2,3,1],[2,2,3,3],[0,1,2,0]],[[1,2,2,0],[0,2,3,1],[2,2,4,2],[0,1,2,0]],[[1,2,2,0],[0,2,4,1],[2,2,3,2],[0,1,2,0]],[[1,2,3,0],[0,2,3,1],[2,2,3,2],[0,1,2,0]],[[1,3,2,0],[0,2,3,1],[2,2,3,2],[0,1,2,0]],[[2,2,2,0],[0,2,3,1],[2,2,3,2],[0,1,2,0]],[[1,2,2,0],[0,2,3,1],[2,2,3,2],[0,1,1,2]],[[1,2,2,0],[0,2,3,1],[2,2,3,3],[0,1,1,1]],[[1,0,1,1],[1,2,2,2],[3,3,3,2],[1,2,0,0]],[[1,0,1,1],[1,2,2,2],[2,4,3,2],[1,2,0,0]],[[1,0,1,1],[1,2,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,2,3,1],[2,2,4,2],[0,1,1,1]],[[1,2,2,0],[0,2,4,1],[2,2,3,2],[0,1,1,1]],[[1,2,3,0],[0,2,3,1],[2,2,3,2],[0,1,1,1]],[[1,3,2,0],[0,2,3,1],[2,2,3,2],[0,1,1,1]],[[2,2,2,0],[0,2,3,1],[2,2,3,2],[0,1,1,1]],[[1,2,2,0],[0,2,3,1],[2,2,3,2],[0,0,2,2]],[[1,2,2,0],[0,2,3,1],[2,2,3,3],[0,0,2,1]],[[1,2,2,0],[0,2,3,1],[2,2,4,2],[0,0,2,1]],[[1,2,2,0],[0,2,4,1],[2,2,3,2],[0,0,2,1]],[[1,2,3,0],[0,2,3,1],[2,2,3,2],[0,0,2,1]],[[1,3,2,0],[0,2,3,1],[2,2,3,2],[0,0,2,1]],[[2,2,2,0],[0,2,3,1],[2,2,3,2],[0,0,2,1]],[[1,2,2,0],[0,2,3,1],[2,2,4,1],[1,1,1,1]],[[1,0,1,1],[1,2,3,0],[0,3,4,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,0],[0,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,0],[0,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,0],[0,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,2,3,0],[1,2,4,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,0],[1,2,3,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,0],[1,2,3,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,0],[1,2,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,0],[1,2,3,2],[1,2,2,2]],[[1,0,1,1],[1,2,3,0],[1,4,2,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,0],[1,3,2,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,0],[1,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,0],[1,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,0],[1,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,2,3,0],[1,4,3,2],[1,1,2,1]],[[1,0,1,1],[1,2,3,0],[1,3,4,2],[1,1,2,1]],[[1,0,1,1],[1,2,3,0],[1,3,3,2],[1,1,3,1]],[[1,0,1,1],[1,2,3,0],[1,3,3,2],[1,1,2,2]],[[1,0,1,1],[1,2,3,0],[1,4,3,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,0],[1,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,0],[1,3,3,2],[2,2,1,1]],[[1,0,1,1],[1,2,3,0],[1,3,3,2],[1,3,1,1]],[[1,0,1,1],[1,2,3,0],[3,1,3,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,0],[2,1,4,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,0],[2,1,3,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,0],[2,1,3,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,0],[2,1,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,0],[2,1,3,2],[1,2,2,2]],[[1,0,1,1],[1,2,3,0],[3,2,2,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,0],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,0],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,0],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,0],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[1,2,3,0],[2,2,4,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,0],[2,2,3,2],[0,3,2,1]],[[1,0,1,1],[1,2,3,0],[2,2,3,2],[0,2,3,1]],[[1,0,1,1],[1,2,3,0],[2,2,3,2],[0,2,2,2]],[[1,0,1,1],[1,2,3,0],[3,2,3,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,0],[2,2,3,2],[2,2,1,1]],[[1,0,1,1],[1,2,3,0],[2,2,3,2],[1,3,1,1]],[[1,0,1,1],[1,2,3,0],[3,3,2,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,0],[2,4,2,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,0],[2,3,2,2],[0,3,2,1]],[[1,0,1,1],[1,2,3,0],[2,3,2,2],[0,2,3,1]],[[1,0,1,1],[1,2,3,0],[2,3,2,2],[0,2,2,2]],[[1,0,1,1],[1,2,3,0],[3,3,2,2],[1,1,2,1]],[[1,0,1,1],[1,2,3,0],[2,4,2,2],[1,1,2,1]],[[1,0,1,1],[1,2,3,0],[2,3,2,2],[2,1,2,1]],[[1,0,1,1],[1,2,3,0],[3,3,3,2],[0,1,2,1]],[[1,0,1,1],[1,2,3,0],[2,4,3,2],[0,1,2,1]],[[1,0,1,1],[1,2,3,0],[2,3,4,2],[0,1,2,1]],[[1,0,1,1],[1,2,3,0],[2,3,3,2],[0,1,3,1]],[[1,0,1,1],[1,2,3,0],[2,3,3,2],[0,1,2,2]],[[1,0,1,1],[1,2,3,0],[3,3,3,2],[0,2,1,1]],[[1,0,1,1],[1,2,3,0],[2,4,3,2],[0,2,1,1]],[[1,0,1,1],[1,2,3,0],[2,3,4,2],[0,2,1,1]],[[1,0,1,1],[1,2,3,0],[2,3,3,2],[0,3,1,1]],[[1,0,1,1],[1,2,3,0],[3,3,3,2],[1,0,2,1]],[[1,0,1,1],[1,2,3,0],[2,4,3,2],[1,0,2,1]],[[1,0,1,1],[1,2,3,0],[2,3,4,2],[1,0,2,1]],[[1,0,1,1],[1,2,3,0],[2,3,3,2],[2,0,2,1]],[[1,0,1,1],[1,2,3,0],[2,3,3,2],[1,0,3,1]],[[1,0,1,1],[1,2,3,0],[2,3,3,2],[1,0,2,2]],[[1,0,1,1],[1,2,3,0],[3,3,3,2],[1,1,1,1]],[[1,0,1,1],[1,2,3,0],[2,4,3,2],[1,1,1,1]],[[1,0,1,1],[1,2,3,0],[2,3,4,2],[1,1,1,1]],[[1,0,1,1],[1,2,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,0],[0,2,4,1],[2,2,3,1],[1,1,1,1]],[[1,2,3,0],[0,2,3,1],[2,2,3,1],[1,1,1,1]],[[1,3,2,0],[0,2,3,1],[2,2,3,1],[1,1,1,1]],[[2,2,2,0],[0,2,3,1],[2,2,3,1],[1,1,1,1]],[[1,2,2,0],[0,2,3,1],[2,2,3,1],[1,0,2,2]],[[1,2,2,0],[0,2,3,1],[2,2,3,1],[1,0,3,1]],[[1,2,2,0],[0,2,3,1],[2,2,4,1],[1,0,2,1]],[[1,0,1,1],[1,2,3,1],[0,2,3,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[0,2,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[0,2,3,2],[1,2,2,2]],[[1,0,1,1],[1,2,3,1],[0,3,2,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[0,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[0,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[0,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,2,4,1],[0,3,3,1],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[0,3,4,1],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[0,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[0,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[0,3,3,1],[1,2,2,2]],[[1,0,1,1],[1,2,4,1],[0,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[0,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[0,3,3,3],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[0,3,3,2],[1,2,1,2]],[[1,0,1,1],[1,2,4,1],[0,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[0,3,4,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[0,3,3,3],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[0,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,2,3,1],[0,3,3,2],[1,2,3,0]],[[1,0,1,1],[1,2,3,1],[1,1,3,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,1,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[1,1,3,2],[1,2,2,2]],[[1,0,1,1],[1,2,3,1],[1,2,2,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,2,2,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,2,2,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[1,2,2,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[1,2,2,2],[1,2,2,2]],[[1,0,1,1],[1,2,4,1],[1,2,3,1],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,2,4,1],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,2,3,1],[2,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,2,3,1],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[1,2,3,1],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[1,2,3,1],[1,2,2,2]],[[1,0,1,1],[1,2,4,1],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[1,2,4,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[1,2,3,3],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[1,2,3,2],[1,2,1,2]],[[1,0,1,1],[1,2,4,1],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[1,2,4,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[1,2,3,3],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[1,2,3,2],[2,2,2,0]],[[1,0,1,1],[1,2,3,1],[1,2,3,2],[1,3,2,0]],[[1,0,1,1],[1,2,3,1],[1,2,3,2],[1,2,3,0]],[[1,0,1,1],[1,2,3,1],[1,4,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,1,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,1,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,1,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,1,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[1,3,1,2],[1,2,2,2]],[[1,0,1,1],[1,2,3,1],[1,4,2,1],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,2,1],[2,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,2,1],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,2,1],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[1,3,2,1],[1,2,2,2]],[[1,0,1,1],[1,2,3,1],[1,3,2,3],[1,1,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,2,2],[1,1,3,1]],[[1,0,1,1],[1,2,3,1],[1,3,2,2],[1,1,2,2]],[[1,0,1,1],[1,2,3,1],[1,4,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[1,3,2,2],[2,2,2,0]],[[1,0,1,1],[1,2,3,1],[1,3,2,2],[1,3,2,0]],[[1,0,1,1],[1,2,3,1],[1,3,2,2],[1,2,3,0]],[[1,0,1,1],[1,2,3,1],[1,4,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,0],[2,2,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,0],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,0],[1,2,3,1]],[[1,0,1,1],[1,2,4,1],[1,3,3,1],[1,1,2,1]],[[1,0,1,1],[1,2,3,1],[1,4,3,1],[1,1,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,4,1],[1,1,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,1],[1,1,3,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,1],[1,1,2,2]],[[1,0,1,1],[1,2,4,1],[1,3,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[1,4,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[1,3,4,1],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,1],[2,2,1,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,1],[1,3,1,1]],[[1,0,1,1],[1,2,4,1],[1,3,3,2],[1,0,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,4,2],[1,0,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,3],[1,0,2,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,2],[1,0,2,2]],[[1,0,1,1],[1,2,4,1],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[1,2,3,1],[1,4,3,2],[1,1,1,1]],[[1,0,1,1],[1,2,3,1],[1,3,4,2],[1,1,1,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,3],[1,1,1,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,2],[1,1,1,2]],[[1,0,1,1],[1,2,4,1],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[1,2,3,1],[1,4,3,2],[1,1,2,0]],[[1,0,1,1],[1,2,3,1],[1,3,4,2],[1,1,2,0]],[[1,0,1,1],[1,2,3,1],[1,3,3,3],[1,1,2,0]],[[1,0,1,1],[1,2,3,1],[1,3,3,2],[1,1,3,0]],[[1,0,1,1],[1,2,4,1],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[1,2,3,1],[1,4,3,2],[1,2,0,1]],[[1,0,1,1],[1,2,3,1],[1,3,4,2],[1,2,0,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,3],[1,2,0,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,2],[2,2,0,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,2],[1,3,0,1]],[[1,0,1,1],[1,2,3,1],[1,3,3,2],[1,2,0,2]],[[1,0,1,1],[1,2,4,1],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[1,2,3,1],[1,4,3,2],[1,2,1,0]],[[1,0,1,1],[1,2,3,1],[1,3,4,2],[1,2,1,0]],[[1,0,1,1],[1,2,3,1],[1,3,3,3],[1,2,1,0]],[[1,0,1,1],[1,2,3,1],[1,3,3,2],[2,2,1,0]],[[1,0,1,1],[1,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,2,4,1],[2,2,3,1],[1,0,2,1]],[[1,2,3,0],[0,2,3,1],[2,2,3,1],[1,0,2,1]],[[1,3,2,0],[0,2,3,1],[2,2,3,1],[1,0,2,1]],[[2,2,2,0],[0,2,3,1],[2,2,3,1],[1,0,2,1]],[[1,0,1,1],[1,2,3,1],[2,0,3,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,0,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[2,0,3,2],[1,2,2,2]],[[1,0,1,1],[1,2,3,1],[3,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,1,2,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,1,2,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,1,2,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[2,1,2,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[2,1,2,2],[1,2,2,2]],[[1,0,1,1],[1,2,4,1],[2,1,3,1],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[3,1,3,1],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,1,4,1],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,1,3,1],[2,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,1,3,1],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[2,1,3,1],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[2,1,3,1],[1,2,2,2]],[[1,0,1,1],[1,2,3,1],[2,1,3,3],[0,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,1,3,2],[0,2,3,1]],[[1,0,1,1],[1,2,3,1],[2,1,3,2],[0,2,2,2]],[[1,0,1,1],[1,2,4,1],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[2,1,4,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[2,1,3,3],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[2,1,3,2],[1,2,1,2]],[[1,0,1,1],[1,2,4,1],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[3,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[2,1,3,3],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[2,1,3,2],[2,2,2,0]],[[1,0,1,1],[1,2,3,1],[2,1,3,2],[1,3,2,0]],[[1,0,1,1],[1,2,3,1],[2,1,3,2],[1,2,3,0]],[[1,0,1,1],[1,2,3,1],[3,2,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,1,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,1,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,1,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,1,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[2,2,1,2],[1,2,2,2]],[[1,0,1,1],[1,2,3,1],[3,2,2,1],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,2,1],[2,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,2,1],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,2,1],[1,2,3,1]],[[1,0,1,1],[1,2,3,1],[2,2,2,1],[1,2,2,2]],[[1,0,1,1],[1,2,3,1],[2,2,2,3],[0,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,2,2],[0,3,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,2,2],[0,2,3,1]],[[1,0,1,1],[1,2,3,1],[2,2,2,2],[0,2,2,2]],[[1,0,1,1],[1,2,3,1],[3,2,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,1],[2,2,2,2],[2,2,2,0]],[[1,0,1,1],[1,2,3,1],[2,2,2,2],[1,3,2,0]],[[1,0,1,1],[1,2,3,1],[2,2,2,2],[1,2,3,0]],[[1,0,1,1],[1,2,3,1],[3,2,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,0],[2,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,0],[1,3,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,0],[1,2,3,1]],[[1,0,1,1],[1,2,4,1],[2,2,3,1],[0,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,4,1],[0,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,1],[0,3,2,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,1],[0,2,3,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,1],[0,2,2,2]],[[1,0,1,1],[1,2,3,1],[3,2,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,1],[2,2,1,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,1],[1,3,1,1]],[[1,0,1,1],[1,2,4,1],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[1,2,3,1],[2,2,4,2],[0,2,1,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,3],[0,2,1,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,2],[0,2,1,2]],[[1,0,1,1],[1,2,4,1],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[1,2,3,1],[2,2,4,2],[0,2,2,0]],[[1,0,1,1],[1,2,3,1],[2,2,3,3],[0,2,2,0]],[[1,0,1,1],[1,2,3,1],[2,2,3,2],[0,3,2,0]],[[1,0,1,1],[1,2,3,1],[2,2,3,2],[0,2,3,0]],[[1,0,1,1],[1,2,3,1],[3,2,3,2],[1,2,0,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,2],[2,2,0,1]],[[1,0,1,1],[1,2,3,1],[2,2,3,2],[1,3,0,1]],[[1,0,1,1],[1,2,3,1],[3,2,3,2],[1,2,1,0]],[[1,0,1,1],[1,2,3,1],[2,2,3,2],[2,2,1,0]],[[1,0,1,1],[1,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,2,3,1],[2,2,4,1],[0,2,1,1]],[[1,2,2,0],[0,2,4,1],[2,2,3,1],[0,2,1,1]],[[1,2,3,0],[0,2,3,1],[2,2,3,1],[0,2,1,1]],[[1,3,2,0],[0,2,3,1],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[1,2,3,1],[3,3,1,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,4,1,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,1,3],[0,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,1,2],[0,3,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,1,2],[0,2,3,1]],[[1,0,1,1],[1,2,3,1],[2,3,1,2],[0,2,2,2]],[[1,0,1,1],[1,2,3,1],[3,3,1,2],[1,1,2,1]],[[1,0,1,1],[1,2,3,1],[2,4,1,2],[1,1,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,1,2],[2,1,2,1]],[[1,0,1,1],[1,2,3,1],[3,3,2,1],[0,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,4,2,1],[0,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,2,1],[0,3,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,2,1],[0,2,3,1]],[[1,0,1,1],[1,2,3,1],[2,3,2,1],[0,2,2,2]],[[1,0,1,1],[1,2,3,1],[3,3,2,1],[1,1,2,1]],[[1,0,1,1],[1,2,3,1],[2,4,2,1],[1,1,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,2,1],[2,1,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,2,3],[0,1,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,2,2],[0,1,3,1]],[[1,0,1,1],[1,2,3,1],[2,3,2,2],[0,1,2,2]],[[1,0,1,1],[1,2,3,1],[3,3,2,2],[0,2,2,0]],[[1,0,1,1],[1,2,3,1],[2,4,2,2],[0,2,2,0]],[[1,0,1,1],[1,2,3,1],[2,3,2,2],[0,3,2,0]],[[1,0,1,1],[1,2,3,1],[2,3,2,2],[0,2,3,0]],[[1,0,1,1],[1,2,3,1],[2,3,2,3],[1,0,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,2,2],[1,0,3,1]],[[1,0,1,1],[1,2,3,1],[2,3,2,2],[1,0,2,2]],[[1,0,1,1],[1,2,3,1],[3,3,2,2],[1,1,2,0]],[[1,0,1,1],[1,2,3,1],[2,4,2,2],[1,1,2,0]],[[1,0,1,1],[1,2,3,1],[2,3,2,2],[2,1,2,0]],[[2,2,2,0],[0,2,3,1],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[0,2,3,1],[2,2,3,1],[0,1,2,2]],[[1,2,2,0],[0,2,3,1],[2,2,3,1],[0,1,3,1]],[[1,2,2,0],[0,2,3,1],[2,2,4,1],[0,1,2,1]],[[1,2,2,0],[0,2,4,1],[2,2,3,1],[0,1,2,1]],[[1,2,3,0],[0,2,3,1],[2,2,3,1],[0,1,2,1]],[[1,3,2,0],[0,2,3,1],[2,2,3,1],[0,1,2,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,0],[0,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,4,3,0],[0,2,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,0],[0,3,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,0],[0,2,3,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,0],[1,1,2,1]],[[1,0,1,1],[1,2,3,1],[2,4,3,0],[1,1,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,0],[2,1,2,1]],[[1,0,1,1],[1,2,4,1],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,1],[0,1,2,1]],[[1,0,1,1],[1,2,3,1],[2,4,3,1],[0,1,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,4,1],[0,1,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,1],[0,1,3,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,1],[0,1,2,2]],[[1,0,1,1],[1,2,4,1],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,1],[0,2,1,1]],[[1,0,1,1],[1,2,3,1],[2,4,3,1],[0,2,1,1]],[[1,0,1,1],[1,2,3,1],[2,3,4,1],[0,2,1,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,1],[0,3,1,1]],[[1,0,1,1],[1,2,4,1],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,1],[1,0,2,1]],[[1,0,1,1],[1,2,3,1],[2,4,3,1],[1,0,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,4,1],[1,0,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,1],[2,0,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,1],[1,0,3,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,1],[1,0,2,2]],[[1,0,1,1],[1,2,4,1],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,1],[1,1,1,1]],[[1,0,1,1],[1,2,3,1],[2,4,3,1],[1,1,1,1]],[[1,0,1,1],[1,2,3,1],[2,3,4,1],[1,1,1,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,1],[2,1,1,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,1],[1,2,0,1]],[[1,0,1,1],[1,2,3,1],[2,4,3,1],[1,2,0,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,1],[2,2,0,1]],[[2,2,2,0],[0,2,3,1],[2,2,3,1],[0,1,2,1]],[[1,0,1,1],[1,2,4,1],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,4,2],[0,0,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,3],[0,0,2,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[0,0,2,2]],[[1,0,1,1],[1,2,4,1],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,2,3,1],[2,4,3,2],[0,1,1,1]],[[1,0,1,1],[1,2,3,1],[2,3,4,2],[0,1,1,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,3],[0,1,1,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[0,1,1,2]],[[1,0,1,1],[1,2,4,1],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,2,3,1],[3,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,2,3,1],[2,4,3,2],[0,1,2,0]],[[1,0,1,1],[1,2,3,1],[2,3,4,2],[0,1,2,0]],[[1,0,1,1],[1,2,3,1],[2,3,3,3],[0,1,2,0]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[0,1,3,0]],[[1,0,1,1],[1,2,4,1],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,2,3,1],[2,4,3,2],[0,2,0,1]],[[1,0,1,1],[1,2,3,1],[2,3,4,2],[0,2,0,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,3],[0,2,0,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[0,3,0,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[0,2,0,2]],[[1,0,1,1],[1,2,4,1],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,2,3,1],[3,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,2,3,1],[2,4,3,2],[0,2,1,0]],[[1,0,1,1],[1,2,3,1],[2,3,4,2],[0,2,1,0]],[[1,0,1,1],[1,2,3,1],[2,3,3,3],[0,2,1,0]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,2,3,1],[2,2,2,2],[1,0,2,2]],[[1,2,2,0],[0,2,3,1],[2,2,2,2],[1,0,3,1]],[[1,2,2,0],[0,2,3,1],[2,2,2,3],[1,0,2,1]],[[1,0,1,1],[1,2,4,1],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,2,3,1],[2,4,3,2],[1,0,1,1]],[[1,0,1,1],[1,2,3,1],[2,3,4,2],[1,0,1,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,3],[1,0,1,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[2,0,1,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[1,0,1,2]],[[1,0,1,1],[1,2,4,1],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,2,3,1],[3,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,2,3,1],[2,4,3,2],[1,0,2,0]],[[1,0,1,1],[1,2,3,1],[2,3,4,2],[1,0,2,0]],[[1,0,1,1],[1,2,3,1],[2,3,3,3],[1,0,2,0]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[2,0,2,0]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[1,0,3,0]],[[1,0,1,1],[1,2,4,1],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,2,3,1],[2,4,3,2],[1,1,0,1]],[[1,0,1,1],[1,2,3,1],[2,3,4,2],[1,1,0,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,3],[1,1,0,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[2,1,0,1]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[1,1,0,2]],[[1,0,1,1],[1,2,4,1],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,2,3,1],[3,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,2,3,1],[2,4,3,2],[1,1,1,0]],[[1,0,1,1],[1,2,3,1],[2,3,4,2],[1,1,1,0]],[[1,0,1,1],[1,2,3,1],[2,3,3,3],[1,1,1,0]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,2,3,1],[2,2,2,2],[0,1,2,2]],[[1,2,2,0],[0,2,3,1],[2,2,2,2],[0,1,3,1]],[[1,2,2,0],[0,2,3,1],[2,2,2,3],[0,1,2,1]],[[1,0,1,1],[1,2,3,1],[3,3,3,2],[1,2,0,0]],[[1,0,1,1],[1,2,3,1],[2,4,3,2],[1,2,0,0]],[[1,0,1,1],[1,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,0,1,2],[1,2,3,2],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,4,2],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,3],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[0,3,1,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[0,3,1,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,2],[0,3,1,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,2],[0,3,1,2],[1,2,2,2]],[[1,0,1,2],[1,2,3,2],[0,3,2,2],[1,2,1,1]],[[1,0,1,1],[1,2,4,2],[0,3,2,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,3],[0,3,2,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[0,3,2,3],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[0,3,2,2],[1,2,1,2]],[[1,0,1,2],[1,2,3,2],[0,3,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,4,2],[0,3,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,3],[0,3,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[0,3,2,3],[1,2,2,0]],[[1,0,1,2],[1,2,3,2],[0,3,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,4,2],[0,3,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,3],[0,3,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[0,3,4,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[0,3,3,0],[1,3,2,1]],[[1,0,1,1],[1,2,3,2],[0,3,3,0],[1,2,3,1]],[[1,0,1,1],[1,2,3,2],[0,3,3,0],[1,2,2,2]],[[1,0,1,2],[1,2,3,2],[0,3,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,4,2],[0,3,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,3,3],[0,3,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[0,3,4,1],[1,2,1,1]],[[1,0,1,2],[1,2,3,2],[0,3,3,1],[1,2,2,0]],[[1,0,1,1],[1,2,4,2],[0,3,3,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,3],[0,3,3,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[0,3,4,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[0,3,3,1],[1,3,2,0]],[[1,0,1,1],[1,2,3,2],[0,3,3,1],[1,2,3,0]],[[1,0,1,2],[1,2,3,2],[1,0,3,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,3],[1,0,3,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,0,3,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,0,3,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,2],[1,0,3,2],[1,2,2,2]],[[1,0,1,2],[1,2,3,2],[1,2,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,4,2],[1,2,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,3],[1,2,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,2,1,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,2,1,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,2,1,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,2],[1,2,1,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,2],[1,2,1,2],[1,2,2,2]],[[1,0,1,2],[1,2,3,2],[1,2,2,2],[1,2,1,1]],[[1,0,1,1],[1,2,4,2],[1,2,2,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,3],[1,2,2,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[1,2,2,3],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[1,2,2,2],[1,2,1,2]],[[1,0,1,2],[1,2,3,2],[1,2,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,4,2],[1,2,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,3],[1,2,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[1,2,2,3],[1,2,2,0]],[[1,0,1,2],[1,2,3,2],[1,2,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,4,2],[1,2,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,3],[1,2,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,2,4,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,2,3,0],[2,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,2,3,0],[1,3,2,1]],[[1,0,1,1],[1,2,3,2],[1,2,3,0],[1,2,3,1]],[[1,0,1,1],[1,2,3,2],[1,2,3,0],[1,2,2,2]],[[1,0,1,2],[1,2,3,2],[1,2,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,4,2],[1,2,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,3,3],[1,2,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[1,2,4,1],[1,2,1,1]],[[1,0,1,2],[1,2,3,2],[1,2,3,1],[1,2,2,0]],[[1,0,1,1],[1,2,4,2],[1,2,3,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,3],[1,2,3,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[1,2,4,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[1,2,3,1],[2,2,2,0]],[[1,0,1,1],[1,2,3,2],[1,2,3,1],[1,3,2,0]],[[1,0,1,1],[1,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,0],[0,2,3,1],[2,1,3,2],[0,2,3,0]],[[1,2,2,0],[0,2,3,1],[2,1,3,2],[0,3,2,0]],[[1,2,2,0],[0,2,3,1],[2,1,3,3],[0,2,2,0]],[[1,2,2,0],[0,2,3,1],[2,1,4,2],[0,2,2,0]],[[1,2,2,0],[0,2,4,1],[2,1,3,2],[0,2,2,0]],[[1,2,3,0],[0,2,3,1],[2,1,3,2],[0,2,2,0]],[[1,3,2,0],[0,2,3,1],[2,1,3,2],[0,2,2,0]],[[1,0,1,2],[1,2,3,2],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[1,2,4,2],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,3],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,4,0,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,0,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,0,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,0,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,0,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,2],[1,3,0,2],[1,2,2,2]],[[1,0,1,2],[1,2,3,2],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[1,2,4,2],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[1,2,3,3],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,1,3],[1,1,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,1,2],[1,1,3,1]],[[1,0,1,1],[1,2,3,2],[1,3,1,2],[1,1,2,2]],[[1,0,1,1],[1,2,3,2],[1,4,2,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,2,0],[2,2,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,2,0],[1,3,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,2,0],[1,2,3,1]],[[1,0,1,1],[1,2,3,2],[1,3,2,0],[1,2,2,2]],[[1,0,1,1],[1,2,3,2],[1,4,2,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[1,3,2,1],[2,2,2,0]],[[1,0,1,1],[1,2,3,2],[1,3,2,1],[1,3,2,0]],[[1,0,1,1],[1,2,3,2],[1,3,2,1],[1,2,3,0]],[[1,0,1,2],[1,2,3,2],[1,3,2,2],[1,0,2,1]],[[1,0,1,1],[1,2,4,2],[1,3,2,2],[1,0,2,1]],[[1,0,1,1],[1,2,3,3],[1,3,2,2],[1,0,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,2,3],[1,0,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,2,2],[1,0,2,2]],[[1,0,1,2],[1,2,3,2],[1,3,2,2],[1,1,1,1]],[[1,0,1,1],[1,2,4,2],[1,3,2,2],[1,1,1,1]],[[1,0,1,1],[1,2,3,3],[1,3,2,2],[1,1,1,1]],[[1,0,1,1],[1,2,3,2],[1,3,2,3],[1,1,1,1]],[[1,0,1,1],[1,2,3,2],[1,3,2,2],[1,1,1,2]],[[1,0,1,2],[1,2,3,2],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[1,2,4,2],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[1,2,3,3],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[1,2,3,2],[1,3,2,3],[1,1,2,0]],[[1,0,1,2],[1,2,3,2],[1,3,2,2],[1,2,0,1]],[[1,0,1,1],[1,2,4,2],[1,3,2,2],[1,2,0,1]],[[1,0,1,1],[1,2,3,3],[1,3,2,2],[1,2,0,1]],[[1,0,1,1],[1,2,3,2],[1,3,2,3],[1,2,0,1]],[[1,0,1,1],[1,2,3,2],[1,3,2,2],[1,2,0,2]],[[1,0,1,2],[1,2,3,2],[1,3,2,2],[1,2,1,0]],[[1,0,1,1],[1,2,4,2],[1,3,2,2],[1,2,1,0]],[[1,0,1,1],[1,2,3,3],[1,3,2,2],[1,2,1,0]],[[1,0,1,1],[1,2,3,2],[1,3,2,3],[1,2,1,0]],[[2,2,2,0],[0,2,3,1],[2,1,3,2],[0,2,2,0]],[[1,2,2,0],[0,2,3,1],[2,1,3,2],[0,2,1,2]],[[1,2,2,0],[0,2,3,1],[2,1,3,3],[0,2,1,1]],[[1,2,2,0],[0,2,3,1],[2,1,4,2],[0,2,1,1]],[[1,2,2,0],[0,2,4,1],[2,1,3,2],[0,2,1,1]],[[1,2,3,0],[0,2,3,1],[2,1,3,2],[0,2,1,1]],[[1,3,2,0],[0,2,3,1],[2,1,3,2],[0,2,1,1]],[[2,2,2,0],[0,2,3,1],[2,1,3,2],[0,2,1,1]],[[1,0,1,2],[1,2,3,2],[1,3,3,0],[1,1,2,1]],[[1,0,1,1],[1,2,4,2],[1,3,3,0],[1,1,2,1]],[[1,0,1,1],[1,2,3,3],[1,3,3,0],[1,1,2,1]],[[1,0,1,1],[1,2,3,2],[1,4,3,0],[1,1,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,4,0],[1,1,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,3,0],[1,1,3,1]],[[1,0,1,1],[1,2,3,2],[1,3,3,0],[1,1,2,2]],[[1,0,1,2],[1,2,3,2],[1,3,3,0],[1,2,1,1]],[[1,0,1,1],[1,2,4,2],[1,3,3,0],[1,2,1,1]],[[1,0,1,1],[1,2,3,3],[1,3,3,0],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[1,4,3,0],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[1,3,4,0],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[1,3,3,0],[2,2,1,1]],[[1,0,1,1],[1,2,3,2],[1,3,3,0],[1,3,1,1]],[[1,0,1,2],[1,2,3,2],[1,3,3,1],[1,0,2,1]],[[1,0,1,1],[1,2,4,2],[1,3,3,1],[1,0,2,1]],[[1,0,1,1],[1,2,3,3],[1,3,3,1],[1,0,2,1]],[[1,0,1,1],[1,2,3,2],[1,3,4,1],[1,0,2,1]],[[1,0,1,2],[1,2,3,2],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[1,2,4,2],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[1,2,3,3],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[1,2,3,2],[1,4,3,1],[1,1,1,1]],[[1,0,1,1],[1,2,3,2],[1,3,4,1],[1,1,1,1]],[[1,0,1,2],[1,2,3,2],[1,3,3,1],[1,1,2,0]],[[1,0,1,1],[1,2,4,2],[1,3,3,1],[1,1,2,0]],[[1,0,1,1],[1,2,3,3],[1,3,3,1],[1,1,2,0]],[[1,0,1,1],[1,2,3,2],[1,4,3,1],[1,1,2,0]],[[1,0,1,1],[1,2,3,2],[1,3,4,1],[1,1,2,0]],[[1,0,1,1],[1,2,3,2],[1,3,3,1],[1,1,3,0]],[[1,0,1,2],[1,2,3,2],[1,3,3,1],[1,2,0,1]],[[1,0,1,1],[1,2,4,2],[1,3,3,1],[1,2,0,1]],[[1,0,1,1],[1,2,3,3],[1,3,3,1],[1,2,0,1]],[[1,0,1,1],[1,2,3,2],[1,4,3,1],[1,2,0,1]],[[1,0,1,1],[1,2,3,2],[1,3,4,1],[1,2,0,1]],[[1,0,1,1],[1,2,3,2],[1,3,3,1],[2,2,0,1]],[[1,0,1,1],[1,2,3,2],[1,3,3,1],[1,3,0,1]],[[1,0,1,2],[1,2,3,2],[1,3,3,1],[1,2,1,0]],[[1,0,1,1],[1,2,4,2],[1,3,3,1],[1,2,1,0]],[[1,0,1,1],[1,2,3,3],[1,3,3,1],[1,2,1,0]],[[1,0,1,1],[1,2,3,2],[1,4,3,1],[1,2,1,0]],[[1,0,1,1],[1,2,3,2],[1,3,4,1],[1,2,1,0]],[[1,0,1,1],[1,2,3,2],[1,3,3,1],[2,2,1,0]],[[1,0,1,1],[1,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,0,1,2],[1,2,3,2],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,2,4,2],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,2,3,3],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,2,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,0],[0,2,3,1],[2,1,3,1],[0,2,2,2]],[[1,2,2,0],[0,2,3,1],[2,1,3,1],[0,2,3,1]],[[1,2,2,0],[0,2,3,1],[2,1,3,1],[0,3,2,1]],[[1,2,2,0],[0,2,3,1],[2,1,4,1],[0,2,2,1]],[[1,2,2,0],[0,2,4,1],[2,1,3,1],[0,2,2,1]],[[1,2,3,0],[0,2,3,1],[2,1,3,1],[0,2,2,1]],[[1,3,2,0],[0,2,3,1],[2,1,3,1],[0,2,2,1]],[[2,2,2,0],[0,2,3,1],[2,1,3,1],[0,2,2,1]],[[1,2,2,0],[0,2,3,1],[2,1,2,2],[0,2,2,2]],[[1,2,2,0],[0,2,3,1],[2,1,2,2],[0,2,3,1]],[[1,2,2,0],[0,2,3,1],[2,1,2,2],[0,3,2,1]],[[1,2,2,0],[0,2,3,1],[2,1,2,3],[0,2,2,1]],[[1,2,2,0],[0,2,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[0,2,3,1],[2,0,3,2],[1,3,2,0]],[[1,2,2,0],[0,2,3,1],[2,0,3,2],[2,2,2,0]],[[1,2,2,0],[0,2,3,1],[2,0,3,3],[1,2,2,0]],[[1,2,2,0],[0,2,3,1],[2,0,4,2],[1,2,2,0]],[[1,2,2,0],[0,2,3,1],[3,0,3,2],[1,2,2,0]],[[1,2,2,0],[0,2,4,1],[2,0,3,2],[1,2,2,0]],[[1,0,1,2],[1,2,3,2],[2,0,3,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,3],[2,0,3,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,0,3,3],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,0,3,2],[0,2,3,1]],[[1,0,1,1],[1,2,3,2],[2,0,3,2],[0,2,2,2]],[[1,0,1,2],[1,2,3,2],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,4,2],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,3],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[3,1,1,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,1,1,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,1,1,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,1,1,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,2],[2,1,1,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,2],[2,1,1,2],[1,2,2,2]],[[1,0,1,2],[1,2,3,2],[2,1,2,2],[1,2,1,1]],[[1,0,1,1],[1,2,4,2],[2,1,2,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,3],[2,1,2,2],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[2,1,2,3],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[2,1,2,2],[1,2,1,2]],[[1,0,1,2],[1,2,3,2],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,4,2],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,3],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[2,1,2,3],[1,2,2,0]],[[1,0,1,2],[1,2,3,2],[2,1,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,4,2],[2,1,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,3],[2,1,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[3,1,3,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,1,4,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,1,3,0],[2,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,1,3,0],[1,3,2,1]],[[1,0,1,1],[1,2,3,2],[2,1,3,0],[1,2,3,1]],[[1,0,1,1],[1,2,3,2],[2,1,3,0],[1,2,2,2]],[[1,0,1,2],[1,2,3,2],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,4,2],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,3,3],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[2,1,4,1],[1,2,1,1]],[[1,0,1,2],[1,2,3,2],[2,1,3,1],[1,2,2,0]],[[1,0,1,1],[1,2,4,2],[2,1,3,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,3],[2,1,3,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[3,1,3,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[2,1,4,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[2,1,3,1],[2,2,2,0]],[[1,0,1,1],[1,2,3,2],[2,1,3,1],[1,3,2,0]],[[1,0,1,1],[1,2,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,3,0],[0,2,3,1],[2,0,3,2],[1,2,2,0]],[[1,3,2,0],[0,2,3,1],[2,0,3,2],[1,2,2,0]],[[2,2,2,0],[0,2,3,1],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[0,2,3,1],[2,0,3,2],[1,2,1,2]],[[1,2,2,0],[0,2,3,1],[2,0,3,3],[1,2,1,1]],[[1,2,2,0],[0,2,3,1],[2,0,4,2],[1,2,1,1]],[[1,2,2,0],[0,2,4,1],[2,0,3,2],[1,2,1,1]],[[1,2,3,0],[0,2,3,1],[2,0,3,2],[1,2,1,1]],[[1,3,2,0],[0,2,3,1],[2,0,3,2],[1,2,1,1]],[[2,2,2,0],[0,2,3,1],[2,0,3,2],[1,2,1,1]],[[1,0,1,2],[1,2,3,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,2,4,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,3],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[3,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,0,3],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,0,2],[2,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,0,2],[1,3,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,0,2],[1,2,3,1]],[[1,0,1,1],[1,2,3,2],[2,2,0,2],[1,2,2,2]],[[1,0,1,2],[1,2,3,2],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[1,2,4,2],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,3],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,1,3],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,1,2],[0,3,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,1,2],[0,2,3,1]],[[1,0,1,1],[1,2,3,2],[2,2,1,2],[0,2,2,2]],[[1,0,1,1],[1,2,3,2],[3,2,2,0],[1,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,2,0],[2,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,2,0],[1,3,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,2,0],[1,2,3,1]],[[1,0,1,1],[1,2,3,2],[2,2,2,0],[1,2,2,2]],[[1,0,1,1],[1,2,3,2],[3,2,2,1],[1,2,2,0]],[[1,0,1,1],[1,2,3,2],[2,2,2,1],[2,2,2,0]],[[1,0,1,1],[1,2,3,2],[2,2,2,1],[1,3,2,0]],[[1,0,1,1],[1,2,3,2],[2,2,2,1],[1,2,3,0]],[[1,0,1,2],[1,2,3,2],[2,2,2,2],[0,2,1,1]],[[1,0,1,1],[1,2,4,2],[2,2,2,2],[0,2,1,1]],[[1,0,1,1],[1,2,3,3],[2,2,2,2],[0,2,1,1]],[[1,0,1,1],[1,2,3,2],[2,2,2,3],[0,2,1,1]],[[1,0,1,1],[1,2,3,2],[2,2,2,2],[0,2,1,2]],[[1,0,1,2],[1,2,3,2],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[1,2,4,2],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[1,2,3,3],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[1,2,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,2,0],[0,2,3,1],[2,0,3,2],[0,2,2,2]],[[1,2,2,0],[0,2,3,1],[2,0,3,2],[0,2,3,1]],[[1,2,2,0],[0,2,3,1],[2,0,3,3],[0,2,2,1]],[[1,2,2,0],[0,2,3,1],[2,0,3,1],[1,2,2,2]],[[1,2,2,0],[0,2,3,1],[2,0,3,1],[1,2,3,1]],[[1,2,2,0],[0,2,3,1],[2,0,3,1],[1,3,2,1]],[[1,2,2,0],[0,2,3,1],[2,0,3,1],[2,2,2,1]],[[1,2,2,0],[0,2,3,1],[2,0,4,1],[1,2,2,1]],[[1,2,2,0],[0,2,3,1],[3,0,3,1],[1,2,2,1]],[[1,0,1,2],[1,2,3,2],[2,2,3,0],[0,2,2,1]],[[1,0,1,1],[1,2,4,2],[2,2,3,0],[0,2,2,1]],[[1,0,1,1],[1,2,3,3],[2,2,3,0],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,4,0],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,3,0],[0,3,2,1]],[[1,0,1,1],[1,2,3,2],[2,2,3,0],[0,2,3,1]],[[1,0,1,1],[1,2,3,2],[2,2,3,0],[0,2,2,2]],[[1,0,1,1],[1,2,3,2],[3,2,3,0],[1,2,1,1]],[[1,0,1,1],[1,2,3,2],[2,2,3,0],[2,2,1,1]],[[1,0,1,1],[1,2,3,2],[2,2,3,0],[1,3,1,1]],[[1,0,1,2],[1,2,3,2],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[1,2,4,2],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[1,2,3,3],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[1,2,3,2],[2,2,4,1],[0,2,1,1]],[[1,0,1,2],[1,2,3,2],[2,2,3,1],[0,2,2,0]],[[1,0,1,1],[1,2,4,2],[2,2,3,1],[0,2,2,0]],[[1,0,1,1],[1,2,3,3],[2,2,3,1],[0,2,2,0]],[[1,0,1,1],[1,2,3,2],[2,2,4,1],[0,2,2,0]],[[1,0,1,1],[1,2,3,2],[2,2,3,1],[0,3,2,0]],[[1,0,1,1],[1,2,3,2],[2,2,3,1],[0,2,3,0]],[[1,0,1,1],[1,2,3,2],[3,2,3,1],[1,2,0,1]],[[1,0,1,1],[1,2,3,2],[2,2,3,1],[2,2,0,1]],[[1,0,1,1],[1,2,3,2],[2,2,3,1],[1,3,0,1]],[[1,0,1,1],[1,2,3,2],[3,2,3,1],[1,2,1,0]],[[1,0,1,1],[1,2,3,2],[2,2,3,1],[2,2,1,0]],[[1,0,1,1],[1,2,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[0,2,4,1],[2,0,3,1],[1,2,2,1]],[[1,2,3,0],[0,2,3,1],[2,0,3,1],[1,2,2,1]],[[1,3,2,0],[0,2,3,1],[2,0,3,1],[1,2,2,1]],[[2,2,2,0],[0,2,3,1],[2,0,3,1],[1,2,2,1]],[[1,2,2,0],[0,2,3,1],[2,0,2,2],[1,2,2,2]],[[1,2,2,0],[0,2,3,1],[2,0,2,2],[1,2,3,1]],[[1,2,2,0],[0,2,3,1],[2,0,2,2],[1,3,2,1]],[[1,2,2,0],[0,2,3,1],[2,0,2,2],[2,2,2,1]],[[1,2,2,0],[0,2,3,1],[2,0,2,3],[1,2,2,1]],[[1,2,2,0],[0,2,3,1],[3,0,2,2],[1,2,2,1]],[[1,2,2,0],[0,2,4,1],[1,3,3,2],[1,2,0,0]],[[1,2,3,0],[0,2,3,1],[1,3,3,2],[1,2,0,0]],[[1,3,2,0],[0,2,3,1],[1,3,3,2],[1,2,0,0]],[[2,2,2,0],[0,2,3,1],[1,3,3,2],[1,2,0,0]],[[1,0,1,2],[1,2,3,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[1,2,4,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,3],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[3,3,0,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,4,0,2],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,0,3],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,0,2],[0,3,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,0,2],[0,2,3,1]],[[1,0,1,1],[1,2,3,2],[2,3,0,2],[0,2,2,2]],[[1,0,1,1],[1,2,3,2],[3,3,0,2],[1,1,2,1]],[[1,0,1,1],[1,2,3,2],[2,4,0,2],[1,1,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,0,2],[2,1,2,1]],[[1,0,1,2],[1,2,3,2],[2,3,1,2],[0,1,2,1]],[[1,0,1,1],[1,2,4,2],[2,3,1,2],[0,1,2,1]],[[1,0,1,1],[1,2,3,3],[2,3,1,2],[0,1,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,1,3],[0,1,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,1,2],[0,1,3,1]],[[1,0,1,1],[1,2,3,2],[2,3,1,2],[0,1,2,2]],[[1,0,1,2],[1,2,3,2],[2,3,1,2],[1,0,2,1]],[[1,0,1,1],[1,2,4,2],[2,3,1,2],[1,0,2,1]],[[1,0,1,1],[1,2,3,3],[2,3,1,2],[1,0,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,1,3],[1,0,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,1,2],[1,0,3,1]],[[1,0,1,1],[1,2,3,2],[2,3,1,2],[1,0,2,2]],[[1,0,1,1],[1,2,3,2],[3,3,2,0],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,4,2,0],[0,2,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,0],[0,3,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,0],[0,2,3,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,0],[0,2,2,2]],[[1,0,1,1],[1,2,3,2],[3,3,2,0],[1,1,2,1]],[[1,0,1,1],[1,2,3,2],[2,4,2,0],[1,1,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,0],[2,1,2,1]],[[1,0,1,1],[1,2,3,2],[3,3,2,1],[0,2,2,0]],[[1,0,1,1],[1,2,3,2],[2,4,2,1],[0,2,2,0]],[[1,0,1,1],[1,2,3,2],[2,3,2,1],[0,3,2,0]],[[1,0,1,1],[1,2,3,2],[2,3,2,1],[0,2,3,0]],[[1,0,1,1],[1,2,3,2],[3,3,2,1],[1,1,2,0]],[[1,0,1,1],[1,2,3,2],[2,4,2,1],[1,1,2,0]],[[1,0,1,1],[1,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,0,1,2],[1,2,3,2],[2,3,2,2],[0,0,2,1]],[[1,0,1,1],[1,2,4,2],[2,3,2,2],[0,0,2,1]],[[1,0,1,1],[1,2,3,3],[2,3,2,2],[0,0,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,3],[0,0,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,2],[0,0,2,2]],[[1,0,1,2],[1,2,3,2],[2,3,2,2],[0,1,1,1]],[[1,0,1,1],[1,2,4,2],[2,3,2,2],[0,1,1,1]],[[1,0,1,1],[1,2,3,3],[2,3,2,2],[0,1,1,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,3],[0,1,1,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,2],[0,1,1,2]],[[1,0,1,2],[1,2,3,2],[2,3,2,2],[0,1,2,0]],[[1,0,1,1],[1,2,4,2],[2,3,2,2],[0,1,2,0]],[[1,0,1,1],[1,2,3,3],[2,3,2,2],[0,1,2,0]],[[1,0,1,1],[1,2,3,2],[2,3,2,3],[0,1,2,0]],[[1,0,1,2],[1,2,3,2],[2,3,2,2],[0,2,0,1]],[[1,0,1,1],[1,2,4,2],[2,3,2,2],[0,2,0,1]],[[1,0,1,1],[1,2,3,3],[2,3,2,2],[0,2,0,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,3],[0,2,0,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,2],[0,2,0,2]],[[1,0,1,2],[1,2,3,2],[2,3,2,2],[0,2,1,0]],[[1,0,1,1],[1,2,4,2],[2,3,2,2],[0,2,1,0]],[[1,0,1,1],[1,2,3,3],[2,3,2,2],[0,2,1,0]],[[1,0,1,1],[1,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,0,1,2],[1,2,3,2],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[1,2,4,2],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[1,2,3,3],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,3],[1,0,1,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,2],[1,0,1,2]],[[1,0,1,2],[1,2,3,2],[2,3,2,2],[1,0,2,0]],[[1,0,1,1],[1,2,4,2],[2,3,2,2],[1,0,2,0]],[[1,0,1,1],[1,2,3,3],[2,3,2,2],[1,0,2,0]],[[1,0,1,1],[1,2,3,2],[2,3,2,3],[1,0,2,0]],[[1,0,1,2],[1,2,3,2],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[1,2,4,2],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[1,2,3,3],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,3],[1,1,0,1]],[[1,0,1,1],[1,2,3,2],[2,3,2,2],[1,1,0,2]],[[1,0,1,2],[1,2,3,2],[2,3,2,2],[1,1,1,0]],[[1,0,1,1],[1,2,4,2],[2,3,2,2],[1,1,1,0]],[[1,0,1,1],[1,2,3,3],[2,3,2,2],[1,1,1,0]],[[1,0,1,1],[1,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,0],[0,2,4,1],[1,3,2,2],[1,2,1,0]],[[1,2,3,0],[0,2,3,1],[1,3,2,2],[1,2,1,0]],[[1,3,2,0],[0,2,3,1],[1,3,2,2],[1,2,1,0]],[[2,2,2,0],[0,2,3,1],[1,3,2,2],[1,2,1,0]],[[1,2,2,0],[0,2,4,1],[1,3,2,2],[1,2,0,1]],[[1,2,3,0],[0,2,3,1],[1,3,2,2],[1,2,0,1]],[[1,3,2,0],[0,2,3,1],[1,3,2,2],[1,2,0,1]],[[2,2,2,0],[0,2,3,1],[1,3,2,2],[1,2,0,1]],[[1,2,2,0],[0,2,4,1],[1,3,2,2],[1,1,2,0]],[[1,0,1,2],[1,2,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,1,1],[1,2,4,2],[2,3,3,0],[0,1,2,1]],[[1,0,1,1],[1,2,3,3],[2,3,3,0],[0,1,2,1]],[[1,0,1,1],[1,2,3,2],[3,3,3,0],[0,1,2,1]],[[1,0,1,1],[1,2,3,2],[2,4,3,0],[0,1,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,4,0],[0,1,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,0],[0,1,3,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,0],[0,1,2,2]],[[1,0,1,2],[1,2,3,2],[2,3,3,0],[0,2,1,1]],[[1,0,1,1],[1,2,4,2],[2,3,3,0],[0,2,1,1]],[[1,0,1,1],[1,2,3,3],[2,3,3,0],[0,2,1,1]],[[1,0,1,1],[1,2,3,2],[3,3,3,0],[0,2,1,1]],[[1,0,1,1],[1,2,3,2],[2,4,3,0],[0,2,1,1]],[[1,0,1,1],[1,2,3,2],[2,3,4,0],[0,2,1,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,0],[0,3,1,1]],[[1,0,1,2],[1,2,3,2],[2,3,3,0],[1,0,2,1]],[[1,0,1,1],[1,2,4,2],[2,3,3,0],[1,0,2,1]],[[1,0,1,1],[1,2,3,3],[2,3,3,0],[1,0,2,1]],[[1,0,1,1],[1,2,3,2],[3,3,3,0],[1,0,2,1]],[[1,0,1,1],[1,2,3,2],[2,4,3,0],[1,0,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,4,0],[1,0,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,0],[2,0,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,0],[1,0,3,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,0],[1,0,2,2]],[[1,0,1,2],[1,2,3,2],[2,3,3,0],[1,1,1,1]],[[1,0,1,1],[1,2,4,2],[2,3,3,0],[1,1,1,1]],[[1,0,1,1],[1,2,3,3],[2,3,3,0],[1,1,1,1]],[[1,0,1,1],[1,2,3,2],[3,3,3,0],[1,1,1,1]],[[1,0,1,1],[1,2,3,2],[2,4,3,0],[1,1,1,1]],[[1,0,1,1],[1,2,3,2],[2,3,4,0],[1,1,1,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,0],[2,1,1,1]],[[1,0,1,1],[1,2,3,2],[3,3,3,0],[1,2,0,1]],[[1,0,1,1],[1,2,3,2],[2,4,3,0],[1,2,0,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,3,0],[0,2,3,1],[1,3,2,2],[1,1,2,0]],[[1,3,2,0],[0,2,3,1],[1,3,2,2],[1,1,2,0]],[[2,2,2,0],[0,2,3,1],[1,3,2,2],[1,1,2,0]],[[1,2,2,0],[0,2,4,1],[1,3,2,2],[1,1,1,1]],[[1,2,3,0],[0,2,3,1],[1,3,2,2],[1,1,1,1]],[[1,3,2,0],[0,2,3,1],[1,3,2,2],[1,1,1,1]],[[2,2,2,0],[0,2,3,1],[1,3,2,2],[1,1,1,1]],[[1,0,1,2],[1,2,3,2],[2,3,3,1],[0,0,2,1]],[[1,0,1,1],[1,2,4,2],[2,3,3,1],[0,0,2,1]],[[1,0,1,1],[1,2,3,3],[2,3,3,1],[0,0,2,1]],[[1,0,1,1],[1,2,3,2],[2,3,4,1],[0,0,2,1]],[[1,0,1,2],[1,2,3,2],[2,3,3,1],[0,1,1,1]],[[1,0,1,1],[1,2,4,2],[2,3,3,1],[0,1,1,1]],[[1,0,1,1],[1,2,3,3],[2,3,3,1],[0,1,1,1]],[[1,0,1,1],[1,2,3,2],[3,3,3,1],[0,1,1,1]],[[1,0,1,1],[1,2,3,2],[2,4,3,1],[0,1,1,1]],[[1,0,1,1],[1,2,3,2],[2,3,4,1],[0,1,1,1]],[[1,0,1,2],[1,2,3,2],[2,3,3,1],[0,1,2,0]],[[1,0,1,1],[1,2,4,2],[2,3,3,1],[0,1,2,0]],[[1,0,1,1],[1,2,3,3],[2,3,3,1],[0,1,2,0]],[[1,0,1,1],[1,2,3,2],[3,3,3,1],[0,1,2,0]],[[1,0,1,1],[1,2,3,2],[2,4,3,1],[0,1,2,0]],[[1,0,1,1],[1,2,3,2],[2,3,4,1],[0,1,2,0]],[[1,0,1,1],[1,2,3,2],[2,3,3,1],[0,1,3,0]],[[1,0,1,2],[1,2,3,2],[2,3,3,1],[0,2,0,1]],[[1,0,1,1],[1,2,4,2],[2,3,3,1],[0,2,0,1]],[[1,0,1,1],[1,2,3,3],[2,3,3,1],[0,2,0,1]],[[1,0,1,1],[1,2,3,2],[3,3,3,1],[0,2,0,1]],[[1,0,1,1],[1,2,3,2],[2,4,3,1],[0,2,0,1]],[[1,0,1,1],[1,2,3,2],[2,3,4,1],[0,2,0,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,1],[0,3,0,1]],[[1,0,1,2],[1,2,3,2],[2,3,3,1],[0,2,1,0]],[[1,0,1,1],[1,2,4,2],[2,3,3,1],[0,2,1,0]],[[1,0,1,1],[1,2,3,3],[2,3,3,1],[0,2,1,0]],[[1,0,1,1],[1,2,3,2],[3,3,3,1],[0,2,1,0]],[[1,0,1,1],[1,2,3,2],[2,4,3,1],[0,2,1,0]],[[1,0,1,1],[1,2,3,2],[2,3,4,1],[0,2,1,0]],[[1,0,1,1],[1,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[0,2,4,1],[1,3,2,1],[1,2,1,1]],[[1,2,3,0],[0,2,3,1],[1,3,2,1],[1,2,1,1]],[[1,3,2,0],[0,2,3,1],[1,3,2,1],[1,2,1,1]],[[1,0,1,2],[1,2,3,2],[2,3,3,1],[1,0,1,1]],[[1,0,1,1],[1,2,4,2],[2,3,3,1],[1,0,1,1]],[[1,0,1,1],[1,2,3,3],[2,3,3,1],[1,0,1,1]],[[1,0,1,1],[1,2,3,2],[3,3,3,1],[1,0,1,1]],[[1,0,1,1],[1,2,3,2],[2,4,3,1],[1,0,1,1]],[[1,0,1,1],[1,2,3,2],[2,3,4,1],[1,0,1,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,1],[2,0,1,1]],[[1,0,1,2],[1,2,3,2],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[1,2,4,2],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[1,2,3,3],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[1,2,3,2],[3,3,3,1],[1,0,2,0]],[[1,0,1,1],[1,2,3,2],[2,4,3,1],[1,0,2,0]],[[1,0,1,1],[1,2,3,2],[2,3,4,1],[1,0,2,0]],[[1,0,1,1],[1,2,3,2],[2,3,3,1],[2,0,2,0]],[[1,0,1,1],[1,2,3,2],[2,3,3,1],[1,0,3,0]],[[1,0,1,2],[1,2,3,2],[2,3,3,1],[1,1,0,1]],[[1,0,1,1],[1,2,4,2],[2,3,3,1],[1,1,0,1]],[[1,0,1,1],[1,2,3,3],[2,3,3,1],[1,1,0,1]],[[1,0,1,1],[1,2,3,2],[3,3,3,1],[1,1,0,1]],[[1,0,1,1],[1,2,3,2],[2,4,3,1],[1,1,0,1]],[[1,0,1,1],[1,2,3,2],[2,3,4,1],[1,1,0,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,1],[2,1,0,1]],[[1,0,1,2],[1,2,3,2],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[1,2,4,2],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[1,2,3,3],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[1,2,3,2],[3,3,3,1],[1,1,1,0]],[[1,0,1,1],[1,2,3,2],[2,4,3,1],[1,1,1,0]],[[1,0,1,1],[1,2,3,2],[2,3,4,1],[1,1,1,0]],[[1,0,1,1],[1,2,3,2],[2,3,3,1],[2,1,1,0]],[[2,2,2,0],[0,2,3,1],[1,3,2,1],[1,2,1,1]],[[1,2,2,0],[0,2,4,1],[1,3,2,1],[1,1,2,1]],[[1,2,3,0],[0,2,3,1],[1,3,2,1],[1,1,2,1]],[[1,3,2,0],[0,2,3,1],[1,3,2,1],[1,1,2,1]],[[2,2,2,0],[0,2,3,1],[1,3,2,1],[1,1,2,1]],[[1,0,1,1],[1,2,3,2],[3,3,3,1],[1,2,0,0]],[[1,0,1,1],[1,2,3,2],[2,4,3,1],[1,2,0,0]],[[1,0,1,1],[1,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[0,2,4,1],[1,3,1,2],[1,2,2,0]],[[1,2,3,0],[0,2,3,1],[1,3,1,2],[1,2,2,0]],[[1,3,2,0],[0,2,3,1],[1,3,1,2],[1,2,2,0]],[[2,2,2,0],[0,2,3,1],[1,3,1,2],[1,2,2,0]],[[1,2,2,0],[0,2,4,1],[1,3,1,1],[1,2,2,1]],[[1,2,3,0],[0,2,3,1],[1,3,1,1],[1,2,2,1]],[[1,3,2,0],[0,2,3,1],[1,3,1,1],[1,2,2,1]],[[2,2,2,0],[0,2,3,1],[1,3,1,1],[1,2,2,1]],[[1,2,2,0],[0,2,4,1],[1,3,0,2],[1,2,2,1]],[[1,2,3,0],[0,2,3,1],[1,3,0,2],[1,2,2,1]],[[1,3,2,0],[0,2,3,1],[1,3,0,2],[1,2,2,1]],[[2,2,2,0],[0,2,3,1],[1,3,0,2],[1,2,2,1]],[[1,0,1,2],[1,2,3,2],[2,3,3,2],[0,1,0,1]],[[1,0,1,1],[1,2,4,2],[2,3,3,2],[0,1,0,1]],[[1,0,1,1],[1,2,3,3],[2,3,3,2],[0,1,0,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,0],[0,2,3,1],[1,2,3,3],[1,2,1,0]],[[1,2,2,0],[0,2,3,1],[1,2,4,2],[1,2,1,0]],[[1,2,2,0],[0,2,4,1],[1,2,3,2],[1,2,1,0]],[[1,2,3,0],[0,2,3,1],[1,2,3,2],[1,2,1,0]],[[1,3,2,0],[0,2,3,1],[1,2,3,2],[1,2,1,0]],[[2,2,2,0],[0,2,3,1],[1,2,3,2],[1,2,1,0]],[[1,2,2,0],[0,2,3,1],[1,2,3,2],[1,2,0,2]],[[1,2,2,0],[0,2,3,1],[1,2,3,3],[1,2,0,1]],[[1,2,2,0],[0,2,3,1],[1,2,4,2],[1,2,0,1]],[[1,2,2,0],[0,2,4,1],[1,2,3,2],[1,2,0,1]],[[1,2,3,0],[0,2,3,1],[1,2,3,2],[1,2,0,1]],[[1,3,2,0],[0,2,3,1],[1,2,3,2],[1,2,0,1]],[[2,2,2,0],[0,2,3,1],[1,2,3,2],[1,2,0,1]],[[1,2,2,0],[0,2,3,1],[1,2,3,2],[1,1,3,0]],[[1,2,2,0],[0,2,3,1],[1,2,3,3],[1,1,2,0]],[[1,2,2,0],[0,2,3,1],[1,2,4,2],[1,1,2,0]],[[1,2,2,0],[0,2,4,1],[1,2,3,2],[1,1,2,0]],[[1,2,3,0],[0,2,3,1],[1,2,3,2],[1,1,2,0]],[[1,3,2,0],[0,2,3,1],[1,2,3,2],[1,1,2,0]],[[2,2,2,0],[0,2,3,1],[1,2,3,2],[1,1,2,0]],[[1,2,2,0],[0,2,3,1],[1,2,3,2],[1,1,1,2]],[[1,2,2,0],[0,2,3,1],[1,2,3,3],[1,1,1,1]],[[1,0,1,2],[1,2,3,2],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[1,2,4,2],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[1,2,3,3],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[1,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,0],[0,2,3,1],[1,2,4,2],[1,1,1,1]],[[1,2,2,0],[0,2,4,1],[1,2,3,2],[1,1,1,1]],[[1,2,3,0],[0,2,3,1],[1,2,3,2],[1,1,1,1]],[[1,3,2,0],[0,2,3,1],[1,2,3,2],[1,1,1,1]],[[2,2,2,0],[0,2,3,1],[1,2,3,2],[1,1,1,1]],[[1,2,2,0],[0,2,3,1],[1,2,3,2],[1,0,2,2]],[[1,2,2,0],[0,2,3,1],[1,2,3,3],[1,0,2,1]],[[1,2,2,0],[0,2,3,1],[1,2,4,2],[1,0,2,1]],[[1,2,2,0],[0,2,4,1],[1,2,3,2],[1,0,2,1]],[[1,2,3,0],[0,2,3,1],[1,2,3,2],[1,0,2,1]],[[1,3,2,0],[0,2,3,1],[1,2,3,2],[1,0,2,1]],[[1,2,2,0],[0,2,3,1],[1,2,4,1],[1,2,1,1]],[[1,2,2,0],[0,2,4,1],[1,2,3,1],[1,2,1,1]],[[1,2,3,0],[0,2,3,1],[1,2,3,1],[1,2,1,1]],[[1,3,2,0],[0,2,3,1],[1,2,3,1],[1,2,1,1]],[[2,2,2,0],[0,2,3,1],[1,2,3,1],[1,2,1,1]],[[1,2,2,0],[0,2,3,1],[1,2,3,1],[1,1,2,2]],[[1,2,2,0],[0,2,3,1],[1,2,3,1],[1,1,3,1]],[[1,2,2,0],[0,2,3,1],[1,2,4,1],[1,1,2,1]],[[1,2,2,0],[0,2,4,1],[1,2,3,1],[1,1,2,1]],[[1,2,3,0],[0,2,3,1],[1,2,3,1],[1,1,2,1]],[[1,3,2,0],[0,2,3,1],[1,2,3,1],[1,1,2,1]],[[2,2,2,0],[0,2,3,1],[1,2,3,1],[1,1,2,1]],[[1,2,2,0],[0,2,3,1],[1,2,2,2],[1,1,2,2]],[[1,2,2,0],[0,2,3,1],[1,2,2,2],[1,1,3,1]],[[1,2,2,0],[0,2,3,1],[1,2,2,3],[1,1,2,1]],[[1,2,2,0],[0,2,3,1],[1,1,3,2],[1,2,3,0]],[[1,2,2,0],[0,2,3,1],[1,1,3,2],[1,3,2,0]],[[1,2,2,0],[0,2,3,1],[1,1,3,2],[2,2,2,0]],[[1,2,2,0],[0,2,3,1],[1,1,3,3],[1,2,2,0]],[[1,2,2,0],[0,2,3,1],[1,1,4,2],[1,2,2,0]],[[1,2,2,0],[0,2,4,1],[1,1,3,2],[1,2,2,0]],[[1,2,3,0],[0,2,3,1],[1,1,3,2],[1,2,2,0]],[[1,3,2,0],[0,2,3,1],[1,1,3,2],[1,2,2,0]],[[2,2,2,0],[0,2,3,1],[1,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,2,3,1],[1,1,3,2],[1,2,1,2]],[[1,2,2,0],[0,2,3,1],[1,1,3,3],[1,2,1,1]],[[1,2,2,0],[0,2,3,1],[1,1,4,2],[1,2,1,1]],[[1,2,2,0],[0,2,4,1],[1,1,3,2],[1,2,1,1]],[[1,2,3,0],[0,2,3,1],[1,1,3,2],[1,2,1,1]],[[1,3,2,0],[0,2,3,1],[1,1,3,2],[1,2,1,1]],[[2,2,2,0],[0,2,3,1],[1,1,3,2],[1,2,1,1]],[[1,2,2,0],[0,2,3,1],[1,1,3,1],[1,2,2,2]],[[1,2,2,0],[0,2,3,1],[1,1,3,1],[1,2,3,1]],[[1,2,2,0],[0,2,3,1],[1,1,3,1],[1,3,2,1]],[[1,2,2,0],[0,2,3,1],[1,1,3,1],[2,2,2,1]],[[1,2,2,0],[0,2,3,1],[1,1,4,1],[1,2,2,1]],[[1,2,2,0],[0,2,4,1],[1,1,3,1],[1,2,2,1]],[[1,2,3,0],[0,2,3,1],[1,1,3,1],[1,2,2,1]],[[1,3,2,0],[0,2,3,1],[1,1,3,1],[1,2,2,1]],[[2,2,2,0],[0,2,3,1],[1,1,3,1],[1,2,2,1]],[[1,2,2,0],[0,2,3,1],[1,1,2,2],[1,2,2,2]],[[1,2,2,0],[0,2,3,1],[1,1,2,2],[1,2,3,1]],[[1,2,2,0],[0,2,3,1],[1,1,2,2],[1,3,2,1]],[[1,2,2,0],[0,2,3,1],[1,1,2,2],[2,2,2,1]],[[1,2,2,0],[0,2,3,1],[1,1,2,3],[1,2,2,1]],[[1,2,2,0],[0,2,3,1],[1,0,3,2],[1,2,2,2]],[[1,2,2,0],[0,2,3,1],[1,0,3,2],[1,2,3,1]],[[1,2,2,0],[0,2,3,1],[1,0,3,3],[1,2,2,1]],[[1,0,1,1],[1,3,0,1],[1,4,3,2],[1,2,2,1]],[[1,0,1,1],[1,3,0,1],[1,3,3,2],[2,2,2,1]],[[1,0,1,1],[1,3,0,1],[1,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,0,1],[1,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,0,1],[1,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,0,1],[3,2,3,2],[1,2,2,1]],[[1,0,1,1],[1,3,0,1],[2,2,3,2],[2,2,2,1]],[[1,0,1,1],[1,3,0,1],[2,2,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,0,1],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,0,1],[2,2,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,0,1],[3,3,3,2],[0,2,2,1]],[[1,0,1,1],[1,3,0,1],[2,4,3,2],[0,2,2,1]],[[1,0,1,1],[1,3,0,1],[2,3,3,2],[0,3,2,1]],[[1,0,1,1],[1,3,0,1],[2,3,3,2],[0,2,3,1]],[[1,0,1,1],[1,3,0,1],[2,3,3,2],[0,2,2,2]],[[1,0,1,1],[1,3,0,1],[3,3,3,2],[1,1,2,1]],[[1,0,1,1],[1,3,0,1],[2,4,3,2],[1,1,2,1]],[[1,0,1,1],[1,3,0,1],[2,3,3,2],[2,1,2,1]],[[1,0,1,1],[1,3,0,2],[0,3,3,3],[1,2,2,1]],[[1,0,1,1],[1,3,0,2],[0,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,0,2],[0,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,0,2],[0,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,0,2],[1,2,3,3],[1,2,2,1]],[[1,0,1,1],[1,3,0,2],[1,2,3,2],[2,2,2,1]],[[1,0,1,1],[1,3,0,2],[1,2,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,0,2],[1,2,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,0,2],[1,2,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,0,2],[1,4,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,0,2],[1,3,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,0,2],[1,3,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,0,2],[1,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,0,2],[1,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,0,2],[1,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,0,2],[1,4,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,0,2],[1,3,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,0,2],[1,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,0,2],[1,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,0,2],[1,3,3,1],[1,2,2,2]],[[1,0,1,1],[1,3,0,2],[1,3,3,3],[1,1,2,1]],[[1,0,1,1],[1,3,0,2],[1,3,3,2],[1,1,3,1]],[[1,0,1,1],[1,3,0,2],[1,3,3,2],[1,1,2,2]],[[1,0,1,1],[1,3,0,2],[1,4,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,0,2],[1,3,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,0,2],[1,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,0,2],[1,3,3,2],[1,2,3,0]],[[1,0,1,1],[1,3,0,2],[3,1,3,2],[1,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,1,3,3],[1,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,1,3,2],[2,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,1,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,0,2],[2,1,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,0,2],[2,1,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,0,2],[3,2,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,2,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,0,2],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,0,2],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,0,2],[3,2,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,0,2],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,0,2],[2,2,3,1],[1,2,2,2]],[[1,0,1,1],[1,3,0,2],[2,2,3,3],[0,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,2,3,2],[0,3,2,1]],[[1,0,1,1],[1,3,0,2],[2,2,3,2],[0,2,3,1]],[[1,0,1,1],[1,3,0,2],[2,2,3,2],[0,2,2,2]],[[1,0,1,1],[1,3,0,2],[3,2,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,0,2],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,0,2],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,0,2],[2,2,3,2],[1,2,3,0]],[[1,0,1,1],[1,3,0,2],[3,3,2,2],[0,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,4,2,2],[0,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,3,2,3],[0,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,3,2,2],[0,3,2,1]],[[1,0,1,1],[1,3,0,2],[2,3,2,2],[0,2,3,1]],[[1,0,1,1],[1,3,0,2],[2,3,2,2],[0,2,2,2]],[[1,0,1,1],[1,3,0,2],[3,3,2,2],[1,1,2,1]],[[1,0,1,1],[1,3,0,2],[2,4,2,2],[1,1,2,1]],[[1,0,1,1],[1,3,0,2],[2,3,2,2],[2,1,2,1]],[[1,0,1,1],[1,3,0,2],[3,3,3,1],[0,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,4,3,1],[0,2,2,1]],[[1,0,1,1],[1,3,0,2],[2,3,3,1],[0,3,2,1]],[[1,0,1,1],[1,3,0,2],[2,3,3,1],[0,2,3,1]],[[1,0,1,1],[1,3,0,2],[2,3,3,1],[0,2,2,2]],[[1,0,1,1],[1,3,0,2],[3,3,3,1],[1,1,2,1]],[[1,0,1,1],[1,3,0,2],[2,4,3,1],[1,1,2,1]],[[1,0,1,1],[1,3,0,2],[2,3,3,1],[2,1,2,1]],[[1,0,1,1],[1,3,0,2],[2,3,3,3],[0,1,2,1]],[[1,0,1,1],[1,3,0,2],[2,3,3,2],[0,1,3,1]],[[1,0,1,1],[1,3,0,2],[2,3,3,2],[0,1,2,2]],[[1,0,1,1],[1,3,0,2],[3,3,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,0,2],[2,4,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,0,2],[2,3,3,2],[0,3,2,0]],[[1,0,1,1],[1,3,0,2],[2,3,3,2],[0,2,3,0]],[[1,0,1,1],[1,3,0,2],[2,3,3,3],[1,0,2,1]],[[1,0,1,1],[1,3,0,2],[2,3,3,2],[1,0,3,1]],[[1,0,1,1],[1,3,0,2],[2,3,3,2],[1,0,2,2]],[[1,0,1,1],[1,3,0,2],[3,3,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,0,2],[2,4,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,0,2],[2,3,3,2],[2,1,2,0]],[[1,0,1,1],[1,3,1,0],[1,4,3,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,0],[1,3,3,2],[2,2,2,1]],[[1,0,1,1],[1,3,1,0],[1,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,1,0],[1,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,1,0],[1,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,1,0],[3,2,3,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,0],[2,2,3,2],[2,2,2,1]],[[1,0,1,1],[1,3,1,0],[2,2,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,1,0],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,1,0],[2,2,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,1,0],[3,3,3,2],[0,2,2,1]],[[1,0,1,1],[1,3,1,0],[2,4,3,2],[0,2,2,1]],[[1,0,1,1],[1,3,1,0],[2,3,3,2],[0,3,2,1]],[[1,0,1,1],[1,3,1,0],[2,3,3,2],[0,2,3,1]],[[1,0,1,1],[1,3,1,0],[2,3,3,2],[0,2,2,2]],[[1,0,1,1],[1,3,1,0],[3,3,3,2],[1,1,2,1]],[[1,0,1,1],[1,3,1,0],[2,4,3,2],[1,1,2,1]],[[1,0,1,1],[1,3,1,0],[2,3,3,2],[2,1,2,1]],[[1,0,1,1],[1,3,1,1],[1,4,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,1,1],[1,3,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,1,1],[1,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,1,1],[1,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,1,1],[1,3,3,1],[1,2,2,2]],[[1,0,1,1],[1,3,1,1],[1,4,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,1],[1,3,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,1,1],[1,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,1,1],[1,3,3,2],[1,2,3,0]],[[1,0,1,1],[1,3,1,1],[3,2,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,1,1],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,1,1],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,1,1],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,1,1],[2,2,3,1],[1,2,2,2]],[[1,0,1,1],[1,3,1,1],[3,2,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,1],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,1,1],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,1,1],[2,2,3,2],[1,2,3,0]],[[1,0,1,1],[1,3,1,1],[3,3,3,1],[0,2,2,1]],[[1,0,1,1],[1,3,1,1],[2,4,3,1],[0,2,2,1]],[[1,0,1,1],[1,3,1,1],[2,3,3,1],[0,3,2,1]],[[1,0,1,1],[1,3,1,1],[2,3,3,1],[0,2,3,1]],[[1,0,1,1],[1,3,1,1],[2,3,3,1],[0,2,2,2]],[[1,0,1,1],[1,3,1,1],[3,3,3,1],[1,1,2,1]],[[1,0,1,1],[1,3,1,1],[2,4,3,1],[1,1,2,1]],[[1,0,1,1],[1,3,1,1],[2,3,3,1],[2,1,2,1]],[[1,0,1,1],[1,3,1,1],[3,3,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,1,1],[2,4,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,1,1],[2,3,3,2],[0,3,2,0]],[[1,0,1,1],[1,3,1,1],[2,3,3,2],[0,2,3,0]],[[1,0,1,1],[1,3,1,1],[3,3,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,1,1],[2,4,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,1,1],[2,3,3,2],[2,1,2,0]],[[1,0,1,2],[1,3,1,2],[0,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,3],[0,3,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[0,3,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[0,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,1,2],[0,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,1,2],[0,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,1,2],[0,3,4,1],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[0,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,1,2],[0,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,1,2],[0,3,3,1],[1,2,2,2]],[[1,0,1,2],[1,3,1,2],[0,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,1,3],[0,3,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[0,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[0,3,3,3],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[0,3,3,2],[1,2,1,2]],[[1,0,1,2],[1,3,1,2],[0,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,3],[0,3,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[0,3,4,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[0,3,3,3],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[0,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,1,2],[0,3,3,2],[1,2,3,0]],[[1,0,1,2],[1,3,1,2],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,3],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,2,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,2,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,2,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,1,2],[1,2,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,1,2],[1,2,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,1,2],[1,2,4,1],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,2,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,2,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,1,2],[1,2,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,1,2],[1,2,3,1],[1,2,2,2]],[[1,0,1,2],[1,3,1,2],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,1,3],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[1,2,4,2],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[1,2,3,3],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[1,2,3,2],[1,2,1,2]],[[1,0,1,2],[1,3,1,2],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,3],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[1,2,4,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[1,2,3,3],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[1,2,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,1,2],[1,2,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,1,2],[1,2,3,2],[1,2,3,0]],[[1,0,1,2],[1,3,1,2],[1,3,1,2],[1,2,2,1]],[[1,0,1,1],[1,4,1,2],[1,3,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,3],[1,3,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,4,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,1,3],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,1,2],[2,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,1,2],[1,3,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,1,2],[1,2,3,1]],[[1,0,1,1],[1,3,1,2],[1,3,1,2],[1,2,2,2]],[[1,0,1,1],[1,4,1,2],[1,3,2,1],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,4,2,1],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,2,1],[2,2,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,2,1],[1,3,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,2,1],[1,2,3,1]],[[1,0,1,1],[1,3,1,2],[1,3,2,1],[1,2,2,2]],[[1,0,1,2],[1,3,1,2],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[1,3,1,3],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,2,3],[1,1,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,2,2],[1,1,3,1]],[[1,0,1,1],[1,3,1,2],[1,3,2,2],[1,1,2,2]],[[1,0,1,1],[1,4,1,2],[1,3,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[1,4,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[1,3,2,2],[2,2,2,0]],[[1,0,1,1],[1,3,1,2],[1,3,2,2],[1,3,2,0]],[[1,0,1,1],[1,3,1,2],[1,3,2,2],[1,2,3,0]],[[1,0,1,1],[1,4,1,2],[1,3,3,1],[1,1,2,1]],[[1,0,1,1],[1,3,1,2],[1,4,3,1],[1,1,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,4,1],[1,1,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,1],[1,1,3,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,1],[1,1,2,2]],[[1,0,1,1],[1,4,1,2],[1,3,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[1,4,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[1,3,4,1],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,1],[2,2,1,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,1],[1,3,1,1]],[[1,0,1,2],[1,3,1,2],[1,3,3,2],[1,0,2,1]],[[1,0,1,1],[1,3,1,3],[1,3,3,2],[1,0,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,4,2],[1,0,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,3],[1,0,2,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,2],[1,0,2,2]],[[1,0,1,2],[1,3,1,2],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[1,4,1,2],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,1,3],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,1,2],[1,4,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,1,2],[1,3,4,2],[1,1,1,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,3],[1,1,1,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,2],[1,1,1,2]],[[1,0,1,2],[1,3,1,2],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[1,4,1,2],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,1,3],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,1,2],[1,4,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,1,2],[1,3,4,2],[1,1,2,0]],[[1,0,1,1],[1,3,1,2],[1,3,3,3],[1,1,2,0]],[[1,0,1,1],[1,3,1,2],[1,3,3,2],[1,1,3,0]],[[1,0,1,2],[1,3,1,2],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[1,4,1,2],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[1,3,1,3],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[1,3,1,2],[1,4,3,2],[1,2,0,1]],[[1,0,1,1],[1,3,1,2],[1,3,4,2],[1,2,0,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,3],[1,2,0,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,2],[2,2,0,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,2],[1,3,0,1]],[[1,0,1,1],[1,3,1,2],[1,3,3,2],[1,2,0,2]],[[1,0,1,2],[1,3,1,2],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[1,4,1,2],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[1,3,1,3],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[1,3,1,2],[1,4,3,2],[1,2,1,0]],[[1,0,1,1],[1,3,1,2],[1,3,4,2],[1,2,1,0]],[[1,0,1,1],[1,3,1,2],[1,3,3,3],[1,2,1,0]],[[1,0,1,1],[1,3,1,2],[1,3,3,2],[2,2,1,0]],[[1,0,1,1],[1,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,0,1,2],[1,3,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,3],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[3,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,1,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,1,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,1,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,1,2],[2,1,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,1,2],[2,1,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,1,2],[3,1,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,1,4,1],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,1,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,1,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,1,2],[2,1,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,1,2],[2,1,3,1],[1,2,2,2]],[[1,0,1,2],[1,3,1,2],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,1,3],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[2,1,4,2],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[2,1,3,3],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[2,1,3,2],[1,2,1,2]],[[1,0,1,2],[1,3,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,3],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[3,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,1,3,3],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,1,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,1,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,1,2],[2,1,3,2],[1,2,3,0]],[[1,0,1,2],[1,3,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,3],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[3,2,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,1,3],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,1,2],[2,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,1,2],[1,3,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,1,2],[1,2,3,1]],[[1,0,1,1],[1,3,1,2],[2,2,1,2],[1,2,2,2]],[[1,0,1,1],[1,3,1,2],[3,2,2,1],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,2,1],[2,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,2,1],[1,3,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,2,1],[1,2,3,1]],[[1,0,1,1],[1,3,1,2],[2,2,2,1],[1,2,2,2]],[[1,0,1,2],[1,3,1,2],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[1,3,1,3],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,2,3],[0,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,2,2],[0,3,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,2,2],[0,2,3,1]],[[1,0,1,1],[1,3,1,2],[2,2,2,2],[0,2,2,2]],[[1,0,1,1],[1,3,1,2],[3,2,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,2,2,2],[2,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,2,2,2],[1,3,2,0]],[[1,0,1,1],[1,3,1,2],[2,2,2,2],[1,2,3,0]],[[1,0,1,1],[1,3,1,2],[2,2,4,1],[0,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,3,1],[0,3,2,1]],[[1,0,1,1],[1,3,1,2],[2,2,3,1],[0,2,3,1]],[[1,0,1,1],[1,3,1,2],[2,2,3,1],[0,2,2,2]],[[1,0,1,1],[1,3,1,2],[3,2,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,1,2],[2,2,3,1],[2,2,1,1]],[[1,0,1,1],[1,3,1,2],[2,2,3,1],[1,3,1,1]],[[1,0,1,2],[1,3,1,2],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[1,3,1,3],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[1,3,1,2],[2,2,4,2],[0,2,1,1]],[[1,0,1,1],[1,3,1,2],[2,2,3,3],[0,2,1,1]],[[1,0,1,1],[1,3,1,2],[2,2,3,2],[0,2,1,2]],[[1,0,1,2],[1,3,1,2],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,1,3],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,2,4,2],[0,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,2,3,3],[0,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,2,3,2],[0,3,2,0]],[[1,0,1,1],[1,3,1,2],[2,2,3,2],[0,2,3,0]],[[1,0,1,1],[1,3,1,2],[3,2,3,2],[1,2,0,1]],[[1,0,1,1],[1,3,1,2],[2,2,3,2],[2,2,0,1]],[[1,0,1,1],[1,3,1,2],[2,2,3,2],[1,3,0,1]],[[1,0,1,1],[1,3,1,2],[3,2,3,2],[1,2,1,0]],[[1,0,1,1],[1,3,1,2],[2,2,3,2],[2,2,1,0]],[[1,0,1,1],[1,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,0,1,1],[1,3,1,2],[3,3,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,0,2],[2,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,0,2],[1,3,2,1]],[[1,0,1,1],[1,3,1,2],[3,3,1,1],[1,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,1,1],[2,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,1,1],[1,3,2,1]],[[1,0,1,2],[1,3,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[1,4,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[1,3,1,3],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[1,3,1,2],[3,3,1,2],[0,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,4,1,2],[0,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,1,3],[0,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,1,2],[0,3,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,1,2],[0,2,3,1]],[[1,0,1,1],[1,3,1,2],[2,3,1,2],[0,2,2,2]],[[1,0,1,1],[1,4,1,2],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[1,3,1,2],[3,3,1,2],[1,1,2,1]],[[1,0,1,1],[1,3,1,2],[2,4,1,2],[1,1,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,1,2],[2,1,2,1]],[[1,0,1,1],[1,3,1,2],[3,3,1,2],[1,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,1,2],[2,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,1,2],[1,3,2,0]],[[1,0,1,1],[1,4,1,2],[2,3,2,1],[0,2,2,1]],[[1,0,1,1],[1,3,1,2],[3,3,2,1],[0,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,4,2,1],[0,2,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,2,1],[0,3,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,2,1],[0,2,3,1]],[[1,0,1,1],[1,3,1,2],[2,3,2,1],[0,2,2,2]],[[1,0,1,1],[1,4,1,2],[2,3,2,1],[1,1,2,1]],[[1,0,1,1],[1,3,1,2],[3,3,2,1],[1,1,2,1]],[[1,0,1,1],[1,3,1,2],[2,4,2,1],[1,1,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,2,1],[2,1,2,1]],[[1,0,1,2],[1,3,1,2],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[1,3,1,3],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,2,3],[0,1,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,2,2],[0,1,3,1]],[[1,0,1,1],[1,3,1,2],[2,3,2,2],[0,1,2,2]],[[1,0,1,1],[1,4,1,2],[2,3,2,2],[0,2,2,0]],[[1,0,1,1],[1,3,1,2],[3,3,2,2],[0,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,4,2,2],[0,2,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,2,2],[0,3,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,2,2],[0,2,3,0]],[[1,0,1,2],[1,3,1,2],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[1,3,1,3],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,2,3],[1,0,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,2,2],[1,0,3,1]],[[1,0,1,1],[1,3,1,2],[2,3,2,2],[1,0,2,2]],[[1,0,1,1],[1,4,1,2],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[1,3,1,2],[3,3,2,2],[1,1,2,0]],[[1,0,1,1],[1,3,1,2],[2,4,2,2],[1,1,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,0,1,1],[1,4,1,2],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[1,3,1,2],[3,3,3,1],[0,1,2,1]],[[1,0,1,1],[1,3,1,2],[2,4,3,1],[0,1,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,4,1],[0,1,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,1],[0,1,3,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,1],[0,1,2,2]],[[1,0,1,1],[1,4,1,2],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[1,3,1,2],[3,3,3,1],[0,2,1,1]],[[1,0,1,1],[1,3,1,2],[2,4,3,1],[0,2,1,1]],[[1,0,1,1],[1,3,1,2],[2,3,4,1],[0,2,1,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,1],[0,3,1,1]],[[1,0,1,1],[1,4,1,2],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[1,3,1,2],[3,3,3,1],[1,0,2,1]],[[1,0,1,1],[1,3,1,2],[2,4,3,1],[1,0,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,4,1],[1,0,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,1],[2,0,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,1],[1,0,3,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,1],[1,0,2,2]],[[1,0,1,1],[1,4,1,2],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,1,2],[3,3,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,1,2],[2,4,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,1,2],[2,3,4,1],[1,1,1,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,1],[2,1,1,1]],[[1,0,1,1],[1,3,1,2],[3,3,3,1],[1,2,0,1]],[[1,0,1,1],[1,3,1,2],[2,4,3,1],[1,2,0,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,0,1,2],[1,3,1,2],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[1,3,1,3],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,4,2],[0,0,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,3],[0,0,2,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[0,0,2,2]],[[1,0,1,2],[1,3,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,4,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,1,3],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,1,2],[3,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,1,2],[2,4,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,1,2],[2,3,4,2],[0,1,1,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,3],[0,1,1,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[0,1,1,2]],[[1,0,1,2],[1,3,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,4,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,1,3],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,1,2],[3,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,1,2],[2,4,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,4,2],[0,1,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,3,3],[0,1,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[0,1,3,0]],[[1,0,1,2],[1,3,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,4,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,3,1,3],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,3,1,2],[3,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,3,1,2],[2,4,3,2],[0,2,0,1]],[[1,0,1,1],[1,3,1,2],[2,3,4,2],[0,2,0,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,3],[0,2,0,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[0,3,0,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[0,2,0,2]],[[1,0,1,2],[1,3,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,4,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,3,1,3],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,3,1,2],[3,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,3,1,2],[2,4,3,2],[0,2,1,0]],[[1,0,1,1],[1,3,1,2],[2,3,4,2],[0,2,1,0]],[[1,0,1,1],[1,3,1,2],[2,3,3,3],[0,2,1,0]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,2,3,0],[2,2,3,2],[1,0,2,2]],[[1,2,2,0],[0,2,3,0],[2,2,3,2],[1,0,3,1]],[[1,2,2,0],[0,2,3,0],[2,2,4,2],[1,0,2,1]],[[1,0,1,2],[1,3,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,4,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,1,3],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,1,2],[3,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,1,2],[2,4,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,1,2],[2,3,4,2],[1,0,1,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,3],[1,0,1,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[2,0,1,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[1,0,1,2]],[[1,0,1,2],[1,3,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,4,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,1,3],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,1,2],[3,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,1,2],[2,4,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,4,2],[1,0,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,3,3],[1,0,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[2,0,2,0]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[1,0,3,0]],[[1,0,1,2],[1,3,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,4,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,1,3],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,1,2],[3,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,1,2],[2,4,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,1,2],[2,3,4,2],[1,1,0,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,3],[1,1,0,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[2,1,0,1]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[1,1,0,2]],[[1,0,1,2],[1,3,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,4,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,3,1,3],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,3,1,2],[3,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,3,1,2],[2,4,3,2],[1,1,1,0]],[[1,0,1,1],[1,3,1,2],[2,3,4,2],[1,1,1,0]],[[1,0,1,1],[1,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,2,3,0],[2,2,3,2],[0,1,2,2]],[[1,2,2,0],[0,2,3,0],[2,2,3,2],[0,1,3,1]],[[1,2,2,0],[0,2,3,0],[2,2,4,2],[0,1,2,1]],[[1,0,1,1],[1,4,1,2],[2,3,3,2],[1,2,0,0]],[[1,0,1,1],[1,3,1,2],[3,3,3,2],[1,2,0,0]],[[1,0,1,1],[1,3,1,2],[2,4,3,2],[1,2,0,0]],[[1,0,1,1],[1,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,2,3,0],[2,1,3,2],[0,2,2,2]],[[1,2,2,0],[0,2,3,0],[2,1,3,2],[0,2,3,1]],[[1,2,2,0],[0,2,3,0],[2,1,3,2],[0,3,2,1]],[[1,2,2,0],[0,2,3,0],[2,1,4,2],[0,2,2,1]],[[1,2,2,0],[0,2,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[0,2,3,0],[2,0,3,2],[1,2,3,1]],[[1,2,2,0],[0,2,3,0],[2,0,3,2],[1,3,2,1]],[[1,2,2,0],[0,2,3,0],[2,0,3,2],[2,2,2,1]],[[1,2,2,0],[0,2,3,0],[2,0,4,2],[1,2,2,1]],[[1,2,2,0],[0,2,3,0],[3,0,3,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,0],[0,3,4,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,0],[0,3,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,0],[0,3,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,0],[0,3,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,0],[1,2,4,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,0],[1,2,3,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,0],[1,2,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,0],[1,2,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,0],[1,2,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,0],[1,4,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,0],[1,3,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,0],[1,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,0],[1,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,0],[1,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,0],[1,4,3,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,0],[1,3,4,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,0],[1,3,3,2],[1,1,3,1]],[[1,0,1,1],[1,3,2,0],[1,3,3,2],[1,1,2,2]],[[1,0,1,1],[1,3,2,0],[1,4,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,0],[1,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,0],[1,3,3,2],[2,2,1,1]],[[1,0,1,1],[1,3,2,0],[1,3,3,2],[1,3,1,1]],[[1,0,1,1],[1,3,2,0],[3,1,3,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,0],[2,1,4,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,0],[2,1,3,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,0],[2,1,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,0],[2,1,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,0],[2,1,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,0],[3,2,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,0],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,0],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,0],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,0],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,0],[2,2,4,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,0],[2,2,3,2],[0,3,2,1]],[[1,0,1,1],[1,3,2,0],[2,2,3,2],[0,2,3,1]],[[1,0,1,1],[1,3,2,0],[2,2,3,2],[0,2,2,2]],[[1,0,1,1],[1,3,2,0],[3,2,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,0],[2,2,3,2],[2,2,1,1]],[[1,0,1,1],[1,3,2,0],[2,2,3,2],[1,3,1,1]],[[1,0,1,1],[1,3,2,0],[3,3,2,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,0],[2,4,2,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,0],[2,3,2,2],[0,3,2,1]],[[1,0,1,1],[1,3,2,0],[2,3,2,2],[0,2,3,1]],[[1,0,1,1],[1,3,2,0],[2,3,2,2],[0,2,2,2]],[[1,0,1,1],[1,3,2,0],[3,3,2,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,0],[2,4,2,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,0],[2,3,2,2],[2,1,2,1]],[[1,0,1,1],[1,3,2,0],[3,3,3,2],[0,1,2,1]],[[1,0,1,1],[1,3,2,0],[2,4,3,2],[0,1,2,1]],[[1,0,1,1],[1,3,2,0],[2,3,4,2],[0,1,2,1]],[[1,0,1,1],[1,3,2,0],[2,3,3,2],[0,1,3,1]],[[1,0,1,1],[1,3,2,0],[2,3,3,2],[0,1,2,2]],[[1,0,1,1],[1,3,2,0],[3,3,3,2],[0,2,1,1]],[[1,0,1,1],[1,3,2,0],[2,4,3,2],[0,2,1,1]],[[1,0,1,1],[1,3,2,0],[2,3,4,2],[0,2,1,1]],[[1,0,1,1],[1,3,2,0],[2,3,3,2],[0,3,1,1]],[[1,0,1,1],[1,3,2,0],[3,3,3,2],[1,0,2,1]],[[1,0,1,1],[1,3,2,0],[2,4,3,2],[1,0,2,1]],[[1,0,1,1],[1,3,2,0],[2,3,4,2],[1,0,2,1]],[[1,0,1,1],[1,3,2,0],[2,3,3,2],[2,0,2,1]],[[1,0,1,1],[1,3,2,0],[2,3,3,2],[1,0,3,1]],[[1,0,1,1],[1,3,2,0],[2,3,3,2],[1,0,2,2]],[[1,0,1,1],[1,3,2,0],[3,3,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,2,0],[2,4,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,2,0],[2,3,4,2],[1,1,1,1]],[[1,0,1,1],[1,3,2,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,0],[0,2,3,0],[1,2,3,2],[1,1,2,2]],[[1,2,2,0],[0,2,3,0],[1,2,3,2],[1,1,3,1]],[[1,2,2,0],[0,2,3,0],[1,2,4,2],[1,1,2,1]],[[1,2,2,0],[0,2,3,0],[1,1,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,1],[0,3,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[0,3,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[0,3,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,1],[0,3,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,1],[0,3,4,1],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[0,3,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[0,3,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,2,1],[0,3,3,1],[1,2,2,2]],[[1,0,1,1],[1,3,2,1],[0,3,4,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,1],[0,3,3,3],[1,2,1,1]],[[1,0,1,1],[1,3,2,1],[0,3,3,2],[1,2,1,2]],[[1,0,1,1],[1,3,2,1],[0,3,4,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,1],[0,3,3,3],[1,2,2,0]],[[1,0,1,1],[1,3,2,1],[0,3,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,2,1],[0,3,3,2],[1,2,3,0]],[[1,0,1,1],[1,3,2,1],[1,2,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,2,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,2,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[1,2,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,1],[1,2,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,1],[1,2,4,1],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,2,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,2,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[1,2,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,2,1],[1,2,3,1],[1,2,2,2]],[[1,0,1,1],[1,3,2,1],[1,2,4,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,1],[1,2,3,3],[1,2,1,1]],[[1,0,1,1],[1,3,2,1],[1,2,3,2],[1,2,1,2]],[[1,0,1,1],[1,3,2,1],[1,2,4,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,1],[1,2,3,3],[1,2,2,0]],[[1,0,1,1],[1,3,2,1],[1,2,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,2,1],[1,2,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,2,1],[1,2,3,2],[1,2,3,0]],[[1,0,1,1],[1,4,2,1],[1,3,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,4,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,1,3],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,1,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,1,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,1,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,1],[1,3,1,2],[1,2,2,2]],[[1,0,1,1],[1,4,2,1],[1,3,2,1],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,4,2,1],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,2,1],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,2,1],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,2,1],[1,2,3,1]],[[1,0,1,1],[1,3,2,1],[1,3,2,1],[1,2,2,2]],[[1,0,1,1],[1,3,2,1],[1,3,2,3],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,2,2],[1,1,3,1]],[[1,0,1,1],[1,3,2,1],[1,3,2,2],[1,1,2,2]],[[1,0,1,1],[1,4,2,1],[1,3,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,1],[1,4,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,1],[1,3,2,2],[2,2,2,0]],[[1,0,1,1],[1,3,2,1],[1,3,2,2],[1,3,2,0]],[[1,0,1,1],[1,3,2,1],[1,3,2,2],[1,2,3,0]],[[1,0,1,1],[1,3,2,1],[1,4,3,0],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,0],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,0],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,0],[1,2,3,1]],[[1,0,1,1],[1,4,2,1],[1,3,3,1],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[1,4,3,1],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,4,1],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,1],[1,1,3,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,1],[1,1,2,2]],[[1,0,1,1],[1,4,2,1],[1,3,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,2,1],[1,4,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,2,1],[1,3,4,1],[1,2,1,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,1],[2,2,1,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,1],[1,3,1,1]],[[1,0,1,1],[1,3,2,1],[1,3,4,2],[1,0,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,3],[1,0,2,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,2],[1,0,2,2]],[[1,0,1,1],[1,4,2,1],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,2,1],[1,4,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,2,1],[1,3,4,2],[1,1,1,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,3],[1,1,1,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,2],[1,1,1,2]],[[1,0,1,1],[1,4,2,1],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,2,1],[1,4,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,2,1],[1,3,4,2],[1,1,2,0]],[[1,0,1,1],[1,3,2,1],[1,3,3,3],[1,1,2,0]],[[1,0,1,1],[1,3,2,1],[1,3,3,2],[1,1,3,0]],[[1,0,1,1],[1,4,2,1],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[1,3,2,1],[1,4,3,2],[1,2,0,1]],[[1,0,1,1],[1,3,2,1],[1,3,4,2],[1,2,0,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,3],[1,2,0,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,2],[2,2,0,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,2],[1,3,0,1]],[[1,0,1,1],[1,3,2,1],[1,3,3,2],[1,2,0,2]],[[1,0,1,1],[1,4,2,1],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[1,3,2,1],[1,4,3,2],[1,2,1,0]],[[1,0,1,1],[1,3,2,1],[1,3,4,2],[1,2,1,0]],[[1,0,1,1],[1,3,2,1],[1,3,3,3],[1,2,1,0]],[[1,0,1,1],[1,3,2,1],[1,3,3,2],[2,2,1,0]],[[1,0,1,1],[1,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,2,3,0],[1,1,3,2],[1,2,3,1]],[[1,2,2,0],[0,2,3,0],[1,1,3,2],[1,3,2,1]],[[1,2,2,0],[0,2,3,0],[1,1,3,2],[2,2,2,1]],[[1,2,2,0],[0,2,3,0],[1,1,4,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[3,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,1,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,1,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,1,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[2,1,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,1],[2,1,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,1],[3,1,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,1,4,1],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,1,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,1,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[2,1,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,2,1],[2,1,3,1],[1,2,2,2]],[[1,0,1,1],[1,3,2,1],[2,1,4,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,1],[2,1,3,3],[1,2,1,1]],[[1,0,1,1],[1,3,2,1],[2,1,3,2],[1,2,1,2]],[[1,0,1,1],[1,3,2,1],[3,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,1,3,3],[1,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,1,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,1,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,2,1],[2,1,3,2],[1,2,3,0]],[[1,0,1,1],[1,3,2,1],[3,2,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,1,3],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,1,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,1,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,1,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,1],[2,2,1,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,1],[3,2,2,1],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,2,1],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,2,1],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,2,1],[1,2,3,1]],[[1,0,1,1],[1,3,2,1],[2,2,2,1],[1,2,2,2]],[[1,0,1,1],[1,3,2,1],[2,2,2,3],[0,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,2,2],[0,3,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,2,2],[0,2,3,1]],[[1,0,1,1],[1,3,2,1],[2,2,2,2],[0,2,2,2]],[[1,0,1,1],[1,3,2,1],[3,2,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,2,2,2],[2,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,2,2,2],[1,3,2,0]],[[1,0,1,1],[1,3,2,1],[2,2,2,2],[1,2,3,0]],[[1,0,1,1],[1,3,2,1],[3,2,3,0],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,0],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,0],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,0],[1,2,3,1]],[[1,0,1,1],[1,3,2,1],[2,2,4,1],[0,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,1],[0,3,2,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,1],[0,2,3,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,1],[0,2,2,2]],[[1,0,1,1],[1,3,2,1],[3,2,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,1],[2,2,1,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,1],[1,3,1,1]],[[1,0,1,1],[1,3,2,1],[2,2,4,2],[0,2,1,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,3],[0,2,1,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,2],[0,2,1,2]],[[1,0,1,1],[1,3,2,1],[2,2,4,2],[0,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,2,3,3],[0,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,2,3,2],[0,3,2,0]],[[1,0,1,1],[1,3,2,1],[2,2,3,2],[0,2,3,0]],[[1,0,1,1],[1,3,2,1],[3,2,3,2],[1,2,0,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,2],[2,2,0,1]],[[1,0,1,1],[1,3,2,1],[2,2,3,2],[1,3,0,1]],[[1,0,1,1],[1,3,2,1],[3,2,3,2],[1,2,1,0]],[[1,0,1,1],[1,3,2,1],[2,2,3,2],[2,2,1,0]],[[1,0,1,1],[1,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,0,1,1],[1,3,2,1],[3,3,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,0,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,0,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,1],[3,3,1,1],[1,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,1,1],[2,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,1,1],[1,3,2,1]],[[1,0,1,1],[1,4,2,1],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,1],[3,3,1,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,4,1,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,1,3],[0,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,1,2],[0,3,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,1,2],[0,2,3,1]],[[1,0,1,1],[1,3,2,1],[2,3,1,2],[0,2,2,2]],[[1,0,1,1],[1,4,2,1],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[3,3,1,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[2,4,1,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,1,2],[2,1,2,1]],[[1,0,1,1],[1,3,2,1],[3,3,1,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,1,2],[2,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,1,2],[1,3,2,0]],[[1,0,1,1],[1,4,2,1],[2,3,2,1],[0,2,2,1]],[[1,0,1,1],[1,3,2,1],[3,3,2,1],[0,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,4,2,1],[0,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,2,1],[0,3,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,2,1],[0,2,3,1]],[[1,0,1,1],[1,3,2,1],[2,3,2,1],[0,2,2,2]],[[1,0,1,1],[1,4,2,1],[2,3,2,1],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[3,3,2,1],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[2,4,2,1],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,2,1],[2,1,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,2,3],[0,1,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,2,2],[0,1,3,1]],[[1,0,1,1],[1,3,2,1],[2,3,2,2],[0,1,2,2]],[[1,0,1,1],[1,4,2,1],[2,3,2,2],[0,2,2,0]],[[1,0,1,1],[1,3,2,1],[3,3,2,2],[0,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,4,2,2],[0,2,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,2,2],[0,3,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,2,2],[0,2,3,0]],[[1,0,1,1],[1,3,2,1],[2,3,2,3],[1,0,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,2,2],[1,0,3,1]],[[1,0,1,1],[1,3,2,1],[2,3,2,2],[1,0,2,2]],[[1,0,1,1],[1,4,2,1],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[1,3,2,1],[3,3,2,2],[1,1,2,0]],[[1,0,1,1],[1,3,2,1],[2,4,2,2],[1,1,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,0,1,1],[1,3,2,1],[3,3,3,0],[0,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,4,3,0],[0,2,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,0],[0,3,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,0],[0,2,3,1]],[[1,0,1,1],[1,3,2,1],[3,3,3,0],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[2,4,3,0],[1,1,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,0],[2,1,2,1]],[[1,0,1,1],[1,4,2,1],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[1,3,2,1],[3,3,3,1],[0,1,2,1]],[[1,0,1,1],[1,3,2,1],[2,4,3,1],[0,1,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,4,1],[0,1,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,1],[0,1,3,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,1],[0,1,2,2]],[[1,0,1,1],[1,4,2,1],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[1,3,2,1],[3,3,3,1],[0,2,1,1]],[[1,0,1,1],[1,3,2,1],[2,4,3,1],[0,2,1,1]],[[1,0,1,1],[1,3,2,1],[2,3,4,1],[0,2,1,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,1],[0,3,1,1]],[[1,0,1,1],[1,4,2,1],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[1,3,2,1],[3,3,3,1],[1,0,2,1]],[[1,0,1,1],[1,3,2,1],[2,4,3,1],[1,0,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,4,1],[1,0,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,1],[2,0,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,1],[1,0,3,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,1],[1,0,2,2]],[[1,0,1,1],[1,4,2,1],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,2,1],[3,3,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,2,1],[2,4,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,2,1],[2,3,4,1],[1,1,1,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,1],[2,1,1,1]],[[1,0,1,1],[1,3,2,1],[3,3,3,1],[1,2,0,1]],[[1,0,1,1],[1,3,2,1],[2,4,3,1],[1,2,0,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,0,1,1],[1,3,2,1],[2,3,4,2],[0,0,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,3],[0,0,2,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[0,0,2,2]],[[1,0,1,1],[1,4,2,1],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,2,1],[3,3,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,2,1],[2,4,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,2,1],[2,3,4,2],[0,1,1,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,3],[0,1,1,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[0,1,1,2]],[[1,0,1,1],[1,4,2,1],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,2,1],[3,3,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,2,1],[2,4,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,4,2],[0,1,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,3,3],[0,1,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[0,1,3,0]],[[1,0,1,1],[1,4,2,1],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,3,2,1],[3,3,3,2],[0,2,0,1]],[[1,0,1,1],[1,3,2,1],[2,4,3,2],[0,2,0,1]],[[1,0,1,1],[1,3,2,1],[2,3,4,2],[0,2,0,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,3],[0,2,0,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[0,3,0,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[0,2,0,2]],[[1,0,1,1],[1,4,2,1],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,3,2,1],[3,3,3,2],[0,2,1,0]],[[1,0,1,1],[1,3,2,1],[2,4,3,2],[0,2,1,0]],[[1,0,1,1],[1,3,2,1],[2,3,4,2],[0,2,1,0]],[[1,0,1,1],[1,3,2,1],[2,3,3,3],[0,2,1,0]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,0,1,1],[1,4,2,1],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,2,1],[3,3,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,2,1],[2,4,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,2,1],[2,3,4,2],[1,0,1,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,3],[1,0,1,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[2,0,1,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[1,0,1,2]],[[1,0,1,1],[1,4,2,1],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,2,1],[3,3,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,2,1],[2,4,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,4,2],[1,0,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,3,3],[1,0,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[2,0,2,0]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[1,0,3,0]],[[1,0,1,1],[1,4,2,1],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,2,1],[3,3,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,2,1],[2,4,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,2,1],[2,3,4,2],[1,1,0,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,3],[1,1,0,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[2,1,0,1]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[1,1,0,2]],[[1,0,1,1],[1,4,2,1],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,3,2,1],[3,3,3,2],[1,1,1,0]],[[1,0,1,1],[1,3,2,1],[2,4,3,2],[1,1,1,0]],[[1,0,1,1],[1,3,2,1],[2,3,4,2],[1,1,1,0]],[[1,0,1,1],[1,3,2,1],[2,3,3,3],[1,1,1,0]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,0,1,1],[1,4,2,1],[2,3,3,2],[1,2,0,0]],[[1,0,1,1],[1,3,2,1],[3,3,3,2],[1,2,0,0]],[[1,0,1,1],[1,3,2,1],[2,4,3,2],[1,2,0,0]],[[1,0,1,1],[1,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,2,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,0],[0,2,2,2],[2,3,4,2],[0,0,2,0]],[[1,2,2,0],[0,2,2,3],[2,3,3,2],[0,0,2,0]],[[1,2,2,0],[0,2,2,2],[2,3,3,2],[0,0,1,2]],[[1,2,2,0],[0,2,2,2],[2,3,3,3],[0,0,1,1]],[[1,0,1,1],[1,3,2,2],[0,3,4,0],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[0,3,3,0],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[0,3,3,0],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[0,3,3,0],[1,2,2,2]],[[1,0,1,1],[1,3,2,2],[0,3,4,1],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[0,3,3,1],[1,3,2,0]],[[1,0,1,1],[1,3,2,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,0],[0,2,2,2],[2,3,4,2],[0,0,1,1]],[[1,2,2,0],[0,2,2,3],[2,3,3,2],[0,0,1,1]],[[1,0,1,2],[1,3,2,2],[1,0,3,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,3],[1,0,3,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,0,3,3],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,0,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[1,0,3,2],[1,2,2,2]],[[1,0,1,2],[1,3,2,2],[1,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,3],[1,1,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,1,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,1,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,1,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[1,1,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[1,1,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,2],[1,1,4,1],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,1,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,1,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[1,1,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[1,1,3,1],[1,2,2,2]],[[1,0,1,2],[1,3,2,2],[1,1,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,3],[1,1,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,2],[1,1,4,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,2],[1,1,3,3],[1,2,1,1]],[[1,0,1,1],[1,3,2,2],[1,1,3,2],[1,2,1,2]],[[1,0,1,2],[1,3,2,2],[1,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,3],[1,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[1,1,4,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[1,1,3,3],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[1,1,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,2,2],[1,1,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,2,2],[1,1,3,2],[1,2,3,0]],[[1,0,1,2],[1,3,2,2],[1,2,2,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,3],[1,2,2,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[1,2,2,3],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[1,2,2,2],[1,1,3,1]],[[1,0,1,1],[1,3,2,2],[1,2,2,2],[1,1,2,2]],[[1,0,1,1],[1,3,2,2],[1,2,4,0],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,0],[2,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,0],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,0],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,0],[1,2,2,2]],[[1,0,1,1],[1,3,2,2],[1,2,4,1],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,1],[1,1,3,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,1],[1,1,2,2]],[[1,0,1,1],[1,3,2,2],[1,2,4,1],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[1,2,3,1],[2,2,2,0]],[[1,0,1,1],[1,3,2,2],[1,2,3,1],[1,3,2,0]],[[1,0,1,1],[1,3,2,2],[1,2,3,1],[1,2,3,0]],[[1,0,1,2],[1,3,2,2],[1,2,3,2],[1,0,2,1]],[[1,0,1,1],[1,3,2,3],[1,2,3,2],[1,0,2,1]],[[1,0,1,1],[1,3,2,2],[1,2,4,2],[1,0,2,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,3],[1,0,2,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,2],[1,0,2,2]],[[1,0,1,2],[1,3,2,2],[1,2,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,2,3],[1,2,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,2,2],[1,2,4,2],[1,1,1,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,3],[1,1,1,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,2],[1,1,1,2]],[[1,0,1,2],[1,3,2,2],[1,2,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,2,3],[1,2,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,2,2],[1,2,4,2],[1,1,2,0]],[[1,0,1,1],[1,3,2,2],[1,2,3,3],[1,1,2,0]],[[1,0,1,1],[1,3,2,2],[1,2,3,2],[1,1,3,0]],[[1,0,1,2],[1,3,2,2],[1,2,3,2],[1,2,0,1]],[[1,0,1,1],[1,3,2,3],[1,2,3,2],[1,2,0,1]],[[1,0,1,1],[1,3,2,2],[1,2,4,2],[1,2,0,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,3],[1,2,0,1]],[[1,0,1,1],[1,3,2,2],[1,2,3,2],[1,2,0,2]],[[1,0,1,2],[1,3,2,2],[1,2,3,2],[1,2,1,0]],[[1,0,1,1],[1,3,2,3],[1,2,3,2],[1,2,1,0]],[[1,0,1,1],[1,3,2,2],[1,2,4,2],[1,2,1,0]],[[1,0,1,1],[1,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,0,1,2],[1,3,2,2],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[1,4,2,2],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,3],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,4,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,3,0,3],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,3,0,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,3,0,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[1,3,0,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[1,3,0,2],[1,2,2,2]],[[1,0,1,1],[1,4,2,2],[1,3,2,0],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,4,2,0],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,3,2,0],[2,2,2,1]],[[1,0,1,1],[1,3,2,2],[1,3,2,0],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[1,3,2,0],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[1,3,2,0],[1,2,2,2]],[[1,0,1,1],[1,4,2,2],[1,3,2,1],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[1,4,2,1],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[1,3,2,1],[2,2,2,0]],[[1,0,1,1],[1,3,2,2],[1,3,2,1],[1,3,2,0]],[[1,0,1,1],[1,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,0,1,1],[1,4,2,2],[1,3,3,0],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[1,4,3,0],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[1,3,4,0],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[1,3,3,0],[1,1,3,1]],[[1,0,1,1],[1,3,2,2],[1,3,3,0],[1,1,2,2]],[[1,0,1,1],[1,4,2,2],[1,3,3,0],[1,2,1,1]],[[1,0,1,1],[1,3,2,2],[1,4,3,0],[1,2,1,1]],[[1,0,1,1],[1,3,2,2],[1,3,4,0],[1,2,1,1]],[[1,0,1,1],[1,3,2,2],[1,3,3,0],[2,2,1,1]],[[1,0,1,1],[1,3,2,2],[1,3,3,0],[1,3,1,1]],[[1,0,1,1],[1,4,2,2],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,2,2],[1,4,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,2,2],[1,3,4,1],[1,1,1,1]],[[1,0,1,1],[1,4,2,2],[1,3,3,1],[1,1,2,0]],[[1,0,1,1],[1,3,2,2],[1,4,3,1],[1,1,2,0]],[[1,0,1,1],[1,3,2,2],[1,3,4,1],[1,1,2,0]],[[1,0,1,1],[1,3,2,2],[1,3,3,1],[1,1,3,0]],[[1,0,1,1],[1,4,2,2],[1,3,3,1],[1,2,0,1]],[[1,0,1,1],[1,3,2,2],[1,4,3,1],[1,2,0,1]],[[1,0,1,1],[1,3,2,2],[1,3,4,1],[1,2,0,1]],[[1,0,1,1],[1,3,2,2],[1,3,3,1],[2,2,0,1]],[[1,0,1,1],[1,3,2,2],[1,3,3,1],[1,3,0,1]],[[1,0,1,1],[1,4,2,2],[1,3,3,1],[1,2,1,0]],[[1,0,1,1],[1,3,2,2],[1,4,3,1],[1,2,1,0]],[[1,0,1,1],[1,3,2,2],[1,3,4,1],[1,2,1,0]],[[1,0,1,1],[1,3,2,2],[1,3,3,1],[2,2,1,0]],[[1,0,1,1],[1,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,0,1,2],[1,3,2,2],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,3],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[3,0,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,0,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,0,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,0,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[2,0,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[2,0,2,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,2],[3,0,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,0,4,1],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,0,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,0,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[2,0,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[2,0,3,1],[1,2,2,2]],[[1,0,1,2],[1,3,2,2],[2,0,3,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,3],[2,0,3,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,0,3,3],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,0,3,2],[0,2,3,1]],[[1,0,1,1],[1,3,2,2],[2,0,3,2],[0,2,2,2]],[[1,0,1,2],[1,3,2,2],[2,0,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,3],[2,0,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,2],[2,0,4,2],[1,2,1,1]],[[1,0,1,1],[1,3,2,2],[2,0,3,3],[1,2,1,1]],[[1,0,1,1],[1,3,2,2],[2,0,3,2],[1,2,1,2]],[[1,0,1,2],[1,3,2,2],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,3],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[3,0,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,0,4,2],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,0,3,3],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,0,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,0,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,2,2],[2,0,3,2],[1,2,3,0]],[[1,0,1,2],[1,3,2,2],[2,1,2,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,3],[2,1,2,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,1,2,3],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,1,2,2],[0,3,2,1]],[[1,0,1,1],[1,3,2,2],[2,1,2,2],[0,2,3,1]],[[1,0,1,1],[1,3,2,2],[2,1,2,2],[0,2,2,2]],[[1,0,1,1],[1,3,2,2],[3,1,3,0],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,1,4,0],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,1,3,0],[2,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,1,3,0],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[2,1,3,0],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[2,1,3,0],[1,2,2,2]],[[1,0,1,1],[1,3,2,2],[2,1,4,1],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,1,3,1],[0,3,2,1]],[[1,0,1,1],[1,3,2,2],[2,1,3,1],[0,2,3,1]],[[1,0,1,1],[1,3,2,2],[2,1,3,1],[0,2,2,2]],[[1,0,1,1],[1,3,2,2],[3,1,3,1],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,1,4,1],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,1,3,1],[2,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,1,3,1],[1,3,2,0]],[[1,0,1,1],[1,3,2,2],[2,1,3,1],[1,2,3,0]],[[1,0,1,2],[1,3,2,2],[2,1,3,2],[0,2,1,1]],[[1,0,1,1],[1,3,2,3],[2,1,3,2],[0,2,1,1]],[[1,0,1,1],[1,3,2,2],[2,1,4,2],[0,2,1,1]],[[1,0,1,1],[1,3,2,2],[2,1,3,3],[0,2,1,1]],[[1,0,1,1],[1,3,2,2],[2,1,3,2],[0,2,1,2]],[[1,0,1,2],[1,3,2,2],[2,1,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,2,3],[2,1,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,1,4,2],[0,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,1,3,3],[0,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,1,3,2],[0,3,2,0]],[[1,0,1,1],[1,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,0],[0,2,2,2],[2,2,3,3],[1,1,1,0]],[[1,0,1,2],[1,3,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,3],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[3,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,0,3],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,0,2],[2,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,0,2],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,0,2],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[2,2,0,2],[1,2,2,2]],[[1,0,1,1],[1,3,2,2],[3,2,2,0],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,2,0],[2,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,2,0],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,2,0],[1,2,3,1]],[[1,0,1,1],[1,3,2,2],[2,2,2,0],[1,2,2,2]],[[1,0,1,1],[1,3,2,2],[3,2,2,1],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,2,2,1],[2,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,2,2,1],[1,3,2,0]],[[1,0,1,1],[1,3,2,2],[2,2,2,1],[1,2,3,0]],[[1,0,1,2],[1,3,2,2],[2,2,2,2],[0,1,2,1]],[[1,0,1,1],[1,3,2,3],[2,2,2,2],[0,1,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,2,3],[0,1,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,2,2],[0,1,3,1]],[[1,0,1,1],[1,3,2,2],[2,2,2,2],[0,1,2,2]],[[1,0,1,2],[1,3,2,2],[2,2,2,2],[1,0,2,1]],[[1,0,1,1],[1,3,2,3],[2,2,2,2],[1,0,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,2,3],[1,0,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,2,2],[1,0,3,1]],[[1,0,1,1],[1,3,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,0],[0,2,2,2],[2,2,4,2],[1,1,1,0]],[[1,2,2,0],[0,2,2,3],[2,2,3,2],[1,1,1,0]],[[1,2,2,0],[0,2,2,2],[2,2,3,2],[1,1,0,2]],[[1,2,2,0],[0,2,2,2],[2,2,3,3],[1,1,0,1]],[[1,2,2,0],[0,2,2,2],[2,2,4,2],[1,1,0,1]],[[1,2,2,0],[0,2,2,3],[2,2,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,2,2],[2,2,4,0],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,0],[0,3,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,0],[0,2,3,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,0],[0,2,2,2]],[[1,0,1,1],[1,3,2,2],[3,2,3,0],[1,2,1,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,0],[2,2,1,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,0],[1,3,1,1]],[[1,0,1,1],[1,3,2,2],[2,2,4,1],[0,1,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,1],[0,1,3,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,1],[0,1,2,2]],[[1,0,1,1],[1,3,2,2],[2,2,4,1],[0,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,2,3,1],[0,3,2,0]],[[1,0,1,1],[1,3,2,2],[2,2,3,1],[0,2,3,0]],[[1,0,1,1],[1,3,2,2],[2,2,4,1],[1,0,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,1],[1,0,3,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,1],[1,0,2,2]],[[1,0,1,1],[1,3,2,2],[3,2,3,1],[1,2,0,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,1],[2,2,0,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,1],[1,3,0,1]],[[1,0,1,1],[1,3,2,2],[3,2,3,1],[1,2,1,0]],[[1,0,1,1],[1,3,2,2],[2,2,3,1],[2,2,1,0]],[[1,0,1,1],[1,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[0,2,2,2],[2,2,3,2],[1,0,3,0]],[[1,2,2,0],[0,2,2,2],[2,2,3,3],[1,0,2,0]],[[1,2,2,0],[0,2,2,2],[2,2,4,2],[1,0,2,0]],[[1,0,1,2],[1,3,2,2],[2,2,3,2],[0,0,2,1]],[[1,0,1,1],[1,3,2,3],[2,2,3,2],[0,0,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,4,2],[0,0,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,3],[0,0,2,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,2],[0,0,2,2]],[[1,0,1,2],[1,3,2,2],[2,2,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,2,3],[2,2,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,2,2],[2,2,4,2],[0,1,1,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,3],[0,1,1,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,2],[0,1,1,2]],[[1,0,1,2],[1,3,2,2],[2,2,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,2,3],[2,2,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,2,2],[2,2,4,2],[0,1,2,0]],[[1,0,1,1],[1,3,2,2],[2,2,3,3],[0,1,2,0]],[[1,0,1,1],[1,3,2,2],[2,2,3,2],[0,1,3,0]],[[1,0,1,2],[1,3,2,2],[2,2,3,2],[0,2,0,1]],[[1,0,1,1],[1,3,2,3],[2,2,3,2],[0,2,0,1]],[[1,0,1,1],[1,3,2,2],[2,2,4,2],[0,2,0,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,3],[0,2,0,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,2],[0,2,0,2]],[[1,0,1,2],[1,3,2,2],[2,2,3,2],[0,2,1,0]],[[1,0,1,1],[1,3,2,3],[2,2,3,2],[0,2,1,0]],[[1,0,1,1],[1,3,2,2],[2,2,4,2],[0,2,1,0]],[[1,0,1,1],[1,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,0],[0,2,2,3],[2,2,3,2],[1,0,2,0]],[[1,2,2,0],[0,2,2,2],[2,2,3,2],[1,0,1,2]],[[1,2,2,0],[0,2,2,2],[2,2,3,3],[1,0,1,1]],[[1,2,2,0],[0,2,2,2],[2,2,4,2],[1,0,1,1]],[[1,2,2,0],[0,2,2,3],[2,2,3,2],[1,0,1,1]],[[1,0,1,2],[1,3,2,2],[2,2,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,2,3],[2,2,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,2,2],[2,2,4,2],[1,0,1,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,3],[1,0,1,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,2],[1,0,1,2]],[[1,0,1,2],[1,3,2,2],[2,2,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,2,3],[2,2,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,2,2],[2,2,4,2],[1,0,2,0]],[[1,0,1,1],[1,3,2,2],[2,2,3,3],[1,0,2,0]],[[1,0,1,1],[1,3,2,2],[2,2,3,2],[1,0,3,0]],[[1,0,1,2],[1,3,2,2],[2,2,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,2,3],[2,2,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,2,2],[2,2,4,2],[1,1,0,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,3],[1,1,0,1]],[[1,0,1,1],[1,3,2,2],[2,2,3,2],[1,1,0,2]],[[1,0,1,2],[1,3,2,2],[2,2,3,2],[1,1,1,0]],[[1,0,1,1],[1,3,2,3],[2,2,3,2],[1,1,1,0]],[[1,0,1,1],[1,3,2,2],[2,2,4,2],[1,1,1,0]],[[1,0,1,1],[1,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,2,0],[0,2,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,2,0],[0,2,2,2],[2,2,4,2],[0,2,1,0]],[[1,2,2,0],[0,2,2,3],[2,2,3,2],[0,2,1,0]],[[1,2,2,0],[0,2,2,2],[2,2,3,2],[0,2,0,2]],[[1,2,2,0],[0,2,2,2],[2,2,3,3],[0,2,0,1]],[[1,2,2,0],[0,2,2,2],[2,2,4,2],[0,2,0,1]],[[1,2,2,0],[0,2,2,3],[2,2,3,2],[0,2,0,1]],[[1,2,2,0],[0,2,2,2],[2,2,3,2],[0,1,3,0]],[[1,2,2,0],[0,2,2,2],[2,2,3,3],[0,1,2,0]],[[1,2,2,0],[0,2,2,2],[2,2,4,2],[0,1,2,0]],[[1,2,2,0],[0,2,2,3],[2,2,3,2],[0,1,2,0]],[[1,2,2,0],[0,2,2,2],[2,2,3,2],[0,1,1,2]],[[1,2,2,0],[0,2,2,2],[2,2,3,3],[0,1,1,1]],[[1,2,2,0],[0,2,2,2],[2,2,4,2],[0,1,1,1]],[[1,2,2,0],[0,2,2,3],[2,2,3,2],[0,1,1,1]],[[1,2,2,0],[0,2,2,2],[2,2,3,2],[0,0,2,2]],[[1,2,2,0],[0,2,2,2],[2,2,3,3],[0,0,2,1]],[[1,2,2,0],[0,2,2,2],[2,2,4,2],[0,0,2,1]],[[1,2,2,0],[0,2,2,3],[2,2,3,2],[0,0,2,1]],[[1,0,1,2],[1,3,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[1,4,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,3],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[3,3,0,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,4,0,2],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,0,3],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,0,2],[0,3,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,0,2],[0,2,3,1]],[[1,0,1,1],[1,3,2,2],[2,3,0,2],[0,2,2,2]],[[1,0,1,1],[1,4,2,2],[2,3,0,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[3,3,0,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[2,4,0,2],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,0,2],[2,1,2,1]],[[1,0,1,1],[1,3,2,2],[3,3,1,0],[1,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,1,0],[2,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,1,0],[1,3,2,1]],[[1,0,1,1],[1,3,2,2],[3,3,1,1],[1,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,1,1],[2,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,0],[0,2,2,2],[2,2,3,1],[1,0,2,2]],[[1,2,2,0],[0,2,2,2],[2,2,3,1],[1,0,3,1]],[[1,2,2,0],[0,2,2,2],[2,2,4,1],[1,0,2,1]],[[1,0,1,1],[1,4,2,2],[2,3,2,0],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[3,3,2,0],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,4,2,0],[0,2,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,2,0],[0,3,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,2,0],[0,2,3,1]],[[1,0,1,1],[1,3,2,2],[2,3,2,0],[0,2,2,2]],[[1,0,1,1],[1,4,2,2],[2,3,2,0],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[3,3,2,0],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[2,4,2,0],[1,1,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,2,0],[2,1,2,1]],[[1,0,1,1],[1,4,2,2],[2,3,2,1],[0,2,2,0]],[[1,0,1,1],[1,3,2,2],[3,3,2,1],[0,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,4,2,1],[0,2,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,2,1],[0,3,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,2,1],[0,2,3,0]],[[1,0,1,1],[1,4,2,2],[2,3,2,1],[1,1,2,0]],[[1,0,1,1],[1,3,2,2],[3,3,2,1],[1,1,2,0]],[[1,0,1,1],[1,3,2,2],[2,4,2,1],[1,1,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[0,2,2,2],[2,2,3,1],[0,1,2,2]],[[1,2,2,0],[0,2,2,2],[2,2,3,1],[0,1,3,1]],[[1,2,2,0],[0,2,2,2],[2,2,4,1],[0,1,2,1]],[[1,2,2,0],[0,2,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,2,0],[0,2,2,2],[2,2,2,2],[1,0,3,1]],[[1,2,2,0],[0,2,2,2],[2,2,2,3],[1,0,2,1]],[[1,2,2,0],[0,2,2,3],[2,2,2,2],[1,0,2,1]],[[1,2,2,0],[0,2,2,2],[2,2,2,2],[0,1,2,2]],[[1,2,2,0],[0,2,2,2],[2,2,2,2],[0,1,3,1]],[[1,2,2,0],[0,2,2,2],[2,2,2,3],[0,1,2,1]],[[1,2,2,0],[0,2,2,3],[2,2,2,2],[0,1,2,1]],[[1,0,1,1],[1,4,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,1,1],[1,3,2,2],[3,3,3,0],[0,1,2,1]],[[1,0,1,1],[1,3,2,2],[2,4,3,0],[0,1,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,4,0],[0,1,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,0],[0,1,3,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,0],[0,1,2,2]],[[1,0,1,1],[1,4,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,1,1],[1,3,2,2],[3,3,3,0],[0,2,1,1]],[[1,0,1,1],[1,3,2,2],[2,4,3,0],[0,2,1,1]],[[1,0,1,1],[1,3,2,2],[2,3,4,0],[0,2,1,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,0],[0,3,1,1]],[[1,0,1,1],[1,4,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,1,1],[1,3,2,2],[3,3,3,0],[1,0,2,1]],[[1,0,1,1],[1,3,2,2],[2,4,3,0],[1,0,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,4,0],[1,0,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,0],[2,0,2,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,0],[1,0,3,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,0],[1,0,2,2]],[[1,0,1,1],[1,4,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,1,1],[1,3,2,2],[3,3,3,0],[1,1,1,1]],[[1,0,1,1],[1,3,2,2],[2,4,3,0],[1,1,1,1]],[[1,0,1,1],[1,3,2,2],[2,3,4,0],[1,1,1,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,0],[2,1,1,1]],[[1,0,1,1],[1,4,2,2],[2,3,3,0],[1,2,0,1]],[[1,0,1,1],[1,3,2,2],[3,3,3,0],[1,2,0,1]],[[1,0,1,1],[1,3,2,2],[2,4,3,0],[1,2,0,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,0,1,1],[1,4,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,1,1],[1,3,2,2],[3,3,3,1],[0,1,1,1]],[[1,0,1,1],[1,3,2,2],[2,4,3,1],[0,1,1,1]],[[1,0,1,1],[1,3,2,2],[2,3,4,1],[0,1,1,1]],[[1,0,1,1],[1,4,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,1,1],[1,3,2,2],[3,3,3,1],[0,1,2,0]],[[1,0,1,1],[1,3,2,2],[2,4,3,1],[0,1,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,4,1],[0,1,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,3,1],[0,1,3,0]],[[1,0,1,1],[1,4,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,1,1],[1,3,2,2],[3,3,3,1],[0,2,0,1]],[[1,0,1,1],[1,3,2,2],[2,4,3,1],[0,2,0,1]],[[1,0,1,1],[1,3,2,2],[2,3,4,1],[0,2,0,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,1],[0,3,0,1]],[[1,0,1,1],[1,4,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,1,1],[1,3,2,2],[3,3,3,1],[0,2,1,0]],[[1,0,1,1],[1,3,2,2],[2,4,3,1],[0,2,1,0]],[[1,0,1,1],[1,3,2,2],[2,3,4,1],[0,2,1,0]],[[1,0,1,1],[1,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,0,1,1],[1,4,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,1,1],[1,3,2,2],[3,3,3,1],[1,0,1,1]],[[1,0,1,1],[1,3,2,2],[2,4,3,1],[1,0,1,1]],[[1,0,1,1],[1,3,2,2],[2,3,4,1],[1,0,1,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,1],[2,0,1,1]],[[1,0,1,1],[1,4,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[1,3,2,2],[3,3,3,1],[1,0,2,0]],[[1,0,1,1],[1,3,2,2],[2,4,3,1],[1,0,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,4,1],[1,0,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,3,1],[2,0,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,3,1],[1,0,3,0]],[[1,0,1,1],[1,4,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,1,1],[1,3,2,2],[3,3,3,1],[1,1,0,1]],[[1,0,1,1],[1,3,2,2],[2,4,3,1],[1,1,0,1]],[[1,0,1,1],[1,3,2,2],[2,3,4,1],[1,1,0,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,1],[2,1,0,1]],[[1,0,1,1],[1,4,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[1,3,2,2],[3,3,3,1],[1,1,1,0]],[[1,0,1,1],[1,3,2,2],[2,4,3,1],[1,1,1,0]],[[1,0,1,1],[1,3,2,2],[2,3,4,1],[1,1,1,0]],[[1,0,1,1],[1,3,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,0],[0,2,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,2,0],[0,2,2,2],[2,1,3,2],[0,3,2,0]],[[1,2,2,0],[0,2,2,2],[2,1,3,3],[0,2,2,0]],[[1,2,2,0],[0,2,2,2],[2,1,4,2],[0,2,2,0]],[[1,2,2,0],[0,2,2,3],[2,1,3,2],[0,2,2,0]],[[1,2,2,0],[0,2,2,2],[2,1,3,2],[0,2,1,2]],[[1,2,2,0],[0,2,2,2],[2,1,3,3],[0,2,1,1]],[[1,0,1,1],[1,4,2,2],[2,3,3,1],[1,2,0,0]],[[1,0,1,1],[1,3,2,2],[3,3,3,1],[1,2,0,0]],[[1,0,1,1],[1,3,2,2],[2,4,3,1],[1,2,0,0]],[[1,0,1,1],[1,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[0,2,2,2],[2,1,4,2],[0,2,1,1]],[[1,2,2,0],[0,2,2,3],[2,1,3,2],[0,2,1,1]],[[1,2,2,0],[0,2,2,2],[2,1,3,1],[0,2,2,2]],[[1,2,2,0],[0,2,2,2],[2,1,3,1],[0,2,3,1]],[[1,2,2,0],[0,2,2,2],[2,1,3,1],[0,3,2,1]],[[1,2,2,0],[0,2,2,2],[2,1,4,1],[0,2,2,1]],[[1,2,2,0],[0,2,2,2],[2,1,2,2],[0,2,2,2]],[[1,2,2,0],[0,2,2,2],[2,1,2,2],[0,2,3,1]],[[1,0,1,2],[1,3,2,2],[2,3,3,2],[0,0,1,1]],[[1,0,1,1],[1,3,2,3],[2,3,3,2],[0,0,1,1]],[[1,0,1,1],[1,3,2,2],[2,3,4,2],[0,0,1,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,3],[0,0,1,1]],[[1,0,1,1],[1,3,2,2],[2,3,3,2],[0,0,1,2]],[[1,0,1,2],[1,3,2,2],[2,3,3,2],[0,0,2,0]],[[1,0,1,1],[1,3,2,3],[2,3,3,2],[0,0,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,4,2],[0,0,2,0]],[[1,0,1,1],[1,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,2,0],[0,2,2,2],[2,1,2,2],[0,3,2,1]],[[1,2,2,0],[0,2,2,2],[2,1,2,3],[0,2,2,1]],[[1,2,2,0],[0,2,2,3],[2,1,2,2],[0,2,2,1]],[[1,2,2,0],[0,2,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[0,2,2,2],[2,0,3,2],[1,3,2,0]],[[1,2,2,0],[0,2,2,2],[2,0,3,2],[2,2,2,0]],[[1,2,2,0],[0,2,2,2],[2,0,3,3],[1,2,2,0]],[[1,2,2,0],[0,2,2,2],[2,0,4,2],[1,2,2,0]],[[1,2,2,0],[0,2,2,2],[3,0,3,2],[1,2,2,0]],[[1,2,2,0],[0,2,2,3],[2,0,3,2],[1,2,2,0]],[[1,2,2,0],[0,2,2,2],[2,0,3,2],[1,2,1,2]],[[1,2,2,0],[0,2,2,2],[2,0,3,3],[1,2,1,1]],[[1,2,2,0],[0,2,2,2],[2,0,4,2],[1,2,1,1]],[[1,2,2,0],[0,2,2,3],[2,0,3,2],[1,2,1,1]],[[1,2,2,0],[0,2,2,2],[2,0,3,2],[0,2,2,2]],[[1,2,2,0],[0,2,2,2],[2,0,3,2],[0,2,3,1]],[[1,2,2,0],[0,2,2,2],[2,0,3,3],[0,2,2,1]],[[1,2,2,0],[0,2,2,3],[2,0,3,2],[0,2,2,1]],[[1,2,2,0],[0,2,2,2],[2,0,3,1],[1,2,2,2]],[[1,2,2,0],[0,2,2,2],[2,0,3,1],[1,2,3,1]],[[1,2,2,0],[0,2,2,2],[2,0,3,1],[1,3,2,1]],[[1,2,2,0],[0,2,2,2],[2,0,3,1],[2,2,2,1]],[[1,2,2,0],[0,2,2,2],[2,0,4,1],[1,2,2,1]],[[1,2,2,0],[0,2,2,2],[3,0,3,1],[1,2,2,1]],[[1,2,2,0],[0,2,2,2],[2,0,2,2],[1,2,2,2]],[[1,2,2,0],[0,2,2,2],[2,0,2,2],[1,2,3,1]],[[1,2,2,0],[0,2,2,2],[2,0,2,2],[1,3,2,1]],[[1,2,2,0],[0,2,2,2],[2,0,2,2],[2,2,2,1]],[[1,2,2,0],[0,2,2,2],[2,0,2,3],[1,2,2,1]],[[1,2,2,0],[0,2,2,2],[3,0,2,2],[1,2,2,1]],[[1,2,2,0],[0,2,2,3],[2,0,2,2],[1,2,2,1]],[[1,2,2,0],[0,2,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,2,0],[0,2,2,2],[1,2,4,2],[1,2,1,0]],[[1,2,2,0],[0,2,2,3],[1,2,3,2],[1,2,1,0]],[[1,2,2,0],[0,2,2,2],[1,2,3,2],[1,2,0,2]],[[1,2,2,0],[0,2,2,2],[1,2,3,3],[1,2,0,1]],[[1,2,2,0],[0,2,2,2],[1,2,4,2],[1,2,0,1]],[[1,2,2,0],[0,2,2,3],[1,2,3,2],[1,2,0,1]],[[1,2,2,0],[0,2,2,2],[1,2,3,2],[1,1,3,0]],[[1,2,2,0],[0,2,2,2],[1,2,3,3],[1,1,2,0]],[[1,2,2,0],[0,2,2,2],[1,2,4,2],[1,1,2,0]],[[1,2,2,0],[0,2,2,3],[1,2,3,2],[1,1,2,0]],[[1,2,2,0],[0,2,2,2],[1,2,3,2],[1,1,1,2]],[[1,2,2,0],[0,2,2,2],[1,2,3,3],[1,1,1,1]],[[1,2,2,0],[0,2,2,2],[1,2,4,2],[1,1,1,1]],[[1,2,2,0],[0,2,2,3],[1,2,3,2],[1,1,1,1]],[[1,2,2,0],[0,2,2,2],[1,2,3,2],[1,0,2,2]],[[1,0,1,1],[1,3,3,0],[1,1,4,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,0],[1,1,3,2],[2,2,2,1]],[[1,0,1,1],[1,3,3,0],[1,1,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,3,0],[1,1,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,0],[1,1,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,3,0],[1,2,4,2],[1,1,2,1]],[[1,0,1,1],[1,3,3,0],[1,2,3,2],[1,1,3,1]],[[1,0,1,1],[1,3,3,0],[1,2,3,2],[1,1,2,2]],[[1,2,2,0],[0,2,2,2],[1,2,3,3],[1,0,2,1]],[[1,2,2,0],[0,2,2,2],[1,2,4,2],[1,0,2,1]],[[1,2,2,0],[0,2,2,3],[1,2,3,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,0],[3,0,3,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,0],[2,0,4,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,0],[2,0,3,2],[2,2,2,1]],[[1,0,1,1],[1,3,3,0],[2,0,3,2],[1,3,2,1]],[[1,0,1,1],[1,3,3,0],[2,0,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,0],[2,0,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,3,0],[2,1,4,2],[0,2,2,1]],[[1,0,1,1],[1,3,3,0],[2,1,3,2],[0,3,2,1]],[[1,0,1,1],[1,3,3,0],[2,1,3,2],[0,2,3,1]],[[1,0,1,1],[1,3,3,0],[2,1,3,2],[0,2,2,2]],[[1,0,1,1],[1,3,3,0],[2,2,4,2],[0,1,2,1]],[[1,0,1,1],[1,3,3,0],[2,2,3,2],[0,1,3,1]],[[1,0,1,1],[1,3,3,0],[2,2,3,2],[0,1,2,2]],[[1,0,1,1],[1,3,3,0],[2,2,4,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,0],[2,2,3,2],[1,0,3,1]],[[1,0,1,1],[1,3,3,0],[2,2,3,2],[1,0,2,2]],[[1,2,2,0],[0,2,2,2],[1,2,3,1],[1,1,2,2]],[[1,2,2,0],[0,2,2,2],[1,2,3,1],[1,1,3,1]],[[1,2,2,0],[0,2,2,2],[1,2,4,1],[1,1,2,1]],[[1,2,2,0],[0,2,2,2],[1,2,2,2],[1,1,2,2]],[[1,2,2,0],[0,2,2,2],[1,2,2,2],[1,1,3,1]],[[1,2,2,0],[0,2,2,2],[1,2,2,3],[1,1,2,1]],[[1,2,2,0],[0,2,2,3],[1,2,2,2],[1,1,2,1]],[[1,2,2,0],[0,2,2,2],[1,1,3,2],[1,2,3,0]],[[1,2,2,0],[0,2,2,2],[1,1,3,2],[1,3,2,0]],[[1,2,2,0],[0,2,2,2],[1,1,3,2],[2,2,2,0]],[[1,2,2,0],[0,2,2,2],[1,1,3,3],[1,2,2,0]],[[1,2,2,0],[0,2,2,2],[1,1,4,2],[1,2,2,0]],[[1,2,2,0],[0,2,2,3],[1,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,2,2,2],[1,1,3,2],[1,2,1,2]],[[1,2,2,0],[0,2,2,2],[1,1,3,3],[1,2,1,1]],[[1,2,2,0],[0,2,2,2],[1,1,4,2],[1,2,1,1]],[[1,2,2,0],[0,2,2,3],[1,1,3,2],[1,2,1,1]],[[1,2,2,0],[0,2,2,2],[1,1,3,1],[1,2,2,2]],[[1,2,2,0],[0,2,2,2],[1,1,3,1],[1,2,3,1]],[[1,2,2,0],[0,2,2,2],[1,1,3,1],[1,3,2,1]],[[1,2,2,0],[0,2,2,2],[1,1,3,1],[2,2,2,1]],[[1,2,2,0],[0,2,2,2],[1,1,4,1],[1,2,2,1]],[[1,2,2,0],[0,2,2,2],[1,1,2,2],[1,2,2,2]],[[1,2,2,0],[0,2,2,2],[1,1,2,2],[1,2,3,1]],[[1,2,2,0],[0,2,2,2],[1,1,2,2],[1,3,2,1]],[[1,2,2,0],[0,2,2,2],[1,1,2,2],[2,2,2,1]],[[1,2,2,0],[0,2,2,2],[1,1,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,0,3,3],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,0,3,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,1],[1,0,3,2],[1,2,2,2]],[[1,0,1,1],[1,3,3,1],[1,1,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,1,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,1,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,3,1],[1,1,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,1],[1,1,2,2],[1,2,2,2]],[[1,0,1,1],[1,4,3,1],[1,1,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,4,1],[1,1,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,1,4,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,1,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,1,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,3,1],[1,1,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,3,1],[1,1,3,1],[1,2,2,2]],[[1,0,1,1],[1,4,3,1],[1,1,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,4,1],[1,1,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,1],[1,1,4,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,1],[1,1,3,3],[1,2,1,1]],[[1,0,1,1],[1,3,3,1],[1,1,3,2],[1,2,1,2]],[[1,0,1,1],[1,4,3,1],[1,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,4,1],[1,1,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,1],[1,1,4,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,1],[1,1,3,3],[1,2,2,0]],[[1,0,1,1],[1,3,3,1],[1,1,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,3,1],[1,1,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,3,1],[1,1,3,2],[1,2,3,0]],[[1,0,1,1],[1,3,3,1],[1,2,2,3],[1,1,2,1]],[[1,0,1,1],[1,3,3,1],[1,2,2,2],[1,1,3,1]],[[1,0,1,1],[1,3,3,1],[1,2,2,2],[1,1,2,2]],[[1,0,1,1],[1,4,3,1],[1,2,3,1],[1,1,2,1]],[[1,0,1,1],[1,3,4,1],[1,2,3,1],[1,1,2,1]],[[1,0,1,1],[1,3,3,1],[1,2,4,1],[1,1,2,1]],[[1,0,1,1],[1,3,3,1],[1,2,3,1],[1,1,3,1]],[[1,0,1,1],[1,3,3,1],[1,2,3,1],[1,1,2,2]],[[1,0,1,1],[1,4,3,1],[1,2,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,4,1],[1,2,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,3,1],[1,2,4,1],[1,2,1,1]],[[1,0,1,1],[1,3,4,1],[1,2,3,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,1],[1,2,4,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,1],[1,2,3,3],[1,0,2,1]],[[1,0,1,1],[1,3,3,1],[1,2,3,2],[1,0,2,2]],[[1,0,1,1],[1,4,3,1],[1,2,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,4,1],[1,2,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,1],[1,2,4,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,1],[1,2,3,3],[1,1,1,1]],[[1,0,1,1],[1,3,3,1],[1,2,3,2],[1,1,1,2]],[[1,0,1,1],[1,4,3,1],[1,2,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,4,1],[1,2,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,1],[1,2,4,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,1],[1,2,3,3],[1,1,2,0]],[[1,0,1,1],[1,3,3,1],[1,2,3,2],[1,1,3,0]],[[1,0,1,1],[1,4,3,1],[1,2,3,2],[1,2,0,1]],[[1,0,1,1],[1,3,4,1],[1,2,3,2],[1,2,0,1]],[[1,0,1,1],[1,3,3,1],[1,2,4,2],[1,2,0,1]],[[1,0,1,1],[1,3,3,1],[1,2,3,3],[1,2,0,1]],[[1,0,1,1],[1,3,3,1],[1,2,3,2],[1,2,0,2]],[[1,0,1,1],[1,4,3,1],[1,2,3,2],[1,2,1,0]],[[1,0,1,1],[1,3,4,1],[1,2,3,2],[1,2,1,0]],[[1,0,1,1],[1,3,3,1],[1,2,4,2],[1,2,1,0]],[[1,0,1,1],[1,3,3,1],[1,2,3,3],[1,2,1,0]],[[1,2,2,0],[0,2,2,3],[1,1,2,2],[1,2,2,1]],[[1,2,2,0],[0,2,2,2],[1,0,3,2],[1,2,2,2]],[[1,2,2,0],[0,2,2,2],[1,0,3,2],[1,2,3,1]],[[1,2,2,0],[0,2,2,2],[1,0,3,3],[1,2,2,1]],[[1,2,2,0],[0,2,2,3],[1,0,3,2],[1,2,2,1]],[[1,0,1,1],[1,4,3,1],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,4,1],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,4,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,3,0,3],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,3,0,2],[2,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,3,0,2],[1,3,2,1]],[[1,0,1,1],[1,3,3,1],[1,3,0,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,1],[1,3,0,2],[1,2,2,2]],[[1,0,1,1],[1,4,3,1],[1,3,1,1],[1,2,2,1]],[[1,0,1,1],[1,3,4,1],[1,3,1,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,4,1,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,3,1,1],[2,2,2,1]],[[1,0,1,1],[1,3,3,1],[1,3,1,1],[1,3,2,1]],[[1,0,1,1],[1,3,3,1],[1,3,1,1],[1,2,3,1]],[[1,0,1,1],[1,3,3,1],[1,3,1,1],[1,2,2,2]],[[1,0,1,1],[1,4,3,1],[1,3,1,2],[1,2,2,0]],[[1,0,1,1],[1,3,4,1],[1,3,1,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,1],[1,4,1,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,1],[1,3,1,2],[2,2,2,0]],[[1,0,1,1],[1,3,3,1],[1,3,1,2],[1,3,2,0]],[[1,0,1,1],[1,3,3,1],[1,3,1,2],[1,2,3,0]],[[1,0,1,1],[1,4,3,1],[1,3,2,1],[1,1,2,1]],[[1,0,1,1],[1,3,4,1],[1,3,2,1],[1,1,2,1]],[[1,0,1,1],[1,3,3,1],[1,4,2,1],[1,1,2,1]],[[1,0,1,1],[1,4,3,1],[1,3,2,1],[1,2,1,1]],[[1,0,1,1],[1,3,4,1],[1,3,2,1],[1,2,1,1]],[[1,0,1,1],[1,3,3,1],[1,4,2,1],[1,2,1,1]],[[1,0,1,1],[1,3,3,1],[1,3,2,1],[2,2,1,1]],[[1,0,1,1],[1,3,3,1],[1,3,2,1],[1,3,1,1]],[[1,0,1,1],[1,4,3,1],[1,3,2,2],[1,1,1,1]],[[1,0,1,1],[1,3,4,1],[1,3,2,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,1],[1,4,2,2],[1,1,1,1]],[[1,0,1,1],[1,4,3,1],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[1,3,4,1],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,1],[1,4,2,2],[1,1,2,0]],[[1,0,1,1],[1,4,3,1],[1,3,2,2],[1,2,0,1]],[[1,0,1,1],[1,3,4,1],[1,3,2,2],[1,2,0,1]],[[1,0,1,1],[1,3,3,1],[1,4,2,2],[1,2,0,1]],[[1,0,1,1],[1,3,3,1],[1,3,2,2],[2,2,0,1]],[[1,0,1,1],[1,3,3,1],[1,3,2,2],[1,3,0,1]],[[1,0,1,1],[1,4,3,1],[1,3,2,2],[1,2,1,0]],[[1,0,1,1],[1,3,4,1],[1,3,2,2],[1,2,1,0]],[[1,0,1,1],[1,3,3,1],[1,4,2,2],[1,2,1,0]],[[1,0,1,1],[1,3,3,1],[1,3,2,2],[2,2,1,0]],[[1,0,1,1],[1,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,0,1,1],[1,4,3,1],[1,3,3,2],[1,2,0,0]],[[1,0,1,1],[1,3,4,1],[1,3,3,2],[1,2,0,0]],[[1,0,1,1],[1,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,0,1,1],[1,3,3,1],[3,0,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,0,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,0,2,2],[2,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,0,2,2],[1,3,2,1]],[[1,0,1,1],[1,3,3,1],[2,0,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,1],[2,0,2,2],[1,2,2,2]],[[1,0,1,1],[1,4,3,1],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,4,1],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[3,0,3,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,0,4,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,0,3,1],[2,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,0,3,1],[1,3,2,1]],[[1,0,1,1],[1,3,3,1],[2,0,3,1],[1,2,3,1]],[[1,0,1,1],[1,3,3,1],[2,0,3,1],[1,2,2,2]],[[1,0,1,1],[1,3,3,1],[2,0,3,3],[0,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,0,3,2],[0,2,3,1]],[[1,0,1,1],[1,3,3,1],[2,0,3,2],[0,2,2,2]],[[1,0,1,1],[1,4,3,1],[2,0,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,4,1],[2,0,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,1],[2,0,4,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,1],[2,0,3,3],[1,2,1,1]],[[1,0,1,1],[1,3,3,1],[2,0,3,2],[1,2,1,2]],[[1,0,1,1],[1,4,3,1],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,4,1],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,1],[3,0,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,0,4,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,0,3,3],[1,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,0,3,2],[2,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,0,3,2],[1,3,2,0]],[[1,0,1,1],[1,3,3,1],[2,0,3,2],[1,2,3,0]],[[1,0,1,1],[1,3,3,1],[2,1,2,3],[0,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,1,2,2],[0,3,2,1]],[[1,0,1,1],[1,3,3,1],[2,1,2,2],[0,2,3,1]],[[1,0,1,1],[1,3,3,1],[2,1,2,2],[0,2,2,2]],[[1,0,1,1],[1,4,3,1],[2,1,3,1],[0,2,2,1]],[[1,0,1,1],[1,3,4,1],[2,1,3,1],[0,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,1,4,1],[0,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,1,3,1],[0,3,2,1]],[[1,0,1,1],[1,3,3,1],[2,1,3,1],[0,2,3,1]],[[1,0,1,1],[1,3,3,1],[2,1,3,1],[0,2,2,2]],[[1,0,1,1],[1,4,3,1],[2,1,3,2],[0,2,1,1]],[[1,0,1,1],[1,3,4,1],[2,1,3,2],[0,2,1,1]],[[1,0,1,1],[1,3,3,1],[2,1,4,2],[0,2,1,1]],[[1,0,1,1],[1,3,3,1],[2,1,3,3],[0,2,1,1]],[[1,0,1,1],[1,3,3,1],[2,1,3,2],[0,2,1,2]],[[1,0,1,1],[1,4,3,1],[2,1,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,4,1],[2,1,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,1,4,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,1,3,3],[0,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,1,3,2],[0,3,2,0]],[[1,0,1,1],[1,3,3,1],[2,1,3,2],[0,2,3,0]],[[1,0,1,1],[1,3,3,1],[3,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,0,3],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,0,2],[2,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,0,2],[1,3,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,0,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,1],[2,2,0,2],[1,2,2,2]],[[1,0,1,1],[1,3,3,1],[3,2,1,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,1,1],[2,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,1,1],[1,3,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,1,1],[1,2,3,1]],[[1,0,1,1],[1,3,3,1],[2,2,1,1],[1,2,2,2]],[[1,0,1,1],[1,3,3,1],[3,2,1,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,2,1,2],[2,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,2,1,2],[1,3,2,0]],[[1,0,1,1],[1,3,3,1],[2,2,1,2],[1,2,3,0]],[[1,0,1,1],[1,3,3,1],[3,2,2,1],[1,2,1,1]],[[1,0,1,1],[1,3,3,1],[2,2,2,1],[2,2,1,1]],[[1,0,1,1],[1,3,3,1],[2,2,2,1],[1,3,1,1]],[[1,0,1,1],[1,3,3,1],[2,2,2,3],[0,1,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,2,2],[0,1,3,1]],[[1,0,1,1],[1,3,3,1],[2,2,2,2],[0,1,2,2]],[[1,0,1,1],[1,3,3,1],[2,2,2,3],[1,0,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,2,2],[1,0,3,1]],[[1,0,1,1],[1,3,3,1],[2,2,2,2],[1,0,2,2]],[[1,0,1,1],[1,3,3,1],[3,2,2,2],[1,2,0,1]],[[1,0,1,1],[1,3,3,1],[2,2,2,2],[2,2,0,1]],[[1,0,1,1],[1,3,3,1],[2,2,2,2],[1,3,0,1]],[[1,0,1,1],[1,3,3,1],[3,2,2,2],[1,2,1,0]],[[1,0,1,1],[1,3,3,1],[2,2,2,2],[2,2,1,0]],[[1,0,1,1],[1,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,0,1,1],[1,4,3,1],[2,2,3,1],[0,1,2,1]],[[1,0,1,1],[1,3,4,1],[2,2,3,1],[0,1,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,4,1],[0,1,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,1],[0,1,3,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,1],[0,1,2,2]],[[1,0,1,1],[1,4,3,1],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[1,3,4,1],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[1,3,3,1],[2,2,4,1],[0,2,1,1]],[[1,0,1,1],[1,4,3,1],[2,2,3,1],[1,0,2,1]],[[1,0,1,1],[1,3,4,1],[2,2,3,1],[1,0,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,4,1],[1,0,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,1],[1,0,3,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,1],[1,0,2,2]],[[1,0,1,1],[1,4,3,1],[2,2,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,4,1],[2,2,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,3,1],[2,2,4,1],[1,1,1,1]],[[1,0,1,1],[1,4,3,1],[2,2,3,2],[0,0,2,1]],[[1,0,1,1],[1,3,4,1],[2,2,3,2],[0,0,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,4,2],[0,0,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,3],[0,0,2,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,2],[0,0,2,2]],[[1,0,1,1],[1,4,3,1],[2,2,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,4,1],[2,2,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,1],[2,2,4,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,3],[0,1,1,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,2],[0,1,1,2]],[[1,0,1,1],[1,4,3,1],[2,2,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,4,1],[2,2,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,1],[2,2,4,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,1],[2,2,3,3],[0,1,2,0]],[[1,0,1,1],[1,3,3,1],[2,2,3,2],[0,1,3,0]],[[1,0,1,1],[1,4,3,1],[2,2,3,2],[0,2,0,1]],[[1,0,1,1],[1,3,4,1],[2,2,3,2],[0,2,0,1]],[[1,0,1,1],[1,3,3,1],[2,2,4,2],[0,2,0,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,3],[0,2,0,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,2],[0,2,0,2]],[[1,0,1,1],[1,4,3,1],[2,2,3,2],[0,2,1,0]],[[1,0,1,1],[1,3,4,1],[2,2,3,2],[0,2,1,0]],[[1,0,1,1],[1,3,3,1],[2,2,4,2],[0,2,1,0]],[[1,0,1,1],[1,3,3,1],[2,2,3,3],[0,2,1,0]],[[1,0,1,1],[1,4,3,1],[2,2,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,4,1],[2,2,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,1],[2,2,4,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,3],[1,0,1,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,2],[1,0,1,2]],[[1,0,1,1],[1,4,3,1],[2,2,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,4,1],[2,2,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,1],[2,2,4,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,1],[2,2,3,3],[1,0,2,0]],[[1,0,1,1],[1,3,3,1],[2,2,3,2],[1,0,3,0]],[[1,0,1,1],[1,4,3,1],[2,2,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,4,1],[2,2,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,1],[2,2,4,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,3],[1,1,0,1]],[[1,0,1,1],[1,3,3,1],[2,2,3,2],[1,1,0,2]],[[1,0,1,1],[1,4,3,1],[2,2,3,2],[1,1,1,0]],[[1,0,1,1],[1,3,4,1],[2,2,3,2],[1,1,1,0]],[[1,0,1,1],[1,3,3,1],[2,2,4,2],[1,1,1,0]],[[1,0,1,1],[1,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,2,0],[0,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,0],[0,1,3,3],[2,3,3,2],[1,0,0,1]],[[1,2,2,0],[0,1,4,2],[2,3,3,2],[1,0,0,1]],[[1,2,3,0],[0,1,3,2],[2,3,3,2],[1,0,0,1]],[[1,3,2,0],[0,1,3,2],[2,3,3,2],[1,0,0,1]],[[2,2,2,0],[0,1,3,2],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[1,3,3,1],[3,3,0,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,3,0,1],[2,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,3,0,1],[1,3,2,1]],[[1,0,1,1],[1,4,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[1,3,4,1],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[1,3,3,1],[3,3,0,2],[0,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,4,0,2],[0,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,3,0,3],[0,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,3,0,2],[0,3,2,1]],[[1,0,1,1],[1,3,3,1],[2,3,0,2],[0,2,3,1]],[[1,0,1,1],[1,3,3,1],[2,3,0,2],[0,2,2,2]],[[1,0,1,1],[1,4,3,1],[2,3,0,2],[1,1,2,1]],[[1,0,1,1],[1,3,4,1],[2,3,0,2],[1,1,2,1]],[[1,0,1,1],[1,3,3,1],[3,3,0,2],[1,1,2,1]],[[1,0,1,1],[1,3,3,1],[2,4,0,2],[1,1,2,1]],[[1,0,1,1],[1,3,3,1],[2,3,0,2],[2,1,2,1]],[[1,0,1,1],[1,3,3,1],[3,3,0,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,3,0,2],[2,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,3,0,2],[1,3,2,0]],[[1,0,1,1],[1,4,3,1],[2,3,1,1],[0,2,2,1]],[[1,0,1,1],[1,3,4,1],[2,3,1,1],[0,2,2,1]],[[1,0,1,1],[1,3,3,1],[3,3,1,1],[0,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,4,1,1],[0,2,2,1]],[[1,0,1,1],[1,3,3,1],[2,3,1,1],[0,3,2,1]],[[1,0,1,1],[1,3,3,1],[2,3,1,1],[0,2,3,1]],[[1,0,1,1],[1,3,3,1],[2,3,1,1],[0,2,2,2]],[[1,0,1,1],[1,4,3,1],[2,3,1,1],[1,1,2,1]],[[1,0,1,1],[1,3,4,1],[2,3,1,1],[1,1,2,1]],[[1,0,1,1],[1,3,3,1],[3,3,1,1],[1,1,2,1]],[[1,0,1,1],[1,3,3,1],[2,4,1,1],[1,1,2,1]],[[1,0,1,1],[1,3,3,1],[2,3,1,1],[2,1,2,1]],[[1,0,1,1],[1,4,3,1],[2,3,1,2],[0,2,2,0]],[[1,0,1,1],[1,3,4,1],[2,3,1,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,1],[3,3,1,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,4,1,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,1],[2,3,1,2],[0,3,2,0]],[[1,0,1,1],[1,3,3,1],[2,3,1,2],[0,2,3,0]],[[1,0,1,1],[1,4,3,1],[2,3,1,2],[1,1,2,0]],[[1,0,1,1],[1,3,4,1],[2,3,1,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,1],[3,3,1,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,1],[2,4,1,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,0,1,1],[1,4,3,1],[2,3,2,1],[0,1,2,1]],[[1,0,1,1],[1,3,4,1],[2,3,2,1],[0,1,2,1]],[[1,0,1,1],[1,3,3,1],[3,3,2,1],[0,1,2,1]],[[1,0,1,1],[1,3,3,1],[2,4,2,1],[0,1,2,1]],[[1,0,1,1],[1,4,3,1],[2,3,2,1],[0,2,1,1]],[[1,0,1,1],[1,3,4,1],[2,3,2,1],[0,2,1,1]],[[1,0,1,1],[1,3,3,1],[3,3,2,1],[0,2,1,1]],[[1,0,1,1],[1,3,3,1],[2,4,2,1],[0,2,1,1]],[[1,0,1,1],[1,3,3,1],[2,3,2,1],[0,3,1,1]],[[1,0,1,1],[1,4,3,1],[2,3,2,1],[1,0,2,1]],[[1,0,1,1],[1,3,4,1],[2,3,2,1],[1,0,2,1]],[[1,0,1,1],[1,3,3,1],[3,3,2,1],[1,0,2,1]],[[1,0,1,1],[1,3,3,1],[2,4,2,1],[1,0,2,1]],[[1,0,1,1],[1,3,3,1],[2,3,2,1],[2,0,2,1]],[[1,0,1,1],[1,4,3,1],[2,3,2,1],[1,1,1,1]],[[1,0,1,1],[1,3,4,1],[2,3,2,1],[1,1,1,1]],[[1,0,1,1],[1,3,3,1],[3,3,2,1],[1,1,1,1]],[[1,0,1,1],[1,3,3,1],[2,4,2,1],[1,1,1,1]],[[1,0,1,1],[1,3,3,1],[2,3,2,1],[2,1,1,1]],[[1,0,1,1],[1,3,3,1],[3,3,2,1],[1,2,0,1]],[[1,0,1,1],[1,3,3,1],[2,4,2,1],[1,2,0,1]],[[1,0,1,1],[1,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,0,1,1],[1,4,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,1,1],[1,3,4,1],[2,3,2,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,1],[3,3,2,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,1],[2,4,2,2],[0,1,1,1]],[[1,0,1,1],[1,4,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,1,1],[1,3,4,1],[2,3,2,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,1],[3,3,2,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,1],[2,4,2,2],[0,1,2,0]],[[1,0,1,1],[1,4,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,1,1],[1,3,4,1],[2,3,2,2],[0,2,0,1]],[[1,0,1,1],[1,3,3,1],[3,3,2,2],[0,2,0,1]],[[1,0,1,1],[1,3,3,1],[2,4,2,2],[0,2,0,1]],[[1,0,1,1],[1,3,3,1],[2,3,2,2],[0,3,0,1]],[[1,0,1,1],[1,4,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,1,1],[1,3,4,1],[2,3,2,2],[0,2,1,0]],[[1,0,1,1],[1,3,3,1],[3,3,2,2],[0,2,1,0]],[[1,0,1,1],[1,3,3,1],[2,4,2,2],[0,2,1,0]],[[1,0,1,1],[1,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,0,1,1],[1,4,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[1,3,4,1],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,1],[3,3,2,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,1],[2,4,2,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,1],[2,3,2,2],[2,0,1,1]],[[1,0,1,1],[1,4,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,1,1],[1,3,4,1],[2,3,2,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,1],[3,3,2,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,1],[2,4,2,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,1],[2,3,2,2],[2,0,2,0]],[[1,0,1,1],[1,4,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[1,3,4,1],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,1],[3,3,2,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,1],[2,4,2,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,1],[2,3,2,2],[2,1,0,1]],[[1,0,1,1],[1,4,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,1,1],[1,3,4,1],[2,3,2,2],[1,1,1,0]],[[1,0,1,1],[1,3,3,1],[3,3,2,2],[1,1,1,0]],[[1,0,1,1],[1,3,3,1],[2,4,2,2],[1,1,1,0]],[[1,0,1,1],[1,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,0,1,1],[1,4,3,1],[2,3,2,2],[1,2,0,0]],[[1,0,1,1],[1,3,4,1],[2,3,2,2],[1,2,0,0]],[[1,0,1,1],[1,3,3,1],[3,3,2,2],[1,2,0,0]],[[1,0,1,1],[1,3,3,1],[2,4,2,2],[1,2,0,0]],[[1,0,1,1],[1,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,0],[0,1,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,0],[0,1,3,3],[2,3,3,2],[0,1,0,1]],[[1,2,2,0],[0,1,4,2],[2,3,3,2],[0,1,0,1]],[[1,2,3,0],[0,1,3,2],[2,3,3,2],[0,1,0,1]],[[1,3,2,0],[0,1,3,2],[2,3,3,2],[0,1,0,1]],[[2,2,2,0],[0,1,3,2],[2,3,3,2],[0,1,0,1]],[[1,0,1,1],[1,4,3,1],[2,3,3,1],[0,0,2,1]],[[1,0,1,1],[1,3,4,1],[2,3,3,1],[0,0,2,1]],[[1,0,1,1],[1,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,2,0],[0,1,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[0,1,3,2],[2,4,3,1],[1,2,0,0]],[[1,2,2,0],[0,1,3,2],[3,3,3,1],[1,2,0,0]],[[1,0,1,1],[1,4,3,1],[2,3,3,2],[0,0,1,1]],[[1,0,1,1],[1,3,4,1],[2,3,3,2],[0,0,1,1]],[[1,0,1,1],[1,3,3,1],[2,3,4,2],[0,0,1,1]],[[1,0,1,1],[1,3,3,1],[2,3,3,3],[0,0,1,1]],[[1,0,1,1],[1,3,3,1],[2,3,3,2],[0,0,1,2]],[[1,0,1,1],[1,4,3,1],[2,3,3,2],[0,0,2,0]],[[1,0,1,1],[1,3,4,1],[2,3,3,2],[0,0,2,0]],[[1,0,1,1],[1,3,3,1],[2,3,4,2],[0,0,2,0]],[[1,0,1,1],[1,3,3,1],[2,3,3,3],[0,0,2,0]],[[1,2,2,0],[0,1,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,0],[0,1,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,2,0],[0,1,3,2],[2,4,3,1],[1,1,1,0]],[[1,2,2,0],[0,1,3,2],[3,3,3,1],[1,1,1,0]],[[1,2,2,0],[0,1,3,3],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[1,4,3,1],[2,3,3,2],[0,2,0,0]],[[1,0,1,1],[1,3,4,1],[2,3,3,2],[0,2,0,0]],[[1,0,1,1],[1,3,3,1],[3,3,3,2],[0,2,0,0]],[[1,0,1,1],[1,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,2,0],[0,1,4,2],[2,3,3,1],[1,1,1,0]],[[1,2,3,0],[0,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,3,2,0],[0,1,3,2],[2,3,3,1],[1,1,1,0]],[[2,2,2,0],[0,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,2,2,0],[0,1,3,2],[2,3,3,1],[2,1,0,1]],[[1,2,2,0],[0,1,3,2],[2,3,4,1],[1,1,0,1]],[[1,2,2,0],[0,1,3,2],[2,4,3,1],[1,1,0,1]],[[1,2,2,0],[0,1,3,2],[3,3,3,1],[1,1,0,1]],[[1,2,2,0],[0,1,3,3],[2,3,3,1],[1,1,0,1]],[[1,2,2,0],[0,1,4,2],[2,3,3,1],[1,1,0,1]],[[1,2,3,0],[0,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,3,2,0],[0,1,3,2],[2,3,3,1],[1,1,0,1]],[[2,2,2,0],[0,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,2,2,0],[0,1,3,2],[2,3,3,1],[1,0,3,0]],[[1,2,2,0],[0,1,3,2],[2,3,3,1],[2,0,2,0]],[[1,2,2,0],[0,1,3,2],[2,3,4,1],[1,0,2,0]],[[1,2,2,0],[0,1,3,2],[2,4,3,1],[1,0,2,0]],[[1,2,2,0],[0,1,3,2],[3,3,3,1],[1,0,2,0]],[[1,2,2,0],[0,1,3,3],[2,3,3,1],[1,0,2,0]],[[1,2,2,0],[0,1,4,2],[2,3,3,1],[1,0,2,0]],[[1,2,3,0],[0,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,3,2,0],[0,1,3,2],[2,3,3,1],[1,0,2,0]],[[2,2,2,0],[0,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[1,4,3,1],[2,3,3,2],[1,1,0,0]],[[1,0,1,1],[1,3,4,1],[2,3,3,2],[1,1,0,0]],[[1,0,1,1],[1,3,3,1],[3,3,3,2],[1,1,0,0]],[[1,0,1,1],[1,3,3,1],[2,4,3,2],[1,1,0,0]],[[1,0,1,1],[1,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,2,0],[0,1,3,2],[2,3,3,1],[2,0,1,1]],[[1,2,2,0],[0,1,3,2],[2,3,4,1],[1,0,1,1]],[[1,2,2,0],[0,1,3,2],[2,4,3,1],[1,0,1,1]],[[1,2,2,0],[0,1,3,2],[3,3,3,1],[1,0,1,1]],[[1,2,2,0],[0,1,3,3],[2,3,3,1],[1,0,1,1]],[[1,2,2,0],[0,1,4,2],[2,3,3,1],[1,0,1,1]],[[1,2,3,0],[0,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,3,2,0],[0,1,3,2],[2,3,3,1],[1,0,1,1]],[[2,2,2,0],[0,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,2,2,0],[0,1,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[0,1,3,2],[2,3,4,1],[0,2,1,0]],[[1,2,2,0],[0,1,3,2],[2,4,3,1],[0,2,1,0]],[[1,2,2,0],[0,1,3,2],[3,3,3,1],[0,2,1,0]],[[1,2,2,0],[0,1,3,3],[2,3,3,1],[0,2,1,0]],[[1,2,2,0],[0,1,4,2],[2,3,3,1],[0,2,1,0]],[[1,2,3,0],[0,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,3,2,0],[0,1,3,2],[2,3,3,1],[0,2,1,0]],[[2,2,2,0],[0,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,2,2,0],[0,1,3,2],[2,3,3,1],[0,3,0,1]],[[1,2,2,0],[0,1,3,2],[2,3,4,1],[0,2,0,1]],[[1,2,2,0],[0,1,3,2],[2,4,3,1],[0,2,0,1]],[[1,2,2,0],[0,1,3,2],[3,3,3,1],[0,2,0,1]],[[1,2,2,0],[0,1,3,3],[2,3,3,1],[0,2,0,1]],[[1,2,2,0],[0,1,4,2],[2,3,3,1],[0,2,0,1]],[[1,2,3,0],[0,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,3,2,0],[0,1,3,2],[2,3,3,1],[0,2,0,1]],[[2,2,2,0],[0,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,2,2,0],[0,1,3,2],[2,3,3,1],[0,1,3,0]],[[1,2,2,0],[0,1,3,2],[2,3,4,1],[0,1,2,0]],[[1,2,2,0],[0,1,3,2],[2,4,3,1],[0,1,2,0]],[[1,2,2,0],[0,1,3,2],[3,3,3,1],[0,1,2,0]],[[1,2,2,0],[0,1,3,3],[2,3,3,1],[0,1,2,0]],[[1,2,2,0],[0,1,4,2],[2,3,3,1],[0,1,2,0]],[[1,2,3,0],[0,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,3,2,0],[0,1,3,2],[2,3,3,1],[0,1,2,0]],[[2,2,2,0],[0,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,2,2,0],[0,1,3,2],[2,3,4,1],[0,1,1,1]],[[1,2,2,0],[0,1,3,2],[2,4,3,1],[0,1,1,1]],[[1,2,2,0],[0,1,3,2],[3,3,3,1],[0,1,1,1]],[[1,2,2,0],[0,1,3,3],[2,3,3,1],[0,1,1,1]],[[1,2,2,0],[0,1,4,2],[2,3,3,1],[0,1,1,1]],[[1,2,3,0],[0,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,3,2,0],[0,1,3,2],[2,3,3,1],[0,1,1,1]],[[2,2,2,0],[0,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,2,2,0],[0,1,3,2],[2,3,4,1],[0,0,2,1]],[[1,2,2,0],[0,1,3,3],[2,3,3,1],[0,0,2,1]],[[1,2,2,0],[0,1,4,2],[2,3,3,1],[0,0,2,1]],[[1,2,3,0],[0,1,3,2],[2,3,3,1],[0,0,2,1]],[[1,3,2,0],[0,1,3,2],[2,3,3,1],[0,0,2,1]],[[2,2,2,0],[0,1,3,2],[2,3,3,1],[0,0,2,1]],[[1,2,2,0],[0,1,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,0],[0,1,3,2],[2,4,3,0],[1,2,0,1]],[[1,2,2,0],[0,1,3,2],[3,3,3,0],[1,2,0,1]],[[1,2,2,0],[0,1,3,2],[2,3,3,0],[2,1,1,1]],[[1,2,2,0],[0,1,3,2],[2,3,4,0],[1,1,1,1]],[[1,2,2,0],[0,1,3,2],[2,4,3,0],[1,1,1,1]],[[1,2,2,0],[0,1,3,2],[3,3,3,0],[1,1,1,1]],[[1,2,2,0],[0,1,3,3],[2,3,3,0],[1,1,1,1]],[[1,2,2,0],[0,1,4,2],[2,3,3,0],[1,1,1,1]],[[1,0,1,2],[1,3,3,2],[1,0,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,4,2],[1,0,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,3],[1,0,2,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,0,2,3],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,0,2,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,2],[1,0,2,2],[1,2,2,2]],[[1,0,1,2],[1,3,3,2],[1,0,3,2],[1,1,2,1]],[[1,0,1,1],[1,3,4,2],[1,0,3,2],[1,1,2,1]],[[1,0,1,1],[1,3,3,3],[1,0,3,2],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[1,0,3,3],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[1,0,3,2],[1,1,2,2]],[[1,0,1,2],[1,3,3,2],[1,0,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,4,2],[1,0,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,3],[1,0,3,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,0,3,3],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,0,3,2],[1,2,1,2]],[[1,0,1,2],[1,3,3,2],[1,0,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,4,2],[1,0,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,3],[1,0,3,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,0,3,3],[1,2,2,0]],[[1,0,1,2],[1,3,3,2],[1,1,1,2],[1,2,2,1]],[[1,0,1,1],[1,4,3,2],[1,1,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,4,2],[1,1,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,3],[1,1,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,1,1,3],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,1,1,2],[2,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,1,1,2],[1,3,2,1]],[[1,0,1,1],[1,3,3,2],[1,1,1,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,2],[1,1,1,2],[1,2,2,2]],[[1,0,1,2],[1,3,3,2],[1,1,2,2],[1,2,1,1]],[[1,0,1,1],[1,4,3,2],[1,1,2,2],[1,2,1,1]],[[1,0,1,1],[1,3,4,2],[1,1,2,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,3],[1,1,2,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,1,2,3],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,1,2,2],[1,2,1,2]],[[1,0,1,2],[1,3,3,2],[1,1,2,2],[1,2,2,0]],[[1,0,1,1],[1,4,3,2],[1,1,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,4,2],[1,1,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,3],[1,1,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,1,2,3],[1,2,2,0]],[[1,0,1,2],[1,3,3,2],[1,1,3,0],[1,2,2,1]],[[1,0,1,1],[1,4,3,2],[1,1,3,0],[1,2,2,1]],[[1,0,1,1],[1,3,4,2],[1,1,3,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,3],[1,1,3,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,1,4,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,1,3,0],[2,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,1,3,0],[1,3,2,1]],[[1,0,1,1],[1,3,3,2],[1,1,3,0],[1,2,3,1]],[[1,0,1,1],[1,3,3,2],[1,1,3,0],[1,2,2,2]],[[1,0,1,2],[1,3,3,2],[1,1,3,1],[1,2,1,1]],[[1,0,1,1],[1,4,3,2],[1,1,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,4,2],[1,1,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,3,3],[1,1,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,1,4,1],[1,2,1,1]],[[1,0,1,2],[1,3,3,2],[1,1,3,1],[1,2,2,0]],[[1,0,1,1],[1,4,3,2],[1,1,3,1],[1,2,2,0]],[[1,0,1,1],[1,3,4,2],[1,1,3,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,3],[1,1,3,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,1,4,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,1,3,1],[2,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,1,3,1],[1,3,2,0]],[[1,0,1,1],[1,3,3,2],[1,1,3,1],[1,2,3,0]],[[1,0,1,2],[1,3,3,2],[1,1,3,2],[1,0,2,1]],[[1,0,1,1],[1,3,4,2],[1,1,3,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,3],[1,1,3,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[1,1,3,3],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[1,1,3,2],[1,0,2,2]],[[1,0,1,2],[1,3,3,2],[1,1,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,4,2],[1,1,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,3],[1,1,3,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[1,1,3,3],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[1,1,3,2],[1,1,1,2]],[[1,0,1,2],[1,3,3,2],[1,1,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,4,2],[1,1,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,3],[1,1,3,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[1,1,3,3],[1,1,2,0]],[[1,2,3,0],[0,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,3,2,0],[0,1,3,2],[2,3,3,0],[1,1,1,1]],[[2,2,2,0],[0,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,2,2,0],[0,1,3,2],[2,3,3,0],[1,0,2,2]],[[1,2,2,0],[0,1,3,2],[2,3,3,0],[1,0,3,1]],[[1,2,2,0],[0,1,3,2],[2,3,3,0],[2,0,2,1]],[[1,2,2,0],[0,1,3,2],[2,3,4,0],[1,0,2,1]],[[1,2,2,0],[0,1,3,2],[2,4,3,0],[1,0,2,1]],[[1,2,2,0],[0,1,3,2],[3,3,3,0],[1,0,2,1]],[[1,2,2,0],[0,1,3,3],[2,3,3,0],[1,0,2,1]],[[1,0,1,2],[1,3,3,2],[1,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,4,3,2],[1,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,4,2],[1,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,3],[1,2,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,2,0,3],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,2,0,2],[2,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,2,0,2],[1,3,2,1]],[[1,0,1,1],[1,3,3,2],[1,2,0,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,2],[1,2,0,2],[1,2,2,2]],[[1,0,1,2],[1,3,3,2],[1,2,1,2],[1,1,2,1]],[[1,0,1,1],[1,4,3,2],[1,2,1,2],[1,1,2,1]],[[1,0,1,1],[1,3,4,2],[1,2,1,2],[1,1,2,1]],[[1,0,1,1],[1,3,3,3],[1,2,1,2],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[1,2,1,3],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[1,2,1,2],[1,1,3,1]],[[1,0,1,1],[1,3,3,2],[1,2,1,2],[1,1,2,2]],[[1,0,1,2],[1,3,3,2],[1,2,2,2],[1,0,2,1]],[[1,0,1,1],[1,3,4,2],[1,2,2,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,3],[1,2,2,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[1,2,2,3],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[1,2,2,2],[1,0,2,2]],[[1,0,1,2],[1,3,3,2],[1,2,2,2],[1,1,1,1]],[[1,0,1,1],[1,4,3,2],[1,2,2,2],[1,1,1,1]],[[1,0,1,1],[1,3,4,2],[1,2,2,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,3],[1,2,2,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[1,2,2,3],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[1,2,2,2],[1,1,1,2]],[[1,0,1,2],[1,3,3,2],[1,2,2,2],[1,1,2,0]],[[1,0,1,1],[1,4,3,2],[1,2,2,2],[1,1,2,0]],[[1,0,1,1],[1,3,4,2],[1,2,2,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,3],[1,2,2,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[1,2,2,3],[1,1,2,0]],[[1,0,1,2],[1,3,3,2],[1,2,2,2],[1,2,0,1]],[[1,0,1,1],[1,4,3,2],[1,2,2,2],[1,2,0,1]],[[1,0,1,1],[1,3,4,2],[1,2,2,2],[1,2,0,1]],[[1,0,1,1],[1,3,3,3],[1,2,2,2],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[1,2,2,3],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[1,2,2,2],[1,2,0,2]],[[1,0,1,2],[1,3,3,2],[1,2,2,2],[1,2,1,0]],[[1,0,1,1],[1,4,3,2],[1,2,2,2],[1,2,1,0]],[[1,0,1,1],[1,3,4,2],[1,2,2,2],[1,2,1,0]],[[1,0,1,1],[1,3,3,3],[1,2,2,2],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,2,2,3],[1,2,1,0]],[[1,2,2,0],[0,1,4,2],[2,3,3,0],[1,0,2,1]],[[1,2,3,0],[0,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,3,2,0],[0,1,3,2],[2,3,3,0],[1,0,2,1]],[[2,2,2,0],[0,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,0,1,2],[1,3,3,2],[1,2,3,0],[1,1,2,1]],[[1,0,1,1],[1,4,3,2],[1,2,3,0],[1,1,2,1]],[[1,0,1,1],[1,3,4,2],[1,2,3,0],[1,1,2,1]],[[1,0,1,1],[1,3,3,3],[1,2,3,0],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[1,2,4,0],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[1,2,3,0],[1,1,3,1]],[[1,0,1,1],[1,3,3,2],[1,2,3,0],[1,1,2,2]],[[1,0,1,2],[1,3,3,2],[1,2,3,0],[1,2,1,1]],[[1,0,1,1],[1,4,3,2],[1,2,3,0],[1,2,1,1]],[[1,0,1,1],[1,3,4,2],[1,2,3,0],[1,2,1,1]],[[1,0,1,1],[1,3,3,3],[1,2,3,0],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,2,4,0],[1,2,1,1]],[[1,0,1,2],[1,3,3,2],[1,2,3,1],[1,0,2,1]],[[1,0,1,1],[1,3,4,2],[1,2,3,1],[1,0,2,1]],[[1,0,1,1],[1,3,3,3],[1,2,3,1],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[1,2,4,1],[1,0,2,1]],[[1,0,1,2],[1,3,3,2],[1,2,3,1],[1,1,1,1]],[[1,0,1,1],[1,4,3,2],[1,2,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,4,2],[1,2,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,3,3],[1,2,3,1],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[1,2,4,1],[1,1,1,1]],[[1,0,1,2],[1,3,3,2],[1,2,3,1],[1,1,2,0]],[[1,0,1,1],[1,4,3,2],[1,2,3,1],[1,1,2,0]],[[1,0,1,1],[1,3,4,2],[1,2,3,1],[1,1,2,0]],[[1,0,1,1],[1,3,3,3],[1,2,3,1],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[1,2,4,1],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[1,2,3,1],[1,1,3,0]],[[1,0,1,2],[1,3,3,2],[1,2,3,1],[1,2,0,1]],[[1,0,1,1],[1,4,3,2],[1,2,3,1],[1,2,0,1]],[[1,0,1,1],[1,3,4,2],[1,2,3,1],[1,2,0,1]],[[1,0,1,1],[1,3,3,3],[1,2,3,1],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[1,2,4,1],[1,2,0,1]],[[1,0,1,2],[1,3,3,2],[1,2,3,1],[1,2,1,0]],[[1,0,1,1],[1,4,3,2],[1,2,3,1],[1,2,1,0]],[[1,0,1,1],[1,3,4,2],[1,2,3,1],[1,2,1,0]],[[1,0,1,1],[1,3,3,3],[1,2,3,1],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,2,0],[0,1,3,2],[2,3,3,0],[0,3,1,1]],[[1,2,2,0],[0,1,3,2],[2,3,4,0],[0,2,1,1]],[[1,2,2,0],[0,1,3,2],[2,4,3,0],[0,2,1,1]],[[1,0,1,2],[1,3,3,2],[1,2,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,4,2],[1,2,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,3],[1,2,3,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,2,0],[0,1,3,2],[3,3,3,0],[0,2,1,1]],[[1,2,2,0],[0,1,3,3],[2,3,3,0],[0,2,1,1]],[[1,2,2,0],[0,1,4,2],[2,3,3,0],[0,2,1,1]],[[1,2,3,0],[0,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,3,2,0],[0,1,3,2],[2,3,3,0],[0,2,1,1]],[[2,2,2,0],[0,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,2,2,0],[0,1,3,2],[2,3,3,0],[0,1,2,2]],[[1,2,2,0],[0,1,3,2],[2,3,3,0],[0,1,3,1]],[[1,2,2,0],[0,1,3,2],[2,3,4,0],[0,1,2,1]],[[1,2,2,0],[0,1,3,2],[2,4,3,0],[0,1,2,1]],[[1,2,2,0],[0,1,3,2],[3,3,3,0],[0,1,2,1]],[[1,2,2,0],[0,1,3,3],[2,3,3,0],[0,1,2,1]],[[1,2,2,0],[0,1,4,2],[2,3,3,0],[0,1,2,1]],[[1,2,3,0],[0,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,3,2,0],[0,1,3,2],[2,3,3,0],[0,1,2,1]],[[2,2,2,0],[0,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,1,2],[1,3,3,2],[1,3,0,1],[1,2,2,1]],[[1,0,1,1],[1,4,3,2],[1,3,0,1],[1,2,2,1]],[[1,0,1,1],[1,3,4,2],[1,3,0,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,3],[1,3,0,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,4,0,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,3,0,1],[2,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,3,0,1],[1,3,2,1]],[[1,0,1,1],[1,3,3,2],[1,3,0,1],[1,2,3,1]],[[1,0,1,1],[1,3,3,2],[1,3,0,1],[1,2,2,2]],[[1,0,1,2],[1,3,3,2],[1,3,0,2],[1,1,2,1]],[[1,0,1,1],[1,4,3,2],[1,3,0,2],[1,1,2,1]],[[1,0,1,1],[1,3,4,2],[1,3,0,2],[1,1,2,1]],[[1,0,1,1],[1,3,3,3],[1,3,0,2],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[1,4,0,2],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[1,3,0,3],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[1,3,0,2],[1,1,3,1]],[[1,0,1,1],[1,3,3,2],[1,3,0,2],[1,1,2,2]],[[1,0,1,2],[1,3,3,2],[1,3,0,2],[1,2,1,1]],[[1,0,1,1],[1,4,3,2],[1,3,0,2],[1,2,1,1]],[[1,0,1,1],[1,3,4,2],[1,3,0,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,3],[1,3,0,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,4,0,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,3,0,3],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,3,0,2],[2,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,3,0,2],[1,3,1,1]],[[1,0,1,1],[1,3,3,2],[1,3,0,2],[1,2,1,2]],[[1,0,1,2],[1,3,3,2],[1,3,0,2],[1,2,2,0]],[[1,0,1,1],[1,4,3,2],[1,3,0,2],[1,2,2,0]],[[1,0,1,1],[1,3,4,2],[1,3,0,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,3],[1,3,0,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,4,0,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,3,0,3],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,3,0,2],[2,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,3,0,2],[1,3,2,0]],[[1,0,1,1],[1,3,3,2],[1,3,0,2],[1,2,3,0]],[[1,0,1,2],[1,3,3,2],[1,3,1,0],[1,2,2,1]],[[1,0,1,1],[1,4,3,2],[1,3,1,0],[1,2,2,1]],[[1,0,1,1],[1,3,4,2],[1,3,1,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,3],[1,3,1,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,4,1,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,3,1,0],[2,2,2,1]],[[1,0,1,1],[1,3,3,2],[1,3,1,0],[1,3,2,1]],[[1,0,1,1],[1,3,3,2],[1,3,1,0],[1,2,3,1]],[[1,0,1,1],[1,3,3,2],[1,3,1,0],[1,2,2,2]],[[1,0,1,2],[1,3,3,2],[1,3,1,1],[1,2,2,0]],[[1,0,1,1],[1,4,3,2],[1,3,1,1],[1,2,2,0]],[[1,0,1,1],[1,3,4,2],[1,3,1,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,3],[1,3,1,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,4,1,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,3,1,1],[2,2,2,0]],[[1,0,1,1],[1,3,3,2],[1,3,1,1],[1,3,2,0]],[[1,0,1,1],[1,3,3,2],[1,3,1,1],[1,2,3,0]],[[1,0,1,2],[1,3,3,2],[1,3,1,2],[1,1,1,1]],[[1,0,1,1],[1,4,3,2],[1,3,1,2],[1,1,1,1]],[[1,0,1,1],[1,3,4,2],[1,3,1,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,3],[1,3,1,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[1,4,1,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[1,3,1,3],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[1,3,1,2],[1,1,1,2]],[[1,0,1,2],[1,3,3,2],[1,3,1,2],[1,1,2,0]],[[1,0,1,1],[1,4,3,2],[1,3,1,2],[1,1,2,0]],[[1,0,1,1],[1,3,4,2],[1,3,1,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,3],[1,3,1,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[1,4,1,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[1,3,1,3],[1,1,2,0]],[[1,0,1,2],[1,3,3,2],[1,3,1,2],[1,2,0,1]],[[1,0,1,1],[1,4,3,2],[1,3,1,2],[1,2,0,1]],[[1,0,1,1],[1,3,4,2],[1,3,1,2],[1,2,0,1]],[[1,0,1,1],[1,3,3,3],[1,3,1,2],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[1,4,1,2],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[1,3,1,3],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[1,3,1,2],[2,2,0,1]],[[1,0,1,1],[1,3,3,2],[1,3,1,2],[1,3,0,1]],[[1,0,1,1],[1,3,3,2],[1,3,1,2],[1,2,0,2]],[[1,0,1,2],[1,3,3,2],[1,3,1,2],[1,2,1,0]],[[1,0,1,1],[1,4,3,2],[1,3,1,2],[1,2,1,0]],[[1,0,1,1],[1,3,4,2],[1,3,1,2],[1,2,1,0]],[[1,0,1,1],[1,3,3,3],[1,3,1,2],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,4,1,2],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,3,1,3],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,3,1,2],[2,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,0,1,2],[1,3,3,2],[1,3,2,0],[1,1,2,1]],[[1,0,1,1],[1,4,3,2],[1,3,2,0],[1,1,2,1]],[[1,0,1,1],[1,3,4,2],[1,3,2,0],[1,1,2,1]],[[1,0,1,1],[1,3,3,3],[1,3,2,0],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[1,4,2,0],[1,1,2,1]],[[1,0,1,2],[1,3,3,2],[1,3,2,0],[1,2,1,1]],[[1,0,1,1],[1,4,3,2],[1,3,2,0],[1,2,1,1]],[[1,0,1,1],[1,3,4,2],[1,3,2,0],[1,2,1,1]],[[1,0,1,1],[1,3,3,3],[1,3,2,0],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,4,2,0],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,3,2,0],[2,2,1,1]],[[1,0,1,1],[1,3,3,2],[1,3,2,0],[1,3,1,1]],[[1,0,1,2],[1,3,3,2],[1,3,2,1],[1,1,1,1]],[[1,0,1,1],[1,4,3,2],[1,3,2,1],[1,1,1,1]],[[1,0,1,1],[1,3,4,2],[1,3,2,1],[1,1,1,1]],[[1,0,1,1],[1,3,3,3],[1,3,2,1],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[1,4,2,1],[1,1,1,1]],[[1,0,1,2],[1,3,3,2],[1,3,2,1],[1,1,2,0]],[[1,0,1,1],[1,4,3,2],[1,3,2,1],[1,1,2,0]],[[1,0,1,1],[1,3,4,2],[1,3,2,1],[1,1,2,0]],[[1,0,1,1],[1,3,3,3],[1,3,2,1],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[1,4,2,1],[1,1,2,0]],[[1,0,1,2],[1,3,3,2],[1,3,2,1],[1,2,0,1]],[[1,0,1,1],[1,4,3,2],[1,3,2,1],[1,2,0,1]],[[1,0,1,1],[1,3,4,2],[1,3,2,1],[1,2,0,1]],[[1,0,1,1],[1,3,3,3],[1,3,2,1],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[1,4,2,1],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[1,3,2,1],[2,2,0,1]],[[1,0,1,1],[1,3,3,2],[1,3,2,1],[1,3,0,1]],[[1,0,1,2],[1,3,3,2],[1,3,2,1],[1,2,1,0]],[[1,0,1,1],[1,4,3,2],[1,3,2,1],[1,2,1,0]],[[1,0,1,1],[1,3,4,2],[1,3,2,1],[1,2,1,0]],[[1,0,1,1],[1,3,3,3],[1,3,2,1],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,4,2,1],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,3,2,1],[2,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,2,0],[0,1,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,0],[0,1,3,3],[2,3,2,2],[1,1,1,0]],[[1,2,2,0],[0,1,4,2],[2,3,2,2],[1,1,1,0]],[[1,2,3,0],[0,1,3,2],[2,3,2,2],[1,1,1,0]],[[1,3,2,0],[0,1,3,2],[2,3,2,2],[1,1,1,0]],[[2,2,2,0],[0,1,3,2],[2,3,2,2],[1,1,1,0]],[[1,2,2,0],[0,1,3,2],[2,3,2,2],[1,1,0,2]],[[1,2,2,0],[0,1,3,2],[2,3,2,3],[1,1,0,1]],[[1,2,2,0],[0,1,3,3],[2,3,2,2],[1,1,0,1]],[[1,2,2,0],[0,1,4,2],[2,3,2,2],[1,1,0,1]],[[1,2,3,0],[0,1,3,2],[2,3,2,2],[1,1,0,1]],[[1,3,2,0],[0,1,3,2],[2,3,2,2],[1,1,0,1]],[[2,2,2,0],[0,1,3,2],[2,3,2,2],[1,1,0,1]],[[1,2,2,0],[0,1,3,2],[2,3,2,3],[1,0,2,0]],[[1,2,2,0],[0,1,3,3],[2,3,2,2],[1,0,2,0]],[[1,2,2,0],[0,1,4,2],[2,3,2,2],[1,0,2,0]],[[1,2,3,0],[0,1,3,2],[2,3,2,2],[1,0,2,0]],[[1,3,2,0],[0,1,3,2],[2,3,2,2],[1,0,2,0]],[[2,2,2,0],[0,1,3,2],[2,3,2,2],[1,0,2,0]],[[1,2,2,0],[0,1,3,2],[2,3,2,2],[1,0,1,2]],[[1,2,2,0],[0,1,3,2],[2,3,2,3],[1,0,1,1]],[[1,2,2,0],[0,1,3,3],[2,3,2,2],[1,0,1,1]],[[1,2,2,0],[0,1,4,2],[2,3,2,2],[1,0,1,1]],[[1,2,3,0],[0,1,3,2],[2,3,2,2],[1,0,1,1]],[[1,3,2,0],[0,1,3,2],[2,3,2,2],[1,0,1,1]],[[2,2,2,0],[0,1,3,2],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[1,4,3,2],[1,3,3,0],[1,1,2,0]],[[1,0,1,1],[1,3,4,2],[1,3,3,0],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[1,4,3,0],[1,1,2,0]],[[1,0,1,1],[1,4,3,2],[1,3,3,0],[1,2,1,0]],[[1,0,1,1],[1,3,4,2],[1,3,3,0],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,4,3,0],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,3,3,0],[2,2,1,0]],[[1,0,1,1],[1,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,2,0],[0,1,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,0],[0,1,3,3],[2,3,2,2],[0,2,1,0]],[[1,2,2,0],[0,1,4,2],[2,3,2,2],[0,2,1,0]],[[1,2,3,0],[0,1,3,2],[2,3,2,2],[0,2,1,0]],[[1,3,2,0],[0,1,3,2],[2,3,2,2],[0,2,1,0]],[[2,2,2,0],[0,1,3,2],[2,3,2,2],[0,2,1,0]],[[1,2,2,0],[0,1,3,2],[2,3,2,2],[0,2,0,2]],[[1,2,2,0],[0,1,3,2],[2,3,2,3],[0,2,0,1]],[[1,2,2,0],[0,1,3,3],[2,3,2,2],[0,2,0,1]],[[1,2,2,0],[0,1,4,2],[2,3,2,2],[0,2,0,1]],[[1,2,3,0],[0,1,3,2],[2,3,2,2],[0,2,0,1]],[[1,0,1,2],[1,3,3,2],[1,3,3,1],[1,2,0,0]],[[1,0,1,1],[1,4,3,2],[1,3,3,1],[1,2,0,0]],[[1,0,1,1],[1,3,4,2],[1,3,3,1],[1,2,0,0]],[[1,0,1,1],[1,3,3,3],[1,3,3,1],[1,2,0,0]],[[1,0,1,1],[1,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,3,2,0],[0,1,3,2],[2,3,2,2],[0,2,0,1]],[[2,2,2,0],[0,1,3,2],[2,3,2,2],[0,2,0,1]],[[1,2,2,0],[0,1,3,2],[2,3,2,3],[0,1,2,0]],[[1,2,2,0],[0,1,3,3],[2,3,2,2],[0,1,2,0]],[[1,2,2,0],[0,1,4,2],[2,3,2,2],[0,1,2,0]],[[1,2,3,0],[0,1,3,2],[2,3,2,2],[0,1,2,0]],[[1,3,2,0],[0,1,3,2],[2,3,2,2],[0,1,2,0]],[[2,2,2,0],[0,1,3,2],[2,3,2,2],[0,1,2,0]],[[1,2,2,0],[0,1,3,2],[2,3,2,2],[0,1,1,2]],[[1,2,2,0],[0,1,3,2],[2,3,2,3],[0,1,1,1]],[[1,2,2,0],[0,1,3,3],[2,3,2,2],[0,1,1,1]],[[1,2,2,0],[0,1,4,2],[2,3,2,2],[0,1,1,1]],[[1,2,3,0],[0,1,3,2],[2,3,2,2],[0,1,1,1]],[[1,3,2,0],[0,1,3,2],[2,3,2,2],[0,1,1,1]],[[2,2,2,0],[0,1,3,2],[2,3,2,2],[0,1,1,1]],[[1,2,2,0],[0,1,3,2],[2,3,2,2],[0,0,2,2]],[[1,2,2,0],[0,1,3,2],[2,3,2,3],[0,0,2,1]],[[1,2,2,0],[0,1,3,3],[2,3,2,2],[0,0,2,1]],[[1,2,2,0],[0,1,4,2],[2,3,2,2],[0,0,2,1]],[[1,2,3,0],[0,1,3,2],[2,3,2,2],[0,0,2,1]],[[1,3,2,0],[0,1,3,2],[2,3,2,2],[0,0,2,1]],[[2,2,2,0],[0,1,3,2],[2,3,2,2],[0,0,2,1]],[[1,2,2,0],[0,1,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[0,1,3,2],[2,4,2,1],[1,1,2,0]],[[1,2,2,0],[0,1,3,2],[3,3,2,1],[1,1,2,0]],[[1,2,2,0],[0,1,3,2],[2,3,2,1],[0,2,3,0]],[[1,2,2,0],[0,1,3,2],[2,3,2,1],[0,3,2,0]],[[1,2,2,0],[0,1,3,2],[2,4,2,1],[0,2,2,0]],[[1,2,2,0],[0,1,3,2],[3,3,2,1],[0,2,2,0]],[[1,2,2,0],[0,1,3,2],[2,3,2,0],[2,1,2,1]],[[1,2,2,0],[0,1,3,2],[2,4,2,0],[1,1,2,1]],[[1,2,2,0],[0,1,3,2],[3,3,2,0],[1,1,2,1]],[[1,2,2,0],[0,1,3,2],[2,3,2,0],[0,2,2,2]],[[1,2,2,0],[0,1,3,2],[2,3,2,0],[0,2,3,1]],[[1,2,2,0],[0,1,3,2],[2,3,2,0],[0,3,2,1]],[[1,2,2,0],[0,1,3,2],[2,4,2,0],[0,2,2,1]],[[1,2,2,0],[0,1,3,2],[3,3,2,0],[0,2,2,1]],[[1,2,2,0],[0,1,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,0],[0,1,3,2],[2,3,1,2],[1,0,3,1]],[[1,2,2,0],[0,1,3,2],[2,3,1,3],[1,0,2,1]],[[1,2,2,0],[0,1,3,3],[2,3,1,2],[1,0,2,1]],[[1,2,2,0],[0,1,4,2],[2,3,1,2],[1,0,2,1]],[[1,2,3,0],[0,1,3,2],[2,3,1,2],[1,0,2,1]],[[1,3,2,0],[0,1,3,2],[2,3,1,2],[1,0,2,1]],[[2,2,2,0],[0,1,3,2],[2,3,1,2],[1,0,2,1]],[[1,2,2,0],[0,1,3,2],[2,3,1,2],[0,1,2,2]],[[1,2,2,0],[0,1,3,2],[2,3,1,2],[0,1,3,1]],[[1,2,2,0],[0,1,3,2],[2,3,1,3],[0,1,2,1]],[[1,2,2,0],[0,1,3,3],[2,3,1,2],[0,1,2,1]],[[1,2,2,0],[0,1,4,2],[2,3,1,2],[0,1,2,1]],[[1,2,3,0],[0,1,3,2],[2,3,1,2],[0,1,2,1]],[[1,3,2,0],[0,1,3,2],[2,3,1,2],[0,1,2,1]],[[2,2,2,0],[0,1,3,2],[2,3,1,2],[0,1,2,1]],[[1,0,1,2],[1,3,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[1,4,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,4,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,3],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[3,0,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,1,3],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,1,2],[2,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,1,2],[1,3,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,1,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,2],[2,0,1,2],[1,2,2,2]],[[1,0,1,2],[1,3,3,2],[2,0,2,2],[0,2,2,1]],[[1,0,1,1],[1,3,4,2],[2,0,2,2],[0,2,2,1]],[[1,0,1,1],[1,3,3,3],[2,0,2,2],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,2,3],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,2,2],[0,2,3,1]],[[1,0,1,1],[1,3,3,2],[2,0,2,2],[0,2,2,2]],[[1,0,1,2],[1,3,3,2],[2,0,2,2],[1,2,1,1]],[[1,0,1,1],[1,4,3,2],[2,0,2,2],[1,2,1,1]],[[1,0,1,1],[1,3,4,2],[2,0,2,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,3],[2,0,2,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,0,2,3],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,0,2,2],[1,2,1,2]],[[1,0,1,2],[1,3,3,2],[2,0,2,2],[1,2,2,0]],[[1,0,1,1],[1,4,3,2],[2,0,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,4,2],[2,0,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,3],[2,0,2,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,0,2,3],[1,2,2,0]],[[1,0,1,2],[1,3,3,2],[2,0,3,0],[1,2,2,1]],[[1,0,1,1],[1,4,3,2],[2,0,3,0],[1,2,2,1]],[[1,0,1,1],[1,3,4,2],[2,0,3,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,3],[2,0,3,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[3,0,3,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,4,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,3,0],[2,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,3,0],[1,3,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,3,0],[1,2,3,1]],[[1,0,1,1],[1,3,3,2],[2,0,3,0],[1,2,2,2]],[[1,0,1,2],[1,3,3,2],[2,0,3,1],[1,2,1,1]],[[1,0,1,1],[1,4,3,2],[2,0,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,4,2],[2,0,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,3,3],[2,0,3,1],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,0,4,1],[1,2,1,1]],[[1,0,1,2],[1,3,3,2],[2,0,3,1],[1,2,2,0]],[[1,0,1,1],[1,4,3,2],[2,0,3,1],[1,2,2,0]],[[1,0,1,1],[1,3,4,2],[2,0,3,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,3],[2,0,3,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[3,0,3,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,0,4,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,0,3,1],[2,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,0,3,1],[1,3,2,0]],[[1,0,1,1],[1,3,3,2],[2,0,3,1],[1,2,3,0]],[[1,0,1,2],[1,3,3,2],[2,0,3,2],[0,1,2,1]],[[1,0,1,1],[1,3,4,2],[2,0,3,2],[0,1,2,1]],[[1,0,1,1],[1,3,3,3],[2,0,3,2],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,3,3],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,0,3,2],[0,1,2,2]],[[1,0,1,2],[1,3,3,2],[2,0,3,2],[0,2,1,1]],[[1,0,1,1],[1,3,4,2],[2,0,3,2],[0,2,1,1]],[[1,0,1,1],[1,3,3,3],[2,0,3,2],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,0,3,3],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,0,3,2],[0,2,1,2]],[[1,0,1,2],[1,3,3,2],[2,0,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,4,2],[2,0,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,3],[2,0,3,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,0,3,3],[0,2,2,0]],[[1,2,2,0],[0,1,3,2],[2,3,0,2],[2,1,2,1]],[[1,2,2,0],[0,1,3,2],[2,4,0,2],[1,1,2,1]],[[1,2,2,0],[0,1,3,2],[3,3,0,2],[1,1,2,1]],[[1,2,2,0],[0,1,3,2],[2,3,0,2],[0,2,2,2]],[[1,2,2,0],[0,1,3,2],[2,3,0,2],[0,2,3,1]],[[1,0,1,2],[1,3,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[1,4,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,4,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,3],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[3,1,0,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,0,3],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,0,2],[2,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,0,2],[1,3,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,0,2],[1,2,3,1]],[[1,0,1,1],[1,3,3,2],[2,1,0,2],[1,2,2,2]],[[1,0,1,2],[1,3,3,2],[2,1,1,2],[0,2,2,1]],[[1,0,1,1],[1,4,3,2],[2,1,1,2],[0,2,2,1]],[[1,0,1,1],[1,3,4,2],[2,1,1,2],[0,2,2,1]],[[1,0,1,1],[1,3,3,3],[2,1,1,2],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,1,3],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,1,2],[0,3,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,1,2],[0,2,3,1]],[[1,0,1,1],[1,3,3,2],[2,1,1,2],[0,2,2,2]],[[1,0,1,2],[1,3,3,2],[2,1,2,2],[0,2,1,1]],[[1,0,1,1],[1,4,3,2],[2,1,2,2],[0,2,1,1]],[[1,0,1,1],[1,3,4,2],[2,1,2,2],[0,2,1,1]],[[1,0,1,1],[1,3,3,3],[2,1,2,2],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,1,2,3],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,1,2,2],[0,2,1,2]],[[1,0,1,2],[1,3,3,2],[2,1,2,2],[0,2,2,0]],[[1,0,1,1],[1,4,3,2],[2,1,2,2],[0,2,2,0]],[[1,0,1,1],[1,3,4,2],[2,1,2,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,3],[2,1,2,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,2,0],[0,1,3,2],[2,3,0,2],[0,3,2,1]],[[1,2,2,0],[0,1,3,2],[2,3,0,3],[0,2,2,1]],[[1,2,2,0],[0,1,3,2],[2,4,0,2],[0,2,2,1]],[[1,2,2,0],[0,1,3,2],[3,3,0,2],[0,2,2,1]],[[1,2,2,0],[0,1,3,3],[2,3,0,2],[0,2,2,1]],[[1,2,2,0],[0,1,4,2],[2,3,0,2],[0,2,2,1]],[[1,2,3,0],[0,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,3,2,0],[0,1,3,2],[2,3,0,2],[0,2,2,1]],[[2,2,2,0],[0,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,2],[1,3,3,2],[2,1,3,0],[0,2,2,1]],[[1,0,1,1],[1,4,3,2],[2,1,3,0],[0,2,2,1]],[[1,0,1,1],[1,3,4,2],[2,1,3,0],[0,2,2,1]],[[1,0,1,1],[1,3,3,3],[2,1,3,0],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,4,0],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,3,0],[0,3,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,3,0],[0,2,3,1]],[[1,0,1,1],[1,3,3,2],[2,1,3,0],[0,2,2,2]],[[1,0,1,2],[1,3,3,2],[2,1,3,1],[0,2,1,1]],[[1,0,1,1],[1,4,3,2],[2,1,3,1],[0,2,1,1]],[[1,0,1,1],[1,3,4,2],[2,1,3,1],[0,2,1,1]],[[1,0,1,1],[1,3,3,3],[2,1,3,1],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,1,4,1],[0,2,1,1]],[[1,0,1,2],[1,3,3,2],[2,1,3,1],[0,2,2,0]],[[1,0,1,1],[1,4,3,2],[2,1,3,1],[0,2,2,0]],[[1,0,1,1],[1,3,4,2],[2,1,3,1],[0,2,2,0]],[[1,0,1,1],[1,3,3,3],[2,1,3,1],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,1,4,1],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,1,3,1],[0,3,2,0]],[[1,0,1,1],[1,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,0,1,2],[1,3,3,2],[2,1,3,2],[0,0,2,1]],[[1,0,1,1],[1,3,4,2],[2,1,3,2],[0,0,2,1]],[[1,0,1,1],[1,3,3,3],[2,1,3,2],[0,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,3,3],[0,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,1,3,2],[0,0,2,2]],[[1,0,1,2],[1,3,3,2],[2,1,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,4,2],[2,1,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,3],[2,1,3,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,1,3,3],[0,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,1,3,2],[0,1,1,2]],[[1,0,1,2],[1,3,3,2],[2,1,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,4,2],[2,1,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,3],[2,1,3,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,1,3,3],[0,1,2,0]],[[1,0,1,2],[1,3,3,2],[2,1,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,4,2],[2,1,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,3],[2,1,3,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,1,3,3],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,1,3,2],[1,0,1,2]],[[1,0,1,2],[1,3,3,2],[2,1,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,4,2],[2,1,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,3],[2,1,3,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,2,0],[0,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[0,1,3,2],[2,2,3,1],[2,2,1,0]],[[1,2,2,0],[0,1,3,2],[3,2,3,1],[1,2,1,0]],[[1,2,2,0],[0,1,3,2],[2,2,3,1],[1,3,0,1]],[[1,2,2,0],[0,1,3,2],[2,2,3,1],[2,2,0,1]],[[1,2,2,0],[0,1,3,2],[3,2,3,1],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[3,2,0,1],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,0,1],[2,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,0,1],[1,3,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,0,1],[1,2,3,1]],[[1,0,1,1],[1,3,3,2],[2,2,0,1],[1,2,2,2]],[[1,0,1,2],[1,3,3,2],[2,2,0,2],[0,2,2,1]],[[1,0,1,1],[1,4,3,2],[2,2,0,2],[0,2,2,1]],[[1,0,1,1],[1,3,4,2],[2,2,0,2],[0,2,2,1]],[[1,0,1,1],[1,3,3,3],[2,2,0,2],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,0,3],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,0,2],[0,3,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,0,2],[0,2,3,1]],[[1,0,1,1],[1,3,3,2],[2,2,0,2],[0,2,2,2]],[[1,0,1,1],[1,3,3,2],[3,2,0,2],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,0,2],[2,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,0,2],[1,3,1,1]],[[1,0,1,1],[1,3,3,2],[3,2,0,2],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,0,2],[2,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,0,2],[1,3,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,0,2],[1,2,3,0]],[[1,0,1,1],[1,3,3,2],[3,2,1,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,0],[2,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,0],[1,3,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,0],[1,2,3,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,0],[1,2,2,2]],[[1,0,1,1],[1,3,3,2],[3,2,1,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,1,1],[2,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,1,1],[1,3,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,1,1],[1,2,3,0]],[[1,0,1,2],[1,3,3,2],[2,2,1,2],[0,1,2,1]],[[1,0,1,1],[1,4,3,2],[2,2,1,2],[0,1,2,1]],[[1,0,1,1],[1,3,4,2],[2,2,1,2],[0,1,2,1]],[[1,0,1,1],[1,3,3,3],[2,2,1,2],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,3],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,2],[0,1,3,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,2],[0,1,2,2]],[[1,0,1,2],[1,3,3,2],[2,2,1,2],[1,0,2,1]],[[1,0,1,1],[1,4,3,2],[2,2,1,2],[1,0,2,1]],[[1,0,1,1],[1,3,4,2],[2,2,1,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,3],[2,2,1,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,3],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,2],[1,0,3,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,2],[1,0,2,2]],[[1,0,1,1],[1,3,3,2],[3,2,1,2],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,2],[2,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,1,2],[1,3,0,1]],[[1,0,1,1],[1,3,3,2],[3,2,1,2],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,2,1,2],[2,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,2,0],[0,1,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,2,0],[0,1,3,2],[2,2,3,1],[0,3,2,0]],[[1,2,2,0],[0,1,3,2],[2,2,4,1],[0,2,2,0]],[[1,2,2,0],[0,1,3,3],[2,2,3,1],[0,2,2,0]],[[1,2,2,0],[0,1,4,2],[2,2,3,1],[0,2,2,0]],[[1,2,3,0],[0,1,3,2],[2,2,3,1],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[3,2,2,0],[1,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,0],[2,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,0],[1,3,1,1]],[[1,0,1,1],[1,3,3,2],[3,2,2,1],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,1],[2,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,1],[1,3,0,1]],[[1,0,1,1],[1,3,3,2],[3,2,2,1],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,2,2,1],[2,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,2,2,1],[1,3,1,0]],[[1,3,2,0],[0,1,3,2],[2,2,3,1],[0,2,2,0]],[[2,2,2,0],[0,1,3,2],[2,2,3,1],[0,2,2,0]],[[1,2,2,0],[0,1,3,2],[2,2,4,1],[0,2,1,1]],[[1,2,2,0],[0,1,3,3],[2,2,3,1],[0,2,1,1]],[[1,2,2,0],[0,1,4,2],[2,2,3,1],[0,2,1,1]],[[1,0,1,2],[1,3,3,2],[2,2,2,2],[0,0,2,1]],[[1,0,1,1],[1,4,3,2],[2,2,2,2],[0,0,2,1]],[[1,0,1,1],[1,3,4,2],[2,2,2,2],[0,0,2,1]],[[1,0,1,1],[1,3,3,3],[2,2,2,2],[0,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,3],[0,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,2],[0,0,2,2]],[[1,0,1,2],[1,3,3,2],[2,2,2,2],[0,1,1,1]],[[1,0,1,1],[1,4,3,2],[2,2,2,2],[0,1,1,1]],[[1,0,1,1],[1,3,4,2],[2,2,2,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,3],[2,2,2,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,3],[0,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,2],[0,1,1,2]],[[1,0,1,2],[1,3,3,2],[2,2,2,2],[0,1,2,0]],[[1,0,1,1],[1,4,3,2],[2,2,2,2],[0,1,2,0]],[[1,0,1,1],[1,3,4,2],[2,2,2,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,3],[2,2,2,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,2,3],[0,1,2,0]],[[1,0,1,2],[1,3,3,2],[2,2,2,2],[0,2,0,1]],[[1,0,1,1],[1,4,3,2],[2,2,2,2],[0,2,0,1]],[[1,0,1,1],[1,3,4,2],[2,2,2,2],[0,2,0,1]],[[1,0,1,1],[1,3,3,3],[2,2,2,2],[0,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,3],[0,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,2],[0,2,0,2]],[[1,0,1,2],[1,3,3,2],[2,2,2,2],[0,2,1,0]],[[1,0,1,1],[1,4,3,2],[2,2,2,2],[0,2,1,0]],[[1,0,1,1],[1,3,4,2],[2,2,2,2],[0,2,1,0]],[[1,0,1,1],[1,3,3,3],[2,2,2,2],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,3,0],[0,1,3,2],[2,2,3,1],[0,2,1,1]],[[1,3,2,0],[0,1,3,2],[2,2,3,1],[0,2,1,1]],[[2,2,2,0],[0,1,3,2],[2,2,3,1],[0,2,1,1]],[[1,0,1,2],[1,3,3,2],[2,2,2,2],[1,0,1,1]],[[1,0,1,1],[1,4,3,2],[2,2,2,2],[1,0,1,1]],[[1,0,1,1],[1,3,4,2],[2,2,2,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,3],[2,2,2,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,3],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,2],[1,0,1,2]],[[1,0,1,2],[1,3,3,2],[2,2,2,2],[1,0,2,0]],[[1,0,1,1],[1,4,3,2],[2,2,2,2],[1,0,2,0]],[[1,0,1,1],[1,3,4,2],[2,2,2,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,3],[2,2,2,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,2,3],[1,0,2,0]],[[1,0,1,2],[1,3,3,2],[2,2,2,2],[1,1,0,1]],[[1,0,1,1],[1,4,3,2],[2,2,2,2],[1,1,0,1]],[[1,0,1,1],[1,3,4,2],[2,2,2,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,3],[2,2,2,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,3],[1,1,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,2,2],[1,1,0,2]],[[1,0,1,2],[1,3,3,2],[2,2,2,2],[1,1,1,0]],[[1,0,1,1],[1,4,3,2],[2,2,2,2],[1,1,1,0]],[[1,0,1,1],[1,3,4,2],[2,2,2,2],[1,1,1,0]],[[1,0,1,1],[1,3,3,3],[2,2,2,2],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,2,0],[0,1,3,2],[2,2,3,0],[1,3,1,1]],[[1,2,2,0],[0,1,3,2],[2,2,3,0],[2,2,1,1]],[[1,2,2,0],[0,1,3,2],[3,2,3,0],[1,2,1,1]],[[1,2,2,0],[0,1,3,2],[2,2,3,0],[0,2,2,2]],[[1,2,2,0],[0,1,3,2],[2,2,3,0],[0,2,3,1]],[[1,2,2,0],[0,1,3,2],[2,2,3,0],[0,3,2,1]],[[1,2,2,0],[0,1,3,2],[2,2,4,0],[0,2,2,1]],[[1,2,2,0],[0,1,3,3],[2,2,3,0],[0,2,2,1]],[[1,2,2,0],[0,1,4,2],[2,2,3,0],[0,2,2,1]],[[1,2,3,0],[0,1,3,2],[2,2,3,0],[0,2,2,1]],[[1,3,2,0],[0,1,3,2],[2,2,3,0],[0,2,2,1]],[[2,2,2,0],[0,1,3,2],[2,2,3,0],[0,2,2,1]],[[1,0,1,2],[1,3,3,2],[2,2,3,0],[0,1,2,1]],[[1,0,1,1],[1,4,3,2],[2,2,3,0],[0,1,2,1]],[[1,0,1,1],[1,3,4,2],[2,2,3,0],[0,1,2,1]],[[1,0,1,1],[1,3,3,3],[2,2,3,0],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,4,0],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,3,0],[0,1,3,1]],[[1,0,1,1],[1,3,3,2],[2,2,3,0],[0,1,2,2]],[[1,0,1,2],[1,3,3,2],[2,2,3,0],[0,2,1,1]],[[1,0,1,1],[1,4,3,2],[2,2,3,0],[0,2,1,1]],[[1,0,1,1],[1,3,4,2],[2,2,3,0],[0,2,1,1]],[[1,0,1,1],[1,3,3,3],[2,2,3,0],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,4,0],[0,2,1,1]],[[1,0,1,2],[1,3,3,2],[2,2,3,0],[1,0,2,1]],[[1,0,1,1],[1,4,3,2],[2,2,3,0],[1,0,2,1]],[[1,0,1,1],[1,3,4,2],[2,2,3,0],[1,0,2,1]],[[1,0,1,1],[1,3,3,3],[2,2,3,0],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,4,0],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,3,0],[1,0,3,1]],[[1,0,1,1],[1,3,3,2],[2,2,3,0],[1,0,2,2]],[[1,0,1,2],[1,3,3,2],[2,2,3,0],[1,1,1,1]],[[1,0,1,1],[1,4,3,2],[2,2,3,0],[1,1,1,1]],[[1,0,1,1],[1,3,4,2],[2,2,3,0],[1,1,1,1]],[[1,0,1,1],[1,3,3,3],[2,2,3,0],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,4,0],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[3,2,3,0],[1,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,2,3,0],[2,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,2,0],[0,1,3,2],[2,2,2,3],[0,2,2,0]],[[1,0,1,2],[1,3,3,2],[2,2,3,1],[0,0,2,1]],[[1,0,1,1],[1,4,3,2],[2,2,3,1],[0,0,2,1]],[[1,0,1,1],[1,3,4,2],[2,2,3,1],[0,0,2,1]],[[1,0,1,1],[1,3,3,3],[2,2,3,1],[0,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,2,4,1],[0,0,2,1]],[[1,0,1,2],[1,3,3,2],[2,2,3,1],[0,1,1,1]],[[1,0,1,1],[1,4,3,2],[2,2,3,1],[0,1,1,1]],[[1,0,1,1],[1,3,4,2],[2,2,3,1],[0,1,1,1]],[[1,0,1,1],[1,3,3,3],[2,2,3,1],[0,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,4,1],[0,1,1,1]],[[1,0,1,2],[1,3,3,2],[2,2,3,1],[0,1,2,0]],[[1,0,1,1],[1,4,3,2],[2,2,3,1],[0,1,2,0]],[[1,0,1,1],[1,3,4,2],[2,2,3,1],[0,1,2,0]],[[1,0,1,1],[1,3,3,3],[2,2,3,1],[0,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,4,1],[0,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,3,1],[0,1,3,0]],[[1,0,1,2],[1,3,3,2],[2,2,3,1],[0,2,0,1]],[[1,0,1,1],[1,4,3,2],[2,2,3,1],[0,2,0,1]],[[1,0,1,1],[1,3,4,2],[2,2,3,1],[0,2,0,1]],[[1,0,1,1],[1,3,3,3],[2,2,3,1],[0,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,4,1],[0,2,0,1]],[[1,0,1,2],[1,3,3,2],[2,2,3,1],[0,2,1,0]],[[1,0,1,1],[1,4,3,2],[2,2,3,1],[0,2,1,0]],[[1,0,1,1],[1,3,4,2],[2,2,3,1],[0,2,1,0]],[[1,0,1,1],[1,3,3,3],[2,2,3,1],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,2,0],[0,1,3,3],[2,2,2,2],[0,2,2,0]],[[1,2,2,0],[0,1,4,2],[2,2,2,2],[0,2,2,0]],[[1,2,3,0],[0,1,3,2],[2,2,2,2],[0,2,2,0]],[[1,3,2,0],[0,1,3,2],[2,2,2,2],[0,2,2,0]],[[2,2,2,0],[0,1,3,2],[2,2,2,2],[0,2,2,0]],[[1,2,2,0],[0,1,3,2],[2,2,2,2],[0,2,1,2]],[[1,2,2,0],[0,1,3,2],[2,2,2,3],[0,2,1,1]],[[1,2,2,0],[0,1,3,3],[2,2,2,2],[0,2,1,1]],[[1,0,1,2],[1,3,3,2],[2,2,3,1],[1,0,1,1]],[[1,0,1,1],[1,4,3,2],[2,2,3,1],[1,0,1,1]],[[1,0,1,1],[1,3,4,2],[2,2,3,1],[1,0,1,1]],[[1,0,1,1],[1,3,3,3],[2,2,3,1],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,2,4,1],[1,0,1,1]],[[1,0,1,2],[1,3,3,2],[2,2,3,1],[1,0,2,0]],[[1,0,1,1],[1,4,3,2],[2,2,3,1],[1,0,2,0]],[[1,0,1,1],[1,3,4,2],[2,2,3,1],[1,0,2,0]],[[1,0,1,1],[1,3,3,3],[2,2,3,1],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,4,1],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,2,3,1],[1,0,3,0]],[[1,0,1,2],[1,3,3,2],[2,2,3,1],[1,1,0,1]],[[1,0,1,1],[1,4,3,2],[2,2,3,1],[1,1,0,1]],[[1,0,1,1],[1,3,4,2],[2,2,3,1],[1,1,0,1]],[[1,0,1,1],[1,3,3,3],[2,2,3,1],[1,1,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,4,1],[1,1,0,1]],[[1,0,1,2],[1,3,3,2],[2,2,3,1],[1,1,1,0]],[[1,0,1,1],[1,4,3,2],[2,2,3,1],[1,1,1,0]],[[1,0,1,1],[1,3,4,2],[2,2,3,1],[1,1,1,0]],[[1,0,1,1],[1,3,3,3],[2,2,3,1],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,2,0],[0,1,4,2],[2,2,2,2],[0,2,1,1]],[[1,2,3,0],[0,1,3,2],[2,2,2,2],[0,2,1,1]],[[1,3,2,0],[0,1,3,2],[2,2,2,2],[0,2,1,1]],[[2,2,2,0],[0,1,3,2],[2,2,2,2],[0,2,1,1]],[[1,2,2,0],[0,1,3,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,0],[0,1,3,2],[2,2,2,1],[1,3,2,0]],[[1,2,2,0],[0,1,3,2],[2,2,2,1],[2,2,2,0]],[[1,2,2,0],[0,1,3,2],[3,2,2,1],[1,2,2,0]],[[1,2,2,0],[0,1,3,2],[2,2,2,0],[1,2,2,2]],[[1,2,2,0],[0,1,3,2],[2,2,2,0],[1,2,3,1]],[[1,2,2,0],[0,1,3,2],[2,2,2,0],[1,3,2,1]],[[1,2,2,0],[0,1,3,2],[2,2,2,0],[2,2,2,1]],[[1,2,2,0],[0,1,3,2],[3,2,2,0],[1,2,2,1]],[[1,2,2,0],[0,1,3,2],[2,2,1,2],[0,2,2,2]],[[1,2,2,0],[0,1,3,2],[2,2,1,2],[0,2,3,1]],[[1,2,2,0],[0,1,3,2],[2,2,1,2],[0,3,2,1]],[[1,2,2,0],[0,1,3,2],[2,2,1,3],[0,2,2,1]],[[1,2,2,0],[0,1,3,3],[2,2,1,2],[0,2,2,1]],[[1,0,1,2],[1,3,3,2],[2,2,3,2],[0,1,0,1]],[[1,0,1,1],[1,4,3,2],[2,2,3,2],[0,1,0,1]],[[1,0,1,1],[1,3,4,2],[2,2,3,2],[0,1,0,1]],[[1,0,1,1],[1,3,3,3],[2,2,3,2],[0,1,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,2,0],[0,1,4,2],[2,2,1,2],[0,2,2,1]],[[1,2,3,0],[0,1,3,2],[2,2,1,2],[0,2,2,1]],[[1,3,2,0],[0,1,3,2],[2,2,1,2],[0,2,2,1]],[[2,2,2,0],[0,1,3,2],[2,2,1,2],[0,2,2,1]],[[1,2,2,0],[0,1,3,2],[2,2,0,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,2],[2,2,0,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,2],[2,2,0,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,2],[2,2,0,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,2],[2,2,0,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,2],[3,2,0,2],[1,2,2,1]],[[1,2,2,0],[0,1,3,3],[2,2,0,2],[1,2,2,1]],[[1,2,2,0],[0,1,4,2],[2,2,0,2],[1,2,2,1]],[[1,2,3,0],[0,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,3,2,0],[0,1,3,2],[2,2,0,2],[1,2,2,1]],[[2,2,2,0],[0,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,2],[1,3,3,2],[2,2,3,2],[1,0,0,1]],[[1,0,1,1],[1,4,3,2],[2,2,3,2],[1,0,0,1]],[[1,0,1,1],[1,3,4,2],[2,2,3,2],[1,0,0,1]],[[1,0,1,1],[1,3,3,3],[2,2,3,2],[1,0,0,1]],[[1,0,1,1],[1,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,2,0],[0,1,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,0],[0,1,3,2],[2,1,3,1],[1,3,2,0]],[[1,2,2,0],[0,1,3,2],[2,1,3,1],[2,2,2,0]],[[1,2,2,0],[0,1,3,2],[2,1,4,1],[1,2,2,0]],[[1,2,2,0],[0,1,3,2],[3,1,3,1],[1,2,2,0]],[[1,2,2,0],[0,1,3,3],[2,1,3,1],[1,2,2,0]],[[1,2,2,0],[0,1,4,2],[2,1,3,1],[1,2,2,0]],[[1,2,3,0],[0,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,3,2,0],[0,1,3,2],[2,1,3,1],[1,2,2,0]],[[2,2,2,0],[0,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,2,2,0],[0,1,3,2],[2,1,4,1],[1,2,1,1]],[[1,2,2,0],[0,1,3,3],[2,1,3,1],[1,2,1,1]],[[1,2,2,0],[0,1,4,2],[2,1,3,1],[1,2,1,1]],[[1,2,3,0],[0,1,3,2],[2,1,3,1],[1,2,1,1]],[[1,3,2,0],[0,1,3,2],[2,1,3,1],[1,2,1,1]],[[2,2,2,0],[0,1,3,2],[2,1,3,1],[1,2,1,1]],[[1,2,2,0],[0,1,3,2],[2,1,3,0],[1,2,2,2]],[[1,2,2,0],[0,1,3,2],[2,1,3,0],[1,2,3,1]],[[1,2,2,0],[0,1,3,2],[2,1,3,0],[1,3,2,1]],[[1,2,2,0],[0,1,3,2],[2,1,3,0],[2,2,2,1]],[[1,2,2,0],[0,1,3,2],[2,1,4,0],[1,2,2,1]],[[1,2,2,0],[0,1,3,2],[3,1,3,0],[1,2,2,1]],[[1,2,2,0],[0,1,3,3],[2,1,3,0],[1,2,2,1]],[[1,2,2,0],[0,1,4,2],[2,1,3,0],[1,2,2,1]],[[1,2,3,0],[0,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,3,2,0],[0,1,3,2],[2,1,3,0],[1,2,2,1]],[[2,2,2,0],[0,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,2,2,0],[0,1,3,2],[2,1,2,3],[1,2,2,0]],[[1,2,2,0],[0,1,3,3],[2,1,2,2],[1,2,2,0]],[[1,2,2,0],[0,1,4,2],[2,1,2,2],[1,2,2,0]],[[1,2,3,0],[0,1,3,2],[2,1,2,2],[1,2,2,0]],[[1,3,2,0],[0,1,3,2],[2,1,2,2],[1,2,2,0]],[[2,2,2,0],[0,1,3,2],[2,1,2,2],[1,2,2,0]],[[1,2,2,0],[0,1,3,2],[2,1,2,2],[1,2,1,2]],[[1,2,2,0],[0,1,3,2],[2,1,2,3],[1,2,1,1]],[[1,2,2,0],[0,1,3,3],[2,1,2,2],[1,2,1,1]],[[1,2,2,0],[0,1,4,2],[2,1,2,2],[1,2,1,1]],[[1,2,3,0],[0,1,3,2],[2,1,2,2],[1,2,1,1]],[[1,3,2,0],[0,1,3,2],[2,1,2,2],[1,2,1,1]],[[2,2,2,0],[0,1,3,2],[2,1,2,2],[1,2,1,1]],[[1,2,2,0],[0,1,3,2],[2,1,1,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,2],[2,1,1,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,2],[2,1,1,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,2],[2,1,1,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,2],[2,1,1,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,2],[3,1,1,2],[1,2,2,1]],[[1,2,2,0],[0,1,3,3],[2,1,1,2],[1,2,2,1]],[[1,2,2,0],[0,1,4,2],[2,1,1,2],[1,2,2,1]],[[1,2,3,0],[0,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,3,2,0],[0,1,3,2],[2,1,1,2],[1,2,2,1]],[[2,2,2,0],[0,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[3,3,0,0],[1,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,0],[2,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,0],[1,3,2,1]],[[1,0,1,2],[1,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,1,1],[1,4,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,1,1],[1,3,4,2],[2,3,0,1],[0,2,2,1]],[[1,0,1,1],[1,3,3,3],[2,3,0,1],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[3,3,0,1],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,4,0,1],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,1],[0,3,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,1],[0,2,3,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,1],[0,2,2,2]],[[1,0,1,2],[1,3,3,2],[2,3,0,1],[1,1,2,1]],[[1,0,1,1],[1,4,3,2],[2,3,0,1],[1,1,2,1]],[[1,0,1,1],[1,3,4,2],[2,3,0,1],[1,1,2,1]],[[1,0,1,1],[1,3,3,3],[2,3,0,1],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[3,3,0,1],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,4,0,1],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,1],[2,1,2,1]],[[1,0,1,1],[1,3,3,2],[3,3,0,1],[1,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,0,1],[2,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,0,1],[1,3,2,0]],[[1,0,1,2],[1,3,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,1,1],[1,4,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,1,1],[1,3,4,2],[2,3,0,2],[0,1,2,1]],[[1,0,1,1],[1,3,3,3],[2,3,0,2],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[3,3,0,2],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,4,0,2],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,3],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[0,1,3,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[0,1,2,2]],[[1,0,1,2],[1,3,3,2],[2,3,0,2],[0,2,1,1]],[[1,0,1,1],[1,4,3,2],[2,3,0,2],[0,2,1,1]],[[1,0,1,1],[1,3,4,2],[2,3,0,2],[0,2,1,1]],[[1,0,1,1],[1,3,3,3],[2,3,0,2],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[3,3,0,2],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,4,0,2],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,3],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[0,3,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[0,2,1,2]],[[1,0,1,2],[1,3,3,2],[2,3,0,2],[0,2,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,0,2],[0,2,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,0,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,3],[2,3,0,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[3,3,0,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,4,0,2],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,0,3],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[0,3,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[0,2,3,0]],[[1,0,1,2],[1,3,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,1,1],[1,4,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,1,1],[1,3,4,2],[2,3,0,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,3],[2,3,0,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[3,3,0,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,4,0,2],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,3],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[2,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[1,0,3,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[1,0,2,2]],[[1,0,1,2],[1,3,3,2],[2,3,0,2],[1,1,1,1]],[[1,0,1,1],[1,4,3,2],[2,3,0,2],[1,1,1,1]],[[1,0,1,1],[1,3,4,2],[2,3,0,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,3],[2,3,0,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[3,3,0,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,4,0,2],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,3],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[2,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[1,1,1,2]],[[1,0,1,2],[1,3,3,2],[2,3,0,2],[1,1,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,0,2],[1,1,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,0,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,3],[2,3,0,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[3,3,0,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,4,0,2],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,0,3],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,2,0],[0,1,3,2],[2,0,3,2],[0,2,2,2]],[[1,2,2,0],[0,1,3,2],[2,0,3,2],[0,2,3,1]],[[1,2,2,0],[0,1,3,2],[2,0,3,3],[0,2,2,1]],[[1,2,2,0],[0,1,3,3],[2,0,3,2],[0,2,2,1]],[[1,0,1,2],[1,3,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,1,1],[1,4,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,1,1],[1,3,4,2],[2,3,1,0],[0,2,2,1]],[[1,0,1,1],[1,3,3,3],[2,3,1,0],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[3,3,1,0],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,4,1,0],[0,2,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,0],[0,3,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,0],[0,2,3,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,0],[0,2,2,2]],[[1,0,1,2],[1,3,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,1,1],[1,4,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,1,1],[1,3,4,2],[2,3,1,0],[1,1,2,1]],[[1,0,1,1],[1,3,3,3],[2,3,1,0],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[3,3,1,0],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,4,1,0],[1,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,0],[2,1,2,1]],[[1,0,1,2],[1,3,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,1,1],[0,2,2,0]],[[1,0,1,1],[1,3,3,3],[2,3,1,1],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[3,3,1,1],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,4,1,1],[0,2,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,1,1],[0,3,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,1,1],[0,2,3,0]],[[1,0,1,2],[1,3,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,1,1],[1,1,2,0]],[[1,0,1,1],[1,3,3,3],[2,3,1,1],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[3,3,1,1],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,4,1,1],[1,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,0,1,2],[1,3,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,1,1],[1,4,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,1,1],[1,3,4,2],[2,3,1,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,3],[2,3,1,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,2],[3,3,1,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,4,1,2],[0,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,3],[0,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,2],[0,1,1,2]],[[1,0,1,2],[1,3,3,2],[2,3,1,2],[0,1,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,1,2],[0,1,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,1,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,3],[2,3,1,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,2],[3,3,1,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,4,1,2],[0,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,1,3],[0,1,2,0]],[[1,0,1,2],[1,3,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,1,1],[1,4,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,1,1],[1,3,4,2],[2,3,1,2],[0,2,0,1]],[[1,0,1,1],[1,3,3,3],[2,3,1,2],[0,2,0,1]],[[1,0,1,1],[1,3,3,2],[3,3,1,2],[0,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,4,1,2],[0,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,3],[0,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,2],[0,3,0,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,2],[0,2,0,2]],[[1,0,1,2],[1,3,3,2],[2,3,1,2],[0,2,1,0]],[[1,0,1,1],[1,4,3,2],[2,3,1,2],[0,2,1,0]],[[1,0,1,1],[1,3,4,2],[2,3,1,2],[0,2,1,0]],[[1,0,1,1],[1,3,3,3],[2,3,1,2],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[3,3,1,2],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,4,1,2],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,3,1,3],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,0,1,2],[1,3,3,2],[2,3,1,2],[1,0,1,1]],[[1,0,1,1],[1,4,3,2],[2,3,1,2],[1,0,1,1]],[[1,0,1,1],[1,3,4,2],[2,3,1,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,3],[2,3,1,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[3,3,1,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,4,1,2],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,3],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,2],[2,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,2],[1,0,1,2]],[[1,0,1,2],[1,3,3,2],[2,3,1,2],[1,0,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,1,2],[1,0,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,1,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,3],[2,3,1,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[3,3,1,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,4,1,2],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,1,3],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,1,2],[2,0,2,0]],[[1,0,1,2],[1,3,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,1,1],[1,4,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,1,1],[1,3,4,2],[2,3,1,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,3],[2,3,1,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,2],[3,3,1,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,2],[2,4,1,2],[1,1,0,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,3],[1,1,0,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,2],[2,1,0,1]],[[1,0,1,1],[1,3,3,2],[2,3,1,2],[1,1,0,2]],[[1,0,1,2],[1,3,3,2],[2,3,1,2],[1,1,1,0]],[[1,0,1,1],[1,4,3,2],[2,3,1,2],[1,1,1,0]],[[1,0,1,1],[1,3,4,2],[2,3,1,2],[1,1,1,0]],[[1,0,1,1],[1,3,3,3],[2,3,1,2],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[3,3,1,2],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[2,4,1,2],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[2,3,1,3],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,0,1,2],[1,3,3,2],[2,3,1,2],[1,2,0,0]],[[1,0,1,1],[1,4,3,2],[2,3,1,2],[1,2,0,0]],[[1,0,1,1],[1,3,4,2],[2,3,1,2],[1,2,0,0]],[[1,0,1,1],[1,3,3,3],[2,3,1,2],[1,2,0,0]],[[1,0,1,1],[1,3,3,2],[3,3,1,2],[1,2,0,0]],[[1,0,1,1],[1,3,3,2],[2,4,1,2],[1,2,0,0]],[[1,0,1,1],[1,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,2,0],[0,1,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,2,0],[0,1,3,3],[1,3,3,2],[1,1,0,1]],[[1,2,2,0],[0,1,4,2],[1,3,3,2],[1,1,0,1]],[[1,2,3,0],[0,1,3,2],[1,3,3,2],[1,1,0,1]],[[1,3,2,0],[0,1,3,2],[1,3,3,2],[1,1,0,1]],[[1,0,1,2],[1,3,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,1,1],[1,4,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,1,1],[1,3,4,2],[2,3,2,0],[0,1,2,1]],[[1,0,1,1],[1,3,3,3],[2,3,2,0],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[3,3,2,0],[0,1,2,1]],[[1,0,1,1],[1,3,3,2],[2,4,2,0],[0,1,2,1]],[[1,0,1,2],[1,3,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,1,1],[1,4,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,1,1],[1,3,4,2],[2,3,2,0],[0,2,1,1]],[[1,0,1,1],[1,3,3,3],[2,3,2,0],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[3,3,2,0],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,4,2,0],[0,2,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,2,0],[0,3,1,1]],[[1,0,1,2],[1,3,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,1,1],[1,4,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,1,1],[1,3,4,2],[2,3,2,0],[1,0,2,1]],[[1,0,1,1],[1,3,3,3],[2,3,2,0],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[3,3,2,0],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,4,2,0],[1,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,2,0],[2,0,2,1]],[[1,0,1,2],[1,3,3,2],[2,3,2,0],[1,1,1,1]],[[1,0,1,1],[1,4,3,2],[2,3,2,0],[1,1,1,1]],[[1,0,1,1],[1,3,4,2],[2,3,2,0],[1,1,1,1]],[[1,0,1,1],[1,3,3,3],[2,3,2,0],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[3,3,2,0],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,4,2,0],[1,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,2,0],[2,1,1,1]],[[1,0,1,1],[1,4,3,2],[2,3,2,0],[1,2,0,1]],[[1,0,1,1],[1,3,4,2],[2,3,2,0],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[3,3,2,0],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,4,2,0],[1,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,2,0],[0,1,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,1,3,2],[1,3,3,1],[2,2,1,0]],[[1,2,2,0],[0,1,3,2],[1,3,4,1],[1,2,1,0]],[[1,2,2,0],[0,1,3,2],[1,4,3,1],[1,2,1,0]],[[1,2,2,0],[0,1,3,3],[1,3,3,1],[1,2,1,0]],[[1,0,1,2],[1,3,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,1,1],[1,4,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,1,1],[1,3,4,2],[2,3,2,1],[0,1,1,1]],[[1,0,1,1],[1,3,3,3],[2,3,2,1],[0,1,1,1]],[[1,0,1,1],[1,3,3,2],[3,3,2,1],[0,1,1,1]],[[1,0,1,1],[1,3,3,2],[2,4,2,1],[0,1,1,1]],[[1,0,1,2],[1,3,3,2],[2,3,2,1],[0,1,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,2,1],[0,1,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,2,1],[0,1,2,0]],[[1,0,1,1],[1,3,3,3],[2,3,2,1],[0,1,2,0]],[[1,0,1,1],[1,3,3,2],[3,3,2,1],[0,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,4,2,1],[0,1,2,0]],[[1,0,1,2],[1,3,3,2],[2,3,2,1],[0,2,0,1]],[[1,0,1,1],[1,4,3,2],[2,3,2,1],[0,2,0,1]],[[1,0,1,1],[1,3,4,2],[2,3,2,1],[0,2,0,1]],[[1,0,1,1],[1,3,3,3],[2,3,2,1],[0,2,0,1]],[[1,0,1,1],[1,3,3,2],[3,3,2,1],[0,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,4,2,1],[0,2,0,1]],[[1,0,1,1],[1,3,3,2],[2,3,2,1],[0,3,0,1]],[[1,0,1,2],[1,3,3,2],[2,3,2,1],[0,2,1,0]],[[1,0,1,1],[1,4,3,2],[2,3,2,1],[0,2,1,0]],[[1,0,1,1],[1,3,4,2],[2,3,2,1],[0,2,1,0]],[[1,0,1,1],[1,3,3,3],[2,3,2,1],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[3,3,2,1],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,4,2,1],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,2,0],[0,1,4,2],[1,3,3,1],[1,2,1,0]],[[1,2,3,0],[0,1,3,2],[1,3,3,1],[1,2,1,0]],[[1,3,2,0],[0,1,3,2],[1,3,3,1],[1,2,1,0]],[[2,2,2,0],[0,1,3,2],[1,3,3,1],[1,2,1,0]],[[1,2,2,0],[0,1,3,2],[1,3,3,1],[1,3,0,1]],[[1,2,2,0],[0,1,3,2],[1,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,1,3,2],[1,3,4,1],[1,2,0,1]],[[1,2,2,0],[0,1,3,2],[1,4,3,1],[1,2,0,1]],[[1,2,2,0],[0,1,3,3],[1,3,3,1],[1,2,0,1]],[[1,0,1,2],[1,3,3,2],[2,3,2,1],[1,0,1,1]],[[1,0,1,1],[1,4,3,2],[2,3,2,1],[1,0,1,1]],[[1,0,1,1],[1,3,4,2],[2,3,2,1],[1,0,1,1]],[[1,0,1,1],[1,3,3,3],[2,3,2,1],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[3,3,2,1],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,4,2,1],[1,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,2,1],[2,0,1,1]],[[1,0,1,2],[1,3,3,2],[2,3,2,1],[1,0,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,2,1],[1,0,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,2,1],[1,0,2,0]],[[1,0,1,1],[1,3,3,3],[2,3,2,1],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[3,3,2,1],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,4,2,1],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,2,1],[2,0,2,0]],[[1,0,1,2],[1,3,3,2],[2,3,2,1],[1,1,0,1]],[[1,0,1,1],[1,4,3,2],[2,3,2,1],[1,1,0,1]],[[1,0,1,1],[1,3,4,2],[2,3,2,1],[1,1,0,1]],[[1,0,1,1],[1,3,3,3],[2,3,2,1],[1,1,0,1]],[[1,0,1,1],[1,3,3,2],[3,3,2,1],[1,1,0,1]],[[1,0,1,1],[1,3,3,2],[2,4,2,1],[1,1,0,1]],[[1,0,1,1],[1,3,3,2],[2,3,2,1],[2,1,0,1]],[[1,0,1,2],[1,3,3,2],[2,3,2,1],[1,1,1,0]],[[1,0,1,1],[1,4,3,2],[2,3,2,1],[1,1,1,0]],[[1,0,1,1],[1,3,4,2],[2,3,2,1],[1,1,1,0]],[[1,0,1,1],[1,3,3,3],[2,3,2,1],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[3,3,2,1],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[2,4,2,1],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,2,0],[0,1,4,2],[1,3,3,1],[1,2,0,1]],[[1,2,3,0],[0,1,3,2],[1,3,3,1],[1,2,0,1]],[[1,3,2,0],[0,1,3,2],[1,3,3,1],[1,2,0,1]],[[2,2,2,0],[0,1,3,2],[1,3,3,1],[1,2,0,1]],[[1,0,1,2],[1,3,3,2],[2,3,2,1],[1,2,0,0]],[[1,0,1,1],[1,4,3,2],[2,3,2,1],[1,2,0,0]],[[1,0,1,1],[1,3,4,2],[2,3,2,1],[1,2,0,0]],[[1,0,1,1],[1,3,3,3],[2,3,2,1],[1,2,0,0]],[[1,0,1,1],[1,3,3,2],[3,3,2,1],[1,2,0,0]],[[1,0,1,1],[1,3,3,2],[2,4,2,1],[1,2,0,0]],[[1,0,1,1],[1,3,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,2,0],[0,1,3,2],[1,3,3,1],[1,1,3,0]],[[1,2,2,0],[0,1,3,2],[1,3,4,1],[1,1,2,0]],[[1,2,2,0],[0,1,3,2],[1,4,3,1],[1,1,2,0]],[[1,2,2,0],[0,1,3,3],[1,3,3,1],[1,1,2,0]],[[1,2,2,0],[0,1,4,2],[1,3,3,1],[1,1,2,0]],[[1,2,3,0],[0,1,3,2],[1,3,3,1],[1,1,2,0]],[[1,3,2,0],[0,1,3,2],[1,3,3,1],[1,1,2,0]],[[2,2,2,0],[0,1,3,2],[1,3,3,1],[1,1,2,0]],[[1,2,2,0],[0,1,3,2],[1,3,4,1],[1,1,1,1]],[[1,2,2,0],[0,1,3,2],[1,4,3,1],[1,1,1,1]],[[1,2,2,0],[0,1,3,3],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[0,1,4,2],[1,3,3,1],[1,1,1,1]],[[1,2,3,0],[0,1,3,2],[1,3,3,1],[1,1,1,1]],[[1,3,2,0],[0,1,3,2],[1,3,3,1],[1,1,1,1]],[[2,2,2,0],[0,1,3,2],[1,3,3,1],[1,1,1,1]],[[1,2,2,0],[0,1,3,2],[1,3,4,1],[1,0,2,1]],[[1,2,2,0],[0,1,3,3],[1,3,3,1],[1,0,2,1]],[[1,2,2,0],[0,1,4,2],[1,3,3,1],[1,0,2,1]],[[1,2,3,0],[0,1,3,2],[1,3,3,1],[1,0,2,1]],[[1,3,2,0],[0,1,3,2],[1,3,3,1],[1,0,2,1]],[[1,0,1,2],[1,3,3,2],[2,3,2,2],[0,0,1,1]],[[1,0,1,1],[1,4,3,2],[2,3,2,2],[0,0,1,1]],[[1,0,1,1],[1,3,4,2],[2,3,2,2],[0,0,1,1]],[[1,0,1,1],[1,3,3,3],[2,3,2,2],[0,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,2,3],[0,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,2,2],[0,0,1,2]],[[1,0,1,2],[1,3,3,2],[2,3,2,2],[0,0,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,2,2],[0,0,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,2,2],[0,0,2,0]],[[1,0,1,1],[1,3,3,3],[2,3,2,2],[0,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,2,0],[0,1,3,2],[1,3,3,0],[1,3,1,1]],[[1,2,2,0],[0,1,3,2],[1,3,3,0],[2,2,1,1]],[[1,2,2,0],[0,1,3,2],[1,3,4,0],[1,2,1,1]],[[1,2,2,0],[0,1,3,2],[1,4,3,0],[1,2,1,1]],[[1,2,2,0],[0,1,3,3],[1,3,3,0],[1,2,1,1]],[[1,2,2,0],[0,1,4,2],[1,3,3,0],[1,2,1,1]],[[1,2,3,0],[0,1,3,2],[1,3,3,0],[1,2,1,1]],[[1,3,2,0],[0,1,3,2],[1,3,3,0],[1,2,1,1]],[[2,2,2,0],[0,1,3,2],[1,3,3,0],[1,2,1,1]],[[1,2,2,0],[0,1,3,2],[1,3,3,0],[1,1,2,2]],[[1,2,2,0],[0,1,3,2],[1,3,3,0],[1,1,3,1]],[[1,2,2,0],[0,1,3,2],[1,3,4,0],[1,1,2,1]],[[1,2,2,0],[0,1,3,2],[1,4,3,0],[1,1,2,1]],[[1,2,2,0],[0,1,3,3],[1,3,3,0],[1,1,2,1]],[[1,2,2,0],[0,1,4,2],[1,3,3,0],[1,1,2,1]],[[1,2,3,0],[0,1,3,2],[1,3,3,0],[1,1,2,1]],[[1,3,2,0],[0,1,3,2],[1,3,3,0],[1,1,2,1]],[[2,2,2,0],[0,1,3,2],[1,3,3,0],[1,1,2,1]],[[1,2,2,0],[0,1,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,2,0],[0,1,3,3],[1,3,2,2],[1,2,1,0]],[[1,2,2,0],[0,1,4,2],[1,3,2,2],[1,2,1,0]],[[1,2,3,0],[0,1,3,2],[1,3,2,2],[1,2,1,0]],[[1,3,2,0],[0,1,3,2],[1,3,2,2],[1,2,1,0]],[[2,2,2,0],[0,1,3,2],[1,3,2,2],[1,2,1,0]],[[1,2,2,0],[0,1,3,2],[1,3,2,2],[1,2,0,2]],[[1,2,2,0],[0,1,3,2],[1,3,2,3],[1,2,0,1]],[[1,2,2,0],[0,1,3,3],[1,3,2,2],[1,2,0,1]],[[1,2,2,0],[0,1,4,2],[1,3,2,2],[1,2,0,1]],[[1,2,3,0],[0,1,3,2],[1,3,2,2],[1,2,0,1]],[[1,3,2,0],[0,1,3,2],[1,3,2,2],[1,2,0,1]],[[2,2,2,0],[0,1,3,2],[1,3,2,2],[1,2,0,1]],[[1,2,2,0],[0,1,3,2],[1,3,2,3],[1,1,2,0]],[[1,2,2,0],[0,1,3,3],[1,3,2,2],[1,1,2,0]],[[1,2,2,0],[0,1,4,2],[1,3,2,2],[1,1,2,0]],[[1,2,3,0],[0,1,3,2],[1,3,2,2],[1,1,2,0]],[[1,3,2,0],[0,1,3,2],[1,3,2,2],[1,1,2,0]],[[2,2,2,0],[0,1,3,2],[1,3,2,2],[1,1,2,0]],[[1,2,2,0],[0,1,3,2],[1,3,2,2],[1,1,1,2]],[[1,2,2,0],[0,1,3,2],[1,3,2,3],[1,1,1,1]],[[1,2,2,0],[0,1,3,3],[1,3,2,2],[1,1,1,1]],[[1,2,2,0],[0,1,4,2],[1,3,2,2],[1,1,1,1]],[[1,2,3,0],[0,1,3,2],[1,3,2,2],[1,1,1,1]],[[1,3,2,0],[0,1,3,2],[1,3,2,2],[1,1,1,1]],[[2,2,2,0],[0,1,3,2],[1,3,2,2],[1,1,1,1]],[[1,2,2,0],[0,1,3,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,0],[0,1,3,2],[1,3,2,3],[1,0,2,1]],[[1,2,2,0],[0,1,3,3],[1,3,2,2],[1,0,2,1]],[[1,2,2,0],[0,1,4,2],[1,3,2,2],[1,0,2,1]],[[1,2,3,0],[0,1,3,2],[1,3,2,2],[1,0,2,1]],[[1,3,2,0],[0,1,3,2],[1,3,2,2],[1,0,2,1]],[[1,2,2,0],[0,1,3,2],[1,3,2,1],[1,2,3,0]],[[1,2,2,0],[0,1,3,2],[1,3,2,1],[1,3,2,0]],[[1,2,2,0],[0,1,3,2],[1,3,2,1],[2,2,2,0]],[[1,2,2,0],[0,1,3,2],[1,4,2,1],[1,2,2,0]],[[1,2,2,0],[0,1,3,2],[1,3,2,0],[1,2,2,2]],[[1,2,2,0],[0,1,3,2],[1,3,2,0],[1,2,3,1]],[[1,2,2,0],[0,1,3,2],[1,3,2,0],[1,3,2,1]],[[1,2,2,0],[0,1,3,2],[1,3,2,0],[2,2,2,1]],[[1,2,2,0],[0,1,3,2],[1,4,2,0],[1,2,2,1]],[[1,2,2,0],[0,1,3,2],[1,3,1,2],[1,1,2,2]],[[1,2,2,0],[0,1,3,2],[1,3,1,2],[1,1,3,1]],[[1,2,2,0],[0,1,3,2],[1,3,1,3],[1,1,2,1]],[[1,2,2,0],[0,1,3,3],[1,3,1,2],[1,1,2,1]],[[1,2,2,0],[0,1,4,2],[1,3,1,2],[1,1,2,1]],[[1,2,3,0],[0,1,3,2],[1,3,1,2],[1,1,2,1]],[[1,3,2,0],[0,1,3,2],[1,3,1,2],[1,1,2,1]],[[2,2,2,0],[0,1,3,2],[1,3,1,2],[1,1,2,1]],[[1,2,2,0],[0,1,3,2],[1,3,0,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,2],[1,3,0,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,2],[1,3,0,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,2],[1,3,0,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,2],[1,3,0,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,2],[1,4,0,2],[1,2,2,1]],[[1,0,1,2],[1,3,3,2],[2,3,3,0],[0,0,2,1]],[[1,0,1,1],[1,4,3,2],[2,3,3,0],[0,0,2,1]],[[1,0,1,1],[1,3,4,2],[2,3,3,0],[0,0,2,1]],[[1,0,1,1],[1,3,3,3],[2,3,3,0],[0,0,2,1]],[[1,0,1,1],[1,3,3,2],[2,3,4,0],[0,0,2,1]],[[1,0,1,1],[1,4,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,3,0],[0,1,2,0]],[[1,0,1,1],[1,3,3,2],[3,3,3,0],[0,1,2,0]],[[1,0,1,1],[1,3,3,2],[2,4,3,0],[0,1,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,1,1],[1,3,4,2],[2,3,3,0],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[3,3,3,0],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,4,3,0],[0,2,1,0]],[[1,0,1,1],[1,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,2,0],[0,1,3,3],[1,3,0,2],[1,2,2,1]],[[1,2,2,0],[0,1,4,2],[1,3,0,2],[1,2,2,1]],[[1,2,3,0],[0,1,3,2],[1,3,0,2],[1,2,2,1]],[[1,3,2,0],[0,1,3,2],[1,3,0,2],[1,2,2,1]],[[2,2,2,0],[0,1,3,2],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[1,4,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,3,0],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[3,3,3,0],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,4,3,0],[1,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,3,0],[2,0,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,1,1],[1,3,4,2],[2,3,3,0],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[3,3,3,0],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[2,4,3,0],[1,1,1,0]],[[1,0,1,1],[1,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,0,1,1],[1,4,3,2],[2,3,3,0],[1,2,0,0]],[[1,0,1,1],[1,3,4,2],[2,3,3,0],[1,2,0,0]],[[1,0,1,1],[1,3,3,2],[3,3,3,0],[1,2,0,0]],[[1,0,1,1],[1,3,3,2],[2,4,3,0],[1,2,0,0]],[[1,0,1,1],[1,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,2,0],[0,1,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,2,0],[0,1,3,2],[1,2,3,1],[1,3,2,0]],[[1,2,2,0],[0,1,3,2],[1,2,3,1],[2,2,2,0]],[[1,2,2,0],[0,1,3,2],[1,2,4,1],[1,2,2,0]],[[1,2,2,0],[0,1,3,3],[1,2,3,1],[1,2,2,0]],[[1,2,2,0],[0,1,4,2],[1,2,3,1],[1,2,2,0]],[[1,2,3,0],[0,1,3,2],[1,2,3,1],[1,2,2,0]],[[1,3,2,0],[0,1,3,2],[1,2,3,1],[1,2,2,0]],[[2,2,2,0],[0,1,3,2],[1,2,3,1],[1,2,2,0]],[[1,2,2,0],[0,1,3,2],[1,2,4,1],[1,2,1,1]],[[1,2,2,0],[0,1,3,3],[1,2,3,1],[1,2,1,1]],[[1,2,2,0],[0,1,4,2],[1,2,3,1],[1,2,1,1]],[[1,2,3,0],[0,1,3,2],[1,2,3,1],[1,2,1,1]],[[1,0,1,2],[1,3,3,2],[2,3,3,1],[0,0,1,1]],[[1,0,1,1],[1,4,3,2],[2,3,3,1],[0,0,1,1]],[[1,0,1,1],[1,3,4,2],[2,3,3,1],[0,0,1,1]],[[1,0,1,1],[1,3,3,3],[2,3,3,1],[0,0,1,1]],[[1,0,1,1],[1,3,3,2],[2,3,4,1],[0,0,1,1]],[[1,0,1,2],[1,3,3,2],[2,3,3,1],[0,0,2,0]],[[1,0,1,1],[1,4,3,2],[2,3,3,1],[0,0,2,0]],[[1,0,1,1],[1,3,4,2],[2,3,3,1],[0,0,2,0]],[[1,0,1,1],[1,3,3,3],[2,3,3,1],[0,0,2,0]],[[1,0,1,1],[1,3,3,2],[2,3,4,1],[0,0,2,0]],[[1,3,2,0],[0,1,3,2],[1,2,3,1],[1,2,1,1]],[[2,2,2,0],[0,1,3,2],[1,2,3,1],[1,2,1,1]],[[1,2,2,0],[0,1,3,2],[1,2,3,0],[1,2,2,2]],[[1,2,2,0],[0,1,3,2],[1,2,3,0],[1,2,3,1]],[[1,2,2,0],[0,1,3,2],[1,2,3,0],[1,3,2,1]],[[1,2,2,0],[0,1,3,2],[1,2,3,0],[2,2,2,1]],[[1,2,2,0],[0,1,3,2],[1,2,4,0],[1,2,2,1]],[[1,2,2,0],[0,1,3,3],[1,2,3,0],[1,2,2,1]],[[1,2,2,0],[0,1,4,2],[1,2,3,0],[1,2,2,1]],[[1,0,1,2],[1,3,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,1,1],[1,4,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,1,1],[1,3,4,2],[2,3,3,1],[0,2,0,0]],[[1,0,1,1],[1,3,3,3],[2,3,3,1],[0,2,0,0]],[[1,0,1,1],[1,3,3,2],[3,3,3,1],[0,2,0,0]],[[1,0,1,1],[1,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,3,0],[0,1,3,2],[1,2,3,0],[1,2,2,1]],[[1,3,2,0],[0,1,3,2],[1,2,3,0],[1,2,2,1]],[[2,2,2,0],[0,1,3,2],[1,2,3,0],[1,2,2,1]],[[1,2,2,0],[0,1,3,2],[1,2,2,3],[1,2,2,0]],[[1,2,2,0],[0,1,3,3],[1,2,2,2],[1,2,2,0]],[[1,2,2,0],[0,1,4,2],[1,2,2,2],[1,2,2,0]],[[1,2,3,0],[0,1,3,2],[1,2,2,2],[1,2,2,0]],[[1,3,2,0],[0,1,3,2],[1,2,2,2],[1,2,2,0]],[[2,2,2,0],[0,1,3,2],[1,2,2,2],[1,2,2,0]],[[1,2,2,0],[0,1,3,2],[1,2,2,2],[1,2,1,2]],[[1,2,2,0],[0,1,3,2],[1,2,2,3],[1,2,1,1]],[[1,2,2,0],[0,1,3,3],[1,2,2,2],[1,2,1,1]],[[1,2,2,0],[0,1,4,2],[1,2,2,2],[1,2,1,1]],[[1,2,3,0],[0,1,3,2],[1,2,2,2],[1,2,1,1]],[[1,3,2,0],[0,1,3,2],[1,2,2,2],[1,2,1,1]],[[2,2,2,0],[0,1,3,2],[1,2,2,2],[1,2,1,1]],[[1,2,2,0],[0,1,3,2],[1,2,1,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,2],[1,2,1,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,2],[1,2,1,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,2],[1,2,1,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,2],[1,2,1,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,3],[1,2,1,2],[1,2,2,1]],[[1,2,2,0],[0,1,4,2],[1,2,1,2],[1,2,2,1]],[[1,2,3,0],[0,1,3,2],[1,2,1,2],[1,2,2,1]],[[1,3,2,0],[0,1,3,2],[1,2,1,2],[1,2,2,1]],[[2,2,2,0],[0,1,3,2],[1,2,1,2],[1,2,2,1]],[[1,0,1,2],[1,3,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,1,1],[1,4,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,1,1],[1,3,4,2],[2,3,3,1],[1,1,0,0]],[[1,0,1,1],[1,3,3,3],[2,3,3,1],[1,1,0,0]],[[1,0,1,1],[1,3,3,2],[3,3,3,1],[1,1,0,0]],[[1,0,1,1],[1,3,3,2],[2,4,3,1],[1,1,0,0]],[[1,0,1,1],[1,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,2,0],[0,1,3,2],[1,0,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,2],[1,0,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,2],[1,0,3,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,3],[1,0,3,2],[1,2,2,1]],[[1,2,2,0],[0,1,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,2,0],[0,1,3,2],[0,3,3,1],[1,3,2,0]],[[1,2,2,0],[0,1,3,2],[0,3,4,1],[1,2,2,0]],[[1,2,2,0],[0,1,3,3],[0,3,3,1],[1,2,2,0]],[[1,2,2,0],[0,1,4,2],[0,3,3,1],[1,2,2,0]],[[1,2,3,0],[0,1,3,2],[0,3,3,1],[1,2,2,0]],[[1,3,2,0],[0,1,3,2],[0,3,3,1],[1,2,2,0]],[[1,2,2,0],[0,1,3,2],[0,3,4,1],[1,2,1,1]],[[1,2,2,0],[0,1,3,3],[0,3,3,1],[1,2,1,1]],[[1,2,2,0],[0,1,4,2],[0,3,3,1],[1,2,1,1]],[[1,2,3,0],[0,1,3,2],[0,3,3,1],[1,2,1,1]],[[1,3,2,0],[0,1,3,2],[0,3,3,1],[1,2,1,1]],[[1,2,2,0],[0,1,3,2],[0,3,3,0],[1,2,2,2]],[[1,2,2,0],[0,1,3,2],[0,3,3,0],[1,2,3,1]],[[1,2,2,0],[0,1,3,2],[0,3,3,0],[1,3,2,1]],[[1,2,2,0],[0,1,3,2],[0,3,4,0],[1,2,2,1]],[[1,2,2,0],[0,1,3,3],[0,3,3,0],[1,2,2,1]],[[1,2,2,0],[0,1,4,2],[0,3,3,0],[1,2,2,1]],[[1,2,3,0],[0,1,3,2],[0,3,3,0],[1,2,2,1]],[[1,3,2,0],[0,1,3,2],[0,3,3,0],[1,2,2,1]],[[1,2,2,0],[0,1,3,2],[0,3,2,3],[1,2,2,0]],[[1,2,2,0],[0,1,3,3],[0,3,2,2],[1,2,2,0]],[[1,2,2,0],[0,1,4,2],[0,3,2,2],[1,2,2,0]],[[1,2,3,0],[0,1,3,2],[0,3,2,2],[1,2,2,0]],[[1,3,2,0],[0,1,3,2],[0,3,2,2],[1,2,2,0]],[[1,2,2,0],[0,1,3,2],[0,3,2,2],[1,2,1,2]],[[1,2,2,0],[0,1,3,2],[0,3,2,3],[1,2,1,1]],[[1,2,2,0],[0,1,3,3],[0,3,2,2],[1,2,1,1]],[[1,2,2,0],[0,1,4,2],[0,3,2,2],[1,2,1,1]],[[1,2,3,0],[0,1,3,2],[0,3,2,2],[1,2,1,1]],[[1,3,2,0],[0,1,3,2],[0,3,2,2],[1,2,1,1]],[[1,2,2,0],[0,1,3,2],[0,3,1,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,2],[0,3,1,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,2],[0,3,1,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,2],[0,3,1,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,3],[0,3,1,2],[1,2,2,1]],[[1,2,2,0],[0,1,4,2],[0,3,1,2],[1,2,2,1]],[[1,0,1,2],[1,3,3,2],[2,3,3,2],[0,0,0,1]],[[1,0,1,1],[1,4,3,2],[2,3,3,2],[0,0,0,1]],[[1,0,1,1],[1,3,4,2],[2,3,3,2],[0,0,0,1]],[[1,0,1,1],[1,3,3,3],[2,3,3,2],[0,0,0,1]],[[1,0,1,1],[1,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,3,0],[0,1,3,2],[0,3,1,2],[1,2,2,1]],[[1,3,2,0],[0,1,3,2],[0,3,1,2],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,1,3,1],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[0,1,3,1],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,1,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[0,1,3,1],[2,3,4,2],[1,1,1,0]],[[1,2,2,0],[0,1,3,1],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[0,1,3,1],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[0,1,4,1],[2,3,3,2],[1,1,1,0]],[[1,2,3,0],[0,1,3,1],[2,3,3,2],[1,1,1,0]],[[1,3,2,0],[0,1,3,1],[2,3,3,2],[1,1,1,0]],[[2,2,2,0],[0,1,3,1],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[1,1,0,2]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[2,1,0,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,3],[1,1,0,1]],[[1,2,2,0],[0,1,3,1],[2,3,4,2],[1,1,0,1]],[[1,2,2,0],[0,1,3,1],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[0,1,3,1],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[0,1,4,1],[2,3,3,2],[1,1,0,1]],[[1,2,3,0],[0,1,3,1],[2,3,3,2],[1,1,0,1]],[[1,3,2,0],[0,1,3,1],[2,3,3,2],[1,1,0,1]],[[2,2,2,0],[0,1,3,1],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[1,0,3,0]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[0,1,3,1],[2,3,3,3],[1,0,2,0]],[[1,2,2,0],[0,1,3,1],[2,3,4,2],[1,0,2,0]],[[1,2,2,0],[0,1,3,1],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[0,1,3,1],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[0,1,4,1],[2,3,3,2],[1,0,2,0]],[[1,2,3,0],[0,1,3,1],[2,3,3,2],[1,0,2,0]],[[1,3,2,0],[0,1,3,1],[2,3,3,2],[1,0,2,0]],[[2,2,2,0],[0,1,3,1],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[1,0,1,2]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[2,0,1,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,3],[1,0,1,1]],[[1,2,2,0],[0,1,3,1],[2,3,4,2],[1,0,1,1]],[[1,2,2,0],[0,1,3,1],[2,4,3,2],[1,0,1,1]],[[1,2,2,0],[0,1,3,1],[3,3,3,2],[1,0,1,1]],[[1,2,2,0],[0,1,4,1],[2,3,3,2],[1,0,1,1]],[[1,2,3,0],[0,1,3,1],[2,3,3,2],[1,0,1,1]],[[1,3,2,0],[0,1,3,1],[2,3,3,2],[1,0,1,1]],[[2,2,2,0],[0,1,3,1],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,1,3,1],[2,3,3,3],[0,2,1,0]],[[1,2,2,0],[0,1,3,1],[2,3,4,2],[0,2,1,0]],[[1,2,2,0],[0,1,3,1],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[0,1,3,1],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,1,4,1],[2,3,3,2],[0,2,1,0]],[[1,2,3,0],[0,1,3,1],[2,3,3,2],[0,2,1,0]],[[1,3,2,0],[0,1,3,1],[2,3,3,2],[0,2,1,0]],[[2,2,2,0],[0,1,3,1],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[0,2,0,2]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[0,3,0,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,3],[0,2,0,1]],[[1,2,2,0],[0,1,3,1],[2,3,4,2],[0,2,0,1]],[[1,2,2,0],[0,1,3,1],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[0,1,3,1],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[0,1,4,1],[2,3,3,2],[0,2,0,1]],[[1,2,3,0],[0,1,3,1],[2,3,3,2],[0,2,0,1]],[[1,3,2,0],[0,1,3,1],[2,3,3,2],[0,2,0,1]],[[2,2,2,0],[0,1,3,1],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[0,1,3,0]],[[1,2,2,0],[0,1,3,1],[2,3,3,3],[0,1,2,0]],[[1,2,2,0],[0,1,3,1],[2,3,4,2],[0,1,2,0]],[[1,2,2,0],[0,1,3,1],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[0,1,3,1],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,1,4,1],[2,3,3,2],[0,1,2,0]],[[1,2,3,0],[0,1,3,1],[2,3,3,2],[0,1,2,0]],[[1,3,2,0],[0,1,3,1],[2,3,3,2],[0,1,2,0]],[[2,2,2,0],[0,1,3,1],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[0,1,1,2]],[[1,2,2,0],[0,1,3,1],[2,3,3,3],[0,1,1,1]],[[1,2,2,0],[0,1,3,1],[2,3,4,2],[0,1,1,1]],[[1,2,2,0],[0,1,3,1],[2,4,3,2],[0,1,1,1]],[[1,2,2,0],[0,1,3,1],[3,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,1,4,1],[2,3,3,2],[0,1,1,1]],[[1,2,3,0],[0,1,3,1],[2,3,3,2],[0,1,1,1]],[[1,3,2,0],[0,1,3,1],[2,3,3,2],[0,1,1,1]],[[2,2,2,0],[0,1,3,1],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,2],[0,0,2,2]],[[1,2,2,0],[0,1,3,1],[2,3,3,3],[0,0,2,1]],[[1,2,2,0],[0,1,3,1],[2,3,4,2],[0,0,2,1]],[[1,2,2,0],[0,1,4,1],[2,3,3,2],[0,0,2,1]],[[1,2,3,0],[0,1,3,1],[2,3,3,2],[0,0,2,1]],[[1,3,2,0],[0,1,3,1],[2,3,3,2],[0,0,2,1]],[[2,2,2,0],[0,1,3,1],[2,3,3,2],[0,0,2,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,1,3,1],[2,4,3,1],[1,2,0,1]],[[1,2,2,0],[0,1,3,1],[3,3,3,1],[1,2,0,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[0,1,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,2,0],[0,1,3,1],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[0,1,3,1],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[0,1,4,1],[2,3,3,1],[1,1,1,1]],[[1,2,3,0],[0,1,3,1],[2,3,3,1],[1,1,1,1]],[[1,3,2,0],[0,1,3,1],[2,3,3,1],[1,1,1,1]],[[2,2,2,0],[0,1,3,1],[2,3,3,1],[1,1,1,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,1],[1,0,2,2]],[[1,2,2,0],[0,1,3,1],[2,3,3,1],[1,0,3,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[0,1,3,1],[2,3,4,1],[1,0,2,1]],[[1,2,2,0],[0,1,3,1],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[0,1,3,1],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[0,1,4,1],[2,3,3,1],[1,0,2,1]],[[1,2,3,0],[0,1,3,1],[2,3,3,1],[1,0,2,1]],[[1,3,2,0],[0,1,3,1],[2,3,3,1],[1,0,2,1]],[[2,2,2,0],[0,1,3,1],[2,3,3,1],[1,0,2,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[0,1,3,1],[2,3,4,1],[0,2,1,1]],[[1,2,2,0],[0,1,3,1],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[0,1,3,1],[3,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,0,1,1],[3,3,3,2],[1,2,2,1]],[[1,0,1,1],[2,0,1,1],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[2,0,1,1],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[2,0,1,1],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[2,0,1,1],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[2,0,1,2],[1,3,3,3],[1,2,2,1]],[[1,0,1,1],[2,0,1,2],[1,3,3,2],[2,2,2,1]],[[1,0,1,1],[2,0,1,2],[1,3,3,2],[1,3,2,1]],[[1,0,1,1],[2,0,1,2],[1,3,3,2],[1,2,3,1]],[[1,0,1,1],[2,0,1,2],[1,3,3,2],[1,2,2,2]],[[1,0,1,1],[2,0,1,2],[3,2,3,2],[1,2,2,1]],[[1,0,1,1],[2,0,1,2],[2,2,3,3],[1,2,2,1]],[[1,0,1,1],[2,0,1,2],[2,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,0,1,2],[2,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,0,1,2],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,0,1,2],[2,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,0,1,2],[3,3,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,1,2],[2,3,2,3],[1,2,2,1]],[[1,0,1,1],[2,0,1,2],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,0,1,2],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,0,1,2],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,0,1,2],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,0,1,2],[3,3,3,1],[1,2,2,1]],[[1,0,1,1],[2,0,1,2],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,0,1,2],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,0,1,2],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,0,1,2],[2,3,3,1],[1,2,2,2]],[[1,0,1,1],[2,0,1,2],[2,3,3,3],[0,2,2,1]],[[1,0,1,1],[2,0,1,2],[2,3,3,2],[0,3,2,1]],[[1,0,1,1],[2,0,1,2],[2,3,3,2],[0,2,3,1]],[[1,0,1,1],[2,0,1,2],[2,3,3,2],[0,2,2,2]],[[1,0,1,1],[2,0,1,2],[3,3,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,1,2],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,0,1,2],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,0,1,2],[2,3,3,2],[1,2,3,0]],[[1,0,1,1],[2,0,2,0],[3,3,3,2],[1,2,2,1]],[[1,0,1,1],[2,0,2,0],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[2,0,2,0],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[2,0,2,0],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[2,0,2,0],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[2,0,2,1],[3,3,3,1],[1,2,2,1]],[[1,0,1,1],[2,0,2,1],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,0,2,1],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,0,2,1],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,0,2,1],[2,3,3,1],[1,2,2,2]],[[1,0,1,1],[2,0,2,1],[3,3,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,2,1],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,0,2,1],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,0,2,1],[2,3,3,2],[1,2,3,0]],[[1,0,1,2],[2,0,2,2],[1,3,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,2,3],[1,3,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[1,3,2,3],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[1,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,0,2,2],[1,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,0,2,2],[1,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,0,2,2],[1,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,0,2,2],[1,3,4,1],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[1,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,0,2,2],[1,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,0,2,2],[1,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,0,2,2],[1,3,3,1],[1,2,2,2]],[[1,0,1,2],[2,0,2,2],[1,3,3,2],[1,2,1,1]],[[1,0,1,1],[2,0,2,3],[1,3,3,2],[1,2,1,1]],[[1,0,1,1],[2,0,2,2],[1,3,4,2],[1,2,1,1]],[[1,0,1,1],[2,0,2,2],[1,3,3,3],[1,2,1,1]],[[1,0,1,1],[2,0,2,2],[1,3,3,2],[1,2,1,2]],[[1,0,1,2],[2,0,2,2],[1,3,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,2,3],[1,3,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,2,2],[1,3,4,2],[1,2,2,0]],[[1,0,1,1],[2,0,2,2],[1,3,3,3],[1,2,2,0]],[[1,0,1,1],[2,0,2,2],[1,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,0,2,2],[1,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,0,2,2],[1,3,3,2],[1,2,3,0]],[[1,0,1,2],[2,0,2,2],[2,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,2,3],[2,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[3,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,0,2,2],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,0,2,2],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,0,2,2],[3,2,3,1],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,0,2,2],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,0,2,2],[2,2,3,1],[1,2,2,2]],[[1,0,1,2],[2,0,2,2],[2,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,0,2,3],[2,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,0,2,2],[2,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,0,2,2],[2,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,0,2,2],[2,2,3,2],[1,2,1,2]],[[1,0,1,2],[2,0,2,2],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,2,3],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,2,2],[3,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,2,2],[2,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,0,2,2],[2,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,0,2,2],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,0,2,2],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,0,2,2],[2,2,3,2],[1,2,3,0]],[[1,0,1,2],[2,0,2,2],[2,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,0,2,3],[2,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[3,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,1,3],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,0,2,2],[2,3,1,2],[1,2,2,2]],[[1,0,1,1],[2,0,2,2],[3,3,2,1],[1,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,0,2,2],[2,3,2,1],[1,2,2,2]],[[1,0,1,2],[2,0,2,2],[2,3,2,2],[0,2,2,1]],[[1,0,1,1],[2,0,2,3],[2,3,2,2],[0,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,2,3],[0,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,2,2],[0,3,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,2,2],[0,2,3,1]],[[1,0,1,1],[2,0,2,2],[2,3,2,2],[0,2,2,2]],[[1,0,1,1],[2,0,2,2],[3,3,2,2],[1,2,2,0]],[[1,0,1,1],[2,0,2,2],[2,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,0,2,2],[2,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,0,2,2],[2,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,0,2,2],[2,3,4,1],[0,2,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,3,1],[0,3,2,1]],[[1,0,1,1],[2,0,2,2],[2,3,3,1],[0,2,3,1]],[[1,0,1,1],[2,0,2,2],[2,3,3,1],[0,2,2,2]],[[1,0,1,1],[2,0,2,2],[3,3,3,1],[1,2,1,1]],[[1,0,1,1],[2,0,2,2],[2,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,0,2,2],[2,3,3,1],[1,3,1,1]],[[1,0,1,2],[2,0,2,2],[2,3,3,2],[0,2,1,1]],[[1,0,1,1],[2,0,2,3],[2,3,3,2],[0,2,1,1]],[[1,0,1,1],[2,0,2,2],[2,3,4,2],[0,2,1,1]],[[1,0,1,1],[2,0,2,2],[2,3,3,3],[0,2,1,1]],[[1,0,1,1],[2,0,2,2],[2,3,3,2],[0,2,1,2]],[[1,0,1,2],[2,0,2,2],[2,3,3,2],[0,2,2,0]],[[1,0,1,1],[2,0,2,3],[2,3,3,2],[0,2,2,0]],[[1,0,1,1],[2,0,2,2],[2,3,4,2],[0,2,2,0]],[[1,0,1,1],[2,0,2,2],[2,3,3,3],[0,2,2,0]],[[1,0,1,1],[2,0,2,2],[2,3,3,2],[0,3,2,0]],[[1,0,1,1],[2,0,2,2],[2,3,3,2],[0,2,3,0]],[[1,0,1,1],[2,0,2,2],[3,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,0,2,2],[2,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,0,2,2],[2,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,0,2,2],[3,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,0,2,2],[2,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,0,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,4,1],[2,3,3,1],[0,2,1,1]],[[1,2,3,0],[0,1,3,1],[2,3,3,1],[0,2,1,1]],[[1,3,2,0],[0,1,3,1],[2,3,3,1],[0,2,1,1]],[[2,2,2,0],[0,1,3,1],[2,3,3,1],[0,2,1,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,1],[0,1,2,2]],[[1,2,2,0],[0,1,3,1],[2,3,3,1],[0,1,3,1]],[[1,2,2,0],[0,1,3,1],[2,3,4,1],[0,1,2,1]],[[1,2,2,0],[0,1,3,1],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[0,1,3,1],[3,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,0,3,0],[1,3,4,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,0],[1,3,3,2],[2,2,2,1]],[[1,0,1,1],[2,0,3,0],[1,3,3,2],[1,3,2,1]],[[1,0,1,1],[2,0,3,0],[1,3,3,2],[1,2,3,1]],[[1,0,1,1],[2,0,3,0],[1,3,3,2],[1,2,2,2]],[[1,0,1,1],[2,0,3,0],[3,2,3,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,0],[2,2,4,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,0],[2,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,0,3,0],[2,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,0,3,0],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,0,3,0],[2,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,0,3,0],[3,3,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,0],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,0,3,0],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,0,3,0],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,0,3,0],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,0,3,0],[2,3,4,2],[0,2,2,1]],[[1,0,1,1],[2,0,3,0],[2,3,3,2],[0,3,2,1]],[[1,0,1,1],[2,0,3,0],[2,3,3,2],[0,2,3,1]],[[1,0,1,1],[2,0,3,0],[2,3,3,2],[0,2,2,2]],[[1,0,1,1],[2,0,3,0],[3,3,3,2],[1,2,1,1]],[[1,0,1,1],[2,0,3,0],[2,3,3,2],[2,2,1,1]],[[1,0,1,1],[2,0,3,0],[2,3,3,2],[1,3,1,1]],[[1,0,1,1],[2,0,3,1],[1,3,2,3],[1,2,2,1]],[[1,0,1,1],[2,0,3,1],[1,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,0,3,1],[1,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,0,3,1],[1,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,0,3,1],[1,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,0,3,1],[1,3,4,1],[1,2,2,1]],[[1,0,1,1],[2,0,3,1],[1,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,0,3,1],[1,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,0,3,1],[1,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,0,3,1],[1,3,3,1],[1,2,2,2]],[[1,0,1,1],[2,0,3,1],[1,3,4,2],[1,2,1,1]],[[1,0,1,1],[2,0,3,1],[1,3,3,3],[1,2,1,1]],[[1,0,1,1],[2,0,3,1],[1,3,3,2],[1,2,1,2]],[[1,0,1,1],[2,0,3,1],[1,3,4,2],[1,2,2,0]],[[1,0,1,1],[2,0,3,1],[1,3,3,3],[1,2,2,0]],[[1,0,1,1],[2,0,3,1],[1,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,0,3,1],[1,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,0,3,1],[1,3,3,2],[1,2,3,0]],[[1,0,1,1],[2,0,3,1],[3,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,0,3,1],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,0,3,1],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,0,3,1],[3,2,3,1],[1,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,0,3,1],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,0,3,1],[2,2,3,1],[1,2,2,2]],[[1,0,1,1],[2,0,3,1],[2,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,0,3,1],[2,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,0,3,1],[2,2,3,2],[1,2,1,2]],[[1,0,1,1],[2,0,3,1],[3,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,3,1],[2,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,0,3,1],[2,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,0,3,1],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,0,3,1],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,0,3,1],[2,2,3,2],[1,2,3,0]],[[1,0,1,1],[2,0,3,1],[3,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,1,3],[1,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,0,3,1],[2,3,1,2],[1,2,2,2]],[[1,0,1,1],[2,0,3,1],[3,3,2,1],[1,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,0,3,1],[2,3,2,1],[1,2,2,2]],[[1,0,1,1],[2,0,3,1],[2,3,2,3],[0,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,2,2],[0,3,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,2,2],[0,2,3,1]],[[1,0,1,1],[2,0,3,1],[2,3,2,2],[0,2,2,2]],[[1,0,1,1],[2,0,3,1],[3,3,2,2],[1,2,2,0]],[[1,0,1,1],[2,0,3,1],[2,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,0,3,1],[2,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,0,3,1],[2,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,0,3,1],[3,3,3,0],[1,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,0],[2,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,0],[1,3,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,0],[1,2,3,1]],[[1,0,1,1],[2,0,3,1],[2,3,4,1],[0,2,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,1],[0,3,2,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,1],[0,2,3,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,1],[0,2,2,2]],[[1,0,1,1],[2,0,3,1],[3,3,3,1],[1,2,1,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,1],[1,3,1,1]],[[1,0,1,1],[2,0,3,1],[2,3,4,2],[0,2,1,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,3],[0,2,1,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,2],[0,2,1,2]],[[1,0,1,1],[2,0,3,1],[2,3,4,2],[0,2,2,0]],[[1,0,1,1],[2,0,3,1],[2,3,3,3],[0,2,2,0]],[[1,0,1,1],[2,0,3,1],[2,3,3,2],[0,3,2,0]],[[1,0,1,1],[2,0,3,1],[2,3,3,2],[0,2,3,0]],[[1,0,1,1],[2,0,3,1],[3,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,0,3,1],[2,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,0,3,1],[3,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,0,3,1],[2,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,0,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,4,1],[2,3,3,1],[0,1,2,1]],[[1,2,3,0],[0,1,3,1],[2,3,3,1],[0,1,2,1]],[[1,3,2,0],[0,1,3,1],[2,3,3,1],[0,1,2,1]],[[2,2,2,0],[0,1,3,1],[2,3,3,1],[0,1,2,1]],[[1,0,1,2],[2,0,3,2],[1,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,3],[1,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[1,1,3,3],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[1,1,3,2],[1,2,3,1]],[[1,0,1,1],[2,0,3,2],[1,1,3,2],[1,2,2,2]],[[1,0,1,2],[2,0,3,2],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,3],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[1,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[1,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,0,3,2],[1,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,0,3,2],[1,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,0,3,2],[1,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,0,3,2],[1,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[1,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,0,3,2],[1,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,0,3,2],[1,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,0,3,2],[1,2,3,1],[1,2,2,2]],[[1,0,1,2],[2,0,3,2],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,0,3,3],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,0,3,2],[1,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,0,3,2],[1,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,0,3,2],[1,2,3,2],[1,2,1,2]],[[1,0,1,2],[2,0,3,2],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,3,3],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,3,2],[1,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,0,3,2],[1,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,0,3,2],[1,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,0,3,2],[1,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,0,3,2],[1,2,3,2],[1,2,3,0]],[[1,0,1,2],[2,0,3,2],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,0,3,3],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,0,3,2],[1,3,2,3],[1,1,2,1]],[[1,0,1,1],[2,0,3,2],[1,3,2,2],[1,1,3,1]],[[1,0,1,1],[2,0,3,2],[1,3,2,2],[1,1,2,2]],[[1,0,1,1],[2,0,3,2],[1,3,4,0],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,0],[2,2,2,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,0],[1,3,2,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,0],[1,2,3,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,0],[1,2,2,2]],[[1,0,1,1],[2,0,3,2],[1,3,4,1],[1,1,2,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,1],[1,1,3,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,1],[1,1,2,2]],[[1,0,1,1],[2,0,3,2],[1,3,4,1],[1,2,2,0]],[[1,0,1,1],[2,0,3,2],[1,3,3,1],[2,2,2,0]],[[1,0,1,1],[2,0,3,2],[1,3,3,1],[1,3,2,0]],[[1,0,1,1],[2,0,3,2],[1,3,3,1],[1,2,3,0]],[[1,0,1,2],[2,0,3,2],[1,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,0,3,3],[1,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,0,3,2],[1,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,3],[1,0,2,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,2],[1,0,2,2]],[[1,0,1,2],[2,0,3,2],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,0,3,3],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,0,3,2],[1,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,3],[1,1,1,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,2],[1,1,1,2]],[[1,0,1,2],[2,0,3,2],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,0,3,3],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,0,3,2],[1,3,4,2],[1,1,2,0]],[[1,0,1,1],[2,0,3,2],[1,3,3,3],[1,1,2,0]],[[1,0,1,1],[2,0,3,2],[1,3,3,2],[1,1,3,0]],[[1,0,1,2],[2,0,3,2],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,0,3,3],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,0,3,2],[1,3,4,2],[1,2,0,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,3],[1,2,0,1]],[[1,0,1,1],[2,0,3,2],[1,3,3,2],[1,2,0,2]],[[1,0,1,2],[2,0,3,2],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,0,3,3],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,0,3,2],[1,3,4,2],[1,2,1,0]],[[1,0,1,1],[2,0,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[0,1,3,1],[2,3,3,0],[2,1,2,1]],[[1,2,2,0],[0,1,3,1],[2,4,3,0],[1,1,2,1]],[[1,2,2,0],[0,1,3,1],[3,3,3,0],[1,1,2,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,0],[0,2,3,1]],[[1,2,2,0],[0,1,3,1],[2,3,3,0],[0,3,2,1]],[[1,2,2,0],[0,1,3,1],[2,4,3,0],[0,2,2,1]],[[1,0,1,2],[2,0,3,2],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,3],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,0,3,3],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,0,3,2],[1,2,3,1]],[[1,0,1,1],[2,0,3,2],[2,0,3,2],[1,2,2,2]],[[1,0,1,2],[2,0,3,2],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,3],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[3,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,1,2,3],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,1,2,2],[2,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,1,2,2],[1,3,2,1]],[[1,0,1,1],[2,0,3,2],[2,1,2,2],[1,2,3,1]],[[1,0,1,1],[2,0,3,2],[2,1,2,2],[1,2,2,2]],[[1,0,1,1],[2,0,3,2],[3,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,1,4,1],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,1,3,1],[2,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,1,3,1],[1,3,2,1]],[[1,0,1,1],[2,0,3,2],[2,1,3,1],[1,2,3,1]],[[1,0,1,1],[2,0,3,2],[2,1,3,1],[1,2,2,2]],[[1,0,1,2],[2,0,3,2],[2,1,3,2],[0,2,2,1]],[[1,0,1,1],[2,0,3,3],[2,1,3,2],[0,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,1,3,3],[0,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,1,3,2],[0,2,3,1]],[[1,0,1,1],[2,0,3,2],[2,1,3,2],[0,2,2,2]],[[1,0,1,2],[2,0,3,2],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,0,3,3],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,0,3,2],[2,1,4,2],[1,2,1,1]],[[1,0,1,1],[2,0,3,2],[2,1,3,3],[1,2,1,1]],[[1,0,1,1],[2,0,3,2],[2,1,3,2],[1,2,1,2]],[[1,0,1,2],[2,0,3,2],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,3,3],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,3,2],[3,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,1,3,3],[1,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,1,3,2],[2,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,1,3,2],[1,3,2,0]],[[1,0,1,1],[2,0,3,2],[2,1,3,2],[1,2,3,0]],[[1,0,1,2],[2,0,3,2],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,0,3,3],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,2,2,3],[0,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,2,2,2],[0,3,2,1]],[[1,0,1,1],[2,0,3,2],[2,2,2,2],[0,2,3,1]],[[1,0,1,1],[2,0,3,2],[2,2,2,2],[0,2,2,2]],[[1,0,1,1],[2,0,3,2],[3,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,2,4,0],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,2,3,0],[2,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,2,3,0],[1,3,2,1]],[[1,0,1,1],[2,0,3,2],[2,2,3,0],[1,2,3,1]],[[1,0,1,1],[2,0,3,2],[2,2,3,0],[1,2,2,2]],[[1,0,1,1],[2,0,3,2],[2,2,4,1],[0,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,2,3,1],[0,3,2,1]],[[1,0,1,1],[2,0,3,2],[2,2,3,1],[0,2,3,1]],[[1,0,1,1],[2,0,3,2],[2,2,3,1],[0,2,2,2]],[[1,0,1,1],[2,0,3,2],[3,2,3,1],[1,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,2,4,1],[1,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,2,3,1],[2,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,2,3,1],[1,3,2,0]],[[1,0,1,1],[2,0,3,2],[2,2,3,1],[1,2,3,0]],[[1,0,1,2],[2,0,3,2],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,0,3,3],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,0,3,2],[2,2,4,2],[0,2,1,1]],[[1,0,1,1],[2,0,3,2],[2,2,3,3],[0,2,1,1]],[[1,0,1,1],[2,0,3,2],[2,2,3,2],[0,2,1,2]],[[1,0,1,2],[2,0,3,2],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,0,3,3],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,2,4,2],[0,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,2,3,3],[0,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,2,3,2],[0,3,2,0]],[[1,0,1,1],[2,0,3,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,0],[0,1,3,1],[3,3,3,0],[0,2,2,1]],[[1,0,1,2],[2,0,3,2],[2,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,3],[2,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[3,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,0,3],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,0,2],[2,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,0,2],[1,3,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,0,2],[1,2,3,1]],[[1,0,1,1],[2,0,3,2],[2,3,0,2],[1,2,2,2]],[[1,0,1,1],[2,0,3,2],[3,3,2,0],[1,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,2,0],[2,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,2,0],[1,3,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,2,0],[1,2,3,1]],[[1,0,1,1],[2,0,3,2],[2,3,2,0],[1,2,2,2]],[[1,0,1,1],[2,0,3,2],[3,3,2,1],[1,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,3,2,1],[2,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,3,2,1],[1,3,2,0]],[[1,0,1,1],[2,0,3,2],[2,3,2,1],[1,2,3,0]],[[1,0,1,2],[2,0,3,2],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,0,3,3],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,0,3,2],[2,3,2,2],[0,1,2,2]],[[1,0,1,2],[2,0,3,2],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,0,3,3],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,2,3],[1,0,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,2,2],[1,0,3,1]],[[1,0,1,1],[2,0,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[0,1,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,1,3,1],[2,4,2,2],[1,1,2,0]],[[1,2,2,0],[0,1,3,1],[3,3,2,2],[1,1,2,0]],[[1,2,2,0],[0,1,3,1],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[0,1,3,1],[2,3,2,2],[1,0,3,1]],[[1,0,1,1],[2,0,3,2],[2,3,4,0],[0,2,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,0],[0,3,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,0],[0,2,3,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,0],[0,2,2,2]],[[1,0,1,1],[2,0,3,2],[3,3,3,0],[1,2,1,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,0],[2,2,1,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,0],[1,3,1,1]],[[1,0,1,1],[2,0,3,2],[2,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,1],[0,1,2,2]],[[1,0,1,1],[2,0,3,2],[2,3,4,1],[0,2,2,0]],[[1,0,1,1],[2,0,3,2],[2,3,3,1],[0,3,2,0]],[[1,0,1,1],[2,0,3,2],[2,3,3,1],[0,2,3,0]],[[1,0,1,1],[2,0,3,2],[2,3,4,1],[1,0,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,1],[1,0,3,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,1],[1,0,2,2]],[[1,0,1,1],[2,0,3,2],[3,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,1],[2,2,0,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,1],[1,3,0,1]],[[1,0,1,1],[2,0,3,2],[3,3,3,1],[1,2,1,0]],[[1,0,1,1],[2,0,3,2],[2,3,3,1],[2,2,1,0]],[[1,0,1,1],[2,0,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,1,3,1],[2,3,2,3],[1,0,2,1]],[[1,0,1,2],[2,0,3,2],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,0,3,3],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,2],[0,0,2,2]],[[1,0,1,2],[2,0,3,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,0,3,3],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,0,3,2],[2,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,2],[0,1,1,2]],[[1,0,1,2],[2,0,3,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,0,3,3],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,0,3,2],[2,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,0,3,2],[2,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,0,3,2],[2,3,3,2],[0,1,3,0]],[[1,0,1,2],[2,0,3,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,0,3,3],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,0,3,2],[2,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,2],[0,2,0,2]],[[1,0,1,2],[2,0,3,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,0,3,3],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,0,3,2],[2,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,0,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,0],[0,1,3,1],[2,3,2,2],[0,2,3,0]],[[1,2,2,0],[0,1,3,1],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[0,1,3,1],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[0,1,3,1],[3,3,2,2],[0,2,2,0]],[[1,2,2,0],[0,1,3,1],[2,3,2,2],[0,1,2,2]],[[1,2,2,0],[0,1,3,1],[2,3,2,2],[0,1,3,1]],[[1,0,1,2],[2,0,3,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,0,3,3],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,0,3,2],[2,3,4,2],[1,0,1,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,3],[1,0,1,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,2],[1,0,1,2]],[[1,0,1,2],[2,0,3,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,0,3,3],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,0,3,2],[2,3,4,2],[1,0,2,0]],[[1,0,1,1],[2,0,3,2],[2,3,3,3],[1,0,2,0]],[[1,0,1,1],[2,0,3,2],[2,3,3,2],[1,0,3,0]],[[1,0,1,2],[2,0,3,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,0,3,3],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,0,3,2],[2,3,4,2],[1,1,0,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,3],[1,1,0,1]],[[1,0,1,1],[2,0,3,2],[2,3,3,2],[1,1,0,2]],[[1,0,1,2],[2,0,3,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,0,3,3],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,0,3,2],[2,3,4,2],[1,1,1,0]],[[1,0,1,1],[2,0,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[0,1,3,1],[2,3,2,3],[0,1,2,1]],[[1,2,2,0],[0,1,3,1],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[0,1,3,1],[2,4,2,1],[1,1,2,1]],[[1,2,2,0],[0,1,3,1],[3,3,2,1],[1,1,2,1]],[[1,2,2,0],[0,1,3,1],[2,3,2,1],[0,2,2,2]],[[1,2,2,0],[0,1,3,1],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[0,1,3,1],[2,3,2,1],[0,3,2,1]],[[1,2,2,0],[0,1,3,1],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[0,1,3,1],[3,3,2,1],[0,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,3,1,2],[2,1,2,1]],[[1,2,2,0],[0,1,3,1],[2,4,1,2],[1,1,2,1]],[[1,2,2,0],[0,1,3,1],[3,3,1,2],[1,1,2,1]],[[1,2,2,0],[0,1,3,1],[2,3,1,2],[0,2,2,2]],[[1,2,2,0],[0,1,3,1],[2,3,1,2],[0,2,3,1]],[[1,2,2,0],[0,1,3,1],[2,3,1,2],[0,3,2,1]],[[1,2,2,0],[0,1,3,1],[2,3,1,3],[0,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,4,1,2],[0,2,2,1]],[[1,2,2,0],[0,1,3,1],[3,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,1,0,1],[3,3,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,0,1],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[2,1,0,1],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[2,1,0,1],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,0,1],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[2,1,0,2],[1,3,3,3],[1,2,2,1]],[[1,0,1,1],[2,1,0,2],[1,3,3,2],[2,2,2,1]],[[1,0,1,1],[2,1,0,2],[1,3,3,2],[1,3,2,1]],[[1,0,1,1],[2,1,0,2],[1,3,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,0,2],[1,3,3,2],[1,2,2,2]],[[1,0,1,1],[2,1,0,2],[3,2,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,0,2],[2,2,3,3],[1,2,2,1]],[[1,0,1,1],[2,1,0,2],[2,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,1,0,2],[2,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,1,0,2],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,0,2],[2,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,1,0,2],[3,3,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,0,2],[2,3,2,3],[1,2,2,1]],[[1,0,1,1],[2,1,0,2],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,1,0,2],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,1,0,2],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,1,0,2],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,1,0,2],[3,3,3,1],[1,2,2,1]],[[1,0,1,1],[2,1,0,2],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,1,0,2],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,1,0,2],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,1,0,2],[2,3,3,1],[1,2,2,2]],[[1,0,1,1],[2,1,0,2],[2,3,3,3],[0,2,2,1]],[[1,0,1,1],[2,1,0,2],[2,3,3,2],[0,3,2,1]],[[1,0,1,1],[2,1,0,2],[2,3,3,2],[0,2,3,1]],[[1,0,1,1],[2,1,0,2],[2,3,3,2],[0,2,2,2]],[[1,0,1,1],[2,1,0,2],[3,3,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,0,2],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,1,0,2],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,1,0,2],[2,3,3,2],[1,2,3,0]],[[1,0,1,1],[2,1,1,0],[3,3,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,1,0],[2,3,3,2],[2,2,2,1]],[[1,0,1,1],[2,1,1,0],[2,3,3,2],[1,3,2,1]],[[1,0,1,1],[2,1,1,0],[2,3,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,1,0],[2,3,3,2],[1,2,2,2]],[[1,0,1,1],[2,1,1,1],[3,3,3,1],[1,2,2,1]],[[1,0,1,1],[2,1,1,1],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,1,1,1],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,1,1,1],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,1,1,1],[2,3,3,1],[1,2,2,2]],[[1,0,1,1],[2,1,1,1],[3,3,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,1,1],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,1,1,1],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,1,1,1],[2,3,3,2],[1,2,3,0]],[[1,0,1,1],[2,1,1,2],[1,2,3,3],[1,2,2,1]],[[1,0,1,1],[2,1,1,2],[1,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,1,1,2],[1,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,1,1,2],[1,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,1,2],[1,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,1,1,2],[1,3,3,3],[1,1,2,1]],[[1,0,1,1],[2,1,1,2],[1,3,3,2],[1,1,3,1]],[[1,0,1,1],[2,1,1,2],[1,3,3,2],[1,1,2,2]],[[1,0,1,1],[2,1,1,2],[3,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,1,2],[2,1,3,3],[1,2,2,1]],[[1,0,1,1],[2,1,1,2],[2,1,3,2],[2,2,2,1]],[[1,0,1,1],[2,1,1,2],[2,1,3,2],[1,3,2,1]],[[1,0,1,1],[2,1,1,2],[2,1,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,1,2],[2,1,3,2],[1,2,2,2]],[[1,0,1,1],[2,1,1,2],[2,2,3,3],[0,2,2,1]],[[1,0,1,1],[2,1,1,2],[2,2,3,2],[0,3,2,1]],[[1,0,1,1],[2,1,1,2],[2,2,3,2],[0,2,3,1]],[[1,0,1,1],[2,1,1,2],[2,2,3,2],[0,2,2,2]],[[1,0,1,1],[2,1,1,2],[3,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,1,2],[2,3,1,3],[1,2,2,1]],[[1,0,1,1],[2,1,1,2],[2,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,1,1,2],[2,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,1,1,2],[2,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,1,1,2],[2,3,1,2],[1,2,2,2]],[[1,0,1,1],[2,1,1,2],[3,3,2,1],[1,2,2,1]],[[1,0,1,1],[2,1,1,2],[2,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,1,1,2],[2,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,1,1,2],[2,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,1,1,2],[2,3,2,1],[1,2,2,2]],[[1,0,1,1],[2,1,1,2],[3,3,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,1,2],[2,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,1,1,2],[2,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,1,1,2],[2,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,1,1,2],[3,3,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,1,2],[2,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,1,1,2],[2,3,3,1],[1,3,1,1]],[[1,0,1,1],[2,1,1,2],[2,3,3,3],[0,1,2,1]],[[1,0,1,1],[2,1,1,2],[2,3,3,2],[0,1,3,1]],[[1,0,1,1],[2,1,1,2],[2,3,3,2],[0,1,2,2]],[[1,0,1,1],[2,1,1,2],[2,3,3,3],[1,0,2,1]],[[1,0,1,1],[2,1,1,2],[2,3,3,2],[1,0,3,1]],[[1,0,1,1],[2,1,1,2],[2,3,3,2],[1,0,2,2]],[[1,0,1,1],[2,1,1,2],[3,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,1,2],[2,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,1,1,2],[2,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,1,1,2],[3,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,1,2],[2,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,1,1,2],[2,3,3,2],[1,3,1,0]],[[1,0,1,1],[2,1,2,0],[3,3,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,0],[2,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,1,2,0],[2,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,1,2,0],[2,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,1,2,0],[2,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,1,2,0],[3,3,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,2,0],[2,3,3,2],[2,2,1,1]],[[1,0,1,1],[2,1,2,0],[2,3,3,2],[1,3,1,1]],[[1,0,1,1],[2,1,2,1],[3,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,1],[2,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,1,2,1],[2,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,1,2,1],[2,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,1,2,1],[2,3,1,2],[1,2,2,2]],[[1,0,1,1],[2,1,2,1],[3,3,2,1],[1,2,2,1]],[[1,0,1,1],[2,1,2,1],[2,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,1,2,1],[2,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,1,2,1],[2,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,1,2,1],[2,3,2,1],[1,2,2,2]],[[1,0,1,1],[2,1,2,1],[3,3,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,2,1],[2,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,1,2,1],[2,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,1,2,1],[2,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,1,2,1],[3,3,3,0],[1,2,2,1]],[[1,0,1,1],[2,1,2,1],[2,3,3,0],[2,2,2,1]],[[1,0,1,1],[2,1,2,1],[2,3,3,0],[1,3,2,1]],[[1,0,1,1],[2,1,2,1],[2,3,3,0],[1,2,3,1]],[[1,0,1,1],[2,1,2,1],[3,3,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,2,1],[2,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,1,2,1],[2,3,3,1],[1,3,1,1]],[[1,0,1,1],[2,1,2,1],[3,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,2,1],[2,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,1,2,1],[2,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,1,2,1],[3,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,2,1],[2,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,1,2,1],[2,3,3,2],[1,3,1,0]],[[1,0,1,2],[2,1,2,2],[1,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,3],[1,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,1,3,3],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,1,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,2,2],[1,1,3,2],[1,2,2,2]],[[1,0,1,2],[2,1,2,2],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,3],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,1,2,2],[1,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,1,2,2],[1,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,1,2,2],[1,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,1,2,2],[1,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,1,2,2],[1,2,3,1],[1,2,2,2]],[[1,0,1,2],[2,1,2,2],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,2,3],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,2,2],[1,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,1,2,2],[1,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,1,2,2],[1,2,3,2],[1,2,1,2]],[[1,0,1,2],[2,1,2,2],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,2,3],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,2,2],[1,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,1,2,2],[1,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,1,2,2],[1,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,1,2,2],[1,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,1,2,2],[1,2,3,2],[1,2,3,0]],[[1,0,1,2],[2,1,2,2],[1,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,3],[1,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,4,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,1,3],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,1,2,2],[1,3,1,2],[1,2,2,2]],[[1,0,1,1],[2,1,2,2],[1,4,2,1],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,1,2,2],[1,3,2,1],[1,2,2,2]],[[1,0,1,2],[2,1,2,2],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,1,2,3],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,2,3],[1,1,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,2,2],[1,1,3,1]],[[1,0,1,1],[2,1,2,2],[1,3,2,2],[1,1,2,2]],[[1,0,1,1],[2,1,2,2],[1,4,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,2,2],[1,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,1,2,2],[1,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,1,2,2],[1,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,1,2,2],[1,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,4,1],[1,1,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,1],[1,1,3,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,1],[1,1,2,2]],[[1,0,1,1],[2,1,2,2],[1,4,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,2,2],[1,3,4,1],[1,2,1,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,1],[1,3,1,1]],[[1,0,1,2],[2,1,2,2],[1,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,1,2,3],[1,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,3],[1,0,2,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,2],[1,0,2,2]],[[1,0,1,2],[2,1,2,2],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,1,2,3],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,1,2,2],[1,4,3,2],[1,1,1,1]],[[1,0,1,1],[2,1,2,2],[1,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,3],[1,1,1,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,2],[1,1,1,2]],[[1,0,1,2],[2,1,2,2],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,1,2,3],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,1,2,2],[1,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,1,2,2],[1,3,4,2],[1,1,2,0]],[[1,0,1,1],[2,1,2,2],[1,3,3,3],[1,1,2,0]],[[1,0,1,1],[2,1,2,2],[1,3,3,2],[1,1,3,0]],[[1,0,1,2],[2,1,2,2],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,2,3],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,2,2],[1,4,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,2,2],[1,3,4,2],[1,2,0,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,3],[1,2,0,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,1,2,2],[1,3,3,2],[1,2,0,2]],[[1,0,1,2],[2,1,2,2],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,2,3],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,2,2],[1,4,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,2,2],[1,3,4,2],[1,2,1,0]],[[1,0,1,1],[2,1,2,2],[1,3,3,3],[1,2,1,0]],[[1,0,1,1],[2,1,2,2],[1,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,1,2,2],[1,3,3,2],[1,3,1,0]],[[1,0,1,2],[2,1,2,2],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,3],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,0,3,3],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,0,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,2,2],[2,0,3,2],[1,2,2,2]],[[2,0,1,1],[2,1,2,2],[2,1,2,2],[1,2,2,1]],[[1,0,1,2],[2,1,2,2],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[3,1,2,2],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,3],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[3,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,1,2,3],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,1,2,2],[2,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,1,2,2],[1,3,2,1]],[[1,0,1,1],[2,1,2,2],[2,1,2,2],[1,2,3,1]],[[1,0,1,1],[2,1,2,2],[2,1,2,2],[1,2,2,2]],[[2,0,1,1],[2,1,2,2],[2,1,3,1],[1,2,2,1]],[[1,0,1,1],[3,1,2,2],[2,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[3,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,1,4,1],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,1,3,1],[2,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,1,3,1],[1,3,2,1]],[[1,0,1,1],[2,1,2,2],[2,1,3,1],[1,2,3,1]],[[1,0,1,1],[2,1,2,2],[2,1,3,1],[1,2,2,2]],[[1,0,1,2],[2,1,2,2],[2,1,3,2],[0,2,2,1]],[[1,0,1,1],[2,1,2,3],[2,1,3,2],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,1,3,3],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,1,3,2],[0,2,3,1]],[[1,0,1,1],[2,1,2,2],[2,1,3,2],[0,2,2,2]],[[1,0,1,2],[2,1,2,2],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,2,3],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,1,4,2],[1,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,1,3,3],[1,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,1,3,2],[1,2,1,2]],[[2,0,1,1],[2,1,2,2],[2,1,3,2],[1,2,2,0]],[[1,0,1,2],[2,1,2,2],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[3,1,2,2],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,2,3],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,2,2],[3,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,1,3,3],[1,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,1,3,2],[2,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,1,3,2],[1,3,2,0]],[[1,0,1,1],[2,1,2,2],[2,1,3,2],[1,2,3,0]],[[2,0,1,1],[2,1,2,2],[2,2,1,2],[1,2,2,1]],[[1,0,1,2],[2,1,2,2],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[3,1,2,2],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,3],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[3,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,1,3],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,1,2],[2,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,1,2],[1,3,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,1,2],[1,2,3,1]],[[1,0,1,1],[2,1,2,2],[2,2,1,2],[1,2,2,2]],[[2,0,1,1],[2,1,2,2],[2,2,2,1],[1,2,2,1]],[[1,0,1,1],[3,1,2,2],[2,2,2,1],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[3,2,2,1],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,2,1],[2,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,2,1],[1,3,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,2,1],[1,2,3,1]],[[1,0,1,1],[2,1,2,2],[2,2,2,1],[1,2,2,2]],[[1,0,1,2],[2,1,2,2],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,1,2,3],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,2,3],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,2,2],[0,3,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,2,2],[0,2,3,1]],[[1,0,1,1],[2,1,2,2],[2,2,2,2],[0,2,2,2]],[[2,0,1,1],[2,1,2,2],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[3,1,2,2],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,2,2],[3,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,2,2,2],[2,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,2,2,2],[1,3,2,0]],[[1,0,1,1],[2,1,2,2],[2,2,2,2],[1,2,3,0]],[[1,0,1,1],[2,1,2,2],[2,2,4,1],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,3,1],[0,3,2,1]],[[1,0,1,1],[2,1,2,2],[2,2,3,1],[0,2,3,1]],[[1,0,1,1],[2,1,2,2],[2,2,3,1],[0,2,2,2]],[[2,0,1,1],[2,1,2,2],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[3,1,2,2],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,2,2],[3,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,2,3,1],[2,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,2,3,1],[1,3,1,1]],[[1,0,1,2],[2,1,2,2],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,1,2,3],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,2,4,2],[0,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,2,3,3],[0,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,2,3,2],[0,2,1,2]],[[1,0,1,2],[2,1,2,2],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,1,2,3],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,2,4,2],[0,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,2,3,3],[0,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,2,3,2],[0,3,2,0]],[[1,0,1,1],[2,1,2,2],[2,2,3,2],[0,2,3,0]],[[2,0,1,1],[2,1,2,2],[2,2,3,2],[1,2,0,1]],[[1,0,1,1],[3,1,2,2],[2,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,2,2],[3,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,2,2],[2,2,3,2],[2,2,0,1]],[[1,0,1,1],[2,1,2,2],[2,2,3,2],[1,3,0,1]],[[2,0,1,1],[2,1,2,2],[2,2,3,2],[1,2,1,0]],[[1,0,1,1],[3,1,2,2],[2,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,2,2],[3,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,2,2],[2,2,3,2],[2,2,1,0]],[[1,0,1,1],[2,1,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,3,1],[2,2,3,2],[2,2,1,0]],[[1,2,2,0],[0,1,3,1],[3,2,3,2],[1,2,1,0]],[[1,2,2,0],[0,1,3,1],[2,2,3,2],[1,3,0,1]],[[1,2,2,0],[0,1,3,1],[2,2,3,2],[2,2,0,1]],[[1,2,2,0],[0,1,3,1],[3,2,3,2],[1,2,0,1]],[[2,0,1,1],[2,1,2,2],[2,3,1,2],[0,2,2,1]],[[1,0,1,2],[2,1,2,2],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[3,1,2,2],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,1,2,3],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[3,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,4,1,2],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,1,3],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,1,2],[0,3,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,1,2],[0,2,3,1]],[[1,0,1,1],[2,1,2,2],[2,3,1,2],[0,2,2,2]],[[2,0,1,1],[2,1,2,2],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[3,1,2,2],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,1,2,2],[3,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,1,2,2],[2,4,1,2],[1,1,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,1,2],[2,1,2,1]],[[1,0,1,1],[2,1,2,2],[3,3,2,0],[1,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,0],[2,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,0],[1,3,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,0],[1,2,3,1]],[[2,0,1,1],[2,1,2,2],[2,3,2,1],[0,2,2,1]],[[1,0,1,1],[3,1,2,2],[2,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[3,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,4,2,1],[0,2,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,1],[0,3,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,1],[0,2,3,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,1],[0,2,2,2]],[[2,0,1,1],[2,1,2,2],[2,3,2,1],[1,1,2,1]],[[1,0,1,1],[3,1,2,2],[2,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,1,2,2],[3,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,1,2,2],[2,4,2,1],[1,1,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,1],[2,1,2,1]],[[1,0,1,1],[2,1,2,2],[3,3,2,1],[1,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,2,1],[2,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,2,1],[1,3,2,0]],[[1,0,1,2],[2,1,2,2],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,1,2,3],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,2],[0,1,2,2]],[[2,0,1,1],[2,1,2,2],[2,3,2,2],[0,2,2,0]],[[1,0,1,1],[3,1,2,2],[2,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,1,2,2],[3,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,4,2,2],[0,2,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,2,2],[0,3,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,2,2],[0,2,3,0]],[[1,0,1,2],[2,1,2,2],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,1,2,3],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,3],[1,0,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,2],[1,0,3,1]],[[1,0,1,1],[2,1,2,2],[2,3,2,2],[1,0,2,2]],[[2,0,1,1],[2,1,2,2],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[3,1,2,2],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,1,2,2],[3,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,1,2,2],[2,4,2,2],[1,1,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,1,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,2,0],[0,1,3,1],[2,2,3,2],[0,3,2,0]],[[1,2,2,0],[0,1,3,1],[2,2,3,3],[0,2,2,0]],[[1,2,2,0],[0,1,3,1],[2,2,4,2],[0,2,2,0]],[[1,2,2,0],[0,1,4,1],[2,2,3,2],[0,2,2,0]],[[1,2,3,0],[0,1,3,1],[2,2,3,2],[0,2,2,0]],[[1,3,2,0],[0,1,3,1],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,1,2,2],[3,3,3,0],[1,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,0],[2,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,0],[1,3,1,1]],[[2,0,1,1],[2,1,2,2],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[3,1,2,2],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,1,2,2],[3,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,1,2,2],[2,4,3,1],[0,1,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,1],[0,1,2,2]],[[2,0,1,1],[2,1,2,2],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[3,1,2,2],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,1,2,2],[3,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,4,3,1],[0,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,4,1],[0,2,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,1],[0,3,1,1]],[[2,0,1,1],[2,1,2,2],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[3,1,2,2],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,1,2,2],[3,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,1,2,2],[2,4,3,1],[1,0,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,4,1],[1,0,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,1],[2,0,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,1],[1,0,3,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,1],[1,0,2,2]],[[2,0,1,1],[2,1,2,2],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[3,1,2,2],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,1,2,2],[3,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,1,2,2],[2,4,3,1],[1,1,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,4,1],[1,1,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,1],[2,1,1,1]],[[1,0,1,1],[2,1,2,2],[3,3,3,1],[1,2,1,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,1],[2,2,1,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,1],[1,3,1,0]],[[2,2,2,0],[0,1,3,1],[2,2,3,2],[0,2,2,0]],[[1,2,2,0],[0,1,3,1],[2,2,3,2],[0,2,1,2]],[[1,2,2,0],[0,1,3,1],[2,2,3,3],[0,2,1,1]],[[1,2,2,0],[0,1,3,1],[2,2,4,2],[0,2,1,1]],[[1,2,2,0],[0,1,4,1],[2,2,3,2],[0,2,1,1]],[[1,2,3,0],[0,1,3,1],[2,2,3,2],[0,2,1,1]],[[1,3,2,0],[0,1,3,1],[2,2,3,2],[0,2,1,1]],[[2,2,2,0],[0,1,3,1],[2,2,3,2],[0,2,1,1]],[[1,0,1,2],[2,1,2,2],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,1,2,3],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[0,0,2,2]],[[2,0,1,1],[2,1,2,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,2],[2,1,2,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[3,1,2,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,1,2,3],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,1,2,2],[3,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,1,2,2],[2,4,3,2],[0,1,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[0,1,1,2]],[[2,0,1,1],[2,1,2,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,2],[2,1,2,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[3,1,2,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,1,2,3],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,1,2,2],[3,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,1,2,2],[2,4,3,2],[0,1,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[0,1,3,0]],[[2,0,1,1],[2,1,2,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,2],[2,1,2,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[3,1,2,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,1,2,3],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,1,2,2],[3,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,1,2,2],[2,4,3,2],[0,2,0,1]],[[1,0,1,1],[2,1,2,2],[2,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[0,3,0,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[0,2,0,2]],[[2,0,1,1],[2,1,2,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,2],[2,1,2,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[3,1,2,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,1,2,3],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,1,2,2],[3,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,1,2,2],[2,4,3,2],[0,2,1,0]],[[1,0,1,1],[2,1,2,2],[2,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,3],[0,2,1,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,1,3,1],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[0,1,3,1],[2,2,3,1],[2,2,1,1]],[[2,0,1,1],[2,1,2,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,2],[2,1,2,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[3,1,2,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,1,2,3],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,1,2,2],[3,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,1,2,2],[2,4,3,2],[1,0,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,4,2],[1,0,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,3],[1,0,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[2,0,1,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[1,0,1,2]],[[2,0,1,1],[2,1,2,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,2],[2,1,2,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[3,1,2,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,1,2,3],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,1,2,2],[3,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,1,2,2],[2,4,3,2],[1,0,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,4,2],[1,0,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,3],[1,0,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[2,0,2,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[1,0,3,0]],[[2,0,1,1],[2,1,2,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,2],[2,1,2,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[3,1,2,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,1,2,3],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,1,2,2],[3,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,1,2,2],[2,4,3,2],[1,1,0,1]],[[1,0,1,1],[2,1,2,2],[2,3,4,2],[1,1,0,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,3],[1,1,0,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[2,1,0,1]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[1,1,0,2]],[[2,0,1,1],[2,1,2,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,2],[2,1,2,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[3,1,2,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,1,2,3],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,1,2,2],[3,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,1,2,2],[2,4,3,2],[1,1,1,0]],[[1,0,1,1],[2,1,2,2],[2,3,4,2],[1,1,1,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,3],[1,1,1,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,1,3,1],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[0,1,3,1],[2,2,3,1],[0,2,2,2]],[[1,2,2,0],[0,1,3,1],[2,2,3,1],[0,2,3,1]],[[1,2,2,0],[0,1,3,1],[2,2,3,1],[0,3,2,1]],[[1,2,2,0],[0,1,3,1],[2,2,4,1],[0,2,2,1]],[[1,2,2,0],[0,1,4,1],[2,2,3,1],[0,2,2,1]],[[1,2,3,0],[0,1,3,1],[2,2,3,1],[0,2,2,1]],[[1,3,2,0],[0,1,3,1],[2,2,3,1],[0,2,2,1]],[[2,2,2,0],[0,1,3,1],[2,2,3,1],[0,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,2,3,0],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[2,2,3,0],[1,3,2,1]],[[2,0,1,1],[2,1,2,2],[2,3,3,2],[1,2,0,0]],[[1,0,1,1],[3,1,2,2],[2,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,1,2,2],[3,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,1,2,2],[2,4,3,2],[1,2,0,0]],[[1,0,1,1],[2,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,1,3,1],[2,2,3,0],[2,2,2,1]],[[1,2,2,0],[0,1,3,1],[3,2,3,0],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,2,2,2],[1,2,3,0]],[[1,2,2,0],[0,1,3,1],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[0,1,3,1],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[0,1,3,1],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[0,1,3,1],[2,2,2,2],[0,2,2,2]],[[1,2,2,0],[0,1,3,1],[2,2,2,2],[0,2,3,1]],[[1,2,2,0],[0,1,3,1],[2,2,2,2],[0,3,2,1]],[[1,2,2,0],[0,1,3,1],[2,2,2,3],[0,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,2,2,1],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[0,1,3,1],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[0,1,3,1],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,2,1,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[2,2,1,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[2,2,1,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,1],[2,2,1,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,2,1,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[3,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,0],[1,2,4,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,0],[1,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,0],[1,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,0],[1,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,0],[1,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,1,3,0],[1,4,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,0],[1,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,0],[1,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,0],[1,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,0],[1,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,1,3,0],[1,4,3,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,0],[1,3,4,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,0],[1,3,3,2],[1,1,3,1]],[[1,0,1,1],[2,1,3,0],[1,3,3,2],[1,1,2,2]],[[1,0,1,1],[2,1,3,0],[1,4,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,0],[1,3,4,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,0],[1,3,3,2],[2,2,1,1]],[[1,0,1,1],[2,1,3,0],[1,3,3,2],[1,3,1,1]],[[1,0,1,1],[3,1,3,0],[2,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,0],[3,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,0],[2,1,4,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,0],[2,1,3,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,0],[2,1,3,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,0],[2,1,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,0],[2,1,3,2],[1,2,2,2]],[[1,0,1,1],[3,1,3,0],[2,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,0],[3,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,0],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,0],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,0],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,0],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,1,3,0],[2,2,4,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,0],[2,2,3,2],[0,3,2,1]],[[1,0,1,1],[2,1,3,0],[2,2,3,2],[0,2,3,1]],[[1,0,1,1],[2,1,3,0],[2,2,3,2],[0,2,2,2]],[[1,0,1,1],[3,1,3,0],[2,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,0],[3,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,0],[2,2,3,2],[2,2,1,1]],[[1,0,1,1],[2,1,3,0],[2,2,3,2],[1,3,1,1]],[[1,0,1,1],[3,1,3,0],[2,3,2,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,0],[3,3,2,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,0],[2,4,2,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,0],[2,3,2,2],[0,3,2,1]],[[1,0,1,1],[2,1,3,0],[2,3,2,2],[0,2,3,1]],[[1,0,1,1],[2,1,3,0],[2,3,2,2],[0,2,2,2]],[[1,0,1,1],[3,1,3,0],[2,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,0],[3,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,0],[2,4,2,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,0],[2,3,2,2],[2,1,2,1]],[[1,0,1,1],[3,1,3,0],[2,3,3,2],[0,1,2,1]],[[1,0,1,1],[2,1,3,0],[3,3,3,2],[0,1,2,1]],[[1,0,1,1],[2,1,3,0],[2,4,3,2],[0,1,2,1]],[[1,0,1,1],[2,1,3,0],[2,3,4,2],[0,1,2,1]],[[1,0,1,1],[2,1,3,0],[2,3,3,2],[0,1,3,1]],[[1,0,1,1],[2,1,3,0],[2,3,3,2],[0,1,2,2]],[[1,0,1,1],[3,1,3,0],[2,3,3,2],[0,2,1,1]],[[1,0,1,1],[2,1,3,0],[3,3,3,2],[0,2,1,1]],[[1,0,1,1],[2,1,3,0],[2,4,3,2],[0,2,1,1]],[[1,0,1,1],[2,1,3,0],[2,3,4,2],[0,2,1,1]],[[1,0,1,1],[2,1,3,0],[2,3,3,2],[0,3,1,1]],[[1,0,1,1],[3,1,3,0],[2,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,1,3,0],[3,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,1,3,0],[2,4,3,2],[1,0,2,1]],[[1,0,1,1],[2,1,3,0],[2,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,1,3,0],[2,3,3,2],[2,0,2,1]],[[1,0,1,1],[2,1,3,0],[2,3,3,2],[1,0,3,1]],[[1,0,1,1],[2,1,3,0],[2,3,3,2],[1,0,2,2]],[[1,0,1,1],[3,1,3,0],[2,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,0],[3,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,0],[2,4,3,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,0],[2,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,0],[0,1,3,1],[2,1,3,2],[1,2,3,0]],[[1,2,2,0],[0,1,3,1],[2,1,3,2],[1,3,2,0]],[[1,2,2,0],[0,1,3,1],[2,1,3,2],[2,2,2,0]],[[1,2,2,0],[0,1,3,1],[2,1,3,3],[1,2,2,0]],[[1,0,1,1],[2,1,3,1],[1,1,3,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,1,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,1],[1,1,3,2],[1,2,2,2]],[[1,0,1,1],[2,1,3,1],[1,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,1],[1,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,1],[1,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,1,4,1],[1,2,3,1],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,1,3,1],[1,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,1,3,1],[1,2,3,1],[1,2,2,2]],[[1,0,1,1],[2,1,4,1],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[1,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[1,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[1,2,3,2],[1,2,1,2]],[[1,0,1,1],[2,1,4,1],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,1],[1,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,1],[1,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,1,3,1],[1,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,1,3,1],[1,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,1,3,1],[1,2,3,2],[1,2,3,0]],[[1,0,1,1],[2,1,3,1],[1,4,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,1,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,1],[1,3,1,2],[1,2,2,2]],[[1,0,1,1],[2,1,3,1],[1,4,2,1],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,1,3,1],[1,3,2,1],[1,2,2,2]],[[1,0,1,1],[2,1,3,1],[1,3,2,3],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,2,2],[1,1,3,1]],[[1,0,1,1],[2,1,3,1],[1,3,2,2],[1,1,2,2]],[[1,0,1,1],[2,1,3,1],[1,4,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,1],[1,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,1,3,1],[1,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,1,3,1],[1,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,1,3,1],[1,4,3,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,0],[2,2,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,0],[1,3,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,0],[1,2,3,1]],[[1,0,1,1],[2,1,4,1],[1,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[1,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,4,1],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,1],[1,1,3,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,1],[1,1,2,2]],[[1,0,1,1],[2,1,4,1],[1,3,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[1,4,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[1,3,4,1],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,1],[1,3,1,1]],[[1,0,1,1],[2,1,3,1],[1,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,3],[1,0,2,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,2],[1,0,2,2]],[[1,0,1,1],[2,1,4,1],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,1],[1,4,3,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,1],[1,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,3],[1,1,1,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,2],[1,1,1,2]],[[1,0,1,1],[2,1,4,1],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,1,3,1],[1,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,1,3,1],[1,3,4,2],[1,1,2,0]],[[1,0,1,1],[2,1,3,1],[1,3,3,3],[1,1,2,0]],[[1,0,1,1],[2,1,3,1],[1,3,3,2],[1,1,3,0]],[[1,0,1,1],[2,1,4,1],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,3,1],[1,4,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,3,1],[1,3,4,2],[1,2,0,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,3],[1,2,0,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,1,3,1],[1,3,3,2],[1,2,0,2]],[[1,0,1,1],[2,1,4,1],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,3,1],[1,4,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,3,1],[1,3,4,2],[1,2,1,0]],[[1,0,1,1],[2,1,3,1],[1,3,3,3],[1,2,1,0]],[[1,0,1,1],[2,1,3,1],[1,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,1,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,3,1],[2,1,4,2],[1,2,2,0]],[[1,2,2,0],[0,1,3,1],[3,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,1,4,1],[2,1,3,2],[1,2,2,0]],[[1,2,3,0],[0,1,3,1],[2,1,3,2],[1,2,2,0]],[[1,3,2,0],[0,1,3,1],[2,1,3,2],[1,2,2,0]],[[2,2,2,0],[0,1,3,1],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,1,3,1],[2,1,3,2],[1,2,1,2]],[[1,2,2,0],[0,1,3,1],[2,1,3,3],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,0,3,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,0,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,1],[2,0,3,2],[1,2,2,2]],[[2,0,1,1],[2,1,3,1],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[3,1,3,1],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[3,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,1,2,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,1,2,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,1,2,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,1],[2,1,2,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,1],[2,1,2,2],[1,2,2,2]],[[2,0,1,1],[2,1,3,1],[2,1,3,1],[1,2,2,1]],[[1,0,1,1],[3,1,3,1],[2,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,1,4,1],[2,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[3,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,1,4,1],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,1,3,1],[2,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,1,3,1],[1,3,2,1]],[[1,0,1,1],[2,1,3,1],[2,1,3,1],[1,2,3,1]],[[1,0,1,1],[2,1,3,1],[2,1,3,1],[1,2,2,2]],[[1,0,1,1],[2,1,3,1],[2,1,3,3],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,1,3,2],[0,2,3,1]],[[1,0,1,1],[2,1,3,1],[2,1,3,2],[0,2,2,2]],[[1,0,1,1],[2,1,4,1],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,1,4,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,1,3,3],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,1,3,2],[1,2,1,2]],[[2,0,1,1],[2,1,3,1],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[3,1,3,1],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,4,1],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,1],[3,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,1],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,1],[2,1,3,3],[1,2,2,0]],[[1,0,1,1],[2,1,3,1],[2,1,3,2],[2,2,2,0]],[[1,0,1,1],[2,1,3,1],[2,1,3,2],[1,3,2,0]],[[1,0,1,1],[2,1,3,1],[2,1,3,2],[1,2,3,0]],[[2,0,1,1],[2,1,3,1],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[3,1,3,1],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[3,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,1,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,1,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,1,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,1,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,1],[2,2,1,2],[1,2,2,2]],[[2,0,1,1],[2,1,3,1],[2,2,2,1],[1,2,2,1]],[[1,0,1,1],[3,1,3,1],[2,2,2,1],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[3,2,2,1],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,2,1],[2,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,2,1],[1,3,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,2,1],[1,2,3,1]],[[1,0,1,1],[2,1,3,1],[2,2,2,1],[1,2,2,2]],[[1,0,1,1],[2,1,3,1],[2,2,2,3],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,2,2],[0,3,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,2,2],[0,2,3,1]],[[1,0,1,1],[2,1,3,1],[2,2,2,2],[0,2,2,2]],[[2,0,1,1],[2,1,3,1],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[3,1,3,1],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,1],[3,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,1],[2,2,2,2],[2,2,2,0]],[[1,0,1,1],[2,1,3,1],[2,2,2,2],[1,3,2,0]],[[1,0,1,1],[2,1,3,1],[2,2,2,2],[1,2,3,0]],[[1,0,1,1],[3,1,3,1],[2,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[3,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,0],[2,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,0],[1,3,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,0],[1,2,3,1]],[[1,0,1,1],[2,1,4,1],[2,2,3,1],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,4,1],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,1],[0,3,2,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,1],[0,2,3,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,1],[0,2,2,2]],[[2,0,1,1],[2,1,3,1],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[3,1,3,1],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[3,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,1],[2,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,1],[1,3,1,1]],[[1,0,1,1],[2,1,4,1],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,2,4,2],[0,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,3],[0,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,2],[0,2,1,2]],[[1,0,1,1],[2,1,4,1],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,1,3,1],[2,2,4,2],[0,2,2,0]],[[1,0,1,1],[2,1,3,1],[2,2,3,3],[0,2,2,0]],[[1,0,1,1],[2,1,3,1],[2,2,3,2],[0,3,2,0]],[[1,0,1,1],[2,1,3,1],[2,2,3,2],[0,2,3,0]],[[2,0,1,1],[2,1,3,1],[2,2,3,2],[1,2,0,1]],[[1,0,1,1],[3,1,3,1],[2,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,3,1],[3,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,2],[2,2,0,1]],[[1,0,1,1],[2,1,3,1],[2,2,3,2],[1,3,0,1]],[[2,0,1,1],[2,1,3,1],[2,2,3,2],[1,2,1,0]],[[1,0,1,1],[3,1,3,1],[2,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,3,1],[3,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,3,1],[2,2,3,2],[2,2,1,0]],[[1,0,1,1],[2,1,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,3,1],[2,1,4,2],[1,2,1,1]],[[1,2,2,0],[0,1,4,1],[2,1,3,2],[1,2,1,1]],[[1,2,3,0],[0,1,3,1],[2,1,3,2],[1,2,1,1]],[[1,3,2,0],[0,1,3,1],[2,1,3,2],[1,2,1,1]],[[2,2,2,0],[0,1,3,1],[2,1,3,2],[1,2,1,1]],[[1,2,2,0],[0,1,3,1],[2,1,3,2],[0,2,2,2]],[[1,2,2,0],[0,1,3,1],[2,1,3,2],[0,2,3,1]],[[1,2,2,0],[0,1,3,1],[2,1,3,3],[0,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,1,3,1],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[2,1,3,1],[1,2,3,1]],[[2,0,1,1],[2,1,3,1],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[3,1,3,1],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[3,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,4,1,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,1,3],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,1,2],[0,3,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,1,2],[0,2,3,1]],[[1,0,1,1],[2,1,3,1],[2,3,1,2],[0,2,2,2]],[[2,0,1,1],[2,1,3,1],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[3,1,3,1],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[3,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[2,4,1,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,1,2],[2,1,2,1]],[[2,0,1,1],[2,1,3,1],[2,3,2,1],[0,2,2,1]],[[1,0,1,1],[3,1,3,1],[2,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[3,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,4,2,1],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,2,1],[0,3,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,2,1],[0,2,3,1]],[[1,0,1,1],[2,1,3,1],[2,3,2,1],[0,2,2,2]],[[2,0,1,1],[2,1,3,1],[2,3,2,1],[1,1,2,1]],[[1,0,1,1],[3,1,3,1],[2,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[3,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[2,4,2,1],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,2,1],[2,1,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,1,3,1],[2,3,2,2],[0,1,2,2]],[[2,0,1,1],[2,1,3,1],[2,3,2,2],[0,2,2,0]],[[1,0,1,1],[3,1,3,1],[2,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,1,3,1],[3,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,1,3,1],[2,4,2,2],[0,2,2,0]],[[1,0,1,1],[2,1,3,1],[2,3,2,2],[0,3,2,0]],[[1,0,1,1],[2,1,3,1],[2,3,2,2],[0,2,3,0]],[[1,0,1,1],[2,1,3,1],[2,3,2,3],[1,0,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,2,2],[1,0,3,1]],[[1,0,1,1],[2,1,3,1],[2,3,2,2],[1,0,2,2]],[[2,0,1,1],[2,1,3,1],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[3,1,3,1],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,1,3,1],[3,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,1,3,1],[2,4,2,2],[1,1,2,0]],[[1,0,1,1],[2,1,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,1,3,1],[2,1,3,1],[1,3,2,1]],[[1,2,2,0],[0,1,3,1],[2,1,3,1],[2,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,1,4,1],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[3,1,3,1],[1,2,2,1]],[[1,2,2,0],[0,1,4,1],[2,1,3,1],[1,2,2,1]],[[1,2,3,0],[0,1,3,1],[2,1,3,1],[1,2,2,1]],[[1,3,2,0],[0,1,3,1],[2,1,3,1],[1,2,2,1]],[[2,2,2,0],[0,1,3,1],[2,1,3,1],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,1,2,2],[1,2,2,2]],[[1,0,1,1],[3,1,3,1],[2,3,3,0],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[3,3,3,0],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,4,3,0],[0,2,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,0],[0,3,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,0],[0,2,3,1]],[[1,0,1,1],[3,1,3,1],[2,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[3,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[2,4,3,0],[1,1,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,0],[2,1,2,1]],[[2,0,1,1],[2,1,3,1],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[3,1,3,1],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,1,4,1],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,1,3,1],[3,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,1,3,1],[2,4,3,1],[0,1,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,1],[0,1,2,2]],[[2,0,1,1],[2,1,3,1],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[3,1,3,1],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,1,4,1],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,1,3,1],[3,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,4,3,1],[0,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,3,4,1],[0,2,1,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,1],[0,3,1,1]],[[2,0,1,1],[2,1,3,1],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[3,1,3,1],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,1,4,1],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,1,3,1],[3,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,1,3,1],[2,4,3,1],[1,0,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,4,1],[1,0,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,1],[2,0,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,1],[1,0,3,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,1],[1,0,2,2]],[[2,0,1,1],[2,1,3,1],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[3,1,3,1],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,1,4,1],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,1,3,1],[3,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,1,3,1],[2,4,3,1],[1,1,1,1]],[[1,0,1,1],[2,1,3,1],[2,3,4,1],[1,1,1,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,1],[2,1,1,1]],[[1,0,1,1],[3,1,3,1],[2,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,1,3,1],[3,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,1,3,1],[2,4,3,1],[1,2,0,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,1,3,1],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,1],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,1,2,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[3,1,2,2],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[2,0,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[2,0,3,3],[1,2,2,1]],[[1,0,1,1],[2,1,4,1],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[0,0,2,2]],[[2,0,1,1],[2,1,3,1],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[3,1,3,1],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,1,4,1],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,1,3,1],[3,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,1,3,1],[2,4,3,2],[0,1,1,1]],[[1,0,1,1],[2,1,3,1],[2,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[0,1,1,2]],[[2,0,1,1],[2,1,3,1],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[3,1,3,1],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,1,4,1],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,1,3,1],[3,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,1,3,1],[2,4,3,2],[0,1,2,0]],[[1,0,1,1],[2,1,3,1],[2,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,1,3,1],[2,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[0,1,3,0]],[[2,0,1,1],[2,1,3,1],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[3,1,3,1],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,1,4,1],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,1,3,1],[3,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,1,3,1],[2,4,3,2],[0,2,0,1]],[[1,0,1,1],[2,1,3,1],[2,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[0,3,0,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[0,2,0,2]],[[2,0,1,1],[2,1,3,1],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[3,1,3,1],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,1,4,1],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,1,3,1],[3,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,1,3,1],[2,4,3,2],[0,2,1,0]],[[1,0,1,1],[2,1,3,1],[2,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,1,3,1],[2,3,3,3],[0,2,1,0]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[0,3,1,0]],[[2,0,1,1],[2,1,3,1],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[3,1,3,1],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,1,4,1],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,1,3,1],[3,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,1,3,1],[2,4,3,2],[1,0,1,1]],[[1,0,1,1],[2,1,3,1],[2,3,4,2],[1,0,1,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,3],[1,0,1,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[2,0,1,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[1,0,1,2]],[[2,0,1,1],[2,1,3,1],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[3,1,3,1],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,1,4,1],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,1,3,1],[3,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,1,3,1],[2,4,3,2],[1,0,2,0]],[[1,0,1,1],[2,1,3,1],[2,3,4,2],[1,0,2,0]],[[1,0,1,1],[2,1,3,1],[2,3,3,3],[1,0,2,0]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[2,0,2,0]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[1,0,3,0]],[[2,0,1,1],[2,1,3,1],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[3,1,3,1],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,1,4,1],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,1,3,1],[3,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,1,3,1],[2,4,3,2],[1,1,0,1]],[[1,0,1,1],[2,1,3,1],[2,3,4,2],[1,1,0,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,3],[1,1,0,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[2,1,0,1]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[1,1,0,2]],[[2,0,1,1],[2,1,3,1],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[3,1,3,1],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,1,4,1],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,1,3,1],[3,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,1,3,1],[2,4,3,2],[1,1,1,0]],[[1,0,1,1],[2,1,3,1],[2,3,4,2],[1,1,1,0]],[[1,0,1,1],[2,1,3,1],[2,3,3,3],[1,1,1,0]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,1,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,3,1],[1,3,3,2],[2,2,1,0]],[[2,0,1,1],[2,1,3,1],[2,3,3,2],[1,2,0,0]],[[1,0,1,1],[3,1,3,1],[2,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,1,3,1],[3,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,1,3,1],[2,4,3,2],[1,2,0,0]],[[1,0,1,1],[2,1,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,1,3,1],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[0,1,3,1],[1,3,4,2],[1,2,1,0]],[[1,2,2,0],[0,1,3,1],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[0,1,4,1],[1,3,3,2],[1,2,1,0]],[[1,2,3,0],[0,1,3,1],[1,3,3,2],[1,2,1,0]],[[1,3,2,0],[0,1,3,1],[1,3,3,2],[1,2,1,0]],[[2,2,2,0],[0,1,3,1],[1,3,3,2],[1,2,1,0]],[[1,2,2,0],[0,1,3,1],[1,3,3,2],[1,2,0,2]],[[1,2,2,0],[0,1,3,1],[1,3,3,2],[1,3,0,1]],[[1,2,2,0],[0,1,3,1],[1,3,3,2],[2,2,0,1]],[[1,2,2,0],[0,1,3,1],[1,3,3,3],[1,2,0,1]],[[1,2,2,0],[0,1,3,1],[1,3,4,2],[1,2,0,1]],[[1,2,2,0],[0,1,3,1],[1,4,3,2],[1,2,0,1]],[[1,2,2,0],[0,1,4,1],[1,3,3,2],[1,2,0,1]],[[1,2,3,0],[0,1,3,1],[1,3,3,2],[1,2,0,1]],[[1,3,2,0],[0,1,3,1],[1,3,3,2],[1,2,0,1]],[[2,2,2,0],[0,1,3,1],[1,3,3,2],[1,2,0,1]],[[1,2,2,0],[0,1,3,1],[1,3,3,2],[1,1,3,0]],[[1,2,2,0],[0,1,3,1],[1,3,3,3],[1,1,2,0]],[[1,2,2,0],[0,1,3,1],[1,3,4,2],[1,1,2,0]],[[1,2,2,0],[0,1,3,1],[1,4,3,2],[1,1,2,0]],[[1,2,2,0],[0,1,4,1],[1,3,3,2],[1,1,2,0]],[[1,0,1,2],[2,1,3,2],[0,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,3],[0,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[0,1,3,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[0,1,3,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,2],[0,1,3,2],[1,2,2,2]],[[1,0,1,2],[2,1,3,2],[0,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,3],[0,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[0,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[0,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,2],[0,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,2],[0,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,1,3,2],[0,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[0,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,1,3,2],[0,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,1,3,2],[0,2,3,1],[1,2,2,2]],[[1,0,1,2],[2,1,3,2],[0,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,3],[0,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[0,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[0,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[0,2,3,2],[1,2,1,2]],[[1,0,1,2],[2,1,3,2],[0,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,3],[0,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[0,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[0,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[0,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,1,3,2],[0,2,3,2],[1,2,3,0]],[[1,0,1,2],[2,1,3,2],[0,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,3],[0,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[0,3,2,3],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[0,3,2,2],[1,1,3,1]],[[1,0,1,1],[2,1,3,2],[0,3,2,2],[1,1,2,2]],[[1,0,1,1],[2,1,3,2],[0,3,4,1],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[0,3,3,1],[1,1,3,1]],[[1,0,1,1],[2,1,3,2],[0,3,3,1],[1,1,2,2]],[[1,0,1,2],[2,1,3,2],[0,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,1,3,3],[0,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,1,3,2],[0,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,1,3,2],[0,3,3,3],[1,0,2,1]],[[1,0,1,1],[2,1,3,2],[0,3,3,2],[1,0,2,2]],[[1,0,1,2],[2,1,3,2],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,3],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,2],[0,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,2],[0,3,3,3],[1,1,1,1]],[[1,0,1,1],[2,1,3,2],[0,3,3,2],[1,1,1,2]],[[1,0,1,2],[2,1,3,2],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,1,3,3],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,1,3,2],[0,3,4,2],[1,1,2,0]],[[1,0,1,1],[2,1,3,2],[0,3,3,3],[1,1,2,0]],[[1,0,1,1],[2,1,3,2],[0,3,3,2],[1,1,3,0]],[[1,0,1,2],[2,1,3,2],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,3,3],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[0,3,4,2],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[0,3,3,3],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[0,3,3,2],[1,2,0,2]],[[1,0,1,2],[2,1,3,2],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,3,3],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,1,3,2],[0,3,4,2],[1,2,1,0]],[[1,0,1,1],[2,1,3,2],[0,3,3,3],[1,2,1,0]],[[1,2,3,0],[0,1,3,1],[1,3,3,2],[1,1,2,0]],[[1,3,2,0],[0,1,3,1],[1,3,3,2],[1,1,2,0]],[[2,2,2,0],[0,1,3,1],[1,3,3,2],[1,1,2,0]],[[1,2,2,0],[0,1,3,1],[1,3,3,2],[1,1,1,2]],[[1,2,2,0],[0,1,3,1],[1,3,3,3],[1,1,1,1]],[[1,2,2,0],[0,1,3,1],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[0,1,3,1],[1,4,3,2],[1,1,1,1]],[[1,0,1,2],[2,1,3,2],[1,1,3,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,3],[1,1,3,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,1,3,3],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,1,3,2],[0,2,3,1]],[[1,0,1,1],[2,1,3,2],[1,1,3,2],[0,2,2,2]],[[1,0,1,2],[2,1,3,2],[1,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,4,2],[1,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,3],[1,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,2,1,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,2,1,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,2,1,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,2],[1,2,1,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,2],[1,2,1,2],[1,2,2,2]],[[1,0,1,2],[2,1,3,2],[1,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,3],[1,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,2,2,3],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,2,2,2],[0,2,3,1]],[[1,0,1,1],[2,1,3,2],[1,2,2,2],[0,2,2,2]],[[1,0,1,2],[2,1,3,2],[1,2,2,2],[1,2,1,1]],[[1,0,1,1],[2,1,4,2],[1,2,2,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,3],[1,2,2,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[1,2,2,3],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[1,2,2,2],[1,2,1,2]],[[1,0,1,2],[2,1,3,2],[1,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,4,2],[1,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,3],[1,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[1,2,2,3],[1,2,2,0]],[[1,0,1,2],[2,1,3,2],[1,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,1,4,2],[1,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,3],[1,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,2,4,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,2,3,0],[2,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,2,3,0],[1,3,2,1]],[[1,0,1,1],[2,1,3,2],[1,2,3,0],[1,2,3,1]],[[1,0,1,1],[2,1,3,2],[1,2,3,0],[1,2,2,2]],[[1,0,1,1],[2,1,3,2],[1,2,4,1],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,2,3,1],[0,2,3,1]],[[1,0,1,1],[2,1,3,2],[1,2,3,1],[0,2,2,2]],[[1,0,1,2],[2,1,3,2],[1,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,4,2],[1,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,3,3],[1,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[1,2,4,1],[1,2,1,1]],[[1,0,1,2],[2,1,3,2],[1,2,3,1],[1,2,2,0]],[[1,0,1,1],[2,1,4,2],[1,2,3,1],[1,2,2,0]],[[1,0,1,1],[2,1,3,3],[1,2,3,1],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[1,2,4,1],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[1,2,3,1],[2,2,2,0]],[[1,0,1,1],[2,1,3,2],[1,2,3,1],[1,3,2,0]],[[1,0,1,1],[2,1,3,2],[1,2,3,1],[1,2,3,0]],[[1,0,1,2],[2,1,3,2],[1,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,1,3,3],[1,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,1,3,2],[1,2,4,2],[0,2,1,1]],[[1,0,1,1],[2,1,3,2],[1,2,3,3],[0,2,1,1]],[[1,0,1,1],[2,1,3,2],[1,2,3,2],[0,2,1,2]],[[1,0,1,2],[2,1,3,2],[1,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,1,3,3],[1,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,1,3,2],[1,2,4,2],[0,2,2,0]],[[1,0,1,1],[2,1,3,2],[1,2,3,3],[0,2,2,0]],[[1,0,1,1],[2,1,3,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[0,1,4,1],[1,3,3,2],[1,1,1,1]],[[1,2,3,0],[0,1,3,1],[1,3,3,2],[1,1,1,1]],[[1,3,2,0],[0,1,3,1],[1,3,3,2],[1,1,1,1]],[[2,2,2,0],[0,1,3,1],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[0,1,3,1],[1,3,3,2],[1,0,2,2]],[[1,2,2,0],[0,1,3,1],[1,3,3,3],[1,0,2,1]],[[1,2,2,0],[0,1,3,1],[1,3,4,2],[1,0,2,1]],[[1,2,2,0],[0,1,4,1],[1,3,3,2],[1,0,2,1]],[[1,2,3,0],[0,1,3,1],[1,3,3,2],[1,0,2,1]],[[1,0,1,2],[2,1,3,2],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,1,4,2],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,3],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,4,0,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,0,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,0,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,0,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,0,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,2],[1,3,0,2],[1,2,2,2]],[[1,0,1,2],[2,1,3,2],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,1,4,2],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,3],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,1,3],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,1,2],[1,1,3,1]],[[1,0,1,1],[2,1,3,2],[1,3,1,2],[1,1,2,2]],[[1,0,1,1],[2,1,3,2],[1,4,2,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,2,0],[2,2,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,2,0],[1,3,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,2,0],[1,2,3,1]],[[1,0,1,1],[2,1,3,2],[1,3,2,0],[1,2,2,2]],[[1,0,1,1],[2,1,3,2],[1,4,2,1],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[1,3,2,1],[2,2,2,0]],[[1,0,1,1],[2,1,3,2],[1,3,2,1],[1,3,2,0]],[[1,0,1,1],[2,1,3,2],[1,3,2,1],[1,2,3,0]],[[1,0,1,2],[2,1,3,2],[1,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,1,3,3],[1,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,1,3,2],[1,3,2,2],[0,1,2,2]],[[1,0,1,2],[2,1,3,2],[1,3,2,2],[1,1,1,1]],[[1,0,1,1],[2,1,4,2],[1,3,2,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,3],[1,3,2,2],[1,1,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,2,3],[1,1,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,2,2],[1,1,1,2]],[[1,0,1,2],[2,1,3,2],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,1,4,2],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,1,3,3],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,1,3,2],[1,3,2,3],[1,1,2,0]],[[1,0,1,2],[2,1,3,2],[1,3,2,2],[1,2,0,1]],[[1,0,1,1],[2,1,4,2],[1,3,2,2],[1,2,0,1]],[[1,0,1,1],[2,1,3,3],[1,3,2,2],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[1,3,2,3],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[1,3,2,2],[1,2,0,2]],[[1,0,1,2],[2,1,3,2],[1,3,2,2],[1,2,1,0]],[[1,0,1,1],[2,1,4,2],[1,3,2,2],[1,2,1,0]],[[1,0,1,1],[2,1,3,3],[1,3,2,2],[1,2,1,0]],[[1,0,1,1],[2,1,3,2],[1,3,2,3],[1,2,1,0]],[[1,3,2,0],[0,1,3,1],[1,3,3,2],[1,0,2,1]],[[1,0,1,2],[2,1,3,2],[1,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,1,4,2],[1,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,1,3,3],[1,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[1,4,3,0],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,4,0],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,0],[1,1,3,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,0],[1,1,2,2]],[[1,0,1,2],[2,1,3,2],[1,3,3,0],[1,2,1,1]],[[1,0,1,1],[2,1,4,2],[1,3,3,0],[1,2,1,1]],[[1,0,1,1],[2,1,3,3],[1,3,3,0],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[1,4,3,0],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,4,0],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,0],[2,2,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,0],[1,3,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,1],[0,1,2,2]],[[1,0,1,2],[2,1,3,2],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,1,4,2],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,1,3,3],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,1,3,2],[1,4,3,1],[1,1,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,4,1],[1,1,1,1]],[[1,0,1,2],[2,1,3,2],[1,3,3,1],[1,1,2,0]],[[1,0,1,1],[2,1,4,2],[1,3,3,1],[1,1,2,0]],[[1,0,1,1],[2,1,3,3],[1,3,3,1],[1,1,2,0]],[[1,0,1,1],[2,1,3,2],[1,4,3,1],[1,1,2,0]],[[1,0,1,1],[2,1,3,2],[1,3,4,1],[1,1,2,0]],[[1,0,1,1],[2,1,3,2],[1,3,3,1],[1,1,3,0]],[[1,0,1,2],[2,1,3,2],[1,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,1,4,2],[1,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,1,3,3],[1,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[1,4,3,1],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[1,3,4,1],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,1],[2,2,0,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,1],[1,3,0,1]],[[1,0,1,2],[2,1,3,2],[1,3,3,1],[1,2,1,0]],[[1,0,1,1],[2,1,4,2],[1,3,3,1],[1,2,1,0]],[[1,0,1,1],[2,1,3,3],[1,3,3,1],[1,2,1,0]],[[1,0,1,1],[2,1,3,2],[1,4,3,1],[1,2,1,0]],[[1,0,1,1],[2,1,3,2],[1,3,4,1],[1,2,1,0]],[[1,0,1,1],[2,1,3,2],[1,3,3,1],[2,2,1,0]],[[1,0,1,1],[2,1,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,1,3,1],[1,3,3,1],[1,3,1,1]],[[1,2,2,0],[0,1,3,1],[1,3,3,1],[2,2,1,1]],[[1,2,2,0],[0,1,3,1],[1,3,4,1],[1,2,1,1]],[[1,2,2,0],[0,1,3,1],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[0,1,4,1],[1,3,3,1],[1,2,1,1]],[[1,2,3,0],[0,1,3,1],[1,3,3,1],[1,2,1,1]],[[1,3,2,0],[0,1,3,1],[1,3,3,1],[1,2,1,1]],[[1,0,1,2],[2,1,3,2],[1,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,1,3,3],[1,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,2],[0,0,2,2]],[[1,0,1,2],[2,1,3,2],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,1,3,3],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,2],[0,1,1,2]],[[1,0,1,2],[2,1,3,2],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,1,3,3],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,1,3,2],[1,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,1,3,2],[1,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,1,3,2],[1,3,3,2],[0,1,3,0]],[[1,0,1,2],[2,1,3,2],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,1,3,3],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,1,3,2],[1,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,2],[0,2,0,2]],[[1,0,1,2],[2,1,3,2],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,1,3,3],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,1,3,2],[1,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,1,3,2],[1,3,3,3],[0,2,1,0]],[[2,2,2,0],[0,1,3,1],[1,3,3,1],[1,2,1,1]],[[1,2,2,0],[0,1,3,1],[1,3,3,1],[1,1,2,2]],[[1,2,2,0],[0,1,3,1],[1,3,3,1],[1,1,3,1]],[[1,2,2,0],[0,1,3,1],[1,3,4,1],[1,1,2,1]],[[1,2,2,0],[0,1,3,1],[1,4,3,1],[1,1,2,1]],[[1,2,2,0],[0,1,4,1],[1,3,3,1],[1,1,2,1]],[[1,0,1,2],[2,1,3,2],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,1,3,3],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,4,2],[1,0,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,3],[1,0,1,1]],[[1,0,1,1],[2,1,3,2],[1,3,3,2],[1,0,1,2]],[[1,0,1,2],[2,1,3,2],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,1,3,3],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,1,3,2],[1,3,4,2],[1,0,2,0]],[[1,0,1,1],[2,1,3,2],[1,3,3,3],[1,0,2,0]],[[1,2,3,0],[0,1,3,1],[1,3,3,1],[1,1,2,1]],[[1,3,2,0],[0,1,3,1],[1,3,3,1],[1,1,2,1]],[[2,2,2,0],[0,1,3,1],[1,3,3,1],[1,1,2,1]],[[1,2,2,0],[0,1,3,1],[1,3,3,0],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[1,3,3,0],[1,3,2,1]],[[1,2,2,0],[0,1,3,1],[1,3,3,0],[2,2,2,1]],[[1,2,2,0],[0,1,3,1],[1,4,3,0],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[1,3,2,2],[1,2,3,0]],[[1,2,2,0],[0,1,3,1],[1,3,2,2],[1,3,2,0]],[[1,2,2,0],[0,1,3,1],[1,3,2,2],[2,2,2,0]],[[1,2,2,0],[0,1,3,1],[1,4,2,2],[1,2,2,0]],[[1,2,2,0],[0,1,3,1],[1,3,2,2],[1,1,2,2]],[[1,2,2,0],[0,1,3,1],[1,3,2,2],[1,1,3,1]],[[1,2,2,0],[0,1,3,1],[1,3,2,3],[1,1,2,1]],[[1,2,2,0],[0,1,3,1],[1,3,2,1],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[1,3,2,1],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[0,1,3,1],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[0,1,3,1],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[1,3,1,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[1,3,1,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[1,3,1,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,1],[1,3,1,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,1],[1,3,1,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[1,4,1,2],[1,2,2,1]],[[2,0,1,1],[2,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,0,1,2],[2,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[3,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,4,2],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,3],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[3,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,1,1,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,1,1,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,1,1,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,2],[2,1,1,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,2],[2,1,1,2],[1,2,2,2]],[[1,0,1,2],[2,1,3,2],[2,1,2,2],[1,2,1,1]],[[1,0,1,1],[2,1,4,2],[2,1,2,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,3],[2,1,2,2],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[2,1,2,3],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[2,1,2,2],[1,2,1,2]],[[1,0,1,2],[2,1,3,2],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,4,2],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,3],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[2,1,2,3],[1,2,2,0]],[[2,0,1,1],[2,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,0,1,2],[2,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,0,1,1],[3,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,0,1,1],[2,1,4,2],[2,1,3,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,3],[2,1,3,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[3,1,3,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,1,4,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,1,3,0],[2,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,1,3,0],[1,3,2,1]],[[1,0,1,1],[2,1,3,2],[2,1,3,0],[1,2,3,1]],[[1,0,1,1],[2,1,3,2],[2,1,3,0],[1,2,2,2]],[[1,0,1,2],[2,1,3,2],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,4,2],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,3,3],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[2,1,4,1],[1,2,1,1]],[[2,0,1,1],[2,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,0,1,2],[2,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,0,1,1],[3,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,0,1,1],[2,1,4,2],[2,1,3,1],[1,2,2,0]],[[1,0,1,1],[2,1,3,3],[2,1,3,1],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[3,1,3,1],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[2,1,4,1],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[2,1,3,1],[2,2,2,0]],[[1,0,1,1],[2,1,3,2],[2,1,3,1],[1,3,2,0]],[[1,0,1,1],[2,1,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,0],[0,1,3,1],[1,2,3,2],[1,2,3,0]],[[1,2,2,0],[0,1,3,1],[1,2,3,2],[1,3,2,0]],[[1,2,2,0],[0,1,3,1],[1,2,3,2],[2,2,2,0]],[[1,2,2,0],[0,1,3,1],[1,2,3,3],[1,2,2,0]],[[1,2,2,0],[0,1,3,1],[1,2,4,2],[1,2,2,0]],[[1,2,2,0],[0,1,4,1],[1,2,3,2],[1,2,2,0]],[[1,2,3,0],[0,1,3,1],[1,2,3,2],[1,2,2,0]],[[2,0,1,1],[2,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,2],[2,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[3,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,1,4,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,3],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[3,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,0,3],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,0,2],[2,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,0,2],[1,3,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,0,2],[1,2,3,1]],[[1,0,1,1],[2,1,3,2],[2,2,0,2],[1,2,2,2]],[[1,0,1,2],[2,1,3,2],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[2,1,4,2],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,3],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,1,3],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,1,2],[0,3,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,1,2],[0,2,3,1]],[[1,0,1,1],[2,1,3,2],[2,2,1,2],[0,2,2,2]],[[2,0,1,1],[2,1,3,2],[2,2,2,0],[1,2,2,1]],[[1,0,1,1],[3,1,3,2],[2,2,2,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[3,2,2,0],[1,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,2,0],[2,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,2,0],[1,3,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,2,0],[1,2,3,1]],[[1,0,1,1],[2,1,3,2],[2,2,2,0],[1,2,2,2]],[[2,0,1,1],[2,1,3,2],[2,2,2,1],[1,2,2,0]],[[1,0,1,1],[3,1,3,2],[2,2,2,1],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[3,2,2,1],[1,2,2,0]],[[1,0,1,1],[2,1,3,2],[2,2,2,1],[2,2,2,0]],[[1,0,1,1],[2,1,3,2],[2,2,2,1],[1,3,2,0]],[[1,0,1,1],[2,1,3,2],[2,2,2,1],[1,2,3,0]],[[1,0,1,2],[2,1,3,2],[2,2,2,2],[0,2,1,1]],[[1,0,1,1],[2,1,4,2],[2,2,2,2],[0,2,1,1]],[[1,0,1,1],[2,1,3,3],[2,2,2,2],[0,2,1,1]],[[1,0,1,1],[2,1,3,2],[2,2,2,3],[0,2,1,1]],[[1,0,1,1],[2,1,3,2],[2,2,2,2],[0,2,1,2]],[[1,0,1,2],[2,1,3,2],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[2,1,4,2],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[2,1,3,3],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[2,1,3,2],[2,2,2,3],[0,2,2,0]],[[1,3,2,0],[0,1,3,1],[1,2,3,2],[1,2,2,0]],[[2,2,2,0],[0,1,3,1],[1,2,3,2],[1,2,2,0]],[[1,2,2,0],[0,1,3,1],[1,2,3,2],[1,2,1,2]],[[1,2,2,0],[0,1,3,1],[1,2,3,3],[1,2,1,1]],[[1,2,2,0],[0,1,3,1],[1,2,4,2],[1,2,1,1]],[[1,2,2,0],[0,1,4,1],[1,2,3,2],[1,2,1,1]],[[1,2,3,0],[0,1,3,1],[1,2,3,2],[1,2,1,1]],[[1,3,2,0],[0,1,3,1],[1,2,3,2],[1,2,1,1]],[[2,2,2,0],[0,1,3,1],[1,2,3,2],[1,2,1,1]],[[1,2,2,0],[0,1,3,1],[1,2,3,1],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[1,2,3,1],[1,2,3,1]],[[1,0,1,2],[2,1,3,2],[2,2,3,0],[0,2,2,1]],[[1,0,1,1],[2,1,4,2],[2,2,3,0],[0,2,2,1]],[[1,0,1,1],[2,1,3,3],[2,2,3,0],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,4,0],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,3,0],[0,3,2,1]],[[1,0,1,1],[2,1,3,2],[2,2,3,0],[0,2,3,1]],[[1,0,1,1],[2,1,3,2],[2,2,3,0],[0,2,2,2]],[[2,0,1,1],[2,1,3,2],[2,2,3,0],[1,2,1,1]],[[1,0,1,1],[3,1,3,2],[2,2,3,0],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[3,2,3,0],[1,2,1,1]],[[1,0,1,1],[2,1,3,2],[2,2,3,0],[2,2,1,1]],[[1,0,1,1],[2,1,3,2],[2,2,3,0],[1,3,1,1]],[[1,0,1,2],[2,1,3,2],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,1,4,2],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,1,3,3],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,1,3,2],[2,2,4,1],[0,2,1,1]],[[1,0,1,2],[2,1,3,2],[2,2,3,1],[0,2,2,0]],[[1,0,1,1],[2,1,4,2],[2,2,3,1],[0,2,2,0]],[[1,0,1,1],[2,1,3,3],[2,2,3,1],[0,2,2,0]],[[1,0,1,1],[2,1,3,2],[2,2,4,1],[0,2,2,0]],[[1,0,1,1],[2,1,3,2],[2,2,3,1],[0,3,2,0]],[[1,0,1,1],[2,1,3,2],[2,2,3,1],[0,2,3,0]],[[2,0,1,1],[2,1,3,2],[2,2,3,1],[1,2,0,1]],[[1,0,1,1],[3,1,3,2],[2,2,3,1],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[3,2,3,1],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[2,2,3,1],[2,2,0,1]],[[1,0,1,1],[2,1,3,2],[2,2,3,1],[1,3,0,1]],[[2,0,1,1],[2,1,3,2],[2,2,3,1],[1,2,1,0]],[[1,0,1,1],[3,1,3,2],[2,2,3,1],[1,2,1,0]],[[1,0,1,1],[2,1,3,2],[3,2,3,1],[1,2,1,0]],[[1,0,1,1],[2,1,3,2],[2,2,3,1],[2,2,1,0]],[[1,0,1,1],[2,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[0,1,3,1],[1,2,3,1],[1,3,2,1]],[[1,2,2,0],[0,1,3,1],[1,2,3,1],[2,2,2,1]],[[1,2,2,0],[0,1,3,1],[1,2,4,1],[1,2,2,1]],[[1,2,2,0],[0,1,4,1],[1,2,3,1],[1,2,2,1]],[[1,2,3,0],[0,1,3,1],[1,2,3,1],[1,2,2,1]],[[1,3,2,0],[0,1,3,1],[1,2,3,1],[1,2,2,1]],[[2,2,2,0],[0,1,3,1],[1,2,3,1],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[1,2,2,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[1,2,2,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[1,2,2,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,1],[1,2,2,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,1],[1,2,2,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[1,1,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[1,1,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[1,1,3,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[0,3,3,2],[1,2,3,0]],[[1,2,2,0],[0,1,3,1],[0,3,3,2],[1,3,2,0]],[[1,2,2,0],[0,1,3,1],[0,3,3,3],[1,2,2,0]],[[1,2,2,0],[0,1,3,1],[0,3,4,2],[1,2,2,0]],[[1,2,2,0],[0,1,4,1],[0,3,3,2],[1,2,2,0]],[[1,2,3,0],[0,1,3,1],[0,3,3,2],[1,2,2,0]],[[1,3,2,0],[0,1,3,1],[0,3,3,2],[1,2,2,0]],[[1,2,2,0],[0,1,3,1],[0,3,3,2],[1,2,1,2]],[[1,2,2,0],[0,1,3,1],[0,3,3,3],[1,2,1,1]],[[1,2,2,0],[0,1,3,1],[0,3,4,2],[1,2,1,1]],[[1,2,2,0],[0,1,4,1],[0,3,3,2],[1,2,1,1]],[[1,2,3,0],[0,1,3,1],[0,3,3,2],[1,2,1,1]],[[1,3,2,0],[0,1,3,1],[0,3,3,2],[1,2,1,1]],[[1,2,2,0],[0,1,3,1],[0,3,3,1],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[0,3,3,1],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[0,3,3,1],[1,3,2,1]],[[1,2,2,0],[0,1,3,1],[0,3,4,1],[1,2,2,1]],[[1,2,2,0],[0,1,4,1],[0,3,3,1],[1,2,2,1]],[[1,2,3,0],[0,1,3,1],[0,3,3,1],[1,2,2,1]],[[1,3,2,0],[0,1,3,1],[0,3,3,1],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[0,3,2,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[0,3,2,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[0,3,2,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,1],[0,3,2,3],[1,2,2,1]],[[1,2,2,0],[0,1,3,1],[0,2,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,1],[0,2,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,1],[0,2,3,3],[1,2,2,1]],[[2,0,1,1],[2,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,2],[2,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[3,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,1,4,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,3],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[3,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,4,0,2],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,0,3],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,0,2],[0,3,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,0,2],[0,2,3,1]],[[1,0,1,1],[2,1,3,2],[2,3,0,2],[0,2,2,2]],[[2,0,1,1],[2,1,3,2],[2,3,0,2],[1,1,2,1]],[[1,0,1,1],[3,1,3,2],[2,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[3,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[2,4,0,2],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,0,2],[2,1,2,1]],[[1,0,1,2],[2,1,3,2],[2,3,1,2],[0,1,2,1]],[[1,0,1,1],[2,1,4,2],[2,3,1,2],[0,1,2,1]],[[1,0,1,1],[2,1,3,3],[2,3,1,2],[0,1,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,1,3],[0,1,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,1,2],[0,1,3,1]],[[1,0,1,1],[2,1,3,2],[2,3,1,2],[0,1,2,2]],[[1,0,1,2],[2,1,3,2],[2,3,1,2],[1,0,2,1]],[[1,0,1,1],[2,1,4,2],[2,3,1,2],[1,0,2,1]],[[1,0,1,1],[2,1,3,3],[2,3,1,2],[1,0,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,1,3],[1,0,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,1,2],[1,0,3,1]],[[1,0,1,1],[2,1,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,2,0],[0,1,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,2,0],[0,1,3,0],[2,3,4,2],[1,1,1,1]],[[1,2,2,0],[0,1,3,0],[2,4,3,2],[1,1,1,1]],[[1,2,2,0],[0,1,3,0],[3,3,3,2],[1,1,1,1]],[[2,0,1,1],[2,1,3,2],[2,3,2,0],[0,2,2,1]],[[1,0,1,1],[3,1,3,2],[2,3,2,0],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[3,3,2,0],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,4,2,0],[0,2,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,0],[0,3,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,0],[0,2,3,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,0],[0,2,2,2]],[[2,0,1,1],[2,1,3,2],[2,3,2,0],[1,1,2,1]],[[1,0,1,1],[3,1,3,2],[2,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[3,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[2,4,2,0],[1,1,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,0],[2,1,2,1]],[[2,0,1,1],[2,1,3,2],[2,3,2,1],[0,2,2,0]],[[1,0,1,1],[3,1,3,2],[2,3,2,1],[0,2,2,0]],[[1,0,1,1],[2,1,3,2],[3,3,2,1],[0,2,2,0]],[[1,0,1,1],[2,1,3,2],[2,4,2,1],[0,2,2,0]],[[1,0,1,1],[2,1,3,2],[2,3,2,1],[0,3,2,0]],[[1,0,1,1],[2,1,3,2],[2,3,2,1],[0,2,3,0]],[[2,0,1,1],[2,1,3,2],[2,3,2,1],[1,1,2,0]],[[1,0,1,1],[3,1,3,2],[2,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,1,3,2],[3,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,1,3,2],[2,4,2,1],[1,1,2,0]],[[1,0,1,1],[2,1,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[0,1,3,0],[2,3,3,2],[1,0,2,2]],[[1,2,2,0],[0,1,3,0],[2,3,3,2],[1,0,3,1]],[[1,2,2,0],[0,1,3,0],[2,3,3,2],[2,0,2,1]],[[1,2,2,0],[0,1,3,0],[2,3,4,2],[1,0,2,1]],[[1,2,2,0],[0,1,3,0],[2,4,3,2],[1,0,2,1]],[[1,2,2,0],[0,1,3,0],[3,3,3,2],[1,0,2,1]],[[1,0,1,2],[2,1,3,2],[2,3,2,2],[0,0,2,1]],[[1,0,1,1],[2,1,4,2],[2,3,2,2],[0,0,2,1]],[[1,0,1,1],[2,1,3,3],[2,3,2,2],[0,0,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,3],[0,0,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,2],[0,0,2,2]],[[1,0,1,2],[2,1,3,2],[2,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,1,4,2],[2,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,1,3,3],[2,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,3],[0,1,1,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,2],[0,1,1,2]],[[1,0,1,2],[2,1,3,2],[2,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,1,4,2],[2,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,1,3,3],[2,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,1,3,2],[2,3,2,3],[0,1,2,0]],[[1,0,1,2],[2,1,3,2],[2,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,1,4,2],[2,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,1,3,3],[2,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,3],[0,2,0,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,2],[0,2,0,2]],[[1,0,1,2],[2,1,3,2],[2,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,1,4,2],[2,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,1,3,3],[2,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,1,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,2,0],[0,1,3,0],[2,3,3,2],[0,3,1,1]],[[1,2,2,0],[0,1,3,0],[2,3,4,2],[0,2,1,1]],[[1,2,2,0],[0,1,3,0],[2,4,3,2],[0,2,1,1]],[[1,2,2,0],[0,1,3,0],[3,3,3,2],[0,2,1,1]],[[1,2,2,0],[0,1,3,0],[2,3,3,2],[0,1,2,2]],[[1,2,2,0],[0,1,3,0],[2,3,3,2],[0,1,3,1]],[[1,2,2,0],[0,1,3,0],[2,3,4,2],[0,1,2,1]],[[1,0,1,2],[2,1,3,2],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,1,4,2],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,1,3,3],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,3],[1,0,1,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,2],[1,0,1,2]],[[1,0,1,2],[2,1,3,2],[2,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,1,4,2],[2,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,1,3,3],[2,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,1,3,2],[2,3,2,3],[1,0,2,0]],[[1,0,1,2],[2,1,3,2],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,1,4,2],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,1,3,3],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,3],[1,1,0,1]],[[1,0,1,1],[2,1,3,2],[2,3,2,2],[1,1,0,2]],[[1,0,1,2],[2,1,3,2],[2,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,1,4,2],[2,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,1,3,3],[2,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,1,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,2,0],[0,1,3,0],[2,4,3,2],[0,1,2,1]],[[1,2,2,0],[0,1,3,0],[3,3,3,2],[0,1,2,1]],[[1,2,2,0],[0,1,3,0],[2,3,2,2],[2,1,2,1]],[[1,2,2,0],[0,1,3,0],[2,4,2,2],[1,1,2,1]],[[1,2,2,0],[0,1,3,0],[3,3,2,2],[1,1,2,1]],[[1,2,2,0],[0,1,3,0],[2,3,2,2],[0,2,2,2]],[[1,2,2,0],[0,1,3,0],[2,3,2,2],[0,2,3,1]],[[1,2,2,0],[0,1,3,0],[2,3,2,2],[0,3,2,1]],[[1,2,2,0],[0,1,3,0],[2,4,2,2],[0,2,2,1]],[[1,2,2,0],[0,1,3,0],[3,3,2,2],[0,2,2,1]],[[1,2,2,0],[0,1,3,0],[2,2,3,2],[1,3,1,1]],[[1,2,2,0],[0,1,3,0],[2,2,3,2],[2,2,1,1]],[[1,2,2,0],[0,1,3,0],[3,2,3,2],[1,2,1,1]],[[1,2,2,0],[0,1,3,0],[2,2,3,2],[0,2,2,2]],[[1,2,2,0],[0,1,3,0],[2,2,3,2],[0,2,3,1]],[[1,2,2,0],[0,1,3,0],[2,2,3,2],[0,3,2,1]],[[1,2,2,0],[0,1,3,0],[2,2,4,2],[0,2,2,1]],[[1,2,2,0],[0,1,3,0],[2,2,2,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,0],[2,2,2,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,0],[2,2,2,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,0],[2,2,2,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,0],[3,2,2,2],[1,2,2,1]],[[1,2,2,0],[0,1,3,0],[2,1,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,0],[2,1,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,0],[2,1,3,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,0],[2,1,3,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,0],[2,1,4,2],[1,2,2,1]],[[2,0,1,1],[2,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,1,2],[2,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,1,1],[3,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,1,4,2],[2,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,1,3,3],[2,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,1,3,2],[3,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,1,3,2],[2,4,3,0],[0,1,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,4,0],[0,1,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,0],[0,1,3,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,0],[0,1,2,2]],[[2,0,1,1],[2,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,0,1,2],[2,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,0,1,1],[3,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,1,4,2],[2,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,1,3,3],[2,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,1,3,2],[3,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,1,3,2],[2,4,3,0],[0,2,1,1]],[[1,0,1,1],[2,1,3,2],[2,3,4,0],[0,2,1,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,0],[0,3,1,1]],[[2,0,1,1],[2,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,0,1,2],[2,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,0,1,1],[3,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,1,4,2],[2,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,1,3,3],[2,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,1,3,2],[3,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,1,3,2],[2,4,3,0],[1,0,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,4,0],[1,0,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,0],[2,0,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,0],[1,0,3,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,0],[1,0,2,2]],[[2,0,1,1],[2,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,0,1,2],[2,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,0,1,1],[3,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,1,4,2],[2,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,1,3,3],[2,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,1,3,2],[3,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,1,3,2],[2,4,3,0],[1,1,1,1]],[[1,0,1,1],[2,1,3,2],[2,3,4,0],[1,1,1,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,0],[2,1,1,1]],[[2,0,1,1],[2,1,3,2],[2,3,3,0],[1,2,0,1]],[[1,0,1,1],[3,1,3,2],[2,3,3,0],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[3,3,3,0],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[2,4,3,0],[1,2,0,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,0],[0,1,3,0],[3,1,3,2],[1,2,2,1]],[[1,2,2,0],[0,1,3,0],[1,3,3,2],[1,3,1,1]],[[1,2,2,0],[0,1,3,0],[1,3,3,2],[2,2,1,1]],[[1,2,2,0],[0,1,3,0],[1,3,4,2],[1,2,1,1]],[[1,2,2,0],[0,1,3,0],[1,4,3,2],[1,2,1,1]],[[1,2,2,0],[0,1,3,0],[1,3,3,2],[1,1,2,2]],[[1,0,1,2],[2,1,3,2],[2,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,1,4,2],[2,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,1,3,3],[2,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,1,3,2],[2,3,4,1],[0,0,2,1]],[[2,0,1,1],[2,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,0,1,2],[2,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,0,1,1],[3,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,1,4,2],[2,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,1,3,3],[2,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,1,3,2],[3,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,1,3,2],[2,4,3,1],[0,1,1,1]],[[1,0,1,1],[2,1,3,2],[2,3,4,1],[0,1,1,1]],[[2,0,1,1],[2,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,0,1,2],[2,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,0,1,1],[3,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,1,4,2],[2,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,1,3,3],[2,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,1,3,2],[3,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,1,3,2],[2,4,3,1],[0,1,2,0]],[[1,0,1,1],[2,1,3,2],[2,3,4,1],[0,1,2,0]],[[1,0,1,1],[2,1,3,2],[2,3,3,1],[0,1,3,0]],[[2,0,1,1],[2,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,0,1,2],[2,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,0,1,1],[3,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,1,4,2],[2,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,1,3,3],[2,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,1,3,2],[3,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,1,3,2],[2,4,3,1],[0,2,0,1]],[[1,0,1,1],[2,1,3,2],[2,3,4,1],[0,2,0,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,1],[0,3,0,1]],[[2,0,1,1],[2,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,0,1,2],[2,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,0,1,1],[3,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,1,4,2],[2,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,1,3,3],[2,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,1,3,2],[3,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,1,3,2],[2,4,3,1],[0,2,1,0]],[[1,0,1,1],[2,1,3,2],[2,3,4,1],[0,2,1,0]],[[1,0,1,1],[2,1,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[0,1,3,0],[1,3,3,2],[1,1,3,1]],[[1,2,2,0],[0,1,3,0],[1,3,4,2],[1,1,2,1]],[[1,2,2,0],[0,1,3,0],[1,4,3,2],[1,1,2,1]],[[1,2,2,0],[0,1,3,0],[1,3,2,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,0],[1,3,2,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,0],[1,3,2,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,0],[1,3,2,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,0],[1,4,2,2],[1,2,2,1]],[[1,2,2,0],[0,1,3,0],[1,2,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,0],[1,2,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,0],[1,2,3,2],[1,3,2,1]],[[2,0,1,1],[2,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,0,1,2],[2,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,0,1,1],[3,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,0,1,1],[2,1,4,2],[2,3,3,1],[1,0,1,1]],[[1,0,1,1],[2,1,3,3],[2,3,3,1],[1,0,1,1]],[[1,0,1,1],[2,1,3,2],[3,3,3,1],[1,0,1,1]],[[1,0,1,1],[2,1,3,2],[2,4,3,1],[1,0,1,1]],[[1,0,1,1],[2,1,3,2],[2,3,4,1],[1,0,1,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,1],[2,0,1,1]],[[2,0,1,1],[2,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,0,1,2],[2,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[3,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,1,4,2],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,1,3,3],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,1,3,2],[3,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,1,3,2],[2,4,3,1],[1,0,2,0]],[[1,0,1,1],[2,1,3,2],[2,3,4,1],[1,0,2,0]],[[1,0,1,1],[2,1,3,2],[2,3,3,1],[2,0,2,0]],[[1,0,1,1],[2,1,3,2],[2,3,3,1],[1,0,3,0]],[[2,0,1,1],[2,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,0,1,2],[2,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,0,1,1],[3,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,1,4,2],[2,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,1,3,3],[2,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,1,3,2],[3,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,1,3,2],[2,4,3,1],[1,1,0,1]],[[1,0,1,1],[2,1,3,2],[2,3,4,1],[1,1,0,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,1],[2,1,0,1]],[[2,0,1,1],[2,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,0,1,2],[2,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[3,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,1,4,2],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,1,3,3],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,1,3,2],[3,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,1,3,2],[2,4,3,1],[1,1,1,0]],[[1,0,1,1],[2,1,3,2],[2,3,4,1],[1,1,1,0]],[[1,0,1,1],[2,1,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,0],[0,1,3,0],[1,2,3,2],[2,2,2,1]],[[1,2,2,0],[0,1,3,0],[1,2,4,2],[1,2,2,1]],[[1,2,2,0],[0,1,3,0],[0,3,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,3,0],[0,3,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,3,0],[0,3,3,2],[1,3,2,1]],[[1,2,2,0],[0,1,3,0],[0,3,4,2],[1,2,2,1]],[[2,0,1,1],[2,1,3,2],[2,3,3,1],[1,2,0,0]],[[1,0,1,1],[3,1,3,2],[2,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,1,3,2],[3,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,1,3,2],[2,4,3,1],[1,2,0,0]],[[1,0,1,1],[2,1,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,1,2,2],[2,4,3,2],[1,2,0,0]],[[1,2,2,0],[0,1,2,2],[3,3,3,2],[1,2,0,0]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,1,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[0,1,2,2],[2,3,4,2],[1,1,1,0]],[[1,2,2,0],[0,1,2,2],[2,4,3,2],[1,1,1,0]],[[1,2,2,0],[0,1,2,2],[3,3,3,2],[1,1,1,0]],[[1,2,2,0],[0,1,2,3],[2,3,3,2],[1,1,1,0]],[[1,0,1,2],[2,1,3,2],[2,3,3,2],[0,1,0,1]],[[1,0,1,1],[2,1,4,2],[2,3,3,2],[0,1,0,1]],[[1,0,1,1],[2,1,3,3],[2,3,3,2],[0,1,0,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[1,1,0,2]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[2,1,0,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,3],[1,1,0,1]],[[1,2,2,0],[0,1,2,2],[2,3,4,2],[1,1,0,1]],[[1,2,2,0],[0,1,2,2],[2,4,3,2],[1,1,0,1]],[[1,2,2,0],[0,1,2,2],[3,3,3,2],[1,1,0,1]],[[1,2,2,0],[0,1,2,3],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[1,0,3,0]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[2,0,2,0]],[[1,2,2,0],[0,1,2,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,0],[0,1,2,2],[2,3,4,2],[1,0,2,0]],[[1,2,2,0],[0,1,2,2],[2,4,3,2],[1,0,2,0]],[[1,2,2,0],[0,1,2,2],[3,3,3,2],[1,0,2,0]],[[1,2,2,0],[0,1,2,3],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[1,0,1,2]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[2,0,1,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,3],[1,0,1,1]],[[1,2,2,0],[0,1,2,2],[2,3,4,2],[1,0,1,1]],[[1,2,2,0],[0,1,2,2],[2,4,3,2],[1,0,1,1]],[[1,2,2,0],[0,1,2,2],[3,3,3,2],[1,0,1,1]],[[1,2,2,0],[0,1,2,3],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,1,2,2],[2,3,3,3],[0,2,1,0]],[[1,0,1,2],[2,1,3,2],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[2,1,4,2],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[2,1,3,3],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[2,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,2,0],[0,1,2,2],[2,3,4,2],[0,2,1,0]],[[1,2,2,0],[0,1,2,2],[2,4,3,2],[0,2,1,0]],[[1,2,2,0],[0,1,2,2],[3,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,1,2,3],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[0,2,0,2]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[0,3,0,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,3],[0,2,0,1]],[[1,2,2,0],[0,1,2,2],[2,3,4,2],[0,2,0,1]],[[1,2,2,0],[0,1,2,2],[2,4,3,2],[0,2,0,1]],[[1,2,2,0],[0,1,2,2],[3,3,3,2],[0,2,0,1]],[[1,2,2,0],[0,1,2,3],[2,3,3,2],[0,2,0,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[0,1,3,0]],[[1,2,2,0],[0,1,2,2],[2,3,3,3],[0,1,2,0]],[[1,2,2,0],[0,1,2,2],[2,3,4,2],[0,1,2,0]],[[1,2,2,0],[0,1,2,2],[2,4,3,2],[0,1,2,0]],[[1,2,2,0],[0,1,2,2],[3,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,1,2,3],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[0,1,1,2]],[[1,2,2,0],[0,1,2,2],[2,3,3,3],[0,1,1,1]],[[1,2,2,0],[0,1,2,2],[2,3,4,2],[0,1,1,1]],[[1,2,2,0],[0,1,2,2],[2,4,3,2],[0,1,1,1]],[[1,2,2,0],[0,1,2,2],[3,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,1,2,3],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,2],[0,0,2,2]],[[1,2,2,0],[0,1,2,2],[2,3,3,3],[0,0,2,1]],[[1,2,2,0],[0,1,2,2],[2,3,4,2],[0,0,2,1]],[[1,2,2,0],[0,1,2,3],[2,3,3,2],[0,0,2,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,2,0],[0,1,2,2],[2,3,4,1],[1,1,1,1]],[[1,2,2,0],[0,1,2,2],[2,4,3,1],[1,1,1,1]],[[1,2,2,0],[0,1,2,2],[3,3,3,1],[1,1,1,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,0],[0,1,2,2],[2,3,3,1],[1,0,3,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,1],[2,0,2,1]],[[1,2,2,0],[0,1,2,2],[2,3,4,1],[1,0,2,1]],[[1,2,2,0],[0,1,2,2],[2,4,3,1],[1,0,2,1]],[[1,2,2,0],[0,1,2,2],[3,3,3,1],[1,0,2,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,1],[0,3,1,1]],[[1,2,2,0],[0,1,2,2],[2,3,4,1],[0,2,1,1]],[[1,2,2,0],[0,1,2,2],[2,4,3,1],[0,2,1,1]],[[1,2,2,0],[0,1,2,2],[3,3,3,1],[0,2,1,1]],[[1,2,2,0],[0,1,2,2],[2,3,3,1],[0,1,2,2]],[[1,2,2,0],[0,1,2,2],[2,3,3,1],[0,1,3,1]],[[1,2,2,0],[0,1,2,2],[2,3,4,1],[0,1,2,1]],[[1,2,2,0],[0,1,2,2],[2,4,3,1],[0,1,2,1]],[[1,2,2,0],[0,1,2,2],[3,3,3,1],[0,1,2,1]],[[1,2,2,0],[0,1,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,1,2,2],[2,4,2,2],[1,1,2,0]],[[1,2,2,0],[0,1,2,2],[3,3,2,2],[1,1,2,0]],[[1,2,2,0],[0,1,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[0,1,2,2],[2,3,2,2],[1,0,3,1]],[[1,2,2,0],[0,1,2,2],[2,3,2,3],[1,0,2,1]],[[1,2,2,0],[0,1,2,3],[2,3,2,2],[1,0,2,1]],[[1,2,2,0],[0,1,2,2],[2,3,2,2],[0,2,3,0]],[[1,2,2,0],[0,1,2,2],[2,3,2,2],[0,3,2,0]],[[1,2,2,0],[0,1,2,2],[2,4,2,2],[0,2,2,0]],[[1,2,2,0],[0,1,2,2],[3,3,2,2],[0,2,2,0]],[[1,2,2,0],[0,1,2,2],[2,3,2,2],[0,1,2,2]],[[1,2,2,0],[0,1,2,2],[2,3,2,2],[0,1,3,1]],[[1,2,2,0],[0,1,2,2],[2,3,2,3],[0,1,2,1]],[[1,2,2,0],[0,1,2,3],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,2,0,1],[1,4,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,0,1],[1,3,3,2],[2,2,2,1]],[[1,0,1,1],[2,2,0,1],[1,3,3,2],[1,3,2,1]],[[1,0,1,1],[2,2,0,1],[1,3,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,0,1],[1,3,3,2],[1,2,2,2]],[[1,0,1,1],[3,2,0,1],[2,2,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,0,1],[3,2,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,0,1],[2,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,2,0,1],[2,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,2,0,1],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,0,1],[2,2,3,2],[1,2,2,2]],[[1,0,1,1],[3,2,0,1],[2,3,3,2],[0,2,2,1]],[[1,0,1,1],[2,2,0,1],[3,3,3,2],[0,2,2,1]],[[1,0,1,1],[2,2,0,1],[2,4,3,2],[0,2,2,1]],[[1,0,1,1],[2,2,0,1],[2,3,3,2],[0,3,2,1]],[[1,0,1,1],[2,2,0,1],[2,3,3,2],[0,2,3,1]],[[1,0,1,1],[2,2,0,1],[2,3,3,2],[0,2,2,2]],[[1,0,1,1],[3,2,0,1],[2,3,3,2],[1,1,2,1]],[[1,0,1,1],[2,2,0,1],[3,3,3,2],[1,1,2,1]],[[1,0,1,1],[2,2,0,1],[2,4,3,2],[1,1,2,1]],[[1,0,1,1],[2,2,0,1],[2,3,3,2],[2,1,2,1]],[[1,0,1,1],[2,2,0,2],[1,2,3,3],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[1,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,2,0,2],[1,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,2,0,2],[1,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,0,2],[1,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,2,0,2],[1,4,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[1,3,2,3],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[1,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,0,2],[1,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,0,2],[1,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,0,2],[1,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,2,0,2],[1,4,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[1,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,0,2],[1,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,0,2],[1,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,0,2],[1,3,3,1],[1,2,2,2]],[[1,0,1,1],[2,2,0,2],[1,3,3,3],[1,1,2,1]],[[1,0,1,1],[2,2,0,2],[1,3,3,2],[1,1,3,1]],[[1,0,1,1],[2,2,0,2],[1,3,3,2],[1,1,2,2]],[[1,0,1,1],[2,2,0,2],[1,4,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,0,2],[1,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,0,2],[1,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,0,2],[1,3,3,2],[1,2,3,0]],[[1,0,1,1],[3,2,0,2],[2,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[3,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,1,3,3],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,1,3,2],[2,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,1,3,2],[1,3,2,1]],[[1,0,1,1],[2,2,0,2],[2,1,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,0,2],[2,1,3,2],[1,2,2,2]],[[1,0,1,1],[3,2,0,2],[2,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[3,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,0,2],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,0,2],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[3,2,0,2],[2,2,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[3,2,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,0,2],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,0,2],[2,2,3,1],[1,2,2,2]],[[1,0,1,1],[2,2,0,2],[2,2,3,3],[0,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,2,3,2],[0,3,2,1]],[[1,0,1,1],[2,2,0,2],[2,2,3,2],[0,2,3,1]],[[1,0,1,1],[2,2,0,2],[2,2,3,2],[0,2,2,2]],[[1,0,1,1],[3,2,0,2],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,0,2],[3,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,0,2],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,0,2],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,0,2],[2,2,3,2],[1,2,3,0]],[[1,0,1,1],[3,2,0,2],[2,3,2,2],[0,2,2,1]],[[1,0,1,1],[2,2,0,2],[3,3,2,2],[0,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,4,2,2],[0,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,3,2,3],[0,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,3,2,2],[0,3,2,1]],[[1,0,1,1],[2,2,0,2],[2,3,2,2],[0,2,3,1]],[[1,0,1,1],[2,2,0,2],[2,3,2,2],[0,2,2,2]],[[1,0,1,1],[3,2,0,2],[2,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,2,0,2],[3,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,2,0,2],[2,4,2,2],[1,1,2,1]],[[1,0,1,1],[2,2,0,2],[2,3,2,2],[2,1,2,1]],[[1,0,1,1],[3,2,0,2],[2,3,3,1],[0,2,2,1]],[[1,0,1,1],[2,2,0,2],[3,3,3,1],[0,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,4,3,1],[0,2,2,1]],[[1,0,1,1],[2,2,0,2],[2,3,3,1],[0,3,2,1]],[[1,0,1,1],[2,2,0,2],[2,3,3,1],[0,2,3,1]],[[1,0,1,1],[2,2,0,2],[2,3,3,1],[0,2,2,2]],[[1,0,1,1],[3,2,0,2],[2,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,2,0,2],[3,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,2,0,2],[2,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,2,0,2],[2,3,3,1],[2,1,2,1]],[[1,0,1,1],[2,2,0,2],[2,3,3,3],[0,1,2,1]],[[1,0,1,1],[2,2,0,2],[2,3,3,2],[0,1,3,1]],[[1,0,1,1],[2,2,0,2],[2,3,3,2],[0,1,2,2]],[[1,0,1,1],[3,2,0,2],[2,3,3,2],[0,2,2,0]],[[1,0,1,1],[2,2,0,2],[3,3,3,2],[0,2,2,0]],[[1,0,1,1],[2,2,0,2],[2,4,3,2],[0,2,2,0]],[[1,0,1,1],[2,2,0,2],[2,3,3,2],[0,3,2,0]],[[1,0,1,1],[2,2,0,2],[2,3,3,2],[0,2,3,0]],[[1,0,1,1],[2,2,0,2],[2,3,3,3],[1,0,2,1]],[[1,0,1,1],[2,2,0,2],[2,3,3,2],[1,0,3,1]],[[1,0,1,1],[2,2,0,2],[2,3,3,2],[1,0,2,2]],[[1,0,1,1],[3,2,0,2],[2,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,0,2],[3,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,0,2],[2,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,2,0],[0,1,2,2],[2,3,2,1],[2,1,2,1]],[[1,2,2,0],[0,1,2,2],[2,4,2,1],[1,1,2,1]],[[1,2,2,0],[0,1,2,2],[3,3,2,1],[1,1,2,1]],[[1,2,2,0],[0,1,2,2],[2,3,2,1],[0,2,2,2]],[[1,0,1,1],[2,2,1,0],[1,4,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,0],[1,3,3,2],[2,2,2,1]],[[1,0,1,1],[2,2,1,0],[1,3,3,2],[1,3,2,1]],[[1,0,1,1],[2,2,1,0],[1,3,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,1,0],[1,3,3,2],[1,2,2,2]],[[1,0,1,1],[3,2,1,0],[2,2,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,0],[3,2,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,0],[2,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,2,1,0],[2,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,2,1,0],[2,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,1,0],[2,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,2,1,0],[3,3,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,0],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,1,0],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,1,0],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[3,2,1,0],[2,3,3,2],[0,2,2,1]],[[1,0,1,1],[2,2,1,0],[3,3,3,2],[0,2,2,1]],[[1,0,1,1],[2,2,1,0],[2,4,3,2],[0,2,2,1]],[[1,0,1,1],[2,2,1,0],[2,3,3,2],[0,3,2,1]],[[1,0,1,1],[2,2,1,0],[2,3,3,2],[0,2,3,1]],[[1,0,1,1],[2,2,1,0],[2,3,3,2],[0,2,2,2]],[[1,0,1,1],[3,2,1,0],[2,3,3,2],[1,1,2,1]],[[1,0,1,1],[2,2,1,0],[3,3,3,2],[1,1,2,1]],[[1,0,1,1],[2,2,1,0],[2,4,3,2],[1,1,2,1]],[[1,0,1,1],[2,2,1,0],[2,3,3,2],[2,1,2,1]],[[1,0,1,1],[2,2,1,0],[3,3,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,0],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,1,0],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,1,1],[1,4,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,1],[1,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,1,1],[1,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,1,1],[1,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,1,1],[1,3,3,1],[1,2,2,2]],[[1,0,1,1],[2,2,1,1],[1,4,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,1],[1,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,1,1],[1,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,1,1],[1,3,3,2],[1,2,3,0]],[[1,0,1,1],[3,2,1,1],[2,2,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,1],[3,2,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,1],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,1,1],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,1,1],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,1,1],[2,2,3,1],[1,2,2,2]],[[1,0,1,1],[3,2,1,1],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,1],[3,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,1],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,1,1],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,1,1],[2,2,3,2],[1,2,3,0]],[[1,0,1,1],[3,2,1,1],[2,3,3,1],[0,2,2,1]],[[1,0,1,1],[2,2,1,1],[3,3,3,1],[0,2,2,1]],[[1,0,1,1],[2,2,1,1],[2,4,3,1],[0,2,2,1]],[[1,0,1,1],[2,2,1,1],[2,3,3,1],[0,3,2,1]],[[1,0,1,1],[2,2,1,1],[2,3,3,1],[0,2,3,1]],[[1,0,1,1],[2,2,1,1],[2,3,3,1],[0,2,2,2]],[[1,0,1,1],[3,2,1,1],[2,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,2,1,1],[3,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,2,1,1],[2,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,2,1,1],[2,3,3,1],[2,1,2,1]],[[1,0,1,1],[3,2,1,1],[2,3,3,2],[0,2,2,0]],[[1,0,1,1],[2,2,1,1],[3,3,3,2],[0,2,2,0]],[[1,0,1,1],[2,2,1,1],[2,4,3,2],[0,2,2,0]],[[1,0,1,1],[2,2,1,1],[2,3,3,2],[0,3,2,0]],[[1,0,1,1],[2,2,1,1],[2,3,3,2],[0,2,3,0]],[[1,0,1,1],[3,2,1,1],[2,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,1,1],[3,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,1,1],[2,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,2,0],[0,1,2,2],[2,3,2,1],[0,2,3,1]],[[1,2,2,0],[0,1,2,2],[2,3,2,1],[0,3,2,1]],[[1,2,2,0],[0,1,2,2],[2,4,2,1],[0,2,2,1]],[[1,2,2,0],[0,1,2,2],[3,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[0,2,3,3],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[0,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,2,1,2],[0,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,1,2],[0,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,2,1,2],[0,3,3,3],[1,1,2,1]],[[1,0,1,1],[2,2,1,2],[0,3,3,2],[1,1,3,1]],[[1,0,1,1],[2,2,1,2],[0,3,3,2],[1,1,2,2]],[[1,0,1,2],[2,2,1,2],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,3],[1,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,1,2],[1,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,1,2],[1,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,2,1,2],[1,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,1,2],[1,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,1,2],[1,2,3,1],[1,2,2,2]],[[1,0,1,1],[2,2,1,2],[1,2,3,3],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,2,3,2],[0,2,3,1]],[[1,0,1,1],[2,2,1,2],[1,2,3,2],[0,2,2,2]],[[1,0,1,2],[2,2,1,2],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,1,3],[1,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,1,2],[1,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,2,1,2],[1,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,2,1,2],[1,2,3,2],[1,2,1,2]],[[1,0,1,2],[2,2,1,2],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,3],[1,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[1,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[1,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[1,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,1,2],[1,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,1,2],[1,2,3,2],[1,2,3,0]],[[1,0,1,2],[2,2,1,2],[1,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,3],[1,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,4,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,1,3],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,2,1,2],[1,3,1,2],[1,2,2,2]],[[1,0,1,1],[2,2,1,2],[1,4,2,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,2,1,2],[1,3,2,1],[1,2,2,2]],[[1,0,1,2],[2,2,1,2],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,2,1,3],[1,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,2,3],[1,1,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,2,2],[1,1,3,1]],[[1,0,1,1],[2,2,1,2],[1,3,2,2],[1,1,2,2]],[[1,0,1,1],[2,2,1,2],[1,4,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[1,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,2,1,2],[1,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,2,1,2],[1,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,2,1,2],[1,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,4,1],[1,1,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,1],[1,1,3,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,1],[1,1,2,2]],[[1,0,1,1],[2,2,1,2],[1,4,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,1,2],[1,3,4,1],[1,2,1,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,1],[1,3,1,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,3],[0,1,2,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,2],[0,1,3,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,2],[0,1,2,2]],[[1,0,1,2],[2,2,1,2],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,1,3],[1,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,1,2],[1,4,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,1,2],[1,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,3],[1,1,1,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,2],[1,1,1,2]],[[1,0,1,2],[2,2,1,2],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,1,3],[1,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,1,2],[1,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,1,2],[1,3,4,2],[1,1,2,0]],[[1,0,1,1],[2,2,1,2],[1,3,3,3],[1,1,2,0]],[[1,0,1,1],[2,2,1,2],[1,3,3,2],[1,1,3,0]],[[1,0,1,2],[2,2,1,2],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,1,3],[1,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,1,2],[1,4,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,1,2],[1,3,4,2],[1,2,0,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,3],[1,2,0,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,2,1,2],[1,3,3,2],[1,2,0,2]],[[1,0,1,2],[2,2,1,2],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,1,3],[1,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,1,2],[1,4,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,1,2],[1,3,4,2],[1,2,1,0]],[[1,0,1,1],[2,2,1,2],[1,3,3,3],[1,2,1,0]],[[1,0,1,1],[2,2,1,2],[1,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,2,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,2,2],[2,3,1,2],[2,1,2,1]],[[1,2,2,0],[0,1,2,2],[2,4,1,2],[1,1,2,1]],[[1,2,2,0],[0,1,2,2],[3,3,1,2],[1,1,2,1]],[[1,2,2,0],[0,1,2,2],[2,3,1,2],[0,2,2,2]],[[2,0,1,1],[2,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,1,2],[2,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[3,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,3],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[3,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,1,2,3],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,1,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,1,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,1,2],[2,1,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,1,2],[2,1,2,2],[1,2,2,2]],[[2,0,1,1],[2,2,1,2],[2,1,3,1],[1,2,2,1]],[[1,0,1,1],[3,2,1,2],[2,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[3,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,1,4,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,1,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,1,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,1,2],[2,1,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,1,2],[2,1,3,1],[1,2,2,2]],[[1,0,1,2],[2,2,1,2],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,1,3],[2,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,1,2],[2,1,4,2],[1,2,1,1]],[[1,0,1,1],[2,2,1,2],[2,1,3,3],[1,2,1,1]],[[1,0,1,1],[2,2,1,2],[2,1,3,2],[1,2,1,2]],[[2,0,1,1],[2,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,1,2],[2,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[3,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,3],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[3,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,1,3,3],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,1,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,1,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,1,2],[2,1,3,2],[1,2,3,0]],[[2,0,1,1],[2,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,1,2],[2,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[3,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,3],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[3,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,1,3],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,1,2],[2,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,1,2],[1,3,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,1,2],[1,2,3,1]],[[1,0,1,1],[2,2,1,2],[2,2,1,2],[1,2,2,2]],[[2,0,1,1],[2,2,1,2],[2,2,2,1],[1,2,2,1]],[[1,0,1,1],[3,2,1,2],[2,2,2,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[3,2,2,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,2,1],[2,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,2,1],[1,3,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,2,1],[1,2,3,1]],[[1,0,1,1],[2,2,1,2],[2,2,2,1],[1,2,2,2]],[[1,0,1,2],[2,2,1,2],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,2,1,3],[2,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,2,3],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,2,2],[0,3,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,2,2],[0,2,3,1]],[[1,0,1,1],[2,2,1,2],[2,2,2,2],[0,2,2,2]],[[2,0,1,1],[2,2,1,2],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[3,2,1,2],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[3,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,2,2,2],[2,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,2,2,2],[1,3,2,0]],[[1,0,1,1],[2,2,1,2],[2,2,2,2],[1,2,3,0]],[[1,0,1,1],[2,2,1,2],[2,2,4,1],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,3,1],[0,3,2,1]],[[1,0,1,1],[2,2,1,2],[2,2,3,1],[0,2,3,1]],[[1,0,1,1],[2,2,1,2],[2,2,3,1],[0,2,2,2]],[[2,0,1,1],[2,2,1,2],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[3,2,1,2],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,1,2],[3,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,1,2],[2,2,3,1],[2,2,1,1]],[[1,0,1,1],[2,2,1,2],[2,2,3,1],[1,3,1,1]],[[1,0,1,2],[2,2,1,2],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,2,1,3],[2,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,2,1,2],[2,2,4,2],[0,2,1,1]],[[1,0,1,1],[2,2,1,2],[2,2,3,3],[0,2,1,1]],[[1,0,1,1],[2,2,1,2],[2,2,3,2],[0,2,1,2]],[[1,0,1,2],[2,2,1,2],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,2,1,3],[2,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,2,4,2],[0,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,2,3,3],[0,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,2,3,2],[0,3,2,0]],[[1,0,1,1],[2,2,1,2],[2,2,3,2],[0,2,3,0]],[[2,0,1,1],[2,2,1,2],[2,2,3,2],[1,2,0,1]],[[1,0,1,1],[3,2,1,2],[2,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,1,2],[3,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,1,2],[2,2,3,2],[2,2,0,1]],[[1,0,1,1],[2,2,1,2],[2,2,3,2],[1,3,0,1]],[[2,0,1,1],[2,2,1,2],[2,2,3,2],[1,2,1,0]],[[1,0,1,1],[3,2,1,2],[2,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,1,2],[3,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,1,2],[2,2,3,2],[2,2,1,0]],[[1,0,1,1],[2,2,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,2,2],[2,3,1,2],[0,2,3,1]],[[1,2,2,0],[0,1,2,2],[2,3,1,2],[0,3,2,1]],[[1,2,2,0],[0,1,2,2],[2,3,1,3],[0,2,2,1]],[[1,2,2,0],[0,1,2,2],[2,4,1,2],[0,2,2,1]],[[1,2,2,0],[0,1,2,2],[3,3,1,2],[0,2,2,1]],[[1,2,2,0],[0,1,2,3],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[3,2,1,2],[2,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[3,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,0,2],[2,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,0,2],[1,3,2,1]],[[1,0,1,1],[3,2,1,2],[2,3,1,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[3,3,1,1],[1,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,1,1],[2,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,1,1],[1,3,2,1]],[[2,0,1,1],[2,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,1,2],[2,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[3,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,1,3],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[3,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,4,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,1,3],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,1,2],[0,3,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,1,2],[0,2,3,1]],[[1,0,1,1],[2,2,1,2],[2,3,1,2],[0,2,2,2]],[[2,0,1,1],[2,2,1,2],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[3,2,1,2],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,2,1,2],[3,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,2,1,2],[2,4,1,2],[1,1,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,1,2],[2,1,2,1]],[[1,0,1,1],[3,2,1,2],[2,3,1,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[3,3,1,2],[1,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,1,2],[2,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,1,2],[1,3,2,0]],[[2,0,1,1],[2,2,1,2],[2,3,2,1],[0,2,2,1]],[[1,0,1,1],[3,2,1,2],[2,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[3,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,4,2,1],[0,2,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,2,1],[0,3,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,2,1],[0,2,3,1]],[[1,0,1,1],[2,2,1,2],[2,3,2,1],[0,2,2,2]],[[2,0,1,1],[2,2,1,2],[2,3,2,1],[1,1,2,1]],[[1,0,1,1],[3,2,1,2],[2,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,2,1,2],[3,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,2,1,2],[2,4,2,1],[1,1,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,2,1],[2,1,2,1]],[[1,0,1,2],[2,2,1,2],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,2,1,3],[2,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,2,1,2],[2,3,2,2],[0,1,2,2]],[[2,0,1,1],[2,2,1,2],[2,3,2,2],[0,2,2,0]],[[1,0,1,1],[3,2,1,2],[2,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,2,1,2],[3,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,4,2,2],[0,2,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,2,2],[0,3,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,2,2],[0,2,3,0]],[[1,0,1,2],[2,2,1,2],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,2,1,3],[2,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,2,3],[1,0,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,2,2],[1,0,3,1]],[[1,0,1,1],[2,2,1,2],[2,3,2,2],[1,0,2,2]],[[2,0,1,1],[2,2,1,2],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[3,2,1,2],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,2,1,2],[3,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,2,1,2],[2,4,2,2],[1,1,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,1,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,2,2],[2,2,3,2],[2,2,1,0]],[[2,0,1,1],[2,2,1,2],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[3,2,1,2],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,2,1,2],[3,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,2,1,2],[2,4,3,1],[0,1,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,1],[0,1,2,2]],[[2,0,1,1],[2,2,1,2],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[3,2,1,2],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,1,2],[3,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,1,2],[2,4,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,1,2],[2,3,4,1],[0,2,1,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,1],[0,3,1,1]],[[2,0,1,1],[2,2,1,2],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[3,2,1,2],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,1,2],[3,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,1,2],[2,4,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,4,1],[1,0,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,1],[2,0,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,1],[1,0,3,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,1],[1,0,2,2]],[[2,0,1,1],[2,2,1,2],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[3,2,1,2],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,1,2],[3,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,1,2],[2,4,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,1,2],[2,3,4,1],[1,1,1,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,1],[2,1,1,1]],[[1,0,1,1],[3,2,1,2],[2,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,1,2],[3,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,1,2],[2,4,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,1,2,2],[3,2,3,2],[1,2,1,0]],[[1,2,2,0],[0,1,2,2],[2,2,3,2],[1,3,0,1]],[[1,2,2,0],[0,1,2,2],[2,2,3,2],[2,2,0,1]],[[1,2,2,0],[0,1,2,2],[3,2,3,2],[1,2,0,1]],[[1,0,1,2],[2,2,1,2],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,2,1,3],[2,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[0,0,2,2]],[[2,0,1,1],[2,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,2],[2,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[3,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,1,3],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,1,2],[3,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,1,2],[2,4,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,1,2],[2,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[0,1,1,2]],[[2,0,1,1],[2,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,2],[2,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[3,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,1,3],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,1,2],[3,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,1,2],[2,4,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[0,1,3,0]],[[2,0,1,1],[2,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,2],[2,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[3,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,1,3],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,1,2],[3,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,1,2],[2,4,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,1,2],[2,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[0,3,0,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[0,2,0,2]],[[2,0,1,1],[2,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,2],[2,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[3,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,1,3],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,1,2],[3,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,1,2],[2,4,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,1,2],[2,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,2,1,2],[2,3,3,3],[0,2,1,0]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,1,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,0],[0,1,2,2],[2,2,3,2],[0,3,2,0]],[[1,2,2,0],[0,1,2,2],[2,2,3,3],[0,2,2,0]],[[1,2,2,0],[0,1,2,2],[2,2,4,2],[0,2,2,0]],[[1,2,2,0],[0,1,2,3],[2,2,3,2],[0,2,2,0]],[[1,2,2,0],[0,1,2,2],[2,2,3,2],[0,2,1,2]],[[1,2,2,0],[0,1,2,2],[2,2,3,3],[0,2,1,1]],[[1,2,2,0],[0,1,2,2],[2,2,4,2],[0,2,1,1]],[[1,2,2,0],[0,1,2,3],[2,2,3,2],[0,2,1,1]],[[2,0,1,1],[2,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,2],[2,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[3,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,1,3],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,1,2],[3,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,1,2],[2,4,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,1,2],[2,3,4,2],[1,0,1,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,3],[1,0,1,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[2,0,1,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[1,0,1,2]],[[2,0,1,1],[2,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,2],[2,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[3,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,1,3],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,1,2],[3,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,1,2],[2,4,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,4,2],[1,0,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,3,3],[1,0,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[2,0,2,0]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[1,0,3,0]],[[2,0,1,1],[2,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,2],[2,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[3,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,1,3],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,1,2],[3,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,1,2],[2,4,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,1,2],[2,3,4,2],[1,1,0,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,3],[1,1,0,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[2,1,0,1]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[1,1,0,2]],[[2,0,1,1],[2,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,2],[2,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[3,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,1,3],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,1,2],[3,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,1,2],[2,4,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,1,2],[2,3,4,2],[1,1,1,0]],[[1,0,1,1],[2,2,1,2],[2,3,3,3],[1,1,1,0]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,1,2,2],[2,2,3,1],[1,3,1,1]],[[1,2,2,0],[0,1,2,2],[2,2,3,1],[2,2,1,1]],[[1,2,2,0],[0,1,2,2],[3,2,3,1],[1,2,1,1]],[[1,2,2,0],[0,1,2,2],[2,2,3,1],[0,2,2,2]],[[1,2,2,0],[0,1,2,2],[2,2,3,1],[0,2,3,1]],[[1,2,2,0],[0,1,2,2],[2,2,3,1],[0,3,2,1]],[[2,0,1,1],[2,2,1,2],[2,3,3,2],[1,2,0,0]],[[1,0,1,1],[3,2,1,2],[2,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,2,1,2],[3,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,2,1,2],[2,4,3,2],[1,2,0,0]],[[1,0,1,1],[2,2,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,1,2,2],[2,2,4,1],[0,2,2,1]],[[1,2,2,0],[0,1,2,2],[2,2,2,2],[1,2,3,0]],[[1,2,2,0],[0,1,2,2],[2,2,2,2],[1,3,2,0]],[[1,2,2,0],[0,1,2,2],[2,2,2,2],[2,2,2,0]],[[1,2,2,0],[0,1,2,2],[3,2,2,2],[1,2,2,0]],[[1,2,2,0],[0,1,2,2],[2,2,2,2],[0,2,2,2]],[[1,2,2,0],[0,1,2,2],[2,2,2,2],[0,2,3,1]],[[1,2,2,0],[0,1,2,2],[2,2,2,2],[0,3,2,1]],[[1,2,2,0],[0,1,2,2],[2,2,2,3],[0,2,2,1]],[[1,2,2,0],[0,1,2,3],[2,2,2,2],[0,2,2,1]],[[1,2,2,0],[0,1,2,2],[2,2,2,1],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[2,2,2,1],[1,2,3,1]],[[1,2,2,0],[0,1,2,2],[2,2,2,1],[1,3,2,1]],[[1,2,2,0],[0,1,2,2],[2,2,2,1],[2,2,2,1]],[[1,2,2,0],[0,1,2,2],[3,2,2,1],[1,2,2,1]],[[1,2,2,0],[0,1,2,2],[2,2,1,2],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[2,2,1,2],[1,2,3,1]],[[1,2,2,0],[0,1,2,2],[2,2,1,2],[1,3,2,1]],[[1,2,2,0],[0,1,2,2],[2,2,1,2],[2,2,2,1]],[[1,2,2,0],[0,1,2,2],[2,2,1,3],[1,2,2,1]],[[1,2,2,0],[0,1,2,2],[3,2,1,2],[1,2,2,1]],[[1,2,2,0],[0,1,2,3],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,0],[1,2,4,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,0],[1,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,0],[1,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,0],[1,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,0],[1,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,2,2,0],[1,4,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,0],[1,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,0],[1,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,0],[1,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,0],[1,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,2,2,0],[1,4,3,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,0],[1,3,4,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,0],[1,3,3,2],[1,1,3,1]],[[1,0,1,1],[2,2,2,0],[1,3,3,2],[1,1,2,2]],[[1,0,1,1],[2,2,2,0],[1,4,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,0],[1,3,4,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,0],[1,3,3,2],[2,2,1,1]],[[1,0,1,1],[2,2,2,0],[1,3,3,2],[1,3,1,1]],[[1,0,1,1],[3,2,2,0],[2,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,0],[3,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,1,4,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,1,3,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,1,3,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,0],[2,1,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,0],[2,1,3,2],[1,2,2,2]],[[1,0,1,1],[3,2,2,0],[2,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,0],[3,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,0],[2,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,0],[2,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,2,2,0],[2,2,4,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,2,3,2],[0,3,2,1]],[[1,0,1,1],[2,2,2,0],[2,2,3,2],[0,2,3,1]],[[1,0,1,1],[2,2,2,0],[2,2,3,2],[0,2,2,2]],[[1,0,1,1],[3,2,2,0],[2,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,0],[3,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,0],[2,2,3,2],[2,2,1,1]],[[1,0,1,1],[2,2,2,0],[2,2,3,2],[1,3,1,1]],[[1,0,1,1],[2,2,2,0],[3,3,2,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,2,1],[1,2,3,1]],[[1,0,1,1],[3,2,2,0],[2,3,2,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,0],[3,3,2,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,4,2,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,2,2],[0,3,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,2,2],[0,2,3,1]],[[1,0,1,1],[2,2,2,0],[2,3,2,2],[0,2,2,2]],[[1,0,1,1],[3,2,2,0],[2,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,0],[3,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,0],[2,4,2,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,2,2],[2,1,2,1]],[[1,0,1,1],[2,2,2,0],[3,3,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,0],[2,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,2,2,0],[2,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,2,2,0],[3,3,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,0],[2,2,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,0],[1,3,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,0],[1,2,3,1]],[[1,0,1,1],[2,2,2,0],[3,3,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,1],[1,3,1,1]],[[1,0,1,1],[3,2,2,0],[2,3,3,2],[0,1,2,1]],[[1,0,1,1],[2,2,2,0],[3,3,3,2],[0,1,2,1]],[[1,0,1,1],[2,2,2,0],[2,4,3,2],[0,1,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,4,2],[0,1,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,2],[0,1,3,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,2],[0,1,2,2]],[[1,0,1,1],[3,2,2,0],[2,3,3,2],[0,2,1,1]],[[1,0,1,1],[2,2,2,0],[3,3,3,2],[0,2,1,1]],[[1,0,1,1],[2,2,2,0],[2,4,3,2],[0,2,1,1]],[[1,0,1,1],[2,2,2,0],[2,3,4,2],[0,2,1,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,2],[0,3,1,1]],[[1,0,1,1],[3,2,2,0],[2,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,2,2,0],[3,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,2,2,0],[2,4,3,2],[1,0,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,2],[2,0,2,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,2],[1,0,3,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,2],[1,0,2,2]],[[1,0,1,1],[3,2,2,0],[2,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,2,0],[3,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,2,0],[2,4,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,2,0],[2,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,2,2,0],[2,3,3,2],[2,1,1,1]],[[1,0,1,1],[2,2,2,0],[3,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,2,0],[2,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,2,2,0],[2,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,2,2],[2,1,3,2],[1,2,3,0]],[[1,2,2,0],[0,1,2,2],[2,1,3,2],[1,3,2,0]],[[1,2,2,0],[0,1,2,2],[2,1,3,2],[2,2,2,0]],[[1,2,2,0],[0,1,2,2],[2,1,3,3],[1,2,2,0]],[[1,2,2,0],[0,1,2,2],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[1,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[1,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[1,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,1],[1,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,1],[1,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,2,2,1],[1,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[1,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[1,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,2,1],[1,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,2,1],[1,2,3,1],[1,2,2,2]],[[1,0,1,1],[2,2,2,1],[1,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,1],[1,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,2,2,1],[1,2,3,2],[1,2,1,2]],[[1,0,1,1],[2,2,2,1],[1,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[1,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[1,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,2,1],[1,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,2,1],[1,2,3,2],[1,2,3,0]],[[1,0,1,1],[2,2,2,1],[1,4,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,1,3],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,1],[1,3,1,2],[1,2,2,2]],[[1,0,1,1],[2,2,2,1],[1,4,2,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,2,2,1],[1,3,2,1],[1,2,2,2]],[[1,0,1,1],[2,2,2,1],[1,3,2,3],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,2,2],[1,1,3,1]],[[1,0,1,1],[2,2,2,1],[1,3,2,2],[1,1,2,2]],[[1,0,1,1],[2,2,2,1],[1,4,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[1,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,2,2,1],[1,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,2,2,1],[1,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,2,2,1],[1,4,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,0],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,0],[1,3,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,0],[1,2,3,1]],[[1,0,1,1],[2,2,2,1],[1,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,4,1],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,1],[1,1,3,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,1],[1,1,2,2]],[[1,0,1,1],[2,2,2,1],[1,4,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,2,1],[1,3,4,1],[1,2,1,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,1],[1,3,1,1]],[[1,0,1,1],[2,2,2,1],[1,4,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,2,1],[1,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,3],[1,1,1,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,2],[1,1,1,2]],[[1,0,1,1],[2,2,2,1],[1,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,2,1],[1,3,4,2],[1,1,2,0]],[[1,0,1,1],[2,2,2,1],[1,3,3,3],[1,1,2,0]],[[1,0,1,1],[2,2,2,1],[1,3,3,2],[1,1,3,0]],[[1,0,1,1],[2,2,2,1],[1,4,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,2,1],[1,3,4,2],[1,2,0,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,3],[1,2,0,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,2,2,1],[1,3,3,2],[1,2,0,2]],[[1,0,1,1],[2,2,2,1],[1,4,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,2,1],[1,3,4,2],[1,2,1,0]],[[1,0,1,1],[2,2,2,1],[1,3,3,3],[1,2,1,0]],[[1,0,1,1],[2,2,2,1],[1,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,2,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,2,2],[3,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,1,2,3],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,1,2,2],[2,1,3,2],[1,2,1,2]],[[1,2,2,0],[0,1,2,2],[2,1,3,3],[1,2,1,1]],[[1,2,2,0],[0,1,2,2],[2,1,4,2],[1,2,1,1]],[[1,2,2,0],[0,1,2,3],[2,1,3,2],[1,2,1,1]],[[1,2,2,0],[0,1,2,2],[2,1,3,2],[0,2,2,2]],[[2,0,1,1],[2,2,2,1],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[3,2,2,1],[2,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[3,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,1,2,3],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,1,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,1,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,1],[2,1,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,1],[2,1,2,2],[1,2,2,2]],[[2,0,1,1],[2,2,2,1],[2,1,3,1],[1,2,2,1]],[[1,0,1,1],[3,2,2,1],[2,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[3,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,1,4,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,1,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,1,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,2,1],[2,1,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,2,1],[2,1,3,1],[1,2,2,2]],[[1,0,1,1],[2,2,2,1],[2,1,4,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,1],[2,1,3,3],[1,2,1,1]],[[1,0,1,1],[2,2,2,1],[2,1,3,2],[1,2,1,2]],[[2,0,1,1],[2,2,2,1],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[3,2,2,1],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[3,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,1,3,3],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,1,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,1,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,2,1],[2,1,3,2],[1,2,3,0]],[[2,0,1,1],[2,2,2,1],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[3,2,2,1],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[3,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,1,3],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,1,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,1,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,1,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,1],[2,2,1,2],[1,2,2,2]],[[2,0,1,1],[2,2,2,1],[2,2,2,1],[1,2,2,1]],[[1,0,1,1],[3,2,2,1],[2,2,2,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[3,2,2,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,2,1],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,2,1],[1,3,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,2,1],[1,2,3,1]],[[1,0,1,1],[2,2,2,1],[2,2,2,1],[1,2,2,2]],[[1,0,1,1],[2,2,2,1],[2,2,2,3],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,2,2],[0,3,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,2,2],[0,2,3,1]],[[1,0,1,1],[2,2,2,1],[2,2,2,2],[0,2,2,2]],[[2,0,1,1],[2,2,2,1],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[3,2,2,1],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[3,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,2,2,2],[2,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,2,2,2],[1,3,2,0]],[[1,0,1,1],[2,2,2,1],[2,2,2,2],[1,2,3,0]],[[1,0,1,1],[3,2,2,1],[2,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[3,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,0],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,0],[1,3,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,0],[1,2,3,1]],[[1,0,1,1],[2,2,2,1],[2,2,4,1],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,1],[0,3,2,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,1],[0,2,3,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,1],[0,2,2,2]],[[2,0,1,1],[2,2,2,1],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[3,2,2,1],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,2,1],[3,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,1],[2,2,1,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,1],[1,3,1,1]],[[1,0,1,1],[2,2,2,1],[2,2,4,2],[0,2,1,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,3],[0,2,1,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,2],[0,2,1,2]],[[1,0,1,1],[2,2,2,1],[2,2,4,2],[0,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,2,3,3],[0,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,2,3,2],[0,3,2,0]],[[1,0,1,1],[2,2,2,1],[2,2,3,2],[0,2,3,0]],[[2,0,1,1],[2,2,2,1],[2,2,3,2],[1,2,0,1]],[[1,0,1,1],[3,2,2,1],[2,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,2,1],[3,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,2],[2,2,0,1]],[[1,0,1,1],[2,2,2,1],[2,2,3,2],[1,3,0,1]],[[2,0,1,1],[2,2,2,1],[2,2,3,2],[1,2,1,0]],[[1,0,1,1],[3,2,2,1],[2,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,2,1],[3,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,2,1],[2,2,3,2],[2,2,1,0]],[[1,0,1,1],[2,2,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,2,2],[2,1,3,2],[0,2,3,1]],[[1,2,2,0],[0,1,2,2],[2,1,3,3],[0,2,2,1]],[[1,2,2,0],[0,1,2,3],[2,1,3,2],[0,2,2,1]],[[1,2,2,0],[0,1,2,2],[2,1,3,1],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[2,1,3,1],[1,2,3,1]],[[1,2,2,0],[0,1,2,2],[2,1,3,1],[1,3,2,1]],[[1,2,2,0],[0,1,2,2],[2,1,3,1],[2,2,2,1]],[[1,2,2,0],[0,1,2,2],[2,1,4,1],[1,2,2,1]],[[1,2,2,0],[0,1,2,2],[3,1,3,1],[1,2,2,1]],[[1,0,1,1],[3,2,2,1],[2,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[3,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,0,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,0,2],[1,3,2,1]],[[1,0,1,1],[3,2,2,1],[2,3,1,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[3,3,1,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,1,1],[2,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,1,1],[1,3,2,1]],[[2,0,1,1],[2,2,2,1],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[3,2,2,1],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[3,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,4,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,1,3],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,1,2],[0,3,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,1,2],[0,2,3,1]],[[1,0,1,1],[2,2,2,1],[2,3,1,2],[0,2,2,2]],[[2,0,1,1],[2,2,2,1],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[3,2,2,1],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[3,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[2,4,1,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,1,2],[2,1,2,1]],[[1,0,1,1],[3,2,2,1],[2,3,1,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[3,3,1,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,1,2],[2,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,1,2],[1,3,2,0]],[[2,0,1,1],[2,2,2,1],[2,3,2,1],[0,2,2,1]],[[1,0,1,1],[3,2,2,1],[2,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[3,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,4,2,1],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,2,1],[0,3,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,2,1],[0,2,3,1]],[[1,0,1,1],[2,2,2,1],[2,3,2,1],[0,2,2,2]],[[2,0,1,1],[2,2,2,1],[2,3,2,1],[1,1,2,1]],[[1,0,1,1],[3,2,2,1],[2,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[3,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[2,4,2,1],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,2,1],[2,1,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,2,2,1],[2,3,2,2],[0,1,2,2]],[[2,0,1,1],[2,2,2,1],[2,3,2,2],[0,2,2,0]],[[1,0,1,1],[3,2,2,1],[2,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,2,2,1],[3,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,4,2,2],[0,2,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,2,2],[0,3,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,2,2],[0,2,3,0]],[[1,0,1,1],[2,2,2,1],[2,3,2,3],[1,0,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,2,2],[1,0,3,1]],[[1,0,1,1],[2,2,2,1],[2,3,2,2],[1,0,2,2]],[[2,0,1,1],[2,2,2,1],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[3,2,2,1],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,2,2,1],[3,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,2,2,1],[2,4,2,2],[1,1,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,2,0],[0,1,2,2],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[0,1,2,2],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[0,1,2,2],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[0,1,2,2],[2,1,2,3],[1,2,2,1]],[[1,2,2,0],[0,1,2,2],[3,1,2,2],[1,2,2,1]],[[1,2,2,0],[0,1,2,3],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[0,1,2,2],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[2,0,3,2],[1,2,3,1]],[[1,0,1,1],[3,2,2,1],[2,3,3,0],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[3,3,3,0],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,4,3,0],[0,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,0],[0,3,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,0],[0,2,3,1]],[[1,0,1,1],[3,2,2,1],[2,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[3,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[2,4,3,0],[1,1,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,0],[2,1,2,1]],[[2,0,1,1],[2,2,2,1],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[3,2,2,1],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,2,2,1],[3,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,2,2,1],[2,4,3,1],[0,1,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,1],[0,1,2,2]],[[2,0,1,1],[2,2,2,1],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[3,2,2,1],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,2,1],[3,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,2,1],[2,4,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,2,1],[2,3,4,1],[0,2,1,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,1],[0,3,1,1]],[[2,0,1,1],[2,2,2,1],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[3,2,2,1],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,2,1],[3,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,2,1],[2,4,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,4,1],[1,0,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,1],[2,0,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,1],[1,0,3,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,1],[1,0,2,2]],[[2,0,1,1],[2,2,2,1],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[3,2,2,1],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,2,1],[3,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,2,1],[2,4,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,2,1],[2,3,4,1],[1,1,1,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,1],[2,1,1,1]],[[1,0,1,1],[3,2,2,1],[2,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,2,1],[3,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,2,1],[2,4,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,2,0],[0,1,2,2],[2,0,3,3],[1,2,2,1]],[[1,2,2,0],[0,1,2,3],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[0,0,2,2]],[[2,0,1,1],[2,2,2,1],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[3,2,2,1],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,2,1],[3,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,2,1],[2,4,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,2,1],[2,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[0,1,1,2]],[[2,0,1,1],[2,2,2,1],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[3,2,2,1],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,2,1],[3,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,2,1],[2,4,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[0,1,3,0]],[[2,0,1,1],[2,2,2,1],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[3,2,2,1],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,2,1],[3,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,2,1],[2,4,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,2,1],[2,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[0,3,0,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[0,2,0,2]],[[2,0,1,1],[2,2,2,1],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[3,2,2,1],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,2,1],[3,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,2,1],[2,4,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,2,1],[2,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,2,2,1],[2,3,3,3],[0,2,1,0]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,1,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,2,2],[1,3,3,2],[2,2,1,0]],[[2,0,1,1],[2,2,2,1],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[3,2,2,1],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,2,1],[3,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,2,1],[2,4,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,2,1],[2,3,4,2],[1,0,1,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,3],[1,0,1,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[2,0,1,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[1,0,1,2]],[[2,0,1,1],[2,2,2,1],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[3,2,2,1],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,2,1],[3,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,2,1],[2,4,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,4,2],[1,0,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,3,3],[1,0,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[2,0,2,0]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[1,0,3,0]],[[2,0,1,1],[2,2,2,1],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[3,2,2,1],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,2,1],[3,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,2,1],[2,4,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,2,1],[2,3,4,2],[1,1,0,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,3],[1,1,0,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[2,1,0,1]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[1,1,0,2]],[[2,0,1,1],[2,2,2,1],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[3,2,2,1],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,2,1],[3,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,2,1],[2,4,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,2,1],[2,3,4,2],[1,1,1,0]],[[1,0,1,1],[2,2,2,1],[2,3,3,3],[1,1,1,0]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,2,0],[0,1,2,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[0,1,2,2],[1,3,4,2],[1,2,1,0]],[[1,2,2,0],[0,1,2,2],[1,4,3,2],[1,2,1,0]],[[1,2,2,0],[0,1,2,3],[1,3,3,2],[1,2,1,0]],[[1,2,2,0],[0,1,2,2],[1,3,3,2],[1,2,0,2]],[[1,2,2,0],[0,1,2,2],[1,3,3,2],[1,3,0,1]],[[1,2,2,0],[0,1,2,2],[1,3,3,2],[2,2,0,1]],[[1,2,2,0],[0,1,2,2],[1,3,3,3],[1,2,0,1]],[[1,2,2,0],[0,1,2,2],[1,3,4,2],[1,2,0,1]],[[2,0,1,1],[2,2,2,1],[2,3,3,2],[1,2,0,0]],[[1,0,1,1],[3,2,2,1],[2,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,2,2,1],[3,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,2,2,1],[2,4,3,2],[1,2,0,0]],[[1,0,1,1],[2,2,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,2,0],[0,1,2,2],[1,4,3,2],[1,2,0,1]],[[1,2,2,0],[0,1,2,3],[1,3,3,2],[1,2,0,1]],[[1,2,2,0],[0,1,2,2],[1,3,3,2],[1,1,3,0]],[[1,2,2,0],[0,1,2,2],[1,3,3,3],[1,1,2,0]],[[1,2,2,0],[0,1,2,2],[1,3,4,2],[1,1,2,0]],[[1,2,2,0],[0,1,2,2],[1,4,3,2],[1,1,2,0]],[[1,2,2,0],[0,1,2,3],[1,3,3,2],[1,1,2,0]],[[1,2,2,0],[0,1,2,2],[1,3,3,2],[1,1,1,2]],[[1,2,2,0],[0,1,2,2],[1,3,3,3],[1,1,1,1]],[[1,2,2,0],[0,1,2,2],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[0,1,2,2],[1,4,3,2],[1,1,1,1]],[[1,2,2,0],[0,1,2,3],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[0,1,2,2],[1,3,3,2],[1,0,2,2]],[[1,2,2,0],[0,1,2,2],[1,3,3,3],[1,0,2,1]],[[1,2,2,0],[0,1,2,2],[1,3,4,2],[1,0,2,1]],[[1,2,2,0],[0,1,2,3],[1,3,3,2],[1,0,2,1]],[[1,0,1,2],[2,2,2,2],[0,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,3],[0,1,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,1,3,3],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,1,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[0,1,3,2],[1,2,2,2]],[[1,0,1,2],[2,2,2,2],[0,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,3],[0,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[0,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[0,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,2,2,2],[0,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[0,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[0,2,3,1],[1,2,2,2]],[[1,0,1,2],[2,2,2,2],[0,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,3],[0,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[0,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[0,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[0,2,3,2],[1,2,1,2]],[[1,0,1,2],[2,2,2,2],[0,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,3],[0,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[0,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[0,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[0,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,2,2],[0,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,2,2],[0,2,3,2],[1,2,3,0]],[[1,0,1,2],[2,2,2,2],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,3],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,4,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,1,3],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[0,3,1,2],[1,2,2,2]],[[1,0,1,1],[2,2,2,2],[0,4,2,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[0,3,2,1],[1,2,2,2]],[[1,0,1,2],[2,2,2,2],[0,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,3],[0,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,2,3],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,2,2],[1,1,3,1]],[[1,0,1,1],[2,2,2,2],[0,3,2,2],[1,1,2,2]],[[1,0,1,1],[2,2,2,2],[0,4,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[0,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,2,2,2],[0,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,2,2,2],[0,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,2,2,2],[0,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,4,1],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,1],[1,1,3,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,1],[1,1,2,2]],[[1,0,1,1],[2,2,2,2],[0,4,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[0,3,4,1],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,1],[1,3,1,1]],[[1,0,1,2],[2,2,2,2],[0,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,2,2,3],[0,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,3],[1,0,2,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,2],[1,0,2,2]],[[1,0,1,2],[2,2,2,2],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,2,3],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,2,2],[0,4,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,2,2],[0,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,3],[1,1,1,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,2],[1,1,1,2]],[[1,0,1,2],[2,2,2,2],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,2,3],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,2,2],[0,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,2,2],[0,3,4,2],[1,1,2,0]],[[1,0,1,1],[2,2,2,2],[0,3,3,3],[1,1,2,0]],[[1,0,1,1],[2,2,2,2],[0,3,3,2],[1,1,3,0]],[[1,0,1,2],[2,2,2,2],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,2,3],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,2,2],[0,4,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,2,2],[0,3,4,2],[1,2,0,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,3],[1,2,0,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,2,2,2],[0,3,3,2],[1,2,0,2]],[[1,0,1,2],[2,2,2,2],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,2,3],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,2,2],[0,4,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,2,2],[0,3,4,2],[1,2,1,0]],[[1,0,1,1],[2,2,2,2],[0,3,3,3],[1,2,1,0]],[[1,0,1,1],[2,2,2,2],[0,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,1,2,2],[1,3,3,1],[1,3,1,1]],[[1,2,2,0],[0,1,2,2],[1,3,3,1],[2,2,1,1]],[[1,2,2,0],[0,1,2,2],[1,3,4,1],[1,2,1,1]],[[1,2,2,0],[0,1,2,2],[1,4,3,1],[1,2,1,1]],[[1,2,2,0],[0,1,2,2],[1,3,3,1],[1,1,2,2]],[[1,2,2,0],[0,1,2,2],[1,3,3,1],[1,1,3,1]],[[1,2,2,0],[0,1,2,2],[1,3,4,1],[1,1,2,1]],[[1,2,2,0],[0,1,2,2],[1,4,3,1],[1,1,2,1]],[[1,0,1,2],[2,2,2,2],[1,1,3,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,3],[1,1,3,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,1,3,3],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,1,3,2],[0,2,3,1]],[[1,0,1,1],[2,2,2,2],[1,1,3,2],[0,2,2,2]],[[1,0,1,2],[2,2,2,2],[1,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,3],[1,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,2,2,3],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,2,2,2],[0,3,2,1]],[[1,0,1,1],[2,2,2,2],[1,2,2,2],[0,2,3,1]],[[1,0,1,1],[2,2,2,2],[1,2,2,2],[0,2,2,2]],[[1,0,1,1],[2,2,2,2],[1,2,4,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,2,3,0],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,2,3,0],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[1,2,3,0],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[1,2,3,0],[1,2,2,2]],[[1,0,1,1],[2,2,2,2],[1,2,4,1],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,2,3,1],[0,3,2,1]],[[1,0,1,1],[2,2,2,2],[1,2,3,1],[0,2,3,1]],[[1,0,1,1],[2,2,2,2],[1,2,3,1],[0,2,2,2]],[[1,0,1,1],[2,2,2,2],[1,2,4,1],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[1,2,3,1],[2,2,2,0]],[[1,0,1,1],[2,2,2,2],[1,2,3,1],[1,3,2,0]],[[1,0,1,1],[2,2,2,2],[1,2,3,1],[1,2,3,0]],[[1,0,1,2],[2,2,2,2],[1,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,2,2,3],[1,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,2,2,2],[1,2,4,2],[0,2,1,1]],[[1,0,1,1],[2,2,2,2],[1,2,3,3],[0,2,1,1]],[[1,0,1,1],[2,2,2,2],[1,2,3,2],[0,2,1,2]],[[1,0,1,2],[2,2,2,2],[1,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,2,2,3],[1,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,2,2,2],[1,2,4,2],[0,2,2,0]],[[1,0,1,1],[2,2,2,2],[1,2,3,3],[0,2,2,0]],[[1,0,1,1],[2,2,2,2],[1,2,3,2],[0,3,2,0]],[[1,0,1,1],[2,2,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[0,1,2,2],[1,3,2,2],[1,2,3,0]],[[1,2,2,0],[0,1,2,2],[1,3,2,2],[1,3,2,0]],[[1,0,1,2],[2,2,2,2],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,3],[1,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,4,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,0,3],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,0,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,0,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,0,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[1,3,0,2],[1,2,2,2]],[[1,0,1,2],[2,2,2,2],[1,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,3],[1,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,4,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,1,3],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,1,2],[0,3,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,1,2],[0,2,3,1]],[[1,0,1,1],[2,2,2,2],[1,3,1,2],[0,2,2,2]],[[1,0,1,1],[2,2,2,2],[1,4,2,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,0],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,0],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,0],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,0],[1,2,2,2]],[[1,0,1,1],[2,2,2,2],[1,4,2,1],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,1],[0,3,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,1],[0,2,3,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,1],[0,2,2,2]],[[1,0,1,1],[2,2,2,2],[1,4,2,1],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,2,1],[2,2,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,2,1],[1,3,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,2,1],[1,2,3,0]],[[1,0,1,2],[2,2,2,2],[1,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,2,2,3],[1,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,2],[0,1,2,2]],[[1,0,1,1],[2,2,2,2],[1,4,2,2],[0,2,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,2,2],[0,3,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,2,2],[0,2,3,0]],[[1,0,1,2],[2,2,2,2],[1,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,2,2,3],[1,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,3],[1,0,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,2],[1,0,3,1]],[[1,0,1,1],[2,2,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,2,0],[0,1,2,2],[1,3,2,2],[2,2,2,0]],[[1,2,2,0],[0,1,2,2],[1,4,2,2],[1,2,2,0]],[[1,2,2,0],[0,1,2,2],[1,3,2,2],[1,1,2,2]],[[1,2,2,0],[0,1,2,2],[1,3,2,2],[1,1,3,1]],[[1,2,2,0],[0,1,2,2],[1,3,2,3],[1,1,2,1]],[[1,2,2,0],[0,1,2,3],[1,3,2,2],[1,1,2,1]],[[1,2,2,0],[0,1,2,2],[1,3,2,1],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[1,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[1,4,3,0],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,4,0],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,0],[1,1,3,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,0],[1,1,2,2]],[[1,0,1,1],[2,2,2,2],[1,4,3,0],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[1,3,4,0],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,0],[2,2,1,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,0],[1,3,1,1]],[[1,0,1,1],[2,2,2,2],[1,4,3,1],[0,1,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,1],[0,1,2,2]],[[1,0,1,1],[2,2,2,2],[1,4,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,2,2],[1,3,4,1],[0,2,1,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,1],[0,3,1,1]],[[1,0,1,1],[2,2,2,2],[1,4,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,4,1],[1,0,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,1],[1,0,3,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,1],[1,0,2,2]],[[1,0,1,1],[2,2,2,2],[1,4,3,1],[1,1,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,4,1],[1,1,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,3,1],[1,1,3,0]],[[1,0,1,1],[2,2,2,2],[1,4,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,2,2],[1,3,4,1],[1,2,0,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,1],[2,2,0,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,1],[1,3,0,1]],[[1,0,1,1],[2,2,2,2],[1,4,3,1],[1,2,1,0]],[[1,0,1,1],[2,2,2,2],[1,3,4,1],[1,2,1,0]],[[1,0,1,1],[2,2,2,2],[1,3,3,1],[2,2,1,0]],[[1,0,1,1],[2,2,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,2,0],[0,1,2,2],[1,3,2,1],[1,3,2,1]],[[1,2,2,0],[0,1,2,2],[1,3,2,1],[2,2,2,1]],[[1,2,2,0],[0,1,2,2],[1,4,2,1],[1,2,2,1]],[[1,2,2,0],[0,1,2,2],[1,3,1,2],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[1,3,1,2],[1,2,3,1]],[[1,2,2,0],[0,1,2,2],[1,3,1,2],[1,3,2,1]],[[1,0,1,2],[2,2,2,2],[1,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,2,2,3],[1,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,2],[0,0,2,2]],[[1,0,1,2],[2,2,2,2],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,2,3],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,2,2],[1,4,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,2,2],[1,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,2],[0,1,1,2]],[[1,0,1,2],[2,2,2,2],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,2,3],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,2,2],[1,4,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,3,2],[0,1,3,0]],[[1,0,1,2],[2,2,2,2],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,2,3],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,2,2],[1,4,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,2,2],[1,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,2],[0,3,0,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,2],[0,2,0,2]],[[1,0,1,2],[2,2,2,2],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,2,3],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,2,2],[1,4,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,2,2],[1,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,2,2,2],[1,3,3,3],[0,2,1,0]],[[1,0,1,1],[2,2,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,1,2,2],[1,3,1,2],[2,2,2,1]],[[1,2,2,0],[0,1,2,2],[1,3,1,3],[1,2,2,1]],[[1,2,2,0],[0,1,2,2],[1,4,1,2],[1,2,2,1]],[[1,2,2,0],[0,1,2,3],[1,3,1,2],[1,2,2,1]],[[1,0,1,2],[2,2,2,2],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,2,3],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,2,2],[1,4,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,2,2],[1,3,4,2],[1,0,1,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,3],[1,0,1,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,2],[1,0,1,2]],[[1,0,1,2],[2,2,2,2],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,2,3],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,2,2],[1,4,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,4,2],[1,0,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,3,3],[1,0,2,0]],[[1,0,1,1],[2,2,2,2],[1,3,3,2],[1,0,3,0]],[[1,0,1,2],[2,2,2,2],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,2,3],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,2,2],[1,4,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,2,2],[1,3,4,2],[1,1,0,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,3],[1,1,0,1]],[[1,0,1,1],[2,2,2,2],[1,3,3,2],[1,1,0,2]],[[1,0,1,2],[2,2,2,2],[1,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,2,3],[1,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,2,2],[1,4,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,2,2],[1,3,4,2],[1,1,1,0]],[[1,0,1,1],[2,2,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[0,1,2,2],[1,2,3,2],[1,2,3,0]],[[1,2,2,0],[0,1,2,2],[1,2,3,2],[1,3,2,0]],[[1,2,2,0],[0,1,2,2],[1,2,3,2],[2,2,2,0]],[[1,2,2,0],[0,1,2,2],[1,2,3,3],[1,2,2,0]],[[1,2,2,0],[0,1,2,2],[1,2,4,2],[1,2,2,0]],[[1,2,2,0],[0,1,2,3],[1,2,3,2],[1,2,2,0]],[[1,2,2,0],[0,1,2,2],[1,2,3,2],[1,2,1,2]],[[1,2,2,0],[0,1,2,2],[1,2,3,3],[1,2,1,1]],[[1,2,2,0],[0,1,2,2],[1,2,4,2],[1,2,1,1]],[[1,2,2,0],[0,1,2,3],[1,2,3,2],[1,2,1,1]],[[1,2,2,0],[0,1,2,2],[1,2,3,1],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[1,2,3,1],[1,2,3,1]],[[1,2,2,0],[0,1,2,2],[1,2,3,1],[1,3,2,1]],[[1,2,2,0],[0,1,2,2],[1,2,3,1],[2,2,2,1]],[[1,2,2,0],[0,1,2,2],[1,2,4,1],[1,2,2,1]],[[1,2,2,0],[0,1,2,2],[1,2,2,2],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[1,2,2,2],[1,2,3,1]],[[1,2,2,0],[0,1,2,2],[1,2,2,2],[1,3,2,1]],[[1,2,2,0],[0,1,2,2],[1,2,2,2],[2,2,2,1]],[[1,2,2,0],[0,1,2,2],[1,2,2,3],[1,2,2,1]],[[1,2,2,0],[0,1,2,3],[1,2,2,2],[1,2,2,1]],[[1,2,2,0],[0,1,2,2],[1,1,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[1,1,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,2,2],[1,1,3,3],[1,2,2,1]],[[1,2,2,0],[0,1,2,3],[1,1,3,2],[1,2,2,1]],[[2,0,1,1],[2,2,2,2],[2,0,2,2],[1,2,2,1]],[[1,0,1,2],[2,2,2,2],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[3,2,2,2],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,3],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[3,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,0,2,3],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,0,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,0,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[2,0,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[2,0,2,2],[1,2,2,2]],[[2,0,1,1],[2,2,2,2],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[3,2,2,2],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[3,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,0,4,1],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,0,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,0,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[2,0,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[2,0,3,1],[1,2,2,2]],[[1,0,1,2],[2,2,2,2],[2,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,3],[2,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[2,0,4,2],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[2,0,3,3],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[2,0,3,2],[1,2,1,2]],[[2,0,1,1],[2,2,2,2],[2,0,3,2],[1,2,2,0]],[[1,0,1,2],[2,2,2,2],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[3,2,2,2],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,3],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[3,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,0,4,2],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,0,3,3],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,0,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,0,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,2,2],[2,0,3,2],[1,2,3,0]],[[2,0,1,1],[2,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,0,1,1],[3,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[3,1,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,1,4,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,1,3,0],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,1,3,0],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[2,1,3,0],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[2,1,3,0],[1,2,2,2]],[[2,0,1,1],[2,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,0,1,1],[3,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[3,1,3,1],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,1,4,1],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,1,3,1],[2,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,1,3,1],[1,3,2,0]],[[1,0,1,1],[2,2,2,2],[2,1,3,1],[1,2,3,0]],[[1,2,2,0],[0,1,2,2],[0,3,3,2],[1,2,3,0]],[[1,2,2,0],[0,1,2,2],[0,3,3,2],[1,3,2,0]],[[1,2,2,0],[0,1,2,2],[0,3,3,3],[1,2,2,0]],[[1,2,2,0],[0,1,2,2],[0,3,4,2],[1,2,2,0]],[[1,2,2,0],[0,1,2,3],[0,3,3,2],[1,2,2,0]],[[1,2,2,0],[0,1,2,2],[0,3,3,2],[1,2,1,2]],[[1,2,2,0],[0,1,2,2],[0,3,3,3],[1,2,1,1]],[[1,2,2,0],[0,1,2,2],[0,3,4,2],[1,2,1,1]],[[1,2,2,0],[0,1,2,3],[0,3,3,2],[1,2,1,1]],[[2,0,1,1],[2,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,2],[2,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[3,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,3],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[3,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,2,0,3],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,2,0,2],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,2,0,2],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[2,2,0,2],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[2,2,0,2],[1,2,2,2]],[[2,0,1,1],[2,2,2,2],[2,2,2,0],[1,2,2,1]],[[1,0,1,1],[3,2,2,2],[2,2,2,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[3,2,2,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,2,2,0],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,2,2,0],[1,3,2,1]],[[1,0,1,1],[2,2,2,2],[2,2,2,0],[1,2,3,1]],[[1,0,1,1],[2,2,2,2],[2,2,2,0],[1,2,2,2]],[[2,0,1,1],[2,2,2,2],[2,2,2,1],[1,2,2,0]],[[1,0,1,1],[3,2,2,2],[2,2,2,1],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[3,2,2,1],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,2,2,1],[2,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,2,2,1],[1,3,2,0]],[[1,0,1,1],[2,2,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,2,0],[0,1,2,2],[0,3,3,1],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[0,3,3,1],[1,2,3,1]],[[1,2,2,0],[0,1,2,2],[0,3,3,1],[1,3,2,1]],[[1,2,2,0],[0,1,2,2],[0,3,4,1],[1,2,2,1]],[[1,2,2,0],[0,1,2,2],[0,3,2,2],[1,2,2,2]],[[1,2,2,0],[0,1,2,2],[0,3,2,2],[1,2,3,1]],[[1,2,2,0],[0,1,2,2],[0,3,2,2],[1,3,2,1]],[[1,2,2,0],[0,1,2,2],[0,3,2,3],[1,2,2,1]],[[1,2,2,0],[0,1,2,3],[0,3,2,2],[1,2,2,1]],[[1,2,2,0],[0,1,2,2],[0,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,2,2,2],[2,2,4,0],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,2,3,0],[0,3,2,1]],[[1,0,1,1],[2,2,2,2],[2,2,3,0],[0,2,3,1]],[[1,0,1,1],[2,2,2,2],[2,2,3,0],[0,2,2,2]],[[2,0,1,1],[2,2,2,2],[2,2,3,0],[1,2,1,1]],[[1,0,1,1],[3,2,2,2],[2,2,3,0],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[3,2,3,0],[1,2,1,1]],[[1,0,1,1],[2,2,2,2],[2,2,3,0],[2,2,1,1]],[[1,0,1,1],[2,2,2,2],[2,2,3,0],[1,3,1,1]],[[1,0,1,1],[2,2,2,2],[2,2,4,1],[0,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,2,3,1],[0,3,2,0]],[[1,0,1,1],[2,2,2,2],[2,2,3,1],[0,2,3,0]],[[2,0,1,1],[2,2,2,2],[2,2,3,1],[1,2,0,1]],[[1,0,1,1],[3,2,2,2],[2,2,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,2,2],[3,2,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,2,2],[2,2,3,1],[2,2,0,1]],[[1,0,1,1],[2,2,2,2],[2,2,3,1],[1,3,0,1]],[[2,0,1,1],[2,2,2,2],[2,2,3,1],[1,2,1,0]],[[1,0,1,1],[3,2,2,2],[2,2,3,1],[1,2,1,0]],[[1,0,1,1],[2,2,2,2],[3,2,3,1],[1,2,1,0]],[[1,0,1,1],[2,2,2,2],[2,2,3,1],[2,2,1,0]],[[1,0,1,1],[2,2,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,2,0],[0,1,2,2],[0,2,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,2,2],[0,2,3,3],[1,2,2,1]],[[1,2,2,0],[0,1,2,3],[0,2,3,2],[1,2,2,1]],[[1,2,2,0],[0,1,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,2,0],[0,1,1,2],[2,3,3,2],[1,0,3,1]],[[1,2,2,0],[0,1,1,2],[2,3,3,3],[1,0,2,1]],[[1,2,2,0],[0,1,1,2],[2,3,3,2],[0,1,2,2]],[[1,2,2,0],[0,1,1,2],[2,3,3,2],[0,1,3,1]],[[1,2,2,0],[0,1,1,2],[2,3,3,3],[0,1,2,1]],[[1,2,2,0],[0,1,1,2],[2,2,3,2],[0,2,2,2]],[[1,2,2,0],[0,1,1,2],[2,2,3,2],[0,2,3,1]],[[1,2,2,0],[0,1,1,2],[2,2,3,2],[0,3,2,1]],[[1,2,2,0],[0,1,1,2],[2,2,3,3],[0,2,2,1]],[[1,2,2,0],[0,1,1,2],[2,1,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,1,2],[2,1,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,1,2],[2,1,3,2],[1,3,2,1]],[[1,2,2,0],[0,1,1,2],[2,1,3,2],[2,2,2,1]],[[1,2,2,0],[0,1,1,2],[2,1,3,3],[1,2,2,1]],[[1,2,2,0],[0,1,1,2],[1,3,3,2],[1,1,2,2]],[[1,2,2,0],[0,1,1,2],[1,3,3,2],[1,1,3,1]],[[1,2,2,0],[0,1,1,2],[1,3,3,3],[1,1,2,1]],[[1,2,2,0],[0,1,1,2],[1,2,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,1,2],[1,2,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,1,2],[1,2,3,2],[1,3,2,1]],[[1,2,2,0],[0,1,1,2],[1,2,3,2],[2,2,2,1]],[[1,2,2,0],[0,1,1,2],[1,2,3,3],[1,2,2,1]],[[1,2,2,0],[0,1,1,2],[0,3,3,2],[1,2,2,2]],[[1,2,2,0],[0,1,1,2],[0,3,3,2],[1,2,3,1]],[[1,2,2,0],[0,1,1,2],[0,3,3,2],[1,3,2,1]],[[2,0,1,1],[2,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,2],[2,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[3,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,3],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[3,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,4,0,2],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,0,3],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,0,2],[0,3,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,0,2],[0,2,3,1]],[[1,0,1,1],[2,2,2,2],[2,3,0,2],[0,2,2,2]],[[2,0,1,1],[2,2,2,2],[2,3,0,2],[1,1,2,1]],[[1,0,1,1],[3,2,2,2],[2,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[3,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[2,4,0,2],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,0,2],[2,1,2,1]],[[1,0,1,1],[3,2,2,2],[2,3,1,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[3,3,1,0],[1,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,1,0],[2,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,1,0],[1,3,2,1]],[[1,0,1,1],[3,2,2,2],[2,3,1,1],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[3,3,1,1],[1,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,3,1,1],[2,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,2,0],[0,1,1,2],[0,3,3,3],[1,2,2,1]],[[2,0,1,1],[2,2,2,2],[2,3,2,0],[0,2,2,1]],[[1,0,1,1],[3,2,2,2],[2,3,2,0],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[3,3,2,0],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,4,2,0],[0,2,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,2,0],[0,3,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,2,0],[0,2,3,1]],[[1,0,1,1],[2,2,2,2],[2,3,2,0],[0,2,2,2]],[[2,0,1,1],[2,2,2,2],[2,3,2,0],[1,1,2,1]],[[1,0,1,1],[3,2,2,2],[2,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[3,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[2,4,2,0],[1,1,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,2,0],[2,1,2,1]],[[2,0,1,1],[2,2,2,2],[2,3,2,1],[0,2,2,0]],[[1,0,1,1],[3,2,2,2],[2,3,2,1],[0,2,2,0]],[[1,0,1,1],[2,2,2,2],[3,3,2,1],[0,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,4,2,1],[0,2,2,0]],[[1,0,1,1],[2,2,2,2],[2,3,2,1],[0,3,2,0]],[[1,0,1,1],[2,2,2,2],[2,3,2,1],[0,2,3,0]],[[2,0,1,1],[2,2,2,2],[2,3,2,1],[1,1,2,0]],[[1,0,1,1],[3,2,2,2],[2,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,2,2,2],[3,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,2,2,2],[2,4,2,1],[1,1,2,0]],[[1,0,1,1],[2,2,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,2,0],[0,0,3,2],[2,3,4,2],[1,1,1,0]],[[1,2,2,0],[0,0,3,3],[2,3,3,2],[1,1,1,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,2],[1,1,0,2]],[[1,2,2,0],[0,0,3,2],[2,3,3,3],[1,1,0,1]],[[1,2,2,0],[0,0,3,2],[2,3,4,2],[1,1,0,1]],[[1,2,2,0],[0,0,3,3],[2,3,3,2],[1,1,0,1]],[[1,2,2,0],[0,0,3,2],[2,3,3,2],[1,0,3,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,3],[1,0,2,0]],[[1,2,2,0],[0,0,3,2],[2,3,4,2],[1,0,2,0]],[[1,2,2,0],[0,0,3,3],[2,3,3,2],[1,0,2,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,2],[1,0,1,2]],[[1,2,2,0],[0,0,3,2],[2,3,3,3],[1,0,1,1]],[[1,2,2,0],[0,0,3,2],[2,3,4,2],[1,0,1,1]],[[1,2,2,0],[0,0,3,3],[2,3,3,2],[1,0,1,1]],[[1,2,2,0],[0,0,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,2,0],[0,0,3,2],[2,3,4,2],[0,2,1,0]],[[1,2,2,0],[0,0,3,3],[2,3,3,2],[0,2,1,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,2],[0,2,0,2]],[[1,2,2,0],[0,0,3,2],[2,3,3,3],[0,2,0,1]],[[1,2,2,0],[0,0,3,2],[2,3,4,2],[0,2,0,1]],[[1,2,2,0],[0,0,3,3],[2,3,3,2],[0,2,0,1]],[[2,0,1,1],[2,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,1,1],[3,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,2,2,2],[3,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,2,2,2],[2,4,3,0],[0,1,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,4,0],[0,1,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,3,0],[0,1,3,1]],[[1,0,1,1],[2,2,2,2],[2,3,3,0],[0,1,2,2]],[[2,0,1,1],[2,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,1,1],[3,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,2,2,2],[3,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,2,2,2],[2,4,3,0],[0,2,1,1]],[[1,0,1,1],[2,2,2,2],[2,3,4,0],[0,2,1,1]],[[1,0,1,1],[2,2,2,2],[2,3,3,0],[0,3,1,1]],[[2,0,1,1],[2,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,1,1],[3,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,2,2,2],[3,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,2,2,2],[2,4,3,0],[1,0,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,4,0],[1,0,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,3,0],[2,0,2,1]],[[1,0,1,1],[2,2,2,2],[2,3,3,0],[1,0,3,1]],[[1,0,1,1],[2,2,2,2],[2,3,3,0],[1,0,2,2]],[[2,0,1,1],[2,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,1,1],[3,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,2,2,2],[3,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,2,2,2],[2,4,3,0],[1,1,1,1]],[[1,0,1,1],[2,2,2,2],[2,3,4,0],[1,1,1,1]],[[1,0,1,1],[2,2,2,2],[2,3,3,0],[2,1,1,1]],[[2,0,1,1],[2,2,2,2],[2,3,3,0],[1,2,0,1]],[[1,0,1,1],[3,2,2,2],[2,3,3,0],[1,2,0,1]],[[1,0,1,1],[2,2,2,2],[3,3,3,0],[1,2,0,1]],[[1,0,1,1],[2,2,2,2],[2,4,3,0],[1,2,0,1]],[[1,0,1,1],[2,2,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,2,0],[0,0,3,2],[2,3,3,2],[0,1,3,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,3],[0,1,2,0]],[[1,2,2,0],[0,0,3,2],[2,3,4,2],[0,1,2,0]],[[1,2,2,0],[0,0,3,3],[2,3,3,2],[0,1,2,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,2],[0,1,1,2]],[[1,2,2,0],[0,0,3,2],[2,3,3,3],[0,1,1,1]],[[1,2,2,0],[0,0,3,2],[2,3,4,2],[0,1,1,1]],[[1,2,2,0],[0,0,3,3],[2,3,3,2],[0,1,1,1]],[[1,2,2,0],[0,0,3,2],[2,3,3,2],[0,0,2,2]],[[2,0,1,1],[2,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,1,1],[3,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,2,2,2],[3,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,2,2,2],[2,4,3,1],[0,1,1,1]],[[1,0,1,1],[2,2,2,2],[2,3,4,1],[0,1,1,1]],[[2,0,1,1],[2,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,1,1],[3,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,2,2,2],[3,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,2,2,2],[2,4,3,1],[0,1,2,0]],[[1,0,1,1],[2,2,2,2],[2,3,4,1],[0,1,2,0]],[[1,0,1,1],[2,2,2,2],[2,3,3,1],[0,1,3,0]],[[2,0,1,1],[2,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,1,1],[3,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,2,2,2],[3,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,2,2,2],[2,4,3,1],[0,2,0,1]],[[1,0,1,1],[2,2,2,2],[2,3,4,1],[0,2,0,1]],[[1,0,1,1],[2,2,2,2],[2,3,3,1],[0,3,0,1]],[[2,0,1,1],[2,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,1,1],[3,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,2,2,2],[3,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,2,2,2],[2,4,3,1],[0,2,1,0]],[[1,0,1,1],[2,2,2,2],[2,3,4,1],[0,2,1,0]],[[1,0,1,1],[2,2,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,3],[0,0,2,1]],[[1,2,2,0],[0,0,3,2],[2,3,4,2],[0,0,2,1]],[[1,2,2,0],[0,0,3,3],[2,3,3,2],[0,0,2,1]],[[2,0,1,1],[2,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,1,1],[3,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,1,1],[2,2,2,2],[3,3,3,1],[1,0,1,1]],[[1,0,1,1],[2,2,2,2],[2,4,3,1],[1,0,1,1]],[[1,0,1,1],[2,2,2,2],[2,3,4,1],[1,0,1,1]],[[1,0,1,1],[2,2,2,2],[2,3,3,1],[2,0,1,1]],[[2,0,1,1],[2,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[3,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,2,2,2],[3,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,2,2,2],[2,4,3,1],[1,0,2,0]],[[1,0,1,1],[2,2,2,2],[2,3,4,1],[1,0,2,0]],[[1,0,1,1],[2,2,2,2],[2,3,3,1],[2,0,2,0]],[[1,0,1,1],[2,2,2,2],[2,3,3,1],[1,0,3,0]],[[2,0,1,1],[2,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,1,1],[3,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,2,2,2],[3,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,2,2,2],[2,4,3,1],[1,1,0,1]],[[1,0,1,1],[2,2,2,2],[2,3,4,1],[1,1,0,1]],[[1,0,1,1],[2,2,2,2],[2,3,3,1],[2,1,0,1]],[[2,0,1,1],[2,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[3,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,2,2,2],[3,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,2,2,2],[2,4,3,1],[1,1,1,0]],[[1,0,1,1],[2,2,2,2],[2,3,4,1],[1,1,1,0]],[[1,0,1,1],[2,2,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,1],[1,0,2,2]],[[1,2,2,0],[0,0,3,2],[2,3,3,1],[1,0,3,1]],[[1,2,2,0],[0,0,3,2],[2,3,4,1],[1,0,2,1]],[[2,0,1,1],[2,2,2,2],[2,3,3,1],[1,2,0,0]],[[1,0,1,1],[3,2,2,2],[2,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,2,2,2],[3,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,2,2,2],[2,4,3,1],[1,2,0,0]],[[1,0,1,1],[2,2,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,1],[0,2,3,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,1],[0,3,2,0]],[[1,2,2,0],[0,0,3,2],[2,3,4,1],[0,2,2,0]],[[1,2,2,0],[0,0,3,2],[2,3,3,1],[0,1,2,2]],[[1,2,2,0],[0,0,3,2],[2,3,3,1],[0,1,3,1]],[[1,2,2,0],[0,0,3,2],[2,3,4,1],[0,1,2,1]],[[1,2,2,0],[0,0,3,2],[2,3,3,0],[0,2,2,2]],[[1,2,2,0],[0,0,3,2],[2,3,3,0],[0,2,3,1]],[[1,2,2,0],[0,0,3,2],[2,3,3,0],[0,3,2,1]],[[1,2,2,0],[0,0,3,2],[2,3,4,0],[0,2,2,1]],[[1,2,2,0],[0,0,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,2,0],[0,0,3,2],[2,3,2,2],[1,0,3,1]],[[1,2,2,0],[0,0,3,2],[2,3,2,3],[1,0,2,1]],[[1,2,2,0],[0,0,3,3],[2,3,2,2],[1,0,2,1]],[[1,2,2,0],[0,0,3,2],[2,3,2,2],[0,1,2,2]],[[1,2,2,0],[0,0,3,2],[2,3,2,2],[0,1,3,1]],[[1,2,2,0],[0,0,3,2],[2,3,2,3],[0,1,2,1]],[[1,2,2,0],[0,0,3,3],[2,3,2,2],[0,1,2,1]],[[1,2,2,0],[0,0,3,2],[2,2,3,2],[0,2,3,0]],[[1,2,2,0],[0,0,3,2],[2,2,3,2],[0,3,2,0]],[[1,2,2,0],[0,0,3,2],[2,2,3,3],[0,2,2,0]],[[1,2,2,0],[0,0,3,2],[2,2,4,2],[0,2,2,0]],[[1,2,2,0],[0,0,3,3],[2,2,3,2],[0,2,2,0]],[[1,2,2,0],[0,0,3,2],[2,2,3,2],[0,2,1,2]],[[1,2,2,0],[0,0,3,2],[2,2,3,3],[0,2,1,1]],[[1,2,2,0],[0,0,3,2],[2,2,4,2],[0,2,1,1]],[[1,2,2,0],[0,0,3,3],[2,2,3,2],[0,2,1,1]],[[1,2,2,0],[0,0,3,2],[2,2,3,1],[0,2,2,2]],[[1,2,2,0],[0,0,3,2],[2,2,3,1],[0,2,3,1]],[[1,2,2,0],[0,0,3,2],[2,2,3,1],[0,3,2,1]],[[1,2,2,0],[0,0,3,2],[2,2,4,1],[0,2,2,1]],[[1,2,2,0],[0,0,3,2],[2,2,2,2],[0,2,2,2]],[[1,2,2,0],[0,0,3,2],[2,2,2,2],[0,2,3,1]],[[1,2,2,0],[0,0,3,2],[2,2,2,2],[0,3,2,1]],[[1,2,2,0],[0,0,3,2],[2,2,2,3],[0,2,2,1]],[[1,2,2,0],[0,0,3,3],[2,2,2,2],[0,2,2,1]],[[1,2,2,0],[0,0,3,2],[2,1,3,2],[1,2,3,0]],[[1,2,2,0],[0,0,3,2],[2,1,3,2],[1,3,2,0]],[[1,2,2,0],[0,0,3,2],[2,1,3,2],[2,2,2,0]],[[1,2,2,0],[0,0,3,2],[2,1,3,3],[1,2,2,0]],[[1,2,2,0],[0,0,3,2],[2,1,4,2],[1,2,2,0]],[[1,2,2,0],[0,0,3,3],[2,1,3,2],[1,2,2,0]],[[1,2,2,0],[0,0,3,2],[2,1,3,2],[1,2,1,2]],[[1,2,2,0],[0,0,3,2],[2,1,3,3],[1,2,1,1]],[[1,2,2,0],[0,0,3,2],[2,1,4,2],[1,2,1,1]],[[1,2,2,0],[0,0,3,3],[2,1,3,2],[1,2,1,1]],[[1,2,2,0],[0,0,3,2],[2,1,3,2],[0,2,2,2]],[[1,2,2,0],[0,0,3,2],[2,1,3,2],[0,2,3,1]],[[1,2,2,0],[0,0,3,2],[2,1,3,3],[0,2,2,1]],[[1,2,2,0],[0,0,3,3],[2,1,3,2],[0,2,2,1]],[[1,2,2,0],[0,0,3,2],[2,1,3,1],[1,2,2,2]],[[1,2,2,0],[0,0,3,2],[2,1,3,1],[1,2,3,1]],[[1,2,2,0],[0,0,3,2],[2,1,3,1],[1,3,2,1]],[[1,2,2,0],[0,0,3,2],[2,1,3,1],[2,2,2,1]],[[1,2,2,0],[0,0,3,2],[2,1,4,1],[1,2,2,1]],[[1,2,2,0],[0,0,3,2],[2,1,2,2],[1,2,2,2]],[[1,2,2,0],[0,0,3,2],[2,1,2,2],[1,2,3,1]],[[1,2,2,0],[0,0,3,2],[2,1,2,2],[1,3,2,1]],[[1,2,2,0],[0,0,3,2],[2,1,2,2],[2,2,2,1]],[[1,2,2,0],[0,0,3,2],[2,1,2,3],[1,2,2,1]],[[1,2,2,0],[0,0,3,3],[2,1,2,2],[1,2,2,1]],[[1,2,2,0],[0,0,3,2],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[0,0,3,2],[2,0,3,2],[1,2,3,1]],[[1,2,2,0],[0,0,3,2],[2,0,3,3],[1,2,2,1]],[[1,2,2,0],[0,0,3,3],[2,0,3,2],[1,2,2,1]],[[1,2,2,0],[0,0,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,2,0],[0,0,3,2],[1,3,4,2],[1,2,1,0]],[[1,2,2,0],[0,0,3,3],[1,3,3,2],[1,2,1,0]],[[1,2,2,0],[0,0,3,2],[1,3,3,2],[1,2,0,2]],[[1,2,2,0],[0,0,3,2],[1,3,3,3],[1,2,0,1]],[[1,2,2,0],[0,0,3,2],[1,3,4,2],[1,2,0,1]],[[1,2,2,0],[0,0,3,3],[1,3,3,2],[1,2,0,1]],[[1,2,2,0],[0,0,3,2],[1,3,3,2],[1,1,3,0]],[[1,2,2,0],[0,0,3,2],[1,3,3,3],[1,1,2,0]],[[1,2,2,0],[0,0,3,2],[1,3,4,2],[1,1,2,0]],[[1,2,2,0],[0,0,3,3],[1,3,3,2],[1,1,2,0]],[[1,2,2,0],[0,0,3,2],[1,3,3,2],[1,1,1,2]],[[1,2,2,0],[0,0,3,2],[1,3,3,3],[1,1,1,1]],[[1,2,2,0],[0,0,3,2],[1,3,4,2],[1,1,1,1]],[[1,2,2,0],[0,0,3,3],[1,3,3,2],[1,1,1,1]],[[1,2,2,0],[0,0,3,2],[1,3,3,2],[1,0,2,2]],[[1,2,2,0],[0,0,3,2],[1,3,3,3],[1,0,2,1]],[[1,2,2,0],[0,0,3,2],[1,3,4,2],[1,0,2,1]],[[1,2,2,0],[0,0,3,3],[1,3,3,2],[1,0,2,1]],[[1,2,2,0],[0,0,3,2],[1,3,3,1],[1,2,3,0]],[[1,2,2,0],[0,0,3,2],[1,3,3,1],[1,3,2,0]],[[1,2,2,0],[0,0,3,2],[1,3,3,1],[2,2,2,0]],[[1,2,2,0],[0,0,3,2],[1,3,4,1],[1,2,2,0]],[[1,2,2,0],[0,0,3,2],[1,3,3,1],[1,1,2,2]],[[1,2,2,0],[0,0,3,2],[1,3,3,1],[1,1,3,1]],[[1,2,2,0],[0,0,3,2],[1,3,4,1],[1,1,2,1]],[[1,2,2,0],[0,0,3,2],[1,3,3,0],[1,2,2,2]],[[1,2,2,0],[0,0,3,2],[1,3,3,0],[1,2,3,1]],[[1,0,1,1],[2,2,3,0],[0,2,4,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,0],[0,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,0],[0,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,0],[0,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,0],[0,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,2,3,0],[0,4,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,0],[0,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,0],[0,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,0],[0,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,0],[0,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,2,3,0],[0,4,3,2],[1,1,2,1]],[[1,0,1,1],[2,2,3,0],[0,3,4,2],[1,1,2,1]],[[1,0,1,1],[2,2,3,0],[0,3,3,2],[1,1,3,1]],[[1,0,1,1],[2,2,3,0],[0,3,3,2],[1,1,2,2]],[[1,0,1,1],[2,2,3,0],[0,4,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,0],[0,3,4,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,0],[0,3,3,2],[2,2,1,1]],[[1,0,1,1],[2,2,3,0],[0,3,3,2],[1,3,1,1]],[[1,0,1,1],[2,2,3,0],[1,2,4,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,0],[1,2,3,2],[0,3,2,1]],[[1,0,1,1],[2,2,3,0],[1,2,3,2],[0,2,3,1]],[[1,0,1,1],[2,2,3,0],[1,2,3,2],[0,2,2,2]],[[1,0,1,1],[2,2,3,0],[1,4,2,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,0],[1,3,2,2],[0,3,2,1]],[[1,0,1,1],[2,2,3,0],[1,3,2,2],[0,2,3,1]],[[1,0,1,1],[2,2,3,0],[1,3,2,2],[0,2,2,2]],[[1,0,1,1],[2,2,3,0],[1,4,3,2],[0,1,2,1]],[[1,0,1,1],[2,2,3,0],[1,3,4,2],[0,1,2,1]],[[1,0,1,1],[2,2,3,0],[1,3,3,2],[0,1,3,1]],[[1,0,1,1],[2,2,3,0],[1,3,3,2],[0,1,2,2]],[[1,0,1,1],[2,2,3,0],[1,4,3,2],[0,2,1,1]],[[1,0,1,1],[2,2,3,0],[1,3,4,2],[0,2,1,1]],[[1,0,1,1],[2,2,3,0],[1,3,3,2],[0,3,1,1]],[[1,0,1,1],[2,2,3,0],[1,4,3,2],[1,0,2,1]],[[1,0,1,1],[2,2,3,0],[1,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,2,3,0],[1,3,3,2],[1,0,3,1]],[[1,0,1,1],[2,2,3,0],[1,3,3,2],[1,0,2,2]],[[1,2,2,0],[0,0,3,2],[1,3,3,0],[1,3,2,1]],[[1,2,2,0],[0,0,3,2],[1,3,3,0],[2,2,2,1]],[[1,2,2,0],[0,0,3,2],[1,3,4,0],[1,2,2,1]],[[1,0,1,1],[3,2,3,0],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,0],[3,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,0],[2,0,4,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,0],[2,0,3,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,0],[2,0,3,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,0],[2,0,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,2,0],[0,0,3,2],[1,3,2,2],[1,1,2,2]],[[1,2,2,0],[0,0,3,2],[1,3,2,2],[1,1,3,1]],[[1,2,2,0],[0,0,3,2],[1,3,2,3],[1,1,2,1]],[[1,2,2,0],[0,0,3,3],[1,3,2,2],[1,1,2,1]],[[1,2,2,0],[0,0,3,2],[1,2,3,2],[1,2,3,0]],[[1,2,2,0],[0,0,3,2],[1,2,3,2],[1,3,2,0]],[[1,2,2,0],[0,0,3,2],[1,2,3,2],[2,2,2,0]],[[1,2,2,0],[0,0,3,2],[1,2,3,3],[1,2,2,0]],[[1,2,2,0],[0,0,3,2],[1,2,4,2],[1,2,2,0]],[[1,2,2,0],[0,0,3,3],[1,2,3,2],[1,2,2,0]],[[1,2,2,0],[0,0,3,2],[1,2,3,2],[1,2,1,2]],[[1,2,2,0],[0,0,3,2],[1,2,3,3],[1,2,1,1]],[[1,2,2,0],[0,0,3,2],[1,2,4,2],[1,2,1,1]],[[1,2,2,0],[0,0,3,3],[1,2,3,2],[1,2,1,1]],[[1,2,2,0],[0,0,3,2],[1,2,3,1],[1,2,2,2]],[[1,2,2,0],[0,0,3,2],[1,2,3,1],[1,2,3,1]],[[1,2,2,0],[0,0,3,2],[1,2,3,1],[1,3,2,1]],[[1,2,2,0],[0,0,3,2],[1,2,3,1],[2,2,2,1]],[[1,2,2,0],[0,0,3,2],[1,2,4,1],[1,2,2,1]],[[1,2,2,0],[0,0,3,2],[1,2,2,2],[1,2,2,2]],[[1,2,2,0],[0,0,3,2],[1,2,2,2],[1,2,3,1]],[[1,2,2,0],[0,0,3,2],[1,2,2,2],[1,3,2,1]],[[1,2,2,0],[0,0,3,2],[1,2,2,2],[2,2,2,1]],[[1,2,2,0],[0,0,3,2],[1,2,2,3],[1,2,2,1]],[[1,2,2,0],[0,0,3,3],[1,2,2,2],[1,2,2,1]],[[1,2,2,0],[0,0,3,2],[1,1,3,2],[1,2,2,2]],[[1,2,2,0],[0,0,3,2],[1,1,3,2],[1,2,3,1]],[[1,2,2,0],[0,0,3,2],[1,1,3,3],[1,2,2,1]],[[1,2,2,0],[0,0,3,3],[1,1,3,2],[1,2,2,1]],[[1,2,2,0],[0,0,3,2],[0,3,3,2],[1,2,3,0]],[[1,2,2,0],[0,0,3,2],[0,3,3,2],[1,3,2,0]],[[1,2,2,0],[0,0,3,2],[0,3,3,3],[1,2,2,0]],[[1,2,2,0],[0,0,3,2],[0,3,4,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[0,1,3,3],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,1,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,1],[0,1,3,2],[1,2,2,2]],[[1,0,1,1],[2,2,3,1],[0,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[0,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,1],[0,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,2,4,1],[0,2,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[0,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,3,1],[0,2,3,1],[1,2,2,2]],[[1,0,1,1],[2,2,4,1],[0,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[0,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[0,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[0,2,3,2],[1,2,1,2]],[[1,0,1,1],[2,2,4,1],[0,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[0,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[0,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[0,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,3,1],[0,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,3,1],[0,2,3,2],[1,2,3,0]],[[1,0,1,1],[2,2,3,1],[0,4,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,1,3],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,1],[0,3,1,2],[1,2,2,2]],[[1,0,1,1],[2,2,3,1],[0,4,2,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,2,3,1],[0,3,2,1],[1,2,2,2]],[[1,0,1,1],[2,2,3,1],[0,3,2,3],[1,1,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,2,2],[1,1,3,1]],[[1,0,1,1],[2,2,3,1],[0,3,2,2],[1,1,2,2]],[[1,0,1,1],[2,2,3,1],[0,4,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[0,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,2,3,1],[0,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,2,3,1],[0,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,2,3,1],[0,4,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,0],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,0],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,0],[1,2,3,1]],[[1,0,1,1],[2,2,4,1],[0,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,2,3,1],[0,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,4,1],[1,1,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,1],[1,1,3,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,1],[1,1,2,2]],[[1,0,1,1],[2,2,4,1],[0,3,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[0,4,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[0,3,4,1],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,1],[1,3,1,1]],[[1,0,1,1],[2,2,4,1],[0,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,3],[1,0,2,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,2],[1,0,2,2]],[[1,0,1,1],[2,2,4,1],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,3,1],[0,4,3,2],[1,1,1,1]],[[1,0,1,1],[2,2,3,1],[0,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,3],[1,1,1,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,2],[1,1,1,2]],[[1,0,1,1],[2,2,4,1],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,3,1],[0,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,2,3,1],[0,3,4,2],[1,1,2,0]],[[1,0,1,1],[2,2,3,1],[0,3,3,3],[1,1,2,0]],[[1,0,1,1],[2,2,3,1],[0,3,3,2],[1,1,3,0]],[[1,0,1,1],[2,2,4,1],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,3,1],[0,4,3,2],[1,2,0,1]],[[1,0,1,1],[2,2,3,1],[0,3,4,2],[1,2,0,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,3],[1,2,0,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,2,3,1],[0,3,3,2],[1,2,0,2]],[[1,0,1,1],[2,2,4,1],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,3,1],[0,4,3,2],[1,2,1,0]],[[1,0,1,1],[2,2,3,1],[0,3,4,2],[1,2,1,0]],[[1,0,1,1],[2,2,3,1],[0,3,3,3],[1,2,1,0]],[[1,0,1,1],[2,2,3,1],[0,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,2,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,2,0],[0,0,3,3],[0,3,3,2],[1,2,2,0]],[[1,2,2,0],[0,0,3,2],[0,3,3,2],[1,2,1,2]],[[1,2,2,0],[0,0,3,2],[0,3,3,3],[1,2,1,1]],[[1,2,2,0],[0,0,3,2],[0,3,4,2],[1,2,1,1]],[[1,2,2,0],[0,0,3,3],[0,3,3,2],[1,2,1,1]],[[1,2,2,0],[0,0,3,2],[0,3,3,1],[1,2,2,2]],[[1,2,2,0],[0,0,3,2],[0,3,3,1],[1,2,3,1]],[[1,2,2,0],[0,0,3,2],[0,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[1,1,3,3],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,1,3,2],[0,2,3,1]],[[1,0,1,1],[2,2,3,1],[1,1,3,2],[0,2,2,2]],[[1,0,1,1],[2,2,3,1],[1,2,2,3],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,2,2,2],[0,3,2,1]],[[1,0,1,1],[2,2,3,1],[1,2,2,2],[0,2,3,1]],[[1,0,1,1],[2,2,3,1],[1,2,2,2],[0,2,2,2]],[[1,0,1,1],[2,2,4,1],[1,2,3,1],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,2,4,1],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,2,3,1],[0,3,2,1]],[[1,0,1,1],[2,2,3,1],[1,2,3,1],[0,2,3,1]],[[1,0,1,1],[2,2,3,1],[1,2,3,1],[0,2,2,2]],[[1,0,1,1],[2,2,4,1],[1,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,2,3,1],[1,2,4,2],[0,2,1,1]],[[1,0,1,1],[2,2,3,1],[1,2,3,3],[0,2,1,1]],[[1,0,1,1],[2,2,3,1],[1,2,3,2],[0,2,1,2]],[[1,0,1,1],[2,2,4,1],[1,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,2,3,1],[1,2,4,2],[0,2,2,0]],[[1,0,1,1],[2,2,3,1],[1,2,3,3],[0,2,2,0]],[[1,0,1,1],[2,2,3,1],[1,2,3,2],[0,3,2,0]],[[1,0,1,1],[2,2,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,2,0],[0,0,3,2],[0,3,4,1],[1,2,2,1]],[[1,2,2,0],[0,0,3,2],[0,3,2,2],[1,2,2,2]],[[1,2,2,0],[0,0,3,2],[0,3,2,2],[1,2,3,1]],[[1,2,2,0],[0,0,3,2],[0,3,2,2],[1,3,2,1]],[[1,2,2,0],[0,0,3,2],[0,3,2,3],[1,2,2,1]],[[1,2,2,0],[0,0,3,3],[0,3,2,2],[1,2,2,1]],[[1,2,2,0],[0,0,3,2],[0,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,2,3,1],[1,4,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,0,3],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,0,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,0,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,0,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,1],[1,3,0,2],[1,2,2,2]],[[1,0,1,1],[2,2,3,1],[1,4,1,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,1,1],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,1,1],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,1,1],[1,2,3,1]],[[1,0,1,1],[2,2,3,1],[1,3,1,1],[1,2,2,2]],[[1,0,1,1],[2,2,3,1],[1,4,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,1,3],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,1,2],[0,3,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,1,2],[0,2,3,1]],[[1,0,1,1],[2,2,3,1],[1,3,1,2],[0,2,2,2]],[[1,0,1,1],[2,2,3,1],[1,4,1,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[1,3,1,2],[2,2,2,0]],[[1,0,1,1],[2,2,3,1],[1,3,1,2],[1,3,2,0]],[[1,0,1,1],[2,2,3,1],[1,3,1,2],[1,2,3,0]],[[1,0,1,1],[2,2,3,1],[1,4,2,1],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,1],[0,3,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,1],[0,2,3,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,1],[0,2,2,2]],[[1,0,1,1],[2,2,3,1],[1,4,2,1],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,1],[2,2,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,1],[1,3,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,2],[0,1,2,2]],[[1,0,1,1],[2,2,3,1],[1,4,2,2],[0,2,2,0]],[[1,0,1,1],[2,2,3,1],[1,3,2,2],[0,3,2,0]],[[1,0,1,1],[2,2,3,1],[1,3,2,2],[0,2,3,0]],[[1,0,1,1],[2,2,3,1],[1,3,2,3],[1,0,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,2],[1,0,3,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,2],[1,0,2,2]],[[1,0,1,1],[2,2,3,1],[1,4,2,2],[1,2,0,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,2],[2,2,0,1]],[[1,0,1,1],[2,2,3,1],[1,3,2,2],[1,3,0,1]],[[1,0,1,1],[2,2,3,1],[1,4,2,2],[1,2,1,0]],[[1,0,1,1],[2,2,3,1],[1,3,2,2],[2,2,1,0]],[[1,0,1,1],[2,2,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,2,0],[0,0,3,2],[0,2,3,2],[1,2,3,1]],[[1,2,2,0],[0,0,3,2],[0,2,3,3],[1,2,2,1]],[[1,2,2,0],[0,0,3,3],[0,2,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,4,3,0],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,0],[0,3,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,0],[0,2,3,1]],[[1,0,1,1],[2,2,4,1],[1,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,2,3,1],[1,4,3,1],[0,1,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,1],[0,1,2,2]],[[1,0,1,1],[2,2,4,1],[1,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,3,1],[1,4,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,4,1],[0,2,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,1],[0,3,1,1]],[[1,0,1,1],[2,2,4,1],[1,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,3,1],[1,4,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,4,1],[1,0,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,1],[1,0,3,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,1],[1,0,2,2]],[[1,0,1,1],[2,2,4,1],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,3,1],[1,4,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,4,1],[1,1,1,1]],[[1,0,1,1],[2,2,4,1],[1,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,2],[0,0,2,2]],[[1,0,1,1],[2,2,4,1],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,3,1],[1,4,3,2],[0,1,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,2],[0,1,1,2]],[[1,0,1,1],[2,2,4,1],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,3,1],[1,4,3,2],[0,1,2,0]],[[1,0,1,1],[2,2,3,1],[1,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,2,3,1],[1,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,2,3,1],[1,3,3,2],[0,1,3,0]],[[1,0,1,1],[2,2,4,1],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,3,1],[1,4,3,2],[0,2,0,1]],[[1,0,1,1],[2,2,3,1],[1,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,2],[0,3,0,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,2],[0,2,0,2]],[[1,0,1,1],[2,2,4,1],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,3,1],[1,4,3,2],[0,2,1,0]],[[1,0,1,1],[2,2,3,1],[1,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,2,3,1],[1,3,3,3],[0,2,1,0]],[[1,0,1,1],[2,2,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,2,0],[0,0,3,1],[2,3,3,2],[0,2,3,0]],[[1,2,2,0],[0,0,3,1],[2,3,3,2],[0,3,2,0]],[[1,2,2,0],[0,0,3,1],[2,3,3,3],[0,2,2,0]],[[1,2,2,0],[0,0,3,1],[2,3,4,2],[0,2,2,0]],[[1,0,1,1],[2,2,4,1],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,3,1],[1,4,3,2],[1,0,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,4,2],[1,0,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,3],[1,0,1,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,2],[1,0,1,2]],[[1,0,1,1],[2,2,4,1],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,3,1],[1,4,3,2],[1,0,2,0]],[[1,0,1,1],[2,2,3,1],[1,3,4,2],[1,0,2,0]],[[1,0,1,1],[2,2,3,1],[1,3,3,3],[1,0,2,0]],[[1,0,1,1],[2,2,3,1],[1,3,3,2],[1,0,3,0]],[[1,0,1,1],[2,2,4,1],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,1],[1,4,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,1],[1,3,4,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,3],[1,1,0,1]],[[1,0,1,1],[2,2,3,1],[1,3,3,2],[1,1,0,2]],[[1,0,1,1],[2,2,4,1],[1,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,3,1],[1,4,3,2],[1,1,1,0]],[[1,0,1,1],[2,2,3,1],[1,3,4,2],[1,1,1,0]],[[1,0,1,1],[2,2,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,2,0],[0,0,3,1],[2,3,3,2],[0,2,1,2]],[[1,2,2,0],[0,0,3,1],[2,3,3,3],[0,2,1,1]],[[1,2,2,0],[0,0,3,1],[2,3,4,2],[0,2,1,1]],[[1,2,2,0],[0,0,3,1],[2,3,3,1],[0,2,2,2]],[[1,2,2,0],[0,0,3,1],[2,3,3,1],[0,2,3,1]],[[1,2,2,0],[0,0,3,1],[2,3,3,1],[0,3,2,1]],[[1,2,2,0],[0,0,3,1],[2,3,4,1],[0,2,2,1]],[[1,2,2,0],[0,0,3,1],[2,3,2,2],[0,2,2,2]],[[1,2,2,0],[0,0,3,1],[2,3,2,2],[0,2,3,1]],[[1,2,2,0],[0,0,3,1],[2,3,2,2],[0,3,2,1]],[[1,2,2,0],[0,0,3,1],[2,3,2,3],[0,2,2,1]],[[1,2,2,0],[0,0,3,1],[1,3,3,2],[1,2,3,0]],[[2,0,1,1],[2,2,3,1],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[3,2,3,1],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[3,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,0,2,3],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,0,2,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,0,2,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[2,0,2,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,1],[2,0,2,2],[1,2,2,2]],[[2,0,1,1],[2,2,3,1],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[3,2,3,1],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,4,1],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[3,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,0,4,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,0,3,1],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,0,3,1],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[2,0,3,1],[1,2,3,1]],[[1,0,1,1],[2,2,3,1],[2,0,3,1],[1,2,2,2]],[[1,0,1,1],[2,2,4,1],[2,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[2,0,4,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[2,0,3,3],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[2,0,3,2],[1,2,1,2]],[[2,0,1,1],[2,2,3,1],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[3,2,3,1],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,4,1],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[3,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[2,0,4,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[2,0,3,3],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[2,0,3,2],[2,2,2,0]],[[1,0,1,1],[2,2,3,1],[2,0,3,2],[1,3,2,0]],[[1,0,1,1],[2,2,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,2,0],[0,0,3,1],[1,3,3,2],[1,3,2,0]],[[1,2,2,0],[0,0,3,1],[1,3,3,2],[2,2,2,0]],[[1,2,2,0],[0,0,3,1],[1,3,3,3],[1,2,2,0]],[[1,2,2,0],[0,0,3,1],[1,3,4,2],[1,2,2,0]],[[1,2,2,0],[0,0,3,1],[1,3,3,2],[1,2,1,2]],[[1,2,2,0],[0,0,3,1],[1,3,3,3],[1,2,1,1]],[[1,2,2,0],[0,0,3,1],[1,3,4,2],[1,2,1,1]],[[1,2,2,0],[0,0,3,1],[1,3,3,1],[1,2,2,2]],[[1,2,2,0],[0,0,3,1],[1,3,3,1],[1,2,3,1]],[[1,2,2,0],[0,0,3,1],[1,3,3,1],[1,3,2,1]],[[2,0,1,1],[2,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[3,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[3,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,2,0,3],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,2,0,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,2,0,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[2,2,0,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,1],[2,2,0,2],[1,2,2,2]],[[2,0,1,1],[2,2,3,1],[2,2,1,1],[1,2,2,1]],[[1,0,1,1],[3,2,3,1],[2,2,1,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[3,2,1,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,2,1,1],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,2,1,1],[1,3,2,1]],[[1,0,1,1],[2,2,3,1],[2,2,1,1],[1,2,3,1]],[[1,0,1,1],[2,2,3,1],[2,2,1,1],[1,2,2,2]],[[2,0,1,1],[2,2,3,1],[2,2,1,2],[1,2,2,0]],[[1,0,1,1],[3,2,3,1],[2,2,1,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[3,2,1,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[2,2,1,2],[2,2,2,0]],[[1,0,1,1],[2,2,3,1],[2,2,1,2],[1,3,2,0]],[[1,0,1,1],[2,2,3,1],[2,2,1,2],[1,2,3,0]],[[2,0,1,1],[2,2,3,1],[2,2,2,1],[1,2,1,1]],[[1,0,1,1],[3,2,3,1],[2,2,2,1],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[3,2,2,1],[1,2,1,1]],[[1,0,1,1],[2,2,3,1],[2,2,2,1],[2,2,1,1]],[[1,0,1,1],[2,2,3,1],[2,2,2,1],[1,3,1,1]],[[2,0,1,1],[2,2,3,1],[2,2,2,2],[1,2,0,1]],[[1,0,1,1],[3,2,3,1],[2,2,2,2],[1,2,0,1]],[[1,0,1,1],[2,2,3,1],[3,2,2,2],[1,2,0,1]],[[1,0,1,1],[2,2,3,1],[2,2,2,2],[2,2,0,1]],[[1,0,1,1],[2,2,3,1],[2,2,2,2],[1,3,0,1]],[[2,0,1,1],[2,2,3,1],[2,2,2,2],[1,2,1,0]],[[1,0,1,1],[3,2,3,1],[2,2,2,2],[1,2,1,0]],[[1,0,1,1],[2,2,3,1],[3,2,2,2],[1,2,1,0]],[[1,0,1,1],[2,2,3,1],[2,2,2,2],[2,2,1,0]],[[1,0,1,1],[2,2,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,2,0],[0,0,3,1],[1,3,3,1],[2,2,2,1]],[[1,2,2,0],[0,0,3,1],[1,3,4,1],[1,2,2,1]],[[1,2,2,0],[0,0,3,1],[1,3,2,2],[1,2,2,2]],[[1,2,2,0],[0,0,3,1],[1,3,2,2],[1,2,3,1]],[[1,2,2,0],[0,0,3,1],[1,3,2,2],[1,3,2,1]],[[1,2,2,0],[0,0,3,1],[1,3,2,2],[2,2,2,1]],[[1,2,2,0],[0,0,3,1],[1,3,2,3],[1,2,2,1]],[[1,2,2,0],[0,0,3,0],[2,3,3,2],[0,2,2,2]],[[1,2,2,0],[0,0,3,0],[2,3,3,2],[0,2,3,1]],[[1,2,2,0],[0,0,3,0],[2,3,3,2],[0,3,2,1]],[[1,2,2,0],[0,0,3,0],[2,3,4,2],[0,2,2,1]],[[1,2,2,0],[0,0,3,0],[1,3,3,2],[1,2,2,2]],[[1,2,2,0],[0,0,3,0],[1,3,3,2],[1,2,3,1]],[[1,2,2,0],[0,0,3,0],[1,3,3,2],[1,3,2,1]],[[1,2,2,0],[0,0,3,0],[1,3,3,2],[2,2,2,1]],[[1,2,2,0],[0,0,3,0],[1,3,4,2],[1,2,2,1]],[[1,2,2,0],[0,0,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,2,0],[0,0,2,2],[2,3,3,2],[0,3,2,0]],[[1,2,2,0],[0,0,2,2],[2,3,3,3],[0,2,2,0]],[[1,2,2,0],[0,0,2,2],[2,3,4,2],[0,2,2,0]],[[1,2,2,0],[0,0,2,3],[2,3,3,2],[0,2,2,0]],[[1,2,2,0],[0,0,2,2],[2,3,3,2],[0,2,1,2]],[[1,2,2,0],[0,0,2,2],[2,3,3,3],[0,2,1,1]],[[1,2,2,0],[0,0,2,2],[2,3,4,2],[0,2,1,1]],[[1,2,2,0],[0,0,2,3],[2,3,3,2],[0,2,1,1]],[[1,0,1,1],[3,2,3,1],[2,3,0,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[3,3,0,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,3,0,1],[2,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,3,0,1],[1,3,2,1]],[[2,0,1,1],[2,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[3,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[3,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,4,0,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,3,0,3],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,3,0,2],[0,3,2,1]],[[1,0,1,1],[2,2,3,1],[2,3,0,2],[0,2,3,1]],[[1,0,1,1],[2,2,3,1],[2,3,0,2],[0,2,2,2]],[[2,0,1,1],[2,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,0,1,1],[3,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,2,3,1],[3,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,2,3,1],[2,4,0,2],[1,1,2,1]],[[1,0,1,1],[2,2,3,1],[2,3,0,2],[2,1,2,1]],[[1,0,1,1],[3,2,3,1],[2,3,0,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[3,3,0,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,1],[2,3,0,2],[2,2,2,0]],[[1,0,1,1],[2,2,3,1],[2,3,0,2],[1,3,2,0]],[[2,0,1,1],[2,2,3,1],[2,3,1,1],[0,2,2,1]],[[1,0,1,1],[3,2,3,1],[2,3,1,1],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[3,3,1,1],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,4,1,1],[0,2,2,1]],[[1,0,1,1],[2,2,3,1],[2,3,1,1],[0,3,2,1]],[[1,0,1,1],[2,2,3,1],[2,3,1,1],[0,2,3,1]],[[1,0,1,1],[2,2,3,1],[2,3,1,1],[0,2,2,2]],[[2,0,1,1],[2,2,3,1],[2,3,1,1],[1,1,2,1]],[[1,0,1,1],[3,2,3,1],[2,3,1,1],[1,1,2,1]],[[1,0,1,1],[2,2,3,1],[3,3,1,1],[1,1,2,1]],[[1,0,1,1],[2,2,3,1],[2,4,1,1],[1,1,2,1]],[[1,0,1,1],[2,2,3,1],[2,3,1,1],[2,1,2,1]],[[2,0,1,1],[2,2,3,1],[2,3,1,2],[0,2,2,0]],[[1,0,1,1],[3,2,3,1],[2,3,1,2],[0,2,2,0]],[[1,0,1,1],[2,2,3,1],[3,3,1,2],[0,2,2,0]],[[1,0,1,1],[2,2,3,1],[2,4,1,2],[0,2,2,0]],[[1,0,1,1],[2,2,3,1],[2,3,1,2],[0,3,2,0]],[[1,0,1,1],[2,2,3,1],[2,3,1,2],[0,2,3,0]],[[2,0,1,1],[2,2,3,1],[2,3,1,2],[1,1,2,0]],[[1,0,1,1],[3,2,3,1],[2,3,1,2],[1,1,2,0]],[[1,0,1,1],[2,2,3,1],[3,3,1,2],[1,1,2,0]],[[1,0,1,1],[2,2,3,1],[2,4,1,2],[1,1,2,0]],[[1,0,1,1],[2,2,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,2,0],[0,0,2,2],[2,3,3,1],[0,2,2,2]],[[1,2,2,0],[0,0,2,2],[2,3,3,1],[0,2,3,1]],[[1,2,2,0],[0,0,2,2],[2,3,3,1],[0,3,2,1]],[[1,2,2,0],[0,0,2,2],[2,3,4,1],[0,2,2,1]],[[2,0,1,1],[2,2,3,1],[2,3,2,1],[0,1,2,1]],[[1,0,1,1],[3,2,3,1],[2,3,2,1],[0,1,2,1]],[[1,0,1,1],[2,2,3,1],[3,3,2,1],[0,1,2,1]],[[1,0,1,1],[2,2,3,1],[2,4,2,1],[0,1,2,1]],[[2,0,1,1],[2,2,3,1],[2,3,2,1],[0,2,1,1]],[[1,0,1,1],[3,2,3,1],[2,3,2,1],[0,2,1,1]],[[1,0,1,1],[2,2,3,1],[3,3,2,1],[0,2,1,1]],[[1,0,1,1],[2,2,3,1],[2,4,2,1],[0,2,1,1]],[[1,0,1,1],[2,2,3,1],[2,3,2,1],[0,3,1,1]],[[2,0,1,1],[2,2,3,1],[2,3,2,1],[1,0,2,1]],[[1,0,1,1],[3,2,3,1],[2,3,2,1],[1,0,2,1]],[[1,0,1,1],[2,2,3,1],[3,3,2,1],[1,0,2,1]],[[1,0,1,1],[2,2,3,1],[2,4,2,1],[1,0,2,1]],[[1,0,1,1],[2,2,3,1],[2,3,2,1],[2,0,2,1]],[[2,0,1,1],[2,2,3,1],[2,3,2,1],[1,1,1,1]],[[1,0,1,1],[3,2,3,1],[2,3,2,1],[1,1,1,1]],[[1,0,1,1],[2,2,3,1],[3,3,2,1],[1,1,1,1]],[[1,0,1,1],[2,2,3,1],[2,4,2,1],[1,1,1,1]],[[1,0,1,1],[2,2,3,1],[2,3,2,1],[2,1,1,1]],[[1,0,1,1],[3,2,3,1],[2,3,2,1],[1,2,0,1]],[[1,0,1,1],[2,2,3,1],[3,3,2,1],[1,2,0,1]],[[1,0,1,1],[2,2,3,1],[2,4,2,1],[1,2,0,1]],[[1,0,1,1],[2,2,3,1],[2,3,2,1],[2,2,0,1]],[[1,2,2,0],[0,0,2,2],[2,3,2,2],[0,2,2,2]],[[1,2,2,0],[0,0,2,2],[2,3,2,2],[0,2,3,1]],[[1,2,2,0],[0,0,2,2],[2,3,2,2],[0,3,2,1]],[[1,2,2,0],[0,0,2,2],[2,3,2,3],[0,2,2,1]],[[1,2,2,0],[0,0,2,3],[2,3,2,2],[0,2,2,1]],[[2,0,1,1],[2,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,1,1],[3,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,2,3,1],[3,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,2,3,1],[2,4,2,2],[0,1,1,1]],[[2,0,1,1],[2,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,1,1],[3,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,2,3,1],[3,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,2,3,1],[2,4,2,2],[0,1,2,0]],[[2,0,1,1],[2,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,1,1],[3,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,2,3,1],[3,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,2,3,1],[2,4,2,2],[0,2,0,1]],[[1,0,1,1],[2,2,3,1],[2,3,2,2],[0,3,0,1]],[[2,0,1,1],[2,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,1,1],[3,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,2,3,1],[3,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,2,3,1],[2,4,2,2],[0,2,1,0]],[[1,0,1,1],[2,2,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,2,0],[0,0,2,2],[1,3,3,2],[1,2,3,0]],[[1,2,2,0],[0,0,2,2],[1,3,3,2],[1,3,2,0]],[[1,2,2,0],[0,0,2,2],[1,3,3,2],[2,2,2,0]],[[2,0,1,1],[2,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[3,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,2,3,1],[3,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,2,3,1],[2,4,2,2],[1,0,1,1]],[[1,0,1,1],[2,2,3,1],[2,3,2,2],[2,0,1,1]],[[2,0,1,1],[2,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,1,1],[3,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,2,3,1],[3,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,2,3,1],[2,4,2,2],[1,0,2,0]],[[1,0,1,1],[2,2,3,1],[2,3,2,2],[2,0,2,0]],[[2,0,1,1],[2,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[3,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,1],[3,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,1],[2,4,2,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,1],[2,3,2,2],[2,1,0,1]],[[2,0,1,1],[2,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,1,1],[3,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,2,3,1],[3,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,2,3,1],[2,4,2,2],[1,1,1,0]],[[1,0,1,1],[2,2,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,2,0],[0,0,2,2],[1,3,3,3],[1,2,2,0]],[[1,2,2,0],[0,0,2,2],[1,3,4,2],[1,2,2,0]],[[1,2,2,0],[0,0,2,3],[1,3,3,2],[1,2,2,0]],[[1,2,2,0],[0,0,2,2],[1,3,3,2],[1,2,1,2]],[[1,2,2,0],[0,0,2,2],[1,3,3,3],[1,2,1,1]],[[1,2,2,0],[0,0,2,2],[1,3,4,2],[1,2,1,1]],[[1,2,2,0],[0,0,2,3],[1,3,3,2],[1,2,1,1]],[[1,2,2,0],[0,0,2,2],[1,3,3,1],[1,2,2,2]],[[2,0,1,1],[2,2,3,1],[2,3,2,2],[1,2,0,0]],[[1,0,1,1],[3,2,3,1],[2,3,2,2],[1,2,0,0]],[[1,0,1,1],[2,2,3,1],[3,3,2,2],[1,2,0,0]],[[1,0,1,1],[2,2,3,1],[2,4,2,2],[1,2,0,0]],[[1,0,1,1],[2,2,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,2,0],[0,0,2,2],[1,3,3,1],[1,2,3,1]],[[1,2,2,0],[0,0,2,2],[1,3,3,1],[1,3,2,1]],[[1,2,2,0],[0,0,2,2],[1,3,3,1],[2,2,2,1]],[[1,2,2,0],[0,0,2,2],[1,3,4,1],[1,2,2,1]],[[1,2,2,0],[0,0,2,2],[1,3,2,2],[1,2,2,2]],[[1,2,2,0],[0,0,2,2],[1,3,2,2],[1,2,3,1]],[[1,2,2,0],[0,0,2,2],[1,3,2,2],[1,3,2,1]],[[1,2,2,0],[0,0,2,2],[1,3,2,2],[2,2,2,1]],[[1,2,2,0],[0,0,2,2],[1,3,2,3],[1,2,2,1]],[[1,2,2,0],[0,0,2,3],[1,3,2,2],[1,2,2,1]],[[1,2,2,0],[0,0,1,2],[2,3,3,2],[0,2,2,2]],[[1,2,2,0],[0,0,1,2],[2,3,3,2],[0,2,3,1]],[[1,2,2,0],[0,0,1,2],[2,3,3,2],[0,3,2,1]],[[1,2,2,0],[0,0,1,2],[2,3,3,3],[0,2,2,1]],[[1,2,2,0],[0,0,1,2],[1,3,3,2],[1,2,2,2]],[[1,2,2,0],[0,0,1,2],[1,3,3,2],[1,2,3,1]],[[1,2,2,0],[0,0,1,2],[1,3,3,2],[1,3,2,1]],[[1,2,2,0],[0,0,1,2],[1,3,3,2],[2,2,2,1]],[[1,2,2,0],[0,0,1,2],[1,3,3,3],[1,2,2,1]],[[2,0,1,1],[2,2,3,1],[2,3,3,2],[0,2,0,0]],[[1,0,1,1],[3,2,3,1],[2,3,3,2],[0,2,0,0]],[[1,0,1,1],[2,2,3,1],[3,3,3,2],[0,2,0,0]],[[1,0,1,1],[2,2,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,1,1],[3,3,3,2],[2,2,3,0],[1,0,0,0]],[[1,3,1,1],[2,3,3,2],[2,2,3,0],[1,0,0,0]],[[2,2,1,1],[2,3,3,2],[2,2,3,0],[1,0,0,0]],[[2,0,1,1],[2,2,3,1],[2,3,3,2],[1,1,0,0]],[[1,0,1,1],[3,2,3,1],[2,3,3,2],[1,1,0,0]],[[1,0,1,1],[2,2,3,1],[3,3,3,2],[1,1,0,0]],[[1,0,1,1],[2,2,3,1],[2,4,3,2],[1,1,0,0]],[[1,0,1,1],[2,2,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,1,1],[3,3,3,2],[2,2,2,0],[1,0,1,0]],[[1,3,1,1],[2,3,3,2],[2,2,2,0],[1,0,1,0]],[[2,2,1,1],[2,3,3,2],[2,2,2,0],[1,0,1,0]],[[1,2,1,1],[3,3,3,2],[2,2,2,0],[1,0,0,1]],[[1,3,1,1],[2,3,3,2],[2,2,2,0],[1,0,0,1]],[[2,2,1,1],[2,3,3,2],[2,2,2,0],[1,0,0,1]],[[1,0,1,2],[2,2,3,2],[0,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,3],[0,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,0,3,3],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,0,3,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[0,0,3,2],[1,2,2,2]],[[1,0,1,2],[2,2,3,2],[0,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,4,2],[0,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,3],[0,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,2,1,3],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,2,1,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,2,1,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,2],[0,2,1,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[0,2,1,2],[1,2,2,2]],[[1,0,1,2],[2,2,3,2],[0,2,2,2],[1,2,1,1]],[[1,0,1,1],[2,2,4,2],[0,2,2,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,3],[0,2,2,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[0,2,2,3],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[0,2,2,2],[1,2,1,2]],[[1,0,1,2],[2,2,3,2],[0,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,4,2],[0,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,3],[0,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[0,2,2,3],[1,2,2,0]],[[1,0,1,2],[2,2,3,2],[0,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,4,2],[0,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,3],[0,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,2,4,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,2,3,0],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,2,3,0],[1,3,2,1]],[[1,0,1,1],[2,2,3,2],[0,2,3,0],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[0,2,3,0],[1,2,2,2]],[[1,0,1,2],[2,2,3,2],[0,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,4,2],[0,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,3,3],[0,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[0,2,4,1],[1,2,1,1]],[[1,0,1,2],[2,2,3,2],[0,2,3,1],[1,2,2,0]],[[1,0,1,1],[2,2,4,2],[0,2,3,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,3],[0,2,3,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[0,2,4,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[0,2,3,1],[2,2,2,0]],[[1,0,1,1],[2,2,3,2],[0,2,3,1],[1,3,2,0]],[[1,0,1,1],[2,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,0,1,2],[2,2,3,2],[0,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,4,2],[0,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,3],[0,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,4,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,0,3],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,0,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,0,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,0,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[0,3,0,2],[1,2,2,2]],[[1,0,1,2],[2,2,3,2],[0,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,2,4,2],[0,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,2,3,3],[0,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,1,3],[1,1,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,1,2],[1,1,3,1]],[[1,0,1,1],[2,2,3,2],[0,3,1,2],[1,1,2,2]],[[1,0,1,1],[2,2,3,2],[0,4,2,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,2,0],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,2,0],[1,3,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,2,0],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[0,3,2,0],[1,2,2,2]],[[1,0,1,1],[2,2,3,2],[0,4,2,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[0,3,2,1],[2,2,2,0]],[[1,0,1,1],[2,2,3,2],[0,3,2,1],[1,3,2,0]],[[1,0,1,1],[2,2,3,2],[0,3,2,1],[1,2,3,0]],[[1,0,1,2],[2,2,3,2],[0,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,2,4,2],[0,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,2,3,3],[0,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,2,3],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,2,2],[1,0,2,2]],[[1,0,1,2],[2,2,3,2],[0,3,2,2],[1,1,1,1]],[[1,0,1,1],[2,2,4,2],[0,3,2,2],[1,1,1,1]],[[1,0,1,1],[2,2,3,3],[0,3,2,2],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[0,3,2,3],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[0,3,2,2],[1,1,1,2]],[[1,0,1,2],[2,2,3,2],[0,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,2,4,2],[0,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,2,3,3],[0,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,2,3,2],[0,3,2,3],[1,1,2,0]],[[1,0,1,2],[2,2,3,2],[0,3,2,2],[1,2,0,1]],[[1,0,1,1],[2,2,4,2],[0,3,2,2],[1,2,0,1]],[[1,0,1,1],[2,2,3,3],[0,3,2,2],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[0,3,2,3],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[0,3,2,2],[1,2,0,2]],[[1,0,1,2],[2,2,3,2],[0,3,2,2],[1,2,1,0]],[[1,0,1,1],[2,2,4,2],[0,3,2,2],[1,2,1,0]],[[1,0,1,1],[2,2,3,3],[0,3,2,2],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,0,1,2],[2,2,3,2],[0,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,2,4,2],[0,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,2,3,3],[0,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,2,3,2],[0,4,3,0],[1,1,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,4,0],[1,1,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,3,0],[1,1,3,1]],[[1,0,1,1],[2,2,3,2],[0,3,3,0],[1,1,2,2]],[[1,0,1,2],[2,2,3,2],[0,3,3,0],[1,2,1,1]],[[1,0,1,1],[2,2,4,2],[0,3,3,0],[1,2,1,1]],[[1,0,1,1],[2,2,3,3],[0,3,3,0],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[0,4,3,0],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[0,3,4,0],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[0,3,3,0],[2,2,1,1]],[[1,0,1,1],[2,2,3,2],[0,3,3,0],[1,3,1,1]],[[1,0,1,2],[2,2,3,2],[0,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,4,2],[0,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,3,3],[0,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[0,3,4,1],[1,0,2,1]],[[1,0,1,2],[2,2,3,2],[0,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,4,2],[0,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,3,3],[0,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[0,4,3,1],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[0,3,4,1],[1,1,1,1]],[[1,0,1,2],[2,2,3,2],[0,3,3,1],[1,1,2,0]],[[1,0,1,1],[2,2,4,2],[0,3,3,1],[1,1,2,0]],[[1,0,1,1],[2,2,3,3],[0,3,3,1],[1,1,2,0]],[[1,0,1,1],[2,2,3,2],[0,4,3,1],[1,1,2,0]],[[1,0,1,1],[2,2,3,2],[0,3,4,1],[1,1,2,0]],[[1,0,1,1],[2,2,3,2],[0,3,3,1],[1,1,3,0]],[[1,0,1,2],[2,2,3,2],[0,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,4,2],[0,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,3,3],[0,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[0,4,3,1],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[0,3,4,1],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[0,3,3,1],[2,2,0,1]],[[1,0,1,1],[2,2,3,2],[0,3,3,1],[1,3,0,1]],[[1,0,1,2],[2,2,3,2],[0,3,3,1],[1,2,1,0]],[[1,0,1,1],[2,2,4,2],[0,3,3,1],[1,2,1,0]],[[1,0,1,1],[2,2,3,3],[0,3,3,1],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[0,4,3,1],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[0,3,4,1],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[0,3,3,1],[2,2,1,0]],[[1,0,1,1],[2,2,3,2],[0,3,3,1],[1,3,1,0]],[[1,0,1,2],[2,2,3,2],[0,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,4,2],[0,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,3],[0,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,1,1],[3,3,3,2],[2,1,3,0],[1,1,0,0]],[[1,3,1,1],[2,3,3,2],[2,1,3,0],[1,1,0,0]],[[2,2,1,1],[2,3,3,2],[2,1,3,0],[1,1,0,0]],[[1,0,1,2],[2,2,3,2],[1,0,3,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,3],[1,0,3,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,0,3,3],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,0,3,2],[0,2,3,1]],[[1,0,1,1],[2,2,3,2],[1,0,3,2],[0,2,2,2]],[[1,0,1,2],[2,2,3,2],[1,2,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,4,2],[1,2,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,3],[1,2,1,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,2,1,3],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,2,1,2],[0,3,2,1]],[[1,0,1,1],[2,2,3,2],[1,2,1,2],[0,2,3,1]],[[1,0,1,1],[2,2,3,2],[1,2,1,2],[0,2,2,2]],[[1,0,1,2],[2,2,3,2],[1,2,2,2],[0,2,1,1]],[[1,0,1,1],[2,2,4,2],[1,2,2,2],[0,2,1,1]],[[1,0,1,1],[2,2,3,3],[1,2,2,2],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[1,2,2,3],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[1,2,2,2],[0,2,1,2]],[[1,0,1,2],[2,2,3,2],[1,2,2,2],[0,2,2,0]],[[1,0,1,1],[2,2,4,2],[1,2,2,2],[0,2,2,0]],[[1,0,1,1],[2,2,3,3],[1,2,2,2],[0,2,2,0]],[[1,0,1,1],[2,2,3,2],[1,2,2,3],[0,2,2,0]],[[1,0,1,2],[2,2,3,2],[1,2,3,0],[0,2,2,1]],[[1,0,1,1],[2,2,4,2],[1,2,3,0],[0,2,2,1]],[[1,0,1,1],[2,2,3,3],[1,2,3,0],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,2,4,0],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,2,3,0],[0,3,2,1]],[[1,0,1,1],[2,2,3,2],[1,2,3,0],[0,2,3,1]],[[1,0,1,1],[2,2,3,2],[1,2,3,0],[0,2,2,2]],[[1,0,1,2],[2,2,3,2],[1,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,4,2],[1,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,3,3],[1,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[1,2,4,1],[0,2,1,1]],[[1,0,1,2],[2,2,3,2],[1,2,3,1],[0,2,2,0]],[[1,0,1,1],[2,2,4,2],[1,2,3,1],[0,2,2,0]],[[1,0,1,1],[2,2,3,3],[1,2,3,1],[0,2,2,0]],[[1,0,1,1],[2,2,3,2],[1,2,4,1],[0,2,2,0]],[[1,0,1,1],[2,2,3,2],[1,2,3,1],[0,3,2,0]],[[1,0,1,1],[2,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,1,1],[3,3,3,2],[2,1,3,0],[0,2,0,0]],[[1,3,1,1],[2,3,3,2],[2,1,3,0],[0,2,0,0]],[[2,2,1,1],[2,3,3,2],[2,1,3,0],[0,2,0,0]],[[1,0,1,1],[2,2,3,2],[1,4,0,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,0,1],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,0,1],[1,3,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,0,1],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[1,3,0,1],[1,2,2,2]],[[1,0,1,2],[2,2,3,2],[1,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,2,4,2],[1,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,3],[1,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,4,0,2],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,0,3],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,0,2],[0,3,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,0,2],[0,2,3,1]],[[1,0,1,1],[2,2,3,2],[1,3,0,2],[0,2,2,2]],[[1,0,1,1],[2,2,3,2],[1,4,0,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,0,2],[2,2,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,0,2],[1,3,1,1]],[[1,0,1,1],[2,2,3,2],[1,4,0,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,0,2],[2,2,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,0,2],[1,3,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,0,2],[1,2,3,0]],[[1,0,1,1],[2,2,3,2],[1,4,1,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,0],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,0],[1,3,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,0],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,0],[1,2,2,2]],[[1,0,1,1],[2,2,3,2],[1,4,1,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,1,1],[2,2,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,1,1],[1,3,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,1,1],[1,2,3,0]],[[1,0,1,2],[2,2,3,2],[1,3,1,2],[0,1,2,1]],[[1,0,1,1],[2,2,4,2],[1,3,1,2],[0,1,2,1]],[[1,0,1,1],[2,2,3,3],[1,3,1,2],[0,1,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,3],[0,1,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,2],[0,1,3,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,2],[0,1,2,2]],[[1,0,1,2],[2,2,3,2],[1,3,1,2],[1,0,2,1]],[[1,0,1,1],[2,2,4,2],[1,3,1,2],[1,0,2,1]],[[1,0,1,1],[2,2,3,3],[1,3,1,2],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,3],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,2],[1,0,3,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,2],[1,0,2,2]],[[1,0,1,1],[2,2,3,2],[1,4,1,2],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,2],[2,2,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,1,2],[1,3,0,1]],[[1,0,1,1],[2,2,3,2],[1,4,1,2],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[1,3,1,2],[2,2,1,0]],[[1,0,1,1],[2,2,3,2],[1,3,1,2],[1,3,1,0]],[[1,0,1,1],[2,2,3,2],[1,4,2,0],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,0],[0,3,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,0],[0,2,3,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,0],[0,2,2,2]],[[1,0,1,1],[2,2,3,2],[1,4,2,0],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,0],[2,2,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,0],[1,3,1,1]],[[1,0,1,1],[2,2,3,2],[1,4,2,1],[0,2,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,2,1],[0,3,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,2,1],[0,2,3,0]],[[1,0,1,1],[2,2,3,2],[1,4,2,1],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,1],[2,2,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,1],[1,3,0,1]],[[1,0,1,1],[2,2,3,2],[1,4,2,1],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[1,3,2,1],[2,2,1,0]],[[1,0,1,1],[2,2,3,2],[1,3,2,1],[1,3,1,0]],[[1,0,1,2],[2,2,3,2],[1,3,2,2],[0,0,2,1]],[[1,0,1,1],[2,2,4,2],[1,3,2,2],[0,0,2,1]],[[1,0,1,1],[2,2,3,3],[1,3,2,2],[0,0,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,3],[0,0,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,2],[0,0,2,2]],[[1,0,1,2],[2,2,3,2],[1,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,2,4,2],[1,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,2,3,3],[1,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,3],[0,1,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,2],[0,1,1,2]],[[1,0,1,2],[2,2,3,2],[1,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,2,4,2],[1,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,2,3,3],[1,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,2,3],[0,1,2,0]],[[1,0,1,2],[2,2,3,2],[1,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,2,4,2],[1,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,2,3,3],[1,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,3],[0,2,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,2],[0,2,0,2]],[[1,0,1,2],[2,2,3,2],[1,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,2,4,2],[1,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,2,3,3],[1,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,0,1,2],[2,2,3,2],[1,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,2,4,2],[1,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,2,3,3],[1,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,3],[1,0,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,2],[1,0,1,2]],[[1,0,1,2],[2,2,3,2],[1,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,2,4,2],[1,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,2,3,3],[1,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,2,3],[1,0,2,0]],[[1,0,1,2],[2,2,3,2],[1,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,2,4,2],[1,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,3],[1,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,3],[1,1,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,2,2],[1,1,0,2]],[[1,0,1,2],[2,2,3,2],[1,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,2,4,2],[1,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,2,3,3],[1,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,1,1],[3,3,3,2],[2,1,2,0],[1,2,0,0]],[[1,3,1,1],[2,3,3,2],[2,1,2,0],[1,2,0,0]],[[2,2,1,1],[2,3,3,2],[2,1,2,0],[1,2,0,0]],[[1,2,1,1],[3,3,3,2],[2,1,2,0],[1,1,1,0]],[[1,3,1,1],[2,3,3,2],[2,1,2,0],[1,1,1,0]],[[2,2,1,1],[2,3,3,2],[2,1,2,0],[1,1,1,0]],[[1,2,1,1],[3,3,3,2],[2,1,2,0],[1,1,0,1]],[[1,3,1,1],[2,3,3,2],[2,1,2,0],[1,1,0,1]],[[2,2,1,1],[2,3,3,2],[2,1,2,0],[1,1,0,1]],[[1,2,1,1],[3,3,3,2],[2,1,2,0],[1,0,2,0]],[[1,3,1,1],[2,3,3,2],[2,1,2,0],[1,0,2,0]],[[2,2,1,1],[2,3,3,2],[2,1,2,0],[1,0,2,0]],[[1,2,1,1],[3,3,3,2],[2,1,2,0],[1,0,1,1]],[[1,3,1,1],[2,3,3,2],[2,1,2,0],[1,0,1,1]],[[2,2,1,1],[2,3,3,2],[2,1,2,0],[1,0,1,1]],[[1,0,1,2],[2,2,3,2],[1,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,2,4,2],[1,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,2,3,3],[1,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,2,3,2],[1,4,3,0],[0,1,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,4,0],[0,1,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,3,0],[0,1,3,1]],[[1,0,1,1],[2,2,3,2],[1,3,3,0],[0,1,2,2]],[[1,0,1,2],[2,2,3,2],[1,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,2,4,2],[1,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,2,3,3],[1,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[1,4,3,0],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,4,0],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,3,0],[0,3,1,1]],[[1,0,1,2],[2,2,3,2],[1,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,2,4,2],[1,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,2,3,3],[1,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[1,4,3,0],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,4,0],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,3,0],[1,0,3,1]],[[1,0,1,1],[2,2,3,2],[1,3,3,0],[1,0,2,2]],[[1,0,1,2],[2,2,3,2],[1,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,2,4,2],[1,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,2,3,3],[1,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[1,4,3,0],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,4,0],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[1,4,3,0],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[1,3,3,0],[2,2,1,0]],[[1,0,1,1],[2,2,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,1,1],[3,3,3,2],[2,1,2,0],[0,2,1,0]],[[1,3,1,1],[2,3,3,2],[2,1,2,0],[0,2,1,0]],[[2,2,1,1],[2,3,3,2],[2,1,2,0],[0,2,1,0]],[[1,2,1,1],[3,3,3,2],[2,1,2,0],[0,2,0,1]],[[1,3,1,1],[2,3,3,2],[2,1,2,0],[0,2,0,1]],[[1,0,1,2],[2,2,3,2],[1,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,2,4,2],[1,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,2,3,3],[1,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,2,3,2],[1,3,4,1],[0,0,2,1]],[[1,0,1,2],[2,2,3,2],[1,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,2,4,2],[1,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,2,3,3],[1,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,2,3,2],[1,4,3,1],[0,1,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,4,1],[0,1,1,1]],[[1,0,1,2],[2,2,3,2],[1,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,2,4,2],[1,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,2,3,3],[1,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,2,3,2],[1,4,3,1],[0,1,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,4,1],[0,1,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,3,1],[0,1,3,0]],[[1,0,1,2],[2,2,3,2],[1,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,2,4,2],[1,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,2,3,3],[1,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,2,3,2],[1,4,3,1],[0,2,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,4,1],[0,2,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,3,1],[0,3,0,1]],[[1,0,1,2],[2,2,3,2],[1,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,2,4,2],[1,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,2,3,3],[1,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[1,4,3,1],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[1,3,4,1],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[1,3,3,1],[0,3,1,0]],[[2,2,1,1],[2,3,3,2],[2,1,2,0],[0,2,0,1]],[[1,2,1,1],[3,3,3,2],[2,1,2,0],[0,1,2,0]],[[1,3,1,1],[2,3,3,2],[2,1,2,0],[0,1,2,0]],[[2,2,1,1],[2,3,3,2],[2,1,2,0],[0,1,2,0]],[[1,2,1,1],[3,3,3,2],[2,1,2,0],[0,1,1,1]],[[1,0,1,2],[2,2,3,2],[1,3,3,1],[1,0,1,1]],[[1,0,1,1],[2,2,4,2],[1,3,3,1],[1,0,1,1]],[[1,0,1,1],[2,2,3,3],[1,3,3,1],[1,0,1,1]],[[1,0,1,1],[2,2,3,2],[1,4,3,1],[1,0,1,1]],[[1,0,1,1],[2,2,3,2],[1,3,4,1],[1,0,1,1]],[[1,0,1,2],[2,2,3,2],[1,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,2,4,2],[1,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,2,3,3],[1,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[1,4,3,1],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,4,1],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[1,3,3,1],[1,0,3,0]],[[1,0,1,2],[2,2,3,2],[1,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,2,4,2],[1,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,2,3,3],[1,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,2,3,2],[1,4,3,1],[1,1,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,4,1],[1,1,0,1]],[[1,0,1,2],[2,2,3,2],[1,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,2,4,2],[1,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,2,3,3],[1,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[1,4,3,1],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,3,1,1],[2,3,3,2],[2,1,2,0],[0,1,1,1]],[[2,2,1,1],[2,3,3,2],[2,1,2,0],[0,1,1,1]],[[1,0,1,2],[2,2,3,2],[1,3,3,2],[0,1,0,1]],[[1,0,1,1],[2,2,4,2],[1,3,3,2],[0,1,0,1]],[[1,0,1,1],[2,2,3,3],[1,3,3,2],[0,1,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,1,1],[3,3,3,2],[2,1,1,0],[1,1,2,0]],[[1,3,1,1],[2,3,3,2],[2,1,1,0],[1,1,2,0]],[[2,2,1,1],[2,3,3,2],[2,1,1,0],[1,1,2,0]],[[1,2,1,1],[3,3,3,2],[2,1,1,0],[0,2,2,0]],[[1,3,1,1],[2,3,3,2],[2,1,1,0],[0,2,2,0]],[[2,2,1,1],[2,3,3,2],[2,1,1,0],[0,2,2,0]],[[1,0,1,2],[2,2,3,2],[1,3,3,2],[1,0,0,1]],[[1,0,1,1],[2,2,4,2],[1,3,3,2],[1,0,0,1]],[[1,0,1,1],[2,2,3,3],[1,3,3,2],[1,0,0,1]],[[1,0,1,1],[2,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,1,1],[2,3,3,2],[2,0,3,3],[0,0,0,1]],[[1,2,1,1],[2,3,3,3],[2,0,3,2],[0,0,0,1]],[[1,2,1,1],[2,3,4,2],[2,0,3,2],[0,0,0,1]],[[1,2,1,2],[2,3,3,2],[2,0,3,2],[0,0,0,1]],[[2,0,1,1],[2,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,2],[2,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[3,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,4,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,3],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[3,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,0,1,3],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,0,1,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,0,1,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,2],[2,0,1,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[2,0,1,2],[1,2,2,2]],[[1,0,1,2],[2,2,3,2],[2,0,2,2],[1,2,1,1]],[[1,0,1,1],[2,2,4,2],[2,0,2,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,3],[2,0,2,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[2,0,2,3],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[2,0,2,2],[1,2,1,2]],[[1,0,1,2],[2,2,3,2],[2,0,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,4,2],[2,0,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,3],[2,0,2,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,0,2,3],[1,2,2,0]],[[2,0,1,1],[2,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,0,1,2],[2,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,0,1,1],[3,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,4,2],[2,0,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,3],[2,0,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[3,0,3,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,0,4,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,0,3,0],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,0,3,0],[1,3,2,1]],[[1,0,1,1],[2,2,3,2],[2,0,3,0],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[2,0,3,0],[1,2,2,2]],[[1,0,1,2],[2,2,3,2],[2,0,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,4,2],[2,0,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,3,3],[2,0,3,1],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[2,0,4,1],[1,2,1,1]],[[2,0,1,1],[2,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,0,1,2],[2,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,0,1,1],[3,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,0,1,1],[2,2,4,2],[2,0,3,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,3],[2,0,3,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[3,0,3,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,0,4,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,0,3,1],[2,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,0,3,1],[1,3,2,0]],[[1,0,1,1],[2,2,3,2],[2,0,3,1],[1,2,3,0]],[[2,0,1,1],[2,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,2],[2,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[3,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,4,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,3],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[3,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,1,0,3],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,1,0,2],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,1,0,2],[1,3,2,1]],[[1,0,1,1],[2,2,3,2],[2,1,0,2],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,1],[2,3,3,3],[2,0,3,1],[0,0,2,0]],[[1,2,1,1],[2,3,4,2],[2,0,3,1],[0,0,2,0]],[[1,2,1,2],[2,3,3,2],[2,0,3,1],[0,0,2,0]],[[1,2,1,1],[2,3,3,3],[2,0,3,1],[0,0,1,1]],[[1,2,1,1],[2,3,4,2],[2,0,3,1],[0,0,1,1]],[[1,2,1,2],[2,3,3,2],[2,0,3,1],[0,0,1,1]],[[1,2,1,1],[3,3,3,2],[2,0,3,0],[1,1,1,0]],[[1,3,1,1],[2,3,3,2],[2,0,3,0],[1,1,1,0]],[[2,2,1,1],[2,3,3,2],[2,0,3,0],[1,1,1,0]],[[1,2,1,1],[3,3,3,2],[2,0,3,0],[1,1,0,1]],[[1,3,1,1],[2,3,3,2],[2,0,3,0],[1,1,0,1]],[[2,2,1,1],[2,3,3,2],[2,0,3,0],[1,1,0,1]],[[1,2,1,1],[3,3,3,2],[2,0,3,0],[1,0,2,0]],[[1,3,1,1],[2,3,3,2],[2,0,3,0],[1,0,2,0]],[[2,2,1,1],[2,3,3,2],[2,0,3,0],[1,0,2,0]],[[1,2,1,1],[3,3,3,2],[2,0,3,0],[1,0,1,1]],[[1,3,1,1],[2,3,3,2],[2,0,3,0],[1,0,1,1]],[[2,2,1,1],[2,3,3,2],[2,0,3,0],[1,0,1,1]],[[2,0,1,1],[2,2,3,2],[2,2,0,1],[1,2,2,1]],[[1,0,1,1],[3,2,3,2],[2,2,0,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[3,2,0,1],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,2,0,1],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,2,0,1],[1,3,2,1]],[[1,0,1,1],[2,2,3,2],[2,2,0,1],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[2,2,0,1],[1,2,2,2]],[[2,0,1,1],[2,2,3,2],[2,2,0,2],[1,2,1,1]],[[1,0,1,1],[3,2,3,2],[2,2,0,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[3,2,0,2],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[2,2,0,2],[2,2,1,1]],[[1,0,1,1],[2,2,3,2],[2,2,0,2],[1,3,1,1]],[[2,0,1,1],[2,2,3,2],[2,2,0,2],[1,2,2,0]],[[1,0,1,1],[3,2,3,2],[2,2,0,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[3,2,0,2],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,2,0,2],[2,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,2,0,2],[1,3,2,0]],[[1,0,1,1],[2,2,3,2],[2,2,0,2],[1,2,3,0]],[[2,0,1,1],[2,2,3,2],[2,2,1,0],[1,2,2,1]],[[1,0,1,1],[3,2,3,2],[2,2,1,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[3,2,1,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,2,1,0],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,2,1,0],[1,3,2,1]],[[1,0,1,1],[2,2,3,2],[2,2,1,0],[1,2,3,1]],[[1,0,1,1],[2,2,3,2],[2,2,1,0],[1,2,2,2]],[[2,0,1,1],[2,2,3,2],[2,2,1,1],[1,2,2,0]],[[1,0,1,1],[3,2,3,2],[2,2,1,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[3,2,1,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,2,1,1],[2,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,2,1,1],[1,3,2,0]],[[1,0,1,1],[2,2,3,2],[2,2,1,1],[1,2,3,0]],[[2,0,1,1],[2,2,3,2],[2,2,1,2],[1,2,0,1]],[[1,0,1,1],[3,2,3,2],[2,2,1,2],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[3,2,1,2],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[2,2,1,2],[2,2,0,1]],[[1,0,1,1],[2,2,3,2],[2,2,1,2],[1,3,0,1]],[[2,0,1,1],[2,2,3,2],[2,2,1,2],[1,2,1,0]],[[1,0,1,1],[3,2,3,2],[2,2,1,2],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[3,2,1,2],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,2,1,2],[2,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,1,1],[3,3,3,2],[2,0,3,0],[0,2,1,0]],[[1,3,1,1],[2,3,3,2],[2,0,3,0],[0,2,1,0]],[[2,0,1,1],[2,2,3,2],[2,2,2,0],[1,2,1,1]],[[1,0,1,1],[3,2,3,2],[2,2,2,0],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[3,2,2,0],[1,2,1,1]],[[1,0,1,1],[2,2,3,2],[2,2,2,0],[2,2,1,1]],[[1,0,1,1],[2,2,3,2],[2,2,2,0],[1,3,1,1]],[[2,0,1,1],[2,2,3,2],[2,2,2,1],[1,2,0,1]],[[1,0,1,1],[3,2,3,2],[2,2,2,1],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[3,2,2,1],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[2,2,2,1],[2,2,0,1]],[[1,0,1,1],[2,2,3,2],[2,2,2,1],[1,3,0,1]],[[2,0,1,1],[2,2,3,2],[2,2,2,1],[1,2,1,0]],[[1,0,1,1],[3,2,3,2],[2,2,2,1],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[3,2,2,1],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,2,2,1],[2,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,2,2,1],[1,3,1,0]],[[2,2,1,1],[2,3,3,2],[2,0,3,0],[0,2,1,0]],[[1,2,1,1],[3,3,3,2],[2,0,3,0],[0,2,0,1]],[[1,3,1,1],[2,3,3,2],[2,0,3,0],[0,2,0,1]],[[2,2,1,1],[2,3,3,2],[2,0,3,0],[0,2,0,1]],[[1,2,1,1],[3,3,3,2],[2,0,3,0],[0,1,2,0]],[[1,3,1,1],[2,3,3,2],[2,0,3,0],[0,1,2,0]],[[2,2,1,1],[2,3,3,2],[2,0,3,0],[0,1,2,0]],[[1,2,1,1],[3,3,3,2],[2,0,3,0],[0,1,1,1]],[[1,3,1,1],[2,3,3,2],[2,0,3,0],[0,1,1,1]],[[2,2,1,1],[2,3,3,2],[2,0,3,0],[0,1,1,1]],[[2,0,1,1],[2,2,3,2],[2,2,3,0],[1,2,1,0]],[[1,0,1,1],[3,2,3,2],[2,2,3,0],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[3,2,3,0],[1,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,2,3,0],[2,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,1,1],[2,3,3,3],[2,0,2,2],[0,0,2,0]],[[1,2,1,1],[2,3,4,2],[2,0,2,2],[0,0,2,0]],[[1,2,1,2],[2,3,3,2],[2,0,2,2],[0,0,2,0]],[[1,2,1,1],[2,3,3,2],[2,0,2,3],[0,0,1,1]],[[1,2,1,1],[2,3,3,3],[2,0,2,2],[0,0,1,1]],[[1,2,1,1],[2,3,4,2],[2,0,2,2],[0,0,1,1]],[[1,2,1,2],[2,3,3,2],[2,0,2,2],[0,0,1,1]],[[1,2,1,1],[3,3,3,2],[2,0,2,0],[1,2,1,0]],[[1,3,1,1],[2,3,3,2],[2,0,2,0],[1,2,1,0]],[[2,2,1,1],[2,3,3,2],[2,0,2,0],[1,2,1,0]],[[1,2,1,1],[3,3,3,2],[2,0,2,0],[1,2,0,1]],[[1,3,1,1],[2,3,3,2],[2,0,2,0],[1,2,0,1]],[[2,2,1,1],[2,3,3,2],[2,0,2,0],[1,2,0,1]],[[1,2,1,1],[3,3,3,2],[2,0,1,0],[1,2,2,0]],[[1,3,1,1],[2,3,3,2],[2,0,1,0],[1,2,2,0]],[[2,2,1,1],[2,3,3,2],[2,0,1,0],[1,2,2,0]],[[2,0,1,1],[2,2,3,2],[2,3,0,0],[1,2,2,1]],[[1,0,1,1],[3,2,3,2],[2,3,0,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[3,3,0,0],[1,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,3,0,0],[2,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,3,0,0],[1,3,2,1]],[[2,0,1,1],[2,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,1,1],[3,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[3,3,0,1],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,4,0,1],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,3,0,1],[0,3,2,1]],[[1,0,1,1],[2,2,3,2],[2,3,0,1],[0,2,3,1]],[[1,0,1,1],[2,2,3,2],[2,3,0,1],[0,2,2,2]],[[2,0,1,1],[2,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,0,1,1],[3,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,0,1,1],[2,2,3,2],[3,3,0,1],[1,1,2,1]],[[1,0,1,1],[2,2,3,2],[2,4,0,1],[1,1,2,1]],[[1,0,1,1],[2,2,3,2],[2,3,0,1],[2,1,2,1]],[[2,0,1,1],[2,2,3,2],[2,3,0,1],[1,2,2,0]],[[1,0,1,1],[3,2,3,2],[2,3,0,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[3,3,0,1],[1,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,3,0,1],[2,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,3,0,1],[1,3,2,0]],[[2,0,1,1],[2,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,1,1],[3,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,1,1],[2,2,3,2],[3,3,0,2],[0,1,2,1]],[[1,0,1,1],[2,2,3,2],[2,4,0,2],[0,1,2,1]],[[2,0,1,1],[2,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,0,1,1],[3,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[3,3,0,2],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[2,4,0,2],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[2,3,0,2],[0,3,1,1]],[[2,0,1,1],[2,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,0,1,1],[3,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,0,1,1],[2,2,3,2],[3,3,0,2],[0,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,4,0,2],[0,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,3,0,2],[0,3,2,0]],[[1,0,1,1],[2,2,3,2],[2,3,0,2],[0,2,3,0]],[[2,0,1,1],[2,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,1,1],[3,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[3,3,0,2],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[2,4,0,2],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[2,3,0,2],[2,0,2,1]],[[2,0,1,1],[2,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,0,1,1],[3,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[3,3,0,2],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[2,4,0,2],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[2,3,0,2],[2,1,1,1]],[[2,0,1,1],[2,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,0,1,1],[3,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,0,1,1],[2,2,3,2],[3,3,0,2],[1,1,2,0]],[[1,0,1,1],[2,2,3,2],[2,4,0,2],[1,1,2,0]],[[1,0,1,1],[2,2,3,2],[2,3,0,2],[2,1,2,0]],[[2,0,1,1],[2,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,1,1],[3,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[3,3,1,0],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,4,1,0],[0,2,2,1]],[[1,0,1,1],[2,2,3,2],[2,3,1,0],[0,3,2,1]],[[1,0,1,1],[2,2,3,2],[2,3,1,0],[0,2,3,1]],[[1,0,1,1],[2,2,3,2],[2,3,1,0],[0,2,2,2]],[[2,0,1,1],[2,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,1,1],[3,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,1,1],[2,2,3,2],[3,3,1,0],[1,1,2,1]],[[1,0,1,1],[2,2,3,2],[2,4,1,0],[1,1,2,1]],[[1,0,1,1],[2,2,3,2],[2,3,1,0],[2,1,2,1]],[[2,0,1,1],[2,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,1,1],[3,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,1,1],[2,2,3,2],[3,3,1,1],[0,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,4,1,1],[0,2,2,0]],[[1,0,1,1],[2,2,3,2],[2,3,1,1],[0,3,2,0]],[[1,0,1,1],[2,2,3,2],[2,3,1,1],[0,2,3,0]],[[2,0,1,1],[2,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,1,1],[3,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,1,1],[2,2,3,2],[3,3,1,1],[1,1,2,0]],[[1,0,1,1],[2,2,3,2],[2,4,1,1],[1,1,2,0]],[[1,0,1,1],[2,2,3,2],[2,3,1,1],[2,1,2,0]],[[2,0,1,1],[2,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,1,1],[3,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,1,1],[2,2,3,2],[3,3,1,2],[0,1,1,1]],[[1,0,1,1],[2,2,3,2],[2,4,1,2],[0,1,1,1]],[[2,0,1,1],[2,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,0,1,1],[3,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,0,1,1],[2,2,3,2],[3,3,1,2],[0,1,2,0]],[[1,0,1,1],[2,2,3,2],[2,4,1,2],[0,1,2,0]],[[2,0,1,1],[2,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,1,1],[3,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,1,1],[2,2,3,2],[3,3,1,2],[0,2,0,1]],[[1,0,1,1],[2,2,3,2],[2,4,1,2],[0,2,0,1]],[[1,0,1,1],[2,2,3,2],[2,3,1,2],[0,3,0,1]],[[2,0,1,1],[2,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,0,1,1],[3,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[3,3,1,2],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,4,1,2],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,3,1,2],[0,3,1,0]],[[2,0,1,1],[2,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,0,1,1],[3,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,0,1,1],[2,2,3,2],[3,3,1,2],[1,0,1,1]],[[1,0,1,1],[2,2,3,2],[2,4,1,2],[1,0,1,1]],[[1,0,1,1],[2,2,3,2],[2,3,1,2],[2,0,1,1]],[[2,0,1,1],[2,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,0,1,1],[3,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[3,3,1,2],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[2,4,1,2],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[2,3,1,2],[2,0,2,0]],[[2,0,1,1],[2,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,1,1],[3,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,2],[3,3,1,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,2],[2,4,1,2],[1,1,0,1]],[[1,0,1,1],[2,2,3,2],[2,3,1,2],[2,1,0,1]],[[2,0,1,1],[2,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,0,1,1],[3,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[3,3,1,2],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[2,4,1,2],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[2,3,1,2],[2,1,1,0]],[[2,0,1,1],[2,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,0,1,1],[3,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,0,1,1],[2,2,3,2],[3,3,1,2],[1,2,0,0]],[[1,0,1,1],[2,2,3,2],[2,4,1,2],[1,2,0,0]],[[1,0,1,1],[2,2,3,2],[2,3,1,2],[2,2,0,0]],[[2,0,1,1],[2,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,1,1],[3,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,1,1],[2,2,3,2],[3,3,2,0],[0,1,2,1]],[[1,0,1,1],[2,2,3,2],[2,4,2,0],[0,1,2,1]],[[2,0,1,1],[2,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,1,1],[3,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[3,3,2,0],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[2,4,2,0],[0,2,1,1]],[[1,0,1,1],[2,2,3,2],[2,3,2,0],[0,3,1,1]],[[2,0,1,1],[2,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,1,1],[3,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[3,3,2,0],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[2,4,2,0],[1,0,2,1]],[[1,0,1,1],[2,2,3,2],[2,3,2,0],[2,0,2,1]],[[2,0,1,1],[2,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,0,1,1],[3,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[3,3,2,0],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[2,4,2,0],[1,1,1,1]],[[1,0,1,1],[2,2,3,2],[2,3,2,0],[2,1,1,1]],[[2,0,1,1],[2,2,3,2],[2,3,2,0],[1,2,0,1]],[[1,0,1,1],[3,2,3,2],[2,3,2,0],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[3,3,2,0],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[2,4,2,0],[1,2,0,1]],[[1,0,1,1],[2,2,3,2],[2,3,2,0],[2,2,0,1]],[[2,0,1,1],[2,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,1,1],[3,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,1,1],[2,2,3,2],[3,3,2,1],[0,1,1,1]],[[1,0,1,1],[2,2,3,2],[2,4,2,1],[0,1,1,1]],[[2,0,1,1],[2,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,0,1,1],[3,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,0,1,1],[2,2,3,2],[3,3,2,1],[0,1,2,0]],[[1,0,1,1],[2,2,3,2],[2,4,2,1],[0,1,2,0]],[[2,0,1,1],[2,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,0,1,1],[3,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,0,1,1],[2,2,3,2],[3,3,2,1],[0,2,0,1]],[[1,0,1,1],[2,2,3,2],[2,4,2,1],[0,2,0,1]],[[1,0,1,1],[2,2,3,2],[2,3,2,1],[0,3,0,1]],[[2,0,1,1],[2,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,0,1,1],[3,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[3,3,2,1],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,4,2,1],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,3,2,1],[0,3,1,0]],[[2,0,1,1],[2,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,0,1,1],[3,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,0,1,1],[2,2,3,2],[3,3,2,1],[1,0,1,1]],[[1,0,1,1],[2,2,3,2],[2,4,2,1],[1,0,1,1]],[[1,0,1,1],[2,2,3,2],[2,3,2,1],[2,0,1,1]],[[2,0,1,1],[2,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,0,1,1],[3,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[3,3,2,1],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[2,4,2,1],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[2,3,2,1],[2,0,2,0]],[[2,0,1,1],[2,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,0,1,1],[3,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,0,1,1],[2,2,3,2],[3,3,2,1],[1,1,0,1]],[[1,0,1,1],[2,2,3,2],[2,4,2,1],[1,1,0,1]],[[1,0,1,1],[2,2,3,2],[2,3,2,1],[2,1,0,1]],[[2,0,1,1],[2,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,0,1,1],[3,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[3,3,2,1],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[2,4,2,1],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[2,3,2,1],[2,1,1,0]],[[2,0,1,1],[2,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,0,1,1],[3,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,0,1,1],[2,2,3,2],[3,3,2,1],[1,2,0,0]],[[1,0,1,1],[2,2,3,2],[2,4,2,1],[1,2,0,0]],[[1,0,1,1],[2,2,3,2],[2,3,2,1],[2,2,0,0]],[[2,0,1,1],[2,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,1,1],[3,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,1,1],[2,2,3,2],[3,3,3,0],[0,1,2,0]],[[1,0,1,1],[2,2,3,2],[2,4,3,0],[0,1,2,0]],[[2,0,1,1],[2,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,1,1],[3,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[3,3,3,0],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,4,3,0],[0,2,1,0]],[[1,0,1,1],[2,2,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,1,1],[2,3,3,2],[1,0,3,3],[1,0,0,1]],[[1,2,1,1],[2,3,3,3],[1,0,3,2],[1,0,0,1]],[[1,2,1,1],[2,3,4,2],[1,0,3,2],[1,0,0,1]],[[1,2,1,2],[2,3,3,2],[1,0,3,2],[1,0,0,1]],[[2,0,1,1],[2,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,1,1],[3,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[3,3,3,0],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[2,4,3,0],[1,0,2,0]],[[1,0,1,1],[2,2,3,2],[2,3,3,0],[2,0,2,0]],[[2,0,1,1],[2,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,1,1],[3,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[3,3,3,0],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[2,4,3,0],[1,1,1,0]],[[1,0,1,1],[2,2,3,2],[2,3,3,0],[2,1,1,0]],[[2,0,1,1],[2,2,3,2],[2,3,3,0],[1,2,0,0]],[[1,0,1,1],[3,2,3,2],[2,3,3,0],[1,2,0,0]],[[1,0,1,1],[2,2,3,2],[3,3,3,0],[1,2,0,0]],[[1,0,1,1],[2,2,3,2],[2,4,3,0],[1,2,0,0]],[[1,0,1,1],[2,2,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,1,1],[2,3,3,2],[1,0,3,3],[0,1,0,1]],[[1,2,1,1],[2,3,3,3],[1,0,3,2],[0,1,0,1]],[[1,2,1,1],[2,3,4,2],[1,0,3,2],[0,1,0,1]],[[1,2,1,2],[2,3,3,2],[1,0,3,2],[0,1,0,1]],[[1,2,1,1],[2,3,3,3],[1,0,3,1],[1,1,1,0]],[[1,2,1,1],[2,3,4,2],[1,0,3,1],[1,1,1,0]],[[1,2,1,2],[2,3,3,2],[1,0,3,1],[1,1,1,0]],[[1,2,1,1],[2,3,3,3],[1,0,3,1],[1,1,0,1]],[[1,2,1,1],[2,3,4,2],[1,0,3,1],[1,1,0,1]],[[1,2,1,2],[2,3,3,2],[1,0,3,1],[1,1,0,1]],[[1,2,1,1],[2,3,3,3],[1,0,3,1],[1,0,2,0]],[[1,2,1,1],[2,3,4,2],[1,0,3,1],[1,0,2,0]],[[1,2,1,2],[2,3,3,2],[1,0,3,1],[1,0,2,0]],[[2,0,1,1],[2,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,1,1],[3,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,1,1],[2,2,3,2],[3,3,3,1],[0,2,0,0]],[[1,0,1,1],[2,2,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,1,1],[2,3,3,3],[1,0,3,1],[1,0,1,1]],[[1,2,1,1],[2,3,4,2],[1,0,3,1],[1,0,1,1]],[[1,2,1,2],[2,3,3,2],[1,0,3,1],[1,0,1,1]],[[1,2,1,1],[2,3,3,3],[1,0,3,1],[0,2,1,0]],[[1,2,1,1],[2,3,4,2],[1,0,3,1],[0,2,1,0]],[[1,2,1,2],[2,3,3,2],[1,0,3,1],[0,2,1,0]],[[1,2,1,1],[2,3,3,3],[1,0,3,1],[0,2,0,1]],[[1,2,1,1],[2,3,4,2],[1,0,3,1],[0,2,0,1]],[[1,2,1,2],[2,3,3,2],[1,0,3,1],[0,2,0,1]],[[1,2,1,1],[2,3,3,3],[1,0,3,1],[0,1,2,0]],[[1,2,1,1],[2,3,4,2],[1,0,3,1],[0,1,2,0]],[[1,2,1,2],[2,3,3,2],[1,0,3,1],[0,1,2,0]],[[1,2,1,1],[2,3,3,3],[1,0,3,1],[0,1,1,1]],[[1,2,1,1],[2,3,4,2],[1,0,3,1],[0,1,1,1]],[[1,2,1,2],[2,3,3,2],[1,0,3,1],[0,1,1,1]],[[1,2,1,1],[2,3,3,3],[1,0,3,1],[0,0,2,1]],[[1,2,1,1],[2,3,4,2],[1,0,3,1],[0,0,2,1]],[[1,2,1,2],[2,3,3,2],[1,0,3,1],[0,0,2,1]],[[1,2,1,1],[2,3,3,3],[1,0,3,0],[1,0,2,1]],[[1,2,1,1],[2,3,4,2],[1,0,3,0],[1,0,2,1]],[[1,2,1,2],[2,3,3,2],[1,0,3,0],[1,0,2,1]],[[2,0,1,1],[2,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,1,1],[3,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,1,1],[2,2,3,2],[3,3,3,1],[1,1,0,0]],[[1,0,1,1],[2,2,3,2],[2,4,3,1],[1,1,0,0]],[[1,0,1,1],[2,2,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,1,1],[2,3,3,3],[1,0,3,0],[0,1,2,1]],[[1,2,1,1],[2,3,4,2],[1,0,3,0],[0,1,2,1]],[[1,2,1,2],[2,3,3,2],[1,0,3,0],[0,1,2,1]],[[1,2,1,1],[2,3,3,3],[1,0,2,2],[1,1,1,0]],[[1,2,1,1],[2,3,4,2],[1,0,2,2],[1,1,1,0]],[[1,2,1,2],[2,3,3,2],[1,0,2,2],[1,1,1,0]],[[1,2,1,1],[2,3,3,2],[1,0,2,3],[1,1,0,1]],[[1,2,1,1],[2,3,3,3],[1,0,2,2],[1,1,0,1]],[[1,2,1,1],[2,3,4,2],[1,0,2,2],[1,1,0,1]],[[1,2,1,2],[2,3,3,2],[1,0,2,2],[1,1,0,1]],[[1,2,1,1],[2,3,3,2],[1,0,2,3],[1,0,2,0]],[[1,2,1,1],[2,3,3,3],[1,0,2,2],[1,0,2,0]],[[1,2,1,1],[2,3,4,2],[1,0,2,2],[1,0,2,0]],[[1,2,1,2],[2,3,3,2],[1,0,2,2],[1,0,2,0]],[[1,2,1,1],[2,3,3,2],[1,0,2,2],[1,0,1,2]],[[1,2,1,1],[2,3,3,2],[1,0,2,3],[1,0,1,1]],[[1,2,1,1],[2,3,3,3],[1,0,2,2],[1,0,1,1]],[[1,2,1,1],[2,3,4,2],[1,0,2,2],[1,0,1,1]],[[1,2,1,2],[2,3,3,2],[1,0,2,2],[1,0,1,1]],[[1,2,1,1],[2,3,3,3],[1,0,2,2],[0,2,1,0]],[[1,2,1,1],[2,3,4,2],[1,0,2,2],[0,2,1,0]],[[1,2,1,2],[2,3,3,2],[1,0,2,2],[0,2,1,0]],[[1,2,1,1],[2,3,3,2],[1,0,2,3],[0,2,0,1]],[[1,2,1,1],[2,3,3,3],[1,0,2,2],[0,2,0,1]],[[1,2,1,1],[2,3,4,2],[1,0,2,2],[0,2,0,1]],[[1,2,1,2],[2,3,3,2],[1,0,2,2],[0,2,0,1]],[[1,2,1,1],[2,3,3,2],[1,0,2,3],[0,1,2,0]],[[1,2,1,1],[2,3,3,3],[1,0,2,2],[0,1,2,0]],[[1,2,1,1],[2,3,4,2],[1,0,2,2],[0,1,2,0]],[[1,2,1,2],[2,3,3,2],[1,0,2,2],[0,1,2,0]],[[1,2,1,1],[2,3,3,2],[1,0,2,2],[0,1,1,2]],[[1,2,1,1],[2,3,3,2],[1,0,2,3],[0,1,1,1]],[[1,2,1,1],[2,3,3,3],[1,0,2,2],[0,1,1,1]],[[1,2,1,1],[2,3,4,2],[1,0,2,2],[0,1,1,1]],[[1,2,1,2],[2,3,3,2],[1,0,2,2],[0,1,1,1]],[[1,2,1,1],[2,3,3,2],[1,0,2,2],[0,0,2,2]],[[1,2,1,1],[2,3,3,2],[1,0,2,3],[0,0,2,1]],[[1,2,1,1],[2,3,3,3],[1,0,2,2],[0,0,2,1]],[[1,2,1,1],[2,3,4,2],[1,0,2,2],[0,0,2,1]],[[1,2,1,2],[2,3,3,2],[1,0,2,2],[0,0,2,1]],[[1,2,1,1],[2,3,3,2],[1,0,1,2],[1,0,2,2]],[[1,2,1,1],[2,3,3,2],[1,0,1,3],[1,0,2,1]],[[1,2,1,1],[2,3,3,3],[1,0,1,2],[1,0,2,1]],[[1,2,1,1],[2,3,4,2],[1,0,1,2],[1,0,2,1]],[[1,2,1,2],[2,3,3,2],[1,0,1,2],[1,0,2,1]],[[1,2,1,1],[2,3,3,2],[1,0,1,2],[0,1,2,2]],[[1,2,1,1],[2,3,3,2],[1,0,1,3],[0,1,2,1]],[[1,2,1,1],[2,3,3,3],[1,0,1,2],[0,1,2,1]],[[1,2,1,1],[2,3,4,2],[1,0,1,2],[0,1,2,1]],[[1,2,1,2],[2,3,3,2],[1,0,1,2],[0,1,2,1]],[[1,2,1,1],[2,3,4,2],[0,3,3,0],[1,1,0,0]],[[1,2,1,1],[2,4,3,2],[0,3,3,0],[1,1,0,0]],[[1,3,1,1],[2,3,3,2],[0,3,3,0],[1,1,0,0]],[[2,2,1,1],[2,3,3,2],[0,3,3,0],[1,1,0,0]],[[1,2,1,1],[2,3,4,2],[0,3,3,0],[0,2,0,0]],[[1,2,1,1],[2,4,3,2],[0,3,3,0],[0,2,0,0]],[[1,3,1,1],[2,3,3,2],[0,3,3,0],[0,2,0,0]],[[2,2,1,1],[2,3,3,2],[0,3,3,0],[0,2,0,0]],[[1,2,1,1],[2,3,4,2],[0,3,3,0],[0,0,2,0]],[[1,2,1,1],[2,4,3,2],[0,3,3,0],[0,0,2,0]],[[1,3,1,1],[2,3,3,2],[0,3,3,0],[0,0,2,0]],[[2,2,1,1],[2,3,3,2],[0,3,3,0],[0,0,2,0]],[[1,2,1,1],[2,3,4,2],[0,3,3,0],[0,0,1,1]],[[1,2,1,1],[2,4,3,2],[0,3,3,0],[0,0,1,1]],[[1,3,1,1],[2,3,3,2],[0,3,3,0],[0,0,1,1]],[[2,2,1,1],[2,3,3,2],[0,3,3,0],[0,0,1,1]],[[1,2,1,1],[2,4,3,2],[0,3,2,0],[1,2,0,0]],[[1,3,1,1],[2,3,3,2],[0,3,2,0],[1,2,0,0]],[[2,2,1,1],[2,3,3,2],[0,3,2,0],[1,2,0,0]],[[1,2,1,1],[2,3,4,2],[0,3,2,0],[1,1,1,0]],[[1,2,1,1],[2,4,3,2],[0,3,2,0],[1,1,1,0]],[[1,3,1,1],[2,3,3,2],[0,3,2,0],[1,1,1,0]],[[2,2,1,1],[2,3,3,2],[0,3,2,0],[1,1,1,0]],[[1,2,1,1],[2,3,4,2],[0,3,2,0],[1,1,0,1]],[[1,2,1,1],[2,4,3,2],[0,3,2,0],[1,1,0,1]],[[1,3,1,1],[2,3,3,2],[0,3,2,0],[1,1,0,1]],[[2,2,1,1],[2,3,3,2],[0,3,2,0],[1,1,0,1]],[[1,2,1,1],[2,3,4,2],[0,3,2,0],[1,0,2,0]],[[1,2,1,1],[2,4,3,2],[0,3,2,0],[1,0,2,0]],[[1,3,1,1],[2,3,3,2],[0,3,2,0],[1,0,2,0]],[[2,2,1,1],[2,3,3,2],[0,3,2,0],[1,0,2,0]],[[1,2,1,1],[2,3,4,2],[0,3,2,0],[1,0,1,1]],[[1,2,1,1],[2,4,3,2],[0,3,2,0],[1,0,1,1]],[[1,3,1,1],[2,3,3,2],[0,3,2,0],[1,0,1,1]],[[2,2,1,1],[2,3,3,2],[0,3,2,0],[1,0,1,1]],[[1,2,1,1],[2,3,4,2],[0,3,2,0],[0,2,1,0]],[[1,2,1,1],[2,4,3,2],[0,3,2,0],[0,2,1,0]],[[1,3,1,1],[2,3,3,2],[0,3,2,0],[0,2,1,0]],[[2,2,1,1],[2,3,3,2],[0,3,2,0],[0,2,1,0]],[[1,2,1,1],[2,3,4,2],[0,3,2,0],[0,2,0,1]],[[1,2,1,1],[2,4,3,2],[0,3,2,0],[0,2,0,1]],[[1,3,1,1],[2,3,3,2],[0,3,2,0],[0,2,0,1]],[[2,2,1,1],[2,3,3,2],[0,3,2,0],[0,2,0,1]],[[1,0,1,1],[2,3,0,0],[3,3,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,0,0],[2,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,0,0],[2,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,0,0],[2,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,0,0],[3,3,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,0,0],[2,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,0,0],[2,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,0,1],[0,4,3,2],[1,2,2,1]],[[1,0,1,1],[2,3,0,1],[0,3,3,2],[2,2,2,1]],[[1,0,1,1],[2,3,0,1],[0,3,3,2],[1,3,2,1]],[[1,0,1,1],[2,3,0,1],[0,3,3,2],[1,2,3,1]],[[1,0,1,1],[2,3,0,1],[0,3,3,2],[1,2,2,2]],[[1,0,1,1],[2,3,0,1],[1,4,3,2],[0,2,2,1]],[[1,0,1,1],[2,3,0,1],[1,3,3,2],[0,3,2,1]],[[1,0,1,1],[2,3,0,1],[1,3,3,2],[0,2,3,1]],[[1,0,1,1],[2,3,0,1],[1,3,3,2],[0,2,2,2]],[[1,2,1,1],[2,3,4,2],[0,3,2,0],[0,1,2,0]],[[1,2,1,1],[2,4,3,2],[0,3,2,0],[0,1,2,0]],[[1,3,1,1],[2,3,3,2],[0,3,2,0],[0,1,2,0]],[[2,2,1,1],[2,3,3,2],[0,3,2,0],[0,1,2,0]],[[1,0,1,1],[2,3,0,2],[0,2,3,3],[1,2,2,1]],[[1,0,1,1],[2,3,0,2],[0,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,3,0,2],[0,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,3,0,2],[0,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,3,0,2],[0,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,3,0,2],[0,4,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,0,2],[0,3,2,3],[1,2,2,1]],[[1,0,1,1],[2,3,0,2],[0,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,3,0,2],[0,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,3,0,2],[0,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,3,0,2],[0,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,3,0,2],[0,4,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,0,2],[0,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,0,2],[0,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,0,2],[0,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,0,2],[0,3,3,1],[1,2,2,2]],[[1,0,1,1],[2,3,0,2],[0,3,3,3],[1,1,2,1]],[[1,0,1,1],[2,3,0,2],[0,3,3,2],[1,1,3,1]],[[1,0,1,1],[2,3,0,2],[0,3,3,2],[1,1,2,2]],[[1,0,1,1],[2,3,0,2],[0,4,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,0,2],[0,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,0,2],[0,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,0,2],[0,3,3,2],[1,2,3,0]],[[1,0,1,1],[2,3,0,2],[1,2,3,3],[0,2,2,1]],[[1,0,1,1],[2,3,0,2],[1,2,3,2],[0,3,2,1]],[[1,0,1,1],[2,3,0,2],[1,2,3,2],[0,2,3,1]],[[1,0,1,1],[2,3,0,2],[1,2,3,2],[0,2,2,2]],[[1,0,1,1],[2,3,0,2],[1,4,2,2],[0,2,2,1]],[[1,0,1,1],[2,3,0,2],[1,3,2,3],[0,2,2,1]],[[1,0,1,1],[2,3,0,2],[1,3,2,2],[0,3,2,1]],[[1,0,1,1],[2,3,0,2],[1,3,2,2],[0,2,3,1]],[[1,0,1,1],[2,3,0,2],[1,3,2,2],[0,2,2,2]],[[1,0,1,1],[2,3,0,2],[1,4,3,1],[0,2,2,1]],[[1,0,1,1],[2,3,0,2],[1,3,3,1],[0,3,2,1]],[[1,0,1,1],[2,3,0,2],[1,3,3,1],[0,2,3,1]],[[1,0,1,1],[2,3,0,2],[1,3,3,1],[0,2,2,2]],[[1,0,1,1],[2,3,0,2],[1,3,3,3],[0,1,2,1]],[[1,0,1,1],[2,3,0,2],[1,3,3,2],[0,1,3,1]],[[1,0,1,1],[2,3,0,2],[1,3,3,2],[0,1,2,2]],[[1,0,1,1],[2,3,0,2],[1,4,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,0,2],[1,3,3,2],[0,3,2,0]],[[1,0,1,1],[2,3,0,2],[1,3,3,2],[0,2,3,0]],[[1,0,1,1],[2,3,0,2],[1,3,3,3],[1,0,2,1]],[[1,0,1,1],[2,3,0,2],[1,3,3,2],[1,0,3,1]],[[1,0,1,1],[2,3,0,2],[1,3,3,2],[1,0,2,2]],[[1,2,1,1],[2,3,4,2],[0,3,2,0],[0,1,1,1]],[[1,2,1,1],[2,4,3,2],[0,3,2,0],[0,1,1,1]],[[1,3,1,1],[2,3,3,2],[0,3,2,0],[0,1,1,1]],[[2,2,1,1],[2,3,3,2],[0,3,2,0],[0,1,1,1]],[[1,0,1,1],[3,3,0,2],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,3,0,2],[3,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,3,0,2],[2,0,3,3],[1,2,2,1]],[[1,0,1,1],[2,3,0,2],[2,0,3,2],[2,2,2,1]],[[1,0,1,1],[2,3,0,2],[2,0,3,2],[1,3,2,1]],[[1,0,1,1],[2,3,0,2],[2,0,3,2],[1,2,3,1]],[[1,0,1,1],[2,3,0,2],[2,0,3,2],[1,2,2,2]],[[1,0,1,1],[2,3,1,0],[0,4,3,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,0],[0,3,3,2],[2,2,2,1]],[[1,0,1,1],[2,3,1,0],[0,3,3,2],[1,3,2,1]],[[1,0,1,1],[2,3,1,0],[0,3,3,2],[1,2,3,1]],[[1,0,1,1],[2,3,1,0],[0,3,3,2],[1,2,2,2]],[[1,0,1,1],[2,3,1,0],[1,4,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,0],[1,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,1,0],[1,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,1,0],[1,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,1,0],[1,3,3,1],[1,2,2,2]],[[1,0,1,1],[2,3,1,0],[1,4,3,2],[0,2,2,1]],[[1,0,1,1],[2,3,1,0],[1,3,3,2],[0,3,2,1]],[[1,0,1,1],[2,3,1,0],[1,3,3,2],[0,2,3,1]],[[1,0,1,1],[2,3,1,0],[1,3,3,2],[0,2,2,2]],[[1,0,1,1],[2,3,1,0],[1,4,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,0],[1,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,1,0],[1,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,1,0],[1,3,3,2],[1,2,3,0]],[[1,0,1,1],[3,3,1,0],[2,2,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,0],[3,2,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,0],[2,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,1,0],[2,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,1,0],[2,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,1,0],[2,2,3,1],[1,2,2,2]],[[1,0,1,1],[3,3,1,0],[2,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,0],[3,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,0],[2,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,1,0],[2,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,1,0],[2,2,3,2],[1,2,3,0]],[[1,0,1,1],[3,3,1,0],[2,3,3,1],[0,2,2,1]],[[1,0,1,1],[2,3,1,0],[3,3,3,1],[0,2,2,1]],[[1,0,1,1],[2,3,1,0],[2,4,3,1],[0,2,2,1]],[[1,0,1,1],[2,3,1,0],[2,3,3,1],[0,3,2,1]],[[1,0,1,1],[2,3,1,0],[2,3,3,1],[0,2,3,1]],[[1,0,1,1],[2,3,1,0],[2,3,3,1],[0,2,2,2]],[[1,0,1,1],[3,3,1,0],[2,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,1,0],[3,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,1,0],[2,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,1,0],[2,3,3,1],[2,1,2,1]],[[1,0,1,1],[3,3,1,0],[2,3,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,1,0],[3,3,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,1,0],[2,4,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,1,0],[2,3,3,2],[0,3,2,0]],[[1,0,1,1],[2,3,1,0],[2,3,3,2],[0,2,3,0]],[[1,0,1,1],[3,3,1,0],[2,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,1,0],[3,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,1,0],[2,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,1,0],[2,3,3,2],[2,1,2,0]],[[1,0,1,1],[2,3,1,1],[0,4,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,1],[0,3,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,1,1],[0,3,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,1,1],[0,3,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,1,1],[0,3,3,1],[1,2,2,2]],[[1,0,1,1],[2,3,1,1],[0,4,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,1],[0,3,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,1,1],[0,3,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,1,1],[0,3,3,2],[1,2,3,0]],[[1,0,1,1],[2,3,1,1],[1,4,3,1],[0,2,2,1]],[[1,0,1,1],[2,3,1,1],[1,3,3,1],[0,3,2,1]],[[1,0,1,1],[2,3,1,1],[1,3,3,1],[0,2,3,1]],[[1,0,1,1],[2,3,1,1],[1,3,3,1],[0,2,2,2]],[[1,0,1,1],[2,3,1,1],[1,4,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,1,1],[1,3,3,2],[0,3,2,0]],[[1,0,1,1],[2,3,1,1],[1,3,3,2],[0,2,3,0]],[[1,2,1,1],[2,4,3,2],[0,3,1,0],[1,1,2,0]],[[1,3,1,1],[2,3,3,2],[0,3,1,0],[1,1,2,0]],[[2,2,1,1],[2,3,3,2],[0,3,1,0],[1,1,2,0]],[[1,2,1,1],[2,3,4,2],[0,3,1,0],[0,2,2,0]],[[1,2,1,1],[2,4,3,2],[0,3,1,0],[0,2,2,0]],[[1,3,1,1],[2,3,3,2],[0,3,1,0],[0,2,2,0]],[[2,2,1,1],[2,3,3,2],[0,3,1,0],[0,2,2,0]],[[1,0,1,2],[2,3,1,2],[0,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,3],[0,2,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,3,1,2],[0,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,3,1,2],[0,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,3,1,2],[0,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,1,2],[0,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,1,2],[0,2,3,1],[1,2,2,2]],[[1,0,1,2],[2,3,1,2],[0,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,1,3],[0,2,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,1,2],[0,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,3,1,2],[0,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,3,1,2],[0,2,3,2],[1,2,1,2]],[[1,0,1,2],[2,3,1,2],[0,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,3],[0,2,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,2],[0,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,2],[0,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,3,1,2],[0,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,1,2],[0,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,1,2],[0,2,3,2],[1,2,3,0]],[[2,0,1,1],[2,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,0,1,2],[2,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[3,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,4,1,2],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,3],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,4,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,1,3],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,3,1,2],[0,3,1,2],[1,2,2,2]],[[2,0,1,1],[2,3,1,2],[0,3,2,1],[1,2,2,1]],[[1,0,1,1],[3,3,1,2],[0,3,2,1],[1,2,2,1]],[[1,0,1,1],[2,4,1,2],[0,3,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,4,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,3,1,2],[0,3,2,1],[1,2,2,2]],[[1,0,1,2],[2,3,1,2],[0,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,3,1,3],[0,3,2,2],[1,1,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,2,3],[1,1,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,2,2],[1,1,3,1]],[[1,0,1,1],[2,3,1,2],[0,3,2,2],[1,1,2,2]],[[2,0,1,1],[2,3,1,2],[0,3,2,2],[1,2,2,0]],[[1,0,1,1],[3,3,1,2],[0,3,2,2],[1,2,2,0]],[[1,0,1,1],[2,4,1,2],[0,3,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,2],[0,4,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,2],[0,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,3,1,2],[0,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,3,1,2],[0,3,2,2],[1,2,3,0]],[[2,0,1,1],[2,3,1,2],[0,3,3,1],[1,1,2,1]],[[1,0,1,1],[3,3,1,2],[0,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,4,1,2],[0,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,1,2],[0,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,4,1],[1,1,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,1],[1,1,3,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,1],[1,1,2,2]],[[2,0,1,1],[2,3,1,2],[0,3,3,1],[1,2,1,1]],[[1,0,1,1],[3,3,1,2],[0,3,3,1],[1,2,1,1]],[[1,0,1,1],[2,4,1,2],[0,3,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,1,2],[0,4,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,1,2],[0,3,4,1],[1,2,1,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,1],[1,3,1,1]],[[1,0,1,2],[2,3,1,2],[0,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,3,1,3],[0,3,3,2],[1,0,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,3],[1,0,2,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,2],[1,0,2,2]],[[2,0,1,1],[2,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,0,1,2],[2,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[3,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,4,1,2],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,1,3],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,1,2],[0,4,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,1,2],[0,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,3],[1,1,1,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,2],[1,1,1,2]],[[2,0,1,1],[2,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,0,1,2],[2,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[3,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,4,1,2],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,1,3],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,1,2],[0,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,1,2],[0,3,4,2],[1,1,2,0]],[[1,0,1,1],[2,3,1,2],[0,3,3,3],[1,1,2,0]],[[1,0,1,1],[2,3,1,2],[0,3,3,2],[1,1,3,0]],[[2,0,1,1],[2,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,0,1,2],[2,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[3,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,4,1,2],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,1,3],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,1,2],[0,4,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,1,2],[0,3,4,2],[1,2,0,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,3],[1,2,0,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,3,1,2],[0,3,3,2],[1,2,0,2]],[[2,0,1,1],[2,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,0,1,2],[2,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[3,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,4,1,2],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,1,3],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,1,2],[0,4,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,1,2],[0,3,4,2],[1,2,1,0]],[[1,0,1,1],[2,3,1,2],[0,3,3,3],[1,2,1,0]],[[1,0,1,1],[2,3,1,2],[0,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,0,1,2],[2,3,1,2],[1,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,3,1,3],[1,2,2,2],[0,2,2,1]],[[1,0,1,1],[2,3,1,2],[1,2,2,3],[0,2,2,1]],[[1,0,1,1],[2,3,1,2],[1,2,2,2],[0,3,2,1]],[[1,0,1,1],[2,3,1,2],[1,2,2,2],[0,2,3,1]],[[1,0,1,1],[2,3,1,2],[1,2,2,2],[0,2,2,2]],[[1,0,1,1],[2,3,1,2],[1,2,4,1],[0,2,2,1]],[[1,0,1,1],[2,3,1,2],[1,2,3,1],[0,3,2,1]],[[1,0,1,1],[2,3,1,2],[1,2,3,1],[0,2,3,1]],[[1,0,1,1],[2,3,1,2],[1,2,3,1],[0,2,2,2]],[[1,0,1,2],[2,3,1,2],[1,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,1,3],[1,2,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,1,2],[1,2,4,2],[0,2,1,1]],[[1,0,1,1],[2,3,1,2],[1,2,3,3],[0,2,1,1]],[[1,0,1,1],[2,3,1,2],[1,2,3,2],[0,2,1,2]],[[1,0,1,2],[2,3,1,2],[1,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,1,3],[1,2,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,1,2],[1,2,4,2],[0,2,2,0]],[[1,0,1,1],[2,3,1,2],[1,2,3,3],[0,2,2,0]],[[1,0,1,1],[2,3,1,2],[1,2,3,2],[0,3,2,0]],[[1,0,1,1],[2,3,1,2],[1,2,3,2],[0,2,3,0]],[[2,0,1,1],[2,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,0,1,2],[2,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,0,1,1],[3,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,4,1,2],[1,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,1,3],[1,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,1,2],[1,4,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,1,3],[0,2,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,1,2],[0,3,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,1,2],[0,2,3,1]],[[1,0,1,1],[2,3,1,2],[1,3,1,2],[0,2,2,2]],[[2,0,1,1],[2,3,1,2],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[3,3,1,2],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,4,1,2],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,1,2],[1,4,1,2],[1,1,2,1]],[[2,0,1,1],[2,3,1,2],[1,3,2,1],[0,2,2,1]],[[1,0,1,1],[3,3,1,2],[1,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,4,1,2],[1,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,3,1,2],[1,4,2,1],[0,2,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,2,1],[0,3,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,2,1],[0,2,3,1]],[[1,0,1,1],[2,3,1,2],[1,3,2,1],[0,2,2,2]],[[2,0,1,1],[2,3,1,2],[1,3,2,1],[1,1,2,1]],[[1,0,1,1],[3,3,1,2],[1,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,4,1,2],[1,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,1,2],[1,4,2,1],[1,1,2,1]],[[1,0,1,2],[2,3,1,2],[1,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,3,1,3],[1,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,3,1,2],[1,3,2,2],[0,1,2,2]],[[2,0,1,1],[2,3,1,2],[1,3,2,2],[0,2,2,0]],[[1,0,1,1],[3,3,1,2],[1,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,4,1,2],[1,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,1,2],[1,4,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,1,2],[1,3,2,2],[0,3,2,0]],[[1,0,1,1],[2,3,1,2],[1,3,2,2],[0,2,3,0]],[[1,0,1,2],[2,3,1,2],[1,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,3,1,3],[1,3,2,2],[1,0,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,2,3],[1,0,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,2,2],[1,0,3,1]],[[1,0,1,1],[2,3,1,2],[1,3,2,2],[1,0,2,2]],[[2,0,1,1],[2,3,1,2],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[3,3,1,2],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,4,1,2],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,1,2],[1,4,2,2],[1,1,2,0]],[[2,0,1,1],[2,3,1,2],[1,3,3,1],[0,1,2,1]],[[1,0,1,1],[3,3,1,2],[1,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,4,1,2],[1,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,1,2],[1,4,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,1],[0,1,2,2]],[[2,0,1,1],[2,3,1,2],[1,3,3,1],[0,2,1,1]],[[1,0,1,1],[3,3,1,2],[1,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,4,1,2],[1,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,1,2],[1,4,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,1,2],[1,3,4,1],[0,2,1,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,1],[0,3,1,1]],[[2,0,1,1],[2,3,1,2],[1,3,3,1],[1,0,2,1]],[[1,0,1,1],[3,3,1,2],[1,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,4,1,2],[1,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,1,2],[1,4,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,4,1],[1,0,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,1],[1,0,3,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,1],[1,0,2,2]],[[2,0,1,1],[2,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[3,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,4,1,2],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,1,2],[1,4,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,1,2],[1,3,4,1],[1,1,1,1]],[[1,0,1,2],[2,3,1,2],[1,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,1,3],[1,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,2],[0,0,2,2]],[[2,0,1,1],[2,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,0,1,2],[2,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[3,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,4,1,2],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,1,3],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,1,2],[1,4,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,1,2],[1,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,2],[0,1,1,2]],[[2,0,1,1],[2,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,0,1,2],[2,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[3,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,4,1,2],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,1,3],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,1,2],[1,4,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,1,2],[1,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,3,1,2],[1,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,3,1,2],[1,3,3,2],[0,1,3,0]],[[2,0,1,1],[2,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,0,1,2],[2,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[3,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,4,1,2],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,1,3],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,1,2],[1,4,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,1,2],[1,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,2],[0,3,0,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,2],[0,2,0,2]],[[2,0,1,1],[2,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,0,1,2],[2,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[3,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,4,1,2],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,1,3],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,1,2],[1,4,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,1,2],[1,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,3,1,2],[1,3,3,3],[0,2,1,0]],[[1,0,1,1],[2,3,1,2],[1,3,3,2],[0,3,1,0]],[[2,0,1,1],[2,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,0,1,2],[2,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[3,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,4,1,2],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,1,3],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,1,2],[1,4,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,1,2],[1,3,4,2],[1,0,1,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,3],[1,0,1,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,2],[1,0,1,2]],[[2,0,1,1],[2,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,0,1,2],[2,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[3,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,4,1,2],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,1,3],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,1,2],[1,4,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,1,2],[1,3,4,2],[1,0,2,0]],[[1,0,1,1],[2,3,1,2],[1,3,3,3],[1,0,2,0]],[[1,0,1,1],[2,3,1,2],[1,3,3,2],[1,0,3,0]],[[2,0,1,1],[2,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,0,1,2],[2,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[3,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,4,1,2],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,1,3],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,1,2],[1,4,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,1,2],[1,3,4,2],[1,1,0,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,3],[1,1,0,1]],[[1,0,1,1],[2,3,1,2],[1,3,3,2],[1,1,0,2]],[[2,0,1,1],[2,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,0,1,2],[2,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,0,1,1],[3,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,4,1,2],[1,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,1,3],[1,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,1,2],[1,4,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,1,2],[1,3,4,2],[1,1,1,0]],[[1,0,1,1],[2,3,1,2],[1,3,3,3],[1,1,1,0]],[[2,0,1,1],[2,3,1,2],[1,3,3,2],[1,2,0,0]],[[1,0,1,1],[3,3,1,2],[1,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,4,1,2],[1,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,1,2],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[2,3,3,2],[0,2,3,3],[0,0,0,1]],[[1,2,1,1],[2,3,3,3],[0,2,3,2],[0,0,0,1]],[[1,2,1,1],[2,3,4,2],[0,2,3,2],[0,0,0,1]],[[1,2,1,2],[2,3,3,2],[0,2,3,2],[0,0,0,1]],[[2,0,1,1],[2,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,1,2],[2,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[3,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,4,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,3],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[3,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[2,0,2,3],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[2,0,2,2],[2,2,2,1]],[[1,0,1,1],[2,3,1,2],[2,0,2,2],[1,3,2,1]],[[1,0,1,1],[2,3,1,2],[2,0,2,2],[1,2,3,1]],[[1,0,1,1],[2,3,1,2],[2,0,2,2],[1,2,2,2]],[[2,0,1,1],[2,3,1,2],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[3,3,1,2],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,4,1,2],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[3,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[2,0,4,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[2,0,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,1,2],[2,0,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,1,2],[2,0,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,1,2],[2,0,3,1],[1,2,2,2]],[[1,0,1,2],[2,3,1,2],[2,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,1,3],[2,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,1,2],[2,0,4,2],[1,2,1,1]],[[1,0,1,1],[2,3,1,2],[2,0,3,3],[1,2,1,1]],[[1,0,1,1],[2,3,1,2],[2,0,3,2],[1,2,1,2]],[[2,0,1,1],[2,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,1,2],[2,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[3,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,4,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,3],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,2],[3,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,2],[2,0,4,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,2],[2,0,3,3],[1,2,2,0]],[[1,0,1,1],[2,3,1,2],[2,0,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,1,2],[2,0,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,1,2],[2,0,3,2],[1,2,3,0]],[[2,0,1,1],[2,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,0,1,2],[2,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[3,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,4,1,2],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,3],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[3,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[2,1,1,3],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[2,1,1,2],[2,2,2,1]],[[1,0,1,1],[2,3,1,2],[2,1,1,2],[1,3,2,1]],[[1,0,1,1],[2,3,1,2],[2,1,1,2],[1,2,3,1]],[[1,0,1,1],[2,3,1,2],[2,1,1,2],[1,2,2,2]],[[2,0,1,1],[2,3,1,2],[2,1,2,1],[1,2,2,1]],[[1,0,1,1],[3,3,1,2],[2,1,2,1],[1,2,2,1]],[[1,0,1,1],[2,4,1,2],[2,1,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[3,1,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,1,2],[2,1,2,1],[2,2,2,1]],[[1,0,1,1],[2,3,1,2],[2,1,2,1],[1,3,2,1]],[[1,0,1,1],[2,3,1,2],[2,1,2,1],[1,2,3,1]],[[1,0,1,1],[2,3,1,2],[2,1,2,1],[1,2,2,2]],[[2,0,1,1],[2,3,1,2],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[3,3,1,2],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,4,1,2],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,2],[3,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,1,2],[2,1,2,2],[2,2,2,0]],[[1,0,1,1],[2,3,1,2],[2,1,2,2],[1,3,2,0]],[[1,0,1,1],[2,3,1,2],[2,1,2,2],[1,2,3,0]],[[2,0,1,1],[2,3,1,2],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[3,3,1,2],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,4,1,2],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,1,2],[3,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,1,2],[2,1,3,1],[2,2,1,1]],[[1,0,1,1],[2,3,1,2],[2,1,3,1],[1,3,1,1]],[[2,0,1,1],[2,3,1,2],[2,1,3,2],[1,2,0,1]],[[1,0,1,1],[3,3,1,2],[2,1,3,2],[1,2,0,1]],[[1,0,1,1],[2,4,1,2],[2,1,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,1,2],[3,1,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,1,2],[2,1,3,2],[2,2,0,1]],[[1,0,1,1],[2,3,1,2],[2,1,3,2],[1,3,0,1]],[[2,0,1,1],[2,3,1,2],[2,1,3,2],[1,2,1,0]],[[1,0,1,1],[3,3,1,2],[2,1,3,2],[1,2,1,0]],[[1,0,1,1],[2,4,1,2],[2,1,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,1,2],[3,1,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,1,2],[2,1,3,2],[2,2,1,0]],[[1,0,1,1],[2,3,1,2],[2,1,3,2],[1,3,1,0]],[[2,0,1,1],[2,3,1,2],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[3,3,1,2],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[2,4,1,2],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,1,2],[3,2,1,2],[0,2,2,1]],[[2,0,1,1],[2,3,1,2],[2,2,1,2],[1,1,2,1]],[[1,0,1,1],[3,3,1,2],[2,2,1,2],[1,1,2,1]],[[1,0,1,1],[2,4,1,2],[2,2,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,1,2],[3,2,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,1,2],[2,2,1,2],[2,1,2,1]],[[2,0,1,1],[2,3,1,2],[2,2,2,1],[0,2,2,1]],[[1,0,1,1],[3,3,1,2],[2,2,2,1],[0,2,2,1]],[[1,0,1,1],[2,4,1,2],[2,2,2,1],[0,2,2,1]],[[1,0,1,1],[2,3,1,2],[3,2,2,1],[0,2,2,1]],[[2,0,1,1],[2,3,1,2],[2,2,2,1],[1,1,2,1]],[[1,0,1,1],[3,3,1,2],[2,2,2,1],[1,1,2,1]],[[1,0,1,1],[2,4,1,2],[2,2,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,1,2],[3,2,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,1,2],[2,2,2,1],[2,1,2,1]],[[2,0,1,1],[2,3,1,2],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[3,3,1,2],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[2,4,1,2],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,1,2],[3,2,2,2],[0,2,2,0]],[[2,0,1,1],[2,3,1,2],[2,2,2,2],[1,1,2,0]],[[1,0,1,1],[3,3,1,2],[2,2,2,2],[1,1,2,0]],[[1,0,1,1],[2,4,1,2],[2,2,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,1,2],[3,2,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,1,2],[2,2,2,2],[2,1,2,0]],[[2,0,1,1],[2,3,1,2],[2,2,3,1],[0,1,2,1]],[[1,0,1,1],[3,3,1,2],[2,2,3,1],[0,1,2,1]],[[1,0,1,1],[2,4,1,2],[2,2,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,1,2],[3,2,3,1],[0,1,2,1]],[[2,0,1,1],[2,3,1,2],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[3,3,1,2],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,4,1,2],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,1,2],[3,2,3,1],[0,2,1,1]],[[2,0,1,1],[2,3,1,2],[2,2,3,1],[1,0,2,1]],[[1,0,1,1],[3,3,1,2],[2,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,4,1,2],[2,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,1,2],[3,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,1,2],[2,2,3,1],[2,0,2,1]],[[2,0,1,1],[2,3,1,2],[2,2,3,1],[1,1,1,1]],[[1,0,1,1],[3,3,1,2],[2,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,4,1,2],[2,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,1,2],[3,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,1,2],[2,2,3,1],[2,1,1,1]],[[2,0,1,1],[2,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,0,1,1],[3,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,4,1,2],[2,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,1,2],[3,2,3,2],[0,1,1,1]],[[2,0,1,1],[2,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,0,1,1],[3,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,4,1,2],[2,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,1,2],[3,2,3,2],[0,1,2,0]],[[2,0,1,1],[2,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,0,1,1],[3,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,0,1,1],[2,4,1,2],[2,2,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,1,2],[3,2,3,2],[0,2,0,1]],[[2,0,1,1],[2,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,0,1,1],[3,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,0,1,1],[2,4,1,2],[2,2,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,1,2],[3,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,3,3,3],[0,2,3,1],[0,0,2,0]],[[1,2,1,1],[2,3,4,2],[0,2,3,1],[0,0,2,0]],[[1,2,1,2],[2,3,3,2],[0,2,3,1],[0,0,2,0]],[[1,2,1,1],[2,3,3,3],[0,2,3,1],[0,0,1,1]],[[1,2,1,1],[2,3,4,2],[0,2,3,1],[0,0,1,1]],[[1,2,1,2],[2,3,3,2],[0,2,3,1],[0,0,1,1]],[[2,0,1,1],[2,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,0,1,1],[3,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,0,1,1],[2,4,1,2],[2,2,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,1,2],[3,2,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,1,2],[2,2,3,2],[2,0,1,1]],[[2,0,1,1],[2,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,0,1,1],[3,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,0,1,1],[2,4,1,2],[2,2,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,1,2],[3,2,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,1,2],[2,2,3,2],[2,0,2,0]],[[2,0,1,1],[2,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,0,1,1],[3,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,4,1,2],[2,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,1,2],[3,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,1,2],[2,2,3,2],[2,1,0,1]],[[2,0,1,1],[2,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,0,1,1],[3,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,0,1,1],[2,4,1,2],[2,2,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,1,2],[3,2,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,1,2],[2,2,3,2],[2,1,1,0]],[[2,0,1,1],[2,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,0,1,1],[3,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,0,1,1],[2,4,1,2],[2,2,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,1,2],[3,2,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,1,2],[2,2,3,2],[2,2,0,0]],[[1,2,1,1],[2,3,4,2],[0,2,3,0],[1,1,1,0]],[[1,2,1,1],[2,4,3,2],[0,2,3,0],[1,1,1,0]],[[1,3,1,1],[2,3,3,2],[0,2,3,0],[1,1,1,0]],[[2,2,1,1],[2,3,3,2],[0,2,3,0],[1,1,1,0]],[[1,2,1,1],[2,3,4,2],[0,2,3,0],[1,1,0,1]],[[1,2,1,1],[2,4,3,2],[0,2,3,0],[1,1,0,1]],[[1,3,1,1],[2,3,3,2],[0,2,3,0],[1,1,0,1]],[[2,2,1,1],[2,3,3,2],[0,2,3,0],[1,1,0,1]],[[1,2,1,1],[2,3,4,2],[0,2,3,0],[1,0,2,0]],[[1,2,1,1],[2,4,3,2],[0,2,3,0],[1,0,2,0]],[[1,3,1,1],[2,3,3,2],[0,2,3,0],[1,0,2,0]],[[2,2,1,1],[2,3,3,2],[0,2,3,0],[1,0,2,0]],[[1,2,1,1],[2,3,4,2],[0,2,3,0],[1,0,1,1]],[[1,2,1,1],[2,4,3,2],[0,2,3,0],[1,0,1,1]],[[1,3,1,1],[2,3,3,2],[0,2,3,0],[1,0,1,1]],[[2,2,1,1],[2,3,3,2],[0,2,3,0],[1,0,1,1]],[[1,2,1,1],[2,3,4,2],[0,2,3,0],[0,2,1,0]],[[1,2,1,1],[2,4,3,2],[0,2,3,0],[0,2,1,0]],[[1,3,1,1],[2,3,3,2],[0,2,3,0],[0,2,1,0]],[[2,2,1,1],[2,3,3,2],[0,2,3,0],[0,2,1,0]],[[1,2,1,1],[2,3,4,2],[0,2,3,0],[0,2,0,1]],[[1,2,1,1],[2,4,3,2],[0,2,3,0],[0,2,0,1]],[[1,3,1,1],[2,3,3,2],[0,2,3,0],[0,2,0,1]],[[2,2,1,1],[2,3,3,2],[0,2,3,0],[0,2,0,1]],[[1,2,1,1],[2,3,4,2],[0,2,3,0],[0,1,2,0]],[[1,2,1,1],[2,4,3,2],[0,2,3,0],[0,1,2,0]],[[1,3,1,1],[2,3,3,2],[0,2,3,0],[0,1,2,0]],[[2,2,1,1],[2,3,3,2],[0,2,3,0],[0,1,2,0]],[[1,2,1,1],[2,3,4,2],[0,2,3,0],[0,1,1,1]],[[1,2,1,1],[2,4,3,2],[0,2,3,0],[0,1,1,1]],[[1,3,1,1],[2,3,3,2],[0,2,3,0],[0,1,1,1]],[[2,2,1,1],[2,3,3,2],[0,2,3,0],[0,1,1,1]],[[1,2,1,1],[2,3,3,3],[0,2,2,2],[0,0,2,0]],[[1,2,1,1],[2,3,4,2],[0,2,2,2],[0,0,2,0]],[[1,2,1,2],[2,3,3,2],[0,2,2,2],[0,0,2,0]],[[1,2,1,1],[2,3,3,2],[0,2,2,3],[0,0,1,1]],[[1,2,1,1],[2,3,3,3],[0,2,2,2],[0,0,1,1]],[[1,2,1,1],[2,3,4,2],[0,2,2,2],[0,0,1,1]],[[1,2,1,2],[2,3,3,2],[0,2,2,2],[0,0,1,1]],[[2,0,1,1],[2,3,1,2],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[3,3,1,2],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[2,4,1,2],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[2,3,1,2],[3,3,3,2],[1,0,0,1]],[[2,0,1,1],[2,3,1,2],[2,3,3,2],[1,0,1,0]],[[1,0,1,1],[3,3,1,2],[2,3,3,2],[1,0,1,0]],[[1,0,1,1],[2,4,1,2],[2,3,3,2],[1,0,1,0]],[[1,0,1,1],[2,3,1,2],[3,3,3,2],[1,0,1,0]],[[1,2,1,1],[2,3,3,2],[0,1,3,3],[1,0,0,1]],[[1,2,1,1],[2,3,3,3],[0,1,3,2],[1,0,0,1]],[[1,2,1,1],[2,3,4,2],[0,1,3,2],[1,0,0,1]],[[1,2,1,2],[2,3,3,2],[0,1,3,2],[1,0,0,1]],[[1,2,1,1],[2,3,3,2],[0,1,3,3],[0,1,0,1]],[[1,2,1,1],[2,3,3,3],[0,1,3,2],[0,1,0,1]],[[1,2,1,1],[2,3,4,2],[0,1,3,2],[0,1,0,1]],[[1,2,1,2],[2,3,3,2],[0,1,3,2],[0,1,0,1]],[[1,2,1,1],[2,3,3,3],[0,1,3,1],[1,1,1,0]],[[1,2,1,1],[2,3,4,2],[0,1,3,1],[1,1,1,0]],[[1,2,1,2],[2,3,3,2],[0,1,3,1],[1,1,1,0]],[[1,2,1,1],[2,3,3,3],[0,1,3,1],[1,1,0,1]],[[1,2,1,1],[2,3,4,2],[0,1,3,1],[1,1,0,1]],[[1,2,1,2],[2,3,3,2],[0,1,3,1],[1,1,0,1]],[[1,2,1,1],[2,3,3,3],[0,1,3,1],[1,0,2,0]],[[1,2,1,1],[2,3,4,2],[0,1,3,1],[1,0,2,0]],[[1,2,1,2],[2,3,3,2],[0,1,3,1],[1,0,2,0]],[[1,2,1,1],[2,3,3,3],[0,1,3,1],[1,0,1,1]],[[1,2,1,1],[2,3,4,2],[0,1,3,1],[1,0,1,1]],[[1,2,1,2],[2,3,3,2],[0,1,3,1],[1,0,1,1]],[[1,2,1,1],[2,3,3,3],[0,1,3,1],[0,2,1,0]],[[1,2,1,1],[2,3,4,2],[0,1,3,1],[0,2,1,0]],[[1,2,1,2],[2,3,3,2],[0,1,3,1],[0,2,1,0]],[[1,2,1,1],[2,3,3,3],[0,1,3,1],[0,2,0,1]],[[1,2,1,1],[2,3,4,2],[0,1,3,1],[0,2,0,1]],[[1,2,1,2],[2,3,3,2],[0,1,3,1],[0,2,0,1]],[[1,2,1,1],[2,3,3,3],[0,1,3,1],[0,1,2,0]],[[1,2,1,1],[2,3,4,2],[0,1,3,1],[0,1,2,0]],[[1,2,1,2],[2,3,3,2],[0,1,3,1],[0,1,2,0]],[[1,2,1,1],[2,3,3,3],[0,1,3,1],[0,1,1,1]],[[1,2,1,1],[2,3,4,2],[0,1,3,1],[0,1,1,1]],[[1,2,1,2],[2,3,3,2],[0,1,3,1],[0,1,1,1]],[[1,2,1,1],[2,3,3,3],[0,1,3,1],[0,0,2,1]],[[1,2,1,1],[2,3,4,2],[0,1,3,1],[0,0,2,1]],[[1,2,1,2],[2,3,3,2],[0,1,3,1],[0,0,2,1]],[[1,2,1,1],[2,3,3,3],[0,1,3,0],[1,0,2,1]],[[1,2,1,1],[2,3,4,2],[0,1,3,0],[1,0,2,1]],[[1,2,1,2],[2,3,3,2],[0,1,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,2,0],[0,2,4,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[0,2,3,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[0,2,3,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,0],[0,2,3,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,0],[0,2,3,2],[1,2,2,2]],[[1,0,1,1],[2,3,2,0],[0,4,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[0,3,2,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[0,3,2,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,0],[0,3,2,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,0],[0,3,2,2],[1,2,2,2]],[[1,0,1,1],[2,3,2,0],[0,4,3,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[0,3,4,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[0,3,3,2],[1,1,3,1]],[[1,0,1,1],[2,3,2,0],[0,3,3,2],[1,1,2,2]],[[1,0,1,1],[2,3,2,0],[0,4,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,2,0],[0,3,4,2],[1,2,1,1]],[[1,0,1,1],[2,3,2,0],[0,3,3,2],[2,2,1,1]],[[1,0,1,1],[2,3,2,0],[0,3,3,2],[1,3,1,1]],[[1,0,1,1],[2,3,2,0],[1,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[1,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[1,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,2,0],[1,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,2,0],[1,2,3,1],[1,2,2,2]],[[1,0,1,1],[2,3,2,0],[1,2,4,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[1,2,3,2],[0,3,2,1]],[[1,0,1,1],[2,3,2,0],[1,2,3,2],[0,2,3,1]],[[1,0,1,1],[2,3,2,0],[1,2,3,2],[0,2,2,2]],[[1,0,1,1],[2,3,2,0],[1,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,0],[1,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,2,0],[1,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,2,0],[1,2,3,2],[1,2,3,0]],[[1,0,1,1],[2,3,2,0],[1,4,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,0],[1,3,1,2],[1,2,2,2]],[[1,0,1,1],[2,3,2,0],[1,4,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,3,2,0],[1,3,2,1],[1,2,2,2]],[[1,0,1,1],[2,3,2,0],[1,4,2,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,2,2],[0,3,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,2,2],[0,2,3,1]],[[1,0,1,1],[2,3,2,0],[1,3,2,2],[0,2,2,2]],[[1,0,1,1],[2,3,2,0],[1,4,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,0],[1,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,3,2,0],[1,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,3,2,0],[1,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,3,2,0],[1,4,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,0],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,0],[1,3,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,0],[1,2,3,1]],[[1,0,1,1],[2,3,2,0],[1,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,4,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,1],[1,1,3,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,1],[1,1,2,2]],[[1,0,1,1],[2,3,2,0],[1,4,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,2,0],[1,3,4,1],[1,2,1,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,1],[1,3,1,1]],[[1,0,1,1],[2,3,2,0],[1,4,3,2],[0,1,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,4,2],[0,1,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,2],[0,1,3,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,2],[0,1,2,2]],[[1,0,1,1],[2,3,2,0],[1,4,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,2,0],[1,3,4,2],[0,2,1,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,2],[0,3,1,1]],[[1,0,1,1],[2,3,2,0],[1,4,3,2],[1,0,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,2],[1,0,3,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,2],[1,0,2,2]],[[1,0,1,1],[2,3,2,0],[1,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,0],[1,3,4,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,0],[1,3,3,2],[1,1,3,0]],[[1,0,1,1],[2,3,2,0],[1,4,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,0],[1,3,4,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,3,2,0],[1,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,3,2,0],[1,4,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,0],[1,3,4,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,0],[1,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,3,2,0],[1,3,3,2],[1,3,1,0]],[[1,0,1,1],[3,3,2,0],[2,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[3,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,0,4,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,0,3,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,0,3,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,0],[2,0,3,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,0],[2,0,3,2],[1,2,2,2]],[[1,0,1,1],[3,3,2,0],[2,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[3,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,1,4,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,1,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,1,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,2,0],[2,1,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,2,0],[2,1,3,1],[1,2,2,2]],[[1,0,1,1],[3,3,2,0],[2,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,0],[3,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,0],[2,1,4,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,0],[2,1,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,2,0],[2,1,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,2,0],[2,1,3,2],[1,2,3,0]],[[1,0,1,1],[3,3,2,0],[2,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[3,2,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,2,1,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,2,1,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,0],[2,2,1,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,0],[2,2,1,2],[1,2,2,2]],[[1,0,1,1],[3,3,2,0],[2,2,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[3,2,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,2,2,1],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,2,2,1],[1,3,2,1]],[[1,0,1,1],[2,3,2,0],[2,2,2,1],[1,2,3,1]],[[1,0,1,1],[2,3,2,0],[2,2,2,1],[1,2,2,2]],[[1,0,1,1],[3,3,2,0],[2,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,0],[3,2,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,0],[2,2,2,2],[2,2,2,0]],[[1,0,1,1],[2,3,2,0],[2,2,2,2],[1,3,2,0]],[[1,0,1,1],[2,3,2,0],[2,2,2,2],[1,2,3,0]],[[1,0,1,1],[3,3,2,0],[2,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[3,2,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,2,3,0],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,2,3,0],[1,3,2,1]],[[1,0,1,1],[2,3,2,0],[2,2,3,0],[1,2,3,1]],[[1,0,1,1],[2,3,2,0],[2,2,4,1],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,2,3,1],[0,3,2,1]],[[1,0,1,1],[2,3,2,0],[2,2,3,1],[0,2,3,1]],[[1,0,1,1],[2,3,2,0],[2,2,3,1],[0,2,2,2]],[[1,0,1,1],[3,3,2,0],[2,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,2,0],[3,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,2,0],[2,2,3,1],[2,2,1,1]],[[1,0,1,1],[2,3,2,0],[2,2,3,1],[1,3,1,1]],[[1,0,1,1],[2,3,2,0],[2,2,4,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,0],[2,2,3,2],[0,3,2,0]],[[1,0,1,1],[2,3,2,0],[2,2,3,2],[0,2,3,0]],[[1,0,1,1],[3,3,2,0],[2,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,0],[3,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,0],[2,2,3,2],[2,2,0,1]],[[1,0,1,1],[2,3,2,0],[2,2,3,2],[1,3,0,1]],[[1,0,1,1],[3,3,2,0],[2,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,0],[3,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,0],[2,2,3,2],[2,2,1,0]],[[1,0,1,1],[2,3,2,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,3,4,2],[0,1,3,0],[0,2,2,0]],[[1,2,1,1],[2,4,3,2],[0,1,3,0],[0,2,2,0]],[[1,3,1,1],[2,3,3,2],[0,1,3,0],[0,2,2,0]],[[2,2,1,1],[2,3,3,2],[0,1,3,0],[0,2,2,0]],[[1,0,1,1],[3,3,2,0],[2,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[3,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,0,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,0,2],[1,3,2,1]],[[1,0,1,1],[3,3,2,0],[2,3,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[3,3,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,1,1],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,1,1],[1,3,2,1]],[[1,0,1,1],[3,3,2,0],[2,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[3,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,4,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,1,2],[0,3,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,1,2],[0,2,3,1]],[[1,0,1,1],[2,3,2,0],[2,3,1,2],[0,2,2,2]],[[1,0,1,1],[3,3,2,0],[2,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[3,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[2,4,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,1,2],[2,1,2,1]],[[1,0,1,1],[3,3,2,0],[2,3,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,0],[3,3,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,0],[2,3,1,2],[2,2,2,0]],[[1,0,1,1],[2,3,2,0],[2,3,1,2],[1,3,2,0]],[[1,0,1,1],[3,3,2,0],[2,3,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[3,3,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,2,0],[2,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,2,0],[1,3,2,1]],[[1,0,1,1],[3,3,2,0],[2,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[3,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,4,2,1],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,2,1],[0,3,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,2,1],[0,2,3,1]],[[1,0,1,1],[2,3,2,0],[2,3,2,1],[0,2,2,2]],[[1,0,1,1],[3,3,2,0],[2,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[3,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[2,4,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,2,1],[2,1,2,1]],[[1,0,1,1],[3,3,2,0],[2,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,0],[3,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,0],[2,4,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,0],[2,3,2,2],[0,3,2,0]],[[1,0,1,1],[2,3,2,0],[2,3,2,2],[0,2,3,0]],[[1,0,1,1],[3,3,2,0],[2,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,0],[3,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,0],[2,4,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,3,3,3],[0,1,3,0],[0,1,2,1]],[[1,2,1,1],[2,3,4,2],[0,1,3,0],[0,1,2,1]],[[1,2,1,2],[2,3,3,2],[0,1,3,0],[0,1,2,1]],[[1,0,1,1],[3,3,2,0],[2,3,3,0],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[3,3,3,0],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,4,3,0],[0,2,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,0],[0,3,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,0],[0,2,3,1]],[[1,0,1,1],[3,3,2,0],[2,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[3,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[2,4,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,0],[2,1,2,1]],[[1,0,1,1],[3,3,2,0],[2,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,2,0],[3,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,2,0],[2,4,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,1],[0,1,2,2]],[[1,0,1,1],[3,3,2,0],[2,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,2,0],[3,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,2,0],[2,4,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,2,0],[2,3,4,1],[0,2,1,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,1],[0,3,1,1]],[[1,0,1,1],[3,3,2,0],[2,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,2,0],[3,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,2,0],[2,4,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,4,1],[1,0,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,1],[2,0,2,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,1],[1,0,3,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,1],[1,0,2,2]],[[1,0,1,1],[3,3,2,0],[2,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,2,0],[3,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,2,0],[2,4,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,2,0],[2,3,4,1],[1,1,1,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,1],[2,1,1,1]],[[1,0,1,1],[3,3,2,0],[2,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,2,0],[3,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,2,0],[2,4,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,1],[2,2,0,1]],[[1,0,1,1],[3,3,2,0],[2,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,0],[3,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,0],[2,4,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,0],[2,3,4,2],[0,1,1,1]],[[1,0,1,1],[3,3,2,0],[2,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,0],[3,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,0],[2,4,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,0],[2,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,0],[2,3,3,2],[0,1,3,0]],[[1,0,1,1],[3,3,2,0],[2,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,0],[3,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,0],[2,4,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,0],[2,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,2],[0,3,0,1]],[[1,0,1,1],[3,3,2,0],[2,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,0],[3,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,0],[2,4,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,0],[2,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,3,3,3],[0,1,2,2],[1,1,1,0]],[[1,2,1,1],[2,3,4,2],[0,1,2,2],[1,1,1,0]],[[1,2,1,2],[2,3,3,2],[0,1,2,2],[1,1,1,0]],[[1,0,1,1],[3,3,2,0],[2,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,0],[3,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,0],[2,4,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,0],[2,3,4,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,2],[2,0,1,1]],[[1,0,1,1],[3,3,2,0],[2,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,0],[3,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,0],[2,4,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,0],[2,3,4,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,0],[2,3,3,2],[2,0,2,0]],[[1,0,1,1],[2,3,2,0],[2,3,3,2],[1,0,3,0]],[[1,0,1,1],[3,3,2,0],[2,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,0],[3,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,0],[2,4,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,0],[2,3,4,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,0],[2,3,3,2],[2,1,0,1]],[[1,0,1,1],[3,3,2,0],[2,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,0],[3,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,0],[2,4,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,0],[2,3,4,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,3,3,2],[0,1,2,3],[1,1,0,1]],[[1,2,1,1],[2,3,3,3],[0,1,2,2],[1,1,0,1]],[[1,2,1,1],[2,3,4,2],[0,1,2,2],[1,1,0,1]],[[1,2,1,2],[2,3,3,2],[0,1,2,2],[1,1,0,1]],[[1,0,1,1],[3,3,2,0],[2,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,2,0],[3,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,2,0],[2,4,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,3,3,2],[0,1,2,3],[1,0,2,0]],[[1,2,1,1],[2,3,3,3],[0,1,2,2],[1,0,2,0]],[[1,2,1,1],[2,3,4,2],[0,1,2,2],[1,0,2,0]],[[1,2,1,2],[2,3,3,2],[0,1,2,2],[1,0,2,0]],[[1,2,1,1],[2,3,3,2],[0,1,2,2],[1,0,1,2]],[[1,2,1,1],[2,3,3,2],[0,1,2,3],[1,0,1,1]],[[1,2,1,1],[2,3,3,3],[0,1,2,2],[1,0,1,1]],[[1,2,1,1],[2,3,4,2],[0,1,2,2],[1,0,1,1]],[[1,2,1,2],[2,3,3,2],[0,1,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,1],[0,2,2,3],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,2,2,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,2,2,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,1],[0,2,2,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,1],[0,2,2,2],[1,2,2,2]],[[1,0,1,1],[2,3,2,1],[0,2,4,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,2,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,2,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,2,1],[0,2,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,2,1],[0,2,3,1],[1,2,2,2]],[[1,0,1,1],[2,3,2,1],[0,2,4,2],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[0,2,3,3],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[0,2,3,2],[1,2,1,2]],[[1,0,1,1],[2,3,2,1],[0,2,4,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[0,2,3,3],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[0,2,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,2,1],[0,2,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,2,1],[0,2,3,2],[1,2,3,0]],[[2,0,1,1],[2,3,2,1],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[3,3,2,1],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,4,2,1],[0,3,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,4,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,1,3],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,1,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,1,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,1,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,1],[0,3,1,2],[1,2,2,2]],[[2,0,1,1],[2,3,2,1],[0,3,2,1],[1,2,2,1]],[[1,0,1,1],[3,3,2,1],[0,3,2,1],[1,2,2,1]],[[1,0,1,1],[2,4,2,1],[0,3,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,4,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,2,1],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,2,1],[1,3,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,2,1],[1,2,3,1]],[[1,0,1,1],[2,3,2,1],[0,3,2,1],[1,2,2,2]],[[1,0,1,1],[2,3,2,1],[0,3,2,3],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,2,2],[1,1,3,1]],[[1,0,1,1],[2,3,2,1],[0,3,2,2],[1,1,2,2]],[[2,0,1,1],[2,3,2,1],[0,3,2,2],[1,2,2,0]],[[1,0,1,1],[3,3,2,1],[0,3,2,2],[1,2,2,0]],[[1,0,1,1],[2,4,2,1],[0,3,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[0,4,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[0,3,2,2],[2,2,2,0]],[[1,0,1,1],[2,3,2,1],[0,3,2,2],[1,3,2,0]],[[1,0,1,1],[2,3,2,1],[0,3,2,2],[1,2,3,0]],[[1,0,1,1],[2,3,2,1],[0,4,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,0],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,0],[1,3,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,0],[1,2,3,1]],[[2,0,1,1],[2,3,2,1],[0,3,3,1],[1,1,2,1]],[[1,0,1,1],[3,3,2,1],[0,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,4,2,1],[0,3,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[0,4,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,4,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,1],[1,1,3,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,1],[1,1,2,2]],[[2,0,1,1],[2,3,2,1],[0,3,3,1],[1,2,1,1]],[[1,0,1,1],[3,3,2,1],[0,3,3,1],[1,2,1,1]],[[1,0,1,1],[2,4,2,1],[0,3,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[0,4,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[0,3,4,1],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,1],[2,2,1,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,1],[1,3,1,1]],[[1,0,1,1],[2,3,2,1],[0,3,4,2],[1,0,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,3],[1,0,2,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,2],[1,0,2,2]],[[2,0,1,1],[2,3,2,1],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[3,3,2,1],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,4,2,1],[0,3,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[0,4,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[0,3,4,2],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,3],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,2],[1,1,1,2]],[[2,0,1,1],[2,3,2,1],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[3,3,2,1],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,4,2,1],[0,3,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,1],[0,4,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,1],[0,3,4,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,1],[0,3,3,3],[1,1,2,0]],[[1,0,1,1],[2,3,2,1],[0,3,3,2],[1,1,3,0]],[[2,0,1,1],[2,3,2,1],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[3,3,2,1],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,4,2,1],[0,3,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,1],[0,4,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,1],[0,3,4,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,3],[1,2,0,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,2],[2,2,0,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,2],[1,3,0,1]],[[1,0,1,1],[2,3,2,1],[0,3,3,2],[1,2,0,2]],[[2,0,1,1],[2,3,2,1],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[3,3,2,1],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,4,2,1],[0,3,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,1],[0,4,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,1],[0,3,4,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,1],[0,3,3,3],[1,2,1,0]],[[1,0,1,1],[2,3,2,1],[0,3,3,2],[2,2,1,0]],[[1,0,1,1],[2,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,3,3,3],[0,1,2,2],[0,2,1,0]],[[1,2,1,1],[2,3,4,2],[0,1,2,2],[0,2,1,0]],[[1,2,1,2],[2,3,3,2],[0,1,2,2],[0,2,1,0]],[[1,2,1,1],[2,3,3,2],[0,1,2,3],[0,2,0,1]],[[1,2,1,1],[2,3,3,3],[0,1,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,1],[1,2,2,3],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[1,2,2,2],[0,3,2,1]],[[1,0,1,1],[2,3,2,1],[1,2,2,2],[0,2,3,1]],[[1,0,1,1],[2,3,2,1],[1,2,2,2],[0,2,2,2]],[[1,0,1,1],[2,3,2,1],[1,2,4,1],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[1,2,3,1],[0,3,2,1]],[[1,0,1,1],[2,3,2,1],[1,2,3,1],[0,2,3,1]],[[1,0,1,1],[2,3,2,1],[1,2,3,1],[0,2,2,2]],[[1,0,1,1],[2,3,2,1],[1,2,4,2],[0,2,1,1]],[[1,0,1,1],[2,3,2,1],[1,2,3,3],[0,2,1,1]],[[1,0,1,1],[2,3,2,1],[1,2,3,2],[0,2,1,2]],[[1,0,1,1],[2,3,2,1],[1,2,4,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,1],[1,2,3,3],[0,2,2,0]],[[1,0,1,1],[2,3,2,1],[1,2,3,2],[0,3,2,0]],[[1,0,1,1],[2,3,2,1],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,3,4,2],[0,1,2,2],[0,2,0,1]],[[1,2,1,2],[2,3,3,2],[0,1,2,2],[0,2,0,1]],[[2,0,1,1],[2,3,2,1],[1,3,1,2],[0,2,2,1]],[[1,0,1,1],[3,3,2,1],[1,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,4,2,1],[1,3,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[1,4,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,1,3],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,1,2],[0,3,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,1,2],[0,2,3,1]],[[1,0,1,1],[2,3,2,1],[1,3,1,2],[0,2,2,2]],[[2,0,1,1],[2,3,2,1],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[3,3,2,1],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,4,2,1],[1,3,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[1,4,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[1,4,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,2,0],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,2,0],[1,3,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,2,0],[1,2,3,1]],[[2,0,1,1],[2,3,2,1],[1,3,2,1],[0,2,2,1]],[[1,0,1,1],[3,3,2,1],[1,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,4,2,1],[1,3,2,1],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[1,4,2,1],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,2,1],[0,3,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,2,1],[0,2,3,1]],[[1,0,1,1],[2,3,2,1],[1,3,2,1],[0,2,2,2]],[[2,0,1,1],[2,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,0,1,1],[3,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,4,2,1],[1,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[1,4,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[1,4,2,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[1,3,2,1],[2,2,2,0]],[[1,0,1,1],[2,3,2,1],[1,3,2,1],[1,3,2,0]],[[1,0,1,1],[2,3,2,1],[1,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,3,2,1],[1,3,2,2],[0,1,2,2]],[[2,0,1,1],[2,3,2,1],[1,3,2,2],[0,2,2,0]],[[1,0,1,1],[3,3,2,1],[1,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,4,2,1],[1,3,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,1],[1,4,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,1],[1,3,2,2],[0,3,2,0]],[[1,0,1,1],[2,3,2,1],[1,3,2,2],[0,2,3,0]],[[1,0,1,1],[2,3,2,1],[1,3,2,3],[1,0,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,2,2],[1,0,3,1]],[[1,0,1,1],[2,3,2,1],[1,3,2,2],[1,0,2,2]],[[2,0,1,1],[2,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[3,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,4,2,1],[1,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,1],[1,4,2,2],[1,1,2,0]],[[1,2,1,1],[2,3,3,2],[0,1,2,3],[0,1,2,0]],[[1,2,1,1],[2,3,3,3],[0,1,2,2],[0,1,2,0]],[[1,2,1,1],[2,3,4,2],[0,1,2,2],[0,1,2,0]],[[1,2,1,2],[2,3,3,2],[0,1,2,2],[0,1,2,0]],[[1,2,1,1],[2,3,3,2],[0,1,2,2],[0,1,1,2]],[[1,2,1,1],[2,3,3,2],[0,1,2,3],[0,1,1,1]],[[1,2,1,1],[2,3,3,3],[0,1,2,2],[0,1,1,1]],[[1,2,1,1],[2,3,4,2],[0,1,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,1],[1,4,3,0],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,0],[0,3,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,0],[0,2,3,1]],[[1,0,1,1],[2,3,2,1],[1,4,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,0],[2,2,1,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,0],[1,3,1,1]],[[2,0,1,1],[2,3,2,1],[1,3,3,1],[0,1,2,1]],[[1,0,1,1],[3,3,2,1],[1,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,4,2,1],[1,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,2,1],[1,4,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,1],[0,1,2,2]],[[2,0,1,1],[2,3,2,1],[1,3,3,1],[0,2,1,1]],[[1,0,1,1],[3,3,2,1],[1,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,4,2,1],[1,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,2,1],[1,4,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,2,1],[1,3,4,1],[0,2,1,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,1],[0,3,1,1]],[[2,0,1,1],[2,3,2,1],[1,3,3,1],[1,0,2,1]],[[1,0,1,1],[3,3,2,1],[1,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,4,2,1],[1,3,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,2,1],[1,4,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,4,1],[1,0,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,1],[1,0,3,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,1],[1,0,2,2]],[[2,0,1,1],[2,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[3,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,4,2,1],[1,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[1,4,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[1,3,4,1],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[1,4,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,2,1],[1,3,3,1],[2,2,1,0]],[[1,0,1,1],[2,3,2,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,2],[2,3,3,2],[0,1,2,2],[0,1,1,1]],[[1,2,1,1],[2,3,3,2],[0,1,2,2],[0,0,2,2]],[[1,2,1,1],[2,3,3,2],[0,1,2,3],[0,0,2,1]],[[1,2,1,1],[2,3,3,3],[0,1,2,2],[0,0,2,1]],[[1,2,1,1],[2,3,4,2],[0,1,2,2],[0,0,2,1]],[[1,2,1,2],[2,3,3,2],[0,1,2,2],[0,0,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,2],[0,0,2,2]],[[2,0,1,1],[2,3,2,1],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[3,3,2,1],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,4,2,1],[1,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,1],[1,4,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,1],[1,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,2],[0,1,1,2]],[[2,0,1,1],[2,3,2,1],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[3,3,2,1],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,4,2,1],[1,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,1],[1,4,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,1],[1,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,1],[1,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,3,2,1],[1,3,3,2],[0,1,3,0]],[[2,0,1,1],[2,3,2,1],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[3,3,2,1],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,4,2,1],[1,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,1],[1,4,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,1],[1,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,2],[0,3,0,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,2],[0,2,0,2]],[[2,0,1,1],[2,3,2,1],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[3,3,2,1],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,4,2,1],[1,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,1],[1,4,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,1],[1,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,1],[1,3,3,3],[0,2,1,0]],[[1,0,1,1],[2,3,2,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,3,3,2],[0,1,1,2],[1,0,2,2]],[[1,2,1,1],[2,3,3,2],[0,1,1,3],[1,0,2,1]],[[1,2,1,1],[2,3,3,3],[0,1,1,2],[1,0,2,1]],[[1,2,1,1],[2,3,4,2],[0,1,1,2],[1,0,2,1]],[[1,2,1,2],[2,3,3,2],[0,1,1,2],[1,0,2,1]],[[2,0,1,1],[2,3,2,1],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[3,3,2,1],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,4,2,1],[1,3,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,1],[1,4,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,1],[1,3,4,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,3],[1,0,1,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,2],[1,0,1,2]],[[2,0,1,1],[2,3,2,1],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[3,3,2,1],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,4,2,1],[1,3,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,1],[1,4,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,1],[1,3,4,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,1],[1,3,3,3],[1,0,2,0]],[[1,0,1,1],[2,3,2,1],[1,3,3,2],[1,0,3,0]],[[2,0,1,1],[2,3,2,1],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[3,3,2,1],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,4,2,1],[1,3,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,1],[1,4,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,1],[1,3,4,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,3],[1,1,0,1]],[[1,0,1,1],[2,3,2,1],[1,3,3,2],[1,1,0,2]],[[2,0,1,1],[2,3,2,1],[1,3,3,2],[1,1,1,0]],[[1,0,1,1],[3,3,2,1],[1,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,4,2,1],[1,3,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,1],[1,4,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,1],[1,3,4,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,1],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[2,3,3,2],[0,1,1,2],[0,1,2,2]],[[2,0,1,1],[2,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,0,1,1],[3,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,4,2,1],[1,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[2,3,3,2],[0,1,1,3],[0,1,2,1]],[[1,2,1,1],[2,3,3,3],[0,1,1,2],[0,1,2,1]],[[1,2,1,1],[2,3,4,2],[0,1,1,2],[0,1,2,1]],[[1,2,1,2],[2,3,3,2],[0,1,1,2],[0,1,2,1]],[[1,2,1,1],[2,3,3,2],[0,0,3,3],[1,0,2,0]],[[1,2,1,1],[2,3,3,3],[0,0,3,2],[1,0,2,0]],[[1,2,1,1],[2,3,4,2],[0,0,3,2],[1,0,2,0]],[[1,2,1,2],[2,3,3,2],[0,0,3,2],[1,0,2,0]],[[1,2,1,1],[2,3,3,2],[0,0,3,2],[1,0,1,2]],[[1,2,1,1],[2,3,3,2],[0,0,3,3],[1,0,1,1]],[[1,2,1,1],[2,3,3,3],[0,0,3,2],[1,0,1,1]],[[1,2,1,1],[2,3,4,2],[0,0,3,2],[1,0,1,1]],[[1,2,1,2],[2,3,3,2],[0,0,3,2],[1,0,1,1]],[[2,0,1,1],[2,3,2,1],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[3,3,2,1],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,4,2,1],[2,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[3,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,0,2,3],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,0,2,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,0,2,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,1],[2,0,2,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,1],[2,0,2,2],[1,2,2,2]],[[2,0,1,1],[2,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[3,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,4,2,1],[2,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[3,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,0,4,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,0,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,0,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,2,1],[2,0,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,2,1],[2,0,3,1],[1,2,2,2]],[[1,0,1,1],[2,3,2,1],[2,0,4,2],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[2,0,3,3],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[2,0,3,2],[1,2,1,2]],[[2,0,1,1],[2,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[3,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,4,2,1],[2,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[3,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,0,4,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,0,3,3],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,0,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,0,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,2,1],[2,0,3,2],[1,2,3,0]],[[2,0,1,1],[2,3,2,1],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[3,3,2,1],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,4,2,1],[2,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[3,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,1,1,3],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,1,1,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,1,1,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,1],[2,1,1,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,1],[2,1,1,2],[1,2,2,2]],[[2,0,1,1],[2,3,2,1],[2,1,2,1],[1,2,2,1]],[[1,0,1,1],[3,3,2,1],[2,1,2,1],[1,2,2,1]],[[1,0,1,1],[2,4,2,1],[2,1,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[3,1,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,1,2,1],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,1,2,1],[1,3,2,1]],[[1,0,1,1],[2,3,2,1],[2,1,2,1],[1,2,3,1]],[[1,0,1,1],[2,3,2,1],[2,1,2,1],[1,2,2,2]],[[2,0,1,1],[2,3,2,1],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[3,3,2,1],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,4,2,1],[2,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[3,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,1,2,2],[2,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,1,2,2],[1,3,2,0]],[[1,0,1,1],[2,3,2,1],[2,1,2,2],[1,2,3,0]],[[2,0,1,1],[2,3,2,1],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[3,3,2,1],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,4,2,1],[2,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[3,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[2,1,3,1],[2,2,1,1]],[[1,0,1,1],[2,3,2,1],[2,1,3,1],[1,3,1,1]],[[2,0,1,1],[2,3,2,1],[2,1,3,2],[1,2,0,1]],[[1,0,1,1],[3,3,2,1],[2,1,3,2],[1,2,0,1]],[[1,0,1,1],[2,4,2,1],[2,1,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,1],[3,1,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,1],[2,1,3,2],[2,2,0,1]],[[1,0,1,1],[2,3,2,1],[2,1,3,2],[1,3,0,1]],[[2,0,1,1],[2,3,2,1],[2,1,3,2],[1,2,1,0]],[[1,0,1,1],[3,3,2,1],[2,1,3,2],[1,2,1,0]],[[1,0,1,1],[2,4,2,1],[2,1,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,1],[3,1,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,1],[2,1,3,2],[2,2,1,0]],[[1,0,1,1],[2,3,2,1],[2,1,3,2],[1,3,1,0]],[[2,0,1,1],[2,3,2,1],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[3,3,2,1],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[2,4,2,1],[2,2,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[3,2,1,2],[0,2,2,1]],[[2,0,1,1],[2,3,2,1],[2,2,1,2],[1,1,2,1]],[[1,0,1,1],[3,3,2,1],[2,2,1,2],[1,1,2,1]],[[1,0,1,1],[2,4,2,1],[2,2,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[3,2,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[2,2,1,2],[2,1,2,1]],[[1,0,1,1],[3,3,2,1],[2,2,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[3,2,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,2,2,0],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,2,2,0],[1,3,2,1]],[[1,0,1,1],[2,3,2,1],[2,2,2,0],[1,2,3,1]],[[2,0,1,1],[2,3,2,1],[2,2,2,1],[0,2,2,1]],[[1,0,1,1],[3,3,2,1],[2,2,2,1],[0,2,2,1]],[[1,0,1,1],[2,4,2,1],[2,2,2,1],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[3,2,2,1],[0,2,2,1]],[[2,0,1,1],[2,3,2,1],[2,2,2,1],[1,1,2,1]],[[1,0,1,1],[3,3,2,1],[2,2,2,1],[1,1,2,1]],[[1,0,1,1],[2,4,2,1],[2,2,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[3,2,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[2,2,2,1],[2,1,2,1]],[[1,0,1,1],[3,3,2,1],[2,2,2,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[3,2,2,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,2,2,1],[2,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,2,2,1],[1,3,2,0]],[[2,0,1,1],[2,3,2,1],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[3,3,2,1],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[2,4,2,1],[2,2,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,1],[3,2,2,2],[0,2,2,0]],[[2,0,1,1],[2,3,2,1],[2,2,2,2],[1,1,2,0]],[[1,0,1,1],[3,3,2,1],[2,2,2,2],[1,1,2,0]],[[1,0,1,1],[2,4,2,1],[2,2,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,1],[3,2,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,1],[2,2,2,2],[2,1,2,0]],[[1,2,1,1],[2,3,3,2],[0,0,3,3],[0,1,2,0]],[[1,2,1,1],[2,3,3,3],[0,0,3,2],[0,1,2,0]],[[1,2,1,1],[2,3,4,2],[0,0,3,2],[0,1,2,0]],[[1,2,1,2],[2,3,3,2],[0,0,3,2],[0,1,2,0]],[[1,2,1,1],[2,3,3,2],[0,0,3,2],[0,1,1,2]],[[1,2,1,1],[2,3,3,2],[0,0,3,3],[0,1,1,1]],[[1,0,1,1],[3,3,2,1],[2,2,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[3,2,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,2,1],[2,2,3,0],[2,2,1,1]],[[1,0,1,1],[2,3,2,1],[2,2,3,0],[1,3,1,1]],[[2,0,1,1],[2,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,0,1,1],[3,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,0,1,1],[2,4,2,1],[2,2,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,2,1],[3,2,3,1],[0,1,2,1]],[[2,0,1,1],[2,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[3,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,4,2,1],[2,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,2,1],[3,2,3,1],[0,2,1,1]],[[2,0,1,1],[2,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,0,1,1],[3,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,4,2,1],[2,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,2,1],[3,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,2,1],[2,2,3,1],[2,0,2,1]],[[2,0,1,1],[2,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,0,1,1],[3,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,4,2,1],[2,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[3,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[2,2,3,1],[2,1,1,1]],[[1,0,1,1],[3,3,2,1],[2,2,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,2,1],[3,2,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,2,1],[2,2,3,1],[2,2,1,0]],[[1,0,1,1],[2,3,2,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[2,3,3,3],[0,0,3,2],[0,1,1,1]],[[1,2,1,1],[2,3,4,2],[0,0,3,2],[0,1,1,1]],[[1,2,1,2],[2,3,3,2],[0,0,3,2],[0,1,1,1]],[[1,2,1,1],[2,3,3,2],[0,0,3,2],[0,0,2,2]],[[1,2,1,1],[2,3,3,2],[0,0,3,3],[0,0,2,1]],[[1,2,1,1],[2,3,3,3],[0,0,3,2],[0,0,2,1]],[[1,2,1,1],[2,3,4,2],[0,0,3,2],[0,0,2,1]],[[1,2,1,2],[2,3,3,2],[0,0,3,2],[0,0,2,1]],[[2,0,1,1],[2,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,0,1,1],[3,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,4,2,1],[2,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,1],[3,2,3,2],[0,1,1,1]],[[2,0,1,1],[2,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,0,1,1],[3,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,4,2,1],[2,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,1],[3,2,3,2],[0,1,2,0]],[[2,0,1,1],[2,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,0,1,1],[3,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,0,1,1],[2,4,2,1],[2,2,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,1],[3,2,3,2],[0,2,0,1]],[[2,0,1,1],[2,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,0,1,1],[3,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,0,1,1],[2,4,2,1],[2,2,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,1],[3,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,3,3,3],[0,0,3,1],[0,2,2,0]],[[2,0,1,1],[2,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,0,1,1],[3,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,0,1,1],[2,4,2,1],[2,2,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,1],[3,2,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,1],[2,2,3,2],[2,0,1,1]],[[2,0,1,1],[2,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,0,1,1],[3,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,0,1,1],[2,4,2,1],[2,2,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,1],[3,2,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,1],[2,2,3,2],[2,0,2,0]],[[2,0,1,1],[2,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,0,1,1],[3,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,4,2,1],[2,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,1],[3,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,1],[2,2,3,2],[2,1,0,1]],[[2,0,1,1],[2,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,0,1,1],[3,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,0,1,1],[2,4,2,1],[2,2,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,1],[3,2,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,1],[2,2,3,2],[2,1,1,0]],[[1,2,1,1],[2,3,4,2],[0,0,3,1],[0,2,2,0]],[[1,2,1,2],[2,3,3,2],[0,0,3,1],[0,2,2,0]],[[1,2,1,1],[2,3,3,3],[0,0,3,1],[0,2,1,1]],[[1,2,1,1],[2,3,4,2],[0,0,3,1],[0,2,1,1]],[[1,2,1,2],[2,3,3,2],[0,0,3,1],[0,2,1,1]],[[2,0,1,1],[2,3,2,1],[2,2,3,2],[1,2,0,0]],[[1,0,1,1],[3,3,2,1],[2,2,3,2],[1,2,0,0]],[[1,0,1,1],[2,4,2,1],[2,2,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,2,1],[3,2,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,2,1],[2,2,3,2],[2,2,0,0]],[[1,2,1,1],[2,3,3,3],[0,0,3,0],[0,2,2,1]],[[1,2,1,1],[2,3,4,2],[0,0,3,0],[0,2,2,1]],[[1,2,1,2],[2,3,3,2],[0,0,3,0],[0,2,2,1]],[[1,2,1,1],[2,3,3,2],[0,0,2,3],[0,2,2,0]],[[1,2,1,1],[2,3,3,3],[0,0,2,2],[0,2,2,0]],[[1,2,1,1],[2,3,4,2],[0,0,2,2],[0,2,2,0]],[[1,2,1,2],[2,3,3,2],[0,0,2,2],[0,2,2,0]],[[1,2,1,1],[2,3,3,2],[0,0,2,2],[0,2,1,2]],[[1,2,1,1],[2,3,3,2],[0,0,2,3],[0,2,1,1]],[[1,2,1,1],[2,3,3,3],[0,0,2,2],[0,2,1,1]],[[1,0,1,1],[3,3,2,1],[2,3,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[3,3,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,3,1,0],[2,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,3,1,0],[1,3,2,1]],[[1,0,1,1],[3,3,2,1],[2,3,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[3,3,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,3,1,1],[2,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,3,1,1],[1,3,2,0]],[[1,2,1,1],[2,3,4,2],[0,0,2,2],[0,2,1,1]],[[1,2,1,2],[2,3,3,2],[0,0,2,2],[0,2,1,1]],[[1,2,1,1],[2,3,3,2],[0,0,1,2],[0,2,2,2]],[[1,2,1,1],[2,3,3,2],[0,0,1,2],[0,2,3,1]],[[1,0,1,1],[3,3,2,1],[2,3,2,0],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[3,3,2,0],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,4,2,0],[0,2,2,1]],[[1,0,1,1],[2,3,2,1],[2,3,2,0],[0,3,2,1]],[[1,0,1,1],[2,3,2,1],[2,3,2,0],[0,2,3,1]],[[1,0,1,1],[3,3,2,1],[2,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[3,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[2,4,2,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,1],[2,3,2,0],[2,1,2,1]],[[1,0,1,1],[3,3,2,1],[2,3,2,1],[0,2,2,0]],[[1,0,1,1],[2,3,2,1],[3,3,2,1],[0,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,4,2,1],[0,2,2,0]],[[1,0,1,1],[2,3,2,1],[2,3,2,1],[0,3,2,0]],[[1,0,1,1],[3,3,2,1],[2,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,3,2,1],[3,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,3,2,1],[2,4,2,1],[1,1,2,0]],[[1,0,1,1],[2,3,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[2,3,3,2],[0,0,1,3],[0,2,2,1]],[[1,2,1,1],[2,3,3,3],[0,0,1,2],[0,2,2,1]],[[1,2,1,1],[2,3,4,2],[0,0,1,2],[0,2,2,1]],[[1,2,1,2],[2,3,3,2],[0,0,1,2],[0,2,2,1]],[[1,0,1,1],[3,3,2,1],[2,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,2,1],[3,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,2,1],[2,4,3,0],[0,1,2,1]],[[1,0,1,1],[3,3,2,1],[2,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,2,1],[3,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,2,1],[2,4,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,2,1],[2,3,3,0],[0,3,1,1]],[[1,0,1,1],[3,3,2,1],[2,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,2,1],[3,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,2,1],[2,4,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,2,1],[2,3,3,0],[2,0,2,1]],[[1,0,1,1],[3,3,2,1],[2,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[3,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[2,4,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,2,1],[2,3,3,0],[2,1,1,1]],[[1,0,1,1],[3,3,2,1],[2,3,3,0],[1,2,0,1]],[[1,0,1,1],[2,3,2,1],[3,3,3,0],[1,2,0,1]],[[1,0,1,1],[2,3,2,1],[2,4,3,0],[1,2,0,1]],[[1,0,1,1],[2,3,2,1],[2,3,3,0],[2,2,0,1]],[[1,0,1,1],[3,3,2,1],[2,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,2,1],[3,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,2,1],[2,4,3,1],[0,1,2,0]],[[1,0,1,1],[3,3,2,1],[2,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,2,1],[3,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,2,1],[2,4,3,1],[0,2,0,1]],[[1,0,1,1],[3,3,2,1],[2,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,2,1],[3,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,2,1],[2,4,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,2,1],[2,3,3,1],[0,3,1,0]],[[1,0,1,1],[3,3,2,1],[2,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,2,1],[3,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,2,1],[2,4,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,2,1],[2,3,3,1],[2,0,2,0]],[[1,0,1,1],[3,3,2,1],[2,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,2,1],[3,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,2,1],[2,4,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,2,1],[2,3,3,1],[2,1,0,1]],[[1,0,1,1],[3,3,2,1],[2,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,2,1],[3,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,2,1],[2,4,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,2,1],[2,3,3,1],[2,1,1,0]],[[1,0,1,1],[3,3,2,1],[2,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,3,2,1],[3,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,3,2,1],[2,4,3,1],[1,2,0,0]],[[1,0,1,1],[2,3,2,1],[2,3,3,1],[2,2,0,0]],[[2,0,1,1],[2,3,2,1],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[3,3,2,1],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[2,4,2,1],[2,3,3,2],[1,0,0,1]],[[1,0,1,1],[2,3,2,1],[3,3,3,2],[1,0,0,1]],[[2,0,1,1],[2,3,2,1],[2,3,3,2],[1,0,1,0]],[[1,0,1,1],[3,3,2,1],[2,3,3,2],[1,0,1,0]],[[1,0,1,1],[2,4,2,1],[2,3,3,2],[1,0,1,0]],[[1,0,1,1],[2,3,2,1],[3,3,3,2],[1,0,1,0]],[[1,2,1,1],[3,3,3,1],[2,2,3,1],[1,0,0,0]],[[1,3,1,1],[2,3,3,1],[2,2,3,1],[1,0,0,0]],[[2,2,1,1],[2,3,3,1],[2,2,3,1],[1,0,0,0]],[[1,0,1,2],[2,3,2,2],[0,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,3],[0,0,3,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,0,3,3],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,0,3,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[0,0,3,2],[1,2,2,2]],[[1,0,1,2],[2,3,2,2],[0,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,3],[0,1,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,1,2,3],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,1,2,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,1,2,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,2],[0,1,2,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[0,1,2,2],[1,2,2,2]],[[1,0,1,1],[2,3,2,2],[0,1,4,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,1,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,1,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,2,2],[0,1,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[0,1,3,1],[1,2,2,2]],[[1,0,1,2],[2,3,2,2],[0,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,2,3],[0,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,2,2],[0,1,4,2],[1,2,1,1]],[[1,0,1,1],[2,3,2,2],[0,1,3,3],[1,2,1,1]],[[1,0,1,1],[2,3,2,2],[0,1,3,2],[1,2,1,2]],[[1,0,1,2],[2,3,2,2],[0,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,3],[0,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[0,1,4,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[0,1,3,3],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[0,1,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,2,2],[0,1,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,2,2],[0,1,3,2],[1,2,3,0]],[[1,0,1,2],[2,3,2,2],[0,2,2,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,3],[0,2,2,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[0,2,2,3],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[0,2,2,2],[1,1,3,1]],[[1,0,1,1],[2,3,2,2],[0,2,2,2],[1,1,2,2]],[[1,0,1,1],[2,3,2,2],[0,2,4,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,0],[2,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,0],[1,3,2,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,0],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,0],[1,2,2,2]],[[1,0,1,1],[2,3,2,2],[0,2,4,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,1],[1,1,3,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,1],[1,1,2,2]],[[1,0,1,1],[2,3,2,2],[0,2,4,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[0,2,3,1],[2,2,2,0]],[[1,0,1,1],[2,3,2,2],[0,2,3,1],[1,3,2,0]],[[1,0,1,1],[2,3,2,2],[0,2,3,1],[1,2,3,0]],[[1,0,1,2],[2,3,2,2],[0,2,3,2],[1,0,2,1]],[[1,0,1,1],[2,3,2,3],[0,2,3,2],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[0,2,4,2],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,3],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,2],[1,0,2,2]],[[1,0,1,2],[2,3,2,2],[0,2,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,2,3],[0,2,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[0,2,4,2],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,3],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,2],[1,1,1,2]],[[1,0,1,2],[2,3,2,2],[0,2,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,3],[0,2,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[0,2,4,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[0,2,3,3],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[0,2,3,2],[1,1,3,0]],[[1,0,1,2],[2,3,2,2],[0,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,3],[0,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[0,2,4,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,3],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[0,2,3,2],[1,2,0,2]],[[1,0,1,2],[2,3,2,2],[0,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,3],[0,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,2],[0,2,4,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,2],[0,2,3,3],[1,2,1,0]],[[2,0,1,1],[2,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,0,1,2],[2,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,0,1,1],[3,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,4,2,2],[0,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,3],[0,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,4,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,0,3],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,0,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,0,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,0,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[0,3,0,2],[1,2,2,2]],[[2,0,1,1],[2,3,2,2],[0,3,2,0],[1,2,2,1]],[[1,0,1,1],[3,3,2,2],[0,3,2,0],[1,2,2,1]],[[1,0,1,1],[2,4,2,2],[0,3,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,4,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,2,0],[2,2,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,2,0],[1,3,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,2,0],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[0,3,2,0],[1,2,2,2]],[[2,0,1,1],[2,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,0,1,1],[3,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,0,1,1],[2,4,2,2],[0,3,2,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[0,4,2,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[0,3,2,1],[2,2,2,0]],[[1,0,1,1],[2,3,2,2],[0,3,2,1],[1,3,2,0]],[[1,0,1,1],[2,3,2,2],[0,3,2,1],[1,2,3,0]],[[1,0,1,2],[2,3,2,2],[0,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,3,2,3],[0,3,2,2],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,2,1,1],[3,3,3,1],[2,2,3,0],[1,0,1,0]],[[1,3,1,1],[2,3,3,1],[2,2,3,0],[1,0,1,0]],[[2,2,1,1],[2,3,3,1],[2,2,3,0],[1,0,1,0]],[[2,0,1,1],[2,3,2,2],[0,3,3,0],[1,1,2,1]],[[1,0,1,1],[3,3,2,2],[0,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,4,2,2],[0,3,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[0,4,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,4,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,0],[1,1,3,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,0],[1,1,2,2]],[[2,0,1,1],[2,3,2,2],[0,3,3,0],[1,2,1,1]],[[1,0,1,1],[3,3,2,2],[0,3,3,0],[1,2,1,1]],[[1,0,1,1],[2,4,2,2],[0,3,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,2,2],[0,4,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,2,2],[0,3,4,0],[1,2,1,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,0],[2,2,1,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,0],[1,3,1,1]],[[1,0,1,1],[2,3,2,2],[0,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,1],[0,1,2,2]],[[2,0,1,1],[2,3,2,2],[0,3,3,1],[1,1,1,1]],[[1,0,1,1],[3,3,2,2],[0,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,4,2,2],[0,3,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[0,4,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[0,3,4,1],[1,1,1,1]],[[2,0,1,1],[2,3,2,2],[0,3,3,1],[1,1,2,0]],[[1,0,1,1],[3,3,2,2],[0,3,3,1],[1,1,2,0]],[[1,0,1,1],[2,4,2,2],[0,3,3,1],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[0,4,3,1],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[0,3,4,1],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[0,3,3,1],[1,1,3,0]],[[2,0,1,1],[2,3,2,2],[0,3,3,1],[1,2,0,1]],[[1,0,1,1],[3,3,2,2],[0,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,4,2,2],[0,3,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[0,4,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[0,3,4,1],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,1],[2,2,0,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,1],[1,3,0,1]],[[2,0,1,1],[2,3,2,2],[0,3,3,1],[1,2,1,0]],[[1,0,1,1],[3,3,2,2],[0,3,3,1],[1,2,1,0]],[[1,0,1,1],[2,4,2,2],[0,3,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,2,2],[0,4,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,2,2],[0,3,4,1],[1,2,1,0]],[[1,0,1,1],[2,3,2,2],[0,3,3,1],[2,2,1,0]],[[1,0,1,1],[2,3,2,2],[0,3,3,1],[1,3,1,0]],[[1,0,1,2],[2,3,2,2],[0,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,2,3],[0,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,2],[0,0,2,2]],[[1,0,1,2],[2,3,2,2],[0,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,3],[0,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[0,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,2],[0,1,1,2]],[[1,0,1,2],[2,3,2,2],[0,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,3],[0,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[0,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[0,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[0,3,3,2],[0,1,3,0]],[[1,0,1,2],[2,3,2,2],[0,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,3],[0,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[0,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[0,3,3,2],[0,2,0,2]],[[1,0,1,2],[2,3,2,2],[0,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,3],[0,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,2],[0,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,1,1],[3,3,3,1],[2,2,2,1],[1,0,1,0]],[[1,3,1,1],[2,3,3,1],[2,2,2,1],[1,0,1,0]],[[2,2,1,1],[2,3,3,1],[2,2,2,1],[1,0,1,0]],[[1,2,1,1],[3,3,3,1],[2,2,2,1],[1,0,0,1]],[[1,3,1,1],[2,3,3,1],[2,2,2,1],[1,0,0,1]],[[2,2,1,1],[2,3,3,1],[2,2,2,1],[1,0,0,1]],[[1,0,1,2],[2,3,2,2],[1,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,3],[1,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,0,2,3],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,0,2,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,0,2,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,2],[1,0,2,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[1,0,2,2],[1,2,2,2]],[[1,0,1,1],[2,3,2,2],[1,0,4,1],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,0,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,0,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,2,2],[1,0,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[1,0,3,1],[1,2,2,2]],[[1,0,1,2],[2,3,2,2],[1,0,3,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,3],[1,0,3,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,0,3,3],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,0,3,2],[0,2,3,1]],[[1,0,1,1],[2,3,2,2],[1,0,3,2],[0,2,2,2]],[[1,0,1,2],[2,3,2,2],[1,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,2,3],[1,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,2,2],[1,0,4,2],[1,2,1,1]],[[1,0,1,1],[2,3,2,2],[1,0,3,3],[1,2,1,1]],[[1,0,1,1],[2,3,2,2],[1,0,3,2],[1,2,1,2]],[[1,0,1,2],[2,3,2,2],[1,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,3],[1,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[1,0,4,2],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[1,0,3,3],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[1,0,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,2,2],[1,0,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,2,2],[1,0,3,2],[1,2,3,0]],[[1,0,1,2],[2,3,2,2],[1,1,2,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,3],[1,1,2,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,1,2,3],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,1,2,2],[0,3,2,1]],[[1,0,1,1],[2,3,2,2],[1,1,2,2],[0,2,3,1]],[[1,0,1,1],[2,3,2,2],[1,1,2,2],[0,2,2,2]],[[1,0,1,1],[2,3,2,2],[1,1,4,1],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,1,3,1],[0,3,2,1]],[[1,0,1,1],[2,3,2,2],[1,1,3,1],[0,2,3,1]],[[1,0,1,1],[2,3,2,2],[1,1,3,1],[0,2,2,2]],[[1,0,1,2],[2,3,2,2],[1,1,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,2,3],[1,1,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,2,2],[1,1,4,2],[0,2,1,1]],[[1,0,1,1],[2,3,2,2],[1,1,3,3],[0,2,1,1]],[[1,0,1,1],[2,3,2,2],[1,1,3,2],[0,2,1,2]],[[1,0,1,2],[2,3,2,2],[1,1,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,3],[1,1,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,2],[1,1,4,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,2],[1,1,3,3],[0,2,2,0]],[[1,0,1,1],[2,3,2,2],[1,1,3,2],[0,3,2,0]],[[1,0,1,1],[2,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,0,1,2],[2,3,2,2],[1,2,2,2],[0,1,2,1]],[[1,0,1,1],[2,3,2,3],[1,2,2,2],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[1,2,2,3],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[1,2,2,2],[0,1,3,1]],[[1,0,1,1],[2,3,2,2],[1,2,2,2],[0,1,2,2]],[[1,0,1,2],[2,3,2,2],[1,2,2,2],[1,0,2,1]],[[1,0,1,1],[2,3,2,3],[1,2,2,2],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[1,2,2,3],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[1,2,2,2],[1,0,3,1]],[[1,0,1,1],[2,3,2,2],[1,2,2,2],[1,0,2,2]],[[1,0,1,1],[2,3,2,2],[1,2,4,0],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,0],[0,3,2,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,0],[0,2,3,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,0],[0,2,2,2]],[[1,0,1,1],[2,3,2,2],[1,2,4,1],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,1],[0,1,3,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,1],[0,1,2,2]],[[1,0,1,1],[2,3,2,2],[1,2,4,1],[0,2,2,0]],[[1,0,1,1],[2,3,2,2],[1,2,3,1],[0,3,2,0]],[[1,0,1,1],[2,3,2,2],[1,2,3,1],[0,2,3,0]],[[1,0,1,1],[2,3,2,2],[1,2,4,1],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,1],[1,0,3,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,1],[1,0,2,2]],[[1,0,1,2],[2,3,2,2],[1,2,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,2,3],[1,2,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,2,2],[1,2,4,2],[0,0,2,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,3],[0,0,2,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,2],[0,0,2,2]],[[1,0,1,2],[2,3,2,2],[1,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,3],[1,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[1,2,4,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,3],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,2],[0,1,1,2]],[[1,0,1,2],[2,3,2,2],[1,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,3],[1,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[1,2,4,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[1,2,3,3],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[1,2,3,2],[0,1,3,0]],[[1,0,1,2],[2,3,2,2],[1,2,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,3],[1,2,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[1,2,4,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,3],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,2],[0,2,0,2]],[[1,0,1,2],[2,3,2,2],[1,2,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,3],[1,2,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,2],[1,2,4,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,0,1,2],[2,3,2,2],[1,2,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,3],[1,2,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,2],[1,2,4,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,3],[1,0,1,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,2],[1,0,1,2]],[[1,0,1,2],[2,3,2,2],[1,2,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,3],[1,2,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,2],[1,2,4,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,2],[1,2,3,3],[1,0,2,0]],[[1,0,1,1],[2,3,2,2],[1,2,3,2],[1,0,3,0]],[[1,0,1,2],[2,3,2,2],[1,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,3],[1,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,2],[1,2,4,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,3],[1,1,0,1]],[[1,0,1,1],[2,3,2,2],[1,2,3,2],[1,1,0,2]],[[1,0,1,2],[2,3,2,2],[1,2,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,3],[1,2,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,2],[1,2,4,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,1,1],[3,3,3,1],[2,2,2,0],[1,0,1,1]],[[1,3,1,1],[2,3,3,1],[2,2,2,0],[1,0,1,1]],[[2,2,1,1],[2,3,3,1],[2,2,2,0],[1,0,1,1]],[[2,0,1,1],[2,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,0,1,2],[2,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,0,1,1],[3,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,4,2,2],[1,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,3],[1,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,4,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,3,0,3],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,3,0,2],[0,3,2,1]],[[1,0,1,1],[2,3,2,2],[1,3,0,2],[0,2,3,1]],[[1,0,1,1],[2,3,2,2],[1,3,0,2],[0,2,2,2]],[[2,0,1,1],[2,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,0,1,1],[3,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,4,2,2],[1,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[1,4,0,2],[1,1,2,1]],[[2,0,1,1],[2,3,2,2],[1,3,2,0],[0,2,2,1]],[[1,0,1,1],[3,3,2,2],[1,3,2,0],[0,2,2,1]],[[1,0,1,1],[2,4,2,2],[1,3,2,0],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,4,2,0],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[1,3,2,0],[0,3,2,1]],[[1,0,1,1],[2,3,2,2],[1,3,2,0],[0,2,3,1]],[[1,0,1,1],[2,3,2,2],[1,3,2,0],[0,2,2,2]],[[2,0,1,1],[2,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,0,1,1],[3,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,4,2,2],[1,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[1,4,2,0],[1,1,2,1]],[[2,0,1,1],[2,3,2,2],[1,3,2,1],[0,2,2,0]],[[1,0,1,1],[3,3,2,2],[1,3,2,1],[0,2,2,0]],[[1,0,1,1],[2,4,2,2],[1,3,2,1],[0,2,2,0]],[[1,0,1,1],[2,3,2,2],[1,4,2,1],[0,2,2,0]],[[1,0,1,1],[2,3,2,2],[1,3,2,1],[0,3,2,0]],[[1,0,1,1],[2,3,2,2],[1,3,2,1],[0,2,3,0]],[[2,0,1,1],[2,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,0,1,1],[3,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,4,2,2],[1,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[1,4,2,1],[1,1,2,0]],[[1,2,1,1],[3,3,3,1],[2,2,1,2],[1,0,1,0]],[[1,3,1,1],[2,3,3,1],[2,2,1,2],[1,0,1,0]],[[2,2,1,1],[2,3,3,1],[2,2,1,2],[1,0,1,0]],[[1,2,1,1],[3,3,3,1],[2,2,1,2],[1,0,0,1]],[[1,3,1,1],[2,3,3,1],[2,2,1,2],[1,0,0,1]],[[2,2,1,1],[2,3,3,1],[2,2,1,2],[1,0,0,1]],[[2,0,1,1],[2,3,2,2],[1,3,3,0],[0,1,2,1]],[[1,0,1,1],[3,3,2,2],[1,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,4,2,2],[1,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[1,4,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[1,3,4,0],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[1,3,3,0],[0,1,3,1]],[[1,0,1,1],[2,3,2,2],[1,3,3,0],[0,1,2,2]],[[2,0,1,1],[2,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,0,1,1],[3,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,4,2,2],[1,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,2,2],[1,4,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,2,2],[1,3,4,0],[0,2,1,1]],[[1,0,1,1],[2,3,2,2],[1,3,3,0],[0,3,1,1]],[[2,0,1,1],[2,3,2,2],[1,3,3,0],[1,0,2,1]],[[1,0,1,1],[3,3,2,2],[1,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,4,2,2],[1,3,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[1,4,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[1,3,4,0],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[1,3,3,0],[1,0,3,1]],[[1,0,1,1],[2,3,2,2],[1,3,3,0],[1,0,2,2]],[[2,0,1,1],[2,3,2,2],[1,3,3,0],[1,1,1,1]],[[1,0,1,1],[3,3,2,2],[1,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,4,2,2],[1,3,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[1,4,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[1,3,4,0],[1,1,1,1]],[[2,0,1,1],[2,3,2,2],[1,3,3,0],[1,2,0,1]],[[1,0,1,1],[3,3,2,2],[1,3,3,0],[1,2,0,1]],[[1,0,1,1],[2,4,2,2],[1,3,3,0],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[1,4,3,0],[1,2,0,1]],[[2,0,1,1],[2,3,2,2],[1,3,3,1],[0,1,1,1]],[[1,0,1,1],[3,3,2,2],[1,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,4,2,2],[1,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[1,4,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[1,3,4,1],[0,1,1,1]],[[2,0,1,1],[2,3,2,2],[1,3,3,1],[0,1,2,0]],[[1,0,1,1],[3,3,2,2],[1,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,4,2,2],[1,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[1,4,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[1,3,4,1],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[1,3,3,1],[0,1,3,0]],[[2,0,1,1],[2,3,2,2],[1,3,3,1],[0,2,0,1]],[[1,0,1,1],[3,3,2,2],[1,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,4,2,2],[1,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[1,4,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[1,3,4,1],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[1,3,3,1],[0,3,0,1]],[[2,0,1,1],[2,3,2,2],[1,3,3,1],[0,2,1,0]],[[1,0,1,1],[3,3,2,2],[1,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,4,2,2],[1,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,2,2],[1,4,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,2,2],[1,3,4,1],[0,2,1,0]],[[1,0,1,1],[2,3,2,2],[1,3,3,1],[0,3,1,0]],[[2,0,1,1],[2,3,2,2],[1,3,3,1],[1,0,1,1]],[[1,0,1,1],[3,3,2,2],[1,3,3,1],[1,0,1,1]],[[1,0,1,1],[2,4,2,2],[1,3,3,1],[1,0,1,1]],[[1,0,1,1],[2,3,2,2],[1,4,3,1],[1,0,1,1]],[[1,0,1,1],[2,3,2,2],[1,3,4,1],[1,0,1,1]],[[2,0,1,1],[2,3,2,2],[1,3,3,1],[1,0,2,0]],[[1,0,1,1],[3,3,2,2],[1,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,4,2,2],[1,3,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,2,2],[1,4,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,2,2],[1,3,4,1],[1,0,2,0]],[[1,0,1,1],[2,3,2,2],[1,3,3,1],[1,0,3,0]],[[2,0,1,1],[2,3,2,2],[1,3,3,1],[1,1,0,1]],[[1,0,1,1],[3,3,2,2],[1,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,4,2,2],[1,3,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,2,2],[1,4,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,2,2],[1,3,4,1],[1,1,0,1]],[[2,0,1,1],[2,3,2,2],[1,3,3,1],[1,1,1,0]],[[1,0,1,1],[3,3,2,2],[1,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,4,2,2],[1,3,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,2,2],[1,4,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,2,2],[1,3,4,1],[1,1,1,0]],[[2,0,1,1],[2,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,0,1,1],[3,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,4,2,2],[1,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,0,1,2],[2,3,2,2],[1,3,3,2],[0,0,1,1]],[[1,0,1,1],[2,3,2,3],[1,3,3,2],[0,0,1,1]],[[1,0,1,1],[2,3,2,2],[1,3,4,2],[0,0,1,1]],[[1,0,1,1],[2,3,2,2],[1,3,3,3],[0,0,1,1]],[[1,0,1,1],[2,3,2,2],[1,3,3,2],[0,0,1,2]],[[1,0,1,2],[2,3,2,2],[1,3,3,2],[0,0,2,0]],[[1,0,1,1],[2,3,2,3],[1,3,3,2],[0,0,2,0]],[[1,0,1,1],[2,3,2,2],[1,3,4,2],[0,0,2,0]],[[1,0,1,1],[2,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[3,3,3,1],[2,1,3,1],[1,1,0,0]],[[1,3,1,1],[2,3,3,1],[2,1,3,1],[1,1,0,0]],[[2,2,1,1],[2,3,3,1],[2,1,3,1],[1,1,0,0]],[[1,2,1,1],[3,3,3,1],[2,1,3,1],[0,2,0,0]],[[1,3,1,1],[2,3,3,1],[2,1,3,1],[0,2,0,0]],[[2,2,1,1],[2,3,3,1],[2,1,3,1],[0,2,0,0]],[[2,0,1,1],[2,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,2],[2,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[3,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,4,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,3],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[3,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,1,3],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,1,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,1,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,1,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[2,0,1,2],[1,2,2,2]],[[1,0,1,2],[2,3,2,2],[2,0,2,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,3],[2,0,2,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,2,3],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,2,2],[0,3,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,2,2],[0,2,3,1]],[[1,0,1,1],[2,3,2,2],[2,0,2,2],[0,2,2,2]],[[1,0,1,2],[2,3,2,2],[2,0,2,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,3],[2,0,2,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,2,3],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,2,2],[1,1,3,1]],[[1,0,1,1],[2,3,2,2],[2,0,2,2],[1,1,2,2]],[[2,0,1,1],[2,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,0,1,1],[3,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,0,1,1],[2,4,2,2],[2,0,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[3,0,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,4,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,0],[2,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,0],[1,3,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,0],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,0],[1,2,2,2]],[[1,0,1,1],[2,3,2,2],[2,0,4,1],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,1],[0,3,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,1],[0,2,3,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,1],[0,2,2,2]],[[1,0,1,1],[2,3,2,2],[2,0,4,1],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,1],[1,1,3,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,1],[1,1,2,2]],[[2,0,1,1],[2,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,0,1,1],[3,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,0,1,1],[2,4,2,2],[2,0,3,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[3,0,3,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[2,0,4,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[2,0,3,1],[2,2,2,0]],[[1,0,1,1],[2,3,2,2],[2,0,3,1],[1,3,2,0]],[[1,0,1,1],[2,3,2,2],[2,0,3,1],[1,2,3,0]],[[1,0,1,2],[2,3,2,2],[2,0,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,2,3],[2,0,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,2,2],[2,0,4,2],[0,2,1,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,3],[0,2,1,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,2],[0,2,1,2]],[[1,0,1,2],[2,3,2,2],[2,0,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,3],[2,0,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,2],[2,0,4,2],[0,2,2,0]],[[1,0,1,1],[2,3,2,2],[2,0,3,3],[0,2,2,0]],[[1,0,1,1],[2,3,2,2],[2,0,3,2],[0,3,2,0]],[[1,0,1,1],[2,3,2,2],[2,0,3,2],[0,2,3,0]],[[1,0,1,2],[2,3,2,2],[2,0,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,2,3],[2,0,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[2,0,4,2],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,3],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,2],[1,1,1,2]],[[1,0,1,2],[2,3,2,2],[2,0,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,3],[2,0,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[2,0,4,2],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[2,0,3,3],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[2,0,3,2],[1,1,3,0]],[[1,0,1,2],[2,3,2,2],[2,0,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,3],[2,0,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[2,0,4,2],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,3],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[2,0,3,2],[1,2,0,2]],[[1,0,1,2],[2,3,2,2],[2,0,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,3],[2,0,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,2],[2,0,4,2],[1,2,1,0]],[[1,0,1,1],[2,3,2,2],[2,0,3,3],[1,2,1,0]],[[2,0,1,1],[2,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,2],[2,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[3,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,4,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,3],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[3,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,0,3],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,0,2],[2,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,0,2],[1,3,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,0,2],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[2,1,0,2],[1,2,2,2]],[[2,0,1,1],[2,3,2,2],[2,1,2,0],[1,2,2,1]],[[1,0,1,1],[3,3,2,2],[2,1,2,0],[1,2,2,1]],[[1,0,1,1],[2,4,2,2],[2,1,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[3,1,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,2,0],[2,2,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,2,0],[1,3,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,2,0],[1,2,3,1]],[[1,0,1,1],[2,3,2,2],[2,1,2,0],[1,2,2,2]],[[2,0,1,1],[2,3,2,2],[2,1,2,1],[1,2,2,0]],[[1,0,1,1],[3,3,2,2],[2,1,2,1],[1,2,2,0]],[[1,0,1,1],[2,4,2,2],[2,1,2,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[3,1,2,1],[1,2,2,0]],[[1,0,1,1],[2,3,2,2],[2,1,2,1],[2,2,2,0]],[[1,0,1,1],[2,3,2,2],[2,1,2,1],[1,3,2,0]],[[1,0,1,1],[2,3,2,2],[2,1,2,1],[1,2,3,0]],[[1,0,1,2],[2,3,2,2],[2,1,2,2],[0,1,2,1]],[[1,0,1,1],[2,3,2,3],[2,1,2,2],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,2,3],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,2,2],[0,1,3,1]],[[1,0,1,1],[2,3,2,2],[2,1,2,2],[0,1,2,2]],[[1,0,1,2],[2,3,2,2],[2,1,2,2],[1,0,2,1]],[[1,0,1,1],[2,3,2,3],[2,1,2,2],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,2,3],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,2,2],[1,0,3,1]],[[1,0,1,1],[2,3,2,2],[2,1,2,2],[1,0,2,2]],[[2,0,1,1],[2,3,2,2],[2,1,3,0],[1,2,1,1]],[[1,0,1,1],[3,3,2,2],[2,1,3,0],[1,2,1,1]],[[1,0,1,1],[2,4,2,2],[2,1,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,2,2],[3,1,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,0],[2,2,1,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,0],[1,3,1,1]],[[1,0,1,1],[2,3,2,2],[2,1,4,1],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,1],[0,1,3,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,1],[0,1,2,2]],[[1,0,1,1],[2,3,2,2],[2,1,4,1],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,1],[1,0,3,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,1],[1,0,2,2]],[[2,0,1,1],[2,3,2,2],[2,1,3,1],[1,2,0,1]],[[1,0,1,1],[3,3,2,2],[2,1,3,1],[1,2,0,1]],[[1,0,1,1],[2,4,2,2],[2,1,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[3,1,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,1],[2,2,0,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,1],[1,3,0,1]],[[2,0,1,1],[2,3,2,2],[2,1,3,1],[1,2,1,0]],[[1,0,1,1],[3,3,2,2],[2,1,3,1],[1,2,1,0]],[[1,0,1,1],[2,4,2,2],[2,1,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,2,2],[3,1,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,2,2],[2,1,3,1],[2,2,1,0]],[[1,0,1,1],[2,3,2,2],[2,1,3,1],[1,3,1,0]],[[1,2,1,1],[3,3,3,1],[2,1,3,0],[1,2,0,0]],[[1,3,1,1],[2,3,3,1],[2,1,3,0],[1,2,0,0]],[[2,2,1,1],[2,3,3,1],[2,1,3,0],[1,2,0,0]],[[1,0,1,2],[2,3,2,2],[2,1,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,2,3],[2,1,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,4,2],[0,0,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,3],[0,0,2,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,2],[0,0,2,2]],[[1,0,1,2],[2,3,2,2],[2,1,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,3],[2,1,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[2,1,4,2],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,3],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,2],[0,1,1,2]],[[1,0,1,2],[2,3,2,2],[2,1,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,3],[2,1,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[2,1,4,2],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[2,1,3,3],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[2,1,3,2],[0,1,3,0]],[[1,0,1,2],[2,3,2,2],[2,1,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,3],[2,1,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[2,1,4,2],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,3],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,2],[0,2,0,2]],[[1,0,1,2],[2,3,2,2],[2,1,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,3],[2,1,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,2],[2,1,4,2],[0,2,1,0]],[[1,0,1,1],[2,3,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,1,1],[3,3,3,1],[2,1,3,0],[1,1,1,0]],[[1,3,1,1],[2,3,3,1],[2,1,3,0],[1,1,1,0]],[[1,0,1,2],[2,3,2,2],[2,1,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,3],[2,1,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,2],[2,1,4,2],[1,0,1,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,3],[1,0,1,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,2],[1,0,1,2]],[[1,0,1,2],[2,3,2,2],[2,1,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,3],[2,1,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,2],[2,1,4,2],[1,0,2,0]],[[1,0,1,1],[2,3,2,2],[2,1,3,3],[1,0,2,0]],[[1,0,1,1],[2,3,2,2],[2,1,3,2],[1,0,3,0]],[[1,0,1,2],[2,3,2,2],[2,1,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,3],[2,1,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,2],[2,1,4,2],[1,1,0,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,3],[1,1,0,1]],[[1,0,1,1],[2,3,2,2],[2,1,3,2],[1,1,0,2]],[[1,0,1,2],[2,3,2,2],[2,1,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,3],[2,1,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,2],[2,1,4,2],[1,1,1,0]],[[1,0,1,1],[2,3,2,2],[2,1,3,3],[1,1,1,0]],[[2,2,1,1],[2,3,3,1],[2,1,3,0],[1,1,1,0]],[[1,2,1,1],[3,3,3,1],[2,1,3,0],[1,0,2,0]],[[1,3,1,1],[2,3,3,1],[2,1,3,0],[1,0,2,0]],[[2,2,1,1],[2,3,3,1],[2,1,3,0],[1,0,2,0]],[[1,2,1,1],[3,3,3,1],[2,1,3,0],[0,2,1,0]],[[1,3,1,1],[2,3,3,1],[2,1,3,0],[0,2,1,0]],[[2,2,1,1],[2,3,3,1],[2,1,3,0],[0,2,1,0]],[[1,2,1,1],[3,3,3,1],[2,1,3,0],[0,1,2,0]],[[1,3,1,1],[2,3,3,1],[2,1,3,0],[0,1,2,0]],[[2,2,1,1],[2,3,3,1],[2,1,3,0],[0,1,2,0]],[[2,0,1,1],[2,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,0,1,1],[3,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,0,1,1],[2,4,2,2],[2,2,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[3,2,0,2],[0,2,2,1]],[[2,0,1,1],[2,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,0,1,1],[3,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,0,1,1],[2,4,2,2],[2,2,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[3,2,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[2,2,0,2],[2,1,2,1]],[[2,0,1,1],[2,3,2,2],[2,2,2,0],[0,2,2,1]],[[1,0,1,1],[3,3,2,2],[2,2,2,0],[0,2,2,1]],[[1,0,1,1],[2,4,2,2],[2,2,2,0],[0,2,2,1]],[[1,0,1,1],[2,3,2,2],[3,2,2,0],[0,2,2,1]],[[2,0,1,1],[2,3,2,2],[2,2,2,0],[1,1,2,1]],[[1,0,1,1],[3,3,2,2],[2,2,2,0],[1,1,2,1]],[[1,0,1,1],[2,4,2,2],[2,2,2,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[3,2,2,0],[1,1,2,1]],[[1,0,1,1],[2,3,2,2],[2,2,2,0],[2,1,2,1]],[[2,0,1,1],[2,3,2,2],[2,2,2,1],[0,2,2,0]],[[1,0,1,1],[3,3,2,2],[2,2,2,1],[0,2,2,0]],[[1,0,1,1],[2,4,2,2],[2,2,2,1],[0,2,2,0]],[[1,0,1,1],[2,3,2,2],[3,2,2,1],[0,2,2,0]],[[2,0,1,1],[2,3,2,2],[2,2,2,1],[1,1,2,0]],[[1,0,1,1],[3,3,2,2],[2,2,2,1],[1,1,2,0]],[[1,0,1,1],[2,4,2,2],[2,2,2,1],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[3,2,2,1],[1,1,2,0]],[[1,0,1,1],[2,3,2,2],[2,2,2,1],[2,1,2,0]],[[2,0,1,1],[2,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,0,1,1],[3,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,0,1,1],[2,4,2,2],[2,2,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,2,2],[3,2,3,0],[0,1,2,1]],[[2,0,1,1],[2,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,0,1,1],[3,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,0,1,1],[2,4,2,2],[2,2,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,2,2],[3,2,3,0],[0,2,1,1]],[[2,0,1,1],[2,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,0,1,1],[3,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,0,1,1],[2,4,2,2],[2,2,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[3,2,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,2,2],[2,2,3,0],[2,0,2,1]],[[2,0,1,1],[2,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,0,1,1],[3,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,0,1,1],[2,4,2,2],[2,2,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[3,2,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,2,2],[2,2,3,0],[2,1,1,1]],[[2,0,1,1],[2,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,0,1,1],[3,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,0,1,1],[2,4,2,2],[2,2,3,0],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[3,2,3,0],[1,2,0,1]],[[1,0,1,1],[2,3,2,2],[2,2,3,0],[2,2,0,1]],[[2,0,1,1],[2,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,0,1,1],[3,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,0,1,1],[2,4,2,2],[2,2,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,2,2],[3,2,3,1],[0,1,1,1]],[[2,0,1,1],[2,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,0,1,1],[3,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,0,1,1],[2,4,2,2],[2,2,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,2,2],[3,2,3,1],[0,1,2,0]],[[2,0,1,1],[2,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,0,1,1],[3,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,0,1,1],[2,4,2,2],[2,2,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,2,2],[3,2,3,1],[0,2,0,1]],[[2,0,1,1],[2,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,0,1,1],[3,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,0,1,1],[2,4,2,2],[2,2,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,2,2],[3,2,3,1],[0,2,1,0]],[[2,0,1,1],[2,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,0,1,1],[3,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,0,1,1],[2,4,2,2],[2,2,3,1],[1,0,1,1]],[[1,0,1,1],[2,3,2,2],[3,2,3,1],[1,0,1,1]],[[1,0,1,1],[2,3,2,2],[2,2,3,1],[2,0,1,1]],[[2,0,1,1],[2,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,0,1,1],[3,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,0,1,1],[2,4,2,2],[2,2,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,2,2],[3,2,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,2,2],[2,2,3,1],[2,0,2,0]],[[2,0,1,1],[2,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,0,1,1],[3,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,0,1,1],[2,4,2,2],[2,2,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,2,2],[3,2,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,2,2],[2,2,3,1],[2,1,0,1]],[[2,0,1,1],[2,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,0,1,1],[3,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,0,1,1],[2,4,2,2],[2,2,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,2,2],[3,2,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,2,2],[2,2,3,1],[2,1,1,0]],[[1,2,1,1],[3,3,3,1],[2,1,2,1],[1,2,0,0]],[[1,3,1,1],[2,3,3,1],[2,1,2,1],[1,2,0,0]],[[2,2,1,1],[2,3,3,1],[2,1,2,1],[1,2,0,0]],[[2,0,1,1],[2,3,2,2],[2,2,3,1],[1,2,0,0]],[[1,0,1,1],[3,3,2,2],[2,2,3,1],[1,2,0,0]],[[1,0,1,1],[2,4,2,2],[2,2,3,1],[1,2,0,0]],[[1,0,1,1],[2,3,2,2],[3,2,3,1],[1,2,0,0]],[[1,0,1,1],[2,3,2,2],[2,2,3,1],[2,2,0,0]],[[1,2,1,1],[3,3,3,1],[2,1,2,1],[1,1,1,0]],[[1,3,1,1],[2,3,3,1],[2,1,2,1],[1,1,1,0]],[[2,2,1,1],[2,3,3,1],[2,1,2,1],[1,1,1,0]],[[1,2,1,1],[3,3,3,1],[2,1,2,1],[1,1,0,1]],[[1,3,1,1],[2,3,3,1],[2,1,2,1],[1,1,0,1]],[[2,2,1,1],[2,3,3,1],[2,1,2,1],[1,1,0,1]],[[1,2,1,1],[3,3,3,1],[2,1,2,1],[1,0,2,0]],[[1,3,1,1],[2,3,3,1],[2,1,2,1],[1,0,2,0]],[[2,2,1,1],[2,3,3,1],[2,1,2,1],[1,0,2,0]],[[1,2,1,1],[3,3,3,1],[2,1,2,1],[1,0,1,1]],[[1,3,1,1],[2,3,3,1],[2,1,2,1],[1,0,1,1]],[[2,2,1,1],[2,3,3,1],[2,1,2,1],[1,0,1,1]],[[1,2,1,1],[3,3,3,1],[2,1,2,1],[0,2,1,0]],[[1,3,1,1],[2,3,3,1],[2,1,2,1],[0,2,1,0]],[[2,2,1,1],[2,3,3,1],[2,1,2,1],[0,2,1,0]],[[1,2,1,1],[3,3,3,1],[2,1,2,1],[0,2,0,1]],[[1,3,1,1],[2,3,3,1],[2,1,2,1],[0,2,0,1]],[[2,2,1,1],[2,3,3,1],[2,1,2,1],[0,2,0,1]],[[1,2,1,1],[3,3,3,1],[2,1,2,1],[0,1,2,0]],[[1,3,1,1],[2,3,3,1],[2,1,2,1],[0,1,2,0]],[[2,2,1,1],[2,3,3,1],[2,1,2,1],[0,1,2,0]],[[1,2,1,1],[3,3,3,1],[2,1,2,1],[0,1,1,1]],[[1,3,1,1],[2,3,3,1],[2,1,2,1],[0,1,1,1]],[[2,2,1,1],[2,3,3,1],[2,1,2,1],[0,1,1,1]],[[1,2,1,1],[3,3,3,1],[2,1,2,0],[1,2,0,1]],[[1,3,1,1],[2,3,3,1],[2,1,2,0],[1,2,0,1]],[[2,2,1,1],[2,3,3,1],[2,1,2,0],[1,2,0,1]],[[1,2,1,1],[3,3,3,1],[2,1,2,0],[1,1,1,1]],[[1,3,1,1],[2,3,3,1],[2,1,2,0],[1,1,1,1]],[[2,2,1,1],[2,3,3,1],[2,1,2,0],[1,1,1,1]],[[1,2,1,1],[3,3,3,1],[2,1,2,0],[1,0,2,1]],[[1,3,1,1],[2,3,3,1],[2,1,2,0],[1,0,2,1]],[[2,2,1,1],[2,3,3,1],[2,1,2,0],[1,0,2,1]],[[1,2,1,1],[3,3,3,1],[2,1,2,0],[0,2,1,1]],[[1,3,1,1],[2,3,3,1],[2,1,2,0],[0,2,1,1]],[[2,2,1,1],[2,3,3,1],[2,1,2,0],[0,2,1,1]],[[1,2,1,1],[3,3,3,1],[2,1,2,0],[0,1,2,1]],[[1,3,1,1],[2,3,3,1],[2,1,2,0],[0,1,2,1]],[[2,2,1,1],[2,3,3,1],[2,1,2,0],[0,1,2,1]],[[1,2,1,1],[3,3,3,1],[2,1,1,2],[1,2,0,0]],[[1,3,1,1],[2,3,3,1],[2,1,1,2],[1,2,0,0]],[[2,2,1,1],[2,3,3,1],[2,1,1,2],[1,2,0,0]],[[1,2,1,1],[3,3,3,1],[2,1,1,2],[1,1,1,0]],[[1,3,1,1],[2,3,3,1],[2,1,1,2],[1,1,1,0]],[[2,2,1,1],[2,3,3,1],[2,1,1,2],[1,1,1,0]],[[1,2,1,1],[3,3,3,1],[2,1,1,2],[1,1,0,1]],[[1,3,1,1],[2,3,3,1],[2,1,1,2],[1,1,0,1]],[[2,2,1,1],[2,3,3,1],[2,1,1,2],[1,1,0,1]],[[1,2,1,1],[3,3,3,1],[2,1,1,2],[1,0,2,0]],[[1,3,1,1],[2,3,3,1],[2,1,1,2],[1,0,2,0]],[[2,2,1,1],[2,3,3,1],[2,1,1,2],[1,0,2,0]],[[1,2,1,1],[3,3,3,1],[2,1,1,2],[1,0,1,1]],[[1,3,1,1],[2,3,3,1],[2,1,1,2],[1,0,1,1]],[[2,2,1,1],[2,3,3,1],[2,1,1,2],[1,0,1,1]],[[1,2,1,1],[3,3,3,1],[2,1,1,2],[0,2,1,0]],[[1,3,1,1],[2,3,3,1],[2,1,1,2],[0,2,1,0]],[[2,2,1,1],[2,3,3,1],[2,1,1,2],[0,2,1,0]],[[1,2,1,1],[3,3,3,1],[2,1,1,2],[0,2,0,1]],[[1,3,1,1],[2,3,3,1],[2,1,1,2],[0,2,0,1]],[[2,2,1,1],[2,3,3,1],[2,1,1,2],[0,2,0,1]],[[1,2,1,1],[3,3,3,1],[2,1,1,2],[0,1,2,0]],[[1,3,1,1],[2,3,3,1],[2,1,1,2],[0,1,2,0]],[[2,2,1,1],[2,3,3,1],[2,1,1,2],[0,1,2,0]],[[1,2,1,1],[3,3,3,1],[2,1,1,2],[0,1,1,1]],[[1,3,1,1],[2,3,3,1],[2,1,1,2],[0,1,1,1]],[[2,2,1,1],[2,3,3,1],[2,1,1,2],[0,1,1,1]],[[1,2,1,1],[3,3,3,1],[2,1,1,1],[1,1,2,0]],[[1,3,1,1],[2,3,3,1],[2,1,1,1],[1,1,2,0]],[[2,2,1,1],[2,3,3,1],[2,1,1,1],[1,1,2,0]],[[1,2,1,1],[3,3,3,1],[2,1,1,1],[0,2,2,0]],[[1,3,1,1],[2,3,3,1],[2,1,1,1],[0,2,2,0]],[[2,2,1,1],[2,3,3,1],[2,1,1,1],[0,2,2,0]],[[1,2,1,1],[3,3,3,1],[2,1,1,0],[1,1,2,1]],[[1,3,1,1],[2,3,3,1],[2,1,1,0],[1,1,2,1]],[[2,2,1,1],[2,3,3,1],[2,1,1,0],[1,1,2,1]],[[1,2,1,1],[3,3,3,1],[2,1,1,0],[0,2,2,1]],[[1,3,1,1],[2,3,3,1],[2,1,1,0],[0,2,2,1]],[[2,2,1,1],[2,3,3,1],[2,1,1,0],[0,2,2,1]],[[1,2,1,1],[3,3,3,1],[2,1,0,2],[1,1,2,0]],[[1,3,1,1],[2,3,3,1],[2,1,0,2],[1,1,2,0]],[[2,2,1,1],[2,3,3,1],[2,1,0,2],[1,1,2,0]],[[1,2,1,1],[3,3,3,1],[2,1,0,2],[1,1,1,1]],[[1,3,1,1],[2,3,3,1],[2,1,0,2],[1,1,1,1]],[[2,2,1,1],[2,3,3,1],[2,1,0,2],[1,1,1,1]],[[1,2,1,1],[3,3,3,1],[2,1,0,2],[1,0,2,1]],[[1,3,1,1],[2,3,3,1],[2,1,0,2],[1,0,2,1]],[[2,2,1,1],[2,3,3,1],[2,1,0,2],[1,0,2,1]],[[1,2,1,1],[3,3,3,1],[2,1,0,2],[0,2,2,0]],[[1,3,1,1],[2,3,3,1],[2,1,0,2],[0,2,2,0]],[[2,2,1,1],[2,3,3,1],[2,1,0,2],[0,2,2,0]],[[1,2,1,1],[3,3,3,1],[2,1,0,2],[0,2,1,1]],[[1,3,1,1],[2,3,3,1],[2,1,0,2],[0,2,1,1]],[[2,2,1,1],[2,3,3,1],[2,1,0,2],[0,2,1,1]],[[1,2,1,1],[3,3,3,1],[2,1,0,2],[0,1,2,1]],[[1,3,1,1],[2,3,3,1],[2,1,0,2],[0,1,2,1]],[[2,2,1,1],[2,3,3,1],[2,1,0,2],[0,1,2,1]],[[1,2,1,1],[3,3,3,1],[2,1,0,1],[1,1,2,1]],[[1,3,1,1],[2,3,3,1],[2,1,0,1],[1,1,2,1]],[[2,2,1,1],[2,3,3,1],[2,1,0,1],[1,1,2,1]],[[1,2,1,1],[3,3,3,1],[2,1,0,1],[0,2,2,1]],[[1,3,1,1],[2,3,3,1],[2,1,0,1],[0,2,2,1]],[[2,2,1,1],[2,3,3,1],[2,1,0,1],[0,2,2,1]],[[1,2,1,1],[3,3,3,1],[2,0,3,2],[1,0,0,1]],[[1,3,1,1],[2,3,3,1],[2,0,3,2],[1,0,0,1]],[[2,2,1,1],[2,3,3,1],[2,0,3,2],[1,0,0,1]],[[1,2,1,1],[3,3,3,1],[2,0,3,2],[0,1,0,1]],[[1,3,1,1],[2,3,3,1],[2,0,3,2],[0,1,0,1]],[[2,2,1,1],[2,3,3,1],[2,0,3,2],[0,1,0,1]],[[1,2,1,1],[3,3,3,1],[2,0,3,1],[1,1,1,0]],[[1,3,1,1],[2,3,3,1],[2,0,3,1],[1,1,1,0]],[[2,2,1,1],[2,3,3,1],[2,0,3,1],[1,1,1,0]],[[1,2,1,1],[3,3,3,1],[2,0,3,1],[1,1,0,1]],[[1,3,1,1],[2,3,3,1],[2,0,3,1],[1,1,0,1]],[[2,2,1,1],[2,3,3,1],[2,0,3,1],[1,1,0,1]],[[1,2,1,1],[3,3,3,1],[2,0,3,1],[1,0,2,0]],[[1,3,1,1],[2,3,3,1],[2,0,3,1],[1,0,2,0]],[[2,2,1,1],[2,3,3,1],[2,0,3,1],[1,0,2,0]],[[1,2,1,1],[3,3,3,1],[2,0,3,1],[1,0,1,1]],[[1,3,1,1],[2,3,3,1],[2,0,3,1],[1,0,1,1]],[[2,2,1,1],[2,3,3,1],[2,0,3,1],[1,0,1,1]],[[2,0,1,1],[2,3,2,2],[2,3,3,0],[1,0,1,1]],[[1,0,1,1],[3,3,2,2],[2,3,3,0],[1,0,1,1]],[[1,0,1,1],[2,4,2,2],[2,3,3,0],[1,0,1,1]],[[1,0,1,1],[2,3,2,2],[3,3,3,0],[1,0,1,1]],[[1,2,1,1],[3,3,3,1],[2,0,3,1],[0,2,1,0]],[[1,3,1,1],[2,3,3,1],[2,0,3,1],[0,2,1,0]],[[2,2,1,1],[2,3,3,1],[2,0,3,1],[0,2,1,0]],[[1,2,1,1],[3,3,3,1],[2,0,3,1],[0,2,0,1]],[[1,3,1,1],[2,3,3,1],[2,0,3,1],[0,2,0,1]],[[2,2,1,1],[2,3,3,1],[2,0,3,1],[0,2,0,1]],[[1,2,1,1],[3,3,3,1],[2,0,3,1],[0,1,2,0]],[[1,3,1,1],[2,3,3,1],[2,0,3,1],[0,1,2,0]],[[2,2,1,1],[2,3,3,1],[2,0,3,1],[0,1,2,0]],[[1,2,1,1],[3,3,3,1],[2,0,3,1],[0,1,1,1]],[[1,3,1,1],[2,3,3,1],[2,0,3,1],[0,1,1,1]],[[2,2,1,1],[2,3,3,1],[2,0,3,1],[0,1,1,1]],[[1,2,1,1],[3,3,3,1],[2,0,3,1],[0,0,2,1]],[[1,3,1,1],[2,3,3,1],[2,0,3,1],[0,0,2,1]],[[2,2,1,1],[2,3,3,1],[2,0,3,1],[0,0,2,1]],[[1,2,1,1],[3,3,3,1],[2,0,3,0],[1,2,1,0]],[[1,3,1,1],[2,3,3,1],[2,0,3,0],[1,2,1,0]],[[2,2,1,1],[2,3,3,1],[2,0,3,0],[1,2,1,0]],[[1,2,1,1],[3,3,3,1],[2,0,3,0],[1,1,1,1]],[[1,3,1,1],[2,3,3,1],[2,0,3,0],[1,1,1,1]],[[2,2,1,1],[2,3,3,1],[2,0,3,0],[1,1,1,1]],[[1,2,1,1],[3,3,3,1],[2,0,3,0],[1,0,2,1]],[[2,0,1,1],[2,3,2,2],[2,3,3,1],[1,0,0,1]],[[1,0,1,1],[3,3,2,2],[2,3,3,1],[1,0,0,1]],[[1,0,1,1],[2,4,2,2],[2,3,3,1],[1,0,0,1]],[[1,0,1,1],[2,3,2,2],[3,3,3,1],[1,0,0,1]],[[2,0,1,1],[2,3,2,2],[2,3,3,1],[1,0,1,0]],[[1,0,1,1],[3,3,2,2],[2,3,3,1],[1,0,1,0]],[[1,0,1,1],[2,4,2,2],[2,3,3,1],[1,0,1,0]],[[1,0,1,1],[2,3,2,2],[3,3,3,1],[1,0,1,0]],[[1,3,1,1],[2,3,3,1],[2,0,3,0],[1,0,2,1]],[[2,2,1,1],[2,3,3,1],[2,0,3,0],[1,0,2,1]],[[1,2,1,1],[3,3,3,1],[2,0,3,0],[0,2,1,1]],[[1,3,1,1],[2,3,3,1],[2,0,3,0],[0,2,1,1]],[[2,2,1,1],[2,3,3,1],[2,0,3,0],[0,2,1,1]],[[1,2,1,1],[3,3,3,1],[2,0,3,0],[0,1,2,1]],[[1,3,1,1],[2,3,3,1],[2,0,3,0],[0,1,2,1]],[[2,2,1,1],[2,3,3,1],[2,0,3,0],[0,1,2,1]],[[1,2,1,1],[3,3,3,1],[2,0,2,2],[1,1,1,0]],[[1,3,1,1],[2,3,3,1],[2,0,2,2],[1,1,1,0]],[[2,2,1,1],[2,3,3,1],[2,0,2,2],[1,1,1,0]],[[1,2,1,1],[3,3,3,1],[2,0,2,2],[1,1,0,1]],[[1,3,1,1],[2,3,3,1],[2,0,2,2],[1,1,0,1]],[[2,2,1,1],[2,3,3,1],[2,0,2,2],[1,1,0,1]],[[1,2,1,1],[3,3,3,1],[2,0,2,2],[1,0,2,0]],[[1,3,1,1],[2,3,3,1],[2,0,2,2],[1,0,2,0]],[[2,2,1,1],[2,3,3,1],[2,0,2,2],[1,0,2,0]],[[1,2,1,1],[3,3,3,1],[2,0,2,2],[1,0,1,1]],[[1,3,1,1],[2,3,3,1],[2,0,2,2],[1,0,1,1]],[[2,2,1,1],[2,3,3,1],[2,0,2,2],[1,0,1,1]],[[1,2,1,1],[3,3,3,1],[2,0,2,2],[0,2,1,0]],[[1,3,1,1],[2,3,3,1],[2,0,2,2],[0,2,1,0]],[[2,2,1,1],[2,3,3,1],[2,0,2,2],[0,2,1,0]],[[1,2,1,1],[3,3,3,1],[2,0,2,2],[0,2,0,1]],[[1,3,1,1],[2,3,3,1],[2,0,2,2],[0,2,0,1]],[[2,2,1,1],[2,3,3,1],[2,0,2,2],[0,2,0,1]],[[1,2,1,1],[3,3,3,1],[2,0,2,2],[0,1,2,0]],[[1,3,1,1],[2,3,3,1],[2,0,2,2],[0,1,2,0]],[[2,2,1,1],[2,3,3,1],[2,0,2,2],[0,1,2,0]],[[1,2,1,1],[3,3,3,1],[2,0,2,2],[0,1,1,1]],[[1,3,1,1],[2,3,3,1],[2,0,2,2],[0,1,1,1]],[[2,2,1,1],[2,3,3,1],[2,0,2,2],[0,1,1,1]],[[1,2,1,1],[3,3,3,1],[2,0,2,2],[0,0,2,1]],[[1,3,1,1],[2,3,3,1],[2,0,2,2],[0,0,2,1]],[[2,2,1,1],[2,3,3,1],[2,0,2,2],[0,0,2,1]],[[1,2,1,1],[3,3,3,1],[2,0,2,1],[1,2,1,0]],[[1,3,1,1],[2,3,3,1],[2,0,2,1],[1,2,1,0]],[[2,2,1,1],[2,3,3,1],[2,0,2,1],[1,2,1,0]],[[1,2,1,1],[3,3,3,1],[2,0,2,1],[1,2,0,1]],[[1,3,1,1],[2,3,3,1],[2,0,2,1],[1,2,0,1]],[[2,2,1,1],[2,3,3,1],[2,0,2,1],[1,2,0,1]],[[1,2,1,1],[3,3,3,1],[2,0,2,0],[1,2,1,1]],[[1,3,1,1],[2,3,3,1],[2,0,2,0],[1,2,1,1]],[[2,2,1,1],[2,3,3,1],[2,0,2,0],[1,2,1,1]],[[1,2,1,1],[3,3,3,1],[2,0,1,2],[1,2,1,0]],[[1,3,1,1],[2,3,3,1],[2,0,1,2],[1,2,1,0]],[[2,2,1,1],[2,3,3,1],[2,0,1,2],[1,2,1,0]],[[1,2,1,1],[3,3,3,1],[2,0,1,2],[1,2,0,1]],[[1,3,1,1],[2,3,3,1],[2,0,1,2],[1,2,0,1]],[[2,2,1,1],[2,3,3,1],[2,0,1,2],[1,2,0,1]],[[1,2,1,1],[3,3,3,1],[2,0,1,2],[1,0,2,1]],[[1,3,1,1],[2,3,3,1],[2,0,1,2],[1,0,2,1]],[[2,2,1,1],[2,3,3,1],[2,0,1,2],[1,0,2,1]],[[1,2,1,1],[3,3,3,1],[2,0,1,2],[0,1,2,1]],[[1,3,1,1],[2,3,3,1],[2,0,1,2],[0,1,2,1]],[[2,2,1,1],[2,3,3,1],[2,0,1,2],[0,1,2,1]],[[1,2,1,1],[3,3,3,1],[2,0,1,1],[1,2,2,0]],[[1,3,1,1],[2,3,3,1],[2,0,1,1],[1,2,2,0]],[[2,2,1,1],[2,3,3,1],[2,0,1,1],[1,2,2,0]],[[1,2,1,1],[3,3,3,1],[2,0,1,0],[1,2,2,1]],[[1,3,1,1],[2,3,3,1],[2,0,1,0],[1,2,2,1]],[[2,2,1,1],[2,3,3,1],[2,0,1,0],[1,2,2,1]],[[1,2,1,1],[3,3,3,1],[2,0,0,2],[1,2,2,0]],[[1,3,1,1],[2,3,3,1],[2,0,0,2],[1,2,2,0]],[[2,2,1,1],[2,3,3,1],[2,0,0,2],[1,2,2,0]],[[1,2,1,1],[3,3,3,1],[2,0,0,2],[1,2,1,1]],[[1,3,1,1],[2,3,3,1],[2,0,0,2],[1,2,1,1]],[[2,2,1,1],[2,3,3,1],[2,0,0,2],[1,2,1,1]],[[1,2,1,1],[3,3,3,1],[2,0,0,2],[1,1,2,1]],[[1,3,1,1],[2,3,3,1],[2,0,0,2],[1,1,2,1]],[[2,2,1,1],[2,3,3,1],[2,0,0,2],[1,1,2,1]],[[1,2,1,1],[3,3,3,1],[2,0,0,2],[0,2,2,1]],[[1,3,1,1],[2,3,3,1],[2,0,0,2],[0,2,2,1]],[[2,2,1,1],[2,3,3,1],[2,0,0,2],[0,2,2,1]],[[1,2,1,1],[3,3,3,1],[2,0,0,1],[1,2,2,1]],[[1,3,1,1],[2,3,3,1],[2,0,0,1],[1,2,2,1]],[[2,2,1,1],[2,3,3,1],[2,0,0,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,0],[0,1,4,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,0],[0,1,3,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,0],[0,1,3,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,0],[0,1,3,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,0],[0,1,3,2],[1,2,2,2]],[[1,0,1,1],[2,3,3,0],[0,2,4,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,0],[0,2,3,2],[1,1,3,1]],[[1,0,1,1],[2,3,3,0],[0,2,3,2],[1,1,2,2]],[[1,0,1,1],[2,3,3,0],[0,3,4,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,0],[0,3,3,2],[0,1,3,1]],[[1,0,1,1],[2,3,3,0],[0,3,3,2],[0,1,2,2]],[[1,0,1,1],[2,3,3,0],[1,0,4,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,0],[1,0,3,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,0],[1,0,3,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,0],[1,0,3,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,0],[1,0,3,2],[1,2,2,2]],[[1,0,1,1],[2,3,3,0],[1,1,4,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,0],[1,1,3,2],[0,3,2,1]],[[1,0,1,1],[2,3,3,0],[1,1,3,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,0],[1,1,3,2],[0,2,2,2]],[[1,0,1,1],[2,3,3,0],[1,2,4,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,0],[1,2,3,2],[0,1,3,1]],[[1,0,1,1],[2,3,3,0],[1,2,3,2],[0,1,2,2]],[[1,0,1,1],[2,3,3,0],[1,2,4,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,0],[1,2,3,2],[1,0,3,1]],[[1,0,1,1],[2,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,0,1,1],[2,3,3,0],[1,4,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,0],[1,3,0,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,0],[1,3,0,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,0],[1,3,0,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,0],[1,3,0,2],[1,2,2,2]],[[1,0,1,1],[2,3,3,0],[1,4,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,0],[1,3,1,1],[2,2,2,1]],[[1,0,1,1],[2,3,3,0],[1,3,1,1],[1,3,2,1]],[[1,0,1,1],[2,3,3,0],[1,3,1,1],[1,2,3,1]],[[1,0,1,1],[2,3,3,0],[1,3,1,1],[1,2,2,2]],[[1,0,1,1],[2,3,3,0],[1,4,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,0],[1,3,1,2],[2,2,2,0]],[[1,0,1,1],[2,3,3,0],[1,3,1,2],[1,3,2,0]],[[1,0,1,1],[2,3,3,0],[1,3,1,2],[1,2,3,0]],[[1,0,1,1],[2,3,3,0],[1,4,2,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,0],[1,3,2,1],[2,2,1,1]],[[1,0,1,1],[2,3,3,0],[1,3,2,1],[1,3,1,1]],[[1,0,1,1],[2,3,3,0],[1,4,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,0],[1,3,2,2],[2,2,0,1]],[[1,0,1,1],[2,3,3,0],[1,3,2,2],[1,3,0,1]],[[1,0,1,1],[2,3,3,0],[1,4,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,0],[1,3,2,2],[2,2,1,0]],[[1,0,1,1],[2,3,3,0],[1,3,2,2],[1,3,1,0]],[[1,0,1,1],[2,3,3,0],[2,0,4,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,0],[2,0,3,2],[0,3,2,1]],[[1,0,1,1],[2,3,3,0],[2,0,3,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,0],[2,0,3,2],[0,2,2,2]],[[1,0,1,1],[2,3,3,0],[2,0,4,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,0],[2,0,3,2],[1,1,3,1]],[[1,0,1,1],[2,3,3,0],[2,0,3,2],[1,1,2,2]],[[1,0,1,1],[2,3,3,0],[2,1,4,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,0],[2,1,3,2],[0,1,3,1]],[[1,0,1,1],[2,3,3,0],[2,1,3,2],[0,1,2,2]],[[1,0,1,1],[2,3,3,0],[2,1,4,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,0],[2,1,3,2],[1,0,3,1]],[[1,0,1,1],[2,3,3,0],[2,1,3,2],[1,0,2,2]],[[1,0,1,1],[3,3,3,0],[2,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,0],[3,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,0],[2,2,0,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,0],[2,2,0,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,0],[2,2,0,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,0],[2,2,0,2],[1,2,2,2]],[[1,0,1,1],[3,3,3,0],[2,2,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,0],[3,2,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,0],[2,2,1,1],[2,2,2,1]],[[1,0,1,1],[2,3,3,0],[2,2,1,1],[1,3,2,1]],[[1,0,1,1],[2,3,3,0],[2,2,1,1],[1,2,3,1]],[[1,0,1,1],[2,3,3,0],[2,2,1,1],[1,2,2,2]],[[1,0,1,1],[3,3,3,0],[2,2,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,0],[3,2,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,0],[2,2,1,2],[2,2,2,0]],[[1,0,1,1],[2,3,3,0],[2,2,1,2],[1,3,2,0]],[[1,0,1,1],[2,3,3,0],[2,2,1,2],[1,2,3,0]],[[1,0,1,1],[3,3,3,0],[2,2,2,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,0],[3,2,2,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,0],[2,2,2,1],[2,2,1,1]],[[1,0,1,1],[2,3,3,0],[2,2,2,1],[1,3,1,1]],[[1,0,1,1],[3,3,3,0],[2,2,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,0],[3,2,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,0],[2,2,2,2],[2,2,0,1]],[[1,0,1,1],[2,3,3,0],[2,2,2,2],[1,3,0,1]],[[1,0,1,1],[3,3,3,0],[2,2,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,0],[3,2,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,0],[2,2,2,2],[2,2,1,0]],[[1,0,1,1],[2,3,3,0],[2,2,2,2],[1,3,1,0]],[[1,0,1,1],[3,3,3,0],[2,3,0,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,0],[3,3,0,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,0],[2,3,0,1],[2,2,2,1]],[[1,0,1,1],[2,3,3,0],[2,3,0,1],[1,3,2,1]],[[1,0,1,1],[3,3,3,0],[2,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,0],[3,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,0],[2,4,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,0],[2,3,0,2],[0,3,2,1]],[[1,0,1,1],[2,3,3,0],[2,3,0,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,0],[2,3,0,2],[0,2,2,2]],[[1,0,1,1],[3,3,3,0],[2,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,0],[3,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,0],[2,4,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,0],[2,3,0,2],[2,1,2,1]],[[1,0,1,1],[3,3,3,0],[2,3,0,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,0],[3,3,0,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,0],[2,3,0,2],[2,2,2,0]],[[1,0,1,1],[2,3,3,0],[2,3,0,2],[1,3,2,0]],[[1,0,1,1],[3,3,3,0],[2,3,1,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,0],[3,3,1,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,0],[2,4,1,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,0],[2,3,1,1],[0,3,2,1]],[[1,0,1,1],[2,3,3,0],[2,3,1,1],[0,2,3,1]],[[1,0,1,1],[2,3,3,0],[2,3,1,1],[0,2,2,2]],[[1,0,1,1],[3,3,3,0],[2,3,1,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,0],[3,3,1,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,0],[2,4,1,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,0],[2,3,1,1],[2,1,2,1]],[[1,0,1,1],[3,3,3,0],[2,3,1,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,0],[3,3,1,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,0],[2,4,1,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,0],[2,3,1,2],[0,3,2,0]],[[1,0,1,1],[2,3,3,0],[2,3,1,2],[0,2,3,0]],[[1,0,1,1],[3,3,3,0],[2,3,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,0],[3,3,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,0],[2,4,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,0],[2,3,1,2],[2,1,2,0]],[[1,0,1,1],[3,3,3,0],[2,3,2,1],[0,1,2,1]],[[1,0,1,1],[2,3,3,0],[3,3,2,1],[0,1,2,1]],[[1,0,1,1],[2,3,3,0],[2,4,2,1],[0,1,2,1]],[[1,0,1,1],[3,3,3,0],[2,3,2,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,0],[3,3,2,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,0],[2,4,2,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,0],[2,3,2,1],[0,3,1,1]],[[1,0,1,1],[3,3,3,0],[2,3,2,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,0],[3,3,2,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,0],[2,4,2,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,0],[2,3,2,1],[2,0,2,1]],[[1,0,1,1],[3,3,3,0],[2,3,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,0],[3,3,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,0],[2,4,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,0],[2,3,2,1],[2,1,1,1]],[[1,0,1,1],[3,3,3,0],[2,3,2,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,0],[3,3,2,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,0],[2,4,2,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,0],[2,3,2,1],[2,2,0,1]],[[1,0,1,1],[3,3,3,0],[2,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,0],[3,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,0],[2,4,2,2],[0,1,1,1]],[[1,0,1,1],[3,3,3,0],[2,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,0],[3,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,0],[2,4,2,2],[0,1,2,0]],[[1,0,1,1],[3,3,3,0],[2,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,0],[3,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,0],[2,4,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,0],[2,3,2,2],[0,3,0,1]],[[1,0,1,1],[3,3,3,0],[2,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,0],[3,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,0],[2,4,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,0],[2,3,2,2],[0,3,1,0]],[[1,0,1,1],[3,3,3,0],[2,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,0],[3,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,0],[2,4,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,0],[2,3,2,2],[2,0,1,1]],[[1,0,1,1],[3,3,3,0],[2,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,0],[3,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,0],[2,4,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,0],[2,3,2,2],[2,0,2,0]],[[1,0,1,1],[3,3,3,0],[2,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,0],[3,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,0],[2,4,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,0],[2,3,2,2],[2,1,0,1]],[[1,0,1,1],[3,3,3,0],[2,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,0],[3,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,0],[2,4,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,0],[2,3,2,2],[2,1,1,0]],[[1,0,1,1],[3,3,3,0],[2,3,2,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,0],[3,3,2,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,0],[2,4,2,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,0],[2,3,2,2],[2,2,0,0]],[[1,0,1,1],[3,3,3,0],[2,3,3,2],[0,2,0,0]],[[1,0,1,1],[2,3,3,0],[3,3,3,2],[0,2,0,0]],[[1,0,1,1],[2,3,3,0],[2,4,3,2],[0,2,0,0]],[[1,0,1,1],[3,3,3,0],[2,3,3,2],[1,1,0,0]],[[1,0,1,1],[2,3,3,0],[3,3,3,2],[1,1,0,0]],[[1,0,1,1],[2,3,3,0],[2,4,3,2],[1,1,0,0]],[[1,0,1,1],[2,3,3,0],[2,3,3,2],[2,1,0,0]],[[1,0,1,1],[2,3,3,1],[0,0,3,3],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,0,3,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,1],[0,0,3,2],[1,2,2,2]],[[1,0,1,1],[2,3,3,1],[0,1,2,3],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,1,2,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,1,2,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[0,1,2,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,1],[0,1,2,2],[1,2,2,2]],[[2,0,1,1],[2,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,0,1,1],[3,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,4,3,1],[0,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,4,1],[0,1,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,1,4,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,1,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,1,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[0,1,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,3,1],[0,1,3,1],[1,2,2,2]],[[2,0,1,1],[2,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,0,1,1],[3,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,4,3,1],[0,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,4,1],[0,1,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[0,1,4,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[0,1,3,3],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[0,1,3,2],[1,2,1,2]],[[2,0,1,1],[2,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,0,1,1],[3,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,4,3,1],[0,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,4,1],[0,1,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[0,1,4,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[0,1,3,3],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[0,1,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,3,1],[0,1,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,3,1],[0,1,3,2],[1,2,3,0]],[[1,0,1,1],[2,3,3,1],[0,2,2,3],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[0,2,2,2],[1,1,3,1]],[[1,0,1,1],[2,3,3,1],[0,2,2,2],[1,1,2,2]],[[2,0,1,1],[2,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,0,1,1],[3,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,0,1,1],[2,4,3,1],[0,2,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,4,1],[0,2,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[0,2,4,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[0,2,3,1],[1,1,3,1]],[[1,0,1,1],[2,3,3,1],[0,2,3,1],[1,1,2,2]],[[2,0,1,1],[2,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,0,1,1],[3,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,4,3,1],[0,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,4,1],[0,2,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[0,2,4,1],[1,2,1,1]],[[1,0,1,1],[2,4,3,1],[0,2,3,2],[1,0,2,1]],[[1,0,1,1],[2,3,4,1],[0,2,3,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[0,2,4,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[0,2,3,3],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[0,2,3,2],[1,0,2,2]],[[2,0,1,1],[2,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,0,1,1],[3,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,0,1,1],[2,4,3,1],[0,2,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,4,1],[0,2,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[0,2,4,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[0,2,3,3],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[0,2,3,2],[1,1,1,2]],[[2,0,1,1],[2,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,0,1,1],[3,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,0,1,1],[2,4,3,1],[0,2,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,4,1],[0,2,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[0,2,4,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[0,2,3,3],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[0,2,3,2],[1,1,3,0]],[[2,0,1,1],[2,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,0,1,1],[3,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,4,3,1],[0,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,4,1],[0,2,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[0,2,4,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[0,2,3,3],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[0,2,3,2],[1,2,0,2]],[[2,0,1,1],[2,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,0,1,1],[3,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,4,3,1],[0,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,4,1],[0,2,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[0,2,4,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[0,2,3,3],[1,2,1,0]],[[2,0,1,1],[2,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,0,1,1],[3,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,4,3,1],[0,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,4,1],[0,3,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,4,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,0,3],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,0,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,0,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,0,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,1],[0,3,0,2],[1,2,2,2]],[[2,0,1,1],[2,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,0,1,1],[3,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,0,1,1],[2,4,3,1],[0,3,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,4,1],[0,3,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,4,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,1,1],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,1,1],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,1,1],[1,2,3,1]],[[1,0,1,1],[2,3,3,1],[0,3,1,1],[1,2,2,2]],[[2,0,1,1],[2,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,0,1,1],[3,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,0,1,1],[2,4,3,1],[0,3,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,4,1],[0,3,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[0,4,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[0,3,1,2],[2,2,2,0]],[[1,0,1,1],[2,3,3,1],[0,3,1,2],[1,3,2,0]],[[1,0,1,1],[2,3,3,1],[0,3,1,2],[1,2,3,0]],[[2,0,1,1],[2,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,0,1,1],[3,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,4,3,1],[0,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,4,1],[0,3,2,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[0,4,2,1],[1,1,2,1]],[[2,0,1,1],[2,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,0,1,1],[3,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,0,1,1],[2,4,3,1],[0,3,2,1],[1,2,1,1]],[[1,0,1,1],[2,3,4,1],[0,3,2,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[0,4,2,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[0,3,2,1],[2,2,1,1]],[[1,0,1,1],[2,3,3,1],[0,3,2,1],[1,3,1,1]],[[1,0,1,1],[2,3,3,1],[0,3,2,3],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,2,2],[0,1,3,1]],[[1,0,1,1],[2,3,3,1],[0,3,2,2],[0,1,2,2]],[[2,0,1,1],[2,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,0,1,1],[3,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,0,1,1],[2,4,3,1],[0,3,2,2],[1,1,1,1]],[[1,0,1,1],[2,3,4,1],[0,3,2,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[0,4,2,2],[1,1,1,1]],[[2,0,1,1],[2,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,0,1,1],[3,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,4,3,1],[0,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,4,1],[0,3,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[0,4,2,2],[1,1,2,0]],[[2,0,1,1],[2,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,0,1,1],[3,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,0,1,1],[2,4,3,1],[0,3,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,4,1],[0,3,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[0,4,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[0,3,2,2],[2,2,0,1]],[[1,0,1,1],[2,3,3,1],[0,3,2,2],[1,3,0,1]],[[2,0,1,1],[2,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,0,1,1],[3,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,0,1,1],[2,4,3,1],[0,3,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,4,1],[0,3,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[0,4,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[0,3,2,2],[2,2,1,0]],[[1,0,1,1],[2,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,0,1,1],[2,4,3,1],[0,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,4,1],[0,3,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,4,1],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,3,1],[0,1,3,1]],[[1,0,1,1],[2,3,3,1],[0,3,3,1],[0,1,2,2]],[[1,0,1,1],[2,4,3,1],[0,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,4,1],[0,3,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,0,1,1],[2,4,3,1],[0,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,4,1],[0,3,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,4,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,3,3],[0,0,2,1]],[[1,0,1,1],[2,3,3,1],[0,3,3,2],[0,0,2,2]],[[1,0,1,1],[2,4,3,1],[0,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,1],[0,3,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[0,3,4,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[0,3,3,3],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[0,3,3,2],[0,1,1,2]],[[1,0,1,1],[2,4,3,1],[0,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,1],[0,3,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[0,3,4,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[0,3,3,3],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[0,3,3,2],[0,1,3,0]],[[1,0,1,1],[2,4,3,1],[0,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,4,1],[0,3,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[0,3,4,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[0,3,3,3],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[0,3,3,2],[0,2,0,2]],[[1,0,1,1],[2,4,3,1],[0,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,4,1],[0,3,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[0,3,4,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[0,3,3,3],[0,2,1,0]],[[2,0,1,1],[2,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,0,1,1],[3,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,4,3,1],[0,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,4,1],[0,3,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,1],[1,0,2,3],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,0,2,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,0,2,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[1,0,2,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,1],[1,0,2,2],[1,2,2,2]],[[2,0,1,1],[2,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,0,1,1],[3,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,4,3,1],[1,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,4,1],[1,0,3,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,0,4,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,0,3,1],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,0,3,1],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[1,0,3,1],[1,2,3,1]],[[1,0,1,1],[2,3,3,1],[1,0,3,1],[1,2,2,2]],[[1,0,1,1],[2,3,3,1],[1,0,3,3],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,0,3,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,1],[1,0,3,2],[0,2,2,2]],[[2,0,1,1],[2,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,0,1,1],[3,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,4,3,1],[1,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,4,1],[1,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[1,0,4,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[1,0,3,3],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[1,0,3,2],[1,2,1,2]],[[2,0,1,1],[2,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,0,1,1],[3,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,4,3,1],[1,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,4,1],[1,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[1,0,4,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[1,0,3,3],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[1,0,3,2],[2,2,2,0]],[[1,0,1,1],[2,3,3,1],[1,0,3,2],[1,3,2,0]],[[1,0,1,1],[2,3,3,1],[1,0,3,2],[1,2,3,0]],[[1,0,1,1],[2,3,3,1],[1,1,2,3],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,1,2,2],[0,3,2,1]],[[1,0,1,1],[2,3,3,1],[1,1,2,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,1],[1,1,2,2],[0,2,2,2]],[[2,0,1,1],[2,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,0,1,1],[3,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,0,1,1],[2,4,3,1],[1,1,3,1],[0,2,2,1]],[[1,0,1,1],[2,3,4,1],[1,1,3,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,1,4,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,1,3,1],[0,3,2,1]],[[1,0,1,1],[2,3,3,1],[1,1,3,1],[0,2,3,1]],[[1,0,1,1],[2,3,3,1],[1,1,3,1],[0,2,2,2]],[[2,0,1,1],[2,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,0,1,1],[3,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,0,1,1],[2,4,3,1],[1,1,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,4,1],[1,1,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[1,1,4,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[1,1,3,3],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[1,1,3,2],[0,2,1,2]],[[2,0,1,1],[2,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,0,1,1],[3,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,0,1,1],[2,4,3,1],[1,1,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,4,1],[1,1,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[1,1,4,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[1,1,3,3],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[1,1,3,2],[0,3,2,0]],[[1,0,1,1],[2,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,0,1,1],[2,3,3,1],[1,2,2,3],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[1,2,2,2],[0,1,3,1]],[[1,0,1,1],[2,3,3,1],[1,2,2,2],[0,1,2,2]],[[1,0,1,1],[2,3,3,1],[1,2,2,3],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[1,2,2,2],[1,0,3,1]],[[1,0,1,1],[2,3,3,1],[1,2,2,2],[1,0,2,2]],[[2,0,1,1],[2,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,0,1,1],[3,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,0,1,1],[2,4,3,1],[1,2,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,4,1],[1,2,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[1,2,4,1],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,1],[0,1,3,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,1],[0,1,2,2]],[[2,0,1,1],[2,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,0,1,1],[3,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,4,3,1],[1,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,4,1],[1,2,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[1,2,4,1],[0,2,1,1]],[[2,0,1,1],[2,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,0,1,1],[3,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,4,3,1],[1,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,4,1],[1,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[1,2,4,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,1],[1,0,3,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,1],[1,0,2,2]],[[2,0,1,1],[2,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,0,1,1],[3,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,4,3,1],[1,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,4,1],[1,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[1,2,4,1],[1,1,1,1]],[[2,0,1,1],[2,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,0,1,1],[3,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,0,1,1],[2,4,3,1],[1,2,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,4,1],[1,2,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,1],[1,2,4,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,3],[0,0,2,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,2],[0,0,2,2]],[[2,0,1,1],[2,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,0,1,1],[3,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,4,3,1],[1,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,1],[1,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[1,2,4,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,3],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,2],[0,1,1,2]],[[2,0,1,1],[2,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,0,1,1],[3,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,4,3,1],[1,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,1],[1,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[1,2,4,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[1,2,3,3],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[1,2,3,2],[0,1,3,0]],[[2,0,1,1],[2,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,0,1,1],[3,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,0,1,1],[2,4,3,1],[1,2,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,4,1],[1,2,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[1,2,4,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,3],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,2],[0,2,0,2]],[[2,0,1,1],[2,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,0,1,1],[3,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,0,1,1],[2,4,3,1],[1,2,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,4,1],[1,2,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[1,2,4,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[1,2,3,3],[0,2,1,0]],[[2,0,1,1],[2,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,0,1,1],[3,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,0,1,1],[2,4,3,1],[1,2,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,4,1],[1,2,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,1],[1,2,4,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,3],[1,0,1,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,2],[1,0,1,2]],[[2,0,1,1],[2,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,0,1,1],[3,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,0,1,1],[2,4,3,1],[1,2,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,4,1],[1,2,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[1,2,4,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[1,2,3,3],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[1,2,3,2],[1,0,3,0]],[[2,0,1,1],[2,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,0,1,1],[3,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,4,3,1],[1,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,4,1],[1,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[1,2,4,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,3],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[1,2,3,2],[1,1,0,2]],[[2,0,1,1],[2,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,0,1,1],[3,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,0,1,1],[2,4,3,1],[1,2,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,4,1],[1,2,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[1,2,4,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[1,2,3,3],[1,1,1,0]],[[2,0,1,1],[2,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,0,1,1],[3,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,4,3,1],[1,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,4,1],[1,3,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,4,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,3,0,3],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,3,0,2],[0,3,2,1]],[[1,0,1,1],[2,3,3,1],[1,3,0,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,1],[1,3,0,2],[0,2,2,2]],[[2,0,1,1],[2,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,0,1,1],[3,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,4,3,1],[1,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,4,1],[1,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[1,4,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[1,4,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,3,1,0],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,3,1,0],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[1,3,1,0],[1,2,3,1]],[[2,0,1,1],[2,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,0,1,1],[3,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,0,1,1],[2,4,3,1],[1,3,1,1],[0,2,2,1]],[[1,0,1,1],[2,3,4,1],[1,3,1,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,4,1,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[1,3,1,1],[0,3,2,1]],[[1,0,1,1],[2,3,3,1],[1,3,1,1],[0,2,3,1]],[[1,0,1,1],[2,3,3,1],[1,3,1,1],[0,2,2,2]],[[2,0,1,1],[2,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,0,1,1],[3,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,0,1,1],[2,4,3,1],[1,3,1,1],[1,1,2,1]],[[1,0,1,1],[2,3,4,1],[1,3,1,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[1,4,1,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[1,4,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[1,3,1,1],[2,2,2,0]],[[1,0,1,1],[2,3,3,1],[1,3,1,1],[1,3,2,0]],[[2,0,1,1],[2,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,0,1,1],[3,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,0,1,1],[2,4,3,1],[1,3,1,2],[0,2,2,0]],[[1,0,1,1],[2,3,4,1],[1,3,1,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[1,4,1,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[1,3,1,2],[0,3,2,0]],[[1,0,1,1],[2,3,3,1],[1,3,1,2],[0,2,3,0]],[[2,0,1,1],[2,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,0,1,1],[3,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,0,1,1],[2,4,3,1],[1,3,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,4,1],[1,3,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[1,4,2,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[1,3,2,0],[2,2,1,1]],[[1,0,1,1],[2,3,3,1],[1,3,2,0],[1,3,1,1]],[[2,0,1,1],[2,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,0,1,1],[3,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,0,1,1],[2,4,3,1],[1,3,2,1],[0,1,2,1]],[[1,0,1,1],[2,3,4,1],[1,3,2,1],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[1,4,2,1],[0,1,2,1]],[[2,0,1,1],[2,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,0,1,1],[3,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,0,1,1],[2,4,3,1],[1,3,2,1],[0,2,1,1]],[[1,0,1,1],[2,3,4,1],[1,3,2,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[1,4,2,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[1,3,2,1],[0,3,1,1]],[[2,0,1,1],[2,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,0,1,1],[3,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,0,1,1],[2,4,3,1],[1,3,2,1],[1,0,2,1]],[[1,0,1,1],[2,3,4,1],[1,3,2,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[1,4,2,1],[1,0,2,1]],[[2,0,1,1],[2,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,0,1,1],[3,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,0,1,1],[2,4,3,1],[1,3,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,4,1],[1,3,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[1,4,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[1,4,2,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[1,3,2,1],[2,2,1,0]],[[1,0,1,1],[2,3,3,1],[1,3,2,1],[1,3,1,0]],[[2,0,1,1],[2,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,0,1,1],[3,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,4,3,1],[1,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,1],[1,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[1,4,2,2],[0,1,1,1]],[[2,0,1,1],[2,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,0,1,1],[3,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,4,3,1],[1,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,1],[1,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[1,4,2,2],[0,1,2,0]],[[2,0,1,1],[2,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,0,1,1],[3,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,4,3,1],[1,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,4,1],[1,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[1,4,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[1,3,2,2],[0,3,0,1]],[[2,0,1,1],[2,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,0,1,1],[3,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,4,3,1],[1,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,4,1],[1,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[1,4,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[1,3,2,2],[0,3,1,0]],[[1,2,1,1],[3,3,3,1],[1,0,0,2],[1,2,2,1]],[[1,3,1,1],[2,3,3,1],[1,0,0,2],[1,2,2,1]],[[2,0,1,1],[2,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,0,1,1],[3,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,4,3,1],[1,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,4,1],[1,3,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,1],[1,4,2,2],[1,0,1,1]],[[2,0,1,1],[2,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,0,1,1],[3,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,4,3,1],[1,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,4,1],[1,3,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[1,4,2,2],[1,0,2,0]],[[2,0,1,1],[2,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,0,1,1],[3,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,4,3,1],[1,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,4,1],[1,3,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[1,4,2,2],[1,1,0,1]],[[2,0,1,1],[2,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,0,1,1],[3,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,4,3,1],[1,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,4,1],[1,3,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[1,4,2,2],[1,1,1,0]],[[2,2,1,1],[2,3,3,1],[1,0,0,2],[1,2,2,1]],[[2,0,1,1],[2,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,0,1,1],[3,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,0,1,1],[2,4,3,1],[1,3,2,2],[1,2,0,0]],[[1,0,1,1],[2,3,4,1],[1,3,2,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,1],[1,4,2,2],[1,2,0,0]],[[1,2,1,1],[2,3,4,1],[0,3,3,2],[0,0,0,1]],[[1,2,1,1],[2,4,3,1],[0,3,3,2],[0,0,0,1]],[[1,3,1,1],[2,3,3,1],[0,3,3,2],[0,0,0,1]],[[1,0,1,1],[2,3,3,1],[1,4,3,0],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[1,3,3,0],[2,2,1,0]],[[1,0,1,1],[2,3,3,1],[1,3,3,0],[1,3,1,0]],[[2,2,1,1],[2,3,3,1],[0,3,3,2],[0,0,0,1]],[[2,0,1,1],[2,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,0,1,1],[3,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,4,3,1],[1,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,3,4,1],[1,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,3,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,1,1],[2,3,4,1],[0,3,3,1],[1,1,0,0]],[[1,2,1,1],[2,4,3,1],[0,3,3,1],[1,1,0,0]],[[1,3,1,1],[2,3,3,1],[0,3,3,1],[1,1,0,0]],[[2,2,1,1],[2,3,3,1],[0,3,3,1],[1,1,0,0]],[[1,2,1,1],[2,3,4,1],[0,3,3,1],[0,2,0,0]],[[1,2,1,1],[2,4,3,1],[0,3,3,1],[0,2,0,0]],[[1,3,1,1],[2,3,3,1],[0,3,3,1],[0,2,0,0]],[[2,0,1,1],[2,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,0,1,1],[3,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,0,1,1],[2,4,3,1],[1,3,3,2],[0,0,1,1]],[[1,0,1,1],[2,3,4,1],[1,3,3,2],[0,0,1,1]],[[1,0,1,1],[2,3,3,1],[1,3,4,2],[0,0,1,1]],[[1,0,1,1],[2,3,3,1],[1,3,3,3],[0,0,1,1]],[[1,0,1,1],[2,3,3,1],[1,3,3,2],[0,0,1,2]],[[2,0,1,1],[2,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,0,1,1],[3,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,0,1,1],[2,4,3,1],[1,3,3,2],[0,0,2,0]],[[1,0,1,1],[2,3,4,1],[1,3,3,2],[0,0,2,0]],[[1,0,1,1],[2,3,3,1],[1,3,4,2],[0,0,2,0]],[[1,0,1,1],[2,3,3,1],[1,3,3,3],[0,0,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,3,1],[0,2,0,0]],[[2,0,1,1],[2,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,0,1,1],[3,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,0,1,1],[2,4,3,1],[1,3,3,2],[0,2,0,0]],[[1,0,1,1],[2,3,4,1],[1,3,3,2],[0,2,0,0]],[[1,0,1,1],[2,3,3,1],[1,4,3,2],[0,2,0,0]],[[1,2,1,1],[2,3,3,1],[0,3,4,1],[0,0,2,0]],[[1,2,1,1],[2,3,4,1],[0,3,3,1],[0,0,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,3,1],[0,0,2,0]],[[1,3,1,1],[2,3,3,1],[0,3,3,1],[0,0,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,3,1],[0,0,2,0]],[[1,2,1,1],[2,3,3,1],[0,3,4,1],[0,0,1,1]],[[1,2,1,1],[2,3,4,1],[0,3,3,1],[0,0,1,1]],[[1,2,1,1],[2,4,3,1],[0,3,3,1],[0,0,1,1]],[[1,3,1,1],[2,3,3,1],[0,3,3,1],[0,0,1,1]],[[2,2,1,1],[2,3,3,1],[0,3,3,1],[0,0,1,1]],[[1,2,1,1],[2,4,3,1],[0,3,3,0],[1,2,0,0]],[[1,3,1,1],[2,3,3,1],[0,3,3,0],[1,2,0,0]],[[2,2,1,1],[2,3,3,1],[0,3,3,0],[1,2,0,0]],[[2,0,1,1],[2,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,0,1,1],[3,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,0,1,1],[2,4,3,1],[1,3,3,2],[1,1,0,0]],[[1,0,1,1],[2,3,4,1],[1,3,3,2],[1,1,0,0]],[[1,0,1,1],[2,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,1,1],[2,3,4,1],[0,3,3,0],[1,1,1,0]],[[1,2,1,1],[2,4,3,1],[0,3,3,0],[1,1,1,0]],[[1,3,1,1],[2,3,3,1],[0,3,3,0],[1,1,1,0]],[[2,2,1,1],[2,3,3,1],[0,3,3,0],[1,1,1,0]],[[1,2,1,1],[2,3,4,1],[0,3,3,0],[1,0,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,3,0],[1,0,2,0]],[[1,3,1,1],[2,3,3,1],[0,3,3,0],[1,0,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,3,0],[1,0,2,0]],[[1,2,1,1],[2,3,4,1],[0,3,3,0],[0,2,1,0]],[[1,2,1,1],[2,4,3,1],[0,3,3,0],[0,2,1,0]],[[1,3,1,1],[2,3,3,1],[0,3,3,0],[0,2,1,0]],[[2,2,1,1],[2,3,3,1],[0,3,3,0],[0,2,1,0]],[[1,2,1,1],[2,3,4,1],[0,3,3,0],[0,1,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,3,0],[0,1,2,0]],[[1,3,1,1],[2,3,3,1],[0,3,3,0],[0,1,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,3,0],[0,1,2,0]],[[1,2,1,1],[2,3,3,1],[0,3,4,0],[0,0,2,1]],[[1,2,1,1],[2,3,4,1],[0,3,3,0],[0,0,2,1]],[[1,2,1,1],[2,4,3,1],[0,3,3,0],[0,0,2,1]],[[1,3,1,1],[2,3,3,1],[0,3,3,0],[0,0,2,1]],[[2,2,1,1],[2,3,3,1],[0,3,3,0],[0,0,2,1]],[[2,0,1,1],[2,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[3,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,4,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,4,1],[2,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[3,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,1,3],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,1,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,1,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,1,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,1],[2,0,1,2],[1,2,2,2]],[[2,0,1,1],[2,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,0,1,1],[3,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,0,1,1],[2,4,3,1],[2,0,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,4,1],[2,0,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[3,0,2,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,2,1],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,2,1],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,2,1],[1,2,3,1]],[[1,0,1,1],[2,3,3,1],[2,0,2,1],[1,2,2,2]],[[1,0,1,1],[2,3,3,1],[2,0,2,3],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,2,2],[0,3,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,2,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,1],[2,0,2,2],[0,2,2,2]],[[1,0,1,1],[2,3,3,1],[2,0,2,3],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,2,2],[1,1,3,1]],[[1,0,1,1],[2,3,3,1],[2,0,2,2],[1,1,2,2]],[[2,0,1,1],[2,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,1,1],[3,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,1,1],[2,4,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,4,1],[2,0,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[3,0,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,0,2,2],[2,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,0,2,2],[1,3,2,0]],[[1,0,1,1],[2,3,3,1],[2,0,2,2],[1,2,3,0]],[[2,0,1,1],[2,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,0,1,1],[3,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,0,1,1],[2,4,3,1],[2,0,3,1],[0,2,2,1]],[[1,0,1,1],[2,3,4,1],[2,0,3,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[3,0,3,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,4,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,1],[0,3,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,1],[0,2,3,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,1],[0,2,2,2]],[[2,0,1,1],[2,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,0,1,1],[2,4,3,1],[2,0,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,4,1],[2,0,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[3,0,3,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,4,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,1],[2,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,1],[1,1,3,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,1],[1,1,2,2]],[[2,0,1,1],[2,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,1,1],[3,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,1,1],[2,4,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,4,1],[2,0,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[3,0,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,0,4,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,1],[2,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,1],[1,3,1,1]],[[2,0,1,1],[2,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,0,1,1],[3,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,0,1,1],[2,4,3,1],[2,0,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,4,1],[2,0,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[3,0,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,0,4,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,3],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[0,2,1,2]],[[2,0,1,1],[2,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,0,1,1],[3,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,0,1,1],[2,4,3,1],[2,0,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,4,1],[2,0,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[3,0,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,0,4,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,0,3,3],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[0,3,2,0]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[0,2,3,0]],[[2,0,1,1],[2,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,0,1,1],[3,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,0,1,1],[2,4,3,1],[2,0,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,4,1],[2,0,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[3,0,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,0,4,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,3],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[2,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[1,1,1,2]],[[2,0,1,1],[2,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,0,1,1],[3,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,0,1,1],[2,4,3,1],[2,0,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,4,1],[2,0,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[3,0,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,0,4,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,0,3,3],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[2,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[1,1,3,0]],[[2,0,1,1],[2,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,0,1,1],[3,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,0,1,1],[2,4,3,1],[2,0,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,4,1],[2,0,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[3,0,3,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,0,4,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,3],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[2,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[1,3,0,1]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[1,2,0,2]],[[2,0,1,1],[2,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,0,1,1],[3,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,0,1,1],[2,4,3,1],[2,0,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,4,1],[2,0,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[3,0,3,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,0,4,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,0,3,3],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[2,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,0,3,2],[1,3,1,0]],[[2,0,1,1],[2,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[3,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,4,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,4,1],[2,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[3,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,0,3],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,0,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,0,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,0,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,1],[2,1,0,2],[1,2,2,2]],[[2,0,1,1],[2,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,0,1,1],[3,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,0,1,1],[2,4,3,1],[2,1,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,4,1],[2,1,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[3,1,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,1,1],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,1,1],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,1,1],[1,2,3,1]],[[1,0,1,1],[2,3,3,1],[2,1,1,1],[1,2,2,2]],[[2,0,1,1],[2,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,0,1,1],[3,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,0,1,1],[2,4,3,1],[2,1,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,4,1],[2,1,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[3,1,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,1,1,2],[2,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,1,1,2],[1,3,2,0]],[[1,0,1,1],[2,3,3,1],[2,1,1,2],[1,2,3,0]],[[2,0,1,1],[2,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,0,1,1],[3,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,0,1,1],[2,4,3,1],[2,1,2,1],[1,2,1,1]],[[1,0,1,1],[2,3,4,1],[2,1,2,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[3,1,2,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,2,1],[2,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,2,1],[1,3,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,2,3],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,2,2],[0,1,3,1]],[[1,0,1,1],[2,3,3,1],[2,1,2,2],[0,1,2,2]],[[1,0,1,1],[2,3,3,1],[2,1,2,3],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,2,2],[1,0,3,1]],[[1,0,1,1],[2,3,3,1],[2,1,2,2],[1,0,2,2]],[[2,0,1,1],[2,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,0,1,1],[3,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,0,1,1],[2,4,3,1],[2,1,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,4,1],[2,1,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[3,1,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,1,2,2],[2,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,1,2,2],[1,3,0,1]],[[2,0,1,1],[2,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,0,1,1],[3,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,0,1,1],[2,4,3,1],[2,1,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,4,1],[2,1,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[3,1,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,1,2,2],[2,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,1,2,2],[1,3,1,0]],[[1,2,1,1],[2,3,4,1],[0,3,2,2],[0,0,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,2,2],[0,0,2,0]],[[1,3,1,1],[2,3,3,1],[0,3,2,2],[0,0,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,2,2],[0,0,2,0]],[[1,2,1,1],[2,3,4,1],[0,3,2,2],[0,0,1,1]],[[1,2,1,1],[2,4,3,1],[0,3,2,2],[0,0,1,1]],[[1,3,1,1],[2,3,3,1],[0,3,2,2],[0,0,1,1]],[[2,2,1,1],[2,3,3,1],[0,3,2,2],[0,0,1,1]],[[2,0,1,1],[2,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,0,1,1],[2,4,3,1],[2,1,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,4,1],[2,1,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[3,1,3,1],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,4,1],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,1],[0,1,3,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,1],[0,1,2,2]],[[2,0,1,1],[2,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,0,1,1],[3,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,0,1,1],[2,4,3,1],[2,1,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,4,1],[2,1,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[3,1,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,4,1],[0,2,1,1]],[[2,0,1,1],[2,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,0,1,1],[3,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,0,1,1],[2,4,3,1],[2,1,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,4,1],[2,1,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[3,1,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,4,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,1],[2,0,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,1],[1,0,3,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,1],[1,0,2,2]],[[2,0,1,1],[2,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,0,1,1],[3,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,0,1,1],[2,4,3,1],[2,1,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,4,1],[2,1,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[3,1,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,4,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,1],[2,1,1,1]],[[2,0,1,1],[2,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,0,1,1],[3,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,0,1,1],[2,4,3,1],[2,1,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,4,1],[2,1,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,4,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,3],[0,0,2,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,2],[0,0,2,2]],[[2,0,1,1],[2,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,0,1,1],[3,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,0,1,1],[2,4,3,1],[2,1,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,1],[2,1,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[3,1,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,4,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,3],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,2],[0,1,1,2]],[[2,0,1,1],[2,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,0,1,1],[3,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,0,1,1],[2,4,3,1],[2,1,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,1],[2,1,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[3,1,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,1,4,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,1,3,3],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,1,3,2],[0,1,3,0]],[[2,0,1,1],[2,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,0,1,1],[3,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,0,1,1],[2,4,3,1],[2,1,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,4,1],[2,1,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[3,1,3,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,1,4,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,3],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,2],[0,2,0,2]],[[2,0,1,1],[2,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,0,1,1],[3,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,0,1,1],[2,4,3,1],[2,1,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,4,1],[2,1,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[3,1,3,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,1,4,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,1,3,3],[0,2,1,0]],[[1,2,1,1],[2,4,3,1],[0,3,2,1],[1,2,0,0]],[[1,3,1,1],[2,3,3,1],[0,3,2,1],[1,2,0,0]],[[2,2,1,1],[2,3,3,1],[0,3,2,1],[1,2,0,0]],[[2,0,1,1],[2,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,0,1,1],[3,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,0,1,1],[2,4,3,1],[2,1,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,4,1],[2,1,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,1],[3,1,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,4,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,3],[1,0,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,2],[2,0,1,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,2],[1,0,1,2]],[[2,0,1,1],[2,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,0,1,1],[3,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,0,1,1],[2,4,3,1],[2,1,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,4,1],[2,1,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[3,1,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[2,1,4,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[2,1,3,3],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[2,1,3,2],[2,0,2,0]],[[1,0,1,1],[2,3,3,1],[2,1,3,2],[1,0,3,0]],[[2,0,1,1],[2,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,0,1,1],[3,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,0,1,1],[2,4,3,1],[2,1,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,4,1],[2,1,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[3,1,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[2,1,4,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,3],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,2],[2,1,0,1]],[[1,0,1,1],[2,3,3,1],[2,1,3,2],[1,1,0,2]],[[2,0,1,1],[2,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,0,1,1],[3,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,0,1,1],[2,4,3,1],[2,1,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,4,1],[2,1,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[3,1,3,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[2,1,4,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[2,1,3,3],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[2,1,3,2],[2,1,1,0]],[[1,2,1,1],[2,3,4,1],[0,3,2,1],[1,1,1,0]],[[1,2,1,1],[2,4,3,1],[0,3,2,1],[1,1,1,0]],[[1,3,1,1],[2,3,3,1],[0,3,2,1],[1,1,1,0]],[[2,2,1,1],[2,3,3,1],[0,3,2,1],[1,1,1,0]],[[1,2,1,1],[2,3,4,1],[0,3,2,1],[1,1,0,1]],[[1,2,1,1],[2,4,3,1],[0,3,2,1],[1,1,0,1]],[[1,3,1,1],[2,3,3,1],[0,3,2,1],[1,1,0,1]],[[2,2,1,1],[2,3,3,1],[0,3,2,1],[1,1,0,1]],[[1,2,1,1],[2,3,4,1],[0,3,2,1],[1,0,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,2,1],[1,0,2,0]],[[1,3,1,1],[2,3,3,1],[0,3,2,1],[1,0,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,2,1],[1,0,2,0]],[[1,2,1,1],[2,3,4,1],[0,3,2,1],[1,0,1,1]],[[1,2,1,1],[2,4,3,1],[0,3,2,1],[1,0,1,1]],[[1,3,1,1],[2,3,3,1],[0,3,2,1],[1,0,1,1]],[[2,2,1,1],[2,3,3,1],[0,3,2,1],[1,0,1,1]],[[1,2,1,1],[2,3,4,1],[0,3,2,1],[0,2,1,0]],[[1,2,1,1],[2,4,3,1],[0,3,2,1],[0,2,1,0]],[[1,3,1,1],[2,3,3,1],[0,3,2,1],[0,2,1,0]],[[2,2,1,1],[2,3,3,1],[0,3,2,1],[0,2,1,0]],[[2,0,1,1],[2,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,0,1,1],[3,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,0,1,1],[2,4,3,1],[2,2,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,4,1],[2,2,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[3,2,0,2],[0,2,2,1]],[[2,0,1,1],[2,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,0,1,1],[2,4,3,1],[2,2,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,4,1],[2,2,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[3,2,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,2,0,2],[2,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,2,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[3,2,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,2,1,0],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,2,1,0],[1,3,2,1]],[[1,0,1,1],[2,3,3,1],[2,2,1,0],[1,2,3,1]],[[2,0,1,1],[2,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,0,1,1],[3,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,0,1,1],[2,4,3,1],[2,2,1,1],[0,2,2,1]],[[1,0,1,1],[2,3,4,1],[2,2,1,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[3,2,1,1],[0,2,2,1]],[[2,0,1,1],[2,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,0,1,1],[2,4,3,1],[2,2,1,1],[1,1,2,1]],[[1,0,1,1],[2,3,4,1],[2,2,1,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[3,2,1,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,2,1,1],[2,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,2,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[3,2,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,2,1,1],[2,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,2,1,1],[1,3,2,0]],[[2,0,1,1],[2,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,0,1,1],[3,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,0,1,1],[2,4,3,1],[2,2,1,2],[0,2,2,0]],[[1,0,1,1],[2,3,4,1],[2,2,1,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[3,2,1,2],[0,2,2,0]],[[2,0,1,1],[2,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,0,1,1],[3,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,0,1,1],[2,4,3,1],[2,2,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,4,1],[2,2,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[3,2,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,2,1,2],[2,1,2,0]],[[1,2,1,1],[2,3,4,1],[0,3,2,1],[0,2,0,1]],[[1,2,1,1],[2,4,3,1],[0,3,2,1],[0,2,0,1]],[[1,3,1,1],[2,3,3,1],[0,3,2,1],[0,2,0,1]],[[2,2,1,1],[2,3,3,1],[0,3,2,1],[0,2,0,1]],[[1,2,1,1],[2,3,4,1],[0,3,2,1],[0,1,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,2,1],[0,1,2,0]],[[1,0,1,1],[3,3,3,1],[2,2,2,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[3,2,2,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,2,2,0],[2,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,2,2,0],[1,3,1,1]],[[2,0,1,1],[2,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,0,1,1],[2,4,3,1],[2,2,2,1],[0,1,2,1]],[[1,0,1,1],[2,3,4,1],[2,2,2,1],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[3,2,2,1],[0,1,2,1]],[[2,0,1,1],[2,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,0,1,1],[3,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,0,1,1],[2,4,3,1],[2,2,2,1],[0,2,1,1]],[[1,0,1,1],[2,3,4,1],[2,2,2,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[3,2,2,1],[0,2,1,1]],[[2,0,1,1],[2,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,0,1,1],[3,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,0,1,1],[2,4,3,1],[2,2,2,1],[1,0,2,1]],[[1,0,1,1],[2,3,4,1],[2,2,2,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[3,2,2,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[2,2,2,1],[2,0,2,1]],[[2,0,1,1],[2,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,0,1,1],[3,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,0,1,1],[2,4,3,1],[2,2,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,4,1],[2,2,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[3,2,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,2,2,1],[2,1,1,1]],[[1,0,1,1],[3,3,3,1],[2,2,2,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[3,2,2,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,2,2,1],[2,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,2,2,1],[1,3,1,0]],[[1,3,1,1],[2,3,3,1],[0,3,2,1],[0,1,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,2,1],[0,1,2,0]],[[1,2,1,1],[2,3,4,1],[0,3,2,1],[0,1,1,1]],[[1,2,1,1],[2,4,3,1],[0,3,2,1],[0,1,1,1]],[[1,3,1,1],[2,3,3,1],[0,3,2,1],[0,1,1,1]],[[2,2,1,1],[2,3,3,1],[0,3,2,1],[0,1,1,1]],[[2,0,1,1],[2,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,0,1,1],[3,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,0,1,1],[2,4,3,1],[2,2,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,1],[2,2,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,1],[3,2,2,2],[0,1,1,1]],[[2,0,1,1],[2,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,0,1,1],[3,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,0,1,1],[2,4,3,1],[2,2,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,1],[2,2,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[3,2,2,2],[0,1,2,0]],[[2,0,1,1],[2,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,0,1,1],[3,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,0,1,1],[2,4,3,1],[2,2,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,4,1],[2,2,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[3,2,2,2],[0,2,0,1]],[[2,0,1,1],[2,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,0,1,1],[3,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,0,1,1],[2,4,3,1],[2,2,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,4,1],[2,2,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[3,2,2,2],[0,2,1,0]],[[1,2,1,1],[2,4,3,1],[0,3,2,0],[1,2,0,1]],[[1,3,1,1],[2,3,3,1],[0,3,2,0],[1,2,0,1]],[[2,2,1,1],[2,3,3,1],[0,3,2,0],[1,2,0,1]],[[2,0,1,1],[2,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,0,1,1],[3,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,0,1,1],[2,4,3,1],[2,2,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,4,1],[2,2,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,1],[3,2,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,1],[2,2,2,2],[2,0,1,1]],[[2,0,1,1],[2,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,0,1,1],[3,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,0,1,1],[2,4,3,1],[2,2,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,4,1],[2,2,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[3,2,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[2,2,2,2],[2,0,2,0]],[[2,0,1,1],[2,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,0,1,1],[3,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,0,1,1],[2,4,3,1],[2,2,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,4,1],[2,2,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[3,2,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[2,2,2,2],[2,1,0,1]],[[2,0,1,1],[2,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,0,1,1],[3,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,0,1,1],[2,4,3,1],[2,2,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[3,2,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[2,2,2,2],[2,1,1,0]],[[1,2,1,1],[2,3,4,1],[0,3,2,0],[1,1,1,1]],[[1,2,1,1],[2,4,3,1],[0,3,2,0],[1,1,1,1]],[[1,3,1,1],[2,3,3,1],[0,3,2,0],[1,1,1,1]],[[2,2,1,1],[2,3,3,1],[0,3,2,0],[1,1,1,1]],[[2,0,1,1],[2,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,0,1,1],[3,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,0,1,1],[2,4,3,1],[2,2,2,2],[1,2,0,0]],[[1,0,1,1],[2,3,4,1],[2,2,2,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,1],[3,2,2,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,1],[2,2,2,2],[2,2,0,0]],[[1,2,1,1],[2,3,4,1],[0,3,2,0],[1,0,2,1]],[[1,2,1,1],[2,4,3,1],[0,3,2,0],[1,0,2,1]],[[1,3,1,1],[2,3,3,1],[0,3,2,0],[1,0,2,1]],[[2,2,1,1],[2,3,3,1],[0,3,2,0],[1,0,2,1]],[[1,2,1,1],[2,3,4,1],[0,3,2,0],[0,2,1,1]],[[1,2,1,1],[2,4,3,1],[0,3,2,0],[0,2,1,1]],[[1,3,1,1],[2,3,3,1],[0,3,2,0],[0,2,1,1]],[[2,2,1,1],[2,3,3,1],[0,3,2,0],[0,2,1,1]],[[1,2,1,1],[2,3,4,1],[0,3,2,0],[0,1,2,1]],[[1,2,1,1],[2,4,3,1],[0,3,2,0],[0,1,2,1]],[[1,3,1,1],[2,3,3,1],[0,3,2,0],[0,1,2,1]],[[2,2,1,1],[2,3,3,1],[0,3,2,0],[0,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,2,3,0],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[3,2,3,0],[1,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,2,3,0],[2,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,2,3,0],[1,3,1,0]],[[1,2,1,1],[2,4,3,1],[0,3,1,2],[1,2,0,0]],[[1,3,1,1],[2,3,3,1],[0,3,1,2],[1,2,0,0]],[[2,2,1,1],[2,3,3,1],[0,3,1,2],[1,2,0,0]],[[1,2,1,1],[2,3,4,1],[0,3,1,2],[1,1,1,0]],[[1,2,1,1],[2,4,3,1],[0,3,1,2],[1,1,1,0]],[[1,3,1,1],[2,3,3,1],[0,3,1,2],[1,1,1,0]],[[2,2,1,1],[2,3,3,1],[0,3,1,2],[1,1,1,0]],[[1,2,1,1],[2,3,4,1],[0,3,1,2],[1,1,0,1]],[[1,2,1,1],[2,4,3,1],[0,3,1,2],[1,1,0,1]],[[1,3,1,1],[2,3,3,1],[0,3,1,2],[1,1,0,1]],[[2,2,1,1],[2,3,3,1],[0,3,1,2],[1,1,0,1]],[[1,2,1,1],[2,3,4,1],[0,3,1,2],[1,0,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,1,2],[1,0,2,0]],[[1,3,1,1],[2,3,3,1],[0,3,1,2],[1,0,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,1,2],[1,0,2,0]],[[1,2,1,1],[2,3,4,1],[0,3,1,2],[1,0,1,1]],[[1,2,1,1],[2,4,3,1],[0,3,1,2],[1,0,1,1]],[[1,3,1,1],[2,3,3,1],[0,3,1,2],[1,0,1,1]],[[2,2,1,1],[2,3,3,1],[0,3,1,2],[1,0,1,1]],[[1,2,1,1],[2,3,4,1],[0,3,1,2],[0,2,1,0]],[[1,2,1,1],[2,4,3,1],[0,3,1,2],[0,2,1,0]],[[1,3,1,1],[2,3,3,1],[0,3,1,2],[0,2,1,0]],[[2,2,1,1],[2,3,3,1],[0,3,1,2],[0,2,1,0]],[[2,0,1,1],[2,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,0,1,1],[3,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,0,1,1],[2,4,3,1],[2,2,3,2],[0,2,0,0]],[[1,0,1,1],[2,3,4,1],[2,2,3,2],[0,2,0,0]],[[1,0,1,1],[2,3,3,1],[3,2,3,2],[0,2,0,0]],[[1,2,1,1],[2,3,4,1],[0,3,1,2],[0,2,0,1]],[[1,2,1,1],[2,4,3,1],[0,3,1,2],[0,2,0,1]],[[1,3,1,1],[2,3,3,1],[0,3,1,2],[0,2,0,1]],[[2,2,1,1],[2,3,3,1],[0,3,1,2],[0,2,0,1]],[[1,2,1,1],[2,3,4,1],[0,3,1,2],[0,1,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,1,2],[0,1,2,0]],[[1,3,1,1],[2,3,3,1],[0,3,1,2],[0,1,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,1,2],[0,1,2,0]],[[1,2,1,1],[2,3,4,1],[0,3,1,2],[0,1,1,1]],[[1,2,1,1],[2,4,3,1],[0,3,1,2],[0,1,1,1]],[[1,3,1,1],[2,3,3,1],[0,3,1,2],[0,1,1,1]],[[2,2,1,1],[2,3,3,1],[0,3,1,2],[0,1,1,1]],[[1,2,1,1],[2,4,3,1],[0,3,1,1],[1,1,2,0]],[[1,3,1,1],[2,3,3,1],[0,3,1,1],[1,1,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,1,1],[1,1,2,0]],[[1,2,1,1],[2,3,4,1],[0,3,1,1],[0,2,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,1,1],[0,2,2,0]],[[2,0,1,1],[2,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,0,1,1],[3,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,0,1,1],[2,4,3,1],[2,2,3,2],[1,1,0,0]],[[1,0,1,1],[2,3,4,1],[2,2,3,2],[1,1,0,0]],[[1,0,1,1],[2,3,3,1],[3,2,3,2],[1,1,0,0]],[[1,0,1,1],[2,3,3,1],[2,2,3,2],[2,1,0,0]],[[1,3,1,1],[2,3,3,1],[0,3,1,1],[0,2,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,1,1],[0,2,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,1,0],[1,1,2,1]],[[1,3,1,1],[2,3,3,1],[0,3,1,0],[1,1,2,1]],[[2,2,1,1],[2,3,3,1],[0,3,1,0],[1,1,2,1]],[[1,2,1,1],[2,3,4,1],[0,3,1,0],[0,2,2,1]],[[1,2,1,1],[2,4,3,1],[0,3,1,0],[0,2,2,1]],[[1,3,1,1],[2,3,3,1],[0,3,1,0],[0,2,2,1]],[[2,2,1,1],[2,3,3,1],[0,3,1,0],[0,2,2,1]],[[1,2,1,1],[2,4,3,1],[0,3,0,2],[1,1,2,0]],[[1,3,1,1],[2,3,3,1],[0,3,0,2],[1,1,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,0,2],[1,1,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,0,2],[1,1,1,1]],[[1,3,1,1],[2,3,3,1],[0,3,0,2],[1,1,1,1]],[[2,2,1,1],[2,3,3,1],[0,3,0,2],[1,1,1,1]],[[1,2,1,1],[2,3,4,1],[0,3,0,2],[1,0,2,1]],[[1,2,1,1],[2,4,3,1],[0,3,0,2],[1,0,2,1]],[[1,3,1,1],[2,3,3,1],[0,3,0,2],[1,0,2,1]],[[2,2,1,1],[2,3,3,1],[0,3,0,2],[1,0,2,1]],[[1,2,1,1],[2,3,4,1],[0,3,0,2],[0,2,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,0,2],[0,2,2,0]],[[1,3,1,1],[2,3,3,1],[0,3,0,2],[0,2,2,0]],[[2,2,1,1],[2,3,3,1],[0,3,0,2],[0,2,2,0]],[[1,2,1,1],[2,3,4,1],[0,3,0,2],[0,2,1,1]],[[1,2,1,1],[2,4,3,1],[0,3,0,2],[0,2,1,1]],[[1,3,1,1],[2,3,3,1],[0,3,0,2],[0,2,1,1]],[[2,2,1,1],[2,3,3,1],[0,3,0,2],[0,2,1,1]],[[1,2,1,1],[2,3,4,1],[0,3,0,2],[0,1,2,1]],[[1,2,1,1],[2,4,3,1],[0,3,0,2],[0,1,2,1]],[[1,3,1,1],[2,3,3,1],[0,3,0,2],[0,1,2,1]],[[2,2,1,1],[2,3,3,1],[0,3,0,2],[0,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,3,0,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[3,3,0,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,3,0,0],[2,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,3,0,0],[1,3,2,1]],[[1,0,1,1],[3,3,3,1],[2,3,0,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[3,3,0,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,3,0,1],[2,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,3,0,1],[1,3,2,0]],[[1,2,1,1],[2,4,3,1],[0,3,0,1],[1,1,2,1]],[[1,3,1,1],[2,3,3,1],[0,3,0,1],[1,1,2,1]],[[2,2,1,1],[2,3,3,1],[0,3,0,1],[1,1,2,1]],[[1,2,1,1],[2,3,4,1],[0,3,0,1],[0,2,2,1]],[[1,2,1,1],[2,4,3,1],[0,3,0,1],[0,2,2,1]],[[1,3,1,1],[2,3,3,1],[0,3,0,1],[0,2,2,1]],[[2,2,1,1],[2,3,3,1],[0,3,0,1],[0,2,2,1]],[[1,0,1,1],[3,3,3,1],[2,3,1,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[3,3,1,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,4,1,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,1],[2,3,1,0],[0,3,2,1]],[[1,0,1,1],[2,3,3,1],[2,3,1,0],[0,2,3,1]],[[1,0,1,1],[3,3,3,1],[2,3,1,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[3,3,1,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,4,1,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,3,1,0],[2,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,3,1,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[3,3,1,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,4,1,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,1],[2,3,1,1],[0,3,2,0]],[[1,0,1,1],[3,3,3,1],[2,3,1,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[3,3,1,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,4,1,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,3,1,1],[2,1,2,0]],[[1,2,1,1],[2,3,4,1],[0,2,3,2],[1,0,0,1]],[[1,2,1,1],[2,4,3,1],[0,2,3,2],[1,0,0,1]],[[1,3,1,1],[2,3,3,1],[0,2,3,2],[1,0,0,1]],[[2,2,1,1],[2,3,3,1],[0,2,3,2],[1,0,0,1]],[[1,0,1,1],[3,3,3,1],[2,3,2,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[3,3,2,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,1],[2,4,2,0],[0,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,3,2,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[3,3,2,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,4,2,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,1],[2,3,2,0],[0,3,1,1]],[[1,0,1,1],[3,3,3,1],[2,3,2,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[3,3,2,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[2,4,2,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,1],[2,3,2,0],[2,0,2,1]],[[1,0,1,1],[3,3,3,1],[2,3,2,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[3,3,2,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,4,2,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,1],[2,3,2,0],[2,1,1,1]],[[1,0,1,1],[3,3,3,1],[2,3,2,0],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[3,3,2,0],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,4,2,0],[1,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,1,1],[2,3,4,1],[0,2,3,2],[0,1,0,1]],[[1,2,1,1],[2,4,3,1],[0,2,3,2],[0,1,0,1]],[[1,3,1,1],[2,3,3,1],[0,2,3,2],[0,1,0,1]],[[2,2,1,1],[2,3,3,1],[0,2,3,2],[0,1,0,1]],[[1,0,1,1],[3,3,3,1],[2,3,2,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[3,3,2,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,4,2,1],[0,1,2,0]],[[1,0,1,1],[3,3,3,1],[2,3,2,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[3,3,2,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,1],[2,4,2,1],[0,2,0,1]],[[1,0,1,1],[3,3,3,1],[2,3,2,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[3,3,2,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,4,2,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,3,2,1],[0,3,1,0]],[[1,0,1,1],[3,3,3,1],[2,3,2,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[3,3,2,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[2,4,2,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[2,3,2,1],[2,0,2,0]],[[1,0,1,1],[3,3,3,1],[2,3,2,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[3,3,2,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[2,4,2,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,1],[2,3,2,1],[2,1,0,1]],[[1,0,1,1],[3,3,3,1],[2,3,2,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[3,3,2,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[2,4,2,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[2,3,2,1],[2,1,1,0]],[[1,0,1,1],[3,3,3,1],[2,3,2,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,1],[3,3,2,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,1],[2,4,2,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,1,1],[2,3,4,1],[0,2,3,1],[1,1,1,0]],[[1,2,1,1],[2,4,3,1],[0,2,3,1],[1,1,1,0]],[[1,3,1,1],[2,3,3,1],[0,2,3,1],[1,1,1,0]],[[2,2,1,1],[2,3,3,1],[0,2,3,1],[1,1,1,0]],[[1,2,1,1],[2,3,4,1],[0,2,3,1],[1,1,0,1]],[[1,2,1,1],[2,4,3,1],[0,2,3,1],[1,1,0,1]],[[1,3,1,1],[2,3,3,1],[0,2,3,1],[1,1,0,1]],[[2,2,1,1],[2,3,3,1],[0,2,3,1],[1,1,0,1]],[[1,2,1,1],[2,3,3,1],[0,2,4,1],[1,0,2,0]],[[1,2,1,1],[2,3,4,1],[0,2,3,1],[1,0,2,0]],[[1,2,1,1],[2,4,3,1],[0,2,3,1],[1,0,2,0]],[[1,3,1,1],[2,3,3,1],[0,2,3,1],[1,0,2,0]],[[2,2,1,1],[2,3,3,1],[0,2,3,1],[1,0,2,0]],[[1,2,1,1],[2,3,3,1],[0,2,4,1],[1,0,1,1]],[[1,2,1,1],[2,3,4,1],[0,2,3,1],[1,0,1,1]],[[1,2,1,1],[2,4,3,1],[0,2,3,1],[1,0,1,1]],[[1,3,1,1],[2,3,3,1],[0,2,3,1],[1,0,1,1]],[[2,2,1,1],[2,3,3,1],[0,2,3,1],[1,0,1,1]],[[1,2,1,1],[2,3,3,1],[0,2,4,1],[0,2,1,0]],[[1,2,1,1],[2,3,4,1],[0,2,3,1],[0,2,1,0]],[[1,2,1,1],[2,4,3,1],[0,2,3,1],[0,2,1,0]],[[1,3,1,1],[2,3,3,1],[0,2,3,1],[0,2,1,0]],[[2,2,1,1],[2,3,3,1],[0,2,3,1],[0,2,1,0]],[[1,2,1,1],[2,3,3,1],[0,2,4,1],[0,2,0,1]],[[1,2,1,1],[2,3,4,1],[0,2,3,1],[0,2,0,1]],[[1,2,1,1],[2,4,3,1],[0,2,3,1],[0,2,0,1]],[[2,0,1,1],[2,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,0,1,1],[3,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,0,1,1],[2,4,3,1],[2,3,2,2],[1,0,0,1]],[[1,0,1,1],[2,3,4,1],[2,3,2,2],[1,0,0,1]],[[1,0,1,1],[2,3,3,1],[3,3,2,2],[1,0,0,1]],[[2,0,1,1],[2,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,0,1,1],[3,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,0,1,1],[2,4,3,1],[2,3,2,2],[1,0,1,0]],[[1,0,1,1],[2,3,4,1],[2,3,2,2],[1,0,1,0]],[[1,0,1,1],[2,3,3,1],[3,3,2,2],[1,0,1,0]],[[1,3,1,1],[2,3,3,1],[0,2,3,1],[0,2,0,1]],[[2,2,1,1],[2,3,3,1],[0,2,3,1],[0,2,0,1]],[[1,2,1,1],[2,3,3,1],[0,2,3,1],[0,1,3,0]],[[1,2,1,1],[2,3,3,1],[0,2,4,1],[0,1,2,0]],[[1,2,1,1],[2,3,4,1],[0,2,3,1],[0,1,2,0]],[[1,2,1,1],[2,4,3,1],[0,2,3,1],[0,1,2,0]],[[1,3,1,1],[2,3,3,1],[0,2,3,1],[0,1,2,0]],[[2,2,1,1],[2,3,3,1],[0,2,3,1],[0,1,2,0]],[[1,2,1,1],[2,3,3,1],[0,2,4,1],[0,1,1,1]],[[1,2,1,1],[2,3,4,1],[0,2,3,1],[0,1,1,1]],[[1,2,1,1],[2,4,3,1],[0,2,3,1],[0,1,1,1]],[[1,3,1,1],[2,3,3,1],[0,2,3,1],[0,1,1,1]],[[2,2,1,1],[2,3,3,1],[0,2,3,1],[0,1,1,1]],[[1,2,1,1],[2,3,3,1],[0,2,4,1],[0,0,2,1]],[[1,2,1,1],[2,3,4,1],[0,2,3,1],[0,0,2,1]],[[1,2,1,1],[2,4,3,1],[0,2,3,1],[0,0,2,1]],[[1,3,1,1],[2,3,3,1],[0,2,3,1],[0,0,2,1]],[[2,2,1,1],[2,3,3,1],[0,2,3,1],[0,0,2,1]],[[1,2,1,1],[2,3,4,1],[0,2,3,0],[1,1,1,1]],[[1,2,1,1],[2,4,3,1],[0,2,3,0],[1,1,1,1]],[[1,3,1,1],[2,3,3,1],[0,2,3,0],[1,1,1,1]],[[2,2,1,1],[2,3,3,1],[0,2,3,0],[1,1,1,1]],[[1,2,1,1],[2,3,3,1],[0,2,4,0],[1,0,2,1]],[[1,2,1,1],[2,3,4,1],[0,2,3,0],[1,0,2,1]],[[1,2,1,1],[2,4,3,1],[0,2,3,0],[1,0,2,1]],[[1,3,1,1],[2,3,3,1],[0,2,3,0],[1,0,2,1]],[[2,2,1,1],[2,3,3,1],[0,2,3,0],[1,0,2,1]],[[1,2,1,1],[2,3,3,1],[0,2,4,0],[0,2,1,1]],[[1,2,1,1],[2,3,4,1],[0,2,3,0],[0,2,1,1]],[[1,2,1,1],[2,4,3,1],[0,2,3,0],[0,2,1,1]],[[1,3,1,1],[2,3,3,1],[0,2,3,0],[0,2,1,1]],[[2,2,1,1],[2,3,3,1],[0,2,3,0],[0,2,1,1]],[[1,2,1,1],[2,3,3,1],[0,2,3,0],[0,1,2,2]],[[1,2,1,1],[2,3,3,1],[0,2,3,0],[0,1,3,1]],[[1,2,1,1],[2,3,3,1],[0,2,4,0],[0,1,2,1]],[[1,2,1,1],[2,3,4,1],[0,2,3,0],[0,1,2,1]],[[1,2,1,1],[2,4,3,1],[0,2,3,0],[0,1,2,1]],[[1,3,1,1],[2,3,3,1],[0,2,3,0],[0,1,2,1]],[[2,2,1,1],[2,3,3,1],[0,2,3,0],[0,1,2,1]],[[1,0,1,1],[3,3,3,1],[2,3,3,0],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[3,3,3,0],[0,1,2,0]],[[1,0,1,1],[2,3,3,1],[2,4,3,0],[0,1,2,0]],[[1,0,1,1],[3,3,3,1],[2,3,3,0],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[3,3,3,0],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,4,3,0],[0,2,1,0]],[[1,0,1,1],[2,3,3,1],[2,3,3,0],[0,3,1,0]],[[1,0,1,1],[3,3,3,1],[2,3,3,0],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[3,3,3,0],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[2,4,3,0],[1,0,2,0]],[[1,0,1,1],[2,3,3,1],[2,3,3,0],[2,0,2,0]],[[1,0,1,1],[3,3,3,1],[2,3,3,0],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[3,3,3,0],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[2,4,3,0],[1,1,1,0]],[[1,0,1,1],[2,3,3,1],[2,3,3,0],[2,1,1,0]],[[1,0,1,1],[3,3,3,1],[2,3,3,0],[1,2,0,0]],[[1,0,1,1],[2,3,3,1],[3,3,3,0],[1,2,0,0]],[[1,0,1,1],[2,3,3,1],[2,4,3,0],[1,2,0,0]],[[1,0,1,1],[2,3,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,1,1],[2,3,4,1],[0,2,2,2],[1,1,1,0]],[[1,2,1,1],[2,4,3,1],[0,2,2,2],[1,1,1,0]],[[1,3,1,1],[2,3,3,1],[0,2,2,2],[1,1,1,0]],[[2,2,1,1],[2,3,3,1],[0,2,2,2],[1,1,1,0]],[[1,2,1,1],[2,3,4,1],[0,2,2,2],[1,1,0,1]],[[1,2,1,1],[2,4,3,1],[0,2,2,2],[1,1,0,1]],[[1,3,1,1],[2,3,3,1],[0,2,2,2],[1,1,0,1]],[[2,2,1,1],[2,3,3,1],[0,2,2,2],[1,1,0,1]],[[1,2,1,1],[2,3,4,1],[0,2,2,2],[1,0,2,0]],[[1,2,1,1],[2,4,3,1],[0,2,2,2],[1,0,2,0]],[[1,3,1,1],[2,3,3,1],[0,2,2,2],[1,0,2,0]],[[2,2,1,1],[2,3,3,1],[0,2,2,2],[1,0,2,0]],[[1,2,1,1],[2,3,4,1],[0,2,2,2],[1,0,1,1]],[[1,2,1,1],[2,4,3,1],[0,2,2,2],[1,0,1,1]],[[1,3,1,1],[2,3,3,1],[0,2,2,2],[1,0,1,1]],[[2,2,1,1],[2,3,3,1],[0,2,2,2],[1,0,1,1]],[[1,0,1,1],[3,3,3,1],[2,3,3,1],[0,2,0,0]],[[1,0,1,1],[2,3,3,1],[3,3,3,1],[0,2,0,0]],[[1,0,1,1],[2,3,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,1,1],[2,3,4,1],[0,2,2,2],[0,2,1,0]],[[1,2,1,1],[2,4,3,1],[0,2,2,2],[0,2,1,0]],[[1,3,1,1],[2,3,3,1],[0,2,2,2],[0,2,1,0]],[[2,2,1,1],[2,3,3,1],[0,2,2,2],[0,2,1,0]],[[1,2,1,1],[2,3,4,1],[0,2,2,2],[0,2,0,1]],[[1,2,1,1],[2,4,3,1],[0,2,2,2],[0,2,0,1]],[[1,3,1,1],[2,3,3,1],[0,2,2,2],[0,2,0,1]],[[2,2,1,1],[2,3,3,1],[0,2,2,2],[0,2,0,1]],[[1,2,1,1],[2,3,4,1],[0,2,2,2],[0,1,2,0]],[[1,2,1,1],[2,4,3,1],[0,2,2,2],[0,1,2,0]],[[1,3,1,1],[2,3,3,1],[0,2,2,2],[0,1,2,0]],[[2,2,1,1],[2,3,3,1],[0,2,2,2],[0,1,2,0]],[[1,2,1,1],[2,3,4,1],[0,2,2,2],[0,1,1,1]],[[1,2,1,1],[2,4,3,1],[0,2,2,2],[0,1,1,1]],[[1,3,1,1],[2,3,3,1],[0,2,2,2],[0,1,1,1]],[[2,2,1,1],[2,3,3,1],[0,2,2,2],[0,1,1,1]],[[1,2,1,1],[2,3,4,1],[0,2,2,2],[0,0,2,1]],[[1,2,1,1],[2,4,3,1],[0,2,2,2],[0,0,2,1]],[[1,3,1,1],[2,3,3,1],[0,2,2,2],[0,0,2,1]],[[2,2,1,1],[2,3,3,1],[0,2,2,2],[0,0,2,1]],[[1,0,1,1],[3,3,3,1],[2,3,3,1],[1,1,0,0]],[[1,0,1,1],[2,3,3,1],[3,3,3,1],[1,1,0,0]],[[1,0,1,1],[2,3,3,1],[2,4,3,1],[1,1,0,0]],[[1,0,1,1],[2,3,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,1,1],[2,3,4,1],[0,2,1,2],[1,0,2,1]],[[1,2,1,1],[2,4,3,1],[0,2,1,2],[1,0,2,1]],[[1,3,1,1],[2,3,3,1],[0,2,1,2],[1,0,2,1]],[[2,2,1,1],[2,3,3,1],[0,2,1,2],[1,0,2,1]],[[1,2,1,1],[2,3,4,1],[0,2,1,2],[0,1,2,1]],[[1,2,1,1],[2,4,3,1],[0,2,1,2],[0,1,2,1]],[[1,3,1,1],[2,3,3,1],[0,2,1,2],[0,1,2,1]],[[2,2,1,1],[2,3,3,1],[0,2,1,2],[0,1,2,1]],[[1,2,1,1],[2,3,4,1],[0,2,0,2],[0,2,2,1]],[[1,2,1,1],[2,4,3,1],[0,2,0,2],[0,2,2,1]],[[1,3,1,1],[2,3,3,1],[0,2,0,2],[0,2,2,1]],[[2,2,1,1],[2,3,3,1],[0,2,0,2],[0,2,2,1]],[[1,2,1,1],[2,3,3,1],[0,1,3,1],[0,2,3,0]],[[1,2,1,1],[2,3,3,1],[0,1,4,1],[0,2,2,0]],[[1,2,1,1],[2,3,4,1],[0,1,3,1],[0,2,2,0]],[[1,2,1,1],[2,4,3,1],[0,1,3,1],[0,2,2,0]],[[1,3,1,1],[2,3,3,1],[0,1,3,1],[0,2,2,0]],[[2,2,1,1],[2,3,3,1],[0,1,3,1],[0,2,2,0]],[[1,2,1,1],[2,3,3,1],[0,1,4,1],[0,2,1,1]],[[1,2,1,1],[2,3,4,1],[0,1,3,1],[0,2,1,1]],[[1,2,1,1],[2,4,3,1],[0,1,3,1],[0,2,1,1]],[[1,3,1,1],[2,3,3,1],[0,1,3,1],[0,2,1,1]],[[2,2,1,1],[2,3,3,1],[0,1,3,1],[0,2,1,1]],[[1,2,1,1],[2,3,3,1],[0,1,3,0],[0,2,2,2]],[[1,2,1,1],[2,3,3,1],[0,1,3,0],[0,2,3,1]],[[1,2,1,1],[2,3,3,1],[0,1,4,0],[0,2,2,1]],[[1,2,1,1],[2,3,4,1],[0,1,3,0],[0,2,2,1]],[[1,2,1,1],[2,4,3,1],[0,1,3,0],[0,2,2,1]],[[1,3,1,1],[2,3,3,1],[0,1,3,0],[0,2,2,1]],[[2,2,1,1],[2,3,3,1],[0,1,3,0],[0,2,2,1]],[[1,2,1,1],[2,3,4,1],[0,1,2,2],[0,2,2,0]],[[1,2,1,1],[2,4,3,1],[0,1,2,2],[0,2,2,0]],[[1,3,1,1],[2,3,3,1],[0,1,2,2],[0,2,2,0]],[[2,2,1,1],[2,3,3,1],[0,1,2,2],[0,2,2,0]],[[1,2,1,1],[2,3,4,1],[0,1,2,2],[0,2,1,1]],[[1,2,1,1],[2,4,3,1],[0,1,2,2],[0,2,1,1]],[[1,3,1,1],[2,3,3,1],[0,1,2,2],[0,2,1,1]],[[2,2,1,1],[2,3,3,1],[0,1,2,2],[0,2,1,1]],[[1,2,1,1],[2,3,4,1],[0,1,1,2],[0,2,2,1]],[[1,2,1,1],[2,4,3,1],[0,1,1,2],[0,2,2,1]],[[1,3,1,1],[2,3,3,1],[0,1,1,2],[0,2,2,1]],[[2,2,1,1],[2,3,3,1],[0,1,1,2],[0,2,2,1]],[[2,0,1,1],[2,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,0,1,1],[3,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,0,1,1],[2,4,3,1],[2,3,3,2],[1,0,0,0]],[[1,0,1,1],[2,3,4,1],[2,3,3,2],[1,0,0,0]],[[1,0,1,1],[2,3,3,1],[3,3,3,2],[1,0,0,0]],[[1,2,1,1],[3,3,3,0],[2,2,3,2],[1,0,0,0]],[[1,3,1,1],[2,3,3,0],[2,2,3,2],[1,0,0,0]],[[2,2,1,1],[2,3,3,0],[2,2,3,2],[1,0,0,0]],[[1,0,1,2],[2,3,3,2],[0,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[0,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[0,0,2,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,0,2,3],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,0,2,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[0,0,2,2],[1,2,2,2]],[[1,0,1,2],[2,3,3,2],[0,0,3,2],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[0,0,3,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[0,0,3,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,0,3,3],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,0,3,2],[0,2,2,2]],[[1,0,1,2],[2,3,3,2],[0,0,3,2],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[0,0,3,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[0,0,3,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,0,3,3],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,0,3,2],[1,1,2,2]],[[1,0,1,2],[2,3,3,2],[0,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[0,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[0,0,3,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,0,3,3],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,0,3,2],[1,2,1,2]],[[1,0,1,2],[2,3,3,2],[0,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,4,2],[0,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,3],[0,0,3,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,0,3,3],[1,2,2,0]],[[2,0,1,1],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[0,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[0,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[0,1,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,1,1,3],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,1,1,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,1,1,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[0,1,1,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[0,1,1,2],[1,2,2,2]],[[2,0,1,1],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[0,1,2,2],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[0,1,2,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[0,1,2,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,1,2,3],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,1,2,2],[1,2,1,2]],[[2,0,1,1],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,0,1,2],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,0,1,1],[3,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,4,3,2],[0,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,4,2],[0,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,3],[0,1,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,1,2,3],[1,2,2,0]],[[2,0,1,1],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[0,1,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[0,1,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[0,1,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,1,4,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,1,3,0],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,1,3,0],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[0,1,3,0],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[0,1,3,0],[1,2,2,2]],[[2,0,1,1],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[0,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[0,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[0,1,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,1,4,1],[1,2,1,1]],[[2,0,1,1],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,0,1,2],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,0,1,1],[3,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,0,1,1],[2,4,3,2],[0,1,3,1],[1,2,2,0]],[[1,0,1,1],[2,3,4,2],[0,1,3,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,3],[0,1,3,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,1,4,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,1,3,1],[2,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,1,3,1],[1,3,2,0]],[[1,0,1,1],[2,3,3,2],[0,1,3,1],[1,2,3,0]],[[1,0,1,2],[2,3,3,2],[0,1,3,2],[1,0,2,1]],[[1,0,1,1],[2,3,4,2],[0,1,3,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,3],[0,1,3,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[0,1,3,3],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[0,1,3,2],[1,0,2,2]],[[1,0,1,2],[2,3,3,2],[0,1,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[0,1,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[0,1,3,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,1,3,3],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,1,3,2],[1,1,1,2]],[[1,0,1,2],[2,3,3,2],[0,1,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[0,1,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,3],[0,1,3,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,1,1],[3,3,3,0],[2,2,2,2],[1,0,1,0]],[[1,3,1,1],[2,3,3,0],[2,2,2,2],[1,0,1,0]],[[2,2,1,1],[2,3,3,0],[2,2,2,2],[1,0,1,0]],[[1,2,1,1],[3,3,3,0],[2,2,2,2],[1,0,0,1]],[[1,3,1,1],[2,3,3,0],[2,2,2,2],[1,0,0,1]],[[2,2,1,1],[2,3,3,0],[2,2,2,2],[1,0,0,1]],[[2,0,1,1],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[0,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[0,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[0,2,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,0,3],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,0,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,0,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,0,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[0,2,0,2],[1,2,2,2]],[[2,0,1,1],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,0,1,2],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[0,2,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[0,2,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[0,2,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,1,3],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,1,2],[1,1,3,1]],[[1,0,1,1],[2,3,3,2],[0,2,1,2],[1,1,2,2]],[[1,0,1,2],[2,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,0,1,1],[2,4,3,2],[0,2,2,2],[1,0,2,1]],[[1,0,1,1],[2,3,4,2],[0,2,2,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,3],[0,2,2,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,2,3],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,2,2],[1,0,2,2]],[[2,0,1,1],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[0,2,2,2],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[0,2,2,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[0,2,2,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,2,2,3],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,2,2,2],[1,1,1,2]],[[2,0,1,1],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,0,1,2],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[0,2,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[0,2,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,3],[0,2,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,2,2,3],[1,1,2,0]],[[2,0,1,1],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,0,1,2],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,0,1,1],[3,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,0,1,1],[2,4,3,2],[0,2,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,4,2],[0,2,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,3],[0,2,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,2,2,3],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,2,2,2],[1,2,0,2]],[[2,0,1,1],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,0,1,2],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,0,1,1],[3,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,0,1,1],[2,4,3,2],[0,2,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,4,2],[0,2,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,3],[0,2,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,2,2,3],[1,2,1,0]],[[2,0,1,1],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,0,1,2],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[0,2,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[0,2,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[0,2,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,4,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,3,0],[1,1,3,1]],[[1,0,1,1],[2,3,3,2],[0,2,3,0],[1,1,2,2]],[[2,0,1,1],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[0,2,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[0,2,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[0,2,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,2,4,0],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,4,3,2],[0,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,4,2],[0,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,3],[0,2,3,1],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,4,1],[1,0,2,1]],[[2,0,1,1],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[0,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[0,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[0,2,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,2,4,1],[1,1,1,1]],[[2,0,1,1],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,0,1,2],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[0,2,3,1],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[0,2,3,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,3],[0,2,3,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,2,4,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,2,3,1],[1,1,3,0]],[[2,0,1,1],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,0,1,2],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,0,1,1],[3,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,0,1,1],[2,4,3,2],[0,2,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,4,2],[0,2,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,3],[0,2,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,2,4,1],[1,2,0,1]],[[2,0,1,1],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,0,1,2],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,0,1,1],[3,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,0,1,1],[2,4,3,2],[0,2,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,4,2],[0,2,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,3],[0,2,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,2,4,1],[1,2,1,0]],[[1,0,1,2],[2,3,3,2],[0,2,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,4,2],[0,2,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,3],[0,2,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,3,3],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[0,2,3,2],[0,0,2,2]],[[1,0,1,2],[2,3,3,2],[0,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[0,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[0,2,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,2,3,3],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,2,3,2],[0,1,1,2]],[[1,0,1,2],[2,3,3,2],[0,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[0,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[0,2,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,2,3,3],[0,1,2,0]],[[1,0,1,2],[2,3,3,2],[0,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,4,3,2],[0,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,4,2],[0,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,3],[0,2,3,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[0,2,3,3],[1,1,0,1]],[[2,0,1,1],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[0,3,0,1],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[0,3,0,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[0,3,0,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,4,0,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,0,1],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,0,1],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,0,1],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[0,3,0,1],[1,2,2,2]],[[2,0,1,1],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,0,1,2],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[0,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[0,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[0,3,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,4,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,0,3],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,0,2],[1,1,3,1]],[[1,0,1,1],[2,3,3,2],[0,3,0,2],[1,1,2,2]],[[2,0,1,1],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[0,3,0,2],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[0,3,0,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[0,3,0,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,4,0,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,0,3],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,0,2],[2,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,0,2],[1,3,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,0,2],[1,2,1,2]],[[2,0,1,1],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,0,1,2],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,0,1,1],[3,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,0,1,1],[2,4,3,2],[0,3,0,2],[1,2,2,0]],[[1,0,1,1],[2,3,4,2],[0,3,0,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,3],[0,3,0,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,4,0,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,3,0,3],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,3,0,2],[2,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,3,0,2],[1,3,2,0]],[[1,0,1,1],[2,3,3,2],[0,3,0,2],[1,2,3,0]],[[2,0,1,1],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[0,3,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[0,3,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[0,3,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,4,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,0],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,0],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,0],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,0],[1,2,2,2]],[[2,0,1,1],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,0,1,2],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,0,1,1],[3,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,0,1,1],[2,4,3,2],[0,3,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,4,2],[0,3,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,3],[0,3,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,4,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,3,1,1],[2,2,2,0]],[[1,0,1,1],[2,3,3,2],[0,3,1,1],[1,3,2,0]],[[1,0,1,1],[2,3,3,2],[0,3,1,1],[1,2,3,0]],[[1,0,1,2],[2,3,3,2],[0,3,1,2],[0,1,2,1]],[[1,0,1,1],[2,4,3,2],[0,3,1,2],[0,1,2,1]],[[1,0,1,1],[2,3,4,2],[0,3,1,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,3],[0,3,1,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,3],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,2],[0,1,3,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,2],[0,1,2,2]],[[2,0,1,1],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[0,3,1,2],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[0,3,1,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[0,3,1,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,4,1,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,3],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,2],[1,1,1,2]],[[2,0,1,1],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,0,1,2],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[0,3,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[0,3,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,3],[0,3,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,4,1,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,3,1,3],[1,1,2,0]],[[2,0,1,1],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,0,1,2],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,0,1,1],[3,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,0,1,1],[2,4,3,2],[0,3,1,2],[1,2,0,1]],[[1,0,1,1],[2,3,4,2],[0,3,1,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,3],[0,3,1,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,4,1,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,3],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,2],[2,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,2],[1,3,0,1]],[[1,0,1,1],[2,3,3,2],[0,3,1,2],[1,2,0,2]],[[2,0,1,1],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,0,1,2],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,0,1,1],[3,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,0,1,1],[2,4,3,2],[0,3,1,2],[1,2,1,0]],[[1,0,1,1],[2,3,4,2],[0,3,1,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,3],[0,3,1,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,4,1,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,3,1,3],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,3,1,2],[2,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,3,1,2],[1,3,1,0]],[[2,0,1,1],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,0,1,2],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[0,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[0,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[0,3,2,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,4,2,0],[1,1,2,1]],[[2,0,1,1],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[0,3,2,0],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[0,3,2,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[0,3,2,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,4,2,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,2,0],[2,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,2,0],[1,3,1,1]],[[2,0,1,1],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[0,3,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[0,3,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[0,3,2,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,4,2,1],[1,1,1,1]],[[2,0,1,1],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,0,1,2],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[0,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[0,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,3],[0,3,2,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,4,2,1],[1,1,2,0]],[[2,0,1,1],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,0,1,2],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,0,1,1],[3,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,0,1,1],[2,4,3,2],[0,3,2,1],[1,2,0,1]],[[1,0,1,1],[2,3,4,2],[0,3,2,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,3],[0,3,2,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,4,2,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,3,2,1],[2,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,3,2,1],[1,3,0,1]],[[2,0,1,1],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,0,1,2],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,0,1,1],[3,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,0,1,1],[2,4,3,2],[0,3,2,1],[1,2,1,0]],[[1,0,1,1],[2,3,4,2],[0,3,2,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,3],[0,3,2,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,4,2,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,3,2,1],[2,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,3,2,1],[1,3,1,0]],[[1,0,1,2],[2,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,0,1,1],[2,4,3,2],[0,3,2,2],[0,0,2,1]],[[1,0,1,1],[2,3,4,2],[0,3,2,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,3],[0,3,2,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,2,3],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,2,2],[0,0,2,2]],[[1,0,1,2],[2,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,4,3,2],[0,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[0,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[0,3,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,2,3],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,2,2],[0,1,1,2]],[[1,0,1,2],[2,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[0,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[0,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[0,3,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,3,2,3],[0,1,2,0]],[[1,0,1,2],[2,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[0,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,4,2],[0,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,3],[0,3,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,3,2,3],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,3,2,2],[0,2,0,2]],[[1,0,1,2],[2,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[0,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[0,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,3],[0,3,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,1,1],[3,3,3,0],[2,1,3,2],[1,1,0,0]],[[1,3,1,1],[2,3,3,0],[2,1,3,2],[1,1,0,0]],[[2,2,1,1],[2,3,3,0],[2,1,3,2],[1,1,0,0]],[[1,0,1,2],[2,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,4,3,2],[0,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,4,2],[0,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,3],[0,3,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,4,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,3,0],[0,1,3,1]],[[1,0,1,1],[2,3,3,2],[0,3,3,0],[0,1,2,2]],[[1,0,1,2],[2,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[0,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[0,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[0,3,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,4,0],[0,2,1,1]],[[2,0,1,1],[2,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[0,3,3,0],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[0,3,3,0],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,4,3,0],[1,1,2,0]],[[2,0,1,1],[2,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,0,1,1],[3,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,0,1,1],[2,4,3,2],[0,3,3,0],[1,2,1,0]],[[1,0,1,1],[2,3,4,2],[0,3,3,0],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,4,3,0],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,3,3,0],[2,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,3,3,0],[1,3,1,0]],[[1,0,1,2],[2,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,4,3,2],[0,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,3,4,2],[0,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,3,3,3],[0,3,3,1],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[0,3,4,1],[0,0,2,1]],[[1,0,1,2],[2,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,4,3,2],[0,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[0,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[0,3,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[0,3,4,1],[0,1,1,1]],[[1,0,1,2],[2,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[0,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[0,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[0,3,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,3,4,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[0,3,3,1],[0,1,3,0]],[[1,0,1,2],[2,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[0,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,4,2],[0,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,3],[0,3,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[0,3,4,1],[0,2,0,1]],[[1,0,1,2],[2,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[0,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[0,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,3],[0,3,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,1,1],[3,3,3,0],[2,1,3,2],[0,2,0,0]],[[1,3,1,1],[2,3,3,0],[2,1,3,2],[0,2,0,0]],[[2,0,1,1],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,0,1,2],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,0,1,1],[3,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,4,3,2],[0,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,3,4,2],[0,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[0,4,3,1],[1,2,0,0]],[[2,2,1,1],[2,3,3,0],[2,1,3,2],[0,2,0,0]],[[1,0,1,2],[2,3,3,2],[0,3,3,2],[0,1,0,1]],[[1,0,1,1],[2,4,3,2],[0,3,3,2],[0,1,0,1]],[[1,0,1,1],[2,3,4,2],[0,3,3,2],[0,1,0,1]],[[1,0,1,1],[2,3,3,3],[0,3,3,2],[0,1,0,1]],[[1,0,1,1],[2,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,1,1],[3,3,3,0],[2,1,2,2],[1,2,0,0]],[[1,3,1,1],[2,3,3,0],[2,1,2,2],[1,2,0,0]],[[2,2,1,1],[2,3,3,0],[2,1,2,2],[1,2,0,0]],[[1,2,1,1],[3,3,3,0],[2,1,2,2],[1,1,1,0]],[[1,3,1,1],[2,3,3,0],[2,1,2,2],[1,1,1,0]],[[2,2,1,1],[2,3,3,0],[2,1,2,2],[1,1,1,0]],[[1,2,1,1],[3,3,3,0],[2,1,2,2],[1,1,0,1]],[[1,3,1,1],[2,3,3,0],[2,1,2,2],[1,1,0,1]],[[2,2,1,1],[2,3,3,0],[2,1,2,2],[1,1,0,1]],[[1,2,1,1],[3,3,3,0],[2,1,2,2],[1,0,2,0]],[[1,3,1,1],[2,3,3,0],[2,1,2,2],[1,0,2,0]],[[2,2,1,1],[2,3,3,0],[2,1,2,2],[1,0,2,0]],[[1,2,1,1],[3,3,3,0],[2,1,2,2],[1,0,1,1]],[[1,3,1,1],[2,3,3,0],[2,1,2,2],[1,0,1,1]],[[2,2,1,1],[2,3,3,0],[2,1,2,2],[1,0,1,1]],[[1,2,1,1],[3,3,3,0],[2,1,2,2],[0,2,1,0]],[[1,3,1,1],[2,3,3,0],[2,1,2,2],[0,2,1,0]],[[2,2,1,1],[2,3,3,0],[2,1,2,2],[0,2,1,0]],[[1,2,1,1],[3,3,3,0],[2,1,2,2],[0,2,0,1]],[[1,3,1,1],[2,3,3,0],[2,1,2,2],[0,2,0,1]],[[2,2,1,1],[2,3,3,0],[2,1,2,2],[0,2,0,1]],[[1,2,1,1],[3,3,3,0],[2,1,2,2],[0,1,2,0]],[[1,3,1,1],[2,3,3,0],[2,1,2,2],[0,1,2,0]],[[2,2,1,1],[2,3,3,0],[2,1,2,2],[0,1,2,0]],[[1,2,1,1],[3,3,3,0],[2,1,2,2],[0,1,1,1]],[[1,3,1,1],[2,3,3,0],[2,1,2,2],[0,1,1,1]],[[2,2,1,1],[2,3,3,0],[2,1,2,2],[0,1,1,1]],[[1,2,1,1],[3,3,3,0],[2,1,2,1],[1,1,1,1]],[[1,3,1,1],[2,3,3,0],[2,1,2,1],[1,1,1,1]],[[2,2,1,1],[2,3,3,0],[2,1,2,1],[1,1,1,1]],[[1,2,1,1],[3,3,3,0],[2,1,2,1],[1,0,2,1]],[[1,3,1,1],[2,3,3,0],[2,1,2,1],[1,0,2,1]],[[2,2,1,1],[2,3,3,0],[2,1,2,1],[1,0,2,1]],[[1,2,1,1],[3,3,3,0],[2,1,2,1],[0,2,1,1]],[[1,3,1,1],[2,3,3,0],[2,1,2,1],[0,2,1,1]],[[2,2,1,1],[2,3,3,0],[2,1,2,1],[0,2,1,1]],[[1,2,1,1],[3,3,3,0],[2,1,2,1],[0,1,2,1]],[[1,3,1,1],[2,3,3,0],[2,1,2,1],[0,1,2,1]],[[2,2,1,1],[2,3,3,0],[2,1,2,1],[0,1,2,1]],[[2,0,1,1],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[1,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[1,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[1,0,1,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,1,3],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,1,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,1,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,1,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[1,0,1,2],[1,2,2,2]],[[1,0,1,2],[2,3,3,2],[1,0,2,2],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[1,0,2,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[1,0,2,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,2,3],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,2,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,2],[1,0,2,2],[0,2,2,2]],[[2,0,1,1],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[1,0,2,2],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[1,0,2,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[1,0,2,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,0,2,3],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,0,2,2],[1,2,1,2]],[[2,0,1,1],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,0,1,2],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,0,1,1],[3,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,0,1,1],[2,4,3,2],[1,0,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,4,2],[1,0,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,3],[1,0,2,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,0,2,3],[1,2,2,0]],[[2,0,1,1],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[1,0,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[1,0,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[1,0,3,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,4,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,3,0],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,3,0],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,3,0],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[1,0,3,0],[1,2,2,2]],[[2,0,1,1],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[1,0,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[1,0,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[1,0,3,1],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,0,4,1],[1,2,1,1]],[[2,0,1,1],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,0,1,2],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,0,1,1],[3,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,0,1,1],[2,4,3,2],[1,0,3,1],[1,2,2,0]],[[1,0,1,1],[2,3,4,2],[1,0,3,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,3],[1,0,3,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,0,4,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,0,3,1],[2,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,0,3,1],[1,3,2,0]],[[1,0,1,1],[2,3,3,2],[1,0,3,1],[1,2,3,0]],[[1,0,1,2],[2,3,3,2],[1,0,3,2],[0,1,2,1]],[[1,0,1,1],[2,3,4,2],[1,0,3,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,3],[1,0,3,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,3,3],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,0,3,2],[0,1,2,2]],[[1,0,1,2],[2,3,3,2],[1,0,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[1,0,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[1,0,3,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,0,3,3],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,0,3,2],[0,2,1,2]],[[1,0,1,2],[2,3,3,2],[1,0,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,4,2],[1,0,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,3],[1,0,3,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,1,1],[3,3,3,0],[2,1,1,2],[1,1,2,0]],[[1,3,1,1],[2,3,3,0],[2,1,1,2],[1,1,2,0]],[[2,2,1,1],[2,3,3,0],[2,1,1,2],[1,1,2,0]],[[1,2,1,1],[3,3,3,0],[2,1,1,2],[0,2,2,0]],[[2,0,1,1],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[1,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[1,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[1,1,0,2],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,0,3],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,0,2],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,0,2],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,0,2],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[1,1,0,2],[1,2,2,2]],[[2,0,1,1],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,0,1,1],[3,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,0,1,1],[2,4,3,2],[1,1,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[1,1,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[1,1,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,1,3],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,1,2],[0,3,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,1,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,2],[1,1,1,2],[0,2,2,2]],[[2,0,1,1],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,0,1,2],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,0,1,1],[3,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[1,1,2,2],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[1,1,2,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[1,1,2,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,1,2,3],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,1,2,2],[0,2,1,2]],[[2,0,1,1],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,0,1,2],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,0,1,1],[3,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,0,1,1],[2,4,3,2],[1,1,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,4,2],[1,1,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,3],[1,1,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,3,1,1],[2,3,3,0],[2,1,1,2],[0,2,2,0]],[[2,2,1,1],[2,3,3,0],[2,1,1,2],[0,2,2,0]],[[2,0,1,1],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,0,1,1],[3,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,0,1,1],[2,4,3,2],[1,1,3,0],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[1,1,3,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[1,1,3,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,4,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,3,0],[0,3,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,3,0],[0,2,3,1]],[[1,0,1,1],[2,3,3,2],[1,1,3,0],[0,2,2,2]],[[2,0,1,1],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,0,1,2],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,0,1,1],[3,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[1,1,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[1,1,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[1,1,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,1,4,1],[0,2,1,1]],[[2,0,1,1],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,0,1,2],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,0,1,1],[3,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,0,1,1],[2,4,3,2],[1,1,3,1],[0,2,2,0]],[[1,0,1,1],[2,3,4,2],[1,1,3,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,3],[1,1,3,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,1,4,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,1,3,1],[0,3,2,0]],[[1,0,1,1],[2,3,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,1,1],[3,3,3,0],[2,1,1,1],[1,1,2,1]],[[1,3,1,1],[2,3,3,0],[2,1,1,1],[1,1,2,1]],[[2,2,1,1],[2,3,3,0],[2,1,1,1],[1,1,2,1]],[[1,2,1,1],[3,3,3,0],[2,1,1,1],[0,2,2,1]],[[1,3,1,1],[2,3,3,0],[2,1,1,1],[0,2,2,1]],[[2,2,1,1],[2,3,3,0],[2,1,1,1],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[1,1,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,4,2],[1,1,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,3],[1,1,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,3,3],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,1,3,2],[0,0,2,2]],[[1,0,1,2],[2,3,3,2],[1,1,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[1,1,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[1,1,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,1,3,3],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,1,3,2],[0,1,1,2]],[[1,0,1,2],[2,3,3,2],[1,1,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[1,1,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[1,1,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,1,1],[3,3,3,0],[2,1,0,2],[1,1,2,1]],[[1,3,1,1],[2,3,3,0],[2,1,0,2],[1,1,2,1]],[[2,2,1,1],[2,3,3,0],[2,1,0,2],[1,1,2,1]],[[1,2,1,1],[3,3,3,0],[2,1,0,2],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[1,1,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,4,2],[1,1,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,3],[1,1,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,1,3,3],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,1,3,2],[1,0,1,2]],[[1,0,1,2],[2,3,3,2],[1,1,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[1,1,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,3],[1,1,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,3,1,1],[2,3,3,0],[2,1,0,2],[0,2,2,1]],[[2,2,1,1],[2,3,3,0],[2,1,0,2],[0,2,2,1]],[[2,0,1,1],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,0,1,1],[3,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,0,1,1],[2,4,3,2],[1,2,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[1,2,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[1,2,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,0,3],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,0,2],[0,3,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,0,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,2],[1,2,0,2],[0,2,2,2]],[[2,0,1,1],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,0,1,2],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,0,1,1],[3,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,0,1,1],[2,4,3,2],[1,2,1,2],[0,1,2,1]],[[1,0,1,1],[2,3,4,2],[1,2,1,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,3],[1,2,1,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,1,3],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,1,2],[0,1,3,1]],[[1,0,1,1],[2,3,3,2],[1,2,1,2],[0,1,2,2]],[[2,0,1,1],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,0,1,2],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,0,1,1],[3,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,0,1,1],[2,4,3,2],[1,2,1,2],[1,0,2,1]],[[1,0,1,1],[2,3,4,2],[1,2,1,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,3],[1,2,1,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,1,3],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,1,2],[1,0,3,1]],[[1,0,1,1],[2,3,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,1,1],[3,3,3,0],[2,0,3,2],[1,1,1,0]],[[1,3,1,1],[2,3,3,0],[2,0,3,2],[1,1,1,0]],[[2,2,1,1],[2,3,3,0],[2,0,3,2],[1,1,1,0]],[[1,2,1,1],[3,3,3,0],[2,0,3,2],[1,1,0,1]],[[1,3,1,1],[2,3,3,0],[2,0,3,2],[1,1,0,1]],[[2,0,1,1],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,0,1,2],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,0,1,1],[3,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,0,1,1],[2,4,3,2],[1,2,2,2],[0,0,2,1]],[[1,0,1,1],[2,3,4,2],[1,2,2,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,3],[1,2,2,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,2,3],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,2,2],[0,0,2,2]],[[2,0,1,1],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,0,1,2],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,0,1,1],[3,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,0,1,1],[2,4,3,2],[1,2,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[1,2,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[1,2,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,2,2,3],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,2,2,2],[0,1,1,2]],[[2,0,1,1],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,0,1,2],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,0,1,1],[3,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[1,2,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[1,2,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[1,2,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[1,2,2,3],[0,1,2,0]],[[2,0,1,1],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,0,1,2],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,0,1,1],[3,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[1,2,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,4,2],[1,2,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,3],[1,2,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[1,2,2,3],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[1,2,2,2],[0,2,0,2]],[[2,0,1,1],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,0,1,2],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[1,2,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[1,2,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,3],[1,2,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[1,2,2,3],[0,2,1,0]],[[2,2,1,1],[2,3,3,0],[2,0,3,2],[1,1,0,1]],[[1,2,1,1],[3,3,3,0],[2,0,3,2],[1,0,2,0]],[[1,3,1,1],[2,3,3,0],[2,0,3,2],[1,0,2,0]],[[2,2,1,1],[2,3,3,0],[2,0,3,2],[1,0,2,0]],[[1,2,1,1],[3,3,3,0],[2,0,3,2],[1,0,1,1]],[[1,3,1,1],[2,3,3,0],[2,0,3,2],[1,0,1,1]],[[2,2,1,1],[2,3,3,0],[2,0,3,2],[1,0,1,1]],[[2,0,1,1],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,0,1,2],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,0,1,1],[3,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,0,1,1],[2,4,3,2],[1,2,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,4,2],[1,2,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,3],[1,2,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,2,2,3],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,2,2,2],[1,0,1,2]],[[2,0,1,1],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,0,1,2],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,0,1,1],[3,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,0,1,1],[2,4,3,2],[1,2,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[1,2,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,3],[1,2,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[1,2,2,3],[1,0,2,0]],[[2,0,1,1],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,0,1,2],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,0,1,1],[3,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,0,1,1],[2,4,3,2],[1,2,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,4,2],[1,2,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,3],[1,2,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[1,2,2,3],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[1,2,2,2],[1,1,0,2]],[[2,0,1,1],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,0,1,2],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[1,2,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,4,2],[1,2,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,3],[1,2,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,1,1],[3,3,3,0],[2,0,3,2],[0,2,1,0]],[[1,3,1,1],[2,3,3,0],[2,0,3,2],[0,2,1,0]],[[2,2,1,1],[2,3,3,0],[2,0,3,2],[0,2,1,0]],[[1,2,1,1],[3,3,3,0],[2,0,3,2],[0,2,0,1]],[[1,3,1,1],[2,3,3,0],[2,0,3,2],[0,2,0,1]],[[2,2,1,1],[2,3,3,0],[2,0,3,2],[0,2,0,1]],[[1,2,1,1],[3,3,3,0],[2,0,3,2],[0,1,2,0]],[[1,3,1,1],[2,3,3,0],[2,0,3,2],[0,1,2,0]],[[2,2,1,1],[2,3,3,0],[2,0,3,2],[0,1,2,0]],[[1,2,1,1],[3,3,3,0],[2,0,3,2],[0,1,1,1]],[[1,3,1,1],[2,3,3,0],[2,0,3,2],[0,1,1,1]],[[2,2,1,1],[2,3,3,0],[2,0,3,2],[0,1,1,1]],[[1,2,1,1],[3,3,3,0],[2,0,3,2],[0,0,2,1]],[[2,0,1,1],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,0,1,2],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,0,1,1],[3,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,0,1,1],[2,4,3,2],[1,2,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,4,2],[1,2,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,3],[1,2,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,4,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,3,0],[0,1,3,1]],[[1,0,1,1],[2,3,3,2],[1,2,3,0],[0,1,2,2]],[[2,0,1,1],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,0,1,2],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,0,1,1],[3,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[1,2,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[1,2,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[1,2,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,2,4,0],[0,2,1,1]],[[2,0,1,1],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,0,1,2],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,0,1,1],[3,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,0,1,1],[2,4,3,2],[1,2,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,4,2],[1,2,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,3],[1,2,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,4,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,3,0],[1,0,3,1]],[[1,0,1,1],[2,3,3,2],[1,2,3,0],[1,0,2,2]],[[2,0,1,1],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[1,2,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[1,2,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[1,2,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,2,4,0],[1,1,1,1]],[[1,3,1,1],[2,3,3,0],[2,0,3,2],[0,0,2,1]],[[2,2,1,1],[2,3,3,0],[2,0,3,2],[0,0,2,1]],[[2,0,1,1],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,0,1,2],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,0,1,1],[3,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,0,1,1],[2,4,3,2],[1,2,3,1],[0,0,2,1]],[[1,0,1,1],[2,3,4,2],[1,2,3,1],[0,0,2,1]],[[1,0,1,1],[2,3,3,3],[1,2,3,1],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,2,4,1],[0,0,2,1]],[[2,0,1,1],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,0,1,2],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,0,1,1],[3,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,0,1,1],[2,4,3,2],[1,2,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[1,2,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[1,2,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,2,4,1],[0,1,1,1]],[[2,0,1,1],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,0,1,2],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,0,1,1],[3,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[1,2,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[1,2,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[1,2,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[1,2,4,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[1,2,3,1],[0,1,3,0]],[[2,0,1,1],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,0,1,2],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,0,1,1],[3,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[1,2,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,4,2],[1,2,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,3],[1,2,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[1,2,4,1],[0,2,0,1]],[[2,0,1,1],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,0,1,2],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[1,2,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[1,2,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,3],[1,2,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[1,2,4,1],[0,2,1,0]],[[2,0,1,1],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,0,1,2],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,0,1,1],[3,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,0,1,1],[2,4,3,2],[1,2,3,1],[1,0,1,1]],[[1,0,1,1],[2,3,4,2],[1,2,3,1],[1,0,1,1]],[[1,0,1,1],[2,3,3,3],[1,2,3,1],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,2,4,1],[1,0,1,1]],[[2,0,1,1],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,0,1,2],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,0,1,1],[3,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,0,1,1],[2,4,3,2],[1,2,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[1,2,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,3],[1,2,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[1,2,4,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[1,2,3,1],[1,0,3,0]],[[2,0,1,1],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,0,1,2],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,0,1,1],[3,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,0,1,1],[2,4,3,2],[1,2,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,4,2],[1,2,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,3],[1,2,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[1,2,4,1],[1,1,0,1]],[[2,0,1,1],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,0,1,2],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[1,2,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,4,2],[1,2,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,3],[1,2,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,1,1],[3,3,3,0],[2,0,3,1],[1,1,1,1]],[[1,3,1,1],[2,3,3,0],[2,0,3,1],[1,1,1,1]],[[2,2,1,1],[2,3,3,0],[2,0,3,1],[1,1,1,1]],[[1,2,1,1],[3,3,3,0],[2,0,3,1],[1,0,2,1]],[[1,3,1,1],[2,3,3,0],[2,0,3,1],[1,0,2,1]],[[2,2,1,1],[2,3,3,0],[2,0,3,1],[1,0,2,1]],[[1,2,1,1],[3,3,3,0],[2,0,3,1],[0,2,1,1]],[[1,3,1,1],[2,3,3,0],[2,0,3,1],[0,2,1,1]],[[2,2,1,1],[2,3,3,0],[2,0,3,1],[0,2,1,1]],[[1,2,1,1],[3,3,3,0],[2,0,3,1],[0,1,2,1]],[[1,3,1,1],[2,3,3,0],[2,0,3,1],[0,1,2,1]],[[2,2,1,1],[2,3,3,0],[2,0,3,1],[0,1,2,1]],[[1,2,1,1],[3,3,3,0],[2,0,2,2],[1,2,1,0]],[[1,3,1,1],[2,3,3,0],[2,0,2,2],[1,2,1,0]],[[2,2,1,1],[2,3,3,0],[2,0,2,2],[1,2,1,0]],[[2,0,1,1],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,0,1,2],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,0,1,1],[3,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,0,1,1],[2,4,3,2],[1,2,3,2],[0,1,0,1]],[[1,0,1,1],[2,3,4,2],[1,2,3,2],[0,1,0,1]],[[1,0,1,1],[2,3,3,3],[1,2,3,2],[0,1,0,1]],[[1,0,1,1],[2,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,1,1],[3,3,3,0],[2,0,2,2],[1,2,0,1]],[[1,3,1,1],[2,3,3,0],[2,0,2,2],[1,2,0,1]],[[2,2,1,1],[2,3,3,0],[2,0,2,2],[1,2,0,1]],[[1,2,1,1],[3,3,3,0],[2,0,2,1],[1,2,1,1]],[[1,3,1,1],[2,3,3,0],[2,0,2,1],[1,2,1,1]],[[2,2,1,1],[2,3,3,0],[2,0,2,1],[1,2,1,1]],[[1,2,1,1],[3,3,3,0],[2,0,1,2],[1,2,2,0]],[[1,3,1,1],[2,3,3,0],[2,0,1,2],[1,2,2,0]],[[2,2,1,1],[2,3,3,0],[2,0,1,2],[1,2,2,0]],[[1,2,1,1],[3,3,3,0],[2,0,1,1],[1,2,2,1]],[[1,3,1,1],[2,3,3,0],[2,0,1,1],[1,2,2,1]],[[2,2,1,1],[2,3,3,0],[2,0,1,1],[1,2,2,1]],[[2,0,1,1],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,0,1,2],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,0,1,1],[3,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,0,1,1],[2,4,3,2],[1,2,3,2],[1,0,0,1]],[[1,0,1,1],[2,3,4,2],[1,2,3,2],[1,0,0,1]],[[1,0,1,1],[2,3,3,3],[1,2,3,2],[1,0,0,1]],[[1,0,1,1],[2,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,1,1],[3,3,3,0],[2,0,0,2],[1,2,2,1]],[[1,3,1,1],[2,3,3,0],[2,0,0,2],[1,2,2,1]],[[2,2,1,1],[2,3,3,0],[2,0,0,2],[1,2,2,1]],[[2,0,1,1],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,0,1,1],[3,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,0,1,1],[2,4,3,2],[1,3,0,1],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[1,3,0,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[1,3,0,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,4,0,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,1],[0,3,2,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,1],[0,2,3,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,1],[0,2,2,2]],[[2,0,1,1],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,0,1,2],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[1,3,0,1],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[1,3,0,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[1,3,0,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,4,0,1],[1,1,2,1]],[[2,0,1,1],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,0,1,2],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,0,1,1],[3,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,0,1,1],[2,4,3,2],[1,3,0,2],[0,1,2,1]],[[1,0,1,1],[2,3,4,2],[1,3,0,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,3],[1,3,0,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,4,0,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,3],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,2],[0,1,3,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,2],[0,1,2,2]],[[2,0,1,1],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,0,1,2],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,0,1,1],[3,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[1,3,0,2],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[1,3,0,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[1,3,0,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,4,0,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,3],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,2],[0,3,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,2],[0,2,1,2]],[[2,0,1,1],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,0,1,2],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,0,2],[0,2,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,0,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,3],[1,3,0,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,4,0,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,3,0,3],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,3,0,2],[0,3,2,0]],[[1,0,1,1],[2,3,3,2],[1,3,0,2],[0,2,3,0]],[[2,0,1,1],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,0,1,2],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,0,1,1],[3,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,0,1,1],[2,4,3,2],[1,3,0,2],[1,0,2,1]],[[1,0,1,1],[2,3,4,2],[1,3,0,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,3],[1,3,0,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,4,0,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,3],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,2],[1,0,3,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,2],[1,0,2,2]],[[2,0,1,1],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[1,3,0,2],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[1,3,0,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[1,3,0,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,4,0,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,3],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,0,2],[1,1,1,2]],[[2,0,1,1],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,0,1,2],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,0,2],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,0,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,3],[1,3,0,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[1,4,0,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[1,3,0,3],[1,1,2,0]],[[2,0,1,1],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,0,1,1],[3,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,0,1,1],[2,4,3,2],[1,3,1,0],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[1,3,1,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[1,3,1,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,4,1,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,0],[0,3,2,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,0],[0,2,3,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,0],[0,2,2,2]],[[2,0,1,1],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,0,1,2],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[1,3,1,0],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[1,3,1,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[1,3,1,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,4,1,0],[1,1,2,1]],[[2,0,1,1],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,0,1,2],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,1,1],[0,2,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,1,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,3],[1,3,1,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,4,1,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[1,3,1,1],[0,3,2,0]],[[1,0,1,1],[2,3,3,2],[1,3,1,1],[0,2,3,0]],[[2,0,1,1],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,0,1,2],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,1,1],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,1,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,3],[1,3,1,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[1,4,1,1],[1,1,2,0]],[[2,0,1,1],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,0,1,2],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,0,1,1],[3,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,0,1,1],[2,4,3,2],[1,3,1,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[1,3,1,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[1,3,1,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,4,1,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,3],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,2],[0,1,1,2]],[[2,0,1,1],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,0,1,2],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,1,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,1,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[1,3,1,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[1,4,1,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[1,3,1,3],[0,1,2,0]],[[2,0,1,1],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,0,1,2],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,0,1,1],[3,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[1,3,1,2],[0,2,0,1]],[[1,0,1,1],[2,3,4,2],[1,3,1,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,3],[1,3,1,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[1,4,1,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,3],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,2],[0,3,0,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,2],[0,2,0,2]],[[2,0,1,1],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,0,1,2],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[1,3,1,2],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[1,3,1,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,3],[1,3,1,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[1,4,1,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[1,3,1,3],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[1,3,1,2],[0,3,1,0]],[[2,0,1,1],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,0,1,2],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,0,1,1],[3,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,0,1,1],[2,4,3,2],[1,3,1,2],[1,0,1,1]],[[1,0,1,1],[2,3,4,2],[1,3,1,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,3],[1,3,1,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,4,1,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,3],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,2],[1,0,1,2]],[[2,0,1,1],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,0,1,2],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,1,2],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,1,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,3],[1,3,1,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[1,4,1,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[1,3,1,3],[1,0,2,0]],[[2,0,1,1],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,0,1,2],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,0,1,1],[3,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,0,1,1],[2,4,3,2],[1,3,1,2],[1,1,0,1]],[[1,0,1,1],[2,3,4,2],[1,3,1,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,3],[1,3,1,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[1,4,1,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,3],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[1,3,1,2],[1,1,0,2]],[[2,0,1,1],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,0,1,2],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[1,3,1,2],[1,1,1,0]],[[1,0,1,1],[2,3,4,2],[1,3,1,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,3],[1,3,1,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[1,4,1,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[1,3,1,3],[1,1,1,0]],[[2,0,1,1],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,0,1,2],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,0,1,1],[3,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,0,1,1],[2,4,3,2],[1,3,1,2],[1,2,0,0]],[[1,0,1,1],[2,3,4,2],[1,3,1,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,3],[1,3,1,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[1,4,1,2],[1,2,0,0]],[[2,0,1,1],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,0,1,2],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,0,1,1],[3,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,0,1,1],[2,4,3,2],[1,3,2,0],[0,1,2,1]],[[1,0,1,1],[2,3,4,2],[1,3,2,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,3],[1,3,2,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[1,4,2,0],[0,1,2,1]],[[2,0,1,1],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,0,1,2],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,0,1,1],[3,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[1,3,2,0],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[1,3,2,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[1,3,2,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,4,2,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,2,0],[0,3,1,1]],[[2,0,1,1],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,0,1,2],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,0,1,1],[3,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,0,1,1],[2,4,3,2],[1,3,2,0],[1,0,2,1]],[[1,0,1,1],[2,3,4,2],[1,3,2,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,3],[1,3,2,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,4,2,0],[1,0,2,1]],[[2,0,1,1],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[1,3,2,0],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[1,3,2,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[1,3,2,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,4,2,0],[1,1,1,1]],[[2,0,1,1],[2,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,0,1,1],[3,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,0,1,1],[2,4,3,2],[1,3,2,0],[1,2,0,1]],[[1,0,1,1],[2,3,4,2],[1,3,2,0],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[1,4,2,0],[1,2,0,1]],[[2,0,1,1],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,0,1,2],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,0,1,1],[3,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,0,1,1],[2,4,3,2],[1,3,2,1],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[1,3,2,1],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[1,3,2,1],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[1,4,2,1],[0,1,1,1]],[[2,0,1,1],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,0,1,2],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,2,1],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,2,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[1,3,2,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[1,4,2,1],[0,1,2,0]],[[2,0,1,1],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,0,1,2],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,0,1,1],[3,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[1,3,2,1],[0,2,0,1]],[[1,0,1,1],[2,3,4,2],[1,3,2,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,3],[1,3,2,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[1,4,2,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[1,3,2,1],[0,3,0,1]],[[2,0,1,1],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,0,1,2],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[1,3,2,1],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[1,3,2,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,3],[1,3,2,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[1,4,2,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[1,3,2,1],[0,3,1,0]],[[2,0,1,1],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,0,1,2],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,0,1,1],[3,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,0,1,1],[2,4,3,2],[1,3,2,1],[1,0,1,1]],[[1,0,1,1],[2,3,4,2],[1,3,2,1],[1,0,1,1]],[[1,0,1,1],[2,3,3,3],[1,3,2,1],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,4,2,1],[1,0,1,1]],[[2,0,1,1],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,0,1,2],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,2,1],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,2,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,3],[1,3,2,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[1,4,2,1],[1,0,2,0]],[[2,0,1,1],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,0,1,2],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,0,1,1],[3,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,0,1,1],[2,4,3,2],[1,3,2,1],[1,1,0,1]],[[1,0,1,1],[2,3,4,2],[1,3,2,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,3],[1,3,2,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[1,4,2,1],[1,1,0,1]],[[2,0,1,1],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,0,1,2],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[1,3,2,1],[1,1,1,0]],[[1,0,1,1],[2,3,4,2],[1,3,2,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,3],[1,3,2,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[1,4,2,1],[1,1,1,0]],[[2,0,1,1],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,0,1,2],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,0,1,1],[3,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,0,1,1],[2,4,3,2],[1,3,2,1],[1,2,0,0]],[[1,0,1,1],[2,3,4,2],[1,3,2,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,3],[1,3,2,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[1,4,2,1],[1,2,0,0]],[[2,0,1,1],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,0,1,2],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,0,1,1],[3,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,0,1,1],[2,4,3,2],[1,3,2,2],[0,0,1,1]],[[1,0,1,1],[2,3,4,2],[1,3,2,2],[0,0,1,1]],[[1,0,1,1],[2,3,3,3],[1,3,2,2],[0,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,2,3],[0,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,2,2],[0,0,1,2]],[[2,0,1,1],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,0,1,2],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,2,2],[0,0,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,2,2],[0,0,2,0]],[[1,0,1,1],[2,3,3,3],[1,3,2,2],[0,0,2,0]],[[1,0,1,1],[2,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,1,1],[2,3,4,0],[0,3,3,2],[1,1,0,0]],[[1,2,1,1],[2,4,3,0],[0,3,3,2],[1,1,0,0]],[[1,3,1,1],[2,3,3,0],[0,3,3,2],[1,1,0,0]],[[2,2,1,1],[2,3,3,0],[0,3,3,2],[1,1,0,0]],[[2,0,1,1],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,0,1,2],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,0,1,1],[3,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,0,1,1],[2,4,3,2],[1,3,3,0],[0,0,2,1]],[[1,0,1,1],[2,3,4,2],[1,3,3,0],[0,0,2,1]],[[1,0,1,1],[2,3,3,3],[1,3,3,0],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[1,3,4,0],[0,0,2,1]],[[2,0,1,1],[2,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,3,0],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,3,0],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[1,4,3,0],[0,1,2,0]],[[2,0,1,1],[2,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[1,3,3,0],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[1,3,3,0],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[1,4,3,0],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[1,3,3,0],[0,3,1,0]],[[2,0,1,1],[2,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,3,0],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,3,0],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[1,4,3,0],[1,0,2,0]],[[2,0,1,1],[2,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[1,3,3,0],[1,1,1,0]],[[1,0,1,1],[2,3,4,2],[1,3,3,0],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[1,4,3,0],[1,1,1,0]],[[2,0,1,1],[2,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,0,1,1],[3,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,0,1,1],[2,4,3,2],[1,3,3,0],[1,2,0,0]],[[1,0,1,1],[2,3,4,2],[1,3,3,0],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,1,1],[2,3,4,0],[0,3,3,2],[0,2,0,0]],[[1,2,1,1],[2,4,3,0],[0,3,3,2],[0,2,0,0]],[[1,3,1,1],[2,3,3,0],[0,3,3,2],[0,2,0,0]],[[2,2,1,1],[2,3,3,0],[0,3,3,2],[0,2,0,0]],[[2,0,1,1],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,0,1,2],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,0,1,1],[3,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,0,1,1],[2,4,3,2],[1,3,3,1],[0,0,1,1]],[[1,0,1,1],[2,3,4,2],[1,3,3,1],[0,0,1,1]],[[1,0,1,1],[2,3,3,3],[1,3,3,1],[0,0,1,1]],[[1,0,1,1],[2,3,3,2],[1,3,4,1],[0,0,1,1]],[[2,0,1,1],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,0,1,2],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,0,1,1],[3,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,0,1,1],[2,4,3,2],[1,3,3,1],[0,0,2,0]],[[1,0,1,1],[2,3,4,2],[1,3,3,1],[0,0,2,0]],[[1,0,1,1],[2,3,3,3],[1,3,3,1],[0,0,2,0]],[[1,0,1,1],[2,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,1,1],[2,3,3,0],[0,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,3,3,0],[0,3,4,2],[0,0,2,0]],[[1,2,1,1],[2,3,4,0],[0,3,3,2],[0,0,2,0]],[[1,2,1,1],[2,4,3,0],[0,3,3,2],[0,0,2,0]],[[1,3,1,1],[2,3,3,0],[0,3,3,2],[0,0,2,0]],[[2,2,1,1],[2,3,3,0],[0,3,3,2],[0,0,2,0]],[[1,2,1,1],[2,3,3,0],[0,3,3,2],[0,0,1,2]],[[1,2,1,1],[2,3,3,0],[0,3,3,3],[0,0,1,1]],[[1,2,1,1],[2,3,3,0],[0,3,4,2],[0,0,1,1]],[[1,2,1,1],[2,3,4,0],[0,3,3,2],[0,0,1,1]],[[2,0,1,1],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,0,1,2],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,0,1,1],[3,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,0,1,1],[2,4,3,2],[1,3,3,1],[0,2,0,0]],[[1,0,1,1],[2,3,4,2],[1,3,3,1],[0,2,0,0]],[[1,0,1,1],[2,3,3,3],[1,3,3,1],[0,2,0,0]],[[1,0,1,1],[2,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,2,1,1],[2,4,3,0],[0,3,3,2],[0,0,1,1]],[[1,3,1,1],[2,3,3,0],[0,3,3,2],[0,0,1,1]],[[2,2,1,1],[2,3,3,0],[0,3,3,2],[0,0,1,1]],[[1,2,1,1],[2,3,3,0],[0,3,4,1],[0,0,2,1]],[[1,2,1,1],[2,3,4,0],[0,3,3,1],[0,0,2,1]],[[1,2,1,1],[2,4,3,0],[0,3,3,1],[0,0,2,1]],[[1,3,1,1],[2,3,3,0],[0,3,3,1],[0,0,2,1]],[[2,2,1,1],[2,3,3,0],[0,3,3,1],[0,0,2,1]],[[2,0,1,1],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,0,1,2],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,0,1,1],[3,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,0,1,1],[2,4,3,2],[1,3,3,1],[1,1,0,0]],[[1,0,1,1],[2,3,4,2],[1,3,3,1],[1,1,0,0]],[[1,0,1,1],[2,3,3,3],[1,3,3,1],[1,1,0,0]],[[1,0,1,1],[2,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,1,1],[2,4,3,0],[0,3,2,2],[1,2,0,0]],[[1,3,1,1],[2,3,3,0],[0,3,2,2],[1,2,0,0]],[[2,2,1,1],[2,3,3,0],[0,3,2,2],[1,2,0,0]],[[1,2,1,1],[2,3,4,0],[0,3,2,2],[1,1,1,0]],[[1,2,1,1],[2,4,3,0],[0,3,2,2],[1,1,1,0]],[[1,3,1,1],[2,3,3,0],[0,3,2,2],[1,1,1,0]],[[2,2,1,1],[2,3,3,0],[0,3,2,2],[1,1,1,0]],[[1,2,1,1],[2,3,4,0],[0,3,2,2],[1,1,0,1]],[[1,2,1,1],[2,4,3,0],[0,3,2,2],[1,1,0,1]],[[1,3,1,1],[2,3,3,0],[0,3,2,2],[1,1,0,1]],[[2,2,1,1],[2,3,3,0],[0,3,2,2],[1,1,0,1]],[[1,2,1,1],[2,3,4,0],[0,3,2,2],[1,0,2,0]],[[1,2,1,1],[2,4,3,0],[0,3,2,2],[1,0,2,0]],[[1,3,1,1],[2,3,3,0],[0,3,2,2],[1,0,2,0]],[[2,2,1,1],[2,3,3,0],[0,3,2,2],[1,0,2,0]],[[1,2,1,1],[2,3,4,0],[0,3,2,2],[1,0,1,1]],[[1,2,1,1],[2,4,3,0],[0,3,2,2],[1,0,1,1]],[[1,3,1,1],[2,3,3,0],[0,3,2,2],[1,0,1,1]],[[2,2,1,1],[2,3,3,0],[0,3,2,2],[1,0,1,1]],[[1,2,1,1],[2,3,4,0],[0,3,2,2],[0,2,1,0]],[[1,2,1,1],[2,4,3,0],[0,3,2,2],[0,2,1,0]],[[1,3,1,1],[2,3,3,0],[0,3,2,2],[0,2,1,0]],[[2,2,1,1],[2,3,3,0],[0,3,2,2],[0,2,1,0]],[[1,2,1,1],[2,3,4,0],[0,3,2,2],[0,2,0,1]],[[1,2,1,1],[2,4,3,0],[0,3,2,2],[0,2,0,1]],[[1,3,1,1],[2,3,3,0],[0,3,2,2],[0,2,0,1]],[[2,2,1,1],[2,3,3,0],[0,3,2,2],[0,2,0,1]],[[1,2,1,1],[2,3,4,0],[0,3,2,2],[0,1,2,0]],[[1,2,1,1],[2,4,3,0],[0,3,2,2],[0,1,2,0]],[[1,3,1,1],[2,3,3,0],[0,3,2,2],[0,1,2,0]],[[2,2,1,1],[2,3,3,0],[0,3,2,2],[0,1,2,0]],[[1,2,1,1],[2,3,4,0],[0,3,2,2],[0,1,1,1]],[[1,2,1,1],[2,4,3,0],[0,3,2,2],[0,1,1,1]],[[1,3,1,1],[2,3,3,0],[0,3,2,2],[0,1,1,1]],[[2,2,1,1],[2,3,3,0],[0,3,2,2],[0,1,1,1]],[[2,0,1,1],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,0,1,2],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,0,1,1],[3,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,0,1,1],[2,4,3,2],[1,3,3,2],[0,0,0,1]],[[1,0,1,1],[2,3,4,2],[1,3,3,2],[0,0,0,1]],[[1,0,1,1],[2,3,3,3],[1,3,3,2],[0,0,0,1]],[[1,0,1,1],[2,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,1,1],[2,4,3,0],[0,3,2,1],[1,1,1,1]],[[1,3,1,1],[2,3,3,0],[0,3,2,1],[1,1,1,1]],[[2,2,1,1],[2,3,3,0],[0,3,2,1],[1,1,1,1]],[[1,2,1,1],[2,3,4,0],[0,3,2,1],[1,0,2,1]],[[1,2,1,1],[2,4,3,0],[0,3,2,1],[1,0,2,1]],[[1,3,1,1],[2,3,3,0],[0,3,2,1],[1,0,2,1]],[[2,2,1,1],[2,3,3,0],[0,3,2,1],[1,0,2,1]],[[1,2,1,1],[2,3,4,0],[0,3,2,1],[0,2,1,1]],[[1,2,1,1],[2,4,3,0],[0,3,2,1],[0,2,1,1]],[[1,3,1,1],[2,3,3,0],[0,3,2,1],[0,2,1,1]],[[2,2,1,1],[2,3,3,0],[0,3,2,1],[0,2,1,1]],[[1,2,1,1],[2,3,4,0],[0,3,2,1],[0,1,2,1]],[[1,2,1,1],[2,4,3,0],[0,3,2,1],[0,1,2,1]],[[1,3,1,1],[2,3,3,0],[0,3,2,1],[0,1,2,1]],[[2,2,1,1],[2,3,3,0],[0,3,2,1],[0,1,2,1]],[[1,2,1,1],[2,4,3,0],[0,3,1,2],[1,1,2,0]],[[1,3,1,1],[2,3,3,0],[0,3,1,2],[1,1,2,0]],[[2,2,1,1],[2,3,3,0],[0,3,1,2],[1,1,2,0]],[[1,2,1,1],[2,3,4,0],[0,3,1,2],[0,2,2,0]],[[1,2,1,1],[2,4,3,0],[0,3,1,2],[0,2,2,0]],[[1,3,1,1],[2,3,3,0],[0,3,1,2],[0,2,2,0]],[[2,2,1,1],[2,3,3,0],[0,3,1,2],[0,2,2,0]],[[1,2,1,1],[2,4,3,0],[0,3,1,1],[1,1,2,1]],[[1,3,1,1],[2,3,3,0],[0,3,1,1],[1,1,2,1]],[[2,2,1,1],[2,3,3,0],[0,3,1,1],[1,1,2,1]],[[1,2,1,1],[2,3,4,0],[0,3,1,1],[0,2,2,1]],[[1,2,1,1],[2,4,3,0],[0,3,1,1],[0,2,2,1]],[[1,3,1,1],[2,3,3,0],[0,3,1,1],[0,2,2,1]],[[2,2,1,1],[2,3,3,0],[0,3,1,1],[0,2,2,1]],[[1,2,1,1],[2,4,3,0],[0,3,0,2],[1,1,2,1]],[[1,3,1,1],[2,3,3,0],[0,3,0,2],[1,1,2,1]],[[2,2,1,1],[2,3,3,0],[0,3,0,2],[1,1,2,1]],[[1,2,1,1],[2,3,4,0],[0,3,0,2],[0,2,2,1]],[[1,2,1,1],[2,4,3,0],[0,3,0,2],[0,2,2,1]],[[1,3,1,1],[2,3,3,0],[0,3,0,2],[0,2,2,1]],[[2,2,1,1],[2,3,3,0],[0,3,0,2],[0,2,2,1]],[[1,2,1,1],[2,3,4,0],[0,2,3,2],[1,1,1,0]],[[1,2,1,1],[2,4,3,0],[0,2,3,2],[1,1,1,0]],[[1,3,1,1],[2,3,3,0],[0,2,3,2],[1,1,1,0]],[[2,2,1,1],[2,3,3,0],[0,2,3,2],[1,1,1,0]],[[1,2,1,1],[2,3,4,0],[0,2,3,2],[1,1,0,1]],[[1,2,1,1],[2,4,3,0],[0,2,3,2],[1,1,0,1]],[[1,3,1,1],[2,3,3,0],[0,2,3,2],[1,1,0,1]],[[2,2,1,1],[2,3,3,0],[0,2,3,2],[1,1,0,1]],[[1,2,1,1],[2,3,3,0],[0,2,3,3],[1,0,2,0]],[[1,2,1,1],[2,3,3,0],[0,2,4,2],[1,0,2,0]],[[1,2,1,1],[2,3,4,0],[0,2,3,2],[1,0,2,0]],[[1,2,1,1],[2,4,3,0],[0,2,3,2],[1,0,2,0]],[[1,3,1,1],[2,3,3,0],[0,2,3,2],[1,0,2,0]],[[2,2,1,1],[2,3,3,0],[0,2,3,2],[1,0,2,0]],[[1,2,1,1],[2,3,3,0],[0,2,3,2],[1,0,1,2]],[[1,2,1,1],[2,3,3,0],[0,2,3,3],[1,0,1,1]],[[1,2,1,1],[2,3,3,0],[0,2,4,2],[1,0,1,1]],[[1,2,1,1],[2,3,4,0],[0,2,3,2],[1,0,1,1]],[[1,2,1,1],[2,4,3,0],[0,2,3,2],[1,0,1,1]],[[1,3,1,1],[2,3,3,0],[0,2,3,2],[1,0,1,1]],[[2,2,1,1],[2,3,3,0],[0,2,3,2],[1,0,1,1]],[[1,2,1,1],[2,3,3,0],[0,2,3,3],[0,2,1,0]],[[1,2,1,1],[2,3,3,0],[0,2,4,2],[0,2,1,0]],[[1,2,1,1],[2,3,4,0],[0,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,4,3,0],[0,2,3,2],[0,2,1,0]],[[1,3,1,1],[2,3,3,0],[0,2,3,2],[0,2,1,0]],[[2,2,1,1],[2,3,3,0],[0,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,3,3,0],[0,2,3,2],[0,2,0,2]],[[1,2,1,1],[2,3,3,0],[0,2,3,3],[0,2,0,1]],[[1,2,1,1],[2,3,3,0],[0,2,4,2],[0,2,0,1]],[[1,2,1,1],[2,3,4,0],[0,2,3,2],[0,2,0,1]],[[1,2,1,1],[2,4,3,0],[0,2,3,2],[0,2,0,1]],[[1,3,1,1],[2,3,3,0],[0,2,3,2],[0,2,0,1]],[[2,2,1,1],[2,3,3,0],[0,2,3,2],[0,2,0,1]],[[1,2,1,1],[2,3,3,0],[0,2,3,2],[0,1,3,0]],[[1,2,1,1],[2,3,3,0],[0,2,3,3],[0,1,2,0]],[[1,2,1,1],[2,3,3,0],[0,2,4,2],[0,1,2,0]],[[1,2,1,1],[2,3,4,0],[0,2,3,2],[0,1,2,0]],[[1,2,1,1],[2,4,3,0],[0,2,3,2],[0,1,2,0]],[[1,3,1,1],[2,3,3,0],[0,2,3,2],[0,1,2,0]],[[2,2,1,1],[2,3,3,0],[0,2,3,2],[0,1,2,0]],[[1,2,1,1],[2,3,3,0],[0,2,3,2],[0,1,1,2]],[[1,2,1,1],[2,3,3,0],[0,2,3,3],[0,1,1,1]],[[1,2,1,1],[2,3,3,0],[0,2,4,2],[0,1,1,1]],[[1,2,1,1],[2,3,4,0],[0,2,3,2],[0,1,1,1]],[[1,2,1,1],[2,4,3,0],[0,2,3,2],[0,1,1,1]],[[1,3,1,1],[2,3,3,0],[0,2,3,2],[0,1,1,1]],[[2,2,1,1],[2,3,3,0],[0,2,3,2],[0,1,1,1]],[[1,2,1,1],[2,3,3,0],[0,2,3,2],[0,0,2,2]],[[1,2,1,1],[2,3,3,0],[0,2,3,3],[0,0,2,1]],[[1,2,1,1],[2,3,3,0],[0,2,4,2],[0,0,2,1]],[[1,2,1,1],[2,3,4,0],[0,2,3,2],[0,0,2,1]],[[1,2,1,1],[2,4,3,0],[0,2,3,2],[0,0,2,1]],[[1,3,1,1],[2,3,3,0],[0,2,3,2],[0,0,2,1]],[[2,2,1,1],[2,3,3,0],[0,2,3,2],[0,0,2,1]],[[1,2,1,1],[2,4,3,0],[0,2,3,1],[1,1,1,1]],[[1,3,1,1],[2,3,3,0],[0,2,3,1],[1,1,1,1]],[[2,2,1,1],[2,3,3,0],[0,2,3,1],[1,1,1,1]],[[1,2,1,1],[2,3,3,0],[0,2,4,1],[1,0,2,1]],[[1,2,1,1],[2,3,4,0],[0,2,3,1],[1,0,2,1]],[[1,2,1,1],[2,4,3,0],[0,2,3,1],[1,0,2,1]],[[1,3,1,1],[2,3,3,0],[0,2,3,1],[1,0,2,1]],[[2,2,1,1],[2,3,3,0],[0,2,3,1],[1,0,2,1]],[[1,2,1,1],[2,3,3,0],[0,2,4,1],[0,2,1,1]],[[1,2,1,1],[2,3,4,0],[0,2,3,1],[0,2,1,1]],[[1,2,1,1],[2,4,3,0],[0,2,3,1],[0,2,1,1]],[[1,3,1,1],[2,3,3,0],[0,2,3,1],[0,2,1,1]],[[2,2,1,1],[2,3,3,0],[0,2,3,1],[0,2,1,1]],[[1,2,1,1],[2,3,3,0],[0,2,3,1],[0,1,2,2]],[[1,2,1,1],[2,3,3,0],[0,2,3,1],[0,1,3,1]],[[1,2,1,1],[2,3,3,0],[0,2,4,1],[0,1,2,1]],[[1,2,1,1],[2,3,4,0],[0,2,3,1],[0,1,2,1]],[[1,2,1,1],[2,4,3,0],[0,2,3,1],[0,1,2,1]],[[1,3,1,1],[2,3,3,0],[0,2,3,1],[0,1,2,1]],[[2,2,1,1],[2,3,3,0],[0,2,3,1],[0,1,2,1]],[[2,0,1,1],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[2,0,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[2,0,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[2,0,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[3,0,1,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,1],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,1],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,1],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,1],[1,2,2,2]],[[2,0,1,1],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,0,1,1],[3,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,0,1,1],[2,4,3,2],[2,0,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[2,0,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[2,0,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[3,0,1,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,3],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[0,3,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[0,2,2,2]],[[2,0,1,1],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,0,1,2],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[2,0,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[2,0,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[2,0,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[3,0,1,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,3],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[2,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[1,1,3,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[1,1,2,2]],[[2,0,1,1],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[2,0,1,2],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[2,0,1,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[2,0,1,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[3,0,1,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,3],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[2,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[1,3,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[1,2,1,2]],[[2,0,1,1],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,0,1,2],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,0,1,1],[3,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,0,1,1],[2,4,3,2],[2,0,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,4,2],[2,0,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,3],[2,0,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[3,0,1,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,1,3],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[2,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[1,3,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,1,2],[1,2,3,0]],[[2,0,1,1],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[2,0,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[2,0,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[2,0,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[3,0,2,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,0],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,0],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,0],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,0],[1,2,2,2]],[[2,0,1,1],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,0,1,2],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,0,1,1],[3,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,0,1,1],[2,4,3,2],[2,0,2,1],[1,2,2,0]],[[1,0,1,1],[2,3,4,2],[2,0,2,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,3],[2,0,2,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[3,0,2,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,2,1],[2,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,2,1],[1,3,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,2,1],[1,2,3,0]],[[2,0,1,1],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,0,1,2],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,0,1,1],[3,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[2,0,2,2],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[2,0,2,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[2,0,2,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[3,0,2,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,3],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,2],[0,2,1,2]],[[2,0,1,1],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,0,1,2],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,0,1,1],[3,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,0,1,1],[2,4,3,2],[2,0,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,4,2],[2,0,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,3],[2,0,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[3,0,2,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,2,3],[0,2,2,0]],[[2,0,1,1],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[2,0,2,2],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[2,0,2,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[2,0,2,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[3,0,2,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,3],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,2],[2,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,2],[1,1,1,2]],[[2,0,1,1],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,0,1,2],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[2,0,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[2,0,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,3],[2,0,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[3,0,2,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,2,3],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,2,2],[2,1,2,0]],[[2,0,1,1],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,0,1,2],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,0,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,4,2],[2,0,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,3],[2,0,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,0,2,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,3],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,2],[2,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,2],[1,3,0,1]],[[1,0,1,1],[2,3,3,2],[2,0,2,2],[1,2,0,2]],[[2,0,1,1],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,0,1,2],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,0,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,4,2],[2,0,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,3],[2,0,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,0,2,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,0,2,3],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,0,2,2],[2,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,0,2,2],[1,3,1,0]],[[1,2,1,1],[2,3,3,0],[0,2,2,2],[0,1,2,2]],[[1,2,1,1],[2,3,3,0],[0,2,2,2],[0,1,3,1]],[[1,2,1,1],[2,3,3,0],[0,2,2,3],[0,1,2,1]],[[2,0,1,1],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,0,1,1],[3,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,0,1,1],[2,4,3,2],[2,0,3,0],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[2,0,3,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[2,0,3,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[3,0,3,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,4,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,0],[0,3,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,0],[0,2,3,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,0],[0,2,2,2]],[[2,0,1,1],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,0,1,2],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[2,0,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[2,0,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[2,0,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[3,0,3,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,4,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,0],[2,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,0],[1,1,3,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,0],[1,1,2,2]],[[2,0,1,1],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[2,0,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[2,0,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[2,0,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[3,0,3,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,4,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,0],[2,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,0],[1,3,1,1]],[[2,0,1,1],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,0,1,2],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,0,1,1],[3,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[2,0,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[2,0,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[2,0,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[3,0,3,1],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,4,1],[0,2,1,1]],[[2,0,1,1],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,0,1,2],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,0,1,1],[3,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,0,1,1],[2,4,3,2],[2,0,3,1],[0,2,2,0]],[[1,0,1,1],[2,3,4,2],[2,0,3,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,3],[2,0,3,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[3,0,3,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,4,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,3,1],[0,3,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,3,1],[0,2,3,0]],[[2,0,1,1],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[2,0,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[2,0,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[2,0,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[3,0,3,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,4,1],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,1],[2,1,1,1]],[[2,0,1,1],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,0,1,2],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[2,0,3,1],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[2,0,3,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,3],[2,0,3,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[3,0,3,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,4,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,3,1],[2,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,3,1],[1,1,3,0]],[[2,0,1,1],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,0,1,2],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,0,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,4,2],[2,0,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,3],[2,0,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,0,3,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,0,4,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,1],[2,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,1],[1,3,0,1]],[[2,0,1,1],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,0,1,2],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,0,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,4,2],[2,0,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,3],[2,0,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,0,3,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,0,4,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,0,3,1],[2,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,0,3,1],[1,3,1,0]],[[1,0,1,2],[2,3,3,2],[2,0,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,4,2],[2,0,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,3],[2,0,3,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,3],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,2],[0,0,2,2]],[[1,0,1,2],[2,3,3,2],[2,0,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[2,0,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[2,0,3,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,3],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,2],[0,1,1,2]],[[1,0,1,2],[2,3,3,2],[2,0,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[2,0,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[2,0,3,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,1,1],[2,3,3,0],[0,1,3,2],[0,2,3,0]],[[1,2,1,1],[2,3,3,0],[0,1,3,3],[0,2,2,0]],[[1,2,1,1],[2,3,3,0],[0,1,4,2],[0,2,2,0]],[[1,2,1,1],[2,3,4,0],[0,1,3,2],[0,2,2,0]],[[1,0,1,2],[2,3,3,2],[2,0,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,4,2],[2,0,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,3],[2,0,3,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,3],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[2,0,3,2],[1,0,1,2]],[[1,0,1,2],[2,3,3,2],[2,0,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[2,0,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,3],[2,0,3,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,1,1],[2,4,3,0],[0,1,3,2],[0,2,2,0]],[[1,3,1,1],[2,3,3,0],[0,1,3,2],[0,2,2,0]],[[2,2,1,1],[2,3,3,0],[0,1,3,2],[0,2,2,0]],[[1,2,1,1],[2,3,3,0],[0,1,3,2],[0,2,1,2]],[[1,2,1,1],[2,3,3,0],[0,1,3,3],[0,2,1,1]],[[1,2,1,1],[2,3,3,0],[0,1,4,2],[0,2,1,1]],[[1,2,1,1],[2,3,4,0],[0,1,3,2],[0,2,1,1]],[[1,2,1,1],[2,4,3,0],[0,1,3,2],[0,2,1,1]],[[1,3,1,1],[2,3,3,0],[0,1,3,2],[0,2,1,1]],[[2,2,1,1],[2,3,3,0],[0,1,3,2],[0,2,1,1]],[[1,2,1,1],[2,3,3,0],[0,1,3,1],[0,2,2,2]],[[1,2,1,1],[2,3,3,0],[0,1,3,1],[0,2,3,1]],[[1,2,1,1],[2,3,3,0],[0,1,4,1],[0,2,2,1]],[[1,2,1,1],[2,3,4,0],[0,1,3,1],[0,2,2,1]],[[1,2,1,1],[2,4,3,0],[0,1,3,1],[0,2,2,1]],[[1,3,1,1],[2,3,3,0],[0,1,3,1],[0,2,2,1]],[[2,2,1,1],[2,3,3,0],[0,1,3,1],[0,2,2,1]],[[1,2,1,1],[2,3,3,0],[0,1,2,2],[0,2,2,2]],[[1,2,1,1],[2,3,3,0],[0,1,2,2],[0,2,3,1]],[[1,2,1,1],[2,3,3,0],[0,1,2,3],[0,2,2,1]],[[1,2,1,1],[2,3,3,0],[0,0,3,2],[0,2,2,2]],[[1,2,1,1],[2,3,3,0],[0,0,3,2],[0,2,3,1]],[[1,2,1,1],[2,3,3,0],[0,0,3,3],[0,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[2,1,0,1],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[2,1,0,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[2,1,0,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[3,1,0,1],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,1],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,1],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,1],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,1],[1,2,2,2]],[[2,0,1,1],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,0,1,1],[3,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,0,1,1],[2,4,3,2],[2,1,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[2,1,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[2,1,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[3,1,0,2],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,3],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[0,3,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[0,2,3,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[0,2,2,2]],[[2,0,1,1],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,0,1,2],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[2,1,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[2,1,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[2,1,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[3,1,0,2],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,3],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[2,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[1,1,3,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[1,1,2,2]],[[2,0,1,1],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[2,1,0,2],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[2,1,0,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[2,1,0,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[3,1,0,2],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,3],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[2,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[1,3,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[1,2,1,2]],[[2,0,1,1],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,0,1,2],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,0,1,1],[3,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,0,1,1],[2,4,3,2],[2,1,0,2],[1,2,2,0]],[[1,0,1,1],[2,3,4,2],[2,1,0,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,3],[2,1,0,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[3,1,0,2],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,0,3],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[2,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[1,3,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,0,2],[1,2,3,0]],[[2,0,1,1],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,0,1,2],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[2,1,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,4,2],[2,1,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,3],[2,1,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[3,1,1,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,0],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,0],[1,3,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,0],[1,2,3,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,0],[1,2,2,2]],[[2,0,1,1],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,0,1,2],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,0,1,1],[3,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,0,1,1],[2,4,3,2],[2,1,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,4,2],[2,1,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,3],[2,1,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[3,1,1,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,1,1],[2,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,1,1],[1,3,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,1,1],[1,2,3,0]],[[2,0,1,1],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,0,1,2],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,0,1,1],[3,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,0,1,1],[2,4,3,2],[2,1,1,2],[0,1,2,1]],[[1,0,1,1],[2,3,4,2],[2,1,1,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,3],[2,1,1,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[3,1,1,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,3],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,2],[0,1,3,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,2],[0,1,2,2]],[[2,0,1,1],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,0,1,2],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,0,1,1],[3,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,0,1,1],[2,4,3,2],[2,1,1,2],[1,0,2,1]],[[1,0,1,1],[2,3,4,2],[2,1,1,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,3],[2,1,1,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[3,1,1,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,3],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,2],[2,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,2],[1,0,3,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,2],[1,0,2,2]],[[2,0,1,1],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,0,1,2],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,1,1,2],[1,2,0,1]],[[1,0,1,1],[2,3,4,2],[2,1,1,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,3],[2,1,1,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,1,1,2],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,3],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,2],[2,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,2],[1,3,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,1,2],[1,2,0,2]],[[2,0,1,1],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,0,1,2],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,1,1,2],[1,2,1,0]],[[1,0,1,1],[2,3,4,2],[2,1,1,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,3],[2,1,1,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,1,1,2],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,1,3],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,1,2],[2,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,1,2],[1,3,1,0]],[[2,0,1,1],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,0,1,2],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[2,1,2,0],[1,2,1,1]],[[1,0,1,1],[2,3,4,2],[2,1,2,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,3],[2,1,2,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[3,1,2,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,0],[2,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,0],[1,3,1,1]],[[2,0,1,1],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,0,1,2],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,1,2,1],[1,2,0,1]],[[1,0,1,1],[2,3,4,2],[2,1,2,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,3],[2,1,2,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,1,2,1],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,1],[2,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,1],[1,3,0,1]],[[2,0,1,1],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,0,1,2],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,1,2,1],[1,2,1,0]],[[1,0,1,1],[2,3,4,2],[2,1,2,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,3],[2,1,2,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,1,2,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,2,1],[2,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,2,1],[1,3,1,0]],[[2,0,1,1],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,0,1,2],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,0,1,1],[3,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,0,1,1],[2,4,3,2],[2,1,2,2],[0,0,2,1]],[[1,0,1,1],[2,3,4,2],[2,1,2,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,3],[2,1,2,2],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,3],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,2],[0,0,2,2]],[[2,0,1,1],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,0,1,2],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,0,1,1],[3,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,0,1,1],[2,4,3,2],[2,1,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[2,1,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[2,1,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[3,1,2,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,3],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,2],[0,1,1,2]],[[2,0,1,1],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,0,1,2],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,0,1,1],[3,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[2,1,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[2,1,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[2,1,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[3,1,2,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,2,3],[0,1,2,0]],[[2,0,1,1],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,0,1,2],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,1,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,4,2],[2,1,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,3],[2,1,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,1,2,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,3],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,2],[0,2,0,2]],[[2,0,1,1],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,0,1,2],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,1,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[2,1,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,3],[2,1,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,1,2,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,2,3],[0,2,1,0]],[[2,0,1,1],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,0,1,2],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,0,1,1],[3,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,0,1,1],[2,4,3,2],[2,1,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,4,2],[2,1,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,3],[2,1,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[3,1,2,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,3],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,2],[2,0,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,2],[1,0,1,2]],[[2,0,1,1],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,0,1,2],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,0,1,1],[3,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,0,1,1],[2,4,3,2],[2,1,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[2,1,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,3],[2,1,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[3,1,2,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,2,3],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,2,2],[2,0,2,0]],[[2,0,1,1],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,0,1,2],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,0,1,1],[3,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,0,1,1],[2,4,3,2],[2,1,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,4,2],[2,1,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,3],[2,1,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[3,1,2,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,3],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,2],[2,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,2,2],[1,1,0,2]],[[2,0,1,1],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,0,1,2],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[2,1,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,4,2],[2,1,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,3],[2,1,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[3,1,2,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,2,3],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,2,2],[2,1,1,0]],[[2,0,1,1],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,0,1,2],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,0,1,1],[3,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,0,1,1],[2,4,3,2],[2,1,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,4,2],[2,1,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,3],[2,1,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[3,1,3,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,4,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,3,0],[0,1,3,1]],[[1,0,1,1],[2,3,3,2],[2,1,3,0],[0,1,2,2]],[[2,0,1,1],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,0,1,2],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,0,1,1],[3,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[2,1,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[2,1,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[2,1,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[3,1,3,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,4,0],[0,2,1,1]],[[2,0,1,1],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,0,1,2],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,0,1,1],[3,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,0,1,1],[2,4,3,2],[2,1,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,4,2],[2,1,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,3],[2,1,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[3,1,3,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,4,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,3,0],[2,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,3,0],[1,0,3,1]],[[1,0,1,1],[2,3,3,2],[2,1,3,0],[1,0,2,2]],[[2,0,1,1],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[2,1,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[2,1,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[2,1,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[3,1,3,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,4,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,3,0],[2,1,1,1]],[[2,0,1,1],[2,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,1,3,0],[1,2,1,0]],[[1,0,1,1],[2,3,4,2],[2,1,3,0],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,1,3,0],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,3,0],[2,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,3,0],[1,3,1,0]],[[2,0,1,1],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,0,1,2],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,0,1,1],[3,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,0,1,1],[2,4,3,2],[2,1,3,1],[0,0,2,1]],[[1,0,1,1],[2,3,4,2],[2,1,3,1],[0,0,2,1]],[[1,0,1,1],[2,3,3,3],[2,1,3,1],[0,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,1,4,1],[0,0,2,1]],[[2,0,1,1],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,0,1,2],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,0,1,1],[3,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,0,1,1],[2,4,3,2],[2,1,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[2,1,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[2,1,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[3,1,3,1],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,4,1],[0,1,1,1]],[[2,0,1,1],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,0,1,2],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,0,1,1],[3,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[2,1,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[2,1,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[2,1,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[3,1,3,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,4,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,3,1],[0,1,3,0]],[[2,0,1,1],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,0,1,2],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,1,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,4,2],[2,1,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,3],[2,1,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,1,3,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,4,1],[0,2,0,1]],[[2,0,1,1],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,0,1,2],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,1,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[2,1,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,3],[2,1,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,1,3,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,4,1],[0,2,1,0]],[[2,0,1,1],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,0,1,2],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,0,1,1],[3,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,0,1,1],[2,4,3,2],[2,1,3,1],[1,0,1,1]],[[1,0,1,1],[2,3,4,2],[2,1,3,1],[1,0,1,1]],[[1,0,1,1],[2,3,3,3],[2,1,3,1],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[3,1,3,1],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,4,1],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[2,1,3,1],[2,0,1,1]],[[2,0,1,1],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,0,1,2],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,0,1,1],[3,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,0,1,1],[2,4,3,2],[2,1,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[2,1,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,3],[2,1,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[3,1,3,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,4,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,3,1],[2,0,2,0]],[[1,0,1,1],[2,3,3,2],[2,1,3,1],[1,0,3,0]],[[2,0,1,1],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,0,1,2],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,0,1,1],[3,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,0,1,1],[2,4,3,2],[2,1,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,4,2],[2,1,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,3],[2,1,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[3,1,3,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,4,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,3,1],[2,1,0,1]],[[2,0,1,1],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,0,1,2],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[2,1,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,4,2],[2,1,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,3],[2,1,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[3,1,3,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,4,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[2,1,3,1],[2,1,1,0]],[[2,0,1,1],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,0,1,2],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,0,1,1],[3,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,0,1,1],[2,4,3,2],[2,1,3,2],[0,1,0,1]],[[1,0,1,1],[2,3,4,2],[2,1,3,2],[0,1,0,1]],[[1,0,1,1],[2,3,3,3],[2,1,3,2],[0,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,3,3],[0,1,0,1]],[[2,0,1,1],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,0,1,2],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,0,1,1],[3,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,0,1,1],[2,4,3,2],[2,1,3,2],[1,0,0,1]],[[1,0,1,1],[2,3,4,2],[2,1,3,2],[1,0,0,1]],[[1,0,1,1],[2,3,3,3],[2,1,3,2],[1,0,0,1]],[[1,0,1,1],[2,3,3,2],[3,1,3,2],[1,0,0,1]],[[1,0,1,1],[2,3,3,2],[2,1,3,3],[1,0,0,1]],[[2,0,1,1],[2,3,3,2],[2,2,0,0],[1,2,2,1]],[[1,0,1,1],[3,3,3,2],[2,2,0,0],[1,2,2,1]],[[1,0,1,1],[2,4,3,2],[2,2,0,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[3,2,0,0],[1,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,0],[2,2,2,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,0],[1,3,2,1]],[[2,0,1,1],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,0,1,1],[3,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,0,1,1],[2,4,3,2],[2,2,0,1],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[2,2,0,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[2,2,0,1],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[3,2,0,1],[0,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,0,1,2],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[2,2,0,1],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[2,2,0,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[2,2,0,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[3,2,0,1],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,1],[2,1,2,1]],[[2,0,1,1],[2,3,3,2],[2,2,0,1],[1,2,2,0]],[[1,0,1,1],[3,3,3,2],[2,2,0,1],[1,2,2,0]],[[1,0,1,1],[2,4,3,2],[2,2,0,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[3,2,0,1],[1,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,2,0,1],[2,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,2,0,1],[1,3,2,0]],[[2,0,1,1],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,0,1,2],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,0,1,1],[3,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,0,1,1],[2,4,3,2],[2,2,0,2],[0,1,2,1]],[[1,0,1,1],[2,3,4,2],[2,2,0,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,3],[2,2,0,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[3,2,0,2],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,3],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,2],[0,1,3,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,2],[0,1,2,2]],[[2,0,1,1],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,0,1,2],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,0,1,1],[3,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[2,2,0,2],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[2,2,0,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[2,2,0,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[3,2,0,2],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,3],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,2],[0,2,1,2]],[[2,0,1,1],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,0,1,2],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,0,1,1],[3,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,0,1,1],[2,4,3,2],[2,2,0,2],[0,2,2,0]],[[1,0,1,1],[2,3,4,2],[2,2,0,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,3],[2,2,0,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[3,2,0,2],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[2,2,0,3],[0,2,2,0]],[[2,0,1,1],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,0,1,2],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,0,1,1],[3,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,0,1,1],[2,4,3,2],[2,2,0,2],[1,0,2,1]],[[1,0,1,1],[2,3,4,2],[2,2,0,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,3],[2,2,0,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[3,2,0,2],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,3],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,2],[2,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,2],[1,0,3,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,2],[1,0,2,2]],[[2,0,1,1],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[2,2,0,2],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[2,2,0,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[2,2,0,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[3,2,0,2],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,3],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,2],[2,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,0,2],[1,1,1,2]],[[2,0,1,1],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,0,1,2],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[2,2,0,2],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[2,2,0,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,3],[2,2,0,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[3,2,0,2],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,2,0,3],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,2,0,2],[2,1,2,0]],[[2,0,1,1],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,0,1,2],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,0,1,1],[3,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,0,1,1],[2,4,3,2],[2,2,1,0],[0,2,2,1]],[[1,0,1,1],[2,3,4,2],[2,2,1,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,3],[2,2,1,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[3,2,1,0],[0,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,0,1,2],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[2,2,1,0],[1,1,2,1]],[[1,0,1,1],[2,3,4,2],[2,2,1,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,3],[2,2,1,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[3,2,1,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,2,1,0],[2,1,2,1]],[[2,0,1,1],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,0,1,2],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,0,1,1],[3,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,0,1,1],[2,4,3,2],[2,2,1,1],[0,2,2,0]],[[1,0,1,1],[2,3,4,2],[2,2,1,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,3],[2,2,1,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[3,2,1,1],[0,2,2,0]],[[2,0,1,1],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,0,1,2],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[2,2,1,1],[1,1,2,0]],[[1,0,1,1],[2,3,4,2],[2,2,1,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,3],[2,2,1,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[3,2,1,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,2,1,1],[2,1,2,0]],[[2,0,1,1],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,0,1,2],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,0,1,1],[3,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,0,1,1],[2,4,3,2],[2,2,1,2],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[2,2,1,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[2,2,1,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[3,2,1,2],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,1,3],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,1,2],[0,1,1,2]],[[2,0,1,1],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,0,1,2],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,0,1,1],[3,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[2,2,1,2],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[2,2,1,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[2,2,1,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[3,2,1,2],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,2,1,3],[0,1,2,0]],[[2,0,1,1],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,0,1,2],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,2,1,2],[0,2,0,1]],[[1,0,1,1],[2,3,4,2],[2,2,1,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,3],[2,2,1,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,2,1,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,2,1,3],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,2,1,2],[0,2,0,2]],[[2,0,1,1],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,0,1,2],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,2,1,2],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[2,2,1,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,3],[2,2,1,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,2,1,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,2,1,3],[0,2,1,0]],[[2,0,1,1],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,0,1,2],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,0,1,1],[3,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,0,1,1],[2,4,3,2],[2,2,1,2],[1,0,1,1]],[[1,0,1,1],[2,3,4,2],[2,2,1,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,3],[2,2,1,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[3,2,1,2],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,1,3],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,1,2],[2,0,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,1,2],[1,0,1,2]],[[2,0,1,1],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,0,1,2],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,0,1,1],[3,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,0,1,1],[2,4,3,2],[2,2,1,2],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[2,2,1,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,3],[2,2,1,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[3,2,1,2],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[2,2,1,3],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[2,2,1,2],[2,0,2,0]],[[2,0,1,1],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,0,1,2],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,0,1,1],[3,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,0,1,1],[2,4,3,2],[2,2,1,2],[1,1,0,1]],[[1,0,1,1],[2,3,4,2],[2,2,1,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,3],[2,2,1,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[3,2,1,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,2,1,3],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,2,1,2],[2,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,2,1,2],[1,1,0,2]],[[2,0,1,1],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,0,1,2],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[2,2,1,2],[1,1,1,0]],[[1,0,1,1],[2,3,4,2],[2,2,1,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,3],[2,2,1,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[3,2,1,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[2,2,1,3],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[2,2,1,2],[2,1,1,0]],[[2,0,1,1],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,0,1,2],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,0,1,1],[3,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,0,1,1],[2,4,3,2],[2,2,1,2],[1,2,0,0]],[[1,0,1,1],[2,3,4,2],[2,2,1,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,3],[2,2,1,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[3,2,1,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[2,2,1,2],[2,2,0,0]],[[2,0,1,1],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,0,1,2],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,0,1,1],[3,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,0,1,1],[2,4,3,2],[2,2,2,0],[0,1,2,1]],[[1,0,1,1],[2,3,4,2],[2,2,2,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,3],[2,2,2,0],[0,1,2,1]],[[1,0,1,1],[2,3,3,2],[3,2,2,0],[0,1,2,1]],[[2,0,1,1],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,0,1,2],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,0,1,1],[3,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[2,2,2,0],[0,2,1,1]],[[1,0,1,1],[2,3,4,2],[2,2,2,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,3],[2,2,2,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[3,2,2,0],[0,2,1,1]],[[2,0,1,1],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,0,1,2],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,0,1,1],[3,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,0,1,1],[2,4,3,2],[2,2,2,0],[1,0,2,1]],[[1,0,1,1],[2,3,4,2],[2,2,2,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,3],[2,2,2,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[3,2,2,0],[1,0,2,1]],[[1,0,1,1],[2,3,3,2],[2,2,2,0],[2,0,2,1]],[[2,0,1,1],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,0,1,2],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[2,2,2,0],[1,1,1,1]],[[1,0,1,1],[2,3,4,2],[2,2,2,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,3],[2,2,2,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[3,2,2,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,2,0],[2,1,1,1]],[[2,0,1,1],[2,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,2,2,0],[1,2,0,1]],[[1,0,1,1],[2,3,4,2],[2,2,2,0],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,2,2,0],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,2,2,0],[2,2,0,1]],[[2,0,1,1],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,0,1,2],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,0,1,1],[3,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,0,1,1],[2,4,3,2],[2,2,2,1],[0,1,1,1]],[[1,0,1,1],[2,3,4,2],[2,2,2,1],[0,1,1,1]],[[1,0,1,1],[2,3,3,3],[2,2,2,1],[0,1,1,1]],[[1,0,1,1],[2,3,3,2],[3,2,2,1],[0,1,1,1]],[[2,0,1,1],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,0,1,2],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,0,1,1],[3,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[2,2,2,1],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[2,2,2,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,3],[2,2,2,1],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[3,2,2,1],[0,1,2,0]],[[2,0,1,1],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,0,1,2],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,2,2,1],[0,2,0,1]],[[1,0,1,1],[2,3,4,2],[2,2,2,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,3],[2,2,2,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,2,2,1],[0,2,0,1]],[[2,0,1,1],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,0,1,2],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,2,2,1],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[2,2,2,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,3],[2,2,2,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,2,2,1],[0,2,1,0]],[[2,0,1,1],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,0,1,2],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,0,1,1],[3,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,0,1,1],[2,4,3,2],[2,2,2,1],[1,0,1,1]],[[1,0,1,1],[2,3,4,2],[2,2,2,1],[1,0,1,1]],[[1,0,1,1],[2,3,3,3],[2,2,2,1],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[3,2,2,1],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[2,2,2,1],[2,0,1,1]],[[2,0,1,1],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,0,1,2],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,0,1,1],[3,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,0,1,1],[2,4,3,2],[2,2,2,1],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[2,2,2,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,3],[2,2,2,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[3,2,2,1],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[2,2,2,1],[2,0,2,0]],[[2,0,1,1],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,0,1,2],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,0,1,1],[3,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,0,1,1],[2,4,3,2],[2,2,2,1],[1,1,0,1]],[[1,0,1,1],[2,3,4,2],[2,2,2,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,3],[2,2,2,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[3,2,2,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,2,2,1],[2,1,0,1]],[[2,0,1,1],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,0,1,2],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[2,2,2,1],[1,1,1,0]],[[1,0,1,1],[2,3,4,2],[2,2,2,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,3],[2,2,2,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[3,2,2,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[2,2,2,1],[2,1,1,0]],[[2,0,1,1],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,0,1,2],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,0,1,1],[3,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,0,1,1],[2,4,3,2],[2,2,2,1],[1,2,0,0]],[[1,0,1,1],[2,3,4,2],[2,2,2,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,3],[2,2,2,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[3,2,2,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[2,2,2,1],[2,2,0,0]],[[1,2,1,1],[2,4,2,1],[0,3,3,1],[1,1,1,0]],[[1,3,1,1],[2,3,2,1],[0,3,3,1],[1,1,1,0]],[[2,2,1,1],[2,3,2,1],[0,3,3,1],[1,1,1,0]],[[1,2,1,1],[2,4,2,1],[0,3,3,1],[1,1,0,1]],[[1,3,1,1],[2,3,2,1],[0,3,3,1],[1,1,0,1]],[[2,2,1,1],[2,3,2,1],[0,3,3,1],[1,1,0,1]],[[1,2,1,1],[2,4,2,1],[0,3,3,1],[1,0,2,0]],[[1,3,1,1],[2,3,2,1],[0,3,3,1],[1,0,2,0]],[[2,2,1,1],[2,3,2,1],[0,3,3,1],[1,0,2,0]],[[1,2,1,1],[2,4,2,1],[0,3,3,1],[1,0,1,1]],[[1,3,1,1],[2,3,2,1],[0,3,3,1],[1,0,1,1]],[[2,2,1,1],[2,3,2,1],[0,3,3,1],[1,0,1,1]],[[1,2,1,1],[2,4,2,1],[0,3,3,1],[0,2,1,0]],[[1,3,1,1],[2,3,2,1],[0,3,3,1],[0,2,1,0]],[[2,2,1,1],[2,3,2,1],[0,3,3,1],[0,2,1,0]],[[1,2,1,1],[2,4,2,1],[0,3,3,1],[0,2,0,1]],[[1,3,1,1],[2,3,2,1],[0,3,3,1],[0,2,0,1]],[[2,2,1,1],[2,3,2,1],[0,3,3,1],[0,2,0,1]],[[1,2,1,1],[2,4,2,1],[0,3,3,1],[0,1,2,0]],[[1,3,1,1],[2,3,2,1],[0,3,3,1],[0,1,2,0]],[[2,2,1,1],[2,3,2,1],[0,3,3,1],[0,1,2,0]],[[1,2,1,1],[2,4,2,1],[0,3,3,1],[0,1,1,1]],[[1,3,1,1],[2,3,2,1],[0,3,3,1],[0,1,1,1]],[[2,2,1,1],[2,3,2,1],[0,3,3,1],[0,1,1,1]],[[1,2,1,1],[2,4,2,1],[0,3,3,0],[1,1,1,1]],[[1,3,1,1],[2,3,2,1],[0,3,3,0],[1,1,1,1]],[[2,2,1,1],[2,3,2,1],[0,3,3,0],[1,1,1,1]],[[1,2,1,1],[2,4,2,1],[0,3,3,0],[1,0,2,1]],[[1,3,1,1],[2,3,2,1],[0,3,3,0],[1,0,2,1]],[[2,2,1,1],[2,3,2,1],[0,3,3,0],[1,0,2,1]],[[1,2,1,1],[2,4,2,1],[0,3,3,0],[0,2,1,1]],[[1,3,1,1],[2,3,2,1],[0,3,3,0],[0,2,1,1]],[[2,2,1,1],[2,3,2,1],[0,3,3,0],[0,2,1,1]],[[1,2,1,1],[2,4,2,1],[0,3,3,0],[0,1,2,1]],[[1,3,1,1],[2,3,2,1],[0,3,3,0],[0,1,2,1]],[[2,2,1,1],[2,3,2,1],[0,3,3,0],[0,1,2,1]],[[1,2,1,1],[2,4,2,1],[0,3,2,1],[0,2,2,0]],[[1,3,1,1],[2,3,2,1],[0,3,2,1],[0,2,2,0]],[[2,2,1,1],[2,3,2,1],[0,3,2,1],[0,2,2,0]],[[1,2,1,1],[2,4,2,1],[0,3,2,0],[0,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,0,1,1],[3,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,0,1,1],[2,4,3,2],[2,2,3,0],[0,1,2,0]],[[1,0,1,1],[2,3,4,2],[2,2,3,0],[0,1,2,0]],[[1,0,1,1],[2,3,3,2],[3,2,3,0],[0,1,2,0]],[[2,0,1,1],[2,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,2,3,0],[0,2,1,0]],[[1,0,1,1],[2,3,4,2],[2,2,3,0],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,2,3,0],[0,2,1,0]],[[1,3,1,1],[2,3,2,1],[0,3,2,0],[0,2,2,1]],[[2,2,1,1],[2,3,2,1],[0,3,2,0],[0,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,0,1,1],[3,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,0,1,1],[2,4,3,2],[2,2,3,0],[1,0,2,0]],[[1,0,1,1],[2,3,4,2],[2,2,3,0],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[3,2,3,0],[1,0,2,0]],[[1,0,1,1],[2,3,3,2],[2,2,3,0],[2,0,2,0]],[[2,0,1,1],[2,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[2,2,3,0],[1,1,1,0]],[[1,0,1,1],[2,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[3,2,3,0],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[2,2,3,0],[2,1,1,0]],[[2,0,1,1],[2,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,0,1,1],[3,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,0,1,1],[2,4,3,2],[2,2,3,0],[1,2,0,0]],[[1,0,1,1],[2,3,4,2],[2,2,3,0],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[3,2,3,0],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[2,2,3,0],[2,2,0,0]],[[1,2,1,1],[2,3,2,0],[2,3,0,0],[1,3,2,1]],[[1,2,1,1],[2,3,2,0],[2,3,0,0],[2,2,2,1]],[[1,2,1,1],[2,3,2,0],[3,3,0,0],[1,2,2,1]],[[1,2,1,1],[3,3,2,0],[2,3,0,0],[1,2,2,1]],[[2,2,1,1],[2,3,2,0],[2,3,0,0],[1,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,0,1,2],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,0,1,1],[3,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,0,1,1],[2,4,3,2],[2,2,3,1],[0,2,0,0]],[[1,0,1,1],[2,3,4,2],[2,2,3,1],[0,2,0,0]],[[1,0,1,1],[2,3,3,3],[2,2,3,1],[0,2,0,0]],[[1,0,1,1],[2,3,3,2],[3,2,3,1],[0,2,0,0]],[[2,0,1,1],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,0,1,2],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,0,1,1],[3,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,0,1,1],[2,4,3,2],[2,2,3,1],[1,1,0,0]],[[1,0,1,1],[2,3,4,2],[2,2,3,1],[1,1,0,0]],[[1,0,1,1],[2,3,3,3],[2,2,3,1],[1,1,0,0]],[[1,0,1,1],[2,3,3,2],[3,2,3,1],[1,1,0,0]],[[1,0,1,1],[2,3,3,2],[2,2,3,1],[2,1,0,0]],[[2,0,1,1],[2,3,3,2],[2,3,0,0],[0,2,2,1]],[[1,0,1,1],[3,3,3,2],[2,3,0,0],[0,2,2,1]],[[1,0,1,1],[2,4,3,2],[2,3,0,0],[0,2,2,1]],[[1,0,1,1],[2,3,3,2],[3,3,0,0],[0,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,0,1,1],[3,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,0,1,1],[2,4,3,2],[2,3,0,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[3,3,0,0],[1,1,2,1]],[[1,0,1,1],[2,3,3,2],[2,3,0,0],[2,1,2,1]],[[2,0,1,1],[2,3,3,2],[2,3,0,0],[1,2,1,1]],[[1,0,1,1],[3,3,3,2],[2,3,0,0],[1,2,1,1]],[[1,0,1,1],[2,4,3,2],[2,3,0,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[3,3,0,0],[1,2,1,1]],[[1,0,1,1],[2,3,3,2],[2,3,0,0],[2,2,1,1]],[[2,0,1,1],[2,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,0,1,1],[3,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,0,1,1],[2,4,3,2],[2,3,0,1],[0,2,2,0]],[[1,0,1,1],[2,3,3,2],[3,3,0,1],[0,2,2,0]],[[2,0,1,1],[2,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,0,1,1],[3,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,0,1,1],[2,4,3,2],[2,3,0,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[3,3,0,1],[1,1,2,0]],[[1,0,1,1],[2,3,3,2],[2,3,0,1],[2,1,2,0]],[[2,0,1,1],[2,3,3,2],[2,3,0,1],[1,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,3,0,1],[1,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,3,0,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,3,0,1],[1,2,1,0]],[[1,0,1,1],[2,3,3,2],[2,3,0,1],[2,2,1,0]],[[2,0,1,1],[2,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,3,0,2],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,3,0,2],[0,2,0,1]],[[2,0,1,1],[2,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,3,0,2],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,3,0,2],[0,2,1,0]],[[2,0,1,1],[2,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,0,1,1],[3,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,0,1,1],[2,4,3,2],[2,3,0,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[3,3,0,2],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,3,0,2],[2,1,0,1]],[[2,0,1,1],[2,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[2,3,0,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[3,3,0,2],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[2,3,0,2],[2,1,1,0]],[[2,0,1,1],[2,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,0,1,1],[3,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,0,1,1],[2,4,3,2],[2,3,0,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[3,3,0,2],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[2,3,0,2],[2,2,0,0]],[[1,2,1,1],[2,4,2,0],[0,3,3,2],[1,1,1,0]],[[1,3,1,1],[2,3,2,0],[0,3,3,2],[1,1,1,0]],[[2,2,1,1],[2,3,2,0],[0,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,4,2,0],[0,3,3,2],[1,1,0,1]],[[1,3,1,1],[2,3,2,0],[0,3,3,2],[1,1,0,1]],[[2,2,1,1],[2,3,2,0],[0,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,4,2,0],[0,3,3,2],[1,0,2,0]],[[1,3,1,1],[2,3,2,0],[0,3,3,2],[1,0,2,0]],[[2,2,1,1],[2,3,2,0],[0,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,4,2,0],[0,3,3,2],[1,0,1,1]],[[1,3,1,1],[2,3,2,0],[0,3,3,2],[1,0,1,1]],[[2,2,1,1],[2,3,2,0],[0,3,3,2],[1,0,1,1]],[[1,2,1,1],[2,4,2,0],[0,3,3,2],[0,2,1,0]],[[1,3,1,1],[2,3,2,0],[0,3,3,2],[0,2,1,0]],[[2,2,1,1],[2,3,2,0],[0,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,4,2,0],[0,3,3,2],[0,2,0,1]],[[1,3,1,1],[2,3,2,0],[0,3,3,2],[0,2,0,1]],[[2,2,1,1],[2,3,2,0],[0,3,3,2],[0,2,0,1]],[[2,0,1,1],[2,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,0,1,1],[3,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,0,1,1],[2,4,3,2],[2,3,1,0],[0,2,1,1]],[[1,0,1,1],[2,3,3,2],[3,3,1,0],[0,2,1,1]],[[2,0,1,1],[2,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,0,1,1],[3,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,0,1,1],[2,4,3,2],[2,3,1,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[3,3,1,0],[1,1,1,1]],[[1,0,1,1],[2,3,3,2],[2,3,1,0],[2,1,1,1]],[[2,0,1,1],[2,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,3,1,0],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,3,1,0],[1,2,0,1]],[[1,0,1,1],[2,3,3,2],[2,3,1,0],[2,2,0,1]],[[1,2,1,1],[2,4,2,0],[0,3,3,2],[0,1,2,0]],[[1,3,1,1],[2,3,2,0],[0,3,3,2],[0,1,2,0]],[[2,2,1,1],[2,3,2,0],[0,3,3,2],[0,1,2,0]],[[1,2,1,1],[2,4,2,0],[0,3,3,2],[0,1,1,1]],[[1,3,1,1],[2,3,2,0],[0,3,3,2],[0,1,1,1]],[[2,2,1,1],[2,3,2,0],[0,3,3,2],[0,1,1,1]],[[2,0,1,1],[2,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,0,1,1],[3,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,0,1,1],[2,4,3,2],[2,3,1,1],[0,2,0,1]],[[1,0,1,1],[2,3,3,2],[3,3,1,1],[0,2,0,1]],[[2,0,1,1],[2,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,0,1,1],[3,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,0,1,1],[2,4,3,2],[2,3,1,1],[0,2,1,0]],[[1,0,1,1],[2,3,3,2],[3,3,1,1],[0,2,1,0]],[[1,2,1,1],[2,4,2,0],[0,3,3,1],[1,1,1,1]],[[2,0,1,1],[2,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,0,1,1],[3,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,0,1,1],[2,4,3,2],[2,3,1,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[3,3,1,1],[1,1,0,1]],[[1,0,1,1],[2,3,3,2],[2,3,1,1],[2,1,0,1]],[[2,0,1,1],[2,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,0,1,1],[3,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,0,1,1],[2,4,3,2],[2,3,1,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[3,3,1,1],[1,1,1,0]],[[1,0,1,1],[2,3,3,2],[2,3,1,1],[2,1,1,0]],[[1,3,1,1],[2,3,2,0],[0,3,3,1],[1,1,1,1]],[[2,2,1,1],[2,3,2,0],[0,3,3,1],[1,1,1,1]],[[1,2,1,1],[2,4,2,0],[0,3,3,1],[1,0,2,1]],[[1,3,1,1],[2,3,2,0],[0,3,3,1],[1,0,2,1]],[[2,2,1,1],[2,3,2,0],[0,3,3,1],[1,0,2,1]],[[1,2,1,1],[2,4,2,0],[0,3,3,1],[0,2,1,1]],[[2,0,1,1],[2,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,0,1,1],[3,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,0,1,1],[2,4,3,2],[2,3,1,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[3,3,1,1],[1,2,0,0]],[[1,0,1,1],[2,3,3,2],[2,3,1,1],[2,2,0,0]],[[1,3,1,1],[2,3,2,0],[0,3,3,1],[0,2,1,1]],[[2,2,1,1],[2,3,2,0],[0,3,3,1],[0,2,1,1]],[[1,2,1,1],[2,4,2,0],[0,3,3,1],[0,1,2,1]],[[1,3,1,1],[2,3,2,0],[0,3,3,1],[0,1,2,1]],[[2,2,1,1],[2,3,2,0],[0,3,3,1],[0,1,2,1]],[[1,2,1,1],[2,4,2,0],[0,3,3,0],[0,2,2,1]],[[1,3,1,1],[2,3,2,0],[0,3,3,0],[0,2,2,1]],[[2,2,1,1],[2,3,2,0],[0,3,3,0],[0,2,2,1]],[[1,2,1,1],[2,4,2,0],[0,3,2,2],[0,2,2,0]],[[1,3,1,1],[2,3,2,0],[0,3,2,2],[0,2,2,0]],[[2,2,1,1],[2,3,2,0],[0,3,2,2],[0,2,2,0]],[[1,2,1,1],[2,4,2,0],[0,3,2,1],[0,2,2,1]],[[1,3,1,1],[2,3,2,0],[0,3,2,1],[0,2,2,1]],[[2,2,1,1],[2,3,2,0],[0,3,2,1],[0,2,2,1]],[[1,2,1,1],[2,4,2,0],[0,3,1,2],[0,2,2,1]],[[1,3,1,1],[2,3,2,0],[0,3,1,2],[0,2,2,1]],[[2,2,1,1],[2,3,2,0],[0,3,1,2],[0,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,0,1,2],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,0,1,1],[3,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,0,1,1],[2,4,3,2],[2,3,1,2],[1,0,0,1]],[[1,0,1,1],[2,3,4,2],[2,3,1,2],[1,0,0,1]],[[1,0,1,1],[2,3,3,3],[2,3,1,2],[1,0,0,1]],[[1,0,1,1],[2,3,3,2],[3,3,1,2],[1,0,0,1]],[[1,0,1,1],[2,3,3,2],[2,3,1,3],[1,0,0,1]],[[2,0,1,1],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,0,1,2],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,0,1,1],[3,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,0,1,1],[2,4,3,2],[2,3,1,2],[1,0,1,0]],[[1,0,1,1],[2,3,4,2],[2,3,1,2],[1,0,1,0]],[[1,0,1,1],[2,3,3,3],[2,3,1,2],[1,0,1,0]],[[1,0,1,1],[2,3,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,1,1],[3,3,1,2],[2,0,0,2],[1,2,2,1]],[[1,3,1,1],[2,3,1,2],[2,0,0,2],[1,2,2,1]],[[2,2,1,1],[2,3,1,2],[2,0,0,2],[1,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,0,1,1],[3,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,0,1,1],[2,4,3,2],[2,3,2,0],[1,0,1,1]],[[1,0,1,1],[2,3,4,2],[2,3,2,0],[1,0,1,1]],[[1,0,1,1],[2,3,3,2],[3,3,2,0],[1,0,1,1]],[[1,2,1,1],[2,4,1,2],[0,3,0,2],[0,2,2,1]],[[1,3,1,1],[2,3,1,2],[0,3,0,2],[0,2,2,1]],[[2,2,1,1],[2,3,1,2],[0,3,0,2],[0,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,0,1,2],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,0,1,1],[3,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,0,1,1],[2,4,3,2],[2,3,2,1],[1,0,0,1]],[[1,0,1,1],[2,3,4,2],[2,3,2,1],[1,0,0,1]],[[1,0,1,1],[2,3,3,3],[2,3,2,1],[1,0,0,1]],[[1,0,1,1],[2,3,3,2],[3,3,2,1],[1,0,0,1]],[[2,0,1,1],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,0,1,2],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,0,1,1],[3,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,0,1,1],[2,4,3,2],[2,3,2,1],[1,0,1,0]],[[1,0,1,1],[2,3,4,2],[2,3,2,1],[1,0,1,0]],[[1,0,1,1],[2,3,3,3],[2,3,2,1],[1,0,1,0]],[[1,0,1,1],[2,3,3,2],[3,3,2,1],[1,0,1,0]],[[1,2,1,1],[2,3,1,1],[2,3,0,1],[1,3,2,0]],[[1,2,1,1],[2,3,1,1],[2,3,0,1],[2,2,2,0]],[[1,2,1,1],[2,3,1,1],[3,3,0,1],[1,2,2,0]],[[1,2,1,1],[3,3,1,1],[2,3,0,1],[1,2,2,0]],[[2,2,1,1],[2,3,1,1],[2,3,0,1],[1,2,2,0]],[[1,2,1,1],[2,3,1,1],[2,3,0,0],[1,3,2,1]],[[1,2,1,1],[2,3,1,1],[2,3,0,0],[2,2,2,1]],[[1,2,1,1],[2,3,1,1],[3,3,0,0],[1,2,2,1]],[[1,2,1,1],[3,3,1,1],[2,3,0,0],[1,2,2,1]],[[2,2,1,1],[2,3,1,1],[2,3,0,0],[1,2,2,1]],[[1,2,1,1],[2,3,1,0],[2,3,0,2],[1,3,2,0]],[[1,2,1,1],[2,3,1,0],[2,3,0,2],[2,2,2,0]],[[1,2,1,1],[2,3,1,0],[3,3,0,2],[1,2,2,0]],[[1,2,1,1],[3,3,1,0],[2,3,0,2],[1,2,2,0]],[[2,2,1,1],[2,3,1,0],[2,3,0,2],[1,2,2,0]],[[1,2,1,1],[2,3,1,0],[2,3,0,1],[1,3,2,1]],[[1,2,1,1],[2,3,1,0],[2,3,0,1],[2,2,2,1]],[[1,2,1,1],[2,3,1,0],[3,3,0,1],[1,2,2,1]],[[1,2,1,1],[3,3,1,0],[2,3,0,1],[1,2,2,1]],[[2,2,1,1],[2,3,1,0],[2,3,0,1],[1,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,0,1,1],[3,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,0,1,1],[2,4,3,2],[2,3,3,0],[1,0,1,0]],[[1,0,1,1],[2,3,4,2],[2,3,3,0],[1,0,1,0]],[[1,0,1,1],[2,3,3,2],[3,3,3,0],[1,0,1,0]],[[1,2,1,1],[2,3,0,2],[2,3,0,1],[1,3,2,0]],[[1,2,1,1],[2,3,0,2],[2,3,0,1],[2,2,2,0]],[[1,2,1,1],[2,3,0,2],[3,3,0,1],[1,2,2,0]],[[1,2,1,1],[3,3,0,2],[2,3,0,1],[1,2,2,0]],[[2,2,1,1],[2,3,0,2],[2,3,0,1],[1,2,2,0]],[[1,2,1,1],[2,3,0,2],[2,3,0,0],[1,3,2,1]],[[1,2,1,1],[2,3,0,2],[2,3,0,0],[2,2,2,1]],[[1,2,1,1],[2,3,0,2],[3,3,0,0],[1,2,2,1]],[[1,2,1,1],[3,3,0,2],[2,3,0,0],[1,2,2,1]],[[2,2,1,1],[2,3,0,2],[2,3,0,0],[1,2,2,1]],[[2,0,1,1],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,0,1,2],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,0,1,1],[3,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,0,1,1],[2,4,3,2],[2,3,3,1],[1,0,0,0]],[[1,0,1,1],[2,3,4,2],[2,3,3,1],[1,0,0,0]],[[1,0,1,1],[2,3,3,3],[2,3,3,1],[1,0,0,0]],[[1,0,1,1],[2,3,3,2],[3,3,3,1],[1,0,0,0]],[[1,2,1,1],[2,3,0,2],[2,2,0,2],[2,1,2,1]],[[1,2,1,1],[2,3,0,2],[3,2,0,2],[1,1,2,1]],[[1,2,1,1],[3,3,0,2],[2,2,0,2],[1,1,2,1]],[[1,3,1,1],[2,3,0,2],[2,2,0,2],[1,1,2,1]],[[2,2,1,1],[2,3,0,2],[2,2,0,2],[1,1,2,1]],[[1,2,1,1],[2,3,0,2],[3,2,0,2],[0,2,2,1]],[[1,2,1,1],[3,3,0,2],[2,2,0,2],[0,2,2,1]],[[1,3,1,1],[2,3,0,2],[2,2,0,2],[0,2,2,1]],[[2,2,1,1],[2,3,0,2],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[2,3,0,2],[2,1,0,2],[1,3,2,1]],[[1,2,1,1],[2,3,0,2],[2,1,0,2],[2,2,2,1]],[[1,2,1,1],[2,3,0,2],[3,1,0,2],[1,2,2,1]],[[1,2,1,1],[3,3,0,2],[2,1,0,2],[1,2,2,1]],[[1,3,1,1],[2,3,0,2],[2,1,0,2],[1,2,2,1]],[[2,2,1,1],[2,3,0,2],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[3,3,0,2],[1,3,0,2],[1,1,2,1]],[[1,3,1,1],[2,3,0,2],[1,3,0,2],[1,1,2,1]],[[2,2,1,1],[2,3,0,2],[1,3,0,2],[1,1,2,1]],[[1,2,1,1],[3,3,0,2],[1,3,0,2],[0,2,2,1]],[[1,3,1,1],[2,3,0,2],[1,3,0,2],[0,2,2,1]],[[2,2,1,1],[2,3,0,2],[1,3,0,2],[0,2,2,1]],[[1,2,1,1],[2,4,0,2],[0,3,3,2],[1,1,1,0]],[[1,3,1,1],[2,3,0,2],[0,3,3,2],[1,1,1,0]],[[2,2,1,1],[2,3,0,2],[0,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,4,0,2],[0,3,3,2],[1,1,0,1]],[[1,3,1,1],[2,3,0,2],[0,3,3,2],[1,1,0,1]],[[2,2,1,1],[2,3,0,2],[0,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,4,0,2],[0,3,3,2],[1,0,2,0]],[[1,3,1,1],[2,3,0,2],[0,3,3,2],[1,0,2,0]],[[2,2,1,1],[2,3,0,2],[0,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,4,0,2],[0,3,3,2],[1,0,1,1]],[[1,3,1,1],[2,3,0,2],[0,3,3,2],[1,0,1,1]],[[2,2,1,1],[2,3,0,2],[0,3,3,2],[1,0,1,1]],[[1,2,1,1],[2,4,0,2],[0,3,3,2],[0,2,1,0]],[[1,3,1,1],[2,3,0,2],[0,3,3,2],[0,2,1,0]],[[2,2,1,1],[2,3,0,2],[0,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,4,0,2],[0,3,3,2],[0,2,0,1]],[[1,3,1,1],[2,3,0,2],[0,3,3,2],[0,2,0,1]],[[2,2,1,1],[2,3,0,2],[0,3,3,2],[0,2,0,1]],[[1,2,1,1],[2,4,0,2],[0,3,3,2],[0,1,2,0]],[[1,3,1,1],[2,3,0,2],[0,3,3,2],[0,1,2,0]],[[2,2,1,1],[2,3,0,2],[0,3,3,2],[0,1,2,0]],[[1,2,1,1],[2,4,0,2],[0,3,3,2],[0,1,1,1]],[[1,3,1,1],[2,3,0,2],[0,3,3,2],[0,1,1,1]],[[2,2,1,1],[2,3,0,2],[0,3,3,2],[0,1,1,1]],[[1,2,1,1],[2,4,0,2],[0,3,3,1],[1,0,2,1]],[[1,3,1,1],[2,3,0,2],[0,3,3,1],[1,0,2,1]],[[2,2,1,1],[2,3,0,2],[0,3,3,1],[1,0,2,1]],[[1,2,1,1],[2,4,0,2],[0,3,3,1],[0,2,1,1]],[[1,3,1,1],[2,3,0,2],[0,3,3,1],[0,2,1,1]],[[2,2,1,1],[2,3,0,2],[0,3,3,1],[0,2,1,1]],[[1,2,1,1],[2,4,0,2],[0,3,3,1],[0,1,2,1]],[[1,3,1,1],[2,3,0,2],[0,3,3,1],[0,1,2,1]],[[2,2,1,1],[2,3,0,2],[0,3,3,1],[0,1,2,1]],[[1,2,1,1],[2,4,0,2],[0,3,2,2],[0,2,2,0]],[[1,3,1,1],[2,3,0,2],[0,3,2,2],[0,2,2,0]],[[2,2,1,1],[2,3,0,2],[0,3,2,2],[0,2,2,0]],[[1,2,1,1],[2,4,0,2],[0,3,2,1],[0,2,2,1]],[[1,3,1,1],[2,3,0,2],[0,3,2,1],[0,2,2,1]],[[2,2,1,1],[2,3,0,2],[0,3,2,1],[0,2,2,1]],[[1,0,2,0],[0,0,2,2],[2,3,3,3],[1,2,2,1]],[[1,0,2,0],[0,0,2,2],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[0,0,2,2],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[0,0,2,2],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[0,0,2,2],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[0,0,3,2],[2,2,3,3],[1,2,2,1]],[[1,0,2,0],[0,0,3,2],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[0,0,3,2],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[0,0,3,3],[2,3,2,2],[1,2,2,1]],[[1,0,2,0],[0,0,3,2],[2,3,2,3],[1,2,2,1]],[[1,0,2,0],[0,0,3,2],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[0,0,3,2],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[0,0,3,2],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[0,0,3,2],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[0,0,3,2],[2,3,4,1],[1,2,2,1]],[[1,0,2,0],[0,0,3,2],[2,3,3,1],[2,2,2,1]],[[1,0,2,0],[0,0,3,2],[2,3,3,1],[1,3,2,1]],[[1,0,2,0],[0,0,3,2],[2,3,3,1],[1,2,3,1]],[[1,0,2,0],[0,0,3,2],[2,3,3,1],[1,2,2,2]],[[1,0,2,0],[0,0,3,3],[2,3,3,2],[1,2,1,1]],[[1,0,2,0],[0,0,3,2],[2,3,4,2],[1,2,1,1]],[[1,0,2,0],[0,0,3,2],[2,3,3,3],[1,2,1,1]],[[1,0,2,0],[0,0,3,2],[2,3,3,2],[1,2,1,2]],[[1,0,2,0],[0,0,3,3],[2,3,3,2],[1,2,2,0]],[[1,0,2,0],[0,0,3,2],[2,3,4,2],[1,2,2,0]],[[1,0,2,0],[0,0,3,2],[2,3,3,3],[1,2,2,0]],[[1,0,2,0],[0,0,3,2],[2,3,3,2],[2,2,2,0]],[[1,0,2,0],[0,0,3,2],[2,3,3,2],[1,3,2,0]],[[1,0,2,0],[0,0,3,2],[2,3,3,2],[1,2,3,0]],[[1,0,2,0],[0,1,1,2],[2,3,3,3],[1,2,2,1]],[[1,0,2,0],[0,1,1,2],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[0,1,1,2],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[0,1,1,2],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[0,1,1,2],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[0,1,2,3],[2,3,2,2],[1,2,2,1]],[[1,0,2,0],[0,1,2,2],[2,3,2,3],[1,2,2,1]],[[1,0,2,0],[0,1,2,2],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[0,1,2,2],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[0,1,2,2],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[0,1,2,2],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[0,1,2,2],[2,3,4,1],[1,2,2,1]],[[1,0,2,0],[0,1,2,2],[2,3,3,1],[2,2,2,1]],[[1,0,2,0],[0,1,2,2],[2,3,3,1],[1,3,2,1]],[[1,0,2,0],[0,1,2,2],[2,3,3,1],[1,2,3,1]],[[1,0,2,0],[0,1,2,2],[2,3,3,1],[1,2,2,2]],[[1,0,2,0],[0,1,2,3],[2,3,3,2],[1,2,1,1]],[[1,0,2,0],[0,1,2,2],[2,3,4,2],[1,2,1,1]],[[1,0,2,0],[0,1,2,2],[2,3,3,3],[1,2,1,1]],[[1,0,2,0],[0,1,2,2],[2,3,3,2],[1,2,1,2]],[[1,0,2,0],[0,1,2,3],[2,3,3,2],[1,2,2,0]],[[1,0,2,0],[0,1,2,2],[2,3,4,2],[1,2,2,0]],[[1,0,2,0],[0,1,2,2],[2,3,3,3],[1,2,2,0]],[[1,0,2,0],[0,1,2,2],[2,3,3,2],[2,2,2,0]],[[1,0,2,0],[0,1,2,2],[2,3,3,2],[1,3,2,0]],[[1,0,2,0],[0,1,2,2],[2,3,3,2],[1,2,3,0]],[[1,0,2,0],[0,1,3,0],[2,3,4,2],[1,2,2,1]],[[1,0,2,0],[0,1,3,0],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[0,1,3,0],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[0,1,3,0],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[0,1,3,0],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[0,1,3,1],[2,3,2,3],[1,2,2,1]],[[1,0,2,0],[0,1,3,1],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[0,1,3,1],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[0,1,3,1],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[0,1,3,1],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[0,1,3,1],[2,3,4,1],[1,2,2,1]],[[1,0,2,0],[0,1,3,1],[2,3,3,1],[2,2,2,1]],[[1,0,2,0],[0,1,3,1],[2,3,3,1],[1,3,2,1]],[[1,0,2,0],[0,1,3,1],[2,3,3,1],[1,2,3,1]],[[1,0,2,0],[0,1,3,1],[2,3,3,1],[1,2,2,2]],[[1,0,2,0],[0,1,3,1],[2,3,4,2],[1,2,1,1]],[[1,0,2,0],[0,1,3,1],[2,3,3,3],[1,2,1,1]],[[1,0,2,0],[0,1,3,1],[2,3,3,2],[1,2,1,2]],[[1,0,2,0],[0,1,3,1],[2,3,4,2],[1,2,2,0]],[[1,0,2,0],[0,1,3,1],[2,3,3,3],[1,2,2,0]],[[1,0,2,0],[0,1,3,1],[2,3,3,2],[2,2,2,0]],[[1,0,2,0],[0,1,3,1],[2,3,3,2],[1,3,2,0]],[[1,0,2,0],[0,1,3,1],[2,3,3,2],[1,2,3,0]],[[1,0,2,0],[0,1,3,2],[2,1,3,3],[1,2,2,1]],[[1,0,2,0],[0,1,3,2],[2,1,3,2],[1,2,3,1]],[[1,0,2,0],[0,1,3,2],[2,1,3,2],[1,2,2,2]],[[1,0,2,0],[0,1,3,3],[2,2,2,2],[1,2,2,1]],[[1,0,2,0],[0,1,3,2],[2,2,2,3],[1,2,2,1]],[[1,0,2,0],[0,1,3,2],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[0,1,3,2],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[0,1,3,2],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[0,1,3,2],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[0,1,3,2],[2,2,4,1],[1,2,2,1]],[[1,0,2,0],[0,1,3,2],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[0,1,3,2],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[0,1,3,2],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[0,1,3,2],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[0,1,3,3],[2,2,3,2],[1,2,1,1]],[[1,0,2,0],[0,1,3,2],[2,2,4,2],[1,2,1,1]],[[1,0,2,0],[0,1,3,2],[2,2,3,3],[1,2,1,1]],[[1,0,2,0],[0,1,3,2],[2,2,3,2],[1,2,1,2]],[[1,0,2,0],[0,1,3,3],[2,2,3,2],[1,2,2,0]],[[1,0,2,0],[0,1,3,2],[2,2,4,2],[1,2,2,0]],[[1,0,2,0],[0,1,3,2],[2,2,3,3],[1,2,2,0]],[[1,0,2,0],[0,1,3,2],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[0,1,3,2],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[0,1,3,2],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[0,1,3,3],[2,3,2,2],[1,1,2,1]],[[1,0,2,0],[0,1,3,2],[2,3,2,3],[1,1,2,1]],[[1,0,2,0],[0,1,3,2],[2,3,2,2],[1,1,3,1]],[[1,0,2,0],[0,1,3,2],[2,3,2,2],[1,1,2,2]],[[1,0,2,0],[0,1,3,2],[2,3,4,0],[1,2,2,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,0],[2,2,2,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,0],[1,3,2,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,0],[1,2,3,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,0],[1,2,2,2]],[[1,0,2,0],[0,1,3,2],[2,3,4,1],[1,1,2,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,1],[1,1,3,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,1],[1,1,2,2]],[[1,0,2,0],[0,1,3,2],[2,3,4,1],[1,2,2,0]],[[1,0,2,0],[0,1,3,2],[2,3,3,1],[2,2,2,0]],[[1,0,2,0],[0,1,3,2],[2,3,3,1],[1,3,2,0]],[[1,0,2,0],[0,1,3,2],[2,3,3,1],[1,2,3,0]],[[1,0,2,0],[0,1,3,2],[2,3,4,2],[1,0,2,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,3],[1,0,2,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,2],[1,0,2,2]],[[1,0,2,0],[0,1,3,3],[2,3,3,2],[1,1,1,1]],[[1,0,2,0],[0,1,3,2],[2,3,4,2],[1,1,1,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,3],[1,1,1,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,2],[1,1,1,2]],[[1,0,2,0],[0,1,3,3],[2,3,3,2],[1,1,2,0]],[[1,0,2,0],[0,1,3,2],[2,3,4,2],[1,1,2,0]],[[1,0,2,0],[0,1,3,2],[2,3,3,3],[1,1,2,0]],[[1,0,2,0],[0,1,3,2],[2,3,3,2],[1,1,3,0]],[[1,0,2,0],[0,1,3,3],[2,3,3,2],[1,2,0,1]],[[1,0,2,0],[0,1,3,2],[2,3,4,2],[1,2,0,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,3],[1,2,0,1]],[[1,0,2,0],[0,1,3,2],[2,3,3,2],[1,2,0,2]],[[1,0,2,0],[0,1,3,3],[2,3,3,2],[1,2,1,0]],[[1,0,2,0],[0,1,3,2],[2,3,4,2],[1,2,1,0]],[[1,0,2,0],[0,1,3,2],[2,3,3,3],[1,2,1,0]],[[1,2,1,1],[2,4,0,2],[0,3,1,2],[0,2,2,1]],[[1,3,1,1],[2,3,0,2],[0,3,1,2],[0,2,2,1]],[[2,2,1,1],[2,3,0,2],[0,3,1,2],[0,2,2,1]],[[1,2,1,1],[3,3,0,2],[0,3,0,2],[1,2,2,1]],[[1,3,1,1],[2,3,0,2],[0,3,0,2],[1,2,2,1]],[[2,2,1,1],[2,3,0,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[0,2,0,2],[2,3,3,3],[1,2,2,1]],[[1,0,2,0],[0,2,0,2],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[0,2,0,2],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[0,2,0,2],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[0,2,0,2],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[0,2,1,2],[2,2,3,3],[1,2,2,1]],[[1,0,2,0],[0,2,1,2],[2,2,3,2],[2,2,2,1]],[[1,0,2,0],[0,2,1,2],[2,2,3,2],[1,3,2,1]],[[1,0,2,0],[0,2,1,2],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[0,2,1,2],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[0,2,1,2],[2,3,3,3],[1,1,2,1]],[[1,0,2,0],[0,2,1,2],[2,3,3,2],[1,1,3,1]],[[1,0,2,0],[0,2,1,2],[2,3,3,2],[1,1,2,2]],[[1,0,2,0],[0,2,2,2],[2,1,3,3],[1,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,1,3,2],[1,2,3,1]],[[1,0,2,0],[0,2,2,2],[2,1,3,2],[1,2,2,2]],[[1,0,2,0],[0,2,2,3],[2,2,2,2],[1,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,2,2,3],[1,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[0,2,2,2],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[0,2,2,2],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[0,2,2,2],[2,2,4,1],[1,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[0,2,2,2],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[0,2,2,2],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[0,2,2,3],[2,2,3,2],[1,2,1,1]],[[1,0,2,0],[0,2,2,2],[2,2,4,2],[1,2,1,1]],[[1,0,2,0],[0,2,2,2],[2,2,3,3],[1,2,1,1]],[[1,0,2,0],[0,2,2,2],[2,2,3,2],[1,2,1,2]],[[1,0,2,0],[0,2,2,3],[2,2,3,2],[1,2,2,0]],[[1,0,2,0],[0,2,2,2],[2,2,4,2],[1,2,2,0]],[[1,0,2,0],[0,2,2,2],[2,2,3,3],[1,2,2,0]],[[1,0,2,0],[0,2,2,2],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[0,2,2,2],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[0,2,2,2],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[0,2,2,3],[2,3,1,2],[1,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,4,1,2],[1,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,1,3],[1,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,1,2],[2,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,1,2],[1,3,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,1,2],[1,2,3,1]],[[1,0,2,0],[0,2,2,2],[2,3,1,2],[1,2,2,2]],[[1,0,2,0],[0,2,2,2],[2,4,2,1],[1,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,2,1],[2,2,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,2,1],[1,3,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,2,1],[1,2,3,1]],[[1,0,2,0],[0,2,2,2],[2,3,2,1],[1,2,2,2]],[[1,0,2,0],[0,2,2,3],[2,3,2,2],[1,1,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,2,3],[1,1,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,2,2],[1,1,3,1]],[[1,0,2,0],[0,2,2,2],[2,3,2,2],[1,1,2,2]],[[1,0,2,0],[0,2,2,2],[2,4,2,2],[1,2,2,0]],[[1,0,2,0],[0,2,2,2],[2,3,2,2],[2,2,2,0]],[[1,0,2,0],[0,2,2,2],[2,3,2,2],[1,3,2,0]],[[1,0,2,0],[0,2,2,2],[2,3,2,2],[1,2,3,0]],[[1,0,2,0],[0,2,2,2],[2,4,3,1],[1,1,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,4,1],[1,1,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,1],[1,1,3,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,1],[1,1,2,2]],[[1,0,2,0],[0,2,2,2],[2,4,3,1],[1,2,1,1]],[[1,0,2,0],[0,2,2,2],[2,3,4,1],[1,2,1,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,1],[2,2,1,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,1],[1,3,1,1]],[[1,0,2,0],[0,2,2,2],[2,3,4,2],[1,0,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,3],[1,0,2,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,2],[1,0,2,2]],[[1,0,2,0],[0,2,2,3],[2,3,3,2],[1,1,1,1]],[[1,0,2,0],[0,2,2,2],[2,4,3,2],[1,1,1,1]],[[1,0,2,0],[0,2,2,2],[2,3,4,2],[1,1,1,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,3],[1,1,1,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,2],[1,1,1,2]],[[1,0,2,0],[0,2,2,3],[2,3,3,2],[1,1,2,0]],[[1,0,2,0],[0,2,2,2],[2,4,3,2],[1,1,2,0]],[[1,0,2,0],[0,2,2,2],[2,3,4,2],[1,1,2,0]],[[1,0,2,0],[0,2,2,2],[2,3,3,3],[1,1,2,0]],[[1,0,2,0],[0,2,2,2],[2,3,3,2],[1,1,3,0]],[[1,0,2,0],[0,2,2,3],[2,3,3,2],[1,2,0,1]],[[1,0,2,0],[0,2,2,2],[2,4,3,2],[1,2,0,1]],[[1,0,2,0],[0,2,2,2],[2,3,4,2],[1,2,0,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,3],[1,2,0,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,2],[2,2,0,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,2],[1,3,0,1]],[[1,0,2,0],[0,2,2,2],[2,3,3,2],[1,2,0,2]],[[1,0,2,0],[0,2,2,3],[2,3,3,2],[1,2,1,0]],[[1,0,2,0],[0,2,2,2],[2,4,3,2],[1,2,1,0]],[[1,0,2,0],[0,2,2,2],[2,3,4,2],[1,2,1,0]],[[1,0,2,0],[0,2,2,2],[2,3,3,3],[1,2,1,0]],[[1,0,2,0],[0,2,2,2],[2,3,3,2],[2,2,1,0]],[[1,0,2,0],[0,2,2,2],[2,3,3,2],[1,3,1,0]],[[1,0,2,0],[0,2,3,0],[2,2,4,2],[1,2,2,1]],[[1,0,2,0],[0,2,3,0],[2,2,3,2],[2,2,2,1]],[[1,0,2,0],[0,2,3,0],[2,2,3,2],[1,3,2,1]],[[1,0,2,0],[0,2,3,0],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[0,2,3,0],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[0,2,3,0],[2,4,2,2],[1,2,2,1]],[[1,0,2,0],[0,2,3,0],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[0,2,3,0],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[0,2,3,0],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[0,2,3,0],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[0,2,3,0],[2,4,3,2],[1,1,2,1]],[[1,0,2,0],[0,2,3,0],[2,3,4,2],[1,1,2,1]],[[1,0,2,0],[0,2,3,0],[2,3,3,2],[1,1,3,1]],[[1,0,2,0],[0,2,3,0],[2,3,3,2],[1,1,2,2]],[[1,0,2,0],[0,2,3,0],[2,4,3,2],[1,2,1,1]],[[1,0,2,0],[0,2,3,0],[2,3,4,2],[1,2,1,1]],[[1,0,2,0],[0,2,3,0],[2,3,3,2],[2,2,1,1]],[[1,0,2,0],[0,2,3,0],[2,3,3,2],[1,3,1,1]],[[1,0,2,0],[0,2,3,1],[2,1,3,3],[1,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,1,3,2],[1,2,3,1]],[[1,0,2,0],[0,2,3,1],[2,1,3,2],[1,2,2,2]],[[1,0,2,0],[0,2,3,1],[2,2,2,3],[1,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[0,2,3,1],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[0,2,3,1],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[0,2,4,1],[2,2,3,1],[1,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,2,4,1],[1,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[0,2,3,1],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[0,2,3,1],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[0,2,4,1],[2,2,3,2],[1,2,1,1]],[[1,0,2,0],[0,2,3,1],[2,2,4,2],[1,2,1,1]],[[1,0,2,0],[0,2,3,1],[2,2,3,3],[1,2,1,1]],[[1,0,2,0],[0,2,3,1],[2,2,3,2],[1,2,1,2]],[[1,0,2,0],[0,2,4,1],[2,2,3,2],[1,2,2,0]],[[1,0,2,0],[0,2,3,1],[2,2,4,2],[1,2,2,0]],[[1,0,2,0],[0,2,3,1],[2,2,3,3],[1,2,2,0]],[[1,0,2,0],[0,2,3,1],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[0,2,3,1],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[0,2,3,1],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[0,2,3,1],[2,4,1,2],[1,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,1,3],[1,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,1,2],[2,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,1,2],[1,3,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,1,2],[1,2,3,1]],[[1,0,2,0],[0,2,3,1],[2,3,1,2],[1,2,2,2]],[[1,0,2,0],[0,2,3,1],[2,4,2,1],[1,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,2,1],[2,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,2,1],[1,3,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,2,1],[1,2,3,1]],[[1,0,2,0],[0,2,3,1],[2,3,2,1],[1,2,2,2]],[[1,0,2,0],[0,2,3,1],[2,3,2,3],[1,1,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,2,2],[1,1,3,1]],[[1,0,2,0],[0,2,3,1],[2,3,2,2],[1,1,2,2]],[[1,0,2,0],[0,2,3,1],[2,4,2,2],[1,2,2,0]],[[1,0,2,0],[0,2,3,1],[2,3,2,2],[2,2,2,0]],[[1,0,2,0],[0,2,3,1],[2,3,2,2],[1,3,2,0]],[[1,0,2,0],[0,2,3,1],[2,3,2,2],[1,2,3,0]],[[1,0,2,0],[0,2,3,1],[2,4,3,0],[1,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,0],[2,2,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,0],[1,3,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,0],[1,2,3,1]],[[1,0,2,0],[0,2,4,1],[2,3,3,1],[1,1,2,1]],[[1,0,2,0],[0,2,3,1],[2,4,3,1],[1,1,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,4,1],[1,1,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,1],[1,1,3,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,1],[1,1,2,2]],[[1,0,2,0],[0,2,4,1],[2,3,3,1],[1,2,1,1]],[[1,0,2,0],[0,2,3,1],[2,4,3,1],[1,2,1,1]],[[1,0,2,0],[0,2,3,1],[2,3,4,1],[1,2,1,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,1],[2,2,1,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,1],[1,3,1,1]],[[1,0,2,0],[0,2,3,1],[2,3,4,2],[1,0,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,3],[1,0,2,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,2],[1,0,2,2]],[[1,0,2,0],[0,2,4,1],[2,3,3,2],[1,1,1,1]],[[1,0,2,0],[0,2,3,1],[2,4,3,2],[1,1,1,1]],[[1,0,2,0],[0,2,3,1],[2,3,4,2],[1,1,1,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,3],[1,1,1,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,2],[1,1,1,2]],[[1,0,2,0],[0,2,4,1],[2,3,3,2],[1,1,2,0]],[[1,0,2,0],[0,2,3,1],[2,4,3,2],[1,1,2,0]],[[1,0,2,0],[0,2,3,1],[2,3,4,2],[1,1,2,0]],[[1,0,2,0],[0,2,3,1],[2,3,3,3],[1,1,2,0]],[[1,0,2,0],[0,2,3,1],[2,3,3,2],[1,1,3,0]],[[1,0,2,0],[0,2,4,1],[2,3,3,2],[1,2,0,1]],[[1,0,2,0],[0,2,3,1],[2,4,3,2],[1,2,0,1]],[[1,0,2,0],[0,2,3,1],[2,3,4,2],[1,2,0,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,3],[1,2,0,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,2],[2,2,0,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,2],[1,3,0,1]],[[1,0,2,0],[0,2,3,1],[2,3,3,2],[1,2,0,2]],[[1,0,2,0],[0,2,4,1],[2,3,3,2],[1,2,1,0]],[[1,0,2,0],[0,2,3,1],[2,4,3,2],[1,2,1,0]],[[1,0,2,0],[0,2,3,1],[2,3,4,2],[1,2,1,0]],[[1,0,2,0],[0,2,3,1],[2,3,3,3],[1,2,1,0]],[[1,0,2,0],[0,2,3,1],[2,3,3,2],[2,2,1,0]],[[1,0,2,0],[0,2,3,1],[2,3,3,2],[1,3,1,0]],[[1,0,2,0],[0,2,4,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[0,2,3,3],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,2,1,3],[1,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,2,1,2],[2,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,2,1,2],[1,3,2,1]],[[1,0,2,0],[0,2,3,2],[2,2,1,2],[1,2,3,1]],[[1,0,2,0],[0,2,3,2],[2,2,1,2],[1,2,2,2]],[[1,0,2,0],[0,2,4,2],[2,2,2,2],[1,2,1,1]],[[1,0,2,0],[0,2,3,3],[2,2,2,2],[1,2,1,1]],[[1,0,2,0],[0,2,3,2],[2,2,2,3],[1,2,1,1]],[[1,0,2,0],[0,2,3,2],[2,2,2,2],[1,2,1,2]],[[1,0,2,0],[0,2,4,2],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[0,2,3,3],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[0,2,3,2],[2,2,2,3],[1,2,2,0]],[[1,0,2,0],[0,2,4,2],[2,2,3,0],[1,2,2,1]],[[1,0,2,0],[0,2,3,3],[2,2,3,0],[1,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,2,4,0],[1,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,2,3,0],[2,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,2,3,0],[1,3,2,1]],[[1,0,2,0],[0,2,3,2],[2,2,3,0],[1,2,3,1]],[[1,0,2,0],[0,2,3,2],[2,2,3,0],[1,2,2,2]],[[1,0,2,0],[0,2,4,2],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[0,2,3,3],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[0,2,3,2],[2,2,4,1],[1,2,1,1]],[[1,0,2,0],[0,2,4,2],[2,2,3,1],[1,2,2,0]],[[1,0,2,0],[0,2,3,3],[2,2,3,1],[1,2,2,0]],[[1,0,2,0],[0,2,3,2],[2,2,4,1],[1,2,2,0]],[[1,0,2,0],[0,2,3,2],[2,2,3,1],[2,2,2,0]],[[1,0,2,0],[0,2,3,2],[2,2,3,1],[1,3,2,0]],[[1,0,2,0],[0,2,3,2],[2,2,3,1],[1,2,3,0]],[[1,0,2,0],[0,2,4,2],[2,3,0,2],[1,2,2,1]],[[1,0,2,0],[0,2,3,3],[2,3,0,2],[1,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,4,0,2],[1,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,3,0,3],[1,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,3,0,2],[2,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,3,0,2],[1,3,2,1]],[[1,0,2,0],[0,2,3,2],[2,3,0,2],[1,2,3,1]],[[1,0,2,0],[0,2,3,2],[2,3,0,2],[1,2,2,2]],[[1,0,2,0],[0,2,4,2],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[0,2,3,3],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[0,2,3,2],[2,3,1,3],[1,1,2,1]],[[1,0,2,0],[0,2,3,2],[2,3,1,2],[1,1,3,1]],[[1,0,2,0],[0,2,3,2],[2,3,1,2],[1,1,2,2]],[[1,0,2,0],[0,2,3,2],[2,4,2,0],[1,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,3,2,0],[2,2,2,1]],[[1,0,2,0],[0,2,3,2],[2,3,2,0],[1,3,2,1]],[[1,0,2,0],[0,2,3,2],[2,3,2,0],[1,2,3,1]],[[1,0,2,0],[0,2,3,2],[2,3,2,0],[1,2,2,2]],[[1,0,2,0],[0,2,3,2],[2,4,2,1],[1,2,2,0]],[[1,0,2,0],[0,2,3,2],[2,3,2,1],[2,2,2,0]],[[1,0,2,0],[0,2,3,2],[2,3,2,1],[1,3,2,0]],[[1,0,2,0],[0,2,3,2],[2,3,2,1],[1,2,3,0]],[[1,0,2,0],[0,2,4,2],[2,3,2,2],[1,1,1,1]],[[1,0,2,0],[0,2,3,3],[2,3,2,2],[1,1,1,1]],[[1,0,2,0],[0,2,3,2],[2,3,2,3],[1,1,1,1]],[[1,0,2,0],[0,2,3,2],[2,3,2,2],[1,1,1,2]],[[1,0,2,0],[0,2,4,2],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[0,2,3,3],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[0,2,3,2],[2,3,2,3],[1,1,2,0]],[[1,0,2,0],[0,2,4,2],[2,3,2,2],[1,2,0,1]],[[1,0,2,0],[0,2,3,3],[2,3,2,2],[1,2,0,1]],[[1,0,2,0],[0,2,3,2],[2,3,2,3],[1,2,0,1]],[[1,0,2,0],[0,2,3,2],[2,3,2,2],[1,2,0,2]],[[1,0,2,0],[0,2,4,2],[2,3,2,2],[1,2,1,0]],[[1,0,2,0],[0,2,3,3],[2,3,2,2],[1,2,1,0]],[[1,0,2,0],[0,2,3,2],[2,3,2,3],[1,2,1,0]],[[1,0,2,0],[0,2,4,2],[2,3,3,0],[1,1,2,1]],[[1,0,2,0],[0,2,3,3],[2,3,3,0],[1,1,2,1]],[[1,0,2,0],[0,2,3,2],[2,4,3,0],[1,1,2,1]],[[1,0,2,0],[0,2,3,2],[2,3,4,0],[1,1,2,1]],[[1,0,2,0],[0,2,3,2],[2,3,3,0],[1,1,3,1]],[[1,0,2,0],[0,2,3,2],[2,3,3,0],[1,1,2,2]],[[1,0,2,0],[0,2,4,2],[2,3,3,0],[1,2,1,1]],[[1,0,2,0],[0,2,3,3],[2,3,3,0],[1,2,1,1]],[[1,0,2,0],[0,2,3,2],[2,4,3,0],[1,2,1,1]],[[1,0,2,0],[0,2,3,2],[2,3,4,0],[1,2,1,1]],[[1,0,2,0],[0,2,3,2],[2,3,3,0],[2,2,1,1]],[[1,0,2,0],[0,2,3,2],[2,3,3,0],[1,3,1,1]],[[1,0,2,0],[0,2,4,2],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[0,2,3,3],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[0,2,3,2],[2,4,3,1],[1,1,1,1]],[[1,0,2,0],[0,2,3,2],[2,3,4,1],[1,1,1,1]],[[1,0,2,0],[0,2,4,2],[2,3,3,1],[1,1,2,0]],[[1,0,2,0],[0,2,3,3],[2,3,3,1],[1,1,2,0]],[[1,0,2,0],[0,2,3,2],[2,4,3,1],[1,1,2,0]],[[1,0,2,0],[0,2,3,2],[2,3,4,1],[1,1,2,0]],[[1,0,2,0],[0,2,3,2],[2,3,3,1],[1,1,3,0]],[[1,0,2,0],[0,2,4,2],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[0,2,3,3],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[0,2,3,2],[2,4,3,1],[1,2,0,1]],[[1,0,2,0],[0,2,3,2],[2,3,4,1],[1,2,0,1]],[[1,0,2,0],[0,2,3,2],[2,3,3,1],[2,2,0,1]],[[1,0,2,0],[0,2,3,2],[2,3,3,1],[1,3,0,1]],[[1,0,2,0],[0,2,4,2],[2,3,3,1],[1,2,1,0]],[[1,0,2,0],[0,2,3,3],[2,3,3,1],[1,2,1,0]],[[1,0,2,0],[0,2,3,2],[2,4,3,1],[1,2,1,0]],[[1,0,2,0],[0,2,3,2],[2,3,4,1],[1,2,1,0]],[[1,0,2,0],[0,2,3,2],[2,3,3,1],[2,2,1,0]],[[1,0,2,0],[0,2,3,2],[2,3,3,1],[1,3,1,0]],[[1,0,2,0],[0,3,0,1],[2,4,3,2],[1,2,2,1]],[[1,0,2,0],[0,3,0,1],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[0,3,0,1],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[0,3,0,1],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[0,3,0,1],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[0,3,0,2],[2,2,3,3],[1,2,2,1]],[[1,0,2,0],[0,3,0,2],[2,2,3,2],[2,2,2,1]],[[1,0,2,0],[0,3,0,2],[2,2,3,2],[1,3,2,1]],[[1,0,2,0],[0,3,0,2],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[0,3,0,2],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[0,3,0,2],[2,4,2,2],[1,2,2,1]],[[1,0,2,0],[0,3,0,2],[2,3,2,3],[1,2,2,1]],[[1,0,2,0],[0,3,0,2],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[0,3,0,2],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[0,3,0,2],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[0,3,0,2],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[0,3,0,2],[2,4,3,1],[1,2,2,1]],[[1,0,2,0],[0,3,0,2],[2,3,3,1],[2,2,2,1]],[[1,0,2,0],[0,3,0,2],[2,3,3,1],[1,3,2,1]],[[1,0,2,0],[0,3,0,2],[2,3,3,1],[1,2,3,1]],[[1,0,2,0],[0,3,0,2],[2,3,3,1],[1,2,2,2]],[[1,0,2,0],[0,3,0,2],[2,3,3,3],[1,1,2,1]],[[1,0,2,0],[0,3,0,2],[2,3,3,2],[1,1,3,1]],[[1,0,2,0],[0,3,0,2],[2,3,3,2],[1,1,2,2]],[[1,0,2,0],[0,3,0,2],[2,4,3,2],[1,2,2,0]],[[1,0,2,0],[0,3,0,2],[2,3,3,2],[2,2,2,0]],[[1,0,2,0],[0,3,0,2],[2,3,3,2],[1,3,2,0]],[[1,0,2,0],[0,3,0,2],[2,3,3,2],[1,2,3,0]],[[1,0,2,0],[0,3,1,0],[2,4,3,2],[1,2,2,1]],[[1,0,2,0],[0,3,1,0],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[0,3,1,0],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[0,3,1,0],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[0,3,1,0],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[0,3,1,1],[2,4,3,1],[1,2,2,1]],[[1,0,2,0],[0,3,1,1],[2,3,3,1],[2,2,2,1]],[[1,0,2,0],[0,3,1,1],[2,3,3,1],[1,3,2,1]],[[1,0,2,0],[0,3,1,1],[2,3,3,1],[1,2,3,1]],[[1,0,2,0],[0,3,1,1],[2,3,3,1],[1,2,2,2]],[[1,0,2,0],[0,3,1,1],[2,4,3,2],[1,2,2,0]],[[1,0,2,0],[0,3,1,1],[2,3,3,2],[2,2,2,0]],[[1,0,2,0],[0,3,1,1],[2,3,3,2],[1,3,2,0]],[[1,0,2,0],[0,3,1,1],[2,3,3,2],[1,2,3,0]],[[1,0,2,0],[0,3,1,3],[2,2,2,2],[1,2,2,1]],[[1,0,2,0],[0,3,1,2],[2,2,2,3],[1,2,2,1]],[[1,0,2,0],[0,3,1,2],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[0,3,1,2],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[0,3,1,2],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[0,3,1,2],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[0,3,1,2],[2,2,4,1],[1,2,2,1]],[[1,0,2,0],[0,3,1,2],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[0,3,1,2],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[0,3,1,2],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[0,3,1,2],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[0,3,1,3],[2,2,3,2],[1,2,1,1]],[[1,0,2,0],[0,3,1,2],[2,2,4,2],[1,2,1,1]],[[1,0,2,0],[0,3,1,2],[2,2,3,3],[1,2,1,1]],[[1,0,2,0],[0,3,1,2],[2,2,3,2],[1,2,1,2]],[[1,0,2,0],[0,3,1,3],[2,2,3,2],[1,2,2,0]],[[1,0,2,0],[0,3,1,2],[2,2,4,2],[1,2,2,0]],[[1,0,2,0],[0,3,1,2],[2,2,3,3],[1,2,2,0]],[[1,0,2,0],[0,3,1,2],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[0,3,1,2],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[0,3,1,2],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[0,3,1,3],[2,3,1,2],[1,2,2,1]],[[1,0,2,0],[0,3,1,2],[2,4,1,2],[1,2,2,1]],[[1,0,2,0],[0,3,1,2],[2,3,1,3],[1,2,2,1]],[[1,0,2,0],[0,3,1,2],[2,3,1,2],[2,2,2,1]],[[1,0,2,0],[0,3,1,2],[2,3,1,2],[1,3,2,1]],[[1,0,2,0],[0,3,1,2],[2,3,1,2],[1,2,3,1]],[[1,0,2,0],[0,3,1,2],[2,3,1,2],[1,2,2,2]],[[1,0,2,0],[0,3,1,2],[2,4,2,1],[1,2,2,1]],[[1,0,2,0],[0,3,1,2],[2,3,2,1],[2,2,2,1]],[[1,0,2,0],[0,3,1,2],[2,3,2,1],[1,3,2,1]],[[1,0,2,0],[0,3,1,2],[2,3,2,1],[1,2,3,1]],[[1,0,2,0],[0,3,1,2],[2,3,2,1],[1,2,2,2]],[[1,0,2,0],[0,3,1,3],[2,3,2,2],[1,1,2,1]],[[1,0,2,0],[0,3,1,2],[2,3,2,3],[1,1,2,1]],[[1,0,2,0],[0,3,1,2],[2,3,2,2],[1,1,3,1]],[[1,0,2,0],[0,3,1,2],[2,3,2,2],[1,1,2,2]],[[1,0,2,0],[0,3,1,2],[2,4,2,2],[1,2,2,0]],[[1,0,2,0],[0,3,1,2],[2,3,2,2],[2,2,2,0]],[[1,0,2,0],[0,3,1,2],[2,3,2,2],[1,3,2,0]],[[1,0,2,0],[0,3,1,2],[2,3,2,2],[1,2,3,0]],[[1,0,2,0],[0,3,1,2],[2,4,3,1],[1,1,2,1]],[[1,0,2,0],[0,3,1,2],[2,3,4,1],[1,1,2,1]],[[1,0,2,0],[0,3,1,2],[2,3,3,1],[1,1,3,1]],[[1,0,2,0],[0,3,1,2],[2,3,3,1],[1,1,2,2]],[[1,0,2,0],[0,3,1,2],[2,4,3,1],[1,2,1,1]],[[1,0,2,0],[0,3,1,2],[2,3,4,1],[1,2,1,1]],[[1,0,2,0],[0,3,1,2],[2,3,3,1],[2,2,1,1]],[[1,0,2,0],[0,3,1,2],[2,3,3,1],[1,3,1,1]],[[1,0,2,0],[0,3,1,3],[2,3,3,2],[1,1,1,1]],[[1,0,2,0],[0,3,1,2],[2,4,3,2],[1,1,1,1]],[[1,0,2,0],[0,3,1,2],[2,3,4,2],[1,1,1,1]],[[1,0,2,0],[0,3,1,2],[2,3,3,3],[1,1,1,1]],[[1,0,2,0],[0,3,1,2],[2,3,3,2],[1,1,1,2]],[[1,0,2,0],[0,3,1,3],[2,3,3,2],[1,1,2,0]],[[1,0,2,0],[0,3,1,2],[2,4,3,2],[1,1,2,0]],[[1,0,2,0],[0,3,1,2],[2,3,4,2],[1,1,2,0]],[[1,0,2,0],[0,3,1,2],[2,3,3,3],[1,1,2,0]],[[1,0,2,0],[0,3,1,2],[2,3,3,2],[1,1,3,0]],[[1,0,2,0],[0,3,1,3],[2,3,3,2],[1,2,0,1]],[[1,0,2,0],[0,3,1,2],[2,4,3,2],[1,2,0,1]],[[1,0,2,0],[0,3,1,2],[2,3,4,2],[1,2,0,1]],[[1,0,2,0],[0,3,1,2],[2,3,3,3],[1,2,0,1]],[[1,0,2,0],[0,3,1,2],[2,3,3,2],[2,2,0,1]],[[1,0,2,0],[0,3,1,2],[2,3,3,2],[1,3,0,1]],[[1,0,2,0],[0,3,1,2],[2,3,3,2],[1,2,0,2]],[[1,0,2,0],[0,3,1,3],[2,3,3,2],[1,2,1,0]],[[1,0,2,0],[0,3,1,2],[2,4,3,2],[1,2,1,0]],[[1,0,2,0],[0,3,1,2],[2,3,4,2],[1,2,1,0]],[[1,0,2,0],[0,3,1,2],[2,3,3,3],[1,2,1,0]],[[1,0,2,0],[0,3,1,2],[2,3,3,2],[2,2,1,0]],[[1,0,2,0],[0,3,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,3,0,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[2,3,0,1],[2,4,3,1],[1,2,0,0]],[[1,2,1,1],[2,3,0,1],[3,3,3,1],[1,2,0,0]],[[1,0,2,0],[0,3,2,0],[2,2,4,2],[1,2,2,1]],[[1,0,2,0],[0,3,2,0],[2,2,3,2],[2,2,2,1]],[[1,0,2,0],[0,3,2,0],[2,2,3,2],[1,3,2,1]],[[1,0,2,0],[0,3,2,0],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[0,3,2,0],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[0,3,2,0],[2,4,2,2],[1,2,2,1]],[[1,0,2,0],[0,3,2,0],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[0,3,2,0],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[0,3,2,0],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[0,3,2,0],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[0,3,2,0],[2,4,3,2],[1,1,2,1]],[[1,0,2,0],[0,3,2,0],[2,3,4,2],[1,1,2,1]],[[1,0,2,0],[0,3,2,0],[2,3,3,2],[1,1,3,1]],[[1,0,2,0],[0,3,2,0],[2,3,3,2],[1,1,2,2]],[[1,0,2,0],[0,3,2,0],[2,4,3,2],[1,2,1,1]],[[1,0,2,0],[0,3,2,0],[2,3,4,2],[1,2,1,1]],[[1,0,2,0],[0,3,2,0],[2,3,3,2],[2,2,1,1]],[[1,0,2,0],[0,3,2,0],[2,3,3,2],[1,3,1,1]],[[1,0,2,0],[0,3,2,1],[2,2,2,3],[1,2,2,1]],[[1,0,2,0],[0,3,2,1],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[0,3,2,1],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[0,3,2,1],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[0,3,2,1],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[0,3,2,1],[2,2,4,1],[1,2,2,1]],[[1,0,2,0],[0,3,2,1],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[0,3,2,1],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[0,3,2,1],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[0,3,2,1],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[0,3,2,1],[2,2,4,2],[1,2,1,1]],[[1,0,2,0],[0,3,2,1],[2,2,3,3],[1,2,1,1]],[[1,0,2,0],[0,3,2,1],[2,2,3,2],[1,2,1,2]],[[1,0,2,0],[0,3,2,1],[2,2,4,2],[1,2,2,0]],[[1,0,2,0],[0,3,2,1],[2,2,3,3],[1,2,2,0]],[[1,0,2,0],[0,3,2,1],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[0,3,2,1],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[0,3,2,1],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[0,3,2,1],[2,4,1,2],[1,2,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,1,3],[1,2,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,1,2],[2,2,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,1,2],[1,3,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,1,2],[1,2,3,1]],[[1,0,2,0],[0,3,2,1],[2,3,1,2],[1,2,2,2]],[[1,0,2,0],[0,3,2,1],[2,4,2,1],[1,2,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,2,1],[2,2,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,2,1],[1,3,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,2,1],[1,2,3,1]],[[1,0,2,0],[0,3,2,1],[2,3,2,1],[1,2,2,2]],[[1,0,2,0],[0,3,2,1],[2,3,2,3],[1,1,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,2,2],[1,1,3,1]],[[1,0,2,0],[0,3,2,1],[2,3,2,2],[1,1,2,2]],[[1,0,2,0],[0,3,2,1],[2,4,2,2],[1,2,2,0]],[[1,0,2,0],[0,3,2,1],[2,3,2,2],[2,2,2,0]],[[1,0,2,0],[0,3,2,1],[2,3,2,2],[1,3,2,0]],[[1,0,2,0],[0,3,2,1],[2,3,2,2],[1,2,3,0]],[[1,0,2,0],[0,3,2,1],[2,4,3,0],[1,2,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,0],[2,2,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,0],[1,3,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,0],[1,2,3,1]],[[1,0,2,0],[0,3,2,1],[2,4,3,1],[1,1,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,4,1],[1,1,2,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,1],[1,1,3,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,1],[1,1,2,2]],[[1,0,2,0],[0,3,2,1],[2,4,3,1],[1,2,1,1]],[[1,0,2,0],[0,3,2,1],[2,3,4,1],[1,2,1,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,1],[2,2,1,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,1],[1,3,1,1]],[[1,0,2,0],[0,3,2,1],[2,4,3,2],[1,1,1,1]],[[1,0,2,0],[0,3,2,1],[2,3,4,2],[1,1,1,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,3],[1,1,1,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,2],[1,1,1,2]],[[1,0,2,0],[0,3,2,1],[2,4,3,2],[1,1,2,0]],[[1,0,2,0],[0,3,2,1],[2,3,4,2],[1,1,2,0]],[[1,0,2,0],[0,3,2,1],[2,3,3,3],[1,1,2,0]],[[1,0,2,0],[0,3,2,1],[2,3,3,2],[1,1,3,0]],[[1,0,2,0],[0,3,2,1],[2,4,3,2],[1,2,0,1]],[[1,0,2,0],[0,3,2,1],[2,3,4,2],[1,2,0,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,3],[1,2,0,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,2],[2,2,0,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,2],[1,3,0,1]],[[1,0,2,0],[0,3,2,1],[2,3,3,2],[1,2,0,2]],[[1,0,2,0],[0,3,2,1],[2,4,3,2],[1,2,1,0]],[[1,0,2,0],[0,3,2,1],[2,3,4,2],[1,2,1,0]],[[1,0,2,0],[0,3,2,1],[2,3,3,3],[1,2,1,0]],[[1,0,2,0],[0,3,2,1],[2,3,3,2],[2,2,1,0]],[[1,0,2,0],[0,3,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[3,3,0,1],[2,3,3,1],[1,2,0,0]],[[2,2,1,1],[2,3,0,1],[2,3,3,1],[1,2,0,0]],[[1,0,2,0],[0,3,2,2],[2,2,4,0],[1,2,2,1]],[[1,0,2,0],[0,3,2,2],[2,2,3,0],[2,2,2,1]],[[1,0,2,0],[0,3,2,2],[2,2,3,0],[1,3,2,1]],[[1,0,2,0],[0,3,2,2],[2,2,3,0],[1,2,3,1]],[[1,0,2,0],[0,3,2,2],[2,2,3,0],[1,2,2,2]],[[1,0,2,0],[0,3,2,2],[2,2,4,1],[1,2,2,0]],[[1,0,2,0],[0,3,2,2],[2,2,3,1],[2,2,2,0]],[[1,0,2,0],[0,3,2,2],[2,2,3,1],[1,3,2,0]],[[1,0,2,0],[0,3,2,2],[2,2,3,1],[1,2,3,0]],[[1,2,1,1],[2,3,0,1],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[2,3,0,1],[2,4,3,1],[1,1,1,0]],[[1,0,2,0],[0,3,2,3],[2,3,0,2],[1,2,2,1]],[[1,0,2,0],[0,3,2,2],[2,4,0,2],[1,2,2,1]],[[1,0,2,0],[0,3,2,2],[2,3,0,3],[1,2,2,1]],[[1,0,2,0],[0,3,2,2],[2,3,0,2],[2,2,2,1]],[[1,0,2,0],[0,3,2,2],[2,3,0,2],[1,3,2,1]],[[1,0,2,0],[0,3,2,2],[2,3,0,2],[1,2,3,1]],[[1,0,2,0],[0,3,2,2],[2,3,0,2],[1,2,2,2]],[[1,0,2,0],[0,3,2,2],[2,4,2,0],[1,2,2,1]],[[1,0,2,0],[0,3,2,2],[2,3,2,0],[2,2,2,1]],[[1,0,2,0],[0,3,2,2],[2,3,2,0],[1,3,2,1]],[[1,0,2,0],[0,3,2,2],[2,3,2,0],[1,2,3,1]],[[1,0,2,0],[0,3,2,2],[2,3,2,0],[1,2,2,2]],[[1,0,2,0],[0,3,2,2],[2,4,2,1],[1,2,2,0]],[[1,0,2,0],[0,3,2,2],[2,3,2,1],[2,2,2,0]],[[1,0,2,0],[0,3,2,2],[2,3,2,1],[1,3,2,0]],[[1,0,2,0],[0,3,2,2],[2,3,2,1],[1,2,3,0]],[[1,2,1,1],[2,3,0,1],[3,3,3,1],[1,1,1,0]],[[1,2,1,1],[3,3,0,1],[2,3,3,1],[1,1,1,0]],[[2,2,1,1],[2,3,0,1],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[2,3,0,1],[2,3,3,1],[2,1,0,1]],[[1,2,1,1],[2,3,0,1],[2,4,3,1],[1,1,0,1]],[[1,2,1,1],[2,3,0,1],[3,3,3,1],[1,1,0,1]],[[1,2,1,1],[3,3,0,1],[2,3,3,1],[1,1,0,1]],[[1,0,2,0],[0,3,2,2],[2,4,3,0],[1,1,2,1]],[[1,0,2,0],[0,3,2,2],[2,3,4,0],[1,1,2,1]],[[1,0,2,0],[0,3,2,2],[2,3,3,0],[1,1,3,1]],[[1,0,2,0],[0,3,2,2],[2,3,3,0],[1,1,2,2]],[[1,0,2,0],[0,3,2,2],[2,4,3,0],[1,2,1,1]],[[1,0,2,0],[0,3,2,2],[2,3,4,0],[1,2,1,1]],[[1,0,2,0],[0,3,2,2],[2,3,3,0],[2,2,1,1]],[[1,0,2,0],[0,3,2,2],[2,3,3,0],[1,3,1,1]],[[1,0,2,0],[0,3,2,2],[2,4,3,1],[1,1,2,0]],[[1,0,2,0],[0,3,2,2],[2,3,4,1],[1,1,2,0]],[[1,0,2,0],[0,3,2,2],[2,3,3,1],[1,1,3,0]],[[1,0,2,0],[0,3,2,2],[2,4,3,1],[1,2,0,1]],[[1,0,2,0],[0,3,2,2],[2,3,4,1],[1,2,0,1]],[[1,0,2,0],[0,3,2,2],[2,3,3,1],[2,2,0,1]],[[1,0,2,0],[0,3,2,2],[2,3,3,1],[1,3,0,1]],[[1,0,2,0],[0,3,2,2],[2,4,3,1],[1,2,1,0]],[[1,0,2,0],[0,3,2,2],[2,3,4,1],[1,2,1,0]],[[1,0,2,0],[0,3,2,2],[2,3,3,1],[2,2,1,0]],[[1,0,2,0],[0,3,2,2],[2,3,3,1],[1,3,1,0]],[[2,2,1,1],[2,3,0,1],[2,3,3,1],[1,1,0,1]],[[1,2,1,1],[2,3,0,1],[2,3,3,1],[2,0,2,0]],[[1,2,1,1],[2,3,0,1],[2,4,3,1],[1,0,2,0]],[[1,2,1,1],[2,3,0,1],[3,3,3,1],[1,0,2,0]],[[1,2,1,1],[3,3,0,1],[2,3,3,1],[1,0,2,0]],[[2,2,1,1],[2,3,0,1],[2,3,3,1],[1,0,2,0]],[[1,2,1,1],[2,3,0,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[2,3,0,1],[2,4,3,1],[0,2,1,0]],[[1,2,1,1],[2,3,0,1],[3,3,3,1],[0,2,1,0]],[[1,2,1,1],[3,3,0,1],[2,3,3,1],[0,2,1,0]],[[2,2,1,1],[2,3,0,1],[2,3,3,1],[0,2,1,0]],[[1,2,1,1],[2,3,0,1],[2,4,3,1],[0,2,0,1]],[[1,2,1,1],[2,3,0,1],[3,3,3,1],[0,2,0,1]],[[1,2,1,1],[3,3,0,1],[2,3,3,1],[0,2,0,1]],[[2,2,1,1],[2,3,0,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,0],[0,3,3,0],[2,2,4,1],[1,2,2,1]],[[1,0,2,0],[0,3,3,0],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[0,3,3,0],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[0,3,3,0],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[0,3,3,0],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[0,3,3,0],[2,2,4,2],[1,2,2,0]],[[1,0,2,0],[0,3,3,0],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[0,3,3,0],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[0,3,3,0],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[0,3,3,0],[2,4,2,1],[1,2,2,1]],[[1,0,2,0],[0,3,3,0],[2,3,2,1],[2,2,2,1]],[[1,0,2,0],[0,3,3,0],[2,3,2,1],[1,3,2,1]],[[1,0,2,0],[0,3,3,0],[2,3,2,1],[1,2,3,1]],[[1,0,2,0],[0,3,3,0],[2,3,2,1],[1,2,2,2]],[[1,0,2,0],[0,3,3,0],[2,4,2,2],[1,2,2,0]],[[1,0,2,0],[0,3,3,0],[2,3,2,2],[2,2,2,0]],[[1,0,2,0],[0,3,3,0],[2,3,2,2],[1,3,2,0]],[[1,0,2,0],[0,3,3,0],[2,3,2,2],[1,2,3,0]],[[1,0,2,0],[0,3,3,0],[2,4,3,0],[1,2,2,1]],[[1,0,2,0],[0,3,3,0],[2,3,3,0],[2,2,2,1]],[[1,0,2,0],[0,3,3,0],[2,3,3,0],[1,3,2,1]],[[1,0,2,0],[0,3,3,0],[2,3,3,0],[1,2,3,1]],[[1,0,2,0],[0,3,3,0],[2,4,3,1],[1,1,2,1]],[[1,0,2,0],[0,3,3,0],[2,3,4,1],[1,1,2,1]],[[1,0,2,0],[0,3,3,0],[2,3,3,1],[1,1,3,1]],[[1,0,2,0],[0,3,3,0],[2,3,3,1],[1,1,2,2]],[[1,0,2,0],[0,3,3,0],[2,4,3,1],[1,2,1,1]],[[1,0,2,0],[0,3,3,0],[2,3,4,1],[1,2,1,1]],[[1,0,2,0],[0,3,3,0],[2,3,3,1],[2,2,1,1]],[[1,0,2,0],[0,3,3,0],[2,3,3,1],[1,3,1,1]],[[1,0,2,0],[0,3,3,0],[2,4,3,2],[1,1,2,0]],[[1,0,2,0],[0,3,3,0],[2,3,4,2],[1,1,2,0]],[[1,0,2,0],[0,3,3,0],[2,3,3,2],[1,1,3,0]],[[1,0,2,0],[0,3,3,0],[2,4,3,2],[1,2,0,1]],[[1,0,2,0],[0,3,3,0],[2,3,4,2],[1,2,0,1]],[[1,0,2,0],[0,3,3,0],[2,3,3,2],[2,2,0,1]],[[1,0,2,0],[0,3,3,0],[2,3,3,2],[1,3,0,1]],[[1,0,2,0],[0,3,3,0],[2,4,3,2],[1,2,1,0]],[[1,0,2,0],[0,3,3,0],[2,3,4,2],[1,2,1,0]],[[1,0,2,0],[0,3,3,0],[2,3,3,2],[2,2,1,0]],[[1,0,2,0],[0,3,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,3,0,1],[2,4,3,1],[0,1,2,0]],[[1,2,1,1],[2,3,0,1],[3,3,3,1],[0,1,2,0]],[[1,2,1,1],[3,3,0,1],[2,3,3,1],[0,1,2,0]],[[2,2,1,1],[2,3,0,1],[2,3,3,1],[0,1,2,0]],[[1,2,1,1],[2,3,0,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[2,3,0,1],[2,4,3,0],[1,2,0,1]],[[1,2,1,1],[2,3,0,1],[3,3,3,0],[1,2,0,1]],[[1,0,2,0],[0,3,3,1],[2,4,0,2],[1,2,2,1]],[[1,0,2,0],[0,3,3,1],[2,3,0,3],[1,2,2,1]],[[1,0,2,0],[0,3,3,1],[2,3,0,2],[2,2,2,1]],[[1,0,2,0],[0,3,3,1],[2,3,0,2],[1,3,2,1]],[[1,0,2,0],[0,3,3,1],[2,3,0,2],[1,2,3,1]],[[1,0,2,0],[0,3,3,1],[2,3,0,2],[1,2,2,2]],[[1,0,2,0],[0,3,3,1],[2,4,1,1],[1,2,2,1]],[[1,0,2,0],[0,3,3,1],[2,3,1,1],[2,2,2,1]],[[1,0,2,0],[0,3,3,1],[2,3,1,1],[1,3,2,1]],[[1,0,2,0],[0,3,3,1],[2,3,1,1],[1,2,3,1]],[[1,0,2,0],[0,3,3,1],[2,3,1,1],[1,2,2,2]],[[1,0,2,0],[0,3,3,1],[2,4,1,2],[1,2,2,0]],[[1,0,2,0],[0,3,3,1],[2,3,1,2],[2,2,2,0]],[[1,0,2,0],[0,3,3,1],[2,3,1,2],[1,3,2,0]],[[1,0,2,0],[0,3,3,1],[2,3,1,2],[1,2,3,0]],[[1,0,2,0],[0,3,3,1],[2,4,2,1],[1,2,1,1]],[[1,0,2,0],[0,3,3,1],[2,3,2,1],[2,2,1,1]],[[1,0,2,0],[0,3,3,1],[2,3,2,1],[1,3,1,1]],[[1,0,2,0],[0,3,3,1],[2,4,2,2],[1,2,0,1]],[[1,0,2,0],[0,3,3,1],[2,3,2,2],[2,2,0,1]],[[1,0,2,0],[0,3,3,1],[2,3,2,2],[1,3,0,1]],[[1,0,2,0],[0,3,3,1],[2,4,2,2],[1,2,1,0]],[[1,0,2,0],[0,3,3,1],[2,3,2,2],[2,2,1,0]],[[1,0,2,0],[0,3,3,1],[2,3,2,2],[1,3,1,0]],[[1,2,1,1],[3,3,0,1],[2,3,3,0],[1,2,0,1]],[[2,2,1,1],[2,3,0,1],[2,3,3,0],[1,2,0,1]],[[1,2,1,1],[2,3,0,1],[2,3,3,0],[2,1,1,1]],[[1,2,1,1],[2,3,0,1],[2,4,3,0],[1,1,1,1]],[[1,2,1,1],[2,3,0,1],[3,3,3,0],[1,1,1,1]],[[1,2,1,1],[3,3,0,1],[2,3,3,0],[1,1,1,1]],[[2,2,1,1],[2,3,0,1],[2,3,3,0],[1,1,1,1]],[[1,2,1,1],[2,3,0,1],[2,3,3,0],[2,0,2,1]],[[1,2,1,1],[2,3,0,1],[2,4,3,0],[1,0,2,1]],[[1,2,1,1],[2,3,0,1],[3,3,3,0],[1,0,2,1]],[[1,2,1,1],[3,3,0,1],[2,3,3,0],[1,0,2,1]],[[2,2,1,1],[2,3,0,1],[2,3,3,0],[1,0,2,1]],[[1,2,1,1],[2,3,0,1],[2,3,3,0],[0,3,1,1]],[[1,2,1,1],[2,3,0,1],[2,4,3,0],[0,2,1,1]],[[1,2,1,1],[2,3,0,1],[3,3,3,0],[0,2,1,1]],[[1,2,1,1],[3,3,0,1],[2,3,3,0],[0,2,1,1]],[[2,2,1,1],[2,3,0,1],[2,3,3,0],[0,2,1,1]],[[1,2,1,1],[2,3,0,1],[2,4,3,0],[0,1,2,1]],[[1,2,1,1],[2,3,0,1],[3,3,3,0],[0,1,2,1]],[[1,2,1,1],[3,3,0,1],[2,3,3,0],[0,1,2,1]],[[2,2,1,1],[2,3,0,1],[2,3,3,0],[0,1,2,1]],[[1,2,1,1],[2,3,0,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[2,3,0,1],[2,4,2,1],[1,1,2,0]],[[1,2,1,1],[2,3,0,1],[3,3,2,1],[1,1,2,0]],[[1,2,1,1],[3,3,0,1],[2,3,2,1],[1,1,2,0]],[[2,2,1,1],[2,3,0,1],[2,3,2,1],[1,1,2,0]],[[1,2,1,1],[2,3,0,1],[2,3,2,1],[0,3,2,0]],[[1,2,1,1],[2,3,0,1],[2,4,2,1],[0,2,2,0]],[[1,2,1,1],[2,3,0,1],[3,3,2,1],[0,2,2,0]],[[1,2,1,1],[3,3,0,1],[2,3,2,1],[0,2,2,0]],[[2,2,1,1],[2,3,0,1],[2,3,2,1],[0,2,2,0]],[[1,0,2,0],[0,3,3,2],[2,4,0,1],[1,2,2,1]],[[1,0,2,0],[0,3,3,2],[2,3,0,1],[2,2,2,1]],[[1,0,2,0],[0,3,3,2],[2,3,0,1],[1,3,2,1]],[[1,0,2,0],[0,3,3,2],[2,3,0,1],[1,2,3,1]],[[1,0,2,0],[0,3,3,2],[2,3,0,1],[1,2,2,2]],[[1,0,2,0],[0,3,3,2],[2,4,0,2],[1,2,1,1]],[[1,0,2,0],[0,3,3,2],[2,3,0,2],[2,2,1,1]],[[1,0,2,0],[0,3,3,2],[2,3,0,2],[1,3,1,1]],[[1,0,2,0],[0,3,3,2],[2,4,0,2],[1,2,2,0]],[[1,0,2,0],[0,3,3,2],[2,3,0,2],[2,2,2,0]],[[1,0,2,0],[0,3,3,2],[2,3,0,2],[1,3,2,0]],[[1,0,2,0],[0,3,3,2],[2,3,0,2],[1,2,3,0]],[[1,0,2,0],[0,3,3,2],[2,4,1,0],[1,2,2,1]],[[1,0,2,0],[0,3,3,2],[2,3,1,0],[2,2,2,1]],[[1,0,2,0],[0,3,3,2],[2,3,1,0],[1,3,2,1]],[[1,0,2,0],[0,3,3,2],[2,3,1,0],[1,2,3,1]],[[1,0,2,0],[0,3,3,2],[2,3,1,0],[1,2,2,2]],[[1,0,2,0],[0,3,3,2],[2,4,1,1],[1,2,2,0]],[[1,0,2,0],[0,3,3,2],[2,3,1,1],[2,2,2,0]],[[1,0,2,0],[0,3,3,2],[2,3,1,1],[1,3,2,0]],[[1,0,2,0],[0,3,3,2],[2,3,1,1],[1,2,3,0]],[[1,0,2,0],[0,3,3,2],[2,4,1,2],[1,2,0,1]],[[1,0,2,0],[0,3,3,2],[2,3,1,2],[2,2,0,1]],[[1,0,2,0],[0,3,3,2],[2,3,1,2],[1,3,0,1]],[[1,0,2,0],[0,3,3,2],[2,4,1,2],[1,2,1,0]],[[1,0,2,0],[0,3,3,2],[2,3,1,2],[2,2,1,0]],[[1,0,2,0],[0,3,3,2],[2,3,1,2],[1,3,1,0]],[[1,2,1,1],[2,3,0,1],[2,3,2,0],[2,1,2,1]],[[1,2,1,1],[2,3,0,1],[2,4,2,0],[1,1,2,1]],[[1,2,1,1],[2,3,0,1],[3,3,2,0],[1,1,2,1]],[[1,2,1,1],[3,3,0,1],[2,3,2,0],[1,1,2,1]],[[2,2,1,1],[2,3,0,1],[2,3,2,0],[1,1,2,1]],[[1,2,1,1],[2,3,0,1],[2,3,2,0],[0,2,3,1]],[[1,2,1,1],[2,3,0,1],[2,3,2,0],[0,3,2,1]],[[1,2,1,1],[2,3,0,1],[2,4,2,0],[0,2,2,1]],[[1,0,2,0],[0,3,3,2],[2,4,2,0],[1,2,1,1]],[[1,0,2,0],[0,3,3,2],[2,3,2,0],[2,2,1,1]],[[1,0,2,0],[0,3,3,2],[2,3,2,0],[1,3,1,1]],[[1,0,2,0],[0,3,3,2],[2,4,2,1],[1,2,0,1]],[[1,0,2,0],[0,3,3,2],[2,3,2,1],[2,2,0,1]],[[1,0,2,0],[0,3,3,2],[2,3,2,1],[1,3,0,1]],[[1,0,2,0],[0,3,3,2],[2,4,2,1],[1,2,1,0]],[[1,0,2,0],[0,3,3,2],[2,3,2,1],[2,2,1,0]],[[1,0,2,0],[0,3,3,2],[2,3,2,1],[1,3,1,0]],[[1,2,1,1],[2,3,0,1],[3,3,2,0],[0,2,2,1]],[[1,2,1,1],[3,3,0,1],[2,3,2,0],[0,2,2,1]],[[2,2,1,1],[2,3,0,1],[2,3,2,0],[0,2,2,1]],[[1,2,1,1],[2,3,0,1],[2,3,1,1],[1,3,2,0]],[[1,2,1,1],[2,3,0,1],[2,3,1,1],[2,2,2,0]],[[1,2,1,1],[2,3,0,1],[3,3,1,1],[1,2,2,0]],[[1,2,1,1],[3,3,0,1],[2,3,1,1],[1,2,2,0]],[[2,2,1,1],[2,3,0,1],[2,3,1,1],[1,2,2,0]],[[1,2,1,1],[2,3,0,1],[2,3,1,0],[1,3,2,1]],[[1,2,1,1],[2,3,0,1],[2,3,1,0],[2,2,2,1]],[[1,0,2,0],[0,3,3,2],[2,4,3,0],[1,2,1,0]],[[1,0,2,0],[0,3,3,2],[2,3,3,0],[2,2,1,0]],[[1,0,2,0],[0,3,3,2],[2,3,3,0],[1,3,1,0]],[[1,2,1,1],[2,3,0,1],[3,3,1,0],[1,2,2,1]],[[1,2,1,1],[3,3,0,1],[2,3,1,0],[1,2,2,1]],[[2,2,1,1],[2,3,0,1],[2,3,1,0],[1,2,2,1]],[[1,2,1,1],[2,3,0,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[2,3,0,1],[2,2,3,1],[2,2,1,0]],[[1,2,1,1],[2,3,0,1],[3,2,3,1],[1,2,1,0]],[[1,2,1,1],[3,3,0,1],[2,2,3,1],[1,2,1,0]],[[2,2,1,1],[2,3,0,1],[2,2,3,1],[1,2,1,0]],[[1,2,1,1],[2,3,0,1],[2,2,3,0],[1,3,1,1]],[[1,2,1,1],[2,3,0,1],[2,2,3,0],[2,2,1,1]],[[1,2,1,1],[2,3,0,1],[3,2,3,0],[1,2,1,1]],[[1,2,1,1],[3,3,0,1],[2,2,3,0],[1,2,1,1]],[[2,2,1,1],[2,3,0,1],[2,2,3,0],[1,2,1,1]],[[1,2,1,1],[2,3,0,1],[2,2,2,1],[1,3,2,0]],[[1,2,1,1],[2,3,0,1],[2,2,2,1],[2,2,2,0]],[[1,2,1,1],[2,3,0,1],[3,2,2,1],[1,2,2,0]],[[1,2,1,1],[3,3,0,1],[2,2,2,1],[1,2,2,0]],[[2,2,1,1],[2,3,0,1],[2,2,2,1],[1,2,2,0]],[[1,2,1,1],[2,3,0,1],[2,2,2,0],[1,2,3,1]],[[1,2,1,1],[2,3,0,1],[2,2,2,0],[1,3,2,1]],[[1,2,1,1],[2,3,0,1],[2,2,2,0],[2,2,2,1]],[[1,2,1,1],[2,3,0,1],[3,2,2,0],[1,2,2,1]],[[1,2,1,1],[3,3,0,1],[2,2,2,0],[1,2,2,1]],[[2,2,1,1],[2,3,0,1],[2,2,2,0],[1,2,2,1]],[[1,2,1,1],[2,3,0,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,3,0,1],[1,3,3,1],[2,2,1,0]],[[1,2,1,1],[2,3,0,1],[1,4,3,1],[1,2,1,0]],[[1,2,1,1],[2,3,0,1],[1,3,3,0],[1,3,1,1]],[[1,2,1,1],[2,3,0,1],[1,3,3,0],[2,2,1,1]],[[1,2,1,1],[2,3,0,1],[1,4,3,0],[1,2,1,1]],[[1,0,2,0],[1,0,1,2],[2,3,3,3],[1,2,2,1]],[[1,0,2,0],[1,0,1,2],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[1,0,1,2],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,0,1,2],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,0,1,2],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,0,2,2],[1,3,3,3],[1,2,2,1]],[[1,0,2,0],[1,0,2,2],[1,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,0,2,2],[1,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,0,2,2],[1,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,0,2,3],[2,3,2,2],[1,2,2,1]],[[1,0,2,0],[1,0,2,2],[2,3,2,3],[1,2,2,1]],[[1,0,2,0],[1,0,2,2],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[1,0,2,2],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,0,2,2],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,0,2,2],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,0,2,2],[2,3,4,1],[1,2,2,1]],[[1,0,2,0],[1,0,2,2],[2,3,3,1],[2,2,2,1]],[[1,0,2,0],[1,0,2,2],[2,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,0,2,2],[2,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,0,2,2],[2,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,0,2,2],[2,3,3,3],[0,2,2,1]],[[1,0,2,0],[1,0,2,2],[2,3,3,2],[0,2,3,1]],[[1,0,2,0],[1,0,2,2],[2,3,3,2],[0,2,2,2]],[[1,0,2,0],[1,0,2,3],[2,3,3,2],[1,2,1,1]],[[1,0,2,0],[1,0,2,2],[2,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,0,2,2],[2,3,3,3],[1,2,1,1]],[[1,0,2,0],[1,0,2,2],[2,3,3,2],[1,2,1,2]],[[1,0,2,0],[1,0,2,3],[2,3,3,2],[1,2,2,0]],[[1,0,2,0],[1,0,2,2],[2,3,4,2],[1,2,2,0]],[[1,0,2,0],[1,0,2,2],[2,3,3,3],[1,2,2,0]],[[1,0,2,0],[1,0,2,2],[2,3,3,2],[2,2,2,0]],[[1,0,2,0],[1,0,2,2],[2,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,0,2,2],[2,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,0,3,0],[2,3,4,2],[1,2,2,1]],[[1,0,2,0],[1,0,3,0],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[1,0,3,0],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,0,3,0],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,0,3,0],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,0,3,1],[2,3,2,3],[1,2,2,1]],[[1,0,2,0],[1,0,3,1],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[1,0,3,1],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,0,3,1],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,0,3,1],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,0,3,1],[2,3,4,1],[1,2,2,1]],[[1,0,2,0],[1,0,3,1],[2,3,3,1],[2,2,2,1]],[[1,0,2,0],[1,0,3,1],[2,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,0,3,1],[2,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,0,3,1],[2,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,0,3,1],[2,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,0,3,1],[2,3,3,3],[1,2,1,1]],[[1,0,2,0],[1,0,3,1],[2,3,3,2],[1,2,1,2]],[[1,0,2,0],[1,0,3,1],[2,3,4,2],[1,2,2,0]],[[1,0,2,0],[1,0,3,1],[2,3,3,3],[1,2,2,0]],[[1,0,2,0],[1,0,3,1],[2,3,3,2],[2,2,2,0]],[[1,0,2,0],[1,0,3,1],[2,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,0,3,1],[2,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,0,3,2],[0,3,3,3],[1,2,2,1]],[[1,0,2,0],[1,0,3,2],[0,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,0,3,2],[0,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,0,3,2],[1,2,3,3],[1,2,2,1]],[[1,0,2,0],[1,0,3,2],[1,2,3,2],[1,2,3,1]],[[1,0,2,0],[1,0,3,2],[1,2,3,2],[1,2,2,2]],[[1,0,2,0],[1,0,3,3],[1,3,2,2],[1,2,2,1]],[[1,0,2,0],[1,0,3,2],[1,3,2,3],[1,2,2,1]],[[1,0,2,0],[1,0,3,2],[1,3,2,2],[2,2,2,1]],[[1,0,2,0],[1,0,3,2],[1,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,0,3,2],[1,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,0,3,2],[1,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,0,3,2],[1,3,4,1],[1,2,2,1]],[[1,0,2,0],[1,0,3,2],[1,3,3,1],[2,2,2,1]],[[1,0,2,0],[1,0,3,2],[1,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,0,3,2],[1,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,0,3,2],[1,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,0,3,3],[1,3,3,2],[1,2,1,1]],[[1,0,2,0],[1,0,3,2],[1,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,0,3,2],[1,3,3,3],[1,2,1,1]],[[1,0,2,0],[1,0,3,2],[1,3,3,2],[1,2,1,2]],[[1,0,2,0],[1,0,3,3],[1,3,3,2],[1,2,2,0]],[[1,0,2,0],[1,0,3,2],[1,3,4,2],[1,2,2,0]],[[1,0,2,0],[1,0,3,2],[1,3,3,3],[1,2,2,0]],[[1,0,2,0],[1,0,3,2],[1,3,3,2],[2,2,2,0]],[[1,0,2,0],[1,0,3,2],[1,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,0,3,2],[1,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,0,3,2],[2,2,3,3],[0,2,2,1]],[[1,0,2,0],[1,0,3,2],[2,2,3,2],[0,2,3,1]],[[1,0,2,0],[1,0,3,2],[2,2,3,2],[0,2,2,2]],[[1,0,2,0],[1,0,3,3],[2,3,2,2],[0,2,2,1]],[[1,0,2,0],[1,0,3,2],[2,3,2,3],[0,2,2,1]],[[1,0,2,0],[1,0,3,2],[2,3,2,2],[0,3,2,1]],[[1,0,2,0],[1,0,3,2],[2,3,2,2],[0,2,3,1]],[[1,0,2,0],[1,0,3,2],[2,3,2,2],[0,2,2,2]],[[1,0,2,0],[1,0,3,2],[2,3,4,0],[1,2,2,1]],[[1,0,2,0],[1,0,3,2],[2,3,3,0],[2,2,2,1]],[[1,0,2,0],[1,0,3,2],[2,3,3,0],[1,3,2,1]],[[1,0,2,0],[1,0,3,2],[2,3,3,0],[1,2,3,1]],[[1,0,2,0],[1,0,3,2],[2,3,3,0],[1,2,2,2]],[[1,0,2,0],[1,0,3,2],[2,3,4,1],[0,2,2,1]],[[1,0,2,0],[1,0,3,2],[2,3,3,1],[0,3,2,1]],[[1,0,2,0],[1,0,3,2],[2,3,3,1],[0,2,3,1]],[[1,0,2,0],[1,0,3,2],[2,3,3,1],[0,2,2,2]],[[1,0,2,0],[1,0,3,2],[2,3,4,1],[1,2,2,0]],[[1,0,2,0],[1,0,3,2],[2,3,3,1],[2,2,2,0]],[[1,0,2,0],[1,0,3,2],[2,3,3,1],[1,3,2,0]],[[1,0,2,0],[1,0,3,2],[2,3,3,1],[1,2,3,0]],[[1,0,2,0],[1,0,3,3],[2,3,3,2],[0,2,1,1]],[[1,0,2,0],[1,0,3,2],[2,3,4,2],[0,2,1,1]],[[1,0,2,0],[1,0,3,2],[2,3,3,3],[0,2,1,1]],[[1,0,2,0],[1,0,3,2],[2,3,3,2],[0,2,1,2]],[[1,0,2,0],[1,0,3,3],[2,3,3,2],[0,2,2,0]],[[1,0,2,0],[1,0,3,2],[2,3,4,2],[0,2,2,0]],[[1,0,2,0],[1,0,3,2],[2,3,3,3],[0,2,2,0]],[[1,0,2,0],[1,0,3,2],[2,3,3,2],[0,3,2,0]],[[1,0,2,0],[1,0,3,2],[2,3,3,2],[0,2,3,0]],[[1,0,2,0],[1,1,0,2],[2,3,3,3],[1,2,2,1]],[[1,0,2,0],[1,1,0,2],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[1,1,0,2],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,1,0,2],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,1,0,2],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,1,1,2],[1,3,3,3],[1,2,2,1]],[[1,0,2,0],[1,1,1,2],[1,3,3,2],[2,2,2,1]],[[1,0,2,0],[1,1,1,2],[1,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,1,1,2],[1,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,1,1,2],[1,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,1,1,2],[2,3,3,3],[0,2,2,1]],[[1,0,2,0],[1,1,1,2],[2,3,3,2],[0,3,2,1]],[[1,0,2,0],[1,1,1,2],[2,3,3,2],[0,2,3,1]],[[1,0,2,0],[1,1,1,2],[2,3,3,2],[0,2,2,2]],[[1,0,2,0],[1,1,2,3],[1,3,2,2],[1,2,2,1]],[[1,0,2,0],[1,1,2,2],[1,3,2,3],[1,2,2,1]],[[1,0,2,0],[1,1,2,2],[1,3,2,2],[2,2,2,1]],[[1,0,2,0],[1,1,2,2],[1,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,1,2,2],[1,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,1,2,2],[1,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,1,2,2],[1,3,4,1],[1,2,2,1]],[[1,0,2,0],[1,1,2,2],[1,3,3,1],[2,2,2,1]],[[1,0,2,0],[1,1,2,2],[1,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,1,2,2],[1,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,1,2,2],[1,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,1,2,3],[1,3,3,2],[1,2,1,1]],[[1,0,2,0],[1,1,2,2],[1,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,1,2,2],[1,3,3,3],[1,2,1,1]],[[1,0,2,0],[1,1,2,2],[1,3,3,2],[1,2,1,2]],[[1,0,2,0],[1,1,2,3],[1,3,3,2],[1,2,2,0]],[[1,0,2,0],[1,1,2,2],[1,3,4,2],[1,2,2,0]],[[1,0,2,0],[1,1,2,2],[1,3,3,3],[1,2,2,0]],[[1,0,2,0],[1,1,2,2],[1,3,3,2],[2,2,2,0]],[[1,0,2,0],[1,1,2,2],[1,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,1,2,2],[1,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,1,2,3],[2,3,2,2],[0,2,2,1]],[[1,0,2,0],[1,1,2,2],[2,3,2,3],[0,2,2,1]],[[1,0,2,0],[1,1,2,2],[2,3,2,2],[0,3,2,1]],[[1,0,2,0],[1,1,2,2],[2,3,2,2],[0,2,3,1]],[[1,0,2,0],[1,1,2,2],[2,3,2,2],[0,2,2,2]],[[1,0,2,0],[1,1,2,2],[2,3,4,1],[0,2,2,1]],[[1,0,2,0],[1,1,2,2],[2,3,3,1],[0,3,2,1]],[[1,0,2,0],[1,1,2,2],[2,3,3,1],[0,2,3,1]],[[1,0,2,0],[1,1,2,2],[2,3,3,1],[0,2,2,2]],[[1,0,2,0],[1,1,2,3],[2,3,3,2],[0,2,1,1]],[[1,0,2,0],[1,1,2,2],[2,3,4,2],[0,2,1,1]],[[1,0,2,0],[1,1,2,2],[2,3,3,3],[0,2,1,1]],[[1,0,2,0],[1,1,2,2],[2,3,3,2],[0,2,1,2]],[[1,0,2,0],[1,1,2,3],[2,3,3,2],[0,2,2,0]],[[1,0,2,0],[1,1,2,2],[2,3,4,2],[0,2,2,0]],[[1,0,2,0],[1,1,2,2],[2,3,3,3],[0,2,2,0]],[[1,0,2,0],[1,1,2,2],[2,3,3,2],[0,3,2,0]],[[1,0,2,0],[1,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[2,3,0,1],[1,3,2,1],[1,3,2,0]],[[1,2,1,1],[2,3,0,1],[1,3,2,1],[2,2,2,0]],[[1,2,1,1],[2,3,0,1],[1,4,2,1],[1,2,2,0]],[[1,2,1,1],[2,3,0,1],[1,3,2,0],[1,2,3,1]],[[1,2,1,1],[2,3,0,1],[1,3,2,0],[1,3,2,1]],[[1,0,2,0],[1,1,3,0],[1,3,4,2],[1,2,2,1]],[[1,0,2,0],[1,1,3,0],[1,3,3,2],[2,2,2,1]],[[1,0,2,0],[1,1,3,0],[1,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,1,3,0],[1,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,1,3,0],[1,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,1,3,0],[2,3,4,2],[0,2,2,1]],[[1,0,2,0],[1,1,3,0],[2,3,3,2],[0,3,2,1]],[[1,0,2,0],[1,1,3,0],[2,3,3,2],[0,2,3,1]],[[1,0,2,0],[1,1,3,0],[2,3,3,2],[0,2,2,2]],[[1,0,2,0],[1,1,3,1],[1,3,2,3],[1,2,2,1]],[[1,0,2,0],[1,1,3,1],[1,3,2,2],[2,2,2,1]],[[1,0,2,0],[1,1,3,1],[1,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,1,3,1],[1,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,1,3,1],[1,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,1,3,1],[1,3,4,1],[1,2,2,1]],[[1,0,2,0],[1,1,3,1],[1,3,3,1],[2,2,2,1]],[[1,0,2,0],[1,1,3,1],[1,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,1,3,1],[1,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,1,3,1],[1,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,1,3,1],[1,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,1,3,1],[1,3,3,3],[1,2,1,1]],[[1,0,2,0],[1,1,3,1],[1,3,3,2],[1,2,1,2]],[[1,0,2,0],[1,1,3,1],[1,3,4,2],[1,2,2,0]],[[1,0,2,0],[1,1,3,1],[1,3,3,3],[1,2,2,0]],[[1,0,2,0],[1,1,3,1],[1,3,3,2],[2,2,2,0]],[[1,0,2,0],[1,1,3,1],[1,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,1,3,1],[1,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,1,3,1],[2,3,2,3],[0,2,2,1]],[[1,0,2,0],[1,1,3,1],[2,3,2,2],[0,3,2,1]],[[1,0,2,0],[1,1,3,1],[2,3,2,2],[0,2,3,1]],[[1,0,2,0],[1,1,3,1],[2,3,2,2],[0,2,2,2]],[[1,0,2,0],[1,1,3,1],[2,3,4,1],[0,2,2,1]],[[1,0,2,0],[1,1,3,1],[2,3,3,1],[0,3,2,1]],[[1,0,2,0],[1,1,3,1],[2,3,3,1],[0,2,3,1]],[[1,0,2,0],[1,1,3,1],[2,3,3,1],[0,2,2,2]],[[1,0,2,0],[1,1,3,1],[2,3,4,2],[0,2,1,1]],[[1,0,2,0],[1,1,3,1],[2,3,3,3],[0,2,1,1]],[[1,0,2,0],[1,1,3,1],[2,3,3,2],[0,2,1,2]],[[1,0,2,0],[1,1,3,1],[2,3,4,2],[0,2,2,0]],[[1,0,2,0],[1,1,3,1],[2,3,3,3],[0,2,2,0]],[[1,0,2,0],[1,1,3,1],[2,3,3,2],[0,3,2,0]],[[1,0,2,0],[1,1,3,1],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[2,3,0,1],[1,3,2,0],[2,2,2,1]],[[1,2,1,1],[2,3,0,1],[1,4,2,0],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[0,2,3,3],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[0,2,3,2],[1,2,3,1]],[[1,0,2,0],[1,1,3,2],[0,2,3,2],[1,2,2,2]],[[1,0,2,0],[1,1,3,3],[0,3,2,2],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[0,3,2,3],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[0,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,1,3,2],[0,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,1,3,2],[0,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,1,3,2],[0,3,4,1],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[0,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,1,3,2],[0,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,1,3,2],[0,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,1,3,3],[0,3,3,2],[1,2,1,1]],[[1,0,2,0],[1,1,3,2],[0,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,1,3,2],[0,3,3,3],[1,2,1,1]],[[1,0,2,0],[1,1,3,2],[0,3,3,2],[1,2,1,2]],[[1,0,2,0],[1,1,3,3],[0,3,3,2],[1,2,2,0]],[[1,0,2,0],[1,1,3,2],[0,3,4,2],[1,2,2,0]],[[1,0,2,0],[1,1,3,2],[0,3,3,3],[1,2,2,0]],[[1,0,2,0],[1,1,3,2],[0,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,1,3,2],[0,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,1,3,3],[1,1,3,2],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[1,1,3,3],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[1,1,3,2],[1,2,3,1]],[[1,0,2,0],[1,1,3,2],[1,1,3,2],[1,2,2,2]],[[1,0,2,0],[1,1,3,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,0],[1,1,3,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,0],[1,1,3,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,0],[1,1,3,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,0],[1,1,3,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[1,1,3,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[1,1,3,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[1,1,3,2],[1,2,3,1],[1,2,2,2]],[[1,0,2,0],[1,1,3,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,0],[1,1,3,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,0],[1,1,3,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,0],[1,1,3,2],[1,2,3,2],[1,2,1,2]],[[1,0,2,0],[1,1,3,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,0],[1,1,3,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[1,1,3,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,0],[1,1,3,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[1,1,3,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[1,1,3,2],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[1,1,3,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,0],[1,1,3,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,0],[1,1,3,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,0],[1,1,3,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,0],[1,1,3,2],[1,3,4,0],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,0],[2,2,2,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,0],[1,3,2,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,0],[1,2,3,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,0],[1,2,2,2]],[[1,0,2,0],[1,1,3,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,0],[1,1,3,2],[1,3,4,1],[1,2,2,0]],[[1,0,2,0],[1,1,3,2],[1,3,3,1],[2,2,2,0]],[[1,0,2,0],[1,1,3,2],[1,3,3,1],[1,3,2,0]],[[1,0,2,0],[1,1,3,2],[1,3,3,1],[1,2,3,0]],[[1,0,2,0],[1,1,3,3],[1,3,3,2],[1,0,2,1]],[[1,0,2,0],[1,1,3,2],[1,3,4,2],[1,0,2,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,3],[1,0,2,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,2],[1,0,2,2]],[[1,0,2,0],[1,1,3,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[1,1,3,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,2],[1,1,1,2]],[[1,0,2,0],[1,1,3,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[1,1,3,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[1,1,3,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,0],[1,1,3,2],[1,3,3,2],[1,1,3,0]],[[1,0,2,0],[1,1,3,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[1,1,3,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,0],[1,1,3,2],[1,3,3,2],[1,2,0,2]],[[1,0,2,0],[1,1,3,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[1,1,3,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[1,1,3,2],[1,3,3,3],[1,2,1,0]],[[1,0,2,0],[1,1,3,3],[2,0,3,2],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,0,3,3],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,0,3,2],[1,2,3,1]],[[1,0,2,0],[1,1,3,2],[2,0,3,2],[1,2,2,2]],[[1,0,2,0],[1,1,3,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,0],[1,1,3,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,0],[1,1,3,2],[2,1,2,2],[1,2,2,2]],[[1,0,2,0],[1,1,3,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[1,1,3,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[1,1,3,2],[2,1,3,1],[1,2,2,2]],[[1,0,2,0],[1,1,3,3],[2,1,3,2],[0,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,1,3,3],[0,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,1,3,2],[0,2,3,1]],[[1,0,2,0],[1,1,3,2],[2,1,3,2],[0,2,2,2]],[[1,0,2,0],[1,1,3,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[1,1,3,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,0],[1,1,3,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,0],[1,1,3,2],[2,1,3,2],[1,2,1,2]],[[1,0,2,0],[1,1,3,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,1,3,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[1,1,3,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,0],[1,1,3,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[1,1,3,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[1,1,3,2],[2,1,3,2],[1,2,3,0]],[[1,0,2,0],[1,1,3,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,0],[1,1,3,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,0],[1,1,3,2],[2,2,2,2],[0,2,2,2]],[[1,0,2,0],[1,1,3,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[1,1,3,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[1,1,3,2],[2,2,3,1],[0,2,2,2]],[[1,0,2,0],[1,1,3,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[1,1,3,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,0],[1,1,3,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,0],[1,1,3,2],[2,2,3,2],[0,2,1,2]],[[1,0,2,0],[1,1,3,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,0],[1,1,3,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[1,1,3,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,0],[1,1,3,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[1,1,3,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,3,0,0],[2,3,3,2],[2,2,0,0]],[[1,0,2,0],[1,1,3,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,0],[1,1,3,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,0],[1,1,3,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,0],[1,1,3,2],[2,3,2,2],[0,1,2,2]],[[1,0,2,0],[1,1,3,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,0],[1,1,3,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,0],[1,1,3,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,0],[1,1,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[2,3,0,0],[2,4,3,2],[1,2,0,0]],[[1,2,1,1],[2,3,0,0],[3,3,3,2],[1,2,0,0]],[[1,2,1,1],[3,3,0,0],[2,3,3,2],[1,2,0,0]],[[2,2,1,1],[2,3,0,0],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,1,3,2],[2,3,4,0],[0,2,2,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,0],[0,3,2,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,0],[0,2,3,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,0],[0,2,2,2]],[[1,0,2,0],[1,1,3,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,1],[0,1,2,2]],[[1,0,2,0],[1,1,3,2],[2,3,4,1],[0,2,2,0]],[[1,0,2,0],[1,1,3,2],[2,3,3,1],[0,3,2,0]],[[1,0,2,0],[1,1,3,2],[2,3,3,1],[0,2,3,0]],[[1,0,2,0],[1,1,3,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,1],[1,0,2,2]],[[1,0,2,0],[1,1,3,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,0],[1,1,3,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,2],[0,0,2,2]],[[1,0,2,0],[1,1,3,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,1,3,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,2],[0,1,1,2]],[[1,0,2,0],[1,1,3,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,1,3,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[1,1,3,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,0],[1,1,3,2],[2,3,3,2],[0,1,3,0]],[[1,0,2,0],[1,1,3,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,1,3,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,2],[0,2,0,2]],[[1,0,2,0],[1,1,3,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,1,3,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[1,1,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,3,0,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,3,0,0],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[2,3,0,0],[3,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,1,3,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,1,3,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,2],[1,0,1,2]],[[1,0,2,0],[1,1,3,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,1,3,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[1,1,3,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,0],[1,1,3,2],[2,3,3,2],[1,0,3,0]],[[1,0,2,0],[1,1,3,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,1,3,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,0],[1,1,3,2],[2,3,3,2],[1,1,0,2]],[[1,0,2,0],[1,1,3,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,1,3,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[1,1,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[3,3,0,0],[2,3,3,2],[1,1,1,0]],[[2,2,1,1],[2,3,0,0],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,3,0,0],[2,3,3,2],[2,1,0,1]],[[1,2,1,1],[2,3,0,0],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[2,3,0,0],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[3,3,0,0],[2,3,3,2],[1,1,0,1]],[[2,2,1,1],[2,3,0,0],[2,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,3,0,0],[2,3,3,2],[2,0,2,0]],[[1,2,1,1],[2,3,0,0],[2,4,3,2],[1,0,2,0]],[[1,2,1,1],[2,3,0,0],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[3,3,0,0],[2,3,3,2],[1,0,2,0]],[[2,2,1,1],[2,3,0,0],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,3,0,0],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[2,3,0,0],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[2,3,0,0],[3,3,3,2],[1,0,1,1]],[[1,2,1,1],[3,3,0,0],[2,3,3,2],[1,0,1,1]],[[2,2,1,1],[2,3,0,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,2,0,2],[1,3,3,3],[1,2,2,1]],[[1,0,2,0],[1,2,0,2],[1,3,3,2],[2,2,2,1]],[[1,0,2,0],[1,2,0,2],[1,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,2,0,2],[1,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,0,2],[1,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,0,2],[2,3,3,3],[0,2,2,1]],[[1,0,2,0],[1,2,0,2],[2,3,3,2],[0,3,2,1]],[[1,0,2,0],[1,2,0,2],[2,3,3,2],[0,2,3,1]],[[1,0,2,0],[1,2,0,2],[2,3,3,2],[0,2,2,2]],[[1,0,2,0],[1,2,1,2],[0,3,3,3],[1,2,2,1]],[[1,0,2,0],[1,2,1,2],[0,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,2,1,2],[0,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,1,2],[0,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,1,2],[1,2,3,3],[1,2,2,1]],[[1,0,2,0],[1,2,1,2],[1,2,3,2],[2,2,2,1]],[[1,0,2,0],[1,2,1,2],[1,2,3,2],[1,3,2,1]],[[1,0,2,0],[1,2,1,2],[1,2,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,1,2],[1,2,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,1,2],[1,3,3,3],[1,1,2,1]],[[1,0,2,0],[1,2,1,2],[1,3,3,2],[1,1,3,1]],[[1,0,2,0],[1,2,1,2],[1,3,3,2],[1,1,2,2]],[[1,0,2,0],[1,2,1,2],[2,1,3,3],[1,2,2,1]],[[1,0,2,0],[1,2,1,2],[2,1,3,2],[2,2,2,1]],[[1,0,2,0],[1,2,1,2],[2,1,3,2],[1,3,2,1]],[[1,0,2,0],[1,2,1,2],[2,1,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,1,2],[2,1,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,1,2],[2,2,3,3],[0,2,2,1]],[[1,0,2,0],[1,2,1,2],[2,2,3,2],[0,3,2,1]],[[1,0,2,0],[1,2,1,2],[2,2,3,2],[0,2,3,1]],[[1,0,2,0],[1,2,1,2],[2,2,3,2],[0,2,2,2]],[[1,0,2,0],[1,2,1,2],[2,3,3,3],[0,1,2,1]],[[1,0,2,0],[1,2,1,2],[2,3,3,2],[0,1,3,1]],[[1,0,2,0],[1,2,1,2],[2,3,3,2],[0,1,2,2]],[[1,0,2,0],[1,2,1,2],[2,3,3,3],[1,0,2,1]],[[1,0,2,0],[1,2,1,2],[2,3,3,2],[1,0,3,1]],[[1,0,2,0],[1,2,1,2],[2,3,3,2],[1,0,2,2]],[[1,0,2,0],[1,2,2,2],[0,2,3,3],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[0,2,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[0,2,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,2,3],[0,3,2,2],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[0,3,2,3],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[0,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,2,2,2],[0,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[0,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,2,2,2],[0,3,4,1],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[0,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,2,2,2],[0,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[0,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,2,2,3],[0,3,3,2],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[0,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[0,3,3,3],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[0,3,3,2],[1,2,1,2]],[[1,0,2,0],[1,2,2,3],[0,3,3,2],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[0,3,4,2],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[0,3,3,3],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[0,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,2,2,2],[0,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,2,2,3],[1,1,3,2],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,1,3,3],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,1,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[1,1,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,2,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,0],[1,2,2,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,0],[1,2,2,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[1,2,2,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[1,2,3,1],[1,2,2,2]],[[1,0,2,0],[1,2,2,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[1,2,3,2],[1,2,1,2]],[[1,0,2,0],[1,2,2,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[1,2,2,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[1,2,2,2],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[1,2,2,3],[1,3,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,4,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,1,3],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,1,2],[2,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,1,2],[1,3,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,1,2],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[1,3,1,2],[1,2,2,2]],[[1,0,2,0],[1,2,2,2],[1,4,2,1],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,2,1],[2,2,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,2,1],[1,3,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,2,1],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[1,3,2,1],[1,2,2,2]],[[1,0,2,0],[1,2,2,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,0],[1,2,2,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,0],[1,2,2,2],[1,4,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[1,3,2,2],[2,2,2,0]],[[1,0,2,0],[1,2,2,2],[1,3,2,2],[1,3,2,0]],[[1,0,2,0],[1,2,2,2],[1,3,2,2],[1,2,3,0]],[[1,0,2,0],[1,2,2,2],[1,4,3,1],[1,1,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,0],[1,2,2,2],[1,4,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[1,3,4,1],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,1],[2,2,1,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,1],[1,3,1,1]],[[1,0,2,0],[1,2,2,3],[1,3,3,2],[1,0,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,4,2],[1,0,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,3],[1,0,2,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,2],[1,0,2,2]],[[1,0,2,0],[1,2,2,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[1,2,2,2],[1,4,3,2],[1,1,1,1]],[[1,0,2,0],[1,2,2,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,2],[1,1,1,2]],[[1,0,2,0],[1,2,2,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[1,2,2,2],[1,4,3,2],[1,1,2,0]],[[1,0,2,0],[1,2,2,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[1,2,2,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,0],[1,2,2,2],[1,3,3,2],[1,1,3,0]],[[1,0,2,0],[1,2,2,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[1,2,2,2],[1,4,3,2],[1,2,0,1]],[[1,0,2,0],[1,2,2,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,2],[2,2,0,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,2],[1,3,0,1]],[[1,0,2,0],[1,2,2,2],[1,3,3,2],[1,2,0,2]],[[1,0,2,0],[1,2,2,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[1,2,2,2],[1,4,3,2],[1,2,1,0]],[[1,0,2,0],[1,2,2,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[1,2,2,2],[1,3,3,3],[1,2,1,0]],[[1,0,2,0],[1,2,2,2],[1,3,3,2],[2,2,1,0]],[[1,0,2,0],[1,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,3,0,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,3,0,0],[2,4,3,2],[0,2,1,0]],[[1,0,2,0],[1,2,2,3],[2,0,3,2],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,0,3,3],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,0,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[2,0,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,2,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[3,1,2,2],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,0],[1,2,2,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[2,1,2,2],[1,2,2,2]],[[1,0,2,0],[1,2,2,2],[3,1,3,1],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[1,2,2,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[2,1,3,1],[1,2,2,2]],[[1,0,2,0],[1,2,2,3],[2,1,3,2],[0,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,1,3,3],[0,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,1,3,2],[0,2,3,1]],[[1,0,2,0],[1,2,2,2],[2,1,3,2],[0,2,2,2]],[[1,0,2,0],[1,2,2,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[2,1,3,2],[1,2,1,2]],[[1,0,2,0],[1,2,2,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[3,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[1,2,2,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[1,2,2,2],[2,1,3,2],[1,2,3,0]],[[1,0,2,0],[1,2,2,3],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[3,2,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,1,3],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,1,2],[2,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,1,2],[1,3,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,1,2],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[2,2,1,2],[1,2,2,2]],[[1,0,2,0],[1,2,2,2],[3,2,2,1],[1,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,2,1],[2,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,2,1],[1,3,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,2,1],[1,2,3,1]],[[1,0,2,0],[1,2,2,2],[2,2,2,1],[1,2,2,2]],[[1,0,2,0],[1,2,2,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,0],[1,2,2,2],[2,2,2,2],[0,2,2,2]],[[1,0,2,0],[1,2,2,2],[3,2,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,2,2],[2,2,2,2],[2,2,2,0]],[[1,0,2,0],[1,2,2,2],[2,2,2,2],[1,3,2,0]],[[1,0,2,0],[1,2,2,2],[2,2,2,2],[1,2,3,0]],[[1,0,2,0],[1,2,2,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[1,2,2,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[1,2,2,2],[2,2,3,1],[0,2,2,2]],[[1,0,2,0],[1,2,2,2],[3,2,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,2,2],[2,2,3,1],[2,2,1,1]],[[1,0,2,0],[1,2,2,2],[2,2,3,1],[1,3,1,1]],[[1,0,2,0],[1,2,2,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[1,2,2,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,0],[1,2,2,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,0],[1,2,2,2],[2,2,3,2],[0,2,1,2]],[[1,0,2,0],[1,2,2,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,0],[1,2,2,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[1,2,2,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,0],[1,2,2,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[1,2,2,2],[2,2,3,2],[0,2,3,0]],[[1,0,2,0],[1,2,2,2],[3,2,3,2],[1,2,0,1]],[[1,0,2,0],[1,2,2,2],[2,2,3,2],[2,2,0,1]],[[1,0,2,0],[1,2,2,2],[2,2,3,2],[1,3,0,1]],[[1,0,2,0],[1,2,2,2],[3,2,3,2],[1,2,1,0]],[[1,0,2,0],[1,2,2,2],[2,2,3,2],[2,2,1,0]],[[1,0,2,0],[1,2,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,3,0,0],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[3,3,0,0],[2,3,3,2],[0,2,1,0]],[[2,2,1,1],[2,3,0,0],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,3,0,0],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[2,3,0,0],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[2,3,0,0],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[3,3,0,0],[2,3,3,2],[0,2,0,1]],[[2,2,1,1],[2,3,0,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,2,2,3],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[1,2,2,2],[3,3,1,2],[0,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,4,1,2],[0,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,1,3],[0,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,1,2],[0,3,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,1,2],[0,2,3,1]],[[1,0,2,0],[1,2,2,2],[2,3,1,2],[0,2,2,2]],[[1,0,2,0],[1,2,2,2],[3,3,1,2],[1,1,2,1]],[[1,0,2,0],[1,2,2,2],[2,4,1,2],[1,1,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,1,2],[2,1,2,1]],[[1,0,2,0],[1,2,2,2],[3,3,2,1],[0,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,4,2,1],[0,2,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,2,1],[0,3,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,2,1],[0,2,3,1]],[[1,0,2,0],[1,2,2,2],[2,3,2,1],[0,2,2,2]],[[1,0,2,0],[1,2,2,2],[3,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,2,2,2],[2,4,2,1],[1,1,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,2,1],[2,1,2,1]],[[1,0,2,0],[1,2,2,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,0],[1,2,2,2],[2,3,2,2],[0,1,2,2]],[[1,0,2,0],[1,2,2,2],[3,3,2,2],[0,2,2,0]],[[1,0,2,0],[1,2,2,2],[2,4,2,2],[0,2,2,0]],[[1,0,2,0],[1,2,2,2],[2,3,2,2],[0,3,2,0]],[[1,0,2,0],[1,2,2,2],[2,3,2,2],[0,2,3,0]],[[1,0,2,0],[1,2,2,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,0],[1,2,2,2],[2,3,2,2],[1,0,2,2]],[[1,0,2,0],[1,2,2,2],[3,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,2,2,2],[2,4,2,2],[1,1,2,0]],[[1,0,2,0],[1,2,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,3,0,0],[2,4,3,2],[0,1,2,0]],[[1,2,1,1],[2,3,0,0],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[3,3,0,0],[2,3,3,2],[0,1,2,0]],[[2,2,1,1],[2,3,0,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,2,2,2],[3,3,3,1],[0,1,2,1]],[[1,0,2,0],[1,2,2,2],[2,4,3,1],[0,1,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,1],[0,1,2,2]],[[1,0,2,0],[1,2,2,2],[3,3,3,1],[0,2,1,1]],[[1,0,2,0],[1,2,2,2],[2,4,3,1],[0,2,1,1]],[[1,0,2,0],[1,2,2,2],[2,3,4,1],[0,2,1,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,1],[0,3,1,1]],[[1,0,2,0],[1,2,2,2],[3,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,2,2,2],[2,4,3,1],[1,0,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,1],[2,0,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,1],[1,0,2,2]],[[1,0,2,0],[1,2,2,2],[3,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,2,2,2],[2,4,3,1],[1,1,1,1]],[[1,0,2,0],[1,2,2,2],[2,3,4,1],[1,1,1,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[2,3,0,0],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[2,3,0,0],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[3,3,0,0],[2,3,3,2],[0,1,1,1]],[[2,2,1,1],[2,3,0,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,2,2,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[0,0,2,2]],[[1,0,2,0],[1,2,2,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,2,2,2],[3,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,2,2,2],[2,4,3,2],[0,1,1,1]],[[1,0,2,0],[1,2,2,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[0,1,1,2]],[[1,0,2,0],[1,2,2,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,2,2,2],[3,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,2,2,2],[2,4,3,2],[0,1,2,0]],[[1,0,2,0],[1,2,2,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[1,2,2,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[0,1,3,0]],[[1,0,2,0],[1,2,2,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,2,2,2],[3,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,2,2,2],[2,4,3,2],[0,2,0,1]],[[1,0,2,0],[1,2,2,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[0,3,0,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[0,2,0,2]],[[1,0,2,0],[1,2,2,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,2,2,2],[3,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,2,2,2],[2,4,3,2],[0,2,1,0]],[[1,0,2,0],[1,2,2,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[1,2,2,2],[2,3,3,3],[0,2,1,0]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,3,0,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,3,0,0],[2,4,3,1],[1,2,0,1]],[[1,2,1,1],[2,3,0,0],[3,3,3,1],[1,2,0,1]],[[1,2,1,1],[3,3,0,0],[2,3,3,1],[1,2,0,1]],[[2,2,1,1],[2,3,0,0],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[1,2,2,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,2,2,2],[3,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,2,2,2],[2,4,3,2],[1,0,1,1]],[[1,0,2,0],[1,2,2,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[2,0,1,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[1,0,1,2]],[[1,0,2,0],[1,2,2,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,2,2,2],[3,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,2,2,2],[2,4,3,2],[1,0,2,0]],[[1,0,2,0],[1,2,2,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[1,2,2,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[2,0,2,0]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[1,0,3,0]],[[1,0,2,0],[1,2,2,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,2,2,2],[3,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,2,2,2],[2,4,3,2],[1,1,0,1]],[[1,0,2,0],[1,2,2,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[2,1,0,1]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[1,1,0,2]],[[1,0,2,0],[1,2,2,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,2,2,2],[3,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,2,2,2],[2,4,3,2],[1,1,1,0]],[[1,0,2,0],[1,2,2,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[1,2,2,2],[2,3,3,3],[1,1,1,0]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,3,0,0],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[2,3,0,0],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[2,3,0,0],[3,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,2,2,2],[3,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,2,2,2],[2,4,3,2],[1,2,0,0]],[[1,0,2,0],[1,2,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[3,3,0,0],[2,3,3,1],[1,1,1,1]],[[2,2,1,1],[2,3,0,0],[2,3,3,1],[1,1,1,1]],[[1,2,1,1],[2,3,0,0],[2,3,3,1],[2,0,2,1]],[[1,2,1,1],[2,3,0,0],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[2,3,0,0],[3,3,3,1],[1,0,2,1]],[[1,2,1,1],[3,3,0,0],[2,3,3,1],[1,0,2,1]],[[2,2,1,1],[2,3,0,0],[2,3,3,1],[1,0,2,1]],[[1,2,1,1],[2,3,0,0],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[2,3,0,0],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[2,3,0,0],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[3,3,0,0],[2,3,3,1],[0,2,1,1]],[[2,2,1,1],[2,3,0,0],[2,3,3,1],[0,2,1,1]],[[1,2,1,1],[2,3,0,0],[2,4,3,1],[0,1,2,1]],[[1,2,1,1],[2,3,0,0],[3,3,3,1],[0,1,2,1]],[[1,2,1,1],[3,3,0,0],[2,3,3,1],[0,1,2,1]],[[2,2,1,1],[2,3,0,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[1,2,3,0],[0,3,4,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,0],[0,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,0],[0,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,0],[0,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,3,0],[1,2,4,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,0],[1,2,3,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,0],[1,2,3,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,0],[1,2,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,0],[1,2,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,3,0],[1,4,2,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,0],[1,3,2,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,0],[1,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,0],[1,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,0],[1,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,2,3,0],[1,4,3,2],[1,1,2,1]],[[1,0,2,0],[1,2,3,0],[1,3,4,2],[1,1,2,1]],[[1,0,2,0],[1,2,3,0],[1,3,3,2],[1,1,3,1]],[[1,0,2,0],[1,2,3,0],[1,3,3,2],[1,1,2,2]],[[1,0,2,0],[1,2,3,0],[1,4,3,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,0],[1,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,0],[1,3,3,2],[2,2,1,1]],[[1,0,2,0],[1,2,3,0],[1,3,3,2],[1,3,1,1]],[[1,0,2,0],[1,2,3,0],[3,1,3,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,0],[2,1,4,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,0],[2,1,3,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,0],[2,1,3,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,0],[2,1,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,0],[2,1,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,3,0],[3,2,2,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,0],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,0],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,0],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,0],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[1,2,3,0],[2,2,4,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,0],[2,2,3,2],[0,3,2,1]],[[1,0,2,0],[1,2,3,0],[2,2,3,2],[0,2,3,1]],[[1,0,2,0],[1,2,3,0],[2,2,3,2],[0,2,2,2]],[[1,0,2,0],[1,2,3,0],[3,2,3,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,0],[2,2,3,2],[2,2,1,1]],[[1,0,2,0],[1,2,3,0],[2,2,3,2],[1,3,1,1]],[[1,0,2,0],[1,2,3,0],[3,3,2,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,0],[2,4,2,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,0],[2,3,2,2],[0,3,2,1]],[[1,0,2,0],[1,2,3,0],[2,3,2,2],[0,2,3,1]],[[1,0,2,0],[1,2,3,0],[2,3,2,2],[0,2,2,2]],[[1,0,2,0],[1,2,3,0],[3,3,2,2],[1,1,2,1]],[[1,0,2,0],[1,2,3,0],[2,4,2,2],[1,1,2,1]],[[1,0,2,0],[1,2,3,0],[2,3,2,2],[2,1,2,1]],[[1,0,2,0],[1,2,3,0],[3,3,3,2],[0,1,2,1]],[[1,0,2,0],[1,2,3,0],[2,4,3,2],[0,1,2,1]],[[1,0,2,0],[1,2,3,0],[2,3,4,2],[0,1,2,1]],[[1,0,2,0],[1,2,3,0],[2,3,3,2],[0,1,3,1]],[[1,0,2,0],[1,2,3,0],[2,3,3,2],[0,1,2,2]],[[1,0,2,0],[1,2,3,0],[3,3,3,2],[0,2,1,1]],[[1,0,2,0],[1,2,3,0],[2,4,3,2],[0,2,1,1]],[[1,0,2,0],[1,2,3,0],[2,3,4,2],[0,2,1,1]],[[1,0,2,0],[1,2,3,0],[2,3,3,2],[0,3,1,1]],[[1,0,2,0],[1,2,3,0],[3,3,3,2],[1,0,2,1]],[[1,0,2,0],[1,2,3,0],[2,4,3,2],[1,0,2,1]],[[1,0,2,0],[1,2,3,0],[2,3,4,2],[1,0,2,1]],[[1,0,2,0],[1,2,3,0],[2,3,3,2],[2,0,2,1]],[[1,0,2,0],[1,2,3,0],[2,3,3,2],[1,0,3,1]],[[1,0,2,0],[1,2,3,0],[2,3,3,2],[1,0,2,2]],[[1,0,2,0],[1,2,3,0],[3,3,3,2],[1,1,1,1]],[[1,0,2,0],[1,2,3,0],[2,4,3,2],[1,1,1,1]],[[1,0,2,0],[1,2,3,0],[2,3,4,2],[1,1,1,1]],[[1,0,2,0],[1,2,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,1,1],[2,3,0,0],[2,3,3,0],[2,1,2,1]],[[1,2,1,1],[2,3,0,0],[2,4,3,0],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[0,2,3,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[0,2,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[0,2,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,3,1],[0,3,2,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[0,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[0,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[0,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,2,4,1],[0,3,3,1],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[0,3,4,1],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[0,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[0,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[0,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,2,4,1],[0,3,3,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[0,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[0,3,3,3],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[0,3,3,2],[1,2,1,2]],[[1,0,2,0],[1,2,4,1],[0,3,3,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[0,3,4,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[0,3,3,3],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[0,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,2,3,1],[0,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,2,3,1],[1,1,3,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,1,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[1,1,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,3,1],[1,2,2,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,2,2,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,2,2,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[1,2,2,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[1,2,2,2],[1,2,2,2]],[[1,0,3,0],[1,2,3,1],[1,2,3,1],[1,2,2,1]],[[1,0,2,0],[1,2,4,1],[1,2,3,1],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[1,2,3,1],[1,2,2,2]],[[1,0,3,0],[1,2,3,1],[1,2,3,2],[1,2,1,1]],[[1,0,2,0],[1,2,4,1],[1,2,3,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[1,2,4,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[1,2,3,3],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[1,2,3,2],[1,2,1,2]],[[1,0,3,0],[1,2,3,1],[1,2,3,2],[1,2,2,0]],[[1,0,2,0],[1,2,4,1],[1,2,3,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[1,2,3,3],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[1,2,3,1],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[1,2,3,1],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[1,2,3,1],[1,4,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,1,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,1,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,1,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,1,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[1,3,1,2],[1,2,2,2]],[[1,0,2,0],[1,2,3,1],[1,4,2,1],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,2,1],[2,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,2,1],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,2,1],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[1,3,2,1],[1,2,2,2]],[[1,0,2,0],[1,2,3,1],[1,3,2,3],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,2,2],[1,1,3,1]],[[1,0,2,0],[1,2,3,1],[1,3,2,2],[1,1,2,2]],[[1,0,2,0],[1,2,3,1],[1,4,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[1,3,2,2],[2,2,2,0]],[[1,0,2,0],[1,2,3,1],[1,3,2,2],[1,3,2,0]],[[1,0,2,0],[1,2,3,1],[1,3,2,2],[1,2,3,0]],[[1,0,2,0],[1,2,3,1],[1,4,3,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,0],[2,2,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,0],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,0],[1,2,3,1]],[[1,0,3,0],[1,2,3,1],[1,3,3,1],[1,1,2,1]],[[1,0,2,0],[1,2,4,1],[1,3,3,1],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[1,4,3,1],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,1],[1,1,2,2]],[[1,0,3,0],[1,2,3,1],[1,3,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,4,1],[1,3,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[1,4,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[1,3,4,1],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,1],[2,2,1,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,1],[1,3,1,1]],[[1,0,2,0],[1,2,4,1],[1,3,3,2],[1,0,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,4,2],[1,0,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,3],[1,0,2,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,2],[1,0,2,2]],[[1,0,3,0],[1,2,3,1],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[1,2,4,1],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[1,2,3,1],[1,4,3,2],[1,1,1,1]],[[1,0,2,0],[1,2,3,1],[1,3,4,2],[1,1,1,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,3],[1,1,1,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,2],[1,1,1,2]],[[1,0,3,0],[1,2,3,1],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[1,2,4,1],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[1,2,3,1],[1,4,3,2],[1,1,2,0]],[[1,0,2,0],[1,2,3,1],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[1,2,3,1],[1,3,3,3],[1,1,2,0]],[[1,0,2,0],[1,2,3,1],[1,3,3,2],[1,1,3,0]],[[1,0,3,0],[1,2,3,1],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[1,2,4,1],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[1,2,3,1],[1,4,3,2],[1,2,0,1]],[[1,0,2,0],[1,2,3,1],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,3],[1,2,0,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,2],[2,2,0,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,2],[1,3,0,1]],[[1,0,2,0],[1,2,3,1],[1,3,3,2],[1,2,0,2]],[[1,0,3,0],[1,2,3,1],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[1,2,4,1],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[1,2,3,1],[1,4,3,2],[1,2,1,0]],[[1,0,2,0],[1,2,3,1],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[1,2,3,1],[1,3,3,3],[1,2,1,0]],[[1,0,2,0],[1,2,3,1],[1,3,3,2],[2,2,1,0]],[[1,0,2,0],[1,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,3,0,0],[3,3,3,0],[1,1,2,1]],[[1,2,1,1],[3,3,0,0],[2,3,3,0],[1,1,2,1]],[[2,2,1,1],[2,3,0,0],[2,3,3,0],[1,1,2,1]],[[1,2,1,1],[2,3,0,0],[2,3,3,0],[0,2,3,1]],[[1,2,1,1],[2,3,0,0],[2,3,3,0],[0,3,2,1]],[[1,2,1,1],[2,3,0,0],[2,4,3,0],[0,2,2,1]],[[1,2,1,1],[2,3,0,0],[3,3,3,0],[0,2,2,1]],[[1,2,1,1],[3,3,0,0],[2,3,3,0],[0,2,2,1]],[[2,2,1,1],[2,3,0,0],[2,3,3,0],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,0,3,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,0,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[2,0,3,2],[1,2,2,2]],[[1,0,2,0],[1,2,3,1],[3,1,2,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,1,2,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,1,2,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,1,2,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[2,1,2,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[2,1,2,2],[1,2,2,2]],[[1,0,3,0],[1,2,3,1],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[1,2,4,1],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[3,1,3,1],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[2,1,3,1],[1,2,2,2]],[[1,0,2,0],[1,2,3,1],[2,1,3,3],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,1,3,2],[0,2,3,1]],[[1,0,2,0],[1,2,3,1],[2,1,3,2],[0,2,2,2]],[[1,0,3,0],[1,2,3,1],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[1,2,4,1],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[2,1,4,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[2,1,3,3],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[2,1,3,2],[1,2,1,2]],[[1,0,3,0],[1,2,3,1],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,2,4,1],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[3,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[2,1,3,3],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[1,2,3,1],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[1,2,3,1],[2,1,3,2],[1,2,3,0]],[[1,0,2,0],[1,2,3,1],[3,2,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,1,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,1,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,1,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,1,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[2,2,1,2],[1,2,2,2]],[[1,0,2,0],[1,2,3,1],[3,2,2,1],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,2,1],[2,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,2,1],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,2,1],[1,2,3,1]],[[1,0,2,0],[1,2,3,1],[2,2,2,1],[1,2,2,2]],[[1,0,2,0],[1,2,3,1],[2,2,2,3],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,2,2],[0,3,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,2,2],[0,2,3,1]],[[1,0,2,0],[1,2,3,1],[2,2,2,2],[0,2,2,2]],[[1,0,2,0],[1,2,3,1],[3,2,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,1],[2,2,2,2],[2,2,2,0]],[[1,0,2,0],[1,2,3,1],[2,2,2,2],[1,3,2,0]],[[1,0,2,0],[1,2,3,1],[2,2,2,2],[1,2,3,0]],[[1,0,2,0],[1,2,3,1],[3,2,3,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,0],[2,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,0],[1,3,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,0],[1,2,3,1]],[[1,0,3,0],[1,2,3,1],[2,2,3,1],[0,2,2,1]],[[1,0,2,0],[1,2,4,1],[2,2,3,1],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,1],[0,2,2,2]],[[1,0,2,0],[1,2,3,1],[3,2,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,1],[2,2,1,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,1],[1,3,1,1]],[[1,0,3,0],[1,2,3,1],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[1,2,4,1],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[1,2,3,1],[2,2,4,2],[0,2,1,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,3],[0,2,1,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,2],[0,2,1,2]],[[1,0,3,0],[1,2,3,1],[2,2,3,2],[0,2,2,0]],[[1,0,2,0],[1,2,4,1],[2,2,3,2],[0,2,2,0]],[[1,0,2,0],[1,2,3,1],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[1,2,3,1],[2,2,3,3],[0,2,2,0]],[[1,0,2,0],[1,2,3,1],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[1,2,3,1],[2,2,3,2],[0,2,3,0]],[[1,0,2,0],[1,2,3,1],[3,2,3,2],[1,2,0,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,2],[2,2,0,1]],[[1,0,2,0],[1,2,3,1],[2,2,3,2],[1,3,0,1]],[[1,0,2,0],[1,2,3,1],[3,2,3,2],[1,2,1,0]],[[1,0,2,0],[1,2,3,1],[2,2,3,2],[2,2,1,0]],[[1,0,2,0],[1,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,0,2,0],[1,2,3,1],[3,3,1,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,4,1,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,1,3],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,1,2],[0,3,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,1,2],[0,2,3,1]],[[1,0,2,0],[1,2,3,1],[2,3,1,2],[0,2,2,2]],[[1,0,2,0],[1,2,3,1],[3,3,1,2],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[2,4,1,2],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,1,2],[2,1,2,1]],[[1,0,2,0],[1,2,3,1],[3,3,2,1],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,4,2,1],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,2,1],[0,3,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,2,1],[0,2,3,1]],[[1,0,2,0],[1,2,3,1],[2,3,2,1],[0,2,2,2]],[[1,0,2,0],[1,2,3,1],[3,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[2,4,2,1],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,2,1],[2,1,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,2,3],[0,1,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,2,2],[0,1,3,1]],[[1,0,2,0],[1,2,3,1],[2,3,2,2],[0,1,2,2]],[[1,0,2,0],[1,2,3,1],[3,3,2,2],[0,2,2,0]],[[1,0,2,0],[1,2,3,1],[2,4,2,2],[0,2,2,0]],[[1,0,2,0],[1,2,3,1],[2,3,2,2],[0,3,2,0]],[[1,0,2,0],[1,2,3,1],[2,3,2,2],[0,2,3,0]],[[1,0,2,0],[1,2,3,1],[2,3,2,3],[1,0,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,2,2],[1,0,3,1]],[[1,0,2,0],[1,2,3,1],[2,3,2,2],[1,0,2,2]],[[1,0,2,0],[1,2,3,1],[3,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,2,3,1],[2,4,2,2],[1,1,2,0]],[[1,0,2,0],[1,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,3,0,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,3,0,0],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[2,3,0,0],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[3,3,0,0],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,2,3,1],[3,3,3,0],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,4,3,0],[0,2,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,0],[0,3,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,0],[0,2,3,1]],[[1,0,2,0],[1,2,3,1],[3,3,3,0],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[2,4,3,0],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,0],[2,1,2,1]],[[1,0,3,0],[1,2,3,1],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[1,2,4,1],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[1,2,3,1],[3,3,3,1],[0,1,2,1]],[[1,0,2,0],[1,2,3,1],[2,4,3,1],[0,1,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,1],[0,1,2,2]],[[1,0,3,0],[1,2,3,1],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[1,2,4,1],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[1,2,3,1],[3,3,3,1],[0,2,1,1]],[[1,0,2,0],[1,2,3,1],[2,4,3,1],[0,2,1,1]],[[1,0,2,0],[1,2,3,1],[2,3,4,1],[0,2,1,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,1],[0,3,1,1]],[[1,0,3,0],[1,2,3,1],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,2,4,1],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,2,3,1],[3,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,2,3,1],[2,4,3,1],[1,0,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,1],[2,0,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,1],[1,0,2,2]],[[1,0,3,0],[1,2,3,1],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,2,4,1],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,2,3,1],[3,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,2,3,1],[2,4,3,1],[1,1,1,1]],[[1,0,2,0],[1,2,3,1],[2,3,4,1],[1,1,1,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,1],[2,1,1,1]],[[1,0,2,0],[1,2,3,1],[3,3,3,1],[1,2,0,1]],[[1,0,2,0],[1,2,3,1],[2,4,3,1],[1,2,0,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,1],[2,2,0,1]],[[2,2,1,1],[2,3,0,0],[2,3,2,2],[1,1,2,0]],[[1,2,1,1],[2,3,0,0],[2,3,2,2],[0,2,3,0]],[[1,0,3,0],[1,2,3,1],[2,3,3,2],[0,0,2,1]],[[1,0,2,0],[1,2,4,1],[2,3,3,2],[0,0,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,4,2],[0,0,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,3],[0,0,2,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[0,0,2,2]],[[1,0,3,0],[1,2,3,1],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,2,4,1],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,2,3,1],[3,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,2,3,1],[2,4,3,2],[0,1,1,1]],[[1,0,2,0],[1,2,3,1],[2,3,4,2],[0,1,1,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,3],[0,1,1,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[0,1,1,2]],[[1,0,3,0],[1,2,3,1],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,2,4,1],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,2,3,1],[3,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,2,3,1],[2,4,3,2],[0,1,2,0]],[[1,0,2,0],[1,2,3,1],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[1,2,3,1],[2,3,3,3],[0,1,2,0]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[0,1,3,0]],[[1,0,3,0],[1,2,3,1],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,2,4,1],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,2,3,1],[3,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,2,3,1],[2,4,3,2],[0,2,0,1]],[[1,0,2,0],[1,2,3,1],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,3],[0,2,0,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[0,3,0,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[0,2,0,2]],[[1,0,3,0],[1,2,3,1],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,2,4,1],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,2,3,1],[3,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,2,3,1],[2,4,3,2],[0,2,1,0]],[[1,0,2,0],[1,2,3,1],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[1,2,3,1],[2,3,3,3],[0,2,1,0]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,3,0,0],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[2,3,0,0],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[2,3,0,0],[3,3,2,2],[0,2,2,0]],[[1,2,1,1],[3,3,0,0],[2,3,2,2],[0,2,2,0]],[[2,2,1,1],[2,3,0,0],[2,3,2,2],[0,2,2,0]],[[1,0,3,0],[1,2,3,1],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,2,4,1],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,2,3,1],[3,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,2,3,1],[2,4,3,2],[1,0,1,1]],[[1,0,2,0],[1,2,3,1],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,3],[1,0,1,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[2,0,1,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[1,0,1,2]],[[1,0,3,0],[1,2,3,1],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,2,4,1],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,2,3,1],[3,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,2,3,1],[2,4,3,2],[1,0,2,0]],[[1,0,2,0],[1,2,3,1],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[1,2,3,1],[2,3,3,3],[1,0,2,0]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[2,0,2,0]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[1,0,3,0]],[[1,0,3,0],[1,2,3,1],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,2,4,1],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,2,3,1],[3,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,2,3,1],[2,4,3,2],[1,1,0,1]],[[1,0,2,0],[1,2,3,1],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,3],[1,1,0,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[2,1,0,1]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[1,1,0,2]],[[1,0,3,0],[1,2,3,1],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,2,4,1],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,2,3,1],[3,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,2,3,1],[2,4,3,2],[1,1,1,0]],[[1,0,2,0],[1,2,3,1],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[1,2,3,1],[2,3,3,3],[1,1,1,0]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,3,0,0],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[2,3,0,0],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[2,3,0,0],[3,3,2,1],[1,1,2,1]],[[1,2,1,1],[3,3,0,0],[2,3,2,1],[1,1,2,1]],[[2,2,1,1],[2,3,0,0],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,2,3,1],[3,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,2,3,1],[2,4,3,2],[1,2,0,0]],[[1,0,2,0],[1,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,3,0,0],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[2,3,0,0],[2,3,2,1],[0,2,3,1]],[[1,2,1,1],[2,3,0,0],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[2,3,0,0],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[2,3,0,0],[3,3,2,1],[0,2,2,1]],[[1,2,1,1],[3,3,0,0],[2,3,2,1],[0,2,2,1]],[[2,2,1,1],[2,3,0,0],[2,3,2,1],[0,2,2,1]],[[1,2,1,1],[2,3,0,0],[2,3,2,0],[1,3,2,1]],[[1,2,1,1],[2,3,0,0],[2,3,2,0],[2,2,2,1]],[[1,2,1,1],[2,3,0,0],[3,3,2,0],[1,2,2,1]],[[1,2,1,1],[3,3,0,0],[2,3,2,0],[1,2,2,1]],[[2,2,1,1],[2,3,0,0],[2,3,2,0],[1,2,2,1]],[[1,2,1,1],[2,3,0,0],[2,3,1,2],[1,3,2,0]],[[1,2,1,1],[2,3,0,0],[2,3,1,2],[2,2,2,0]],[[1,2,1,1],[2,3,0,0],[3,3,1,2],[1,2,2,0]],[[1,2,1,1],[3,3,0,0],[2,3,1,2],[1,2,2,0]],[[2,2,1,1],[2,3,0,0],[2,3,1,2],[1,2,2,0]],[[1,2,1,1],[2,3,0,0],[2,3,1,2],[2,1,2,1]],[[1,2,1,1],[2,3,0,0],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[2,3,0,0],[3,3,1,2],[1,1,2,1]],[[1,0,2,0],[1,2,4,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,3],[0,3,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[0,3,1,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[0,3,1,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,2],[0,3,1,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,2],[0,3,1,2],[1,2,2,2]],[[1,0,2,0],[1,2,4,2],[0,3,2,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,3],[0,3,2,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[0,3,2,3],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[0,3,2,2],[1,2,1,2]],[[1,0,2,0],[1,2,4,2],[0,3,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,3],[0,3,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[0,3,2,3],[1,2,2,0]],[[1,0,2,0],[1,2,4,2],[0,3,3,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,3],[0,3,3,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[0,3,4,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[0,3,3,0],[1,3,2,1]],[[1,0,2,0],[1,2,3,2],[0,3,3,0],[1,2,3,1]],[[1,0,2,0],[1,2,3,2],[0,3,3,0],[1,2,2,2]],[[1,0,2,0],[1,2,4,2],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,3,3],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[0,3,4,1],[1,2,1,1]],[[1,0,2,0],[1,2,4,2],[0,3,3,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,3],[0,3,3,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[0,3,4,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[0,3,3,1],[1,3,2,0]],[[1,0,2,0],[1,2,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,1,1],[3,3,0,0],[2,3,1,2],[1,1,2,1]],[[2,2,1,1],[2,3,0,0],[2,3,1,2],[1,1,2,1]],[[1,2,1,1],[2,3,0,0],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[2,3,0,0],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[2,3,0,0],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[2,3,0,0],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[2,3,0,0],[3,3,1,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,3],[1,0,3,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,0,3,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,0,3,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,2],[1,0,3,2],[1,2,2,2]],[[1,0,3,0],[1,2,3,2],[1,2,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,4,2],[1,2,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,3],[1,2,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,2,1,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,2,1,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,2,1,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,2],[1,2,1,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,2],[1,2,1,2],[1,2,2,2]],[[1,0,3,0],[1,2,3,2],[1,2,2,2],[1,2,1,1]],[[1,0,2,0],[1,2,4,2],[1,2,2,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,3],[1,2,2,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[1,2,2,3],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[1,2,2,2],[1,2,1,2]],[[1,0,3,0],[1,2,3,2],[1,2,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,4,2],[1,2,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,3],[1,2,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[1,2,2,3],[1,2,2,0]],[[1,0,3,0],[1,2,3,2],[1,2,3,0],[1,2,2,1]],[[1,0,2,0],[1,2,4,2],[1,2,3,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,3],[1,2,3,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,2,4,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,2,3,0],[2,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,2,3,0],[1,3,2,1]],[[1,0,2,0],[1,2,3,2],[1,2,3,0],[1,2,3,1]],[[1,0,2,0],[1,2,3,2],[1,2,3,0],[1,2,2,2]],[[1,0,3,0],[1,2,3,2],[1,2,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,4,2],[1,2,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,3,3],[1,2,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[1,2,4,1],[1,2,1,1]],[[1,0,3,0],[1,2,3,2],[1,2,3,1],[1,2,2,0]],[[1,0,2,0],[1,2,4,2],[1,2,3,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,3],[1,2,3,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[1,2,4,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[1,2,3,1],[2,2,2,0]],[[1,0,2,0],[1,2,3,2],[1,2,3,1],[1,3,2,0]],[[1,0,2,0],[1,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,1,1],[3,3,0,0],[2,3,1,2],[0,2,2,1]],[[2,2,1,1],[2,3,0,0],[2,3,1,2],[0,2,2,1]],[[1,2,1,1],[2,3,0,0],[2,3,1,1],[1,3,2,1]],[[1,2,1,1],[2,3,0,0],[2,3,1,1],[2,2,2,1]],[[1,2,1,1],[2,3,0,0],[3,3,1,1],[1,2,2,1]],[[1,2,1,1],[3,3,0,0],[2,3,1,1],[1,2,2,1]],[[2,2,1,1],[2,3,0,0],[2,3,1,1],[1,2,2,1]],[[1,2,1,1],[2,3,0,0],[2,3,0,2],[1,3,2,1]],[[1,2,1,1],[2,3,0,0],[2,3,0,2],[2,2,2,1]],[[1,0,3,0],[1,2,3,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[1,2,4,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,3],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,4,0,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,0,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,0,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,0,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,0,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,2],[1,3,0,2],[1,2,2,2]],[[1,0,3,0],[1,2,3,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[1,2,4,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[1,2,3,3],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,1,3],[1,1,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,1,2],[1,1,3,1]],[[1,0,2,0],[1,2,3,2],[1,3,1,2],[1,1,2,2]],[[1,0,2,0],[1,2,3,2],[1,4,2,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,2,0],[2,2,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,2,0],[1,3,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,2,0],[1,2,3,1]],[[1,0,2,0],[1,2,3,2],[1,3,2,0],[1,2,2,2]],[[1,0,2,0],[1,2,3,2],[1,4,2,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[1,3,2,1],[2,2,2,0]],[[1,0,2,0],[1,2,3,2],[1,3,2,1],[1,3,2,0]],[[1,0,2,0],[1,2,3,2],[1,3,2,1],[1,2,3,0]],[[1,0,2,0],[1,2,4,2],[1,3,2,2],[1,0,2,1]],[[1,0,2,0],[1,2,3,3],[1,3,2,2],[1,0,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,2,3],[1,0,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,2,2],[1,0,2,2]],[[1,0,3,0],[1,2,3,2],[1,3,2,2],[1,1,1,1]],[[1,0,2,0],[1,2,4,2],[1,3,2,2],[1,1,1,1]],[[1,0,2,0],[1,2,3,3],[1,3,2,2],[1,1,1,1]],[[1,0,2,0],[1,2,3,2],[1,3,2,3],[1,1,1,1]],[[1,0,2,0],[1,2,3,2],[1,3,2,2],[1,1,1,2]],[[1,0,3,0],[1,2,3,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,2,4,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,2,3,3],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,2,3,2],[1,3,2,3],[1,1,2,0]],[[1,0,3,0],[1,2,3,2],[1,3,2,2],[1,2,0,1]],[[1,0,2,0],[1,2,4,2],[1,3,2,2],[1,2,0,1]],[[1,0,2,0],[1,2,3,3],[1,3,2,2],[1,2,0,1]],[[1,0,2,0],[1,2,3,2],[1,3,2,3],[1,2,0,1]],[[1,0,2,0],[1,2,3,2],[1,3,2,2],[1,2,0,2]],[[1,0,3,0],[1,2,3,2],[1,3,2,2],[1,2,1,0]],[[1,0,2,0],[1,2,4,2],[1,3,2,2],[1,2,1,0]],[[1,0,2,0],[1,2,3,3],[1,3,2,2],[1,2,1,0]],[[1,0,2,0],[1,2,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,1,1],[2,3,0,0],[3,3,0,2],[1,2,2,1]],[[1,2,1,1],[3,3,0,0],[2,3,0,2],[1,2,2,1]],[[2,2,1,1],[2,3,0,0],[2,3,0,2],[1,2,2,1]],[[1,0,3,0],[1,2,3,2],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[1,2,4,2],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[1,2,3,3],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[1,2,3,2],[1,4,3,0],[1,1,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,4,0],[1,1,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,3,0],[1,1,3,1]],[[1,0,2,0],[1,2,3,2],[1,3,3,0],[1,1,2,2]],[[1,0,3,0],[1,2,3,2],[1,3,3,0],[1,2,1,1]],[[1,0,2,0],[1,2,4,2],[1,3,3,0],[1,2,1,1]],[[1,0,2,0],[1,2,3,3],[1,3,3,0],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[1,4,3,0],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[1,3,4,0],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[1,3,3,0],[2,2,1,1]],[[1,0,2,0],[1,2,3,2],[1,3,3,0],[1,3,1,1]],[[1,0,2,0],[1,2,4,2],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,2,3,3],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,2,3,2],[1,3,4,1],[1,0,2,1]],[[1,0,3,0],[1,2,3,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,2,4,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,2,3,3],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,2,3,2],[1,4,3,1],[1,1,1,1]],[[1,0,2,0],[1,2,3,2],[1,3,4,1],[1,1,1,1]],[[1,0,3,0],[1,2,3,2],[1,3,3,1],[1,1,2,0]],[[1,0,2,0],[1,2,4,2],[1,3,3,1],[1,1,2,0]],[[1,0,2,0],[1,2,3,3],[1,3,3,1],[1,1,2,0]],[[1,0,2,0],[1,2,3,2],[1,4,3,1],[1,1,2,0]],[[1,0,2,0],[1,2,3,2],[1,3,4,1],[1,1,2,0]],[[1,0,2,0],[1,2,3,2],[1,3,3,1],[1,1,3,0]],[[1,0,3,0],[1,2,3,2],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[1,2,4,2],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[1,2,3,3],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[1,2,3,2],[1,4,3,1],[1,2,0,1]],[[1,0,2,0],[1,2,3,2],[1,3,4,1],[1,2,0,1]],[[1,0,2,0],[1,2,3,2],[1,3,3,1],[2,2,0,1]],[[1,0,2,0],[1,2,3,2],[1,3,3,1],[1,3,0,1]],[[1,0,3,0],[1,2,3,2],[1,3,3,1],[1,2,1,0]],[[1,0,2,0],[1,2,4,2],[1,3,3,1],[1,2,1,0]],[[1,0,2,0],[1,2,3,3],[1,3,3,1],[1,2,1,0]],[[1,0,2,0],[1,2,3,2],[1,4,3,1],[1,2,1,0]],[[1,0,2,0],[1,2,3,2],[1,3,4,1],[1,2,1,0]],[[1,0,2,0],[1,2,3,2],[1,3,3,1],[2,2,1,0]],[[1,0,2,0],[1,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,3,0,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,3,0,0],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[2,3,0,0],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[3,3,0,0],[2,2,3,2],[1,2,1,0]],[[1,0,2,0],[1,2,4,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,2,3,3],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,2,3,2],[1,3,3,3],[1,1,0,1]],[[2,2,1,1],[2,3,0,0],[2,2,3,2],[1,2,1,0]],[[1,2,1,1],[2,3,0,0],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[2,3,0,0],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[2,3,0,0],[3,2,3,2],[1,2,0,1]],[[1,2,1,1],[3,3,0,0],[2,2,3,2],[1,2,0,1]],[[2,2,1,1],[2,3,0,0],[2,2,3,2],[1,2,0,1]],[[1,2,1,1],[2,3,0,0],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[2,3,0,0],[2,2,3,1],[2,2,1,1]],[[1,2,1,1],[2,3,0,0],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[3,3,0,0],[2,2,3,1],[1,2,1,1]],[[2,2,1,1],[2,3,0,0],[2,2,3,1],[1,2,1,1]],[[1,2,1,1],[2,3,0,0],[2,2,3,0],[1,2,3,1]],[[1,2,1,1],[2,3,0,0],[2,2,3,0],[1,3,2,1]],[[1,2,1,1],[2,3,0,0],[2,2,3,0],[2,2,2,1]],[[1,2,1,1],[2,3,0,0],[3,2,3,0],[1,2,2,1]],[[1,2,1,1],[3,3,0,0],[2,2,3,0],[1,2,2,1]],[[2,2,1,1],[2,3,0,0],[2,2,3,0],[1,2,2,1]],[[1,2,1,1],[2,3,0,0],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[2,3,0,0],[2,2,2,2],[1,3,2,0]],[[1,2,1,1],[2,3,0,0],[2,2,2,2],[2,2,2,0]],[[1,2,1,1],[2,3,0,0],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[3,3,0,0],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,3],[2,0,3,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,0,3,3],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,0,3,2],[0,2,3,1]],[[1,0,2,0],[1,2,3,2],[2,0,3,2],[0,2,2,2]],[[1,0,3,0],[1,2,3,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,4,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,3],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[3,1,1,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,1,1,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,1,1,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,1,1,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,2],[2,1,1,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,2],[2,1,1,2],[1,2,2,2]],[[1,0,3,0],[1,2,3,2],[2,1,2,2],[1,2,1,1]],[[1,0,2,0],[1,2,4,2],[2,1,2,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,3],[2,1,2,2],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[2,1,2,3],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[2,1,2,2],[1,2,1,2]],[[1,0,3,0],[1,2,3,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,4,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,3],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[2,1,2,3],[1,2,2,0]],[[1,0,3,0],[1,2,3,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[1,2,4,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,3],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[3,1,3,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,1,4,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,1,3,0],[2,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,1,3,0],[1,3,2,1]],[[1,0,2,0],[1,2,3,2],[2,1,3,0],[1,2,3,1]],[[1,0,2,0],[1,2,3,2],[2,1,3,0],[1,2,2,2]],[[1,0,3,0],[1,2,3,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,4,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,3,3],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[2,1,4,1],[1,2,1,1]],[[1,0,3,0],[1,2,3,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,0],[1,2,4,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,3],[2,1,3,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[3,1,3,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[2,1,4,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[2,1,3,1],[2,2,2,0]],[[1,0,2,0],[1,2,3,2],[2,1,3,1],[1,3,2,0]],[[1,0,2,0],[1,2,3,2],[2,1,3,1],[1,2,3,0]],[[2,2,1,1],[2,3,0,0],[2,2,2,2],[1,2,2,0]],[[1,2,1,1],[2,3,0,0],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[2,3,0,0],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[2,3,0,0],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[2,3,0,0],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[2,3,0,0],[3,2,2,1],[1,2,2,1]],[[1,2,1,1],[3,3,0,0],[2,2,2,1],[1,2,2,1]],[[2,2,1,1],[2,3,0,0],[2,2,2,1],[1,2,2,1]],[[1,2,1,1],[2,3,0,0],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[2,3,0,0],[2,2,1,2],[1,2,3,1]],[[1,0,3,0],[1,2,3,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[1,2,4,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,3],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[3,2,0,2],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,0,3],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,0,2],[2,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,0,2],[1,3,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,0,2],[1,2,3,1]],[[1,0,2,0],[1,2,3,2],[2,2,0,2],[1,2,2,2]],[[1,0,3,0],[1,2,3,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[1,2,4,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,3],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,1,3],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,1,2],[0,3,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,1,2],[0,2,3,1]],[[1,0,2,0],[1,2,3,2],[2,2,1,2],[0,2,2,2]],[[1,0,2,0],[1,2,3,2],[3,2,2,0],[1,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,2,0],[2,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,2,0],[1,3,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,2,0],[1,2,3,1]],[[1,0,2,0],[1,2,3,2],[2,2,2,0],[1,2,2,2]],[[1,0,2,0],[1,2,3,2],[3,2,2,1],[1,2,2,0]],[[1,0,2,0],[1,2,3,2],[2,2,2,1],[2,2,2,0]],[[1,0,2,0],[1,2,3,2],[2,2,2,1],[1,3,2,0]],[[1,0,2,0],[1,2,3,2],[2,2,2,1],[1,2,3,0]],[[1,0,3,0],[1,2,3,2],[2,2,2,2],[0,2,1,1]],[[1,0,2,0],[1,2,4,2],[2,2,2,2],[0,2,1,1]],[[1,0,2,0],[1,2,3,3],[2,2,2,2],[0,2,1,1]],[[1,0,2,0],[1,2,3,2],[2,2,2,3],[0,2,1,1]],[[1,0,2,0],[1,2,3,2],[2,2,2,2],[0,2,1,2]],[[1,0,3,0],[1,2,3,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[1,2,4,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[1,2,3,3],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[1,2,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,1,1],[2,3,0,0],[2,2,1,2],[1,3,2,1]],[[1,2,1,1],[2,3,0,0],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[2,3,0,0],[3,2,1,2],[1,2,2,1]],[[1,2,1,1],[3,3,0,0],[2,2,1,2],[1,2,2,1]],[[2,2,1,1],[2,3,0,0],[2,2,1,2],[1,2,2,1]],[[1,0,3,0],[1,2,3,2],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[1,2,4,2],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[1,2,3,3],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,4,0],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,3,0],[0,3,2,1]],[[1,0,2,0],[1,2,3,2],[2,2,3,0],[0,2,3,1]],[[1,0,2,0],[1,2,3,2],[2,2,3,0],[0,2,2,2]],[[1,0,2,0],[1,2,3,2],[3,2,3,0],[1,2,1,1]],[[1,0,2,0],[1,2,3,2],[2,2,3,0],[2,2,1,1]],[[1,0,2,0],[1,2,3,2],[2,2,3,0],[1,3,1,1]],[[1,0,3,0],[1,2,3,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[1,2,4,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[1,2,3,3],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[1,2,3,2],[2,2,4,1],[0,2,1,1]],[[1,0,3,0],[1,2,3,2],[2,2,3,1],[0,2,2,0]],[[1,0,2,0],[1,2,4,2],[2,2,3,1],[0,2,2,0]],[[1,0,2,0],[1,2,3,3],[2,2,3,1],[0,2,2,0]],[[1,0,2,0],[1,2,3,2],[2,2,4,1],[0,2,2,0]],[[1,0,2,0],[1,2,3,2],[2,2,3,1],[0,3,2,0]],[[1,0,2,0],[1,2,3,2],[2,2,3,1],[0,2,3,0]],[[1,0,2,0],[1,2,3,2],[3,2,3,1],[1,2,0,1]],[[1,0,2,0],[1,2,3,2],[2,2,3,1],[2,2,0,1]],[[1,0,2,0],[1,2,3,2],[2,2,3,1],[1,3,0,1]],[[1,0,2,0],[1,2,3,2],[3,2,3,1],[1,2,1,0]],[[1,0,2,0],[1,2,3,2],[2,2,3,1],[2,2,1,0]],[[1,0,2,0],[1,2,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[2,3,0,0],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,3,0,0],[1,3,3,2],[2,2,1,0]],[[1,2,1,1],[2,3,0,0],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[2,3,0,0],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[2,3,0,0],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[2,3,0,0],[1,4,3,2],[1,2,0,1]],[[1,2,1,1],[2,3,0,0],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[2,3,0,0],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[2,3,0,0],[1,4,3,1],[1,2,1,1]],[[1,2,1,1],[2,3,0,0],[1,3,3,0],[1,2,3,1]],[[1,2,1,1],[2,3,0,0],[1,3,3,0],[1,3,2,1]],[[1,2,1,1],[2,3,0,0],[1,3,3,0],[2,2,2,1]],[[1,2,1,1],[2,3,0,0],[1,4,3,0],[1,2,2,1]],[[1,2,1,1],[2,3,0,0],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[2,3,0,0],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[2,3,0,0],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[2,3,0,0],[1,4,2,2],[1,2,2,0]],[[1,2,1,1],[2,3,0,0],[1,3,2,1],[1,2,2,2]],[[1,2,1,1],[2,3,0,0],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[2,3,0,0],[1,3,2,1],[1,3,2,1]],[[1,2,1,1],[2,3,0,0],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[2,3,0,0],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[2,3,0,0],[1,3,1,2],[1,2,2,2]],[[1,2,1,1],[2,3,0,0],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[2,3,0,0],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[2,3,0,0],[1,3,1,2],[2,2,2,1]],[[1,2,1,1],[2,3,0,0],[1,4,1,2],[1,2,2,1]],[[1,0,3,0],[1,2,3,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[1,2,4,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,3],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[3,3,0,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,4,0,2],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,0,3],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,0,2],[0,3,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,0,2],[0,2,3,1]],[[1,0,2,0],[1,2,3,2],[2,3,0,2],[0,2,2,2]],[[1,0,2,0],[1,2,3,2],[3,3,0,2],[1,1,2,1]],[[1,0,2,0],[1,2,3,2],[2,4,0,2],[1,1,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,0,2],[2,1,2,1]],[[1,0,3,0],[1,2,3,2],[2,3,1,2],[0,1,2,1]],[[1,0,2,0],[1,2,4,2],[2,3,1,2],[0,1,2,1]],[[1,0,2,0],[1,2,3,3],[2,3,1,2],[0,1,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,1,3],[0,1,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,1,2],[0,1,3,1]],[[1,0,2,0],[1,2,3,2],[2,3,1,2],[0,1,2,2]],[[1,0,3,0],[1,2,3,2],[2,3,1,2],[1,0,2,1]],[[1,0,2,0],[1,2,4,2],[2,3,1,2],[1,0,2,1]],[[1,0,2,0],[1,2,3,3],[2,3,1,2],[1,0,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,1,3],[1,0,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,1,2],[1,0,3,1]],[[1,0,2,0],[1,2,3,2],[2,3,1,2],[1,0,2,2]],[[1,0,2,0],[1,2,3,2],[3,3,2,0],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,4,2,0],[0,2,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,0],[0,3,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,0],[0,2,3,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,0],[0,2,2,2]],[[1,0,2,0],[1,2,3,2],[3,3,2,0],[1,1,2,1]],[[1,0,2,0],[1,2,3,2],[2,4,2,0],[1,1,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,0],[2,1,2,1]],[[1,0,2,0],[1,2,3,2],[3,3,2,1],[0,2,2,0]],[[1,0,2,0],[1,2,3,2],[2,4,2,1],[0,2,2,0]],[[1,0,2,0],[1,2,3,2],[2,3,2,1],[0,3,2,0]],[[1,0,2,0],[1,2,3,2],[2,3,2,1],[0,2,3,0]],[[1,0,2,0],[1,2,3,2],[3,3,2,1],[1,1,2,0]],[[1,0,2,0],[1,2,3,2],[2,4,2,1],[1,1,2,0]],[[1,0,2,0],[1,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,0,3,0],[1,2,3,2],[2,3,2,2],[0,0,2,1]],[[1,0,2,0],[1,2,4,2],[2,3,2,2],[0,0,2,1]],[[1,0,2,0],[1,2,3,3],[2,3,2,2],[0,0,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,3],[0,0,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,2],[0,0,2,2]],[[1,0,3,0],[1,2,3,2],[2,3,2,2],[0,1,1,1]],[[1,0,2,0],[1,2,4,2],[2,3,2,2],[0,1,1,1]],[[1,0,2,0],[1,2,3,3],[2,3,2,2],[0,1,1,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,3],[0,1,1,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,2],[0,1,1,2]],[[1,0,3,0],[1,2,3,2],[2,3,2,2],[0,1,2,0]],[[1,0,2,0],[1,2,4,2],[2,3,2,2],[0,1,2,0]],[[1,0,2,0],[1,2,3,3],[2,3,2,2],[0,1,2,0]],[[1,0,2,0],[1,2,3,2],[2,3,2,3],[0,1,2,0]],[[1,0,3,0],[1,2,3,2],[2,3,2,2],[0,2,0,1]],[[1,0,2,0],[1,2,4,2],[2,3,2,2],[0,2,0,1]],[[1,0,2,0],[1,2,3,3],[2,3,2,2],[0,2,0,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,3],[0,2,0,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,2],[0,2,0,2]],[[1,0,3,0],[1,2,3,2],[2,3,2,2],[0,2,1,0]],[[1,0,2,0],[1,2,4,2],[2,3,2,2],[0,2,1,0]],[[1,0,2,0],[1,2,3,3],[2,3,2,2],[0,2,1,0]],[[1,0,2,0],[1,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,1],[2,2,3,2],[3,3,3,0],[1,0,0,0]],[[1,2,1,1],[3,2,3,2],[2,3,3,0],[1,0,0,0]],[[1,3,1,1],[2,2,3,2],[2,3,3,0],[1,0,0,0]],[[2,2,1,1],[2,2,3,2],[2,3,3,0],[1,0,0,0]],[[1,0,3,0],[1,2,3,2],[2,3,2,2],[1,0,1,1]],[[1,0,2,0],[1,2,4,2],[2,3,2,2],[1,0,1,1]],[[1,0,2,0],[1,2,3,3],[2,3,2,2],[1,0,1,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,3],[1,0,1,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,2],[1,0,1,2]],[[1,0,3,0],[1,2,3,2],[2,3,2,2],[1,0,2,0]],[[1,0,2,0],[1,2,4,2],[2,3,2,2],[1,0,2,0]],[[1,0,2,0],[1,2,3,3],[2,3,2,2],[1,0,2,0]],[[1,0,2,0],[1,2,3,2],[2,3,2,3],[1,0,2,0]],[[1,0,3,0],[1,2,3,2],[2,3,2,2],[1,1,0,1]],[[1,0,2,0],[1,2,4,2],[2,3,2,2],[1,1,0,1]],[[1,0,2,0],[1,2,3,3],[2,3,2,2],[1,1,0,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,3],[1,1,0,1]],[[1,0,2,0],[1,2,3,2],[2,3,2,2],[1,1,0,2]],[[1,0,3,0],[1,2,3,2],[2,3,2,2],[1,1,1,0]],[[1,0,2,0],[1,2,4,2],[2,3,2,2],[1,1,1,0]],[[1,0,2,0],[1,2,3,3],[2,3,2,2],[1,1,1,0]],[[1,0,2,0],[1,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,0,3,0],[1,2,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,0],[1,2,4,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,0],[1,2,3,3],[2,3,3,0],[0,1,2,1]],[[1,0,2,0],[1,2,3,2],[3,3,3,0],[0,1,2,1]],[[1,0,2,0],[1,2,3,2],[2,4,3,0],[0,1,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,4,0],[0,1,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,0],[0,1,3,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,0],[0,1,2,2]],[[1,0,3,0],[1,2,3,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,0],[1,2,4,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,0],[1,2,3,3],[2,3,3,0],[0,2,1,1]],[[1,0,2,0],[1,2,3,2],[3,3,3,0],[0,2,1,1]],[[1,0,2,0],[1,2,3,2],[2,4,3,0],[0,2,1,1]],[[1,0,2,0],[1,2,3,2],[2,3,4,0],[0,2,1,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,0],[0,3,1,1]],[[1,0,3,0],[1,2,3,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,0],[1,2,4,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,0],[1,2,3,3],[2,3,3,0],[1,0,2,1]],[[1,0,2,0],[1,2,3,2],[3,3,3,0],[1,0,2,1]],[[1,0,2,0],[1,2,3,2],[2,4,3,0],[1,0,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,4,0],[1,0,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,0],[2,0,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,0],[1,0,3,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,0],[1,0,2,2]],[[1,0,3,0],[1,2,3,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,0],[1,2,4,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,0],[1,2,3,3],[2,3,3,0],[1,1,1,1]],[[1,0,2,0],[1,2,3,2],[3,3,3,0],[1,1,1,1]],[[1,0,2,0],[1,2,3,2],[2,4,3,0],[1,1,1,1]],[[1,0,2,0],[1,2,3,2],[2,3,4,0],[1,1,1,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,0],[2,1,1,1]],[[1,0,2,0],[1,2,3,2],[3,3,3,0],[1,2,0,1]],[[1,0,2,0],[1,2,3,2],[2,4,3,0],[1,2,0,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,0,3,0],[1,2,3,2],[2,3,3,1],[0,0,2,1]],[[1,0,2,0],[1,2,4,2],[2,3,3,1],[0,0,2,1]],[[1,0,2,0],[1,2,3,3],[2,3,3,1],[0,0,2,1]],[[1,0,2,0],[1,2,3,2],[2,3,4,1],[0,0,2,1]],[[1,0,3,0],[1,2,3,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,0],[1,2,4,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,0],[1,2,3,3],[2,3,3,1],[0,1,1,1]],[[1,0,2,0],[1,2,3,2],[3,3,3,1],[0,1,1,1]],[[1,0,2,0],[1,2,3,2],[2,4,3,1],[0,1,1,1]],[[1,0,2,0],[1,2,3,2],[2,3,4,1],[0,1,1,1]],[[1,0,3,0],[1,2,3,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,0],[1,2,4,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,0],[1,2,3,3],[2,3,3,1],[0,1,2,0]],[[1,0,2,0],[1,2,3,2],[3,3,3,1],[0,1,2,0]],[[1,0,2,0],[1,2,3,2],[2,4,3,1],[0,1,2,0]],[[1,0,2,0],[1,2,3,2],[2,3,4,1],[0,1,2,0]],[[1,0,2,0],[1,2,3,2],[2,3,3,1],[0,1,3,0]],[[1,0,3,0],[1,2,3,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,0],[1,2,4,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,0],[1,2,3,3],[2,3,3,1],[0,2,0,1]],[[1,0,2,0],[1,2,3,2],[3,3,3,1],[0,2,0,1]],[[1,0,2,0],[1,2,3,2],[2,4,3,1],[0,2,0,1]],[[1,0,2,0],[1,2,3,2],[2,3,4,1],[0,2,0,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,1],[0,3,0,1]],[[1,0,3,0],[1,2,3,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,0],[1,2,4,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,0],[1,2,3,3],[2,3,3,1],[0,2,1,0]],[[1,0,2,0],[1,2,3,2],[3,3,3,1],[0,2,1,0]],[[1,0,2,0],[1,2,3,2],[2,4,3,1],[0,2,1,0]],[[1,0,2,0],[1,2,3,2],[2,3,4,1],[0,2,1,0]],[[1,0,2,0],[1,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[2,2,3,2],[3,3,2,0],[1,0,1,0]],[[1,2,1,1],[3,2,3,2],[2,3,2,0],[1,0,1,0]],[[1,3,1,1],[2,2,3,2],[2,3,2,0],[1,0,1,0]],[[2,2,1,1],[2,2,3,2],[2,3,2,0],[1,0,1,0]],[[1,0,3,0],[1,2,3,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[1,2,4,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[1,2,3,3],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[1,2,3,2],[3,3,3,1],[1,0,1,1]],[[1,0,2,0],[1,2,3,2],[2,4,3,1],[1,0,1,1]],[[1,0,2,0],[1,2,3,2],[2,3,4,1],[1,0,1,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,1],[2,0,1,1]],[[1,0,3,0],[1,2,3,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,0],[1,2,4,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,0],[1,2,3,3],[2,3,3,1],[1,0,2,0]],[[1,0,2,0],[1,2,3,2],[3,3,3,1],[1,0,2,0]],[[1,0,2,0],[1,2,3,2],[2,4,3,1],[1,0,2,0]],[[1,0,2,0],[1,2,3,2],[2,3,4,1],[1,0,2,0]],[[1,0,2,0],[1,2,3,2],[2,3,3,1],[2,0,2,0]],[[1,0,2,0],[1,2,3,2],[2,3,3,1],[1,0,3,0]],[[1,0,3,0],[1,2,3,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,0],[1,2,4,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,0],[1,2,3,3],[2,3,3,1],[1,1,0,1]],[[1,0,2,0],[1,2,3,2],[3,3,3,1],[1,1,0,1]],[[1,0,2,0],[1,2,3,2],[2,4,3,1],[1,1,0,1]],[[1,0,2,0],[1,2,3,2],[2,3,4,1],[1,1,0,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,1],[2,1,0,1]],[[1,0,3,0],[1,2,3,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,0],[1,2,4,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,0],[1,2,3,3],[2,3,3,1],[1,1,1,0]],[[1,0,2,0],[1,2,3,2],[3,3,3,1],[1,1,1,0]],[[1,0,2,0],[1,2,3,2],[2,4,3,1],[1,1,1,0]],[[1,0,2,0],[1,2,3,2],[2,3,4,1],[1,1,1,0]],[[1,0,2,0],[1,2,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[2,2,3,2],[3,3,2,0],[1,0,0,1]],[[1,2,1,1],[3,2,3,2],[2,3,2,0],[1,0,0,1]],[[1,3,1,1],[2,2,3,2],[2,3,2,0],[1,0,0,1]],[[2,2,1,1],[2,2,3,2],[2,3,2,0],[1,0,0,1]],[[1,0,2,0],[1,2,3,2],[3,3,3,1],[1,2,0,0]],[[1,0,2,0],[1,2,3,2],[2,4,3,1],[1,2,0,0]],[[1,0,2,0],[1,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,0,3,0],[1,2,3,2],[2,3,3,2],[0,1,0,1]],[[1,0,2,0],[1,2,4,2],[2,3,3,2],[0,1,0,1]],[[1,0,2,0],[1,2,3,3],[2,3,3,2],[0,1,0,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,1],[2,2,3,2],[2,3,1,0],[2,2,0,0]],[[1,2,1,1],[2,2,3,2],[3,3,1,0],[1,2,0,0]],[[1,0,3,0],[1,2,3,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[1,2,4,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[1,2,3,3],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[1,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,1],[3,2,3,2],[2,3,1,0],[1,2,0,0]],[[1,3,1,1],[2,2,3,2],[2,3,1,0],[1,2,0,0]],[[2,2,1,1],[2,2,3,2],[2,3,1,0],[1,2,0,0]],[[1,2,1,1],[2,2,3,2],[2,3,1,0],[2,1,1,0]],[[1,2,1,1],[2,2,3,2],[3,3,1,0],[1,1,1,0]],[[1,2,1,1],[3,2,3,2],[2,3,1,0],[1,1,1,0]],[[1,3,1,1],[2,2,3,2],[2,3,1,0],[1,1,1,0]],[[2,2,1,1],[2,2,3,2],[2,3,1,0],[1,1,1,0]],[[1,2,1,1],[2,2,3,2],[2,3,1,0],[2,1,0,1]],[[1,2,1,1],[2,2,3,2],[3,3,1,0],[1,1,0,1]],[[1,2,1,1],[3,2,3,2],[2,3,1,0],[1,1,0,1]],[[1,3,1,1],[2,2,3,2],[2,3,1,0],[1,1,0,1]],[[2,2,1,1],[2,2,3,2],[2,3,1,0],[1,1,0,1]],[[1,2,1,1],[2,2,3,2],[3,3,1,0],[0,2,1,0]],[[1,2,1,1],[3,2,3,2],[2,3,1,0],[0,2,1,0]],[[1,3,1,1],[2,2,3,2],[2,3,1,0],[0,2,1,0]],[[2,2,1,1],[2,2,3,2],[2,3,1,0],[0,2,1,0]],[[1,2,1,1],[2,2,3,2],[3,3,1,0],[0,2,0,1]],[[1,2,1,1],[3,2,3,2],[2,3,1,0],[0,2,0,1]],[[1,3,1,1],[2,2,3,2],[2,3,1,0],[0,2,0,1]],[[2,2,1,1],[2,2,3,2],[2,3,1,0],[0,2,0,1]],[[1,0,2,0],[1,3,0,1],[1,4,3,2],[1,2,2,1]],[[1,0,2,0],[1,3,0,1],[1,3,3,2],[2,2,2,1]],[[1,0,2,0],[1,3,0,1],[1,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,0,1],[1,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,0,1],[1,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,0,1],[3,2,3,2],[1,2,2,1]],[[1,0,2,0],[1,3,0,1],[2,2,3,2],[2,2,2,1]],[[1,0,2,0],[1,3,0,1],[2,2,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,0,1],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,0,1],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,0,1],[3,3,3,2],[0,2,2,1]],[[1,0,2,0],[1,3,0,1],[2,4,3,2],[0,2,2,1]],[[1,0,2,0],[1,3,0,1],[2,3,3,2],[0,3,2,1]],[[1,0,2,0],[1,3,0,1],[2,3,3,2],[0,2,3,1]],[[1,0,2,0],[1,3,0,1],[2,3,3,2],[0,2,2,2]],[[1,0,2,0],[1,3,0,1],[3,3,3,2],[1,1,2,1]],[[1,0,2,0],[1,3,0,1],[2,4,3,2],[1,1,2,1]],[[1,0,2,0],[1,3,0,1],[2,3,3,2],[2,1,2,1]],[[1,0,2,0],[1,3,0,2],[0,3,3,3],[1,2,2,1]],[[1,0,2,0],[1,3,0,2],[0,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,0,2],[0,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,0,2],[0,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,0,2],[1,2,3,3],[1,2,2,1]],[[1,0,2,0],[1,3,0,2],[1,2,3,2],[2,2,2,1]],[[1,0,2,0],[1,3,0,2],[1,2,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,0,2],[1,2,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,0,2],[1,2,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,0,2],[1,4,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,0,2],[1,3,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,0,2],[1,3,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,0,2],[1,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,0,2],[1,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,0,2],[1,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,0,2],[1,4,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,0,2],[1,3,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,0,2],[1,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,0,2],[1,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,0,2],[1,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,0,2],[1,3,3,3],[1,1,2,1]],[[1,0,2,0],[1,3,0,2],[1,3,3,2],[1,1,3,1]],[[1,0,2,0],[1,3,0,2],[1,3,3,2],[1,1,2,2]],[[1,0,2,0],[1,3,0,2],[1,4,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,0,2],[1,3,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,0,2],[1,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,0,2],[1,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,0,2],[3,1,3,2],[1,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,1,3,3],[1,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,1,3,2],[2,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,1,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,0,2],[2,1,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,0,2],[2,1,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,0,2],[3,2,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,2,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,0,2],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,0,2],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,0,2],[3,2,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,0,2],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,0,2],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,0,2],[2,2,3,3],[0,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,2,3,2],[0,3,2,1]],[[1,0,2,0],[1,3,0,2],[2,2,3,2],[0,2,3,1]],[[1,0,2,0],[1,3,0,2],[2,2,3,2],[0,2,2,2]],[[1,0,2,0],[1,3,0,2],[3,2,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,0,2],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,0,2],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,0,2],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,0,2],[3,3,2,2],[0,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,4,2,2],[0,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,3,2,3],[0,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,3,2,2],[0,3,2,1]],[[1,0,2,0],[1,3,0,2],[2,3,2,2],[0,2,3,1]],[[1,0,2,0],[1,3,0,2],[2,3,2,2],[0,2,2,2]],[[1,0,2,0],[1,3,0,2],[3,3,2,2],[1,1,2,1]],[[1,0,2,0],[1,3,0,2],[2,4,2,2],[1,1,2,1]],[[1,0,2,0],[1,3,0,2],[2,3,2,2],[2,1,2,1]],[[1,0,2,0],[1,3,0,2],[3,3,3,1],[0,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,4,3,1],[0,2,2,1]],[[1,0,2,0],[1,3,0,2],[2,3,3,1],[0,3,2,1]],[[1,0,2,0],[1,3,0,2],[2,3,3,1],[0,2,3,1]],[[1,0,2,0],[1,3,0,2],[2,3,3,1],[0,2,2,2]],[[1,0,2,0],[1,3,0,2],[3,3,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,0,2],[2,4,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,0,2],[2,3,3,1],[2,1,2,1]],[[1,0,2,0],[1,3,0,2],[2,3,3,3],[0,1,2,1]],[[1,0,2,0],[1,3,0,2],[2,3,3,2],[0,1,3,1]],[[1,0,2,0],[1,3,0,2],[2,3,3,2],[0,1,2,2]],[[1,0,2,0],[1,3,0,2],[3,3,3,2],[0,2,2,0]],[[1,0,2,0],[1,3,0,2],[2,4,3,2],[0,2,2,0]],[[1,0,2,0],[1,3,0,2],[2,3,3,2],[0,3,2,0]],[[1,0,2,0],[1,3,0,2],[2,3,3,2],[0,2,3,0]],[[1,0,2,0],[1,3,0,2],[2,3,3,3],[1,0,2,1]],[[1,0,2,0],[1,3,0,2],[2,3,3,2],[1,0,3,1]],[[1,0,2,0],[1,3,0,2],[2,3,3,2],[1,0,2,2]],[[1,0,2,0],[1,3,0,2],[3,3,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,0,2],[2,4,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,2],[2,3,0,0],[2,2,1,0]],[[1,2,1,1],[2,2,3,2],[3,3,0,0],[1,2,1,0]],[[1,2,1,1],[3,2,3,2],[2,3,0,0],[1,2,1,0]],[[1,3,1,1],[2,2,3,2],[2,3,0,0],[1,2,1,0]],[[2,2,1,1],[2,2,3,2],[2,3,0,0],[1,2,1,0]],[[1,0,2,0],[1,3,1,0],[1,4,3,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,0],[1,3,3,2],[2,2,2,1]],[[1,0,2,0],[1,3,1,0],[1,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,1,0],[1,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,1,0],[1,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,1,0],[3,2,3,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,0],[2,2,3,2],[2,2,2,1]],[[1,0,2,0],[1,3,1,0],[2,2,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,1,0],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,1,0],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,1,0],[3,3,3,2],[0,2,2,1]],[[1,0,2,0],[1,3,1,0],[2,4,3,2],[0,2,2,1]],[[1,0,2,0],[1,3,1,0],[2,3,3,2],[0,3,2,1]],[[1,0,2,0],[1,3,1,0],[2,3,3,2],[0,2,3,1]],[[1,0,2,0],[1,3,1,0],[2,3,3,2],[0,2,2,2]],[[1,0,2,0],[1,3,1,0],[3,3,3,2],[1,1,2,1]],[[1,0,2,0],[1,3,1,0],[2,4,3,2],[1,1,2,1]],[[1,0,2,0],[1,3,1,0],[2,3,3,2],[2,1,2,1]],[[1,0,2,0],[1,3,1,1],[1,4,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,1,1],[1,3,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,1,1],[1,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,1,1],[1,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,1,1],[1,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,1,1],[1,4,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,1],[1,3,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,1,1],[1,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,1,1],[1,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,1,1],[3,2,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,1,1],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,1,1],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,1,1],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,1,1],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,1,1],[3,2,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,1],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,1,1],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,1,1],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,1,1],[3,3,3,1],[0,2,2,1]],[[1,0,2,0],[1,3,1,1],[2,4,3,1],[0,2,2,1]],[[1,0,2,0],[1,3,1,1],[2,3,3,1],[0,3,2,1]],[[1,0,2,0],[1,3,1,1],[2,3,3,1],[0,2,3,1]],[[1,0,2,0],[1,3,1,1],[2,3,3,1],[0,2,2,2]],[[1,0,2,0],[1,3,1,1],[3,3,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,1,1],[2,4,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,1,1],[2,3,3,1],[2,1,2,1]],[[1,0,2,0],[1,3,1,1],[3,3,3,2],[0,2,2,0]],[[1,0,2,0],[1,3,1,1],[2,4,3,2],[0,2,2,0]],[[1,0,2,0],[1,3,1,1],[2,3,3,2],[0,3,2,0]],[[1,0,2,0],[1,3,1,1],[2,3,3,2],[0,2,3,0]],[[1,0,2,0],[1,3,1,1],[3,3,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,1,1],[2,4,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,2],[2,3,0,0],[2,1,2,0]],[[1,0,2,0],[1,3,1,3],[0,3,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[0,3,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[0,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,1,2],[0,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,1,2],[0,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,1,2],[0,3,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[0,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,1,2],[0,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,1,2],[0,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,1,3],[0,3,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[0,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[0,3,3,3],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[0,3,3,2],[1,2,1,2]],[[1,0,2,0],[1,3,1,3],[0,3,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[0,3,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[0,3,3,3],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[0,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,1,2],[0,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,1,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,1,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,1,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,1,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,1,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,1,2],[1,2,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,1,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[1,2,3,2],[1,2,1,2]],[[1,0,2,0],[1,3,1,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,1,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,1,2],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[1,4,1,2],[1,3,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,3],[1,3,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,4,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,1,3],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,1,2],[2,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,1,2],[1,3,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,1,2],[1,2,3,1]],[[1,0,2,0],[1,3,1,2],[1,3,1,2],[1,2,2,2]],[[1,0,2,0],[1,4,1,2],[1,3,2,1],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,4,2,1],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,2,1],[2,2,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,2,1],[1,3,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,2,1],[1,2,3,1]],[[1,0,2,0],[1,3,1,2],[1,3,2,1],[1,2,2,2]],[[1,0,2,0],[1,3,1,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,0],[1,3,1,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,0],[1,4,1,2],[1,3,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[1,4,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[1,3,2,2],[2,2,2,0]],[[1,0,2,0],[1,3,1,2],[1,3,2,2],[1,3,2,0]],[[1,0,2,0],[1,3,1,2],[1,3,2,2],[1,2,3,0]],[[1,0,2,0],[1,4,1,2],[1,3,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,1,2],[1,4,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,0],[1,4,1,2],[1,3,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[1,4,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[1,3,4,1],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,1],[2,2,1,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,1],[1,3,1,1]],[[1,0,2,0],[1,3,1,3],[1,3,3,2],[1,0,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,4,2],[1,0,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,3],[1,0,2,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,2],[1,0,2,2]],[[1,0,2,0],[1,4,1,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,1,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,1,2],[1,4,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,1,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,2],[1,1,1,2]],[[1,0,2,0],[1,4,1,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,1,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,1,2],[1,4,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,1,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[1,3,1,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,0],[1,3,1,2],[1,3,3,2],[1,1,3,0]],[[1,0,2,0],[1,4,1,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,1,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,1,2],[1,4,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,1,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,2],[2,2,0,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,2],[1,3,0,1]],[[1,0,2,0],[1,3,1,2],[1,3,3,2],[1,2,0,2]],[[1,0,2,0],[1,4,1,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,1,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,1,2],[1,4,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,1,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[1,3,1,2],[1,3,3,3],[1,2,1,0]],[[1,0,2,0],[1,3,1,2],[1,3,3,2],[2,2,1,0]],[[1,0,2,0],[1,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,2],[3,3,0,0],[1,1,2,0]],[[1,2,1,1],[3,2,3,2],[2,3,0,0],[1,1,2,0]],[[1,3,1,1],[2,2,3,2],[2,3,0,0],[1,1,2,0]],[[2,2,1,1],[2,2,3,2],[2,3,0,0],[1,1,2,0]],[[1,2,1,1],[2,2,3,2],[3,3,0,0],[0,2,2,0]],[[1,0,2,0],[1,3,1,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[3,1,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,1,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,1,2],[2,1,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,1,2],[3,1,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,1,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,1,2],[2,1,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,1,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[2,1,3,2],[1,2,1,2]],[[1,0,2,0],[1,3,1,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[3,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,1,2],[2,1,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,1,3],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[3,2,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,1,3],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,1,2],[2,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,1,2],[1,3,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,1,2],[1,2,3,1]],[[1,0,2,0],[1,3,1,2],[2,2,1,2],[1,2,2,2]],[[1,0,2,0],[1,3,1,2],[3,2,2,1],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,2,1],[2,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,2,1],[1,3,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,2,1],[1,2,3,1]],[[1,0,2,0],[1,3,1,2],[2,2,2,1],[1,2,2,2]],[[1,0,2,0],[1,3,1,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,0],[1,3,1,2],[2,2,2,2],[0,2,2,2]],[[1,0,2,0],[1,3,1,2],[3,2,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,2,2,2],[2,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,2,2,2],[1,3,2,0]],[[1,0,2,0],[1,3,1,2],[2,2,2,2],[1,2,3,0]],[[1,0,2,0],[1,3,1,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[1,3,1,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[1,3,1,2],[2,2,3,1],[0,2,2,2]],[[1,0,2,0],[1,3,1,2],[3,2,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,1,2],[2,2,3,1],[2,2,1,1]],[[1,0,2,0],[1,3,1,2],[2,2,3,1],[1,3,1,1]],[[1,0,2,0],[1,3,1,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[1,3,1,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,0],[1,3,1,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,0],[1,3,1,2],[2,2,3,2],[0,2,1,2]],[[1,0,2,0],[1,3,1,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[1,3,1,2],[2,2,3,2],[0,2,3,0]],[[1,0,2,0],[1,3,1,2],[3,2,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,1,2],[2,2,3,2],[2,2,0,1]],[[1,0,2,0],[1,3,1,2],[2,2,3,2],[1,3,0,1]],[[1,0,2,0],[1,3,1,2],[3,2,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,1,2],[2,2,3,2],[2,2,1,0]],[[1,0,2,0],[1,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[3,2,3,2],[2,3,0,0],[0,2,2,0]],[[1,3,1,1],[2,2,3,2],[2,3,0,0],[0,2,2,0]],[[2,2,1,1],[2,2,3,2],[2,3,0,0],[0,2,2,0]],[[1,0,2,0],[1,3,1,2],[3,3,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,0,2],[2,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,0,2],[1,3,2,1]],[[1,0,2,0],[1,3,1,2],[3,3,1,1],[1,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,1,1],[2,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,1,1],[1,3,2,1]],[[1,0,2,0],[1,4,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[1,3,1,3],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[1,3,1,2],[3,3,1,2],[0,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,4,1,2],[0,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,1,3],[0,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,1,2],[0,3,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,1,2],[0,2,3,1]],[[1,0,2,0],[1,3,1,2],[2,3,1,2],[0,2,2,2]],[[1,0,2,0],[1,4,1,2],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[1,3,1,2],[3,3,1,2],[1,1,2,1]],[[1,0,2,0],[1,3,1,2],[2,4,1,2],[1,1,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,1,2],[2,1,2,1]],[[1,0,2,0],[1,3,1,2],[3,3,1,2],[1,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,1,2],[2,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,1,2],[1,3,2,0]],[[1,0,2,0],[1,4,1,2],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[1,3,1,2],[3,3,2,1],[0,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,4,2,1],[0,2,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,2,1],[0,3,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,2,1],[0,2,3,1]],[[1,0,2,0],[1,3,1,2],[2,3,2,1],[0,2,2,2]],[[1,0,2,0],[1,4,1,2],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,3,1,2],[3,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,3,1,2],[2,4,2,1],[1,1,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,2,1],[2,1,2,1]],[[1,0,2,0],[1,3,1,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,0],[1,3,1,2],[2,3,2,2],[0,1,2,2]],[[1,0,2,0],[1,4,1,2],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,1,2],[3,3,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,4,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,2,2],[0,3,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,2,2],[0,2,3,0]],[[1,0,2,0],[1,3,1,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,0],[1,3,1,2],[2,3,2,2],[1,0,2,2]],[[1,0,2,0],[1,4,1,2],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,1,2],[3,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,1,2],[2,4,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,0,2,0],[1,4,1,2],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[1,3,1,2],[3,3,3,1],[0,1,2,1]],[[1,0,2,0],[1,3,1,2],[2,4,3,1],[0,1,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,1],[0,1,2,2]],[[1,0,2,0],[1,4,1,2],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,1,2],[3,3,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,1,2],[2,4,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,1,2],[2,3,4,1],[0,2,1,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,1],[0,3,1,1]],[[1,0,2,0],[1,4,1,2],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,1,2],[3,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,1,2],[2,4,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,1],[2,0,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,1],[1,0,2,2]],[[1,0,2,0],[1,4,1,2],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,1,2],[3,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,1,2],[2,4,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,1,2],[2,3,4,1],[1,1,1,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,1],[2,1,1,1]],[[1,0,2,0],[1,3,1,2],[3,3,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,1,2],[2,4,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,0,2,0],[1,3,1,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[0,0,2,2]],[[1,0,2,0],[1,4,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,1,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,1,2],[3,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,1,2],[2,4,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,1,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[0,1,1,2]],[[1,0,2,0],[1,4,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,1,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,1,2],[3,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,1,2],[2,4,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[0,1,3,0]],[[1,0,2,0],[1,4,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,1,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,1,2],[3,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,1,2],[2,4,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,1,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[0,3,0,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[0,2,0,2]],[[1,0,2,0],[1,4,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,1,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,1,2],[3,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,1,2],[2,4,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,1,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[1,3,1,2],[2,3,3,3],[0,2,1,0]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,2,3,2],[2,2,3,0],[2,1,0,0]],[[1,0,2,0],[1,4,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,1,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,1,2],[3,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,1,2],[2,4,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,1,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[2,0,1,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[1,0,1,2]],[[1,0,2,0],[1,4,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,1,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,1,2],[3,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,1,2],[2,4,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[2,0,2,0]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[1,0,3,0]],[[1,0,2,0],[1,4,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,1,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,1,2],[3,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,1,2],[2,4,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,1,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[2,1,0,1]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[1,1,0,2]],[[1,0,2,0],[1,4,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,1,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,1,2],[3,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,1,2],[2,4,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,1,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[1,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,2,3,2],[3,2,3,0],[1,1,0,0]],[[1,2,1,1],[3,2,3,2],[2,2,3,0],[1,1,0,0]],[[1,3,1,1],[2,2,3,2],[2,2,3,0],[1,1,0,0]],[[2,2,1,1],[2,2,3,2],[2,2,3,0],[1,1,0,0]],[[1,0,2,0],[1,4,1,2],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,3,1,2],[3,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,3,1,2],[2,4,3,2],[1,2,0,0]],[[1,0,2,0],[1,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,2,3,2],[3,2,3,0],[0,2,0,0]],[[1,2,1,1],[3,2,3,2],[2,2,3,0],[0,2,0,0]],[[1,3,1,1],[2,2,3,2],[2,2,3,0],[0,2,0,0]],[[2,2,1,1],[2,2,3,2],[2,2,3,0],[0,2,0,0]],[[1,0,2,0],[1,3,2,0],[0,3,4,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,0],[0,3,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,0],[0,3,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,0],[0,3,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,2,0],[1,2,4,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,0],[1,2,3,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,0],[1,2,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,0],[1,2,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,0],[1,2,3,2],[1,2,2,2]],[[1,0,2,0],[1,4,2,0],[1,3,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,0],[1,4,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,0],[1,3,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,0],[1,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,0],[1,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,0],[1,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,4,2,0],[1,3,3,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,0],[1,4,3,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,0],[1,3,4,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,0],[1,3,3,2],[1,1,3,1]],[[1,0,2,0],[1,3,2,0],[1,3,3,2],[1,1,2,2]],[[1,0,2,0],[1,4,2,0],[1,3,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,2,0],[1,4,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,2,0],[1,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,3,2,0],[1,3,3,2],[2,2,1,1]],[[1,0,2,0],[1,3,2,0],[1,3,3,2],[1,3,1,1]],[[1,0,2,0],[1,3,2,0],[3,1,3,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,0],[2,1,4,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,0],[2,1,3,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,0],[2,1,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,0],[2,1,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,0],[2,1,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,2,0],[3,2,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,0],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,0],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,0],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,0],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,2,0],[2,2,4,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,0],[2,2,3,2],[0,3,2,1]],[[1,0,2,0],[1,3,2,0],[2,2,3,2],[0,2,3,1]],[[1,0,2,0],[1,3,2,0],[2,2,3,2],[0,2,2,2]],[[1,0,2,0],[1,3,2,0],[3,2,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,2,0],[2,2,3,2],[2,2,1,1]],[[1,0,2,0],[1,3,2,0],[2,2,3,2],[1,3,1,1]],[[1,0,2,0],[1,3,2,0],[3,3,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,0],[2,3,1,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,0],[2,3,1,2],[1,3,2,1]],[[1,0,2,0],[1,4,2,0],[2,3,2,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,0],[3,3,2,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,0],[2,4,2,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,0],[2,3,2,2],[0,3,2,1]],[[1,0,2,0],[1,3,2,0],[2,3,2,2],[0,2,3,1]],[[1,0,2,0],[1,3,2,0],[2,3,2,2],[0,2,2,2]],[[1,0,2,0],[1,4,2,0],[2,3,2,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,0],[3,3,2,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,0],[2,4,2,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,0],[2,3,2,2],[2,1,2,1]],[[1,0,2,0],[1,4,2,0],[2,3,3,2],[0,1,2,1]],[[1,0,2,0],[1,3,2,0],[3,3,3,2],[0,1,2,1]],[[1,0,2,0],[1,3,2,0],[2,4,3,2],[0,1,2,1]],[[1,0,2,0],[1,3,2,0],[2,3,4,2],[0,1,2,1]],[[1,0,2,0],[1,3,2,0],[2,3,3,2],[0,1,3,1]],[[1,0,2,0],[1,3,2,0],[2,3,3,2],[0,1,2,2]],[[1,0,2,0],[1,4,2,0],[2,3,3,2],[0,2,1,1]],[[1,0,2,0],[1,3,2,0],[3,3,3,2],[0,2,1,1]],[[1,0,2,0],[1,3,2,0],[2,4,3,2],[0,2,1,1]],[[1,0,2,0],[1,3,2,0],[2,3,4,2],[0,2,1,1]],[[1,0,2,0],[1,3,2,0],[2,3,3,2],[0,3,1,1]],[[1,0,2,0],[1,4,2,0],[2,3,3,2],[1,0,2,1]],[[1,0,2,0],[1,3,2,0],[3,3,3,2],[1,0,2,1]],[[1,0,2,0],[1,3,2,0],[2,4,3,2],[1,0,2,1]],[[1,0,2,0],[1,3,2,0],[2,3,4,2],[1,0,2,1]],[[1,0,2,0],[1,3,2,0],[2,3,3,2],[2,0,2,1]],[[1,0,2,0],[1,3,2,0],[2,3,3,2],[1,0,3,1]],[[1,0,2,0],[1,3,2,0],[2,3,3,2],[1,0,2,2]],[[1,0,2,0],[1,4,2,0],[2,3,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,2,0],[3,3,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,2,0],[2,4,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,2,0],[2,3,4,2],[1,1,1,1]],[[1,0,2,0],[1,3,2,0],[2,3,3,2],[2,1,1,1]],[[1,0,2,0],[1,3,2,0],[3,3,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,2,0],[2,4,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,0,2,0],[1,3,2,1],[0,3,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[0,3,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[0,3,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,1],[0,3,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,2,1],[0,3,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[0,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[0,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,2,1],[0,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,2,1],[0,3,4,2],[1,2,1,1]],[[1,0,2,0],[1,3,2,1],[0,3,3,3],[1,2,1,1]],[[1,0,2,0],[1,3,2,1],[0,3,3,2],[1,2,1,2]],[[1,0,2,0],[1,3,2,1],[0,3,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,1],[0,3,3,3],[1,2,2,0]],[[1,0,2,0],[1,3,2,1],[0,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,2,1],[0,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,2,1],[1,2,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,2,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,2,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[1,2,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,1],[1,2,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,2,1],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,2,1],[1,2,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,2,1],[1,2,4,2],[1,2,1,1]],[[1,0,2,0],[1,3,2,1],[1,2,3,3],[1,2,1,1]],[[1,0,2,0],[1,3,2,1],[1,2,3,2],[1,2,1,2]],[[1,0,2,0],[1,3,2,1],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,1],[1,2,3,3],[1,2,2,0]],[[1,0,2,0],[1,3,2,1],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,2,1],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,2,1],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[1,4,2,1],[1,3,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,4,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,1,3],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,1,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,1,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,1,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,1],[1,3,1,2],[1,2,2,2]],[[1,0,2,0],[1,4,2,1],[1,3,2,1],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,4,2,1],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,2,1],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,2,1],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,2,1],[1,2,3,1]],[[1,0,2,0],[1,3,2,1],[1,3,2,1],[1,2,2,2]],[[1,0,2,0],[1,3,2,1],[1,3,2,3],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,2,2],[1,1,3,1]],[[1,0,2,0],[1,3,2,1],[1,3,2,2],[1,1,2,2]],[[1,0,2,0],[1,4,2,1],[1,3,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,1],[1,4,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,1],[1,3,2,2],[2,2,2,0]],[[1,0,2,0],[1,3,2,1],[1,3,2,2],[1,3,2,0]],[[1,0,2,0],[1,3,2,1],[1,3,2,2],[1,2,3,0]],[[1,0,2,0],[1,4,2,1],[1,3,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,4,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,0],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,0],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,0],[1,2,3,1]],[[1,0,2,0],[1,4,2,1],[1,3,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[1,4,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,1],[1,1,2,2]],[[1,0,2,0],[1,4,2,1],[1,3,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,2,1],[1,4,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,2,1],[1,3,4,1],[1,2,1,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,1],[2,2,1,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,1],[1,3,1,1]],[[1,0,2,0],[1,3,2,1],[1,3,4,2],[1,0,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,3],[1,0,2,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,2],[1,0,2,2]],[[1,0,2,0],[1,4,2,1],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,2,1],[1,4,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,2,1],[1,3,4,2],[1,1,1,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,3],[1,1,1,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,2],[1,1,1,2]],[[1,0,2,0],[1,4,2,1],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,2,1],[1,4,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,2,1],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[1,3,2,1],[1,3,3,3],[1,1,2,0]],[[1,0,2,0],[1,3,2,1],[1,3,3,2],[1,1,3,0]],[[1,0,2,0],[1,4,2,1],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,2,1],[1,4,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,2,1],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,3],[1,2,0,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,2],[2,2,0,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,2],[1,3,0,1]],[[1,0,2,0],[1,3,2,1],[1,3,3,2],[1,2,0,2]],[[1,0,2,0],[1,4,2,1],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,2,1],[1,4,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,2,1],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[1,3,2,1],[1,3,3,3],[1,2,1,0]],[[1,0,2,0],[1,3,2,1],[1,3,3,2],[2,2,1,0]],[[1,0,2,0],[1,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,0,2,0],[1,3,2,1],[3,1,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,1,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,1,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,1,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[2,1,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,1],[2,1,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,2,1],[3,1,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,2,1],[2,1,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,2,1],[2,1,4,2],[1,2,1,1]],[[1,0,2,0],[1,3,2,1],[2,1,3,3],[1,2,1,1]],[[1,0,2,0],[1,3,2,1],[2,1,3,2],[1,2,1,2]],[[1,0,2,0],[1,3,2,1],[3,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,1,3,3],[1,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,2,1],[2,1,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,2,1],[3,2,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,1,3],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,1,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,1,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,1,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,1],[2,2,1,2],[1,2,2,2]],[[1,0,2,0],[1,3,2,1],[3,2,2,1],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,2,1],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,2,1],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,2,1],[1,2,3,1]],[[1,0,2,0],[1,3,2,1],[2,2,2,1],[1,2,2,2]],[[1,0,2,0],[1,3,2,1],[2,2,2,3],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,2,2],[0,3,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,2,2],[0,2,3,1]],[[1,0,2,0],[1,3,2,1],[2,2,2,2],[0,2,2,2]],[[1,0,2,0],[1,3,2,1],[3,2,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,2,2,2],[2,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,2,2,2],[1,3,2,0]],[[1,0,2,0],[1,3,2,1],[2,2,2,2],[1,2,3,0]],[[1,0,2,0],[1,3,2,1],[3,2,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,0],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,0],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,0],[1,2,3,1]],[[1,0,2,0],[1,3,2,1],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,1],[0,2,2,2]],[[1,0,2,0],[1,3,2,1],[3,2,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,1],[2,2,1,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,1],[1,3,1,1]],[[1,0,2,0],[1,3,2,1],[2,2,4,2],[0,2,1,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,3],[0,2,1,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,2],[0,2,1,2]],[[1,0,2,0],[1,3,2,1],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,2,3,3],[0,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[1,3,2,1],[2,2,3,2],[0,2,3,0]],[[1,0,2,0],[1,3,2,1],[3,2,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,2],[2,2,0,1]],[[1,0,2,0],[1,3,2,1],[2,2,3,2],[1,3,0,1]],[[1,0,2,0],[1,3,2,1],[3,2,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,2,1],[2,2,3,2],[2,2,1,0]],[[1,0,2,0],[1,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,0,2,0],[1,3,2,1],[3,3,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,0,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,0,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,1],[3,3,1,1],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,1,1],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,1,1],[1,3,2,1]],[[1,0,2,0],[1,4,2,1],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[3,3,1,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,4,1,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,1,3],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,1,2],[0,3,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,1,2],[0,2,3,1]],[[1,0,2,0],[1,3,2,1],[2,3,1,2],[0,2,2,2]],[[1,0,2,0],[1,4,2,1],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[3,3,1,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[2,4,1,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,1,2],[2,1,2,1]],[[1,0,2,0],[1,3,2,1],[3,3,1,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,1,2],[2,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,1,2],[1,3,2,0]],[[1,0,2,0],[1,3,2,1],[3,3,2,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,2,0],[2,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,2,0],[1,3,2,1]],[[1,0,2,0],[1,4,2,1],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[3,3,2,1],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,4,2,1],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,2,1],[0,3,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,2,1],[0,2,3,1]],[[1,0,2,0],[1,3,2,1],[2,3,2,1],[0,2,2,2]],[[1,0,2,0],[1,4,2,1],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[3,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[2,4,2,1],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,2,1],[2,1,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,2,3],[0,1,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,2,2],[0,1,3,1]],[[1,0,2,0],[1,3,2,1],[2,3,2,2],[0,1,2,2]],[[1,0,2,0],[1,4,2,1],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,2,1],[3,3,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,4,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,2,2],[0,3,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,2,2],[0,2,3,0]],[[1,0,2,0],[1,3,2,1],[2,3,2,3],[1,0,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,2,2],[1,0,3,1]],[[1,0,2,0],[1,3,2,1],[2,3,2,2],[1,0,2,2]],[[1,0,2,0],[1,4,2,1],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,2,1],[3,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,2,1],[2,4,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,0,2,0],[1,4,2,1],[2,3,3,0],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[3,3,3,0],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,4,3,0],[0,2,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,0],[0,3,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,0],[0,2,3,1]],[[1,0,2,0],[1,4,2,1],[2,3,3,0],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[3,3,3,0],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[2,4,3,0],[1,1,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,0],[2,1,2,1]],[[1,0,2,0],[1,4,2,1],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[1,3,2,1],[3,3,3,1],[0,1,2,1]],[[1,0,2,0],[1,3,2,1],[2,4,3,1],[0,1,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,1],[0,1,2,2]],[[1,0,2,0],[1,4,2,1],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,2,1],[3,3,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,2,1],[2,4,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,2,1],[2,3,4,1],[0,2,1,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,1],[0,3,1,1]],[[1,0,2,0],[1,4,2,1],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,2,1],[3,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,2,1],[2,4,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,1],[2,0,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,1],[1,0,2,2]],[[1,0,2,0],[1,4,2,1],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,2,1],[3,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,2,1],[2,4,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,2,1],[2,3,4,1],[1,1,1,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,1],[2,1,1,1]],[[1,0,2,0],[1,4,2,1],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,2,1],[3,3,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,2,1],[2,4,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,0,2,0],[1,3,2,1],[2,3,4,2],[0,0,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,3],[0,0,2,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[0,0,2,2]],[[1,0,2,0],[1,4,2,1],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,2,1],[3,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,2,1],[2,4,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,2,1],[2,3,4,2],[0,1,1,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,3],[0,1,1,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[0,1,1,2]],[[1,0,2,0],[1,4,2,1],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,2,1],[3,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,2,1],[2,4,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,3,3],[0,1,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[0,1,3,0]],[[1,0,2,0],[1,4,2,1],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,2,1],[3,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,2,1],[2,4,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,2,1],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,3],[0,2,0,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[0,3,0,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[0,2,0,2]],[[1,0,2,0],[1,4,2,1],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,2,1],[3,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,2,1],[2,4,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,2,1],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[1,3,2,1],[2,3,3,3],[0,2,1,0]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,0,2,0],[1,4,2,1],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,2,1],[3,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,2,1],[2,4,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,2,1],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,3],[1,0,1,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[2,0,1,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[1,0,1,2]],[[1,0,2,0],[1,4,2,1],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,2,1],[3,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,2,1],[2,4,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,3,3],[1,0,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[2,0,2,0]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[1,0,3,0]],[[1,0,2,0],[1,4,2,1],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,2,1],[3,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,2,1],[2,4,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,2,1],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,3],[1,1,0,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[2,1,0,1]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[1,1,0,2]],[[1,0,2,0],[1,4,2,1],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,2,1],[3,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,2,1],[2,4,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,2,1],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[1,3,2,1],[2,3,3,3],[1,1,1,0]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,0,2,0],[1,4,2,1],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,3,2,1],[3,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,3,2,1],[2,4,3,2],[1,2,0,0]],[[1,0,2,0],[1,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,2,3,2],[2,2,2,0],[2,2,0,0]],[[1,2,1,1],[2,2,3,2],[3,2,2,0],[1,2,0,0]],[[1,2,1,1],[3,2,3,2],[2,2,2,0],[1,2,0,0]],[[1,3,1,1],[2,2,3,2],[2,2,2,0],[1,2,0,0]],[[2,2,1,1],[2,2,3,2],[2,2,2,0],[1,2,0,0]],[[1,0,2,0],[1,3,2,2],[0,3,4,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[0,3,3,0],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[0,3,3,0],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[0,3,3,0],[1,2,2,2]],[[1,0,2,0],[1,3,2,2],[0,3,4,1],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[0,3,3,1],[1,3,2,0]],[[1,0,2,0],[1,3,2,2],[0,3,3,1],[1,2,3,0]],[[1,0,2,0],[1,3,2,3],[1,0,3,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,0,3,3],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,0,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[1,0,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,2,3],[1,1,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,1,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,1,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,1,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[1,1,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[1,1,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,2,2],[1,1,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,1,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,1,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[1,1,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[1,1,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,2,3],[1,1,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,2,2],[1,1,4,2],[1,2,1,1]],[[1,0,2,0],[1,3,2,2],[1,1,3,3],[1,2,1,1]],[[1,0,2,0],[1,3,2,2],[1,1,3,2],[1,2,1,2]],[[1,0,2,0],[1,3,2,3],[1,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[1,1,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[1,1,3,3],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[1,1,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,2,2],[1,1,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,2,2],[1,1,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,2,3],[1,2,2,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[1,2,2,3],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[1,2,2,2],[1,1,3,1]],[[1,0,2,0],[1,3,2,2],[1,2,2,2],[1,1,2,2]],[[1,0,2,0],[1,3,2,2],[1,2,4,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,0],[2,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,0],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,0],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,0],[1,2,2,2]],[[1,0,2,0],[1,3,2,2],[1,2,4,1],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,1],[1,1,3,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,1],[1,1,2,2]],[[1,0,2,0],[1,3,2,2],[1,2,4,1],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[1,2,3,1],[2,2,2,0]],[[1,0,2,0],[1,3,2,2],[1,2,3,1],[1,3,2,0]],[[1,0,2,0],[1,3,2,2],[1,2,3,1],[1,2,3,0]],[[1,0,2,0],[1,3,2,3],[1,2,3,2],[1,0,2,1]],[[1,0,2,0],[1,3,2,2],[1,2,4,2],[1,0,2,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,3],[1,0,2,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,2],[1,0,2,2]],[[1,0,2,0],[1,3,2,3],[1,2,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,2,2],[1,2,4,2],[1,1,1,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,3],[1,1,1,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,2],[1,1,1,2]],[[1,0,2,0],[1,3,2,3],[1,2,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,2,2],[1,2,4,2],[1,1,2,0]],[[1,0,2,0],[1,3,2,2],[1,2,3,3],[1,1,2,0]],[[1,0,2,0],[1,3,2,2],[1,2,3,2],[1,1,3,0]],[[1,0,2,0],[1,3,2,3],[1,2,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,2,2],[1,2,4,2],[1,2,0,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,3],[1,2,0,1]],[[1,0,2,0],[1,3,2,2],[1,2,3,2],[1,2,0,2]],[[1,0,2,0],[1,3,2,3],[1,2,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,2,2],[1,2,4,2],[1,2,1,0]],[[1,0,2,0],[1,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,1,1],[2,2,3,2],[2,2,2,0],[2,1,1,0]],[[1,0,2,0],[1,4,2,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,3],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,4,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,3,0,3],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,3,0,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,3,0,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[1,3,0,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[1,3,0,2],[1,2,2,2]],[[1,0,2,0],[1,4,2,2],[1,3,2,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,4,2,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,3,2,0],[2,2,2,1]],[[1,0,2,0],[1,3,2,2],[1,3,2,0],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[1,3,2,0],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[1,3,2,0],[1,2,2,2]],[[1,0,2,0],[1,4,2,2],[1,3,2,1],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[1,4,2,1],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[1,3,2,1],[2,2,2,0]],[[1,0,2,0],[1,3,2,2],[1,3,2,1],[1,3,2,0]],[[1,0,2,0],[1,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,1,1],[2,2,3,2],[3,2,2,0],[1,1,1,0]],[[1,2,1,1],[3,2,3,2],[2,2,2,0],[1,1,1,0]],[[1,3,1,1],[2,2,3,2],[2,2,2,0],[1,1,1,0]],[[2,2,1,1],[2,2,3,2],[2,2,2,0],[1,1,1,0]],[[1,2,1,1],[2,2,3,2],[2,2,2,0],[2,1,0,1]],[[1,2,1,1],[2,2,3,2],[3,2,2,0],[1,1,0,1]],[[1,2,1,1],[3,2,3,2],[2,2,2,0],[1,1,0,1]],[[1,3,1,1],[2,2,3,2],[2,2,2,0],[1,1,0,1]],[[1,0,2,0],[1,4,2,2],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[1,4,3,0],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[1,3,4,0],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[1,3,3,0],[1,1,3,1]],[[1,0,2,0],[1,3,2,2],[1,3,3,0],[1,1,2,2]],[[1,0,2,0],[1,4,2,2],[1,3,3,0],[1,2,1,1]],[[1,0,2,0],[1,3,2,2],[1,4,3,0],[1,2,1,1]],[[1,0,2,0],[1,3,2,2],[1,3,4,0],[1,2,1,1]],[[1,0,2,0],[1,3,2,2],[1,3,3,0],[2,2,1,1]],[[1,0,2,0],[1,3,2,2],[1,3,3,0],[1,3,1,1]],[[1,0,2,0],[1,4,2,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,2,2],[1,4,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,2,2],[1,3,4,1],[1,1,1,1]],[[1,0,2,0],[1,4,2,2],[1,3,3,1],[1,1,2,0]],[[1,0,2,0],[1,3,2,2],[1,4,3,1],[1,1,2,0]],[[1,0,2,0],[1,3,2,2],[1,3,4,1],[1,1,2,0]],[[1,0,2,0],[1,3,2,2],[1,3,3,1],[1,1,3,0]],[[1,0,2,0],[1,4,2,2],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,2,2],[1,4,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,2,2],[1,3,4,1],[1,2,0,1]],[[1,0,2,0],[1,3,2,2],[1,3,3,1],[2,2,0,1]],[[1,0,2,0],[1,3,2,2],[1,3,3,1],[1,3,0,1]],[[1,0,2,0],[1,4,2,2],[1,3,3,1],[1,2,1,0]],[[1,0,2,0],[1,3,2,2],[1,4,3,1],[1,2,1,0]],[[1,0,2,0],[1,3,2,2],[1,3,4,1],[1,2,1,0]],[[1,0,2,0],[1,3,2,2],[1,3,3,1],[2,2,1,0]],[[1,0,2,0],[1,3,2,2],[1,3,3,1],[1,3,1,0]],[[2,2,1,1],[2,2,3,2],[2,2,2,0],[1,1,0,1]],[[1,2,1,1],[2,2,3,2],[2,2,2,0],[2,0,2,0]],[[1,2,1,1],[2,2,3,2],[3,2,2,0],[1,0,2,0]],[[1,2,1,1],[3,2,3,2],[2,2,2,0],[1,0,2,0]],[[1,3,1,1],[2,2,3,2],[2,2,2,0],[1,0,2,0]],[[2,2,1,1],[2,2,3,2],[2,2,2,0],[1,0,2,0]],[[1,2,1,1],[2,2,3,2],[3,2,2,0],[1,0,1,1]],[[1,2,1,1],[3,2,3,2],[2,2,2,0],[1,0,1,1]],[[1,3,1,1],[2,2,3,2],[2,2,2,0],[1,0,1,1]],[[2,2,1,1],[2,2,3,2],[2,2,2,0],[1,0,1,1]],[[1,2,1,1],[2,2,3,2],[3,2,2,0],[0,2,1,0]],[[1,2,1,1],[3,2,3,2],[2,2,2,0],[0,2,1,0]],[[1,3,1,1],[2,2,3,2],[2,2,2,0],[0,2,1,0]],[[2,2,1,1],[2,2,3,2],[2,2,2,0],[0,2,1,0]],[[1,2,1,1],[2,2,3,2],[3,2,2,0],[0,2,0,1]],[[1,2,1,1],[3,2,3,2],[2,2,2,0],[0,2,0,1]],[[1,3,1,1],[2,2,3,2],[2,2,2,0],[0,2,0,1]],[[2,2,1,1],[2,2,3,2],[2,2,2,0],[0,2,0,1]],[[1,0,2,0],[1,3,2,3],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[3,0,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,0,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,0,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,0,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[2,0,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[2,0,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,2,2],[3,0,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,0,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,0,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,0,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[2,0,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[2,0,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,2,3],[2,0,3,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,0,3,3],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,0,3,2],[0,2,3,1]],[[1,0,2,0],[1,3,2,2],[2,0,3,2],[0,2,2,2]],[[1,0,2,0],[1,3,2,3],[2,0,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,2,2],[2,0,4,2],[1,2,1,1]],[[1,0,2,0],[1,3,2,2],[2,0,3,3],[1,2,1,1]],[[1,0,2,0],[1,3,2,2],[2,0,3,2],[1,2,1,2]],[[1,0,2,0],[1,3,2,3],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[3,0,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,0,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,0,3,3],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,0,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,0,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,2,2],[2,0,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,2,3],[2,1,2,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,1,2,3],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,1,2,2],[0,3,2,1]],[[1,0,2,0],[1,3,2,2],[2,1,2,2],[0,2,3,1]],[[1,0,2,0],[1,3,2,2],[2,1,2,2],[0,2,2,2]],[[1,0,2,0],[1,3,2,2],[3,1,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,1,4,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,1,3,0],[2,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,1,3,0],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[2,1,3,0],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[2,1,3,0],[1,2,2,2]],[[1,0,2,0],[1,3,2,2],[2,1,4,1],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,1,3,1],[0,3,2,1]],[[1,0,2,0],[1,3,2,2],[2,1,3,1],[0,2,3,1]],[[1,0,2,0],[1,3,2,2],[2,1,3,1],[0,2,2,2]],[[1,0,2,0],[1,3,2,2],[3,1,3,1],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,1,4,1],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,1,3,1],[2,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,1,3,1],[1,3,2,0]],[[1,0,2,0],[1,3,2,2],[2,1,3,1],[1,2,3,0]],[[1,0,2,0],[1,3,2,3],[2,1,3,2],[0,2,1,1]],[[1,0,2,0],[1,3,2,2],[2,1,4,2],[0,2,1,1]],[[1,0,2,0],[1,3,2,2],[2,1,3,3],[0,2,1,1]],[[1,0,2,0],[1,3,2,2],[2,1,3,2],[0,2,1,2]],[[1,0,2,0],[1,3,2,3],[2,1,3,2],[0,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,1,4,2],[0,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,1,3,3],[0,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,1,3,2],[0,3,2,0]],[[1,0,2,0],[1,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,1,1],[2,2,3,2],[3,2,2,0],[0,1,2,0]],[[1,2,1,1],[3,2,3,2],[2,2,2,0],[0,1,2,0]],[[1,3,1,1],[2,2,3,2],[2,2,2,0],[0,1,2,0]],[[1,0,2,0],[1,3,2,3],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[3,2,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,0,3],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,0,2],[2,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,0,2],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,0,2],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[2,2,0,2],[1,2,2,2]],[[1,0,2,0],[1,3,2,2],[3,2,2,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,2,0],[2,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,2,0],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,2,0],[1,2,3,1]],[[1,0,2,0],[1,3,2,2],[2,2,2,0],[1,2,2,2]],[[1,0,2,0],[1,3,2,2],[3,2,2,1],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,2,2,1],[2,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,2,2,1],[1,3,2,0]],[[1,0,2,0],[1,3,2,2],[2,2,2,1],[1,2,3,0]],[[1,0,2,0],[1,3,2,3],[2,2,2,2],[0,1,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,2,3],[0,1,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,2,2],[0,1,3,1]],[[1,0,2,0],[1,3,2,2],[2,2,2,2],[0,1,2,2]],[[1,0,2,0],[1,3,2,3],[2,2,2,2],[1,0,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,2,3],[1,0,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,2,2],[1,0,3,1]],[[1,0,2,0],[1,3,2,2],[2,2,2,2],[1,0,2,2]],[[2,2,1,1],[2,2,3,2],[2,2,2,0],[0,1,2,0]],[[1,2,1,1],[3,2,3,2],[2,2,2,0],[0,1,1,1]],[[1,3,1,1],[2,2,3,2],[2,2,2,0],[0,1,1,1]],[[2,2,1,1],[2,2,3,2],[2,2,2,0],[0,1,1,1]],[[1,0,2,0],[1,3,2,2],[2,2,4,0],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,0],[0,3,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,0],[0,2,3,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,0],[0,2,2,2]],[[1,0,2,0],[1,3,2,2],[3,2,3,0],[1,2,1,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,0],[2,2,1,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,0],[1,3,1,1]],[[1,0,2,0],[1,3,2,2],[2,2,4,1],[0,1,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,1],[0,1,3,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,1],[0,1,2,2]],[[1,0,2,0],[1,3,2,2],[2,2,4,1],[0,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,2,3,1],[0,3,2,0]],[[1,0,2,0],[1,3,2,2],[2,2,3,1],[0,2,3,0]],[[1,0,2,0],[1,3,2,2],[2,2,4,1],[1,0,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,1],[1,0,3,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,1],[1,0,2,2]],[[1,0,2,0],[1,3,2,2],[3,2,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,1],[2,2,0,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,1],[1,3,0,1]],[[1,0,2,0],[1,3,2,2],[3,2,3,1],[1,2,1,0]],[[1,0,2,0],[1,3,2,2],[2,2,3,1],[2,2,1,0]],[[1,0,2,0],[1,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,0,2,0],[1,3,2,3],[2,2,3,2],[0,0,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,4,2],[0,0,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,3],[0,0,2,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,2],[0,0,2,2]],[[1,0,2,0],[1,3,2,3],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,2,2],[2,2,4,2],[0,1,1,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,3],[0,1,1,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,2],[0,1,1,2]],[[1,0,2,0],[1,3,2,3],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,2,2],[2,2,4,2],[0,1,2,0]],[[1,0,2,0],[1,3,2,2],[2,2,3,3],[0,1,2,0]],[[1,0,2,0],[1,3,2,2],[2,2,3,2],[0,1,3,0]],[[1,0,2,0],[1,3,2,3],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,2,2],[2,2,4,2],[0,2,0,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,3],[0,2,0,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,2],[0,2,0,2]],[[1,0,2,0],[1,3,2,3],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,2,2],[2,2,4,2],[0,2,1,0]],[[1,0,2,0],[1,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,0,2,0],[1,3,2,3],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,2,2],[2,2,4,2],[1,0,1,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,3],[1,0,1,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,2],[1,0,1,2]],[[1,0,2,0],[1,3,2,3],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,2,2],[2,2,4,2],[1,0,2,0]],[[1,0,2,0],[1,3,2,2],[2,2,3,3],[1,0,2,0]],[[1,0,2,0],[1,3,2,2],[2,2,3,2],[1,0,3,0]],[[1,0,2,0],[1,3,2,3],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,2,2],[2,2,4,2],[1,1,0,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,3],[1,1,0,1]],[[1,0,2,0],[1,3,2,2],[2,2,3,2],[1,1,0,2]],[[1,0,2,0],[1,3,2,3],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,2,2],[2,2,4,2],[1,1,1,0]],[[1,0,2,0],[1,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,0,2,0],[1,4,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,3],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[3,3,0,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,4,0,2],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,0,3],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,0,2],[0,3,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,0,2],[0,2,3,1]],[[1,0,2,0],[1,3,2,2],[2,3,0,2],[0,2,2,2]],[[1,0,2,0],[1,4,2,2],[2,3,0,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[3,3,0,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[2,4,0,2],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,0,2],[2,1,2,1]],[[1,0,2,0],[1,3,2,2],[3,3,1,0],[1,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,1,0],[2,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,1,0],[1,3,2,1]],[[1,0,2,0],[1,3,2,2],[3,3,1,1],[1,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,1,1],[2,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,0,2,0],[1,4,2,2],[2,3,2,0],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[3,3,2,0],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,4,2,0],[0,2,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,2,0],[0,3,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,2,0],[0,2,3,1]],[[1,0,2,0],[1,3,2,2],[2,3,2,0],[0,2,2,2]],[[1,0,2,0],[1,4,2,2],[2,3,2,0],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[3,3,2,0],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[2,4,2,0],[1,1,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,2,0],[2,1,2,1]],[[1,0,2,0],[1,4,2,2],[2,3,2,1],[0,2,2,0]],[[1,0,2,0],[1,3,2,2],[3,3,2,1],[0,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,4,2,1],[0,2,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,2,1],[0,3,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,2,1],[0,2,3,0]],[[1,0,2,0],[1,4,2,2],[2,3,2,1],[1,1,2,0]],[[1,0,2,0],[1,3,2,2],[3,3,2,1],[1,1,2,0]],[[1,0,2,0],[1,3,2,2],[2,4,2,1],[1,1,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,0,2,0],[1,4,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,0],[1,3,2,2],[3,3,3,0],[0,1,2,1]],[[1,0,2,0],[1,3,2,2],[2,4,3,0],[0,1,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,4,0],[0,1,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,0],[0,1,3,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,0],[0,1,2,2]],[[1,0,2,0],[1,4,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,0],[1,3,2,2],[3,3,3,0],[0,2,1,1]],[[1,0,2,0],[1,3,2,2],[2,4,3,0],[0,2,1,1]],[[1,0,2,0],[1,3,2,2],[2,3,4,0],[0,2,1,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,0],[0,3,1,1]],[[1,0,2,0],[1,4,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,0],[1,3,2,2],[3,3,3,0],[1,0,2,1]],[[1,0,2,0],[1,3,2,2],[2,4,3,0],[1,0,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,4,0],[1,0,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,0],[2,0,2,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,0],[1,0,3,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,0],[1,0,2,2]],[[1,0,2,0],[1,4,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,0],[1,3,2,2],[3,3,3,0],[1,1,1,1]],[[1,0,2,0],[1,3,2,2],[2,4,3,0],[1,1,1,1]],[[1,0,2,0],[1,3,2,2],[2,3,4,0],[1,1,1,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,0],[2,1,1,1]],[[1,0,2,0],[1,4,2,2],[2,3,3,0],[1,2,0,1]],[[1,0,2,0],[1,3,2,2],[3,3,3,0],[1,2,0,1]],[[1,0,2,0],[1,3,2,2],[2,4,3,0],[1,2,0,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,0,2,0],[1,4,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,0],[1,3,2,2],[3,3,3,1],[0,1,1,1]],[[1,0,2,0],[1,3,2,2],[2,4,3,1],[0,1,1,1]],[[1,0,2,0],[1,3,2,2],[2,3,4,1],[0,1,1,1]],[[1,0,2,0],[1,4,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,0],[1,3,2,2],[3,3,3,1],[0,1,2,0]],[[1,0,2,0],[1,3,2,2],[2,4,3,1],[0,1,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,4,1],[0,1,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,3,1],[0,1,3,0]],[[1,0,2,0],[1,4,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,0],[1,3,2,2],[3,3,3,1],[0,2,0,1]],[[1,0,2,0],[1,3,2,2],[2,4,3,1],[0,2,0,1]],[[1,0,2,0],[1,3,2,2],[2,3,4,1],[0,2,0,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,1],[0,3,0,1]],[[1,0,2,0],[1,4,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,0],[1,3,2,2],[3,3,3,1],[0,2,1,0]],[[1,0,2,0],[1,3,2,2],[2,4,3,1],[0,2,1,0]],[[1,0,2,0],[1,3,2,2],[2,3,4,1],[0,2,1,0]],[[1,0,2,0],[1,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,0,2,0],[1,4,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[1,3,2,2],[3,3,3,1],[1,0,1,1]],[[1,0,2,0],[1,3,2,2],[2,4,3,1],[1,0,1,1]],[[1,0,2,0],[1,3,2,2],[2,3,4,1],[1,0,1,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,1],[2,0,1,1]],[[1,0,2,0],[1,4,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,0],[1,3,2,2],[3,3,3,1],[1,0,2,0]],[[1,0,2,0],[1,3,2,2],[2,4,3,1],[1,0,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,4,1],[1,0,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,3,1],[2,0,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,3,1],[1,0,3,0]],[[1,0,2,0],[1,4,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,0],[1,3,2,2],[3,3,3,1],[1,1,0,1]],[[1,0,2,0],[1,3,2,2],[2,4,3,1],[1,1,0,1]],[[1,0,2,0],[1,3,2,2],[2,3,4,1],[1,1,0,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,1],[2,1,0,1]],[[1,0,2,0],[1,4,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,0],[1,3,2,2],[3,3,3,1],[1,1,1,0]],[[1,0,2,0],[1,3,2,2],[2,4,3,1],[1,1,1,0]],[[1,0,2,0],[1,3,2,2],[2,3,4,1],[1,1,1,0]],[[1,0,2,0],[1,3,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[2,2,3,2],[2,2,1,0],[2,1,2,0]],[[1,2,1,1],[2,2,3,2],[3,2,1,0],[1,1,2,0]],[[1,0,2,0],[1,4,2,2],[2,3,3,1],[1,2,0,0]],[[1,0,2,0],[1,3,2,2],[3,3,3,1],[1,2,0,0]],[[1,0,2,0],[1,3,2,2],[2,4,3,1],[1,2,0,0]],[[1,0,2,0],[1,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[3,2,3,2],[2,2,1,0],[1,1,2,0]],[[1,3,1,1],[2,2,3,2],[2,2,1,0],[1,1,2,0]],[[2,2,1,1],[2,2,3,2],[2,2,1,0],[1,1,2,0]],[[1,2,1,1],[2,2,3,2],[3,2,1,0],[0,2,2,0]],[[1,2,1,1],[3,2,3,2],[2,2,1,0],[0,2,2,0]],[[1,3,1,1],[2,2,3,2],[2,2,1,0],[0,2,2,0]],[[2,2,1,1],[2,2,3,2],[2,2,1,0],[0,2,2,0]],[[1,0,2,0],[1,3,2,3],[2,3,3,2],[0,0,1,1]],[[1,0,2,0],[1,3,2,2],[2,3,4,2],[0,0,1,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,3],[0,0,1,1]],[[1,0,2,0],[1,3,2,2],[2,3,3,2],[0,0,1,2]],[[1,0,2,0],[1,3,2,3],[2,3,3,2],[0,0,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,4,2],[0,0,2,0]],[[1,0,2,0],[1,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,2,3,2],[2,2,0,0],[1,3,2,0]],[[1,2,1,1],[2,2,3,2],[2,2,0,0],[2,2,2,0]],[[1,2,1,1],[2,2,3,2],[3,2,0,0],[1,2,2,0]],[[1,2,1,1],[3,2,3,2],[2,2,0,0],[1,2,2,0]],[[1,3,1,1],[2,2,3,2],[2,2,0,0],[1,2,2,0]],[[2,2,1,1],[2,2,3,2],[2,2,0,0],[1,2,2,0]],[[1,0,2,0],[1,3,3,0],[0,3,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[0,3,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,0],[0,3,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,3,0],[0,3,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,3,0],[0,3,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,0],[0,3,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,0],[0,3,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,3,0],[1,1,4,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[1,1,3,2],[2,2,2,1]],[[1,0,2,0],[1,3,3,0],[1,1,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,3,0],[1,1,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,0],[1,1,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,3,0],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,0],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,0],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,3,0],[1,2,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,3,0],[1,2,4,2],[1,1,2,1]],[[1,0,2,0],[1,3,3,0],[1,2,3,2],[1,1,3,1]],[[1,0,2,0],[1,3,3,0],[1,2,3,2],[1,1,2,2]],[[1,0,2,0],[1,3,3,0],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,0],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,0],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,0],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[1,4,3,0],[1,3,2,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[1,4,2,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[1,3,2,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,0],[1,3,2,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,0],[1,3,2,1],[1,2,3,1]],[[1,0,2,0],[1,3,3,0],[1,3,2,1],[1,2,2,2]],[[1,0,2,0],[1,4,3,0],[1,3,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,0],[1,4,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,0],[1,3,2,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,0],[1,3,2,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,0],[1,3,2,2],[1,2,3,0]],[[1,0,2,0],[1,4,3,0],[1,3,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[1,4,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[1,3,3,0],[2,2,2,1]],[[1,0,2,0],[1,3,3,0],[1,3,3,0],[1,3,2,1]],[[1,0,2,0],[1,3,3,0],[1,3,3,0],[1,2,3,1]],[[1,0,2,0],[1,4,3,0],[1,3,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,0],[1,4,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,0],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,0],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[1,3,3,0],[1,3,3,1],[1,1,2,2]],[[1,0,2,0],[1,4,3,0],[1,3,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,0],[1,4,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,0],[1,3,4,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,0],[1,3,3,1],[2,2,1,1]],[[1,0,2,0],[1,3,3,0],[1,3,3,1],[1,3,1,1]],[[1,0,2,0],[1,4,3,0],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,0],[1,4,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,0],[1,3,4,2],[1,1,1,1]],[[1,0,2,0],[1,4,3,0],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,0],[1,4,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,0],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,0],[1,3,3,2],[1,1,3,0]],[[1,0,2,0],[1,4,3,0],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,0],[1,4,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,0],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,0],[1,3,3,2],[2,2,0,1]],[[1,0,2,0],[1,3,3,0],[1,3,3,2],[1,3,0,1]],[[1,0,2,0],[1,4,3,0],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,0],[1,4,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,0],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,0],[1,3,3,2],[2,2,1,0]],[[1,0,2,0],[1,3,3,0],[1,3,3,2],[1,3,1,0]],[[1,0,2,0],[1,3,3,0],[3,0,3,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,0,4,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,0,3,2],[2,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,0,3,2],[1,3,2,1]],[[1,0,2,0],[1,3,3,0],[2,0,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,0],[2,0,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,3,0],[3,1,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,0],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,3,0],[2,1,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,3,0],[2,1,4,2],[0,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,1,3,2],[0,3,2,1]],[[1,0,2,0],[1,3,3,0],[2,1,3,2],[0,2,3,1]],[[1,0,2,0],[1,3,3,0],[2,1,3,2],[0,2,2,2]],[[1,0,2,0],[1,3,3,0],[3,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,0],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,0],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,0],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,0],[2,1,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,3,0],[3,2,2,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,2,2,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,2,2,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,0],[2,2,2,1],[1,2,3,1]],[[1,0,2,0],[1,3,3,0],[2,2,2,1],[1,2,2,2]],[[1,0,2,0],[1,3,3,0],[3,2,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,0],[2,2,2,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,0],[2,2,2,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,0],[2,2,2,2],[1,2,3,0]],[[1,0,2,0],[1,3,3,0],[3,2,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,0],[2,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,0],[1,3,2,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,0],[1,2,3,1]],[[1,0,2,0],[1,3,3,0],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,1],[0,2,2,2]],[[1,0,2,0],[1,3,3,0],[3,2,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,1],[2,2,1,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,1],[1,3,1,1]],[[1,0,2,0],[1,3,3,0],[2,2,4,2],[0,1,2,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,2],[0,1,3,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,2],[0,1,2,2]],[[1,0,2,0],[1,3,3,0],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,0],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[1,3,3,0],[2,2,3,2],[0,2,3,0]],[[1,0,2,0],[1,3,3,0],[2,2,4,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,2],[1,0,3,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,2],[1,0,2,2]],[[1,0,2,0],[1,3,3,0],[3,2,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,2],[2,2,0,1]],[[1,0,2,0],[1,3,3,0],[2,2,3,2],[1,3,0,1]],[[1,0,2,0],[1,3,3,0],[3,2,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,0],[2,2,3,2],[2,2,1,0]],[[1,0,2,0],[1,3,3,0],[2,2,3,2],[1,3,1,0]],[[1,0,2,0],[1,3,3,0],[3,3,1,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,1,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,1,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,0],[3,3,1,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,0],[2,3,1,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,0],[2,3,1,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,0],[3,3,2,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,2,0],[2,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,2,0],[1,3,2,1]],[[1,0,2,0],[1,4,3,0],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,0],[3,3,2,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,4,2,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,2,1],[0,3,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,2,1],[0,2,3,1]],[[1,0,2,0],[1,3,3,0],[2,3,2,1],[0,2,2,2]],[[1,0,2,0],[1,4,3,0],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,0],[3,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,0],[2,4,2,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,2,1],[2,1,2,1]],[[1,0,2,0],[1,4,3,0],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,0],[3,3,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,0],[2,4,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,0],[2,3,2,2],[0,3,2,0]],[[1,0,2,0],[1,3,3,0],[2,3,2,2],[0,2,3,0]],[[1,0,2,0],[1,4,3,0],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,0],[3,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,0],[2,4,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,0],[2,3,2,2],[2,1,2,0]],[[1,0,2,0],[1,4,3,0],[2,3,3,0],[0,2,2,1]],[[1,0,2,0],[1,3,3,0],[3,3,3,0],[0,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,4,3,0],[0,2,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,0],[0,3,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,0],[0,2,3,1]],[[1,0,2,0],[1,4,3,0],[2,3,3,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,0],[3,3,3,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,0],[2,4,3,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,0],[2,1,2,1]],[[1,0,2,0],[1,4,3,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[1,3,3,0],[3,3,3,1],[0,1,2,1]],[[1,0,2,0],[1,3,3,0],[2,4,3,1],[0,1,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,1],[0,1,2,2]],[[1,0,2,0],[1,4,3,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,3,0],[3,3,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,3,0],[2,4,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,3,0],[2,3,4,1],[0,2,1,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,1],[0,3,1,1]],[[1,0,2,0],[1,4,3,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,3,0],[3,3,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,3,0],[2,4,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,1],[2,0,2,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,1],[1,0,2,2]],[[1,0,2,0],[1,4,3,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,0],[3,3,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,0],[2,4,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,0],[2,3,4,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,1],[2,1,1,1]],[[1,0,2,0],[1,4,3,0],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,0],[3,3,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,0],[2,4,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,1],[2,2,0,1]],[[1,0,2,0],[1,4,3,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,0],[3,3,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,0],[2,4,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,0],[2,3,4,2],[0,1,1,1]],[[1,0,2,0],[1,4,3,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,0],[3,3,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,0],[2,4,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,0],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,0],[2,3,3,2],[0,1,3,0]],[[1,0,2,0],[1,4,3,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,0],[3,3,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,0],[2,4,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,0],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,2],[0,3,0,1]],[[1,0,2,0],[1,4,3,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,0],[3,3,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,0],[2,4,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,0],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,0],[2,3,3,2],[0,3,1,0]],[[1,0,2,0],[1,4,3,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,0],[3,3,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,0],[2,4,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,0],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,2],[2,0,1,1]],[[1,0,2,0],[1,4,3,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,0],[3,3,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,0],[2,4,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,0],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,0],[2,3,3,2],[2,0,2,0]],[[1,0,2,0],[1,3,3,0],[2,3,3,2],[1,0,3,0]],[[1,0,2,0],[1,4,3,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,0],[3,3,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,0],[2,4,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,0],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,0],[2,3,3,2],[2,1,0,1]],[[1,0,2,0],[1,4,3,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,0],[3,3,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,0],[2,4,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,0],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,0],[2,3,3,2],[2,1,1,0]],[[1,0,2,0],[1,4,3,0],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,3,3,0],[3,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,3,3,0],[2,4,3,2],[1,2,0,0]],[[1,0,2,0],[1,3,3,0],[2,3,3,2],[2,2,0,0]],[[1,0,2,0],[1,3,3,1],[1,0,3,3],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,0,3,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,1],[1,0,3,2],[1,2,2,2]],[[1,0,2,0],[1,3,3,1],[1,1,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,1,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,1,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,3,1],[1,1,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,1],[1,1,2,2],[1,2,2,2]],[[1,0,3,0],[1,3,3,1],[1,1,3,1],[1,2,2,1]],[[1,0,2,0],[1,4,3,1],[1,1,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,4,1],[1,1,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,1,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,1,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,1,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,1],[1,1,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,3,1],[1,1,3,1],[1,2,2,2]],[[1,0,3,0],[1,3,3,1],[1,1,3,2],[1,2,1,1]],[[1,0,2,0],[1,4,3,1],[1,1,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,4,1],[1,1,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,1],[1,1,4,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,1],[1,1,3,3],[1,2,1,1]],[[1,0,2,0],[1,3,3,1],[1,1,3,2],[1,2,1,2]],[[1,0,3,0],[1,3,3,1],[1,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,4,3,1],[1,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,4,1],[1,1,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,1],[1,1,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,1],[1,1,3,3],[1,2,2,0]],[[1,0,2,0],[1,3,3,1],[1,1,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,1],[1,1,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,1],[1,1,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,3,1],[1,2,2,3],[1,1,2,1]],[[1,0,2,0],[1,3,3,1],[1,2,2,2],[1,1,3,1]],[[1,0,2,0],[1,3,3,1],[1,2,2,2],[1,1,2,2]],[[1,0,3,0],[1,3,3,1],[1,2,3,1],[1,1,2,1]],[[1,0,2,0],[1,4,3,1],[1,2,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,4,1],[1,2,3,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,1],[1,2,4,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,1],[1,2,3,1],[1,1,3,1]],[[1,0,2,0],[1,3,3,1],[1,2,3,1],[1,1,2,2]],[[1,0,3,0],[1,3,3,1],[1,2,3,1],[1,2,1,1]],[[1,0,2,0],[1,4,3,1],[1,2,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,4,1],[1,2,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,1],[1,2,4,1],[1,2,1,1]],[[1,0,2,0],[1,3,4,1],[1,2,3,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,1],[1,2,4,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,1],[1,2,3,3],[1,0,2,1]],[[1,0,2,0],[1,3,3,1],[1,2,3,2],[1,0,2,2]],[[1,0,3,0],[1,3,3,1],[1,2,3,2],[1,1,1,1]],[[1,0,2,0],[1,4,3,1],[1,2,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,4,1],[1,2,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,1],[1,2,4,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,1],[1,2,3,3],[1,1,1,1]],[[1,0,2,0],[1,3,3,1],[1,2,3,2],[1,1,1,2]],[[1,0,3,0],[1,3,3,1],[1,2,3,2],[1,1,2,0]],[[1,0,2,0],[1,4,3,1],[1,2,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,4,1],[1,2,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,1],[1,2,4,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,1],[1,2,3,3],[1,1,2,0]],[[1,0,2,0],[1,3,3,1],[1,2,3,2],[1,1,3,0]],[[1,0,3,0],[1,3,3,1],[1,2,3,2],[1,2,0,1]],[[1,0,2,0],[1,4,3,1],[1,2,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,4,1],[1,2,3,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,1],[1,2,4,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,1],[1,2,3,3],[1,2,0,1]],[[1,0,2,0],[1,3,3,1],[1,2,3,2],[1,2,0,2]],[[1,0,3,0],[1,3,3,1],[1,2,3,2],[1,2,1,0]],[[1,0,2,0],[1,4,3,1],[1,2,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,4,1],[1,2,3,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,1],[1,2,4,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,1],[1,2,3,3],[1,2,1,0]],[[1,0,3,0],[1,3,3,1],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[1,4,3,1],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,4,1],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,4,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,3,0,3],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,3,0,2],[2,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,3,0,2],[1,3,2,1]],[[1,0,2,0],[1,3,3,1],[1,3,0,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,1],[1,3,0,2],[1,2,2,2]],[[1,0,3,0],[1,3,3,1],[1,3,1,1],[1,2,2,1]],[[1,0,2,0],[1,4,3,1],[1,3,1,1],[1,2,2,1]],[[1,0,2,0],[1,3,4,1],[1,3,1,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,4,1,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,3,1,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,1],[1,3,1,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,1],[1,3,1,1],[1,2,3,1]],[[1,0,2,0],[1,3,3,1],[1,3,1,1],[1,2,2,2]],[[1,0,3,0],[1,3,3,1],[1,3,1,2],[1,2,2,0]],[[1,0,2,0],[1,4,3,1],[1,3,1,2],[1,2,2,0]],[[1,0,2,0],[1,3,4,1],[1,3,1,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,1],[1,4,1,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,1],[1,3,1,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,1],[1,3,1,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,1],[1,3,1,2],[1,2,3,0]],[[1,0,3,0],[1,3,3,1],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,4,3,1],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,3,4,1],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,1],[1,4,2,1],[1,1,2,1]],[[1,0,3,0],[1,3,3,1],[1,3,2,1],[1,2,1,1]],[[1,0,2,0],[1,4,3,1],[1,3,2,1],[1,2,1,1]],[[1,0,2,0],[1,3,4,1],[1,3,2,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,1],[1,4,2,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,1],[1,3,2,1],[2,2,1,1]],[[1,0,2,0],[1,3,3,1],[1,3,2,1],[1,3,1,1]],[[1,0,3,0],[1,3,3,1],[1,3,2,2],[1,1,1,1]],[[1,0,2,0],[1,4,3,1],[1,3,2,2],[1,1,1,1]],[[1,0,2,0],[1,3,4,1],[1,3,2,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,1],[1,4,2,2],[1,1,1,1]],[[1,0,3,0],[1,3,3,1],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,4,3,1],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,4,1],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,1],[1,4,2,2],[1,1,2,0]],[[1,0,3,0],[1,3,3,1],[1,3,2,2],[1,2,0,1]],[[1,0,2,0],[1,4,3,1],[1,3,2,2],[1,2,0,1]],[[1,0,2,0],[1,3,4,1],[1,3,2,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,1],[1,4,2,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,1],[1,3,2,2],[2,2,0,1]],[[1,0,2,0],[1,3,3,1],[1,3,2,2],[1,3,0,1]],[[1,0,3,0],[1,3,3,1],[1,3,2,2],[1,2,1,0]],[[1,0,2,0],[1,4,3,1],[1,3,2,2],[1,2,1,0]],[[1,0,2,0],[1,3,4,1],[1,3,2,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,1],[1,4,2,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,1],[1,3,2,2],[2,2,1,0]],[[1,0,2,0],[1,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,2],[2,1,3,0],[2,1,1,0]],[[1,2,1,1],[2,2,3,2],[3,1,3,0],[1,1,1,0]],[[1,2,1,1],[3,2,3,2],[2,1,3,0],[1,1,1,0]],[[1,3,1,1],[2,2,3,2],[2,1,3,0],[1,1,1,0]],[[2,2,1,1],[2,2,3,2],[2,1,3,0],[1,1,1,0]],[[1,2,1,1],[2,2,3,2],[2,1,3,0],[2,1,0,1]],[[1,2,1,1],[2,2,3,2],[3,1,3,0],[1,1,0,1]],[[1,2,1,1],[3,2,3,2],[2,1,3,0],[1,1,0,1]],[[1,3,1,1],[2,2,3,2],[2,1,3,0],[1,1,0,1]],[[2,2,1,1],[2,2,3,2],[2,1,3,0],[1,1,0,1]],[[1,0,3,0],[1,3,3,1],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,4,3,1],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,3,4,1],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[1,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[2,2,3,2],[2,1,3,0],[2,0,2,0]],[[1,2,1,1],[2,2,3,2],[3,1,3,0],[1,0,2,0]],[[1,2,1,1],[3,2,3,2],[2,1,3,0],[1,0,2,0]],[[1,3,1,1],[2,2,3,2],[2,1,3,0],[1,0,2,0]],[[2,2,1,1],[2,2,3,2],[2,1,3,0],[1,0,2,0]],[[1,2,1,1],[2,2,3,2],[3,1,3,0],[1,0,1,1]],[[1,2,1,1],[3,2,3,2],[2,1,3,0],[1,0,1,1]],[[1,3,1,1],[2,2,3,2],[2,1,3,0],[1,0,1,1]],[[2,2,1,1],[2,2,3,2],[2,1,3,0],[1,0,1,1]],[[1,2,1,1],[2,2,3,2],[3,1,3,0],[0,2,1,0]],[[1,2,1,1],[3,2,3,2],[2,1,3,0],[0,2,1,0]],[[1,0,2,0],[1,3,3,1],[3,0,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,0,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,0,2,2],[2,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,0,2,2],[1,3,2,1]],[[1,0,2,0],[1,3,3,1],[2,0,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,1],[2,0,2,2],[1,2,2,2]],[[1,0,3,0],[1,3,3,1],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[1,4,3,1],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,4,1],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[3,0,3,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,0,4,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,0,3,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,0,3,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,1],[2,0,3,1],[1,2,3,1]],[[1,0,2,0],[1,3,3,1],[2,0,3,1],[1,2,2,2]],[[1,0,2,0],[1,3,3,1],[2,0,3,3],[0,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,0,3,2],[0,2,3,1]],[[1,0,2,0],[1,3,3,1],[2,0,3,2],[0,2,2,2]],[[1,0,3,0],[1,3,3,1],[2,0,3,2],[1,2,1,1]],[[1,0,2,0],[1,4,3,1],[2,0,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,4,1],[2,0,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,1],[2,0,4,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,1],[2,0,3,3],[1,2,1,1]],[[1,0,2,0],[1,3,3,1],[2,0,3,2],[1,2,1,2]],[[1,0,3,0],[1,3,3,1],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[1,4,3,1],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,4,1],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,1],[3,0,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,0,4,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,0,3,3],[1,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,0,3,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,0,3,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,1],[2,0,3,2],[1,2,3,0]],[[1,0,2,0],[1,3,3,1],[2,1,2,3],[0,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,1,2,2],[0,3,2,1]],[[1,0,2,0],[1,3,3,1],[2,1,2,2],[0,2,3,1]],[[1,0,2,0],[1,3,3,1],[2,1,2,2],[0,2,2,2]],[[1,0,3,0],[1,3,3,1],[2,1,3,1],[0,2,2,1]],[[1,0,2,0],[1,4,3,1],[2,1,3,1],[0,2,2,1]],[[1,0,2,0],[1,3,4,1],[2,1,3,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,1,4,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,1,3,1],[0,3,2,1]],[[1,0,2,0],[1,3,3,1],[2,1,3,1],[0,2,3,1]],[[1,0,2,0],[1,3,3,1],[2,1,3,1],[0,2,2,2]],[[1,0,3,0],[1,3,3,1],[2,1,3,2],[0,2,1,1]],[[1,0,2,0],[1,4,3,1],[2,1,3,2],[0,2,1,1]],[[1,0,2,0],[1,3,4,1],[2,1,3,2],[0,2,1,1]],[[1,0,2,0],[1,3,3,1],[2,1,4,2],[0,2,1,1]],[[1,0,2,0],[1,3,3,1],[2,1,3,3],[0,2,1,1]],[[1,0,2,0],[1,3,3,1],[2,1,3,2],[0,2,1,2]],[[1,0,3,0],[1,3,3,1],[2,1,3,2],[0,2,2,0]],[[1,0,2,0],[1,4,3,1],[2,1,3,2],[0,2,2,0]],[[1,0,2,0],[1,3,4,1],[2,1,3,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,1,4,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,1,3,3],[0,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,1,3,2],[0,3,2,0]],[[1,0,2,0],[1,3,3,1],[2,1,3,2],[0,2,3,0]],[[1,3,1,1],[2,2,3,2],[2,1,3,0],[0,2,1,0]],[[2,2,1,1],[2,2,3,2],[2,1,3,0],[0,2,1,0]],[[1,2,1,1],[2,2,3,2],[3,1,3,0],[0,2,0,1]],[[1,2,1,1],[3,2,3,2],[2,1,3,0],[0,2,0,1]],[[1,3,1,1],[2,2,3,2],[2,1,3,0],[0,2,0,1]],[[2,2,1,1],[2,2,3,2],[2,1,3,0],[0,2,0,1]],[[1,0,2,0],[1,3,3,1],[3,2,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,0,3],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,0,2],[2,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,0,2],[1,3,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,0,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,1],[2,2,0,2],[1,2,2,2]],[[1,0,2,0],[1,3,3,1],[3,2,1,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,1,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,1,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,1,1],[1,2,3,1]],[[1,0,2,0],[1,3,3,1],[2,2,1,1],[1,2,2,2]],[[1,0,2,0],[1,3,3,1],[3,2,1,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,2,1,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,2,1,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,1],[2,2,1,2],[1,2,3,0]],[[1,0,2,0],[1,3,3,1],[3,2,2,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,1],[2,2,2,1],[2,2,1,1]],[[1,0,2,0],[1,3,3,1],[2,2,2,1],[1,3,1,1]],[[1,0,2,0],[1,3,3,1],[2,2,2,3],[0,1,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,2,2],[0,1,3,1]],[[1,0,2,0],[1,3,3,1],[2,2,2,2],[0,1,2,2]],[[1,0,2,0],[1,3,3,1],[2,2,2,3],[1,0,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,2,2],[1,0,3,1]],[[1,0,2,0],[1,3,3,1],[2,2,2,2],[1,0,2,2]],[[1,0,2,0],[1,3,3,1],[3,2,2,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,1],[2,2,2,2],[2,2,0,1]],[[1,0,2,0],[1,3,3,1],[2,2,2,2],[1,3,0,1]],[[1,0,2,0],[1,3,3,1],[3,2,2,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,1],[2,2,2,2],[2,2,1,0]],[[1,0,2,0],[1,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,0,3,0],[1,3,3,1],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[1,4,3,1],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[1,3,4,1],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,4,1],[0,1,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,1],[0,1,3,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,1],[0,1,2,2]],[[1,0,3,0],[1,3,3,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[1,4,3,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,4,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,3,1],[2,2,4,1],[0,2,1,1]],[[1,0,3,0],[1,3,3,1],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[1,4,3,1],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,4,1],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,4,1],[1,0,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,1],[1,0,3,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,1],[1,0,2,2]],[[1,0,3,0],[1,3,3,1],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[1,4,3,1],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,4,1],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,1],[2,2,4,1],[1,1,1,1]],[[1,2,1,1],[2,2,3,2],[3,1,3,0],[0,1,2,0]],[[1,2,1,1],[3,2,3,2],[2,1,3,0],[0,1,2,0]],[[1,3,1,1],[2,2,3,2],[2,1,3,0],[0,1,2,0]],[[2,2,1,1],[2,2,3,2],[2,1,3,0],[0,1,2,0]],[[1,2,1,1],[3,2,3,2],[2,1,3,0],[0,1,1,1]],[[1,3,1,1],[2,2,3,2],[2,1,3,0],[0,1,1,1]],[[2,2,1,1],[2,2,3,2],[2,1,3,0],[0,1,1,1]],[[1,0,3,0],[1,3,3,1],[2,2,3,2],[0,0,2,1]],[[1,0,2,0],[1,4,3,1],[2,2,3,2],[0,0,2,1]],[[1,0,2,0],[1,3,4,1],[2,2,3,2],[0,0,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,4,2],[0,0,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,3],[0,0,2,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,2],[0,0,2,2]],[[1,0,3,0],[1,3,3,1],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[1,4,3,1],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,4,1],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,1],[2,2,4,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,3],[0,1,1,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,2],[0,1,1,2]],[[1,0,3,0],[1,3,3,1],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[1,4,3,1],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,4,1],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,1],[2,2,4,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,1],[2,2,3,3],[0,1,2,0]],[[1,0,2,0],[1,3,3,1],[2,2,3,2],[0,1,3,0]],[[1,0,3,0],[1,3,3,1],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[1,4,3,1],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,4,1],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,1],[2,2,4,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,3],[0,2,0,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,2],[0,2,0,2]],[[1,0,3,0],[1,3,3,1],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[1,4,3,1],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,4,1],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,1],[2,2,4,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,1],[2,2,3,3],[0,2,1,0]],[[1,0,3,0],[1,3,3,1],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[1,4,3,1],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,4,1],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,1],[2,2,4,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,3],[1,0,1,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,2],[1,0,1,2]],[[1,0,3,0],[1,3,3,1],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[1,4,3,1],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,4,1],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,1],[2,2,4,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,1],[2,2,3,3],[1,0,2,0]],[[1,0,2,0],[1,3,3,1],[2,2,3,2],[1,0,3,0]],[[1,0,3,0],[1,3,3,1],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[1,4,3,1],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,4,1],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,1],[2,2,4,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,3],[1,1,0,1]],[[1,0,2,0],[1,3,3,1],[2,2,3,2],[1,1,0,2]],[[1,0,3,0],[1,3,3,1],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[1,4,3,1],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,4,1],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,1],[2,2,4,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,0,2,0],[1,3,3,1],[3,3,0,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,3,0,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,3,0,1],[1,3,2,1]],[[1,0,3,0],[1,3,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[1,4,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[1,3,4,1],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[1,3,3,1],[3,3,0,2],[0,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,4,0,2],[0,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,3,0,3],[0,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,3,0,2],[0,3,2,1]],[[1,0,2,0],[1,3,3,1],[2,3,0,2],[0,2,3,1]],[[1,0,2,0],[1,3,3,1],[2,3,0,2],[0,2,2,2]],[[1,0,3,0],[1,3,3,1],[2,3,0,2],[1,1,2,1]],[[1,0,2,0],[1,4,3,1],[2,3,0,2],[1,1,2,1]],[[1,0,2,0],[1,3,4,1],[2,3,0,2],[1,1,2,1]],[[1,0,2,0],[1,3,3,1],[3,3,0,2],[1,1,2,1]],[[1,0,2,0],[1,3,3,1],[2,4,0,2],[1,1,2,1]],[[1,0,2,0],[1,3,3,1],[2,3,0,2],[2,1,2,1]],[[1,0,2,0],[1,3,3,1],[3,3,0,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,3,0,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,3,0,2],[1,3,2,0]],[[1,0,3,0],[1,3,3,1],[2,3,1,1],[0,2,2,1]],[[1,0,2,0],[1,4,3,1],[2,3,1,1],[0,2,2,1]],[[1,0,2,0],[1,3,4,1],[2,3,1,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,1],[3,3,1,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,4,1,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,1],[2,3,1,1],[0,3,2,1]],[[1,0,2,0],[1,3,3,1],[2,3,1,1],[0,2,3,1]],[[1,0,2,0],[1,3,3,1],[2,3,1,1],[0,2,2,2]],[[1,0,3,0],[1,3,3,1],[2,3,1,1],[1,1,2,1]],[[1,0,2,0],[1,4,3,1],[2,3,1,1],[1,1,2,1]],[[1,0,2,0],[1,3,4,1],[2,3,1,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,1],[3,3,1,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,1],[2,4,1,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,1],[2,3,1,1],[2,1,2,1]],[[1,0,3,0],[1,3,3,1],[2,3,1,2],[0,2,2,0]],[[1,0,2,0],[1,4,3,1],[2,3,1,2],[0,2,2,0]],[[1,0,2,0],[1,3,4,1],[2,3,1,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,1],[3,3,1,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,4,1,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,1],[2,3,1,2],[0,3,2,0]],[[1,0,2,0],[1,3,3,1],[2,3,1,2],[0,2,3,0]],[[1,0,3,0],[1,3,3,1],[2,3,1,2],[1,1,2,0]],[[1,0,2,0],[1,4,3,1],[2,3,1,2],[1,1,2,0]],[[1,0,2,0],[1,3,4,1],[2,3,1,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,1],[3,3,1,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,1],[2,4,1,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,0,3,0],[1,3,3,1],[2,3,2,1],[0,1,2,1]],[[1,0,2,0],[1,4,3,1],[2,3,2,1],[0,1,2,1]],[[1,0,2,0],[1,3,4,1],[2,3,2,1],[0,1,2,1]],[[1,0,2,0],[1,3,3,1],[3,3,2,1],[0,1,2,1]],[[1,0,2,0],[1,3,3,1],[2,4,2,1],[0,1,2,1]],[[1,0,3,0],[1,3,3,1],[2,3,2,1],[0,2,1,1]],[[1,0,2,0],[1,4,3,1],[2,3,2,1],[0,2,1,1]],[[1,0,2,0],[1,3,4,1],[2,3,2,1],[0,2,1,1]],[[1,0,2,0],[1,3,3,1],[3,3,2,1],[0,2,1,1]],[[1,0,2,0],[1,3,3,1],[2,4,2,1],[0,2,1,1]],[[1,0,2,0],[1,3,3,1],[2,3,2,1],[0,3,1,1]],[[1,0,3,0],[1,3,3,1],[2,3,2,1],[1,0,2,1]],[[1,0,2,0],[1,4,3,1],[2,3,2,1],[1,0,2,1]],[[1,0,2,0],[1,3,4,1],[2,3,2,1],[1,0,2,1]],[[1,0,2,0],[1,3,3,1],[3,3,2,1],[1,0,2,1]],[[1,0,2,0],[1,3,3,1],[2,4,2,1],[1,0,2,1]],[[1,0,2,0],[1,3,3,1],[2,3,2,1],[2,0,2,1]],[[1,0,3,0],[1,3,3,1],[2,3,2,1],[1,1,1,1]],[[1,0,2,0],[1,4,3,1],[2,3,2,1],[1,1,1,1]],[[1,0,2,0],[1,3,4,1],[2,3,2,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,1],[3,3,2,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,1],[2,4,2,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,1],[2,3,2,1],[2,1,1,1]],[[1,0,2,0],[1,4,3,1],[2,3,2,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,1],[3,3,2,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,1],[2,4,2,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,0,3,0],[1,3,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,2,0],[1,4,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,2,0],[1,3,4,1],[2,3,2,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,1],[3,3,2,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,1],[2,4,2,2],[0,1,1,1]],[[1,0,3,0],[1,3,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,2,0],[1,4,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,2,0],[1,3,4,1],[2,3,2,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,1],[3,3,2,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,1],[2,4,2,2],[0,1,2,0]],[[1,0,3,0],[1,3,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,2,0],[1,4,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,2,0],[1,3,4,1],[2,3,2,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,1],[3,3,2,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,1],[2,4,2,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,1],[2,3,2,2],[0,3,0,1]],[[1,0,3,0],[1,3,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,2,0],[1,4,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,2,0],[1,3,4,1],[2,3,2,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,1],[3,3,2,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,1],[2,4,2,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,0,3,0],[1,3,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,2,0],[1,4,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,2,0],[1,3,4,1],[2,3,2,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,1],[3,3,2,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,1],[2,4,2,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,1],[2,3,2,2],[2,0,1,1]],[[1,0,3,0],[1,3,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,2,0],[1,4,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,2,0],[1,3,4,1],[2,3,2,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,1],[3,3,2,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,1],[2,4,2,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,1],[2,3,2,2],[2,0,2,0]],[[1,0,3,0],[1,3,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,2,0],[1,4,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,2,0],[1,3,4,1],[2,3,2,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,1],[3,3,2,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,1],[2,4,2,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,1],[2,3,2,2],[2,1,0,1]],[[1,0,3,0],[1,3,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,2,0],[1,4,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,2,0],[1,3,4,1],[2,3,2,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,1],[3,3,2,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,1],[2,4,2,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,0,3,0],[1,3,3,1],[2,3,2,2],[1,2,0,0]],[[1,0,2,0],[1,4,3,1],[2,3,2,2],[1,2,0,0]],[[1,0,2,0],[1,3,4,1],[2,3,2,2],[1,2,0,0]],[[1,0,2,0],[1,3,3,1],[3,3,2,2],[1,2,0,0]],[[1,0,2,0],[1,3,3,1],[2,4,2,2],[1,2,0,0]],[[1,0,2,0],[1,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,0,3,0],[1,3,3,1],[2,3,3,1],[0,0,2,1]],[[1,0,2,0],[1,4,3,1],[2,3,3,1],[0,0,2,1]],[[1,0,2,0],[1,3,4,1],[2,3,3,1],[0,0,2,1]],[[1,0,2,0],[1,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,1,1],[2,2,3,2],[2,1,2,0],[1,3,1,0]],[[1,2,1,1],[2,2,3,2],[2,1,2,0],[2,2,1,0]],[[1,2,1,1],[2,2,3,2],[3,1,2,0],[1,2,1,0]],[[1,2,1,1],[3,2,3,2],[2,1,2,0],[1,2,1,0]],[[1,3,1,1],[2,2,3,2],[2,1,2,0],[1,2,1,0]],[[2,2,1,1],[2,2,3,2],[2,1,2,0],[1,2,1,0]],[[1,2,1,1],[2,2,3,2],[2,1,2,0],[2,2,0,1]],[[1,2,1,1],[2,2,3,2],[3,1,2,0],[1,2,0,1]],[[1,2,1,1],[3,2,3,2],[2,1,2,0],[1,2,0,1]],[[1,3,1,1],[2,2,3,2],[2,1,2,0],[1,2,0,1]],[[2,2,1,1],[2,2,3,2],[2,1,2,0],[1,2,0,1]],[[1,0,3,0],[1,3,3,1],[2,3,3,2],[0,0,1,1]],[[1,0,2,0],[1,4,3,1],[2,3,3,2],[0,0,1,1]],[[1,0,2,0],[1,3,4,1],[2,3,3,2],[0,0,1,1]],[[1,0,2,0],[1,3,3,1],[2,3,4,2],[0,0,1,1]],[[1,0,2,0],[1,3,3,1],[2,3,3,3],[0,0,1,1]],[[1,0,2,0],[1,3,3,1],[2,3,3,2],[0,0,1,2]],[[1,0,3,0],[1,3,3,1],[2,3,3,2],[0,0,2,0]],[[1,0,2,0],[1,4,3,1],[2,3,3,2],[0,0,2,0]],[[1,0,2,0],[1,3,4,1],[2,3,3,2],[0,0,2,0]],[[1,0,2,0],[1,3,3,1],[2,3,4,2],[0,0,2,0]],[[1,0,2,0],[1,3,3,1],[2,3,3,3],[0,0,2,0]],[[1,0,3,0],[1,3,3,1],[2,3,3,2],[0,2,0,0]],[[1,0,2,0],[1,4,3,1],[2,3,3,2],[0,2,0,0]],[[1,0,2,0],[1,3,4,1],[2,3,3,2],[0,2,0,0]],[[1,0,2,0],[1,3,3,1],[3,3,3,2],[0,2,0,0]],[[1,0,2,0],[1,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,1,1],[2,2,3,2],[2,1,1,0],[1,3,2,0]],[[1,2,1,1],[2,2,3,2],[2,1,1,0],[2,2,2,0]],[[1,2,1,1],[2,2,3,2],[3,1,1,0],[1,2,2,0]],[[1,2,1,1],[3,2,3,2],[2,1,1,0],[1,2,2,0]],[[1,3,1,1],[2,2,3,2],[2,1,1,0],[1,2,2,0]],[[2,2,1,1],[2,2,3,2],[2,1,1,0],[1,2,2,0]],[[1,0,3,0],[1,3,3,1],[2,3,3,2],[1,1,0,0]],[[1,0,2,0],[1,4,3,1],[2,3,3,2],[1,1,0,0]],[[1,0,2,0],[1,3,4,1],[2,3,3,2],[1,1,0,0]],[[1,0,2,0],[1,3,3,1],[3,3,3,2],[1,1,0,0]],[[1,0,2,0],[1,3,3,1],[2,4,3,2],[1,1,0,0]],[[1,0,2,0],[1,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,1,1],[2,2,3,2],[2,0,3,3],[1,0,0,1]],[[1,2,1,1],[2,2,3,3],[2,0,3,2],[1,0,0,1]],[[1,2,1,1],[2,2,4,2],[2,0,3,2],[1,0,0,1]],[[1,2,1,2],[2,2,3,2],[2,0,3,2],[1,0,0,1]],[[1,2,1,1],[2,2,3,2],[2,0,3,3],[0,1,0,1]],[[1,2,1,1],[2,2,3,3],[2,0,3,2],[0,1,0,1]],[[1,2,1,1],[2,2,4,2],[2,0,3,2],[0,1,0,1]],[[1,2,1,2],[2,2,3,2],[2,0,3,2],[0,1,0,1]],[[1,0,2,0],[1,3,4,2],[1,0,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,3],[1,0,2,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,0,2,3],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,0,2,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,2],[1,0,2,2],[1,2,2,2]],[[1,0,2,0],[1,3,4,2],[1,0,3,2],[1,1,2,1]],[[1,0,2,0],[1,3,3,3],[1,0,3,2],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[1,0,3,3],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[1,0,3,2],[1,1,2,2]],[[1,0,2,0],[1,3,4,2],[1,0,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,3],[1,0,3,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,0,3,3],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,0,3,2],[1,2,1,2]],[[1,0,2,0],[1,3,4,2],[1,0,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,3],[1,0,3,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,0,3,3],[1,2,2,0]],[[1,0,3,0],[1,3,3,2],[1,1,1,2],[1,2,2,1]],[[1,0,2,0],[1,4,3,2],[1,1,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,4,2],[1,1,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,3],[1,1,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,1,1,3],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,1,1,2],[2,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,1,1,2],[1,3,2,1]],[[1,0,2,0],[1,3,3,2],[1,1,1,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,2],[1,1,1,2],[1,2,2,2]],[[1,0,3,0],[1,3,3,2],[1,1,2,2],[1,2,1,1]],[[1,0,2,0],[1,4,3,2],[1,1,2,2],[1,2,1,1]],[[1,0,2,0],[1,3,4,2],[1,1,2,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,3],[1,1,2,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,1,2,3],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,1,2,2],[1,2,1,2]],[[1,0,3,0],[1,3,3,2],[1,1,2,2],[1,2,2,0]],[[1,0,2,0],[1,4,3,2],[1,1,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,4,2],[1,1,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,3],[1,1,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,1,2,3],[1,2,2,0]],[[1,0,3,0],[1,3,3,2],[1,1,3,0],[1,2,2,1]],[[1,0,2,0],[1,4,3,2],[1,1,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,4,2],[1,1,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,3],[1,1,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,1,4,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,1,3,0],[2,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,1,3,0],[1,3,2,1]],[[1,0,2,0],[1,3,3,2],[1,1,3,0],[1,2,3,1]],[[1,0,2,0],[1,3,3,2],[1,1,3,0],[1,2,2,2]],[[1,0,3,0],[1,3,3,2],[1,1,3,1],[1,2,1,1]],[[1,0,2,0],[1,4,3,2],[1,1,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,4,2],[1,1,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,3],[1,1,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,1,4,1],[1,2,1,1]],[[1,0,3,0],[1,3,3,2],[1,1,3,1],[1,2,2,0]],[[1,0,2,0],[1,4,3,2],[1,1,3,1],[1,2,2,0]],[[1,0,2,0],[1,3,4,2],[1,1,3,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,3],[1,1,3,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,1,4,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,1,3,1],[2,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,1,3,1],[1,3,2,0]],[[1,0,2,0],[1,3,3,2],[1,1,3,1],[1,2,3,0]],[[1,0,2,0],[1,3,4,2],[1,1,3,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,3],[1,1,3,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[1,1,3,3],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[1,1,3,2],[1,0,2,2]],[[1,0,2,0],[1,3,4,2],[1,1,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,3],[1,1,3,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[1,1,3,3],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[1,1,3,2],[1,1,1,2]],[[1,0,2,0],[1,3,4,2],[1,1,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,3],[1,1,3,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[1,1,3,3],[1,1,2,0]],[[1,0,3,0],[1,3,3,2],[1,2,0,2],[1,2,2,1]],[[1,0,2,0],[1,4,3,2],[1,2,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,4,2],[1,2,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,3],[1,2,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,2,0,3],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,2,0,2],[2,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,2,0,2],[1,3,2,1]],[[1,0,2,0],[1,3,3,2],[1,2,0,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,2],[1,2,0,2],[1,2,2,2]],[[1,0,3,0],[1,3,3,2],[1,2,1,2],[1,1,2,1]],[[1,0,2,0],[1,4,3,2],[1,2,1,2],[1,1,2,1]],[[1,0,2,0],[1,3,4,2],[1,2,1,2],[1,1,2,1]],[[1,0,2,0],[1,3,3,3],[1,2,1,2],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[1,2,1,3],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[1,2,1,2],[1,1,3,1]],[[1,0,2,0],[1,3,3,2],[1,2,1,2],[1,1,2,2]],[[1,0,2,0],[1,3,4,2],[1,2,2,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,3],[1,2,2,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[1,2,2,3],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[1,2,2,2],[1,0,2,2]],[[1,0,3,0],[1,3,3,2],[1,2,2,2],[1,1,1,1]],[[1,0,2,0],[1,4,3,2],[1,2,2,2],[1,1,1,1]],[[1,0,2,0],[1,3,4,2],[1,2,2,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,3],[1,2,2,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[1,2,2,3],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[1,2,2,2],[1,1,1,2]],[[1,0,3,0],[1,3,3,2],[1,2,2,2],[1,1,2,0]],[[1,0,2,0],[1,4,3,2],[1,2,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,4,2],[1,2,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,3],[1,2,2,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[1,2,2,3],[1,1,2,0]],[[1,0,3,0],[1,3,3,2],[1,2,2,2],[1,2,0,1]],[[1,0,2,0],[1,4,3,2],[1,2,2,2],[1,2,0,1]],[[1,0,2,0],[1,3,4,2],[1,2,2,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,3],[1,2,2,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[1,2,2,3],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[1,2,2,2],[1,2,0,2]],[[1,0,3,0],[1,3,3,2],[1,2,2,2],[1,2,1,0]],[[1,0,2,0],[1,4,3,2],[1,2,2,2],[1,2,1,0]],[[1,0,2,0],[1,3,4,2],[1,2,2,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,3],[1,2,2,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,2,2,3],[1,2,1,0]],[[1,0,3,0],[1,3,3,2],[1,2,3,0],[1,1,2,1]],[[1,0,2,0],[1,4,3,2],[1,2,3,0],[1,1,2,1]],[[1,0,2,0],[1,3,4,2],[1,2,3,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,3],[1,2,3,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[1,2,4,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[1,2,3,0],[1,1,3,1]],[[1,0,2,0],[1,3,3,2],[1,2,3,0],[1,1,2,2]],[[1,0,3,0],[1,3,3,2],[1,2,3,0],[1,2,1,1]],[[1,0,2,0],[1,4,3,2],[1,2,3,0],[1,2,1,1]],[[1,0,2,0],[1,3,4,2],[1,2,3,0],[1,2,1,1]],[[1,0,2,0],[1,3,3,3],[1,2,3,0],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,2,4,0],[1,2,1,1]],[[1,0,2,0],[1,3,4,2],[1,2,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,3,3],[1,2,3,1],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[1,2,4,1],[1,0,2,1]],[[1,0,3,0],[1,3,3,2],[1,2,3,1],[1,1,1,1]],[[1,0,2,0],[1,4,3,2],[1,2,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,4,2],[1,2,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,3],[1,2,3,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[1,2,4,1],[1,1,1,1]],[[1,0,3,0],[1,3,3,2],[1,2,3,1],[1,1,2,0]],[[1,0,2,0],[1,4,3,2],[1,2,3,1],[1,1,2,0]],[[1,0,2,0],[1,3,4,2],[1,2,3,1],[1,1,2,0]],[[1,0,2,0],[1,3,3,3],[1,2,3,1],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[1,2,4,1],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[1,2,3,1],[1,1,3,0]],[[1,0,3,0],[1,3,3,2],[1,2,3,1],[1,2,0,1]],[[1,0,2,0],[1,4,3,2],[1,2,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,4,2],[1,2,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,3],[1,2,3,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[1,2,4,1],[1,2,0,1]],[[1,0,3,0],[1,3,3,2],[1,2,3,1],[1,2,1,0]],[[1,0,2,0],[1,4,3,2],[1,2,3,1],[1,2,1,0]],[[1,0,2,0],[1,3,4,2],[1,2,3,1],[1,2,1,0]],[[1,0,2,0],[1,3,3,3],[1,2,3,1],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,1,1],[2,2,3,3],[2,0,3,1],[1,1,1,0]],[[1,2,1,1],[2,2,4,2],[2,0,3,1],[1,1,1,0]],[[1,2,1,2],[2,2,3,2],[2,0,3,1],[1,1,1,0]],[[1,0,2,0],[1,3,4,2],[1,2,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,3],[1,2,3,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,1,1],[2,2,3,3],[2,0,3,1],[1,1,0,1]],[[1,2,1,1],[2,2,4,2],[2,0,3,1],[1,1,0,1]],[[1,2,1,2],[2,2,3,2],[2,0,3,1],[1,1,0,1]],[[1,2,1,1],[2,2,3,3],[2,0,3,1],[1,0,2,0]],[[1,2,1,1],[2,2,4,2],[2,0,3,1],[1,0,2,0]],[[1,2,1,2],[2,2,3,2],[2,0,3,1],[1,0,2,0]],[[1,2,1,1],[2,2,3,3],[2,0,3,1],[1,0,1,1]],[[1,2,1,1],[2,2,4,2],[2,0,3,1],[1,0,1,1]],[[1,2,1,2],[2,2,3,2],[2,0,3,1],[1,0,1,1]],[[1,2,1,1],[2,2,3,3],[2,0,3,1],[0,2,1,0]],[[1,2,1,1],[2,2,4,2],[2,0,3,1],[0,2,1,0]],[[1,2,1,2],[2,2,3,2],[2,0,3,1],[0,2,1,0]],[[1,2,1,1],[2,2,3,3],[2,0,3,1],[0,2,0,1]],[[1,0,3,0],[1,3,3,2],[1,3,0,1],[1,2,2,1]],[[1,0,2,0],[1,4,3,2],[1,3,0,1],[1,2,2,1]],[[1,0,2,0],[1,3,4,2],[1,3,0,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,3],[1,3,0,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,4,0,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,3,0,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,3,0,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,2],[1,3,0,1],[1,2,3,1]],[[1,0,2,0],[1,3,3,2],[1,3,0,1],[1,2,2,2]],[[1,0,3,0],[1,3,3,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,0],[1,4,3,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,0],[1,3,4,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,0],[1,3,3,3],[1,3,0,2],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[1,4,0,2],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[1,3,0,3],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[1,3,0,2],[1,1,3,1]],[[1,0,2,0],[1,3,3,2],[1,3,0,2],[1,1,2,2]],[[1,0,3,0],[1,3,3,2],[1,3,0,2],[1,2,1,1]],[[1,0,2,0],[1,4,3,2],[1,3,0,2],[1,2,1,1]],[[1,0,2,0],[1,3,4,2],[1,3,0,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,3],[1,3,0,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,4,0,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,3,0,3],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,3,0,2],[2,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,3,0,2],[1,3,1,1]],[[1,0,2,0],[1,3,3,2],[1,3,0,2],[1,2,1,2]],[[1,0,3,0],[1,3,3,2],[1,3,0,2],[1,2,2,0]],[[1,0,2,0],[1,4,3,2],[1,3,0,2],[1,2,2,0]],[[1,0,2,0],[1,3,4,2],[1,3,0,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,3],[1,3,0,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,4,0,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,3,0,3],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,3,0,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,3,0,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,2],[1,3,0,2],[1,2,3,0]],[[1,0,3,0],[1,3,3,2],[1,3,1,0],[1,2,2,1]],[[1,0,2,0],[1,4,3,2],[1,3,1,0],[1,2,2,1]],[[1,0,2,0],[1,3,4,2],[1,3,1,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,3],[1,3,1,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,4,1,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,3,1,0],[2,2,2,1]],[[1,0,2,0],[1,3,3,2],[1,3,1,0],[1,3,2,1]],[[1,0,2,0],[1,3,3,2],[1,3,1,0],[1,2,3,1]],[[1,0,2,0],[1,3,3,2],[1,3,1,0],[1,2,2,2]],[[1,0,3,0],[1,3,3,2],[1,3,1,1],[1,2,2,0]],[[1,0,2,0],[1,4,3,2],[1,3,1,1],[1,2,2,0]],[[1,0,2,0],[1,3,4,2],[1,3,1,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,3],[1,3,1,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,4,1,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,3,1,1],[2,2,2,0]],[[1,0,2,0],[1,3,3,2],[1,3,1,1],[1,3,2,0]],[[1,0,2,0],[1,3,3,2],[1,3,1,1],[1,2,3,0]],[[1,0,3,0],[1,3,3,2],[1,3,1,2],[1,1,1,1]],[[1,0,2,0],[1,4,3,2],[1,3,1,2],[1,1,1,1]],[[1,0,2,0],[1,3,4,2],[1,3,1,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,3],[1,3,1,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[1,4,1,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[1,3,1,3],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[1,3,1,2],[1,1,1,2]],[[1,0,3,0],[1,3,3,2],[1,3,1,2],[1,1,2,0]],[[1,0,2,0],[1,4,3,2],[1,3,1,2],[1,1,2,0]],[[1,0,2,0],[1,3,4,2],[1,3,1,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,3],[1,3,1,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[1,4,1,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[1,3,1,3],[1,1,2,0]],[[1,0,3,0],[1,3,3,2],[1,3,1,2],[1,2,0,1]],[[1,0,2,0],[1,4,3,2],[1,3,1,2],[1,2,0,1]],[[1,0,2,0],[1,3,4,2],[1,3,1,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,3],[1,3,1,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[1,4,1,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[1,3,1,3],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[1,3,1,2],[2,2,0,1]],[[1,0,2,0],[1,3,3,2],[1,3,1,2],[1,3,0,1]],[[1,0,2,0],[1,3,3,2],[1,3,1,2],[1,2,0,2]],[[1,0,3,0],[1,3,3,2],[1,3,1,2],[1,2,1,0]],[[1,0,2,0],[1,4,3,2],[1,3,1,2],[1,2,1,0]],[[1,0,2,0],[1,3,4,2],[1,3,1,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,3],[1,3,1,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,4,1,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,3,1,3],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,3,1,2],[2,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,1,1],[2,2,4,2],[2,0,3,1],[0,2,0,1]],[[1,2,1,2],[2,2,3,2],[2,0,3,1],[0,2,0,1]],[[1,2,1,1],[2,2,3,3],[2,0,3,1],[0,1,2,0]],[[1,2,1,1],[2,2,4,2],[2,0,3,1],[0,1,2,0]],[[1,2,1,2],[2,2,3,2],[2,0,3,1],[0,1,2,0]],[[1,2,1,1],[2,2,3,3],[2,0,3,1],[0,1,1,1]],[[1,2,1,1],[2,2,4,2],[2,0,3,1],[0,1,1,1]],[[1,0,3,0],[1,3,3,2],[1,3,2,0],[1,1,2,1]],[[1,0,2,0],[1,4,3,2],[1,3,2,0],[1,1,2,1]],[[1,0,2,0],[1,3,4,2],[1,3,2,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,3],[1,3,2,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[1,4,2,0],[1,1,2,1]],[[1,0,3,0],[1,3,3,2],[1,3,2,0],[1,2,1,1]],[[1,0,2,0],[1,4,3,2],[1,3,2,0],[1,2,1,1]],[[1,0,2,0],[1,3,4,2],[1,3,2,0],[1,2,1,1]],[[1,0,2,0],[1,3,3,3],[1,3,2,0],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,4,2,0],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,3,2,0],[2,2,1,1]],[[1,0,2,0],[1,3,3,2],[1,3,2,0],[1,3,1,1]],[[1,0,3,0],[1,3,3,2],[1,3,2,1],[1,1,1,1]],[[1,0,2,0],[1,4,3,2],[1,3,2,1],[1,1,1,1]],[[1,0,2,0],[1,3,4,2],[1,3,2,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,3],[1,3,2,1],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[1,4,2,1],[1,1,1,1]],[[1,0,3,0],[1,3,3,2],[1,3,2,1],[1,1,2,0]],[[1,0,2,0],[1,4,3,2],[1,3,2,1],[1,1,2,0]],[[1,0,2,0],[1,3,4,2],[1,3,2,1],[1,1,2,0]],[[1,0,2,0],[1,3,3,3],[1,3,2,1],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[1,4,2,1],[1,1,2,0]],[[1,0,3,0],[1,3,3,2],[1,3,2,1],[1,2,0,1]],[[1,0,2,0],[1,4,3,2],[1,3,2,1],[1,2,0,1]],[[1,0,2,0],[1,3,4,2],[1,3,2,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,3],[1,3,2,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[1,4,2,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[1,3,2,1],[2,2,0,1]],[[1,0,2,0],[1,3,3,2],[1,3,2,1],[1,3,0,1]],[[1,0,3,0],[1,3,3,2],[1,3,2,1],[1,2,1,0]],[[1,0,2,0],[1,4,3,2],[1,3,2,1],[1,2,1,0]],[[1,0,2,0],[1,3,4,2],[1,3,2,1],[1,2,1,0]],[[1,0,2,0],[1,3,3,3],[1,3,2,1],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,4,2,1],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,3,2,1],[2,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,1,2],[2,2,3,2],[2,0,3,1],[0,1,1,1]],[[1,2,1,1],[2,2,3,3],[2,0,3,1],[0,0,2,1]],[[1,2,1,1],[2,2,4,2],[2,0,3,1],[0,0,2,1]],[[1,2,1,2],[2,2,3,2],[2,0,3,1],[0,0,2,1]],[[1,2,1,1],[2,2,3,2],[2,0,3,0],[1,3,1,0]],[[1,2,1,1],[2,2,3,2],[2,0,3,0],[2,2,1,0]],[[1,2,1,1],[2,2,3,2],[3,0,3,0],[1,2,1,0]],[[1,2,1,1],[3,2,3,2],[2,0,3,0],[1,2,1,0]],[[1,3,1,1],[2,2,3,2],[2,0,3,0],[1,2,1,0]],[[2,2,1,1],[2,2,3,2],[2,0,3,0],[1,2,1,0]],[[1,2,1,1],[2,2,3,2],[2,0,3,0],[2,2,0,1]],[[1,2,1,1],[2,2,3,2],[3,0,3,0],[1,2,0,1]],[[1,2,1,1],[3,2,3,2],[2,0,3,0],[1,2,0,1]],[[1,3,1,1],[2,2,3,2],[2,0,3,0],[1,2,0,1]],[[2,2,1,1],[2,2,3,2],[2,0,3,0],[1,2,0,1]],[[1,2,1,1],[2,2,3,2],[2,0,3,0],[2,1,2,0]],[[1,2,1,1],[2,2,3,2],[3,0,3,0],[1,1,2,0]],[[1,2,1,1],[3,2,3,2],[2,0,3,0],[1,1,2,0]],[[1,0,3,0],[1,3,3,2],[1,3,3,0],[1,1,2,0]],[[1,0,2,0],[1,4,3,2],[1,3,3,0],[1,1,2,0]],[[1,0,2,0],[1,3,4,2],[1,3,3,0],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[1,4,3,0],[1,1,2,0]],[[1,0,3,0],[1,3,3,2],[1,3,3,0],[1,2,1,0]],[[1,0,2,0],[1,4,3,2],[1,3,3,0],[1,2,1,0]],[[1,0,2,0],[1,3,4,2],[1,3,3,0],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,4,3,0],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,3,3,0],[2,2,1,0]],[[1,0,2,0],[1,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,3,1,1],[2,2,3,2],[2,0,3,0],[1,1,2,0]],[[2,2,1,1],[2,2,3,2],[2,0,3,0],[1,1,2,0]],[[1,2,1,1],[2,2,3,3],[2,0,3,0],[1,0,2,1]],[[1,2,1,1],[2,2,4,2],[2,0,3,0],[1,0,2,1]],[[1,2,1,2],[2,2,3,2],[2,0,3,0],[1,0,2,1]],[[1,2,1,1],[2,2,3,2],[3,0,3,0],[0,2,2,0]],[[1,2,1,1],[3,2,3,2],[2,0,3,0],[0,2,2,0]],[[1,0,3,0],[1,3,3,2],[1,3,3,1],[1,2,0,0]],[[1,0,2,0],[1,4,3,2],[1,3,3,1],[1,2,0,0]],[[1,0,2,0],[1,3,4,2],[1,3,3,1],[1,2,0,0]],[[1,0,2,0],[1,3,3,3],[1,3,3,1],[1,2,0,0]],[[1,0,2,0],[1,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,3,1,1],[2,2,3,2],[2,0,3,0],[0,2,2,0]],[[2,2,1,1],[2,2,3,2],[2,0,3,0],[0,2,2,0]],[[1,2,1,1],[2,2,3,3],[2,0,3,0],[0,1,2,1]],[[1,2,1,1],[2,2,4,2],[2,0,3,0],[0,1,2,1]],[[1,2,1,2],[2,2,3,2],[2,0,3,0],[0,1,2,1]],[[1,2,1,1],[2,2,3,3],[2,0,2,2],[1,1,1,0]],[[1,2,1,1],[2,2,4,2],[2,0,2,2],[1,1,1,0]],[[1,2,1,2],[2,2,3,2],[2,0,2,2],[1,1,1,0]],[[1,2,1,1],[2,2,3,2],[2,0,2,3],[1,1,0,1]],[[1,2,1,1],[2,2,3,3],[2,0,2,2],[1,1,0,1]],[[1,2,1,1],[2,2,4,2],[2,0,2,2],[1,1,0,1]],[[1,2,1,2],[2,2,3,2],[2,0,2,2],[1,1,0,1]],[[1,2,1,1],[2,2,3,2],[2,0,2,3],[1,0,2,0]],[[1,2,1,1],[2,2,3,3],[2,0,2,2],[1,0,2,0]],[[1,2,1,1],[2,2,4,2],[2,0,2,2],[1,0,2,0]],[[1,2,1,2],[2,2,3,2],[2,0,2,2],[1,0,2,0]],[[1,2,1,1],[2,2,3,2],[2,0,2,2],[1,0,1,2]],[[1,2,1,1],[2,2,3,2],[2,0,2,3],[1,0,1,1]],[[1,2,1,1],[2,2,3,3],[2,0,2,2],[1,0,1,1]],[[1,2,1,1],[2,2,4,2],[2,0,2,2],[1,0,1,1]],[[1,2,1,2],[2,2,3,2],[2,0,2,2],[1,0,1,1]],[[1,2,1,1],[2,2,3,3],[2,0,2,2],[0,2,1,0]],[[1,2,1,1],[2,2,4,2],[2,0,2,2],[0,2,1,0]],[[1,2,1,2],[2,2,3,2],[2,0,2,2],[0,2,1,0]],[[1,2,1,1],[2,2,3,2],[2,0,2,3],[0,2,0,1]],[[1,2,1,1],[2,2,3,3],[2,0,2,2],[0,2,0,1]],[[1,2,1,1],[2,2,4,2],[2,0,2,2],[0,2,0,1]],[[1,2,1,2],[2,2,3,2],[2,0,2,2],[0,2,0,1]],[[1,2,1,1],[2,2,3,2],[2,0,2,3],[0,1,2,0]],[[1,2,1,1],[2,2,3,3],[2,0,2,2],[0,1,2,0]],[[1,2,1,1],[2,2,4,2],[2,0,2,2],[0,1,2,0]],[[1,2,1,2],[2,2,3,2],[2,0,2,2],[0,1,2,0]],[[1,2,1,1],[2,2,3,2],[2,0,2,2],[0,1,1,2]],[[1,2,1,1],[2,2,3,2],[2,0,2,3],[0,1,1,1]],[[1,2,1,1],[2,2,3,3],[2,0,2,2],[0,1,1,1]],[[1,2,1,1],[2,2,4,2],[2,0,2,2],[0,1,1,1]],[[1,2,1,2],[2,2,3,2],[2,0,2,2],[0,1,1,1]],[[1,2,1,1],[2,2,3,2],[2,0,2,2],[0,0,2,2]],[[1,2,1,1],[2,2,3,2],[2,0,2,3],[0,0,2,1]],[[1,2,1,1],[2,2,3,3],[2,0,2,2],[0,0,2,1]],[[1,0,3,0],[1,3,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[1,4,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,4,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,3],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[3,0,1,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,1,3],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,1,2],[2,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,1,2],[1,3,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,1,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,2],[2,0,1,2],[1,2,2,2]],[[1,0,2,0],[1,3,4,2],[2,0,2,2],[0,2,2,1]],[[1,0,2,0],[1,3,3,3],[2,0,2,2],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,2,3],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,2,2],[0,2,3,1]],[[1,0,2,0],[1,3,3,2],[2,0,2,2],[0,2,2,2]],[[1,0,3,0],[1,3,3,2],[2,0,2,2],[1,2,1,1]],[[1,0,2,0],[1,4,3,2],[2,0,2,2],[1,2,1,1]],[[1,0,2,0],[1,3,4,2],[2,0,2,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,3],[2,0,2,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,0,2,3],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,0,2,2],[1,2,1,2]],[[1,0,3,0],[1,3,3,2],[2,0,2,2],[1,2,2,0]],[[1,0,2,0],[1,4,3,2],[2,0,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,4,2],[2,0,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,3],[2,0,2,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,0,2,3],[1,2,2,0]],[[1,0,3,0],[1,3,3,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,0],[1,4,3,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,4,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,3],[2,0,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[3,0,3,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,4,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,3,0],[2,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,3,0],[1,3,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,3,0],[1,2,3,1]],[[1,0,2,0],[1,3,3,2],[2,0,3,0],[1,2,2,2]],[[1,0,3,0],[1,3,3,2],[2,0,3,1],[1,2,1,1]],[[1,0,2,0],[1,4,3,2],[2,0,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,4,2],[2,0,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,3],[2,0,3,1],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,0,4,1],[1,2,1,1]],[[1,0,3,0],[1,3,3,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,0],[1,4,3,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,0],[1,3,4,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,3],[2,0,3,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[3,0,3,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,0,4,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,0,3,1],[2,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,0,3,1],[1,3,2,0]],[[1,0,2,0],[1,3,3,2],[2,0,3,1],[1,2,3,0]],[[1,0,2,0],[1,3,4,2],[2,0,3,2],[0,1,2,1]],[[1,0,2,0],[1,3,3,3],[2,0,3,2],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,3,3],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,0,3,2],[0,1,2,2]],[[1,0,2,0],[1,3,4,2],[2,0,3,2],[0,2,1,1]],[[1,0,2,0],[1,3,3,3],[2,0,3,2],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,0,3,3],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,0,3,2],[0,2,1,2]],[[1,0,2,0],[1,3,4,2],[2,0,3,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,3],[2,0,3,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,0,3,3],[0,2,2,0]],[[1,2,1,1],[2,2,4,2],[2,0,2,2],[0,0,2,1]],[[1,2,1,2],[2,2,3,2],[2,0,2,2],[0,0,2,1]],[[1,0,3,0],[1,3,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[1,4,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,4,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,3],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[3,1,0,2],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,0,3],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,0,2],[2,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,0,2],[1,3,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,0,2],[1,2,3,1]],[[1,0,2,0],[1,3,3,2],[2,1,0,2],[1,2,2,2]],[[1,0,3,0],[1,3,3,2],[2,1,1,2],[0,2,2,1]],[[1,0,2,0],[1,4,3,2],[2,1,1,2],[0,2,2,1]],[[1,0,2,0],[1,3,4,2],[2,1,1,2],[0,2,2,1]],[[1,0,2,0],[1,3,3,3],[2,1,1,2],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,1,3],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,1,2],[0,3,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,1,2],[0,2,3,1]],[[1,0,2,0],[1,3,3,2],[2,1,1,2],[0,2,2,2]],[[1,0,3,0],[1,3,3,2],[2,1,2,2],[0,2,1,1]],[[1,0,2,0],[1,4,3,2],[2,1,2,2],[0,2,1,1]],[[1,0,2,0],[1,3,4,2],[2,1,2,2],[0,2,1,1]],[[1,0,2,0],[1,3,3,3],[2,1,2,2],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,1,2,3],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,1,2,2],[0,2,1,2]],[[1,0,3,0],[1,3,3,2],[2,1,2,2],[0,2,2,0]],[[1,0,2,0],[1,4,3,2],[2,1,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,4,2],[2,1,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,3],[2,1,2,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,0,3,0],[1,3,3,2],[2,1,3,0],[0,2,2,1]],[[1,0,2,0],[1,4,3,2],[2,1,3,0],[0,2,2,1]],[[1,0,2,0],[1,3,4,2],[2,1,3,0],[0,2,2,1]],[[1,0,2,0],[1,3,3,3],[2,1,3,0],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,4,0],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,3,0],[0,3,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,3,0],[0,2,3,1]],[[1,0,2,0],[1,3,3,2],[2,1,3,0],[0,2,2,2]],[[1,0,3,0],[1,3,3,2],[2,1,3,1],[0,2,1,1]],[[1,0,2,0],[1,4,3,2],[2,1,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,4,2],[2,1,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,3,3],[2,1,3,1],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,1,4,1],[0,2,1,1]],[[1,0,3,0],[1,3,3,2],[2,1,3,1],[0,2,2,0]],[[1,0,2,0],[1,4,3,2],[2,1,3,1],[0,2,2,0]],[[1,0,2,0],[1,3,4,2],[2,1,3,1],[0,2,2,0]],[[1,0,2,0],[1,3,3,3],[2,1,3,1],[0,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,1,4,1],[0,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,1,3,1],[0,3,2,0]],[[1,0,2,0],[1,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,1,1],[2,2,3,2],[2,0,2,0],[1,3,2,0]],[[1,2,1,1],[2,2,3,2],[2,0,2,0],[2,2,2,0]],[[1,2,1,1],[2,2,3,2],[3,0,2,0],[1,2,2,0]],[[1,2,1,1],[3,2,3,2],[2,0,2,0],[1,2,2,0]],[[1,3,1,1],[2,2,3,2],[2,0,2,0],[1,2,2,0]],[[2,2,1,1],[2,2,3,2],[2,0,2,0],[1,2,2,0]],[[1,0,2,0],[1,3,4,2],[2,1,3,2],[0,0,2,1]],[[1,0,2,0],[1,3,3,3],[2,1,3,2],[0,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,3,3],[0,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,1,3,2],[0,0,2,2]],[[1,0,2,0],[1,3,4,2],[2,1,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,3],[2,1,3,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,1,3,3],[0,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,1,3,2],[0,1,1,2]],[[1,0,2,0],[1,3,4,2],[2,1,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,3],[2,1,3,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,1,3,3],[0,1,2,0]],[[1,0,2,0],[1,3,4,2],[2,1,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,3],[2,1,3,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,1,3,3],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,1,3,2],[1,0,1,2]],[[1,0,2,0],[1,3,4,2],[2,1,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,3],[2,1,3,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,1,1],[2,2,3,2],[2,0,1,2],[1,0,2,2]],[[1,2,1,1],[2,2,3,2],[2,0,1,3],[1,0,2,1]],[[1,2,1,1],[2,2,3,3],[2,0,1,2],[1,0,2,1]],[[1,2,1,1],[2,2,4,2],[2,0,1,2],[1,0,2,1]],[[1,2,1,2],[2,2,3,2],[2,0,1,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[3,2,0,1],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,0,1],[2,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,0,1],[1,3,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,0,1],[1,2,3,1]],[[1,0,2,0],[1,3,3,2],[2,2,0,1],[1,2,2,2]],[[1,0,3,0],[1,3,3,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,0],[1,4,3,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,0],[1,3,4,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,0],[1,3,3,3],[2,2,0,2],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,0,3],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,0,2],[0,3,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,0,2],[0,2,3,1]],[[1,0,2,0],[1,3,3,2],[2,2,0,2],[0,2,2,2]],[[1,0,2,0],[1,3,3,2],[3,2,0,2],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,0,2],[2,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,0,2],[1,3,1,1]],[[1,0,2,0],[1,3,3,2],[3,2,0,2],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,0,2],[2,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,0,2],[1,3,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,0,2],[1,2,3,0]],[[1,0,2,0],[1,3,3,2],[3,2,1,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,0],[2,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,0],[1,3,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,0],[1,2,3,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,0],[1,2,2,2]],[[1,0,2,0],[1,3,3,2],[3,2,1,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,1,1],[2,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,1,1],[1,3,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,1,1],[1,2,3,0]],[[1,0,3,0],[1,3,3,2],[2,2,1,2],[0,1,2,1]],[[1,0,2,0],[1,4,3,2],[2,2,1,2],[0,1,2,1]],[[1,0,2,0],[1,3,4,2],[2,2,1,2],[0,1,2,1]],[[1,0,2,0],[1,3,3,3],[2,2,1,2],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,3],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,2],[0,1,3,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,2],[0,1,2,2]],[[1,0,3,0],[1,3,3,2],[2,2,1,2],[1,0,2,1]],[[1,0,2,0],[1,4,3,2],[2,2,1,2],[1,0,2,1]],[[1,0,2,0],[1,3,4,2],[2,2,1,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,3],[2,2,1,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,3],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,2],[1,0,3,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,2],[1,0,2,2]],[[1,0,2,0],[1,3,3,2],[3,2,1,2],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,2],[2,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,1,2],[1,3,0,1]],[[1,0,2,0],[1,3,3,2],[3,2,1,2],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,2,1,2],[2,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,2],[2,0,1,2],[0,1,2,2]],[[1,2,1,1],[2,2,3,2],[2,0,1,3],[0,1,2,1]],[[1,2,1,1],[2,2,3,3],[2,0,1,2],[0,1,2,1]],[[1,2,1,1],[2,2,4,2],[2,0,1,2],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[3,2,2,0],[1,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,0],[2,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,0],[1,3,1,1]],[[1,0,2,0],[1,3,3,2],[3,2,2,1],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,1],[2,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,1],[1,3,0,1]],[[1,0,2,0],[1,3,3,2],[3,2,2,1],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,2,2,1],[2,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,1,2],[2,2,3,2],[2,0,1,2],[0,1,2,1]],[[1,0,3,0],[1,3,3,2],[2,2,2,2],[0,0,2,1]],[[1,0,2,0],[1,4,3,2],[2,2,2,2],[0,0,2,1]],[[1,0,2,0],[1,3,4,2],[2,2,2,2],[0,0,2,1]],[[1,0,2,0],[1,3,3,3],[2,2,2,2],[0,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,3],[0,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,2],[0,0,2,2]],[[1,0,3,0],[1,3,3,2],[2,2,2,2],[0,1,1,1]],[[1,0,2,0],[1,4,3,2],[2,2,2,2],[0,1,1,1]],[[1,0,2,0],[1,3,4,2],[2,2,2,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,3],[2,2,2,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,3],[0,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,2],[0,1,1,2]],[[1,0,3,0],[1,3,3,2],[2,2,2,2],[0,1,2,0]],[[1,0,2,0],[1,4,3,2],[2,2,2,2],[0,1,2,0]],[[1,0,2,0],[1,3,4,2],[2,2,2,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,3],[2,2,2,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,2,3],[0,1,2,0]],[[1,0,3,0],[1,3,3,2],[2,2,2,2],[0,2,0,1]],[[1,0,2,0],[1,4,3,2],[2,2,2,2],[0,2,0,1]],[[1,0,2,0],[1,3,4,2],[2,2,2,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,3],[2,2,2,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,3],[0,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,2],[0,2,0,2]],[[1,0,3,0],[1,3,3,2],[2,2,2,2],[0,2,1,0]],[[1,0,2,0],[1,4,3,2],[2,2,2,2],[0,2,1,0]],[[1,0,2,0],[1,3,4,2],[2,2,2,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,3],[2,2,2,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,0,3,0],[1,3,3,2],[2,2,2,2],[1,0,1,1]],[[1,0,2,0],[1,4,3,2],[2,2,2,2],[1,0,1,1]],[[1,0,2,0],[1,3,4,2],[2,2,2,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,3],[2,2,2,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,3],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,2],[1,0,1,2]],[[1,0,3,0],[1,3,3,2],[2,2,2,2],[1,0,2,0]],[[1,0,2,0],[1,4,3,2],[2,2,2,2],[1,0,2,0]],[[1,0,2,0],[1,3,4,2],[2,2,2,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,3],[2,2,2,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,2,3],[1,0,2,0]],[[1,0,3,0],[1,3,3,2],[2,2,2,2],[1,1,0,1]],[[1,0,2,0],[1,4,3,2],[2,2,2,2],[1,1,0,1]],[[1,0,2,0],[1,3,4,2],[2,2,2,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,3],[2,2,2,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,3],[1,1,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,2,2],[1,1,0,2]],[[1,0,3,0],[1,3,3,2],[2,2,2,2],[1,1,1,0]],[[1,0,2,0],[1,4,3,2],[2,2,2,2],[1,1,1,0]],[[1,0,2,0],[1,3,4,2],[2,2,2,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,3],[2,2,2,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[2,2,2,3],[1,1,1,0]],[[1,0,3,0],[1,3,3,2],[2,2,3,0],[0,1,2,1]],[[1,0,2,0],[1,4,3,2],[2,2,3,0],[0,1,2,1]],[[1,0,2,0],[1,3,4,2],[2,2,3,0],[0,1,2,1]],[[1,0,2,0],[1,3,3,3],[2,2,3,0],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,4,0],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,3,0],[0,1,3,1]],[[1,0,2,0],[1,3,3,2],[2,2,3,0],[0,1,2,2]],[[1,0,3,0],[1,3,3,2],[2,2,3,0],[0,2,1,1]],[[1,0,2,0],[1,4,3,2],[2,2,3,0],[0,2,1,1]],[[1,0,2,0],[1,3,4,2],[2,2,3,0],[0,2,1,1]],[[1,0,2,0],[1,3,3,3],[2,2,3,0],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,4,0],[0,2,1,1]],[[1,0,3,0],[1,3,3,2],[2,2,3,0],[1,0,2,1]],[[1,0,2,0],[1,4,3,2],[2,2,3,0],[1,0,2,1]],[[1,0,2,0],[1,3,4,2],[2,2,3,0],[1,0,2,1]],[[1,0,2,0],[1,3,3,3],[2,2,3,0],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,4,0],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,3,0],[1,0,3,1]],[[1,0,2,0],[1,3,3,2],[2,2,3,0],[1,0,2,2]],[[1,0,3,0],[1,3,3,2],[2,2,3,0],[1,1,1,1]],[[1,0,2,0],[1,4,3,2],[2,2,3,0],[1,1,1,1]],[[1,0,2,0],[1,3,4,2],[2,2,3,0],[1,1,1,1]],[[1,0,2,0],[1,3,3,3],[2,2,3,0],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,4,0],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[3,2,3,0],[1,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,2,3,0],[2,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,1,1],[3,2,3,2],[1,3,3,0],[1,1,0,0]],[[1,3,1,1],[2,2,3,2],[1,3,3,0],[1,1,0,0]],[[2,2,1,1],[2,2,3,2],[1,3,3,0],[1,1,0,0]],[[1,0,3,0],[1,3,3,2],[2,2,3,1],[0,0,2,1]],[[1,0,2,0],[1,4,3,2],[2,2,3,1],[0,0,2,1]],[[1,0,2,0],[1,3,4,2],[2,2,3,1],[0,0,2,1]],[[1,0,2,0],[1,3,3,3],[2,2,3,1],[0,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,2,4,1],[0,0,2,1]],[[1,0,3,0],[1,3,3,2],[2,2,3,1],[0,1,1,1]],[[1,0,2,0],[1,4,3,2],[2,2,3,1],[0,1,1,1]],[[1,0,2,0],[1,3,4,2],[2,2,3,1],[0,1,1,1]],[[1,0,2,0],[1,3,3,3],[2,2,3,1],[0,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,4,1],[0,1,1,1]],[[1,0,3,0],[1,3,3,2],[2,2,3,1],[0,1,2,0]],[[1,0,2,0],[1,4,3,2],[2,2,3,1],[0,1,2,0]],[[1,0,2,0],[1,3,4,2],[2,2,3,1],[0,1,2,0]],[[1,0,2,0],[1,3,3,3],[2,2,3,1],[0,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,4,1],[0,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,3,1],[0,1,3,0]],[[1,0,3,0],[1,3,3,2],[2,2,3,1],[0,2,0,1]],[[1,0,2,0],[1,4,3,2],[2,2,3,1],[0,2,0,1]],[[1,0,2,0],[1,3,4,2],[2,2,3,1],[0,2,0,1]],[[1,0,2,0],[1,3,3,3],[2,2,3,1],[0,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,4,1],[0,2,0,1]],[[1,0,3,0],[1,3,3,2],[2,2,3,1],[0,2,1,0]],[[1,0,2,0],[1,4,3,2],[2,2,3,1],[0,2,1,0]],[[1,0,2,0],[1,3,4,2],[2,2,3,1],[0,2,1,0]],[[1,0,2,0],[1,3,3,3],[2,2,3,1],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,2,4,1],[0,2,1,0]],[[1,0,3,0],[1,3,3,2],[2,2,3,1],[1,0,1,1]],[[1,0,2,0],[1,4,3,2],[2,2,3,1],[1,0,1,1]],[[1,0,2,0],[1,3,4,2],[2,2,3,1],[1,0,1,1]],[[1,0,2,0],[1,3,3,3],[2,2,3,1],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,2,4,1],[1,0,1,1]],[[1,0,3,0],[1,3,3,2],[2,2,3,1],[1,0,2,0]],[[1,0,2,0],[1,4,3,2],[2,2,3,1],[1,0,2,0]],[[1,0,2,0],[1,3,4,2],[2,2,3,1],[1,0,2,0]],[[1,0,2,0],[1,3,3,3],[2,2,3,1],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,4,1],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,2,3,1],[1,0,3,0]],[[1,0,3,0],[1,3,3,2],[2,2,3,1],[1,1,0,1]],[[1,0,2,0],[1,4,3,2],[2,2,3,1],[1,1,0,1]],[[1,0,2,0],[1,3,4,2],[2,2,3,1],[1,1,0,1]],[[1,0,2,0],[1,3,3,3],[2,2,3,1],[1,1,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,4,1],[1,1,0,1]],[[1,0,3,0],[1,3,3,2],[2,2,3,1],[1,1,1,0]],[[1,0,2,0],[1,4,3,2],[2,2,3,1],[1,1,1,0]],[[1,0,2,0],[1,3,4,2],[2,2,3,1],[1,1,1,0]],[[1,0,2,0],[1,3,3,3],[2,2,3,1],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,1,1],[3,2,3,2],[1,3,3,0],[0,2,0,0]],[[1,3,1,1],[2,2,3,2],[1,3,3,0],[0,2,0,0]],[[2,2,1,1],[2,2,3,2],[1,3,3,0],[0,2,0,0]],[[1,2,1,1],[3,2,3,2],[1,3,3,0],[0,0,2,0]],[[1,3,1,1],[2,2,3,2],[1,3,3,0],[0,0,2,0]],[[2,2,1,1],[2,2,3,2],[1,3,3,0],[0,0,2,0]],[[1,2,1,1],[3,2,3,2],[1,3,3,0],[0,0,1,1]],[[1,3,1,1],[2,2,3,2],[1,3,3,0],[0,0,1,1]],[[2,2,1,1],[2,2,3,2],[1,3,3,0],[0,0,1,1]],[[1,0,3,0],[1,3,3,2],[2,2,3,2],[0,1,0,1]],[[1,0,2,0],[1,4,3,2],[2,2,3,2],[0,1,0,1]],[[1,0,2,0],[1,3,4,2],[2,2,3,2],[0,1,0,1]],[[1,0,2,0],[1,3,3,3],[2,2,3,2],[0,1,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,0,3,0],[1,3,3,2],[2,2,3,2],[1,0,0,1]],[[1,0,2,0],[1,4,3,2],[2,2,3,2],[1,0,0,1]],[[1,0,2,0],[1,3,4,2],[2,2,3,2],[1,0,0,1]],[[1,0,2,0],[1,3,3,3],[2,2,3,2],[1,0,0,1]],[[1,0,2,0],[1,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,1,1],[3,2,3,2],[1,3,2,0],[1,2,0,0]],[[1,3,1,1],[2,2,3,2],[1,3,2,0],[1,2,0,0]],[[2,2,1,1],[2,2,3,2],[1,3,2,0],[1,2,0,0]],[[1,2,1,1],[3,2,3,2],[1,3,2,0],[1,1,1,0]],[[1,3,1,1],[2,2,3,2],[1,3,2,0],[1,1,1,0]],[[2,2,1,1],[2,2,3,2],[1,3,2,0],[1,1,1,0]],[[1,2,1,1],[3,2,3,2],[1,3,2,0],[1,1,0,1]],[[1,3,1,1],[2,2,3,2],[1,3,2,0],[1,1,0,1]],[[2,2,1,1],[2,2,3,2],[1,3,2,0],[1,1,0,1]],[[1,2,1,1],[3,2,3,2],[1,3,2,0],[1,0,2,0]],[[1,3,1,1],[2,2,3,2],[1,3,2,0],[1,0,2,0]],[[2,2,1,1],[2,2,3,2],[1,3,2,0],[1,0,2,0]],[[1,2,1,1],[3,2,3,2],[1,3,2,0],[1,0,1,1]],[[1,3,1,1],[2,2,3,2],[1,3,2,0],[1,0,1,1]],[[2,2,1,1],[2,2,3,2],[1,3,2,0],[1,0,1,1]],[[1,2,1,1],[3,2,3,2],[1,3,2,0],[0,2,1,0]],[[1,3,1,1],[2,2,3,2],[1,3,2,0],[0,2,1,0]],[[2,2,1,1],[2,2,3,2],[1,3,2,0],[0,2,1,0]],[[1,2,1,1],[3,2,3,2],[1,3,2,0],[0,2,0,1]],[[1,0,2,0],[1,3,3,2],[3,3,0,0],[1,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,0],[2,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,0],[1,3,2,1]],[[1,0,3,0],[1,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,2,0],[1,4,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,2,0],[1,3,4,2],[2,3,0,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,3],[2,3,0,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[3,3,0,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,4,0,1],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,1],[0,3,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,1],[0,2,3,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,1],[0,2,2,2]],[[1,0,3,0],[1,3,3,2],[2,3,0,1],[1,1,2,1]],[[1,0,2,0],[1,4,3,2],[2,3,0,1],[1,1,2,1]],[[1,0,2,0],[1,3,4,2],[2,3,0,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,3],[2,3,0,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[3,3,0,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,4,0,1],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,1],[2,1,2,1]],[[1,0,2,0],[1,3,3,2],[3,3,0,1],[1,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,0,1],[2,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,0,1],[1,3,2,0]],[[1,0,3,0],[1,3,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,2,0],[1,4,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,2,0],[1,3,4,2],[2,3,0,2],[0,1,2,1]],[[1,0,2,0],[1,3,3,3],[2,3,0,2],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[3,3,0,2],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,4,0,2],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,3],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[0,1,3,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[0,1,2,2]],[[1,0,3,0],[1,3,3,2],[2,3,0,2],[0,2,1,1]],[[1,0,2,0],[1,4,3,2],[2,3,0,2],[0,2,1,1]],[[1,0,2,0],[1,3,4,2],[2,3,0,2],[0,2,1,1]],[[1,0,2,0],[1,3,3,3],[2,3,0,2],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[3,3,0,2],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,4,0,2],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,3],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[0,3,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[0,2,1,2]],[[1,0,3,0],[1,3,3,2],[2,3,0,2],[0,2,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,0,2],[0,2,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,0,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,3],[2,3,0,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,2],[3,3,0,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,4,0,2],[0,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,0,3],[0,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[0,3,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[0,2,3,0]],[[1,0,3,0],[1,3,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,2,0],[1,4,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,2,0],[1,3,4,2],[2,3,0,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,3],[2,3,0,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[3,3,0,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,4,0,2],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,3],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[2,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[1,0,3,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[1,0,2,2]],[[1,0,3,0],[1,3,3,2],[2,3,0,2],[1,1,1,1]],[[1,0,2,0],[1,4,3,2],[2,3,0,2],[1,1,1,1]],[[1,0,2,0],[1,3,4,2],[2,3,0,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,3],[2,3,0,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[3,3,0,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,4,0,2],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,3],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[2,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[1,1,1,2]],[[1,0,3,0],[1,3,3,2],[2,3,0,2],[1,1,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,0,2],[1,1,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,0,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,3],[2,3,0,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[3,3,0,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,4,0,2],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,0,3],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,3,1,1],[2,2,3,2],[1,3,2,0],[0,2,0,1]],[[2,2,1,1],[2,2,3,2],[1,3,2,0],[0,2,0,1]],[[1,2,1,1],[3,2,3,2],[1,3,2,0],[0,1,2,0]],[[1,3,1,1],[2,2,3,2],[1,3,2,0],[0,1,2,0]],[[2,2,1,1],[2,2,3,2],[1,3,2,0],[0,1,2,0]],[[1,0,3,0],[1,3,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,2,0],[1,4,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,2,0],[1,3,4,2],[2,3,1,0],[0,2,2,1]],[[1,0,2,0],[1,3,3,3],[2,3,1,0],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[3,3,1,0],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,4,1,0],[0,2,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,0],[0,3,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,0],[0,2,3,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,0],[0,2,2,2]],[[1,0,3,0],[1,3,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,2,0],[1,4,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,2,0],[1,3,4,2],[2,3,1,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,3],[2,3,1,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[3,3,1,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,4,1,0],[1,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,0],[2,1,2,1]],[[1,0,3,0],[1,3,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,1,1],[0,2,2,0]],[[1,0,2,0],[1,3,3,3],[2,3,1,1],[0,2,2,0]],[[1,0,2,0],[1,3,3,2],[3,3,1,1],[0,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,4,1,1],[0,2,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,1,1],[0,3,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,1,1],[0,2,3,0]],[[1,0,3,0],[1,3,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,1,1],[1,1,2,0]],[[1,0,2,0],[1,3,3,3],[2,3,1,1],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[3,3,1,1],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,4,1,1],[1,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,1,1],[3,2,3,2],[1,3,2,0],[0,1,1,1]],[[1,3,1,1],[2,2,3,2],[1,3,2,0],[0,1,1,1]],[[2,2,1,1],[2,2,3,2],[1,3,2,0],[0,1,1,1]],[[1,0,3,0],[1,3,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,2,0],[1,4,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,2,0],[1,3,4,2],[2,3,1,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,3],[2,3,1,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,2],[3,3,1,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,4,1,2],[0,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,3],[0,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,2],[0,1,1,2]],[[1,0,3,0],[1,3,3,2],[2,3,1,2],[0,1,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,1,2],[0,1,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,1,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,3],[2,3,1,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,2],[3,3,1,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,4,1,2],[0,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,1,3],[0,1,2,0]],[[1,0,3,0],[1,3,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,2,0],[1,4,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,2,0],[1,3,4,2],[2,3,1,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,3],[2,3,1,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,2],[3,3,1,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,4,1,2],[0,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,3],[0,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,2],[0,3,0,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,2],[0,2,0,2]],[[1,0,3,0],[1,3,3,2],[2,3,1,2],[0,2,1,0]],[[1,0,2,0],[1,4,3,2],[2,3,1,2],[0,2,1,0]],[[1,0,2,0],[1,3,4,2],[2,3,1,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,3],[2,3,1,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[3,3,1,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,4,1,2],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,3,1,3],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,0,3,0],[1,3,3,2],[2,3,1,2],[1,0,1,1]],[[1,0,2,0],[1,4,3,2],[2,3,1,2],[1,0,1,1]],[[1,0,2,0],[1,3,4,2],[2,3,1,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,3],[2,3,1,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[3,3,1,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,4,1,2],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,3],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,2],[2,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,2],[1,0,1,2]],[[1,0,3,0],[1,3,3,2],[2,3,1,2],[1,0,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,1,2],[1,0,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,1,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,3],[2,3,1,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[3,3,1,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,4,1,2],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,1,3],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,1,2],[2,0,2,0]],[[1,0,3,0],[1,3,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,2,0],[1,4,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,2,0],[1,3,4,2],[2,3,1,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,3],[2,3,1,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,2],[3,3,1,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,2],[2,4,1,2],[1,1,0,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,3],[1,1,0,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,2],[2,1,0,1]],[[1,0,2,0],[1,3,3,2],[2,3,1,2],[1,1,0,2]],[[1,0,3,0],[1,3,3,2],[2,3,1,2],[1,1,1,0]],[[1,0,2,0],[1,4,3,2],[2,3,1,2],[1,1,1,0]],[[1,0,2,0],[1,3,4,2],[2,3,1,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,3],[2,3,1,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[3,3,1,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[2,4,1,2],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[2,3,1,3],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,0,3,0],[1,3,3,2],[2,3,1,2],[1,2,0,0]],[[1,0,2,0],[1,4,3,2],[2,3,1,2],[1,2,0,0]],[[1,0,2,0],[1,3,4,2],[2,3,1,2],[1,2,0,0]],[[1,0,2,0],[1,3,3,3],[2,3,1,2],[1,2,0,0]],[[1,0,2,0],[1,3,3,2],[3,3,1,2],[1,2,0,0]],[[1,0,2,0],[1,3,3,2],[2,4,1,2],[1,2,0,0]],[[1,0,2,0],[1,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,0,3,0],[1,3,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,2,0],[1,4,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,2,0],[1,3,4,2],[2,3,2,0],[0,1,2,1]],[[1,0,2,0],[1,3,3,3],[2,3,2,0],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[3,3,2,0],[0,1,2,1]],[[1,0,2,0],[1,3,3,2],[2,4,2,0],[0,1,2,1]],[[1,0,3,0],[1,3,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,2,0],[1,4,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,2,0],[1,3,4,2],[2,3,2,0],[0,2,1,1]],[[1,0,2,0],[1,3,3,3],[2,3,2,0],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[3,3,2,0],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,4,2,0],[0,2,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,2,0],[0,3,1,1]],[[1,0,3,0],[1,3,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,2,0],[1,4,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,2,0],[1,3,4,2],[2,3,2,0],[1,0,2,1]],[[1,0,2,0],[1,3,3,3],[2,3,2,0],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[3,3,2,0],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,4,2,0],[1,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,2,0],[2,0,2,1]],[[1,0,3,0],[1,3,3,2],[2,3,2,0],[1,1,1,1]],[[1,0,2,0],[1,4,3,2],[2,3,2,0],[1,1,1,1]],[[1,0,2,0],[1,3,4,2],[2,3,2,0],[1,1,1,1]],[[1,0,2,0],[1,3,3,3],[2,3,2,0],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[3,3,2,0],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,4,2,0],[1,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,2,0],[2,1,1,1]],[[1,0,3,0],[1,3,3,2],[2,3,2,0],[1,2,0,1]],[[1,0,2,0],[1,4,3,2],[2,3,2,0],[1,2,0,1]],[[1,0,2,0],[1,3,4,2],[2,3,2,0],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[3,3,2,0],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,4,2,0],[1,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,0,3,0],[1,3,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,2,0],[1,4,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,2,0],[1,3,4,2],[2,3,2,1],[0,1,1,1]],[[1,0,2,0],[1,3,3,3],[2,3,2,1],[0,1,1,1]],[[1,0,2,0],[1,3,3,2],[3,3,2,1],[0,1,1,1]],[[1,0,2,0],[1,3,3,2],[2,4,2,1],[0,1,1,1]],[[1,0,3,0],[1,3,3,2],[2,3,2,1],[0,1,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,2,1],[0,1,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,2,1],[0,1,2,0]],[[1,0,2,0],[1,3,3,3],[2,3,2,1],[0,1,2,0]],[[1,0,2,0],[1,3,3,2],[3,3,2,1],[0,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,4,2,1],[0,1,2,0]],[[1,0,3,0],[1,3,3,2],[2,3,2,1],[0,2,0,1]],[[1,0,2,0],[1,4,3,2],[2,3,2,1],[0,2,0,1]],[[1,0,2,0],[1,3,4,2],[2,3,2,1],[0,2,0,1]],[[1,0,2,0],[1,3,3,3],[2,3,2,1],[0,2,0,1]],[[1,0,2,0],[1,3,3,2],[3,3,2,1],[0,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,4,2,1],[0,2,0,1]],[[1,0,2,0],[1,3,3,2],[2,3,2,1],[0,3,0,1]],[[1,0,3,0],[1,3,3,2],[2,3,2,1],[0,2,1,0]],[[1,0,2,0],[1,4,3,2],[2,3,2,1],[0,2,1,0]],[[1,0,2,0],[1,3,4,2],[2,3,2,1],[0,2,1,0]],[[1,0,2,0],[1,3,3,3],[2,3,2,1],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[3,3,2,1],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,4,2,1],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,0,3,0],[1,3,3,2],[2,3,2,1],[1,0,1,1]],[[1,0,2,0],[1,4,3,2],[2,3,2,1],[1,0,1,1]],[[1,0,2,0],[1,3,4,2],[2,3,2,1],[1,0,1,1]],[[1,0,2,0],[1,3,3,3],[2,3,2,1],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[3,3,2,1],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,4,2,1],[1,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,2,1],[2,0,1,1]],[[1,0,3,0],[1,3,3,2],[2,3,2,1],[1,0,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,2,1],[1,0,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,2,1],[1,0,2,0]],[[1,0,2,0],[1,3,3,3],[2,3,2,1],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[3,3,2,1],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,4,2,1],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,2,1],[2,0,2,0]],[[1,0,3,0],[1,3,3,2],[2,3,2,1],[1,1,0,1]],[[1,0,2,0],[1,4,3,2],[2,3,2,1],[1,1,0,1]],[[1,0,2,0],[1,3,4,2],[2,3,2,1],[1,1,0,1]],[[1,0,2,0],[1,3,3,3],[2,3,2,1],[1,1,0,1]],[[1,0,2,0],[1,3,3,2],[3,3,2,1],[1,1,0,1]],[[1,0,2,0],[1,3,3,2],[2,4,2,1],[1,1,0,1]],[[1,0,2,0],[1,3,3,2],[2,3,2,1],[2,1,0,1]],[[1,0,3,0],[1,3,3,2],[2,3,2,1],[1,1,1,0]],[[1,0,2,0],[1,4,3,2],[2,3,2,1],[1,1,1,0]],[[1,0,2,0],[1,3,4,2],[2,3,2,1],[1,1,1,0]],[[1,0,2,0],[1,3,3,3],[2,3,2,1],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[3,3,2,1],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[2,4,2,1],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,0,3,0],[1,3,3,2],[2,3,2,1],[1,2,0,0]],[[1,0,2,0],[1,4,3,2],[2,3,2,1],[1,2,0,0]],[[1,0,2,0],[1,3,4,2],[2,3,2,1],[1,2,0,0]],[[1,0,2,0],[1,3,3,3],[2,3,2,1],[1,2,0,0]],[[1,0,2,0],[1,3,3,2],[3,3,2,1],[1,2,0,0]],[[1,0,2,0],[1,3,3,2],[2,4,2,1],[1,2,0,0]],[[1,0,2,0],[1,3,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,1,1],[3,2,3,2],[1,3,1,0],[1,1,2,0]],[[1,3,1,1],[2,2,3,2],[1,3,1,0],[1,1,2,0]],[[2,2,1,1],[2,2,3,2],[1,3,1,0],[1,1,2,0]],[[1,2,1,1],[3,2,3,2],[1,3,1,0],[0,2,2,0]],[[1,3,1,1],[2,2,3,2],[1,3,1,0],[0,2,2,0]],[[2,2,1,1],[2,2,3,2],[1,3,1,0],[0,2,2,0]],[[1,0,3,0],[1,3,3,2],[2,3,2,2],[0,0,1,1]],[[1,0,2,0],[1,4,3,2],[2,3,2,2],[0,0,1,1]],[[1,0,2,0],[1,3,4,2],[2,3,2,2],[0,0,1,1]],[[1,0,2,0],[1,3,3,3],[2,3,2,2],[0,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,2,3],[0,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,2,2],[0,0,1,2]],[[1,0,3,0],[1,3,3,2],[2,3,2,2],[0,0,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,2,2],[0,0,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,2,2],[0,0,2,0]],[[1,0,2,0],[1,3,3,3],[2,3,2,2],[0,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,0,3,0],[1,3,3,2],[2,3,3,0],[0,0,2,1]],[[1,0,2,0],[1,4,3,2],[2,3,3,0],[0,0,2,1]],[[1,0,2,0],[1,3,4,2],[2,3,3,0],[0,0,2,1]],[[1,0,2,0],[1,3,3,3],[2,3,3,0],[0,0,2,1]],[[1,0,2,0],[1,3,3,2],[2,3,4,0],[0,0,2,1]],[[1,0,3,0],[1,3,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,3,0],[0,1,2,0]],[[1,0,2,0],[1,3,3,2],[3,3,3,0],[0,1,2,0]],[[1,0,2,0],[1,3,3,2],[2,4,3,0],[0,1,2,0]],[[1,0,3,0],[1,3,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,2,0],[1,4,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,2,0],[1,3,4,2],[2,3,3,0],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[3,3,3,0],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,4,3,0],[0,2,1,0]],[[1,0,2,0],[1,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,0,3,0],[1,3,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,3,0],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[3,3,3,0],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,4,3,0],[1,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,3,0],[2,0,2,0]],[[1,0,3,0],[1,3,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,2,0],[1,4,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,2,0],[1,3,4,2],[2,3,3,0],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[3,3,3,0],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[2,4,3,0],[1,1,1,0]],[[1,0,2,0],[1,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,0,3,0],[1,3,3,2],[2,3,3,0],[1,2,0,0]],[[1,0,2,0],[1,4,3,2],[2,3,3,0],[1,2,0,0]],[[1,0,2,0],[1,3,4,2],[2,3,3,0],[1,2,0,0]],[[1,0,2,0],[1,3,3,2],[3,3,3,0],[1,2,0,0]],[[1,0,2,0],[1,3,3,2],[2,4,3,0],[1,2,0,0]],[[1,0,2,0],[1,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,1,1],[3,2,3,2],[1,2,3,0],[1,1,1,0]],[[1,3,1,1],[2,2,3,2],[1,2,3,0],[1,1,1,0]],[[2,2,1,1],[2,2,3,2],[1,2,3,0],[1,1,1,0]],[[1,2,1,1],[3,2,3,2],[1,2,3,0],[1,1,0,1]],[[1,3,1,1],[2,2,3,2],[1,2,3,0],[1,1,0,1]],[[2,2,1,1],[2,2,3,2],[1,2,3,0],[1,1,0,1]],[[1,2,1,1],[3,2,3,2],[1,2,3,0],[1,0,2,0]],[[1,3,1,1],[2,2,3,2],[1,2,3,0],[1,0,2,0]],[[2,2,1,1],[2,2,3,2],[1,2,3,0],[1,0,2,0]],[[1,2,1,1],[3,2,3,2],[1,2,3,0],[1,0,1,1]],[[1,3,1,1],[2,2,3,2],[1,2,3,0],[1,0,1,1]],[[2,2,1,1],[2,2,3,2],[1,2,3,0],[1,0,1,1]],[[1,0,3,0],[1,3,3,2],[2,3,3,1],[0,0,1,1]],[[1,0,2,0],[1,4,3,2],[2,3,3,1],[0,0,1,1]],[[1,0,2,0],[1,3,4,2],[2,3,3,1],[0,0,1,1]],[[1,0,2,0],[1,3,3,3],[2,3,3,1],[0,0,1,1]],[[1,0,2,0],[1,3,3,2],[2,3,4,1],[0,0,1,1]],[[1,0,3,0],[1,3,3,2],[2,3,3,1],[0,0,2,0]],[[1,0,2,0],[1,4,3,2],[2,3,3,1],[0,0,2,0]],[[1,0,2,0],[1,3,4,2],[2,3,3,1],[0,0,2,0]],[[1,0,2,0],[1,3,3,3],[2,3,3,1],[0,0,2,0]],[[1,0,2,0],[1,3,3,2],[2,3,4,1],[0,0,2,0]],[[1,2,1,1],[3,2,3,2],[1,2,3,0],[0,2,1,0]],[[1,3,1,1],[2,2,3,2],[1,2,3,0],[0,2,1,0]],[[2,2,1,1],[2,2,3,2],[1,2,3,0],[0,2,1,0]],[[1,0,3,0],[1,3,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,2,0],[1,4,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,2,0],[1,3,4,2],[2,3,3,1],[0,2,0,0]],[[1,0,2,0],[1,3,3,3],[2,3,3,1],[0,2,0,0]],[[1,0,2,0],[1,3,3,2],[3,3,3,1],[0,2,0,0]],[[1,0,2,0],[1,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,1,1],[3,2,3,2],[1,2,3,0],[0,2,0,1]],[[1,3,1,1],[2,2,3,2],[1,2,3,0],[0,2,0,1]],[[2,2,1,1],[2,2,3,2],[1,2,3,0],[0,2,0,1]],[[1,2,1,1],[3,2,3,2],[1,2,3,0],[0,1,2,0]],[[1,3,1,1],[2,2,3,2],[1,2,3,0],[0,1,2,0]],[[2,2,1,1],[2,2,3,2],[1,2,3,0],[0,1,2,0]],[[1,2,1,1],[3,2,3,2],[1,2,3,0],[0,1,1,1]],[[1,3,1,1],[2,2,3,2],[1,2,3,0],[0,1,1,1]],[[2,2,1,1],[2,2,3,2],[1,2,3,0],[0,1,1,1]],[[1,0,3,0],[1,3,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,2,0],[1,4,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,2,0],[1,3,4,2],[2,3,3,1],[1,1,0,0]],[[1,0,2,0],[1,3,3,3],[2,3,3,1],[1,1,0,0]],[[1,0,2,0],[1,3,3,2],[3,3,3,1],[1,1,0,0]],[[1,0,2,0],[1,3,3,2],[2,4,3,1],[1,1,0,0]],[[1,0,2,0],[1,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,0,3,0],[1,3,3,2],[2,3,3,2],[0,0,0,1]],[[1,0,2,0],[1,4,3,2],[2,3,3,2],[0,0,0,1]],[[1,0,2,0],[1,3,4,2],[2,3,3,2],[0,0,0,1]],[[1,0,2,0],[1,3,3,3],[2,3,3,2],[0,0,0,1]],[[1,0,2,0],[1,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,1,1],[3,2,3,2],[1,1,3,0],[0,2,2,0]],[[1,3,1,1],[2,2,3,2],[1,1,3,0],[0,2,2,0]],[[2,2,1,1],[2,2,3,2],[1,1,3,0],[0,2,2,0]],[[1,2,1,1],[3,2,3,2],[1,0,3,0],[1,2,2,0]],[[1,3,1,1],[2,2,3,2],[1,0,3,0],[1,2,2,0]],[[2,2,1,1],[2,2,3,2],[1,0,3,0],[1,2,2,0]],[[1,2,1,1],[2,2,3,2],[0,3,3,3],[0,0,0,1]],[[1,2,1,1],[2,2,3,3],[0,3,3,2],[0,0,0,1]],[[1,2,1,1],[2,2,4,2],[0,3,3,2],[0,0,0,1]],[[1,2,1,2],[2,2,3,2],[0,3,3,2],[0,0,0,1]],[[1,2,1,1],[2,2,3,3],[0,3,3,1],[1,1,0,0]],[[1,2,1,1],[2,2,4,2],[0,3,3,1],[1,1,0,0]],[[1,2,1,2],[2,2,3,2],[0,3,3,1],[1,1,0,0]],[[1,0,2,0],[2,0,1,1],[3,3,3,2],[1,2,2,1]],[[1,0,2,0],[2,0,1,1],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[2,0,1,1],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[2,0,1,1],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[2,0,1,1],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[2,0,1,2],[1,3,3,3],[1,2,2,1]],[[1,0,2,0],[2,0,1,2],[1,3,3,2],[2,2,2,1]],[[1,0,2,0],[2,0,1,2],[1,3,3,2],[1,3,2,1]],[[1,0,2,0],[2,0,1,2],[1,3,3,2],[1,2,3,1]],[[1,0,2,0],[2,0,1,2],[1,3,3,2],[1,2,2,2]],[[1,0,2,0],[2,0,1,2],[3,2,3,2],[1,2,2,1]],[[1,0,2,0],[2,0,1,2],[2,2,3,3],[1,2,2,1]],[[1,0,2,0],[2,0,1,2],[2,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,0,1,2],[2,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,0,1,2],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,0,1,2],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[2,0,1,2],[3,3,2,2],[1,2,2,1]],[[1,0,2,0],[2,0,1,2],[2,3,2,3],[1,2,2,1]],[[1,0,2,0],[2,0,1,2],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,0,1,2],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,0,1,2],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,0,1,2],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[2,0,1,2],[3,3,3,1],[1,2,2,1]],[[1,0,2,0],[2,0,1,2],[2,3,3,1],[2,2,2,1]],[[1,0,2,0],[2,0,1,2],[2,3,3,1],[1,3,2,1]],[[1,0,2,0],[2,0,1,2],[2,3,3,1],[1,2,3,1]],[[1,0,2,0],[2,0,1,2],[2,3,3,1],[1,2,2,2]],[[1,0,2,0],[2,0,1,2],[2,3,3,3],[0,2,2,1]],[[1,0,2,0],[2,0,1,2],[2,3,3,2],[0,3,2,1]],[[1,0,2,0],[2,0,1,2],[2,3,3,2],[0,2,3,1]],[[1,0,2,0],[2,0,1,2],[2,3,3,2],[0,2,2,2]],[[1,0,2,0],[2,0,1,2],[3,3,3,2],[1,2,2,0]],[[1,0,2,0],[2,0,1,2],[2,3,3,2],[2,2,2,0]],[[1,0,2,0],[2,0,1,2],[2,3,3,2],[1,3,2,0]],[[1,0,2,0],[2,0,1,2],[2,3,3,2],[1,2,3,0]],[[1,0,2,0],[2,0,2,0],[3,3,3,2],[1,2,2,1]],[[1,0,2,0],[2,0,2,0],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[2,0,2,0],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[2,0,2,0],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[2,0,2,0],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[2,0,2,1],[3,3,3,1],[1,2,2,1]],[[1,0,2,0],[2,0,2,1],[2,3,3,1],[2,2,2,1]],[[1,0,2,0],[2,0,2,1],[2,3,3,1],[1,3,2,1]],[[1,0,2,0],[2,0,2,1],[2,3,3,1],[1,2,3,1]],[[1,0,2,0],[2,0,2,1],[2,3,3,1],[1,2,2,2]],[[1,0,2,0],[2,0,2,1],[3,3,3,2],[1,2,2,0]],[[1,0,2,0],[2,0,2,1],[2,3,3,2],[2,2,2,0]],[[1,0,2,0],[2,0,2,1],[2,3,3,2],[1,3,2,0]],[[1,0,2,0],[2,0,2,1],[2,3,3,2],[1,2,3,0]],[[1,0,2,0],[2,0,2,3],[1,3,2,2],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[1,3,2,3],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[1,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,0,2,2],[1,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,0,2,2],[1,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,0,2,2],[1,3,2,2],[1,2,2,2]],[[1,0,2,0],[2,0,2,2],[1,3,4,1],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[1,3,3,1],[2,2,2,1]],[[1,0,2,0],[2,0,2,2],[1,3,3,1],[1,3,2,1]],[[1,0,2,0],[2,0,2,2],[1,3,3,1],[1,2,3,1]],[[1,0,2,0],[2,0,2,2],[1,3,3,1],[1,2,2,2]],[[1,0,2,0],[2,0,2,3],[1,3,3,2],[1,2,1,1]],[[1,0,2,0],[2,0,2,2],[1,3,4,2],[1,2,1,1]],[[1,0,2,0],[2,0,2,2],[1,3,3,3],[1,2,1,1]],[[1,0,2,0],[2,0,2,2],[1,3,3,2],[1,2,1,2]],[[1,0,2,0],[2,0,2,3],[1,3,3,2],[1,2,2,0]],[[1,0,2,0],[2,0,2,2],[1,3,4,2],[1,2,2,0]],[[1,0,2,0],[2,0,2,2],[1,3,3,3],[1,2,2,0]],[[1,0,2,0],[2,0,2,2],[1,3,3,2],[2,2,2,0]],[[1,0,2,0],[2,0,2,2],[1,3,3,2],[1,3,2,0]],[[1,0,2,0],[2,0,2,2],[1,3,3,2],[1,2,3,0]],[[1,0,2,0],[2,0,2,3],[2,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[3,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,0,2,2],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,0,2,2],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,0,2,2],[3,2,3,1],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,0,2,2],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,0,2,2],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,0,2,3],[2,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,0,2,2],[2,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,0,2,2],[2,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,0,2,2],[2,2,3,2],[1,2,1,2]],[[1,0,2,0],[2,0,2,3],[2,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,0,2,2],[3,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,0,2,2],[2,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,0,2,2],[2,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,0,2,2],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,0,2,2],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,0,2,2],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[2,0,2,3],[2,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[3,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,1,3],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,0,2,2],[2,3,1,2],[1,2,2,2]],[[1,0,2,0],[2,0,2,2],[3,3,2,1],[1,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,0,2,2],[2,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,0,2,3],[2,3,2,2],[0,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,2,3],[0,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,2,2],[0,3,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,2,2],[0,2,3,1]],[[1,0,2,0],[2,0,2,2],[2,3,2,2],[0,2,2,2]],[[1,0,2,0],[2,0,2,2],[3,3,2,2],[1,2,2,0]],[[1,0,2,0],[2,0,2,2],[2,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,0,2,2],[2,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,0,2,2],[2,3,2,2],[1,2,3,0]],[[1,0,2,0],[2,0,2,2],[2,3,4,1],[0,2,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,3,1],[0,3,2,1]],[[1,0,2,0],[2,0,2,2],[2,3,3,1],[0,2,3,1]],[[1,0,2,0],[2,0,2,2],[2,3,3,1],[0,2,2,2]],[[1,0,2,0],[2,0,2,2],[3,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,0,2,2],[2,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,0,2,2],[2,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,0,2,3],[2,3,3,2],[0,2,1,1]],[[1,0,2,0],[2,0,2,2],[2,3,4,2],[0,2,1,1]],[[1,0,2,0],[2,0,2,2],[2,3,3,3],[0,2,1,1]],[[1,0,2,0],[2,0,2,2],[2,3,3,2],[0,2,1,2]],[[1,0,2,0],[2,0,2,3],[2,3,3,2],[0,2,2,0]],[[1,0,2,0],[2,0,2,2],[2,3,4,2],[0,2,2,0]],[[1,0,2,0],[2,0,2,2],[2,3,3,3],[0,2,2,0]],[[1,0,2,0],[2,0,2,2],[2,3,3,2],[0,3,2,0]],[[1,0,2,0],[2,0,2,2],[2,3,3,2],[0,2,3,0]],[[1,0,2,0],[2,0,2,2],[3,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,0,2,2],[2,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,0,2,2],[2,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,0,2,2],[3,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,0,2,2],[2,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,0,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,3],[0,3,3,1],[0,2,0,0]],[[1,2,1,1],[2,2,4,2],[0,3,3,1],[0,2,0,0]],[[1,2,1,2],[2,2,3,2],[0,3,3,1],[0,2,0,0]],[[1,0,2,0],[2,0,3,0],[1,3,4,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,0],[1,3,3,2],[2,2,2,1]],[[1,0,2,0],[2,0,3,0],[1,3,3,2],[1,3,2,1]],[[1,0,2,0],[2,0,3,0],[1,3,3,2],[1,2,3,1]],[[1,0,2,0],[2,0,3,0],[1,3,3,2],[1,2,2,2]],[[1,0,2,0],[2,0,3,0],[3,2,3,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,0],[2,2,4,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,0],[2,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,0,3,0],[2,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,0,3,0],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,0,3,0],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[2,0,3,0],[3,3,2,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,0],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,0,3,0],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,0,3,0],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,0,3,0],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[2,0,3,0],[2,3,4,2],[0,2,2,1]],[[1,0,2,0],[2,0,3,0],[2,3,3,2],[0,3,2,1]],[[1,0,2,0],[2,0,3,0],[2,3,3,2],[0,2,3,1]],[[1,0,2,0],[2,0,3,0],[2,3,3,2],[0,2,2,2]],[[1,0,2,0],[2,0,3,0],[3,3,3,2],[1,2,1,1]],[[1,0,2,0],[2,0,3,0],[2,3,3,2],[2,2,1,1]],[[1,0,2,0],[2,0,3,0],[2,3,3,2],[1,3,1,1]],[[1,0,2,0],[2,0,3,1],[1,3,2,3],[1,2,2,1]],[[1,0,2,0],[2,0,3,1],[1,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,0,3,1],[1,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,0,3,1],[1,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,0,3,1],[1,3,2,2],[1,2,2,2]],[[1,0,2,0],[2,0,3,1],[1,3,4,1],[1,2,2,1]],[[1,0,2,0],[2,0,3,1],[1,3,3,1],[2,2,2,1]],[[1,0,2,0],[2,0,3,1],[1,3,3,1],[1,3,2,1]],[[1,0,2,0],[2,0,3,1],[1,3,3,1],[1,2,3,1]],[[1,0,2,0],[2,0,3,1],[1,3,3,1],[1,2,2,2]],[[1,0,2,0],[2,0,3,1],[1,3,4,2],[1,2,1,1]],[[1,0,2,0],[2,0,3,1],[1,3,3,3],[1,2,1,1]],[[1,0,2,0],[2,0,3,1],[1,3,3,2],[1,2,1,2]],[[1,0,2,0],[2,0,3,1],[1,3,4,2],[1,2,2,0]],[[1,0,2,0],[2,0,3,1],[1,3,3,3],[1,2,2,0]],[[1,0,2,0],[2,0,3,1],[1,3,3,2],[2,2,2,0]],[[1,0,2,0],[2,0,3,1],[1,3,3,2],[1,3,2,0]],[[1,0,2,0],[2,0,3,1],[1,3,3,2],[1,2,3,0]],[[1,0,2,0],[2,0,3,1],[3,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,0,3,1],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,0,3,1],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,0,3,1],[3,2,3,1],[1,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,0,3,1],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,0,3,1],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,0,3,1],[2,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,0,3,1],[2,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,0,3,1],[2,2,3,2],[1,2,1,2]],[[1,0,2,0],[2,0,3,1],[3,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,0,3,1],[2,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,0,3,1],[2,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,0,3,1],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,0,3,1],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,0,3,1],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[2,0,3,1],[3,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,1,3],[1,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,0,3,1],[2,3,1,2],[1,2,2,2]],[[1,0,2,0],[2,0,3,1],[3,3,2,1],[1,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,0,3,1],[2,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,0,3,1],[2,3,2,3],[0,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,2,2],[0,3,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,2,2],[0,2,3,1]],[[1,0,2,0],[2,0,3,1],[2,3,2,2],[0,2,2,2]],[[1,0,2,0],[2,0,3,1],[3,3,2,2],[1,2,2,0]],[[1,0,2,0],[2,0,3,1],[2,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,0,3,1],[2,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,0,3,1],[2,3,2,2],[1,2,3,0]],[[1,0,2,0],[2,0,3,1],[3,3,3,0],[1,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,0],[2,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,0],[1,3,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,0],[1,2,3,1]],[[1,0,2,0],[2,0,3,1],[2,3,4,1],[0,2,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,1],[0,3,2,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,1],[0,2,3,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,1],[0,2,2,2]],[[1,0,2,0],[2,0,3,1],[3,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,0,3,1],[2,3,4,2],[0,2,1,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,3],[0,2,1,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,2],[0,2,1,2]],[[1,0,2,0],[2,0,3,1],[2,3,4,2],[0,2,2,0]],[[1,0,2,0],[2,0,3,1],[2,3,3,3],[0,2,2,0]],[[1,0,2,0],[2,0,3,1],[2,3,3,2],[0,3,2,0]],[[1,0,2,0],[2,0,3,1],[2,3,3,2],[0,2,3,0]],[[1,0,2,0],[2,0,3,1],[3,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,0,3,1],[2,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,0,3,1],[3,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,0,3,1],[2,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,0,3,1],[2,3,3,2],[1,3,1,0]],[[1,0,2,0],[2,0,3,3],[1,1,3,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[1,1,3,3],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[1,1,3,2],[1,2,3,1]],[[1,0,2,0],[2,0,3,2],[1,1,3,2],[1,2,2,2]],[[1,0,2,0],[2,0,3,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,0,3,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,0,3,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,0,3,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,0,3,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,0,3,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,0,3,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,0,3,2],[1,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,0,3,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,0,3,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,0,3,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,0,3,2],[1,2,3,2],[1,2,1,2]],[[1,0,2,0],[2,0,3,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,0,3,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,0,3,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,0,3,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,0,3,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,0,3,2],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[2,0,3,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,0,3,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,0],[2,0,3,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,0],[2,0,3,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,0],[2,0,3,2],[1,3,4,0],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,0],[2,2,2,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,0],[1,3,2,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,0],[1,2,3,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,0],[1,2,2,2]],[[1,0,2,0],[2,0,3,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,0],[2,0,3,2],[1,3,4,1],[1,2,2,0]],[[1,0,2,0],[2,0,3,2],[1,3,3,1],[2,2,2,0]],[[1,0,2,0],[2,0,3,2],[1,3,3,1],[1,3,2,0]],[[1,0,2,0],[2,0,3,2],[1,3,3,1],[1,2,3,0]],[[1,0,2,0],[2,0,3,3],[1,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,0,3,2],[1,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,3],[1,0,2,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,2],[1,0,2,2]],[[1,0,2,0],[2,0,3,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,0,3,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,2],[1,1,1,2]],[[1,0,2,0],[2,0,3,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,0,3,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,0,3,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,0],[2,0,3,2],[1,3,3,2],[1,1,3,0]],[[1,0,2,0],[2,0,3,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,0,3,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,0],[2,0,3,2],[1,3,3,2],[1,2,0,2]],[[1,0,2,0],[2,0,3,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,0,3,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,0,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[2,2,3,2],[0,3,4,1],[0,0,2,0]],[[1,2,1,1],[2,2,3,3],[0,3,3,1],[0,0,2,0]],[[1,2,1,1],[2,2,4,2],[0,3,3,1],[0,0,2,0]],[[1,2,1,2],[2,2,3,2],[0,3,3,1],[0,0,2,0]],[[1,0,2,0],[2,0,3,3],[2,0,3,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,0,3,3],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,0,3,2],[1,2,3,1]],[[1,0,2,0],[2,0,3,2],[2,0,3,2],[1,2,2,2]],[[1,0,2,0],[2,0,3,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[3,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,0],[2,0,3,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,0],[2,0,3,2],[2,1,2,2],[1,2,2,2]],[[1,0,2,0],[2,0,3,2],[3,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[2,0,3,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[2,0,3,2],[2,1,3,1],[1,2,2,2]],[[1,0,2,0],[2,0,3,3],[2,1,3,2],[0,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,1,3,3],[0,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,1,3,2],[0,2,3,1]],[[1,0,2,0],[2,0,3,2],[2,1,3,2],[0,2,2,2]],[[1,0,2,0],[2,0,3,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,0,3,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,0],[2,0,3,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,0],[2,0,3,2],[2,1,3,2],[1,2,1,2]],[[1,0,2,0],[2,0,3,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,0,3,2],[3,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[2,0,3,2],[2,1,3,2],[1,2,3,0]],[[1,0,2,0],[2,0,3,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,0],[2,0,3,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,0],[2,0,3,2],[2,2,2,2],[0,2,2,2]],[[1,0,2,0],[2,0,3,2],[3,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,2,4,0],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,2,3,0],[2,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,2,3,0],[1,3,2,1]],[[1,0,2,0],[2,0,3,2],[2,2,3,0],[1,2,3,1]],[[1,0,2,0],[2,0,3,2],[2,2,3,0],[1,2,2,2]],[[1,0,2,0],[2,0,3,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[2,0,3,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,0,3,2],[2,2,3,1],[0,2,2,2]],[[1,0,2,0],[2,0,3,2],[3,2,3,1],[1,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,2,4,1],[1,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,2,3,1],[2,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,2,3,1],[1,3,2,0]],[[1,0,2,0],[2,0,3,2],[2,2,3,1],[1,2,3,0]],[[1,0,2,0],[2,0,3,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,0,3,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,0],[2,0,3,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,0],[2,0,3,2],[2,2,3,2],[0,2,1,2]],[[1,0,2,0],[2,0,3,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[2,0,3,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,2,3,2],[0,3,4,1],[0,0,1,1]],[[1,2,1,1],[2,2,3,3],[0,3,3,1],[0,0,1,1]],[[1,2,1,1],[2,2,4,2],[0,3,3,1],[0,0,1,1]],[[1,2,1,2],[2,2,3,2],[0,3,3,1],[0,0,1,1]],[[1,0,2,0],[2,0,3,3],[2,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[3,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,0,3],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,0,2],[2,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,0,2],[1,3,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,0,2],[1,2,3,1]],[[1,0,2,0],[2,0,3,2],[2,3,0,2],[1,2,2,2]],[[1,0,2,0],[2,0,3,2],[3,3,2,0],[1,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,2,0],[2,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,2,0],[1,3,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,2,0],[1,2,3,1]],[[1,0,2,0],[2,0,3,2],[2,3,2,0],[1,2,2,2]],[[1,0,2,0],[2,0,3,2],[3,3,2,1],[1,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,3,2,1],[2,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,3,2,1],[1,3,2,0]],[[1,0,2,0],[2,0,3,2],[2,3,2,1],[1,2,3,0]],[[1,0,2,0],[2,0,3,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,0,3,2],[2,3,2,2],[0,1,2,2]],[[1,0,2,0],[2,0,3,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,0],[2,0,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[3,2,3,2],[0,3,3,0],[1,2,0,0]],[[1,3,1,1],[2,2,3,2],[0,3,3,0],[1,2,0,0]],[[2,2,1,1],[2,2,3,2],[0,3,3,0],[1,2,0,0]],[[1,0,2,0],[2,0,3,2],[2,3,4,0],[0,2,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,0],[0,3,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,0],[0,2,3,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,0],[0,2,2,2]],[[1,0,2,0],[2,0,3,2],[3,3,3,0],[1,2,1,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,0],[2,2,1,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,0],[1,3,1,1]],[[1,0,2,0],[2,0,3,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,1],[0,1,2,2]],[[1,0,2,0],[2,0,3,2],[2,3,4,1],[0,2,2,0]],[[1,0,2,0],[2,0,3,2],[2,3,3,1],[0,3,2,0]],[[1,0,2,0],[2,0,3,2],[2,3,3,1],[0,2,3,0]],[[1,0,2,0],[2,0,3,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,1],[1,0,2,2]],[[1,0,2,0],[2,0,3,2],[3,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,1],[2,2,0,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,1],[1,3,0,1]],[[1,0,2,0],[2,0,3,2],[3,3,3,1],[1,2,1,0]],[[1,0,2,0],[2,0,3,2],[2,3,3,1],[2,2,1,0]],[[1,0,2,0],[2,0,3,2],[2,3,3,1],[1,3,1,0]],[[1,0,2,0],[2,0,3,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,2],[0,0,2,2]],[[1,0,2,0],[2,0,3,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,0,3,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,2],[0,1,1,2]],[[1,0,2,0],[2,0,3,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,0,3,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,0,3,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,0,3,2],[2,3,3,2],[0,1,3,0]],[[1,0,2,0],[2,0,3,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,0,3,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,2],[0,2,0,2]],[[1,0,2,0],[2,0,3,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,0,3,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,0,3,2],[2,3,3,3],[0,2,1,0]],[[1,0,2,0],[2,0,3,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,0,3,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,2],[1,0,1,2]],[[1,0,2,0],[2,0,3,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,0,3,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,0,3,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,0],[2,0,3,2],[2,3,3,2],[1,0,3,0]],[[1,0,2,0],[2,0,3,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,0,3,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,0],[2,0,3,2],[2,3,3,2],[1,1,0,2]],[[1,0,2,0],[2,0,3,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,0,3,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[2,0,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[2,2,3,2],[0,3,4,0],[0,0,2,1]],[[1,2,1,1],[2,2,3,3],[0,3,3,0],[0,0,2,1]],[[1,2,1,1],[2,2,4,2],[0,3,3,0],[0,0,2,1]],[[1,2,1,2],[2,2,3,2],[0,3,3,0],[0,0,2,1]],[[1,0,2,0],[2,1,0,1],[3,3,3,2],[1,2,2,1]],[[1,0,2,0],[2,1,0,1],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[2,1,0,1],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[2,1,0,1],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,0,1],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[2,1,0,2],[1,3,3,3],[1,2,2,1]],[[1,0,2,0],[2,1,0,2],[1,3,3,2],[2,2,2,1]],[[1,0,2,0],[2,1,0,2],[1,3,3,2],[1,3,2,1]],[[1,0,2,0],[2,1,0,2],[1,3,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,0,2],[1,3,3,2],[1,2,2,2]],[[1,0,2,0],[2,1,0,2],[3,2,3,2],[1,2,2,1]],[[1,0,2,0],[2,1,0,2],[2,2,3,3],[1,2,2,1]],[[1,0,2,0],[2,1,0,2],[2,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,1,0,2],[2,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,1,0,2],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,0,2],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[2,1,0,2],[3,3,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,0,2],[2,3,2,3],[1,2,2,1]],[[1,0,2,0],[2,1,0,2],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,1,0,2],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,1,0,2],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,1,0,2],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[2,1,0,2],[3,3,3,1],[1,2,2,1]],[[1,0,2,0],[2,1,0,2],[2,3,3,1],[2,2,2,1]],[[1,0,2,0],[2,1,0,2],[2,3,3,1],[1,3,2,1]],[[1,0,2,0],[2,1,0,2],[2,3,3,1],[1,2,3,1]],[[1,0,2,0],[2,1,0,2],[2,3,3,1],[1,2,2,2]],[[1,0,2,0],[2,1,0,2],[2,3,3,3],[0,2,2,1]],[[1,0,2,0],[2,1,0,2],[2,3,3,2],[0,3,2,1]],[[1,0,2,0],[2,1,0,2],[2,3,3,2],[0,2,3,1]],[[1,0,2,0],[2,1,0,2],[2,3,3,2],[0,2,2,2]],[[1,0,2,0],[2,1,0,2],[3,3,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,0,2],[2,3,3,2],[2,2,2,0]],[[1,0,2,0],[2,1,0,2],[2,3,3,2],[1,3,2,0]],[[1,0,2,0],[2,1,0,2],[2,3,3,2],[1,2,3,0]],[[1,0,2,0],[2,1,1,0],[3,3,3,2],[1,2,2,1]],[[1,0,2,0],[2,1,1,0],[2,3,3,2],[2,2,2,1]],[[1,0,2,0],[2,1,1,0],[2,3,3,2],[1,3,2,1]],[[1,0,2,0],[2,1,1,0],[2,3,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,1,0],[2,3,3,2],[1,2,2,2]],[[1,0,2,0],[2,1,1,1],[3,3,3,1],[1,2,2,1]],[[1,0,2,0],[2,1,1,1],[2,3,3,1],[2,2,2,1]],[[1,0,2,0],[2,1,1,1],[2,3,3,1],[1,3,2,1]],[[1,0,2,0],[2,1,1,1],[2,3,3,1],[1,2,3,1]],[[1,0,2,0],[2,1,1,1],[2,3,3,1],[1,2,2,2]],[[1,0,2,0],[2,1,1,1],[3,3,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,1,1],[2,3,3,2],[2,2,2,0]],[[1,0,2,0],[2,1,1,1],[2,3,3,2],[1,3,2,0]],[[1,0,2,0],[2,1,1,1],[2,3,3,2],[1,2,3,0]],[[1,0,2,0],[2,1,1,2],[1,2,3,3],[1,2,2,1]],[[1,0,2,0],[2,1,1,2],[1,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,1,1,2],[1,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,1,1,2],[1,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,1,2],[1,2,3,2],[1,2,2,2]],[[1,0,2,0],[2,1,1,2],[1,3,3,3],[1,1,2,1]],[[1,0,2,0],[2,1,1,2],[1,3,3,2],[1,1,3,1]],[[1,0,2,0],[2,1,1,2],[1,3,3,2],[1,1,2,2]],[[1,0,2,0],[2,1,1,2],[3,1,3,2],[1,2,2,1]],[[1,0,2,0],[2,1,1,2],[2,1,3,3],[1,2,2,1]],[[1,0,2,0],[2,1,1,2],[2,1,3,2],[2,2,2,1]],[[1,0,2,0],[2,1,1,2],[2,1,3,2],[1,3,2,1]],[[1,0,2,0],[2,1,1,2],[2,1,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,1,2],[2,1,3,2],[1,2,2,2]],[[1,0,2,0],[2,1,1,2],[2,2,3,3],[0,2,2,1]],[[1,0,2,0],[2,1,1,2],[2,2,3,2],[0,3,2,1]],[[1,0,2,0],[2,1,1,2],[2,2,3,2],[0,2,3,1]],[[1,0,2,0],[2,1,1,2],[2,2,3,2],[0,2,2,2]],[[1,0,2,0],[2,1,1,2],[3,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,1,2],[2,3,1,3],[1,2,2,1]],[[1,0,2,0],[2,1,1,2],[2,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,1,1,2],[2,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,1,1,2],[2,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,1,1,2],[2,3,1,2],[1,2,2,2]],[[1,0,2,0],[2,1,1,2],[3,3,2,1],[1,2,2,1]],[[1,0,2,0],[2,1,1,2],[2,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,1,1,2],[2,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,1,1,2],[2,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,1,1,2],[2,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,1,1,2],[3,3,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,1,2],[2,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,1,1,2],[2,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,1,1,2],[2,3,2,2],[1,2,3,0]],[[1,0,2,0],[2,1,1,2],[3,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,1,2],[2,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,1,1,2],[2,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,1,1,2],[2,3,3,3],[0,1,2,1]],[[1,0,2,0],[2,1,1,2],[2,3,3,2],[0,1,3,1]],[[1,0,2,0],[2,1,1,2],[2,3,3,2],[0,1,2,2]],[[1,0,2,0],[2,1,1,2],[2,3,3,3],[1,0,2,1]],[[1,0,2,0],[2,1,1,2],[2,3,3,2],[1,0,3,1]],[[1,0,2,0],[2,1,1,2],[2,3,3,2],[1,0,2,2]],[[1,0,2,0],[2,1,1,2],[3,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,1,2],[2,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,1,1,2],[2,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,1,1,2],[3,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,1,2],[2,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,1,1,2],[2,3,3,2],[1,3,1,0]],[[1,0,2,0],[2,1,2,0],[3,3,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,0],[2,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,1,2,0],[2,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,1,2,0],[2,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,1,2,0],[2,3,2,2],[1,2,2,2]],[[1,0,2,0],[2,1,2,0],[3,3,3,2],[1,2,1,1]],[[1,0,2,0],[2,1,2,0],[2,3,3,2],[2,2,1,1]],[[1,0,2,0],[2,1,2,0],[2,3,3,2],[1,3,1,1]],[[1,0,2,0],[2,1,2,1],[3,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,1],[2,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,1,2,1],[2,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,1,2,1],[2,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,1,2,1],[2,3,1,2],[1,2,2,2]],[[1,0,2,0],[2,1,2,1],[3,3,2,1],[1,2,2,1]],[[1,0,2,0],[2,1,2,1],[2,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,1,2,1],[2,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,1,2,1],[2,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,1,2,1],[2,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,1,2,1],[3,3,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,2,1],[2,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,1,2,1],[2,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,1,2,1],[2,3,2,2],[1,2,3,0]],[[1,0,2,0],[2,1,2,1],[3,3,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,2,1],[2,3,3,0],[2,2,2,1]],[[1,0,2,0],[2,1,2,1],[2,3,3,0],[1,3,2,1]],[[1,0,2,0],[2,1,2,1],[2,3,3,0],[1,2,3,1]],[[1,0,2,0],[2,1,2,1],[3,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,2,1],[2,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,1,2,1],[2,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,1,2,1],[3,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,2,1],[2,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,1,2,1],[2,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,1,2,1],[3,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,2,1],[2,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,1,2,1],[2,3,3,2],[1,3,1,0]],[[1,0,2,0],[2,1,2,3],[1,1,3,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,1,3,3],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,1,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,2,2],[1,1,3,2],[1,2,2,2]],[[1,0,2,0],[2,1,2,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,1,2,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,1,2,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,1,2,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,1,2,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,1,2,2],[1,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,1,2,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,1,2,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,1,2,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,1,2,2],[1,2,3,2],[1,2,1,2]],[[1,0,2,0],[2,1,2,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,2,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,1,2,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,1,2,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,1,2,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,1,2,2],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[2,1,2,3],[1,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,4,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,1,3],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,1,2,2],[1,3,1,2],[1,2,2,2]],[[1,0,2,0],[2,1,2,2],[1,4,2,1],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,1,2,2],[1,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,1,2,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,0],[2,1,2,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,0],[2,1,2,2],[1,4,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,2,2],[1,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,1,2,2],[1,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,1,2,2],[1,3,2,2],[1,2,3,0]],[[1,0,2,0],[2,1,2,2],[1,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,0],[2,1,2,2],[1,4,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,2,2],[1,3,4,1],[1,2,1,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,1,2,3],[1,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,3],[1,0,2,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,2],[1,0,2,2]],[[1,0,2,0],[2,1,2,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,1,2,2],[1,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,1,2,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,2],[1,1,1,2]],[[1,0,2,0],[2,1,2,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,1,2,2],[1,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,1,2,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,1,2,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,0],[2,1,2,2],[1,3,3,2],[1,1,3,0]],[[1,0,2,0],[2,1,2,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,2,2],[1,4,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,2,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,1,2,2],[1,3,3,2],[1,2,0,2]],[[1,0,2,0],[2,1,2,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,2,2],[1,4,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,2,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,1,2,2],[1,3,3,3],[1,2,1,0]],[[1,0,2,0],[2,1,2,2],[1,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,1,2,2],[1,3,3,2],[1,3,1,0]],[[1,0,2,0],[2,1,2,3],[2,0,3,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,0,3,3],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,0,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,2,2],[2,0,3,2],[1,2,2,2]],[[2,0,2,0],[2,1,2,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[3,1,2,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[3,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,0],[2,1,2,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,0],[2,1,2,2],[2,1,2,2],[1,2,2,2]],[[2,0,2,0],[2,1,2,2],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[3,1,2,2],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[3,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[2,1,2,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[2,1,2,2],[2,1,3,1],[1,2,2,2]],[[1,0,2,0],[2,1,2,3],[2,1,3,2],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,1,3,3],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,1,3,2],[0,2,3,1]],[[1,0,2,0],[2,1,2,2],[2,1,3,2],[0,2,2,2]],[[1,0,2,0],[2,1,2,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,1,3,2],[1,2,1,2]],[[2,0,2,0],[2,1,2,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[3,1,2,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,2,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,2,2],[3,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[2,1,2,2],[2,1,3,2],[1,2,3,0]],[[2,0,2,0],[2,1,2,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[3,1,2,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,3],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[3,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,1,3],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,1,2],[2,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,1,2],[1,3,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,1,2],[1,2,3,1]],[[1,0,2,0],[2,1,2,2],[2,2,1,2],[1,2,2,2]],[[2,0,2,0],[2,1,2,2],[2,2,2,1],[1,2,2,1]],[[1,0,2,0],[3,1,2,2],[2,2,2,1],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[3,2,2,1],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,2,1],[2,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,2,1],[1,3,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,2,1],[1,2,3,1]],[[1,0,2,0],[2,1,2,2],[2,2,2,1],[1,2,2,2]],[[1,0,2,0],[2,1,2,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,0],[2,1,2,2],[2,2,2,2],[0,2,2,2]],[[2,0,2,0],[2,1,2,2],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[3,1,2,2],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,2,2],[3,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,2,2,2],[2,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,2,2,2],[1,3,2,0]],[[1,0,2,0],[2,1,2,2],[2,2,2,2],[1,2,3,0]],[[1,0,2,0],[2,1,2,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[2,1,2,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,1,2,2],[2,2,3,1],[0,2,2,2]],[[2,0,2,0],[2,1,2,2],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[3,1,2,2],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,2,2],[3,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,2,3,1],[2,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,2,3,1],[1,3,1,1]],[[1,0,2,0],[2,1,2,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,2,3,2],[0,2,1,2]],[[1,0,2,0],[2,1,2,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[2,1,2,2],[2,2,3,2],[0,2,3,0]],[[2,0,2,0],[2,1,2,2],[2,2,3,2],[1,2,0,1]],[[1,0,2,0],[3,1,2,2],[2,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,2,2],[3,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,2,2],[2,2,3,2],[2,2,0,1]],[[1,0,2,0],[2,1,2,2],[2,2,3,2],[1,3,0,1]],[[2,0,2,0],[2,1,2,2],[2,2,3,2],[1,2,1,0]],[[1,0,2,0],[3,1,2,2],[2,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,2,2],[3,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,2,2],[2,2,3,2],[2,2,1,0]],[[1,0,2,0],[2,1,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,2],[0,3,2,3],[0,0,2,0]],[[1,2,1,1],[2,2,3,3],[0,3,2,2],[0,0,2,0]],[[1,2,1,1],[2,2,4,2],[0,3,2,2],[0,0,2,0]],[[1,2,1,2],[2,2,3,2],[0,3,2,2],[0,0,2,0]],[[1,2,1,1],[2,2,3,2],[0,3,2,2],[0,0,1,2]],[[1,2,1,1],[2,2,3,2],[0,3,2,3],[0,0,1,1]],[[1,2,1,1],[2,2,3,3],[0,3,2,2],[0,0,1,1]],[[1,2,1,1],[2,2,4,2],[0,3,2,2],[0,0,1,1]],[[1,2,1,2],[2,2,3,2],[0,3,2,2],[0,0,1,1]],[[2,0,2,0],[2,1,2,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[3,1,2,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,1,2,3],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[3,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,4,1,2],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,1,3],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,1,2],[0,3,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,1,2],[0,2,3,1]],[[1,0,2,0],[2,1,2,2],[2,3,1,2],[0,2,2,2]],[[2,0,2,0],[2,1,2,2],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[3,1,2,2],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,1,2,2],[3,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,1,2,2],[2,4,1,2],[1,1,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,1,2],[2,1,2,1]],[[1,0,2,0],[2,1,2,2],[3,3,2,0],[1,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,0],[2,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,0],[1,3,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,0],[1,2,3,1]],[[2,0,2,0],[2,1,2,2],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[3,1,2,2],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[3,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,4,2,1],[0,2,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,1],[0,3,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,1],[0,2,3,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,1],[0,2,2,2]],[[2,0,2,0],[2,1,2,2],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[3,1,2,2],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,1,2,2],[3,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,1,2,2],[2,4,2,1],[1,1,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,1],[2,1,2,1]],[[1,0,2,0],[2,1,2,2],[3,3,2,1],[1,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,2,1],[2,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,2,1],[1,3,2,0]],[[1,0,2,0],[2,1,2,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,2],[0,1,2,2]],[[2,0,2,0],[2,1,2,2],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[3,1,2,2],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,1,2,2],[3,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,4,2,2],[0,2,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,2,2],[0,3,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,2,2],[0,2,3,0]],[[1,0,2,0],[2,1,2,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,0],[2,1,2,2],[2,3,2,2],[1,0,2,2]],[[2,0,2,0],[2,1,2,2],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[3,1,2,2],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,1,2,2],[3,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,1,2,2],[2,4,2,2],[1,1,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,2,2],[2,1,2,0]],[[1,0,2,0],[2,1,2,2],[3,3,3,0],[1,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,0],[2,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,0],[1,3,1,1]],[[2,0,2,0],[2,1,2,2],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[3,1,2,2],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,1,2,2],[3,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,1,2,2],[2,4,3,1],[0,1,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,1],[0,1,2,2]],[[2,0,2,0],[2,1,2,2],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[3,1,2,2],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,1,2,2],[3,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,4,3,1],[0,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,4,1],[0,2,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,1],[0,3,1,1]],[[2,0,2,0],[2,1,2,2],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[3,1,2,2],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,1,2,2],[3,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,1,2,2],[2,4,3,1],[1,0,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,1],[2,0,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,1],[1,0,2,2]],[[2,0,2,0],[2,1,2,2],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[3,1,2,2],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,1,2,2],[3,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,1,2,2],[2,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,4,1],[1,1,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,1],[2,1,1,1]],[[1,0,2,0],[2,1,2,2],[3,3,3,1],[1,2,1,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,1],[2,2,1,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,1],[1,3,1,0]],[[1,0,2,0],[2,1,2,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[0,0,2,2]],[[2,0,2,0],[2,1,2,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[3,1,2,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,1,2,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,1,2,2],[3,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,1,2,2],[2,4,3,2],[0,1,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[0,1,1,2]],[[2,0,2,0],[2,1,2,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[3,1,2,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,1,2,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,1,2,2],[3,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,1,2,2],[2,4,3,2],[0,1,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[0,1,3,0]],[[2,0,2,0],[2,1,2,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[3,1,2,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,1,2,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,1,2,2],[3,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,1,2,2],[2,4,3,2],[0,2,0,1]],[[1,0,2,0],[2,1,2,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[0,3,0,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[0,2,0,2]],[[2,0,2,0],[2,1,2,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[3,1,2,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,1,2,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,1,2,2],[3,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,1,2,2],[2,4,3,2],[0,2,1,0]],[[1,0,2,0],[2,1,2,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,3],[0,2,1,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,2,3,3],[0,3,2,1],[1,1,1,0]],[[1,2,1,1],[2,2,4,2],[0,3,2,1],[1,1,1,0]],[[1,2,1,2],[2,2,3,2],[0,3,2,1],[1,1,1,0]],[[1,2,1,1],[2,2,3,3],[0,3,2,1],[1,1,0,1]],[[1,2,1,1],[2,2,4,2],[0,3,2,1],[1,1,0,1]],[[1,2,1,2],[2,2,3,2],[0,3,2,1],[1,1,0,1]],[[2,0,2,0],[2,1,2,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[3,1,2,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,1,2,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,1,2,2],[3,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,1,2,2],[2,4,3,2],[1,0,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[2,0,1,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[1,0,1,2]],[[2,0,2,0],[2,1,2,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[3,1,2,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,1,2,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,1,2,2],[3,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,1,2,2],[2,4,3,2],[1,0,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[2,0,2,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[1,0,3,0]],[[2,0,2,0],[2,1,2,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[3,1,2,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,1,2,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,1,2,2],[3,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,1,2,2],[2,4,3,2],[1,1,0,1]],[[1,0,2,0],[2,1,2,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[2,1,0,1]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[1,1,0,2]],[[2,0,2,0],[2,1,2,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[3,1,2,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,1,2,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,1,2,2],[3,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,1,2,2],[2,4,3,2],[1,1,1,0]],[[1,0,2,0],[2,1,2,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,3],[1,1,1,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,2,3,3],[0,3,2,1],[1,0,2,0]],[[1,2,1,1],[2,2,4,2],[0,3,2,1],[1,0,2,0]],[[1,2,1,2],[2,2,3,2],[0,3,2,1],[1,0,2,0]],[[1,2,1,1],[2,2,3,3],[0,3,2,1],[1,0,1,1]],[[1,2,1,1],[2,2,4,2],[0,3,2,1],[1,0,1,1]],[[1,2,1,2],[2,2,3,2],[0,3,2,1],[1,0,1,1]],[[2,0,2,0],[2,1,2,2],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[3,1,2,2],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,1,2,2],[3,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,1,2,2],[2,4,3,2],[1,2,0,0]],[[1,0,2,0],[2,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,2,3,3],[0,3,2,1],[0,2,1,0]],[[1,2,1,1],[2,2,4,2],[0,3,2,1],[0,2,1,0]],[[1,2,1,2],[2,2,3,2],[0,3,2,1],[0,2,1,0]],[[1,2,1,1],[2,2,3,3],[0,3,2,1],[0,2,0,1]],[[1,2,1,1],[2,2,4,2],[0,3,2,1],[0,2,0,1]],[[1,2,1,2],[2,2,3,2],[0,3,2,1],[0,2,0,1]],[[1,2,1,1],[2,2,3,3],[0,3,2,1],[0,1,2,0]],[[1,2,1,1],[2,2,4,2],[0,3,2,1],[0,1,2,0]],[[1,2,1,2],[2,2,3,2],[0,3,2,1],[0,1,2,0]],[[1,2,1,1],[2,2,3,3],[0,3,2,1],[0,1,1,1]],[[1,2,1,1],[2,2,4,2],[0,3,2,1],[0,1,1,1]],[[1,2,1,2],[2,2,3,2],[0,3,2,1],[0,1,1,1]],[[1,2,1,1],[3,2,3,2],[0,3,2,0],[1,2,1,0]],[[1,3,1,1],[2,2,3,2],[0,3,2,0],[1,2,1,0]],[[1,0,2,0],[2,1,3,0],[1,2,4,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,0],[1,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,0],[1,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,0],[1,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,0],[1,2,3,2],[1,2,2,2]],[[1,0,2,0],[2,1,3,0],[1,4,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,0],[1,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,0],[1,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,0],[1,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,0],[1,3,2,2],[1,2,2,2]],[[1,0,2,0],[2,1,3,0],[1,4,3,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,0],[1,3,4,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,0],[1,3,3,2],[1,1,3,1]],[[1,0,2,0],[2,1,3,0],[1,3,3,2],[1,1,2,2]],[[1,0,2,0],[2,1,3,0],[1,4,3,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,0],[1,3,4,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,0],[1,3,3,2],[2,2,1,1]],[[1,0,2,0],[2,1,3,0],[1,3,3,2],[1,3,1,1]],[[2,0,2,0],[2,1,3,0],[2,1,3,2],[1,2,2,1]],[[1,0,2,0],[3,1,3,0],[2,1,3,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,0],[3,1,3,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,1,4,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,1,3,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,1,3,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,0],[2,1,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,0],[2,1,3,2],[1,2,2,2]],[[2,0,2,0],[2,1,3,0],[2,2,2,2],[1,2,2,1]],[[1,0,2,0],[3,1,3,0],[2,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,0],[3,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,0],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,0],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,1,3,0],[2,2,4,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,2,3,2],[0,3,2,1]],[[1,0,2,0],[2,1,3,0],[2,2,3,2],[0,2,3,1]],[[1,0,2,0],[2,1,3,0],[2,2,3,2],[0,2,2,2]],[[2,0,2,0],[2,1,3,0],[2,2,3,2],[1,2,1,1]],[[1,0,2,0],[3,1,3,0],[2,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,0],[3,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,0],[2,2,3,2],[2,2,1,1]],[[1,0,2,0],[2,1,3,0],[2,2,3,2],[1,3,1,1]],[[1,0,2,0],[2,1,3,0],[3,3,2,1],[1,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,2,1],[1,2,3,1]],[[2,0,2,0],[2,1,3,0],[2,3,2,2],[0,2,2,1]],[[1,0,2,0],[3,1,3,0],[2,3,2,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,0],[3,3,2,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,4,2,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,2,2],[0,3,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,2,2],[0,2,3,1]],[[1,0,2,0],[2,1,3,0],[2,3,2,2],[0,2,2,2]],[[2,0,2,0],[2,1,3,0],[2,3,2,2],[1,1,2,1]],[[1,0,2,0],[3,1,3,0],[2,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,0],[3,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,0],[2,4,2,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,2,2],[2,1,2,1]],[[1,0,2,0],[2,1,3,0],[3,3,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,0],[2,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,1,3,0],[2,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,1,3,0],[3,3,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,0],[2,2,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,0],[1,3,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,0],[1,2,3,1]],[[1,0,2,0],[2,1,3,0],[3,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,1],[1,3,1,1]],[[2,0,2,0],[2,1,3,0],[2,3,3,2],[0,1,2,1]],[[1,0,2,0],[3,1,3,0],[2,3,3,2],[0,1,2,1]],[[1,0,2,0],[2,1,3,0],[3,3,3,2],[0,1,2,1]],[[1,0,2,0],[2,1,3,0],[2,4,3,2],[0,1,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,4,2],[0,1,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,2],[0,1,3,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,2],[0,1,2,2]],[[2,0,2,0],[2,1,3,0],[2,3,3,2],[0,2,1,1]],[[1,0,2,0],[3,1,3,0],[2,3,3,2],[0,2,1,1]],[[1,0,2,0],[2,1,3,0],[3,3,3,2],[0,2,1,1]],[[1,0,2,0],[2,1,3,0],[2,4,3,2],[0,2,1,1]],[[1,0,2,0],[2,1,3,0],[2,3,4,2],[0,2,1,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,2],[0,3,1,1]],[[2,0,2,0],[2,1,3,0],[2,3,3,2],[1,0,2,1]],[[1,0,2,0],[3,1,3,0],[2,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,1,3,0],[3,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,1,3,0],[2,4,3,2],[1,0,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,2],[2,0,2,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,2],[1,0,3,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,2],[1,0,2,2]],[[2,0,2,0],[2,1,3,0],[2,3,3,2],[1,1,1,1]],[[1,0,2,0],[3,1,3,0],[2,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,1,3,0],[3,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,1,3,0],[2,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,1,3,0],[2,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,1,3,0],[2,3,3,2],[2,1,1,1]],[[1,0,2,0],[2,1,3,0],[3,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,3,0],[2,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,1,3,0],[2,3,3,2],[1,3,1,0]],[[2,2,1,1],[2,2,3,2],[0,3,2,0],[1,2,1,0]],[[1,2,1,1],[3,2,3,2],[0,3,2,0],[1,2,0,1]],[[1,3,1,1],[2,2,3,2],[0,3,2,0],[1,2,0,1]],[[2,2,1,1],[2,2,3,2],[0,3,2,0],[1,2,0,1]],[[1,0,2,0],[2,1,3,1],[1,1,3,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,1,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,1],[1,1,3,2],[1,2,2,2]],[[1,0,2,0],[2,1,3,1],[1,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,1],[1,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,1],[1,2,2,2],[1,2,2,2]],[[1,0,3,0],[2,1,3,1],[1,2,3,1],[1,2,2,1]],[[1,0,2,0],[2,1,4,1],[1,2,3,1],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,1,3,1],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,1,3,1],[1,2,3,1],[1,2,2,2]],[[1,0,3,0],[2,1,3,1],[1,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,1,4,1],[1,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,1],[1,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,1],[1,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,1,3,1],[1,2,3,2],[1,2,1,2]],[[1,0,3,0],[2,1,3,1],[1,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,4,1],[1,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,1],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,1],[1,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,1,3,1],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,1,3,1],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,1,3,1],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[2,1,3,1],[1,4,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,1,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,1],[1,3,1,2],[1,2,2,2]],[[1,0,2,0],[2,1,3,1],[1,4,2,1],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,1,3,1],[1,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,1,3,1],[1,3,2,3],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,2,2],[1,1,3,1]],[[1,0,2,0],[2,1,3,1],[1,3,2,2],[1,1,2,2]],[[1,0,2,0],[2,1,3,1],[1,4,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,1],[1,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,1,3,1],[1,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,1,3,1],[1,3,2,2],[1,2,3,0]],[[1,0,2,0],[2,1,3,1],[1,4,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,0],[2,2,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,0],[1,3,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,0],[1,2,3,1]],[[1,0,3,0],[2,1,3,1],[1,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,1,4,1],[1,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[1,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,1],[1,1,2,2]],[[1,0,3,0],[2,1,3,1],[1,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,4,1],[1,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,3,1],[1,4,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,3,1],[1,3,4,1],[1,2,1,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,1,3,1],[1,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,3],[1,0,2,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,2],[1,0,2,2]],[[1,0,3,0],[2,1,3,1],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,1,4,1],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,1,3,1],[1,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,1,3,1],[1,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,3],[1,1,1,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,2],[1,1,1,2]],[[1,0,3,0],[2,1,3,1],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,1,4,1],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,1,3,1],[1,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,1,3,1],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,1,3,1],[1,3,3,3],[1,1,2,0]],[[1,0,2,0],[2,1,3,1],[1,3,3,2],[1,1,3,0]],[[1,0,3,0],[2,1,3,1],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,4,1],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,3,1],[1,4,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,3,1],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,3],[1,2,0,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,1,3,1],[1,3,3,2],[1,2,0,2]],[[1,0,3,0],[2,1,3,1],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,4,1],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,3,1],[1,4,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,3,1],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,1,3,1],[1,3,3,3],[1,2,1,0]],[[1,0,2,0],[2,1,3,1],[1,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,1,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[3,2,3,2],[0,3,2,0],[1,1,2,0]],[[1,3,1,1],[2,2,3,2],[0,3,2,0],[1,1,2,0]],[[2,2,1,1],[2,2,3,2],[0,3,2,0],[1,1,2,0]],[[1,2,1,1],[2,2,3,3],[0,3,2,0],[1,0,2,1]],[[1,2,1,1],[2,2,4,2],[0,3,2,0],[1,0,2,1]],[[1,2,1,2],[2,2,3,2],[0,3,2,0],[1,0,2,1]],[[1,0,2,0],[2,1,3,1],[2,0,3,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,0,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,1],[2,0,3,2],[1,2,2,2]],[[2,0,2,0],[2,1,3,1],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[3,1,3,1],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[3,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,1,2,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,1,2,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,1,2,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,1],[2,1,2,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,1],[2,1,2,2],[1,2,2,2]],[[2,0,2,0],[2,1,3,1],[2,1,3,1],[1,2,2,1]],[[1,0,3,0],[2,1,3,1],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[3,1,3,1],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,1,4,1],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[3,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[2,1,3,1],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[2,1,3,1],[2,1,3,1],[1,2,2,2]],[[1,0,2,0],[2,1,3,1],[2,1,3,3],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,1,3,2],[0,2,3,1]],[[1,0,2,0],[2,1,3,1],[2,1,3,2],[0,2,2,2]],[[1,0,3,0],[2,1,3,1],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,1,4,1],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,1],[2,1,4,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,1],[2,1,3,3],[1,2,1,1]],[[1,0,2,0],[2,1,3,1],[2,1,3,2],[1,2,1,2]],[[2,0,2,0],[2,1,3,1],[2,1,3,2],[1,2,2,0]],[[1,0,3,0],[2,1,3,1],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[3,1,3,1],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,4,1],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,1],[3,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,1],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,1],[2,1,3,3],[1,2,2,0]],[[1,0,2,0],[2,1,3,1],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[2,1,3,1],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[2,1,3,1],[2,1,3,2],[1,2,3,0]],[[2,0,2,0],[2,1,3,1],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[3,1,3,1],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[3,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,1,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,1,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,1,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,1,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,1],[2,2,1,2],[1,2,2,2]],[[2,0,2,0],[2,1,3,1],[2,2,2,1],[1,2,2,1]],[[1,0,2,0],[3,1,3,1],[2,2,2,1],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[3,2,2,1],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,2,1],[2,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,2,1],[1,3,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,2,1],[1,2,3,1]],[[1,0,2,0],[2,1,3,1],[2,2,2,1],[1,2,2,2]],[[1,0,2,0],[2,1,3,1],[2,2,2,3],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,2,2],[0,3,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,2,2],[0,2,3,1]],[[1,0,2,0],[2,1,3,1],[2,2,2,2],[0,2,2,2]],[[2,0,2,0],[2,1,3,1],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[3,1,3,1],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,1],[3,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,1],[2,2,2,2],[2,2,2,0]],[[1,0,2,0],[2,1,3,1],[2,2,2,2],[1,3,2,0]],[[1,0,2,0],[2,1,3,1],[2,2,2,2],[1,2,3,0]],[[2,0,2,0],[2,1,3,1],[2,2,3,0],[1,2,2,1]],[[1,0,2,0],[3,1,3,1],[2,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[3,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,0],[2,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,0],[1,3,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,0],[1,2,3,1]],[[1,0,3,0],[2,1,3,1],[2,2,3,1],[0,2,2,1]],[[1,0,2,0],[2,1,4,1],[2,2,3,1],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,1],[0,2,2,2]],[[2,0,2,0],[2,1,3,1],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[3,1,3,1],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,3,1],[3,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,1],[2,2,1,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,1],[1,3,1,1]],[[1,0,3,0],[2,1,3,1],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,1,4,1],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,1,3,1],[2,2,4,2],[0,2,1,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,3],[0,2,1,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,2],[0,2,1,2]],[[1,0,3,0],[2,1,3,1],[2,2,3,2],[0,2,2,0]],[[1,0,2,0],[2,1,4,1],[2,2,3,2],[0,2,2,0]],[[1,0,2,0],[2,1,3,1],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,1,3,1],[2,2,3,3],[0,2,2,0]],[[1,0,2,0],[2,1,3,1],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[2,1,3,1],[2,2,3,2],[0,2,3,0]],[[2,0,2,0],[2,1,3,1],[2,2,3,2],[1,2,0,1]],[[1,0,2,0],[3,1,3,1],[2,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,3,1],[3,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,2],[2,2,0,1]],[[1,0,2,0],[2,1,3,1],[2,2,3,2],[1,3,0,1]],[[2,0,2,0],[2,1,3,1],[2,2,3,2],[1,2,1,0]],[[1,0,2,0],[3,1,3,1],[2,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,3,1],[3,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,3,1],[2,2,3,2],[2,2,1,0]],[[1,0,2,0],[2,1,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,3],[0,3,2,0],[0,2,1,1]],[[1,2,1,1],[2,2,4,2],[0,3,2,0],[0,2,1,1]],[[1,2,1,2],[2,2,3,2],[0,3,2,0],[0,2,1,1]],[[1,2,1,1],[2,2,3,3],[0,3,2,0],[0,1,2,1]],[[1,2,1,1],[2,2,4,2],[0,3,2,0],[0,1,2,1]],[[1,2,1,2],[2,2,3,2],[0,3,2,0],[0,1,2,1]],[[2,0,2,0],[2,1,3,1],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[3,1,3,1],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[3,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,4,1,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,1,3],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,1,2],[0,3,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,1,2],[0,2,3,1]],[[1,0,2,0],[2,1,3,1],[2,3,1,2],[0,2,2,2]],[[2,0,2,0],[2,1,3,1],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[3,1,3,1],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[3,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[2,4,1,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,1,2],[2,1,2,1]],[[2,0,2,0],[2,1,3,1],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[3,1,3,1],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[3,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,4,2,1],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,2,1],[0,3,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,2,1],[0,2,3,1]],[[1,0,2,0],[2,1,3,1],[2,3,2,1],[0,2,2,2]],[[2,0,2,0],[2,1,3,1],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[3,1,3,1],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[3,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[2,4,2,1],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,2,1],[2,1,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,1,3,1],[2,3,2,2],[0,1,2,2]],[[2,0,2,0],[2,1,3,1],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[3,1,3,1],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,1,3,1],[3,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,1,3,1],[2,4,2,2],[0,2,2,0]],[[1,0,2,0],[2,1,3,1],[2,3,2,2],[0,3,2,0]],[[1,0,2,0],[2,1,3,1],[2,3,2,2],[0,2,3,0]],[[1,0,2,0],[2,1,3,1],[2,3,2,3],[1,0,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,2,2],[1,0,3,1]],[[1,0,2,0],[2,1,3,1],[2,3,2,2],[1,0,2,2]],[[2,0,2,0],[2,1,3,1],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[3,1,3,1],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,1,3,1],[3,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,1,3,1],[2,4,2,2],[1,1,2,0]],[[1,0,2,0],[2,1,3,1],[2,3,2,2],[2,1,2,0]],[[2,0,2,0],[2,1,3,1],[2,3,3,0],[0,2,2,1]],[[1,0,2,0],[3,1,3,1],[2,3,3,0],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[3,3,3,0],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,4,3,0],[0,2,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,0],[0,3,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,0],[0,2,3,1]],[[2,0,2,0],[2,1,3,1],[2,3,3,0],[1,1,2,1]],[[1,0,2,0],[3,1,3,1],[2,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[3,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[2,4,3,0],[1,1,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,0],[2,1,2,1]],[[2,0,2,0],[2,1,3,1],[2,3,3,1],[0,1,2,1]],[[1,0,3,0],[2,1,3,1],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[3,1,3,1],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,1,4,1],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,1,3,1],[3,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,1,3,1],[2,4,3,1],[0,1,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,1],[0,1,2,2]],[[2,0,2,0],[2,1,3,1],[2,3,3,1],[0,2,1,1]],[[1,0,3,0],[2,1,3,1],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[3,1,3,1],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,1,4,1],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,1,3,1],[3,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,1,3,1],[2,4,3,1],[0,2,1,1]],[[1,0,2,0],[2,1,3,1],[2,3,4,1],[0,2,1,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,1],[0,3,1,1]],[[2,0,2,0],[2,1,3,1],[2,3,3,1],[1,0,2,1]],[[1,0,3,0],[2,1,3,1],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[3,1,3,1],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,1,4,1],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,1,3,1],[3,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,1,3,1],[2,4,3,1],[1,0,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,1],[2,0,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,1],[1,0,2,2]],[[2,0,2,0],[2,1,3,1],[2,3,3,1],[1,1,1,1]],[[1,0,3,0],[2,1,3,1],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[3,1,3,1],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,1,4,1],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,1,3,1],[3,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,1,3,1],[2,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,1,3,1],[2,3,4,1],[1,1,1,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,1],[2,1,1,1]],[[2,0,2,0],[2,1,3,1],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[3,1,3,1],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,1,3,1],[3,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,1,3,1],[2,4,3,1],[1,2,0,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,1],[2,2,0,1]],[[1,0,3,0],[2,1,3,1],[2,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,1,4,1],[2,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[0,0,2,2]],[[2,0,2,0],[2,1,3,1],[2,3,3,2],[0,1,1,1]],[[1,0,3,0],[2,1,3,1],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[3,1,3,1],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,1,4,1],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,1,3,1],[3,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,1,3,1],[2,4,3,2],[0,1,1,1]],[[1,0,2,0],[2,1,3,1],[2,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[0,1,1,2]],[[2,0,2,0],[2,1,3,1],[2,3,3,2],[0,1,2,0]],[[1,0,3,0],[2,1,3,1],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[3,1,3,1],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,1,4,1],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,1,3,1],[3,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,1,3,1],[2,4,3,2],[0,1,2,0]],[[1,0,2,0],[2,1,3,1],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,1,3,1],[2,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[0,1,3,0]],[[2,0,2,0],[2,1,3,1],[2,3,3,2],[0,2,0,1]],[[1,0,3,0],[2,1,3,1],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[3,1,3,1],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,1,4,1],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,1,3,1],[3,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,1,3,1],[2,4,3,2],[0,2,0,1]],[[1,0,2,0],[2,1,3,1],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[0,3,0,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[0,2,0,2]],[[2,0,2,0],[2,1,3,1],[2,3,3,2],[0,2,1,0]],[[1,0,3,0],[2,1,3,1],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[3,1,3,1],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,1,4,1],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,1,3,1],[3,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,1,3,1],[2,4,3,2],[0,2,1,0]],[[1,0,2,0],[2,1,3,1],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,1,3,1],[2,3,3,3],[0,2,1,0]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,2,3,3],[0,3,1,2],[1,1,1,0]],[[1,2,1,1],[2,2,4,2],[0,3,1,2],[1,1,1,0]],[[1,2,1,2],[2,2,3,2],[0,3,1,2],[1,1,1,0]],[[1,2,1,1],[2,2,3,2],[0,3,1,3],[1,1,0,1]],[[1,2,1,1],[2,2,3,3],[0,3,1,2],[1,1,0,1]],[[2,0,2,0],[2,1,3,1],[2,3,3,2],[1,0,1,1]],[[1,0,3,0],[2,1,3,1],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[3,1,3,1],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,1,4,1],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,1,3,1],[3,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,1,3,1],[2,4,3,2],[1,0,1,1]],[[1,0,2,0],[2,1,3,1],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,3],[1,0,1,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[2,0,1,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[1,0,1,2]],[[2,0,2,0],[2,1,3,1],[2,3,3,2],[1,0,2,0]],[[1,0,3,0],[2,1,3,1],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[3,1,3,1],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,1,4,1],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,1,3,1],[3,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,1,3,1],[2,4,3,2],[1,0,2,0]],[[1,0,2,0],[2,1,3,1],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,1,3,1],[2,3,3,3],[1,0,2,0]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[2,0,2,0]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[1,0,3,0]],[[2,0,2,0],[2,1,3,1],[2,3,3,2],[1,1,0,1]],[[1,0,3,0],[2,1,3,1],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[3,1,3,1],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,1,4,1],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,1,3,1],[3,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,1,3,1],[2,4,3,2],[1,1,0,1]],[[1,0,2,0],[2,1,3,1],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,3],[1,1,0,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[2,1,0,1]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[1,1,0,2]],[[2,0,2,0],[2,1,3,1],[2,3,3,2],[1,1,1,0]],[[1,0,3,0],[2,1,3,1],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[3,1,3,1],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,1,4,1],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,1,3,1],[3,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,1,3,1],[2,4,3,2],[1,1,1,0]],[[1,0,2,0],[2,1,3,1],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[2,1,3,1],[2,3,3,3],[1,1,1,0]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,2,4,2],[0,3,1,2],[1,1,0,1]],[[1,2,1,2],[2,2,3,2],[0,3,1,2],[1,1,0,1]],[[1,2,1,1],[2,2,3,2],[0,3,1,3],[1,0,2,0]],[[1,2,1,1],[2,2,3,3],[0,3,1,2],[1,0,2,0]],[[1,2,1,1],[2,2,4,2],[0,3,1,2],[1,0,2,0]],[[1,2,1,2],[2,2,3,2],[0,3,1,2],[1,0,2,0]],[[2,0,2,0],[2,1,3,1],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[3,1,3,1],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,1,3,1],[3,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,1,3,1],[2,4,3,2],[1,2,0,0]],[[1,0,2,0],[2,1,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,2,3,2],[0,3,1,2],[1,0,1,2]],[[1,2,1,1],[2,2,3,2],[0,3,1,3],[1,0,1,1]],[[1,2,1,1],[2,2,3,3],[0,3,1,2],[1,0,1,1]],[[1,2,1,1],[2,2,4,2],[0,3,1,2],[1,0,1,1]],[[1,2,1,2],[2,2,3,2],[0,3,1,2],[1,0,1,1]],[[1,2,1,1],[2,2,3,2],[0,3,1,3],[0,2,1,0]],[[1,2,1,1],[2,2,3,3],[0,3,1,2],[0,2,1,0]],[[1,2,1,1],[2,2,4,2],[0,3,1,2],[0,2,1,0]],[[1,2,1,2],[2,2,3,2],[0,3,1,2],[0,2,1,0]],[[1,2,1,1],[2,2,3,2],[0,3,1,2],[0,2,0,2]],[[1,2,1,1],[2,2,3,2],[0,3,1,3],[0,2,0,1]],[[1,2,1,1],[2,2,3,3],[0,3,1,2],[0,2,0,1]],[[1,2,1,1],[2,2,4,2],[0,3,1,2],[0,2,0,1]],[[1,2,1,2],[2,2,3,2],[0,3,1,2],[0,2,0,1]],[[1,2,1,1],[2,2,3,2],[0,3,1,3],[0,1,2,0]],[[1,2,1,1],[2,2,3,3],[0,3,1,2],[0,1,2,0]],[[1,2,1,1],[2,2,4,2],[0,3,1,2],[0,1,2,0]],[[1,2,1,2],[2,2,3,2],[0,3,1,2],[0,1,2,0]],[[1,2,1,1],[2,2,3,2],[0,3,1,2],[0,1,1,2]],[[1,0,2,0],[2,1,3,3],[0,1,3,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[0,1,3,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[0,1,3,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,2],[0,1,3,2],[1,2,2,2]],[[1,0,2,0],[2,1,3,3],[0,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[0,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[0,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,2],[0,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,2],[0,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,1,3,2],[0,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[0,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,1,3,2],[0,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,1,3,2],[0,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,1,3,3],[0,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[0,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[0,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[0,2,3,2],[1,2,1,2]],[[1,0,2,0],[2,1,3,3],[0,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[0,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[0,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[0,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,1,3,2],[0,2,3,2],[1,2,3,0]],[[1,0,2,0],[2,1,3,3],[0,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[0,3,2,3],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[0,3,2,2],[1,1,3,1]],[[1,0,2,0],[2,1,3,2],[0,3,2,2],[1,1,2,2]],[[1,0,2,0],[2,1,3,2],[0,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[0,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,1,3,2],[0,3,3,1],[1,1,2,2]],[[1,0,2,0],[2,1,3,3],[0,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,1,3,2],[0,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,1,3,2],[0,3,3,3],[1,0,2,1]],[[1,0,2,0],[2,1,3,2],[0,3,3,2],[1,0,2,2]],[[1,0,2,0],[2,1,3,3],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,1,3,2],[0,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,1,3,2],[0,3,3,3],[1,1,1,1]],[[1,0,2,0],[2,1,3,2],[0,3,3,2],[1,1,1,2]],[[1,0,2,0],[2,1,3,3],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,1,3,2],[0,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,1,3,2],[0,3,3,3],[1,1,2,0]],[[1,0,2,0],[2,1,3,2],[0,3,3,2],[1,1,3,0]],[[1,0,2,0],[2,1,3,3],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[0,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[0,3,3,3],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[0,3,3,2],[1,2,0,2]],[[1,0,2,0],[2,1,3,3],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,1,3,2],[0,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,1,3,2],[0,3,3,3],[1,2,1,0]],[[1,2,1,1],[2,2,3,2],[0,3,1,3],[0,1,1,1]],[[1,2,1,1],[2,2,3,3],[0,3,1,2],[0,1,1,1]],[[1,2,1,1],[2,2,4,2],[0,3,1,2],[0,1,1,1]],[[1,2,1,2],[2,2,3,2],[0,3,1,2],[0,1,1,1]],[[1,0,2,0],[2,1,3,3],[1,1,3,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,1,3,3],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,1,3,2],[0,2,3,1]],[[1,0,2,0],[2,1,3,2],[1,1,3,2],[0,2,2,2]],[[1,0,3,0],[2,1,3,2],[1,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,4,2],[1,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,3],[1,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,2,1,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,2,1,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,2,1,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,2],[1,2,1,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,2],[1,2,1,2],[1,2,2,2]],[[1,0,2,0],[2,1,3,3],[1,2,2,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,2,2,3],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,2,2,2],[0,2,3,1]],[[1,0,2,0],[2,1,3,2],[1,2,2,2],[0,2,2,2]],[[1,0,3,0],[2,1,3,2],[1,2,2,2],[1,2,1,1]],[[1,0,2,0],[2,1,4,2],[1,2,2,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,3],[1,2,2,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[1,2,2,3],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[1,2,2,2],[1,2,1,2]],[[1,0,3,0],[2,1,3,2],[1,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,4,2],[1,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,3],[1,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[1,2,2,3],[1,2,2,0]],[[1,0,3,0],[2,1,3,2],[1,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,4,2],[1,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,3],[1,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,2,4,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,2,3,0],[2,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,2,3,0],[1,3,2,1]],[[1,0,2,0],[2,1,3,2],[1,2,3,0],[1,2,3,1]],[[1,0,2,0],[2,1,3,2],[1,2,3,0],[1,2,2,2]],[[1,0,2,0],[2,1,3,2],[1,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,1,3,2],[1,2,3,1],[0,2,2,2]],[[1,0,3,0],[2,1,3,2],[1,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,4,2],[1,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,3,3],[1,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[1,2,4,1],[1,2,1,1]],[[1,0,3,0],[2,1,3,2],[1,2,3,1],[1,2,2,0]],[[1,0,2,0],[2,1,4,2],[1,2,3,1],[1,2,2,0]],[[1,0,2,0],[2,1,3,3],[1,2,3,1],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[1,2,4,1],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[1,2,3,1],[2,2,2,0]],[[1,0,2,0],[2,1,3,2],[1,2,3,1],[1,3,2,0]],[[1,0,2,0],[2,1,3,2],[1,2,3,1],[1,2,3,0]],[[1,0,2,0],[2,1,3,3],[1,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,1,3,2],[1,2,4,2],[0,2,1,1]],[[1,0,2,0],[2,1,3,2],[1,2,3,3],[0,2,1,1]],[[1,0,2,0],[2,1,3,2],[1,2,3,2],[0,2,1,2]],[[1,0,2,0],[2,1,3,3],[1,2,3,2],[0,2,2,0]],[[1,0,2,0],[2,1,3,2],[1,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,1,3,2],[1,2,3,3],[0,2,2,0]],[[1,0,2,0],[2,1,3,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,2,3,3],[0,3,1,1],[0,2,2,0]],[[1,2,1,1],[2,2,4,2],[0,3,1,1],[0,2,2,0]],[[1,0,3,0],[2,1,3,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,1,4,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,3],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,4,0,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,0,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,0,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,0,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,0,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,2],[1,3,0,2],[1,2,2,2]],[[1,0,3,0],[2,1,3,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,1,4,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,3],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,1,3],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,1,2],[1,1,3,1]],[[1,0,2,0],[2,1,3,2],[1,3,1,2],[1,1,2,2]],[[1,0,2,0],[2,1,3,2],[1,4,2,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,2,0],[2,2,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,2,0],[1,3,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,2,0],[1,2,3,1]],[[1,0,2,0],[2,1,3,2],[1,3,2,0],[1,2,2,2]],[[1,0,2,0],[2,1,3,2],[1,4,2,1],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[1,3,2,1],[2,2,2,0]],[[1,0,2,0],[2,1,3,2],[1,3,2,1],[1,3,2,0]],[[1,0,2,0],[2,1,3,2],[1,3,2,1],[1,2,3,0]],[[1,0,2,0],[2,1,3,3],[1,3,2,2],[0,1,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,1,3,2],[1,3,2,2],[0,1,2,2]],[[1,0,3,0],[2,1,3,2],[1,3,2,2],[1,1,1,1]],[[1,0,2,0],[2,1,4,2],[1,3,2,2],[1,1,1,1]],[[1,0,2,0],[2,1,3,3],[1,3,2,2],[1,1,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,2,3],[1,1,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,2,2],[1,1,1,2]],[[1,0,3,0],[2,1,3,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,1,4,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,1,3,3],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,1,3,2],[1,3,2,3],[1,1,2,0]],[[1,0,3,0],[2,1,3,2],[1,3,2,2],[1,2,0,1]],[[1,0,2,0],[2,1,4,2],[1,3,2,2],[1,2,0,1]],[[1,0,2,0],[2,1,3,3],[1,3,2,2],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[1,3,2,3],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[1,3,2,2],[1,2,0,2]],[[1,0,3,0],[2,1,3,2],[1,3,2,2],[1,2,1,0]],[[1,0,2,0],[2,1,4,2],[1,3,2,2],[1,2,1,0]],[[1,0,2,0],[2,1,3,3],[1,3,2,2],[1,2,1,0]],[[1,0,2,0],[2,1,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,1,2],[2,2,3,2],[0,3,1,1],[0,2,2,0]],[[1,2,1,1],[3,2,3,2],[0,3,1,0],[1,2,2,0]],[[1,3,1,1],[2,2,3,2],[0,3,1,0],[1,2,2,0]],[[1,0,3,0],[2,1,3,2],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,1,4,2],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,1,3,3],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[1,4,3,0],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,4,0],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,0],[1,1,3,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,0],[1,1,2,2]],[[1,0,3,0],[2,1,3,2],[1,3,3,0],[1,2,1,1]],[[1,0,2,0],[2,1,4,2],[1,3,3,0],[1,2,1,1]],[[1,0,2,0],[2,1,3,3],[1,3,3,0],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[1,4,3,0],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,4,0],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,0],[2,2,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,0],[1,3,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,1],[0,1,2,2]],[[1,0,3,0],[2,1,3,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,1,4,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,1,3,3],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,1,3,2],[1,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,4,1],[1,1,1,1]],[[1,0,3,0],[2,1,3,2],[1,3,3,1],[1,1,2,0]],[[1,0,2,0],[2,1,4,2],[1,3,3,1],[1,1,2,0]],[[1,0,2,0],[2,1,3,3],[1,3,3,1],[1,1,2,0]],[[1,0,2,0],[2,1,3,2],[1,4,3,1],[1,1,2,0]],[[1,0,2,0],[2,1,3,2],[1,3,4,1],[1,1,2,0]],[[1,0,2,0],[2,1,3,2],[1,3,3,1],[1,1,3,0]],[[1,0,3,0],[2,1,3,2],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,1,4,2],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,1,3,3],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[1,4,3,1],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[1,3,4,1],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,1],[2,2,0,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,1],[1,3,0,1]],[[1,0,3,0],[2,1,3,2],[1,3,3,1],[1,2,1,0]],[[1,0,2,0],[2,1,4,2],[1,3,3,1],[1,2,1,0]],[[1,0,2,0],[2,1,3,3],[1,3,3,1],[1,2,1,0]],[[1,0,2,0],[2,1,3,2],[1,4,3,1],[1,2,1,0]],[[1,0,2,0],[2,1,3,2],[1,3,4,1],[1,2,1,0]],[[1,0,2,0],[2,1,3,2],[1,3,3,1],[2,2,1,0]],[[1,0,2,0],[2,1,3,2],[1,3,3,1],[1,3,1,0]],[[2,2,1,1],[2,2,3,2],[0,3,1,0],[1,2,2,0]],[[1,2,1,1],[2,2,3,3],[0,3,1,0],[0,2,2,1]],[[1,2,1,1],[2,2,4,2],[0,3,1,0],[0,2,2,1]],[[1,2,1,2],[2,2,3,2],[0,3,1,0],[0,2,2,1]],[[1,0,2,0],[2,1,3,3],[1,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,2],[0,0,2,2]],[[1,0,2,0],[2,1,3,3],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,2],[0,1,1,2]],[[1,0,2,0],[2,1,3,3],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,1,3,2],[1,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,1,3,2],[1,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,1,3,2],[1,3,3,2],[0,1,3,0]],[[1,0,2,0],[2,1,3,3],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,1,3,2],[1,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,2],[0,2,0,2]],[[1,0,2,0],[2,1,3,3],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,1,3,2],[1,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,1,3,2],[1,3,3,3],[0,2,1,0]],[[1,0,2,0],[2,1,3,3],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,4,2],[1,0,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,3],[1,0,1,1]],[[1,0,2,0],[2,1,3,2],[1,3,3,2],[1,0,1,2]],[[1,0,2,0],[2,1,3,3],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,1,3,2],[1,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,1,3,2],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[2,2,3,2],[0,3,0,2],[1,0,2,2]],[[1,2,1,1],[2,2,3,2],[0,3,0,3],[1,0,2,1]],[[1,2,1,1],[2,2,3,3],[0,3,0,2],[1,0,2,1]],[[1,2,1,1],[2,2,4,2],[0,3,0,2],[1,0,2,1]],[[1,2,1,2],[2,2,3,2],[0,3,0,2],[1,0,2,1]],[[1,2,1,1],[2,2,3,2],[0,3,0,3],[0,2,2,0]],[[1,2,1,1],[2,2,3,3],[0,3,0,2],[0,2,2,0]],[[1,2,1,1],[2,2,4,2],[0,3,0,2],[0,2,2,0]],[[1,2,1,2],[2,2,3,2],[0,3,0,2],[0,2,2,0]],[[1,2,1,1],[2,2,3,2],[0,3,0,2],[0,2,1,2]],[[1,2,1,1],[2,2,3,2],[0,3,0,3],[0,2,1,1]],[[1,2,1,1],[2,2,3,3],[0,3,0,2],[0,2,1,1]],[[1,2,1,1],[2,2,4,2],[0,3,0,2],[0,2,1,1]],[[1,2,1,2],[2,2,3,2],[0,3,0,2],[0,2,1,1]],[[1,2,1,1],[2,2,3,2],[0,3,0,2],[0,1,2,2]],[[1,2,1,1],[2,2,3,2],[0,3,0,2],[0,1,3,1]],[[2,0,2,0],[2,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,0,3,0],[2,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[3,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,4,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,3],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[3,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,1,1,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,1,1,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,1,1,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,2],[2,1,1,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,2],[2,1,1,2],[1,2,2,2]],[[1,0,3,0],[2,1,3,2],[2,1,2,2],[1,2,1,1]],[[1,0,2,0],[2,1,4,2],[2,1,2,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,3],[2,1,2,2],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[2,1,2,3],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[2,1,2,2],[1,2,1,2]],[[1,0,3,0],[2,1,3,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,4,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,3],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[2,1,2,3],[1,2,2,0]],[[2,0,2,0],[2,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,0,3,0],[2,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[3,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,4,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,3],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[3,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,1,4,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,1,3,0],[2,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,1,3,0],[1,3,2,1]],[[1,0,2,0],[2,1,3,2],[2,1,3,0],[1,2,3,1]],[[1,0,2,0],[2,1,3,2],[2,1,3,0],[1,2,2,2]],[[1,0,3,0],[2,1,3,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,4,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,3,3],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[2,1,4,1],[1,2,1,1]],[[2,0,2,0],[2,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,0,3,0],[2,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,0],[3,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,0],[2,1,4,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,0],[2,1,3,3],[2,1,3,1],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[3,1,3,1],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[2,1,4,1],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[2,1,3,1],[2,2,2,0]],[[1,0,2,0],[2,1,3,2],[2,1,3,1],[1,3,2,0]],[[1,0,2,0],[2,1,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,1,1],[2,2,3,2],[0,3,0,3],[0,1,2,1]],[[1,2,1,1],[2,2,3,3],[0,3,0,2],[0,1,2,1]],[[1,2,1,1],[2,2,4,2],[0,3,0,2],[0,1,2,1]],[[1,2,1,2],[2,2,3,2],[0,3,0,2],[0,1,2,1]],[[1,2,1,1],[2,2,3,3],[0,3,0,1],[0,2,2,1]],[[1,2,1,1],[2,2,4,2],[0,3,0,1],[0,2,2,1]],[[2,0,2,0],[2,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,0,3,0],[2,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[3,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,1,4,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,3],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[3,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,0,3],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,0,2],[2,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,0,2],[1,3,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,0,2],[1,2,3,1]],[[1,0,2,0],[2,1,3,2],[2,2,0,2],[1,2,2,2]],[[1,0,3,0],[2,1,3,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[2,1,4,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,3],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,1,3],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,1,2],[0,3,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,1,2],[0,2,3,1]],[[1,0,2,0],[2,1,3,2],[2,2,1,2],[0,2,2,2]],[[2,0,2,0],[2,1,3,2],[2,2,2,0],[1,2,2,1]],[[1,0,2,0],[3,1,3,2],[2,2,2,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[3,2,2,0],[1,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,2,0],[2,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,2,0],[1,3,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,2,0],[1,2,3,1]],[[1,0,2,0],[2,1,3,2],[2,2,2,0],[1,2,2,2]],[[2,0,2,0],[2,1,3,2],[2,2,2,1],[1,2,2,0]],[[1,0,2,0],[3,1,3,2],[2,2,2,1],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[3,2,2,1],[1,2,2,0]],[[1,0,2,0],[2,1,3,2],[2,2,2,1],[2,2,2,0]],[[1,0,2,0],[2,1,3,2],[2,2,2,1],[1,3,2,0]],[[1,0,2,0],[2,1,3,2],[2,2,2,1],[1,2,3,0]],[[1,0,3,0],[2,1,3,2],[2,2,2,2],[0,2,1,1]],[[1,0,2,0],[2,1,4,2],[2,2,2,2],[0,2,1,1]],[[1,0,2,0],[2,1,3,3],[2,2,2,2],[0,2,1,1]],[[1,0,2,0],[2,1,3,2],[2,2,2,3],[0,2,1,1]],[[1,0,2,0],[2,1,3,2],[2,2,2,2],[0,2,1,2]],[[1,0,3,0],[2,1,3,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,1,4,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,1,3,3],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,1,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,1,2],[2,2,3,2],[0,3,0,1],[0,2,2,1]],[[1,0,3,0],[2,1,3,2],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[2,1,4,2],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[2,1,3,3],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,4,0],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,3,0],[0,3,2,1]],[[1,0,2,0],[2,1,3,2],[2,2,3,0],[0,2,3,1]],[[1,0,2,0],[2,1,3,2],[2,2,3,0],[0,2,2,2]],[[2,0,2,0],[2,1,3,2],[2,2,3,0],[1,2,1,1]],[[1,0,2,0],[3,1,3,2],[2,2,3,0],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[3,2,3,0],[1,2,1,1]],[[1,0,2,0],[2,1,3,2],[2,2,3,0],[2,2,1,1]],[[1,0,2,0],[2,1,3,2],[2,2,3,0],[1,3,1,1]],[[1,0,3,0],[2,1,3,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,1,4,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,1,3,3],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,1,3,2],[2,2,4,1],[0,2,1,1]],[[1,0,3,0],[2,1,3,2],[2,2,3,1],[0,2,2,0]],[[1,0,2,0],[2,1,4,2],[2,2,3,1],[0,2,2,0]],[[1,0,2,0],[2,1,3,3],[2,2,3,1],[0,2,2,0]],[[1,0,2,0],[2,1,3,2],[2,2,4,1],[0,2,2,0]],[[1,0,2,0],[2,1,3,2],[2,2,3,1],[0,3,2,0]],[[1,0,2,0],[2,1,3,2],[2,2,3,1],[0,2,3,0]],[[2,0,2,0],[2,1,3,2],[2,2,3,1],[1,2,0,1]],[[1,0,2,0],[3,1,3,2],[2,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[3,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[2,2,3,1],[2,2,0,1]],[[1,0,2,0],[2,1,3,2],[2,2,3,1],[1,3,0,1]],[[2,0,2,0],[2,1,3,2],[2,2,3,1],[1,2,1,0]],[[1,0,2,0],[3,1,3,2],[2,2,3,1],[1,2,1,0]],[[1,0,2,0],[2,1,3,2],[3,2,3,1],[1,2,1,0]],[[1,0,2,0],[2,1,3,2],[2,2,3,1],[2,2,1,0]],[[1,0,2,0],[2,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[2,2,3,2],[0,2,3,3],[1,0,0,1]],[[1,2,1,1],[2,2,3,3],[0,2,3,2],[1,0,0,1]],[[1,2,1,1],[2,2,4,2],[0,2,3,2],[1,0,0,1]],[[1,2,1,2],[2,2,3,2],[0,2,3,2],[1,0,0,1]],[[1,2,1,1],[2,2,3,2],[0,2,3,3],[0,1,0,1]],[[1,2,1,1],[2,2,3,3],[0,2,3,2],[0,1,0,1]],[[1,2,1,1],[2,2,4,2],[0,2,3,2],[0,1,0,1]],[[1,2,1,2],[2,2,3,2],[0,2,3,2],[0,1,0,1]],[[2,0,2,0],[2,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,0,3,0],[2,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[3,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,1,4,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,3],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[3,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,4,0,2],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,0,3],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,0,2],[0,3,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,0,2],[0,2,3,1]],[[1,0,2,0],[2,1,3,2],[2,3,0,2],[0,2,2,2]],[[2,0,2,0],[2,1,3,2],[2,3,0,2],[1,1,2,1]],[[1,0,2,0],[3,1,3,2],[2,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[3,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[2,4,0,2],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,0,2],[2,1,2,1]],[[1,0,3,0],[2,1,3,2],[2,3,1,2],[0,1,2,1]],[[1,0,2,0],[2,1,4,2],[2,3,1,2],[0,1,2,1]],[[1,0,2,0],[2,1,3,3],[2,3,1,2],[0,1,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,1,3],[0,1,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,1,2],[0,1,3,1]],[[1,0,2,0],[2,1,3,2],[2,3,1,2],[0,1,2,2]],[[1,0,3,0],[2,1,3,2],[2,3,1,2],[1,0,2,1]],[[1,0,2,0],[2,1,4,2],[2,3,1,2],[1,0,2,1]],[[1,0,2,0],[2,1,3,3],[2,3,1,2],[1,0,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,1,3],[1,0,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,1,2],[1,0,3,1]],[[1,0,2,0],[2,1,3,2],[2,3,1,2],[1,0,2,2]],[[2,0,2,0],[2,1,3,2],[2,3,2,0],[0,2,2,1]],[[1,0,2,0],[3,1,3,2],[2,3,2,0],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[3,3,2,0],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,4,2,0],[0,2,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,0],[0,3,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,0],[0,2,3,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,0],[0,2,2,2]],[[2,0,2,0],[2,1,3,2],[2,3,2,0],[1,1,2,1]],[[1,0,2,0],[3,1,3,2],[2,3,2,0],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[3,3,2,0],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[2,4,2,0],[1,1,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,0],[2,1,2,1]],[[2,0,2,0],[2,1,3,2],[2,3,2,1],[0,2,2,0]],[[1,0,2,0],[3,1,3,2],[2,3,2,1],[0,2,2,0]],[[1,0,2,0],[2,1,3,2],[3,3,2,1],[0,2,2,0]],[[1,0,2,0],[2,1,3,2],[2,4,2,1],[0,2,2,0]],[[1,0,2,0],[2,1,3,2],[2,3,2,1],[0,3,2,0]],[[1,0,2,0],[2,1,3,2],[2,3,2,1],[0,2,3,0]],[[2,0,2,0],[2,1,3,2],[2,3,2,1],[1,1,2,0]],[[1,0,2,0],[3,1,3,2],[2,3,2,1],[1,1,2,0]],[[1,0,2,0],[2,1,3,2],[3,3,2,1],[1,1,2,0]],[[1,0,2,0],[2,1,3,2],[2,4,2,1],[1,1,2,0]],[[1,0,2,0],[2,1,3,2],[2,3,2,1],[2,1,2,0]],[[1,0,3,0],[2,1,3,2],[2,3,2,2],[0,0,2,1]],[[1,0,2,0],[2,1,4,2],[2,3,2,2],[0,0,2,1]],[[1,0,2,0],[2,1,3,3],[2,3,2,2],[0,0,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,3],[0,0,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,2],[0,0,2,2]],[[1,0,3,0],[2,1,3,2],[2,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,1,4,2],[2,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,1,3,3],[2,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,3],[0,1,1,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,2],[0,1,1,2]],[[1,0,3,0],[2,1,3,2],[2,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,1,4,2],[2,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,1,3,3],[2,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,1,3,2],[2,3,2,3],[0,1,2,0]],[[1,0,3,0],[2,1,3,2],[2,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,1,4,2],[2,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,1,3,3],[2,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,3],[0,2,0,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,2],[0,2,0,2]],[[1,0,3,0],[2,1,3,2],[2,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,1,4,2],[2,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,1,3,3],[2,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,1,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,1],[2,2,3,3],[0,2,3,1],[1,1,1,0]],[[1,2,1,1],[2,2,4,2],[0,2,3,1],[1,1,1,0]],[[1,2,1,2],[2,2,3,2],[0,2,3,1],[1,1,1,0]],[[1,2,1,1],[2,2,3,3],[0,2,3,1],[1,1,0,1]],[[1,2,1,1],[2,2,4,2],[0,2,3,1],[1,1,0,1]],[[1,2,1,2],[2,2,3,2],[0,2,3,1],[1,1,0,1]],[[1,0,3,0],[2,1,3,2],[2,3,2,2],[1,0,1,1]],[[1,0,2,0],[2,1,4,2],[2,3,2,2],[1,0,1,1]],[[1,0,2,0],[2,1,3,3],[2,3,2,2],[1,0,1,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,3],[1,0,1,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,2],[1,0,1,2]],[[1,0,3,0],[2,1,3,2],[2,3,2,2],[1,0,2,0]],[[1,0,2,0],[2,1,4,2],[2,3,2,2],[1,0,2,0]],[[1,0,2,0],[2,1,3,3],[2,3,2,2],[1,0,2,0]],[[1,0,2,0],[2,1,3,2],[2,3,2,3],[1,0,2,0]],[[1,0,3,0],[2,1,3,2],[2,3,2,2],[1,1,0,1]],[[1,0,2,0],[2,1,4,2],[2,3,2,2],[1,1,0,1]],[[1,0,2,0],[2,1,3,3],[2,3,2,2],[1,1,0,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,3],[1,1,0,1]],[[1,0,2,0],[2,1,3,2],[2,3,2,2],[1,1,0,2]],[[1,0,3,0],[2,1,3,2],[2,3,2,2],[1,1,1,0]],[[1,0,2,0],[2,1,4,2],[2,3,2,2],[1,1,1,0]],[[1,0,2,0],[2,1,3,3],[2,3,2,2],[1,1,1,0]],[[1,0,2,0],[2,1,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,1],[2,2,3,2],[0,2,4,1],[1,0,2,0]],[[1,2,1,1],[2,2,3,3],[0,2,3,1],[1,0,2,0]],[[1,2,1,1],[2,2,4,2],[0,2,3,1],[1,0,2,0]],[[1,2,1,2],[2,2,3,2],[0,2,3,1],[1,0,2,0]],[[1,2,1,1],[2,2,3,2],[0,2,4,1],[1,0,1,1]],[[1,2,1,1],[2,2,3,3],[0,2,3,1],[1,0,1,1]],[[1,2,1,1],[2,2,4,2],[0,2,3,1],[1,0,1,1]],[[1,2,1,2],[2,2,3,2],[0,2,3,1],[1,0,1,1]],[[1,2,1,1],[2,2,3,2],[0,2,4,1],[0,2,1,0]],[[1,2,1,1],[2,2,3,3],[0,2,3,1],[0,2,1,0]],[[1,2,1,1],[2,2,4,2],[0,2,3,1],[0,2,1,0]],[[1,2,1,2],[2,2,3,2],[0,2,3,1],[0,2,1,0]],[[1,2,1,1],[2,2,3,2],[0,2,4,1],[0,2,0,1]],[[1,2,1,1],[2,2,3,3],[0,2,3,1],[0,2,0,1]],[[1,2,1,1],[2,2,4,2],[0,2,3,1],[0,2,0,1]],[[1,2,1,2],[2,2,3,2],[0,2,3,1],[0,2,0,1]],[[1,2,1,1],[2,2,3,2],[0,2,3,1],[0,1,3,0]],[[1,2,1,1],[2,2,3,2],[0,2,4,1],[0,1,2,0]],[[1,2,1,1],[2,2,3,3],[0,2,3,1],[0,1,2,0]],[[1,2,1,1],[2,2,4,2],[0,2,3,1],[0,1,2,0]],[[1,2,1,2],[2,2,3,2],[0,2,3,1],[0,1,2,0]],[[1,2,1,1],[2,2,3,2],[0,2,4,1],[0,1,1,1]],[[1,2,1,1],[2,2,3,3],[0,2,3,1],[0,1,1,1]],[[1,2,1,1],[2,2,4,2],[0,2,3,1],[0,1,1,1]],[[2,0,2,0],[2,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,3,0],[2,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,0],[3,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,1,4,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,1,3,3],[2,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,1,3,2],[3,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,1,3,2],[2,4,3,0],[0,1,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,4,0],[0,1,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,0],[0,1,3,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,0],[0,1,2,2]],[[2,0,2,0],[2,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,0,3,0],[2,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,0],[3,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,1,4,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,1,3,3],[2,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,1,3,2],[3,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,1,3,2],[2,4,3,0],[0,2,1,1]],[[1,0,2,0],[2,1,3,2],[2,3,4,0],[0,2,1,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,0],[0,3,1,1]],[[2,0,2,0],[2,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,0,3,0],[2,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,0],[3,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,0],[2,1,4,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,0],[2,1,3,3],[2,3,3,0],[1,0,2,1]],[[1,0,2,0],[2,1,3,2],[3,3,3,0],[1,0,2,1]],[[1,0,2,0],[2,1,3,2],[2,4,3,0],[1,0,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,4,0],[1,0,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,0],[2,0,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,0],[1,0,3,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,0],[1,0,2,2]],[[2,0,2,0],[2,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,0,3,0],[2,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,0],[3,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,0],[2,1,4,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,0],[2,1,3,3],[2,3,3,0],[1,1,1,1]],[[1,0,2,0],[2,1,3,2],[3,3,3,0],[1,1,1,1]],[[1,0,2,0],[2,1,3,2],[2,4,3,0],[1,1,1,1]],[[1,0,2,0],[2,1,3,2],[2,3,4,0],[1,1,1,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,0],[2,1,1,1]],[[2,0,2,0],[2,1,3,2],[2,3,3,0],[1,2,0,1]],[[1,0,2,0],[3,1,3,2],[2,3,3,0],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[3,3,3,0],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[2,4,3,0],[1,2,0,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,2],[2,2,3,2],[0,2,3,1],[0,1,1,1]],[[1,2,1,1],[2,2,3,2],[0,2,4,1],[0,0,2,1]],[[1,2,1,1],[2,2,3,3],[0,2,3,1],[0,0,2,1]],[[1,2,1,1],[2,2,4,2],[0,2,3,1],[0,0,2,1]],[[1,2,1,2],[2,2,3,2],[0,2,3,1],[0,0,2,1]],[[1,0,3,0],[2,1,3,2],[2,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,1,4,2],[2,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,1,3,3],[2,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,1,3,2],[2,3,4,1],[0,0,2,1]],[[2,0,2,0],[2,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,0,3,0],[2,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,0],[3,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,1,4,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,1,3,3],[2,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,1,3,2],[3,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,1,3,2],[2,4,3,1],[0,1,1,1]],[[1,0,2,0],[2,1,3,2],[2,3,4,1],[0,1,1,1]],[[2,0,2,0],[2,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,0,3,0],[2,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,0],[3,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,1,4,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,1,3,3],[2,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,1,3,2],[3,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,1,3,2],[2,4,3,1],[0,1,2,0]],[[1,0,2,0],[2,1,3,2],[2,3,4,1],[0,1,2,0]],[[1,0,2,0],[2,1,3,2],[2,3,3,1],[0,1,3,0]],[[2,0,2,0],[2,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,0,3,0],[2,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,0],[3,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,1,4,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,1,3,3],[2,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,1,3,2],[3,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,1,3,2],[2,4,3,1],[0,2,0,1]],[[1,0,2,0],[2,1,3,2],[2,3,4,1],[0,2,0,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,1],[0,3,0,1]],[[2,0,2,0],[2,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,0,3,0],[2,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,0],[3,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,1,4,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,1,3,3],[2,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,1,3,2],[3,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,1,3,2],[2,4,3,1],[0,2,1,0]],[[1,0,2,0],[2,1,3,2],[2,3,4,1],[0,2,1,0]],[[1,0,2,0],[2,1,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[3,2,3,2],[0,2,3,0],[1,2,1,0]],[[1,3,1,1],[2,2,3,2],[0,2,3,0],[1,2,1,0]],[[2,2,1,1],[2,2,3,2],[0,2,3,0],[1,2,1,0]],[[1,2,1,1],[3,2,3,2],[0,2,3,0],[1,2,0,1]],[[1,3,1,1],[2,2,3,2],[0,2,3,0],[1,2,0,1]],[[2,2,1,1],[2,2,3,2],[0,2,3,0],[1,2,0,1]],[[2,0,2,0],[2,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,0,3,0],[2,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[3,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,1,4,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,1,3,3],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,1,3,2],[3,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,1,3,2],[2,4,3,1],[1,0,1,1]],[[1,0,2,0],[2,1,3,2],[2,3,4,1],[1,0,1,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,1],[2,0,1,1]],[[2,0,2,0],[2,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,0,3,0],[2,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,0],[3,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,0],[2,1,4,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,0],[2,1,3,3],[2,3,3,1],[1,0,2,0]],[[1,0,2,0],[2,1,3,2],[3,3,3,1],[1,0,2,0]],[[1,0,2,0],[2,1,3,2],[2,4,3,1],[1,0,2,0]],[[1,0,2,0],[2,1,3,2],[2,3,4,1],[1,0,2,0]],[[1,0,2,0],[2,1,3,2],[2,3,3,1],[2,0,2,0]],[[1,0,2,0],[2,1,3,2],[2,3,3,1],[1,0,3,0]],[[2,0,2,0],[2,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,0,3,0],[2,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,0],[3,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,0],[2,1,4,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,0],[2,1,3,3],[2,3,3,1],[1,1,0,1]],[[1,0,2,0],[2,1,3,2],[3,3,3,1],[1,1,0,1]],[[1,0,2,0],[2,1,3,2],[2,4,3,1],[1,1,0,1]],[[1,0,2,0],[2,1,3,2],[2,3,4,1],[1,1,0,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,1],[2,1,0,1]],[[2,0,2,0],[2,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,0,3,0],[2,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,0],[3,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,0],[2,1,4,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,0],[2,1,3,3],[2,3,3,1],[1,1,1,0]],[[1,0,2,0],[2,1,3,2],[3,3,3,1],[1,1,1,0]],[[1,0,2,0],[2,1,3,2],[2,4,3,1],[1,1,1,0]],[[1,0,2,0],[2,1,3,2],[2,3,4,1],[1,1,1,0]],[[1,0,2,0],[2,1,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[3,2,3,2],[0,2,3,0],[1,1,2,0]],[[1,3,1,1],[2,2,3,2],[0,2,3,0],[1,1,2,0]],[[2,2,1,1],[2,2,3,2],[0,2,3,0],[1,1,2,0]],[[1,2,1,1],[2,2,3,2],[0,2,4,0],[1,0,2,1]],[[2,0,2,0],[2,1,3,2],[2,3,3,1],[1,2,0,0]],[[1,0,2,0],[3,1,3,2],[2,3,3,1],[1,2,0,0]],[[1,0,2,0],[2,1,3,2],[3,3,3,1],[1,2,0,0]],[[1,0,2,0],[2,1,3,2],[2,4,3,1],[1,2,0,0]],[[1,0,2,0],[2,1,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[2,2,3,3],[0,2,3,0],[1,0,2,1]],[[1,2,1,1],[2,2,4,2],[0,2,3,0],[1,0,2,1]],[[1,2,1,2],[2,2,3,2],[0,2,3,0],[1,0,2,1]],[[1,2,1,1],[2,2,3,2],[0,2,4,0],[0,2,1,1]],[[1,2,1,1],[2,2,3,3],[0,2,3,0],[0,2,1,1]],[[1,2,1,1],[2,2,4,2],[0,2,3,0],[0,2,1,1]],[[1,2,1,2],[2,2,3,2],[0,2,3,0],[0,2,1,1]],[[1,2,1,1],[2,2,3,2],[0,2,3,0],[0,1,2,2]],[[1,2,1,1],[2,2,3,2],[0,2,3,0],[0,1,3,1]],[[1,2,1,1],[2,2,3,2],[0,2,4,0],[0,1,2,1]],[[1,2,1,1],[2,2,3,3],[0,2,3,0],[0,1,2,1]],[[1,2,1,1],[2,2,4,2],[0,2,3,0],[0,1,2,1]],[[1,2,1,2],[2,2,3,2],[0,2,3,0],[0,1,2,1]],[[1,0,3,0],[2,1,3,2],[2,3,3,2],[0,1,0,1]],[[1,0,2,0],[2,1,4,2],[2,3,3,2],[0,1,0,1]],[[1,0,2,0],[2,1,3,3],[2,3,3,2],[0,1,0,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,1],[2,2,3,3],[0,2,2,2],[1,1,1,0]],[[1,2,1,1],[2,2,4,2],[0,2,2,2],[1,1,1,0]],[[1,2,1,2],[2,2,3,2],[0,2,2,2],[1,1,1,0]],[[1,2,1,1],[2,2,3,2],[0,2,2,3],[1,1,0,1]],[[1,2,1,1],[2,2,3,3],[0,2,2,2],[1,1,0,1]],[[1,2,1,1],[2,2,4,2],[0,2,2,2],[1,1,0,1]],[[1,2,1,2],[2,2,3,2],[0,2,2,2],[1,1,0,1]],[[1,2,1,1],[2,2,3,2],[0,2,2,3],[1,0,2,0]],[[1,2,1,1],[2,2,3,3],[0,2,2,2],[1,0,2,0]],[[1,2,1,1],[2,2,4,2],[0,2,2,2],[1,0,2,0]],[[1,2,1,2],[2,2,3,2],[0,2,2,2],[1,0,2,0]],[[1,2,1,1],[2,2,3,2],[0,2,2,2],[1,0,1,2]],[[1,2,1,1],[2,2,3,2],[0,2,2,3],[1,0,1,1]],[[1,2,1,1],[2,2,3,3],[0,2,2,2],[1,0,1,1]],[[1,2,1,1],[2,2,4,2],[0,2,2,2],[1,0,1,1]],[[1,2,1,2],[2,2,3,2],[0,2,2,2],[1,0,1,1]],[[1,0,3,0],[2,1,3,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,1,4,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,1,3,3],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,1],[2,2,3,2],[0,2,2,3],[0,2,1,0]],[[1,2,1,1],[2,2,3,3],[0,2,2,2],[0,2,1,0]],[[1,2,1,1],[2,2,4,2],[0,2,2,2],[0,2,1,0]],[[1,2,1,2],[2,2,3,2],[0,2,2,2],[0,2,1,0]],[[1,2,1,1],[2,2,3,2],[0,2,2,2],[0,2,0,2]],[[1,2,1,1],[2,2,3,2],[0,2,2,3],[0,2,0,1]],[[1,2,1,1],[2,2,3,3],[0,2,2,2],[0,2,0,1]],[[1,2,1,1],[2,2,4,2],[0,2,2,2],[0,2,0,1]],[[1,2,1,2],[2,2,3,2],[0,2,2,2],[0,2,0,1]],[[1,2,1,1],[2,2,3,2],[0,2,2,3],[0,1,2,0]],[[1,2,1,1],[2,2,3,3],[0,2,2,2],[0,1,2,0]],[[1,2,1,1],[2,2,4,2],[0,2,2,2],[0,1,2,0]],[[1,2,1,2],[2,2,3,2],[0,2,2,2],[0,1,2,0]],[[1,2,1,1],[2,2,3,2],[0,2,2,2],[0,1,1,2]],[[1,2,1,1],[2,2,3,2],[0,2,2,3],[0,1,1,1]],[[1,2,1,1],[2,2,3,3],[0,2,2,2],[0,1,1,1]],[[1,2,1,1],[2,2,4,2],[0,2,2,2],[0,1,1,1]],[[1,2,1,2],[2,2,3,2],[0,2,2,2],[0,1,1,1]],[[1,2,1,1],[2,2,3,2],[0,2,2,2],[0,0,2,2]],[[1,2,1,1],[2,2,3,2],[0,2,2,3],[0,0,2,1]],[[1,2,1,1],[2,2,3,3],[0,2,2,2],[0,0,2,1]],[[1,2,1,1],[2,2,4,2],[0,2,2,2],[0,0,2,1]],[[1,2,1,2],[2,2,3,2],[0,2,2,2],[0,0,2,1]],[[1,2,1,1],[2,2,3,2],[0,2,1,2],[1,0,2,2]],[[1,2,1,1],[2,2,3,2],[0,2,1,3],[1,0,2,1]],[[1,2,1,1],[2,2,3,3],[0,2,1,2],[1,0,2,1]],[[1,2,1,1],[2,2,4,2],[0,2,1,2],[1,0,2,1]],[[1,2,1,2],[2,2,3,2],[0,2,1,2],[1,0,2,1]],[[1,2,1,1],[2,2,3,2],[0,2,1,2],[0,1,2,2]],[[1,2,1,1],[2,2,3,2],[0,2,1,2],[0,1,3,1]],[[1,2,1,1],[2,2,3,2],[0,2,1,3],[0,1,2,1]],[[1,2,1,1],[2,2,3,3],[0,2,1,2],[0,1,2,1]],[[1,2,1,1],[2,2,4,2],[0,2,1,2],[0,1,2,1]],[[1,2,1,2],[2,2,3,2],[0,2,1,2],[0,1,2,1]],[[1,2,1,1],[2,2,3,2],[0,2,0,2],[0,2,2,2]],[[1,2,1,1],[2,2,3,2],[0,2,0,2],[0,2,3,1]],[[1,2,1,1],[2,2,3,2],[0,2,0,3],[0,2,2,1]],[[1,2,1,1],[2,2,3,3],[0,2,0,2],[0,2,2,1]],[[1,2,1,1],[2,2,4,2],[0,2,0,2],[0,2,2,1]],[[1,2,1,2],[2,2,3,2],[0,2,0,2],[0,2,2,1]],[[1,2,1,1],[2,2,3,2],[0,1,3,3],[1,0,2,0]],[[1,2,1,1],[2,2,3,3],[0,1,3,2],[1,0,2,0]],[[1,2,1,1],[2,2,4,2],[0,1,3,2],[1,0,2,0]],[[1,2,1,2],[2,2,3,2],[0,1,3,2],[1,0,2,0]],[[1,2,1,1],[2,2,3,2],[0,1,3,2],[1,0,1,2]],[[1,2,1,1],[2,2,3,2],[0,1,3,3],[1,0,1,1]],[[1,2,1,1],[2,2,3,3],[0,1,3,2],[1,0,1,1]],[[1,2,1,1],[2,2,4,2],[0,1,3,2],[1,0,1,1]],[[1,2,1,2],[2,2,3,2],[0,1,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,0,1],[1,4,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,0,1],[1,3,3,2],[2,2,2,1]],[[1,0,2,0],[2,2,0,1],[1,3,3,2],[1,3,2,1]],[[1,0,2,0],[2,2,0,1],[1,3,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,0,1],[1,3,3,2],[1,2,2,2]],[[1,0,2,0],[3,2,0,1],[2,2,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,0,1],[3,2,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,0,1],[2,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,2,0,1],[2,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,2,0,1],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,0,1],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[3,2,0,1],[2,3,3,2],[0,2,2,1]],[[1,0,2,0],[2,2,0,1],[3,3,3,2],[0,2,2,1]],[[1,0,2,0],[2,2,0,1],[2,4,3,2],[0,2,2,1]],[[1,0,2,0],[2,2,0,1],[2,3,3,2],[0,3,2,1]],[[1,0,2,0],[2,2,0,1],[2,3,3,2],[0,2,3,1]],[[1,0,2,0],[2,2,0,1],[2,3,3,2],[0,2,2,2]],[[1,0,2,0],[3,2,0,1],[2,3,3,2],[1,1,2,1]],[[1,0,2,0],[2,2,0,1],[3,3,3,2],[1,1,2,1]],[[1,0,2,0],[2,2,0,1],[2,4,3,2],[1,1,2,1]],[[1,0,2,0],[2,2,0,1],[2,3,3,2],[2,1,2,1]],[[1,0,2,0],[2,2,0,2],[1,2,3,3],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[1,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,2,0,2],[1,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,2,0,2],[1,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,0,2],[1,2,3,2],[1,2,2,2]],[[1,0,2,0],[2,2,0,2],[1,4,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[1,3,2,3],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[1,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,0,2],[1,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,0,2],[1,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,0,2],[1,3,2,2],[1,2,2,2]],[[1,0,2,0],[2,2,0,2],[1,4,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[1,3,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,0,2],[1,3,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,0,2],[1,3,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,0,2],[1,3,3,1],[1,2,2,2]],[[1,0,2,0],[2,2,0,2],[1,3,3,3],[1,1,2,1]],[[1,0,2,0],[2,2,0,2],[1,3,3,2],[1,1,3,1]],[[1,0,2,0],[2,2,0,2],[1,3,3,2],[1,1,2,2]],[[1,0,2,0],[2,2,0,2],[1,4,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,0,2],[1,3,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,0,2],[1,3,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,0,2],[1,3,3,2],[1,2,3,0]],[[1,0,2,0],[3,2,0,2],[2,1,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[3,1,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,1,3,3],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,1,3,2],[2,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,1,3,2],[1,3,2,1]],[[1,0,2,0],[2,2,0,2],[2,1,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,0,2],[2,1,3,2],[1,2,2,2]],[[1,0,2,0],[3,2,0,2],[2,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[3,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,0,2],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,0,2],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[3,2,0,2],[2,2,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[3,2,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,0,2],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,0,2],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,2,0,2],[2,2,3,3],[0,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,2,3,2],[0,3,2,1]],[[1,0,2,0],[2,2,0,2],[2,2,3,2],[0,2,3,1]],[[1,0,2,0],[2,2,0,2],[2,2,3,2],[0,2,2,2]],[[1,0,2,0],[3,2,0,2],[2,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,0,2],[3,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,0,2],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,0,2],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,0,2],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[3,2,0,2],[2,3,2,2],[0,2,2,1]],[[1,0,2,0],[2,2,0,2],[3,3,2,2],[0,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,4,2,2],[0,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,3,2,3],[0,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,3,2,2],[0,3,2,1]],[[1,0,2,0],[2,2,0,2],[2,3,2,2],[0,2,3,1]],[[1,0,2,0],[2,2,0,2],[2,3,2,2],[0,2,2,2]],[[1,0,2,0],[3,2,0,2],[2,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,2,0,2],[3,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,2,0,2],[2,4,2,2],[1,1,2,1]],[[1,0,2,0],[2,2,0,2],[2,3,2,2],[2,1,2,1]],[[1,0,2,0],[3,2,0,2],[2,3,3,1],[0,2,2,1]],[[1,0,2,0],[2,2,0,2],[3,3,3,1],[0,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,4,3,1],[0,2,2,1]],[[1,0,2,0],[2,2,0,2],[2,3,3,1],[0,3,2,1]],[[1,0,2,0],[2,2,0,2],[2,3,3,1],[0,2,3,1]],[[1,0,2,0],[2,2,0,2],[2,3,3,1],[0,2,2,2]],[[1,0,2,0],[3,2,0,2],[2,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,0,2],[3,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,0,2],[2,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,0,2],[2,3,3,1],[2,1,2,1]],[[1,0,2,0],[2,2,0,2],[2,3,3,3],[0,1,2,1]],[[1,0,2,0],[2,2,0,2],[2,3,3,2],[0,1,3,1]],[[1,0,2,0],[2,2,0,2],[2,3,3,2],[0,1,2,2]],[[1,0,2,0],[3,2,0,2],[2,3,3,2],[0,2,2,0]],[[1,0,2,0],[2,2,0,2],[3,3,3,2],[0,2,2,0]],[[1,0,2,0],[2,2,0,2],[2,4,3,2],[0,2,2,0]],[[1,0,2,0],[2,2,0,2],[2,3,3,2],[0,3,2,0]],[[1,0,2,0],[2,2,0,2],[2,3,3,2],[0,2,3,0]],[[1,0,2,0],[2,2,0,2],[2,3,3,3],[1,0,2,1]],[[1,0,2,0],[2,2,0,2],[2,3,3,2],[1,0,3,1]],[[1,0,2,0],[2,2,0,2],[2,3,3,2],[1,0,2,2]],[[1,0,2,0],[3,2,0,2],[2,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,0,2],[3,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,0,2],[2,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,2],[0,1,3,3],[0,1,2,0]],[[1,0,2,0],[2,2,1,0],[1,4,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,0],[1,3,3,2],[2,2,2,1]],[[1,0,2,0],[2,2,1,0],[1,3,3,2],[1,3,2,1]],[[1,0,2,0],[2,2,1,0],[1,3,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,1,0],[1,3,3,2],[1,2,2,2]],[[1,0,2,0],[3,2,1,0],[2,2,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,0],[3,2,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,0],[2,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,2,1,0],[2,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,2,1,0],[2,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,1,0],[2,2,3,2],[1,2,2,2]],[[1,0,2,0],[3,2,1,0],[2,3,3,2],[0,2,2,1]],[[1,0,2,0],[2,2,1,0],[3,3,3,2],[0,2,2,1]],[[1,0,2,0],[2,2,1,0],[2,4,3,2],[0,2,2,1]],[[1,0,2,0],[2,2,1,0],[2,3,3,2],[0,3,2,1]],[[1,0,2,0],[2,2,1,0],[2,3,3,2],[0,2,3,1]],[[1,0,2,0],[2,2,1,0],[2,3,3,2],[0,2,2,2]],[[1,0,2,0],[3,2,1,0],[2,3,3,2],[1,1,2,1]],[[1,0,2,0],[2,2,1,0],[3,3,3,2],[1,1,2,1]],[[1,0,2,0],[2,2,1,0],[2,4,3,2],[1,1,2,1]],[[1,0,2,0],[2,2,1,0],[2,3,3,2],[2,1,2,1]],[[1,0,2,0],[2,2,1,1],[1,4,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,1],[1,3,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,1,1],[1,3,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,1,1],[1,3,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,1,1],[1,3,3,1],[1,2,2,2]],[[1,0,2,0],[2,2,1,1],[1,4,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,1],[1,3,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,1,1],[1,3,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,1,1],[1,3,3,2],[1,2,3,0]],[[1,0,2,0],[3,2,1,1],[2,2,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,1],[3,2,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,1],[2,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,1,1],[2,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,1,1],[2,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,1,1],[2,2,3,1],[1,2,2,2]],[[1,0,2,0],[3,2,1,1],[2,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,1],[3,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,1],[2,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,1,1],[2,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,1,1],[2,2,3,2],[1,2,3,0]],[[1,0,2,0],[3,2,1,1],[2,3,3,1],[0,2,2,1]],[[1,0,2,0],[2,2,1,1],[3,3,3,1],[0,2,2,1]],[[1,0,2,0],[2,2,1,1],[2,4,3,1],[0,2,2,1]],[[1,0,2,0],[2,2,1,1],[2,3,3,1],[0,3,2,1]],[[1,0,2,0],[2,2,1,1],[2,3,3,1],[0,2,3,1]],[[1,0,2,0],[2,2,1,1],[2,3,3,1],[0,2,2,2]],[[1,0,2,0],[3,2,1,1],[2,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,1,1],[3,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,1,1],[2,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,1,1],[2,3,3,1],[2,1,2,1]],[[1,0,2,0],[3,2,1,1],[2,3,3,2],[0,2,2,0]],[[1,0,2,0],[2,2,1,1],[3,3,3,2],[0,2,2,0]],[[1,0,2,0],[2,2,1,1],[2,4,3,2],[0,2,2,0]],[[1,0,2,0],[2,2,1,1],[2,3,3,2],[0,3,2,0]],[[1,0,2,0],[2,2,1,1],[2,3,3,2],[0,2,3,0]],[[1,0,2,0],[3,2,1,1],[2,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,1,1],[3,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,1,1],[2,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,3],[0,1,3,2],[0,1,2,0]],[[1,2,1,1],[2,2,4,2],[0,1,3,2],[0,1,2,0]],[[1,2,1,2],[2,2,3,2],[0,1,3,2],[0,1,2,0]],[[1,2,1,1],[2,2,3,2],[0,1,3,2],[0,1,1,2]],[[1,2,1,1],[2,2,3,2],[0,1,3,3],[0,1,1,1]],[[1,2,1,1],[2,2,3,3],[0,1,3,2],[0,1,1,1]],[[1,2,1,1],[2,2,4,2],[0,1,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,1,2],[0,2,3,3],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[0,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,2,1,2],[0,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,1,2],[0,2,3,2],[1,2,2,2]],[[1,0,2,0],[2,2,1,2],[0,3,3,3],[1,1,2,1]],[[1,0,2,0],[2,2,1,2],[0,3,3,2],[1,1,3,1]],[[1,0,2,0],[2,2,1,2],[0,3,3,2],[1,1,2,2]],[[1,0,2,0],[2,2,1,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,1,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,1,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,2,1,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,1,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,1,2],[1,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,2,1,2],[1,2,3,3],[0,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,2,3,2],[0,2,3,1]],[[1,0,2,0],[2,2,1,2],[1,2,3,2],[0,2,2,2]],[[1,0,2,0],[2,2,1,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,1,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,2,1,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,2,1,2],[1,2,3,2],[1,2,1,2]],[[1,0,2,0],[2,2,1,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,1,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,1,2],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[2,2,1,3],[1,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,4,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,1,3],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,2,1,2],[1,3,1,2],[1,2,2,2]],[[1,0,2,0],[2,2,1,2],[1,4,2,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,2,1,2],[1,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,2,1,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,0],[2,2,1,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,0],[2,2,1,2],[1,4,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[1,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,2,1,2],[1,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,2,1,2],[1,3,2,2],[1,2,3,0]],[[1,0,2,0],[2,2,1,2],[1,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,0],[2,2,1,2],[1,4,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,1,2],[1,3,4,1],[1,2,1,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,3],[0,1,2,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,2],[0,1,3,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,2],[0,1,2,2]],[[1,0,2,0],[2,2,1,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,2,1,2],[1,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,2,1,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,2],[1,1,1,2]],[[1,0,2,0],[2,2,1,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,1,2],[1,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,1,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,2,1,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,0],[2,2,1,2],[1,3,3,2],[1,1,3,0]],[[1,0,2,0],[2,2,1,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,1,2],[1,4,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,1,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,2,1,2],[1,3,3,2],[1,2,0,2]],[[1,0,2,0],[2,2,1,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,1,2],[1,4,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,1,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,2,1,2],[1,3,3,3],[1,2,1,0]],[[1,0,2,0],[2,2,1,2],[1,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,2,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,2],[2,2,3,2],[0,1,3,2],[0,1,1,1]],[[1,2,1,1],[2,2,3,2],[0,1,3,2],[0,0,2,2]],[[1,2,1,1],[2,2,3,2],[0,1,3,3],[0,0,2,1]],[[1,2,1,1],[2,2,3,3],[0,1,3,2],[0,0,2,1]],[[1,2,1,1],[2,2,4,2],[0,1,3,2],[0,0,2,1]],[[1,2,1,2],[2,2,3,2],[0,1,3,2],[0,0,2,1]],[[2,0,2,0],[2,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[3,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[3,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,1,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,1,2],[2,1,2,2],[1,2,2,2]],[[2,0,2,0],[2,2,1,2],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[3,2,1,2],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[3,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,1,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,1,2],[2,1,3,1],[1,2,2,2]],[[1,0,2,0],[2,2,1,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,1,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,0],[2,2,1,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,0],[2,2,1,2],[2,1,3,2],[1,2,1,2]],[[2,0,2,0],[2,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[3,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[3,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,1,2],[2,1,3,2],[1,2,3,0]],[[2,0,2,0],[2,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[3,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,3],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[3,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,1,3],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,1,2],[2,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,1,2],[1,3,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,1,2],[1,2,3,1]],[[1,0,2,0],[2,2,1,2],[2,2,1,2],[1,2,2,2]],[[2,0,2,0],[2,2,1,2],[2,2,2,1],[1,2,2,1]],[[1,0,2,0],[3,2,1,2],[2,2,2,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[3,2,2,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,2,1],[2,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,2,1],[1,3,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,2,1],[1,2,3,1]],[[1,0,2,0],[2,2,1,2],[2,2,2,1],[1,2,2,2]],[[1,0,2,0],[2,2,1,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,0],[2,2,1,2],[2,2,2,2],[0,2,2,2]],[[2,0,2,0],[2,2,1,2],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[3,2,1,2],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[3,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,2,2,2],[2,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,2,2,2],[1,3,2,0]],[[1,0,2,0],[2,2,1,2],[2,2,2,2],[1,2,3,0]],[[1,0,2,0],[2,2,1,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[2,2,1,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,2,1,2],[2,2,3,1],[0,2,2,2]],[[2,0,2,0],[2,2,1,2],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[3,2,1,2],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,1,2],[3,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,1,2],[2,2,3,1],[2,2,1,1]],[[1,0,2,0],[2,2,1,2],[2,2,3,1],[1,3,1,1]],[[1,0,2,0],[2,2,1,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,2,1,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,0],[2,2,1,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,0],[2,2,1,2],[2,2,3,2],[0,2,1,2]],[[1,0,2,0],[2,2,1,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[2,2,1,2],[2,2,3,2],[0,2,3,0]],[[2,0,2,0],[2,2,1,2],[2,2,3,2],[1,2,0,1]],[[1,0,2,0],[3,2,1,2],[2,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,1,2],[3,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,1,2],[2,2,3,2],[2,2,0,1]],[[1,0,2,0],[2,2,1,2],[2,2,3,2],[1,3,0,1]],[[2,0,2,0],[2,2,1,2],[2,2,3,2],[1,2,1,0]],[[1,0,2,0],[3,2,1,2],[2,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,1,2],[3,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,1,2],[2,2,3,2],[2,2,1,0]],[[1,0,2,0],[2,2,1,2],[2,2,3,2],[1,3,1,0]],[[1,0,2,0],[3,2,1,2],[2,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[3,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,0,2],[2,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,0,2],[1,3,2,1]],[[1,0,2,0],[3,2,1,2],[2,3,1,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[3,3,1,1],[1,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,1,1],[2,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,1,1],[1,3,2,1]],[[2,0,2,0],[2,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[3,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,1,3],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,1,2],[3,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,4,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,1,3],[0,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,1,2],[0,3,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,1,2],[0,2,3,1]],[[1,0,2,0],[2,2,1,2],[2,3,1,2],[0,2,2,2]],[[2,0,2,0],[2,2,1,2],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[3,2,1,2],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,2,1,2],[3,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,2,1,2],[2,4,1,2],[1,1,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,1,2],[2,1,2,1]],[[1,0,2,0],[3,2,1,2],[2,3,1,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[3,3,1,2],[1,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,1,2],[2,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,1,2],[1,3,2,0]],[[2,0,2,0],[2,2,1,2],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[3,2,1,2],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,2,1,2],[3,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,4,2,1],[0,2,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,2,1],[0,3,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,2,1],[0,2,3,1]],[[1,0,2,0],[2,2,1,2],[2,3,2,1],[0,2,2,2]],[[2,0,2,0],[2,2,1,2],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[3,2,1,2],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,2,1,2],[3,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,2,1,2],[2,4,2,1],[1,1,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,2,1],[2,1,2,1]],[[1,0,2,0],[2,2,1,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,2,1,2],[2,3,2,2],[0,1,2,2]],[[2,0,2,0],[2,2,1,2],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[3,2,1,2],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,1,2],[3,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,4,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,2,2],[0,3,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,2,2],[0,2,3,0]],[[1,0,2,0],[2,2,1,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,0],[2,2,1,2],[2,3,2,2],[1,0,2,2]],[[2,0,2,0],[2,2,1,2],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[3,2,1,2],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,1,2],[3,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,1,2],[2,4,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,2,2],[2,1,2,0]],[[2,0,2,0],[2,2,1,2],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[3,2,1,2],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,1,2],[3,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,1,2],[2,4,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,1],[0,1,2,2]],[[2,0,2,0],[2,2,1,2],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[3,2,1,2],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,1,2],[3,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,1,2],[2,4,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,1,2],[2,3,4,1],[0,2,1,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,1],[0,3,1,1]],[[2,0,2,0],[2,2,1,2],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[3,2,1,2],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,1,2],[3,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,1,2],[2,4,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,1],[2,0,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,1],[1,0,2,2]],[[2,0,2,0],[2,2,1,2],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[3,2,1,2],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,1,2],[3,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,1,2],[2,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,1,2],[2,3,4,1],[1,1,1,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,1],[2,1,1,1]],[[1,0,2,0],[3,2,1,2],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,1,2],[3,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,1,2],[2,4,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,2,3,2],[0,1,3,1],[0,2,3,0]],[[1,2,1,1],[2,2,3,2],[0,1,4,1],[0,2,2,0]],[[1,2,1,1],[2,2,3,3],[0,1,3,1],[0,2,2,0]],[[1,2,1,1],[2,2,4,2],[0,1,3,1],[0,2,2,0]],[[1,2,1,2],[2,2,3,2],[0,1,3,1],[0,2,2,0]],[[1,2,1,1],[2,2,3,2],[0,1,4,1],[0,2,1,1]],[[1,2,1,1],[2,2,3,3],[0,1,3,1],[0,2,1,1]],[[1,2,1,1],[2,2,4,2],[0,1,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,1,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[0,0,2,2]],[[2,0,2,0],[2,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[3,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,1,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,1,2],[3,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,1,2],[2,4,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,1,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[0,1,1,2]],[[2,0,2,0],[2,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[3,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,1,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,1,2],[3,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,1,2],[2,4,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[0,1,3,0]],[[2,0,2,0],[2,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[3,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,1,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,1,2],[3,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,1,2],[2,4,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,1,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[0,3,0,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[0,2,0,2]],[[2,0,2,0],[2,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[3,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,1,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,1,2],[3,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,1,2],[2,4,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,1,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,2,1,2],[2,3,3,3],[0,2,1,0]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,2],[2,2,3,2],[0,1,3,1],[0,2,1,1]],[[2,0,2,0],[2,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[3,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,1,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,1,2],[3,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,1,2],[2,4,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,1,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[2,0,1,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[1,0,1,2]],[[2,0,2,0],[2,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[3,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,1,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,1,2],[3,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,1,2],[2,4,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[2,0,2,0]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[1,0,3,0]],[[2,0,2,0],[2,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[3,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,1,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,1,2],[3,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,1,2],[2,4,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,1,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[2,1,0,1]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[1,1,0,2]],[[2,0,2,0],[2,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[3,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,1,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,1,2],[3,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,1,2],[2,4,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,1,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[2,2,1,2],[2,3,3,3],[1,1,1,0]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[3,2,3,2],[0,1,3,0],[1,2,2,0]],[[1,3,1,1],[2,2,3,2],[0,1,3,0],[1,2,2,0]],[[2,2,1,1],[2,2,3,2],[0,1,3,0],[1,2,2,0]],[[1,2,1,1],[2,2,3,2],[0,1,3,0],[0,2,2,2]],[[1,2,1,1],[2,2,3,2],[0,1,3,0],[0,2,3,1]],[[1,2,1,1],[2,2,3,2],[0,1,4,0],[0,2,2,1]],[[1,2,1,1],[2,2,3,3],[0,1,3,0],[0,2,2,1]],[[1,2,1,1],[2,2,4,2],[0,1,3,0],[0,2,2,1]],[[2,0,2,0],[2,2,1,2],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[3,2,1,2],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,2,1,2],[3,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,2,1,2],[2,4,3,2],[1,2,0,0]],[[1,0,2,0],[2,2,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,2],[2,2,3,2],[0,1,3,0],[0,2,2,1]],[[1,2,1,1],[2,2,3,2],[0,1,2,3],[0,2,2,0]],[[1,2,1,1],[2,2,3,3],[0,1,2,2],[0,2,2,0]],[[1,2,1,1],[2,2,4,2],[0,1,2,2],[0,2,2,0]],[[1,2,1,2],[2,2,3,2],[0,1,2,2],[0,2,2,0]],[[1,2,1,1],[2,2,3,2],[0,1,2,2],[0,2,1,2]],[[1,2,1,1],[2,2,3,2],[0,1,2,3],[0,2,1,1]],[[1,2,1,1],[2,2,3,3],[0,1,2,2],[0,2,1,1]],[[1,2,1,1],[2,2,4,2],[0,1,2,2],[0,2,1,1]],[[1,2,1,2],[2,2,3,2],[0,1,2,2],[0,2,1,1]],[[1,0,2,0],[2,2,2,0],[1,2,4,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,0],[1,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,0],[1,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,0],[1,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,0],[1,2,3,2],[1,2,2,2]],[[1,0,2,0],[2,2,2,0],[1,4,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,0],[1,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,0],[1,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,0],[1,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,0],[1,3,2,2],[1,2,2,2]],[[1,0,2,0],[2,2,2,0],[1,4,3,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,0],[1,3,4,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,0],[1,3,3,2],[1,1,3,1]],[[1,0,2,0],[2,2,2,0],[1,3,3,2],[1,1,2,2]],[[1,0,2,0],[2,2,2,0],[1,4,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,2,0],[1,3,4,2],[1,2,1,1]],[[1,0,2,0],[2,2,2,0],[1,3,3,2],[2,2,1,1]],[[1,0,2,0],[2,2,2,0],[1,3,3,2],[1,3,1,1]],[[2,0,2,0],[2,2,2,0],[2,1,3,2],[1,2,2,1]],[[1,0,2,0],[3,2,2,0],[2,1,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,0],[3,1,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,0],[2,1,4,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,0],[2,1,3,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,0],[2,1,3,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,0],[2,1,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,0],[2,1,3,2],[1,2,2,2]],[[2,0,2,0],[2,2,2,0],[2,2,2,2],[1,2,2,1]],[[1,0,2,0],[3,2,2,0],[2,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,0],[3,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,0],[2,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,0],[2,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,0],[2,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,0],[2,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,2,2,0],[2,2,4,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,0],[2,2,3,2],[0,3,2,1]],[[1,0,2,0],[2,2,2,0],[2,2,3,2],[0,2,3,1]],[[1,0,2,0],[2,2,2,0],[2,2,3,2],[0,2,2,2]],[[2,0,2,0],[2,2,2,0],[2,2,3,2],[1,2,1,1]],[[1,0,2,0],[3,2,2,0],[2,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,2,0],[3,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,2,0],[2,2,3,2],[2,2,1,1]],[[1,0,2,0],[2,2,2,0],[2,2,3,2],[1,3,1,1]],[[1,0,2,0],[3,2,2,0],[2,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,0],[3,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,0],[2,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,0],[2,3,1,2],[1,3,2,1]],[[2,0,2,0],[2,2,2,0],[2,3,2,2],[0,2,2,1]],[[1,0,2,0],[3,2,2,0],[2,3,2,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,0],[3,3,2,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,0],[2,4,2,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,0],[2,3,2,2],[0,3,2,1]],[[1,0,2,0],[2,2,2,0],[2,3,2,2],[0,2,3,1]],[[1,0,2,0],[2,2,2,0],[2,3,2,2],[0,2,2,2]],[[2,0,2,0],[2,2,2,0],[2,3,2,2],[1,1,2,1]],[[1,0,2,0],[3,2,2,0],[2,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,0],[3,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,0],[2,4,2,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,0],[2,3,2,2],[2,1,2,1]],[[2,0,2,0],[2,2,2,0],[2,3,3,2],[0,1,2,1]],[[1,0,2,0],[3,2,2,0],[2,3,3,2],[0,1,2,1]],[[1,0,2,0],[2,2,2,0],[3,3,3,2],[0,1,2,1]],[[1,0,2,0],[2,2,2,0],[2,4,3,2],[0,1,2,1]],[[1,0,2,0],[2,2,2,0],[2,3,4,2],[0,1,2,1]],[[1,0,2,0],[2,2,2,0],[2,3,3,2],[0,1,3,1]],[[1,0,2,0],[2,2,2,0],[2,3,3,2],[0,1,2,2]],[[2,0,2,0],[2,2,2,0],[2,3,3,2],[0,2,1,1]],[[1,0,2,0],[3,2,2,0],[2,3,3,2],[0,2,1,1]],[[1,0,2,0],[2,2,2,0],[3,3,3,2],[0,2,1,1]],[[1,0,2,0],[2,2,2,0],[2,4,3,2],[0,2,1,1]],[[1,0,2,0],[2,2,2,0],[2,3,4,2],[0,2,1,1]],[[1,0,2,0],[2,2,2,0],[2,3,3,2],[0,3,1,1]],[[2,0,2,0],[2,2,2,0],[2,3,3,2],[1,0,2,1]],[[1,0,2,0],[3,2,2,0],[2,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,2,2,0],[3,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,2,2,0],[2,4,3,2],[1,0,2,1]],[[1,0,2,0],[2,2,2,0],[2,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,2,2,0],[2,3,3,2],[2,0,2,1]],[[1,0,2,0],[2,2,2,0],[2,3,3,2],[1,0,3,1]],[[1,0,2,0],[2,2,2,0],[2,3,3,2],[1,0,2,2]],[[2,0,2,0],[2,2,2,0],[2,3,3,2],[1,1,1,1]],[[1,0,2,0],[3,2,2,0],[2,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,2,2,0],[3,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,2,2,0],[2,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,2,2,0],[2,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,2,2,0],[2,3,3,2],[2,1,1,1]],[[1,0,2,0],[3,2,2,0],[2,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,2,0],[3,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,2,0],[2,4,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,2,0],[2,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,2,2,1],[1,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[1,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[1,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,1],[1,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,1],[1,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,2,2,1],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,2,1],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,2,1],[1,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,2,2,1],[1,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,2,2,1],[1,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,2,2,1],[1,2,3,2],[1,2,1,2]],[[1,0,2,0],[2,2,2,1],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,1],[1,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,2,2,1],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,2,1],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,2,1],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[2,2,2,1],[1,4,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,1,3],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,1],[1,3,1,2],[1,2,2,2]],[[1,0,2,0],[2,2,2,1],[1,4,2,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,2,2,1],[1,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,2,2,1],[1,3,2,3],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,2,2],[1,1,3,1]],[[1,0,2,0],[2,2,2,1],[1,3,2,2],[1,1,2,2]],[[1,0,2,0],[2,2,2,1],[1,4,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,1],[1,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,2,2,1],[1,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,2,2,1],[1,3,2,2],[1,2,3,0]],[[1,0,2,0],[2,2,2,1],[1,4,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,0],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,0],[1,3,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,0],[1,2,3,1]],[[1,0,2,0],[2,2,2,1],[1,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,1],[1,1,2,2]],[[1,0,2,0],[2,2,2,1],[1,4,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,2,1],[1,3,4,1],[1,2,1,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,2,2,1],[1,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,2,2,1],[1,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,3],[1,1,1,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,2],[1,1,1,2]],[[1,0,2,0],[2,2,2,1],[1,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,2,1],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,2,2,1],[1,3,3,3],[1,1,2,0]],[[1,0,2,0],[2,2,2,1],[1,3,3,2],[1,1,3,0]],[[1,0,2,0],[2,2,2,1],[1,4,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,2,1],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,3],[1,2,0,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,2,2,1],[1,3,3,2],[1,2,0,2]],[[1,0,2,0],[2,2,2,1],[1,4,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,2,1],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,2,2,1],[1,3,3,3],[1,2,1,0]],[[1,0,2,0],[2,2,2,1],[1,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,2,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,2],[0,1,1,2],[0,2,2,2]],[[1,2,1,1],[2,2,3,2],[0,1,1,2],[0,2,3,1]],[[1,2,1,1],[2,2,3,2],[0,1,1,3],[0,2,2,1]],[[1,2,1,1],[2,2,3,3],[0,1,1,2],[0,2,2,1]],[[1,2,1,1],[2,2,4,2],[0,1,1,2],[0,2,2,1]],[[2,0,2,0],[2,2,2,1],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[3,2,2,1],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[3,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,1,2,3],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,1,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,1,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,1],[2,1,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,1],[2,1,2,2],[1,2,2,2]],[[2,0,2,0],[2,2,2,1],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[3,2,2,1],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[3,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,2,1],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,2,1],[2,1,3,1],[1,2,2,2]],[[1,0,2,0],[2,2,2,1],[2,1,4,2],[1,2,1,1]],[[1,0,2,0],[2,2,2,1],[2,1,3,3],[1,2,1,1]],[[1,0,2,0],[2,2,2,1],[2,1,3,2],[1,2,1,2]],[[2,0,2,0],[2,2,2,1],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[3,2,2,1],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,1],[3,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,1,3,3],[1,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,2,1],[2,1,3,2],[1,2,3,0]],[[2,0,2,0],[2,2,2,1],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[3,2,2,1],[2,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[3,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,1,3],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,1,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,1,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,1,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,1],[2,2,1,2],[1,2,2,2]],[[2,0,2,0],[2,2,2,1],[2,2,2,1],[1,2,2,1]],[[1,0,2,0],[3,2,2,1],[2,2,2,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[3,2,2,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,2,1],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,2,1],[1,3,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,2,1],[1,2,3,1]],[[1,0,2,0],[2,2,2,1],[2,2,2,1],[1,2,2,2]],[[1,0,2,0],[2,2,2,1],[2,2,2,3],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,2,2],[0,3,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,2,2],[0,2,3,1]],[[1,0,2,0],[2,2,2,1],[2,2,2,2],[0,2,2,2]],[[2,0,2,0],[2,2,2,1],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[3,2,2,1],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,1],[3,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,2,2,2],[2,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,2,2,2],[1,3,2,0]],[[1,0,2,0],[2,2,2,1],[2,2,2,2],[1,2,3,0]],[[2,0,2,0],[2,2,2,1],[2,2,3,0],[1,2,2,1]],[[1,0,2,0],[3,2,2,1],[2,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[3,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,0],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,0],[1,3,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,0],[1,2,3,1]],[[1,0,2,0],[2,2,2,1],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,1],[0,2,2,2]],[[2,0,2,0],[2,2,2,1],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[3,2,2,1],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,2,1],[3,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,1],[2,2,1,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,1],[1,3,1,1]],[[1,0,2,0],[2,2,2,1],[2,2,4,2],[0,2,1,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,3],[0,2,1,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,2],[0,2,1,2]],[[1,0,2,0],[2,2,2,1],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,2,3,3],[0,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[2,2,2,1],[2,2,3,2],[0,2,3,0]],[[2,0,2,0],[2,2,2,1],[2,2,3,2],[1,2,0,1]],[[1,0,2,0],[3,2,2,1],[2,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,2,1],[3,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,2],[2,2,0,1]],[[1,0,2,0],[2,2,2,1],[2,2,3,2],[1,3,0,1]],[[2,0,2,0],[2,2,2,1],[2,2,3,2],[1,2,1,0]],[[1,0,2,0],[3,2,2,1],[2,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,2,1],[3,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,2,1],[2,2,3,2],[2,2,1,0]],[[1,0,2,0],[2,2,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,2],[2,2,3,2],[0,1,1,2],[0,2,2,1]],[[1,0,2,0],[3,2,2,1],[2,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[3,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,0,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,0,2],[1,3,2,1]],[[1,0,2,0],[3,2,2,1],[2,3,1,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[3,3,1,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,1,1],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,1,1],[1,3,2,1]],[[2,0,2,0],[2,2,2,1],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[3,2,2,1],[2,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[3,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,4,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,1,3],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,1,2],[0,3,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,1,2],[0,2,3,1]],[[1,0,2,0],[2,2,2,1],[2,3,1,2],[0,2,2,2]],[[2,0,2,0],[2,2,2,1],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[3,2,2,1],[2,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[3,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[2,4,1,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,1,2],[2,1,2,1]],[[1,0,2,0],[3,2,2,1],[2,3,1,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,1],[3,3,1,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,1,2],[2,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,1,2],[1,3,2,0]],[[1,0,2,0],[3,2,2,1],[2,3,2,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[3,3,2,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,2,0],[2,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,2,0],[1,3,2,1]],[[2,0,2,0],[2,2,2,1],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[3,2,2,1],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[3,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,4,2,1],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,2,1],[0,3,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,2,1],[0,2,3,1]],[[1,0,2,0],[2,2,2,1],[2,3,2,1],[0,2,2,2]],[[2,0,2,0],[2,2,2,1],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[3,2,2,1],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[3,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[2,4,2,1],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,2,1],[2,1,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,2,2,1],[2,3,2,2],[0,1,2,2]],[[2,0,2,0],[2,2,2,1],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[3,2,2,1],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,2,1],[3,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,4,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,2,2],[0,3,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,2,2],[0,2,3,0]],[[1,0,2,0],[2,2,2,1],[2,3,2,3],[1,0,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,2,2],[1,0,3,1]],[[1,0,2,0],[2,2,2,1],[2,3,2,2],[1,0,2,2]],[[2,0,2,0],[2,2,2,1],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[3,2,2,1],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,2,1],[3,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,2,1],[2,4,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,2,2],[2,1,2,0]],[[2,0,2,0],[2,2,2,1],[2,3,3,0],[0,2,2,1]],[[1,0,2,0],[3,2,2,1],[2,3,3,0],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[3,3,3,0],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,4,3,0],[0,2,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,0],[0,3,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,0],[0,2,3,1]],[[2,0,2,0],[2,2,2,1],[2,3,3,0],[1,1,2,1]],[[1,0,2,0],[3,2,2,1],[2,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[3,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[2,4,3,0],[1,1,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,0],[2,1,2,1]],[[2,0,2,0],[2,2,2,1],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[3,2,2,1],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,2,1],[3,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,2,1],[2,4,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,1],[0,1,2,2]],[[2,0,2,0],[2,2,2,1],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[3,2,2,1],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,2,1],[3,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,2,1],[2,4,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,4,1],[0,2,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,1],[0,3,1,1]],[[2,0,2,0],[2,2,2,1],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[3,2,2,1],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,2,1],[3,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,2,1],[2,4,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,1],[2,0,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,1],[1,0,2,2]],[[2,0,2,0],[2,2,2,1],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[3,2,2,1],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,2,1],[3,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,2,1],[2,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,4,1],[1,1,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,1],[2,1,1,1]],[[2,0,2,0],[2,2,2,1],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[3,2,2,1],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,2,1],[3,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,2,1],[2,4,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,2,3,2],[0,0,3,3],[0,2,2,0]],[[1,2,1,1],[2,2,3,3],[0,0,3,2],[0,2,2,0]],[[1,2,1,1],[2,2,4,2],[0,0,3,2],[0,2,2,0]],[[1,2,1,2],[2,2,3,2],[0,0,3,2],[0,2,2,0]],[[1,2,1,1],[2,2,3,2],[0,0,3,2],[0,2,1,2]],[[1,2,1,1],[2,2,3,2],[0,0,3,3],[0,2,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[0,0,2,2]],[[2,0,2,0],[2,2,2,1],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[3,2,2,1],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,2,1],[3,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,2,1],[2,4,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[0,1,1,2]],[[2,0,2,0],[2,2,2,1],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[3,2,2,1],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,2,1],[3,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,2,1],[2,4,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[0,1,3,0]],[[2,0,2,0],[2,2,2,1],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[3,2,2,1],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,2,1],[3,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,2,1],[2,4,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,2,1],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[0,3,0,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[0,2,0,2]],[[2,0,2,0],[2,2,2,1],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[3,2,2,1],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,2,1],[3,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,2,1],[2,4,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,2,1],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,2,2,1],[2,3,3,3],[0,2,1,0]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,2,3,3],[0,0,3,2],[0,2,1,1]],[[1,2,1,1],[2,2,4,2],[0,0,3,2],[0,2,1,1]],[[1,2,1,2],[2,2,3,2],[0,0,3,2],[0,2,1,1]],[[1,2,1,1],[2,2,3,2],[0,0,3,2],[0,1,2,2]],[[1,2,1,1],[2,2,3,2],[0,0,3,3],[0,1,2,1]],[[1,2,1,1],[2,2,3,3],[0,0,3,2],[0,1,2,1]],[[1,2,1,1],[2,2,4,2],[0,0,3,2],[0,1,2,1]],[[1,2,1,2],[2,2,3,2],[0,0,3,2],[0,1,2,1]],[[2,0,2,0],[2,2,2,1],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[3,2,2,1],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,2,1],[3,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,2,1],[2,4,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,3],[1,0,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[2,0,1,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[1,0,1,2]],[[2,0,2,0],[2,2,2,1],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[3,2,2,1],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,2,1],[3,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,2,1],[2,4,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,3,3],[1,0,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[2,0,2,0]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[1,0,3,0]],[[2,0,2,0],[2,2,2,1],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[3,2,2,1],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,2,1],[3,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,2,1],[2,4,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,2,1],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,3],[1,1,0,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[2,1,0,1]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[1,1,0,2]],[[2,0,2,0],[2,2,2,1],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[3,2,2,1],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,2,1],[3,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,2,1],[2,4,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,2,1],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[2,2,2,1],[2,3,3,3],[1,1,1,0]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,2,3,2],[0,0,2,2],[0,2,2,2]],[[1,2,1,1],[2,2,3,2],[0,0,2,2],[0,2,3,1]],[[1,2,1,1],[2,2,3,2],[0,0,2,3],[0,2,2,1]],[[1,2,1,1],[2,2,3,3],[0,0,2,2],[0,2,2,1]],[[2,0,2,0],[2,2,2,1],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[3,2,2,1],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,2,2,1],[3,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,2,2,1],[2,4,3,2],[1,2,0,0]],[[1,0,2,0],[2,2,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,2,4,2],[0,0,2,2],[0,2,2,1]],[[1,2,1,2],[2,2,3,2],[0,0,2,2],[0,2,2,1]],[[1,2,1,1],[2,2,3,1],[3,3,3,1],[1,0,0,0]],[[1,2,1,1],[3,2,3,1],[2,3,3,1],[1,0,0,0]],[[1,3,1,1],[2,2,3,1],[2,3,3,1],[1,0,0,0]],[[2,2,1,1],[2,2,3,1],[2,3,3,1],[1,0,0,0]],[[1,0,2,0],[2,2,2,3],[0,1,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,1,3,3],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,1,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[0,1,3,2],[1,2,2,2]],[[1,0,2,0],[2,2,2,3],[0,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[0,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[0,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,2,2,2],[0,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[0,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[0,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,2,2,3],[0,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[0,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[0,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[0,2,3,2],[1,2,1,2]],[[1,0,2,0],[2,2,2,3],[0,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[0,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[0,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[0,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,2,2],[0,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,2,2],[0,2,3,2],[1,2,3,0]],[[1,0,2,0],[2,2,2,3],[0,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,4,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,1,3],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[0,3,1,2],[1,2,2,2]],[[1,0,2,0],[2,2,2,2],[0,4,2,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[0,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,2,2,3],[0,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,2,3],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,2,2],[1,1,3,1]],[[1,0,2,0],[2,2,2,2],[0,3,2,2],[1,1,2,2]],[[1,0,2,0],[2,2,2,2],[0,4,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[0,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,2,2,2],[0,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,2,2,2],[0,3,2,2],[1,2,3,0]],[[1,0,2,0],[2,2,2,2],[0,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,1],[1,1,2,2]],[[1,0,2,0],[2,2,2,2],[0,4,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[0,3,4,1],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,2,2,3],[0,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,3],[1,0,2,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,2],[1,0,2,2]],[[1,0,2,0],[2,2,2,3],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,2,2,2],[0,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,2,2,2],[0,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,3],[1,1,1,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,2],[1,1,1,2]],[[1,0,2,0],[2,2,2,3],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,2,2],[0,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,2,2],[0,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,2,2,2],[0,3,3,3],[1,1,2,0]],[[1,0,2,0],[2,2,2,2],[0,3,3,2],[1,1,3,0]],[[1,0,2,0],[2,2,2,3],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,2,2],[0,4,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,2,2],[0,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,3],[1,2,0,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,2,2,2],[0,3,3,2],[1,2,0,2]],[[1,0,2,0],[2,2,2,3],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,2,2],[0,4,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,2,2],[0,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,2,2,2],[0,3,3,3],[1,2,1,0]],[[1,0,2,0],[2,2,2,2],[0,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,0,2,0],[2,2,2,3],[1,1,3,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,1,3,3],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,1,3,2],[0,2,3,1]],[[1,0,2,0],[2,2,2,2],[1,1,3,2],[0,2,2,2]],[[1,0,2,0],[2,2,2,3],[1,2,2,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,2,2,3],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,2,2,2],[0,3,2,1]],[[1,0,2,0],[2,2,2,2],[1,2,2,2],[0,2,3,1]],[[1,0,2,0],[2,2,2,2],[1,2,2,2],[0,2,2,2]],[[1,0,2,0],[2,2,2,2],[1,2,4,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,2,3,0],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,2,3,0],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[1,2,3,0],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[1,2,3,0],[1,2,2,2]],[[1,0,2,0],[2,2,2,2],[1,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,2,3,1],[0,3,2,1]],[[1,0,2,0],[2,2,2,2],[1,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,2,2,2],[1,2,3,1],[0,2,2,2]],[[1,0,2,0],[2,2,2,2],[1,2,4,1],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[1,2,3,1],[2,2,2,0]],[[1,0,2,0],[2,2,2,2],[1,2,3,1],[1,3,2,0]],[[1,0,2,0],[2,2,2,2],[1,2,3,1],[1,2,3,0]],[[1,0,2,0],[2,2,2,3],[1,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,2,2,2],[1,2,4,2],[0,2,1,1]],[[1,0,2,0],[2,2,2,2],[1,2,3,3],[0,2,1,1]],[[1,0,2,0],[2,2,2,2],[1,2,3,2],[0,2,1,2]],[[1,0,2,0],[2,2,2,3],[1,2,3,2],[0,2,2,0]],[[1,0,2,0],[2,2,2,2],[1,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,2,2,2],[1,2,3,3],[0,2,2,0]],[[1,0,2,0],[2,2,2,2],[1,2,3,2],[0,3,2,0]],[[1,0,2,0],[2,2,2,2],[1,2,3,2],[0,2,3,0]],[[1,0,2,0],[2,2,2,3],[1,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,4,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,0,3],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,0,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,0,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,0,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[1,3,0,2],[1,2,2,2]],[[1,0,2,0],[2,2,2,3],[1,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,4,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,1,3],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,1,2],[0,3,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,1,2],[0,2,3,1]],[[1,0,2,0],[2,2,2,2],[1,3,1,2],[0,2,2,2]],[[1,0,2,0],[2,2,2,2],[1,4,2,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,0],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,0],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,0],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,0],[1,2,2,2]],[[1,0,2,0],[2,2,2,2],[1,4,2,1],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,1],[0,3,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,1],[0,2,3,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,1],[0,2,2,2]],[[1,0,2,0],[2,2,2,2],[1,4,2,1],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,2,1],[2,2,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,2,1],[1,3,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,2,1],[1,2,3,0]],[[1,0,2,0],[2,2,2,3],[1,3,2,2],[0,1,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,2],[0,1,2,2]],[[1,0,2,0],[2,2,2,2],[1,4,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,2,2],[0,3,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,2,2],[0,2,3,0]],[[1,0,2,0],[2,2,2,3],[1,3,2,2],[1,0,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,3],[1,0,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,2],[1,0,3,1]],[[1,0,2,0],[2,2,2,2],[1,3,2,2],[1,0,2,2]],[[1,0,2,0],[2,2,2,2],[1,4,3,0],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,4,0],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,0],[1,1,3,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,0],[1,1,2,2]],[[1,0,2,0],[2,2,2,2],[1,4,3,0],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[1,3,4,0],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,0],[2,2,1,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,0],[1,3,1,1]],[[1,0,2,0],[2,2,2,2],[1,4,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,1],[0,1,2,2]],[[1,0,2,0],[2,2,2,2],[1,4,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,2,2],[1,3,4,1],[0,2,1,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,1],[0,3,1,1]],[[1,0,2,0],[2,2,2,2],[1,4,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,4,1],[1,0,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,1],[1,0,3,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,1],[1,0,2,2]],[[1,0,2,0],[2,2,2,2],[1,4,3,1],[1,1,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,4,1],[1,1,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,3,1],[1,1,3,0]],[[1,0,2,0],[2,2,2,2],[1,4,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,2,2],[1,3,4,1],[1,2,0,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,1],[2,2,0,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,1],[1,3,0,1]],[[1,0,2,0],[2,2,2,2],[1,4,3,1],[1,2,1,0]],[[1,0,2,0],[2,2,2,2],[1,3,4,1],[1,2,1,0]],[[1,0,2,0],[2,2,2,2],[1,3,3,1],[2,2,1,0]],[[1,0,2,0],[2,2,2,2],[1,3,3,1],[1,3,1,0]],[[1,0,2,0],[2,2,2,3],[1,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,2],[0,0,2,2]],[[1,0,2,0],[2,2,2,3],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,2,2],[1,4,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,2,2],[1,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,2],[0,1,1,2]],[[1,0,2,0],[2,2,2,3],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,2,2],[1,4,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,3,2],[0,1,3,0]],[[1,0,2,0],[2,2,2,3],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,2,2],[1,4,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,2,2],[1,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,2],[0,3,0,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,2],[0,2,0,2]],[[1,0,2,0],[2,2,2,3],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,2,2],[1,4,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,2,2],[1,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,2,2,2],[1,3,3,3],[0,2,1,0]],[[1,0,2,0],[2,2,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,3,0],[1,0,1,0]],[[1,2,1,1],[3,2,3,1],[2,3,3,0],[1,0,1,0]],[[1,3,1,1],[2,2,3,1],[2,3,3,0],[1,0,1,0]],[[1,0,2,0],[2,2,2,3],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,2,2],[1,4,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,2,2],[1,3,4,2],[1,0,1,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,3],[1,0,1,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,2],[1,0,1,2]],[[1,0,2,0],[2,2,2,3],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,2,2],[1,4,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,3,3],[1,0,2,0]],[[1,0,2,0],[2,2,2,2],[1,3,3,2],[1,0,3,0]],[[1,0,2,0],[2,2,2,3],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,2,2],[1,4,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,2,2],[1,3,4,2],[1,1,0,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,3],[1,1,0,1]],[[1,0,2,0],[2,2,2,2],[1,3,3,2],[1,1,0,2]],[[1,0,2,0],[2,2,2,3],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,2,2],[1,4,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,2,2],[1,3,4,2],[1,1,1,0]],[[1,0,2,0],[2,2,2,2],[1,3,3,3],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[2,3,3,0],[1,0,1,0]],[[2,0,2,0],[2,2,2,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[3,2,2,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,3],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[3,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,0,2,3],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,0,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,0,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[2,0,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[2,0,2,2],[1,2,2,2]],[[2,0,2,0],[2,2,2,2],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[3,2,2,2],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[3,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,0,4,1],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,0,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,0,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[2,0,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[2,0,3,1],[1,2,2,2]],[[1,0,2,0],[2,2,2,3],[2,0,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[2,0,4,2],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[2,0,3,3],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[2,0,3,2],[1,2,1,2]],[[2,0,2,0],[2,2,2,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[3,2,2,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,3],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[3,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,0,4,2],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,0,3,3],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,0,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,0,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,2,2],[2,0,3,2],[1,2,3,0]],[[2,0,2,0],[2,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[3,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[3,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,1,4,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,1,3,0],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,1,3,0],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[2,1,3,0],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[2,1,3,0],[1,2,2,2]],[[2,0,2,0],[2,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,0],[3,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[3,1,3,1],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,1,4,1],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,1,3,1],[2,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,1,3,1],[1,3,2,0]],[[1,0,2,0],[2,2,2,2],[2,1,3,1],[1,2,3,0]],[[2,0,2,0],[2,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[3,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,3],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[3,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,2,0,3],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,2,0,2],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,2,0,2],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[2,2,0,2],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[2,2,0,2],[1,2,2,2]],[[2,0,2,0],[2,2,2,2],[2,2,2,0],[1,2,2,1]],[[1,0,2,0],[3,2,2,2],[2,2,2,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[3,2,2,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,2,2,0],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,2,2,0],[1,3,2,1]],[[1,0,2,0],[2,2,2,2],[2,2,2,0],[1,2,3,1]],[[1,0,2,0],[2,2,2,2],[2,2,2,0],[1,2,2,2]],[[2,0,2,0],[2,2,2,2],[2,2,2,1],[1,2,2,0]],[[1,0,2,0],[3,2,2,2],[2,2,2,1],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[3,2,2,1],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,2,2,1],[2,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,2,2,1],[1,3,2,0]],[[1,0,2,0],[2,2,2,2],[2,2,2,1],[1,2,3,0]],[[1,0,2,0],[2,2,2,2],[2,2,4,0],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,2,3,0],[0,3,2,1]],[[1,0,2,0],[2,2,2,2],[2,2,3,0],[0,2,3,1]],[[1,0,2,0],[2,2,2,2],[2,2,3,0],[0,2,2,2]],[[2,0,2,0],[2,2,2,2],[2,2,3,0],[1,2,1,1]],[[1,0,2,0],[3,2,2,2],[2,2,3,0],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[3,2,3,0],[1,2,1,1]],[[1,0,2,0],[2,2,2,2],[2,2,3,0],[2,2,1,1]],[[1,0,2,0],[2,2,2,2],[2,2,3,0],[1,3,1,1]],[[1,0,2,0],[2,2,2,2],[2,2,4,1],[0,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,2,3,1],[0,3,2,0]],[[1,0,2,0],[2,2,2,2],[2,2,3,1],[0,2,3,0]],[[2,0,2,0],[2,2,2,2],[2,2,3,1],[1,2,0,1]],[[1,0,2,0],[3,2,2,2],[2,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,2,2],[3,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,2,2],[2,2,3,1],[2,2,0,1]],[[1,0,2,0],[2,2,2,2],[2,2,3,1],[1,3,0,1]],[[2,0,2,0],[2,2,2,2],[2,2,3,1],[1,2,1,0]],[[1,0,2,0],[3,2,2,2],[2,2,3,1],[1,2,1,0]],[[1,0,2,0],[2,2,2,2],[3,2,3,1],[1,2,1,0]],[[1,0,2,0],[2,2,2,2],[2,2,3,1],[2,2,1,0]],[[1,0,2,0],[2,2,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,2,1],[1,0,1,0]],[[1,2,1,1],[3,2,3,1],[2,3,2,1],[1,0,1,0]],[[1,3,1,1],[2,2,3,1],[2,3,2,1],[1,0,1,0]],[[2,2,1,1],[2,2,3,1],[2,3,2,1],[1,0,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,2,1],[1,0,0,1]],[[1,2,1,1],[3,2,3,1],[2,3,2,1],[1,0,0,1]],[[1,3,1,1],[2,2,3,1],[2,3,2,1],[1,0,0,1]],[[2,2,1,1],[2,2,3,1],[2,3,2,1],[1,0,0,1]],[[2,0,2,0],[2,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[3,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,3],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[3,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,4,0,2],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,0,3],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,0,2],[0,3,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,0,2],[0,2,3,1]],[[1,0,2,0],[2,2,2,2],[2,3,0,2],[0,2,2,2]],[[2,0,2,0],[2,2,2,2],[2,3,0,2],[1,1,2,1]],[[1,0,2,0],[3,2,2,2],[2,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[3,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[2,4,0,2],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,0,2],[2,1,2,1]],[[1,0,2,0],[3,2,2,2],[2,3,1,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[3,3,1,0],[1,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,1,0],[2,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,1,0],[1,3,2,1]],[[1,0,2,0],[3,2,2,2],[2,3,1,1],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[3,3,1,1],[1,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,3,1,1],[2,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,3,1,1],[1,3,2,0]],[[2,0,2,0],[2,2,2,2],[2,3,2,0],[0,2,2,1]],[[1,0,2,0],[3,2,2,2],[2,3,2,0],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[3,3,2,0],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,4,2,0],[0,2,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,2,0],[0,3,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,2,0],[0,2,3,1]],[[1,0,2,0],[2,2,2,2],[2,3,2,0],[0,2,2,2]],[[2,0,2,0],[2,2,2,2],[2,3,2,0],[1,1,2,1]],[[1,0,2,0],[3,2,2,2],[2,3,2,0],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[3,3,2,0],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[2,4,2,0],[1,1,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,2,0],[2,1,2,1]],[[2,0,2,0],[2,2,2,2],[2,3,2,1],[0,2,2,0]],[[1,0,2,0],[3,2,2,2],[2,3,2,1],[0,2,2,0]],[[1,0,2,0],[2,2,2,2],[3,3,2,1],[0,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,4,2,1],[0,2,2,0]],[[1,0,2,0],[2,2,2,2],[2,3,2,1],[0,3,2,0]],[[1,0,2,0],[2,2,2,2],[2,3,2,1],[0,2,3,0]],[[2,0,2,0],[2,2,2,2],[2,3,2,1],[1,1,2,0]],[[1,0,2,0],[3,2,2,2],[2,3,2,1],[1,1,2,0]],[[1,0,2,0],[2,2,2,2],[3,3,2,1],[1,1,2,0]],[[1,0,2,0],[2,2,2,2],[2,4,2,1],[1,1,2,0]],[[1,0,2,0],[2,2,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[2,2,3,1],[2,3,2,0],[2,2,0,0]],[[1,2,1,1],[2,2,3,1],[3,3,2,0],[1,2,0,0]],[[1,2,1,1],[3,2,3,1],[2,3,2,0],[1,2,0,0]],[[1,3,1,1],[2,2,3,1],[2,3,2,0],[1,2,0,0]],[[2,2,1,1],[2,2,3,1],[2,3,2,0],[1,2,0,0]],[[1,2,1,1],[2,2,3,1],[2,3,2,0],[2,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,2,0],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[2,3,2,0],[1,1,1,0]],[[1,3,1,1],[2,2,3,1],[2,3,2,0],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[2,3,2,0],[1,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,2,0],[1,0,1,1]],[[1,2,1,1],[3,2,3,1],[2,3,2,0],[1,0,1,1]],[[1,3,1,1],[2,2,3,1],[2,3,2,0],[1,0,1,1]],[[2,2,1,1],[2,2,3,1],[2,3,2,0],[1,0,1,1]],[[1,2,1,1],[2,2,3,1],[3,3,2,0],[0,2,1,0]],[[2,0,2,0],[2,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,0],[3,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,2,2,2],[3,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,2,2,2],[2,4,3,0],[0,1,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,4,0],[0,1,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,3,0],[0,1,3,1]],[[1,0,2,0],[2,2,2,2],[2,3,3,0],[0,1,2,2]],[[2,0,2,0],[2,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,0],[3,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,2,2,2],[3,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,2,2,2],[2,4,3,0],[0,2,1,1]],[[1,0,2,0],[2,2,2,2],[2,3,4,0],[0,2,1,1]],[[1,0,2,0],[2,2,2,2],[2,3,3,0],[0,3,1,1]],[[2,0,2,0],[2,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,0],[3,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,0],[2,2,2,2],[3,3,3,0],[1,0,2,1]],[[1,0,2,0],[2,2,2,2],[2,4,3,0],[1,0,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,4,0],[1,0,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,3,0],[2,0,2,1]],[[1,0,2,0],[2,2,2,2],[2,3,3,0],[1,0,3,1]],[[1,0,2,0],[2,2,2,2],[2,3,3,0],[1,0,2,2]],[[2,0,2,0],[2,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,0],[3,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,0],[2,2,2,2],[3,3,3,0],[1,1,1,1]],[[1,0,2,0],[2,2,2,2],[2,4,3,0],[1,1,1,1]],[[1,0,2,0],[2,2,2,2],[2,3,4,0],[1,1,1,1]],[[1,0,2,0],[2,2,2,2],[2,3,3,0],[2,1,1,1]],[[2,0,2,0],[2,2,2,2],[2,3,3,0],[1,2,0,1]],[[1,0,2,0],[3,2,2,2],[2,3,3,0],[1,2,0,1]],[[1,0,2,0],[2,2,2,2],[3,3,3,0],[1,2,0,1]],[[1,0,2,0],[2,2,2,2],[2,4,3,0],[1,2,0,1]],[[1,0,2,0],[2,2,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,3,2,0],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,3,2,0],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,3,2,0],[0,2,1,0]],[[2,0,2,0],[2,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,0],[3,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,2,2,2],[3,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,2,2,2],[2,4,3,1],[0,1,1,1]],[[1,0,2,0],[2,2,2,2],[2,3,4,1],[0,1,1,1]],[[2,0,2,0],[2,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,0],[3,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,2,2,2],[3,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,2,2,2],[2,4,3,1],[0,1,2,0]],[[1,0,2,0],[2,2,2,2],[2,3,4,1],[0,1,2,0]],[[1,0,2,0],[2,2,2,2],[2,3,3,1],[0,1,3,0]],[[2,0,2,0],[2,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,0],[3,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,2,2,2],[3,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,2,2,2],[2,4,3,1],[0,2,0,1]],[[1,0,2,0],[2,2,2,2],[2,3,4,1],[0,2,0,1]],[[1,0,2,0],[2,2,2,2],[2,3,3,1],[0,3,0,1]],[[2,0,2,0],[2,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,0],[3,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,2,2,2],[3,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,2,2,2],[2,4,3,1],[0,2,1,0]],[[1,0,2,0],[2,2,2,2],[2,3,4,1],[0,2,1,0]],[[1,0,2,0],[2,2,2,2],[2,3,3,1],[0,3,1,0]],[[2,0,2,0],[2,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[3,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,2,2,2],[3,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,2,2,2],[2,4,3,1],[1,0,1,1]],[[1,0,2,0],[2,2,2,2],[2,3,4,1],[1,0,1,1]],[[1,0,2,0],[2,2,2,2],[2,3,3,1],[2,0,1,1]],[[2,0,2,0],[2,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,0],[3,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,0],[2,2,2,2],[3,3,3,1],[1,0,2,0]],[[1,0,2,0],[2,2,2,2],[2,4,3,1],[1,0,2,0]],[[1,0,2,0],[2,2,2,2],[2,3,4,1],[1,0,2,0]],[[1,0,2,0],[2,2,2,2],[2,3,3,1],[2,0,2,0]],[[1,0,2,0],[2,2,2,2],[2,3,3,1],[1,0,3,0]],[[2,0,2,0],[2,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,0],[3,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,0],[2,2,2,2],[3,3,3,1],[1,1,0,1]],[[1,0,2,0],[2,2,2,2],[2,4,3,1],[1,1,0,1]],[[1,0,2,0],[2,2,2,2],[2,3,4,1],[1,1,0,1]],[[1,0,2,0],[2,2,2,2],[2,3,3,1],[2,1,0,1]],[[2,0,2,0],[2,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,0],[3,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,0],[2,2,2,2],[3,3,3,1],[1,1,1,0]],[[1,0,2,0],[2,2,2,2],[2,4,3,1],[1,1,1,0]],[[1,0,2,0],[2,2,2,2],[2,3,4,1],[1,1,1,0]],[[1,0,2,0],[2,2,2,2],[2,3,3,1],[2,1,1,0]],[[2,0,2,0],[2,2,2,2],[2,3,3,1],[1,2,0,0]],[[1,0,2,0],[3,2,2,2],[2,3,3,1],[1,2,0,0]],[[1,0,2,0],[2,2,2,2],[3,3,3,1],[1,2,0,0]],[[1,0,2,0],[2,2,2,2],[2,4,3,1],[1,2,0,0]],[[1,0,2,0],[2,2,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[2,2,3,1],[3,3,1,2],[1,0,1,0]],[[1,2,1,1],[3,2,3,1],[2,3,1,2],[1,0,1,0]],[[1,3,1,1],[2,2,3,1],[2,3,1,2],[1,0,1,0]],[[2,2,1,1],[2,2,3,1],[2,3,1,2],[1,0,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,1,2],[1,0,0,1]],[[1,2,1,1],[3,2,3,1],[2,3,1,2],[1,0,0,1]],[[1,3,1,1],[2,2,3,1],[2,3,1,2],[1,0,0,1]],[[2,2,1,1],[2,2,3,1],[2,3,1,2],[1,0,0,1]],[[1,2,1,1],[2,2,3,1],[2,3,1,1],[2,2,0,0]],[[1,2,1,1],[2,2,3,1],[3,3,1,1],[1,2,0,0]],[[1,2,1,1],[3,2,3,1],[2,3,1,1],[1,2,0,0]],[[1,3,1,1],[2,2,3,1],[2,3,1,1],[1,2,0,0]],[[2,2,1,1],[2,2,3,1],[2,3,1,1],[1,2,0,0]],[[1,2,1,1],[2,2,3,1],[2,3,1,1],[2,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,1,1],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[2,3,1,1],[1,1,1,0]],[[1,3,1,1],[2,2,3,1],[2,3,1,1],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[2,3,1,1],[1,1,1,0]],[[1,2,1,1],[2,2,3,1],[2,3,1,1],[2,1,0,1]],[[1,2,1,1],[2,2,3,1],[3,3,1,1],[1,1,0,1]],[[1,2,1,1],[3,2,3,1],[2,3,1,1],[1,1,0,1]],[[1,3,1,1],[2,2,3,1],[2,3,1,1],[1,1,0,1]],[[2,2,1,1],[2,2,3,1],[2,3,1,1],[1,1,0,1]],[[1,2,1,1],[2,2,3,1],[3,3,1,1],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,3,1,1],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,3,1,1],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,3,1,1],[0,2,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,1,1],[0,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,3,1,1],[0,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,3,1,1],[0,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,3,1,1],[0,2,0,1]],[[1,2,1,1],[2,2,3,1],[2,3,1,0],[2,2,0,1]],[[1,2,1,1],[2,2,3,1],[3,3,1,0],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,3,1,0],[1,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,3,1,0],[1,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,3,1,0],[1,2,0,1]],[[1,2,1,1],[2,2,3,1],[2,3,1,0],[2,1,1,1]],[[1,2,1,1],[2,2,3,1],[3,3,1,0],[1,1,1,1]],[[1,2,1,1],[3,2,3,1],[2,3,1,0],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[2,3,1,0],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[2,3,1,0],[1,1,1,1]],[[1,2,1,1],[2,2,3,1],[3,3,1,0],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[2,3,1,0],[0,2,1,1]],[[1,3,1,1],[2,2,3,1],[2,3,1,0],[0,2,1,1]],[[2,2,1,1],[2,2,3,1],[2,3,1,0],[0,2,1,1]],[[1,2,1,1],[2,2,3,1],[2,3,0,2],[2,2,0,0]],[[1,2,1,1],[2,2,3,1],[3,3,0,2],[1,2,0,0]],[[1,2,1,1],[3,2,3,1],[2,3,0,2],[1,2,0,0]],[[1,0,2,0],[2,2,3,0],[0,2,4,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[0,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,0],[0,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,0],[0,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,0],[0,2,3,2],[1,2,2,2]],[[1,0,2,0],[2,2,3,0],[0,4,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[0,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,0],[0,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,0],[0,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,0],[0,3,2,2],[1,2,2,2]],[[1,0,2,0],[2,2,3,0],[0,4,3,2],[1,1,2,1]],[[1,0,2,0],[2,2,3,0],[0,3,4,2],[1,1,2,1]],[[1,0,2,0],[2,2,3,0],[0,3,3,2],[1,1,3,1]],[[1,0,2,0],[2,2,3,0],[0,3,3,2],[1,1,2,2]],[[1,0,2,0],[2,2,3,0],[0,4,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,0],[0,3,4,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,0],[0,3,3,2],[2,2,1,1]],[[1,0,2,0],[2,2,3,0],[0,3,3,2],[1,3,1,1]],[[1,0,2,0],[2,2,3,0],[1,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[1,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,0],[1,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,3,0],[1,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,3,0],[1,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,2,3,0],[1,2,4,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,0],[1,2,3,2],[0,3,2,1]],[[1,0,2,0],[2,2,3,0],[1,2,3,2],[0,2,3,1]],[[1,0,2,0],[2,2,3,0],[1,2,3,2],[0,2,2,2]],[[1,0,2,0],[2,2,3,0],[1,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,0],[1,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,0],[1,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,3,0],[1,2,3,2],[1,2,3,0]],[[1,0,2,0],[2,2,3,0],[1,4,2,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,2,3,0],[1,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,2,3,0],[1,4,2,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,2,2],[0,3,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,2,2],[0,2,3,1]],[[1,0,2,0],[2,2,3,0],[1,3,2,2],[0,2,2,2]],[[1,0,2,0],[2,2,3,0],[1,4,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,0],[1,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,0],[1,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,2,3,0],[1,3,2,2],[1,2,3,0]],[[1,0,2,0],[2,2,3,0],[1,4,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,0],[2,2,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,0],[1,3,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,0],[1,2,3,1]],[[1,0,2,0],[2,2,3,0],[1,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,1],[1,1,2,2]],[[1,0,2,0],[2,2,3,0],[1,4,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,0],[1,3,4,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,2,3,0],[1,4,3,2],[0,1,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,4,2],[0,1,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,2],[0,1,3,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,2],[0,1,2,2]],[[1,0,2,0],[2,2,3,0],[1,4,3,2],[0,2,1,1]],[[1,0,2,0],[2,2,3,0],[1,3,4,2],[0,2,1,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,2],[0,3,1,1]],[[1,0,2,0],[2,2,3,0],[1,4,3,2],[1,0,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,2],[1,0,3,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,2],[1,0,2,2]],[[1,0,2,0],[2,2,3,0],[1,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,0],[1,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,0],[1,3,3,2],[1,1,3,0]],[[1,0,2,0],[2,2,3,0],[1,4,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,0],[1,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,2,3,0],[1,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,2,3,0],[1,4,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,0],[1,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,0],[1,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,2,3,0],[1,3,3,2],[1,3,1,0]],[[1,3,1,1],[2,2,3,1],[2,3,0,2],[1,2,0,0]],[[2,2,1,1],[2,2,3,1],[2,3,0,2],[1,2,0,0]],[[2,0,2,0],[2,2,3,0],[2,0,3,2],[1,2,2,1]],[[1,0,2,0],[3,2,3,0],[2,0,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[3,0,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,0,4,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,0,3,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,0,3,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,0],[2,0,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,0],[2,0,3,2],[1,2,2,2]],[[2,0,2,0],[2,2,3,0],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[3,2,3,0],[2,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[3,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,1,4,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,1,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,1,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,3,0],[2,1,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,3,0],[2,1,3,1],[1,2,2,2]],[[2,0,2,0],[2,2,3,0],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[3,2,3,0],[2,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,0],[3,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,0],[2,1,4,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,0],[2,1,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,0],[2,1,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,3,0],[2,1,3,2],[1,2,3,0]],[[2,0,2,0],[2,2,3,0],[2,2,2,1],[1,2,2,1]],[[1,0,2,0],[3,2,3,0],[2,2,2,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[3,2,2,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,2,2,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,2,2,1],[1,3,2,1]],[[1,0,2,0],[2,2,3,0],[2,2,2,1],[1,2,3,1]],[[1,0,2,0],[2,2,3,0],[2,2,2,1],[1,2,2,2]],[[2,0,2,0],[2,2,3,0],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[3,2,3,0],[2,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,0],[3,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,0],[2,2,2,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,0],[2,2,2,2],[1,3,2,0]],[[1,0,2,0],[2,2,3,0],[2,2,2,2],[1,2,3,0]],[[2,0,2,0],[2,2,3,0],[2,2,3,0],[1,2,2,1]],[[1,0,2,0],[3,2,3,0],[2,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[3,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,2,3,0],[2,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,2,3,0],[1,3,2,1]],[[1,0,2,0],[2,2,3,0],[2,2,3,0],[1,2,3,1]],[[1,0,2,0],[2,2,3,0],[2,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,2,3,1],[0,3,2,1]],[[1,0,2,0],[2,2,3,0],[2,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,2,3,0],[2,2,3,1],[0,2,2,2]],[[2,0,2,0],[2,2,3,0],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[3,2,3,0],[2,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,0],[3,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,0],[2,2,3,1],[2,2,1,1]],[[1,0,2,0],[2,2,3,0],[2,2,3,1],[1,3,1,1]],[[1,0,2,0],[2,2,3,0],[2,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,0],[2,2,3,2],[0,3,2,0]],[[1,0,2,0],[2,2,3,0],[2,2,3,2],[0,2,3,0]],[[2,0,2,0],[2,2,3,0],[2,2,3,2],[1,2,0,1]],[[1,0,2,0],[3,2,3,0],[2,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,0],[3,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,0],[2,2,3,2],[2,2,0,1]],[[1,0,2,0],[2,2,3,0],[2,2,3,2],[1,3,0,1]],[[2,0,2,0],[2,2,3,0],[2,2,3,2],[1,2,1,0]],[[1,0,2,0],[3,2,3,0],[2,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,0],[3,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,0],[2,2,3,2],[2,2,1,0]],[[1,0,2,0],[2,2,3,0],[2,2,3,2],[1,3,1,0]],[[1,0,2,0],[3,2,3,0],[2,3,1,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[3,3,1,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,1,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,1,1],[1,3,2,1]],[[1,0,2,0],[3,2,3,0],[2,3,1,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,0],[3,3,1,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,0],[2,3,1,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,0],[2,3,1,2],[1,3,2,0]],[[1,0,2,0],[3,2,3,0],[2,3,2,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[3,3,2,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,2,0],[2,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,2,0],[1,3,2,1]],[[2,0,2,0],[2,2,3,0],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[3,2,3,0],[2,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,0],[3,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,4,2,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,2,1],[0,3,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,2,1],[0,2,3,1]],[[1,0,2,0],[2,2,3,0],[2,3,2,1],[0,2,2,2]],[[2,0,2,0],[2,2,3,0],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[3,2,3,0],[2,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,0],[3,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,0],[2,4,2,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,2,1],[2,1,2,1]],[[2,0,2,0],[2,2,3,0],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[3,2,3,0],[2,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,0],[3,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,0],[2,4,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,0],[2,3,2,2],[0,3,2,0]],[[1,0,2,0],[2,2,3,0],[2,3,2,2],[0,2,3,0]],[[2,0,2,0],[2,2,3,0],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[3,2,3,0],[2,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,0],[3,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,0],[2,4,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,1],[2,3,0,2],[2,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,0,2],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[2,3,0,2],[1,1,1,0]],[[1,3,1,1],[2,2,3,1],[2,3,0,2],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[2,3,0,2],[1,1,1,0]],[[1,2,1,1],[2,2,3,1],[2,3,0,2],[2,1,0,1]],[[1,2,1,1],[2,2,3,1],[3,3,0,2],[1,1,0,1]],[[1,2,1,1],[3,2,3,1],[2,3,0,2],[1,1,0,1]],[[2,0,2,0],[2,2,3,0],[2,3,3,0],[0,2,2,1]],[[1,0,2,0],[3,2,3,0],[2,3,3,0],[0,2,2,1]],[[1,0,2,0],[2,2,3,0],[3,3,3,0],[0,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,4,3,0],[0,2,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,0],[0,3,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,0],[0,2,3,1]],[[2,0,2,0],[2,2,3,0],[2,3,3,0],[1,1,2,1]],[[1,0,2,0],[3,2,3,0],[2,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,2,3,0],[3,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,2,3,0],[2,4,3,0],[1,1,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,0],[2,1,2,1]],[[2,0,2,0],[2,2,3,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[3,2,3,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,3,0],[3,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,3,0],[2,4,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,1],[0,1,2,2]],[[2,0,2,0],[2,2,3,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[3,2,3,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,0],[3,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,0],[2,4,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,0],[2,3,4,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,1],[0,3,1,1]],[[2,0,2,0],[2,2,3,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[3,2,3,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,0],[3,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,0],[2,4,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,4,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,1],[2,0,2,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,1],[1,0,3,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,1],[1,0,2,2]],[[2,0,2,0],[2,2,3,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[3,2,3,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,0],[3,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,0],[2,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,0],[2,3,4,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,1],[2,1,1,1]],[[2,0,2,0],[2,2,3,0],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[3,2,3,0],[2,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,0],[3,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,0],[2,4,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,1],[2,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,3,0,2],[1,1,0,1]],[[2,2,1,1],[2,2,3,1],[2,3,0,2],[1,1,0,1]],[[2,0,2,0],[2,2,3,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[3,2,3,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,0],[3,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,0],[2,4,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,0],[2,3,4,2],[0,1,1,1]],[[2,0,2,0],[2,2,3,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[3,2,3,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,0],[3,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,0],[2,4,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,0],[2,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,0],[2,3,3,2],[0,1,3,0]],[[2,0,2,0],[2,2,3,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[3,2,3,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,0],[3,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,0],[2,4,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,0],[2,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,2],[0,3,0,1]],[[2,0,2,0],[2,2,3,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[3,2,3,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,0],[3,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,0],[2,4,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,0],[2,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,0],[2,3,3,2],[0,3,1,0]],[[2,0,2,0],[2,2,3,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[3,2,3,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,0],[3,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,0],[2,4,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,0],[2,3,4,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,2],[2,0,1,1]],[[2,0,2,0],[2,2,3,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[3,2,3,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,0],[3,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,0],[2,4,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,0],[2,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,0],[2,3,3,2],[2,0,2,0]],[[1,0,2,0],[2,2,3,0],[2,3,3,2],[1,0,3,0]],[[2,0,2,0],[2,2,3,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[3,2,3,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,0],[3,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,0],[2,4,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,0],[2,3,4,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,0],[2,3,3,2],[2,1,0,1]],[[2,0,2,0],[2,2,3,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[3,2,3,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,0],[3,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,0],[2,4,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,0],[2,3,4,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,0,2],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,3,0,2],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,3,0,2],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,3,0,2],[0,2,1,0]],[[2,0,2,0],[2,2,3,0],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[3,2,3,0],[2,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,2,3,0],[3,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,2,3,0],[2,4,3,2],[1,2,0,0]],[[1,0,2,0],[2,2,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,2,3,1],[3,3,0,2],[0,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,3,0,2],[0,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,3,0,2],[0,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,3,0,2],[0,2,0,1]],[[1,2,1,1],[2,2,3,1],[2,3,0,1],[2,2,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,0,1],[1,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,3,0,1],[1,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,3,0,1],[1,2,1,0]],[[1,0,2,0],[2,2,3,1],[0,1,3,3],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,1,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,1],[0,1,3,2],[1,2,2,2]],[[1,0,2,0],[2,2,3,1],[0,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,1],[0,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,1],[0,2,2,2],[1,2,2,2]],[[1,0,3,0],[2,2,3,1],[0,2,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,4,1],[0,2,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,3,1],[0,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,3,1],[0,2,3,1],[1,2,2,2]],[[1,0,3,0],[2,2,3,1],[0,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,4,1],[0,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[0,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[0,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[0,2,3,2],[1,2,1,2]],[[1,0,3,0],[2,2,3,1],[0,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,4,1],[0,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[0,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[0,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[0,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,1],[0,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,3,1],[0,2,3,2],[1,2,3,0]],[[1,0,2,0],[2,2,3,1],[0,4,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,1,3],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,1],[0,3,1,2],[1,2,2,2]],[[1,0,2,0],[2,2,3,1],[0,4,2,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,2,3,1],[0,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,2,3,1],[0,3,2,3],[1,1,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,2,2],[1,1,3,1]],[[1,0,2,0],[2,2,3,1],[0,3,2,2],[1,1,2,2]],[[1,0,2,0],[2,2,3,1],[0,4,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[0,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,1],[0,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,2,3,1],[0,3,2,2],[1,2,3,0]],[[1,0,2,0],[2,2,3,1],[0,4,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,0],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,0],[1,3,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,0],[1,2,3,1]],[[1,0,3,0],[2,2,3,1],[0,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,4,1],[0,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,1],[0,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,1],[1,1,2,2]],[[1,0,3,0],[2,2,3,1],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,4,1],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[0,4,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[0,3,4,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,1],[1,3,1,1]],[[1,0,3,0],[2,2,3,1],[0,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,2,4,1],[0,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,3],[1,0,2,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,2],[1,0,2,2]],[[1,0,3,0],[2,2,3,1],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,2,4,1],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,2,3,1],[0,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,2,3,1],[0,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,3],[1,1,1,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,2],[1,1,1,2]],[[1,0,3,0],[2,2,3,1],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,4,1],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,1],[0,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,1],[0,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,1],[0,3,3,3],[1,1,2,0]],[[1,0,2,0],[2,2,3,1],[0,3,3,2],[1,1,3,0]],[[1,0,3,0],[2,2,3,1],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,4,1],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,1],[0,4,3,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,1],[0,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,3],[1,2,0,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,2,3,1],[0,3,3,2],[1,2,0,2]],[[1,0,3,0],[2,2,3,1],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,4,1],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,1],[0,4,3,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,1],[0,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,1],[0,3,3,3],[1,2,1,0]],[[1,0,2,0],[2,2,3,1],[0,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,2,3,1],[0,3,3,2],[1,3,1,0]],[[2,2,1,1],[2,2,3,1],[2,3,0,1],[1,2,1,0]],[[1,2,1,1],[2,2,3,1],[2,3,0,1],[2,1,2,0]],[[1,2,1,1],[2,2,3,1],[3,3,0,1],[1,1,2,0]],[[1,0,2,0],[2,2,3,1],[1,1,3,3],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,1,3,2],[0,2,3,1]],[[1,0,2,0],[2,2,3,1],[1,1,3,2],[0,2,2,2]],[[1,0,2,0],[2,2,3,1],[1,2,2,3],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,2,2,2],[0,3,2,1]],[[1,0,2,0],[2,2,3,1],[1,2,2,2],[0,2,3,1]],[[1,0,2,0],[2,2,3,1],[1,2,2,2],[0,2,2,2]],[[1,0,3,0],[2,2,3,1],[1,2,3,1],[0,2,2,1]],[[1,0,2,0],[2,2,4,1],[1,2,3,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,2,3,1],[0,3,2,1]],[[1,0,2,0],[2,2,3,1],[1,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,2,3,1],[1,2,3,1],[0,2,2,2]],[[1,0,3,0],[2,2,3,1],[1,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,2,4,1],[1,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,2,3,1],[1,2,4,2],[0,2,1,1]],[[1,0,2,0],[2,2,3,1],[1,2,3,3],[0,2,1,1]],[[1,0,2,0],[2,2,3,1],[1,2,3,2],[0,2,1,2]],[[1,0,3,0],[2,2,3,1],[1,2,3,2],[0,2,2,0]],[[1,0,2,0],[2,2,4,1],[1,2,3,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,1],[1,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,1],[1,2,3,3],[0,2,2,0]],[[1,0,2,0],[2,2,3,1],[1,2,3,2],[0,3,2,0]],[[1,0,2,0],[2,2,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[3,2,3,1],[2,3,0,1],[1,1,2,0]],[[1,3,1,1],[2,2,3,1],[2,3,0,1],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[2,3,0,1],[1,1,2,0]],[[1,0,2,0],[2,2,3,1],[1,4,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,0,3],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,0,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,0,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,0,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,1],[1,3,0,2],[1,2,2,2]],[[1,0,2,0],[2,2,3,1],[1,4,1,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,1,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,1,1],[1,3,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,1,1],[1,2,3,1]],[[1,0,2,0],[2,2,3,1],[1,3,1,1],[1,2,2,2]],[[1,0,2,0],[2,2,3,1],[1,4,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,1,3],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,1,2],[0,3,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,1,2],[0,2,3,1]],[[1,0,2,0],[2,2,3,1],[1,3,1,2],[0,2,2,2]],[[1,0,2,0],[2,2,3,1],[1,4,1,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[1,3,1,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,1],[1,3,1,2],[1,3,2,0]],[[1,0,2,0],[2,2,3,1],[1,3,1,2],[1,2,3,0]],[[1,0,2,0],[2,2,3,1],[1,4,2,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,1],[0,3,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,1],[0,2,3,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,1],[0,2,2,2]],[[1,0,2,0],[2,2,3,1],[1,4,2,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,1],[2,2,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,1],[1,3,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,2],[0,1,2,2]],[[1,0,2,0],[2,2,3,1],[1,4,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,1],[1,3,2,2],[0,3,2,0]],[[1,0,2,0],[2,2,3,1],[1,3,2,2],[0,2,3,0]],[[1,0,2,0],[2,2,3,1],[1,3,2,3],[1,0,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,2],[1,0,3,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,2],[1,0,2,2]],[[1,0,2,0],[2,2,3,1],[1,4,2,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,2],[2,2,0,1]],[[1,0,2,0],[2,2,3,1],[1,3,2,2],[1,3,0,1]],[[1,0,2,0],[2,2,3,1],[1,4,2,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,1],[1,3,2,2],[2,2,1,0]],[[1,0,2,0],[2,2,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,0,1],[0,2,2,0]],[[1,2,1,1],[3,2,3,1],[2,3,0,1],[0,2,2,0]],[[1,3,1,1],[2,2,3,1],[2,3,0,1],[0,2,2,0]],[[1,0,2,0],[2,2,3,1],[1,4,3,0],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,0],[0,3,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,0],[0,2,3,1]],[[1,0,3,0],[2,2,3,1],[1,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,4,1],[1,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,3,1],[1,4,3,1],[0,1,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,1],[0,1,2,2]],[[1,0,3,0],[2,2,3,1],[1,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,4,1],[1,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,1],[1,4,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,4,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,1],[0,3,1,1]],[[1,0,3,0],[2,2,3,1],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,4,1],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,1],[1,4,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,4,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,1],[1,0,3,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,1],[1,0,2,2]],[[1,0,3,0],[2,2,3,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,4,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,1],[1,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,4,1],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[2,3,0,1],[0,2,2,0]],[[1,2,1,1],[2,2,3,1],[2,3,0,0],[2,2,2,0]],[[1,0,3,0],[2,2,3,1],[1,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,2,4,1],[1,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,2],[0,0,2,2]],[[1,0,3,0],[2,2,3,1],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,4,1],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,1],[1,4,3,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,2],[0,1,1,2]],[[1,0,3,0],[2,2,3,1],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,4,1],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,1],[1,4,3,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,1],[1,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,1],[1,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,2,3,1],[1,3,3,2],[0,1,3,0]],[[1,0,3,0],[2,2,3,1],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,4,1],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,1],[1,4,3,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,1],[1,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,2],[0,3,0,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,2],[0,2,0,2]],[[1,0,3,0],[2,2,3,1],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,4,1],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,1],[1,4,3,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,1],[1,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,1],[1,3,3,3],[0,2,1,0]],[[1,0,2,0],[2,2,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,2,3,1],[3,3,0,0],[1,2,2,0]],[[1,2,1,1],[3,2,3,1],[2,3,0,0],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[2,3,0,0],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[2,3,0,0],[1,2,2,0]],[[1,2,1,1],[2,2,3,1],[2,3,0,0],[2,2,1,1]],[[1,2,1,1],[2,2,3,1],[3,3,0,0],[1,2,1,1]],[[1,2,1,1],[3,2,3,1],[2,3,0,0],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[2,3,0,0],[1,2,1,1]],[[1,0,3,0],[2,2,3,1],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,4,1],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,1],[1,4,3,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,4,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,3],[1,0,1,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,2],[1,0,1,2]],[[1,0,3,0],[2,2,3,1],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,4,1],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,1],[1,4,3,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,1],[1,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,1],[1,3,3,3],[1,0,2,0]],[[1,0,2,0],[2,2,3,1],[1,3,3,2],[1,0,3,0]],[[1,0,3,0],[2,2,3,1],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,4,1],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,1],[1,4,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,1],[1,3,4,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,3],[1,1,0,1]],[[1,0,2,0],[2,2,3,1],[1,3,3,2],[1,1,0,2]],[[1,0,3,0],[2,2,3,1],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,4,1],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,1],[1,4,3,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,1],[1,3,4,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,1],[1,3,3,3],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[2,3,0,0],[1,2,1,1]],[[1,2,1,1],[2,2,3,1],[2,3,0,0],[2,1,2,1]],[[1,2,1,1],[2,2,3,1],[3,3,0,0],[1,1,2,1]],[[1,2,1,1],[3,2,3,1],[2,3,0,0],[1,1,2,1]],[[1,3,1,1],[2,2,3,1],[2,3,0,0],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[2,3,0,0],[1,1,2,1]],[[1,2,1,1],[2,2,3,1],[3,3,0,0],[0,2,2,1]],[[1,2,1,1],[3,2,3,1],[2,3,0,0],[0,2,2,1]],[[1,3,1,1],[2,2,3,1],[2,3,0,0],[0,2,2,1]],[[2,2,1,1],[2,2,3,1],[2,3,0,0],[0,2,2,1]],[[2,0,2,0],[2,2,3,1],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[3,2,3,1],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[3,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,0,2,3],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,0,2,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,0,2,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,1],[2,0,2,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,1],[2,0,2,2],[1,2,2,2]],[[2,0,2,0],[2,2,3,1],[2,0,3,1],[1,2,2,1]],[[1,0,3,0],[2,2,3,1],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[3,2,3,1],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,4,1],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[3,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,0,4,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,0,3,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,0,3,1],[1,3,2,1]],[[1,0,2,0],[2,2,3,1],[2,0,3,1],[1,2,3,1]],[[1,0,2,0],[2,2,3,1],[2,0,3,1],[1,2,2,2]],[[1,0,3,0],[2,2,3,1],[2,0,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,4,1],[2,0,3,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[2,0,4,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[2,0,3,3],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[2,0,3,2],[1,2,1,2]],[[2,0,2,0],[2,2,3,1],[2,0,3,2],[1,2,2,0]],[[1,0,3,0],[2,2,3,1],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[3,2,3,1],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,4,1],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[3,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[2,0,4,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[2,0,3,3],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[2,0,3,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,1],[2,0,3,2],[1,3,2,0]],[[1,0,2,0],[2,2,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[2,2,3,1],[2,2,3,1],[2,1,0,0]],[[1,2,1,1],[2,2,3,1],[3,2,3,1],[1,1,0,0]],[[2,0,2,0],[2,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[3,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[3,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,2,0,3],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,2,0,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,2,0,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,1],[2,2,0,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,1],[2,2,0,2],[1,2,2,2]],[[2,0,2,0],[2,2,3,1],[2,2,1,1],[1,2,2,1]],[[1,0,2,0],[3,2,3,1],[2,2,1,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[3,2,1,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,2,1,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,2,1,1],[1,3,2,1]],[[1,0,2,0],[2,2,3,1],[2,2,1,1],[1,2,3,1]],[[1,0,2,0],[2,2,3,1],[2,2,1,1],[1,2,2,2]],[[2,0,2,0],[2,2,3,1],[2,2,1,2],[1,2,2,0]],[[1,0,2,0],[3,2,3,1],[2,2,1,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[3,2,1,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[2,2,1,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,1],[2,2,1,2],[1,3,2,0]],[[1,0,2,0],[2,2,3,1],[2,2,1,2],[1,2,3,0]],[[2,0,2,0],[2,2,3,1],[2,2,2,1],[1,2,1,1]],[[1,0,2,0],[3,2,3,1],[2,2,2,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[3,2,2,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,1],[2,2,2,1],[2,2,1,1]],[[1,0,2,0],[2,2,3,1],[2,2,2,1],[1,3,1,1]],[[2,0,2,0],[2,2,3,1],[2,2,2,2],[1,2,0,1]],[[1,0,2,0],[3,2,3,1],[2,2,2,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,1],[3,2,2,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,1],[2,2,2,2],[2,2,0,1]],[[1,0,2,0],[2,2,3,1],[2,2,2,2],[1,3,0,1]],[[2,0,2,0],[2,2,3,1],[2,2,2,2],[1,2,1,0]],[[1,0,2,0],[3,2,3,1],[2,2,2,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,1],[3,2,2,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,1],[2,2,2,2],[2,2,1,0]],[[1,0,2,0],[2,2,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,1,1],[3,2,3,1],[2,2,3,1],[1,1,0,0]],[[1,3,1,1],[2,2,3,1],[2,2,3,1],[1,1,0,0]],[[2,2,1,1],[2,2,3,1],[2,2,3,1],[1,1,0,0]],[[1,2,1,1],[2,2,3,1],[3,2,3,1],[0,2,0,0]],[[1,2,1,1],[3,2,3,1],[2,2,3,1],[0,2,0,0]],[[1,3,1,1],[2,2,3,1],[2,2,3,1],[0,2,0,0]],[[2,2,1,1],[2,2,3,1],[2,2,3,1],[0,2,0,0]],[[1,2,1,1],[2,2,3,1],[2,2,3,0],[2,2,0,0]],[[1,2,1,1],[2,2,3,1],[3,2,3,0],[1,2,0,0]],[[1,2,1,1],[3,2,3,1],[2,2,3,0],[1,2,0,0]],[[1,3,1,1],[2,2,3,1],[2,2,3,0],[1,2,0,0]],[[2,2,1,1],[2,2,3,1],[2,2,3,0],[1,2,0,0]],[[2,0,2,0],[2,2,3,1],[2,3,0,1],[1,2,2,1]],[[1,0,2,0],[3,2,3,1],[2,3,0,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[3,3,0,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,3,0,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,3,0,1],[1,3,2,1]],[[2,0,2,0],[2,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[3,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[3,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,4,0,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,3,0,3],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,3,0,2],[0,3,2,1]],[[1,0,2,0],[2,2,3,1],[2,3,0,2],[0,2,3,1]],[[1,0,2,0],[2,2,3,1],[2,3,0,2],[0,2,2,2]],[[2,0,2,0],[2,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,0,2,0],[3,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,2,3,1],[3,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,2,3,1],[2,4,0,2],[1,1,2,1]],[[1,0,2,0],[2,2,3,1],[2,3,0,2],[2,1,2,1]],[[2,0,2,0],[2,2,3,1],[2,3,0,2],[1,2,2,0]],[[1,0,2,0],[3,2,3,1],[2,3,0,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[3,3,0,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,1],[2,3,0,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,1],[2,3,0,2],[1,3,2,0]],[[2,0,2,0],[2,2,3,1],[2,3,1,1],[0,2,2,1]],[[1,0,2,0],[3,2,3,1],[2,3,1,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[3,3,1,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,4,1,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,1],[2,3,1,1],[0,3,2,1]],[[1,0,2,0],[2,2,3,1],[2,3,1,1],[0,2,3,1]],[[1,0,2,0],[2,2,3,1],[2,3,1,1],[0,2,2,2]],[[2,0,2,0],[2,2,3,1],[2,3,1,1],[1,1,2,1]],[[1,0,2,0],[3,2,3,1],[2,3,1,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,1],[3,3,1,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,1],[2,4,1,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,1],[2,3,1,1],[2,1,2,1]],[[2,0,2,0],[2,2,3,1],[2,3,1,2],[0,2,2,0]],[[1,0,2,0],[3,2,3,1],[2,3,1,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,1],[3,3,1,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,1],[2,4,1,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,1],[2,3,1,2],[0,3,2,0]],[[1,0,2,0],[2,2,3,1],[2,3,1,2],[0,2,3,0]],[[2,0,2,0],[2,2,3,1],[2,3,1,2],[1,1,2,0]],[[1,0,2,0],[3,2,3,1],[2,3,1,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,1],[3,3,1,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,1],[2,4,1,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,1],[2,2,3,0],[2,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,2,3,0],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[2,2,3,0],[1,1,1,0]],[[2,0,2,0],[2,2,3,1],[2,3,2,1],[0,1,2,1]],[[1,0,2,0],[3,2,3,1],[2,3,2,1],[0,1,2,1]],[[1,0,2,0],[2,2,3,1],[3,3,2,1],[0,1,2,1]],[[1,0,2,0],[2,2,3,1],[2,4,2,1],[0,1,2,1]],[[2,0,2,0],[2,2,3,1],[2,3,2,1],[0,2,1,1]],[[1,0,2,0],[3,2,3,1],[2,3,2,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,1],[3,3,2,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,1],[2,4,2,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,1],[2,3,2,1],[0,3,1,1]],[[2,0,2,0],[2,2,3,1],[2,3,2,1],[1,0,2,1]],[[1,0,2,0],[3,2,3,1],[2,3,2,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,1],[3,3,2,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,1],[2,4,2,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,1],[2,3,2,1],[2,0,2,1]],[[2,0,2,0],[2,2,3,1],[2,3,2,1],[1,1,1,1]],[[1,0,2,0],[3,2,3,1],[2,3,2,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,1],[3,3,2,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,1],[2,4,2,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,1],[2,3,2,1],[2,1,1,1]],[[2,0,2,0],[2,2,3,1],[2,3,2,1],[1,2,0,1]],[[1,0,2,0],[3,2,3,1],[2,3,2,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,1],[3,3,2,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,1],[2,4,2,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,1],[2,3,2,1],[2,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,2,3,0],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[2,2,3,0],[1,1,1,0]],[[1,2,1,1],[2,2,3,1],[2,2,3,0],[2,0,2,0]],[[2,0,2,0],[2,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,2,0],[3,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,1],[3,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,1],[2,4,2,2],[0,1,1,1]],[[2,0,2,0],[2,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,2,0],[3,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,1],[3,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,1],[2,4,2,2],[0,1,2,0]],[[2,0,2,0],[2,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,2,0],[3,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,1],[3,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,1],[2,4,2,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,1],[2,3,2,2],[0,3,0,1]],[[2,0,2,0],[2,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,2,0],[3,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,1],[3,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,1],[2,4,2,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,1,1],[2,2,3,1],[3,2,3,0],[1,0,2,0]],[[1,2,1,1],[3,2,3,1],[2,2,3,0],[1,0,2,0]],[[1,3,1,1],[2,2,3,1],[2,2,3,0],[1,0,2,0]],[[2,2,1,1],[2,2,3,1],[2,2,3,0],[1,0,2,0]],[[2,0,2,0],[2,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,2,0],[3,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,1],[3,3,2,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,1],[2,4,2,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,1],[2,3,2,2],[2,0,1,1]],[[2,0,2,0],[2,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,2,0],[3,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,1],[3,3,2,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,1],[2,4,2,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,1],[2,3,2,2],[2,0,2,0]],[[2,0,2,0],[2,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,2,0],[3,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,1],[3,3,2,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,1],[2,4,2,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,1],[2,3,2,2],[2,1,0,1]],[[2,0,2,0],[2,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,2,0],[3,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,1],[3,3,2,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,1],[2,4,2,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,2,3,0],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,2,3,0],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,2,3,0],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,2,3,0],[0,2,1,0]],[[2,0,2,0],[2,2,3,1],[2,3,2,2],[1,2,0,0]],[[1,0,2,0],[3,2,3,1],[2,3,2,2],[1,2,0,0]],[[1,0,2,0],[2,2,3,1],[3,3,2,2],[1,2,0,0]],[[1,0,2,0],[2,2,3,1],[2,4,2,2],[1,2,0,0]],[[1,0,2,0],[2,2,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,1,1],[2,2,3,1],[3,2,3,0],[0,1,2,0]],[[1,2,1,1],[3,2,3,1],[2,2,3,0],[0,1,2,0]],[[1,3,1,1],[2,2,3,1],[2,2,3,0],[0,1,2,0]],[[2,2,1,1],[2,2,3,1],[2,2,3,0],[0,1,2,0]],[[1,2,1,1],[2,2,3,1],[2,2,2,1],[2,2,0,0]],[[1,2,1,1],[2,2,3,1],[3,2,2,1],[1,2,0,0]],[[1,2,1,1],[3,2,3,1],[2,2,2,1],[1,2,0,0]],[[1,3,1,1],[2,2,3,1],[2,2,2,1],[1,2,0,0]],[[2,2,1,1],[2,2,3,1],[2,2,2,1],[1,2,0,0]],[[2,0,2,0],[2,2,3,1],[2,3,3,2],[0,2,0,0]],[[1,0,2,0],[3,2,3,1],[2,3,3,2],[0,2,0,0]],[[1,0,2,0],[2,2,3,1],[3,3,3,2],[0,2,0,0]],[[1,0,2,0],[2,2,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,1,1],[2,2,3,1],[2,2,2,1],[2,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,2,2,1],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[2,2,2,1],[1,1,1,0]],[[1,3,1,1],[2,2,3,1],[2,2,2,1],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[2,2,2,1],[1,1,1,0]],[[1,2,1,1],[2,2,3,1],[2,2,2,1],[2,1,0,1]],[[1,2,1,1],[2,2,3,1],[3,2,2,1],[1,1,0,1]],[[1,2,1,1],[3,2,3,1],[2,2,2,1],[1,1,0,1]],[[1,3,1,1],[2,2,3,1],[2,2,2,1],[1,1,0,1]],[[2,2,1,1],[2,2,3,1],[2,2,2,1],[1,1,0,1]],[[1,2,1,1],[2,2,3,1],[2,2,2,1],[2,0,2,0]],[[1,2,1,1],[2,2,3,1],[3,2,2,1],[1,0,2,0]],[[1,2,1,1],[3,2,3,1],[2,2,2,1],[1,0,2,0]],[[1,3,1,1],[2,2,3,1],[2,2,2,1],[1,0,2,0]],[[2,2,1,1],[2,2,3,1],[2,2,2,1],[1,0,2,0]],[[1,2,1,1],[2,2,3,1],[2,2,2,1],[2,0,1,1]],[[1,2,1,1],[2,2,3,1],[3,2,2,1],[1,0,1,1]],[[1,2,1,1],[3,2,3,1],[2,2,2,1],[1,0,1,1]],[[1,3,1,1],[2,2,3,1],[2,2,2,1],[1,0,1,1]],[[2,2,1,1],[2,2,3,1],[2,2,2,1],[1,0,1,1]],[[1,2,1,1],[2,2,3,1],[3,2,2,1],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,2,2,1],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,2,2,1],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,2,2,1],[0,2,1,0]],[[1,2,1,1],[2,2,3,1],[3,2,2,1],[0,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,2,2,1],[0,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,2,2,1],[0,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,2,2,1],[0,2,0,1]],[[2,0,2,0],[2,2,3,1],[2,3,3,2],[1,1,0,0]],[[1,0,2,0],[3,2,3,1],[2,3,3,2],[1,1,0,0]],[[1,0,2,0],[2,2,3,1],[3,3,3,2],[1,1,0,0]],[[1,0,2,0],[2,2,3,1],[2,4,3,2],[1,1,0,0]],[[1,0,2,0],[2,2,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,1,1],[2,2,3,1],[3,2,2,1],[0,1,2,0]],[[1,2,1,1],[3,2,3,1],[2,2,2,1],[0,1,2,0]],[[1,3,1,1],[2,2,3,1],[2,2,2,1],[0,1,2,0]],[[2,2,1,1],[2,2,3,1],[2,2,2,1],[0,1,2,0]],[[1,2,1,1],[2,2,3,1],[3,2,2,1],[0,1,1,1]],[[1,2,1,1],[3,2,3,1],[2,2,2,1],[0,1,1,1]],[[1,3,1,1],[2,2,3,1],[2,2,2,1],[0,1,1,1]],[[2,2,1,1],[2,2,3,1],[2,2,2,1],[0,1,1,1]],[[1,2,1,1],[2,2,3,1],[2,2,2,0],[2,2,0,1]],[[1,2,1,1],[2,2,3,1],[3,2,2,0],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,2,2,0],[1,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,2,2,0],[1,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,2,2,0],[1,2,0,1]],[[1,2,1,1],[2,2,3,1],[2,2,2,0],[2,1,1,1]],[[1,2,1,1],[2,2,3,1],[3,2,2,0],[1,1,1,1]],[[1,2,1,1],[3,2,3,1],[2,2,2,0],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[2,2,2,0],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[2,2,2,0],[1,1,1,1]],[[1,2,1,1],[2,2,3,1],[2,2,2,0],[2,0,2,1]],[[1,2,1,1],[2,2,3,1],[3,2,2,0],[1,0,2,1]],[[1,2,1,1],[3,2,3,1],[2,2,2,0],[1,0,2,1]],[[1,3,1,1],[2,2,3,1],[2,2,2,0],[1,0,2,1]],[[2,2,1,1],[2,2,3,1],[2,2,2,0],[1,0,2,1]],[[1,2,1,1],[2,2,3,1],[3,2,2,0],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[2,2,2,0],[0,2,1,1]],[[1,3,1,1],[2,2,3,1],[2,2,2,0],[0,2,1,1]],[[2,2,1,1],[2,2,3,1],[2,2,2,0],[0,2,1,1]],[[1,2,1,1],[2,2,3,1],[3,2,2,0],[0,1,2,1]],[[1,2,1,1],[3,2,3,1],[2,2,2,0],[0,1,2,1]],[[1,3,1,1],[2,2,3,1],[2,2,2,0],[0,1,2,1]],[[2,2,1,1],[2,2,3,1],[2,2,2,0],[0,1,2,1]],[[1,2,1,1],[2,2,3,1],[2,2,1,2],[2,2,0,0]],[[1,2,1,1],[2,2,3,1],[3,2,1,2],[1,2,0,0]],[[1,2,1,1],[3,2,3,1],[2,2,1,2],[1,2,0,0]],[[1,3,1,1],[2,2,3,1],[2,2,1,2],[1,2,0,0]],[[2,2,1,1],[2,2,3,1],[2,2,1,2],[1,2,0,0]],[[1,2,1,1],[2,2,3,1],[2,2,1,2],[2,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,2,1,2],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[2,2,1,2],[1,1,1,0]],[[1,3,1,1],[2,2,3,1],[2,2,1,2],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[2,2,1,2],[1,1,1,0]],[[1,2,1,1],[2,2,3,1],[2,2,1,2],[2,1,0,1]],[[1,2,1,1],[2,2,3,1],[3,2,1,2],[1,1,0,1]],[[1,2,1,1],[3,2,3,1],[2,2,1,2],[1,1,0,1]],[[1,3,1,1],[2,2,3,1],[2,2,1,2],[1,1,0,1]],[[2,2,1,1],[2,2,3,1],[2,2,1,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,3],[0,0,3,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,0,3,3],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,0,3,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[0,0,3,2],[1,2,2,2]],[[1,0,3,0],[2,2,3,2],[0,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,4,2],[0,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,3],[0,2,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,2,1,3],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,2,1,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,2,1,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,2],[0,2,1,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[0,2,1,2],[1,2,2,2]],[[1,0,3,0],[2,2,3,2],[0,2,2,2],[1,2,1,1]],[[1,0,2,0],[2,2,4,2],[0,2,2,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,3],[0,2,2,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[0,2,2,3],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[0,2,2,2],[1,2,1,2]],[[1,0,3,0],[2,2,3,2],[0,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,4,2],[0,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,3],[0,2,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[0,2,2,3],[1,2,2,0]],[[1,0,3,0],[2,2,3,2],[0,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,4,2],[0,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,3],[0,2,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,2,4,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,2,3,0],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,2,3,0],[1,3,2,1]],[[1,0,2,0],[2,2,3,2],[0,2,3,0],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[0,2,3,0],[1,2,2,2]],[[1,0,3,0],[2,2,3,2],[0,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,4,2],[0,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,3],[0,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[0,2,4,1],[1,2,1,1]],[[1,0,3,0],[2,2,3,2],[0,2,3,1],[1,2,2,0]],[[1,0,2,0],[2,2,4,2],[0,2,3,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,3],[0,2,3,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[0,2,4,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[0,2,3,1],[2,2,2,0]],[[1,0,2,0],[2,2,3,2],[0,2,3,1],[1,3,2,0]],[[1,0,2,0],[2,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,1,1],[2,2,3,1],[2,2,1,2],[2,0,2,0]],[[1,2,1,1],[2,2,3,1],[3,2,1,2],[1,0,2,0]],[[1,2,1,1],[3,2,3,1],[2,2,1,2],[1,0,2,0]],[[1,3,1,1],[2,2,3,1],[2,2,1,2],[1,0,2,0]],[[1,0,3,0],[2,2,3,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,4,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,3],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,4,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,0,3],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,0,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,0,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,0,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[0,3,0,2],[1,2,2,2]],[[1,0,3,0],[2,2,3,2],[0,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,2,4,2],[0,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,2,3,3],[0,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,1,3],[1,1,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,1,2],[1,1,3,1]],[[1,0,2,0],[2,2,3,2],[0,3,1,2],[1,1,2,2]],[[1,0,2,0],[2,2,3,2],[0,4,2,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,2,0],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,2,0],[1,3,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,2,0],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[0,3,2,0],[1,2,2,2]],[[1,0,2,0],[2,2,3,2],[0,4,2,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[0,3,2,1],[2,2,2,0]],[[1,0,2,0],[2,2,3,2],[0,3,2,1],[1,3,2,0]],[[1,0,2,0],[2,2,3,2],[0,3,2,1],[1,2,3,0]],[[1,0,3,0],[2,2,3,2],[0,3,2,2],[1,0,2,1]],[[1,0,2,0],[2,2,4,2],[0,3,2,2],[1,0,2,1]],[[1,0,2,0],[2,2,3,3],[0,3,2,2],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,2,3],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,2,2],[1,0,2,2]],[[1,0,3,0],[2,2,3,2],[0,3,2,2],[1,1,1,1]],[[1,0,2,0],[2,2,4,2],[0,3,2,2],[1,1,1,1]],[[1,0,2,0],[2,2,3,3],[0,3,2,2],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[0,3,2,3],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[0,3,2,2],[1,1,1,2]],[[1,0,3,0],[2,2,3,2],[0,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,4,2],[0,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,3],[0,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,2],[0,3,2,3],[1,1,2,0]],[[1,0,3,0],[2,2,3,2],[0,3,2,2],[1,2,0,1]],[[1,0,2,0],[2,2,4,2],[0,3,2,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,3],[0,3,2,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[0,3,2,3],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[0,3,2,2],[1,2,0,2]],[[1,0,3,0],[2,2,3,2],[0,3,2,2],[1,2,1,0]],[[1,0,2,0],[2,2,4,2],[0,3,2,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,3],[0,3,2,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[0,3,2,3],[1,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,2,1,2],[1,0,2,0]],[[1,2,1,1],[2,2,3,1],[2,2,1,2],[2,0,1,1]],[[1,2,1,1],[2,2,3,1],[3,2,1,2],[1,0,1,1]],[[1,2,1,1],[3,2,3,1],[2,2,1,2],[1,0,1,1]],[[1,3,1,1],[2,2,3,1],[2,2,1,2],[1,0,1,1]],[[2,2,1,1],[2,2,3,1],[2,2,1,2],[1,0,1,1]],[[1,0,3,0],[2,2,3,2],[0,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,2,4,2],[0,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,2,3,3],[0,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,2,3,2],[0,4,3,0],[1,1,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,4,0],[1,1,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,3,0],[1,1,3,1]],[[1,0,2,0],[2,2,3,2],[0,3,3,0],[1,1,2,2]],[[1,0,3,0],[2,2,3,2],[0,3,3,0],[1,2,1,1]],[[1,0,2,0],[2,2,4,2],[0,3,3,0],[1,2,1,1]],[[1,0,2,0],[2,2,3,3],[0,3,3,0],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[0,4,3,0],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[0,3,4,0],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[0,3,3,0],[2,2,1,1]],[[1,0,2,0],[2,2,3,2],[0,3,3,0],[1,3,1,1]],[[1,0,3,0],[2,2,3,2],[0,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,4,2],[0,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,3],[0,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[0,3,4,1],[1,0,2,1]],[[1,0,3,0],[2,2,3,2],[0,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,4,2],[0,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,3],[0,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[0,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[0,3,4,1],[1,1,1,1]],[[1,0,3,0],[2,2,3,2],[0,3,3,1],[1,1,2,0]],[[1,0,2,0],[2,2,4,2],[0,3,3,1],[1,1,2,0]],[[1,0,2,0],[2,2,3,3],[0,3,3,1],[1,1,2,0]],[[1,0,2,0],[2,2,3,2],[0,4,3,1],[1,1,2,0]],[[1,0,2,0],[2,2,3,2],[0,3,4,1],[1,1,2,0]],[[1,0,2,0],[2,2,3,2],[0,3,3,1],[1,1,3,0]],[[1,0,3,0],[2,2,3,2],[0,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,4,2],[0,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,3],[0,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[0,4,3,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[0,3,4,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[0,3,3,1],[2,2,0,1]],[[1,0,2,0],[2,2,3,2],[0,3,3,1],[1,3,0,1]],[[1,0,3,0],[2,2,3,2],[0,3,3,1],[1,2,1,0]],[[1,0,2,0],[2,2,4,2],[0,3,3,1],[1,2,1,0]],[[1,0,2,0],[2,2,3,3],[0,3,3,1],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[0,4,3,1],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[0,3,4,1],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[0,3,3,1],[2,2,1,0]],[[1,0,2,0],[2,2,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[3,2,1,2],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,2,1,2],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,2,1,2],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,2,1,2],[0,2,1,0]],[[1,0,3,0],[2,2,3,2],[0,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,4,2],[0,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,3],[0,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,1,1],[2,2,3,1],[3,2,1,2],[0,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,2,1,2],[0,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,2,1,2],[0,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,2,1,2],[0,2,0,1]],[[1,2,1,1],[2,2,3,1],[3,2,1,2],[0,1,2,0]],[[1,2,1,1],[3,2,3,1],[2,2,1,2],[0,1,2,0]],[[1,3,1,1],[2,2,3,1],[2,2,1,2],[0,1,2,0]],[[2,2,1,1],[2,2,3,1],[2,2,1,2],[0,1,2,0]],[[1,2,1,1],[2,2,3,1],[3,2,1,2],[0,1,1,1]],[[1,2,1,1],[3,2,3,1],[2,2,1,2],[0,1,1,1]],[[1,3,1,1],[2,2,3,1],[2,2,1,2],[0,1,1,1]],[[2,2,1,1],[2,2,3,1],[2,2,1,2],[0,1,1,1]],[[1,2,1,1],[2,2,3,1],[2,2,1,1],[2,1,2,0]],[[1,2,1,1],[2,2,3,1],[3,2,1,1],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[2,2,1,1],[1,1,2,0]],[[1,3,1,1],[2,2,3,1],[2,2,1,1],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[2,2,1,1],[1,1,2,0]],[[1,0,2,0],[2,2,3,3],[1,0,3,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,0,3,3],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,0,3,2],[0,2,3,1]],[[1,0,2,0],[2,2,3,2],[1,0,3,2],[0,2,2,2]],[[1,2,1,1],[2,2,3,1],[3,2,1,1],[0,2,2,0]],[[1,2,1,1],[3,2,3,1],[2,2,1,1],[0,2,2,0]],[[1,3,1,1],[2,2,3,1],[2,2,1,1],[0,2,2,0]],[[1,0,3,0],[2,2,3,2],[1,2,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,4,2],[1,2,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,3],[1,2,1,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,2,1,3],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,2,1,2],[0,3,2,1]],[[1,0,2,0],[2,2,3,2],[1,2,1,2],[0,2,3,1]],[[1,0,2,0],[2,2,3,2],[1,2,1,2],[0,2,2,2]],[[1,0,3,0],[2,2,3,2],[1,2,2,2],[0,2,1,1]],[[1,0,2,0],[2,2,4,2],[1,2,2,2],[0,2,1,1]],[[1,0,2,0],[2,2,3,3],[1,2,2,2],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[1,2,2,3],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[1,2,2,2],[0,2,1,2]],[[1,0,3,0],[2,2,3,2],[1,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,4,2],[1,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,3],[1,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,2],[1,2,2,3],[0,2,2,0]],[[2,2,1,1],[2,2,3,1],[2,2,1,1],[0,2,2,0]],[[1,0,3,0],[2,2,3,2],[1,2,3,0],[0,2,2,1]],[[1,0,2,0],[2,2,4,2],[1,2,3,0],[0,2,2,1]],[[1,0,2,0],[2,2,3,3],[1,2,3,0],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,2,4,0],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,2,3,0],[0,3,2,1]],[[1,0,2,0],[2,2,3,2],[1,2,3,0],[0,2,3,1]],[[1,0,2,0],[2,2,3,2],[1,2,3,0],[0,2,2,2]],[[1,0,3,0],[2,2,3,2],[1,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,4,2],[1,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,3],[1,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[1,2,4,1],[0,2,1,1]],[[1,0,3,0],[2,2,3,2],[1,2,3,1],[0,2,2,0]],[[1,0,2,0],[2,2,4,2],[1,2,3,1],[0,2,2,0]],[[1,0,2,0],[2,2,3,3],[1,2,3,1],[0,2,2,0]],[[1,0,2,0],[2,2,3,2],[1,2,4,1],[0,2,2,0]],[[1,0,2,0],[2,2,3,2],[1,2,3,1],[0,3,2,0]],[[1,0,2,0],[2,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,1,1],[2,2,3,1],[2,2,1,0],[2,1,2,1]],[[1,2,1,1],[2,2,3,1],[3,2,1,0],[1,1,2,1]],[[1,2,1,1],[3,2,3,1],[2,2,1,0],[1,1,2,1]],[[1,3,1,1],[2,2,3,1],[2,2,1,0],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[2,2,1,0],[1,1,2,1]],[[1,2,1,1],[2,2,3,1],[3,2,1,0],[0,2,2,1]],[[1,2,1,1],[3,2,3,1],[2,2,1,0],[0,2,2,1]],[[1,3,1,1],[2,2,3,1],[2,2,1,0],[0,2,2,1]],[[2,2,1,1],[2,2,3,1],[2,2,1,0],[0,2,2,1]],[[1,2,1,1],[2,2,3,1],[2,2,0,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,1],[3,2,0,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[2,2,0,2],[1,1,2,0]],[[1,3,1,1],[2,2,3,1],[2,2,0,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[2,2,0,2],[1,1,2,0]],[[1,2,1,1],[2,2,3,1],[2,2,0,2],[2,1,1,1]],[[1,2,1,1],[2,2,3,1],[3,2,0,2],[1,1,1,1]],[[1,2,1,1],[3,2,3,1],[2,2,0,2],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[2,2,0,2],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[2,2,0,2],[1,1,1,1]],[[1,2,1,1],[2,2,3,1],[2,2,0,2],[2,0,2,1]],[[1,0,2,0],[2,2,3,2],[1,4,0,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,0,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,0,1],[1,3,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,0,1],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[1,3,0,1],[1,2,2,2]],[[1,0,3,0],[2,2,3,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,2,4,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,3],[1,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,4,0,2],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,0,3],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,0,2],[0,3,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,0,2],[0,2,3,1]],[[1,0,2,0],[2,2,3,2],[1,3,0,2],[0,2,2,2]],[[1,0,2,0],[2,2,3,2],[1,4,0,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,0,2],[2,2,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,0,2],[1,3,1,1]],[[1,0,2,0],[2,2,3,2],[1,4,0,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,0,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,0,2],[1,3,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,0,2],[1,2,3,0]],[[1,0,2,0],[2,2,3,2],[1,4,1,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,0],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,0],[1,3,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,0],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,0],[1,2,2,2]],[[1,0,2,0],[2,2,3,2],[1,4,1,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,1,1],[2,2,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,1,1],[1,3,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,1,1],[1,2,3,0]],[[1,0,3,0],[2,2,3,2],[1,3,1,2],[0,1,2,1]],[[1,0,2,0],[2,2,4,2],[1,3,1,2],[0,1,2,1]],[[1,0,2,0],[2,2,3,3],[1,3,1,2],[0,1,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,3],[0,1,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,2],[0,1,3,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,2],[0,1,2,2]],[[1,0,3,0],[2,2,3,2],[1,3,1,2],[1,0,2,1]],[[1,0,2,0],[2,2,4,2],[1,3,1,2],[1,0,2,1]],[[1,0,2,0],[2,2,3,3],[1,3,1,2],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,3],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,2],[1,0,3,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,2],[1,0,2,2]],[[1,0,2,0],[2,2,3,2],[1,4,1,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,2],[2,2,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,1,2],[1,3,0,1]],[[1,0,2,0],[2,2,3,2],[1,4,1,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[1,3,1,2],[2,2,1,0]],[[1,0,2,0],[2,2,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[3,2,0,2],[1,0,2,1]],[[1,2,1,1],[3,2,3,1],[2,2,0,2],[1,0,2,1]],[[1,3,1,1],[2,2,3,1],[2,2,0,2],[1,0,2,1]],[[2,2,1,1],[2,2,3,1],[2,2,0,2],[1,0,2,1]],[[1,2,1,1],[2,2,3,1],[3,2,0,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,2],[1,4,2,0],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,0],[0,3,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,0],[0,2,3,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,0],[0,2,2,2]],[[1,0,2,0],[2,2,3,2],[1,4,2,0],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,0],[2,2,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,0],[1,3,1,1]],[[1,0,2,0],[2,2,3,2],[1,4,2,1],[0,2,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,2,1],[0,3,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,2,1],[0,2,3,0]],[[1,0,2,0],[2,2,3,2],[1,4,2,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,1],[2,2,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,1],[1,3,0,1]],[[1,0,2,0],[2,2,3,2],[1,4,2,1],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[1,3,2,1],[2,2,1,0]],[[1,0,2,0],[2,2,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,1,1],[3,2,3,1],[2,2,0,2],[0,2,2,0]],[[1,3,1,1],[2,2,3,1],[2,2,0,2],[0,2,2,0]],[[2,2,1,1],[2,2,3,1],[2,2,0,2],[0,2,2,0]],[[1,2,1,1],[2,2,3,1],[3,2,0,2],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[2,2,0,2],[0,2,1,1]],[[1,0,3,0],[2,2,3,2],[1,3,2,2],[0,0,2,1]],[[1,0,2,0],[2,2,4,2],[1,3,2,2],[0,0,2,1]],[[1,0,2,0],[2,2,3,3],[1,3,2,2],[0,0,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,3],[0,0,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,2],[0,0,2,2]],[[1,0,3,0],[2,2,3,2],[1,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,2,4,2],[1,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,3],[1,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,3],[0,1,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,2],[0,1,1,2]],[[1,0,3,0],[2,2,3,2],[1,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,2,4,2],[1,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,3],[1,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,2,3],[0,1,2,0]],[[1,0,3,0],[2,2,3,2],[1,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,2,4,2],[1,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,3],[1,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,3],[0,2,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,2],[0,2,0,2]],[[1,0,3,0],[2,2,3,2],[1,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,2,4,2],[1,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,3],[1,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,2,0,2],[0,2,1,1]],[[2,2,1,1],[2,2,3,1],[2,2,0,2],[0,2,1,1]],[[1,2,1,1],[2,2,3,1],[3,2,0,2],[0,1,2,1]],[[1,2,1,1],[3,2,3,1],[2,2,0,2],[0,1,2,1]],[[1,3,1,1],[2,2,3,1],[2,2,0,2],[0,1,2,1]],[[2,2,1,1],[2,2,3,1],[2,2,0,2],[0,1,2,1]],[[1,0,3,0],[2,2,3,2],[1,3,2,2],[1,0,1,1]],[[1,0,2,0],[2,2,4,2],[1,3,2,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,3],[1,3,2,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,3],[1,0,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,2],[1,0,1,2]],[[1,0,3,0],[2,2,3,2],[1,3,2,2],[1,0,2,0]],[[1,0,2,0],[2,2,4,2],[1,3,2,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,3],[1,3,2,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,2,3],[1,0,2,0]],[[1,0,3,0],[2,2,3,2],[1,3,2,2],[1,1,0,1]],[[1,0,2,0],[2,2,4,2],[1,3,2,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,3],[1,3,2,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,3],[1,1,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,2,2],[1,1,0,2]],[[1,0,3,0],[2,2,3,2],[1,3,2,2],[1,1,1,0]],[[1,0,2,0],[2,2,4,2],[1,3,2,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,3],[1,3,2,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,1,1],[2,2,3,1],[2,2,0,1],[1,3,2,0]],[[1,2,1,1],[2,2,3,1],[2,2,0,1],[2,2,2,0]],[[1,2,1,1],[2,2,3,1],[3,2,0,1],[1,2,2,0]],[[1,2,1,1],[3,2,3,1],[2,2,0,1],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[2,2,0,1],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[2,2,0,1],[1,2,2,0]],[[1,2,1,1],[2,2,3,1],[2,2,0,1],[2,1,2,1]],[[1,2,1,1],[2,2,3,1],[3,2,0,1],[1,1,2,1]],[[1,2,1,1],[3,2,3,1],[2,2,0,1],[1,1,2,1]],[[1,3,1,1],[2,2,3,1],[2,2,0,1],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[2,2,0,1],[1,1,2,1]],[[1,2,1,1],[2,2,3,1],[3,2,0,1],[0,2,2,1]],[[1,2,1,1],[3,2,3,1],[2,2,0,1],[0,2,2,1]],[[1,3,1,1],[2,2,3,1],[2,2,0,1],[0,2,2,1]],[[2,2,1,1],[2,2,3,1],[2,2,0,1],[0,2,2,1]],[[1,2,1,1],[2,2,3,1],[2,2,0,0],[1,3,2,1]],[[1,2,1,1],[2,2,3,1],[2,2,0,0],[2,2,2,1]],[[1,2,1,1],[2,2,3,1],[3,2,0,0],[1,2,2,1]],[[1,2,1,1],[3,2,3,1],[2,2,0,0],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[2,2,0,0],[1,2,2,1]],[[2,2,1,1],[2,2,3,1],[2,2,0,0],[1,2,2,1]],[[1,0,3,0],[2,2,3,2],[1,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,2,4,2],[1,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,2,3,3],[1,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,2,3,2],[1,4,3,0],[0,1,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,4,0],[0,1,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,3,0],[0,1,3,1]],[[1,0,2,0],[2,2,3,2],[1,3,3,0],[0,1,2,2]],[[1,0,3,0],[2,2,3,2],[1,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,2,4,2],[1,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,2,3,3],[1,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[1,4,3,0],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,4,0],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,3,0],[0,3,1,1]],[[1,0,3,0],[2,2,3,2],[1,3,3,0],[1,0,2,1]],[[1,0,2,0],[2,2,4,2],[1,3,3,0],[1,0,2,1]],[[1,0,2,0],[2,2,3,3],[1,3,3,0],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[1,4,3,0],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,4,0],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,3,0],[1,0,3,1]],[[1,0,2,0],[2,2,3,2],[1,3,3,0],[1,0,2,2]],[[1,0,3,0],[2,2,3,2],[1,3,3,0],[1,1,1,1]],[[1,0,2,0],[2,2,4,2],[1,3,3,0],[1,1,1,1]],[[1,0,2,0],[2,2,3,3],[1,3,3,0],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[1,4,3,0],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,4,0],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[1,4,3,0],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[1,3,3,0],[2,2,1,0]],[[1,0,2,0],[2,2,3,2],[1,3,3,0],[1,3,1,0]],[[1,0,3,0],[2,2,3,2],[1,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,2,4,2],[1,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,2,3,3],[1,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,2,3,2],[1,3,4,1],[0,0,2,1]],[[1,0,3,0],[2,2,3,2],[1,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,2,4,2],[1,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,2,3,3],[1,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,2,3,2],[1,4,3,1],[0,1,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,4,1],[0,1,1,1]],[[1,0,3,0],[2,2,3,2],[1,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,2,4,2],[1,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,2,3,3],[1,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,2,3,2],[1,4,3,1],[0,1,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,4,1],[0,1,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,3,1],[0,1,3,0]],[[1,0,3,0],[2,2,3,2],[1,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,2,4,2],[1,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,2,3,3],[1,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,2,3,2],[1,4,3,1],[0,2,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,4,1],[0,2,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,3,1],[0,3,0,1]],[[1,0,3,0],[2,2,3,2],[1,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,2,4,2],[1,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,2,3,3],[1,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[1,4,3,1],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[1,3,4,1],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[1,3,3,1],[0,3,1,0]],[[1,0,3,0],[2,2,3,2],[1,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,2,4,2],[1,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,2,3,3],[1,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,2,3,2],[1,4,3,1],[1,0,1,1]],[[1,0,2,0],[2,2,3,2],[1,3,4,1],[1,0,1,1]],[[1,0,3,0],[2,2,3,2],[1,3,3,1],[1,0,2,0]],[[1,0,2,0],[2,2,4,2],[1,3,3,1],[1,0,2,0]],[[1,0,2,0],[2,2,3,3],[1,3,3,1],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[1,4,3,1],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,4,1],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[1,3,3,1],[1,0,3,0]],[[1,0,3,0],[2,2,3,2],[1,3,3,1],[1,1,0,1]],[[1,0,2,0],[2,2,4,2],[1,3,3,1],[1,1,0,1]],[[1,0,2,0],[2,2,3,3],[1,3,3,1],[1,1,0,1]],[[1,0,2,0],[2,2,3,2],[1,4,3,1],[1,1,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,4,1],[1,1,0,1]],[[1,0,3,0],[2,2,3,2],[1,3,3,1],[1,1,1,0]],[[1,0,2,0],[2,2,4,2],[1,3,3,1],[1,1,1,0]],[[1,0,2,0],[2,2,3,3],[1,3,3,1],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[1,4,3,1],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,1,3,2],[1,0,0,1]],[[1,2,1,1],[3,2,3,1],[2,1,3,2],[1,0,0,1]],[[1,3,1,1],[2,2,3,1],[2,1,3,2],[1,0,0,1]],[[2,2,1,1],[2,2,3,1],[2,1,3,2],[1,0,0,1]],[[1,0,3,0],[2,2,3,2],[1,3,3,2],[0,1,0,1]],[[1,0,2,0],[2,2,4,2],[1,3,3,2],[0,1,0,1]],[[1,0,2,0],[2,2,3,3],[1,3,3,2],[0,1,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,1,1],[3,2,3,1],[2,1,3,2],[0,1,0,1]],[[1,3,1,1],[2,2,3,1],[2,1,3,2],[0,1,0,1]],[[2,2,1,1],[2,2,3,1],[2,1,3,2],[0,1,0,1]],[[1,0,3,0],[2,2,3,2],[1,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,2,4,2],[1,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,2,3,3],[1,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,1,1],[2,2,3,1],[2,1,3,1],[2,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,1,3,1],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[2,1,3,1],[1,1,1,0]],[[1,3,1,1],[2,2,3,1],[2,1,3,1],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[2,1,3,1],[1,1,1,0]],[[1,2,1,1],[2,2,3,1],[2,1,3,1],[2,1,0,1]],[[1,2,1,1],[2,2,3,1],[3,1,3,1],[1,1,0,1]],[[1,2,1,1],[3,2,3,1],[2,1,3,1],[1,1,0,1]],[[1,3,1,1],[2,2,3,1],[2,1,3,1],[1,1,0,1]],[[2,2,1,1],[2,2,3,1],[2,1,3,1],[1,1,0,1]],[[1,2,1,1],[2,2,3,1],[2,1,3,1],[2,0,2,0]],[[1,2,1,1],[2,2,3,1],[3,1,3,1],[1,0,2,0]],[[1,2,1,1],[3,2,3,1],[2,1,3,1],[1,0,2,0]],[[1,3,1,1],[2,2,3,1],[2,1,3,1],[1,0,2,0]],[[2,2,1,1],[2,2,3,1],[2,1,3,1],[1,0,2,0]],[[1,2,1,1],[2,2,3,1],[2,1,3,1],[2,0,1,1]],[[1,2,1,1],[2,2,3,1],[3,1,3,1],[1,0,1,1]],[[1,2,1,1],[3,2,3,1],[2,1,3,1],[1,0,1,1]],[[1,3,1,1],[2,2,3,1],[2,1,3,1],[1,0,1,1]],[[2,2,1,1],[2,2,3,1],[2,1,3,1],[1,0,1,1]],[[1,2,1,1],[2,2,3,1],[3,1,3,1],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,1,3,1],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,1,3,1],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,1,3,1],[0,2,1,0]],[[1,2,1,1],[2,2,3,1],[3,1,3,1],[0,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,1,3,1],[0,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,1,3,1],[0,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,1,3,1],[0,2,0,1]],[[1,2,1,1],[2,2,3,1],[3,1,3,1],[0,1,2,0]],[[1,2,1,1],[3,2,3,1],[2,1,3,1],[0,1,2,0]],[[1,3,1,1],[2,2,3,1],[2,1,3,1],[0,1,2,0]],[[2,2,1,1],[2,2,3,1],[2,1,3,1],[0,1,2,0]],[[1,2,1,1],[2,2,3,1],[3,1,3,1],[0,1,1,1]],[[2,0,2,0],[2,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,3,0],[2,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[3,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,4,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,3],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[3,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,0,1,3],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,0,1,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,0,1,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,2],[2,0,1,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[2,0,1,2],[1,2,2,2]],[[1,0,3,0],[2,2,3,2],[2,0,2,2],[1,2,1,1]],[[1,0,2,0],[2,2,4,2],[2,0,2,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,3],[2,0,2,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[2,0,2,3],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[2,0,2,2],[1,2,1,2]],[[1,0,3,0],[2,2,3,2],[2,0,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,4,2],[2,0,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,3],[2,0,2,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,0,2,3],[1,2,2,0]],[[2,0,2,0],[2,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,0,3,0],[2,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,0],[3,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,4,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,3],[2,0,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[3,0,3,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,0,4,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,0,3,0],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,0,3,0],[1,3,2,1]],[[1,0,2,0],[2,2,3,2],[2,0,3,0],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[2,0,3,0],[1,2,2,2]],[[1,0,3,0],[2,2,3,2],[2,0,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,4,2],[2,0,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,3],[2,0,3,1],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[2,0,4,1],[1,2,1,1]],[[2,0,2,0],[2,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,0,3,0],[2,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,0],[3,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,0],[2,2,4,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,3],[2,0,3,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[3,0,3,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,0,4,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,0,3,1],[2,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,0,3,1],[1,3,2,0]],[[1,0,2,0],[2,2,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,1,1],[3,2,3,1],[2,1,3,1],[0,1,1,1]],[[1,3,1,1],[2,2,3,1],[2,1,3,1],[0,1,1,1]],[[2,2,1,1],[2,2,3,1],[2,1,3,1],[0,1,1,1]],[[1,2,1,1],[3,2,3,1],[2,1,3,1],[0,0,2,1]],[[1,3,1,1],[2,2,3,1],[2,1,3,1],[0,0,2,1]],[[2,2,1,1],[2,2,3,1],[2,1,3,1],[0,0,2,1]],[[2,0,2,0],[2,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,3,0],[2,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[3,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,4,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,3],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[3,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,1,0,3],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,1,0,2],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,1,0,2],[1,3,2,1]],[[1,0,2,0],[2,2,3,2],[2,1,0,2],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,1],[2,2,3,1],[2,1,3,0],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[2,1,3,0],[2,2,1,0]],[[1,2,1,1],[2,2,3,1],[3,1,3,0],[1,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,1,3,0],[1,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,1,3,0],[1,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,1,3,0],[1,2,1,0]],[[1,2,1,1],[2,2,3,1],[2,1,3,0],[2,1,1,1]],[[1,2,1,1],[2,2,3,1],[3,1,3,0],[1,1,1,1]],[[1,2,1,1],[3,2,3,1],[2,1,3,0],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[2,1,3,0],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[2,1,3,0],[1,1,1,1]],[[1,2,1,1],[2,2,3,1],[2,1,3,0],[2,0,2,1]],[[1,2,1,1],[2,2,3,1],[3,1,3,0],[1,0,2,1]],[[1,2,1,1],[3,2,3,1],[2,1,3,0],[1,0,2,1]],[[1,3,1,1],[2,2,3,1],[2,1,3,0],[1,0,2,1]],[[2,2,1,1],[2,2,3,1],[2,1,3,0],[1,0,2,1]],[[1,2,1,1],[2,2,3,1],[3,1,3,0],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[2,1,3,0],[0,2,1,1]],[[1,3,1,1],[2,2,3,1],[2,1,3,0],[0,2,1,1]],[[2,2,1,1],[2,2,3,1],[2,1,3,0],[0,2,1,1]],[[1,2,1,1],[2,2,3,1],[3,1,3,0],[0,1,2,1]],[[1,2,1,1],[3,2,3,1],[2,1,3,0],[0,1,2,1]],[[1,3,1,1],[2,2,3,1],[2,1,3,0],[0,1,2,1]],[[2,2,1,1],[2,2,3,1],[2,1,3,0],[0,1,2,1]],[[2,0,2,0],[2,2,3,2],[2,2,0,1],[1,2,2,1]],[[1,0,2,0],[3,2,3,2],[2,2,0,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[3,2,0,1],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,2,0,1],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,2,0,1],[1,3,2,1]],[[1,0,2,0],[2,2,3,2],[2,2,0,1],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[2,2,0,1],[1,2,2,2]],[[2,0,2,0],[2,2,3,2],[2,2,0,2],[1,2,1,1]],[[1,0,2,0],[3,2,3,2],[2,2,0,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[3,2,0,2],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[2,2,0,2],[2,2,1,1]],[[1,0,2,0],[2,2,3,2],[2,2,0,2],[1,3,1,1]],[[2,0,2,0],[2,2,3,2],[2,2,0,2],[1,2,2,0]],[[1,0,2,0],[3,2,3,2],[2,2,0,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[3,2,0,2],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,2,0,2],[2,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,2,0,2],[1,3,2,0]],[[1,0,2,0],[2,2,3,2],[2,2,0,2],[1,2,3,0]],[[2,0,2,0],[2,2,3,2],[2,2,1,0],[1,2,2,1]],[[1,0,2,0],[3,2,3,2],[2,2,1,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[3,2,1,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,2,1,0],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,2,1,0],[1,3,2,1]],[[1,0,2,0],[2,2,3,2],[2,2,1,0],[1,2,3,1]],[[1,0,2,0],[2,2,3,2],[2,2,1,0],[1,2,2,2]],[[2,0,2,0],[2,2,3,2],[2,2,1,1],[1,2,2,0]],[[1,0,2,0],[3,2,3,2],[2,2,1,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[3,2,1,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,2,1,1],[2,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,2,1,1],[1,3,2,0]],[[1,0,2,0],[2,2,3,2],[2,2,1,1],[1,2,3,0]],[[2,0,2,0],[2,2,3,2],[2,2,1,2],[1,2,0,1]],[[1,0,2,0],[3,2,3,2],[2,2,1,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[3,2,1,2],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[2,2,1,2],[2,2,0,1]],[[1,0,2,0],[2,2,3,2],[2,2,1,2],[1,3,0,1]],[[2,0,2,0],[2,2,3,2],[2,2,1,2],[1,2,1,0]],[[1,0,2,0],[3,2,3,2],[2,2,1,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[3,2,1,2],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,2,1,2],[2,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[2,1,2,2],[2,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,1,2,2],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[2,1,2,2],[1,1,1,0]],[[1,3,1,1],[2,2,3,1],[2,1,2,2],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[2,1,2,2],[1,1,1,0]],[[2,0,2,0],[2,2,3,2],[2,2,2,0],[1,2,1,1]],[[1,0,2,0],[3,2,3,2],[2,2,2,0],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[3,2,2,0],[1,2,1,1]],[[1,0,2,0],[2,2,3,2],[2,2,2,0],[2,2,1,1]],[[1,0,2,0],[2,2,3,2],[2,2,2,0],[1,3,1,1]],[[2,0,2,0],[2,2,3,2],[2,2,2,1],[1,2,0,1]],[[1,0,2,0],[3,2,3,2],[2,2,2,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[3,2,2,1],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[2,2,2,1],[2,2,0,1]],[[1,0,2,0],[2,2,3,2],[2,2,2,1],[1,3,0,1]],[[2,0,2,0],[2,2,3,2],[2,2,2,1],[1,2,1,0]],[[1,0,2,0],[3,2,3,2],[2,2,2,1],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[3,2,2,1],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,2,2,1],[2,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[2,1,2,2],[2,1,0,1]],[[1,2,1,1],[2,2,3,1],[3,1,2,2],[1,1,0,1]],[[1,2,1,1],[3,2,3,1],[2,1,2,2],[1,1,0,1]],[[1,3,1,1],[2,2,3,1],[2,1,2,2],[1,1,0,1]],[[2,2,1,1],[2,2,3,1],[2,1,2,2],[1,1,0,1]],[[1,2,1,1],[2,2,3,1],[2,1,2,2],[2,0,2,0]],[[1,2,1,1],[2,2,3,1],[3,1,2,2],[1,0,2,0]],[[1,2,1,1],[3,2,3,1],[2,1,2,2],[1,0,2,0]],[[1,3,1,1],[2,2,3,1],[2,1,2,2],[1,0,2,0]],[[2,2,1,1],[2,2,3,1],[2,1,2,2],[1,0,2,0]],[[1,2,1,1],[2,2,3,1],[2,1,2,2],[2,0,1,1]],[[1,2,1,1],[2,2,3,1],[3,1,2,2],[1,0,1,1]],[[1,2,1,1],[3,2,3,1],[2,1,2,2],[1,0,1,1]],[[1,3,1,1],[2,2,3,1],[2,1,2,2],[1,0,1,1]],[[2,2,1,1],[2,2,3,1],[2,1,2,2],[1,0,1,1]],[[1,2,1,1],[2,2,3,1],[3,1,2,2],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,1,2,2],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,1,2,2],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,1,2,2],[0,2,1,0]],[[1,2,1,1],[2,2,3,1],[3,1,2,2],[0,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,1,2,2],[0,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,1,2,2],[0,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,1,2,2],[0,2,0,1]],[[2,0,2,0],[2,2,3,2],[2,2,3,0],[1,2,1,0]],[[1,0,2,0],[3,2,3,2],[2,2,3,0],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[3,2,3,0],[1,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,2,3,0],[2,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[3,1,2,2],[0,1,2,0]],[[1,2,1,1],[3,2,3,1],[2,1,2,2],[0,1,2,0]],[[1,3,1,1],[2,2,3,1],[2,1,2,2],[0,1,2,0]],[[2,2,1,1],[2,2,3,1],[2,1,2,2],[0,1,2,0]],[[1,2,1,1],[2,2,3,1],[3,1,2,2],[0,1,1,1]],[[1,2,1,1],[3,2,3,1],[2,1,2,2],[0,1,1,1]],[[1,3,1,1],[2,2,3,1],[2,1,2,2],[0,1,1,1]],[[2,2,1,1],[2,2,3,1],[2,1,2,2],[0,1,1,1]],[[1,2,1,1],[3,2,3,1],[2,1,2,2],[0,0,2,1]],[[1,3,1,1],[2,2,3,1],[2,1,2,2],[0,0,2,1]],[[2,2,1,1],[2,2,3,1],[2,1,2,2],[0,0,2,1]],[[1,2,1,1],[2,2,3,1],[2,1,2,1],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[2,1,2,1],[2,2,1,0]],[[1,2,1,1],[2,2,3,1],[3,1,2,1],[1,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,1,2,1],[1,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,1,2,1],[1,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,1,2,1],[1,2,1,0]],[[1,2,1,1],[2,2,3,1],[2,1,2,1],[1,3,0,1]],[[1,2,1,1],[2,2,3,1],[2,1,2,1],[2,2,0,1]],[[1,2,1,1],[2,2,3,1],[3,1,2,1],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,1,2,1],[1,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,1,2,1],[1,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,1,2,1],[1,2,0,1]],[[1,2,1,1],[2,2,3,1],[2,1,2,0],[1,3,1,1]],[[1,2,1,1],[2,2,3,1],[2,1,2,0],[2,2,1,1]],[[1,2,1,1],[2,2,3,1],[3,1,2,0],[1,2,1,1]],[[1,2,1,1],[3,2,3,1],[2,1,2,0],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[2,1,2,0],[1,2,1,1]],[[2,2,1,1],[2,2,3,1],[2,1,2,0],[1,2,1,1]],[[1,2,1,1],[2,2,3,1],[2,1,1,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[2,1,1,2],[2,2,1,0]],[[1,2,1,1],[2,2,3,1],[3,1,1,2],[1,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,1,1,2],[1,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,1,1,2],[1,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,1,1,2],[1,2,1,0]],[[1,2,1,1],[2,2,3,1],[2,1,1,2],[1,3,0,1]],[[1,2,1,1],[2,2,3,1],[2,1,1,2],[2,2,0,1]],[[1,2,1,1],[2,2,3,1],[3,1,1,2],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,1,1,2],[1,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,1,1,2],[1,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,1,1,2],[1,2,0,1]],[[1,2,1,1],[2,2,3,1],[2,1,1,2],[2,0,2,1]],[[1,2,1,1],[2,2,3,1],[3,1,1,2],[1,0,2,1]],[[1,2,1,1],[3,2,3,1],[2,1,1,2],[1,0,2,1]],[[1,3,1,1],[2,2,3,1],[2,1,1,2],[1,0,2,1]],[[2,2,1,1],[2,2,3,1],[2,1,1,2],[1,0,2,1]],[[1,2,1,1],[2,2,3,1],[3,1,1,2],[0,1,2,1]],[[1,2,1,1],[3,2,3,1],[2,1,1,2],[0,1,2,1]],[[1,3,1,1],[2,2,3,1],[2,1,1,2],[0,1,2,1]],[[2,2,1,1],[2,2,3,1],[2,1,1,2],[0,1,2,1]],[[1,2,1,1],[2,2,3,1],[2,1,1,1],[1,2,3,0]],[[1,2,1,1],[2,2,3,1],[2,1,1,1],[1,3,2,0]],[[1,2,1,1],[2,2,3,1],[2,1,1,1],[2,2,2,0]],[[1,2,1,1],[2,2,3,1],[3,1,1,1],[1,2,2,0]],[[1,2,1,1],[3,2,3,1],[2,1,1,1],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[2,1,1,1],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[2,1,1,1],[1,2,2,0]],[[1,2,1,1],[2,2,3,1],[2,1,1,0],[1,2,2,2]],[[1,2,1,1],[2,2,3,1],[2,1,1,0],[1,2,3,1]],[[1,2,1,1],[2,2,3,1],[2,1,1,0],[1,3,2,1]],[[1,2,1,1],[2,2,3,1],[2,1,1,0],[2,2,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,0,0],[1,2,2,1]],[[1,0,2,0],[3,2,3,2],[2,3,0,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[3,3,0,0],[1,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,3,0,0],[2,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,3,0,0],[1,3,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,2,0],[3,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[3,3,0,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,4,0,1],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,3,0,1],[0,3,2,1]],[[1,0,2,0],[2,2,3,2],[2,3,0,1],[0,2,3,1]],[[1,0,2,0],[2,2,3,2],[2,3,0,1],[0,2,2,2]],[[2,0,2,0],[2,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,0,2,0],[3,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,2],[3,3,0,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,2],[2,4,0,1],[1,1,2,1]],[[1,0,2,0],[2,2,3,2],[2,3,0,1],[2,1,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,0,1],[1,2,2,0]],[[1,0,2,0],[3,2,3,2],[2,3,0,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[3,3,0,1],[1,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,3,0,1],[2,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,3,0,1],[1,3,2,0]],[[2,0,2,0],[2,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,2,0],[3,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,2,0],[2,2,3,2],[3,3,0,2],[0,1,2,1]],[[1,0,2,0],[2,2,3,2],[2,4,0,2],[0,1,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,0,2,0],[3,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[3,3,0,2],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[2,4,0,2],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[2,3,0,2],[0,3,1,1]],[[2,0,2,0],[2,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,0,2,0],[3,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,2],[3,3,0,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,4,0,2],[0,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,3,0,2],[0,3,2,0]],[[1,0,2,0],[2,2,3,2],[2,3,0,2],[0,2,3,0]],[[2,0,2,0],[2,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,2,0],[3,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[3,3,0,2],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[2,4,0,2],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[2,3,0,2],[2,0,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,0,2,0],[3,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[3,3,0,2],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[2,4,0,2],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[2,3,0,2],[2,1,1,1]],[[2,0,2,0],[2,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,0,2,0],[3,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,2],[3,3,0,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,2],[2,4,0,2],[1,1,2,0]],[[1,0,2,0],[2,2,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,1],[3,1,1,0],[1,2,2,1]],[[1,2,1,1],[3,2,3,1],[2,1,1,0],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[2,1,1,0],[1,2,2,1]],[[2,2,1,1],[2,2,3,1],[2,1,1,0],[1,2,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,2,0],[3,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[3,3,1,0],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,4,1,0],[0,2,2,1]],[[1,0,2,0],[2,2,3,2],[2,3,1,0],[0,3,2,1]],[[1,0,2,0],[2,2,3,2],[2,3,1,0],[0,2,3,1]],[[1,0,2,0],[2,2,3,2],[2,3,1,0],[0,2,2,2]],[[2,0,2,0],[2,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,2,0],[3,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,2,0],[2,2,3,2],[3,3,1,0],[1,1,2,1]],[[1,0,2,0],[2,2,3,2],[2,4,1,0],[1,1,2,1]],[[1,0,2,0],[2,2,3,2],[2,3,1,0],[2,1,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,2,0],[3,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,2,0],[2,2,3,2],[3,3,1,1],[0,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,4,1,1],[0,2,2,0]],[[1,0,2,0],[2,2,3,2],[2,3,1,1],[0,3,2,0]],[[1,0,2,0],[2,2,3,2],[2,3,1,1],[0,2,3,0]],[[2,0,2,0],[2,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,2,0],[3,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,2,0],[2,2,3,2],[3,3,1,1],[1,1,2,0]],[[1,0,2,0],[2,2,3,2],[2,4,1,1],[1,1,2,0]],[[1,0,2,0],[2,2,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,1,1],[2,2,3,1],[2,1,0,2],[1,2,3,0]],[[1,2,1,1],[2,2,3,1],[2,1,0,2],[1,3,2,0]],[[1,2,1,1],[2,2,3,1],[2,1,0,2],[2,2,2,0]],[[1,2,1,1],[2,2,3,1],[3,1,0,2],[1,2,2,0]],[[1,2,1,1],[3,2,3,1],[2,1,0,2],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[2,1,0,2],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[2,1,0,2],[1,2,2,0]],[[2,0,2,0],[2,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,2,0],[3,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,2],[3,3,1,2],[0,1,1,1]],[[1,0,2,0],[2,2,3,2],[2,4,1,2],[0,1,1,1]],[[2,0,2,0],[2,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,0,2,0],[3,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,2],[3,3,1,2],[0,1,2,0]],[[1,0,2,0],[2,2,3,2],[2,4,1,2],[0,1,2,0]],[[2,0,2,0],[2,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,2,0],[3,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,2],[3,3,1,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,2],[2,4,1,2],[0,2,0,1]],[[1,0,2,0],[2,2,3,2],[2,3,1,2],[0,3,0,1]],[[2,0,2,0],[2,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,0,2,0],[3,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[3,3,1,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,4,1,2],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,1,1],[2,2,3,1],[2,1,0,2],[1,3,1,1]],[[1,2,1,1],[2,2,3,1],[2,1,0,2],[2,2,1,1]],[[1,2,1,1],[2,2,3,1],[3,1,0,2],[1,2,1,1]],[[1,2,1,1],[3,2,3,1],[2,1,0,2],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[2,1,0,2],[1,2,1,1]],[[2,2,1,1],[2,2,3,1],[2,1,0,2],[1,2,1,1]],[[1,2,1,1],[2,2,3,1],[2,1,0,2],[2,1,2,1]],[[1,2,1,1],[2,2,3,1],[3,1,0,2],[1,1,2,1]],[[1,2,1,1],[3,2,3,1],[2,1,0,2],[1,1,2,1]],[[1,3,1,1],[2,2,3,1],[2,1,0,2],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[2,1,0,2],[1,1,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,0,2,0],[3,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,2],[3,3,1,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,2],[2,4,1,2],[1,0,1,1]],[[1,0,2,0],[2,2,3,2],[2,3,1,2],[2,0,1,1]],[[2,0,2,0],[2,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,0,2,0],[3,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[3,3,1,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[2,4,1,2],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[2,3,1,2],[2,0,2,0]],[[2,0,2,0],[2,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,2,0],[3,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,2],[3,3,1,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,2],[2,4,1,2],[1,1,0,1]],[[1,0,2,0],[2,2,3,2],[2,3,1,2],[2,1,0,1]],[[2,0,2,0],[2,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,0,2,0],[3,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[3,3,1,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[2,4,1,2],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,1,1],[2,2,3,1],[3,1,0,2],[0,2,2,1]],[[1,2,1,1],[3,2,3,1],[2,1,0,2],[0,2,2,1]],[[1,3,1,1],[2,2,3,1],[2,1,0,2],[0,2,2,1]],[[2,2,1,1],[2,2,3,1],[2,1,0,2],[0,2,2,1]],[[1,2,1,1],[2,2,3,1],[2,1,0,1],[1,2,2,2]],[[1,2,1,1],[2,2,3,1],[2,1,0,1],[1,2,3,1]],[[1,2,1,1],[2,2,3,1],[2,1,0,1],[1,3,2,1]],[[1,2,1,1],[2,2,3,1],[2,1,0,1],[2,2,2,1]],[[1,2,1,1],[2,2,3,1],[3,1,0,1],[1,2,2,1]],[[1,2,1,1],[3,2,3,1],[2,1,0,1],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[2,1,0,1],[1,2,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,0,2,0],[3,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,0,2,0],[2,2,3,2],[3,3,1,2],[1,2,0,0]],[[1,0,2,0],[2,2,3,2],[2,4,1,2],[1,2,0,0]],[[1,0,2,0],[2,2,3,2],[2,3,1,2],[2,2,0,0]],[[2,2,1,1],[2,2,3,1],[2,1,0,1],[1,2,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,2,0],[3,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,2,0],[2,2,3,2],[3,3,2,0],[0,1,2,1]],[[1,0,2,0],[2,2,3,2],[2,4,2,0],[0,1,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,2,0],[3,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[3,3,2,0],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[2,4,2,0],[0,2,1,1]],[[1,0,2,0],[2,2,3,2],[2,3,2,0],[0,3,1,1]],[[2,0,2,0],[2,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,2,0],[3,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[3,3,2,0],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[2,4,2,0],[1,0,2,1]],[[1,0,2,0],[2,2,3,2],[2,3,2,0],[2,0,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,0,2,0],[3,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[3,3,2,0],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[2,4,2,0],[1,1,1,1]],[[1,0,2,0],[2,2,3,2],[2,3,2,0],[2,1,1,1]],[[2,0,2,0],[2,2,3,2],[2,3,2,0],[1,2,0,1]],[[1,0,2,0],[3,2,3,2],[2,3,2,0],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[3,3,2,0],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[2,4,2,0],[1,2,0,1]],[[1,0,2,0],[2,2,3,2],[2,3,2,0],[2,2,0,1]],[[2,0,2,0],[2,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,2,0],[3,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,2,0],[2,2,3,2],[3,3,2,1],[0,1,1,1]],[[1,0,2,0],[2,2,3,2],[2,4,2,1],[0,1,1,1]],[[2,0,2,0],[2,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,0,2,0],[3,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,0,2,0],[2,2,3,2],[3,3,2,1],[0,1,2,0]],[[1,0,2,0],[2,2,3,2],[2,4,2,1],[0,1,2,0]],[[2,0,2,0],[2,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,0,2,0],[3,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,0,2,0],[2,2,3,2],[3,3,2,1],[0,2,0,1]],[[1,0,2,0],[2,2,3,2],[2,4,2,1],[0,2,0,1]],[[1,0,2,0],[2,2,3,2],[2,3,2,1],[0,3,0,1]],[[2,0,2,0],[2,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,0,2,0],[3,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[3,3,2,1],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,4,2,1],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,3,2,1],[0,3,1,0]],[[2,0,2,0],[2,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,0,2,0],[3,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,0,2,0],[2,2,3,2],[3,3,2,1],[1,0,1,1]],[[1,0,2,0],[2,2,3,2],[2,4,2,1],[1,0,1,1]],[[1,0,2,0],[2,2,3,2],[2,3,2,1],[2,0,1,1]],[[2,0,2,0],[2,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,0,2,0],[3,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[3,3,2,1],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[2,4,2,1],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[2,3,2,1],[2,0,2,0]],[[2,0,2,0],[2,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,0,2,0],[3,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,0,2,0],[2,2,3,2],[3,3,2,1],[1,1,0,1]],[[1,0,2,0],[2,2,3,2],[2,4,2,1],[1,1,0,1]],[[1,0,2,0],[2,2,3,2],[2,3,2,1],[2,1,0,1]],[[2,0,2,0],[2,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,0,2,0],[3,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[3,3,2,1],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[2,4,2,1],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[2,3,2,1],[2,1,1,0]],[[2,0,2,0],[2,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,0,2,0],[3,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,0,2,0],[2,2,3,2],[3,3,2,1],[1,2,0,0]],[[1,0,2,0],[2,2,3,2],[2,4,2,1],[1,2,0,0]],[[1,0,2,0],[2,2,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,1,1],[2,2,3,1],[2,0,3,1],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[2,0,3,1],[2,2,1,0]],[[1,2,1,1],[2,2,3,1],[3,0,3,1],[1,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,0,3,1],[1,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,0,3,1],[1,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,0,3,1],[1,2,1,0]],[[1,2,1,1],[2,2,3,1],[2,0,3,1],[1,3,0,1]],[[1,2,1,1],[2,2,3,1],[2,0,3,1],[2,2,0,1]],[[1,2,1,1],[2,2,3,1],[3,0,3,1],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,0,3,1],[1,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,0,3,1],[1,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,0,3,1],[1,2,0,1]],[[1,2,1,1],[2,2,3,1],[2,0,3,1],[2,1,2,0]],[[1,2,1,1],[2,2,3,1],[3,0,3,1],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[2,0,3,1],[1,1,2,0]],[[1,3,1,1],[2,2,3,1],[2,0,3,1],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[2,0,3,1],[1,1,2,0]],[[1,2,1,1],[2,2,3,1],[2,0,3,1],[2,1,1,1]],[[1,2,1,1],[2,2,3,1],[3,0,3,1],[1,1,1,1]],[[1,2,1,1],[3,2,3,1],[2,0,3,1],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[2,0,3,1],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[2,0,3,1],[1,1,1,1]],[[1,2,1,1],[2,2,3,1],[3,0,3,1],[0,2,2,0]],[[1,2,1,1],[3,2,3,1],[2,0,3,1],[0,2,2,0]],[[1,3,1,1],[2,2,3,1],[2,0,3,1],[0,2,2,0]],[[2,2,1,1],[2,2,3,1],[2,0,3,1],[0,2,2,0]],[[1,2,1,1],[2,2,3,1],[3,0,3,1],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[2,0,3,1],[0,2,1,1]],[[1,3,1,1],[2,2,3,1],[2,0,3,1],[0,2,1,1]],[[2,2,1,1],[2,2,3,1],[2,0,3,1],[0,2,1,1]],[[1,2,1,1],[2,2,3,1],[2,0,3,0],[1,3,1,1]],[[1,2,1,1],[2,2,3,1],[2,0,3,0],[2,2,1,1]],[[1,2,1,1],[2,2,3,1],[3,0,3,0],[1,2,1,1]],[[1,2,1,1],[3,2,3,1],[2,0,3,0],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[2,0,3,0],[1,2,1,1]],[[2,2,1,1],[2,2,3,1],[2,0,3,0],[1,2,1,1]],[[1,2,1,1],[2,2,3,1],[2,0,3,0],[2,1,2,1]],[[1,2,1,1],[2,2,3,1],[3,0,3,0],[1,1,2,1]],[[1,2,1,1],[3,2,3,1],[2,0,3,0],[1,1,2,1]],[[1,3,1,1],[2,2,3,1],[2,0,3,0],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[2,0,3,0],[1,1,2,1]],[[1,2,1,1],[2,2,3,1],[3,0,3,0],[0,2,2,1]],[[1,2,1,1],[3,2,3,1],[2,0,3,0],[0,2,2,1]],[[1,3,1,1],[2,2,3,1],[2,0,3,0],[0,2,2,1]],[[2,2,1,1],[2,2,3,1],[2,0,3,0],[0,2,2,1]],[[1,2,1,1],[2,2,3,1],[2,0,2,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[2,0,2,2],[2,2,1,0]],[[1,2,1,1],[2,2,3,1],[3,0,2,2],[1,2,1,0]],[[1,2,1,1],[3,2,3,1],[2,0,2,2],[1,2,1,0]],[[1,3,1,1],[2,2,3,1],[2,0,2,2],[1,2,1,0]],[[2,2,1,1],[2,2,3,1],[2,0,2,2],[1,2,1,0]],[[1,2,1,1],[2,2,3,1],[2,0,2,2],[1,3,0,1]],[[1,2,1,1],[2,2,3,1],[2,0,2,2],[2,2,0,1]],[[1,2,1,1],[2,2,3,1],[3,0,2,2],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[2,0,2,2],[1,2,0,1]],[[1,3,1,1],[2,2,3,1],[2,0,2,2],[1,2,0,1]],[[2,2,1,1],[2,2,3,1],[2,0,2,2],[1,2,0,1]],[[1,2,1,1],[2,2,3,1],[2,0,2,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,1],[3,0,2,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[2,0,2,2],[1,1,2,0]],[[1,3,1,1],[2,2,3,1],[2,0,2,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[2,0,2,2],[1,1,2,0]],[[1,2,1,1],[2,2,3,1],[2,0,2,2],[2,1,1,1]],[[1,2,1,1],[2,2,3,1],[3,0,2,2],[1,1,1,1]],[[1,2,1,1],[3,2,3,1],[2,0,2,2],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[2,0,2,2],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[2,0,2,2],[1,1,1,1]],[[1,2,1,1],[2,2,3,1],[3,0,2,2],[0,2,2,0]],[[1,2,1,1],[3,2,3,1],[2,0,2,2],[0,2,2,0]],[[1,3,1,1],[2,2,3,1],[2,0,2,2],[0,2,2,0]],[[2,2,1,1],[2,2,3,1],[2,0,2,2],[0,2,2,0]],[[1,2,1,1],[2,2,3,1],[3,0,2,2],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[2,0,2,2],[0,2,1,1]],[[1,3,1,1],[2,2,3,1],[2,0,2,2],[0,2,1,1]],[[2,2,1,1],[2,2,3,1],[2,0,2,2],[0,2,1,1]],[[2,0,2,0],[2,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,2,0],[3,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,2,0],[2,2,3,2],[3,3,3,0],[0,1,2,0]],[[1,0,2,0],[2,2,3,2],[2,4,3,0],[0,1,2,0]],[[2,0,2,0],[2,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,2,0],[3,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[3,3,3,0],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,4,3,0],[0,2,1,0]],[[1,0,2,0],[2,2,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,1,1],[2,2,3,1],[2,0,2,1],[1,2,3,0]],[[1,2,1,1],[2,2,3,1],[2,0,2,1],[1,3,2,0]],[[1,2,1,1],[2,2,3,1],[2,0,2,1],[2,2,2,0]],[[1,2,1,1],[2,2,3,1],[3,0,2,1],[1,2,2,0]],[[2,0,2,0],[2,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,2,0],[3,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[3,3,3,0],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[2,4,3,0],[1,0,2,0]],[[1,0,2,0],[2,2,3,2],[2,3,3,0],[2,0,2,0]],[[2,0,2,0],[2,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,2,0],[3,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[3,3,3,0],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[2,4,3,0],[1,1,1,0]],[[1,0,2,0],[2,2,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,1,1],[3,2,3,1],[2,0,2,1],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[2,0,2,1],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[2,0,2,1],[1,2,2,0]],[[1,2,1,1],[2,2,3,1],[2,0,2,0],[1,2,2,2]],[[1,2,1,1],[2,2,3,1],[2,0,2,0],[1,2,3,1]],[[1,2,1,1],[2,2,3,1],[2,0,2,0],[1,3,2,1]],[[1,2,1,1],[2,2,3,1],[2,0,2,0],[2,2,2,1]],[[1,2,1,1],[2,2,3,1],[3,0,2,0],[1,2,2,1]],[[1,2,1,1],[3,2,3,1],[2,0,2,0],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[2,0,2,0],[1,2,2,1]],[[2,2,1,1],[2,2,3,1],[2,0,2,0],[1,2,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,3,0],[1,2,0,0]],[[1,0,2,0],[3,2,3,2],[2,3,3,0],[1,2,0,0]],[[1,0,2,0],[2,2,3,2],[3,3,3,0],[1,2,0,0]],[[1,0,2,0],[2,2,3,2],[2,4,3,0],[1,2,0,0]],[[1,0,2,0],[2,2,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,1,1],[2,2,3,1],[2,0,1,2],[1,2,3,0]],[[1,2,1,1],[2,2,3,1],[2,0,1,2],[1,3,2,0]],[[1,2,1,1],[2,2,3,1],[2,0,1,2],[2,2,2,0]],[[1,2,1,1],[2,2,3,1],[3,0,1,2],[1,2,2,0]],[[1,2,1,1],[3,2,3,1],[2,0,1,2],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[2,0,1,2],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[2,0,1,2],[1,2,2,0]],[[1,2,1,1],[2,2,3,1],[2,0,1,2],[1,3,1,1]],[[1,2,1,1],[2,2,3,1],[2,0,1,2],[2,2,1,1]],[[1,2,1,1],[2,2,3,1],[3,0,1,2],[1,2,1,1]],[[1,2,1,1],[3,2,3,1],[2,0,1,2],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[2,0,1,2],[1,2,1,1]],[[2,2,1,1],[2,2,3,1],[2,0,1,2],[1,2,1,1]],[[1,2,1,1],[2,2,3,1],[2,0,1,2],[2,1,2,1]],[[1,2,1,1],[2,2,3,1],[3,0,1,2],[1,1,2,1]],[[1,2,1,1],[3,2,3,1],[2,0,1,2],[1,1,2,1]],[[1,3,1,1],[2,2,3,1],[2,0,1,2],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[2,0,1,2],[1,1,2,1]],[[1,2,1,1],[2,2,3,1],[3,0,1,2],[0,2,2,1]],[[1,2,1,1],[3,2,3,1],[2,0,1,2],[0,2,2,1]],[[1,3,1,1],[2,2,3,1],[2,0,1,2],[0,2,2,1]],[[2,2,1,1],[2,2,3,1],[2,0,1,2],[0,2,2,1]],[[1,2,1,1],[2,2,3,1],[2,0,1,1],[1,2,2,2]],[[1,2,1,1],[2,2,3,1],[2,0,1,1],[1,2,3,1]],[[1,2,1,1],[2,2,3,1],[2,0,1,1],[1,3,2,1]],[[1,2,1,1],[2,2,3,1],[2,0,1,1],[2,2,2,1]],[[1,2,1,1],[2,2,3,1],[3,0,1,1],[1,2,2,1]],[[1,2,1,1],[3,2,3,1],[2,0,1,1],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[2,0,1,1],[1,2,2,1]],[[2,0,2,0],[2,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,2,0],[3,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,2,0],[2,2,3,2],[3,3,3,1],[0,2,0,0]],[[1,0,2,0],[2,2,3,2],[2,4,3,1],[0,2,0,0]],[[2,2,1,1],[2,2,3,1],[2,0,1,1],[1,2,2,1]],[[1,2,1,1],[3,2,3,1],[1,3,3,2],[0,0,0,1]],[[1,3,1,1],[2,2,3,1],[1,3,3,2],[0,0,0,1]],[[2,2,1,1],[2,2,3,1],[1,3,3,2],[0,0,0,1]],[[2,0,2,0],[2,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,2,0],[3,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,2,0],[2,2,3,2],[3,3,3,1],[1,1,0,0]],[[1,0,2,0],[2,2,3,2],[2,4,3,1],[1,1,0,0]],[[1,0,2,0],[2,2,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,1,1],[3,2,3,1],[1,3,3,1],[1,1,0,0]],[[1,3,1,1],[2,2,3,1],[1,3,3,1],[1,1,0,0]],[[2,2,1,1],[2,2,3,1],[1,3,3,1],[1,1,0,0]],[[1,2,1,1],[3,2,3,1],[1,3,3,1],[0,2,0,0]],[[1,3,1,1],[2,2,3,1],[1,3,3,1],[0,2,0,0]],[[2,2,1,1],[2,2,3,1],[1,3,3,1],[0,2,0,0]],[[1,2,1,1],[3,2,3,1],[1,3,3,1],[0,0,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,3,1],[0,0,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,3,1],[0,0,2,0]],[[1,2,1,1],[3,2,3,1],[1,3,3,1],[0,0,1,1]],[[1,3,1,1],[2,2,3,1],[1,3,3,1],[0,0,1,1]],[[2,2,1,1],[2,2,3,1],[1,3,3,1],[0,0,1,1]],[[1,2,1,1],[3,2,3,1],[1,3,3,0],[1,2,0,0]],[[1,3,1,1],[2,2,3,1],[1,3,3,0],[1,2,0,0]],[[2,2,1,1],[2,2,3,1],[1,3,3,0],[1,2,0,0]],[[1,2,1,1],[3,2,3,1],[1,3,3,0],[1,1,1,0]],[[1,3,1,1],[2,2,3,1],[1,3,3,0],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[1,3,3,0],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[1,3,3,0],[1,0,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,3,0],[1,0,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,3,0],[1,0,2,0]],[[1,2,1,1],[3,2,3,1],[1,3,3,0],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[1,3,3,0],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[1,3,3,0],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[1,3,3,0],[0,1,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,3,0],[0,1,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,3,0],[0,1,2,0]],[[1,2,1,1],[3,2,3,1],[1,3,3,0],[0,0,2,1]],[[1,3,1,1],[2,2,3,1],[1,3,3,0],[0,0,2,1]],[[2,2,1,1],[2,2,3,1],[1,3,3,0],[0,0,2,1]],[[1,2,1,1],[3,2,3,1],[1,3,2,2],[0,0,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,2,2],[0,0,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,2,2],[0,0,2,0]],[[1,2,1,1],[3,2,3,1],[1,3,2,2],[0,0,1,1]],[[1,3,1,1],[2,2,3,1],[1,3,2,2],[0,0,1,1]],[[2,2,1,1],[2,2,3,1],[1,3,2,2],[0,0,1,1]],[[1,2,1,1],[3,2,3,1],[1,3,2,1],[1,2,0,0]],[[1,3,1,1],[2,2,3,1],[1,3,2,1],[1,2,0,0]],[[2,2,1,1],[2,2,3,1],[1,3,2,1],[1,2,0,0]],[[1,2,1,1],[3,2,3,1],[1,3,2,1],[1,1,1,0]],[[1,3,1,1],[2,2,3,1],[1,3,2,1],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[1,3,2,1],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[1,3,2,1],[1,1,0,1]],[[1,3,1,1],[2,2,3,1],[1,3,2,1],[1,1,0,1]],[[2,2,1,1],[2,2,3,1],[1,3,2,1],[1,1,0,1]],[[1,2,1,1],[3,2,3,1],[1,3,2,1],[1,0,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,2,1],[1,0,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,2,1],[1,0,2,0]],[[1,2,1,1],[3,2,3,1],[1,3,2,1],[1,0,1,1]],[[1,3,1,1],[2,2,3,1],[1,3,2,1],[1,0,1,1]],[[2,2,1,1],[2,2,3,1],[1,3,2,1],[1,0,1,1]],[[1,2,1,1],[3,2,3,1],[1,3,2,1],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[1,3,2,1],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[1,3,2,1],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[1,3,2,1],[0,2,0,1]],[[1,3,1,1],[2,2,3,1],[1,3,2,1],[0,2,0,1]],[[2,2,1,1],[2,2,3,1],[1,3,2,1],[0,2,0,1]],[[1,2,1,1],[3,2,3,1],[1,3,2,1],[0,1,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,2,1],[0,1,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,2,1],[0,1,2,0]],[[1,2,1,1],[3,2,3,1],[1,3,2,1],[0,1,1,1]],[[1,3,1,1],[2,2,3,1],[1,3,2,1],[0,1,1,1]],[[2,2,1,1],[2,2,3,1],[1,3,2,1],[0,1,1,1]],[[1,2,1,1],[3,2,3,1],[1,3,2,0],[1,2,0,1]],[[1,3,1,1],[2,2,3,1],[1,3,2,0],[1,2,0,1]],[[2,2,1,1],[2,2,3,1],[1,3,2,0],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[1,3,2,0],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[1,3,2,0],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[1,3,2,0],[1,1,1,1]],[[1,2,1,1],[3,2,3,1],[1,3,2,0],[1,0,2,1]],[[1,3,1,1],[2,2,3,1],[1,3,2,0],[1,0,2,1]],[[2,2,1,1],[2,2,3,1],[1,3,2,0],[1,0,2,1]],[[1,2,1,1],[3,2,3,1],[1,3,2,0],[0,2,1,1]],[[1,3,1,1],[2,2,3,1],[1,3,2,0],[0,2,1,1]],[[2,2,1,1],[2,2,3,1],[1,3,2,0],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[1,3,2,0],[0,1,2,1]],[[1,3,1,1],[2,2,3,1],[1,3,2,0],[0,1,2,1]],[[2,2,1,1],[2,2,3,1],[1,3,2,0],[0,1,2,1]],[[1,2,1,1],[3,2,3,1],[1,3,1,2],[1,2,0,0]],[[1,3,1,1],[2,2,3,1],[1,3,1,2],[1,2,0,0]],[[2,2,1,1],[2,2,3,1],[1,3,1,2],[1,2,0,0]],[[1,2,1,1],[3,2,3,1],[1,3,1,2],[1,1,1,0]],[[1,3,1,1],[2,2,3,1],[1,3,1,2],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[1,3,1,2],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[1,3,1,2],[1,1,0,1]],[[1,3,1,1],[2,2,3,1],[1,3,1,2],[1,1,0,1]],[[2,2,1,1],[2,2,3,1],[1,3,1,2],[1,1,0,1]],[[1,2,1,1],[3,2,3,1],[1,3,1,2],[1,0,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,1,2],[1,0,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,1,2],[1,0,2,0]],[[1,2,1,1],[3,2,3,1],[1,3,1,2],[1,0,1,1]],[[1,3,1,1],[2,2,3,1],[1,3,1,2],[1,0,1,1]],[[2,2,1,1],[2,2,3,1],[1,3,1,2],[1,0,1,1]],[[1,2,1,1],[3,2,3,1],[1,3,1,2],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[1,3,1,2],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[1,3,1,2],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[1,3,1,2],[0,2,0,1]],[[1,3,1,1],[2,2,3,1],[1,3,1,2],[0,2,0,1]],[[2,2,1,1],[2,2,3,1],[1,3,1,2],[0,2,0,1]],[[1,2,1,1],[3,2,3,1],[1,3,1,2],[0,1,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,1,2],[0,1,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,1,2],[0,1,2,0]],[[1,2,1,1],[3,2,3,1],[1,3,1,2],[0,1,1,1]],[[1,3,1,1],[2,2,3,1],[1,3,1,2],[0,1,1,1]],[[2,2,1,1],[2,2,3,1],[1,3,1,2],[0,1,1,1]],[[1,2,1,1],[3,2,3,1],[1,3,1,1],[1,1,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,1,1],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,1,1],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[1,3,1,1],[0,2,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,1,1],[0,2,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,1,1],[0,2,2,0]],[[1,0,2,0],[2,3,0,1],[0,4,3,2],[1,2,2,1]],[[1,0,2,0],[2,3,0,1],[0,3,3,2],[2,2,2,1]],[[1,0,2,0],[2,3,0,1],[0,3,3,2],[1,3,2,1]],[[1,0,2,0],[2,3,0,1],[0,3,3,2],[1,2,3,1]],[[1,0,2,0],[2,3,0,1],[0,3,3,2],[1,2,2,2]],[[1,0,2,0],[2,3,0,1],[1,4,3,2],[0,2,2,1]],[[1,0,2,0],[2,3,0,1],[1,3,3,2],[0,3,2,1]],[[1,0,2,0],[2,3,0,1],[1,3,3,2],[0,2,3,1]],[[1,0,2,0],[2,3,0,1],[1,3,3,2],[0,2,2,2]],[[1,2,1,1],[3,2,3,1],[1,3,1,0],[1,1,2,1]],[[1,3,1,1],[2,2,3,1],[1,3,1,0],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[1,3,1,0],[1,1,2,1]],[[1,2,1,1],[3,2,3,1],[1,3,1,0],[0,2,2,1]],[[1,3,1,1],[2,2,3,1],[1,3,1,0],[0,2,2,1]],[[1,0,2,0],[2,3,0,2],[0,2,3,3],[1,2,2,1]],[[1,0,2,0],[2,3,0,2],[0,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,3,0,2],[0,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,3,0,2],[0,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,3,0,2],[0,2,3,2],[1,2,2,2]],[[1,0,2,0],[2,3,0,2],[0,4,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,0,2],[0,3,2,3],[1,2,2,1]],[[1,0,2,0],[2,3,0,2],[0,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,3,0,2],[0,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,3,0,2],[0,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,0,2],[0,3,2,2],[1,2,2,2]],[[1,0,2,0],[2,3,0,2],[0,4,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,0,2],[0,3,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,0,2],[0,3,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,0,2],[0,3,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,0,2],[0,3,3,1],[1,2,2,2]],[[1,0,2,0],[2,3,0,2],[0,3,3,3],[1,1,2,1]],[[1,0,2,0],[2,3,0,2],[0,3,3,2],[1,1,3,1]],[[1,0,2,0],[2,3,0,2],[0,3,3,2],[1,1,2,2]],[[1,0,2,0],[2,3,0,2],[0,4,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,0,2],[0,3,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,0,2],[0,3,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,0,2],[0,3,3,2],[1,2,3,0]],[[1,0,2,0],[2,3,0,2],[1,2,3,3],[0,2,2,1]],[[1,0,2,0],[2,3,0,2],[1,2,3,2],[0,3,2,1]],[[1,0,2,0],[2,3,0,2],[1,2,3,2],[0,2,3,1]],[[1,0,2,0],[2,3,0,2],[1,2,3,2],[0,2,2,2]],[[1,0,2,0],[2,3,0,2],[1,4,2,2],[0,2,2,1]],[[1,0,2,0],[2,3,0,2],[1,3,2,3],[0,2,2,1]],[[1,0,2,0],[2,3,0,2],[1,3,2,2],[0,3,2,1]],[[1,0,2,0],[2,3,0,2],[1,3,2,2],[0,2,3,1]],[[1,0,2,0],[2,3,0,2],[1,3,2,2],[0,2,2,2]],[[1,0,2,0],[2,3,0,2],[1,4,3,1],[0,2,2,1]],[[1,0,2,0],[2,3,0,2],[1,3,3,1],[0,3,2,1]],[[1,0,2,0],[2,3,0,2],[1,3,3,1],[0,2,3,1]],[[1,0,2,0],[2,3,0,2],[1,3,3,1],[0,2,2,2]],[[1,0,2,0],[2,3,0,2],[1,3,3,3],[0,1,2,1]],[[1,0,2,0],[2,3,0,2],[1,3,3,2],[0,1,3,1]],[[1,0,2,0],[2,3,0,2],[1,3,3,2],[0,1,2,2]],[[1,0,2,0],[2,3,0,2],[1,4,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,0,2],[1,3,3,2],[0,3,2,0]],[[1,0,2,0],[2,3,0,2],[1,3,3,2],[0,2,3,0]],[[1,0,2,0],[2,3,0,2],[1,3,3,3],[1,0,2,1]],[[1,0,2,0],[2,3,0,2],[1,3,3,2],[1,0,3,1]],[[1,0,2,0],[2,3,0,2],[1,3,3,2],[1,0,2,2]],[[2,2,1,1],[2,2,3,1],[1,3,1,0],[0,2,2,1]],[[1,0,2,0],[3,3,0,2],[2,0,3,2],[1,2,2,1]],[[1,0,2,0],[2,3,0,2],[3,0,3,2],[1,2,2,1]],[[1,0,2,0],[2,3,0,2],[2,0,3,3],[1,2,2,1]],[[1,0,2,0],[2,3,0,2],[2,0,3,2],[2,2,2,1]],[[1,0,2,0],[2,3,0,2],[2,0,3,2],[1,3,2,1]],[[1,0,2,0],[2,3,0,2],[2,0,3,2],[1,2,3,1]],[[1,0,2,0],[2,3,0,2],[2,0,3,2],[1,2,2,2]],[[1,2,1,1],[3,2,3,1],[1,3,0,2],[1,1,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,0,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,0,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[1,3,0,2],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[1,3,0,2],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[1,3,0,2],[1,1,1,1]],[[1,2,1,1],[3,2,3,1],[1,3,0,2],[1,0,2,1]],[[1,3,1,1],[2,2,3,1],[1,3,0,2],[1,0,2,1]],[[2,2,1,1],[2,2,3,1],[1,3,0,2],[1,0,2,1]],[[1,2,1,1],[3,2,3,1],[1,3,0,2],[0,2,2,0]],[[1,3,1,1],[2,2,3,1],[1,3,0,2],[0,2,2,0]],[[2,2,1,1],[2,2,3,1],[1,3,0,2],[0,2,2,0]],[[1,2,1,1],[3,2,3,1],[1,3,0,2],[0,2,1,1]],[[1,3,1,1],[2,2,3,1],[1,3,0,2],[0,2,1,1]],[[2,2,1,1],[2,2,3,1],[1,3,0,2],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[1,3,0,2],[0,1,2,1]],[[1,3,1,1],[2,2,3,1],[1,3,0,2],[0,1,2,1]],[[2,2,1,1],[2,2,3,1],[1,3,0,2],[0,1,2,1]],[[1,2,1,1],[3,2,3,1],[1,3,0,1],[1,1,2,1]],[[1,3,1,1],[2,2,3,1],[1,3,0,1],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[1,3,0,1],[1,1,2,1]],[[1,2,1,1],[3,2,3,1],[1,3,0,1],[0,2,2,1]],[[1,3,1,1],[2,2,3,1],[1,3,0,1],[0,2,2,1]],[[2,2,1,1],[2,2,3,1],[1,3,0,1],[0,2,2,1]],[[1,0,2,0],[2,3,1,0],[0,4,3,2],[1,2,2,1]],[[1,0,2,0],[2,3,1,0],[0,3,3,2],[2,2,2,1]],[[1,0,2,0],[2,3,1,0],[0,3,3,2],[1,3,2,1]],[[1,0,2,0],[2,3,1,0],[0,3,3,2],[1,2,3,1]],[[1,0,2,0],[2,3,1,0],[0,3,3,2],[1,2,2,2]],[[1,0,2,0],[2,3,1,0],[1,4,3,2],[0,2,2,1]],[[1,0,2,0],[2,3,1,0],[1,3,3,2],[0,3,2,1]],[[1,0,2,0],[2,3,1,0],[1,3,3,2],[0,2,3,1]],[[1,0,2,0],[2,3,1,0],[1,3,3,2],[0,2,2,2]],[[1,0,2,0],[2,3,1,1],[0,4,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,1,1],[0,3,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,1,1],[0,3,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,1,1],[0,3,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,1,1],[0,3,3,1],[1,2,2,2]],[[1,0,2,0],[2,3,1,1],[0,4,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,1,1],[0,3,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,1,1],[0,3,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,1,1],[0,3,3,2],[1,2,3,0]],[[1,0,2,0],[2,3,1,1],[1,4,3,1],[0,2,2,1]],[[1,0,2,0],[2,3,1,1],[1,3,3,1],[0,3,2,1]],[[1,0,2,0],[2,3,1,1],[1,3,3,1],[0,2,3,1]],[[1,0,2,0],[2,3,1,1],[1,3,3,1],[0,2,2,2]],[[1,0,2,0],[2,3,1,1],[1,4,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,1,1],[1,3,3,2],[0,3,2,0]],[[1,0,2,0],[2,3,1,1],[1,3,3,2],[0,2,3,0]],[[1,2,1,1],[3,2,3,1],[1,2,3,2],[1,0,0,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,2],[1,0,0,1]],[[2,2,1,1],[2,2,3,1],[1,2,3,2],[1,0,0,1]],[[1,0,2,0],[2,3,1,3],[0,2,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,3,1,2],[0,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,1,2],[0,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,3,1,2],[0,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,1,2],[0,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,1,2],[0,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,3,1,3],[0,2,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,1,2],[0,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,3,1,2],[0,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,3,1,2],[0,2,3,2],[1,2,1,2]],[[1,0,2,0],[2,3,1,3],[0,2,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,1,2],[0,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,3,1,2],[0,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,3,1,2],[0,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,1,2],[0,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,1,2],[0,2,3,2],[1,2,3,0]],[[2,0,2,0],[2,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,0],[3,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,4,1,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,1,3],[0,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,4,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,1,3],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,3,1,2],[0,3,1,2],[1,2,2,2]],[[2,0,2,0],[2,3,1,2],[0,3,2,1],[1,2,2,1]],[[1,0,2,0],[3,3,1,2],[0,3,2,1],[1,2,2,1]],[[1,0,2,0],[2,4,1,2],[0,3,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,4,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,3,1,2],[0,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,3,1,3],[0,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,2,3],[1,1,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,2,2],[1,1,3,1]],[[1,0,2,0],[2,3,1,2],[0,3,2,2],[1,1,2,2]],[[2,0,2,0],[2,3,1,2],[0,3,2,2],[1,2,2,0]],[[1,0,2,0],[3,3,1,2],[0,3,2,2],[1,2,2,0]],[[1,0,2,0],[2,4,1,2],[0,3,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,1,2],[0,4,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,1,2],[0,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,3,1,2],[0,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,3,1,2],[0,3,2,2],[1,2,3,0]],[[2,0,2,0],[2,3,1,2],[0,3,3,1],[1,1,2,1]],[[1,0,2,0],[3,3,1,2],[0,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,4,1,2],[0,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,3,1,2],[0,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,1],[1,1,2,2]],[[2,0,2,0],[2,3,1,2],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[3,3,1,2],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,4,1,2],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,1,2],[0,4,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,1,2],[0,3,4,1],[1,2,1,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,3,1,3],[0,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,3],[1,0,2,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,2],[1,0,2,2]],[[2,0,2,0],[2,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[3,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,4,1,2],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,1,3],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,1,2],[0,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,1,2],[0,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,3],[1,1,1,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,2],[1,1,1,2]],[[2,0,2,0],[2,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[3,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,4,1,2],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,1,3],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,1,2],[0,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,1,2],[0,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,3,1,2],[0,3,3,3],[1,1,2,0]],[[1,0,2,0],[2,3,1,2],[0,3,3,2],[1,1,3,0]],[[2,0,2,0],[2,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[3,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,4,1,2],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,1,3],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,1,2],[0,4,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,1,2],[0,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,3],[1,2,0,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,3,1,2],[0,3,3,2],[1,2,0,2]],[[2,0,2,0],[2,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[3,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,4,1,2],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,1,3],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,1,2],[0,4,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,1,2],[0,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,3,1,2],[0,3,3,3],[1,2,1,0]],[[1,0,2,0],[2,3,1,2],[0,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[3,2,3,1],[1,2,3,2],[0,1,0,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,2],[0,1,0,1]],[[2,2,1,1],[2,2,3,1],[1,2,3,2],[0,1,0,1]],[[1,0,2,0],[2,3,1,3],[1,2,2,2],[0,2,2,1]],[[1,0,2,0],[2,3,1,2],[1,2,2,3],[0,2,2,1]],[[1,0,2,0],[2,3,1,2],[1,2,2,2],[0,3,2,1]],[[1,0,2,0],[2,3,1,2],[1,2,2,2],[0,2,3,1]],[[1,0,2,0],[2,3,1,2],[1,2,2,2],[0,2,2,2]],[[1,0,2,0],[2,3,1,2],[1,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,3,1,2],[1,2,3,1],[0,3,2,1]],[[1,0,2,0],[2,3,1,2],[1,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,3,1,2],[1,2,3,1],[0,2,2,2]],[[1,0,2,0],[2,3,1,3],[1,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,1,2],[1,2,4,2],[0,2,1,1]],[[1,0,2,0],[2,3,1,2],[1,2,3,3],[0,2,1,1]],[[1,0,2,0],[2,3,1,2],[1,2,3,2],[0,2,1,2]],[[1,0,2,0],[2,3,1,3],[1,2,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,1,2],[1,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,3,1,2],[1,2,3,3],[0,2,2,0]],[[1,0,2,0],[2,3,1,2],[1,2,3,2],[0,3,2,0]],[[1,0,2,0],[2,3,1,2],[1,2,3,2],[0,2,3,0]],[[2,0,2,0],[2,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,0,2,0],[3,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,4,1,2],[1,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,1,3],[1,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,1,2],[1,4,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,1,3],[0,2,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,1,2],[0,3,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,1,2],[0,2,3,1]],[[1,0,2,0],[2,3,1,2],[1,3,1,2],[0,2,2,2]],[[2,0,2,0],[2,3,1,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[3,3,1,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,4,1,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,1,2],[1,4,1,2],[1,1,2,1]],[[2,0,2,0],[2,3,1,2],[1,3,2,1],[0,2,2,1]],[[1,0,2,0],[3,3,1,2],[1,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,4,1,2],[1,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,3,1,2],[1,4,2,1],[0,2,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,2,1],[0,3,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,2,1],[0,2,3,1]],[[1,0,2,0],[2,3,1,2],[1,3,2,1],[0,2,2,2]],[[2,0,2,0],[2,3,1,2],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[3,3,1,2],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,4,1,2],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,1,2],[1,4,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,1,3],[1,3,2,2],[0,1,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,3,1,2],[1,3,2,2],[0,1,2,2]],[[2,0,2,0],[2,3,1,2],[1,3,2,2],[0,2,2,0]],[[1,0,2,0],[3,3,1,2],[1,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,4,1,2],[1,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,1,2],[1,4,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,1,2],[1,3,2,2],[0,3,2,0]],[[1,0,2,0],[2,3,1,2],[1,3,2,2],[0,2,3,0]],[[1,0,2,0],[2,3,1,3],[1,3,2,2],[1,0,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,2,3],[1,0,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,2,2],[1,0,3,1]],[[1,0,2,0],[2,3,1,2],[1,3,2,2],[1,0,2,2]],[[2,0,2,0],[2,3,1,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[3,3,1,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,4,1,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,1,2],[1,4,2,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[1,2,3,1],[1,1,1,0]],[[2,0,2,0],[2,3,1,2],[1,3,3,1],[0,1,2,1]],[[1,0,2,0],[3,3,1,2],[1,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,4,1,2],[1,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,1,2],[1,4,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,1],[0,1,2,2]],[[2,0,2,0],[2,3,1,2],[1,3,3,1],[0,2,1,1]],[[1,0,2,0],[3,3,1,2],[1,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,4,1,2],[1,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,1,2],[1,4,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,1,2],[1,3,4,1],[0,2,1,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,1],[0,3,1,1]],[[2,0,2,0],[2,3,1,2],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[3,3,1,2],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,4,1,2],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,1,2],[1,4,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,4,1],[1,0,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,1],[1,0,3,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,1],[1,0,2,2]],[[2,0,2,0],[2,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[3,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,4,1,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,1,2],[1,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,1,2],[1,3,4,1],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,1],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[1,2,3,1],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[1,2,3,1],[1,1,0,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,1],[1,1,0,1]],[[2,2,1,1],[2,2,3,1],[1,2,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,1,3],[1,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,2],[0,0,2,2]],[[2,0,2,0],[2,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[3,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,4,1,2],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,1,3],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,1,2],[1,4,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,1,2],[1,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,2],[0,1,1,2]],[[2,0,2,0],[2,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[3,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,4,1,2],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,1,3],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,1,2],[1,4,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,1,2],[1,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,3,1,2],[1,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,3,1,2],[1,3,3,2],[0,1,3,0]],[[2,0,2,0],[2,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[3,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,4,1,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,1,3],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,1,2],[1,4,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,1,2],[1,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,2],[0,3,0,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,2],[0,2,0,2]],[[2,0,2,0],[2,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[3,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,4,1,2],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,1,3],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,1,2],[1,4,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,1,2],[1,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,3,1,2],[1,3,3,3],[0,2,1,0]],[[1,0,2,0],[2,3,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[3,2,3,1],[1,2,3,1],[1,0,2,0]],[[1,3,1,1],[2,2,3,1],[1,2,3,1],[1,0,2,0]],[[2,2,1,1],[2,2,3,1],[1,2,3,1],[1,0,2,0]],[[1,2,1,1],[3,2,3,1],[1,2,3,1],[1,0,1,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,1],[1,0,1,1]],[[2,2,1,1],[2,2,3,1],[1,2,3,1],[1,0,1,1]],[[2,0,2,0],[2,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[3,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,4,1,2],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,1,3],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,1,2],[1,4,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,1,2],[1,3,4,2],[1,0,1,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,3],[1,0,1,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,2],[1,0,1,2]],[[2,0,2,0],[2,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[3,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,4,1,2],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,1,3],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,1,2],[1,4,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,1,2],[1,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,3,1,2],[1,3,3,3],[1,0,2,0]],[[1,0,2,0],[2,3,1,2],[1,3,3,2],[1,0,3,0]],[[2,0,2,0],[2,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[3,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,4,1,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,1,3],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,1,2],[1,4,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,1,2],[1,3,4,2],[1,1,0,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,3],[1,1,0,1]],[[1,0,2,0],[2,3,1,2],[1,3,3,2],[1,1,0,2]],[[2,0,2,0],[2,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[3,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,4,1,2],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,1,3],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,1,2],[1,4,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,1,2],[1,3,4,2],[1,1,1,0]],[[1,0,2,0],[2,3,1,2],[1,3,3,3],[1,1,1,0]],[[2,0,2,0],[2,3,1,2],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[3,3,1,2],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,4,1,2],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,1,2],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[3,2,3,1],[1,2,3,1],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[1,2,3,1],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[1,2,3,1],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[1,2,3,1],[0,2,0,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,1],[0,2,0,1]],[[2,2,1,1],[2,2,3,1],[1,2,3,1],[0,2,0,1]],[[1,2,1,1],[3,2,3,1],[1,2,3,1],[0,1,2,0]],[[1,3,1,1],[2,2,3,1],[1,2,3,1],[0,1,2,0]],[[2,2,1,1],[2,2,3,1],[1,2,3,1],[0,1,2,0]],[[1,2,1,1],[3,2,3,1],[1,2,3,1],[0,1,1,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,1],[0,1,1,1]],[[2,2,1,1],[2,2,3,1],[1,2,3,1],[0,1,1,1]],[[1,2,1,1],[3,2,3,1],[1,2,3,1],[0,0,2,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,1],[0,0,2,1]],[[2,2,1,1],[2,2,3,1],[1,2,3,1],[0,0,2,1]],[[1,2,1,1],[3,2,3,1],[1,2,3,0],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,0],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[1,2,3,0],[1,1,1,1]],[[2,0,2,0],[2,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[3,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,4,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,1,3],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[3,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[2,0,2,3],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[2,0,2,2],[2,2,2,1]],[[1,0,2,0],[2,3,1,2],[2,0,2,2],[1,3,2,1]],[[1,0,2,0],[2,3,1,2],[2,0,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,1,2],[2,0,2,2],[1,2,2,2]],[[2,0,2,0],[2,3,1,2],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[3,3,1,2],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,4,1,2],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[3,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[2,0,4,1],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[2,0,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,1,2],[2,0,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,1,2],[2,0,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,1,2],[2,0,3,1],[1,2,2,2]],[[1,0,2,0],[2,3,1,3],[2,0,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,1,2],[2,0,4,2],[1,2,1,1]],[[1,0,2,0],[2,3,1,2],[2,0,3,3],[1,2,1,1]],[[1,0,2,0],[2,3,1,2],[2,0,3,2],[1,2,1,2]],[[2,0,2,0],[2,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[3,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,4,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,1,3],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,1,2],[3,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,1,2],[2,0,4,2],[1,2,2,0]],[[1,0,2,0],[2,3,1,2],[2,0,3,3],[1,2,2,0]],[[1,0,2,0],[2,3,1,2],[2,0,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,1,2],[2,0,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,1,2],[2,0,3,2],[1,2,3,0]],[[2,0,2,0],[2,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[3,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,4,1,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,1,3],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[3,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[2,1,1,3],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[2,1,1,2],[2,2,2,1]],[[1,0,2,0],[2,3,1,2],[2,1,1,2],[1,3,2,1]],[[1,0,2,0],[2,3,1,2],[2,1,1,2],[1,2,3,1]],[[1,0,2,0],[2,3,1,2],[2,1,1,2],[1,2,2,2]],[[2,0,2,0],[2,3,1,2],[2,1,2,1],[1,2,2,1]],[[1,0,2,0],[3,3,1,2],[2,1,2,1],[1,2,2,1]],[[1,0,2,0],[2,4,1,2],[2,1,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[3,1,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,1,2],[2,1,2,1],[2,2,2,1]],[[1,0,2,0],[2,3,1,2],[2,1,2,1],[1,3,2,1]],[[1,0,2,0],[2,3,1,2],[2,1,2,1],[1,2,3,1]],[[1,0,2,0],[2,3,1,2],[2,1,2,1],[1,2,2,2]],[[2,0,2,0],[2,3,1,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[3,3,1,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,4,1,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,1,2],[3,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,1,2],[2,1,2,2],[2,2,2,0]],[[1,0,2,0],[2,3,1,2],[2,1,2,2],[1,3,2,0]],[[1,0,2,0],[2,3,1,2],[2,1,2,2],[1,2,3,0]],[[2,0,2,0],[2,3,1,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[3,3,1,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,4,1,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,1,2],[3,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,1,2],[2,1,3,1],[2,2,1,1]],[[1,0,2,0],[2,3,1,2],[2,1,3,1],[1,3,1,1]],[[2,0,2,0],[2,3,1,2],[2,1,3,2],[1,2,0,1]],[[1,0,2,0],[3,3,1,2],[2,1,3,2],[1,2,0,1]],[[1,0,2,0],[2,4,1,2],[2,1,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,1,2],[3,1,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,1,2],[2,1,3,2],[2,2,0,1]],[[1,0,2,0],[2,3,1,2],[2,1,3,2],[1,3,0,1]],[[2,0,2,0],[2,3,1,2],[2,1,3,2],[1,2,1,0]],[[1,0,2,0],[3,3,1,2],[2,1,3,2],[1,2,1,0]],[[1,0,2,0],[2,4,1,2],[2,1,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,1,2],[3,1,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,1,2],[2,1,3,2],[2,2,1,0]],[[1,0,2,0],[2,3,1,2],[2,1,3,2],[1,3,1,0]],[[1,2,1,1],[3,2,3,1],[1,2,3,0],[1,0,2,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,0],[1,0,2,1]],[[2,2,1,1],[2,2,3,1],[1,2,3,0],[1,0,2,1]],[[2,0,2,0],[2,3,1,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[3,3,1,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[2,4,1,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,1,2],[3,2,1,2],[0,2,2,1]],[[2,0,2,0],[2,3,1,2],[2,2,1,2],[1,1,2,1]],[[1,0,2,0],[3,3,1,2],[2,2,1,2],[1,1,2,1]],[[1,0,2,0],[2,4,1,2],[2,2,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,1,2],[3,2,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,1,2],[2,2,1,2],[2,1,2,1]],[[2,0,2,0],[2,3,1,2],[2,2,2,1],[0,2,2,1]],[[1,0,2,0],[3,3,1,2],[2,2,2,1],[0,2,2,1]],[[1,0,2,0],[2,4,1,2],[2,2,2,1],[0,2,2,1]],[[1,0,2,0],[2,3,1,2],[3,2,2,1],[0,2,2,1]],[[2,0,2,0],[2,3,1,2],[2,2,2,1],[1,1,2,1]],[[1,0,2,0],[3,3,1,2],[2,2,2,1],[1,1,2,1]],[[1,0,2,0],[2,4,1,2],[2,2,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,1,2],[3,2,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,1,2],[2,2,2,1],[2,1,2,1]],[[2,0,2,0],[2,3,1,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[3,3,1,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,4,1,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,1,2],[3,2,2,2],[0,2,2,0]],[[2,0,2,0],[2,3,1,2],[2,2,2,2],[1,1,2,0]],[[1,0,2,0],[3,3,1,2],[2,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,4,1,2],[2,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,1,2],[3,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,1,2],[2,2,2,2],[2,1,2,0]],[[1,2,1,1],[3,2,3,1],[1,2,3,0],[0,2,1,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,0],[0,2,1,1]],[[2,2,1,1],[2,2,3,1],[1,2,3,0],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[1,2,3,0],[0,1,2,1]],[[1,3,1,1],[2,2,3,1],[1,2,3,0],[0,1,2,1]],[[2,2,1,1],[2,2,3,1],[1,2,3,0],[0,1,2,1]],[[2,0,2,0],[2,3,1,2],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[3,3,1,2],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[2,4,1,2],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,1,2],[3,2,3,1],[0,1,2,1]],[[2,0,2,0],[2,3,1,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[3,3,1,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,4,1,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,1,2],[3,2,3,1],[0,2,1,1]],[[2,0,2,0],[2,3,1,2],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[3,3,1,2],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,4,1,2],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,1,2],[3,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,1,2],[2,2,3,1],[2,0,2,1]],[[2,0,2,0],[2,3,1,2],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[3,3,1,2],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,4,1,2],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,1,2],[3,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,1,2],[2,2,3,1],[2,1,1,1]],[[1,2,1,1],[3,2,3,1],[1,2,2,2],[1,1,1,0]],[[2,0,2,0],[2,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[3,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,4,1,2],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,1,2],[3,2,3,2],[0,1,1,1]],[[2,0,2,0],[2,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[3,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,4,1,2],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,1,2],[3,2,3,2],[0,1,2,0]],[[2,0,2,0],[2,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[3,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[2,4,1,2],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,1,2],[3,2,3,2],[0,2,0,1]],[[2,0,2,0],[2,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[3,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[2,4,1,2],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,1,2],[3,2,3,2],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[1,2,2,2],[1,1,1,0]],[[2,2,1,1],[2,2,3,1],[1,2,2,2],[1,1,1,0]],[[1,2,1,1],[3,2,3,1],[1,2,2,2],[1,1,0,1]],[[1,3,1,1],[2,2,3,1],[1,2,2,2],[1,1,0,1]],[[2,2,1,1],[2,2,3,1],[1,2,2,2],[1,1,0,1]],[[2,0,2,0],[2,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[3,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,4,1,2],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,1,2],[3,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,1,2],[2,2,3,2],[2,0,1,1]],[[2,0,2,0],[2,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[3,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,4,1,2],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,1,2],[3,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,1,2],[2,2,3,2],[2,0,2,0]],[[2,0,2,0],[2,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[3,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,4,1,2],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,1,2],[3,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,1,2],[2,2,3,2],[2,1,0,1]],[[2,0,2,0],[2,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[3,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,4,1,2],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,1,2],[3,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,1,2],[2,2,3,2],[2,1,1,0]],[[1,2,1,1],[3,2,3,1],[1,2,2,2],[1,0,2,0]],[[1,3,1,1],[2,2,3,1],[1,2,2,2],[1,0,2,0]],[[2,2,1,1],[2,2,3,1],[1,2,2,2],[1,0,2,0]],[[1,2,1,1],[3,2,3,1],[1,2,2,2],[1,0,1,1]],[[2,0,2,0],[2,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,0,2,0],[3,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,0,2,0],[2,4,1,2],[2,2,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,1,2],[3,2,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,1,2],[2,2,3,2],[2,2,0,0]],[[1,3,1,1],[2,2,3,1],[1,2,2,2],[1,0,1,1]],[[2,2,1,1],[2,2,3,1],[1,2,2,2],[1,0,1,1]],[[1,2,1,1],[3,2,3,1],[1,2,2,2],[0,2,1,0]],[[1,3,1,1],[2,2,3,1],[1,2,2,2],[0,2,1,0]],[[2,2,1,1],[2,2,3,1],[1,2,2,2],[0,2,1,0]],[[1,2,1,1],[3,2,3,1],[1,2,2,2],[0,2,0,1]],[[1,3,1,1],[2,2,3,1],[1,2,2,2],[0,2,0,1]],[[2,2,1,1],[2,2,3,1],[1,2,2,2],[0,2,0,1]],[[1,2,1,1],[3,2,3,1],[1,2,2,2],[0,1,2,0]],[[1,3,1,1],[2,2,3,1],[1,2,2,2],[0,1,2,0]],[[2,2,1,1],[2,2,3,1],[1,2,2,2],[0,1,2,0]],[[1,2,1,1],[3,2,3,1],[1,2,2,2],[0,1,1,1]],[[1,3,1,1],[2,2,3,1],[1,2,2,2],[0,1,1,1]],[[2,2,1,1],[2,2,3,1],[1,2,2,2],[0,1,1,1]],[[1,2,1,1],[3,2,3,1],[1,2,2,2],[0,0,2,1]],[[1,3,1,1],[2,2,3,1],[1,2,2,2],[0,0,2,1]],[[2,2,1,1],[2,2,3,1],[1,2,2,2],[0,0,2,1]],[[1,2,1,1],[3,2,3,1],[1,2,1,2],[1,0,2,1]],[[1,3,1,1],[2,2,3,1],[1,2,1,2],[1,0,2,1]],[[2,2,1,1],[2,2,3,1],[1,2,1,2],[1,0,2,1]],[[1,2,1,1],[3,2,3,1],[1,2,1,2],[0,1,2,1]],[[1,3,1,1],[2,2,3,1],[1,2,1,2],[0,1,2,1]],[[2,2,1,1],[2,2,3,1],[1,2,1,2],[0,1,2,1]],[[1,2,1,1],[3,2,3,1],[1,2,0,2],[0,2,2,1]],[[1,3,1,1],[2,2,3,1],[1,2,0,2],[0,2,2,1]],[[2,2,1,1],[2,2,3,1],[1,2,0,2],[0,2,2,1]],[[1,2,1,1],[3,2,3,1],[1,1,3,1],[0,2,2,0]],[[1,3,1,1],[2,2,3,1],[1,1,3,1],[0,2,2,0]],[[2,2,1,1],[2,2,3,1],[1,1,3,1],[0,2,2,0]],[[1,2,1,1],[3,2,3,1],[1,1,3,1],[0,2,1,1]],[[1,3,1,1],[2,2,3,1],[1,1,3,1],[0,2,1,1]],[[2,2,1,1],[2,2,3,1],[1,1,3,1],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[1,1,3,0],[0,2,2,1]],[[1,3,1,1],[2,2,3,1],[1,1,3,0],[0,2,2,1]],[[2,2,1,1],[2,2,3,1],[1,1,3,0],[0,2,2,1]],[[1,2,1,1],[3,2,3,1],[1,1,2,2],[0,2,2,0]],[[1,3,1,1],[2,2,3,1],[1,1,2,2],[0,2,2,0]],[[2,2,1,1],[2,2,3,1],[1,1,2,2],[0,2,2,0]],[[1,2,1,1],[3,2,3,1],[1,1,2,2],[0,2,1,1]],[[1,3,1,1],[2,2,3,1],[1,1,2,2],[0,2,1,1]],[[2,2,1,1],[2,2,3,1],[1,1,2,2],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[1,1,1,2],[0,2,2,1]],[[1,3,1,1],[2,2,3,1],[1,1,1,2],[0,2,2,1]],[[2,2,1,1],[2,2,3,1],[1,1,1,2],[0,2,2,1]],[[1,2,1,1],[3,2,3,1],[1,1,0,2],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[1,1,0,2],[1,2,2,1]],[[2,2,1,1],[2,2,3,1],[1,1,0,2],[1,2,2,1]],[[1,2,1,1],[3,2,3,1],[1,0,3,1],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[1,0,3,1],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[1,0,3,1],[1,2,2,0]],[[1,2,1,1],[3,2,3,1],[1,0,3,1],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[1,0,3,1],[1,2,1,1]],[[2,2,1,1],[2,2,3,1],[1,0,3,1],[1,2,1,1]],[[1,2,1,1],[3,2,3,1],[1,0,3,0],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[1,0,3,0],[1,2,2,1]],[[2,2,1,1],[2,2,3,1],[1,0,3,0],[1,2,2,1]],[[1,2,1,1],[3,2,3,1],[1,0,2,2],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[1,0,2,2],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[1,0,2,2],[1,2,2,0]],[[1,2,1,1],[3,2,3,1],[1,0,2,2],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[1,0,2,2],[1,2,1,1]],[[2,2,1,1],[2,2,3,1],[1,0,2,2],[1,2,1,1]],[[2,0,2,0],[2,3,1,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[3,3,1,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,4,1,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,3,1,2],[3,3,3,2],[1,0,0,1]],[[2,0,2,0],[2,3,1,2],[2,3,3,2],[1,0,1,0]],[[1,0,2,0],[3,3,1,2],[2,3,3,2],[1,0,1,0]],[[1,0,2,0],[2,4,1,2],[2,3,3,2],[1,0,1,0]],[[1,0,2,0],[2,3,1,2],[3,3,3,2],[1,0,1,0]],[[1,2,1,1],[3,2,3,1],[1,0,1,2],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[1,0,1,2],[1,2,2,1]],[[2,2,1,1],[2,2,3,1],[1,0,1,2],[1,2,2,1]],[[1,2,1,1],[2,2,3,1],[0,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,2,3,1],[0,3,4,2],[0,0,2,0]],[[1,2,1,1],[2,2,4,1],[0,3,3,2],[0,0,2,0]],[[1,2,1,1],[2,2,3,1],[0,3,3,2],[0,0,1,2]],[[1,2,1,1],[2,2,3,1],[0,3,3,3],[0,0,1,1]],[[1,2,1,1],[2,2,3,1],[0,3,4,2],[0,0,1,1]],[[1,2,1,1],[2,2,4,1],[0,3,3,2],[0,0,1,1]],[[1,2,1,1],[3,2,3,1],[0,3,3,1],[1,2,0,0]],[[1,3,1,1],[2,2,3,1],[0,3,3,1],[1,2,0,0]],[[2,2,1,1],[2,2,3,1],[0,3,3,1],[1,2,0,0]],[[1,2,1,1],[3,2,3,1],[0,3,3,0],[1,2,1,0]],[[1,3,1,1],[2,2,3,1],[0,3,3,0],[1,2,1,0]],[[2,2,1,1],[2,2,3,1],[0,3,3,0],[1,2,1,0]],[[1,0,2,0],[2,3,2,0],[0,2,4,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,0],[0,2,3,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,0],[0,2,3,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,0],[0,2,3,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,0],[0,2,3,2],[1,2,2,2]],[[2,0,2,0],[2,3,2,0],[0,3,2,2],[1,2,2,1]],[[1,0,2,0],[3,3,2,0],[0,3,2,2],[1,2,2,1]],[[1,0,2,0],[2,4,2,0],[0,3,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,0],[0,4,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,0],[0,3,2,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,0],[0,3,2,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,0],[0,3,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,0],[0,3,2,2],[1,2,2,2]],[[2,0,2,0],[2,3,2,0],[0,3,3,2],[1,1,2,1]],[[1,0,2,0],[3,3,2,0],[0,3,3,2],[1,1,2,1]],[[1,0,2,0],[2,4,2,0],[0,3,3,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,0],[0,4,3,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,0],[0,3,4,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,0],[0,3,3,2],[1,1,3,1]],[[1,0,2,0],[2,3,2,0],[0,3,3,2],[1,1,2,2]],[[2,0,2,0],[2,3,2,0],[0,3,3,2],[1,2,1,1]],[[1,0,2,0],[3,3,2,0],[0,3,3,2],[1,2,1,1]],[[1,0,2,0],[2,4,2,0],[0,3,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,2,0],[0,4,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,2,0],[0,3,4,2],[1,2,1,1]],[[1,0,2,0],[2,3,2,0],[0,3,3,2],[2,2,1,1]],[[1,0,2,0],[2,3,2,0],[0,3,3,2],[1,3,1,1]],[[1,0,2,0],[2,3,2,0],[1,2,4,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,0],[1,2,3,2],[0,3,2,1]],[[1,0,2,0],[2,3,2,0],[1,2,3,2],[0,2,3,1]],[[1,0,2,0],[2,3,2,0],[1,2,3,2],[0,2,2,2]],[[2,0,2,0],[2,3,2,0],[1,3,2,2],[0,2,2,1]],[[1,0,2,0],[3,3,2,0],[1,3,2,2],[0,2,2,1]],[[1,0,2,0],[2,4,2,0],[1,3,2,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,0],[1,4,2,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,0],[1,3,2,2],[0,3,2,1]],[[1,0,2,0],[2,3,2,0],[1,3,2,2],[0,2,3,1]],[[1,0,2,0],[2,3,2,0],[1,3,2,2],[0,2,2,2]],[[2,0,2,0],[2,3,2,0],[1,3,2,2],[1,1,2,1]],[[1,0,2,0],[3,3,2,0],[1,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,4,2,0],[1,3,2,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,0],[1,4,2,2],[1,1,2,1]],[[2,0,2,0],[2,3,2,0],[1,3,3,2],[0,1,2,1]],[[1,0,2,0],[3,3,2,0],[1,3,3,2],[0,1,2,1]],[[1,0,2,0],[2,4,2,0],[1,3,3,2],[0,1,2,1]],[[1,0,2,0],[2,3,2,0],[1,4,3,2],[0,1,2,1]],[[1,0,2,0],[2,3,2,0],[1,3,4,2],[0,1,2,1]],[[1,0,2,0],[2,3,2,0],[1,3,3,2],[0,1,3,1]],[[1,0,2,0],[2,3,2,0],[1,3,3,2],[0,1,2,2]],[[2,0,2,0],[2,3,2,0],[1,3,3,2],[0,2,1,1]],[[1,0,2,0],[3,3,2,0],[1,3,3,2],[0,2,1,1]],[[1,0,2,0],[2,4,2,0],[1,3,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,2,0],[1,4,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,2,0],[1,3,4,2],[0,2,1,1]],[[1,0,2,0],[2,3,2,0],[1,3,3,2],[0,3,1,1]],[[2,0,2,0],[2,3,2,0],[1,3,3,2],[1,0,2,1]],[[1,0,2,0],[3,3,2,0],[1,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,4,2,0],[1,3,3,2],[1,0,2,1]],[[1,0,2,0],[2,3,2,0],[1,4,3,2],[1,0,2,1]],[[1,0,2,0],[2,3,2,0],[1,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,3,2,0],[1,3,3,2],[1,0,3,1]],[[1,0,2,0],[2,3,2,0],[1,3,3,2],[1,0,2,2]],[[2,0,2,0],[2,3,2,0],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[3,3,2,0],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,4,2,0],[1,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,2,0],[1,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,2,0],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[3,2,3,1],[0,3,3,0],[1,1,2,0]],[[1,3,1,1],[2,2,3,1],[0,3,3,0],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[0,3,3,0],[1,1,2,0]],[[2,0,2,0],[2,3,2,0],[2,0,3,2],[1,2,2,1]],[[1,0,2,0],[3,3,2,0],[2,0,3,2],[1,2,2,1]],[[1,0,2,0],[2,4,2,0],[2,0,3,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,0],[3,0,3,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,0],[2,0,4,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,0],[2,0,3,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,0],[2,0,3,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,0],[2,0,3,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,0],[2,0,3,2],[1,2,2,2]],[[2,0,2,0],[2,3,2,0],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[3,3,2,0],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,4,2,0],[2,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,0],[3,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,0],[2,1,2,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,0],[2,1,2,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,0],[2,1,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,0],[2,1,2,2],[1,2,2,2]],[[2,0,2,0],[2,3,2,0],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[3,3,2,0],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,4,2,0],[2,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,2,0],[3,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,2,0],[2,1,3,2],[2,2,1,1]],[[1,0,2,0],[2,3,2,0],[2,1,3,2],[1,3,1,1]],[[2,0,2,0],[2,3,2,0],[2,2,2,2],[0,2,2,1]],[[1,0,2,0],[3,3,2,0],[2,2,2,2],[0,2,2,1]],[[1,0,2,0],[2,4,2,0],[2,2,2,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,0],[3,2,2,2],[0,2,2,1]],[[2,0,2,0],[2,3,2,0],[2,2,2,2],[1,1,2,1]],[[1,0,2,0],[3,3,2,0],[2,2,2,2],[1,1,2,1]],[[1,0,2,0],[2,4,2,0],[2,2,2,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,0],[3,2,2,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,0],[2,2,2,2],[2,1,2,1]],[[2,0,2,0],[2,3,2,0],[2,2,3,2],[0,1,2,1]],[[1,0,2,0],[3,3,2,0],[2,2,3,2],[0,1,2,1]],[[1,0,2,0],[2,4,2,0],[2,2,3,2],[0,1,2,1]],[[1,0,2,0],[2,3,2,0],[3,2,3,2],[0,1,2,1]],[[2,0,2,0],[2,3,2,0],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[3,3,2,0],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,4,2,0],[2,2,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,2,0],[3,2,3,2],[0,2,1,1]],[[2,0,2,0],[2,3,2,0],[2,2,3,2],[1,0,2,1]],[[1,0,2,0],[3,3,2,0],[2,2,3,2],[1,0,2,1]],[[1,0,2,0],[2,4,2,0],[2,2,3,2],[1,0,2,1]],[[1,0,2,0],[2,3,2,0],[3,2,3,2],[1,0,2,1]],[[1,0,2,0],[2,3,2,0],[2,2,3,2],[2,0,2,1]],[[2,0,2,0],[2,3,2,0],[2,2,3,2],[1,1,1,1]],[[1,0,2,0],[3,3,2,0],[2,2,3,2],[1,1,1,1]],[[1,0,2,0],[2,4,2,0],[2,2,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,2,0],[3,2,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,2,0],[2,2,3,2],[2,1,1,1]],[[1,2,1,1],[3,2,3,1],[0,3,2,1],[1,2,1,0]],[[1,3,1,1],[2,2,3,1],[0,3,2,1],[1,2,1,0]],[[2,2,1,1],[2,2,3,1],[0,3,2,1],[1,2,1,0]],[[1,2,1,1],[3,2,3,1],[0,3,2,1],[1,2,0,1]],[[1,3,1,1],[2,2,3,1],[0,3,2,1],[1,2,0,1]],[[2,2,1,1],[2,2,3,1],[0,3,2,1],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[0,3,2,1],[1,1,2,0]],[[1,3,1,1],[2,2,3,1],[0,3,2,1],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[0,3,2,1],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[0,3,2,1],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[0,3,2,1],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[0,3,2,1],[1,1,1,1]],[[1,2,1,1],[3,2,3,1],[0,3,2,0],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[0,3,2,0],[1,2,1,1]],[[2,2,1,1],[2,2,3,1],[0,3,2,0],[1,2,1,1]],[[1,2,1,1],[3,2,3,1],[0,3,2,0],[1,1,2,1]],[[1,3,1,1],[2,2,3,1],[0,3,2,0],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[0,3,2,0],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[0,2,2,3],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,2,2,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,2,2,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,1],[0,2,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,1],[0,2,2,2],[1,2,2,2]],[[1,0,2,0],[2,3,2,1],[0,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,2,1],[0,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,2,1],[0,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,3,2,1],[0,2,4,2],[1,2,1,1]],[[1,0,2,0],[2,3,2,1],[0,2,3,3],[1,2,1,1]],[[1,0,2,0],[2,3,2,1],[0,2,3,2],[1,2,1,2]],[[1,0,2,0],[2,3,2,1],[0,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,1],[0,2,3,3],[1,2,2,0]],[[1,0,2,0],[2,3,2,1],[0,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,2,1],[0,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,2,1],[0,2,3,2],[1,2,3,0]],[[2,0,2,0],[2,3,2,1],[0,3,1,2],[1,2,2,1]],[[1,0,2,0],[3,3,2,1],[0,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,4,2,1],[0,3,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,4,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,1,3],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,1,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,1,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,1,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,1],[0,3,1,2],[1,2,2,2]],[[2,0,2,0],[2,3,2,1],[0,3,2,1],[1,2,2,1]],[[1,0,2,0],[3,3,2,1],[0,3,2,1],[1,2,2,1]],[[1,0,2,0],[2,4,2,1],[0,3,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,4,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,3,2,1],[0,3,2,1],[1,2,2,2]],[[1,0,2,0],[2,3,2,1],[0,3,2,3],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,2,2],[1,1,3,1]],[[1,0,2,0],[2,3,2,1],[0,3,2,2],[1,1,2,2]],[[2,0,2,0],[2,3,2,1],[0,3,2,2],[1,2,2,0]],[[1,0,2,0],[3,3,2,1],[0,3,2,2],[1,2,2,0]],[[1,0,2,0],[2,4,2,1],[0,3,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,1],[0,4,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,1],[0,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,3,2,1],[0,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,3,2,1],[0,3,2,2],[1,2,3,0]],[[2,0,2,0],[2,3,2,1],[0,3,3,0],[1,2,2,1]],[[1,0,2,0],[3,3,2,1],[0,3,3,0],[1,2,2,1]],[[1,0,2,0],[2,4,2,1],[0,3,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,4,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,0],[2,2,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,0],[1,3,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,0],[1,2,3,1]],[[2,0,2,0],[2,3,2,1],[0,3,3,1],[1,1,2,1]],[[1,0,2,0],[3,3,2,1],[0,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,4,2,1],[0,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[0,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,1],[1,1,2,2]],[[2,0,2,0],[2,3,2,1],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[3,3,2,1],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,4,2,1],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,2,1],[0,4,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,2,1],[0,3,4,1],[1,2,1,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,3,2,1],[0,3,4,2],[1,0,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,3],[1,0,2,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,2],[1,0,2,2]],[[2,0,2,0],[2,3,2,1],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[3,3,2,1],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,4,2,1],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,2,1],[0,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,2,1],[0,3,4,2],[1,1,1,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,3],[1,1,1,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,2],[1,1,1,2]],[[2,0,2,0],[2,3,2,1],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[3,3,2,1],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,4,2,1],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,2,1],[0,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,2,1],[0,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,3,2,1],[0,3,3,3],[1,1,2,0]],[[1,0,2,0],[2,3,2,1],[0,3,3,2],[1,1,3,0]],[[2,0,2,0],[2,3,2,1],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[3,3,2,1],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,4,2,1],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,2,1],[0,4,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,2,1],[0,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,3],[1,2,0,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,2],[1,3,0,1]],[[1,0,2,0],[2,3,2,1],[0,3,3,2],[1,2,0,2]],[[2,0,2,0],[2,3,2,1],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[3,3,2,1],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,4,2,1],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,2,1],[0,4,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,2,1],[0,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,3,2,1],[0,3,3,3],[1,2,1,0]],[[1,0,2,0],[2,3,2,1],[0,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[3,2,3,1],[0,3,1,2],[1,2,1,0]],[[1,3,1,1],[2,2,3,1],[0,3,1,2],[1,2,1,0]],[[2,2,1,1],[2,2,3,1],[0,3,1,2],[1,2,1,0]],[[1,2,1,1],[3,2,3,1],[0,3,1,2],[1,2,0,1]],[[1,3,1,1],[2,2,3,1],[0,3,1,2],[1,2,0,1]],[[2,2,1,1],[2,2,3,1],[0,3,1,2],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[0,3,1,2],[1,1,2,0]],[[1,0,2,0],[2,3,2,1],[1,2,2,3],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[1,2,2,2],[0,3,2,1]],[[1,0,2,0],[2,3,2,1],[1,2,2,2],[0,2,3,1]],[[1,0,2,0],[2,3,2,1],[1,2,2,2],[0,2,2,2]],[[1,0,2,0],[2,3,2,1],[1,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[1,2,3,1],[0,3,2,1]],[[1,0,2,0],[2,3,2,1],[1,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,3,2,1],[1,2,3,1],[0,2,2,2]],[[1,0,2,0],[2,3,2,1],[1,2,4,2],[0,2,1,1]],[[1,0,2,0],[2,3,2,1],[1,2,3,3],[0,2,1,1]],[[1,0,2,0],[2,3,2,1],[1,2,3,2],[0,2,1,2]],[[1,0,2,0],[2,3,2,1],[1,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,3,2,1],[1,2,3,3],[0,2,2,0]],[[1,0,2,0],[2,3,2,1],[1,2,3,2],[0,3,2,0]],[[1,0,2,0],[2,3,2,1],[1,2,3,2],[0,2,3,0]],[[1,3,1,1],[2,2,3,1],[0,3,1,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[0,3,1,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[0,3,1,2],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[0,3,1,2],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[0,3,1,2],[1,1,1,1]],[[2,0,2,0],[2,3,2,1],[1,3,1,2],[0,2,2,1]],[[1,0,2,0],[3,3,2,1],[1,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,4,2,1],[1,3,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[1,4,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,1,3],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,1,2],[0,3,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,1,2],[0,2,3,1]],[[1,0,2,0],[2,3,2,1],[1,3,1,2],[0,2,2,2]],[[2,0,2,0],[2,3,2,1],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[3,3,2,1],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,4,2,1],[1,3,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[1,4,1,2],[1,1,2,1]],[[2,0,2,0],[2,3,2,1],[1,3,2,1],[0,2,2,1]],[[1,0,2,0],[3,3,2,1],[1,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,4,2,1],[1,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[1,4,2,1],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,2,1],[0,3,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,2,1],[0,2,3,1]],[[1,0,2,0],[2,3,2,1],[1,3,2,1],[0,2,2,2]],[[2,0,2,0],[2,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[3,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,4,2,1],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[1,4,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,3,2,1],[1,3,2,2],[0,1,2,2]],[[2,0,2,0],[2,3,2,1],[1,3,2,2],[0,2,2,0]],[[1,0,2,0],[3,3,2,1],[1,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,4,2,1],[1,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,2,1],[1,4,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,2,1],[1,3,2,2],[0,3,2,0]],[[1,0,2,0],[2,3,2,1],[1,3,2,2],[0,2,3,0]],[[1,0,2,0],[2,3,2,1],[1,3,2,3],[1,0,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,2,2],[1,0,3,1]],[[1,0,2,0],[2,3,2,1],[1,3,2,2],[1,0,2,2]],[[2,0,2,0],[2,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[3,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,4,2,1],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,2,1],[1,4,2,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[0,3,1,1],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[0,3,1,1],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[0,3,1,1],[1,2,2,0]],[[1,2,1,1],[3,2,3,1],[0,3,1,0],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[0,3,1,0],[1,2,2,1]],[[2,2,1,1],[2,2,3,1],[0,3,1,0],[1,2,2,1]],[[2,0,2,0],[2,3,2,1],[1,3,3,0],[0,2,2,1]],[[1,0,2,0],[3,3,2,1],[1,3,3,0],[0,2,2,1]],[[1,0,2,0],[2,4,2,1],[1,3,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[1,4,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,0],[0,3,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,0],[0,2,3,1]],[[2,0,2,0],[2,3,2,1],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[3,3,2,1],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,4,2,1],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[1,4,3,0],[1,1,2,1]],[[2,0,2,0],[2,3,2,1],[1,3,3,1],[0,1,2,1]],[[1,0,2,0],[3,3,2,1],[1,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,4,2,1],[1,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,2,1],[1,4,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,1],[0,1,2,2]],[[2,0,2,0],[2,3,2,1],[1,3,3,1],[0,2,1,1]],[[1,0,2,0],[3,3,2,1],[1,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,4,2,1],[1,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,2,1],[1,4,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,2,1],[1,3,4,1],[0,2,1,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,1],[0,3,1,1]],[[2,0,2,0],[2,3,2,1],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[3,3,2,1],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,4,2,1],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,2,1],[1,4,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,4,1],[1,0,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,1],[1,0,3,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,1],[1,0,2,2]],[[2,0,2,0],[2,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[3,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,4,2,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,2,1],[1,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,2,1],[1,3,4,1],[1,1,1,1]],[[2,0,2,0],[2,3,2,1],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[3,3,2,1],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,4,2,1],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,2,1],[1,4,3,1],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[0,3,0,2],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[0,3,0,2],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[0,3,0,2],[1,2,2,0]],[[1,2,1,1],[3,2,3,1],[0,3,0,2],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[0,3,0,2],[1,2,1,1]],[[2,2,1,1],[2,2,3,1],[0,3,0,2],[1,2,1,1]],[[1,2,1,1],[3,2,3,1],[0,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,2],[0,0,2,2]],[[2,0,2,0],[2,3,2,1],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[3,3,2,1],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,4,2,1],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,2,1],[1,4,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,2,1],[1,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,2],[0,1,1,2]],[[2,0,2,0],[2,3,2,1],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[3,3,2,1],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,4,2,1],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,2,1],[1,4,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,2,1],[1,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,3,2,1],[1,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,3,2,1],[1,3,3,2],[0,1,3,0]],[[2,0,2,0],[2,3,2,1],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[3,3,2,1],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,4,2,1],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,2,1],[1,4,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,2,1],[1,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,2],[0,3,0,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,2],[0,2,0,2]],[[2,0,2,0],[2,3,2,1],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[3,3,2,1],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,4,2,1],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,2,1],[1,4,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,2,1],[1,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,3,2,1],[1,3,3,3],[0,2,1,0]],[[1,0,2,0],[2,3,2,1],[1,3,3,2],[0,3,1,0]],[[1,3,1,1],[2,2,3,1],[0,3,0,2],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[0,3,0,2],[1,1,2,1]],[[1,2,1,1],[3,2,3,1],[0,3,0,1],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[0,3,0,1],[1,2,2,1]],[[2,2,1,1],[2,2,3,1],[0,3,0,1],[1,2,2,1]],[[2,0,2,0],[2,3,2,1],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[3,3,2,1],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,4,2,1],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,2,1],[1,4,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,2,1],[1,3,4,2],[1,0,1,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,3],[1,0,1,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,2],[1,0,1,2]],[[2,0,2,0],[2,3,2,1],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[3,3,2,1],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,4,2,1],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,2,1],[1,4,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,2,1],[1,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,3,2,1],[1,3,3,3],[1,0,2,0]],[[1,0,2,0],[2,3,2,1],[1,3,3,2],[1,0,3,0]],[[2,0,2,0],[2,3,2,1],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[3,3,2,1],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,4,2,1],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,2,1],[1,4,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,2,1],[1,3,4,2],[1,1,0,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,3],[1,1,0,1]],[[1,0,2,0],[2,3,2,1],[1,3,3,2],[1,1,0,2]],[[2,0,2,0],[2,3,2,1],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[3,3,2,1],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,4,2,1],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,2,1],[1,4,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,2,1],[1,3,4,2],[1,1,1,0]],[[1,0,2,0],[2,3,2,1],[1,3,3,3],[1,1,1,0]],[[2,0,2,0],[2,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[3,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,4,2,1],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[2,2,3,1],[0,2,3,3],[1,0,2,0]],[[1,2,1,1],[2,2,3,1],[0,2,4,2],[1,0,2,0]],[[1,2,1,1],[2,2,4,1],[0,2,3,2],[1,0,2,0]],[[1,2,1,1],[2,2,3,1],[0,2,3,2],[1,0,1,2]],[[1,2,1,1],[2,2,3,1],[0,2,3,3],[1,0,1,1]],[[1,2,1,1],[2,2,3,1],[0,2,4,2],[1,0,1,1]],[[1,2,1,1],[2,2,4,1],[0,2,3,2],[1,0,1,1]],[[2,0,2,0],[2,3,2,1],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[3,3,2,1],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,4,2,1],[2,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[3,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,0,2,3],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,0,2,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,0,2,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,1],[2,0,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,1],[2,0,2,2],[1,2,2,2]],[[2,0,2,0],[2,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[3,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,4,2,1],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[3,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,0,4,1],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,0,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,0,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,2,1],[2,0,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,2,1],[2,0,3,1],[1,2,2,2]],[[1,0,2,0],[2,3,2,1],[2,0,4,2],[1,2,1,1]],[[1,0,2,0],[2,3,2,1],[2,0,3,3],[1,2,1,1]],[[1,0,2,0],[2,3,2,1],[2,0,3,2],[1,2,1,2]],[[2,0,2,0],[2,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[3,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,4,2,1],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,1],[3,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,1],[2,0,4,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,1],[2,0,3,3],[1,2,2,0]],[[1,0,2,0],[2,3,2,1],[2,0,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,2,1],[2,0,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,2,1],[2,0,3,2],[1,2,3,0]],[[2,0,2,0],[2,3,2,1],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[3,3,2,1],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,4,2,1],[2,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[3,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,1,1,3],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,1,1,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,1,1,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,1],[2,1,1,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,1],[2,1,1,2],[1,2,2,2]],[[2,0,2,0],[2,3,2,1],[2,1,2,1],[1,2,2,1]],[[1,0,2,0],[3,3,2,1],[2,1,2,1],[1,2,2,1]],[[1,0,2,0],[2,4,2,1],[2,1,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[3,1,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,1,2,1],[2,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,1,2,1],[1,3,2,1]],[[1,0,2,0],[2,3,2,1],[2,1,2,1],[1,2,3,1]],[[1,0,2,0],[2,3,2,1],[2,1,2,1],[1,2,2,2]],[[2,0,2,0],[2,3,2,1],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[3,3,2,1],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,4,2,1],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,1],[3,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,1],[2,1,2,2],[2,2,2,0]],[[1,0,2,0],[2,3,2,1],[2,1,2,2],[1,3,2,0]],[[1,0,2,0],[2,3,2,1],[2,1,2,2],[1,2,3,0]],[[2,0,2,0],[2,3,2,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[3,3,2,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,4,2,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[3,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,1,3,0],[2,2,2,1]],[[1,0,2,0],[2,3,2,1],[2,1,3,0],[1,3,2,1]],[[1,0,2,0],[2,3,2,1],[2,1,3,0],[1,2,3,1]],[[2,0,2,0],[2,3,2,1],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[3,3,2,1],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,4,2,1],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,2,1],[3,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,2,1],[2,1,3,1],[2,2,1,1]],[[1,0,2,0],[2,3,2,1],[2,1,3,1],[1,3,1,1]],[[2,0,2,0],[2,3,2,1],[2,1,3,2],[1,2,0,1]],[[1,0,2,0],[3,3,2,1],[2,1,3,2],[1,2,0,1]],[[1,0,2,0],[2,4,2,1],[2,1,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,2,1],[3,1,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,2,1],[2,1,3,2],[2,2,0,1]],[[1,0,2,0],[2,3,2,1],[2,1,3,2],[1,3,0,1]],[[2,0,2,0],[2,3,2,1],[2,1,3,2],[1,2,1,0]],[[1,0,2,0],[3,3,2,1],[2,1,3,2],[1,2,1,0]],[[1,0,2,0],[2,4,2,1],[2,1,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,2,1],[3,1,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,2,1],[2,1,3,2],[2,2,1,0]],[[1,0,2,0],[2,3,2,1],[2,1,3,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,1],[0,2,3,3],[0,2,1,0]],[[1,2,1,1],[2,2,3,1],[0,2,4,2],[0,2,1,0]],[[1,2,1,1],[2,2,4,1],[0,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,2,3,1],[0,2,3,2],[0,2,0,2]],[[2,0,2,0],[2,3,2,1],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[3,3,2,1],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[2,4,2,1],[2,2,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[3,2,1,2],[0,2,2,1]],[[2,0,2,0],[2,3,2,1],[2,2,1,2],[1,1,2,1]],[[1,0,2,0],[3,3,2,1],[2,2,1,2],[1,1,2,1]],[[1,0,2,0],[2,4,2,1],[2,2,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[3,2,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[2,2,1,2],[2,1,2,1]],[[2,0,2,0],[2,3,2,1],[2,2,2,1],[0,2,2,1]],[[1,0,2,0],[3,3,2,1],[2,2,2,1],[0,2,2,1]],[[1,0,2,0],[2,4,2,1],[2,2,2,1],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[3,2,2,1],[0,2,2,1]],[[2,0,2,0],[2,3,2,1],[2,2,2,1],[1,1,2,1]],[[1,0,2,0],[3,3,2,1],[2,2,2,1],[1,1,2,1]],[[1,0,2,0],[2,4,2,1],[2,2,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[3,2,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[2,2,2,1],[2,1,2,1]],[[2,0,2,0],[2,3,2,1],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[3,3,2,1],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,4,2,1],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,2,1],[3,2,2,2],[0,2,2,0]],[[2,0,2,0],[2,3,2,1],[2,2,2,2],[1,1,2,0]],[[1,0,2,0],[3,3,2,1],[2,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,4,2,1],[2,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,2,1],[3,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,2,1],[2,2,2,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,1],[0,2,3,3],[0,2,0,1]],[[1,2,1,1],[2,2,3,1],[0,2,4,2],[0,2,0,1]],[[1,2,1,1],[2,2,4,1],[0,2,3,2],[0,2,0,1]],[[1,2,1,1],[2,2,3,1],[0,2,3,2],[0,1,3,0]],[[2,0,2,0],[2,3,2,1],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[3,3,2,1],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[2,4,2,1],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,2,1],[3,2,3,0],[0,2,2,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,0],[1,1,2,1]],[[1,0,2,0],[3,3,2,1],[2,2,3,0],[1,1,2,1]],[[1,0,2,0],[2,4,2,1],[2,2,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[3,2,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,2,1],[2,2,3,0],[2,1,2,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[3,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[2,4,2,1],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,2,1],[3,2,3,1],[0,1,2,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[3,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,4,2,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,2,1],[3,2,3,1],[0,2,1,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[3,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,4,2,1],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,2,1],[3,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,2,1],[2,2,3,1],[2,0,2,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[3,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,4,2,1],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,2,1],[3,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,2,1],[2,2,3,1],[2,1,1,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,1],[1,2,0,1]],[[1,0,2,0],[3,3,2,1],[2,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,4,2,1],[2,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,2,1],[3,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,2,1],[2,2,3,1],[2,2,0,1]],[[1,2,1,1],[2,2,3,1],[0,2,3,3],[0,1,2,0]],[[1,2,1,1],[2,2,3,1],[0,2,4,2],[0,1,2,0]],[[1,2,1,1],[2,2,4,1],[0,2,3,2],[0,1,2,0]],[[1,2,1,1],[2,2,3,1],[0,2,3,2],[0,1,1,2]],[[1,2,1,1],[2,2,3,1],[0,2,3,3],[0,1,1,1]],[[1,2,1,1],[2,2,3,1],[0,2,4,2],[0,1,1,1]],[[1,2,1,1],[2,2,4,1],[0,2,3,2],[0,1,1,1]],[[1,2,1,1],[2,2,3,1],[0,2,3,2],[0,0,2,2]],[[1,2,1,1],[2,2,3,1],[0,2,3,3],[0,0,2,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[3,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,4,2,1],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,2,1],[3,2,3,2],[0,1,1,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[3,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,4,2,1],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,2,1],[3,2,3,2],[0,1,2,0]],[[2,0,2,0],[2,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[3,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[2,4,2,1],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,2,1],[3,2,3,2],[0,2,0,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[3,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[2,4,2,1],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,2,1],[3,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,2,3,1],[0,2,4,2],[0,0,2,1]],[[1,2,1,1],[2,2,4,1],[0,2,3,2],[0,0,2,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[3,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,4,2,1],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,2,1],[3,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,2,1],[2,2,3,2],[2,0,1,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[3,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,4,2,1],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,2,1],[3,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,2,1],[2,2,3,2],[2,0,2,0]],[[2,0,2,0],[2,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[3,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,4,2,1],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,2,1],[3,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,2,1],[2,2,3,2],[2,1,0,1]],[[2,0,2,0],[2,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[3,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,4,2,1],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,2,1],[3,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,2,1],[2,2,3,2],[2,1,1,0]],[[1,2,1,1],[3,2,3,1],[0,2,3,1],[1,2,1,0]],[[2,0,2,0],[2,3,2,1],[2,2,3,2],[1,2,0,0]],[[1,0,2,0],[3,3,2,1],[2,2,3,2],[1,2,0,0]],[[1,0,2,0],[2,4,2,1],[2,2,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,2,1],[3,2,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,2,1],[2,2,3,2],[2,2,0,0]],[[1,3,1,1],[2,2,3,1],[0,2,3,1],[1,2,1,0]],[[2,2,1,1],[2,2,3,1],[0,2,3,1],[1,2,1,0]],[[1,2,1,1],[3,2,3,1],[0,2,3,1],[1,2,0,1]],[[1,3,1,1],[2,2,3,1],[0,2,3,1],[1,2,0,1]],[[2,2,1,1],[2,2,3,1],[0,2,3,1],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[0,2,3,1],[1,1,2,0]],[[1,3,1,1],[2,2,3,1],[0,2,3,1],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[0,2,3,1],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[0,2,3,1],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[0,2,3,1],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[0,2,3,1],[1,1,1,1]],[[1,2,1,1],[2,2,3,1],[0,2,3,1],[0,1,2,2]],[[1,2,1,1],[2,2,3,1],[0,2,3,1],[0,1,3,1]],[[1,2,1,1],[2,2,3,1],[0,2,4,1],[0,1,2,1]],[[1,2,1,1],[2,2,4,1],[0,2,3,1],[0,1,2,1]],[[1,2,1,1],[3,2,3,1],[0,2,3,0],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[0,2,3,0],[1,2,1,1]],[[2,2,1,1],[2,2,3,1],[0,2,3,0],[1,2,1,1]],[[1,2,1,1],[3,2,3,1],[0,2,3,0],[1,1,2,1]],[[1,3,1,1],[2,2,3,1],[0,2,3,0],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[0,2,3,0],[1,1,2,1]],[[1,2,1,1],[3,2,3,1],[0,2,2,2],[1,2,1,0]],[[1,3,1,1],[2,2,3,1],[0,2,2,2],[1,2,1,0]],[[2,2,1,1],[2,2,3,1],[0,2,2,2],[1,2,1,0]],[[1,2,1,1],[3,2,3,1],[0,2,2,2],[1,2,0,1]],[[1,3,1,1],[2,2,3,1],[0,2,2,2],[1,2,0,1]],[[2,2,1,1],[2,2,3,1],[0,2,2,2],[1,2,0,1]],[[1,2,1,1],[3,2,3,1],[0,2,2,2],[1,1,2,0]],[[1,3,1,1],[2,2,3,1],[0,2,2,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,1],[0,2,2,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,1],[0,2,2,2],[1,1,1,1]],[[1,3,1,1],[2,2,3,1],[0,2,2,2],[1,1,1,1]],[[2,2,1,1],[2,2,3,1],[0,2,2,2],[1,1,1,1]],[[1,2,1,1],[2,2,3,1],[0,2,2,2],[0,1,2,2]],[[1,2,1,1],[2,2,3,1],[0,2,2,2],[0,1,3,1]],[[1,2,1,1],[2,2,3,1],[0,2,2,3],[0,1,2,1]],[[1,2,1,1],[3,2,3,1],[0,2,1,2],[1,1,2,1]],[[1,3,1,1],[2,2,3,1],[0,2,1,2],[1,1,2,1]],[[2,2,1,1],[2,2,3,1],[0,2,1,2],[1,1,2,1]],[[1,2,1,1],[3,2,3,1],[0,2,0,2],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[0,2,0,2],[1,2,2,1]],[[2,2,1,1],[2,2,3,1],[0,2,0,2],[1,2,2,1]],[[2,0,2,0],[2,3,2,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[3,3,2,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,4,2,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,2,1],[3,3,3,1],[1,0,1,1]],[[1,2,1,1],[2,2,3,1],[0,1,3,2],[0,2,3,0]],[[1,2,1,1],[2,2,3,1],[0,1,3,3],[0,2,2,0]],[[1,2,1,1],[2,2,3,1],[0,1,4,2],[0,2,2,0]],[[1,2,1,1],[2,2,4,1],[0,1,3,2],[0,2,2,0]],[[1,2,1,1],[2,2,3,1],[0,1,3,2],[0,2,1,2]],[[1,2,1,1],[2,2,3,1],[0,1,3,3],[0,2,1,1]],[[1,2,1,1],[2,2,3,1],[0,1,4,2],[0,2,1,1]],[[1,2,1,1],[2,2,4,1],[0,1,3,2],[0,2,1,1]],[[1,2,1,1],[3,2,3,1],[0,1,3,1],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[0,1,3,1],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[0,1,3,1],[1,2,2,0]],[[1,2,1,1],[3,2,3,1],[0,1,3,1],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[0,1,3,1],[1,2,1,1]],[[2,2,1,1],[2,2,3,1],[0,1,3,1],[1,2,1,1]],[[1,2,1,1],[2,2,3,1],[0,1,3,1],[0,2,2,2]],[[1,2,1,1],[2,2,3,1],[0,1,3,1],[0,2,3,1]],[[1,2,1,1],[2,2,3,1],[0,1,4,1],[0,2,2,1]],[[1,2,1,1],[2,2,4,1],[0,1,3,1],[0,2,2,1]],[[1,2,1,1],[3,2,3,1],[0,1,3,0],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[0,1,3,0],[1,2,2,1]],[[2,2,1,1],[2,2,3,1],[0,1,3,0],[1,2,2,1]],[[1,2,1,1],[3,2,3,1],[0,1,2,2],[1,2,2,0]],[[1,3,1,1],[2,2,3,1],[0,1,2,2],[1,2,2,0]],[[2,2,1,1],[2,2,3,1],[0,1,2,2],[1,2,2,0]],[[1,2,1,1],[3,2,3,1],[0,1,2,2],[1,2,1,1]],[[1,3,1,1],[2,2,3,1],[0,1,2,2],[1,2,1,1]],[[2,2,1,1],[2,2,3,1],[0,1,2,2],[1,2,1,1]],[[1,2,1,1],[2,2,3,1],[0,1,2,2],[0,2,2,2]],[[1,2,1,1],[2,2,3,1],[0,1,2,2],[0,2,3,1]],[[1,2,1,1],[2,2,3,1],[0,1,2,3],[0,2,2,1]],[[1,2,1,1],[3,2,3,1],[0,1,1,2],[1,2,2,1]],[[1,3,1,1],[2,2,3,1],[0,1,1,2],[1,2,2,1]],[[2,2,1,1],[2,2,3,1],[0,1,1,2],[1,2,2,1]],[[1,2,1,1],[2,2,3,1],[0,0,3,2],[0,2,2,2]],[[1,2,1,1],[2,2,3,1],[0,0,3,2],[0,2,3,1]],[[1,2,1,1],[2,2,3,1],[0,0,3,3],[0,2,2,1]],[[2,0,2,0],[2,3,2,1],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[3,3,2,1],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,4,2,1],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,3,2,1],[3,3,3,2],[1,0,0,1]],[[2,0,2,0],[2,3,2,1],[2,3,3,2],[1,0,1,0]],[[1,0,2,0],[3,3,2,1],[2,3,3,2],[1,0,1,0]],[[1,0,2,0],[2,4,2,1],[2,3,3,2],[1,0,1,0]],[[1,0,2,0],[2,3,2,1],[3,3,3,2],[1,0,1,0]],[[1,2,1,1],[2,2,3,0],[3,3,3,2],[1,0,0,0]],[[1,2,1,1],[3,2,3,0],[2,3,3,2],[1,0,0,0]],[[1,3,1,1],[2,2,3,0],[2,3,3,2],[1,0,0,0]],[[2,2,1,1],[2,2,3,0],[2,3,3,2],[1,0,0,0]],[[1,2,1,1],[2,2,3,0],[3,3,2,2],[1,0,1,0]],[[1,2,1,1],[3,2,3,0],[2,3,2,2],[1,0,1,0]],[[1,3,1,1],[2,2,3,0],[2,3,2,2],[1,0,1,0]],[[2,2,1,1],[2,2,3,0],[2,3,2,2],[1,0,1,0]],[[1,2,1,1],[2,2,3,0],[3,3,2,2],[1,0,0,1]],[[1,2,1,1],[3,2,3,0],[2,3,2,2],[1,0,0,1]],[[1,3,1,1],[2,2,3,0],[2,3,2,2],[1,0,0,1]],[[2,2,1,1],[2,2,3,0],[2,3,2,2],[1,0,0,1]],[[1,0,2,0],[2,3,2,3],[0,0,3,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,0,3,3],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,0,3,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[0,0,3,2],[1,2,2,2]],[[1,0,2,0],[2,3,2,3],[0,1,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,1,2,3],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,1,2,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,1,2,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,2],[0,1,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[0,1,2,2],[1,2,2,2]],[[1,0,2,0],[2,3,2,2],[0,1,4,1],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,1,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,1,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,2,2],[0,1,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[0,1,3,1],[1,2,2,2]],[[1,0,2,0],[2,3,2,3],[0,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,2,2],[0,1,4,2],[1,2,1,1]],[[1,0,2,0],[2,3,2,2],[0,1,3,3],[1,2,1,1]],[[1,0,2,0],[2,3,2,2],[0,1,3,2],[1,2,1,2]],[[1,0,2,0],[2,3,2,3],[0,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[0,1,4,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[0,1,3,3],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[0,1,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,2,2],[0,1,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,2,2],[0,1,3,2],[1,2,3,0]],[[1,0,2,0],[2,3,2,3],[0,2,2,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[0,2,2,3],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[0,2,2,2],[1,1,3,1]],[[1,0,2,0],[2,3,2,2],[0,2,2,2],[1,1,2,2]],[[1,0,2,0],[2,3,2,2],[0,2,4,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,0],[2,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,0],[1,3,2,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,0],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,0],[1,2,2,2]],[[1,0,2,0],[2,3,2,2],[0,2,4,1],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,1],[1,1,3,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,1],[1,1,2,2]],[[1,0,2,0],[2,3,2,2],[0,2,4,1],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[0,2,3,1],[2,2,2,0]],[[1,0,2,0],[2,3,2,2],[0,2,3,1],[1,3,2,0]],[[1,0,2,0],[2,3,2,2],[0,2,3,1],[1,2,3,0]],[[1,0,2,0],[2,3,2,3],[0,2,3,2],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[0,2,4,2],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,3],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,2],[1,0,2,2]],[[1,0,2,0],[2,3,2,3],[0,2,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[0,2,4,2],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,3],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,2],[1,1,1,2]],[[1,0,2,0],[2,3,2,3],[0,2,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[0,2,4,2],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[0,2,3,3],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[0,2,3,2],[1,1,3,0]],[[1,0,2,0],[2,3,2,3],[0,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[0,2,4,2],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,3],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[0,2,3,2],[1,2,0,2]],[[1,0,2,0],[2,3,2,3],[0,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,2,2],[0,2,4,2],[1,2,1,0]],[[1,0,2,0],[2,3,2,2],[0,2,3,3],[1,2,1,0]],[[2,0,2,0],[2,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[3,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,4,2,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,3],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,4,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,0,3],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,0,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,0,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,0,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[0,3,0,2],[1,2,2,2]],[[2,0,2,0],[2,3,2,2],[0,3,2,0],[1,2,2,1]],[[1,0,2,0],[3,3,2,2],[0,3,2,0],[1,2,2,1]],[[1,0,2,0],[2,4,2,2],[0,3,2,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,4,2,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,2,0],[2,2,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,2,0],[1,3,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,2,0],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[0,3,2,0],[1,2,2,2]],[[2,0,2,0],[2,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,0,2,0],[3,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,0,2,0],[2,4,2,2],[0,3,2,1],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[0,4,2,1],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[0,3,2,1],[2,2,2,0]],[[1,0,2,0],[2,3,2,2],[0,3,2,1],[1,3,2,0]],[[1,0,2,0],[2,3,2,2],[0,3,2,1],[1,2,3,0]],[[1,0,2,0],[2,3,2,3],[0,3,2,2],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,3,2,2],[0,3,2,2],[0,1,2,2]],[[2,0,2,0],[2,3,2,2],[0,3,3,0],[1,1,2,1]],[[1,0,2,0],[3,3,2,2],[0,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,4,2,2],[0,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[0,4,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,4,0],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,0],[1,1,3,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,0],[1,1,2,2]],[[2,0,2,0],[2,3,2,2],[0,3,3,0],[1,2,1,1]],[[1,0,2,0],[3,3,2,2],[0,3,3,0],[1,2,1,1]],[[1,0,2,0],[2,4,2,2],[0,3,3,0],[1,2,1,1]],[[1,0,2,0],[2,3,2,2],[0,4,3,0],[1,2,1,1]],[[1,0,2,0],[2,3,2,2],[0,3,4,0],[1,2,1,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,0],[2,2,1,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,0],[1,3,1,1]],[[1,0,2,0],[2,3,2,2],[0,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,1],[0,1,2,2]],[[2,0,2,0],[2,3,2,2],[0,3,3,1],[1,1,1,1]],[[1,0,2,0],[3,3,2,2],[0,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,4,2,2],[0,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[0,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[0,3,4,1],[1,1,1,1]],[[2,0,2,0],[2,3,2,2],[0,3,3,1],[1,1,2,0]],[[1,0,2,0],[3,3,2,2],[0,3,3,1],[1,1,2,0]],[[1,0,2,0],[2,4,2,2],[0,3,3,1],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[0,4,3,1],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[0,3,4,1],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[0,3,3,1],[1,1,3,0]],[[2,0,2,0],[2,3,2,2],[0,3,3,1],[1,2,0,1]],[[1,0,2,0],[3,3,2,2],[0,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,4,2,2],[0,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[0,4,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[0,3,4,1],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,1],[2,2,0,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,1],[1,3,0,1]],[[2,0,2,0],[2,3,2,2],[0,3,3,1],[1,2,1,0]],[[1,0,2,0],[3,3,2,2],[0,3,3,1],[1,2,1,0]],[[1,0,2,0],[2,4,2,2],[0,3,3,1],[1,2,1,0]],[[1,0,2,0],[2,3,2,2],[0,4,3,1],[1,2,1,0]],[[1,0,2,0],[2,3,2,2],[0,3,4,1],[1,2,1,0]],[[1,0,2,0],[2,3,2,2],[0,3,3,1],[2,2,1,0]],[[1,0,2,0],[2,3,2,2],[0,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,2,3,0],[3,3,2,1],[1,0,1,1]],[[1,2,1,1],[3,2,3,0],[2,3,2,1],[1,0,1,1]],[[1,3,1,1],[2,2,3,0],[2,3,2,1],[1,0,1,1]],[[2,2,1,1],[2,2,3,0],[2,3,2,1],[1,0,1,1]],[[1,0,2,0],[2,3,2,3],[0,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,2],[0,0,2,2]],[[1,0,2,0],[2,3,2,3],[0,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[0,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,2],[0,1,1,2]],[[1,0,2,0],[2,3,2,3],[0,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[0,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[0,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[0,3,3,2],[0,1,3,0]],[[1,0,2,0],[2,3,2,3],[0,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[0,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[0,3,3,2],[0,2,0,2]],[[1,0,2,0],[2,3,2,3],[0,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,2,2],[0,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,2,3,0],[2,3,1,2],[2,2,0,0]],[[1,2,1,1],[2,2,3,0],[3,3,1,2],[1,2,0,0]],[[1,2,1,1],[3,2,3,0],[2,3,1,2],[1,2,0,0]],[[1,3,1,1],[2,2,3,0],[2,3,1,2],[1,2,0,0]],[[2,2,1,1],[2,2,3,0],[2,3,1,2],[1,2,0,0]],[[1,2,1,1],[2,2,3,0],[2,3,1,2],[2,1,1,0]],[[1,2,1,1],[2,2,3,0],[3,3,1,2],[1,1,1,0]],[[1,2,1,1],[3,2,3,0],[2,3,1,2],[1,1,1,0]],[[1,3,1,1],[2,2,3,0],[2,3,1,2],[1,1,1,0]],[[2,2,1,1],[2,2,3,0],[2,3,1,2],[1,1,1,0]],[[1,2,1,1],[2,2,3,0],[2,3,1,2],[2,1,0,1]],[[1,2,1,1],[2,2,3,0],[3,3,1,2],[1,1,0,1]],[[1,2,1,1],[3,2,3,0],[2,3,1,2],[1,1,0,1]],[[1,3,1,1],[2,2,3,0],[2,3,1,2],[1,1,0,1]],[[2,2,1,1],[2,2,3,0],[2,3,1,2],[1,1,0,1]],[[1,0,2,0],[2,3,2,3],[1,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,0,2,3],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,0,2,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,0,2,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,2],[1,0,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[1,0,2,2],[1,2,2,2]],[[1,0,2,0],[2,3,2,2],[1,0,4,1],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,0,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,0,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,2,2],[1,0,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[1,0,3,1],[1,2,2,2]],[[1,0,2,0],[2,3,2,3],[1,0,3,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,0,3,3],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,0,3,2],[0,2,3,1]],[[1,0,2,0],[2,3,2,2],[1,0,3,2],[0,2,2,2]],[[1,0,2,0],[2,3,2,3],[1,0,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,2,2],[1,0,4,2],[1,2,1,1]],[[1,0,2,0],[2,3,2,2],[1,0,3,3],[1,2,1,1]],[[1,0,2,0],[2,3,2,2],[1,0,3,2],[1,2,1,2]],[[1,0,2,0],[2,3,2,3],[1,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[1,0,4,2],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[1,0,3,3],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[1,0,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,2,2],[1,0,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,2,2],[1,0,3,2],[1,2,3,0]],[[1,0,2,0],[2,3,2,3],[1,1,2,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,1,2,3],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,1,2,2],[0,3,2,1]],[[1,0,2,0],[2,3,2,2],[1,1,2,2],[0,2,3,1]],[[1,0,2,0],[2,3,2,2],[1,1,2,2],[0,2,2,2]],[[1,0,2,0],[2,3,2,2],[1,1,4,1],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,1,3,1],[0,3,2,1]],[[1,0,2,0],[2,3,2,2],[1,1,3,1],[0,2,3,1]],[[1,0,2,0],[2,3,2,2],[1,1,3,1],[0,2,2,2]],[[1,0,2,0],[2,3,2,3],[1,1,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,2,2],[1,1,4,2],[0,2,1,1]],[[1,0,2,0],[2,3,2,2],[1,1,3,3],[0,2,1,1]],[[1,0,2,0],[2,3,2,2],[1,1,3,2],[0,2,1,2]],[[1,0,2,0],[2,3,2,3],[1,1,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,2,2],[1,1,4,2],[0,2,2,0]],[[1,0,2,0],[2,3,2,2],[1,1,3,3],[0,2,2,0]],[[1,0,2,0],[2,3,2,2],[1,1,3,2],[0,3,2,0]],[[1,0,2,0],[2,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,0,2,0],[2,3,2,3],[1,2,2,2],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[1,2,2,3],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[1,2,2,2],[0,1,3,1]],[[1,0,2,0],[2,3,2,2],[1,2,2,2],[0,1,2,2]],[[1,0,2,0],[2,3,2,3],[1,2,2,2],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[1,2,2,3],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[1,2,2,2],[1,0,3,1]],[[1,0,2,0],[2,3,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,1,1],[2,2,3,0],[3,3,1,2],[0,2,1,0]],[[1,2,1,1],[3,2,3,0],[2,3,1,2],[0,2,1,0]],[[1,3,1,1],[2,2,3,0],[2,3,1,2],[0,2,1,0]],[[1,0,2,0],[2,3,2,2],[1,2,4,0],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,0],[0,3,2,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,0],[0,2,3,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,0],[0,2,2,2]],[[1,0,2,0],[2,3,2,2],[1,2,4,1],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,1],[0,1,3,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,1],[0,1,2,2]],[[1,0,2,0],[2,3,2,2],[1,2,4,1],[0,2,2,0]],[[1,0,2,0],[2,3,2,2],[1,2,3,1],[0,3,2,0]],[[1,0,2,0],[2,3,2,2],[1,2,3,1],[0,2,3,0]],[[1,0,2,0],[2,3,2,2],[1,2,4,1],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,1],[1,0,3,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,1],[1,0,2,2]],[[2,2,1,1],[2,2,3,0],[2,3,1,2],[0,2,1,0]],[[1,2,1,1],[2,2,3,0],[3,3,1,2],[0,2,0,1]],[[1,2,1,1],[3,2,3,0],[2,3,1,2],[0,2,0,1]],[[1,3,1,1],[2,2,3,0],[2,3,1,2],[0,2,0,1]],[[2,2,1,1],[2,2,3,0],[2,3,1,2],[0,2,0,1]],[[1,0,2,0],[2,3,2,3],[1,2,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,2,2],[1,2,4,2],[0,0,2,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,3],[0,0,2,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,2],[0,0,2,2]],[[1,0,2,0],[2,3,2,3],[1,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[1,2,4,2],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,3],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,2],[0,1,1,2]],[[1,0,2,0],[2,3,2,3],[1,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[1,2,4,2],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[1,2,3,3],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[1,2,3,2],[0,1,3,0]],[[1,0,2,0],[2,3,2,3],[1,2,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[1,2,4,2],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,3],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,2],[0,2,0,2]],[[1,0,2,0],[2,3,2,3],[1,2,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,2,2],[1,2,4,2],[0,2,1,0]],[[1,0,2,0],[2,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[2,2,3,0],[2,3,1,1],[2,2,0,1]],[[1,0,2,0],[2,3,2,3],[1,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,2,2],[1,2,4,2],[1,0,1,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,3],[1,0,1,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,2],[1,0,1,2]],[[1,0,2,0],[2,3,2,3],[1,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,2,2],[1,2,4,2],[1,0,2,0]],[[1,0,2,0],[2,3,2,2],[1,2,3,3],[1,0,2,0]],[[1,0,2,0],[2,3,2,2],[1,2,3,2],[1,0,3,0]],[[1,0,2,0],[2,3,2,3],[1,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,2,2],[1,2,4,2],[1,1,0,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,3],[1,1,0,1]],[[1,0,2,0],[2,3,2,2],[1,2,3,2],[1,1,0,2]],[[1,0,2,0],[2,3,2,3],[1,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,2,2],[1,2,4,2],[1,1,1,0]],[[1,0,2,0],[2,3,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,1,1],[2,2,3,0],[3,3,1,1],[1,2,0,1]],[[1,2,1,1],[3,2,3,0],[2,3,1,1],[1,2,0,1]],[[1,3,1,1],[2,2,3,0],[2,3,1,1],[1,2,0,1]],[[2,2,1,1],[2,2,3,0],[2,3,1,1],[1,2,0,1]],[[1,2,1,1],[2,2,3,0],[2,3,1,1],[2,1,1,1]],[[1,2,1,1],[2,2,3,0],[3,3,1,1],[1,1,1,1]],[[1,2,1,1],[3,2,3,0],[2,3,1,1],[1,1,1,1]],[[1,3,1,1],[2,2,3,0],[2,3,1,1],[1,1,1,1]],[[2,2,1,1],[2,2,3,0],[2,3,1,1],[1,1,1,1]],[[2,0,2,0],[2,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,0],[3,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,4,2,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,3],[1,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,4,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,3,0,3],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,3,0,2],[0,3,2,1]],[[1,0,2,0],[2,3,2,2],[1,3,0,2],[0,2,3,1]],[[1,0,2,0],[2,3,2,2],[1,3,0,2],[0,2,2,2]],[[2,0,2,0],[2,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,0],[3,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,4,2,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[1,4,0,2],[1,1,2,1]],[[1,2,1,1],[2,2,3,0],[3,3,1,1],[0,2,1,1]],[[1,2,1,1],[3,2,3,0],[2,3,1,1],[0,2,1,1]],[[1,3,1,1],[2,2,3,0],[2,3,1,1],[0,2,1,1]],[[2,2,1,1],[2,2,3,0],[2,3,1,1],[0,2,1,1]],[[2,0,2,0],[2,3,2,2],[1,3,2,0],[0,2,2,1]],[[1,0,2,0],[3,3,2,2],[1,3,2,0],[0,2,2,1]],[[1,0,2,0],[2,4,2,2],[1,3,2,0],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,4,2,0],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[1,3,2,0],[0,3,2,1]],[[1,0,2,0],[2,3,2,2],[1,3,2,0],[0,2,3,1]],[[1,0,2,0],[2,3,2,2],[1,3,2,0],[0,2,2,2]],[[2,0,2,0],[2,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,0,2,0],[3,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,0,2,0],[2,4,2,2],[1,3,2,0],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[1,4,2,0],[1,1,2,1]],[[2,0,2,0],[2,3,2,2],[1,3,2,1],[0,2,2,0]],[[1,0,2,0],[3,3,2,2],[1,3,2,1],[0,2,2,0]],[[1,0,2,0],[2,4,2,2],[1,3,2,1],[0,2,2,0]],[[1,0,2,0],[2,3,2,2],[1,4,2,1],[0,2,2,0]],[[1,0,2,0],[2,3,2,2],[1,3,2,1],[0,3,2,0]],[[1,0,2,0],[2,3,2,2],[1,3,2,1],[0,2,3,0]],[[2,0,2,0],[2,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,0,2,0],[3,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,0,2,0],[2,4,2,2],[1,3,2,1],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[1,4,2,1],[1,1,2,0]],[[1,2,1,1],[2,2,3,0],[2,3,0,2],[2,2,1,0]],[[1,2,1,1],[2,2,3,0],[3,3,0,2],[1,2,1,0]],[[1,2,1,1],[3,2,3,0],[2,3,0,2],[1,2,1,0]],[[1,3,1,1],[2,2,3,0],[2,3,0,2],[1,2,1,0]],[[2,2,1,1],[2,2,3,0],[2,3,0,2],[1,2,1,0]],[[1,2,1,1],[2,2,3,0],[2,3,0,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,0],[3,3,0,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,0],[2,3,0,2],[1,1,2,0]],[[1,3,1,1],[2,2,3,0],[2,3,0,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,0],[2,3,0,2],[1,1,2,0]],[[1,2,1,1],[2,2,3,0],[3,3,0,2],[0,2,2,0]],[[1,2,1,1],[3,2,3,0],[2,3,0,2],[0,2,2,0]],[[1,3,1,1],[2,2,3,0],[2,3,0,2],[0,2,2,0]],[[2,2,1,1],[2,2,3,0],[2,3,0,2],[0,2,2,0]],[[1,2,1,1],[2,2,3,0],[2,3,0,1],[2,2,1,1]],[[2,0,2,0],[2,3,2,2],[1,3,3,0],[0,1,2,1]],[[1,0,2,0],[3,3,2,2],[1,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,4,2,2],[1,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[1,4,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[1,3,4,0],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[1,3,3,0],[0,1,3,1]],[[1,0,2,0],[2,3,2,2],[1,3,3,0],[0,1,2,2]],[[2,0,2,0],[2,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,0,2,0],[3,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,4,2,2],[1,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,2,2],[1,4,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,2,2],[1,3,4,0],[0,2,1,1]],[[1,0,2,0],[2,3,2,2],[1,3,3,0],[0,3,1,1]],[[2,0,2,0],[2,3,2,2],[1,3,3,0],[1,0,2,1]],[[1,0,2,0],[3,3,2,2],[1,3,3,0],[1,0,2,1]],[[1,0,2,0],[2,4,2,2],[1,3,3,0],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[1,4,3,0],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[1,3,4,0],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[1,3,3,0],[1,0,3,1]],[[1,0,2,0],[2,3,2,2],[1,3,3,0],[1,0,2,2]],[[2,0,2,0],[2,3,2,2],[1,3,3,0],[1,1,1,1]],[[1,0,2,0],[3,3,2,2],[1,3,3,0],[1,1,1,1]],[[1,0,2,0],[2,4,2,2],[1,3,3,0],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[1,4,3,0],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[1,3,4,0],[1,1,1,1]],[[2,0,2,0],[2,3,2,2],[1,3,3,0],[1,2,0,1]],[[1,0,2,0],[3,3,2,2],[1,3,3,0],[1,2,0,1]],[[1,0,2,0],[2,4,2,2],[1,3,3,0],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[1,4,3,0],[1,2,0,1]],[[1,2,1,1],[2,2,3,0],[3,3,0,1],[1,2,1,1]],[[1,2,1,1],[3,2,3,0],[2,3,0,1],[1,2,1,1]],[[1,3,1,1],[2,2,3,0],[2,3,0,1],[1,2,1,1]],[[2,2,1,1],[2,2,3,0],[2,3,0,1],[1,2,1,1]],[[1,2,1,1],[2,2,3,0],[2,3,0,1],[2,1,2,1]],[[1,2,1,1],[2,2,3,0],[3,3,0,1],[1,1,2,1]],[[1,2,1,1],[3,2,3,0],[2,3,0,1],[1,1,2,1]],[[1,3,1,1],[2,2,3,0],[2,3,0,1],[1,1,2,1]],[[2,2,1,1],[2,2,3,0],[2,3,0,1],[1,1,2,1]],[[2,0,2,0],[2,3,2,2],[1,3,3,1],[0,1,1,1]],[[1,0,2,0],[3,3,2,2],[1,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,4,2,2],[1,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[1,4,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[1,3,4,1],[0,1,1,1]],[[2,0,2,0],[2,3,2,2],[1,3,3,1],[0,1,2,0]],[[1,0,2,0],[3,3,2,2],[1,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,4,2,2],[1,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[1,4,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[1,3,4,1],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[1,3,3,1],[0,1,3,0]],[[2,0,2,0],[2,3,2,2],[1,3,3,1],[0,2,0,1]],[[1,0,2,0],[3,3,2,2],[1,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,4,2,2],[1,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[1,4,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[1,3,4,1],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[1,3,3,1],[0,3,0,1]],[[2,0,2,0],[2,3,2,2],[1,3,3,1],[0,2,1,0]],[[1,0,2,0],[3,3,2,2],[1,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,4,2,2],[1,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,2,2],[1,4,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,2,2],[1,3,4,1],[0,2,1,0]],[[1,0,2,0],[2,3,2,2],[1,3,3,1],[0,3,1,0]],[[1,2,1,1],[2,2,3,0],[3,3,0,1],[0,2,2,1]],[[1,2,1,1],[3,2,3,0],[2,3,0,1],[0,2,2,1]],[[1,3,1,1],[2,2,3,0],[2,3,0,1],[0,2,2,1]],[[2,2,1,1],[2,2,3,0],[2,3,0,1],[0,2,2,1]],[[2,0,2,0],[2,3,2,2],[1,3,3,1],[1,0,1,1]],[[1,0,2,0],[3,3,2,2],[1,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,4,2,2],[1,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,2,2],[1,4,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,2,2],[1,3,4,1],[1,0,1,1]],[[2,0,2,0],[2,3,2,2],[1,3,3,1],[1,0,2,0]],[[1,0,2,0],[3,3,2,2],[1,3,3,1],[1,0,2,0]],[[1,0,2,0],[2,4,2,2],[1,3,3,1],[1,0,2,0]],[[1,0,2,0],[2,3,2,2],[1,4,3,1],[1,0,2,0]],[[1,0,2,0],[2,3,2,2],[1,3,4,1],[1,0,2,0]],[[1,0,2,0],[2,3,2,2],[1,3,3,1],[1,0,3,0]],[[2,0,2,0],[2,3,2,2],[1,3,3,1],[1,1,0,1]],[[1,0,2,0],[3,3,2,2],[1,3,3,1],[1,1,0,1]],[[1,0,2,0],[2,4,2,2],[1,3,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,2,2],[1,4,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,2,2],[1,3,4,1],[1,1,0,1]],[[2,0,2,0],[2,3,2,2],[1,3,3,1],[1,1,1,0]],[[1,0,2,0],[3,3,2,2],[1,3,3,1],[1,1,1,0]],[[1,0,2,0],[2,4,2,2],[1,3,3,1],[1,1,1,0]],[[1,0,2,0],[2,3,2,2],[1,4,3,1],[1,1,1,0]],[[1,0,2,0],[2,3,2,2],[1,3,4,1],[1,1,1,0]],[[2,0,2,0],[2,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,0,2,0],[3,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,0,2,0],[2,4,2,2],[1,3,3,1],[1,2,0,0]],[[1,0,2,0],[2,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,2,1,1],[2,2,3,0],[2,2,3,2],[2,1,0,0]],[[1,2,1,1],[2,2,3,0],[3,2,3,2],[1,1,0,0]],[[1,2,1,1],[3,2,3,0],[2,2,3,2],[1,1,0,0]],[[1,3,1,1],[2,2,3,0],[2,2,3,2],[1,1,0,0]],[[2,2,1,1],[2,2,3,0],[2,2,3,2],[1,1,0,0]],[[1,0,2,0],[2,3,2,3],[1,3,3,2],[0,0,1,1]],[[1,0,2,0],[2,3,2,2],[1,3,4,2],[0,0,1,1]],[[1,0,2,0],[2,3,2,2],[1,3,3,3],[0,0,1,1]],[[1,0,2,0],[2,3,2,2],[1,3,3,2],[0,0,1,2]],[[1,0,2,0],[2,3,2,3],[1,3,3,2],[0,0,2,0]],[[1,0,2,0],[2,3,2,2],[1,3,4,2],[0,0,2,0]],[[1,0,2,0],[2,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,2,3,0],[3,2,3,2],[0,2,0,0]],[[1,2,1,1],[3,2,3,0],[2,2,3,2],[0,2,0,0]],[[1,3,1,1],[2,2,3,0],[2,2,3,2],[0,2,0,0]],[[2,2,1,1],[2,2,3,0],[2,2,3,2],[0,2,0,0]],[[1,2,1,1],[2,2,3,0],[2,2,2,2],[2,2,0,0]],[[1,2,1,1],[2,2,3,0],[3,2,2,2],[1,2,0,0]],[[1,2,1,1],[3,2,3,0],[2,2,2,2],[1,2,0,0]],[[1,3,1,1],[2,2,3,0],[2,2,2,2],[1,2,0,0]],[[2,2,1,1],[2,2,3,0],[2,2,2,2],[1,2,0,0]],[[1,2,1,1],[2,2,3,0],[2,2,2,2],[2,1,1,0]],[[1,2,1,1],[2,2,3,0],[3,2,2,2],[1,1,1,0]],[[1,2,1,1],[3,2,3,0],[2,2,2,2],[1,1,1,0]],[[1,3,1,1],[2,2,3,0],[2,2,2,2],[1,1,1,0]],[[2,2,1,1],[2,2,3,0],[2,2,2,2],[1,1,1,0]],[[1,2,1,1],[2,2,3,0],[2,2,2,2],[2,1,0,1]],[[1,2,1,1],[2,2,3,0],[3,2,2,2],[1,1,0,1]],[[1,2,1,1],[3,2,3,0],[2,2,2,2],[1,1,0,1]],[[1,3,1,1],[2,2,3,0],[2,2,2,2],[1,1,0,1]],[[2,2,1,1],[2,2,3,0],[2,2,2,2],[1,1,0,1]],[[1,2,1,1],[2,2,3,0],[2,2,2,2],[2,0,2,0]],[[1,2,1,1],[2,2,3,0],[3,2,2,2],[1,0,2,0]],[[1,2,1,1],[3,2,3,0],[2,2,2,2],[1,0,2,0]],[[1,3,1,1],[2,2,3,0],[2,2,2,2],[1,0,2,0]],[[2,2,1,1],[2,2,3,0],[2,2,2,2],[1,0,2,0]],[[1,2,1,1],[2,2,3,0],[2,2,2,2],[2,0,1,1]],[[1,2,1,1],[2,2,3,0],[3,2,2,2],[1,0,1,1]],[[1,2,1,1],[3,2,3,0],[2,2,2,2],[1,0,1,1]],[[1,3,1,1],[2,2,3,0],[2,2,2,2],[1,0,1,1]],[[2,2,1,1],[2,2,3,0],[2,2,2,2],[1,0,1,1]],[[1,2,1,1],[2,2,3,0],[3,2,2,2],[0,2,1,0]],[[1,2,1,1],[3,2,3,0],[2,2,2,2],[0,2,1,0]],[[1,3,1,1],[2,2,3,0],[2,2,2,2],[0,2,1,0]],[[2,2,1,1],[2,2,3,0],[2,2,2,2],[0,2,1,0]],[[1,2,1,1],[2,2,3,0],[3,2,2,2],[0,2,0,1]],[[1,2,1,1],[3,2,3,0],[2,2,2,2],[0,2,0,1]],[[1,3,1,1],[2,2,3,0],[2,2,2,2],[0,2,0,1]],[[2,2,1,1],[2,2,3,0],[2,2,2,2],[0,2,0,1]],[[2,0,2,0],[2,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[3,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,4,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,3],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[3,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,1,3],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,1,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,1,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,1,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[2,0,1,2],[1,2,2,2]],[[1,0,2,0],[2,3,2,3],[2,0,2,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,2,3],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,2,2],[0,3,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,2,2],[0,2,3,1]],[[1,0,2,0],[2,3,2,2],[2,0,2,2],[0,2,2,2]],[[1,0,2,0],[2,3,2,3],[2,0,2,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,2,3],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,2,2],[1,1,3,1]],[[1,0,2,0],[2,3,2,2],[2,0,2,2],[1,1,2,2]],[[2,0,2,0],[2,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,0],[3,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,0],[2,4,2,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[3,0,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,4,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,0],[2,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,0],[1,3,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,0],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,0],[1,2,2,2]],[[1,0,2,0],[2,3,2,2],[2,0,4,1],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,1],[0,3,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,1],[0,2,3,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,1],[0,2,2,2]],[[1,0,2,0],[2,3,2,2],[2,0,4,1],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,1],[1,1,3,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,1],[1,1,2,2]],[[2,0,2,0],[2,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,0],[3,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,0],[2,4,2,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[3,0,3,1],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[2,0,4,1],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[2,0,3,1],[2,2,2,0]],[[1,0,2,0],[2,3,2,2],[2,0,3,1],[1,3,2,0]],[[1,0,2,0],[2,3,2,2],[2,0,3,1],[1,2,3,0]],[[1,0,2,0],[2,3,2,3],[2,0,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,2,2],[2,0,4,2],[0,2,1,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,3],[0,2,1,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,2],[0,2,1,2]],[[1,0,2,0],[2,3,2,3],[2,0,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,2,2],[2,0,4,2],[0,2,2,0]],[[1,0,2,0],[2,3,2,2],[2,0,3,3],[0,2,2,0]],[[1,0,2,0],[2,3,2,2],[2,0,3,2],[0,3,2,0]],[[1,0,2,0],[2,3,2,2],[2,0,3,2],[0,2,3,0]],[[1,0,2,0],[2,3,2,3],[2,0,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[2,0,4,2],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,3],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,2],[1,1,1,2]],[[1,0,2,0],[2,3,2,3],[2,0,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[2,0,4,2],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[2,0,3,3],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[2,0,3,2],[1,1,3,0]],[[1,0,2,0],[2,3,2,3],[2,0,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[2,0,4,2],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,3],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[2,0,3,2],[1,2,0,2]],[[1,0,2,0],[2,3,2,3],[2,0,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,2,2],[2,0,4,2],[1,2,1,0]],[[1,0,2,0],[2,3,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,1,1],[2,2,3,0],[3,2,2,2],[0,1,2,0]],[[1,2,1,1],[3,2,3,0],[2,2,2,2],[0,1,2,0]],[[1,3,1,1],[2,2,3,0],[2,2,2,2],[0,1,2,0]],[[2,2,1,1],[2,2,3,0],[2,2,2,2],[0,1,2,0]],[[1,2,1,1],[2,2,3,0],[3,2,2,2],[0,1,1,1]],[[1,2,1,1],[3,2,3,0],[2,2,2,2],[0,1,1,1]],[[1,3,1,1],[2,2,3,0],[2,2,2,2],[0,1,1,1]],[[2,2,1,1],[2,2,3,0],[2,2,2,2],[0,1,1,1]],[[2,0,2,0],[2,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[3,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,4,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,3],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[3,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,0,3],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,0,2],[2,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,0,2],[1,3,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,0,2],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[2,1,0,2],[1,2,2,2]],[[2,0,2,0],[2,3,2,2],[2,1,2,0],[1,2,2,1]],[[1,0,2,0],[3,3,2,2],[2,1,2,0],[1,2,2,1]],[[1,0,2,0],[2,4,2,2],[2,1,2,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[3,1,2,0],[1,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,2,0],[2,2,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,2,0],[1,3,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,2,0],[1,2,3,1]],[[1,0,2,0],[2,3,2,2],[2,1,2,0],[1,2,2,2]],[[2,0,2,0],[2,3,2,2],[2,1,2,1],[1,2,2,0]],[[1,0,2,0],[3,3,2,2],[2,1,2,1],[1,2,2,0]],[[1,0,2,0],[2,4,2,2],[2,1,2,1],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[3,1,2,1],[1,2,2,0]],[[1,0,2,0],[2,3,2,2],[2,1,2,1],[2,2,2,0]],[[1,0,2,0],[2,3,2,2],[2,1,2,1],[1,3,2,0]],[[1,0,2,0],[2,3,2,2],[2,1,2,1],[1,2,3,0]],[[1,0,2,0],[2,3,2,3],[2,1,2,2],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,2,3],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,2,2],[0,1,3,1]],[[1,0,2,0],[2,3,2,2],[2,1,2,2],[0,1,2,2]],[[1,0,2,0],[2,3,2,3],[2,1,2,2],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,2,3],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,2,2],[1,0,3,1]],[[1,0,2,0],[2,3,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,1,1],[2,2,3,0],[2,2,2,1],[2,2,0,1]],[[1,2,1,1],[2,2,3,0],[3,2,2,1],[1,2,0,1]],[[1,2,1,1],[3,2,3,0],[2,2,2,1],[1,2,0,1]],[[1,3,1,1],[2,2,3,0],[2,2,2,1],[1,2,0,1]],[[2,2,1,1],[2,2,3,0],[2,2,2,1],[1,2,0,1]],[[2,0,2,0],[2,3,2,2],[2,1,3,0],[1,2,1,1]],[[1,0,2,0],[3,3,2,2],[2,1,3,0],[1,2,1,1]],[[1,0,2,0],[2,4,2,2],[2,1,3,0],[1,2,1,1]],[[1,0,2,0],[2,3,2,2],[3,1,3,0],[1,2,1,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,0],[2,2,1,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,0],[1,3,1,1]],[[1,0,2,0],[2,3,2,2],[2,1,4,1],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,1],[0,1,3,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,1],[0,1,2,2]],[[1,0,2,0],[2,3,2,2],[2,1,4,1],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,1],[1,0,3,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,1],[1,0,2,2]],[[2,0,2,0],[2,3,2,2],[2,1,3,1],[1,2,0,1]],[[1,0,2,0],[3,3,2,2],[2,1,3,1],[1,2,0,1]],[[1,0,2,0],[2,4,2,2],[2,1,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[3,1,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,1],[2,2,0,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,1],[1,3,0,1]],[[2,0,2,0],[2,3,2,2],[2,1,3,1],[1,2,1,0]],[[1,0,2,0],[3,3,2,2],[2,1,3,1],[1,2,1,0]],[[1,0,2,0],[2,4,2,2],[2,1,3,1],[1,2,1,0]],[[1,0,2,0],[2,3,2,2],[3,1,3,1],[1,2,1,0]],[[1,0,2,0],[2,3,2,2],[2,1,3,1],[2,2,1,0]],[[1,0,2,0],[2,3,2,2],[2,1,3,1],[1,3,1,0]],[[1,2,1,1],[2,2,3,0],[2,2,2,1],[2,1,1,1]],[[1,2,1,1],[2,2,3,0],[3,2,2,1],[1,1,1,1]],[[1,2,1,1],[3,2,3,0],[2,2,2,1],[1,1,1,1]],[[1,3,1,1],[2,2,3,0],[2,2,2,1],[1,1,1,1]],[[2,2,1,1],[2,2,3,0],[2,2,2,1],[1,1,1,1]],[[1,0,2,0],[2,3,2,3],[2,1,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,4,2],[0,0,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,3],[0,0,2,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,2],[0,0,2,2]],[[1,0,2,0],[2,3,2,3],[2,1,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[2,1,4,2],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,3],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,2],[0,1,1,2]],[[1,0,2,0],[2,3,2,3],[2,1,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[2,1,4,2],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[2,1,3,3],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[2,1,3,2],[0,1,3,0]],[[1,0,2,0],[2,3,2,3],[2,1,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[2,1,4,2],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,3],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,2],[0,2,0,2]],[[1,0,2,0],[2,3,2,3],[2,1,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,2,2],[2,1,4,2],[0,2,1,0]],[[1,0,2,0],[2,3,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,1,1],[2,2,3,0],[2,2,2,1],[2,0,2,1]],[[1,2,1,1],[2,2,3,0],[3,2,2,1],[1,0,2,1]],[[1,2,1,1],[3,2,3,0],[2,2,2,1],[1,0,2,1]],[[1,3,1,1],[2,2,3,0],[2,2,2,1],[1,0,2,1]],[[2,2,1,1],[2,2,3,0],[2,2,2,1],[1,0,2,1]],[[1,0,2,0],[2,3,2,3],[2,1,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,2,2],[2,1,4,2],[1,0,1,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,3],[1,0,1,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,2],[1,0,1,2]],[[1,0,2,0],[2,3,2,3],[2,1,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,2,2],[2,1,4,2],[1,0,2,0]],[[1,0,2,0],[2,3,2,2],[2,1,3,3],[1,0,2,0]],[[1,0,2,0],[2,3,2,2],[2,1,3,2],[1,0,3,0]],[[1,0,2,0],[2,3,2,3],[2,1,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,2,2],[2,1,4,2],[1,1,0,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,3],[1,1,0,1]],[[1,0,2,0],[2,3,2,2],[2,1,3,2],[1,1,0,2]],[[1,0,2,0],[2,3,2,3],[2,1,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,2,2],[2,1,4,2],[1,1,1,0]],[[1,0,2,0],[2,3,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,1,1],[2,2,3,0],[3,2,2,1],[0,2,1,1]],[[1,2,1,1],[3,2,3,0],[2,2,2,1],[0,2,1,1]],[[1,3,1,1],[2,2,3,0],[2,2,2,1],[0,2,1,1]],[[2,2,1,1],[2,2,3,0],[2,2,2,1],[0,2,1,1]],[[1,2,1,1],[2,2,3,0],[3,2,2,1],[0,1,2,1]],[[1,2,1,1],[3,2,3,0],[2,2,2,1],[0,1,2,1]],[[1,3,1,1],[2,2,3,0],[2,2,2,1],[0,1,2,1]],[[2,2,1,1],[2,2,3,0],[2,2,2,1],[0,1,2,1]],[[1,2,1,1],[2,2,3,0],[2,2,1,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,0],[3,2,1,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,0],[2,2,1,2],[1,1,2,0]],[[1,3,1,1],[2,2,3,0],[2,2,1,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,0],[2,2,1,2],[1,1,2,0]],[[1,2,1,1],[2,2,3,0],[3,2,1,2],[0,2,2,0]],[[1,2,1,1],[3,2,3,0],[2,2,1,2],[0,2,2,0]],[[1,3,1,1],[2,2,3,0],[2,2,1,2],[0,2,2,0]],[[2,2,1,1],[2,2,3,0],[2,2,1,2],[0,2,2,0]],[[2,0,2,0],[2,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,0],[3,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,0],[2,4,2,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[3,2,0,2],[0,2,2,1]],[[2,0,2,0],[2,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,0,2,0],[3,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,0,2,0],[2,4,2,2],[2,2,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[3,2,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[2,2,0,2],[2,1,2,1]],[[1,2,1,1],[2,2,3,0],[2,2,1,1],[2,1,2,1]],[[1,2,1,1],[2,2,3,0],[3,2,1,1],[1,1,2,1]],[[2,0,2,0],[2,3,2,2],[2,2,2,0],[0,2,2,1]],[[1,0,2,0],[3,3,2,2],[2,2,2,0],[0,2,2,1]],[[1,0,2,0],[2,4,2,2],[2,2,2,0],[0,2,2,1]],[[1,0,2,0],[2,3,2,2],[3,2,2,0],[0,2,2,1]],[[2,0,2,0],[2,3,2,2],[2,2,2,0],[1,1,2,1]],[[1,0,2,0],[3,3,2,2],[2,2,2,0],[1,1,2,1]],[[1,0,2,0],[2,4,2,2],[2,2,2,0],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[3,2,2,0],[1,1,2,1]],[[1,0,2,0],[2,3,2,2],[2,2,2,0],[2,1,2,1]],[[2,0,2,0],[2,3,2,2],[2,2,2,1],[0,2,2,0]],[[1,0,2,0],[3,3,2,2],[2,2,2,1],[0,2,2,0]],[[1,0,2,0],[2,4,2,2],[2,2,2,1],[0,2,2,0]],[[1,0,2,0],[2,3,2,2],[3,2,2,1],[0,2,2,0]],[[2,0,2,0],[2,3,2,2],[2,2,2,1],[1,1,2,0]],[[1,0,2,0],[3,3,2,2],[2,2,2,1],[1,1,2,0]],[[1,0,2,0],[2,4,2,2],[2,2,2,1],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[3,2,2,1],[1,1,2,0]],[[1,0,2,0],[2,3,2,2],[2,2,2,1],[2,1,2,0]],[[1,2,1,1],[3,2,3,0],[2,2,1,1],[1,1,2,1]],[[1,3,1,1],[2,2,3,0],[2,2,1,1],[1,1,2,1]],[[2,2,1,1],[2,2,3,0],[2,2,1,1],[1,1,2,1]],[[1,2,1,1],[2,2,3,0],[3,2,1,1],[0,2,2,1]],[[1,2,1,1],[3,2,3,0],[2,2,1,1],[0,2,2,1]],[[1,3,1,1],[2,2,3,0],[2,2,1,1],[0,2,2,1]],[[2,2,1,1],[2,2,3,0],[2,2,1,1],[0,2,2,1]],[[1,2,1,1],[2,2,3,0],[2,2,0,2],[1,3,2,0]],[[1,2,1,1],[2,2,3,0],[2,2,0,2],[2,2,2,0]],[[1,2,1,1],[2,2,3,0],[3,2,0,2],[1,2,2,0]],[[1,2,1,1],[3,2,3,0],[2,2,0,2],[1,2,2,0]],[[1,3,1,1],[2,2,3,0],[2,2,0,2],[1,2,2,0]],[[2,2,1,1],[2,2,3,0],[2,2,0,2],[1,2,2,0]],[[1,2,1,1],[2,2,3,0],[2,2,0,2],[2,1,2,1]],[[1,2,1,1],[2,2,3,0],[3,2,0,2],[1,1,2,1]],[[1,2,1,1],[3,2,3,0],[2,2,0,2],[1,1,2,1]],[[1,3,1,1],[2,2,3,0],[2,2,0,2],[1,1,2,1]],[[2,2,1,1],[2,2,3,0],[2,2,0,2],[1,1,2,1]],[[1,2,1,1],[2,2,3,0],[3,2,0,2],[0,2,2,1]],[[1,2,1,1],[3,2,3,0],[2,2,0,2],[0,2,2,1]],[[1,3,1,1],[2,2,3,0],[2,2,0,2],[0,2,2,1]],[[2,2,1,1],[2,2,3,0],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[2,2,3,0],[2,2,0,1],[1,3,2,1]],[[1,2,1,1],[2,2,3,0],[2,2,0,1],[2,2,2,1]],[[1,2,1,1],[2,2,3,0],[3,2,0,1],[1,2,2,1]],[[1,2,1,1],[3,2,3,0],[2,2,0,1],[1,2,2,1]],[[1,3,1,1],[2,2,3,0],[2,2,0,1],[1,2,2,1]],[[2,2,1,1],[2,2,3,0],[2,2,0,1],[1,2,2,1]],[[2,0,2,0],[2,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,0,2,0],[3,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,0,2,0],[2,4,2,2],[2,2,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,2,2],[3,2,3,0],[0,1,2,1]],[[2,0,2,0],[2,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,0,2,0],[3,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,0,2,0],[2,4,2,2],[2,2,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,2,2],[3,2,3,0],[0,2,1,1]],[[2,0,2,0],[2,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,0,2,0],[3,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,0,2,0],[2,4,2,2],[2,2,3,0],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[3,2,3,0],[1,0,2,1]],[[1,0,2,0],[2,3,2,2],[2,2,3,0],[2,0,2,1]],[[2,0,2,0],[2,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,0,2,0],[3,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,0,2,0],[2,4,2,2],[2,2,3,0],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[3,2,3,0],[1,1,1,1]],[[1,0,2,0],[2,3,2,2],[2,2,3,0],[2,1,1,1]],[[2,0,2,0],[2,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,0,2,0],[3,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,0,2,0],[2,4,2,2],[2,2,3,0],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[3,2,3,0],[1,2,0,1]],[[1,0,2,0],[2,3,2,2],[2,2,3,0],[2,2,0,1]],[[2,0,2,0],[2,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,0,2,0],[3,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,0,2,0],[2,4,2,2],[2,2,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,2,2],[3,2,3,1],[0,1,1,1]],[[2,0,2,0],[2,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,0,2,0],[3,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,0,2,0],[2,4,2,2],[2,2,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,2,2],[3,2,3,1],[0,1,2,0]],[[2,0,2,0],[2,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,0,2,0],[3,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,0,2,0],[2,4,2,2],[2,2,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,2,2],[3,2,3,1],[0,2,0,1]],[[2,0,2,0],[2,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,0,2,0],[3,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,0,2,0],[2,4,2,2],[2,2,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,2,2],[3,2,3,1],[0,2,1,0]],[[1,2,1,1],[2,2,3,0],[2,1,3,2],[2,1,1,0]],[[2,0,2,0],[2,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,0,2,0],[3,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,0,2,0],[2,4,2,2],[2,2,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,2,2],[3,2,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,2,2],[2,2,3,1],[2,0,1,1]],[[2,0,2,0],[2,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,0,2,0],[3,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,0,2,0],[2,4,2,2],[2,2,3,1],[1,0,2,0]],[[1,0,2,0],[2,3,2,2],[3,2,3,1],[1,0,2,0]],[[1,0,2,0],[2,3,2,2],[2,2,3,1],[2,0,2,0]],[[2,0,2,0],[2,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,0,2,0],[3,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,0,2,0],[2,4,2,2],[2,2,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,2,2],[3,2,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,2,2],[2,2,3,1],[2,1,0,1]],[[2,0,2,0],[2,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,0,2,0],[3,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,0,2,0],[2,4,2,2],[2,2,3,1],[1,1,1,0]],[[1,0,2,0],[2,3,2,2],[3,2,3,1],[1,1,1,0]],[[1,0,2,0],[2,3,2,2],[2,2,3,1],[2,1,1,0]],[[1,2,1,1],[2,2,3,0],[3,1,3,2],[1,1,1,0]],[[1,2,1,1],[3,2,3,0],[2,1,3,2],[1,1,1,0]],[[1,3,1,1],[2,2,3,0],[2,1,3,2],[1,1,1,0]],[[2,2,1,1],[2,2,3,0],[2,1,3,2],[1,1,1,0]],[[1,2,1,1],[2,2,3,0],[2,1,3,2],[2,1,0,1]],[[1,2,1,1],[2,2,3,0],[3,1,3,2],[1,1,0,1]],[[1,2,1,1],[3,2,3,0],[2,1,3,2],[1,1,0,1]],[[1,3,1,1],[2,2,3,0],[2,1,3,2],[1,1,0,1]],[[2,0,2,0],[2,3,2,2],[2,2,3,1],[1,2,0,0]],[[1,0,2,0],[3,3,2,2],[2,2,3,1],[1,2,0,0]],[[1,0,2,0],[2,4,2,2],[2,2,3,1],[1,2,0,0]],[[1,0,2,0],[2,3,2,2],[3,2,3,1],[1,2,0,0]],[[1,0,2,0],[2,3,2,2],[2,2,3,1],[2,2,0,0]],[[2,2,1,1],[2,2,3,0],[2,1,3,2],[1,1,0,1]],[[1,2,1,1],[2,2,3,0],[2,1,3,2],[2,0,2,0]],[[1,2,1,1],[2,2,3,0],[3,1,3,2],[1,0,2,0]],[[1,2,1,1],[3,2,3,0],[2,1,3,2],[1,0,2,0]],[[1,3,1,1],[2,2,3,0],[2,1,3,2],[1,0,2,0]],[[2,2,1,1],[2,2,3,0],[2,1,3,2],[1,0,2,0]],[[1,2,1,1],[2,2,3,0],[2,1,3,2],[2,0,1,1]],[[1,2,1,1],[2,2,3,0],[3,1,3,2],[1,0,1,1]],[[1,2,1,1],[3,2,3,0],[2,1,3,2],[1,0,1,1]],[[1,3,1,1],[2,2,3,0],[2,1,3,2],[1,0,1,1]],[[2,2,1,1],[2,2,3,0],[2,1,3,2],[1,0,1,1]],[[1,2,1,1],[2,2,3,0],[3,1,3,2],[0,2,1,0]],[[1,2,1,1],[3,2,3,0],[2,1,3,2],[0,2,1,0]],[[1,3,1,1],[2,2,3,0],[2,1,3,2],[0,2,1,0]],[[2,2,1,1],[2,2,3,0],[2,1,3,2],[0,2,1,0]],[[1,2,1,1],[2,2,3,0],[3,1,3,2],[0,2,0,1]],[[1,2,1,1],[3,2,3,0],[2,1,3,2],[0,2,0,1]],[[1,3,1,1],[2,2,3,0],[2,1,3,2],[0,2,0,1]],[[2,2,1,1],[2,2,3,0],[2,1,3,2],[0,2,0,1]],[[1,2,1,1],[2,2,3,0],[3,1,3,2],[0,1,2,0]],[[1,2,1,1],[3,2,3,0],[2,1,3,2],[0,1,2,0]],[[1,3,1,1],[2,2,3,0],[2,1,3,2],[0,1,2,0]],[[2,2,1,1],[2,2,3,0],[2,1,3,2],[0,1,2,0]],[[1,2,1,1],[2,2,3,0],[3,1,3,2],[0,1,1,1]],[[1,2,1,1],[3,2,3,0],[2,1,3,2],[0,1,1,1]],[[1,3,1,1],[2,2,3,0],[2,1,3,2],[0,1,1,1]],[[2,2,1,1],[2,2,3,0],[2,1,3,2],[0,1,1,1]],[[1,2,1,1],[3,2,3,0],[2,1,3,2],[0,0,2,1]],[[1,3,1,1],[2,2,3,0],[2,1,3,2],[0,0,2,1]],[[2,2,1,1],[2,2,3,0],[2,1,3,2],[0,0,2,1]],[[1,2,1,1],[2,2,3,0],[2,1,3,1],[2,1,1,1]],[[1,2,1,1],[2,2,3,0],[3,1,3,1],[1,1,1,1]],[[1,2,1,1],[3,2,3,0],[2,1,3,1],[1,1,1,1]],[[1,3,1,1],[2,2,3,0],[2,1,3,1],[1,1,1,1]],[[2,2,1,1],[2,2,3,0],[2,1,3,1],[1,1,1,1]],[[1,2,1,1],[2,2,3,0],[2,1,3,1],[2,0,2,1]],[[1,2,1,1],[2,2,3,0],[3,1,3,1],[1,0,2,1]],[[1,2,1,1],[3,2,3,0],[2,1,3,1],[1,0,2,1]],[[1,3,1,1],[2,2,3,0],[2,1,3,1],[1,0,2,1]],[[2,2,1,1],[2,2,3,0],[2,1,3,1],[1,0,2,1]],[[1,2,1,1],[2,2,3,0],[3,1,3,1],[0,2,1,1]],[[1,2,1,1],[3,2,3,0],[2,1,3,1],[0,2,1,1]],[[1,3,1,1],[2,2,3,0],[2,1,3,1],[0,2,1,1]],[[2,2,1,1],[2,2,3,0],[2,1,3,1],[0,2,1,1]],[[1,2,1,1],[2,2,3,0],[3,1,3,1],[0,1,2,1]],[[1,2,1,1],[3,2,3,0],[2,1,3,1],[0,1,2,1]],[[1,3,1,1],[2,2,3,0],[2,1,3,1],[0,1,2,1]],[[2,2,1,1],[2,2,3,0],[2,1,3,1],[0,1,2,1]],[[1,2,1,1],[2,2,3,0],[2,1,2,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,0],[2,1,2,2],[2,2,1,0]],[[1,2,1,1],[2,2,3,0],[3,1,2,2],[1,2,1,0]],[[1,2,1,1],[3,2,3,0],[2,1,2,2],[1,2,1,0]],[[1,3,1,1],[2,2,3,0],[2,1,2,2],[1,2,1,0]],[[2,2,1,1],[2,2,3,0],[2,1,2,2],[1,2,1,0]],[[1,2,1,1],[2,2,3,0],[2,1,2,2],[1,3,0,1]],[[1,2,1,1],[2,2,3,0],[2,1,2,2],[2,2,0,1]],[[1,2,1,1],[2,2,3,0],[3,1,2,2],[1,2,0,1]],[[1,2,1,1],[3,2,3,0],[2,1,2,2],[1,2,0,1]],[[1,3,1,1],[2,2,3,0],[2,1,2,2],[1,2,0,1]],[[2,2,1,1],[2,2,3,0],[2,1,2,2],[1,2,0,1]],[[1,2,1,1],[2,2,3,0],[2,1,2,1],[1,3,1,1]],[[1,2,1,1],[2,2,3,0],[2,1,2,1],[2,2,1,1]],[[1,2,1,1],[2,2,3,0],[3,1,2,1],[1,2,1,1]],[[1,2,1,1],[3,2,3,0],[2,1,2,1],[1,2,1,1]],[[1,3,1,1],[2,2,3,0],[2,1,2,1],[1,2,1,1]],[[2,2,1,1],[2,2,3,0],[2,1,2,1],[1,2,1,1]],[[1,2,1,1],[2,2,3,0],[2,1,1,2],[1,2,3,0]],[[1,2,1,1],[2,2,3,0],[2,1,1,2],[1,3,2,0]],[[1,2,1,1],[2,2,3,0],[2,1,1,2],[2,2,2,0]],[[1,2,1,1],[2,2,3,0],[3,1,1,2],[1,2,2,0]],[[1,2,1,1],[3,2,3,0],[2,1,1,2],[1,2,2,0]],[[1,3,1,1],[2,2,3,0],[2,1,1,2],[1,2,2,0]],[[2,2,1,1],[2,2,3,0],[2,1,1,2],[1,2,2,0]],[[1,2,1,1],[2,2,3,0],[2,1,1,1],[1,2,2,2]],[[1,2,1,1],[2,2,3,0],[2,1,1,1],[1,2,3,1]],[[1,2,1,1],[2,2,3,0],[2,1,1,1],[1,3,2,1]],[[1,2,1,1],[2,2,3,0],[2,1,1,1],[2,2,2,1]],[[1,2,1,1],[2,2,3,0],[3,1,1,1],[1,2,2,1]],[[1,2,1,1],[3,2,3,0],[2,1,1,1],[1,2,2,1]],[[1,3,1,1],[2,2,3,0],[2,1,1,1],[1,2,2,1]],[[2,2,1,1],[2,2,3,0],[2,1,1,1],[1,2,2,1]],[[1,2,1,1],[2,2,3,0],[2,1,0,2],[1,2,2,2]],[[1,2,1,1],[2,2,3,0],[2,1,0,2],[1,2,3,1]],[[1,2,1,1],[2,2,3,0],[2,1,0,2],[1,3,2,1]],[[1,2,1,1],[2,2,3,0],[2,1,0,2],[2,2,2,1]],[[1,2,1,1],[2,2,3,0],[2,1,0,3],[1,2,2,1]],[[1,2,1,1],[2,2,3,0],[3,1,0,2],[1,2,2,1]],[[1,2,1,1],[3,2,3,0],[2,1,0,2],[1,2,2,1]],[[1,3,1,1],[2,2,3,0],[2,1,0,2],[1,2,2,1]],[[2,2,1,1],[2,2,3,0],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[2,2,3,0],[2,0,3,2],[1,3,1,0]],[[1,2,1,1],[2,2,3,0],[2,0,3,2],[2,2,1,0]],[[1,2,1,1],[2,2,3,0],[3,0,3,2],[1,2,1,0]],[[1,2,1,1],[3,2,3,0],[2,0,3,2],[1,2,1,0]],[[1,3,1,1],[2,2,3,0],[2,0,3,2],[1,2,1,0]],[[2,2,1,1],[2,2,3,0],[2,0,3,2],[1,2,1,0]],[[1,2,1,1],[2,2,3,0],[2,0,3,2],[1,3,0,1]],[[1,2,1,1],[2,2,3,0],[2,0,3,2],[2,2,0,1]],[[1,2,1,1],[2,2,3,0],[3,0,3,2],[1,2,0,1]],[[1,2,1,1],[3,2,3,0],[2,0,3,2],[1,2,0,1]],[[1,3,1,1],[2,2,3,0],[2,0,3,2],[1,2,0,1]],[[2,2,1,1],[2,2,3,0],[2,0,3,2],[1,2,0,1]],[[1,2,1,1],[2,2,3,0],[2,0,3,2],[2,1,2,0]],[[1,2,1,1],[2,2,3,0],[3,0,3,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,0],[2,0,3,2],[1,1,2,0]],[[1,3,1,1],[2,2,3,0],[2,0,3,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,0],[2,0,3,2],[1,1,2,0]],[[1,2,1,1],[2,2,3,0],[2,0,3,2],[2,1,1,1]],[[1,2,1,1],[2,2,3,0],[3,0,3,2],[1,1,1,1]],[[1,2,1,1],[3,2,3,0],[2,0,3,2],[1,1,1,1]],[[1,3,1,1],[2,2,3,0],[2,0,3,2],[1,1,1,1]],[[2,2,1,1],[2,2,3,0],[2,0,3,2],[1,1,1,1]],[[1,2,1,1],[2,2,3,0],[3,0,3,2],[0,2,2,0]],[[1,2,1,1],[3,2,3,0],[2,0,3,2],[0,2,2,0]],[[1,3,1,1],[2,2,3,0],[2,0,3,2],[0,2,2,0]],[[2,2,1,1],[2,2,3,0],[2,0,3,2],[0,2,2,0]],[[1,2,1,1],[2,2,3,0],[3,0,3,2],[0,2,1,1]],[[1,2,1,1],[3,2,3,0],[2,0,3,2],[0,2,1,1]],[[1,3,1,1],[2,2,3,0],[2,0,3,2],[0,2,1,1]],[[2,2,1,1],[2,2,3,0],[2,0,3,2],[0,2,1,1]],[[1,2,1,1],[2,2,3,0],[2,0,3,1],[1,3,1,1]],[[1,2,1,1],[2,2,3,0],[2,0,3,1],[2,2,1,1]],[[1,2,1,1],[2,2,3,0],[3,0,3,1],[1,2,1,1]],[[1,2,1,1],[3,2,3,0],[2,0,3,1],[1,2,1,1]],[[1,3,1,1],[2,2,3,0],[2,0,3,1],[1,2,1,1]],[[2,2,1,1],[2,2,3,0],[2,0,3,1],[1,2,1,1]],[[1,2,1,1],[2,2,3,0],[2,0,3,1],[2,1,2,1]],[[1,2,1,1],[2,2,3,0],[3,0,3,1],[1,1,2,1]],[[1,2,1,1],[3,2,3,0],[2,0,3,1],[1,1,2,1]],[[1,3,1,1],[2,2,3,0],[2,0,3,1],[1,1,2,1]],[[2,2,1,1],[2,2,3,0],[2,0,3,1],[1,1,2,1]],[[1,2,1,1],[2,2,3,0],[3,0,3,1],[0,2,2,1]],[[1,2,1,1],[3,2,3,0],[2,0,3,1],[0,2,2,1]],[[1,3,1,1],[2,2,3,0],[2,0,3,1],[0,2,2,1]],[[2,2,1,1],[2,2,3,0],[2,0,3,1],[0,2,2,1]],[[1,2,1,1],[2,2,3,0],[2,0,2,2],[1,2,3,0]],[[1,2,1,1],[2,2,3,0],[2,0,2,2],[1,3,2,0]],[[1,2,1,1],[2,2,3,0],[2,0,2,2],[2,2,2,0]],[[1,2,1,1],[2,2,3,0],[3,0,2,2],[1,2,2,0]],[[1,2,1,1],[3,2,3,0],[2,0,2,2],[1,2,2,0]],[[1,3,1,1],[2,2,3,0],[2,0,2,2],[1,2,2,0]],[[2,2,1,1],[2,2,3,0],[2,0,2,2],[1,2,2,0]],[[1,2,1,1],[2,2,3,0],[2,0,2,1],[1,2,2,2]],[[1,2,1,1],[2,2,3,0],[2,0,2,1],[1,2,3,1]],[[1,2,1,1],[2,2,3,0],[2,0,2,1],[1,3,2,1]],[[1,2,1,1],[2,2,3,0],[2,0,2,1],[2,2,2,1]],[[1,2,1,1],[2,2,3,0],[3,0,2,1],[1,2,2,1]],[[1,2,1,1],[3,2,3,0],[2,0,2,1],[1,2,2,1]],[[1,3,1,1],[2,2,3,0],[2,0,2,1],[1,2,2,1]],[[2,2,1,1],[2,2,3,0],[2,0,2,1],[1,2,2,1]],[[1,2,1,1],[2,2,3,0],[2,0,1,2],[1,2,2,2]],[[1,2,1,1],[2,2,3,0],[2,0,1,2],[1,2,3,1]],[[1,2,1,1],[2,2,3,0],[2,0,1,2],[1,3,2,1]],[[1,2,1,1],[2,2,3,0],[2,0,1,2],[2,2,2,1]],[[1,2,1,1],[2,2,3,0],[2,0,1,3],[1,2,2,1]],[[1,2,1,1],[2,2,3,0],[3,0,1,2],[1,2,2,1]],[[1,2,1,1],[3,2,3,0],[2,0,1,2],[1,2,2,1]],[[1,3,1,1],[2,2,3,0],[2,0,1,2],[1,2,2,1]],[[2,2,1,1],[2,2,3,0],[2,0,1,2],[1,2,2,1]],[[1,2,1,1],[3,2,3,0],[1,3,3,2],[1,1,0,0]],[[1,3,1,1],[2,2,3,0],[1,3,3,2],[1,1,0,0]],[[2,2,1,1],[2,2,3,0],[1,3,3,2],[1,1,0,0]],[[2,0,2,0],[2,3,2,2],[2,3,3,0],[1,0,1,1]],[[1,0,2,0],[3,3,2,2],[2,3,3,0],[1,0,1,1]],[[1,0,2,0],[2,4,2,2],[2,3,3,0],[1,0,1,1]],[[1,0,2,0],[2,3,2,2],[3,3,3,0],[1,0,1,1]],[[1,2,1,1],[3,2,3,0],[1,3,3,2],[0,2,0,0]],[[1,3,1,1],[2,2,3,0],[1,3,3,2],[0,2,0,0]],[[2,2,1,1],[2,2,3,0],[1,3,3,2],[0,2,0,0]],[[1,2,1,1],[3,2,3,0],[1,3,3,2],[0,0,2,0]],[[1,3,1,1],[2,2,3,0],[1,3,3,2],[0,0,2,0]],[[2,2,1,1],[2,2,3,0],[1,3,3,2],[0,0,2,0]],[[1,2,1,1],[3,2,3,0],[1,3,3,2],[0,0,1,1]],[[1,3,1,1],[2,2,3,0],[1,3,3,2],[0,0,1,1]],[[2,0,2,0],[2,3,2,2],[2,3,3,1],[1,0,0,1]],[[1,0,2,0],[3,3,2,2],[2,3,3,1],[1,0,0,1]],[[1,0,2,0],[2,4,2,2],[2,3,3,1],[1,0,0,1]],[[1,0,2,0],[2,3,2,2],[3,3,3,1],[1,0,0,1]],[[2,0,2,0],[2,3,2,2],[2,3,3,1],[1,0,1,0]],[[1,0,2,0],[3,3,2,2],[2,3,3,1],[1,0,1,0]],[[1,0,2,0],[2,4,2,2],[2,3,3,1],[1,0,1,0]],[[1,0,2,0],[2,3,2,2],[3,3,3,1],[1,0,1,0]],[[2,2,1,1],[2,2,3,0],[1,3,3,2],[0,0,1,1]],[[1,2,1,1],[3,2,3,0],[1,3,3,1],[0,0,2,1]],[[1,3,1,1],[2,2,3,0],[1,3,3,1],[0,0,2,1]],[[2,2,1,1],[2,2,3,0],[1,3,3,1],[0,0,2,1]],[[1,2,1,1],[3,2,3,0],[1,3,2,2],[1,2,0,0]],[[1,3,1,1],[2,2,3,0],[1,3,2,2],[1,2,0,0]],[[2,2,1,1],[2,2,3,0],[1,3,2,2],[1,2,0,0]],[[1,2,1,1],[3,2,3,0],[1,3,2,2],[1,1,1,0]],[[1,3,1,1],[2,2,3,0],[1,3,2,2],[1,1,1,0]],[[2,2,1,1],[2,2,3,0],[1,3,2,2],[1,1,1,0]],[[1,2,1,1],[3,2,3,0],[1,3,2,2],[1,1,0,1]],[[1,3,1,1],[2,2,3,0],[1,3,2,2],[1,1,0,1]],[[2,2,1,1],[2,2,3,0],[1,3,2,2],[1,1,0,1]],[[1,2,1,1],[3,2,3,0],[1,3,2,2],[1,0,2,0]],[[1,3,1,1],[2,2,3,0],[1,3,2,2],[1,0,2,0]],[[2,2,1,1],[2,2,3,0],[1,3,2,2],[1,0,2,0]],[[1,2,1,1],[3,2,3,0],[1,3,2,2],[1,0,1,1]],[[1,3,1,1],[2,2,3,0],[1,3,2,2],[1,0,1,1]],[[2,2,1,1],[2,2,3,0],[1,3,2,2],[1,0,1,1]],[[1,2,1,1],[3,2,3,0],[1,3,2,2],[0,2,1,0]],[[1,3,1,1],[2,2,3,0],[1,3,2,2],[0,2,1,0]],[[2,2,1,1],[2,2,3,0],[1,3,2,2],[0,2,1,0]],[[1,2,1,1],[3,2,3,0],[1,3,2,2],[0,2,0,1]],[[1,3,1,1],[2,2,3,0],[1,3,2,2],[0,2,0,1]],[[2,2,1,1],[2,2,3,0],[1,3,2,2],[0,2,0,1]],[[1,2,1,1],[3,2,3,0],[1,3,2,2],[0,1,2,0]],[[1,3,1,1],[2,2,3,0],[1,3,2,2],[0,1,2,0]],[[2,2,1,1],[2,2,3,0],[1,3,2,2],[0,1,2,0]],[[1,2,1,1],[3,2,3,0],[1,3,2,2],[0,1,1,1]],[[1,3,1,1],[2,2,3,0],[1,3,2,2],[0,1,1,1]],[[2,2,1,1],[2,2,3,0],[1,3,2,2],[0,1,1,1]],[[1,2,1,1],[3,2,3,0],[1,3,2,1],[1,2,0,1]],[[1,3,1,1],[2,2,3,0],[1,3,2,1],[1,2,0,1]],[[2,2,1,1],[2,2,3,0],[1,3,2,1],[1,2,0,1]],[[1,2,1,1],[3,2,3,0],[1,3,2,1],[1,1,1,1]],[[1,3,1,1],[2,2,3,0],[1,3,2,1],[1,1,1,1]],[[2,2,1,1],[2,2,3,0],[1,3,2,1],[1,1,1,1]],[[1,2,1,1],[3,2,3,0],[1,3,2,1],[1,0,2,1]],[[1,3,1,1],[2,2,3,0],[1,3,2,1],[1,0,2,1]],[[2,2,1,1],[2,2,3,0],[1,3,2,1],[1,0,2,1]],[[1,2,1,1],[3,2,3,0],[1,3,2,1],[0,2,1,1]],[[1,3,1,1],[2,2,3,0],[1,3,2,1],[0,2,1,1]],[[2,2,1,1],[2,2,3,0],[1,3,2,1],[0,2,1,1]],[[1,2,1,1],[3,2,3,0],[1,3,2,1],[0,1,2,1]],[[1,3,1,1],[2,2,3,0],[1,3,2,1],[0,1,2,1]],[[2,2,1,1],[2,2,3,0],[1,3,2,1],[0,1,2,1]],[[1,2,1,1],[3,2,3,0],[1,3,1,2],[1,1,2,0]],[[1,3,1,1],[2,2,3,0],[1,3,1,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,0],[1,3,1,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,0],[1,3,1,2],[0,2,2,0]],[[1,3,1,1],[2,2,3,0],[1,3,1,2],[0,2,2,0]],[[2,2,1,1],[2,2,3,0],[1,3,1,2],[0,2,2,0]],[[1,2,1,1],[3,2,3,0],[1,3,1,1],[1,1,2,1]],[[1,3,1,1],[2,2,3,0],[1,3,1,1],[1,1,2,1]],[[2,2,1,1],[2,2,3,0],[1,3,1,1],[1,1,2,1]],[[1,2,1,1],[3,2,3,0],[1,3,1,1],[0,2,2,1]],[[1,3,1,1],[2,2,3,0],[1,3,1,1],[0,2,2,1]],[[2,2,1,1],[2,2,3,0],[1,3,1,1],[0,2,2,1]],[[1,2,1,1],[3,2,3,0],[1,3,0,2],[1,1,2,1]],[[1,3,1,1],[2,2,3,0],[1,3,0,2],[1,1,2,1]],[[2,2,1,1],[2,2,3,0],[1,3,0,2],[1,1,2,1]],[[1,2,1,1],[3,2,3,0],[1,3,0,2],[0,2,2,1]],[[1,3,1,1],[2,2,3,0],[1,3,0,2],[0,2,2,1]],[[2,2,1,1],[2,2,3,0],[1,3,0,2],[0,2,2,1]],[[1,2,1,1],[3,2,3,0],[1,2,3,2],[1,1,1,0]],[[1,3,1,1],[2,2,3,0],[1,2,3,2],[1,1,1,0]],[[2,2,1,1],[2,2,3,0],[1,2,3,2],[1,1,1,0]],[[1,2,1,1],[3,2,3,0],[1,2,3,2],[1,1,0,1]],[[1,3,1,1],[2,2,3,0],[1,2,3,2],[1,1,0,1]],[[2,2,1,1],[2,2,3,0],[1,2,3,2],[1,1,0,1]],[[1,2,1,1],[3,2,3,0],[1,2,3,2],[1,0,2,0]],[[1,3,1,1],[2,2,3,0],[1,2,3,2],[1,0,2,0]],[[2,2,1,1],[2,2,3,0],[1,2,3,2],[1,0,2,0]],[[1,2,1,1],[3,2,3,0],[1,2,3,2],[1,0,1,1]],[[1,3,1,1],[2,2,3,0],[1,2,3,2],[1,0,1,1]],[[2,2,1,1],[2,2,3,0],[1,2,3,2],[1,0,1,1]],[[1,2,1,1],[3,2,3,0],[1,2,3,2],[0,2,1,0]],[[1,3,1,1],[2,2,3,0],[1,2,3,2],[0,2,1,0]],[[2,2,1,1],[2,2,3,0],[1,2,3,2],[0,2,1,0]],[[1,2,1,1],[3,2,3,0],[1,2,3,2],[0,2,0,1]],[[1,3,1,1],[2,2,3,0],[1,2,3,2],[0,2,0,1]],[[2,2,1,1],[2,2,3,0],[1,2,3,2],[0,2,0,1]],[[1,2,1,1],[3,2,3,0],[1,2,3,2],[0,1,2,0]],[[1,3,1,1],[2,2,3,0],[1,2,3,2],[0,1,2,0]],[[2,2,1,1],[2,2,3,0],[1,2,3,2],[0,1,2,0]],[[1,2,1,1],[3,2,3,0],[1,2,3,2],[0,1,1,1]],[[1,3,1,1],[2,2,3,0],[1,2,3,2],[0,1,1,1]],[[2,2,1,1],[2,2,3,0],[1,2,3,2],[0,1,1,1]],[[1,2,1,1],[3,2,3,0],[1,2,3,2],[0,0,2,1]],[[1,3,1,1],[2,2,3,0],[1,2,3,2],[0,0,2,1]],[[2,2,1,1],[2,2,3,0],[1,2,3,2],[0,0,2,1]],[[1,2,1,1],[3,2,3,0],[1,2,3,1],[1,1,1,1]],[[1,3,1,1],[2,2,3,0],[1,2,3,1],[1,1,1,1]],[[2,2,1,1],[2,2,3,0],[1,2,3,1],[1,1,1,1]],[[1,2,1,1],[3,2,3,0],[1,2,3,1],[1,0,2,1]],[[1,3,1,1],[2,2,3,0],[1,2,3,1],[1,0,2,1]],[[2,2,1,1],[2,2,3,0],[1,2,3,1],[1,0,2,1]],[[1,2,1,1],[3,2,3,0],[1,2,3,1],[0,2,1,1]],[[1,3,1,1],[2,2,3,0],[1,2,3,1],[0,2,1,1]],[[2,2,1,1],[2,2,3,0],[1,2,3,1],[0,2,1,1]],[[1,2,1,1],[3,2,3,0],[1,2,3,1],[0,1,2,1]],[[1,3,1,1],[2,2,3,0],[1,2,3,1],[0,1,2,1]],[[2,2,1,1],[2,2,3,0],[1,2,3,1],[0,1,2,1]],[[1,2,1,1],[3,2,3,0],[1,1,3,2],[0,2,2,0]],[[1,3,1,1],[2,2,3,0],[1,1,3,2],[0,2,2,0]],[[2,2,1,1],[2,2,3,0],[1,1,3,2],[0,2,2,0]],[[1,2,1,1],[3,2,3,0],[1,1,3,2],[0,2,1,1]],[[1,3,1,1],[2,2,3,0],[1,1,3,2],[0,2,1,1]],[[2,2,1,1],[2,2,3,0],[1,1,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,0],[0,1,4,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[0,1,3,2],[2,2,2,1]],[[1,0,2,0],[2,3,3,0],[0,1,3,2],[1,3,2,1]],[[1,0,2,0],[2,3,3,0],[0,1,3,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,0],[0,1,3,2],[1,2,2,2]],[[1,0,2,0],[2,3,3,0],[0,2,4,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[0,2,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,0],[0,2,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,0],[0,2,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,0],[0,2,3,1],[1,2,2,2]],[[1,0,2,0],[2,3,3,0],[0,2,4,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,0],[0,2,3,2],[1,1,3,1]],[[1,0,2,0],[2,3,3,0],[0,2,3,2],[1,1,2,2]],[[1,0,2,0],[2,3,3,0],[0,2,4,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,0],[0,2,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,0],[0,2,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,0],[0,2,3,2],[1,2,3,0]],[[2,0,2,0],[2,3,3,0],[0,3,2,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,0],[0,3,2,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,0],[0,3,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[0,4,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[0,3,2,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,0],[0,3,2,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,0],[0,3,2,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,0],[0,3,2,1],[1,2,2,2]],[[2,0,2,0],[2,3,3,0],[0,3,2,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,0],[0,3,2,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,0],[0,3,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,0],[0,4,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,0],[0,3,2,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,0],[0,3,2,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,0],[0,3,2,2],[1,2,3,0]],[[2,0,2,0],[2,3,3,0],[0,3,3,0],[1,2,2,1]],[[1,0,2,0],[3,3,3,0],[0,3,3,0],[1,2,2,1]],[[1,0,2,0],[2,4,3,0],[0,3,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[0,4,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[0,3,3,0],[2,2,2,1]],[[1,0,2,0],[2,3,3,0],[0,3,3,0],[1,3,2,1]],[[1,0,2,0],[2,3,3,0],[0,3,3,0],[1,2,3,1]],[[2,0,2,0],[2,3,3,0],[0,3,3,1],[1,1,2,1]],[[1,0,2,0],[3,3,3,0],[0,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,4,3,0],[0,3,3,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,0],[0,4,3,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,0],[0,3,4,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,0],[0,3,3,1],[1,1,3,1]],[[1,0,2,0],[2,3,3,0],[0,3,3,1],[1,1,2,2]],[[2,0,2,0],[2,3,3,0],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[3,3,3,0],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,4,3,0],[0,3,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,0],[0,4,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,0],[0,3,4,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,0],[0,3,3,1],[2,2,1,1]],[[1,0,2,0],[2,3,3,0],[0,3,3,1],[1,3,1,1]],[[1,0,2,0],[2,3,3,0],[0,3,4,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,0],[0,3,3,2],[0,1,3,1]],[[1,0,2,0],[2,3,3,0],[0,3,3,2],[0,1,2,2]],[[2,0,2,0],[2,3,3,0],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[3,3,3,0],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,4,3,0],[0,3,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,0],[0,4,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,0],[0,3,4,2],[1,1,1,1]],[[2,0,2,0],[2,3,3,0],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,0],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,0],[0,3,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,0],[0,4,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,0],[0,3,4,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,0],[0,3,3,2],[1,1,3,0]],[[2,0,2,0],[2,3,3,0],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[3,3,3,0],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,4,3,0],[0,3,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,0],[0,4,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,0],[0,3,4,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,0],[0,3,3,2],[2,2,0,1]],[[1,0,2,0],[2,3,3,0],[0,3,3,2],[1,3,0,1]],[[2,0,2,0],[2,3,3,0],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[3,3,3,0],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,4,3,0],[0,3,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,0],[0,4,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,0],[0,3,4,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,0],[0,3,3,2],[2,2,1,0]],[[1,0,2,0],[2,3,3,0],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[3,2,3,0],[1,1,3,1],[0,2,2,1]],[[1,3,1,1],[2,2,3,0],[1,1,3,1],[0,2,2,1]],[[2,2,1,1],[2,2,3,0],[1,1,3,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,0],[1,0,4,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[1,0,3,2],[2,2,2,1]],[[1,0,2,0],[2,3,3,0],[1,0,3,2],[1,3,2,1]],[[1,0,2,0],[2,3,3,0],[1,0,3,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,0],[1,0,3,2],[1,2,2,2]],[[1,0,2,0],[2,3,3,0],[1,1,4,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,0],[1,1,3,2],[0,3,2,1]],[[1,0,2,0],[2,3,3,0],[1,1,3,2],[0,2,3,1]],[[1,0,2,0],[2,3,3,0],[1,1,3,2],[0,2,2,2]],[[1,0,2,0],[2,3,3,0],[1,2,4,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,0],[1,2,3,1],[0,3,2,1]],[[1,0,2,0],[2,3,3,0],[1,2,3,1],[0,2,3,1]],[[1,0,2,0],[2,3,3,0],[1,2,3,1],[0,2,2,2]],[[1,0,2,0],[2,3,3,0],[1,2,4,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,0],[1,2,3,2],[0,1,3,1]],[[1,0,2,0],[2,3,3,0],[1,2,3,2],[0,1,2,2]],[[1,0,2,0],[2,3,3,0],[1,2,4,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,0],[1,2,3,2],[0,3,2,0]],[[1,0,2,0],[2,3,3,0],[1,2,3,2],[0,2,3,0]],[[1,0,2,0],[2,3,3,0],[1,2,4,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,0],[1,2,3,2],[1,0,3,1]],[[1,0,2,0],[2,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,1,1],[3,2,3,0],[1,0,3,2],[1,2,2,0]],[[1,3,1,1],[2,2,3,0],[1,0,3,2],[1,2,2,0]],[[2,2,1,1],[2,2,3,0],[1,0,3,2],[1,2,2,0]],[[1,2,1,1],[3,2,3,0],[1,0,3,2],[1,2,1,1]],[[1,3,1,1],[2,2,3,0],[1,0,3,2],[1,2,1,1]],[[2,0,2,0],[2,3,3,0],[1,3,2,1],[0,2,2,1]],[[1,0,2,0],[3,3,3,0],[1,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,4,3,0],[1,3,2,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,0],[1,4,2,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,0],[1,3,2,1],[0,3,2,1]],[[1,0,2,0],[2,3,3,0],[1,3,2,1],[0,2,3,1]],[[1,0,2,0],[2,3,3,0],[1,3,2,1],[0,2,2,2]],[[2,0,2,0],[2,3,3,0],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[3,3,3,0],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,4,3,0],[1,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,0],[1,4,2,1],[1,1,2,1]],[[2,0,2,0],[2,3,3,0],[1,3,2,2],[0,2,2,0]],[[1,0,2,0],[3,3,3,0],[1,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,4,3,0],[1,3,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,0],[1,4,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,0],[1,3,2,2],[0,3,2,0]],[[1,0,2,0],[2,3,3,0],[1,3,2,2],[0,2,3,0]],[[2,0,2,0],[2,3,3,0],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,0],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,0],[1,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,0],[1,4,2,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,0],[1,0,3,2],[1,2,1,1]],[[1,2,1,1],[3,2,3,0],[1,0,3,1],[1,2,2,1]],[[1,3,1,1],[2,2,3,0],[1,0,3,1],[1,2,2,1]],[[2,2,1,1],[2,2,3,0],[1,0,3,1],[1,2,2,1]],[[2,0,2,0],[2,3,3,0],[1,3,3,0],[0,2,2,1]],[[1,0,2,0],[3,3,3,0],[1,3,3,0],[0,2,2,1]],[[1,0,2,0],[2,4,3,0],[1,3,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,0],[1,4,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,0],[1,3,3,0],[0,3,2,1]],[[1,0,2,0],[2,3,3,0],[1,3,3,0],[0,2,3,1]],[[2,0,2,0],[2,3,3,0],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[3,3,3,0],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,4,3,0],[1,3,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,0],[1,4,3,0],[1,1,2,1]],[[2,0,2,0],[2,3,3,0],[1,3,3,1],[0,1,2,1]],[[1,0,2,0],[3,3,3,0],[1,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,4,3,0],[1,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,0],[1,4,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,0],[1,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,0],[1,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,3,3,0],[1,3,3,1],[0,1,2,2]],[[2,0,2,0],[2,3,3,0],[1,3,3,1],[0,2,1,1]],[[1,0,2,0],[3,3,3,0],[1,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,4,3,0],[1,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,0],[1,4,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,0],[1,3,4,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,0],[1,3,3,1],[0,3,1,1]],[[2,0,2,0],[2,3,3,0],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[3,3,3,0],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,4,3,0],[1,3,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,0],[1,4,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,0],[1,3,4,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,0],[1,3,3,1],[1,0,3,1]],[[1,0,2,0],[2,3,3,0],[1,3,3,1],[1,0,2,2]],[[2,0,2,0],[2,3,3,0],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[3,3,3,0],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,4,3,0],[1,3,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,0],[1,4,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,0],[1,3,4,1],[1,1,1,1]],[[2,0,2,0],[2,3,3,0],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[3,3,3,0],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,4,3,0],[1,3,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,0],[1,4,3,1],[1,2,0,1]],[[2,0,2,0],[2,3,3,0],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[3,3,3,0],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,0],[1,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,0],[1,4,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,0],[1,3,4,2],[0,1,1,1]],[[2,0,2,0],[2,3,3,0],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[3,3,3,0],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,0],[1,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,0],[1,4,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,0],[1,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,0],[1,3,3,2],[0,1,3,0]],[[2,0,2,0],[2,3,3,0],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,0],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,0],[1,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,0],[1,4,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,0],[1,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,0],[1,3,3,2],[0,3,0,1]],[[2,0,2,0],[2,3,3,0],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,0],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,0],[1,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,0],[1,4,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,0],[1,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,0],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[3,2,3,0],[0,3,3,2],[1,2,0,0]],[[1,3,1,1],[2,2,3,0],[0,3,3,2],[1,2,0,0]],[[2,0,2,0],[2,3,3,0],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[3,3,3,0],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,4,3,0],[1,3,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,0],[1,4,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,0],[1,3,4,2],[1,0,1,1]],[[2,0,2,0],[2,3,3,0],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[3,3,3,0],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,4,3,0],[1,3,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,0],[1,4,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,0],[1,3,4,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,0],[1,3,3,2],[1,0,3,0]],[[2,0,2,0],[2,3,3,0],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,0],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,0],[1,3,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,0],[1,4,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,0],[1,3,4,2],[1,1,0,1]],[[2,0,2,0],[2,3,3,0],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,0],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,0],[1,3,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,0],[1,4,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,0],[1,3,4,2],[1,1,1,0]],[[2,2,1,1],[2,2,3,0],[0,3,3,2],[1,2,0,0]],[[2,0,2,0],[2,3,3,0],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[3,3,3,0],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,4,3,0],[1,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,0],[1,4,3,2],[1,2,0,0]],[[2,0,2,0],[2,3,3,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[3,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[2,0,4,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[2,0,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,0],[2,0,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,0],[2,0,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,0],[2,0,3,1],[1,2,2,2]],[[1,0,2,0],[2,3,3,0],[2,0,4,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,0],[2,0,3,2],[0,3,2,1]],[[1,0,2,0],[2,3,3,0],[2,0,3,2],[0,2,3,1]],[[1,0,2,0],[2,3,3,0],[2,0,3,2],[0,2,2,2]],[[1,0,2,0],[2,3,3,0],[2,0,4,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,0],[2,0,3,2],[1,1,3,1]],[[1,0,2,0],[2,3,3,0],[2,0,3,2],[1,1,2,2]],[[2,0,2,0],[2,3,3,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,0],[3,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,0],[2,0,4,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,0],[2,0,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,0],[2,0,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,0],[2,0,3,2],[1,2,3,0]],[[2,0,2,0],[2,3,3,0],[2,1,2,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,0],[2,1,2,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,0],[2,1,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[3,1,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[2,1,2,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,0],[2,1,2,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,0],[2,1,2,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,0],[2,1,2,1],[1,2,2,2]],[[2,0,2,0],[2,3,3,0],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,0],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,0],[2,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,0],[3,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,0],[2,1,2,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,0],[2,1,2,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,0],[2,1,2,2],[1,2,3,0]],[[2,0,2,0],[2,3,3,0],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[3,3,3,0],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,4,3,0],[2,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[3,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,0],[2,1,3,0],[2,2,2,1]],[[1,0,2,0],[2,3,3,0],[2,1,3,0],[1,3,2,1]],[[1,0,2,0],[2,3,3,0],[2,1,3,0],[1,2,3,1]],[[2,0,2,0],[2,3,3,0],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[3,3,3,0],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,4,3,0],[2,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,0],[3,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,0],[2,1,3,1],[2,2,1,1]],[[1,0,2,0],[2,3,3,0],[2,1,3,1],[1,3,1,1]],[[1,0,2,0],[2,3,3,0],[2,1,4,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,0],[2,1,3,2],[0,1,3,1]],[[1,0,2,0],[2,3,3,0],[2,1,3,2],[0,1,2,2]],[[1,0,2,0],[2,3,3,0],[2,1,4,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,0],[2,1,3,2],[1,0,3,1]],[[1,0,2,0],[2,3,3,0],[2,1,3,2],[1,0,2,2]],[[2,0,2,0],[2,3,3,0],[2,1,3,2],[1,2,0,1]],[[1,0,2,0],[3,3,3,0],[2,1,3,2],[1,2,0,1]],[[1,0,2,0],[2,4,3,0],[2,1,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,0],[3,1,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,0],[2,1,3,2],[2,2,0,1]],[[1,0,2,0],[2,3,3,0],[2,1,3,2],[1,3,0,1]],[[2,0,2,0],[2,3,3,0],[2,1,3,2],[1,2,1,0]],[[1,0,2,0],[3,3,3,0],[2,1,3,2],[1,2,1,0]],[[1,0,2,0],[2,4,3,0],[2,1,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,0],[3,1,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,0],[2,1,3,2],[2,2,1,0]],[[1,0,2,0],[2,3,3,0],[2,1,3,2],[1,3,1,0]],[[2,0,2,0],[2,3,3,0],[2,2,2,1],[0,2,2,1]],[[1,0,2,0],[3,3,3,0],[2,2,2,1],[0,2,2,1]],[[1,0,2,0],[2,4,3,0],[2,2,2,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,0],[3,2,2,1],[0,2,2,1]],[[2,0,2,0],[2,3,3,0],[2,2,2,1],[1,1,2,1]],[[1,0,2,0],[3,3,3,0],[2,2,2,1],[1,1,2,1]],[[1,0,2,0],[2,4,3,0],[2,2,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,0],[3,2,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,0],[2,2,2,1],[2,1,2,1]],[[2,0,2,0],[2,3,3,0],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[3,3,3,0],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,4,3,0],[2,2,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,0],[3,2,2,2],[0,2,2,0]],[[2,0,2,0],[2,3,3,0],[2,2,2,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,0],[2,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,0],[2,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,0],[3,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,0],[2,2,2,2],[2,1,2,0]],[[2,0,2,0],[2,3,3,0],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[3,3,3,0],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[2,4,3,0],[2,2,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,0],[3,2,3,0],[0,2,2,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,0],[1,1,2,1]],[[1,0,2,0],[3,3,3,0],[2,2,3,0],[1,1,2,1]],[[1,0,2,0],[2,4,3,0],[2,2,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,0],[3,2,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,0],[2,2,3,0],[2,1,2,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[3,3,3,0],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[2,4,3,0],[2,2,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,0],[3,2,3,1],[0,1,2,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[3,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,4,3,0],[2,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,0],[3,2,3,1],[0,2,1,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[3,3,3,0],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,4,3,0],[2,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,0],[3,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,0],[2,2,3,1],[2,0,2,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[3,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,4,3,0],[2,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,0],[3,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,0],[2,2,3,1],[2,1,1,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,1],[1,2,0,1]],[[1,0,2,0],[3,3,3,0],[2,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,4,3,0],[2,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,0],[3,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,0],[2,2,3,1],[2,2,0,1]],[[1,2,1,1],[3,2,3,0],[0,3,2,2],[1,2,1,0]],[[1,3,1,1],[2,2,3,0],[0,3,2,2],[1,2,1,0]],[[2,2,1,1],[2,2,3,0],[0,3,2,2],[1,2,1,0]],[[2,0,2,0],[2,3,3,0],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[3,3,3,0],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,0],[2,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,0],[3,2,3,2],[0,1,1,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[3,3,3,0],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,0],[2,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,0],[3,2,3,2],[0,1,2,0]],[[2,0,2,0],[2,3,3,0],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,0],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,0],[2,2,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,0],[3,2,3,2],[0,2,0,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,0],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,0],[2,2,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,0],[3,2,3,2],[0,2,1,0]],[[1,2,1,1],[3,2,3,0],[0,3,2,2],[1,2,0,1]],[[1,3,1,1],[2,2,3,0],[0,3,2,2],[1,2,0,1]],[[2,2,1,1],[2,2,3,0],[0,3,2,2],[1,2,0,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[3,3,3,0],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,4,3,0],[2,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,0],[3,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,0],[2,2,3,2],[2,0,1,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[3,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,4,3,0],[2,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,0],[3,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,0],[2,2,3,2],[2,0,2,0]],[[2,0,2,0],[2,3,3,0],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,0],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,0],[2,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,0],[3,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,0],[2,2,3,2],[2,1,0,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,0],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,0],[2,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,0],[3,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,0],[2,2,3,2],[2,1,1,0]],[[1,2,1,1],[3,2,3,0],[0,3,2,2],[1,1,2,0]],[[1,3,1,1],[2,2,3,0],[0,3,2,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,0],[0,3,2,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,0],[0,3,2,2],[1,1,1,1]],[[1,3,1,1],[2,2,3,0],[0,3,2,2],[1,1,1,1]],[[2,2,1,1],[2,2,3,0],[0,3,2,2],[1,1,1,1]],[[2,0,2,0],[2,3,3,0],[2,2,3,2],[1,2,0,0]],[[1,0,2,0],[3,3,3,0],[2,2,3,2],[1,2,0,0]],[[1,0,2,0],[2,4,3,0],[2,2,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,0],[3,2,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,0],[2,2,3,2],[2,2,0,0]],[[1,2,1,1],[3,2,3,0],[0,3,2,1],[1,2,1,1]],[[1,3,1,1],[2,2,3,0],[0,3,2,1],[1,2,1,1]],[[2,2,1,1],[2,2,3,0],[0,3,2,1],[1,2,1,1]],[[1,2,1,1],[3,2,3,0],[0,3,2,1],[1,1,2,1]],[[1,3,1,1],[2,2,3,0],[0,3,2,1],[1,1,2,1]],[[2,2,1,1],[2,2,3,0],[0,3,2,1],[1,1,2,1]],[[1,2,1,1],[3,2,3,0],[0,3,1,2],[1,2,2,0]],[[1,3,1,1],[2,2,3,0],[0,3,1,2],[1,2,2,0]],[[2,2,1,1],[2,2,3,0],[0,3,1,2],[1,2,2,0]],[[1,2,1,1],[3,2,3,0],[0,3,1,1],[1,2,2,1]],[[1,3,1,1],[2,2,3,0],[0,3,1,1],[1,2,2,1]],[[2,2,1,1],[2,2,3,0],[0,3,1,1],[1,2,2,1]],[[1,2,1,1],[3,2,3,0],[0,3,0,2],[1,2,2,1]],[[1,3,1,1],[2,2,3,0],[0,3,0,2],[1,2,2,1]],[[2,2,1,1],[2,2,3,0],[0,3,0,2],[1,2,2,1]],[[1,2,1,1],[3,2,3,0],[0,2,3,2],[1,2,1,0]],[[1,3,1,1],[2,2,3,0],[0,2,3,2],[1,2,1,0]],[[2,2,1,1],[2,2,3,0],[0,2,3,2],[1,2,1,0]],[[1,2,1,1],[3,2,3,0],[0,2,3,2],[1,2,0,1]],[[1,3,1,1],[2,2,3,0],[0,2,3,2],[1,2,0,1]],[[2,2,1,1],[2,2,3,0],[0,2,3,2],[1,2,0,1]],[[1,2,1,1],[3,2,3,0],[0,2,3,2],[1,1,2,0]],[[1,3,1,1],[2,2,3,0],[0,2,3,2],[1,1,2,0]],[[2,2,1,1],[2,2,3,0],[0,2,3,2],[1,1,2,0]],[[1,2,1,1],[3,2,3,0],[0,2,3,2],[1,1,1,1]],[[1,3,1,1],[2,2,3,0],[0,2,3,2],[1,1,1,1]],[[2,2,1,1],[2,2,3,0],[0,2,3,2],[1,1,1,1]],[[1,2,1,1],[3,2,3,0],[0,2,3,1],[1,2,1,1]],[[1,3,1,1],[2,2,3,0],[0,2,3,1],[1,2,1,1]],[[2,2,1,1],[2,2,3,0],[0,2,3,1],[1,2,1,1]],[[1,2,1,1],[3,2,3,0],[0,2,3,1],[1,1,2,1]],[[1,3,1,1],[2,2,3,0],[0,2,3,1],[1,1,2,1]],[[2,2,1,1],[2,2,3,0],[0,2,3,1],[1,1,2,1]],[[2,0,2,0],[2,3,3,0],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[3,3,3,0],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,4,3,0],[2,3,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,0],[3,3,3,1],[1,0,1,1]],[[1,2,1,1],[3,2,3,0],[0,1,3,2],[1,2,2,0]],[[1,3,1,1],[2,2,3,0],[0,1,3,2],[1,2,2,0]],[[2,2,1,1],[2,2,3,0],[0,1,3,2],[1,2,2,0]],[[1,2,1,1],[3,2,3,0],[0,1,3,2],[1,2,1,1]],[[1,3,1,1],[2,2,3,0],[0,1,3,2],[1,2,1,1]],[[2,2,1,1],[2,2,3,0],[0,1,3,2],[1,2,1,1]],[[1,2,1,1],[3,2,3,0],[0,1,3,1],[1,2,2,1]],[[1,3,1,1],[2,2,3,0],[0,1,3,1],[1,2,2,1]],[[2,2,1,1],[2,2,3,0],[0,1,3,1],[1,2,2,1]],[[2,0,2,0],[2,3,3,0],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[3,3,3,0],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,4,3,0],[2,3,3,2],[1,0,0,1]],[[1,0,2,0],[2,3,3,0],[3,3,3,2],[1,0,0,1]],[[2,0,2,0],[2,3,3,0],[2,3,3,2],[1,0,1,0]],[[1,0,2,0],[3,3,3,0],[2,3,3,2],[1,0,1,0]],[[1,0,2,0],[2,4,3,0],[2,3,3,2],[1,0,1,0]],[[1,0,2,0],[2,3,3,0],[3,3,3,2],[1,0,1,0]],[[1,0,2,0],[2,3,3,1],[0,0,3,3],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,0,3,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,1],[0,0,3,2],[1,2,2,2]],[[1,0,2,0],[2,3,3,1],[0,1,2,3],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,1,2,2],[2,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,1,2,2],[1,3,2,1]],[[1,0,2,0],[2,3,3,1],[0,1,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,1],[0,1,2,2],[1,2,2,2]],[[2,0,2,0],[2,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,0,3,0],[2,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,1],[0,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,4,1],[0,1,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,1,4,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,1,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,1,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,1],[0,1,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,1],[0,1,3,1],[1,2,2,2]],[[2,0,2,0],[2,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,0,3,0],[2,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,0,2,0],[3,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,4,3,1],[0,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,4,1],[0,1,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[0,1,4,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[0,1,3,3],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[0,1,3,2],[1,2,1,2]],[[2,0,2,0],[2,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,0,3,0],[2,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,1],[0,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,4,1],[0,1,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[0,1,4,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[0,1,3,3],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[0,1,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,1],[0,1,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,1],[0,1,3,2],[1,2,3,0]],[[1,0,2,0],[2,3,3,1],[0,2,2,3],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[0,2,2,2],[1,1,3,1]],[[1,0,2,0],[2,3,3,1],[0,2,2,2],[1,1,2,2]],[[2,0,2,0],[2,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,0,3,0],[2,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,0,2,0],[3,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,0,2,0],[2,4,3,1],[0,2,3,1],[1,1,2,1]],[[1,0,2,0],[2,3,4,1],[0,2,3,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[0,2,4,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[0,2,3,1],[1,1,3,1]],[[1,0,2,0],[2,3,3,1],[0,2,3,1],[1,1,2,2]],[[2,0,2,0],[2,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,0,3,0],[2,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,0,2,0],[3,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,4,3,1],[0,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,4,1],[0,2,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[0,2,4,1],[1,2,1,1]],[[1,0,3,0],[2,3,3,1],[0,2,3,2],[1,0,2,1]],[[1,0,2,0],[2,4,3,1],[0,2,3,2],[1,0,2,1]],[[1,0,2,0],[2,3,4,1],[0,2,3,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[0,2,4,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[0,2,3,3],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[0,2,3,2],[1,0,2,2]],[[2,0,2,0],[2,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,0,3,0],[2,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,0,2,0],[3,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,0,2,0],[2,4,3,1],[0,2,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,4,1],[0,2,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[0,2,4,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[0,2,3,3],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[0,2,3,2],[1,1,1,2]],[[2,0,2,0],[2,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,0,3,0],[2,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,1],[0,2,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,4,1],[0,2,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[0,2,4,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[0,2,3,3],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[0,2,3,2],[1,1,3,0]],[[2,0,2,0],[2,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,0,3,0],[2,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,0,2,0],[3,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,4,3,1],[0,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,4,1],[0,2,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[0,2,4,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[0,2,3,3],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[0,2,3,2],[1,2,0,2]],[[2,0,2,0],[2,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,0,3,0],[2,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,0,2,0],[3,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,4,3,1],[0,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,4,1],[0,2,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[0,2,4,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[0,2,3,3],[1,2,1,0]],[[2,0,2,0],[2,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,0,3,0],[2,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[3,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,4,3,1],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,4,1],[0,3,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,4,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,0,3],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,0,2],[2,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,0,2],[1,3,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,0,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,1],[0,3,0,2],[1,2,2,2]],[[2,0,2,0],[2,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,0,3,0],[2,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,1],[0,3,1,1],[1,2,2,1]],[[1,0,2,0],[2,3,4,1],[0,3,1,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,4,1,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,1,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,1,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,1,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,1],[0,3,1,1],[1,2,2,2]],[[2,0,2,0],[2,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,0,3,0],[2,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,1],[0,3,1,2],[1,2,2,0]],[[1,0,2,0],[2,3,4,1],[0,3,1,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[0,4,1,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[0,3,1,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,1],[0,3,1,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,1],[0,3,1,2],[1,2,3,0]],[[2,0,2,0],[2,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,0,3,0],[2,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,0,2,0],[3,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,4,3,1],[0,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,4,1],[0,3,2,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[0,4,2,1],[1,1,2,1]],[[2,0,2,0],[2,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,0,3,0],[2,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,0,2,0],[3,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,0,2,0],[2,4,3,1],[0,3,2,1],[1,2,1,1]],[[1,0,2,0],[2,3,4,1],[0,3,2,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[0,4,2,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[0,3,2,1],[2,2,1,1]],[[1,0,2,0],[2,3,3,1],[0,3,2,1],[1,3,1,1]],[[1,0,2,0],[2,3,3,1],[0,3,2,3],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,2,2],[0,1,3,1]],[[1,0,2,0],[2,3,3,1],[0,3,2,2],[0,1,2,2]],[[2,0,2,0],[2,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,0,3,0],[2,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,0,2,0],[3,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,0,2,0],[2,4,3,1],[0,3,2,2],[1,1,1,1]],[[1,0,2,0],[2,3,4,1],[0,3,2,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[0,4,2,2],[1,1,1,1]],[[2,0,2,0],[2,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,0,3,0],[2,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,1],[0,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,4,1],[0,3,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[0,4,2,2],[1,1,2,0]],[[2,0,2,0],[2,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,0,3,0],[2,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,0,2,0],[3,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,0,2,0],[2,4,3,1],[0,3,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,4,1],[0,3,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[0,4,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[0,3,2,2],[2,2,0,1]],[[1,0,2,0],[2,3,3,1],[0,3,2,2],[1,3,0,1]],[[2,0,2,0],[2,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,0,3,0],[2,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,0,2,0],[3,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,0,2,0],[2,4,3,1],[0,3,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,4,1],[0,3,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[0,4,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[0,3,2,2],[2,2,1,0]],[[1,0,2,0],[2,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,0,3,0],[2,3,3,1],[0,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,4,3,1],[0,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,4,1],[0,3,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,4,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,3,1],[0,1,3,1]],[[1,0,2,0],[2,3,3,1],[0,3,3,1],[0,1,2,2]],[[1,0,3,0],[2,3,3,1],[0,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,4,3,1],[0,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,4,1],[0,3,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,0,3,0],[2,3,3,1],[0,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,4,3,1],[0,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,4,1],[0,3,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,4,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,3,3],[0,0,2,1]],[[1,0,2,0],[2,3,3,1],[0,3,3,2],[0,0,2,2]],[[1,0,3,0],[2,3,3,1],[0,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,1],[0,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,1],[0,3,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[0,3,4,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[0,3,3,3],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[0,3,3,2],[0,1,1,2]],[[1,0,3,0],[2,3,3,1],[0,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,1],[0,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,1],[0,3,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[0,3,4,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[0,3,3,3],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[0,3,3,2],[0,1,3,0]],[[1,0,3,0],[2,3,3,1],[0,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,1],[0,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,4,1],[0,3,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[0,3,4,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[0,3,3,3],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[0,3,3,2],[0,2,0,2]],[[1,0,3,0],[2,3,3,1],[0,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,1],[0,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,4,1],[0,3,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,1],[0,3,4,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,1],[0,3,3,3],[0,2,1,0]],[[2,0,2,0],[2,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,0,3,0],[2,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,0,2,0],[3,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,4,3,1],[0,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,4,1],[0,3,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,1],[1,0,2,3],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,0,2,2],[2,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,0,2,2],[1,3,2,1]],[[1,0,2,0],[2,3,3,1],[1,0,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,1],[1,0,2,2],[1,2,2,2]],[[2,0,2,0],[2,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,0,3,0],[2,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,1],[1,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,4,1],[1,0,3,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,0,4,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,0,3,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,0,3,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,1],[1,0,3,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,1],[1,0,3,1],[1,2,2,2]],[[1,0,2,0],[2,3,3,1],[1,0,3,3],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,0,3,2],[0,2,3,1]],[[1,0,2,0],[2,3,3,1],[1,0,3,2],[0,2,2,2]],[[2,0,2,0],[2,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,0,3,0],[2,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,0,2,0],[3,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,0,2,0],[2,4,3,1],[1,0,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,4,1],[1,0,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[1,0,4,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[1,0,3,3],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[1,0,3,2],[1,2,1,2]],[[2,0,2,0],[2,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,0,3,0],[2,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,1],[1,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,4,1],[1,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[1,0,4,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[1,0,3,3],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[1,0,3,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,1],[1,0,3,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,1],[1,0,3,2],[1,2,3,0]],[[1,0,2,0],[2,3,3,1],[1,1,2,3],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,1,2,2],[0,3,2,1]],[[1,0,2,0],[2,3,3,1],[1,1,2,2],[0,2,3,1]],[[1,0,2,0],[2,3,3,1],[1,1,2,2],[0,2,2,2]],[[2,0,2,0],[2,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,0,3,0],[2,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,0,2,0],[3,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,0,2,0],[2,4,3,1],[1,1,3,1],[0,2,2,1]],[[1,0,2,0],[2,3,4,1],[1,1,3,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,1,4,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,1,3,1],[0,3,2,1]],[[1,0,2,0],[2,3,3,1],[1,1,3,1],[0,2,3,1]],[[1,0,2,0],[2,3,3,1],[1,1,3,1],[0,2,2,2]],[[2,0,2,0],[2,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,0,3,0],[2,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,0,2,0],[3,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,0,2,0],[2,4,3,1],[1,1,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,4,1],[1,1,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[1,1,4,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[1,1,3,3],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[1,1,3,2],[0,2,1,2]],[[2,0,2,0],[2,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,0,3,0],[2,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,0,2,0],[3,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,0,2,0],[2,4,3,1],[1,1,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,4,1],[1,1,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,1],[1,1,4,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,1],[1,1,3,3],[0,2,2,0]],[[1,0,2,0],[2,3,3,1],[1,1,3,2],[0,3,2,0]],[[1,0,2,0],[2,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,0,2,0],[2,3,3,1],[1,2,2,3],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[1,2,2,2],[0,1,3,1]],[[1,0,2,0],[2,3,3,1],[1,2,2,2],[0,1,2,2]],[[1,0,2,0],[2,3,3,1],[1,2,2,3],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[1,2,2,2],[1,0,3,1]],[[1,0,2,0],[2,3,3,1],[1,2,2,2],[1,0,2,2]],[[2,0,2,0],[2,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,0,3,0],[2,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,0,2,0],[3,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,0,2,0],[2,4,3,1],[1,2,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,4,1],[1,2,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[1,2,4,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,1],[0,1,3,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,1],[0,1,2,2]],[[2,0,2,0],[2,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,0,3,0],[2,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,0,2,0],[3,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,4,3,1],[1,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,4,1],[1,2,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[1,2,4,1],[0,2,1,1]],[[2,0,2,0],[2,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,0,3,0],[2,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,0,2,0],[3,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,4,3,1],[1,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,4,1],[1,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[1,2,4,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,1],[1,0,3,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,1],[1,0,2,2]],[[2,0,2,0],[2,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,0,3,0],[2,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,0,2,0],[3,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,4,3,1],[1,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,4,1],[1,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[1,2,4,1],[1,1,1,1]],[[2,0,2,0],[2,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,0,3,0],[2,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,0,2,0],[3,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,0,2,0],[2,4,3,1],[1,2,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,4,1],[1,2,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,1],[1,2,4,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,3],[0,0,2,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,2],[0,0,2,2]],[[2,0,2,0],[2,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,0,3,0],[2,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,0,2,0],[3,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,1],[1,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,1],[1,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[1,2,4,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,3],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,2],[0,1,1,2]],[[2,0,2,0],[2,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,0,3,0],[2,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,0,2,0],[3,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,1],[1,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,1],[1,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[1,2,4,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[1,2,3,3],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[1,2,3,2],[0,1,3,0]],[[2,0,2,0],[2,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,0,3,0],[2,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,1],[1,2,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,4,1],[1,2,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[1,2,4,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,3],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,2],[0,2,0,2]],[[2,0,2,0],[2,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,0,3,0],[2,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,1],[1,2,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,4,1],[1,2,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,1],[1,2,4,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,1],[1,2,3,3],[0,2,1,0]],[[2,0,2,0],[2,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,0,3,0],[2,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,0,2,0],[3,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,4,3,1],[1,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,4,1],[1,2,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,1],[1,2,4,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,3],[1,0,1,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,2],[1,0,1,2]],[[2,0,2,0],[2,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,0,3,0],[2,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,0,2,0],[3,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,4,3,1],[1,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,4,1],[1,2,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,1],[1,2,4,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,1],[1,2,3,3],[1,0,2,0]],[[1,0,2,0],[2,3,3,1],[1,2,3,2],[1,0,3,0]],[[2,0,2,0],[2,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,0,3,0],[2,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,1],[1,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,4,1],[1,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[1,2,4,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,3],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[1,2,3,2],[1,1,0,2]],[[2,0,2,0],[2,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,0,3,0],[2,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,1],[1,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,4,1],[1,2,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,1],[1,2,4,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,1],[1,2,3,3],[1,1,1,0]],[[2,0,2,0],[2,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,0,3,0],[2,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,0,2,0],[3,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,4,3,1],[1,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,4,1],[1,3,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,4,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,3,0,3],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,3,0,2],[0,3,2,1]],[[1,0,2,0],[2,3,3,1],[1,3,0,2],[0,2,3,1]],[[1,0,2,0],[2,3,3,1],[1,3,0,2],[0,2,2,2]],[[2,0,2,0],[2,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,0,3,0],[2,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,0,2,0],[3,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,4,3,1],[1,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,4,1],[1,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[1,4,0,2],[1,1,2,1]],[[2,0,2,0],[2,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,0,3,0],[2,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,0,2,0],[3,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,0,2,0],[2,4,3,1],[1,3,1,1],[0,2,2,1]],[[1,0,2,0],[2,3,4,1],[1,3,1,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,4,1,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[1,3,1,1],[0,3,2,1]],[[1,0,2,0],[2,3,3,1],[1,3,1,1],[0,2,3,1]],[[1,0,2,0],[2,3,3,1],[1,3,1,1],[0,2,2,2]],[[2,0,2,0],[2,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,0,3,0],[2,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,0,2,0],[3,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,0,2,0],[2,4,3,1],[1,3,1,1],[1,1,2,1]],[[1,0,2,0],[2,3,4,1],[1,3,1,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[1,4,1,1],[1,1,2,1]],[[2,0,2,0],[2,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,0,3,0],[2,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,0,2,0],[3,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,0,2,0],[2,4,3,1],[1,3,1,2],[0,2,2,0]],[[1,0,2,0],[2,3,4,1],[1,3,1,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,1],[1,4,1,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,1],[1,3,1,2],[0,3,2,0]],[[1,0,2,0],[2,3,3,1],[1,3,1,2],[0,2,3,0]],[[2,0,2,0],[2,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,0,3,0],[2,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,1],[1,3,1,2],[1,1,2,0]],[[1,0,2,0],[2,3,4,1],[1,3,1,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[1,4,1,2],[1,1,2,0]],[[2,0,2,0],[2,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,0,3,0],[2,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,0,2,0],[3,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,0,2,0],[2,4,3,1],[1,3,2,1],[0,1,2,1]],[[1,0,2,0],[2,3,4,1],[1,3,2,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[1,4,2,1],[0,1,2,1]],[[2,0,2,0],[2,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,0,3,0],[2,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,0,2,0],[3,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,0,2,0],[2,4,3,1],[1,3,2,1],[0,2,1,1]],[[1,0,2,0],[2,3,4,1],[1,3,2,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[1,4,2,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[1,3,2,1],[0,3,1,1]],[[2,0,2,0],[2,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,0,3,0],[2,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,0,2,0],[3,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,0,2,0],[2,4,3,1],[1,3,2,1],[1,0,2,1]],[[1,0,2,0],[2,3,4,1],[1,3,2,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[1,4,2,1],[1,0,2,1]],[[2,0,2,0],[2,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,0,3,0],[2,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,0,2,0],[3,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,0,2,0],[2,4,3,1],[1,3,2,1],[1,1,1,1]],[[1,0,2,0],[2,3,4,1],[1,3,2,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[1,4,2,1],[1,1,1,1]],[[2,0,2,0],[2,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,0,2,0],[3,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,0,2,0],[2,4,3,1],[1,3,2,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[1,4,2,1],[1,2,0,1]],[[2,0,2,0],[2,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,0,3,0],[2,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,0,2,0],[3,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,1],[1,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,1],[1,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[1,4,2,2],[0,1,1,1]],[[2,0,2,0],[2,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,0,3,0],[2,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,0,2,0],[3,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,1],[1,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,1],[1,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[1,4,2,2],[0,1,2,0]],[[2,0,2,0],[2,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,0,3,0],[2,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,1],[1,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,4,1],[1,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[1,4,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[1,3,2,2],[0,3,0,1]],[[2,0,2,0],[2,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,0,3,0],[2,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,1],[1,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,4,1],[1,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,1],[1,4,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,1],[1,3,2,2],[0,3,1,0]],[[2,0,2,0],[2,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,0,3,0],[2,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,0,2,0],[3,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,0,2,0],[2,4,3,1],[1,3,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,4,1],[1,3,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,1],[1,4,2,2],[1,0,1,1]],[[2,0,2,0],[2,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,0,3,0],[2,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,0,2,0],[3,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,0,2,0],[2,4,3,1],[1,3,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,4,1],[1,3,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,1],[1,4,2,2],[1,0,2,0]],[[2,0,2,0],[2,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,0,3,0],[2,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,1],[1,3,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,4,1],[1,3,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[1,4,2,2],[1,1,0,1]],[[2,0,2,0],[2,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,0,3,0],[2,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,1],[1,3,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,4,1],[1,3,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,1],[1,4,2,2],[1,1,1,0]],[[2,0,2,0],[2,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,0,3,0],[2,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,0,2,0],[3,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,0,2,0],[2,4,3,1],[1,3,2,2],[1,2,0,0]],[[1,0,2,0],[2,3,4,1],[1,3,2,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,1],[1,4,2,2],[1,2,0,0]],[[2,0,2,0],[2,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,0,3,0],[2,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,0,2,0],[3,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,4,3,1],[1,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,3,4,1],[1,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,3,3,1],[1,3,4,1],[0,0,2,1]],[[2,0,2,0],[2,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,0,3,0],[2,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,0,2,0],[3,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,0,2,0],[2,4,3,1],[1,3,3,2],[0,0,1,1]],[[1,0,2,0],[2,3,4,1],[1,3,3,2],[0,0,1,1]],[[1,0,2,0],[2,3,3,1],[1,3,4,2],[0,0,1,1]],[[1,0,2,0],[2,3,3,1],[1,3,3,3],[0,0,1,1]],[[1,0,2,0],[2,3,3,1],[1,3,3,2],[0,0,1,2]],[[2,0,2,0],[2,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,0,3,0],[2,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,0,2,0],[3,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,0,2,0],[2,4,3,1],[1,3,3,2],[0,0,2,0]],[[1,0,2,0],[2,3,4,1],[1,3,3,2],[0,0,2,0]],[[1,0,2,0],[2,3,3,1],[1,3,4,2],[0,0,2,0]],[[1,0,2,0],[2,3,3,1],[1,3,3,3],[0,0,2,0]],[[2,0,2,0],[2,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,0,3,0],[2,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,0,2,0],[3,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,0,2,0],[2,4,3,1],[1,3,3,2],[0,2,0,0]],[[1,0,2,0],[2,3,4,1],[1,3,3,2],[0,2,0,0]],[[1,0,2,0],[2,3,3,1],[1,4,3,2],[0,2,0,0]],[[2,0,2,0],[2,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,0,3,0],[2,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,0,2,0],[3,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,0,2,0],[2,4,3,1],[1,3,3,2],[1,1,0,0]],[[1,0,2,0],[2,3,4,1],[1,3,3,2],[1,1,0,0]],[[1,0,2,0],[2,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,1,1],[2,2,2,2],[0,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,2,2,2],[0,3,4,2],[0,0,2,0]],[[1,2,1,1],[2,2,2,3],[0,3,3,2],[0,0,2,0]],[[1,2,1,2],[2,2,2,2],[0,3,3,2],[0,0,2,0]],[[1,2,1,1],[2,2,2,2],[0,3,3,2],[0,0,1,2]],[[1,2,1,1],[2,2,2,2],[0,3,3,3],[0,0,1,1]],[[1,2,1,1],[2,2,2,2],[0,3,4,2],[0,0,1,1]],[[1,2,1,1],[2,2,2,3],[0,3,3,2],[0,0,1,1]],[[1,2,1,2],[2,2,2,2],[0,3,3,2],[0,0,1,1]],[[2,0,2,0],[2,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,3,0],[2,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[3,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,4,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,4,1],[2,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[3,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,1,3],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,1,2],[2,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,1,2],[1,3,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,1,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,1],[2,0,1,2],[1,2,2,2]],[[2,0,2,0],[2,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,0,3,0],[2,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,1],[2,0,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,4,1],[2,0,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[3,0,2,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,2,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,2,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,2,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,1],[2,0,2,1],[1,2,2,2]],[[1,0,2,0],[2,3,3,1],[2,0,2,3],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,2,2],[0,3,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,2,2],[0,2,3,1]],[[1,0,2,0],[2,3,3,1],[2,0,2,2],[0,2,2,2]],[[1,0,2,0],[2,3,3,1],[2,0,2,3],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,2,2],[1,1,3,1]],[[1,0,2,0],[2,3,3,1],[2,0,2,2],[1,1,2,2]],[[2,0,2,0],[2,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,3,0],[2,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,4,1],[2,0,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[3,0,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[2,0,2,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,1],[2,0,2,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,1],[2,0,2,2],[1,2,3,0]],[[2,0,2,0],[2,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,0,3,0],[2,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,0,2,0],[3,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,0,2,0],[2,4,3,1],[2,0,3,1],[0,2,2,1]],[[1,0,2,0],[2,3,4,1],[2,0,3,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[3,0,3,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,4,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,1],[0,3,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,1],[0,2,3,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,1],[0,2,2,2]],[[2,0,2,0],[2,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,0,3,0],[2,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,0,2,0],[3,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,0,2,0],[2,4,3,1],[2,0,3,1],[1,1,2,1]],[[1,0,2,0],[2,3,4,1],[2,0,3,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[3,0,3,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,4,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,1],[2,1,2,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,1],[1,1,3,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,1],[1,1,2,2]],[[2,0,2,0],[2,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,3,0],[2,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,2,0],[3,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,2,0],[2,4,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,4,1],[2,0,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[3,0,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[2,0,4,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,1],[2,2,1,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,1],[1,3,1,1]],[[2,0,2,0],[2,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,0,3,0],[2,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,0,2,0],[3,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,0,2,0],[2,4,3,1],[2,0,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,4,1],[2,0,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[3,0,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[2,0,4,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,3],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[0,2,1,2]],[[2,0,2,0],[2,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,0,3,0],[2,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,0,2,0],[3,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,0,2,0],[2,4,3,1],[2,0,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,4,1],[2,0,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,1],[3,0,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,1],[2,0,4,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,1],[2,0,3,3],[0,2,2,0]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[0,3,2,0]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[0,2,3,0]],[[2,0,2,0],[2,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,0,3,0],[2,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,0,2,0],[3,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,0,2,0],[2,4,3,1],[2,0,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,4,1],[2,0,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[3,0,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[2,0,4,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,3],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[2,1,1,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[1,1,1,2]],[[2,0,2,0],[2,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,0,3,0],[2,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,1],[2,0,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,4,1],[2,0,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[3,0,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[2,0,4,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[2,0,3,3],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[2,1,2,0]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[1,1,3,0]],[[2,0,2,0],[2,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,0,3,0],[2,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,0,2,0],[3,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,0,2,0],[2,4,3,1],[2,0,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,4,1],[2,0,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[3,0,3,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[2,0,4,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,3],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[2,2,0,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[1,3,0,1]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[1,2,0,2]],[[2,0,2,0],[2,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,0,3,0],[2,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,0,2,0],[3,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,0,2,0],[2,4,3,1],[2,0,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,4,1],[2,0,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[3,0,3,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[2,0,4,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[2,0,3,3],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[2,2,1,0]],[[1,0,2,0],[2,3,3,1],[2,0,3,2],[1,3,1,0]],[[2,0,2,0],[2,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,3,0],[2,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[3,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,4,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,4,1],[2,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[3,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,0,3],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,0,2],[2,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,0,2],[1,3,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,0,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,1],[2,1,0,2],[1,2,2,2]],[[2,0,2,0],[2,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,0,3,0],[2,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,1],[2,1,1,1],[1,2,2,1]],[[1,0,2,0],[2,3,4,1],[2,1,1,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[3,1,1,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,1,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,1,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,1,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,1],[2,1,1,1],[1,2,2,2]],[[2,0,2,0],[2,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,0,3,0],[2,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,1],[2,1,1,2],[1,2,2,0]],[[1,0,2,0],[2,3,4,1],[2,1,1,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[3,1,1,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[2,1,1,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,1],[2,1,1,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,1],[2,1,1,2],[1,2,3,0]],[[2,0,2,0],[2,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,0,3,0],[2,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,0,2,0],[3,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,0,2,0],[2,4,3,1],[2,1,2,1],[1,2,1,1]],[[1,0,2,0],[2,3,4,1],[2,1,2,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[3,1,2,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,2,1],[2,2,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,2,1],[1,3,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,2,3],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,2,2],[0,1,3,1]],[[1,0,2,0],[2,3,3,1],[2,1,2,2],[0,1,2,2]],[[1,0,2,0],[2,3,3,1],[2,1,2,3],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,2,2],[1,0,3,1]],[[1,0,2,0],[2,3,3,1],[2,1,2,2],[1,0,2,2]],[[2,0,2,0],[2,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,0,3,0],[2,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,0,2,0],[3,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,0,2,0],[2,4,3,1],[2,1,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,4,1],[2,1,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[3,1,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[2,1,2,2],[2,2,0,1]],[[1,0,2,0],[2,3,3,1],[2,1,2,2],[1,3,0,1]],[[2,0,2,0],[2,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,0,3,0],[2,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,0,2,0],[3,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,0,2,0],[2,4,3,1],[2,1,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,4,1],[2,1,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[3,1,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[2,1,2,2],[2,2,1,0]],[[1,0,2,0],[2,3,3,1],[2,1,2,2],[1,3,1,0]],[[2,0,2,0],[2,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,0,3,0],[2,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,0,2,0],[3,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,0,2,0],[2,4,3,1],[2,1,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,4,1],[2,1,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[3,1,3,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,4,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,1],[0,1,3,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,1],[0,1,2,2]],[[2,0,2,0],[2,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,0,3,0],[2,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,0,2,0],[3,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,0,2,0],[2,4,3,1],[2,1,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,4,1],[2,1,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[3,1,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,4,1],[0,2,1,1]],[[2,0,2,0],[2,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,0,3,0],[2,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,0,2,0],[3,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,0,2,0],[2,4,3,1],[2,1,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,4,1],[2,1,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[3,1,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,4,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,1],[2,0,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,1],[1,0,3,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,1],[1,0,2,2]],[[2,0,2,0],[2,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,0,3,0],[2,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,0,2,0],[3,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,0,2,0],[2,4,3,1],[2,1,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,4,1],[2,1,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[3,1,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,4,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,1],[2,1,1,1]],[[1,2,1,1],[2,2,2,2],[0,2,3,3],[1,0,2,0]],[[1,2,1,1],[2,2,2,2],[0,2,4,2],[1,0,2,0]],[[1,2,1,1],[2,2,2,3],[0,2,3,2],[1,0,2,0]],[[1,2,1,2],[2,2,2,2],[0,2,3,2],[1,0,2,0]],[[2,0,2,0],[2,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,0,3,0],[2,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,0,2,0],[3,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,0,2,0],[2,4,3,1],[2,1,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,4,1],[2,1,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,4,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,3],[0,0,2,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,2],[0,0,2,2]],[[2,0,2,0],[2,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,0,3,0],[2,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,0,2,0],[3,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,1],[2,1,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,1],[2,1,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[3,1,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,4,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,3],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,2],[0,1,1,2]],[[2,0,2,0],[2,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,0,3,0],[2,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,0,2,0],[3,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,1],[2,1,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,1],[2,1,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[3,1,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[2,1,4,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[2,1,3,3],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[2,1,3,2],[0,1,3,0]],[[2,0,2,0],[2,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,0,3,0],[2,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,1],[2,1,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,4,1],[2,1,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[3,1,3,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[2,1,4,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,3],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,2],[0,2,0,2]],[[2,0,2,0],[2,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,0,3,0],[2,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,1],[2,1,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,4,1],[2,1,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,1],[3,1,3,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,1],[2,1,4,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,1],[2,1,3,3],[0,2,1,0]],[[1,2,1,1],[2,2,2,2],[0,2,3,2],[1,0,1,2]],[[1,2,1,1],[2,2,2,2],[0,2,3,3],[1,0,1,1]],[[1,2,1,1],[2,2,2,2],[0,2,4,2],[1,0,1,1]],[[1,2,1,1],[2,2,2,3],[0,2,3,2],[1,0,1,1]],[[1,2,1,2],[2,2,2,2],[0,2,3,2],[1,0,1,1]],[[2,0,2,0],[2,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,0,3,0],[2,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,0,2,0],[3,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,0,2,0],[2,4,3,1],[2,1,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,4,1],[2,1,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,1],[3,1,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,4,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,3],[1,0,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,2],[2,0,1,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,2],[1,0,1,2]],[[2,0,2,0],[2,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,0,3,0],[2,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,0,2,0],[3,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,0,2,0],[2,4,3,1],[2,1,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,4,1],[2,1,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,1],[3,1,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,1],[2,1,4,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,1],[2,1,3,3],[1,0,2,0]],[[1,0,2,0],[2,3,3,1],[2,1,3,2],[2,0,2,0]],[[1,0,2,0],[2,3,3,1],[2,1,3,2],[1,0,3,0]],[[2,0,2,0],[2,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,0,3,0],[2,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,1],[2,1,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,4,1],[2,1,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[3,1,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[2,1,4,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,3],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,2],[2,1,0,1]],[[1,0,2,0],[2,3,3,1],[2,1,3,2],[1,1,0,2]],[[2,0,2,0],[2,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,0,3,0],[2,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,1],[2,1,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,4,1],[2,1,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,1],[3,1,3,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,1],[2,1,4,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,1],[2,1,3,3],[1,1,1,0]],[[1,0,2,0],[2,3,3,1],[2,1,3,2],[2,1,1,0]],[[1,2,1,1],[2,2,2,2],[0,2,3,3],[0,2,1,0]],[[1,2,1,1],[2,2,2,2],[0,2,4,2],[0,2,1,0]],[[1,2,1,1],[2,2,2,3],[0,2,3,2],[0,2,1,0]],[[1,2,1,2],[2,2,2,2],[0,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,2,2,2],[0,2,3,2],[0,2,0,2]],[[1,2,1,1],[2,2,2,2],[0,2,3,3],[0,2,0,1]],[[1,2,1,1],[2,2,2,2],[0,2,4,2],[0,2,0,1]],[[1,2,1,1],[2,2,2,3],[0,2,3,2],[0,2,0,1]],[[1,2,1,2],[2,2,2,2],[0,2,3,2],[0,2,0,1]],[[1,2,1,1],[2,2,2,2],[0,2,3,2],[0,1,3,0]],[[1,2,1,1],[2,2,2,2],[0,2,3,3],[0,1,2,0]],[[1,2,1,1],[2,2,2,2],[0,2,4,2],[0,1,2,0]],[[1,2,1,1],[2,2,2,3],[0,2,3,2],[0,1,2,0]],[[1,2,1,2],[2,2,2,2],[0,2,3,2],[0,1,2,0]],[[1,2,1,1],[2,2,2,2],[0,2,3,2],[0,1,1,2]],[[1,2,1,1],[2,2,2,2],[0,2,3,3],[0,1,1,1]],[[1,2,1,1],[2,2,2,2],[0,2,4,2],[0,1,1,1]],[[1,2,1,1],[2,2,2,3],[0,2,3,2],[0,1,1,1]],[[1,2,1,2],[2,2,2,2],[0,2,3,2],[0,1,1,1]],[[1,2,1,1],[2,2,2,2],[0,2,3,2],[0,0,2,2]],[[1,2,1,1],[2,2,2,2],[0,2,3,3],[0,0,2,1]],[[1,2,1,1],[2,2,2,2],[0,2,4,2],[0,0,2,1]],[[1,2,1,1],[2,2,2,3],[0,2,3,2],[0,0,2,1]],[[1,2,1,2],[2,2,2,2],[0,2,3,2],[0,0,2,1]],[[1,2,1,1],[2,2,2,2],[0,2,3,1],[0,1,2,2]],[[1,2,1,1],[2,2,2,2],[0,2,3,1],[0,1,3,1]],[[1,2,1,1],[2,2,2,2],[0,2,4,1],[0,1,2,1]],[[2,0,2,0],[2,3,3,1],[2,2,0,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,1],[2,2,0,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,1],[2,2,0,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[3,2,0,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,2,0,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,1],[2,2,0,1],[1,3,2,1]],[[2,0,2,0],[2,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,0,3,0],[2,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,0,2,0],[3,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,0,2,0],[2,4,3,1],[2,2,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,4,1],[2,2,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[3,2,0,2],[0,2,2,1]],[[2,0,2,0],[2,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,0,3,0],[2,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,0,2,0],[3,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,0,2,0],[2,4,3,1],[2,2,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,4,1],[2,2,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[3,2,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[2,2,0,2],[2,1,2,1]],[[2,0,2,0],[2,3,3,1],[2,2,0,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,1],[2,2,0,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,1],[2,2,0,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[3,2,0,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,1],[2,2,0,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,1],[2,2,0,2],[1,3,2,0]],[[2,0,2,0],[2,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,0,3,0],[2,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,0,2,0],[3,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,0,2,0],[2,4,3,1],[2,2,1,1],[0,2,2,1]],[[1,0,2,0],[2,3,4,1],[2,2,1,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[3,2,1,1],[0,2,2,1]],[[2,0,2,0],[2,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,0,3,0],[2,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,0,2,0],[3,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,0,2,0],[2,4,3,1],[2,2,1,1],[1,1,2,1]],[[1,0,2,0],[2,3,4,1],[2,2,1,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[3,2,1,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[2,2,1,1],[2,1,2,1]],[[2,0,2,0],[2,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,0,3,0],[2,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,0,2,0],[3,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,0,2,0],[2,4,3,1],[2,2,1,2],[0,2,2,0]],[[1,0,2,0],[2,3,4,1],[2,2,1,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,1],[3,2,1,2],[0,2,2,0]],[[2,0,2,0],[2,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,0,3,0],[2,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,1],[2,2,1,2],[1,1,2,0]],[[1,0,2,0],[2,3,4,1],[2,2,1,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[3,2,1,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[2,2,1,2],[2,1,2,0]],[[1,2,1,1],[2,2,2,2],[0,2,2,2],[0,1,2,2]],[[1,2,1,1],[2,2,2,2],[0,2,2,2],[0,1,3,1]],[[1,2,1,1],[2,2,2,2],[0,2,2,3],[0,1,2,1]],[[2,0,2,0],[2,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,0,3,0],[2,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,0,2,0],[3,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,0,2,0],[2,4,3,1],[2,2,2,1],[0,1,2,1]],[[1,0,2,0],[2,3,4,1],[2,2,2,1],[0,1,2,1]],[[1,0,2,0],[2,3,3,1],[3,2,2,1],[0,1,2,1]],[[2,0,2,0],[2,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,0,3,0],[2,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,0,2,0],[3,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,0,2,0],[2,4,3,1],[2,2,2,1],[0,2,1,1]],[[1,0,2,0],[2,3,4,1],[2,2,2,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[3,2,2,1],[0,2,1,1]],[[2,0,2,0],[2,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,0,3,0],[2,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,0,2,0],[3,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,0,2,0],[2,4,3,1],[2,2,2,1],[1,0,2,1]],[[1,0,2,0],[2,3,4,1],[2,2,2,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[3,2,2,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,1],[2,2,2,1],[2,0,2,1]],[[2,0,2,0],[2,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,0,3,0],[2,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,0,2,0],[3,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,0,2,0],[2,4,3,1],[2,2,2,1],[1,1,1,1]],[[1,0,2,0],[2,3,4,1],[2,2,2,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[3,2,2,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[2,2,2,1],[2,1,1,1]],[[2,0,2,0],[2,3,3,1],[2,2,2,1],[1,2,0,1]],[[1,0,2,0],[3,3,3,1],[2,2,2,1],[1,2,0,1]],[[1,0,2,0],[2,4,3,1],[2,2,2,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[3,2,2,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[2,2,2,1],[2,2,0,1]],[[1,2,1,1],[2,2,2,3],[0,2,2,2],[0,1,2,1]],[[1,2,1,2],[2,2,2,2],[0,2,2,2],[0,1,2,1]],[[2,0,2,0],[2,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,0,3,0],[2,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,0,2,0],[3,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,1],[2,2,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,1],[2,2,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,1],[3,2,2,2],[0,1,1,1]],[[2,0,2,0],[2,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,0,3,0],[2,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,0,2,0],[3,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,1],[2,2,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,1],[2,2,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,1],[3,2,2,2],[0,1,2,0]],[[2,0,2,0],[2,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,0,3,0],[2,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,1],[2,2,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,4,1],[2,2,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[3,2,2,2],[0,2,0,1]],[[2,0,2,0],[2,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,0,3,0],[2,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,1],[2,2,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,4,1],[2,2,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,1],[3,2,2,2],[0,2,1,0]],[[2,0,2,0],[2,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,0,3,0],[2,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,0,2,0],[3,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,0,2,0],[2,4,3,1],[2,2,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,4,1],[2,2,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,1],[3,2,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,1],[2,2,2,2],[2,0,1,1]],[[2,0,2,0],[2,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,0,3,0],[2,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,0,2,0],[3,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,0,2,0],[2,4,3,1],[2,2,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,4,1],[2,2,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,1],[3,2,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,1],[2,2,2,2],[2,0,2,0]],[[2,0,2,0],[2,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,0,3,0],[2,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,1],[2,2,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,4,1],[2,2,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[3,2,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[2,2,2,2],[2,1,0,1]],[[2,0,2,0],[2,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,0,3,0],[2,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,1],[2,2,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,1],[3,2,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,1],[2,2,2,2],[2,1,1,0]],[[1,2,1,1],[2,2,2,2],[0,1,3,2],[0,2,3,0]],[[1,2,1,1],[2,2,2,2],[0,1,3,3],[0,2,2,0]],[[1,2,1,1],[2,2,2,2],[0,1,4,2],[0,2,2,0]],[[1,2,1,1],[2,2,2,3],[0,1,3,2],[0,2,2,0]],[[1,2,1,2],[2,2,2,2],[0,1,3,2],[0,2,2,0]],[[1,2,1,1],[2,2,2,2],[0,1,3,2],[0,2,1,2]],[[1,2,1,1],[2,2,2,2],[0,1,3,3],[0,2,1,1]],[[1,2,1,1],[2,2,2,2],[0,1,4,2],[0,2,1,1]],[[1,2,1,1],[2,2,2,3],[0,1,3,2],[0,2,1,1]],[[1,2,1,2],[2,2,2,2],[0,1,3,2],[0,2,1,1]],[[2,0,2,0],[2,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,0,3,0],[2,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,0,2,0],[3,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,0,2,0],[2,4,3,1],[2,2,2,2],[1,2,0,0]],[[1,0,2,0],[2,3,4,1],[2,2,2,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,1],[3,2,2,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,1],[2,2,2,2],[2,2,0,0]],[[1,2,1,1],[2,2,2,2],[0,1,3,1],[0,2,2,2]],[[1,2,1,1],[2,2,2,2],[0,1,3,1],[0,2,3,1]],[[1,2,1,1],[2,2,2,2],[0,1,4,1],[0,2,2,1]],[[1,2,1,1],[2,2,2,2],[0,1,2,2],[0,2,2,2]],[[1,2,1,1],[2,2,2,2],[0,1,2,2],[0,2,3,1]],[[1,2,1,1],[2,2,2,2],[0,1,2,3],[0,2,2,1]],[[1,2,1,1],[2,2,2,3],[0,1,2,2],[0,2,2,1]],[[1,2,1,2],[2,2,2,2],[0,1,2,2],[0,2,2,1]],[[1,2,1,1],[2,2,2,2],[0,0,3,2],[0,2,2,2]],[[1,2,1,1],[2,2,2,2],[0,0,3,2],[0,2,3,1]],[[1,2,1,1],[2,2,2,2],[0,0,3,3],[0,2,2,1]],[[1,2,1,1],[2,2,2,3],[0,0,3,2],[0,2,2,1]],[[1,2,1,2],[2,2,2,2],[0,0,3,2],[0,2,2,1]],[[1,2,1,1],[2,2,2,1],[3,3,3,1],[1,0,1,0]],[[1,2,1,1],[3,2,2,1],[2,3,3,1],[1,0,1,0]],[[1,3,1,1],[2,2,2,1],[2,3,3,1],[1,0,1,0]],[[2,2,1,1],[2,2,2,1],[2,3,3,1],[1,0,1,0]],[[1,2,1,1],[2,2,2,1],[3,3,3,1],[1,0,0,1]],[[1,2,1,1],[3,2,2,1],[2,3,3,1],[1,0,0,1]],[[1,3,1,1],[2,2,2,1],[2,3,3,1],[1,0,0,1]],[[2,2,1,1],[2,2,2,1],[2,3,3,1],[1,0,0,1]],[[2,0,2,0],[2,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,0,3,0],[2,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,0,2,0],[3,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,0,2,0],[2,4,3,1],[2,2,3,2],[0,2,0,0]],[[1,0,2,0],[2,3,4,1],[2,2,3,2],[0,2,0,0]],[[1,0,2,0],[2,3,3,1],[3,2,3,2],[0,2,0,0]],[[2,0,2,0],[2,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,0,3,0],[2,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,0,2,0],[3,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,0,2,0],[2,4,3,1],[2,2,3,2],[1,1,0,0]],[[1,0,2,0],[2,3,4,1],[2,2,3,2],[1,1,0,0]],[[1,0,2,0],[2,3,3,1],[3,2,3,2],[1,1,0,0]],[[1,0,2,0],[2,3,3,1],[2,2,3,2],[2,1,0,0]],[[1,2,1,1],[2,2,2,1],[3,3,3,0],[1,0,1,1]],[[1,2,1,1],[3,2,2,1],[2,3,3,0],[1,0,1,1]],[[1,3,1,1],[2,2,2,1],[2,3,3,0],[1,0,1,1]],[[2,2,1,1],[2,2,2,1],[2,3,3,0],[1,0,1,1]],[[2,0,2,0],[2,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,0,2,0],[3,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,0,2,0],[2,4,3,1],[2,3,0,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,1],[3,3,0,1],[0,2,2,1]],[[2,0,2,0],[2,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,0,2,0],[3,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,0,2,0],[2,4,3,1],[2,3,0,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[3,3,0,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,1],[2,3,0,1],[2,1,2,1]],[[2,0,2,0],[2,3,3,1],[2,3,0,1],[1,2,1,1]],[[1,0,2,0],[3,3,3,1],[2,3,0,1],[1,2,1,1]],[[1,0,2,0],[2,4,3,1],[2,3,0,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[3,3,0,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,1],[2,3,0,1],[2,2,1,1]],[[2,0,2,0],[2,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,0,2,0],[3,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,0,2,0],[2,4,3,1],[2,3,0,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,1],[3,3,0,2],[0,2,2,0]],[[2,0,2,0],[2,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,1],[2,3,0,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[3,3,0,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,1],[2,3,0,2],[2,1,2,0]],[[2,0,2,0],[2,3,3,1],[2,3,0,2],[1,2,1,0]],[[1,0,2,0],[3,3,3,1],[2,3,0,2],[1,2,1,0]],[[1,0,2,0],[2,4,3,1],[2,3,0,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[3,3,0,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,1],[2,3,0,2],[2,2,1,0]],[[2,0,2,0],[2,3,3,1],[2,3,1,1],[0,2,1,1]],[[1,0,2,0],[3,3,3,1],[2,3,1,1],[0,2,1,1]],[[1,0,2,0],[2,4,3,1],[2,3,1,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,1],[3,3,1,1],[0,2,1,1]],[[2,0,2,0],[2,3,3,1],[2,3,1,1],[1,1,1,1]],[[1,0,2,0],[3,3,3,1],[2,3,1,1],[1,1,1,1]],[[1,0,2,0],[2,4,3,1],[2,3,1,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[3,3,1,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,1],[2,3,1,1],[2,1,1,1]],[[2,0,2,0],[2,3,3,1],[2,3,1,1],[1,2,0,1]],[[1,0,2,0],[3,3,3,1],[2,3,1,1],[1,2,0,1]],[[1,0,2,0],[2,4,3,1],[2,3,1,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[3,3,1,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,1],[2,3,1,1],[2,2,0,1]],[[2,0,2,0],[2,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,1],[2,3,1,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,1],[3,3,1,2],[0,2,0,1]],[[2,0,2,0],[2,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,1],[2,3,1,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,1],[3,3,1,2],[0,2,1,0]],[[1,2,1,1],[2,2,2,1],[2,2,3,1],[2,2,0,0]],[[1,2,1,1],[2,2,2,1],[3,2,3,1],[1,2,0,0]],[[1,2,1,1],[3,2,2,1],[2,2,3,1],[1,2,0,0]],[[1,3,1,1],[2,2,2,1],[2,2,3,1],[1,2,0,0]],[[2,2,1,1],[2,2,2,1],[2,2,3,1],[1,2,0,0]],[[2,0,2,0],[2,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,1],[2,3,1,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[3,3,1,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,1],[2,3,1,2],[2,1,0,1]],[[2,0,2,0],[2,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,1],[2,3,1,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,1],[3,3,1,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,1],[2,3,1,2],[2,1,1,0]],[[2,0,2,0],[2,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,0,2,0],[3,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,0,2,0],[2,4,3,1],[2,3,1,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,1],[3,3,1,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,1,1],[2,2,2,1],[2,2,3,1],[2,1,1,0]],[[1,2,1,1],[2,2,2,1],[3,2,3,1],[1,1,1,0]],[[1,2,1,1],[3,2,2,1],[2,2,3,1],[1,1,1,0]],[[1,3,1,1],[2,2,2,1],[2,2,3,1],[1,1,1,0]],[[2,2,1,1],[2,2,2,1],[2,2,3,1],[1,1,1,0]],[[1,2,1,1],[2,2,2,1],[2,2,3,1],[2,1,0,1]],[[1,2,1,1],[2,2,2,1],[3,2,3,1],[1,1,0,1]],[[1,2,1,1],[3,2,2,1],[2,2,3,1],[1,1,0,1]],[[1,3,1,1],[2,2,2,1],[2,2,3,1],[1,1,0,1]],[[2,2,1,1],[2,2,2,1],[2,2,3,1],[1,1,0,1]],[[1,2,1,1],[2,2,2,1],[2,2,3,1],[2,0,2,0]],[[1,2,1,1],[2,2,2,1],[3,2,3,1],[1,0,2,0]],[[1,2,1,1],[3,2,2,1],[2,2,3,1],[1,0,2,0]],[[1,3,1,1],[2,2,2,1],[2,2,3,1],[1,0,2,0]],[[2,2,1,1],[2,2,2,1],[2,2,3,1],[1,0,2,0]],[[1,2,1,1],[2,2,2,1],[2,2,3,1],[2,0,1,1]],[[1,2,1,1],[2,2,2,1],[3,2,3,1],[1,0,1,1]],[[1,2,1,1],[3,2,2,1],[2,2,3,1],[1,0,1,1]],[[1,3,1,1],[2,2,2,1],[2,2,3,1],[1,0,1,1]],[[2,2,1,1],[2,2,2,1],[2,2,3,1],[1,0,1,1]],[[1,2,1,1],[2,2,2,1],[3,2,3,1],[0,2,1,0]],[[1,2,1,1],[3,2,2,1],[2,2,3,1],[0,2,1,0]],[[1,3,1,1],[2,2,2,1],[2,2,3,1],[0,2,1,0]],[[2,2,1,1],[2,2,2,1],[2,2,3,1],[0,2,1,0]],[[1,2,1,1],[2,2,2,1],[3,2,3,1],[0,2,0,1]],[[2,0,2,0],[2,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,0,2,0],[3,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,0,2,0],[2,4,3,1],[2,3,2,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,1],[3,3,2,1],[1,0,1,1]],[[1,2,1,1],[3,2,2,1],[2,2,3,1],[0,2,0,1]],[[1,3,1,1],[2,2,2,1],[2,2,3,1],[0,2,0,1]],[[2,2,1,1],[2,2,2,1],[2,2,3,1],[0,2,0,1]],[[1,2,1,1],[2,2,2,1],[3,2,3,1],[0,1,2,0]],[[1,2,1,1],[3,2,2,1],[2,2,3,1],[0,1,2,0]],[[1,3,1,1],[2,2,2,1],[2,2,3,1],[0,1,2,0]],[[2,2,1,1],[2,2,2,1],[2,2,3,1],[0,1,2,0]],[[1,2,1,1],[2,2,2,1],[3,2,3,1],[0,1,1,1]],[[1,2,1,1],[3,2,2,1],[2,2,3,1],[0,1,1,1]],[[1,3,1,1],[2,2,2,1],[2,2,3,1],[0,1,1,1]],[[2,2,1,1],[2,2,2,1],[2,2,3,1],[0,1,1,1]],[[1,2,1,1],[2,2,2,1],[2,2,3,0],[2,2,0,1]],[[1,2,1,1],[2,2,2,1],[3,2,3,0],[1,2,0,1]],[[1,2,1,1],[3,2,2,1],[2,2,3,0],[1,2,0,1]],[[1,3,1,1],[2,2,2,1],[2,2,3,0],[1,2,0,1]],[[2,2,1,1],[2,2,2,1],[2,2,3,0],[1,2,0,1]],[[1,2,1,1],[2,2,2,1],[2,2,3,0],[2,1,1,1]],[[1,2,1,1],[2,2,2,1],[3,2,3,0],[1,1,1,1]],[[1,2,1,1],[3,2,2,1],[2,2,3,0],[1,1,1,1]],[[1,3,1,1],[2,2,2,1],[2,2,3,0],[1,1,1,1]],[[2,2,1,1],[2,2,2,1],[2,2,3,0],[1,1,1,1]],[[1,2,1,1],[2,2,2,1],[2,2,3,0],[2,0,2,1]],[[1,2,1,1],[2,2,2,1],[3,2,3,0],[1,0,2,1]],[[1,2,1,1],[3,2,2,1],[2,2,3,0],[1,0,2,1]],[[1,3,1,1],[2,2,2,1],[2,2,3,0],[1,0,2,1]],[[2,2,1,1],[2,2,2,1],[2,2,3,0],[1,0,2,1]],[[1,2,1,1],[2,2,2,1],[3,2,3,0],[0,2,1,1]],[[1,2,1,1],[3,2,2,1],[2,2,3,0],[0,2,1,1]],[[1,3,1,1],[2,2,2,1],[2,2,3,0],[0,2,1,1]],[[2,2,1,1],[2,2,2,1],[2,2,3,0],[0,2,1,1]],[[1,2,1,1],[2,2,2,1],[3,2,3,0],[0,1,2,1]],[[1,2,1,1],[3,2,2,1],[2,2,3,0],[0,1,2,1]],[[1,3,1,1],[2,2,2,1],[2,2,3,0],[0,1,2,1]],[[2,2,1,1],[2,2,2,1],[2,2,3,0],[0,1,2,1]],[[2,0,2,0],[2,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,0,3,0],[2,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,0,2,0],[3,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,0,2,0],[2,4,3,1],[2,3,2,2],[1,0,0,1]],[[1,0,2,0],[2,3,4,1],[2,3,2,2],[1,0,0,1]],[[1,0,2,0],[2,3,3,1],[3,3,2,2],[1,0,0,1]],[[2,0,2,0],[2,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,0,3,0],[2,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,0,2,0],[3,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,0,2,0],[2,4,3,1],[2,3,2,2],[1,0,1,0]],[[1,0,2,0],[2,3,4,1],[2,3,2,2],[1,0,1,0]],[[1,0,2,0],[2,3,3,1],[3,3,2,2],[1,0,1,0]],[[1,2,1,1],[2,2,2,1],[2,2,2,1],[2,1,2,0]],[[1,2,1,1],[2,2,2,1],[3,2,2,1],[1,1,2,0]],[[1,2,1,1],[3,2,2,1],[2,2,2,1],[1,1,2,0]],[[1,3,1,1],[2,2,2,1],[2,2,2,1],[1,1,2,0]],[[2,2,1,1],[2,2,2,1],[2,2,2,1],[1,1,2,0]],[[1,2,1,1],[2,2,2,1],[3,2,2,1],[0,2,2,0]],[[1,2,1,1],[3,2,2,1],[2,2,2,1],[0,2,2,0]],[[1,3,1,1],[2,2,2,1],[2,2,2,1],[0,2,2,0]],[[2,2,1,1],[2,2,2,1],[2,2,2,1],[0,2,2,0]],[[1,2,1,1],[2,2,2,1],[2,2,2,0],[2,1,2,1]],[[1,2,1,1],[2,2,2,1],[3,2,2,0],[1,1,2,1]],[[1,2,1,1],[3,2,2,1],[2,2,2,0],[1,1,2,1]],[[1,3,1,1],[2,2,2,1],[2,2,2,0],[1,1,2,1]],[[2,2,1,1],[2,2,2,1],[2,2,2,0],[1,1,2,1]],[[1,2,1,1],[2,2,2,1],[3,2,2,0],[0,2,2,1]],[[1,2,1,1],[3,2,2,1],[2,2,2,0],[0,2,2,1]],[[1,3,1,1],[2,2,2,1],[2,2,2,0],[0,2,2,1]],[[2,2,1,1],[2,2,2,1],[2,2,2,0],[0,2,2,1]],[[1,2,1,1],[2,2,2,1],[2,1,3,1],[1,3,1,0]],[[1,2,1,1],[2,2,2,1],[2,1,3,1],[2,2,1,0]],[[1,2,1,1],[2,2,2,1],[3,1,3,1],[1,2,1,0]],[[1,2,1,1],[3,2,2,1],[2,1,3,1],[1,2,1,0]],[[1,3,1,1],[2,2,2,1],[2,1,3,1],[1,2,1,0]],[[2,2,1,1],[2,2,2,1],[2,1,3,1],[1,2,1,0]],[[1,2,1,1],[2,2,2,1],[2,1,3,1],[1,3,0,1]],[[1,2,1,1],[2,2,2,1],[2,1,3,1],[2,2,0,1]],[[1,2,1,1],[2,2,2,1],[3,1,3,1],[1,2,0,1]],[[1,2,1,1],[3,2,2,1],[2,1,3,1],[1,2,0,1]],[[1,3,1,1],[2,2,2,1],[2,1,3,1],[1,2,0,1]],[[2,2,1,1],[2,2,2,1],[2,1,3,1],[1,2,0,1]],[[1,2,1,1],[2,2,2,1],[2,1,3,0],[1,3,1,1]],[[1,2,1,1],[2,2,2,1],[2,1,3,0],[2,2,1,1]],[[1,2,1,1],[2,2,2,1],[3,1,3,0],[1,2,1,1]],[[1,2,1,1],[3,2,2,1],[2,1,3,0],[1,2,1,1]],[[1,3,1,1],[2,2,2,1],[2,1,3,0],[1,2,1,1]],[[2,2,1,1],[2,2,2,1],[2,1,3,0],[1,2,1,1]],[[1,2,1,1],[2,2,2,1],[2,1,2,1],[1,2,3,0]],[[1,2,1,1],[2,2,2,1],[2,1,2,1],[1,3,2,0]],[[1,2,1,1],[2,2,2,1],[2,1,2,1],[2,2,2,0]],[[1,2,1,1],[2,2,2,1],[3,1,2,1],[1,2,2,0]],[[1,2,1,1],[3,2,2,1],[2,1,2,1],[1,2,2,0]],[[1,3,1,1],[2,2,2,1],[2,1,2,1],[1,2,2,0]],[[2,2,1,1],[2,2,2,1],[2,1,2,1],[1,2,2,0]],[[1,2,1,1],[2,2,2,1],[2,1,2,0],[1,2,2,2]],[[1,2,1,1],[2,2,2,1],[2,1,2,0],[1,2,3,1]],[[1,2,1,1],[2,2,2,1],[2,1,2,0],[1,3,2,1]],[[1,2,1,1],[2,2,2,1],[2,1,2,0],[2,2,2,1]],[[1,2,1,1],[2,2,2,1],[3,1,2,0],[1,2,2,1]],[[1,2,1,1],[3,2,2,1],[2,1,2,0],[1,2,2,1]],[[1,3,1,1],[2,2,2,1],[2,1,2,0],[1,2,2,1]],[[2,2,1,1],[2,2,2,1],[2,1,2,0],[1,2,2,1]],[[1,2,1,1],[2,2,2,1],[2,0,3,1],[1,2,3,0]],[[1,2,1,1],[2,2,2,1],[2,0,3,1],[1,3,2,0]],[[1,2,1,1],[2,2,2,1],[2,0,3,1],[2,2,2,0]],[[1,2,1,1],[2,2,2,1],[2,0,4,1],[1,2,2,0]],[[1,2,1,1],[2,2,2,1],[3,0,3,1],[1,2,2,0]],[[1,2,1,1],[3,2,2,1],[2,0,3,1],[1,2,2,0]],[[1,3,1,1],[2,2,2,1],[2,0,3,1],[1,2,2,0]],[[2,2,1,1],[2,2,2,1],[2,0,3,1],[1,2,2,0]],[[1,2,1,1],[2,2,2,1],[2,0,3,0],[1,2,2,2]],[[1,2,1,1],[2,2,2,1],[2,0,3,0],[1,2,3,1]],[[1,2,1,1],[2,2,2,1],[2,0,3,0],[1,3,2,1]],[[1,2,1,1],[2,2,2,1],[2,0,3,0],[2,2,2,1]],[[1,2,1,1],[2,2,2,1],[2,0,4,0],[1,2,2,1]],[[1,2,1,1],[2,2,2,1],[3,0,3,0],[1,2,2,1]],[[1,2,1,1],[3,2,2,1],[2,0,3,0],[1,2,2,1]],[[1,3,1,1],[2,2,2,1],[2,0,3,0],[1,2,2,1]],[[2,2,1,1],[2,2,2,1],[2,0,3,0],[1,2,2,1]],[[1,2,1,1],[3,2,2,1],[1,3,3,1],[1,2,0,0]],[[1,3,1,1],[2,2,2,1],[1,3,3,1],[1,2,0,0]],[[2,2,1,1],[2,2,2,1],[1,3,3,1],[1,2,0,0]],[[1,2,1,1],[3,2,2,1],[1,3,3,1],[1,1,1,0]],[[1,3,1,1],[2,2,2,1],[1,3,3,1],[1,1,1,0]],[[2,2,1,1],[2,2,2,1],[1,3,3,1],[1,1,1,0]],[[1,2,1,1],[3,2,2,1],[1,3,3,1],[1,1,0,1]],[[1,3,1,1],[2,2,2,1],[1,3,3,1],[1,1,0,1]],[[2,2,1,1],[2,2,2,1],[1,3,3,1],[1,1,0,1]],[[1,2,1,1],[3,2,2,1],[1,3,3,1],[1,0,2,0]],[[1,3,1,1],[2,2,2,1],[1,3,3,1],[1,0,2,0]],[[2,2,1,1],[2,2,2,1],[1,3,3,1],[1,0,2,0]],[[1,2,1,1],[3,2,2,1],[1,3,3,1],[1,0,1,1]],[[1,3,1,1],[2,2,2,1],[1,3,3,1],[1,0,1,1]],[[2,2,1,1],[2,2,2,1],[1,3,3,1],[1,0,1,1]],[[1,2,1,1],[3,2,2,1],[1,3,3,1],[0,2,1,0]],[[1,3,1,1],[2,2,2,1],[1,3,3,1],[0,2,1,0]],[[2,2,1,1],[2,2,2,1],[1,3,3,1],[0,2,1,0]],[[1,2,1,1],[3,2,2,1],[1,3,3,1],[0,2,0,1]],[[1,3,1,1],[2,2,2,1],[1,3,3,1],[0,2,0,1]],[[2,2,1,1],[2,2,2,1],[1,3,3,1],[0,2,0,1]],[[1,2,1,1],[3,2,2,1],[1,3,3,1],[0,1,2,0]],[[1,3,1,1],[2,2,2,1],[1,3,3,1],[0,1,2,0]],[[2,2,1,1],[2,2,2,1],[1,3,3,1],[0,1,2,0]],[[1,2,1,1],[3,2,2,1],[1,3,3,1],[0,1,1,1]],[[1,3,1,1],[2,2,2,1],[1,3,3,1],[0,1,1,1]],[[2,2,1,1],[2,2,2,1],[1,3,3,1],[0,1,1,1]],[[1,2,1,1],[3,2,2,1],[1,3,3,0],[1,2,0,1]],[[1,3,1,1],[2,2,2,1],[1,3,3,0],[1,2,0,1]],[[2,2,1,1],[2,2,2,1],[1,3,3,0],[1,2,0,1]],[[2,0,2,0],[2,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,0,3,0],[2,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,0,2,0],[3,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,0,2,0],[2,4,3,1],[2,3,3,2],[1,0,0,0]],[[1,0,2,0],[2,3,4,1],[2,3,3,2],[1,0,0,0]],[[1,0,2,0],[2,3,3,1],[3,3,3,2],[1,0,0,0]],[[1,2,1,1],[3,2,2,1],[1,3,3,0],[1,1,1,1]],[[1,3,1,1],[2,2,2,1],[1,3,3,0],[1,1,1,1]],[[2,2,1,1],[2,2,2,1],[1,3,3,0],[1,1,1,1]],[[1,2,1,1],[3,2,2,1],[1,3,3,0],[1,0,2,1]],[[1,3,1,1],[2,2,2,1],[1,3,3,0],[1,0,2,1]],[[2,2,1,1],[2,2,2,1],[1,3,3,0],[1,0,2,1]],[[1,2,1,1],[3,2,2,1],[1,3,3,0],[0,2,1,1]],[[1,3,1,1],[2,2,2,1],[1,3,3,0],[0,2,1,1]],[[2,2,1,1],[2,2,2,1],[1,3,3,0],[0,2,1,1]],[[1,2,1,1],[3,2,2,1],[1,3,3,0],[0,1,2,1]],[[1,3,1,1],[2,2,2,1],[1,3,3,0],[0,1,2,1]],[[2,2,1,1],[2,2,2,1],[1,3,3,0],[0,1,2,1]],[[1,2,1,1],[3,2,2,1],[1,3,2,1],[1,1,2,0]],[[1,3,1,1],[2,2,2,1],[1,3,2,1],[1,1,2,0]],[[2,2,1,1],[2,2,2,1],[1,3,2,1],[1,1,2,0]],[[1,2,1,1],[3,2,2,1],[1,3,2,1],[0,2,2,0]],[[1,3,1,1],[2,2,2,1],[1,3,2,1],[0,2,2,0]],[[2,2,1,1],[2,2,2,1],[1,3,2,1],[0,2,2,0]],[[1,2,1,1],[3,2,2,1],[1,3,2,0],[1,1,2,1]],[[1,3,1,1],[2,2,2,1],[1,3,2,0],[1,1,2,1]],[[2,2,1,1],[2,2,2,1],[1,3,2,0],[1,1,2,1]],[[1,2,1,1],[3,2,2,1],[1,3,2,0],[0,2,2,1]],[[1,3,1,1],[2,2,2,1],[1,3,2,0],[0,2,2,1]],[[2,2,1,1],[2,2,2,1],[1,3,2,0],[0,2,2,1]],[[1,2,1,1],[3,2,2,1],[0,3,3,1],[1,2,1,0]],[[1,3,1,1],[2,2,2,1],[0,3,3,1],[1,2,1,0]],[[2,2,1,1],[2,2,2,1],[0,3,3,1],[1,2,1,0]],[[1,2,1,1],[3,2,2,1],[0,3,3,1],[1,2,0,1]],[[1,3,1,1],[2,2,2,1],[0,3,3,1],[1,2,0,1]],[[2,2,1,1],[2,2,2,1],[0,3,3,1],[1,2,0,1]],[[1,2,1,1],[3,2,2,1],[0,3,3,1],[1,1,2,0]],[[1,3,1,1],[2,2,2,1],[0,3,3,1],[1,1,2,0]],[[2,2,1,1],[2,2,2,1],[0,3,3,1],[1,1,2,0]],[[1,2,1,1],[3,2,2,1],[0,3,3,1],[1,1,1,1]],[[1,3,1,1],[2,2,2,1],[0,3,3,1],[1,1,1,1]],[[2,2,1,1],[2,2,2,1],[0,3,3,1],[1,1,1,1]],[[1,2,1,1],[3,2,2,1],[0,3,3,0],[1,2,1,1]],[[1,3,1,1],[2,2,2,1],[0,3,3,0],[1,2,1,1]],[[2,2,1,1],[2,2,2,1],[0,3,3,0],[1,2,1,1]],[[1,2,1,1],[3,2,2,1],[0,3,3,0],[1,1,2,1]],[[1,3,1,1],[2,2,2,1],[0,3,3,0],[1,1,2,1]],[[2,2,1,1],[2,2,2,1],[0,3,3,0],[1,1,2,1]],[[1,2,1,1],[3,2,2,1],[0,3,2,1],[1,2,2,0]],[[1,3,1,1],[2,2,2,1],[0,3,2,1],[1,2,2,0]],[[2,2,1,1],[2,2,2,1],[0,3,2,1],[1,2,2,0]],[[1,2,1,1],[3,2,2,1],[0,3,2,0],[1,2,2,1]],[[1,3,1,1],[2,2,2,1],[0,3,2,0],[1,2,2,1]],[[2,2,1,1],[2,2,2,1],[0,3,2,0],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[0,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[0,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[0,0,2,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,0,2,3],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,0,2,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[0,0,2,2],[1,2,2,2]],[[1,0,2,0],[2,3,4,2],[0,0,3,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[0,0,3,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,0,3,3],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,0,3,2],[0,2,2,2]],[[1,0,3,0],[2,3,3,2],[0,0,3,2],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[0,0,3,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[0,0,3,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,0,3,3],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,0,3,2],[1,1,2,2]],[[1,0,3,0],[2,3,3,2],[0,0,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[0,0,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[0,0,3,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,0,3,3],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,0,3,2],[1,2,1,2]],[[1,0,3,0],[2,3,3,2],[0,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,4,2],[0,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,3],[0,0,3,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,0,3,3],[1,2,2,0]],[[2,0,2,0],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[0,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[0,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[0,1,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,1,1,3],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,1,1,2],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,1,1,2],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[0,1,1,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[0,1,1,2],[1,2,2,2]],[[2,0,2,0],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[0,1,2,2],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[0,1,2,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[0,1,2,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,1,2,3],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,1,2,2],[1,2,1,2]],[[2,0,2,0],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,0,3,0],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[0,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,4,2],[0,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,3],[0,1,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,1,2,3],[1,2,2,0]],[[2,0,2,0],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[0,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[0,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[0,1,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,1,4,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,1,3,0],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,1,3,0],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[0,1,3,0],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[0,1,3,0],[1,2,2,2]],[[2,0,2,0],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[0,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[0,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[0,1,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,1,4,1],[1,2,1,1]],[[2,0,2,0],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,0,3,0],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[0,1,3,1],[1,2,2,0]],[[1,0,2,0],[2,3,4,2],[0,1,3,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,3],[0,1,3,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,1,4,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,1,3,1],[2,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,1,3,1],[1,3,2,0]],[[1,0,2,0],[2,3,3,2],[0,1,3,1],[1,2,3,0]],[[1,0,3,0],[2,3,3,2],[0,1,3,2],[1,0,2,1]],[[1,0,2,0],[2,3,4,2],[0,1,3,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,3],[0,1,3,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[0,1,3,3],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[0,1,3,2],[1,0,2,2]],[[1,0,3,0],[2,3,3,2],[0,1,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[0,1,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[0,1,3,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,1,3,3],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,1,3,2],[1,1,1,2]],[[1,0,3,0],[2,3,3,2],[0,1,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[0,1,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,3],[0,1,3,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,1,3,3],[1,1,2,0]],[[2,0,2,0],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[0,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[0,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[0,2,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,0,3],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,0,2],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,0,2],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,0,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[0,2,0,2],[1,2,2,2]],[[2,0,2,0],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,0,3,0],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[0,2,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[0,2,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[0,2,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,1,3],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,1,2],[1,1,3,1]],[[1,0,2,0],[2,3,3,2],[0,2,1,2],[1,1,2,2]],[[1,0,3,0],[2,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,0,2,0],[2,4,3,2],[0,2,2,2],[1,0,2,1]],[[1,0,2,0],[2,3,4,2],[0,2,2,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,3],[0,2,2,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,2,3],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,2,2],[1,0,2,2]],[[2,0,2,0],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[0,2,2,2],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[0,2,2,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[0,2,2,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,2,2,3],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,2,2,2],[1,1,1,2]],[[2,0,2,0],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,0,3,0],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[0,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[0,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,3],[0,2,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,2,2,3],[1,1,2,0]],[[2,0,2,0],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,0,3,0],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,0,2,0],[3,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,0,2,0],[2,4,3,2],[0,2,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,4,2],[0,2,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,3],[0,2,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,2,2,3],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,2,2,2],[1,2,0,2]],[[2,0,2,0],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,0,3,0],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,0,2,0],[3,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,0,2,0],[2,4,3,2],[0,2,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,4,2],[0,2,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,3],[0,2,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,1,1],[2,2,2,0],[3,3,3,2],[1,0,1,0]],[[1,2,1,1],[3,2,2,0],[2,3,3,2],[1,0,1,0]],[[1,3,1,1],[2,2,2,0],[2,3,3,2],[1,0,1,0]],[[2,2,1,1],[2,2,2,0],[2,3,3,2],[1,0,1,0]],[[1,2,1,1],[2,2,2,0],[3,3,3,2],[1,0,0,1]],[[1,2,1,1],[3,2,2,0],[2,3,3,2],[1,0,0,1]],[[1,3,1,1],[2,2,2,0],[2,3,3,2],[1,0,0,1]],[[2,2,1,1],[2,2,2,0],[2,3,3,2],[1,0,0,1]],[[2,0,2,0],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,0,3,0],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[0,2,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[0,2,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[0,2,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,4,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,3,0],[1,1,3,1]],[[1,0,2,0],[2,3,3,2],[0,2,3,0],[1,1,2,2]],[[2,0,2,0],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[0,2,3,0],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[0,2,3,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[0,2,3,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,2,4,0],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,4,3,2],[0,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,4,2],[0,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,3],[0,2,3,1],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,4,1],[1,0,2,1]],[[2,0,2,0],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[0,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[0,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[0,2,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,2,4,1],[1,1,1,1]],[[2,0,2,0],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,0,3,0],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[0,2,3,1],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[0,2,3,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,3],[0,2,3,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,2,4,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,2,3,1],[1,1,3,0]],[[2,0,2,0],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,0,3,0],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,0,2,0],[3,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,4,3,2],[0,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,4,2],[0,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,3],[0,2,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,2,4,1],[1,2,0,1]],[[2,0,2,0],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,0,3,0],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,0,2,0],[3,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,0,2,0],[2,4,3,2],[0,2,3,1],[1,2,1,0]],[[1,0,2,0],[2,3,4,2],[0,2,3,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,3],[0,2,3,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,2,4,1],[1,2,1,0]],[[1,0,2,0],[2,3,4,2],[0,2,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,3],[0,2,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,3,3],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[0,2,3,2],[0,0,2,2]],[[1,0,2,0],[2,3,4,2],[0,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[0,2,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,2,3,3],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,2,3,2],[0,1,1,2]],[[1,0,2,0],[2,3,4,2],[0,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[0,2,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,2,3,3],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[0,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,2],[0,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,4,2],[0,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,3],[0,2,3,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[0,2,3,3],[1,1,0,1]],[[2,0,2,0],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[0,3,0,1],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[0,3,0,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[0,3,0,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,4,0,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,0,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,0,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,0,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[0,3,0,1],[1,2,2,2]],[[2,0,2,0],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,0,3,0],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[0,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[0,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[0,3,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,4,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,0,3],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,0,2],[1,1,3,1]],[[1,0,2,0],[2,3,3,2],[0,3,0,2],[1,1,2,2]],[[2,0,2,0],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[0,3,0,2],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[0,3,0,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[0,3,0,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,4,0,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,0,3],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,0,2],[2,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,0,2],[1,3,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,0,2],[1,2,1,2]],[[2,0,2,0],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,0,3,0],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[0,3,0,2],[1,2,2,0]],[[1,0,2,0],[2,3,4,2],[0,3,0,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,3],[0,3,0,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,4,0,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,3,0,3],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,3,0,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,3,0,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,2],[0,3,0,2],[1,2,3,0]],[[2,0,2,0],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[0,3,1,0],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[0,3,1,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[0,3,1,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,4,1,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,0],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,0],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,0],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,0],[1,2,2,2]],[[2,0,2,0],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,0,3,0],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[0,3,1,1],[1,2,2,0]],[[1,0,2,0],[2,3,4,2],[0,3,1,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,3],[0,3,1,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,4,1,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,3,1,1],[2,2,2,0]],[[1,0,2,0],[2,3,3,2],[0,3,1,1],[1,3,2,0]],[[1,0,2,0],[2,3,3,2],[0,3,1,1],[1,2,3,0]],[[1,0,3,0],[2,3,3,2],[0,3,1,2],[0,1,2,1]],[[1,0,2,0],[2,4,3,2],[0,3,1,2],[0,1,2,1]],[[1,0,2,0],[2,3,4,2],[0,3,1,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,3],[0,3,1,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,3],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,2],[0,1,3,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,2],[0,1,2,2]],[[2,0,2,0],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[0,3,1,2],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[0,3,1,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[0,3,1,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,4,1,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,3],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,2],[1,1,1,2]],[[2,0,2,0],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,0,3,0],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[0,3,1,2],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[0,3,1,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,3],[0,3,1,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,4,1,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,3,1,3],[1,1,2,0]],[[2,0,2,0],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,0,3,0],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,0,2,0],[3,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,0,2,0],[2,4,3,2],[0,3,1,2],[1,2,0,1]],[[1,0,2,0],[2,3,4,2],[0,3,1,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,3],[0,3,1,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,4,1,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,3],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,2],[2,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,2],[1,3,0,1]],[[1,0,2,0],[2,3,3,2],[0,3,1,2],[1,2,0,2]],[[2,0,2,0],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,0,3,0],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,0,2,0],[3,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,0,2,0],[2,4,3,2],[0,3,1,2],[1,2,1,0]],[[1,0,2,0],[2,3,4,2],[0,3,1,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,3],[0,3,1,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,4,1,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,3,1,3],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,3,1,2],[2,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,3,1,2],[1,3,1,0]],[[1,2,1,1],[2,2,2,0],[3,3,3,1],[1,0,1,1]],[[1,2,1,1],[3,2,2,0],[2,3,3,1],[1,0,1,1]],[[1,3,1,1],[2,2,2,0],[2,3,3,1],[1,0,1,1]],[[2,2,1,1],[2,2,2,0],[2,3,3,1],[1,0,1,1]],[[2,0,2,0],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,0,3,0],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[0,3,2,0],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[0,3,2,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[0,3,2,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,4,2,0],[1,1,2,1]],[[2,0,2,0],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[0,3,2,0],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[0,3,2,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[0,3,2,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,4,2,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,2,0],[2,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,2,0],[1,3,1,1]],[[2,0,2,0],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[0,3,2,1],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[0,3,2,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[0,3,2,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,4,2,1],[1,1,1,1]],[[2,0,2,0],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,0,3,0],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[0,3,2,1],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[0,3,2,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,3],[0,3,2,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,4,2,1],[1,1,2,0]],[[2,0,2,0],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,0,3,0],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,0,2,0],[3,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,0,2,0],[2,4,3,2],[0,3,2,1],[1,2,0,1]],[[1,0,2,0],[2,3,4,2],[0,3,2,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,3],[0,3,2,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,4,2,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,3,2,1],[2,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,3,2,1],[1,3,0,1]],[[2,0,2,0],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,0,3,0],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,0,2,0],[3,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,0,2,0],[2,4,3,2],[0,3,2,1],[1,2,1,0]],[[1,0,2,0],[2,3,4,2],[0,3,2,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,3],[0,3,2,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,4,2,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,3,2,1],[2,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,3,2,1],[1,3,1,0]],[[1,0,3,0],[2,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,0,2,0],[2,4,3,2],[0,3,2,2],[0,0,2,1]],[[1,0,2,0],[2,3,4,2],[0,3,2,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,3],[0,3,2,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,2,3],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,2,2],[0,0,2,2]],[[1,0,3,0],[2,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,2],[0,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[0,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[0,3,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,2,3],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,2,2],[0,1,1,2]],[[1,0,3,0],[2,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[0,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[0,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[0,3,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,3,2,3],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[0,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,4,2],[0,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,3],[0,3,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,3,2,3],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,3,2,2],[0,2,0,2]],[[1,0,3,0],[2,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[0,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[0,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,3],[0,3,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,0,3,0],[2,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,4,3,2],[0,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,4,2],[0,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,3],[0,3,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,4,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,3,0],[0,1,3,1]],[[1,0,2,0],[2,3,3,2],[0,3,3,0],[0,1,2,2]],[[1,0,3,0],[2,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[0,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[0,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[0,3,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,4,0],[0,2,1,1]],[[2,0,2,0],[2,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,0,3,0],[2,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[0,3,3,0],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[0,3,3,0],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,4,3,0],[1,1,2,0]],[[2,0,2,0],[2,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,0,3,0],[2,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,0,2,0],[3,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,0,2,0],[2,4,3,2],[0,3,3,0],[1,2,1,0]],[[1,0,2,0],[2,3,4,2],[0,3,3,0],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,4,3,0],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,3,3,0],[2,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,3,3,0],[1,3,1,0]],[[1,0,3,0],[2,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,4,3,2],[0,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,3,4,2],[0,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,3,3,3],[0,3,3,1],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[0,3,4,1],[0,0,2,1]],[[1,0,3,0],[2,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,4,3,2],[0,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[0,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[0,3,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[0,3,4,1],[0,1,1,1]],[[1,0,3,0],[2,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[0,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[0,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[0,3,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,3,4,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[0,3,3,1],[0,1,3,0]],[[1,0,3,0],[2,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[0,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,4,2],[0,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,3],[0,3,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[0,3,4,1],[0,2,0,1]],[[1,0,3,0],[2,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[0,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[0,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,3],[0,3,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[0,3,4,1],[0,2,1,0]],[[2,0,2,0],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,0,3,0],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,0,2,0],[3,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,0,2,0],[2,4,3,2],[0,3,3,1],[1,2,0,0]],[[1,0,2,0],[2,3,4,2],[0,3,3,1],[1,2,0,0]],[[1,0,2,0],[2,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[0,4,3,1],[1,2,0,0]],[[1,2,1,1],[2,2,2,0],[2,2,3,2],[2,2,0,0]],[[1,2,1,1],[2,2,2,0],[3,2,3,2],[1,2,0,0]],[[1,2,1,1],[3,2,2,0],[2,2,3,2],[1,2,0,0]],[[1,3,1,1],[2,2,2,0],[2,2,3,2],[1,2,0,0]],[[2,2,1,1],[2,2,2,0],[2,2,3,2],[1,2,0,0]],[[1,2,1,1],[2,2,2,0],[2,2,3,2],[2,1,1,0]],[[1,2,1,1],[2,2,2,0],[3,2,3,2],[1,1,1,0]],[[1,2,1,1],[3,2,2,0],[2,2,3,2],[1,1,1,0]],[[1,3,1,1],[2,2,2,0],[2,2,3,2],[1,1,1,0]],[[2,2,1,1],[2,2,2,0],[2,2,3,2],[1,1,1,0]],[[1,2,1,1],[2,2,2,0],[2,2,3,2],[2,1,0,1]],[[1,2,1,1],[2,2,2,0],[3,2,3,2],[1,1,0,1]],[[1,2,1,1],[3,2,2,0],[2,2,3,2],[1,1,0,1]],[[1,0,3,0],[2,3,3,2],[0,3,3,2],[0,1,0,1]],[[1,0,2,0],[2,4,3,2],[0,3,3,2],[0,1,0,1]],[[1,0,2,0],[2,3,4,2],[0,3,3,2],[0,1,0,1]],[[1,0,2,0],[2,3,3,3],[0,3,3,2],[0,1,0,1]],[[1,0,2,0],[2,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,3,1,1],[2,2,2,0],[2,2,3,2],[1,1,0,1]],[[2,2,1,1],[2,2,2,0],[2,2,3,2],[1,1,0,1]],[[1,2,1,1],[2,2,2,0],[2,2,3,2],[2,0,2,0]],[[1,2,1,1],[2,2,2,0],[3,2,3,2],[1,0,2,0]],[[1,2,1,1],[3,2,2,0],[2,2,3,2],[1,0,2,0]],[[1,3,1,1],[2,2,2,0],[2,2,3,2],[1,0,2,0]],[[2,2,1,1],[2,2,2,0],[2,2,3,2],[1,0,2,0]],[[1,2,1,1],[2,2,2,0],[2,2,3,2],[2,0,1,1]],[[1,2,1,1],[2,2,2,0],[3,2,3,2],[1,0,1,1]],[[1,2,1,1],[3,2,2,0],[2,2,3,2],[1,0,1,1]],[[1,3,1,1],[2,2,2,0],[2,2,3,2],[1,0,1,1]],[[2,2,1,1],[2,2,2,0],[2,2,3,2],[1,0,1,1]],[[1,2,1,1],[2,2,2,0],[3,2,3,2],[0,2,1,0]],[[1,2,1,1],[3,2,2,0],[2,2,3,2],[0,2,1,0]],[[1,3,1,1],[2,2,2,0],[2,2,3,2],[0,2,1,0]],[[2,2,1,1],[2,2,2,0],[2,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,2,2,0],[3,2,3,2],[0,2,0,1]],[[1,2,1,1],[3,2,2,0],[2,2,3,2],[0,2,0,1]],[[1,3,1,1],[2,2,2,0],[2,2,3,2],[0,2,0,1]],[[2,2,1,1],[2,2,2,0],[2,2,3,2],[0,2,0,1]],[[1,2,1,1],[2,2,2,0],[3,2,3,2],[0,1,2,0]],[[1,2,1,1],[3,2,2,0],[2,2,3,2],[0,1,2,0]],[[1,3,1,1],[2,2,2,0],[2,2,3,2],[0,1,2,0]],[[2,2,1,1],[2,2,2,0],[2,2,3,2],[0,1,2,0]],[[1,2,1,1],[2,2,2,0],[3,2,3,2],[0,1,1,1]],[[1,2,1,1],[3,2,2,0],[2,2,3,2],[0,1,1,1]],[[1,3,1,1],[2,2,2,0],[2,2,3,2],[0,1,1,1]],[[2,2,1,1],[2,2,2,0],[2,2,3,2],[0,1,1,1]],[[1,2,1,1],[2,2,2,0],[2,2,3,1],[2,2,0,1]],[[1,2,1,1],[2,2,2,0],[3,2,3,1],[1,2,0,1]],[[1,2,1,1],[3,2,2,0],[2,2,3,1],[1,2,0,1]],[[1,3,1,1],[2,2,2,0],[2,2,3,1],[1,2,0,1]],[[2,2,1,1],[2,2,2,0],[2,2,3,1],[1,2,0,1]],[[1,2,1,1],[2,2,2,0],[2,2,3,1],[2,1,1,1]],[[1,2,1,1],[2,2,2,0],[3,2,3,1],[1,1,1,1]],[[1,2,1,1],[3,2,2,0],[2,2,3,1],[1,1,1,1]],[[1,3,1,1],[2,2,2,0],[2,2,3,1],[1,1,1,1]],[[2,2,1,1],[2,2,2,0],[2,2,3,1],[1,1,1,1]],[[1,2,1,1],[2,2,2,0],[2,2,3,1],[2,0,2,1]],[[1,2,1,1],[2,2,2,0],[3,2,3,1],[1,0,2,1]],[[1,2,1,1],[3,2,2,0],[2,2,3,1],[1,0,2,1]],[[1,3,1,1],[2,2,2,0],[2,2,3,1],[1,0,2,1]],[[2,2,1,1],[2,2,2,0],[2,2,3,1],[1,0,2,1]],[[1,2,1,1],[2,2,2,0],[3,2,3,1],[0,2,1,1]],[[1,2,1,1],[3,2,2,0],[2,2,3,1],[0,2,1,1]],[[1,3,1,1],[2,2,2,0],[2,2,3,1],[0,2,1,1]],[[2,2,1,1],[2,2,2,0],[2,2,3,1],[0,2,1,1]],[[1,2,1,1],[2,2,2,0],[3,2,3,1],[0,1,2,1]],[[1,2,1,1],[3,2,2,0],[2,2,3,1],[0,1,2,1]],[[1,3,1,1],[2,2,2,0],[2,2,3,1],[0,1,2,1]],[[2,2,1,1],[2,2,2,0],[2,2,3,1],[0,1,2,1]],[[1,2,1,1],[2,2,2,0],[2,2,3,0],[2,1,2,1]],[[1,2,1,1],[2,2,2,0],[3,2,3,0],[1,1,2,1]],[[1,2,1,1],[3,2,2,0],[2,2,3,0],[1,1,2,1]],[[1,3,1,1],[2,2,2,0],[2,2,3,0],[1,1,2,1]],[[2,2,1,1],[2,2,2,0],[2,2,3,0],[1,1,2,1]],[[1,2,1,1],[2,2,2,0],[3,2,3,0],[0,2,2,1]],[[1,2,1,1],[3,2,2,0],[2,2,3,0],[0,2,2,1]],[[1,3,1,1],[2,2,2,0],[2,2,3,0],[0,2,2,1]],[[2,2,1,1],[2,2,2,0],[2,2,3,0],[0,2,2,1]],[[1,2,1,1],[2,2,2,0],[2,2,2,2],[2,1,2,0]],[[1,2,1,1],[2,2,2,0],[3,2,2,2],[1,1,2,0]],[[1,2,1,1],[3,2,2,0],[2,2,2,2],[1,1,2,0]],[[1,3,1,1],[2,2,2,0],[2,2,2,2],[1,1,2,0]],[[2,2,1,1],[2,2,2,0],[2,2,2,2],[1,1,2,0]],[[2,0,2,0],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[1,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[1,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[1,0,1,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,1,3],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,1,2],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,1,2],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,1,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[1,0,1,2],[1,2,2,2]],[[1,0,3,0],[2,3,3,2],[1,0,2,2],[0,2,2,1]],[[1,0,2,0],[2,3,4,2],[1,0,2,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[1,0,2,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,2,3],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,2,2],[0,2,3,1]],[[1,0,2,0],[2,3,3,2],[1,0,2,2],[0,2,2,2]],[[2,0,2,0],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[1,0,2,2],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[1,0,2,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[1,0,2,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,0,2,3],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,0,2,2],[1,2,1,2]],[[2,0,2,0],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,0,3,0],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[1,0,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,4,2],[1,0,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,3],[1,0,2,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,0,2,3],[1,2,2,0]],[[2,0,2,0],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[1,0,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[1,0,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[1,0,3,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,4,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,3,0],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,3,0],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,3,0],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[1,0,3,0],[1,2,2,2]],[[2,0,2,0],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[1,0,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[1,0,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[1,0,3,1],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,0,4,1],[1,2,1,1]],[[2,0,2,0],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,0,3,0],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[1,0,3,1],[1,2,2,0]],[[1,0,2,0],[2,3,4,2],[1,0,3,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,3],[1,0,3,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,0,4,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,0,3,1],[2,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,0,3,1],[1,3,2,0]],[[1,0,2,0],[2,3,3,2],[1,0,3,1],[1,2,3,0]],[[1,0,3,0],[2,3,3,2],[1,0,3,2],[0,1,2,1]],[[1,0,2,0],[2,3,4,2],[1,0,3,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,3],[1,0,3,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,3,3],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,0,3,2],[0,1,2,2]],[[1,0,3,0],[2,3,3,2],[1,0,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[1,0,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[1,0,3,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,0,3,3],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,0,3,2],[0,2,1,2]],[[1,0,3,0],[2,3,3,2],[1,0,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,4,2],[1,0,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,3],[1,0,3,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,1,1],[2,2,2,0],[3,2,2,2],[0,2,2,0]],[[1,2,1,1],[3,2,2,0],[2,2,2,2],[0,2,2,0]],[[1,3,1,1],[2,2,2,0],[2,2,2,2],[0,2,2,0]],[[2,2,1,1],[2,2,2,0],[2,2,2,2],[0,2,2,0]],[[2,0,2,0],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[1,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[1,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[1,1,0,2],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,0,3],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,0,2],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,0,2],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,0,2],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[1,1,0,2],[1,2,2,2]],[[2,0,2,0],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,0,2,0],[3,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,0,2,0],[2,4,3,2],[1,1,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,4,2],[1,1,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[1,1,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,1,3],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,1,2],[0,3,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,1,2],[0,2,3,1]],[[1,0,2,0],[2,3,3,2],[1,1,1,2],[0,2,2,2]],[[2,0,2,0],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,0,3,0],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,0,2,0],[3,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[1,1,2,2],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[1,1,2,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[1,1,2,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,1,2,3],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,1,2,2],[0,2,1,2]],[[2,0,2,0],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,0,3,0],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,0,2,0],[3,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,0,2,0],[2,4,3,2],[1,1,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,4,2],[1,1,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,3],[1,1,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,1,1],[2,2,2,0],[2,2,2,1],[2,1,2,1]],[[1,2,1,1],[2,2,2,0],[3,2,2,1],[1,1,2,1]],[[1,2,1,1],[3,2,2,0],[2,2,2,1],[1,1,2,1]],[[1,3,1,1],[2,2,2,0],[2,2,2,1],[1,1,2,1]],[[2,0,2,0],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,0,2,0],[3,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,0,2,0],[2,4,3,2],[1,1,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,4,2],[1,1,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[1,1,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,4,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,3,0],[0,3,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,3,0],[0,2,3,1]],[[1,0,2,0],[2,3,3,2],[1,1,3,0],[0,2,2,2]],[[2,0,2,0],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,0,3,0],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,0,2,0],[3,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[1,1,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[1,1,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[1,1,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,1,4,1],[0,2,1,1]],[[2,0,2,0],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,0,3,0],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,0,2,0],[3,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,0,2,0],[2,4,3,2],[1,1,3,1],[0,2,2,0]],[[1,0,2,0],[2,3,4,2],[1,1,3,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,3],[1,1,3,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,1,4,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,1,3,1],[0,3,2,0]],[[1,0,2,0],[2,3,3,2],[1,1,3,1],[0,2,3,0]],[[2,2,1,1],[2,2,2,0],[2,2,2,1],[1,1,2,1]],[[1,2,1,1],[2,2,2,0],[3,2,2,1],[0,2,2,1]],[[1,2,1,1],[3,2,2,0],[2,2,2,1],[0,2,2,1]],[[1,3,1,1],[2,2,2,0],[2,2,2,1],[0,2,2,1]],[[2,2,1,1],[2,2,2,0],[2,2,2,1],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[1,1,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,4,2],[1,1,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,3],[1,1,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,3,3],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,1,3,2],[0,0,2,2]],[[1,0,3,0],[2,3,3,2],[1,1,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[1,1,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[1,1,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,1,3,3],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,1,3,2],[0,1,1,2]],[[1,0,3,0],[2,3,3,2],[1,1,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[1,1,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[1,1,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,1,1],[2,2,2,0],[2,2,1,2],[2,1,2,1]],[[1,2,1,1],[2,2,2,0],[3,2,1,2],[1,1,2,1]],[[1,2,1,1],[3,2,2,0],[2,2,1,2],[1,1,2,1]],[[1,3,1,1],[2,2,2,0],[2,2,1,2],[1,1,2,1]],[[2,2,1,1],[2,2,2,0],[2,2,1,2],[1,1,2,1]],[[1,2,1,1],[2,2,2,0],[3,2,1,2],[0,2,2,1]],[[1,2,1,1],[3,2,2,0],[2,2,1,2],[0,2,2,1]],[[1,3,1,1],[2,2,2,0],[2,2,1,2],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[1,1,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,4,2],[1,1,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,3],[1,1,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,1,3,3],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,1,3,2],[1,0,1,2]],[[1,0,3,0],[2,3,3,2],[1,1,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[1,1,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,3],[1,1,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[1,1,3,3],[1,0,2,0]],[[2,2,1,1],[2,2,2,0],[2,2,1,2],[0,2,2,1]],[[1,2,1,1],[2,2,2,0],[2,1,3,2],[1,3,1,0]],[[1,2,1,1],[2,2,2,0],[2,1,3,2],[2,2,1,0]],[[1,2,1,1],[2,2,2,0],[3,1,3,2],[1,2,1,0]],[[1,2,1,1],[3,2,2,0],[2,1,3,2],[1,2,1,0]],[[1,3,1,1],[2,2,2,0],[2,1,3,2],[1,2,1,0]],[[2,2,1,1],[2,2,2,0],[2,1,3,2],[1,2,1,0]],[[1,2,1,1],[2,2,2,0],[2,1,3,2],[1,3,0,1]],[[1,2,1,1],[2,2,2,0],[2,1,3,2],[2,2,0,1]],[[1,2,1,1],[2,2,2,0],[3,1,3,2],[1,2,0,1]],[[1,2,1,1],[3,2,2,0],[2,1,3,2],[1,2,0,1]],[[1,3,1,1],[2,2,2,0],[2,1,3,2],[1,2,0,1]],[[2,2,1,1],[2,2,2,0],[2,1,3,2],[1,2,0,1]],[[2,0,2,0],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,0,2,0],[3,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,0,2,0],[2,4,3,2],[1,2,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,4,2],[1,2,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[1,2,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,0,3],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,0,2],[0,3,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,0,2],[0,2,3,1]],[[1,0,2,0],[2,3,3,2],[1,2,0,2],[0,2,2,2]],[[2,0,2,0],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,0,3,0],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,0,2,0],[3,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,0,2,0],[2,4,3,2],[1,2,1,2],[0,1,2,1]],[[1,0,2,0],[2,3,4,2],[1,2,1,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,3],[1,2,1,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,1,3],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,1,2],[0,1,3,1]],[[1,0,2,0],[2,3,3,2],[1,2,1,2],[0,1,2,2]],[[2,0,2,0],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,0,3,0],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,0,2,0],[3,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,0,2,0],[2,4,3,2],[1,2,1,2],[1,0,2,1]],[[1,0,2,0],[2,3,4,2],[1,2,1,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,3],[1,2,1,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,1,3],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,1,2],[1,0,3,1]],[[1,0,2,0],[2,3,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,1,1],[2,2,2,0],[2,1,3,1],[1,3,1,1]],[[1,2,1,1],[2,2,2,0],[2,1,3,1],[2,2,1,1]],[[1,2,1,1],[2,2,2,0],[3,1,3,1],[1,2,1,1]],[[1,2,1,1],[3,2,2,0],[2,1,3,1],[1,2,1,1]],[[1,3,1,1],[2,2,2,0],[2,1,3,1],[1,2,1,1]],[[2,2,1,1],[2,2,2,0],[2,1,3,1],[1,2,1,1]],[[1,2,1,1],[2,2,2,0],[2,1,3,0],[1,2,3,1]],[[1,2,1,1],[2,2,2,0],[2,1,3,0],[1,3,2,1]],[[2,0,2,0],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,0,3,0],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,0,2,0],[3,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,0,2,0],[2,4,3,2],[1,2,2,2],[0,0,2,1]],[[1,0,2,0],[2,3,4,2],[1,2,2,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,3],[1,2,2,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,2,3],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,2,2],[0,0,2,2]],[[2,0,2,0],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,0,3,0],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,0,2,0],[3,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,2],[1,2,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[1,2,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[1,2,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,2,2,3],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,2,2,2],[0,1,1,2]],[[2,0,2,0],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,0,2,0],[3,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[1,2,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[1,2,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[1,2,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[1,2,2,3],[0,1,2,0]],[[2,0,2,0],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,0,3,0],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[1,2,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,4,2],[1,2,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,3],[1,2,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[1,2,2,3],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[1,2,2,2],[0,2,0,2]],[[2,0,2,0],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,0,3,0],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[1,2,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[1,2,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,3],[1,2,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,1,1],[2,2,2,0],[2,1,3,0],[2,2,2,1]],[[1,2,1,1],[2,2,2,0],[3,1,3,0],[1,2,2,1]],[[1,2,1,1],[3,2,2,0],[2,1,3,0],[1,2,2,1]],[[1,3,1,1],[2,2,2,0],[2,1,3,0],[1,2,2,1]],[[2,2,1,1],[2,2,2,0],[2,1,3,0],[1,2,2,1]],[[2,0,2,0],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,0,3,0],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,0,2,0],[3,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,0,2,0],[2,4,3,2],[1,2,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,4,2],[1,2,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,3],[1,2,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,2,2,3],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,2,2,2],[1,0,1,2]],[[2,0,2,0],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,0,3,0],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,0,2,0],[3,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,0,2,0],[2,4,3,2],[1,2,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[1,2,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,3],[1,2,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[1,2,2,3],[1,0,2,0]],[[2,0,2,0],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,0,3,0],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,2],[1,2,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,4,2],[1,2,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,3],[1,2,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[1,2,2,3],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[1,2,2,2],[1,1,0,2]],[[2,0,2,0],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,0,3,0],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[1,2,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,4,2],[1,2,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,3],[1,2,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,1,1],[2,2,2,0],[2,1,2,2],[1,2,3,0]],[[1,2,1,1],[2,2,2,0],[2,1,2,2],[1,3,2,0]],[[1,2,1,1],[2,2,2,0],[2,1,2,2],[2,2,2,0]],[[1,2,1,1],[2,2,2,0],[3,1,2,2],[1,2,2,0]],[[1,2,1,1],[3,2,2,0],[2,1,2,2],[1,2,2,0]],[[1,3,1,1],[2,2,2,0],[2,1,2,2],[1,2,2,0]],[[2,2,1,1],[2,2,2,0],[2,1,2,2],[1,2,2,0]],[[1,2,1,1],[2,2,2,0],[2,1,2,1],[1,2,2,2]],[[1,2,1,1],[2,2,2,0],[2,1,2,1],[1,2,3,1]],[[1,2,1,1],[2,2,2,0],[2,1,2,1],[1,3,2,1]],[[1,2,1,1],[2,2,2,0],[2,1,2,1],[2,2,2,1]],[[1,2,1,1],[2,2,2,0],[3,1,2,1],[1,2,2,1]],[[1,2,1,1],[3,2,2,0],[2,1,2,1],[1,2,2,1]],[[1,3,1,1],[2,2,2,0],[2,1,2,1],[1,2,2,1]],[[2,2,1,1],[2,2,2,0],[2,1,2,1],[1,2,2,1]],[[1,2,1,1],[2,2,2,0],[2,1,1,2],[1,2,2,2]],[[1,2,1,1],[2,2,2,0],[2,1,1,2],[1,2,3,1]],[[1,2,1,1],[2,2,2,0],[2,1,1,2],[1,3,2,1]],[[1,2,1,1],[2,2,2,0],[2,1,1,2],[2,2,2,1]],[[1,2,1,1],[2,2,2,0],[2,1,1,3],[1,2,2,1]],[[1,2,1,1],[2,2,2,0],[3,1,1,2],[1,2,2,1]],[[1,2,1,1],[3,2,2,0],[2,1,1,2],[1,2,2,1]],[[1,3,1,1],[2,2,2,0],[2,1,1,2],[1,2,2,1]],[[2,2,1,1],[2,2,2,0],[2,1,1,2],[1,2,2,1]],[[2,0,2,0],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,0,3,0],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,0,2,0],[3,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,0,2,0],[2,4,3,2],[1,2,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,4,2],[1,2,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,3],[1,2,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,4,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,3,0],[0,1,3,1]],[[1,0,2,0],[2,3,3,2],[1,2,3,0],[0,1,2,2]],[[2,0,2,0],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,0,3,0],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,0,2,0],[3,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[1,2,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[1,2,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[1,2,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,2,4,0],[0,2,1,1]],[[2,0,2,0],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,0,3,0],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,0,2,0],[3,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,0,2,0],[2,4,3,2],[1,2,3,0],[1,0,2,1]],[[1,0,2,0],[2,3,4,2],[1,2,3,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,3],[1,2,3,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,4,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,3,0],[1,0,3,1]],[[1,0,2,0],[2,3,3,2],[1,2,3,0],[1,0,2,2]],[[2,0,2,0],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[1,2,3,0],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[1,2,3,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[1,2,3,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,2,4,0],[1,1,1,1]],[[1,2,1,1],[2,2,2,0],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[2,2,2,0],[2,0,3,2],[1,3,2,0]],[[1,2,1,1],[2,2,2,0],[2,0,3,2],[2,2,2,0]],[[1,2,1,1],[2,2,2,0],[2,0,3,3],[1,2,2,0]],[[1,2,1,1],[2,2,2,0],[2,0,4,2],[1,2,2,0]],[[1,2,1,1],[2,2,2,0],[3,0,3,2],[1,2,2,0]],[[1,2,1,1],[3,2,2,0],[2,0,3,2],[1,2,2,0]],[[1,3,1,1],[2,2,2,0],[2,0,3,2],[1,2,2,0]],[[2,0,2,0],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,0,3,0],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,0,2,0],[3,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,0,2,0],[2,4,3,2],[1,2,3,1],[0,0,2,1]],[[1,0,2,0],[2,3,4,2],[1,2,3,1],[0,0,2,1]],[[1,0,2,0],[2,3,3,3],[1,2,3,1],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,2,4,1],[0,0,2,1]],[[2,0,2,0],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,0,3,0],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,0,2,0],[3,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,0,2,0],[2,4,3,2],[1,2,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[1,2,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[1,2,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,2,4,1],[0,1,1,1]],[[2,0,2,0],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,0,2,0],[3,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[1,2,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[1,2,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[1,2,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[1,2,4,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[1,2,3,1],[0,1,3,0]],[[2,0,2,0],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,0,3,0],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,0,2,0],[3,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[1,2,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,4,2],[1,2,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,3],[1,2,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[1,2,4,1],[0,2,0,1]],[[2,0,2,0],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,0,3,0],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[1,2,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[1,2,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,3],[1,2,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[1,2,4,1],[0,2,1,0]],[[2,2,1,1],[2,2,2,0],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[2,2,2,0],[2,0,3,2],[1,2,1,2]],[[1,2,1,1],[2,2,2,0],[2,0,3,3],[1,2,1,1]],[[1,2,1,1],[2,2,2,0],[2,0,4,2],[1,2,1,1]],[[1,2,1,1],[2,2,2,0],[2,0,3,1],[1,2,2,2]],[[1,2,1,1],[2,2,2,0],[2,0,3,1],[1,2,3,1]],[[1,2,1,1],[2,2,2,0],[2,0,3,1],[1,3,2,1]],[[1,2,1,1],[2,2,2,0],[2,0,3,1],[2,2,2,1]],[[1,2,1,1],[2,2,2,0],[2,0,4,1],[1,2,2,1]],[[1,2,1,1],[2,2,2,0],[3,0,3,1],[1,2,2,1]],[[2,0,2,0],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,0,3,0],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,0,2,0],[3,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,0,2,0],[2,4,3,2],[1,2,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,4,2],[1,2,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,3],[1,2,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,2,4,1],[1,0,1,1]],[[2,0,2,0],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,0,3,0],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,0,2,0],[3,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,0,2,0],[2,4,3,2],[1,2,3,1],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[1,2,3,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,3],[1,2,3,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[1,2,4,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[1,2,3,1],[1,0,3,0]],[[2,0,2,0],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,0,3,0],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,0,2,0],[3,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,0,2,0],[2,4,3,2],[1,2,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,4,2],[1,2,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,3],[1,2,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[1,2,4,1],[1,1,0,1]],[[2,0,2,0],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,0,3,0],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[1,2,3,1],[1,1,1,0]],[[1,0,2,0],[2,3,4,2],[1,2,3,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,3],[1,2,3,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,1,1],[3,2,2,0],[2,0,3,1],[1,2,2,1]],[[1,3,1,1],[2,2,2,0],[2,0,3,1],[1,2,2,1]],[[2,2,1,1],[2,2,2,0],[2,0,3,1],[1,2,2,1]],[[1,2,1,1],[2,2,2,0],[2,0,2,2],[1,2,2,2]],[[1,2,1,1],[2,2,2,0],[2,0,2,2],[1,2,3,1]],[[1,2,1,1],[2,2,2,0],[2,0,2,2],[1,3,2,1]],[[1,2,1,1],[2,2,2,0],[2,0,2,2],[2,2,2,1]],[[1,2,1,1],[2,2,2,0],[2,0,2,3],[1,2,2,1]],[[1,2,1,1],[2,2,2,0],[3,0,2,2],[1,2,2,1]],[[1,2,1,1],[3,2,2,0],[2,0,2,2],[1,2,2,1]],[[1,3,1,1],[2,2,2,0],[2,0,2,2],[1,2,2,1]],[[2,2,1,1],[2,2,2,0],[2,0,2,2],[1,2,2,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,2],[1,2,0,0]],[[1,3,1,1],[2,2,2,0],[1,3,3,2],[1,2,0,0]],[[2,2,1,1],[2,2,2,0],[1,3,3,2],[1,2,0,0]],[[2,0,2,0],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,0,3,0],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,0,2,0],[3,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,0,2,0],[2,4,3,2],[1,2,3,2],[0,1,0,1]],[[1,0,2,0],[2,3,4,2],[1,2,3,2],[0,1,0,1]],[[1,0,2,0],[2,3,3,3],[1,2,3,2],[0,1,0,1]],[[1,0,2,0],[2,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,2],[1,1,1,0]],[[1,3,1,1],[2,2,2,0],[1,3,3,2],[1,1,1,0]],[[2,2,1,1],[2,2,2,0],[1,3,3,2],[1,1,1,0]],[[1,2,1,1],[3,2,2,0],[1,3,3,2],[1,1,0,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,2],[1,1,0,1]],[[2,2,1,1],[2,2,2,0],[1,3,3,2],[1,1,0,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,2],[1,0,2,0]],[[1,3,1,1],[2,2,2,0],[1,3,3,2],[1,0,2,0]],[[2,2,1,1],[2,2,2,0],[1,3,3,2],[1,0,2,0]],[[1,2,1,1],[3,2,2,0],[1,3,3,2],[1,0,1,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,2],[1,0,1,1]],[[2,2,1,1],[2,2,2,0],[1,3,3,2],[1,0,1,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,2],[0,2,1,0]],[[1,3,1,1],[2,2,2,0],[1,3,3,2],[0,2,1,0]],[[2,2,1,1],[2,2,2,0],[1,3,3,2],[0,2,1,0]],[[1,2,1,1],[3,2,2,0],[1,3,3,2],[0,2,0,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,2],[0,2,0,1]],[[2,2,1,1],[2,2,2,0],[1,3,3,2],[0,2,0,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,2],[0,1,2,0]],[[2,0,2,0],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,0,3,0],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,0,2,0],[3,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,0,2,0],[2,4,3,2],[1,2,3,2],[1,0,0,1]],[[1,0,2,0],[2,3,4,2],[1,2,3,2],[1,0,0,1]],[[1,0,2,0],[2,3,3,3],[1,2,3,2],[1,0,0,1]],[[1,0,2,0],[2,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,2],[0,1,2,0]],[[2,2,1,1],[2,2,2,0],[1,3,3,2],[0,1,2,0]],[[1,2,1,1],[3,2,2,0],[1,3,3,2],[0,1,1,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,2],[0,1,1,1]],[[2,2,1,1],[2,2,2,0],[1,3,3,2],[0,1,1,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,1],[1,2,0,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,1],[1,2,0,1]],[[2,2,1,1],[2,2,2,0],[1,3,3,1],[1,2,0,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,1],[1,1,1,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,1],[1,1,1,1]],[[2,2,1,1],[2,2,2,0],[1,3,3,1],[1,1,1,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,1],[1,0,2,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,1],[1,0,2,1]],[[2,2,1,1],[2,2,2,0],[1,3,3,1],[1,0,2,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,1],[0,2,1,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,1],[0,2,1,1]],[[2,2,1,1],[2,2,2,0],[1,3,3,1],[0,2,1,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,1],[0,1,2,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,1],[0,1,2,1]],[[2,2,1,1],[2,2,2,0],[1,3,3,1],[0,1,2,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,0],[1,1,2,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,0],[1,1,2,1]],[[2,2,1,1],[2,2,2,0],[1,3,3,0],[1,1,2,1]],[[1,2,1,1],[3,2,2,0],[1,3,3,0],[0,2,2,1]],[[1,3,1,1],[2,2,2,0],[1,3,3,0],[0,2,2,1]],[[2,2,1,1],[2,2,2,0],[1,3,3,0],[0,2,2,1]],[[1,2,1,1],[3,2,2,0],[1,3,2,2],[1,1,2,0]],[[1,3,1,1],[2,2,2,0],[1,3,2,2],[1,1,2,0]],[[2,2,1,1],[2,2,2,0],[1,3,2,2],[1,1,2,0]],[[1,2,1,1],[3,2,2,0],[1,3,2,2],[0,2,2,0]],[[1,3,1,1],[2,2,2,0],[1,3,2,2],[0,2,2,0]],[[2,2,1,1],[2,2,2,0],[1,3,2,2],[0,2,2,0]],[[1,2,1,1],[3,2,2,0],[1,3,2,1],[1,1,2,1]],[[1,3,1,1],[2,2,2,0],[1,3,2,1],[1,1,2,1]],[[2,2,1,1],[2,2,2,0],[1,3,2,1],[1,1,2,1]],[[1,2,1,1],[3,2,2,0],[1,3,2,1],[0,2,2,1]],[[1,3,1,1],[2,2,2,0],[1,3,2,1],[0,2,2,1]],[[2,2,1,1],[2,2,2,0],[1,3,2,1],[0,2,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,0,2,0],[3,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,0,2,0],[2,4,3,2],[1,3,0,1],[0,2,2,1]],[[1,0,2,0],[2,3,4,2],[1,3,0,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[1,3,0,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,4,0,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,1],[0,3,2,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,1],[0,2,3,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,1],[0,2,2,2]],[[2,0,2,0],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,0,3,0],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[1,3,0,1],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[1,3,0,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[1,3,0,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,4,0,1],[1,1,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,0,3,0],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,0,2,0],[3,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,0,2,0],[2,4,3,2],[1,3,0,2],[0,1,2,1]],[[1,0,2,0],[2,3,4,2],[1,3,0,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,3],[1,3,0,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,4,0,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,3],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,2],[0,1,3,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,2],[0,1,2,2]],[[2,0,2,0],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,0,3,0],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,0,2,0],[3,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[1,3,0,2],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[1,3,0,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[1,3,0,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,4,0,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,3],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,2],[0,3,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,2],[0,2,1,2]],[[2,0,2,0],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,0,2],[0,2,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,0,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,3],[1,3,0,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,4,0,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,3,0,3],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,3,0,2],[0,3,2,0]],[[1,0,2,0],[2,3,3,2],[1,3,0,2],[0,2,3,0]],[[2,0,2,0],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,0,3,0],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,0,2,0],[3,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,0,2,0],[2,4,3,2],[1,3,0,2],[1,0,2,1]],[[1,0,2,0],[2,3,4,2],[1,3,0,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,3],[1,3,0,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,4,0,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,3],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,2],[1,0,3,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,2],[1,0,2,2]],[[2,0,2,0],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[1,3,0,2],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[1,3,0,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[1,3,0,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,4,0,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,3],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,0,2],[1,1,1,2]],[[2,0,2,0],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,0,2],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,0,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,3],[1,3,0,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[1,4,0,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,1,1],[3,2,2,0],[1,3,1,2],[1,1,2,1]],[[1,3,1,1],[2,2,2,0],[1,3,1,2],[1,1,2,1]],[[2,2,1,1],[2,2,2,0],[1,3,1,2],[1,1,2,1]],[[1,2,1,1],[3,2,2,0],[1,3,1,2],[0,2,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,0,2,0],[3,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,0,2,0],[2,4,3,2],[1,3,1,0],[0,2,2,1]],[[1,0,2,0],[2,3,4,2],[1,3,1,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[1,3,1,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,4,1,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,0],[0,3,2,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,0],[0,2,3,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,0],[0,2,2,2]],[[2,0,2,0],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,0,3,0],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[1,3,1,0],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[1,3,1,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[1,3,1,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,4,1,0],[1,1,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,1,1],[0,2,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,1,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,3],[1,3,1,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,4,1,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[1,3,1,1],[0,3,2,0]],[[1,0,2,0],[2,3,3,2],[1,3,1,1],[0,2,3,0]],[[2,0,2,0],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,1,1],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,1,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,3],[1,3,1,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[1,4,1,1],[1,1,2,0]],[[1,3,1,1],[2,2,2,0],[1,3,1,2],[0,2,2,1]],[[2,2,1,1],[2,2,2,0],[1,3,1,2],[0,2,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,0,3,0],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,0,2,0],[3,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,2],[1,3,1,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[1,3,1,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[1,3,1,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,4,1,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,3],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,2],[0,1,1,2]],[[2,0,2,0],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,1,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,1,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[1,3,1,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[1,4,1,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[1,3,1,3],[0,1,2,0]],[[2,0,2,0],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,0,3,0],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[1,3,1,2],[0,2,0,1]],[[1,0,2,0],[2,3,4,2],[1,3,1,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,3],[1,3,1,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[1,4,1,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,3],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,2],[0,3,0,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,2],[0,2,0,2]],[[2,0,2,0],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,0,3,0],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[1,3,1,2],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[1,3,1,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,3],[1,3,1,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[1,4,1,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[1,3,1,3],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[1,3,1,2],[0,3,1,0]],[[2,0,2,0],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,0,3,0],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,0,2,0],[3,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,0,2,0],[2,4,3,2],[1,3,1,2],[1,0,1,1]],[[1,0,2,0],[2,3,4,2],[1,3,1,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,3],[1,3,1,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,4,1,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,3],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,2],[1,0,1,2]],[[2,0,2,0],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,1,2],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,1,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,3],[1,3,1,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[1,4,1,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[1,3,1,3],[1,0,2,0]],[[2,0,2,0],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,0,3,0],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,2],[1,3,1,2],[1,1,0,1]],[[1,0,2,0],[2,3,4,2],[1,3,1,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,3],[1,3,1,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[1,4,1,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,3],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[1,3,1,2],[1,1,0,2]],[[2,0,2,0],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,0,3,0],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[1,3,1,2],[1,1,1,0]],[[1,0,2,0],[2,3,4,2],[1,3,1,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,3],[1,3,1,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[1,4,1,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[1,3,1,3],[1,1,1,0]],[[1,2,1,1],[3,2,2,0],[0,3,3,2],[1,2,1,0]],[[1,3,1,1],[2,2,2,0],[0,3,3,2],[1,2,1,0]],[[2,2,1,1],[2,2,2,0],[0,3,3,2],[1,2,1,0]],[[1,2,1,1],[3,2,2,0],[0,3,3,2],[1,2,0,1]],[[1,3,1,1],[2,2,2,0],[0,3,3,2],[1,2,0,1]],[[2,2,1,1],[2,2,2,0],[0,3,3,2],[1,2,0,1]],[[2,0,2,0],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,0,3,0],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,0,2,0],[3,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,0,2,0],[2,4,3,2],[1,3,1,2],[1,2,0,0]],[[1,0,2,0],[2,3,4,2],[1,3,1,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,3],[1,3,1,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[1,4,1,2],[1,2,0,0]],[[1,2,1,1],[3,2,2,0],[0,3,3,2],[1,1,2,0]],[[1,3,1,1],[2,2,2,0],[0,3,3,2],[1,1,2,0]],[[2,2,1,1],[2,2,2,0],[0,3,3,2],[1,1,2,0]],[[1,2,1,1],[3,2,2,0],[0,3,3,2],[1,1,1,1]],[[1,3,1,1],[2,2,2,0],[0,3,3,2],[1,1,1,1]],[[2,2,1,1],[2,2,2,0],[0,3,3,2],[1,1,1,1]],[[1,2,1,1],[3,2,2,0],[0,3,3,1],[1,2,1,1]],[[1,3,1,1],[2,2,2,0],[0,3,3,1],[1,2,1,1]],[[2,2,1,1],[2,2,2,0],[0,3,3,1],[1,2,1,1]],[[1,2,1,1],[3,2,2,0],[0,3,3,1],[1,1,2,1]],[[1,3,1,1],[2,2,2,0],[0,3,3,1],[1,1,2,1]],[[2,2,1,1],[2,2,2,0],[0,3,3,1],[1,1,2,1]],[[1,2,1,1],[3,2,2,0],[0,3,3,0],[1,2,2,1]],[[1,3,1,1],[2,2,2,0],[0,3,3,0],[1,2,2,1]],[[2,2,1,1],[2,2,2,0],[0,3,3,0],[1,2,2,1]],[[1,2,1,1],[3,2,2,0],[0,3,2,2],[1,2,2,0]],[[1,3,1,1],[2,2,2,0],[0,3,2,2],[1,2,2,0]],[[2,2,1,1],[2,2,2,0],[0,3,2,2],[1,2,2,0]],[[1,2,1,1],[3,2,2,0],[0,3,2,1],[1,2,2,1]],[[1,3,1,1],[2,2,2,0],[0,3,2,1],[1,2,2,1]],[[2,2,1,1],[2,2,2,0],[0,3,2,1],[1,2,2,1]],[[1,2,1,1],[3,2,2,0],[0,3,1,2],[1,2,2,1]],[[1,3,1,1],[2,2,2,0],[0,3,1,2],[1,2,2,1]],[[2,2,1,1],[2,2,2,0],[0,3,1,2],[1,2,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,0,3,0],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,0,2,0],[3,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,0,2,0],[2,4,3,2],[1,3,2,0],[0,1,2,1]],[[1,0,2,0],[2,3,4,2],[1,3,2,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,3],[1,3,2,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[1,4,2,0],[0,1,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,0,3,0],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,0,2,0],[3,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[1,3,2,0],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[1,3,2,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[1,3,2,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,4,2,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,2,0],[0,3,1,1]],[[2,0,2,0],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,0,3,0],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,0,2,0],[3,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,0,2,0],[2,4,3,2],[1,3,2,0],[1,0,2,1]],[[1,0,2,0],[2,3,4,2],[1,3,2,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,3],[1,3,2,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,4,2,0],[1,0,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[1,3,2,0],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[1,3,2,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[1,3,2,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,4,2,0],[1,1,1,1]],[[2,0,2,0],[2,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,0,3,0],[2,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,0,2,0],[3,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,0,2,0],[2,4,3,2],[1,3,2,0],[1,2,0,1]],[[1,0,2,0],[2,3,4,2],[1,3,2,0],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[1,4,2,0],[1,2,0,1]],[[2,0,2,0],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,0,3,0],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,0,2,0],[3,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,0,2,0],[2,4,3,2],[1,3,2,1],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[1,3,2,1],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[1,3,2,1],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[1,4,2,1],[0,1,1,1]],[[2,0,2,0],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,2,1],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,2,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[1,3,2,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[1,4,2,1],[0,1,2,0]],[[2,0,2,0],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,0,3,0],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,0,2,0],[3,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[1,3,2,1],[0,2,0,1]],[[1,0,2,0],[2,3,4,2],[1,3,2,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,3],[1,3,2,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[1,4,2,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[1,3,2,1],[0,3,0,1]],[[2,0,2,0],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,0,3,0],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[1,3,2,1],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[1,3,2,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,3],[1,3,2,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[1,4,2,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[1,3,2,1],[0,3,1,0]],[[2,0,2,0],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,0,3,0],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,0,2,0],[3,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,0,2,0],[2,4,3,2],[1,3,2,1],[1,0,1,1]],[[1,0,2,0],[2,3,4,2],[1,3,2,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,3],[1,3,2,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,4,2,1],[1,0,1,1]],[[2,0,2,0],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,2,1],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,2,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,3],[1,3,2,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[1,4,2,1],[1,0,2,0]],[[2,0,2,0],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,0,3,0],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,0,2,0],[3,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,0,2,0],[2,4,3,2],[1,3,2,1],[1,1,0,1]],[[1,0,2,0],[2,3,4,2],[1,3,2,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,3],[1,3,2,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[1,4,2,1],[1,1,0,1]],[[2,0,2,0],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,0,3,0],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[1,3,2,1],[1,1,1,0]],[[1,0,2,0],[2,3,4,2],[1,3,2,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,3],[1,3,2,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[1,4,2,1],[1,1,1,0]],[[2,0,2,0],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,0,3,0],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,0,2,0],[3,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,0,2,0],[2,4,3,2],[1,3,2,1],[1,2,0,0]],[[1,0,2,0],[2,3,4,2],[1,3,2,1],[1,2,0,0]],[[1,0,2,0],[2,3,3,3],[1,3,2,1],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[1,4,2,1],[1,2,0,0]],[[2,0,2,0],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,0,3,0],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,0,2,0],[3,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,0,2,0],[2,4,3,2],[1,3,2,2],[0,0,1,1]],[[1,0,2,0],[2,3,4,2],[1,3,2,2],[0,0,1,1]],[[1,0,2,0],[2,3,3,3],[1,3,2,2],[0,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,2,3],[0,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,2,2],[0,0,1,2]],[[2,0,2,0],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,2,2],[0,0,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,2,2],[0,0,2,0]],[[1,0,2,0],[2,3,3,3],[1,3,2,2],[0,0,2,0]],[[1,0,2,0],[2,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,1,1],[2,2,1,2],[2,2,0,2],[2,1,2,1]],[[1,2,1,1],[2,2,1,2],[3,2,0,2],[1,1,2,1]],[[1,2,1,1],[3,2,1,2],[2,2,0,2],[1,1,2,1]],[[1,3,1,1],[2,2,1,2],[2,2,0,2],[1,1,2,1]],[[2,2,1,1],[2,2,1,2],[2,2,0,2],[1,1,2,1]],[[1,2,1,1],[2,2,1,2],[3,2,0,2],[0,2,2,1]],[[1,2,1,1],[3,2,1,2],[2,2,0,2],[0,2,2,1]],[[1,3,1,1],[2,2,1,2],[2,2,0,2],[0,2,2,1]],[[2,2,1,1],[2,2,1,2],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[2,2,1,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,1],[2,2,1,2],[2,1,0,2],[1,2,3,1]],[[1,2,1,1],[2,2,1,2],[2,1,0,2],[1,3,2,1]],[[1,2,1,1],[2,2,1,2],[2,1,0,2],[2,2,2,1]],[[1,2,1,1],[2,2,1,2],[2,1,0,3],[1,2,2,1]],[[1,2,1,1],[2,2,1,2],[3,1,0,2],[1,2,2,1]],[[1,2,1,1],[2,2,1,3],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[3,2,1,2],[2,1,0,2],[1,2,2,1]],[[1,2,1,2],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[1,3,1,1],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[2,2,1,1],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,0,3,0],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,0,2,0],[3,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,0,2,0],[2,4,3,2],[1,3,3,0],[0,0,2,1]],[[1,0,2,0],[2,3,4,2],[1,3,3,0],[0,0,2,1]],[[1,0,2,0],[2,3,3,3],[1,3,3,0],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[1,3,4,0],[0,0,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,3,0],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,3,0],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[1,4,3,0],[0,1,2,0]],[[2,0,2,0],[2,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,0,3,0],[2,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[1,3,3,0],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[1,3,3,0],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[1,4,3,0],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[1,3,3,0],[0,3,1,0]],[[2,0,2,0],[2,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,3,0],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,3,0],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[1,4,3,0],[1,0,2,0]],[[2,0,2,0],[2,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,0,3,0],[2,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[1,3,3,0],[1,1,1,0]],[[1,0,2,0],[2,3,4,2],[1,3,3,0],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[1,4,3,0],[1,1,1,0]],[[2,0,2,0],[2,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,0,3,0],[2,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,0,2,0],[3,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,0,2,0],[2,4,3,2],[1,3,3,0],[1,2,0,0]],[[1,0,2,0],[2,3,4,2],[1,3,3,0],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,1,1],[2,2,1,2],[2,0,1,2],[1,2,2,2]],[[1,2,1,1],[2,2,1,2],[2,0,1,2],[1,2,3,1]],[[1,2,1,1],[2,2,1,2],[2,0,1,2],[1,3,2,1]],[[1,2,1,1],[2,2,1,2],[2,0,1,2],[2,2,2,1]],[[1,2,1,1],[2,2,1,2],[2,0,1,3],[1,2,2,1]],[[1,2,1,1],[2,2,1,2],[3,0,1,2],[1,2,2,1]],[[1,2,1,1],[2,2,1,3],[2,0,1,2],[1,2,2,1]],[[1,2,1,1],[3,2,1,2],[2,0,1,2],[1,2,2,1]],[[1,2,1,2],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[1,3,1,1],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[2,2,1,1],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,0,3,0],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,0,2,0],[3,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,0,2,0],[2,4,3,2],[1,3,3,1],[0,0,1,1]],[[1,0,2,0],[2,3,4,2],[1,3,3,1],[0,0,1,1]],[[1,0,2,0],[2,3,3,3],[1,3,3,1],[0,0,1,1]],[[1,0,2,0],[2,3,3,2],[1,3,4,1],[0,0,1,1]],[[2,0,2,0],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,0,3,0],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,0,2,0],[3,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,0,2,0],[2,4,3,2],[1,3,3,1],[0,0,2,0]],[[1,0,2,0],[2,3,4,2],[1,3,3,1],[0,0,2,0]],[[1,0,2,0],[2,3,3,3],[1,3,3,1],[0,0,2,0]],[[1,0,2,0],[2,3,3,2],[1,3,4,1],[0,0,2,0]],[[2,0,2,0],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,0,3,0],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,0,2,0],[3,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,0,2,0],[2,4,3,2],[1,3,3,1],[0,2,0,0]],[[1,0,2,0],[2,3,4,2],[1,3,3,1],[0,2,0,0]],[[1,0,2,0],[2,3,3,3],[1,3,3,1],[0,2,0,0]],[[1,0,2,0],[2,3,3,2],[1,4,3,1],[0,2,0,0]],[[2,0,2,0],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,0,3,0],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,0,2,0],[3,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,0,2,0],[2,4,3,2],[1,3,3,1],[1,1,0,0]],[[1,0,2,0],[2,3,4,2],[1,3,3,1],[1,1,0,0]],[[1,0,2,0],[2,3,3,3],[1,3,3,1],[1,1,0,0]],[[1,0,2,0],[2,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,1,1],[3,2,1,2],[1,3,0,2],[1,1,2,1]],[[1,3,1,1],[2,2,1,2],[1,3,0,2],[1,1,2,1]],[[2,2,1,1],[2,2,1,2],[1,3,0,2],[1,1,2,1]],[[1,2,1,1],[3,2,1,2],[1,3,0,2],[0,2,2,1]],[[1,3,1,1],[2,2,1,2],[1,3,0,2],[0,2,2,1]],[[2,2,1,1],[2,2,1,2],[1,3,0,2],[0,2,2,1]],[[1,2,1,1],[3,2,1,2],[0,3,0,2],[1,2,2,1]],[[1,3,1,1],[2,2,1,2],[0,3,0,2],[1,2,2,1]],[[2,2,1,1],[2,2,1,2],[0,3,0,2],[1,2,2,1]],[[2,0,2,0],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,0,3,0],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,0,2,0],[3,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,0,2,0],[2,4,3,2],[1,3,3,2],[0,0,0,1]],[[1,0,2,0],[2,3,4,2],[1,3,3,2],[0,0,0,1]],[[1,0,2,0],[2,3,3,3],[1,3,3,2],[0,0,0,1]],[[1,0,2,0],[2,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,1,1],[2,2,0,2],[3,3,3,2],[1,0,1,0]],[[1,2,1,1],[3,2,0,2],[2,3,3,2],[1,0,1,0]],[[1,3,1,1],[2,2,0,2],[2,3,3,2],[1,0,1,0]],[[2,2,1,1],[2,2,0,2],[2,3,3,2],[1,0,1,0]],[[1,2,1,1],[2,2,0,2],[3,3,3,2],[1,0,0,1]],[[1,2,1,1],[3,2,0,2],[2,3,3,2],[1,0,0,1]],[[1,3,1,1],[2,2,0,2],[2,3,3,2],[1,0,0,1]],[[2,2,1,1],[2,2,0,2],[2,3,3,2],[1,0,0,1]],[[1,2,1,1],[2,2,0,2],[2,2,3,2],[2,2,0,0]],[[1,2,1,1],[2,2,0,2],[3,2,3,2],[1,2,0,0]],[[1,2,1,1],[3,2,0,2],[2,2,3,2],[1,2,0,0]],[[1,3,1,1],[2,2,0,2],[2,2,3,2],[1,2,0,0]],[[2,2,1,1],[2,2,0,2],[2,2,3,2],[1,2,0,0]],[[2,0,2,0],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[2,0,1,1],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[2,0,1,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[2,0,1,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[3,0,1,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,1],[1,2,2,2]],[[2,0,2,0],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,0,2,0],[3,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,0,2,0],[2,4,3,2],[2,0,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,4,2],[2,0,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[2,0,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[3,0,1,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,3],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[0,3,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[0,2,3,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[0,2,2,2]],[[2,0,2,0],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,0,3,0],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[2,0,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[2,0,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[2,0,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[3,0,1,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,3],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[2,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[1,1,3,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[1,1,2,2]],[[2,0,2,0],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[2,0,1,2],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[2,0,1,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[2,0,1,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[3,0,1,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,3],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[2,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[1,3,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[1,2,1,2]],[[2,0,2,0],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,0,3,0],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[2,0,1,2],[1,2,2,0]],[[1,0,2,0],[2,3,4,2],[2,0,1,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,3],[2,0,1,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[3,0,1,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,1,3],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,1,2],[1,2,3,0]],[[2,0,2,0],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[2,0,2,0],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[2,0,2,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[2,0,2,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[3,0,2,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,0],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,0],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,0],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,0],[1,2,2,2]],[[2,0,2,0],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,0,3,0],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[2,0,2,1],[1,2,2,0]],[[1,0,2,0],[2,3,4,2],[2,0,2,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,3],[2,0,2,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[3,0,2,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,2,1],[2,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,2,1],[1,3,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,2,1],[1,2,3,0]],[[2,0,2,0],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,0,3,0],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,0,2,0],[3,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[2,0,2,2],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[2,0,2,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[2,0,2,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[3,0,2,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,3],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,2],[0,2,1,2]],[[2,0,2,0],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,0,3,0],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,0,2,0],[3,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,0,2,0],[2,4,3,2],[2,0,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,4,2],[2,0,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,3],[2,0,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[3,0,2,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,2,3],[0,2,2,0]],[[2,0,2,0],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[2,0,2,2],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[2,0,2,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[2,0,2,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[3,0,2,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,3],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,2],[2,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,2],[1,1,1,2]],[[2,0,2,0],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,0,3,0],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[2,0,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[2,0,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,3],[2,0,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[3,0,2,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,2,3],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,2,2],[2,1,2,0]],[[2,0,2,0],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,0,3,0],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,0,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,4,2],[2,0,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,3],[2,0,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,0,2,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,3],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,2],[2,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,2],[1,3,0,1]],[[1,0,2,0],[2,3,3,2],[2,0,2,2],[1,2,0,2]],[[2,0,2,0],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,0,3,0],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,0,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,4,2],[2,0,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,3],[2,0,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,0,2,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,0,2,3],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,0,2,2],[2,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,0,2,2],[1,3,1,0]],[[1,2,1,1],[2,2,0,2],[2,2,3,2],[2,1,1,0]],[[1,2,1,1],[2,2,0,2],[3,2,3,2],[1,1,1,0]],[[1,2,1,1],[3,2,0,2],[2,2,3,2],[1,1,1,0]],[[1,3,1,1],[2,2,0,2],[2,2,3,2],[1,1,1,0]],[[2,2,1,1],[2,2,0,2],[2,2,3,2],[1,1,1,0]],[[1,2,1,1],[2,2,0,2],[2,2,3,2],[2,1,0,1]],[[1,2,1,1],[2,2,0,2],[3,2,3,2],[1,1,0,1]],[[1,2,1,1],[3,2,0,2],[2,2,3,2],[1,1,0,1]],[[1,3,1,1],[2,2,0,2],[2,2,3,2],[1,1,0,1]],[[2,2,1,1],[2,2,0,2],[2,2,3,2],[1,1,0,1]],[[2,0,2,0],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,0,2,0],[3,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,0,2,0],[2,4,3,2],[2,0,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,4,2],[2,0,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[2,0,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[3,0,3,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,4,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,0],[0,3,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,0],[0,2,3,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,0],[0,2,2,2]],[[2,0,2,0],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,0,3,0],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[2,0,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[2,0,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[2,0,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[3,0,3,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,4,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,0],[2,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,0],[1,1,3,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,0],[1,1,2,2]],[[2,0,2,0],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[2,0,3,0],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[2,0,3,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[2,0,3,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[3,0,3,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,4,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,0],[2,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,0],[1,3,1,1]],[[2,0,2,0],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,0,3,0],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,0,2,0],[3,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[2,0,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[2,0,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[2,0,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[3,0,3,1],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,4,1],[0,2,1,1]],[[2,0,2,0],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,0,3,0],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,0,2,0],[3,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,0,2,0],[2,4,3,2],[2,0,3,1],[0,2,2,0]],[[1,0,2,0],[2,3,4,2],[2,0,3,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,3],[2,0,3,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[3,0,3,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,4,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,3,1],[0,3,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,3,1],[0,2,3,0]],[[2,0,2,0],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[2,0,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[2,0,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[2,0,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[3,0,3,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,4,1],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,1],[2,1,1,1]],[[2,0,2,0],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,0,3,0],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[2,0,3,1],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[2,0,3,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,3],[2,0,3,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[3,0,3,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,4,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,3,1],[2,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,3,1],[1,1,3,0]],[[2,0,2,0],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,0,3,0],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,0,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,4,2],[2,0,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,3],[2,0,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,0,3,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,0,4,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,1],[2,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,1],[1,3,0,1]],[[2,0,2,0],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,0,3,0],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,0,3,1],[1,2,1,0]],[[1,0,2,0],[2,3,4,2],[2,0,3,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,3],[2,0,3,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,0,3,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,0,4,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,0,3,1],[2,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,0,3,1],[1,3,1,0]],[[1,2,1,1],[2,2,0,2],[2,2,3,2],[2,0,2,0]],[[1,2,1,1],[2,2,0,2],[3,2,3,2],[1,0,2,0]],[[1,2,1,1],[3,2,0,2],[2,2,3,2],[1,0,2,0]],[[1,3,1,1],[2,2,0,2],[2,2,3,2],[1,0,2,0]],[[2,2,1,1],[2,2,0,2],[2,2,3,2],[1,0,2,0]],[[1,2,1,1],[2,2,0,2],[2,2,3,2],[2,0,1,1]],[[1,2,1,1],[2,2,0,2],[3,2,3,2],[1,0,1,1]],[[1,0,3,0],[2,3,3,2],[2,0,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,4,2],[2,0,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,3],[2,0,3,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,3],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,2],[0,0,2,2]],[[1,0,3,0],[2,3,3,2],[2,0,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[2,0,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[2,0,3,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,3],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,2],[0,1,1,2]],[[1,0,3,0],[2,3,3,2],[2,0,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[2,0,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[2,0,3,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,1,1],[3,2,0,2],[2,2,3,2],[1,0,1,1]],[[1,3,1,1],[2,2,0,2],[2,2,3,2],[1,0,1,1]],[[2,2,1,1],[2,2,0,2],[2,2,3,2],[1,0,1,1]],[[1,0,3,0],[2,3,3,2],[2,0,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,4,2],[2,0,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,3],[2,0,3,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,3],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[2,0,3,2],[1,0,1,2]],[[1,0,3,0],[2,3,3,2],[2,0,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[2,0,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,3],[2,0,3,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,1,1],[2,2,0,2],[3,2,3,2],[0,2,1,0]],[[1,2,1,1],[3,2,0,2],[2,2,3,2],[0,2,1,0]],[[1,3,1,1],[2,2,0,2],[2,2,3,2],[0,2,1,0]],[[2,2,1,1],[2,2,0,2],[2,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,2,0,2],[3,2,3,2],[0,2,0,1]],[[1,2,1,1],[3,2,0,2],[2,2,3,2],[0,2,0,1]],[[1,3,1,1],[2,2,0,2],[2,2,3,2],[0,2,0,1]],[[2,2,1,1],[2,2,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,1,1],[2,2,0,2],[3,2,3,2],[0,1,2,0]],[[1,2,1,1],[3,2,0,2],[2,2,3,2],[0,1,2,0]],[[1,3,1,1],[2,2,0,2],[2,2,3,2],[0,1,2,0]],[[2,2,1,1],[2,2,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,1,1],[2,2,0,2],[3,2,3,2],[0,1,1,1]],[[1,2,1,1],[3,2,0,2],[2,2,3,2],[0,1,1,1]],[[1,3,1,1],[2,2,0,2],[2,2,3,2],[0,1,1,1]],[[2,2,1,1],[2,2,0,2],[2,2,3,2],[0,1,1,1]],[[1,2,1,1],[2,2,0,2],[2,2,3,1],[2,1,1,1]],[[1,2,1,1],[2,2,0,2],[3,2,3,1],[1,1,1,1]],[[1,2,1,1],[3,2,0,2],[2,2,3,1],[1,1,1,1]],[[1,3,1,1],[2,2,0,2],[2,2,3,1],[1,1,1,1]],[[2,2,1,1],[2,2,0,2],[2,2,3,1],[1,1,1,1]],[[1,2,1,1],[2,2,0,2],[2,2,3,1],[2,0,2,1]],[[1,2,1,1],[2,2,0,2],[3,2,3,1],[1,0,2,1]],[[1,2,1,1],[3,2,0,2],[2,2,3,1],[1,0,2,1]],[[2,0,2,0],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[2,1,0,1],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[2,1,0,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[2,1,0,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[3,1,0,1],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,1],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,1],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,1],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,1],[1,2,2,2]],[[2,0,2,0],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,0,2,0],[3,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,0,2,0],[2,4,3,2],[2,1,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,4,2],[2,1,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[2,1,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[3,1,0,2],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,3],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[0,3,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[0,2,3,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[0,2,2,2]],[[2,0,2,0],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,0,3,0],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[2,1,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[2,1,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[2,1,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[3,1,0,2],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,3],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[2,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[1,1,3,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[1,1,2,2]],[[2,0,2,0],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[2,1,0,2],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[2,1,0,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[2,1,0,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[3,1,0,2],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,3],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[2,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[1,3,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[1,2,1,2]],[[2,0,2,0],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,0,3,0],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[2,1,0,2],[1,2,2,0]],[[1,0,2,0],[2,3,4,2],[2,1,0,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,3],[2,1,0,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[3,1,0,2],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,0,3],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[2,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[1,3,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,0,2],[1,2,3,0]],[[2,0,2,0],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,0,3,0],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[2,1,1,0],[1,2,2,1]],[[1,0,2,0],[2,3,4,2],[2,1,1,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,3],[2,1,1,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[3,1,1,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,0],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,0],[1,3,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,0],[1,2,3,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,0],[1,2,2,2]],[[2,0,2,0],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,0,3,0],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[2,1,1,1],[1,2,2,0]],[[1,0,2,0],[2,3,4,2],[2,1,1,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,3],[2,1,1,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[3,1,1,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,1,1],[2,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,1,1],[1,3,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,1,1],[1,2,3,0]],[[2,0,2,0],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,0,3,0],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,0,2,0],[3,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,0,2,0],[2,4,3,2],[2,1,1,2],[0,1,2,1]],[[1,0,2,0],[2,3,4,2],[2,1,1,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,3],[2,1,1,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[3,1,1,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,3],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,2],[0,1,3,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,2],[0,1,2,2]],[[2,0,2,0],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,0,3,0],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,0,2,0],[3,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,0,2,0],[2,4,3,2],[2,1,1,2],[1,0,2,1]],[[1,0,2,0],[2,3,4,2],[2,1,1,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,3],[2,1,1,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[3,1,1,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,3],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,2],[2,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,2],[1,0,3,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,2],[1,0,2,2]],[[2,0,2,0],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,0,3,0],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,1,1,2],[1,2,0,1]],[[1,0,2,0],[2,3,4,2],[2,1,1,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,3],[2,1,1,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,1,1,2],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,3],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,2],[2,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,2],[1,3,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,1,2],[1,2,0,2]],[[2,0,2,0],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,0,3,0],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,1,1,2],[1,2,1,0]],[[1,0,2,0],[2,3,4,2],[2,1,1,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,3],[2,1,1,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,1,1,2],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,1,3],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,1,2],[2,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,1,2],[1,3,1,0]],[[1,3,1,1],[2,2,0,2],[2,2,3,1],[1,0,2,1]],[[2,2,1,1],[2,2,0,2],[2,2,3,1],[1,0,2,1]],[[1,2,1,1],[2,2,0,2],[3,2,3,1],[0,2,1,1]],[[1,2,1,1],[3,2,0,2],[2,2,3,1],[0,2,1,1]],[[2,0,2,0],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,0,3,0],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[2,1,2,0],[1,2,1,1]],[[1,0,2,0],[2,3,4,2],[2,1,2,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,3],[2,1,2,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[3,1,2,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,0],[2,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,0],[1,3,1,1]],[[2,0,2,0],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,0,3,0],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,1,2,1],[1,2,0,1]],[[1,0,2,0],[2,3,4,2],[2,1,2,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,3],[2,1,2,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,1,2,1],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,1],[2,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,1],[1,3,0,1]],[[2,0,2,0],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,0,3,0],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,1,2,1],[1,2,1,0]],[[1,0,2,0],[2,3,4,2],[2,1,2,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,3],[2,1,2,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,1,2,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,2,1],[2,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,2,1],[1,3,1,0]],[[1,3,1,1],[2,2,0,2],[2,2,3,1],[0,2,1,1]],[[2,2,1,1],[2,2,0,2],[2,2,3,1],[0,2,1,1]],[[1,2,1,1],[2,2,0,2],[3,2,3,1],[0,1,2,1]],[[1,2,1,1],[3,2,0,2],[2,2,3,1],[0,1,2,1]],[[1,3,1,1],[2,2,0,2],[2,2,3,1],[0,1,2,1]],[[2,2,1,1],[2,2,0,2],[2,2,3,1],[0,1,2,1]],[[2,0,2,0],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,0,3,0],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,0,2,0],[3,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,0,2,0],[2,4,3,2],[2,1,2,2],[0,0,2,1]],[[1,0,2,0],[2,3,4,2],[2,1,2,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,3],[2,1,2,2],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,3],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,2],[0,0,2,2]],[[2,0,2,0],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,0,3,0],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,0,2,0],[3,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,2],[2,1,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[2,1,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[2,1,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[3,1,2,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,3],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,2],[0,1,1,2]],[[2,0,2,0],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,0,2,0],[3,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[2,1,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[2,1,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[2,1,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[3,1,2,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,2,3],[0,1,2,0]],[[2,0,2,0],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,0,3,0],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,1,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,4,2],[2,1,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,3],[2,1,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,1,2,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,3],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,2],[0,2,0,2]],[[2,0,2,0],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,0,3,0],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,1,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[2,1,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,3],[2,1,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,1,2,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,2,3],[0,2,1,0]],[[1,2,1,1],[2,2,0,2],[2,2,2,2],[2,1,2,0]],[[1,2,1,1],[2,2,0,2],[3,2,2,2],[1,1,2,0]],[[1,2,1,1],[3,2,0,2],[2,2,2,2],[1,1,2,0]],[[1,3,1,1],[2,2,0,2],[2,2,2,2],[1,1,2,0]],[[2,0,2,0],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,0,3,0],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,0,2,0],[3,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,0,2,0],[2,4,3,2],[2,1,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,4,2],[2,1,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,3],[2,1,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[3,1,2,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,3],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,2],[2,0,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,2],[1,0,1,2]],[[2,0,2,0],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,0,3,0],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,0,2,0],[3,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,0,2,0],[2,4,3,2],[2,1,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[2,1,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,3],[2,1,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[3,1,2,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,2,3],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,2,2],[2,0,2,0]],[[2,0,2,0],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,0,3,0],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,2],[2,1,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,4,2],[2,1,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,3],[2,1,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[3,1,2,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,3],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,2],[2,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,2,2],[1,1,0,2]],[[2,0,2,0],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,0,3,0],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[2,1,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,4,2],[2,1,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,3],[2,1,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[3,1,2,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,2,3],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,2,2],[2,1,1,0]],[[2,2,1,1],[2,2,0,2],[2,2,2,2],[1,1,2,0]],[[1,2,1,1],[2,2,0,2],[3,2,2,2],[0,2,2,0]],[[1,2,1,1],[3,2,0,2],[2,2,2,2],[0,2,2,0]],[[1,3,1,1],[2,2,0,2],[2,2,2,2],[0,2,2,0]],[[2,2,1,1],[2,2,0,2],[2,2,2,2],[0,2,2,0]],[[1,2,1,1],[2,2,0,2],[2,2,2,1],[2,1,2,1]],[[1,2,1,1],[2,2,0,2],[3,2,2,1],[1,1,2,1]],[[1,2,1,1],[3,2,0,2],[2,2,2,1],[1,1,2,1]],[[1,3,1,1],[2,2,0,2],[2,2,2,1],[1,1,2,1]],[[2,2,1,1],[2,2,0,2],[2,2,2,1],[1,1,2,1]],[[1,2,1,1],[2,2,0,2],[3,2,2,1],[0,2,2,1]],[[1,2,1,1],[3,2,0,2],[2,2,2,1],[0,2,2,1]],[[1,3,1,1],[2,2,0,2],[2,2,2,1],[0,2,2,1]],[[2,2,1,1],[2,2,0,2],[2,2,2,1],[0,2,2,1]],[[1,2,1,1],[2,2,0,2],[2,2,1,2],[2,1,2,1]],[[1,2,1,1],[2,2,0,2],[3,2,1,2],[1,1,2,1]],[[2,0,2,0],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,0,3,0],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,0,2,0],[3,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,0,2,0],[2,4,3,2],[2,1,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,4,2],[2,1,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,3],[2,1,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[3,1,3,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,4,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,3,0],[0,1,3,1]],[[1,0,2,0],[2,3,3,2],[2,1,3,0],[0,1,2,2]],[[2,0,2,0],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,0,3,0],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,0,2,0],[3,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[2,1,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[2,1,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[2,1,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[3,1,3,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,4,0],[0,2,1,1]],[[2,0,2,0],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,0,3,0],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,0,2,0],[3,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,0,2,0],[2,4,3,2],[2,1,3,0],[1,0,2,1]],[[1,0,2,0],[2,3,4,2],[2,1,3,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,3],[2,1,3,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[3,1,3,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,4,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,3,0],[2,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,3,0],[1,0,3,1]],[[1,0,2,0],[2,3,3,2],[2,1,3,0],[1,0,2,2]],[[2,0,2,0],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[2,1,3,0],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[2,1,3,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[2,1,3,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[3,1,3,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,4,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,3,0],[2,1,1,1]],[[2,0,2,0],[2,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,0,3,0],[2,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,1,3,0],[1,2,1,0]],[[1,0,2,0],[2,3,4,2],[2,1,3,0],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,1,3,0],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,3,0],[2,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,3,0],[1,3,1,0]],[[1,2,1,1],[3,2,0,2],[2,2,1,2],[1,1,2,1]],[[1,3,1,1],[2,2,0,2],[2,2,1,2],[1,1,2,1]],[[2,2,1,1],[2,2,0,2],[2,2,1,2],[1,1,2,1]],[[1,2,1,1],[2,2,0,2],[3,2,1,2],[0,2,2,1]],[[1,2,1,1],[3,2,0,2],[2,2,1,2],[0,2,2,1]],[[1,3,1,1],[2,2,0,2],[2,2,1,2],[0,2,2,1]],[[2,2,1,1],[2,2,0,2],[2,2,1,2],[0,2,2,1]],[[2,0,2,0],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,0,3,0],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,0,2,0],[3,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,0,2,0],[2,4,3,2],[2,1,3,1],[0,0,2,1]],[[1,0,2,0],[2,3,4,2],[2,1,3,1],[0,0,2,1]],[[1,0,2,0],[2,3,3,3],[2,1,3,1],[0,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,1,4,1],[0,0,2,1]],[[2,0,2,0],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,0,3,0],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,0,2,0],[3,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,0,2,0],[2,4,3,2],[2,1,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[2,1,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[2,1,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[3,1,3,1],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,4,1],[0,1,1,1]],[[2,0,2,0],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,0,2,0],[3,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[2,1,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[2,1,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[2,1,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[3,1,3,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,4,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,3,1],[0,1,3,0]],[[2,0,2,0],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,0,3,0],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,1,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,4,2],[2,1,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,3],[2,1,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,1,3,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,4,1],[0,2,0,1]],[[2,0,2,0],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,0,3,0],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,1,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[2,1,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,3],[2,1,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,1,3,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,4,1],[0,2,1,0]],[[2,0,2,0],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,0,3,0],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,0,2,0],[3,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,0,2,0],[2,4,3,2],[2,1,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,4,2],[2,1,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,3],[2,1,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[3,1,3,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,4,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[2,1,3,1],[2,0,1,1]],[[2,0,2,0],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,0,3,0],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,0,2,0],[3,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,0,2,0],[2,4,3,2],[2,1,3,1],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[2,1,3,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,3],[2,1,3,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[3,1,3,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,4,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,3,1],[2,0,2,0]],[[1,0,2,0],[2,3,3,2],[2,1,3,1],[1,0,3,0]],[[2,0,2,0],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,0,3,0],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,0,2,0],[3,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,0,2,0],[2,4,3,2],[2,1,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,4,2],[2,1,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,3],[2,1,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[3,1,3,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,4,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,3,1],[2,1,0,1]],[[2,0,2,0],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,0,3,0],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[2,1,3,1],[1,1,1,0]],[[1,0,2,0],[2,3,4,2],[2,1,3,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,3],[2,1,3,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[3,1,3,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,4,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[2,1,3,1],[2,1,1,0]],[[1,2,1,1],[2,2,0,2],[2,1,3,2],[1,3,1,0]],[[1,2,1,1],[2,2,0,2],[2,1,3,2],[2,2,1,0]],[[1,2,1,1],[2,2,0,2],[3,1,3,2],[1,2,1,0]],[[1,2,1,1],[3,2,0,2],[2,1,3,2],[1,2,1,0]],[[1,3,1,1],[2,2,0,2],[2,1,3,2],[1,2,1,0]],[[2,2,1,1],[2,2,0,2],[2,1,3,2],[1,2,1,0]],[[1,2,1,1],[2,2,0,2],[2,1,3,2],[1,3,0,1]],[[1,2,1,1],[2,2,0,2],[2,1,3,2],[2,2,0,1]],[[1,2,1,1],[2,2,0,2],[3,1,3,2],[1,2,0,1]],[[1,2,1,1],[3,2,0,2],[2,1,3,2],[1,2,0,1]],[[1,3,1,1],[2,2,0,2],[2,1,3,2],[1,2,0,1]],[[2,2,1,1],[2,2,0,2],[2,1,3,2],[1,2,0,1]],[[1,2,1,1],[2,2,0,2],[2,1,3,1],[1,3,1,1]],[[1,2,1,1],[2,2,0,2],[2,1,3,1],[2,2,1,1]],[[1,2,1,1],[2,2,0,2],[3,1,3,1],[1,2,1,1]],[[1,2,1,1],[3,2,0,2],[2,1,3,1],[1,2,1,1]],[[1,3,1,1],[2,2,0,2],[2,1,3,1],[1,2,1,1]],[[2,2,1,1],[2,2,0,2],[2,1,3,1],[1,2,1,1]],[[2,0,2,0],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,0,3,0],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,0,2,0],[3,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,0,2,0],[2,4,3,2],[2,1,3,2],[0,1,0,1]],[[1,0,2,0],[2,3,4,2],[2,1,3,2],[0,1,0,1]],[[1,0,2,0],[2,3,3,3],[2,1,3,2],[0,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,1,1],[2,2,0,2],[2,1,2,2],[1,2,3,0]],[[1,2,1,1],[2,2,0,2],[2,1,2,2],[1,3,2,0]],[[1,2,1,1],[2,2,0,2],[2,1,2,2],[2,2,2,0]],[[1,2,1,1],[2,2,0,2],[3,1,2,2],[1,2,2,0]],[[1,2,1,1],[3,2,0,2],[2,1,2,2],[1,2,2,0]],[[1,3,1,1],[2,2,0,2],[2,1,2,2],[1,2,2,0]],[[2,2,1,1],[2,2,0,2],[2,1,2,2],[1,2,2,0]],[[1,2,1,1],[2,2,0,2],[2,1,2,1],[1,2,2,2]],[[1,2,1,1],[2,2,0,2],[2,1,2,1],[1,2,3,1]],[[1,2,1,1],[2,2,0,2],[2,1,2,1],[1,3,2,1]],[[1,2,1,1],[2,2,0,2],[2,1,2,1],[2,2,2,1]],[[1,2,1,1],[2,2,0,2],[3,1,2,1],[1,2,2,1]],[[1,2,1,1],[3,2,0,2],[2,1,2,1],[1,2,2,1]],[[1,3,1,1],[2,2,0,2],[2,1,2,1],[1,2,2,1]],[[2,2,1,1],[2,2,0,2],[2,1,2,1],[1,2,2,1]],[[1,2,1,1],[2,2,0,2],[2,1,1,2],[1,2,2,2]],[[1,2,1,1],[2,2,0,2],[2,1,1,2],[1,2,3,1]],[[1,2,1,1],[2,2,0,2],[2,1,1,2],[1,3,2,1]],[[1,2,1,1],[2,2,0,2],[2,1,1,2],[2,2,2,1]],[[1,2,1,1],[2,2,0,2],[2,1,1,3],[1,2,2,1]],[[1,2,1,1],[2,2,0,2],[3,1,1,2],[1,2,2,1]],[[1,2,1,1],[2,2,0,3],[2,1,1,2],[1,2,2,1]],[[1,2,1,1],[3,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,2,1,2],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,3,1,1],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[2,2,1,1],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,2,1,1],[2,2,0,2],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[2,2,0,2],[2,0,3,2],[1,3,2,0]],[[1,2,1,1],[2,2,0,2],[2,0,3,2],[2,2,2,0]],[[1,2,1,1],[2,2,0,2],[2,0,3,3],[1,2,2,0]],[[1,2,1,1],[2,2,0,2],[2,0,4,2],[1,2,2,0]],[[1,2,1,1],[2,2,0,2],[3,0,3,2],[1,2,2,0]],[[2,0,2,0],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,0,3,0],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,0,2,0],[3,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,0,2,0],[2,4,3,2],[2,1,3,2],[1,0,0,1]],[[1,0,2,0],[2,3,4,2],[2,1,3,2],[1,0,0,1]],[[1,0,2,0],[2,3,3,3],[2,1,3,2],[1,0,0,1]],[[1,0,2,0],[2,3,3,2],[3,1,3,2],[1,0,0,1]],[[1,0,2,0],[2,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,1,1],[2,2,0,3],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[3,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,2,1,2],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,3,1,1],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[2,2,1,1],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[2,2,0,2],[2,0,3,2],[1,2,1,2]],[[1,2,1,1],[2,2,0,2],[2,0,3,3],[1,2,1,1]],[[1,2,1,1],[2,2,0,2],[2,0,4,2],[1,2,1,1]],[[1,2,1,1],[2,2,0,3],[2,0,3,2],[1,2,1,1]],[[1,2,1,2],[2,2,0,2],[2,0,3,2],[1,2,1,1]],[[1,2,1,1],[2,2,0,2],[2,0,3,1],[1,2,2,2]],[[1,2,1,1],[2,2,0,2],[2,0,3,1],[1,2,3,1]],[[1,2,1,1],[2,2,0,2],[2,0,3,1],[1,3,2,1]],[[1,2,1,1],[2,2,0,2],[2,0,3,1],[2,2,2,1]],[[1,2,1,1],[2,2,0,2],[2,0,4,1],[1,2,2,1]],[[1,2,1,1],[2,2,0,2],[3,0,3,1],[1,2,2,1]],[[1,2,1,1],[3,2,0,2],[2,0,3,1],[1,2,2,1]],[[1,3,1,1],[2,2,0,2],[2,0,3,1],[1,2,2,1]],[[2,2,1,1],[2,2,0,2],[2,0,3,1],[1,2,2,1]],[[1,2,1,1],[2,2,0,2],[2,0,2,2],[1,2,2,2]],[[1,2,1,1],[2,2,0,2],[2,0,2,2],[1,2,3,1]],[[1,2,1,1],[2,2,0,2],[2,0,2,2],[1,3,2,1]],[[1,2,1,1],[2,2,0,2],[2,0,2,2],[2,2,2,1]],[[1,2,1,1],[2,2,0,2],[2,0,2,3],[1,2,2,1]],[[1,2,1,1],[2,2,0,2],[3,0,2,2],[1,2,2,1]],[[1,2,1,1],[2,2,0,3],[2,0,2,2],[1,2,2,1]],[[1,2,1,1],[3,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,2,1,2],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,3,1,1],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[2,2,1,1],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,2,1,1],[3,2,0,2],[1,3,3,2],[1,2,0,0]],[[1,3,1,1],[2,2,0,2],[1,3,3,2],[1,2,0,0]],[[2,2,1,1],[2,2,0,2],[1,3,3,2],[1,2,0,0]],[[1,2,1,1],[3,2,0,2],[1,3,3,2],[1,1,1,0]],[[1,3,1,1],[2,2,0,2],[1,3,3,2],[1,1,1,0]],[[2,2,1,1],[2,2,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,1,1],[3,2,0,2],[1,3,3,2],[1,1,0,1]],[[1,3,1,1],[2,2,0,2],[1,3,3,2],[1,1,0,1]],[[2,2,1,1],[2,2,0,2],[1,3,3,2],[1,1,0,1]],[[1,2,1,1],[3,2,0,2],[1,3,3,2],[1,0,2,0]],[[1,3,1,1],[2,2,0,2],[1,3,3,2],[1,0,2,0]],[[2,2,1,1],[2,2,0,2],[1,3,3,2],[1,0,2,0]],[[1,2,1,1],[3,2,0,2],[1,3,3,2],[1,0,1,1]],[[1,3,1,1],[2,2,0,2],[1,3,3,2],[1,0,1,1]],[[2,2,1,1],[2,2,0,2],[1,3,3,2],[1,0,1,1]],[[1,2,1,1],[3,2,0,2],[1,3,3,2],[0,2,1,0]],[[1,3,1,1],[2,2,0,2],[1,3,3,2],[0,2,1,0]],[[2,2,1,1],[2,2,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,1,1],[3,2,0,2],[1,3,3,2],[0,2,0,1]],[[1,3,1,1],[2,2,0,2],[1,3,3,2],[0,2,0,1]],[[2,2,1,1],[2,2,0,2],[1,3,3,2],[0,2,0,1]],[[1,2,1,1],[3,2,0,2],[1,3,3,2],[0,1,2,0]],[[1,3,1,1],[2,2,0,2],[1,3,3,2],[0,1,2,0]],[[2,2,1,1],[2,2,0,2],[1,3,3,2],[0,1,2,0]],[[1,2,1,1],[3,2,0,2],[1,3,3,2],[0,1,1,1]],[[2,0,2,0],[2,3,3,2],[2,2,0,0],[1,2,2,1]],[[1,0,2,0],[3,3,3,2],[2,2,0,0],[1,2,2,1]],[[1,0,2,0],[2,4,3,2],[2,2,0,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[3,2,0,0],[1,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,0],[2,2,2,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,0],[1,3,2,1]],[[2,0,2,0],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,0,2,0],[3,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,0,2,0],[2,4,3,2],[2,2,0,1],[0,2,2,1]],[[1,0,2,0],[2,3,4,2],[2,2,0,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[2,2,0,1],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[3,2,0,1],[0,2,2,1]],[[2,0,2,0],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,0,3,0],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[2,2,0,1],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[2,2,0,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[2,2,0,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[3,2,0,1],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,1],[2,1,2,1]],[[2,0,2,0],[2,3,3,2],[2,2,0,1],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[2,2,0,1],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[2,2,0,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[3,2,0,1],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,2,0,1],[2,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,2,0,1],[1,3,2,0]],[[2,0,2,0],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,0,3,0],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,0,2,0],[3,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,0,2,0],[2,4,3,2],[2,2,0,2],[0,1,2,1]],[[1,0,2,0],[2,3,4,2],[2,2,0,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,3],[2,2,0,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[3,2,0,2],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,3],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,2],[0,1,3,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,2],[0,1,2,2]],[[2,0,2,0],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,0,3,0],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,0,2,0],[3,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[2,2,0,2],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[2,2,0,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[2,2,0,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[3,2,0,2],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,3],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,2],[0,2,1,2]],[[2,0,2,0],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,0,3,0],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,0,2,0],[3,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,0,2,0],[2,4,3,2],[2,2,0,2],[0,2,2,0]],[[1,0,2,0],[2,3,4,2],[2,2,0,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,3],[2,2,0,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[3,2,0,2],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,2,0,3],[0,2,2,0]],[[2,0,2,0],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,0,3,0],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,0,2,0],[3,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,0,2,0],[2,4,3,2],[2,2,0,2],[1,0,2,1]],[[1,0,2,0],[2,3,4,2],[2,2,0,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,3],[2,2,0,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[3,2,0,2],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,3],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,2],[2,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,2],[1,0,3,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,2],[1,0,2,2]],[[2,0,2,0],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[2,2,0,2],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[2,2,0,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[2,2,0,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[3,2,0,2],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,3],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,2],[2,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,0,2],[1,1,1,2]],[[2,0,2,0],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,0,3,0],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[2,2,0,2],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[2,2,0,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,3],[2,2,0,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[3,2,0,2],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,2,0,3],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,2,0,2],[2,1,2,0]],[[1,3,1,1],[2,2,0,2],[1,3,3,2],[0,1,1,1]],[[2,2,1,1],[2,2,0,2],[1,3,3,2],[0,1,1,1]],[[2,0,2,0],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,0,3,0],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,0,2,0],[3,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,0,2,0],[2,4,3,2],[2,2,1,0],[0,2,2,1]],[[1,0,2,0],[2,3,4,2],[2,2,1,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,3],[2,2,1,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[3,2,1,0],[0,2,2,1]],[[2,0,2,0],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,0,3,0],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[2,2,1,0],[1,1,2,1]],[[1,0,2,0],[2,3,4,2],[2,2,1,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,3],[2,2,1,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[3,2,1,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,2,1,0],[2,1,2,1]],[[2,0,2,0],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,0,3,0],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,0,2,0],[3,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,0,2,0],[2,4,3,2],[2,2,1,1],[0,2,2,0]],[[1,0,2,0],[2,3,4,2],[2,2,1,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,3],[2,2,1,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[3,2,1,1],[0,2,2,0]],[[2,0,2,0],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,0,3,0],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[2,2,1,1],[1,1,2,0]],[[1,0,2,0],[2,3,4,2],[2,2,1,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,3],[2,2,1,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[3,2,1,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,2,1,1],[2,1,2,0]],[[1,2,1,1],[3,2,0,2],[1,3,3,1],[1,1,1,1]],[[1,3,1,1],[2,2,0,2],[1,3,3,1],[1,1,1,1]],[[2,2,1,1],[2,2,0,2],[1,3,3,1],[1,1,1,1]],[[1,2,1,1],[3,2,0,2],[1,3,3,1],[1,0,2,1]],[[1,3,1,1],[2,2,0,2],[1,3,3,1],[1,0,2,1]],[[2,2,1,1],[2,2,0,2],[1,3,3,1],[1,0,2,1]],[[2,0,2,0],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,0,3,0],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,0,2,0],[3,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,0,2,0],[2,4,3,2],[2,2,1,2],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[2,2,1,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[2,2,1,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[3,2,1,2],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,1,3],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,1,2],[0,1,1,2]],[[2,0,2,0],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,0,2,0],[3,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[2,2,1,2],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[2,2,1,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[2,2,1,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[3,2,1,2],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,2,1,3],[0,1,2,0]],[[2,0,2,0],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,0,3,0],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,2,1,2],[0,2,0,1]],[[1,0,2,0],[2,3,4,2],[2,2,1,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,3],[2,2,1,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,2,1,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,2,1,3],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,2,1,2],[0,2,0,2]],[[2,0,2,0],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,0,3,0],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,2,1,2],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[2,2,1,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,3],[2,2,1,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,2,1,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,2,1,3],[0,2,1,0]],[[1,2,1,1],[3,2,0,2],[1,3,3,1],[0,2,1,1]],[[1,3,1,1],[2,2,0,2],[1,3,3,1],[0,2,1,1]],[[2,2,1,1],[2,2,0,2],[1,3,3,1],[0,2,1,1]],[[1,2,1,1],[3,2,0,2],[1,3,3,1],[0,1,2,1]],[[1,3,1,1],[2,2,0,2],[1,3,3,1],[0,1,2,1]],[[2,2,1,1],[2,2,0,2],[1,3,3,1],[0,1,2,1]],[[2,0,2,0],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,0,3,0],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,0,2,0],[3,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,0,2,0],[2,4,3,2],[2,2,1,2],[1,0,1,1]],[[1,0,2,0],[2,3,4,2],[2,2,1,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,3],[2,2,1,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[3,2,1,2],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,1,3],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,1,2],[2,0,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,1,2],[1,0,1,2]],[[2,0,2,0],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,0,3,0],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,0,2,0],[3,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,0,2,0],[2,4,3,2],[2,2,1,2],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[2,2,1,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,3],[2,2,1,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[3,2,1,2],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[2,2,1,3],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[2,2,1,2],[2,0,2,0]],[[2,0,2,0],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,0,3,0],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,2],[2,2,1,2],[1,1,0,1]],[[1,0,2,0],[2,3,4,2],[2,2,1,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,3],[2,2,1,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[3,2,1,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,2,1,3],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,2,1,2],[2,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,2,1,2],[1,1,0,2]],[[2,0,2,0],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,0,3,0],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[2,2,1,2],[1,1,1,0]],[[1,0,2,0],[2,3,4,2],[2,2,1,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,3],[2,2,1,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[3,2,1,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[2,2,1,3],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[2,2,1,2],[2,1,1,0]],[[2,0,2,0],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,0,3,0],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,0,2,0],[3,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,0,2,0],[2,4,3,2],[2,2,1,2],[1,2,0,0]],[[1,0,2,0],[2,3,4,2],[2,2,1,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,3],[2,2,1,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[3,2,1,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[2,2,1,2],[2,2,0,0]],[[1,2,1,1],[3,2,0,2],[1,3,2,2],[1,1,2,0]],[[1,3,1,1],[2,2,0,2],[1,3,2,2],[1,1,2,0]],[[2,2,1,1],[2,2,0,2],[1,3,2,2],[1,1,2,0]],[[1,2,1,1],[3,2,0,2],[1,3,2,2],[0,2,2,0]],[[1,3,1,1],[2,2,0,2],[1,3,2,2],[0,2,2,0]],[[2,2,1,1],[2,2,0,2],[1,3,2,2],[0,2,2,0]],[[1,2,1,1],[3,2,0,2],[1,3,2,1],[1,1,2,1]],[[1,3,1,1],[2,2,0,2],[1,3,2,1],[1,1,2,1]],[[2,2,1,1],[2,2,0,2],[1,3,2,1],[1,1,2,1]],[[1,2,1,1],[3,2,0,2],[1,3,2,1],[0,2,2,1]],[[1,3,1,1],[2,2,0,2],[1,3,2,1],[0,2,2,1]],[[2,2,1,1],[2,2,0,2],[1,3,2,1],[0,2,2,1]],[[2,0,2,0],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,0,3,0],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,0,2,0],[3,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,0,2,0],[2,4,3,2],[2,2,2,0],[0,1,2,1]],[[1,0,2,0],[2,3,4,2],[2,2,2,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,3],[2,2,2,0],[0,1,2,1]],[[1,0,2,0],[2,3,3,2],[3,2,2,0],[0,1,2,1]],[[2,0,2,0],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,0,3,0],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,0,2,0],[3,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[2,2,2,0],[0,2,1,1]],[[1,0,2,0],[2,3,4,2],[2,2,2,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,3],[2,2,2,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[3,2,2,0],[0,2,1,1]],[[2,0,2,0],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,0,3,0],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,0,2,0],[3,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,0,2,0],[2,4,3,2],[2,2,2,0],[1,0,2,1]],[[1,0,2,0],[2,3,4,2],[2,2,2,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,3],[2,2,2,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[3,2,2,0],[1,0,2,1]],[[1,0,2,0],[2,3,3,2],[2,2,2,0],[2,0,2,1]],[[2,0,2,0],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,0,3,0],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[2,2,2,0],[1,1,1,1]],[[1,0,2,0],[2,3,4,2],[2,2,2,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,3],[2,2,2,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[3,2,2,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,2,0],[2,1,1,1]],[[2,0,2,0],[2,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,0,3,0],[2,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,2,2,0],[1,2,0,1]],[[1,0,2,0],[2,3,4,2],[2,2,2,0],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,2,2,0],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,2,2,0],[2,2,0,1]],[[1,2,1,1],[3,2,0,2],[1,3,1,2],[1,1,2,1]],[[1,3,1,1],[2,2,0,2],[1,3,1,2],[1,1,2,1]],[[2,2,1,1],[2,2,0,2],[1,3,1,2],[1,1,2,1]],[[1,2,1,1],[3,2,0,2],[1,3,1,2],[0,2,2,1]],[[1,3,1,1],[2,2,0,2],[1,3,1,2],[0,2,2,1]],[[2,2,1,1],[2,2,0,2],[1,3,1,2],[0,2,2,1]],[[2,0,2,0],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,0,3,0],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,0,2,0],[3,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,0,2,0],[2,4,3,2],[2,2,2,1],[0,1,1,1]],[[1,0,2,0],[2,3,4,2],[2,2,2,1],[0,1,1,1]],[[1,0,2,0],[2,3,3,3],[2,2,2,1],[0,1,1,1]],[[1,0,2,0],[2,3,3,2],[3,2,2,1],[0,1,1,1]],[[2,0,2,0],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,0,2,0],[3,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[2,2,2,1],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[2,2,2,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,3],[2,2,2,1],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[3,2,2,1],[0,1,2,0]],[[2,0,2,0],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,0,3,0],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,2,2,1],[0,2,0,1]],[[1,0,2,0],[2,3,4,2],[2,2,2,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,3],[2,2,2,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,2,2,1],[0,2,0,1]],[[2,0,2,0],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,0,3,0],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,2,2,1],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[2,2,2,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,3],[2,2,2,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,2,2,1],[0,2,1,0]],[[2,0,2,0],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,0,3,0],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,0,2,0],[3,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,0,2,0],[2,4,3,2],[2,2,2,1],[1,0,1,1]],[[1,0,2,0],[2,3,4,2],[2,2,2,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,3],[2,2,2,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[3,2,2,1],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[2,2,2,1],[2,0,1,1]],[[2,0,2,0],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,0,3,0],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,0,2,0],[3,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,0,2,0],[2,4,3,2],[2,2,2,1],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[2,2,2,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,3],[2,2,2,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[3,2,2,1],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[2,2,2,1],[2,0,2,0]],[[2,0,2,0],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,0,3,0],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,0,2,0],[3,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,0,2,0],[2,4,3,2],[2,2,2,1],[1,1,0,1]],[[1,0,2,0],[2,3,4,2],[2,2,2,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,3],[2,2,2,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[3,2,2,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,2,2,1],[2,1,0,1]],[[2,0,2,0],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,0,3,0],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[2,2,2,1],[1,1,1,0]],[[1,0,2,0],[2,3,4,2],[2,2,2,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,3],[2,2,2,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[3,2,2,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[2,2,2,1],[2,1,1,0]],[[2,0,2,0],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,0,3,0],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,0,2,0],[3,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,0,2,0],[2,4,3,2],[2,2,2,1],[1,2,0,0]],[[1,0,2,0],[2,3,4,2],[2,2,2,1],[1,2,0,0]],[[1,0,2,0],[2,3,3,3],[2,2,2,1],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[3,2,2,1],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[2,2,2,1],[2,2,0,0]],[[1,2,1,1],[3,2,0,2],[0,3,3,2],[1,2,1,0]],[[1,3,1,1],[2,2,0,2],[0,3,3,2],[1,2,1,0]],[[2,2,1,1],[2,2,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,1,1],[3,2,0,2],[0,3,3,2],[1,2,0,1]],[[1,3,1,1],[2,2,0,2],[0,3,3,2],[1,2,0,1]],[[2,2,1,1],[2,2,0,2],[0,3,3,2],[1,2,0,1]],[[1,2,1,1],[3,2,0,2],[0,3,3,2],[1,1,2,0]],[[1,3,1,1],[2,2,0,2],[0,3,3,2],[1,1,2,0]],[[2,2,1,1],[2,2,0,2],[0,3,3,2],[1,1,2,0]],[[1,2,1,1],[3,2,0,2],[0,3,3,2],[1,1,1,1]],[[1,3,1,1],[2,2,0,2],[0,3,3,2],[1,1,1,1]],[[2,2,1,1],[2,2,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,1,1],[3,2,0,2],[0,3,3,1],[1,2,1,1]],[[1,3,1,1],[2,2,0,2],[0,3,3,1],[1,2,1,1]],[[2,2,1,1],[2,2,0,2],[0,3,3,1],[1,2,1,1]],[[1,2,1,1],[3,2,0,2],[0,3,3,1],[1,1,2,1]],[[1,3,1,1],[2,2,0,2],[0,3,3,1],[1,1,2,1]],[[2,2,1,1],[2,2,0,2],[0,3,3,1],[1,1,2,1]],[[1,2,1,1],[3,2,0,2],[0,3,2,2],[1,2,2,0]],[[1,3,1,1],[2,2,0,2],[0,3,2,2],[1,2,2,0]],[[2,2,1,1],[2,2,0,2],[0,3,2,2],[1,2,2,0]],[[1,2,1,1],[3,2,0,2],[0,3,2,1],[1,2,2,1]],[[1,3,1,1],[2,2,0,2],[0,3,2,1],[1,2,2,1]],[[2,2,1,1],[2,2,0,2],[0,3,2,1],[1,2,2,1]],[[1,2,1,1],[3,2,0,2],[0,3,1,2],[1,2,2,1]],[[1,3,1,1],[2,2,0,2],[0,3,1,2],[1,2,2,1]],[[2,2,1,1],[2,2,0,2],[0,3,1,2],[1,2,2,1]],[[1,2,1,1],[2,1,3,3],[2,3,3,1],[1,0,0,0]],[[1,2,1,1],[2,1,4,2],[2,3,3,1],[1,0,0,0]],[[1,2,1,2],[2,1,3,2],[2,3,3,1],[1,0,0,0]],[[1,2,1,1],[2,1,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,1,1],[2,1,3,2],[2,4,3,0],[1,1,0,0]],[[1,2,1,1],[2,1,3,2],[3,3,3,0],[1,1,0,0]],[[1,2,1,1],[3,1,3,2],[2,3,3,0],[1,1,0,0]],[[1,3,1,1],[2,1,3,2],[2,3,3,0],[1,1,0,0]],[[2,2,1,1],[2,1,3,2],[2,3,3,0],[1,1,0,0]],[[1,2,1,1],[2,1,3,2],[2,4,3,0],[0,2,0,0]],[[1,2,1,1],[2,1,3,2],[3,3,3,0],[0,2,0,0]],[[1,2,1,1],[3,1,3,2],[2,3,3,0],[0,2,0,0]],[[1,3,1,1],[2,1,3,2],[2,3,3,0],[0,2,0,0]],[[2,2,1,1],[2,1,3,2],[2,3,3,0],[0,2,0,0]],[[2,0,2,0],[2,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,0,3,0],[2,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,0,2,0],[3,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,0,2,0],[2,4,3,2],[2,2,3,0],[0,1,2,0]],[[1,0,2,0],[2,3,4,2],[2,2,3,0],[0,1,2,0]],[[1,0,2,0],[2,3,3,2],[3,2,3,0],[0,1,2,0]],[[2,0,2,0],[2,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,0,3,0],[2,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,2,3,0],[0,2,1,0]],[[1,0,2,0],[2,3,4,2],[2,2,3,0],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,2,3,0],[0,2,1,0]],[[2,0,2,0],[2,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,0,3,0],[2,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,0,2,0],[3,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,0,2,0],[2,4,3,2],[2,2,3,0],[1,0,2,0]],[[1,0,2,0],[2,3,4,2],[2,2,3,0],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[3,2,3,0],[1,0,2,0]],[[1,0,2,0],[2,3,3,2],[2,2,3,0],[2,0,2,0]],[[2,0,2,0],[2,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,0,3,0],[2,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[2,2,3,0],[1,1,1,0]],[[1,0,2,0],[2,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[3,2,3,0],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[2,2,3,0],[2,1,1,0]],[[2,0,2,0],[2,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,0,3,0],[2,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,0,2,0],[3,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,0,2,0],[2,4,3,2],[2,2,3,0],[1,2,0,0]],[[1,0,2,0],[2,3,4,2],[2,2,3,0],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[3,2,3,0],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[2,2,3,0],[2,2,0,0]],[[1,2,1,1],[2,1,3,3],[2,3,2,1],[1,0,1,0]],[[1,2,1,1],[2,1,4,2],[2,3,2,1],[1,0,1,0]],[[1,2,1,2],[2,1,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,1,1],[2,1,3,3],[2,3,2,1],[1,0,0,1]],[[1,2,1,1],[2,1,4,2],[2,3,2,1],[1,0,0,1]],[[1,2,1,2],[2,1,3,2],[2,3,2,1],[1,0,0,1]],[[2,0,2,0],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,0,3,0],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,0,2,0],[3,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,0,2,0],[2,4,3,2],[2,2,3,1],[0,2,0,0]],[[1,0,2,0],[2,3,4,2],[2,2,3,1],[0,2,0,0]],[[1,0,2,0],[2,3,3,3],[2,2,3,1],[0,2,0,0]],[[1,0,2,0],[2,3,3,2],[3,2,3,1],[0,2,0,0]],[[1,2,1,1],[2,1,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,1,1],[2,1,3,2],[2,4,2,0],[1,2,0,0]],[[2,0,2,0],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,0,3,0],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,0,2,0],[3,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,0,2,0],[2,4,3,2],[2,2,3,1],[1,1,0,0]],[[1,0,2,0],[2,3,4,2],[2,2,3,1],[1,1,0,0]],[[1,0,2,0],[2,3,3,3],[2,2,3,1],[1,1,0,0]],[[1,0,2,0],[2,3,3,2],[3,2,3,1],[1,1,0,0]],[[1,0,2,0],[2,3,3,2],[2,2,3,1],[2,1,0,0]],[[1,2,1,1],[2,1,3,2],[3,3,2,0],[1,2,0,0]],[[1,2,1,1],[3,1,3,2],[2,3,2,0],[1,2,0,0]],[[1,3,1,1],[2,1,3,2],[2,3,2,0],[1,2,0,0]],[[2,2,1,1],[2,1,3,2],[2,3,2,0],[1,2,0,0]],[[1,2,1,1],[2,1,3,2],[2,3,2,0],[2,1,1,0]],[[1,2,1,1],[2,1,3,2],[2,4,2,0],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[3,3,2,0],[1,1,1,0]],[[1,2,1,1],[3,1,3,2],[2,3,2,0],[1,1,1,0]],[[1,3,1,1],[2,1,3,2],[2,3,2,0],[1,1,1,0]],[[2,2,1,1],[2,1,3,2],[2,3,2,0],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[2,3,2,0],[2,1,0,1]],[[1,2,1,1],[2,1,3,2],[2,4,2,0],[1,1,0,1]],[[1,2,1,1],[2,1,3,2],[3,3,2,0],[1,1,0,1]],[[1,2,1,1],[3,1,3,2],[2,3,2,0],[1,1,0,1]],[[1,3,1,1],[2,1,3,2],[2,3,2,0],[1,1,0,1]],[[2,2,1,1],[2,1,3,2],[2,3,2,0],[1,1,0,1]],[[1,2,1,1],[2,1,3,2],[2,3,2,0],[2,0,2,0]],[[1,2,1,1],[2,1,3,2],[2,4,2,0],[1,0,2,0]],[[1,2,1,1],[2,1,3,2],[3,3,2,0],[1,0,2,0]],[[1,2,1,1],[3,1,3,2],[2,3,2,0],[1,0,2,0]],[[1,3,1,1],[2,1,3,2],[2,3,2,0],[1,0,2,0]],[[2,2,1,1],[2,1,3,2],[2,3,2,0],[1,0,2,0]],[[1,2,1,1],[2,1,3,2],[2,3,2,0],[0,3,1,0]],[[1,2,1,1],[2,1,3,2],[2,4,2,0],[0,2,1,0]],[[1,2,1,1],[2,1,3,2],[3,3,2,0],[0,2,1,0]],[[1,2,1,1],[3,1,3,2],[2,3,2,0],[0,2,1,0]],[[1,3,1,1],[2,1,3,2],[2,3,2,0],[0,2,1,0]],[[2,2,1,1],[2,1,3,2],[2,3,2,0],[0,2,1,0]],[[1,2,1,1],[2,1,3,2],[2,4,2,0],[0,2,0,1]],[[1,2,1,1],[2,1,3,2],[3,3,2,0],[0,2,0,1]],[[1,2,1,1],[3,1,3,2],[2,3,2,0],[0,2,0,1]],[[1,3,1,1],[2,1,3,2],[2,3,2,0],[0,2,0,1]],[[2,2,1,1],[2,1,3,2],[2,3,2,0],[0,2,0,1]],[[1,2,1,1],[2,1,3,2],[2,4,2,0],[0,1,2,0]],[[1,2,1,1],[2,1,3,2],[3,3,2,0],[0,1,2,0]],[[1,2,1,1],[3,1,3,2],[2,3,2,0],[0,1,2,0]],[[1,3,1,1],[2,1,3,2],[2,3,2,0],[0,1,2,0]],[[2,2,1,1],[2,1,3,2],[2,3,2,0],[0,1,2,0]],[[1,2,1,1],[2,1,3,3],[2,3,1,2],[1,0,1,0]],[[1,2,1,1],[2,1,4,2],[2,3,1,2],[1,0,1,0]],[[1,2,1,2],[2,1,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,1,1],[2,1,3,2],[2,3,1,3],[1,0,0,1]],[[1,2,1,1],[2,1,3,3],[2,3,1,2],[1,0,0,1]],[[1,2,1,1],[2,1,4,2],[2,3,1,2],[1,0,0,1]],[[1,2,1,2],[2,1,3,2],[2,3,1,2],[1,0,0,1]],[[1,2,1,1],[2,1,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,1,1],[2,1,3,2],[2,4,1,0],[1,1,2,0]],[[1,2,1,1],[2,1,3,2],[3,3,1,0],[1,1,2,0]],[[1,2,1,1],[3,1,3,2],[2,3,1,0],[1,1,2,0]],[[1,3,1,1],[2,1,3,2],[2,3,1,0],[1,1,2,0]],[[2,2,1,1],[2,1,3,2],[2,3,1,0],[1,1,2,0]],[[1,2,1,1],[2,1,3,2],[2,3,1,0],[0,3,2,0]],[[1,2,1,1],[2,1,3,2],[2,4,1,0],[0,2,2,0]],[[1,2,1,1],[2,1,3,2],[3,3,1,0],[0,2,2,0]],[[1,2,1,1],[3,1,3,2],[2,3,1,0],[0,2,2,0]],[[1,3,1,1],[2,1,3,2],[2,3,1,0],[0,2,2,0]],[[2,2,1,1],[2,1,3,2],[2,3,1,0],[0,2,2,0]],[[2,0,2,0],[2,3,3,2],[2,3,0,0],[0,2,2,1]],[[1,0,2,0],[3,3,3,2],[2,3,0,0],[0,2,2,1]],[[1,0,2,0],[2,4,3,2],[2,3,0,0],[0,2,2,1]],[[1,0,2,0],[2,3,3,2],[3,3,0,0],[0,2,2,1]],[[2,0,2,0],[2,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,0,2,0],[3,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,0,2,0],[2,4,3,2],[2,3,0,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[3,3,0,0],[1,1,2,1]],[[1,0,2,0],[2,3,3,2],[2,3,0,0],[2,1,2,1]],[[2,0,2,0],[2,3,3,2],[2,3,0,0],[1,2,1,1]],[[1,0,2,0],[3,3,3,2],[2,3,0,0],[1,2,1,1]],[[1,0,2,0],[2,4,3,2],[2,3,0,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[3,3,0,0],[1,2,1,1]],[[1,0,2,0],[2,3,3,2],[2,3,0,0],[2,2,1,1]],[[2,0,2,0],[2,3,3,2],[2,3,0,0],[1,2,2,0]],[[1,0,2,0],[3,3,3,2],[2,3,0,0],[1,2,2,0]],[[1,0,2,0],[2,4,3,2],[2,3,0,0],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[3,3,0,0],[1,2,2,0]],[[1,0,2,0],[2,3,3,2],[2,3,0,0],[2,2,2,0]],[[2,0,2,0],[2,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,0,2,0],[3,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,0,2,0],[2,4,3,2],[2,3,0,1],[0,2,2,0]],[[1,0,2,0],[2,3,3,2],[3,3,0,1],[0,2,2,0]],[[2,0,2,0],[2,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,0,2,0],[3,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,0,2,0],[2,4,3,2],[2,3,0,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[3,3,0,1],[1,1,2,0]],[[1,0,2,0],[2,3,3,2],[2,3,0,1],[2,1,2,0]],[[2,0,2,0],[2,3,3,2],[2,3,0,1],[1,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,3,0,1],[1,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,3,0,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,3,0,1],[1,2,1,0]],[[1,0,2,0],[2,3,3,2],[2,3,0,1],[2,2,1,0]],[[1,2,1,1],[2,1,3,2],[2,3,0,0],[1,3,2,0]],[[1,2,1,1],[2,1,3,2],[2,3,0,0],[2,2,2,0]],[[1,2,1,1],[2,1,3,2],[3,3,0,0],[1,2,2,0]],[[1,2,1,1],[3,1,3,2],[2,3,0,0],[1,2,2,0]],[[1,3,1,1],[2,1,3,2],[2,3,0,0],[1,2,2,0]],[[2,0,2,0],[2,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,3,0,2],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,3,0,2],[0,2,0,1]],[[2,0,2,0],[2,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,3,0,2],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,3,0,2],[0,2,1,0]],[[2,2,1,1],[2,1,3,2],[2,3,0,0],[1,2,2,0]],[[2,0,2,0],[2,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,0,2,0],[3,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,0,2,0],[2,4,3,2],[2,3,0,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[3,3,0,2],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,3,0,2],[2,1,0,1]],[[2,0,2,0],[2,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[2,3,0,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[3,3,0,2],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[2,3,0,2],[2,1,1,0]],[[2,0,2,0],[2,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,0,2,0],[3,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,0,2,0],[2,4,3,2],[2,3,0,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[3,3,0,2],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[2,3,0,2],[2,2,0,0]],[[1,2,1,1],[2,1,3,3],[2,2,3,1],[1,1,0,0]],[[1,2,1,1],[2,1,4,2],[2,2,3,1],[1,1,0,0]],[[1,2,1,2],[2,1,3,2],[2,2,3,1],[1,1,0,0]],[[1,2,1,1],[2,1,3,3],[2,2,3,1],[0,2,0,0]],[[1,2,1,1],[2,1,4,2],[2,2,3,1],[0,2,0,0]],[[1,2,1,2],[2,1,3,2],[2,2,3,1],[0,2,0,0]],[[2,0,2,0],[2,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,0,2,0],[3,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,0,2,0],[2,4,3,2],[2,3,1,0],[0,2,1,1]],[[1,0,2,0],[2,3,3,2],[3,3,1,0],[0,2,1,1]],[[2,0,2,0],[2,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,0,2,0],[3,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,0,2,0],[2,4,3,2],[2,3,1,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[3,3,1,0],[1,1,1,1]],[[1,0,2,0],[2,3,3,2],[2,3,1,0],[2,1,1,1]],[[2,0,2,0],[2,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,3,1,0],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,3,1,0],[1,2,0,1]],[[1,0,2,0],[2,3,3,2],[2,3,1,0],[2,2,0,1]],[[2,0,2,0],[2,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,0,2,0],[3,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,0,2,0],[2,4,3,2],[2,3,1,1],[0,2,0,1]],[[1,0,2,0],[2,3,3,2],[3,3,1,1],[0,2,0,1]],[[2,0,2,0],[2,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,3,1,1],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,3,1,1],[0,2,1,0]],[[2,0,2,0],[2,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,0,2,0],[3,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,0,2,0],[2,4,3,2],[2,3,1,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[3,3,1,1],[1,1,0,1]],[[1,0,2,0],[2,3,3,2],[2,3,1,1],[2,1,0,1]],[[2,0,2,0],[2,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[2,3,1,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[3,3,1,1],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[2,3,1,1],[2,1,1,0]],[[2,0,2,0],[2,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,0,2,0],[3,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,0,2,0],[2,4,3,2],[2,3,1,1],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[3,3,1,1],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[2,3,1,1],[2,2,0,0]],[[1,2,1,1],[2,1,3,3],[2,2,2,1],[1,2,0,0]],[[1,2,1,1],[2,1,4,2],[2,2,2,1],[1,2,0,0]],[[1,2,1,2],[2,1,3,2],[2,2,2,1],[1,2,0,0]],[[1,2,1,1],[2,1,3,3],[2,2,2,1],[1,1,1,0]],[[1,2,1,1],[2,1,4,2],[2,2,2,1],[1,1,1,0]],[[1,2,1,2],[2,1,3,2],[2,2,2,1],[1,1,1,0]],[[1,2,1,1],[2,1,3,3],[2,2,2,1],[1,1,0,1]],[[1,2,1,1],[2,1,4,2],[2,2,2,1],[1,1,0,1]],[[1,2,1,2],[2,1,3,2],[2,2,2,1],[1,1,0,1]],[[2,0,2,0],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,0,3,0],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,0,2,0],[3,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,0,2,0],[2,4,3,2],[2,3,1,2],[1,0,0,1]],[[1,0,2,0],[2,3,4,2],[2,3,1,2],[1,0,0,1]],[[1,0,2,0],[2,3,3,3],[2,3,1,2],[1,0,0,1]],[[1,0,2,0],[2,3,3,2],[3,3,1,2],[1,0,0,1]],[[1,0,2,0],[2,3,3,2],[2,3,1,3],[1,0,0,1]],[[2,0,2,0],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,0,3,0],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,0,2,0],[3,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,0,2,0],[2,4,3,2],[2,3,1,2],[1,0,1,0]],[[1,0,2,0],[2,3,4,2],[2,3,1,2],[1,0,1,0]],[[1,0,2,0],[2,3,3,3],[2,3,1,2],[1,0,1,0]],[[1,0,2,0],[2,3,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,1,1],[2,1,3,3],[2,2,2,1],[1,0,2,0]],[[1,2,1,1],[2,1,4,2],[2,2,2,1],[1,0,2,0]],[[1,2,1,2],[2,1,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,1,1],[2,1,3,3],[2,2,2,1],[1,0,1,1]],[[1,2,1,1],[2,1,4,2],[2,2,2,1],[1,0,1,1]],[[1,2,1,2],[2,1,3,2],[2,2,2,1],[1,0,1,1]],[[1,2,1,1],[2,1,3,3],[2,2,2,1],[0,2,1,0]],[[1,2,1,1],[2,1,4,2],[2,2,2,1],[0,2,1,0]],[[1,2,1,2],[2,1,3,2],[2,2,2,1],[0,2,1,0]],[[1,2,1,1],[2,1,3,3],[2,2,2,1],[0,2,0,1]],[[1,2,1,1],[2,1,4,2],[2,2,2,1],[0,2,0,1]],[[1,2,1,2],[2,1,3,2],[2,2,2,1],[0,2,0,1]],[[1,2,1,1],[2,1,3,3],[2,2,2,1],[0,1,2,0]],[[1,2,1,1],[2,1,4,2],[2,2,2,1],[0,1,2,0]],[[1,2,1,2],[2,1,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,1,1],[2,1,3,3],[2,2,2,1],[0,1,1,1]],[[1,2,1,1],[2,1,4,2],[2,2,2,1],[0,1,1,1]],[[1,2,1,2],[2,1,3,2],[2,2,2,1],[0,1,1,1]],[[1,2,1,1],[2,1,3,2],[2,2,2,0],[1,3,1,0]],[[1,2,1,1],[2,1,3,2],[2,2,2,0],[2,2,1,0]],[[1,2,1,1],[2,1,3,2],[3,2,2,0],[1,2,1,0]],[[1,2,1,1],[3,1,3,2],[2,2,2,0],[1,2,1,0]],[[1,3,1,1],[2,1,3,2],[2,2,2,0],[1,2,1,0]],[[2,2,1,1],[2,1,3,2],[2,2,2,0],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[2,2,2,0],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[2,2,2,0],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[2,2,2,0],[1,0,2,1]],[[1,2,1,1],[2,1,4,2],[2,2,2,0],[1,0,2,1]],[[1,2,1,2],[2,1,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,1,1],[2,1,3,3],[2,2,2,0],[0,2,1,1]],[[1,2,1,1],[2,1,4,2],[2,2,2,0],[0,2,1,1]],[[1,2,1,2],[2,1,3,2],[2,2,2,0],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[2,2,2,0],[0,1,2,1]],[[1,2,1,1],[2,1,4,2],[2,2,2,0],[0,1,2,1]],[[1,2,1,2],[2,1,3,2],[2,2,2,0],[0,1,2,1]],[[1,2,1,1],[2,1,3,3],[2,2,1,2],[1,2,0,0]],[[1,2,1,1],[2,1,4,2],[2,2,1,2],[1,2,0,0]],[[1,2,1,2],[2,1,3,2],[2,2,1,2],[1,2,0,0]],[[1,2,1,1],[2,1,3,2],[2,2,1,3],[1,1,1,0]],[[1,2,1,1],[2,1,3,3],[2,2,1,2],[1,1,1,0]],[[1,2,1,1],[2,1,4,2],[2,2,1,2],[1,1,1,0]],[[1,2,1,2],[2,1,3,2],[2,2,1,2],[1,1,1,0]],[[2,0,2,0],[2,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,0,2,0],[3,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,0,2,0],[2,4,3,2],[2,3,2,0],[0,2,1,0]],[[1,0,2,0],[2,3,3,2],[3,3,2,0],[0,2,1,0]],[[1,2,1,1],[2,1,3,2],[2,2,1,2],[1,1,0,2]],[[1,2,1,1],[2,1,3,2],[2,2,1,3],[1,1,0,1]],[[1,2,1,1],[2,1,3,3],[2,2,1,2],[1,1,0,1]],[[1,2,1,1],[2,1,4,2],[2,2,1,2],[1,1,0,1]],[[1,2,1,2],[2,1,3,2],[2,2,1,2],[1,1,0,1]],[[2,0,2,0],[2,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,0,3,0],[2,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,0,2,0],[3,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,0,2,0],[2,4,3,2],[2,3,2,0],[1,0,1,1]],[[1,0,2,0],[2,3,4,2],[2,3,2,0],[1,0,1,1]],[[1,0,2,0],[2,3,3,2],[3,3,2,0],[1,0,1,1]],[[2,0,2,0],[2,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,0,2,0],[3,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,0,2,0],[2,4,3,2],[2,3,2,0],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[3,3,2,0],[1,1,1,0]],[[1,0,2,0],[2,3,3,2],[2,3,2,0],[2,1,1,0]],[[1,2,1,1],[2,1,3,2],[2,2,1,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,3],[2,2,1,2],[1,0,2,0]],[[1,2,1,1],[2,1,4,2],[2,2,1,2],[1,0,2,0]],[[1,2,1,2],[2,1,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,2],[2,2,1,2],[1,0,1,2]],[[1,2,1,1],[2,1,3,2],[2,2,1,3],[1,0,1,1]],[[1,2,1,1],[2,1,3,3],[2,2,1,2],[1,0,1,1]],[[1,2,1,1],[2,1,4,2],[2,2,1,2],[1,0,1,1]],[[1,2,1,2],[2,1,3,2],[2,2,1,2],[1,0,1,1]],[[2,0,2,0],[2,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,0,2,0],[3,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,0,2,0],[2,4,3,2],[2,3,2,0],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[3,3,2,0],[1,2,0,0]],[[1,0,2,0],[2,3,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,1,1],[2,1,3,2],[2,2,1,3],[0,2,1,0]],[[1,2,1,1],[2,1,3,3],[2,2,1,2],[0,2,1,0]],[[1,2,1,1],[2,1,4,2],[2,2,1,2],[0,2,1,0]],[[1,2,1,2],[2,1,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,1,1],[2,1,3,2],[2,2,1,2],[0,2,0,2]],[[1,2,1,1],[2,1,3,2],[2,2,1,3],[0,2,0,1]],[[1,2,1,1],[2,1,3,3],[2,2,1,2],[0,2,0,1]],[[1,2,1,1],[2,1,4,2],[2,2,1,2],[0,2,0,1]],[[1,2,1,2],[2,1,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,1,1],[2,1,3,2],[2,2,1,3],[0,1,2,0]],[[1,2,1,1],[2,1,3,3],[2,2,1,2],[0,1,2,0]],[[1,2,1,1],[2,1,4,2],[2,2,1,2],[0,1,2,0]],[[1,2,1,2],[2,1,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,2],[2,2,1,2],[0,1,1,2]],[[1,2,1,1],[2,1,3,2],[2,2,1,3],[0,1,1,1]],[[1,2,1,1],[2,1,3,3],[2,2,1,2],[0,1,1,1]],[[1,2,1,1],[2,1,4,2],[2,2,1,2],[0,1,1,1]],[[1,2,1,2],[2,1,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,1,1],[2,1,3,3],[2,2,1,1],[1,1,2,0]],[[1,2,1,1],[2,1,4,2],[2,2,1,1],[1,1,2,0]],[[1,2,1,2],[2,1,3,2],[2,2,1,1],[1,1,2,0]],[[1,2,1,1],[2,1,3,3],[2,2,1,1],[0,2,2,0]],[[1,2,1,1],[2,1,4,2],[2,2,1,1],[0,2,2,0]],[[1,2,1,2],[2,1,3,2],[2,2,1,1],[0,2,2,0]],[[2,0,2,0],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,0,3,0],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,0,2,0],[3,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,0,2,0],[2,4,3,2],[2,3,2,1],[1,0,0,1]],[[1,0,2,0],[2,3,4,2],[2,3,2,1],[1,0,0,1]],[[1,0,2,0],[2,3,3,3],[2,3,2,1],[1,0,0,1]],[[1,0,2,0],[2,3,3,2],[3,3,2,1],[1,0,0,1]],[[2,0,2,0],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,0,3,0],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,0,2,0],[3,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,0,2,0],[2,4,3,2],[2,3,2,1],[1,0,1,0]],[[1,0,2,0],[2,3,4,2],[2,3,2,1],[1,0,1,0]],[[1,0,2,0],[2,3,3,3],[2,3,2,1],[1,0,1,0]],[[1,0,2,0],[2,3,3,2],[3,3,2,1],[1,0,1,0]],[[1,2,1,1],[2,1,3,2],[2,2,1,0],[1,3,2,0]],[[1,2,1,1],[2,1,3,2],[2,2,1,0],[2,2,2,0]],[[1,2,1,1],[2,1,3,2],[3,2,1,0],[1,2,2,0]],[[1,2,1,1],[3,1,3,2],[2,2,1,0],[1,2,2,0]],[[1,3,1,1],[2,1,3,2],[2,2,1,0],[1,2,2,0]],[[2,2,1,1],[2,1,3,2],[2,2,1,0],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[2,2,1,0],[1,1,2,1]],[[1,2,1,1],[2,1,4,2],[2,2,1,0],[1,1,2,1]],[[1,2,1,2],[2,1,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,1,1],[2,1,3,3],[2,2,1,0],[0,2,2,1]],[[1,2,1,1],[2,1,4,2],[2,2,1,0],[0,2,2,1]],[[1,2,1,2],[2,1,3,2],[2,2,1,0],[0,2,2,1]],[[1,2,1,1],[2,1,3,2],[2,2,0,3],[1,1,2,0]],[[1,2,1,1],[2,1,3,3],[2,2,0,2],[1,1,2,0]],[[1,2,1,1],[2,1,4,2],[2,2,0,2],[1,1,2,0]],[[1,2,1,2],[2,1,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,2],[2,2,0,2],[1,1,1,2]],[[1,2,1,1],[2,1,3,2],[2,2,0,3],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[2,2,0,2],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[2,2,0,2],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,1,1],[2,1,3,2],[2,2,0,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[2,2,0,2],[1,0,3,1]],[[1,2,1,1],[2,1,3,2],[2,2,0,3],[1,0,2,1]],[[1,2,1,1],[2,1,3,3],[2,2,0,2],[1,0,2,1]],[[1,2,1,1],[2,1,4,2],[2,2,0,2],[1,0,2,1]],[[1,2,1,2],[2,1,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,1,1],[2,1,3,2],[2,2,0,3],[0,2,2,0]],[[1,2,1,1],[2,1,3,3],[2,2,0,2],[0,2,2,0]],[[1,2,1,1],[2,1,4,2],[2,2,0,2],[0,2,2,0]],[[1,2,1,2],[2,1,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,1,1],[2,1,3,2],[2,2,0,2],[0,2,1,2]],[[1,2,1,1],[2,1,3,2],[2,2,0,3],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[2,2,0,2],[0,2,1,1]],[[1,2,1,1],[2,1,4,2],[2,2,0,2],[0,2,1,1]],[[1,2,1,2],[2,1,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,1,1],[2,1,3,2],[2,2,0,2],[0,1,2,2]],[[1,2,1,1],[2,1,3,2],[2,2,0,2],[0,1,3,1]],[[1,2,1,1],[2,1,3,2],[2,2,0,3],[0,1,2,1]],[[1,2,1,1],[2,1,3,3],[2,2,0,2],[0,1,2,1]],[[1,2,1,1],[2,1,4,2],[2,2,0,2],[0,1,2,1]],[[1,2,1,2],[2,1,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,1,1],[2,1,3,3],[2,2,0,1],[1,1,2,1]],[[1,2,1,1],[2,1,4,2],[2,2,0,1],[1,1,2,1]],[[1,2,1,2],[2,1,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,1,1],[2,1,3,3],[2,2,0,1],[0,2,2,1]],[[1,2,1,1],[2,1,4,2],[2,2,0,1],[0,2,2,1]],[[1,2,1,2],[2,1,3,2],[2,2,0,1],[0,2,2,1]],[[1,2,1,1],[2,1,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,1,1],[2,1,3,3],[2,1,3,2],[1,0,0,1]],[[1,2,1,1],[2,1,4,2],[2,1,3,2],[1,0,0,1]],[[1,2,1,2],[2,1,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,1,1],[2,1,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,1,1],[2,1,3,3],[2,1,3,2],[0,1,0,1]],[[1,2,1,1],[2,1,4,2],[2,1,3,2],[0,1,0,1]],[[1,2,1,2],[2,1,3,2],[2,1,3,2],[0,1,0,1]],[[1,2,1,1],[2,1,3,2],[2,1,4,1],[1,1,1,0]],[[1,2,1,1],[2,1,3,3],[2,1,3,1],[1,1,1,0]],[[1,2,1,1],[2,1,4,2],[2,1,3,1],[1,1,1,0]],[[1,2,1,2],[2,1,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[2,1,4,1],[1,1,0,1]],[[1,2,1,1],[2,1,3,3],[2,1,3,1],[1,1,0,1]],[[1,2,1,1],[2,1,4,2],[2,1,3,1],[1,1,0,1]],[[1,2,1,2],[2,1,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,1,1],[2,1,3,2],[2,1,3,1],[1,0,3,0]],[[1,2,1,1],[2,1,3,2],[2,1,4,1],[1,0,2,0]],[[1,2,1,1],[2,1,3,3],[2,1,3,1],[1,0,2,0]],[[1,2,1,1],[2,1,4,2],[2,1,3,1],[1,0,2,0]],[[1,2,1,2],[2,1,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,1,1],[2,1,3,2],[2,1,4,1],[1,0,1,1]],[[1,2,1,1],[2,1,3,3],[2,1,3,1],[1,0,1,1]],[[1,2,1,1],[2,1,4,2],[2,1,3,1],[1,0,1,1]],[[1,2,1,2],[2,1,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,1,1],[2,1,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,1,1],[2,1,3,3],[2,1,3,1],[0,2,1,0]],[[1,2,1,1],[2,1,4,2],[2,1,3,1],[0,2,1,0]],[[1,2,1,2],[2,1,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,1,1],[2,1,3,2],[2,1,4,1],[0,2,0,1]],[[1,2,1,1],[2,1,3,3],[2,1,3,1],[0,2,0,1]],[[1,2,1,1],[2,1,4,2],[2,1,3,1],[0,2,0,1]],[[1,2,1,2],[2,1,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,1,1],[2,1,3,2],[2,1,3,1],[0,1,3,0]],[[1,2,1,1],[2,1,3,2],[2,1,4,1],[0,1,2,0]],[[1,2,1,1],[2,1,3,3],[2,1,3,1],[0,1,2,0]],[[1,2,1,1],[2,1,4,2],[2,1,3,1],[0,1,2,0]],[[1,2,1,2],[2,1,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,1,1],[2,1,3,2],[2,1,4,1],[0,1,1,1]],[[1,2,1,1],[2,1,3,3],[2,1,3,1],[0,1,1,1]],[[1,2,1,1],[2,1,4,2],[2,1,3,1],[0,1,1,1]],[[1,2,1,2],[2,1,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,1,1],[2,1,3,2],[2,1,4,1],[0,0,2,1]],[[1,2,1,1],[2,1,3,3],[2,1,3,1],[0,0,2,1]],[[1,2,1,1],[2,1,4,2],[2,1,3,1],[0,0,2,1]],[[1,2,1,2],[2,1,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,1,1],[2,1,3,2],[2,1,4,0],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[2,1,3,0],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[2,1,3,0],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,1,1],[2,1,3,2],[2,1,3,0],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[2,1,3,0],[1,0,3,1]],[[1,2,1,1],[2,1,3,2],[2,1,4,0],[1,0,2,1]],[[1,2,1,1],[2,1,3,3],[2,1,3,0],[1,0,2,1]],[[1,2,1,1],[2,1,4,2],[2,1,3,0],[1,0,2,1]],[[1,2,1,2],[2,1,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,1,1],[2,1,3,2],[2,1,4,0],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[2,1,3,0],[0,2,1,1]],[[1,2,1,1],[2,1,4,2],[2,1,3,0],[0,2,1,1]],[[1,2,1,2],[2,1,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,1,1],[2,1,3,2],[2,1,3,0],[0,1,2,2]],[[1,2,1,1],[2,1,3,2],[2,1,3,0],[0,1,3,1]],[[1,2,1,1],[2,1,3,2],[2,1,4,0],[0,1,2,1]],[[1,2,1,1],[2,1,3,3],[2,1,3,0],[0,1,2,1]],[[1,2,1,1],[2,1,4,2],[2,1,3,0],[0,1,2,1]],[[1,2,1,2],[2,1,3,2],[2,1,3,0],[0,1,2,1]],[[1,2,1,1],[2,1,3,2],[2,1,2,3],[1,1,1,0]],[[1,2,1,1],[2,1,3,3],[2,1,2,2],[1,1,1,0]],[[1,2,1,1],[2,1,4,2],[2,1,2,2],[1,1,1,0]],[[1,2,1,2],[2,1,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[2,1,2,2],[1,1,0,2]],[[1,2,1,1],[2,1,3,2],[2,1,2,3],[1,1,0,1]],[[1,2,1,1],[2,1,3,3],[2,1,2,2],[1,1,0,1]],[[1,2,1,1],[2,1,4,2],[2,1,2,2],[1,1,0,1]],[[1,2,1,2],[2,1,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,1,1],[2,1,3,2],[2,1,2,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,3],[2,1,2,2],[1,0,2,0]],[[1,2,1,1],[2,1,4,2],[2,1,2,2],[1,0,2,0]],[[1,2,1,2],[2,1,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,2],[2,1,2,2],[1,0,1,2]],[[1,2,1,1],[2,1,3,2],[2,1,2,3],[1,0,1,1]],[[1,2,1,1],[2,1,3,3],[2,1,2,2],[1,0,1,1]],[[1,2,1,1],[2,1,4,2],[2,1,2,2],[1,0,1,1]],[[1,2,1,2],[2,1,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,1,1],[2,1,3,2],[2,1,2,3],[0,2,1,0]],[[1,2,1,1],[2,1,3,3],[2,1,2,2],[0,2,1,0]],[[1,2,1,1],[2,1,4,2],[2,1,2,2],[0,2,1,0]],[[1,2,1,2],[2,1,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,1,1],[2,1,3,2],[2,1,2,2],[0,2,0,2]],[[1,2,1,1],[2,1,3,2],[2,1,2,3],[0,2,0,1]],[[1,2,1,1],[2,1,3,3],[2,1,2,2],[0,2,0,1]],[[1,2,1,1],[2,1,4,2],[2,1,2,2],[0,2,0,1]],[[1,2,1,2],[2,1,3,2],[2,1,2,2],[0,2,0,1]],[[1,2,1,1],[2,1,3,2],[2,1,2,3],[0,1,2,0]],[[1,2,1,1],[2,1,3,3],[2,1,2,2],[0,1,2,0]],[[1,2,1,1],[2,1,4,2],[2,1,2,2],[0,1,2,0]],[[1,2,1,2],[2,1,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,2],[2,1,2,2],[0,1,1,2]],[[1,2,1,1],[2,1,3,2],[2,1,2,3],[0,1,1,1]],[[1,2,1,1],[2,1,3,3],[2,1,2,2],[0,1,1,1]],[[1,2,1,1],[2,1,4,2],[2,1,2,2],[0,1,1,1]],[[1,2,1,2],[2,1,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,1,1],[2,1,3,2],[2,1,2,2],[0,0,2,2]],[[1,2,1,1],[2,1,3,2],[2,1,2,3],[0,0,2,1]],[[1,2,1,1],[2,1,3,3],[2,1,2,2],[0,0,2,1]],[[1,2,1,1],[2,1,4,2],[2,1,2,2],[0,0,2,1]],[[1,2,1,2],[2,1,3,2],[2,1,2,2],[0,0,2,1]],[[1,2,1,1],[2,1,3,3],[2,1,2,1],[1,2,1,0]],[[1,2,1,1],[2,1,4,2],[2,1,2,1],[1,2,1,0]],[[1,2,1,2],[2,1,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[2,1,2,1],[1,2,0,1]],[[1,2,1,1],[2,1,4,2],[2,1,2,1],[1,2,0,1]],[[1,2,1,2],[2,1,3,2],[2,1,2,1],[1,2,0,1]],[[1,2,1,1],[2,1,3,3],[2,1,2,0],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[2,1,2,0],[1,2,1,1]],[[1,2,1,2],[2,1,3,2],[2,1,2,0],[1,2,1,1]],[[1,2,1,1],[2,1,3,2],[2,1,1,3],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[2,1,1,2],[1,2,1,0]],[[1,2,1,1],[2,1,4,2],[2,1,1,2],[1,2,1,0]],[[2,0,2,0],[2,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,0,3,0],[2,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,0,2,0],[3,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,0,2,0],[2,4,3,2],[2,3,3,0],[1,0,1,0]],[[1,0,2,0],[2,3,4,2],[2,3,3,0],[1,0,1,0]],[[1,0,2,0],[2,3,3,2],[3,3,3,0],[1,0,1,0]],[[1,2,1,2],[2,1,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,1,1],[2,1,3,2],[2,1,1,2],[1,2,0,2]],[[1,2,1,1],[2,1,3,2],[2,1,1,3],[1,2,0,1]],[[1,2,1,1],[2,1,3,3],[2,1,1,2],[1,2,0,1]],[[1,2,1,1],[2,1,4,2],[2,1,1,2],[1,2,0,1]],[[1,2,1,2],[2,1,3,2],[2,1,1,2],[1,2,0,1]],[[1,2,1,1],[2,1,3,2],[2,1,1,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[2,1,1,2],[1,0,3,1]],[[1,2,1,1],[2,1,3,2],[2,1,1,3],[1,0,2,1]],[[1,2,1,1],[2,1,3,3],[2,1,1,2],[1,0,2,1]],[[1,2,1,1],[2,1,4,2],[2,1,1,2],[1,0,2,1]],[[1,2,1,2],[2,1,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,1,1],[2,1,3,2],[2,1,1,2],[0,1,2,2]],[[1,2,1,1],[2,1,3,2],[2,1,1,2],[0,1,3,1]],[[1,2,1,1],[2,1,3,2],[2,1,1,3],[0,1,2,1]],[[1,2,1,1],[2,1,3,3],[2,1,1,2],[0,1,2,1]],[[1,2,1,1],[2,1,4,2],[2,1,1,2],[0,1,2,1]],[[1,2,1,2],[2,1,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,1,1],[2,1,3,3],[2,1,1,1],[1,2,2,0]],[[1,2,1,1],[2,1,4,2],[2,1,1,1],[1,2,2,0]],[[1,2,1,2],[2,1,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[2,1,1,0],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[2,1,1,0],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[2,1,1,0],[1,2,2,1]],[[1,2,1,1],[2,1,3,2],[2,1,0,3],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[2,1,0,2],[1,2,2,0]],[[1,2,1,1],[2,1,4,2],[2,1,0,2],[1,2,2,0]],[[1,2,1,2],[2,1,3,2],[2,1,0,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,2],[2,1,0,2],[1,2,1,2]],[[1,2,1,1],[2,1,3,2],[2,1,0,3],[1,2,1,1]],[[1,2,1,1],[2,1,3,3],[2,1,0,2],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[2,1,0,2],[1,2,1,1]],[[1,2,1,2],[2,1,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,1,1],[2,1,3,2],[2,1,0,2],[1,1,2,2]],[[1,2,1,1],[2,1,3,2],[2,1,0,2],[1,1,3,1]],[[1,2,1,1],[2,1,3,2],[2,1,0,3],[1,1,2,1]],[[1,2,1,1],[2,1,3,3],[2,1,0,2],[1,1,2,1]],[[1,2,1,1],[2,1,4,2],[2,1,0,2],[1,1,2,1]],[[1,2,1,2],[2,1,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,1,1],[2,1,3,2],[2,1,0,2],[0,2,2,2]],[[1,2,1,1],[2,1,3,2],[2,1,0,2],[0,2,3,1]],[[1,2,1,1],[2,1,3,2],[2,1,0,2],[0,3,2,1]],[[1,2,1,1],[2,1,3,2],[2,1,0,3],[0,2,2,1]],[[1,2,1,1],[2,1,3,3],[2,1,0,2],[0,2,2,1]],[[1,2,1,1],[2,1,4,2],[2,1,0,2],[0,2,2,1]],[[1,2,1,2],[2,1,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,1,1],[2,1,3,3],[2,1,0,1],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[2,1,0,1],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[2,1,0,1],[1,2,2,1]],[[1,2,1,1],[2,1,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,3],[2,0,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,4,2],[2,0,3,2],[1,0,2,0]],[[1,2,1,2],[2,1,3,2],[2,0,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,2],[2,0,3,2],[1,0,1,2]],[[1,2,1,1],[2,1,3,2],[2,0,3,3],[1,0,1,1]],[[1,2,1,1],[2,1,3,3],[2,0,3,2],[1,0,1,1]],[[1,2,1,1],[2,1,4,2],[2,0,3,2],[1,0,1,1]],[[1,2,1,2],[2,1,3,2],[2,0,3,2],[1,0,1,1]],[[1,2,1,1],[2,1,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,1,1],[2,1,3,3],[2,0,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,4,2],[2,0,3,2],[0,1,2,0]],[[1,2,1,2],[2,1,3,2],[2,0,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,2],[2,0,3,2],[0,1,1,2]],[[1,2,1,1],[2,1,3,2],[2,0,3,3],[0,1,1,1]],[[1,2,1,1],[2,1,3,3],[2,0,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,4,2],[2,0,3,2],[0,1,1,1]],[[1,2,1,2],[2,1,3,2],[2,0,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,3,2],[2,0,3,2],[0,0,2,2]],[[1,2,1,1],[2,1,3,2],[2,0,3,3],[0,0,2,1]],[[1,2,1,1],[2,1,3,3],[2,0,3,2],[0,0,2,1]],[[1,2,1,1],[2,1,4,2],[2,0,3,2],[0,0,2,1]],[[1,2,1,2],[2,1,3,2],[2,0,3,2],[0,0,2,1]],[[1,2,1,1],[2,1,3,2],[2,0,4,1],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[2,0,3,1],[1,2,1,0]],[[1,2,1,1],[2,1,4,2],[2,0,3,1],[1,2,1,0]],[[1,2,1,2],[2,1,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,1,1],[2,1,3,2],[2,0,4,1],[1,2,0,1]],[[1,2,1,1],[2,1,3,3],[2,0,3,1],[1,2,0,1]],[[1,2,1,1],[2,1,4,2],[2,0,3,1],[1,2,0,1]],[[1,2,1,2],[2,1,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,1,1],[2,1,3,2],[2,0,3,1],[1,1,3,0]],[[1,2,1,1],[2,1,3,2],[2,0,4,1],[1,1,2,0]],[[1,2,1,1],[2,1,3,3],[2,0,3,1],[1,1,2,0]],[[1,2,1,1],[2,1,4,2],[2,0,3,1],[1,1,2,0]],[[1,2,1,2],[2,1,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,1,1],[2,1,3,2],[2,0,4,1],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[2,0,3,1],[1,1,1,1]],[[2,0,2,0],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,0,3,0],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,0,2,0],[3,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,0,2,0],[2,4,3,2],[2,3,3,1],[1,0,0,0]],[[1,0,2,0],[2,3,4,2],[2,3,3,1],[1,0,0,0]],[[1,0,2,0],[2,3,3,3],[2,3,3,1],[1,0,0,0]],[[1,0,2,0],[2,3,3,2],[3,3,3,1],[1,0,0,0]],[[1,2,1,1],[2,1,4,2],[2,0,3,1],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,1,1],[2,1,3,2],[2,0,3,1],[0,2,3,0]],[[1,2,1,1],[2,1,3,2],[2,0,3,1],[0,3,2,0]],[[1,2,1,1],[2,1,3,2],[2,0,4,1],[0,2,2,0]],[[1,2,1,1],[2,1,3,3],[2,0,3,1],[0,2,2,0]],[[1,2,1,1],[2,1,4,2],[2,0,3,1],[0,2,2,0]],[[1,2,1,2],[2,1,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,1,1],[2,1,3,2],[2,0,4,1],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[2,0,3,1],[0,2,1,1]],[[1,2,1,1],[2,1,4,2],[2,0,3,1],[0,2,1,1]],[[1,2,1,2],[2,1,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,1,1],[2,1,3,2],[2,0,4,0],[1,2,1,1]],[[1,2,1,1],[2,1,3,3],[2,0,3,0],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[2,0,3,0],[1,2,1,1]],[[1,2,1,2],[2,1,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,1,1],[2,1,3,2],[2,0,3,0],[1,1,2,2]],[[1,2,1,1],[2,1,3,2],[2,0,3,0],[1,1,3,1]],[[1,2,1,1],[2,1,3,2],[2,0,4,0],[1,1,2,1]],[[1,2,1,1],[2,1,3,3],[2,0,3,0],[1,1,2,1]],[[1,2,1,1],[2,1,4,2],[2,0,3,0],[1,1,2,1]],[[1,2,1,2],[2,1,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,1,1],[2,1,3,2],[2,0,3,0],[0,2,2,2]],[[1,2,1,1],[2,1,3,2],[2,0,3,0],[0,2,3,1]],[[1,2,1,1],[2,1,3,2],[2,0,3,0],[0,3,2,1]],[[1,2,1,1],[2,1,3,2],[2,0,4,0],[0,2,2,1]],[[1,2,1,1],[2,1,3,3],[2,0,3,0],[0,2,2,1]],[[1,2,1,1],[2,1,4,2],[2,0,3,0],[0,2,2,1]],[[1,2,1,2],[2,1,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,1,1],[2,1,3,2],[2,0,2,3],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[2,0,2,2],[1,2,1,0]],[[1,2,1,1],[2,1,4,2],[2,0,2,2],[1,2,1,0]],[[1,2,1,2],[2,1,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,1,1],[2,1,3,2],[2,0,2,2],[1,2,0,2]],[[1,2,1,1],[2,1,3,2],[2,0,2,3],[1,2,0,1]],[[1,2,1,1],[2,1,3,3],[2,0,2,2],[1,2,0,1]],[[1,2,1,1],[2,1,4,2],[2,0,2,2],[1,2,0,1]],[[1,2,1,2],[2,1,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,1,1],[2,1,3,2],[2,0,2,3],[1,1,2,0]],[[1,2,1,1],[2,1,3,3],[2,0,2,2],[1,1,2,0]],[[1,2,1,1],[2,1,4,2],[2,0,2,2],[1,1,2,0]],[[1,2,1,2],[2,1,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,2],[2,0,2,2],[1,1,1,2]],[[1,2,1,1],[2,1,3,2],[2,0,2,3],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[2,0,2,2],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[2,0,2,2],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,1,1],[2,1,3,2],[2,0,2,3],[0,2,2,0]],[[1,2,1,1],[2,1,3,3],[2,0,2,2],[0,2,2,0]],[[1,2,1,1],[2,1,4,2],[2,0,2,2],[0,2,2,0]],[[1,2,1,2],[2,1,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,1,1],[2,1,3,2],[2,0,2,2],[0,2,1,2]],[[1,2,1,1],[2,1,3,2],[2,0,2,3],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[2,0,2,2],[0,2,1,1]],[[1,2,1,1],[2,1,4,2],[2,0,2,2],[0,2,1,1]],[[1,2,1,2],[2,1,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[2,0,2,1],[1,2,2,0]],[[1,2,1,1],[2,1,4,2],[2,0,2,1],[1,2,2,0]],[[1,2,1,2],[2,1,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[2,0,2,0],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[2,0,2,0],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,1,1],[2,1,3,2],[2,0,1,3],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[2,0,1,2],[1,2,2,0]],[[1,2,1,1],[2,1,4,2],[2,0,1,2],[1,2,2,0]],[[1,2,1,2],[2,1,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,2],[2,0,1,2],[1,2,1,2]],[[1,2,1,1],[2,1,3,2],[2,0,1,3],[1,2,1,1]],[[1,2,1,1],[2,1,3,3],[2,0,1,2],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[2,0,1,2],[1,2,1,1]],[[1,2,1,2],[2,1,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,1,1],[2,1,3,2],[2,0,1,2],[1,1,2,2]],[[1,2,1,1],[2,1,3,2],[2,0,1,2],[1,1,3,1]],[[1,2,1,1],[2,1,3,2],[2,0,1,3],[1,1,2,1]],[[1,2,1,1],[2,1,3,3],[2,0,1,2],[1,1,2,1]],[[1,2,1,1],[2,1,4,2],[2,0,1,2],[1,1,2,1]],[[1,2,1,2],[2,1,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,1,1],[2,1,3,2],[2,0,1,2],[0,2,2,2]],[[1,2,1,1],[2,1,3,2],[2,0,1,2],[0,2,3,1]],[[1,2,1,1],[2,1,3,2],[2,0,1,2],[0,3,2,1]],[[1,2,1,1],[2,1,3,2],[2,0,1,3],[0,2,2,1]],[[1,2,1,1],[2,1,3,3],[2,0,1,2],[0,2,2,1]],[[1,2,1,1],[2,1,4,2],[2,0,1,2],[0,2,2,1]],[[1,2,1,2],[2,1,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,1,1],[2,1,3,3],[2,0,1,1],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[2,0,1,1],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,1,1],[2,1,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,1,1],[2,1,3,3],[1,3,3,2],[0,0,0,1]],[[1,2,1,1],[2,1,4,2],[1,3,3,2],[0,0,0,1]],[[1,2,1,2],[2,1,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,1,1],[2,1,3,3],[1,3,3,1],[1,1,0,0]],[[1,2,1,1],[2,1,4,2],[1,3,3,1],[1,1,0,0]],[[1,2,1,2],[2,1,3,2],[1,3,3,1],[1,1,0,0]],[[1,2,1,1],[2,1,3,3],[1,3,3,1],[0,2,0,0]],[[1,2,1,1],[2,1,4,2],[1,3,3,1],[0,2,0,0]],[[1,2,1,2],[2,1,3,2],[1,3,3,1],[0,2,0,0]],[[1,2,1,1],[2,1,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,1,1],[2,1,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,1,1],[2,1,4,2],[1,3,3,1],[0,0,2,0]],[[1,2,1,2],[2,1,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,1,1],[2,1,3,2],[1,3,4,1],[0,0,1,1]],[[1,2,1,1],[2,1,3,3],[1,3,3,1],[0,0,1,1]],[[1,2,1,1],[2,1,4,2],[1,3,3,1],[0,0,1,1]],[[1,2,1,2],[2,1,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,1,1],[2,1,3,2],[1,3,4,0],[0,0,2,1]],[[1,2,1,1],[2,1,3,3],[1,3,3,0],[0,0,2,1]],[[1,2,1,1],[2,1,4,2],[1,3,3,0],[0,0,2,1]],[[1,2,1,2],[2,1,3,2],[1,3,3,0],[0,0,2,1]],[[1,2,1,1],[2,1,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,1,1],[2,1,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,1,1],[2,1,4,2],[1,3,2,2],[0,0,2,0]],[[1,2,1,2],[2,1,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,1,1],[2,1,3,2],[1,3,2,2],[0,0,1,2]],[[1,2,1,1],[2,1,3,2],[1,3,2,3],[0,0,1,1]],[[1,2,1,1],[2,1,3,3],[1,3,2,2],[0,0,1,1]],[[1,2,1,1],[2,1,4,2],[1,3,2,2],[0,0,1,1]],[[1,2,1,2],[2,1,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,1,1],[2,1,3,3],[1,3,2,1],[1,2,0,0]],[[1,2,1,1],[2,1,4,2],[1,3,2,1],[1,2,0,0]],[[1,2,1,2],[2,1,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,1,1],[2,1,3,3],[1,3,2,1],[1,1,1,0]],[[1,2,1,1],[2,1,4,2],[1,3,2,1],[1,1,1,0]],[[1,2,1,2],[2,1,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,1,1],[2,1,3,3],[1,3,2,1],[1,1,0,1]],[[1,2,1,1],[2,1,4,2],[1,3,2,1],[1,1,0,1]],[[1,2,1,2],[2,1,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,1,1],[2,1,3,3],[1,3,2,1],[1,0,2,0]],[[1,2,1,1],[2,1,4,2],[1,3,2,1],[1,0,2,0]],[[1,2,1,2],[2,1,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,1,1],[2,1,3,3],[1,3,2,1],[1,0,1,1]],[[1,2,1,1],[2,1,4,2],[1,3,2,1],[1,0,1,1]],[[1,2,1,2],[2,1,3,2],[1,3,2,1],[1,0,1,1]],[[1,2,1,1],[2,1,3,3],[1,3,2,1],[0,2,1,0]],[[1,2,1,1],[2,1,4,2],[1,3,2,1],[0,2,1,0]],[[1,2,1,2],[2,1,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,1,1],[2,1,3,3],[1,3,2,1],[0,2,0,1]],[[1,2,1,1],[2,1,4,2],[1,3,2,1],[0,2,0,1]],[[1,2,1,2],[2,1,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,1,1],[2,1,3,3],[1,3,2,1],[0,1,2,0]],[[1,2,1,1],[2,1,4,2],[1,3,2,1],[0,1,2,0]],[[1,2,1,2],[2,1,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,1,1],[2,1,3,3],[1,3,2,1],[0,1,1,1]],[[1,2,1,1],[2,1,4,2],[1,3,2,1],[0,1,1,1]],[[1,2,1,2],[2,1,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,1,1],[2,1,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,1,1],[2,1,3,2],[1,3,2,0],[2,2,1,0]],[[1,2,1,1],[2,1,3,2],[1,4,2,0],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[1,3,2,0],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[1,3,2,0],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[1,3,2,0],[1,0,2,1]],[[1,2,1,1],[2,1,4,2],[1,3,2,0],[1,0,2,1]],[[1,2,1,2],[2,1,3,2],[1,3,2,0],[1,0,2,1]],[[1,2,1,1],[2,1,3,3],[1,3,2,0],[0,2,1,1]],[[1,2,1,1],[2,1,4,2],[1,3,2,0],[0,2,1,1]],[[1,2,1,2],[2,1,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[1,3,2,0],[0,1,2,1]],[[1,2,1,1],[2,1,4,2],[1,3,2,0],[0,1,2,1]],[[1,2,1,2],[2,1,3,2],[1,3,2,0],[0,1,2,1]],[[1,2,1,1],[2,1,3,3],[1,3,1,2],[1,2,0,0]],[[1,2,1,1],[2,1,4,2],[1,3,1,2],[1,2,0,0]],[[1,2,1,2],[2,1,3,2],[1,3,1,2],[1,2,0,0]],[[1,2,1,1],[2,1,3,2],[1,3,1,3],[1,1,1,0]],[[1,2,1,1],[2,1,3,3],[1,3,1,2],[1,1,1,0]],[[1,2,1,1],[2,1,4,2],[1,3,1,2],[1,1,1,0]],[[1,2,1,2],[2,1,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[1,3,1,2],[1,1,0,2]],[[1,2,1,1],[2,1,3,2],[1,3,1,3],[1,1,0,1]],[[1,2,1,1],[2,1,3,3],[1,3,1,2],[1,1,0,1]],[[1,2,1,1],[2,1,4,2],[1,3,1,2],[1,1,0,1]],[[1,2,1,2],[2,1,3,2],[1,3,1,2],[1,1,0,1]],[[1,2,1,1],[2,1,3,2],[1,3,1,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,3],[1,3,1,2],[1,0,2,0]],[[1,2,1,1],[2,1,4,2],[1,3,1,2],[1,0,2,0]],[[1,2,1,2],[2,1,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,2],[1,3,1,2],[1,0,1,2]],[[1,2,1,1],[2,1,3,2],[1,3,1,3],[1,0,1,1]],[[1,2,1,1],[2,1,3,3],[1,3,1,2],[1,0,1,1]],[[1,2,1,1],[2,1,4,2],[1,3,1,2],[1,0,1,1]],[[1,2,1,2],[2,1,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,1,1],[2,1,3,2],[1,3,1,3],[0,2,1,0]],[[1,2,1,1],[2,1,3,3],[1,3,1,2],[0,2,1,0]],[[1,2,1,1],[2,1,4,2],[1,3,1,2],[0,2,1,0]],[[1,2,1,2],[2,1,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,1,1],[2,1,3,2],[1,3,1,2],[0,2,0,2]],[[1,2,1,1],[2,1,3,2],[1,3,1,3],[0,2,0,1]],[[1,2,1,1],[2,1,3,3],[1,3,1,2],[0,2,0,1]],[[1,0,2,1],[0,0,2,2],[1,3,3,3],[1,2,2,1]],[[1,0,2,1],[0,0,2,2],[1,3,3,2],[1,3,2,1]],[[1,0,2,1],[0,0,2,2],[1,3,3,2],[1,2,3,1]],[[1,0,2,1],[0,0,2,2],[1,3,3,2],[1,2,2,2]],[[1,0,2,1],[0,0,2,2],[2,3,3,3],[0,2,2,1]],[[1,0,2,1],[0,0,2,2],[2,3,3,2],[0,2,3,1]],[[1,0,2,1],[0,0,2,2],[2,3,3,2],[0,2,2,2]],[[1,0,2,2],[0,0,3,2],[0,3,3,2],[1,2,2,1]],[[1,0,2,1],[0,0,3,3],[0,3,3,2],[1,2,2,1]],[[1,0,2,1],[0,0,3,2],[0,3,3,3],[1,2,2,1]],[[1,0,2,1],[0,0,3,2],[0,3,3,2],[1,2,3,1]],[[1,0,2,1],[0,0,3,2],[0,3,3,2],[1,2,2,2]],[[1,0,2,2],[0,0,3,2],[1,2,3,2],[1,2,2,1]],[[1,0,2,1],[0,0,3,3],[1,2,3,2],[1,2,2,1]],[[1,0,2,1],[0,0,3,2],[1,2,3,3],[1,2,2,1]],[[1,0,2,1],[0,0,3,2],[1,2,3,2],[1,2,3,1]],[[1,0,2,1],[0,0,3,2],[1,2,3,2],[1,2,2,2]],[[1,0,2,2],[0,0,3,2],[1,3,2,2],[1,2,2,1]],[[1,0,2,1],[0,0,3,3],[1,3,2,2],[1,2,2,1]],[[1,0,2,1],[0,0,3,2],[1,3,2,3],[1,2,2,1]],[[1,0,2,1],[0,0,3,2],[1,3,2,2],[2,2,2,1]],[[1,0,2,1],[0,0,3,2],[1,3,2,2],[1,3,2,1]],[[1,0,2,1],[0,0,3,2],[1,3,2,2],[1,2,3,1]],[[1,0,2,1],[0,0,3,2],[1,3,2,2],[1,2,2,2]],[[1,0,2,1],[0,0,3,2],[1,3,4,1],[1,2,2,1]],[[1,0,2,1],[0,0,3,2],[1,3,3,1],[2,2,2,1]],[[1,0,2,1],[0,0,3,2],[1,3,3,1],[1,3,2,1]],[[1,0,2,1],[0,0,3,2],[1,3,3,1],[1,2,3,1]],[[1,0,2,1],[0,0,3,2],[1,3,3,1],[1,2,2,2]],[[1,0,2,2],[0,0,3,2],[1,3,3,2],[1,2,1,1]],[[1,0,2,1],[0,0,3,3],[1,3,3,2],[1,2,1,1]],[[1,0,2,1],[0,0,3,2],[1,3,4,2],[1,2,1,1]],[[1,0,2,1],[0,0,3,2],[1,3,3,3],[1,2,1,1]],[[1,0,2,1],[0,0,3,2],[1,3,3,2],[1,2,1,2]],[[1,0,2,2],[0,0,3,2],[1,3,3,2],[1,2,2,0]],[[1,0,2,1],[0,0,3,3],[1,3,3,2],[1,2,2,0]],[[1,0,2,1],[0,0,3,2],[1,3,4,2],[1,2,2,0]],[[1,0,2,1],[0,0,3,2],[1,3,3,3],[1,2,2,0]],[[1,0,2,1],[0,0,3,2],[1,3,3,2],[2,2,2,0]],[[1,0,2,1],[0,0,3,2],[1,3,3,2],[1,3,2,0]],[[1,0,2,1],[0,0,3,2],[1,3,3,2],[1,2,3,0]],[[1,0,2,2],[0,0,3,2],[2,2,3,2],[0,2,2,1]],[[1,0,2,1],[0,0,3,3],[2,2,3,2],[0,2,2,1]],[[1,0,2,1],[0,0,3,2],[2,2,3,3],[0,2,2,1]],[[1,0,2,1],[0,0,3,2],[2,2,3,2],[0,2,3,1]],[[1,0,2,1],[0,0,3,2],[2,2,3,2],[0,2,2,2]],[[1,0,2,2],[0,0,3,2],[2,3,2,2],[0,2,2,1]],[[1,0,2,1],[0,0,3,3],[2,3,2,2],[0,2,2,1]],[[1,0,2,1],[0,0,3,2],[2,3,2,3],[0,2,2,1]],[[1,0,2,1],[0,0,3,2],[2,3,2,2],[0,3,2,1]],[[1,0,2,1],[0,0,3,2],[2,3,2,2],[0,2,3,1]],[[1,0,2,1],[0,0,3,2],[2,3,2,2],[0,2,2,2]],[[1,0,2,1],[0,0,3,2],[2,3,4,1],[0,2,2,1]],[[1,0,2,1],[0,0,3,2],[2,3,3,1],[0,3,2,1]],[[1,0,2,1],[0,0,3,2],[2,3,3,1],[0,2,3,1]],[[1,0,2,1],[0,0,3,2],[2,3,3,1],[0,2,2,2]],[[1,0,2,2],[0,0,3,2],[2,3,3,2],[0,2,1,1]],[[1,0,2,1],[0,0,3,3],[2,3,3,2],[0,2,1,1]],[[1,0,2,1],[0,0,3,2],[2,3,4,2],[0,2,1,1]],[[1,0,2,1],[0,0,3,2],[2,3,3,3],[0,2,1,1]],[[1,0,2,1],[0,0,3,2],[2,3,3,2],[0,2,1,2]],[[1,0,2,2],[0,0,3,2],[2,3,3,2],[0,2,2,0]],[[1,0,2,1],[0,0,3,3],[2,3,3,2],[0,2,2,0]],[[1,0,2,1],[0,0,3,2],[2,3,4,2],[0,2,2,0]],[[1,0,2,1],[0,0,3,2],[2,3,3,3],[0,2,2,0]],[[1,0,2,1],[0,0,3,2],[2,3,3,2],[0,3,2,0]],[[1,0,2,1],[0,0,3,2],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,4,2],[1,3,1,2],[0,2,0,1]],[[1,2,1,2],[2,1,3,2],[1,3,1,2],[0,2,0,1]],[[1,0,2,1],[0,1,0,2],[2,3,3,3],[1,2,2,1]],[[1,0,2,1],[0,1,0,2],[2,3,3,2],[2,2,2,1]],[[1,0,2,1],[0,1,0,2],[2,3,3,2],[1,3,2,1]],[[1,0,2,1],[0,1,0,2],[2,3,3,2],[1,2,3,1]],[[1,0,2,1],[0,1,0,2],[2,3,3,2],[1,2,2,2]],[[1,0,2,1],[0,1,1,2],[1,3,3,3],[1,2,2,1]],[[1,0,2,1],[0,1,1,2],[1,3,3,2],[1,3,2,1]],[[1,0,2,1],[0,1,1,2],[1,3,3,2],[1,2,3,1]],[[1,0,2,1],[0,1,1,2],[1,3,3,2],[1,2,2,2]],[[1,0,2,2],[0,1,1,2],[2,3,2,2],[1,2,2,1]],[[1,0,2,1],[0,1,1,3],[2,3,2,2],[1,2,2,1]],[[1,0,2,1],[0,1,1,2],[2,3,2,3],[1,2,2,1]],[[1,0,2,1],[0,1,1,2],[2,3,2,2],[2,2,2,1]],[[1,0,2,1],[0,1,1,2],[2,3,2,2],[1,3,2,1]],[[1,0,2,1],[0,1,1,2],[2,3,2,2],[1,2,3,1]],[[1,0,2,1],[0,1,1,2],[2,3,2,2],[1,2,2,2]],[[1,0,2,1],[0,1,1,2],[2,3,4,1],[1,2,2,1]],[[1,0,2,1],[0,1,1,2],[2,3,3,1],[2,2,2,1]],[[1,0,2,1],[0,1,1,2],[2,3,3,1],[1,3,2,1]],[[1,0,2,1],[0,1,1,2],[2,3,3,1],[1,2,3,1]],[[1,0,2,1],[0,1,1,2],[2,3,3,1],[1,2,2,2]],[[1,0,2,1],[0,1,1,2],[2,3,3,3],[0,2,2,1]],[[1,0,2,1],[0,1,1,2],[2,3,3,2],[0,2,3,1]],[[1,0,2,1],[0,1,1,2],[2,3,3,2],[0,2,2,2]],[[1,0,2,2],[0,1,1,2],[2,3,3,2],[1,2,1,1]],[[1,0,2,1],[0,1,1,3],[2,3,3,2],[1,2,1,1]],[[1,0,2,1],[0,1,1,2],[2,3,4,2],[1,2,1,1]],[[1,0,2,1],[0,1,1,2],[2,3,3,3],[1,2,1,1]],[[1,0,2,1],[0,1,1,2],[2,3,3,2],[1,2,1,2]],[[1,0,2,2],[0,1,1,2],[2,3,3,2],[1,2,2,0]],[[1,0,2,1],[0,1,1,3],[2,3,3,2],[1,2,2,0]],[[1,0,2,1],[0,1,1,2],[2,3,4,2],[1,2,2,0]],[[1,0,2,1],[0,1,1,2],[2,3,3,3],[1,2,2,0]],[[1,0,2,1],[0,1,1,2],[2,3,3,2],[2,2,2,0]],[[1,0,2,1],[0,1,1,2],[2,3,3,2],[1,3,2,0]],[[1,0,2,1],[0,1,1,2],[2,3,3,2],[1,2,3,0]],[[1,0,2,2],[0,1,2,2],[1,3,2,2],[1,2,2,1]],[[1,0,2,1],[0,1,2,3],[1,3,2,2],[1,2,2,1]],[[1,0,2,1],[0,1,2,2],[1,3,2,3],[1,2,2,1]],[[1,0,2,1],[0,1,2,2],[1,3,2,2],[2,2,2,1]],[[1,0,2,1],[0,1,2,2],[1,3,2,2],[1,3,2,1]],[[1,0,2,1],[0,1,2,2],[1,3,2,2],[1,2,3,1]],[[1,0,2,1],[0,1,2,2],[1,3,2,2],[1,2,2,2]],[[1,0,2,1],[0,1,2,2],[1,3,4,1],[1,2,2,1]],[[1,0,2,1],[0,1,2,2],[1,3,3,1],[2,2,2,1]],[[1,0,2,1],[0,1,2,2],[1,3,3,1],[1,3,2,1]],[[1,0,2,1],[0,1,2,2],[1,3,3,1],[1,2,3,1]],[[1,0,2,1],[0,1,2,2],[1,3,3,1],[1,2,2,2]],[[1,0,2,2],[0,1,2,2],[1,3,3,2],[1,2,1,1]],[[1,0,2,1],[0,1,2,3],[1,3,3,2],[1,2,1,1]],[[1,0,2,1],[0,1,2,2],[1,3,4,2],[1,2,1,1]],[[1,0,2,1],[0,1,2,2],[1,3,3,3],[1,2,1,1]],[[1,0,2,1],[0,1,2,2],[1,3,3,2],[1,2,1,2]],[[1,0,2,2],[0,1,2,2],[1,3,3,2],[1,2,2,0]],[[1,0,2,1],[0,1,2,3],[1,3,3,2],[1,2,2,0]],[[1,0,2,1],[0,1,2,2],[1,3,4,2],[1,2,2,0]],[[1,0,2,1],[0,1,2,2],[1,3,3,3],[1,2,2,0]],[[1,0,2,1],[0,1,2,2],[1,3,3,2],[2,2,2,0]],[[1,0,2,1],[0,1,2,2],[1,3,3,2],[1,3,2,0]],[[1,0,2,1],[0,1,2,2],[1,3,3,2],[1,2,3,0]],[[1,0,2,2],[0,1,2,2],[2,3,2,2],[0,2,2,1]],[[1,0,2,1],[0,1,2,3],[2,3,2,2],[0,2,2,1]],[[1,0,2,1],[0,1,2,2],[2,3,2,3],[0,2,2,1]],[[1,0,2,1],[0,1,2,2],[2,3,2,2],[0,3,2,1]],[[1,0,2,1],[0,1,2,2],[2,3,2,2],[0,2,3,1]],[[1,0,2,1],[0,1,2,2],[2,3,2,2],[0,2,2,2]],[[1,0,2,1],[0,1,2,2],[2,3,4,1],[0,2,2,1]],[[1,0,2,1],[0,1,2,2],[2,3,3,1],[0,3,2,1]],[[1,0,2,1],[0,1,2,2],[2,3,3,1],[0,2,3,1]],[[1,0,2,1],[0,1,2,2],[2,3,3,1],[0,2,2,2]],[[1,0,2,2],[0,1,2,2],[2,3,3,2],[0,2,1,1]],[[1,0,2,1],[0,1,2,3],[2,3,3,2],[0,2,1,1]],[[1,0,2,1],[0,1,2,2],[2,3,4,2],[0,2,1,1]],[[1,0,2,1],[0,1,2,2],[2,3,3,3],[0,2,1,1]],[[1,0,2,1],[0,1,2,2],[2,3,3,2],[0,2,1,2]],[[1,0,2,2],[0,1,2,2],[2,3,3,2],[0,2,2,0]],[[1,0,2,1],[0,1,2,3],[2,3,3,2],[0,2,2,0]],[[1,0,2,1],[0,1,2,2],[2,3,4,2],[0,2,2,0]],[[1,0,2,1],[0,1,2,2],[2,3,3,3],[0,2,2,0]],[[1,0,2,1],[0,1,2,2],[2,3,3,2],[0,3,2,0]],[[1,0,2,1],[0,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,3,2],[1,3,1,3],[0,1,2,0]],[[1,2,1,1],[2,1,3,3],[1,3,1,2],[0,1,2,0]],[[1,2,1,1],[2,1,4,2],[1,3,1,2],[0,1,2,0]],[[1,2,1,2],[2,1,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,2],[1,3,1,2],[0,1,1,2]],[[1,2,1,1],[2,1,3,2],[1,3,1,3],[0,1,1,1]],[[1,2,1,1],[2,1,3,3],[1,3,1,2],[0,1,1,1]],[[1,2,1,1],[2,1,4,2],[1,3,1,2],[0,1,1,1]],[[1,0,2,1],[0,1,3,0],[1,3,4,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,0],[1,3,3,2],[1,3,2,1]],[[1,0,2,1],[0,1,3,0],[1,3,3,2],[1,2,3,1]],[[1,0,2,1],[0,1,3,0],[1,3,3,2],[1,2,2,2]],[[1,0,2,1],[0,1,3,0],[2,3,2,3],[1,2,2,1]],[[1,0,2,1],[0,1,3,0],[2,3,2,2],[2,2,2,1]],[[1,0,2,1],[0,1,3,0],[2,3,2,2],[1,3,2,1]],[[1,0,2,1],[0,1,3,0],[2,3,2,2],[1,2,3,1]],[[1,0,2,1],[0,1,3,0],[2,3,2,2],[1,2,2,2]],[[1,0,2,1],[0,1,3,0],[2,3,4,1],[1,2,2,1]],[[1,0,2,1],[0,1,3,0],[2,3,3,1],[2,2,2,1]],[[1,0,2,1],[0,1,3,0],[2,3,3,1],[1,3,2,1]],[[1,0,2,1],[0,1,3,0],[2,3,3,1],[1,2,3,1]],[[1,0,2,1],[0,1,3,0],[2,3,3,1],[1,2,2,2]],[[1,0,2,1],[0,1,3,0],[2,3,4,2],[0,2,2,1]],[[1,0,2,1],[0,1,3,0],[2,3,3,2],[0,2,3,1]],[[1,0,2,1],[0,1,3,0],[2,3,3,2],[0,2,2,2]],[[1,0,2,1],[0,1,3,0],[2,3,4,2],[1,2,1,1]],[[1,0,2,1],[0,1,3,0],[2,3,3,3],[1,2,1,1]],[[1,0,2,1],[0,1,3,0],[2,3,3,2],[1,2,1,2]],[[1,0,2,1],[0,1,3,0],[2,3,4,2],[1,2,2,0]],[[1,0,2,1],[0,1,3,0],[2,3,3,3],[1,2,2,0]],[[1,0,2,1],[0,1,3,0],[2,3,3,2],[2,2,2,0]],[[1,0,2,1],[0,1,3,0],[2,3,3,2],[1,3,2,0]],[[1,0,2,1],[0,1,3,0],[2,3,3,2],[1,2,3,0]],[[1,0,2,1],[0,1,3,1],[1,3,2,3],[1,2,2,1]],[[1,0,2,1],[0,1,3,1],[1,3,2,2],[2,2,2,1]],[[1,0,2,1],[0,1,3,1],[1,3,2,2],[1,3,2,1]],[[1,0,2,1],[0,1,3,1],[1,3,2,2],[1,2,3,1]],[[1,0,2,1],[0,1,3,1],[1,3,2,2],[1,2,2,2]],[[1,0,2,1],[0,1,3,1],[1,3,4,1],[1,2,2,1]],[[1,0,2,1],[0,1,3,1],[1,3,3,1],[2,2,2,1]],[[1,0,2,1],[0,1,3,1],[1,3,3,1],[1,3,2,1]],[[1,0,2,1],[0,1,3,1],[1,3,3,1],[1,2,3,1]],[[1,0,2,1],[0,1,3,1],[1,3,3,1],[1,2,2,2]],[[1,0,2,1],[0,1,3,1],[1,3,4,2],[1,2,1,1]],[[1,0,2,1],[0,1,3,1],[1,3,3,3],[1,2,1,1]],[[1,0,2,1],[0,1,3,1],[1,3,3,2],[1,2,1,2]],[[1,0,2,1],[0,1,3,1],[1,3,4,2],[1,2,2,0]],[[1,0,2,1],[0,1,3,1],[1,3,3,3],[1,2,2,0]],[[1,0,2,1],[0,1,3,1],[1,3,3,2],[2,2,2,0]],[[1,0,2,1],[0,1,3,1],[1,3,3,2],[1,3,2,0]],[[1,0,2,1],[0,1,3,1],[1,3,3,2],[1,2,3,0]],[[1,0,2,1],[0,1,3,1],[2,3,2,3],[0,2,2,1]],[[1,0,2,1],[0,1,3,1],[2,3,2,2],[0,3,2,1]],[[1,0,2,1],[0,1,3,1],[2,3,2,2],[0,2,3,1]],[[1,0,2,1],[0,1,3,1],[2,3,2,2],[0,2,2,2]],[[1,0,2,1],[0,1,3,1],[2,3,4,0],[1,2,2,1]],[[1,0,2,1],[0,1,3,1],[2,3,3,0],[2,2,2,1]],[[1,0,2,1],[0,1,3,1],[2,3,3,0],[1,3,2,1]],[[1,0,2,1],[0,1,3,1],[2,3,3,0],[1,2,3,1]],[[1,0,2,1],[0,1,3,1],[2,3,3,0],[1,2,2,2]],[[1,0,2,1],[0,1,3,1],[2,3,4,1],[0,2,2,1]],[[1,0,2,1],[0,1,3,1],[2,3,3,1],[0,3,2,1]],[[1,0,2,1],[0,1,3,1],[2,3,3,1],[0,2,3,1]],[[1,0,2,1],[0,1,3,1],[2,3,3,1],[0,2,2,2]],[[1,0,2,1],[0,1,3,1],[2,3,4,1],[1,2,2,0]],[[1,0,2,1],[0,1,3,1],[2,3,3,1],[2,2,2,0]],[[1,0,2,1],[0,1,3,1],[2,3,3,1],[1,3,2,0]],[[1,0,2,1],[0,1,3,1],[2,3,3,1],[1,2,3,0]],[[1,0,2,1],[0,1,3,1],[2,3,4,2],[0,2,1,1]],[[1,0,2,1],[0,1,3,1],[2,3,3,3],[0,2,1,1]],[[1,0,2,1],[0,1,3,1],[2,3,3,2],[0,2,1,2]],[[1,0,2,1],[0,1,3,1],[2,3,4,2],[0,2,2,0]],[[1,0,2,1],[0,1,3,1],[2,3,3,3],[0,2,2,0]],[[1,0,2,1],[0,1,3,1],[2,3,3,2],[0,3,2,0]],[[1,0,2,1],[0,1,3,1],[2,3,3,2],[0,2,3,0]],[[1,2,1,2],[2,1,3,2],[1,3,1,2],[0,1,1,1]],[[1,0,2,2],[0,1,3,2],[0,2,3,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,3],[0,2,3,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[0,2,3,3],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[0,2,3,2],[1,2,3,1]],[[1,0,2,1],[0,1,3,2],[0,2,3,2],[1,2,2,2]],[[1,0,2,2],[0,1,3,2],[0,3,2,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,3],[0,3,2,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[0,3,2,3],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[0,3,2,2],[1,3,2,1]],[[1,0,2,1],[0,1,3,2],[0,3,2,2],[1,2,3,1]],[[1,0,2,1],[0,1,3,2],[0,3,2,2],[1,2,2,2]],[[1,0,2,1],[0,1,3,2],[0,3,4,1],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[0,3,3,1],[1,3,2,1]],[[1,0,2,1],[0,1,3,2],[0,3,3,1],[1,2,3,1]],[[1,0,2,1],[0,1,3,2],[0,3,3,1],[1,2,2,2]],[[1,0,2,2],[0,1,3,2],[0,3,3,2],[1,2,1,1]],[[1,0,2,1],[0,1,3,3],[0,3,3,2],[1,2,1,1]],[[1,0,2,1],[0,1,3,2],[0,3,4,2],[1,2,1,1]],[[1,0,2,1],[0,1,3,2],[0,3,3,3],[1,2,1,1]],[[1,0,2,1],[0,1,3,2],[0,3,3,2],[1,2,1,2]],[[1,0,2,2],[0,1,3,2],[0,3,3,2],[1,2,2,0]],[[1,0,2,1],[0,1,3,3],[0,3,3,2],[1,2,2,0]],[[1,0,2,1],[0,1,3,2],[0,3,4,2],[1,2,2,0]],[[1,0,2,1],[0,1,3,2],[0,3,3,3],[1,2,2,0]],[[1,0,2,1],[0,1,3,2],[0,3,3,2],[1,3,2,0]],[[1,0,2,1],[0,1,3,2],[0,3,3,2],[1,2,3,0]],[[1,0,2,2],[0,1,3,2],[1,1,3,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,3],[1,1,3,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[1,1,3,3],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[1,1,3,2],[1,2,3,1]],[[1,0,2,1],[0,1,3,2],[1,1,3,2],[1,2,2,2]],[[1,0,2,2],[0,1,3,2],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,1],[0,1,3,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,1],[0,1,3,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,1],[0,1,3,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,1],[0,1,3,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,1],[0,1,3,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,1],[0,1,3,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,1],[0,1,3,2],[1,2,3,1],[1,2,2,2]],[[1,0,2,2],[0,1,3,2],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[0,1,3,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[0,1,3,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,1],[0,1,3,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,1],[0,1,3,2],[1,2,3,2],[1,2,1,2]],[[1,0,2,2],[0,1,3,2],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[0,1,3,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[0,1,3,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,1],[0,1,3,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,1],[0,1,3,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,1],[0,1,3,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,1],[0,1,3,2],[1,2,3,2],[1,2,3,0]],[[1,0,2,2],[0,1,3,2],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[0,1,3,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[0,1,3,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,1],[0,1,3,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,1],[0,1,3,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,1],[0,1,3,2],[1,3,4,0],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,0],[2,2,2,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,0],[1,3,2,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,0],[1,2,3,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,0],[1,2,2,2]],[[1,0,2,1],[0,1,3,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,1],[0,1,3,2],[1,3,4,1],[1,2,2,0]],[[1,0,2,1],[0,1,3,2],[1,3,3,1],[2,2,2,0]],[[1,0,2,1],[0,1,3,2],[1,3,3,1],[1,3,2,0]],[[1,0,2,1],[0,1,3,2],[1,3,3,1],[1,2,3,0]],[[1,0,2,2],[0,1,3,2],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[0,1,3,3],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[0,1,3,2],[1,3,4,2],[1,0,2,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,3],[1,0,2,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,2],[1,0,2,2]],[[1,0,2,2],[0,1,3,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[0,1,3,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[0,1,3,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,2],[1,1,1,2]],[[1,0,2,2],[0,1,3,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[0,1,3,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[0,1,3,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,1],[0,1,3,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,1],[0,1,3,2],[1,3,3,2],[1,1,3,0]],[[1,0,2,2],[0,1,3,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[0,1,3,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[0,1,3,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,1],[0,1,3,2],[1,3,3,2],[1,2,0,2]],[[1,0,2,2],[0,1,3,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[0,1,3,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[0,1,3,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,1],[0,1,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[1,3,1,1],[1,1,2,0]],[[1,2,1,1],[2,1,4,2],[1,3,1,1],[1,1,2,0]],[[1,2,1,2],[2,1,3,2],[1,3,1,1],[1,1,2,0]],[[1,0,2,2],[0,1,3,2],[2,0,3,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,3],[2,0,3,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,0,3,3],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,0,3,2],[1,2,3,1]],[[1,0,2,1],[0,1,3,2],[2,0,3,2],[1,2,2,2]],[[1,0,2,2],[0,1,3,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,1],[0,1,3,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,1],[0,1,3,2],[2,1,2,2],[1,2,2,2]],[[1,0,2,1],[0,1,3,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,1],[0,1,3,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,1],[0,1,3,2],[2,1,3,1],[1,2,2,2]],[[1,0,2,2],[0,1,3,2],[2,1,3,2],[0,2,2,1]],[[1,0,2,1],[0,1,3,3],[2,1,3,2],[0,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,1,3,3],[0,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,1,3,2],[0,2,3,1]],[[1,0,2,1],[0,1,3,2],[2,1,3,2],[0,2,2,2]],[[1,0,2,2],[0,1,3,2],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[0,1,3,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[0,1,3,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,1],[0,1,3,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,1],[0,1,3,2],[2,1,3,2],[1,2,1,2]],[[1,0,2,2],[0,1,3,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[0,1,3,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[0,1,3,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,1],[0,1,3,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,1],[0,1,3,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,1],[0,1,3,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,1],[0,1,3,2],[2,1,3,2],[1,2,3,0]],[[1,0,2,2],[0,1,3,2],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[0,1,3,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,1],[0,1,3,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,1],[0,1,3,2],[2,2,2,2],[0,2,2,2]],[[1,0,2,1],[0,1,3,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,1],[0,1,3,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,1],[0,1,3,2],[2,2,3,1],[0,2,2,2]],[[1,0,2,2],[0,1,3,2],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[0,1,3,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[0,1,3,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,1],[0,1,3,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,1],[0,1,3,2],[2,2,3,2],[0,2,1,2]],[[1,0,2,2],[0,1,3,2],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[0,1,3,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[0,1,3,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,1],[0,1,3,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,1],[0,1,3,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,1],[0,1,3,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,3,3],[1,3,1,1],[0,2,2,0]],[[1,2,1,1],[2,1,4,2],[1,3,1,1],[0,2,2,0]],[[1,2,1,2],[2,1,3,2],[1,3,1,1],[0,2,2,0]],[[1,0,2,2],[0,1,3,2],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[0,1,3,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[0,1,3,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,1],[0,1,3,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,1],[0,1,3,2],[2,3,2,2],[0,1,2,2]],[[1,0,2,2],[0,1,3,2],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[0,1,3,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[0,1,3,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,1],[0,1,3,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,1],[0,1,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[1,3,1,0],[1,3,2,0]],[[1,0,2,1],[0,1,3,2],[2,3,4,0],[0,2,2,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,0],[0,3,2,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,0],[0,2,3,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,0],[0,2,2,2]],[[1,0,2,1],[0,1,3,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,1],[0,1,2,2]],[[1,0,2,1],[0,1,3,2],[2,3,4,1],[0,2,2,0]],[[1,0,2,1],[0,1,3,2],[2,3,3,1],[0,3,2,0]],[[1,0,2,1],[0,1,3,2],[2,3,3,1],[0,2,3,0]],[[1,0,2,1],[0,1,3,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[1,3,1,0],[2,2,2,0]],[[1,2,1,1],[2,1,3,2],[1,4,1,0],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[1,3,1,0],[1,1,2,1]],[[1,2,1,1],[2,1,4,2],[1,3,1,0],[1,1,2,1]],[[1,2,1,2],[2,1,3,2],[1,3,1,0],[1,1,2,1]],[[1,0,2,2],[0,1,3,2],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[0,1,3,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[0,1,3,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,2],[0,0,2,2]],[[1,0,2,2],[0,1,3,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[0,1,3,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[0,1,3,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,2],[0,1,1,2]],[[1,0,2,2],[0,1,3,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[0,1,3,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[0,1,3,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[0,1,3,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,1],[0,1,3,2],[2,3,3,2],[0,1,3,0]],[[1,0,2,2],[0,1,3,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[0,1,3,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[0,1,3,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,2],[0,2,0,2]],[[1,0,2,2],[0,1,3,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[0,1,3,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[0,1,3,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,1],[0,1,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,3,3],[1,3,1,0],[0,2,2,1]],[[1,2,1,1],[2,1,4,2],[1,3,1,0],[0,2,2,1]],[[1,2,1,2],[2,1,3,2],[1,3,1,0],[0,2,2,1]],[[1,0,2,2],[0,1,3,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[0,1,3,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[0,1,3,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,2],[1,0,1,2]],[[1,0,2,2],[0,1,3,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[0,1,3,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[0,1,3,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[0,1,3,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,1],[0,1,3,2],[2,3,3,2],[1,0,3,0]],[[1,0,2,2],[0,1,3,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[0,1,3,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[0,1,3,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,1],[0,1,3,2],[2,3,3,2],[1,1,0,2]],[[1,0,2,2],[0,1,3,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[0,1,3,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[0,1,3,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,1],[0,1,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,1,1],[2,1,3,3],[1,3,0,2],[1,1,2,0]],[[1,2,1,1],[2,1,4,2],[1,3,0,2],[1,1,2,0]],[[1,2,1,2],[2,1,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,2],[1,3,0,2],[1,1,1,2]],[[1,2,1,1],[2,1,3,2],[1,3,0,3],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[1,3,0,2],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[1,3,0,2],[1,1,1,1]],[[1,0,2,1],[0,2,0,2],[2,2,3,3],[1,2,2,1]],[[1,0,2,1],[0,2,0,2],[2,2,3,2],[2,2,2,1]],[[1,0,2,1],[0,2,0,2],[2,2,3,2],[1,3,2,1]],[[1,0,2,1],[0,2,0,2],[2,2,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,0,2],[2,2,3,2],[1,2,2,2]],[[1,0,2,1],[0,2,0,2],[2,3,3,3],[1,1,2,1]],[[1,0,2,1],[0,2,0,2],[2,3,3,2],[1,1,3,1]],[[1,0,2,1],[0,2,0,2],[2,3,3,2],[1,1,2,2]],[[1,0,2,1],[0,2,1,2],[0,3,3,3],[1,2,2,1]],[[1,0,2,1],[0,2,1,2],[0,3,3,2],[1,3,2,1]],[[1,0,2,1],[0,2,1,2],[0,3,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,1,2],[0,3,3,2],[1,2,2,2]],[[1,0,2,1],[0,2,1,2],[1,2,3,3],[1,2,2,1]],[[1,0,2,1],[0,2,1,2],[1,2,3,2],[1,3,2,1]],[[1,0,2,1],[0,2,1,2],[1,2,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,1,2],[1,2,3,2],[1,2,2,2]],[[1,0,2,1],[0,2,1,2],[1,3,3,3],[1,1,2,1]],[[1,0,2,1],[0,2,1,2],[1,3,3,2],[1,1,3,1]],[[1,0,2,1],[0,2,1,2],[1,3,3,2],[1,1,2,2]],[[1,0,2,2],[0,2,1,2],[2,2,2,2],[1,2,2,1]],[[1,0,2,1],[0,2,1,3],[2,2,2,2],[1,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,2,2,3],[1,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,2,2,2],[2,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,2,2,2],[1,3,2,1]],[[1,0,2,1],[0,2,1,2],[2,2,2,2],[1,2,3,1]],[[1,0,2,1],[0,2,1,2],[2,2,2,2],[1,2,2,2]],[[1,0,2,1],[0,2,1,2],[2,2,4,1],[1,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,2,3,1],[2,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,2,3,1],[1,3,2,1]],[[1,0,2,1],[0,2,1,2],[2,2,3,1],[1,2,3,1]],[[1,0,2,1],[0,2,1,2],[2,2,3,1],[1,2,2,2]],[[1,0,2,1],[0,2,1,2],[2,2,3,3],[0,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,2,3,2],[0,2,3,1]],[[1,0,2,1],[0,2,1,2],[2,2,3,2],[0,2,2,2]],[[1,0,2,2],[0,2,1,2],[2,2,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,1,3],[2,2,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,1,2],[2,2,4,2],[1,2,1,1]],[[1,0,2,1],[0,2,1,2],[2,2,3,3],[1,2,1,1]],[[1,0,2,1],[0,2,1,2],[2,2,3,2],[1,2,1,2]],[[1,0,2,2],[0,2,1,2],[2,2,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,1,3],[2,2,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,1,2],[2,2,4,2],[1,2,2,0]],[[1,0,2,1],[0,2,1,2],[2,2,3,3],[1,2,2,0]],[[1,0,2,1],[0,2,1,2],[2,2,3,2],[2,2,2,0]],[[1,0,2,1],[0,2,1,2],[2,2,3,2],[1,3,2,0]],[[1,0,2,1],[0,2,1,2],[2,2,3,2],[1,2,3,0]],[[1,0,2,2],[0,2,1,2],[2,3,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,1,3],[2,3,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,4,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,1,3],[1,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,1,2],[2,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,1,2],[1,3,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,1,2],[1,2,3,1]],[[1,0,2,1],[0,2,1,2],[2,3,1,2],[1,2,2,2]],[[1,0,2,1],[0,2,1,2],[2,4,2,1],[1,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,2,1],[2,2,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,2,1],[1,3,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,2,1],[1,2,3,1]],[[1,0,2,1],[0,2,1,2],[2,3,2,1],[1,2,2,2]],[[1,0,2,2],[0,2,1,2],[2,3,2,2],[1,1,2,1]],[[1,0,2,1],[0,2,1,3],[2,3,2,2],[1,1,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,2,3],[1,1,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,2,2],[1,1,3,1]],[[1,0,2,1],[0,2,1,2],[2,3,2,2],[1,1,2,2]],[[1,0,2,1],[0,2,1,2],[2,4,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,1,2],[2,3,2,2],[2,2,2,0]],[[1,0,2,1],[0,2,1,2],[2,3,2,2],[1,3,2,0]],[[1,0,2,1],[0,2,1,2],[2,3,2,2],[1,2,3,0]],[[1,0,2,1],[0,2,1,2],[2,4,3,1],[1,1,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,4,1],[1,1,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,1],[1,1,3,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,1],[1,1,2,2]],[[1,0,2,1],[0,2,1,2],[2,4,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,1,2],[2,3,4,1],[1,2,1,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,1],[2,2,1,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,1],[1,3,1,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,3],[0,1,2,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,2],[0,1,3,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,2],[0,1,2,2]],[[1,0,2,2],[0,2,1,2],[2,3,3,2],[1,1,1,1]],[[1,0,2,1],[0,2,1,3],[2,3,3,2],[1,1,1,1]],[[1,0,2,1],[0,2,1,2],[2,4,3,2],[1,1,1,1]],[[1,0,2,1],[0,2,1,2],[2,3,4,2],[1,1,1,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,3],[1,1,1,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,2],[1,1,1,2]],[[1,0,2,2],[0,2,1,2],[2,3,3,2],[1,1,2,0]],[[1,0,2,1],[0,2,1,3],[2,3,3,2],[1,1,2,0]],[[1,0,2,1],[0,2,1,2],[2,4,3,2],[1,1,2,0]],[[1,0,2,1],[0,2,1,2],[2,3,4,2],[1,1,2,0]],[[1,0,2,1],[0,2,1,2],[2,3,3,3],[1,1,2,0]],[[1,0,2,1],[0,2,1,2],[2,3,3,2],[1,1,3,0]],[[1,0,2,2],[0,2,1,2],[2,3,3,2],[1,2,0,1]],[[1,0,2,1],[0,2,1,3],[2,3,3,2],[1,2,0,1]],[[1,0,2,1],[0,2,1,2],[2,4,3,2],[1,2,0,1]],[[1,0,2,1],[0,2,1,2],[2,3,4,2],[1,2,0,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,3],[1,2,0,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,2],[2,2,0,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,2],[1,3,0,1]],[[1,0,2,1],[0,2,1,2],[2,3,3,2],[1,2,0,2]],[[1,0,2,2],[0,2,1,2],[2,3,3,2],[1,2,1,0]],[[1,0,2,1],[0,2,1,3],[2,3,3,2],[1,2,1,0]],[[1,0,2,1],[0,2,1,2],[2,4,3,2],[1,2,1,0]],[[1,0,2,1],[0,2,1,2],[2,3,4,2],[1,2,1,0]],[[1,0,2,1],[0,2,1,2],[2,3,3,3],[1,2,1,0]],[[1,0,2,1],[0,2,1,2],[2,3,3,2],[2,2,1,0]],[[1,0,2,1],[0,2,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,2],[2,1,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,1,1],[2,1,3,2],[1,3,0,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[1,3,0,2],[1,0,3,1]],[[1,2,1,1],[2,1,3,2],[1,3,0,3],[1,0,2,1]],[[1,2,1,1],[2,1,3,3],[1,3,0,2],[1,0,2,1]],[[1,2,1,1],[2,1,4,2],[1,3,0,2],[1,0,2,1]],[[1,2,1,2],[2,1,3,2],[1,3,0,2],[1,0,2,1]],[[1,0,2,2],[0,2,2,2],[0,2,3,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,3],[0,2,3,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[0,2,3,3],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[0,2,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[0,2,3,2],[1,2,2,2]],[[1,0,2,2],[0,2,2,2],[0,3,2,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,3],[0,3,2,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[0,3,2,3],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[0,3,2,2],[1,3,2,1]],[[1,0,2,1],[0,2,2,2],[0,3,2,2],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[0,3,2,2],[1,2,2,2]],[[1,0,2,1],[0,2,2,2],[0,3,4,1],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[0,3,3,1],[1,3,2,1]],[[1,0,2,1],[0,2,2,2],[0,3,3,1],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[0,3,3,1],[1,2,2,2]],[[1,0,2,2],[0,2,2,2],[0,3,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,2,3],[0,3,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,2,2],[0,3,4,2],[1,2,1,1]],[[1,0,2,1],[0,2,2,2],[0,3,3,3],[1,2,1,1]],[[1,0,2,1],[0,2,2,2],[0,3,3,2],[1,2,1,2]],[[1,0,2,2],[0,2,2,2],[0,3,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,2,3],[0,3,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,2,2],[0,3,4,2],[1,2,2,0]],[[1,0,2,1],[0,2,2,2],[0,3,3,3],[1,2,2,0]],[[1,0,2,1],[0,2,2,2],[0,3,3,2],[1,3,2,0]],[[1,0,2,1],[0,2,2,2],[0,3,3,2],[1,2,3,0]],[[1,0,2,2],[0,2,2,2],[1,1,3,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,3],[1,1,3,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,1,3,3],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,1,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[1,1,3,2],[1,2,2,2]],[[1,0,2,2],[0,2,2,2],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,1],[0,2,2,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,1],[0,2,2,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,1],[0,2,2,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[1,2,3,1],[1,2,2,2]],[[1,0,2,2],[0,2,2,2],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,2,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,2,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,1],[0,2,2,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,1],[0,2,2,2],[1,2,3,2],[1,2,1,2]],[[1,0,2,2],[0,2,2,2],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,2,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,2,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,1],[0,2,2,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,1],[0,2,2,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,1],[0,2,2,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,1],[0,2,2,2],[1,2,3,2],[1,2,3,0]],[[1,0,2,2],[0,2,2,2],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,3],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,4,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,1,3],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,1,2],[2,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,1,2],[1,3,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,1,2],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[1,3,1,2],[1,2,2,2]],[[1,0,2,1],[0,2,2,2],[1,4,2,1],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,2,1],[2,2,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,2,1],[1,3,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,2,1],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[1,3,2,1],[1,2,2,2]],[[1,0,2,2],[0,2,2,2],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[0,2,2,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,1],[0,2,2,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,1],[0,2,2,2],[1,4,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,2,2],[1,3,2,2],[2,2,2,0]],[[1,0,2,1],[0,2,2,2],[1,3,2,2],[1,3,2,0]],[[1,0,2,1],[0,2,2,2],[1,3,2,2],[1,2,3,0]],[[1,0,2,1],[0,2,2,2],[1,4,3,1],[1,1,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,1],[0,2,2,2],[1,4,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,2,2],[1,3,4,1],[1,2,1,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,1],[2,2,1,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,1],[1,3,1,1]],[[1,0,2,2],[0,2,2,2],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[0,2,2,3],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,4,2],[1,0,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,3],[1,0,2,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,2],[1,0,2,2]],[[1,0,2,2],[0,2,2,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[0,2,2,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[0,2,2,2],[1,4,3,2],[1,1,1,1]],[[1,0,2,1],[0,2,2,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,2],[1,1,1,2]],[[1,0,2,2],[0,2,2,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[0,2,2,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[0,2,2,2],[1,4,3,2],[1,1,2,0]],[[1,0,2,1],[0,2,2,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,1],[0,2,2,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,1],[0,2,2,2],[1,3,3,2],[1,1,3,0]],[[1,0,2,2],[0,2,2,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[0,2,2,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[0,2,2,2],[1,4,3,2],[1,2,0,1]],[[1,0,2,1],[0,2,2,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,2],[2,2,0,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,2],[1,3,0,1]],[[1,0,2,1],[0,2,2,2],[1,3,3,2],[1,2,0,2]],[[1,0,2,2],[0,2,2,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[0,2,2,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[0,2,2,2],[1,4,3,2],[1,2,1,0]],[[1,0,2,1],[0,2,2,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,1],[0,2,2,2],[1,3,3,3],[1,2,1,0]],[[1,0,2,1],[0,2,2,2],[1,3,3,2],[2,2,1,0]],[[1,0,2,1],[0,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,1,3,2],[1,3,0,3],[0,2,2,0]],[[1,2,1,1],[2,1,3,3],[1,3,0,2],[0,2,2,0]],[[1,2,1,1],[2,1,4,2],[1,3,0,2],[0,2,2,0]],[[1,0,2,2],[0,2,2,2],[2,0,3,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,3],[2,0,3,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,0,3,3],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,0,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[2,0,3,2],[1,2,2,2]],[[1,0,2,2],[0,2,2,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,1],[0,2,2,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[2,1,2,2],[1,2,2,2]],[[1,0,2,1],[0,2,2,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,1],[0,2,2,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[2,1,3,1],[1,2,2,2]],[[1,0,2,2],[0,2,2,2],[2,1,3,2],[0,2,2,1]],[[1,0,2,1],[0,2,2,3],[2,1,3,2],[0,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,1,3,3],[0,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,1,3,2],[0,2,3,1]],[[1,0,2,1],[0,2,2,2],[2,1,3,2],[0,2,2,2]],[[1,0,2,2],[0,2,2,2],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,2,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,2,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,1],[0,2,2,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,1],[0,2,2,2],[2,1,3,2],[1,2,1,2]],[[1,0,2,2],[0,2,2,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,2,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,2,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,1],[0,2,2,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,1],[0,2,2,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,1],[0,2,2,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,1],[0,2,2,2],[2,1,3,2],[1,2,3,0]],[[1,0,2,2],[0,2,2,2],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[0,2,2,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,1],[0,2,2,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,1],[0,2,2,2],[2,2,2,2],[0,2,2,2]],[[1,0,2,1],[0,2,2,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,1],[0,2,2,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,1],[0,2,2,2],[2,2,3,1],[0,2,2,2]],[[1,0,2,2],[0,2,2,2],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[0,2,2,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[0,2,2,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,1],[0,2,2,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,1],[0,2,2,2],[2,2,3,2],[0,2,1,2]],[[1,0,2,2],[0,2,2,2],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[0,2,2,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[0,2,2,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,1],[0,2,2,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,1],[0,2,2,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,1],[0,2,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,2],[2,1,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,1,1],[2,1,3,2],[1,3,0,2],[0,2,1,2]],[[1,2,1,1],[2,1,3,2],[1,3,0,3],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[1,3,0,2],[0,2,1,1]],[[1,2,1,1],[2,1,4,2],[1,3,0,2],[0,2,1,1]],[[1,2,1,2],[2,1,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,1,1],[2,1,3,2],[1,3,0,2],[0,1,2,2]],[[1,2,1,1],[2,1,3,2],[1,3,0,2],[0,1,3,1]],[[1,0,2,2],[0,2,2,2],[2,3,0,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,3],[2,3,0,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,4,0,2],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,0,3],[1,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,0,2],[2,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,0,2],[1,3,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,0,2],[1,2,3,1]],[[1,0,2,1],[0,2,2,2],[2,3,0,2],[1,2,2,2]],[[1,0,2,2],[0,2,2,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[0,2,2,3],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,4,1,2],[0,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,1,3],[0,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,1,2],[0,3,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,1,2],[0,2,3,1]],[[1,0,2,1],[0,2,2,2],[2,3,1,2],[0,2,2,2]],[[1,0,2,1],[0,2,2,2],[2,4,2,1],[0,2,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,2,1],[0,3,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,2,1],[0,2,3,1]],[[1,0,2,1],[0,2,2,2],[2,3,2,1],[0,2,2,2]],[[1,0,2,2],[0,2,2,2],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[0,2,2,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,1],[0,2,2,2],[2,3,2,2],[0,1,2,2]],[[1,0,2,1],[0,2,2,2],[2,4,2,2],[0,2,2,0]],[[1,0,2,1],[0,2,2,2],[2,3,2,2],[0,3,2,0]],[[1,0,2,1],[0,2,2,2],[2,3,2,2],[0,2,3,0]],[[1,0,2,2],[0,2,2,2],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[0,2,2,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,1],[0,2,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[1,3,0,3],[0,1,2,1]],[[1,2,1,1],[2,1,3,3],[1,3,0,2],[0,1,2,1]],[[1,2,1,1],[2,1,4,2],[1,3,0,2],[0,1,2,1]],[[1,2,1,2],[2,1,3,2],[1,3,0,2],[0,1,2,1]],[[1,0,2,1],[0,2,2,2],[2,4,3,1],[0,1,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,1],[0,1,2,2]],[[1,0,2,1],[0,2,2,2],[2,4,3,1],[0,2,1,1]],[[1,0,2,1],[0,2,2,2],[2,3,4,1],[0,2,1,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,1],[0,3,1,1]],[[1,0,2,1],[0,2,2,2],[2,4,3,1],[1,0,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[2,1,3,3],[1,3,0,1],[1,1,2,1]],[[1,2,1,1],[2,1,4,2],[1,3,0,1],[1,1,2,1]],[[1,0,2,2],[0,2,2,2],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[0,2,2,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,2],[0,0,2,2]],[[1,0,2,2],[0,2,2,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[0,2,2,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[0,2,2,2],[2,4,3,2],[0,1,1,1]],[[1,0,2,1],[0,2,2,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,2],[0,1,1,2]],[[1,0,2,2],[0,2,2,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[0,2,2,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[0,2,2,2],[2,4,3,2],[0,1,2,0]],[[1,0,2,1],[0,2,2,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[0,2,2,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,1],[0,2,2,2],[2,3,3,2],[0,1,3,0]],[[1,0,2,2],[0,2,2,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[0,2,2,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[0,2,2,2],[2,4,3,2],[0,2,0,1]],[[1,0,2,1],[0,2,2,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,2],[0,3,0,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,2],[0,2,0,2]],[[1,0,2,2],[0,2,2,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[0,2,2,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[0,2,2,2],[2,4,3,2],[0,2,1,0]],[[1,0,2,1],[0,2,2,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,1],[0,2,2,2],[2,3,3,3],[0,2,1,0]],[[1,0,2,1],[0,2,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,2],[2,1,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,1,1],[2,1,3,3],[1,3,0,1],[0,2,2,1]],[[1,2,1,1],[2,1,4,2],[1,3,0,1],[0,2,2,1]],[[1,2,1,2],[2,1,3,2],[1,3,0,1],[0,2,2,1]],[[1,0,2,2],[0,2,2,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[0,2,2,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[0,2,2,2],[2,4,3,2],[1,0,1,1]],[[1,0,2,1],[0,2,2,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,2],[1,0,1,2]],[[1,0,2,2],[0,2,2,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[0,2,2,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[0,2,2,2],[2,4,3,2],[1,0,2,0]],[[1,0,2,1],[0,2,2,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[0,2,2,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,1],[0,2,2,2],[2,3,3,2],[1,0,3,0]],[[1,0,2,2],[0,2,2,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[0,2,2,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[0,2,2,2],[2,4,3,2],[1,1,0,1]],[[1,0,2,1],[0,2,2,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,1],[0,2,2,2],[2,3,3,2],[1,1,0,2]],[[1,0,2,2],[0,2,2,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[0,2,2,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[0,2,2,2],[2,4,3,2],[1,1,1,0]],[[1,0,2,1],[0,2,2,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,1],[0,2,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,1,1],[2,1,3,3],[1,2,3,2],[1,0,0,1]],[[1,2,1,1],[2,1,4,2],[1,2,3,2],[1,0,0,1]],[[1,2,1,2],[2,1,3,2],[1,2,3,2],[1,0,0,1]],[[1,0,2,1],[0,2,3,0],[0,3,4,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,0],[0,3,3,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,0],[0,3,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,0],[0,3,3,2],[1,2,2,2]],[[1,0,2,1],[0,2,3,0],[1,2,4,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,0],[1,2,3,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,0],[1,2,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,0],[1,2,3,2],[1,2,2,2]],[[1,0,2,1],[0,2,3,0],[1,3,4,2],[1,1,2,1]],[[1,0,2,1],[0,2,3,0],[1,3,3,2],[1,1,3,1]],[[1,0,2,1],[0,2,3,0],[1,3,3,2],[1,1,2,2]],[[1,0,2,1],[0,2,3,0],[2,2,2,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,2,2,2],[2,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,2,2,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,0],[2,2,2,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,0],[2,2,2,2],[1,2,2,2]],[[1,0,2,1],[0,2,4,0],[2,2,3,1],[1,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,2,4,1],[1,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,2,3,1],[2,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,2,3,1],[1,3,2,1]],[[1,0,2,1],[0,2,3,0],[2,2,3,1],[1,2,3,1]],[[1,0,2,1],[0,2,3,0],[2,2,3,1],[1,2,2,2]],[[1,0,2,1],[0,2,3,0],[2,2,4,2],[0,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,2,3,2],[0,2,3,1]],[[1,0,2,1],[0,2,3,0],[2,2,3,2],[0,2,2,2]],[[1,0,2,1],[0,2,4,0],[2,2,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,0],[2,2,4,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,0],[2,2,3,3],[1,2,1,1]],[[1,0,2,1],[0,2,3,0],[2,2,3,2],[1,2,1,2]],[[1,0,2,1],[0,2,4,0],[2,2,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,0],[2,2,4,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,0],[2,2,3,3],[1,2,2,0]],[[1,0,2,1],[0,2,3,0],[2,2,3,2],[2,2,2,0]],[[1,0,2,1],[0,2,3,0],[2,2,3,2],[1,3,2,0]],[[1,0,2,1],[0,2,3,0],[2,2,3,2],[1,2,3,0]],[[1,0,2,1],[0,2,3,0],[2,4,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,1,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,1,2],[2,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,1,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,1,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,0],[2,3,1,2],[1,2,2,2]],[[1,0,2,1],[0,2,3,0],[2,4,2,1],[1,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,2,1],[2,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,2,1],[1,3,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,2,1],[1,2,3,1]],[[1,0,2,1],[0,2,3,0],[2,3,2,1],[1,2,2,2]],[[1,0,2,1],[0,2,3,0],[2,3,2,3],[1,1,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,2,2],[1,1,3,1]],[[1,0,2,1],[0,2,3,0],[2,3,2,2],[1,1,2,2]],[[1,0,2,1],[0,2,3,0],[2,4,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,0],[2,3,2,2],[2,2,2,0]],[[1,0,2,1],[0,2,3,0],[2,3,2,2],[1,3,2,0]],[[1,0,2,1],[0,2,3,0],[2,3,2,2],[1,2,3,0]],[[1,0,2,1],[0,2,3,0],[2,4,3,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,0],[2,2,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,0],[1,3,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,0],[1,2,3,1]],[[1,0,2,1],[0,2,4,0],[2,3,3,1],[1,1,2,1]],[[1,0,2,1],[0,2,3,0],[2,4,3,1],[1,1,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,4,1],[1,1,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,1],[1,1,3,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,1],[1,1,2,2]],[[1,0,2,1],[0,2,4,0],[2,3,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,0],[2,4,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,0],[2,3,4,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,1],[2,2,1,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,1],[1,3,1,1]],[[1,0,2,1],[0,2,3,0],[2,3,4,2],[0,1,2,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,2],[0,1,3,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,2],[0,1,2,2]],[[1,0,2,1],[0,2,4,0],[2,3,3,2],[1,1,1,1]],[[1,0,2,1],[0,2,3,0],[2,4,3,2],[1,1,1,1]],[[1,0,2,1],[0,2,3,0],[2,3,4,2],[1,1,1,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,3],[1,1,1,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,2],[1,1,1,2]],[[1,0,2,1],[0,2,4,0],[2,3,3,2],[1,1,2,0]],[[1,0,2,1],[0,2,3,0],[2,4,3,2],[1,1,2,0]],[[1,0,2,1],[0,2,3,0],[2,3,4,2],[1,1,2,0]],[[1,0,2,1],[0,2,3,0],[2,3,3,3],[1,1,2,0]],[[1,0,2,1],[0,2,3,0],[2,3,3,2],[1,1,3,0]],[[1,0,2,1],[0,2,4,0],[2,3,3,2],[1,2,0,1]],[[1,0,2,1],[0,2,3,0],[2,4,3,2],[1,2,0,1]],[[1,0,2,1],[0,2,3,0],[2,3,4,2],[1,2,0,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,3],[1,2,0,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,2],[2,2,0,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,2],[1,3,0,1]],[[1,0,2,1],[0,2,3,0],[2,3,3,2],[1,2,0,2]],[[1,0,2,1],[0,2,4,0],[2,3,3,2],[1,2,1,0]],[[1,0,2,1],[0,2,3,0],[2,4,3,2],[1,2,1,0]],[[1,0,2,1],[0,2,3,0],[2,3,4,2],[1,2,1,0]],[[1,0,2,1],[0,2,3,0],[2,3,3,3],[1,2,1,0]],[[1,0,2,1],[0,2,3,0],[2,3,3,2],[2,2,1,0]],[[1,0,2,1],[0,2,3,0],[2,3,3,2],[1,3,1,0]],[[1,0,2,1],[0,2,3,1],[0,2,3,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[0,2,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[0,2,3,2],[1,2,2,2]],[[1,0,2,1],[0,2,3,1],[0,3,2,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[0,3,2,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,1],[0,3,2,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[0,3,2,2],[1,2,2,2]],[[1,0,2,1],[0,2,4,1],[0,3,3,1],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[0,3,4,1],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[0,3,3,1],[1,3,2,1]],[[1,0,2,1],[0,2,3,1],[0,3,3,1],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[0,3,3,1],[1,2,2,2]],[[1,0,2,1],[0,2,4,1],[0,3,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[0,3,4,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[0,3,3,3],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[0,3,3,2],[1,2,1,2]],[[1,0,2,1],[0,2,4,1],[0,3,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[0,3,4,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[0,3,3,3],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[0,3,3,2],[1,3,2,0]],[[1,0,2,1],[0,2,3,1],[0,3,3,2],[1,2,3,0]],[[1,0,2,1],[0,2,3,1],[1,1,3,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[1,1,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[1,1,3,2],[1,2,2,2]],[[1,0,2,1],[0,2,3,1],[1,2,2,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[1,2,2,2],[2,2,2,1]],[[1,0,2,1],[0,2,3,1],[1,2,2,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,1],[1,2,2,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[1,2,2,2],[1,2,2,2]],[[1,0,2,1],[0,2,4,1],[1,2,3,1],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[1,2,4,1],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[1,2,3,1],[2,2,2,1]],[[1,0,2,1],[0,2,3,1],[1,2,3,1],[1,3,2,1]],[[1,0,2,1],[0,2,3,1],[1,2,3,1],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[1,2,3,1],[1,2,2,2]],[[1,0,2,1],[0,2,4,1],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[1,2,4,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[1,2,3,3],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[1,2,3,2],[1,2,1,2]],[[1,0,2,1],[0,2,4,1],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[1,2,4,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[1,2,3,3],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[1,2,3,2],[2,2,2,0]],[[1,0,2,1],[0,2,3,1],[1,2,3,2],[1,3,2,0]],[[1,0,2,1],[0,2,3,1],[1,2,3,2],[1,2,3,0]],[[1,0,2,1],[0,2,3,1],[1,4,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,1,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,1,2],[2,2,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,1,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,1,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[1,3,1,2],[1,2,2,2]],[[1,0,2,1],[0,2,3,1],[1,4,2,1],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,2,1],[2,2,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,2,1],[1,3,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,2,1],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[1,3,2,1],[1,2,2,2]],[[1,0,2,1],[0,2,3,1],[1,3,2,3],[1,1,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,2,2],[1,1,3,1]],[[1,0,2,1],[0,2,3,1],[1,3,2,2],[1,1,2,2]],[[1,0,2,1],[0,2,3,1],[1,4,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[1,3,2,2],[2,2,2,0]],[[1,0,2,1],[0,2,3,1],[1,3,2,2],[1,3,2,0]],[[1,0,2,1],[0,2,3,1],[1,3,2,2],[1,2,3,0]],[[1,0,2,1],[0,2,4,1],[1,3,3,1],[1,1,2,1]],[[1,0,2,1],[0,2,3,1],[1,4,3,1],[1,1,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,4,1],[1,1,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,1],[1,1,3,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,1],[1,1,2,2]],[[1,0,2,1],[0,2,4,1],[1,3,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[1,4,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[1,3,4,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,1],[2,2,1,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,1],[1,3,1,1]],[[1,0,2,1],[0,2,4,1],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,4,2],[1,0,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,3],[1,0,2,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,2],[1,0,2,2]],[[1,0,2,1],[0,2,4,1],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[0,2,3,1],[1,4,3,2],[1,1,1,1]],[[1,0,2,1],[0,2,3,1],[1,3,4,2],[1,1,1,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,3],[1,1,1,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,2],[1,1,1,2]],[[1,0,2,1],[0,2,4,1],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[0,2,3,1],[1,4,3,2],[1,1,2,0]],[[1,0,2,1],[0,2,3,1],[1,3,4,2],[1,1,2,0]],[[1,0,2,1],[0,2,3,1],[1,3,3,3],[1,1,2,0]],[[1,0,2,1],[0,2,3,1],[1,3,3,2],[1,1,3,0]],[[1,0,2,1],[0,2,4,1],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[0,2,3,1],[1,4,3,2],[1,2,0,1]],[[1,0,2,1],[0,2,3,1],[1,3,4,2],[1,2,0,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,3],[1,2,0,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,2],[2,2,0,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,2],[1,3,0,1]],[[1,0,2,1],[0,2,3,1],[1,3,3,2],[1,2,0,2]],[[1,0,2,1],[0,2,4,1],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[0,2,3,1],[1,4,3,2],[1,2,1,0]],[[1,0,2,1],[0,2,3,1],[1,3,4,2],[1,2,1,0]],[[1,0,2,1],[0,2,3,1],[1,3,3,3],[1,2,1,0]],[[1,0,2,1],[0,2,3,1],[1,3,3,2],[2,2,1,0]],[[1,0,2,1],[0,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,1,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,1,1],[2,1,3,3],[1,2,3,2],[0,1,0,1]],[[1,0,2,1],[0,2,3,1],[2,0,3,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,0,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[2,0,3,2],[1,2,2,2]],[[1,0,2,1],[0,2,3,1],[2,1,2,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,1,2,2],[2,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,1,2,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,1],[2,1,2,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[2,1,2,2],[1,2,2,2]],[[1,0,2,1],[0,2,4,1],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,1,4,1],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,1,3,1],[2,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,1,3,1],[1,3,2,1]],[[1,0,2,1],[0,2,3,1],[2,1,3,1],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[2,1,3,1],[1,2,2,2]],[[1,0,2,1],[0,2,3,1],[2,1,3,3],[0,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,1,3,2],[0,2,3,1]],[[1,0,2,1],[0,2,3,1],[2,1,3,2],[0,2,2,2]],[[1,0,2,1],[0,2,4,1],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,1,4,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,1,3,3],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,1,3,2],[1,2,1,2]],[[1,0,2,1],[0,2,4,1],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,1,4,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,1,3,3],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,1,3,2],[2,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,1,3,2],[1,3,2,0]],[[1,0,2,1],[0,2,3,1],[2,1,3,2],[1,2,3,0]],[[1,0,2,1],[0,2,3,1],[2,2,2,3],[0,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,2,2,2],[0,3,2,1]],[[1,0,2,1],[0,2,3,1],[2,2,2,2],[0,2,3,1]],[[1,0,2,1],[0,2,3,1],[2,2,2,2],[0,2,2,2]],[[1,0,2,1],[0,2,4,1],[2,2,3,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,2,4,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,2,3,0],[2,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,2,3,0],[1,3,2,1]],[[1,0,2,1],[0,2,3,1],[2,2,3,0],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[2,2,3,0],[1,2,2,2]],[[1,0,2,1],[0,2,4,1],[2,2,3,1],[0,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,2,3,1],[0,3,2,1]],[[1,0,2,1],[0,2,3,1],[2,2,3,1],[0,2,3,1]],[[1,0,2,1],[0,2,3,1],[2,2,3,1],[0,2,2,2]],[[1,0,2,1],[0,2,4,1],[2,2,3,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,2,4,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,2,3,1],[2,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,2,3,1],[1,3,2,0]],[[1,0,2,1],[0,2,3,1],[2,2,3,1],[1,2,3,0]],[[1,0,2,1],[0,2,4,1],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,2,4,2],[0,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,2,3,3],[0,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,2,3,2],[0,2,1,2]],[[1,0,2,1],[0,2,4,1],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,2,4,2],[0,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,2,3,3],[0,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,2,3,2],[0,3,2,0]],[[1,0,2,1],[0,2,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,4,2],[1,2,3,2],[0,1,0,1]],[[1,2,1,2],[2,1,3,2],[1,2,3,2],[0,1,0,1]],[[1,0,2,1],[0,2,3,1],[2,4,1,2],[0,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,1,3],[0,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,1,2],[0,3,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,1,2],[0,2,3,1]],[[1,0,2,1],[0,2,3,1],[2,3,1,2],[0,2,2,2]],[[1,0,2,1],[0,2,3,1],[2,4,2,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,2,0],[2,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,2,0],[1,3,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,2,0],[1,2,3,1]],[[1,0,2,1],[0,2,3,1],[2,3,2,0],[1,2,2,2]],[[1,0,2,1],[0,2,3,1],[2,4,2,1],[0,2,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,2,1],[0,3,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,2,1],[0,2,3,1]],[[1,0,2,1],[0,2,3,1],[2,3,2,1],[0,2,2,2]],[[1,0,2,1],[0,2,3,1],[2,4,2,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,2,1],[2,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,2,1],[1,3,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,2,1],[1,2,3,0]],[[1,0,2,1],[0,2,3,1],[2,3,2,3],[0,1,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,2,2],[0,1,3,1]],[[1,0,2,1],[0,2,3,1],[2,3,2,2],[0,1,2,2]],[[1,0,2,1],[0,2,3,1],[2,4,2,2],[0,2,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,2,2],[0,3,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,2,2],[0,2,3,0]],[[1,0,2,1],[0,2,3,1],[2,3,2,3],[1,0,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,2,2],[1,0,3,1]],[[1,0,2,1],[0,2,3,1],[2,3,2,2],[1,0,2,2]],[[1,0,2,1],[0,2,4,1],[2,3,3,0],[1,1,2,1]],[[1,0,2,1],[0,2,3,1],[2,4,3,0],[1,1,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,4,0],[1,1,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,0],[1,1,3,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,0],[1,1,2,2]],[[1,0,2,1],[0,2,4,1],[2,3,3,0],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,4,3,0],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,3,4,0],[1,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,0],[2,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,0],[1,3,1,1]],[[1,0,2,1],[0,2,4,1],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[0,2,3,1],[2,4,3,1],[0,1,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,4,1],[0,1,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,1],[0,1,2,2]],[[1,0,2,1],[0,2,4,1],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,4,3,1],[0,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,3,4,1],[0,2,1,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,1],[0,3,1,1]],[[1,0,2,1],[0,2,4,1],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[0,2,3,1],[2,4,3,1],[1,0,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,4,1],[1,0,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,1],[1,0,3,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,1],[1,0,2,2]],[[1,0,2,1],[0,2,4,1],[2,3,3,1],[1,1,2,0]],[[1,0,2,1],[0,2,3,1],[2,4,3,1],[1,1,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,4,1],[1,1,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,3,1],[1,1,3,0]],[[1,0,2,1],[0,2,4,1],[2,3,3,1],[1,2,0,1]],[[1,0,2,1],[0,2,3,1],[2,4,3,1],[1,2,0,1]],[[1,0,2,1],[0,2,3,1],[2,3,4,1],[1,2,0,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,1],[2,2,0,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,1],[1,3,0,1]],[[1,0,2,1],[0,2,4,1],[2,3,3,1],[1,2,1,0]],[[1,0,2,1],[0,2,3,1],[2,4,3,1],[1,2,1,0]],[[1,0,2,1],[0,2,3,1],[2,3,4,1],[1,2,1,0]],[[1,0,2,1],[0,2,3,1],[2,3,3,1],[2,2,1,0]],[[1,0,2,1],[0,2,3,1],[2,3,3,1],[1,3,1,0]],[[1,0,2,1],[0,2,4,1],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,4,2],[0,0,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,3],[0,0,2,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,2],[0,0,2,2]],[[1,0,2,1],[0,2,4,1],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[0,2,3,1],[2,4,3,2],[0,1,1,1]],[[1,0,2,1],[0,2,3,1],[2,3,4,2],[0,1,1,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,3],[0,1,1,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,2],[0,1,1,2]],[[1,0,2,1],[0,2,4,1],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[0,2,3,1],[2,4,3,2],[0,1,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,3,3],[0,1,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,3,2],[0,1,3,0]],[[1,0,2,1],[0,2,4,1],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[0,2,3,1],[2,4,3,2],[0,2,0,1]],[[1,0,2,1],[0,2,3,1],[2,3,4,2],[0,2,0,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,3],[0,2,0,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,2],[0,3,0,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,2],[0,2,0,2]],[[1,0,2,1],[0,2,4,1],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[0,2,3,1],[2,4,3,2],[0,2,1,0]],[[1,0,2,1],[0,2,3,1],[2,3,4,2],[0,2,1,0]],[[1,0,2,1],[0,2,3,1],[2,3,3,3],[0,2,1,0]],[[1,0,2,1],[0,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,1,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,1,1],[2,1,3,3],[1,2,3,1],[1,1,1,0]],[[1,0,2,1],[0,2,4,1],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[0,2,3,1],[2,4,3,2],[1,0,1,1]],[[1,0,2,1],[0,2,3,1],[2,3,4,2],[1,0,1,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,3],[1,0,1,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,2],[1,0,1,2]],[[1,0,2,1],[0,2,4,1],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[0,2,3,1],[2,4,3,2],[1,0,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,3,3],[1,0,2,0]],[[1,0,2,1],[0,2,3,1],[2,3,3,2],[1,0,3,0]],[[1,0,2,1],[0,2,4,1],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[0,2,3,1],[2,4,3,2],[1,1,0,1]],[[1,0,2,1],[0,2,3,1],[2,3,4,2],[1,1,0,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,3],[1,1,0,1]],[[1,0,2,1],[0,2,3,1],[2,3,3,2],[1,1,0,2]],[[1,0,2,1],[0,2,4,1],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[0,2,3,1],[2,4,3,2],[1,1,1,0]],[[1,0,2,1],[0,2,3,1],[2,3,4,2],[1,1,1,0]],[[1,0,2,1],[0,2,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,4,2],[1,2,3,1],[1,1,1,0]],[[1,2,1,2],[2,1,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[1,2,4,1],[1,1,0,1]],[[1,2,1,1],[2,1,3,3],[1,2,3,1],[1,1,0,1]],[[1,2,1,1],[2,1,4,2],[1,2,3,1],[1,1,0,1]],[[1,2,1,2],[2,1,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,1,1],[2,1,3,2],[1,2,3,1],[1,0,3,0]],[[1,2,1,1],[2,1,3,2],[1,2,4,1],[1,0,2,0]],[[1,2,1,1],[2,1,3,3],[1,2,3,1],[1,0,2,0]],[[1,2,1,1],[2,1,4,2],[1,2,3,1],[1,0,2,0]],[[1,2,1,2],[2,1,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,1,1],[2,1,3,2],[1,2,4,1],[1,0,1,1]],[[1,2,1,1],[2,1,3,3],[1,2,3,1],[1,0,1,1]],[[1,2,1,1],[2,1,4,2],[1,2,3,1],[1,0,1,1]],[[1,2,1,2],[2,1,3,2],[1,2,3,1],[1,0,1,1]],[[1,0,2,2],[0,2,3,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,4,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,3],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[0,3,1,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[0,3,1,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,2],[0,3,1,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,2],[0,3,1,2],[1,2,2,2]],[[1,0,2,2],[0,2,3,2],[0,3,2,2],[1,2,1,1]],[[1,0,2,1],[0,2,4,2],[0,3,2,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,3],[0,3,2,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[0,3,2,3],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[0,3,2,2],[1,2,1,2]],[[1,0,2,2],[0,2,3,2],[0,3,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,4,2],[0,3,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,3],[0,3,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,2],[0,3,2,3],[1,2,2,0]],[[1,0,2,2],[0,2,3,2],[0,3,3,0],[1,2,2,1]],[[1,0,2,1],[0,2,4,2],[0,3,3,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,3],[0,3,3,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[0,3,4,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[0,3,3,0],[1,3,2,1]],[[1,0,2,1],[0,2,3,2],[0,3,3,0],[1,2,3,1]],[[1,0,2,1],[0,2,3,2],[0,3,3,0],[1,2,2,2]],[[1,0,2,2],[0,2,3,2],[0,3,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,4,2],[0,3,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,3],[0,3,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[0,3,4,1],[1,2,1,1]],[[1,0,2,2],[0,2,3,2],[0,3,3,1],[1,2,2,0]],[[1,0,2,1],[0,2,4,2],[0,3,3,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,3],[0,3,3,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,2],[0,3,4,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,2],[0,3,3,1],[1,3,2,0]],[[1,0,2,1],[0,2,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,1,1],[2,1,3,2],[1,2,4,1],[0,2,1,0]],[[1,2,1,1],[2,1,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,1,1],[2,1,4,2],[1,2,3,1],[0,2,1,0]],[[1,2,1,2],[2,1,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,1,1],[2,1,3,2],[1,2,4,1],[0,2,0,1]],[[1,0,2,2],[0,2,3,2],[1,0,3,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,3],[1,0,3,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,0,3,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,0,3,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,2],[1,0,3,2],[1,2,2,2]],[[1,0,2,2],[0,2,3,2],[1,2,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,4,2],[1,2,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,3],[1,2,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,2,1,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,2,1,2],[2,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,2,1,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,2],[1,2,1,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,2],[1,2,1,2],[1,2,2,2]],[[1,0,2,2],[0,2,3,2],[1,2,2,2],[1,2,1,1]],[[1,0,2,1],[0,2,4,2],[1,2,2,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,3],[1,2,2,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[1,2,2,3],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[1,2,2,2],[1,2,1,2]],[[1,0,2,2],[0,2,3,2],[1,2,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,4,2],[1,2,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,3],[1,2,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,2],[1,2,2,3],[1,2,2,0]],[[1,0,2,2],[0,2,3,2],[1,2,3,0],[1,2,2,1]],[[1,0,2,1],[0,2,4,2],[1,2,3,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,3],[1,2,3,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,2,4,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,2,3,0],[2,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,2,3,0],[1,3,2,1]],[[1,0,2,1],[0,2,3,2],[1,2,3,0],[1,2,3,1]],[[1,0,2,1],[0,2,3,2],[1,2,3,0],[1,2,2,2]],[[1,0,2,2],[0,2,3,2],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,4,2],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,3],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[1,2,4,1],[1,2,1,1]],[[1,0,2,2],[0,2,3,2],[1,2,3,1],[1,2,2,0]],[[1,0,2,1],[0,2,4,2],[1,2,3,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,3],[1,2,3,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,2],[1,2,4,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,2],[1,2,3,1],[2,2,2,0]],[[1,0,2,1],[0,2,3,2],[1,2,3,1],[1,3,2,0]],[[1,0,2,1],[0,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,1,1],[2,1,3,3],[1,2,3,1],[0,2,0,1]],[[1,2,1,1],[2,1,4,2],[1,2,3,1],[0,2,0,1]],[[1,2,1,2],[2,1,3,2],[1,2,3,1],[0,2,0,1]],[[1,0,2,2],[0,2,3,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[0,2,4,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,3],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,4,0,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,0,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,0,2],[2,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,0,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,0,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,2],[1,3,0,2],[1,2,2,2]],[[1,0,2,2],[0,2,3,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[0,2,4,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[0,2,3,3],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,1,3],[1,1,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,1,2],[1,1,3,1]],[[1,0,2,1],[0,2,3,2],[1,3,1,2],[1,1,2,2]],[[1,0,2,1],[0,2,3,2],[1,4,2,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,2,0],[2,2,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,2,0],[1,3,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,2,0],[1,2,3,1]],[[1,0,2,1],[0,2,3,2],[1,3,2,0],[1,2,2,2]],[[1,0,2,1],[0,2,3,2],[1,4,2,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,2],[1,3,2,1],[2,2,2,0]],[[1,0,2,1],[0,2,3,2],[1,3,2,1],[1,3,2,0]],[[1,0,2,1],[0,2,3,2],[1,3,2,1],[1,2,3,0]],[[1,0,2,2],[0,2,3,2],[1,3,2,2],[1,0,2,1]],[[1,0,2,1],[0,2,4,2],[1,3,2,2],[1,0,2,1]],[[1,0,2,1],[0,2,3,3],[1,3,2,2],[1,0,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,2,3],[1,0,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,2,2],[1,0,2,2]],[[1,0,2,2],[0,2,3,2],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[0,2,4,2],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[0,2,3,3],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[0,2,3,2],[1,3,2,3],[1,1,1,1]],[[1,0,2,1],[0,2,3,2],[1,3,2,2],[1,1,1,2]],[[1,0,2,2],[0,2,3,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[0,2,4,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[0,2,3,3],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[0,2,3,2],[1,3,2,3],[1,1,2,0]],[[1,0,2,2],[0,2,3,2],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[0,2,4,2],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[0,2,3,3],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[0,2,3,2],[1,3,2,3],[1,2,0,1]],[[1,0,2,1],[0,2,3,2],[1,3,2,2],[1,2,0,2]],[[1,0,2,2],[0,2,3,2],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[0,2,4,2],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[0,2,3,3],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[0,2,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,1,1],[2,1,3,2],[1,2,3,1],[0,1,3,0]],[[1,2,1,1],[2,1,3,2],[1,2,4,1],[0,1,2,0]],[[1,2,1,1],[2,1,3,3],[1,2,3,1],[0,1,2,0]],[[1,2,1,1],[2,1,4,2],[1,2,3,1],[0,1,2,0]],[[1,2,1,2],[2,1,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,1,1],[2,1,3,2],[1,2,4,1],[0,1,1,1]],[[1,2,1,1],[2,1,3,3],[1,2,3,1],[0,1,1,1]],[[1,2,1,1],[2,1,4,2],[1,2,3,1],[0,1,1,1]],[[1,2,1,2],[2,1,3,2],[1,2,3,1],[0,1,1,1]],[[1,0,2,2],[0,2,3,2],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[0,2,4,2],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[0,2,3,3],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[0,2,3,2],[1,4,3,0],[1,1,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,4,0],[1,1,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,3,0],[1,1,3,1]],[[1,0,2,1],[0,2,3,2],[1,3,3,0],[1,1,2,2]],[[1,0,2,2],[0,2,3,2],[1,3,3,0],[1,2,1,1]],[[1,0,2,1],[0,2,4,2],[1,3,3,0],[1,2,1,1]],[[1,0,2,1],[0,2,3,3],[1,3,3,0],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[1,4,3,0],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[1,3,4,0],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[1,3,3,0],[2,2,1,1]],[[1,0,2,1],[0,2,3,2],[1,3,3,0],[1,3,1,1]],[[1,0,2,2],[0,2,3,2],[1,3,3,1],[1,0,2,1]],[[1,0,2,1],[0,2,4,2],[1,3,3,1],[1,0,2,1]],[[1,0,2,1],[0,2,3,3],[1,3,3,1],[1,0,2,1]],[[1,0,2,1],[0,2,3,2],[1,3,4,1],[1,0,2,1]],[[1,0,2,2],[0,2,3,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[0,2,4,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[0,2,3,3],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[0,2,3,2],[1,4,3,1],[1,1,1,1]],[[1,0,2,1],[0,2,3,2],[1,3,4,1],[1,1,1,1]],[[1,0,2,2],[0,2,3,2],[1,3,3,1],[1,1,2,0]],[[1,0,2,1],[0,2,4,2],[1,3,3,1],[1,1,2,0]],[[1,0,2,1],[0,2,3,3],[1,3,3,1],[1,1,2,0]],[[1,0,2,1],[0,2,3,2],[1,4,3,1],[1,1,2,0]],[[1,0,2,1],[0,2,3,2],[1,3,4,1],[1,1,2,0]],[[1,0,2,1],[0,2,3,2],[1,3,3,1],[1,1,3,0]],[[1,0,2,2],[0,2,3,2],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[0,2,4,2],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[0,2,3,3],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[0,2,3,2],[1,4,3,1],[1,2,0,1]],[[1,0,2,1],[0,2,3,2],[1,3,4,1],[1,2,0,1]],[[1,0,2,1],[0,2,3,2],[1,3,3,1],[2,2,0,1]],[[1,0,2,1],[0,2,3,2],[1,3,3,1],[1,3,0,1]],[[1,0,2,2],[0,2,3,2],[1,3,3,1],[1,2,1,0]],[[1,0,2,1],[0,2,4,2],[1,3,3,1],[1,2,1,0]],[[1,0,2,1],[0,2,3,3],[1,3,3,1],[1,2,1,0]],[[1,0,2,1],[0,2,3,2],[1,4,3,1],[1,2,1,0]],[[1,0,2,1],[0,2,3,2],[1,3,4,1],[1,2,1,0]],[[1,0,2,1],[0,2,3,2],[1,3,3,1],[2,2,1,0]],[[1,0,2,1],[0,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,1,3,2],[1,2,4,1],[0,0,2,1]],[[1,2,1,1],[2,1,3,3],[1,2,3,1],[0,0,2,1]],[[1,2,1,1],[2,1,4,2],[1,2,3,1],[0,0,2,1]],[[1,2,1,2],[2,1,3,2],[1,2,3,1],[0,0,2,1]],[[1,0,2,2],[0,2,3,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[0,2,4,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[0,2,3,3],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[0,2,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,1,1],[2,1,3,2],[1,2,4,0],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[1,2,3,0],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[1,2,3,0],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,1,1],[2,1,3,2],[1,2,3,0],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[1,2,3,0],[1,0,3,1]],[[1,2,1,1],[2,1,3,2],[1,2,4,0],[1,0,2,1]],[[1,2,1,1],[2,1,3,3],[1,2,3,0],[1,0,2,1]],[[1,2,1,1],[2,1,4,2],[1,2,3,0],[1,0,2,1]],[[1,2,1,2],[2,1,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,1,1],[2,1,3,2],[1,2,4,0],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[1,2,3,0],[0,2,1,1]],[[1,2,1,1],[2,1,4,2],[1,2,3,0],[0,2,1,1]],[[1,2,1,2],[2,1,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,1,1],[2,1,3,2],[1,2,3,0],[0,1,2,2]],[[1,2,1,1],[2,1,3,2],[1,2,3,0],[0,1,3,1]],[[1,2,1,1],[2,1,3,2],[1,2,4,0],[0,1,2,1]],[[1,2,1,1],[2,1,3,3],[1,2,3,0],[0,1,2,1]],[[1,2,1,1],[2,1,4,2],[1,2,3,0],[0,1,2,1]],[[1,2,1,2],[2,1,3,2],[1,2,3,0],[0,1,2,1]],[[1,0,2,2],[0,2,3,2],[2,0,3,2],[0,2,2,1]],[[1,0,2,1],[0,2,3,3],[2,0,3,2],[0,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,0,3,3],[0,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,0,3,2],[0,2,3,1]],[[1,0,2,1],[0,2,3,2],[2,0,3,2],[0,2,2,2]],[[1,0,2,2],[0,2,3,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,4,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,3],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,1,1,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,1,1,2],[2,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,1,1,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,2],[2,1,1,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,2],[2,1,1,2],[1,2,2,2]],[[1,0,2,2],[0,2,3,2],[2,1,2,2],[1,2,1,1]],[[1,0,2,1],[0,2,4,2],[2,1,2,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,3],[2,1,2,2],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[2,1,2,3],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[2,1,2,2],[1,2,1,2]],[[1,0,2,2],[0,2,3,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,4,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,3],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[0,2,3,2],[2,1,2,3],[1,2,2,0]],[[1,0,2,2],[0,2,3,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[0,2,4,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,3],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,1,4,0],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,1,3,0],[2,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,1,3,0],[1,3,2,1]],[[1,0,2,1],[0,2,3,2],[2,1,3,0],[1,2,3,1]],[[1,0,2,1],[0,2,3,2],[2,1,3,0],[1,2,2,2]],[[1,0,2,2],[0,2,3,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,4,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,3],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[0,2,3,2],[2,1,4,1],[1,2,1,1]],[[1,0,2,2],[0,2,3,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[0,2,4,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,3],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,2],[2,1,4,1],[1,2,2,0]],[[1,0,2,1],[0,2,3,2],[2,1,3,1],[2,2,2,0]],[[1,0,2,1],[0,2,3,2],[2,1,3,1],[1,3,2,0]],[[1,0,2,1],[0,2,3,2],[2,1,3,1],[1,2,3,0]],[[1,0,2,2],[0,2,3,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[0,2,4,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,3],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,2,0,3],[1,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,2,0,2],[2,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,2,0,2],[1,3,2,1]],[[1,0,2,1],[0,2,3,2],[2,2,0,2],[1,2,3,1]],[[1,0,2,1],[0,2,3,2],[2,2,0,2],[1,2,2,2]],[[1,0,2,2],[0,2,3,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[0,2,4,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[0,2,3,3],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,2,1,3],[0,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,2,1,2],[0,3,2,1]],[[1,0,2,1],[0,2,3,2],[2,2,1,2],[0,2,3,1]],[[1,0,2,1],[0,2,3,2],[2,2,1,2],[0,2,2,2]],[[1,0,2,2],[0,2,3,2],[2,2,2,2],[0,2,1,1]],[[1,0,2,1],[0,2,4,2],[2,2,2,2],[0,2,1,1]],[[1,0,2,1],[0,2,3,3],[2,2,2,2],[0,2,1,1]],[[1,0,2,1],[0,2,3,2],[2,2,2,3],[0,2,1,1]],[[1,0,2,1],[0,2,3,2],[2,2,2,2],[0,2,1,2]],[[1,0,2,2],[0,2,3,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[0,2,4,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[0,2,3,3],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[0,2,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,1,1],[2,1,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,1,1],[2,1,3,3],[1,2,2,2],[1,1,1,0]],[[1,2,1,1],[2,1,4,2],[1,2,2,2],[1,1,1,0]],[[1,0,2,2],[0,2,3,2],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[0,2,4,2],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[0,2,3,3],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,2,4,0],[0,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,2,3,0],[0,3,2,1]],[[1,0,2,1],[0,2,3,2],[2,2,3,0],[0,2,3,1]],[[1,0,2,1],[0,2,3,2],[2,2,3,0],[0,2,2,2]],[[1,0,2,2],[0,2,3,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[0,2,4,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[0,2,3,3],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[0,2,3,2],[2,2,4,1],[0,2,1,1]],[[1,0,2,2],[0,2,3,2],[2,2,3,1],[0,2,2,0]],[[1,0,2,1],[0,2,4,2],[2,2,3,1],[0,2,2,0]],[[1,0,2,1],[0,2,3,3],[2,2,3,1],[0,2,2,0]],[[1,0,2,1],[0,2,3,2],[2,2,4,1],[0,2,2,0]],[[1,0,2,1],[0,2,3,2],[2,2,3,1],[0,3,2,0]],[[1,0,2,1],[0,2,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,1,2],[2,1,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[1,2,2,2],[1,1,0,2]],[[1,2,1,1],[2,1,3,2],[1,2,2,3],[1,1,0,1]],[[1,2,1,1],[2,1,3,3],[1,2,2,2],[1,1,0,1]],[[1,2,1,1],[2,1,4,2],[1,2,2,2],[1,1,0,1]],[[1,2,1,2],[2,1,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,1,1],[2,1,3,2],[1,2,2,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,3],[1,2,2,2],[1,0,2,0]],[[1,2,1,1],[2,1,4,2],[1,2,2,2],[1,0,2,0]],[[1,2,1,2],[2,1,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,2],[1,2,2,2],[1,0,1,2]],[[1,2,1,1],[2,1,3,2],[1,2,2,3],[1,0,1,1]],[[1,2,1,1],[2,1,3,3],[1,2,2,2],[1,0,1,1]],[[1,2,1,1],[2,1,4,2],[1,2,2,2],[1,0,1,1]],[[1,2,1,2],[2,1,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,1,1],[2,1,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,1,1],[2,1,3,3],[1,2,2,2],[0,2,1,0]],[[1,2,1,1],[2,1,4,2],[1,2,2,2],[0,2,1,0]],[[1,2,1,2],[2,1,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,1,1],[2,1,3,2],[1,2,2,2],[0,2,0,2]],[[1,2,1,1],[2,1,3,2],[1,2,2,3],[0,2,0,1]],[[1,2,1,1],[2,1,3,3],[1,2,2,2],[0,2,0,1]],[[1,2,1,1],[2,1,4,2],[1,2,2,2],[0,2,0,1]],[[1,2,1,2],[2,1,3,2],[1,2,2,2],[0,2,0,1]],[[1,0,2,2],[0,2,3,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[0,2,4,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[0,2,3,3],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,4,0,2],[0,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,0,3],[0,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,0,2],[0,3,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,0,2],[0,2,3,1]],[[1,0,2,1],[0,2,3,2],[2,3,0,2],[0,2,2,2]],[[1,0,2,2],[0,2,3,2],[2,3,1,2],[0,1,2,1]],[[1,0,2,1],[0,2,4,2],[2,3,1,2],[0,1,2,1]],[[1,0,2,1],[0,2,3,3],[2,3,1,2],[0,1,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,1,3],[0,1,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,1,2],[0,1,3,1]],[[1,0,2,1],[0,2,3,2],[2,3,1,2],[0,1,2,2]],[[1,0,2,2],[0,2,3,2],[2,3,1,2],[1,0,2,1]],[[1,0,2,1],[0,2,4,2],[2,3,1,2],[1,0,2,1]],[[1,0,2,1],[0,2,3,3],[2,3,1,2],[1,0,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,1,3],[1,0,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,1,2],[1,0,3,1]],[[1,0,2,1],[0,2,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[1,2,2,3],[0,1,2,0]],[[1,2,1,1],[2,1,3,3],[1,2,2,2],[0,1,2,0]],[[1,2,1,1],[2,1,4,2],[1,2,2,2],[0,1,2,0]],[[1,0,2,1],[0,2,3,2],[2,4,2,0],[0,2,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,0],[0,3,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,0],[0,2,3,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,0],[0,2,2,2]],[[1,0,2,1],[0,2,3,2],[2,4,2,1],[0,2,2,0]],[[1,0,2,1],[0,2,3,2],[2,3,2,1],[0,3,2,0]],[[1,0,2,1],[0,2,3,2],[2,3,2,1],[0,2,3,0]],[[1,2,1,2],[2,1,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,2],[1,2,2,2],[0,1,1,2]],[[1,2,1,1],[2,1,3,2],[1,2,2,3],[0,1,1,1]],[[1,2,1,1],[2,1,3,3],[1,2,2,2],[0,1,1,1]],[[1,2,1,1],[2,1,4,2],[1,2,2,2],[0,1,1,1]],[[1,0,2,2],[0,2,3,2],[2,3,2,2],[0,0,2,1]],[[1,0,2,1],[0,2,4,2],[2,3,2,2],[0,0,2,1]],[[1,0,2,1],[0,2,3,3],[2,3,2,2],[0,0,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,3],[0,0,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,2],[0,0,2,2]],[[1,0,2,2],[0,2,3,2],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[0,2,4,2],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[0,2,3,3],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,3],[0,1,1,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,2],[0,1,1,2]],[[1,0,2,2],[0,2,3,2],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[0,2,4,2],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[0,2,3,3],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[0,2,3,2],[2,3,2,3],[0,1,2,0]],[[1,0,2,2],[0,2,3,2],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[0,2,4,2],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[0,2,3,3],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,3],[0,2,0,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,2],[0,2,0,2]],[[1,0,2,2],[0,2,3,2],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[0,2,4,2],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[0,2,3,3],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[0,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,2],[2,1,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,1,1],[2,1,3,2],[1,2,2,2],[0,0,2,2]],[[1,2,1,1],[2,1,3,2],[1,2,2,3],[0,0,2,1]],[[1,2,1,1],[2,1,3,3],[1,2,2,2],[0,0,2,1]],[[1,2,1,1],[2,1,4,2],[1,2,2,2],[0,0,2,1]],[[1,2,1,2],[2,1,3,2],[1,2,2,2],[0,0,2,1]],[[1,0,2,2],[0,2,3,2],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[0,2,4,2],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[0,2,3,3],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,3],[1,0,1,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,2],[1,0,1,2]],[[1,0,2,2],[0,2,3,2],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[0,2,4,2],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[0,2,3,3],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[0,2,3,2],[2,3,2,3],[1,0,2,0]],[[1,0,2,2],[0,2,3,2],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[0,2,4,2],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[0,2,3,3],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,3],[1,1,0,1]],[[1,0,2,1],[0,2,3,2],[2,3,2,2],[1,1,0,2]],[[1,0,2,2],[0,2,3,2],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[0,2,4,2],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[0,2,3,3],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[0,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[1,2,1,2],[1,0,3,1]],[[1,2,1,1],[2,1,3,2],[1,2,1,3],[1,0,2,1]],[[1,2,1,1],[2,1,3,3],[1,2,1,2],[1,0,2,1]],[[1,2,1,1],[2,1,4,2],[1,2,1,2],[1,0,2,1]],[[1,2,1,2],[2,1,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,1,1],[2,1,3,2],[1,2,1,2],[0,1,2,2]],[[1,2,1,1],[2,1,3,2],[1,2,1,2],[0,1,3,1]],[[1,2,1,1],[2,1,3,2],[1,2,1,3],[0,1,2,1]],[[1,2,1,1],[2,1,3,3],[1,2,1,2],[0,1,2,1]],[[1,2,1,1],[2,1,4,2],[1,2,1,2],[0,1,2,1]],[[1,2,1,2],[2,1,3,2],[1,2,1,2],[0,1,2,1]],[[1,0,2,2],[0,2,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[0,2,4,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[0,2,3,3],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[0,2,3,2],[2,4,3,0],[0,1,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,4,0],[0,1,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,3,0],[0,1,3,1]],[[1,0,2,1],[0,2,3,2],[2,3,3,0],[0,1,2,2]],[[1,0,2,2],[0,2,3,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[0,2,4,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[0,2,3,3],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[0,2,3,2],[2,4,3,0],[0,2,1,1]],[[1,0,2,1],[0,2,3,2],[2,3,4,0],[0,2,1,1]],[[1,0,2,1],[0,2,3,2],[2,3,3,0],[0,3,1,1]],[[1,0,2,2],[0,2,3,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[0,2,4,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[0,2,3,3],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[0,2,3,2],[2,4,3,0],[1,0,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,4,0],[1,0,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,3,0],[1,0,3,1]],[[1,0,2,1],[0,2,3,2],[2,3,3,0],[1,0,2,2]],[[1,0,2,2],[0,2,3,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[0,2,4,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[0,2,3,3],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[0,2,3,2],[2,4,3,0],[1,1,1,1]],[[1,0,2,1],[0,2,3,2],[2,3,4,0],[1,1,1,1]],[[1,2,1,1],[2,1,3,2],[1,2,0,2],[0,2,2,2]],[[1,2,1,1],[2,1,3,2],[1,2,0,2],[0,2,3,1]],[[1,2,1,1],[2,1,3,2],[1,2,0,2],[0,3,2,1]],[[1,2,1,1],[2,1,3,2],[1,2,0,3],[0,2,2,1]],[[1,2,1,1],[2,1,3,3],[1,2,0,2],[0,2,2,1]],[[1,2,1,1],[2,1,4,2],[1,2,0,2],[0,2,2,1]],[[1,0,2,2],[0,2,3,2],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[0,2,4,2],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[0,2,3,3],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[0,2,3,2],[2,3,4,1],[0,0,2,1]],[[1,0,2,2],[0,2,3,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[0,2,4,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[0,2,3,3],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[0,2,3,2],[2,4,3,1],[0,1,1,1]],[[1,0,2,1],[0,2,3,2],[2,3,4,1],[0,1,1,1]],[[1,0,2,2],[0,2,3,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[0,2,4,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[0,2,3,3],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[0,2,3,2],[2,4,3,1],[0,1,2,0]],[[1,0,2,1],[0,2,3,2],[2,3,4,1],[0,1,2,0]],[[1,0,2,1],[0,2,3,2],[2,3,3,1],[0,1,3,0]],[[1,0,2,2],[0,2,3,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[0,2,4,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[0,2,3,3],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[0,2,3,2],[2,4,3,1],[0,2,0,1]],[[1,0,2,1],[0,2,3,2],[2,3,4,1],[0,2,0,1]],[[1,0,2,1],[0,2,3,2],[2,3,3,1],[0,3,0,1]],[[1,0,2,2],[0,2,3,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[0,2,4,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[0,2,3,3],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[0,2,3,2],[2,4,3,1],[0,2,1,0]],[[1,0,2,1],[0,2,3,2],[2,3,4,1],[0,2,1,0]],[[1,0,2,1],[0,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,2],[2,1,3,2],[1,2,0,2],[0,2,2,1]],[[1,0,2,2],[0,2,3,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[0,2,4,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[0,2,3,3],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[0,2,3,2],[2,4,3,1],[1,0,1,1]],[[1,0,2,1],[0,2,3,2],[2,3,4,1],[1,0,1,1]],[[1,0,2,2],[0,2,3,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[0,2,4,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[0,2,3,3],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[0,2,3,2],[2,4,3,1],[1,0,2,0]],[[1,0,2,1],[0,2,3,2],[2,3,4,1],[1,0,2,0]],[[1,0,2,1],[0,2,3,2],[2,3,3,1],[1,0,3,0]],[[1,0,2,2],[0,2,3,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[0,2,4,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[0,2,3,3],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[0,2,3,2],[2,4,3,1],[1,1,0,1]],[[1,0,2,1],[0,2,3,2],[2,3,4,1],[1,1,0,1]],[[1,0,2,2],[0,2,3,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[0,2,4,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[0,2,3,3],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[0,2,3,2],[2,4,3,1],[1,1,1,0]],[[1,0,2,1],[0,2,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,3],[1,1,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,4,2],[1,1,3,2],[1,0,2,0]],[[1,2,1,2],[2,1,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,2],[1,1,3,2],[1,0,1,2]],[[1,2,1,1],[2,1,3,2],[1,1,3,3],[1,0,1,1]],[[1,2,1,1],[2,1,3,3],[1,1,3,2],[1,0,1,1]],[[1,2,1,1],[2,1,4,2],[1,1,3,2],[1,0,1,1]],[[1,2,1,2],[2,1,3,2],[1,1,3,2],[1,0,1,1]],[[1,0,2,2],[0,2,3,2],[2,3,3,2],[0,1,0,1]],[[1,0,2,1],[0,2,4,2],[2,3,3,2],[0,1,0,1]],[[1,0,2,1],[0,2,3,3],[2,3,3,2],[0,1,0,1]],[[1,0,2,1],[0,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,1],[2,1,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,1,1],[2,1,3,3],[1,1,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,4,2],[1,1,3,2],[0,1,2,0]],[[1,2,1,2],[2,1,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,2],[1,1,3,2],[0,1,1,2]],[[1,2,1,1],[2,1,3,2],[1,1,3,3],[0,1,1,1]],[[1,2,1,1],[2,1,3,3],[1,1,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,4,2],[1,1,3,2],[0,1,1,1]],[[1,2,1,2],[2,1,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,3,2],[1,1,3,2],[0,0,2,2]],[[1,2,1,1],[2,1,3,2],[1,1,3,3],[0,0,2,1]],[[1,2,1,1],[2,1,3,3],[1,1,3,2],[0,0,2,1]],[[1,2,1,1],[2,1,4,2],[1,1,3,2],[0,0,2,1]],[[1,2,1,2],[2,1,3,2],[1,1,3,2],[0,0,2,1]],[[1,0,2,2],[0,2,3,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[0,2,4,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[0,2,3,3],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[0,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,1],[2,1,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,1,1],[2,1,3,2],[1,1,3,1],[0,3,2,0]],[[1,2,1,1],[2,1,3,2],[1,1,4,1],[0,2,2,0]],[[1,2,1,1],[2,1,3,3],[1,1,3,1],[0,2,2,0]],[[1,2,1,1],[2,1,4,2],[1,1,3,1],[0,2,2,0]],[[1,2,1,2],[2,1,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,1,1],[2,1,3,2],[1,1,4,1],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[1,1,3,1],[0,2,1,1]],[[1,2,1,1],[2,1,4,2],[1,1,3,1],[0,2,1,1]],[[1,2,1,2],[2,1,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,1,1],[2,1,3,2],[1,1,3,0],[0,2,2,2]],[[1,2,1,1],[2,1,3,2],[1,1,3,0],[0,2,3,1]],[[1,2,1,1],[2,1,3,2],[1,1,3,0],[0,3,2,1]],[[1,2,1,1],[2,1,3,2],[1,1,4,0],[0,2,2,1]],[[1,2,1,1],[2,1,3,3],[1,1,3,0],[0,2,2,1]],[[1,2,1,1],[2,1,4,2],[1,1,3,0],[0,2,2,1]],[[1,2,1,2],[2,1,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,1,1],[2,1,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,1,1],[2,1,3,3],[1,1,2,2],[0,2,2,0]],[[1,2,1,1],[2,1,4,2],[1,1,2,2],[0,2,2,0]],[[1,2,1,2],[2,1,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,1,1],[2,1,3,2],[1,1,2,2],[0,2,1,2]],[[1,2,1,1],[2,1,3,2],[1,1,2,3],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[1,1,2,2],[0,2,1,1]],[[1,2,1,1],[2,1,4,2],[1,1,2,2],[0,2,1,1]],[[1,2,1,2],[2,1,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,1,1],[2,1,3,2],[1,1,1,2],[0,2,2,2]],[[1,2,1,1],[2,1,3,2],[1,1,1,2],[0,2,3,1]],[[1,2,1,1],[2,1,3,2],[1,1,1,2],[0,3,2,1]],[[1,2,1,1],[2,1,3,2],[1,1,1,3],[0,2,2,1]],[[1,2,1,1],[2,1,3,3],[1,1,1,2],[0,2,2,1]],[[1,2,1,1],[2,1,4,2],[1,1,1,2],[0,2,2,1]],[[1,2,1,2],[2,1,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,1,1],[2,1,3,2],[1,1,0,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,2],[1,1,0,2],[1,2,3,1]],[[1,2,1,1],[2,1,3,2],[1,1,0,2],[1,3,2,1]],[[1,2,1,1],[2,1,3,2],[1,1,0,2],[2,2,2,1]],[[1,2,1,1],[2,1,3,2],[1,1,0,3],[1,2,2,1]],[[1,2,1,1],[2,1,3,3],[1,1,0,2],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[1,1,0,2],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[1,1,0,2],[1,2,2,1]],[[1,0,2,2],[0,3,0,2],[2,2,2,2],[1,2,2,1]],[[1,0,2,1],[0,3,0,3],[2,2,2,2],[1,2,2,1]],[[1,0,2,1],[0,3,0,2],[2,2,2,3],[1,2,2,1]],[[1,0,2,1],[0,3,0,2],[2,2,2,2],[2,2,2,1]],[[1,0,2,1],[0,3,0,2],[2,2,2,2],[1,3,2,1]],[[1,0,2,1],[0,3,0,2],[2,2,2,2],[1,2,3,1]],[[1,0,2,1],[0,3,0,2],[2,2,2,2],[1,2,2,2]],[[1,0,2,1],[0,3,0,2],[2,2,4,1],[1,2,2,1]],[[1,0,2,1],[0,3,0,2],[2,2,3,1],[2,2,2,1]],[[1,0,2,1],[0,3,0,2],[2,2,3,1],[1,3,2,1]],[[1,0,2,1],[0,3,0,2],[2,2,3,1],[1,2,3,1]],[[1,0,2,1],[0,3,0,2],[2,2,3,1],[1,2,2,2]],[[1,0,2,2],[0,3,0,2],[2,2,3,2],[1,2,1,1]],[[1,0,2,1],[0,3,0,3],[2,2,3,2],[1,2,1,1]],[[1,0,2,1],[0,3,0,2],[2,2,4,2],[1,2,1,1]],[[1,0,2,1],[0,3,0,2],[2,2,3,3],[1,2,1,1]],[[1,0,2,1],[0,3,0,2],[2,2,3,2],[1,2,1,2]],[[1,0,2,2],[0,3,0,2],[2,2,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,0,3],[2,2,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,0,2],[2,2,4,2],[1,2,2,0]],[[1,0,2,1],[0,3,0,2],[2,2,3,3],[1,2,2,0]],[[1,0,2,1],[0,3,0,2],[2,2,3,2],[2,2,2,0]],[[1,0,2,1],[0,3,0,2],[2,2,3,2],[1,3,2,0]],[[1,0,2,1],[0,3,0,2],[2,2,3,2],[1,2,3,0]],[[1,0,2,2],[0,3,0,2],[2,3,1,2],[1,2,2,1]],[[1,0,2,1],[0,3,0,3],[2,3,1,2],[1,2,2,1]],[[1,0,2,1],[0,3,0,2],[2,4,1,2],[1,2,2,1]],[[1,0,2,1],[0,3,0,2],[2,3,1,3],[1,2,2,1]],[[1,0,2,1],[0,3,0,2],[2,3,1,2],[2,2,2,1]],[[1,0,2,1],[0,3,0,2],[2,3,1,2],[1,3,2,1]],[[1,0,2,1],[0,3,0,2],[2,3,1,2],[1,2,3,1]],[[1,0,2,1],[0,3,0,2],[2,3,1,2],[1,2,2,2]],[[1,0,2,1],[0,3,0,2],[2,4,2,1],[1,2,2,1]],[[1,0,2,1],[0,3,0,2],[2,3,2,1],[2,2,2,1]],[[1,0,2,1],[0,3,0,2],[2,3,2,1],[1,3,2,1]],[[1,0,2,1],[0,3,0,2],[2,3,2,1],[1,2,3,1]],[[1,0,2,1],[0,3,0,2],[2,3,2,1],[1,2,2,2]],[[1,0,2,2],[0,3,0,2],[2,3,2,2],[1,1,2,1]],[[1,0,2,1],[0,3,0,3],[2,3,2,2],[1,1,2,1]],[[1,0,2,1],[0,3,0,2],[2,3,2,3],[1,1,2,1]],[[1,0,2,1],[0,3,0,2],[2,3,2,2],[1,1,3,1]],[[1,0,2,1],[0,3,0,2],[2,3,2,2],[1,1,2,2]],[[1,0,2,1],[0,3,0,2],[2,4,2,2],[1,2,2,0]],[[1,0,2,1],[0,3,0,2],[2,3,2,2],[2,2,2,0]],[[1,0,2,1],[0,3,0,2],[2,3,2,2],[1,3,2,0]],[[1,0,2,1],[0,3,0,2],[2,3,2,2],[1,2,3,0]],[[1,0,2,1],[0,3,0,2],[2,4,3,1],[1,1,2,1]],[[1,0,2,1],[0,3,0,2],[2,3,4,1],[1,1,2,1]],[[1,0,2,1],[0,3,0,2],[2,3,3,1],[1,1,3,1]],[[1,0,2,1],[0,3,0,2],[2,3,3,1],[1,1,2,2]],[[1,0,2,1],[0,3,0,2],[2,4,3,1],[1,2,1,1]],[[1,0,2,1],[0,3,0,2],[2,3,4,1],[1,2,1,1]],[[1,0,2,1],[0,3,0,2],[2,3,3,1],[2,2,1,1]],[[1,0,2,1],[0,3,0,2],[2,3,3,1],[1,3,1,1]],[[1,0,2,2],[0,3,0,2],[2,3,3,2],[1,1,1,1]],[[1,0,2,1],[0,3,0,3],[2,3,3,2],[1,1,1,1]],[[1,0,2,1],[0,3,0,2],[2,4,3,2],[1,1,1,1]],[[1,0,2,1],[0,3,0,2],[2,3,4,2],[1,1,1,1]],[[1,0,2,1],[0,3,0,2],[2,3,3,3],[1,1,1,1]],[[1,0,2,1],[0,3,0,2],[2,3,3,2],[1,1,1,2]],[[1,0,2,2],[0,3,0,2],[2,3,3,2],[1,1,2,0]],[[1,0,2,1],[0,3,0,3],[2,3,3,2],[1,1,2,0]],[[1,0,2,1],[0,3,0,2],[2,4,3,2],[1,1,2,0]],[[1,0,2,1],[0,3,0,2],[2,3,4,2],[1,1,2,0]],[[1,0,2,1],[0,3,0,2],[2,3,3,3],[1,1,2,0]],[[1,0,2,1],[0,3,0,2],[2,3,3,2],[1,1,3,0]],[[1,0,2,2],[0,3,0,2],[2,3,3,2],[1,2,0,1]],[[1,0,2,1],[0,3,0,3],[2,3,3,2],[1,2,0,1]],[[1,0,2,1],[0,3,0,2],[2,4,3,2],[1,2,0,1]],[[1,0,2,1],[0,3,0,2],[2,3,4,2],[1,2,0,1]],[[1,0,2,1],[0,3,0,2],[2,3,3,3],[1,2,0,1]],[[1,0,2,1],[0,3,0,2],[2,3,3,2],[2,2,0,1]],[[1,0,2,1],[0,3,0,2],[2,3,3,2],[1,3,0,1]],[[1,0,2,1],[0,3,0,2],[2,3,3,2],[1,2,0,2]],[[1,0,2,2],[0,3,0,2],[2,3,3,2],[1,2,1,0]],[[1,0,2,1],[0,3,0,3],[2,3,3,2],[1,2,1,0]],[[1,0,2,1],[0,3,0,2],[2,4,3,2],[1,2,1,0]],[[1,0,2,1],[0,3,0,2],[2,3,4,2],[1,2,1,0]],[[1,0,2,1],[0,3,0,2],[2,3,3,3],[1,2,1,0]],[[1,0,2,1],[0,3,0,2],[2,3,3,2],[2,2,1,0]],[[1,0,2,1],[0,3,0,2],[2,3,3,2],[1,3,1,0]],[[1,0,2,1],[0,3,1,0],[2,4,3,1],[1,2,2,1]],[[1,0,2,1],[0,3,1,0],[2,3,3,1],[2,2,2,1]],[[1,0,2,1],[0,3,1,0],[2,3,3,1],[1,3,2,1]],[[1,0,2,1],[0,3,1,0],[2,3,3,1],[1,2,3,1]],[[1,0,2,1],[0,3,1,0],[2,3,3,1],[1,2,2,2]],[[1,0,2,1],[0,3,1,0],[2,4,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,1,0],[2,3,3,2],[2,2,2,0]],[[1,0,2,1],[0,3,1,0],[2,3,3,2],[1,3,2,0]],[[1,0,2,1],[0,3,1,0],[2,3,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,3,2],[1,0,3,3],[0,2,2,0]],[[1,0,2,2],[0,3,1,2],[2,3,0,2],[1,2,2,1]],[[1,0,2,1],[0,3,1,3],[2,3,0,2],[1,2,2,1]],[[1,0,2,1],[0,3,1,2],[2,4,0,2],[1,2,2,1]],[[1,0,2,1],[0,3,1,2],[2,3,0,3],[1,2,2,1]],[[1,0,2,1],[0,3,1,2],[2,3,0,2],[2,2,2,1]],[[1,0,2,1],[0,3,1,2],[2,3,0,2],[1,3,2,1]],[[1,0,2,1],[0,3,1,2],[2,3,0,2],[1,2,3,1]],[[1,0,2,1],[0,3,1,2],[2,3,0,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,3],[1,0,3,2],[0,2,2,0]],[[1,2,1,1],[2,1,4,2],[1,0,3,2],[0,2,2,0]],[[1,2,1,2],[2,1,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,1,1],[2,1,3,2],[1,0,3,2],[0,2,1,2]],[[1,2,1,1],[2,1,3,2],[1,0,3,3],[0,2,1,1]],[[1,2,1,1],[2,1,3,3],[1,0,3,2],[0,2,1,1]],[[1,2,1,1],[2,1,4,2],[1,0,3,2],[0,2,1,1]],[[1,2,1,2],[2,1,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,1,1],[2,1,3,2],[1,0,3,2],[0,1,2,2]],[[1,2,1,1],[2,1,3,2],[1,0,3,3],[0,1,2,1]],[[1,2,1,1],[2,1,3,3],[1,0,3,2],[0,1,2,1]],[[1,2,1,1],[2,1,4,2],[1,0,3,2],[0,1,2,1]],[[1,2,1,2],[2,1,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,1,1],[2,1,3,2],[1,0,3,1],[1,2,3,0]],[[1,2,1,1],[2,1,3,2],[1,0,3,1],[1,3,2,0]],[[1,2,1,1],[2,1,3,2],[1,0,3,1],[2,2,2,0]],[[1,2,1,1],[2,1,3,2],[1,0,4,1],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[1,0,3,1],[1,2,2,0]],[[1,2,1,1],[2,1,4,2],[1,0,3,1],[1,2,2,0]],[[1,2,1,2],[2,1,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,1,1],[2,1,3,2],[1,0,4,1],[1,2,1,1]],[[1,2,1,1],[2,1,3,3],[1,0,3,1],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[1,0,3,1],[1,2,1,1]],[[1,2,1,2],[2,1,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,1,1],[2,1,3,2],[1,0,3,0],[1,2,2,2]],[[1,2,1,1],[2,1,3,2],[1,0,3,0],[1,2,3,1]],[[1,2,1,1],[2,1,3,2],[1,0,3,0],[1,3,2,1]],[[1,2,1,1],[2,1,3,2],[1,0,3,0],[2,2,2,1]],[[1,2,1,1],[2,1,3,2],[1,0,4,0],[1,2,2,1]],[[1,2,1,1],[2,1,3,3],[1,0,3,0],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[1,0,3,0],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,1,1],[2,1,3,2],[1,0,2,3],[1,2,2,0]],[[1,0,2,1],[0,3,2,0],[2,2,2,3],[1,2,2,1]],[[1,0,2,1],[0,3,2,0],[2,2,2,2],[2,2,2,1]],[[1,0,2,1],[0,3,2,0],[2,2,2,2],[1,3,2,1]],[[1,0,2,1],[0,3,2,0],[2,2,2,2],[1,2,3,1]],[[1,0,2,1],[0,3,2,0],[2,2,2,2],[1,2,2,2]],[[1,0,2,1],[0,3,2,0],[2,2,4,1],[1,2,2,1]],[[1,0,2,1],[0,3,2,0],[2,2,3,1],[2,2,2,1]],[[1,0,2,1],[0,3,2,0],[2,2,3,1],[1,3,2,1]],[[1,0,2,1],[0,3,2,0],[2,2,3,1],[1,2,3,1]],[[1,0,2,1],[0,3,2,0],[2,2,3,1],[1,2,2,2]],[[1,0,2,1],[0,3,2,0],[2,2,4,2],[1,2,1,1]],[[1,0,2,1],[0,3,2,0],[2,2,3,3],[1,2,1,1]],[[1,0,2,1],[0,3,2,0],[2,2,3,2],[1,2,1,2]],[[1,0,2,1],[0,3,2,0],[2,2,4,2],[1,2,2,0]],[[1,0,2,1],[0,3,2,0],[2,2,3,3],[1,2,2,0]],[[1,0,2,1],[0,3,2,0],[2,2,3,2],[2,2,2,0]],[[1,0,2,1],[0,3,2,0],[2,2,3,2],[1,3,2,0]],[[1,0,2,1],[0,3,2,0],[2,2,3,2],[1,2,3,0]],[[1,0,2,1],[0,3,2,0],[2,4,1,2],[1,2,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,1,3],[1,2,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,1,2],[2,2,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,1,2],[1,3,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,1,2],[1,2,3,1]],[[1,0,2,1],[0,3,2,0],[2,3,1,2],[1,2,2,2]],[[1,0,2,1],[0,3,2,0],[2,4,2,1],[1,2,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,2,1],[2,2,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,2,1],[1,3,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,2,1],[1,2,3,1]],[[1,0,2,1],[0,3,2,0],[2,3,2,1],[1,2,2,2]],[[1,0,2,1],[0,3,2,0],[2,3,2,3],[1,1,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,2,2],[1,1,3,1]],[[1,0,2,1],[0,3,2,0],[2,3,2,2],[1,1,2,2]],[[1,0,2,1],[0,3,2,0],[2,4,2,2],[1,2,2,0]],[[1,0,2,1],[0,3,2,0],[2,3,2,2],[2,2,2,0]],[[1,0,2,1],[0,3,2,0],[2,3,2,2],[1,3,2,0]],[[1,0,2,1],[0,3,2,0],[2,3,2,2],[1,2,3,0]],[[1,0,2,1],[0,3,2,0],[2,4,3,0],[1,2,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,0],[2,2,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,0],[1,3,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,0],[1,2,3,1]],[[1,0,2,1],[0,3,2,0],[2,4,3,1],[1,1,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,4,1],[1,1,2,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,1],[1,1,3,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,1],[1,1,2,2]],[[1,0,2,1],[0,3,2,0],[2,4,3,1],[1,2,1,1]],[[1,0,2,1],[0,3,2,0],[2,3,4,1],[1,2,1,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,1],[2,2,1,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,1],[1,3,1,1]],[[1,0,2,1],[0,3,2,0],[2,4,3,2],[1,1,1,1]],[[1,0,2,1],[0,3,2,0],[2,3,4,2],[1,1,1,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,3],[1,1,1,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,2],[1,1,1,2]],[[1,0,2,1],[0,3,2,0],[2,4,3,2],[1,1,2,0]],[[1,0,2,1],[0,3,2,0],[2,3,4,2],[1,1,2,0]],[[1,0,2,1],[0,3,2,0],[2,3,3,3],[1,1,2,0]],[[1,0,2,1],[0,3,2,0],[2,3,3,2],[1,1,3,0]],[[1,0,2,1],[0,3,2,0],[2,4,3,2],[1,2,0,1]],[[1,0,2,1],[0,3,2,0],[2,3,4,2],[1,2,0,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,3],[1,2,0,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,2],[1,3,0,1]],[[1,0,2,1],[0,3,2,0],[2,3,3,2],[1,2,0,2]],[[1,0,2,1],[0,3,2,0],[2,4,3,2],[1,2,1,0]],[[1,0,2,1],[0,3,2,0],[2,3,4,2],[1,2,1,0]],[[1,0,2,1],[0,3,2,0],[2,3,3,3],[1,2,1,0]],[[1,0,2,1],[0,3,2,0],[2,3,3,2],[2,2,1,0]],[[1,0,2,1],[0,3,2,0],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,1,3,3],[1,0,2,2],[1,2,2,0]],[[1,2,1,1],[2,1,4,2],[1,0,2,2],[1,2,2,0]],[[1,2,1,2],[2,1,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,2],[1,0,2,2],[1,2,1,2]],[[1,2,1,1],[2,1,3,2],[1,0,2,3],[1,2,1,1]],[[1,2,1,1],[2,1,3,3],[1,0,2,2],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[1,0,2,2],[1,2,1,1]],[[1,0,2,1],[0,3,2,1],[2,2,4,0],[1,2,2,1]],[[1,0,2,1],[0,3,2,1],[2,2,3,0],[2,2,2,1]],[[1,0,2,1],[0,3,2,1],[2,2,3,0],[1,3,2,1]],[[1,0,2,1],[0,3,2,1],[2,2,3,0],[1,2,3,1]],[[1,0,2,1],[0,3,2,1],[2,2,3,0],[1,2,2,2]],[[1,0,2,1],[0,3,2,1],[2,2,4,1],[1,2,2,0]],[[1,0,2,1],[0,3,2,1],[2,2,3,1],[2,2,2,0]],[[1,0,2,1],[0,3,2,1],[2,2,3,1],[1,3,2,0]],[[1,0,2,1],[0,3,2,1],[2,2,3,1],[1,2,3,0]],[[1,2,1,2],[2,1,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,1,1],[2,1,3,2],[1,0,2,2],[0,2,2,2]],[[1,2,1,1],[2,1,3,2],[1,0,2,2],[0,2,3,1]],[[1,2,1,1],[2,1,3,2],[1,0,2,3],[0,2,2,1]],[[1,2,1,1],[2,1,3,3],[1,0,2,2],[0,2,2,1]],[[1,2,1,1],[2,1,4,2],[1,0,2,2],[0,2,2,1]],[[1,0,2,1],[0,3,2,1],[2,4,2,0],[1,2,2,1]],[[1,0,2,1],[0,3,2,1],[2,3,2,0],[2,2,2,1]],[[1,0,2,1],[0,3,2,1],[2,3,2,0],[1,3,2,1]],[[1,0,2,1],[0,3,2,1],[2,3,2,0],[1,2,3,1]],[[1,0,2,1],[0,3,2,1],[2,3,2,0],[1,2,2,2]],[[1,0,2,1],[0,3,2,1],[2,4,2,1],[1,2,2,0]],[[1,0,2,1],[0,3,2,1],[2,3,2,1],[2,2,2,0]],[[1,0,2,1],[0,3,2,1],[2,3,2,1],[1,3,2,0]],[[1,0,2,1],[0,3,2,1],[2,3,2,1],[1,2,3,0]],[[1,2,1,2],[2,1,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,1,1],[2,1,3,2],[1,0,1,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,2],[1,0,1,2],[1,2,3,1]],[[1,2,1,1],[2,1,3,2],[1,0,1,2],[1,3,2,1]],[[1,2,1,1],[2,1,3,2],[1,0,1,2],[2,2,2,1]],[[1,2,1,1],[2,1,3,2],[1,0,1,3],[1,2,2,1]],[[1,0,2,1],[0,3,2,1],[2,4,3,0],[1,1,2,1]],[[1,0,2,1],[0,3,2,1],[2,3,4,0],[1,1,2,1]],[[1,0,2,1],[0,3,2,1],[2,3,3,0],[1,1,3,1]],[[1,0,2,1],[0,3,2,1],[2,3,3,0],[1,1,2,2]],[[1,0,2,1],[0,3,2,1],[2,4,3,0],[1,2,1,1]],[[1,0,2,1],[0,3,2,1],[2,3,4,0],[1,2,1,1]],[[1,0,2,1],[0,3,2,1],[2,3,3,0],[2,2,1,1]],[[1,0,2,1],[0,3,2,1],[2,3,3,0],[1,3,1,1]],[[1,0,2,1],[0,3,2,1],[2,4,3,1],[1,1,2,0]],[[1,0,2,1],[0,3,2,1],[2,3,4,1],[1,1,2,0]],[[1,0,2,1],[0,3,2,1],[2,3,3,1],[1,1,3,0]],[[1,0,2,1],[0,3,2,1],[2,4,3,1],[1,2,0,1]],[[1,0,2,1],[0,3,2,1],[2,3,4,1],[1,2,0,1]],[[1,0,2,1],[0,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,0,2,1],[0,3,2,1],[2,3,3,1],[1,3,0,1]],[[1,0,2,1],[0,3,2,1],[2,4,3,1],[1,2,1,0]],[[1,0,2,1],[0,3,2,1],[2,3,4,1],[1,2,1,0]],[[1,0,2,1],[0,3,2,1],[2,3,3,1],[2,2,1,0]],[[1,0,2,1],[0,3,2,1],[2,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,1,3,3],[1,0,1,2],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[1,0,1,2],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[1,0,1,2],[1,2,2,1]],[[1,2,1,1],[2,1,3,3],[0,3,3,1],[1,2,0,0]],[[1,2,1,1],[2,1,4,2],[0,3,3,1],[1,2,0,0]],[[1,2,1,2],[2,1,3,2],[0,3,3,1],[1,2,0,0]],[[1,0,2,2],[0,3,2,2],[1,0,3,2],[1,2,2,1]],[[1,0,2,1],[0,3,2,3],[1,0,3,2],[1,2,2,1]],[[1,0,2,1],[0,3,2,2],[1,0,3,3],[1,2,2,1]],[[1,0,2,1],[0,3,2,2],[1,0,3,2],[1,2,3,1]],[[1,0,2,1],[0,3,2,2],[1,0,3,2],[1,2,2,2]],[[1,0,2,2],[0,3,2,2],[1,1,2,2],[1,2,2,1]],[[1,0,2,1],[0,3,2,3],[1,1,2,2],[1,2,2,1]],[[1,0,2,1],[0,3,2,2],[1,1,2,3],[1,2,2,1]],[[1,0,2,1],[0,3,2,2],[1,1,2,2],[2,2,2,1]],[[1,0,2,1],[0,3,2,2],[1,1,2,2],[1,3,2,1]],[[1,0,2,1],[0,3,2,2],[1,1,2,2],[1,2,3,1]],[[1,0,2,1],[0,3,2,2],[1,1,2,2],[1,2,2,2]],[[1,0,2,1],[0,3,2,2],[1,1,4,1],[1,2,2,1]],[[1,0,2,1],[0,3,2,2],[1,1,3,1],[2,2,2,1]],[[1,0,2,1],[0,3,2,2],[1,1,3,1],[1,3,2,1]],[[1,0,2,1],[0,3,2,2],[1,1,3,1],[1,2,3,1]],[[1,0,2,1],[0,3,2,2],[1,1,3,1],[1,2,2,2]],[[1,0,2,2],[0,3,2,2],[1,1,3,2],[1,2,1,1]],[[1,0,2,1],[0,3,2,3],[1,1,3,2],[1,2,1,1]],[[1,0,2,1],[0,3,2,2],[1,1,4,2],[1,2,1,1]],[[1,0,2,1],[0,3,2,2],[1,1,3,3],[1,2,1,1]],[[1,0,2,1],[0,3,2,2],[1,1,3,2],[1,2,1,2]],[[1,0,2,2],[0,3,2,2],[1,1,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,2,3],[1,1,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,2,2],[1,1,4,2],[1,2,2,0]],[[1,0,2,1],[0,3,2,2],[1,1,3,3],[1,2,2,0]],[[1,0,2,1],[0,3,2,2],[1,1,3,2],[2,2,2,0]],[[1,0,2,1],[0,3,2,2],[1,1,3,2],[1,3,2,0]],[[1,0,2,1],[0,3,2,2],[1,1,3,2],[1,2,3,0]],[[1,0,2,2],[0,3,2,2],[1,2,2,2],[1,1,2,1]],[[1,0,2,1],[0,3,2,3],[1,2,2,2],[1,1,2,1]],[[1,0,2,1],[0,3,2,2],[1,2,2,3],[1,1,2,1]],[[1,0,2,1],[0,3,2,2],[1,2,2,2],[1,1,3,1]],[[1,0,2,1],[0,3,2,2],[1,2,2,2],[1,1,2,2]],[[1,0,2,1],[0,3,2,2],[1,2,4,1],[1,1,2,1]],[[1,0,2,1],[0,3,2,2],[1,2,3,1],[1,1,3,1]],[[1,0,2,1],[0,3,2,2],[1,2,3,1],[1,1,2,2]],[[1,0,2,2],[0,3,2,2],[1,2,3,2],[1,0,2,1]],[[1,0,2,1],[0,3,2,3],[1,2,3,2],[1,0,2,1]],[[1,0,2,1],[0,3,2,2],[1,2,4,2],[1,0,2,1]],[[1,0,2,1],[0,3,2,2],[1,2,3,3],[1,0,2,1]],[[1,0,2,1],[0,3,2,2],[1,2,3,2],[1,0,2,2]],[[1,0,2,2],[0,3,2,2],[1,2,3,2],[1,1,1,1]],[[1,0,2,1],[0,3,2,3],[1,2,3,2],[1,1,1,1]],[[1,0,2,1],[0,3,2,2],[1,2,4,2],[1,1,1,1]],[[1,0,2,1],[0,3,2,2],[1,2,3,3],[1,1,1,1]],[[1,0,2,1],[0,3,2,2],[1,2,3,2],[1,1,1,2]],[[1,0,2,2],[0,3,2,2],[1,2,3,2],[1,1,2,0]],[[1,0,2,1],[0,3,2,3],[1,2,3,2],[1,1,2,0]],[[1,0,2,1],[0,3,2,2],[1,2,4,2],[1,1,2,0]],[[1,0,2,1],[0,3,2,2],[1,2,3,3],[1,1,2,0]],[[1,0,2,1],[0,3,2,2],[1,2,3,2],[1,1,3,0]],[[1,0,2,2],[0,3,2,2],[1,2,3,2],[1,2,0,1]],[[1,0,2,1],[0,3,2,3],[1,2,3,2],[1,2,0,1]],[[1,0,2,1],[0,3,2,2],[1,2,4,2],[1,2,0,1]],[[1,0,2,1],[0,3,2,2],[1,2,3,3],[1,2,0,1]],[[1,0,2,1],[0,3,2,2],[1,2,3,2],[1,2,0,2]],[[1,0,2,2],[0,3,2,2],[1,2,3,2],[1,2,1,0]],[[1,0,2,1],[0,3,2,3],[1,2,3,2],[1,2,1,0]],[[1,0,2,1],[0,3,2,2],[1,2,4,2],[1,2,1,0]],[[1,0,2,1],[0,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[0,3,2,1],[1,2,1,0]],[[1,2,1,1],[2,1,4,2],[0,3,2,1],[1,2,1,0]],[[1,0,2,2],[0,3,2,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[0,3,2,3],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[0,3,2,2],[2,0,2,3],[1,2,2,1]],[[1,0,2,1],[0,3,2,2],[2,0,2,2],[2,2,2,1]],[[1,0,2,1],[0,3,2,2],[2,0,2,2],[1,3,2,1]],[[1,0,2,1],[0,3,2,2],[2,0,2,2],[1,2,3,1]],[[1,0,2,1],[0,3,2,2],[2,0,2,2],[1,2,2,2]],[[1,0,2,1],[0,3,2,2],[2,0,4,1],[1,2,2,1]],[[1,0,2,1],[0,3,2,2],[2,0,3,1],[2,2,2,1]],[[1,0,2,1],[0,3,2,2],[2,0,3,1],[1,3,2,1]],[[1,0,2,1],[0,3,2,2],[2,0,3,1],[1,2,3,1]],[[1,0,2,1],[0,3,2,2],[2,0,3,1],[1,2,2,2]],[[1,0,2,2],[0,3,2,2],[2,0,3,2],[0,2,2,1]],[[1,0,2,1],[0,3,2,3],[2,0,3,2],[0,2,2,1]],[[1,0,2,1],[0,3,2,2],[2,0,3,3],[0,2,2,1]],[[1,0,2,1],[0,3,2,2],[2,0,3,2],[0,2,3,1]],[[1,0,2,1],[0,3,2,2],[2,0,3,2],[0,2,2,2]],[[1,0,2,2],[0,3,2,2],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[0,3,2,3],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[0,3,2,2],[2,0,4,2],[1,2,1,1]],[[1,0,2,1],[0,3,2,2],[2,0,3,3],[1,2,1,1]],[[1,0,2,1],[0,3,2,2],[2,0,3,2],[1,2,1,2]],[[1,0,2,2],[0,3,2,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,2,3],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,2,2],[2,0,4,2],[1,2,2,0]],[[1,0,2,1],[0,3,2,2],[2,0,3,3],[1,2,2,0]],[[1,0,2,1],[0,3,2,2],[2,0,3,2],[2,2,2,0]],[[1,0,2,1],[0,3,2,2],[2,0,3,2],[1,3,2,0]],[[1,0,2,1],[0,3,2,2],[2,0,3,2],[1,2,3,0]],[[1,0,2,2],[0,3,2,2],[2,1,2,2],[0,2,2,1]],[[1,0,2,1],[0,3,2,3],[2,1,2,2],[0,2,2,1]],[[1,0,2,1],[0,3,2,2],[2,1,2,3],[0,2,2,1]],[[1,0,2,1],[0,3,2,2],[2,1,2,2],[0,3,2,1]],[[1,0,2,1],[0,3,2,2],[2,1,2,2],[0,2,3,1]],[[1,0,2,1],[0,3,2,2],[2,1,2,2],[0,2,2,2]],[[1,0,2,1],[0,3,2,2],[2,1,4,1],[0,2,2,1]],[[1,0,2,1],[0,3,2,2],[2,1,3,1],[0,3,2,1]],[[1,0,2,1],[0,3,2,2],[2,1,3,1],[0,2,3,1]],[[1,0,2,1],[0,3,2,2],[2,1,3,1],[0,2,2,2]],[[1,0,2,2],[0,3,2,2],[2,1,3,2],[0,2,1,1]],[[1,0,2,1],[0,3,2,3],[2,1,3,2],[0,2,1,1]],[[1,0,2,1],[0,3,2,2],[2,1,4,2],[0,2,1,1]],[[1,0,2,1],[0,3,2,2],[2,1,3,3],[0,2,1,1]],[[1,0,2,1],[0,3,2,2],[2,1,3,2],[0,2,1,2]],[[1,0,2,2],[0,3,2,2],[2,1,3,2],[0,2,2,0]],[[1,0,2,1],[0,3,2,3],[2,1,3,2],[0,2,2,0]],[[1,0,2,1],[0,3,2,2],[2,1,4,2],[0,2,2,0]],[[1,0,2,1],[0,3,2,2],[2,1,3,3],[0,2,2,0]],[[1,0,2,1],[0,3,2,2],[2,1,3,2],[0,3,2,0]],[[1,0,2,1],[0,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,1,2],[2,1,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[0,3,2,1],[1,2,0,1]],[[1,2,1,1],[2,1,4,2],[0,3,2,1],[1,2,0,1]],[[1,2,1,2],[2,1,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,1,1],[2,1,3,3],[0,3,2,1],[1,1,2,0]],[[1,0,2,2],[0,3,2,2],[2,2,2,2],[0,1,2,1]],[[1,0,2,1],[0,3,2,3],[2,2,2,2],[0,1,2,1]],[[1,0,2,1],[0,3,2,2],[2,2,2,3],[0,1,2,1]],[[1,0,2,1],[0,3,2,2],[2,2,2,2],[0,1,3,1]],[[1,0,2,1],[0,3,2,2],[2,2,2,2],[0,1,2,2]],[[1,0,2,2],[0,3,2,2],[2,2,2,2],[1,0,2,1]],[[1,0,2,1],[0,3,2,3],[2,2,2,2],[1,0,2,1]],[[1,0,2,1],[0,3,2,2],[2,2,2,3],[1,0,2,1]],[[1,0,2,1],[0,3,2,2],[2,2,2,2],[1,0,3,1]],[[1,0,2,1],[0,3,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,1,1],[2,1,4,2],[0,3,2,1],[1,1,2,0]],[[1,2,1,2],[2,1,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,1,1],[2,1,3,3],[0,3,2,1],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[0,3,2,1],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[0,3,2,1],[1,1,1,1]],[[1,0,2,1],[0,3,2,2],[2,2,4,1],[0,1,2,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,1],[0,1,3,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,1],[0,1,2,2]],[[1,0,2,1],[0,3,2,2],[2,2,4,1],[1,0,2,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,1],[1,0,3,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,1],[1,0,2,2]],[[1,0,2,2],[0,3,2,2],[2,2,3,2],[0,0,2,1]],[[1,0,2,1],[0,3,2,3],[2,2,3,2],[0,0,2,1]],[[1,0,2,1],[0,3,2,2],[2,2,4,2],[0,0,2,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,3],[0,0,2,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,2],[0,0,2,2]],[[1,0,2,2],[0,3,2,2],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[0,3,2,3],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[0,3,2,2],[2,2,4,2],[0,1,1,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,3],[0,1,1,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,2],[0,1,1,2]],[[1,0,2,2],[0,3,2,2],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[0,3,2,3],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[0,3,2,2],[2,2,4,2],[0,1,2,0]],[[1,0,2,1],[0,3,2,2],[2,2,3,3],[0,1,2,0]],[[1,0,2,1],[0,3,2,2],[2,2,3,2],[0,1,3,0]],[[1,0,2,2],[0,3,2,2],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[0,3,2,3],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[0,3,2,2],[2,2,4,2],[0,2,0,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,3],[0,2,0,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,2],[0,2,0,2]],[[1,0,2,2],[0,3,2,2],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[0,3,2,3],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[0,3,2,2],[2,2,4,2],[0,2,1,0]],[[1,0,2,1],[0,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,3,3],[0,3,2,0],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[0,3,2,0],[1,2,1,1]],[[1,2,1,2],[2,1,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,1,1],[2,1,3,3],[0,3,2,0],[1,1,2,1]],[[1,2,1,1],[2,1,4,2],[0,3,2,0],[1,1,2,1]],[[1,2,1,2],[2,1,3,2],[0,3,2,0],[1,1,2,1]],[[1,0,2,2],[0,3,2,2],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[0,3,2,3],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[0,3,2,2],[2,2,4,2],[1,0,1,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,3],[1,0,1,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,2],[1,0,1,2]],[[1,0,2,2],[0,3,2,2],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[0,3,2,3],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[0,3,2,2],[2,2,4,2],[1,0,2,0]],[[1,0,2,1],[0,3,2,2],[2,2,3,3],[1,0,2,0]],[[1,0,2,1],[0,3,2,2],[2,2,3,2],[1,0,3,0]],[[1,0,2,2],[0,3,2,2],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[0,3,2,3],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[0,3,2,2],[2,2,4,2],[1,1,0,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,3],[1,1,0,1]],[[1,0,2,1],[0,3,2,2],[2,2,3,2],[1,1,0,2]],[[1,0,2,2],[0,3,2,2],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[0,3,2,3],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[0,3,2,2],[2,2,4,2],[1,1,1,0]],[[1,0,2,1],[0,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,3,2],[0,3,1,3],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[0,3,1,2],[1,2,1,0]],[[1,2,1,1],[2,1,4,2],[0,3,1,2],[1,2,1,0]],[[1,2,1,2],[2,1,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,1,1],[2,1,3,2],[0,3,1,2],[1,2,0,2]],[[1,2,1,1],[2,1,3,2],[0,3,1,3],[1,2,0,1]],[[1,2,1,1],[2,1,3,3],[0,3,1,2],[1,2,0,1]],[[1,2,1,1],[2,1,4,2],[0,3,1,2],[1,2,0,1]],[[1,2,1,2],[2,1,3,2],[0,3,1,2],[1,2,0,1]],[[1,2,1,1],[2,1,3,2],[0,3,1,3],[1,1,2,0]],[[1,2,1,1],[2,1,3,3],[0,3,1,2],[1,1,2,0]],[[1,2,1,1],[2,1,4,2],[0,3,1,2],[1,1,2,0]],[[1,2,1,2],[2,1,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,2],[0,3,1,2],[1,1,1,2]],[[1,2,1,1],[2,1,3,2],[0,3,1,3],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[0,3,1,2],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[0,3,1,2],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[0,3,1,1],[1,2,2,0]],[[1,2,1,1],[2,1,4,2],[0,3,1,1],[1,2,2,0]],[[1,2,1,2],[2,1,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[0,3,1,0],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[0,3,1,0],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,1,1],[2,1,3,2],[0,3,0,3],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[0,3,0,2],[1,2,2,0]],[[1,2,1,1],[2,1,4,2],[0,3,0,2],[1,2,2,0]],[[1,2,1,2],[2,1,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,2],[0,3,0,2],[1,2,1,2]],[[1,2,1,1],[2,1,3,2],[0,3,0,3],[1,2,1,1]],[[1,2,1,1],[2,1,3,3],[0,3,0,2],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[0,3,0,2],[1,2,1,1]],[[1,2,1,2],[2,1,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,1,1],[2,1,3,2],[0,3,0,2],[1,1,2,2]],[[1,2,1,1],[2,1,3,2],[0,3,0,2],[1,1,3,1]],[[1,2,1,1],[2,1,3,2],[0,3,0,3],[1,1,2,1]],[[1,2,1,1],[2,1,3,3],[0,3,0,2],[1,1,2,1]],[[1,2,1,1],[2,1,4,2],[0,3,0,2],[1,1,2,1]],[[1,2,1,2],[2,1,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,1,1],[2,1,3,3],[0,3,0,1],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[0,3,0,1],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[0,3,0,1],[1,2,2,1]],[[1,2,1,1],[2,1,3,2],[0,2,3,3],[1,1,0,1]],[[1,0,2,2],[0,3,2,2],[2,3,3,2],[0,0,1,1]],[[1,0,2,1],[0,3,2,3],[2,3,3,2],[0,0,1,1]],[[1,0,2,1],[0,3,2,2],[2,3,4,2],[0,0,1,1]],[[1,0,2,1],[0,3,2,2],[2,3,3,3],[0,0,1,1]],[[1,0,2,1],[0,3,2,2],[2,3,3,2],[0,0,1,2]],[[1,0,2,2],[0,3,2,2],[2,3,3,2],[0,0,2,0]],[[1,0,2,1],[0,3,2,3],[2,3,3,2],[0,0,2,0]],[[1,0,2,1],[0,3,2,2],[2,3,4,2],[0,0,2,0]],[[1,0,2,1],[0,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,1,3,3],[0,2,3,2],[1,1,0,1]],[[1,2,1,1],[2,1,4,2],[0,2,3,2],[1,1,0,1]],[[1,2,1,2],[2,1,3,2],[0,2,3,2],[1,1,0,1]],[[1,2,1,1],[2,1,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,1,1],[2,1,4,2],[0,2,3,1],[1,2,1,0]],[[1,2,1,2],[2,1,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,1,1],[2,1,3,2],[0,2,4,1],[1,2,0,1]],[[1,2,1,1],[2,1,3,3],[0,2,3,1],[1,2,0,1]],[[1,2,1,1],[2,1,4,2],[0,2,3,1],[1,2,0,1]],[[1,2,1,2],[2,1,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,1,1],[2,1,3,2],[0,2,3,1],[1,1,3,0]],[[1,2,1,1],[2,1,3,2],[0,2,4,1],[1,1,2,0]],[[1,2,1,1],[2,1,3,3],[0,2,3,1],[1,1,2,0]],[[1,2,1,1],[2,1,4,2],[0,2,3,1],[1,1,2,0]],[[1,2,1,2],[2,1,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,1,1],[2,1,3,2],[0,2,4,1],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[0,2,3,1],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[0,2,3,1],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,1,1],[2,1,3,2],[0,2,4,1],[1,0,2,1]],[[1,2,1,1],[2,1,3,3],[0,2,3,1],[1,0,2,1]],[[1,2,1,1],[2,1,4,2],[0,2,3,1],[1,0,2,1]],[[1,2,1,2],[2,1,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,1,1],[2,1,3,2],[0,2,4,0],[1,2,1,1]],[[1,2,1,1],[2,1,3,3],[0,2,3,0],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[0,2,3,0],[1,2,1,1]],[[1,2,1,2],[2,1,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,1,1],[2,1,3,2],[0,2,3,0],[1,1,2,2]],[[1,2,1,1],[2,1,3,2],[0,2,3,0],[1,1,3,1]],[[1,2,1,1],[2,1,3,2],[0,2,4,0],[1,1,2,1]],[[1,2,1,1],[2,1,3,3],[0,2,3,0],[1,1,2,1]],[[1,2,1,1],[2,1,4,2],[0,2,3,0],[1,1,2,1]],[[1,2,1,2],[2,1,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,1,1],[2,1,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,1,1],[2,1,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,1,1],[2,1,4,2],[0,2,2,2],[1,2,1,0]],[[1,2,1,2],[2,1,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,1,1],[2,1,3,2],[0,2,2,2],[1,2,0,2]],[[1,2,1,1],[2,1,3,2],[0,2,2,3],[1,2,0,1]],[[1,2,1,1],[2,1,3,3],[0,2,2,2],[1,2,0,1]],[[1,2,1,1],[2,1,4,2],[0,2,2,2],[1,2,0,1]],[[1,2,1,2],[2,1,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,1,1],[2,1,3,2],[0,2,2,3],[1,1,2,0]],[[1,2,1,1],[2,1,3,3],[0,2,2,2],[1,1,2,0]],[[1,2,1,1],[2,1,4,2],[0,2,2,2],[1,1,2,0]],[[1,2,1,2],[2,1,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,2],[0,2,2,2],[1,1,1,2]],[[1,2,1,1],[2,1,3,2],[0,2,2,3],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[0,2,2,2],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[0,2,2,2],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,1,1],[2,1,3,2],[0,2,2,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[0,2,2,3],[1,0,2,1]],[[1,2,1,1],[2,1,3,3],[0,2,2,2],[1,0,2,1]],[[1,2,1,1],[2,1,4,2],[0,2,2,2],[1,0,2,1]],[[1,2,1,2],[2,1,3,2],[0,2,2,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,0],[2,4,0,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,0],[2,3,0,3],[1,2,2,1]],[[1,0,2,1],[0,3,3,0],[2,3,0,2],[2,2,2,1]],[[1,0,2,1],[0,3,3,0],[2,3,0,2],[1,3,2,1]],[[1,0,2,1],[0,3,3,0],[2,3,0,2],[1,2,3,1]],[[1,0,2,1],[0,3,3,0],[2,3,0,2],[1,2,2,2]],[[1,0,2,1],[0,3,3,0],[2,4,1,1],[1,2,2,1]],[[1,0,2,1],[0,3,3,0],[2,3,1,1],[2,2,2,1]],[[1,0,2,1],[0,3,3,0],[2,3,1,1],[1,3,2,1]],[[1,0,2,1],[0,3,3,0],[2,3,1,1],[1,2,3,1]],[[1,0,2,1],[0,3,3,0],[2,3,1,1],[1,2,2,2]],[[1,0,2,1],[0,3,3,0],[2,4,1,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,0],[2,3,1,2],[2,2,2,0]],[[1,0,2,1],[0,3,3,0],[2,3,1,2],[1,3,2,0]],[[1,0,2,1],[0,3,3,0],[2,3,1,2],[1,2,3,0]],[[1,0,2,1],[0,3,3,0],[2,4,2,1],[1,2,1,1]],[[1,0,2,1],[0,3,3,0],[2,3,2,1],[2,2,1,1]],[[1,0,2,1],[0,3,3,0],[2,3,2,1],[1,3,1,1]],[[1,0,2,1],[0,3,3,0],[2,4,2,2],[1,2,0,1]],[[1,0,2,1],[0,3,3,0],[2,3,2,2],[2,2,0,1]],[[1,0,2,1],[0,3,3,0],[2,3,2,2],[1,3,0,1]],[[1,0,2,1],[0,3,3,0],[2,4,2,2],[1,2,1,0]],[[1,0,2,1],[0,3,3,0],[2,3,2,2],[2,2,1,0]],[[1,0,2,1],[0,3,3,0],[2,3,2,2],[1,3,1,0]],[[1,2,1,1],[2,1,3,2],[0,2,1,2],[1,1,2,2]],[[1,2,1,1],[2,1,3,2],[0,2,1,2],[1,1,3,1]],[[1,2,1,1],[2,1,3,2],[0,2,1,3],[1,1,2,1]],[[1,2,1,1],[2,1,3,3],[0,2,1,2],[1,1,2,1]],[[1,2,1,1],[2,1,4,2],[0,2,1,2],[1,1,2,1]],[[1,2,1,2],[2,1,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,1,1],[2,1,3,2],[0,2,0,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,2],[0,2,0,2],[1,2,3,1]],[[1,2,1,1],[2,1,3,2],[0,2,0,2],[1,3,2,1]],[[1,2,1,1],[2,1,3,2],[0,2,0,2],[2,2,2,1]],[[1,2,1,1],[2,1,3,2],[0,2,0,3],[1,2,2,1]],[[1,2,1,1],[2,1,3,3],[0,2,0,2],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[0,2,0,2],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[0,2,0,2],[1,2,2,1]],[[1,2,1,1],[2,1,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,1,1],[2,1,3,3],[0,1,3,2],[1,1,2,0]],[[1,2,1,1],[2,1,4,2],[0,1,3,2],[1,1,2,0]],[[1,2,1,2],[2,1,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,2],[0,1,3,2],[1,1,1,2]],[[1,2,1,1],[2,1,3,2],[0,1,3,3],[1,1,1,1]],[[1,2,1,1],[2,1,3,3],[0,1,3,2],[1,1,1,1]],[[1,2,1,1],[2,1,4,2],[0,1,3,2],[1,1,1,1]],[[1,2,1,2],[2,1,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,1,1],[2,1,3,2],[0,1,3,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[0,1,3,3],[1,0,2,1]],[[1,2,1,1],[2,1,3,3],[0,1,3,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,1],[1,0,3,3],[1,2,2,1]],[[1,0,2,1],[0,3,3,1],[1,0,3,2],[1,2,3,1]],[[1,0,2,1],[0,3,3,1],[1,0,3,2],[1,2,2,2]],[[1,0,2,1],[0,3,3,1],[1,1,2,3],[1,2,2,1]],[[1,0,2,1],[0,3,3,1],[1,1,2,2],[2,2,2,1]],[[1,0,2,1],[0,3,3,1],[1,1,2,2],[1,3,2,1]],[[1,0,2,1],[0,3,3,1],[1,1,2,2],[1,2,3,1]],[[1,0,2,1],[0,3,3,1],[1,1,2,2],[1,2,2,2]],[[1,0,2,1],[0,3,4,1],[1,1,3,1],[1,2,2,1]],[[1,0,2,1],[0,3,3,1],[1,1,4,1],[1,2,2,1]],[[1,0,2,1],[0,3,3,1],[1,1,3,1],[2,2,2,1]],[[1,0,2,1],[0,3,3,1],[1,1,3,1],[1,3,2,1]],[[1,0,2,1],[0,3,3,1],[1,1,3,1],[1,2,3,1]],[[1,0,2,1],[0,3,3,1],[1,1,3,1],[1,2,2,2]],[[1,0,2,1],[0,3,4,1],[1,1,3,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,1],[1,1,4,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,1],[1,1,3,3],[1,2,1,1]],[[1,0,2,1],[0,3,3,1],[1,1,3,2],[1,2,1,2]],[[1,0,2,1],[0,3,4,1],[1,1,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,1],[1,1,4,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,1],[1,1,3,3],[1,2,2,0]],[[1,0,2,1],[0,3,3,1],[1,1,3,2],[2,2,2,0]],[[1,0,2,1],[0,3,3,1],[1,1,3,2],[1,3,2,0]],[[1,0,2,1],[0,3,3,1],[1,1,3,2],[1,2,3,0]],[[1,0,2,1],[0,3,3,1],[1,2,2,3],[1,1,2,1]],[[1,0,2,1],[0,3,3,1],[1,2,2,2],[1,1,3,1]],[[1,0,2,1],[0,3,3,1],[1,2,2,2],[1,1,2,2]],[[1,0,2,1],[0,3,4,1],[1,2,3,1],[1,1,2,1]],[[1,0,2,1],[0,3,3,1],[1,2,4,1],[1,1,2,1]],[[1,0,2,1],[0,3,3,1],[1,2,3,1],[1,1,3,1]],[[1,0,2,1],[0,3,3,1],[1,2,3,1],[1,1,2,2]],[[1,0,2,1],[0,3,4,1],[1,2,3,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,1],[1,2,4,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,1],[1,2,3,3],[1,0,2,1]],[[1,0,2,1],[0,3,3,1],[1,2,3,2],[1,0,2,2]],[[1,0,2,1],[0,3,4,1],[1,2,3,2],[1,1,1,1]],[[1,0,2,1],[0,3,3,1],[1,2,4,2],[1,1,1,1]],[[1,0,2,1],[0,3,3,1],[1,2,3,3],[1,1,1,1]],[[1,0,2,1],[0,3,3,1],[1,2,3,2],[1,1,1,2]],[[1,0,2,1],[0,3,4,1],[1,2,3,2],[1,1,2,0]],[[1,0,2,1],[0,3,3,1],[1,2,4,2],[1,1,2,0]],[[1,0,2,1],[0,3,3,1],[1,2,3,3],[1,1,2,0]],[[1,0,2,1],[0,3,3,1],[1,2,3,2],[1,1,3,0]],[[1,0,2,1],[0,3,4,1],[1,2,3,2],[1,2,0,1]],[[1,0,2,1],[0,3,3,1],[1,2,4,2],[1,2,0,1]],[[1,0,2,1],[0,3,3,1],[1,2,3,3],[1,2,0,1]],[[1,0,2,1],[0,3,3,1],[1,2,3,2],[1,2,0,2]],[[1,0,2,1],[0,3,4,1],[1,2,3,2],[1,2,1,0]],[[1,0,2,1],[0,3,3,1],[1,2,4,2],[1,2,1,0]],[[1,0,2,1],[0,3,3,1],[1,2,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,4,2],[0,1,3,2],[1,0,2,1]],[[1,2,1,2],[2,1,3,2],[0,1,3,2],[1,0,2,1]],[[1,2,1,1],[2,1,3,2],[0,1,3,1],[1,2,3,0]],[[1,2,1,1],[2,1,3,2],[0,1,3,1],[1,3,2,0]],[[1,2,1,1],[2,1,3,2],[0,1,3,1],[2,2,2,0]],[[1,2,1,1],[2,1,3,2],[0,1,4,1],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[0,1,3,1],[1,2,2,0]],[[1,2,1,1],[2,1,4,2],[0,1,3,1],[1,2,2,0]],[[1,2,1,2],[2,1,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,1,1],[2,1,3,2],[0,1,4,1],[1,2,1,1]],[[1,2,1,1],[2,1,3,3],[0,1,3,1],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[0,1,3,1],[1,2,1,1]],[[1,2,1,2],[2,1,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,1,1],[2,1,3,2],[0,1,3,0],[1,2,2,2]],[[1,2,1,1],[2,1,3,2],[0,1,3,0],[1,2,3,1]],[[1,2,1,1],[2,1,3,2],[0,1,3,0],[1,3,2,1]],[[1,2,1,1],[2,1,3,2],[0,1,3,0],[2,2,2,1]],[[1,2,1,1],[2,1,3,2],[0,1,4,0],[1,2,2,1]],[[1,2,1,1],[2,1,3,3],[0,1,3,0],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[0,1,3,0],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,1,1],[2,1,3,2],[0,1,2,3],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[0,1,2,2],[1,2,2,0]],[[1,2,1,1],[2,1,4,2],[0,1,2,2],[1,2,2,0]],[[1,2,1,2],[2,1,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,2],[0,1,2,2],[1,2,1,2]],[[1,2,1,1],[2,1,3,2],[0,1,2,3],[1,2,1,1]],[[1,2,1,1],[2,1,3,3],[0,1,2,2],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[0,1,2,2],[1,2,1,1]],[[1,2,1,2],[2,1,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,1,1],[2,1,3,2],[0,1,1,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,2],[0,1,1,2],[1,2,3,1]],[[1,0,2,1],[0,3,3,1],[2,0,2,3],[1,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,0,2,2],[2,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,0,2,2],[1,3,2,1]],[[1,0,2,1],[0,3,3,1],[2,0,2,2],[1,2,3,1]],[[1,0,2,1],[0,3,3,1],[2,0,2,2],[1,2,2,2]],[[1,0,2,1],[0,3,4,1],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,0,4,1],[1,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,0,3,1],[2,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,0,3,1],[1,3,2,1]],[[1,0,2,1],[0,3,3,1],[2,0,3,1],[1,2,3,1]],[[1,0,2,1],[0,3,3,1],[2,0,3,1],[1,2,2,2]],[[1,0,2,1],[0,3,3,1],[2,0,3,3],[0,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,0,3,2],[0,2,3,1]],[[1,0,2,1],[0,3,3,1],[2,0,3,2],[0,2,2,2]],[[1,0,2,1],[0,3,4,1],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,1],[2,0,4,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,1],[2,0,3,3],[1,2,1,1]],[[1,0,2,1],[0,3,3,1],[2,0,3,2],[1,2,1,2]],[[1,0,2,1],[0,3,4,1],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,1],[2,0,4,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,1],[2,0,3,3],[1,2,2,0]],[[1,0,2,1],[0,3,3,1],[2,0,3,2],[2,2,2,0]],[[1,0,2,1],[0,3,3,1],[2,0,3,2],[1,3,2,0]],[[1,0,2,1],[0,3,3,1],[2,0,3,2],[1,2,3,0]],[[1,0,2,1],[0,3,3,1],[2,1,2,3],[0,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,1,2,2],[0,3,2,1]],[[1,0,2,1],[0,3,3,1],[2,1,2,2],[0,2,3,1]],[[1,0,2,1],[0,3,3,1],[2,1,2,2],[0,2,2,2]],[[1,0,2,1],[0,3,4,1],[2,1,3,1],[0,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,1,4,1],[0,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,1,3,1],[0,3,2,1]],[[1,0,2,1],[0,3,3,1],[2,1,3,1],[0,2,3,1]],[[1,0,2,1],[0,3,3,1],[2,1,3,1],[0,2,2,2]],[[1,0,2,1],[0,3,4,1],[2,1,3,2],[0,2,1,1]],[[1,0,2,1],[0,3,3,1],[2,1,4,2],[0,2,1,1]],[[1,0,2,1],[0,3,3,1],[2,1,3,3],[0,2,1,1]],[[1,0,2,1],[0,3,3,1],[2,1,3,2],[0,2,1,2]],[[1,0,2,1],[0,3,4,1],[2,1,3,2],[0,2,2,0]],[[1,0,2,1],[0,3,3,1],[2,1,4,2],[0,2,2,0]],[[1,0,2,1],[0,3,3,1],[2,1,3,3],[0,2,2,0]],[[1,0,2,1],[0,3,3,1],[2,1,3,2],[0,3,2,0]],[[1,0,2,1],[0,3,3,1],[2,1,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,3,2],[0,1,1,2],[1,3,2,1]],[[1,2,1,1],[2,1,3,2],[0,1,1,2],[2,2,2,1]],[[1,2,1,1],[2,1,3,2],[0,1,1,3],[1,2,2,1]],[[1,2,1,1],[2,1,3,3],[0,1,1,2],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[0,1,1,2],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[0,1,1,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,2,2,3],[0,1,2,1]],[[1,0,2,1],[0,3,3,1],[2,2,2,2],[0,1,3,1]],[[1,0,2,1],[0,3,3,1],[2,2,2,2],[0,1,2,2]],[[1,0,2,1],[0,3,3,1],[2,2,2,3],[1,0,2,1]],[[1,0,2,1],[0,3,3,1],[2,2,2,2],[1,0,3,1]],[[1,0,2,1],[0,3,3,1],[2,2,2,2],[1,0,2,2]],[[1,0,2,1],[0,3,4,1],[2,2,3,1],[0,1,2,1]],[[1,0,2,1],[0,3,3,1],[2,2,4,1],[0,1,2,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,1],[0,1,3,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,1],[0,1,2,2]],[[1,0,2,1],[0,3,4,1],[2,2,3,1],[1,0,2,1]],[[1,0,2,1],[0,3,3,1],[2,2,4,1],[1,0,2,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,1],[1,0,3,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,1],[1,0,2,2]],[[1,2,1,1],[2,1,3,2],[0,0,3,3],[1,2,2,0]],[[1,2,1,1],[2,1,3,3],[0,0,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,4,2],[0,0,3,2],[1,2,2,0]],[[1,2,1,2],[2,1,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,2],[0,0,3,2],[1,2,1,2]],[[1,2,1,1],[2,1,3,2],[0,0,3,3],[1,2,1,1]],[[1,0,2,1],[0,3,4,1],[2,2,3,2],[0,0,2,1]],[[1,0,2,1],[0,3,3,1],[2,2,4,2],[0,0,2,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,3],[0,0,2,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,2],[0,0,2,2]],[[1,0,2,1],[0,3,4,1],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[0,3,3,1],[2,2,4,2],[0,1,1,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,3],[0,1,1,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,2],[0,1,1,2]],[[1,0,2,1],[0,3,4,1],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[0,3,3,1],[2,2,4,2],[0,1,2,0]],[[1,0,2,1],[0,3,3,1],[2,2,3,3],[0,1,2,0]],[[1,0,2,1],[0,3,3,1],[2,2,3,2],[0,1,3,0]],[[1,0,2,1],[0,3,4,1],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[0,3,3,1],[2,2,4,2],[0,2,0,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,3],[0,2,0,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,2],[0,2,0,2]],[[1,0,2,1],[0,3,4,1],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[0,3,3,1],[2,2,4,2],[0,2,1,0]],[[1,0,2,1],[0,3,3,1],[2,2,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,3,3],[0,0,3,2],[1,2,1,1]],[[1,2,1,1],[2,1,4,2],[0,0,3,2],[1,2,1,1]],[[1,2,1,2],[2,1,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,1,1],[2,1,3,2],[0,0,3,2],[1,1,2,2]],[[1,2,1,1],[2,1,3,2],[0,0,3,3],[1,1,2,1]],[[1,2,1,1],[2,1,3,3],[0,0,3,2],[1,1,2,1]],[[1,0,2,1],[0,3,4,1],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[0,3,3,1],[2,2,4,2],[1,0,1,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,3],[1,0,1,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,2],[1,0,1,2]],[[1,0,2,1],[0,3,4,1],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[0,3,3,1],[2,2,4,2],[1,0,2,0]],[[1,0,2,1],[0,3,3,1],[2,2,3,3],[1,0,2,0]],[[1,0,2,1],[0,3,3,1],[2,2,3,2],[1,0,3,0]],[[1,0,2,1],[0,3,4,1],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[0,3,3,1],[2,2,4,2],[1,1,0,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,3],[1,1,0,1]],[[1,0,2,1],[0,3,3,1],[2,2,3,2],[1,1,0,2]],[[1,0,2,1],[0,3,4,1],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[0,3,3,1],[2,2,4,2],[1,1,1,0]],[[1,0,2,1],[0,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,4,2],[0,0,3,2],[1,1,2,1]],[[1,2,1,2],[2,1,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,1,1],[2,1,3,2],[0,0,2,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,2],[0,0,2,2],[1,2,3,1]],[[1,2,1,1],[2,1,3,2],[0,0,2,3],[1,2,2,1]],[[1,2,1,1],[2,1,3,3],[0,0,2,2],[1,2,2,1]],[[1,2,1,1],[2,1,4,2],[0,0,2,2],[1,2,2,1]],[[1,2,1,2],[2,1,3,2],[0,0,2,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,4,0,1],[1,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,3,0,1],[2,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,3,0,1],[1,3,2,1]],[[1,0,2,1],[0,3,3,1],[2,3,0,1],[1,2,3,1]],[[1,0,2,1],[0,3,3,1],[2,3,0,1],[1,2,2,2]],[[1,0,2,1],[0,3,3,1],[2,4,0,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,1],[2,3,0,2],[2,2,1,1]],[[1,0,2,1],[0,3,3,1],[2,3,0,2],[1,3,1,1]],[[1,0,2,1],[0,3,3,1],[2,4,0,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,1],[2,3,0,2],[2,2,2,0]],[[1,0,2,1],[0,3,3,1],[2,3,0,2],[1,3,2,0]],[[1,0,2,1],[0,3,3,1],[2,3,0,2],[1,2,3,0]],[[1,0,2,1],[0,3,3,1],[2,4,1,0],[1,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,3,1,0],[2,2,2,1]],[[1,0,2,1],[0,3,3,1],[2,3,1,0],[1,3,2,1]],[[1,0,2,1],[0,3,3,1],[2,3,1,0],[1,2,3,1]],[[1,0,2,1],[0,3,3,1],[2,3,1,0],[1,2,2,2]],[[1,0,2,1],[0,3,3,1],[2,4,1,1],[1,2,2,0]],[[1,0,2,1],[0,3,3,1],[2,3,1,1],[2,2,2,0]],[[1,0,2,1],[0,3,3,1],[2,3,1,1],[1,3,2,0]],[[1,0,2,1],[0,3,3,1],[2,3,1,1],[1,2,3,0]],[[1,0,2,1],[0,3,3,1],[2,4,1,2],[1,2,0,1]],[[1,0,2,1],[0,3,3,1],[2,3,1,2],[2,2,0,1]],[[1,0,2,1],[0,3,3,1],[2,3,1,2],[1,3,0,1]],[[1,0,2,1],[0,3,3,1],[2,4,1,2],[1,2,1,0]],[[1,0,2,1],[0,3,3,1],[2,3,1,2],[2,2,1,0]],[[1,0,2,1],[0,3,3,1],[2,3,1,2],[1,3,1,0]],[[1,0,2,1],[0,3,3,1],[2,4,2,0],[1,2,1,1]],[[1,0,2,1],[0,3,3,1],[2,3,2,0],[2,2,1,1]],[[1,0,2,1],[0,3,3,1],[2,3,2,0],[1,3,1,1]],[[1,0,2,1],[0,3,3,1],[2,4,2,1],[1,2,0,1]],[[1,0,2,1],[0,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,0,2,1],[0,3,3,1],[2,3,2,1],[1,3,0,1]],[[1,0,2,1],[0,3,3,1],[2,4,2,1],[1,2,1,0]],[[1,0,2,1],[0,3,3,1],[2,3,2,1],[2,2,1,0]],[[1,0,2,1],[0,3,3,1],[2,3,2,1],[1,3,1,0]],[[1,2,1,1],[2,1,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,1,1],[2,1,3,1],[2,4,3,1],[1,1,0,0]],[[1,2,1,1],[2,1,3,1],[3,3,3,1],[1,1,0,0]],[[1,2,1,1],[3,1,3,1],[2,3,3,1],[1,1,0,0]],[[1,3,1,1],[2,1,3,1],[2,3,3,1],[1,1,0,0]],[[2,2,1,1],[2,1,3,1],[2,3,3,1],[1,1,0,0]],[[1,0,2,1],[0,3,3,1],[2,4,3,0],[1,2,1,0]],[[1,0,2,1],[0,3,3,1],[2,3,3,0],[2,2,1,0]],[[1,0,2,1],[0,3,3,1],[2,3,3,0],[1,3,1,0]],[[1,2,1,1],[2,1,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,1,1],[2,1,3,1],[3,3,3,1],[0,2,0,0]],[[1,2,1,1],[3,1,3,1],[2,3,3,1],[0,2,0,0]],[[1,0,2,1],[0,3,4,1],[2,3,3,2],[0,0,1,1]],[[1,0,2,1],[0,3,3,1],[2,3,4,2],[0,0,1,1]],[[1,0,2,1],[0,3,3,1],[2,3,3,3],[0,0,1,1]],[[1,0,2,1],[0,3,3,1],[2,3,3,2],[0,0,1,2]],[[1,0,2,1],[0,3,4,1],[2,3,3,2],[0,0,2,0]],[[1,0,2,1],[0,3,3,1],[2,3,4,2],[0,0,2,0]],[[1,0,2,1],[0,3,3,1],[2,3,3,3],[0,0,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,3,1],[0,2,0,0]],[[2,2,1,1],[2,1,3,1],[2,3,3,1],[0,2,0,0]],[[1,2,1,1],[2,1,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,1,1],[2,1,3,1],[2,4,3,0],[1,2,0,0]],[[1,2,1,1],[2,1,3,1],[3,3,3,0],[1,2,0,0]],[[1,2,1,1],[3,1,3,1],[2,3,3,0],[1,2,0,0]],[[1,3,1,1],[2,1,3,1],[2,3,3,0],[1,2,0,0]],[[2,2,1,1],[2,1,3,1],[2,3,3,0],[1,2,0,0]],[[1,2,1,1],[2,1,3,1],[2,3,3,0],[2,1,1,0]],[[1,2,1,1],[2,1,3,1],[2,4,3,0],[1,1,1,0]],[[1,2,1,1],[2,1,3,1],[3,3,3,0],[1,1,1,0]],[[1,2,1,1],[3,1,3,1],[2,3,3,0],[1,1,1,0]],[[1,3,1,1],[2,1,3,1],[2,3,3,0],[1,1,1,0]],[[2,2,1,1],[2,1,3,1],[2,3,3,0],[1,1,1,0]],[[1,2,1,1],[2,1,3,1],[2,3,3,0],[2,0,2,0]],[[1,2,1,1],[2,1,3,1],[2,4,3,0],[1,0,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,3,0],[1,0,2,0]],[[1,2,1,1],[3,1,3,1],[2,3,3,0],[1,0,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,3,0],[1,0,2,0]],[[2,2,1,1],[2,1,3,1],[2,3,3,0],[1,0,2,0]],[[1,0,2,2],[0,3,3,2],[0,0,3,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,3],[0,0,3,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[0,0,3,3],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[0,0,3,2],[1,2,3,1]],[[1,0,2,1],[0,3,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,1],[2,3,3,0],[0,3,1,0]],[[1,2,1,1],[2,1,3,1],[2,4,3,0],[0,2,1,0]],[[1,2,1,1],[2,1,3,1],[3,3,3,0],[0,2,1,0]],[[1,2,1,1],[3,1,3,1],[2,3,3,0],[0,2,1,0]],[[1,3,1,1],[2,1,3,1],[2,3,3,0],[0,2,1,0]],[[2,2,1,1],[2,1,3,1],[2,3,3,0],[0,2,1,0]],[[1,2,1,1],[2,1,3,1],[2,4,3,0],[0,1,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,3,0],[0,1,2,0]],[[1,2,1,1],[3,1,3,1],[2,3,3,0],[0,1,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,3,0],[0,1,2,0]],[[2,2,1,1],[2,1,3,1],[2,3,3,0],[0,1,2,0]],[[1,0,2,2],[0,3,3,2],[1,0,2,2],[1,2,2,1]],[[1,0,2,1],[0,3,4,2],[1,0,2,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,3],[1,0,2,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[1,0,2,3],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[1,0,2,2],[1,2,3,1]],[[1,0,2,1],[0,3,3,2],[1,0,2,2],[1,2,2,2]],[[1,0,2,2],[0,3,3,2],[1,0,3,2],[1,1,2,1]],[[1,0,2,1],[0,3,4,2],[1,0,3,2],[1,1,2,1]],[[1,0,2,1],[0,3,3,3],[1,0,3,2],[1,1,2,1]],[[1,0,2,1],[0,3,3,2],[1,0,3,3],[1,1,2,1]],[[1,0,2,1],[0,3,3,2],[1,0,3,2],[1,1,2,2]],[[1,0,2,2],[0,3,3,2],[1,0,3,2],[1,2,1,1]],[[1,0,2,1],[0,3,4,2],[1,0,3,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,3],[1,0,3,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,2],[1,0,3,3],[1,2,1,1]],[[1,0,2,1],[0,3,3,2],[1,0,3,2],[1,2,1,2]],[[1,0,2,2],[0,3,3,2],[1,0,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,4,2],[1,0,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,3],[1,0,3,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,2],[1,0,3,3],[1,2,2,0]],[[1,0,2,2],[0,3,3,2],[1,1,1,2],[1,2,2,1]],[[1,0,2,1],[0,3,4,2],[1,1,1,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,3],[1,1,1,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[1,1,1,3],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[1,1,1,2],[2,2,2,1]],[[1,0,2,1],[0,3,3,2],[1,1,1,2],[1,3,2,1]],[[1,0,2,1],[0,3,3,2],[1,1,1,2],[1,2,3,1]],[[1,0,2,1],[0,3,3,2],[1,1,1,2],[1,2,2,2]],[[1,0,2,2],[0,3,3,2],[1,1,2,2],[1,2,1,1]],[[1,0,2,1],[0,3,4,2],[1,1,2,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,3],[1,1,2,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,2],[1,1,2,3],[1,2,1,1]],[[1,0,2,1],[0,3,3,2],[1,1,2,2],[1,2,1,2]],[[1,0,2,2],[0,3,3,2],[1,1,2,2],[1,2,2,0]],[[1,0,2,1],[0,3,4,2],[1,1,2,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,3],[1,1,2,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,2],[1,1,2,3],[1,2,2,0]],[[1,0,2,2],[0,3,3,2],[1,1,3,0],[1,2,2,1]],[[1,0,2,1],[0,3,4,2],[1,1,3,0],[1,2,2,1]],[[1,0,2,1],[0,3,3,3],[1,1,3,0],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[1,1,4,0],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[1,1,3,0],[2,2,2,1]],[[1,0,2,1],[0,3,3,2],[1,1,3,0],[1,3,2,1]],[[1,0,2,1],[0,3,3,2],[1,1,3,0],[1,2,3,1]],[[1,0,2,1],[0,3,3,2],[1,1,3,0],[1,2,2,2]],[[1,0,2,2],[0,3,3,2],[1,1,3,1],[1,2,1,1]],[[1,0,2,1],[0,3,4,2],[1,1,3,1],[1,2,1,1]],[[1,0,2,1],[0,3,3,3],[1,1,3,1],[1,2,1,1]],[[1,0,2,1],[0,3,3,2],[1,1,4,1],[1,2,1,1]],[[1,0,2,2],[0,3,3,2],[1,1,3,1],[1,2,2,0]],[[1,0,2,1],[0,3,4,2],[1,1,3,1],[1,2,2,0]],[[1,0,2,1],[0,3,3,3],[1,1,3,1],[1,2,2,0]],[[1,0,2,1],[0,3,3,2],[1,1,4,1],[1,2,2,0]],[[1,0,2,1],[0,3,3,2],[1,1,3,1],[2,2,2,0]],[[1,0,2,1],[0,3,3,2],[1,1,3,1],[1,3,2,0]],[[1,0,2,1],[0,3,3,2],[1,1,3,1],[1,2,3,0]],[[1,0,2,2],[0,3,3,2],[1,1,3,2],[1,0,2,1]],[[1,0,2,1],[0,3,4,2],[1,1,3,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,3],[1,1,3,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,2],[1,1,3,3],[1,0,2,1]],[[1,0,2,1],[0,3,3,2],[1,1,3,2],[1,0,2,2]],[[1,0,2,2],[0,3,3,2],[1,1,3,2],[1,1,1,1]],[[1,0,2,1],[0,3,4,2],[1,1,3,2],[1,1,1,1]],[[1,0,2,1],[0,3,3,3],[1,1,3,2],[1,1,1,1]],[[1,0,2,1],[0,3,3,2],[1,1,3,3],[1,1,1,1]],[[1,0,2,1],[0,3,3,2],[1,1,3,2],[1,1,1,2]],[[1,0,2,2],[0,3,3,2],[1,1,3,2],[1,1,2,0]],[[1,0,2,1],[0,3,4,2],[1,1,3,2],[1,1,2,0]],[[1,0,2,1],[0,3,3,3],[1,1,3,2],[1,1,2,0]],[[1,0,2,1],[0,3,3,2],[1,1,3,3],[1,1,2,0]],[[1,0,2,2],[0,3,3,2],[1,2,0,2],[1,2,2,1]],[[1,0,2,1],[0,3,4,2],[1,2,0,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,3],[1,2,0,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[1,2,0,3],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[1,2,0,2],[2,2,2,1]],[[1,0,2,1],[0,3,3,2],[1,2,0,2],[1,3,2,1]],[[1,0,2,1],[0,3,3,2],[1,2,0,2],[1,2,3,1]],[[1,0,2,1],[0,3,3,2],[1,2,0,2],[1,2,2,2]],[[1,0,2,2],[0,3,3,2],[1,2,1,2],[1,1,2,1]],[[1,0,2,1],[0,3,4,2],[1,2,1,2],[1,1,2,1]],[[1,0,2,1],[0,3,3,3],[1,2,1,2],[1,1,2,1]],[[1,0,2,1],[0,3,3,2],[1,2,1,3],[1,1,2,1]],[[1,0,2,1],[0,3,3,2],[1,2,1,2],[1,1,3,1]],[[1,0,2,1],[0,3,3,2],[1,2,1,2],[1,1,2,2]],[[1,0,2,2],[0,3,3,2],[1,2,2,2],[1,0,2,1]],[[1,0,2,1],[0,3,4,2],[1,2,2,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,3],[1,2,2,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,2],[1,2,2,3],[1,0,2,1]],[[1,0,2,1],[0,3,3,2],[1,2,2,2],[1,0,2,2]],[[1,0,2,2],[0,3,3,2],[1,2,2,2],[1,1,1,1]],[[1,0,2,1],[0,3,4,2],[1,2,2,2],[1,1,1,1]],[[1,0,2,1],[0,3,3,3],[1,2,2,2],[1,1,1,1]],[[1,0,2,1],[0,3,3,2],[1,2,2,3],[1,1,1,1]],[[1,0,2,1],[0,3,3,2],[1,2,2,2],[1,1,1,2]],[[1,0,2,2],[0,3,3,2],[1,2,2,2],[1,1,2,0]],[[1,0,2,1],[0,3,4,2],[1,2,2,2],[1,1,2,0]],[[1,0,2,1],[0,3,3,3],[1,2,2,2],[1,1,2,0]],[[1,0,2,1],[0,3,3,2],[1,2,2,3],[1,1,2,0]],[[1,0,2,2],[0,3,3,2],[1,2,2,2],[1,2,0,1]],[[1,0,2,1],[0,3,4,2],[1,2,2,2],[1,2,0,1]],[[1,0,2,1],[0,3,3,3],[1,2,2,2],[1,2,0,1]],[[1,0,2,1],[0,3,3,2],[1,2,2,3],[1,2,0,1]],[[1,0,2,1],[0,3,3,2],[1,2,2,2],[1,2,0,2]],[[1,0,2,2],[0,3,3,2],[1,2,2,2],[1,2,1,0]],[[1,0,2,1],[0,3,4,2],[1,2,2,2],[1,2,1,0]],[[1,0,2,1],[0,3,3,3],[1,2,2,2],[1,2,1,0]],[[1,0,2,1],[0,3,3,2],[1,2,2,3],[1,2,1,0]],[[1,0,2,2],[0,3,3,2],[1,2,3,0],[1,1,2,1]],[[1,0,2,1],[0,3,4,2],[1,2,3,0],[1,1,2,1]],[[1,0,2,1],[0,3,3,3],[1,2,3,0],[1,1,2,1]],[[1,0,2,1],[0,3,3,2],[1,2,4,0],[1,1,2,1]],[[1,0,2,1],[0,3,3,2],[1,2,3,0],[1,1,3,1]],[[1,0,2,1],[0,3,3,2],[1,2,3,0],[1,1,2,2]],[[1,0,2,2],[0,3,3,2],[1,2,3,0],[1,2,1,1]],[[1,0,2,1],[0,3,4,2],[1,2,3,0],[1,2,1,1]],[[1,0,2,1],[0,3,3,3],[1,2,3,0],[1,2,1,1]],[[1,0,2,1],[0,3,3,2],[1,2,4,0],[1,2,1,1]],[[1,0,2,2],[0,3,3,2],[1,2,3,1],[1,0,2,1]],[[1,0,2,1],[0,3,4,2],[1,2,3,1],[1,0,2,1]],[[1,0,2,1],[0,3,3,3],[1,2,3,1],[1,0,2,1]],[[1,0,2,1],[0,3,3,2],[1,2,4,1],[1,0,2,1]],[[1,0,2,2],[0,3,3,2],[1,2,3,1],[1,1,1,1]],[[1,0,2,1],[0,3,4,2],[1,2,3,1],[1,1,1,1]],[[1,0,2,1],[0,3,3,3],[1,2,3,1],[1,1,1,1]],[[1,0,2,1],[0,3,3,2],[1,2,4,1],[1,1,1,1]],[[1,0,2,2],[0,3,3,2],[1,2,3,1],[1,1,2,0]],[[1,0,2,1],[0,3,4,2],[1,2,3,1],[1,1,2,0]],[[1,0,2,1],[0,3,3,3],[1,2,3,1],[1,1,2,0]],[[1,0,2,1],[0,3,3,2],[1,2,4,1],[1,1,2,0]],[[1,0,2,1],[0,3,3,2],[1,2,3,1],[1,1,3,0]],[[1,0,2,2],[0,3,3,2],[1,2,3,1],[1,2,0,1]],[[1,0,2,1],[0,3,4,2],[1,2,3,1],[1,2,0,1]],[[1,0,2,1],[0,3,3,3],[1,2,3,1],[1,2,0,1]],[[1,0,2,1],[0,3,3,2],[1,2,4,1],[1,2,0,1]],[[1,0,2,2],[0,3,3,2],[1,2,3,1],[1,2,1,0]],[[1,0,2,1],[0,3,4,2],[1,2,3,1],[1,2,1,0]],[[1,0,2,1],[0,3,3,3],[1,2,3,1],[1,2,1,0]],[[1,0,2,1],[0,3,3,2],[1,2,4,1],[1,2,1,0]],[[1,0,2,2],[0,3,3,2],[1,2,3,2],[1,1,0,1]],[[1,0,2,1],[0,3,4,2],[1,2,3,2],[1,1,0,1]],[[1,0,2,1],[0,3,3,3],[1,2,3,2],[1,1,0,1]],[[1,0,2,1],[0,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,1,1],[2,1,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,1,1],[2,1,3,1],[2,4,2,1],[1,2,0,0]],[[1,2,1,1],[2,1,3,1],[3,3,2,1],[1,2,0,0]],[[1,2,1,1],[3,1,3,1],[2,3,2,1],[1,2,0,0]],[[1,3,1,1],[2,1,3,1],[2,3,2,1],[1,2,0,0]],[[1,0,2,2],[0,3,3,2],[1,3,0,1],[1,2,2,1]],[[1,0,2,1],[0,3,4,2],[1,3,0,1],[1,2,2,1]],[[1,0,2,1],[0,3,3,3],[1,3,0,1],[1,2,2,1]],[[1,0,2,2],[0,3,3,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[0,3,4,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[0,3,3,3],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[0,3,3,2],[1,3,0,3],[1,1,2,1]],[[1,0,2,1],[0,3,3,2],[1,3,0,2],[1,1,3,1]],[[1,0,2,1],[0,3,3,2],[1,3,0,2],[1,1,2,2]],[[1,0,2,2],[0,3,3,2],[1,3,0,2],[1,2,1,1]],[[1,0,2,1],[0,3,4,2],[1,3,0,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,3],[1,3,0,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,2],[1,3,0,3],[1,2,1,1]],[[1,0,2,1],[0,3,3,2],[1,3,0,2],[1,2,1,2]],[[1,0,2,2],[0,3,3,2],[1,3,0,2],[1,2,2,0]],[[1,0,2,1],[0,3,4,2],[1,3,0,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,3],[1,3,0,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,2],[1,3,0,3],[1,2,2,0]],[[1,0,2,2],[0,3,3,2],[1,3,1,0],[1,2,2,1]],[[1,0,2,1],[0,3,4,2],[1,3,1,0],[1,2,2,1]],[[1,0,2,1],[0,3,3,3],[1,3,1,0],[1,2,2,1]],[[1,0,2,2],[0,3,3,2],[1,3,1,1],[1,2,2,0]],[[1,0,2,1],[0,3,4,2],[1,3,1,1],[1,2,2,0]],[[1,0,2,1],[0,3,3,3],[1,3,1,1],[1,2,2,0]],[[1,0,2,2],[0,3,3,2],[1,3,1,2],[1,1,1,1]],[[1,0,2,1],[0,3,4,2],[1,3,1,2],[1,1,1,1]],[[1,0,2,1],[0,3,3,3],[1,3,1,2],[1,1,1,1]],[[1,0,2,1],[0,3,3,2],[1,3,1,3],[1,1,1,1]],[[1,0,2,1],[0,3,3,2],[1,3,1,2],[1,1,1,2]],[[1,0,2,2],[0,3,3,2],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[0,3,4,2],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[0,3,3,3],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[0,3,3,2],[1,3,1,3],[1,1,2,0]],[[1,0,2,2],[0,3,3,2],[1,3,1,2],[1,2,0,1]],[[1,0,2,1],[0,3,4,2],[1,3,1,2],[1,2,0,1]],[[1,0,2,1],[0,3,3,3],[1,3,1,2],[1,2,0,1]],[[1,0,2,1],[0,3,3,2],[1,3,1,3],[1,2,0,1]],[[1,0,2,1],[0,3,3,2],[1,3,1,2],[1,2,0,2]],[[1,0,2,2],[0,3,3,2],[1,3,1,2],[1,2,1,0]],[[1,0,2,1],[0,3,4,2],[1,3,1,2],[1,2,1,0]],[[1,0,2,1],[0,3,3,3],[1,3,1,2],[1,2,1,0]],[[1,0,2,1],[0,3,3,2],[1,3,1,3],[1,2,1,0]],[[2,2,1,1],[2,1,3,1],[2,3,2,1],[1,2,0,0]],[[1,0,2,2],[0,3,3,2],[1,3,2,0],[1,1,2,1]],[[1,0,2,1],[0,3,4,2],[1,3,2,0],[1,1,2,1]],[[1,0,2,1],[0,3,3,3],[1,3,2,0],[1,1,2,1]],[[1,0,2,2],[0,3,3,2],[1,3,2,0],[1,2,1,1]],[[1,0,2,1],[0,3,4,2],[1,3,2,0],[1,2,1,1]],[[1,0,2,1],[0,3,3,3],[1,3,2,0],[1,2,1,1]],[[1,0,2,2],[0,3,3,2],[1,3,2,1],[1,1,1,1]],[[1,0,2,1],[0,3,4,2],[1,3,2,1],[1,1,1,1]],[[1,0,2,1],[0,3,3,3],[1,3,2,1],[1,1,1,1]],[[1,0,2,2],[0,3,3,2],[1,3,2,1],[1,1,2,0]],[[1,0,2,1],[0,3,4,2],[1,3,2,1],[1,1,2,0]],[[1,0,2,1],[0,3,3,3],[1,3,2,1],[1,1,2,0]],[[1,0,2,2],[0,3,3,2],[1,3,2,1],[1,2,0,1]],[[1,0,2,1],[0,3,4,2],[1,3,2,1],[1,2,0,1]],[[1,0,2,1],[0,3,3,3],[1,3,2,1],[1,2,0,1]],[[1,0,2,2],[0,3,3,2],[1,3,2,1],[1,2,1,0]],[[1,0,2,1],[0,3,4,2],[1,3,2,1],[1,2,1,0]],[[1,0,2,1],[0,3,3,3],[1,3,2,1],[1,2,1,0]],[[1,2,1,1],[2,1,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,1,1],[2,1,3,1],[2,4,2,1],[1,1,1,0]],[[1,2,1,1],[2,1,3,1],[3,3,2,1],[1,1,1,0]],[[1,2,1,1],[3,1,3,1],[2,3,2,1],[1,1,1,0]],[[1,3,1,1],[2,1,3,1],[2,3,2,1],[1,1,1,0]],[[2,2,1,1],[2,1,3,1],[2,3,2,1],[1,1,1,0]],[[1,2,1,1],[2,1,3,1],[2,3,2,1],[2,1,0,1]],[[1,2,1,1],[2,1,3,1],[2,4,2,1],[1,1,0,1]],[[1,2,1,1],[2,1,3,1],[3,3,2,1],[1,1,0,1]],[[1,2,1,1],[3,1,3,1],[2,3,2,1],[1,1,0,1]],[[1,3,1,1],[2,1,3,1],[2,3,2,1],[1,1,0,1]],[[2,2,1,1],[2,1,3,1],[2,3,2,1],[1,1,0,1]],[[1,2,1,1],[2,1,3,1],[2,3,2,1],[2,0,2,0]],[[1,2,1,1],[2,1,3,1],[2,4,2,1],[1,0,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,2,1],[1,0,2,0]],[[1,2,1,1],[3,1,3,1],[2,3,2,1],[1,0,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,2,1],[1,0,2,0]],[[2,2,1,1],[2,1,3,1],[2,3,2,1],[1,0,2,0]],[[1,2,1,1],[2,1,3,1],[2,3,2,1],[2,0,1,1]],[[1,2,1,1],[2,1,3,1],[2,4,2,1],[1,0,1,1]],[[1,2,1,1],[2,1,3,1],[3,3,2,1],[1,0,1,1]],[[1,2,1,1],[3,1,3,1],[2,3,2,1],[1,0,1,1]],[[1,3,1,1],[2,1,3,1],[2,3,2,1],[1,0,1,1]],[[2,2,1,1],[2,1,3,1],[2,3,2,1],[1,0,1,1]],[[1,2,1,1],[2,1,3,1],[2,3,2,1],[0,3,1,0]],[[1,2,1,1],[2,1,3,1],[2,4,2,1],[0,2,1,0]],[[1,2,1,1],[2,1,3,1],[3,3,2,1],[0,2,1,0]],[[1,2,1,1],[3,1,3,1],[2,3,2,1],[0,2,1,0]],[[1,3,1,1],[2,1,3,1],[2,3,2,1],[0,2,1,0]],[[1,0,2,2],[0,3,3,2],[1,3,3,1],[1,2,0,0]],[[1,0,2,1],[0,3,4,2],[1,3,3,1],[1,2,0,0]],[[1,0,2,1],[0,3,3,3],[1,3,3,1],[1,2,0,0]],[[2,2,1,1],[2,1,3,1],[2,3,2,1],[0,2,1,0]],[[1,2,1,1],[2,1,3,1],[2,3,2,1],[0,3,0,1]],[[1,2,1,1],[2,1,3,1],[2,4,2,1],[0,2,0,1]],[[1,2,1,1],[2,1,3,1],[3,3,2,1],[0,2,0,1]],[[1,2,1,1],[3,1,3,1],[2,3,2,1],[0,2,0,1]],[[1,3,1,1],[2,1,3,1],[2,3,2,1],[0,2,0,1]],[[2,2,1,1],[2,1,3,1],[2,3,2,1],[0,2,0,1]],[[1,2,1,1],[2,1,3,1],[2,4,2,1],[0,1,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,2,1],[0,1,2,0]],[[1,2,1,1],[3,1,3,1],[2,3,2,1],[0,1,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,2,1],[0,1,2,0]],[[2,2,1,1],[2,1,3,1],[2,3,2,1],[0,1,2,0]],[[1,2,1,1],[2,1,3,1],[2,4,2,1],[0,1,1,1]],[[1,2,1,1],[2,1,3,1],[3,3,2,1],[0,1,1,1]],[[1,2,1,1],[3,1,3,1],[2,3,2,1],[0,1,1,1]],[[1,3,1,1],[2,1,3,1],[2,3,2,1],[0,1,1,1]],[[2,2,1,1],[2,1,3,1],[2,3,2,1],[0,1,1,1]],[[1,2,1,1],[2,1,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,1,1],[2,1,3,1],[2,4,2,0],[1,2,0,1]],[[1,2,1,1],[2,1,3,1],[3,3,2,0],[1,2,0,1]],[[1,2,1,1],[3,1,3,1],[2,3,2,0],[1,2,0,1]],[[1,3,1,1],[2,1,3,1],[2,3,2,0],[1,2,0,1]],[[2,2,1,1],[2,1,3,1],[2,3,2,0],[1,2,0,1]],[[1,2,1,1],[2,1,3,1],[2,3,2,0],[2,1,1,1]],[[1,2,1,1],[2,1,3,1],[2,4,2,0],[1,1,1,1]],[[1,2,1,1],[2,1,3,1],[3,3,2,0],[1,1,1,1]],[[1,2,1,1],[3,1,3,1],[2,3,2,0],[1,1,1,1]],[[1,3,1,1],[2,1,3,1],[2,3,2,0],[1,1,1,1]],[[2,2,1,1],[2,1,3,1],[2,3,2,0],[1,1,1,1]],[[1,2,1,1],[2,1,3,1],[2,3,2,0],[2,0,2,1]],[[1,2,1,1],[2,1,3,1],[2,4,2,0],[1,0,2,1]],[[1,2,1,1],[2,1,3,1],[3,3,2,0],[1,0,2,1]],[[1,2,1,1],[3,1,3,1],[2,3,2,0],[1,0,2,1]],[[1,3,1,1],[2,1,3,1],[2,3,2,0],[1,0,2,1]],[[2,2,1,1],[2,1,3,1],[2,3,2,0],[1,0,2,1]],[[1,2,1,1],[2,1,3,1],[2,3,2,0],[0,3,1,1]],[[1,2,1,1],[2,1,3,1],[2,4,2,0],[0,2,1,1]],[[1,2,1,1],[2,1,3,1],[3,3,2,0],[0,2,1,1]],[[1,2,1,1],[3,1,3,1],[2,3,2,0],[0,2,1,1]],[[1,3,1,1],[2,1,3,1],[2,3,2,0],[0,2,1,1]],[[2,2,1,1],[2,1,3,1],[2,3,2,0],[0,2,1,1]],[[1,2,1,1],[2,1,3,1],[2,4,2,0],[0,1,2,1]],[[1,2,1,1],[2,1,3,1],[3,3,2,0],[0,1,2,1]],[[1,2,1,1],[3,1,3,1],[2,3,2,0],[0,1,2,1]],[[1,3,1,1],[2,1,3,1],[2,3,2,0],[0,1,2,1]],[[2,2,1,1],[2,1,3,1],[2,3,2,0],[0,1,2,1]],[[1,2,1,1],[2,1,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,1,1],[2,1,3,1],[2,4,1,2],[1,2,0,0]],[[1,2,1,1],[2,1,3,1],[3,3,1,2],[1,2,0,0]],[[1,2,1,1],[3,1,3,1],[2,3,1,2],[1,2,0,0]],[[1,3,1,1],[2,1,3,1],[2,3,1,2],[1,2,0,0]],[[2,2,1,1],[2,1,3,1],[2,3,1,2],[1,2,0,0]],[[1,0,2,2],[0,3,3,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[0,3,4,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,3],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,1,3],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,1,2],[2,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,1,2],[1,3,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,1,2],[1,2,3,1]],[[1,0,2,1],[0,3,3,2],[2,0,1,2],[1,2,2,2]],[[1,0,2,2],[0,3,3,2],[2,0,2,2],[0,2,2,1]],[[1,0,2,1],[0,3,4,2],[2,0,2,2],[0,2,2,1]],[[1,0,2,1],[0,3,3,3],[2,0,2,2],[0,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,2,3],[0,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,2,2],[0,2,3,1]],[[1,0,2,1],[0,3,3,2],[2,0,2,2],[0,2,2,2]],[[1,0,2,2],[0,3,3,2],[2,0,2,2],[1,2,1,1]],[[1,0,2,1],[0,3,4,2],[2,0,2,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,3],[2,0,2,2],[1,2,1,1]],[[1,0,2,1],[0,3,3,2],[2,0,2,3],[1,2,1,1]],[[1,0,2,1],[0,3,3,2],[2,0,2,2],[1,2,1,2]],[[1,0,2,2],[0,3,3,2],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[0,3,4,2],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,3],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[0,3,3,2],[2,0,2,3],[1,2,2,0]],[[1,0,2,2],[0,3,3,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[0,3,4,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[0,3,3,3],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,4,0],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,3,0],[2,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,3,0],[1,3,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,3,0],[1,2,3,1]],[[1,0,2,1],[0,3,3,2],[2,0,3,0],[1,2,2,2]],[[1,0,2,2],[0,3,3,2],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[0,3,4,2],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[0,3,3,3],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[0,3,3,2],[2,0,4,1],[1,2,1,1]],[[1,0,2,2],[0,3,3,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[0,3,4,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[0,3,3,3],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[0,3,3,2],[2,0,4,1],[1,2,2,0]],[[1,0,2,1],[0,3,3,2],[2,0,3,1],[2,2,2,0]],[[1,0,2,1],[0,3,3,2],[2,0,3,1],[1,3,2,0]],[[1,0,2,1],[0,3,3,2],[2,0,3,1],[1,2,3,0]],[[1,0,2,2],[0,3,3,2],[2,0,3,2],[0,1,2,1]],[[1,0,2,1],[0,3,4,2],[2,0,3,2],[0,1,2,1]],[[1,0,2,1],[0,3,3,3],[2,0,3,2],[0,1,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,3,3],[0,1,2,1]],[[1,0,2,1],[0,3,3,2],[2,0,3,2],[0,1,2,2]],[[1,0,2,2],[0,3,3,2],[2,0,3,2],[0,2,1,1]],[[1,0,2,1],[0,3,4,2],[2,0,3,2],[0,2,1,1]],[[1,0,2,1],[0,3,3,3],[2,0,3,2],[0,2,1,1]],[[1,0,2,1],[0,3,3,2],[2,0,3,3],[0,2,1,1]],[[1,0,2,1],[0,3,3,2],[2,0,3,2],[0,2,1,2]],[[1,0,2,2],[0,3,3,2],[2,0,3,2],[0,2,2,0]],[[1,0,2,1],[0,3,4,2],[2,0,3,2],[0,2,2,0]],[[1,0,2,1],[0,3,3,3],[2,0,3,2],[0,2,2,0]],[[1,0,2,1],[0,3,3,2],[2,0,3,3],[0,2,2,0]],[[1,2,1,1],[2,1,3,1],[2,3,1,2],[2,1,1,0]],[[1,2,1,1],[2,1,3,1],[2,4,1,2],[1,1,1,0]],[[1,0,2,2],[0,3,3,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[0,3,4,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,3],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,0,3],[1,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,0,2],[2,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,0,2],[1,3,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,0,2],[1,2,3,1]],[[1,0,2,1],[0,3,3,2],[2,1,0,2],[1,2,2,2]],[[1,0,2,2],[0,3,3,2],[2,1,1,2],[0,2,2,1]],[[1,0,2,1],[0,3,4,2],[2,1,1,2],[0,2,2,1]],[[1,0,2,1],[0,3,3,3],[2,1,1,2],[0,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,1,3],[0,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,1,2],[0,3,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,1,2],[0,2,3,1]],[[1,0,2,1],[0,3,3,2],[2,1,1,2],[0,2,2,2]],[[1,0,2,2],[0,3,3,2],[2,1,2,2],[0,2,1,1]],[[1,0,2,1],[0,3,4,2],[2,1,2,2],[0,2,1,1]],[[1,0,2,1],[0,3,3,3],[2,1,2,2],[0,2,1,1]],[[1,0,2,1],[0,3,3,2],[2,1,2,3],[0,2,1,1]],[[1,0,2,1],[0,3,3,2],[2,1,2,2],[0,2,1,2]],[[1,0,2,2],[0,3,3,2],[2,1,2,2],[0,2,2,0]],[[1,0,2,1],[0,3,4,2],[2,1,2,2],[0,2,2,0]],[[1,0,2,1],[0,3,3,3],[2,1,2,2],[0,2,2,0]],[[1,0,2,1],[0,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,1,2],[1,1,1,0]],[[1,2,1,1],[3,1,3,1],[2,3,1,2],[1,1,1,0]],[[1,3,1,1],[2,1,3,1],[2,3,1,2],[1,1,1,0]],[[2,2,1,1],[2,1,3,1],[2,3,1,2],[1,1,1,0]],[[1,2,1,1],[2,1,3,1],[2,3,1,2],[2,1,0,1]],[[1,2,1,1],[2,1,3,1],[2,4,1,2],[1,1,0,1]],[[1,2,1,1],[2,1,3,1],[3,3,1,2],[1,1,0,1]],[[1,2,1,1],[3,1,3,1],[2,3,1,2],[1,1,0,1]],[[1,0,2,2],[0,3,3,2],[2,1,3,0],[0,2,2,1]],[[1,0,2,1],[0,3,4,2],[2,1,3,0],[0,2,2,1]],[[1,0,2,1],[0,3,3,3],[2,1,3,0],[0,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,4,0],[0,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,3,0],[0,3,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,3,0],[0,2,3,1]],[[1,0,2,1],[0,3,3,2],[2,1,3,0],[0,2,2,2]],[[1,0,2,2],[0,3,3,2],[2,1,3,1],[0,2,1,1]],[[1,0,2,1],[0,3,4,2],[2,1,3,1],[0,2,1,1]],[[1,0,2,1],[0,3,3,3],[2,1,3,1],[0,2,1,1]],[[1,0,2,1],[0,3,3,2],[2,1,4,1],[0,2,1,1]],[[1,0,2,2],[0,3,3,2],[2,1,3,1],[0,2,2,0]],[[1,0,2,1],[0,3,4,2],[2,1,3,1],[0,2,2,0]],[[1,0,2,1],[0,3,3,3],[2,1,3,1],[0,2,2,0]],[[1,0,2,1],[0,3,3,2],[2,1,4,1],[0,2,2,0]],[[1,0,2,1],[0,3,3,2],[2,1,3,1],[0,3,2,0]],[[1,0,2,1],[0,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,3,1,1],[2,1,3,1],[2,3,1,2],[1,1,0,1]],[[2,2,1,1],[2,1,3,1],[2,3,1,2],[1,1,0,1]],[[1,0,2,2],[0,3,3,2],[2,1,3,2],[0,0,2,1]],[[1,0,2,1],[0,3,4,2],[2,1,3,2],[0,0,2,1]],[[1,0,2,1],[0,3,3,3],[2,1,3,2],[0,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,3,3],[0,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,1,3,2],[0,0,2,2]],[[1,0,2,2],[0,3,3,2],[2,1,3,2],[0,1,1,1]],[[1,0,2,1],[0,3,4,2],[2,1,3,2],[0,1,1,1]],[[1,0,2,1],[0,3,3,3],[2,1,3,2],[0,1,1,1]],[[1,0,2,1],[0,3,3,2],[2,1,3,3],[0,1,1,1]],[[1,0,2,1],[0,3,3,2],[2,1,3,2],[0,1,1,2]],[[1,0,2,2],[0,3,3,2],[2,1,3,2],[0,1,2,0]],[[1,0,2,1],[0,3,4,2],[2,1,3,2],[0,1,2,0]],[[1,0,2,1],[0,3,3,3],[2,1,3,2],[0,1,2,0]],[[1,0,2,1],[0,3,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,1,1],[2,1,3,1],[2,3,1,2],[2,0,2,0]],[[1,2,1,1],[2,1,3,1],[2,4,1,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,1,2],[1,0,2,0]],[[1,2,1,1],[3,1,3,1],[2,3,1,2],[1,0,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,1,2],[1,0,2,0]],[[2,2,1,1],[2,1,3,1],[2,3,1,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,1],[2,3,1,2],[2,0,1,1]],[[1,2,1,1],[2,1,3,1],[2,4,1,2],[1,0,1,1]],[[1,0,2,2],[0,3,3,2],[2,1,3,2],[1,0,1,1]],[[1,0,2,1],[0,3,4,2],[2,1,3,2],[1,0,1,1]],[[1,0,2,1],[0,3,3,3],[2,1,3,2],[1,0,1,1]],[[1,0,2,1],[0,3,3,2],[2,1,3,3],[1,0,1,1]],[[1,0,2,1],[0,3,3,2],[2,1,3,2],[1,0,1,2]],[[1,0,2,2],[0,3,3,2],[2,1,3,2],[1,0,2,0]],[[1,0,2,1],[0,3,4,2],[2,1,3,2],[1,0,2,0]],[[1,0,2,1],[0,3,3,3],[2,1,3,2],[1,0,2,0]],[[1,0,2,1],[0,3,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,1,2],[1,0,1,1]],[[1,2,1,1],[3,1,3,1],[2,3,1,2],[1,0,1,1]],[[1,3,1,1],[2,1,3,1],[2,3,1,2],[1,0,1,1]],[[2,2,1,1],[2,1,3,1],[2,3,1,2],[1,0,1,1]],[[1,2,1,1],[2,1,3,1],[2,3,1,2],[0,3,1,0]],[[1,2,1,1],[2,1,3,1],[2,4,1,2],[0,2,1,0]],[[1,2,1,1],[2,1,3,1],[3,3,1,2],[0,2,1,0]],[[1,2,1,1],[3,1,3,1],[2,3,1,2],[0,2,1,0]],[[1,3,1,1],[2,1,3,1],[2,3,1,2],[0,2,1,0]],[[2,2,1,1],[2,1,3,1],[2,3,1,2],[0,2,1,0]],[[1,2,1,1],[2,1,3,1],[2,3,1,2],[0,3,0,1]],[[1,2,1,1],[2,1,3,1],[2,4,1,2],[0,2,0,1]],[[1,2,1,1],[2,1,3,1],[3,3,1,2],[0,2,0,1]],[[1,2,1,1],[3,1,3,1],[2,3,1,2],[0,2,0,1]],[[1,3,1,1],[2,1,3,1],[2,3,1,2],[0,2,0,1]],[[1,0,2,2],[0,3,3,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[0,3,4,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[0,3,3,3],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,0,3],[0,2,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,0,2],[0,3,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,0,2],[0,2,3,1]],[[1,0,2,1],[0,3,3,2],[2,2,0,2],[0,2,2,2]],[[1,0,2,2],[0,3,3,2],[2,2,1,2],[0,1,2,1]],[[1,0,2,1],[0,3,4,2],[2,2,1,2],[0,1,2,1]],[[1,0,2,1],[0,3,3,3],[2,2,1,2],[0,1,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,1,3],[0,1,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,1,2],[0,1,3,1]],[[1,0,2,1],[0,3,3,2],[2,2,1,2],[0,1,2,2]],[[1,0,2,2],[0,3,3,2],[2,2,1,2],[1,0,2,1]],[[1,0,2,1],[0,3,4,2],[2,2,1,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,3],[2,2,1,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,1,3],[1,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,1,2],[1,0,3,1]],[[1,0,2,1],[0,3,3,2],[2,2,1,2],[1,0,2,2]],[[2,2,1,1],[2,1,3,1],[2,3,1,2],[0,2,0,1]],[[1,2,1,1],[2,1,3,1],[2,4,1,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,1,2],[0,1,2,0]],[[1,0,2,2],[0,3,3,2],[2,2,2,2],[0,0,2,1]],[[1,0,2,1],[0,3,4,2],[2,2,2,2],[0,0,2,1]],[[1,0,2,1],[0,3,3,3],[2,2,2,2],[0,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,2,3],[0,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,2,2],[0,0,2,2]],[[1,0,2,2],[0,3,3,2],[2,2,2,2],[0,1,1,1]],[[1,0,2,1],[0,3,4,2],[2,2,2,2],[0,1,1,1]],[[1,0,2,1],[0,3,3,3],[2,2,2,2],[0,1,1,1]],[[1,0,2,1],[0,3,3,2],[2,2,2,3],[0,1,1,1]],[[1,0,2,1],[0,3,3,2],[2,2,2,2],[0,1,1,2]],[[1,0,2,2],[0,3,3,2],[2,2,2,2],[0,1,2,0]],[[1,0,2,1],[0,3,4,2],[2,2,2,2],[0,1,2,0]],[[1,0,2,1],[0,3,3,3],[2,2,2,2],[0,1,2,0]],[[1,0,2,1],[0,3,3,2],[2,2,2,3],[0,1,2,0]],[[1,0,2,2],[0,3,3,2],[2,2,2,2],[0,2,0,1]],[[1,0,2,1],[0,3,4,2],[2,2,2,2],[0,2,0,1]],[[1,0,2,1],[0,3,3,3],[2,2,2,2],[0,2,0,1]],[[1,0,2,1],[0,3,3,2],[2,2,2,3],[0,2,0,1]],[[1,0,2,1],[0,3,3,2],[2,2,2,2],[0,2,0,2]],[[1,0,2,2],[0,3,3,2],[2,2,2,2],[0,2,1,0]],[[1,0,2,1],[0,3,4,2],[2,2,2,2],[0,2,1,0]],[[1,0,2,1],[0,3,3,3],[2,2,2,2],[0,2,1,0]],[[1,0,2,1],[0,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,1,1],[3,1,3,1],[2,3,1,2],[0,1,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,1,2],[0,1,2,0]],[[2,2,1,1],[2,1,3,1],[2,3,1,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,1],[2,4,1,2],[0,1,1,1]],[[1,2,1,1],[2,1,3,1],[3,3,1,2],[0,1,1,1]],[[1,2,1,1],[3,1,3,1],[2,3,1,2],[0,1,1,1]],[[1,3,1,1],[2,1,3,1],[2,3,1,2],[0,1,1,1]],[[1,0,2,2],[0,3,3,2],[2,2,2,2],[1,0,1,1]],[[1,0,2,1],[0,3,4,2],[2,2,2,2],[1,0,1,1]],[[1,0,2,1],[0,3,3,3],[2,2,2,2],[1,0,1,1]],[[1,0,2,1],[0,3,3,2],[2,2,2,3],[1,0,1,1]],[[1,0,2,1],[0,3,3,2],[2,2,2,2],[1,0,1,2]],[[1,0,2,2],[0,3,3,2],[2,2,2,2],[1,0,2,0]],[[1,0,2,1],[0,3,4,2],[2,2,2,2],[1,0,2,0]],[[1,0,2,1],[0,3,3,3],[2,2,2,2],[1,0,2,0]],[[1,0,2,1],[0,3,3,2],[2,2,2,3],[1,0,2,0]],[[1,0,2,2],[0,3,3,2],[2,2,2,2],[1,1,0,1]],[[1,0,2,1],[0,3,4,2],[2,2,2,2],[1,1,0,1]],[[1,0,2,1],[0,3,3,3],[2,2,2,2],[1,1,0,1]],[[1,0,2,1],[0,3,3,2],[2,2,2,3],[1,1,0,1]],[[1,0,2,1],[0,3,3,2],[2,2,2,2],[1,1,0,2]],[[1,0,2,2],[0,3,3,2],[2,2,2,2],[1,1,1,0]],[[1,0,2,1],[0,3,4,2],[2,2,2,2],[1,1,1,0]],[[1,0,2,1],[0,3,3,3],[2,2,2,2],[1,1,1,0]],[[1,0,2,1],[0,3,3,2],[2,2,2,3],[1,1,1,0]],[[2,2,1,1],[2,1,3,1],[2,3,1,2],[0,1,1,1]],[[1,2,1,1],[2,1,3,1],[2,3,1,1],[2,1,2,0]],[[1,2,1,1],[2,1,3,1],[2,4,1,1],[1,1,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,1,1],[1,1,2,0]],[[1,2,1,1],[3,1,3,1],[2,3,1,1],[1,1,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,1,1],[1,1,2,0]],[[2,2,1,1],[2,1,3,1],[2,3,1,1],[1,1,2,0]],[[1,0,2,2],[0,3,3,2],[2,2,3,0],[0,1,2,1]],[[1,0,2,1],[0,3,4,2],[2,2,3,0],[0,1,2,1]],[[1,0,2,1],[0,3,3,3],[2,2,3,0],[0,1,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,4,0],[0,1,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,3,0],[0,1,3,1]],[[1,0,2,1],[0,3,3,2],[2,2,3,0],[0,1,2,2]],[[1,0,2,2],[0,3,3,2],[2,2,3,0],[0,2,1,1]],[[1,0,2,1],[0,3,4,2],[2,2,3,0],[0,2,1,1]],[[1,0,2,1],[0,3,3,3],[2,2,3,0],[0,2,1,1]],[[1,0,2,1],[0,3,3,2],[2,2,4,0],[0,2,1,1]],[[1,0,2,2],[0,3,3,2],[2,2,3,0],[1,0,2,1]],[[1,0,2,1],[0,3,4,2],[2,2,3,0],[1,0,2,1]],[[1,0,2,1],[0,3,3,3],[2,2,3,0],[1,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,4,0],[1,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,3,0],[1,0,3,1]],[[1,0,2,1],[0,3,3,2],[2,2,3,0],[1,0,2,2]],[[1,0,2,2],[0,3,3,2],[2,2,3,0],[1,1,1,1]],[[1,0,2,1],[0,3,4,2],[2,2,3,0],[1,1,1,1]],[[1,0,2,1],[0,3,3,3],[2,2,3,0],[1,1,1,1]],[[1,0,2,1],[0,3,3,2],[2,2,4,0],[1,1,1,1]],[[1,2,1,1],[2,1,3,1],[2,3,1,1],[0,2,3,0]],[[1,2,1,1],[2,1,3,1],[2,3,1,1],[0,3,2,0]],[[1,0,2,2],[0,3,3,2],[2,2,3,1],[0,0,2,1]],[[1,0,2,1],[0,3,4,2],[2,2,3,1],[0,0,2,1]],[[1,0,2,1],[0,3,3,3],[2,2,3,1],[0,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,2,4,1],[0,0,2,1]],[[1,0,2,2],[0,3,3,2],[2,2,3,1],[0,1,1,1]],[[1,0,2,1],[0,3,4,2],[2,2,3,1],[0,1,1,1]],[[1,0,2,1],[0,3,3,3],[2,2,3,1],[0,1,1,1]],[[1,0,2,1],[0,3,3,2],[2,2,4,1],[0,1,1,1]],[[1,0,2,2],[0,3,3,2],[2,2,3,1],[0,1,2,0]],[[1,0,2,1],[0,3,4,2],[2,2,3,1],[0,1,2,0]],[[1,0,2,1],[0,3,3,3],[2,2,3,1],[0,1,2,0]],[[1,0,2,1],[0,3,3,2],[2,2,4,1],[0,1,2,0]],[[1,0,2,1],[0,3,3,2],[2,2,3,1],[0,1,3,0]],[[1,0,2,2],[0,3,3,2],[2,2,3,1],[0,2,0,1]],[[1,0,2,1],[0,3,4,2],[2,2,3,1],[0,2,0,1]],[[1,0,2,1],[0,3,3,3],[2,2,3,1],[0,2,0,1]],[[1,0,2,1],[0,3,3,2],[2,2,4,1],[0,2,0,1]],[[1,0,2,2],[0,3,3,2],[2,2,3,1],[0,2,1,0]],[[1,0,2,1],[0,3,4,2],[2,2,3,1],[0,2,1,0]],[[1,0,2,1],[0,3,3,3],[2,2,3,1],[0,2,1,0]],[[1,0,2,1],[0,3,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,1,1],[2,1,3,1],[2,4,1,1],[0,2,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,1,1],[0,2,2,0]],[[1,2,1,1],[3,1,3,1],[2,3,1,1],[0,2,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,1,1],[0,2,2,0]],[[2,2,1,1],[2,1,3,1],[2,3,1,1],[0,2,2,0]],[[1,0,2,2],[0,3,3,2],[2,2,3,1],[1,0,1,1]],[[1,0,2,1],[0,3,4,2],[2,2,3,1],[1,0,1,1]],[[1,0,2,1],[0,3,3,3],[2,2,3,1],[1,0,1,1]],[[1,0,2,1],[0,3,3,2],[2,2,4,1],[1,0,1,1]],[[1,0,2,2],[0,3,3,2],[2,2,3,1],[1,0,2,0]],[[1,0,2,1],[0,3,4,2],[2,2,3,1],[1,0,2,0]],[[1,0,2,1],[0,3,3,3],[2,2,3,1],[1,0,2,0]],[[1,0,2,1],[0,3,3,2],[2,2,4,1],[1,0,2,0]],[[1,0,2,1],[0,3,3,2],[2,2,3,1],[1,0,3,0]],[[1,0,2,2],[0,3,3,2],[2,2,3,1],[1,1,0,1]],[[1,0,2,1],[0,3,4,2],[2,2,3,1],[1,1,0,1]],[[1,0,2,1],[0,3,3,3],[2,2,3,1],[1,1,0,1]],[[1,0,2,1],[0,3,3,2],[2,2,4,1],[1,1,0,1]],[[1,0,2,2],[0,3,3,2],[2,2,3,1],[1,1,1,0]],[[1,0,2,1],[0,3,4,2],[2,2,3,1],[1,1,1,0]],[[1,0,2,1],[0,3,3,3],[2,2,3,1],[1,1,1,0]],[[1,0,2,1],[0,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,1,1],[2,1,3,1],[2,3,1,0],[2,1,2,1]],[[1,2,1,1],[2,1,3,1],[2,4,1,0],[1,1,2,1]],[[1,2,1,1],[2,1,3,1],[3,3,1,0],[1,1,2,1]],[[1,2,1,1],[3,1,3,1],[2,3,1,0],[1,1,2,1]],[[1,3,1,1],[2,1,3,1],[2,3,1,0],[1,1,2,1]],[[2,2,1,1],[2,1,3,1],[2,3,1,0],[1,1,2,1]],[[1,2,1,1],[2,1,3,1],[2,3,1,0],[0,2,2,2]],[[1,2,1,1],[2,1,3,1],[2,3,1,0],[0,2,3,1]],[[1,2,1,1],[2,1,3,1],[2,3,1,0],[0,3,2,1]],[[1,2,1,1],[2,1,3,1],[2,4,1,0],[0,2,2,1]],[[1,2,1,1],[2,1,3,1],[3,3,1,0],[0,2,2,1]],[[1,2,1,1],[3,1,3,1],[2,3,1,0],[0,2,2,1]],[[1,3,1,1],[2,1,3,1],[2,3,1,0],[0,2,2,1]],[[2,2,1,1],[2,1,3,1],[2,3,1,0],[0,2,2,1]],[[1,0,2,2],[0,3,3,2],[2,2,3,2],[0,1,0,1]],[[1,0,2,1],[0,3,4,2],[2,2,3,2],[0,1,0,1]],[[1,0,2,1],[0,3,3,3],[2,2,3,2],[0,1,0,1]],[[1,0,2,1],[0,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,1,1],[2,1,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,1,1],[2,1,3,1],[2,4,0,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,0,2],[1,1,2,0]],[[1,2,1,1],[3,1,3,1],[2,3,0,2],[1,1,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,0,2],[1,1,2,0]],[[2,2,1,1],[2,1,3,1],[2,3,0,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,1],[2,3,0,2],[2,1,1,1]],[[1,2,1,1],[2,1,3,1],[2,4,0,2],[1,1,1,1]],[[1,2,1,1],[2,1,3,1],[3,3,0,2],[1,1,1,1]],[[1,2,1,1],[3,1,3,1],[2,3,0,2],[1,1,1,1]],[[1,3,1,1],[2,1,3,1],[2,3,0,2],[1,1,1,1]],[[1,0,2,2],[0,3,3,2],[2,2,3,2],[1,0,0,1]],[[1,0,2,1],[0,3,4,2],[2,2,3,2],[1,0,0,1]],[[1,0,2,1],[0,3,3,3],[2,2,3,2],[1,0,0,1]],[[1,0,2,1],[0,3,3,2],[2,2,3,3],[1,0,0,1]],[[2,2,1,1],[2,1,3,1],[2,3,0,2],[1,1,1,1]],[[1,2,1,1],[2,1,3,1],[2,3,0,2],[2,0,2,1]],[[1,2,1,1],[2,1,3,1],[2,4,0,2],[1,0,2,1]],[[1,2,1,1],[2,1,3,1],[3,3,0,2],[1,0,2,1]],[[1,2,1,1],[3,1,3,1],[2,3,0,2],[1,0,2,1]],[[1,3,1,1],[2,1,3,1],[2,3,0,2],[1,0,2,1]],[[2,2,1,1],[2,1,3,1],[2,3,0,2],[1,0,2,1]],[[1,2,1,1],[2,1,3,1],[2,3,0,2],[0,2,3,0]],[[1,2,1,1],[2,1,3,1],[2,3,0,2],[0,3,2,0]],[[1,2,1,1],[2,1,3,1],[2,4,0,2],[0,2,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,0,2],[0,2,2,0]],[[1,2,1,1],[3,1,3,1],[2,3,0,2],[0,2,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,0,2],[0,2,2,0]],[[2,2,1,1],[2,1,3,1],[2,3,0,2],[0,2,2,0]],[[1,2,1,1],[2,1,3,1],[2,3,0,2],[0,3,1,1]],[[1,2,1,1],[2,1,3,1],[2,4,0,2],[0,2,1,1]],[[1,2,1,1],[2,1,3,1],[3,3,0,2],[0,2,1,1]],[[1,2,1,1],[3,1,3,1],[2,3,0,2],[0,2,1,1]],[[1,3,1,1],[2,1,3,1],[2,3,0,2],[0,2,1,1]],[[2,2,1,1],[2,1,3,1],[2,3,0,2],[0,2,1,1]],[[1,2,1,1],[2,1,3,1],[2,4,0,2],[0,1,2,1]],[[1,2,1,1],[2,1,3,1],[3,3,0,2],[0,1,2,1]],[[1,2,1,1],[3,1,3,1],[2,3,0,2],[0,1,2,1]],[[1,3,1,1],[2,1,3,1],[2,3,0,2],[0,1,2,1]],[[2,2,1,1],[2,1,3,1],[2,3,0,2],[0,1,2,1]],[[1,2,1,1],[2,1,3,1],[2,3,0,1],[1,3,2,0]],[[1,2,1,1],[2,1,3,1],[2,3,0,1],[2,2,2,0]],[[1,2,1,1],[2,1,3,1],[3,3,0,1],[1,2,2,0]],[[1,2,1,1],[3,1,3,1],[2,3,0,1],[1,2,2,0]],[[1,3,1,1],[2,1,3,1],[2,3,0,1],[1,2,2,0]],[[2,2,1,1],[2,1,3,1],[2,3,0,1],[1,2,2,0]],[[1,2,1,1],[2,1,3,1],[2,3,0,1],[2,1,2,1]],[[1,2,1,1],[2,1,3,1],[2,4,0,1],[1,1,2,1]],[[1,2,1,1],[2,1,3,1],[3,3,0,1],[1,1,2,1]],[[1,2,1,1],[3,1,3,1],[2,3,0,1],[1,1,2,1]],[[1,3,1,1],[2,1,3,1],[2,3,0,1],[1,1,2,1]],[[2,2,1,1],[2,1,3,1],[2,3,0,1],[1,1,2,1]],[[1,2,1,1],[2,1,3,1],[2,3,0,1],[0,2,2,2]],[[1,2,1,1],[2,1,3,1],[2,3,0,1],[0,2,3,1]],[[1,2,1,1],[2,1,3,1],[2,3,0,1],[0,3,2,1]],[[1,2,1,1],[2,1,3,1],[2,4,0,1],[0,2,2,1]],[[1,2,1,1],[2,1,3,1],[3,3,0,1],[0,2,2,1]],[[1,0,2,2],[0,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,0,2,1],[0,3,4,2],[2,3,0,1],[0,2,2,1]],[[1,0,2,1],[0,3,3,3],[2,3,0,1],[0,2,2,1]],[[1,0,2,2],[0,3,3,2],[2,3,0,1],[1,1,2,1]],[[1,0,2,1],[0,3,4,2],[2,3,0,1],[1,1,2,1]],[[1,0,2,1],[0,3,3,3],[2,3,0,1],[1,1,2,1]],[[1,0,2,2],[0,3,3,2],[2,3,0,2],[0,1,2,1]],[[1,0,2,1],[0,3,4,2],[2,3,0,2],[0,1,2,1]],[[1,0,2,1],[0,3,3,3],[2,3,0,2],[0,1,2,1]],[[1,0,2,1],[0,3,3,2],[2,3,0,3],[0,1,2,1]],[[1,0,2,1],[0,3,3,2],[2,3,0,2],[0,1,3,1]],[[1,0,2,1],[0,3,3,2],[2,3,0,2],[0,1,2,2]],[[1,0,2,2],[0,3,3,2],[2,3,0,2],[0,2,1,1]],[[1,0,2,1],[0,3,4,2],[2,3,0,2],[0,2,1,1]],[[1,0,2,1],[0,3,3,3],[2,3,0,2],[0,2,1,1]],[[1,0,2,1],[0,3,3,2],[2,3,0,3],[0,2,1,1]],[[1,0,2,1],[0,3,3,2],[2,3,0,2],[0,2,1,2]],[[1,0,2,2],[0,3,3,2],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[0,3,4,2],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[0,3,3,3],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[0,3,3,2],[2,3,0,3],[0,2,2,0]],[[1,0,2,2],[0,3,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,2,1],[0,3,4,2],[2,3,0,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,3],[2,3,0,2],[1,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,3,0,3],[1,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,3,0,2],[1,0,3,1]],[[1,0,2,1],[0,3,3,2],[2,3,0,2],[1,0,2,2]],[[1,0,2,2],[0,3,3,2],[2,3,0,2],[1,1,1,1]],[[1,0,2,1],[0,3,4,2],[2,3,0,2],[1,1,1,1]],[[1,0,2,1],[0,3,3,3],[2,3,0,2],[1,1,1,1]],[[1,0,2,1],[0,3,3,2],[2,3,0,3],[1,1,1,1]],[[1,0,2,1],[0,3,3,2],[2,3,0,2],[1,1,1,2]],[[1,0,2,2],[0,3,3,2],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[0,3,4,2],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[0,3,3,3],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[0,3,3,2],[2,3,0,3],[1,1,2,0]],[[1,2,1,1],[3,1,3,1],[2,3,0,1],[0,2,2,1]],[[1,3,1,1],[2,1,3,1],[2,3,0,1],[0,2,2,1]],[[2,2,1,1],[2,1,3,1],[2,3,0,1],[0,2,2,1]],[[1,2,1,1],[2,1,3,1],[2,3,0,0],[1,3,2,1]],[[1,2,1,1],[2,1,3,1],[2,3,0,0],[2,2,2,1]],[[1,2,1,1],[2,1,3,1],[3,3,0,0],[1,2,2,1]],[[1,2,1,1],[3,1,3,1],[2,3,0,0],[1,2,2,1]],[[1,3,1,1],[2,1,3,1],[2,3,0,0],[1,2,2,1]],[[2,2,1,1],[2,1,3,1],[2,3,0,0],[1,2,2,1]],[[1,0,2,2],[0,3,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,2,1],[0,3,4,2],[2,3,1,0],[0,2,2,1]],[[1,0,2,1],[0,3,3,3],[2,3,1,0],[0,2,2,1]],[[1,0,2,2],[0,3,3,2],[2,3,1,0],[1,1,2,1]],[[1,0,2,1],[0,3,4,2],[2,3,1,0],[1,1,2,1]],[[1,0,2,1],[0,3,3,3],[2,3,1,0],[1,1,2,1]],[[1,0,2,1],[0,3,3,2],[2,4,1,0],[1,2,2,0]],[[1,0,2,1],[0,3,3,2],[2,3,1,0],[2,2,2,0]],[[1,0,2,1],[0,3,3,2],[2,3,1,0],[1,3,2,0]],[[1,0,2,2],[0,3,3,2],[2,3,1,1],[0,2,2,0]],[[1,0,2,1],[0,3,4,2],[2,3,1,1],[0,2,2,0]],[[1,0,2,1],[0,3,3,3],[2,3,1,1],[0,2,2,0]],[[1,0,2,2],[0,3,3,2],[2,3,1,1],[1,1,2,0]],[[1,0,2,1],[0,3,4,2],[2,3,1,1],[1,1,2,0]],[[1,0,2,1],[0,3,3,3],[2,3,1,1],[1,1,2,0]],[[1,0,2,2],[0,3,3,2],[2,3,1,2],[0,1,1,1]],[[1,0,2,1],[0,3,4,2],[2,3,1,2],[0,1,1,1]],[[1,0,2,1],[0,3,3,3],[2,3,1,2],[0,1,1,1]],[[1,0,2,1],[0,3,3,2],[2,3,1,3],[0,1,1,1]],[[1,0,2,1],[0,3,3,2],[2,3,1,2],[0,1,1,2]],[[1,0,2,2],[0,3,3,2],[2,3,1,2],[0,1,2,0]],[[1,0,2,1],[0,3,4,2],[2,3,1,2],[0,1,2,0]],[[1,0,2,1],[0,3,3,3],[2,3,1,2],[0,1,2,0]],[[1,0,2,1],[0,3,3,2],[2,3,1,3],[0,1,2,0]],[[1,0,2,2],[0,3,3,2],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[0,3,4,2],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[0,3,3,3],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[0,3,3,2],[2,3,1,3],[0,2,0,1]],[[1,0,2,1],[0,3,3,2],[2,3,1,2],[0,2,0,2]],[[1,0,2,2],[0,3,3,2],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[0,3,4,2],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[0,3,3,3],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[0,3,3,2],[2,3,1,3],[0,2,1,0]],[[1,0,2,2],[0,3,3,2],[2,3,1,2],[1,0,1,1]],[[1,0,2,1],[0,3,4,2],[2,3,1,2],[1,0,1,1]],[[1,0,2,1],[0,3,3,3],[2,3,1,2],[1,0,1,1]],[[1,0,2,1],[0,3,3,2],[2,3,1,3],[1,0,1,1]],[[1,0,2,1],[0,3,3,2],[2,3,1,2],[1,0,1,2]],[[1,0,2,2],[0,3,3,2],[2,3,1,2],[1,0,2,0]],[[1,0,2,1],[0,3,4,2],[2,3,1,2],[1,0,2,0]],[[1,0,2,1],[0,3,3,3],[2,3,1,2],[1,0,2,0]],[[1,0,2,1],[0,3,3,2],[2,3,1,3],[1,0,2,0]],[[1,0,2,2],[0,3,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[0,3,4,2],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[0,3,3,3],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[0,3,3,2],[2,3,1,3],[1,1,0,1]],[[1,0,2,1],[0,3,3,2],[2,3,1,2],[1,1,0,2]],[[1,0,2,2],[0,3,3,2],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[0,3,4,2],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[0,3,3,3],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[0,3,3,2],[2,3,1,3],[1,1,1,0]],[[1,0,2,2],[0,3,3,2],[2,3,1,2],[1,2,0,0]],[[1,0,2,1],[0,3,4,2],[2,3,1,2],[1,2,0,0]],[[1,0,2,1],[0,3,3,3],[2,3,1,2],[1,2,0,0]],[[1,0,2,2],[0,3,3,2],[2,3,2,0],[0,1,2,1]],[[1,0,2,1],[0,3,4,2],[2,3,2,0],[0,1,2,1]],[[1,0,2,1],[0,3,3,3],[2,3,2,0],[0,1,2,1]],[[1,0,2,2],[0,3,3,2],[2,3,2,0],[0,2,1,1]],[[1,0,2,1],[0,3,4,2],[2,3,2,0],[0,2,1,1]],[[1,0,2,1],[0,3,3,3],[2,3,2,0],[0,2,1,1]],[[1,0,2,2],[0,3,3,2],[2,3,2,0],[1,0,2,1]],[[1,0,2,1],[0,3,4,2],[2,3,2,0],[1,0,2,1]],[[1,0,2,1],[0,3,3,3],[2,3,2,0],[1,0,2,1]],[[1,0,2,2],[0,3,3,2],[2,3,2,0],[1,1,1,1]],[[1,0,2,1],[0,3,4,2],[2,3,2,0],[1,1,1,1]],[[1,0,2,1],[0,3,3,3],[2,3,2,0],[1,1,1,1]],[[1,0,2,1],[0,3,3,2],[2,4,2,0],[1,2,1,0]],[[1,0,2,1],[0,3,3,2],[2,3,2,0],[2,2,1,0]],[[1,0,2,1],[0,3,3,2],[2,3,2,0],[1,3,1,0]],[[1,0,2,2],[0,3,3,2],[2,3,2,1],[0,1,1,1]],[[1,0,2,1],[0,3,4,2],[2,3,2,1],[0,1,1,1]],[[1,0,2,1],[0,3,3,3],[2,3,2,1],[0,1,1,1]],[[1,0,2,2],[0,3,3,2],[2,3,2,1],[0,1,2,0]],[[1,0,2,1],[0,3,4,2],[2,3,2,1],[0,1,2,0]],[[1,0,2,1],[0,3,3,3],[2,3,2,1],[0,1,2,0]],[[1,0,2,2],[0,3,3,2],[2,3,2,1],[0,2,0,1]],[[1,0,2,1],[0,3,4,2],[2,3,2,1],[0,2,0,1]],[[1,0,2,1],[0,3,3,3],[2,3,2,1],[0,2,0,1]],[[1,0,2,2],[0,3,3,2],[2,3,2,1],[0,2,1,0]],[[1,0,2,1],[0,3,4,2],[2,3,2,1],[0,2,1,0]],[[1,0,2,1],[0,3,3,3],[2,3,2,1],[0,2,1,0]],[[1,0,2,2],[0,3,3,2],[2,3,2,1],[1,0,1,1]],[[1,0,2,1],[0,3,4,2],[2,3,2,1],[1,0,1,1]],[[1,0,2,1],[0,3,3,3],[2,3,2,1],[1,0,1,1]],[[1,0,2,2],[0,3,3,2],[2,3,2,1],[1,0,2,0]],[[1,0,2,1],[0,3,4,2],[2,3,2,1],[1,0,2,0]],[[1,0,2,1],[0,3,3,3],[2,3,2,1],[1,0,2,0]],[[1,0,2,2],[0,3,3,2],[2,3,2,1],[1,1,0,1]],[[1,0,2,1],[0,3,4,2],[2,3,2,1],[1,1,0,1]],[[1,0,2,1],[0,3,3,3],[2,3,2,1],[1,1,0,1]],[[1,0,2,2],[0,3,3,2],[2,3,2,1],[1,1,1,0]],[[1,0,2,1],[0,3,4,2],[2,3,2,1],[1,1,1,0]],[[1,0,2,1],[0,3,3,3],[2,3,2,1],[1,1,1,0]],[[1,0,2,2],[0,3,3,2],[2,3,2,1],[1,2,0,0]],[[1,0,2,1],[0,3,4,2],[2,3,2,1],[1,2,0,0]],[[1,0,2,1],[0,3,3,3],[2,3,2,1],[1,2,0,0]],[[1,2,1,1],[2,1,3,1],[2,2,3,0],[1,3,1,0]],[[1,2,1,1],[2,1,3,1],[2,2,3,0],[2,2,1,0]],[[1,2,1,1],[2,1,3,1],[3,2,3,0],[1,2,1,0]],[[1,2,1,1],[3,1,3,1],[2,2,3,0],[1,2,1,0]],[[1,3,1,1],[2,1,3,1],[2,2,3,0],[1,2,1,0]],[[2,2,1,1],[2,1,3,1],[2,2,3,0],[1,2,1,0]],[[1,0,2,2],[0,3,3,2],[2,3,2,2],[0,0,1,1]],[[1,0,2,1],[0,3,4,2],[2,3,2,2],[0,0,1,1]],[[1,0,2,1],[0,3,3,3],[2,3,2,2],[0,0,1,1]],[[1,0,2,1],[0,3,3,2],[2,3,2,3],[0,0,1,1]],[[1,0,2,1],[0,3,3,2],[2,3,2,2],[0,0,1,2]],[[1,0,2,2],[0,3,3,2],[2,3,2,2],[0,0,2,0]],[[1,0,2,1],[0,3,4,2],[2,3,2,2],[0,0,2,0]],[[1,0,2,1],[0,3,3,3],[2,3,2,2],[0,0,2,0]],[[1,0,2,1],[0,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,1,1],[2,1,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,1,1],[2,1,3,1],[2,2,2,1],[2,2,1,0]],[[1,2,1,1],[2,1,3,1],[3,2,2,1],[1,2,1,0]],[[1,2,1,1],[3,1,3,1],[2,2,2,1],[1,2,1,0]],[[1,3,1,1],[2,1,3,1],[2,2,2,1],[1,2,1,0]],[[2,2,1,1],[2,1,3,1],[2,2,2,1],[1,2,1,0]],[[1,2,1,1],[2,1,3,1],[2,2,2,1],[1,3,0,1]],[[1,2,1,1],[2,1,3,1],[2,2,2,1],[2,2,0,1]],[[1,2,1,1],[2,1,3,1],[3,2,2,1],[1,2,0,1]],[[1,2,1,1],[3,1,3,1],[2,2,2,1],[1,2,0,1]],[[1,3,1,1],[2,1,3,1],[2,2,2,1],[1,2,0,1]],[[2,2,1,1],[2,1,3,1],[2,2,2,1],[1,2,0,1]],[[1,2,1,1],[2,1,3,1],[2,2,2,0],[1,3,1,1]],[[1,2,1,1],[2,1,3,1],[2,2,2,0],[2,2,1,1]],[[1,2,1,1],[2,1,3,1],[3,2,2,0],[1,2,1,1]],[[1,2,1,1],[3,1,3,1],[2,2,2,0],[1,2,1,1]],[[1,3,1,1],[2,1,3,1],[2,2,2,0],[1,2,1,1]],[[2,2,1,1],[2,1,3,1],[2,2,2,0],[1,2,1,1]],[[1,2,1,1],[2,1,3,1],[2,2,1,2],[1,3,1,0]],[[1,2,1,1],[2,1,3,1],[2,2,1,2],[2,2,1,0]],[[1,2,1,1],[2,1,3,1],[3,2,1,2],[1,2,1,0]],[[1,2,1,1],[3,1,3,1],[2,2,1,2],[1,2,1,0]],[[1,3,1,1],[2,1,3,1],[2,2,1,2],[1,2,1,0]],[[2,2,1,1],[2,1,3,1],[2,2,1,2],[1,2,1,0]],[[1,2,1,1],[2,1,3,1],[2,2,1,2],[1,3,0,1]],[[1,2,1,1],[2,1,3,1],[2,2,1,2],[2,2,0,1]],[[1,2,1,1],[2,1,3,1],[3,2,1,2],[1,2,0,1]],[[1,2,1,1],[3,1,3,1],[2,2,1,2],[1,2,0,1]],[[1,3,1,1],[2,1,3,1],[2,2,1,2],[1,2,0,1]],[[2,2,1,1],[2,1,3,1],[2,2,1,2],[1,2,0,1]],[[1,2,1,1],[2,1,3,1],[2,2,1,1],[1,2,3,0]],[[1,2,1,1],[2,1,3,1],[2,2,1,1],[1,3,2,0]],[[1,0,2,2],[0,3,3,2],[2,3,3,0],[0,0,2,1]],[[1,0,2,1],[0,3,4,2],[2,3,3,0],[0,0,2,1]],[[1,0,2,1],[0,3,3,3],[2,3,3,0],[0,0,2,1]],[[1,0,2,1],[0,3,3,2],[2,3,4,0],[0,0,2,1]],[[1,2,1,1],[2,1,3,1],[2,2,1,1],[2,2,2,0]],[[1,2,1,1],[2,1,3,1],[3,2,1,1],[1,2,2,0]],[[1,2,1,1],[3,1,3,1],[2,2,1,1],[1,2,2,0]],[[1,3,1,1],[2,1,3,1],[2,2,1,1],[1,2,2,0]],[[2,2,1,1],[2,1,3,1],[2,2,1,1],[1,2,2,0]],[[1,2,1,1],[2,1,3,1],[2,2,1,0],[1,2,2,2]],[[1,2,1,1],[2,1,3,1],[2,2,1,0],[1,2,3,1]],[[1,2,1,1],[2,1,3,1],[2,2,1,0],[1,3,2,1]],[[1,2,1,1],[2,1,3,1],[2,2,1,0],[2,2,2,1]],[[1,2,1,1],[2,1,3,1],[3,2,1,0],[1,2,2,1]],[[1,2,1,1],[3,1,3,1],[2,2,1,0],[1,2,2,1]],[[1,3,1,1],[2,1,3,1],[2,2,1,0],[1,2,2,1]],[[2,2,1,1],[2,1,3,1],[2,2,1,0],[1,2,2,1]],[[1,2,1,1],[2,1,3,1],[2,2,0,2],[1,2,3,0]],[[1,2,1,1],[2,1,3,1],[2,2,0,2],[1,3,2,0]],[[1,2,1,1],[2,1,3,1],[2,2,0,2],[2,2,2,0]],[[1,2,1,1],[2,1,3,1],[3,2,0,2],[1,2,2,0]],[[1,2,1,1],[3,1,3,1],[2,2,0,2],[1,2,2,0]],[[1,3,1,1],[2,1,3,1],[2,2,0,2],[1,2,2,0]],[[2,2,1,1],[2,1,3,1],[2,2,0,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,1],[2,2,0,2],[1,3,1,1]],[[1,2,1,1],[2,1,3,1],[2,2,0,2],[2,2,1,1]],[[1,2,1,1],[2,1,3,1],[3,2,0,2],[1,2,1,1]],[[1,2,1,1],[3,1,3,1],[2,2,0,2],[1,2,1,1]],[[1,3,1,1],[2,1,3,1],[2,2,0,2],[1,2,1,1]],[[1,0,2,2],[0,3,3,2],[2,3,3,1],[0,0,1,1]],[[1,0,2,1],[0,3,4,2],[2,3,3,1],[0,0,1,1]],[[1,0,2,1],[0,3,3,3],[2,3,3,1],[0,0,1,1]],[[1,0,2,1],[0,3,3,2],[2,3,4,1],[0,0,1,1]],[[1,0,2,2],[0,3,3,2],[2,3,3,1],[0,0,2,0]],[[1,0,2,1],[0,3,4,2],[2,3,3,1],[0,0,2,0]],[[1,0,2,1],[0,3,3,3],[2,3,3,1],[0,0,2,0]],[[1,0,2,1],[0,3,3,2],[2,3,4,1],[0,0,2,0]],[[2,2,1,1],[2,1,3,1],[2,2,0,2],[1,2,1,1]],[[1,2,1,1],[2,1,3,1],[2,2,0,1],[1,2,2,2]],[[1,2,1,1],[2,1,3,1],[2,2,0,1],[1,2,3,1]],[[1,2,1,1],[2,1,3,1],[2,2,0,1],[1,3,2,1]],[[1,2,1,1],[2,1,3,1],[2,2,0,1],[2,2,2,1]],[[1,2,1,1],[2,1,3,1],[3,2,0,1],[1,2,2,1]],[[1,2,1,1],[3,1,3,1],[2,2,0,1],[1,2,2,1]],[[1,0,2,2],[0,3,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,2,1],[0,3,4,2],[2,3,3,1],[0,2,0,0]],[[1,0,2,1],[0,3,3,3],[2,3,3,1],[0,2,0,0]],[[1,3,1,1],[2,1,3,1],[2,2,0,1],[1,2,2,1]],[[2,2,1,1],[2,1,3,1],[2,2,0,1],[1,2,2,1]],[[1,2,1,1],[2,1,3,1],[2,1,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,3,1],[2,1,4,2],[1,1,1,0]],[[1,2,1,1],[2,1,4,1],[2,1,3,2],[1,1,1,0]],[[1,2,1,1],[2,1,3,1],[2,1,3,2],[1,1,0,2]],[[1,2,1,1],[2,1,3,1],[2,1,3,3],[1,1,0,1]],[[1,2,1,1],[2,1,3,1],[2,1,4,2],[1,1,0,1]],[[1,2,1,1],[2,1,4,1],[2,1,3,2],[1,1,0,1]],[[1,0,2,2],[0,3,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,2,1],[0,3,4,2],[2,3,3,1],[1,1,0,0]],[[1,0,2,1],[0,3,3,3],[2,3,3,1],[1,1,0,0]],[[1,2,1,1],[2,1,3,1],[2,1,3,2],[1,0,3,0]],[[1,2,1,1],[2,1,3,1],[2,1,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,1],[2,1,4,2],[1,0,2,0]],[[1,2,1,1],[2,1,4,1],[2,1,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,1],[2,1,3,2],[1,0,1,2]],[[1,2,1,1],[2,1,3,1],[2,1,3,3],[1,0,1,1]],[[1,2,1,1],[2,1,3,1],[2,1,4,2],[1,0,1,1]],[[1,2,1,1],[2,1,4,1],[2,1,3,2],[1,0,1,1]],[[1,2,1,1],[2,1,3,1],[2,1,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,3,1],[2,1,4,2],[0,2,1,0]],[[1,2,1,1],[2,1,4,1],[2,1,3,2],[0,2,1,0]],[[1,2,1,1],[2,1,3,1],[2,1,3,2],[0,2,0,2]],[[1,2,1,1],[2,1,3,1],[2,1,3,3],[0,2,0,1]],[[1,2,1,1],[2,1,3,1],[2,1,4,2],[0,2,0,1]],[[1,2,1,1],[2,1,4,1],[2,1,3,2],[0,2,0,1]],[[1,2,1,1],[2,1,3,1],[2,1,3,2],[0,1,3,0]],[[1,2,1,1],[2,1,3,1],[2,1,3,3],[0,1,2,0]],[[1,2,1,1],[2,1,3,1],[2,1,4,2],[0,1,2,0]],[[1,2,1,1],[2,1,4,1],[2,1,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,1],[2,1,3,2],[0,1,1,2]],[[1,2,1,1],[2,1,3,1],[2,1,3,3],[0,1,1,1]],[[1,2,1,1],[2,1,3,1],[2,1,4,2],[0,1,1,1]],[[1,2,1,1],[2,1,4,1],[2,1,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,3,1],[2,1,3,2],[0,0,2,2]],[[1,2,1,1],[2,1,3,1],[2,1,3,3],[0,0,2,1]],[[1,2,1,1],[2,1,3,1],[2,1,4,2],[0,0,2,1]],[[1,2,1,1],[2,1,4,1],[2,1,3,2],[0,0,2,1]],[[1,2,1,1],[2,1,3,1],[2,1,3,1],[1,0,2,2]],[[1,0,2,2],[0,3,3,2],[2,3,3,2],[0,0,0,1]],[[1,0,2,1],[0,3,4,2],[2,3,3,2],[0,0,0,1]],[[1,0,2,1],[0,3,3,3],[2,3,3,2],[0,0,0,1]],[[1,0,2,1],[0,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,1,1],[2,1,3,1],[2,1,3,1],[1,0,3,1]],[[1,2,1,1],[2,1,3,1],[2,1,4,1],[1,0,2,1]],[[1,2,1,1],[2,1,4,1],[2,1,3,1],[1,0,2,1]],[[1,2,1,1],[2,1,3,1],[2,1,3,1],[0,1,2,2]],[[1,2,1,1],[2,1,3,1],[2,1,3,1],[0,1,3,1]],[[1,2,1,1],[2,1,3,1],[2,1,4,1],[0,1,2,1]],[[1,2,1,1],[2,1,4,1],[2,1,3,1],[0,1,2,1]],[[1,2,1,1],[2,1,3,1],[2,1,2,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,1],[2,1,2,2],[1,0,3,1]],[[1,2,1,1],[2,1,3,1],[2,1,2,3],[1,0,2,1]],[[1,2,1,1],[2,1,3,1],[2,1,2,2],[0,1,2,2]],[[1,2,1,1],[2,1,3,1],[2,1,2,2],[0,1,3,1]],[[1,2,1,1],[2,1,3,1],[2,1,2,3],[0,1,2,1]],[[1,2,1,1],[2,1,3,1],[2,0,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,3,1],[2,0,4,2],[1,2,1,0]],[[1,2,1,1],[2,1,4,1],[2,0,3,2],[1,2,1,0]],[[1,2,1,1],[2,1,3,1],[2,0,3,2],[1,2,0,2]],[[1,2,1,1],[2,1,3,1],[2,0,3,3],[1,2,0,1]],[[1,2,1,1],[2,1,3,1],[2,0,4,2],[1,2,0,1]],[[1,2,1,1],[2,1,4,1],[2,0,3,2],[1,2,0,1]],[[1,2,1,1],[2,1,3,1],[2,0,3,2],[1,1,3,0]],[[1,2,1,1],[2,1,3,1],[2,0,3,3],[1,1,2,0]],[[1,2,1,1],[2,1,3,1],[2,0,4,2],[1,1,2,0]],[[1,2,1,1],[2,1,4,1],[2,0,3,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,1],[2,0,3,2],[1,1,1,2]],[[1,2,1,1],[2,1,3,1],[2,0,3,3],[1,1,1,1]],[[1,2,1,1],[2,1,3,1],[2,0,4,2],[1,1,1,1]],[[1,2,1,1],[2,1,4,1],[2,0,3,2],[1,1,1,1]],[[1,2,1,1],[2,1,3,1],[2,0,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,3,1],[2,0,3,2],[0,3,2,0]],[[1,2,1,1],[2,1,3,1],[2,0,3,3],[0,2,2,0]],[[1,2,1,1],[2,1,3,1],[2,0,4,2],[0,2,2,0]],[[1,2,1,1],[2,1,4,1],[2,0,3,2],[0,2,2,0]],[[1,2,1,1],[2,1,3,1],[2,0,3,2],[0,2,1,2]],[[1,2,1,1],[2,1,3,1],[2,0,3,3],[0,2,1,1]],[[1,2,1,1],[2,1,3,1],[2,0,4,2],[0,2,1,1]],[[1,2,1,1],[2,1,4,1],[2,0,3,2],[0,2,1,1]],[[1,2,1,1],[2,1,3,1],[2,0,3,1],[1,2,3,0]],[[1,2,1,1],[2,1,3,1],[2,0,3,1],[1,3,2,0]],[[1,2,1,1],[2,1,3,1],[2,0,3,1],[2,2,2,0]],[[1,2,1,1],[2,1,3,1],[2,0,4,1],[1,2,2,0]],[[1,2,1,1],[2,1,3,1],[3,0,3,1],[1,2,2,0]],[[1,2,1,1],[2,1,4,1],[2,0,3,1],[1,2,2,0]],[[1,2,1,1],[3,1,3,1],[2,0,3,1],[1,2,2,0]],[[1,3,1,1],[2,1,3,1],[2,0,3,1],[1,2,2,0]],[[2,2,1,1],[2,1,3,1],[2,0,3,1],[1,2,2,0]],[[1,2,1,1],[2,1,3,1],[2,0,3,1],[1,1,2,2]],[[1,2,1,1],[2,1,3,1],[2,0,3,1],[1,1,3,1]],[[1,2,1,1],[2,1,3,1],[2,0,4,1],[1,1,2,1]],[[1,2,1,1],[2,1,4,1],[2,0,3,1],[1,1,2,1]],[[1,2,1,1],[2,1,3,1],[2,0,3,1],[0,2,2,2]],[[1,2,1,1],[2,1,3,1],[2,0,3,1],[0,2,3,1]],[[1,2,1,1],[2,1,3,1],[2,0,3,1],[0,3,2,1]],[[1,2,1,1],[2,1,3,1],[2,0,4,1],[0,2,2,1]],[[1,2,1,1],[2,1,4,1],[2,0,3,1],[0,2,2,1]],[[1,2,1,1],[2,1,3,1],[2,0,3,0],[1,2,2,2]],[[1,2,1,1],[2,1,3,1],[2,0,3,0],[1,2,3,1]],[[1,2,1,1],[2,1,3,1],[2,0,3,0],[1,3,2,1]],[[1,2,1,1],[2,1,3,1],[2,0,3,0],[2,2,2,1]],[[1,2,1,1],[2,1,3,1],[2,0,4,0],[1,2,2,1]],[[1,2,1,1],[2,1,3,1],[3,0,3,0],[1,2,2,1]],[[1,2,1,1],[2,1,4,1],[2,0,3,0],[1,2,2,1]],[[1,2,1,1],[3,1,3,1],[2,0,3,0],[1,2,2,1]],[[1,3,1,1],[2,1,3,1],[2,0,3,0],[1,2,2,1]],[[2,2,1,1],[2,1,3,1],[2,0,3,0],[1,2,2,1]],[[1,2,1,1],[2,1,3,1],[2,0,2,2],[1,1,2,2]],[[1,2,1,1],[2,1,3,1],[2,0,2,2],[1,1,3,1]],[[1,2,1,1],[2,1,3,1],[2,0,2,3],[1,1,2,1]],[[1,2,1,1],[2,1,3,1],[2,0,2,2],[0,2,2,2]],[[1,2,1,1],[2,1,3,1],[2,0,2,2],[0,2,3,1]],[[1,2,1,1],[2,1,3,1],[2,0,2,2],[0,3,2,1]],[[1,2,1,1],[2,1,3,1],[2,0,2,3],[0,2,2,1]],[[1,0,2,1],[1,0,0,2],[2,3,3,3],[1,2,2,1]],[[1,0,2,1],[1,0,0,2],[2,3,3,2],[2,2,2,1]],[[1,0,2,1],[1,0,0,2],[2,3,3,2],[1,3,2,1]],[[1,0,2,1],[1,0,0,2],[2,3,3,2],[1,2,3,1]],[[1,0,2,1],[1,0,0,2],[2,3,3,2],[1,2,2,2]],[[1,0,2,2],[1,0,1,2],[2,3,2,2],[1,2,2,1]],[[1,0,2,1],[1,0,1,3],[2,3,2,2],[1,2,2,1]],[[1,0,2,1],[1,0,1,2],[2,3,2,3],[1,2,2,1]],[[1,0,2,1],[1,0,1,2],[2,3,2,2],[2,2,2,1]],[[1,0,2,1],[1,0,1,2],[2,3,2,2],[1,3,2,1]],[[1,0,2,1],[1,0,1,2],[2,3,2,2],[1,2,3,1]],[[1,0,2,1],[1,0,1,2],[2,3,2,2],[1,2,2,2]],[[1,0,2,1],[1,0,1,2],[2,3,4,1],[1,2,2,1]],[[1,0,2,1],[1,0,1,2],[2,3,3,1],[2,2,2,1]],[[1,0,2,1],[1,0,1,2],[2,3,3,1],[1,3,2,1]],[[1,0,2,1],[1,0,1,2],[2,3,3,1],[1,2,3,1]],[[1,0,2,1],[1,0,1,2],[2,3,3,1],[1,2,2,2]],[[1,0,2,2],[1,0,1,2],[2,3,3,2],[1,2,1,1]],[[1,0,2,1],[1,0,1,3],[2,3,3,2],[1,2,1,1]],[[1,0,2,1],[1,0,1,2],[2,3,4,2],[1,2,1,1]],[[1,0,2,1],[1,0,1,2],[2,3,3,3],[1,2,1,1]],[[1,0,2,1],[1,0,1,2],[2,3,3,2],[1,2,1,2]],[[1,0,2,2],[1,0,1,2],[2,3,3,2],[1,2,2,0]],[[1,0,2,1],[1,0,1,3],[2,3,3,2],[1,2,2,0]],[[1,0,2,1],[1,0,1,2],[2,3,4,2],[1,2,2,0]],[[1,0,2,1],[1,0,1,2],[2,3,3,3],[1,2,2,0]],[[1,0,2,1],[1,0,1,2],[2,3,3,2],[2,2,2,0]],[[1,0,2,1],[1,0,1,2],[2,3,3,2],[1,3,2,0]],[[1,0,2,1],[1,0,1,2],[2,3,3,2],[1,2,3,0]],[[1,0,2,1],[1,0,3,0],[2,3,2,3],[1,2,2,1]],[[1,0,2,1],[1,0,3,0],[2,3,2,2],[2,2,2,1]],[[1,0,2,1],[1,0,3,0],[2,3,2,2],[1,3,2,1]],[[1,0,2,1],[1,0,3,0],[2,3,2,2],[1,2,3,1]],[[1,0,2,1],[1,0,3,0],[2,3,2,2],[1,2,2,2]],[[1,0,2,1],[1,0,3,0],[2,3,4,1],[1,2,2,1]],[[1,0,2,1],[1,0,3,0],[2,3,3,1],[2,2,2,1]],[[1,0,2,1],[1,0,3,0],[2,3,3,1],[1,3,2,1]],[[1,0,2,1],[1,0,3,0],[2,3,3,1],[1,2,3,1]],[[1,0,2,1],[1,0,3,0],[2,3,3,1],[1,2,2,2]],[[1,0,2,1],[1,0,3,0],[2,3,4,2],[1,2,1,1]],[[1,0,2,1],[1,0,3,0],[2,3,3,3],[1,2,1,1]],[[1,0,2,1],[1,0,3,0],[2,3,3,2],[1,2,1,2]],[[1,0,2,1],[1,0,3,0],[2,3,4,2],[1,2,2,0]],[[1,0,2,1],[1,0,3,0],[2,3,3,3],[1,2,2,0]],[[1,0,2,1],[1,0,3,0],[2,3,3,2],[2,2,2,0]],[[1,0,2,1],[1,0,3,0],[2,3,3,2],[1,3,2,0]],[[1,0,2,1],[1,0,3,0],[2,3,3,2],[1,2,3,0]],[[1,0,2,1],[1,0,3,1],[2,3,4,0],[1,2,2,1]],[[1,0,2,1],[1,0,3,1],[2,3,3,0],[2,2,2,1]],[[1,0,2,1],[1,0,3,1],[2,3,3,0],[1,3,2,1]],[[1,0,2,1],[1,0,3,1],[2,3,3,0],[1,2,3,1]],[[1,0,2,1],[1,0,3,1],[2,3,3,0],[1,2,2,2]],[[1,0,2,1],[1,0,3,1],[2,3,4,1],[1,2,2,0]],[[1,0,2,1],[1,0,3,1],[2,3,3,1],[2,2,2,0]],[[1,0,2,1],[1,0,3,1],[2,3,3,1],[1,3,2,0]],[[1,0,2,1],[1,0,3,1],[2,3,3,1],[1,2,3,0]],[[1,2,1,1],[2,1,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,1,3,1],[1,3,4,2],[0,0,2,0]],[[1,2,1,1],[2,1,4,1],[1,3,3,2],[0,0,2,0]],[[1,2,1,1],[2,1,3,1],[1,3,3,2],[0,0,1,2]],[[1,2,1,1],[2,1,3,1],[1,3,3,3],[0,0,1,1]],[[1,2,1,1],[2,1,3,1],[1,3,4,2],[0,0,1,1]],[[1,2,1,1],[2,1,4,1],[1,3,3,2],[0,0,1,1]],[[1,2,1,1],[2,1,3,1],[1,3,3,0],[1,3,1,0]],[[1,2,1,1],[2,1,3,1],[1,3,3,0],[2,2,1,0]],[[1,2,1,1],[2,1,3,1],[1,4,3,0],[1,2,1,0]],[[1,0,2,1],[1,1,0,2],[1,3,3,3],[1,2,2,1]],[[1,0,2,1],[1,1,0,2],[1,3,3,2],[2,2,2,1]],[[1,0,2,1],[1,1,0,2],[1,3,3,2],[1,3,2,1]],[[1,0,2,1],[1,1,0,2],[1,3,3,2],[1,2,3,1]],[[1,0,2,1],[1,1,0,2],[1,3,3,2],[1,2,2,2]],[[1,0,2,1],[1,1,0,2],[2,3,3,3],[0,2,2,1]],[[1,0,2,1],[1,1,0,2],[2,3,3,2],[0,3,2,1]],[[1,0,2,1],[1,1,0,2],[2,3,3,2],[0,2,3,1]],[[1,0,2,1],[1,1,0,2],[2,3,3,2],[0,2,2,2]],[[1,0,2,2],[1,1,1,2],[1,3,2,2],[1,2,2,1]],[[1,0,2,1],[1,1,1,3],[1,3,2,2],[1,2,2,1]],[[1,0,2,1],[1,1,1,2],[1,3,2,3],[1,2,2,1]],[[1,0,2,1],[1,1,1,2],[1,3,2,2],[2,2,2,1]],[[1,0,2,1],[1,1,1,2],[1,3,2,2],[1,3,2,1]],[[1,0,2,1],[1,1,1,2],[1,3,2,2],[1,2,3,1]],[[1,0,2,1],[1,1,1,2],[1,3,2,2],[1,2,2,2]],[[1,0,2,1],[1,1,1,2],[1,3,4,1],[1,2,2,1]],[[1,0,2,1],[1,1,1,2],[1,3,3,1],[2,2,2,1]],[[1,0,2,1],[1,1,1,2],[1,3,3,1],[1,3,2,1]],[[1,0,2,1],[1,1,1,2],[1,3,3,1],[1,2,3,1]],[[1,0,2,1],[1,1,1,2],[1,3,3,1],[1,2,2,2]],[[1,0,2,2],[1,1,1,2],[1,3,3,2],[1,2,1,1]],[[1,0,2,1],[1,1,1,3],[1,3,3,2],[1,2,1,1]],[[1,0,2,1],[1,1,1,2],[1,3,4,2],[1,2,1,1]],[[1,0,2,1],[1,1,1,2],[1,3,3,3],[1,2,1,1]],[[1,0,2,1],[1,1,1,2],[1,3,3,2],[1,2,1,2]],[[1,0,2,2],[1,1,1,2],[1,3,3,2],[1,2,2,0]],[[1,0,2,1],[1,1,1,3],[1,3,3,2],[1,2,2,0]],[[1,0,2,1],[1,1,1,2],[1,3,4,2],[1,2,2,0]],[[1,0,2,1],[1,1,1,2],[1,3,3,3],[1,2,2,0]],[[1,0,2,1],[1,1,1,2],[1,3,3,2],[2,2,2,0]],[[1,0,2,1],[1,1,1,2],[1,3,3,2],[1,3,2,0]],[[1,0,2,1],[1,1,1,2],[1,3,3,2],[1,2,3,0]],[[1,0,2,2],[1,1,1,2],[2,3,2,2],[0,2,2,1]],[[1,0,2,1],[1,1,1,3],[2,3,2,2],[0,2,2,1]],[[1,0,2,1],[1,1,1,2],[2,3,2,3],[0,2,2,1]],[[1,0,2,1],[1,1,1,2],[2,3,2,2],[0,3,2,1]],[[1,0,2,1],[1,1,1,2],[2,3,2,2],[0,2,3,1]],[[1,0,2,1],[1,1,1,2],[2,3,2,2],[0,2,2,2]],[[1,0,2,1],[1,1,1,2],[2,3,4,1],[0,2,2,1]],[[1,0,2,1],[1,1,1,2],[2,3,3,1],[0,3,2,1]],[[1,0,2,1],[1,1,1,2],[2,3,3,1],[0,2,3,1]],[[1,0,2,1],[1,1,1,2],[2,3,3,1],[0,2,2,2]],[[1,0,2,2],[1,1,1,2],[2,3,3,2],[0,2,1,1]],[[1,0,2,1],[1,1,1,3],[2,3,3,2],[0,2,1,1]],[[1,0,2,1],[1,1,1,2],[2,3,4,2],[0,2,1,1]],[[1,0,2,1],[1,1,1,2],[2,3,3,3],[0,2,1,1]],[[1,0,2,1],[1,1,1,2],[2,3,3,2],[0,2,1,2]],[[1,0,2,2],[1,1,1,2],[2,3,3,2],[0,2,2,0]],[[1,0,2,1],[1,1,1,3],[2,3,3,2],[0,2,2,0]],[[1,0,2,1],[1,1,1,2],[2,3,4,2],[0,2,2,0]],[[1,0,2,1],[1,1,1,2],[2,3,3,3],[0,2,2,0]],[[1,0,2,1],[1,1,1,2],[2,3,3,2],[0,3,2,0]],[[1,0,2,1],[1,1,1,2],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,1,1],[2,1,3,1],[1,3,2,1],[2,2,1,0]],[[1,2,1,1],[2,1,3,1],[1,4,2,1],[1,2,1,0]],[[1,2,1,1],[2,1,3,1],[1,3,2,1],[1,3,0,1]],[[1,2,1,1],[2,1,3,1],[1,3,2,1],[2,2,0,1]],[[1,2,1,1],[2,1,3,1],[1,4,2,1],[1,2,0,1]],[[1,2,1,1],[2,1,3,1],[1,3,2,0],[1,3,1,1]],[[1,2,1,1],[2,1,3,1],[1,3,2,0],[2,2,1,1]],[[1,2,1,1],[2,1,3,1],[1,4,2,0],[1,2,1,1]],[[1,2,1,1],[2,1,3,1],[1,3,1,2],[1,3,1,0]],[[1,2,1,1],[2,1,3,1],[1,3,1,2],[2,2,1,0]],[[1,2,1,1],[2,1,3,1],[1,4,1,2],[1,2,1,0]],[[1,2,1,1],[2,1,3,1],[1,3,1,2],[1,3,0,1]],[[1,2,1,1],[2,1,3,1],[1,3,1,2],[2,2,0,1]],[[1,2,1,1],[2,1,3,1],[1,4,1,2],[1,2,0,1]],[[1,0,2,1],[1,1,3,0],[1,3,2,3],[1,2,2,1]],[[1,0,2,1],[1,1,3,0],[1,3,2,2],[2,2,2,1]],[[1,0,2,1],[1,1,3,0],[1,3,2,2],[1,3,2,1]],[[1,0,2,1],[1,1,3,0],[1,3,2,2],[1,2,3,1]],[[1,0,2,1],[1,1,3,0],[1,3,2,2],[1,2,2,2]],[[1,0,2,1],[1,1,3,0],[1,3,4,1],[1,2,2,1]],[[1,0,2,1],[1,1,3,0],[1,3,3,1],[2,2,2,1]],[[1,0,2,1],[1,1,3,0],[1,3,3,1],[1,3,2,1]],[[1,0,2,1],[1,1,3,0],[1,3,3,1],[1,2,3,1]],[[1,0,2,1],[1,1,3,0],[1,3,3,1],[1,2,2,2]],[[1,0,2,1],[1,1,3,0],[1,3,4,2],[1,2,1,1]],[[1,0,2,1],[1,1,3,0],[1,3,3,3],[1,2,1,1]],[[1,0,2,1],[1,1,3,0],[1,3,3,2],[1,2,1,2]],[[1,0,2,1],[1,1,3,0],[1,3,4,2],[1,2,2,0]],[[1,0,2,1],[1,1,3,0],[1,3,3,3],[1,2,2,0]],[[1,0,2,1],[1,1,3,0],[1,3,3,2],[2,2,2,0]],[[1,0,2,1],[1,1,3,0],[1,3,3,2],[1,3,2,0]],[[1,0,2,1],[1,1,3,0],[1,3,3,2],[1,2,3,0]],[[1,0,2,1],[1,1,3,0],[2,3,2,3],[0,2,2,1]],[[1,0,2,1],[1,1,3,0],[2,3,2,2],[0,3,2,1]],[[1,0,2,1],[1,1,3,0],[2,3,2,2],[0,2,3,1]],[[1,0,2,1],[1,1,3,0],[2,3,2,2],[0,2,2,2]],[[1,0,2,1],[1,1,3,0],[2,3,4,1],[0,2,2,1]],[[1,0,2,1],[1,1,3,0],[2,3,3,1],[0,3,2,1]],[[1,0,2,1],[1,1,3,0],[2,3,3,1],[0,2,3,1]],[[1,0,2,1],[1,1,3,0],[2,3,3,1],[0,2,2,2]],[[1,0,2,1],[1,1,3,0],[2,3,4,2],[0,2,1,1]],[[1,0,2,1],[1,1,3,0],[2,3,3,3],[0,2,1,1]],[[1,0,2,1],[1,1,3,0],[2,3,3,2],[0,2,1,2]],[[1,0,2,1],[1,1,3,0],[2,3,4,2],[0,2,2,0]],[[1,0,2,1],[1,1,3,0],[2,3,3,3],[0,2,2,0]],[[1,0,2,1],[1,1,3,0],[2,3,3,2],[0,3,2,0]],[[1,0,2,1],[1,1,3,0],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,3,1],[1,3,1,1],[1,2,3,0]],[[1,2,1,1],[2,1,3,1],[1,3,1,1],[1,3,2,0]],[[1,2,1,1],[2,1,3,1],[1,3,1,1],[2,2,2,0]],[[1,2,1,1],[2,1,3,1],[1,4,1,1],[1,2,2,0]],[[1,0,2,1],[1,1,3,1],[1,3,4,0],[1,2,2,1]],[[1,0,2,1],[1,1,3,1],[1,3,3,0],[2,2,2,1]],[[1,0,2,1],[1,1,3,1],[1,3,3,0],[1,3,2,1]],[[1,0,2,1],[1,1,3,1],[1,3,3,0],[1,2,3,1]],[[1,0,2,1],[1,1,3,1],[1,3,3,0],[1,2,2,2]],[[1,0,2,1],[1,1,3,1],[1,3,4,1],[1,2,2,0]],[[1,0,2,1],[1,1,3,1],[1,3,3,1],[2,2,2,0]],[[1,0,2,1],[1,1,3,1],[1,3,3,1],[1,3,2,0]],[[1,0,2,1],[1,1,3,1],[1,3,3,1],[1,2,3,0]],[[1,2,1,1],[2,1,3,1],[1,3,1,0],[1,2,2,2]],[[1,2,1,1],[2,1,3,1],[1,3,1,0],[1,2,3,1]],[[1,2,1,1],[2,1,3,1],[1,3,1,0],[1,3,2,1]],[[1,2,1,1],[2,1,3,1],[1,3,1,0],[2,2,2,1]],[[1,2,1,1],[2,1,3,1],[1,4,1,0],[1,2,2,1]],[[1,0,2,1],[1,1,3,1],[2,3,4,0],[0,2,2,1]],[[1,0,2,1],[1,1,3,1],[2,3,3,0],[0,3,2,1]],[[1,0,2,1],[1,1,3,1],[2,3,3,0],[0,2,3,1]],[[1,0,2,1],[1,1,3,1],[2,3,3,0],[0,2,2,2]],[[1,0,2,1],[1,1,3,1],[2,3,4,1],[0,2,2,0]],[[1,0,2,1],[1,1,3,1],[2,3,3,1],[0,3,2,0]],[[1,0,2,1],[1,1,3,1],[2,3,3,1],[0,2,3,0]],[[1,2,1,1],[2,1,3,1],[1,3,0,2],[1,2,3,0]],[[1,2,1,1],[2,1,3,1],[1,3,0,2],[1,3,2,0]],[[1,2,1,1],[2,1,3,1],[1,3,0,2],[2,2,2,0]],[[1,2,1,1],[2,1,3,1],[1,4,0,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,1],[1,3,0,2],[1,3,1,1]],[[1,2,1,1],[2,1,3,1],[1,3,0,2],[2,2,1,1]],[[1,2,1,1],[2,1,3,1],[1,4,0,2],[1,2,1,1]],[[1,2,1,1],[2,1,3,1],[1,3,0,1],[1,2,2,2]],[[1,2,1,1],[2,1,3,1],[1,3,0,1],[1,2,3,1]],[[1,2,1,1],[2,1,3,1],[1,3,0,1],[1,3,2,1]],[[1,2,1,1],[2,1,3,1],[1,3,0,1],[2,2,2,1]],[[1,2,1,1],[2,1,3,1],[1,4,0,1],[1,2,2,1]],[[1,0,2,2],[1,1,3,2],[0,1,3,2],[1,2,2,1]],[[1,0,2,1],[1,1,3,3],[0,1,3,2],[1,2,2,1]],[[1,0,2,1],[1,1,3,2],[0,1,3,3],[1,2,2,1]],[[1,0,2,1],[1,1,3,2],[0,1,3,2],[1,2,3,1]],[[1,0,2,1],[1,1,3,2],[0,1,3,2],[1,2,2,2]],[[1,0,2,2],[1,1,3,2],[0,2,2,2],[1,2,2,1]],[[1,0,2,1],[1,1,3,3],[0,2,2,2],[1,2,2,1]],[[1,0,2,1],[1,1,3,2],[0,2,2,3],[1,2,2,1]],[[1,0,2,1],[1,1,3,2],[0,2,2,2],[1,3,2,1]],[[1,0,2,1],[1,1,3,2],[0,2,2,2],[1,2,3,1]],[[1,0,2,1],[1,1,3,2],[0,2,2,2],[1,2,2,2]],[[1,0,2,1],[1,1,3,2],[0,2,4,1],[1,2,2,1]],[[1,0,2,1],[1,1,3,2],[0,2,3,1],[1,3,2,1]],[[1,0,2,1],[1,1,3,2],[0,2,3,1],[1,2,3,1]],[[1,0,2,1],[1,1,3,2],[0,2,3,1],[1,2,2,2]],[[1,0,2,2],[1,1,3,2],[0,2,3,2],[1,2,1,1]],[[1,0,2,1],[1,1,3,3],[0,2,3,2],[1,2,1,1]],[[1,0,2,1],[1,1,3,2],[0,2,4,2],[1,2,1,1]],[[1,0,2,1],[1,1,3,2],[0,2,3,3],[1,2,1,1]],[[1,0,2,1],[1,1,3,2],[0,2,3,2],[1,2,1,2]],[[1,0,2,2],[1,1,3,2],[0,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,1,3,3],[0,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,1,3,2],[0,2,4,2],[1,2,2,0]],[[1,0,2,1],[1,1,3,2],[0,2,3,3],[1,2,2,0]],[[1,0,2,1],[1,1,3,2],[0,2,3,2],[1,3,2,0]],[[1,0,2,1],[1,1,3,2],[0,2,3,2],[1,2,3,0]],[[1,0,2,2],[1,1,3,2],[0,3,2,2],[1,1,2,1]],[[1,0,2,1],[1,1,3,3],[0,3,2,2],[1,1,2,1]],[[1,0,2,1],[1,1,3,2],[0,3,2,3],[1,1,2,1]],[[1,0,2,1],[1,1,3,2],[0,3,2,2],[1,1,3,1]],[[1,0,2,1],[1,1,3,2],[0,3,2,2],[1,1,2,2]],[[1,0,2,1],[1,1,3,2],[0,3,4,1],[1,1,2,1]],[[1,0,2,1],[1,1,3,2],[0,3,3,1],[1,1,3,1]],[[1,0,2,1],[1,1,3,2],[0,3,3,1],[1,1,2,2]],[[1,0,2,2],[1,1,3,2],[0,3,3,2],[1,0,2,1]],[[1,0,2,1],[1,1,3,3],[0,3,3,2],[1,0,2,1]],[[1,0,2,1],[1,1,3,2],[0,3,4,2],[1,0,2,1]],[[1,0,2,1],[1,1,3,2],[0,3,3,3],[1,0,2,1]],[[1,0,2,1],[1,1,3,2],[0,3,3,2],[1,0,2,2]],[[1,0,2,2],[1,1,3,2],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,1,3,3],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,1,3,2],[0,3,4,2],[1,1,1,1]],[[1,0,2,1],[1,1,3,2],[0,3,3,3],[1,1,1,1]],[[1,0,2,1],[1,1,3,2],[0,3,3,2],[1,1,1,2]],[[1,0,2,2],[1,1,3,2],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,1,3,3],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,1,3,2],[0,3,4,2],[1,1,2,0]],[[1,0,2,1],[1,1,3,2],[0,3,3,3],[1,1,2,0]],[[1,0,2,1],[1,1,3,2],[0,3,3,2],[1,1,3,0]],[[1,0,2,2],[1,1,3,2],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,1,3,3],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,1,3,2],[0,3,4,2],[1,2,0,1]],[[1,0,2,1],[1,1,3,2],[0,3,3,3],[1,2,0,1]],[[1,0,2,1],[1,1,3,2],[0,3,3,2],[1,2,0,2]],[[1,0,2,2],[1,1,3,2],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,1,3,3],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,1,3,2],[0,3,4,2],[1,2,1,0]],[[1,0,2,1],[1,1,3,2],[0,3,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,3,1],[1,2,4,2],[1,1,1,0]],[[1,2,1,1],[2,1,4,1],[1,2,3,2],[1,1,1,0]],[[1,2,1,1],[2,1,3,1],[1,2,3,2],[1,1,0,2]],[[1,0,2,2],[1,1,3,2],[1,1,3,2],[0,2,2,1]],[[1,0,2,1],[1,1,3,3],[1,1,3,2],[0,2,2,1]],[[1,0,2,1],[1,1,3,2],[1,1,3,3],[0,2,2,1]],[[1,0,2,1],[1,1,3,2],[1,1,3,2],[0,2,3,1]],[[1,0,2,1],[1,1,3,2],[1,1,3,2],[0,2,2,2]],[[1,0,2,2],[1,1,3,2],[1,2,2,2],[0,2,2,1]],[[1,0,2,1],[1,1,3,3],[1,2,2,2],[0,2,2,1]],[[1,0,2,1],[1,1,3,2],[1,2,2,3],[0,2,2,1]],[[1,0,2,1],[1,1,3,2],[1,2,2,2],[0,2,3,1]],[[1,0,2,1],[1,1,3,2],[1,2,2,2],[0,2,2,2]],[[1,0,2,1],[1,1,3,2],[1,2,4,1],[0,2,2,1]],[[1,0,2,1],[1,1,3,2],[1,2,3,1],[0,2,3,1]],[[1,0,2,1],[1,1,3,2],[1,2,3,1],[0,2,2,2]],[[1,0,2,2],[1,1,3,2],[1,2,3,2],[0,2,1,1]],[[1,0,2,1],[1,1,3,3],[1,2,3,2],[0,2,1,1]],[[1,0,2,1],[1,1,3,2],[1,2,4,2],[0,2,1,1]],[[1,0,2,1],[1,1,3,2],[1,2,3,3],[0,2,1,1]],[[1,0,2,1],[1,1,3,2],[1,2,3,2],[0,2,1,2]],[[1,0,2,2],[1,1,3,2],[1,2,3,2],[0,2,2,0]],[[1,0,2,1],[1,1,3,3],[1,2,3,2],[0,2,2,0]],[[1,0,2,1],[1,1,3,2],[1,2,4,2],[0,2,2,0]],[[1,0,2,1],[1,1,3,2],[1,2,3,3],[0,2,2,0]],[[1,0,2,1],[1,1,3,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,3,1],[1,2,3,3],[1,1,0,1]],[[1,2,1,1],[2,1,3,1],[1,2,4,2],[1,1,0,1]],[[1,2,1,1],[2,1,4,1],[1,2,3,2],[1,1,0,1]],[[1,0,2,2],[1,1,3,2],[1,3,2,2],[0,1,2,1]],[[1,0,2,1],[1,1,3,3],[1,3,2,2],[0,1,2,1]],[[1,0,2,1],[1,1,3,2],[1,3,2,3],[0,1,2,1]],[[1,0,2,1],[1,1,3,2],[1,3,2,2],[0,1,3,1]],[[1,0,2,1],[1,1,3,2],[1,3,2,2],[0,1,2,2]],[[1,2,1,1],[2,1,3,1],[1,2,3,2],[1,0,3,0]],[[1,2,1,1],[2,1,3,1],[1,2,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,1],[1,2,4,2],[1,0,2,0]],[[1,2,1,1],[2,1,4,1],[1,2,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,1],[1,2,3,2],[1,0,1,2]],[[1,2,1,1],[2,1,3,1],[1,2,3,3],[1,0,1,1]],[[1,2,1,1],[2,1,3,1],[1,2,4,2],[1,0,1,1]],[[1,0,2,1],[1,1,3,2],[1,3,4,1],[0,1,2,1]],[[1,0,2,1],[1,1,3,2],[1,3,3,1],[0,1,3,1]],[[1,0,2,1],[1,1,3,2],[1,3,3,1],[0,1,2,2]],[[1,2,1,1],[2,1,4,1],[1,2,3,2],[1,0,1,1]],[[1,0,2,2],[1,1,3,2],[1,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,1,3,3],[1,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,1,3,2],[1,3,4,2],[0,0,2,1]],[[1,0,2,1],[1,1,3,2],[1,3,3,3],[0,0,2,1]],[[1,0,2,1],[1,1,3,2],[1,3,3,2],[0,0,2,2]],[[1,0,2,2],[1,1,3,2],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,1,3,3],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,1,3,2],[1,3,4,2],[0,1,1,1]],[[1,0,2,1],[1,1,3,2],[1,3,3,3],[0,1,1,1]],[[1,0,2,1],[1,1,3,2],[1,3,3,2],[0,1,1,2]],[[1,0,2,2],[1,1,3,2],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,1,3,3],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,1,3,2],[1,3,4,2],[0,1,2,0]],[[1,0,2,1],[1,1,3,2],[1,3,3,3],[0,1,2,0]],[[1,0,2,1],[1,1,3,2],[1,3,3,2],[0,1,3,0]],[[1,0,2,2],[1,1,3,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,1,3,3],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,1,3,2],[1,3,4,2],[0,2,0,1]],[[1,0,2,1],[1,1,3,2],[1,3,3,3],[0,2,0,1]],[[1,0,2,1],[1,1,3,2],[1,3,3,2],[0,2,0,2]],[[1,0,2,2],[1,1,3,2],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,1,3,3],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,1,3,2],[1,3,4,2],[0,2,1,0]],[[1,0,2,1],[1,1,3,2],[1,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,3,1],[1,2,3,3],[0,2,1,0]],[[1,0,2,2],[1,1,3,2],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,1,3,3],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,1,3,2],[1,3,4,2],[1,0,1,1]],[[1,0,2,1],[1,1,3,2],[1,3,3,3],[1,0,1,1]],[[1,0,2,1],[1,1,3,2],[1,3,3,2],[1,0,1,2]],[[1,0,2,2],[1,1,3,2],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,1,3,3],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,1,3,2],[1,3,4,2],[1,0,2,0]],[[1,0,2,1],[1,1,3,2],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,1],[1,2,4,2],[0,2,1,0]],[[1,2,1,1],[2,1,4,1],[1,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,1,3,1],[1,2,3,2],[0,2,0,2]],[[1,2,1,1],[2,1,3,1],[1,2,3,3],[0,2,0,1]],[[1,2,1,1],[2,1,3,1],[1,2,4,2],[0,2,0,1]],[[1,2,1,1],[2,1,4,1],[1,2,3,2],[0,2,0,1]],[[1,2,1,1],[2,1,3,1],[1,2,3,2],[0,1,3,0]],[[1,2,1,1],[2,1,3,1],[1,2,3,3],[0,1,2,0]],[[1,2,1,1],[2,1,3,1],[1,2,4,2],[0,1,2,0]],[[1,2,1,1],[2,1,4,1],[1,2,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,1],[1,2,3,2],[0,1,1,2]],[[1,2,1,1],[2,1,3,1],[1,2,3,3],[0,1,1,1]],[[1,2,1,1],[2,1,3,1],[1,2,4,2],[0,1,1,1]],[[1,2,1,1],[2,1,4,1],[1,2,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,3,1],[1,2,3,2],[0,0,2,2]],[[1,2,1,1],[2,1,3,1],[1,2,3,3],[0,0,2,1]],[[1,2,1,1],[2,1,3,1],[1,2,4,2],[0,0,2,1]],[[1,2,1,1],[2,1,4,1],[1,2,3,2],[0,0,2,1]],[[1,2,1,1],[2,1,3,1],[1,2,3,1],[1,0,2,2]],[[1,2,1,1],[2,1,3,1],[1,2,3,1],[1,0,3,1]],[[1,2,1,1],[2,1,3,1],[1,2,4,1],[1,0,2,1]],[[1,2,1,1],[2,1,4,1],[1,2,3,1],[1,0,2,1]],[[1,2,1,1],[2,1,3,1],[1,2,3,1],[0,1,2,2]],[[1,2,1,1],[2,1,3,1],[1,2,3,1],[0,1,3,1]],[[1,2,1,1],[2,1,3,1],[1,2,4,1],[0,1,2,1]],[[1,2,1,1],[2,1,4,1],[1,2,3,1],[0,1,2,1]],[[1,2,1,1],[2,1,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,1],[1,2,2,2],[1,0,3,1]],[[1,2,1,1],[2,1,3,1],[1,2,2,3],[1,0,2,1]],[[1,2,1,1],[2,1,3,1],[1,2,2,2],[0,1,2,2]],[[1,2,1,1],[2,1,3,1],[1,2,2,2],[0,1,3,1]],[[1,2,1,1],[2,1,3,1],[1,2,2,3],[0,1,2,1]],[[1,2,1,1],[2,1,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,3,1],[1,1,3,2],[0,3,2,0]],[[1,2,1,1],[2,1,3,1],[1,1,3,3],[0,2,2,0]],[[1,2,1,1],[2,1,3,1],[1,1,4,2],[0,2,2,0]],[[1,2,1,1],[2,1,4,1],[1,1,3,2],[0,2,2,0]],[[1,2,1,1],[2,1,3,1],[1,1,3,2],[0,2,1,2]],[[1,2,1,1],[2,1,3,1],[1,1,3,3],[0,2,1,1]],[[1,2,1,1],[2,1,3,1],[1,1,4,2],[0,2,1,1]],[[1,2,1,1],[2,1,4,1],[1,1,3,2],[0,2,1,1]],[[1,2,1,1],[2,1,3,1],[1,1,3,1],[0,2,2,2]],[[1,2,1,1],[2,1,3,1],[1,1,3,1],[0,2,3,1]],[[1,2,1,1],[2,1,3,1],[1,1,3,1],[0,3,2,1]],[[1,2,1,1],[2,1,3,1],[1,1,4,1],[0,2,2,1]],[[1,2,1,1],[2,1,4,1],[1,1,3,1],[0,2,2,1]],[[1,2,1,1],[2,1,3,1],[1,1,2,2],[0,2,2,2]],[[1,2,1,1],[2,1,3,1],[1,1,2,2],[0,2,3,1]],[[1,2,1,1],[2,1,3,1],[1,1,2,2],[0,3,2,1]],[[1,2,1,1],[2,1,3,1],[1,1,2,3],[0,2,2,1]],[[1,2,1,1],[2,1,3,1],[1,0,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,3,1],[1,0,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,3,1],[1,0,3,2],[2,2,2,0]],[[1,2,1,1],[2,1,3,1],[1,0,3,3],[1,2,2,0]],[[1,2,1,1],[2,1,3,1],[1,0,4,2],[1,2,2,0]],[[1,2,1,1],[2,1,4,1],[1,0,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,1],[1,0,3,2],[1,2,1,2]],[[1,2,1,1],[2,1,3,1],[1,0,3,3],[1,2,1,1]],[[1,2,1,1],[2,1,3,1],[1,0,4,2],[1,2,1,1]],[[1,2,1,1],[2,1,4,1],[1,0,3,2],[1,2,1,1]],[[1,2,1,1],[2,1,3,1],[1,0,3,2],[0,2,2,2]],[[1,2,1,1],[2,1,3,1],[1,0,3,2],[0,2,3,1]],[[1,2,1,1],[2,1,3,1],[1,0,3,3],[0,2,2,1]],[[1,2,1,1],[2,1,3,1],[1,0,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,3,1],[1,0,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,3,1],[1,0,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,3,1],[1,0,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,3,1],[1,0,4,1],[1,2,2,1]],[[1,2,1,1],[2,1,4,1],[1,0,3,1],[1,2,2,1]],[[1,2,1,1],[2,1,3,1],[1,0,2,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,1],[1,0,2,2],[1,2,3,1]],[[1,2,1,1],[2,1,3,1],[1,0,2,2],[1,3,2,1]],[[1,2,1,1],[2,1,3,1],[1,0,2,2],[2,2,2,1]],[[1,2,1,1],[2,1,3,1],[1,0,2,3],[1,2,2,1]],[[1,0,2,1],[1,2,0,2],[0,3,3,3],[1,2,2,1]],[[1,0,2,1],[1,2,0,2],[0,3,3,2],[1,3,2,1]],[[1,0,2,1],[1,2,0,2],[0,3,3,2],[1,2,3,1]],[[1,0,2,1],[1,2,0,2],[0,3,3,2],[1,2,2,2]],[[1,0,2,1],[1,2,0,2],[1,2,3,3],[1,2,2,1]],[[1,0,2,1],[1,2,0,2],[1,2,3,2],[2,2,2,1]],[[1,0,2,1],[1,2,0,2],[1,2,3,2],[1,3,2,1]],[[1,0,2,1],[1,2,0,2],[1,2,3,2],[1,2,3,1]],[[1,0,2,1],[1,2,0,2],[1,2,3,2],[1,2,2,2]],[[1,0,2,1],[1,2,0,2],[1,3,3,3],[1,1,2,1]],[[1,0,2,1],[1,2,0,2],[1,3,3,2],[1,1,3,1]],[[1,0,2,1],[1,2,0,2],[1,3,3,2],[1,1,2,2]],[[1,0,2,1],[1,2,0,2],[2,1,3,3],[1,2,2,1]],[[1,0,2,1],[1,2,0,2],[2,1,3,2],[2,2,2,1]],[[1,0,2,1],[1,2,0,2],[2,1,3,2],[1,3,2,1]],[[1,0,2,1],[1,2,0,2],[2,1,3,2],[1,2,3,1]],[[1,0,2,1],[1,2,0,2],[2,1,3,2],[1,2,2,2]],[[1,0,2,1],[1,2,0,2],[2,2,3,3],[0,2,2,1]],[[1,0,2,1],[1,2,0,2],[2,2,3,2],[0,3,2,1]],[[1,0,2,1],[1,2,0,2],[2,2,3,2],[0,2,3,1]],[[1,0,2,1],[1,2,0,2],[2,2,3,2],[0,2,2,2]],[[1,0,2,1],[1,2,0,2],[2,3,3,3],[0,1,2,1]],[[1,0,2,1],[1,2,0,2],[2,3,3,2],[0,1,3,1]],[[1,0,2,1],[1,2,0,2],[2,3,3,2],[0,1,2,2]],[[1,0,2,1],[1,2,0,2],[2,3,3,3],[1,0,2,1]],[[1,0,2,1],[1,2,0,2],[2,3,3,2],[1,0,3,1]],[[1,0,2,1],[1,2,0,2],[2,3,3,2],[1,0,2,2]],[[1,0,2,2],[1,2,1,2],[0,3,2,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,3],[0,3,2,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[0,3,2,3],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[0,3,2,2],[1,3,2,1]],[[1,0,2,1],[1,2,1,2],[0,3,2,2],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[0,3,2,2],[1,2,2,2]],[[1,0,2,1],[1,2,1,2],[0,3,4,1],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[0,3,3,1],[1,3,2,1]],[[1,0,2,1],[1,2,1,2],[0,3,3,1],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[0,3,3,1],[1,2,2,2]],[[1,0,2,2],[1,2,1,2],[0,3,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,1,3],[0,3,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[0,3,4,2],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[0,3,3,3],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[0,3,3,2],[1,2,1,2]],[[1,0,2,2],[1,2,1,2],[0,3,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,3],[0,3,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[0,3,4,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[0,3,3,3],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[0,3,3,2],[1,3,2,0]],[[1,0,2,1],[1,2,1,2],[0,3,3,2],[1,2,3,0]],[[1,0,2,2],[1,2,1,2],[1,1,3,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,3],[1,1,3,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,1,3,3],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,1,3,2],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[1,1,3,2],[1,2,2,2]],[[1,0,3,1],[1,2,1,2],[1,2,2,2],[1,2,2,1]],[[1,0,2,2],[1,2,1,2],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,1],[1,2,1,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,1],[1,2,1,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,1],[1,2,1,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[1,2,3,1],[1,2,2,2]],[[1,0,3,1],[1,2,1,2],[1,2,3,2],[1,2,1,1]],[[1,0,2,2],[1,2,1,2],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,1,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[1,2,3,2],[1,2,1,2]],[[1,0,3,1],[1,2,1,2],[1,2,3,2],[1,2,2,0]],[[1,0,2,2],[1,2,1,2],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,1],[1,2,1,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,1],[1,2,1,2],[1,2,3,2],[1,2,3,0]],[[1,0,3,1],[1,2,1,2],[1,3,1,2],[1,2,2,1]],[[1,0,2,2],[1,2,1,2],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,3],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,4,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,1,3],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,1,2],[2,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,1,2],[1,3,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,1,2],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[1,3,1,2],[1,2,2,2]],[[1,0,2,1],[1,2,1,2],[1,4,2,1],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,2,1],[2,2,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,2,1],[1,3,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,2,1],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[1,3,2,1],[1,2,2,2]],[[1,0,3,1],[1,2,1,2],[1,3,2,2],[1,1,2,1]],[[1,0,2,2],[1,2,1,2],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[1,2,1,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,1],[1,2,1,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,1],[1,2,1,2],[1,4,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[1,3,2,2],[2,2,2,0]],[[1,0,2,1],[1,2,1,2],[1,3,2,2],[1,3,2,0]],[[1,0,2,1],[1,2,1,2],[1,3,2,2],[1,2,3,0]],[[1,0,2,1],[1,2,1,2],[1,4,3,1],[1,1,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,1],[1,2,1,2],[1,4,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[1,3,4,1],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,1],[2,2,1,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,1],[1,3,1,1]],[[1,0,2,2],[1,2,1,2],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[1,2,1,3],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,4,2],[1,0,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,3],[1,0,2,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,2],[1,0,2,2]],[[1,0,3,1],[1,2,1,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,2],[1,2,1,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,2,1,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,2,1,2],[1,4,3,2],[1,1,1,1]],[[1,0,2,1],[1,2,1,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,2],[1,1,1,2]],[[1,0,3,1],[1,2,1,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,2],[1,2,1,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,2,1,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,2,1,2],[1,4,3,2],[1,1,2,0]],[[1,0,2,1],[1,2,1,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,1],[1,2,1,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,1],[1,2,1,2],[1,3,3,2],[1,1,3,0]],[[1,0,3,1],[1,2,1,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,2],[1,2,1,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,2,1,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,2,1,2],[1,4,3,2],[1,2,0,1]],[[1,0,2,1],[1,2,1,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,2],[2,2,0,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,2],[1,3,0,1]],[[1,0,2,1],[1,2,1,2],[1,3,3,2],[1,2,0,2]],[[1,0,3,1],[1,2,1,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,2],[1,2,1,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,2,1,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,2,1,2],[1,4,3,2],[1,2,1,0]],[[1,0,2,1],[1,2,1,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,1],[1,2,1,2],[1,3,3,3],[1,2,1,0]],[[1,0,2,1],[1,2,1,2],[1,3,3,2],[2,2,1,0]],[[1,0,2,1],[1,2,1,2],[1,3,3,2],[1,3,1,0]],[[1,0,2,2],[1,2,1,2],[2,0,3,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,3],[2,0,3,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,0,3,3],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,0,3,2],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[2,0,3,2],[1,2,2,2]],[[1,0,3,1],[1,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,2],[1,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[3,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,1],[1,2,1,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[2,1,2,2],[1,2,2,2]],[[1,0,2,1],[1,2,1,2],[3,1,3,1],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,1],[1,2,1,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[2,1,3,1],[1,2,2,2]],[[1,0,2,2],[1,2,1,2],[2,1,3,2],[0,2,2,1]],[[1,0,2,1],[1,2,1,3],[2,1,3,2],[0,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,1,3,3],[0,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,1,3,2],[0,2,3,1]],[[1,0,2,1],[1,2,1,2],[2,1,3,2],[0,2,2,2]],[[1,0,3,1],[1,2,1,2],[2,1,3,2],[1,2,1,1]],[[1,0,2,2],[1,2,1,2],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,1,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[2,1,3,2],[1,2,1,2]],[[1,0,3,1],[1,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,2],[1,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[3,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,1],[1,2,1,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,1],[1,2,1,2],[2,1,3,2],[1,2,3,0]],[[1,0,3,1],[1,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,2],[1,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,3],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[3,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,1,3],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,1,2],[2,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,1,2],[1,3,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,1,2],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[2,2,1,2],[1,2,2,2]],[[1,0,2,1],[1,2,1,2],[3,2,2,1],[1,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,2,1],[2,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,2,1],[1,3,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,2,1],[1,2,3,1]],[[1,0,2,1],[1,2,1,2],[2,2,2,1],[1,2,2,2]],[[1,0,3,1],[1,2,1,2],[2,2,2,2],[0,2,2,1]],[[1,0,2,2],[1,2,1,2],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[1,2,1,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,1],[1,2,1,2],[2,2,2,2],[0,2,2,2]],[[1,0,2,1],[1,2,1,2],[3,2,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,1,2],[2,2,2,2],[2,2,2,0]],[[1,0,2,1],[1,2,1,2],[2,2,2,2],[1,3,2,0]],[[1,0,2,1],[1,2,1,2],[2,2,2,2],[1,2,3,0]],[[1,0,2,1],[1,2,1,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,1],[1,2,1,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,1],[1,2,1,2],[2,2,3,1],[0,2,2,2]],[[1,0,2,1],[1,2,1,2],[3,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,1,2],[2,2,3,1],[2,2,1,1]],[[1,0,2,1],[1,2,1,2],[2,2,3,1],[1,3,1,1]],[[1,0,3,1],[1,2,1,2],[2,2,3,2],[0,2,1,1]],[[1,0,2,2],[1,2,1,2],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[1,2,1,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[1,2,1,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,1],[1,2,1,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,1],[1,2,1,2],[2,2,3,2],[0,2,1,2]],[[1,0,3,1],[1,2,1,2],[2,2,3,2],[0,2,2,0]],[[1,0,2,2],[1,2,1,2],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[1,2,1,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[1,2,1,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,1],[1,2,1,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,1],[1,2,1,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,1],[1,2,1,2],[2,2,3,2],[0,2,3,0]],[[1,0,2,1],[1,2,1,2],[3,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,2,1,2],[2,2,3,2],[2,2,0,1]],[[1,0,2,1],[1,2,1,2],[2,2,3,2],[1,3,0,1]],[[1,0,2,1],[1,2,1,2],[3,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,2,1,2],[2,2,3,2],[2,2,1,0]],[[1,0,2,1],[1,2,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,1,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,3,1],[0,2,4,2],[1,2,1,0]],[[1,2,1,1],[2,1,4,1],[0,2,3,2],[1,2,1,0]],[[1,2,1,1],[2,1,3,1],[0,2,3,2],[1,2,0,2]],[[1,2,1,1],[2,1,3,1],[0,2,3,3],[1,2,0,1]],[[1,2,1,1],[2,1,3,1],[0,2,4,2],[1,2,0,1]],[[1,2,1,1],[2,1,4,1],[0,2,3,2],[1,2,0,1]],[[1,0,3,1],[1,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,2],[1,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,1,3],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,1,2],[3,3,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,4,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,1,3],[0,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,1,2],[0,3,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,1,2],[0,2,3,1]],[[1,0,2,1],[1,2,1,2],[2,3,1,2],[0,2,2,2]],[[1,0,2,1],[1,2,1,2],[3,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,2,1,2],[2,4,1,2],[1,1,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,1,2],[2,1,2,1]],[[1,0,2,1],[1,2,1,2],[3,3,2,1],[0,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,4,2,1],[0,2,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,2,1],[0,3,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,2,1],[0,2,3,1]],[[1,0,2,1],[1,2,1,2],[2,3,2,1],[0,2,2,2]],[[1,0,2,1],[1,2,1,2],[3,3,2,1],[1,1,2,1]],[[1,0,2,1],[1,2,1,2],[2,4,2,1],[1,1,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,2,1],[2,1,2,1]],[[1,0,3,1],[1,2,1,2],[2,3,2,2],[0,1,2,1]],[[1,0,2,2],[1,2,1,2],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[1,2,1,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,1],[1,2,1,2],[2,3,2,2],[0,1,2,2]],[[1,0,2,1],[1,2,1,2],[3,3,2,2],[0,2,2,0]],[[1,0,2,1],[1,2,1,2],[2,4,2,2],[0,2,2,0]],[[1,0,2,1],[1,2,1,2],[2,3,2,2],[0,3,2,0]],[[1,0,2,1],[1,2,1,2],[2,3,2,2],[0,2,3,0]],[[1,0,3,1],[1,2,1,2],[2,3,2,2],[1,0,2,1]],[[1,0,2,2],[1,2,1,2],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[1,2,1,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,1],[1,2,1,2],[2,3,2,2],[1,0,2,2]],[[1,0,2,1],[1,2,1,2],[3,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,2,1,2],[2,4,2,2],[1,1,2,0]],[[1,0,2,1],[1,2,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,1,3,1],[0,2,3,2],[1,1,3,0]],[[1,2,1,1],[2,1,3,1],[0,2,3,3],[1,1,2,0]],[[1,2,1,1],[2,1,3,1],[0,2,4,2],[1,1,2,0]],[[1,2,1,1],[2,1,4,1],[0,2,3,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,1],[0,2,3,2],[1,1,1,2]],[[1,0,2,1],[1,2,1,2],[3,3,3,1],[0,1,2,1]],[[1,0,2,1],[1,2,1,2],[2,4,3,1],[0,1,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,1],[0,1,2,2]],[[1,0,2,1],[1,2,1,2],[3,3,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,1,2],[2,4,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,1,2],[2,3,4,1],[0,2,1,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,1],[0,3,1,1]],[[1,0,2,1],[1,2,1,2],[3,3,3,1],[1,0,2,1]],[[1,0,2,1],[1,2,1,2],[2,4,3,1],[1,0,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,1],[2,0,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,1],[1,0,2,2]],[[1,0,2,1],[1,2,1,2],[3,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,1,2],[2,4,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,1,2],[2,3,4,1],[1,1,1,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[2,1,3,1],[0,2,3,3],[1,1,1,1]],[[1,2,1,1],[2,1,3,1],[0,2,4,2],[1,1,1,1]],[[1,2,1,1],[2,1,4,1],[0,2,3,2],[1,1,1,1]],[[1,2,1,1],[2,1,3,1],[0,2,3,2],[1,0,2,2]],[[1,2,1,1],[2,1,3,1],[0,2,3,3],[1,0,2,1]],[[1,2,1,1],[2,1,3,1],[0,2,4,2],[1,0,2,1]],[[1,2,1,1],[2,1,4,1],[0,2,3,2],[1,0,2,1]],[[1,0,3,1],[1,2,1,2],[2,3,3,2],[0,0,2,1]],[[1,0,2,2],[1,2,1,2],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,2,1,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[0,0,2,2]],[[1,0,3,1],[1,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,2],[1,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,2,1,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,2,1,2],[3,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,2,1,2],[2,4,3,2],[0,1,1,1]],[[1,0,2,1],[1,2,1,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[0,1,1,2]],[[1,0,3,1],[1,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,2],[1,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,2,1,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,2,1,2],[3,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,2,1,2],[2,4,3,2],[0,1,2,0]],[[1,0,2,1],[1,2,1,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[1,2,1,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[0,1,3,0]],[[1,0,3,1],[1,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,2],[1,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,2,1,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,2,1,2],[3,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,2,1,2],[2,4,3,2],[0,2,0,1]],[[1,0,2,1],[1,2,1,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[0,3,0,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[0,2,0,2]],[[1,0,3,1],[1,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,2],[1,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,2,1,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,2,1,2],[3,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,2,1,2],[2,4,3,2],[0,2,1,0]],[[1,0,2,1],[1,2,1,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,1],[1,2,1,2],[2,3,3,3],[0,2,1,0]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,1,3,1],[0,2,3,1],[1,1,2,2]],[[1,2,1,1],[2,1,3,1],[0,2,3,1],[1,1,3,1]],[[1,2,1,1],[2,1,3,1],[0,2,4,1],[1,1,2,1]],[[1,2,1,1],[2,1,4,1],[0,2,3,1],[1,1,2,1]],[[1,0,3,1],[1,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,2],[1,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,2,1,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,2,1,2],[3,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,2,1,2],[2,4,3,2],[1,0,1,1]],[[1,0,2,1],[1,2,1,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[2,0,1,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[1,0,1,2]],[[1,0,3,1],[1,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,2],[1,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,2,1,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,2,1,2],[3,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,2,1,2],[2,4,3,2],[1,0,2,0]],[[1,0,2,1],[1,2,1,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[1,2,1,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[2,0,2,0]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[1,0,3,0]],[[1,0,3,1],[1,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,2],[1,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,2,1,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,2,1,2],[3,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,2,1,2],[2,4,3,2],[1,1,0,1]],[[1,0,2,1],[1,2,1,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[2,1,0,1]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[1,1,0,2]],[[1,0,3,1],[1,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,2],[1,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,2,1,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,2,1,2],[3,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,2,1,2],[2,4,3,2],[1,1,1,0]],[[1,0,2,1],[1,2,1,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,1],[1,2,1,2],[2,3,3,3],[1,1,1,0]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,1,3,1],[0,2,2,2],[1,1,2,2]],[[1,2,1,1],[2,1,3,1],[0,2,2,2],[1,1,3,1]],[[1,2,1,1],[2,1,3,1],[0,2,2,3],[1,1,2,1]],[[1,0,2,1],[1,2,1,2],[3,3,3,2],[1,2,0,0]],[[1,0,2,1],[1,2,1,2],[2,4,3,2],[1,2,0,0]],[[1,0,2,1],[1,2,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,1,3,1],[0,1,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,3,1],[0,1,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,3,1],[0,1,3,2],[2,2,2,0]],[[1,2,1,1],[2,1,3,1],[0,1,3,3],[1,2,2,0]],[[1,2,1,1],[2,1,3,1],[0,1,4,2],[1,2,2,0]],[[1,2,1,1],[2,1,4,1],[0,1,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,1],[0,1,3,2],[1,2,1,2]],[[1,2,1,1],[2,1,3,1],[0,1,3,3],[1,2,1,1]],[[1,2,1,1],[2,1,3,1],[0,1,4,2],[1,2,1,1]],[[1,2,1,1],[2,1,4,1],[0,1,3,2],[1,2,1,1]],[[1,2,1,1],[2,1,3,1],[0,1,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,3,1],[0,1,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,3,1],[0,1,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,3,1],[0,1,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,3,1],[0,1,4,1],[1,2,2,1]],[[1,2,1,1],[2,1,4,1],[0,1,3,1],[1,2,2,1]],[[1,2,1,1],[2,1,3,1],[0,1,2,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,1],[0,1,2,2],[1,2,3,1]],[[1,2,1,1],[2,1,3,1],[0,1,2,2],[1,3,2,1]],[[1,2,1,1],[2,1,3,1],[0,1,2,2],[2,2,2,1]],[[1,2,1,1],[2,1,3,1],[0,1,2,3],[1,2,2,1]],[[1,2,1,1],[2,1,3,1],[0,0,3,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,1],[0,0,3,2],[1,2,3,1]],[[1,2,1,1],[2,1,3,1],[0,0,3,3],[1,2,2,1]],[[1,0,2,2],[1,2,2,2],[0,1,3,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,3],[0,1,3,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[0,1,3,3],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[0,1,3,2],[1,2,3,1]],[[1,0,2,1],[1,2,2,2],[0,1,3,2],[1,2,2,2]],[[1,0,2,2],[1,2,2,2],[0,2,2,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,3],[0,2,2,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[0,2,2,3],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[0,2,2,2],[1,3,2,1]],[[1,0,2,1],[1,2,2,2],[0,2,2,2],[1,2,3,1]],[[1,0,2,1],[1,2,2,2],[0,2,2,2],[1,2,2,2]],[[1,0,2,1],[1,2,2,2],[0,2,4,1],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[0,2,3,1],[1,3,2,1]],[[1,0,2,1],[1,2,2,2],[0,2,3,1],[1,2,3,1]],[[1,0,2,1],[1,2,2,2],[0,2,3,1],[1,2,2,2]],[[1,0,2,2],[1,2,2,2],[0,2,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,2,3],[0,2,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,2,2],[0,2,4,2],[1,2,1,1]],[[1,0,2,1],[1,2,2,2],[0,2,3,3],[1,2,1,1]],[[1,0,2,1],[1,2,2,2],[0,2,3,2],[1,2,1,2]],[[1,0,2,2],[1,2,2,2],[0,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,2,3],[0,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,2,2],[0,2,4,2],[1,2,2,0]],[[1,0,2,1],[1,2,2,2],[0,2,3,3],[1,2,2,0]],[[1,0,2,1],[1,2,2,2],[0,2,3,2],[1,3,2,0]],[[1,0,2,1],[1,2,2,2],[0,2,3,2],[1,2,3,0]],[[1,0,2,2],[1,2,2,2],[0,3,2,2],[1,1,2,1]],[[1,0,2,1],[1,2,2,3],[0,3,2,2],[1,1,2,1]],[[1,0,2,1],[1,2,2,2],[0,3,2,3],[1,1,2,1]],[[1,0,2,1],[1,2,2,2],[0,3,2,2],[1,1,3,1]],[[1,0,2,1],[1,2,2,2],[0,3,2,2],[1,1,2,2]],[[1,0,2,1],[1,2,2,2],[0,3,4,1],[1,1,2,1]],[[1,0,2,1],[1,2,2,2],[0,3,3,1],[1,1,3,1]],[[1,0,2,1],[1,2,2,2],[0,3,3,1],[1,1,2,2]],[[1,0,2,2],[1,2,2,2],[0,3,3,2],[1,0,2,1]],[[1,0,2,1],[1,2,2,3],[0,3,3,2],[1,0,2,1]],[[1,0,2,1],[1,2,2,2],[0,3,4,2],[1,0,2,1]],[[1,0,2,1],[1,2,2,2],[0,3,3,3],[1,0,2,1]],[[1,0,2,1],[1,2,2,2],[0,3,3,2],[1,0,2,2]],[[1,0,2,2],[1,2,2,2],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,2,2,3],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,2,2,2],[0,3,4,2],[1,1,1,1]],[[1,0,2,1],[1,2,2,2],[0,3,3,3],[1,1,1,1]],[[1,0,2,1],[1,2,2,2],[0,3,3,2],[1,1,1,2]],[[1,0,2,2],[1,2,2,2],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,2,2,3],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,2,2,2],[0,3,4,2],[1,1,2,0]],[[1,0,2,1],[1,2,2,2],[0,3,3,3],[1,1,2,0]],[[1,0,2,1],[1,2,2,2],[0,3,3,2],[1,1,3,0]],[[1,0,2,2],[1,2,2,2],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,2,2,3],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,2,2,2],[0,3,4,2],[1,2,0,1]],[[1,0,2,1],[1,2,2,2],[0,3,3,3],[1,2,0,1]],[[1,0,2,1],[1,2,2,2],[0,3,3,2],[1,2,0,2]],[[1,0,2,2],[1,2,2,2],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,2,2,3],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,2,2,2],[0,3,4,2],[1,2,1,0]],[[1,0,2,1],[1,2,2,2],[0,3,3,3],[1,2,1,0]],[[1,0,2,2],[1,2,2,2],[1,1,3,2],[0,2,2,1]],[[1,0,2,1],[1,2,2,3],[1,1,3,2],[0,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,1,3,3],[0,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,1,3,2],[0,2,3,1]],[[1,0,2,1],[1,2,2,2],[1,1,3,2],[0,2,2,2]],[[1,0,3,1],[1,2,2,2],[1,2,1,2],[1,2,2,1]],[[1,0,2,2],[1,2,2,2],[1,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,3],[1,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,2,1,3],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,2,1,2],[2,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,2,1,2],[1,3,2,1]],[[1,0,2,1],[1,2,2,2],[1,2,1,2],[1,2,3,1]],[[1,0,2,1],[1,2,2,2],[1,2,1,2],[1,2,2,2]],[[1,0,2,2],[1,2,2,2],[1,2,2,2],[0,2,2,1]],[[1,0,2,1],[1,2,2,3],[1,2,2,2],[0,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,2,2,3],[0,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,2,2,2],[0,2,3,1]],[[1,0,2,1],[1,2,2,2],[1,2,2,2],[0,2,2,2]],[[1,0,3,1],[1,2,2,2],[1,2,2,2],[1,2,1,1]],[[1,0,2,2],[1,2,2,2],[1,2,2,2],[1,2,1,1]],[[1,0,2,1],[1,2,2,3],[1,2,2,2],[1,2,1,1]],[[1,0,2,1],[1,2,2,2],[1,2,2,3],[1,2,1,1]],[[1,0,2,1],[1,2,2,2],[1,2,2,2],[1,2,1,2]],[[1,0,3,1],[1,2,2,2],[1,2,2,2],[1,2,2,0]],[[1,0,2,2],[1,2,2,2],[1,2,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,2,3],[1,2,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,2,2],[1,2,2,3],[1,2,2,0]],[[1,0,3,1],[1,2,2,2],[1,2,3,0],[1,2,2,1]],[[1,0,2,2],[1,2,2,2],[1,2,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,2,3],[1,2,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,2,4,1],[0,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,2,3,1],[0,2,3,1]],[[1,0,2,1],[1,2,2,2],[1,2,3,1],[0,2,2,2]],[[1,0,3,1],[1,2,2,2],[1,2,3,1],[1,2,1,1]],[[1,0,2,2],[1,2,2,2],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,2,3],[1,2,3,1],[1,2,1,1]],[[1,0,3,1],[1,2,2,2],[1,2,3,1],[1,2,2,0]],[[1,0,2,2],[1,2,2,2],[1,2,3,1],[1,2,2,0]],[[1,0,2,1],[1,2,2,3],[1,2,3,1],[1,2,2,0]],[[1,0,2,2],[1,2,2,2],[1,2,3,2],[0,2,1,1]],[[1,0,2,1],[1,2,2,3],[1,2,3,2],[0,2,1,1]],[[1,0,2,1],[1,2,2,2],[1,2,4,2],[0,2,1,1]],[[1,0,2,1],[1,2,2,2],[1,2,3,3],[0,2,1,1]],[[1,0,2,1],[1,2,2,2],[1,2,3,2],[0,2,1,2]],[[1,0,2,2],[1,2,2,2],[1,2,3,2],[0,2,2,0]],[[1,0,2,1],[1,2,2,3],[1,2,3,2],[0,2,2,0]],[[1,0,2,1],[1,2,2,2],[1,2,4,2],[0,2,2,0]],[[1,0,2,1],[1,2,2,2],[1,2,3,3],[0,2,2,0]],[[1,0,2,1],[1,2,2,2],[1,2,3,2],[0,2,3,0]],[[1,0,3,1],[1,2,2,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,2],[1,2,2,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,3],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,4,0,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,0,3],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,0,2],[2,2,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,0,2],[1,3,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,0,2],[1,2,3,1]],[[1,0,2,1],[1,2,2,2],[1,3,0,2],[1,2,2,2]],[[1,0,3,1],[1,2,2,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,2],[1,2,2,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,2,2,3],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,1,3],[1,1,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,1,2],[1,1,3,1]],[[1,0,2,1],[1,2,2,2],[1,3,1,2],[1,1,2,2]],[[1,0,2,2],[1,2,2,2],[1,3,2,2],[0,1,2,1]],[[1,0,2,1],[1,2,2,3],[1,3,2,2],[0,1,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,2,3],[0,1,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,2,2],[0,1,3,1]],[[1,0,2,1],[1,2,2,2],[1,3,2,2],[0,1,2,2]],[[1,0,3,1],[1,2,2,2],[1,3,2,2],[1,1,1,1]],[[1,0,2,2],[1,2,2,2],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[1,2,2,3],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[1,2,2,2],[1,3,2,3],[1,1,1,1]],[[1,0,2,1],[1,2,2,2],[1,3,2,2],[1,1,1,2]],[[1,0,3,1],[1,2,2,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,2],[1,2,2,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,2,2,3],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,2,2,2],[1,3,2,3],[1,1,2,0]],[[1,0,3,1],[1,2,2,2],[1,3,2,2],[1,2,0,1]],[[1,0,2,2],[1,2,2,2],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[1,2,2,3],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[1,2,2,2],[1,3,2,3],[1,2,0,1]],[[1,0,2,1],[1,2,2,2],[1,3,2,2],[1,2,0,2]],[[1,0,3,1],[1,2,2,2],[1,3,2,2],[1,2,1,0]],[[1,0,2,2],[1,2,2,2],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[1,2,2,3],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[1,2,2,2],[1,3,2,3],[1,2,1,0]],[[1,2,1,1],[2,1,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,1,1],[2,1,3,0],[2,4,3,2],[1,1,0,0]],[[1,0,3,1],[1,2,2,2],[1,3,3,0],[1,1,2,1]],[[1,0,2,2],[1,2,2,2],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[1,2,2,3],[1,3,3,0],[1,1,2,1]],[[1,0,3,1],[1,2,2,2],[1,3,3,0],[1,2,1,1]],[[1,0,2,2],[1,2,2,2],[1,3,3,0],[1,2,1,1]],[[1,0,2,1],[1,2,2,3],[1,3,3,0],[1,2,1,1]],[[1,0,2,1],[1,2,2,2],[1,3,4,1],[0,1,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,3,1],[0,1,3,1]],[[1,0,2,1],[1,2,2,2],[1,3,3,1],[0,1,2,2]],[[1,0,3,1],[1,2,2,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,2],[1,2,2,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,2,3],[1,3,3,1],[1,1,1,1]],[[1,0,3,1],[1,2,2,2],[1,3,3,1],[1,1,2,0]],[[1,0,2,2],[1,2,2,2],[1,3,3,1],[1,1,2,0]],[[1,0,2,1],[1,2,2,3],[1,3,3,1],[1,1,2,0]],[[1,0,3,1],[1,2,2,2],[1,3,3,1],[1,2,0,1]],[[1,0,2,2],[1,2,2,2],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,2,2,3],[1,3,3,1],[1,2,0,1]],[[1,0,3,1],[1,2,2,2],[1,3,3,1],[1,2,1,0]],[[1,0,2,2],[1,2,2,2],[1,3,3,1],[1,2,1,0]],[[1,0,2,1],[1,2,2,3],[1,3,3,1],[1,2,1,0]],[[1,2,1,1],[2,1,3,0],[3,3,3,2],[1,1,0,0]],[[1,2,1,1],[3,1,3,0],[2,3,3,2],[1,1,0,0]],[[1,3,1,1],[2,1,3,0],[2,3,3,2],[1,1,0,0]],[[2,2,1,1],[2,1,3,0],[2,3,3,2],[1,1,0,0]],[[1,0,2,2],[1,2,2,2],[1,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,2,2,3],[1,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,4,2],[0,0,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,3,3],[0,0,2,1]],[[1,0,2,1],[1,2,2,2],[1,3,3,2],[0,0,2,2]],[[1,0,2,2],[1,2,2,2],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,2,2,3],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,2,2,2],[1,3,4,2],[0,1,1,1]],[[1,0,2,1],[1,2,2,2],[1,3,3,3],[0,1,1,1]],[[1,0,2,1],[1,2,2,2],[1,3,3,2],[0,1,1,2]],[[1,0,2,2],[1,2,2,2],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,2,2,3],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,2,2,2],[1,3,4,2],[0,1,2,0]],[[1,0,2,1],[1,2,2,2],[1,3,3,3],[0,1,2,0]],[[1,0,2,1],[1,2,2,2],[1,3,3,2],[0,1,3,0]],[[1,0,2,2],[1,2,2,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,2,2,3],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,2,2,2],[1,3,4,2],[0,2,0,1]],[[1,0,2,1],[1,2,2,2],[1,3,3,3],[0,2,0,1]],[[1,0,2,1],[1,2,2,2],[1,3,3,2],[0,2,0,2]],[[1,0,2,2],[1,2,2,2],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,2,2,3],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,2,2,2],[1,3,4,2],[0,2,1,0]],[[1,0,2,1],[1,2,2,2],[1,3,3,3],[0,2,1,0]],[[1,0,2,2],[1,2,2,2],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,2,2,3],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,2,2,2],[1,3,4,2],[1,0,1,1]],[[1,0,2,1],[1,2,2,2],[1,3,3,3],[1,0,1,1]],[[1,0,2,1],[1,2,2,2],[1,3,3,2],[1,0,1,2]],[[1,0,2,2],[1,2,2,2],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,2,2,3],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,2,2,2],[1,3,4,2],[1,0,2,0]],[[1,0,2,1],[1,2,2,2],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,1,1],[2,1,3,0],[3,3,3,2],[0,2,0,0]],[[1,2,1,1],[3,1,3,0],[2,3,3,2],[0,2,0,0]],[[1,3,1,1],[2,1,3,0],[2,3,3,2],[0,2,0,0]],[[2,2,1,1],[2,1,3,0],[2,3,3,2],[0,2,0,0]],[[1,0,3,1],[1,2,2,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,2],[1,2,2,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,3],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[3,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[2,1,1,3],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[2,1,1,2],[2,2,2,1]],[[1,0,2,1],[1,2,2,2],[2,1,1,2],[1,3,2,1]],[[1,0,2,1],[1,2,2,2],[2,1,1,2],[1,2,3,1]],[[1,0,2,1],[1,2,2,2],[2,1,1,2],[1,2,2,2]],[[1,0,3,1],[1,2,2,2],[2,1,2,2],[1,2,1,1]],[[1,0,2,2],[1,2,2,2],[2,1,2,2],[1,2,1,1]],[[1,0,2,1],[1,2,2,3],[2,1,2,2],[1,2,1,1]],[[1,0,2,1],[1,2,2,2],[2,1,2,3],[1,2,1,1]],[[1,0,2,1],[1,2,2,2],[2,1,2,2],[1,2,1,2]],[[1,0,3,1],[1,2,2,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,2],[1,2,2,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,2,3],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,2,2],[2,1,2,3],[1,2,2,0]],[[1,0,3,1],[1,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,2],[1,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,2,3],[2,1,3,0],[1,2,2,1]],[[1,0,3,1],[1,2,2,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,2],[1,2,2,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,2,3],[2,1,3,1],[1,2,1,1]],[[1,0,3,1],[1,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,2],[1,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,2,2,3],[2,1,3,1],[1,2,2,0]],[[1,0,3,1],[1,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,2],[1,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,3],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[3,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[2,2,0,3],[1,2,2,1]],[[1,0,2,1],[1,2,2,2],[2,2,0,2],[2,2,2,1]],[[1,0,2,1],[1,2,2,2],[2,2,0,2],[1,3,2,1]],[[1,0,2,1],[1,2,2,2],[2,2,0,2],[1,2,3,1]],[[1,0,2,1],[1,2,2,2],[2,2,0,2],[1,2,2,2]],[[1,0,3,1],[1,2,2,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,2],[1,2,2,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,2,3],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,2,2],[2,2,1,3],[0,2,2,1]],[[1,0,2,1],[1,2,2,2],[2,2,1,2],[0,3,2,1]],[[1,0,2,1],[1,2,2,2],[2,2,1,2],[0,2,3,1]],[[1,0,2,1],[1,2,2,2],[2,2,1,2],[0,2,2,2]],[[1,0,3,1],[1,2,2,2],[2,2,2,2],[0,2,1,1]],[[1,0,2,2],[1,2,2,2],[2,2,2,2],[0,2,1,1]],[[1,0,2,1],[1,2,2,3],[2,2,2,2],[0,2,1,1]],[[1,0,2,1],[1,2,2,2],[2,2,2,3],[0,2,1,1]],[[1,0,2,1],[1,2,2,2],[2,2,2,2],[0,2,1,2]],[[1,0,3,1],[1,2,2,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,2],[1,2,2,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[1,2,2,3],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[1,2,2,2],[2,2,2,3],[0,2,2,0]],[[1,0,3,1],[1,2,2,2],[2,2,3,0],[0,2,2,1]],[[1,0,2,2],[1,2,2,2],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[1,2,2,3],[2,2,3,0],[0,2,2,1]],[[1,0,3,1],[1,2,2,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,2],[1,2,2,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,2,3],[2,2,3,1],[0,2,1,1]],[[1,0,3,1],[1,2,2,2],[2,2,3,1],[0,2,2,0]],[[1,0,2,2],[1,2,2,2],[2,2,3,1],[0,2,2,0]],[[1,0,2,1],[1,2,2,3],[2,2,3,1],[0,2,2,0]],[[1,0,3,1],[1,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,2],[1,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,2,2,3],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,2,2,2],[3,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,2,2,2],[2,4,0,2],[0,2,2,1]],[[1,0,2,1],[1,2,2,2],[2,3,0,3],[0,2,2,1]],[[1,0,2,1],[1,2,2,2],[2,3,0,2],[0,3,2,1]],[[1,0,2,1],[1,2,2,2],[2,3,0,2],[0,2,3,1]],[[1,0,2,1],[1,2,2,2],[2,3,0,2],[0,2,2,2]],[[1,0,2,1],[1,2,2,2],[3,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,2,2,2],[2,4,0,2],[1,1,2,1]],[[1,0,2,1],[1,2,2,2],[2,3,0,2],[2,1,2,1]],[[1,0,3,1],[1,2,2,2],[2,3,1,2],[0,1,2,1]],[[1,0,2,2],[1,2,2,2],[2,3,1,2],[0,1,2,1]],[[1,0,2,1],[1,2,2,3],[2,3,1,2],[0,1,2,1]],[[1,0,2,1],[1,2,2,2],[2,3,1,3],[0,1,2,1]],[[1,0,2,1],[1,2,2,2],[2,3,1,2],[0,1,3,1]],[[1,0,2,1],[1,2,2,2],[2,3,1,2],[0,1,2,2]],[[1,0,3,1],[1,2,2,2],[2,3,1,2],[1,0,2,1]],[[1,0,2,2],[1,2,2,2],[2,3,1,2],[1,0,2,1]],[[1,0,2,1],[1,2,2,3],[2,3,1,2],[1,0,2,1]],[[1,0,2,1],[1,2,2,2],[2,3,1,3],[1,0,2,1]],[[1,0,2,1],[1,2,2,2],[2,3,1,2],[1,0,3,1]],[[1,0,2,1],[1,2,2,2],[2,3,1,2],[1,0,2,2]],[[1,0,3,1],[1,2,2,2],[2,3,2,2],[0,0,2,1]],[[1,0,2,2],[1,2,2,2],[2,3,2,2],[0,0,2,1]],[[1,0,2,1],[1,2,2,3],[2,3,2,2],[0,0,2,1]],[[1,0,2,1],[1,2,2,2],[2,3,2,3],[0,0,2,1]],[[1,0,2,1],[1,2,2,2],[2,3,2,2],[0,0,2,2]],[[1,0,3,1],[1,2,2,2],[2,3,2,2],[0,1,1,1]],[[1,0,2,2],[1,2,2,2],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,2,2,3],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,2,2,2],[2,3,2,3],[0,1,1,1]],[[1,0,2,1],[1,2,2,2],[2,3,2,2],[0,1,1,2]],[[1,0,3,1],[1,2,2,2],[2,3,2,2],[0,1,2,0]],[[1,0,2,2],[1,2,2,2],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,2,2,3],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,2,2,2],[2,3,2,3],[0,1,2,0]],[[1,0,3,1],[1,2,2,2],[2,3,2,2],[0,2,0,1]],[[1,0,2,2],[1,2,2,2],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,2,2,3],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,2,2,2],[2,3,2,3],[0,2,0,1]],[[1,0,2,1],[1,2,2,2],[2,3,2,2],[0,2,0,2]],[[1,0,3,1],[1,2,2,2],[2,3,2,2],[0,2,1,0]],[[1,0,2,2],[1,2,2,2],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,2,2,3],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,2,2,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,1],[2,1,3,0],[2,3,2,2],[2,2,0,0]],[[1,2,1,1],[2,1,3,0],[2,4,2,2],[1,2,0,0]],[[1,0,3,1],[1,2,2,2],[2,3,2,2],[1,0,1,1]],[[1,0,2,2],[1,2,2,2],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[1,2,2,3],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[1,2,2,2],[2,3,2,3],[1,0,1,1]],[[1,0,2,1],[1,2,2,2],[2,3,2,2],[1,0,1,2]],[[1,0,3,1],[1,2,2,2],[2,3,2,2],[1,0,2,0]],[[1,0,2,2],[1,2,2,2],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[1,2,2,3],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[1,2,2,2],[2,3,2,3],[1,0,2,0]],[[1,0,3,1],[1,2,2,2],[2,3,2,2],[1,1,0,1]],[[1,0,2,2],[1,2,2,2],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[1,2,2,3],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[1,2,2,2],[2,3,2,3],[1,1,0,1]],[[1,0,2,1],[1,2,2,2],[2,3,2,2],[1,1,0,2]],[[1,0,3,1],[1,2,2,2],[2,3,2,2],[1,1,1,0]],[[1,0,2,2],[1,2,2,2],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[1,2,2,3],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[1,2,2,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,1],[2,1,3,0],[3,3,2,2],[1,2,0,0]],[[1,2,1,1],[3,1,3,0],[2,3,2,2],[1,2,0,0]],[[1,3,1,1],[2,1,3,0],[2,3,2,2],[1,2,0,0]],[[2,2,1,1],[2,1,3,0],[2,3,2,2],[1,2,0,0]],[[1,2,1,1],[2,1,3,0],[2,3,2,2],[2,1,1,0]],[[1,2,1,1],[2,1,3,0],[2,4,2,2],[1,1,1,0]],[[1,2,1,1],[2,1,3,0],[3,3,2,2],[1,1,1,0]],[[1,2,1,1],[3,1,3,0],[2,3,2,2],[1,1,1,0]],[[1,3,1,1],[2,1,3,0],[2,3,2,2],[1,1,1,0]],[[2,2,1,1],[2,1,3,0],[2,3,2,2],[1,1,1,0]],[[1,2,1,1],[2,1,3,0],[2,3,2,2],[2,1,0,1]],[[1,2,1,1],[2,1,3,0],[2,4,2,2],[1,1,0,1]],[[1,2,1,1],[2,1,3,0],[3,3,2,2],[1,1,0,1]],[[1,2,1,1],[3,1,3,0],[2,3,2,2],[1,1,0,1]],[[1,3,1,1],[2,1,3,0],[2,3,2,2],[1,1,0,1]],[[2,2,1,1],[2,1,3,0],[2,3,2,2],[1,1,0,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,2],[1,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,2,2,3],[2,3,3,0],[0,1,2,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,2],[1,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,2,2,3],[2,3,3,0],[0,2,1,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,2],[1,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[1,2,2,3],[2,3,3,0],[1,0,2,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,2],[1,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[1,2,2,3],[2,3,3,0],[1,1,1,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,1],[0,0,2,1]],[[1,0,2,2],[1,2,2,2],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,2,2,3],[2,3,3,1],[0,0,2,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,2],[1,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,2,2,3],[2,3,3,1],[0,1,1,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,2],[1,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,2,2,3],[2,3,3,1],[0,1,2,0]],[[1,0,3,1],[1,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,2],[1,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,2,2,3],[2,3,3,1],[0,2,0,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,2],[1,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,2,2,3],[2,3,3,1],[0,2,1,0]],[[1,2,1,1],[2,1,3,0],[2,3,2,2],[2,0,2,0]],[[1,2,1,1],[2,1,3,0],[2,4,2,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,0],[3,3,2,2],[1,0,2,0]],[[1,2,1,1],[3,1,3,0],[2,3,2,2],[1,0,2,0]],[[1,3,1,1],[2,1,3,0],[2,3,2,2],[1,0,2,0]],[[2,2,1,1],[2,1,3,0],[2,3,2,2],[1,0,2,0]],[[1,2,1,1],[2,1,3,0],[2,3,2,2],[2,0,1,1]],[[1,2,1,1],[2,1,3,0],[2,4,2,2],[1,0,1,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,2],[1,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[1,2,2,3],[2,3,3,1],[1,0,1,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,2],[1,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[1,2,2,3],[2,3,3,1],[1,0,2,0]],[[1,0,3,1],[1,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,2],[1,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[1,2,2,3],[2,3,3,1],[1,1,0,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,2],[1,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[1,2,2,3],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[2,1,3,0],[3,3,2,2],[1,0,1,1]],[[1,2,1,1],[3,1,3,0],[2,3,2,2],[1,0,1,1]],[[1,3,1,1],[2,1,3,0],[2,3,2,2],[1,0,1,1]],[[2,2,1,1],[2,1,3,0],[2,3,2,2],[1,0,1,1]],[[1,2,1,1],[2,1,3,0],[2,3,2,2],[0,3,1,0]],[[1,2,1,1],[2,1,3,0],[2,4,2,2],[0,2,1,0]],[[1,2,1,1],[2,1,3,0],[3,3,2,2],[0,2,1,0]],[[1,2,1,1],[3,1,3,0],[2,3,2,2],[0,2,1,0]],[[1,3,1,1],[2,1,3,0],[2,3,2,2],[0,2,1,0]],[[2,2,1,1],[2,1,3,0],[2,3,2,2],[0,2,1,0]],[[1,2,1,1],[2,1,3,0],[2,3,2,2],[0,3,0,1]],[[1,2,1,1],[2,1,3,0],[2,4,2,2],[0,2,0,1]],[[1,2,1,1],[2,1,3,0],[3,3,2,2],[0,2,0,1]],[[1,2,1,1],[3,1,3,0],[2,3,2,2],[0,2,0,1]],[[1,3,1,1],[2,1,3,0],[2,3,2,2],[0,2,0,1]],[[2,2,1,1],[2,1,3,0],[2,3,2,2],[0,2,0,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,2],[0,1,0,1]],[[1,0,2,2],[1,2,2,2],[2,3,3,2],[0,1,0,1]],[[1,0,2,1],[1,2,2,3],[2,3,3,2],[0,1,0,1]],[[1,0,2,1],[1,2,2,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,1],[2,1,3,0],[2,4,2,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,0],[3,3,2,2],[0,1,2,0]],[[1,2,1,1],[3,1,3,0],[2,3,2,2],[0,1,2,0]],[[1,3,1,1],[2,1,3,0],[2,3,2,2],[0,1,2,0]],[[2,2,1,1],[2,1,3,0],[2,3,2,2],[0,1,2,0]],[[1,2,1,1],[2,1,3,0],[2,4,2,2],[0,1,1,1]],[[1,2,1,1],[2,1,3,0],[3,3,2,2],[0,1,1,1]],[[1,2,1,1],[3,1,3,0],[2,3,2,2],[0,1,1,1]],[[1,3,1,1],[2,1,3,0],[2,3,2,2],[0,1,1,1]],[[2,2,1,1],[2,1,3,0],[2,3,2,2],[0,1,1,1]],[[1,2,1,1],[2,1,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,1,1],[2,1,3,0],[2,4,2,1],[1,2,0,1]],[[1,2,1,1],[2,1,3,0],[3,3,2,1],[1,2,0,1]],[[1,2,1,1],[3,1,3,0],[2,3,2,1],[1,2,0,1]],[[1,3,1,1],[2,1,3,0],[2,3,2,1],[1,2,0,1]],[[2,2,1,1],[2,1,3,0],[2,3,2,1],[1,2,0,1]],[[1,2,1,1],[2,1,3,0],[2,3,2,1],[2,1,1,1]],[[1,0,3,1],[1,2,2,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,2],[1,2,2,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[1,2,2,3],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[1,2,2,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,1],[2,1,3,0],[2,4,2,1],[1,1,1,1]],[[1,2,1,1],[2,1,3,0],[3,3,2,1],[1,1,1,1]],[[1,2,1,1],[3,1,3,0],[2,3,2,1],[1,1,1,1]],[[1,3,1,1],[2,1,3,0],[2,3,2,1],[1,1,1,1]],[[2,2,1,1],[2,1,3,0],[2,3,2,1],[1,1,1,1]],[[1,2,1,1],[2,1,3,0],[2,3,2,1],[2,0,2,1]],[[1,2,1,1],[2,1,3,0],[2,4,2,1],[1,0,2,1]],[[1,2,1,1],[2,1,3,0],[3,3,2,1],[1,0,2,1]],[[1,2,1,1],[3,1,3,0],[2,3,2,1],[1,0,2,1]],[[1,3,1,1],[2,1,3,0],[2,3,2,1],[1,0,2,1]],[[2,2,1,1],[2,1,3,0],[2,3,2,1],[1,0,2,1]],[[1,2,1,1],[2,1,3,0],[2,3,2,1],[0,3,1,1]],[[1,2,1,1],[2,1,3,0],[2,4,2,1],[0,2,1,1]],[[1,2,1,1],[2,1,3,0],[3,3,2,1],[0,2,1,1]],[[1,2,1,1],[3,1,3,0],[2,3,2,1],[0,2,1,1]],[[1,3,1,1],[2,1,3,0],[2,3,2,1],[0,2,1,1]],[[2,2,1,1],[2,1,3,0],[2,3,2,1],[0,2,1,1]],[[1,2,1,1],[2,1,3,0],[2,4,2,1],[0,1,2,1]],[[1,2,1,1],[2,1,3,0],[3,3,2,1],[0,1,2,1]],[[1,2,1,1],[3,1,3,0],[2,3,2,1],[0,1,2,1]],[[1,3,1,1],[2,1,3,0],[2,3,2,1],[0,1,2,1]],[[2,2,1,1],[2,1,3,0],[2,3,2,1],[0,1,2,1]],[[1,2,1,1],[2,1,3,0],[2,3,1,2],[2,1,2,0]],[[1,2,1,1],[2,1,3,0],[2,4,1,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,0],[3,3,1,2],[1,1,2,0]],[[1,2,1,1],[3,1,3,0],[2,3,1,2],[1,1,2,0]],[[1,3,1,1],[2,1,3,0],[2,3,1,2],[1,1,2,0]],[[2,2,1,1],[2,1,3,0],[2,3,1,2],[1,1,2,0]],[[1,2,1,1],[2,1,3,0],[2,3,1,2],[0,2,3,0]],[[1,2,1,1],[2,1,3,0],[2,3,1,2],[0,3,2,0]],[[1,2,1,1],[2,1,3,0],[2,4,1,2],[0,2,2,0]],[[1,2,1,1],[2,1,3,0],[3,3,1,2],[0,2,2,0]],[[1,2,1,1],[3,1,3,0],[2,3,1,2],[0,2,2,0]],[[1,3,1,1],[2,1,3,0],[2,3,1,2],[0,2,2,0]],[[2,2,1,1],[2,1,3,0],[2,3,1,2],[0,2,2,0]],[[1,2,1,1],[2,1,3,0],[2,3,1,1],[2,1,2,1]],[[1,2,1,1],[2,1,3,0],[2,4,1,1],[1,1,2,1]],[[1,2,1,1],[2,1,3,0],[3,3,1,1],[1,1,2,1]],[[1,2,1,1],[3,1,3,0],[2,3,1,1],[1,1,2,1]],[[1,3,1,1],[2,1,3,0],[2,3,1,1],[1,1,2,1]],[[2,2,1,1],[2,1,3,0],[2,3,1,1],[1,1,2,1]],[[1,2,1,1],[2,1,3,0],[2,3,1,1],[0,2,2,2]],[[1,2,1,1],[2,1,3,0],[2,3,1,1],[0,2,3,1]],[[1,0,2,1],[1,2,3,0],[0,3,2,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[0,3,2,2],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[0,3,2,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[0,3,2,2],[1,2,2,2]],[[1,0,2,1],[1,2,4,0],[0,3,3,1],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[0,3,4,1],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[0,3,3,1],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[0,3,3,1],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[0,3,3,1],[1,2,2,2]],[[1,0,2,1],[1,2,4,0],[0,3,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[0,3,4,2],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[0,3,3,3],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[0,3,3,2],[1,2,1,2]],[[1,0,2,1],[1,2,4,0],[0,3,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[0,3,4,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[0,3,3,3],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[0,3,3,2],[1,3,2,0]],[[1,0,2,1],[1,2,3,0],[0,3,3,2],[1,2,3,0]],[[1,0,2,1],[1,2,3,0],[1,1,3,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,1,3,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[1,1,3,2],[1,2,2,2]],[[1,0,2,1],[1,2,3,0],[1,2,2,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,2,2,2],[2,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,2,2,2],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[1,2,2,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[1,2,2,2],[1,2,2,2]],[[1,0,3,1],[1,2,3,0],[1,2,3,1],[1,2,2,1]],[[1,0,2,2],[1,2,3,0],[1,2,3,1],[1,2,2,1]],[[1,0,2,1],[1,2,4,0],[1,2,3,1],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,2,4,1],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,2,3,1],[2,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,2,3,1],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[1,2,3,1],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[1,2,3,1],[1,2,2,2]],[[1,0,3,1],[1,2,3,0],[1,2,3,2],[1,2,1,1]],[[1,0,2,2],[1,2,3,0],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,4,0],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[1,2,4,2],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[1,2,3,3],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[1,2,3,2],[1,2,1,2]],[[1,0,3,1],[1,2,3,0],[1,2,3,2],[1,2,2,0]],[[1,0,2,2],[1,2,3,0],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,4,0],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[1,2,4,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[1,2,3,3],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[1,2,3,2],[2,2,2,0]],[[1,0,2,1],[1,2,3,0],[1,2,3,2],[1,3,2,0]],[[1,0,2,1],[1,2,3,0],[1,2,3,2],[1,2,3,0]],[[1,0,2,1],[1,2,3,0],[1,4,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,1,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,1,2],[2,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,1,2],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,1,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[1,3,1,2],[1,2,2,2]],[[1,0,2,1],[1,2,3,0],[1,4,2,1],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,2,1],[2,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,2,1],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,2,1],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[1,3,2,1],[1,2,2,2]],[[1,0,2,1],[1,2,3,0],[1,3,2,3],[1,1,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,2,2],[1,1,3,1]],[[1,0,2,1],[1,2,3,0],[1,3,2,2],[1,1,2,2]],[[1,0,2,1],[1,2,3,0],[1,4,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[1,3,2,2],[2,2,2,0]],[[1,0,2,1],[1,2,3,0],[1,3,2,2],[1,3,2,0]],[[1,0,2,1],[1,2,3,0],[1,3,2,2],[1,2,3,0]],[[1,0,2,1],[1,2,3,0],[1,4,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,0],[2,2,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,0],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,0],[1,2,3,1]],[[1,0,3,1],[1,2,3,0],[1,3,3,1],[1,1,2,1]],[[1,0,2,2],[1,2,3,0],[1,3,3,1],[1,1,2,1]],[[1,0,2,1],[1,2,4,0],[1,3,3,1],[1,1,2,1]],[[1,0,2,1],[1,2,3,0],[1,4,3,1],[1,1,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,4,1],[1,1,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,1],[1,1,3,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,1],[1,1,2,2]],[[1,0,3,1],[1,2,3,0],[1,3,3,1],[1,2,1,1]],[[1,0,2,2],[1,2,3,0],[1,3,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,4,0],[1,3,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[1,4,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[1,3,4,1],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,1],[2,2,1,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,1],[1,3,1,1]],[[1,0,2,1],[1,2,4,0],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,4,2],[1,0,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,3],[1,0,2,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,2],[1,0,2,2]],[[1,0,3,1],[1,2,3,0],[1,3,3,2],[1,1,1,1]],[[1,0,2,2],[1,2,3,0],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,2,4,0],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,2,3,0],[1,4,3,2],[1,1,1,1]],[[1,0,2,1],[1,2,3,0],[1,3,4,2],[1,1,1,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,3],[1,1,1,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,2],[1,1,1,2]],[[1,0,3,1],[1,2,3,0],[1,3,3,2],[1,1,2,0]],[[1,0,2,2],[1,2,3,0],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,2,4,0],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,2,3,0],[1,4,3,2],[1,1,2,0]],[[1,0,2,1],[1,2,3,0],[1,3,4,2],[1,1,2,0]],[[1,0,2,1],[1,2,3,0],[1,3,3,3],[1,1,2,0]],[[1,0,2,1],[1,2,3,0],[1,3,3,2],[1,1,3,0]],[[1,0,3,1],[1,2,3,0],[1,3,3,2],[1,2,0,1]],[[1,0,2,2],[1,2,3,0],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,2,4,0],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,2,3,0],[1,4,3,2],[1,2,0,1]],[[1,0,2,1],[1,2,3,0],[1,3,4,2],[1,2,0,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,3],[1,2,0,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,2],[2,2,0,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,2],[1,3,0,1]],[[1,0,2,1],[1,2,3,0],[1,3,3,2],[1,2,0,2]],[[1,0,3,1],[1,2,3,0],[1,3,3,2],[1,2,1,0]],[[1,0,2,2],[1,2,3,0],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,2,4,0],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,2,3,0],[1,4,3,2],[1,2,1,0]],[[1,0,2,1],[1,2,3,0],[1,3,4,2],[1,2,1,0]],[[1,0,2,1],[1,2,3,0],[1,3,3,3],[1,2,1,0]],[[1,0,2,1],[1,2,3,0],[1,3,3,2],[2,2,1,0]],[[1,0,2,1],[1,2,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,1,3,0],[2,3,1,1],[0,3,2,1]],[[1,2,1,1],[2,1,3,0],[2,4,1,1],[0,2,2,1]],[[1,2,1,1],[2,1,3,0],[3,3,1,1],[0,2,2,1]],[[1,2,1,1],[3,1,3,0],[2,3,1,1],[0,2,2,1]],[[1,3,1,1],[2,1,3,0],[2,3,1,1],[0,2,2,1]],[[2,2,1,1],[2,1,3,0],[2,3,1,1],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,0,3,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,0,3,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[2,0,3,2],[1,2,2,2]],[[1,0,2,1],[1,2,3,0],[3,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,1,2,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,1,2,2],[2,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,1,2,2],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[2,1,2,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[2,1,2,2],[1,2,2,2]],[[1,0,3,1],[1,2,3,0],[2,1,3,1],[1,2,2,1]],[[1,0,2,2],[1,2,3,0],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[1,2,4,0],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[3,1,3,1],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,1,4,1],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,1,3,1],[2,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,1,3,1],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[2,1,3,1],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[2,1,3,1],[1,2,2,2]],[[1,0,2,1],[1,2,3,0],[2,1,3,3],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,1,3,2],[0,2,3,1]],[[1,0,2,1],[1,2,3,0],[2,1,3,2],[0,2,2,2]],[[1,0,3,1],[1,2,3,0],[2,1,3,2],[1,2,1,1]],[[1,0,2,2],[1,2,3,0],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,4,0],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[2,1,4,2],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[2,1,3,3],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[2,1,3,2],[1,2,1,2]],[[1,0,3,1],[1,2,3,0],[2,1,3,2],[1,2,2,0]],[[1,0,2,2],[1,2,3,0],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,4,0],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[3,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[2,1,4,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[2,1,3,3],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[2,1,3,2],[2,2,2,0]],[[1,0,2,1],[1,2,3,0],[2,1,3,2],[1,3,2,0]],[[1,0,2,1],[1,2,3,0],[2,1,3,2],[1,2,3,0]],[[1,0,2,1],[1,2,3,0],[3,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,1,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,1,2],[2,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,1,2],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,1,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[2,2,1,2],[1,2,2,2]],[[1,0,2,1],[1,2,3,0],[3,2,2,1],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,2,1],[2,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,2,1],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,2,1],[1,2,3,1]],[[1,0,2,1],[1,2,3,0],[2,2,2,1],[1,2,2,2]],[[1,0,2,1],[1,2,3,0],[2,2,2,3],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,2,2],[0,3,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,2,2],[0,2,3,1]],[[1,0,2,1],[1,2,3,0],[2,2,2,2],[0,2,2,2]],[[1,0,2,1],[1,2,3,0],[3,2,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[2,2,2,2],[2,2,2,0]],[[1,0,2,1],[1,2,3,0],[2,2,2,2],[1,3,2,0]],[[1,0,2,1],[1,2,3,0],[2,2,2,2],[1,2,3,0]],[[1,0,2,1],[1,2,3,0],[3,2,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,0],[2,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,0],[1,3,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,0],[1,2,3,1]],[[1,0,3,1],[1,2,3,0],[2,2,3,1],[0,2,2,1]],[[1,0,2,2],[1,2,3,0],[2,2,3,1],[0,2,2,1]],[[1,0,2,1],[1,2,4,0],[2,2,3,1],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,1],[0,3,2,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,1],[0,2,3,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,1],[0,2,2,2]],[[1,0,2,1],[1,2,3,0],[3,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,1],[2,2,1,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,1],[1,3,1,1]],[[1,0,3,1],[1,2,3,0],[2,2,3,2],[0,2,1,1]],[[1,0,2,2],[1,2,3,0],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[1,2,4,0],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[1,2,3,0],[2,2,4,2],[0,2,1,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,3],[0,2,1,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,2],[0,2,1,2]],[[1,0,3,1],[1,2,3,0],[2,2,3,2],[0,2,2,0]],[[1,0,2,2],[1,2,3,0],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[1,2,4,0],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[1,2,3,0],[2,2,4,2],[0,2,2,0]],[[1,0,2,1],[1,2,3,0],[2,2,3,3],[0,2,2,0]],[[1,0,2,1],[1,2,3,0],[2,2,3,2],[0,3,2,0]],[[1,0,2,1],[1,2,3,0],[2,2,3,2],[0,2,3,0]],[[1,0,2,1],[1,2,3,0],[3,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,2],[2,2,0,1]],[[1,0,2,1],[1,2,3,0],[2,2,3,2],[1,3,0,1]],[[1,0,2,1],[1,2,3,0],[3,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,2,3,0],[2,2,3,2],[2,2,1,0]],[[1,0,2,1],[1,2,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,1,3,0],[2,3,0,2],[1,3,2,0]],[[1,2,1,1],[2,1,3,0],[2,3,0,2],[2,2,2,0]],[[1,2,1,1],[2,1,3,0],[3,3,0,2],[1,2,2,0]],[[1,2,1,1],[3,1,3,0],[2,3,0,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,0],[3,3,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,4,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,1,3],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,1,2],[0,3,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,1,2],[0,2,3,1]],[[1,0,2,1],[1,2,3,0],[2,3,1,2],[0,2,2,2]],[[1,0,2,1],[1,2,3,0],[3,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,2,3,0],[2,4,1,2],[1,1,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,1,2],[2,1,2,1]],[[1,0,2,1],[1,2,3,0],[3,3,2,1],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,4,2,1],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,2,1],[0,3,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,2,1],[0,2,3,1]],[[1,0,2,1],[1,2,3,0],[2,3,2,1],[0,2,2,2]],[[1,0,2,1],[1,2,3,0],[3,3,2,1],[1,1,2,1]],[[1,0,2,1],[1,2,3,0],[2,4,2,1],[1,1,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,2,1],[2,1,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,2,3],[0,1,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,2,2],[0,1,3,1]],[[1,0,2,1],[1,2,3,0],[2,3,2,2],[0,1,2,2]],[[1,0,2,1],[1,2,3,0],[3,3,2,2],[0,2,2,0]],[[1,0,2,1],[1,2,3,0],[2,4,2,2],[0,2,2,0]],[[1,0,2,1],[1,2,3,0],[2,3,2,2],[0,3,2,0]],[[1,0,2,1],[1,2,3,0],[2,3,2,2],[0,2,3,0]],[[1,0,2,1],[1,2,3,0],[2,3,2,3],[1,0,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,2,2],[1,0,3,1]],[[1,0,2,1],[1,2,3,0],[2,3,2,2],[1,0,2,2]],[[1,0,2,1],[1,2,3,0],[3,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,2,3,0],[2,4,2,2],[1,1,2,0]],[[1,0,2,1],[1,2,3,0],[2,3,2,2],[2,1,2,0]],[[1,3,1,1],[2,1,3,0],[2,3,0,2],[1,2,2,0]],[[2,2,1,1],[2,1,3,0],[2,3,0,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,0],[2,3,0,2],[2,1,2,1]],[[1,2,1,1],[2,1,3,0],[2,4,0,2],[1,1,2,1]],[[1,2,1,1],[2,1,3,0],[3,3,0,2],[1,1,2,1]],[[1,2,1,1],[3,1,3,0],[2,3,0,2],[1,1,2,1]],[[1,3,1,1],[2,1,3,0],[2,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,2,3,0],[3,3,3,0],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,4,3,0],[0,2,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,0],[0,3,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,0],[0,2,3,1]],[[1,0,2,1],[1,2,3,0],[3,3,3,0],[1,1,2,1]],[[1,0,2,1],[1,2,3,0],[2,4,3,0],[1,1,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,0],[2,1,2,1]],[[1,0,3,1],[1,2,3,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,2],[1,2,3,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[1,2,4,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[1,2,3,0],[3,3,3,1],[0,1,2,1]],[[1,0,2,1],[1,2,3,0],[2,4,3,1],[0,1,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,4,1],[0,1,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,1],[0,1,2,2]],[[1,0,3,1],[1,2,3,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,2],[1,2,3,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,4,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,3,0],[3,3,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,3,0],[2,4,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,3,0],[2,3,4,1],[0,2,1,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,1],[0,3,1,1]],[[1,0,3,1],[1,2,3,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,2],[1,2,3,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[1,2,4,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[1,2,3,0],[3,3,3,1],[1,0,2,1]],[[1,0,2,1],[1,2,3,0],[2,4,3,1],[1,0,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,4,1],[1,0,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,1],[2,0,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,1],[1,0,3,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,1],[1,0,2,2]],[[1,0,3,1],[1,2,3,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,2],[1,2,3,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,4,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,3,0],[3,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,3,0],[2,4,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,3,0],[2,3,4,1],[1,1,1,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,1],[2,1,1,1]],[[1,0,2,1],[1,2,3,0],[3,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,2,3,0],[2,4,3,1],[1,2,0,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,1],[2,2,0,1]],[[2,2,1,1],[2,1,3,0],[2,3,0,2],[1,1,2,1]],[[1,2,1,1],[2,1,3,0],[2,3,0,2],[0,2,2,2]],[[1,2,1,1],[2,1,3,0],[2,3,0,2],[0,2,3,1]],[[1,2,1,1],[2,1,3,0],[2,3,0,2],[0,3,2,1]],[[1,2,1,1],[2,1,3,0],[2,3,0,3],[0,2,2,1]],[[1,2,1,1],[2,1,3,0],[2,4,0,2],[0,2,2,1]],[[1,2,1,1],[2,1,3,0],[3,3,0,2],[0,2,2,1]],[[1,2,1,1],[3,1,3,0],[2,3,0,2],[0,2,2,1]],[[1,3,1,1],[2,1,3,0],[2,3,0,2],[0,2,2,1]],[[2,2,1,1],[2,1,3,0],[2,3,0,2],[0,2,2,1]],[[1,0,3,1],[1,2,3,0],[2,3,3,2],[0,0,2,1]],[[1,0,2,2],[1,2,3,0],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,2,4,0],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,4,2],[0,0,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,3],[0,0,2,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[0,0,2,2]],[[1,0,3,1],[1,2,3,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,2],[1,2,3,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,2,4,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,2,3,0],[3,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,2,3,0],[2,4,3,2],[0,1,1,1]],[[1,0,2,1],[1,2,3,0],[2,3,4,2],[0,1,1,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,3],[0,1,1,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[0,1,1,2]],[[1,0,3,1],[1,2,3,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,2],[1,2,3,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,2,4,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,2,3,0],[3,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,2,3,0],[2,4,3,2],[0,1,2,0]],[[1,0,2,1],[1,2,3,0],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[1,2,3,0],[2,3,3,3],[0,1,2,0]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[0,1,3,0]],[[1,0,3,1],[1,2,3,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,2],[1,2,3,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,2,4,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,2,3,0],[3,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,2,3,0],[2,4,3,2],[0,2,0,1]],[[1,0,2,1],[1,2,3,0],[2,3,4,2],[0,2,0,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,3],[0,2,0,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[0,3,0,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[0,2,0,2]],[[1,0,3,1],[1,2,3,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,2],[1,2,3,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,2,4,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,2,3,0],[3,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,2,3,0],[2,4,3,2],[0,2,1,0]],[[1,0,2,1],[1,2,3,0],[2,3,4,2],[0,2,1,0]],[[1,0,2,1],[1,2,3,0],[2,3,3,3],[0,2,1,0]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,1,3,0],[2,3,0,1],[1,3,2,1]],[[1,2,1,1],[2,1,3,0],[2,3,0,1],[2,2,2,1]],[[1,2,1,1],[2,1,3,0],[3,3,0,1],[1,2,2,1]],[[1,2,1,1],[3,1,3,0],[2,3,0,1],[1,2,2,1]],[[1,3,1,1],[2,1,3,0],[2,3,0,1],[1,2,2,1]],[[2,2,1,1],[2,1,3,0],[2,3,0,1],[1,2,2,1]],[[1,0,3,1],[1,2,3,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,2],[1,2,3,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,2,4,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,2,3,0],[3,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,2,3,0],[2,4,3,2],[1,0,1,1]],[[1,0,2,1],[1,2,3,0],[2,3,4,2],[1,0,1,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,3],[1,0,1,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[2,0,1,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[1,0,1,2]],[[1,0,3,1],[1,2,3,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,2],[1,2,3,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,2,4,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,2,3,0],[3,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,2,3,0],[2,4,3,2],[1,0,2,0]],[[1,0,2,1],[1,2,3,0],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[1,2,3,0],[2,3,3,3],[1,0,2,0]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[2,0,2,0]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[1,0,3,0]],[[1,0,3,1],[1,2,3,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,2],[1,2,3,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,2,4,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,2,3,0],[3,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,2,3,0],[2,4,3,2],[1,1,0,1]],[[1,0,2,1],[1,2,3,0],[2,3,4,2],[1,1,0,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,3],[1,1,0,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[2,1,0,1]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[1,1,0,2]],[[1,0,3,1],[1,2,3,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,2],[1,2,3,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,2,4,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,2,3,0],[3,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,2,3,0],[2,4,3,2],[1,1,1,0]],[[1,0,2,1],[1,2,3,0],[2,3,4,2],[1,1,1,0]],[[1,0,2,1],[1,2,3,0],[2,3,3,3],[1,1,1,0]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[2,1,1,0]],[[1,0,2,1],[1,2,3,0],[3,3,3,2],[1,2,0,0]],[[1,0,2,1],[1,2,3,0],[2,4,3,2],[1,2,0,0]],[[1,0,2,1],[1,2,3,0],[2,3,3,2],[2,2,0,0]],[[1,0,2,1],[1,2,3,1],[0,1,3,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[0,1,3,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,1],[0,1,3,2],[1,2,2,2]],[[1,0,2,1],[1,2,3,1],[0,2,2,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[0,2,2,2],[1,3,2,1]],[[1,0,2,1],[1,2,3,1],[0,2,2,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,1],[0,2,2,2],[1,2,2,2]],[[1,0,2,1],[1,2,4,1],[0,2,3,1],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[0,2,4,1],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[0,2,3,1],[1,3,2,1]],[[1,0,2,1],[1,2,3,1],[0,2,3,1],[1,2,3,1]],[[1,0,2,1],[1,2,3,1],[0,2,3,1],[1,2,2,2]],[[1,0,2,1],[1,2,4,1],[0,2,3,2],[1,2,1,1]],[[1,0,2,1],[1,2,3,1],[0,2,4,2],[1,2,1,1]],[[1,0,2,1],[1,2,3,1],[0,2,3,3],[1,2,1,1]],[[1,0,2,1],[1,2,3,1],[0,2,3,2],[1,2,1,2]],[[1,0,2,1],[1,2,4,1],[0,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[0,2,4,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[0,2,3,3],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[0,2,3,2],[1,3,2,0]],[[1,0,2,1],[1,2,3,1],[0,2,3,2],[1,2,3,0]],[[1,0,2,1],[1,2,3,1],[0,3,2,3],[1,1,2,1]],[[1,0,2,1],[1,2,3,1],[0,3,2,2],[1,1,3,1]],[[1,0,2,1],[1,2,3,1],[0,3,2,2],[1,1,2,2]],[[1,0,2,1],[1,2,4,1],[0,3,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[0,3,4,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[0,3,3,0],[1,3,2,1]],[[1,0,2,1],[1,2,3,1],[0,3,3,0],[1,2,3,1]],[[1,0,2,1],[1,2,3,1],[0,3,3,0],[1,2,2,2]],[[1,0,2,1],[1,2,4,1],[0,3,3,1],[1,1,2,1]],[[1,0,2,1],[1,2,3,1],[0,3,4,1],[1,1,2,1]],[[1,0,2,1],[1,2,3,1],[0,3,3,1],[1,1,3,1]],[[1,0,2,1],[1,2,3,1],[0,3,3,1],[1,1,2,2]],[[1,0,2,1],[1,2,4,1],[0,3,3,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[0,3,4,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[0,3,3,1],[1,3,2,0]],[[1,0,2,1],[1,2,3,1],[0,3,3,1],[1,2,3,0]],[[1,0,2,1],[1,2,4,1],[0,3,3,2],[1,0,2,1]],[[1,0,2,1],[1,2,3,1],[0,3,4,2],[1,0,2,1]],[[1,0,2,1],[1,2,3,1],[0,3,3,3],[1,0,2,1]],[[1,0,2,1],[1,2,3,1],[0,3,3,2],[1,0,2,2]],[[1,0,2,1],[1,2,4,1],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,2,3,1],[0,3,4,2],[1,1,1,1]],[[1,0,2,1],[1,2,3,1],[0,3,3,3],[1,1,1,1]],[[1,0,2,1],[1,2,3,1],[0,3,3,2],[1,1,1,2]],[[1,0,2,1],[1,2,4,1],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,2,3,1],[0,3,4,2],[1,1,2,0]],[[1,0,2,1],[1,2,3,1],[0,3,3,3],[1,1,2,0]],[[1,0,2,1],[1,2,3,1],[0,3,3,2],[1,1,3,0]],[[1,0,2,1],[1,2,4,1],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,2,3,1],[0,3,4,2],[1,2,0,1]],[[1,0,2,1],[1,2,3,1],[0,3,3,3],[1,2,0,1]],[[1,0,2,1],[1,2,3,1],[0,3,3,2],[1,2,0,2]],[[1,0,2,1],[1,2,4,1],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,2,3,1],[0,3,4,2],[1,2,1,0]],[[1,0,2,1],[1,2,3,1],[0,3,3,3],[1,2,1,0]],[[1,0,2,1],[1,2,3,1],[1,1,3,3],[0,2,2,1]],[[1,0,2,1],[1,2,3,1],[1,1,3,2],[0,2,3,1]],[[1,0,2,1],[1,2,3,1],[1,1,3,2],[0,2,2,2]],[[1,0,3,1],[1,2,3,1],[1,2,1,2],[1,2,2,1]],[[1,0,2,2],[1,2,3,1],[1,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,4,1],[1,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[1,2,2,3],[0,2,2,1]],[[1,0,2,1],[1,2,3,1],[1,2,2,2],[0,2,3,1]],[[1,0,2,1],[1,2,3,1],[1,2,2,2],[0,2,2,2]],[[1,0,3,1],[1,2,3,1],[1,2,2,2],[1,2,1,1]],[[1,0,2,2],[1,2,3,1],[1,2,2,2],[1,2,1,1]],[[1,0,2,1],[1,2,4,1],[1,2,2,2],[1,2,1,1]],[[1,0,3,1],[1,2,3,1],[1,2,2,2],[1,2,2,0]],[[1,0,2,2],[1,2,3,1],[1,2,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,4,1],[1,2,2,2],[1,2,2,0]],[[1,0,3,1],[1,2,3,1],[1,2,3,0],[1,2,2,1]],[[1,0,2,2],[1,2,3,1],[1,2,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,4,1],[1,2,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[1,2,4,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[1,2,3,0],[2,2,2,1]],[[1,0,2,1],[1,2,3,1],[1,2,3,0],[1,3,2,1]],[[1,0,2,1],[1,2,3,1],[1,2,3,0],[1,2,3,1]],[[1,0,2,1],[1,2,3,1],[1,2,3,0],[1,2,2,2]],[[1,0,2,1],[1,2,4,1],[1,2,3,1],[0,2,2,1]],[[1,0,2,1],[1,2,3,1],[1,2,4,1],[0,2,2,1]],[[1,0,2,1],[1,2,3,1],[1,2,3,1],[0,2,3,1]],[[1,0,2,1],[1,2,3,1],[1,2,3,1],[0,2,2,2]],[[1,0,3,1],[1,2,3,1],[1,2,3,1],[1,2,1,1]],[[1,0,2,2],[1,2,3,1],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,4,1],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,3,1],[1,2,4,1],[1,2,1,1]],[[1,0,3,1],[1,2,3,1],[1,2,3,1],[1,2,2,0]],[[1,0,2,2],[1,2,3,1],[1,2,3,1],[1,2,2,0]],[[1,0,2,1],[1,2,4,1],[1,2,3,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[1,2,4,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[1,2,3,1],[2,2,2,0]],[[1,0,2,1],[1,2,3,1],[1,2,3,1],[1,3,2,0]],[[1,0,2,1],[1,2,3,1],[1,2,3,1],[1,2,3,0]],[[1,0,2,1],[1,2,4,1],[1,2,3,2],[0,2,1,1]],[[1,0,2,1],[1,2,3,1],[1,2,4,2],[0,2,1,1]],[[1,0,2,1],[1,2,3,1],[1,2,3,3],[0,2,1,1]],[[1,0,2,1],[1,2,3,1],[1,2,3,2],[0,2,1,2]],[[1,0,2,1],[1,2,4,1],[1,2,3,2],[0,2,2,0]],[[1,0,2,1],[1,2,3,1],[1,2,4,2],[0,2,2,0]],[[1,0,2,1],[1,2,3,1],[1,2,3,3],[0,2,2,0]],[[1,0,2,1],[1,2,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,3,0],[2,2,2,2],[1,3,1,0]],[[1,2,1,1],[2,1,3,0],[2,2,2,2],[2,2,1,0]],[[1,2,1,1],[2,1,3,0],[3,2,2,2],[1,2,1,0]],[[1,2,1,1],[3,1,3,0],[2,2,2,2],[1,2,1,0]],[[1,3,1,1],[2,1,3,0],[2,2,2,2],[1,2,1,0]],[[2,2,1,1],[2,1,3,0],[2,2,2,2],[1,2,1,0]],[[1,2,1,1],[2,1,3,0],[2,2,2,2],[1,3,0,1]],[[1,2,1,1],[2,1,3,0],[2,2,2,2],[2,2,0,1]],[[1,0,3,1],[1,2,3,1],[1,3,0,2],[1,2,2,1]],[[1,0,2,2],[1,2,3,1],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,2,4,1],[1,3,0,2],[1,2,2,1]],[[1,0,3,1],[1,2,3,1],[1,3,1,2],[1,1,2,1]],[[1,0,2,2],[1,2,3,1],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,2,4,1],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,2,3,1],[1,4,2,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[1,3,2,0],[2,2,2,1]],[[1,0,2,1],[1,2,3,1],[1,3,2,0],[1,3,2,1]],[[1,0,2,1],[1,2,3,1],[1,3,2,0],[1,2,3,1]],[[1,0,2,1],[1,2,3,1],[1,3,2,0],[1,2,2,2]],[[1,0,2,1],[1,2,3,1],[1,4,2,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[1,3,2,1],[2,2,2,0]],[[1,0,2,1],[1,2,3,1],[1,3,2,1],[1,3,2,0]],[[1,0,2,1],[1,2,3,1],[1,3,2,1],[1,2,3,0]],[[1,0,2,1],[1,2,3,1],[1,3,2,3],[0,1,2,1]],[[1,0,2,1],[1,2,3,1],[1,3,2,2],[0,1,3,1]],[[1,0,2,1],[1,2,3,1],[1,3,2,2],[0,1,2,2]],[[1,0,3,1],[1,2,3,1],[1,3,2,2],[1,1,1,1]],[[1,0,2,2],[1,2,3,1],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[1,2,4,1],[1,3,2,2],[1,1,1,1]],[[1,0,3,1],[1,2,3,1],[1,3,2,2],[1,1,2,0]],[[1,0,2,2],[1,2,3,1],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,2,4,1],[1,3,2,2],[1,1,2,0]],[[1,0,3,1],[1,2,3,1],[1,3,2,2],[1,2,0,1]],[[1,0,2,2],[1,2,3,1],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[1,2,4,1],[1,3,2,2],[1,2,0,1]],[[1,0,3,1],[1,2,3,1],[1,3,2,2],[1,2,1,0]],[[1,0,2,2],[1,2,3,1],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[1,2,4,1],[1,3,2,2],[1,2,1,0]],[[1,2,1,1],[2,1,3,0],[3,2,2,2],[1,2,0,1]],[[1,2,1,1],[3,1,3,0],[2,2,2,2],[1,2,0,1]],[[1,3,1,1],[2,1,3,0],[2,2,2,2],[1,2,0,1]],[[2,2,1,1],[2,1,3,0],[2,2,2,2],[1,2,0,1]],[[1,0,3,1],[1,2,3,1],[1,3,3,0],[1,1,2,1]],[[1,0,2,2],[1,2,3,1],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[1,2,4,1],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[1,2,3,1],[1,4,3,0],[1,1,2,1]],[[1,0,2,1],[1,2,3,1],[1,3,4,0],[1,1,2,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,0],[1,1,3,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,0],[1,1,2,2]],[[1,0,3,1],[1,2,3,1],[1,3,3,0],[1,2,1,1]],[[1,0,2,2],[1,2,3,1],[1,3,3,0],[1,2,1,1]],[[1,0,2,1],[1,2,4,1],[1,3,3,0],[1,2,1,1]],[[1,0,2,1],[1,2,3,1],[1,4,3,0],[1,2,1,1]],[[1,0,2,1],[1,2,3,1],[1,3,4,0],[1,2,1,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,0],[2,2,1,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,0],[1,3,1,1]],[[1,0,2,1],[1,2,4,1],[1,3,3,1],[0,1,2,1]],[[1,0,2,1],[1,2,3,1],[1,3,4,1],[0,1,2,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,1],[0,1,3,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,1],[0,1,2,2]],[[1,0,3,1],[1,2,3,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,2],[1,2,3,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,4,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,3,1],[1,4,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,3,1],[1,3,4,1],[1,1,1,1]],[[1,0,3,1],[1,2,3,1],[1,3,3,1],[1,1,2,0]],[[1,0,2,2],[1,2,3,1],[1,3,3,1],[1,1,2,0]],[[1,0,2,1],[1,2,4,1],[1,3,3,1],[1,1,2,0]],[[1,0,2,1],[1,2,3,1],[1,4,3,1],[1,1,2,0]],[[1,0,2,1],[1,2,3,1],[1,3,4,1],[1,1,2,0]],[[1,0,2,1],[1,2,3,1],[1,3,3,1],[1,1,3,0]],[[1,0,3,1],[1,2,3,1],[1,3,3,1],[1,2,0,1]],[[1,0,2,2],[1,2,3,1],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,2,4,1],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,2,3,1],[1,4,3,1],[1,2,0,1]],[[1,0,2,1],[1,2,3,1],[1,3,4,1],[1,2,0,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,1],[2,2,0,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,1],[1,3,0,1]],[[1,0,3,1],[1,2,3,1],[1,3,3,1],[1,2,1,0]],[[1,0,2,2],[1,2,3,1],[1,3,3,1],[1,2,1,0]],[[1,0,2,1],[1,2,4,1],[1,3,3,1],[1,2,1,0]],[[1,0,2,1],[1,2,3,1],[1,4,3,1],[1,2,1,0]],[[1,0,2,1],[1,2,3,1],[1,3,4,1],[1,2,1,0]],[[1,0,2,1],[1,2,3,1],[1,3,3,1],[2,2,1,0]],[[1,0,2,1],[1,2,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,1,3,0],[2,2,2,1],[1,3,1,1]],[[1,2,1,1],[2,1,3,0],[2,2,2,1],[2,2,1,1]],[[1,0,2,1],[1,2,4,1],[1,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,2,3,1],[1,3,4,2],[0,0,2,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,3],[0,0,2,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,2],[0,0,2,2]],[[1,0,2,1],[1,2,4,1],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,2,3,1],[1,3,4,2],[0,1,1,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,3],[0,1,1,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,2],[0,1,1,2]],[[1,0,2,1],[1,2,4,1],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,2,3,1],[1,3,4,2],[0,1,2,0]],[[1,0,2,1],[1,2,3,1],[1,3,3,3],[0,1,2,0]],[[1,0,2,1],[1,2,3,1],[1,3,3,2],[0,1,3,0]],[[1,0,2,1],[1,2,4,1],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,2,3,1],[1,3,4,2],[0,2,0,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,3],[0,2,0,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,2],[0,2,0,2]],[[1,0,2,1],[1,2,4,1],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,2,3,1],[1,3,4,2],[0,2,1,0]],[[1,0,2,1],[1,2,3,1],[1,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,3,0],[3,2,2,1],[1,2,1,1]],[[1,2,1,1],[3,1,3,0],[2,2,2,1],[1,2,1,1]],[[1,3,1,1],[2,1,3,0],[2,2,2,1],[1,2,1,1]],[[2,2,1,1],[2,1,3,0],[2,2,2,1],[1,2,1,1]],[[1,0,2,1],[1,2,4,1],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,2,3,1],[1,3,4,2],[1,0,1,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,3],[1,0,1,1]],[[1,0,2,1],[1,2,3,1],[1,3,3,2],[1,0,1,2]],[[1,0,2,1],[1,2,4,1],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,2,3,1],[1,3,4,2],[1,0,2,0]],[[1,0,2,1],[1,2,3,1],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,3,0],[2,2,1,2],[1,2,3,0]],[[1,2,1,1],[2,1,3,0],[2,2,1,2],[1,3,2,0]],[[1,2,1,1],[2,1,3,0],[2,2,1,2],[2,2,2,0]],[[1,2,1,1],[2,1,3,0],[3,2,1,2],[1,2,2,0]],[[1,2,1,1],[3,1,3,0],[2,2,1,2],[1,2,2,0]],[[1,3,1,1],[2,1,3,0],[2,2,1,2],[1,2,2,0]],[[2,2,1,1],[2,1,3,0],[2,2,1,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,0],[2,2,1,1],[1,2,2,2]],[[1,2,1,1],[2,1,3,0],[2,2,1,1],[1,2,3,1]],[[1,2,1,1],[2,1,3,0],[2,2,1,1],[1,3,2,1]],[[1,2,1,1],[2,1,3,0],[2,2,1,1],[2,2,2,1]],[[1,2,1,1],[2,1,3,0],[3,2,1,1],[1,2,2,1]],[[1,2,1,1],[3,1,3,0],[2,2,1,1],[1,2,2,1]],[[1,3,1,1],[2,1,3,0],[2,2,1,1],[1,2,2,1]],[[2,2,1,1],[2,1,3,0],[2,2,1,1],[1,2,2,1]],[[1,2,1,1],[2,1,3,0],[2,2,0,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,0],[2,2,0,2],[1,2,3,1]],[[1,2,1,1],[2,1,3,0],[2,2,0,2],[1,3,2,1]],[[1,2,1,1],[2,1,3,0],[2,2,0,2],[2,2,2,1]],[[1,2,1,1],[2,1,3,0],[2,2,0,3],[1,2,2,1]],[[1,2,1,1],[2,1,3,0],[3,2,0,2],[1,2,2,1]],[[1,2,1,1],[3,1,3,0],[2,2,0,2],[1,2,2,1]],[[1,3,1,1],[2,1,3,0],[2,2,0,2],[1,2,2,1]],[[2,2,1,1],[2,1,3,0],[2,2,0,2],[1,2,2,1]],[[1,0,3,1],[1,2,3,1],[2,1,1,2],[1,2,2,1]],[[1,0,2,2],[1,2,3,1],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,4,1],[2,1,1,2],[1,2,2,1]],[[1,0,3,1],[1,2,3,1],[2,1,2,2],[1,2,1,1]],[[1,0,2,2],[1,2,3,1],[2,1,2,2],[1,2,1,1]],[[1,0,2,1],[1,2,4,1],[2,1,2,2],[1,2,1,1]],[[1,0,3,1],[1,2,3,1],[2,1,2,2],[1,2,2,0]],[[1,0,2,2],[1,2,3,1],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,4,1],[2,1,2,2],[1,2,2,0]],[[1,0,3,1],[1,2,3,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,2],[1,2,3,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,4,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[3,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[2,1,4,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[2,1,3,0],[2,2,2,1]],[[1,0,2,1],[1,2,3,1],[2,1,3,0],[1,3,2,1]],[[1,0,2,1],[1,2,3,1],[2,1,3,0],[1,2,3,1]],[[1,0,2,1],[1,2,3,1],[2,1,3,0],[1,2,2,2]],[[1,0,3,1],[1,2,3,1],[2,1,3,1],[1,2,1,1]],[[1,0,2,2],[1,2,3,1],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,4,1],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,3,1],[2,1,4,1],[1,2,1,1]],[[1,0,3,1],[1,2,3,1],[2,1,3,1],[1,2,2,0]],[[1,0,2,2],[1,2,3,1],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,2,4,1],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[3,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[2,1,4,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[2,1,3,1],[2,2,2,0]],[[1,0,2,1],[1,2,3,1],[2,1,3,1],[1,3,2,0]],[[1,0,2,1],[1,2,3,1],[2,1,3,1],[1,2,3,0]],[[1,0,3,1],[1,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,0,2,2],[1,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,2,4,1],[2,2,0,2],[1,2,2,1]],[[1,0,3,1],[1,2,3,1],[2,2,1,2],[0,2,2,1]],[[1,0,2,2],[1,2,3,1],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,4,1],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,3,1],[3,2,2,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[2,2,2,0],[2,2,2,1]],[[1,0,2,1],[1,2,3,1],[2,2,2,0],[1,3,2,1]],[[1,0,2,1],[1,2,3,1],[2,2,2,0],[1,2,3,1]],[[1,0,2,1],[1,2,3,1],[2,2,2,0],[1,2,2,2]],[[1,0,2,1],[1,2,3,1],[3,2,2,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[2,2,2,1],[2,2,2,0]],[[1,0,2,1],[1,2,3,1],[2,2,2,1],[1,3,2,0]],[[1,0,2,1],[1,2,3,1],[2,2,2,1],[1,2,3,0]],[[1,0,3,1],[1,2,3,1],[2,2,2,2],[0,2,1,1]],[[1,0,2,2],[1,2,3,1],[2,2,2,2],[0,2,1,1]],[[1,0,2,1],[1,2,4,1],[2,2,2,2],[0,2,1,1]],[[1,0,3,1],[1,2,3,1],[2,2,2,2],[0,2,2,0]],[[1,0,2,2],[1,2,3,1],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[1,2,4,1],[2,2,2,2],[0,2,2,0]],[[1,0,3,1],[1,2,3,1],[2,2,3,0],[0,2,2,1]],[[1,0,2,2],[1,2,3,1],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[1,2,4,1],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[1,2,3,1],[2,2,4,0],[0,2,2,1]],[[1,0,2,1],[1,2,3,1],[2,2,3,0],[0,3,2,1]],[[1,0,2,1],[1,2,3,1],[2,2,3,0],[0,2,3,1]],[[1,0,2,1],[1,2,3,1],[2,2,3,0],[0,2,2,2]],[[1,0,2,1],[1,2,3,1],[3,2,3,0],[1,2,1,1]],[[1,0,2,1],[1,2,3,1],[2,2,3,0],[2,2,1,1]],[[1,0,2,1],[1,2,3,1],[2,2,3,0],[1,3,1,1]],[[1,0,3,1],[1,2,3,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,2],[1,2,3,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,4,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,3,1],[2,2,4,1],[0,2,1,1]],[[1,0,3,1],[1,2,3,1],[2,2,3,1],[0,2,2,0]],[[1,0,2,2],[1,2,3,1],[2,2,3,1],[0,2,2,0]],[[1,0,2,1],[1,2,4,1],[2,2,3,1],[0,2,2,0]],[[1,0,2,1],[1,2,3,1],[2,2,4,1],[0,2,2,0]],[[1,0,2,1],[1,2,3,1],[2,2,3,1],[0,3,2,0]],[[1,0,2,1],[1,2,3,1],[2,2,3,1],[0,2,3,0]],[[1,0,2,1],[1,2,3,1],[3,2,3,1],[1,2,0,1]],[[1,0,2,1],[1,2,3,1],[2,2,3,1],[2,2,0,1]],[[1,0,2,1],[1,2,3,1],[2,2,3,1],[1,3,0,1]],[[1,0,2,1],[1,2,3,1],[3,2,3,1],[1,2,1,0]],[[1,0,2,1],[1,2,3,1],[2,2,3,1],[2,2,1,0]],[[1,0,2,1],[1,2,3,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[2,1,3,0],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,3,0],[2,0,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,3,0],[2,0,3,2],[2,2,2,0]],[[1,2,1,1],[2,1,3,0],[2,0,3,3],[1,2,2,0]],[[1,2,1,1],[2,1,3,0],[2,0,4,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,0],[3,0,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,4,0],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[3,1,3,0],[2,0,3,2],[1,2,2,0]],[[1,3,1,1],[2,1,3,0],[2,0,3,2],[1,2,2,0]],[[2,2,1,1],[2,1,3,0],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,3,0],[2,0,3,2],[1,2,1,2]],[[1,2,1,1],[2,1,3,0],[2,0,3,3],[1,2,1,1]],[[1,2,1,1],[2,1,3,0],[2,0,4,2],[1,2,1,1]],[[1,2,1,1],[2,1,4,0],[2,0,3,2],[1,2,1,1]],[[1,2,1,1],[2,1,3,0],[2,0,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,3,0],[2,0,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,3,0],[2,0,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,3,0],[2,0,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,3,0],[2,0,4,1],[1,2,2,1]],[[1,2,1,1],[2,1,3,0],[3,0,3,1],[1,2,2,1]],[[1,2,1,1],[2,1,4,0],[2,0,3,1],[1,2,2,1]],[[1,2,1,1],[3,1,3,0],[2,0,3,1],[1,2,2,1]],[[1,3,1,1],[2,1,3,0],[2,0,3,1],[1,2,2,1]],[[2,2,1,1],[2,1,3,0],[2,0,3,1],[1,2,2,1]],[[1,0,3,1],[1,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,2,2],[1,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,2,4,1],[2,3,0,2],[0,2,2,1]],[[1,0,3,1],[1,2,3,1],[2,3,1,2],[0,1,2,1]],[[1,0,2,2],[1,2,3,1],[2,3,1,2],[0,1,2,1]],[[1,0,2,1],[1,2,4,1],[2,3,1,2],[0,1,2,1]],[[1,0,3,1],[1,2,3,1],[2,3,1,2],[1,0,2,1]],[[1,0,2,2],[1,2,3,1],[2,3,1,2],[1,0,2,1]],[[1,0,2,1],[1,2,4,1],[2,3,1,2],[1,0,2,1]],[[1,2,1,1],[2,1,3,0],[2,0,2,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,0],[2,0,2,2],[1,2,3,1]],[[1,2,1,1],[2,1,3,0],[2,0,2,2],[1,3,2,1]],[[1,2,1,1],[2,1,3,0],[2,0,2,2],[2,2,2,1]],[[1,2,1,1],[2,1,3,0],[2,0,2,3],[1,2,2,1]],[[1,2,1,1],[2,1,3,0],[3,0,2,2],[1,2,2,1]],[[1,2,1,1],[3,1,3,0],[2,0,2,2],[1,2,2,1]],[[1,3,1,1],[2,1,3,0],[2,0,2,2],[1,2,2,1]],[[2,2,1,1],[2,1,3,0],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[1,2,3,1],[3,3,2,0],[0,2,2,1]],[[1,0,2,1],[1,2,3,1],[2,4,2,0],[0,2,2,1]],[[1,0,2,1],[1,2,3,1],[2,3,2,0],[0,3,2,1]],[[1,0,2,1],[1,2,3,1],[2,3,2,0],[0,2,3,1]],[[1,0,2,1],[1,2,3,1],[2,3,2,0],[0,2,2,2]],[[1,0,2,1],[1,2,3,1],[3,3,2,0],[1,1,2,1]],[[1,0,2,1],[1,2,3,1],[2,4,2,0],[1,1,2,1]],[[1,0,2,1],[1,2,3,1],[2,3,2,0],[2,1,2,1]],[[1,0,2,1],[1,2,3,1],[3,3,2,1],[0,2,2,0]],[[1,0,2,1],[1,2,3,1],[2,4,2,1],[0,2,2,0]],[[1,0,2,1],[1,2,3,1],[2,3,2,1],[0,3,2,0]],[[1,0,2,1],[1,2,3,1],[2,3,2,1],[0,2,3,0]],[[1,0,2,1],[1,2,3,1],[3,3,2,1],[1,1,2,0]],[[1,0,2,1],[1,2,3,1],[2,4,2,1],[1,1,2,0]],[[1,0,2,1],[1,2,3,1],[2,3,2,1],[2,1,2,0]],[[1,0,3,1],[1,2,3,1],[2,3,2,2],[0,0,2,1]],[[1,0,2,2],[1,2,3,1],[2,3,2,2],[0,0,2,1]],[[1,0,2,1],[1,2,4,1],[2,3,2,2],[0,0,2,1]],[[1,0,3,1],[1,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,2,2],[1,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,2,4,1],[2,3,2,2],[0,1,1,1]],[[1,0,3,1],[1,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,2,2],[1,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,2,4,1],[2,3,2,2],[0,1,2,0]],[[1,0,3,1],[1,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,2,2],[1,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,2,4,1],[2,3,2,2],[0,2,0,1]],[[1,0,3,1],[1,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,2,2],[1,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,2,4,1],[2,3,2,2],[0,2,1,0]],[[1,0,3,1],[1,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,2,2],[1,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[1,2,4,1],[2,3,2,2],[1,0,1,1]],[[1,0,3,1],[1,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,2,2],[1,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[1,2,4,1],[2,3,2,2],[1,0,2,0]],[[1,0,3,1],[1,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,2,2],[1,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[1,2,4,1],[2,3,2,2],[1,1,0,1]],[[1,0,3,1],[1,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,2,2],[1,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[1,2,4,1],[2,3,2,2],[1,1,1,0]],[[1,0,3,1],[1,2,3,1],[2,3,3,0],[0,1,2,1]],[[1,0,2,2],[1,2,3,1],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,2,4,1],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,2,3,1],[3,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,2,3,1],[2,4,3,0],[0,1,2,1]],[[1,0,2,1],[1,2,3,1],[2,3,4,0],[0,1,2,1]],[[1,0,2,1],[1,2,3,1],[2,3,3,0],[0,1,3,1]],[[1,0,2,1],[1,2,3,1],[2,3,3,0],[0,1,2,2]],[[1,0,3,1],[1,2,3,1],[2,3,3,0],[0,2,1,1]],[[1,0,2,2],[1,2,3,1],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,2,4,1],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,2,3,1],[3,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,2,3,1],[2,4,3,0],[0,2,1,1]],[[1,0,2,1],[1,2,3,1],[2,3,4,0],[0,2,1,1]],[[1,0,2,1],[1,2,3,1],[2,3,3,0],[0,3,1,1]],[[1,0,3,1],[1,2,3,1],[2,3,3,0],[1,0,2,1]],[[1,0,2,2],[1,2,3,1],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[1,2,4,1],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[1,2,3,1],[3,3,3,0],[1,0,2,1]],[[1,0,2,1],[1,2,3,1],[2,4,3,0],[1,0,2,1]],[[1,0,2,1],[1,2,3,1],[2,3,4,0],[1,0,2,1]],[[1,0,2,1],[1,2,3,1],[2,3,3,0],[2,0,2,1]],[[1,0,2,1],[1,2,3,1],[2,3,3,0],[1,0,3,1]],[[1,0,2,1],[1,2,3,1],[2,3,3,0],[1,0,2,2]],[[1,0,3,1],[1,2,3,1],[2,3,3,0],[1,1,1,1]],[[1,0,2,2],[1,2,3,1],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[1,2,4,1],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[1,2,3,1],[3,3,3,0],[1,1,1,1]],[[1,0,2,1],[1,2,3,1],[2,4,3,0],[1,1,1,1]],[[1,0,2,1],[1,2,3,1],[2,3,4,0],[1,1,1,1]],[[1,0,2,1],[1,2,3,1],[2,3,3,0],[2,1,1,1]],[[1,0,2,1],[1,2,3,1],[3,3,3,0],[1,2,0,1]],[[1,0,2,1],[1,2,3,1],[2,4,3,0],[1,2,0,1]],[[1,0,2,1],[1,2,3,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[2,1,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,1,1],[2,1,3,0],[1,3,2,2],[2,2,1,0]],[[1,2,1,1],[2,1,3,0],[1,4,2,2],[1,2,1,0]],[[1,2,1,1],[2,1,3,0],[1,3,2,2],[1,3,0,1]],[[1,2,1,1],[2,1,3,0],[1,3,2,2],[2,2,0,1]],[[1,2,1,1],[2,1,3,0],[1,4,2,2],[1,2,0,1]],[[1,0,3,1],[1,2,3,1],[2,3,3,1],[0,0,2,1]],[[1,0,2,2],[1,2,3,1],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,2,4,1],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,2,3,1],[2,3,4,1],[0,0,2,1]],[[1,0,3,1],[1,2,3,1],[2,3,3,1],[0,1,1,1]],[[1,0,2,2],[1,2,3,1],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,2,4,1],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,2,3,1],[3,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,2,3,1],[2,4,3,1],[0,1,1,1]],[[1,0,2,1],[1,2,3,1],[2,3,4,1],[0,1,1,1]],[[1,0,3,1],[1,2,3,1],[2,3,3,1],[0,1,2,0]],[[1,0,2,2],[1,2,3,1],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,2,4,1],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,2,3,1],[3,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,2,3,1],[2,4,3,1],[0,1,2,0]],[[1,0,2,1],[1,2,3,1],[2,3,4,1],[0,1,2,0]],[[1,0,2,1],[1,2,3,1],[2,3,3,1],[0,1,3,0]],[[1,0,3,1],[1,2,3,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,2],[1,2,3,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,2,4,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,2,3,1],[3,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,2,3,1],[2,4,3,1],[0,2,0,1]],[[1,0,2,1],[1,2,3,1],[2,3,4,1],[0,2,0,1]],[[1,0,2,1],[1,2,3,1],[2,3,3,1],[0,3,0,1]],[[1,0,3,1],[1,2,3,1],[2,3,3,1],[0,2,1,0]],[[1,0,2,2],[1,2,3,1],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,2,4,1],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,2,3,1],[3,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,2,3,1],[2,4,3,1],[0,2,1,0]],[[1,0,2,1],[1,2,3,1],[2,3,4,1],[0,2,1,0]],[[1,0,2,1],[1,2,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[2,1,3,0],[1,3,2,1],[1,3,1,1]],[[1,2,1,1],[2,1,3,0],[1,3,2,1],[2,2,1,1]],[[1,2,1,1],[2,1,3,0],[1,4,2,1],[1,2,1,1]],[[1,0,3,1],[1,2,3,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,2],[1,2,3,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[1,2,4,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[1,2,3,1],[3,3,3,1],[1,0,1,1]],[[1,0,2,1],[1,2,3,1],[2,4,3,1],[1,0,1,1]],[[1,0,2,1],[1,2,3,1],[2,3,4,1],[1,0,1,1]],[[1,0,2,1],[1,2,3,1],[2,3,3,1],[2,0,1,1]],[[1,0,3,1],[1,2,3,1],[2,3,3,1],[1,0,2,0]],[[1,0,2,2],[1,2,3,1],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[1,2,4,1],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[1,2,3,1],[3,3,3,1],[1,0,2,0]],[[1,0,2,1],[1,2,3,1],[2,4,3,1],[1,0,2,0]],[[1,0,2,1],[1,2,3,1],[2,3,4,1],[1,0,2,0]],[[1,0,2,1],[1,2,3,1],[2,3,3,1],[2,0,2,0]],[[1,0,2,1],[1,2,3,1],[2,3,3,1],[1,0,3,0]],[[1,0,3,1],[1,2,3,1],[2,3,3,1],[1,1,0,1]],[[1,0,2,2],[1,2,3,1],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[1,2,4,1],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[1,2,3,1],[3,3,3,1],[1,1,0,1]],[[1,0,2,1],[1,2,3,1],[2,4,3,1],[1,1,0,1]],[[1,0,2,1],[1,2,3,1],[2,3,4,1],[1,1,0,1]],[[1,0,2,1],[1,2,3,1],[2,3,3,1],[2,1,0,1]],[[1,0,3,1],[1,2,3,1],[2,3,3,1],[1,1,1,0]],[[1,0,2,2],[1,2,3,1],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[1,2,4,1],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[1,2,3,1],[3,3,3,1],[1,1,1,0]],[[1,0,2,1],[1,2,3,1],[2,4,3,1],[1,1,1,0]],[[1,0,2,1],[1,2,3,1],[2,3,4,1],[1,1,1,0]],[[1,0,2,1],[1,2,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[2,1,3,0],[1,3,1,2],[1,2,3,0]],[[1,2,1,1],[2,1,3,0],[1,3,1,2],[1,3,2,0]],[[1,2,1,1],[2,1,3,0],[1,3,1,2],[2,2,2,0]],[[1,2,1,1],[2,1,3,0],[1,4,1,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,1],[3,3,3,1],[1,2,0,0]],[[1,0,2,1],[1,2,3,1],[2,4,3,1],[1,2,0,0]],[[1,0,2,1],[1,2,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[2,1,3,0],[1,3,1,1],[1,2,2,2]],[[1,2,1,1],[2,1,3,0],[1,3,1,1],[1,2,3,1]],[[1,2,1,1],[2,1,3,0],[1,3,1,1],[1,3,2,1]],[[1,2,1,1],[2,1,3,0],[1,3,1,1],[2,2,2,1]],[[1,2,1,1],[2,1,3,0],[1,4,1,1],[1,2,2,1]],[[1,2,1,1],[2,1,3,0],[1,3,0,2],[1,2,2,2]],[[1,2,1,1],[2,1,3,0],[1,3,0,2],[1,2,3,1]],[[1,2,1,1],[2,1,3,0],[1,3,0,2],[1,3,2,1]],[[1,2,1,1],[2,1,3,0],[1,3,0,2],[2,2,2,1]],[[1,2,1,1],[2,1,3,0],[1,3,0,3],[1,2,2,1]],[[1,2,1,1],[2,1,3,0],[1,4,0,2],[1,2,2,1]],[[1,0,3,1],[1,2,3,1],[2,3,3,2],[0,1,0,1]],[[1,0,2,2],[1,2,3,1],[2,3,3,2],[0,1,0,1]],[[1,0,2,1],[1,2,4,1],[2,3,3,2],[0,1,0,1]],[[1,0,3,1],[1,2,3,1],[2,3,3,2],[1,0,0,1]],[[1,0,2,2],[1,2,3,1],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[1,2,4,1],[2,3,3,2],[1,0,0,1]],[[1,0,2,2],[1,2,3,2],[0,0,3,2],[1,2,2,1]],[[1,0,2,1],[1,2,3,3],[0,0,3,2],[1,2,2,1]],[[1,0,2,1],[1,2,3,2],[0,0,3,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,2],[0,0,3,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,2],[0,0,3,2],[1,2,2,2]],[[1,0,2,2],[1,2,3,2],[0,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,4,2],[0,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,3,3],[0,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,2,3,2],[0,2,1,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,2],[0,2,1,2],[1,3,2,1]],[[1,0,2,1],[1,2,3,2],[0,2,1,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,2],[0,2,1,2],[1,2,2,2]],[[1,0,2,2],[1,2,3,2],[0,2,2,2],[1,2,1,1]],[[1,0,2,1],[1,2,4,2],[0,2,2,2],[1,2,1,1]],[[1,0,2,1],[1,2,3,3],[0,2,2,2],[1,2,1,1]],[[1,0,2,1],[1,2,3,2],[0,2,2,3],[1,2,1,1]],[[1,0,2,1],[1,2,3,2],[0,2,2,2],[1,2,1,2]],[[1,0,2,2],[1,2,3,2],[0,2,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,4,2],[0,2,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,3],[0,2,2,2],[1,2,2,0]],[[1,0,2,1],[1,2,3,2],[0,2,2,3],[1,2,2,0]],[[1,0,2,2],[1,2,3,2],[0,2,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,4,2],[0,2,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,3],[0,2,3,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,2],[0,2,4,0],[1,2,2,1]],[[1,0,2,1],[1,2,3,2],[0,2,3,0],[1,3,2,1]],[[1,0,2,1],[1,2,3,2],[0,2,3,0],[1,2,3,1]],[[1,0,2,1],[1,2,3,2],[0,2,3,0],[1,2,2,2]],[[1,0,2,2],[1,2,3,2],[0,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,4,2],[0,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,3,3],[0,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,2,3,2],[0,2,4,1],[1,2,1,1]],[[1,0,2,2],[1,2,3,2],[0,2,3,1],[1,2,2,0]],[[1,0,2,1],[1,2,4,2],[0,2,3,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,3],[0,2,3,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,2],[0,2,4,1],[1,2,2,0]],[[1,0,2,1],[1,2,3,2],[0,2,3,1],[1,3,2,0]],[[1,0,2,1],[1,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,0,2,2],[1,2,3,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,2,4,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,2,3,3],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,2,3,2],[0,3,0,3],[1,2,2,1]],[[1,0,2,1],[1,2,3,2],[0,3,0,2],[1,3,2,1]],[[1,0,2,1],[1,2,3,2],[0,3,0,2],[1,2,3,1]],[[1,0,2,1],[1,2,3,2],[0,3,0,2],[1,2,2,2]],[[1,0,2,2],[1,2,3,2],[0,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,2,4,2],[0,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,2,3,3],[0,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,2,3,2],[0,3,1,3],[1,1,2,1]],[[1,0,2,1],[1,2,3,2],[0,3,1,2],[1,1,3,1]],[[1,0,2,1],[1,2,3,2],[0,3,1,2],[1,1,2,2]],[[1,0,2,2],[1,2,3,2],[0,3,2,2],[1,0,2,1]],[[1,0,2,1],[1,2,4,2],[0,3,2,2],[1,0,2,1]],[[1,0,2,1],[1,2,3,3],[0,3,2,2],[1,0,2,1]],[[1,0,2,1],[1,2,3,2],[0,3,2,3],[1,0,2,1]],[[1,0,2,1],[1,2,3,2],[0,3,2,2],[1,0,2,2]],[[1,0,2,2],[1,2,3,2],[0,3,2,2],[1,1,1,1]],[[1,0,2,1],[1,2,4,2],[0,3,2,2],[1,1,1,1]],[[1,0,2,1],[1,2,3,3],[0,3,2,2],[1,1,1,1]],[[1,0,2,1],[1,2,3,2],[0,3,2,3],[1,1,1,1]],[[1,0,2,1],[1,2,3,2],[0,3,2,2],[1,1,1,2]],[[1,0,2,2],[1,2,3,2],[0,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,2,4,2],[0,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,2,3,3],[0,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,2,3,2],[0,3,2,3],[1,1,2,0]],[[1,0,2,2],[1,2,3,2],[0,3,2,2],[1,2,0,1]],[[1,0,2,1],[1,2,4,2],[0,3,2,2],[1,2,0,1]],[[1,0,2,1],[1,2,3,3],[0,3,2,2],[1,2,0,1]],[[1,0,2,1],[1,2,3,2],[0,3,2,3],[1,2,0,1]],[[1,0,2,1],[1,2,3,2],[0,3,2,2],[1,2,0,2]],[[1,0,2,2],[1,2,3,2],[0,3,2,2],[1,2,1,0]],[[1,0,2,1],[1,2,4,2],[0,3,2,2],[1,2,1,0]],[[1,0,2,1],[1,2,3,3],[0,3,2,2],[1,2,1,0]],[[1,0,2,1],[1,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,0,2,2],[1,2,3,2],[0,3,3,0],[1,1,2,1]],[[1,0,2,1],[1,2,4,2],[0,3,3,0],[1,1,2,1]],[[1,0,2,1],[1,2,3,3],[0,3,3,0],[1,1,2,1]],[[1,0,2,1],[1,2,3,2],[0,3,4,0],[1,1,2,1]],[[1,0,2,1],[1,2,3,2],[0,3,3,0],[1,1,3,1]],[[1,0,2,1],[1,2,3,2],[0,3,3,0],[1,1,2,2]],[[1,0,2,2],[1,2,3,2],[0,3,3,0],[1,2,1,1]],[[1,0,2,1],[1,2,4,2],[0,3,3,0],[1,2,1,1]],[[1,0,2,1],[1,2,3,3],[0,3,3,0],[1,2,1,1]],[[1,0,2,1],[1,2,3,2],[0,3,4,0],[1,2,1,1]],[[1,0,2,2],[1,2,3,2],[0,3,3,1],[1,0,2,1]],[[1,0,2,1],[1,2,4,2],[0,3,3,1],[1,0,2,1]],[[1,0,2,1],[1,2,3,3],[0,3,3,1],[1,0,2,1]],[[1,0,2,1],[1,2,3,2],[0,3,4,1],[1,0,2,1]],[[1,0,2,2],[1,2,3,2],[0,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,4,2],[0,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,3,3],[0,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,2,3,2],[0,3,4,1],[1,1,1,1]],[[1,0,2,2],[1,2,3,2],[0,3,3,1],[1,1,2,0]],[[1,0,2,1],[1,2,4,2],[0,3,3,1],[1,1,2,0]],[[1,0,2,1],[1,2,3,3],[0,3,3,1],[1,1,2,0]],[[1,0,2,1],[1,2,3,2],[0,3,4,1],[1,1,2,0]],[[1,0,2,1],[1,2,3,2],[0,3,3,1],[1,1,3,0]],[[1,0,2,2],[1,2,3,2],[0,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,2,4,2],[0,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,2,3,3],[0,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,2,3,2],[0,3,4,1],[1,2,0,1]],[[1,0,2,2],[1,2,3,2],[0,3,3,1],[1,2,1,0]],[[1,0,2,1],[1,2,4,2],[0,3,3,1],[1,2,1,0]],[[1,0,2,1],[1,2,3,3],[0,3,3,1],[1,2,1,0]],[[1,0,2,1],[1,2,3,2],[0,3,4,1],[1,2,1,0]],[[1,0,2,2],[1,2,3,2],[0,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,2,4,2],[0,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,2,3,3],[0,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,0,2,2],[1,2,3,2],[1,0,3,2],[0,2,2,1]],[[1,0,2,1],[1,2,3,3],[1,0,3,2],[0,2,2,1]],[[1,0,2,1],[1,2,3,2],[1,0,3,3],[0,2,2,1]],[[1,0,2,1],[1,2,3,2],[1,0,3,2],[0,2,3,1]],[[1,0,2,1],[1,2,3,2],[1,0,3,2],[0,2,2,2]],[[1,0,2,2],[1,2,3,2],[1,2,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,4,2],[1,2,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,3,3],[1,2,1,2],[0,2,2,1]],[[1,0,2,1],[1,2,3,2],[1,2,1,3],[0,2,2,1]],[[1,0,2,1],[1,2,3,2],[1,2,1,2],[0,2,3,1]],[[1,0,2,1],[1,2,3,2],[1,2,1,2],[0,2,2,2]],[[1,0,2,2],[1,2,3,2],[1,2,2,2],[0,2,1,1]],[[1,0,2,1],[1,2,4,2],[1,2,2,2],[0,2,1,1]],[[1,0,2,1],[1,2,3,3],[1,2,2,2],[0,2,1,1]],[[1,0,2,1],[1,2,3,2],[1,2,2,3],[0,2,1,1]],[[1,0,2,1],[1,2,3,2],[1,2,2,2],[0,2,1,2]],[[1,0,2,2],[1,2,3,2],[1,2,2,2],[0,2,2,0]],[[1,0,2,1],[1,2,4,2],[1,2,2,2],[0,2,2,0]],[[1,0,2,1],[1,2,3,3],[1,2,2,2],[0,2,2,0]],[[1,0,2,1],[1,2,3,2],[1,2,2,3],[0,2,2,0]],[[1,0,2,2],[1,2,3,2],[1,2,3,0],[0,2,2,1]],[[1,0,2,1],[1,2,4,2],[1,2,3,0],[0,2,2,1]],[[1,0,2,1],[1,2,3,3],[1,2,3,0],[0,2,2,1]],[[1,0,2,1],[1,2,3,2],[1,2,4,0],[0,2,2,1]],[[1,0,2,1],[1,2,3,2],[1,2,3,0],[0,2,3,1]],[[1,0,2,1],[1,2,3,2],[1,2,3,0],[0,2,2,2]],[[1,0,3,1],[1,2,3,2],[1,2,3,0],[1,2,2,0]],[[1,0,2,2],[1,2,3,2],[1,2,3,0],[1,2,2,0]],[[1,0,2,1],[1,2,4,2],[1,2,3,0],[1,2,2,0]],[[1,0,2,2],[1,2,3,2],[1,2,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,4,2],[1,2,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,3,3],[1,2,3,1],[0,2,1,1]],[[1,0,2,1],[1,2,3,2],[1,2,4,1],[0,2,1,1]],[[1,0,2,2],[1,2,3,2],[1,2,3,1],[0,2,2,0]],[[1,0,2,1],[1,2,4,2],[1,2,3,1],[0,2,2,0]],[[1,0,2,1],[1,2,3,3],[1,2,3,1],[0,2,2,0]],[[1,0,2,1],[1,2,3,2],[1,2,4,1],[0,2,2,0]],[[1,0,2,1],[1,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,0,2,2],[1,2,3,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,2,4,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,2,3,3],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,0,3],[0,2,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,0,2],[0,2,3,1]],[[1,0,2,1],[1,2,3,2],[1,3,0,2],[0,2,2,2]],[[1,0,2,2],[1,2,3,2],[1,3,1,2],[0,1,2,1]],[[1,0,2,1],[1,2,4,2],[1,3,1,2],[0,1,2,1]],[[1,0,2,1],[1,2,3,3],[1,3,1,2],[0,1,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,1,3],[0,1,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,1,2],[0,1,3,1]],[[1,0,2,1],[1,2,3,2],[1,3,1,2],[0,1,2,2]],[[1,0,2,2],[1,2,3,2],[1,3,1,2],[1,0,2,1]],[[1,0,2,1],[1,2,4,2],[1,3,1,2],[1,0,2,1]],[[1,0,2,1],[1,2,3,3],[1,3,1,2],[1,0,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,1,3],[1,0,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,1,2],[1,0,2,2]],[[1,0,2,2],[1,2,3,2],[1,3,2,2],[0,0,2,1]],[[1,0,2,1],[1,2,4,2],[1,3,2,2],[0,0,2,1]],[[1,0,2,1],[1,2,3,3],[1,3,2,2],[0,0,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,2,3],[0,0,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,2,2],[0,0,2,2]],[[1,0,2,2],[1,2,3,2],[1,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,2,4,2],[1,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,2,3,3],[1,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,2,3,2],[1,3,2,3],[0,1,1,1]],[[1,0,2,1],[1,2,3,2],[1,3,2,2],[0,1,1,2]],[[1,0,2,2],[1,2,3,2],[1,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,2,4,2],[1,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,2,3,3],[1,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,2,3,2],[1,3,2,3],[0,1,2,0]],[[1,0,2,2],[1,2,3,2],[1,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,2,4,2],[1,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,2,3,3],[1,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,2,3,2],[1,3,2,3],[0,2,0,1]],[[1,0,2,1],[1,2,3,2],[1,3,2,2],[0,2,0,2]],[[1,0,2,2],[1,2,3,2],[1,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,2,4,2],[1,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,2,3,3],[1,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,0,2,2],[1,2,3,2],[1,3,2,2],[1,0,1,1]],[[1,0,2,1],[1,2,4,2],[1,3,2,2],[1,0,1,1]],[[1,0,2,1],[1,2,3,3],[1,3,2,2],[1,0,1,1]],[[1,0,2,1],[1,2,3,2],[1,3,2,3],[1,0,1,1]],[[1,0,2,1],[1,2,3,2],[1,3,2,2],[1,0,1,2]],[[1,0,2,2],[1,2,3,2],[1,3,2,2],[1,0,2,0]],[[1,0,2,1],[1,2,4,2],[1,3,2,2],[1,0,2,0]],[[1,0,2,1],[1,2,3,3],[1,3,2,2],[1,0,2,0]],[[1,0,2,1],[1,2,3,2],[1,3,2,3],[1,0,2,0]],[[1,0,2,2],[1,2,3,2],[1,3,2,2],[1,1,0,1]],[[1,0,2,1],[1,2,4,2],[1,3,2,2],[1,1,0,1]],[[1,0,2,1],[1,2,3,3],[1,3,2,2],[1,1,0,1]],[[1,0,2,1],[1,2,3,2],[1,3,2,3],[1,1,0,1]],[[1,0,2,2],[1,2,3,2],[1,3,2,2],[1,1,1,0]],[[1,0,2,1],[1,2,4,2],[1,3,2,2],[1,1,1,0]],[[1,0,2,1],[1,2,3,3],[1,3,2,2],[1,1,1,0]],[[1,0,2,2],[1,2,3,2],[1,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,2,4,2],[1,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,2,3,3],[1,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,4,0],[0,1,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,3,0],[0,1,3,1]],[[1,0,2,1],[1,2,3,2],[1,3,3,0],[0,1,2,2]],[[1,0,2,2],[1,2,3,2],[1,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,2,4,2],[1,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,2,3,3],[1,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,2,3,2],[1,3,4,0],[0,2,1,1]],[[1,0,2,2],[1,2,3,2],[1,3,3,0],[1,0,2,1]],[[1,0,2,1],[1,2,4,2],[1,3,3,0],[1,0,2,1]],[[1,0,2,1],[1,2,3,3],[1,3,3,0],[1,0,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,4,0],[1,0,2,1]],[[1,0,3,1],[1,2,3,2],[1,3,3,0],[1,1,2,0]],[[1,0,2,2],[1,2,3,2],[1,3,3,0],[1,1,2,0]],[[1,0,2,1],[1,2,4,2],[1,3,3,0],[1,1,2,0]],[[1,0,3,1],[1,2,3,2],[1,3,3,0],[1,2,0,1]],[[1,0,2,2],[1,2,3,2],[1,3,3,0],[1,2,0,1]],[[1,0,2,1],[1,2,4,2],[1,3,3,0],[1,2,0,1]],[[1,0,3,1],[1,2,3,2],[1,3,3,0],[1,2,1,0]],[[1,0,2,2],[1,2,3,2],[1,3,3,0],[1,2,1,0]],[[1,0,2,1],[1,2,4,2],[1,3,3,0],[1,2,1,0]],[[1,0,2,2],[1,2,3,2],[1,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,2,4,2],[1,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,2,3,3],[1,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,2,3,2],[1,3,4,1],[0,0,2,1]],[[1,0,2,2],[1,2,3,2],[1,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,2,4,2],[1,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,2,3,3],[1,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,2,3,2],[1,3,4,1],[0,1,1,1]],[[1,0,2,2],[1,2,3,2],[1,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,2,4,2],[1,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,2,3,3],[1,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,2,3,2],[1,3,4,1],[0,1,2,0]],[[1,0,2,1],[1,2,3,2],[1,3,3,1],[0,1,3,0]],[[1,0,2,2],[1,2,3,2],[1,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,2,4,2],[1,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,2,3,3],[1,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,2,3,2],[1,3,4,1],[0,2,0,1]],[[1,0,2,2],[1,2,3,2],[1,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,2,4,2],[1,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,2,3,3],[1,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,2,3,2],[1,3,4,1],[0,2,1,0]],[[1,0,2,2],[1,2,3,2],[1,3,3,1],[1,0,1,1]],[[1,0,2,1],[1,2,4,2],[1,3,3,1],[1,0,1,1]],[[1,0,2,1],[1,2,3,3],[1,3,3,1],[1,0,1,1]],[[1,0,2,1],[1,2,3,2],[1,3,4,1],[1,0,1,1]],[[1,0,2,2],[1,2,3,2],[1,3,3,1],[1,0,2,0]],[[1,0,2,1],[1,2,4,2],[1,3,3,1],[1,0,2,0]],[[1,0,2,1],[1,2,3,3],[1,3,3,1],[1,0,2,0]],[[1,0,2,1],[1,2,3,2],[1,3,4,1],[1,0,2,0]],[[1,0,2,2],[1,2,3,2],[1,3,3,1],[1,1,0,1]],[[1,0,2,1],[1,2,4,2],[1,3,3,1],[1,1,0,1]],[[1,0,2,1],[1,2,3,3],[1,3,3,1],[1,1,0,1]],[[1,0,2,2],[1,2,3,2],[1,3,3,1],[1,1,1,0]],[[1,0,2,1],[1,2,4,2],[1,3,3,1],[1,1,1,0]],[[1,0,2,1],[1,2,3,3],[1,3,3,1],[1,1,1,0]],[[1,2,1,1],[2,1,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,2,2],[2,1,4,2],[1,1,1,0]],[[1,2,1,1],[2,1,2,3],[2,1,3,2],[1,1,1,0]],[[1,2,1,2],[2,1,2,2],[2,1,3,2],[1,1,1,0]],[[1,2,1,1],[2,1,2,2],[2,1,3,2],[1,1,0,2]],[[1,2,1,1],[2,1,2,2],[2,1,3,3],[1,1,0,1]],[[1,2,1,1],[2,1,2,2],[2,1,4,2],[1,1,0,1]],[[1,2,1,1],[2,1,2,3],[2,1,3,2],[1,1,0,1]],[[1,2,1,2],[2,1,2,2],[2,1,3,2],[1,1,0,1]],[[1,2,1,1],[2,1,2,2],[2,1,3,2],[1,0,3,0]],[[1,2,1,1],[2,1,2,2],[2,1,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,2,2],[2,1,4,2],[1,0,2,0]],[[1,2,1,1],[2,1,2,3],[2,1,3,2],[1,0,2,0]],[[1,2,1,2],[2,1,2,2],[2,1,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,2,2],[2,1,3,2],[1,0,1,2]],[[1,2,1,1],[2,1,2,2],[2,1,3,3],[1,0,1,1]],[[1,2,1,1],[2,1,2,2],[2,1,4,2],[1,0,1,1]],[[1,2,1,1],[2,1,2,3],[2,1,3,2],[1,0,1,1]],[[1,2,1,2],[2,1,2,2],[2,1,3,2],[1,0,1,1]],[[1,0,2,2],[1,2,3,2],[1,3,3,2],[0,1,0,1]],[[1,0,2,1],[1,2,4,2],[1,3,3,2],[0,1,0,1]],[[1,0,2,1],[1,2,3,3],[1,3,3,2],[0,1,0,1]],[[1,0,2,1],[1,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,1,1],[2,1,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,2,2],[2,1,4,2],[0,2,1,0]],[[1,2,1,1],[2,1,2,3],[2,1,3,2],[0,2,1,0]],[[1,2,1,2],[2,1,2,2],[2,1,3,2],[0,2,1,0]],[[1,2,1,1],[2,1,2,2],[2,1,3,2],[0,2,0,2]],[[1,2,1,1],[2,1,2,2],[2,1,3,3],[0,2,0,1]],[[1,2,1,1],[2,1,2,2],[2,1,4,2],[0,2,0,1]],[[1,2,1,1],[2,1,2,3],[2,1,3,2],[0,2,0,1]],[[1,2,1,2],[2,1,2,2],[2,1,3,2],[0,2,0,1]],[[1,2,1,1],[2,1,2,2],[2,1,3,2],[0,1,3,0]],[[1,2,1,1],[2,1,2,2],[2,1,3,3],[0,1,2,0]],[[1,2,1,1],[2,1,2,2],[2,1,4,2],[0,1,2,0]],[[1,2,1,1],[2,1,2,3],[2,1,3,2],[0,1,2,0]],[[1,0,2,2],[1,2,3,2],[1,3,3,2],[1,0,0,1]],[[1,0,2,1],[1,2,4,2],[1,3,3,2],[1,0,0,1]],[[1,0,2,1],[1,2,3,3],[1,3,3,2],[1,0,0,1]],[[1,0,2,1],[1,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,1,2],[2,1,2,2],[2,1,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,2,2],[2,1,3,2],[0,1,1,2]],[[1,2,1,1],[2,1,2,2],[2,1,3,3],[0,1,1,1]],[[1,2,1,1],[2,1,2,2],[2,1,4,2],[0,1,1,1]],[[1,2,1,1],[2,1,2,3],[2,1,3,2],[0,1,1,1]],[[1,2,1,2],[2,1,2,2],[2,1,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,2,2],[2,1,3,2],[0,0,2,2]],[[1,2,1,1],[2,1,2,2],[2,1,3,3],[0,0,2,1]],[[1,2,1,1],[2,1,2,2],[2,1,4,2],[0,0,2,1]],[[1,2,1,1],[2,1,2,3],[2,1,3,2],[0,0,2,1]],[[1,2,1,2],[2,1,2,2],[2,1,3,2],[0,0,2,1]],[[1,2,1,1],[2,1,2,2],[2,1,3,1],[1,0,2,2]],[[1,2,1,1],[2,1,2,2],[2,1,3,1],[1,0,3,1]],[[1,2,1,1],[2,1,2,2],[2,1,4,1],[1,0,2,1]],[[1,2,1,1],[2,1,2,2],[2,1,3,1],[0,1,2,2]],[[1,2,1,1],[2,1,2,2],[2,1,3,1],[0,1,3,1]],[[1,2,1,1],[2,1,2,2],[2,1,4,1],[0,1,2,1]],[[1,2,1,1],[2,1,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,1,1],[2,1,2,2],[2,1,2,2],[1,0,3,1]],[[1,2,1,1],[2,1,2,2],[2,1,2,3],[1,0,2,1]],[[1,2,1,1],[2,1,2,3],[2,1,2,2],[1,0,2,1]],[[1,2,1,2],[2,1,2,2],[2,1,2,2],[1,0,2,1]],[[1,2,1,1],[2,1,2,2],[2,1,2,2],[0,1,2,2]],[[1,2,1,1],[2,1,2,2],[2,1,2,2],[0,1,3,1]],[[1,2,1,1],[2,1,2,2],[2,1,2,3],[0,1,2,1]],[[1,2,1,1],[2,1,2,3],[2,1,2,2],[0,1,2,1]],[[1,2,1,2],[2,1,2,2],[2,1,2,2],[0,1,2,1]],[[1,2,1,1],[2,1,2,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,1],[2,1,2,2],[2,1,0,2],[1,2,3,1]],[[1,2,1,1],[2,1,2,2],[2,1,0,2],[1,3,2,1]],[[1,2,1,1],[2,1,2,2],[2,1,0,2],[2,2,2,1]],[[1,2,1,1],[2,1,2,2],[2,1,0,3],[1,2,2,1]],[[1,2,1,1],[2,1,2,2],[3,1,0,2],[1,2,2,1]],[[1,2,1,1],[2,1,2,3],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[3,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,1,2],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,3,1,1],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[2,2,1,1],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,3,1],[1,2,3,2],[2,1,3,0],[1,2,2,0]],[[1,0,2,2],[1,2,3,2],[2,1,3,0],[1,2,2,0]],[[1,0,2,1],[1,2,4,2],[2,1,3,0],[1,2,2,0]],[[1,2,1,1],[2,1,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,2,2],[2,0,4,2],[1,2,1,0]],[[1,2,1,1],[2,1,2,3],[2,0,3,2],[1,2,1,0]],[[1,2,1,2],[2,1,2,2],[2,0,3,2],[1,2,1,0]],[[1,2,1,1],[2,1,2,2],[2,0,3,2],[1,2,0,2]],[[1,2,1,1],[2,1,2,2],[2,0,3,3],[1,2,0,1]],[[1,2,1,1],[2,1,2,2],[2,0,4,2],[1,2,0,1]],[[1,2,1,1],[2,1,2,3],[2,0,3,2],[1,2,0,1]],[[1,2,1,2],[2,1,2,2],[2,0,3,2],[1,2,0,1]],[[1,2,1,1],[2,1,2,2],[2,0,3,2],[1,1,3,0]],[[1,2,1,1],[2,1,2,2],[2,0,3,3],[1,1,2,0]],[[1,2,1,1],[2,1,2,2],[2,0,4,2],[1,1,2,0]],[[1,2,1,1],[2,1,2,3],[2,0,3,2],[1,1,2,0]],[[1,2,1,2],[2,1,2,2],[2,0,3,2],[1,1,2,0]],[[1,2,1,1],[2,1,2,2],[2,0,3,2],[1,1,1,2]],[[1,2,1,1],[2,1,2,2],[2,0,3,3],[1,1,1,1]],[[1,2,1,1],[2,1,2,2],[2,0,4,2],[1,1,1,1]],[[1,2,1,1],[2,1,2,3],[2,0,3,2],[1,1,1,1]],[[1,2,1,2],[2,1,2,2],[2,0,3,2],[1,1,1,1]],[[1,2,1,1],[2,1,2,2],[2,0,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,2,2],[2,0,3,2],[0,3,2,0]],[[1,2,1,1],[2,1,2,2],[2,0,3,3],[0,2,2,0]],[[1,2,1,1],[2,1,2,2],[2,0,4,2],[0,2,2,0]],[[1,2,1,1],[2,1,2,3],[2,0,3,2],[0,2,2,0]],[[1,2,1,2],[2,1,2,2],[2,0,3,2],[0,2,2,0]],[[1,2,1,1],[2,1,2,2],[2,0,3,2],[0,2,1,2]],[[1,2,1,1],[2,1,2,2],[2,0,3,3],[0,2,1,1]],[[1,2,1,1],[2,1,2,2],[2,0,4,2],[0,2,1,1]],[[1,2,1,1],[2,1,2,3],[2,0,3,2],[0,2,1,1]],[[1,2,1,2],[2,1,2,2],[2,0,3,2],[0,2,1,1]],[[1,2,1,1],[2,1,2,2],[2,0,3,1],[1,1,2,2]],[[1,2,1,1],[2,1,2,2],[2,0,3,1],[1,1,3,1]],[[1,2,1,1],[2,1,2,2],[2,0,4,1],[1,1,2,1]],[[1,2,1,1],[2,1,2,2],[2,0,3,1],[0,2,2,2]],[[1,2,1,1],[2,1,2,2],[2,0,3,1],[0,2,3,1]],[[1,2,1,1],[2,1,2,2],[2,0,3,1],[0,3,2,1]],[[1,2,1,1],[2,1,2,2],[2,0,4,1],[0,2,2,1]],[[1,2,1,1],[2,1,2,2],[2,0,2,2],[1,1,2,2]],[[1,2,1,1],[2,1,2,2],[2,0,2,2],[1,1,3,1]],[[1,2,1,1],[2,1,2,2],[2,0,2,3],[1,1,2,1]],[[1,2,1,1],[2,1,2,3],[2,0,2,2],[1,1,2,1]],[[1,2,1,2],[2,1,2,2],[2,0,2,2],[1,1,2,1]],[[1,2,1,1],[2,1,2,2],[2,0,2,2],[0,2,2,2]],[[1,2,1,1],[2,1,2,2],[2,0,2,2],[0,2,3,1]],[[1,2,1,1],[2,1,2,2],[2,0,2,2],[0,3,2,1]],[[1,2,1,1],[2,1,2,2],[2,0,2,3],[0,2,2,1]],[[1,2,1,1],[2,1,2,3],[2,0,2,2],[0,2,2,1]],[[1,2,1,2],[2,1,2,2],[2,0,2,2],[0,2,2,1]],[[1,2,1,1],[2,1,2,2],[2,0,1,2],[1,2,2,2]],[[1,2,1,1],[2,1,2,2],[2,0,1,2],[1,2,3,1]],[[1,2,1,1],[2,1,2,2],[2,0,1,2],[1,3,2,1]],[[1,2,1,1],[2,1,2,2],[2,0,1,2],[2,2,2,1]],[[1,2,1,1],[2,1,2,2],[2,0,1,3],[1,2,2,1]],[[1,2,1,1],[2,1,2,2],[3,0,1,2],[1,2,2,1]],[[1,0,3,1],[1,2,3,2],[2,2,3,0],[0,2,2,0]],[[1,0,2,2],[1,2,3,2],[2,2,3,0],[0,2,2,0]],[[1,0,2,1],[1,2,4,2],[2,2,3,0],[0,2,2,0]],[[1,2,1,1],[2,1,2,3],[2,0,1,2],[1,2,2,1]],[[1,2,1,1],[3,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,1,2],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,3,1,1],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[2,2,1,1],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,1,1],[2,1,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,1,2,2],[1,3,4,2],[0,0,2,0]],[[1,2,1,1],[2,1,2,3],[1,3,3,2],[0,0,2,0]],[[1,2,1,2],[2,1,2,2],[1,3,3,2],[0,0,2,0]],[[1,2,1,1],[2,1,2,2],[1,3,3,2],[0,0,1,2]],[[1,2,1,1],[2,1,2,2],[1,3,3,3],[0,0,1,1]],[[1,2,1,1],[2,1,2,2],[1,3,4,2],[0,0,1,1]],[[1,2,1,1],[2,1,2,3],[1,3,3,2],[0,0,1,1]],[[1,2,1,2],[2,1,2,2],[1,3,3,2],[0,0,1,1]],[[1,2,1,1],[2,1,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,2,2],[1,2,4,2],[1,1,1,0]],[[1,2,1,1],[2,1,2,3],[1,2,3,2],[1,1,1,0]],[[1,2,1,2],[2,1,2,2],[1,2,3,2],[1,1,1,0]],[[1,2,1,1],[2,1,2,2],[1,2,3,2],[1,1,0,2]],[[1,2,1,1],[2,1,2,2],[1,2,3,3],[1,1,0,1]],[[1,2,1,1],[2,1,2,2],[1,2,4,2],[1,1,0,1]],[[1,2,1,1],[2,1,2,3],[1,2,3,2],[1,1,0,1]],[[1,2,1,2],[2,1,2,2],[1,2,3,2],[1,1,0,1]],[[1,2,1,1],[2,1,2,2],[1,2,3,2],[1,0,3,0]],[[1,2,1,1],[2,1,2,2],[1,2,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,2,2],[1,2,4,2],[1,0,2,0]],[[1,2,1,1],[2,1,2,3],[1,2,3,2],[1,0,2,0]],[[1,2,1,2],[2,1,2,2],[1,2,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,2,2],[1,2,3,2],[1,0,1,2]],[[1,2,1,1],[2,1,2,2],[1,2,3,3],[1,0,1,1]],[[1,2,1,1],[2,1,2,2],[1,2,4,2],[1,0,1,1]],[[1,2,1,1],[2,1,2,3],[1,2,3,2],[1,0,1,1]],[[1,2,1,2],[2,1,2,2],[1,2,3,2],[1,0,1,1]],[[1,2,1,1],[2,1,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,2,2],[1,2,4,2],[0,2,1,0]],[[1,2,1,1],[2,1,2,3],[1,2,3,2],[0,2,1,0]],[[1,2,1,2],[2,1,2,2],[1,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,1,2,2],[1,2,3,2],[0,2,0,2]],[[1,2,1,1],[2,1,2,2],[1,2,3,3],[0,2,0,1]],[[1,2,1,1],[2,1,2,2],[1,2,4,2],[0,2,0,1]],[[1,2,1,1],[2,1,2,3],[1,2,3,2],[0,2,0,1]],[[1,2,1,2],[2,1,2,2],[1,2,3,2],[0,2,0,1]],[[1,2,1,1],[2,1,2,2],[1,2,3,2],[0,1,3,0]],[[1,2,1,1],[2,1,2,2],[1,2,3,3],[0,1,2,0]],[[1,2,1,1],[2,1,2,2],[1,2,4,2],[0,1,2,0]],[[1,2,1,1],[2,1,2,3],[1,2,3,2],[0,1,2,0]],[[1,2,1,2],[2,1,2,2],[1,2,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,2,2],[1,2,3,2],[0,1,1,2]],[[1,2,1,1],[2,1,2,2],[1,2,3,3],[0,1,1,1]],[[1,2,1,1],[2,1,2,2],[1,2,4,2],[0,1,1,1]],[[1,2,1,1],[2,1,2,3],[1,2,3,2],[0,1,1,1]],[[1,2,1,2],[2,1,2,2],[1,2,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,2,2],[1,2,3,2],[0,0,2,2]],[[1,2,1,1],[2,1,2,2],[1,2,3,3],[0,0,2,1]],[[1,2,1,1],[2,1,2,2],[1,2,4,2],[0,0,2,1]],[[1,2,1,1],[2,1,2,3],[1,2,3,2],[0,0,2,1]],[[1,2,1,2],[2,1,2,2],[1,2,3,2],[0,0,2,1]],[[1,2,1,1],[2,1,2,2],[1,2,3,1],[1,0,2,2]],[[1,2,1,1],[2,1,2,2],[1,2,3,1],[1,0,3,1]],[[1,2,1,1],[2,1,2,2],[1,2,4,1],[1,0,2,1]],[[1,2,1,1],[2,1,2,2],[1,2,3,1],[0,1,2,2]],[[1,2,1,1],[2,1,2,2],[1,2,3,1],[0,1,3,1]],[[1,2,1,1],[2,1,2,2],[1,2,4,1],[0,1,2,1]],[[1,2,1,1],[2,1,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,1,1],[2,1,2,2],[1,2,2,2],[1,0,3,1]],[[1,2,1,1],[2,1,2,2],[1,2,2,3],[1,0,2,1]],[[1,2,1,1],[2,1,2,3],[1,2,2,2],[1,0,2,1]],[[1,2,1,2],[2,1,2,2],[1,2,2,2],[1,0,2,1]],[[1,2,1,1],[2,1,2,2],[1,2,2,2],[0,1,2,2]],[[1,2,1,1],[2,1,2,2],[1,2,2,2],[0,1,3,1]],[[1,2,1,1],[2,1,2,2],[1,2,2,3],[0,1,2,1]],[[1,2,1,1],[2,1,2,3],[1,2,2,2],[0,1,2,1]],[[1,2,1,2],[2,1,2,2],[1,2,2,2],[0,1,2,1]],[[1,0,3,1],[1,2,3,2],[2,3,3,0],[0,1,1,1]],[[1,0,2,2],[1,2,3,2],[2,3,3,0],[0,1,1,1]],[[1,0,2,1],[1,2,4,2],[2,3,3,0],[0,1,1,1]],[[1,0,3,1],[1,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,2,2],[1,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,2,1],[1,2,4,2],[2,3,3,0],[0,1,2,0]],[[1,0,3,1],[1,2,3,2],[2,3,3,0],[0,2,0,1]],[[1,0,2,2],[1,2,3,2],[2,3,3,0],[0,2,0,1]],[[1,0,2,1],[1,2,4,2],[2,3,3,0],[0,2,0,1]],[[1,0,3,1],[1,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,2,2],[1,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,2,1],[1,2,4,2],[2,3,3,0],[0,2,1,0]],[[1,0,3,1],[1,2,3,2],[2,3,3,0],[1,0,1,1]],[[1,0,2,2],[1,2,3,2],[2,3,3,0],[1,0,1,1]],[[1,0,2,1],[1,2,4,2],[2,3,3,0],[1,0,1,1]],[[1,0,3,1],[1,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,2,2],[1,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,2,1],[1,2,4,2],[2,3,3,0],[1,0,2,0]],[[1,0,3,1],[1,2,3,2],[2,3,3,0],[1,1,0,1]],[[1,0,2,2],[1,2,3,2],[2,3,3,0],[1,1,0,1]],[[1,0,2,1],[1,2,4,2],[2,3,3,0],[1,1,0,1]],[[1,0,3,1],[1,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,2,2],[1,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,2,1],[1,2,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,1,1],[2,1,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,2,2],[1,1,3,2],[0,3,2,0]],[[1,2,1,1],[2,1,2,2],[1,1,3,3],[0,2,2,0]],[[1,2,1,1],[2,1,2,2],[1,1,4,2],[0,2,2,0]],[[1,2,1,1],[2,1,2,3],[1,1,3,2],[0,2,2,0]],[[1,2,1,2],[2,1,2,2],[1,1,3,2],[0,2,2,0]],[[1,2,1,1],[2,1,2,2],[1,1,3,2],[0,2,1,2]],[[1,2,1,1],[2,1,2,2],[1,1,3,3],[0,2,1,1]],[[1,2,1,1],[2,1,2,2],[1,1,4,2],[0,2,1,1]],[[1,2,1,1],[2,1,2,3],[1,1,3,2],[0,2,1,1]],[[1,2,1,2],[2,1,2,2],[1,1,3,2],[0,2,1,1]],[[1,2,1,1],[2,1,2,2],[1,1,3,1],[0,2,2,2]],[[1,2,1,1],[2,1,2,2],[1,1,3,1],[0,2,3,1]],[[1,2,1,1],[2,1,2,2],[1,1,3,1],[0,3,2,1]],[[1,2,1,1],[2,1,2,2],[1,1,4,1],[0,2,2,1]],[[1,2,1,1],[2,1,2,2],[1,1,2,2],[0,2,2,2]],[[1,2,1,1],[2,1,2,2],[1,1,2,2],[0,2,3,1]],[[1,2,1,1],[2,1,2,2],[1,1,2,2],[0,3,2,1]],[[1,2,1,1],[2,1,2,2],[1,1,2,3],[0,2,2,1]],[[1,2,1,1],[2,1,2,3],[1,1,2,2],[0,2,2,1]],[[1,2,1,2],[2,1,2,2],[1,1,2,2],[0,2,2,1]],[[1,2,1,1],[2,1,2,2],[1,0,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,2,2],[1,0,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,2,2],[1,0,3,2],[2,2,2,0]],[[1,2,1,1],[2,1,2,2],[1,0,3,3],[1,2,2,0]],[[1,2,1,1],[2,1,2,2],[1,0,4,2],[1,2,2,0]],[[1,2,1,1],[2,1,2,3],[1,0,3,2],[1,2,2,0]],[[1,2,1,2],[2,1,2,2],[1,0,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,2,2],[1,0,3,2],[1,2,1,2]],[[1,2,1,1],[2,1,2,2],[1,0,3,3],[1,2,1,1]],[[1,2,1,1],[2,1,2,2],[1,0,4,2],[1,2,1,1]],[[1,2,1,1],[2,1,2,3],[1,0,3,2],[1,2,1,1]],[[1,2,1,2],[2,1,2,2],[1,0,3,2],[1,2,1,1]],[[1,2,1,1],[2,1,2,2],[1,0,3,2],[0,2,2,2]],[[1,2,1,1],[2,1,2,2],[1,0,3,2],[0,2,3,1]],[[1,2,1,1],[2,1,2,2],[1,0,3,3],[0,2,2,1]],[[1,2,1,1],[2,1,2,3],[1,0,3,2],[0,2,2,1]],[[1,2,1,2],[2,1,2,2],[1,0,3,2],[0,2,2,1]],[[1,2,1,1],[2,1,2,2],[1,0,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,2,2],[1,0,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,2,2],[1,0,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,2,2],[1,0,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,2,2],[1,0,4,1],[1,2,2,1]],[[1,2,1,1],[2,1,2,2],[1,0,2,2],[1,2,2,2]],[[1,2,1,1],[2,1,2,2],[1,0,2,2],[1,2,3,1]],[[1,2,1,1],[2,1,2,2],[1,0,2,2],[1,3,2,1]],[[1,2,1,1],[2,1,2,2],[1,0,2,2],[2,2,2,1]],[[1,2,1,1],[2,1,2,2],[1,0,2,3],[1,2,2,1]],[[1,2,1,1],[2,1,2,3],[1,0,2,2],[1,2,2,1]],[[1,2,1,2],[2,1,2,2],[1,0,2,2],[1,2,2,1]],[[1,2,1,1],[2,1,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,2,2],[0,2,4,2],[1,2,1,0]],[[1,2,1,1],[2,1,2,3],[0,2,3,2],[1,2,1,0]],[[1,2,1,2],[2,1,2,2],[0,2,3,2],[1,2,1,0]],[[1,2,1,1],[2,1,2,2],[0,2,3,2],[1,2,0,2]],[[1,2,1,1],[2,1,2,2],[0,2,3,3],[1,2,0,1]],[[1,2,1,1],[2,1,2,2],[0,2,4,2],[1,2,0,1]],[[1,2,1,1],[2,1,2,3],[0,2,3,2],[1,2,0,1]],[[1,2,1,2],[2,1,2,2],[0,2,3,2],[1,2,0,1]],[[1,2,1,1],[2,1,2,2],[0,2,3,2],[1,1,3,0]],[[1,2,1,1],[2,1,2,2],[0,2,3,3],[1,1,2,0]],[[1,2,1,1],[2,1,2,2],[0,2,4,2],[1,1,2,0]],[[1,2,1,1],[2,1,2,3],[0,2,3,2],[1,1,2,0]],[[1,2,1,2],[2,1,2,2],[0,2,3,2],[1,1,2,0]],[[1,2,1,1],[2,1,2,2],[0,2,3,2],[1,1,1,2]],[[1,2,1,1],[2,1,2,2],[0,2,3,3],[1,1,1,1]],[[1,2,1,1],[2,1,2,2],[0,2,4,2],[1,1,1,1]],[[1,2,1,1],[2,1,2,3],[0,2,3,2],[1,1,1,1]],[[1,2,1,2],[2,1,2,2],[0,2,3,2],[1,1,1,1]],[[1,2,1,1],[2,1,2,2],[0,2,3,2],[1,0,2,2]],[[1,2,1,1],[2,1,2,2],[0,2,3,3],[1,0,2,1]],[[1,2,1,1],[2,1,2,2],[0,2,4,2],[1,0,2,1]],[[1,2,1,1],[2,1,2,3],[0,2,3,2],[1,0,2,1]],[[1,2,1,2],[2,1,2,2],[0,2,3,2],[1,0,2,1]],[[1,2,1,1],[2,1,2,2],[0,2,3,1],[1,1,2,2]],[[1,2,1,1],[2,1,2,2],[0,2,3,1],[1,1,3,1]],[[1,2,1,1],[2,1,2,2],[0,2,4,1],[1,1,2,1]],[[1,2,1,1],[2,1,2,2],[0,2,2,2],[1,1,2,2]],[[1,2,1,1],[2,1,2,2],[0,2,2,2],[1,1,3,1]],[[1,2,1,1],[2,1,2,2],[0,2,2,3],[1,1,2,1]],[[1,2,1,1],[2,1,2,3],[0,2,2,2],[1,1,2,1]],[[1,2,1,2],[2,1,2,2],[0,2,2,2],[1,1,2,1]],[[1,2,1,1],[2,1,2,2],[0,1,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,2,2],[0,1,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,2,2],[0,1,3,2],[2,2,2,0]],[[1,2,1,1],[2,1,2,2],[0,1,3,3],[1,2,2,0]],[[1,2,1,1],[2,1,2,2],[0,1,4,2],[1,2,2,0]],[[1,2,1,1],[2,1,2,3],[0,1,3,2],[1,2,2,0]],[[1,2,1,2],[2,1,2,2],[0,1,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,2,2],[0,1,3,2],[1,2,1,2]],[[1,2,1,1],[2,1,2,2],[0,1,3,3],[1,2,1,1]],[[1,2,1,1],[2,1,2,2],[0,1,4,2],[1,2,1,1]],[[1,2,1,1],[2,1,2,3],[0,1,3,2],[1,2,1,1]],[[1,2,1,2],[2,1,2,2],[0,1,3,2],[1,2,1,1]],[[1,2,1,1],[2,1,2,2],[0,1,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,2,2],[0,1,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,2,2],[0,1,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,2,2],[0,1,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,2,2],[0,1,4,1],[1,2,2,1]],[[1,2,1,1],[2,1,2,2],[0,1,2,2],[1,2,2,2]],[[1,2,1,1],[2,1,2,2],[0,1,2,2],[1,2,3,1]],[[1,2,1,1],[2,1,2,2],[0,1,2,2],[1,3,2,1]],[[1,2,1,1],[2,1,2,2],[0,1,2,2],[2,2,2,1]],[[1,2,1,1],[2,1,2,2],[0,1,2,3],[1,2,2,1]],[[1,2,1,1],[2,1,2,3],[0,1,2,2],[1,2,2,1]],[[1,2,1,2],[2,1,2,2],[0,1,2,2],[1,2,2,1]],[[1,2,1,1],[2,1,2,2],[0,0,3,2],[1,2,2,2]],[[1,2,1,1],[2,1,2,2],[0,0,3,2],[1,2,3,1]],[[1,2,1,1],[2,1,2,2],[0,0,3,3],[1,2,2,1]],[[1,2,1,1],[2,1,2,3],[0,0,3,2],[1,2,2,1]],[[1,2,1,2],[2,1,2,2],[0,0,3,2],[1,2,2,1]],[[1,2,1,1],[2,1,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[2,1,2,1],[2,4,3,1],[1,2,0,0]],[[1,2,1,1],[2,1,2,1],[3,3,3,1],[1,2,0,0]],[[1,2,1,1],[3,1,2,1],[2,3,3,1],[1,2,0,0]],[[1,3,1,1],[2,1,2,1],[2,3,3,1],[1,2,0,0]],[[2,2,1,1],[2,1,2,1],[2,3,3,1],[1,2,0,0]],[[1,2,1,1],[2,1,2,1],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[2,1,2,1],[2,3,4,1],[1,1,1,0]],[[1,2,1,1],[2,1,2,1],[2,4,3,1],[1,1,1,0]],[[1,2,1,1],[2,1,2,1],[3,3,3,1],[1,1,1,0]],[[1,2,1,1],[3,1,2,1],[2,3,3,1],[1,1,1,0]],[[1,3,1,1],[2,1,2,1],[2,3,3,1],[1,1,1,0]],[[2,2,1,1],[2,1,2,1],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[2,1,2,1],[2,3,3,1],[2,1,0,1]],[[1,2,1,1],[2,1,2,1],[2,3,4,1],[1,1,0,1]],[[1,2,1,1],[2,1,2,1],[2,4,3,1],[1,1,0,1]],[[1,2,1,1],[2,1,2,1],[3,3,3,1],[1,1,0,1]],[[1,2,1,1],[3,1,2,1],[2,3,3,1],[1,1,0,1]],[[1,3,1,1],[2,1,2,1],[2,3,3,1],[1,1,0,1]],[[2,2,1,1],[2,1,2,1],[2,3,3,1],[1,1,0,1]],[[1,2,1,1],[2,1,2,1],[2,3,3,1],[1,0,3,0]],[[1,2,1,1],[2,1,2,1],[2,3,3,1],[2,0,2,0]],[[1,2,1,1],[2,1,2,1],[2,3,4,1],[1,0,2,0]],[[1,2,1,1],[2,1,2,1],[2,4,3,1],[1,0,2,0]],[[1,2,1,1],[2,1,2,1],[3,3,3,1],[1,0,2,0]],[[1,2,1,1],[3,1,2,1],[2,3,3,1],[1,0,2,0]],[[1,3,1,1],[2,1,2,1],[2,3,3,1],[1,0,2,0]],[[2,2,1,1],[2,1,2,1],[2,3,3,1],[1,0,2,0]],[[1,2,1,1],[2,1,2,1],[2,3,3,1],[2,0,1,1]],[[1,2,1,1],[2,1,2,1],[2,3,4,1],[1,0,1,1]],[[1,2,1,1],[2,1,2,1],[2,4,3,1],[1,0,1,1]],[[1,2,1,1],[2,1,2,1],[3,3,3,1],[1,0,1,1]],[[1,2,1,1],[3,1,2,1],[2,3,3,1],[1,0,1,1]],[[1,3,1,1],[2,1,2,1],[2,3,3,1],[1,0,1,1]],[[2,2,1,1],[2,1,2,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,2],[1,3,0,2],[0,3,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,3],[0,3,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[0,3,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[0,3,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,0,2],[0,3,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,0,2],[0,3,2,2],[1,2,2,2]],[[1,0,2,1],[1,3,0,2],[0,3,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[0,3,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,0,2],[0,3,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,0,2],[0,3,3,1],[1,2,2,2]],[[1,0,2,2],[1,3,0,2],[0,3,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,0,3],[0,3,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[0,3,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[0,3,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[0,3,3,2],[1,2,1,2]],[[1,0,2,2],[1,3,0,2],[0,3,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,3],[0,3,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[0,3,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[0,3,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[0,3,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,0,2],[0,3,3,2],[1,2,3,0]],[[1,0,3,1],[1,3,0,2],[1,2,2,2],[1,2,2,1]],[[1,0,2,2],[1,3,0,2],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,0,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,0,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,1],[1,3,0,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,0,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,0,2],[1,2,3,1],[1,2,2,2]],[[1,0,3,1],[1,3,0,2],[1,2,3,2],[1,2,1,1]],[[1,0,2,2],[1,3,0,2],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,0,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[1,2,3,2],[1,2,1,2]],[[1,0,3,1],[1,3,0,2],[1,2,3,2],[1,2,2,0]],[[1,0,2,2],[1,3,0,2],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,1],[1,3,0,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,0,2],[1,2,3,2],[1,2,3,0]],[[1,0,3,1],[1,3,0,2],[1,3,1,2],[1,2,2,1]],[[1,0,2,2],[1,3,0,2],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[1,4,0,2],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,3],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,4,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,1,3],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,1,2],[2,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,1,2],[1,3,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,1,2],[1,2,3,1]],[[1,0,2,1],[1,3,0,2],[1,3,1,2],[1,2,2,2]],[[1,0,2,1],[1,4,0,2],[1,3,2,1],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,4,2,1],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,2,1],[2,2,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,2,1],[1,3,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,2,1],[1,2,3,1]],[[1,0,2,1],[1,3,0,2],[1,3,2,1],[1,2,2,2]],[[1,0,3,1],[1,3,0,2],[1,3,2,2],[1,1,2,1]],[[1,0,2,2],[1,3,0,2],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[1,3,0,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,1],[1,3,0,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,1],[1,4,0,2],[1,3,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[1,4,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[1,3,2,2],[2,2,2,0]],[[1,0,2,1],[1,3,0,2],[1,3,2,2],[1,3,2,0]],[[1,0,2,1],[1,3,0,2],[1,3,2,2],[1,2,3,0]],[[1,0,2,1],[1,4,0,2],[1,3,3,1],[1,1,2,1]],[[1,0,2,1],[1,3,0,2],[1,4,3,1],[1,1,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,1],[1,4,0,2],[1,3,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[1,4,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[1,3,4,1],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,1],[2,2,1,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,1],[1,3,1,1]],[[1,0,2,2],[1,3,0,2],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[1,3,0,3],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,4,2],[1,0,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,3],[1,0,2,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,2],[1,0,2,2]],[[1,0,3,1],[1,3,0,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,2],[1,3,0,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,4,0,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,0,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,0,2],[1,4,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,0,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,2],[1,1,1,2]],[[1,0,3,1],[1,3,0,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,2],[1,3,0,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,4,0,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,0,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,0,2],[1,4,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,0,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,1],[1,3,0,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,1],[1,3,0,2],[1,3,3,2],[1,1,3,0]],[[1,0,3,1],[1,3,0,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,2],[1,3,0,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,4,0,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,0,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,0,2],[1,4,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,0,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,2],[2,2,0,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,2],[1,3,0,1]],[[1,0,2,1],[1,3,0,2],[1,3,3,2],[1,2,0,2]],[[1,0,3,1],[1,3,0,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,2],[1,3,0,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,4,0,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,0,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,0,2],[1,4,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,0,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,1],[1,3,0,2],[1,3,3,3],[1,2,1,0]],[[1,0,2,1],[1,3,0,2],[1,3,3,2],[2,2,1,0]],[[1,0,2,1],[1,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,0,3,1],[1,3,0,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,2],[1,3,0,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[3,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,0,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,0,2],[2,1,2,2],[1,2,2,2]],[[1,0,2,1],[1,3,0,2],[3,1,3,1],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,0,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,0,2],[2,1,3,1],[1,2,2,2]],[[1,0,3,1],[1,3,0,2],[2,1,3,2],[1,2,1,1]],[[1,0,2,2],[1,3,0,2],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,0,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[2,1,3,2],[1,2,1,2]],[[1,0,3,1],[1,3,0,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,2],[1,3,0,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[3,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,0,2],[2,1,3,2],[1,2,3,0]],[[1,0,3,1],[1,3,0,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,2],[1,3,0,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,3],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[3,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,1,3],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,1,2],[2,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,1,2],[1,3,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,1,2],[1,2,3,1]],[[1,0,2,1],[1,3,0,2],[2,2,1,2],[1,2,2,2]],[[1,0,2,1],[1,3,0,2],[3,2,2,1],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,2,1],[2,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,2,1],[1,3,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,2,1],[1,2,3,1]],[[1,0,2,1],[1,3,0,2],[2,2,2,1],[1,2,2,2]],[[1,0,3,1],[1,3,0,2],[2,2,2,2],[0,2,2,1]],[[1,0,2,2],[1,3,0,2],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[1,3,0,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,1],[1,3,0,2],[2,2,2,2],[0,2,2,2]],[[1,0,2,1],[1,3,0,2],[3,2,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,2,2,2],[2,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,2,2,2],[1,3,2,0]],[[1,0,2,1],[1,3,0,2],[2,2,2,2],[1,2,3,0]],[[1,0,2,1],[1,3,0,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,1],[1,3,0,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,1],[1,3,0,2],[2,2,3,1],[0,2,2,2]],[[1,0,2,1],[1,3,0,2],[3,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,0,2],[2,2,3,1],[2,2,1,1]],[[1,0,2,1],[1,3,0,2],[2,2,3,1],[1,3,1,1]],[[1,0,3,1],[1,3,0,2],[2,2,3,2],[0,2,1,1]],[[1,0,2,2],[1,3,0,2],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,0,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,0,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,1],[1,3,0,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,1],[1,3,0,2],[2,2,3,2],[0,2,1,2]],[[1,0,3,1],[1,3,0,2],[2,2,3,2],[0,2,2,0]],[[1,0,2,2],[1,3,0,2],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,0,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,1],[1,3,0,2],[2,2,3,2],[0,2,3,0]],[[1,0,2,1],[1,3,0,2],[3,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,0,2],[2,2,3,2],[2,2,0,1]],[[1,0,2,1],[1,3,0,2],[2,2,3,2],[1,3,0,1]],[[1,0,2,1],[1,3,0,2],[3,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,0,2],[2,2,3,2],[2,2,1,0]],[[1,0,2,1],[1,3,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,1,2,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[2,1,2,1],[2,3,4,1],[0,2,1,0]],[[1,2,1,1],[2,1,2,1],[2,4,3,1],[0,2,1,0]],[[1,2,1,1],[2,1,2,1],[3,3,3,1],[0,2,1,0]],[[1,2,1,1],[3,1,2,1],[2,3,3,1],[0,2,1,0]],[[1,3,1,1],[2,1,2,1],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,0,2],[3,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,0,2],[2,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,0,2],[1,3,2,1]],[[1,0,2,1],[1,3,0,2],[3,3,1,1],[1,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,1,1],[2,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,1,1],[1,3,2,1]],[[1,0,3,1],[1,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,2],[1,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[1,4,0,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,0,3],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,0,2],[3,3,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,4,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,1,3],[0,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,1,2],[0,3,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,1,2],[0,2,3,1]],[[1,0,2,1],[1,3,0,2],[2,3,1,2],[0,2,2,2]],[[1,0,2,1],[1,4,0,2],[2,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,0,2],[3,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,0,2],[2,4,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,1,2],[2,1,2,1]],[[1,0,2,1],[1,3,0,2],[3,3,1,2],[1,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,1,2],[2,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,1,2],[1,3,2,0]],[[1,0,2,1],[1,4,0,2],[2,3,2,1],[0,2,2,1]],[[1,0,2,1],[1,3,0,2],[3,3,2,1],[0,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,4,2,1],[0,2,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,2,1],[0,3,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,2,1],[0,2,3,1]],[[1,0,2,1],[1,3,0,2],[2,3,2,1],[0,2,2,2]],[[1,0,2,1],[1,4,0,2],[2,3,2,1],[1,1,2,1]],[[1,0,2,1],[1,3,0,2],[3,3,2,1],[1,1,2,1]],[[1,0,2,1],[1,3,0,2],[2,4,2,1],[1,1,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,2,1],[2,1,2,1]],[[1,0,3,1],[1,3,0,2],[2,3,2,2],[0,1,2,1]],[[1,0,2,2],[1,3,0,2],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[1,3,0,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,1],[1,3,0,2],[2,3,2,2],[0,1,2,2]],[[1,0,2,1],[1,4,0,2],[2,3,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,0,2],[3,3,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,4,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,2,2],[0,3,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,2,2],[0,2,3,0]],[[1,0,3,1],[1,3,0,2],[2,3,2,2],[1,0,2,1]],[[1,0,2,2],[1,3,0,2],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[1,3,0,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,1],[1,3,0,2],[2,3,2,2],[1,0,2,2]],[[1,0,2,1],[1,4,0,2],[2,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,0,2],[3,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,0,2],[2,4,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,2,2],[2,1,2,0]],[[2,2,1,1],[2,1,2,1],[2,3,3,1],[0,2,1,0]],[[1,2,1,1],[2,1,2,1],[2,3,3,1],[0,3,0,1]],[[1,2,1,1],[2,1,2,1],[2,3,4,1],[0,2,0,1]],[[1,2,1,1],[2,1,2,1],[2,4,3,1],[0,2,0,1]],[[1,2,1,1],[2,1,2,1],[3,3,3,1],[0,2,0,1]],[[1,2,1,1],[3,1,2,1],[2,3,3,1],[0,2,0,1]],[[1,3,1,1],[2,1,2,1],[2,3,3,1],[0,2,0,1]],[[2,2,1,1],[2,1,2,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,4,0,2],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[1,3,0,2],[3,3,3,1],[0,1,2,1]],[[1,0,2,1],[1,3,0,2],[2,4,3,1],[0,1,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,1],[0,1,2,2]],[[1,0,2,1],[1,4,0,2],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,0,2],[3,3,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,0,2],[2,4,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,0,2],[2,3,4,1],[0,2,1,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,1],[0,3,1,1]],[[1,0,2,1],[1,4,0,2],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[1,3,0,2],[3,3,3,1],[1,0,2,1]],[[1,0,2,1],[1,3,0,2],[2,4,3,1],[1,0,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,1],[2,0,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,1],[1,0,2,2]],[[1,0,2,1],[1,4,0,2],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,0,2],[3,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,0,2],[2,4,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,0,2],[2,3,4,1],[1,1,1,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,1],[2,1,1,1]],[[1,0,2,1],[1,3,0,2],[3,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,0,2],[2,4,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,1,2,1],[2,3,3,1],[0,1,3,0]],[[1,2,1,1],[2,1,2,1],[2,3,4,1],[0,1,2,0]],[[1,2,1,1],[2,1,2,1],[2,4,3,1],[0,1,2,0]],[[1,0,3,1],[1,3,0,2],[2,3,3,2],[0,0,2,1]],[[1,0,2,2],[1,3,0,2],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,0,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[0,0,2,2]],[[1,0,3,1],[1,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,2],[1,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,4,0,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,0,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,0,2],[3,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,0,2],[2,4,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,0,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[0,1,1,2]],[[1,0,3,1],[1,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,2],[1,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,4,0,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,0,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,0,2],[3,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,0,2],[2,4,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[0,1,3,0]],[[1,0,3,1],[1,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,2],[1,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,4,0,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,0,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,0,2],[3,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,0,2],[2,4,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,0,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[0,3,0,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[0,2,0,2]],[[1,0,3,1],[1,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,2],[1,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,4,0,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,0,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,0,2],[3,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,0,2],[2,4,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,0,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,1],[1,3,0,2],[2,3,3,3],[0,2,1,0]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,1,2,1],[3,3,3,1],[0,1,2,0]],[[1,2,1,1],[3,1,2,1],[2,3,3,1],[0,1,2,0]],[[1,3,1,1],[2,1,2,1],[2,3,3,1],[0,1,2,0]],[[2,2,1,1],[2,1,2,1],[2,3,3,1],[0,1,2,0]],[[1,2,1,1],[2,1,2,1],[2,3,4,1],[0,1,1,1]],[[1,2,1,1],[2,1,2,1],[2,4,3,1],[0,1,1,1]],[[1,2,1,1],[2,1,2,1],[3,3,3,1],[0,1,1,1]],[[1,2,1,1],[3,1,2,1],[2,3,3,1],[0,1,1,1]],[[1,3,1,1],[2,1,2,1],[2,3,3,1],[0,1,1,1]],[[2,2,1,1],[2,1,2,1],[2,3,3,1],[0,1,1,1]],[[1,0,3,1],[1,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,2],[1,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,4,0,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,0,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,0,2],[3,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,0,2],[2,4,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,0,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[2,0,1,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[1,0,1,2]],[[1,0,3,1],[1,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,2],[1,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,4,0,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,0,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,0,2],[3,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,0,2],[2,4,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[2,0,2,0]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[1,0,3,0]],[[1,0,3,1],[1,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,2],[1,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,4,0,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,0,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,0,2],[3,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,0,2],[2,4,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,0,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[2,1,0,1]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[1,1,0,2]],[[1,0,3,1],[1,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,2],[1,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,4,0,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,3,0,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,3,0,2],[3,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,3,0,2],[2,4,3,2],[1,1,1,0]],[[1,0,2,1],[1,3,0,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,1],[1,3,0,2],[2,3,3,3],[1,1,1,0]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,1,2,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[2,1,2,1],[2,4,3,0],[1,2,0,1]],[[1,2,1,1],[2,1,2,1],[3,3,3,0],[1,2,0,1]],[[1,2,1,1],[3,1,2,1],[2,3,3,0],[1,2,0,1]],[[1,0,2,1],[1,4,0,2],[2,3,3,2],[1,2,0,0]],[[1,0,2,1],[1,3,0,2],[3,3,3,2],[1,2,0,0]],[[1,0,2,1],[1,3,0,2],[2,4,3,2],[1,2,0,0]],[[1,0,2,1],[1,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,3,1,1],[2,1,2,1],[2,3,3,0],[1,2,0,1]],[[2,2,1,1],[2,1,2,1],[2,3,3,0],[1,2,0,1]],[[1,2,1,1],[2,1,2,1],[2,3,3,0],[2,1,1,1]],[[1,2,1,1],[2,1,2,1],[2,3,4,0],[1,1,1,1]],[[1,2,1,1],[2,1,2,1],[2,4,3,0],[1,1,1,1]],[[1,2,1,1],[2,1,2,1],[3,3,3,0],[1,1,1,1]],[[1,2,1,1],[3,1,2,1],[2,3,3,0],[1,1,1,1]],[[1,3,1,1],[2,1,2,1],[2,3,3,0],[1,1,1,1]],[[2,2,1,1],[2,1,2,1],[2,3,3,0],[1,1,1,1]],[[1,2,1,1],[2,1,2,1],[2,3,3,0],[1,0,2,2]],[[1,2,1,1],[2,1,2,1],[2,3,3,0],[1,0,3,1]],[[1,2,1,1],[2,1,2,1],[2,3,3,0],[2,0,2,1]],[[1,2,1,1],[2,1,2,1],[2,3,4,0],[1,0,2,1]],[[1,2,1,1],[2,1,2,1],[2,4,3,0],[1,0,2,1]],[[1,2,1,1],[2,1,2,1],[3,3,3,0],[1,0,2,1]],[[1,2,1,1],[3,1,2,1],[2,3,3,0],[1,0,2,1]],[[1,3,1,1],[2,1,2,1],[2,3,3,0],[1,0,2,1]],[[2,2,1,1],[2,1,2,1],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,1,0],[1,4,3,1],[1,2,2,1]],[[1,0,2,1],[1,3,1,0],[1,3,3,1],[2,2,2,1]],[[1,0,2,1],[1,3,1,0],[1,3,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,1,0],[1,3,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,1,0],[1,3,3,1],[1,2,2,2]],[[1,0,2,1],[1,3,1,0],[1,4,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,1,0],[1,3,3,2],[2,2,2,0]],[[1,0,2,1],[1,3,1,0],[1,3,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,1,0],[1,3,3,2],[1,2,3,0]],[[1,0,2,1],[1,3,1,0],[3,2,3,1],[1,2,2,1]],[[1,0,2,1],[1,3,1,0],[2,2,3,1],[2,2,2,1]],[[1,0,2,1],[1,3,1,0],[2,2,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,1,0],[2,2,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,1,0],[2,2,3,1],[1,2,2,2]],[[1,0,2,1],[1,3,1,0],[3,2,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,1,0],[2,2,3,2],[2,2,2,0]],[[1,0,2,1],[1,3,1,0],[2,2,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,1,0],[2,2,3,2],[1,2,3,0]],[[1,0,2,1],[1,3,1,0],[3,3,3,1],[0,2,2,1]],[[1,0,2,1],[1,3,1,0],[2,4,3,1],[0,2,2,1]],[[1,0,2,1],[1,3,1,0],[2,3,3,1],[0,3,2,1]],[[1,0,2,1],[1,3,1,0],[2,3,3,1],[0,2,3,1]],[[1,0,2,1],[1,3,1,0],[2,3,3,1],[0,2,2,2]],[[1,0,2,1],[1,3,1,0],[3,3,3,1],[1,1,2,1]],[[1,0,2,1],[1,3,1,0],[2,4,3,1],[1,1,2,1]],[[1,0,2,1],[1,3,1,0],[2,3,3,1],[2,1,2,1]],[[1,0,2,1],[1,3,1,0],[3,3,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,1,0],[2,4,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,1,0],[2,3,3,2],[0,3,2,0]],[[1,0,2,1],[1,3,1,0],[2,3,3,2],[0,2,3,0]],[[1,0,2,1],[1,3,1,0],[3,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,1,0],[2,4,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,1,0],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[2,1,2,1],[2,3,3,0],[0,3,1,1]],[[1,2,1,1],[2,1,2,1],[2,3,4,0],[0,2,1,1]],[[1,2,1,1],[2,1,2,1],[2,4,3,0],[0,2,1,1]],[[1,2,1,1],[2,1,2,1],[3,3,3,0],[0,2,1,1]],[[1,2,1,1],[3,1,2,1],[2,3,3,0],[0,2,1,1]],[[1,3,1,1],[2,1,2,1],[2,3,3,0],[0,2,1,1]],[[2,2,1,1],[2,1,2,1],[2,3,3,0],[0,2,1,1]],[[1,2,1,1],[2,1,2,1],[2,3,3,0],[0,1,2,2]],[[1,2,1,1],[2,1,2,1],[2,3,3,0],[0,1,3,1]],[[1,2,1,1],[2,1,2,1],[2,3,4,0],[0,1,2,1]],[[1,2,1,1],[2,1,2,1],[2,4,3,0],[0,1,2,1]],[[1,2,1,1],[2,1,2,1],[3,3,3,0],[0,1,2,1]],[[1,2,1,1],[3,1,2,1],[2,3,3,0],[0,1,2,1]],[[1,3,1,1],[2,1,2,1],[2,3,3,0],[0,1,2,1]],[[2,2,1,1],[2,1,2,1],[2,3,3,0],[0,1,2,1]],[[1,0,2,2],[1,3,1,2],[1,0,3,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,3],[1,0,3,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[1,0,3,3],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[1,0,3,2],[1,2,3,1]],[[1,0,2,1],[1,3,1,2],[1,0,3,2],[1,2,2,2]],[[1,0,3,1],[1,3,1,2],[1,1,2,2],[1,2,2,1]],[[1,0,2,2],[1,3,1,2],[1,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,3],[1,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[1,1,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[1,1,2,2],[2,2,2,1]],[[1,0,2,1],[1,3,1,2],[1,1,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,1,2],[1,1,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,1,2],[1,1,2,2],[1,2,2,2]],[[1,0,2,1],[1,3,1,2],[1,1,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[1,1,3,1],[2,2,2,1]],[[1,0,2,1],[1,3,1,2],[1,1,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,1,2],[1,1,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,1,2],[1,1,3,1],[1,2,2,2]],[[1,0,3,1],[1,3,1,2],[1,1,3,2],[1,2,1,1]],[[1,0,2,2],[1,3,1,2],[1,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,1,3],[1,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,1,2],[1,1,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,1,2],[1,1,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,1,2],[1,1,3,2],[1,2,1,2]],[[1,0,3,1],[1,3,1,2],[1,1,3,2],[1,2,2,0]],[[1,0,2,2],[1,3,1,2],[1,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,1,3],[1,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,1,2],[1,1,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,1,2],[1,1,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,1,2],[1,1,3,2],[2,2,2,0]],[[1,0,2,1],[1,3,1,2],[1,1,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,1,2],[1,1,3,2],[1,2,3,0]],[[1,0,3,1],[1,3,1,2],[1,2,2,2],[1,1,2,1]],[[1,0,2,2],[1,3,1,2],[1,2,2,2],[1,1,2,1]],[[1,0,2,1],[1,3,1,3],[1,2,2,2],[1,1,2,1]],[[1,0,2,1],[1,3,1,2],[1,2,2,3],[1,1,2,1]],[[1,0,2,1],[1,3,1,2],[1,2,2,2],[1,1,3,1]],[[1,0,2,1],[1,3,1,2],[1,2,2,2],[1,1,2,2]],[[1,0,2,1],[1,3,1,2],[1,2,4,1],[1,1,2,1]],[[1,0,2,1],[1,3,1,2],[1,2,3,1],[1,1,3,1]],[[1,0,2,1],[1,3,1,2],[1,2,3,1],[1,1,2,2]],[[1,0,2,2],[1,3,1,2],[1,2,3,2],[1,0,2,1]],[[1,0,2,1],[1,3,1,3],[1,2,3,2],[1,0,2,1]],[[1,0,2,1],[1,3,1,2],[1,2,4,2],[1,0,2,1]],[[1,0,2,1],[1,3,1,2],[1,2,3,3],[1,0,2,1]],[[1,0,2,1],[1,3,1,2],[1,2,3,2],[1,0,2,2]],[[1,0,3,1],[1,3,1,2],[1,2,3,2],[1,1,1,1]],[[1,0,2,2],[1,3,1,2],[1,2,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,1,3],[1,2,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,1,2],[1,2,4,2],[1,1,1,1]],[[1,0,2,1],[1,3,1,2],[1,2,3,3],[1,1,1,1]],[[1,0,2,1],[1,3,1,2],[1,2,3,2],[1,1,1,2]],[[1,0,3,1],[1,3,1,2],[1,2,3,2],[1,1,2,0]],[[1,0,2,2],[1,3,1,2],[1,2,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,1,3],[1,2,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,1,2],[1,2,4,2],[1,1,2,0]],[[1,0,2,1],[1,3,1,2],[1,2,3,3],[1,1,2,0]],[[1,0,2,1],[1,3,1,2],[1,2,3,2],[1,1,3,0]],[[1,0,3,1],[1,3,1,2],[1,2,3,2],[1,2,0,1]],[[1,0,2,2],[1,3,1,2],[1,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,1,3],[1,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,1,2],[1,2,4,2],[1,2,0,1]],[[1,0,2,1],[1,3,1,2],[1,2,3,3],[1,2,0,1]],[[1,0,2,1],[1,3,1,2],[1,2,3,2],[1,2,0,2]],[[1,0,3,1],[1,3,1,2],[1,2,3,2],[1,2,1,0]],[[1,0,2,2],[1,3,1,2],[1,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,1,3],[1,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,1,2],[1,2,4,2],[1,2,1,0]],[[1,0,2,1],[1,3,1,2],[1,2,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[2,1,2,1],[2,4,2,1],[1,1,2,0]],[[1,2,1,1],[2,1,2,1],[3,3,2,1],[1,1,2,0]],[[1,2,1,1],[3,1,2,1],[2,3,2,1],[1,1,2,0]],[[1,3,1,1],[2,1,2,1],[2,3,2,1],[1,1,2,0]],[[2,2,1,1],[2,1,2,1],[2,3,2,1],[1,1,2,0]],[[1,0,3,1],[1,3,1,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,2],[1,3,1,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,4,1,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,3],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[1,4,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[1,3,0,3],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[1,3,0,2],[2,2,2,1]],[[1,0,2,1],[1,3,1,2],[1,3,0,2],[1,3,2,1]],[[1,0,2,1],[1,3,1,2],[1,3,0,2],[1,2,3,1]],[[1,0,2,1],[1,3,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,1,1],[2,1,2,1],[2,3,2,1],[0,2,3,0]],[[1,2,1,1],[2,1,2,1],[2,3,2,1],[0,3,2,0]],[[1,2,1,1],[2,1,2,1],[2,4,2,1],[0,2,2,0]],[[1,2,1,1],[2,1,2,1],[3,3,2,1],[0,2,2,0]],[[1,2,1,1],[3,1,2,1],[2,3,2,1],[0,2,2,0]],[[1,3,1,1],[2,1,2,1],[2,3,2,1],[0,2,2,0]],[[2,2,1,1],[2,1,2,1],[2,3,2,1],[0,2,2,0]],[[1,2,1,1],[2,1,2,1],[2,3,2,0],[2,1,2,1]],[[1,2,1,1],[2,1,2,1],[2,4,2,0],[1,1,2,1]],[[1,2,1,1],[2,1,2,1],[3,3,2,0],[1,1,2,1]],[[1,2,1,1],[3,1,2,1],[2,3,2,0],[1,1,2,1]],[[1,3,1,1],[2,1,2,1],[2,3,2,0],[1,1,2,1]],[[2,2,1,1],[2,1,2,1],[2,3,2,0],[1,1,2,1]],[[1,2,1,1],[2,1,2,1],[2,3,2,0],[0,2,2,2]],[[1,2,1,1],[2,1,2,1],[2,3,2,0],[0,2,3,1]],[[1,2,1,1],[2,1,2,1],[2,3,2,0],[0,3,2,1]],[[1,2,1,1],[2,1,2,1],[2,4,2,0],[0,2,2,1]],[[1,2,1,1],[2,1,2,1],[3,3,2,0],[0,2,2,1]],[[1,2,1,1],[3,1,2,1],[2,3,2,0],[0,2,2,1]],[[1,3,1,1],[2,1,2,1],[2,3,2,0],[0,2,2,1]],[[2,2,1,1],[2,1,2,1],[2,3,2,0],[0,2,2,1]],[[1,0,3,1],[1,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,2],[1,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,3],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[3,0,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,0,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,0,2,2],[2,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,0,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,1,2],[2,0,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,1,2],[2,0,2,2],[1,2,2,2]],[[1,0,2,1],[1,3,1,2],[3,0,3,1],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,0,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,0,3,1],[2,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,0,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,1,2],[2,0,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,1,2],[2,0,3,1],[1,2,2,2]],[[1,0,2,2],[1,3,1,2],[2,0,3,2],[0,2,2,1]],[[1,0,2,1],[1,3,1,3],[2,0,3,2],[0,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,0,3,3],[0,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,0,3,2],[0,2,3,1]],[[1,0,2,1],[1,3,1,2],[2,0,3,2],[0,2,2,2]],[[1,0,3,1],[1,3,1,2],[2,0,3,2],[1,2,1,1]],[[1,0,2,2],[1,3,1,2],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,1,3],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,1,2],[2,0,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,1,2],[2,0,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,1,2],[2,0,3,2],[1,2,1,2]],[[1,0,3,1],[1,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,2],[1,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,1,3],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,1,2],[3,0,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,1,2],[2,0,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,1,2],[2,0,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,1,2],[2,0,3,2],[2,2,2,0]],[[1,0,2,1],[1,3,1,2],[2,0,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,1,2],[2,0,3,2],[1,2,3,0]],[[1,0,3,1],[1,3,1,2],[2,1,2,2],[0,2,2,1]],[[1,0,2,2],[1,3,1,2],[2,1,2,2],[0,2,2,1]],[[1,0,2,1],[1,3,1,3],[2,1,2,2],[0,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,1,2,3],[0,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,1,2,2],[0,3,2,1]],[[1,0,2,1],[1,3,1,2],[2,1,2,2],[0,2,3,1]],[[1,0,2,1],[1,3,1,2],[2,1,2,2],[0,2,2,2]],[[1,0,2,1],[1,3,1,2],[2,1,4,1],[0,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,1,3,1],[0,3,2,1]],[[1,0,2,1],[1,3,1,2],[2,1,3,1],[0,2,3,1]],[[1,0,2,1],[1,3,1,2],[2,1,3,1],[0,2,2,2]],[[1,0,3,1],[1,3,1,2],[2,1,3,2],[0,2,1,1]],[[1,0,2,2],[1,3,1,2],[2,1,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,1,3],[2,1,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,1,2],[2,1,4,2],[0,2,1,1]],[[1,0,2,1],[1,3,1,2],[2,1,3,3],[0,2,1,1]],[[1,0,2,1],[1,3,1,2],[2,1,3,2],[0,2,1,2]],[[1,0,3,1],[1,3,1,2],[2,1,3,2],[0,2,2,0]],[[1,0,2,2],[1,3,1,2],[2,1,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,1,3],[2,1,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,1,2],[2,1,4,2],[0,2,2,0]],[[1,0,2,1],[1,3,1,2],[2,1,3,3],[0,2,2,0]],[[1,0,2,1],[1,3,1,2],[2,1,3,2],[0,3,2,0]],[[1,0,2,1],[1,3,1,2],[2,1,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,2,1],[2,3,1,1],[1,3,2,0]],[[1,2,1,1],[2,1,2,1],[2,3,1,1],[2,2,2,0]],[[1,2,1,1],[2,1,2,1],[3,3,1,1],[1,2,2,0]],[[1,2,1,1],[3,1,2,1],[2,3,1,1],[1,2,2,0]],[[2,2,1,1],[2,1,2,1],[2,3,1,1],[1,2,2,0]],[[1,0,3,1],[1,3,1,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,2],[1,3,1,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,3],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[3,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,0,3],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,0,2],[2,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,0,2],[1,3,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,0,2],[1,2,3,1]],[[1,0,2,1],[1,3,1,2],[2,2,0,2],[1,2,2,2]],[[1,0,3,1],[1,3,1,2],[2,2,2,2],[0,1,2,1]],[[1,0,2,2],[1,3,1,2],[2,2,2,2],[0,1,2,1]],[[1,0,2,1],[1,3,1,3],[2,2,2,2],[0,1,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,2,3],[0,1,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,2,2],[0,1,3,1]],[[1,0,2,1],[1,3,1,2],[2,2,2,2],[0,1,2,2]],[[1,0,3,1],[1,3,1,2],[2,2,2,2],[1,0,2,1]],[[1,0,2,2],[1,3,1,2],[2,2,2,2],[1,0,2,1]],[[1,0,2,1],[1,3,1,3],[2,2,2,2],[1,0,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,2,3],[1,0,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,2,2],[1,0,3,1]],[[1,0,2,1],[1,3,1,2],[2,2,2,2],[1,0,2,2]],[[1,2,1,1],[2,1,2,1],[2,3,1,0],[1,3,2,1]],[[1,2,1,1],[2,1,2,1],[2,3,1,0],[2,2,2,1]],[[1,2,1,1],[2,1,2,1],[3,3,1,0],[1,2,2,1]],[[1,2,1,1],[3,1,2,1],[2,3,1,0],[1,2,2,1]],[[2,2,1,1],[2,1,2,1],[2,3,1,0],[1,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,4,1],[0,1,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,1],[0,1,3,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,1],[0,1,2,2]],[[1,0,2,1],[1,3,1,2],[2,2,4,1],[1,0,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,1],[1,0,3,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,1],[1,0,2,2]],[[1,0,3,1],[1,3,1,2],[2,2,3,2],[0,0,2,1]],[[1,0,2,2],[1,3,1,2],[2,2,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,1,3],[2,2,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,4,2],[0,0,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,3],[0,0,2,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,2],[0,0,2,2]],[[1,0,3,1],[1,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,0,2,2],[1,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,1,3],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,1,2],[2,2,4,2],[0,1,1,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,3],[0,1,1,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,2],[0,1,1,2]],[[1,0,3,1],[1,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,0,2,2],[1,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,1,3],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,1,2],[2,2,4,2],[0,1,2,0]],[[1,0,2,1],[1,3,1,2],[2,2,3,3],[0,1,2,0]],[[1,0,2,1],[1,3,1,2],[2,2,3,2],[0,1,3,0]],[[1,0,3,1],[1,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,0,2,2],[1,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,1,3],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,1,2],[2,2,4,2],[0,2,0,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,3],[0,2,0,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,2],[0,2,0,2]],[[1,0,3,1],[1,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,0,2,2],[1,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,1,3],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,1,2],[2,2,4,2],[0,2,1,0]],[[1,0,2,1],[1,3,1,2],[2,2,3,3],[0,2,1,0]],[[1,0,3,1],[1,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,0,2,2],[1,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,1,3],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,1,2],[2,2,4,2],[1,0,1,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,3],[1,0,1,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,2],[1,0,1,2]],[[1,0,3,1],[1,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,0,2,2],[1,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,1,3],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,1,2],[2,2,4,2],[1,0,2,0]],[[1,0,2,1],[1,3,1,2],[2,2,3,3],[1,0,2,0]],[[1,0,2,1],[1,3,1,2],[2,2,3,2],[1,0,3,0]],[[1,0,3,1],[1,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,0,2,2],[1,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,1,3],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,1,2],[2,2,4,2],[1,1,0,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,3],[1,1,0,1]],[[1,0,2,1],[1,3,1,2],[2,2,3,2],[1,1,0,2]],[[1,0,3,1],[1,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,0,2,2],[1,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[1,3,1,3],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[1,3,1,2],[2,2,4,2],[1,1,1,0]],[[1,0,2,1],[1,3,1,2],[2,2,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,2,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[2,1,2,1],[2,2,3,1],[2,2,1,0]],[[1,2,1,1],[2,1,2,1],[3,2,3,1],[1,2,1,0]],[[1,2,1,1],[3,1,2,1],[2,2,3,1],[1,2,1,0]],[[1,3,1,1],[2,1,2,1],[2,2,3,1],[1,2,1,0]],[[2,2,1,1],[2,1,2,1],[2,2,3,1],[1,2,1,0]],[[1,2,1,1],[2,1,2,1],[2,2,3,1],[1,3,0,1]],[[1,2,1,1],[2,1,2,1],[2,2,3,1],[2,2,0,1]],[[1,2,1,1],[2,1,2,1],[3,2,3,1],[1,2,0,1]],[[1,2,1,1],[3,1,2,1],[2,2,3,1],[1,2,0,1]],[[1,3,1,1],[2,1,2,1],[2,2,3,1],[1,2,0,1]],[[2,2,1,1],[2,1,2,1],[2,2,3,1],[1,2,0,1]],[[1,0,3,1],[1,3,1,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,2],[1,3,1,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,4,1,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,1,3],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,1,2],[3,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,4,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,3,0,3],[0,2,2,1]],[[1,0,2,1],[1,3,1,2],[2,3,0,2],[0,3,2,1]],[[1,0,2,1],[1,3,1,2],[2,3,0,2],[0,2,3,1]],[[1,0,2,1],[1,3,1,2],[2,3,0,2],[0,2,2,2]],[[1,0,2,1],[1,4,1,2],[2,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,1,2],[3,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,1,2],[2,4,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,1],[2,1,2,1],[2,2,3,1],[0,2,3,0]],[[1,2,1,1],[2,1,2,1],[2,2,3,1],[0,3,2,0]],[[1,2,1,1],[2,1,2,1],[2,2,4,1],[0,2,2,0]],[[1,2,1,1],[2,1,2,1],[2,2,3,0],[1,3,1,1]],[[1,2,1,1],[2,1,2,1],[2,2,3,0],[2,2,1,1]],[[1,2,1,1],[2,1,2,1],[3,2,3,0],[1,2,1,1]],[[1,2,1,1],[3,1,2,1],[2,2,3,0],[1,2,1,1]],[[1,3,1,1],[2,1,2,1],[2,2,3,0],[1,2,1,1]],[[2,2,1,1],[2,1,2,1],[2,2,3,0],[1,2,1,1]],[[1,2,1,1],[2,1,2,1],[2,2,3,0],[0,2,2,2]],[[1,2,1,1],[2,1,2,1],[2,2,3,0],[0,2,3,1]],[[1,2,1,1],[2,1,2,1],[2,2,3,0],[0,3,2,1]],[[1,2,1,1],[2,1,2,1],[2,2,4,0],[0,2,2,1]],[[1,2,1,1],[2,1,2,1],[2,2,2,1],[1,2,3,0]],[[1,2,1,1],[2,1,2,1],[2,2,2,1],[1,3,2,0]],[[1,2,1,1],[2,1,2,1],[2,2,2,1],[2,2,2,0]],[[1,2,1,1],[2,1,2,1],[3,2,2,1],[1,2,2,0]],[[1,2,1,1],[3,1,2,1],[2,2,2,1],[1,2,2,0]],[[1,3,1,1],[2,1,2,1],[2,2,2,1],[1,2,2,0]],[[2,2,1,1],[2,1,2,1],[2,2,2,1],[1,2,2,0]],[[1,2,1,1],[2,1,2,1],[2,2,2,0],[1,2,2,2]],[[1,2,1,1],[2,1,2,1],[2,2,2,0],[1,2,3,1]],[[1,2,1,1],[2,1,2,1],[2,2,2,0],[1,3,2,1]],[[1,2,1,1],[2,1,2,1],[2,2,2,0],[2,2,2,1]],[[1,2,1,1],[2,1,2,1],[3,2,2,0],[1,2,2,1]],[[1,2,1,1],[3,1,2,1],[2,2,2,0],[1,2,2,1]],[[1,3,1,1],[2,1,2,1],[2,2,2,0],[1,2,2,1]],[[2,2,1,1],[2,1,2,1],[2,2,2,0],[1,2,2,1]],[[1,0,3,1],[1,3,1,2],[2,3,3,2],[0,0,1,1]],[[1,0,2,2],[1,3,1,2],[2,3,3,2],[0,0,1,1]],[[1,0,2,1],[1,3,1,3],[2,3,3,2],[0,0,1,1]],[[1,0,2,1],[1,3,1,2],[2,3,4,2],[0,0,1,1]],[[1,0,2,1],[1,3,1,2],[2,3,3,3],[0,0,1,1]],[[1,0,2,1],[1,3,1,2],[2,3,3,2],[0,0,1,2]],[[1,0,3,1],[1,3,1,2],[2,3,3,2],[0,0,2,0]],[[1,0,2,2],[1,3,1,2],[2,3,3,2],[0,0,2,0]],[[1,0,2,1],[1,3,1,3],[2,3,3,2],[0,0,2,0]],[[1,0,2,1],[1,3,1,2],[2,3,4,2],[0,0,2,0]],[[1,0,2,1],[1,3,1,2],[2,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,1,2,1],[2,1,3,1],[1,2,3,0]],[[1,2,1,1],[2,1,2,1],[2,1,3,1],[1,3,2,0]],[[1,2,1,1],[2,1,2,1],[2,1,3,1],[2,2,2,0]],[[1,2,1,1],[2,1,2,1],[2,1,4,1],[1,2,2,0]],[[1,2,1,1],[2,1,2,1],[3,1,3,1],[1,2,2,0]],[[1,2,1,1],[3,1,2,1],[2,1,3,1],[1,2,2,0]],[[1,3,1,1],[2,1,2,1],[2,1,3,1],[1,2,2,0]],[[2,2,1,1],[2,1,2,1],[2,1,3,1],[1,2,2,0]],[[1,2,1,1],[2,1,2,1],[2,1,3,0],[1,2,2,2]],[[1,2,1,1],[2,1,2,1],[2,1,3,0],[1,2,3,1]],[[1,2,1,1],[2,1,2,1],[2,1,3,0],[1,3,2,1]],[[1,2,1,1],[2,1,2,1],[2,1,3,0],[2,2,2,1]],[[1,2,1,1],[2,1,2,1],[2,1,4,0],[1,2,2,1]],[[1,2,1,1],[2,1,2,1],[3,1,3,0],[1,2,2,1]],[[1,2,1,1],[3,1,2,1],[2,1,3,0],[1,2,2,1]],[[1,3,1,1],[2,1,2,1],[2,1,3,0],[1,2,2,1]],[[2,2,1,1],[2,1,2,1],[2,1,3,0],[1,2,2,1]],[[1,2,1,1],[2,1,2,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,1,2,1],[1,3,3,1],[2,2,1,0]],[[1,2,1,1],[2,1,2,1],[1,3,4,1],[1,2,1,0]],[[1,2,1,1],[2,1,2,1],[1,4,3,1],[1,2,1,0]],[[1,2,1,1],[2,1,2,1],[1,3,3,1],[1,3,0,1]],[[1,2,1,1],[2,1,2,1],[1,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,1,2,1],[1,3,4,1],[1,2,0,1]],[[1,2,1,1],[2,1,2,1],[1,4,3,1],[1,2,0,1]],[[1,2,1,1],[2,1,2,1],[1,3,3,1],[1,1,3,0]],[[1,2,1,1],[2,1,2,1],[1,3,4,1],[1,1,2,0]],[[1,2,1,1],[2,1,2,1],[1,4,3,1],[1,1,2,0]],[[1,2,1,1],[2,1,2,1],[1,3,3,0],[1,3,1,1]],[[1,2,1,1],[2,1,2,1],[1,3,3,0],[2,2,1,1]],[[1,2,1,1],[2,1,2,1],[1,3,4,0],[1,2,1,1]],[[1,2,1,1],[2,1,2,1],[1,4,3,0],[1,2,1,1]],[[1,2,1,1],[2,1,2,1],[1,3,3,0],[1,1,2,2]],[[1,2,1,1],[2,1,2,1],[1,3,3,0],[1,1,3,1]],[[1,2,1,1],[2,1,2,1],[1,3,4,0],[1,1,2,1]],[[1,2,1,1],[2,1,2,1],[1,4,3,0],[1,1,2,1]],[[1,2,1,1],[2,1,2,1],[1,3,2,1],[1,2,3,0]],[[1,2,1,1],[2,1,2,1],[1,3,2,1],[1,3,2,0]],[[1,2,1,1],[2,1,2,1],[1,3,2,1],[2,2,2,0]],[[1,2,1,1],[2,1,2,1],[1,4,2,1],[1,2,2,0]],[[1,2,1,1],[2,1,2,1],[1,3,2,0],[1,2,2,2]],[[1,2,1,1],[2,1,2,1],[1,3,2,0],[1,2,3,1]],[[1,2,1,1],[2,1,2,1],[1,3,2,0],[1,3,2,1]],[[1,2,1,1],[2,1,2,1],[1,3,2,0],[2,2,2,1]],[[1,2,1,1],[2,1,2,1],[1,4,2,0],[1,2,2,1]],[[1,2,1,1],[2,1,2,1],[1,2,3,1],[1,2,3,0]],[[1,2,1,1],[2,1,2,1],[1,2,3,1],[1,3,2,0]],[[1,2,1,1],[2,1,2,1],[1,2,3,1],[2,2,2,0]],[[1,2,1,1],[2,1,2,1],[1,2,4,1],[1,2,2,0]],[[1,2,1,1],[2,1,2,1],[1,2,3,0],[1,2,2,2]],[[1,2,1,1],[2,1,2,1],[1,2,3,0],[1,2,3,1]],[[1,2,1,1],[2,1,2,1],[1,2,3,0],[1,3,2,1]],[[1,2,1,1],[2,1,2,1],[1,2,3,0],[2,2,2,1]],[[1,2,1,1],[2,1,2,1],[1,2,4,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[0,3,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[0,3,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[0,3,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,2,0],[0,3,2,2],[1,2,2,2]],[[1,0,2,1],[1,3,2,0],[0,3,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[0,3,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[0,3,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,2,0],[0,3,3,1],[1,2,2,2]],[[1,0,2,1],[1,3,2,0],[0,3,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,0],[0,3,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,2,0],[0,3,3,2],[1,2,1,2]],[[1,0,2,1],[1,3,2,0],[0,3,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,0],[0,3,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,2,0],[0,3,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,2,0],[0,3,3,2],[1,2,3,0]],[[1,0,2,1],[1,3,2,0],[1,2,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,2,2,2],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,2,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[1,2,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,2,0],[1,2,2,2],[1,2,2,2]],[[1,0,2,1],[1,3,2,0],[1,2,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,2,3,1],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,2,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[1,2,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,2,0],[1,2,3,1],[1,2,2,2]],[[1,0,2,1],[1,3,2,0],[1,2,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,0],[1,2,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,2,0],[1,2,3,2],[1,2,1,2]],[[1,0,2,1],[1,3,2,0],[1,2,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,0],[1,2,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,2,0],[1,2,3,2],[2,2,2,0]],[[1,0,2,1],[1,3,2,0],[1,2,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,2,0],[1,2,3,2],[1,2,3,0]],[[1,0,2,1],[1,4,2,0],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,4,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,1,3],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,1,2],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,1,2],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,1,2],[1,2,3,1]],[[1,0,2,1],[1,3,2,0],[1,3,1,2],[1,2,2,2]],[[1,0,2,1],[1,4,2,0],[1,3,2,1],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,4,2,1],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,2,1],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,2,1],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,2,1],[1,2,3,1]],[[1,0,2,1],[1,3,2,0],[1,3,2,1],[1,2,2,2]],[[1,0,2,1],[1,3,2,0],[1,3,2,3],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,2,2],[1,1,3,1]],[[1,0,2,1],[1,3,2,0],[1,3,2,2],[1,1,2,2]],[[1,0,2,1],[1,4,2,0],[1,3,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,0],[1,4,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,0],[1,3,2,2],[2,2,2,0]],[[1,0,2,1],[1,3,2,0],[1,3,2,2],[1,3,2,0]],[[1,0,2,1],[1,3,2,0],[1,3,2,2],[1,2,3,0]],[[1,0,2,1],[1,4,2,0],[1,3,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,4,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,0],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,0],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,0],[1,2,3,1]],[[1,0,2,1],[1,4,2,0],[1,3,3,1],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[1,4,3,1],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,4,1],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,1],[1,1,3,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,1],[1,1,2,2]],[[1,0,2,1],[1,4,2,0],[1,3,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,2,0],[1,4,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,2,0],[1,3,4,1],[1,2,1,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,1],[2,2,1,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,1],[1,3,1,1]],[[1,0,2,1],[1,3,2,0],[1,3,4,2],[1,0,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,3],[1,0,2,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,2],[1,0,2,2]],[[1,0,2,1],[1,4,2,0],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,0],[1,4,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,0],[1,3,4,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,3],[1,1,1,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,2],[1,1,1,2]],[[1,0,2,1],[1,4,2,0],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,0],[1,4,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,0],[1,3,4,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,0],[1,3,3,3],[1,1,2,0]],[[1,0,2,1],[1,3,2,0],[1,3,3,2],[1,1,3,0]],[[1,0,2,1],[1,4,2,0],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,2,0],[1,4,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,2,0],[1,3,4,2],[1,2,0,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,3],[1,2,0,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,2],[2,2,0,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,2],[1,3,0,1]],[[1,0,2,1],[1,3,2,0],[1,3,3,2],[1,2,0,2]],[[1,0,2,1],[1,4,2,0],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,2,0],[1,4,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,2,0],[1,3,4,2],[1,2,1,0]],[[1,0,2,1],[1,3,2,0],[1,3,3,3],[1,2,1,0]],[[1,0,2,1],[1,3,2,0],[1,3,3,2],[2,2,1,0]],[[1,0,2,1],[1,3,2,0],[1,3,3,2],[1,3,1,0]],[[1,0,2,1],[1,3,2,0],[3,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,1,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,1,2,2],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,1,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[2,1,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,2,0],[2,1,2,2],[1,2,2,2]],[[1,0,2,1],[1,3,2,0],[3,1,3,1],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,1,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,1,3,1],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,1,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[2,1,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,2,0],[2,1,3,1],[1,2,2,2]],[[1,0,2,1],[1,3,2,0],[2,1,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,0],[2,1,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,2,0],[2,1,3,2],[1,2,1,2]],[[1,0,2,1],[1,3,2,0],[3,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,1,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,1,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,1,3,2],[2,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,1,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,2,0],[2,1,3,2],[1,2,3,0]],[[1,0,2,1],[1,3,2,0],[3,2,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,1,3],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,1,2],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,1,2],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,1,2],[1,2,3,1]],[[1,0,2,1],[1,3,2,0],[2,2,1,2],[1,2,2,2]],[[1,0,2,1],[1,3,2,0],[3,2,2,1],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,2,1],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,2,1],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,2,1],[1,2,3,1]],[[1,0,2,1],[1,3,2,0],[2,2,2,1],[1,2,2,2]],[[1,0,2,1],[1,3,2,0],[2,2,2,3],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,2,2],[0,3,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,2,2],[0,2,3,1]],[[1,0,2,1],[1,3,2,0],[2,2,2,2],[0,2,2,2]],[[1,0,2,1],[1,3,2,0],[3,2,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,2,2,2],[2,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,2,2,2],[1,3,2,0]],[[1,0,2,1],[1,3,2,0],[2,2,2,2],[1,2,3,0]],[[1,0,2,1],[1,3,2,0],[3,2,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,0],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,0],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,0],[1,2,3,1]],[[1,0,2,1],[1,3,2,0],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,1],[0,3,2,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,1],[0,2,3,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,1],[0,2,2,2]],[[1,0,2,1],[1,3,2,0],[3,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,1],[2,2,1,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,1],[1,3,1,1]],[[1,0,2,1],[1,3,2,0],[2,2,4,2],[0,2,1,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,3],[0,2,1,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,2],[0,2,1,2]],[[1,0,2,1],[1,3,2,0],[2,2,4,2],[0,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,2,3,3],[0,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,2,3,2],[0,3,2,0]],[[1,0,2,1],[1,3,2,0],[2,2,3,2],[0,2,3,0]],[[1,0,2,1],[1,3,2,0],[3,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,2],[2,2,0,1]],[[1,0,2,1],[1,3,2,0],[2,2,3,2],[1,3,0,1]],[[1,0,2,1],[1,3,2,0],[3,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,2,0],[2,2,3,2],[2,2,1,0]],[[1,0,2,1],[1,3,2,0],[2,2,3,2],[1,3,1,0]],[[1,0,2,1],[1,3,2,0],[3,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,0,2],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,0,2],[1,3,2,1]],[[1,0,2,1],[1,3,2,0],[3,3,1,1],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,1,1],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,1,1],[1,3,2,1]],[[1,0,2,1],[1,4,2,0],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[3,3,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,4,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,1,3],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,1,2],[0,3,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,1,2],[0,2,3,1]],[[1,0,2,1],[1,3,2,0],[2,3,1,2],[0,2,2,2]],[[1,0,2,1],[1,4,2,0],[2,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[3,3,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[2,4,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,1,2],[2,1,2,1]],[[1,0,2,1],[1,3,2,0],[3,3,1,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,1,2],[2,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,1,2],[1,3,2,0]],[[1,0,2,1],[1,3,2,0],[3,3,2,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,2,0],[2,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,2,0],[1,3,2,1]],[[1,0,2,1],[1,4,2,0],[2,3,2,1],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[3,3,2,1],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,4,2,1],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,2,1],[0,3,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,2,1],[0,2,3,1]],[[1,0,2,1],[1,3,2,0],[2,3,2,1],[0,2,2,2]],[[1,0,2,1],[1,4,2,0],[2,3,2,1],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[3,3,2,1],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[2,4,2,1],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,2,1],[2,1,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,2,3],[0,1,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,2,2],[0,1,3,1]],[[1,0,2,1],[1,3,2,0],[2,3,2,2],[0,1,2,2]],[[1,0,2,1],[1,4,2,0],[2,3,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,2,0],[3,3,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,4,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,2,2],[0,3,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,2,2],[0,2,3,0]],[[1,0,2,1],[1,3,2,0],[2,3,2,3],[1,0,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,2,2],[1,0,3,1]],[[1,0,2,1],[1,3,2,0],[2,3,2,2],[1,0,2,2]],[[1,0,2,1],[1,4,2,0],[2,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,0],[3,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,0],[2,4,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[2,2,0,0]],[[1,0,2,1],[1,4,2,0],[2,3,3,0],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[3,3,3,0],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,4,3,0],[0,2,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,0],[0,3,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,0],[0,2,3,1]],[[1,0,2,1],[1,4,2,0],[2,3,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[3,3,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[2,4,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,0],[2,1,2,1]],[[1,0,2,1],[1,4,2,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[1,3,2,0],[3,3,3,1],[0,1,2,1]],[[1,0,2,1],[1,3,2,0],[2,4,3,1],[0,1,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,4,1],[0,1,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,1],[0,1,2,2]],[[1,0,2,1],[1,4,2,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,2,0],[3,3,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,2,0],[2,4,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,2,0],[2,3,4,1],[0,2,1,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,1],[0,3,1,1]],[[1,0,2,1],[1,4,2,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[1,3,2,0],[3,3,3,1],[1,0,2,1]],[[1,0,2,1],[1,3,2,0],[2,4,3,1],[1,0,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,4,1],[1,0,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,1],[2,0,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,1],[1,0,3,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,1],[1,0,2,2]],[[1,0,2,1],[1,4,2,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,2,0],[3,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,2,0],[2,4,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,2,0],[2,3,4,1],[1,1,1,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,1],[2,1,1,1]],[[1,0,2,1],[1,4,2,0],[2,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,2,0],[3,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,2,0],[2,4,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,1,2,0],[2,4,3,2],[1,2,0,0]],[[1,2,1,1],[2,1,2,0],[3,3,3,2],[1,2,0,0]],[[1,2,1,1],[3,1,2,0],[2,3,3,2],[1,2,0,0]],[[1,3,1,1],[2,1,2,0],[2,3,3,2],[1,2,0,0]],[[2,2,1,1],[2,1,2,0],[2,3,3,2],[1,2,0,0]],[[1,0,2,1],[1,3,2,0],[2,3,4,2],[0,0,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,3],[0,0,2,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[0,0,2,2]],[[1,0,2,1],[1,4,2,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,0],[3,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,0],[2,4,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,0],[2,3,4,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,3],[0,1,1,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[0,1,1,2]],[[1,0,2,1],[1,4,2,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,0],[3,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,0],[2,4,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,3,3],[0,1,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[0,1,3,0]],[[1,0,2,1],[1,4,2,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,0],[3,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,0],[2,4,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,0],[2,3,4,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,3],[0,2,0,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[0,3,0,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[0,2,0,2]],[[1,0,2,1],[1,4,2,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,0],[3,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,0],[2,4,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,0],[2,3,4,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,0],[2,3,3,3],[0,2,1,0]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[0,3,1,0]],[[1,0,2,1],[1,4,2,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,2,0],[3,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,2,0],[2,4,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,2,0],[2,3,4,2],[1,0,1,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,3],[1,0,1,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[2,0,1,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[1,0,1,2]],[[1,0,2,1],[1,4,2,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,0],[3,3,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,0],[2,4,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,3,3],[1,0,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[2,0,2,0]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[1,0,3,0]],[[1,0,2,1],[1,4,2,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,2,0],[3,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,2,0],[2,4,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,2,0],[2,3,4,2],[1,1,0,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,3],[1,1,0,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[2,1,0,1]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[1,1,0,2]],[[1,0,2,1],[1,4,2,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,3,2,0],[3,3,3,2],[1,1,1,0]],[[1,0,2,1],[1,3,2,0],[2,4,3,2],[1,1,1,0]],[[1,0,2,1],[1,3,2,0],[2,3,4,2],[1,1,1,0]],[[1,0,2,1],[1,3,2,0],[2,3,3,3],[1,1,1,0]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[2,1,1,0]],[[1,0,2,1],[1,4,2,0],[2,3,3,2],[1,2,0,0]],[[1,0,2,1],[1,3,2,0],[3,3,3,2],[1,2,0,0]],[[1,0,2,1],[1,3,2,0],[2,4,3,2],[1,2,0,0]],[[1,0,2,1],[1,3,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,2,0],[2,3,4,2],[1,1,1,0]],[[1,2,1,1],[2,1,2,0],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[2,1,2,0],[3,3,3,2],[1,1,1,0]],[[1,2,1,1],[3,1,2,0],[2,3,3,2],[1,1,1,0]],[[1,3,1,1],[2,1,2,0],[2,3,3,2],[1,1,1,0]],[[2,2,1,1],[2,1,2,0],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[2,1,0,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,3],[1,1,0,1]],[[1,2,1,1],[2,1,2,0],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[2,1,2,0],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[2,1,2,0],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[3,1,2,0],[2,3,3,2],[1,1,0,1]],[[1,3,1,1],[2,1,2,0],[2,3,3,2],[1,1,0,1]],[[2,2,1,1],[2,1,2,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,2,1],[0,3,4,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,1],[0,3,3,0],[1,3,2,1]],[[1,0,2,1],[1,3,2,1],[0,3,3,0],[1,2,3,1]],[[1,0,2,1],[1,3,2,1],[0,3,3,0],[1,2,2,2]],[[1,0,2,1],[1,3,2,1],[0,3,4,1],[1,2,2,0]],[[1,0,2,1],[1,3,2,1],[0,3,3,1],[1,3,2,0]],[[1,0,2,1],[1,3,2,1],[0,3,3,1],[1,2,3,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[2,0,2,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,2,0],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,1],[1,2,4,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,1],[1,2,3,0],[2,2,2,1]],[[1,0,2,1],[1,3,2,1],[1,2,3,0],[1,3,2,1]],[[1,0,2,1],[1,3,2,1],[1,2,3,0],[1,2,3,1]],[[1,0,2,1],[1,3,2,1],[1,2,3,0],[1,2,2,2]],[[1,0,2,1],[1,3,2,1],[1,2,4,1],[1,2,2,0]],[[1,0,2,1],[1,3,2,1],[1,2,3,1],[2,2,2,0]],[[1,0,2,1],[1,3,2,1],[1,2,3,1],[1,3,2,0]],[[1,0,2,1],[1,3,2,1],[1,2,3,1],[1,2,3,0]],[[1,2,1,1],[2,1,2,0],[2,4,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,2,0],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[3,1,2,0],[2,3,3,2],[1,0,2,0]],[[1,3,1,1],[2,1,2,0],[2,3,3,2],[1,0,2,0]],[[2,2,1,1],[2,1,2,0],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[1,0,1,2]],[[1,0,2,1],[1,4,2,1],[1,3,2,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,1],[1,4,2,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,1],[1,3,2,0],[2,2,2,1]],[[1,0,2,1],[1,3,2,1],[1,3,2,0],[1,3,2,1]],[[1,0,2,1],[1,3,2,1],[1,3,2,0],[1,2,3,1]],[[1,0,2,1],[1,3,2,1],[1,3,2,0],[1,2,2,2]],[[1,0,2,1],[1,4,2,1],[1,3,2,1],[1,2,2,0]],[[1,0,2,1],[1,3,2,1],[1,4,2,1],[1,2,2,0]],[[1,0,2,1],[1,3,2,1],[1,3,2,1],[2,2,2,0]],[[1,0,2,1],[1,3,2,1],[1,3,2,1],[1,3,2,0]],[[1,0,2,1],[1,3,2,1],[1,3,2,1],[1,2,3,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,3],[1,0,1,1]],[[1,2,1,1],[2,1,2,0],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[2,1,2,0],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[2,1,2,0],[3,3,3,2],[1,0,1,1]],[[1,2,1,1],[3,1,2,0],[2,3,3,2],[1,0,1,1]],[[1,3,1,1],[2,1,2,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[1,4,2,1],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,1],[1,4,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,1],[1,3,4,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,1],[1,3,3,0],[1,1,3,1]],[[1,0,2,1],[1,3,2,1],[1,3,3,0],[1,1,2,2]],[[1,0,2,1],[1,4,2,1],[1,3,3,0],[1,2,1,1]],[[1,0,2,1],[1,3,2,1],[1,4,3,0],[1,2,1,1]],[[1,0,2,1],[1,3,2,1],[1,3,4,0],[1,2,1,1]],[[1,0,2,1],[1,3,2,1],[1,3,3,0],[2,2,1,1]],[[1,0,2,1],[1,3,2,1],[1,3,3,0],[1,3,1,1]],[[1,0,2,1],[1,4,2,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,2,1],[1,4,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,2,1],[1,3,4,1],[1,1,1,1]],[[1,0,2,1],[1,4,2,1],[1,3,3,1],[1,1,2,0]],[[1,0,2,1],[1,3,2,1],[1,4,3,1],[1,1,2,0]],[[1,0,2,1],[1,3,2,1],[1,3,4,1],[1,1,2,0]],[[1,0,2,1],[1,3,2,1],[1,3,3,1],[1,1,3,0]],[[1,0,2,1],[1,4,2,1],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,2,1],[1,4,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,2,1],[1,3,4,1],[1,2,0,1]],[[1,0,2,1],[1,3,2,1],[1,3,3,1],[2,2,0,1]],[[1,0,2,1],[1,3,2,1],[1,3,3,1],[1,3,0,1]],[[1,0,2,1],[1,4,2,1],[1,3,3,1],[1,2,1,0]],[[1,0,2,1],[1,3,2,1],[1,4,3,1],[1,2,1,0]],[[1,0,2,1],[1,3,2,1],[1,3,4,1],[1,2,1,0]],[[1,0,2,1],[1,3,2,1],[1,3,3,1],[2,2,1,0]],[[1,0,2,1],[1,3,2,1],[1,3,3,1],[1,3,1,0]],[[2,2,1,1],[2,1,2,0],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,2,0],[2,3,4,2],[0,2,1,0]],[[1,2,1,1],[2,1,2,0],[2,4,3,2],[0,2,1,0]],[[1,2,1,1],[2,1,2,0],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[3,1,2,0],[2,3,3,2],[0,2,1,0]],[[1,3,1,1],[2,1,2,0],[2,3,3,2],[0,2,1,0]],[[2,2,1,1],[2,1,2,0],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[2,1,2,0],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[2,1,2,0],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[2,1,2,0],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[3,1,2,0],[2,3,3,2],[0,2,0,1]],[[1,3,1,1],[2,1,2,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,1],[3,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,1],[2,1,4,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,1],[2,1,3,0],[2,2,2,1]],[[1,0,2,1],[1,3,2,1],[2,1,3,0],[1,3,2,1]],[[1,0,2,1],[1,3,2,1],[2,1,3,0],[1,2,3,1]],[[1,0,2,1],[1,3,2,1],[2,1,3,0],[1,2,2,2]],[[1,0,2,1],[1,3,2,1],[3,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,2,1],[2,1,4,1],[1,2,2,0]],[[1,0,2,1],[1,3,2,1],[2,1,3,1],[2,2,2,0]],[[1,0,2,1],[1,3,2,1],[2,1,3,1],[1,3,2,0]],[[1,0,2,1],[1,3,2,1],[2,1,3,1],[1,2,3,0]],[[2,2,1,1],[2,1,2,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,1],[3,2,2,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,1],[2,2,2,0],[2,2,2,1]],[[1,0,2,1],[1,3,2,1],[2,2,2,0],[1,3,2,1]],[[1,0,2,1],[1,3,2,1],[2,2,2,0],[1,2,3,1]],[[1,0,2,1],[1,3,2,1],[2,2,2,0],[1,2,2,2]],[[1,0,2,1],[1,3,2,1],[3,2,2,1],[1,2,2,0]],[[1,0,2,1],[1,3,2,1],[2,2,2,1],[2,2,2,0]],[[1,0,2,1],[1,3,2,1],[2,2,2,1],[1,3,2,0]],[[1,0,2,1],[1,3,2,1],[2,2,2,1],[1,2,3,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[2,1,2,0],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,1],[2,2,4,0],[0,2,2,1]],[[1,0,2,1],[1,3,2,1],[2,2,3,0],[0,3,2,1]],[[1,0,2,1],[1,3,2,1],[2,2,3,0],[0,2,3,1]],[[1,0,2,1],[1,3,2,1],[2,2,3,0],[0,2,2,2]],[[1,0,2,1],[1,3,2,1],[3,2,3,0],[1,2,1,1]],[[1,0,2,1],[1,3,2,1],[2,2,3,0],[2,2,1,1]],[[1,0,2,1],[1,3,2,1],[2,2,3,0],[1,3,1,1]],[[1,0,2,1],[1,3,2,1],[2,2,4,1],[0,2,2,0]],[[1,0,2,1],[1,3,2,1],[2,2,3,1],[0,3,2,0]],[[1,0,2,1],[1,3,2,1],[2,2,3,1],[0,2,3,0]],[[1,0,2,1],[1,3,2,1],[3,2,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,2,1],[2,2,3,1],[2,2,0,1]],[[1,0,2,1],[1,3,2,1],[2,2,3,1],[1,3,0,1]],[[1,0,2,1],[1,3,2,1],[3,2,3,1],[1,2,1,0]],[[1,0,2,1],[1,3,2,1],[2,2,3,1],[2,2,1,0]],[[1,0,2,1],[1,3,2,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[2,1,2,0],[2,4,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,2,0],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[3,1,2,0],[2,3,3,2],[0,1,2,0]],[[1,3,1,1],[2,1,2,0],[2,3,3,2],[0,1,2,0]],[[2,2,1,1],[2,1,2,0],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[0,1,1,2]],[[1,2,1,1],[2,1,2,0],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[2,1,2,0],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[2,1,2,0],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,2,0],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[3,1,2,0],[2,3,3,2],[0,1,1,1]],[[1,3,1,1],[2,1,2,0],[2,3,3,2],[0,1,1,1]],[[2,2,1,1],[2,1,2,0],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,2],[0,0,2,2]],[[1,2,1,1],[2,1,2,0],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,1,2,0],[2,4,3,1],[1,2,0,1]],[[1,2,1,1],[2,1,2,0],[3,3,3,1],[1,2,0,1]],[[1,2,1,1],[3,1,2,0],[2,3,3,1],[1,2,0,1]],[[1,3,1,1],[2,1,2,0],[2,3,3,1],[1,2,0,1]],[[2,2,1,1],[2,1,2,0],[2,3,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,2,1],[3,3,1,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,1],[2,3,1,0],[2,2,2,1]],[[1,0,2,1],[1,3,2,1],[2,3,1,0],[1,3,2,1]],[[1,0,2,1],[1,3,2,1],[3,3,1,1],[1,2,2,0]],[[1,0,2,1],[1,3,2,1],[2,3,1,1],[2,2,2,0]],[[1,0,2,1],[1,3,2,1],[2,3,1,1],[1,3,2,0]],[[1,0,2,1],[1,4,2,1],[2,3,2,0],[0,2,2,1]],[[1,0,2,1],[1,3,2,1],[3,3,2,0],[0,2,2,1]],[[1,0,2,1],[1,3,2,1],[2,4,2,0],[0,2,2,1]],[[1,0,2,1],[1,3,2,1],[2,3,2,0],[0,3,2,1]],[[1,0,2,1],[1,3,2,1],[2,3,2,0],[0,2,3,1]],[[1,0,2,1],[1,3,2,1],[2,3,2,0],[0,2,2,2]],[[1,0,2,1],[1,4,2,1],[2,3,2,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,1],[3,3,2,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,1],[2,4,2,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,1],[2,3,2,0],[2,1,2,1]],[[1,0,2,1],[1,4,2,1],[2,3,2,1],[0,2,2,0]],[[1,0,2,1],[1,3,2,1],[3,3,2,1],[0,2,2,0]],[[1,0,2,1],[1,3,2,1],[2,4,2,1],[0,2,2,0]],[[1,0,2,1],[1,3,2,1],[2,3,2,1],[0,3,2,0]],[[1,0,2,1],[1,3,2,1],[2,3,2,1],[0,2,3,0]],[[1,0,2,1],[1,4,2,1],[2,3,2,1],[1,1,2,0]],[[1,0,2,1],[1,3,2,1],[3,3,2,1],[1,1,2,0]],[[1,0,2,1],[1,3,2,1],[2,4,2,1],[1,1,2,0]],[[1,0,2,1],[1,3,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[2,1,2,0],[2,3,4,1],[1,1,1,1]],[[1,2,1,1],[2,1,2,0],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[2,1,2,0],[3,3,3,1],[1,1,1,1]],[[1,2,1,1],[3,1,2,0],[2,3,3,1],[1,1,1,1]],[[1,3,1,1],[2,1,2,0],[2,3,3,1],[1,1,1,1]],[[2,2,1,1],[2,1,2,0],[2,3,3,1],[1,1,1,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[2,1,2,0],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,1],[2,0,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[2,1,2,0],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[2,1,2,0],[3,3,3,1],[1,0,2,1]],[[1,2,1,1],[3,1,2,0],[2,3,3,1],[1,0,2,1]],[[1,3,1,1],[2,1,2,0],[2,3,3,1],[1,0,2,1]],[[2,2,1,1],[2,1,2,0],[2,3,3,1],[1,0,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[2,1,2,0],[2,3,4,1],[0,2,1,1]],[[1,2,1,1],[2,1,2,0],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[2,1,2,0],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[3,1,2,0],[2,3,3,1],[0,2,1,1]],[[1,3,1,1],[2,1,2,0],[2,3,3,1],[0,2,1,1]],[[2,2,1,1],[2,1,2,0],[2,3,3,1],[0,2,1,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[2,1,2,0],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[1,4,2,1],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,2,1],[3,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,2,1],[2,4,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,2,1],[2,3,4,0],[0,1,2,1]],[[1,0,2,1],[1,3,2,1],[2,3,3,0],[0,1,3,1]],[[1,0,2,1],[1,3,2,1],[2,3,3,0],[0,1,2,2]],[[1,0,2,1],[1,4,2,1],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,2,1],[3,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,2,1],[2,4,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,2,1],[2,3,4,0],[0,2,1,1]],[[1,0,2,1],[1,3,2,1],[2,3,3,0],[0,3,1,1]],[[1,0,2,1],[1,4,2,1],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,2,1],[3,3,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,2,1],[2,4,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,2,1],[2,3,4,0],[1,0,2,1]],[[1,0,2,1],[1,3,2,1],[2,3,3,0],[2,0,2,1]],[[1,0,2,1],[1,3,2,1],[2,3,3,0],[1,0,3,1]],[[1,0,2,1],[1,3,2,1],[2,3,3,0],[1,0,2,2]],[[1,0,2,1],[1,4,2,1],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[1,3,2,1],[3,3,3,0],[1,1,1,1]],[[1,0,2,1],[1,3,2,1],[2,4,3,0],[1,1,1,1]],[[1,0,2,1],[1,3,2,1],[2,3,4,0],[1,1,1,1]],[[1,0,2,1],[1,3,2,1],[2,3,3,0],[2,1,1,1]],[[1,0,2,1],[1,4,2,1],[2,3,3,0],[1,2,0,1]],[[1,0,2,1],[1,3,2,1],[3,3,3,0],[1,2,0,1]],[[1,0,2,1],[1,3,2,1],[2,4,3,0],[1,2,0,1]],[[1,0,2,1],[1,3,2,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[2,1,2,0],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[2,1,2,0],[2,4,3,1],[0,1,2,1]],[[1,2,1,1],[2,1,2,0],[3,3,3,1],[0,1,2,1]],[[1,2,1,1],[3,1,2,0],[2,3,3,1],[0,1,2,1]],[[1,3,1,1],[2,1,2,0],[2,3,3,1],[0,1,2,1]],[[2,2,1,1],[2,1,2,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[1,4,2,1],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,2,1],[3,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,2,1],[2,4,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,2,1],[2,3,4,1],[0,1,1,1]],[[1,0,2,1],[1,4,2,1],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,2,1],[3,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,2,1],[2,4,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,2,1],[2,3,4,1],[0,1,2,0]],[[1,0,2,1],[1,3,2,1],[2,3,3,1],[0,1,3,0]],[[1,0,2,1],[1,4,2,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,2,1],[3,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,2,1],[2,4,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,2,1],[2,3,4,1],[0,2,0,1]],[[1,0,2,1],[1,3,2,1],[2,3,3,1],[0,3,0,1]],[[1,0,2,1],[1,4,2,1],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,2,1],[3,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,2,1],[2,4,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,2,1],[2,3,4,1],[0,2,1,0]],[[1,0,2,1],[1,3,2,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[2,1,2,0],[2,3,3,0],[2,1,2,1]],[[1,0,2,1],[1,4,2,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[1,3,2,1],[3,3,3,1],[1,0,1,1]],[[1,0,2,1],[1,3,2,1],[2,4,3,1],[1,0,1,1]],[[1,0,2,1],[1,3,2,1],[2,3,4,1],[1,0,1,1]],[[1,0,2,1],[1,3,2,1],[2,3,3,1],[2,0,1,1]],[[1,0,2,1],[1,4,2,1],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[1,3,2,1],[3,3,3,1],[1,0,2,0]],[[1,0,2,1],[1,3,2,1],[2,4,3,1],[1,0,2,0]],[[1,0,2,1],[1,3,2,1],[2,3,4,1],[1,0,2,0]],[[1,0,2,1],[1,3,2,1],[2,3,3,1],[2,0,2,0]],[[1,0,2,1],[1,3,2,1],[2,3,3,1],[1,0,3,0]],[[1,0,2,1],[1,4,2,1],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[1,3,2,1],[3,3,3,1],[1,1,0,1]],[[1,0,2,1],[1,3,2,1],[2,4,3,1],[1,1,0,1]],[[1,0,2,1],[1,3,2,1],[2,3,4,1],[1,1,0,1]],[[1,0,2,1],[1,3,2,1],[2,3,3,1],[2,1,0,1]],[[1,0,2,1],[1,4,2,1],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[1,3,2,1],[3,3,3,1],[1,1,1,0]],[[1,0,2,1],[1,3,2,1],[2,4,3,1],[1,1,1,0]],[[1,0,2,1],[1,3,2,1],[2,3,4,1],[1,1,1,0]],[[1,0,2,1],[1,3,2,1],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[2,1,2,0],[2,4,3,0],[1,1,2,1]],[[1,2,1,1],[2,1,2,0],[3,3,3,0],[1,1,2,1]],[[1,2,1,1],[3,1,2,0],[2,3,3,0],[1,1,2,1]],[[1,3,1,1],[2,1,2,0],[2,3,3,0],[1,1,2,1]],[[2,2,1,1],[2,1,2,0],[2,3,3,0],[1,1,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,0],[0,2,3,1]],[[1,2,1,1],[2,1,2,0],[2,3,3,0],[0,3,2,1]],[[1,0,2,1],[1,4,2,1],[2,3,3,1],[1,2,0,0]],[[1,0,2,1],[1,3,2,1],[3,3,3,1],[1,2,0,0]],[[1,0,2,1],[1,3,2,1],[2,4,3,1],[1,2,0,0]],[[1,0,2,1],[1,3,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[2,1,2,0],[2,4,3,0],[0,2,2,1]],[[1,2,1,1],[2,1,2,0],[3,3,3,0],[0,2,2,1]],[[1,2,1,1],[3,1,2,0],[2,3,3,0],[0,2,2,1]],[[1,3,1,1],[2,1,2,0],[2,3,3,0],[0,2,2,1]],[[2,2,1,1],[2,1,2,0],[2,3,3,0],[0,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,1,2,0],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[2,1,2,0],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[3,1,2,0],[2,3,2,2],[1,1,2,0]],[[1,3,1,1],[2,1,2,0],[2,3,2,2],[1,1,2,0]],[[2,2,1,1],[2,1,2,0],[2,3,2,2],[1,1,2,0]],[[1,2,1,1],[2,1,2,0],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[2,1,2,0],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[2,1,2,0],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,2,2],[0,2,3,0]],[[1,2,1,1],[2,1,2,0],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[2,1,2,0],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[2,1,2,0],[3,3,2,2],[0,2,2,0]],[[1,2,1,1],[3,1,2,0],[2,3,2,2],[0,2,2,0]],[[1,3,1,1],[2,1,2,0],[2,3,2,2],[0,2,2,0]],[[2,2,1,1],[2,1,2,0],[2,3,2,2],[0,2,2,0]],[[1,2,1,1],[2,1,2,0],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[2,1,2,0],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[2,1,2,0],[2,3,2,3],[0,1,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[2,1,2,0],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[2,1,2,0],[3,3,2,1],[1,1,2,1]],[[1,2,1,1],[3,1,2,0],[2,3,2,1],[1,1,2,1]],[[1,3,1,1],[2,1,2,0],[2,3,2,1],[1,1,2,1]],[[2,2,1,1],[2,1,2,0],[2,3,2,1],[1,1,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[2,1,2,0],[2,3,2,1],[0,2,3,1]],[[1,2,1,1],[2,1,2,0],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[2,1,2,0],[3,3,2,1],[0,2,2,1]],[[1,2,1,1],[3,1,2,0],[2,3,2,1],[0,2,2,1]],[[1,3,1,1],[2,1,2,0],[2,3,2,1],[0,2,2,1]],[[2,2,1,1],[2,1,2,0],[2,3,2,1],[0,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,2,0],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,2,0],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[3,3,2,0],[1,2,2,1]],[[1,2,1,1],[3,1,2,0],[2,3,2,0],[1,2,2,1]],[[2,2,1,1],[2,1,2,0],[2,3,2,0],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,1,2],[1,3,2,0]],[[1,2,1,1],[2,1,2,0],[2,3,1,2],[2,2,2,0]],[[1,2,1,1],[2,1,2,0],[3,3,1,2],[1,2,2,0]],[[1,2,1,1],[3,1,2,0],[2,3,1,2],[1,2,2,0]],[[2,2,1,1],[2,1,2,0],[2,3,1,2],[1,2,2,0]],[[1,2,1,1],[2,1,2,0],[2,3,1,2],[2,1,2,1]],[[1,2,1,1],[2,1,2,0],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[2,1,2,0],[3,3,1,2],[1,1,2,1]],[[1,2,1,1],[3,1,2,0],[2,3,1,2],[1,1,2,1]],[[1,3,1,1],[2,1,2,0],[2,3,1,2],[1,1,2,1]],[[2,2,1,1],[2,1,2,0],[2,3,1,2],[1,1,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[2,1,2,0],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[2,1,2,0],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,1,3],[0,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[2,1,2,0],[3,3,1,2],[0,2,2,1]],[[1,2,1,1],[3,1,2,0],[2,3,1,2],[0,2,2,1]],[[1,3,1,1],[2,1,2,0],[2,3,1,2],[0,2,2,1]],[[2,2,1,1],[2,1,2,0],[2,3,1,2],[0,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,1,1],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,1,1],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[3,3,1,1],[1,2,2,1]],[[1,2,1,1],[3,1,2,0],[2,3,1,1],[1,2,2,1]],[[2,2,1,1],[2,1,2,0],[2,3,1,1],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,0,2],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,3,0,2],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[3,3,0,2],[1,2,2,1]],[[1,2,1,1],[3,1,2,0],[2,3,0,2],[1,2,2,1]],[[2,2,1,1],[2,1,2,0],[2,3,0,2],[1,2,2,1]],[[1,0,2,2],[1,3,2,2],[0,0,3,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,3],[0,0,3,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[0,0,3,3],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[0,0,3,2],[1,2,3,1]],[[1,0,2,1],[1,3,2,2],[0,0,3,2],[1,2,2,2]],[[1,0,2,2],[1,3,2,2],[0,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,3],[0,1,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[0,1,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[0,1,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,2,2],[0,1,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,2,2],[0,1,2,2],[1,2,2,2]],[[1,0,2,1],[1,3,2,2],[0,1,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[0,1,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,2,2],[0,1,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,2,2],[0,1,3,1],[1,2,2,2]],[[1,0,2,2],[1,3,2,2],[0,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,3],[0,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,2],[0,1,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,2],[0,1,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,2,2],[0,1,3,2],[1,2,1,2]],[[1,0,2,2],[1,3,2,2],[0,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,3],[0,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,2],[0,1,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,2],[0,1,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,2,2],[0,1,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,2,2],[0,1,3,2],[1,2,3,0]],[[1,0,2,2],[1,3,2,2],[0,2,2,2],[1,1,2,1]],[[1,0,2,1],[1,3,2,3],[0,2,2,2],[1,1,2,1]],[[1,0,2,1],[1,3,2,2],[0,2,2,3],[1,1,2,1]],[[1,0,2,1],[1,3,2,2],[0,2,2,2],[1,1,3,1]],[[1,0,2,1],[1,3,2,2],[0,2,2,2],[1,1,2,2]],[[1,0,2,1],[1,3,2,2],[0,2,4,1],[1,1,2,1]],[[1,0,2,1],[1,3,2,2],[0,2,3,1],[1,1,3,1]],[[1,0,2,1],[1,3,2,2],[0,2,3,1],[1,1,2,2]],[[1,0,2,2],[1,3,2,2],[0,2,3,2],[1,0,2,1]],[[1,0,2,1],[1,3,2,3],[0,2,3,2],[1,0,2,1]],[[1,0,2,1],[1,3,2,2],[0,2,4,2],[1,0,2,1]],[[1,0,2,1],[1,3,2,2],[0,2,3,3],[1,0,2,1]],[[1,0,2,1],[1,3,2,2],[0,2,3,2],[1,0,2,2]],[[1,0,2,2],[1,3,2,2],[0,2,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,3],[0,2,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,2],[0,2,4,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,2],[0,2,3,3],[1,1,1,1]],[[1,0,2,1],[1,3,2,2],[0,2,3,2],[1,1,1,2]],[[1,0,2,2],[1,3,2,2],[0,2,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,3],[0,2,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,2],[0,2,4,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,2],[0,2,3,3],[1,1,2,0]],[[1,0,2,1],[1,3,2,2],[0,2,3,2],[1,1,3,0]],[[1,0,2,2],[1,3,2,2],[0,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,2,3],[0,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,2,2],[0,2,4,2],[1,2,0,1]],[[1,0,2,1],[1,3,2,2],[0,2,3,3],[1,2,0,1]],[[1,0,2,1],[1,3,2,2],[0,2,3,2],[1,2,0,2]],[[1,0,2,2],[1,3,2,2],[0,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,2,3],[0,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,2,2],[0,2,4,2],[1,2,1,0]],[[1,0,2,1],[1,3,2,2],[0,2,3,3],[1,2,1,0]],[[1,0,2,2],[1,3,2,2],[0,3,2,2],[0,1,2,1]],[[1,0,2,1],[1,3,2,3],[0,3,2,2],[0,1,2,1]],[[1,0,2,1],[1,3,2,2],[0,3,2,3],[0,1,2,1]],[[1,0,2,1],[1,3,2,2],[0,3,2,2],[0,1,3,1]],[[1,0,2,1],[1,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,0,2,1],[1,3,2,2],[0,3,4,1],[0,1,2,1]],[[1,0,2,1],[1,3,2,2],[0,3,3,1],[0,1,3,1]],[[1,0,2,1],[1,3,2,2],[0,3,3,1],[0,1,2,2]],[[1,2,1,1],[2,1,2,0],[2,2,3,2],[1,3,1,0]],[[1,0,2,2],[1,3,2,2],[0,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,2,3],[0,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,2,2],[0,3,4,2],[0,0,2,1]],[[1,0,2,1],[1,3,2,2],[0,3,3,3],[0,0,2,1]],[[1,0,2,1],[1,3,2,2],[0,3,3,2],[0,0,2,2]],[[1,0,2,2],[1,3,2,2],[0,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,3],[0,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,2],[0,3,4,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,2],[0,3,3,3],[0,1,1,1]],[[1,0,2,1],[1,3,2,2],[0,3,3,2],[0,1,1,2]],[[1,0,2,2],[1,3,2,2],[0,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,3],[0,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,2],[0,3,4,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,2],[0,3,3,3],[0,1,2,0]],[[1,0,2,1],[1,3,2,2],[0,3,3,2],[0,1,3,0]],[[1,0,2,2],[1,3,2,2],[0,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,3],[0,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,2],[0,3,4,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,2],[0,3,3,3],[0,2,0,1]],[[1,0,2,1],[1,3,2,2],[0,3,3,2],[0,2,0,2]],[[1,0,2,2],[1,3,2,2],[0,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,3],[0,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,2],[0,3,4,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,2,0],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[2,1,2,0],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[3,1,2,0],[2,2,3,2],[1,2,1,0]],[[1,3,1,1],[2,1,2,0],[2,2,3,2],[1,2,1,0]],[[2,2,1,1],[2,1,2,0],[2,2,3,2],[1,2,1,0]],[[1,2,1,1],[2,1,2,0],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[2,1,2,0],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[2,1,2,0],[3,2,3,2],[1,2,0,1]],[[1,2,1,1],[3,1,2,0],[2,2,3,2],[1,2,0,1]],[[1,3,1,1],[2,1,2,0],[2,2,3,2],[1,2,0,1]],[[2,2,1,1],[2,1,2,0],[2,2,3,2],[1,2,0,1]],[[1,2,1,1],[2,1,2,0],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,2,0],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[2,1,2,0],[2,2,3,3],[0,2,2,0]],[[1,2,1,1],[2,1,2,0],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[2,1,2,0],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[2,1,2,0],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[2,1,2,0],[2,2,4,2],[0,2,1,1]],[[1,0,2,2],[1,3,2,2],[1,0,3,2],[0,2,2,1]],[[1,0,2,1],[1,3,2,3],[1,0,3,2],[0,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,0,3,3],[0,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,0,3,2],[0,2,3,1]],[[1,0,2,1],[1,3,2,2],[1,0,3,2],[0,2,2,2]],[[1,0,3,1],[1,3,2,2],[1,1,1,2],[1,2,2,1]],[[1,0,2,2],[1,3,2,2],[1,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,3],[1,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,1,1,3],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,1,1,2],[2,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,1,1,2],[1,3,2,1]],[[1,0,2,1],[1,3,2,2],[1,1,1,2],[1,2,3,1]],[[1,0,2,1],[1,3,2,2],[1,1,1,2],[1,2,2,2]],[[1,0,2,2],[1,3,2,2],[1,1,2,2],[0,2,2,1]],[[1,0,2,1],[1,3,2,3],[1,1,2,2],[0,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,1,2,3],[0,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,1,2,2],[0,2,3,1]],[[1,0,2,1],[1,3,2,2],[1,1,2,2],[0,2,2,2]],[[1,0,3,1],[1,3,2,2],[1,1,2,2],[1,2,1,1]],[[1,0,2,2],[1,3,2,2],[1,1,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,3],[1,1,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,2],[1,1,2,3],[1,2,1,1]],[[1,0,2,1],[1,3,2,2],[1,1,2,2],[1,2,1,2]],[[1,0,3,1],[1,3,2,2],[1,1,2,2],[1,2,2,0]],[[1,0,2,2],[1,3,2,2],[1,1,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,3],[1,1,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,2],[1,1,2,3],[1,2,2,0]],[[1,0,3,1],[1,3,2,2],[1,1,3,0],[1,2,2,1]],[[1,0,2,2],[1,3,2,2],[1,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,3],[1,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,1,4,1],[0,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,1,3,1],[0,2,3,1]],[[1,0,2,1],[1,3,2,2],[1,1,3,1],[0,2,2,2]],[[1,0,3,1],[1,3,2,2],[1,1,3,1],[1,2,1,1]],[[1,0,2,2],[1,3,2,2],[1,1,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,2,3],[1,1,3,1],[1,2,1,1]],[[1,0,3,1],[1,3,2,2],[1,1,3,1],[1,2,2,0]],[[1,0,2,2],[1,3,2,2],[1,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,2,3],[1,1,3,1],[1,2,2,0]],[[1,0,2,2],[1,3,2,2],[1,1,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,2,3],[1,1,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,2,2],[1,1,4,2],[0,2,1,1]],[[1,0,2,1],[1,3,2,2],[1,1,3,3],[0,2,1,1]],[[1,0,2,1],[1,3,2,2],[1,1,3,2],[0,2,1,2]],[[1,0,2,2],[1,3,2,2],[1,1,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,2,3],[1,1,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,2,2],[1,1,4,2],[0,2,2,0]],[[1,0,2,1],[1,3,2,2],[1,1,3,3],[0,2,2,0]],[[1,0,2,1],[1,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,2,0],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[2,1,2,0],[2,2,3,1],[2,2,1,1]],[[1,2,1,1],[2,1,2,0],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[3,1,2,0],[2,2,3,1],[1,2,1,1]],[[1,3,1,1],[2,1,2,0],[2,2,3,1],[1,2,1,1]],[[2,2,1,1],[2,1,2,0],[2,2,3,1],[1,2,1,1]],[[1,2,1,1],[2,1,2,0],[2,2,3,1],[0,2,2,2]],[[1,0,3,1],[1,3,2,2],[1,2,0,2],[1,2,2,1]],[[1,0,2,2],[1,3,2,2],[1,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,3],[1,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,0,3],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,0,2],[2,2,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,0,2],[1,3,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,0,2],[1,2,3,1]],[[1,0,2,1],[1,3,2,2],[1,2,0,2],[1,2,2,2]],[[1,0,3,1],[1,3,2,2],[1,2,1,2],[1,1,2,1]],[[1,0,2,2],[1,3,2,2],[1,2,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,2,3],[1,2,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,1,3],[1,1,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,1,2],[1,1,3,1]],[[1,0,2,1],[1,3,2,2],[1,2,1,2],[1,1,2,2]],[[1,0,2,2],[1,3,2,2],[1,2,2,2],[0,1,2,1]],[[1,0,2,1],[1,3,2,3],[1,2,2,2],[0,1,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,2,3],[0,1,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,2,2],[0,1,3,1]],[[1,0,2,1],[1,3,2,2],[1,2,2,2],[0,1,2,2]],[[1,0,3,1],[1,3,2,2],[1,2,2,2],[1,1,1,1]],[[1,0,2,2],[1,3,2,2],[1,2,2,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,3],[1,2,2,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,2],[1,2,2,3],[1,1,1,1]],[[1,0,2,1],[1,3,2,2],[1,2,2,2],[1,1,1,2]],[[1,0,3,1],[1,3,2,2],[1,2,2,2],[1,1,2,0]],[[1,0,2,2],[1,3,2,2],[1,2,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,3],[1,2,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,2],[1,2,2,3],[1,1,2,0]],[[1,0,3,1],[1,3,2,2],[1,2,2,2],[1,2,0,1]],[[1,0,2,2],[1,3,2,2],[1,2,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,2,3],[1,2,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,2,2],[1,2,2,3],[1,2,0,1]],[[1,0,2,1],[1,3,2,2],[1,2,2,2],[1,2,0,2]],[[1,0,3,1],[1,3,2,2],[1,2,2,2],[1,2,1,0]],[[1,0,2,2],[1,3,2,2],[1,2,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,2,3],[1,2,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,2,2],[1,2,2,3],[1,2,1,0]],[[1,2,1,1],[2,1,2,0],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[2,1,2,0],[2,2,3,1],[0,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,2,4,1],[0,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,2,3,0],[1,2,3,1]],[[1,2,1,1],[2,1,2,0],[2,2,3,0],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,2,3,0],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[3,2,3,0],[1,2,2,1]],[[1,2,1,1],[3,1,2,0],[2,2,3,0],[1,2,2,1]],[[1,0,3,1],[1,3,2,2],[1,2,3,0],[1,1,2,1]],[[1,0,2,2],[1,3,2,2],[1,2,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,3],[1,2,3,0],[1,1,2,1]],[[1,0,3,1],[1,3,2,2],[1,2,3,0],[1,2,1,1]],[[1,0,2,2],[1,3,2,2],[1,2,3,0],[1,2,1,1]],[[1,0,2,1],[1,3,2,3],[1,2,3,0],[1,2,1,1]],[[1,0,2,1],[1,3,2,2],[1,2,4,1],[0,1,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,3,1],[0,1,3,1]],[[1,0,2,1],[1,3,2,2],[1,2,3,1],[0,1,2,2]],[[1,0,3,1],[1,3,2,2],[1,2,3,1],[1,1,1,1]],[[1,0,2,2],[1,3,2,2],[1,2,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,2,3],[1,2,3,1],[1,1,1,1]],[[1,0,3,1],[1,3,2,2],[1,2,3,1],[1,1,2,0]],[[1,0,2,2],[1,3,2,2],[1,2,3,1],[1,1,2,0]],[[1,0,2,1],[1,3,2,3],[1,2,3,1],[1,1,2,0]],[[1,0,3,1],[1,3,2,2],[1,2,3,1],[1,2,0,1]],[[1,0,2,2],[1,3,2,2],[1,2,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,2,3],[1,2,3,1],[1,2,0,1]],[[1,0,3,1],[1,3,2,2],[1,2,3,1],[1,2,1,0]],[[1,0,2,2],[1,3,2,2],[1,2,3,1],[1,2,1,0]],[[1,0,2,1],[1,3,2,3],[1,2,3,1],[1,2,1,0]],[[1,3,1,1],[2,1,2,0],[2,2,3,0],[1,2,2,1]],[[2,2,1,1],[2,1,2,0],[2,2,3,0],[1,2,2,1]],[[1,0,2,2],[1,3,2,2],[1,2,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,2,3],[1,2,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,4,2],[0,0,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,3,3],[0,0,2,1]],[[1,0,2,1],[1,3,2,2],[1,2,3,2],[0,0,2,2]],[[1,0,2,2],[1,3,2,2],[1,2,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,3],[1,2,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,2],[1,2,4,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,2],[1,2,3,3],[0,1,1,1]],[[1,0,2,1],[1,3,2,2],[1,2,3,2],[0,1,1,2]],[[1,0,2,2],[1,3,2,2],[1,2,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,3],[1,2,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,2],[1,2,4,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,2],[1,2,3,3],[0,1,2,0]],[[1,0,2,1],[1,3,2,2],[1,2,3,2],[0,1,3,0]],[[1,0,2,2],[1,3,2,2],[1,2,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,3],[1,2,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,2],[1,2,4,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,2],[1,2,3,3],[0,2,0,1]],[[1,0,2,1],[1,3,2,2],[1,2,3,2],[0,2,0,2]],[[1,0,2,2],[1,3,2,2],[1,2,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,3],[1,2,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,2],[1,2,4,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,2,0],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[2,1,2,0],[2,2,2,2],[1,3,2,0]],[[1,2,1,1],[2,1,2,0],[2,2,2,2],[2,2,2,0]],[[1,0,2,2],[1,3,2,2],[1,2,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,2,3],[1,2,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,2,2],[1,2,4,2],[1,0,1,1]],[[1,0,2,1],[1,3,2,2],[1,2,3,3],[1,0,1,1]],[[1,0,2,1],[1,3,2,2],[1,2,3,2],[1,0,1,2]],[[1,0,2,2],[1,3,2,2],[1,2,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,3],[1,2,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,2],[1,2,4,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,2],[1,2,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,2,0],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[3,1,2,0],[2,2,2,2],[1,2,2,0]],[[1,3,1,1],[2,1,2,0],[2,2,2,2],[1,2,2,0]],[[2,2,1,1],[2,1,2,0],[2,2,2,2],[1,2,2,0]],[[1,2,1,1],[2,1,2,0],[2,2,2,2],[0,2,2,2]],[[1,2,1,1],[2,1,2,0],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[2,1,2,0],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,2,2,3],[0,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[2,1,2,0],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[2,1,2,0],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[3,2,2,1],[1,2,2,1]],[[1,2,1,1],[3,1,2,0],[2,2,2,1],[1,2,2,1]],[[1,3,1,1],[2,1,2,0],[2,2,2,1],[1,2,2,1]],[[2,2,1,1],[2,1,2,0],[2,2,2,1],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[2,1,2,0],[2,2,1,2],[1,2,3,1]],[[1,2,1,1],[2,1,2,0],[2,2,1,2],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,2,1,3],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[3,2,1,2],[1,2,2,1]],[[1,2,1,1],[3,1,2,0],[2,2,1,2],[1,2,2,1]],[[1,3,1,1],[2,1,2,0],[2,2,1,2],[1,2,2,1]],[[2,2,1,1],[2,1,2,0],[2,2,1,2],[1,2,2,1]],[[1,0,3,1],[1,3,2,2],[1,3,0,1],[1,2,2,1]],[[1,0,2,2],[1,3,2,2],[1,3,0,1],[1,2,2,1]],[[1,0,2,1],[1,3,2,3],[1,3,0,1],[1,2,2,1]],[[1,0,3,1],[1,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,2],[1,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,2,3],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,2,2],[1,3,0,3],[1,1,2,1]],[[1,0,2,1],[1,3,2,2],[1,3,0,2],[1,1,3,1]],[[1,0,2,1],[1,3,2,2],[1,3,0,2],[1,1,2,2]],[[1,0,3,1],[1,3,2,2],[1,3,0,2],[1,2,1,1]],[[1,0,2,2],[1,3,2,2],[1,3,0,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,3],[1,3,0,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,2],[1,3,0,3],[1,2,1,1]],[[1,0,2,1],[1,3,2,2],[1,3,0,2],[1,2,1,2]],[[1,0,3,1],[1,3,2,2],[1,3,0,2],[1,2,2,0]],[[1,0,2,2],[1,3,2,2],[1,3,0,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,3],[1,3,0,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,2],[1,3,0,3],[1,2,2,0]],[[1,0,3,1],[1,3,2,2],[1,3,1,0],[1,2,2,1]],[[1,0,2,2],[1,3,2,2],[1,3,1,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,3],[1,3,1,0],[1,2,2,1]],[[1,0,3,1],[1,3,2,2],[1,3,1,1],[1,2,2,0]],[[1,0,2,2],[1,3,2,2],[1,3,1,1],[1,2,2,0]],[[1,0,2,1],[1,3,2,3],[1,3,1,1],[1,2,2,0]],[[1,0,3,1],[1,3,2,2],[1,3,1,2],[1,1,1,1]],[[1,0,2,2],[1,3,2,2],[1,3,1,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,3],[1,3,1,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,2],[1,3,1,3],[1,1,1,1]],[[1,0,2,1],[1,3,2,2],[1,3,1,2],[1,1,1,2]],[[1,0,3,1],[1,3,2,2],[1,3,1,2],[1,1,2,0]],[[1,0,2,2],[1,3,2,2],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,3],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,2],[1,3,1,3],[1,1,2,0]],[[1,0,3,1],[1,3,2,2],[1,3,1,2],[1,2,0,1]],[[1,0,2,2],[1,3,2,2],[1,3,1,2],[1,2,0,1]],[[1,0,2,1],[1,3,2,3],[1,3,1,2],[1,2,0,1]],[[1,0,2,1],[1,3,2,2],[1,3,1,3],[1,2,0,1]],[[1,0,2,1],[1,3,2,2],[1,3,1,2],[1,2,0,2]],[[1,0,3,1],[1,3,2,2],[1,3,1,2],[1,2,1,0]],[[1,0,2,2],[1,3,2,2],[1,3,1,2],[1,2,1,0]],[[1,0,2,1],[1,3,2,3],[1,3,1,2],[1,2,1,0]],[[1,0,2,1],[1,3,2,2],[1,3,1,3],[1,2,1,0]],[[1,2,1,1],[2,1,2,0],[2,1,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,2,0],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,2,0],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[2,1,2,0],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[2,1,2,0],[2,1,4,2],[1,2,2,0]],[[1,0,3,1],[1,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,0,2,2],[1,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,3],[1,3,2,0],[1,1,2,1]],[[1,0,3,1],[1,3,2,2],[1,3,2,0],[1,2,1,1]],[[1,0,2,2],[1,3,2,2],[1,3,2,0],[1,2,1,1]],[[1,0,2,1],[1,3,2,3],[1,3,2,0],[1,2,1,1]],[[1,0,3,1],[1,3,2,2],[1,3,2,1],[1,1,1,1]],[[1,0,2,2],[1,3,2,2],[1,3,2,1],[1,1,1,1]],[[1,0,2,1],[1,3,2,3],[1,3,2,1],[1,1,1,1]],[[1,0,3,1],[1,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,0,2,2],[1,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,0,2,1],[1,3,2,3],[1,3,2,1],[1,1,2,0]],[[1,0,3,1],[1,3,2,2],[1,3,2,1],[1,2,0,1]],[[1,0,2,2],[1,3,2,2],[1,3,2,1],[1,2,0,1]],[[1,0,2,1],[1,3,2,3],[1,3,2,1],[1,2,0,1]],[[1,0,3,1],[1,3,2,2],[1,3,2,1],[1,2,1,0]],[[1,0,2,2],[1,3,2,2],[1,3,2,1],[1,2,1,0]],[[1,0,2,1],[1,3,2,3],[1,3,2,1],[1,2,1,0]],[[1,2,1,1],[2,1,2,0],[3,1,3,2],[1,2,2,0]],[[1,2,1,1],[3,1,2,0],[2,1,3,2],[1,2,2,0]],[[1,3,1,1],[2,1,2,0],[2,1,3,2],[1,2,2,0]],[[2,2,1,1],[2,1,2,0],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,2,0],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[2,1,2,0],[2,1,3,3],[1,2,1,1]],[[1,2,1,1],[2,1,2,0],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[2,1,2,0],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,2,0],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,2,0],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[3,1,3,1],[1,2,2,1]],[[1,2,1,1],[3,1,2,0],[2,1,3,1],[1,2,2,1]],[[1,3,1,1],[2,1,2,0],[2,1,3,1],[1,2,2,1]],[[2,2,1,1],[2,1,2,0],[2,1,3,1],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[2,1,2,0],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[2,1,2,0],[2,1,2,2],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[2,1,2,2],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[3,1,2,2],[1,2,2,1]],[[1,2,1,1],[3,1,2,0],[2,1,2,2],[1,2,2,1]],[[1,3,1,1],[2,1,2,0],[2,1,2,2],[1,2,2,1]],[[2,2,1,1],[2,1,2,0],[2,1,2,2],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,1,2,0],[1,3,3,2],[2,2,1,0]],[[1,2,1,1],[2,1,2,0],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,2,0],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[2,1,2,0],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[2,1,2,0],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[2,1,2,0],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[2,1,2,0],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[2,1,2,0],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[2,1,2,0],[1,3,4,2],[1,2,0,1]],[[1,2,1,1],[2,1,2,0],[1,4,3,2],[1,2,0,1]],[[1,2,1,1],[2,1,2,0],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[2,1,2,0],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[2,1,2,0],[1,3,4,2],[1,1,2,0]],[[1,2,1,1],[2,1,2,0],[1,4,3,2],[1,1,2,0]],[[1,2,1,1],[2,1,2,0],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[2,1,2,0],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[2,1,2,0],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[2,1,2,0],[1,4,3,2],[1,1,1,1]],[[1,0,3,1],[1,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,0,2,2],[1,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,0,2,1],[1,3,2,3],[1,3,3,1],[1,2,0,0]],[[1,2,1,1],[2,1,2,0],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[2,1,2,0],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[2,1,2,0],[1,3,4,1],[1,2,1,1]],[[1,2,1,1],[2,1,2,0],[1,4,3,1],[1,2,1,1]],[[1,2,1,1],[2,1,2,0],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[2,1,2,0],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[2,1,2,0],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[2,1,2,0],[1,4,3,1],[1,1,2,1]],[[1,2,1,1],[2,1,2,0],[1,3,3,0],[1,2,3,1]],[[1,2,1,1],[2,1,2,0],[1,3,3,0],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[1,3,3,0],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[1,4,3,0],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[2,1,2,0],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[2,1,2,0],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[2,1,2,0],[1,4,2,2],[1,2,2,0]],[[1,2,1,1],[2,1,2,0],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[2,1,2,0],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[2,1,2,0],[1,3,2,3],[1,1,2,1]],[[1,0,2,2],[1,3,2,2],[1,3,3,2],[0,0,1,1]],[[1,0,2,1],[1,3,2,3],[1,3,3,2],[0,0,1,1]],[[1,0,2,1],[1,3,2,2],[1,3,4,2],[0,0,1,1]],[[1,0,2,1],[1,3,2,2],[1,3,3,3],[0,0,1,1]],[[1,0,2,1],[1,3,2,2],[1,3,3,2],[0,0,1,2]],[[1,0,2,2],[1,3,2,2],[1,3,3,2],[0,0,2,0]],[[1,0,2,1],[1,3,2,3],[1,3,3,2],[0,0,2,0]],[[1,0,2,1],[1,3,2,2],[1,3,4,2],[0,0,2,0]],[[1,0,2,1],[1,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,1,2,0],[1,3,2,1],[1,2,2,2]],[[1,2,1,1],[2,1,2,0],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[2,1,2,0],[1,3,2,1],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[1,3,1,2],[1,2,2,2]],[[1,2,1,1],[2,1,2,0],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[2,1,2,0],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[1,3,1,2],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[1,3,1,3],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[1,4,1,2],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,2,0],[1,2,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,2,0],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[2,1,2,0],[1,2,3,3],[1,2,2,0]],[[1,2,1,1],[2,1,2,0],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[2,1,2,0],[1,2,3,2],[1,2,1,2]],[[1,2,1,1],[2,1,2,0],[1,2,3,3],[1,2,1,1]],[[1,2,1,1],[2,1,2,0],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[2,1,2,0],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,2,0],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,2,0],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[1,2,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[1,2,4,1],[1,2,2,1]],[[1,2,1,1],[2,1,2,0],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[2,1,2,0],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[2,1,2,0],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[2,1,2,0],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[2,1,2,0],[1,2,2,3],[1,2,2,1]],[[1,0,3,1],[1,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,2],[1,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,3],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[3,0,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[2,0,1,3],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[2,0,1,2],[2,2,2,1]],[[1,0,2,1],[1,3,2,2],[2,0,1,2],[1,3,2,1]],[[1,0,2,1],[1,3,2,2],[2,0,1,2],[1,2,3,1]],[[1,0,2,1],[1,3,2,2],[2,0,1,2],[1,2,2,2]],[[1,0,3,1],[1,3,2,2],[2,0,2,2],[1,2,1,1]],[[1,0,2,2],[1,3,2,2],[2,0,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,3],[2,0,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,2,2],[2,0,2,3],[1,2,1,1]],[[1,0,2,1],[1,3,2,2],[2,0,2,2],[1,2,1,2]],[[1,0,3,1],[1,3,2,2],[2,0,2,2],[1,2,2,0]],[[1,0,2,2],[1,3,2,2],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,3],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,2,2],[2,0,2,3],[1,2,2,0]],[[1,0,3,1],[1,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,2],[1,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,2,3],[2,0,3,0],[1,2,2,1]],[[1,0,3,1],[1,3,2,2],[2,0,3,1],[1,2,1,1]],[[1,0,2,2],[1,3,2,2],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,2,3],[2,0,3,1],[1,2,1,1]],[[1,0,3,1],[1,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,2],[1,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,2,3],[2,0,3,1],[1,2,2,0]],[[1,0,3,1],[1,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,2],[1,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,3],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[3,1,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[2,1,0,3],[1,2,2,1]],[[1,0,2,1],[1,3,2,2],[2,1,0,2],[2,2,2,1]],[[1,0,2,1],[1,3,2,2],[2,1,0,2],[1,3,2,1]],[[1,0,2,1],[1,3,2,2],[2,1,0,2],[1,2,3,1]],[[1,0,2,1],[1,3,2,2],[2,1,0,2],[1,2,2,2]],[[1,0,3,1],[1,3,2,2],[2,1,1,2],[0,2,2,1]],[[1,0,2,2],[1,3,2,2],[2,1,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,2,3],[2,1,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,2,2],[2,1,1,3],[0,2,2,1]],[[1,0,2,1],[1,3,2,2],[2,1,1,2],[0,3,2,1]],[[1,0,2,1],[1,3,2,2],[2,1,1,2],[0,2,3,1]],[[1,0,2,1],[1,3,2,2],[2,1,1,2],[0,2,2,2]],[[1,0,3,1],[1,3,2,2],[2,1,2,2],[0,2,1,1]],[[1,0,2,2],[1,3,2,2],[2,1,2,2],[0,2,1,1]],[[1,0,2,1],[1,3,2,3],[2,1,2,2],[0,2,1,1]],[[1,0,2,1],[1,3,2,2],[2,1,2,3],[0,2,1,1]],[[1,0,2,1],[1,3,2,2],[2,1,2,2],[0,2,1,2]],[[1,0,3,1],[1,3,2,2],[2,1,2,2],[0,2,2,0]],[[1,0,2,2],[1,3,2,2],[2,1,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,2,3],[2,1,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,2,2],[2,1,2,3],[0,2,2,0]],[[1,0,3,1],[1,3,2,2],[2,1,3,0],[0,2,2,1]],[[1,0,2,2],[1,3,2,2],[2,1,3,0],[0,2,2,1]],[[1,0,2,1],[1,3,2,3],[2,1,3,0],[0,2,2,1]],[[1,0,3,1],[1,3,2,2],[2,1,3,1],[0,2,1,1]],[[1,0,2,2],[1,3,2,2],[2,1,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,2,3],[2,1,3,1],[0,2,1,1]],[[1,0,3,1],[1,3,2,2],[2,1,3,1],[0,2,2,0]],[[1,0,2,2],[1,3,2,2],[2,1,3,1],[0,2,2,0]],[[1,0,2,1],[1,3,2,3],[2,1,3,1],[0,2,2,0]],[[1,0,3,1],[1,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,2],[1,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,2,3],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,2,2],[2,2,0,3],[0,2,2,1]],[[1,0,2,1],[1,3,2,2],[2,2,0,2],[0,3,2,1]],[[1,0,2,1],[1,3,2,2],[2,2,0,2],[0,2,3,1]],[[1,0,2,1],[1,3,2,2],[2,2,0,2],[0,2,2,2]],[[1,0,3,1],[1,3,2,2],[2,2,1,2],[0,1,2,1]],[[1,0,2,2],[1,3,2,2],[2,2,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,2,3],[2,2,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,2,2],[2,2,1,3],[0,1,2,1]],[[1,0,2,1],[1,3,2,2],[2,2,1,2],[0,1,3,1]],[[1,0,2,1],[1,3,2,2],[2,2,1,2],[0,1,2,2]],[[1,0,3,1],[1,3,2,2],[2,2,1,2],[1,0,2,1]],[[1,0,2,2],[1,3,2,2],[2,2,1,2],[1,0,2,1]],[[1,0,2,1],[1,3,2,3],[2,2,1,2],[1,0,2,1]],[[1,0,2,1],[1,3,2,2],[2,2,1,3],[1,0,2,1]],[[1,0,2,1],[1,3,2,2],[2,2,1,2],[1,0,3,1]],[[1,0,2,1],[1,3,2,2],[2,2,1,2],[1,0,2,2]],[[1,0,3,1],[1,3,2,2],[2,2,2,2],[0,0,2,1]],[[1,0,2,2],[1,3,2,2],[2,2,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,2,3],[2,2,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,2,2],[2,2,2,3],[0,0,2,1]],[[1,0,2,1],[1,3,2,2],[2,2,2,2],[0,0,2,2]],[[1,0,3,1],[1,3,2,2],[2,2,2,2],[0,1,1,1]],[[1,0,2,2],[1,3,2,2],[2,2,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,3],[2,2,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,2],[2,2,2,3],[0,1,1,1]],[[1,0,2,1],[1,3,2,2],[2,2,2,2],[0,1,1,2]],[[1,0,3,1],[1,3,2,2],[2,2,2,2],[0,1,2,0]],[[1,0,2,2],[1,3,2,2],[2,2,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,3],[2,2,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,2],[2,2,2,3],[0,1,2,0]],[[1,0,3,1],[1,3,2,2],[2,2,2,2],[0,2,0,1]],[[1,0,2,2],[1,3,2,2],[2,2,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,3],[2,2,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,2],[2,2,2,3],[0,2,0,1]],[[1,0,2,1],[1,3,2,2],[2,2,2,2],[0,2,0,2]],[[1,0,3,1],[1,3,2,2],[2,2,2,2],[0,2,1,0]],[[1,0,2,2],[1,3,2,2],[2,2,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,3],[2,2,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,2],[2,2,2,3],[0,2,1,0]],[[1,0,3,1],[1,3,2,2],[2,2,2,2],[1,0,1,1]],[[1,0,2,2],[1,3,2,2],[2,2,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,2,3],[2,2,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,2,2],[2,2,2,3],[1,0,1,1]],[[1,0,2,1],[1,3,2,2],[2,2,2,2],[1,0,1,2]],[[1,0,3,1],[1,3,2,2],[2,2,2,2],[1,0,2,0]],[[1,0,2,2],[1,3,2,2],[2,2,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,3],[2,2,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,2],[2,2,2,3],[1,0,2,0]],[[1,0,3,1],[1,3,2,2],[2,2,2,2],[1,1,0,1]],[[1,0,2,2],[1,3,2,2],[2,2,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,2,3],[2,2,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,2,2],[2,2,2,3],[1,1,0,1]],[[1,0,2,1],[1,3,2,2],[2,2,2,2],[1,1,0,2]],[[1,0,3,1],[1,3,2,2],[2,2,2,2],[1,1,1,0]],[[1,0,2,2],[1,3,2,2],[2,2,2,2],[1,1,1,0]],[[1,0,2,1],[1,3,2,3],[2,2,2,2],[1,1,1,0]],[[1,0,2,1],[1,3,2,2],[2,2,2,3],[1,1,1,0]],[[1,0,3,1],[1,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,0,2,2],[1,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,2,3],[2,2,3,0],[0,1,2,1]],[[1,0,3,1],[1,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,0,2,2],[1,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,2,3],[2,2,3,0],[0,2,1,1]],[[1,0,3,1],[1,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,0,2,2],[1,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,2,3],[2,2,3,0],[1,0,2,1]],[[1,0,3,1],[1,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,0,2,2],[1,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,0,2,1],[1,3,2,3],[2,2,3,0],[1,1,1,1]],[[1,0,3,1],[1,3,2,2],[2,2,3,1],[0,0,2,1]],[[1,0,2,2],[1,3,2,2],[2,2,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,2,3],[2,2,3,1],[0,0,2,1]],[[1,0,3,1],[1,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,0,2,2],[1,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,2,3],[2,2,3,1],[0,1,1,1]],[[1,0,3,1],[1,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,0,2,2],[1,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,2,3],[2,2,3,1],[0,1,2,0]],[[1,0,3,1],[1,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,0,2,2],[1,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,2,3],[2,2,3,1],[0,2,0,1]],[[1,0,3,1],[1,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,0,2,2],[1,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,2,3],[2,2,3,1],[0,2,1,0]],[[1,0,3,1],[1,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,0,2,2],[1,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,0,2,1],[1,3,2,3],[2,2,3,1],[1,0,1,1]],[[1,0,3,1],[1,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,0,2,2],[1,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,0,2,1],[1,3,2,3],[2,2,3,1],[1,0,2,0]],[[1,0,3,1],[1,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,0,2,2],[1,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,0,2,1],[1,3,2,3],[2,2,3,1],[1,1,0,1]],[[1,0,3,1],[1,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,0,2,2],[1,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,0,2,1],[1,3,2,3],[2,2,3,1],[1,1,1,0]],[[1,2,1,1],[2,1,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,1],[2,1,1,2],[2,4,0,2],[1,1,2,1]],[[1,2,1,1],[2,1,1,2],[3,3,0,2],[1,1,2,1]],[[1,2,1,1],[3,1,1,2],[2,3,0,2],[1,1,2,1]],[[1,3,1,1],[2,1,1,2],[2,3,0,2],[1,1,2,1]],[[2,2,1,1],[2,1,1,2],[2,3,0,2],[1,1,2,1]],[[1,2,1,1],[2,1,1,2],[2,3,0,2],[0,2,2,2]],[[1,2,1,1],[2,1,1,2],[2,3,0,2],[0,2,3,1]],[[1,2,1,1],[2,1,1,2],[2,3,0,2],[0,3,2,1]],[[1,2,1,1],[2,1,1,2],[2,3,0,3],[0,2,2,1]],[[1,2,1,1],[2,1,1,2],[2,4,0,2],[0,2,2,1]],[[1,2,1,1],[2,1,1,2],[3,3,0,2],[0,2,2,1]],[[1,2,1,1],[2,1,1,3],[2,3,0,2],[0,2,2,1]],[[1,2,1,1],[3,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,2,1,2],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,0,3,1],[1,3,2,2],[2,2,3,2],[0,1,0,1]],[[1,0,2,2],[1,3,2,2],[2,2,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,2,3],[2,2,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,2,2],[2,2,3,3],[0,1,0,1]],[[1,3,1,1],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[2,2,1,1],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,0,3,1],[1,3,2,2],[2,2,3,2],[1,0,0,1]],[[1,0,2,2],[1,3,2,2],[2,2,3,2],[1,0,0,1]],[[1,0,2,1],[1,3,2,3],[2,2,3,2],[1,0,0,1]],[[1,0,2,1],[1,3,2,2],[2,2,3,3],[1,0,0,1]],[[1,2,1,1],[2,1,1,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,1],[2,1,1,2],[2,2,0,2],[1,2,3,1]],[[1,2,1,1],[2,1,1,2],[2,2,0,2],[1,3,2,1]],[[1,2,1,1],[2,1,1,2],[2,2,0,2],[2,2,2,1]],[[1,2,1,1],[2,1,1,2],[2,2,0,3],[1,2,2,1]],[[1,2,1,1],[2,1,1,2],[3,2,0,2],[1,2,2,1]],[[1,2,1,1],[2,1,1,3],[2,2,0,2],[1,2,2,1]],[[1,2,1,1],[3,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,2,1,2],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,3,1,1],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[2,2,1,1],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,0,3,1],[1,3,2,2],[2,3,0,1],[0,2,2,1]],[[1,0,2,2],[1,3,2,2],[2,3,0,1],[0,2,2,1]],[[1,0,2,1],[1,3,2,3],[2,3,0,1],[0,2,2,1]],[[1,0,3,1],[1,3,2,2],[2,3,0,1],[1,1,2,1]],[[1,0,2,2],[1,3,2,2],[2,3,0,1],[1,1,2,1]],[[1,0,2,1],[1,3,2,3],[2,3,0,1],[1,1,2,1]],[[1,0,3,1],[1,3,2,2],[2,3,0,2],[0,1,2,1]],[[1,0,2,2],[1,3,2,2],[2,3,0,2],[0,1,2,1]],[[1,0,2,1],[1,3,2,3],[2,3,0,2],[0,1,2,1]],[[1,0,2,1],[1,3,2,2],[2,3,0,3],[0,1,2,1]],[[1,0,2,1],[1,3,2,2],[2,3,0,2],[0,1,3,1]],[[1,0,2,1],[1,3,2,2],[2,3,0,2],[0,1,2,2]],[[1,0,3,1],[1,3,2,2],[2,3,0,2],[0,2,1,1]],[[1,0,2,2],[1,3,2,2],[2,3,0,2],[0,2,1,1]],[[1,0,2,1],[1,3,2,3],[2,3,0,2],[0,2,1,1]],[[1,0,2,1],[1,3,2,2],[2,3,0,3],[0,2,1,1]],[[1,0,2,1],[1,3,2,2],[2,3,0,2],[0,2,1,2]],[[1,0,3,1],[1,3,2,2],[2,3,0,2],[0,2,2,0]],[[1,0,2,2],[1,3,2,2],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[1,3,2,3],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[1,3,2,2],[2,3,0,3],[0,2,2,0]],[[1,0,3,1],[1,3,2,2],[2,3,0,2],[1,0,2,1]],[[1,0,2,2],[1,3,2,2],[2,3,0,2],[1,0,2,1]],[[1,0,2,1],[1,3,2,3],[2,3,0,2],[1,0,2,1]],[[1,0,2,1],[1,3,2,2],[2,3,0,3],[1,0,2,1]],[[1,0,2,1],[1,3,2,2],[2,3,0,2],[1,0,3,1]],[[1,0,2,1],[1,3,2,2],[2,3,0,2],[1,0,2,2]],[[1,0,3,1],[1,3,2,2],[2,3,0,2],[1,1,1,1]],[[1,0,2,2],[1,3,2,2],[2,3,0,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,3],[2,3,0,2],[1,1,1,1]],[[1,0,2,1],[1,3,2,2],[2,3,0,3],[1,1,1,1]],[[1,0,2,1],[1,3,2,2],[2,3,0,2],[1,1,1,2]],[[1,0,3,1],[1,3,2,2],[2,3,0,2],[1,1,2,0]],[[1,0,2,2],[1,3,2,2],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,3],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[1,3,2,2],[2,3,0,3],[1,1,2,0]],[[1,0,3,1],[1,3,2,2],[2,3,1,0],[0,2,2,1]],[[1,0,2,2],[1,3,2,2],[2,3,1,0],[0,2,2,1]],[[1,0,2,1],[1,3,2,3],[2,3,1,0],[0,2,2,1]],[[1,0,3,1],[1,3,2,2],[2,3,1,0],[1,1,2,1]],[[1,0,2,2],[1,3,2,2],[2,3,1,0],[1,1,2,1]],[[1,0,2,1],[1,3,2,3],[2,3,1,0],[1,1,2,1]],[[1,0,3,1],[1,3,2,2],[2,3,1,1],[0,2,2,0]],[[1,0,2,2],[1,3,2,2],[2,3,1,1],[0,2,2,0]],[[1,0,2,1],[1,3,2,3],[2,3,1,1],[0,2,2,0]],[[1,0,3,1],[1,3,2,2],[2,3,1,1],[1,1,2,0]],[[1,0,2,2],[1,3,2,2],[2,3,1,1],[1,1,2,0]],[[1,0,2,1],[1,3,2,3],[2,3,1,1],[1,1,2,0]],[[1,0,3,1],[1,3,2,2],[2,3,1,2],[0,1,1,1]],[[1,0,2,2],[1,3,2,2],[2,3,1,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,3],[2,3,1,2],[0,1,1,1]],[[1,0,2,1],[1,3,2,2],[2,3,1,3],[0,1,1,1]],[[1,0,2,1],[1,3,2,2],[2,3,1,2],[0,1,1,2]],[[1,0,3,1],[1,3,2,2],[2,3,1,2],[0,1,2,0]],[[1,0,2,2],[1,3,2,2],[2,3,1,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,3],[2,3,1,2],[0,1,2,0]],[[1,0,2,1],[1,3,2,2],[2,3,1,3],[0,1,2,0]],[[1,0,3,1],[1,3,2,2],[2,3,1,2],[0,2,0,1]],[[1,0,2,2],[1,3,2,2],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,3],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[1,3,2,2],[2,3,1,3],[0,2,0,1]],[[1,0,2,1],[1,3,2,2],[2,3,1,2],[0,2,0,2]],[[1,0,3,1],[1,3,2,2],[2,3,1,2],[0,2,1,0]],[[1,0,2,2],[1,3,2,2],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,3],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[1,3,2,2],[2,3,1,3],[0,2,1,0]],[[1,0,3,1],[1,3,2,2],[2,3,1,2],[1,0,1,1]],[[1,0,2,2],[1,3,2,2],[2,3,1,2],[1,0,1,1]],[[1,0,2,1],[1,3,2,3],[2,3,1,2],[1,0,1,1]],[[1,0,2,1],[1,3,2,2],[2,3,1,3],[1,0,1,1]],[[1,0,2,1],[1,3,2,2],[2,3,1,2],[1,0,1,2]],[[1,0,3,1],[1,3,2,2],[2,3,1,2],[1,0,2,0]],[[1,0,2,2],[1,3,2,2],[2,3,1,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,3],[2,3,1,2],[1,0,2,0]],[[1,0,2,1],[1,3,2,2],[2,3,1,3],[1,0,2,0]],[[1,0,3,1],[1,3,2,2],[2,3,1,2],[1,1,0,1]],[[1,0,2,2],[1,3,2,2],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[1,3,2,3],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[1,3,2,2],[2,3,1,3],[1,1,0,1]],[[1,0,2,1],[1,3,2,2],[2,3,1,2],[1,1,0,2]],[[1,0,3,1],[1,3,2,2],[2,3,1,2],[1,1,1,0]],[[1,0,2,2],[1,3,2,2],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[1,3,2,3],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[1,3,2,2],[2,3,1,3],[1,1,1,0]],[[1,2,1,1],[2,1,1,2],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,1,2],[2,0,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,1,2],[2,0,3,2],[2,2,2,0]],[[1,2,1,1],[2,1,1,2],[2,0,3,3],[1,2,2,0]],[[1,2,1,1],[2,1,1,2],[2,0,4,2],[1,2,2,0]],[[1,2,1,1],[2,1,1,2],[3,0,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,1,3],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[3,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,1,2],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,3,1,1],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,3,1],[1,3,2,2],[2,3,1,2],[1,2,0,0]],[[1,0,2,2],[1,3,2,2],[2,3,1,2],[1,2,0,0]],[[1,0,2,1],[1,3,2,3],[2,3,1,2],[1,2,0,0]],[[2,2,1,1],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,1,2],[2,0,3,2],[1,2,1,2]],[[1,2,1,1],[2,1,1,2],[2,0,3,3],[1,2,1,1]],[[1,2,1,1],[2,1,1,2],[2,0,4,2],[1,2,1,1]],[[1,2,1,1],[2,1,1,3],[2,0,3,2],[1,2,1,1]],[[1,2,1,2],[2,1,1,2],[2,0,3,2],[1,2,1,1]],[[1,2,1,1],[2,1,1,2],[2,0,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,1,2],[2,0,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,1,2],[2,0,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,1,2],[2,0,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,1,2],[2,0,4,1],[1,2,2,1]],[[1,2,1,1],[2,1,1,2],[3,0,3,1],[1,2,2,1]],[[1,2,1,1],[3,1,1,2],[2,0,3,1],[1,2,2,1]],[[1,3,1,1],[2,1,1,2],[2,0,3,1],[1,2,2,1]],[[2,2,1,1],[2,1,1,2],[2,0,3,1],[1,2,2,1]],[[1,2,1,1],[2,1,1,2],[2,0,2,2],[1,2,2,2]],[[1,2,1,1],[2,1,1,2],[2,0,2,2],[1,2,3,1]],[[1,2,1,1],[2,1,1,2],[2,0,2,2],[1,3,2,1]],[[1,2,1,1],[2,1,1,2],[2,0,2,2],[2,2,2,1]],[[1,2,1,1],[2,1,1,2],[2,0,2,3],[1,2,2,1]],[[1,2,1,1],[2,1,1,2],[3,0,2,2],[1,2,2,1]],[[1,2,1,1],[2,1,1,3],[2,0,2,2],[1,2,2,1]],[[1,2,1,1],[3,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,3,1],[1,3,2,2],[2,3,2,0],[0,1,2,1]],[[1,0,2,2],[1,3,2,2],[2,3,2,0],[0,1,2,1]],[[1,0,2,1],[1,3,2,3],[2,3,2,0],[0,1,2,1]],[[1,0,3,1],[1,3,2,2],[2,3,2,0],[0,2,1,1]],[[1,0,2,2],[1,3,2,2],[2,3,2,0],[0,2,1,1]],[[1,0,2,1],[1,3,2,3],[2,3,2,0],[0,2,1,1]],[[1,0,3,1],[1,3,2,2],[2,3,2,0],[1,0,2,1]],[[1,0,2,2],[1,3,2,2],[2,3,2,0],[1,0,2,1]],[[1,0,2,1],[1,3,2,3],[2,3,2,0],[1,0,2,1]],[[1,0,3,1],[1,3,2,2],[2,3,2,0],[1,1,1,1]],[[1,0,2,2],[1,3,2,2],[2,3,2,0],[1,1,1,1]],[[1,0,2,1],[1,3,2,3],[2,3,2,0],[1,1,1,1]],[[1,2,1,2],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,3,1,1],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[2,2,1,1],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,3,1],[1,3,2,2],[2,3,2,1],[0,1,1,1]],[[1,0,2,2],[1,3,2,2],[2,3,2,1],[0,1,1,1]],[[1,0,2,1],[1,3,2,3],[2,3,2,1],[0,1,1,1]],[[1,0,3,1],[1,3,2,2],[2,3,2,1],[0,1,2,0]],[[1,0,2,2],[1,3,2,2],[2,3,2,1],[0,1,2,0]],[[1,0,2,1],[1,3,2,3],[2,3,2,1],[0,1,2,0]],[[1,0,3,1],[1,3,2,2],[2,3,2,1],[0,2,0,1]],[[1,0,2,2],[1,3,2,2],[2,3,2,1],[0,2,0,1]],[[1,0,2,1],[1,3,2,3],[2,3,2,1],[0,2,0,1]],[[1,0,3,1],[1,3,2,2],[2,3,2,1],[0,2,1,0]],[[1,0,2,2],[1,3,2,2],[2,3,2,1],[0,2,1,0]],[[1,0,2,1],[1,3,2,3],[2,3,2,1],[0,2,1,0]],[[1,0,3,1],[1,3,2,2],[2,3,2,1],[1,0,1,1]],[[1,0,2,2],[1,3,2,2],[2,3,2,1],[1,0,1,1]],[[1,0,2,1],[1,3,2,3],[2,3,2,1],[1,0,1,1]],[[1,0,3,1],[1,3,2,2],[2,3,2,1],[1,0,2,0]],[[1,0,2,2],[1,3,2,2],[2,3,2,1],[1,0,2,0]],[[1,0,2,1],[1,3,2,3],[2,3,2,1],[1,0,2,0]],[[1,0,3,1],[1,3,2,2],[2,3,2,1],[1,1,0,1]],[[1,0,2,2],[1,3,2,2],[2,3,2,1],[1,1,0,1]],[[1,0,2,1],[1,3,2,3],[2,3,2,1],[1,1,0,1]],[[1,0,3,1],[1,3,2,2],[2,3,2,1],[1,1,1,0]],[[1,0,2,2],[1,3,2,2],[2,3,2,1],[1,1,1,0]],[[1,0,2,1],[1,3,2,3],[2,3,2,1],[1,1,1,0]],[[1,0,3,1],[1,3,2,2],[2,3,2,1],[1,2,0,0]],[[1,0,2,2],[1,3,2,2],[2,3,2,1],[1,2,0,0]],[[1,0,2,1],[1,3,2,3],[2,3,2,1],[1,2,0,0]],[[1,0,3,1],[1,3,2,2],[2,3,2,2],[0,0,1,1]],[[1,0,2,2],[1,3,2,2],[2,3,2,2],[0,0,1,1]],[[1,0,2,1],[1,3,2,3],[2,3,2,2],[0,0,1,1]],[[1,0,2,1],[1,3,2,2],[2,3,2,3],[0,0,1,1]],[[1,0,2,1],[1,3,2,2],[2,3,2,2],[0,0,1,2]],[[1,0,3,1],[1,3,2,2],[2,3,2,2],[0,0,2,0]],[[1,0,2,2],[1,3,2,2],[2,3,2,2],[0,0,2,0]],[[1,0,2,1],[1,3,2,3],[2,3,2,2],[0,0,2,0]],[[1,0,2,1],[1,3,2,2],[2,3,2,3],[0,0,2,0]],[[1,2,1,1],[2,1,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,1,1],[2,1,1,2],[1,3,0,2],[1,2,3,1]],[[1,2,1,1],[2,1,1,2],[1,3,0,2],[1,3,2,1]],[[1,2,1,1],[2,1,1,2],[1,3,0,2],[2,2,2,1]],[[1,2,1,1],[2,1,1,2],[1,3,0,3],[1,2,2,1]],[[1,2,1,1],[2,1,1,2],[1,4,0,2],[1,2,2,1]],[[1,2,1,1],[2,1,1,3],[1,3,0,2],[1,2,2,1]],[[1,2,1,2],[2,1,1,2],[1,3,0,2],[1,2,2,1]],[[1,0,3,1],[1,3,2,2],[2,3,3,0],[0,0,2,1]],[[1,0,2,2],[1,3,2,2],[2,3,3,0],[0,0,2,1]],[[1,0,2,1],[1,3,2,3],[2,3,3,0],[0,0,2,1]],[[1,2,1,1],[2,1,1,0],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[2,1,1,0],[2,4,3,2],[1,1,2,0]],[[1,2,1,1],[2,1,1,0],[3,3,3,2],[1,1,2,0]],[[1,2,1,1],[3,1,1,0],[2,3,3,2],[1,1,2,0]],[[2,2,1,1],[2,1,1,0],[2,3,3,2],[1,1,2,0]],[[1,2,1,1],[2,1,1,0],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,1,0],[2,3,3,2],[0,3,2,0]],[[1,2,1,1],[2,1,1,0],[2,4,3,2],[0,2,2,0]],[[1,2,1,1],[2,1,1,0],[3,3,3,2],[0,2,2,0]],[[1,2,1,1],[3,1,1,0],[2,3,3,2],[0,2,2,0]],[[2,2,1,1],[2,1,1,0],[2,3,3,2],[0,2,2,0]],[[1,0,3,1],[1,3,2,2],[2,3,3,1],[0,0,1,1]],[[1,0,2,2],[1,3,2,2],[2,3,3,1],[0,0,1,1]],[[1,0,2,1],[1,3,2,3],[2,3,3,1],[0,0,1,1]],[[1,0,3,1],[1,3,2,2],[2,3,3,1],[0,0,2,0]],[[1,0,2,2],[1,3,2,2],[2,3,3,1],[0,0,2,0]],[[1,0,2,1],[1,3,2,3],[2,3,3,1],[0,0,2,0]],[[1,2,1,1],[2,1,1,0],[2,3,3,1],[2,1,2,1]],[[1,2,1,1],[2,1,1,0],[2,4,3,1],[1,1,2,1]],[[1,2,1,1],[2,1,1,0],[3,3,3,1],[1,1,2,1]],[[1,0,3,1],[1,3,2,2],[2,3,3,1],[0,2,0,0]],[[1,0,2,2],[1,3,2,2],[2,3,3,1],[0,2,0,0]],[[1,0,2,1],[1,3,2,3],[2,3,3,1],[0,2,0,0]],[[1,2,1,1],[3,1,1,0],[2,3,3,1],[1,1,2,1]],[[2,2,1,1],[2,1,1,0],[2,3,3,1],[1,1,2,1]],[[1,2,1,1],[2,1,1,0],[2,3,3,1],[0,2,2,2]],[[1,2,1,1],[2,1,1,0],[2,3,3,1],[0,2,3,1]],[[1,2,1,1],[2,1,1,0],[2,3,3,1],[0,3,2,1]],[[1,2,1,1],[2,1,1,0],[2,4,3,1],[0,2,2,1]],[[1,2,1,1],[2,1,1,0],[3,3,3,1],[0,2,2,1]],[[1,2,1,1],[3,1,1,0],[2,3,3,1],[0,2,2,1]],[[2,2,1,1],[2,1,1,0],[2,3,3,1],[0,2,2,1]],[[1,2,1,1],[2,1,1,0],[2,2,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,1,0],[2,2,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,1,0],[2,2,3,2],[2,2,2,0]],[[1,2,1,1],[2,1,1,0],[3,2,3,2],[1,2,2,0]],[[1,2,1,1],[3,1,1,0],[2,2,3,2],[1,2,2,0]],[[2,2,1,1],[2,1,1,0],[2,2,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,1,0],[2,2,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,1,0],[2,2,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,1,0],[2,2,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,1,0],[2,2,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,1,0],[3,2,3,1],[1,2,2,1]],[[1,2,1,1],[3,1,1,0],[2,2,3,1],[1,2,2,1]],[[2,2,1,1],[2,1,1,0],[2,2,3,1],[1,2,2,1]],[[1,2,1,1],[2,1,1,0],[1,3,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,1,0],[1,3,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,1,0],[1,3,3,2],[2,2,2,0]],[[1,0,3,1],[1,3,2,2],[2,3,3,1],[1,1,0,0]],[[1,0,2,2],[1,3,2,2],[2,3,3,1],[1,1,0,0]],[[1,0,2,1],[1,3,2,3],[2,3,3,1],[1,1,0,0]],[[1,2,1,1],[2,1,1,0],[1,4,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,1,0],[1,3,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,1,0],[1,3,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,1,0],[1,3,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,1,0],[1,3,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,1,0],[1,4,3,1],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,1,0,2],[2,4,3,2],[1,2,0,0]],[[1,2,1,1],[2,1,0,2],[3,3,3,2],[1,2,0,0]],[[1,2,1,1],[3,1,0,2],[2,3,3,2],[1,2,0,0]],[[1,3,1,1],[2,1,0,2],[2,3,3,2],[1,2,0,0]],[[2,2,1,1],[2,1,0,2],[2,3,3,2],[1,2,0,0]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,1,0,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,0,2],[2,3,4,2],[1,1,1,0]],[[1,2,1,1],[2,1,0,2],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[2,1,0,2],[3,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,1,0,3],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[3,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,2],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,3,1,1],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[2,2,1,1],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[2,1,0,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,3],[1,1,0,1]],[[1,2,1,1],[2,1,0,2],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[2,1,0,2],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[2,1,0,2],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,1,0,3],[2,3,3,2],[1,1,0,1]],[[1,2,1,1],[3,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,0,3,1],[1,3,2,2],[2,3,3,2],[0,0,0,1]],[[1,0,2,2],[1,3,2,2],[2,3,3,2],[0,0,0,1]],[[1,0,2,1],[1,3,2,3],[2,3,3,2],[0,0,0,1]],[[1,0,2,1],[1,3,2,2],[2,3,3,3],[0,0,0,1]],[[1,2,1,2],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,3,1,1],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[2,2,1,1],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[2,0,2,0]],[[1,2,1,1],[2,1,0,2],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[2,1,0,2],[2,3,4,2],[1,0,2,0]],[[1,2,1,1],[2,1,0,2],[2,4,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,0,2],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,0,3],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[3,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,2],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,3,1,1],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[2,2,1,1],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[1,0,1,2]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,3],[1,0,1,1]],[[1,2,1,1],[2,1,0,2],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[2,1,0,2],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[2,1,0,2],[3,3,3,2],[1,0,1,1]],[[1,2,1,1],[2,1,0,3],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[3,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,2,1,2],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,3,1,1],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[2,2,1,1],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,1,0,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,1,0,2],[2,3,4,2],[0,2,1,0]],[[1,2,1,1],[2,1,0,2],[2,4,3,2],[0,2,1,0]],[[1,2,1,1],[2,1,0,2],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,1,0,3],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[3,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,1,2],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,3,1,1],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[2,2,1,1],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[2,1,0,2],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[2,1,0,2],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[2,1,0,2],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[2,1,0,3],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[3,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,1,2],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,3,1,1],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[2,2,1,1],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[2,1,0,2],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[2,1,0,2],[2,3,4,2],[0,1,2,0]],[[1,2,1,1],[2,1,0,2],[2,4,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,0,2],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,0,3],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[3,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,2],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,3,1,1],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[2,2,1,1],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[0,1,1,2]],[[1,2,1,1],[2,1,0,2],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[2,1,0,2],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[2,1,0,2],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,0,2],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,0,3],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[3,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,2,1,2],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,3,1,1],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[2,2,1,1],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,2],[0,0,2,2]],[[1,2,1,1],[2,1,0,2],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[2,1,0,3],[2,3,3,2],[0,0,2,1]],[[1,2,1,2],[2,1,0,2],[2,3,3,2],[0,0,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,1,0,2],[2,4,3,1],[1,2,0,1]],[[1,2,1,1],[2,1,0,2],[3,3,3,1],[1,2,0,1]],[[1,2,1,1],[3,1,0,2],[2,3,3,1],[1,2,0,1]],[[2,2,1,1],[2,1,0,2],[2,3,3,1],[1,2,0,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[2,1,0,2],[2,3,4,1],[1,1,1,1]],[[1,2,1,1],[2,1,0,2],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[2,1,0,2],[3,3,3,1],[1,1,1,1]],[[1,2,1,1],[3,1,0,2],[2,3,3,1],[1,1,1,1]],[[1,3,1,1],[2,1,0,2],[2,3,3,1],[1,1,1,1]],[[2,2,1,1],[2,1,0,2],[2,3,3,1],[1,1,1,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[2,1,0,2],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,1],[2,0,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[2,1,0,2],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[2,1,0,2],[3,3,3,1],[1,0,2,1]],[[1,2,1,1],[3,1,0,2],[2,3,3,1],[1,0,2,1]],[[1,3,1,1],[2,1,0,2],[2,3,3,1],[1,0,2,1]],[[2,2,1,1],[2,1,0,2],[2,3,3,1],[1,0,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[2,1,0,2],[2,3,4,1],[0,2,1,1]],[[1,2,1,1],[2,1,0,2],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[2,1,0,2],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[3,1,0,2],[2,3,3,1],[0,2,1,1]],[[1,3,1,1],[2,1,0,2],[2,3,3,1],[0,2,1,1]],[[2,2,1,1],[2,1,0,2],[2,3,3,1],[0,2,1,1]],[[1,2,1,1],[2,1,0,2],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[2,1,0,2],[2,3,3,1],[0,1,3,1]],[[1,2,1,1],[2,1,0,2],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[2,1,0,2],[2,4,3,1],[0,1,2,1]],[[1,2,1,1],[2,1,0,2],[3,3,3,1],[0,1,2,1]],[[1,2,1,1],[3,1,0,2],[2,3,3,1],[0,1,2,1]],[[1,3,1,1],[2,1,0,2],[2,3,3,1],[0,1,2,1]],[[2,2,1,1],[2,1,0,2],[2,3,3,1],[0,1,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,1,0,2],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[2,1,0,2],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[3,1,0,2],[2,3,2,2],[1,1,2,0]],[[1,3,1,1],[2,1,0,2],[2,3,2,2],[1,1,2,0]],[[2,2,1,1],[2,1,0,2],[2,3,2,2],[1,1,2,0]],[[1,2,1,1],[2,1,0,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[2,1,0,2],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[2,1,0,2],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[2,1,0,3],[2,3,2,2],[1,0,2,1]],[[1,2,1,2],[2,1,0,2],[2,3,2,2],[1,0,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,2,2],[0,2,3,0]],[[1,2,1,1],[2,1,0,2],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[2,1,0,2],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[2,1,0,2],[3,3,2,2],[0,2,2,0]],[[1,2,1,1],[3,1,0,2],[2,3,2,2],[0,2,2,0]],[[1,3,1,1],[2,1,0,2],[2,3,2,2],[0,2,2,0]],[[2,2,1,1],[2,1,0,2],[2,3,2,2],[0,2,2,0]],[[1,2,1,1],[2,1,0,2],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[2,1,0,2],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[2,1,0,2],[2,3,2,3],[0,1,2,1]],[[1,2,1,1],[2,1,0,3],[2,3,2,2],[0,1,2,1]],[[1,2,1,2],[2,1,0,2],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,0],[1,0,3,3],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,0,3,2],[1,2,3,1]],[[1,0,2,1],[1,3,3,0],[1,0,3,2],[1,2,2,2]],[[1,0,2,1],[1,3,3,0],[1,1,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,1,2,2],[2,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,1,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,3,0],[1,1,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,3,0],[1,1,2,2],[1,2,2,2]],[[1,0,3,1],[1,3,3,0],[1,1,3,1],[1,2,2,1]],[[1,0,2,2],[1,3,3,0],[1,1,3,1],[1,2,2,1]],[[1,0,2,1],[1,4,3,0],[1,1,3,1],[1,2,2,1]],[[1,0,2,1],[1,3,4,0],[1,1,3,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,1,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,1,3,1],[2,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,1,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,3,0],[1,1,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,3,0],[1,1,3,1],[1,2,2,2]],[[1,0,3,1],[1,3,3,0],[1,1,3,2],[1,2,1,1]],[[1,0,2,2],[1,3,3,0],[1,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,4,3,0],[1,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,4,0],[1,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,0],[1,1,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,0],[1,1,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,3,0],[1,1,3,2],[1,2,1,2]],[[1,0,3,1],[1,3,3,0],[1,1,3,2],[1,2,2,0]],[[1,0,2,2],[1,3,3,0],[1,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,4,3,0],[1,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,4,0],[1,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,0],[1,1,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,0],[1,1,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,3,0],[1,1,3,2],[2,2,2,0]],[[1,0,2,1],[1,3,3,0],[1,1,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,3,0],[1,1,3,2],[1,2,3,0]],[[1,0,2,1],[1,3,3,0],[1,2,2,3],[1,1,2,1]],[[1,0,2,1],[1,3,3,0],[1,2,2,2],[1,1,3,1]],[[1,0,2,1],[1,3,3,0],[1,2,2,2],[1,1,2,2]],[[1,0,3,1],[1,3,3,0],[1,2,3,1],[1,1,2,1]],[[1,0,2,2],[1,3,3,0],[1,2,3,1],[1,1,2,1]],[[1,0,2,1],[1,4,3,0],[1,2,3,1],[1,1,2,1]],[[1,0,2,1],[1,3,4,0],[1,2,3,1],[1,1,2,1]],[[1,0,2,1],[1,3,3,0],[1,2,4,1],[1,1,2,1]],[[1,0,2,1],[1,3,3,0],[1,2,3,1],[1,1,3,1]],[[1,0,2,1],[1,3,3,0],[1,2,3,1],[1,1,2,2]],[[1,0,3,1],[1,3,3,0],[1,2,3,1],[1,2,1,1]],[[1,0,2,2],[1,3,3,0],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,4,3,0],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,4,0],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,3,0],[1,2,4,1],[1,2,1,1]],[[1,0,2,1],[1,3,4,0],[1,2,3,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,0],[1,2,4,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,0],[1,2,3,3],[1,0,2,1]],[[1,0,2,1],[1,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,0,3,1],[1,3,3,0],[1,2,3,2],[1,1,1,1]],[[1,0,2,2],[1,3,3,0],[1,2,3,2],[1,1,1,1]],[[1,0,2,1],[1,4,3,0],[1,2,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,4,0],[1,2,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,0],[1,2,4,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,0],[1,2,3,3],[1,1,1,1]],[[1,0,2,1],[1,3,3,0],[1,2,3,2],[1,1,1,2]],[[1,0,3,1],[1,3,3,0],[1,2,3,2],[1,1,2,0]],[[1,0,2,2],[1,3,3,0],[1,2,3,2],[1,1,2,0]],[[1,0,2,1],[1,4,3,0],[1,2,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,4,0],[1,2,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,0],[1,2,4,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,0],[1,2,3,3],[1,1,2,0]],[[1,0,2,1],[1,3,3,0],[1,2,3,2],[1,1,3,0]],[[1,0,3,1],[1,3,3,0],[1,2,3,2],[1,2,0,1]],[[1,0,2,2],[1,3,3,0],[1,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,4,3,0],[1,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,4,0],[1,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,0],[1,2,4,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,0],[1,2,3,3],[1,2,0,1]],[[1,0,2,1],[1,3,3,0],[1,2,3,2],[1,2,0,2]],[[1,0,3,1],[1,3,3,0],[1,2,3,2],[1,2,1,0]],[[1,0,2,2],[1,3,3,0],[1,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,4,3,0],[1,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,4,0],[1,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,0],[1,2,4,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,0],[1,2,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,0,2],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[2,1,0,2],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[2,1,0,2],[3,3,2,1],[1,1,2,1]],[[1,0,3,1],[1,3,3,0],[1,3,0,2],[1,2,2,1]],[[1,0,2,2],[1,3,3,0],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,4,3,0],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,4,0],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,4,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,3,0,3],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,3,0,2],[2,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,3,0,2],[1,3,2,1]],[[1,0,2,1],[1,3,3,0],[1,3,0,2],[1,2,3,1]],[[1,0,2,1],[1,3,3,0],[1,3,0,2],[1,2,2,2]],[[1,0,3,1],[1,3,3,0],[1,3,1,1],[1,2,2,1]],[[1,0,2,2],[1,3,3,0],[1,3,1,1],[1,2,2,1]],[[1,0,2,1],[1,4,3,0],[1,3,1,1],[1,2,2,1]],[[1,0,2,1],[1,3,4,0],[1,3,1,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,4,1,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,3,1,1],[2,2,2,1]],[[1,0,2,1],[1,3,3,0],[1,3,1,1],[1,3,2,1]],[[1,0,2,1],[1,3,3,0],[1,3,1,1],[1,2,3,1]],[[1,0,2,1],[1,3,3,0],[1,3,1,1],[1,2,2,2]],[[1,0,3,1],[1,3,3,0],[1,3,1,2],[1,2,2,0]],[[1,0,2,2],[1,3,3,0],[1,3,1,2],[1,2,2,0]],[[1,0,2,1],[1,4,3,0],[1,3,1,2],[1,2,2,0]],[[1,0,2,1],[1,3,4,0],[1,3,1,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,0],[1,4,1,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,0],[1,3,1,2],[2,2,2,0]],[[1,0,2,1],[1,3,3,0],[1,3,1,2],[1,3,2,0]],[[1,0,2,1],[1,3,3,0],[1,3,1,2],[1,2,3,0]],[[1,0,3,1],[1,3,3,0],[1,3,2,1],[1,1,2,1]],[[1,0,2,2],[1,3,3,0],[1,3,2,1],[1,1,2,1]],[[1,0,2,1],[1,4,3,0],[1,3,2,1],[1,1,2,1]],[[1,0,2,1],[1,3,4,0],[1,3,2,1],[1,1,2,1]],[[1,0,2,1],[1,3,3,0],[1,4,2,1],[1,1,2,1]],[[1,0,3,1],[1,3,3,0],[1,3,2,1],[1,2,1,1]],[[1,0,2,2],[1,3,3,0],[1,3,2,1],[1,2,1,1]],[[1,0,2,1],[1,4,3,0],[1,3,2,1],[1,2,1,1]],[[1,0,2,1],[1,3,4,0],[1,3,2,1],[1,2,1,1]],[[1,0,2,1],[1,3,3,0],[1,4,2,1],[1,2,1,1]],[[1,0,2,1],[1,3,3,0],[1,3,2,1],[2,2,1,1]],[[1,0,2,1],[1,3,3,0],[1,3,2,1],[1,3,1,1]],[[1,0,3,1],[1,3,3,0],[1,3,2,2],[1,1,1,1]],[[1,0,2,2],[1,3,3,0],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[1,4,3,0],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[1,3,4,0],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,0],[1,4,2,2],[1,1,1,1]],[[1,0,3,1],[1,3,3,0],[1,3,2,2],[1,1,2,0]],[[1,0,2,2],[1,3,3,0],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,4,3,0],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,4,0],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,0],[1,4,2,2],[1,1,2,0]],[[1,0,3,1],[1,3,3,0],[1,3,2,2],[1,2,0,1]],[[1,0,2,2],[1,3,3,0],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[1,4,3,0],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,4,0],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,0],[1,4,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,0],[1,3,2,2],[2,2,0,1]],[[1,0,2,1],[1,3,3,0],[1,3,2,2],[1,3,0,1]],[[1,0,3,1],[1,3,3,0],[1,3,2,2],[1,2,1,0]],[[1,0,2,2],[1,3,3,0],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[1,4,3,0],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,4,0],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,0],[1,4,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,0],[1,3,2,2],[2,2,1,0]],[[1,0,2,1],[1,3,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,1,1],[3,1,0,2],[2,3,2,1],[1,1,2,1]],[[1,3,1,1],[2,1,0,2],[2,3,2,1],[1,1,2,1]],[[2,2,1,1],[2,1,0,2],[2,3,2,1],[1,1,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[2,1,0,2],[2,3,2,1],[0,2,3,1]],[[1,2,1,1],[2,1,0,2],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[2,1,0,2],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[2,1,0,2],[3,3,2,1],[0,2,2,1]],[[1,2,1,1],[3,1,0,2],[2,3,2,1],[0,2,2,1]],[[1,3,1,1],[2,1,0,2],[2,3,2,1],[0,2,2,1]],[[2,2,1,1],[2,1,0,2],[2,3,2,1],[0,2,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,1,2],[1,3,2,0]],[[1,2,1,1],[2,1,0,2],[2,3,1,2],[2,2,2,0]],[[1,2,1,1],[2,1,0,2],[3,3,1,2],[1,2,2,0]],[[1,2,1,1],[3,1,0,2],[2,3,1,2],[1,2,2,0]],[[2,2,1,1],[2,1,0,2],[2,3,1,2],[1,2,2,0]],[[1,2,1,1],[2,1,0,2],[2,3,1,2],[2,1,2,1]],[[1,0,3,1],[1,3,3,0],[1,3,3,2],[1,2,0,0]],[[1,0,2,2],[1,3,3,0],[1,3,3,2],[1,2,0,0]],[[1,0,2,1],[1,4,3,0],[1,3,3,2],[1,2,0,0]],[[1,0,2,1],[1,3,4,0],[1,3,3,2],[1,2,0,0]],[[1,0,2,1],[1,3,3,0],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[2,1,0,2],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[2,1,0,2],[3,3,1,2],[1,1,2,1]],[[1,2,1,1],[3,1,0,2],[2,3,1,2],[1,1,2,1]],[[1,3,1,1],[2,1,0,2],[2,3,1,2],[1,1,2,1]],[[2,2,1,1],[2,1,0,2],[2,3,1,2],[1,1,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[2,1,0,2],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[2,1,0,2],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,1,3],[0,2,2,1]],[[1,2,1,1],[2,1,0,2],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[2,1,0,2],[3,3,1,2],[0,2,2,1]],[[1,2,1,1],[2,1,0,3],[2,3,1,2],[0,2,2,1]],[[1,2,1,1],[3,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,1,2],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,3,1,1],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[2,2,1,1],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,1,1],[1,3,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,1,1],[2,2,2,1]],[[1,2,1,1],[2,1,0,2],[3,3,1,1],[1,2,2,1]],[[1,2,1,1],[3,1,0,2],[2,3,1,1],[1,2,2,1]],[[2,2,1,1],[2,1,0,2],[2,3,1,1],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,0,2],[1,3,2,1]],[[1,2,1,1],[2,1,0,2],[2,3,0,2],[2,2,2,1]],[[1,2,1,1],[2,1,0,2],[3,3,0,2],[1,2,2,1]],[[1,2,1,1],[3,1,0,2],[2,3,0,2],[1,2,2,1]],[[1,3,1,1],[2,1,0,2],[2,3,0,2],[1,2,2,1]],[[2,2,1,1],[2,1,0,2],[2,3,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[3,0,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,0,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,0,2,2],[2,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,0,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,3,0],[2,0,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,3,0],[2,0,2,2],[1,2,2,2]],[[1,0,3,1],[1,3,3,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,2],[1,3,3,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[1,4,3,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[1,3,4,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[3,0,3,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,0,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,0,3,1],[2,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,0,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,3,0],[2,0,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,3,0],[2,0,3,1],[1,2,2,2]],[[1,0,2,1],[1,3,3,0],[2,0,3,3],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,0,3,2],[0,2,3,1]],[[1,0,2,1],[1,3,3,0],[2,0,3,2],[0,2,2,2]],[[1,0,3,1],[1,3,3,0],[2,0,3,2],[1,2,1,1]],[[1,0,2,2],[1,3,3,0],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[1,4,3,0],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,4,0],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,0],[2,0,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,0],[2,0,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,3,0],[2,0,3,2],[1,2,1,2]],[[1,0,3,1],[1,3,3,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,2],[1,3,3,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[1,4,3,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,4,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,0],[3,0,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,0,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,0,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,0,3,2],[2,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,0,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,3,0],[2,0,3,2],[1,2,3,0]],[[1,0,2,1],[1,3,3,0],[2,1,2,3],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,1,2,2],[0,3,2,1]],[[1,0,2,1],[1,3,3,0],[2,1,2,2],[0,2,3,1]],[[1,0,2,1],[1,3,3,0],[2,1,2,2],[0,2,2,2]],[[1,0,3,1],[1,3,3,0],[2,1,3,1],[0,2,2,1]],[[1,0,2,2],[1,3,3,0],[2,1,3,1],[0,2,2,1]],[[1,0,2,1],[1,4,3,0],[2,1,3,1],[0,2,2,1]],[[1,0,2,1],[1,3,4,0],[2,1,3,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,1,4,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,1,3,1],[0,3,2,1]],[[1,0,2,1],[1,3,3,0],[2,1,3,1],[0,2,3,1]],[[1,0,2,1],[1,3,3,0],[2,1,3,1],[0,2,2,2]],[[1,0,3,1],[1,3,3,0],[2,1,3,2],[0,2,1,1]],[[1,0,2,2],[1,3,3,0],[2,1,3,2],[0,2,1,1]],[[1,0,2,1],[1,4,3,0],[2,1,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,4,0],[2,1,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,0],[2,1,4,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,0],[2,1,3,3],[0,2,1,1]],[[1,0,2,1],[1,3,3,0],[2,1,3,2],[0,2,1,2]],[[1,0,3,1],[1,3,3,0],[2,1,3,2],[0,2,2,0]],[[1,0,2,2],[1,3,3,0],[2,1,3,2],[0,2,2,0]],[[1,0,2,1],[1,4,3,0],[2,1,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,4,0],[2,1,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,1,4,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,1,3,3],[0,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,1,3,2],[0,3,2,0]],[[1,0,2,1],[1,3,3,0],[2,1,3,2],[0,2,3,0]],[[1,0,2,1],[1,3,3,0],[3,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,0,3],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,0,2],[2,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,0,2],[1,3,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,0,2],[1,2,3,1]],[[1,0,2,1],[1,3,3,0],[2,2,0,2],[1,2,2,2]],[[1,0,2,1],[1,3,3,0],[3,2,1,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,1,1],[2,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,1,1],[1,3,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,1,1],[1,2,3,1]],[[1,0,2,1],[1,3,3,0],[2,2,1,1],[1,2,2,2]],[[1,0,2,1],[1,3,3,0],[3,2,1,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,2,1,2],[2,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,2,1,2],[1,3,2,0]],[[1,0,2,1],[1,3,3,0],[2,2,1,2],[1,2,3,0]],[[1,0,2,1],[1,3,3,0],[3,2,2,1],[1,2,1,1]],[[1,0,2,1],[1,3,3,0],[2,2,2,1],[2,2,1,1]],[[1,0,2,1],[1,3,3,0],[2,2,2,1],[1,3,1,1]],[[1,0,2,1],[1,3,3,0],[2,2,2,3],[0,1,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,2,2],[0,1,3,1]],[[1,0,2,1],[1,3,3,0],[2,2,2,2],[0,1,2,2]],[[1,0,2,1],[1,3,3,0],[2,2,2,3],[1,0,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,2,2],[1,0,3,1]],[[1,0,2,1],[1,3,3,0],[2,2,2,2],[1,0,2,2]],[[1,0,2,1],[1,3,3,0],[3,2,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,0],[2,2,2,2],[2,2,0,1]],[[1,0,2,1],[1,3,3,0],[2,2,2,2],[1,3,0,1]],[[1,0,2,1],[1,3,3,0],[3,2,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,0],[2,2,2,2],[2,2,1,0]],[[1,0,2,1],[1,3,3,0],[2,2,2,2],[1,3,1,0]],[[1,0,3,1],[1,3,3,0],[2,2,3,1],[0,1,2,1]],[[1,0,2,2],[1,3,3,0],[2,2,3,1],[0,1,2,1]],[[1,0,2,1],[1,4,3,0],[2,2,3,1],[0,1,2,1]],[[1,0,2,1],[1,3,4,0],[2,2,3,1],[0,1,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,4,1],[0,1,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,1],[0,1,3,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,1],[0,1,2,2]],[[1,0,3,1],[1,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,0,2,2],[1,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[1,4,3,0],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,4,0],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,3,0],[2,2,4,1],[0,2,1,1]],[[1,0,3,1],[1,3,3,0],[2,2,3,1],[1,0,2,1]],[[1,0,2,2],[1,3,3,0],[2,2,3,1],[1,0,2,1]],[[1,0,2,1],[1,4,3,0],[2,2,3,1],[1,0,2,1]],[[1,0,2,1],[1,3,4,0],[2,2,3,1],[1,0,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,4,1],[1,0,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,1],[1,0,3,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,1],[1,0,2,2]],[[1,0,3,1],[1,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,0,2,2],[1,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,0,2,1],[1,4,3,0],[2,2,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,4,0],[2,2,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,3,0],[2,2,4,1],[1,1,1,1]],[[1,2,1,1],[2,1,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,1,0,2],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[2,1,0,2],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[3,1,0,2],[2,2,3,2],[1,2,1,0]],[[1,3,1,1],[2,1,0,2],[2,2,3,2],[1,2,1,0]],[[2,2,1,1],[2,1,0,2],[2,2,3,2],[1,2,1,0]],[[1,2,1,1],[2,1,0,2],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[2,1,0,2],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[2,1,0,2],[3,2,3,2],[1,2,0,1]],[[1,0,3,1],[1,3,3,0],[2,2,3,2],[0,0,2,1]],[[1,0,2,2],[1,3,3,0],[2,2,3,2],[0,0,2,1]],[[1,0,2,1],[1,4,3,0],[2,2,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,4,0],[2,2,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,4,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,3],[0,0,2,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,2],[0,0,2,2]],[[1,0,3,1],[1,3,3,0],[2,2,3,2],[0,1,1,1]],[[1,0,2,2],[1,3,3,0],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[1,4,3,0],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,4,0],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,0],[2,2,4,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,3],[0,1,1,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,2],[0,1,1,2]],[[1,0,3,1],[1,3,3,0],[2,2,3,2],[0,1,2,0]],[[1,0,2,2],[1,3,3,0],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[1,4,3,0],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,4,0],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,0],[2,2,4,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,0],[2,2,3,3],[0,1,2,0]],[[1,0,2,1],[1,3,3,0],[2,2,3,2],[0,1,3,0]],[[1,0,3,1],[1,3,3,0],[2,2,3,2],[0,2,0,1]],[[1,0,2,2],[1,3,3,0],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[1,4,3,0],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,4,0],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,0],[2,2,4,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,3],[0,2,0,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,2],[0,2,0,2]],[[1,0,3,1],[1,3,3,0],[2,2,3,2],[0,2,1,0]],[[1,0,2,2],[1,3,3,0],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[1,4,3,0],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,4,0],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,0],[2,2,4,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,0],[2,2,3,3],[0,2,1,0]],[[1,2,1,1],[3,1,0,2],[2,2,3,2],[1,2,0,1]],[[1,3,1,1],[2,1,0,2],[2,2,3,2],[1,2,0,1]],[[2,2,1,1],[2,1,0,2],[2,2,3,2],[1,2,0,1]],[[1,0,3,1],[1,3,3,0],[2,2,3,2],[1,0,1,1]],[[1,0,2,2],[1,3,3,0],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[1,4,3,0],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,4,0],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,0],[2,2,4,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,3],[1,0,1,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,2],[1,0,1,2]],[[1,0,3,1],[1,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,0,2,2],[1,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[1,4,3,0],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,4,0],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,0],[2,2,4,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,0],[2,2,3,3],[1,0,2,0]],[[1,0,2,1],[1,3,3,0],[2,2,3,2],[1,0,3,0]],[[1,0,3,1],[1,3,3,0],[2,2,3,2],[1,1,0,1]],[[1,0,2,2],[1,3,3,0],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[1,4,3,0],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,4,0],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,0],[2,2,4,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,3],[1,1,0,1]],[[1,0,2,1],[1,3,3,0],[2,2,3,2],[1,1,0,2]],[[1,0,3,1],[1,3,3,0],[2,2,3,2],[1,1,1,0]],[[1,0,2,2],[1,3,3,0],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[1,4,3,0],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[1,3,4,0],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,0],[2,2,4,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,0],[2,2,3,3],[1,1,1,0]],[[1,2,1,1],[2,1,0,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,1,0,2],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[2,1,0,2],[2,2,3,3],[0,2,2,0]],[[1,2,1,1],[2,1,0,2],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[2,1,0,3],[2,2,3,2],[0,2,2,0]],[[1,2,1,2],[2,1,0,2],[2,2,3,2],[0,2,2,0]],[[1,2,1,1],[2,1,0,2],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[2,1,0,2],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[2,1,0,2],[2,2,4,2],[0,2,1,1]],[[1,2,1,1],[2,1,0,3],[2,2,3,2],[0,2,1,1]],[[1,2,1,2],[2,1,0,2],[2,2,3,2],[0,2,1,1]],[[1,2,1,1],[2,1,0,2],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[2,1,0,2],[2,2,3,1],[2,2,1,1]],[[1,2,1,1],[2,1,0,2],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[3,1,0,2],[2,2,3,1],[1,2,1,1]],[[1,3,1,1],[2,1,0,2],[2,2,3,1],[1,2,1,1]],[[2,2,1,1],[2,1,0,2],[2,2,3,1],[1,2,1,1]],[[1,2,1,1],[2,1,0,2],[2,2,3,1],[0,2,2,2]],[[1,2,1,1],[2,1,0,2],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[2,1,0,2],[2,2,3,1],[0,3,2,1]],[[1,2,1,1],[2,1,0,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[3,3,0,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,3,0,1],[2,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,3,0,1],[1,3,2,1]],[[1,0,3,1],[1,3,3,0],[2,3,0,2],[0,2,2,1]],[[1,0,2,2],[1,3,3,0],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,4,3,0],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,4,0],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[3,3,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,4,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,3,0,3],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,3,0,2],[0,3,2,1]],[[1,0,2,1],[1,3,3,0],[2,3,0,2],[0,2,3,1]],[[1,0,2,1],[1,3,3,0],[2,3,0,2],[0,2,2,2]],[[1,0,3,1],[1,3,3,0],[2,3,0,2],[1,1,2,1]],[[1,0,2,2],[1,3,3,0],[2,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,4,3,0],[2,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,4,0],[2,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,0],[3,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,0],[2,4,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,0],[2,3,0,2],[2,1,2,1]],[[1,0,2,1],[1,3,3,0],[3,3,0,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,3,0,2],[2,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,3,0,2],[1,3,2,0]],[[1,0,3,1],[1,3,3,0],[2,3,1,1],[0,2,2,1]],[[1,0,2,2],[1,3,3,0],[2,3,1,1],[0,2,2,1]],[[1,0,2,1],[1,4,3,0],[2,3,1,1],[0,2,2,1]],[[1,0,2,1],[1,3,4,0],[2,3,1,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[3,3,1,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,4,1,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,0],[2,3,1,1],[0,3,2,1]],[[1,0,2,1],[1,3,3,0],[2,3,1,1],[0,2,3,1]],[[1,0,2,1],[1,3,3,0],[2,3,1,1],[0,2,2,2]],[[1,0,3,1],[1,3,3,0],[2,3,1,1],[1,1,2,1]],[[1,0,2,2],[1,3,3,0],[2,3,1,1],[1,1,2,1]],[[1,0,2,1],[1,4,3,0],[2,3,1,1],[1,1,2,1]],[[1,0,2,1],[1,3,4,0],[2,3,1,1],[1,1,2,1]],[[1,0,2,1],[1,3,3,0],[3,3,1,1],[1,1,2,1]],[[1,0,2,1],[1,3,3,0],[2,4,1,1],[1,1,2,1]],[[1,0,2,1],[1,3,3,0],[2,3,1,1],[2,1,2,1]],[[1,0,3,1],[1,3,3,0],[2,3,1,2],[0,2,2,0]],[[1,0,2,2],[1,3,3,0],[2,3,1,2],[0,2,2,0]],[[1,0,2,1],[1,4,3,0],[2,3,1,2],[0,2,2,0]],[[1,0,2,1],[1,3,4,0],[2,3,1,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,0],[3,3,1,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,4,1,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,0],[2,3,1,2],[0,3,2,0]],[[1,0,2,1],[1,3,3,0],[2,3,1,2],[0,2,3,0]],[[1,0,3,1],[1,3,3,0],[2,3,1,2],[1,1,2,0]],[[1,0,2,2],[1,3,3,0],[2,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,4,3,0],[2,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,3,4,0],[2,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,0],[3,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,0],[2,4,1,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,0],[2,3,1,2],[2,1,2,0]],[[1,2,1,1],[2,1,0,2],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[2,1,0,2],[2,2,2,2],[1,3,2,0]],[[1,2,1,1],[2,1,0,2],[2,2,2,2],[2,2,2,0]],[[1,2,1,1],[2,1,0,2],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[3,1,0,2],[2,2,2,2],[1,2,2,0]],[[1,3,1,1],[2,1,0,2],[2,2,2,2],[1,2,2,0]],[[2,2,1,1],[2,1,0,2],[2,2,2,2],[1,2,2,0]],[[1,2,1,1],[2,1,0,2],[2,2,2,2],[0,2,2,2]],[[1,0,3,1],[1,3,3,0],[2,3,2,1],[0,1,2,1]],[[1,0,2,2],[1,3,3,0],[2,3,2,1],[0,1,2,1]],[[1,0,2,1],[1,4,3,0],[2,3,2,1],[0,1,2,1]],[[1,0,2,1],[1,3,4,0],[2,3,2,1],[0,1,2,1]],[[1,0,2,1],[1,3,3,0],[3,3,2,1],[0,1,2,1]],[[1,0,2,1],[1,3,3,0],[2,4,2,1],[0,1,2,1]],[[1,0,3,1],[1,3,3,0],[2,3,2,1],[0,2,1,1]],[[1,0,2,2],[1,3,3,0],[2,3,2,1],[0,2,1,1]],[[1,0,2,1],[1,4,3,0],[2,3,2,1],[0,2,1,1]],[[1,0,2,1],[1,3,4,0],[2,3,2,1],[0,2,1,1]],[[1,0,2,1],[1,3,3,0],[3,3,2,1],[0,2,1,1]],[[1,0,2,1],[1,3,3,0],[2,4,2,1],[0,2,1,1]],[[1,0,2,1],[1,3,3,0],[2,3,2,1],[0,3,1,1]],[[1,0,3,1],[1,3,3,0],[2,3,2,1],[1,0,2,1]],[[1,0,2,2],[1,3,3,0],[2,3,2,1],[1,0,2,1]],[[1,0,2,1],[1,4,3,0],[2,3,2,1],[1,0,2,1]],[[1,0,2,1],[1,3,4,0],[2,3,2,1],[1,0,2,1]],[[1,0,2,1],[1,3,3,0],[3,3,2,1],[1,0,2,1]],[[1,0,2,1],[1,3,3,0],[2,4,2,1],[1,0,2,1]],[[1,0,2,1],[1,3,3,0],[2,3,2,1],[2,0,2,1]],[[1,0,3,1],[1,3,3,0],[2,3,2,1],[1,1,1,1]],[[1,0,2,2],[1,3,3,0],[2,3,2,1],[1,1,1,1]],[[1,0,2,1],[1,4,3,0],[2,3,2,1],[1,1,1,1]],[[1,0,2,1],[1,3,4,0],[2,3,2,1],[1,1,1,1]],[[1,0,2,1],[1,3,3,0],[3,3,2,1],[1,1,1,1]],[[1,0,2,1],[1,3,3,0],[2,4,2,1],[1,1,1,1]],[[1,0,2,1],[1,3,3,0],[2,3,2,1],[2,1,1,1]],[[1,0,2,1],[1,4,3,0],[2,3,2,1],[1,2,0,1]],[[1,0,2,1],[1,3,3,0],[3,3,2,1],[1,2,0,1]],[[1,0,2,1],[1,3,3,0],[2,4,2,1],[1,2,0,1]],[[1,0,2,1],[1,3,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,1,1],[2,1,0,2],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[2,1,0,2],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[2,1,0,2],[2,2,2,3],[0,2,2,1]],[[1,2,1,1],[2,1,0,3],[2,2,2,2],[0,2,2,1]],[[1,2,1,2],[2,1,0,2],[2,2,2,2],[0,2,2,1]],[[1,2,1,1],[2,1,0,2],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[2,1,0,2],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[2,1,0,2],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[2,1,0,2],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[2,1,0,2],[3,2,2,1],[1,2,2,1]],[[1,0,3,1],[1,3,3,0],[2,3,2,2],[0,1,1,1]],[[1,0,2,2],[1,3,3,0],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,4,3,0],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,4,0],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,0],[3,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,0],[2,4,2,2],[0,1,1,1]],[[1,0,3,1],[1,3,3,0],[2,3,2,2],[0,1,2,0]],[[1,0,2,2],[1,3,3,0],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,4,3,0],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,4,0],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,0],[3,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,0],[2,4,2,2],[0,1,2,0]],[[1,0,3,1],[1,3,3,0],[2,3,2,2],[0,2,0,1]],[[1,0,2,2],[1,3,3,0],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,4,3,0],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,4,0],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,0],[3,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,0],[2,4,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,0],[2,3,2,2],[0,3,0,1]],[[1,0,3,1],[1,3,3,0],[2,3,2,2],[0,2,1,0]],[[1,0,2,2],[1,3,3,0],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,4,3,0],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,4,0],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,0],[3,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,0],[2,4,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,0],[2,3,2,2],[0,3,1,0]],[[1,2,1,1],[3,1,0,2],[2,2,2,1],[1,2,2,1]],[[1,3,1,1],[2,1,0,2],[2,2,2,1],[1,2,2,1]],[[2,2,1,1],[2,1,0,2],[2,2,2,1],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[2,1,0,2],[2,2,1,2],[1,2,3,1]],[[1,2,1,1],[2,1,0,2],[2,2,1,2],[1,3,2,1]],[[1,2,1,1],[2,1,0,2],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[2,1,0,2],[2,2,1,3],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[3,2,1,2],[1,2,2,1]],[[1,2,1,1],[2,1,0,3],[2,2,1,2],[1,2,2,1]],[[1,0,3,1],[1,3,3,0],[2,3,2,2],[1,0,1,1]],[[1,0,2,2],[1,3,3,0],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[1,4,3,0],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,4,0],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,0],[3,3,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,0],[2,4,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,0],[2,3,2,2],[2,0,1,1]],[[1,0,3,1],[1,3,3,0],[2,3,2,2],[1,0,2,0]],[[1,0,2,2],[1,3,3,0],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[1,4,3,0],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,4,0],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,0],[3,3,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,0],[2,4,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,0],[2,3,2,2],[2,0,2,0]],[[1,0,3,1],[1,3,3,0],[2,3,2,2],[1,1,0,1]],[[1,0,2,2],[1,3,3,0],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[1,4,3,0],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,4,0],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,0],[3,3,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,0],[2,4,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,0],[2,3,2,2],[2,1,0,1]],[[1,0,3,1],[1,3,3,0],[2,3,2,2],[1,1,1,0]],[[1,0,2,2],[1,3,3,0],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[1,4,3,0],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[1,3,4,0],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,0],[3,3,2,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,0],[2,4,2,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,0],[2,3,2,2],[2,1,1,0]],[[1,2,1,1],[3,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,2,1,2],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,3,1,1],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[2,2,1,1],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,0,3,1],[1,3,3,0],[2,3,2,2],[1,2,0,0]],[[1,0,2,2],[1,3,3,0],[2,3,2,2],[1,2,0,0]],[[1,0,2,1],[1,4,3,0],[2,3,2,2],[1,2,0,0]],[[1,0,2,1],[1,3,4,0],[2,3,2,2],[1,2,0,0]],[[1,0,2,1],[1,3,3,0],[3,3,2,2],[1,2,0,0]],[[1,0,2,1],[1,3,3,0],[2,4,2,2],[1,2,0,0]],[[1,0,2,1],[1,3,3,0],[2,3,2,2],[2,2,0,0]],[[1,2,1,1],[2,1,0,2],[2,1,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,0,2],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,0,2],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[2,1,0,2],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[2,1,0,2],[2,1,4,2],[1,2,2,0]],[[1,2,1,1],[2,1,0,2],[3,1,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,0,3],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[3,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,2,1,2],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,3,1,1],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[2,2,1,1],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,0,2],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[2,1,0,2],[2,1,3,3],[1,2,1,1]],[[1,2,1,1],[2,1,0,2],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[2,1,0,3],[2,1,3,2],[1,2,1,1]],[[1,2,1,2],[2,1,0,2],[2,1,3,2],[1,2,1,1]],[[1,2,1,1],[2,1,0,2],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,0,2],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,0,2],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,0,2],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,0,2],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[3,1,3,1],[1,2,2,1]],[[1,2,1,1],[3,1,0,2],[2,1,3,1],[1,2,2,1]],[[1,3,1,1],[2,1,0,2],[2,1,3,1],[1,2,2,1]],[[2,2,1,1],[2,1,0,2],[2,1,3,1],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[2,1,0,2],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[2,1,0,2],[2,1,2,2],[1,3,2,1]],[[1,0,3,1],[1,3,3,0],[2,3,3,1],[0,0,2,1]],[[1,0,2,2],[1,3,3,0],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,4,3,0],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,4,0],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,3,0],[2,3,4,1],[0,0,2,1]],[[1,2,1,1],[2,1,0,2],[2,1,2,2],[2,2,2,1]],[[1,2,1,1],[2,1,0,2],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[3,1,2,2],[1,2,2,1]],[[1,2,1,1],[2,1,0,3],[2,1,2,2],[1,2,2,1]],[[1,2,1,1],[3,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,2,1,2],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,3,1,1],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[2,2,1,1],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,1,0,2],[1,3,3,2],[2,2,1,0]],[[1,2,1,1],[2,1,0,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[2,1,0,2],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[2,1,0,2],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[2,1,0,3],[1,3,3,2],[1,2,1,0]],[[1,2,1,2],[2,1,0,2],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[2,1,0,2],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[2,1,0,2],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[2,1,0,2],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[2,1,0,2],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[2,1,0,2],[1,3,4,2],[1,2,0,1]],[[1,2,1,1],[2,1,0,2],[1,4,3,2],[1,2,0,1]],[[1,2,1,1],[2,1,0,3],[1,3,3,2],[1,2,0,1]],[[1,2,1,2],[2,1,0,2],[1,3,3,2],[1,2,0,1]],[[1,0,3,1],[1,3,3,0],[2,3,3,2],[0,0,1,1]],[[1,0,2,2],[1,3,3,0],[2,3,3,2],[0,0,1,1]],[[1,0,2,1],[1,4,3,0],[2,3,3,2],[0,0,1,1]],[[1,0,2,1],[1,3,4,0],[2,3,3,2],[0,0,1,1]],[[1,0,2,1],[1,3,3,0],[2,3,4,2],[0,0,1,1]],[[1,0,2,1],[1,3,3,0],[2,3,3,3],[0,0,1,1]],[[1,0,2,1],[1,3,3,0],[2,3,3,2],[0,0,1,2]],[[1,0,3,1],[1,3,3,0],[2,3,3,2],[0,0,2,0]],[[1,0,2,2],[1,3,3,0],[2,3,3,2],[0,0,2,0]],[[1,0,2,1],[1,4,3,0],[2,3,3,2],[0,0,2,0]],[[1,0,2,1],[1,3,4,0],[2,3,3,2],[0,0,2,0]],[[1,0,2,1],[1,3,3,0],[2,3,4,2],[0,0,2,0]],[[1,0,2,1],[1,3,3,0],[2,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,1,0,2],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[2,1,0,2],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[2,1,0,2],[1,3,4,2],[1,1,2,0]],[[1,2,1,1],[2,1,0,2],[1,4,3,2],[1,1,2,0]],[[1,0,3,1],[1,3,3,0],[2,3,3,2],[0,2,0,0]],[[1,0,2,2],[1,3,3,0],[2,3,3,2],[0,2,0,0]],[[1,0,2,1],[1,4,3,0],[2,3,3,2],[0,2,0,0]],[[1,0,2,1],[1,3,4,0],[2,3,3,2],[0,2,0,0]],[[1,0,2,1],[1,3,3,0],[3,3,3,2],[0,2,0,0]],[[1,0,2,1],[1,3,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,1,1],[2,1,0,3],[1,3,3,2],[1,1,2,0]],[[1,2,1,2],[2,1,0,2],[1,3,3,2],[1,1,2,0]],[[1,2,1,1],[2,1,0,2],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[2,1,0,2],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[2,1,0,2],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[2,1,0,2],[1,4,3,2],[1,1,1,1]],[[1,2,1,1],[2,1,0,3],[1,3,3,2],[1,1,1,1]],[[1,2,1,2],[2,1,0,2],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[2,1,0,2],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[2,1,0,2],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[2,1,0,2],[1,3,4,1],[1,2,1,1]],[[1,2,1,1],[2,1,0,2],[1,4,3,1],[1,2,1,1]],[[1,2,1,1],[2,1,0,2],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[2,1,0,2],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[2,1,0,2],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[2,1,0,2],[1,4,3,1],[1,1,2,1]],[[1,2,1,1],[2,1,0,2],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[2,1,0,2],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[2,1,0,2],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[2,1,0,2],[1,4,2,2],[1,2,2,0]],[[1,2,1,1],[2,1,0,2],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[2,1,0,2],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[2,1,0,2],[1,3,2,3],[1,1,2,1]],[[1,2,1,1],[2,1,0,3],[1,3,2,2],[1,1,2,1]],[[1,2,1,2],[2,1,0,2],[1,3,2,2],[1,1,2,1]],[[1,2,1,1],[2,1,0,2],[1,3,2,1],[1,2,2,2]],[[1,2,1,1],[2,1,0,2],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[2,1,0,2],[1,3,2,1],[1,3,2,1]],[[1,0,3,1],[1,3,3,0],[2,3,3,2],[1,1,0,0]],[[1,0,2,2],[1,3,3,0],[2,3,3,2],[1,1,0,0]],[[1,0,2,1],[1,4,3,0],[2,3,3,2],[1,1,0,0]],[[1,0,2,1],[1,3,4,0],[2,3,3,2],[1,1,0,0]],[[1,0,2,1],[1,3,3,0],[3,3,3,2],[1,1,0,0]],[[1,0,2,1],[1,3,3,0],[2,4,3,2],[1,1,0,0]],[[1,0,2,1],[1,3,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,1,1],[2,1,0,2],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[2,1,0,2],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[1,3,1,2],[1,2,2,2]],[[1,2,1,1],[2,1,0,2],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[2,1,0,2],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[2,1,0,2],[1,3,1,2],[2,2,2,1]],[[1,2,1,1],[2,1,0,2],[1,3,1,3],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[1,4,1,2],[1,2,2,1]],[[1,2,1,1],[2,1,0,3],[1,3,1,2],[1,2,2,1]],[[1,2,1,2],[2,1,0,2],[1,3,1,2],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[2,1,0,2],[1,2,3,2],[1,3,2,0]],[[1,2,1,1],[2,1,0,2],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[2,1,0,2],[1,2,3,3],[1,2,2,0]],[[1,2,1,1],[2,1,0,2],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[2,1,0,3],[1,2,3,2],[1,2,2,0]],[[1,2,1,2],[2,1,0,2],[1,2,3,2],[1,2,2,0]],[[1,2,1,1],[2,1,0,2],[1,2,3,2],[1,2,1,2]],[[1,2,1,1],[2,1,0,2],[1,2,3,3],[1,2,1,1]],[[1,2,1,1],[2,1,0,2],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[2,1,0,3],[1,2,3,2],[1,2,1,1]],[[1,2,1,2],[2,1,0,2],[1,2,3,2],[1,2,1,1]],[[1,2,1,1],[2,1,0,2],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[2,1,0,2],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[2,1,0,2],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[2,1,0,2],[1,2,3,1],[2,2,2,1]],[[1,2,1,1],[2,1,0,2],[1,2,4,1],[1,2,2,1]],[[1,2,1,1],[2,1,0,2],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[2,1,0,2],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[2,1,0,2],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[2,1,0,2],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[2,1,0,2],[1,2,2,3],[1,2,2,1]],[[1,2,1,1],[2,1,0,3],[1,2,2,2],[1,2,2,1]],[[1,2,1,2],[2,1,0,2],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[0,0,3,3],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[0,0,3,2],[1,2,3,1]],[[1,0,2,1],[1,3,3,1],[0,0,3,2],[1,2,2,2]],[[1,0,2,1],[1,3,3,1],[0,1,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[0,1,2,2],[1,3,2,1]],[[1,0,2,1],[1,3,3,1],[0,1,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,3,1],[0,1,2,2],[1,2,2,2]],[[1,0,2,1],[1,3,4,1],[0,1,3,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[0,1,4,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[0,1,3,1],[1,3,2,1]],[[1,0,2,1],[1,3,3,1],[0,1,3,1],[1,2,3,1]],[[1,0,2,1],[1,3,3,1],[0,1,3,1],[1,2,2,2]],[[1,0,2,1],[1,3,4,1],[0,1,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[0,1,4,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[0,1,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[0,1,3,2],[1,2,1,2]],[[1,0,2,1],[1,3,4,1],[0,1,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[0,1,4,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[0,1,3,3],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[0,1,3,2],[1,3,2,0]],[[1,0,2,1],[1,3,3,1],[0,1,3,2],[1,2,3,0]],[[1,0,2,1],[1,3,3,1],[0,2,2,3],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[0,2,2,2],[1,1,3,1]],[[1,0,2,1],[1,3,3,1],[0,2,2,2],[1,1,2,2]],[[1,0,2,1],[1,3,4,1],[0,2,3,1],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[0,2,4,1],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[0,2,3,1],[1,1,3,1]],[[1,0,2,1],[1,3,3,1],[0,2,3,1],[1,1,2,2]],[[1,0,2,1],[1,3,4,1],[0,2,3,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[0,2,4,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[0,2,3,3],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[0,2,3,2],[1,0,2,2]],[[1,0,2,1],[1,3,4,1],[0,2,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[0,2,4,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[0,2,3,3],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[0,2,3,2],[1,1,1,2]],[[1,0,2,1],[1,3,4,1],[0,2,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[0,2,4,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[0,2,3,3],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[0,2,3,2],[1,1,3,0]],[[1,0,2,1],[1,3,4,1],[0,2,3,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[0,2,4,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[0,2,3,3],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[0,2,3,2],[1,2,0,2]],[[1,0,2,1],[1,3,4,1],[0,2,3,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[0,2,4,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[0,2,3,3],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[0,3,2,3],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[0,3,2,2],[0,1,3,1]],[[1,0,2,1],[1,3,3,1],[0,3,2,2],[0,1,2,2]],[[1,0,2,1],[1,3,4,1],[0,3,3,1],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[0,3,4,1],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[0,3,3,1],[0,1,3,1]],[[1,0,2,1],[1,3,3,1],[0,3,3,1],[0,1,2,2]],[[1,0,2,1],[1,3,4,1],[0,3,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,1],[0,3,4,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,1],[0,3,3,3],[0,0,2,1]],[[1,0,2,1],[1,3,3,1],[0,3,3,2],[0,0,2,2]],[[1,0,2,1],[1,3,4,1],[0,3,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,1],[0,3,4,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,1],[0,3,3,3],[0,1,1,1]],[[1,0,2,1],[1,3,3,1],[0,3,3,2],[0,1,1,2]],[[1,0,2,1],[1,3,4,1],[0,3,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[0,3,4,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[0,3,3,3],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[0,3,3,2],[0,1,3,0]],[[1,0,2,1],[1,3,4,1],[0,3,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[0,3,4,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[0,3,3,3],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[0,3,3,2],[0,2,0,2]],[[1,0,2,1],[1,3,4,1],[0,3,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[0,3,4,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,0,3,3],[2,3,3,1],[1,1,0,0]],[[1,2,1,1],[2,0,4,2],[2,3,3,1],[1,1,0,0]],[[1,2,1,2],[2,0,3,2],[2,3,3,1],[1,1,0,0]],[[1,0,2,1],[1,3,3,1],[1,0,3,3],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,0,3,2],[0,2,3,1]],[[1,0,2,1],[1,3,3,1],[1,0,3,2],[0,2,2,2]],[[1,0,3,1],[1,3,3,1],[1,1,1,2],[1,2,2,1]],[[1,0,2,2],[1,3,3,1],[1,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,4,3,1],[1,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,4,1],[1,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,1,2,3],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,1,2,2],[0,2,3,1]],[[1,0,2,1],[1,3,3,1],[1,1,2,2],[0,2,2,2]],[[1,0,3,1],[1,3,3,1],[1,1,2,2],[1,2,1,1]],[[1,0,2,2],[1,3,3,1],[1,1,2,2],[1,2,1,1]],[[1,0,2,1],[1,4,3,1],[1,1,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,4,1],[1,1,2,2],[1,2,1,1]],[[1,0,3,1],[1,3,3,1],[1,1,2,2],[1,2,2,0]],[[1,0,2,2],[1,3,3,1],[1,1,2,2],[1,2,2,0]],[[1,0,2,1],[1,4,3,1],[1,1,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,4,1],[1,1,2,2],[1,2,2,0]],[[1,0,3,1],[1,3,3,1],[1,1,3,0],[1,2,2,1]],[[1,0,2,2],[1,3,3,1],[1,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,4,3,1],[1,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,4,1],[1,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,1,4,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,1,3,0],[2,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,1,3,0],[1,3,2,1]],[[1,0,2,1],[1,3,3,1],[1,1,3,0],[1,2,3,1]],[[1,0,2,1],[1,3,3,1],[1,1,3,0],[1,2,2,2]],[[1,0,2,1],[1,3,4,1],[1,1,3,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,1,4,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,1,3,1],[0,2,3,1]],[[1,0,2,1],[1,3,3,1],[1,1,3,1],[0,2,2,2]],[[1,0,3,1],[1,3,3,1],[1,1,3,1],[1,2,1,1]],[[1,0,2,2],[1,3,3,1],[1,1,3,1],[1,2,1,1]],[[1,0,2,1],[1,4,3,1],[1,1,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,4,1],[1,1,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[1,1,4,1],[1,2,1,1]],[[1,0,3,1],[1,3,3,1],[1,1,3,1],[1,2,2,0]],[[1,0,2,2],[1,3,3,1],[1,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,4,3,1],[1,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,4,1],[1,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,1,4,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,1,3,1],[2,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,1,3,1],[1,3,2,0]],[[1,0,2,1],[1,3,3,1],[1,1,3,1],[1,2,3,0]],[[1,0,2,1],[1,3,4,1],[1,1,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,1],[1,1,4,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,1],[1,1,3,3],[0,2,1,1]],[[1,0,2,1],[1,3,3,1],[1,1,3,2],[0,2,1,2]],[[1,0,2,1],[1,3,4,1],[1,1,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,1,4,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,1,3,3],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,0,3,1],[1,3,3,1],[1,2,0,2],[1,2,2,1]],[[1,0,2,2],[1,3,3,1],[1,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,4,3,1],[1,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,4,1],[1,2,0,2],[1,2,2,1]],[[1,0,3,1],[1,3,3,1],[1,2,1,2],[1,1,2,1]],[[1,0,2,2],[1,3,3,1],[1,2,1,2],[1,1,2,1]],[[1,0,2,1],[1,4,3,1],[1,2,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,4,1],[1,2,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[1,2,2,3],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[1,2,2,2],[0,1,3,1]],[[1,0,2,1],[1,3,3,1],[1,2,2,2],[0,1,2,2]],[[1,0,3,1],[1,3,3,1],[1,2,2,2],[1,1,1,1]],[[1,0,2,2],[1,3,3,1],[1,2,2,2],[1,1,1,1]],[[1,0,2,1],[1,4,3,1],[1,2,2,2],[1,1,1,1]],[[1,0,2,1],[1,3,4,1],[1,2,2,2],[1,1,1,1]],[[1,0,3,1],[1,3,3,1],[1,2,2,2],[1,1,2,0]],[[1,0,2,2],[1,3,3,1],[1,2,2,2],[1,1,2,0]],[[1,0,2,1],[1,4,3,1],[1,2,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,4,1],[1,2,2,2],[1,1,2,0]],[[1,0,3,1],[1,3,3,1],[1,2,2,2],[1,2,0,1]],[[1,0,2,2],[1,3,3,1],[1,2,2,2],[1,2,0,1]],[[1,0,2,1],[1,4,3,1],[1,2,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,4,1],[1,2,2,2],[1,2,0,1]],[[1,0,3,1],[1,3,3,1],[1,2,2,2],[1,2,1,0]],[[1,0,2,2],[1,3,3,1],[1,2,2,2],[1,2,1,0]],[[1,0,2,1],[1,4,3,1],[1,2,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,4,1],[1,2,2,2],[1,2,1,0]],[[1,0,3,1],[1,3,3,1],[1,2,3,0],[1,1,2,1]],[[1,0,2,2],[1,3,3,1],[1,2,3,0],[1,1,2,1]],[[1,0,2,1],[1,4,3,1],[1,2,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,4,1],[1,2,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[1,2,4,0],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,0],[1,1,3,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,0],[1,1,2,2]],[[1,0,3,1],[1,3,3,1],[1,2,3,0],[1,2,1,1]],[[1,0,2,2],[1,3,3,1],[1,2,3,0],[1,2,1,1]],[[1,0,2,1],[1,4,3,1],[1,2,3,0],[1,2,1,1]],[[1,0,2,1],[1,3,4,1],[1,2,3,0],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[1,2,4,0],[1,2,1,1]],[[1,0,2,1],[1,3,4,1],[1,2,3,1],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[1,2,4,1],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,1],[0,1,3,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,1],[0,1,2,2]],[[1,0,3,1],[1,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,0,2,2],[1,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,0,2,1],[1,4,3,1],[1,2,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,4,1],[1,2,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[1,2,4,1],[1,1,1,1]],[[1,0,3,1],[1,3,3,1],[1,2,3,1],[1,1,2,0]],[[1,0,2,2],[1,3,3,1],[1,2,3,1],[1,1,2,0]],[[1,0,2,1],[1,4,3,1],[1,2,3,1],[1,1,2,0]],[[1,0,2,1],[1,3,4,1],[1,2,3,1],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[1,2,4,1],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[1,2,3,1],[1,1,3,0]],[[1,0,3,1],[1,3,3,1],[1,2,3,1],[1,2,0,1]],[[1,0,2,2],[1,3,3,1],[1,2,3,1],[1,2,0,1]],[[1,0,2,1],[1,4,3,1],[1,2,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,4,1],[1,2,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[1,2,4,1],[1,2,0,1]],[[1,0,3,1],[1,3,3,1],[1,2,3,1],[1,2,1,0]],[[1,0,2,2],[1,3,3,1],[1,2,3,1],[1,2,1,0]],[[1,0,2,1],[1,4,3,1],[1,2,3,1],[1,2,1,0]],[[1,0,2,1],[1,3,4,1],[1,2,3,1],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,2,4,1],[1,2,1,0]],[[1,2,1,1],[2,0,3,3],[2,3,3,1],[0,2,0,0]],[[1,0,2,1],[1,3,4,1],[1,2,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,1],[1,2,4,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,3],[0,0,2,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,2],[0,0,2,2]],[[1,0,2,1],[1,3,4,1],[1,2,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,1],[1,2,4,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,3],[0,1,1,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,2],[0,1,1,2]],[[1,0,2,1],[1,3,4,1],[1,2,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[1,2,4,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[1,2,3,3],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[1,2,3,2],[0,1,3,0]],[[1,0,2,1],[1,3,4,1],[1,2,3,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[1,2,4,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,3],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,2],[0,2,0,2]],[[1,0,2,1],[1,3,4,1],[1,2,3,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,2,4,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[2,0,4,2],[2,3,3,1],[0,2,0,0]],[[1,2,1,2],[2,0,3,2],[2,3,3,1],[0,2,0,0]],[[1,0,2,1],[1,3,4,1],[1,2,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,1],[1,2,4,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,3],[1,0,1,1]],[[1,0,2,1],[1,3,3,1],[1,2,3,2],[1,0,1,2]],[[1,0,2,1],[1,3,4,1],[1,2,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[1,2,4,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[1,2,3,3],[1,0,2,0]],[[1,0,3,1],[1,3,3,1],[1,3,0,1],[1,2,2,1]],[[1,0,2,2],[1,3,3,1],[1,3,0,1],[1,2,2,1]],[[1,0,2,1],[1,4,3,1],[1,3,0,1],[1,2,2,1]],[[1,0,2,1],[1,3,4,1],[1,3,0,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,4,0,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,3,0,1],[2,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,3,0,1],[1,3,2,1]],[[1,0,2,1],[1,3,3,1],[1,3,0,1],[1,2,3,1]],[[1,0,2,1],[1,3,3,1],[1,3,0,1],[1,2,2,2]],[[1,0,3,1],[1,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,0,2,2],[1,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,4,3,1],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,4,1],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[1,4,0,2],[1,1,2,1]],[[1,0,3,1],[1,3,3,1],[1,3,0,2],[1,2,1,1]],[[1,0,2,2],[1,3,3,1],[1,3,0,2],[1,2,1,1]],[[1,0,2,1],[1,4,3,1],[1,3,0,2],[1,2,1,1]],[[1,0,2,1],[1,3,4,1],[1,3,0,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[1,4,0,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[1,3,0,2],[2,2,1,1]],[[1,0,2,1],[1,3,3,1],[1,3,0,2],[1,3,1,1]],[[1,0,3,1],[1,3,3,1],[1,3,0,2],[1,2,2,0]],[[1,0,2,2],[1,3,3,1],[1,3,0,2],[1,2,2,0]],[[1,0,2,1],[1,4,3,1],[1,3,0,2],[1,2,2,0]],[[1,0,2,1],[1,3,4,1],[1,3,0,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,4,0,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,3,0,2],[2,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,3,0,2],[1,3,2,0]],[[1,0,2,1],[1,3,3,1],[1,3,0,2],[1,2,3,0]],[[1,0,3,1],[1,3,3,1],[1,3,1,0],[1,2,2,1]],[[1,0,2,2],[1,3,3,1],[1,3,1,0],[1,2,2,1]],[[1,0,2,1],[1,4,3,1],[1,3,1,0],[1,2,2,1]],[[1,0,2,1],[1,3,4,1],[1,3,1,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,4,1,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,3,1,0],[2,2,2,1]],[[1,0,2,1],[1,3,3,1],[1,3,1,0],[1,3,2,1]],[[1,0,2,1],[1,3,3,1],[1,3,1,0],[1,2,3,1]],[[1,0,2,1],[1,3,3,1],[1,3,1,0],[1,2,2,2]],[[1,0,3,1],[1,3,3,1],[1,3,1,1],[1,2,2,0]],[[1,0,2,2],[1,3,3,1],[1,3,1,1],[1,2,2,0]],[[1,0,2,1],[1,4,3,1],[1,3,1,1],[1,2,2,0]],[[1,0,2,1],[1,3,4,1],[1,3,1,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,4,1,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,3,1,1],[2,2,2,0]],[[1,0,2,1],[1,3,3,1],[1,3,1,1],[1,3,2,0]],[[1,0,2,1],[1,3,3,1],[1,3,1,1],[1,2,3,0]],[[1,0,3,1],[1,3,3,1],[1,3,1,2],[1,1,1,1]],[[1,0,2,2],[1,3,3,1],[1,3,1,2],[1,1,1,1]],[[1,0,2,1],[1,4,3,1],[1,3,1,2],[1,1,1,1]],[[1,0,2,1],[1,3,4,1],[1,3,1,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[1,4,1,2],[1,1,1,1]],[[1,0,3,1],[1,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,0,2,2],[1,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,4,3,1],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,3,4,1],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,0,3,1],[1,3,3,1],[1,3,1,2],[1,2,0,1]],[[1,0,2,2],[1,3,3,1],[1,3,1,2],[1,2,0,1]],[[1,0,2,1],[1,4,3,1],[1,3,1,2],[1,2,0,1]],[[1,0,2,1],[1,3,4,1],[1,3,1,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[1,4,1,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[1,3,1,2],[2,2,0,1]],[[1,0,2,1],[1,3,3,1],[1,3,1,2],[1,3,0,1]],[[1,0,3,1],[1,3,3,1],[1,3,1,2],[1,2,1,0]],[[1,0,2,2],[1,3,3,1],[1,3,1,2],[1,2,1,0]],[[1,0,2,1],[1,4,3,1],[1,3,1,2],[1,2,1,0]],[[1,0,2,1],[1,3,4,1],[1,3,1,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,4,1,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,3,1,2],[2,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,3,1,2],[1,3,1,0]],[[1,0,3,1],[1,3,3,1],[1,3,2,0],[1,1,2,1]],[[1,0,2,2],[1,3,3,1],[1,3,2,0],[1,1,2,1]],[[1,0,2,1],[1,4,3,1],[1,3,2,0],[1,1,2,1]],[[1,0,2,1],[1,3,4,1],[1,3,2,0],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[1,4,2,0],[1,1,2,1]],[[1,0,3,1],[1,3,3,1],[1,3,2,0],[1,2,1,1]],[[1,0,2,2],[1,3,3,1],[1,3,2,0],[1,2,1,1]],[[1,0,2,1],[1,4,3,1],[1,3,2,0],[1,2,1,1]],[[1,0,2,1],[1,3,4,1],[1,3,2,0],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[1,4,2,0],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[1,3,2,0],[2,2,1,1]],[[1,0,2,1],[1,3,3,1],[1,3,2,0],[1,3,1,1]],[[1,0,3,1],[1,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,0,2,2],[1,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,0,2,1],[1,4,3,1],[1,3,2,1],[1,1,1,1]],[[1,0,2,1],[1,3,4,1],[1,3,2,1],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[1,4,2,1],[1,1,1,1]],[[1,0,3,1],[1,3,3,1],[1,3,2,1],[1,1,2,0]],[[1,0,2,2],[1,3,3,1],[1,3,2,1],[1,1,2,0]],[[1,0,2,1],[1,4,3,1],[1,3,2,1],[1,1,2,0]],[[1,0,2,1],[1,3,4,1],[1,3,2,1],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[1,4,2,1],[1,1,2,0]],[[1,0,3,1],[1,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,0,2,2],[1,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,0,2,1],[1,4,3,1],[1,3,2,1],[1,2,0,1]],[[1,0,2,1],[1,3,4,1],[1,3,2,1],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[1,4,2,1],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[1,3,2,1],[2,2,0,1]],[[1,0,2,1],[1,3,3,1],[1,3,2,1],[1,3,0,1]],[[1,0,3,1],[1,3,3,1],[1,3,2,1],[1,2,1,0]],[[1,0,2,2],[1,3,3,1],[1,3,2,1],[1,2,1,0]],[[1,0,2,1],[1,4,3,1],[1,3,2,1],[1,2,1,0]],[[1,0,2,1],[1,3,4,1],[1,3,2,1],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,4,2,1],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,3,2,1],[2,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,3,2,1],[1,3,1,0]],[[1,0,3,1],[1,3,3,1],[1,3,3,0],[1,1,2,0]],[[1,0,2,2],[1,3,3,1],[1,3,3,0],[1,1,2,0]],[[1,0,2,1],[1,4,3,1],[1,3,3,0],[1,1,2,0]],[[1,0,2,1],[1,3,4,1],[1,3,3,0],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[1,4,3,0],[1,1,2,0]],[[1,0,3,1],[1,3,3,1],[1,3,3,0],[1,2,1,0]],[[1,0,2,2],[1,3,3,1],[1,3,3,0],[1,2,1,0]],[[1,0,2,1],[1,4,3,1],[1,3,3,0],[1,2,1,0]],[[1,0,2,1],[1,3,4,1],[1,3,3,0],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,4,3,0],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,3,3,0],[2,2,1,0]],[[1,0,2,1],[1,3,3,1],[1,3,3,0],[1,3,1,0]],[[1,0,3,1],[1,3,3,1],[1,3,3,1],[1,2,0,0]],[[1,0,2,2],[1,3,3,1],[1,3,3,1],[1,2,0,0]],[[1,0,2,1],[1,4,3,1],[1,3,3,1],[1,2,0,0]],[[1,0,2,1],[1,3,4,1],[1,3,3,1],[1,2,0,0]],[[1,0,2,1],[1,3,3,1],[1,4,3,1],[1,2,0,0]],[[1,2,1,1],[2,0,3,3],[2,3,2,1],[1,2,0,0]],[[1,2,1,1],[2,0,4,2],[2,3,2,1],[1,2,0,0]],[[1,2,1,2],[2,0,3,2],[2,3,2,1],[1,2,0,0]],[[1,2,1,1],[2,0,3,3],[2,3,2,1],[1,1,1,0]],[[1,2,1,1],[2,0,4,2],[2,3,2,1],[1,1,1,0]],[[1,2,1,2],[2,0,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,3],[2,3,2,1],[1,1,0,1]],[[1,0,2,1],[1,3,4,1],[1,3,3,2],[0,0,1,1]],[[1,0,2,1],[1,3,3,1],[1,3,4,2],[0,0,1,1]],[[1,0,2,1],[1,3,3,1],[1,3,3,3],[0,0,1,1]],[[1,0,2,1],[1,3,3,1],[1,3,3,2],[0,0,1,2]],[[1,0,2,1],[1,3,4,1],[1,3,3,2],[0,0,2,0]],[[1,0,2,1],[1,3,3,1],[1,3,4,2],[0,0,2,0]],[[1,0,2,1],[1,3,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[2,0,4,2],[2,3,2,1],[1,1,0,1]],[[1,2,1,2],[2,0,3,2],[2,3,2,1],[1,1,0,1]],[[1,2,1,1],[2,0,3,3],[2,3,2,1],[1,0,2,0]],[[1,2,1,1],[2,0,4,2],[2,3,2,1],[1,0,2,0]],[[1,2,1,2],[2,0,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,1,1],[2,0,3,3],[2,3,2,1],[1,0,1,1]],[[1,2,1,1],[2,0,4,2],[2,3,2,1],[1,0,1,1]],[[1,2,1,2],[2,0,3,2],[2,3,2,1],[1,0,1,1]],[[1,2,1,1],[2,0,3,3],[2,3,2,1],[0,2,1,0]],[[1,2,1,1],[2,0,4,2],[2,3,2,1],[0,2,1,0]],[[1,2,1,2],[2,0,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,3],[2,3,2,1],[0,2,0,1]],[[1,2,1,1],[2,0,4,2],[2,3,2,1],[0,2,0,1]],[[1,2,1,2],[2,0,3,2],[2,3,2,1],[0,2,0,1]],[[1,2,1,1],[2,0,3,3],[2,3,2,1],[0,1,2,0]],[[1,2,1,1],[2,0,4,2],[2,3,2,1],[0,1,2,0]],[[1,2,1,2],[2,0,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,1,1],[2,0,3,3],[2,3,2,1],[0,1,1,1]],[[1,2,1,1],[2,0,4,2],[2,3,2,1],[0,1,1,1]],[[1,2,1,2],[2,0,3,2],[2,3,2,1],[0,1,1,1]],[[1,2,1,1],[2,0,3,3],[2,3,2,0],[1,1,1,1]],[[1,2,1,1],[2,0,4,2],[2,3,2,0],[1,1,1,1]],[[1,2,1,2],[2,0,3,2],[2,3,2,0],[1,1,1,1]],[[1,2,1,1],[2,0,3,3],[2,3,2,0],[1,0,2,1]],[[1,2,1,1],[2,0,4,2],[2,3,2,0],[1,0,2,1]],[[1,2,1,2],[2,0,3,2],[2,3,2,0],[1,0,2,1]],[[1,2,1,1],[2,0,3,3],[2,3,2,0],[0,2,1,1]],[[1,2,1,1],[2,0,4,2],[2,3,2,0],[0,2,1,1]],[[1,2,1,2],[2,0,3,2],[2,3,2,0],[0,2,1,1]],[[1,2,1,1],[2,0,3,3],[2,3,2,0],[0,1,2,1]],[[1,2,1,1],[2,0,4,2],[2,3,2,0],[0,1,2,1]],[[1,2,1,2],[2,0,3,2],[2,3,2,0],[0,1,2,1]],[[1,2,1,1],[2,0,3,3],[2,3,1,2],[1,2,0,0]],[[1,2,1,1],[2,0,4,2],[2,3,1,2],[1,2,0,0]],[[1,2,1,2],[2,0,3,2],[2,3,1,2],[1,2,0,0]],[[1,2,1,1],[2,0,3,2],[2,3,1,3],[1,1,1,0]],[[1,2,1,1],[2,0,3,3],[2,3,1,2],[1,1,1,0]],[[1,0,3,1],[1,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,2,2],[1,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[1,4,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,4,1],[2,0,1,2],[1,2,2,1]],[[1,0,3,1],[1,3,3,1],[2,0,2,2],[1,2,1,1]],[[1,0,2,2],[1,3,3,1],[2,0,2,2],[1,2,1,1]],[[1,0,2,1],[1,4,3,1],[2,0,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,4,1],[2,0,2,2],[1,2,1,1]],[[1,0,3,1],[1,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,2,2],[1,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[1,4,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,4,1],[2,0,2,2],[1,2,2,0]],[[1,0,3,1],[1,3,3,1],[2,0,3,0],[1,2,2,1]],[[1,0,2,2],[1,3,3,1],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[1,4,3,1],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,4,1],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[3,0,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,0,4,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,0,3,0],[2,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,0,3,0],[1,3,2,1]],[[1,0,2,1],[1,3,3,1],[2,0,3,0],[1,2,3,1]],[[1,0,2,1],[1,3,3,1],[2,0,3,0],[1,2,2,2]],[[1,0,3,1],[1,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,2,2],[1,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[1,4,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,4,1],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[2,0,4,1],[1,2,1,1]],[[1,0,3,1],[1,3,3,1],[2,0,3,1],[1,2,2,0]],[[1,0,2,2],[1,3,3,1],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[1,4,3,1],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,4,1],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[3,0,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,0,4,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,0,3,1],[2,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,0,3,1],[1,3,2,0]],[[1,0,2,1],[1,3,3,1],[2,0,3,1],[1,2,3,0]],[[1,2,1,1],[2,0,4,2],[2,3,1,2],[1,1,1,0]],[[1,2,1,2],[2,0,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,2],[2,3,1,2],[1,1,0,2]],[[1,2,1,1],[2,0,3,2],[2,3,1,3],[1,1,0,1]],[[1,2,1,1],[2,0,3,3],[2,3,1,2],[1,1,0,1]],[[1,2,1,1],[2,0,4,2],[2,3,1,2],[1,1,0,1]],[[1,2,1,2],[2,0,3,2],[2,3,1,2],[1,1,0,1]],[[1,0,3,1],[1,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,2,2],[1,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[1,4,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,4,1],[2,1,0,2],[1,2,2,1]],[[1,0,3,1],[1,3,3,1],[2,1,1,2],[0,2,2,1]],[[1,0,2,2],[1,3,3,1],[2,1,1,2],[0,2,2,1]],[[1,0,2,1],[1,4,3,1],[2,1,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,4,1],[2,1,1,2],[0,2,2,1]],[[1,0,3,1],[1,3,3,1],[2,1,2,2],[0,2,1,1]],[[1,0,2,2],[1,3,3,1],[2,1,2,2],[0,2,1,1]],[[1,0,2,1],[1,4,3,1],[2,1,2,2],[0,2,1,1]],[[1,0,2,1],[1,3,4,1],[2,1,2,2],[0,2,1,1]],[[1,0,3,1],[1,3,3,1],[2,1,2,2],[0,2,2,0]],[[1,0,2,2],[1,3,3,1],[2,1,2,2],[0,2,2,0]],[[1,0,2,1],[1,4,3,1],[2,1,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,4,1],[2,1,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,3,2],[2,3,1,3],[1,0,2,0]],[[1,2,1,1],[2,0,3,3],[2,3,1,2],[1,0,2,0]],[[1,2,1,1],[2,0,4,2],[2,3,1,2],[1,0,2,0]],[[1,2,1,2],[2,0,3,2],[2,3,1,2],[1,0,2,0]],[[1,2,1,1],[2,0,3,2],[2,3,1,2],[1,0,1,2]],[[1,2,1,1],[2,0,3,2],[2,3,1,3],[1,0,1,1]],[[1,2,1,1],[2,0,3,3],[2,3,1,2],[1,0,1,1]],[[1,2,1,1],[2,0,4,2],[2,3,1,2],[1,0,1,1]],[[1,0,3,1],[1,3,3,1],[2,1,3,0],[0,2,2,1]],[[1,0,2,2],[1,3,3,1],[2,1,3,0],[0,2,2,1]],[[1,0,2,1],[1,4,3,1],[2,1,3,0],[0,2,2,1]],[[1,0,2,1],[1,3,4,1],[2,1,3,0],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,1,4,0],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,1,3,0],[0,3,2,1]],[[1,0,2,1],[1,3,3,1],[2,1,3,0],[0,2,3,1]],[[1,0,2,1],[1,3,3,1],[2,1,3,0],[0,2,2,2]],[[1,0,3,1],[1,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,0,2,2],[1,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,0,2,1],[1,4,3,1],[2,1,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,4,1],[2,1,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,3,1],[2,1,4,1],[0,2,1,1]],[[1,0,3,1],[1,3,3,1],[2,1,3,1],[0,2,2,0]],[[1,0,2,2],[1,3,3,1],[2,1,3,1],[0,2,2,0]],[[1,0,2,1],[1,4,3,1],[2,1,3,1],[0,2,2,0]],[[1,0,2,1],[1,3,4,1],[2,1,3,1],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,1,4,1],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,1,3,1],[0,3,2,0]],[[1,0,2,1],[1,3,3,1],[2,1,3,1],[0,2,3,0]],[[1,2,1,2],[2,0,3,2],[2,3,1,2],[1,0,1,1]],[[1,2,1,1],[2,0,3,2],[2,3,1,3],[0,2,1,0]],[[1,2,1,1],[2,0,3,3],[2,3,1,2],[0,2,1,0]],[[1,2,1,1],[2,0,4,2],[2,3,1,2],[0,2,1,0]],[[1,2,1,2],[2,0,3,2],[2,3,1,2],[0,2,1,0]],[[1,2,1,1],[2,0,3,2],[2,3,1,2],[0,2,0,2]],[[1,2,1,1],[2,0,3,2],[2,3,1,3],[0,2,0,1]],[[1,2,1,1],[2,0,3,3],[2,3,1,2],[0,2,0,1]],[[1,2,1,1],[2,0,4,2],[2,3,1,2],[0,2,0,1]],[[1,2,1,2],[2,0,3,2],[2,3,1,2],[0,2,0,1]],[[1,2,1,1],[2,0,3,2],[2,3,1,3],[0,1,2,0]],[[1,2,1,1],[2,0,3,3],[2,3,1,2],[0,1,2,0]],[[1,2,1,1],[2,0,4,2],[2,3,1,2],[0,1,2,0]],[[1,2,1,2],[2,0,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,1,1],[2,0,3,2],[2,3,1,2],[0,1,1,2]],[[1,2,1,1],[2,0,3,2],[2,3,1,3],[0,1,1,1]],[[1,2,1,1],[2,0,3,3],[2,3,1,2],[0,1,1,1]],[[1,2,1,1],[2,0,4,2],[2,3,1,2],[0,1,1,1]],[[1,2,1,2],[2,0,3,2],[2,3,1,2],[0,1,1,1]],[[1,2,1,1],[2,0,3,3],[2,3,1,1],[1,1,2,0]],[[1,2,1,1],[2,0,4,2],[2,3,1,1],[1,1,2,0]],[[1,2,1,2],[2,0,3,2],[2,3,1,1],[1,1,2,0]],[[1,2,1,1],[2,0,3,3],[2,3,1,1],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[3,2,0,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,2,0,1],[2,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,2,0,1],[1,3,2,1]],[[1,0,2,1],[1,3,3,1],[2,2,0,1],[1,2,3,1]],[[1,0,2,1],[1,3,3,1],[2,2,0,1],[1,2,2,2]],[[1,0,3,1],[1,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,0,2,2],[1,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[1,4,3,1],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,4,1],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[3,2,0,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[2,2,0,2],[2,2,1,1]],[[1,0,2,1],[1,3,3,1],[2,2,0,2],[1,3,1,1]],[[1,0,2,1],[1,3,3,1],[3,2,0,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,2,0,2],[2,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,2,0,2],[1,3,2,0]],[[1,0,2,1],[1,3,3,1],[2,2,0,2],[1,2,3,0]],[[1,0,2,1],[1,3,3,1],[3,2,1,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,2,1,0],[2,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,2,1,0],[1,3,2,1]],[[1,0,2,1],[1,3,3,1],[2,2,1,0],[1,2,3,1]],[[1,0,2,1],[1,3,3,1],[2,2,1,0],[1,2,2,2]],[[1,0,2,1],[1,3,3,1],[3,2,1,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,2,1,1],[2,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,2,1,1],[1,3,2,0]],[[1,0,2,1],[1,3,3,1],[2,2,1,1],[1,2,3,0]],[[1,0,3,1],[1,3,3,1],[2,2,1,2],[0,1,2,1]],[[1,0,2,2],[1,3,3,1],[2,2,1,2],[0,1,2,1]],[[1,0,2,1],[1,4,3,1],[2,2,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,4,1],[2,2,1,2],[0,1,2,1]],[[1,0,3,1],[1,3,3,1],[2,2,1,2],[1,0,2,1]],[[1,0,2,2],[1,3,3,1],[2,2,1,2],[1,0,2,1]],[[1,0,2,1],[1,4,3,1],[2,2,1,2],[1,0,2,1]],[[1,0,2,1],[1,3,4,1],[2,2,1,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[3,2,1,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[2,2,1,2],[2,2,0,1]],[[1,0,2,1],[1,3,3,1],[2,2,1,2],[1,3,0,1]],[[1,0,2,1],[1,3,3,1],[3,2,1,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,2,1,2],[2,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,2,1,2],[1,3,1,0]],[[1,2,1,1],[2,0,4,2],[2,3,1,1],[0,2,2,0]],[[1,2,1,2],[2,0,3,2],[2,3,1,1],[0,2,2,0]],[[1,2,1,1],[2,0,3,3],[2,3,1,0],[1,1,2,1]],[[1,2,1,1],[2,0,4,2],[2,3,1,0],[1,1,2,1]],[[1,2,1,2],[2,0,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,3],[2,3,1,0],[0,2,2,1]],[[1,2,1,1],[2,0,4,2],[2,3,1,0],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[3,2,2,0],[1,2,1,1]],[[1,0,2,1],[1,3,3,1],[2,2,2,0],[2,2,1,1]],[[1,0,2,1],[1,3,3,1],[2,2,2,0],[1,3,1,1]],[[1,0,2,1],[1,3,3,1],[3,2,2,1],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[2,2,2,1],[2,2,0,1]],[[1,0,2,1],[1,3,3,1],[2,2,2,1],[1,3,0,1]],[[1,0,2,1],[1,3,3,1],[3,2,2,1],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,2,2,1],[2,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,1,2],[2,0,3,2],[2,3,1,0],[0,2,2,1]],[[1,0,3,1],[1,3,3,1],[2,2,2,2],[0,0,2,1]],[[1,0,2,2],[1,3,3,1],[2,2,2,2],[0,0,2,1]],[[1,0,2,1],[1,4,3,1],[2,2,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,4,1],[2,2,2,2],[0,0,2,1]],[[1,0,3,1],[1,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,0,2,2],[1,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,0,2,1],[1,4,3,1],[2,2,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,4,1],[2,2,2,2],[0,1,1,1]],[[1,0,3,1],[1,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,0,2,2],[1,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,0,2,1],[1,4,3,1],[2,2,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,4,1],[2,2,2,2],[0,1,2,0]],[[1,0,3,1],[1,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,0,2,2],[1,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,0,2,1],[1,4,3,1],[2,2,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,4,1],[2,2,2,2],[0,2,0,1]],[[1,0,3,1],[1,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,0,2,2],[1,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,0,2,1],[1,4,3,1],[2,2,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,4,1],[2,2,2,2],[0,2,1,0]],[[1,0,3,1],[1,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,0,2,2],[1,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,0,2,1],[1,4,3,1],[2,2,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,4,1],[2,2,2,2],[1,0,1,1]],[[1,0,3,1],[1,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,0,2,2],[1,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,0,2,1],[1,4,3,1],[2,2,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,4,1],[2,2,2,2],[1,0,2,0]],[[1,0,3,1],[1,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,0,2,2],[1,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,0,2,1],[1,4,3,1],[2,2,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,4,1],[2,2,2,2],[1,1,0,1]],[[1,0,3,1],[1,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,0,2,2],[1,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,0,2,1],[1,4,3,1],[2,2,2,2],[1,1,1,0]],[[1,0,2,1],[1,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,2],[2,3,0,3],[1,1,2,0]],[[1,2,1,1],[2,0,3,3],[2,3,0,2],[1,1,2,0]],[[1,2,1,1],[2,0,4,2],[2,3,0,2],[1,1,2,0]],[[1,2,1,2],[2,0,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,1,1],[2,0,3,2],[2,3,0,2],[1,1,1,2]],[[1,2,1,1],[2,0,3,2],[2,3,0,3],[1,1,1,1]],[[1,2,1,1],[2,0,3,3],[2,3,0,2],[1,1,1,1]],[[1,2,1,1],[2,0,4,2],[2,3,0,2],[1,1,1,1]],[[1,2,1,2],[2,0,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,1,1],[2,0,3,2],[2,3,0,2],[1,0,2,2]],[[1,2,1,1],[2,0,3,2],[2,3,0,2],[1,0,3,1]],[[1,2,1,1],[2,0,3,2],[2,3,0,3],[1,0,2,1]],[[1,2,1,1],[2,0,3,3],[2,3,0,2],[1,0,2,1]],[[1,2,1,1],[2,0,4,2],[2,3,0,2],[1,0,2,1]],[[1,2,1,2],[2,0,3,2],[2,3,0,2],[1,0,2,1]],[[1,0,3,1],[1,3,3,1],[2,2,3,0],[0,1,2,1]],[[1,0,2,2],[1,3,3,1],[2,2,3,0],[0,1,2,1]],[[1,0,2,1],[1,4,3,1],[2,2,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,4,1],[2,2,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[2,2,4,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[2,2,3,0],[0,1,3,1]],[[1,0,2,1],[1,3,3,1],[2,2,3,0],[0,1,2,2]],[[1,0,3,1],[1,3,3,1],[2,2,3,0],[0,2,1,1]],[[1,0,2,2],[1,3,3,1],[2,2,3,0],[0,2,1,1]],[[1,0,2,1],[1,4,3,1],[2,2,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,4,1],[2,2,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,3,1],[2,2,4,0],[0,2,1,1]],[[1,0,3,1],[1,3,3,1],[2,2,3,0],[1,0,2,1]],[[1,0,2,2],[1,3,3,1],[2,2,3,0],[1,0,2,1]],[[1,0,2,1],[1,4,3,1],[2,2,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,4,1],[2,2,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[2,2,4,0],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[2,2,3,0],[1,0,3,1]],[[1,0,2,1],[1,3,3,1],[2,2,3,0],[1,0,2,2]],[[1,0,3,1],[1,3,3,1],[2,2,3,0],[1,1,1,1]],[[1,0,2,2],[1,3,3,1],[2,2,3,0],[1,1,1,1]],[[1,0,2,1],[1,4,3,1],[2,2,3,0],[1,1,1,1]],[[1,0,2,1],[1,3,4,1],[2,2,3,0],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[2,2,4,0],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[3,2,3,0],[1,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,2,3,0],[2,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,2,3,0],[1,3,1,0]],[[1,2,1,1],[2,0,3,2],[2,3,0,3],[0,2,2,0]],[[1,2,1,1],[2,0,3,3],[2,3,0,2],[0,2,2,0]],[[1,2,1,1],[2,0,4,2],[2,3,0,2],[0,2,2,0]],[[1,2,1,2],[2,0,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,1,1],[2,0,3,2],[2,3,0,2],[0,2,1,2]],[[1,2,1,1],[2,0,3,2],[2,3,0,3],[0,2,1,1]],[[1,0,3,1],[1,3,3,1],[2,2,3,1],[0,0,2,1]],[[1,0,2,2],[1,3,3,1],[2,2,3,1],[0,0,2,1]],[[1,0,2,1],[1,4,3,1],[2,2,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,4,1],[2,2,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,3,1],[2,2,4,1],[0,0,2,1]],[[1,0,3,1],[1,3,3,1],[2,2,3,1],[0,1,1,1]],[[1,0,2,2],[1,3,3,1],[2,2,3,1],[0,1,1,1]],[[1,0,2,1],[1,4,3,1],[2,2,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,4,1],[2,2,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,3,1],[2,2,4,1],[0,1,1,1]],[[1,0,3,1],[1,3,3,1],[2,2,3,1],[0,1,2,0]],[[1,0,2,2],[1,3,3,1],[2,2,3,1],[0,1,2,0]],[[1,0,2,1],[1,4,3,1],[2,2,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,4,1],[2,2,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[2,2,4,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[2,2,3,1],[0,1,3,0]],[[1,0,3,1],[1,3,3,1],[2,2,3,1],[0,2,0,1]],[[1,0,2,2],[1,3,3,1],[2,2,3,1],[0,2,0,1]],[[1,0,2,1],[1,4,3,1],[2,2,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,4,1],[2,2,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[2,2,4,1],[0,2,0,1]],[[1,0,3,1],[1,3,3,1],[2,2,3,1],[0,2,1,0]],[[1,0,2,2],[1,3,3,1],[2,2,3,1],[0,2,1,0]],[[1,0,2,1],[1,4,3,1],[2,2,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,4,1],[2,2,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,2,4,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,3],[2,3,0,2],[0,2,1,1]],[[1,2,1,1],[2,0,4,2],[2,3,0,2],[0,2,1,1]],[[1,2,1,2],[2,0,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,1,1],[2,0,3,2],[2,3,0,2],[0,1,2,2]],[[1,2,1,1],[2,0,3,2],[2,3,0,2],[0,1,3,1]],[[1,2,1,1],[2,0,3,2],[2,3,0,3],[0,1,2,1]],[[1,2,1,1],[2,0,3,3],[2,3,0,2],[0,1,2,1]],[[1,2,1,1],[2,0,4,2],[2,3,0,2],[0,1,2,1]],[[1,0,3,1],[1,3,3,1],[2,2,3,1],[1,0,1,1]],[[1,0,2,2],[1,3,3,1],[2,2,3,1],[1,0,1,1]],[[1,0,2,1],[1,4,3,1],[2,2,3,1],[1,0,1,1]],[[1,0,2,1],[1,3,4,1],[2,2,3,1],[1,0,1,1]],[[1,0,2,1],[1,3,3,1],[2,2,4,1],[1,0,1,1]],[[1,0,3,1],[1,3,3,1],[2,2,3,1],[1,0,2,0]],[[1,0,2,2],[1,3,3,1],[2,2,3,1],[1,0,2,0]],[[1,0,2,1],[1,4,3,1],[2,2,3,1],[1,0,2,0]],[[1,0,2,1],[1,3,4,1],[2,2,3,1],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[2,2,4,1],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[2,2,3,1],[1,0,3,0]],[[1,0,3,1],[1,3,3,1],[2,2,3,1],[1,1,0,1]],[[1,0,2,2],[1,3,3,1],[2,2,3,1],[1,1,0,1]],[[1,0,2,1],[1,4,3,1],[2,2,3,1],[1,1,0,1]],[[1,0,2,1],[1,3,4,1],[2,2,3,1],[1,1,0,1]],[[1,0,2,1],[1,3,3,1],[2,2,4,1],[1,1,0,1]],[[1,0,3,1],[1,3,3,1],[2,2,3,1],[1,1,1,0]],[[1,0,2,2],[1,3,3,1],[2,2,3,1],[1,1,1,0]],[[1,0,2,1],[1,4,3,1],[2,2,3,1],[1,1,1,0]],[[1,0,2,1],[1,3,4,1],[2,2,3,1],[1,1,1,0]],[[1,0,2,1],[1,3,3,1],[2,2,4,1],[1,1,1,0]],[[1,2,1,2],[2,0,3,2],[2,3,0,2],[0,1,2,1]],[[1,2,1,1],[2,0,3,3],[2,3,0,1],[1,1,2,1]],[[1,2,1,1],[2,0,4,2],[2,3,0,1],[1,1,2,1]],[[1,2,1,2],[2,0,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,1,1],[2,0,3,3],[2,3,0,1],[0,2,2,1]],[[1,2,1,1],[2,0,4,2],[2,3,0,1],[0,2,2,1]],[[1,2,1,2],[2,0,3,2],[2,3,0,1],[0,2,2,1]],[[1,2,1,1],[2,0,3,2],[2,2,3,3],[1,0,0,1]],[[1,0,3,1],[1,3,3,1],[2,2,3,2],[0,1,0,1]],[[1,0,2,2],[1,3,3,1],[2,2,3,2],[0,1,0,1]],[[1,0,2,1],[1,4,3,1],[2,2,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,4,1],[2,2,3,2],[0,1,0,1]],[[1,2,1,1],[2,0,3,3],[2,2,3,2],[1,0,0,1]],[[1,2,1,1],[2,0,4,2],[2,2,3,2],[1,0,0,1]],[[1,2,1,2],[2,0,3,2],[2,2,3,2],[1,0,0,1]],[[1,2,1,1],[2,0,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,1,1],[2,0,3,3],[2,2,3,2],[0,1,0,1]],[[1,2,1,1],[2,0,4,2],[2,2,3,2],[0,1,0,1]],[[1,2,1,2],[2,0,3,2],[2,2,3,2],[0,1,0,1]],[[1,0,3,1],[1,3,3,1],[2,2,3,2],[1,0,0,1]],[[1,0,2,2],[1,3,3,1],[2,2,3,2],[1,0,0,1]],[[1,0,2,1],[1,4,3,1],[2,2,3,2],[1,0,0,1]],[[1,0,2,1],[1,3,4,1],[2,2,3,2],[1,0,0,1]],[[1,2,1,1],[2,0,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,3],[2,2,3,1],[1,1,1,0]],[[1,2,1,1],[2,0,4,2],[2,2,3,1],[1,1,1,0]],[[1,2,1,2],[2,0,3,2],[2,2,3,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,2],[2,2,4,1],[1,1,0,1]],[[1,2,1,1],[2,0,3,3],[2,2,3,1],[1,1,0,1]],[[1,2,1,1],[2,0,4,2],[2,2,3,1],[1,1,0,1]],[[1,2,1,2],[2,0,3,2],[2,2,3,1],[1,1,0,1]],[[1,2,1,1],[2,0,3,2],[2,2,3,1],[1,0,3,0]],[[1,2,1,1],[2,0,3,2],[2,2,4,1],[1,0,2,0]],[[1,2,1,1],[2,0,3,3],[2,2,3,1],[1,0,2,0]],[[1,2,1,1],[2,0,4,2],[2,2,3,1],[1,0,2,0]],[[1,2,1,2],[2,0,3,2],[2,2,3,1],[1,0,2,0]],[[1,2,1,1],[2,0,3,2],[2,2,4,1],[1,0,1,1]],[[1,2,1,1],[2,0,3,3],[2,2,3,1],[1,0,1,1]],[[1,2,1,1],[2,0,4,2],[2,2,3,1],[1,0,1,1]],[[1,2,1,2],[2,0,3,2],[2,2,3,1],[1,0,1,1]],[[1,2,1,1],[2,0,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,3],[2,2,3,1],[0,2,1,0]],[[1,2,1,1],[2,0,4,2],[2,2,3,1],[0,2,1,0]],[[1,2,1,2],[2,0,3,2],[2,2,3,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,2],[2,2,4,1],[0,2,0,1]],[[1,2,1,1],[2,0,3,3],[2,2,3,1],[0,2,0,1]],[[1,2,1,1],[2,0,4,2],[2,2,3,1],[0,2,0,1]],[[1,2,1,2],[2,0,3,2],[2,2,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[3,3,0,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,3,0,0],[2,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,3,0,0],[1,3,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,0,2,2],[1,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,0,2,1],[1,4,3,1],[2,3,0,1],[0,2,2,1]],[[1,0,2,1],[1,3,4,1],[2,3,0,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[3,3,0,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,4,0,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,3,0,1],[0,3,2,1]],[[1,0,2,1],[1,3,3,1],[2,3,0,1],[0,2,3,1]],[[1,0,2,1],[1,3,3,1],[2,3,0,1],[0,2,2,2]],[[1,0,3,1],[1,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,0,2,2],[1,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,0,2,1],[1,4,3,1],[2,3,0,1],[1,1,2,1]],[[1,0,2,1],[1,3,4,1],[2,3,0,1],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[3,3,0,1],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[2,4,0,1],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[2,3,0,1],[2,1,2,1]],[[1,0,2,1],[1,3,3,1],[3,3,0,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,0,1],[2,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,0,1],[1,3,2,0]],[[1,0,3,1],[1,3,3,1],[2,3,0,2],[0,1,2,1]],[[1,0,2,2],[1,3,3,1],[2,3,0,2],[0,1,2,1]],[[1,0,2,1],[1,4,3,1],[2,3,0,2],[0,1,2,1]],[[1,0,2,1],[1,3,4,1],[2,3,0,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[3,3,0,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[2,4,0,2],[0,1,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,0,2],[0,2,1,1]],[[1,0,2,2],[1,3,3,1],[2,3,0,2],[0,2,1,1]],[[1,0,2,1],[1,4,3,1],[2,3,0,2],[0,2,1,1]],[[1,0,2,1],[1,3,4,1],[2,3,0,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,1],[3,3,0,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,1],[2,4,0,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,1],[2,3,0,2],[0,3,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[3,3,0,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,4,0,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,0,2],[0,3,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,0,2],[0,2,3,0]],[[1,0,3,1],[1,3,3,1],[2,3,0,2],[1,0,2,1]],[[1,0,2,2],[1,3,3,1],[2,3,0,2],[1,0,2,1]],[[1,0,2,1],[1,4,3,1],[2,3,0,2],[1,0,2,1]],[[1,0,2,1],[1,3,4,1],[2,3,0,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[3,3,0,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[2,4,0,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[2,3,0,2],[2,0,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,0,2],[1,1,1,1]],[[1,0,2,2],[1,3,3,1],[2,3,0,2],[1,1,1,1]],[[1,0,2,1],[1,4,3,1],[2,3,0,2],[1,1,1,1]],[[1,0,2,1],[1,3,4,1],[2,3,0,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[3,3,0,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[2,4,0,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[2,3,0,2],[2,1,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[3,3,0,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[2,4,0,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,1,1],[2,0,3,2],[2,2,3,1],[0,1,3,0]],[[1,2,1,1],[2,0,3,2],[2,2,4,1],[0,1,2,0]],[[1,2,1,1],[2,0,3,3],[2,2,3,1],[0,1,2,0]],[[1,2,1,1],[2,0,4,2],[2,2,3,1],[0,1,2,0]],[[1,2,1,2],[2,0,3,2],[2,2,3,1],[0,1,2,0]],[[1,2,1,1],[2,0,3,2],[2,2,4,1],[0,1,1,1]],[[1,2,1,1],[2,0,3,3],[2,2,3,1],[0,1,1,1]],[[1,2,1,1],[2,0,4,2],[2,2,3,1],[0,1,1,1]],[[1,2,1,2],[2,0,3,2],[2,2,3,1],[0,1,1,1]],[[1,2,1,1],[2,0,3,2],[2,2,4,1],[0,0,2,1]],[[1,2,1,1],[2,0,3,3],[2,2,3,1],[0,0,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,1,0],[0,2,2,1]],[[1,0,2,2],[1,3,3,1],[2,3,1,0],[0,2,2,1]],[[1,0,2,1],[1,4,3,1],[2,3,1,0],[0,2,2,1]],[[1,0,2,1],[1,3,4,1],[2,3,1,0],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[3,3,1,0],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,4,1,0],[0,2,2,1]],[[1,0,2,1],[1,3,3,1],[2,3,1,0],[0,3,2,1]],[[1,0,2,1],[1,3,3,1],[2,3,1,0],[0,2,3,1]],[[1,0,2,1],[1,3,3,1],[2,3,1,0],[0,2,2,2]],[[1,0,3,1],[1,3,3,1],[2,3,1,0],[1,1,2,1]],[[1,0,2,2],[1,3,3,1],[2,3,1,0],[1,1,2,1]],[[1,0,2,1],[1,4,3,1],[2,3,1,0],[1,1,2,1]],[[1,0,2,1],[1,3,4,1],[2,3,1,0],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[3,3,1,0],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[2,4,1,0],[1,1,2,1]],[[1,0,2,1],[1,3,3,1],[2,3,1,0],[2,1,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,1,1],[0,2,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,1,1],[0,2,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,1,1],[0,2,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,1,1],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[3,3,1,1],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,4,1,1],[0,2,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,1,1],[0,3,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,1,1],[0,2,3,0]],[[1,0,3,1],[1,3,3,1],[2,3,1,1],[1,1,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,1,1],[1,1,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,1,1],[1,1,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,1,1],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[3,3,1,1],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[2,4,1,1],[1,1,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,1,1],[2,1,2,0]],[[1,2,1,1],[2,0,4,2],[2,2,3,1],[0,0,2,1]],[[1,2,1,2],[2,0,3,2],[2,2,3,1],[0,0,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,1,2],[0,1,1,1]],[[1,0,2,2],[1,3,3,1],[2,3,1,2],[0,1,1,1]],[[1,0,2,1],[1,4,3,1],[2,3,1,2],[0,1,1,1]],[[1,0,2,1],[1,3,4,1],[2,3,1,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,1],[3,3,1,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,1],[2,4,1,2],[0,1,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,1,2],[0,1,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,1,2],[0,1,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,1,2],[0,1,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,1,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[3,3,1,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[2,4,1,2],[0,1,2,0]],[[1,0,3,1],[1,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,0,2,2],[1,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[1,4,3,1],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[1,3,4,1],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[3,3,1,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[2,4,1,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[2,3,1,2],[0,3,0,1]],[[1,0,3,1],[1,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,0,2,2],[1,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[1,4,3,1],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[1,3,4,1],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[3,3,1,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,4,1,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,3,1,2],[0,3,1,0]],[[1,2,1,1],[2,0,3,2],[2,2,4,0],[1,1,1,1]],[[1,2,1,1],[2,0,3,3],[2,2,3,0],[1,1,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,1,2],[1,0,1,1]],[[1,0,2,2],[1,3,3,1],[2,3,1,2],[1,0,1,1]],[[1,0,2,1],[1,4,3,1],[2,3,1,2],[1,0,1,1]],[[1,0,2,1],[1,3,4,1],[2,3,1,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,1],[3,3,1,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,1],[2,4,1,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,1],[2,3,1,2],[2,0,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,1,2],[1,0,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,1,2],[1,0,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,1,2],[1,0,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,1,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[3,3,1,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[2,4,1,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,1,2],[2,0,2,0]],[[1,0,3,1],[1,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,0,2,2],[1,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[1,4,3,1],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[1,3,4,1],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,1],[3,3,1,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,1],[2,4,1,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,1],[2,3,1,2],[2,1,0,1]],[[1,0,3,1],[1,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,0,2,2],[1,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[1,4,3,1],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[1,3,4,1],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,1],[3,3,1,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,1],[2,4,1,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,1],[2,3,1,2],[2,1,1,0]],[[1,2,1,1],[2,0,4,2],[2,2,3,0],[1,1,1,1]],[[1,2,1,2],[2,0,3,2],[2,2,3,0],[1,1,1,1]],[[1,2,1,1],[2,0,3,2],[2,2,3,0],[1,0,2,2]],[[1,2,1,1],[2,0,3,2],[2,2,3,0],[1,0,3,1]],[[1,2,1,1],[2,0,3,2],[2,2,4,0],[1,0,2,1]],[[1,2,1,1],[2,0,3,3],[2,2,3,0],[1,0,2,1]],[[1,2,1,1],[2,0,4,2],[2,2,3,0],[1,0,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,0,2,2],[1,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,0,2,1],[1,4,3,1],[2,3,1,2],[1,2,0,0]],[[1,0,2,1],[1,3,4,1],[2,3,1,2],[1,2,0,0]],[[1,0,2,1],[1,3,3,1],[3,3,1,2],[1,2,0,0]],[[1,0,2,1],[1,3,3,1],[2,4,1,2],[1,2,0,0]],[[1,0,2,1],[1,3,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,1,2],[2,0,3,2],[2,2,3,0],[1,0,2,1]],[[1,2,1,1],[2,0,3,2],[2,2,4,0],[0,2,1,1]],[[1,2,1,1],[2,0,3,3],[2,2,3,0],[0,2,1,1]],[[1,2,1,1],[2,0,4,2],[2,2,3,0],[0,2,1,1]],[[1,2,1,2],[2,0,3,2],[2,2,3,0],[0,2,1,1]],[[1,2,1,1],[2,0,3,2],[2,2,3,0],[0,1,2,2]],[[1,2,1,1],[2,0,3,2],[2,2,3,0],[0,1,3,1]],[[1,2,1,1],[2,0,3,2],[2,2,4,0],[0,1,2,1]],[[1,2,1,1],[2,0,3,3],[2,2,3,0],[0,1,2,1]],[[1,2,1,1],[2,0,4,2],[2,2,3,0],[0,1,2,1]],[[1,2,1,2],[2,0,3,2],[2,2,3,0],[0,1,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,0],[0,1,2,1]],[[1,0,2,2],[1,3,3,1],[2,3,2,0],[0,1,2,1]],[[1,0,2,1],[1,4,3,1],[2,3,2,0],[0,1,2,1]],[[1,0,2,1],[1,3,4,1],[2,3,2,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[3,3,2,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,1],[2,4,2,0],[0,1,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,0],[0,2,1,1]],[[1,0,2,2],[1,3,3,1],[2,3,2,0],[0,2,1,1]],[[1,0,2,1],[1,4,3,1],[2,3,2,0],[0,2,1,1]],[[1,0,2,1],[1,3,4,1],[2,3,2,0],[0,2,1,1]],[[1,0,2,1],[1,3,3,1],[3,3,2,0],[0,2,1,1]],[[1,0,2,1],[1,3,3,1],[2,4,2,0],[0,2,1,1]],[[1,0,2,1],[1,3,3,1],[2,3,2,0],[0,3,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,0],[1,0,2,1]],[[1,0,2,2],[1,3,3,1],[2,3,2,0],[1,0,2,1]],[[1,0,2,1],[1,4,3,1],[2,3,2,0],[1,0,2,1]],[[1,0,2,1],[1,3,4,1],[2,3,2,0],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[3,3,2,0],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[2,4,2,0],[1,0,2,1]],[[1,0,2,1],[1,3,3,1],[2,3,2,0],[2,0,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,0],[1,1,1,1]],[[1,0,2,2],[1,3,3,1],[2,3,2,0],[1,1,1,1]],[[1,0,2,1],[1,4,3,1],[2,3,2,0],[1,1,1,1]],[[1,0,2,1],[1,3,4,1],[2,3,2,0],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[3,3,2,0],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[2,4,2,0],[1,1,1,1]],[[1,0,2,1],[1,3,3,1],[2,3,2,0],[2,1,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,0],[1,2,0,1]],[[1,0,2,2],[1,3,3,1],[2,3,2,0],[1,2,0,1]],[[1,0,2,1],[1,4,3,1],[2,3,2,0],[1,2,0,1]],[[1,0,2,1],[1,3,4,1],[2,3,2,0],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[3,3,2,0],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[2,4,2,0],[1,2,0,1]],[[1,0,2,1],[1,3,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,1,1],[2,0,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,1,1],[2,0,3,3],[2,2,2,2],[1,1,1,0]],[[1,0,3,1],[1,3,3,1],[2,3,2,1],[0,1,1,1]],[[1,0,2,2],[1,3,3,1],[2,3,2,1],[0,1,1,1]],[[1,0,2,1],[1,4,3,1],[2,3,2,1],[0,1,1,1]],[[1,0,2,1],[1,3,4,1],[2,3,2,1],[0,1,1,1]],[[1,0,2,1],[1,3,3,1],[3,3,2,1],[0,1,1,1]],[[1,0,2,1],[1,3,3,1],[2,4,2,1],[0,1,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,1],[0,1,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,2,1],[0,1,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,2,1],[0,1,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,2,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[3,3,2,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[2,4,2,1],[0,1,2,0]],[[1,0,3,1],[1,3,3,1],[2,3,2,1],[0,2,0,1]],[[1,0,2,2],[1,3,3,1],[2,3,2,1],[0,2,0,1]],[[1,0,2,1],[1,4,3,1],[2,3,2,1],[0,2,0,1]],[[1,0,2,1],[1,3,4,1],[2,3,2,1],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[3,3,2,1],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[2,4,2,1],[0,2,0,1]],[[1,0,2,1],[1,3,3,1],[2,3,2,1],[0,3,0,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,1],[0,2,1,0]],[[1,0,2,2],[1,3,3,1],[2,3,2,1],[0,2,1,0]],[[1,0,2,1],[1,4,3,1],[2,3,2,1],[0,2,1,0]],[[1,0,2,1],[1,3,4,1],[2,3,2,1],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[3,3,2,1],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,4,2,1],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,3,2,1],[0,3,1,0]],[[1,2,1,1],[2,0,4,2],[2,2,2,2],[1,1,1,0]],[[1,2,1,2],[2,0,3,2],[2,2,2,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,2],[2,2,2,2],[1,1,0,2]],[[1,2,1,1],[2,0,3,2],[2,2,2,3],[1,1,0,1]],[[1,2,1,1],[2,0,3,3],[2,2,2,2],[1,1,0,1]],[[1,2,1,1],[2,0,4,2],[2,2,2,2],[1,1,0,1]],[[1,2,1,2],[2,0,3,2],[2,2,2,2],[1,1,0,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,0,2,2],[1,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,0,2,1],[1,4,3,1],[2,3,2,1],[1,0,1,1]],[[1,0,2,1],[1,3,4,1],[2,3,2,1],[1,0,1,1]],[[1,0,2,1],[1,3,3,1],[3,3,2,1],[1,0,1,1]],[[1,0,2,1],[1,3,3,1],[2,4,2,1],[1,0,1,1]],[[1,0,2,1],[1,3,3,1],[2,3,2,1],[2,0,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,1],[1,0,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,2,1],[1,0,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,2,1],[1,0,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,2,1],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[3,3,2,1],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[2,4,2,1],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,2,1],[2,0,2,0]],[[1,0,3,1],[1,3,3,1],[2,3,2,1],[1,1,0,1]],[[1,0,2,2],[1,3,3,1],[2,3,2,1],[1,1,0,1]],[[1,0,2,1],[1,4,3,1],[2,3,2,1],[1,1,0,1]],[[1,0,2,1],[1,3,4,1],[2,3,2,1],[1,1,0,1]],[[1,0,2,1],[1,3,3,1],[3,3,2,1],[1,1,0,1]],[[1,0,2,1],[1,3,3,1],[2,4,2,1],[1,1,0,1]],[[1,0,2,1],[1,3,3,1],[2,3,2,1],[2,1,0,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,1],[1,1,1,0]],[[1,0,2,2],[1,3,3,1],[2,3,2,1],[1,1,1,0]],[[1,0,2,1],[1,4,3,1],[2,3,2,1],[1,1,1,0]],[[1,0,2,1],[1,3,4,1],[2,3,2,1],[1,1,1,0]],[[1,0,2,1],[1,3,3,1],[3,3,2,1],[1,1,1,0]],[[1,0,2,1],[1,3,3,1],[2,4,2,1],[1,1,1,0]],[[1,0,2,1],[1,3,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,1,1],[2,0,3,2],[2,2,2,3],[1,0,2,0]],[[1,2,1,1],[2,0,3,3],[2,2,2,2],[1,0,2,0]],[[1,2,1,1],[2,0,4,2],[2,2,2,2],[1,0,2,0]],[[1,0,3,1],[1,3,3,1],[2,3,2,1],[1,2,0,0]],[[1,0,2,2],[1,3,3,1],[2,3,2,1],[1,2,0,0]],[[1,0,2,1],[1,4,3,1],[2,3,2,1],[1,2,0,0]],[[1,0,2,1],[1,3,4,1],[2,3,2,1],[1,2,0,0]],[[1,0,2,1],[1,3,3,1],[3,3,2,1],[1,2,0,0]],[[1,0,2,1],[1,3,3,1],[2,4,2,1],[1,2,0,0]],[[1,0,2,1],[1,3,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,1,2],[2,0,3,2],[2,2,2,2],[1,0,2,0]],[[1,2,1,1],[2,0,3,2],[2,2,2,2],[1,0,1,2]],[[1,2,1,1],[2,0,3,2],[2,2,2,3],[1,0,1,1]],[[1,2,1,1],[2,0,3,3],[2,2,2,2],[1,0,1,1]],[[1,2,1,1],[2,0,4,2],[2,2,2,2],[1,0,1,1]],[[1,2,1,2],[2,0,3,2],[2,2,2,2],[1,0,1,1]],[[1,2,1,1],[2,0,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,1,1],[2,0,3,3],[2,2,2,2],[0,2,1,0]],[[1,2,1,1],[2,0,4,2],[2,2,2,2],[0,2,1,0]],[[1,2,1,2],[2,0,3,2],[2,2,2,2],[0,2,1,0]],[[1,2,1,1],[2,0,3,2],[2,2,2,2],[0,2,0,2]],[[1,2,1,1],[2,0,3,2],[2,2,2,3],[0,2,0,1]],[[1,2,1,1],[2,0,3,3],[2,2,2,2],[0,2,0,1]],[[1,2,1,1],[2,0,4,2],[2,2,2,2],[0,2,0,1]],[[1,2,1,2],[2,0,3,2],[2,2,2,2],[0,2,0,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,2],[0,0,1,1]],[[1,0,2,2],[1,3,3,1],[2,3,2,2],[0,0,1,1]],[[1,0,2,1],[1,4,3,1],[2,3,2,2],[0,0,1,1]],[[1,0,2,1],[1,3,4,1],[2,3,2,2],[0,0,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,2,2],[0,0,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,2,2],[0,0,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,2,2],[0,0,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,2,2],[0,0,2,0]],[[1,2,1,1],[2,0,3,2],[2,2,2,3],[0,1,2,0]],[[1,2,1,1],[2,0,3,3],[2,2,2,2],[0,1,2,0]],[[1,2,1,1],[2,0,4,2],[2,2,2,2],[0,1,2,0]],[[1,2,1,2],[2,0,3,2],[2,2,2,2],[0,1,2,0]],[[1,2,1,1],[2,0,3,2],[2,2,2,2],[0,1,1,2]],[[1,2,1,1],[2,0,3,2],[2,2,2,3],[0,1,1,1]],[[1,2,1,1],[2,0,3,3],[2,2,2,2],[0,1,1,1]],[[1,2,1,1],[2,0,4,2],[2,2,2,2],[0,1,1,1]],[[1,2,1,2],[2,0,3,2],[2,2,2,2],[0,1,1,1]],[[1,2,1,1],[2,0,3,2],[2,2,2,2],[0,0,2,2]],[[1,2,1,1],[2,0,3,2],[2,2,2,3],[0,0,2,1]],[[1,2,1,1],[2,0,3,3],[2,2,2,2],[0,0,2,1]],[[1,2,1,1],[2,0,4,2],[2,2,2,2],[0,0,2,1]],[[1,2,1,2],[2,0,3,2],[2,2,2,2],[0,0,2,1]],[[1,2,1,1],[2,0,3,3],[2,2,2,1],[1,2,1,0]],[[1,2,1,1],[2,0,4,2],[2,2,2,1],[1,2,1,0]],[[1,2,1,2],[2,0,3,2],[2,2,2,1],[1,2,1,0]],[[1,2,1,1],[2,0,3,3],[2,2,2,1],[1,2,0,1]],[[1,2,1,1],[2,0,4,2],[2,2,2,1],[1,2,0,1]],[[1,2,1,2],[2,0,3,2],[2,2,2,1],[1,2,0,1]],[[1,2,1,1],[2,0,3,3],[2,2,2,0],[1,2,1,1]],[[1,2,1,1],[2,0,4,2],[2,2,2,0],[1,2,1,1]],[[1,2,1,2],[2,0,3,2],[2,2,2,0],[1,2,1,1]],[[1,2,1,1],[2,0,3,2],[2,2,1,3],[1,2,1,0]],[[1,2,1,1],[2,0,3,3],[2,2,1,2],[1,2,1,0]],[[1,2,1,1],[2,0,4,2],[2,2,1,2],[1,2,1,0]],[[1,2,1,2],[2,0,3,2],[2,2,1,2],[1,2,1,0]],[[1,2,1,1],[2,0,3,2],[2,2,1,2],[1,2,0,2]],[[1,2,1,1],[2,0,3,2],[2,2,1,3],[1,2,0,1]],[[1,2,1,1],[2,0,3,3],[2,2,1,2],[1,2,0,1]],[[1,2,1,1],[2,0,4,2],[2,2,1,2],[1,2,0,1]],[[1,2,1,2],[2,0,3,2],[2,2,1,2],[1,2,0,1]],[[1,2,1,1],[2,0,3,2],[2,2,1,2],[1,0,2,2]],[[1,2,1,1],[2,0,3,2],[2,2,1,2],[1,0,3,1]],[[1,2,1,1],[2,0,3,2],[2,2,1,3],[1,0,2,1]],[[1,2,1,1],[2,0,3,3],[2,2,1,2],[1,0,2,1]],[[1,2,1,1],[2,0,4,2],[2,2,1,2],[1,0,2,1]],[[1,2,1,2],[2,0,3,2],[2,2,1,2],[1,0,2,1]],[[1,2,1,1],[2,0,3,2],[2,2,1,2],[0,1,2,2]],[[1,2,1,1],[2,0,3,2],[2,2,1,2],[0,1,3,1]],[[1,2,1,1],[2,0,3,2],[2,2,1,3],[0,1,2,1]],[[1,2,1,1],[2,0,3,3],[2,2,1,2],[0,1,2,1]],[[1,2,1,1],[2,0,4,2],[2,2,1,2],[0,1,2,1]],[[1,2,1,2],[2,0,3,2],[2,2,1,2],[0,1,2,1]],[[1,2,1,1],[2,0,3,3],[2,2,1,1],[1,2,2,0]],[[1,2,1,1],[2,0,4,2],[2,2,1,1],[1,2,2,0]],[[1,2,1,2],[2,0,3,2],[2,2,1,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,3],[2,2,1,0],[1,2,2,1]],[[1,2,1,1],[2,0,4,2],[2,2,1,0],[1,2,2,1]],[[1,2,1,2],[2,0,3,2],[2,2,1,0],[1,2,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,3,0],[0,0,2,1]],[[1,0,2,2],[1,3,3,1],[2,3,3,0],[0,0,2,1]],[[1,0,2,1],[1,4,3,1],[2,3,3,0],[0,0,2,1]],[[1,0,2,1],[1,3,4,1],[2,3,3,0],[0,0,2,1]],[[1,0,2,1],[1,3,3,1],[2,3,4,0],[0,0,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,3,0],[0,1,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,3,0],[0,1,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,3,0],[0,1,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,3,0],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[3,3,3,0],[0,1,2,0]],[[1,0,2,1],[1,3,3,1],[2,4,3,0],[0,1,2,0]],[[1,0,3,1],[1,3,3,1],[2,3,3,0],[0,2,1,0]],[[1,0,2,2],[1,3,3,1],[2,3,3,0],[0,2,1,0]],[[1,0,2,1],[1,4,3,1],[2,3,3,0],[0,2,1,0]],[[1,0,2,1],[1,3,4,1],[2,3,3,0],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[3,3,3,0],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,4,3,0],[0,2,1,0]],[[1,0,2,1],[1,3,3,1],[2,3,3,0],[0,3,1,0]],[[1,2,1,1],[2,0,3,2],[2,2,0,3],[1,2,2,0]],[[1,2,1,1],[2,0,3,3],[2,2,0,2],[1,2,2,0]],[[1,2,1,1],[2,0,4,2],[2,2,0,2],[1,2,2,0]],[[1,2,1,2],[2,0,3,2],[2,2,0,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,2],[2,2,0,2],[1,2,1,2]],[[1,2,1,1],[2,0,3,2],[2,2,0,3],[1,2,1,1]],[[1,2,1,1],[2,0,3,3],[2,2,0,2],[1,2,1,1]],[[1,2,1,1],[2,0,4,2],[2,2,0,2],[1,2,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,3,0],[1,0,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,3,0],[1,0,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,3,0],[1,0,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,3,0],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[3,3,3,0],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[2,4,3,0],[1,0,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,3,0],[2,0,2,0]],[[1,0,3,1],[1,3,3,1],[2,3,3,0],[1,1,1,0]],[[1,0,2,2],[1,3,3,1],[2,3,3,0],[1,1,1,0]],[[1,0,2,1],[1,4,3,1],[2,3,3,0],[1,1,1,0]],[[1,0,2,1],[1,3,4,1],[2,3,3,0],[1,1,1,0]],[[1,0,2,1],[1,3,3,1],[3,3,3,0],[1,1,1,0]],[[1,0,2,1],[1,3,3,1],[2,4,3,0],[1,1,1,0]],[[1,0,2,1],[1,3,3,1],[2,3,3,0],[2,1,1,0]],[[1,2,1,2],[2,0,3,2],[2,2,0,2],[1,2,1,1]],[[1,2,1,1],[2,0,3,2],[2,2,0,2],[1,1,2,2]],[[1,2,1,1],[2,0,3,2],[2,2,0,2],[1,1,3,1]],[[1,2,1,1],[2,0,3,2],[2,2,0,3],[1,1,2,1]],[[1,2,1,1],[2,0,3,3],[2,2,0,2],[1,1,2,1]],[[1,2,1,1],[2,0,4,2],[2,2,0,2],[1,1,2,1]],[[1,2,1,2],[2,0,3,2],[2,2,0,2],[1,1,2,1]],[[1,2,1,1],[2,0,3,2],[2,2,0,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,2],[2,2,0,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,2],[2,2,0,2],[0,3,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,3,0],[1,2,0,0]],[[1,0,2,2],[1,3,3,1],[2,3,3,0],[1,2,0,0]],[[1,0,2,1],[1,4,3,1],[2,3,3,0],[1,2,0,0]],[[1,0,2,1],[1,3,4,1],[2,3,3,0],[1,2,0,0]],[[1,0,2,1],[1,3,3,1],[3,3,3,0],[1,2,0,0]],[[1,0,2,1],[1,3,3,1],[2,4,3,0],[1,2,0,0]],[[1,0,2,1],[1,3,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,1,1],[2,0,3,2],[2,2,0,3],[0,2,2,1]],[[1,2,1,1],[2,0,3,3],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[2,0,4,2],[2,2,0,2],[0,2,2,1]],[[1,2,1,2],[2,0,3,2],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[2,0,3,3],[2,2,0,1],[1,2,2,1]],[[1,2,1,1],[2,0,4,2],[2,2,0,1],[1,2,2,1]],[[1,2,1,2],[2,0,3,2],[2,2,0,1],[1,2,2,1]],[[1,0,3,1],[1,3,3,1],[2,3,3,1],[0,0,1,1]],[[1,0,2,2],[1,3,3,1],[2,3,3,1],[0,0,1,1]],[[1,0,2,1],[1,4,3,1],[2,3,3,1],[0,0,1,1]],[[1,0,2,1],[1,3,4,1],[2,3,3,1],[0,0,1,1]],[[1,0,2,1],[1,3,3,1],[2,3,4,1],[0,0,1,1]],[[1,0,3,1],[1,3,3,1],[2,3,3,1],[0,0,2,0]],[[1,0,2,2],[1,3,3,1],[2,3,3,1],[0,0,2,0]],[[1,0,2,1],[1,4,3,1],[2,3,3,1],[0,0,2,0]],[[1,0,2,1],[1,3,4,1],[2,3,3,1],[0,0,2,0]],[[1,0,2,1],[1,3,3,1],[2,3,4,1],[0,0,2,0]],[[1,0,3,1],[1,3,3,1],[2,3,3,1],[0,2,0,0]],[[1,0,2,2],[1,3,3,1],[2,3,3,1],[0,2,0,0]],[[1,0,2,1],[1,4,3,1],[2,3,3,1],[0,2,0,0]],[[1,0,2,1],[1,3,4,1],[2,3,3,1],[0,2,0,0]],[[1,0,2,1],[1,3,3,1],[3,3,3,1],[0,2,0,0]],[[1,0,2,1],[1,3,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,1,1],[2,0,3,2],[2,1,4,1],[1,2,1,0]],[[1,2,1,1],[2,0,3,3],[2,1,3,1],[1,2,1,0]],[[1,2,1,1],[2,0,4,2],[2,1,3,1],[1,2,1,0]],[[1,2,1,2],[2,0,3,2],[2,1,3,1],[1,2,1,0]],[[1,2,1,1],[2,0,3,2],[2,1,4,1],[1,2,0,1]],[[1,2,1,1],[2,0,3,3],[2,1,3,1],[1,2,0,1]],[[1,2,1,1],[2,0,4,2],[2,1,3,1],[1,2,0,1]],[[1,2,1,2],[2,0,3,2],[2,1,3,1],[1,2,0,1]],[[1,2,1,1],[2,0,3,2],[2,1,3,1],[1,1,3,0]],[[1,2,1,1],[2,0,3,2],[2,1,4,1],[1,1,2,0]],[[1,0,3,1],[1,3,3,1],[2,3,3,1],[1,1,0,0]],[[1,0,2,2],[1,3,3,1],[2,3,3,1],[1,1,0,0]],[[1,0,2,1],[1,4,3,1],[2,3,3,1],[1,1,0,0]],[[1,0,2,1],[1,3,4,1],[2,3,3,1],[1,1,0,0]],[[1,0,2,1],[1,3,3,1],[3,3,3,1],[1,1,0,0]],[[1,0,2,1],[1,3,3,1],[2,4,3,1],[1,1,0,0]],[[1,0,2,1],[1,3,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,1,1],[2,0,3,3],[2,1,3,1],[1,1,2,0]],[[1,2,1,1],[2,0,4,2],[2,1,3,1],[1,1,2,0]],[[1,2,1,2],[2,0,3,2],[2,1,3,1],[1,1,2,0]],[[1,2,1,1],[2,0,3,2],[2,1,4,1],[1,1,1,1]],[[1,2,1,1],[2,0,3,3],[2,1,3,1],[1,1,1,1]],[[1,2,1,1],[2,0,4,2],[2,1,3,1],[1,1,1,1]],[[1,2,1,2],[2,0,3,2],[2,1,3,1],[1,1,1,1]],[[1,2,1,1],[2,0,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,1,1],[2,0,3,2],[2,1,3,1],[0,3,2,0]],[[1,2,1,1],[2,0,3,2],[2,1,4,1],[0,2,2,0]],[[1,2,1,1],[2,0,3,3],[2,1,3,1],[0,2,2,0]],[[1,2,1,1],[2,0,4,2],[2,1,3,1],[0,2,2,0]],[[1,2,1,2],[2,0,3,2],[2,1,3,1],[0,2,2,0]],[[1,2,1,1],[2,0,3,2],[2,1,4,1],[0,2,1,1]],[[1,2,1,1],[2,0,3,3],[2,1,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,4,2],[2,1,3,1],[0,2,1,1]],[[1,2,1,2],[2,0,3,2],[2,1,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,3,2],[2,1,4,0],[1,2,1,1]],[[1,2,1,1],[2,0,3,3],[2,1,3,0],[1,2,1,1]],[[1,2,1,1],[2,0,4,2],[2,1,3,0],[1,2,1,1]],[[1,2,1,2],[2,0,3,2],[2,1,3,0],[1,2,1,1]],[[1,2,1,1],[2,0,3,2],[2,1,3,0],[1,1,2,2]],[[1,2,1,1],[2,0,3,2],[2,1,3,0],[1,1,3,1]],[[1,2,1,1],[2,0,3,2],[2,1,4,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,3],[2,1,3,0],[1,1,2,1]],[[1,2,1,1],[2,0,4,2],[2,1,3,0],[1,1,2,1]],[[1,2,1,2],[2,0,3,2],[2,1,3,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,2],[2,1,3,0],[0,2,2,2]],[[1,2,1,1],[2,0,3,2],[2,1,3,0],[0,2,3,1]],[[1,2,1,1],[2,0,3,2],[2,1,3,0],[0,3,2,1]],[[1,2,1,1],[2,0,3,2],[2,1,4,0],[0,2,2,1]],[[1,2,1,1],[2,0,3,3],[2,1,3,0],[0,2,2,1]],[[1,2,1,1],[2,0,4,2],[2,1,3,0],[0,2,2,1]],[[1,2,1,2],[2,0,3,2],[2,1,3,0],[0,2,2,1]],[[1,2,1,1],[2,0,3,2],[2,1,2,3],[1,2,1,0]],[[1,2,1,1],[2,0,3,3],[2,1,2,2],[1,2,1,0]],[[1,2,1,1],[2,0,4,2],[2,1,2,2],[1,2,1,0]],[[1,2,1,2],[2,0,3,2],[2,1,2,2],[1,2,1,0]],[[1,2,1,1],[2,0,3,2],[2,1,2,2],[1,2,0,2]],[[1,2,1,1],[2,0,3,2],[2,1,2,3],[1,2,0,1]],[[1,2,1,1],[2,0,3,3],[2,1,2,2],[1,2,0,1]],[[1,2,1,1],[2,0,4,2],[2,1,2,2],[1,2,0,1]],[[1,2,1,2],[2,0,3,2],[2,1,2,2],[1,2,0,1]],[[1,0,3,1],[1,3,3,1],[2,3,3,2],[0,0,0,1]],[[1,0,2,2],[1,3,3,1],[2,3,3,2],[0,0,0,1]],[[1,0,2,1],[1,4,3,1],[2,3,3,2],[0,0,0,1]],[[1,0,2,1],[1,3,4,1],[2,3,3,2],[0,0,0,1]],[[1,2,1,1],[2,0,3,2],[2,1,2,3],[1,1,2,0]],[[1,2,1,1],[2,0,3,3],[2,1,2,2],[1,1,2,0]],[[1,2,1,1],[2,0,4,2],[2,1,2,2],[1,1,2,0]],[[1,2,1,2],[2,0,3,2],[2,1,2,2],[1,1,2,0]],[[1,2,1,1],[2,0,3,2],[2,1,2,2],[1,1,1,2]],[[1,2,1,1],[2,0,3,2],[2,1,2,3],[1,1,1,1]],[[1,2,1,1],[2,0,3,3],[2,1,2,2],[1,1,1,1]],[[1,2,1,1],[2,0,4,2],[2,1,2,2],[1,1,1,1]],[[1,2,1,2],[2,0,3,2],[2,1,2,2],[1,1,1,1]],[[1,2,1,1],[2,0,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,1,1],[2,0,3,3],[2,1,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,4,2],[2,1,2,2],[0,2,2,0]],[[1,2,1,2],[2,0,3,2],[2,1,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,3,2],[2,1,2,2],[0,2,1,2]],[[1,2,1,1],[2,0,3,2],[2,1,2,3],[0,2,1,1]],[[1,2,1,1],[2,0,3,3],[2,1,2,2],[0,2,1,1]],[[1,2,1,1],[2,0,4,2],[2,1,2,2],[0,2,1,1]],[[1,2,1,2],[2,0,3,2],[2,1,2,2],[0,2,1,1]],[[1,2,1,1],[2,0,3,3],[2,1,2,1],[1,2,2,0]],[[1,2,1,1],[2,0,4,2],[2,1,2,1],[1,2,2,0]],[[1,2,1,2],[2,0,3,2],[2,1,2,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,3],[2,1,2,0],[1,2,2,1]],[[1,2,1,1],[2,0,4,2],[2,1,2,0],[1,2,2,1]],[[1,2,1,2],[2,0,3,2],[2,1,2,0],[1,2,2,1]],[[1,2,1,1],[2,0,3,2],[2,1,1,3],[1,2,2,0]],[[1,2,1,1],[2,0,3,3],[2,1,1,2],[1,2,2,0]],[[1,2,1,1],[2,0,4,2],[2,1,1,2],[1,2,2,0]],[[1,2,1,2],[2,0,3,2],[2,1,1,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,2],[2,1,1,2],[1,2,1,2]],[[1,2,1,1],[2,0,3,2],[2,1,1,3],[1,2,1,1]],[[1,2,1,1],[2,0,3,3],[2,1,1,2],[1,2,1,1]],[[1,2,1,1],[2,0,4,2],[2,1,1,2],[1,2,1,1]],[[1,2,1,2],[2,0,3,2],[2,1,1,2],[1,2,1,1]],[[1,2,1,1],[2,0,3,2],[2,1,1,2],[1,1,2,2]],[[1,2,1,1],[2,0,3,2],[2,1,1,2],[1,1,3,1]],[[1,2,1,1],[2,0,3,2],[2,1,1,3],[1,1,2,1]],[[1,2,1,1],[2,0,3,3],[2,1,1,2],[1,1,2,1]],[[1,2,1,1],[2,0,4,2],[2,1,1,2],[1,1,2,1]],[[1,2,1,2],[2,0,3,2],[2,1,1,2],[1,1,2,1]],[[1,2,1,1],[2,0,3,2],[2,1,1,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,2],[2,1,1,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,2],[2,1,1,2],[0,3,2,1]],[[1,2,1,1],[2,0,3,2],[2,1,1,3],[0,2,2,1]],[[1,2,1,1],[2,0,3,3],[2,1,1,2],[0,2,2,1]],[[1,2,1,1],[2,0,4,2],[2,1,1,2],[0,2,2,1]],[[1,2,1,2],[2,0,3,2],[2,1,1,2],[0,2,2,1]],[[1,2,1,1],[2,0,3,3],[2,1,1,1],[1,2,2,1]],[[1,2,1,1],[2,0,4,2],[2,1,1,1],[1,2,2,1]],[[1,2,1,2],[2,0,3,2],[2,1,1,1],[1,2,2,1]],[[1,2,1,1],[2,0,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,1,1],[2,0,3,3],[1,3,3,2],[1,0,0,1]],[[1,2,1,1],[2,0,4,2],[1,3,3,2],[1,0,0,1]],[[1,2,1,2],[2,0,3,2],[1,3,3,2],[1,0,0,1]],[[1,2,1,1],[2,0,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,1,1],[2,0,3,3],[1,3,3,2],[0,1,0,1]],[[1,2,1,1],[2,0,4,2],[1,3,3,2],[0,1,0,1]],[[1,2,1,2],[2,0,3,2],[1,3,3,2],[0,1,0,1]],[[1,2,1,1],[2,0,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,2],[1,4,3,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,3],[1,3,3,1],[1,1,1,0]],[[1,2,1,1],[2,0,4,2],[1,3,3,1],[1,1,1,0]],[[1,2,1,2],[2,0,3,2],[1,3,3,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,2],[1,3,4,1],[1,1,0,1]],[[1,2,1,1],[2,0,3,2],[1,4,3,1],[1,1,0,1]],[[1,2,1,1],[2,0,3,3],[1,3,3,1],[1,1,0,1]],[[1,2,1,1],[2,0,4,2],[1,3,3,1],[1,1,0,1]],[[1,2,1,2],[2,0,3,2],[1,3,3,1],[1,1,0,1]],[[1,2,1,1],[2,0,3,2],[1,3,3,1],[1,0,3,0]],[[1,2,1,1],[2,0,3,2],[1,3,4,1],[1,0,2,0]],[[1,2,1,1],[2,0,3,2],[1,4,3,1],[1,0,2,0]],[[1,2,1,1],[2,0,3,3],[1,3,3,1],[1,0,2,0]],[[1,2,1,1],[2,0,4,2],[1,3,3,1],[1,0,2,0]],[[1,2,1,2],[2,0,3,2],[1,3,3,1],[1,0,2,0]],[[1,2,1,1],[2,0,3,2],[1,3,4,1],[1,0,1,1]],[[1,2,1,1],[2,0,3,2],[1,4,3,1],[1,0,1,1]],[[1,2,1,1],[2,0,3,3],[1,3,3,1],[1,0,1,1]],[[1,2,1,1],[2,0,4,2],[1,3,3,1],[1,0,1,1]],[[1,2,1,2],[2,0,3,2],[1,3,3,1],[1,0,1,1]],[[1,2,1,1],[2,0,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,1,1],[2,0,3,2],[1,3,4,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,2],[1,4,3,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,3],[1,3,3,1],[0,2,1,0]],[[1,2,1,1],[2,0,4,2],[1,3,3,1],[0,2,1,0]],[[1,2,1,2],[2,0,3,2],[1,3,3,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,2],[1,3,3,1],[0,3,0,1]],[[1,2,1,1],[2,0,3,2],[1,3,4,1],[0,2,0,1]],[[1,2,1,1],[2,0,3,2],[1,4,3,1],[0,2,0,1]],[[1,0,2,2],[1,3,3,2],[0,0,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,4,2],[0,0,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,3],[0,0,2,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,2],[0,0,2,3],[1,2,2,1]],[[1,0,2,1],[1,3,3,2],[0,0,2,2],[1,2,3,1]],[[1,0,2,1],[1,3,3,2],[0,0,2,2],[1,2,2,2]],[[1,0,2,2],[1,3,3,2],[0,0,3,2],[0,2,2,1]],[[1,0,2,1],[1,3,4,2],[0,0,3,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,3],[0,0,3,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[0,0,3,3],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[0,0,3,2],[0,2,2,2]],[[1,0,2,2],[1,3,3,2],[0,0,3,2],[1,1,2,1]],[[1,0,2,1],[1,3,4,2],[0,0,3,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,3],[0,0,3,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,0,3,3],[1,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,0,3,2],[1,1,2,2]],[[1,0,2,2],[1,3,3,2],[0,0,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,4,2],[0,0,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,3],[0,0,3,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,2],[0,0,3,3],[1,2,1,1]],[[1,0,2,1],[1,3,3,2],[0,0,3,2],[1,2,1,2]],[[1,0,2,2],[1,3,3,2],[0,0,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,4,2],[0,0,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,3],[0,0,3,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,2],[0,0,3,3],[1,2,2,0]],[[1,0,2,2],[1,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,4,2],[0,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,3],[0,1,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,2],[0,1,1,3],[1,2,2,1]],[[1,0,2,1],[1,3,3,2],[0,1,1,2],[1,3,2,1]],[[1,0,2,1],[1,3,3,2],[0,1,1,2],[1,2,3,1]],[[1,0,2,1],[1,3,3,2],[0,1,1,2],[1,2,2,2]],[[1,0,2,2],[1,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,4,2],[0,1,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,3],[0,1,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,2],[0,1,2,3],[1,2,1,1]],[[1,0,2,1],[1,3,3,2],[0,1,2,2],[1,2,1,2]],[[1,0,2,2],[1,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,4,2],[0,1,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,3],[0,1,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,2],[0,1,2,3],[1,2,2,0]],[[1,0,2,2],[1,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,4,2],[0,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,3],[0,1,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,2],[0,1,4,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,2],[0,1,3,0],[1,3,2,1]],[[1,0,2,1],[1,3,3,2],[0,1,3,0],[1,2,3,1]],[[1,0,2,1],[1,3,3,2],[0,1,3,0],[1,2,2,2]],[[1,0,2,2],[1,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,4,2],[0,1,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,3,3],[0,1,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,3,2],[0,1,4,1],[1,2,1,1]],[[1,0,2,2],[1,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,4,2],[0,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,3],[0,1,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,2],[0,1,4,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,2],[0,1,3,1],[1,3,2,0]],[[1,0,2,1],[1,3,3,2],[0,1,3,1],[1,2,3,0]],[[1,0,2,2],[1,3,3,2],[0,1,3,2],[1,0,2,1]],[[1,0,2,1],[1,3,4,2],[0,1,3,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,3],[0,1,3,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[0,1,3,3],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[0,1,3,2],[1,0,2,2]],[[1,0,2,2],[1,3,3,2],[0,1,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,4,2],[0,1,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,3],[0,1,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,1,3,3],[1,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,1,3,2],[1,1,1,2]],[[1,0,2,2],[1,3,3,2],[0,1,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,4,2],[0,1,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,3],[0,1,3,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,1,1],[2,0,3,3],[1,3,3,1],[0,2,0,1]],[[1,2,1,1],[2,0,4,2],[1,3,3,1],[0,2,0,1]],[[1,2,1,2],[2,0,3,2],[1,3,3,1],[0,2,0,1]],[[1,0,2,2],[1,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,4,2],[0,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,3],[0,2,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,0,3],[1,2,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,0,2],[1,3,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,0,2],[1,2,3,1]],[[1,0,2,1],[1,3,3,2],[0,2,0,2],[1,2,2,2]],[[1,0,2,2],[1,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,4,2],[0,2,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,3],[0,2,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,1,3],[1,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,1,2],[1,1,3,1]],[[1,0,2,1],[1,3,3,2],[0,2,1,2],[1,1,2,2]],[[1,0,2,2],[1,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,0,2,1],[1,3,4,2],[0,2,2,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,3],[0,2,2,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,2,3],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,2,2],[1,0,2,2]],[[1,0,2,2],[1,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,0,2,1],[1,3,4,2],[0,2,2,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,3],[0,2,2,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,2,2,3],[1,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,2,2,2],[1,1,1,2]],[[1,0,2,2],[1,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,4,2],[0,2,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,3],[0,2,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,2],[0,2,2,3],[1,1,2,0]],[[1,0,2,2],[1,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,4,2],[0,2,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,3],[0,2,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,2],[0,2,2,3],[1,2,0,1]],[[1,0,2,1],[1,3,3,2],[0,2,2,2],[1,2,0,2]],[[1,0,2,2],[1,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,4,2],[0,2,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,3],[0,2,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,1,1],[2,0,3,2],[1,3,3,1],[0,1,3,0]],[[1,2,1,1],[2,0,3,2],[1,3,4,1],[0,1,2,0]],[[1,2,1,1],[2,0,3,2],[1,4,3,1],[0,1,2,0]],[[1,2,1,1],[2,0,3,3],[1,3,3,1],[0,1,2,0]],[[1,2,1,1],[2,0,4,2],[1,3,3,1],[0,1,2,0]],[[1,0,2,2],[1,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,4,2],[0,2,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,3,3],[0,2,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,4,0],[1,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,3,0],[1,1,3,1]],[[1,0,2,1],[1,3,3,2],[0,2,3,0],[1,1,2,2]],[[1,0,2,2],[1,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,0,2,1],[1,3,4,2],[0,2,3,0],[1,2,1,1]],[[1,0,2,1],[1,3,3,3],[0,2,3,0],[1,2,1,1]],[[1,0,2,1],[1,3,3,2],[0,2,4,0],[1,2,1,1]],[[1,0,2,2],[1,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,0,2,1],[1,3,4,2],[0,2,3,1],[1,0,2,1]],[[1,0,2,1],[1,3,3,3],[0,2,3,1],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,4,1],[1,0,2,1]],[[1,0,2,2],[1,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,4,2],[0,2,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,3,3],[0,2,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,2,4,1],[1,1,1,1]],[[1,0,2,2],[1,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,0,2,1],[1,3,4,2],[0,2,3,1],[1,1,2,0]],[[1,0,2,1],[1,3,3,3],[0,2,3,1],[1,1,2,0]],[[1,0,2,1],[1,3,3,2],[0,2,4,1],[1,1,2,0]],[[1,0,2,1],[1,3,3,2],[0,2,3,1],[1,1,3,0]],[[1,0,2,2],[1,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,4,2],[0,2,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,3,3],[0,2,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,3,2],[0,2,4,1],[1,2,0,1]],[[1,0,2,2],[1,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,0,2,1],[1,3,4,2],[0,2,3,1],[1,2,1,0]],[[1,0,2,1],[1,3,3,3],[0,2,3,1],[1,2,1,0]],[[1,0,2,1],[1,3,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,1,2],[2,0,3,2],[1,3,3,1],[0,1,2,0]],[[1,2,1,1],[2,0,3,2],[1,3,4,1],[0,1,1,1]],[[1,2,1,1],[2,0,3,2],[1,4,3,1],[0,1,1,1]],[[1,2,1,1],[2,0,3,3],[1,3,3,1],[0,1,1,1]],[[1,2,1,1],[2,0,4,2],[1,3,3,1],[0,1,1,1]],[[1,2,1,2],[2,0,3,2],[1,3,3,1],[0,1,1,1]],[[1,2,1,1],[2,0,3,2],[1,3,4,1],[0,0,2,1]],[[1,0,2,2],[1,3,3,2],[0,2,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,4,2],[0,2,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,3],[0,2,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,3,3],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[0,2,3,2],[0,0,2,2]],[[1,0,2,2],[1,3,3,2],[0,2,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[0,2,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[0,2,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,2,3,3],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,2,3,2],[0,1,1,2]],[[1,0,2,2],[1,3,3,2],[0,2,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[0,2,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[0,2,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[0,2,3,3],[0,1,2,0]],[[1,2,1,1],[2,0,3,3],[1,3,3,1],[0,0,2,1]],[[1,2,1,1],[2,0,4,2],[1,3,3,1],[0,0,2,1]],[[1,2,1,2],[2,0,3,2],[1,3,3,1],[0,0,2,1]],[[1,0,2,2],[1,3,3,2],[0,2,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,4,2],[0,2,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,3],[0,2,3,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,1,1],[2,0,3,2],[1,3,4,0],[1,1,1,1]],[[1,2,1,1],[2,0,3,2],[1,4,3,0],[1,1,1,1]],[[1,2,1,1],[2,0,3,3],[1,3,3,0],[1,1,1,1]],[[1,2,1,1],[2,0,4,2],[1,3,3,0],[1,1,1,1]],[[1,2,1,2],[2,0,3,2],[1,3,3,0],[1,1,1,1]],[[1,2,1,1],[2,0,3,2],[1,3,3,0],[1,0,2,2]],[[1,2,1,1],[2,0,3,2],[1,3,3,0],[1,0,3,1]],[[1,2,1,1],[2,0,3,2],[1,3,4,0],[1,0,2,1]],[[1,2,1,1],[2,0,3,2],[1,4,3,0],[1,0,2,1]],[[1,2,1,1],[2,0,3,3],[1,3,3,0],[1,0,2,1]],[[1,2,1,1],[2,0,4,2],[1,3,3,0],[1,0,2,1]],[[1,2,1,2],[2,0,3,2],[1,3,3,0],[1,0,2,1]],[[1,0,2,2],[1,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,0,2,1],[1,3,4,2],[0,3,0,1],[1,2,2,1]],[[1,0,2,1],[1,3,3,3],[0,3,0,1],[1,2,2,1]],[[1,0,2,2],[1,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,4,2],[0,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,3],[0,3,0,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,3,0,3],[1,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,3,0,2],[1,1,3,1]],[[1,0,2,1],[1,3,3,2],[0,3,0,2],[1,1,2,2]],[[1,0,2,2],[1,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,0,2,1],[1,3,4,2],[0,3,0,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,3],[0,3,0,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,2],[0,3,0,3],[1,2,1,1]],[[1,0,2,1],[1,3,3,2],[0,3,0,2],[1,2,1,2]],[[1,0,2,2],[1,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,0,2,1],[1,3,4,2],[0,3,0,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,3],[0,3,0,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,2],[0,3,0,3],[1,2,2,0]],[[1,0,2,2],[1,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,0,2,1],[1,3,4,2],[0,3,1,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,3],[0,3,1,0],[1,2,2,1]],[[1,0,2,2],[1,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,0,2,1],[1,3,4,2],[0,3,1,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,3],[0,3,1,1],[1,2,2,0]],[[1,0,2,2],[1,3,3,2],[0,3,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,4,2],[0,3,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,3],[0,3,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,3,1,3],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,3,1,2],[0,1,3,1]],[[1,0,2,1],[1,3,3,2],[0,3,1,2],[0,1,2,2]],[[1,0,2,2],[1,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,0,2,1],[1,3,4,2],[0,3,1,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,3],[0,3,1,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,3,1,3],[1,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,3,1,2],[1,1,1,2]],[[1,0,2,2],[1,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,3,4,2],[0,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,3],[0,3,1,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,2],[0,3,1,3],[1,1,2,0]],[[1,0,2,2],[1,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,0,2,1],[1,3,4,2],[0,3,1,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,3],[0,3,1,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,2],[0,3,1,3],[1,2,0,1]],[[1,0,2,1],[1,3,3,2],[0,3,1,2],[1,2,0,2]],[[1,0,2,2],[1,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,0,2,1],[1,3,4,2],[0,3,1,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,3],[0,3,1,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,2],[0,3,1,3],[1,2,1,0]],[[1,2,1,1],[2,0,3,2],[1,3,3,0],[0,3,1,1]],[[1,2,1,1],[2,0,3,2],[1,3,4,0],[0,2,1,1]],[[1,2,1,1],[2,0,3,2],[1,4,3,0],[0,2,1,1]],[[1,0,2,2],[1,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,0,2,1],[1,3,4,2],[0,3,2,0],[1,1,2,1]],[[1,0,2,1],[1,3,3,3],[0,3,2,0],[1,1,2,1]],[[1,0,2,2],[1,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,0,2,1],[1,3,4,2],[0,3,2,0],[1,2,1,1]],[[1,0,2,1],[1,3,3,3],[0,3,2,0],[1,2,1,1]],[[1,0,2,2],[1,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,0,2,1],[1,3,4,2],[0,3,2,1],[1,1,1,1]],[[1,0,2,1],[1,3,3,3],[0,3,2,1],[1,1,1,1]],[[1,0,2,2],[1,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,0,2,1],[1,3,4,2],[0,3,2,1],[1,1,2,0]],[[1,0,2,1],[1,3,3,3],[0,3,2,1],[1,1,2,0]],[[1,0,2,2],[1,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,0,2,1],[1,3,4,2],[0,3,2,1],[1,2,0,1]],[[1,0,2,1],[1,3,3,3],[0,3,2,1],[1,2,0,1]],[[1,0,2,2],[1,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,0,2,1],[1,3,4,2],[0,3,2,1],[1,2,1,0]],[[1,0,2,1],[1,3,3,3],[0,3,2,1],[1,2,1,0]],[[1,2,1,1],[2,0,3,3],[1,3,3,0],[0,2,1,1]],[[1,2,1,1],[2,0,4,2],[1,3,3,0],[0,2,1,1]],[[1,2,1,2],[2,0,3,2],[1,3,3,0],[0,2,1,1]],[[1,0,2,2],[1,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,4,2],[0,3,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,3],[0,3,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[0,3,2,3],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[0,3,2,2],[0,0,2,2]],[[1,0,2,2],[1,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[0,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[0,3,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,3,2,3],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,3,2,2],[0,1,1,2]],[[1,0,2,2],[1,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[0,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[0,3,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[0,3,2,3],[0,1,2,0]],[[1,0,2,2],[1,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,4,2],[0,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,3],[0,3,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,2],[0,3,2,3],[0,2,0,1]],[[1,0,2,1],[1,3,3,2],[0,3,2,2],[0,2,0,2]],[[1,0,2,2],[1,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,4,2],[0,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,3],[0,3,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,1,1],[2,0,3,2],[1,3,3,0],[0,1,2,2]],[[1,2,1,1],[2,0,3,2],[1,3,3,0],[0,1,3,1]],[[1,2,1,1],[2,0,3,2],[1,3,4,0],[0,1,2,1]],[[1,2,1,1],[2,0,3,2],[1,4,3,0],[0,1,2,1]],[[1,2,1,1],[2,0,3,3],[1,3,3,0],[0,1,2,1]],[[1,2,1,1],[2,0,4,2],[1,3,3,0],[0,1,2,1]],[[1,2,1,2],[2,0,3,2],[1,3,3,0],[0,1,2,1]],[[1,2,1,1],[2,0,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,1,1],[2,0,3,3],[1,3,2,2],[1,1,1,0]],[[1,2,1,1],[2,0,4,2],[1,3,2,2],[1,1,1,0]],[[1,0,2,2],[1,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,4,2],[0,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,3],[0,3,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,3,4,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[0,3,3,0],[0,1,3,1]],[[1,0,2,1],[1,3,3,2],[0,3,3,0],[0,1,2,2]],[[1,0,2,2],[1,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,4,2],[0,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,3,3],[0,3,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,3,2],[0,3,4,0],[0,2,1,1]],[[1,2,1,2],[2,0,3,2],[1,3,2,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,2],[1,3,2,2],[1,1,0,2]],[[1,2,1,1],[2,0,3,2],[1,3,2,3],[1,1,0,1]],[[1,2,1,1],[2,0,3,3],[1,3,2,2],[1,1,0,1]],[[1,2,1,1],[2,0,4,2],[1,3,2,2],[1,1,0,1]],[[1,2,1,2],[2,0,3,2],[1,3,2,2],[1,1,0,1]],[[1,0,2,2],[1,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,4,2],[0,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,3,3],[0,3,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[0,3,4,1],[0,0,2,1]],[[1,0,2,2],[1,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[0,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[0,3,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[0,3,4,1],[0,1,1,1]],[[1,0,2,2],[1,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[0,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[0,3,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[0,3,4,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[0,3,3,1],[0,1,3,0]],[[1,0,2,2],[1,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,4,2],[0,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,3,3],[0,3,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,3,2],[0,3,4,1],[0,2,0,1]],[[1,0,2,2],[1,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,4,2],[0,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,3,3],[0,3,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,2],[1,3,2,3],[1,0,2,0]],[[1,2,1,1],[2,0,3,3],[1,3,2,2],[1,0,2,0]],[[1,2,1,1],[2,0,4,2],[1,3,2,2],[1,0,2,0]],[[1,2,1,2],[2,0,3,2],[1,3,2,2],[1,0,2,0]],[[1,2,1,1],[2,0,3,2],[1,3,2,2],[1,0,1,2]],[[1,2,1,1],[2,0,3,2],[1,3,2,3],[1,0,1,1]],[[1,2,1,1],[2,0,3,3],[1,3,2,2],[1,0,1,1]],[[1,0,2,2],[1,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,0,2,1],[1,3,4,2],[0,3,3,1],[1,2,0,0]],[[1,0,2,1],[1,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,2,1,1],[2,0,4,2],[1,3,2,2],[1,0,1,1]],[[1,2,1,2],[2,0,3,2],[1,3,2,2],[1,0,1,1]],[[1,2,1,1],[2,0,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,1,1],[2,0,3,3],[1,3,2,2],[0,2,1,0]],[[1,2,1,1],[2,0,4,2],[1,3,2,2],[0,2,1,0]],[[1,0,2,2],[1,3,3,2],[0,3,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,4,2],[0,3,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,3,3],[0,3,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,1,2],[2,0,3,2],[1,3,2,2],[0,2,1,0]],[[1,2,1,1],[2,0,3,2],[1,3,2,2],[0,2,0,2]],[[1,2,1,1],[2,0,3,2],[1,3,2,3],[0,2,0,1]],[[1,2,1,1],[2,0,3,3],[1,3,2,2],[0,2,0,1]],[[1,2,1,1],[2,0,4,2],[1,3,2,2],[0,2,0,1]],[[1,2,1,2],[2,0,3,2],[1,3,2,2],[0,2,0,1]],[[1,2,1,1],[2,0,3,2],[1,3,2,3],[0,1,2,0]],[[1,2,1,1],[2,0,3,3],[1,3,2,2],[0,1,2,0]],[[1,2,1,1],[2,0,4,2],[1,3,2,2],[0,1,2,0]],[[1,2,1,2],[2,0,3,2],[1,3,2,2],[0,1,2,0]],[[1,2,1,1],[2,0,3,2],[1,3,2,2],[0,1,1,2]],[[1,2,1,1],[2,0,3,2],[1,3,2,3],[0,1,1,1]],[[1,2,1,1],[2,0,3,3],[1,3,2,2],[0,1,1,1]],[[1,2,1,1],[2,0,4,2],[1,3,2,2],[0,1,1,1]],[[1,2,1,2],[2,0,3,2],[1,3,2,2],[0,1,1,1]],[[1,2,1,1],[2,0,3,2],[1,3,2,2],[0,0,2,2]],[[1,2,1,1],[2,0,3,2],[1,3,2,3],[0,0,2,1]],[[1,2,1,1],[2,0,3,3],[1,3,2,2],[0,0,2,1]],[[1,2,1,1],[2,0,4,2],[1,3,2,2],[0,0,2,1]],[[1,2,1,2],[2,0,3,2],[1,3,2,2],[0,0,2,1]],[[1,2,1,1],[2,0,3,2],[1,3,2,1],[0,2,3,0]],[[1,2,1,1],[2,0,3,2],[1,3,2,1],[0,3,2,0]],[[1,2,1,1],[2,0,3,2],[1,4,2,1],[0,2,2,0]],[[1,2,1,1],[2,0,3,2],[1,3,2,0],[0,2,2,2]],[[1,2,1,1],[2,0,3,2],[1,3,2,0],[0,2,3,1]],[[1,2,1,1],[2,0,3,2],[1,3,2,0],[0,3,2,1]],[[1,2,1,1],[2,0,3,2],[1,4,2,0],[0,2,2,1]],[[1,2,1,1],[2,0,3,2],[1,3,1,2],[1,0,2,2]],[[1,2,1,1],[2,0,3,2],[1,3,1,2],[1,0,3,1]],[[1,2,1,1],[2,0,3,2],[1,3,1,3],[1,0,2,1]],[[1,2,1,1],[2,0,3,3],[1,3,1,2],[1,0,2,1]],[[1,2,1,1],[2,0,4,2],[1,3,1,2],[1,0,2,1]],[[1,2,1,2],[2,0,3,2],[1,3,1,2],[1,0,2,1]],[[1,2,1,1],[2,0,3,2],[1,3,1,2],[0,1,2,2]],[[1,2,1,1],[2,0,3,2],[1,3,1,2],[0,1,3,1]],[[1,2,1,1],[2,0,3,2],[1,3,1,3],[0,1,2,1]],[[1,2,1,1],[2,0,3,3],[1,3,1,2],[0,1,2,1]],[[1,2,1,1],[2,0,4,2],[1,3,1,2],[0,1,2,1]],[[1,2,1,2],[2,0,3,2],[1,3,1,2],[0,1,2,1]],[[1,2,1,1],[2,0,3,2],[1,3,0,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,2],[1,3,0,2],[0,2,3,1]],[[1,0,2,2],[1,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,4,2],[1,0,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,3],[1,0,1,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,2],[1,0,1,3],[1,2,2,1]],[[1,0,2,1],[1,3,3,2],[1,0,1,2],[1,2,3,1]],[[1,0,2,1],[1,3,3,2],[1,0,1,2],[1,2,2,2]],[[1,0,2,2],[1,3,3,2],[1,0,2,2],[0,2,2,1]],[[1,0,2,1],[1,3,4,2],[1,0,2,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,3],[1,0,2,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[1,0,2,3],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[1,0,2,2],[0,2,3,1]],[[1,0,2,1],[1,3,3,2],[1,0,2,2],[0,2,2,2]],[[1,0,2,2],[1,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,4,2],[1,0,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,3],[1,0,2,2],[1,2,1,1]],[[1,0,2,1],[1,3,3,2],[1,0,2,3],[1,2,1,1]],[[1,0,2,1],[1,3,3,2],[1,0,2,2],[1,2,1,2]],[[1,0,2,2],[1,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,4,2],[1,0,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,3],[1,0,2,2],[1,2,2,0]],[[1,0,2,1],[1,3,3,2],[1,0,2,3],[1,2,2,0]],[[1,0,2,2],[1,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,4,2],[1,0,3,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,3],[1,0,3,0],[1,2,2,1]],[[1,0,2,2],[1,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,4,2],[1,0,3,1],[1,2,1,1]],[[1,0,2,1],[1,3,3,3],[1,0,3,1],[1,2,1,1]],[[1,0,2,2],[1,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,4,2],[1,0,3,1],[1,2,2,0]],[[1,0,2,1],[1,3,3,3],[1,0,3,1],[1,2,2,0]],[[1,0,2,2],[1,3,3,2],[1,0,3,2],[0,1,2,1]],[[1,0,2,1],[1,3,4,2],[1,0,3,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,3],[1,0,3,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[1,0,3,3],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[1,0,3,2],[0,1,2,2]],[[1,0,2,2],[1,3,3,2],[1,0,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,4,2],[1,0,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,3],[1,0,3,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,2],[1,0,3,3],[0,2,1,1]],[[1,0,2,1],[1,3,3,2],[1,0,3,2],[0,2,1,2]],[[1,0,2,2],[1,3,3,2],[1,0,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,4,2],[1,0,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,3],[1,0,3,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,1,1],[2,0,3,2],[1,3,0,2],[0,3,2,1]],[[1,2,1,1],[2,0,3,2],[1,3,0,3],[0,2,2,1]],[[1,2,1,1],[2,0,3,2],[1,4,0,2],[0,2,2,1]],[[1,2,1,1],[2,0,3,3],[1,3,0,2],[0,2,2,1]],[[1,2,1,1],[2,0,4,2],[1,3,0,2],[0,2,2,1]],[[1,2,1,2],[2,0,3,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,2],[1,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,4,2],[1,1,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,3],[1,1,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[1,1,1,3],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[1,1,1,2],[0,2,3,1]],[[1,0,2,1],[1,3,3,2],[1,1,1,2],[0,2,2,2]],[[1,0,2,2],[1,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,0,2,1],[1,3,4,2],[1,1,2,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,3],[1,1,2,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,2],[1,1,2,3],[0,2,1,1]],[[1,0,2,1],[1,3,3,2],[1,1,2,2],[0,2,1,2]],[[1,0,2,2],[1,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,4,2],[1,1,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,3],[1,1,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,0,2,2],[1,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,0,2,1],[1,3,4,2],[1,1,3,0],[0,2,2,1]],[[1,0,2,1],[1,3,3,3],[1,1,3,0],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[1,1,4,0],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[1,1,3,0],[0,2,3,1]],[[1,0,2,1],[1,3,3,2],[1,1,3,0],[0,2,2,2]],[[1,0,3,1],[1,3,3,2],[1,1,3,0],[1,2,2,0]],[[1,0,2,2],[1,3,3,2],[1,1,3,0],[1,2,2,0]],[[1,0,2,1],[1,4,3,2],[1,1,3,0],[1,2,2,0]],[[1,0,2,1],[1,3,4,2],[1,1,3,0],[1,2,2,0]],[[1,0,2,2],[1,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,4,2],[1,1,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,3,3],[1,1,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,3,2],[1,1,4,1],[0,2,1,1]],[[1,0,2,2],[1,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,0,2,1],[1,3,4,2],[1,1,3,1],[0,2,2,0]],[[1,0,2,1],[1,3,3,3],[1,1,3,1],[0,2,2,0]],[[1,0,2,1],[1,3,3,2],[1,1,4,1],[0,2,2,0]],[[1,0,2,1],[1,3,3,2],[1,1,3,1],[0,2,3,0]],[[1,0,2,2],[1,3,3,2],[1,1,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,4,2],[1,1,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,3],[1,1,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[1,1,3,3],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[1,1,3,2],[0,0,2,2]],[[1,0,2,2],[1,3,3,2],[1,1,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[1,1,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[1,1,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[1,1,3,3],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[1,1,3,2],[0,1,1,2]],[[1,0,2,2],[1,3,3,2],[1,1,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[1,1,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[1,1,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,0,2,2],[1,3,3,2],[1,1,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,4,2],[1,1,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,3],[1,1,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,2],[1,1,3,3],[1,0,1,1]],[[1,0,2,1],[1,3,3,2],[1,1,3,2],[1,0,1,2]],[[1,0,2,2],[1,3,3,2],[1,1,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,4,2],[1,1,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,3],[1,1,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,1,1],[2,0,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,1,1],[2,0,3,2],[1,2,3,1],[0,3,2,0]],[[1,2,1,1],[2,0,3,2],[1,2,4,1],[0,2,2,0]],[[1,2,1,1],[2,0,3,3],[1,2,3,1],[0,2,2,0]],[[1,2,1,1],[2,0,4,2],[1,2,3,1],[0,2,2,0]],[[1,2,1,2],[2,0,3,2],[1,2,3,1],[0,2,2,0]],[[1,2,1,1],[2,0,3,2],[1,2,4,1],[0,2,1,1]],[[1,2,1,1],[2,0,3,3],[1,2,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,4,2],[1,2,3,1],[0,2,1,1]],[[1,2,1,2],[2,0,3,2],[1,2,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,3,2],[1,2,3,0],[0,2,2,2]],[[1,2,1,1],[2,0,3,2],[1,2,3,0],[0,2,3,1]],[[1,2,1,1],[2,0,3,2],[1,2,3,0],[0,3,2,1]],[[1,2,1,1],[2,0,3,2],[1,2,4,0],[0,2,2,1]],[[1,2,1,1],[2,0,3,3],[1,2,3,0],[0,2,2,1]],[[1,2,1,1],[2,0,4,2],[1,2,3,0],[0,2,2,1]],[[1,2,1,2],[2,0,3,2],[1,2,3,0],[0,2,2,1]],[[1,0,2,2],[1,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,4,2],[1,2,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,3],[1,2,0,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,0,3],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,0,2],[0,2,3,1]],[[1,0,2,1],[1,3,3,2],[1,2,0,2],[0,2,2,2]],[[1,0,2,2],[1,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,4,2],[1,2,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,3],[1,2,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,1,3],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,1,2],[0,1,3,1]],[[1,0,2,1],[1,3,3,2],[1,2,1,2],[0,1,2,2]],[[1,0,2,2],[1,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,0,2,1],[1,3,4,2],[1,2,1,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,3],[1,2,1,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,1,3],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,1,2],[1,0,2,2]],[[1,0,2,2],[1,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,4,2],[1,2,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,3],[1,2,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,2,3],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,2,2],[0,0,2,2]],[[1,0,2,2],[1,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[1,2,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[1,2,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[1,2,2,3],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[1,2,2,2],[0,1,1,2]],[[1,0,2,2],[1,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[1,2,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[1,2,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[1,2,2,3],[0,1,2,0]],[[1,0,2,2],[1,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,4,2],[1,2,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,3],[1,2,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,2],[1,2,2,3],[0,2,0,1]],[[1,0,2,1],[1,3,3,2],[1,2,2,2],[0,2,0,2]],[[1,0,2,2],[1,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,4,2],[1,2,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,3],[1,2,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,1,1],[2,0,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,1,1],[2,0,3,3],[1,2,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,4,2],[1,2,2,2],[0,2,2,0]],[[1,2,1,2],[2,0,3,2],[1,2,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,3,2],[1,2,2,2],[0,2,1,2]],[[1,0,2,2],[1,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,4,2],[1,2,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,3],[1,2,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,2],[1,2,2,3],[1,0,1,1]],[[1,0,2,1],[1,3,3,2],[1,2,2,2],[1,0,1,2]],[[1,0,2,2],[1,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,4,2],[1,2,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,3],[1,2,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,2],[1,2,2,3],[1,0,2,0]],[[1,0,2,2],[1,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,4,2],[1,2,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,3],[1,2,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,2],[1,2,2,3],[1,1,0,1]],[[1,0,2,2],[1,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,0,2,1],[1,3,4,2],[1,2,2,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,3],[1,2,2,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,2],[1,2,2,3],[0,2,1,1]],[[1,2,1,1],[2,0,3,3],[1,2,2,2],[0,2,1,1]],[[1,2,1,1],[2,0,4,2],[1,2,2,2],[0,2,1,1]],[[1,2,1,2],[2,0,3,2],[1,2,2,2],[0,2,1,1]],[[1,2,1,1],[2,0,3,2],[1,2,1,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,2],[1,2,1,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,2],[1,2,1,2],[0,3,2,1]],[[1,2,1,1],[2,0,3,2],[1,2,1,3],[0,2,2,1]],[[1,2,1,1],[2,0,3,3],[1,2,1,2],[0,2,2,1]],[[1,2,1,1],[2,0,4,2],[1,2,1,2],[0,2,2,1]],[[1,2,1,2],[2,0,3,2],[1,2,1,2],[0,2,2,1]],[[1,2,1,1],[2,0,3,2],[1,2,0,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,2],[1,2,0,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,2],[1,2,0,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,2],[1,2,0,2],[2,2,2,1]],[[1,2,1,1],[2,0,3,2],[1,2,0,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,3],[1,2,0,2],[1,2,2,1]],[[1,2,1,1],[2,0,4,2],[1,2,0,2],[1,2,2,1]],[[1,2,1,2],[2,0,3,2],[1,2,0,2],[1,2,2,1]],[[1,0,2,2],[1,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,4,2],[1,2,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,3],[1,2,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,4,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,3,0],[0,1,3,1]],[[1,0,2,1],[1,3,3,2],[1,2,3,0],[0,1,2,2]],[[1,0,2,2],[1,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,4,2],[1,2,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,3,3],[1,2,3,0],[0,2,1,1]],[[1,0,2,1],[1,3,3,2],[1,2,4,0],[0,2,1,1]],[[1,0,2,2],[1,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,4,2],[1,2,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,3,3],[1,2,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,4,0],[1,0,2,1]],[[1,0,3,1],[1,3,3,2],[1,2,3,0],[1,1,2,0]],[[1,0,2,2],[1,3,3,2],[1,2,3,0],[1,1,2,0]],[[1,0,2,1],[1,4,3,2],[1,2,3,0],[1,1,2,0]],[[1,0,2,1],[1,3,4,2],[1,2,3,0],[1,1,2,0]],[[1,0,3,1],[1,3,3,2],[1,2,3,0],[1,2,0,1]],[[1,0,2,2],[1,3,3,2],[1,2,3,0],[1,2,0,1]],[[1,0,2,1],[1,4,3,2],[1,2,3,0],[1,2,0,1]],[[1,0,2,1],[1,3,4,2],[1,2,3,0],[1,2,0,1]],[[1,0,3,1],[1,3,3,2],[1,2,3,0],[1,2,1,0]],[[1,0,2,2],[1,3,3,2],[1,2,3,0],[1,2,1,0]],[[1,0,2,1],[1,4,3,2],[1,2,3,0],[1,2,1,0]],[[1,0,2,1],[1,3,4,2],[1,2,3,0],[1,2,1,0]],[[1,0,2,2],[1,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,4,2],[1,2,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,3,3],[1,2,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[1,2,4,1],[0,0,2,1]],[[1,0,2,2],[1,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[1,2,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[1,2,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[1,2,4,1],[0,1,1,1]],[[1,0,2,2],[1,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[1,2,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[1,2,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[1,2,4,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[1,2,3,1],[0,1,3,0]],[[1,0,2,2],[1,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,4,2],[1,2,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,3,3],[1,2,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,3,2],[1,2,4,1],[0,2,0,1]],[[1,0,2,2],[1,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,4,2],[1,2,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,3,3],[1,2,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,3,2],[1,2,4,1],[0,2,1,0]],[[1,0,2,2],[1,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,0,2,1],[1,3,4,2],[1,2,3,1],[1,0,1,1]],[[1,0,2,1],[1,3,3,3],[1,2,3,1],[1,0,1,1]],[[1,0,2,1],[1,3,3,2],[1,2,4,1],[1,0,1,1]],[[1,0,2,2],[1,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,0,2,1],[1,3,4,2],[1,2,3,1],[1,0,2,0]],[[1,0,2,1],[1,3,3,3],[1,2,3,1],[1,0,2,0]],[[1,0,2,1],[1,3,3,2],[1,2,4,1],[1,0,2,0]],[[1,0,2,2],[1,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,0,2,1],[1,3,4,2],[1,2,3,1],[1,1,0,1]],[[1,0,2,1],[1,3,3,3],[1,2,3,1],[1,1,0,1]],[[1,0,2,2],[1,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,0,2,1],[1,3,4,2],[1,2,3,1],[1,1,1,0]],[[1,0,2,1],[1,3,3,3],[1,2,3,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,2],[1,1,3,1],[1,2,3,0]],[[1,2,1,1],[2,0,3,2],[1,1,3,1],[1,3,2,0]],[[1,2,1,1],[2,0,3,2],[1,1,3,1],[2,2,2,0]],[[1,2,1,1],[2,0,3,2],[1,1,4,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,3],[1,1,3,1],[1,2,2,0]],[[1,2,1,1],[2,0,4,2],[1,1,3,1],[1,2,2,0]],[[1,2,1,2],[2,0,3,2],[1,1,3,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,2],[1,1,4,1],[1,2,1,1]],[[1,2,1,1],[2,0,3,3],[1,1,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,4,2],[1,1,3,1],[1,2,1,1]],[[1,2,1,2],[2,0,3,2],[1,1,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,3,2],[1,1,3,0],[1,2,2,2]],[[1,2,1,1],[2,0,3,2],[1,1,3,0],[1,2,3,1]],[[1,2,1,1],[2,0,3,2],[1,1,3,0],[1,3,2,1]],[[1,2,1,1],[2,0,3,2],[1,1,3,0],[2,2,2,1]],[[1,2,1,1],[2,0,3,2],[1,1,4,0],[1,2,2,1]],[[1,2,1,1],[2,0,3,3],[1,1,3,0],[1,2,2,1]],[[1,2,1,1],[2,0,4,2],[1,1,3,0],[1,2,2,1]],[[1,2,1,2],[2,0,3,2],[1,1,3,0],[1,2,2,1]],[[1,0,2,2],[1,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,4,2],[1,2,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,3,3],[1,2,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,1,1],[2,0,3,2],[1,1,2,3],[1,2,2,0]],[[1,2,1,1],[2,0,3,3],[1,1,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,4,2],[1,1,2,2],[1,2,2,0]],[[1,2,1,2],[2,0,3,2],[1,1,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,2],[1,1,2,2],[1,2,1,2]],[[1,2,1,1],[2,0,3,2],[1,1,2,3],[1,2,1,1]],[[1,2,1,1],[2,0,3,3],[1,1,2,2],[1,2,1,1]],[[1,2,1,1],[2,0,4,2],[1,1,2,2],[1,2,1,1]],[[1,2,1,2],[2,0,3,2],[1,1,2,2],[1,2,1,1]],[[1,2,1,1],[2,0,3,2],[1,1,1,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,2],[1,1,1,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,2],[1,1,1,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,2],[1,1,1,2],[2,2,2,1]],[[1,2,1,1],[2,0,3,2],[1,1,1,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,3],[1,1,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,4,2],[1,1,1,2],[1,2,2,1]],[[1,2,1,2],[2,0,3,2],[1,1,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,3,2],[1,0,3,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,2],[1,0,3,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,2],[1,0,3,3],[0,2,2,1]],[[1,0,2,2],[1,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,0,2,1],[1,3,4,2],[1,2,3,2],[1,0,0,1]],[[1,0,2,1],[1,3,3,3],[1,2,3,2],[1,0,0,1]],[[1,0,2,1],[1,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,1,1],[2,0,3,3],[1,0,3,2],[0,2,2,1]],[[1,2,1,2],[2,0,3,2],[1,0,3,2],[0,2,2,1]],[[1,2,1,1],[2,0,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,1,1],[2,0,3,3],[0,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,4,2],[0,3,3,2],[1,1,0,1]],[[1,2,1,2],[2,0,3,2],[0,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,0,3,2],[0,3,3,1],[2,2,1,0]],[[1,2,1,1],[2,0,3,2],[0,3,4,1],[1,2,1,0]],[[1,2,1,1],[2,0,3,2],[0,4,3,1],[1,2,1,0]],[[1,2,1,1],[2,0,3,3],[0,3,3,1],[1,2,1,0]],[[1,2,1,1],[2,0,4,2],[0,3,3,1],[1,2,1,0]],[[1,2,1,2],[2,0,3,2],[0,3,3,1],[1,2,1,0]],[[1,2,1,1],[2,0,3,2],[0,3,3,1],[1,3,0,1]],[[1,2,1,1],[2,0,3,2],[0,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,0,3,2],[0,3,4,1],[1,2,0,1]],[[1,2,1,1],[2,0,3,2],[0,4,3,1],[1,2,0,1]],[[1,2,1,1],[2,0,3,3],[0,3,3,1],[1,2,0,1]],[[1,2,1,1],[2,0,4,2],[0,3,3,1],[1,2,0,1]],[[1,2,1,2],[2,0,3,2],[0,3,3,1],[1,2,0,1]],[[1,0,2,2],[1,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,0,2,1],[1,3,4,2],[1,3,0,1],[0,2,2,1]],[[1,0,2,1],[1,3,3,3],[1,3,0,1],[0,2,2,1]],[[1,0,2,2],[1,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,0,2,1],[1,3,4,2],[1,3,0,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,3],[1,3,0,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[1,3,0,3],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[1,3,0,2],[0,1,3,1]],[[1,0,2,1],[1,3,3,2],[1,3,0,2],[0,1,2,2]],[[1,0,2,2],[1,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,0,2,1],[1,3,4,2],[1,3,0,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,3],[1,3,0,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,2],[1,3,0,3],[0,2,1,1]],[[1,0,2,1],[1,3,3,2],[1,3,0,2],[0,2,1,2]],[[1,0,2,2],[1,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,0,2,1],[1,3,4,2],[1,3,0,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,3],[1,3,0,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,2],[1,3,0,3],[0,2,2,0]],[[1,0,2,2],[1,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,0,2,1],[1,3,4,2],[1,3,0,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,3],[1,3,0,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[1,3,0,3],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[1,3,0,2],[1,0,2,2]],[[1,0,3,1],[1,3,3,2],[1,3,0,2],[1,2,0,1]],[[1,0,2,2],[1,3,3,2],[1,3,0,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,3],[1,3,0,2],[1,2,0,1]],[[1,0,3,1],[1,3,3,2],[1,3,0,2],[1,2,1,0]],[[1,0,2,2],[1,3,3,2],[1,3,0,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,3],[1,3,0,2],[1,2,1,0]],[[1,2,1,1],[2,0,3,2],[0,3,3,1],[1,1,3,0]],[[1,2,1,1],[2,0,3,2],[0,3,4,1],[1,1,2,0]],[[1,2,1,1],[2,0,3,2],[0,4,3,1],[1,1,2,0]],[[1,2,1,1],[2,0,3,3],[0,3,3,1],[1,1,2,0]],[[1,2,1,1],[2,0,4,2],[0,3,3,1],[1,1,2,0]],[[1,2,1,2],[2,0,3,2],[0,3,3,1],[1,1,2,0]],[[1,2,1,1],[2,0,3,2],[0,3,4,1],[1,1,1,1]],[[1,0,2,2],[1,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,0,2,1],[1,3,4,2],[1,3,1,0],[0,2,2,1]],[[1,0,2,1],[1,3,3,3],[1,3,1,0],[0,2,2,1]],[[1,0,3,1],[1,3,3,2],[1,3,1,0],[1,2,2,0]],[[1,0,2,2],[1,3,3,2],[1,3,1,0],[1,2,2,0]],[[1,0,2,1],[1,4,3,2],[1,3,1,0],[1,2,2,0]],[[1,0,2,1],[1,3,4,2],[1,3,1,0],[1,2,2,0]],[[1,0,2,1],[1,3,3,2],[1,4,1,0],[1,2,2,0]],[[1,0,2,1],[1,3,3,2],[1,3,1,0],[2,2,2,0]],[[1,0,2,1],[1,3,3,2],[1,3,1,0],[1,3,2,0]],[[1,0,2,2],[1,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,0,2,1],[1,3,4,2],[1,3,1,1],[0,2,2,0]],[[1,0,2,1],[1,3,3,3],[1,3,1,1],[0,2,2,0]],[[1,2,1,1],[2,0,3,2],[0,4,3,1],[1,1,1,1]],[[1,2,1,1],[2,0,3,3],[0,3,3,1],[1,1,1,1]],[[1,2,1,1],[2,0,4,2],[0,3,3,1],[1,1,1,1]],[[1,2,1,2],[2,0,3,2],[0,3,3,1],[1,1,1,1]],[[1,2,1,1],[2,0,3,2],[0,3,4,1],[1,0,2,1]],[[1,2,1,1],[2,0,3,3],[0,3,3,1],[1,0,2,1]],[[1,2,1,1],[2,0,4,2],[0,3,3,1],[1,0,2,1]],[[1,2,1,2],[2,0,3,2],[0,3,3,1],[1,0,2,1]],[[1,0,2,2],[1,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[1,3,1,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[1,3,1,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[1,3,1,3],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[1,3,1,2],[0,1,1,2]],[[1,0,2,2],[1,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[1,3,1,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[1,3,1,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[1,3,1,3],[0,1,2,0]],[[1,0,2,2],[1,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,0,2,1],[1,3,4,2],[1,3,1,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,3],[1,3,1,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,2],[1,3,1,3],[0,2,0,1]],[[1,0,2,1],[1,3,3,2],[1,3,1,2],[0,2,0,2]],[[1,0,2,2],[1,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,0,2,1],[1,3,4,2],[1,3,1,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,3],[1,3,1,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,2],[1,3,1,3],[0,2,1,0]],[[1,0,2,2],[1,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,0,2,1],[1,3,4,2],[1,3,1,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,3],[1,3,1,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,2],[1,3,1,3],[1,0,1,1]],[[1,0,2,1],[1,3,3,2],[1,3,1,2],[1,0,1,2]],[[1,0,2,2],[1,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,0,2,1],[1,3,4,2],[1,3,1,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,3],[1,3,1,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,2],[1,3,1,3],[1,0,2,0]],[[1,0,2,2],[1,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,0,2,1],[1,3,4,2],[1,3,1,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,3],[1,3,1,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,2],[1,3,1,3],[1,1,0,1]],[[1,0,2,2],[1,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,0,2,1],[1,3,4,2],[1,3,1,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,3],[1,3,1,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,2],[0,3,3,0],[1,3,1,1]],[[1,2,1,1],[2,0,3,2],[0,3,3,0],[2,2,1,1]],[[1,2,1,1],[2,0,3,2],[0,3,4,0],[1,2,1,1]],[[1,2,1,1],[2,0,3,2],[0,4,3,0],[1,2,1,1]],[[1,2,1,1],[2,0,3,3],[0,3,3,0],[1,2,1,1]],[[1,2,1,1],[2,0,4,2],[0,3,3,0],[1,2,1,1]],[[1,2,1,2],[2,0,3,2],[0,3,3,0],[1,2,1,1]],[[1,2,1,1],[2,0,3,2],[0,3,3,0],[1,1,2,2]],[[1,2,1,1],[2,0,3,2],[0,3,3,0],[1,1,3,1]],[[1,2,1,1],[2,0,3,2],[0,3,4,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,2],[0,4,3,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,3],[0,3,3,0],[1,1,2,1]],[[1,2,1,1],[2,0,4,2],[0,3,3,0],[1,1,2,1]],[[1,2,1,2],[2,0,3,2],[0,3,3,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,1,1],[2,0,3,3],[0,3,2,2],[1,2,1,0]],[[1,2,1,1],[2,0,4,2],[0,3,2,2],[1,2,1,0]],[[1,2,1,2],[2,0,3,2],[0,3,2,2],[1,2,1,0]],[[1,2,1,1],[2,0,3,2],[0,3,2,2],[1,2,0,2]],[[1,2,1,1],[2,0,3,2],[0,3,2,3],[1,2,0,1]],[[1,2,1,1],[2,0,3,3],[0,3,2,2],[1,2,0,1]],[[1,2,1,1],[2,0,4,2],[0,3,2,2],[1,2,0,1]],[[1,2,1,2],[2,0,3,2],[0,3,2,2],[1,2,0,1]],[[1,0,2,2],[1,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,0,2,1],[1,3,4,2],[1,3,2,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,3],[1,3,2,0],[0,1,2,1]],[[1,0,2,2],[1,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,0,2,1],[1,3,4,2],[1,3,2,0],[0,2,1,1]],[[1,0,2,1],[1,3,3,3],[1,3,2,0],[0,2,1,1]],[[1,0,2,2],[1,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,0,2,1],[1,3,4,2],[1,3,2,0],[1,0,2,1]],[[1,0,2,1],[1,3,3,3],[1,3,2,0],[1,0,2,1]],[[1,0,3,1],[1,3,3,2],[1,3,2,0],[1,1,2,0]],[[1,0,2,2],[1,3,3,2],[1,3,2,0],[1,1,2,0]],[[1,0,2,1],[1,4,3,2],[1,3,2,0],[1,1,2,0]],[[1,0,2,1],[1,3,4,2],[1,3,2,0],[1,1,2,0]],[[1,0,2,1],[1,3,3,2],[1,4,2,0],[1,1,2,0]],[[1,0,3,1],[1,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,0,2,2],[1,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,0,2,1],[1,4,3,2],[1,3,2,0],[1,2,0,1]],[[1,0,2,1],[1,3,4,2],[1,3,2,0],[1,2,0,1]],[[1,0,2,1],[1,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,0,3,1],[1,3,3,2],[1,3,2,0],[1,2,1,0]],[[1,0,2,2],[1,3,3,2],[1,3,2,0],[1,2,1,0]],[[1,0,2,1],[1,4,3,2],[1,3,2,0],[1,2,1,0]],[[1,0,2,1],[1,3,4,2],[1,3,2,0],[1,2,1,0]],[[1,0,2,1],[1,3,3,2],[1,4,2,0],[1,2,1,0]],[[1,0,2,1],[1,3,3,2],[1,3,2,0],[2,2,1,0]],[[1,0,2,1],[1,3,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,1,1],[2,0,3,2],[0,3,2,3],[1,1,2,0]],[[1,2,1,1],[2,0,3,3],[0,3,2,2],[1,1,2,0]],[[1,2,1,1],[2,0,4,2],[0,3,2,2],[1,1,2,0]],[[1,2,1,2],[2,0,3,2],[0,3,2,2],[1,1,2,0]],[[1,2,1,1],[2,0,3,2],[0,3,2,2],[1,1,1,2]],[[1,2,1,1],[2,0,3,2],[0,3,2,3],[1,1,1,1]],[[1,2,1,1],[2,0,3,3],[0,3,2,2],[1,1,1,1]],[[1,0,2,2],[1,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[1,3,2,1],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[1,3,2,1],[0,1,1,1]],[[1,0,2,2],[1,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[1,3,2,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[1,3,2,1],[0,1,2,0]],[[1,0,2,2],[1,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,0,2,1],[1,3,4,2],[1,3,2,1],[0,2,0,1]],[[1,0,2,1],[1,3,3,3],[1,3,2,1],[0,2,0,1]],[[1,0,2,2],[1,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,0,2,1],[1,3,4,2],[1,3,2,1],[0,2,1,0]],[[1,0,2,1],[1,3,3,3],[1,3,2,1],[0,2,1,0]],[[1,2,1,1],[2,0,4,2],[0,3,2,2],[1,1,1,1]],[[1,2,1,2],[2,0,3,2],[0,3,2,2],[1,1,1,1]],[[1,2,1,1],[2,0,3,2],[0,3,2,2],[1,0,2,2]],[[1,0,2,2],[1,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,0,2,1],[1,3,4,2],[1,3,2,1],[1,0,1,1]],[[1,0,2,1],[1,3,3,3],[1,3,2,1],[1,0,1,1]],[[1,0,2,2],[1,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,0,2,1],[1,3,4,2],[1,3,2,1],[1,0,2,0]],[[1,0,2,1],[1,3,3,3],[1,3,2,1],[1,0,2,0]],[[1,0,2,2],[1,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,0,2,1],[1,3,4,2],[1,3,2,1],[1,1,0,1]],[[1,0,2,1],[1,3,3,3],[1,3,2,1],[1,1,0,1]],[[1,0,2,2],[1,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,0,2,1],[1,3,4,2],[1,3,2,1],[1,1,1,0]],[[1,0,2,1],[1,3,3,3],[1,3,2,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,2],[0,3,2,3],[1,0,2,1]],[[1,2,1,1],[2,0,3,3],[0,3,2,2],[1,0,2,1]],[[1,2,1,1],[2,0,4,2],[0,3,2,2],[1,0,2,1]],[[1,2,1,2],[2,0,3,2],[0,3,2,2],[1,0,2,1]],[[1,2,1,1],[2,0,3,2],[0,3,2,1],[1,2,3,0]],[[1,2,1,1],[2,0,3,2],[0,3,2,1],[1,3,2,0]],[[1,2,1,1],[2,0,3,2],[0,3,2,1],[2,2,2,0]],[[1,2,1,1],[2,0,3,2],[0,4,2,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,2],[0,3,2,0],[1,2,2,2]],[[1,2,1,1],[2,0,3,2],[0,3,2,0],[1,2,3,1]],[[1,2,1,1],[2,0,3,2],[0,3,2,0],[1,3,2,1]],[[1,2,1,1],[2,0,3,2],[0,3,2,0],[2,2,2,1]],[[1,2,1,1],[2,0,3,2],[0,4,2,0],[1,2,2,1]],[[1,2,1,1],[2,0,3,2],[0,3,1,2],[1,1,2,2]],[[1,2,1,1],[2,0,3,2],[0,3,1,2],[1,1,3,1]],[[1,2,1,1],[2,0,3,2],[0,3,1,3],[1,1,2,1]],[[1,2,1,1],[2,0,3,3],[0,3,1,2],[1,1,2,1]],[[1,2,1,1],[2,0,4,2],[0,3,1,2],[1,1,2,1]],[[1,2,1,2],[2,0,3,2],[0,3,1,2],[1,1,2,1]],[[1,0,2,2],[1,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,0,2,1],[1,3,4,2],[1,3,2,2],[0,0,1,1]],[[1,0,2,1],[1,3,3,3],[1,3,2,2],[0,0,1,1]],[[1,0,2,1],[1,3,3,2],[1,3,2,3],[0,0,1,1]],[[1,0,2,1],[1,3,3,2],[1,3,2,2],[0,0,1,2]],[[1,0,2,2],[1,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,0,2,1],[1,3,4,2],[1,3,2,2],[0,0,2,0]],[[1,0,2,1],[1,3,3,3],[1,3,2,2],[0,0,2,0]],[[1,0,2,1],[1,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,1,1],[2,0,3,2],[0,3,0,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,2],[0,3,0,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,2],[0,3,0,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,2],[0,3,0,2],[2,2,2,1]],[[1,2,1,1],[2,0,3,2],[0,3,0,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,2],[0,4,0,2],[1,2,2,1]],[[1,2,1,1],[2,0,3,3],[0,3,0,2],[1,2,2,1]],[[1,2,1,1],[2,0,4,2],[0,3,0,2],[1,2,2,1]],[[1,2,1,2],[2,0,3,2],[0,3,0,2],[1,2,2,1]],[[1,2,1,1],[2,0,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,1,1],[2,0,3,2],[0,2,3,1],[1,3,2,0]],[[1,2,1,1],[2,0,3,2],[0,2,3,1],[2,2,2,0]],[[1,2,1,1],[2,0,3,2],[0,2,4,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,3],[0,2,3,1],[1,2,2,0]],[[1,2,1,1],[2,0,4,2],[0,2,3,1],[1,2,2,0]],[[1,2,1,2],[2,0,3,2],[0,2,3,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,2],[0,2,4,1],[1,2,1,1]],[[1,2,1,1],[2,0,3,3],[0,2,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,4,2],[0,2,3,1],[1,2,1,1]],[[1,2,1,2],[2,0,3,2],[0,2,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,3,2],[0,2,3,0],[1,2,2,2]],[[1,2,1,1],[2,0,3,2],[0,2,3,0],[1,2,3,1]],[[1,2,1,1],[2,0,3,2],[0,2,3,0],[1,3,2,1]],[[1,2,1,1],[2,0,3,2],[0,2,3,0],[2,2,2,1]],[[1,2,1,1],[2,0,3,2],[0,2,4,0],[1,2,2,1]],[[1,2,1,1],[2,0,3,3],[0,2,3,0],[1,2,2,1]],[[1,2,1,1],[2,0,4,2],[0,2,3,0],[1,2,2,1]],[[1,2,1,2],[2,0,3,2],[0,2,3,0],[1,2,2,1]],[[1,2,1,1],[2,0,3,2],[0,2,2,3],[1,2,2,0]],[[1,2,1,1],[2,0,3,3],[0,2,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,4,2],[0,2,2,2],[1,2,2,0]],[[1,2,1,2],[2,0,3,2],[0,2,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,2],[0,2,2,2],[1,2,1,2]],[[1,2,1,1],[2,0,3,2],[0,2,2,3],[1,2,1,1]],[[1,2,1,1],[2,0,3,3],[0,2,2,2],[1,2,1,1]],[[1,2,1,1],[2,0,4,2],[0,2,2,2],[1,2,1,1]],[[1,2,1,2],[2,0,3,2],[0,2,2,2],[1,2,1,1]],[[1,2,1,1],[2,0,3,2],[0,2,1,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,2],[0,2,1,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,2],[0,2,1,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,2],[0,2,1,2],[2,2,2,1]],[[1,2,1,1],[2,0,3,2],[0,2,1,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,3],[0,2,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,4,2],[0,2,1,2],[1,2,2,1]],[[1,2,1,2],[2,0,3,2],[0,2,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,2],[0,0,3,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,2],[0,0,3,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,3],[0,0,3,2],[1,2,2,1]],[[1,2,1,2],[2,0,3,2],[0,0,3,2],[1,2,2,1]],[[1,0,2,2],[1,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,0,2,1],[1,3,4,2],[1,3,3,0],[0,0,2,1]],[[1,0,2,1],[1,3,3,3],[1,3,3,0],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[1,3,4,0],[0,0,2,1]],[[1,0,3,1],[1,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,0,2,2],[1,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,0,2,1],[1,4,3,2],[1,3,3,0],[1,2,0,0]],[[1,0,2,1],[1,3,4,2],[1,3,3,0],[1,2,0,0]],[[1,0,2,1],[1,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,0,2,2],[1,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,0,2,1],[1,3,4,2],[1,3,3,1],[0,0,1,1]],[[1,0,2,1],[1,3,3,3],[1,3,3,1],[0,0,1,1]],[[1,0,2,1],[1,3,3,2],[1,3,4,1],[0,0,1,1]],[[1,0,2,2],[1,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,0,2,1],[1,3,4,2],[1,3,3,1],[0,0,2,0]],[[1,0,2,1],[1,3,3,3],[1,3,3,1],[0,0,2,0]],[[1,0,2,1],[1,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,0,2,2],[1,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,0,2,1],[1,3,4,2],[1,3,3,1],[0,2,0,0]],[[1,0,2,1],[1,3,3,3],[1,3,3,1],[0,2,0,0]],[[1,0,2,2],[1,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,0,2,1],[1,3,4,2],[1,3,3,1],[1,1,0,0]],[[1,0,2,1],[1,3,3,3],[1,3,3,1],[1,1,0,0]],[[1,2,1,1],[2,0,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[2,0,3,1],[2,4,3,1],[1,2,0,0]],[[1,2,1,1],[2,0,3,1],[3,3,3,1],[1,2,0,0]],[[1,2,1,1],[3,0,3,1],[2,3,3,1],[1,2,0,0]],[[1,3,1,1],[2,0,3,1],[2,3,3,1],[1,2,0,0]],[[2,2,1,1],[2,0,3,1],[2,3,3,1],[1,2,0,0]],[[1,2,1,1],[2,0,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[2,0,3,1],[2,3,4,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,1],[2,4,3,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,1],[3,3,3,1],[1,1,1,0]],[[1,2,1,1],[2,0,4,1],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[3,0,3,1],[2,3,3,1],[1,1,1,0]],[[1,3,1,1],[2,0,3,1],[2,3,3,1],[1,1,1,0]],[[2,2,1,1],[2,0,3,1],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,1],[2,3,3,1],[2,1,0,1]],[[1,2,1,1],[2,0,3,1],[2,3,4,1],[1,1,0,1]],[[1,2,1,1],[2,0,3,1],[2,4,3,1],[1,1,0,1]],[[1,2,1,1],[2,0,3,1],[3,3,3,1],[1,1,0,1]],[[1,2,1,1],[2,0,4,1],[2,3,3,1],[1,1,0,1]],[[1,2,1,1],[3,0,3,1],[2,3,3,1],[1,1,0,1]],[[1,3,1,1],[2,0,3,1],[2,3,3,1],[1,1,0,1]],[[2,2,1,1],[2,0,3,1],[2,3,3,1],[1,1,0,1]],[[1,2,1,1],[2,0,3,1],[2,3,3,1],[1,0,3,0]],[[1,0,2,2],[1,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,0,2,1],[1,3,4,2],[1,3,3,2],[0,0,0,1]],[[1,0,2,1],[1,3,3,3],[1,3,3,2],[0,0,0,1]],[[1,0,2,1],[1,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,1,1],[2,0,3,1],[2,3,3,1],[2,0,2,0]],[[1,2,1,1],[2,0,3,1],[2,3,4,1],[1,0,2,0]],[[1,2,1,1],[2,0,3,1],[2,4,3,1],[1,0,2,0]],[[1,2,1,1],[2,0,3,1],[3,3,3,1],[1,0,2,0]],[[1,2,1,1],[2,0,4,1],[2,3,3,1],[1,0,2,0]],[[1,2,1,1],[3,0,3,1],[2,3,3,1],[1,0,2,0]],[[1,3,1,1],[2,0,3,1],[2,3,3,1],[1,0,2,0]],[[2,2,1,1],[2,0,3,1],[2,3,3,1],[1,0,2,0]],[[1,2,1,1],[2,0,3,1],[2,3,3,1],[2,0,1,1]],[[1,2,1,1],[2,0,3,1],[2,3,4,1],[1,0,1,1]],[[1,2,1,1],[2,0,3,1],[2,4,3,1],[1,0,1,1]],[[1,2,1,1],[2,0,3,1],[3,3,3,1],[1,0,1,1]],[[1,2,1,1],[2,0,4,1],[2,3,3,1],[1,0,1,1]],[[1,2,1,1],[3,0,3,1],[2,3,3,1],[1,0,1,1]],[[1,3,1,1],[2,0,3,1],[2,3,3,1],[1,0,1,1]],[[2,2,1,1],[2,0,3,1],[2,3,3,1],[1,0,1,1]],[[1,2,1,1],[2,0,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[2,0,3,1],[2,3,4,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,1],[2,4,3,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,1],[3,3,3,1],[0,2,1,0]],[[1,2,1,1],[2,0,4,1],[2,3,3,1],[0,2,1,0]],[[1,2,1,1],[3,0,3,1],[2,3,3,1],[0,2,1,0]],[[1,3,1,1],[2,0,3,1],[2,3,3,1],[0,2,1,0]],[[2,2,1,1],[2,0,3,1],[2,3,3,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,1],[2,3,3,1],[0,3,0,1]],[[1,2,1,1],[2,0,3,1],[2,3,4,1],[0,2,0,1]],[[1,2,1,1],[2,0,3,1],[2,4,3,1],[0,2,0,1]],[[1,2,1,1],[2,0,3,1],[3,3,3,1],[0,2,0,1]],[[1,2,1,1],[2,0,4,1],[2,3,3,1],[0,2,0,1]],[[1,2,1,1],[3,0,3,1],[2,3,3,1],[0,2,0,1]],[[1,3,1,1],[2,0,3,1],[2,3,3,1],[0,2,0,1]],[[2,2,1,1],[2,0,3,1],[2,3,3,1],[0,2,0,1]],[[1,2,1,1],[2,0,3,1],[2,3,3,1],[0,1,3,0]],[[1,2,1,1],[2,0,3,1],[2,3,4,1],[0,1,2,0]],[[1,2,1,1],[2,0,3,1],[2,4,3,1],[0,1,2,0]],[[1,2,1,1],[2,0,3,1],[3,3,3,1],[0,1,2,0]],[[1,2,1,1],[2,0,4,1],[2,3,3,1],[0,1,2,0]],[[1,2,1,1],[3,0,3,1],[2,3,3,1],[0,1,2,0]],[[1,3,1,1],[2,0,3,1],[2,3,3,1],[0,1,2,0]],[[2,2,1,1],[2,0,3,1],[2,3,3,1],[0,1,2,0]],[[1,2,1,1],[2,0,3,1],[2,3,4,1],[0,1,1,1]],[[1,2,1,1],[2,0,3,1],[2,4,3,1],[0,1,1,1]],[[1,2,1,1],[2,0,3,1],[3,3,3,1],[0,1,1,1]],[[1,2,1,1],[2,0,4,1],[2,3,3,1],[0,1,1,1]],[[1,2,1,1],[3,0,3,1],[2,3,3,1],[0,1,1,1]],[[1,3,1,1],[2,0,3,1],[2,3,3,1],[0,1,1,1]],[[2,2,1,1],[2,0,3,1],[2,3,3,1],[0,1,1,1]],[[1,2,1,1],[2,0,3,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[2,0,3,1],[2,4,3,0],[1,2,0,1]],[[1,2,1,1],[2,0,3,1],[3,3,3,0],[1,2,0,1]],[[1,2,1,1],[3,0,3,1],[2,3,3,0],[1,2,0,1]],[[1,3,1,1],[2,0,3,1],[2,3,3,0],[1,2,0,1]],[[2,2,1,1],[2,0,3,1],[2,3,3,0],[1,2,0,1]],[[1,2,1,1],[2,0,3,1],[2,3,3,0],[2,1,1,1]],[[1,2,1,1],[2,0,3,1],[2,3,4,0],[1,1,1,1]],[[1,2,1,1],[2,0,3,1],[2,4,3,0],[1,1,1,1]],[[1,2,1,1],[2,0,3,1],[3,3,3,0],[1,1,1,1]],[[1,2,1,1],[2,0,4,1],[2,3,3,0],[1,1,1,1]],[[1,2,1,1],[3,0,3,1],[2,3,3,0],[1,1,1,1]],[[1,3,1,1],[2,0,3,1],[2,3,3,0],[1,1,1,1]],[[2,2,1,1],[2,0,3,1],[2,3,3,0],[1,1,1,1]],[[1,2,1,1],[2,0,3,1],[2,3,3,0],[1,0,2,2]],[[1,2,1,1],[2,0,3,1],[2,3,3,0],[1,0,3,1]],[[1,2,1,1],[2,0,3,1],[2,3,3,0],[2,0,2,1]],[[1,2,1,1],[2,0,3,1],[2,3,4,0],[1,0,2,1]],[[1,2,1,1],[2,0,3,1],[2,4,3,0],[1,0,2,1]],[[1,2,1,1],[2,0,3,1],[3,3,3,0],[1,0,2,1]],[[1,2,1,1],[2,0,4,1],[2,3,3,0],[1,0,2,1]],[[1,2,1,1],[3,0,3,1],[2,3,3,0],[1,0,2,1]],[[1,3,1,1],[2,0,3,1],[2,3,3,0],[1,0,2,1]],[[2,2,1,1],[2,0,3,1],[2,3,3,0],[1,0,2,1]],[[1,2,1,1],[2,0,3,1],[2,3,3,0],[0,3,1,1]],[[1,2,1,1],[2,0,3,1],[2,3,4,0],[0,2,1,1]],[[1,2,1,1],[2,0,3,1],[2,4,3,0],[0,2,1,1]],[[1,2,1,1],[2,0,3,1],[3,3,3,0],[0,2,1,1]],[[1,2,1,1],[2,0,4,1],[2,3,3,0],[0,2,1,1]],[[1,2,1,1],[3,0,3,1],[2,3,3,0],[0,2,1,1]],[[1,3,1,1],[2,0,3,1],[2,3,3,0],[0,2,1,1]],[[2,2,1,1],[2,0,3,1],[2,3,3,0],[0,2,1,1]],[[1,2,1,1],[2,0,3,1],[2,3,3,0],[0,1,2,2]],[[1,2,1,1],[2,0,3,1],[2,3,3,0],[0,1,3,1]],[[1,2,1,1],[2,0,3,1],[2,3,4,0],[0,1,2,1]],[[1,2,1,1],[2,0,3,1],[2,4,3,0],[0,1,2,1]],[[1,2,1,1],[2,0,3,1],[3,3,3,0],[0,1,2,1]],[[1,2,1,1],[2,0,4,1],[2,3,3,0],[0,1,2,1]],[[1,2,1,1],[3,0,3,1],[2,3,3,0],[0,1,2,1]],[[1,3,1,1],[2,0,3,1],[2,3,3,0],[0,1,2,1]],[[2,2,1,1],[2,0,3,1],[2,3,3,0],[0,1,2,1]],[[1,0,3,1],[1,3,3,2],[2,0,0,2],[1,2,2,1]],[[1,0,2,2],[1,3,3,2],[2,0,0,2],[1,2,2,1]],[[1,0,2,1],[1,3,3,3],[2,0,0,2],[1,2,2,1]],[[1,0,2,2],[1,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,4,2],[2,0,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,3],[2,0,1,2],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[2,0,1,3],[0,2,2,1]],[[1,0,2,1],[1,3,3,2],[2,0,1,2],[0,2,3,1]],[[1,0,2,1],[1,3,3,2],[2,0,1,2],[0,2,2,2]],[[1,0,2,2],[1,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,4,2],[2,0,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,3],[2,0,1,2],[1,1,2,1]],[[1,0,2,1],[1,3,3,2],[2,0,1,3],[1,1,2,1]],[[1,0,2,1],[1,3,3,2],[2,0,1,2],[1,1,2,2]],[[1,0,2,2],[1,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,0,2,1],[1,3,4,2],[2,0,2,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,3],[2,0,2,2],[0,2,1,1]],[[1,0,2,1],[1,3,3,2],[2,0,2,3],[0,2,1,1]],[[1,0,2,1],[1,3,3,2],[2,0,2,2],[0,2,1,2]],[[1,0,2,2],[1,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,4,2],[2,0,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,3],[2,0,2,2],[0,2,2,0]],[[1,0,2,1],[1,3,3,2],[2,0,2,3],[0,2,2,0]],[[1,0,2,2],[1,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,0,2,1],[1,3,4,2],[2,0,2,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,3],[2,0,2,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,2],[2,0,2,3],[1,1,1,1]],[[1,0,2,1],[1,3,3,2],[2,0,2,2],[1,1,1,2]],[[1,0,2,2],[1,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,4,2],[2,0,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,3],[2,0,2,2],[1,1,2,0]],[[1,0,2,1],[1,3,3,2],[2,0,2,3],[1,1,2,0]],[[1,0,2,2],[1,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,4,2],[2,0,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,3],[2,0,2,2],[1,2,0,1]],[[1,0,2,1],[1,3,3,2],[2,0,2,3],[1,2,0,1]],[[1,0,2,2],[1,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,4,2],[2,0,2,2],[1,2,1,0]],[[1,0,2,1],[1,3,3,3],[2,0,2,2],[1,2,1,0]],[[1,2,1,1],[2,0,3,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[2,0,3,1],[2,4,2,1],[1,1,2,0]],[[1,2,1,1],[2,0,3,1],[3,3,2,1],[1,1,2,0]],[[1,0,2,2],[1,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,0,2,1],[1,3,4,2],[2,0,3,0],[0,2,2,1]],[[1,0,2,1],[1,3,3,3],[2,0,3,0],[0,2,2,1]],[[1,0,2,2],[1,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,4,2],[2,0,3,0],[1,1,2,1]],[[1,0,2,1],[1,3,3,3],[2,0,3,0],[1,1,2,1]],[[1,0,3,1],[1,3,3,2],[2,0,3,0],[1,2,2,0]],[[1,0,2,2],[1,3,3,2],[2,0,3,0],[1,2,2,0]],[[1,0,2,1],[1,4,3,2],[2,0,3,0],[1,2,2,0]],[[1,0,2,1],[1,3,4,2],[2,0,3,0],[1,2,2,0]],[[1,0,2,2],[1,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,4,2],[2,0,3,1],[0,2,1,1]],[[1,0,2,1],[1,3,3,3],[2,0,3,1],[0,2,1,1]],[[1,0,2,2],[1,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,0,2,1],[1,3,4,2],[2,0,3,1],[0,2,2,0]],[[1,0,2,1],[1,3,3,3],[2,0,3,1],[0,2,2,0]],[[1,0,2,2],[1,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,4,2],[2,0,3,1],[1,1,1,1]],[[1,0,2,1],[1,3,3,3],[2,0,3,1],[1,1,1,1]],[[1,0,2,2],[1,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,0,2,1],[1,3,4,2],[2,0,3,1],[1,1,2,0]],[[1,0,2,1],[1,3,3,3],[2,0,3,1],[1,1,2,0]],[[1,0,2,2],[1,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,4,2],[2,0,3,1],[1,2,0,1]],[[1,0,2,1],[1,3,3,3],[2,0,3,1],[1,2,0,1]],[[1,0,2,2],[1,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,0,2,1],[1,3,4,2],[2,0,3,1],[1,2,1,0]],[[1,0,2,1],[1,3,3,3],[2,0,3,1],[1,2,1,0]],[[1,2,1,1],[3,0,3,1],[2,3,2,1],[1,1,2,0]],[[1,3,1,1],[2,0,3,1],[2,3,2,1],[1,1,2,0]],[[2,2,1,1],[2,0,3,1],[2,3,2,1],[1,1,2,0]],[[1,0,2,2],[1,3,3,2],[2,0,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,4,2],[2,0,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,3],[2,0,3,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[2,0,3,3],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[2,0,3,2],[0,0,2,2]],[[1,0,2,2],[1,3,3,2],[2,0,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[2,0,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[2,0,3,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[2,0,3,3],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[2,0,3,2],[0,1,1,2]],[[1,0,2,2],[1,3,3,2],[2,0,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[2,0,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[2,0,3,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,1,1],[2,0,3,1],[2,3,2,1],[0,2,3,0]],[[1,2,1,1],[2,0,3,1],[2,3,2,1],[0,3,2,0]],[[1,2,1,1],[2,0,3,1],[2,4,2,1],[0,2,2,0]],[[1,2,1,1],[2,0,3,1],[3,3,2,1],[0,2,2,0]],[[1,2,1,1],[3,0,3,1],[2,3,2,1],[0,2,2,0]],[[1,3,1,1],[2,0,3,1],[2,3,2,1],[0,2,2,0]],[[1,0,2,2],[1,3,3,2],[2,0,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,4,2],[2,0,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,3],[2,0,3,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,2],[2,0,3,3],[1,0,1,1]],[[1,0,2,1],[1,3,3,2],[2,0,3,2],[1,0,1,2]],[[1,0,2,2],[1,3,3,2],[2,0,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,4,2],[2,0,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,3],[2,0,3,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,2],[2,0,3,3],[1,0,2,0]],[[2,2,1,1],[2,0,3,1],[2,3,2,1],[0,2,2,0]],[[1,2,1,1],[2,0,3,1],[2,3,2,0],[2,1,2,1]],[[1,2,1,1],[2,0,3,1],[2,4,2,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,1],[3,3,2,0],[1,1,2,1]],[[1,2,1,1],[3,0,3,1],[2,3,2,0],[1,1,2,1]],[[1,3,1,1],[2,0,3,1],[2,3,2,0],[1,1,2,1]],[[2,2,1,1],[2,0,3,1],[2,3,2,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,1],[2,3,2,0],[0,2,2,2]],[[1,2,1,1],[2,0,3,1],[2,3,2,0],[0,2,3,1]],[[1,2,1,1],[2,0,3,1],[2,3,2,0],[0,3,2,1]],[[1,2,1,1],[2,0,3,1],[2,4,2,0],[0,2,2,1]],[[1,2,1,1],[2,0,3,1],[3,3,2,0],[0,2,2,1]],[[1,2,1,1],[3,0,3,1],[2,3,2,0],[0,2,2,1]],[[1,3,1,1],[2,0,3,1],[2,3,2,0],[0,2,2,1]],[[2,2,1,1],[2,0,3,1],[2,3,2,0],[0,2,2,1]],[[1,0,2,2],[1,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,4,2],[2,1,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,3],[2,1,1,2],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[2,1,1,3],[0,1,2,1]],[[1,0,2,1],[1,3,3,2],[2,1,1,2],[0,1,2,2]],[[1,0,2,2],[1,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,0,2,1],[1,3,4,2],[2,1,1,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,3],[2,1,1,2],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[2,1,1,3],[1,0,2,1]],[[1,0,2,1],[1,3,3,2],[2,1,1,2],[1,0,2,2]],[[1,0,2,2],[1,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,4,2],[2,1,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,3],[2,1,2,2],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[2,1,2,3],[0,0,2,1]],[[1,0,2,1],[1,3,3,2],[2,1,2,2],[0,0,2,2]],[[1,0,2,2],[1,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[2,1,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[2,1,2,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[2,1,2,3],[0,1,1,1]],[[1,0,2,1],[1,3,3,2],[2,1,2,2],[0,1,1,2]],[[1,0,2,2],[1,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[2,1,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[2,1,2,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[2,1,2,3],[0,1,2,0]],[[1,0,2,2],[1,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,4,2],[2,1,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,3],[2,1,2,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,2],[2,1,2,3],[0,2,0,1]],[[1,0,2,2],[1,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,4,2],[2,1,2,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,3],[2,1,2,2],[0,2,1,0]],[[1,0,2,2],[1,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,4,2],[2,1,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,3],[2,1,2,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,2],[2,1,2,3],[1,0,1,1]],[[1,0,2,1],[1,3,3,2],[2,1,2,2],[1,0,1,2]],[[1,0,2,2],[1,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,4,2],[2,1,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,3],[2,1,2,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,2],[2,1,2,3],[1,0,2,0]],[[1,0,2,2],[1,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,4,2],[2,1,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,3],[2,1,2,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,2],[2,1,2,3],[1,1,0,1]],[[1,0,2,2],[1,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,0,2,1],[1,3,4,2],[2,1,2,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,3],[2,1,2,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,1,1],[2,0,3,1],[2,2,4,2],[1,1,1,0]],[[1,2,1,1],[2,0,4,1],[2,2,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,1],[2,2,3,2],[1,1,0,2]],[[1,2,1,1],[2,0,3,1],[2,2,3,3],[1,1,0,1]],[[1,2,1,1],[2,0,3,1],[2,2,4,2],[1,1,0,1]],[[1,2,1,1],[2,0,4,1],[2,2,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,2],[1,0,3,0]],[[1,2,1,1],[2,0,3,1],[2,2,3,3],[1,0,2,0]],[[1,2,1,1],[2,0,3,1],[2,2,4,2],[1,0,2,0]],[[1,2,1,1],[2,0,4,1],[2,2,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,3,1],[2,2,3,2],[1,0,1,2]],[[1,2,1,1],[2,0,3,1],[2,2,3,3],[1,0,1,1]],[[1,2,1,1],[2,0,3,1],[2,2,4,2],[1,0,1,1]],[[1,0,2,2],[1,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,4,2],[2,1,3,0],[0,1,2,1]],[[1,0,2,1],[1,3,3,3],[2,1,3,0],[0,1,2,1]],[[1,0,3,1],[1,3,3,2],[2,1,3,0],[0,2,2,0]],[[1,0,2,2],[1,3,3,2],[2,1,3,0],[0,2,2,0]],[[1,0,2,1],[1,4,3,2],[2,1,3,0],[0,2,2,0]],[[1,0,2,1],[1,3,4,2],[2,1,3,0],[0,2,2,0]],[[1,0,2,2],[1,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,4,2],[2,1,3,0],[1,0,2,1]],[[1,0,2,1],[1,3,3,3],[2,1,3,0],[1,0,2,1]],[[1,2,1,1],[2,0,4,1],[2,2,3,2],[1,0,1,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,3],[0,2,1,0]],[[1,0,2,2],[1,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,4,2],[2,1,3,1],[0,0,2,1]],[[1,0,2,1],[1,3,3,3],[2,1,3,1],[0,0,2,1]],[[1,0,2,2],[1,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[2,1,3,1],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[2,1,3,1],[0,1,1,1]],[[1,0,2,2],[1,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[2,1,3,1],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[2,1,3,1],[0,1,2,0]],[[1,0,2,2],[1,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,4,2],[2,1,3,1],[0,2,0,1]],[[1,0,2,1],[1,3,3,3],[2,1,3,1],[0,2,0,1]],[[1,0,2,2],[1,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,4,2],[2,1,3,1],[0,2,1,0]],[[1,0,2,1],[1,3,3,3],[2,1,3,1],[0,2,1,0]],[[1,2,1,1],[2,0,3,1],[2,2,4,2],[0,2,1,0]],[[1,2,1,1],[2,0,4,1],[2,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,3,1],[2,2,3,2],[0,2,0,2]],[[1,2,1,1],[2,0,3,1],[2,2,3,3],[0,2,0,1]],[[1,2,1,1],[2,0,3,1],[2,2,4,2],[0,2,0,1]],[[1,2,1,1],[2,0,4,1],[2,2,3,2],[0,2,0,1]],[[1,0,2,2],[1,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,0,2,1],[1,3,4,2],[2,1,3,1],[1,0,1,1]],[[1,0,2,1],[1,3,3,3],[2,1,3,1],[1,0,1,1]],[[1,0,2,2],[1,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,0,2,1],[1,3,4,2],[2,1,3,1],[1,0,2,0]],[[1,0,2,1],[1,3,3,3],[2,1,3,1],[1,0,2,0]],[[1,0,2,2],[1,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,0,2,1],[1,3,4,2],[2,1,3,1],[1,1,0,1]],[[1,0,2,1],[1,3,3,3],[2,1,3,1],[1,1,0,1]],[[1,0,2,2],[1,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,0,2,1],[1,3,4,2],[2,1,3,1],[1,1,1,0]],[[1,0,2,1],[1,3,3,3],[2,1,3,1],[1,1,1,0]],[[1,2,1,1],[2,0,3,1],[2,2,3,2],[0,1,3,0]],[[1,2,1,1],[2,0,3,1],[2,2,3,3],[0,1,2,0]],[[1,2,1,1],[2,0,3,1],[2,2,4,2],[0,1,2,0]],[[1,2,1,1],[2,0,4,1],[2,2,3,2],[0,1,2,0]],[[1,2,1,1],[2,0,3,1],[2,2,3,2],[0,1,1,2]],[[1,2,1,1],[2,0,3,1],[2,2,3,3],[0,1,1,1]],[[1,2,1,1],[2,0,3,1],[2,2,4,2],[0,1,1,1]],[[1,2,1,1],[2,0,4,1],[2,2,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,2],[0,0,2,2]],[[1,2,1,1],[2,0,3,1],[2,2,3,3],[0,0,2,1]],[[1,2,1,1],[2,0,3,1],[2,2,4,2],[0,0,2,1]],[[1,2,1,1],[2,0,4,1],[2,2,3,2],[0,0,2,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,1],[1,3,1,0]],[[1,0,2,2],[1,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,4,2],[2,1,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,3,3],[2,1,3,2],[0,1,0,1]],[[1,0,2,1],[1,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,1],[2,2,1,0]],[[1,2,1,1],[2,0,3,1],[3,2,3,1],[1,2,1,0]],[[1,2,1,1],[3,0,3,1],[2,2,3,1],[1,2,1,0]],[[1,3,1,1],[2,0,3,1],[2,2,3,1],[1,2,1,0]],[[2,2,1,1],[2,0,3,1],[2,2,3,1],[1,2,1,0]],[[1,2,1,1],[2,0,3,1],[2,2,3,1],[1,3,0,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,1],[2,2,0,1]],[[1,2,1,1],[2,0,3,1],[3,2,3,1],[1,2,0,1]],[[1,2,1,1],[3,0,3,1],[2,2,3,1],[1,2,0,1]],[[1,3,1,1],[2,0,3,1],[2,2,3,1],[1,2,0,1]],[[2,2,1,1],[2,0,3,1],[2,2,3,1],[1,2,0,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,1],[1,0,2,2]],[[1,2,1,1],[2,0,3,1],[2,2,3,1],[1,0,3,1]],[[1,2,1,1],[2,0,3,1],[2,2,4,1],[1,0,2,1]],[[1,2,1,1],[2,0,4,1],[2,2,3,1],[1,0,2,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,1],[0,2,3,0]],[[1,2,1,1],[2,0,3,1],[2,2,3,1],[0,3,2,0]],[[1,2,1,1],[2,0,3,1],[2,2,4,1],[0,2,2,0]],[[1,2,1,1],[2,0,4,1],[2,2,3,1],[0,2,2,0]],[[1,2,1,1],[2,0,3,1],[2,2,3,1],[0,1,2,2]],[[1,2,1,1],[2,0,3,1],[2,2,3,1],[0,1,3,1]],[[1,2,1,1],[2,0,3,1],[2,2,4,1],[0,1,2,1]],[[1,2,1,1],[2,0,4,1],[2,2,3,1],[0,1,2,1]],[[1,0,2,2],[1,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,0,2,1],[1,3,4,2],[2,1,3,2],[1,0,0,1]],[[1,0,2,1],[1,3,3,3],[2,1,3,2],[1,0,0,1]],[[1,0,2,1],[1,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,0],[1,3,1,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,0],[2,2,1,1]],[[1,2,1,1],[2,0,3,1],[3,2,3,0],[1,2,1,1]],[[1,2,1,1],[3,0,3,1],[2,2,3,0],[1,2,1,1]],[[1,3,1,1],[2,0,3,1],[2,2,3,0],[1,2,1,1]],[[2,2,1,1],[2,0,3,1],[2,2,3,0],[1,2,1,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,0],[0,2,2,2]],[[1,2,1,1],[2,0,3,1],[2,2,3,0],[0,2,3,1]],[[1,2,1,1],[2,0,3,1],[2,2,3,0],[0,3,2,1]],[[1,2,1,1],[2,0,3,1],[2,2,4,0],[0,2,2,1]],[[1,2,1,1],[2,0,4,1],[2,2,3,0],[0,2,2,1]],[[1,2,1,1],[2,0,3,1],[2,2,2,2],[1,0,2,2]],[[1,2,1,1],[2,0,3,1],[2,2,2,2],[1,0,3,1]],[[1,2,1,1],[2,0,3,1],[2,2,2,3],[1,0,2,1]],[[1,2,1,1],[2,0,3,1],[2,2,2,2],[0,1,2,2]],[[1,2,1,1],[2,0,3,1],[2,2,2,2],[0,1,3,1]],[[1,2,1,1],[2,0,3,1],[2,2,2,3],[0,1,2,1]],[[1,2,1,1],[2,0,3,1],[2,2,2,1],[1,2,3,0]],[[1,2,1,1],[2,0,3,1],[2,2,2,1],[1,3,2,0]],[[1,2,1,1],[2,0,3,1],[2,2,2,1],[2,2,2,0]],[[1,2,1,1],[2,0,3,1],[3,2,2,1],[1,2,2,0]],[[1,2,1,1],[3,0,3,1],[2,2,2,1],[1,2,2,0]],[[1,3,1,1],[2,0,3,1],[2,2,2,1],[1,2,2,0]],[[2,2,1,1],[2,0,3,1],[2,2,2,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,1],[2,2,2,0],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[2,2,2,0],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[2,2,2,0],[1,3,2,1]],[[1,2,1,1],[2,0,3,1],[2,2,2,0],[2,2,2,1]],[[1,2,1,1],[2,0,3,1],[3,2,2,0],[1,2,2,1]],[[1,2,1,1],[3,0,3,1],[2,2,2,0],[1,2,2,1]],[[1,3,1,1],[2,0,3,1],[2,2,2,0],[1,2,2,1]],[[2,2,1,1],[2,0,3,1],[2,2,2,0],[1,2,2,1]],[[1,0,2,1],[1,3,3,2],[3,2,1,0],[1,2,2,0]],[[1,0,2,1],[1,3,3,2],[2,2,1,0],[2,2,2,0]],[[1,0,2,1],[1,3,3,2],[2,2,1,0],[1,3,2,0]],[[1,2,1,1],[2,0,3,1],[2,1,3,3],[1,2,1,0]],[[1,2,1,1],[2,0,3,1],[2,1,4,2],[1,2,1,0]],[[1,2,1,1],[2,0,4,1],[2,1,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,3,1],[2,1,3,2],[1,2,0,2]],[[1,2,1,1],[2,0,3,1],[2,1,3,3],[1,2,0,1]],[[1,2,1,1],[2,0,3,1],[2,1,4,2],[1,2,0,1]],[[1,2,1,1],[2,0,4,1],[2,1,3,2],[1,2,0,1]],[[1,2,1,1],[2,0,3,1],[2,1,3,2],[1,1,3,0]],[[1,2,1,1],[2,0,3,1],[2,1,3,3],[1,1,2,0]],[[1,2,1,1],[2,0,3,1],[2,1,4,2],[1,1,2,0]],[[1,2,1,1],[2,0,4,1],[2,1,3,2],[1,1,2,0]],[[1,2,1,1],[2,0,3,1],[2,1,3,2],[1,1,1,2]],[[1,2,1,1],[2,0,3,1],[2,1,3,3],[1,1,1,1]],[[1,2,1,1],[2,0,3,1],[2,1,4,2],[1,1,1,1]],[[1,2,1,1],[2,0,4,1],[2,1,3,2],[1,1,1,1]],[[1,0,2,1],[1,3,3,2],[3,2,2,0],[1,2,1,0]],[[1,0,2,1],[1,3,3,2],[2,2,2,0],[2,2,1,0]],[[1,0,2,1],[1,3,3,2],[2,2,2,0],[1,3,1,0]],[[1,2,1,1],[2,0,3,1],[2,1,3,2],[0,2,3,0]],[[1,2,1,1],[2,0,3,1],[2,1,3,2],[0,3,2,0]],[[1,2,1,1],[2,0,3,1],[2,1,3,3],[0,2,2,0]],[[1,2,1,1],[2,0,3,1],[2,1,4,2],[0,2,2,0]],[[1,2,1,1],[2,0,4,1],[2,1,3,2],[0,2,2,0]],[[1,2,1,1],[2,0,3,1],[2,1,3,2],[0,2,1,2]],[[1,2,1,1],[2,0,3,1],[2,1,3,3],[0,2,1,1]],[[1,2,1,1],[2,0,3,1],[2,1,4,2],[0,2,1,1]],[[1,2,1,1],[2,0,4,1],[2,1,3,2],[0,2,1,1]],[[1,2,1,1],[2,0,3,1],[2,1,3,1],[1,2,3,0]],[[1,2,1,1],[2,0,3,1],[2,1,3,1],[1,3,2,0]],[[1,2,1,1],[2,0,3,1],[2,1,3,1],[2,2,2,0]],[[1,2,1,1],[2,0,3,1],[2,1,4,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,1],[3,1,3,1],[1,2,2,0]],[[1,2,1,1],[2,0,4,1],[2,1,3,1],[1,2,2,0]],[[1,2,1,1],[3,0,3,1],[2,1,3,1],[1,2,2,0]],[[1,3,1,1],[2,0,3,1],[2,1,3,1],[1,2,2,0]],[[2,2,1,1],[2,0,3,1],[2,1,3,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,1],[2,1,3,1],[1,1,2,2]],[[1,2,1,1],[2,0,3,1],[2,1,3,1],[1,1,3,1]],[[1,2,1,1],[2,0,3,1],[2,1,4,1],[1,1,2,1]],[[1,2,1,1],[2,0,4,1],[2,1,3,1],[1,1,2,1]],[[1,2,1,1],[2,0,3,1],[2,1,3,1],[0,2,2,2]],[[1,2,1,1],[2,0,3,1],[2,1,3,1],[0,2,3,1]],[[1,2,1,1],[2,0,3,1],[2,1,3,1],[0,3,2,1]],[[1,2,1,1],[2,0,3,1],[2,1,4,1],[0,2,2,1]],[[1,2,1,1],[2,0,4,1],[2,1,3,1],[0,2,2,1]],[[1,2,1,1],[2,0,3,1],[2,1,3,0],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[2,1,3,0],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[2,1,3,0],[1,3,2,1]],[[1,2,1,1],[2,0,3,1],[2,1,3,0],[2,2,2,1]],[[1,2,1,1],[2,0,3,1],[2,1,4,0],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[3,1,3,0],[1,2,2,1]],[[1,2,1,1],[2,0,4,1],[2,1,3,0],[1,2,2,1]],[[1,2,1,1],[3,0,3,1],[2,1,3,0],[1,2,2,1]],[[1,3,1,1],[2,0,3,1],[2,1,3,0],[1,2,2,1]],[[2,2,1,1],[2,0,3,1],[2,1,3,0],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[2,1,2,2],[1,1,2,2]],[[1,2,1,1],[2,0,3,1],[2,1,2,2],[1,1,3,1]],[[1,2,1,1],[2,0,3,1],[2,1,2,3],[1,1,2,1]],[[1,2,1,1],[2,0,3,1],[2,1,2,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,1],[2,1,2,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,1],[2,1,2,2],[0,3,2,1]],[[1,2,1,1],[2,0,3,1],[2,1,2,3],[0,2,2,1]],[[1,2,1,1],[2,0,3,1],[2,0,3,2],[1,1,2,2]],[[1,2,1,1],[2,0,3,1],[2,0,3,2],[1,1,3,1]],[[1,2,1,1],[2,0,3,1],[2,0,3,3],[1,1,2,1]],[[1,2,1,1],[2,0,3,1],[2,0,3,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,1],[2,0,3,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,1],[2,0,3,3],[0,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[2,0,3,1],[1,3,4,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,1],[1,4,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,4,1],[1,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,1],[1,3,3,2],[1,1,0,2]],[[1,2,1,1],[2,0,3,1],[1,3,3,3],[1,1,0,1]],[[1,2,1,1],[2,0,3,1],[1,3,4,2],[1,1,0,1]],[[1,2,1,1],[2,0,3,1],[1,4,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,4,1],[1,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,2],[1,0,3,0]],[[1,2,1,1],[2,0,3,1],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[2,0,3,1],[1,3,4,2],[1,0,2,0]],[[1,2,1,1],[2,0,3,1],[1,4,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,4,1],[1,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,3,1],[1,3,3,2],[1,0,1,2]],[[1,2,1,1],[2,0,3,1],[1,3,3,3],[1,0,1,1]],[[1,2,1,1],[2,0,3,1],[1,3,4,2],[1,0,1,1]],[[1,2,1,1],[2,0,3,1],[1,4,3,2],[1,0,1,1]],[[1,2,1,1],[2,0,4,1],[1,3,3,2],[1,0,1,1]],[[1,0,3,1],[1,3,3,2],[2,2,3,0],[0,1,1,1]],[[1,0,2,2],[1,3,3,2],[2,2,3,0],[0,1,1,1]],[[1,0,2,1],[1,4,3,2],[2,2,3,0],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[2,2,3,0],[0,1,1,1]],[[1,0,3,1],[1,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,0,2,2],[1,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,0,2,1],[1,4,3,2],[2,2,3,0],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[2,2,3,0],[0,1,2,0]],[[1,0,3,1],[1,3,3,2],[2,2,3,0],[0,2,0,1]],[[1,0,2,2],[1,3,3,2],[2,2,3,0],[0,2,0,1]],[[1,0,2,1],[1,4,3,2],[2,2,3,0],[0,2,0,1]],[[1,0,2,1],[1,3,4,2],[2,2,3,0],[0,2,0,1]],[[1,0,3,1],[1,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,0,2,2],[1,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,0,2,1],[1,4,3,2],[2,2,3,0],[0,2,1,0]],[[1,0,2,1],[1,3,4,2],[2,2,3,0],[0,2,1,0]],[[1,0,3,1],[1,3,3,2],[2,2,3,0],[1,0,1,1]],[[1,0,2,2],[1,3,3,2],[2,2,3,0],[1,0,1,1]],[[1,0,2,1],[1,4,3,2],[2,2,3,0],[1,0,1,1]],[[1,0,2,1],[1,3,4,2],[2,2,3,0],[1,0,1,1]],[[1,0,3,1],[1,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,0,2,2],[1,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,0,2,1],[1,4,3,2],[2,2,3,0],[1,0,2,0]],[[1,0,2,1],[1,3,4,2],[2,2,3,0],[1,0,2,0]],[[1,0,3,1],[1,3,3,2],[2,2,3,0],[1,1,0,1]],[[1,0,2,2],[1,3,3,2],[2,2,3,0],[1,1,0,1]],[[1,0,2,1],[1,4,3,2],[2,2,3,0],[1,1,0,1]],[[1,0,2,1],[1,3,4,2],[2,2,3,0],[1,1,0,1]],[[1,0,3,1],[1,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,0,2,2],[1,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,0,2,1],[1,4,3,2],[2,2,3,0],[1,1,1,0]],[[1,0,2,1],[1,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,1,1],[2,0,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,0,3,1],[1,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,0,3,1],[1,3,4,2],[0,2,1,0]],[[1,2,1,1],[2,0,3,1],[1,4,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,4,1],[1,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,3,1],[1,3,3,2],[0,2,0,2]],[[1,2,1,1],[2,0,3,1],[1,3,3,2],[0,3,0,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,3],[0,2,0,1]],[[1,2,1,1],[2,0,3,1],[1,3,4,2],[0,2,0,1]],[[1,2,1,1],[2,0,3,1],[1,4,3,2],[0,2,0,1]],[[1,2,1,1],[2,0,4,1],[1,3,3,2],[0,2,0,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,2],[0,1,3,0]],[[1,2,1,1],[2,0,3,1],[1,3,3,3],[0,1,2,0]],[[1,2,1,1],[2,0,3,1],[1,3,4,2],[0,1,2,0]],[[1,2,1,1],[2,0,3,1],[1,4,3,2],[0,1,2,0]],[[1,2,1,1],[2,0,4,1],[1,3,3,2],[0,1,2,0]],[[1,2,1,1],[2,0,3,1],[1,3,3,2],[0,1,1,2]],[[1,2,1,1],[2,0,3,1],[1,3,3,3],[0,1,1,1]],[[1,2,1,1],[2,0,3,1],[1,3,4,2],[0,1,1,1]],[[1,2,1,1],[2,0,3,1],[1,4,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,4,1],[1,3,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,2],[0,0,2,2]],[[1,2,1,1],[2,0,3,1],[1,3,3,3],[0,0,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,4,2],[0,0,2,1]],[[1,2,1,1],[2,0,4,1],[1,3,3,2],[0,0,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,0,3,1],[1,3,3,1],[2,2,1,0]],[[1,2,1,1],[2,0,3,1],[1,3,4,1],[1,2,1,0]],[[1,2,1,1],[2,0,3,1],[1,4,3,1],[1,2,1,0]],[[1,2,1,1],[2,0,4,1],[1,3,3,1],[1,2,1,0]],[[1,2,1,1],[2,0,3,1],[1,3,3,1],[1,3,0,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,0,3,1],[1,3,4,1],[1,2,0,1]],[[1,2,1,1],[2,0,3,1],[1,4,3,1],[1,2,0,1]],[[1,2,1,1],[2,0,4,1],[1,3,3,1],[1,2,0,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,1],[1,1,3,0]],[[1,2,1,1],[2,0,3,1],[1,3,4,1],[1,1,2,0]],[[1,2,1,1],[2,0,3,1],[1,4,3,1],[1,1,2,0]],[[1,2,1,1],[2,0,4,1],[1,3,3,1],[1,1,2,0]],[[1,2,1,1],[2,0,3,1],[1,3,3,1],[1,0,2,2]],[[1,2,1,1],[2,0,3,1],[1,3,3,1],[1,0,3,1]],[[1,2,1,1],[2,0,3,1],[1,3,4,1],[1,0,2,1]],[[1,2,1,1],[2,0,3,1],[1,4,3,1],[1,0,2,1]],[[1,2,1,1],[2,0,4,1],[1,3,3,1],[1,0,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,1],[0,3,1,1]],[[1,2,1,1],[2,0,3,1],[1,3,4,1],[0,2,1,1]],[[1,2,1,1],[2,0,3,1],[1,4,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,4,1],[1,3,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,1],[0,1,2,2]],[[1,2,1,1],[2,0,3,1],[1,3,3,1],[0,1,3,1]],[[1,2,1,1],[2,0,3,1],[1,3,4,1],[0,1,2,1]],[[1,2,1,1],[2,0,3,1],[1,4,3,1],[0,1,2,1]],[[1,2,1,1],[2,0,4,1],[1,3,3,1],[0,1,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,0],[1,3,1,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,0],[2,2,1,1]],[[1,2,1,1],[2,0,3,1],[1,3,4,0],[1,2,1,1]],[[1,2,1,1],[2,0,3,1],[1,4,3,0],[1,2,1,1]],[[1,2,1,1],[2,0,4,1],[1,3,3,0],[1,2,1,1]],[[1,2,1,1],[2,0,3,1],[1,3,3,0],[1,1,2,2]],[[1,2,1,1],[2,0,3,1],[1,3,3,0],[1,1,3,1]],[[1,2,1,1],[2,0,3,1],[1,3,4,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,1],[1,4,3,0],[1,1,2,1]],[[1,2,1,1],[2,0,4,1],[1,3,3,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,2,2],[1,0,2,2]],[[1,2,1,1],[2,0,3,1],[1,3,2,2],[1,0,3,1]],[[1,2,1,1],[2,0,3,1],[1,3,2,3],[1,0,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,2,2],[0,2,3,0]],[[1,2,1,1],[2,0,3,1],[1,3,2,2],[0,3,2,0]],[[1,2,1,1],[2,0,3,1],[1,4,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,3,1],[1,3,2,2],[0,1,2,2]],[[1,2,1,1],[2,0,3,1],[1,3,2,2],[0,1,3,1]],[[1,2,1,1],[2,0,3,1],[1,3,2,3],[0,1,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,2,1],[1,2,3,0]],[[1,2,1,1],[2,0,3,1],[1,3,2,1],[1,3,2,0]],[[1,2,1,1],[2,0,3,1],[1,3,2,1],[2,2,2,0]],[[1,2,1,1],[2,0,3,1],[1,4,2,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,1],[1,3,2,1],[0,2,2,2]],[[1,2,1,1],[2,0,3,1],[1,3,2,1],[0,2,3,1]],[[1,2,1,1],[2,0,3,1],[1,3,2,1],[0,3,2,1]],[[1,2,1,1],[2,0,3,1],[1,4,2,1],[0,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,2,0],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[1,3,2,0],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[1,3,2,0],[1,3,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,2,0],[2,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,4,2,0],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,1,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,1],[1,3,1,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,1],[1,3,1,2],[0,3,2,1]],[[1,2,1,1],[2,0,3,1],[1,3,1,3],[0,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,4,1,2],[0,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,0,3,1],[1,2,3,2],[0,3,2,0]],[[1,2,1,1],[2,0,3,1],[1,2,3,3],[0,2,2,0]],[[1,2,1,1],[2,0,3,1],[1,2,4,2],[0,2,2,0]],[[1,2,1,1],[2,0,4,1],[1,2,3,2],[0,2,2,0]],[[1,2,1,1],[2,0,3,1],[1,2,3,2],[0,2,1,2]],[[1,2,1,1],[2,0,3,1],[1,2,3,3],[0,2,1,1]],[[1,2,1,1],[2,0,3,1],[1,2,4,2],[0,2,1,1]],[[1,2,1,1],[2,0,4,1],[1,2,3,2],[0,2,1,1]],[[1,2,1,1],[2,0,3,1],[1,2,3,1],[1,2,3,0]],[[1,2,1,1],[2,0,3,1],[1,2,3,1],[1,3,2,0]],[[1,2,1,1],[2,0,3,1],[1,2,3,1],[2,2,2,0]],[[1,2,1,1],[2,0,3,1],[1,2,4,1],[1,2,2,0]],[[1,2,1,1],[2,0,4,1],[1,2,3,1],[1,2,2,0]],[[1,2,1,1],[2,0,3,1],[1,2,3,1],[0,2,2,2]],[[1,2,1,1],[2,0,3,1],[1,2,3,1],[0,2,3,1]],[[1,2,1,1],[2,0,3,1],[1,2,3,1],[0,3,2,1]],[[1,2,1,1],[2,0,3,1],[1,2,4,1],[0,2,2,1]],[[1,2,1,1],[2,0,4,1],[1,2,3,1],[0,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,2,3,0],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[1,2,3,0],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[1,2,3,0],[1,3,2,1]],[[1,2,1,1],[2,0,3,1],[1,2,3,0],[2,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,2,4,0],[1,2,2,1]],[[1,2,1,1],[2,0,4,1],[1,2,3,0],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,2,2,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,1],[1,2,2,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,1],[1,2,2,2],[0,3,2,1]],[[1,2,1,1],[2,0,3,1],[1,2,2,3],[0,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,1,3,2],[1,2,3,0]],[[1,2,1,1],[2,0,3,1],[1,1,3,2],[1,3,2,0]],[[1,2,1,1],[2,0,3,1],[1,1,3,2],[2,2,2,0]],[[1,2,1,1],[2,0,3,1],[1,1,3,3],[1,2,2,0]],[[1,2,1,1],[2,0,3,1],[1,1,4,2],[1,2,2,0]],[[1,2,1,1],[2,0,4,1],[1,1,3,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,1],[1,1,3,2],[1,2,1,2]],[[1,2,1,1],[2,0,3,1],[1,1,3,3],[1,2,1,1]],[[1,2,1,1],[2,0,3,1],[1,1,4,2],[1,2,1,1]],[[1,2,1,1],[2,0,4,1],[1,1,3,2],[1,2,1,1]],[[1,2,1,1],[2,0,3,1],[1,1,3,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,1],[1,1,3,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,1],[1,1,3,3],[0,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,1,3,1],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[1,1,3,1],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[1,1,3,1],[1,3,2,1]],[[1,2,1,1],[2,0,3,1],[1,1,3,1],[2,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,1,4,1],[1,2,2,1]],[[1,2,1,1],[2,0,4,1],[1,1,3,1],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,1,2,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[1,1,2,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[1,1,2,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,1],[1,1,2,2],[2,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,1,2,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[1,0,3,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[1,0,3,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[1,0,3,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,3,1],[0,3,3,2],[2,2,1,0]],[[1,2,1,1],[2,0,3,1],[0,3,3,3],[1,2,1,0]],[[1,2,1,1],[2,0,3,1],[0,3,4,2],[1,2,1,0]],[[1,2,1,1],[2,0,3,1],[0,4,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,4,1],[0,3,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,3,1],[0,3,3,2],[1,2,0,2]],[[1,2,1,1],[2,0,3,1],[0,3,3,2],[1,3,0,1]],[[1,2,1,1],[2,0,3,1],[0,3,3,2],[2,2,0,1]],[[1,2,1,1],[2,0,3,1],[0,3,3,3],[1,2,0,1]],[[1,2,1,1],[2,0,3,1],[0,3,4,2],[1,2,0,1]],[[1,2,1,1],[2,0,3,1],[0,4,3,2],[1,2,0,1]],[[1,2,1,1],[2,0,4,1],[0,3,3,2],[1,2,0,1]],[[1,2,1,1],[2,0,3,1],[0,3,3,2],[1,1,3,0]],[[1,2,1,1],[2,0,3,1],[0,3,3,3],[1,1,2,0]],[[1,2,1,1],[2,0,3,1],[0,3,4,2],[1,1,2,0]],[[1,2,1,1],[2,0,3,1],[0,4,3,2],[1,1,2,0]],[[1,2,1,1],[2,0,4,1],[0,3,3,2],[1,1,2,0]],[[1,2,1,1],[2,0,3,1],[0,3,3,2],[1,1,1,2]],[[1,2,1,1],[2,0,3,1],[0,3,3,3],[1,1,1,1]],[[1,2,1,1],[2,0,3,1],[0,3,4,2],[1,1,1,1]],[[1,2,1,1],[2,0,3,1],[0,4,3,2],[1,1,1,1]],[[1,2,1,1],[2,0,4,1],[0,3,3,2],[1,1,1,1]],[[1,2,1,1],[2,0,3,1],[0,3,3,2],[1,0,2,2]],[[1,2,1,1],[2,0,3,1],[0,3,3,3],[1,0,2,1]],[[1,2,1,1],[2,0,3,1],[0,3,4,2],[1,0,2,1]],[[1,2,1,1],[2,0,4,1],[0,3,3,2],[1,0,2,1]],[[1,2,1,1],[2,0,3,1],[0,3,3,1],[1,3,1,1]],[[1,2,1,1],[2,0,3,1],[0,3,3,1],[2,2,1,1]],[[1,2,1,1],[2,0,3,1],[0,3,4,1],[1,2,1,1]],[[1,2,1,1],[2,0,3,1],[0,4,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,4,1],[0,3,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,3,1],[0,3,3,1],[1,1,2,2]],[[1,2,1,1],[2,0,3,1],[0,3,3,1],[1,1,3,1]],[[1,2,1,1],[2,0,3,1],[0,3,4,1],[1,1,2,1]],[[1,2,1,1],[2,0,3,1],[0,4,3,1],[1,1,2,1]],[[1,2,1,1],[2,0,4,1],[0,3,3,1],[1,1,2,1]],[[1,2,1,1],[2,0,3,1],[0,3,2,2],[1,2,3,0]],[[1,2,1,1],[2,0,3,1],[0,3,2,2],[1,3,2,0]],[[1,2,1,1],[2,0,3,1],[0,3,2,2],[2,2,2,0]],[[1,2,1,1],[2,0,3,1],[0,4,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,1],[0,3,2,2],[1,1,2,2]],[[1,2,1,1],[2,0,3,1],[0,3,2,2],[1,1,3,1]],[[1,2,1,1],[2,0,3,1],[0,3,2,3],[1,1,2,1]],[[1,2,1,1],[2,0,3,1],[0,3,2,1],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[0,3,2,1],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[0,3,2,1],[1,3,2,1]],[[1,2,1,1],[2,0,3,1],[0,3,2,1],[2,2,2,1]],[[1,2,1,1],[2,0,3,1],[0,4,2,1],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[0,3,1,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[0,3,1,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[0,3,1,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,1],[0,3,1,2],[2,2,2,1]],[[1,2,1,1],[2,0,3,1],[0,3,1,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[0,4,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[0,2,3,2],[1,2,3,0]],[[1,2,1,1],[2,0,3,1],[0,2,3,2],[1,3,2,0]],[[1,2,1,1],[2,0,3,1],[0,2,3,2],[2,2,2,0]],[[1,0,2,1],[1,3,3,2],[3,3,0,0],[1,2,2,0]],[[1,0,2,1],[1,3,3,2],[2,3,0,0],[2,2,2,0]],[[1,0,2,1],[1,3,3,2],[2,3,0,0],[1,3,2,0]],[[1,2,1,1],[2,0,3,1],[0,2,3,3],[1,2,2,0]],[[1,2,1,1],[2,0,3,1],[0,2,4,2],[1,2,2,0]],[[1,2,1,1],[2,0,4,1],[0,2,3,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,1],[0,2,3,2],[1,2,1,2]],[[1,2,1,1],[2,0,3,1],[0,2,3,3],[1,2,1,1]],[[1,2,1,1],[2,0,3,1],[0,2,4,2],[1,2,1,1]],[[1,2,1,1],[2,0,4,1],[0,2,3,2],[1,2,1,1]],[[1,2,1,1],[2,0,3,1],[0,2,3,1],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[0,2,3,1],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[0,2,3,1],[1,3,2,1]],[[1,2,1,1],[2,0,3,1],[0,2,3,1],[2,2,2,1]],[[1,0,3,1],[1,3,3,2],[2,3,0,2],[0,1,1,1]],[[1,0,2,2],[1,3,3,2],[2,3,0,2],[0,1,1,1]],[[1,0,2,1],[1,3,3,3],[2,3,0,2],[0,1,1,1]],[[1,0,3,1],[1,3,3,2],[2,3,0,2],[0,1,2,0]],[[1,0,2,2],[1,3,3,2],[2,3,0,2],[0,1,2,0]],[[1,0,2,1],[1,3,3,3],[2,3,0,2],[0,1,2,0]],[[1,0,3,1],[1,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,0,2,2],[1,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,0,2,1],[1,3,3,3],[2,3,0,2],[0,2,0,1]],[[1,0,3,1],[1,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,0,2,2],[1,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,0,2,1],[1,3,3,3],[2,3,0,2],[0,2,1,0]],[[1,2,1,1],[2,0,3,1],[0,2,4,1],[1,2,2,1]],[[1,2,1,1],[2,0,4,1],[0,2,3,1],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[0,2,2,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[0,2,2,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[0,2,2,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,1],[0,2,2,2],[2,2,2,1]],[[1,2,1,1],[2,0,3,1],[0,2,2,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,1],[0,1,3,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,1],[0,1,3,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,1],[0,1,3,3],[1,2,2,1]],[[1,0,3,1],[1,3,3,2],[2,3,0,2],[1,0,1,1]],[[1,0,2,2],[1,3,3,2],[2,3,0,2],[1,0,1,1]],[[1,0,2,1],[1,3,3,3],[2,3,0,2],[1,0,1,1]],[[1,0,3,1],[1,3,3,2],[2,3,0,2],[1,0,2,0]],[[1,0,2,2],[1,3,3,2],[2,3,0,2],[1,0,2,0]],[[1,0,2,1],[1,3,3,3],[2,3,0,2],[1,0,2,0]],[[1,0,3,1],[1,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,0,2,2],[1,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,0,2,1],[1,3,3,3],[2,3,0,2],[1,1,0,1]],[[1,0,3,1],[1,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,0,2,2],[1,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,0,2,1],[1,3,3,3],[2,3,0,2],[1,1,1,0]],[[1,0,3,1],[1,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,0,2,2],[1,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,0,2,1],[1,3,3,3],[2,3,0,2],[1,2,0,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,0,3,0],[2,4,3,2],[1,2,0,0]],[[1,2,1,1],[2,0,3,0],[3,3,3,2],[1,2,0,0]],[[1,2,1,1],[3,0,3,0],[2,3,3,2],[1,2,0,0]],[[1,3,1,1],[2,0,3,0],[2,3,3,2],[1,2,0,0]],[[2,2,1,1],[2,0,3,0],[2,3,3,2],[1,2,0,0]],[[1,0,3,1],[1,3,3,2],[2,3,1,0],[0,2,2,0]],[[1,0,2,2],[1,3,3,2],[2,3,1,0],[0,2,2,0]],[[1,0,2,1],[1,4,3,2],[2,3,1,0],[0,2,2,0]],[[1,0,2,1],[1,3,4,2],[2,3,1,0],[0,2,2,0]],[[1,0,2,1],[1,3,3,2],[3,3,1,0],[0,2,2,0]],[[1,0,2,1],[1,3,3,2],[2,4,1,0],[0,2,2,0]],[[1,0,2,1],[1,3,3,2],[2,3,1,0],[0,3,2,0]],[[1,0,3,1],[1,3,3,2],[2,3,1,0],[1,1,2,0]],[[1,0,2,2],[1,3,3,2],[2,3,1,0],[1,1,2,0]],[[1,0,2,1],[1,4,3,2],[2,3,1,0],[1,1,2,0]],[[1,0,2,1],[1,3,4,2],[2,3,1,0],[1,1,2,0]],[[1,0,2,1],[1,3,3,2],[3,3,1,0],[1,1,2,0]],[[1,0,2,1],[1,3,3,2],[2,4,1,0],[1,1,2,0]],[[1,0,2,1],[1,3,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[2,0,3,0],[2,3,4,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,0],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,0],[3,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,4,0],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[3,0,3,0],[2,3,3,2],[1,1,1,0]],[[1,3,1,1],[2,0,3,0],[2,3,3,2],[1,1,1,0]],[[2,2,1,1],[2,0,3,0],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[2,1,0,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,3],[1,1,0,1]],[[1,2,1,1],[2,0,3,0],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[2,0,3,0],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,3,0],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,4,0],[2,3,3,2],[1,1,0,1]],[[1,2,1,1],[3,0,3,0],[2,3,3,2],[1,1,0,1]],[[1,3,1,1],[2,0,3,0],[2,3,3,2],[1,1,0,1]],[[2,2,1,1],[2,0,3,0],[2,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[2,0,2,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[2,0,3,0],[2,3,4,2],[1,0,2,0]],[[1,2,1,1],[2,0,3,0],[2,4,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,3,0],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,4,0],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[3,0,3,0],[2,3,3,2],[1,0,2,0]],[[1,3,1,1],[2,0,3,0],[2,3,3,2],[1,0,2,0]],[[2,2,1,1],[2,0,3,0],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[1,0,1,2]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,3],[1,0,1,1]],[[1,2,1,1],[2,0,3,0],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[2,0,3,0],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[2,0,3,0],[3,3,3,2],[1,0,1,1]],[[1,2,1,1],[2,0,4,0],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[3,0,3,0],[2,3,3,2],[1,0,1,1]],[[1,3,1,1],[2,0,3,0],[2,3,3,2],[1,0,1,1]],[[2,2,1,1],[2,0,3,0],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,0,3,0],[2,3,4,2],[0,2,1,0]],[[1,2,1,1],[2,0,3,0],[2,4,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,3,0],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,4,0],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[3,0,3,0],[2,3,3,2],[0,2,1,0]],[[1,3,1,1],[2,0,3,0],[2,3,3,2],[0,2,1,0]],[[2,2,1,1],[2,0,3,0],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[2,0,3,0],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[2,0,3,0],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[2,0,3,0],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[2,0,4,0],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[3,0,3,0],[2,3,3,2],[0,2,0,1]],[[1,3,1,1],[2,0,3,0],[2,3,3,2],[0,2,0,1]],[[2,2,1,1],[2,0,3,0],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[2,0,3,0],[2,3,4,2],[0,1,2,0]],[[1,2,1,1],[2,0,3,0],[2,4,3,2],[0,1,2,0]],[[1,2,1,1],[2,0,3,0],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[2,0,4,0],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[3,0,3,0],[2,3,3,2],[0,1,2,0]],[[1,3,1,1],[2,0,3,0],[2,3,3,2],[0,1,2,0]],[[2,2,1,1],[2,0,3,0],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[0,1,1,2]],[[1,2,1,1],[2,0,3,0],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[2,0,3,0],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[2,0,3,0],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,3,0],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,4,0],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[3,0,3,0],[2,3,3,2],[0,1,1,1]],[[1,3,1,1],[2,0,3,0],[2,3,3,2],[0,1,1,1]],[[2,2,1,1],[2,0,3,0],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,2],[0,0,2,2]],[[1,2,1,1],[2,0,3,0],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[2,0,4,0],[2,3,3,2],[0,0,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,0,3,0],[2,4,3,1],[1,2,0,1]],[[1,2,1,1],[2,0,3,0],[3,3,3,1],[1,2,0,1]],[[1,2,1,1],[3,0,3,0],[2,3,3,1],[1,2,0,1]],[[1,3,1,1],[2,0,3,0],[2,3,3,1],[1,2,0,1]],[[2,2,1,1],[2,0,3,0],[2,3,3,1],[1,2,0,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[2,0,3,0],[2,3,4,1],[1,1,1,1]],[[1,2,1,1],[2,0,3,0],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[2,0,3,0],[3,3,3,1],[1,1,1,1]],[[1,2,1,1],[2,0,4,0],[2,3,3,1],[1,1,1,1]],[[1,2,1,1],[3,0,3,0],[2,3,3,1],[1,1,1,1]],[[1,3,1,1],[2,0,3,0],[2,3,3,1],[1,1,1,1]],[[2,2,1,1],[2,0,3,0],[2,3,3,1],[1,1,1,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[2,0,3,0],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,1],[2,0,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[2,0,3,0],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[2,0,3,0],[3,3,3,1],[1,0,2,1]],[[1,2,1,1],[2,0,4,0],[2,3,3,1],[1,0,2,1]],[[1,2,1,1],[3,0,3,0],[2,3,3,1],[1,0,2,1]],[[1,3,1,1],[2,0,3,0],[2,3,3,1],[1,0,2,1]],[[2,2,1,1],[2,0,3,0],[2,3,3,1],[1,0,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[2,0,3,0],[2,3,4,1],[0,2,1,1]],[[1,2,1,1],[2,0,3,0],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,3,0],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,4,0],[2,3,3,1],[0,2,1,1]],[[1,2,1,1],[3,0,3,0],[2,3,3,1],[0,2,1,1]],[[1,3,1,1],[2,0,3,0],[2,3,3,1],[0,2,1,1]],[[2,2,1,1],[2,0,3,0],[2,3,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[2,0,3,0],[2,3,3,1],[0,1,3,1]],[[1,2,1,1],[2,0,3,0],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[2,0,3,0],[2,4,3,1],[0,1,2,1]],[[1,0,3,1],[1,3,3,2],[2,3,2,0],[0,1,1,1]],[[1,0,2,2],[1,3,3,2],[2,3,2,0],[0,1,1,1]],[[1,0,2,1],[1,4,3,2],[2,3,2,0],[0,1,1,1]],[[1,0,2,1],[1,3,4,2],[2,3,2,0],[0,1,1,1]],[[1,0,3,1],[1,3,3,2],[2,3,2,0],[0,1,2,0]],[[1,0,2,2],[1,3,3,2],[2,3,2,0],[0,1,2,0]],[[1,0,2,1],[1,4,3,2],[2,3,2,0],[0,1,2,0]],[[1,0,2,1],[1,3,4,2],[2,3,2,0],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[3,3,2,0],[0,1,2,0]],[[1,0,2,1],[1,3,3,2],[2,4,2,0],[0,1,2,0]],[[1,0,3,1],[1,3,3,2],[2,3,2,0],[0,2,0,1]],[[1,0,2,2],[1,3,3,2],[2,3,2,0],[0,2,0,1]],[[1,0,2,1],[1,4,3,2],[2,3,2,0],[0,2,0,1]],[[1,0,2,1],[1,3,4,2],[2,3,2,0],[0,2,0,1]],[[1,0,2,1],[1,3,3,2],[3,3,2,0],[0,2,0,1]],[[1,0,2,1],[1,3,3,2],[2,4,2,0],[0,2,0,1]],[[1,0,3,1],[1,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,0,2,2],[1,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,0,2,1],[1,4,3,2],[2,3,2,0],[0,2,1,0]],[[1,0,2,1],[1,3,4,2],[2,3,2,0],[0,2,1,0]],[[1,0,2,1],[1,3,3,2],[3,3,2,0],[0,2,1,0]],[[1,0,2,1],[1,3,3,2],[2,4,2,0],[0,2,1,0]],[[1,0,2,1],[1,3,3,2],[2,3,2,0],[0,3,1,0]],[[1,2,1,1],[2,0,3,0],[3,3,3,1],[0,1,2,1]],[[1,2,1,1],[2,0,4,0],[2,3,3,1],[0,1,2,1]],[[1,2,1,1],[3,0,3,0],[2,3,3,1],[0,1,2,1]],[[1,3,1,1],[2,0,3,0],[2,3,3,1],[0,1,2,1]],[[2,2,1,1],[2,0,3,0],[2,3,3,1],[0,1,2,1]],[[1,0,3,1],[1,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,0,2,2],[1,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,0,2,1],[1,4,3,2],[2,3,2,0],[1,0,1,1]],[[1,0,2,1],[1,3,4,2],[2,3,2,0],[1,0,1,1]],[[1,0,3,1],[1,3,3,2],[2,3,2,0],[1,0,2,0]],[[1,0,2,2],[1,3,3,2],[2,3,2,0],[1,0,2,0]],[[1,0,2,1],[1,4,3,2],[2,3,2,0],[1,0,2,0]],[[1,0,2,1],[1,3,4,2],[2,3,2,0],[1,0,2,0]],[[1,0,2,1],[1,3,3,2],[3,3,2,0],[1,0,2,0]],[[1,0,2,1],[1,3,3,2],[2,4,2,0],[1,0,2,0]],[[1,0,2,1],[1,3,3,2],[2,3,2,0],[2,0,2,0]],[[1,0,3,1],[1,3,3,2],[2,3,2,0],[1,1,0,1]],[[1,0,2,2],[1,3,3,2],[2,3,2,0],[1,1,0,1]],[[1,0,2,1],[1,4,3,2],[2,3,2,0],[1,1,0,1]],[[1,0,2,1],[1,3,4,2],[2,3,2,0],[1,1,0,1]],[[1,0,2,1],[1,3,3,2],[3,3,2,0],[1,1,0,1]],[[1,0,2,1],[1,3,3,2],[2,4,2,0],[1,1,0,1]],[[1,0,2,1],[1,3,3,2],[2,3,2,0],[2,1,0,1]],[[1,0,3,1],[1,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,0,2,2],[1,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,0,2,1],[1,4,3,2],[2,3,2,0],[1,1,1,0]],[[1,0,2,1],[1,3,4,2],[2,3,2,0],[1,1,1,0]],[[1,0,2,1],[1,3,3,2],[3,3,2,0],[1,1,1,0]],[[1,0,2,1],[1,3,3,2],[2,4,2,0],[1,1,1,0]],[[1,0,2,1],[1,3,3,2],[2,3,2,0],[2,1,1,0]],[[1,2,1,1],[2,0,3,0],[2,3,3,0],[2,1,2,1]],[[1,2,1,1],[2,0,3,0],[2,4,3,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,0],[3,3,3,0],[1,1,2,1]],[[1,2,1,1],[3,0,3,0],[2,3,3,0],[1,1,2,1]],[[1,3,1,1],[2,0,3,0],[2,3,3,0],[1,1,2,1]],[[1,0,3,1],[1,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,0,2,2],[1,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,0,2,1],[1,4,3,2],[2,3,2,0],[1,2,0,0]],[[1,0,2,1],[1,3,4,2],[2,3,2,0],[1,2,0,0]],[[1,0,2,1],[1,3,3,2],[3,3,2,0],[1,2,0,0]],[[1,0,2,1],[1,3,3,2],[2,4,2,0],[1,2,0,0]],[[1,0,2,1],[1,3,3,2],[2,3,2,0],[2,2,0,0]],[[2,2,1,1],[2,0,3,0],[2,3,3,0],[1,1,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,0],[0,2,3,1]],[[1,2,1,1],[2,0,3,0],[2,3,3,0],[0,3,2,1]],[[1,2,1,1],[2,0,3,0],[2,4,3,0],[0,2,2,1]],[[1,2,1,1],[2,0,3,0],[3,3,3,0],[0,2,2,1]],[[1,2,1,1],[3,0,3,0],[2,3,3,0],[0,2,2,1]],[[1,3,1,1],[2,0,3,0],[2,3,3,0],[0,2,2,1]],[[2,2,1,1],[2,0,3,0],[2,3,3,0],[0,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,0,3,0],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[2,0,3,0],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[3,0,3,0],[2,3,2,2],[1,1,2,0]],[[1,3,1,1],[2,0,3,0],[2,3,2,2],[1,1,2,0]],[[2,2,1,1],[2,0,3,0],[2,3,2,2],[1,1,2,0]],[[1,2,1,1],[2,0,3,0],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[2,0,3,0],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[2,0,3,0],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,2,2],[0,2,3,0]],[[1,2,1,1],[2,0,3,0],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[2,0,3,0],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,3,0],[3,3,2,2],[0,2,2,0]],[[1,2,1,1],[3,0,3,0],[2,3,2,2],[0,2,2,0]],[[1,3,1,1],[2,0,3,0],[2,3,2,2],[0,2,2,0]],[[2,2,1,1],[2,0,3,0],[2,3,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,3,0],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[2,0,3,0],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[2,0,3,0],[2,3,2,3],[0,1,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[2,0,3,0],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[2,0,3,0],[3,3,2,1],[1,1,2,1]],[[1,2,1,1],[3,0,3,0],[2,3,2,1],[1,1,2,1]],[[1,3,1,1],[2,0,3,0],[2,3,2,1],[1,1,2,1]],[[2,2,1,1],[2,0,3,0],[2,3,2,1],[1,1,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[2,0,3,0],[2,3,2,1],[0,2,3,1]],[[1,2,1,1],[2,0,3,0],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[2,0,3,0],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[2,0,3,0],[3,3,2,1],[0,2,2,1]],[[1,2,1,1],[3,0,3,0],[2,3,2,1],[0,2,2,1]],[[1,3,1,1],[2,0,3,0],[2,3,2,1],[0,2,2,1]],[[2,2,1,1],[2,0,3,0],[2,3,2,1],[0,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,1,2],[2,1,2,1]],[[1,2,1,1],[2,0,3,0],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[2,0,3,0],[3,3,1,2],[1,1,2,1]],[[1,2,1,1],[3,0,3,0],[2,3,1,2],[1,1,2,1]],[[1,3,1,1],[2,0,3,0],[2,3,1,2],[1,1,2,1]],[[2,2,1,1],[2,0,3,0],[2,3,1,2],[1,1,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,0],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,0],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[2,0,3,0],[2,3,1,3],[0,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[2,0,3,0],[3,3,1,2],[0,2,2,1]],[[1,2,1,1],[3,0,3,0],[2,3,1,2],[0,2,2,1]],[[1,3,1,1],[2,0,3,0],[2,3,1,2],[0,2,2,1]],[[2,2,1,1],[2,0,3,0],[2,3,1,2],[0,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,3,0],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[2,0,3,0],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[3,0,3,0],[2,2,3,2],[1,2,1,0]],[[1,3,1,1],[2,0,3,0],[2,2,3,2],[1,2,1,0]],[[2,2,1,1],[2,0,3,0],[2,2,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,3,0],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[2,0,3,0],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[2,0,3,0],[3,2,3,2],[1,2,0,1]],[[1,2,1,1],[3,0,3,0],[2,2,3,2],[1,2,0,1]],[[1,3,1,1],[2,0,3,0],[2,2,3,2],[1,2,0,1]],[[2,2,1,1],[2,0,3,0],[2,2,3,2],[1,2,0,1]],[[1,2,1,1],[2,0,3,0],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,0,3,0],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[2,0,3,0],[2,2,3,3],[0,2,2,0]],[[1,2,1,1],[2,0,3,0],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[2,0,4,0],[2,2,3,2],[0,2,2,0]],[[1,2,1,1],[2,0,3,0],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[2,0,3,0],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[2,0,3,0],[2,2,4,2],[0,2,1,1]],[[1,2,1,1],[2,0,4,0],[2,2,3,2],[0,2,1,1]],[[1,2,1,1],[2,0,3,0],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[2,0,3,0],[2,2,3,1],[2,2,1,1]],[[1,2,1,1],[2,0,3,0],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[3,0,3,0],[2,2,3,1],[1,2,1,1]],[[1,3,1,1],[2,0,3,0],[2,2,3,1],[1,2,1,1]],[[2,2,1,1],[2,0,3,0],[2,2,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,3,0],[2,2,3,1],[0,2,2,2]],[[1,2,1,1],[2,0,3,0],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[2,0,3,0],[2,2,3,1],[0,3,2,1]],[[1,2,1,1],[2,0,3,0],[2,2,4,1],[0,2,2,1]],[[1,2,1,1],[2,0,4,0],[2,2,3,1],[0,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,2,3,0],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[2,2,3,0],[1,3,2,1]],[[1,2,1,1],[2,0,3,0],[2,2,3,0],[2,2,2,1]],[[1,2,1,1],[2,0,3,0],[3,2,3,0],[1,2,2,1]],[[1,2,1,1],[3,0,3,0],[2,2,3,0],[1,2,2,1]],[[1,3,1,1],[2,0,3,0],[2,2,3,0],[1,2,2,1]],[[2,2,1,1],[2,0,3,0],[2,2,3,0],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[2,0,3,0],[2,2,2,2],[1,3,2,0]],[[1,2,1,1],[2,0,3,0],[2,2,2,2],[2,2,2,0]],[[1,2,1,1],[2,0,3,0],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[3,0,3,0],[2,2,2,2],[1,2,2,0]],[[1,3,1,1],[2,0,3,0],[2,2,2,2],[1,2,2,0]],[[2,2,1,1],[2,0,3,0],[2,2,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,0],[2,2,2,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,0],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,0],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[2,0,3,0],[2,2,2,3],[0,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[2,0,3,0],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[2,0,3,0],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[2,0,3,0],[3,2,2,1],[1,2,2,1]],[[1,2,1,1],[3,0,3,0],[2,2,2,1],[1,2,2,1]],[[1,3,1,1],[2,0,3,0],[2,2,2,1],[1,2,2,1]],[[2,2,1,1],[2,0,3,0],[2,2,2,1],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,0],[2,2,1,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[2,2,1,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,0],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,2,1,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[3,2,1,2],[1,2,2,1]],[[1,2,1,1],[3,0,3,0],[2,2,1,2],[1,2,2,1]],[[1,3,1,1],[2,0,3,0],[2,2,1,2],[1,2,2,1]],[[2,2,1,1],[2,0,3,0],[2,2,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,1,3,2],[1,2,3,0]],[[1,2,1,1],[2,0,3,0],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[2,0,3,0],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[2,0,3,0],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[2,0,3,0],[2,1,4,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,0],[3,1,3,2],[1,2,2,0]],[[1,2,1,1],[2,0,4,0],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[3,0,3,0],[2,1,3,2],[1,2,2,0]],[[1,3,1,1],[2,0,3,0],[2,1,3,2],[1,2,2,0]],[[2,2,1,1],[2,0,3,0],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,0],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[2,0,3,0],[2,1,3,3],[1,2,1,1]],[[1,2,1,1],[2,0,3,0],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[2,0,4,0],[2,1,3,2],[1,2,1,1]],[[1,2,1,1],[2,0,3,0],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[2,0,3,0],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[2,0,3,0],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[3,1,3,1],[1,2,2,1]],[[1,2,1,1],[2,0,4,0],[2,1,3,1],[1,2,2,1]],[[1,2,1,1],[3,0,3,0],[2,1,3,1],[1,2,2,1]],[[1,3,1,1],[2,0,3,0],[2,1,3,1],[1,2,2,1]],[[2,2,1,1],[2,0,3,0],[2,1,3,1],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,0],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[2,1,2,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,0],[2,1,2,2],[2,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[3,1,2,2],[1,2,2,1]],[[1,2,1,1],[3,0,3,0],[2,1,2,2],[1,2,2,1]],[[1,3,1,1],[2,0,3,0],[2,1,2,2],[1,2,2,1]],[[2,2,1,1],[2,0,3,0],[2,1,2,2],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,0],[2,0,3,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[2,0,3,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,3,0],[1,3,3,2],[2,2,1,0]],[[1,2,1,1],[2,0,3,0],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[2,0,3,0],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[2,0,3,0],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,4,0],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,3,0],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[2,0,3,0],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[2,0,3,0],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[2,0,3,0],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[2,0,3,0],[1,3,4,2],[1,2,0,1]],[[1,2,1,1],[2,0,3,0],[1,4,3,2],[1,2,0,1]],[[1,2,1,1],[2,0,4,0],[1,3,3,2],[1,2,0,1]],[[1,2,1,1],[2,0,3,0],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[2,0,3,0],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[2,0,3,0],[1,3,4,2],[1,1,2,0]],[[1,2,1,1],[2,0,3,0],[1,4,3,2],[1,1,2,0]],[[1,2,1,1],[2,0,4,0],[1,3,3,2],[1,1,2,0]],[[1,2,1,1],[2,0,3,0],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[2,0,3,0],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[2,0,3,0],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[2,0,3,0],[1,4,3,2],[1,1,1,1]],[[1,2,1,1],[2,0,4,0],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[2,0,3,0],[1,3,3,2],[0,1,2,2]],[[1,2,1,1],[2,0,3,0],[1,3,3,2],[0,1,3,1]],[[1,2,1,1],[2,0,3,0],[1,3,4,2],[0,1,2,1]],[[1,2,1,1],[2,0,3,0],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[2,0,3,0],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[2,0,3,0],[1,3,4,1],[1,2,1,1]],[[1,2,1,1],[2,0,3,0],[1,4,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,4,0],[1,3,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,3,0],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[2,0,3,0],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[2,0,3,0],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[2,0,3,0],[1,4,3,1],[1,1,2,1]],[[1,2,1,1],[2,0,4,0],[1,3,3,1],[1,1,2,1]],[[1,2,1,1],[2,0,3,0],[1,3,3,0],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[1,3,3,0],[1,3,2,1]],[[1,2,1,1],[2,0,3,0],[1,3,3,0],[2,2,2,1]],[[1,2,1,1],[2,0,3,0],[1,4,3,0],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[2,0,3,0],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[2,0,3,0],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[2,0,3,0],[1,4,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,0],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[2,0,3,0],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[2,0,3,0],[1,3,2,3],[1,1,2,1]],[[1,2,1,1],[2,0,3,0],[1,3,2,1],[1,2,2,2]],[[1,2,1,1],[2,0,3,0],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[1,3,2,1],[1,3,2,1]],[[1,2,1,1],[2,0,3,0],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[2,0,3,0],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[1,3,1,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,0],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,0],[1,3,1,2],[2,2,2,1]],[[1,2,1,1],[2,0,3,0],[1,3,1,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[1,4,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[2,0,3,0],[1,2,3,2],[1,3,2,0]],[[1,2,1,1],[2,0,3,0],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[2,0,3,0],[1,2,3,3],[1,2,2,0]],[[1,2,1,1],[2,0,3,0],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[2,0,4,0],[1,2,3,2],[1,2,2,0]],[[1,2,1,1],[2,0,3,0],[1,2,3,2],[1,2,1,2]],[[1,0,3,1],[1,3,3,2],[2,3,3,0],[0,0,1,1]],[[1,0,2,2],[1,3,3,2],[2,3,3,0],[0,0,1,1]],[[1,0,2,1],[1,4,3,2],[2,3,3,0],[0,0,1,1]],[[1,0,2,1],[1,3,4,2],[2,3,3,0],[0,0,1,1]],[[1,0,3,1],[1,3,3,2],[2,3,3,0],[0,0,2,0]],[[1,0,2,2],[1,3,3,2],[2,3,3,0],[0,0,2,0]],[[1,0,2,1],[1,4,3,2],[2,3,3,0],[0,0,2,0]],[[1,0,2,1],[1,3,4,2],[2,3,3,0],[0,0,2,0]],[[1,2,1,1],[2,0,3,0],[1,2,3,3],[1,2,1,1]],[[1,2,1,1],[2,0,3,0],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[2,0,4,0],[1,2,3,2],[1,2,1,1]],[[1,2,1,1],[2,0,3,0],[1,2,3,2],[0,2,2,2]],[[1,2,1,1],[2,0,3,0],[1,2,3,2],[0,2,3,1]],[[1,2,1,1],[2,0,3,0],[1,2,4,2],[0,2,2,1]],[[1,2,1,1],[2,0,3,0],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[2,0,3,0],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[2,0,3,0],[1,2,3,1],[2,2,2,1]],[[1,0,3,1],[1,3,3,2],[2,3,3,0],[0,2,0,0]],[[1,0,2,2],[1,3,3,2],[2,3,3,0],[0,2,0,0]],[[1,0,2,1],[1,4,3,2],[2,3,3,0],[0,2,0,0]],[[1,0,2,1],[1,3,4,2],[2,3,3,0],[0,2,0,0]],[[1,0,2,1],[1,3,3,2],[3,3,3,0],[0,2,0,0]],[[1,0,2,1],[1,3,3,2],[2,4,3,0],[0,2,0,0]],[[1,2,1,1],[2,0,3,0],[1,2,4,1],[1,2,2,1]],[[1,2,1,1],[2,0,4,0],[1,2,3,1],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,0],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,0],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[2,0,3,0],[1,2,2,3],[1,2,2,1]],[[1,2,1,1],[2,0,3,0],[0,3,3,2],[1,1,2,2]],[[1,2,1,1],[2,0,3,0],[0,3,3,2],[1,1,3,1]],[[1,2,1,1],[2,0,3,0],[0,3,4,2],[1,1,2,1]],[[1,2,1,1],[2,0,3,0],[0,2,3,2],[1,2,2,2]],[[1,2,1,1],[2,0,3,0],[0,2,3,2],[1,2,3,1]],[[1,2,1,1],[2,0,3,0],[0,2,3,2],[1,3,2,1]],[[1,2,1,1],[2,0,3,0],[0,2,4,2],[1,2,2,1]],[[1,0,3,1],[1,3,3,2],[2,3,3,0],[1,1,0,0]],[[1,0,2,2],[1,3,3,2],[2,3,3,0],[1,1,0,0]],[[1,0,2,1],[1,4,3,2],[2,3,3,0],[1,1,0,0]],[[1,0,2,1],[1,3,4,2],[2,3,3,0],[1,1,0,0]],[[1,0,2,1],[1,3,3,2],[3,3,3,0],[1,1,0,0]],[[1,0,2,1],[1,3,3,2],[2,4,3,0],[1,1,0,0]],[[1,0,2,1],[1,3,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,1,1],[2,0,2,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,1],[2,0,2,2],[2,4,0,2],[1,1,2,1]],[[1,2,1,1],[2,0,2,2],[3,3,0,2],[1,1,2,1]],[[1,2,1,1],[3,0,2,2],[2,3,0,2],[1,1,2,1]],[[1,3,1,1],[2,0,2,2],[2,3,0,2],[1,1,2,1]],[[2,2,1,1],[2,0,2,2],[2,3,0,2],[1,1,2,1]],[[1,2,1,1],[2,0,2,2],[2,3,0,2],[0,2,2,2]],[[1,2,1,1],[2,0,2,2],[2,3,0,2],[0,2,3,1]],[[1,2,1,1],[2,0,2,2],[2,3,0,2],[0,3,2,1]],[[1,2,1,1],[2,0,2,2],[2,3,0,3],[0,2,2,1]],[[1,2,1,1],[2,0,2,2],[2,4,0,2],[0,2,2,1]],[[1,2,1,1],[2,0,2,2],[3,3,0,2],[0,2,2,1]],[[1,2,1,1],[2,0,2,3],[2,3,0,2],[0,2,2,1]],[[1,2,1,1],[3,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,2,1,2],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,3,1,1],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[2,2,1,1],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,2,1,1],[2,0,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,1,1],[2,0,2,2],[2,2,4,2],[1,1,1,0]],[[1,2,1,1],[2,0,2,3],[2,2,3,2],[1,1,1,0]],[[1,2,1,2],[2,0,2,2],[2,2,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,2,2],[2,2,3,2],[1,1,0,2]],[[1,2,1,1],[2,0,2,2],[2,2,3,3],[1,1,0,1]],[[1,2,1,1],[2,0,2,2],[2,2,4,2],[1,1,0,1]],[[1,2,1,1],[2,0,2,3],[2,2,3,2],[1,1,0,1]],[[1,2,1,2],[2,0,2,2],[2,2,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,2,2],[2,2,3,2],[1,0,3,0]],[[1,2,1,1],[2,0,2,2],[2,2,3,3],[1,0,2,0]],[[1,2,1,1],[2,0,2,2],[2,2,4,2],[1,0,2,0]],[[1,2,1,1],[2,0,2,3],[2,2,3,2],[1,0,2,0]],[[1,2,1,2],[2,0,2,2],[2,2,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,2,2],[2,2,3,2],[1,0,1,2]],[[1,2,1,1],[2,0,2,2],[2,2,3,3],[1,0,1,1]],[[1,2,1,1],[2,0,2,2],[2,2,4,2],[1,0,1,1]],[[1,2,1,1],[2,0,2,3],[2,2,3,2],[1,0,1,1]],[[1,2,1,2],[2,0,2,2],[2,2,3,2],[1,0,1,1]],[[1,2,1,1],[2,0,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,1,1],[2,0,2,2],[2,2,4,2],[0,2,1,0]],[[1,2,1,1],[2,0,2,3],[2,2,3,2],[0,2,1,0]],[[1,2,1,2],[2,0,2,2],[2,2,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,2,2],[2,2,3,2],[0,2,0,2]],[[1,2,1,1],[2,0,2,2],[2,2,3,3],[0,2,0,1]],[[1,2,1,1],[2,0,2,2],[2,2,4,2],[0,2,0,1]],[[1,2,1,1],[2,0,2,3],[2,2,3,2],[0,2,0,1]],[[1,2,1,2],[2,0,2,2],[2,2,3,2],[0,2,0,1]],[[1,2,1,1],[2,0,2,2],[2,2,3,2],[0,1,3,0]],[[1,2,1,1],[2,0,2,2],[2,2,3,3],[0,1,2,0]],[[1,2,1,1],[2,0,2,2],[2,2,4,2],[0,1,2,0]],[[1,2,1,1],[2,0,2,3],[2,2,3,2],[0,1,2,0]],[[1,2,1,2],[2,0,2,2],[2,2,3,2],[0,1,2,0]],[[1,2,1,1],[2,0,2,2],[2,2,3,2],[0,1,1,2]],[[1,2,1,1],[2,0,2,2],[2,2,3,3],[0,1,1,1]],[[1,2,1,1],[2,0,2,2],[2,2,4,2],[0,1,1,1]],[[1,2,1,1],[2,0,2,3],[2,2,3,2],[0,1,1,1]],[[1,2,1,2],[2,0,2,2],[2,2,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,2,2],[2,2,3,2],[0,0,2,2]],[[1,2,1,1],[2,0,2,2],[2,2,3,3],[0,0,2,1]],[[1,2,1,1],[2,0,2,2],[2,2,4,2],[0,0,2,1]],[[1,2,1,1],[2,0,2,3],[2,2,3,2],[0,0,2,1]],[[1,2,1,2],[2,0,2,2],[2,2,3,2],[0,0,2,1]],[[1,2,1,1],[2,0,2,2],[2,2,3,1],[1,0,2,2]],[[1,2,1,1],[2,0,2,2],[2,2,3,1],[1,0,3,1]],[[1,2,1,1],[2,0,2,2],[2,2,4,1],[1,0,2,1]],[[1,2,1,1],[2,0,2,2],[2,2,3,1],[0,1,2,2]],[[1,2,1,1],[2,0,2,2],[2,2,3,1],[0,1,3,1]],[[1,2,1,1],[2,0,2,2],[2,2,4,1],[0,1,2,1]],[[1,2,1,1],[2,0,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,1,1],[2,0,2,2],[2,2,2,2],[1,0,3,1]],[[1,2,1,1],[2,0,2,2],[2,2,2,3],[1,0,2,1]],[[1,2,1,1],[2,0,2,3],[2,2,2,2],[1,0,2,1]],[[1,2,1,2],[2,0,2,2],[2,2,2,2],[1,0,2,1]],[[1,2,1,1],[2,0,2,2],[2,2,2,2],[0,1,2,2]],[[1,2,1,1],[2,0,2,2],[2,2,2,2],[0,1,3,1]],[[1,2,1,1],[2,0,2,2],[2,2,2,3],[0,1,2,1]],[[1,2,1,1],[2,0,2,3],[2,2,2,2],[0,1,2,1]],[[1,2,1,2],[2,0,2,2],[2,2,2,2],[0,1,2,1]],[[1,2,1,1],[2,0,2,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[2,2,0,2],[1,2,3,1]],[[1,2,1,1],[2,0,2,2],[2,2,0,2],[1,3,2,1]],[[1,2,1,1],[2,0,2,2],[2,2,0,2],[2,2,2,1]],[[1,2,1,1],[2,0,2,2],[2,2,0,3],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[3,2,0,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,3],[2,2,0,2],[1,2,2,1]],[[1,2,1,1],[3,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,2,1,2],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,3,1,1],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[2,2,1,1],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[2,1,3,3],[1,2,1,0]],[[1,2,1,1],[2,0,2,2],[2,1,4,2],[1,2,1,0]],[[1,2,1,1],[2,0,2,3],[2,1,3,2],[1,2,1,0]],[[1,2,1,2],[2,0,2,2],[2,1,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,2,2],[2,1,3,2],[1,2,0,2]],[[1,2,1,1],[2,0,2,2],[2,1,3,3],[1,2,0,1]],[[1,2,1,1],[2,0,2,2],[2,1,4,2],[1,2,0,1]],[[1,2,1,1],[2,0,2,3],[2,1,3,2],[1,2,0,1]],[[1,2,1,2],[2,0,2,2],[2,1,3,2],[1,2,0,1]],[[1,2,1,1],[2,0,2,2],[2,1,3,2],[1,1,3,0]],[[1,2,1,1],[2,0,2,2],[2,1,3,3],[1,1,2,0]],[[1,2,1,1],[2,0,2,2],[2,1,4,2],[1,1,2,0]],[[1,2,1,1],[2,0,2,3],[2,1,3,2],[1,1,2,0]],[[1,2,1,2],[2,0,2,2],[2,1,3,2],[1,1,2,0]],[[1,2,1,1],[2,0,2,2],[2,1,3,2],[1,1,1,2]],[[1,2,1,1],[2,0,2,2],[2,1,3,3],[1,1,1,1]],[[1,2,1,1],[2,0,2,2],[2,1,4,2],[1,1,1,1]],[[1,2,1,1],[2,0,2,3],[2,1,3,2],[1,1,1,1]],[[1,2,1,2],[2,0,2,2],[2,1,3,2],[1,1,1,1]],[[1,2,1,1],[2,0,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,1,1],[2,0,2,2],[2,1,3,2],[0,3,2,0]],[[1,2,1,1],[2,0,2,2],[2,1,3,3],[0,2,2,0]],[[1,2,1,1],[2,0,2,2],[2,1,4,2],[0,2,2,0]],[[1,2,1,1],[2,0,2,3],[2,1,3,2],[0,2,2,0]],[[1,2,1,2],[2,0,2,2],[2,1,3,2],[0,2,2,0]],[[1,2,1,1],[2,0,2,2],[2,1,3,2],[0,2,1,2]],[[1,2,1,1],[2,0,2,2],[2,1,3,3],[0,2,1,1]],[[1,2,1,1],[2,0,2,2],[2,1,4,2],[0,2,1,1]],[[1,2,1,1],[2,0,2,3],[2,1,3,2],[0,2,1,1]],[[1,2,1,2],[2,0,2,2],[2,1,3,2],[0,2,1,1]],[[1,2,1,1],[2,0,2,2],[2,1,3,1],[1,1,2,2]],[[1,2,1,1],[2,0,2,2],[2,1,3,1],[1,1,3,1]],[[1,2,1,1],[2,0,2,2],[2,1,4,1],[1,1,2,1]],[[1,2,1,1],[2,0,2,2],[2,1,3,1],[0,2,2,2]],[[1,2,1,1],[2,0,2,2],[2,1,3,1],[0,2,3,1]],[[1,2,1,1],[2,0,2,2],[2,1,3,1],[0,3,2,1]],[[1,2,1,1],[2,0,2,2],[2,1,4,1],[0,2,2,1]],[[1,2,1,1],[2,0,2,2],[2,1,2,2],[1,1,2,2]],[[1,2,1,1],[2,0,2,2],[2,1,2,2],[1,1,3,1]],[[1,2,1,1],[2,0,2,2],[2,1,2,3],[1,1,2,1]],[[1,2,1,1],[2,0,2,3],[2,1,2,2],[1,1,2,1]],[[1,2,1,2],[2,0,2,2],[2,1,2,2],[1,1,2,1]],[[1,2,1,1],[2,0,2,2],[2,1,2,2],[0,2,2,2]],[[1,2,1,1],[2,0,2,2],[2,1,2,2],[0,2,3,1]],[[1,2,1,1],[2,0,2,2],[2,1,2,2],[0,3,2,1]],[[1,2,1,1],[2,0,2,2],[2,1,2,3],[0,2,2,1]],[[1,2,1,1],[2,0,2,3],[2,1,2,2],[0,2,2,1]],[[1,2,1,2],[2,0,2,2],[2,1,2,2],[0,2,2,1]],[[1,2,1,1],[2,0,2,2],[2,1,1,2],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[2,1,1,2],[1,2,3,1]],[[1,2,1,1],[2,0,2,2],[2,1,1,2],[1,3,2,1]],[[1,2,1,1],[2,0,2,2],[2,1,1,2],[2,2,2,1]],[[1,2,1,1],[2,0,2,2],[2,1,1,3],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[3,1,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,3],[2,1,1,2],[1,2,2,1]],[[1,2,1,1],[3,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,2,1,2],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,3,1,1],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[2,2,1,1],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[2,0,3,2],[1,1,2,2]],[[1,2,1,1],[2,0,2,2],[2,0,3,2],[1,1,3,1]],[[1,2,1,1],[2,0,2,2],[2,0,3,3],[1,1,2,1]],[[1,2,1,1],[2,0,2,3],[2,0,3,2],[1,1,2,1]],[[1,2,1,2],[2,0,2,2],[2,0,3,2],[1,1,2,1]],[[1,2,1,1],[2,0,2,2],[2,0,3,2],[0,2,2,2]],[[1,2,1,1],[2,0,2,2],[2,0,3,2],[0,2,3,1]],[[1,2,1,1],[2,0,2,2],[2,0,3,3],[0,2,2,1]],[[1,2,1,1],[2,0,2,3],[2,0,3,2],[0,2,2,1]],[[1,2,1,2],[2,0,2,2],[2,0,3,2],[0,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[2,0,2,2],[1,3,4,2],[1,1,1,0]],[[1,2,1,1],[2,0,2,2],[1,4,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,2,3],[1,3,3,2],[1,1,1,0]],[[1,2,1,2],[2,0,2,2],[1,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,2,2],[1,3,3,2],[1,1,0,2]],[[1,2,1,1],[2,0,2,2],[1,3,3,3],[1,1,0,1]],[[1,2,1,1],[2,0,2,2],[1,3,4,2],[1,1,0,1]],[[1,2,1,1],[2,0,2,2],[1,4,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,2,3],[1,3,3,2],[1,1,0,1]],[[1,2,1,2],[2,0,2,2],[1,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,2,2],[1,3,3,2],[1,0,3,0]],[[1,2,1,1],[2,0,2,2],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[2,0,2,2],[1,3,4,2],[1,0,2,0]],[[1,2,1,1],[2,0,2,2],[1,4,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,2,3],[1,3,3,2],[1,0,2,0]],[[1,2,1,2],[2,0,2,2],[1,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,2,2],[1,3,3,2],[1,0,1,2]],[[1,2,1,1],[2,0,2,2],[1,3,3,3],[1,0,1,1]],[[1,2,1,1],[2,0,2,2],[1,3,4,2],[1,0,1,1]],[[1,2,1,1],[2,0,2,2],[1,4,3,2],[1,0,1,1]],[[1,2,1,1],[2,0,2,3],[1,3,3,2],[1,0,1,1]],[[1,2,1,2],[2,0,2,2],[1,3,3,2],[1,0,1,1]],[[1,2,1,1],[2,0,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,0,2,2],[1,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,0,2,2],[1,3,4,2],[0,2,1,0]],[[1,2,1,1],[2,0,2,2],[1,4,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,2,3],[1,3,3,2],[0,2,1,0]],[[1,2,1,2],[2,0,2,2],[1,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,2,2],[1,3,3,2],[0,2,0,2]],[[1,2,1,1],[2,0,2,2],[1,3,3,2],[0,3,0,1]],[[1,2,1,1],[2,0,2,2],[1,3,3,3],[0,2,0,1]],[[1,2,1,1],[2,0,2,2],[1,3,4,2],[0,2,0,1]],[[1,2,1,1],[2,0,2,2],[1,4,3,2],[0,2,0,1]],[[1,2,1,1],[2,0,2,3],[1,3,3,2],[0,2,0,1]],[[1,2,1,2],[2,0,2,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,0,0,1],[3,3,3,2],[1,2,2,1]],[[1,0,2,1],[2,0,0,1],[2,3,3,2],[2,2,2,1]],[[1,0,2,1],[2,0,0,1],[2,3,3,2],[1,3,2,1]],[[1,0,2,1],[2,0,0,1],[2,3,3,2],[1,2,3,1]],[[1,0,2,1],[2,0,0,1],[2,3,3,2],[1,2,2,2]],[[1,0,2,1],[2,0,0,2],[1,3,3,3],[1,2,2,1]],[[1,0,2,1],[2,0,0,2],[1,3,3,2],[2,2,2,1]],[[1,0,2,1],[2,0,0,2],[1,3,3,2],[1,3,2,1]],[[1,0,2,1],[2,0,0,2],[1,3,3,2],[1,2,3,1]],[[1,0,2,1],[2,0,0,2],[1,3,3,2],[1,2,2,2]],[[1,0,2,1],[2,0,0,2],[3,2,3,2],[1,2,2,1]],[[1,0,2,1],[2,0,0,2],[2,2,3,3],[1,2,2,1]],[[1,0,2,1],[2,0,0,2],[2,2,3,2],[2,2,2,1]],[[1,0,2,1],[2,0,0,2],[2,2,3,2],[1,3,2,1]],[[1,0,2,1],[2,0,0,2],[2,2,3,2],[1,2,3,1]],[[1,0,2,1],[2,0,0,2],[2,2,3,2],[1,2,2,2]],[[1,0,2,1],[2,0,0,2],[3,3,2,2],[1,2,2,1]],[[1,0,2,1],[2,0,0,2],[2,3,2,3],[1,2,2,1]],[[1,0,2,1],[2,0,0,2],[2,3,2,2],[2,2,2,1]],[[1,0,2,1],[2,0,0,2],[2,3,2,2],[1,3,2,1]],[[1,0,2,1],[2,0,0,2],[2,3,2,2],[1,2,3,1]],[[1,0,2,1],[2,0,0,2],[2,3,2,2],[1,2,2,2]],[[1,0,2,1],[2,0,0,2],[3,3,3,1],[1,2,2,1]],[[1,0,2,1],[2,0,0,2],[2,3,3,1],[2,2,2,1]],[[1,0,2,1],[2,0,0,2],[2,3,3,1],[1,3,2,1]],[[1,0,2,1],[2,0,0,2],[2,3,3,1],[1,2,3,1]],[[1,0,2,1],[2,0,0,2],[2,3,3,1],[1,2,2,2]],[[1,0,2,1],[2,0,0,2],[2,3,3,3],[0,2,2,1]],[[1,0,2,1],[2,0,0,2],[2,3,3,2],[0,3,2,1]],[[1,0,2,1],[2,0,0,2],[2,3,3,2],[0,2,3,1]],[[1,0,2,1],[2,0,0,2],[2,3,3,2],[0,2,2,2]],[[1,0,2,1],[2,0,0,2],[3,3,3,2],[1,2,2,0]],[[1,0,2,1],[2,0,0,2],[2,3,3,2],[2,2,2,0]],[[1,0,2,1],[2,0,0,2],[2,3,3,2],[1,3,2,0]],[[1,0,2,1],[2,0,0,2],[2,3,3,2],[1,2,3,0]],[[1,0,2,2],[2,0,1,2],[1,3,2,2],[1,2,2,1]],[[1,0,2,1],[2,0,1,3],[1,3,2,2],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[1,3,2,3],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[1,3,2,2],[2,2,2,1]],[[1,0,2,1],[2,0,1,2],[1,3,2,2],[1,3,2,1]],[[1,0,2,1],[2,0,1,2],[1,3,2,2],[1,2,3,1]],[[1,0,2,1],[2,0,1,2],[1,3,2,2],[1,2,2,2]],[[1,0,2,1],[2,0,1,2],[1,3,4,1],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[1,3,3,1],[2,2,2,1]],[[1,0,2,1],[2,0,1,2],[1,3,3,1],[1,3,2,1]],[[1,0,2,1],[2,0,1,2],[1,3,3,1],[1,2,3,1]],[[1,0,2,1],[2,0,1,2],[1,3,3,1],[1,2,2,2]],[[1,0,2,2],[2,0,1,2],[1,3,3,2],[1,2,1,1]],[[1,0,2,1],[2,0,1,3],[1,3,3,2],[1,2,1,1]],[[1,0,2,1],[2,0,1,2],[1,3,4,2],[1,2,1,1]],[[1,0,2,1],[2,0,1,2],[1,3,3,3],[1,2,1,1]],[[1,0,2,1],[2,0,1,2],[1,3,3,2],[1,2,1,2]],[[1,0,2,2],[2,0,1,2],[1,3,3,2],[1,2,2,0]],[[1,0,2,1],[2,0,1,3],[1,3,3,2],[1,2,2,0]],[[1,0,2,1],[2,0,1,2],[1,3,4,2],[1,2,2,0]],[[1,0,2,1],[2,0,1,2],[1,3,3,3],[1,2,2,0]],[[1,0,2,1],[2,0,1,2],[1,3,3,2],[2,2,2,0]],[[1,0,2,1],[2,0,1,2],[1,3,3,2],[1,3,2,0]],[[1,0,2,1],[2,0,1,2],[1,3,3,2],[1,2,3,0]],[[1,0,2,2],[2,0,1,2],[2,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,0,1,3],[2,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[3,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,2,2,3],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,2,2,2],[2,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,2,2,2],[1,3,2,1]],[[1,0,2,1],[2,0,1,2],[2,2,2,2],[1,2,3,1]],[[1,0,2,1],[2,0,1,2],[2,2,2,2],[1,2,2,2]],[[1,0,2,1],[2,0,1,2],[3,2,3,1],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,2,4,1],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,2,3,1],[2,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,2,3,1],[1,3,2,1]],[[1,0,2,1],[2,0,1,2],[2,2,3,1],[1,2,3,1]],[[1,0,2,1],[2,0,1,2],[2,2,3,1],[1,2,2,2]],[[1,0,2,2],[2,0,1,2],[2,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,0,1,3],[2,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,0,1,2],[2,2,4,2],[1,2,1,1]],[[1,0,2,1],[2,0,1,2],[2,2,3,3],[1,2,1,1]],[[1,0,2,1],[2,0,1,2],[2,2,3,2],[1,2,1,2]],[[1,0,2,2],[2,0,1,2],[2,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,0,1,3],[2,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,0,1,2],[3,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,0,1,2],[2,2,4,2],[1,2,2,0]],[[1,0,2,1],[2,0,1,2],[2,2,3,3],[1,2,2,0]],[[1,0,2,1],[2,0,1,2],[2,2,3,2],[2,2,2,0]],[[1,0,2,1],[2,0,1,2],[2,2,3,2],[1,3,2,0]],[[1,0,2,1],[2,0,1,2],[2,2,3,2],[1,2,3,0]],[[1,0,2,2],[2,0,1,2],[2,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,0,1,3],[2,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[3,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,1,3],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,0,1,2],[2,3,1,2],[1,2,2,2]],[[1,0,2,1],[2,0,1,2],[3,3,2,1],[1,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,0,1,2],[2,3,2,1],[1,2,2,2]],[[1,0,2,2],[2,0,1,2],[2,3,2,2],[0,2,2,1]],[[1,0,2,1],[2,0,1,3],[2,3,2,2],[0,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,2,3],[0,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,2,2],[0,3,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,2,2],[0,2,3,1]],[[1,0,2,1],[2,0,1,2],[2,3,2,2],[0,2,2,2]],[[1,0,2,1],[2,0,1,2],[3,3,2,2],[1,2,2,0]],[[1,0,2,1],[2,0,1,2],[2,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,0,1,2],[2,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,0,1,2],[2,3,2,2],[1,2,3,0]],[[1,0,2,1],[2,0,1,2],[2,3,4,1],[0,2,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,3,1],[0,3,2,1]],[[1,0,2,1],[2,0,1,2],[2,3,3,1],[0,2,3,1]],[[1,0,2,1],[2,0,1,2],[2,3,3,1],[0,2,2,2]],[[1,0,2,1],[2,0,1,2],[3,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,0,1,2],[2,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,0,1,2],[2,3,3,1],[1,3,1,1]],[[1,0,2,2],[2,0,1,2],[2,3,3,2],[0,2,1,1]],[[1,0,2,1],[2,0,1,3],[2,3,3,2],[0,2,1,1]],[[1,0,2,1],[2,0,1,2],[2,3,4,2],[0,2,1,1]],[[1,0,2,1],[2,0,1,2],[2,3,3,3],[0,2,1,1]],[[1,0,2,1],[2,0,1,2],[2,3,3,2],[0,2,1,2]],[[1,0,2,2],[2,0,1,2],[2,3,3,2],[0,2,2,0]],[[1,0,2,1],[2,0,1,3],[2,3,3,2],[0,2,2,0]],[[1,0,2,1],[2,0,1,2],[2,3,4,2],[0,2,2,0]],[[1,0,2,1],[2,0,1,2],[2,3,3,3],[0,2,2,0]],[[1,0,2,1],[2,0,1,2],[2,3,3,2],[0,3,2,0]],[[1,0,2,1],[2,0,1,2],[2,3,3,2],[0,2,3,0]],[[1,0,2,1],[2,0,1,2],[3,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,0,1,2],[2,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,0,1,2],[2,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,0,1,2],[3,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,0,1,2],[2,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,0,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,2,2],[1,3,3,2],[0,1,3,0]],[[1,2,1,1],[2,0,2,2],[1,3,3,3],[0,1,2,0]],[[1,2,1,1],[2,0,2,2],[1,3,4,2],[0,1,2,0]],[[1,2,1,1],[2,0,2,2],[1,4,3,2],[0,1,2,0]],[[1,0,2,1],[2,0,2,0],[3,3,3,1],[1,2,2,1]],[[1,0,2,1],[2,0,2,0],[2,3,3,1],[2,2,2,1]],[[1,0,2,1],[2,0,2,0],[2,3,3,1],[1,3,2,1]],[[1,0,2,1],[2,0,2,0],[2,3,3,1],[1,2,3,1]],[[1,0,2,1],[2,0,2,0],[2,3,3,1],[1,2,2,2]],[[1,0,2,1],[2,0,2,0],[3,3,3,2],[1,2,2,0]],[[1,0,2,1],[2,0,2,0],[2,3,3,2],[2,2,2,0]],[[1,0,2,1],[2,0,2,0],[2,3,3,2],[1,3,2,0]],[[1,0,2,1],[2,0,2,0],[2,3,3,2],[1,2,3,0]],[[1,2,1,1],[2,0,2,3],[1,3,3,2],[0,1,2,0]],[[1,2,1,2],[2,0,2,2],[1,3,3,2],[0,1,2,0]],[[1,2,1,1],[2,0,2,2],[1,3,3,2],[0,1,1,2]],[[1,2,1,1],[2,0,2,2],[1,3,3,3],[0,1,1,1]],[[1,2,1,1],[2,0,2,2],[1,3,4,2],[0,1,1,1]],[[1,2,1,1],[2,0,2,2],[1,4,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,2,3],[1,3,3,2],[0,1,1,1]],[[1,2,1,2],[2,0,2,2],[1,3,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,2,2],[1,3,3,2],[0,0,2,2]],[[1,2,1,1],[2,0,2,2],[1,3,3,3],[0,0,2,1]],[[1,2,1,1],[2,0,2,2],[1,3,4,2],[0,0,2,1]],[[1,2,1,1],[2,0,2,3],[1,3,3,2],[0,0,2,1]],[[1,2,1,2],[2,0,2,2],[1,3,3,2],[0,0,2,1]],[[1,2,1,1],[2,0,2,2],[1,3,3,1],[1,0,2,2]],[[1,0,2,2],[2,0,2,2],[2,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,0,2,3],[2,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,0,2,2],[3,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,0,2,2],[2,3,0,3],[1,2,2,1]],[[1,0,2,1],[2,0,2,2],[2,3,0,2],[2,2,2,1]],[[1,0,2,1],[2,0,2,2],[2,3,0,2],[1,3,2,1]],[[1,0,2,1],[2,0,2,2],[2,3,0,2],[1,2,3,1]],[[1,0,2,1],[2,0,2,2],[2,3,0,2],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[1,3,3,1],[1,0,3,1]],[[1,2,1,1],[2,0,2,2],[1,3,4,1],[1,0,2,1]],[[1,2,1,1],[2,0,2,2],[1,4,3,1],[1,0,2,1]],[[1,2,1,1],[2,0,2,2],[1,3,3,1],[0,3,1,1]],[[1,2,1,1],[2,0,2,2],[1,3,4,1],[0,2,1,1]],[[1,2,1,1],[2,0,2,2],[1,4,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,2,2],[1,3,3,1],[0,1,2,2]],[[1,2,1,1],[2,0,2,2],[1,3,3,1],[0,1,3,1]],[[1,2,1,1],[2,0,2,2],[1,3,4,1],[0,1,2,1]],[[1,2,1,1],[2,0,2,2],[1,4,3,1],[0,1,2,1]],[[1,2,1,1],[2,0,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,1,1],[2,0,2,2],[1,3,2,2],[1,0,3,1]],[[1,2,1,1],[2,0,2,2],[1,3,2,3],[1,0,2,1]],[[1,2,1,1],[2,0,2,3],[1,3,2,2],[1,0,2,1]],[[1,2,1,2],[2,0,2,2],[1,3,2,2],[1,0,2,1]],[[1,2,1,1],[2,0,2,2],[1,3,2,2],[0,2,3,0]],[[1,2,1,1],[2,0,2,2],[1,3,2,2],[0,3,2,0]],[[1,2,1,1],[2,0,2,2],[1,4,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,2,2],[1,3,2,2],[0,1,2,2]],[[1,2,1,1],[2,0,2,2],[1,3,2,2],[0,1,3,1]],[[1,2,1,1],[2,0,2,2],[1,3,2,3],[0,1,2,1]],[[1,2,1,1],[2,0,2,3],[1,3,2,2],[0,1,2,1]],[[1,2,1,2],[2,0,2,2],[1,3,2,2],[0,1,2,1]],[[1,0,2,1],[2,0,3,0],[1,3,2,3],[1,2,2,1]],[[1,0,2,1],[2,0,3,0],[1,3,2,2],[2,2,2,1]],[[1,0,2,1],[2,0,3,0],[1,3,2,2],[1,3,2,1]],[[1,0,2,1],[2,0,3,0],[1,3,2,2],[1,2,3,1]],[[1,0,2,1],[2,0,3,0],[1,3,2,2],[1,2,2,2]],[[1,0,2,1],[2,0,3,0],[1,3,4,1],[1,2,2,1]],[[1,0,2,1],[2,0,3,0],[1,3,3,1],[2,2,2,1]],[[1,0,2,1],[2,0,3,0],[1,3,3,1],[1,3,2,1]],[[1,0,2,1],[2,0,3,0],[1,3,3,1],[1,2,3,1]],[[1,0,2,1],[2,0,3,0],[1,3,3,1],[1,2,2,2]],[[1,0,2,1],[2,0,3,0],[1,3,4,2],[1,2,1,1]],[[1,0,2,1],[2,0,3,0],[1,3,3,3],[1,2,1,1]],[[1,0,2,1],[2,0,3,0],[1,3,3,2],[1,2,1,2]],[[1,0,2,1],[2,0,3,0],[1,3,4,2],[1,2,2,0]],[[1,0,2,1],[2,0,3,0],[1,3,3,3],[1,2,2,0]],[[1,0,2,1],[2,0,3,0],[1,3,3,2],[2,2,2,0]],[[1,0,2,1],[2,0,3,0],[1,3,3,2],[1,3,2,0]],[[1,0,2,1],[2,0,3,0],[1,3,3,2],[1,2,3,0]],[[1,0,2,1],[2,0,3,0],[3,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,2,2,3],[1,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,2,2,2],[2,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,2,2,2],[1,3,2,1]],[[1,0,2,1],[2,0,3,0],[2,2,2,2],[1,2,3,1]],[[1,0,2,1],[2,0,3,0],[2,2,2,2],[1,2,2,2]],[[1,0,2,1],[2,0,3,0],[3,2,3,1],[1,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,2,4,1],[1,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,2,3,1],[2,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,2,3,1],[1,3,2,1]],[[1,0,2,1],[2,0,3,0],[2,2,3,1],[1,2,3,1]],[[1,0,2,1],[2,0,3,0],[2,2,3,1],[1,2,2,2]],[[1,0,2,1],[2,0,3,0],[2,2,4,2],[1,2,1,1]],[[1,0,2,1],[2,0,3,0],[2,2,3,3],[1,2,1,1]],[[1,0,2,1],[2,0,3,0],[2,2,3,2],[1,2,1,2]],[[1,0,2,1],[2,0,3,0],[3,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,0,3,0],[2,2,4,2],[1,2,2,0]],[[1,0,2,1],[2,0,3,0],[2,2,3,3],[1,2,2,0]],[[1,0,2,1],[2,0,3,0],[2,2,3,2],[2,2,2,0]],[[1,0,2,1],[2,0,3,0],[2,2,3,2],[1,3,2,0]],[[1,0,2,1],[2,0,3,0],[2,2,3,2],[1,2,3,0]],[[1,0,2,1],[2,0,3,0],[3,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,1,3],[1,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,0,3,0],[2,3,1,2],[1,2,2,2]],[[1,0,2,1],[2,0,3,0],[3,3,2,1],[1,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,0,3,0],[2,3,2,1],[1,2,2,2]],[[1,0,2,1],[2,0,3,0],[2,3,2,3],[0,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,2,2],[0,3,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,2,2],[0,2,3,1]],[[1,0,2,1],[2,0,3,0],[2,3,2,2],[0,2,2,2]],[[1,0,2,1],[2,0,3,0],[3,3,2,2],[1,2,2,0]],[[1,0,2,1],[2,0,3,0],[2,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,0,3,0],[2,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,0,3,0],[2,3,2,2],[1,2,3,0]],[[1,0,2,1],[2,0,3,0],[3,3,3,0],[1,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,0],[2,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,0],[1,3,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,0],[1,2,3,1]],[[1,0,2,1],[2,0,3,0],[2,3,4,1],[0,2,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,1],[0,3,2,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,1],[0,2,3,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,1],[0,2,2,2]],[[1,0,2,1],[2,0,3,0],[3,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,1],[1,3,1,1]],[[1,0,2,1],[2,0,3,0],[2,3,4,2],[0,2,1,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,3],[0,2,1,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,2],[0,2,1,2]],[[1,0,2,1],[2,0,3,0],[2,3,4,2],[0,2,2,0]],[[1,0,2,1],[2,0,3,0],[2,3,3,3],[0,2,2,0]],[[1,0,2,1],[2,0,3,0],[2,3,3,2],[0,3,2,0]],[[1,0,2,1],[2,0,3,0],[2,3,3,2],[0,2,3,0]],[[1,0,2,1],[2,0,3,0],[3,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,0,3,0],[2,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,0,3,0],[3,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,0,3,0],[2,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,0,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,2,2],[1,3,2,1],[0,2,2,2]],[[1,2,1,1],[2,0,2,2],[1,3,2,1],[0,2,3,1]],[[1,2,1,1],[2,0,2,2],[1,3,2,1],[0,3,2,1]],[[1,2,1,1],[2,0,2,2],[1,4,2,1],[0,2,2,1]],[[1,0,2,1],[2,0,3,1],[1,3,4,0],[1,2,2,1]],[[1,0,2,1],[2,0,3,1],[1,3,3,0],[2,2,2,1]],[[1,0,2,1],[2,0,3,1],[1,3,3,0],[1,3,2,1]],[[1,0,2,1],[2,0,3,1],[1,3,3,0],[1,2,3,1]],[[1,0,2,1],[2,0,3,1],[1,3,3,0],[1,2,2,2]],[[1,0,2,1],[2,0,3,1],[1,3,4,1],[1,2,2,0]],[[1,0,2,1],[2,0,3,1],[1,3,3,1],[2,2,2,0]],[[1,0,2,1],[2,0,3,1],[1,3,3,1],[1,3,2,0]],[[1,0,2,1],[2,0,3,1],[1,3,3,1],[1,2,3,0]],[[1,0,2,1],[2,0,3,1],[3,2,3,0],[1,2,2,1]],[[1,0,2,1],[2,0,3,1],[2,2,4,0],[1,2,2,1]],[[1,0,2,1],[2,0,3,1],[2,2,3,0],[2,2,2,1]],[[1,0,2,1],[2,0,3,1],[2,2,3,0],[1,3,2,1]],[[1,0,2,1],[2,0,3,1],[2,2,3,0],[1,2,3,1]],[[1,0,2,1],[2,0,3,1],[2,2,3,0],[1,2,2,2]],[[1,0,2,1],[2,0,3,1],[3,2,3,1],[1,2,2,0]],[[1,0,2,1],[2,0,3,1],[2,2,4,1],[1,2,2,0]],[[1,0,2,1],[2,0,3,1],[2,2,3,1],[2,2,2,0]],[[1,0,2,1],[2,0,3,1],[2,2,3,1],[1,3,2,0]],[[1,0,2,1],[2,0,3,1],[2,2,3,1],[1,2,3,0]],[[1,2,1,1],[2,0,2,2],[1,3,1,2],[0,2,2,2]],[[1,2,1,1],[2,0,2,2],[1,3,1,2],[0,2,3,1]],[[1,2,1,1],[2,0,2,2],[1,3,1,2],[0,3,2,1]],[[1,2,1,1],[2,0,2,2],[1,3,1,3],[0,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,4,1,2],[0,2,2,1]],[[1,0,2,1],[2,0,3,1],[3,3,2,0],[1,2,2,1]],[[1,0,2,1],[2,0,3,1],[2,3,2,0],[2,2,2,1]],[[1,0,2,1],[2,0,3,1],[2,3,2,0],[1,3,2,1]],[[1,0,2,1],[2,0,3,1],[2,3,2,0],[1,2,3,1]],[[1,0,2,1],[2,0,3,1],[2,3,2,0],[1,2,2,2]],[[1,0,2,1],[2,0,3,1],[3,3,2,1],[1,2,2,0]],[[1,0,2,1],[2,0,3,1],[2,3,2,1],[2,2,2,0]],[[1,0,2,1],[2,0,3,1],[2,3,2,1],[1,3,2,0]],[[1,0,2,1],[2,0,3,1],[2,3,2,1],[1,2,3,0]],[[1,2,1,1],[2,0,2,3],[1,3,1,2],[0,2,2,1]],[[1,2,1,2],[2,0,2,2],[1,3,1,2],[0,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,3,0,2],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[1,3,0,2],[1,2,3,1]],[[1,2,1,1],[2,0,2,2],[1,3,0,2],[1,3,2,1]],[[1,2,1,1],[2,0,2,2],[1,3,0,2],[2,2,2,1]],[[1,0,2,1],[2,0,3,1],[2,3,4,0],[0,2,2,1]],[[1,0,2,1],[2,0,3,1],[2,3,3,0],[0,3,2,1]],[[1,0,2,1],[2,0,3,1],[2,3,3,0],[0,2,3,1]],[[1,0,2,1],[2,0,3,1],[2,3,3,0],[0,2,2,2]],[[1,0,2,1],[2,0,3,1],[3,3,3,0],[1,2,1,1]],[[1,0,2,1],[2,0,3,1],[2,3,3,0],[2,2,1,1]],[[1,0,2,1],[2,0,3,1],[2,3,3,0],[1,3,1,1]],[[1,0,2,1],[2,0,3,1],[2,3,4,1],[0,2,2,0]],[[1,0,2,1],[2,0,3,1],[2,3,3,1],[0,3,2,0]],[[1,0,2,1],[2,0,3,1],[2,3,3,1],[0,2,3,0]],[[1,0,2,1],[2,0,3,1],[3,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,0,3,1],[2,3,3,1],[2,2,0,1]],[[1,0,2,1],[2,0,3,1],[2,3,3,1],[1,3,0,1]],[[1,0,2,1],[2,0,3,1],[3,3,3,1],[1,2,1,0]],[[1,0,2,1],[2,0,3,1],[2,3,3,1],[2,2,1,0]],[[1,0,2,1],[2,0,3,1],[2,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,0,2,2],[1,3,0,3],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,4,0,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,3],[1,3,0,2],[1,2,2,1]],[[1,2,1,2],[2,0,2,2],[1,3,0,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,0,2,2],[1,2,3,2],[0,3,2,0]],[[1,2,1,1],[2,0,2,2],[1,2,3,3],[0,2,2,0]],[[1,2,1,1],[2,0,2,2],[1,2,4,2],[0,2,2,0]],[[1,2,1,1],[2,0,2,3],[1,2,3,2],[0,2,2,0]],[[1,2,1,2],[2,0,2,2],[1,2,3,2],[0,2,2,0]],[[1,2,1,1],[2,0,2,2],[1,2,3,2],[0,2,1,2]],[[1,2,1,1],[2,0,2,2],[1,2,3,3],[0,2,1,1]],[[1,2,1,1],[2,0,2,2],[1,2,4,2],[0,2,1,1]],[[1,2,1,1],[2,0,2,3],[1,2,3,2],[0,2,1,1]],[[1,2,1,2],[2,0,2,2],[1,2,3,2],[0,2,1,1]],[[1,2,1,1],[2,0,2,2],[1,2,3,1],[0,2,2,2]],[[1,2,1,1],[2,0,2,2],[1,2,3,1],[0,2,3,1]],[[1,2,1,1],[2,0,2,2],[1,2,3,1],[0,3,2,1]],[[1,2,1,1],[2,0,2,2],[1,2,4,1],[0,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,2,2,2],[0,2,2,2]],[[1,2,1,1],[2,0,2,2],[1,2,2,2],[0,2,3,1]],[[1,2,1,1],[2,0,2,2],[1,2,2,2],[0,3,2,1]],[[1,2,1,1],[2,0,2,2],[1,2,2,3],[0,2,2,1]],[[1,2,1,1],[2,0,2,3],[1,2,2,2],[0,2,2,1]],[[1,2,1,2],[2,0,2,2],[1,2,2,2],[0,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,1,3,2],[1,2,3,0]],[[1,2,1,1],[2,0,2,2],[1,1,3,2],[1,3,2,0]],[[1,2,1,1],[2,0,2,2],[1,1,3,2],[2,2,2,0]],[[1,2,1,1],[2,0,2,2],[1,1,3,3],[1,2,2,0]],[[1,2,1,1],[2,0,2,2],[1,1,4,2],[1,2,2,0]],[[1,2,1,1],[2,0,2,3],[1,1,3,2],[1,2,2,0]],[[1,2,1,2],[2,0,2,2],[1,1,3,2],[1,2,2,0]],[[1,2,1,1],[2,0,2,2],[1,1,3,2],[1,2,1,2]],[[1,2,1,1],[2,0,2,2],[1,1,3,3],[1,2,1,1]],[[1,2,1,1],[2,0,2,2],[1,1,4,2],[1,2,1,1]],[[1,2,1,1],[2,0,2,3],[1,1,3,2],[1,2,1,1]],[[1,2,1,2],[2,0,2,2],[1,1,3,2],[1,2,1,1]],[[1,2,1,1],[2,0,2,2],[1,1,3,2],[0,2,2,2]],[[1,2,1,1],[2,0,2,2],[1,1,3,2],[0,2,3,1]],[[1,2,1,1],[2,0,2,2],[1,1,3,3],[0,2,2,1]],[[1,2,1,1],[2,0,2,3],[1,1,3,2],[0,2,2,1]],[[1,2,1,2],[2,0,2,2],[1,1,3,2],[0,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,1,3,1],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[1,1,3,1],[1,2,3,1]],[[1,2,1,1],[2,0,2,2],[1,1,3,1],[1,3,2,1]],[[1,2,1,1],[2,0,2,2],[1,1,3,1],[2,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,1,4,1],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,1,2,2],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[1,1,2,2],[1,2,3,1]],[[1,2,1,1],[2,0,2,2],[1,1,2,2],[1,3,2,1]],[[1,2,1,1],[2,0,2,2],[1,1,2,2],[2,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,1,2,3],[1,2,2,1]],[[1,2,1,1],[2,0,2,3],[1,1,2,2],[1,2,2,1]],[[1,2,1,2],[2,0,2,2],[1,1,2,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[1,0,3,2],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[1,0,3,2],[1,2,3,1]],[[1,2,1,1],[2,0,2,2],[1,0,3,3],[1,2,2,1]],[[1,2,1,1],[2,0,2,3],[1,0,3,2],[1,2,2,1]],[[1,2,1,2],[2,0,2,2],[1,0,3,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,2,2],[0,3,3,2],[2,2,1,0]],[[1,2,1,1],[2,0,2,2],[0,3,3,3],[1,2,1,0]],[[1,2,1,1],[2,0,2,2],[0,3,4,2],[1,2,1,0]],[[1,2,1,1],[2,0,2,2],[0,4,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,2,3],[0,3,3,2],[1,2,1,0]],[[1,2,1,2],[2,0,2,2],[0,3,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,2,2],[0,3,3,2],[1,2,0,2]],[[1,2,1,1],[2,0,2,2],[0,3,3,2],[1,3,0,1]],[[1,2,1,1],[2,0,2,2],[0,3,3,2],[2,2,0,1]],[[1,2,1,1],[2,0,2,2],[0,3,3,3],[1,2,0,1]],[[1,2,1,1],[2,0,2,2],[0,3,4,2],[1,2,0,1]],[[1,2,1,1],[2,0,2,2],[0,4,3,2],[1,2,0,1]],[[1,2,1,1],[2,0,2,3],[0,3,3,2],[1,2,0,1]],[[1,2,1,2],[2,0,2,2],[0,3,3,2],[1,2,0,1]],[[1,2,1,1],[2,0,2,2],[0,3,3,2],[1,1,3,0]],[[1,2,1,1],[2,0,2,2],[0,3,3,3],[1,1,2,0]],[[1,2,1,1],[2,0,2,2],[0,3,4,2],[1,1,2,0]],[[1,2,1,1],[2,0,2,2],[0,4,3,2],[1,1,2,0]],[[1,2,1,1],[2,0,2,3],[0,3,3,2],[1,1,2,0]],[[1,2,1,2],[2,0,2,2],[0,3,3,2],[1,1,2,0]],[[1,2,1,1],[2,0,2,2],[0,3,3,2],[1,1,1,2]],[[1,2,1,1],[2,0,2,2],[0,3,3,3],[1,1,1,1]],[[1,2,1,1],[2,0,2,2],[0,3,4,2],[1,1,1,1]],[[1,2,1,1],[2,0,2,2],[0,4,3,2],[1,1,1,1]],[[1,2,1,1],[2,0,2,3],[0,3,3,2],[1,1,1,1]],[[1,2,1,2],[2,0,2,2],[0,3,3,2],[1,1,1,1]],[[1,2,1,1],[2,0,2,2],[0,3,3,2],[1,0,2,2]],[[1,2,1,1],[2,0,2,2],[0,3,3,3],[1,0,2,1]],[[1,2,1,1],[2,0,2,2],[0,3,4,2],[1,0,2,1]],[[1,2,1,1],[2,0,2,3],[0,3,3,2],[1,0,2,1]],[[1,2,1,2],[2,0,2,2],[0,3,3,2],[1,0,2,1]],[[1,2,1,1],[2,0,2,2],[0,3,3,1],[1,3,1,1]],[[1,2,1,1],[2,0,2,2],[0,3,3,1],[2,2,1,1]],[[1,2,1,1],[2,0,2,2],[0,3,4,1],[1,2,1,1]],[[1,2,1,1],[2,0,2,2],[0,4,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,2,2],[0,3,3,1],[1,1,2,2]],[[1,2,1,1],[2,0,2,2],[0,3,3,1],[1,1,3,1]],[[1,2,1,1],[2,0,2,2],[0,3,4,1],[1,1,2,1]],[[1,2,1,1],[2,0,2,2],[0,4,3,1],[1,1,2,1]],[[1,2,1,1],[2,0,2,2],[0,3,2,2],[1,2,3,0]],[[1,2,1,1],[2,0,2,2],[0,3,2,2],[1,3,2,0]],[[1,2,1,1],[2,0,2,2],[0,3,2,2],[2,2,2,0]],[[1,2,1,1],[2,0,2,2],[0,4,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,2,2],[0,3,2,2],[1,1,2,2]],[[1,2,1,1],[2,0,2,2],[0,3,2,2],[1,1,3,1]],[[1,2,1,1],[2,0,2,2],[0,3,2,3],[1,1,2,1]],[[1,2,1,1],[2,0,2,3],[0,3,2,2],[1,1,2,1]],[[1,2,1,2],[2,0,2,2],[0,3,2,2],[1,1,2,1]],[[1,2,1,1],[2,0,2,2],[0,3,2,1],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[0,3,2,1],[1,2,3,1]],[[1,2,1,1],[2,0,2,2],[0,3,2,1],[1,3,2,1]],[[1,2,1,1],[2,0,2,2],[0,3,2,1],[2,2,2,1]],[[1,2,1,1],[2,0,2,2],[0,4,2,1],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[0,3,1,2],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[0,3,1,2],[1,2,3,1]],[[1,2,1,1],[2,0,2,2],[0,3,1,2],[1,3,2,1]],[[1,2,1,1],[2,0,2,2],[0,3,1,2],[2,2,2,1]],[[1,2,1,1],[2,0,2,2],[0,3,1,3],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[0,4,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,3],[0,3,1,2],[1,2,2,1]],[[1,2,1,2],[2,0,2,2],[0,3,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[0,2,3,2],[1,2,3,0]],[[1,2,1,1],[2,0,2,2],[0,2,3,2],[1,3,2,0]],[[1,2,1,1],[2,0,2,2],[0,2,3,2],[2,2,2,0]],[[1,2,1,1],[2,0,2,2],[0,2,3,3],[1,2,2,0]],[[1,2,1,1],[2,0,2,2],[0,2,4,2],[1,2,2,0]],[[1,2,1,1],[2,0,2,3],[0,2,3,2],[1,2,2,0]],[[1,2,1,2],[2,0,2,2],[0,2,3,2],[1,2,2,0]],[[1,2,1,1],[2,0,2,2],[0,2,3,2],[1,2,1,2]],[[1,2,1,1],[2,0,2,2],[0,2,3,3],[1,2,1,1]],[[1,2,1,1],[2,0,2,2],[0,2,4,2],[1,2,1,1]],[[1,2,1,1],[2,0,2,3],[0,2,3,2],[1,2,1,1]],[[1,2,1,2],[2,0,2,2],[0,2,3,2],[1,2,1,1]],[[1,2,1,1],[2,0,2,2],[0,2,3,1],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[0,2,3,1],[1,2,3,1]],[[1,2,1,1],[2,0,2,2],[0,2,3,1],[1,3,2,1]],[[1,2,1,1],[2,0,2,2],[0,2,3,1],[2,2,2,1]],[[1,2,1,1],[2,0,2,2],[0,2,4,1],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[0,2,2,2],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[0,2,2,2],[1,2,3,1]],[[1,2,1,1],[2,0,2,2],[0,2,2,2],[1,3,2,1]],[[1,2,1,1],[2,0,2,2],[0,2,2,2],[2,2,2,1]],[[1,2,1,1],[2,0,2,2],[0,2,2,3],[1,2,2,1]],[[1,2,1,1],[2,0,2,3],[0,2,2,2],[1,2,2,1]],[[1,2,1,2],[2,0,2,2],[0,2,2,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,2],[0,1,3,2],[1,2,2,2]],[[1,2,1,1],[2,0,2,2],[0,1,3,2],[1,2,3,1]],[[1,2,1,1],[2,0,2,2],[0,1,3,3],[1,2,2,1]],[[1,2,1,1],[2,0,2,3],[0,1,3,2],[1,2,2,1]],[[1,2,1,2],[2,0,2,2],[0,1,3,2],[1,2,2,1]],[[1,2,1,1],[2,0,2,1],[2,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,0,2,1],[2,3,3,1],[2,2,1,0]],[[1,2,1,1],[2,0,2,1],[3,3,3,1],[1,2,1,0]],[[1,2,1,1],[2,0,2,1],[2,3,3,0],[1,3,1,1]],[[1,2,1,1],[2,0,2,1],[2,3,3,0],[2,2,1,1]],[[1,2,1,1],[2,0,2,1],[3,3,3,0],[1,2,1,1]],[[1,2,1,1],[2,0,2,1],[2,3,2,1],[1,3,2,0]],[[1,2,1,1],[2,0,2,1],[2,3,2,1],[2,2,2,0]],[[1,2,1,1],[2,0,2,1],[3,3,2,1],[1,2,2,0]],[[1,2,1,1],[2,0,2,1],[2,3,2,0],[1,2,3,1]],[[1,2,1,1],[2,0,2,1],[2,3,2,0],[1,3,2,1]],[[1,2,1,1],[2,0,2,1],[2,3,2,0],[2,2,2,1]],[[1,2,1,1],[2,0,2,1],[3,3,2,0],[1,2,2,1]],[[1,0,2,1],[2,1,0,2],[1,2,3,3],[1,2,2,1]],[[1,0,2,1],[2,1,0,2],[1,2,3,2],[2,2,2,1]],[[1,0,2,1],[2,1,0,2],[1,2,3,2],[1,3,2,1]],[[1,0,2,1],[2,1,0,2],[1,2,3,2],[1,2,3,1]],[[1,0,2,1],[2,1,0,2],[1,2,3,2],[1,2,2,2]],[[1,0,2,1],[2,1,0,2],[1,3,3,3],[1,1,2,1]],[[1,0,2,1],[2,1,0,2],[1,3,3,2],[1,1,3,1]],[[1,0,2,1],[2,1,0,2],[1,3,3,2],[1,1,2,2]],[[1,0,2,1],[2,1,0,2],[3,1,3,2],[1,2,2,1]],[[1,0,2,1],[2,1,0,2],[2,1,3,3],[1,2,2,1]],[[1,0,2,1],[2,1,0,2],[2,1,3,2],[2,2,2,1]],[[1,0,2,1],[2,1,0,2],[2,1,3,2],[1,3,2,1]],[[1,0,2,1],[2,1,0,2],[2,1,3,2],[1,2,3,1]],[[1,0,2,1],[2,1,0,2],[2,1,3,2],[1,2,2,2]],[[1,0,2,1],[2,1,0,2],[2,2,3,3],[0,2,2,1]],[[1,0,2,1],[2,1,0,2],[2,2,3,2],[0,3,2,1]],[[1,0,2,1],[2,1,0,2],[2,2,3,2],[0,2,3,1]],[[1,0,2,1],[2,1,0,2],[2,2,3,2],[0,2,2,2]],[[1,0,2,1],[2,1,0,2],[3,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,0,2],[2,3,1,3],[1,2,2,1]],[[1,0,2,1],[2,1,0,2],[2,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,1,0,2],[2,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,1,0,2],[2,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,1,0,2],[2,3,1,2],[1,2,2,2]],[[1,0,2,1],[2,1,0,2],[3,3,2,1],[1,2,2,1]],[[1,0,2,1],[2,1,0,2],[2,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,1,0,2],[2,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,1,0,2],[2,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,1,0,2],[2,3,2,1],[1,2,2,2]],[[1,0,2,1],[2,1,0,2],[3,3,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,0,2],[2,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,1,0,2],[2,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,1,0,2],[2,3,2,2],[1,2,3,0]],[[1,0,2,1],[2,1,0,2],[3,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,0,2],[2,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,1,0,2],[2,3,3,1],[1,3,1,1]],[[1,0,2,1],[2,1,0,2],[2,3,3,3],[0,1,2,1]],[[1,0,2,1],[2,1,0,2],[2,3,3,2],[0,1,3,1]],[[1,0,2,1],[2,1,0,2],[2,3,3,2],[0,1,2,2]],[[1,0,2,1],[2,1,0,2],[2,3,3,3],[1,0,2,1]],[[1,0,2,1],[2,1,0,2],[2,3,3,2],[1,0,3,1]],[[1,0,2,1],[2,1,0,2],[2,3,3,2],[1,0,2,2]],[[1,0,2,1],[2,1,0,2],[3,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,0,2],[2,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,1,0,2],[2,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,1,0,2],[3,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,0,2],[2,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,1,0,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,2,0],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,2,0],[2,3,3,2],[2,2,1,0]],[[1,2,1,1],[2,0,2,0],[3,3,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,2,0],[2,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,1,1,0],[3,3,3,1],[1,2,2,1]],[[1,0,2,1],[2,1,1,0],[2,3,3,1],[2,2,2,1]],[[1,0,2,1],[2,1,1,0],[2,3,3,1],[1,3,2,1]],[[1,0,2,1],[2,1,1,0],[2,3,3,1],[1,2,3,1]],[[1,0,2,1],[2,1,1,0],[2,3,3,1],[1,2,2,2]],[[1,0,2,1],[2,1,1,0],[3,3,3,2],[1,2,2,0]],[[1,0,2,1],[2,1,1,0],[2,3,3,2],[2,2,2,0]],[[1,0,2,1],[2,1,1,0],[2,3,3,2],[1,3,2,0]],[[1,0,2,1],[2,1,1,0],[2,3,3,2],[1,2,3,0]],[[1,2,1,1],[2,0,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,1,1],[2,0,2,0],[3,3,3,2],[1,2,0,1]],[[1,0,2,2],[2,1,1,2],[1,1,3,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,3],[1,1,3,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,1,3,3],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,1,3,2],[1,2,3,1]],[[1,0,2,1],[2,1,1,2],[1,1,3,2],[1,2,2,2]],[[1,0,3,1],[2,1,1,2],[1,2,2,2],[1,2,2,1]],[[1,0,2,2],[2,1,1,2],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,1],[2,1,1,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,1],[2,1,1,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,1],[2,1,1,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,1],[2,1,1,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,1],[2,1,1,2],[1,2,3,1],[1,2,2,2]],[[1,0,3,1],[2,1,1,2],[1,2,3,2],[1,2,1,1]],[[1,0,2,2],[2,1,1,2],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,1,1,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,1,1,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,1],[2,1,1,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,1],[2,1,1,2],[1,2,3,2],[1,2,1,2]],[[1,0,3,1],[2,1,1,2],[1,2,3,2],[1,2,2,0]],[[1,0,2,2],[2,1,1,2],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,1,1,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,1,1,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,1],[2,1,1,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,1],[2,1,1,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,1],[2,1,1,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,1],[2,1,1,2],[1,2,3,2],[1,2,3,0]],[[1,0,3,1],[2,1,1,2],[1,3,1,2],[1,2,2,1]],[[1,0,2,2],[2,1,1,2],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,3],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,4,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,1,3],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,1,1,2],[1,3,1,2],[1,2,2,2]],[[1,0,2,1],[2,1,1,2],[1,4,2,1],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,1,1,2],[1,3,2,1],[1,2,2,2]],[[1,0,3,1],[2,1,1,2],[1,3,2,2],[1,1,2,1]],[[1,0,2,2],[2,1,1,2],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[2,1,1,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,1],[2,1,1,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,1],[2,1,1,2],[1,4,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,1,2],[1,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,1,1,2],[1,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,1,1,2],[1,3,2,2],[1,2,3,0]],[[1,0,2,1],[2,1,1,2],[1,4,3,1],[1,1,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,1],[2,1,1,2],[1,4,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,1,2],[1,3,4,1],[1,2,1,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,1],[1,3,1,1]],[[1,0,2,2],[2,1,1,2],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[2,1,1,3],[1,3,3,2],[1,0,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,4,2],[1,0,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,3],[1,0,2,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,2],[1,0,2,2]],[[1,0,3,1],[2,1,1,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,2],[2,1,1,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,1,1,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,1,1,2],[1,4,3,2],[1,1,1,1]],[[1,0,2,1],[2,1,1,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,2],[1,1,1,2]],[[1,0,3,1],[2,1,1,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,2],[2,1,1,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,1,1,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,1,1,2],[1,4,3,2],[1,1,2,0]],[[1,0,2,1],[2,1,1,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,1],[2,1,1,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,1],[2,1,1,2],[1,3,3,2],[1,1,3,0]],[[1,0,3,1],[2,1,1,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,2],[2,1,1,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,1,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,1,2],[1,4,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,1,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,1,1,2],[1,3,3,2],[1,2,0,2]],[[1,0,3,1],[2,1,1,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,2],[2,1,1,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,1,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,1,2],[1,4,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,1,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,1],[2,1,1,2],[1,3,3,3],[1,2,1,0]],[[1,0,2,1],[2,1,1,2],[1,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,1,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,2,0],[2,3,3,1],[1,3,1,1]],[[1,2,1,1],[2,0,2,0],[2,3,3,1],[2,2,1,1]],[[1,2,1,1],[2,0,2,0],[3,3,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,2,0],[2,3,3,0],[1,2,3,1]],[[1,2,1,1],[2,0,2,0],[2,3,3,0],[1,3,2,1]],[[1,2,1,1],[2,0,2,0],[2,3,3,0],[2,2,2,1]],[[1,2,1,1],[2,0,2,0],[3,3,3,0],[1,2,2,1]],[[1,0,2,2],[2,1,1,2],[2,0,3,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,3],[2,0,3,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,0,3,3],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,0,3,2],[1,2,3,1]],[[1,0,2,1],[2,1,1,2],[2,0,3,2],[1,2,2,2]],[[2,0,2,1],[2,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,3,1],[2,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,2],[2,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[3,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[3,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,1],[2,1,1,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,1],[2,1,1,2],[2,1,2,2],[1,2,2,2]],[[2,0,2,1],[2,1,1,2],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[3,1,1,2],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[3,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,1],[2,1,1,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,1],[2,1,1,2],[2,1,3,1],[1,2,2,2]],[[1,0,2,2],[2,1,1,2],[2,1,3,2],[0,2,2,1]],[[1,0,2,1],[2,1,1,3],[2,1,3,2],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,1,3,3],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,1,3,2],[0,2,3,1]],[[1,0,2,1],[2,1,1,2],[2,1,3,2],[0,2,2,2]],[[1,0,3,1],[2,1,1,2],[2,1,3,2],[1,2,1,1]],[[1,0,2,2],[2,1,1,2],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[2,1,1,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[2,1,1,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,1],[2,1,1,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,1],[2,1,1,2],[2,1,3,2],[1,2,1,2]],[[2,0,2,1],[2,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,3,1],[2,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,2],[2,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[3,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,1,1,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,1,1,2],[3,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,1,1,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,1],[2,1,1,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,1],[2,1,1,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,1],[2,1,1,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,1],[2,1,1,2],[2,1,3,2],[1,2,3,0]],[[2,0,2,1],[2,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,3,1],[2,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,2],[2,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[3,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,3],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[3,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,1,3],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,1,2],[2,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,1,2],[1,3,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,1,2],[1,2,3,1]],[[1,0,2,1],[2,1,1,2],[2,2,1,2],[1,2,2,2]],[[2,0,2,1],[2,1,1,2],[2,2,2,1],[1,2,2,1]],[[1,0,2,1],[3,1,1,2],[2,2,2,1],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[3,2,2,1],[1,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,2,1],[2,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,2,1],[1,3,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,2,1],[1,2,3,1]],[[1,0,2,1],[2,1,1,2],[2,2,2,1],[1,2,2,2]],[[1,0,3,1],[2,1,1,2],[2,2,2,2],[0,2,2,1]],[[1,0,2,2],[2,1,1,2],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[2,1,1,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,1],[2,1,1,2],[2,2,2,2],[0,2,2,2]],[[2,0,2,1],[2,1,1,2],[2,2,2,2],[1,2,2,0]],[[1,0,2,1],[3,1,1,2],[2,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,1,2],[3,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,1,2],[2,2,2,2],[2,2,2,0]],[[1,0,2,1],[2,1,1,2],[2,2,2,2],[1,3,2,0]],[[1,0,2,1],[2,1,1,2],[2,2,2,2],[1,2,3,0]],[[1,0,2,1],[2,1,1,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,1],[2,1,1,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,1],[2,1,1,2],[2,2,3,1],[0,2,2,2]],[[2,0,2,1],[2,1,1,2],[2,2,3,1],[1,2,1,1]],[[1,0,2,1],[3,1,1,2],[2,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,1,2],[3,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,1,2],[2,2,3,1],[2,2,1,1]],[[1,0,2,1],[2,1,1,2],[2,2,3,1],[1,3,1,1]],[[1,0,3,1],[2,1,1,2],[2,2,3,2],[0,2,1,1]],[[1,0,2,2],[2,1,1,2],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,1,1,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,1,1,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,1],[2,1,1,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,1],[2,1,1,2],[2,2,3,2],[0,2,1,2]],[[1,0,3,1],[2,1,1,2],[2,2,3,2],[0,2,2,0]],[[1,0,2,2],[2,1,1,2],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,1,1,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,1,1,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,1],[2,1,1,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,1],[2,1,1,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,1],[2,1,1,2],[2,2,3,2],[0,2,3,0]],[[2,0,2,1],[2,1,1,2],[2,2,3,2],[1,2,0,1]],[[1,0,2,1],[3,1,1,2],[2,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,1,2],[3,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,1,2],[2,2,3,2],[2,2,0,1]],[[1,0,2,1],[2,1,1,2],[2,2,3,2],[1,3,0,1]],[[2,0,2,1],[2,1,1,2],[2,2,3,2],[1,2,1,0]],[[1,0,2,1],[3,1,1,2],[2,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,1,2],[3,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,1,2],[2,2,3,2],[2,2,1,0]],[[1,0,2,1],[2,1,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,2,0],[2,3,2,2],[1,2,3,0]],[[1,2,1,1],[2,0,2,0],[2,3,2,2],[1,3,2,0]],[[1,2,1,1],[2,0,2,0],[2,3,2,2],[2,2,2,0]],[[1,2,1,1],[2,0,2,0],[3,3,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,2,0],[2,3,2,1],[1,2,2,2]],[[1,2,1,1],[2,0,2,0],[2,3,2,1],[1,2,3,1]],[[1,2,1,1],[2,0,2,0],[2,3,2,1],[1,3,2,1]],[[1,2,1,1],[2,0,2,0],[2,3,2,1],[2,2,2,1]],[[2,0,2,1],[2,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,3,1],[2,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,2],[2,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[3,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,1,1,3],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[3,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,4,1,2],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,1,3],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,1,2],[0,3,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,1,2],[0,2,3,1]],[[1,0,2,1],[2,1,1,2],[2,3,1,2],[0,2,2,2]],[[2,0,2,1],[2,1,1,2],[2,3,1,2],[1,1,2,1]],[[1,0,2,1],[3,1,1,2],[2,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,1,1,2],[3,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,1,1,2],[2,4,1,2],[1,1,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,1,2],[2,1,2,1]],[[2,0,2,1],[2,1,1,2],[2,3,2,1],[0,2,2,1]],[[1,0,2,1],[3,1,1,2],[2,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[3,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,4,2,1],[0,2,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,2,1],[0,3,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,2,1],[0,2,3,1]],[[1,0,2,1],[2,1,1,2],[2,3,2,1],[0,2,2,2]],[[2,0,2,1],[2,1,1,2],[2,3,2,1],[1,1,2,1]],[[1,0,2,1],[3,1,1,2],[2,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,1,1,2],[3,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,1,1,2],[2,4,2,1],[1,1,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,2,1],[2,1,2,1]],[[1,0,3,1],[2,1,1,2],[2,3,2,2],[0,1,2,1]],[[1,0,2,2],[2,1,1,2],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[2,1,1,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,1],[2,1,1,2],[2,3,2,2],[0,1,2,2]],[[2,0,2,1],[2,1,1,2],[2,3,2,2],[0,2,2,0]],[[1,0,2,1],[3,1,1,2],[2,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,1,1,2],[3,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,1,1,2],[2,4,2,2],[0,2,2,0]],[[1,0,2,1],[2,1,1,2],[2,3,2,2],[0,3,2,0]],[[1,0,2,1],[2,1,1,2],[2,3,2,2],[0,2,3,0]],[[1,0,3,1],[2,1,1,2],[2,3,2,2],[1,0,2,1]],[[1,0,2,2],[2,1,1,2],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[2,1,1,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,1],[2,1,1,2],[2,3,2,2],[1,0,2,2]],[[2,0,2,1],[2,1,1,2],[2,3,2,2],[1,1,2,0]],[[1,0,2,1],[3,1,1,2],[2,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,1,1,2],[3,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,1,1,2],[2,4,2,2],[1,1,2,0]],[[1,0,2,1],[2,1,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,0,2,0],[3,3,2,1],[1,2,2,1]],[[1,2,1,1],[2,0,2,0],[2,3,1,2],[1,2,2,2]],[[1,2,1,1],[2,0,2,0],[2,3,1,2],[1,2,3,1]],[[1,2,1,1],[2,0,2,0],[2,3,1,2],[1,3,2,1]],[[1,2,1,1],[2,0,2,0],[2,3,1,2],[2,2,2,1]],[[1,2,1,1],[2,0,2,0],[3,3,1,2],[1,2,2,1]],[[2,0,2,1],[2,1,1,2],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[3,1,1,2],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,1,1,2],[3,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,1,1,2],[2,4,3,1],[0,1,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,1],[0,1,2,2]],[[2,0,2,1],[2,1,1,2],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[3,1,1,2],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,1,1,2],[3,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,1,1,2],[2,4,3,1],[0,2,1,1]],[[1,0,2,1],[2,1,1,2],[2,3,4,1],[0,2,1,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,1],[0,3,1,1]],[[2,0,2,1],[2,1,1,2],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[3,1,1,2],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,1,1,2],[3,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,1,1,2],[2,4,3,1],[1,0,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,1],[2,0,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,1],[1,0,2,2]],[[2,0,2,1],[2,1,1,2],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[3,1,1,2],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,1,1,2],[3,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,1,1,2],[2,4,3,1],[1,1,1,1]],[[1,0,2,1],[2,1,1,2],[2,3,4,1],[1,1,1,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,1],[2,1,1,1]],[[1,0,3,1],[2,1,1,2],[2,3,3,2],[0,0,2,1]],[[1,0,2,2],[2,1,1,2],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,1,1,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[0,0,2,2]],[[2,0,2,1],[2,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,3,1],[2,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,2],[2,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[3,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,1,1,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,1,1,2],[3,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,1,1,2],[2,4,3,2],[0,1,1,1]],[[1,0,2,1],[2,1,1,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[0,1,1,2]],[[2,0,2,1],[2,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,3,1],[2,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,2],[2,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[3,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,1,1,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,1,1,2],[3,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,1,1,2],[2,4,3,2],[0,1,2,0]],[[1,0,2,1],[2,1,1,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[2,1,1,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[0,1,3,0]],[[2,0,2,1],[2,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,3,1],[2,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,2],[2,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[3,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,1,1,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,1,1,2],[3,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,1,1,2],[2,4,3,2],[0,2,0,1]],[[1,0,2,1],[2,1,1,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[0,3,0,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[0,2,0,2]],[[2,0,2,1],[2,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,3,1],[2,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,2],[2,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[3,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,1,1,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,1,1,2],[3,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,1,1,2],[2,4,3,2],[0,2,1,0]],[[1,0,2,1],[2,1,1,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,1],[2,1,1,2],[2,3,3,3],[0,2,1,0]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,0,1,2],[2,4,3,2],[1,2,0,0]],[[1,2,1,1],[2,0,1,2],[3,3,3,2],[1,2,0,0]],[[1,2,1,1],[3,0,1,2],[2,3,3,2],[1,2,0,0]],[[2,0,2,1],[2,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,3,1],[2,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,2],[2,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[3,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,1,1,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,1,1,2],[3,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,1,1,2],[2,4,3,2],[1,0,1,1]],[[1,0,2,1],[2,1,1,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[2,0,1,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[1,0,1,2]],[[2,0,2,1],[2,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,3,1],[2,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,2],[2,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[3,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,1,1,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,1,1,2],[3,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,1,1,2],[2,4,3,2],[1,0,2,0]],[[1,0,2,1],[2,1,1,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[2,1,1,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[2,0,2,0]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[1,0,3,0]],[[2,0,2,1],[2,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,3,1],[2,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,2],[2,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[3,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,1,1,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,1,1,2],[3,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,1,1,2],[2,4,3,2],[1,1,0,1]],[[1,0,2,1],[2,1,1,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[2,1,0,1]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[1,1,0,2]],[[2,0,2,1],[2,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,3,1],[2,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,2],[2,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[3,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,1,1,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,1,1,2],[3,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,1,1,2],[2,4,3,2],[1,1,1,0]],[[1,0,2,1],[2,1,1,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,1],[2,1,1,2],[2,3,3,3],[1,1,1,0]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[2,1,1,0]],[[1,3,1,1],[2,0,1,2],[2,3,3,2],[1,2,0,0]],[[2,2,1,1],[2,0,1,2],[2,3,3,2],[1,2,0,0]],[[2,0,2,1],[2,1,1,2],[2,3,3,2],[1,2,0,0]],[[1,0,2,1],[3,1,1,2],[2,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,1,1,2],[3,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,1,1,2],[2,4,3,2],[1,2,0,0]],[[1,0,2,1],[2,1,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[2,0,1,2],[2,3,4,2],[1,1,1,0]],[[1,2,1,1],[2,0,1,2],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,1,2],[3,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,1,3],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[3,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,2],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,3,1,1],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[2,2,1,1],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[2,1,0,1]],[[1,2,1,1],[2,0,1,2],[2,3,3,3],[1,1,0,1]],[[1,2,1,1],[2,0,1,2],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[2,0,1,2],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,1,2],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[2,0,1,3],[2,3,3,2],[1,1,0,1]],[[1,2,1,1],[3,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,1,2],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,3,1,1],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[2,2,1,1],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,1,2,0],[3,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,0],[2,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,1,2,0],[2,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,1,2,0],[2,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,1,2,0],[2,3,1,2],[1,2,2,2]],[[1,0,2,1],[2,1,2,0],[3,3,2,1],[1,2,2,1]],[[1,0,2,1],[2,1,2,0],[2,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,1,2,0],[2,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,1,2,0],[2,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,1,2,0],[2,3,2,1],[1,2,2,2]],[[1,0,2,1],[2,1,2,0],[3,3,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,2,0],[2,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,1,2,0],[2,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,1,2,0],[2,3,2,2],[1,2,3,0]],[[1,0,2,1],[2,1,2,0],[3,3,3,0],[1,2,2,1]],[[1,0,2,1],[2,1,2,0],[2,3,3,0],[2,2,2,1]],[[1,0,2,1],[2,1,2,0],[2,3,3,0],[1,3,2,1]],[[1,0,2,1],[2,1,2,0],[2,3,3,0],[1,2,3,1]],[[1,0,2,1],[2,1,2,0],[3,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,2,0],[2,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,1,2,0],[2,3,3,1],[1,3,1,1]],[[1,0,2,1],[2,1,2,0],[3,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,2,0],[2,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,1,2,0],[2,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,1,2,0],[3,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,2,0],[2,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,1,2,0],[2,3,3,2],[1,3,1,0]],[[1,0,2,1],[2,1,2,1],[3,3,2,0],[1,2,2,1]],[[1,0,2,1],[2,1,2,1],[2,3,2,0],[2,2,2,1]],[[1,0,2,1],[2,1,2,1],[2,3,2,0],[1,3,2,1]],[[1,0,2,1],[2,1,2,1],[2,3,2,0],[1,2,3,1]],[[1,0,2,1],[2,1,2,1],[3,3,2,1],[1,2,2,0]],[[1,0,2,1],[2,1,2,1],[2,3,2,1],[2,2,2,0]],[[1,0,2,1],[2,1,2,1],[2,3,2,1],[1,3,2,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[2,0,2,0]],[[1,0,2,1],[2,1,2,1],[3,3,3,0],[1,2,1,1]],[[1,0,2,1],[2,1,2,1],[2,3,3,0],[2,2,1,1]],[[1,0,2,1],[2,1,2,1],[2,3,3,0],[1,3,1,1]],[[1,0,2,1],[2,1,2,1],[3,3,3,1],[1,2,1,0]],[[1,0,2,1],[2,1,2,1],[2,3,3,1],[2,2,1,0]],[[1,0,2,1],[2,1,2,1],[2,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[2,0,1,2],[2,3,4,2],[1,0,2,0]],[[1,2,1,1],[2,0,1,2],[2,4,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,1,2],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,1,3],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[3,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,2],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,3,1,1],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[2,2,1,1],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[1,0,1,2]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[2,0,1,2],[2,3,3,3],[1,0,1,1]],[[1,2,1,1],[2,0,1,2],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[2,0,1,2],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[2,0,1,2],[3,3,3,2],[1,0,1,1]],[[1,2,1,1],[2,0,1,3],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[3,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,3,1],[2,1,2,2],[1,2,1,2],[1,2,2,1]],[[1,0,2,2],[2,1,2,2],[1,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,3],[1,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,2],[1,2,1,3],[1,2,2,1]],[[1,0,2,1],[2,1,2,2],[1,2,1,2],[2,2,2,1]],[[1,0,2,1],[2,1,2,2],[1,2,1,2],[1,3,2,1]],[[1,0,2,1],[2,1,2,2],[1,2,1,2],[1,2,3,1]],[[1,0,2,1],[2,1,2,2],[1,2,1,2],[1,2,2,2]],[[1,0,3,1],[2,1,2,2],[1,2,2,2],[1,2,1,1]],[[1,0,2,2],[2,1,2,2],[1,2,2,2],[1,2,1,1]],[[1,0,2,1],[2,1,2,3],[1,2,2,2],[1,2,1,1]],[[1,0,2,1],[2,1,2,2],[1,2,2,3],[1,2,1,1]],[[1,0,2,1],[2,1,2,2],[1,2,2,2],[1,2,1,2]],[[1,0,3,1],[2,1,2,2],[1,2,2,2],[1,2,2,0]],[[1,0,2,2],[2,1,2,2],[1,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,2,3],[1,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,2,2],[1,2,2,3],[1,2,2,0]],[[1,0,3,1],[2,1,2,2],[1,2,3,0],[1,2,2,1]],[[1,0,2,2],[2,1,2,2],[1,2,3,0],[1,2,2,1]],[[1,0,2,1],[2,1,2,3],[1,2,3,0],[1,2,2,1]],[[1,0,3,1],[2,1,2,2],[1,2,3,1],[1,2,1,1]],[[1,0,2,2],[2,1,2,2],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,2,3],[1,2,3,1],[1,2,1,1]],[[1,0,3,1],[2,1,2,2],[1,2,3,1],[1,2,2,0]],[[1,0,2,2],[2,1,2,2],[1,2,3,1],[1,2,2,0]],[[1,0,2,1],[2,1,2,3],[1,2,3,1],[1,2,2,0]],[[1,2,1,2],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,3,1,1],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[2,2,1,1],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,0,3,1],[2,1,2,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,2],[2,1,2,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,3],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,2],[1,4,0,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,2],[1,3,0,3],[1,2,2,1]],[[1,0,2,1],[2,1,2,2],[1,3,0,2],[2,2,2,1]],[[1,0,2,1],[2,1,2,2],[1,3,0,2],[1,3,2,1]],[[1,0,2,1],[2,1,2,2],[1,3,0,2],[1,2,3,1]],[[1,0,2,1],[2,1,2,2],[1,3,0,2],[1,2,2,2]],[[1,0,3,1],[2,1,2,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,2],[2,1,2,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,1,2,3],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,1,2,2],[1,3,1,3],[1,1,2,1]],[[1,0,2,1],[2,1,2,2],[1,3,1,2],[1,1,3,1]],[[1,0,2,1],[2,1,2,2],[1,3,1,2],[1,1,2,2]],[[1,0,3,1],[2,1,2,2],[1,3,2,2],[1,1,1,1]],[[1,0,2,2],[2,1,2,2],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[2,1,2,3],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[2,1,2,2],[1,3,2,3],[1,1,1,1]],[[1,0,2,1],[2,1,2,2],[1,3,2,2],[1,1,1,2]],[[1,0,3,1],[2,1,2,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,2],[2,1,2,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,1,2,3],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,1,2,2],[1,3,2,3],[1,1,2,0]],[[1,0,3,1],[2,1,2,2],[1,3,2,2],[1,2,0,1]],[[1,0,2,2],[2,1,2,2],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[2,1,2,3],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[2,1,2,2],[1,3,2,3],[1,2,0,1]],[[1,0,2,1],[2,1,2,2],[1,3,2,2],[1,2,0,2]],[[1,0,3,1],[2,1,2,2],[1,3,2,2],[1,2,1,0]],[[1,0,2,2],[2,1,2,2],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[2,1,2,3],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[2,1,2,2],[1,3,2,3],[1,2,1,0]],[[1,0,3,1],[2,1,2,2],[1,3,3,0],[1,1,2,1]],[[1,0,2,2],[2,1,2,2],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,1,2,3],[1,3,3,0],[1,1,2,1]],[[1,0,3,1],[2,1,2,2],[1,3,3,0],[1,2,1,1]],[[1,0,2,2],[2,1,2,2],[1,3,3,0],[1,2,1,1]],[[1,0,2,1],[2,1,2,3],[1,3,3,0],[1,2,1,1]],[[1,0,3,1],[2,1,2,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,2],[2,1,2,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,1,2,3],[1,3,3,1],[1,1,1,1]],[[1,0,3,1],[2,1,2,2],[1,3,3,1],[1,1,2,0]],[[1,0,2,2],[2,1,2,2],[1,3,3,1],[1,1,2,0]],[[1,0,2,1],[2,1,2,3],[1,3,3,1],[1,1,2,0]],[[1,0,3,1],[2,1,2,2],[1,3,3,1],[1,2,0,1]],[[1,0,2,2],[2,1,2,2],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,1,2,3],[1,3,3,1],[1,2,0,1]],[[1,0,3,1],[2,1,2,2],[1,3,3,1],[1,2,1,0]],[[1,0,2,2],[2,1,2,2],[1,3,3,1],[1,2,1,0]],[[1,0,2,1],[2,1,2,3],[1,3,3,1],[1,2,1,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[2,0,1,2],[2,3,4,2],[0,2,1,0]],[[1,2,1,1],[2,0,1,2],[2,4,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,1,2],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,1,3],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[3,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,1,2],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,3,1,1],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[2,2,1,1],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[2,0,1,2],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[2,0,1,2],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[2,0,1,2],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[2,0,1,2],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[2,0,1,3],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[3,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,1,2],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,3,1,1],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[2,2,1,1],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[2,0,1,2],[2,3,4,2],[0,1,2,0]],[[1,2,1,1],[2,0,1,2],[2,4,3,2],[0,1,2,0]],[[1,2,1,1],[2,0,1,2],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[2,0,1,3],[2,3,3,2],[0,1,2,0]],[[2,0,2,1],[2,1,2,2],[2,1,1,2],[1,2,2,1]],[[1,0,3,1],[2,1,2,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,2],[2,1,2,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[3,1,2,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,3],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,2],[3,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,2],[2,1,1,3],[1,2,2,1]],[[1,0,2,1],[2,1,2,2],[2,1,1,2],[2,2,2,1]],[[1,0,2,1],[2,1,2,2],[2,1,1,2],[1,3,2,1]],[[1,0,2,1],[2,1,2,2],[2,1,1,2],[1,2,3,1]],[[1,0,2,1],[2,1,2,2],[2,1,1,2],[1,2,2,2]],[[1,0,3,1],[2,1,2,2],[2,1,2,2],[1,2,1,1]],[[1,0,2,2],[2,1,2,2],[2,1,2,2],[1,2,1,1]],[[1,0,2,1],[2,1,2,3],[2,1,2,2],[1,2,1,1]],[[1,0,2,1],[2,1,2,2],[2,1,2,3],[1,2,1,1]],[[1,0,2,1],[2,1,2,2],[2,1,2,2],[1,2,1,2]],[[1,0,3,1],[2,1,2,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,2],[2,1,2,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,2,3],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,2,2],[2,1,2,3],[1,2,2,0]],[[1,0,3,1],[2,1,2,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,2],[2,1,2,2],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,1,2,3],[2,1,3,0],[1,2,2,1]],[[1,0,3,1],[2,1,2,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,2],[2,1,2,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,2,3],[2,1,3,1],[1,2,1,1]],[[1,0,3,1],[2,1,2,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,2],[2,1,2,2],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[2,1,2,3],[2,1,3,1],[1,2,2,0]],[[1,2,1,1],[3,0,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,2],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[1,3,1,1],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[2,2,1,1],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[0,1,1,2]],[[1,2,1,1],[2,0,1,2],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[2,0,1,2],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[2,0,1,2],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,1,2],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,1,3],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[3,0,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,1,2],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[2,0,2,1],[2,1,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,3,1],[2,1,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,2],[2,1,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[3,1,2,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,3],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,2],[3,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,1,2,2],[2,2,0,3],[1,2,2,1]],[[1,0,2,1],[2,1,2,2],[2,2,0,2],[2,2,2,1]],[[1,0,2,1],[2,1,2,2],[2,2,0,2],[1,3,2,1]],[[1,0,2,1],[2,1,2,2],[2,2,0,2],[1,2,3,1]],[[1,0,2,1],[2,1,2,2],[2,2,0,2],[1,2,2,2]],[[1,0,3,1],[2,1,2,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,2],[2,1,2,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[2,1,2,3],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[2,1,2,2],[2,2,1,3],[0,2,2,1]],[[1,0,2,1],[2,1,2,2],[2,2,1,2],[0,3,2,1]],[[1,0,2,1],[2,1,2,2],[2,2,1,2],[0,2,3,1]],[[1,0,2,1],[2,1,2,2],[2,2,1,2],[0,2,2,2]],[[1,0,3,1],[2,1,2,2],[2,2,2,2],[0,2,1,1]],[[1,0,2,2],[2,1,2,2],[2,2,2,2],[0,2,1,1]],[[1,0,2,1],[2,1,2,3],[2,2,2,2],[0,2,1,1]],[[1,0,2,1],[2,1,2,2],[2,2,2,3],[0,2,1,1]],[[1,0,2,1],[2,1,2,2],[2,2,2,2],[0,2,1,2]],[[1,0,3,1],[2,1,2,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,2],[2,1,2,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[2,1,2,3],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[2,1,2,2],[2,2,2,3],[0,2,2,0]],[[1,3,1,1],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[2,2,1,1],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[2,0,1,2],[2,3,3,2],[0,0,2,2]],[[1,2,1,1],[2,0,1,2],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[2,0,1,2],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[2,0,1,3],[2,3,3,2],[0,0,2,1]],[[1,2,1,2],[2,0,1,2],[2,3,3,2],[0,0,2,1]],[[1,0,3,1],[2,1,2,2],[2,2,3,0],[0,2,2,1]],[[1,0,2,2],[2,1,2,2],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[2,1,2,3],[2,2,3,0],[0,2,2,1]],[[1,0,3,1],[2,1,2,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,2],[2,1,2,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,1,2,3],[2,2,3,1],[0,2,1,1]],[[1,0,3,1],[2,1,2,2],[2,2,3,1],[0,2,2,0]],[[1,0,2,2],[2,1,2,2],[2,2,3,1],[0,2,2,0]],[[1,0,2,1],[2,1,2,3],[2,2,3,1],[0,2,2,0]],[[1,2,1,1],[2,0,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[2,0,1,2],[2,3,4,1],[1,1,1,1]],[[1,2,1,1],[2,0,1,2],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[2,0,1,2],[3,3,3,1],[1,1,1,1]],[[1,2,1,1],[3,0,1,2],[2,3,3,1],[1,1,1,1]],[[1,3,1,1],[2,0,1,2],[2,3,3,1],[1,1,1,1]],[[2,2,1,1],[2,0,1,2],[2,3,3,1],[1,1,1,1]],[[1,2,1,1],[2,0,1,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[2,0,1,2],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[2,0,1,2],[2,3,3,1],[2,0,2,1]],[[1,2,1,1],[2,0,1,2],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[2,0,1,2],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[2,0,1,2],[3,3,3,1],[1,0,2,1]],[[1,2,1,1],[3,0,1,2],[2,3,3,1],[1,0,2,1]],[[1,3,1,1],[2,0,1,2],[2,3,3,1],[1,0,2,1]],[[2,2,1,1],[2,0,1,2],[2,3,3,1],[1,0,2,1]],[[1,2,1,1],[2,0,1,2],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[2,0,1,2],[2,3,4,1],[0,2,1,1]],[[1,2,1,1],[2,0,1,2],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,1,2],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[3,0,1,2],[2,3,3,1],[0,2,1,1]],[[1,3,1,1],[2,0,1,2],[2,3,3,1],[0,2,1,1]],[[2,2,1,1],[2,0,1,2],[2,3,3,1],[0,2,1,1]],[[1,2,1,1],[2,0,1,2],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[2,0,1,2],[2,3,3,1],[0,1,3,1]],[[1,2,1,1],[2,0,1,2],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[2,0,1,2],[2,4,3,1],[0,1,2,1]],[[1,2,1,1],[2,0,1,2],[3,3,3,1],[0,1,2,1]],[[1,2,1,1],[3,0,1,2],[2,3,3,1],[0,1,2,1]],[[1,3,1,1],[2,0,1,2],[2,3,3,1],[0,1,2,1]],[[2,2,1,1],[2,0,1,2],[2,3,3,1],[0,1,2,1]],[[2,0,2,1],[2,1,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,3,1],[2,1,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,2],[2,1,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[3,1,2,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,1,2,3],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,1,2,2],[3,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,1,2,2],[2,4,0,2],[0,2,2,1]],[[1,0,2,1],[2,1,2,2],[2,3,0,3],[0,2,2,1]],[[1,0,2,1],[2,1,2,2],[2,3,0,2],[0,3,2,1]],[[1,0,2,1],[2,1,2,2],[2,3,0,2],[0,2,3,1]],[[1,0,2,1],[2,1,2,2],[2,3,0,2],[0,2,2,2]],[[2,0,2,1],[2,1,2,2],[2,3,0,2],[1,1,2,1]],[[1,0,2,1],[3,1,2,2],[2,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,1,2,2],[3,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,1,2,2],[2,4,0,2],[1,1,2,1]],[[1,0,2,1],[2,1,2,2],[2,3,0,2],[2,1,2,1]],[[1,0,3,1],[2,1,2,2],[2,3,1,2],[0,1,2,1]],[[1,0,2,2],[2,1,2,2],[2,3,1,2],[0,1,2,1]],[[1,0,2,1],[2,1,2,3],[2,3,1,2],[0,1,2,1]],[[1,0,2,1],[2,1,2,2],[2,3,1,3],[0,1,2,1]],[[1,0,2,1],[2,1,2,2],[2,3,1,2],[0,1,3,1]],[[1,0,2,1],[2,1,2,2],[2,3,1,2],[0,1,2,2]],[[1,0,3,1],[2,1,2,2],[2,3,1,2],[1,0,2,1]],[[1,0,2,2],[2,1,2,2],[2,3,1,2],[1,0,2,1]],[[1,0,2,1],[2,1,2,3],[2,3,1,2],[1,0,2,1]],[[1,0,2,1],[2,1,2,2],[2,3,1,3],[1,0,2,1]],[[1,0,2,1],[2,1,2,2],[2,3,1,2],[1,0,3,1]],[[1,0,2,1],[2,1,2,2],[2,3,1,2],[1,0,2,2]],[[1,2,1,1],[2,0,1,2],[2,3,2,2],[2,1,2,0]],[[1,0,3,1],[2,1,2,2],[2,3,2,2],[0,0,2,1]],[[1,0,2,2],[2,1,2,2],[2,3,2,2],[0,0,2,1]],[[1,0,2,1],[2,1,2,3],[2,3,2,2],[0,0,2,1]],[[1,0,2,1],[2,1,2,2],[2,3,2,3],[0,0,2,1]],[[1,0,2,1],[2,1,2,2],[2,3,2,2],[0,0,2,2]],[[1,0,3,1],[2,1,2,2],[2,3,2,2],[0,1,1,1]],[[1,0,2,2],[2,1,2,2],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,1,2,3],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,1,2,2],[2,3,2,3],[0,1,1,1]],[[1,0,2,1],[2,1,2,2],[2,3,2,2],[0,1,1,2]],[[1,0,3,1],[2,1,2,2],[2,3,2,2],[0,1,2,0]],[[1,0,2,2],[2,1,2,2],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,1,2,3],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,1,2,2],[2,3,2,3],[0,1,2,0]],[[1,0,3,1],[2,1,2,2],[2,3,2,2],[0,2,0,1]],[[1,0,2,2],[2,1,2,2],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,1,2,3],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,1,2,2],[2,3,2,3],[0,2,0,1]],[[1,0,2,1],[2,1,2,2],[2,3,2,2],[0,2,0,2]],[[1,0,3,1],[2,1,2,2],[2,3,2,2],[0,2,1,0]],[[1,0,2,2],[2,1,2,2],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,1,2,3],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,1,2,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,1],[2,0,1,2],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[2,0,1,2],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[3,0,1,2],[2,3,2,2],[1,1,2,0]],[[1,3,1,1],[2,0,1,2],[2,3,2,2],[1,1,2,0]],[[2,2,1,1],[2,0,1,2],[2,3,2,2],[1,1,2,0]],[[1,2,1,1],[2,0,1,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[2,0,1,2],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[2,0,1,2],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[2,0,1,3],[2,3,2,2],[1,0,2,1]],[[1,2,1,2],[2,0,1,2],[2,3,2,2],[1,0,2,1]],[[1,0,3,1],[2,1,2,2],[2,3,2,2],[1,0,1,1]],[[1,0,2,2],[2,1,2,2],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[2,1,2,3],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[2,1,2,2],[2,3,2,3],[1,0,1,1]],[[1,0,2,1],[2,1,2,2],[2,3,2,2],[1,0,1,2]],[[1,0,3,1],[2,1,2,2],[2,3,2,2],[1,0,2,0]],[[1,0,2,2],[2,1,2,2],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[2,1,2,3],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[2,1,2,2],[2,3,2,3],[1,0,2,0]],[[1,0,3,1],[2,1,2,2],[2,3,2,2],[1,1,0,1]],[[1,0,2,2],[2,1,2,2],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[2,1,2,3],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[2,1,2,2],[2,3,2,3],[1,1,0,1]],[[1,0,2,1],[2,1,2,2],[2,3,2,2],[1,1,0,2]],[[1,0,3,1],[2,1,2,2],[2,3,2,2],[1,1,1,0]],[[1,0,2,2],[2,1,2,2],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[2,1,2,3],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[2,1,2,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,1],[2,0,1,2],[2,3,2,2],[0,2,3,0]],[[1,2,1,1],[2,0,1,2],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[2,0,1,2],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,1,2],[3,3,2,2],[0,2,2,0]],[[1,2,1,1],[3,0,1,2],[2,3,2,2],[0,2,2,0]],[[1,3,1,1],[2,0,1,2],[2,3,2,2],[0,2,2,0]],[[2,2,1,1],[2,0,1,2],[2,3,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,1,2],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[2,0,1,2],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[2,0,1,2],[2,3,2,3],[0,1,2,1]],[[1,2,1,1],[2,0,1,3],[2,3,2,2],[0,1,2,1]],[[1,2,1,2],[2,0,1,2],[2,3,2,2],[0,1,2,1]],[[1,2,1,1],[2,0,1,2],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[2,0,1,2],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[2,0,1,2],[3,3,2,1],[1,1,2,1]],[[1,2,1,1],[3,0,1,2],[2,3,2,1],[1,1,2,1]],[[1,3,1,1],[2,0,1,2],[2,3,2,1],[1,1,2,1]],[[2,2,1,1],[2,0,1,2],[2,3,2,1],[1,1,2,1]],[[1,2,1,1],[2,0,1,2],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[2,0,1,2],[2,3,2,1],[0,2,3,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,2],[2,1,2,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,1,2,3],[2,3,3,0],[0,1,2,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,2],[2,1,2,2],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,1,2,3],[2,3,3,0],[0,2,1,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,2],[2,1,2,2],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,1,2,3],[2,3,3,0],[1,0,2,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,2],[2,1,2,2],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,1,2,3],[2,3,3,0],[1,1,1,1]],[[1,2,1,1],[2,0,1,2],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[2,0,1,2],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[2,0,1,2],[3,3,2,1],[0,2,2,1]],[[1,2,1,1],[3,0,1,2],[2,3,2,1],[0,2,2,1]],[[1,3,1,1],[2,0,1,2],[2,3,2,1],[0,2,2,1]],[[2,2,1,1],[2,0,1,2],[2,3,2,1],[0,2,2,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,1],[0,0,2,1]],[[1,0,2,2],[2,1,2,2],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,1,2,3],[2,3,3,1],[0,0,2,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,2],[2,1,2,2],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,1,2,3],[2,3,3,1],[0,1,1,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,2],[2,1,2,2],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,1,2,3],[2,3,3,1],[0,1,2,0]],[[1,0,3,1],[2,1,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,2],[2,1,2,2],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,1,2,3],[2,3,3,1],[0,2,0,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,2],[2,1,2,2],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,1,2,3],[2,3,3,1],[0,2,1,0]],[[1,0,3,1],[2,1,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,2],[2,1,2,2],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,1,2,3],[2,3,3,1],[1,0,1,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,2],[2,1,2,2],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[2,1,2,3],[2,3,3,1],[1,0,2,0]],[[1,0,3,1],[2,1,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,2],[2,1,2,2],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[2,1,2,3],[2,3,3,1],[1,1,0,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,2],[2,1,2,2],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[2,1,2,3],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[2,0,1,2],[2,3,1,2],[2,1,2,1]],[[1,2,1,1],[2,0,1,2],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[2,0,1,2],[3,3,1,2],[1,1,2,1]],[[1,2,1,1],[3,0,1,2],[2,3,1,2],[1,1,2,1]],[[1,3,1,1],[2,0,1,2],[2,3,1,2],[1,1,2,1]],[[2,2,1,1],[2,0,1,2],[2,3,1,2],[1,1,2,1]],[[1,2,1,1],[2,0,1,2],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[2,0,1,2],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[2,0,1,2],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[2,0,1,2],[2,3,1,3],[0,2,2,1]],[[1,2,1,1],[2,0,1,2],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[2,0,1,2],[3,3,1,2],[0,2,2,1]],[[1,2,1,1],[2,0,1,3],[2,3,1,2],[0,2,2,1]],[[1,2,1,1],[3,0,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,1,2],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[1,3,1,1],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[2,2,1,1],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,2],[0,1,0,1]],[[1,0,2,2],[2,1,2,2],[2,3,3,2],[0,1,0,1]],[[1,0,2,1],[2,1,2,3],[2,3,3,2],[0,1,0,1]],[[1,0,2,1],[2,1,2,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,1],[2,0,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,1,2],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[2,0,1,2],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[3,0,1,2],[2,2,3,2],[1,2,1,0]],[[1,3,1,1],[2,0,1,2],[2,2,3,2],[1,2,1,0]],[[2,2,1,1],[2,0,1,2],[2,2,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,1,2],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[2,0,1,2],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[2,0,1,2],[3,2,3,2],[1,2,0,1]],[[1,2,1,1],[3,0,1,2],[2,2,3,2],[1,2,0,1]],[[1,3,1,1],[2,0,1,2],[2,2,3,2],[1,2,0,1]],[[2,2,1,1],[2,0,1,2],[2,2,3,2],[1,2,0,1]],[[1,2,1,1],[2,0,1,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[2,0,1,2],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[2,0,1,2],[2,2,3,3],[0,2,2,0]],[[1,2,1,1],[2,0,1,2],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[2,0,1,3],[2,2,3,2],[0,2,2,0]],[[1,2,1,2],[2,0,1,2],[2,2,3,2],[0,2,2,0]],[[1,2,1,1],[2,0,1,2],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[2,0,1,2],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[2,0,1,2],[2,2,4,2],[0,2,1,1]],[[1,2,1,1],[2,0,1,3],[2,2,3,2],[0,2,1,1]],[[1,2,1,2],[2,0,1,2],[2,2,3,2],[0,2,1,1]],[[1,2,1,1],[2,0,1,2],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[2,0,1,2],[2,2,3,1],[2,2,1,1]],[[1,2,1,1],[2,0,1,2],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[3,0,1,2],[2,2,3,1],[1,2,1,1]],[[1,3,1,1],[2,0,1,2],[2,2,3,1],[1,2,1,1]],[[2,2,1,1],[2,0,1,2],[2,2,3,1],[1,2,1,1]],[[1,0,3,1],[2,1,2,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,2],[2,1,2,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[2,1,2,3],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[2,1,2,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,1],[2,0,1,2],[2,2,3,1],[0,2,2,2]],[[1,2,1,1],[2,0,1,2],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[2,0,1,2],[2,2,3,1],[0,3,2,1]],[[1,2,1,1],[2,0,1,2],[2,2,4,1],[0,2,2,1]],[[1,2,1,1],[2,0,1,2],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[2,0,1,2],[2,2,2,2],[1,3,2,0]],[[1,2,1,1],[2,0,1,2],[2,2,2,2],[2,2,2,0]],[[1,2,1,1],[2,0,1,2],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[3,0,1,2],[2,2,2,2],[1,2,2,0]],[[1,3,1,1],[2,0,1,2],[2,2,2,2],[1,2,2,0]],[[2,2,1,1],[2,0,1,2],[2,2,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,1,2],[2,2,2,2],[0,2,2,2]],[[1,2,1,1],[2,0,1,2],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[2,0,1,2],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[2,0,1,2],[2,2,2,3],[0,2,2,1]],[[1,2,1,1],[2,0,1,3],[2,2,2,2],[0,2,2,1]],[[1,2,1,2],[2,0,1,2],[2,2,2,2],[0,2,2,1]],[[1,2,1,1],[2,0,1,2],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[2,0,1,2],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[2,0,1,2],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[2,0,1,2],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[2,0,1,2],[3,2,2,1],[1,2,2,1]],[[1,2,1,1],[3,0,1,2],[2,2,2,1],[1,2,2,1]],[[1,3,1,1],[2,0,1,2],[2,2,2,1],[1,2,2,1]],[[2,2,1,1],[2,0,1,2],[2,2,2,1],[1,2,2,1]],[[1,2,1,1],[2,0,1,2],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[2,0,1,2],[2,2,1,2],[1,2,3,1]],[[1,2,1,1],[2,0,1,2],[2,2,1,2],[1,3,2,1]],[[1,2,1,1],[2,0,1,2],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[2,0,1,2],[2,2,1,3],[1,2,2,1]],[[1,2,1,1],[2,0,1,2],[3,2,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,1,3],[2,2,1,2],[1,2,2,1]],[[1,2,1,1],[3,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,1,2],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,3,1,1],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[2,2,1,1],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,1,2],[2,1,3,2],[1,2,3,0]],[[1,2,1,1],[2,0,1,2],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[2,0,1,2],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[2,0,1,2],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[2,0,1,2],[2,1,4,2],[1,2,2,0]],[[1,2,1,1],[2,0,1,2],[3,1,3,2],[1,2,2,0]],[[1,2,1,1],[2,0,1,3],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[3,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,1,2],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,3,1,1],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[2,2,1,1],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[2,0,1,2],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[2,0,1,2],[2,1,3,3],[1,2,1,1]],[[1,2,1,1],[2,0,1,2],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[2,0,1,3],[2,1,3,2],[1,2,1,1]],[[1,2,1,2],[2,0,1,2],[2,1,3,2],[1,2,1,1]],[[1,2,1,1],[2,0,1,2],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[2,0,1,2],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[2,0,1,2],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[2,0,1,2],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[2,0,1,2],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[2,0,1,2],[3,1,3,1],[1,2,2,1]],[[1,2,1,1],[3,0,1,2],[2,1,3,1],[1,2,2,1]],[[1,3,1,1],[2,0,1,2],[2,1,3,1],[1,2,2,1]],[[2,2,1,1],[2,0,1,2],[2,1,3,1],[1,2,2,1]],[[1,2,1,1],[2,0,1,2],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[2,0,1,2],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[2,0,1,2],[2,1,2,2],[1,3,2,1]],[[1,2,1,1],[2,0,1,2],[2,1,2,2],[2,2,2,1]],[[1,2,1,1],[2,0,1,2],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[2,0,1,2],[3,1,2,2],[1,2,2,1]],[[1,2,1,1],[2,0,1,3],[2,1,2,2],[1,2,2,1]],[[1,2,1,1],[3,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,1,2],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,3,1,1],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[2,2,1,1],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,1,1],[2,0,1,2],[2,0,3,2],[1,2,2,2]],[[1,2,1,1],[2,0,1,2],[2,0,3,2],[1,2,3,1]],[[1,2,1,1],[2,0,1,2],[2,0,3,3],[1,2,2,1]],[[1,2,1,1],[2,0,1,3],[2,0,3,2],[1,2,2,1]],[[1,2,1,2],[2,0,1,2],[2,0,3,2],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,1,3,3],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,1,3,2],[1,2,3,1]],[[1,0,2,1],[2,1,3,0],[1,1,3,2],[1,2,2,2]],[[1,0,2,1],[2,1,3,0],[1,2,2,3],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,2,2,2],[2,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,2,2,2],[1,3,2,1]],[[1,0,2,1],[2,1,3,0],[1,2,2,2],[1,2,3,1]],[[1,0,2,1],[2,1,3,0],[1,2,2,2],[1,2,2,2]],[[1,0,3,1],[2,1,3,0],[1,2,3,1],[1,2,2,1]],[[1,0,2,2],[2,1,3,0],[1,2,3,1],[1,2,2,1]],[[1,0,2,1],[2,1,4,0],[1,2,3,1],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,2,4,1],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,2,3,1],[2,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,2,3,1],[1,3,2,1]],[[1,0,2,1],[2,1,3,0],[1,2,3,1],[1,2,3,1]],[[1,0,2,1],[2,1,3,0],[1,2,3,1],[1,2,2,2]],[[1,0,3,1],[2,1,3,0],[1,2,3,2],[1,2,1,1]],[[1,0,2,2],[2,1,3,0],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,1,4,0],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,1,3,0],[1,2,4,2],[1,2,1,1]],[[1,0,2,1],[2,1,3,0],[1,2,3,3],[1,2,1,1]],[[1,0,2,1],[2,1,3,0],[1,2,3,2],[1,2,1,2]],[[1,0,3,1],[2,1,3,0],[1,2,3,2],[1,2,2,0]],[[1,0,2,2],[2,1,3,0],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,1,4,0],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,1,3,0],[1,2,4,2],[1,2,2,0]],[[1,0,2,1],[2,1,3,0],[1,2,3,3],[1,2,2,0]],[[1,0,2,1],[2,1,3,0],[1,2,3,2],[2,2,2,0]],[[1,0,2,1],[2,1,3,0],[1,2,3,2],[1,3,2,0]],[[1,0,2,1],[2,1,3,0],[1,2,3,2],[1,2,3,0]],[[1,0,2,1],[2,1,3,0],[1,4,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,1,3],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,1,3,0],[1,3,1,2],[1,2,2,2]],[[1,0,2,1],[2,1,3,0],[1,4,2,1],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,1,3,0],[1,3,2,1],[1,2,2,2]],[[1,0,2,1],[2,1,3,0],[1,3,2,3],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,2,2],[1,1,3,1]],[[1,0,2,1],[2,1,3,0],[1,3,2,2],[1,1,2,2]],[[1,0,2,1],[2,1,3,0],[1,4,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,3,0],[1,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,1,3,0],[1,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,1,3,0],[1,3,2,2],[1,2,3,0]],[[1,0,2,1],[2,1,3,0],[1,4,3,0],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,0],[2,2,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,0],[1,3,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,0],[1,2,3,1]],[[1,0,3,1],[2,1,3,0],[1,3,3,1],[1,1,2,1]],[[1,0,2,2],[2,1,3,0],[1,3,3,1],[1,1,2,1]],[[1,0,2,1],[2,1,4,0],[1,3,3,1],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[1,4,3,1],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,4,1],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,1],[1,1,3,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,1],[1,1,2,2]],[[1,0,3,1],[2,1,3,0],[1,3,3,1],[1,2,1,1]],[[1,0,2,2],[2,1,3,0],[1,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,4,0],[1,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,3,0],[1,4,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,3,0],[1,3,4,1],[1,2,1,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,1],[1,3,1,1]],[[1,0,2,1],[2,1,3,0],[1,3,4,2],[1,0,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,3],[1,0,2,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,2],[1,0,2,2]],[[1,0,3,1],[2,1,3,0],[1,3,3,2],[1,1,1,1]],[[1,0,2,2],[2,1,3,0],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,1,4,0],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,1,3,0],[1,4,3,2],[1,1,1,1]],[[1,0,2,1],[2,1,3,0],[1,3,4,2],[1,1,1,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,3],[1,1,1,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,2],[1,1,1,2]],[[1,0,3,1],[2,1,3,0],[1,3,3,2],[1,1,2,0]],[[1,0,2,2],[2,1,3,0],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,1,4,0],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,1,3,0],[1,4,3,2],[1,1,2,0]],[[1,0,2,1],[2,1,3,0],[1,3,4,2],[1,1,2,0]],[[1,0,2,1],[2,1,3,0],[1,3,3,3],[1,1,2,0]],[[1,0,2,1],[2,1,3,0],[1,3,3,2],[1,1,3,0]],[[1,0,3,1],[2,1,3,0],[1,3,3,2],[1,2,0,1]],[[1,0,2,2],[2,1,3,0],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,4,0],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,3,0],[1,4,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,3,0],[1,3,4,2],[1,2,0,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,3],[1,2,0,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,1,3,0],[1,3,3,2],[1,2,0,2]],[[1,0,3,1],[2,1,3,0],[1,3,3,2],[1,2,1,0]],[[1,0,2,2],[2,1,3,0],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,4,0],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,3,0],[1,4,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,3,0],[1,3,4,2],[1,2,1,0]],[[1,0,2,1],[2,1,3,0],[1,3,3,3],[1,2,1,0]],[[1,0,2,1],[2,1,3,0],[1,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,1,3,0],[1,3,3,2],[1,3,1,0]],[[1,0,2,1],[2,1,3,0],[2,0,3,3],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,0,3,2],[1,2,3,1]],[[1,0,2,1],[2,1,3,0],[2,0,3,2],[1,2,2,2]],[[2,0,2,1],[2,1,3,0],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[3,1,3,0],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[3,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,1,2,3],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,1,2,2],[2,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,1,2,2],[1,3,2,1]],[[1,0,2,1],[2,1,3,0],[2,1,2,2],[1,2,3,1]],[[1,0,2,1],[2,1,3,0],[2,1,2,2],[1,2,2,2]],[[2,0,2,1],[2,1,3,0],[2,1,3,1],[1,2,2,1]],[[1,0,3,1],[2,1,3,0],[2,1,3,1],[1,2,2,1]],[[1,0,2,2],[2,1,3,0],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[3,1,3,0],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,1,4,0],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[3,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,1,4,1],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,1,3,1],[2,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,1,3,1],[1,3,2,1]],[[1,0,2,1],[2,1,3,0],[2,1,3,1],[1,2,3,1]],[[1,0,2,1],[2,1,3,0],[2,1,3,1],[1,2,2,2]],[[1,0,2,1],[2,1,3,0],[2,1,3,3],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,1,3,2],[0,2,3,1]],[[1,0,2,1],[2,1,3,0],[2,1,3,2],[0,2,2,2]],[[1,0,3,1],[2,1,3,0],[2,1,3,2],[1,2,1,1]],[[1,0,2,2],[2,1,3,0],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[2,1,4,0],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[2,1,3,0],[2,1,4,2],[1,2,1,1]],[[1,0,2,1],[2,1,3,0],[2,1,3,3],[1,2,1,1]],[[1,0,2,1],[2,1,3,0],[2,1,3,2],[1,2,1,2]],[[2,0,2,1],[2,1,3,0],[2,1,3,2],[1,2,2,0]],[[1,0,3,1],[2,1,3,0],[2,1,3,2],[1,2,2,0]],[[1,0,2,2],[2,1,3,0],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[3,1,3,0],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,1,4,0],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,1,3,0],[3,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,1,3,0],[2,1,4,2],[1,2,2,0]],[[1,0,2,1],[2,1,3,0],[2,1,3,3],[1,2,2,0]],[[1,0,2,1],[2,1,3,0],[2,1,3,2],[2,2,2,0]],[[1,0,2,1],[2,1,3,0],[2,1,3,2],[1,3,2,0]],[[1,0,2,1],[2,1,3,0],[2,1,3,2],[1,2,3,0]],[[2,0,2,1],[2,1,3,0],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[3,1,3,0],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[3,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,1,3],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,1,2],[2,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,1,2],[1,3,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,1,2],[1,2,3,1]],[[1,0,2,1],[2,1,3,0],[2,2,1,2],[1,2,2,2]],[[2,0,2,1],[2,1,3,0],[2,2,2,1],[1,2,2,1]],[[1,0,2,1],[3,1,3,0],[2,2,2,1],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[3,2,2,1],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,2,1],[2,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,2,1],[1,3,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,2,1],[1,2,3,1]],[[1,0,2,1],[2,1,3,0],[2,2,2,1],[1,2,2,2]],[[1,0,2,1],[2,1,3,0],[2,2,2,3],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,2,2],[0,3,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,2,2],[0,2,3,1]],[[1,0,2,1],[2,1,3,0],[2,2,2,2],[0,2,2,2]],[[2,0,2,1],[2,1,3,0],[2,2,2,2],[1,2,2,0]],[[1,0,2,1],[3,1,3,0],[2,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,3,0],[3,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,3,0],[2,2,2,2],[2,2,2,0]],[[1,0,2,1],[2,1,3,0],[2,2,2,2],[1,3,2,0]],[[1,0,2,1],[2,1,3,0],[2,2,2,2],[1,2,3,0]],[[2,0,2,1],[2,1,3,0],[2,2,3,0],[1,2,2,1]],[[1,0,2,1],[3,1,3,0],[2,2,3,0],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[3,2,3,0],[1,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,0],[2,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,0],[1,3,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,0],[1,2,3,1]],[[1,0,3,1],[2,1,3,0],[2,2,3,1],[0,2,2,1]],[[1,0,2,2],[2,1,3,0],[2,2,3,1],[0,2,2,1]],[[1,0,2,1],[2,1,4,0],[2,2,3,1],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,1],[0,3,2,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,1],[0,2,3,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,1],[0,2,2,2]],[[2,0,2,1],[2,1,3,0],[2,2,3,1],[1,2,1,1]],[[1,0,2,1],[3,1,3,0],[2,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,3,0],[3,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,1],[2,2,1,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,1],[1,3,1,1]],[[1,0,3,1],[2,1,3,0],[2,2,3,2],[0,2,1,1]],[[1,0,2,2],[2,1,3,0],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,1,4,0],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,1,3,0],[2,2,4,2],[0,2,1,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,3],[0,2,1,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,2],[0,2,1,2]],[[1,0,3,1],[2,1,3,0],[2,2,3,2],[0,2,2,0]],[[1,0,2,2],[2,1,3,0],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,1,4,0],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,1,3,0],[2,2,4,2],[0,2,2,0]],[[1,0,2,1],[2,1,3,0],[2,2,3,3],[0,2,2,0]],[[1,0,2,1],[2,1,3,0],[2,2,3,2],[0,3,2,0]],[[1,0,2,1],[2,1,3,0],[2,2,3,2],[0,2,3,0]],[[2,0,2,1],[2,1,3,0],[2,2,3,2],[1,2,0,1]],[[1,0,2,1],[3,1,3,0],[2,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,3,0],[3,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,2],[2,2,0,1]],[[1,0,2,1],[2,1,3,0],[2,2,3,2],[1,3,0,1]],[[2,0,2,1],[2,1,3,0],[2,2,3,2],[1,2,1,0]],[[1,0,2,1],[3,1,3,0],[2,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,3,0],[3,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,1,3,0],[2,2,3,2],[2,2,1,0]],[[1,0,2,1],[2,1,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,1,2],[1,3,3,2],[2,2,1,0]],[[1,2,1,1],[2,0,1,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[2,0,1,2],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[2,0,1,2],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,1,3],[1,3,3,2],[1,2,1,0]],[[1,2,1,2],[2,0,1,2],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,1,2],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[2,0,1,2],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[2,0,1,2],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[2,0,1,2],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[2,0,1,2],[1,3,4,2],[1,2,0,1]],[[2,0,2,1],[2,1,3,0],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[3,1,3,0],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[3,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,4,1,2],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,1,3],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,1,2],[0,3,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,1,2],[0,2,3,1]],[[1,0,2,1],[2,1,3,0],[2,3,1,2],[0,2,2,2]],[[2,0,2,1],[2,1,3,0],[2,3,1,2],[1,1,2,1]],[[1,0,2,1],[3,1,3,0],[2,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[3,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[2,4,1,2],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,1,2],[2,1,2,1]],[[2,0,2,1],[2,1,3,0],[2,3,2,1],[0,2,2,1]],[[1,0,2,1],[3,1,3,0],[2,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[3,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,4,2,1],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,2,1],[0,3,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,2,1],[0,2,3,1]],[[1,0,2,1],[2,1,3,0],[2,3,2,1],[0,2,2,2]],[[2,0,2,1],[2,1,3,0],[2,3,2,1],[1,1,2,1]],[[1,0,2,1],[3,1,3,0],[2,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[3,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[2,4,2,1],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,2,1],[2,1,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,2,3],[0,1,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,2,2],[0,1,3,1]],[[1,0,2,1],[2,1,3,0],[2,3,2,2],[0,1,2,2]],[[2,0,2,1],[2,1,3,0],[2,3,2,2],[0,2,2,0]],[[1,0,2,1],[3,1,3,0],[2,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,1,3,0],[3,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,1,3,0],[2,4,2,2],[0,2,2,0]],[[1,0,2,1],[2,1,3,0],[2,3,2,2],[0,3,2,0]],[[1,0,2,1],[2,1,3,0],[2,3,2,2],[0,2,3,0]],[[1,0,2,1],[2,1,3,0],[2,3,2,3],[1,0,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,2,2],[1,0,3,1]],[[1,0,2,1],[2,1,3,0],[2,3,2,2],[1,0,2,2]],[[2,0,2,1],[2,1,3,0],[2,3,2,2],[1,1,2,0]],[[1,0,2,1],[3,1,3,0],[2,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,1,3,0],[3,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,1,3,0],[2,4,2,2],[1,1,2,0]],[[1,0,2,1],[2,1,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[2,0,1,2],[1,4,3,2],[1,2,0,1]],[[1,2,1,1],[2,0,1,3],[1,3,3,2],[1,2,0,1]],[[1,2,1,2],[2,0,1,2],[1,3,3,2],[1,2,0,1]],[[2,0,2,1],[2,1,3,0],[2,3,3,0],[0,2,2,1]],[[1,0,2,1],[3,1,3,0],[2,3,3,0],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[3,3,3,0],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,4,3,0],[0,2,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,0],[0,3,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,0],[0,2,3,1]],[[2,0,2,1],[2,1,3,0],[2,3,3,0],[1,1,2,1]],[[1,0,2,1],[3,1,3,0],[2,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[3,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[2,4,3,0],[1,1,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,0],[2,1,2,1]],[[2,0,2,1],[2,1,3,0],[2,3,3,1],[0,1,2,1]],[[1,0,3,1],[2,1,3,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,2],[2,1,3,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[3,1,3,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,1,4,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,1,3,0],[3,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,1,3,0],[2,4,3,1],[0,1,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,4,1],[0,1,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,1],[0,1,2,2]],[[2,0,2,1],[2,1,3,0],[2,3,3,1],[0,2,1,1]],[[1,0,3,1],[2,1,3,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,2],[2,1,3,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[3,1,3,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,1,4,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,1,3,0],[3,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,1,3,0],[2,4,3,1],[0,2,1,1]],[[1,0,2,1],[2,1,3,0],[2,3,4,1],[0,2,1,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,1],[0,3,1,1]],[[2,0,2,1],[2,1,3,0],[2,3,3,1],[1,0,2,1]],[[1,0,3,1],[2,1,3,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,2],[2,1,3,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[3,1,3,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,1,4,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,1,3,0],[3,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,1,3,0],[2,4,3,1],[1,0,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,4,1],[1,0,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,1],[2,0,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,1],[1,0,3,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,1],[1,0,2,2]],[[2,0,2,1],[2,1,3,0],[2,3,3,1],[1,1,1,1]],[[1,0,3,1],[2,1,3,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,2],[2,1,3,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[3,1,3,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,1,4,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,1,3,0],[3,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,1,3,0],[2,4,3,1],[1,1,1,1]],[[1,0,2,1],[2,1,3,0],[2,3,4,1],[1,1,1,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,1],[2,1,1,1]],[[2,0,2,1],[2,1,3,0],[2,3,3,1],[1,2,0,1]],[[1,0,2,1],[3,1,3,0],[2,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,1,3,0],[3,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,1,3,0],[2,4,3,1],[1,2,0,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[2,0,1,2],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[2,0,1,2],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[2,0,1,2],[1,3,4,2],[1,1,2,0]],[[1,2,1,1],[2,0,1,2],[1,4,3,2],[1,1,2,0]],[[1,2,1,1],[2,0,1,3],[1,3,3,2],[1,1,2,0]],[[1,2,1,2],[2,0,1,2],[1,3,3,2],[1,1,2,0]],[[1,2,1,1],[2,0,1,2],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[2,0,1,2],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[2,0,1,2],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[2,0,1,2],[1,4,3,2],[1,1,1,1]],[[1,2,1,1],[2,0,1,3],[1,3,3,2],[1,1,1,1]],[[1,0,3,1],[2,1,3,0],[2,3,3,2],[0,0,2,1]],[[1,0,2,2],[2,1,3,0],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,1,4,0],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,4,2],[0,0,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,3],[0,0,2,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[0,0,2,2]],[[2,0,2,1],[2,1,3,0],[2,3,3,2],[0,1,1,1]],[[1,0,3,1],[2,1,3,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,2],[2,1,3,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[3,1,3,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,1,4,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,1,3,0],[3,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,1,3,0],[2,4,3,2],[0,1,1,1]],[[1,0,2,1],[2,1,3,0],[2,3,4,2],[0,1,1,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,3],[0,1,1,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[0,1,1,2]],[[2,0,2,1],[2,1,3,0],[2,3,3,2],[0,1,2,0]],[[1,0,3,1],[2,1,3,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,2],[2,1,3,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[3,1,3,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,1,4,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,1,3,0],[3,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,1,3,0],[2,4,3,2],[0,1,2,0]],[[1,0,2,1],[2,1,3,0],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[2,1,3,0],[2,3,3,3],[0,1,2,0]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[0,1,3,0]],[[2,0,2,1],[2,1,3,0],[2,3,3,2],[0,2,0,1]],[[1,0,3,1],[2,1,3,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,2],[2,1,3,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[3,1,3,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,1,4,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,1,3,0],[3,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,1,3,0],[2,4,3,2],[0,2,0,1]],[[1,0,2,1],[2,1,3,0],[2,3,4,2],[0,2,0,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,3],[0,2,0,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[0,3,0,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[0,2,0,2]],[[2,0,2,1],[2,1,3,0],[2,3,3,2],[0,2,1,0]],[[1,0,3,1],[2,1,3,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,2],[2,1,3,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[3,1,3,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,1,4,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,1,3,0],[3,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,1,3,0],[2,4,3,2],[0,2,1,0]],[[1,0,2,1],[2,1,3,0],[2,3,4,2],[0,2,1,0]],[[1,0,2,1],[2,1,3,0],[2,3,3,3],[0,2,1,0]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,2],[2,0,1,2],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[2,0,1,2],[1,3,3,2],[0,1,2,2]],[[1,2,1,1],[2,0,1,2],[1,3,3,2],[0,1,3,1]],[[1,2,1,1],[2,0,1,2],[1,3,3,3],[0,1,2,1]],[[2,0,2,1],[2,1,3,0],[2,3,3,2],[1,0,1,1]],[[1,0,3,1],[2,1,3,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,2],[2,1,3,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[3,1,3,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,1,4,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,1,3,0],[3,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,1,3,0],[2,4,3,2],[1,0,1,1]],[[1,0,2,1],[2,1,3,0],[2,3,4,2],[1,0,1,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,3],[1,0,1,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[2,0,1,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[1,0,1,2]],[[2,0,2,1],[2,1,3,0],[2,3,3,2],[1,0,2,0]],[[1,0,3,1],[2,1,3,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,2],[2,1,3,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[3,1,3,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,1,4,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,1,3,0],[3,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,1,3,0],[2,4,3,2],[1,0,2,0]],[[1,0,2,1],[2,1,3,0],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[2,1,3,0],[2,3,3,3],[1,0,2,0]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[2,0,2,0]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[1,0,3,0]],[[2,0,2,1],[2,1,3,0],[2,3,3,2],[1,1,0,1]],[[1,0,3,1],[2,1,3,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,2],[2,1,3,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[3,1,3,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,1,4,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,1,3,0],[3,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,1,3,0],[2,4,3,2],[1,1,0,1]],[[1,0,2,1],[2,1,3,0],[2,3,4,2],[1,1,0,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,3],[1,1,0,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[2,1,0,1]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[1,1,0,2]],[[2,0,2,1],[2,1,3,0],[2,3,3,2],[1,1,1,0]],[[1,0,3,1],[2,1,3,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,2],[2,1,3,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[3,1,3,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,1,4,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,1,3,0],[3,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,1,3,0],[2,4,3,2],[1,1,1,0]],[[1,0,2,1],[2,1,3,0],[2,3,4,2],[1,1,1,0]],[[1,0,2,1],[2,1,3,0],[2,3,3,3],[1,1,1,0]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[2,0,1,2],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[2,0,1,2],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[2,0,1,2],[1,3,4,1],[1,2,1,1]],[[1,2,1,1],[2,0,1,2],[1,4,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,1,2],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[2,0,1,2],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[2,0,1,2],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[2,0,1,2],[1,4,3,1],[1,1,2,1]],[[2,0,2,1],[2,1,3,0],[2,3,3,2],[1,2,0,0]],[[1,0,2,1],[3,1,3,0],[2,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,1,3,0],[3,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,1,3,0],[2,4,3,2],[1,2,0,0]],[[1,0,2,1],[2,1,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[2,0,1,2],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[2,0,1,2],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[2,0,1,2],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[2,0,1,2],[1,4,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,1,2],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[2,0,1,2],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[2,0,1,2],[1,3,2,3],[1,1,2,1]],[[1,2,1,1],[2,0,1,3],[1,3,2,2],[1,1,2,1]],[[1,2,1,2],[2,0,1,2],[1,3,2,2],[1,1,2,1]],[[1,2,1,1],[2,0,1,2],[1,3,2,1],[1,2,2,2]],[[1,2,1,1],[2,0,1,2],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[2,0,1,2],[1,3,2,1],[1,3,2,1]],[[1,2,1,1],[2,0,1,2],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[2,0,1,2],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[2,0,1,2],[1,3,1,2],[1,2,2,2]],[[1,2,1,1],[2,0,1,2],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[2,0,1,2],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[2,0,1,2],[1,3,1,2],[2,2,2,1]],[[1,2,1,1],[2,0,1,2],[1,3,1,3],[1,2,2,1]],[[1,2,1,1],[2,0,1,2],[1,4,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,1,3],[1,3,1,2],[1,2,2,1]],[[1,2,1,2],[2,0,1,2],[1,3,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,1,2],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[2,0,1,2],[1,2,3,2],[1,3,2,0]],[[1,0,3,1],[2,1,3,1],[1,2,1,2],[1,2,2,1]],[[1,0,2,2],[2,1,3,1],[1,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,4,1],[1,2,1,2],[1,2,2,1]],[[1,0,3,1],[2,1,3,1],[1,2,2,2],[1,2,1,1]],[[1,0,2,2],[2,1,3,1],[1,2,2,2],[1,2,1,1]],[[1,0,2,1],[2,1,4,1],[1,2,2,2],[1,2,1,1]],[[1,0,3,1],[2,1,3,1],[1,2,2,2],[1,2,2,0]],[[1,0,2,2],[2,1,3,1],[1,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,4,1],[1,2,2,2],[1,2,2,0]],[[1,0,3,1],[2,1,3,1],[1,2,3,0],[1,2,2,1]],[[1,0,2,2],[2,1,3,1],[1,2,3,0],[1,2,2,1]],[[1,0,2,1],[2,1,4,1],[1,2,3,0],[1,2,2,1]],[[1,0,2,1],[2,1,3,1],[1,2,4,0],[1,2,2,1]],[[1,0,2,1],[2,1,3,1],[1,2,3,0],[2,2,2,1]],[[1,0,2,1],[2,1,3,1],[1,2,3,0],[1,3,2,1]],[[1,0,2,1],[2,1,3,1],[1,2,3,0],[1,2,3,1]],[[1,0,2,1],[2,1,3,1],[1,2,3,0],[1,2,2,2]],[[1,0,3,1],[2,1,3,1],[1,2,3,1],[1,2,1,1]],[[1,0,2,2],[2,1,3,1],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,4,1],[1,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,3,1],[1,2,4,1],[1,2,1,1]],[[1,0,3,1],[2,1,3,1],[1,2,3,1],[1,2,2,0]],[[1,0,2,2],[2,1,3,1],[1,2,3,1],[1,2,2,0]],[[1,0,2,1],[2,1,4,1],[1,2,3,1],[1,2,2,0]],[[1,0,2,1],[2,1,3,1],[1,2,4,1],[1,2,2,0]],[[1,0,2,1],[2,1,3,1],[1,2,3,1],[2,2,2,0]],[[1,0,2,1],[2,1,3,1],[1,2,3,1],[1,3,2,0]],[[1,0,2,1],[2,1,3,1],[1,2,3,1],[1,2,3,0]],[[1,2,1,1],[2,0,1,2],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[2,0,1,2],[1,2,3,3],[1,2,2,0]],[[1,2,1,1],[2,0,1,2],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[2,0,1,3],[1,2,3,2],[1,2,2,0]],[[1,2,1,2],[2,0,1,2],[1,2,3,2],[1,2,2,0]],[[1,2,1,1],[2,0,1,2],[1,2,3,2],[1,2,1,2]],[[1,2,1,1],[2,0,1,2],[1,2,3,3],[1,2,1,1]],[[1,2,1,1],[2,0,1,2],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[2,0,1,3],[1,2,3,2],[1,2,1,1]],[[1,0,3,1],[2,1,3,1],[1,3,0,2],[1,2,2,1]],[[1,0,2,2],[2,1,3,1],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,1,4,1],[1,3,0,2],[1,2,2,1]],[[1,0,3,1],[2,1,3,1],[1,3,1,2],[1,1,2,1]],[[1,0,2,2],[2,1,3,1],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,1,4,1],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,1,3,1],[1,4,2,0],[1,2,2,1]],[[1,0,2,1],[2,1,3,1],[1,3,2,0],[2,2,2,1]],[[1,0,2,1],[2,1,3,1],[1,3,2,0],[1,3,2,1]],[[1,0,2,1],[2,1,3,1],[1,3,2,0],[1,2,3,1]],[[1,0,2,1],[2,1,3,1],[1,3,2,0],[1,2,2,2]],[[1,0,2,1],[2,1,3,1],[1,4,2,1],[1,2,2,0]],[[1,0,2,1],[2,1,3,1],[1,3,2,1],[2,2,2,0]],[[1,0,2,1],[2,1,3,1],[1,3,2,1],[1,3,2,0]],[[1,0,2,1],[2,1,3,1],[1,3,2,1],[1,2,3,0]],[[1,0,3,1],[2,1,3,1],[1,3,2,2],[1,1,1,1]],[[1,0,2,2],[2,1,3,1],[1,3,2,2],[1,1,1,1]],[[1,0,2,1],[2,1,4,1],[1,3,2,2],[1,1,1,1]],[[1,0,3,1],[2,1,3,1],[1,3,2,2],[1,1,2,0]],[[1,0,2,2],[2,1,3,1],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,1,4,1],[1,3,2,2],[1,1,2,0]],[[1,0,3,1],[2,1,3,1],[1,3,2,2],[1,2,0,1]],[[1,0,2,2],[2,1,3,1],[1,3,2,2],[1,2,0,1]],[[1,0,2,1],[2,1,4,1],[1,3,2,2],[1,2,0,1]],[[1,0,3,1],[2,1,3,1],[1,3,2,2],[1,2,1,0]],[[1,0,2,2],[2,1,3,1],[1,3,2,2],[1,2,1,0]],[[1,0,2,1],[2,1,4,1],[1,3,2,2],[1,2,1,0]],[[1,2,1,2],[2,0,1,2],[1,2,3,2],[1,2,1,1]],[[1,2,1,1],[2,0,1,2],[1,2,3,2],[0,2,2,2]],[[1,2,1,1],[2,0,1,2],[1,2,3,2],[0,2,3,1]],[[1,2,1,1],[2,0,1,2],[1,2,3,3],[0,2,2,1]],[[1,2,1,1],[2,0,1,2],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[2,0,1,2],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[2,0,1,2],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[2,0,1,2],[1,2,3,1],[2,2,2,1]],[[1,2,1,1],[2,0,1,2],[1,2,4,1],[1,2,2,1]],[[1,0,3,1],[2,1,3,1],[1,3,3,0],[1,1,2,1]],[[1,0,2,2],[2,1,3,1],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,1,4,1],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,1,3,1],[1,4,3,0],[1,1,2,1]],[[1,0,2,1],[2,1,3,1],[1,3,4,0],[1,1,2,1]],[[1,0,2,1],[2,1,3,1],[1,3,3,0],[1,1,3,1]],[[1,0,2,1],[2,1,3,1],[1,3,3,0],[1,1,2,2]],[[1,0,3,1],[2,1,3,1],[1,3,3,0],[1,2,1,1]],[[1,0,2,2],[2,1,3,1],[1,3,3,0],[1,2,1,1]],[[1,0,2,1],[2,1,4,1],[1,3,3,0],[1,2,1,1]],[[1,0,2,1],[2,1,3,1],[1,4,3,0],[1,2,1,1]],[[1,0,2,1],[2,1,3,1],[1,3,4,0],[1,2,1,1]],[[1,0,2,1],[2,1,3,1],[1,3,3,0],[2,2,1,1]],[[1,0,2,1],[2,1,3,1],[1,3,3,0],[1,3,1,1]],[[1,0,3,1],[2,1,3,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,2],[2,1,3,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,1,4,1],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,1,3,1],[1,4,3,1],[1,1,1,1]],[[1,0,2,1],[2,1,3,1],[1,3,4,1],[1,1,1,1]],[[1,0,3,1],[2,1,3,1],[1,3,3,1],[1,1,2,0]],[[1,0,2,2],[2,1,3,1],[1,3,3,1],[1,1,2,0]],[[1,0,2,1],[2,1,4,1],[1,3,3,1],[1,1,2,0]],[[1,0,2,1],[2,1,3,1],[1,4,3,1],[1,1,2,0]],[[1,0,2,1],[2,1,3,1],[1,3,4,1],[1,1,2,0]],[[1,0,2,1],[2,1,3,1],[1,3,3,1],[1,1,3,0]],[[1,0,3,1],[2,1,3,1],[1,3,3,1],[1,2,0,1]],[[1,0,2,2],[2,1,3,1],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,1,4,1],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,1,3,1],[1,4,3,1],[1,2,0,1]],[[1,0,2,1],[2,1,3,1],[1,3,4,1],[1,2,0,1]],[[1,0,2,1],[2,1,3,1],[1,3,3,1],[2,2,0,1]],[[1,0,2,1],[2,1,3,1],[1,3,3,1],[1,3,0,1]],[[1,0,3,1],[2,1,3,1],[1,3,3,1],[1,2,1,0]],[[1,0,2,2],[2,1,3,1],[1,3,3,1],[1,2,1,0]],[[1,0,2,1],[2,1,4,1],[1,3,3,1],[1,2,1,0]],[[1,0,2,1],[2,1,3,1],[1,4,3,1],[1,2,1,0]],[[1,0,2,1],[2,1,3,1],[1,3,4,1],[1,2,1,0]],[[1,0,2,1],[2,1,3,1],[1,3,3,1],[2,2,1,0]],[[1,0,2,1],[2,1,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[2,0,1,2],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[2,0,1,2],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[2,0,1,2],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[2,0,1,2],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[2,0,1,2],[1,2,2,3],[1,2,2,1]],[[1,2,1,1],[2,0,1,3],[1,2,2,2],[1,2,2,1]],[[1,2,1,2],[2,0,1,2],[1,2,2,2],[1,2,2,1]],[[1,2,1,1],[2,0,1,2],[0,3,3,2],[1,1,2,2]],[[1,2,1,1],[2,0,1,2],[0,3,3,2],[1,1,3,1]],[[1,2,1,1],[2,0,1,2],[0,3,3,3],[1,1,2,1]],[[1,2,1,1],[2,0,1,2],[0,2,3,2],[1,2,2,2]],[[1,2,1,1],[2,0,1,2],[0,2,3,2],[1,2,3,1]],[[1,2,1,1],[2,0,1,2],[0,2,3,2],[1,3,2,1]],[[1,2,1,1],[2,0,1,2],[0,2,3,3],[1,2,2,1]],[[1,2,1,1],[2,0,1,0],[2,3,3,2],[1,2,3,0]],[[1,2,1,1],[2,0,1,0],[2,3,3,2],[1,3,2,0]],[[1,2,1,1],[2,0,1,0],[2,3,3,2],[2,2,2,0]],[[1,2,1,1],[2,0,1,0],[3,3,3,2],[1,2,2,0]],[[1,2,1,1],[2,0,1,0],[2,3,3,1],[1,2,2,2]],[[1,2,1,1],[2,0,1,0],[2,3,3,1],[1,2,3,1]],[[1,2,1,1],[2,0,1,0],[2,3,3,1],[1,3,2,1]],[[1,2,1,1],[2,0,1,0],[2,3,3,1],[2,2,2,1]],[[1,2,1,1],[2,0,1,0],[3,3,3,1],[1,2,2,1]],[[1,0,3,1],[2,1,3,1],[2,1,1,2],[1,2,2,1]],[[1,0,2,2],[2,1,3,1],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,1,4,1],[2,1,1,2],[1,2,2,1]],[[1,0,3,1],[2,1,3,1],[2,1,2,2],[1,2,1,1]],[[1,0,2,2],[2,1,3,1],[2,1,2,2],[1,2,1,1]],[[1,0,2,1],[2,1,4,1],[2,1,2,2],[1,2,1,1]],[[1,0,3,1],[2,1,3,1],[2,1,2,2],[1,2,2,0]],[[1,0,2,2],[2,1,3,1],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,1,4,1],[2,1,2,2],[1,2,2,0]],[[2,0,2,1],[2,1,3,1],[2,1,3,0],[1,2,2,1]],[[1,0,3,1],[2,1,3,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,2],[2,1,3,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[3,1,3,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,1,4,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,1,3,1],[3,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,1,3,1],[2,1,4,0],[1,2,2,1]],[[1,0,2,1],[2,1,3,1],[2,1,3,0],[2,2,2,1]],[[1,0,2,1],[2,1,3,1],[2,1,3,0],[1,3,2,1]],[[1,0,2,1],[2,1,3,1],[2,1,3,0],[1,2,3,1]],[[1,0,2,1],[2,1,3,1],[2,1,3,0],[1,2,2,2]],[[1,0,3,1],[2,1,3,1],[2,1,3,1],[1,2,1,1]],[[1,0,2,2],[2,1,3,1],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,4,1],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,1,3,1],[2,1,4,1],[1,2,1,1]],[[2,0,2,1],[2,1,3,1],[2,1,3,1],[1,2,2,0]],[[1,0,3,1],[2,1,3,1],[2,1,3,1],[1,2,2,0]],[[1,0,2,2],[2,1,3,1],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[3,1,3,1],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[2,1,4,1],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[2,1,3,1],[3,1,3,1],[1,2,2,0]],[[1,0,2,1],[2,1,3,1],[2,1,4,1],[1,2,2,0]],[[1,0,2,1],[2,1,3,1],[2,1,3,1],[2,2,2,0]],[[1,0,2,1],[2,1,3,1],[2,1,3,1],[1,3,2,0]],[[1,0,2,1],[2,1,3,1],[2,1,3,1],[1,2,3,0]],[[1,2,1,1],[2,0,0,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[2,0,0,2],[2,3,3,2],[2,2,1,0]],[[1,2,1,1],[2,0,0,2],[3,3,3,2],[1,2,1,0]],[[1,2,1,1],[2,0,0,2],[2,3,3,2],[1,3,0,1]],[[1,2,1,1],[2,0,0,2],[2,3,3,2],[2,2,0,1]],[[1,2,1,1],[2,0,0,2],[3,3,3,2],[1,2,0,1]],[[1,0,3,1],[2,1,3,1],[2,2,0,2],[1,2,2,1]],[[1,0,2,2],[2,1,3,1],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,1,4,1],[2,2,0,2],[1,2,2,1]],[[1,0,3,1],[2,1,3,1],[2,2,1,2],[0,2,2,1]],[[1,0,2,2],[2,1,3,1],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[2,1,4,1],[2,2,1,2],[0,2,2,1]],[[2,0,2,1],[2,1,3,1],[2,2,2,0],[1,2,2,1]],[[1,0,2,1],[3,1,3,1],[2,2,2,0],[1,2,2,1]],[[1,0,2,1],[2,1,3,1],[3,2,2,0],[1,2,2,1]],[[1,0,2,1],[2,1,3,1],[2,2,2,0],[2,2,2,1]],[[1,0,2,1],[2,1,3,1],[2,2,2,0],[1,3,2,1]],[[1,0,2,1],[2,1,3,1],[2,2,2,0],[1,2,3,1]],[[1,0,2,1],[2,1,3,1],[2,2,2,0],[1,2,2,2]],[[2,0,2,1],[2,1,3,1],[2,2,2,1],[1,2,2,0]],[[1,0,2,1],[3,1,3,1],[2,2,2,1],[1,2,2,0]],[[1,0,2,1],[2,1,3,1],[3,2,2,1],[1,2,2,0]],[[1,0,2,1],[2,1,3,1],[2,2,2,1],[2,2,2,0]],[[1,0,2,1],[2,1,3,1],[2,2,2,1],[1,3,2,0]],[[1,0,2,1],[2,1,3,1],[2,2,2,1],[1,2,3,0]],[[1,0,3,1],[2,1,3,1],[2,2,2,2],[0,2,1,1]],[[1,0,2,2],[2,1,3,1],[2,2,2,2],[0,2,1,1]],[[1,0,2,1],[2,1,4,1],[2,2,2,2],[0,2,1,1]],[[1,0,3,1],[2,1,3,1],[2,2,2,2],[0,2,2,0]],[[1,0,2,2],[2,1,3,1],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[2,1,4,1],[2,2,2,2],[0,2,2,0]],[[1,2,1,1],[2,0,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,1,1],[2,0,0,2],[2,3,3,2],[1,0,3,1]],[[1,2,1,1],[2,0,0,2],[2,3,3,3],[1,0,2,1]],[[1,2,1,1],[2,0,0,2],[2,3,3,2],[0,1,2,2]],[[1,2,1,1],[2,0,0,2],[2,3,3,2],[0,1,3,1]],[[1,2,1,1],[2,0,0,2],[2,3,3,3],[0,1,2,1]],[[1,0,3,1],[2,1,3,1],[2,2,3,0],[0,2,2,1]],[[1,0,2,2],[2,1,3,1],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[2,1,4,1],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[2,1,3,1],[2,2,4,0],[0,2,2,1]],[[1,0,2,1],[2,1,3,1],[2,2,3,0],[0,3,2,1]],[[1,0,2,1],[2,1,3,1],[2,2,3,0],[0,2,3,1]],[[1,0,2,1],[2,1,3,1],[2,2,3,0],[0,2,2,2]],[[2,0,2,1],[2,1,3,1],[2,2,3,0],[1,2,1,1]],[[1,0,2,1],[3,1,3,1],[2,2,3,0],[1,2,1,1]],[[1,0,2,1],[2,1,3,1],[3,2,3,0],[1,2,1,1]],[[1,0,2,1],[2,1,3,1],[2,2,3,0],[2,2,1,1]],[[1,0,2,1],[2,1,3,1],[2,2,3,0],[1,3,1,1]],[[1,0,3,1],[2,1,3,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,2],[2,1,3,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,1,4,1],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,1,3,1],[2,2,4,1],[0,2,1,1]],[[1,0,3,1],[2,1,3,1],[2,2,3,1],[0,2,2,0]],[[1,0,2,2],[2,1,3,1],[2,2,3,1],[0,2,2,0]],[[1,0,2,1],[2,1,4,1],[2,2,3,1],[0,2,2,0]],[[1,0,2,1],[2,1,3,1],[2,2,4,1],[0,2,2,0]],[[1,0,2,1],[2,1,3,1],[2,2,3,1],[0,3,2,0]],[[1,0,2,1],[2,1,3,1],[2,2,3,1],[0,2,3,0]],[[2,0,2,1],[2,1,3,1],[2,2,3,1],[1,2,0,1]],[[1,0,2,1],[3,1,3,1],[2,2,3,1],[1,2,0,1]],[[1,0,2,1],[2,1,3,1],[3,2,3,1],[1,2,0,1]],[[1,0,2,1],[2,1,3,1],[2,2,3,1],[2,2,0,1]],[[1,0,2,1],[2,1,3,1],[2,2,3,1],[1,3,0,1]],[[2,0,2,1],[2,1,3,1],[2,2,3,1],[1,2,1,0]],[[1,0,2,1],[3,1,3,1],[2,2,3,1],[1,2,1,0]],[[1,0,2,1],[2,1,3,1],[3,2,3,1],[1,2,1,0]],[[1,0,2,1],[2,1,3,1],[2,2,3,1],[2,2,1,0]],[[1,0,2,1],[2,1,3,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[2,0,0,2],[2,3,3,1],[1,3,1,1]],[[1,2,1,1],[2,0,0,2],[2,3,3,1],[2,2,1,1]],[[1,2,1,1],[2,0,0,2],[3,3,3,1],[1,2,1,1]],[[1,2,1,1],[2,0,0,2],[2,3,2,2],[1,2,3,0]],[[1,2,1,1],[2,0,0,2],[2,3,2,2],[1,3,2,0]],[[1,2,1,1],[2,0,0,2],[2,3,2,2],[2,2,2,0]],[[1,2,1,1],[2,0,0,2],[3,3,2,2],[1,2,2,0]],[[1,2,1,1],[2,0,0,2],[2,3,2,1],[1,2,2,2]],[[1,2,1,1],[2,0,0,2],[2,3,2,1],[1,2,3,1]],[[1,2,1,1],[2,0,0,2],[2,3,2,1],[1,3,2,1]],[[1,2,1,1],[2,0,0,2],[2,3,2,1],[2,2,2,1]],[[1,2,1,1],[2,0,0,2],[3,3,2,1],[1,2,2,1]],[[1,2,1,1],[2,0,0,2],[2,3,1,2],[1,2,2,2]],[[1,2,1,1],[2,0,0,2],[2,3,1,2],[1,2,3,1]],[[1,2,1,1],[2,0,0,2],[2,3,1,2],[1,3,2,1]],[[1,2,1,1],[2,0,0,2],[2,3,1,2],[2,2,2,1]],[[1,2,1,1],[2,0,0,2],[2,3,1,3],[1,2,2,1]],[[1,2,1,1],[2,0,0,2],[3,3,1,2],[1,2,2,1]],[[1,2,1,1],[2,0,0,2],[2,2,3,2],[0,2,2,2]],[[1,2,1,1],[2,0,0,2],[2,2,3,2],[0,2,3,1]],[[1,2,1,1],[2,0,0,2],[2,2,3,2],[0,3,2,1]],[[1,2,1,1],[2,0,0,2],[2,2,3,3],[0,2,2,1]],[[1,2,1,1],[2,0,0,2],[2,1,3,2],[1,2,2,2]],[[1,2,1,1],[2,0,0,2],[2,1,3,2],[1,2,3,1]],[[1,2,1,1],[2,0,0,2],[2,1,3,2],[1,3,2,1]],[[1,2,1,1],[2,0,0,2],[2,1,3,2],[2,2,2,1]],[[1,2,1,1],[2,0,0,2],[2,1,3,3],[1,2,2,1]],[[1,2,1,1],[2,0,0,2],[3,1,3,2],[1,2,2,1]],[[1,2,1,1],[2,0,0,2],[1,3,3,2],[1,1,2,2]],[[1,2,1,1],[2,0,0,2],[1,3,3,2],[1,1,3,1]],[[1,2,1,1],[2,0,0,2],[1,3,3,3],[1,1,2,1]],[[1,2,1,1],[2,0,0,2],[1,2,3,2],[1,2,2,2]],[[1,0,3,1],[2,1,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,2,2],[2,1,3,1],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,1,4,1],[2,3,0,2],[0,2,2,1]],[[1,0,3,1],[2,1,3,1],[2,3,1,2],[0,1,2,1]],[[1,0,2,2],[2,1,3,1],[2,3,1,2],[0,1,2,1]],[[1,0,2,1],[2,1,4,1],[2,3,1,2],[0,1,2,1]],[[1,0,3,1],[2,1,3,1],[2,3,1,2],[1,0,2,1]],[[1,0,2,2],[2,1,3,1],[2,3,1,2],[1,0,2,1]],[[1,0,2,1],[2,1,4,1],[2,3,1,2],[1,0,2,1]],[[1,2,1,1],[2,0,0,2],[1,2,3,2],[1,2,3,1]],[[1,2,1,1],[2,0,0,2],[1,2,3,2],[1,3,2,1]],[[1,2,1,1],[2,0,0,2],[1,2,3,2],[2,2,2,1]],[[1,2,1,1],[2,0,0,2],[1,2,3,3],[1,2,2,1]],[[2,0,2,1],[2,1,3,1],[2,3,2,0],[0,2,2,1]],[[1,0,2,1],[3,1,3,1],[2,3,2,0],[0,2,2,1]],[[1,0,2,1],[2,1,3,1],[3,3,2,0],[0,2,2,1]],[[1,0,2,1],[2,1,3,1],[2,4,2,0],[0,2,2,1]],[[1,0,2,1],[2,1,3,1],[2,3,2,0],[0,3,2,1]],[[1,0,2,1],[2,1,3,1],[2,3,2,0],[0,2,3,1]],[[1,0,2,1],[2,1,3,1],[2,3,2,0],[0,2,2,2]],[[2,0,2,1],[2,1,3,1],[2,3,2,0],[1,1,2,1]],[[1,0,2,1],[3,1,3,1],[2,3,2,0],[1,1,2,1]],[[1,0,2,1],[2,1,3,1],[3,3,2,0],[1,1,2,1]],[[1,0,2,1],[2,1,3,1],[2,4,2,0],[1,1,2,1]],[[1,0,2,1],[2,1,3,1],[2,3,2,0],[2,1,2,1]],[[2,0,2,1],[2,1,3,1],[2,3,2,1],[0,2,2,0]],[[1,0,2,1],[3,1,3,1],[2,3,2,1],[0,2,2,0]],[[1,0,2,1],[2,1,3,1],[3,3,2,1],[0,2,2,0]],[[1,0,2,1],[2,1,3,1],[2,4,2,1],[0,2,2,0]],[[1,0,2,1],[2,1,3,1],[2,3,2,1],[0,3,2,0]],[[1,0,2,1],[2,1,3,1],[2,3,2,1],[0,2,3,0]],[[2,0,2,1],[2,1,3,1],[2,3,2,1],[1,1,2,0]],[[1,0,2,1],[3,1,3,1],[2,3,2,1],[1,1,2,0]],[[1,0,2,1],[2,1,3,1],[3,3,2,1],[1,1,2,0]],[[1,0,2,1],[2,1,3,1],[2,4,2,1],[1,1,2,0]],[[1,0,2,1],[2,1,3,1],[2,3,2,1],[2,1,2,0]],[[1,0,3,1],[2,1,3,1],[2,3,2,2],[0,0,2,1]],[[1,0,2,2],[2,1,3,1],[2,3,2,2],[0,0,2,1]],[[1,0,2,1],[2,1,4,1],[2,3,2,2],[0,0,2,1]],[[1,0,3,1],[2,1,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,2,2],[2,1,3,1],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,1,4,1],[2,3,2,2],[0,1,1,1]],[[1,0,3,1],[2,1,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,2,2],[2,1,3,1],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,1,4,1],[2,3,2,2],[0,1,2,0]],[[1,0,3,1],[2,1,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,2,2],[2,1,3,1],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,1,4,1],[2,3,2,2],[0,2,0,1]],[[1,0,3,1],[2,1,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,2,2],[2,1,3,1],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,1,4,1],[2,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,2],[2,3,3,0],[1,0,0,0]],[[1,0,3,1],[2,1,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,2,2],[2,1,3,1],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[2,1,4,1],[2,3,2,2],[1,0,1,1]],[[1,0,3,1],[2,1,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,2,2],[2,1,3,1],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[2,1,4,1],[2,3,2,2],[1,0,2,0]],[[1,0,3,1],[2,1,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,2,2],[2,1,3,1],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[2,1,4,1],[2,3,2,2],[1,1,0,1]],[[1,0,3,1],[2,1,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,2,2],[2,1,3,1],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[2,1,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,1,1],[1,4,3,2],[2,3,3,0],[1,0,0,0]],[[1,3,1,1],[1,3,3,2],[2,3,3,0],[1,0,0,0]],[[2,2,1,1],[1,3,3,2],[2,3,3,0],[1,0,0,0]],[[2,0,2,1],[2,1,3,1],[2,3,3,0],[0,1,2,1]],[[1,0,3,1],[2,1,3,1],[2,3,3,0],[0,1,2,1]],[[1,0,2,2],[2,1,3,1],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[3,1,3,1],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,1,4,1],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,1,3,1],[3,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,1,3,1],[2,4,3,0],[0,1,2,1]],[[1,0,2,1],[2,1,3,1],[2,3,4,0],[0,1,2,1]],[[1,0,2,1],[2,1,3,1],[2,3,3,0],[0,1,3,1]],[[1,0,2,1],[2,1,3,1],[2,3,3,0],[0,1,2,2]],[[2,0,2,1],[2,1,3,1],[2,3,3,0],[0,2,1,1]],[[1,0,3,1],[2,1,3,1],[2,3,3,0],[0,2,1,1]],[[1,0,2,2],[2,1,3,1],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[3,1,3,1],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,1,4,1],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,1,3,1],[3,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,1,3,1],[2,4,3,0],[0,2,1,1]],[[1,0,2,1],[2,1,3,1],[2,3,4,0],[0,2,1,1]],[[1,0,2,1],[2,1,3,1],[2,3,3,0],[0,3,1,1]],[[2,0,2,1],[2,1,3,1],[2,3,3,0],[1,0,2,1]],[[1,0,3,1],[2,1,3,1],[2,3,3,0],[1,0,2,1]],[[1,0,2,2],[2,1,3,1],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[3,1,3,1],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,1,4,1],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,1,3,1],[3,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,1,3,1],[2,4,3,0],[1,0,2,1]],[[1,0,2,1],[2,1,3,1],[2,3,4,0],[1,0,2,1]],[[1,0,2,1],[2,1,3,1],[2,3,3,0],[2,0,2,1]],[[1,0,2,1],[2,1,3,1],[2,3,3,0],[1,0,3,1]],[[1,0,2,1],[2,1,3,1],[2,3,3,0],[1,0,2,2]],[[2,0,2,1],[2,1,3,1],[2,3,3,0],[1,1,1,1]],[[1,0,3,1],[2,1,3,1],[2,3,3,0],[1,1,1,1]],[[1,0,2,2],[2,1,3,1],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[3,1,3,1],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,1,4,1],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,1,3,1],[3,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,1,3,1],[2,4,3,0],[1,1,1,1]],[[1,0,2,1],[2,1,3,1],[2,3,4,0],[1,1,1,1]],[[1,0,2,1],[2,1,3,1],[2,3,3,0],[2,1,1,1]],[[2,0,2,1],[2,1,3,1],[2,3,3,0],[1,2,0,1]],[[1,0,2,1],[3,1,3,1],[2,3,3,0],[1,2,0,1]],[[1,0,2,1],[2,1,3,1],[3,3,3,0],[1,2,0,1]],[[1,0,2,1],[2,1,3,1],[2,4,3,0],[1,2,0,1]],[[1,0,2,1],[2,1,3,1],[2,3,3,0],[2,2,0,1]],[[1,0,3,1],[2,1,3,1],[2,3,3,1],[0,0,2,1]],[[1,0,2,2],[2,1,3,1],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,1,4,1],[2,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,1,3,1],[2,3,4,1],[0,0,2,1]],[[2,0,2,1],[2,1,3,1],[2,3,3,1],[0,1,1,1]],[[1,0,3,1],[2,1,3,1],[2,3,3,1],[0,1,1,1]],[[1,0,2,2],[2,1,3,1],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[3,1,3,1],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,1,4,1],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,1,3,1],[3,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,1,3,1],[2,4,3,1],[0,1,1,1]],[[1,0,2,1],[2,1,3,1],[2,3,4,1],[0,1,1,1]],[[2,0,2,1],[2,1,3,1],[2,3,3,1],[0,1,2,0]],[[1,0,3,1],[2,1,3,1],[2,3,3,1],[0,1,2,0]],[[1,0,2,2],[2,1,3,1],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[3,1,3,1],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,1,4,1],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,1,3,1],[3,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,1,3,1],[2,4,3,1],[0,1,2,0]],[[1,0,2,1],[2,1,3,1],[2,3,4,1],[0,1,2,0]],[[1,0,2,1],[2,1,3,1],[2,3,3,1],[0,1,3,0]],[[2,0,2,1],[2,1,3,1],[2,3,3,1],[0,2,0,1]],[[1,0,3,1],[2,1,3,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,2],[2,1,3,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[3,1,3,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,1,4,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,1,3,1],[3,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,1,3,1],[2,4,3,1],[0,2,0,1]],[[1,0,2,1],[2,1,3,1],[2,3,4,1],[0,2,0,1]],[[1,0,2,1],[2,1,3,1],[2,3,3,1],[0,3,0,1]],[[2,0,2,1],[2,1,3,1],[2,3,3,1],[0,2,1,0]],[[1,0,3,1],[2,1,3,1],[2,3,3,1],[0,2,1,0]],[[1,0,2,2],[2,1,3,1],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[3,1,3,1],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,1,4,1],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,1,3,1],[3,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,1,3,1],[2,4,3,1],[0,2,1,0]],[[1,0,2,1],[2,1,3,1],[2,3,4,1],[0,2,1,0]],[[1,0,2,1],[2,1,3,1],[2,3,3,1],[0,3,1,0]],[[2,0,2,1],[2,1,3,1],[2,3,3,1],[1,0,1,1]],[[1,0,3,1],[2,1,3,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,2],[2,1,3,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[3,1,3,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,1,4,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,1,3,1],[3,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,1,3,1],[2,4,3,1],[1,0,1,1]],[[1,0,2,1],[2,1,3,1],[2,3,4,1],[1,0,1,1]],[[1,0,2,1],[2,1,3,1],[2,3,3,1],[2,0,1,1]],[[2,0,2,1],[2,1,3,1],[2,3,3,1],[1,0,2,0]],[[1,0,3,1],[2,1,3,1],[2,3,3,1],[1,0,2,0]],[[1,0,2,2],[2,1,3,1],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[3,1,3,1],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[2,1,4,1],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[2,1,3,1],[3,3,3,1],[1,0,2,0]],[[1,0,2,1],[2,1,3,1],[2,4,3,1],[1,0,2,0]],[[1,0,2,1],[2,1,3,1],[2,3,4,1],[1,0,2,0]],[[1,0,2,1],[2,1,3,1],[2,3,3,1],[2,0,2,0]],[[1,0,2,1],[2,1,3,1],[2,3,3,1],[1,0,3,0]],[[2,0,2,1],[2,1,3,1],[2,3,3,1],[1,1,0,1]],[[1,0,3,1],[2,1,3,1],[2,3,3,1],[1,1,0,1]],[[1,0,2,2],[2,1,3,1],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[3,1,3,1],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[2,1,4,1],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[2,1,3,1],[3,3,3,1],[1,1,0,1]],[[1,0,2,1],[2,1,3,1],[2,4,3,1],[1,1,0,1]],[[1,0,2,1],[2,1,3,1],[2,3,4,1],[1,1,0,1]],[[1,0,2,1],[2,1,3,1],[2,3,3,1],[2,1,0,1]],[[2,0,2,1],[2,1,3,1],[2,3,3,1],[1,1,1,0]],[[1,0,3,1],[2,1,3,1],[2,3,3,1],[1,1,1,0]],[[1,0,2,2],[2,1,3,1],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[3,1,3,1],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[2,1,4,1],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[2,1,3,1],[3,3,3,1],[1,1,1,0]],[[1,0,2,1],[2,1,3,1],[2,4,3,1],[1,1,1,0]],[[1,0,2,1],[2,1,3,1],[2,3,4,1],[1,1,1,0]],[[1,0,2,1],[2,1,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[1,3,4,2],[2,3,2,0],[1,0,1,0]],[[1,2,1,1],[1,4,3,2],[2,3,2,0],[1,0,1,0]],[[1,3,1,1],[1,3,3,2],[2,3,2,0],[1,0,1,0]],[[2,2,1,1],[1,3,3,2],[2,3,2,0],[1,0,1,0]],[[1,2,1,1],[1,3,4,2],[2,3,2,0],[1,0,0,1]],[[1,2,1,1],[1,4,3,2],[2,3,2,0],[1,0,0,1]],[[1,3,1,1],[1,3,3,2],[2,3,2,0],[1,0,0,1]],[[2,2,1,1],[1,3,3,2],[2,3,2,0],[1,0,0,1]],[[2,0,2,1],[2,1,3,1],[2,3,3,1],[1,2,0,0]],[[1,0,2,1],[3,1,3,1],[2,3,3,1],[1,2,0,0]],[[1,0,2,1],[2,1,3,1],[3,3,3,1],[1,2,0,0]],[[1,0,2,1],[2,1,3,1],[2,4,3,1],[1,2,0,0]],[[1,0,2,1],[2,1,3,1],[2,3,3,1],[2,2,0,0]],[[1,0,3,1],[2,1,3,1],[2,3,3,2],[0,1,0,1]],[[1,0,2,2],[2,1,3,1],[2,3,3,2],[0,1,0,1]],[[1,0,2,1],[2,1,4,1],[2,3,3,2],[0,1,0,1]],[[1,2,1,1],[1,4,3,2],[2,3,1,0],[1,2,0,0]],[[1,3,1,1],[1,3,3,2],[2,3,1,0],[1,2,0,0]],[[2,2,1,1],[1,3,3,2],[2,3,1,0],[1,2,0,0]],[[1,2,1,1],[1,4,3,2],[2,3,1,0],[1,1,1,0]],[[1,3,1,1],[1,3,3,2],[2,3,1,0],[1,1,1,0]],[[2,2,1,1],[1,3,3,2],[2,3,1,0],[1,1,1,0]],[[1,2,1,1],[1,4,3,2],[2,3,1,0],[1,1,0,1]],[[1,3,1,1],[1,3,3,2],[2,3,1,0],[1,1,0,1]],[[2,2,1,1],[1,3,3,2],[2,3,1,0],[1,1,0,1]],[[1,0,3,1],[2,1,3,1],[2,3,3,2],[1,0,0,1]],[[1,0,2,2],[2,1,3,1],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[2,1,4,1],[2,3,3,2],[1,0,0,1]],[[1,2,1,1],[1,4,3,2],[2,3,1,0],[0,2,1,0]],[[1,3,1,1],[1,3,3,2],[2,3,1,0],[0,2,1,0]],[[2,2,1,1],[1,3,3,2],[2,3,1,0],[0,2,1,0]],[[1,2,1,1],[1,4,3,2],[2,3,1,0],[0,2,0,1]],[[1,3,1,1],[1,3,3,2],[2,3,1,0],[0,2,0,1]],[[2,2,1,1],[1,3,3,2],[2,3,1,0],[0,2,0,1]],[[1,2,1,1],[1,4,3,2],[2,3,0,0],[1,2,1,0]],[[1,3,1,1],[1,3,3,2],[2,3,0,0],[1,2,1,0]],[[2,2,1,1],[1,3,3,2],[2,3,0,0],[1,2,1,0]],[[1,2,1,1],[1,4,3,2],[2,3,0,0],[1,1,2,0]],[[1,3,1,1],[1,3,3,2],[2,3,0,0],[1,1,2,0]],[[2,2,1,1],[1,3,3,2],[2,3,0,0],[1,1,2,0]],[[1,2,1,1],[1,4,3,2],[2,3,0,0],[0,2,2,0]],[[1,3,1,1],[1,3,3,2],[2,3,0,0],[0,2,2,0]],[[2,2,1,1],[1,3,3,2],[2,3,0,0],[0,2,2,0]],[[1,2,1,1],[1,3,4,2],[2,2,3,0],[1,1,0,0]],[[1,2,1,1],[1,4,3,2],[2,2,3,0],[1,1,0,0]],[[1,3,1,1],[1,3,3,2],[2,2,3,0],[1,1,0,0]],[[2,2,1,1],[1,3,3,2],[2,2,3,0],[1,1,0,0]],[[1,2,1,1],[1,3,4,2],[2,2,3,0],[0,2,0,0]],[[1,2,1,1],[1,4,3,2],[2,2,3,0],[0,2,0,0]],[[1,3,1,1],[1,3,3,2],[2,2,3,0],[0,2,0,0]],[[2,2,1,1],[1,3,3,2],[2,2,3,0],[0,2,0,0]],[[1,0,3,1],[2,1,3,2],[1,2,3,0],[1,2,2,0]],[[1,0,2,2],[2,1,3,2],[1,2,3,0],[1,2,2,0]],[[1,0,2,1],[2,1,4,2],[1,2,3,0],[1,2,2,0]],[[1,2,1,1],[1,3,4,2],[2,2,2,0],[1,2,0,0]],[[1,2,1,1],[1,4,3,2],[2,2,2,0],[1,2,0,0]],[[1,3,1,1],[1,3,3,2],[2,2,2,0],[1,2,0,0]],[[2,2,1,1],[1,3,3,2],[2,2,2,0],[1,2,0,0]],[[1,2,1,1],[1,3,4,2],[2,2,2,0],[1,1,1,0]],[[1,2,1,1],[1,4,3,2],[2,2,2,0],[1,1,1,0]],[[1,3,1,1],[1,3,3,2],[2,2,2,0],[1,1,1,0]],[[2,2,1,1],[1,3,3,2],[2,2,2,0],[1,1,1,0]],[[1,2,1,1],[1,3,4,2],[2,2,2,0],[1,1,0,1]],[[1,2,1,1],[1,4,3,2],[2,2,2,0],[1,1,0,1]],[[1,3,1,1],[1,3,3,2],[2,2,2,0],[1,1,0,1]],[[2,2,1,1],[1,3,3,2],[2,2,2,0],[1,1,0,1]],[[1,2,1,1],[1,3,4,2],[2,2,2,0],[1,0,2,0]],[[1,2,1,1],[1,4,3,2],[2,2,2,0],[1,0,2,0]],[[1,3,1,1],[1,3,3,2],[2,2,2,0],[1,0,2,0]],[[2,2,1,1],[1,3,3,2],[2,2,2,0],[1,0,2,0]],[[1,2,1,1],[1,3,4,2],[2,2,2,0],[1,0,1,1]],[[1,2,1,1],[1,4,3,2],[2,2,2,0],[1,0,1,1]],[[1,3,1,1],[1,3,3,2],[2,2,2,0],[1,0,1,1]],[[2,2,1,1],[1,3,3,2],[2,2,2,0],[1,0,1,1]],[[1,2,1,1],[1,3,4,2],[2,2,2,0],[0,2,1,0]],[[1,2,1,1],[1,4,3,2],[2,2,2,0],[0,2,1,0]],[[1,3,1,1],[1,3,3,2],[2,2,2,0],[0,2,1,0]],[[2,2,1,1],[1,3,3,2],[2,2,2,0],[0,2,1,0]],[[1,2,1,1],[1,3,4,2],[2,2,2,0],[0,2,0,1]],[[1,2,1,1],[1,4,3,2],[2,2,2,0],[0,2,0,1]],[[1,3,1,1],[1,3,3,2],[2,2,2,0],[0,2,0,1]],[[2,2,1,1],[1,3,3,2],[2,2,2,0],[0,2,0,1]],[[1,0,3,1],[2,1,3,2],[1,3,3,0],[1,1,2,0]],[[1,0,2,2],[2,1,3,2],[1,3,3,0],[1,1,2,0]],[[1,0,2,1],[2,1,4,2],[1,3,3,0],[1,1,2,0]],[[1,0,3,1],[2,1,3,2],[1,3,3,0],[1,2,0,1]],[[1,0,2,2],[2,1,3,2],[1,3,3,0],[1,2,0,1]],[[1,0,2,1],[2,1,4,2],[1,3,3,0],[1,2,0,1]],[[1,0,3,1],[2,1,3,2],[1,3,3,0],[1,2,1,0]],[[1,0,2,2],[2,1,3,2],[1,3,3,0],[1,2,1,0]],[[1,0,2,1],[2,1,4,2],[1,3,3,0],[1,2,1,0]],[[1,2,1,1],[1,3,4,2],[2,2,2,0],[0,1,2,0]],[[1,2,1,1],[1,4,3,2],[2,2,2,0],[0,1,2,0]],[[1,3,1,1],[1,3,3,2],[2,2,2,0],[0,1,2,0]],[[2,2,1,1],[1,3,3,2],[2,2,2,0],[0,1,2,0]],[[1,2,1,1],[1,3,4,2],[2,2,2,0],[0,1,1,1]],[[1,2,1,1],[1,4,3,2],[2,2,2,0],[0,1,1,1]],[[1,3,1,1],[1,3,3,2],[2,2,2,0],[0,1,1,1]],[[2,2,1,1],[1,3,3,2],[2,2,2,0],[0,1,1,1]],[[1,2,1,1],[1,3,4,2],[2,2,1,0],[1,1,2,0]],[[1,2,1,1],[1,4,3,2],[2,2,1,0],[1,1,2,0]],[[1,3,1,1],[1,3,3,2],[2,2,1,0],[1,1,2,0]],[[2,2,1,1],[1,3,3,2],[2,2,1,0],[1,1,2,0]],[[1,2,1,1],[1,3,4,2],[2,2,1,0],[0,2,2,0]],[[1,2,1,1],[1,4,3,2],[2,2,1,0],[0,2,2,0]],[[1,3,1,1],[1,3,3,2],[2,2,1,0],[0,2,2,0]],[[2,2,1,1],[1,3,3,2],[2,2,1,0],[0,2,2,0]],[[1,0,3,1],[2,1,3,2],[2,1,3,0],[1,2,2,0]],[[1,0,2,2],[2,1,3,2],[2,1,3,0],[1,2,2,0]],[[1,0,2,1],[2,1,4,2],[2,1,3,0],[1,2,2,0]],[[1,2,1,1],[1,4,3,2],[2,2,0,0],[1,2,2,0]],[[1,3,1,1],[1,3,3,2],[2,2,0,0],[1,2,2,0]],[[2,2,1,1],[1,3,3,2],[2,2,0,0],[1,2,2,0]],[[1,0,3,1],[2,1,3,2],[2,2,3,0],[0,2,2,0]],[[1,0,2,2],[2,1,3,2],[2,2,3,0],[0,2,2,0]],[[1,0,2,1],[2,1,4,2],[2,2,3,0],[0,2,2,0]],[[1,2,1,1],[1,3,4,2],[2,1,3,0],[1,1,1,0]],[[1,2,1,1],[1,4,3,2],[2,1,3,0],[1,1,1,0]],[[1,3,1,1],[1,3,3,2],[2,1,3,0],[1,1,1,0]],[[2,2,1,1],[1,3,3,2],[2,1,3,0],[1,1,1,0]],[[1,2,1,1],[1,3,4,2],[2,1,3,0],[1,1,0,1]],[[1,2,1,1],[1,4,3,2],[2,1,3,0],[1,1,0,1]],[[1,3,1,1],[1,3,3,2],[2,1,3,0],[1,1,0,1]],[[2,2,1,1],[1,3,3,2],[2,1,3,0],[1,1,0,1]],[[1,2,1,1],[1,3,4,2],[2,1,3,0],[1,0,2,0]],[[1,2,1,1],[1,4,3,2],[2,1,3,0],[1,0,2,0]],[[1,3,1,1],[1,3,3,2],[2,1,3,0],[1,0,2,0]],[[2,2,1,1],[1,3,3,2],[2,1,3,0],[1,0,2,0]],[[1,2,1,1],[1,3,4,2],[2,1,3,0],[1,0,1,1]],[[1,2,1,1],[1,4,3,2],[2,1,3,0],[1,0,1,1]],[[1,3,1,1],[1,3,3,2],[2,1,3,0],[1,0,1,1]],[[2,2,1,1],[1,3,3,2],[2,1,3,0],[1,0,1,1]],[[1,2,1,1],[1,3,4,2],[2,1,3,0],[0,2,1,0]],[[1,2,1,1],[1,4,3,2],[2,1,3,0],[0,2,1,0]],[[1,3,1,1],[1,3,3,2],[2,1,3,0],[0,2,1,0]],[[2,2,1,1],[1,3,3,2],[2,1,3,0],[0,2,1,0]],[[1,2,1,1],[1,3,4,2],[2,1,3,0],[0,2,0,1]],[[1,2,1,1],[1,4,3,2],[2,1,3,0],[0,2,0,1]],[[1,3,1,1],[1,3,3,2],[2,1,3,0],[0,2,0,1]],[[2,2,1,1],[1,3,3,2],[2,1,3,0],[0,2,0,1]],[[1,2,1,1],[1,3,4,2],[2,1,3,0],[0,1,2,0]],[[1,2,1,1],[1,4,3,2],[2,1,3,0],[0,1,2,0]],[[1,3,1,1],[1,3,3,2],[2,1,3,0],[0,1,2,0]],[[2,2,1,1],[1,3,3,2],[2,1,3,0],[0,1,2,0]],[[1,2,1,1],[1,3,4,2],[2,1,3,0],[0,1,1,1]],[[1,2,1,1],[1,4,3,2],[2,1,3,0],[0,1,1,1]],[[1,3,1,1],[1,3,3,2],[2,1,3,0],[0,1,1,1]],[[2,2,1,1],[1,3,3,2],[2,1,3,0],[0,1,1,1]],[[1,2,1,1],[1,3,4,2],[2,1,2,0],[1,2,1,0]],[[1,2,1,1],[1,4,3,2],[2,1,2,0],[1,2,1,0]],[[1,3,1,1],[1,3,3,2],[2,1,2,0],[1,2,1,0]],[[2,2,1,1],[1,3,3,2],[2,1,2,0],[1,2,1,0]],[[1,2,1,1],[1,3,4,2],[2,1,2,0],[1,2,0,1]],[[1,2,1,1],[1,4,3,2],[2,1,2,0],[1,2,0,1]],[[1,3,1,1],[1,3,3,2],[2,1,2,0],[1,2,0,1]],[[2,2,1,1],[1,3,3,2],[2,1,2,0],[1,2,0,1]],[[1,2,1,1],[1,3,4,2],[2,1,1,0],[1,2,2,0]],[[1,2,1,1],[1,4,3,2],[2,1,1,0],[1,2,2,0]],[[1,3,1,1],[1,3,3,2],[2,1,1,0],[1,2,2,0]],[[2,2,1,1],[1,3,3,2],[2,1,1,0],[1,2,2,0]],[[1,2,1,1],[1,3,3,2],[2,0,3,3],[1,0,0,1]],[[1,2,1,1],[1,3,3,3],[2,0,3,2],[1,0,0,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,2],[1,0,0,1]],[[1,2,1,2],[1,3,3,2],[2,0,3,2],[1,0,0,1]],[[1,2,1,1],[1,3,3,2],[2,0,3,3],[0,1,0,1]],[[1,2,1,1],[1,3,3,3],[2,0,3,2],[0,1,0,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,2],[0,1,0,1]],[[1,2,1,2],[1,3,3,2],[2,0,3,2],[0,1,0,1]],[[1,0,3,1],[2,1,3,2],[2,3,3,0],[0,1,1,1]],[[1,0,2,2],[2,1,3,2],[2,3,3,0],[0,1,1,1]],[[1,0,2,1],[2,1,4,2],[2,3,3,0],[0,1,1,1]],[[1,0,3,1],[2,1,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,2,2],[2,1,3,2],[2,3,3,0],[0,1,2,0]],[[1,0,2,1],[2,1,4,2],[2,3,3,0],[0,1,2,0]],[[1,0,3,1],[2,1,3,2],[2,3,3,0],[0,2,0,1]],[[1,0,2,2],[2,1,3,2],[2,3,3,0],[0,2,0,1]],[[1,0,2,1],[2,1,4,2],[2,3,3,0],[0,2,0,1]],[[1,0,3,1],[2,1,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,2,2],[2,1,3,2],[2,3,3,0],[0,2,1,0]],[[1,0,2,1],[2,1,4,2],[2,3,3,0],[0,2,1,0]],[[1,0,3,1],[2,1,3,2],[2,3,3,0],[1,0,1,1]],[[1,0,2,2],[2,1,3,2],[2,3,3,0],[1,0,1,1]],[[1,0,2,1],[2,1,4,2],[2,3,3,0],[1,0,1,1]],[[1,0,3,1],[2,1,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,2,2],[2,1,3,2],[2,3,3,0],[1,0,2,0]],[[1,0,2,1],[2,1,4,2],[2,3,3,0],[1,0,2,0]],[[1,0,3,1],[2,1,3,2],[2,3,3,0],[1,1,0,1]],[[1,0,2,2],[2,1,3,2],[2,3,3,0],[1,1,0,1]],[[1,0,2,1],[2,1,4,2],[2,3,3,0],[1,1,0,1]],[[1,0,3,1],[2,1,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,2,2],[2,1,3,2],[2,3,3,0],[1,1,1,0]],[[1,0,2,1],[2,1,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,1,1],[1,3,3,3],[2,0,3,1],[1,1,1,0]],[[1,2,1,1],[1,3,4,2],[2,0,3,1],[1,1,1,0]],[[1,2,1,2],[1,3,3,2],[2,0,3,1],[1,1,1,0]],[[1,2,1,1],[1,3,3,3],[2,0,3,1],[1,1,0,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,1],[1,1,0,1]],[[1,2,1,2],[1,3,3,2],[2,0,3,1],[1,1,0,1]],[[1,2,1,1],[1,3,3,3],[2,0,3,1],[1,0,2,0]],[[1,2,1,1],[1,3,4,2],[2,0,3,1],[1,0,2,0]],[[1,2,1,2],[1,3,3,2],[2,0,3,1],[1,0,2,0]],[[1,2,1,1],[1,3,3,3],[2,0,3,1],[1,0,1,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,1],[1,0,1,1]],[[1,2,1,2],[1,3,3,2],[2,0,3,1],[1,0,1,1]],[[1,2,1,1],[1,3,3,3],[2,0,3,1],[0,2,1,0]],[[1,2,1,1],[1,3,4,2],[2,0,3,1],[0,2,1,0]],[[1,2,1,2],[1,3,3,2],[2,0,3,1],[0,2,1,0]],[[1,2,1,1],[1,3,3,3],[2,0,3,1],[0,2,0,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,1],[0,2,0,1]],[[1,2,1,2],[1,3,3,2],[2,0,3,1],[0,2,0,1]],[[1,2,1,1],[1,3,3,3],[2,0,3,1],[0,1,2,0]],[[1,2,1,1],[1,3,4,2],[2,0,3,1],[0,1,2,0]],[[1,2,1,2],[1,3,3,2],[2,0,3,1],[0,1,2,0]],[[1,2,1,1],[1,3,3,3],[2,0,3,1],[0,1,1,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,1],[0,1,1,1]],[[1,2,1,2],[1,3,3,2],[2,0,3,1],[0,1,1,1]],[[1,2,1,1],[1,3,3,3],[2,0,3,1],[0,0,2,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,1],[0,0,2,1]],[[1,2,1,2],[1,3,3,2],[2,0,3,1],[0,0,2,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,0],[1,2,1,0]],[[1,2,1,1],[1,4,3,2],[2,0,3,0],[1,2,1,0]],[[1,3,1,1],[1,3,3,2],[2,0,3,0],[1,2,1,0]],[[2,2,1,1],[1,3,3,2],[2,0,3,0],[1,2,1,0]],[[1,2,1,1],[1,3,4,2],[2,0,3,0],[1,2,0,1]],[[1,2,1,1],[1,4,3,2],[2,0,3,0],[1,2,0,1]],[[1,3,1,1],[1,3,3,2],[2,0,3,0],[1,2,0,1]],[[2,2,1,1],[1,3,3,2],[2,0,3,0],[1,2,0,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,0],[1,1,2,0]],[[1,2,1,1],[1,4,3,2],[2,0,3,0],[1,1,2,0]],[[1,3,1,1],[1,3,3,2],[2,0,3,0],[1,1,2,0]],[[2,2,1,1],[1,3,3,2],[2,0,3,0],[1,1,2,0]],[[1,2,1,1],[1,3,3,3],[2,0,3,0],[1,0,2,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,0],[1,0,2,1]],[[1,2,1,2],[1,3,3,2],[2,0,3,0],[1,0,2,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,0],[0,2,2,0]],[[1,2,1,1],[1,4,3,2],[2,0,3,0],[0,2,2,0]],[[1,3,1,1],[1,3,3,2],[2,0,3,0],[0,2,2,0]],[[2,2,1,1],[1,3,3,2],[2,0,3,0],[0,2,2,0]],[[1,2,1,1],[1,3,3,3],[2,0,3,0],[0,1,2,1]],[[1,2,1,1],[1,3,4,2],[2,0,3,0],[0,1,2,1]],[[1,2,1,2],[1,3,3,2],[2,0,3,0],[0,1,2,1]],[[1,2,1,1],[1,3,3,3],[2,0,2,2],[1,1,1,0]],[[1,2,1,1],[1,3,4,2],[2,0,2,2],[1,1,1,0]],[[1,2,1,2],[1,3,3,2],[2,0,2,2],[1,1,1,0]],[[1,2,1,1],[1,3,3,2],[2,0,2,3],[1,1,0,1]],[[1,2,1,1],[1,3,3,3],[2,0,2,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,2],[2,0,2,2],[1,1,0,1]],[[1,2,1,2],[1,3,3,2],[2,0,2,2],[1,1,0,1]],[[1,2,1,1],[1,3,3,2],[2,0,2,3],[1,0,2,0]],[[1,2,1,1],[1,3,3,3],[2,0,2,2],[1,0,2,0]],[[1,2,1,1],[1,3,4,2],[2,0,2,2],[1,0,2,0]],[[1,2,1,2],[1,3,3,2],[2,0,2,2],[1,0,2,0]],[[1,2,1,1],[1,3,3,2],[2,0,2,2],[1,0,1,2]],[[1,2,1,1],[1,3,3,2],[2,0,2,3],[1,0,1,1]],[[1,2,1,1],[1,3,3,3],[2,0,2,2],[1,0,1,1]],[[1,2,1,1],[1,3,4,2],[2,0,2,2],[1,0,1,1]],[[1,2,1,2],[1,3,3,2],[2,0,2,2],[1,0,1,1]],[[1,2,1,1],[1,3,3,3],[2,0,2,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,2],[2,0,2,2],[0,2,1,0]],[[1,2,1,2],[1,3,3,2],[2,0,2,2],[0,2,1,0]],[[1,2,1,1],[1,3,3,2],[2,0,2,3],[0,2,0,1]],[[1,2,1,1],[1,3,3,3],[2,0,2,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,2],[2,0,2,2],[0,2,0,1]],[[1,2,1,2],[1,3,3,2],[2,0,2,2],[0,2,0,1]],[[1,2,1,1],[1,3,3,2],[2,0,2,3],[0,1,2,0]],[[1,2,1,1],[1,3,3,3],[2,0,2,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,2],[2,0,2,2],[0,1,2,0]],[[1,2,1,2],[1,3,3,2],[2,0,2,2],[0,1,2,0]],[[1,2,1,1],[1,3,3,2],[2,0,2,2],[0,1,1,2]],[[1,2,1,1],[1,3,3,2],[2,0,2,3],[0,1,1,1]],[[1,2,1,1],[1,3,3,3],[2,0,2,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,2],[2,0,2,2],[0,1,1,1]],[[1,2,1,2],[1,3,3,2],[2,0,2,2],[0,1,1,1]],[[1,2,1,1],[1,3,3,2],[2,0,2,2],[0,0,2,2]],[[1,2,1,1],[1,3,3,2],[2,0,2,3],[0,0,2,1]],[[1,2,1,1],[1,3,3,3],[2,0,2,2],[0,0,2,1]],[[1,2,1,1],[1,3,4,2],[2,0,2,2],[0,0,2,1]],[[1,2,1,2],[1,3,3,2],[2,0,2,2],[0,0,2,1]],[[1,2,1,1],[1,3,4,2],[2,0,2,0],[1,2,2,0]],[[1,2,1,1],[1,4,3,2],[2,0,2,0],[1,2,2,0]],[[1,3,1,1],[1,3,3,2],[2,0,2,0],[1,2,2,0]],[[2,2,1,1],[1,3,3,2],[2,0,2,0],[1,2,2,0]],[[1,2,1,1],[1,3,3,2],[2,0,1,2],[1,0,2,2]],[[1,2,1,1],[1,3,3,2],[2,0,1,3],[1,0,2,1]],[[1,2,1,1],[1,3,3,3],[2,0,1,2],[1,0,2,1]],[[1,2,1,1],[1,3,4,2],[2,0,1,2],[1,0,2,1]],[[1,2,1,2],[1,3,3,2],[2,0,1,2],[1,0,2,1]],[[1,2,1,1],[1,3,3,2],[2,0,1,2],[0,1,2,2]],[[1,2,1,1],[1,3,3,2],[2,0,1,3],[0,1,2,1]],[[1,2,1,1],[1,3,3,3],[2,0,1,2],[0,1,2,1]],[[1,2,1,1],[1,3,4,2],[2,0,1,2],[0,1,2,1]],[[1,2,1,2],[1,3,3,2],[2,0,1,2],[0,1,2,1]],[[1,2,1,1],[1,3,3,2],[1,4,3,0],[1,1,0,0]],[[1,2,1,1],[1,3,4,2],[1,3,3,0],[1,1,0,0]],[[1,2,1,1],[1,4,3,2],[1,3,3,0],[1,1,0,0]],[[1,3,1,1],[1,3,3,2],[1,3,3,0],[1,1,0,0]],[[2,2,1,1],[1,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,2,1,1],[1,3,3,2],[1,4,3,0],[0,2,0,0]],[[1,2,1,1],[1,3,4,2],[1,3,3,0],[0,2,0,0]],[[1,2,1,1],[1,4,3,2],[1,3,3,0],[0,2,0,0]],[[1,3,1,1],[1,3,3,2],[1,3,3,0],[0,2,0,0]],[[2,2,1,1],[1,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,2,1,1],[1,3,4,2],[1,3,3,0],[0,0,2,0]],[[1,2,1,1],[1,4,3,2],[1,3,3,0],[0,0,2,0]],[[1,3,1,1],[1,3,3,2],[1,3,3,0],[0,0,2,0]],[[2,2,1,1],[1,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,2,1,1],[1,3,4,2],[1,3,3,0],[0,0,1,1]],[[1,2,1,1],[1,4,3,2],[1,3,3,0],[0,0,1,1]],[[1,3,1,1],[1,3,3,2],[1,3,3,0],[0,0,1,1]],[[2,2,1,1],[1,3,3,2],[1,3,3,0],[0,0,1,1]],[[1,2,1,1],[1,3,3,2],[1,4,2,0],[1,2,0,0]],[[1,2,1,1],[1,3,4,2],[1,3,2,0],[1,2,0,0]],[[1,2,1,1],[1,4,3,2],[1,3,2,0],[1,2,0,0]],[[1,3,1,1],[1,3,3,2],[1,3,2,0],[1,2,0,0]],[[2,2,1,1],[1,3,3,2],[1,3,2,0],[1,2,0,0]],[[1,0,2,1],[2,2,0,2],[0,2,3,3],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[0,2,3,2],[1,3,2,1]],[[1,0,2,1],[2,2,0,2],[0,2,3,2],[1,2,3,1]],[[1,0,2,1],[2,2,0,2],[0,2,3,2],[1,2,2,2]],[[1,0,2,1],[2,2,0,2],[0,3,3,3],[1,1,2,1]],[[1,0,2,1],[2,2,0,2],[0,3,3,2],[1,1,3,1]],[[1,0,2,1],[2,2,0,2],[0,3,3,2],[1,1,2,2]],[[1,0,3,1],[2,2,0,2],[1,2,2,2],[1,2,2,1]],[[1,0,2,2],[2,2,0,2],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,3],[1,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,2,2,3],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,2,2,2],[2,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,2,2,2],[1,3,2,1]],[[1,0,2,1],[2,2,0,2],[1,2,2,2],[1,2,3,1]],[[1,0,2,1],[2,2,0,2],[1,2,2,2],[1,2,2,2]],[[1,0,2,1],[2,2,0,2],[1,2,4,1],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,2,3,1],[2,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,2,3,1],[1,3,2,1]],[[1,0,2,1],[2,2,0,2],[1,2,3,1],[1,2,3,1]],[[1,0,2,1],[2,2,0,2],[1,2,3,1],[1,2,2,2]],[[1,0,2,1],[2,2,0,2],[1,2,3,3],[0,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,2,3,2],[0,2,3,1]],[[1,0,2,1],[2,2,0,2],[1,2,3,2],[0,2,2,2]],[[1,0,3,1],[2,2,0,2],[1,2,3,2],[1,2,1,1]],[[1,0,2,2],[2,2,0,2],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,0,3],[1,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,0,2],[1,2,4,2],[1,2,1,1]],[[1,0,2,1],[2,2,0,2],[1,2,3,3],[1,2,1,1]],[[1,0,2,1],[2,2,0,2],[1,2,3,2],[1,2,1,2]],[[1,0,3,1],[2,2,0,2],[1,2,3,2],[1,2,2,0]],[[1,0,2,2],[2,2,0,2],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,3],[1,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[1,2,4,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[1,2,3,3],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[1,2,3,2],[2,2,2,0]],[[1,0,2,1],[2,2,0,2],[1,2,3,2],[1,3,2,0]],[[1,0,2,1],[2,2,0,2],[1,2,3,2],[1,2,3,0]],[[1,0,3,1],[2,2,0,2],[1,3,1,2],[1,2,2,1]],[[1,0,2,2],[2,2,0,2],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,3],[1,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,4,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,1,3],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,2,0,2],[1,3,1,2],[1,2,2,2]],[[1,0,2,1],[2,2,0,2],[1,4,2,1],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,2,0,2],[1,3,2,1],[1,2,2,2]],[[1,0,3,1],[2,2,0,2],[1,3,2,2],[1,1,2,1]],[[1,0,2,2],[2,2,0,2],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[2,2,0,3],[1,3,2,2],[1,1,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,2,3],[1,1,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,2,2],[1,1,3,1]],[[1,0,2,1],[2,2,0,2],[1,3,2,2],[1,1,2,2]],[[1,0,2,1],[2,2,0,2],[1,4,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[1,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,2,0,2],[1,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,2,0,2],[1,3,2,2],[1,2,3,0]],[[1,0,2,1],[2,2,0,2],[1,4,3,1],[1,1,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,4,1],[1,1,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,1],[1,1,3,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,1],[1,1,2,2]],[[1,0,2,1],[2,2,0,2],[1,4,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,0,2],[1,3,4,1],[1,2,1,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,1],[1,3,1,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,3],[0,1,2,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,2],[0,1,3,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,2],[0,1,2,2]],[[1,0,3,1],[2,2,0,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,2],[2,2,0,2],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,2,0,3],[1,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,2,0,2],[1,4,3,2],[1,1,1,1]],[[1,0,2,1],[2,2,0,2],[1,3,4,2],[1,1,1,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,3],[1,1,1,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,2],[1,1,1,2]],[[1,0,3,1],[2,2,0,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,2],[2,2,0,2],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,0,3],[1,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,0,2],[1,4,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,0,2],[1,3,4,2],[1,1,2,0]],[[1,0,2,1],[2,2,0,2],[1,3,3,3],[1,1,2,0]],[[1,0,2,1],[2,2,0,2],[1,3,3,2],[1,1,3,0]],[[1,0,3,1],[2,2,0,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,2],[2,2,0,2],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,0,3],[1,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,0,2],[1,4,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,0,2],[1,3,4,2],[1,2,0,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,3],[1,2,0,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,2,0,2],[1,3,3,2],[1,2,0,2]],[[1,0,3,1],[2,2,0,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,2],[2,2,0,2],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,0,3],[1,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,0,2],[1,4,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,0,2],[1,3,4,2],[1,2,1,0]],[[1,0,2,1],[2,2,0,2],[1,3,3,3],[1,2,1,0]],[[1,0,2,1],[2,2,0,2],[1,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,2,0,2],[1,3,3,2],[1,3,1,0]],[[2,0,2,1],[2,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,0,3,1],[2,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,2],[2,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[3,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,3],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[3,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,1,2,3],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,1,2,2],[2,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,1,2,2],[1,3,2,1]],[[1,0,2,1],[2,2,0,2],[2,1,2,2],[1,2,3,1]],[[1,0,2,1],[2,2,0,2],[2,1,2,2],[1,2,2,2]],[[2,0,2,1],[2,2,0,2],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[3,2,0,2],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[3,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,1,4,1],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,1,3,1],[2,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,1,3,1],[1,3,2,1]],[[1,0,2,1],[2,2,0,2],[2,1,3,1],[1,2,3,1]],[[1,0,2,1],[2,2,0,2],[2,1,3,1],[1,2,2,2]],[[1,0,3,1],[2,2,0,2],[2,1,3,2],[1,2,1,1]],[[1,0,2,2],[2,2,0,2],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,0,3],[2,1,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,0,2],[2,1,4,2],[1,2,1,1]],[[1,0,2,1],[2,2,0,2],[2,1,3,3],[1,2,1,1]],[[1,0,2,1],[2,2,0,2],[2,1,3,2],[1,2,1,2]],[[2,0,2,1],[2,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,0,3,1],[2,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,2],[2,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[3,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,3],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[3,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,1,4,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,1,3,3],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,1,3,2],[2,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,1,3,2],[1,3,2,0]],[[1,0,2,1],[2,2,0,2],[2,1,3,2],[1,2,3,0]],[[2,0,2,1],[2,2,0,2],[2,2,1,2],[1,2,2,1]],[[1,0,3,1],[2,2,0,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,2],[2,2,0,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[3,2,0,2],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,3],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[3,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,1,3],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,1,2],[2,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,1,2],[1,3,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,1,2],[1,2,3,1]],[[1,0,2,1],[2,2,0,2],[2,2,1,2],[1,2,2,2]],[[2,0,2,1],[2,2,0,2],[2,2,2,1],[1,2,2,1]],[[1,0,2,1],[3,2,0,2],[2,2,2,1],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[3,2,2,1],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,2,1],[2,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,2,1],[1,3,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,2,1],[1,2,3,1]],[[1,0,2,1],[2,2,0,2],[2,2,2,1],[1,2,2,2]],[[1,0,3,1],[2,2,0,2],[2,2,2,2],[0,2,2,1]],[[1,0,2,2],[2,2,0,2],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[2,2,0,3],[2,2,2,2],[0,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,2,3],[0,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,2,2],[0,3,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,2,2],[0,2,3,1]],[[1,0,2,1],[2,2,0,2],[2,2,2,2],[0,2,2,2]],[[2,0,2,1],[2,2,0,2],[2,2,2,2],[1,2,2,0]],[[1,0,2,1],[3,2,0,2],[2,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[3,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,2,2,2],[2,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,2,2,2],[1,3,2,0]],[[1,0,2,1],[2,2,0,2],[2,2,2,2],[1,2,3,0]],[[1,0,2,1],[2,2,0,2],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,3,1],[0,3,2,1]],[[1,0,2,1],[2,2,0,2],[2,2,3,1],[0,2,3,1]],[[1,0,2,1],[2,2,0,2],[2,2,3,1],[0,2,2,2]],[[2,0,2,1],[2,2,0,2],[2,2,3,1],[1,2,1,1]],[[1,0,2,1],[3,2,0,2],[2,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,0,2],[3,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,0,2],[2,2,3,1],[2,2,1,1]],[[1,0,2,1],[2,2,0,2],[2,2,3,1],[1,3,1,1]],[[1,0,3,1],[2,2,0,2],[2,2,3,2],[0,2,1,1]],[[1,0,2,2],[2,2,0,2],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,2,0,3],[2,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,2,0,2],[2,2,4,2],[0,2,1,1]],[[1,0,2,1],[2,2,0,2],[2,2,3,3],[0,2,1,1]],[[1,0,2,1],[2,2,0,2],[2,2,3,2],[0,2,1,2]],[[1,0,3,1],[2,2,0,2],[2,2,3,2],[0,2,2,0]],[[1,0,2,2],[2,2,0,2],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,2,0,3],[2,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,2,4,2],[0,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,2,3,3],[0,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,2,3,2],[0,3,2,0]],[[1,0,2,1],[2,2,0,2],[2,2,3,2],[0,2,3,0]],[[2,0,2,1],[2,2,0,2],[2,2,3,2],[1,2,0,1]],[[1,0,2,1],[3,2,0,2],[2,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,0,2],[3,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,0,2],[2,2,3,2],[2,2,0,1]],[[1,0,2,1],[2,2,0,2],[2,2,3,2],[1,3,0,1]],[[2,0,2,1],[2,2,0,2],[2,2,3,2],[1,2,1,0]],[[1,0,2,1],[3,2,0,2],[2,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,0,2],[3,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,0,2],[2,2,3,2],[2,2,1,0]],[[1,0,2,1],[2,2,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[1,3,3,2],[1,4,2,0],[1,1,1,0]],[[1,2,1,1],[1,3,4,2],[1,3,2,0],[1,1,1,0]],[[1,2,1,1],[1,4,3,2],[1,3,2,0],[1,1,1,0]],[[1,3,1,1],[1,3,3,2],[1,3,2,0],[1,1,1,0]],[[2,2,1,1],[1,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,2,1,1],[1,3,3,2],[1,4,2,0],[1,1,0,1]],[[1,2,1,1],[1,3,4,2],[1,3,2,0],[1,1,0,1]],[[1,2,1,1],[1,4,3,2],[1,3,2,0],[1,1,0,1]],[[1,3,1,1],[1,3,3,2],[1,3,2,0],[1,1,0,1]],[[2,2,1,1],[1,3,3,2],[1,3,2,0],[1,1,0,1]],[[2,0,2,1],[2,2,0,2],[2,3,0,2],[1,2,2,1]],[[1,0,2,1],[3,2,0,2],[2,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[3,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,0,2],[2,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,0,2],[1,3,2,1]],[[1,0,2,1],[3,2,0,2],[2,3,1,1],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[3,3,1,1],[1,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,1,1],[2,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,1,1],[1,3,2,1]],[[2,0,2,1],[2,2,0,2],[2,3,1,2],[0,2,2,1]],[[1,0,3,1],[2,2,0,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,2],[2,2,0,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[3,2,0,2],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,0,3],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,0,2],[3,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,4,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,1,3],[0,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,1,2],[0,3,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,1,2],[0,2,3,1]],[[1,0,2,1],[2,2,0,2],[2,3,1,2],[0,2,2,2]],[[2,0,2,1],[2,2,0,2],[2,3,1,2],[1,1,2,1]],[[1,0,2,1],[3,2,0,2],[2,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,2,0,2],[3,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,2,0,2],[2,4,1,2],[1,1,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,1,2],[2,1,2,1]],[[1,0,2,1],[3,2,0,2],[2,3,1,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[3,3,1,2],[1,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,1,2],[2,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,1,2],[1,3,2,0]],[[2,0,2,1],[2,2,0,2],[2,3,2,1],[0,2,2,1]],[[1,0,2,1],[3,2,0,2],[2,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,2,0,2],[3,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,4,2,1],[0,2,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,2,1],[0,3,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,2,1],[0,2,3,1]],[[1,0,2,1],[2,2,0,2],[2,3,2,1],[0,2,2,2]],[[2,0,2,1],[2,2,0,2],[2,3,2,1],[1,1,2,1]],[[1,0,2,1],[3,2,0,2],[2,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,2,0,2],[3,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,2,0,2],[2,4,2,1],[1,1,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,2,1],[2,1,2,1]],[[1,0,3,1],[2,2,0,2],[2,3,2,2],[0,1,2,1]],[[1,0,2,2],[2,2,0,2],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[2,2,0,3],[2,3,2,2],[0,1,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,2,3],[0,1,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,2,2],[0,1,3,1]],[[1,0,2,1],[2,2,0,2],[2,3,2,2],[0,1,2,2]],[[2,0,2,1],[2,2,0,2],[2,3,2,2],[0,2,2,0]],[[1,0,2,1],[3,2,0,2],[2,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,2,0,2],[3,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,4,2,2],[0,2,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,2,2],[0,3,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,2,2],[0,2,3,0]],[[1,0,3,1],[2,2,0,2],[2,3,2,2],[1,0,2,1]],[[1,0,2,2],[2,2,0,2],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[2,2,0,3],[2,3,2,2],[1,0,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,2,3],[1,0,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,2,2],[1,0,3,1]],[[1,0,2,1],[2,2,0,2],[2,3,2,2],[1,0,2,2]],[[2,0,2,1],[2,2,0,2],[2,3,2,2],[1,1,2,0]],[[1,0,2,1],[3,2,0,2],[2,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,2,0,2],[3,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,2,0,2],[2,4,2,2],[1,1,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[1,3,3,2],[1,4,2,0],[1,0,2,0]],[[1,2,1,1],[1,3,4,2],[1,3,2,0],[1,0,2,0]],[[1,2,1,1],[1,4,3,2],[1,3,2,0],[1,0,2,0]],[[1,3,1,1],[1,3,3,2],[1,3,2,0],[1,0,2,0]],[[2,2,1,1],[1,3,3,2],[1,3,2,0],[1,0,2,0]],[[2,0,2,1],[2,2,0,2],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[3,2,0,2],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,2,0,2],[3,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,2,0,2],[2,4,3,1],[0,1,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,4,1],[0,1,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,1],[0,1,2,2]],[[2,0,2,1],[2,2,0,2],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[3,2,0,2],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,0,2],[3,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,0,2],[2,4,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,0,2],[2,3,4,1],[0,2,1,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,1],[0,3,1,1]],[[2,0,2,1],[2,2,0,2],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[3,2,0,2],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,0,2],[3,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,0,2],[2,4,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,4,1],[1,0,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,1],[2,0,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,1],[1,0,3,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,1],[1,0,2,2]],[[2,0,2,1],[2,2,0,2],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[3,2,0,2],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,0,2],[3,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,0,2],[2,4,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,0,2],[2,3,4,1],[1,1,1,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,1],[2,1,1,1]],[[1,0,2,1],[3,2,0,2],[2,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,0,2],[3,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,0,2],[2,4,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[1,3,4,2],[1,3,2,0],[1,0,1,1]],[[1,2,1,1],[1,4,3,2],[1,3,2,0],[1,0,1,1]],[[1,3,1,1],[1,3,3,2],[1,3,2,0],[1,0,1,1]],[[2,2,1,1],[1,3,3,2],[1,3,2,0],[1,0,1,1]],[[1,0,3,1],[2,2,0,2],[2,3,3,2],[0,0,2,1]],[[1,0,2,2],[2,2,0,2],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,2,0,3],[2,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,4,2],[0,0,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,3],[0,0,2,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[0,0,2,2]],[[2,0,2,1],[2,2,0,2],[2,3,3,2],[0,1,1,1]],[[1,0,3,1],[2,2,0,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,2],[2,2,0,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[3,2,0,2],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,0,3],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,0,2],[3,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,0,2],[2,4,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,0,2],[2,3,4,2],[0,1,1,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,3],[0,1,1,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[0,1,1,2]],[[2,0,2,1],[2,2,0,2],[2,3,3,2],[0,1,2,0]],[[1,0,3,1],[2,2,0,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,2],[2,2,0,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[3,2,0,2],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,0,3],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,0,2],[3,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,0,2],[2,4,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,3,3],[0,1,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[0,1,3,0]],[[2,0,2,1],[2,2,0,2],[2,3,3,2],[0,2,0,1]],[[1,0,3,1],[2,2,0,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,2],[2,2,0,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[3,2,0,2],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,0,3],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,0,2],[3,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,0,2],[2,4,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,0,2],[2,3,4,2],[0,2,0,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,3],[0,2,0,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[0,3,0,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[0,2,0,2]],[[2,0,2,1],[2,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,0,3,1],[2,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,2],[2,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[3,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,0,3],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,0,2],[3,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,0,2],[2,4,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,0,2],[2,3,4,2],[0,2,1,0]],[[1,0,2,1],[2,2,0,2],[2,3,3,3],[0,2,1,0]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[1,3,3,2],[1,3,2,0],[0,3,1,0]],[[1,2,1,1],[1,3,3,2],[1,4,2,0],[0,2,1,0]],[[1,2,1,1],[1,3,4,2],[1,3,2,0],[0,2,1,0]],[[2,0,2,1],[2,2,0,2],[2,3,3,2],[1,0,1,1]],[[1,0,3,1],[2,2,0,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,2],[2,2,0,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[3,2,0,2],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,0,3],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,0,2],[3,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,0,2],[2,4,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,0,2],[2,3,4,2],[1,0,1,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,3],[1,0,1,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[2,0,1,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[1,0,1,2]],[[2,0,2,1],[2,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,0,3,1],[2,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,2],[2,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[3,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,0,3],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,0,2],[3,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,0,2],[2,4,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,3,3],[1,0,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[2,0,2,0]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[1,0,3,0]],[[2,0,2,1],[2,2,0,2],[2,3,3,2],[1,1,0,1]],[[1,0,3,1],[2,2,0,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,2],[2,2,0,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[3,2,0,2],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,0,3],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,0,2],[3,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,0,2],[2,4,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,0,2],[2,3,4,2],[1,1,0,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,3],[1,1,0,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[2,1,0,1]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[1,1,0,2]],[[2,0,2,1],[2,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,0,3,1],[2,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,2],[2,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[3,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,0,3],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,0,2],[3,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,0,2],[2,4,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,0,2],[2,3,4,2],[1,1,1,0]],[[1,0,2,1],[2,2,0,2],[2,3,3,3],[1,1,1,0]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[1,4,3,2],[1,3,2,0],[0,2,1,0]],[[1,3,1,1],[1,3,3,2],[1,3,2,0],[0,2,1,0]],[[2,2,1,1],[1,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,2,1,1],[1,3,3,2],[1,4,2,0],[0,2,0,1]],[[1,2,1,1],[1,3,4,2],[1,3,2,0],[0,2,0,1]],[[1,2,1,1],[1,4,3,2],[1,3,2,0],[0,2,0,1]],[[1,3,1,1],[1,3,3,2],[1,3,2,0],[0,2,0,1]],[[2,2,1,1],[1,3,3,2],[1,3,2,0],[0,2,0,1]],[[2,0,2,1],[2,2,0,2],[2,3,3,2],[1,2,0,0]],[[1,0,2,1],[3,2,0,2],[2,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,2,0,2],[3,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,2,0,2],[2,4,3,2],[1,2,0,0]],[[1,0,2,1],[2,2,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[1,3,3,2],[1,4,2,0],[0,1,2,0]],[[1,2,1,1],[1,3,4,2],[1,3,2,0],[0,1,2,0]],[[1,2,1,1],[1,4,3,2],[1,3,2,0],[0,1,2,0]],[[1,3,1,1],[1,3,3,2],[1,3,2,0],[0,1,2,0]],[[2,2,1,1],[1,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,2,1,1],[1,3,4,2],[1,3,2,0],[0,1,1,1]],[[1,2,1,1],[1,4,3,2],[1,3,2,0],[0,1,1,1]],[[1,3,1,1],[1,3,3,2],[1,3,2,0],[0,1,1,1]],[[2,2,1,1],[1,3,3,2],[1,3,2,0],[0,1,1,1]],[[1,0,2,1],[2,2,1,0],[1,4,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,1,0],[1,3,3,1],[2,2,2,1]],[[1,0,2,1],[2,2,1,0],[1,3,3,1],[1,3,2,1]],[[1,0,2,1],[2,2,1,0],[1,3,3,1],[1,2,3,1]],[[1,0,2,1],[2,2,1,0],[1,3,3,1],[1,2,2,2]],[[1,0,2,1],[2,2,1,0],[1,4,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,1,0],[1,3,3,2],[2,2,2,0]],[[1,0,2,1],[2,2,1,0],[1,3,3,2],[1,3,2,0]],[[1,0,2,1],[2,2,1,0],[1,3,3,2],[1,2,3,0]],[[1,0,2,1],[3,2,1,0],[2,2,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,1,0],[3,2,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,1,0],[2,2,3,1],[2,2,2,1]],[[1,0,2,1],[2,2,1,0],[2,2,3,1],[1,3,2,1]],[[1,0,2,1],[2,2,1,0],[2,2,3,1],[1,2,3,1]],[[1,0,2,1],[2,2,1,0],[2,2,3,1],[1,2,2,2]],[[1,0,2,1],[3,2,1,0],[2,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,1,0],[3,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,1,0],[2,2,3,2],[2,2,2,0]],[[1,0,2,1],[2,2,1,0],[2,2,3,2],[1,3,2,0]],[[1,0,2,1],[2,2,1,0],[2,2,3,2],[1,2,3,0]],[[1,0,2,1],[3,2,1,0],[2,3,3,1],[0,2,2,1]],[[1,0,2,1],[2,2,1,0],[3,3,3,1],[0,2,2,1]],[[1,0,2,1],[2,2,1,0],[2,4,3,1],[0,2,2,1]],[[1,0,2,1],[2,2,1,0],[2,3,3,1],[0,3,2,1]],[[1,0,2,1],[2,2,1,0],[2,3,3,1],[0,2,3,1]],[[1,0,2,1],[2,2,1,0],[2,3,3,1],[0,2,2,2]],[[1,0,2,1],[3,2,1,0],[2,3,3,1],[1,1,2,1]],[[1,0,2,1],[2,2,1,0],[3,3,3,1],[1,1,2,1]],[[1,0,2,1],[2,2,1,0],[2,4,3,1],[1,1,2,1]],[[1,0,2,1],[2,2,1,0],[2,3,3,1],[2,1,2,1]],[[1,0,2,1],[3,2,1,0],[2,3,3,2],[0,2,2,0]],[[1,0,2,1],[2,2,1,0],[3,3,3,2],[0,2,2,0]],[[1,0,2,1],[2,2,1,0],[2,4,3,2],[0,2,2,0]],[[1,0,2,1],[2,2,1,0],[2,3,3,2],[0,3,2,0]],[[1,0,2,1],[2,2,1,0],[2,3,3,2],[0,2,3,0]],[[1,0,2,1],[3,2,1,0],[2,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,1,0],[3,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,1,0],[2,4,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,1,0],[2,3,3,2],[2,1,2,0]],[[1,0,2,2],[2,2,1,2],[0,1,3,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,3],[0,1,3,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,1,3,3],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,1,3,2],[1,2,3,1]],[[1,0,2,1],[2,2,1,2],[0,1,3,2],[1,2,2,2]],[[1,0,3,1],[2,2,1,2],[0,2,2,2],[1,2,2,1]],[[1,0,2,2],[2,2,1,2],[0,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,3],[0,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,2,2,3],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,2,2,2],[2,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,2,2,2],[1,3,2,1]],[[1,0,2,1],[2,2,1,2],[0,2,2,2],[1,2,3,1]],[[1,0,2,1],[2,2,1,2],[0,2,2,2],[1,2,2,2]],[[1,0,2,1],[2,2,1,2],[0,2,4,1],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,2,3,1],[2,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,2,3,1],[1,3,2,1]],[[1,0,2,1],[2,2,1,2],[0,2,3,1],[1,2,3,1]],[[1,0,2,1],[2,2,1,2],[0,2,3,1],[1,2,2,2]],[[1,0,3,1],[2,2,1,2],[0,2,3,2],[1,2,1,1]],[[1,0,2,2],[2,2,1,2],[0,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,1,3],[0,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,1,2],[0,2,4,2],[1,2,1,1]],[[1,0,2,1],[2,2,1,2],[0,2,3,3],[1,2,1,1]],[[1,0,2,1],[2,2,1,2],[0,2,3,2],[1,2,1,2]],[[1,0,3,1],[2,2,1,2],[0,2,3,2],[1,2,2,0]],[[1,0,2,2],[2,2,1,2],[0,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,1,3],[0,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,1,2],[0,2,4,2],[1,2,2,0]],[[1,0,2,1],[2,2,1,2],[0,2,3,3],[1,2,2,0]],[[1,0,2,1],[2,2,1,2],[0,2,3,2],[2,2,2,0]],[[1,0,2,1],[2,2,1,2],[0,2,3,2],[1,3,2,0]],[[1,0,2,1],[2,2,1,2],[0,2,3,2],[1,2,3,0]],[[1,0,3,1],[2,2,1,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,2],[2,2,1,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,3],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,4,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,1,3],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,2,1,2],[0,3,1,2],[1,2,2,2]],[[1,0,2,1],[2,2,1,2],[0,4,2,1],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,2,1,2],[0,3,2,1],[1,2,2,2]],[[1,0,3,1],[2,2,1,2],[0,3,2,2],[1,1,2,1]],[[1,0,2,2],[2,2,1,2],[0,3,2,2],[1,1,2,1]],[[1,0,2,1],[2,2,1,3],[0,3,2,2],[1,1,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,2,3],[1,1,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,2,2],[1,1,3,1]],[[1,0,2,1],[2,2,1,2],[0,3,2,2],[1,1,2,2]],[[1,0,2,1],[2,2,1,2],[0,4,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,1,2],[0,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,2,1,2],[0,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,2,1,2],[0,3,2,2],[1,2,3,0]],[[1,0,2,1],[2,2,1,2],[0,4,3,1],[1,1,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,4,1],[1,1,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,1],[1,1,3,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,1],[1,1,2,2]],[[1,0,2,1],[2,2,1,2],[0,4,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,1,2],[0,3,4,1],[1,2,1,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,1],[1,3,1,1]],[[1,0,3,1],[2,2,1,2],[0,3,3,2],[1,0,2,1]],[[1,0,2,2],[2,2,1,2],[0,3,3,2],[1,0,2,1]],[[1,0,2,1],[2,2,1,3],[0,3,3,2],[1,0,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,4,2],[1,0,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,3],[1,0,2,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,2],[1,0,2,2]],[[1,0,3,1],[2,2,1,2],[0,3,3,2],[1,1,1,1]],[[1,0,2,2],[2,2,1,2],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,2,1,3],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,2,1,2],[0,4,3,2],[1,1,1,1]],[[1,0,2,1],[2,2,1,2],[0,3,4,2],[1,1,1,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,3],[1,1,1,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,2],[1,1,1,2]],[[1,0,3,1],[2,2,1,2],[0,3,3,2],[1,1,2,0]],[[1,0,2,2],[2,2,1,2],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,1,3],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,1,2],[0,4,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,1,2],[0,3,4,2],[1,1,2,0]],[[1,0,2,1],[2,2,1,2],[0,3,3,3],[1,1,2,0]],[[1,0,2,1],[2,2,1,2],[0,3,3,2],[1,1,3,0]],[[1,0,3,1],[2,2,1,2],[0,3,3,2],[1,2,0,1]],[[1,0,2,2],[2,2,1,2],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,1,3],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,1,2],[0,4,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,1,2],[0,3,4,2],[1,2,0,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,3],[1,2,0,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,2,1,2],[0,3,3,2],[1,2,0,2]],[[1,0,3,1],[2,2,1,2],[0,3,3,2],[1,2,1,0]],[[1,0,2,2],[2,2,1,2],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,1,3],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,1,2],[0,4,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,1,2],[0,3,4,2],[1,2,1,0]],[[1,0,2,1],[2,2,1,2],[0,3,3,3],[1,2,1,0]],[[1,0,2,1],[2,2,1,2],[0,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,2,1,2],[0,3,3,2],[1,3,1,0]],[[1,0,2,2],[2,2,1,2],[1,1,3,2],[0,2,2,1]],[[1,0,2,1],[2,2,1,3],[1,1,3,2],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,1,3,3],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,1,3,2],[0,2,3,1]],[[1,0,2,1],[2,2,1,2],[1,1,3,2],[0,2,2,2]],[[1,0,3,1],[2,2,1,2],[1,2,2,2],[0,2,2,1]],[[1,0,2,2],[2,2,1,2],[1,2,2,2],[0,2,2,1]],[[1,0,2,1],[2,2,1,3],[1,2,2,2],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,2,2,3],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,2,2,2],[0,3,2,1]],[[1,0,2,1],[2,2,1,2],[1,2,2,2],[0,2,3,1]],[[1,0,2,1],[2,2,1,2],[1,2,2,2],[0,2,2,2]],[[1,0,2,1],[2,2,1,2],[1,2,4,1],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,2,3,1],[0,3,2,1]],[[1,0,2,1],[2,2,1,2],[1,2,3,1],[0,2,3,1]],[[1,0,2,1],[2,2,1,2],[1,2,3,1],[0,2,2,2]],[[1,0,3,1],[2,2,1,2],[1,2,3,2],[0,2,1,1]],[[1,0,2,2],[2,2,1,2],[1,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,2,1,3],[1,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,2,1,2],[1,2,4,2],[0,2,1,1]],[[1,0,2,1],[2,2,1,2],[1,2,3,3],[0,2,1,1]],[[1,0,2,1],[2,2,1,2],[1,2,3,2],[0,2,1,2]],[[1,0,3,1],[2,2,1,2],[1,2,3,2],[0,2,2,0]],[[1,0,2,2],[2,2,1,2],[1,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,2,1,3],[1,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,2,1,2],[1,2,4,2],[0,2,2,0]],[[1,0,2,1],[2,2,1,2],[1,2,3,3],[0,2,2,0]],[[1,0,2,1],[2,2,1,2],[1,2,3,2],[0,3,2,0]],[[1,0,2,1],[2,2,1,2],[1,2,3,2],[0,2,3,0]],[[1,0,3,1],[2,2,1,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,2],[2,2,1,2],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,3],[1,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,4,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,0,3],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,0,2],[2,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,0,2],[1,3,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,0,2],[1,2,3,1]],[[1,0,2,1],[2,2,1,2],[1,3,0,2],[1,2,2,2]],[[1,0,3,1],[2,2,1,2],[1,3,1,2],[0,2,2,1]],[[1,0,2,2],[2,2,1,2],[1,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,1,3],[1,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,4,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,1,3],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,1,2],[0,3,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,1,2],[0,2,3,1]],[[1,0,2,1],[2,2,1,2],[1,3,1,2],[0,2,2,2]],[[1,0,2,1],[2,2,1,2],[1,4,2,1],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,2,1],[0,3,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,2,1],[0,2,3,1]],[[1,0,2,1],[2,2,1,2],[1,3,2,1],[0,2,2,2]],[[1,0,3,1],[2,2,1,2],[1,3,2,2],[0,1,2,1]],[[1,0,2,2],[2,2,1,2],[1,3,2,2],[0,1,2,1]],[[1,0,2,1],[2,2,1,3],[1,3,2,2],[0,1,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,2,3],[0,1,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,2,2],[0,1,3,1]],[[1,0,2,1],[2,2,1,2],[1,3,2,2],[0,1,2,2]],[[1,0,2,1],[2,2,1,2],[1,4,2,2],[0,2,2,0]],[[1,0,2,1],[2,2,1,2],[1,3,2,2],[0,3,2,0]],[[1,0,2,1],[2,2,1,2],[1,3,2,2],[0,2,3,0]],[[1,0,3,1],[2,2,1,2],[1,3,2,2],[1,0,2,1]],[[1,0,2,2],[2,2,1,2],[1,3,2,2],[1,0,2,1]],[[1,0,2,1],[2,2,1,3],[1,3,2,2],[1,0,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,2,3],[1,0,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,2,2],[1,0,3,1]],[[1,0,2,1],[2,2,1,2],[1,3,2,2],[1,0,2,2]],[[1,0,2,1],[2,2,1,2],[1,4,3,1],[0,1,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,4,1],[0,1,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,1],[0,1,3,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,1],[0,1,2,2]],[[1,0,2,1],[2,2,1,2],[1,4,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,1,2],[1,3,4,1],[0,2,1,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,1],[0,3,1,1]],[[1,0,2,1],[2,2,1,2],[1,4,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,4,1],[1,0,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,1],[1,0,3,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,1],[1,0,2,2]],[[1,0,3,1],[2,2,1,2],[1,3,3,2],[0,0,2,1]],[[1,0,2,2],[2,2,1,2],[1,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,2,1,3],[1,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,4,2],[0,0,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,3],[0,0,2,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,2],[0,0,2,2]],[[1,0,3,1],[2,2,1,2],[1,3,3,2],[0,1,1,1]],[[1,0,2,2],[2,2,1,2],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,1,3],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,1,2],[1,4,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,1,2],[1,3,4,2],[0,1,1,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,3],[0,1,1,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,2],[0,1,1,2]],[[1,0,3,1],[2,2,1,2],[1,3,3,2],[0,1,2,0]],[[1,0,2,2],[2,2,1,2],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,1,3],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,1,2],[1,4,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,1,2],[1,3,4,2],[0,1,2,0]],[[1,0,2,1],[2,2,1,2],[1,3,3,3],[0,1,2,0]],[[1,0,2,1],[2,2,1,2],[1,3,3,2],[0,1,3,0]],[[1,0,3,1],[2,2,1,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,2],[2,2,1,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,1,3],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,1,2],[1,4,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,1,2],[1,3,4,2],[0,2,0,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,3],[0,2,0,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,2],[0,3,0,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,2],[0,2,0,2]],[[1,0,3,1],[2,2,1,2],[1,3,3,2],[0,2,1,0]],[[1,0,2,2],[2,2,1,2],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,1,3],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,1,2],[1,4,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,1,2],[1,3,4,2],[0,2,1,0]],[[1,0,2,1],[2,2,1,2],[1,3,3,3],[0,2,1,0]],[[1,0,2,1],[2,2,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[1,3,3,2],[1,4,1,0],[1,1,2,0]],[[1,2,1,1],[1,3,4,2],[1,3,1,0],[1,1,2,0]],[[1,2,1,1],[1,4,3,2],[1,3,1,0],[1,1,2,0]],[[1,3,1,1],[1,3,3,2],[1,3,1,0],[1,1,2,0]],[[2,2,1,1],[1,3,3,2],[1,3,1,0],[1,1,2,0]],[[1,0,3,1],[2,2,1,2],[1,3,3,2],[1,0,1,1]],[[1,0,2,2],[2,2,1,2],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,1,3],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,1,2],[1,4,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,1,2],[1,3,4,2],[1,0,1,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,3],[1,0,1,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,2],[1,0,1,2]],[[1,0,3,1],[2,2,1,2],[1,3,3,2],[1,0,2,0]],[[1,0,2,2],[2,2,1,2],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,1,3],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,1,2],[1,4,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,1,2],[1,3,4,2],[1,0,2,0]],[[1,0,2,1],[2,2,1,2],[1,3,3,3],[1,0,2,0]],[[1,0,2,1],[2,2,1,2],[1,3,3,2],[1,0,3,0]],[[1,0,3,1],[2,2,1,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,2],[2,2,1,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,1,3],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,1,2],[1,4,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,1,2],[1,3,4,2],[1,1,0,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,3],[1,1,0,1]],[[1,0,2,1],[2,2,1,2],[1,3,3,2],[1,1,0,2]],[[1,0,3,1],[2,2,1,2],[1,3,3,2],[1,1,1,0]],[[1,0,2,2],[2,2,1,2],[1,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,1,3],[1,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,1,2],[1,4,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,1,2],[1,3,4,2],[1,1,1,0]],[[1,0,2,1],[2,2,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[1,3,3,2],[1,3,1,0],[0,3,2,0]],[[1,2,1,1],[1,3,3,2],[1,4,1,0],[0,2,2,0]],[[1,2,1,1],[1,3,4,2],[1,3,1,0],[0,2,2,0]],[[1,2,1,1],[1,4,3,2],[1,3,1,0],[0,2,2,0]],[[1,3,1,1],[1,3,3,2],[1,3,1,0],[0,2,2,0]],[[2,2,1,1],[1,3,3,2],[1,3,1,0],[0,2,2,0]],[[2,0,2,1],[2,2,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,3,1],[2,2,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,2],[2,2,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[3,2,1,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,3],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[3,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,0,2,3],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,0,2,2],[2,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,0,2,2],[1,3,2,1]],[[1,0,2,1],[2,2,1,2],[2,0,2,2],[1,2,3,1]],[[1,0,2,1],[2,2,1,2],[2,0,2,2],[1,2,2,2]],[[2,0,2,1],[2,2,1,2],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[3,2,1,2],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[3,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,0,4,1],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,0,3,1],[2,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,0,3,1],[1,3,2,1]],[[1,0,2,1],[2,2,1,2],[2,0,3,1],[1,2,3,1]],[[1,0,2,1],[2,2,1,2],[2,0,3,1],[1,2,2,2]],[[1,0,3,1],[2,2,1,2],[2,0,3,2],[1,2,1,1]],[[1,0,2,2],[2,2,1,2],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,1,3],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,1,2],[2,0,4,2],[1,2,1,1]],[[1,0,2,1],[2,2,1,2],[2,0,3,3],[1,2,1,1]],[[1,0,2,1],[2,2,1,2],[2,0,3,2],[1,2,1,2]],[[2,0,2,1],[2,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,3,1],[2,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,2],[2,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[3,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,1,3],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,1,2],[3,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,1,2],[2,0,4,2],[1,2,2,0]],[[1,0,2,1],[2,2,1,2],[2,0,3,3],[1,2,2,0]],[[1,0,2,1],[2,2,1,2],[2,0,3,2],[2,2,2,0]],[[1,0,2,1],[2,2,1,2],[2,0,3,2],[1,3,2,0]],[[1,0,2,1],[2,2,1,2],[2,0,3,2],[1,2,3,0]],[[2,0,2,1],[2,2,1,2],[2,2,0,2],[1,2,2,1]],[[1,0,3,1],[2,2,1,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,2],[2,2,1,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[3,2,1,2],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,3],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[3,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,2,0,3],[1,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,2,0,2],[2,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,2,0,2],[1,3,2,1]],[[1,0,2,1],[2,2,1,2],[2,2,0,2],[1,2,3,1]],[[1,0,2,1],[2,2,1,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,1],[1,3,3,2],[1,2,3,3],[0,0,0,1]],[[1,2,1,1],[1,3,3,3],[1,2,3,2],[0,0,0,1]],[[2,0,2,1],[2,2,1,2],[2,3,0,2],[0,2,2,1]],[[1,0,3,1],[2,2,1,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,2],[2,2,1,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[3,2,1,2],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,1,3],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[3,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,4,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,3,0,3],[0,2,2,1]],[[1,0,2,1],[2,2,1,2],[2,3,0,2],[0,3,2,1]],[[1,0,2,1],[2,2,1,2],[2,3,0,2],[0,2,3,1]],[[1,0,2,1],[2,2,1,2],[2,3,0,2],[0,2,2,2]],[[2,0,2,1],[2,2,1,2],[2,3,0,2],[1,1,2,1]],[[1,0,2,1],[3,2,1,2],[2,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,2,1,2],[3,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,2,1,2],[2,4,0,2],[1,1,2,1]],[[1,0,2,1],[2,2,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,1],[1,3,4,2],[1,2,3,2],[0,0,0,1]],[[1,2,1,2],[1,3,3,2],[1,2,3,2],[0,0,0,1]],[[1,2,1,1],[1,3,3,3],[1,2,3,1],[0,0,2,0]],[[1,2,1,1],[1,3,4,2],[1,2,3,1],[0,0,2,0]],[[1,2,1,2],[1,3,3,2],[1,2,3,1],[0,0,2,0]],[[1,2,1,1],[1,3,3,3],[1,2,3,1],[0,0,1,1]],[[1,2,1,1],[1,3,4,2],[1,2,3,1],[0,0,1,1]],[[1,2,1,2],[1,3,3,2],[1,2,3,1],[0,0,1,1]],[[1,2,1,1],[1,3,4,2],[1,2,3,0],[1,1,1,0]],[[1,2,1,1],[1,4,3,2],[1,2,3,0],[1,1,1,0]],[[1,3,1,1],[1,3,3,2],[1,2,3,0],[1,1,1,0]],[[2,2,1,1],[1,3,3,2],[1,2,3,0],[1,1,1,0]],[[1,2,1,1],[1,3,4,2],[1,2,3,0],[1,1,0,1]],[[1,2,1,1],[1,4,3,2],[1,2,3,0],[1,1,0,1]],[[1,3,1,1],[1,3,3,2],[1,2,3,0],[1,1,0,1]],[[2,2,1,1],[1,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,2,1,1],[1,3,4,2],[1,2,3,0],[1,0,2,0]],[[1,2,1,1],[1,4,3,2],[1,2,3,0],[1,0,2,0]],[[1,3,1,1],[1,3,3,2],[1,2,3,0],[1,0,2,0]],[[2,2,1,1],[1,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,2,1,1],[1,3,4,2],[1,2,3,0],[1,0,1,1]],[[1,2,1,1],[1,4,3,2],[1,2,3,0],[1,0,1,1]],[[1,3,1,1],[1,3,3,2],[1,2,3,0],[1,0,1,1]],[[2,2,1,1],[1,3,3,2],[1,2,3,0],[1,0,1,1]],[[1,2,1,1],[1,3,4,2],[1,2,3,0],[0,2,1,0]],[[1,2,1,1],[1,4,3,2],[1,2,3,0],[0,2,1,0]],[[1,3,1,1],[1,3,3,2],[1,2,3,0],[0,2,1,0]],[[2,2,1,1],[1,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,2,1,1],[1,3,4,2],[1,2,3,0],[0,2,0,1]],[[1,2,1,1],[1,4,3,2],[1,2,3,0],[0,2,0,1]],[[1,3,1,1],[1,3,3,2],[1,2,3,0],[0,2,0,1]],[[2,2,1,1],[1,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,2,1,1],[1,3,4,2],[1,2,3,0],[0,1,2,0]],[[1,2,1,1],[1,4,3,2],[1,2,3,0],[0,1,2,0]],[[1,3,1,1],[1,3,3,2],[1,2,3,0],[0,1,2,0]],[[2,2,1,1],[1,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,2,1,1],[1,3,4,2],[1,2,3,0],[0,1,1,1]],[[1,2,1,1],[1,4,3,2],[1,2,3,0],[0,1,1,1]],[[1,3,1,1],[1,3,3,2],[1,2,3,0],[0,1,1,1]],[[2,2,1,1],[1,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,2,1,1],[1,3,3,3],[1,2,2,2],[0,0,2,0]],[[1,2,1,1],[1,3,4,2],[1,2,2,2],[0,0,2,0]],[[1,2,1,2],[1,3,3,2],[1,2,2,2],[0,0,2,0]],[[1,2,1,1],[1,3,3,2],[1,2,2,3],[0,0,1,1]],[[1,2,1,1],[1,3,3,3],[1,2,2,2],[0,0,1,1]],[[1,2,1,1],[1,3,4,2],[1,2,2,2],[0,0,1,1]],[[1,2,1,2],[1,3,3,2],[1,2,2,2],[0,0,1,1]],[[1,0,2,1],[2,2,2,0],[1,2,2,3],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[1,2,2,2],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[1,2,2,2],[1,3,2,1]],[[1,0,2,1],[2,2,2,0],[1,2,2,2],[1,2,3,1]],[[1,0,2,1],[2,2,2,0],[1,2,2,2],[1,2,2,2]],[[1,0,2,1],[2,2,2,0],[1,2,4,1],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[1,2,3,1],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[1,2,3,1],[1,3,2,1]],[[1,0,2,1],[2,2,2,0],[1,2,3,1],[1,2,3,1]],[[1,0,2,1],[2,2,2,0],[1,2,3,1],[1,2,2,2]],[[1,0,2,1],[2,2,2,0],[1,2,4,2],[1,2,1,1]],[[1,0,2,1],[2,2,2,0],[1,2,3,3],[1,2,1,1]],[[1,0,2,1],[2,2,2,0],[1,2,3,2],[1,2,1,2]],[[1,0,2,1],[2,2,2,0],[1,2,4,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,0],[1,2,3,3],[1,2,2,0]],[[1,0,2,1],[2,2,2,0],[1,2,3,2],[2,2,2,0]],[[1,0,2,1],[2,2,2,0],[1,2,3,2],[1,3,2,0]],[[1,0,2,1],[2,2,2,0],[1,2,3,2],[1,2,3,0]],[[1,0,2,1],[2,2,2,0],[1,4,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,1,3],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,2,2,0],[1,3,1,2],[1,2,2,2]],[[1,0,2,1],[2,2,2,0],[1,4,2,1],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,2,2,0],[1,3,2,1],[1,2,2,2]],[[1,0,2,1],[2,2,2,0],[1,3,2,3],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,2,2],[1,1,3,1]],[[1,0,2,1],[2,2,2,0],[1,3,2,2],[1,1,2,2]],[[1,0,2,1],[2,2,2,0],[1,4,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,0],[1,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,2,2,0],[1,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,2,2,0],[1,3,2,2],[1,2,3,0]],[[1,0,2,1],[2,2,2,0],[1,4,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,0],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,0],[1,3,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,0],[1,2,3,1]],[[1,0,2,1],[2,2,2,0],[1,4,3,1],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,4,1],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,1],[1,1,3,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,1],[1,1,2,2]],[[1,0,2,1],[2,2,2,0],[1,4,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,2,0],[1,3,4,1],[1,2,1,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,1],[1,3,1,1]],[[1,0,2,1],[2,2,2,0],[1,4,3,2],[1,1,1,1]],[[1,0,2,1],[2,2,2,0],[1,3,4,2],[1,1,1,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,3],[1,1,1,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,2],[1,1,1,2]],[[1,0,2,1],[2,2,2,0],[1,4,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,2,0],[1,3,4,2],[1,1,2,0]],[[1,0,2,1],[2,2,2,0],[1,3,3,3],[1,1,2,0]],[[1,0,2,1],[2,2,2,0],[1,3,3,2],[1,1,3,0]],[[1,0,2,1],[2,2,2,0],[1,4,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,2,0],[1,3,4,2],[1,2,0,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,3],[1,2,0,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,2,2,0],[1,3,3,2],[1,2,0,2]],[[1,0,2,1],[2,2,2,0],[1,4,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,2,0],[1,3,4,2],[1,2,1,0]],[[1,0,2,1],[2,2,2,0],[1,3,3,3],[1,2,1,0]],[[1,0,2,1],[2,2,2,0],[1,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,2,2,0],[1,3,3,2],[1,3,1,0]],[[2,0,2,1],[2,2,2,0],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[3,2,2,0],[2,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[3,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,1,2,3],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,1,2,2],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,1,2,2],[1,3,2,1]],[[1,0,2,1],[2,2,2,0],[2,1,2,2],[1,2,3,1]],[[1,0,2,1],[2,2,2,0],[2,1,2,2],[1,2,2,2]],[[2,0,2,1],[2,2,2,0],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[3,2,2,0],[2,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[3,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,1,4,1],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,1,3,1],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,1,3,1],[1,3,2,1]],[[1,0,2,1],[2,2,2,0],[2,1,3,1],[1,2,3,1]],[[1,0,2,1],[2,2,2,0],[2,1,3,1],[1,2,2,2]],[[1,0,2,1],[2,2,2,0],[2,1,4,2],[1,2,1,1]],[[1,0,2,1],[2,2,2,0],[2,1,3,3],[1,2,1,1]],[[1,0,2,1],[2,2,2,0],[2,1,3,2],[1,2,1,2]],[[2,0,2,1],[2,2,2,0],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[3,2,2,0],[2,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,0],[3,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,1,4,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,1,3,3],[1,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,1,3,2],[2,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,1,3,2],[1,3,2,0]],[[1,0,2,1],[2,2,2,0],[2,1,3,2],[1,2,3,0]],[[2,0,2,1],[2,2,2,0],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[3,2,2,0],[2,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[3,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,1,3],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,1,2],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,1,2],[1,3,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,1,2],[1,2,3,1]],[[1,0,2,1],[2,2,2,0],[2,2,1,2],[1,2,2,2]],[[2,0,2,1],[2,2,2,0],[2,2,2,1],[1,2,2,1]],[[1,0,2,1],[3,2,2,0],[2,2,2,1],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[3,2,2,1],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,2,1],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,2,1],[1,3,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,2,1],[1,2,3,1]],[[1,0,2,1],[2,2,2,0],[2,2,2,1],[1,2,2,2]],[[1,0,2,1],[2,2,2,0],[2,2,2,3],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,2,2],[0,3,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,2,2],[0,2,3,1]],[[1,0,2,1],[2,2,2,0],[2,2,2,2],[0,2,2,2]],[[2,0,2,1],[2,2,2,0],[2,2,2,2],[1,2,2,0]],[[1,0,2,1],[3,2,2,0],[2,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,0],[3,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,2,2,2],[2,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,2,2,2],[1,3,2,0]],[[1,0,2,1],[2,2,2,0],[2,2,2,2],[1,2,3,0]],[[2,0,2,1],[2,2,2,0],[2,2,3,0],[1,2,2,1]],[[1,0,2,1],[3,2,2,0],[2,2,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[3,2,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,0],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,0],[1,3,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,0],[1,2,3,1]],[[1,0,2,1],[2,2,2,0],[2,2,4,1],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,1],[0,3,2,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,1],[0,2,3,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,1],[0,2,2,2]],[[2,0,2,1],[2,2,2,0],[2,2,3,1],[1,2,1,1]],[[1,0,2,1],[3,2,2,0],[2,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,2,0],[3,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,1],[2,2,1,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,1],[1,3,1,1]],[[1,0,2,1],[2,2,2,0],[2,2,4,2],[0,2,1,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,3],[0,2,1,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,2],[0,2,1,2]],[[1,0,2,1],[2,2,2,0],[2,2,4,2],[0,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,2,3,3],[0,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,2,3,2],[0,3,2,0]],[[1,0,2,1],[2,2,2,0],[2,2,3,2],[0,2,3,0]],[[2,0,2,1],[2,2,2,0],[2,2,3,2],[1,2,0,1]],[[1,0,2,1],[3,2,2,0],[2,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,2,0],[3,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,2],[2,2,0,1]],[[1,0,2,1],[2,2,2,0],[2,2,3,2],[1,3,0,1]],[[2,0,2,1],[2,2,2,0],[2,2,3,2],[1,2,1,0]],[[1,0,2,1],[3,2,2,0],[2,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,2,0],[3,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,2,0],[2,2,3,2],[2,2,1,0]],[[1,0,2,1],[2,2,2,0],[2,2,3,2],[1,3,1,0]],[[1,0,2,1],[3,2,2,0],[2,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[3,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,0,2],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,0,2],[1,3,2,1]],[[1,0,2,1],[3,2,2,0],[2,3,1,1],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[3,3,1,1],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,1,1],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,1,1],[1,3,2,1]],[[2,0,2,1],[2,2,2,0],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[3,2,2,0],[2,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[3,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,4,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,1,3],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,1,2],[0,3,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,1,2],[0,2,3,1]],[[1,0,2,1],[2,2,2,0],[2,3,1,2],[0,2,2,2]],[[2,0,2,1],[2,2,2,0],[2,3,1,2],[1,1,2,1]],[[1,0,2,1],[3,2,2,0],[2,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[3,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[2,4,1,2],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,1,2],[2,1,2,1]],[[1,0,2,1],[3,2,2,0],[2,3,1,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,0],[3,3,1,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,1,2],[2,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,1,2],[1,3,2,0]],[[1,0,2,1],[3,2,2,0],[2,3,2,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[3,3,2,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,2,0],[2,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,2,0],[1,3,2,1]],[[2,0,2,1],[2,2,2,0],[2,3,2,1],[0,2,2,1]],[[1,0,2,1],[3,2,2,0],[2,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[3,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,4,2,1],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,2,1],[0,3,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,2,1],[0,2,3,1]],[[1,0,2,1],[2,2,2,0],[2,3,2,1],[0,2,2,2]],[[2,0,2,1],[2,2,2,0],[2,3,2,1],[1,1,2,1]],[[1,0,2,1],[3,2,2,0],[2,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[3,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[2,4,2,1],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,2,1],[2,1,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,2,3],[0,1,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,2,2],[0,1,3,1]],[[1,0,2,1],[2,2,2,0],[2,3,2,2],[0,1,2,2]],[[2,0,2,1],[2,2,2,0],[2,3,2,2],[0,2,2,0]],[[1,0,2,1],[3,2,2,0],[2,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,2,2,0],[3,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,4,2,2],[0,2,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,2,2],[0,3,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,2,2],[0,2,3,0]],[[1,0,2,1],[2,2,2,0],[2,3,2,3],[1,0,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,2,2],[1,0,3,1]],[[1,0,2,1],[2,2,2,0],[2,3,2,2],[1,0,2,2]],[[2,0,2,1],[2,2,2,0],[2,3,2,2],[1,1,2,0]],[[1,0,2,1],[3,2,2,0],[2,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,2,2,0],[3,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,2,2,0],[2,4,2,2],[1,1,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,2,2],[2,1,2,0]],[[2,0,2,1],[2,2,2,0],[2,3,3,0],[0,2,2,1]],[[1,0,2,1],[3,2,2,0],[2,3,3,0],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[3,3,3,0],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,4,3,0],[0,2,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,0],[0,3,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,0],[0,2,3,1]],[[2,0,2,1],[2,2,2,0],[2,3,3,0],[1,1,2,1]],[[1,0,2,1],[3,2,2,0],[2,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[3,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[2,4,3,0],[1,1,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,0],[2,1,2,1]],[[2,0,2,1],[2,2,2,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[3,2,2,0],[2,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,2,2,0],[3,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,2,2,0],[2,4,3,1],[0,1,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,4,1],[0,1,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,1],[0,1,3,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,1],[0,1,2,2]],[[2,0,2,1],[2,2,2,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[3,2,2,0],[2,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,2,0],[3,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,2,0],[2,4,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,2,0],[2,3,4,1],[0,2,1,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,1],[0,3,1,1]],[[2,0,2,1],[2,2,2,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[3,2,2,0],[2,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,2,0],[3,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,2,0],[2,4,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,4,1],[1,0,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,1],[2,0,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,1],[1,0,3,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,1],[1,0,2,2]],[[2,0,2,1],[2,2,2,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[3,2,2,0],[2,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,2,0],[3,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,2,0],[2,4,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,2,0],[2,3,4,1],[1,1,1,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,1],[2,1,1,1]],[[2,0,2,1],[2,2,2,0],[2,3,3,1],[1,2,0,1]],[[1,0,2,1],[3,2,2,0],[2,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,2,0],[3,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,2,0],[2,4,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[1,3,3,2],[1,1,3,3],[1,0,0,1]],[[1,2,1,1],[1,3,3,3],[1,1,3,2],[1,0,0,1]],[[1,2,1,1],[1,3,4,2],[1,1,3,2],[1,0,0,1]],[[1,2,1,2],[1,3,3,2],[1,1,3,2],[1,0,0,1]],[[1,0,2,1],[2,2,2,0],[2,3,4,2],[0,0,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,3],[0,0,2,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[0,0,2,2]],[[2,0,2,1],[2,2,2,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[3,2,2,0],[2,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,2,0],[3,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,2,0],[2,4,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,2,0],[2,3,4,2],[0,1,1,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,3],[0,1,1,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[0,1,1,2]],[[2,0,2,1],[2,2,2,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[3,2,2,0],[2,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,2,0],[3,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,2,0],[2,4,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,4,2],[0,1,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,3,3],[0,1,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[0,1,3,0]],[[2,0,2,1],[2,2,2,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[3,2,2,0],[2,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,2,0],[3,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,2,0],[2,4,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,2,0],[2,3,4,2],[0,2,0,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,3],[0,2,0,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[0,3,0,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[0,2,0,2]],[[2,0,2,1],[2,2,2,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[3,2,2,0],[2,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,2,0],[3,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,2,0],[2,4,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,2,0],[2,3,4,2],[0,2,1,0]],[[1,0,2,1],[2,2,2,0],[2,3,3,3],[0,2,1,0]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[0,3,1,0]],[[2,0,2,1],[2,2,2,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[3,2,2,0],[2,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,2,0],[3,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,2,0],[2,4,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,2,0],[2,3,4,2],[1,0,1,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,3],[1,0,1,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[2,0,1,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[1,0,1,2]],[[2,0,2,1],[2,2,2,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[3,2,2,0],[2,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,2,0],[3,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,2,0],[2,4,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,4,2],[1,0,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,3,3],[1,0,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[2,0,2,0]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[1,0,3,0]],[[2,0,2,1],[2,2,2,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[3,2,2,0],[2,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,2,0],[3,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,2,0],[2,4,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,2,0],[2,3,4,2],[1,1,0,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,3],[1,1,0,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[2,1,0,1]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[1,1,0,2]],[[2,0,2,1],[2,2,2,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[3,2,2,0],[2,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,2,0],[3,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,2,0],[2,4,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,2,0],[2,3,4,2],[1,1,1,0]],[[1,0,2,1],[2,2,2,0],[2,3,3,3],[1,1,1,0]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[1,3,3,2],[1,1,3,3],[0,1,0,1]],[[1,2,1,1],[1,3,3,3],[1,1,3,2],[0,1,0,1]],[[1,2,1,1],[1,3,4,2],[1,1,3,2],[0,1,0,1]],[[1,2,1,2],[1,3,3,2],[1,1,3,2],[0,1,0,1]],[[2,0,2,1],[2,2,2,0],[2,3,3,2],[1,2,0,0]],[[1,0,2,1],[3,2,2,0],[2,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,2,2,0],[3,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,2,2,0],[2,4,3,2],[1,2,0,0]],[[1,0,2,1],[2,2,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[1,3,3,3],[1,1,3,1],[1,1,1,0]],[[1,2,1,1],[1,3,4,2],[1,1,3,1],[1,1,1,0]],[[1,2,1,2],[1,3,3,2],[1,1,3,1],[1,1,1,0]],[[1,2,1,1],[1,3,3,3],[1,1,3,1],[1,1,0,1]],[[1,2,1,1],[1,3,4,2],[1,1,3,1],[1,1,0,1]],[[1,2,1,2],[1,3,3,2],[1,1,3,1],[1,1,0,1]],[[1,2,1,1],[1,3,3,3],[1,1,3,1],[1,0,2,0]],[[1,2,1,1],[1,3,4,2],[1,1,3,1],[1,0,2,0]],[[1,0,2,1],[2,2,2,1],[1,2,4,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,1],[1,2,3,0],[2,2,2,1]],[[1,0,2,1],[2,2,2,1],[1,2,3,0],[1,3,2,1]],[[1,0,2,1],[2,2,2,1],[1,2,3,0],[1,2,3,1]],[[1,0,2,1],[2,2,2,1],[1,2,3,0],[1,2,2,2]],[[1,0,2,1],[2,2,2,1],[1,2,4,1],[1,2,2,0]],[[1,0,2,1],[2,2,2,1],[1,2,3,1],[2,2,2,0]],[[1,0,2,1],[2,2,2,1],[1,2,3,1],[1,3,2,0]],[[1,0,2,1],[2,2,2,1],[1,2,3,1],[1,2,3,0]],[[1,2,1,2],[1,3,3,2],[1,1,3,1],[1,0,2,0]],[[1,2,1,1],[1,3,3,3],[1,1,3,1],[1,0,1,1]],[[1,2,1,1],[1,3,4,2],[1,1,3,1],[1,0,1,1]],[[1,2,1,2],[1,3,3,2],[1,1,3,1],[1,0,1,1]],[[1,0,2,1],[2,2,2,1],[1,4,2,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,1],[1,3,2,0],[2,2,2,1]],[[1,0,2,1],[2,2,2,1],[1,3,2,0],[1,3,2,1]],[[1,0,2,1],[2,2,2,1],[1,3,2,0],[1,2,3,1]],[[1,0,2,1],[2,2,2,1],[1,3,2,0],[1,2,2,2]],[[1,0,2,1],[2,2,2,1],[1,4,2,1],[1,2,2,0]],[[1,0,2,1],[2,2,2,1],[1,3,2,1],[2,2,2,0]],[[1,0,2,1],[2,2,2,1],[1,3,2,1],[1,3,2,0]],[[1,0,2,1],[2,2,2,1],[1,3,2,1],[1,2,3,0]],[[1,0,2,1],[2,2,2,1],[1,4,3,0],[1,1,2,1]],[[1,0,2,1],[2,2,2,1],[1,3,4,0],[1,1,2,1]],[[1,0,2,1],[2,2,2,1],[1,3,3,0],[1,1,3,1]],[[1,0,2,1],[2,2,2,1],[1,3,3,0],[1,1,2,2]],[[1,0,2,1],[2,2,2,1],[1,4,3,0],[1,2,1,1]],[[1,0,2,1],[2,2,2,1],[1,3,4,0],[1,2,1,1]],[[1,0,2,1],[2,2,2,1],[1,3,3,0],[2,2,1,1]],[[1,0,2,1],[2,2,2,1],[1,3,3,0],[1,3,1,1]],[[1,0,2,1],[2,2,2,1],[1,4,3,1],[1,1,2,0]],[[1,0,2,1],[2,2,2,1],[1,3,4,1],[1,1,2,0]],[[1,0,2,1],[2,2,2,1],[1,3,3,1],[1,1,3,0]],[[1,0,2,1],[2,2,2,1],[1,4,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,2,1],[1,3,4,1],[1,2,0,1]],[[1,0,2,1],[2,2,2,1],[1,3,3,1],[2,2,0,1]],[[1,0,2,1],[2,2,2,1],[1,3,3,1],[1,3,0,1]],[[1,0,2,1],[2,2,2,1],[1,4,3,1],[1,2,1,0]],[[1,0,2,1],[2,2,2,1],[1,3,4,1],[1,2,1,0]],[[1,0,2,1],[2,2,2,1],[1,3,3,1],[2,2,1,0]],[[1,0,2,1],[2,2,2,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[1,3,3,3],[1,1,3,1],[0,2,1,0]],[[1,2,1,1],[1,3,4,2],[1,1,3,1],[0,2,1,0]],[[1,2,1,2],[1,3,3,2],[1,1,3,1],[0,2,1,0]],[[1,2,1,1],[1,3,3,3],[1,1,3,1],[0,2,0,1]],[[1,2,1,1],[1,3,4,2],[1,1,3,1],[0,2,0,1]],[[1,2,1,2],[1,3,3,2],[1,1,3,1],[0,2,0,1]],[[1,2,1,1],[1,3,3,3],[1,1,3,1],[0,1,2,0]],[[1,2,1,1],[1,3,4,2],[1,1,3,1],[0,1,2,0]],[[1,2,1,2],[1,3,3,2],[1,1,3,1],[0,1,2,0]],[[1,2,1,1],[1,3,3,3],[1,1,3,1],[0,1,1,1]],[[1,2,1,1],[1,3,4,2],[1,1,3,1],[0,1,1,1]],[[1,2,1,2],[1,3,3,2],[1,1,3,1],[0,1,1,1]],[[1,2,1,1],[1,3,3,3],[1,1,3,1],[0,0,2,1]],[[1,2,1,1],[1,3,4,2],[1,1,3,1],[0,0,2,1]],[[1,2,1,2],[1,3,3,2],[1,1,3,1],[0,0,2,1]],[[2,0,2,1],[2,2,2,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[3,2,2,1],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,1],[3,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,1],[2,1,4,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,1],[2,1,3,0],[2,2,2,1]],[[1,0,2,1],[2,2,2,1],[2,1,3,0],[1,3,2,1]],[[1,0,2,1],[2,2,2,1],[2,1,3,0],[1,2,3,1]],[[1,0,2,1],[2,2,2,1],[2,1,3,0],[1,2,2,2]],[[2,0,2,1],[2,2,2,1],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[3,2,2,1],[2,1,3,1],[1,2,2,0]],[[1,0,2,1],[2,2,2,1],[3,1,3,1],[1,2,2,0]],[[1,0,2,1],[2,2,2,1],[2,1,4,1],[1,2,2,0]],[[1,0,2,1],[2,2,2,1],[2,1,3,1],[2,2,2,0]],[[1,0,2,1],[2,2,2,1],[2,1,3,1],[1,3,2,0]],[[1,0,2,1],[2,2,2,1],[2,1,3,1],[1,2,3,0]],[[1,2,1,1],[1,3,3,3],[1,1,3,0],[1,0,2,1]],[[1,2,1,1],[1,3,4,2],[1,1,3,0],[1,0,2,1]],[[1,2,1,2],[1,3,3,2],[1,1,3,0],[1,0,2,1]],[[2,0,2,1],[2,2,2,1],[2,2,2,0],[1,2,2,1]],[[1,0,2,1],[3,2,2,1],[2,2,2,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,1],[3,2,2,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,1],[2,2,2,0],[2,2,2,1]],[[1,0,2,1],[2,2,2,1],[2,2,2,0],[1,3,2,1]],[[1,0,2,1],[2,2,2,1],[2,2,2,0],[1,2,3,1]],[[1,0,2,1],[2,2,2,1],[2,2,2,0],[1,2,2,2]],[[2,0,2,1],[2,2,2,1],[2,2,2,1],[1,2,2,0]],[[1,0,2,1],[3,2,2,1],[2,2,2,1],[1,2,2,0]],[[1,0,2,1],[2,2,2,1],[3,2,2,1],[1,2,2,0]],[[1,0,2,1],[2,2,2,1],[2,2,2,1],[2,2,2,0]],[[1,0,2,1],[2,2,2,1],[2,2,2,1],[1,3,2,0]],[[1,0,2,1],[2,2,2,1],[2,2,2,1],[1,2,3,0]],[[1,2,1,1],[1,3,4,2],[1,1,3,0],[0,2,2,0]],[[1,0,2,1],[2,2,2,1],[2,2,4,0],[0,2,2,1]],[[1,0,2,1],[2,2,2,1],[2,2,3,0],[0,3,2,1]],[[1,0,2,1],[2,2,2,1],[2,2,3,0],[0,2,3,1]],[[1,0,2,1],[2,2,2,1],[2,2,3,0],[0,2,2,2]],[[2,0,2,1],[2,2,2,1],[2,2,3,0],[1,2,1,1]],[[1,0,2,1],[3,2,2,1],[2,2,3,0],[1,2,1,1]],[[1,0,2,1],[2,2,2,1],[3,2,3,0],[1,2,1,1]],[[1,0,2,1],[2,2,2,1],[2,2,3,0],[2,2,1,1]],[[1,0,2,1],[2,2,2,1],[2,2,3,0],[1,3,1,1]],[[1,0,2,1],[2,2,2,1],[2,2,4,1],[0,2,2,0]],[[1,0,2,1],[2,2,2,1],[2,2,3,1],[0,3,2,0]],[[1,0,2,1],[2,2,2,1],[2,2,3,1],[0,2,3,0]],[[2,0,2,1],[2,2,2,1],[2,2,3,1],[1,2,0,1]],[[1,0,2,1],[3,2,2,1],[2,2,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,2,1],[3,2,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,2,1],[2,2,3,1],[2,2,0,1]],[[1,0,2,1],[2,2,2,1],[2,2,3,1],[1,3,0,1]],[[2,0,2,1],[2,2,2,1],[2,2,3,1],[1,2,1,0]],[[1,0,2,1],[3,2,2,1],[2,2,3,1],[1,2,1,0]],[[1,0,2,1],[2,2,2,1],[3,2,3,1],[1,2,1,0]],[[1,0,2,1],[2,2,2,1],[2,2,3,1],[2,2,1,0]],[[1,0,2,1],[2,2,2,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[1,4,3,2],[1,1,3,0],[0,2,2,0]],[[1,3,1,1],[1,3,3,2],[1,1,3,0],[0,2,2,0]],[[2,2,1,1],[1,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,2,1,1],[1,3,3,3],[1,1,3,0],[0,1,2,1]],[[1,2,1,1],[1,3,4,2],[1,1,3,0],[0,1,2,1]],[[1,2,1,2],[1,3,3,2],[1,1,3,0],[0,1,2,1]],[[1,2,1,1],[1,3,3,3],[1,1,2,2],[1,1,1,0]],[[1,2,1,1],[1,3,4,2],[1,1,2,2],[1,1,1,0]],[[1,2,1,2],[1,3,3,2],[1,1,2,2],[1,1,1,0]],[[1,2,1,1],[1,3,3,2],[1,1,2,3],[1,1,0,1]],[[1,2,1,1],[1,3,3,3],[1,1,2,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,2],[1,1,2,2],[1,1,0,1]],[[1,2,1,2],[1,3,3,2],[1,1,2,2],[1,1,0,1]],[[1,2,1,1],[1,3,3,2],[1,1,2,3],[1,0,2,0]],[[1,2,1,1],[1,3,3,3],[1,1,2,2],[1,0,2,0]],[[1,2,1,1],[1,3,4,2],[1,1,2,2],[1,0,2,0]],[[1,2,1,2],[1,3,3,2],[1,1,2,2],[1,0,2,0]],[[1,0,2,1],[3,2,2,1],[2,3,1,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,1],[3,3,1,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,1],[2,3,1,0],[2,2,2,1]],[[1,0,2,1],[2,2,2,1],[2,3,1,0],[1,3,2,1]],[[1,0,2,1],[3,2,2,1],[2,3,1,1],[1,2,2,0]],[[1,0,2,1],[2,2,2,1],[3,3,1,1],[1,2,2,0]],[[1,0,2,1],[2,2,2,1],[2,3,1,1],[2,2,2,0]],[[1,0,2,1],[2,2,2,1],[2,3,1,1],[1,3,2,0]],[[1,2,1,1],[1,3,3,2],[1,1,2,2],[1,0,1,2]],[[1,2,1,1],[1,3,3,2],[1,1,2,3],[1,0,1,1]],[[1,2,1,1],[1,3,3,3],[1,1,2,2],[1,0,1,1]],[[1,2,1,1],[1,3,4,2],[1,1,2,2],[1,0,1,1]],[[1,2,1,2],[1,3,3,2],[1,1,2,2],[1,0,1,1]],[[2,0,2,1],[2,2,2,1],[2,3,2,0],[0,2,2,1]],[[1,0,2,1],[3,2,2,1],[2,3,2,0],[0,2,2,1]],[[1,0,2,1],[2,2,2,1],[3,3,2,0],[0,2,2,1]],[[1,0,2,1],[2,2,2,1],[2,4,2,0],[0,2,2,1]],[[1,0,2,1],[2,2,2,1],[2,3,2,0],[0,3,2,1]],[[1,0,2,1],[2,2,2,1],[2,3,2,0],[0,2,3,1]],[[1,0,2,1],[2,2,2,1],[2,3,2,0],[0,2,2,2]],[[2,0,2,1],[2,2,2,1],[2,3,2,0],[1,1,2,1]],[[1,0,2,1],[3,2,2,1],[2,3,2,0],[1,1,2,1]],[[1,0,2,1],[2,2,2,1],[3,3,2,0],[1,1,2,1]],[[1,0,2,1],[2,2,2,1],[2,4,2,0],[1,1,2,1]],[[1,0,2,1],[2,2,2,1],[2,3,2,0],[2,1,2,1]],[[2,0,2,1],[2,2,2,1],[2,3,2,1],[0,2,2,0]],[[1,0,2,1],[3,2,2,1],[2,3,2,1],[0,2,2,0]],[[1,0,2,1],[2,2,2,1],[3,3,2,1],[0,2,2,0]],[[1,0,2,1],[2,2,2,1],[2,4,2,1],[0,2,2,0]],[[1,0,2,1],[2,2,2,1],[2,3,2,1],[0,3,2,0]],[[1,0,2,1],[2,2,2,1],[2,3,2,1],[0,2,3,0]],[[2,0,2,1],[2,2,2,1],[2,3,2,1],[1,1,2,0]],[[1,0,2,1],[3,2,2,1],[2,3,2,1],[1,1,2,0]],[[1,0,2,1],[2,2,2,1],[3,3,2,1],[1,1,2,0]],[[1,0,2,1],[2,2,2,1],[2,4,2,1],[1,1,2,0]],[[1,0,2,1],[2,2,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[1,3,3,3],[1,1,2,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,2],[1,1,2,2],[0,2,1,0]],[[1,2,1,2],[1,3,3,2],[1,1,2,2],[0,2,1,0]],[[1,2,1,1],[1,3,3,2],[1,1,2,3],[0,2,0,1]],[[1,2,1,1],[1,3,3,3],[1,1,2,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,2],[1,1,2,2],[0,2,0,1]],[[1,2,1,2],[1,3,3,2],[1,1,2,2],[0,2,0,1]],[[1,2,1,1],[1,3,3,2],[1,1,2,3],[0,1,2,0]],[[1,2,1,1],[1,3,3,3],[1,1,2,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,2],[1,1,2,2],[0,1,2,0]],[[1,2,1,2],[1,3,3,2],[1,1,2,2],[0,1,2,0]],[[1,2,1,1],[1,3,3,2],[1,1,2,2],[0,1,1,2]],[[1,2,1,1],[1,3,3,2],[1,1,2,3],[0,1,1,1]],[[1,2,1,1],[1,3,3,3],[1,1,2,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,2],[1,1,2,2],[0,1,1,1]],[[1,2,1,2],[1,3,3,2],[1,1,2,2],[0,1,1,1]],[[1,2,1,1],[1,3,3,2],[1,1,2,2],[0,0,2,2]],[[1,2,1,1],[1,3,3,2],[1,1,2,3],[0,0,2,1]],[[1,2,1,1],[1,3,3,3],[1,1,2,2],[0,0,2,1]],[[1,2,1,1],[1,3,4,2],[1,1,2,2],[0,0,2,1]],[[1,2,1,2],[1,3,3,2],[1,1,2,2],[0,0,2,1]],[[2,0,2,1],[2,2,2,1],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[3,2,2,1],[2,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,2,2,1],[3,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,2,2,1],[2,4,3,0],[0,1,2,1]],[[1,0,2,1],[2,2,2,1],[2,3,4,0],[0,1,2,1]],[[1,0,2,1],[2,2,2,1],[2,3,3,0],[0,1,3,1]],[[1,0,2,1],[2,2,2,1],[2,3,3,0],[0,1,2,2]],[[2,0,2,1],[2,2,2,1],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[3,2,2,1],[2,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,2,2,1],[3,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,2,2,1],[2,4,3,0],[0,2,1,1]],[[1,0,2,1],[2,2,2,1],[2,3,4,0],[0,2,1,1]],[[1,0,2,1],[2,2,2,1],[2,3,3,0],[0,3,1,1]],[[2,0,2,1],[2,2,2,1],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[3,2,2,1],[2,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,2,2,1],[3,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,2,2,1],[2,4,3,0],[1,0,2,1]],[[1,0,2,1],[2,2,2,1],[2,3,4,0],[1,0,2,1]],[[1,0,2,1],[2,2,2,1],[2,3,3,0],[2,0,2,1]],[[1,0,2,1],[2,2,2,1],[2,3,3,0],[1,0,3,1]],[[1,0,2,1],[2,2,2,1],[2,3,3,0],[1,0,2,2]],[[2,0,2,1],[2,2,2,1],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[3,2,2,1],[2,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,2,2,1],[3,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,2,2,1],[2,4,3,0],[1,1,1,1]],[[1,0,2,1],[2,2,2,1],[2,3,4,0],[1,1,1,1]],[[1,0,2,1],[2,2,2,1],[2,3,3,0],[2,1,1,1]],[[2,0,2,1],[2,2,2,1],[2,3,3,0],[1,2,0,1]],[[1,0,2,1],[3,2,2,1],[2,3,3,0],[1,2,0,1]],[[1,0,2,1],[2,2,2,1],[3,3,3,0],[1,2,0,1]],[[1,0,2,1],[2,2,2,1],[2,4,3,0],[1,2,0,1]],[[1,0,2,1],[2,2,2,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[1,3,3,2],[1,1,1,2],[1,0,2,2]],[[1,2,1,1],[1,3,3,2],[1,1,1,3],[1,0,2,1]],[[1,2,1,1],[1,3,3,3],[1,1,1,2],[1,0,2,1]],[[1,2,1,1],[1,3,4,2],[1,1,1,2],[1,0,2,1]],[[1,2,1,2],[1,3,3,2],[1,1,1,2],[1,0,2,1]],[[2,0,2,1],[2,2,2,1],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[3,2,2,1],[2,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,2,2,1],[3,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,2,2,1],[2,4,3,1],[0,1,1,1]],[[1,0,2,1],[2,2,2,1],[2,3,4,1],[0,1,1,1]],[[2,0,2,1],[2,2,2,1],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[3,2,2,1],[2,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,2,2,1],[3,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,2,2,1],[2,4,3,1],[0,1,2,0]],[[1,0,2,1],[2,2,2,1],[2,3,4,1],[0,1,2,0]],[[1,0,2,1],[2,2,2,1],[2,3,3,1],[0,1,3,0]],[[2,0,2,1],[2,2,2,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[3,2,2,1],[2,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,2,2,1],[3,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,2,2,1],[2,4,3,1],[0,2,0,1]],[[1,0,2,1],[2,2,2,1],[2,3,4,1],[0,2,0,1]],[[1,0,2,1],[2,2,2,1],[2,3,3,1],[0,3,0,1]],[[2,0,2,1],[2,2,2,1],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[3,2,2,1],[2,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,2,2,1],[3,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,2,2,1],[2,4,3,1],[0,2,1,0]],[[1,0,2,1],[2,2,2,1],[2,3,4,1],[0,2,1,0]],[[1,0,2,1],[2,2,2,1],[2,3,3,1],[0,3,1,0]],[[2,0,2,1],[2,2,2,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[3,2,2,1],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,2,2,1],[3,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,2,2,1],[2,4,3,1],[1,0,1,1]],[[1,0,2,1],[2,2,2,1],[2,3,4,1],[1,0,1,1]],[[1,0,2,1],[2,2,2,1],[2,3,3,1],[2,0,1,1]],[[2,0,2,1],[2,2,2,1],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[3,2,2,1],[2,3,3,1],[1,0,2,0]],[[1,0,2,1],[2,2,2,1],[3,3,3,1],[1,0,2,0]],[[1,0,2,1],[2,2,2,1],[2,4,3,1],[1,0,2,0]],[[1,0,2,1],[2,2,2,1],[2,3,4,1],[1,0,2,0]],[[1,0,2,1],[2,2,2,1],[2,3,3,1],[2,0,2,0]],[[1,0,2,1],[2,2,2,1],[2,3,3,1],[1,0,3,0]],[[2,0,2,1],[2,2,2,1],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[3,2,2,1],[2,3,3,1],[1,1,0,1]],[[1,0,2,1],[2,2,2,1],[3,3,3,1],[1,1,0,1]],[[1,0,2,1],[2,2,2,1],[2,4,3,1],[1,1,0,1]],[[1,0,2,1],[2,2,2,1],[2,3,4,1],[1,1,0,1]],[[1,0,2,1],[2,2,2,1],[2,3,3,1],[2,1,0,1]],[[2,0,2,1],[2,2,2,1],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[3,2,2,1],[2,3,3,1],[1,1,1,0]],[[1,0,2,1],[2,2,2,1],[3,3,3,1],[1,1,1,0]],[[1,0,2,1],[2,2,2,1],[2,4,3,1],[1,1,1,0]],[[1,0,2,1],[2,2,2,1],[2,3,4,1],[1,1,1,0]],[[1,0,2,1],[2,2,2,1],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[1,3,3,2],[1,1,1,2],[0,1,2,2]],[[1,2,1,1],[1,3,3,2],[1,1,1,3],[0,1,2,1]],[[1,2,1,1],[1,3,3,3],[1,1,1,2],[0,1,2,1]],[[1,2,1,1],[1,3,4,2],[1,1,1,2],[0,1,2,1]],[[1,2,1,2],[1,3,3,2],[1,1,1,2],[0,1,2,1]],[[2,0,2,1],[2,2,2,1],[2,3,3,1],[1,2,0,0]],[[1,0,2,1],[3,2,2,1],[2,3,3,1],[1,2,0,0]],[[1,0,2,1],[2,2,2,1],[3,3,3,1],[1,2,0,0]],[[1,0,2,1],[2,2,2,1],[2,4,3,1],[1,2,0,0]],[[1,0,2,1],[2,2,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[1,3,3,2],[1,0,3,3],[1,0,2,0]],[[1,2,1,1],[1,3,3,3],[1,0,3,2],[1,0,2,0]],[[1,2,1,1],[1,3,4,2],[1,0,3,2],[1,0,2,0]],[[1,2,1,2],[1,3,3,2],[1,0,3,2],[1,0,2,0]],[[1,2,1,1],[1,3,3,2],[1,0,3,2],[1,0,1,2]],[[1,2,1,1],[1,3,3,2],[1,0,3,3],[1,0,1,1]],[[1,2,1,1],[1,3,3,3],[1,0,3,2],[1,0,1,1]],[[1,2,1,1],[1,3,4,2],[1,0,3,2],[1,0,1,1]],[[1,2,1,2],[1,3,3,2],[1,0,3,2],[1,0,1,1]],[[1,2,1,1],[1,3,3,2],[1,0,3,3],[0,1,2,0]],[[1,2,1,1],[1,3,3,3],[1,0,3,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,2],[1,0,3,2],[0,1,2,0]],[[1,2,1,2],[1,3,3,2],[1,0,3,2],[0,1,2,0]],[[1,2,1,1],[1,3,3,2],[1,0,3,2],[0,1,1,2]],[[1,2,1,1],[1,3,3,2],[1,0,3,3],[0,1,1,1]],[[1,2,1,1],[1,3,3,3],[1,0,3,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,2],[1,0,3,2],[0,1,1,1]],[[1,2,1,2],[1,3,3,2],[1,0,3,2],[0,1,1,1]],[[1,2,1,1],[1,3,3,2],[1,0,3,2],[0,0,2,2]],[[1,2,1,1],[1,3,3,2],[1,0,3,3],[0,0,2,1]],[[1,2,1,1],[1,3,3,3],[1,0,3,2],[0,0,2,1]],[[1,2,1,1],[1,3,4,2],[1,0,3,2],[0,0,2,1]],[[1,2,1,2],[1,3,3,2],[1,0,3,2],[0,0,2,1]],[[1,2,1,1],[1,3,3,3],[1,0,3,1],[0,2,2,0]],[[1,2,1,1],[1,3,4,2],[1,0,3,1],[0,2,2,0]],[[1,2,1,2],[1,3,3,2],[1,0,3,1],[0,2,2,0]],[[1,2,1,1],[1,3,3,3],[1,0,3,1],[0,2,1,1]],[[1,2,1,1],[1,3,4,2],[1,0,3,1],[0,2,1,1]],[[1,2,1,2],[1,3,3,2],[1,0,3,1],[0,2,1,1]],[[1,2,1,1],[1,3,4,2],[1,0,3,0],[1,2,2,0]],[[1,2,1,1],[1,4,3,2],[1,0,3,0],[1,2,2,0]],[[1,3,1,1],[1,3,3,2],[1,0,3,0],[1,2,2,0]],[[2,2,1,1],[1,3,3,2],[1,0,3,0],[1,2,2,0]],[[1,2,1,1],[1,3,3,3],[1,0,3,0],[0,2,2,1]],[[1,2,1,1],[1,3,4,2],[1,0,3,0],[0,2,2,1]],[[1,2,1,2],[1,3,3,2],[1,0,3,0],[0,2,2,1]],[[1,2,1,1],[1,3,3,2],[1,0,2,3],[0,2,2,0]],[[1,2,1,1],[1,3,3,3],[1,0,2,2],[0,2,2,0]],[[1,2,1,1],[1,3,4,2],[1,0,2,2],[0,2,2,0]],[[1,2,1,2],[1,3,3,2],[1,0,2,2],[0,2,2,0]],[[1,2,1,1],[1,3,3,2],[1,0,2,2],[0,2,1,2]],[[1,2,1,1],[1,3,3,2],[1,0,2,3],[0,2,1,1]],[[1,2,1,1],[1,3,3,3],[1,0,2,2],[0,2,1,1]],[[1,2,1,1],[1,3,4,2],[1,0,2,2],[0,2,1,1]],[[1,2,1,2],[1,3,3,2],[1,0,2,2],[0,2,1,1]],[[1,0,3,1],[2,2,2,2],[0,2,1,2],[1,2,2,1]],[[1,0,2,2],[2,2,2,2],[0,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,3],[0,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,2],[0,2,1,3],[1,2,2,1]],[[1,0,2,1],[2,2,2,2],[0,2,1,2],[2,2,2,1]],[[1,0,2,1],[2,2,2,2],[0,2,1,2],[1,3,2,1]],[[1,0,2,1],[2,2,2,2],[0,2,1,2],[1,2,3,1]],[[1,0,2,1],[2,2,2,2],[0,2,1,2],[1,2,2,2]],[[1,0,3,1],[2,2,2,2],[0,2,2,2],[1,2,1,1]],[[1,0,2,2],[2,2,2,2],[0,2,2,2],[1,2,1,1]],[[1,0,2,1],[2,2,2,3],[0,2,2,2],[1,2,1,1]],[[1,0,2,1],[2,2,2,2],[0,2,2,3],[1,2,1,1]],[[1,0,2,1],[2,2,2,2],[0,2,2,2],[1,2,1,2]],[[1,0,3,1],[2,2,2,2],[0,2,2,2],[1,2,2,0]],[[1,0,2,2],[2,2,2,2],[0,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,3],[0,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,2],[0,2,2,3],[1,2,2,0]],[[1,0,3,1],[2,2,2,2],[0,2,3,0],[1,2,2,1]],[[1,0,2,2],[2,2,2,2],[0,2,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,3],[0,2,3,0],[1,2,2,1]],[[1,0,3,1],[2,2,2,2],[0,2,3,1],[1,2,1,1]],[[1,0,2,2],[2,2,2,2],[0,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,2,3],[0,2,3,1],[1,2,1,1]],[[1,0,3,1],[2,2,2,2],[0,2,3,1],[1,2,2,0]],[[1,0,2,2],[2,2,2,2],[0,2,3,1],[1,2,2,0]],[[1,0,2,1],[2,2,2,3],[0,2,3,1],[1,2,2,0]],[[1,2,1,1],[1,3,3,2],[1,0,1,2],[0,2,2,2]],[[1,0,3,1],[2,2,2,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,2],[2,2,2,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,3],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,2],[0,4,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,2],[0,3,0,3],[1,2,2,1]],[[1,0,2,1],[2,2,2,2],[0,3,0,2],[2,2,2,1]],[[1,0,2,1],[2,2,2,2],[0,3,0,2],[1,3,2,1]],[[1,0,2,1],[2,2,2,2],[0,3,0,2],[1,2,3,1]],[[1,0,2,1],[2,2,2,2],[0,3,0,2],[1,2,2,2]],[[1,0,3,1],[2,2,2,2],[0,3,1,2],[1,1,2,1]],[[1,0,2,2],[2,2,2,2],[0,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,2,2,3],[0,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,2,2,2],[0,3,1,3],[1,1,2,1]],[[1,0,2,1],[2,2,2,2],[0,3,1,2],[1,1,3,1]],[[1,0,2,1],[2,2,2,2],[0,3,1,2],[1,1,2,2]],[[1,0,3,1],[2,2,2,2],[0,3,2,2],[1,0,2,1]],[[1,0,2,2],[2,2,2,2],[0,3,2,2],[1,0,2,1]],[[1,0,2,1],[2,2,2,3],[0,3,2,2],[1,0,2,1]],[[1,0,2,1],[2,2,2,2],[0,3,2,3],[1,0,2,1]],[[1,0,2,1],[2,2,2,2],[0,3,2,2],[1,0,2,2]],[[1,0,3,1],[2,2,2,2],[0,3,2,2],[1,1,1,1]],[[1,0,2,2],[2,2,2,2],[0,3,2,2],[1,1,1,1]],[[1,0,2,1],[2,2,2,3],[0,3,2,2],[1,1,1,1]],[[1,0,2,1],[2,2,2,2],[0,3,2,3],[1,1,1,1]],[[1,0,2,1],[2,2,2,2],[0,3,2,2],[1,1,1,2]],[[1,0,3,1],[2,2,2,2],[0,3,2,2],[1,1,2,0]],[[1,0,2,2],[2,2,2,2],[0,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,2,2,3],[0,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,2,2,2],[0,3,2,3],[1,1,2,0]],[[1,0,3,1],[2,2,2,2],[0,3,2,2],[1,2,0,1]],[[1,0,2,2],[2,2,2,2],[0,3,2,2],[1,2,0,1]],[[1,0,2,1],[2,2,2,3],[0,3,2,2],[1,2,0,1]],[[1,0,2,1],[2,2,2,2],[0,3,2,3],[1,2,0,1]],[[1,0,2,1],[2,2,2,2],[0,3,2,2],[1,2,0,2]],[[1,0,3,1],[2,2,2,2],[0,3,2,2],[1,2,1,0]],[[1,0,2,2],[2,2,2,2],[0,3,2,2],[1,2,1,0]],[[1,0,2,1],[2,2,2,3],[0,3,2,2],[1,2,1,0]],[[1,0,2,1],[2,2,2,2],[0,3,2,3],[1,2,1,0]],[[1,2,1,1],[1,3,3,2],[1,0,1,2],[0,2,3,1]],[[1,2,1,1],[1,3,3,2],[1,0,1,3],[0,2,2,1]],[[1,2,1,1],[1,3,3,3],[1,0,1,2],[0,2,2,1]],[[1,2,1,1],[1,3,4,2],[1,0,1,2],[0,2,2,1]],[[1,2,1,2],[1,3,3,2],[1,0,1,2],[0,2,2,1]],[[1,0,3,1],[2,2,2,2],[0,3,3,0],[1,1,2,1]],[[1,0,2,2],[2,2,2,2],[0,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,2,2,3],[0,3,3,0],[1,1,2,1]],[[1,0,3,1],[2,2,2,2],[0,3,3,0],[1,2,1,1]],[[1,0,2,2],[2,2,2,2],[0,3,3,0],[1,2,1,1]],[[1,0,2,1],[2,2,2,3],[0,3,3,0],[1,2,1,1]],[[1,0,3,1],[2,2,2,2],[0,3,3,1],[1,0,2,1]],[[1,0,2,2],[2,2,2,2],[0,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,2,3],[0,3,3,1],[1,0,2,1]],[[1,0,3,1],[2,2,2,2],[0,3,3,1],[1,1,1,1]],[[1,0,2,2],[2,2,2,2],[0,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,2,3],[0,3,3,1],[1,1,1,1]],[[1,0,3,1],[2,2,2,2],[0,3,3,1],[1,1,2,0]],[[1,0,2,2],[2,2,2,2],[0,3,3,1],[1,1,2,0]],[[1,0,2,1],[2,2,2,3],[0,3,3,1],[1,1,2,0]],[[1,0,3,1],[2,2,2,2],[0,3,3,1],[1,2,0,1]],[[1,0,2,2],[2,2,2,2],[0,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,2,3],[0,3,3,1],[1,2,0,1]],[[1,0,3,1],[2,2,2,2],[0,3,3,1],[1,2,1,0]],[[1,0,2,2],[2,2,2,2],[0,3,3,1],[1,2,1,0]],[[1,0,2,1],[2,2,2,3],[0,3,3,1],[1,2,1,0]],[[1,0,3,1],[2,2,2,2],[0,3,3,2],[1,1,0,1]],[[1,0,2,2],[2,2,2,2],[0,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,2,3],[0,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,2,2],[0,3,3,3],[1,1,0,1]],[[1,0,3,1],[2,2,2,2],[1,2,1,2],[0,2,2,1]],[[1,0,2,2],[2,2,2,2],[1,2,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,2,3],[1,2,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,2,2],[1,2,1,3],[0,2,2,1]],[[1,0,2,1],[2,2,2,2],[1,2,1,2],[0,3,2,1]],[[1,0,2,1],[2,2,2,2],[1,2,1,2],[0,2,3,1]],[[1,0,2,1],[2,2,2,2],[1,2,1,2],[0,2,2,2]],[[1,0,3,1],[2,2,2,2],[1,2,2,2],[0,2,1,1]],[[1,0,2,2],[2,2,2,2],[1,2,2,2],[0,2,1,1]],[[1,0,2,1],[2,2,2,3],[1,2,2,2],[0,2,1,1]],[[1,0,2,1],[2,2,2,2],[1,2,2,3],[0,2,1,1]],[[1,0,2,1],[2,2,2,2],[1,2,2,2],[0,2,1,2]],[[1,0,3,1],[2,2,2,2],[1,2,2,2],[0,2,2,0]],[[1,0,2,2],[2,2,2,2],[1,2,2,2],[0,2,2,0]],[[1,0,2,1],[2,2,2,3],[1,2,2,2],[0,2,2,0]],[[1,0,2,1],[2,2,2,2],[1,2,2,3],[0,2,2,0]],[[1,0,3,1],[2,2,2,2],[1,2,3,0],[0,2,2,1]],[[1,0,2,2],[2,2,2,2],[1,2,3,0],[0,2,2,1]],[[1,0,2,1],[2,2,2,3],[1,2,3,0],[0,2,2,1]],[[1,0,3,1],[2,2,2,2],[1,2,3,1],[0,2,1,1]],[[1,0,2,2],[2,2,2,2],[1,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,2,3],[1,2,3,1],[0,2,1,1]],[[1,0,3,1],[2,2,2,2],[1,2,3,1],[0,2,2,0]],[[1,0,2,2],[2,2,2,2],[1,2,3,1],[0,2,2,0]],[[1,0,2,1],[2,2,2,3],[1,2,3,1],[0,2,2,0]],[[1,2,1,1],[1,3,3,2],[0,4,3,0],[1,2,0,0]],[[1,2,1,1],[1,3,4,2],[0,3,3,0],[1,2,0,0]],[[1,2,1,1],[1,4,3,2],[0,3,3,0],[1,2,0,0]],[[1,3,1,1],[1,3,3,2],[0,3,3,0],[1,2,0,0]],[[2,2,1,1],[1,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,2,1,1],[1,3,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,1,1],[1,4,3,2],[0,3,3,0],[0,2,1,0]],[[1,3,1,1],[1,3,3,2],[0,3,3,0],[0,2,1,0]],[[2,2,1,1],[1,3,3,2],[0,3,3,0],[0,2,1,0]],[[1,2,1,1],[1,3,4,2],[0,3,3,0],[0,2,0,1]],[[1,2,1,1],[1,4,3,2],[0,3,3,0],[0,2,0,1]],[[1,3,1,1],[1,3,3,2],[0,3,3,0],[0,2,0,1]],[[2,2,1,1],[1,3,3,2],[0,3,3,0],[0,2,0,1]],[[1,0,3,1],[2,2,2,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,2],[2,2,2,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,2,3],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,2,2],[1,4,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,2,2],[1,3,0,3],[0,2,2,1]],[[1,0,2,1],[2,2,2,2],[1,3,0,2],[0,3,2,1]],[[1,0,2,1],[2,2,2,2],[1,3,0,2],[0,2,3,1]],[[1,0,2,1],[2,2,2,2],[1,3,0,2],[0,2,2,2]],[[1,0,3,1],[2,2,2,2],[1,3,1,2],[0,1,2,1]],[[1,0,2,2],[2,2,2,2],[1,3,1,2],[0,1,2,1]],[[1,0,2,1],[2,2,2,3],[1,3,1,2],[0,1,2,1]],[[1,0,2,1],[2,2,2,2],[1,3,1,3],[0,1,2,1]],[[1,0,2,1],[2,2,2,2],[1,3,1,2],[0,1,3,1]],[[1,0,2,1],[2,2,2,2],[1,3,1,2],[0,1,2,2]],[[1,0,3,1],[2,2,2,2],[1,3,1,2],[1,0,2,1]],[[1,0,2,2],[2,2,2,2],[1,3,1,2],[1,0,2,1]],[[1,0,2,1],[2,2,2,3],[1,3,1,2],[1,0,2,1]],[[1,0,2,1],[2,2,2,2],[1,3,1,3],[1,0,2,1]],[[1,0,2,1],[2,2,2,2],[1,3,1,2],[1,0,3,1]],[[1,0,2,1],[2,2,2,2],[1,3,1,2],[1,0,2,2]],[[1,2,1,1],[1,3,4,2],[0,3,3,0],[0,1,2,0]],[[1,2,1,1],[1,4,3,2],[0,3,3,0],[0,1,2,0]],[[1,3,1,1],[1,3,3,2],[0,3,3,0],[0,1,2,0]],[[2,2,1,1],[1,3,3,2],[0,3,3,0],[0,1,2,0]],[[1,2,1,1],[1,3,4,2],[0,3,3,0],[0,1,1,1]],[[1,2,1,1],[1,4,3,2],[0,3,3,0],[0,1,1,1]],[[1,3,1,1],[1,3,3,2],[0,3,3,0],[0,1,1,1]],[[2,2,1,1],[1,3,3,2],[0,3,3,0],[0,1,1,1]],[[1,0,3,1],[2,2,2,2],[1,3,2,2],[0,0,2,1]],[[1,0,2,2],[2,2,2,2],[1,3,2,2],[0,0,2,1]],[[1,0,2,1],[2,2,2,3],[1,3,2,2],[0,0,2,1]],[[1,0,2,1],[2,2,2,2],[1,3,2,3],[0,0,2,1]],[[1,0,2,1],[2,2,2,2],[1,3,2,2],[0,0,2,2]],[[1,0,3,1],[2,2,2,2],[1,3,2,2],[0,1,1,1]],[[1,0,2,2],[2,2,2,2],[1,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,2,2,3],[1,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,2,2,2],[1,3,2,3],[0,1,1,1]],[[1,0,2,1],[2,2,2,2],[1,3,2,2],[0,1,1,2]],[[1,0,3,1],[2,2,2,2],[1,3,2,2],[0,1,2,0]],[[1,0,2,2],[2,2,2,2],[1,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,2,2,3],[1,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,2,2,2],[1,3,2,3],[0,1,2,0]],[[1,0,3,1],[2,2,2,2],[1,3,2,2],[0,2,0,1]],[[1,0,2,2],[2,2,2,2],[1,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,2,2,3],[1,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,2,2,2],[1,3,2,3],[0,2,0,1]],[[1,0,2,1],[2,2,2,2],[1,3,2,2],[0,2,0,2]],[[1,0,3,1],[2,2,2,2],[1,3,2,2],[0,2,1,0]],[[1,0,2,2],[2,2,2,2],[1,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,2,2,3],[1,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,2,2,2],[1,3,2,3],[0,2,1,0]],[[1,0,3,1],[2,2,2,2],[1,3,2,2],[1,0,1,1]],[[1,0,2,2],[2,2,2,2],[1,3,2,2],[1,0,1,1]],[[1,0,2,1],[2,2,2,3],[1,3,2,2],[1,0,1,1]],[[1,0,2,1],[2,2,2,2],[1,3,2,3],[1,0,1,1]],[[1,0,2,1],[2,2,2,2],[1,3,2,2],[1,0,1,2]],[[1,0,3,1],[2,2,2,2],[1,3,2,2],[1,0,2,0]],[[1,0,2,2],[2,2,2,2],[1,3,2,2],[1,0,2,0]],[[1,0,2,1],[2,2,2,3],[1,3,2,2],[1,0,2,0]],[[1,0,2,1],[2,2,2,2],[1,3,2,3],[1,0,2,0]],[[1,0,3,1],[2,2,2,2],[1,3,2,2],[1,1,0,1]],[[1,0,2,2],[2,2,2,2],[1,3,2,2],[1,1,0,1]],[[1,0,2,1],[2,2,2,3],[1,3,2,2],[1,1,0,1]],[[1,0,2,1],[2,2,2,2],[1,3,2,3],[1,1,0,1]],[[1,0,2,1],[2,2,2,2],[1,3,2,2],[1,1,0,2]],[[1,0,3,1],[2,2,2,2],[1,3,2,2],[1,1,1,0]],[[1,0,2,2],[2,2,2,2],[1,3,2,2],[1,1,1,0]],[[1,0,2,1],[2,2,2,3],[1,3,2,2],[1,1,1,0]],[[1,0,2,1],[2,2,2,2],[1,3,2,3],[1,1,1,0]],[[1,0,3,1],[2,2,2,2],[1,3,3,0],[0,1,2,1]],[[1,0,2,2],[2,2,2,2],[1,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,2,2,3],[1,3,3,0],[0,1,2,1]],[[1,0,3,1],[2,2,2,2],[1,3,3,0],[0,2,1,1]],[[1,0,2,2],[2,2,2,2],[1,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,2,2,3],[1,3,3,0],[0,2,1,1]],[[1,0,3,1],[2,2,2,2],[1,3,3,0],[1,0,2,1]],[[1,0,2,2],[2,2,2,2],[1,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,2,2,3],[1,3,3,0],[1,0,2,1]],[[1,0,3,1],[2,2,2,2],[1,3,3,0],[1,1,1,1]],[[1,0,2,2],[2,2,2,2],[1,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,2,2,3],[1,3,3,0],[1,1,1,1]],[[1,0,3,1],[2,2,2,2],[1,3,3,1],[0,0,2,1]],[[1,0,2,2],[2,2,2,2],[1,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,2,2,3],[1,3,3,1],[0,0,2,1]],[[1,0,3,1],[2,2,2,2],[1,3,3,1],[0,1,1,1]],[[1,0,2,2],[2,2,2,2],[1,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,2,2,3],[1,3,3,1],[0,1,1,1]],[[1,0,3,1],[2,2,2,2],[1,3,3,1],[0,1,2,0]],[[1,0,2,2],[2,2,2,2],[1,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,2,2,3],[1,3,3,1],[0,1,2,0]],[[1,0,3,1],[2,2,2,2],[1,3,3,1],[0,2,0,1]],[[1,0,2,2],[2,2,2,2],[1,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,2,2,3],[1,3,3,1],[0,2,0,1]],[[1,0,3,1],[2,2,2,2],[1,3,3,1],[0,2,1,0]],[[1,0,2,2],[2,2,2,2],[1,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,2,2,3],[1,3,3,1],[0,2,1,0]],[[1,0,3,1],[2,2,2,2],[1,3,3,1],[1,0,1,1]],[[1,0,2,2],[2,2,2,2],[1,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,2,2,3],[1,3,3,1],[1,0,1,1]],[[1,0,3,1],[2,2,2,2],[1,3,3,1],[1,0,2,0]],[[1,0,2,2],[2,2,2,2],[1,3,3,1],[1,0,2,0]],[[1,0,2,1],[2,2,2,3],[1,3,3,1],[1,0,2,0]],[[1,0,3,1],[2,2,2,2],[1,3,3,1],[1,1,0,1]],[[1,0,2,2],[2,2,2,2],[1,3,3,1],[1,1,0,1]],[[1,0,2,1],[2,2,2,3],[1,3,3,1],[1,1,0,1]],[[1,0,3,1],[2,2,2,2],[1,3,3,1],[1,1,1,0]],[[1,0,2,2],[2,2,2,2],[1,3,3,1],[1,1,1,0]],[[1,0,2,1],[2,2,2,3],[1,3,3,1],[1,1,1,0]],[[1,2,1,1],[1,3,3,2],[0,3,2,0],[1,3,1,0]],[[1,0,3,1],[2,2,2,2],[1,3,3,2],[0,1,0,1]],[[1,0,2,2],[2,2,2,2],[1,3,3,2],[0,1,0,1]],[[1,0,2,1],[2,2,2,3],[1,3,3,2],[0,1,0,1]],[[1,0,2,1],[2,2,2,2],[1,3,3,3],[0,1,0,1]],[[1,2,1,1],[1,3,3,2],[0,3,2,0],[2,2,1,0]],[[1,2,1,1],[1,3,3,2],[0,4,2,0],[1,2,1,0]],[[1,2,1,1],[1,3,4,2],[0,3,2,0],[1,2,1,0]],[[1,2,1,1],[1,4,3,2],[0,3,2,0],[1,2,1,0]],[[1,3,1,1],[1,3,3,2],[0,3,2,0],[1,2,1,0]],[[2,2,1,1],[1,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,2,1,1],[1,3,3,2],[0,4,2,0],[1,2,0,1]],[[1,2,1,1],[1,3,4,2],[0,3,2,0],[1,2,0,1]],[[1,2,1,1],[1,4,3,2],[0,3,2,0],[1,2,0,1]],[[1,3,1,1],[1,3,3,2],[0,3,2,0],[1,2,0,1]],[[2,2,1,1],[1,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,2,1,1],[1,3,3,2],[0,4,2,0],[1,1,2,0]],[[1,2,1,1],[1,3,4,2],[0,3,2,0],[1,1,2,0]],[[1,2,1,1],[1,4,3,2],[0,3,2,0],[1,1,2,0]],[[1,3,1,1],[1,3,3,2],[0,3,2,0],[1,1,2,0]],[[2,2,1,1],[1,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,2,1,1],[1,3,4,2],[0,3,2,0],[1,1,1,1]],[[1,2,1,1],[1,4,3,2],[0,3,2,0],[1,1,1,1]],[[1,3,1,1],[1,3,3,2],[0,3,2,0],[1,1,1,1]],[[2,2,1,1],[1,3,3,2],[0,3,2,0],[1,1,1,1]],[[1,0,3,1],[2,2,2,2],[1,3,3,2],[1,0,0,1]],[[1,0,2,2],[2,2,2,2],[1,3,3,2],[1,0,0,1]],[[1,0,2,1],[2,2,2,3],[1,3,3,2],[1,0,0,1]],[[1,0,2,1],[2,2,2,2],[1,3,3,3],[1,0,0,1]],[[1,2,1,1],[1,3,3,2],[0,3,1,0],[1,3,2,0]],[[1,2,1,1],[1,3,3,2],[0,3,1,0],[2,2,2,0]],[[1,2,1,1],[1,3,3,2],[0,4,1,0],[1,2,2,0]],[[1,2,1,1],[1,3,4,2],[0,3,1,0],[1,2,2,0]],[[1,2,1,1],[1,4,3,2],[0,3,1,0],[1,2,2,0]],[[1,3,1,1],[1,3,3,2],[0,3,1,0],[1,2,2,0]],[[2,2,1,1],[1,3,3,2],[0,3,1,0],[1,2,2,0]],[[2,0,2,1],[2,2,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,3,1],[2,2,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,2],[2,2,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[3,2,2,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,3],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,2],[3,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,2],[2,0,1,3],[1,2,2,1]],[[1,0,2,1],[2,2,2,2],[2,0,1,2],[2,2,2,1]],[[1,0,2,1],[2,2,2,2],[2,0,1,2],[1,3,2,1]],[[1,0,2,1],[2,2,2,2],[2,0,1,2],[1,2,3,1]],[[1,0,2,1],[2,2,2,2],[2,0,1,2],[1,2,2,2]],[[1,0,3,1],[2,2,2,2],[2,0,2,2],[1,2,1,1]],[[1,0,2,2],[2,2,2,2],[2,0,2,2],[1,2,1,1]],[[1,0,2,1],[2,2,2,3],[2,0,2,2],[1,2,1,1]],[[1,0,2,1],[2,2,2,2],[2,0,2,3],[1,2,1,1]],[[1,0,2,1],[2,2,2,2],[2,0,2,2],[1,2,1,2]],[[1,0,3,1],[2,2,2,2],[2,0,2,2],[1,2,2,0]],[[1,0,2,2],[2,2,2,2],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,3],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,2,2],[2,0,2,3],[1,2,2,0]],[[1,0,3,1],[2,2,2,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,2],[2,2,2,2],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,2,3],[2,0,3,0],[1,2,2,1]],[[1,0,3,1],[2,2,2,2],[2,0,3,1],[1,2,1,1]],[[1,0,2,2],[2,2,2,2],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,2,3],[2,0,3,1],[1,2,1,1]],[[1,0,3,1],[2,2,2,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,2],[2,2,2,2],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[2,2,2,3],[2,0,3,1],[1,2,2,0]],[[2,0,2,1],[2,2,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,3,1],[2,2,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,2],[2,2,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[3,2,2,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,3],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,2],[3,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,2,2],[2,1,0,3],[1,2,2,1]],[[1,0,2,1],[2,2,2,2],[2,1,0,2],[2,2,2,1]],[[1,0,2,1],[2,2,2,2],[2,1,0,2],[1,3,2,1]],[[1,0,2,1],[2,2,2,2],[2,1,0,2],[1,2,3,1]],[[1,0,2,1],[2,2,2,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,1],[1,3,4,2],[0,2,3,0],[1,2,1,0]],[[1,2,1,1],[1,4,3,2],[0,2,3,0],[1,2,1,0]],[[1,3,1,1],[1,3,3,2],[0,2,3,0],[1,2,1,0]],[[2,2,1,1],[1,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,2,1,1],[1,3,4,2],[0,2,3,0],[1,2,0,1]],[[1,2,1,1],[1,4,3,2],[0,2,3,0],[1,2,0,1]],[[1,3,1,1],[1,3,3,2],[0,2,3,0],[1,2,0,1]],[[2,2,1,1],[1,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,2,1,1],[1,3,4,2],[0,2,3,0],[1,1,2,0]],[[1,2,1,1],[1,4,3,2],[0,2,3,0],[1,1,2,0]],[[1,3,1,1],[1,3,3,2],[0,2,3,0],[1,1,2,0]],[[2,2,1,1],[1,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,2,1,1],[1,3,4,2],[0,2,3,0],[1,1,1,1]],[[1,2,1,1],[1,4,3,2],[0,2,3,0],[1,1,1,1]],[[1,3,1,1],[1,3,3,2],[0,2,3,0],[1,1,1,1]],[[2,2,1,1],[1,3,3,2],[0,2,3,0],[1,1,1,1]],[[1,2,1,1],[1,3,3,2],[0,1,3,3],[1,1,0,1]],[[1,2,1,1],[1,3,3,3],[0,1,3,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,2],[0,1,3,2],[1,1,0,1]],[[1,2,1,2],[1,3,3,2],[0,1,3,2],[1,1,0,1]],[[1,2,1,1],[1,3,3,3],[0,1,3,1],[1,2,1,0]],[[1,2,1,1],[1,3,4,2],[0,1,3,1],[1,2,1,0]],[[1,2,1,2],[1,3,3,2],[0,1,3,1],[1,2,1,0]],[[1,2,1,1],[1,3,3,3],[0,1,3,1],[1,2,0,1]],[[1,2,1,1],[1,3,4,2],[0,1,3,1],[1,2,0,1]],[[1,2,1,2],[1,3,3,2],[0,1,3,1],[1,2,0,1]],[[1,2,1,1],[1,3,3,3],[0,1,3,1],[1,1,2,0]],[[1,2,1,1],[1,3,4,2],[0,1,3,1],[1,1,2,0]],[[1,2,1,2],[1,3,3,2],[0,1,3,1],[1,1,2,0]],[[1,2,1,1],[1,3,3,3],[0,1,3,1],[1,1,1,1]],[[1,2,1,1],[1,3,4,2],[0,1,3,1],[1,1,1,1]],[[1,2,1,2],[1,3,3,2],[0,1,3,1],[1,1,1,1]],[[1,2,1,1],[1,3,3,3],[0,1,3,1],[1,0,2,1]],[[1,2,1,1],[1,3,4,2],[0,1,3,1],[1,0,2,1]],[[1,2,1,2],[1,3,3,2],[0,1,3,1],[1,0,2,1]],[[1,2,1,1],[1,3,4,2],[0,1,3,0],[1,2,2,0]],[[1,2,1,1],[1,4,3,2],[0,1,3,0],[1,2,2,0]],[[1,3,1,1],[1,3,3,2],[0,1,3,0],[1,2,2,0]],[[2,2,1,1],[1,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,2,1,1],[1,3,3,3],[0,1,3,0],[1,1,2,1]],[[1,2,1,1],[1,3,4,2],[0,1,3,0],[1,1,2,1]],[[1,2,1,2],[1,3,3,2],[0,1,3,0],[1,1,2,1]],[[1,2,1,1],[1,3,3,3],[0,1,2,2],[1,2,1,0]],[[1,2,1,1],[1,3,4,2],[0,1,2,2],[1,2,1,0]],[[1,2,1,2],[1,3,3,2],[0,1,2,2],[1,2,1,0]],[[1,2,1,1],[1,3,3,2],[0,1,2,3],[1,2,0,1]],[[1,2,1,1],[1,3,3,3],[0,1,2,2],[1,2,0,1]],[[1,2,1,1],[1,3,4,2],[0,1,2,2],[1,2,0,1]],[[1,2,1,2],[1,3,3,2],[0,1,2,2],[1,2,0,1]],[[1,2,1,1],[1,3,3,2],[0,1,2,3],[1,1,2,0]],[[1,2,1,1],[1,3,3,3],[0,1,2,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,2],[0,1,2,2],[1,1,2,0]],[[1,2,1,2],[1,3,3,2],[0,1,2,2],[1,1,2,0]],[[1,2,1,1],[1,3,3,2],[0,1,2,2],[1,1,1,2]],[[1,2,1,1],[1,3,3,2],[0,1,2,3],[1,1,1,1]],[[1,2,1,1],[1,3,3,3],[0,1,2,2],[1,1,1,1]],[[1,2,1,1],[1,3,4,2],[0,1,2,2],[1,1,1,1]],[[1,2,1,2],[1,3,3,2],[0,1,2,2],[1,1,1,1]],[[1,2,1,1],[1,3,3,2],[0,1,2,2],[1,0,2,2]],[[1,2,1,1],[1,3,3,2],[0,1,2,3],[1,0,2,1]],[[1,2,1,1],[1,3,3,3],[0,1,2,2],[1,0,2,1]],[[1,2,1,1],[1,3,4,2],[0,1,2,2],[1,0,2,1]],[[1,2,1,2],[1,3,3,2],[0,1,2,2],[1,0,2,1]],[[1,2,1,1],[1,3,3,2],[0,1,1,2],[1,1,2,2]],[[1,2,1,1],[1,3,3,2],[0,1,1,3],[1,1,2,1]],[[1,2,1,1],[1,3,3,3],[0,1,1,2],[1,1,2,1]],[[1,2,1,1],[1,3,4,2],[0,1,1,2],[1,1,2,1]],[[1,2,1,2],[1,3,3,2],[0,1,1,2],[1,1,2,1]],[[1,2,1,1],[1,3,3,2],[0,0,3,3],[1,1,2,0]],[[1,2,1,1],[1,3,3,3],[0,0,3,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,2],[0,0,3,2],[1,1,2,0]],[[1,2,1,2],[1,3,3,2],[0,0,3,2],[1,1,2,0]],[[1,2,1,1],[1,3,3,2],[0,0,3,2],[1,1,1,2]],[[1,2,1,1],[1,3,3,2],[0,0,3,3],[1,1,1,1]],[[1,2,1,1],[1,3,3,3],[0,0,3,2],[1,1,1,1]],[[1,2,1,1],[1,3,4,2],[0,0,3,2],[1,1,1,1]],[[1,2,1,2],[1,3,3,2],[0,0,3,2],[1,1,1,1]],[[1,2,1,1],[1,3,3,2],[0,0,3,2],[1,0,2,2]],[[1,2,1,1],[1,3,3,2],[0,0,3,3],[1,0,2,1]],[[1,2,1,1],[1,3,3,3],[0,0,3,2],[1,0,2,1]],[[1,2,1,1],[1,3,4,2],[0,0,3,2],[1,0,2,1]],[[1,2,1,2],[1,3,3,2],[0,0,3,2],[1,0,2,1]],[[1,2,1,1],[1,3,3,3],[0,0,3,1],[1,2,2,0]],[[1,2,1,1],[1,3,4,2],[0,0,3,1],[1,2,2,0]],[[1,2,1,2],[1,3,3,2],[0,0,3,1],[1,2,2,0]],[[1,2,1,1],[1,3,3,3],[0,0,3,1],[1,2,1,1]],[[1,2,1,1],[1,3,4,2],[0,0,3,1],[1,2,1,1]],[[1,2,1,2],[1,3,3,2],[0,0,3,1],[1,2,1,1]],[[1,2,1,1],[1,3,3,3],[0,0,3,0],[1,2,2,1]],[[1,2,1,1],[1,3,4,2],[0,0,3,0],[1,2,2,1]],[[1,2,1,2],[1,3,3,2],[0,0,3,0],[1,2,2,1]],[[1,2,1,1],[1,3,3,2],[0,0,2,3],[1,2,2,0]],[[1,2,1,1],[1,3,3,3],[0,0,2,2],[1,2,2,0]],[[1,2,1,1],[1,3,4,2],[0,0,2,2],[1,2,2,0]],[[1,2,1,2],[1,3,3,2],[0,0,2,2],[1,2,2,0]],[[1,2,1,1],[1,3,3,2],[0,0,2,2],[1,2,1,2]],[[1,2,1,1],[1,3,3,2],[0,0,2,3],[1,2,1,1]],[[1,2,1,1],[1,3,3,3],[0,0,2,2],[1,2,1,1]],[[1,2,1,1],[1,3,4,2],[0,0,2,2],[1,2,1,1]],[[1,2,1,2],[1,3,3,2],[0,0,2,2],[1,2,1,1]],[[1,2,1,1],[1,3,3,2],[0,0,1,2],[1,2,2,2]],[[1,2,1,1],[1,3,3,2],[0,0,1,2],[1,2,3,1]],[[1,2,1,1],[1,3,3,2],[0,0,1,3],[1,2,2,1]],[[1,2,1,1],[1,3,3,3],[0,0,1,2],[1,2,2,1]],[[1,2,1,1],[1,3,4,2],[0,0,1,2],[1,2,2,1]],[[1,2,1,2],[1,3,3,2],[0,0,1,2],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[2,3,3,1],[1,0,0,0]],[[1,2,1,1],[1,4,3,1],[2,3,3,1],[1,0,0,0]],[[1,3,1,1],[1,3,3,1],[2,3,3,1],[1,0,0,0]],[[2,2,1,1],[1,3,3,1],[2,3,3,1],[1,0,0,0]],[[1,2,1,1],[1,3,4,1],[2,3,3,0],[1,0,1,0]],[[1,2,1,1],[1,4,3,1],[2,3,3,0],[1,0,1,0]],[[1,3,1,1],[1,3,3,1],[2,3,3,0],[1,0,1,0]],[[2,2,1,1],[1,3,3,1],[2,3,3,0],[1,0,1,0]],[[1,2,1,1],[1,3,4,1],[2,3,2,1],[1,0,1,0]],[[1,2,1,1],[1,4,3,1],[2,3,2,1],[1,0,1,0]],[[1,3,1,1],[1,3,3,1],[2,3,2,1],[1,0,1,0]],[[2,2,1,1],[1,3,3,1],[2,3,2,1],[1,0,1,0]],[[1,2,1,1],[1,3,4,1],[2,3,2,1],[1,0,0,1]],[[1,2,1,1],[1,4,3,1],[2,3,2,1],[1,0,0,1]],[[1,3,1,1],[1,3,3,1],[2,3,2,1],[1,0,0,1]],[[2,2,1,1],[1,3,3,1],[2,3,2,1],[1,0,0,1]],[[1,2,1,1],[1,4,3,1],[2,3,2,0],[1,2,0,0]],[[1,3,1,1],[1,3,3,1],[2,3,2,0],[1,2,0,0]],[[2,2,1,1],[1,3,3,1],[2,3,2,0],[1,2,0,0]],[[1,2,1,1],[1,4,3,1],[2,3,2,0],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[2,3,2,0],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[2,3,2,0],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[2,3,2,0],[1,0,1,1]],[[1,2,1,1],[1,4,3,1],[2,3,2,0],[1,0,1,1]],[[1,3,1,1],[1,3,3,1],[2,3,2,0],[1,0,1,1]],[[2,2,1,1],[1,3,3,1],[2,3,2,0],[1,0,1,1]],[[1,2,1,1],[1,4,3,1],[2,3,2,0],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,3,2,0],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,3,2,0],[0,2,1,0]],[[1,2,1,1],[1,3,4,1],[2,3,1,2],[1,0,1,0]],[[1,2,1,1],[1,4,3,1],[2,3,1,2],[1,0,1,0]],[[1,3,1,1],[1,3,3,1],[2,3,1,2],[1,0,1,0]],[[2,2,1,1],[1,3,3,1],[2,3,1,2],[1,0,1,0]],[[1,2,1,1],[1,3,4,1],[2,3,1,2],[1,0,0,1]],[[1,2,1,1],[1,4,3,1],[2,3,1,2],[1,0,0,1]],[[1,3,1,1],[1,3,3,1],[2,3,1,2],[1,0,0,1]],[[2,2,1,1],[1,3,3,1],[2,3,1,2],[1,0,0,1]],[[1,2,1,1],[1,4,3,1],[2,3,1,1],[1,2,0,0]],[[1,3,1,1],[1,3,3,1],[2,3,1,1],[1,2,0,0]],[[2,2,1,1],[1,3,3,1],[2,3,1,1],[1,2,0,0]],[[1,2,1,1],[1,4,3,1],[2,3,1,1],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[2,3,1,1],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[2,3,1,1],[1,1,1,0]],[[1,2,1,1],[1,4,3,1],[2,3,1,1],[1,1,0,1]],[[1,3,1,1],[1,3,3,1],[2,3,1,1],[1,1,0,1]],[[2,2,1,1],[1,3,3,1],[2,3,1,1],[1,1,0,1]],[[1,2,1,1],[1,4,3,1],[2,3,1,1],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,3,1,1],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,3,1,1],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,3,1,1],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,3,1,1],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,3,1,1],[0,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,3,1,0],[1,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,3,1,0],[1,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,3,1,0],[1,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,3,1,0],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[2,3,1,0],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[2,3,1,0],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[2,3,1,0],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[2,3,1,0],[0,2,1,1]],[[2,2,1,1],[1,3,3,1],[2,3,1,0],[0,2,1,1]],[[1,2,1,1],[1,4,3,1],[2,3,0,2],[1,2,0,0]],[[1,3,1,1],[1,3,3,1],[2,3,0,2],[1,2,0,0]],[[2,2,1,1],[1,3,3,1],[2,3,0,2],[1,2,0,0]],[[1,2,1,1],[1,4,3,1],[2,3,0,2],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[2,3,0,2],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[2,3,0,2],[1,1,1,0]],[[1,2,1,1],[1,4,3,1],[2,3,0,2],[1,1,0,1]],[[1,3,1,1],[1,3,3,1],[2,3,0,2],[1,1,0,1]],[[2,2,1,1],[1,3,3,1],[2,3,0,2],[1,1,0,1]],[[1,2,1,1],[1,4,3,1],[2,3,0,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,3,0,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,3,0,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,3,0,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,3,0,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,3,0,2],[0,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,3,0,1],[1,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,3,0,1],[1,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,3,0,1],[1,2,1,0]],[[1,0,2,1],[2,2,3,0],[0,1,3,3],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,1,3,2],[1,2,3,1]],[[1,0,2,1],[2,2,3,0],[0,1,3,2],[1,2,2,2]],[[1,0,2,1],[2,2,3,0],[0,2,2,3],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,2,2,2],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,2,2,2],[1,3,2,1]],[[1,0,2,1],[2,2,3,0],[0,2,2,2],[1,2,3,1]],[[1,0,2,1],[2,2,3,0],[0,2,2,2],[1,2,2,2]],[[1,0,3,1],[2,2,3,0],[0,2,3,1],[1,2,2,1]],[[1,0,2,2],[2,2,3,0],[0,2,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,4,0],[0,2,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,2,4,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,2,3,1],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,2,3,1],[1,3,2,1]],[[1,0,2,1],[2,2,3,0],[0,2,3,1],[1,2,3,1]],[[1,0,2,1],[2,2,3,0],[0,2,3,1],[1,2,2,2]],[[1,0,3,1],[2,2,3,0],[0,2,3,2],[1,2,1,1]],[[1,0,2,2],[2,2,3,0],[0,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,4,0],[0,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[0,2,4,2],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[0,2,3,3],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[0,2,3,2],[1,2,1,2]],[[1,0,3,1],[2,2,3,0],[0,2,3,2],[1,2,2,0]],[[1,0,2,2],[2,2,3,0],[0,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,4,0],[0,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[0,2,4,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[0,2,3,3],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[0,2,3,2],[2,2,2,0]],[[1,0,2,1],[2,2,3,0],[0,2,3,2],[1,3,2,0]],[[1,0,2,1],[2,2,3,0],[0,2,3,2],[1,2,3,0]],[[1,0,2,1],[2,2,3,0],[0,4,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,1,3],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,2,3,0],[0,3,1,2],[1,2,2,2]],[[1,0,2,1],[2,2,3,0],[0,4,2,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,2,3,0],[0,3,2,1],[1,2,2,2]],[[1,0,2,1],[2,2,3,0],[0,3,2,3],[1,1,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,2,2],[1,1,3,1]],[[1,0,2,1],[2,2,3,0],[0,3,2,2],[1,1,2,2]],[[1,0,2,1],[2,2,3,0],[0,4,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[0,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,2,3,0],[0,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,2,3,0],[0,3,2,2],[1,2,3,0]],[[1,0,2,1],[2,2,3,0],[0,4,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,0],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,0],[1,3,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,0],[1,2,3,1]],[[1,0,3,1],[2,2,3,0],[0,3,3,1],[1,1,2,1]],[[1,0,2,2],[2,2,3,0],[0,3,3,1],[1,1,2,1]],[[1,0,2,1],[2,2,4,0],[0,3,3,1],[1,1,2,1]],[[1,0,2,1],[2,2,3,0],[0,4,3,1],[1,1,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,4,1],[1,1,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,1],[1,1,3,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,1],[1,1,2,2]],[[1,0,3,1],[2,2,3,0],[0,3,3,1],[1,2,1,1]],[[1,0,2,2],[2,2,3,0],[0,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,4,0],[0,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[0,4,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[0,3,4,1],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,1],[1,3,1,1]],[[1,0,3,1],[2,2,3,0],[0,3,3,2],[1,0,2,1]],[[1,0,2,2],[2,2,3,0],[0,3,3,2],[1,0,2,1]],[[1,0,2,1],[2,2,4,0],[0,3,3,2],[1,0,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,4,2],[1,0,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,3],[1,0,2,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,2],[1,0,2,2]],[[1,0,3,1],[2,2,3,0],[0,3,3,2],[1,1,1,1]],[[1,0,2,2],[2,2,3,0],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,2,4,0],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,2,3,0],[0,4,3,2],[1,1,1,1]],[[1,0,2,1],[2,2,3,0],[0,3,4,2],[1,1,1,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,3],[1,1,1,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,2],[1,1,1,2]],[[1,0,3,1],[2,2,3,0],[0,3,3,2],[1,1,2,0]],[[1,0,2,2],[2,2,3,0],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,4,0],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,3,0],[0,4,3,2],[1,1,2,0]],[[1,0,2,1],[2,2,3,0],[0,3,4,2],[1,1,2,0]],[[1,0,2,1],[2,2,3,0],[0,3,3,3],[1,1,2,0]],[[1,0,2,1],[2,2,3,0],[0,3,3,2],[1,1,3,0]],[[1,0,3,1],[2,2,3,0],[0,3,3,2],[1,2,0,1]],[[1,0,2,2],[2,2,3,0],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,4,0],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,3,0],[0,4,3,2],[1,2,0,1]],[[1,0,2,1],[2,2,3,0],[0,3,4,2],[1,2,0,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,3],[1,2,0,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,2,3,0],[0,3,3,2],[1,2,0,2]],[[1,0,3,1],[2,2,3,0],[0,3,3,2],[1,2,1,0]],[[1,0,2,2],[2,2,3,0],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,4,0],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,3,0],[0,4,3,2],[1,2,1,0]],[[1,0,2,1],[2,2,3,0],[0,3,4,2],[1,2,1,0]],[[1,0,2,1],[2,2,3,0],[0,3,3,3],[1,2,1,0]],[[1,0,2,1],[2,2,3,0],[0,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,2,3,0],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[1,4,3,1],[2,3,0,1],[1,1,2,0]],[[1,3,1,1],[1,3,3,1],[2,3,0,1],[1,1,2,0]],[[2,2,1,1],[1,3,3,1],[2,3,0,1],[1,1,2,0]],[[1,0,2,1],[2,2,3,0],[1,1,3,3],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,1,3,2],[0,2,3,1]],[[1,0,2,1],[2,2,3,0],[1,1,3,2],[0,2,2,2]],[[1,0,2,1],[2,2,3,0],[1,2,2,3],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,2,2,2],[0,3,2,1]],[[1,0,2,1],[2,2,3,0],[1,2,2,2],[0,2,3,1]],[[1,0,2,1],[2,2,3,0],[1,2,2,2],[0,2,2,2]],[[1,0,3,1],[2,2,3,0],[1,2,3,1],[0,2,2,1]],[[1,0,2,2],[2,2,3,0],[1,2,3,1],[0,2,2,1]],[[1,0,2,1],[2,2,4,0],[1,2,3,1],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,2,4,1],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,2,3,1],[0,3,2,1]],[[1,0,2,1],[2,2,3,0],[1,2,3,1],[0,2,3,1]],[[1,0,2,1],[2,2,3,0],[1,2,3,1],[0,2,2,2]],[[1,0,3,1],[2,2,3,0],[1,2,3,2],[0,2,1,1]],[[1,0,2,2],[2,2,3,0],[1,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,2,4,0],[1,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,2,3,0],[1,2,4,2],[0,2,1,1]],[[1,0,2,1],[2,2,3,0],[1,2,3,3],[0,2,1,1]],[[1,0,2,1],[2,2,3,0],[1,2,3,2],[0,2,1,2]],[[1,0,3,1],[2,2,3,0],[1,2,3,2],[0,2,2,0]],[[1,0,2,2],[2,2,3,0],[1,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,2,4,0],[1,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,2,3,0],[1,2,4,2],[0,2,2,0]],[[1,0,2,1],[2,2,3,0],[1,2,3,3],[0,2,2,0]],[[1,0,2,1],[2,2,3,0],[1,2,3,2],[0,3,2,0]],[[1,0,2,1],[2,2,3,0],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[1,4,3,1],[2,3,0,1],[0,2,2,0]],[[1,3,1,1],[1,3,3,1],[2,3,0,1],[0,2,2,0]],[[2,2,1,1],[1,3,3,1],[2,3,0,1],[0,2,2,0]],[[1,0,2,1],[2,2,3,0],[1,4,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,0,3],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,0,2],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,0,2],[1,3,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,0,2],[1,2,3,1]],[[1,0,2,1],[2,2,3,0],[1,3,0,2],[1,2,2,2]],[[1,0,2,1],[2,2,3,0],[1,4,1,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,1,1],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,1,1],[1,3,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,1,1],[1,2,3,1]],[[1,0,2,1],[2,2,3,0],[1,3,1,1],[1,2,2,2]],[[1,0,2,1],[2,2,3,0],[1,4,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,1,3],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,1,2],[0,3,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,1,2],[0,2,3,1]],[[1,0,2,1],[2,2,3,0],[1,3,1,2],[0,2,2,2]],[[1,0,2,1],[2,2,3,0],[1,4,1,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[1,3,1,2],[2,2,2,0]],[[1,0,2,1],[2,2,3,0],[1,3,1,2],[1,3,2,0]],[[1,0,2,1],[2,2,3,0],[1,3,1,2],[1,2,3,0]],[[1,0,2,1],[2,2,3,0],[1,4,2,1],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,1],[0,3,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,1],[0,2,3,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,1],[0,2,2,2]],[[1,0,2,1],[2,2,3,0],[1,4,2,1],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,1],[2,2,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,1],[1,3,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,3],[0,1,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,2],[0,1,3,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,2],[0,1,2,2]],[[1,0,2,1],[2,2,3,0],[1,4,2,2],[0,2,2,0]],[[1,0,2,1],[2,2,3,0],[1,3,2,2],[0,3,2,0]],[[1,0,2,1],[2,2,3,0],[1,3,2,2],[0,2,3,0]],[[1,0,2,1],[2,2,3,0],[1,3,2,3],[1,0,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,2],[1,0,3,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,2],[1,0,2,2]],[[1,0,2,1],[2,2,3,0],[1,4,2,2],[1,2,0,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,2],[2,2,0,1]],[[1,0,2,1],[2,2,3,0],[1,3,2,2],[1,3,0,1]],[[1,0,2,1],[2,2,3,0],[1,4,2,2],[1,2,1,0]],[[1,0,2,1],[2,2,3,0],[1,3,2,2],[2,2,1,0]],[[1,0,2,1],[2,2,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,1,1],[1,4,3,1],[2,3,0,0],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[2,3,0,0],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[2,3,0,0],[1,2,2,0]],[[1,2,1,1],[1,4,3,1],[2,3,0,0],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[1,4,3,0],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,0],[0,3,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,0],[0,2,3,1]],[[1,0,3,1],[2,2,3,0],[1,3,3,1],[0,1,2,1]],[[1,0,2,2],[2,2,3,0],[1,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,2,4,0],[1,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,2,3,0],[1,4,3,1],[0,1,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,4,1],[0,1,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,1],[0,1,3,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,1],[0,1,2,2]],[[1,0,3,1],[2,2,3,0],[1,3,3,1],[0,2,1,1]],[[1,0,2,2],[2,2,3,0],[1,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,4,0],[1,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,3,0],[1,4,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,4,1],[0,2,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,1],[0,3,1,1]],[[1,0,3,1],[2,2,3,0],[1,3,3,1],[1,0,2,1]],[[1,0,2,2],[2,2,3,0],[1,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,4,0],[1,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,3,0],[1,4,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,4,1],[1,0,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,1],[1,0,3,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,1],[1,0,2,2]],[[1,0,3,1],[2,2,3,0],[1,3,3,1],[1,1,1,1]],[[1,0,2,2],[2,2,3,0],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,4,0],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,3,0],[1,4,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,4,1],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[2,3,0,0],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[2,3,0,0],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[2,3,0,0],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[2,3,0,0],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[2,3,0,0],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[2,3,0,0],[0,2,2,1]],[[1,3,1,1],[1,3,3,1],[2,3,0,0],[0,2,2,1]],[[2,2,1,1],[1,3,3,1],[2,3,0,0],[0,2,2,1]],[[1,0,3,1],[2,2,3,0],[1,3,3,2],[0,0,2,1]],[[1,0,2,2],[2,2,3,0],[1,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,2,4,0],[1,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,4,2],[0,0,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,3],[0,0,2,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,2],[0,0,2,2]],[[1,0,3,1],[2,2,3,0],[1,3,3,2],[0,1,1,1]],[[1,0,2,2],[2,2,3,0],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,4,0],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,3,0],[1,4,3,2],[0,1,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,4,2],[0,1,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,3],[0,1,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,2],[0,1,1,2]],[[1,0,3,1],[2,2,3,0],[1,3,3,2],[0,1,2,0]],[[1,0,2,2],[2,2,3,0],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,4,0],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,3,0],[1,4,3,2],[0,1,2,0]],[[1,0,2,1],[2,2,3,0],[1,3,4,2],[0,1,2,0]],[[1,0,2,1],[2,2,3,0],[1,3,3,3],[0,1,2,0]],[[1,0,2,1],[2,2,3,0],[1,3,3,2],[0,1,3,0]],[[1,0,3,1],[2,2,3,0],[1,3,3,2],[0,2,0,1]],[[1,0,2,2],[2,2,3,0],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,4,0],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,3,0],[1,4,3,2],[0,2,0,1]],[[1,0,2,1],[2,2,3,0],[1,3,4,2],[0,2,0,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,3],[0,2,0,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,2],[0,3,0,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,2],[0,2,0,2]],[[1,0,3,1],[2,2,3,0],[1,3,3,2],[0,2,1,0]],[[1,0,2,2],[2,2,3,0],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,4,0],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,3,0],[1,4,3,2],[0,2,1,0]],[[1,0,2,1],[2,2,3,0],[1,3,4,2],[0,2,1,0]],[[1,0,2,1],[2,2,3,0],[1,3,3,3],[0,2,1,0]],[[1,0,2,1],[2,2,3,0],[1,3,3,2],[0,3,1,0]],[[1,0,3,1],[2,2,3,0],[1,3,3,2],[1,0,1,1]],[[1,0,2,2],[2,2,3,0],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,4,0],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,3,0],[1,4,3,2],[1,0,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,4,2],[1,0,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,3],[1,0,1,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,2],[1,0,1,2]],[[1,0,3,1],[2,2,3,0],[1,3,3,2],[1,0,2,0]],[[1,0,2,2],[2,2,3,0],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,4,0],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,3,0],[1,4,3,2],[1,0,2,0]],[[1,0,2,1],[2,2,3,0],[1,3,4,2],[1,0,2,0]],[[1,0,2,1],[2,2,3,0],[1,3,3,3],[1,0,2,0]],[[1,0,2,1],[2,2,3,0],[1,3,3,2],[1,0,3,0]],[[1,0,3,1],[2,2,3,0],[1,3,3,2],[1,1,0,1]],[[1,0,2,2],[2,2,3,0],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,4,0],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,3,0],[1,4,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,3,0],[1,3,4,2],[1,1,0,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,3],[1,1,0,1]],[[1,0,2,1],[2,2,3,0],[1,3,3,2],[1,1,0,2]],[[1,0,3,1],[2,2,3,0],[1,3,3,2],[1,1,1,0]],[[1,0,2,2],[2,2,3,0],[1,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,4,0],[1,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,3,0],[1,4,3,2],[1,1,1,0]],[[1,0,2,1],[2,2,3,0],[1,3,4,2],[1,1,1,0]],[[1,0,2,1],[2,2,3,0],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[2,2,3,1],[1,1,0,0]],[[1,2,1,1],[1,4,3,1],[2,2,3,1],[1,1,0,0]],[[1,3,1,1],[1,3,3,1],[2,2,3,1],[1,1,0,0]],[[2,2,1,1],[1,3,3,1],[2,2,3,1],[1,1,0,0]],[[2,0,2,1],[2,2,3,0],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[3,2,3,0],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[3,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,0,2,3],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,0,2,2],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,0,2,2],[1,3,2,1]],[[1,0,2,1],[2,2,3,0],[2,0,2,2],[1,2,3,1]],[[1,0,2,1],[2,2,3,0],[2,0,2,2],[1,2,2,2]],[[2,0,2,1],[2,2,3,0],[2,0,3,1],[1,2,2,1]],[[1,0,3,1],[2,2,3,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,2],[2,2,3,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[3,2,3,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,4,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[3,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,0,4,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,0,3,1],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,0,3,1],[1,3,2,1]],[[1,0,2,1],[2,2,3,0],[2,0,3,1],[1,2,3,1]],[[1,0,2,1],[2,2,3,0],[2,0,3,1],[1,2,2,2]],[[1,0,3,1],[2,2,3,0],[2,0,3,2],[1,2,1,1]],[[1,0,2,2],[2,2,3,0],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,4,0],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[2,0,4,2],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[2,0,3,3],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[2,0,3,2],[1,2,1,2]],[[2,0,2,1],[2,2,3,0],[2,0,3,2],[1,2,2,0]],[[1,0,3,1],[2,2,3,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,2],[2,2,3,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[3,2,3,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,4,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[3,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[2,0,4,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[2,0,3,3],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[2,0,3,2],[2,2,2,0]],[[1,0,2,1],[2,2,3,0],[2,0,3,2],[1,3,2,0]],[[1,0,2,1],[2,2,3,0],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[1,3,4,1],[2,2,3,1],[0,2,0,0]],[[1,2,1,1],[1,4,3,1],[2,2,3,1],[0,2,0,0]],[[1,3,1,1],[1,3,3,1],[2,2,3,1],[0,2,0,0]],[[2,0,2,1],[2,2,3,0],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[3,2,3,0],[2,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[3,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,2,0,3],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,2,0,2],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,2,0,2],[1,3,2,1]],[[1,0,2,1],[2,2,3,0],[2,2,0,2],[1,2,3,1]],[[1,0,2,1],[2,2,3,0],[2,2,0,2],[1,2,2,2]],[[2,0,2,1],[2,2,3,0],[2,2,1,1],[1,2,2,1]],[[1,0,2,1],[3,2,3,0],[2,2,1,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[3,2,1,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,2,1,1],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,2,1,1],[1,3,2,1]],[[1,0,2,1],[2,2,3,0],[2,2,1,1],[1,2,3,1]],[[1,0,2,1],[2,2,3,0],[2,2,1,1],[1,2,2,2]],[[2,0,2,1],[2,2,3,0],[2,2,1,2],[1,2,2,0]],[[1,0,2,1],[3,2,3,0],[2,2,1,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[3,2,1,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[2,2,1,2],[2,2,2,0]],[[1,0,2,1],[2,2,3,0],[2,2,1,2],[1,3,2,0]],[[1,0,2,1],[2,2,3,0],[2,2,1,2],[1,2,3,0]],[[2,0,2,1],[2,2,3,0],[2,2,2,1],[1,2,1,1]],[[1,0,2,1],[3,2,3,0],[2,2,2,1],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[3,2,2,1],[1,2,1,1]],[[1,0,2,1],[2,2,3,0],[2,2,2,1],[2,2,1,1]],[[1,0,2,1],[2,2,3,0],[2,2,2,1],[1,3,1,1]],[[2,0,2,1],[2,2,3,0],[2,2,2,2],[1,2,0,1]],[[1,0,2,1],[3,2,3,0],[2,2,2,2],[1,2,0,1]],[[1,0,2,1],[2,2,3,0],[3,2,2,2],[1,2,0,1]],[[1,0,2,1],[2,2,3,0],[2,2,2,2],[2,2,0,1]],[[1,0,2,1],[2,2,3,0],[2,2,2,2],[1,3,0,1]],[[2,0,2,1],[2,2,3,0],[2,2,2,2],[1,2,1,0]],[[1,0,2,1],[3,2,3,0],[2,2,2,2],[1,2,1,0]],[[1,0,2,1],[2,2,3,0],[3,2,2,2],[1,2,1,0]],[[1,0,2,1],[2,2,3,0],[2,2,2,2],[2,2,1,0]],[[1,0,2,1],[2,2,3,0],[2,2,2,2],[1,3,1,0]],[[2,2,1,1],[1,3,3,1],[2,2,3,1],[0,2,0,0]],[[1,2,1,1],[1,3,4,1],[2,2,3,0],[1,2,0,0]],[[1,2,1,1],[1,4,3,1],[2,2,3,0],[1,2,0,0]],[[1,3,1,1],[1,3,3,1],[2,2,3,0],[1,2,0,0]],[[2,2,1,1],[1,3,3,1],[2,2,3,0],[1,2,0,0]],[[1,2,1,1],[1,3,4,1],[2,2,3,0],[1,1,1,0]],[[1,2,1,1],[1,4,3,1],[2,2,3,0],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[2,2,3,0],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[2,2,3,0],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[2,2,3,0],[1,0,2,0]],[[1,2,1,1],[1,4,3,1],[2,2,3,0],[1,0,2,0]],[[1,3,1,1],[1,3,3,1],[2,2,3,0],[1,0,2,0]],[[2,2,1,1],[1,3,3,1],[2,2,3,0],[1,0,2,0]],[[2,0,2,1],[2,2,3,0],[2,3,0,1],[1,2,2,1]],[[1,0,2,1],[3,2,3,0],[2,3,0,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[3,3,0,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,3,0,1],[2,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,3,0,1],[1,3,2,1]],[[2,0,2,1],[2,2,3,0],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[3,2,3,0],[2,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[3,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,4,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,3,0,3],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,3,0,2],[0,3,2,1]],[[1,0,2,1],[2,2,3,0],[2,3,0,2],[0,2,3,1]],[[1,0,2,1],[2,2,3,0],[2,3,0,2],[0,2,2,2]],[[2,0,2,1],[2,2,3,0],[2,3,0,2],[1,1,2,1]],[[1,0,2,1],[3,2,3,0],[2,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,2,3,0],[3,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,2,3,0],[2,4,0,2],[1,1,2,1]],[[1,0,2,1],[2,2,3,0],[2,3,0,2],[2,1,2,1]],[[2,0,2,1],[2,2,3,0],[2,3,0,2],[1,2,2,0]],[[1,0,2,1],[3,2,3,0],[2,3,0,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[3,3,0,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,0],[2,3,0,2],[2,2,2,0]],[[1,0,2,1],[2,2,3,0],[2,3,0,2],[1,3,2,0]],[[2,0,2,1],[2,2,3,0],[2,3,1,1],[0,2,2,1]],[[1,0,2,1],[3,2,3,0],[2,3,1,1],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[3,3,1,1],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,4,1,1],[0,2,2,1]],[[1,0,2,1],[2,2,3,0],[2,3,1,1],[0,3,2,1]],[[1,0,2,1],[2,2,3,0],[2,3,1,1],[0,2,3,1]],[[1,0,2,1],[2,2,3,0],[2,3,1,1],[0,2,2,2]],[[2,0,2,1],[2,2,3,0],[2,3,1,1],[1,1,2,1]],[[1,0,2,1],[3,2,3,0],[2,3,1,1],[1,1,2,1]],[[1,0,2,1],[2,2,3,0],[3,3,1,1],[1,1,2,1]],[[1,0,2,1],[2,2,3,0],[2,4,1,1],[1,1,2,1]],[[1,0,2,1],[2,2,3,0],[2,3,1,1],[2,1,2,1]],[[2,0,2,1],[2,2,3,0],[2,3,1,2],[0,2,2,0]],[[1,0,2,1],[3,2,3,0],[2,3,1,2],[0,2,2,0]],[[1,0,2,1],[2,2,3,0],[3,3,1,2],[0,2,2,0]],[[1,0,2,1],[2,2,3,0],[2,4,1,2],[0,2,2,0]],[[1,0,2,1],[2,2,3,0],[2,3,1,2],[0,3,2,0]],[[1,0,2,1],[2,2,3,0],[2,3,1,2],[0,2,3,0]],[[2,0,2,1],[2,2,3,0],[2,3,1,2],[1,1,2,0]],[[1,0,2,1],[3,2,3,0],[2,3,1,2],[1,1,2,0]],[[1,0,2,1],[2,2,3,0],[3,3,1,2],[1,1,2,0]],[[1,0,2,1],[2,2,3,0],[2,4,1,2],[1,1,2,0]],[[1,0,2,1],[2,2,3,0],[2,3,1,2],[2,1,2,0]],[[1,2,1,1],[1,3,4,1],[2,2,3,0],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,2,3,0],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,2,3,0],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,2,3,0],[0,2,1,0]],[[2,0,2,1],[2,2,3,0],[2,3,2,1],[0,1,2,1]],[[1,0,2,1],[3,2,3,0],[2,3,2,1],[0,1,2,1]],[[1,0,2,1],[2,2,3,0],[3,3,2,1],[0,1,2,1]],[[1,0,2,1],[2,2,3,0],[2,4,2,1],[0,1,2,1]],[[2,0,2,1],[2,2,3,0],[2,3,2,1],[0,2,1,1]],[[1,0,2,1],[3,2,3,0],[2,3,2,1],[0,2,1,1]],[[1,0,2,1],[2,2,3,0],[3,3,2,1],[0,2,1,1]],[[1,0,2,1],[2,2,3,0],[2,4,2,1],[0,2,1,1]],[[1,0,2,1],[2,2,3,0],[2,3,2,1],[0,3,1,1]],[[2,0,2,1],[2,2,3,0],[2,3,2,1],[1,0,2,1]],[[1,0,2,1],[3,2,3,0],[2,3,2,1],[1,0,2,1]],[[1,0,2,1],[2,2,3,0],[3,3,2,1],[1,0,2,1]],[[1,0,2,1],[2,2,3,0],[2,4,2,1],[1,0,2,1]],[[1,0,2,1],[2,2,3,0],[2,3,2,1],[2,0,2,1]],[[2,0,2,1],[2,2,3,0],[2,3,2,1],[1,1,1,1]],[[1,0,2,1],[3,2,3,0],[2,3,2,1],[1,1,1,1]],[[1,0,2,1],[2,2,3,0],[3,3,2,1],[1,1,1,1]],[[1,0,2,1],[2,2,3,0],[2,4,2,1],[1,1,1,1]],[[1,0,2,1],[2,2,3,0],[2,3,2,1],[2,1,1,1]],[[2,0,2,1],[2,2,3,0],[2,3,2,1],[1,2,0,1]],[[1,0,2,1],[3,2,3,0],[2,3,2,1],[1,2,0,1]],[[1,0,2,1],[2,2,3,0],[3,3,2,1],[1,2,0,1]],[[1,0,2,1],[2,2,3,0],[2,4,2,1],[1,2,0,1]],[[1,0,2,1],[2,2,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,1,1],[1,3,4,1],[2,2,3,0],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[2,2,3,0],[0,1,2,0]],[[2,0,2,1],[2,2,3,0],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[3,2,3,0],[2,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,2,3,0],[3,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,2,3,0],[2,4,2,2],[0,1,1,1]],[[2,0,2,1],[2,2,3,0],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[3,2,3,0],[2,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,2,3,0],[3,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,2,3,0],[2,4,2,2],[0,1,2,0]],[[2,0,2,1],[2,2,3,0],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[3,2,3,0],[2,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,2,3,0],[3,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,2,3,0],[2,4,2,2],[0,2,0,1]],[[1,0,2,1],[2,2,3,0],[2,3,2,2],[0,3,0,1]],[[2,0,2,1],[2,2,3,0],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[3,2,3,0],[2,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,2,3,0],[3,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,2,3,0],[2,4,2,2],[0,2,1,0]],[[1,0,2,1],[2,2,3,0],[2,3,2,2],[0,3,1,0]],[[1,3,1,1],[1,3,3,1],[2,2,3,0],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[2,2,3,0],[0,1,2,0]],[[2,0,2,1],[2,2,3,0],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[3,2,3,0],[2,3,2,2],[1,0,1,1]],[[1,0,2,1],[2,2,3,0],[3,3,2,2],[1,0,1,1]],[[1,0,2,1],[2,2,3,0],[2,4,2,2],[1,0,1,1]],[[1,0,2,1],[2,2,3,0],[2,3,2,2],[2,0,1,1]],[[2,0,2,1],[2,2,3,0],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[3,2,3,0],[2,3,2,2],[1,0,2,0]],[[1,0,2,1],[2,2,3,0],[3,3,2,2],[1,0,2,0]],[[1,0,2,1],[2,2,3,0],[2,4,2,2],[1,0,2,0]],[[1,0,2,1],[2,2,3,0],[2,3,2,2],[2,0,2,0]],[[2,0,2,1],[2,2,3,0],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[3,2,3,0],[2,3,2,2],[1,1,0,1]],[[1,0,2,1],[2,2,3,0],[3,3,2,2],[1,1,0,1]],[[1,0,2,1],[2,2,3,0],[2,4,2,2],[1,1,0,1]],[[1,0,2,1],[2,2,3,0],[2,3,2,2],[2,1,0,1]],[[2,0,2,1],[2,2,3,0],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[3,2,3,0],[2,3,2,2],[1,1,1,0]],[[1,0,2,1],[2,2,3,0],[3,3,2,2],[1,1,1,0]],[[1,0,2,1],[2,2,3,0],[2,4,2,2],[1,1,1,0]],[[1,0,2,1],[2,2,3,0],[2,3,2,2],[2,1,1,0]],[[2,0,2,1],[2,2,3,0],[2,3,2,2],[1,2,0,0]],[[1,0,2,1],[3,2,3,0],[2,3,2,2],[1,2,0,0]],[[1,0,2,1],[2,2,3,0],[3,3,2,2],[1,2,0,0]],[[1,0,2,1],[2,2,3,0],[2,4,2,2],[1,2,0,0]],[[1,0,2,1],[2,2,3,0],[2,3,2,2],[2,2,0,0]],[[1,2,1,1],[1,3,4,1],[2,2,2,1],[1,2,0,0]],[[1,2,1,1],[1,4,3,1],[2,2,2,1],[1,2,0,0]],[[1,3,1,1],[1,3,3,1],[2,2,2,1],[1,2,0,0]],[[2,2,1,1],[1,3,3,1],[2,2,2,1],[1,2,0,0]],[[1,2,1,1],[1,3,4,1],[2,2,2,1],[1,1,1,0]],[[1,2,1,1],[1,4,3,1],[2,2,2,1],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[2,2,2,1],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[2,2,2,1],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[2,2,2,1],[1,1,0,1]],[[1,2,1,1],[1,4,3,1],[2,2,2,1],[1,1,0,1]],[[1,3,1,1],[1,3,3,1],[2,2,2,1],[1,1,0,1]],[[2,2,1,1],[1,3,3,1],[2,2,2,1],[1,1,0,1]],[[1,2,1,1],[1,3,4,1],[2,2,2,1],[1,0,2,0]],[[1,2,1,1],[1,4,3,1],[2,2,2,1],[1,0,2,0]],[[1,3,1,1],[1,3,3,1],[2,2,2,1],[1,0,2,0]],[[2,2,1,1],[1,3,3,1],[2,2,2,1],[1,0,2,0]],[[1,2,1,1],[1,3,4,1],[2,2,2,1],[1,0,1,1]],[[1,2,1,1],[1,4,3,1],[2,2,2,1],[1,0,1,1]],[[1,3,1,1],[1,3,3,1],[2,2,2,1],[1,0,1,1]],[[2,2,1,1],[1,3,3,1],[2,2,2,1],[1,0,1,1]],[[1,2,1,1],[1,3,4,1],[2,2,2,1],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,2,2,1],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,2,2,1],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,2,2,1],[0,2,1,0]],[[2,0,2,1],[2,2,3,0],[2,3,3,2],[0,2,0,0]],[[1,0,2,1],[3,2,3,0],[2,3,3,2],[0,2,0,0]],[[1,0,2,1],[2,2,3,0],[3,3,3,2],[0,2,0,0]],[[1,0,2,1],[2,2,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,1,1],[1,3,4,1],[2,2,2,1],[0,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,2,2,1],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,2,2,1],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,2,2,1],[0,2,0,1]],[[1,2,1,1],[1,3,4,1],[2,2,2,1],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[2,2,2,1],[0,1,2,0]],[[1,3,1,1],[1,3,3,1],[2,2,2,1],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[2,2,2,1],[0,1,2,0]],[[1,2,1,1],[1,3,4,1],[2,2,2,1],[0,1,1,1]],[[1,2,1,1],[1,4,3,1],[2,2,2,1],[0,1,1,1]],[[1,3,1,1],[1,3,3,1],[2,2,2,1],[0,1,1,1]],[[2,2,1,1],[1,3,3,1],[2,2,2,1],[0,1,1,1]],[[1,2,1,1],[1,3,4,1],[2,2,2,0],[1,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,2,2,0],[1,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,2,2,0],[1,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,2,2,0],[1,2,0,1]],[[1,2,1,1],[1,3,4,1],[2,2,2,0],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[2,2,2,0],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[2,2,2,0],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[2,2,2,0],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[2,2,2,0],[1,0,2,1]],[[1,2,1,1],[1,4,3,1],[2,2,2,0],[1,0,2,1]],[[1,3,1,1],[1,3,3,1],[2,2,2,0],[1,0,2,1]],[[2,2,1,1],[1,3,3,1],[2,2,2,0],[1,0,2,1]],[[1,2,1,1],[1,3,4,1],[2,2,2,0],[0,2,1,1]],[[1,2,1,1],[1,4,3,1],[2,2,2,0],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[2,2,2,0],[0,2,1,1]],[[2,0,2,1],[2,2,3,0],[2,3,3,2],[1,1,0,0]],[[1,0,2,1],[3,2,3,0],[2,3,3,2],[1,1,0,0]],[[1,0,2,1],[2,2,3,0],[3,3,3,2],[1,1,0,0]],[[1,0,2,1],[2,2,3,0],[2,4,3,2],[1,1,0,0]],[[1,0,2,1],[2,2,3,0],[2,3,3,2],[2,1,0,0]],[[2,2,1,1],[1,3,3,1],[2,2,2,0],[0,2,1,1]],[[1,2,1,1],[1,3,4,1],[2,2,2,0],[0,1,2,1]],[[1,2,1,1],[1,4,3,1],[2,2,2,0],[0,1,2,1]],[[1,3,1,1],[1,3,3,1],[2,2,2,0],[0,1,2,1]],[[2,2,1,1],[1,3,3,1],[2,2,2,0],[0,1,2,1]],[[1,2,1,1],[1,3,4,1],[2,2,1,2],[1,2,0,0]],[[1,2,1,1],[1,4,3,1],[2,2,1,2],[1,2,0,0]],[[1,3,1,1],[1,3,3,1],[2,2,1,2],[1,2,0,0]],[[2,2,1,1],[1,3,3,1],[2,2,1,2],[1,2,0,0]],[[1,2,1,1],[1,3,4,1],[2,2,1,2],[1,1,1,0]],[[1,2,1,1],[1,4,3,1],[2,2,1,2],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[2,2,1,2],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[2,2,1,2],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[2,2,1,2],[1,1,0,1]],[[1,2,1,1],[1,4,3,1],[2,2,1,2],[1,1,0,1]],[[1,3,1,1],[1,3,3,1],[2,2,1,2],[1,1,0,1]],[[2,2,1,1],[1,3,3,1],[2,2,1,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,1],[2,2,1,2],[1,0,2,0]],[[1,2,1,1],[1,4,3,1],[2,2,1,2],[1,0,2,0]],[[1,3,1,1],[1,3,3,1],[2,2,1,2],[1,0,2,0]],[[2,2,1,1],[1,3,3,1],[2,2,1,2],[1,0,2,0]],[[1,2,1,1],[1,3,4,1],[2,2,1,2],[1,0,1,1]],[[1,2,1,1],[1,4,3,1],[2,2,1,2],[1,0,1,1]],[[1,3,1,1],[1,3,3,1],[2,2,1,2],[1,0,1,1]],[[2,2,1,1],[1,3,3,1],[2,2,1,2],[1,0,1,1]],[[1,2,1,1],[1,3,4,1],[2,2,1,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,2,1,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,2,1,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,2,1,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,1],[2,2,1,2],[0,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,2,1,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,2,1,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,2,1,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,1],[2,2,1,2],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[2,2,1,2],[0,1,2,0]],[[1,3,1,1],[1,3,3,1],[2,2,1,2],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[2,2,1,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,1],[2,2,1,2],[0,1,1,1]],[[1,2,1,1],[1,4,3,1],[2,2,1,2],[0,1,1,1]],[[1,3,1,1],[1,3,3,1],[2,2,1,2],[0,1,1,1]],[[2,2,1,1],[1,3,3,1],[2,2,1,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,1],[2,2,1,1],[1,1,2,0]],[[1,2,1,1],[1,4,3,1],[2,2,1,1],[1,1,2,0]],[[1,3,1,1],[1,3,3,1],[2,2,1,1],[1,1,2,0]],[[1,0,3,1],[2,2,3,1],[0,2,1,2],[1,2,2,1]],[[1,0,2,2],[2,2,3,1],[0,2,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,4,1],[0,2,1,2],[1,2,2,1]],[[1,0,3,1],[2,2,3,1],[0,2,2,2],[1,2,1,1]],[[1,0,2,2],[2,2,3,1],[0,2,2,2],[1,2,1,1]],[[1,0,2,1],[2,2,4,1],[0,2,2,2],[1,2,1,1]],[[1,0,3,1],[2,2,3,1],[0,2,2,2],[1,2,2,0]],[[1,0,2,2],[2,2,3,1],[0,2,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,4,1],[0,2,2,2],[1,2,2,0]],[[1,0,3,1],[2,2,3,1],[0,2,3,0],[1,2,2,1]],[[1,0,2,2],[2,2,3,1],[0,2,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,4,1],[0,2,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[0,2,4,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[0,2,3,0],[2,2,2,1]],[[1,0,2,1],[2,2,3,1],[0,2,3,0],[1,3,2,1]],[[1,0,2,1],[2,2,3,1],[0,2,3,0],[1,2,3,1]],[[1,0,2,1],[2,2,3,1],[0,2,3,0],[1,2,2,2]],[[1,0,3,1],[2,2,3,1],[0,2,3,1],[1,2,1,1]],[[1,0,2,2],[2,2,3,1],[0,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,4,1],[0,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,3,1],[0,2,4,1],[1,2,1,1]],[[1,0,3,1],[2,2,3,1],[0,2,3,1],[1,2,2,0]],[[1,0,2,2],[2,2,3,1],[0,2,3,1],[1,2,2,0]],[[1,0,2,1],[2,2,4,1],[0,2,3,1],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[0,2,4,1],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[0,2,3,1],[2,2,2,0]],[[1,0,2,1],[2,2,3,1],[0,2,3,1],[1,3,2,0]],[[1,0,2,1],[2,2,3,1],[0,2,3,1],[1,2,3,0]],[[2,2,1,1],[1,3,3,1],[2,2,1,1],[1,1,2,0]],[[1,2,1,1],[1,3,4,1],[2,2,1,1],[0,2,2,0]],[[1,2,1,1],[1,4,3,1],[2,2,1,1],[0,2,2,0]],[[1,3,1,1],[1,3,3,1],[2,2,1,1],[0,2,2,0]],[[2,2,1,1],[1,3,3,1],[2,2,1,1],[0,2,2,0]],[[1,0,3,1],[2,2,3,1],[0,3,0,2],[1,2,2,1]],[[1,0,2,2],[2,2,3,1],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,4,1],[0,3,0,2],[1,2,2,1]],[[1,0,3,1],[2,2,3,1],[0,3,1,2],[1,1,2,1]],[[1,0,2,2],[2,2,3,1],[0,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,2,4,1],[0,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,2,3,1],[0,4,2,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[0,3,2,0],[2,2,2,1]],[[1,0,2,1],[2,2,3,1],[0,3,2,0],[1,3,2,1]],[[1,0,2,1],[2,2,3,1],[0,3,2,0],[1,2,3,1]],[[1,0,2,1],[2,2,3,1],[0,3,2,0],[1,2,2,2]],[[1,0,2,1],[2,2,3,1],[0,4,2,1],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[0,3,2,1],[2,2,2,0]],[[1,0,2,1],[2,2,3,1],[0,3,2,1],[1,3,2,0]],[[1,0,2,1],[2,2,3,1],[0,3,2,1],[1,2,3,0]],[[1,0,3,1],[2,2,3,1],[0,3,2,2],[1,0,2,1]],[[1,0,2,2],[2,2,3,1],[0,3,2,2],[1,0,2,1]],[[1,0,2,1],[2,2,4,1],[0,3,2,2],[1,0,2,1]],[[1,0,3,1],[2,2,3,1],[0,3,2,2],[1,1,1,1]],[[1,0,2,2],[2,2,3,1],[0,3,2,2],[1,1,1,1]],[[1,0,2,1],[2,2,4,1],[0,3,2,2],[1,1,1,1]],[[1,0,3,1],[2,2,3,1],[0,3,2,2],[1,1,2,0]],[[1,0,2,2],[2,2,3,1],[0,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,2,4,1],[0,3,2,2],[1,1,2,0]],[[1,0,3,1],[2,2,3,1],[0,3,2,2],[1,2,0,1]],[[1,0,2,2],[2,2,3,1],[0,3,2,2],[1,2,0,1]],[[1,0,2,1],[2,2,4,1],[0,3,2,2],[1,2,0,1]],[[1,0,3,1],[2,2,3,1],[0,3,2,2],[1,2,1,0]],[[1,0,2,2],[2,2,3,1],[0,3,2,2],[1,2,1,0]],[[1,0,2,1],[2,2,4,1],[0,3,2,2],[1,2,1,0]],[[1,0,3,1],[2,2,3,1],[0,3,3,0],[1,1,2,1]],[[1,0,2,2],[2,2,3,1],[0,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,2,4,1],[0,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,2,3,1],[0,4,3,0],[1,1,2,1]],[[1,0,2,1],[2,2,3,1],[0,3,4,0],[1,1,2,1]],[[1,0,2,1],[2,2,3,1],[0,3,3,0],[1,1,3,1]],[[1,0,2,1],[2,2,3,1],[0,3,3,0],[1,1,2,2]],[[1,0,3,1],[2,2,3,1],[0,3,3,0],[1,2,1,1]],[[1,0,2,2],[2,2,3,1],[0,3,3,0],[1,2,1,1]],[[1,0,2,1],[2,2,4,1],[0,3,3,0],[1,2,1,1]],[[1,0,2,1],[2,2,3,1],[0,4,3,0],[1,2,1,1]],[[1,0,2,1],[2,2,3,1],[0,3,4,0],[1,2,1,1]],[[1,0,2,1],[2,2,3,1],[0,3,3,0],[2,2,1,1]],[[1,0,2,1],[2,2,3,1],[0,3,3,0],[1,3,1,1]],[[1,0,3,1],[2,2,3,1],[0,3,3,1],[1,0,2,1]],[[1,0,2,2],[2,2,3,1],[0,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,4,1],[0,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,2,3,1],[0,3,4,1],[1,0,2,1]],[[1,0,3,1],[2,2,3,1],[0,3,3,1],[1,1,1,1]],[[1,0,2,2],[2,2,3,1],[0,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,4,1],[0,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,3,1],[0,4,3,1],[1,1,1,1]],[[1,0,2,1],[2,2,3,1],[0,3,4,1],[1,1,1,1]],[[1,0,3,1],[2,2,3,1],[0,3,3,1],[1,1,2,0]],[[1,0,2,2],[2,2,3,1],[0,3,3,1],[1,1,2,0]],[[1,0,2,1],[2,2,4,1],[0,3,3,1],[1,1,2,0]],[[1,0,2,1],[2,2,3,1],[0,4,3,1],[1,1,2,0]],[[1,0,2,1],[2,2,3,1],[0,3,4,1],[1,1,2,0]],[[1,0,2,1],[2,2,3,1],[0,3,3,1],[1,1,3,0]],[[1,0,3,1],[2,2,3,1],[0,3,3,1],[1,2,0,1]],[[1,0,2,2],[2,2,3,1],[0,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,4,1],[0,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[0,4,3,1],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[0,3,4,1],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[0,3,3,1],[2,2,0,1]],[[1,0,2,1],[2,2,3,1],[0,3,3,1],[1,3,0,1]],[[1,0,3,1],[2,2,3,1],[0,3,3,1],[1,2,1,0]],[[1,0,2,2],[2,2,3,1],[0,3,3,1],[1,2,1,0]],[[1,0,2,1],[2,2,4,1],[0,3,3,1],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[0,4,3,1],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[0,3,4,1],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[0,3,3,1],[2,2,1,0]],[[1,0,2,1],[2,2,3,1],[0,3,3,1],[1,3,1,0]],[[1,2,1,1],[1,3,4,1],[2,2,1,0],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[2,2,1,0],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[2,2,1,0],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[2,2,1,0],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[2,2,1,0],[0,2,2,1]],[[1,2,1,1],[1,4,3,1],[2,2,1,0],[0,2,2,1]],[[1,3,1,1],[1,3,3,1],[2,2,1,0],[0,2,2,1]],[[2,2,1,1],[1,3,3,1],[2,2,1,0],[0,2,2,1]],[[1,0,3,1],[2,2,3,1],[0,3,3,2],[1,1,0,1]],[[1,0,2,2],[2,2,3,1],[0,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,2,4,1],[0,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,1],[2,2,0,2],[1,1,2,0]],[[1,2,1,1],[1,4,3,1],[2,2,0,2],[1,1,2,0]],[[1,3,1,1],[1,3,3,1],[2,2,0,2],[1,1,2,0]],[[2,2,1,1],[1,3,3,1],[2,2,0,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,1],[2,2,0,2],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[2,2,0,2],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[2,2,0,2],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[2,2,0,2],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[2,2,0,2],[1,0,2,1]],[[1,2,1,1],[1,4,3,1],[2,2,0,2],[1,0,2,1]],[[1,3,1,1],[1,3,3,1],[2,2,0,2],[1,0,2,1]],[[2,2,1,1],[1,3,3,1],[2,2,0,2],[1,0,2,1]],[[1,2,1,1],[1,3,4,1],[2,2,0,2],[0,2,2,0]],[[1,2,1,1],[1,4,3,1],[2,2,0,2],[0,2,2,0]],[[1,3,1,1],[1,3,3,1],[2,2,0,2],[0,2,2,0]],[[2,2,1,1],[1,3,3,1],[2,2,0,2],[0,2,2,0]],[[1,2,1,1],[1,3,4,1],[2,2,0,2],[0,2,1,1]],[[1,0,3,1],[2,2,3,1],[1,2,1,2],[0,2,2,1]],[[1,0,2,2],[2,2,3,1],[1,2,1,2],[0,2,2,1]],[[1,0,2,1],[2,2,4,1],[1,2,1,2],[0,2,2,1]],[[1,0,3,1],[2,2,3,1],[1,2,2,2],[0,2,1,1]],[[1,0,2,2],[2,2,3,1],[1,2,2,2],[0,2,1,1]],[[1,0,2,1],[2,2,4,1],[1,2,2,2],[0,2,1,1]],[[1,0,3,1],[2,2,3,1],[1,2,2,2],[0,2,2,0]],[[1,0,2,2],[2,2,3,1],[1,2,2,2],[0,2,2,0]],[[1,0,2,1],[2,2,4,1],[1,2,2,2],[0,2,2,0]],[[1,2,1,1],[1,4,3,1],[2,2,0,2],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[2,2,0,2],[0,2,1,1]],[[2,2,1,1],[1,3,3,1],[2,2,0,2],[0,2,1,1]],[[1,2,1,1],[1,3,4,1],[2,2,0,2],[0,1,2,1]],[[1,2,1,1],[1,4,3,1],[2,2,0,2],[0,1,2,1]],[[1,3,1,1],[1,3,3,1],[2,2,0,2],[0,1,2,1]],[[2,2,1,1],[1,3,3,1],[2,2,0,2],[0,1,2,1]],[[1,0,3,1],[2,2,3,1],[1,2,3,0],[0,2,2,1]],[[1,0,2,2],[2,2,3,1],[1,2,3,0],[0,2,2,1]],[[1,0,2,1],[2,2,4,1],[1,2,3,0],[0,2,2,1]],[[1,0,2,1],[2,2,3,1],[1,2,4,0],[0,2,2,1]],[[1,0,2,1],[2,2,3,1],[1,2,3,0],[0,3,2,1]],[[1,0,2,1],[2,2,3,1],[1,2,3,0],[0,2,3,1]],[[1,0,2,1],[2,2,3,1],[1,2,3,0],[0,2,2,2]],[[1,0,3,1],[2,2,3,1],[1,2,3,1],[0,2,1,1]],[[1,0,2,2],[2,2,3,1],[1,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,4,1],[1,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,2,3,1],[1,2,4,1],[0,2,1,1]],[[1,0,3,1],[2,2,3,1],[1,2,3,1],[0,2,2,0]],[[1,0,2,2],[2,2,3,1],[1,2,3,1],[0,2,2,0]],[[1,0,2,1],[2,2,4,1],[1,2,3,1],[0,2,2,0]],[[1,0,2,1],[2,2,3,1],[1,2,4,1],[0,2,2,0]],[[1,0,2,1],[2,2,3,1],[1,2,3,1],[0,3,2,0]],[[1,0,2,1],[2,2,3,1],[1,2,3,1],[0,2,3,0]],[[1,2,1,1],[1,4,3,1],[2,2,0,1],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[2,2,0,1],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[2,2,0,1],[1,2,2,0]],[[1,2,1,1],[1,3,4,1],[2,2,0,1],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[2,2,0,1],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[2,2,0,1],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[2,2,0,1],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[2,2,0,1],[0,2,2,1]],[[1,2,1,1],[1,4,3,1],[2,2,0,1],[0,2,2,1]],[[1,3,1,1],[1,3,3,1],[2,2,0,1],[0,2,2,1]],[[2,2,1,1],[1,3,3,1],[2,2,0,1],[0,2,2,1]],[[1,2,1,1],[1,4,3,1],[2,2,0,0],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[2,2,0,0],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[2,2,0,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[1,4,0,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,0,1],[2,2,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,0,1],[1,3,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,0,1],[1,2,3,1]],[[1,0,2,1],[2,2,3,1],[1,3,0,1],[1,2,2,2]],[[1,0,3,1],[2,2,3,1],[1,3,0,2],[0,2,2,1]],[[1,0,2,2],[2,2,3,1],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,4,1],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,2,3,1],[1,4,0,2],[1,2,1,1]],[[1,0,2,1],[2,2,3,1],[1,3,0,2],[2,2,1,1]],[[1,0,2,1],[2,2,3,1],[1,3,0,2],[1,3,1,1]],[[1,0,2,1],[2,2,3,1],[1,4,0,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,0,2],[2,2,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,0,2],[1,3,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,0,2],[1,2,3,0]],[[1,0,2,1],[2,2,3,1],[1,4,1,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,1,0],[2,2,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,1,0],[1,3,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,1,0],[1,2,3,1]],[[1,0,2,1],[2,2,3,1],[1,3,1,0],[1,2,2,2]],[[1,0,2,1],[2,2,3,1],[1,4,1,1],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,1,1],[2,2,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,1,1],[1,3,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,1,1],[1,2,3,0]],[[1,0,3,1],[2,2,3,1],[1,3,1,2],[0,1,2,1]],[[1,0,2,2],[2,2,3,1],[1,3,1,2],[0,1,2,1]],[[1,0,2,1],[2,2,4,1],[1,3,1,2],[0,1,2,1]],[[1,0,3,1],[2,2,3,1],[1,3,1,2],[1,0,2,1]],[[1,0,2,2],[2,2,3,1],[1,3,1,2],[1,0,2,1]],[[1,0,2,1],[2,2,4,1],[1,3,1,2],[1,0,2,1]],[[1,0,2,1],[2,2,3,1],[1,4,1,2],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[1,3,1,2],[2,2,0,1]],[[1,0,2,1],[2,2,3,1],[1,3,1,2],[1,3,0,1]],[[1,0,2,1],[2,2,3,1],[1,4,1,2],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[1,3,1,2],[2,2,1,0]],[[1,0,2,1],[2,2,3,1],[1,3,1,2],[1,3,1,0]],[[1,0,2,1],[2,2,3,1],[1,4,2,0],[0,2,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,2,0],[0,3,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,2,0],[0,2,3,1]],[[1,0,2,1],[2,2,3,1],[1,3,2,0],[0,2,2,2]],[[1,0,2,1],[2,2,3,1],[1,4,2,0],[1,2,1,1]],[[1,0,2,1],[2,2,3,1],[1,3,2,0],[2,2,1,1]],[[1,0,2,1],[2,2,3,1],[1,3,2,0],[1,3,1,1]],[[1,0,2,1],[2,2,3,1],[1,4,2,1],[0,2,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,2,1],[0,3,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,2,1],[0,2,3,0]],[[1,0,2,1],[2,2,3,1],[1,4,2,1],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[1,3,2,1],[2,2,0,1]],[[1,0,2,1],[2,2,3,1],[1,3,2,1],[1,3,0,1]],[[1,0,2,1],[2,2,3,1],[1,4,2,1],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[1,3,2,1],[2,2,1,0]],[[1,0,2,1],[2,2,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,1,1],[1,3,4,1],[2,1,3,2],[1,0,0,1]],[[1,2,1,1],[1,4,3,1],[2,1,3,2],[1,0,0,1]],[[1,3,1,1],[1,3,3,1],[2,1,3,2],[1,0,0,1]],[[2,2,1,1],[1,3,3,1],[2,1,3,2],[1,0,0,1]],[[1,0,3,1],[2,2,3,1],[1,3,2,2],[0,0,2,1]],[[1,0,2,2],[2,2,3,1],[1,3,2,2],[0,0,2,1]],[[1,0,2,1],[2,2,4,1],[1,3,2,2],[0,0,2,1]],[[1,0,3,1],[2,2,3,1],[1,3,2,2],[0,1,1,1]],[[1,0,2,2],[2,2,3,1],[1,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,2,4,1],[1,3,2,2],[0,1,1,1]],[[1,0,3,1],[2,2,3,1],[1,3,2,2],[0,1,2,0]],[[1,0,2,2],[2,2,3,1],[1,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,2,4,1],[1,3,2,2],[0,1,2,0]],[[1,0,3,1],[2,2,3,1],[1,3,2,2],[0,2,0,1]],[[1,0,2,2],[2,2,3,1],[1,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,2,4,1],[1,3,2,2],[0,2,0,1]],[[1,0,3,1],[2,2,3,1],[1,3,2,2],[0,2,1,0]],[[1,0,2,2],[2,2,3,1],[1,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,2,4,1],[1,3,2,2],[0,2,1,0]],[[1,0,3,1],[2,2,3,1],[1,3,2,2],[1,0,1,1]],[[1,0,2,2],[2,2,3,1],[1,3,2,2],[1,0,1,1]],[[1,0,2,1],[2,2,4,1],[1,3,2,2],[1,0,1,1]],[[1,0,3,1],[2,2,3,1],[1,3,2,2],[1,0,2,0]],[[1,0,2,2],[2,2,3,1],[1,3,2,2],[1,0,2,0]],[[1,0,2,1],[2,2,4,1],[1,3,2,2],[1,0,2,0]],[[1,0,3,1],[2,2,3,1],[1,3,2,2],[1,1,0,1]],[[1,0,2,2],[2,2,3,1],[1,3,2,2],[1,1,0,1]],[[1,0,2,1],[2,2,4,1],[1,3,2,2],[1,1,0,1]],[[1,0,3,1],[2,2,3,1],[1,3,2,2],[1,1,1,0]],[[1,0,2,2],[2,2,3,1],[1,3,2,2],[1,1,1,0]],[[1,0,2,1],[2,2,4,1],[1,3,2,2],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[2,1,3,2],[0,1,0,1]],[[1,2,1,1],[1,4,3,1],[2,1,3,2],[0,1,0,1]],[[1,3,1,1],[1,3,3,1],[2,1,3,2],[0,1,0,1]],[[2,2,1,1],[1,3,3,1],[2,1,3,2],[0,1,0,1]],[[1,0,3,1],[2,2,3,1],[1,3,3,0],[0,1,2,1]],[[1,0,2,2],[2,2,3,1],[1,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,2,4,1],[1,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,2,3,1],[1,4,3,0],[0,1,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,4,0],[0,1,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,3,0],[0,1,3,1]],[[1,0,2,1],[2,2,3,1],[1,3,3,0],[0,1,2,2]],[[1,0,3,1],[2,2,3,1],[1,3,3,0],[0,2,1,1]],[[1,0,2,2],[2,2,3,1],[1,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,2,4,1],[1,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,2,3,1],[1,4,3,0],[0,2,1,1]],[[1,0,2,1],[2,2,3,1],[1,3,4,0],[0,2,1,1]],[[1,0,2,1],[2,2,3,1],[1,3,3,0],[0,3,1,1]],[[1,0,3,1],[2,2,3,1],[1,3,3,0],[1,0,2,1]],[[1,0,2,2],[2,2,3,1],[1,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,2,4,1],[1,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,2,3,1],[1,4,3,0],[1,0,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,4,0],[1,0,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,3,0],[1,0,3,1]],[[1,0,2,1],[2,2,3,1],[1,3,3,0],[1,0,2,2]],[[1,0,3,1],[2,2,3,1],[1,3,3,0],[1,1,1,1]],[[1,0,2,2],[2,2,3,1],[1,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,2,4,1],[1,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,2,3,1],[1,4,3,0],[1,1,1,1]],[[1,0,2,1],[2,2,3,1],[1,3,4,0],[1,1,1,1]],[[1,0,2,1],[2,2,3,1],[1,4,3,0],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[1,3,3,0],[2,2,1,0]],[[1,0,2,1],[2,2,3,1],[1,3,3,0],[1,3,1,0]],[[1,0,3,1],[2,2,3,1],[1,3,3,1],[0,0,2,1]],[[1,0,2,2],[2,2,3,1],[1,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,2,4,1],[1,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,2,3,1],[1,3,4,1],[0,0,2,1]],[[1,0,3,1],[2,2,3,1],[1,3,3,1],[0,1,1,1]],[[1,0,2,2],[2,2,3,1],[1,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,2,4,1],[1,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,2,3,1],[1,4,3,1],[0,1,1,1]],[[1,0,2,1],[2,2,3,1],[1,3,4,1],[0,1,1,1]],[[1,0,3,1],[2,2,3,1],[1,3,3,1],[0,1,2,0]],[[1,0,2,2],[2,2,3,1],[1,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,2,4,1],[1,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,2,3,1],[1,4,3,1],[0,1,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,4,1],[0,1,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,3,1],[0,1,3,0]],[[1,0,3,1],[2,2,3,1],[1,3,3,1],[0,2,0,1]],[[1,0,2,2],[2,2,3,1],[1,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,2,4,1],[1,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,2,3,1],[1,4,3,1],[0,2,0,1]],[[1,0,2,1],[2,2,3,1],[1,3,4,1],[0,2,0,1]],[[1,0,2,1],[2,2,3,1],[1,3,3,1],[0,3,0,1]],[[1,0,3,1],[2,2,3,1],[1,3,3,1],[0,2,1,0]],[[1,0,2,2],[2,2,3,1],[1,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,2,4,1],[1,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[1,4,3,1],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[1,3,4,1],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[1,3,3,1],[0,3,1,0]],[[1,0,3,1],[2,2,3,1],[1,3,3,1],[1,0,1,1]],[[1,0,2,2],[2,2,3,1],[1,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,2,4,1],[1,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,2,3,1],[1,4,3,1],[1,0,1,1]],[[1,0,2,1],[2,2,3,1],[1,3,4,1],[1,0,1,1]],[[1,0,3,1],[2,2,3,1],[1,3,3,1],[1,0,2,0]],[[1,0,2,2],[2,2,3,1],[1,3,3,1],[1,0,2,0]],[[1,0,2,1],[2,2,4,1],[1,3,3,1],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[1,4,3,1],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,4,1],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[1,3,3,1],[1,0,3,0]],[[1,0,3,1],[2,2,3,1],[1,3,3,1],[1,1,0,1]],[[1,0,2,2],[2,2,3,1],[1,3,3,1],[1,1,0,1]],[[1,0,2,1],[2,2,4,1],[1,3,3,1],[1,1,0,1]],[[1,0,2,1],[2,2,3,1],[1,4,3,1],[1,1,0,1]],[[1,0,2,1],[2,2,3,1],[1,3,4,1],[1,1,0,1]],[[1,0,3,1],[2,2,3,1],[1,3,3,1],[1,1,1,0]],[[1,0,2,2],[2,2,3,1],[1,3,3,1],[1,1,1,0]],[[1,0,2,1],[2,2,4,1],[1,3,3,1],[1,1,1,0]],[[1,0,2,1],[2,2,3,1],[1,4,3,1],[1,1,1,0]],[[1,0,2,1],[2,2,3,1],[1,3,4,1],[1,1,1,0]],[[1,2,1,1],[1,3,3,1],[2,1,4,1],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[2,1,3,1],[1,1,1,0]],[[1,2,1,1],[1,4,3,1],[2,1,3,1],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[2,1,3,1],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[2,1,3,1],[1,1,1,0]],[[1,2,1,1],[1,3,3,1],[2,1,4,1],[1,1,0,1]],[[1,2,1,1],[1,3,4,1],[2,1,3,1],[1,1,0,1]],[[1,2,1,1],[1,4,3,1],[2,1,3,1],[1,1,0,1]],[[1,3,1,1],[1,3,3,1],[2,1,3,1],[1,1,0,1]],[[2,2,1,1],[1,3,3,1],[2,1,3,1],[1,1,0,1]],[[1,2,1,1],[1,3,3,1],[2,1,3,1],[1,0,3,0]],[[1,2,1,1],[1,3,3,1],[2,1,4,1],[1,0,2,0]],[[1,2,1,1],[1,3,4,1],[2,1,3,1],[1,0,2,0]],[[1,2,1,1],[1,4,3,1],[2,1,3,1],[1,0,2,0]],[[1,3,1,1],[1,3,3,1],[2,1,3,1],[1,0,2,0]],[[2,2,1,1],[1,3,3,1],[2,1,3,1],[1,0,2,0]],[[1,2,1,1],[1,3,3,1],[2,1,4,1],[1,0,1,1]],[[1,2,1,1],[1,3,4,1],[2,1,3,1],[1,0,1,1]],[[1,0,3,1],[2,2,3,1],[1,3,3,2],[0,1,0,1]],[[1,0,2,2],[2,2,3,1],[1,3,3,2],[0,1,0,1]],[[1,0,2,1],[2,2,4,1],[1,3,3,2],[0,1,0,1]],[[1,2,1,1],[1,4,3,1],[2,1,3,1],[1,0,1,1]],[[1,3,1,1],[1,3,3,1],[2,1,3,1],[1,0,1,1]],[[2,2,1,1],[1,3,3,1],[2,1,3,1],[1,0,1,1]],[[1,2,1,1],[1,3,3,1],[2,1,4,1],[0,2,1,0]],[[1,2,1,1],[1,3,4,1],[2,1,3,1],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,1,3,1],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,1,3,1],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,1,3,1],[0,2,1,0]],[[1,2,1,1],[1,3,3,1],[2,1,4,1],[0,2,0,1]],[[1,2,1,1],[1,3,4,1],[2,1,3,1],[0,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,1,3,1],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,1,3,1],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,1,3,1],[0,2,0,1]],[[1,2,1,1],[1,3,3,1],[2,1,3,1],[0,1,3,0]],[[1,0,3,1],[2,2,3,1],[1,3,3,2],[1,0,0,1]],[[1,0,2,2],[2,2,3,1],[1,3,3,2],[1,0,0,1]],[[1,0,2,1],[2,2,4,1],[1,3,3,2],[1,0,0,1]],[[1,2,1,1],[1,3,3,1],[2,1,4,1],[0,1,2,0]],[[1,2,1,1],[1,3,4,1],[2,1,3,1],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[2,1,3,1],[0,1,2,0]],[[1,3,1,1],[1,3,3,1],[2,1,3,1],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[2,1,3,1],[0,1,2,0]],[[1,2,1,1],[1,3,3,1],[2,1,4,1],[0,1,1,1]],[[1,2,1,1],[1,3,4,1],[2,1,3,1],[0,1,1,1]],[[1,2,1,1],[1,4,3,1],[2,1,3,1],[0,1,1,1]],[[1,3,1,1],[1,3,3,1],[2,1,3,1],[0,1,1,1]],[[2,2,1,1],[1,3,3,1],[2,1,3,1],[0,1,1,1]],[[1,2,1,1],[1,3,3,1],[2,1,4,1],[0,0,2,1]],[[1,2,1,1],[1,3,4,1],[2,1,3,1],[0,0,2,1]],[[1,2,1,1],[1,4,3,1],[2,1,3,1],[0,0,2,1]],[[1,3,1,1],[1,3,3,1],[2,1,3,1],[0,0,2,1]],[[2,2,1,1],[1,3,3,1],[2,1,3,1],[0,0,2,1]],[[1,2,1,1],[1,3,4,1],[2,1,3,0],[1,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,1,3,0],[1,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,1,3,0],[1,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,1,3,0],[1,2,1,0]],[[1,2,1,1],[1,3,3,1],[2,1,4,0],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[2,1,3,0],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[2,1,3,0],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[2,1,3,0],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[2,1,3,0],[1,1,1,1]],[[1,2,1,1],[1,3,3,1],[2,1,3,0],[1,0,2,2]],[[1,2,1,1],[1,3,3,1],[2,1,3,0],[1,0,3,1]],[[1,2,1,1],[1,3,3,1],[2,1,4,0],[1,0,2,1]],[[1,2,1,1],[1,3,4,1],[2,1,3,0],[1,0,2,1]],[[1,2,1,1],[1,4,3,1],[2,1,3,0],[1,0,2,1]],[[1,3,1,1],[1,3,3,1],[2,1,3,0],[1,0,2,1]],[[2,2,1,1],[1,3,3,1],[2,1,3,0],[1,0,2,1]],[[1,2,1,1],[1,3,3,1],[2,1,4,0],[0,2,1,1]],[[1,2,1,1],[1,3,4,1],[2,1,3,0],[0,2,1,1]],[[1,2,1,1],[1,4,3,1],[2,1,3,0],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[2,1,3,0],[0,2,1,1]],[[2,2,1,1],[1,3,3,1],[2,1,3,0],[0,2,1,1]],[[1,2,1,1],[1,3,3,1],[2,1,3,0],[0,1,2,2]],[[1,2,1,1],[1,3,3,1],[2,1,3,0],[0,1,3,1]],[[1,2,1,1],[1,3,3,1],[2,1,4,0],[0,1,2,1]],[[1,2,1,1],[1,3,4,1],[2,1,3,0],[0,1,2,1]],[[1,2,1,1],[1,4,3,1],[2,1,3,0],[0,1,2,1]],[[1,3,1,1],[1,3,3,1],[2,1,3,0],[0,1,2,1]],[[2,2,1,1],[1,3,3,1],[2,1,3,0],[0,1,2,1]],[[1,0,3,1],[2,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,2,2],[2,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,2,4,1],[2,0,1,2],[1,2,2,1]],[[1,0,3,1],[2,2,3,1],[2,0,2,2],[1,2,1,1]],[[1,0,2,2],[2,2,3,1],[2,0,2,2],[1,2,1,1]],[[1,0,2,1],[2,2,4,1],[2,0,2,2],[1,2,1,1]],[[1,0,3,1],[2,2,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,2,2],[2,2,3,1],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[2,2,4,1],[2,0,2,2],[1,2,2,0]],[[2,0,2,1],[2,2,3,1],[2,0,3,0],[1,2,2,1]],[[1,0,3,1],[2,2,3,1],[2,0,3,0],[1,2,2,1]],[[1,0,2,2],[2,2,3,1],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[3,2,3,1],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,4,1],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[3,0,3,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,0,4,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,0,3,0],[2,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,0,3,0],[1,3,2,1]],[[1,0,2,1],[2,2,3,1],[2,0,3,0],[1,2,3,1]],[[1,0,2,1],[2,2,3,1],[2,0,3,0],[1,2,2,2]],[[1,0,3,1],[2,2,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,2,2],[2,2,3,1],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,4,1],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[2,2,3,1],[2,0,4,1],[1,2,1,1]],[[2,0,2,1],[2,2,3,1],[2,0,3,1],[1,2,2,0]],[[1,0,3,1],[2,2,3,1],[2,0,3,1],[1,2,2,0]],[[1,0,2,2],[2,2,3,1],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[3,2,3,1],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[2,2,4,1],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[3,0,3,1],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,0,4,1],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,0,3,1],[2,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,0,3,1],[1,3,2,0]],[[1,0,2,1],[2,2,3,1],[2,0,3,1],[1,2,3,0]],[[1,2,1,1],[1,3,4,1],[2,1,2,2],[1,1,1,0]],[[1,2,1,1],[1,4,3,1],[2,1,2,2],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[2,1,2,2],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[2,1,2,2],[1,1,1,0]],[[1,0,3,1],[2,2,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,2,2],[2,2,3,1],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,4,1],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[2,1,2,2],[1,1,0,1]],[[1,2,1,1],[1,4,3,1],[2,1,2,2],[1,1,0,1]],[[1,3,1,1],[1,3,3,1],[2,1,2,2],[1,1,0,1]],[[2,2,1,1],[1,3,3,1],[2,1,2,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,1],[2,1,2,2],[1,0,2,0]],[[1,2,1,1],[1,4,3,1],[2,1,2,2],[1,0,2,0]],[[1,3,1,1],[1,3,3,1],[2,1,2,2],[1,0,2,0]],[[2,2,1,1],[1,3,3,1],[2,1,2,2],[1,0,2,0]],[[1,2,1,1],[1,3,4,1],[2,1,2,2],[1,0,1,1]],[[1,2,1,1],[1,4,3,1],[2,1,2,2],[1,0,1,1]],[[1,3,1,1],[1,3,3,1],[2,1,2,2],[1,0,1,1]],[[2,2,1,1],[1,3,3,1],[2,1,2,2],[1,0,1,1]],[[1,2,1,1],[1,3,4,1],[2,1,2,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,1,2,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,1,2,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,1,2,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,1],[2,1,2,2],[0,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,1,2,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,1,2,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,1,2,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,1],[2,1,2,2],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[2,1,2,2],[0,1,2,0]],[[1,3,1,1],[1,3,3,1],[2,1,2,2],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[2,1,2,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,1],[2,1,2,2],[0,1,1,1]],[[1,2,1,1],[1,4,3,1],[2,1,2,2],[0,1,1,1]],[[1,3,1,1],[1,3,3,1],[2,1,2,2],[0,1,1,1]],[[2,2,1,1],[1,3,3,1],[2,1,2,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,1],[2,1,2,2],[0,0,2,1]],[[1,2,1,1],[1,4,3,1],[2,1,2,2],[0,0,2,1]],[[1,3,1,1],[1,3,3,1],[2,1,2,2],[0,0,2,1]],[[2,2,1,1],[1,3,3,1],[2,1,2,2],[0,0,2,1]],[[2,0,2,1],[2,2,3,1],[2,2,0,1],[1,2,2,1]],[[1,0,2,1],[3,2,3,1],[2,2,0,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[3,2,0,1],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,2,0,1],[2,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,2,0,1],[1,3,2,1]],[[1,0,2,1],[2,2,3,1],[2,2,0,1],[1,2,3,1]],[[1,0,2,1],[2,2,3,1],[2,2,0,1],[1,2,2,2]],[[2,0,2,1],[2,2,3,1],[2,2,0,2],[1,2,1,1]],[[1,0,2,1],[3,2,3,1],[2,2,0,2],[1,2,1,1]],[[1,0,2,1],[2,2,3,1],[3,2,0,2],[1,2,1,1]],[[1,0,2,1],[2,2,3,1],[2,2,0,2],[2,2,1,1]],[[1,0,2,1],[2,2,3,1],[2,2,0,2],[1,3,1,1]],[[2,0,2,1],[2,2,3,1],[2,2,0,2],[1,2,2,0]],[[1,0,2,1],[3,2,3,1],[2,2,0,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[3,2,0,2],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,2,0,2],[2,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,2,0,2],[1,3,2,0]],[[1,0,2,1],[2,2,3,1],[2,2,0,2],[1,2,3,0]],[[2,0,2,1],[2,2,3,1],[2,2,1,0],[1,2,2,1]],[[1,0,2,1],[3,2,3,1],[2,2,1,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[3,2,1,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,2,1,0],[2,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,2,1,0],[1,3,2,1]],[[1,0,2,1],[2,2,3,1],[2,2,1,0],[1,2,3,1]],[[1,0,2,1],[2,2,3,1],[2,2,1,0],[1,2,2,2]],[[2,0,2,1],[2,2,3,1],[2,2,1,1],[1,2,2,0]],[[1,0,2,1],[3,2,3,1],[2,2,1,1],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[3,2,1,1],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,2,1,1],[2,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,2,1,1],[1,3,2,0]],[[1,0,2,1],[2,2,3,1],[2,2,1,1],[1,2,3,0]],[[2,0,2,1],[2,2,3,1],[2,2,1,2],[1,2,0,1]],[[1,0,2,1],[3,2,3,1],[2,2,1,2],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[3,2,1,2],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[2,2,1,2],[2,2,0,1]],[[1,0,2,1],[2,2,3,1],[2,2,1,2],[1,3,0,1]],[[2,0,2,1],[2,2,3,1],[2,2,1,2],[1,2,1,0]],[[1,0,2,1],[3,2,3,1],[2,2,1,2],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[3,2,1,2],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,2,1,2],[2,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,2,1,2],[1,3,1,0]],[[1,2,1,1],[1,3,4,1],[2,1,2,1],[1,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,1,2,1],[1,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,1,2,1],[1,2,1,0]],[[2,0,2,1],[2,2,3,1],[2,2,2,0],[1,2,1,1]],[[1,0,2,1],[3,2,3,1],[2,2,2,0],[1,2,1,1]],[[1,0,2,1],[2,2,3,1],[3,2,2,0],[1,2,1,1]],[[1,0,2,1],[2,2,3,1],[2,2,2,0],[2,2,1,1]],[[1,0,2,1],[2,2,3,1],[2,2,2,0],[1,3,1,1]],[[2,0,2,1],[2,2,3,1],[2,2,2,1],[1,2,0,1]],[[1,0,2,1],[3,2,3,1],[2,2,2,1],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[3,2,2,1],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[2,2,2,1],[2,2,0,1]],[[1,0,2,1],[2,2,3,1],[2,2,2,1],[1,3,0,1]],[[2,0,2,1],[2,2,3,1],[2,2,2,1],[1,2,1,0]],[[1,0,2,1],[3,2,3,1],[2,2,2,1],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[3,2,2,1],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,2,2,1],[2,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,2,2,1],[1,3,1,0]],[[2,2,1,1],[1,3,3,1],[2,1,2,1],[1,2,1,0]],[[1,2,1,1],[1,3,4,1],[2,1,2,1],[1,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,1,2,1],[1,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,1,2,1],[1,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,1,2,1],[1,2,0,1]],[[1,2,1,1],[1,3,4,1],[2,1,2,0],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[2,1,2,0],[1,2,1,1]],[[1,3,1,1],[1,3,3,1],[2,1,2,0],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[2,1,2,0],[1,2,1,1]],[[1,2,1,1],[1,3,4,1],[2,1,1,2],[1,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,1,1,2],[1,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,1,1,2],[1,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,1,1,2],[1,2,1,0]],[[1,2,1,1],[1,3,4,1],[2,1,1,2],[1,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,1,1,2],[1,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,1,1,2],[1,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,1,1,2],[1,2,0,1]],[[1,2,1,1],[1,3,4,1],[2,1,1,2],[1,0,2,1]],[[1,2,1,1],[1,4,3,1],[2,1,1,2],[1,0,2,1]],[[1,3,1,1],[1,3,3,1],[2,1,1,2],[1,0,2,1]],[[2,2,1,1],[1,3,3,1],[2,1,1,2],[1,0,2,1]],[[1,2,1,1],[1,3,4,1],[2,1,1,2],[0,1,2,1]],[[2,0,2,1],[2,2,3,1],[2,2,3,0],[1,2,1,0]],[[1,0,2,1],[3,2,3,1],[2,2,3,0],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[3,2,3,0],[1,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,2,3,0],[2,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,2,3,0],[1,3,1,0]],[[1,2,1,1],[1,4,3,1],[2,1,1,2],[0,1,2,1]],[[1,3,1,1],[1,3,3,1],[2,1,1,2],[0,1,2,1]],[[2,2,1,1],[1,3,3,1],[2,1,1,2],[0,1,2,1]],[[1,2,1,1],[1,3,4,1],[2,1,1,1],[1,2,2,0]],[[1,2,1,1],[1,4,3,1],[2,1,1,1],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[2,1,1,1],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[2,1,1,1],[1,2,2,0]],[[1,2,1,1],[1,3,4,1],[2,1,1,0],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[2,1,1,0],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[2,1,1,0],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[2,1,1,0],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[2,1,0,2],[1,2,2,0]],[[1,2,1,1],[1,4,3,1],[2,1,0,2],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[2,1,0,2],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[2,1,0,2],[1,2,2,0]],[[1,2,1,1],[1,3,4,1],[2,1,0,2],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[2,1,0,2],[1,2,1,1]],[[1,3,1,1],[1,3,3,1],[2,1,0,2],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[2,1,0,2],[1,2,1,1]],[[1,2,1,1],[1,3,4,1],[2,1,0,2],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[2,1,0,2],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[2,1,0,2],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[2,1,0,2],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[2,1,0,2],[0,2,2,1]],[[1,2,1,1],[1,4,3,1],[2,1,0,2],[0,2,2,1]],[[1,3,1,1],[1,3,3,1],[2,1,0,2],[0,2,2,1]],[[2,2,1,1],[1,3,3,1],[2,1,0,2],[0,2,2,1]],[[1,2,1,1],[1,3,4,1],[2,1,0,1],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[2,1,0,1],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[2,1,0,1],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[2,1,0,1],[1,2,2,1]],[[1,2,1,1],[1,3,3,1],[2,0,4,1],[1,2,1,0]],[[1,2,1,1],[1,3,4,1],[2,0,3,1],[1,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,0,3,1],[1,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,0,3,1],[1,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,0,3,1],[1,2,1,0]],[[1,2,1,1],[1,3,3,1],[2,0,4,1],[1,2,0,1]],[[1,2,1,1],[1,3,4,1],[2,0,3,1],[1,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,0,3,1],[1,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,0,3,1],[1,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,0,3,1],[1,2,0,1]],[[1,2,1,1],[1,3,3,1],[2,0,3,1],[1,1,3,0]],[[2,0,2,1],[2,2,3,1],[2,3,0,0],[1,2,2,1]],[[1,0,2,1],[3,2,3,1],[2,3,0,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[3,3,0,0],[1,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,3,0,0],[2,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,3,0,0],[1,3,2,1]],[[2,0,2,1],[2,2,3,1],[2,3,0,1],[0,2,2,1]],[[1,0,2,1],[3,2,3,1],[2,3,0,1],[0,2,2,1]],[[1,0,2,1],[2,2,3,1],[3,3,0,1],[0,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,4,0,1],[0,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,3,0,1],[0,3,2,1]],[[1,0,2,1],[2,2,3,1],[2,3,0,1],[0,2,3,1]],[[1,0,2,1],[2,2,3,1],[2,3,0,1],[0,2,2,2]],[[2,0,2,1],[2,2,3,1],[2,3,0,1],[1,1,2,1]],[[1,0,2,1],[3,2,3,1],[2,3,0,1],[1,1,2,1]],[[1,0,2,1],[2,2,3,1],[3,3,0,1],[1,1,2,1]],[[1,0,2,1],[2,2,3,1],[2,4,0,1],[1,1,2,1]],[[1,0,2,1],[2,2,3,1],[2,3,0,1],[2,1,2,1]],[[2,0,2,1],[2,2,3,1],[2,3,0,1],[1,2,2,0]],[[1,0,2,1],[3,2,3,1],[2,3,0,1],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[3,3,0,1],[1,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,3,0,1],[2,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,3,0,1],[1,3,2,0]],[[2,0,2,1],[2,2,3,1],[2,3,0,2],[0,1,2,1]],[[1,0,2,1],[3,2,3,1],[2,3,0,2],[0,1,2,1]],[[1,0,2,1],[2,2,3,1],[3,3,0,2],[0,1,2,1]],[[1,0,2,1],[2,2,3,1],[2,4,0,2],[0,1,2,1]],[[2,0,2,1],[2,2,3,1],[2,3,0,2],[0,2,1,1]],[[1,0,2,1],[3,2,3,1],[2,3,0,2],[0,2,1,1]],[[1,0,2,1],[2,2,3,1],[3,3,0,2],[0,2,1,1]],[[1,0,2,1],[2,2,3,1],[2,4,0,2],[0,2,1,1]],[[1,0,2,1],[2,2,3,1],[2,3,0,2],[0,3,1,1]],[[2,0,2,1],[2,2,3,1],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[3,2,3,1],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[2,2,3,1],[3,3,0,2],[0,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,4,0,2],[0,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,3,0,2],[0,3,2,0]],[[1,0,2,1],[2,2,3,1],[2,3,0,2],[0,2,3,0]],[[2,0,2,1],[2,2,3,1],[2,3,0,2],[1,0,2,1]],[[1,0,2,1],[3,2,3,1],[2,3,0,2],[1,0,2,1]],[[1,0,2,1],[2,2,3,1],[3,3,0,2],[1,0,2,1]],[[1,0,2,1],[2,2,3,1],[2,4,0,2],[1,0,2,1]],[[1,0,2,1],[2,2,3,1],[2,3,0,2],[2,0,2,1]],[[2,0,2,1],[2,2,3,1],[2,3,0,2],[1,1,1,1]],[[1,0,2,1],[3,2,3,1],[2,3,0,2],[1,1,1,1]],[[1,0,2,1],[2,2,3,1],[3,3,0,2],[1,1,1,1]],[[1,0,2,1],[2,2,3,1],[2,4,0,2],[1,1,1,1]],[[1,0,2,1],[2,2,3,1],[2,3,0,2],[2,1,1,1]],[[2,0,2,1],[2,2,3,1],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[3,2,3,1],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[2,2,3,1],[3,3,0,2],[1,1,2,0]],[[1,0,2,1],[2,2,3,1],[2,4,0,2],[1,1,2,0]],[[1,0,2,1],[2,2,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,1,1],[1,3,3,1],[2,0,4,1],[1,1,2,0]],[[1,2,1,1],[1,3,4,1],[2,0,3,1],[1,1,2,0]],[[1,2,1,1],[1,4,3,1],[2,0,3,1],[1,1,2,0]],[[1,3,1,1],[1,3,3,1],[2,0,3,1],[1,1,2,0]],[[2,2,1,1],[1,3,3,1],[2,0,3,1],[1,1,2,0]],[[1,2,1,1],[1,3,3,1],[2,0,4,1],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[2,0,3,1],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[2,0,3,1],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[2,0,3,1],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[2,0,3,1],[1,1,1,1]],[[2,0,2,1],[2,2,3,1],[2,3,1,0],[0,2,2,1]],[[1,0,2,1],[3,2,3,1],[2,3,1,0],[0,2,2,1]],[[1,0,2,1],[2,2,3,1],[3,3,1,0],[0,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,4,1,0],[0,2,2,1]],[[1,0,2,1],[2,2,3,1],[2,3,1,0],[0,3,2,1]],[[1,0,2,1],[2,2,3,1],[2,3,1,0],[0,2,3,1]],[[1,0,2,1],[2,2,3,1],[2,3,1,0],[0,2,2,2]],[[2,0,2,1],[2,2,3,1],[2,3,1,0],[1,1,2,1]],[[1,0,2,1],[3,2,3,1],[2,3,1,0],[1,1,2,1]],[[1,0,2,1],[2,2,3,1],[3,3,1,0],[1,1,2,1]],[[1,0,2,1],[2,2,3,1],[2,4,1,0],[1,1,2,1]],[[1,0,2,1],[2,2,3,1],[2,3,1,0],[2,1,2,1]],[[2,0,2,1],[2,2,3,1],[2,3,1,1],[0,2,2,0]],[[1,0,2,1],[3,2,3,1],[2,3,1,1],[0,2,2,0]],[[1,0,2,1],[2,2,3,1],[3,3,1,1],[0,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,4,1,1],[0,2,2,0]],[[1,0,2,1],[2,2,3,1],[2,3,1,1],[0,3,2,0]],[[1,0,2,1],[2,2,3,1],[2,3,1,1],[0,2,3,0]],[[2,0,2,1],[2,2,3,1],[2,3,1,1],[1,1,2,0]],[[1,0,2,1],[3,2,3,1],[2,3,1,1],[1,1,2,0]],[[1,0,2,1],[2,2,3,1],[3,3,1,1],[1,1,2,0]],[[1,0,2,1],[2,2,3,1],[2,4,1,1],[1,1,2,0]],[[1,0,2,1],[2,2,3,1],[2,3,1,1],[2,1,2,0]],[[1,2,1,1],[1,3,3,1],[2,0,3,1],[0,2,3,0]],[[1,2,1,1],[1,3,3,1],[2,0,3,1],[0,3,2,0]],[[2,0,2,1],[2,2,3,1],[2,3,1,2],[0,1,1,1]],[[1,0,2,1],[3,2,3,1],[2,3,1,2],[0,1,1,1]],[[1,0,2,1],[2,2,3,1],[3,3,1,2],[0,1,1,1]],[[1,0,2,1],[2,2,3,1],[2,4,1,2],[0,1,1,1]],[[2,0,2,1],[2,2,3,1],[2,3,1,2],[0,1,2,0]],[[1,0,2,1],[3,2,3,1],[2,3,1,2],[0,1,2,0]],[[1,0,2,1],[2,2,3,1],[3,3,1,2],[0,1,2,0]],[[1,0,2,1],[2,2,3,1],[2,4,1,2],[0,1,2,0]],[[2,0,2,1],[2,2,3,1],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[3,2,3,1],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[2,2,3,1],[3,3,1,2],[0,2,0,1]],[[1,0,2,1],[2,2,3,1],[2,4,1,2],[0,2,0,1]],[[1,0,2,1],[2,2,3,1],[2,3,1,2],[0,3,0,1]],[[2,0,2,1],[2,2,3,1],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[3,2,3,1],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[3,3,1,2],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,4,1,2],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,3,1,2],[0,3,1,0]],[[1,2,1,1],[1,3,3,1],[2,0,4,1],[0,2,2,0]],[[1,2,1,1],[1,3,4,1],[2,0,3,1],[0,2,2,0]],[[1,2,1,1],[1,4,3,1],[2,0,3,1],[0,2,2,0]],[[1,3,1,1],[1,3,3,1],[2,0,3,1],[0,2,2,0]],[[2,2,1,1],[1,3,3,1],[2,0,3,1],[0,2,2,0]],[[1,2,1,1],[1,3,3,1],[2,0,4,1],[0,2,1,1]],[[1,2,1,1],[1,3,4,1],[2,0,3,1],[0,2,1,1]],[[1,2,1,1],[1,4,3,1],[2,0,3,1],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[2,0,3,1],[0,2,1,1]],[[2,2,1,1],[1,3,3,1],[2,0,3,1],[0,2,1,1]],[[2,0,2,1],[2,2,3,1],[2,3,1,2],[1,0,1,1]],[[1,0,2,1],[3,2,3,1],[2,3,1,2],[1,0,1,1]],[[1,0,2,1],[2,2,3,1],[3,3,1,2],[1,0,1,1]],[[1,0,2,1],[2,2,3,1],[2,4,1,2],[1,0,1,1]],[[1,0,2,1],[2,2,3,1],[2,3,1,2],[2,0,1,1]],[[2,0,2,1],[2,2,3,1],[2,3,1,2],[1,0,2,0]],[[1,0,2,1],[3,2,3,1],[2,3,1,2],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[3,3,1,2],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[2,4,1,2],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[2,3,1,2],[2,0,2,0]],[[2,0,2,1],[2,2,3,1],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[3,2,3,1],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[2,2,3,1],[3,3,1,2],[1,1,0,1]],[[1,0,2,1],[2,2,3,1],[2,4,1,2],[1,1,0,1]],[[1,0,2,1],[2,2,3,1],[2,3,1,2],[2,1,0,1]],[[2,0,2,1],[2,2,3,1],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[3,2,3,1],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[2,2,3,1],[3,3,1,2],[1,1,1,0]],[[1,0,2,1],[2,2,3,1],[2,4,1,2],[1,1,1,0]],[[1,0,2,1],[2,2,3,1],[2,3,1,2],[2,1,1,0]],[[2,0,2,1],[2,2,3,1],[2,3,1,2],[1,2,0,0]],[[1,0,2,1],[3,2,3,1],[2,3,1,2],[1,2,0,0]],[[1,0,2,1],[2,2,3,1],[3,3,1,2],[1,2,0,0]],[[1,0,2,1],[2,2,3,1],[2,4,1,2],[1,2,0,0]],[[1,0,2,1],[2,2,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,1,1],[1,3,3,1],[2,0,4,0],[1,2,1,1]],[[1,2,1,1],[1,3,4,1],[2,0,3,0],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[2,0,3,0],[1,2,1,1]],[[1,3,1,1],[1,3,3,1],[2,0,3,0],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[2,0,3,0],[1,2,1,1]],[[1,2,1,1],[1,3,3,1],[2,0,3,0],[1,1,2,2]],[[1,2,1,1],[1,3,3,1],[2,0,3,0],[1,1,3,1]],[[1,2,1,1],[1,3,3,1],[2,0,4,0],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[2,0,3,0],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[2,0,3,0],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[2,0,3,0],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[2,0,3,0],[1,1,2,1]],[[1,2,1,1],[1,3,3,1],[2,0,3,0],[0,2,2,2]],[[1,2,1,1],[1,3,3,1],[2,0,3,0],[0,2,3,1]],[[1,2,1,1],[1,3,3,1],[2,0,3,0],[0,3,2,1]],[[1,2,1,1],[1,3,3,1],[2,0,4,0],[0,2,2,1]],[[1,2,1,1],[1,3,4,1],[2,0,3,0],[0,2,2,1]],[[1,2,1,1],[1,4,3,1],[2,0,3,0],[0,2,2,1]],[[1,3,1,1],[1,3,3,1],[2,0,3,0],[0,2,2,1]],[[2,2,1,1],[1,3,3,1],[2,0,3,0],[0,2,2,1]],[[2,0,2,1],[2,2,3,1],[2,3,2,0],[0,1,2,1]],[[1,0,2,1],[3,2,3,1],[2,3,2,0],[0,1,2,1]],[[1,0,2,1],[2,2,3,1],[3,3,2,0],[0,1,2,1]],[[1,0,2,1],[2,2,3,1],[2,4,2,0],[0,1,2,1]],[[2,0,2,1],[2,2,3,1],[2,3,2,0],[0,2,1,1]],[[1,0,2,1],[3,2,3,1],[2,3,2,0],[0,2,1,1]],[[1,0,2,1],[2,2,3,1],[3,3,2,0],[0,2,1,1]],[[1,0,2,1],[2,2,3,1],[2,4,2,0],[0,2,1,1]],[[1,0,2,1],[2,2,3,1],[2,3,2,0],[0,3,1,1]],[[2,0,2,1],[2,2,3,1],[2,3,2,0],[1,0,2,1]],[[1,0,2,1],[3,2,3,1],[2,3,2,0],[1,0,2,1]],[[1,0,2,1],[2,2,3,1],[3,3,2,0],[1,0,2,1]],[[1,0,2,1],[2,2,3,1],[2,4,2,0],[1,0,2,1]],[[1,0,2,1],[2,2,3,1],[2,3,2,0],[2,0,2,1]],[[2,0,2,1],[2,2,3,1],[2,3,2,0],[1,1,1,1]],[[1,0,2,1],[3,2,3,1],[2,3,2,0],[1,1,1,1]],[[1,0,2,1],[2,2,3,1],[3,3,2,0],[1,1,1,1]],[[1,0,2,1],[2,2,3,1],[2,4,2,0],[1,1,1,1]],[[1,0,2,1],[2,2,3,1],[2,3,2,0],[2,1,1,1]],[[2,0,2,1],[2,2,3,1],[2,3,2,0],[1,2,0,1]],[[1,0,2,1],[3,2,3,1],[2,3,2,0],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[3,3,2,0],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[2,4,2,0],[1,2,0,1]],[[1,0,2,1],[2,2,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,1,1],[1,3,4,1],[2,0,2,2],[1,2,1,0]],[[1,2,1,1],[1,4,3,1],[2,0,2,2],[1,2,1,0]],[[1,3,1,1],[1,3,3,1],[2,0,2,2],[1,2,1,0]],[[2,2,1,1],[1,3,3,1],[2,0,2,2],[1,2,1,0]],[[2,0,2,1],[2,2,3,1],[2,3,2,1],[0,1,1,1]],[[1,0,2,1],[3,2,3,1],[2,3,2,1],[0,1,1,1]],[[1,0,2,1],[2,2,3,1],[3,3,2,1],[0,1,1,1]],[[1,0,2,1],[2,2,3,1],[2,4,2,1],[0,1,1,1]],[[2,0,2,1],[2,2,3,1],[2,3,2,1],[0,1,2,0]],[[1,0,2,1],[3,2,3,1],[2,3,2,1],[0,1,2,0]],[[1,0,2,1],[2,2,3,1],[3,3,2,1],[0,1,2,0]],[[1,0,2,1],[2,2,3,1],[2,4,2,1],[0,1,2,0]],[[2,0,2,1],[2,2,3,1],[2,3,2,1],[0,2,0,1]],[[1,0,2,1],[3,2,3,1],[2,3,2,1],[0,2,0,1]],[[1,0,2,1],[2,2,3,1],[3,3,2,1],[0,2,0,1]],[[1,0,2,1],[2,2,3,1],[2,4,2,1],[0,2,0,1]],[[1,0,2,1],[2,2,3,1],[2,3,2,1],[0,3,0,1]],[[2,0,2,1],[2,2,3,1],[2,3,2,1],[0,2,1,0]],[[1,0,2,1],[3,2,3,1],[2,3,2,1],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[3,3,2,1],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,4,2,1],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,3,2,1],[0,3,1,0]],[[1,2,1,1],[1,3,4,1],[2,0,2,2],[1,2,0,1]],[[1,2,1,1],[1,4,3,1],[2,0,2,2],[1,2,0,1]],[[1,3,1,1],[1,3,3,1],[2,0,2,2],[1,2,0,1]],[[2,2,1,1],[1,3,3,1],[2,0,2,2],[1,2,0,1]],[[2,0,2,1],[2,2,3,1],[2,3,2,1],[1,0,1,1]],[[1,0,2,1],[3,2,3,1],[2,3,2,1],[1,0,1,1]],[[1,0,2,1],[2,2,3,1],[3,3,2,1],[1,0,1,1]],[[1,0,2,1],[2,2,3,1],[2,4,2,1],[1,0,1,1]],[[1,0,2,1],[2,2,3,1],[2,3,2,1],[2,0,1,1]],[[2,0,2,1],[2,2,3,1],[2,3,2,1],[1,0,2,0]],[[1,0,2,1],[3,2,3,1],[2,3,2,1],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[3,3,2,1],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[2,4,2,1],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[2,3,2,1],[2,0,2,0]],[[2,0,2,1],[2,2,3,1],[2,3,2,1],[1,1,0,1]],[[1,0,2,1],[3,2,3,1],[2,3,2,1],[1,1,0,1]],[[1,0,2,1],[2,2,3,1],[3,3,2,1],[1,1,0,1]],[[1,0,2,1],[2,2,3,1],[2,4,2,1],[1,1,0,1]],[[1,0,2,1],[2,2,3,1],[2,3,2,1],[2,1,0,1]],[[2,0,2,1],[2,2,3,1],[2,3,2,1],[1,1,1,0]],[[1,0,2,1],[3,2,3,1],[2,3,2,1],[1,1,1,0]],[[1,0,2,1],[2,2,3,1],[3,3,2,1],[1,1,1,0]],[[1,0,2,1],[2,2,3,1],[2,4,2,1],[1,1,1,0]],[[1,0,2,1],[2,2,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,1,1],[1,3,4,1],[2,0,2,2],[1,1,2,0]],[[2,0,2,1],[2,2,3,1],[2,3,2,1],[1,2,0,0]],[[1,0,2,1],[3,2,3,1],[2,3,2,1],[1,2,0,0]],[[1,0,2,1],[2,2,3,1],[3,3,2,1],[1,2,0,0]],[[1,0,2,1],[2,2,3,1],[2,4,2,1],[1,2,0,0]],[[1,0,2,1],[2,2,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,1,1],[1,4,3,1],[2,0,2,2],[1,1,2,0]],[[1,3,1,1],[1,3,3,1],[2,0,2,2],[1,1,2,0]],[[2,2,1,1],[1,3,3,1],[2,0,2,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,1],[2,0,2,2],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[2,0,2,2],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[2,0,2,2],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[2,0,2,2],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[2,0,2,2],[0,2,2,0]],[[1,2,1,1],[1,4,3,1],[2,0,2,2],[0,2,2,0]],[[1,3,1,1],[1,3,3,1],[2,0,2,2],[0,2,2,0]],[[2,2,1,1],[1,3,3,1],[2,0,2,2],[0,2,2,0]],[[1,2,1,1],[1,3,4,1],[2,0,2,2],[0,2,1,1]],[[1,2,1,1],[1,4,3,1],[2,0,2,2],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[2,0,2,2],[0,2,1,1]],[[2,2,1,1],[1,3,3,1],[2,0,2,2],[0,2,1,1]],[[1,2,1,1],[1,3,4,1],[2,0,2,1],[1,2,2,0]],[[1,2,1,1],[1,4,3,1],[2,0,2,1],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[2,0,2,1],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[2,0,2,1],[1,2,2,0]],[[1,2,1,1],[1,3,4,1],[2,0,2,0],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[2,0,2,0],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[2,0,2,0],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[2,0,2,0],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[2,0,1,2],[1,2,2,0]],[[1,2,1,1],[1,4,3,1],[2,0,1,2],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[2,0,1,2],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[2,0,1,2],[1,2,2,0]],[[1,2,1,1],[1,3,4,1],[2,0,1,2],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[2,0,1,2],[1,2,1,1]],[[1,3,1,1],[1,3,3,1],[2,0,1,2],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[2,0,1,2],[1,2,1,1]],[[1,2,1,1],[1,3,4,1],[2,0,1,2],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[2,0,1,2],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[2,0,1,2],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[2,0,1,2],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[2,0,1,2],[0,2,2,1]],[[1,2,1,1],[1,4,3,1],[2,0,1,2],[0,2,2,1]],[[1,3,1,1],[1,3,3,1],[2,0,1,2],[0,2,2,1]],[[2,2,1,1],[1,3,3,1],[2,0,1,2],[0,2,2,1]],[[1,2,1,1],[1,3,4,1],[2,0,1,1],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[2,0,1,1],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[2,0,1,1],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[2,0,1,1],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[1,3,3,2],[0,0,0,1]],[[1,2,1,1],[1,4,3,1],[1,3,3,2],[0,0,0,1]],[[1,3,1,1],[1,3,3,1],[1,3,3,2],[0,0,0,1]],[[2,2,1,1],[1,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,2,1,1],[1,3,3,1],[1,4,3,1],[1,1,0,0]],[[1,2,1,1],[1,3,4,1],[1,3,3,1],[1,1,0,0]],[[1,2,1,1],[1,4,3,1],[1,3,3,1],[1,1,0,0]],[[1,3,1,1],[1,3,3,1],[1,3,3,1],[1,1,0,0]],[[2,2,1,1],[1,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,2,1,1],[1,3,3,1],[1,4,3,1],[0,2,0,0]],[[1,2,1,1],[1,3,4,1],[1,3,3,1],[0,2,0,0]],[[1,2,1,1],[1,4,3,1],[1,3,3,1],[0,2,0,0]],[[2,0,2,1],[2,2,3,1],[2,3,3,0],[0,1,2,0]],[[1,0,2,1],[3,2,3,1],[2,3,3,0],[0,1,2,0]],[[1,0,2,1],[2,2,3,1],[3,3,3,0],[0,1,2,0]],[[1,0,2,1],[2,2,3,1],[2,4,3,0],[0,1,2,0]],[[2,0,2,1],[2,2,3,1],[2,3,3,0],[0,2,1,0]],[[1,0,2,1],[3,2,3,1],[2,3,3,0],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[3,3,3,0],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,4,3,0],[0,2,1,0]],[[1,0,2,1],[2,2,3,1],[2,3,3,0],[0,3,1,0]],[[1,3,1,1],[1,3,3,1],[1,3,3,1],[0,2,0,0]],[[2,2,1,1],[1,3,3,1],[1,3,3,1],[0,2,0,0]],[[2,0,2,1],[2,2,3,1],[2,3,3,0],[1,0,2,0]],[[1,0,2,1],[3,2,3,1],[2,3,3,0],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[3,3,3,0],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[2,4,3,0],[1,0,2,0]],[[1,0,2,1],[2,2,3,1],[2,3,3,0],[2,0,2,0]],[[2,0,2,1],[2,2,3,1],[2,3,3,0],[1,1,1,0]],[[1,0,2,1],[3,2,3,1],[2,3,3,0],[1,1,1,0]],[[1,0,2,1],[2,2,3,1],[3,3,3,0],[1,1,1,0]],[[1,0,2,1],[2,2,3,1],[2,4,3,0],[1,1,1,0]],[[1,0,2,1],[2,2,3,1],[2,3,3,0],[2,1,1,0]],[[1,2,1,1],[1,3,3,1],[1,3,4,1],[0,0,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,3,1],[0,0,2,0]],[[2,0,2,1],[2,2,3,1],[2,3,3,0],[1,2,0,0]],[[1,0,2,1],[3,2,3,1],[2,3,3,0],[1,2,0,0]],[[1,0,2,1],[2,2,3,1],[3,3,3,0],[1,2,0,0]],[[1,0,2,1],[2,2,3,1],[2,4,3,0],[1,2,0,0]],[[1,0,2,1],[2,2,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,1,1],[1,4,3,1],[1,3,3,1],[0,0,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,3,1],[0,0,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,2,1,1],[1,3,3,1],[1,3,4,1],[0,0,1,1]],[[1,2,1,1],[1,3,4,1],[1,3,3,1],[0,0,1,1]],[[1,2,1,1],[1,4,3,1],[1,3,3,1],[0,0,1,1]],[[1,3,1,1],[1,3,3,1],[1,3,3,1],[0,0,1,1]],[[2,2,1,1],[1,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,2,1,1],[1,3,3,1],[1,4,3,0],[1,2,0,0]],[[1,2,1,1],[1,3,4,1],[1,3,3,0],[1,2,0,0]],[[1,2,1,1],[1,4,3,1],[1,3,3,0],[1,2,0,0]],[[1,3,1,1],[1,3,3,1],[1,3,3,0],[1,2,0,0]],[[2,2,1,1],[1,3,3,1],[1,3,3,0],[1,2,0,0]],[[1,2,1,1],[1,3,3,1],[1,4,3,0],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[1,3,3,0],[1,1,1,0]],[[2,0,2,1],[2,2,3,1],[2,3,3,1],[0,2,0,0]],[[1,0,2,1],[3,2,3,1],[2,3,3,1],[0,2,0,0]],[[1,0,2,1],[2,2,3,1],[3,3,3,1],[0,2,0,0]],[[1,0,2,1],[2,2,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,1,1],[1,4,3,1],[1,3,3,0],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[1,3,3,0],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,2,1,1],[1,3,3,1],[1,4,3,0],[1,0,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,3,0],[1,0,2,0]],[[1,2,1,1],[1,4,3,1],[1,3,3,0],[1,0,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,3,0],[1,0,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,2,1,1],[1,3,3,1],[1,3,3,0],[0,3,1,0]],[[1,2,1,1],[1,3,3,1],[1,4,3,0],[0,2,1,0]],[[1,2,1,1],[1,3,4,1],[1,3,3,0],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[1,3,3,0],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[1,3,3,0],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[1,3,3,0],[0,2,1,0]],[[2,0,2,1],[2,2,3,1],[2,3,3,1],[1,1,0,0]],[[1,0,2,1],[3,2,3,1],[2,3,3,1],[1,1,0,0]],[[1,0,2,1],[2,2,3,1],[3,3,3,1],[1,1,0,0]],[[1,0,2,1],[2,2,3,1],[2,4,3,1],[1,1,0,0]],[[1,0,2,1],[2,2,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,1,1],[1,3,3,1],[1,4,3,0],[0,1,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,3,0],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[1,3,3,0],[0,1,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,3,0],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,2,1,1],[1,3,3,1],[1,3,4,0],[0,0,2,1]],[[1,2,1,1],[1,3,4,1],[1,3,3,0],[0,0,2,1]],[[1,2,1,1],[1,4,3,1],[1,3,3,0],[0,0,2,1]],[[1,3,1,1],[1,3,3,1],[1,3,3,0],[0,0,2,1]],[[2,2,1,1],[1,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,2,1,1],[1,3,4,1],[1,3,2,2],[0,0,2,0]],[[1,2,1,1],[1,4,3,1],[1,3,2,2],[0,0,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,2,2],[0,0,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,2,2],[0,0,1,1]],[[1,2,1,1],[1,4,3,1],[1,3,2,2],[0,0,1,1]],[[1,3,1,1],[1,3,3,1],[1,3,2,2],[0,0,1,1]],[[2,2,1,1],[1,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,2,1,1],[1,3,3,1],[1,4,2,1],[1,2,0,0]],[[1,2,1,1],[1,3,4,1],[1,3,2,1],[1,2,0,0]],[[1,2,1,1],[1,4,3,1],[1,3,2,1],[1,2,0,0]],[[1,3,1,1],[1,3,3,1],[1,3,2,1],[1,2,0,0]],[[2,2,1,1],[1,3,3,1],[1,3,2,1],[1,2,0,0]],[[1,2,1,1],[1,3,3,1],[1,4,2,1],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[1,3,2,1],[1,1,1,0]],[[1,2,1,1],[1,4,3,1],[1,3,2,1],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[1,3,2,1],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,2,1,1],[1,3,3,1],[1,4,2,1],[1,1,0,1]],[[1,2,1,1],[1,3,4,1],[1,3,2,1],[1,1,0,1]],[[1,2,1,1],[1,4,3,1],[1,3,2,1],[1,1,0,1]],[[1,3,1,1],[1,3,3,1],[1,3,2,1],[1,1,0,1]],[[2,2,1,1],[1,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,2,1,1],[1,3,3,1],[1,4,2,1],[1,0,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,2,1],[1,0,2,0]],[[1,2,1,1],[1,4,3,1],[1,3,2,1],[1,0,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,2,1],[1,0,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,2,1,1],[1,3,3,1],[1,4,2,1],[1,0,1,1]],[[1,2,1,1],[1,3,4,1],[1,3,2,1],[1,0,1,1]],[[1,2,1,1],[1,4,3,1],[1,3,2,1],[1,0,1,1]],[[1,3,1,1],[1,3,3,1],[1,3,2,1],[1,0,1,1]],[[2,2,1,1],[1,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,2,1,1],[1,3,3,1],[1,3,2,1],[0,3,1,0]],[[1,2,1,1],[1,3,3,1],[1,4,2,1],[0,2,1,0]],[[1,2,1,1],[1,3,4,1],[1,3,2,1],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[1,3,2,1],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[1,3,2,1],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,2,1,1],[1,3,3,1],[1,3,2,1],[0,3,0,1]],[[1,2,1,1],[1,3,3,1],[1,4,2,1],[0,2,0,1]],[[1,2,1,1],[1,3,4,1],[1,3,2,1],[0,2,0,1]],[[1,2,1,1],[1,4,3,1],[1,3,2,1],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[1,3,2,1],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,2,1,1],[1,3,3,1],[1,4,2,1],[0,1,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,2,1],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[1,3,2,1],[0,1,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,2,1],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,2,1,1],[1,3,3,1],[1,4,2,1],[0,1,1,1]],[[1,2,1,1],[1,3,4,1],[1,3,2,1],[0,1,1,1]],[[1,2,1,1],[1,4,3,1],[1,3,2,1],[0,1,1,1]],[[1,3,1,1],[1,3,3,1],[1,3,2,1],[0,1,1,1]],[[2,2,1,1],[1,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,2,1,1],[1,3,3,1],[1,4,2,0],[1,2,0,1]],[[1,2,1,1],[1,3,4,1],[1,3,2,0],[1,2,0,1]],[[1,2,1,1],[1,4,3,1],[1,3,2,0],[1,2,0,1]],[[1,3,1,1],[1,3,3,1],[1,3,2,0],[1,2,0,1]],[[2,2,1,1],[1,3,3,1],[1,3,2,0],[1,2,0,1]],[[1,2,1,1],[1,3,3,1],[1,4,2,0],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[1,3,2,0],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[1,3,2,0],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[1,3,2,0],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,2,1,1],[1,3,3,1],[1,4,2,0],[1,0,2,1]],[[1,2,1,1],[1,3,4,1],[1,3,2,0],[1,0,2,1]],[[1,2,1,1],[1,4,3,1],[1,3,2,0],[1,0,2,1]],[[1,3,1,1],[1,3,3,1],[1,3,2,0],[1,0,2,1]],[[2,2,1,1],[1,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,2,1,1],[1,3,3,1],[1,3,2,0],[0,3,1,1]],[[1,2,1,1],[1,3,3,1],[1,4,2,0],[0,2,1,1]],[[1,2,1,1],[1,3,4,1],[1,3,2,0],[0,2,1,1]],[[1,2,1,1],[1,4,3,1],[1,3,2,0],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[1,3,2,0],[0,2,1,1]],[[2,2,1,1],[1,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,2,1,1],[1,3,3,1],[1,4,2,0],[0,1,2,1]],[[1,2,1,1],[1,3,4,1],[1,3,2,0],[0,1,2,1]],[[1,2,1,1],[1,4,3,1],[1,3,2,0],[0,1,2,1]],[[1,3,1,1],[1,3,3,1],[1,3,2,0],[0,1,2,1]],[[2,2,1,1],[1,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,2,1,1],[1,3,3,1],[1,4,1,2],[1,2,0,0]],[[1,2,1,1],[1,3,4,1],[1,3,1,2],[1,2,0,0]],[[1,2,1,1],[1,4,3,1],[1,3,1,2],[1,2,0,0]],[[1,3,1,1],[1,3,3,1],[1,3,1,2],[1,2,0,0]],[[2,2,1,1],[1,3,3,1],[1,3,1,2],[1,2,0,0]],[[1,2,1,1],[1,3,3,1],[1,4,1,2],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[1,3,1,2],[1,1,1,0]],[[1,2,1,1],[1,4,3,1],[1,3,1,2],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[1,3,1,2],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,2,1,1],[1,3,3,1],[1,4,1,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,1],[1,3,1,2],[1,1,0,1]],[[1,2,1,1],[1,4,3,1],[1,3,1,2],[1,1,0,1]],[[1,3,1,1],[1,3,3,1],[1,3,1,2],[1,1,0,1]],[[2,2,1,1],[1,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,2,1,1],[1,3,3,1],[1,4,1,2],[1,0,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,1,2],[1,0,2,0]],[[1,2,1,1],[1,4,3,1],[1,3,1,2],[1,0,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,1,2],[1,0,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,2,1,1],[1,3,3,1],[1,4,1,2],[1,0,1,1]],[[1,2,1,1],[1,3,4,1],[1,3,1,2],[1,0,1,1]],[[1,2,1,1],[1,4,3,1],[1,3,1,2],[1,0,1,1]],[[1,3,1,1],[1,3,3,1],[1,3,1,2],[1,0,1,1]],[[2,2,1,1],[1,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,2,1,1],[1,3,3,1],[1,3,1,2],[0,3,1,0]],[[1,2,1,1],[1,3,3,1],[1,4,1,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,1],[1,3,1,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[1,3,1,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[1,3,1,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,2,1,1],[1,3,3,1],[1,3,1,2],[0,3,0,1]],[[1,2,1,1],[1,3,3,1],[1,4,1,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,1],[1,3,1,2],[0,2,0,1]],[[1,2,1,1],[1,4,3,1],[1,3,1,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[1,3,1,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,2,1,1],[1,3,3,1],[1,4,1,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,1,2],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[1,3,1,2],[0,1,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,1,2],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,2,1,1],[1,3,3,1],[1,4,1,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,1],[1,3,1,2],[0,1,1,1]],[[1,2,1,1],[1,4,3,1],[1,3,1,2],[0,1,1,1]],[[1,3,1,1],[1,3,3,1],[1,3,1,2],[0,1,1,1]],[[2,2,1,1],[1,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,2,1,1],[1,3,3,1],[1,4,1,1],[1,1,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,1,1],[1,1,2,0]],[[1,2,1,1],[1,4,3,1],[1,3,1,1],[1,1,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,1,1],[1,1,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,1,1],[1,1,2,0]],[[1,2,1,1],[1,3,3,1],[1,3,1,1],[0,2,3,0]],[[1,2,1,1],[1,3,3,1],[1,3,1,1],[0,3,2,0]],[[1,2,1,1],[1,3,3,1],[1,4,1,1],[0,2,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,1,1],[0,2,2,0]],[[1,2,1,1],[1,4,3,1],[1,3,1,1],[0,2,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,1,1],[0,2,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,0,3,1],[2,2,3,2],[0,2,3,0],[1,2,2,0]],[[1,0,2,2],[2,2,3,2],[0,2,3,0],[1,2,2,0]],[[1,0,2,1],[2,2,4,2],[0,2,3,0],[1,2,2,0]],[[1,2,1,1],[1,3,3,1],[1,4,1,0],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[1,3,1,0],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[1,3,1,0],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[1,3,1,0],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[1,3,1,0],[1,1,2,1]],[[1,2,1,1],[1,3,3,1],[1,3,1,0],[0,2,2,2]],[[1,2,1,1],[1,3,3,1],[1,3,1,0],[0,2,3,1]],[[1,2,1,1],[1,3,3,1],[1,3,1,0],[0,3,2,1]],[[1,2,1,1],[1,3,3,1],[1,4,1,0],[0,2,2,1]],[[1,2,1,1],[1,3,4,1],[1,3,1,0],[0,2,2,1]],[[1,2,1,1],[1,4,3,1],[1,3,1,0],[0,2,2,1]],[[1,3,1,1],[1,3,3,1],[1,3,1,0],[0,2,2,1]],[[2,2,1,1],[1,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,2,1,1],[1,3,3,1],[1,4,0,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,0,2],[1,1,2,0]],[[1,2,1,1],[1,4,3,1],[1,3,0,2],[1,1,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,0,2],[1,1,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,0,2],[1,1,2,0]],[[1,2,1,1],[1,3,3,1],[1,4,0,2],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[1,3,0,2],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[1,3,0,2],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[1,3,0,2],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[1,3,0,2],[1,1,1,1]],[[1,2,1,1],[1,3,3,1],[1,4,0,2],[1,0,2,1]],[[1,2,1,1],[1,3,4,1],[1,3,0,2],[1,0,2,1]],[[1,2,1,1],[1,4,3,1],[1,3,0,2],[1,0,2,1]],[[1,3,1,1],[1,3,3,1],[1,3,0,2],[1,0,2,1]],[[2,2,1,1],[1,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,2,1,1],[1,3,3,1],[1,3,0,2],[0,2,3,0]],[[1,2,1,1],[1,3,3,1],[1,3,0,2],[0,3,2,0]],[[1,2,1,1],[1,3,3,1],[1,4,0,2],[0,2,2,0]],[[1,2,1,1],[1,3,4,1],[1,3,0,2],[0,2,2,0]],[[1,2,1,1],[1,4,3,1],[1,3,0,2],[0,2,2,0]],[[1,3,1,1],[1,3,3,1],[1,3,0,2],[0,2,2,0]],[[2,2,1,1],[1,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,2,1,1],[1,3,3,1],[1,3,0,2],[0,3,1,1]],[[1,2,1,1],[1,3,3,1],[1,4,0,2],[0,2,1,1]],[[1,2,1,1],[1,3,4,1],[1,3,0,2],[0,2,1,1]],[[1,2,1,1],[1,4,3,1],[1,3,0,2],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[1,3,0,2],[0,2,1,1]],[[2,2,1,1],[1,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,2,1,1],[1,3,3,1],[1,4,0,2],[0,1,2,1]],[[1,2,1,1],[1,3,4,1],[1,3,0,2],[0,1,2,1]],[[1,2,1,1],[1,4,3,1],[1,3,0,2],[0,1,2,1]],[[1,3,1,1],[1,3,3,1],[1,3,0,2],[0,1,2,1]],[[2,2,1,1],[1,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,0,3,1],[2,2,3,2],[0,3,3,0],[1,1,1,1]],[[1,0,2,2],[2,2,3,2],[0,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,2,4,2],[0,3,3,0],[1,1,1,1]],[[1,0,3,1],[2,2,3,2],[0,3,3,0],[1,1,2,0]],[[1,0,2,2],[2,2,3,2],[0,3,3,0],[1,1,2,0]],[[1,0,2,1],[2,2,4,2],[0,3,3,0],[1,1,2,0]],[[1,0,3,1],[2,2,3,2],[0,3,3,0],[1,2,0,1]],[[1,0,2,2],[2,2,3,2],[0,3,3,0],[1,2,0,1]],[[1,0,2,1],[2,2,4,2],[0,3,3,0],[1,2,0,1]],[[1,0,3,1],[2,2,3,2],[0,3,3,0],[1,2,1,0]],[[1,0,2,2],[2,2,3,2],[0,3,3,0],[1,2,1,0]],[[1,0,2,1],[2,2,4,2],[0,3,3,0],[1,2,1,0]],[[1,2,1,1],[1,3,3,1],[1,4,0,1],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[1,3,0,1],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[1,3,0,1],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[1,3,0,1],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[1,3,0,1],[1,1,2,1]],[[1,2,1,1],[1,3,3,1],[1,3,0,1],[0,2,2,2]],[[1,2,1,1],[1,3,3,1],[1,3,0,1],[0,2,3,1]],[[1,2,1,1],[1,3,3,1],[1,3,0,1],[0,3,2,1]],[[1,2,1,1],[1,3,3,1],[1,4,0,1],[0,2,2,1]],[[1,2,1,1],[1,3,4,1],[1,3,0,1],[0,2,2,1]],[[1,2,1,1],[1,4,3,1],[1,3,0,1],[0,2,2,1]],[[1,3,1,1],[1,3,3,1],[1,3,0,1],[0,2,2,1]],[[2,2,1,1],[1,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,2,1,1],[1,3,4,1],[1,2,3,2],[1,0,0,1]],[[1,2,1,1],[1,4,3,1],[1,2,3,2],[1,0,0,1]],[[1,3,1,1],[1,3,3,1],[1,2,3,2],[1,0,0,1]],[[2,2,1,1],[1,3,3,1],[1,2,3,2],[1,0,0,1]],[[1,2,1,1],[1,3,4,1],[1,2,3,2],[0,1,0,1]],[[1,2,1,1],[1,4,3,1],[1,2,3,2],[0,1,0,1]],[[1,3,1,1],[1,3,3,1],[1,2,3,2],[0,1,0,1]],[[2,2,1,1],[1,3,3,1],[1,2,3,2],[0,1,0,1]],[[1,2,1,1],[1,3,3,1],[1,2,4,1],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[1,2,3,1],[1,1,1,0]],[[1,2,1,1],[1,4,3,1],[1,2,3,1],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[1,2,3,1],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,2,1,1],[1,3,3,1],[1,2,4,1],[1,1,0,1]],[[1,2,1,1],[1,3,4,1],[1,2,3,1],[1,1,0,1]],[[1,2,1,1],[1,4,3,1],[1,2,3,1],[1,1,0,1]],[[1,3,1,1],[1,3,3,1],[1,2,3,1],[1,1,0,1]],[[2,2,1,1],[1,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,2,1,1],[1,3,3,1],[1,2,3,1],[1,0,3,0]],[[1,2,1,1],[1,3,3,1],[1,2,4,1],[1,0,2,0]],[[1,2,1,1],[1,3,4,1],[1,2,3,1],[1,0,2,0]],[[1,2,1,1],[1,4,3,1],[1,2,3,1],[1,0,2,0]],[[1,3,1,1],[1,3,3,1],[1,2,3,1],[1,0,2,0]],[[2,2,1,1],[1,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,2,1,1],[1,3,3,1],[1,2,4,1],[1,0,1,1]],[[1,2,1,1],[1,3,4,1],[1,2,3,1],[1,0,1,1]],[[1,2,1,1],[1,4,3,1],[1,2,3,1],[1,0,1,1]],[[1,3,1,1],[1,3,3,1],[1,2,3,1],[1,0,1,1]],[[2,2,1,1],[1,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,2,1,1],[1,3,3,1],[1,2,4,1],[0,2,1,0]],[[1,2,1,1],[1,3,4,1],[1,2,3,1],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[1,2,3,1],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[1,2,3,1],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,2,1,1],[1,3,3,1],[1,2,4,1],[0,2,0,1]],[[1,2,1,1],[1,3,4,1],[1,2,3,1],[0,2,0,1]],[[1,2,1,1],[1,4,3,1],[1,2,3,1],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[1,2,3,1],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,2,1,1],[1,3,3,1],[1,2,3,1],[0,1,3,0]],[[1,2,1,1],[1,3,3,1],[1,2,4,1],[0,1,2,0]],[[1,2,1,1],[1,3,4,1],[1,2,3,1],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[1,2,3,1],[0,1,2,0]],[[1,3,1,1],[1,3,3,1],[1,2,3,1],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,2,1,1],[1,3,3,1],[1,2,4,1],[0,1,1,1]],[[1,2,1,1],[1,3,4,1],[1,2,3,1],[0,1,1,1]],[[1,2,1,1],[1,4,3,1],[1,2,3,1],[0,1,1,1]],[[1,3,1,1],[1,3,3,1],[1,2,3,1],[0,1,1,1]],[[2,2,1,1],[1,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,2,1,1],[1,3,3,1],[1,2,4,1],[0,0,2,1]],[[1,2,1,1],[1,3,4,1],[1,2,3,1],[0,0,2,1]],[[1,0,3,1],[2,2,3,2],[1,2,3,0],[0,2,2,0]],[[1,0,2,2],[2,2,3,2],[1,2,3,0],[0,2,2,0]],[[1,0,2,1],[2,2,4,2],[1,2,3,0],[0,2,2,0]],[[1,2,1,1],[1,4,3,1],[1,2,3,1],[0,0,2,1]],[[1,3,1,1],[1,3,3,1],[1,2,3,1],[0,0,2,1]],[[2,2,1,1],[1,3,3,1],[1,2,3,1],[0,0,2,1]],[[1,2,1,1],[1,3,3,1],[1,2,4,0],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[1,2,3,0],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[1,2,3,0],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[1,2,3,0],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,2,1,1],[1,3,3,1],[1,2,3,0],[1,0,2,2]],[[1,2,1,1],[1,3,3,1],[1,2,3,0],[1,0,3,1]],[[1,2,1,1],[1,3,3,1],[1,2,4,0],[1,0,2,1]],[[1,2,1,1],[1,3,4,1],[1,2,3,0],[1,0,2,1]],[[1,2,1,1],[1,4,3,1],[1,2,3,0],[1,0,2,1]],[[1,3,1,1],[1,3,3,1],[1,2,3,0],[1,0,2,1]],[[2,2,1,1],[1,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,2,1,1],[1,3,3,1],[1,2,4,0],[0,2,1,1]],[[1,2,1,1],[1,3,4,1],[1,2,3,0],[0,2,1,1]],[[1,2,1,1],[1,4,3,1],[1,2,3,0],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[1,2,3,0],[0,2,1,1]],[[2,2,1,1],[1,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,2,1,1],[1,3,3,1],[1,2,3,0],[0,1,2,2]],[[1,2,1,1],[1,3,3,1],[1,2,3,0],[0,1,3,1]],[[1,2,1,1],[1,3,3,1],[1,2,4,0],[0,1,2,1]],[[1,2,1,1],[1,3,4,1],[1,2,3,0],[0,1,2,1]],[[1,2,1,1],[1,4,3,1],[1,2,3,0],[0,1,2,1]],[[1,3,1,1],[1,3,3,1],[1,2,3,0],[0,1,2,1]],[[2,2,1,1],[1,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,2,1,1],[1,3,4,1],[1,2,2,2],[1,1,1,0]],[[1,2,1,1],[1,4,3,1],[1,2,2,2],[1,1,1,0]],[[1,3,1,1],[1,3,3,1],[1,2,2,2],[1,1,1,0]],[[2,2,1,1],[1,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,2,1,1],[1,3,4,1],[1,2,2,2],[1,1,0,1]],[[1,2,1,1],[1,4,3,1],[1,2,2,2],[1,1,0,1]],[[1,3,1,1],[1,3,3,1],[1,2,2,2],[1,1,0,1]],[[2,2,1,1],[1,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,1],[1,2,2,2],[1,0,2,0]],[[1,2,1,1],[1,4,3,1],[1,2,2,2],[1,0,2,0]],[[1,3,1,1],[1,3,3,1],[1,2,2,2],[1,0,2,0]],[[2,2,1,1],[1,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,2,1,1],[1,3,4,1],[1,2,2,2],[1,0,1,1]],[[1,2,1,1],[1,4,3,1],[1,2,2,2],[1,0,1,1]],[[1,3,1,1],[1,3,3,1],[1,2,2,2],[1,0,1,1]],[[2,2,1,1],[1,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,2,1,1],[1,3,4,1],[1,2,2,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[1,2,2,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[1,2,2,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,1],[1,2,2,2],[0,2,0,1]],[[1,0,2,1],[2,2,3,2],[1,4,1,0],[1,2,2,0]],[[1,0,2,1],[2,2,3,2],[1,3,1,0],[2,2,2,0]],[[1,0,2,1],[2,2,3,2],[1,3,1,0],[1,3,2,0]],[[1,2,1,1],[1,4,3,1],[1,2,2,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[1,2,2,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[1,2,2,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,1],[1,2,2,2],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[1,2,2,2],[0,1,2,0]],[[1,3,1,1],[1,3,3,1],[1,2,2,2],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[1,2,2,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,1],[1,2,2,2],[0,1,1,1]],[[1,2,1,1],[1,4,3,1],[1,2,2,2],[0,1,1,1]],[[1,3,1,1],[1,3,3,1],[1,2,2,2],[0,1,1,1]],[[2,2,1,1],[1,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,1],[1,2,2,2],[0,0,2,1]],[[1,2,1,1],[1,4,3,1],[1,2,2,2],[0,0,2,1]],[[1,3,1,1],[1,3,3,1],[1,2,2,2],[0,0,2,1]],[[2,2,1,1],[1,3,3,1],[1,2,2,2],[0,0,2,1]],[[1,2,1,1],[1,3,4,1],[1,2,1,2],[1,0,2,1]],[[1,2,1,1],[1,4,3,1],[1,2,1,2],[1,0,2,1]],[[1,3,1,1],[1,3,3,1],[1,2,1,2],[1,0,2,1]],[[2,2,1,1],[1,3,3,1],[1,2,1,2],[1,0,2,1]],[[1,2,1,1],[1,3,4,1],[1,2,1,2],[0,1,2,1]],[[1,2,1,1],[1,4,3,1],[1,2,1,2],[0,1,2,1]],[[1,3,1,1],[1,3,3,1],[1,2,1,2],[0,1,2,1]],[[2,2,1,1],[1,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,0,2,1],[2,2,3,2],[1,4,2,0],[1,2,1,0]],[[1,0,2,1],[2,2,3,2],[1,3,2,0],[2,2,1,0]],[[1,0,2,1],[2,2,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,1,1],[1,3,4,1],[1,2,0,2],[0,2,2,1]],[[1,2,1,1],[1,4,3,1],[1,2,0,2],[0,2,2,1]],[[1,3,1,1],[1,3,3,1],[1,2,0,2],[0,2,2,1]],[[2,2,1,1],[1,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,2,1,1],[1,3,3,1],[1,1,3,1],[0,2,3,0]],[[1,2,1,1],[1,3,3,1],[1,1,3,1],[0,3,2,0]],[[1,2,1,1],[1,3,3,1],[1,1,4,1],[0,2,2,0]],[[1,2,1,1],[1,3,4,1],[1,1,3,1],[0,2,2,0]],[[1,2,1,1],[1,4,3,1],[1,1,3,1],[0,2,2,0]],[[1,3,1,1],[1,3,3,1],[1,1,3,1],[0,2,2,0]],[[2,2,1,1],[1,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,2,1,1],[1,3,3,1],[1,1,4,1],[0,2,1,1]],[[1,2,1,1],[1,3,4,1],[1,1,3,1],[0,2,1,1]],[[1,2,1,1],[1,4,3,1],[1,1,3,1],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[1,1,3,1],[0,2,1,1]],[[2,2,1,1],[1,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,2,1,1],[1,3,3,1],[1,1,3,0],[0,2,2,2]],[[1,2,1,1],[1,3,3,1],[1,1,3,0],[0,2,3,1]],[[1,2,1,1],[1,3,3,1],[1,1,3,0],[0,3,2,1]],[[1,2,1,1],[1,3,3,1],[1,1,4,0],[0,2,2,1]],[[1,2,1,1],[1,3,4,1],[1,1,3,0],[0,2,2,1]],[[1,2,1,1],[1,4,3,1],[1,1,3,0],[0,2,2,1]],[[1,3,1,1],[1,3,3,1],[1,1,3,0],[0,2,2,1]],[[2,2,1,1],[1,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,2,1,1],[1,3,4,1],[1,1,2,2],[0,2,2,0]],[[1,2,1,1],[1,4,3,1],[1,1,2,2],[0,2,2,0]],[[1,3,1,1],[1,3,3,1],[1,1,2,2],[0,2,2,0]],[[2,2,1,1],[1,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,2,1,1],[1,3,4,1],[1,1,2,2],[0,2,1,1]],[[1,2,1,1],[1,4,3,1],[1,1,2,2],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[1,1,2,2],[0,2,1,1]],[[2,2,1,1],[1,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,2,1,1],[1,3,4,1],[1,1,1,2],[0,2,2,1]],[[1,2,1,1],[1,4,3,1],[1,1,1,2],[0,2,2,1]],[[1,3,1,1],[1,3,3,1],[1,1,1,2],[0,2,2,1]],[[2,2,1,1],[1,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,2,1,1],[1,3,4,1],[1,1,0,2],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[1,1,0,2],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[1,1,0,2],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[1,1,0,2],[1,2,2,1]],[[1,0,3,1],[2,2,3,2],[1,3,3,0],[0,1,1,1]],[[1,0,2,2],[2,2,3,2],[1,3,3,0],[0,1,1,1]],[[1,0,2,1],[2,2,4,2],[1,3,3,0],[0,1,1,1]],[[1,0,3,1],[2,2,3,2],[1,3,3,0],[0,1,2,0]],[[1,0,2,2],[2,2,3,2],[1,3,3,0],[0,1,2,0]],[[1,0,2,1],[2,2,4,2],[1,3,3,0],[0,1,2,0]],[[1,0,3,1],[2,2,3,2],[1,3,3,0],[0,2,0,1]],[[1,0,2,2],[2,2,3,2],[1,3,3,0],[0,2,0,1]],[[1,0,2,1],[2,2,4,2],[1,3,3,0],[0,2,0,1]],[[1,0,3,1],[2,2,3,2],[1,3,3,0],[0,2,1,0]],[[1,0,2,2],[2,2,3,2],[1,3,3,0],[0,2,1,0]],[[1,0,2,1],[2,2,4,2],[1,3,3,0],[0,2,1,0]],[[1,0,3,1],[2,2,3,2],[1,3,3,0],[1,0,1,1]],[[1,0,2,2],[2,2,3,2],[1,3,3,0],[1,0,1,1]],[[1,0,2,1],[2,2,4,2],[1,3,3,0],[1,0,1,1]],[[1,0,3,1],[2,2,3,2],[1,3,3,0],[1,0,2,0]],[[1,0,2,2],[2,2,3,2],[1,3,3,0],[1,0,2,0]],[[1,0,2,1],[2,2,4,2],[1,3,3,0],[1,0,2,0]],[[1,0,3,1],[2,2,3,2],[1,3,3,0],[1,1,0,1]],[[1,0,2,2],[2,2,3,2],[1,3,3,0],[1,1,0,1]],[[1,0,2,1],[2,2,4,2],[1,3,3,0],[1,1,0,1]],[[1,0,3,1],[2,2,3,2],[1,3,3,0],[1,1,1,0]],[[1,0,2,2],[2,2,3,2],[1,3,3,0],[1,1,1,0]],[[1,0,2,1],[2,2,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,1,1],[1,3,3,1],[1,0,3,1],[1,2,3,0]],[[1,2,1,1],[1,3,3,1],[1,0,3,1],[1,3,2,0]],[[1,2,1,1],[1,3,3,1],[1,0,3,1],[2,2,2,0]],[[1,2,1,1],[1,3,3,1],[1,0,4,1],[1,2,2,0]],[[1,2,1,1],[1,3,4,1],[1,0,3,1],[1,2,2,0]],[[1,2,1,1],[1,4,3,1],[1,0,3,1],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[1,0,3,1],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[1,0,3,1],[1,2,2,0]],[[1,2,1,1],[1,3,3,1],[1,0,4,1],[1,2,1,1]],[[1,2,1,1],[1,3,4,1],[1,0,3,1],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[1,0,3,1],[1,2,1,1]],[[1,3,1,1],[1,3,3,1],[1,0,3,1],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[1,0,3,1],[1,2,1,1]],[[1,2,1,1],[1,3,3,1],[1,0,3,0],[1,2,2,2]],[[1,2,1,1],[1,3,3,1],[1,0,3,0],[1,2,3,1]],[[1,2,1,1],[1,3,3,1],[1,0,3,0],[1,3,2,1]],[[1,2,1,1],[1,3,3,1],[1,0,3,0],[2,2,2,1]],[[1,2,1,1],[1,3,3,1],[1,0,4,0],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[1,0,3,0],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[1,0,3,0],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[1,0,3,0],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[1,0,3,0],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[1,0,2,2],[1,2,2,0]],[[1,2,1,1],[1,4,3,1],[1,0,2,2],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[1,0,2,2],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[1,0,2,2],[1,2,2,0]],[[1,2,1,1],[1,3,4,1],[1,0,2,2],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[1,0,2,2],[1,2,1,1]],[[1,3,1,1],[1,3,3,1],[1,0,2,2],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[1,0,2,2],[1,2,1,1]],[[1,2,1,1],[1,3,4,1],[1,0,1,2],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[1,0,1,2],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[1,0,1,2],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[1,0,1,2],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[0,3,3,2],[0,1,0,1]],[[1,2,1,1],[1,4,3,1],[0,3,3,2],[0,1,0,1]],[[1,3,1,1],[1,3,3,1],[0,3,3,2],[0,1,0,1]],[[2,2,1,1],[1,3,3,1],[0,3,3,2],[0,1,0,1]],[[1,2,1,1],[1,3,3,1],[0,4,3,1],[1,2,0,0]],[[1,2,1,1],[1,3,4,1],[0,3,3,1],[1,2,0,0]],[[1,2,1,1],[1,4,3,1],[0,3,3,1],[1,2,0,0]],[[1,3,1,1],[1,3,3,1],[0,3,3,1],[1,2,0,0]],[[2,2,1,1],[1,3,3,1],[0,3,3,1],[1,2,0,0]],[[1,2,1,1],[1,3,3,1],[0,3,4,1],[0,2,1,0]],[[1,2,1,1],[1,3,4,1],[0,3,3,1],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[0,3,3,1],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[0,3,3,1],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[0,3,3,1],[0,2,1,0]],[[1,2,1,1],[1,3,3,1],[0,3,4,1],[0,2,0,1]],[[1,2,1,1],[1,3,4,1],[0,3,3,1],[0,2,0,1]],[[1,2,1,1],[1,4,3,1],[0,3,3,1],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[0,3,3,1],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[0,3,3,1],[0,2,0,1]],[[1,2,1,1],[1,3,3,1],[0,3,3,1],[0,1,3,0]],[[1,2,1,1],[1,3,3,1],[0,3,4,1],[0,1,2,0]],[[1,2,1,1],[1,3,4,1],[0,3,3,1],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[0,3,3,1],[0,1,2,0]],[[1,3,1,1],[1,3,3,1],[0,3,3,1],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[0,3,3,1],[0,1,2,0]],[[1,2,1,1],[1,3,3,1],[0,3,4,1],[0,1,1,1]],[[1,2,1,1],[1,3,4,1],[0,3,3,1],[0,1,1,1]],[[1,2,1,1],[1,4,3,1],[0,3,3,1],[0,1,1,1]],[[1,3,1,1],[1,3,3,1],[0,3,3,1],[0,1,1,1]],[[2,2,1,1],[1,3,3,1],[0,3,3,1],[0,1,1,1]],[[1,2,1,1],[1,3,3,1],[0,3,4,1],[0,0,2,1]],[[1,2,1,1],[1,3,4,1],[0,3,3,1],[0,0,2,1]],[[1,2,1,1],[1,4,3,1],[0,3,3,1],[0,0,2,1]],[[1,3,1,1],[1,3,3,1],[0,3,3,1],[0,0,2,1]],[[2,2,1,1],[1,3,3,1],[0,3,3,1],[0,0,2,1]],[[1,2,1,1],[1,3,3,1],[0,3,3,0],[1,3,1,0]],[[1,2,1,1],[1,3,3,1],[0,3,3,0],[2,2,1,0]],[[1,2,1,1],[1,3,3,1],[0,4,3,0],[1,2,1,0]],[[1,2,1,1],[1,3,4,1],[0,3,3,0],[1,2,1,0]],[[1,2,1,1],[1,4,3,1],[0,3,3,0],[1,2,1,0]],[[1,3,1,1],[1,3,3,1],[0,3,3,0],[1,2,1,0]],[[2,2,1,1],[1,3,3,1],[0,3,3,0],[1,2,1,0]],[[1,2,1,1],[1,3,3,1],[0,4,3,0],[1,1,2,0]],[[1,2,1,1],[1,3,4,1],[0,3,3,0],[1,1,2,0]],[[1,2,1,1],[1,4,3,1],[0,3,3,0],[1,1,2,0]],[[1,3,1,1],[1,3,3,1],[0,3,3,0],[1,1,2,0]],[[2,2,1,1],[1,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,2,1,1],[1,3,3,1],[0,3,4,0],[0,2,1,1]],[[1,2,1,1],[1,3,4,1],[0,3,3,0],[0,2,1,1]],[[1,2,1,1],[1,4,3,1],[0,3,3,0],[0,2,1,1]],[[1,3,1,1],[1,3,3,1],[0,3,3,0],[0,2,1,1]],[[2,2,1,1],[1,3,3,1],[0,3,3,0],[0,2,1,1]],[[1,2,1,1],[1,3,3,1],[0,3,3,0],[0,1,2,2]],[[1,2,1,1],[1,3,3,1],[0,3,3,0],[0,1,3,1]],[[1,2,1,1],[1,3,3,1],[0,3,4,0],[0,1,2,1]],[[1,2,1,1],[1,3,4,1],[0,3,3,0],[0,1,2,1]],[[1,2,1,1],[1,4,3,1],[0,3,3,0],[0,1,2,1]],[[1,3,1,1],[1,3,3,1],[0,3,3,0],[0,1,2,1]],[[2,2,1,1],[1,3,3,1],[0,3,3,0],[0,1,2,1]],[[1,2,1,1],[1,3,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,1],[0,3,2,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,1],[0,3,2,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,1],[0,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,1],[0,3,2,2],[0,2,0,1]],[[1,2,1,1],[1,4,3,1],[0,3,2,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,1],[0,3,2,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,1],[0,3,2,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,1],[0,3,2,2],[0,1,2,0]],[[1,2,1,1],[1,4,3,1],[0,3,2,2],[0,1,2,0]],[[1,3,1,1],[1,3,3,1],[0,3,2,2],[0,1,2,0]],[[2,2,1,1],[1,3,3,1],[0,3,2,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,1],[0,3,2,2],[0,1,1,1]],[[1,2,1,1],[1,4,3,1],[0,3,2,2],[0,1,1,1]],[[1,3,1,1],[1,3,3,1],[0,3,2,2],[0,1,1,1]],[[2,2,1,1],[1,3,3,1],[0,3,2,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,1],[0,3,2,2],[0,0,2,1]],[[1,2,1,1],[1,4,3,1],[0,3,2,2],[0,0,2,1]],[[1,3,1,1],[1,3,3,1],[0,3,2,2],[0,0,2,1]],[[2,2,1,1],[1,3,3,1],[0,3,2,2],[0,0,2,1]],[[1,2,1,1],[1,3,3,1],[0,3,2,1],[1,3,1,0]],[[1,2,1,1],[1,3,3,1],[0,3,2,1],[2,2,1,0]],[[1,2,1,1],[1,3,3,1],[0,4,2,1],[1,2,1,0]],[[1,2,1,1],[1,3,4,1],[0,3,2,1],[1,2,1,0]],[[1,2,1,1],[1,4,3,1],[0,3,2,1],[1,2,1,0]],[[1,3,1,1],[1,3,3,1],[0,3,2,1],[1,2,1,0]],[[2,2,1,1],[1,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,2,1,1],[1,3,3,1],[0,3,2,1],[1,3,0,1]],[[1,2,1,1],[1,3,3,1],[0,3,2,1],[2,2,0,1]],[[1,2,1,1],[1,3,3,1],[0,4,2,1],[1,2,0,1]],[[1,2,1,1],[1,3,4,1],[0,3,2,1],[1,2,0,1]],[[1,2,1,1],[1,4,3,1],[0,3,2,1],[1,2,0,1]],[[1,3,1,1],[1,3,3,1],[0,3,2,1],[1,2,0,1]],[[2,2,1,1],[1,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,0,3,1],[2,2,3,2],[2,0,0,2],[1,2,2,1]],[[1,0,2,2],[2,2,3,2],[2,0,0,2],[1,2,2,1]],[[1,0,2,1],[2,2,3,3],[2,0,0,2],[1,2,2,1]],[[1,2,1,1],[1,3,3,1],[0,4,2,1],[1,1,2,0]],[[1,2,1,1],[1,3,4,1],[0,3,2,1],[1,1,2,0]],[[1,2,1,1],[1,4,3,1],[0,3,2,1],[1,1,2,0]],[[1,3,1,1],[1,3,3,1],[0,3,2,1],[1,1,2,0]],[[2,2,1,1],[1,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,2,1,1],[1,3,3,1],[0,4,2,1],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[0,3,2,1],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[0,3,2,1],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,0,3,1],[2,2,3,2],[2,0,3,0],[1,2,2,0]],[[1,0,2,2],[2,2,3,2],[2,0,3,0],[1,2,2,0]],[[1,0,2,1],[2,2,4,2],[2,0,3,0],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,2,1,1],[1,3,3,1],[0,3,2,0],[1,3,1,1]],[[1,2,1,1],[1,3,3,1],[0,3,2,0],[2,2,1,1]],[[1,2,1,1],[1,3,3,1],[0,4,2,0],[1,2,1,1]],[[1,2,1,1],[1,3,4,1],[0,3,2,0],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[0,3,2,0],[1,2,1,1]],[[1,3,1,1],[1,3,3,1],[0,3,2,0],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,2,1,1],[1,3,3,1],[0,4,2,0],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[0,3,2,0],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[0,3,2,0],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[0,3,2,0],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,2,1,1],[1,3,3,1],[0,3,1,2],[1,3,1,0]],[[1,2,1,1],[1,3,3,1],[0,3,1,2],[2,2,1,0]],[[1,2,1,1],[1,3,3,1],[0,4,1,2],[1,2,1,0]],[[1,2,1,1],[1,3,4,1],[0,3,1,2],[1,2,1,0]],[[1,2,1,1],[1,4,3,1],[0,3,1,2],[1,2,1,0]],[[1,3,1,1],[1,3,3,1],[0,3,1,2],[1,2,1,0]],[[2,2,1,1],[1,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,2,1,1],[1,3,3,1],[0,3,1,2],[1,3,0,1]],[[1,2,1,1],[1,3,3,1],[0,3,1,2],[2,2,0,1]],[[1,2,1,1],[1,3,3,1],[0,4,1,2],[1,2,0,1]],[[1,2,1,1],[1,3,4,1],[0,3,1,2],[1,2,0,1]],[[1,2,1,1],[1,4,3,1],[0,3,1,2],[1,2,0,1]],[[1,3,1,1],[1,3,3,1],[0,3,1,2],[1,2,0,1]],[[2,2,1,1],[1,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,2,1,1],[1,3,3,1],[0,4,1,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,1],[0,3,1,2],[1,1,2,0]],[[1,2,1,1],[1,4,3,1],[0,3,1,2],[1,1,2,0]],[[1,3,1,1],[1,3,3,1],[0,3,1,2],[1,1,2,0]],[[2,2,1,1],[1,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,2,1,1],[1,3,3,1],[0,4,1,2],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[0,3,1,2],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[0,3,1,2],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[0,3,1,2],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[0,3,1,2],[0,1,2,1]],[[1,2,1,1],[1,4,3,1],[0,3,1,2],[0,1,2,1]],[[1,3,1,1],[1,3,3,1],[0,3,1,2],[0,1,2,1]],[[2,2,1,1],[1,3,3,1],[0,3,1,2],[0,1,2,1]],[[1,2,1,1],[1,3,3,1],[0,3,1,1],[1,2,3,0]],[[1,2,1,1],[1,3,3,1],[0,3,1,1],[1,3,2,0]],[[1,2,1,1],[1,3,3,1],[0,3,1,1],[2,2,2,0]],[[1,2,1,1],[1,3,3,1],[0,4,1,1],[1,2,2,0]],[[1,2,1,1],[1,3,4,1],[0,3,1,1],[1,2,2,0]],[[1,2,1,1],[1,4,3,1],[0,3,1,1],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[0,3,1,1],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,2,1,1],[1,3,3,1],[0,3,1,0],[1,2,2,2]],[[1,2,1,1],[1,3,3,1],[0,3,1,0],[1,2,3,1]],[[1,2,1,1],[1,3,3,1],[0,3,1,0],[1,3,2,1]],[[1,2,1,1],[1,3,3,1],[0,3,1,0],[2,2,2,1]],[[1,2,1,1],[1,3,3,1],[0,4,1,0],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[0,3,1,0],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[0,3,1,0],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[0,3,1,0],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,2,1,1],[1,3,3,1],[0,3,0,2],[1,2,3,0]],[[1,2,1,1],[1,3,3,1],[0,3,0,2],[1,3,2,0]],[[1,2,1,1],[1,3,3,1],[0,3,0,2],[2,2,2,0]],[[1,2,1,1],[1,3,3,1],[0,4,0,2],[1,2,2,0]],[[1,2,1,1],[1,3,4,1],[0,3,0,2],[1,2,2,0]],[[1,2,1,1],[1,4,3,1],[0,3,0,2],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[0,3,0,2],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,2,1,1],[1,3,3,1],[0,3,0,2],[1,3,1,1]],[[1,2,1,1],[1,3,3,1],[0,3,0,2],[2,2,1,1]],[[1,2,1,1],[1,3,3,1],[0,4,0,2],[1,2,1,1]],[[1,2,1,1],[1,3,4,1],[0,3,0,2],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[0,3,0,2],[1,2,1,1]],[[1,3,1,1],[1,3,3,1],[0,3,0,2],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,2,1,1],[1,3,3,1],[0,4,0,2],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[0,3,0,2],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[0,3,0,2],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[0,3,0,2],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,2,1,1],[1,3,3,1],[0,3,0,1],[1,2,2,2]],[[1,2,1,1],[1,3,3,1],[0,3,0,1],[1,2,3,1]],[[1,2,1,1],[1,3,3,1],[0,3,0,1],[1,3,2,1]],[[1,2,1,1],[1,3,3,1],[0,3,0,1],[2,2,2,1]],[[1,2,1,1],[1,3,3,1],[0,4,0,1],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[0,3,0,1],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[0,3,0,1],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[0,3,0,1],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[0,2,3,2],[1,1,0,1]],[[1,2,1,1],[1,4,3,1],[0,2,3,2],[1,1,0,1]],[[1,3,1,1],[1,3,3,1],[0,2,3,2],[1,1,0,1]],[[2,2,1,1],[1,3,3,1],[0,2,3,2],[1,1,0,1]],[[2,0,2,1],[2,2,3,2],[2,2,1,0],[1,2,2,0]],[[1,0,2,1],[3,2,3,2],[2,2,1,0],[1,2,2,0]],[[1,0,2,1],[2,2,3,2],[3,2,1,0],[1,2,2,0]],[[1,0,2,1],[2,2,3,2],[2,2,1,0],[2,2,2,0]],[[1,0,2,1],[2,2,3,2],[2,2,1,0],[1,3,2,0]],[[1,2,1,1],[1,3,3,1],[0,2,4,1],[1,2,1,0]],[[1,2,1,1],[1,3,4,1],[0,2,3,1],[1,2,1,0]],[[1,2,1,1],[1,4,3,1],[0,2,3,1],[1,2,1,0]],[[1,3,1,1],[1,3,3,1],[0,2,3,1],[1,2,1,0]],[[2,2,1,1],[1,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,2,1,1],[1,3,3,1],[0,2,4,1],[1,2,0,1]],[[1,2,1,1],[1,3,4,1],[0,2,3,1],[1,2,0,1]],[[1,2,1,1],[1,4,3,1],[0,2,3,1],[1,2,0,1]],[[1,3,1,1],[1,3,3,1],[0,2,3,1],[1,2,0,1]],[[2,2,1,1],[1,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,2,1,1],[1,3,3,1],[0,2,3,1],[1,1,3,0]],[[1,2,1,1],[1,3,3,1],[0,2,4,1],[1,1,2,0]],[[1,2,1,1],[1,3,4,1],[0,2,3,1],[1,1,2,0]],[[1,2,1,1],[1,4,3,1],[0,2,3,1],[1,1,2,0]],[[2,0,2,1],[2,2,3,2],[2,2,2,0],[1,2,1,0]],[[1,0,2,1],[3,2,3,2],[2,2,2,0],[1,2,1,0]],[[1,0,2,1],[2,2,3,2],[3,2,2,0],[1,2,1,0]],[[1,0,2,1],[2,2,3,2],[2,2,2,0],[2,2,1,0]],[[1,0,2,1],[2,2,3,2],[2,2,2,0],[1,3,1,0]],[[1,3,1,1],[1,3,3,1],[0,2,3,1],[1,1,2,0]],[[2,2,1,1],[1,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,2,1,1],[1,3,3,1],[0,2,4,1],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[0,2,3,1],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[0,2,3,1],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[0,2,3,1],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,2,1,1],[1,3,3,1],[0,2,4,1],[1,0,2,1]],[[1,2,1,1],[1,3,4,1],[0,2,3,1],[1,0,2,1]],[[1,2,1,1],[1,4,3,1],[0,2,3,1],[1,0,2,1]],[[1,3,1,1],[1,3,3,1],[0,2,3,1],[1,0,2,1]],[[2,2,1,1],[1,3,3,1],[0,2,3,1],[1,0,2,1]],[[1,2,1,1],[1,3,3,1],[0,2,4,0],[1,2,1,1]],[[1,2,1,1],[1,3,4,1],[0,2,3,0],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[0,2,3,0],[1,2,1,1]],[[1,3,1,1],[1,3,3,1],[0,2,3,0],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,2,1,1],[1,3,3,1],[0,2,3,0],[1,1,2,2]],[[1,2,1,1],[1,3,3,1],[0,2,3,0],[1,1,3,1]],[[1,2,1,1],[1,3,3,1],[0,2,4,0],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[0,2,3,0],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[0,2,3,0],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[0,2,3,0],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[0,2,2,2],[1,2,1,0]],[[1,2,1,1],[1,4,3,1],[0,2,2,2],[1,2,1,0]],[[1,3,1,1],[1,3,3,1],[0,2,2,2],[1,2,1,0]],[[2,2,1,1],[1,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,2,1,1],[1,3,4,1],[0,2,2,2],[1,2,0,1]],[[1,2,1,1],[1,4,3,1],[0,2,2,2],[1,2,0,1]],[[1,3,1,1],[1,3,3,1],[0,2,2,2],[1,2,0,1]],[[2,2,1,1],[1,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,2,1,1],[1,3,4,1],[0,2,2,2],[1,1,2,0]],[[1,2,1,1],[1,4,3,1],[0,2,2,2],[1,1,2,0]],[[1,3,1,1],[1,3,3,1],[0,2,2,2],[1,1,2,0]],[[2,2,1,1],[1,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,1],[0,2,2,2],[1,1,1,1]],[[1,2,1,1],[1,4,3,1],[0,2,2,2],[1,1,1,1]],[[1,3,1,1],[1,3,3,1],[0,2,2,2],[1,1,1,1]],[[2,2,1,1],[1,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,2,1,1],[1,3,4,1],[0,2,2,2],[1,0,2,1]],[[1,2,1,1],[1,4,3,1],[0,2,2,2],[1,0,2,1]],[[1,3,1,1],[1,3,3,1],[0,2,2,2],[1,0,2,1]],[[2,2,1,1],[1,3,3,1],[0,2,2,2],[1,0,2,1]],[[1,2,1,1],[1,3,4,1],[0,2,1,2],[1,1,2,1]],[[1,2,1,1],[1,4,3,1],[0,2,1,2],[1,1,2,1]],[[1,3,1,1],[1,3,3,1],[0,2,1,2],[1,1,2,1]],[[2,2,1,1],[1,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,2,1,1],[1,3,4,1],[0,2,0,2],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[0,2,0,2],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[0,2,0,2],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,2,1,1],[1,3,3,1],[0,1,3,1],[1,2,3,0]],[[1,2,1,1],[1,3,3,1],[0,1,3,1],[1,3,2,0]],[[1,2,1,1],[1,3,3,1],[0,1,3,1],[2,2,2,0]],[[1,2,1,1],[1,3,3,1],[0,1,4,1],[1,2,2,0]],[[1,2,1,1],[1,3,4,1],[0,1,3,1],[1,2,2,0]],[[1,2,1,1],[1,4,3,1],[0,1,3,1],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[0,1,3,1],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,2,1,1],[1,3,3,1],[0,1,4,1],[1,2,1,1]],[[1,2,1,1],[1,3,4,1],[0,1,3,1],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[0,1,3,1],[1,2,1,1]],[[1,3,1,1],[1,3,3,1],[0,1,3,1],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,2,1,1],[1,3,3,1],[0,1,3,0],[1,2,2,2]],[[1,2,1,1],[1,3,3,1],[0,1,3,0],[1,2,3,1]],[[1,2,1,1],[1,3,3,1],[0,1,3,0],[1,3,2,1]],[[1,2,1,1],[1,3,3,1],[0,1,3,0],[2,2,2,1]],[[1,2,1,1],[1,3,3,1],[0,1,4,0],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[0,1,3,0],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[0,1,3,0],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[0,1,3,0],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,2,1,1],[1,3,4,1],[0,1,2,2],[1,2,2,0]],[[1,2,1,1],[1,4,3,1],[0,1,2,2],[1,2,2,0]],[[1,3,1,1],[1,3,3,1],[0,1,2,2],[1,2,2,0]],[[2,2,1,1],[1,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,2,1,1],[1,3,4,1],[0,1,2,2],[1,2,1,1]],[[1,2,1,1],[1,4,3,1],[0,1,2,2],[1,2,1,1]],[[1,3,1,1],[1,3,3,1],[0,1,2,2],[1,2,1,1]],[[2,2,1,1],[1,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,2,1,1],[1,3,4,1],[0,1,1,2],[1,2,2,1]],[[1,2,1,1],[1,4,3,1],[0,1,1,2],[1,2,2,1]],[[1,3,1,1],[1,3,3,1],[0,1,1,2],[1,2,2,1]],[[2,2,1,1],[1,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,2,1,1],[1,3,4,0],[2,3,3,2],[1,0,0,0]],[[1,2,1,1],[1,4,3,0],[2,3,3,2],[1,0,0,0]],[[1,3,1,1],[1,3,3,0],[2,3,3,2],[1,0,0,0]],[[2,2,1,1],[1,3,3,0],[2,3,3,2],[1,0,0,0]],[[1,2,1,1],[1,3,4,0],[2,3,2,2],[1,0,1,0]],[[1,2,1,1],[1,4,3,0],[2,3,2,2],[1,0,1,0]],[[1,3,1,1],[1,3,3,0],[2,3,2,2],[1,0,1,0]],[[2,2,1,1],[1,3,3,0],[2,3,2,2],[1,0,1,0]],[[1,2,1,1],[1,3,4,0],[2,3,2,2],[1,0,0,1]],[[1,2,1,1],[1,4,3,0],[2,3,2,2],[1,0,0,1]],[[1,3,1,1],[1,3,3,0],[2,3,2,2],[1,0,0,1]],[[2,2,1,1],[1,3,3,0],[2,3,2,2],[1,0,0,1]],[[2,0,2,1],[2,2,3,2],[2,3,0,0],[1,2,2,0]],[[1,0,2,1],[3,2,3,2],[2,3,0,0],[1,2,2,0]],[[1,0,2,1],[2,2,3,2],[3,3,0,0],[1,2,2,0]],[[1,0,2,1],[2,2,3,2],[2,3,0,0],[2,2,2,0]],[[1,0,2,1],[2,2,3,2],[2,3,0,0],[1,3,2,0]],[[1,2,1,1],[1,4,3,0],[2,3,2,1],[1,0,1,1]],[[1,3,1,1],[1,3,3,0],[2,3,2,1],[1,0,1,1]],[[2,2,1,1],[1,3,3,0],[2,3,2,1],[1,0,1,1]],[[2,0,2,1],[2,2,3,2],[2,3,1,0],[0,2,2,0]],[[1,0,2,1],[3,2,3,2],[2,3,1,0],[0,2,2,0]],[[1,0,2,1],[2,2,3,2],[3,3,1,0],[0,2,2,0]],[[1,0,2,1],[2,2,3,2],[2,4,1,0],[0,2,2,0]],[[1,0,2,1],[2,2,3,2],[2,3,1,0],[0,3,2,0]],[[2,0,2,1],[2,2,3,2],[2,3,1,0],[1,1,2,0]],[[1,0,2,1],[3,2,3,2],[2,3,1,0],[1,1,2,0]],[[1,0,2,1],[2,2,3,2],[3,3,1,0],[1,1,2,0]],[[1,0,2,1],[2,2,3,2],[2,4,1,0],[1,1,2,0]],[[1,0,2,1],[2,2,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,1,1],[1,4,3,0],[2,3,1,2],[1,2,0,0]],[[1,3,1,1],[1,3,3,0],[2,3,1,2],[1,2,0,0]],[[2,2,1,1],[1,3,3,0],[2,3,1,2],[1,2,0,0]],[[1,2,1,1],[1,4,3,0],[2,3,1,2],[1,1,1,0]],[[1,3,1,1],[1,3,3,0],[2,3,1,2],[1,1,1,0]],[[2,2,1,1],[1,3,3,0],[2,3,1,2],[1,1,1,0]],[[1,2,1,1],[1,4,3,0],[2,3,1,2],[1,1,0,1]],[[1,3,1,1],[1,3,3,0],[2,3,1,2],[1,1,0,1]],[[2,2,1,1],[1,3,3,0],[2,3,1,2],[1,1,0,1]],[[1,2,1,1],[1,4,3,0],[2,3,1,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,0],[2,3,1,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,0],[2,3,1,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,0],[2,3,1,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,0],[2,3,1,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,0],[2,3,1,2],[0,2,0,1]],[[1,2,1,1],[1,4,3,0],[2,3,1,1],[1,2,0,1]],[[1,3,1,1],[1,3,3,0],[2,3,1,1],[1,2,0,1]],[[2,2,1,1],[1,3,3,0],[2,3,1,1],[1,2,0,1]],[[1,2,1,1],[1,4,3,0],[2,3,1,1],[1,1,1,1]],[[1,3,1,1],[1,3,3,0],[2,3,1,1],[1,1,1,1]],[[2,2,1,1],[1,3,3,0],[2,3,1,1],[1,1,1,1]],[[1,2,1,1],[1,4,3,0],[2,3,1,1],[0,2,1,1]],[[1,3,1,1],[1,3,3,0],[2,3,1,1],[0,2,1,1]],[[2,2,1,1],[1,3,3,0],[2,3,1,1],[0,2,1,1]],[[1,2,1,1],[1,4,3,0],[2,3,0,2],[1,2,1,0]],[[1,3,1,1],[1,3,3,0],[2,3,0,2],[1,2,1,0]],[[2,2,1,1],[1,3,3,0],[2,3,0,2],[1,2,1,0]],[[1,2,1,1],[1,4,3,0],[2,3,0,2],[1,1,2,0]],[[1,3,1,1],[1,3,3,0],[2,3,0,2],[1,1,2,0]],[[2,2,1,1],[1,3,3,0],[2,3,0,2],[1,1,2,0]],[[1,2,1,1],[1,4,3,0],[2,3,0,2],[0,2,2,0]],[[1,3,1,1],[1,3,3,0],[2,3,0,2],[0,2,2,0]],[[2,2,1,1],[1,3,3,0],[2,3,0,2],[0,2,2,0]],[[1,2,1,1],[1,4,3,0],[2,3,0,1],[1,2,1,1]],[[1,3,1,1],[1,3,3,0],[2,3,0,1],[1,2,1,1]],[[2,2,1,1],[1,3,3,0],[2,3,0,1],[1,2,1,1]],[[1,2,1,1],[1,4,3,0],[2,3,0,1],[1,1,2,1]],[[1,3,1,1],[1,3,3,0],[2,3,0,1],[1,1,2,1]],[[2,2,1,1],[1,3,3,0],[2,3,0,1],[1,1,2,1]],[[1,2,1,1],[1,4,3,0],[2,3,0,1],[0,2,2,1]],[[1,3,1,1],[1,3,3,0],[2,3,0,1],[0,2,2,1]],[[2,2,1,1],[1,3,3,0],[2,3,0,1],[0,2,2,1]],[[1,2,1,1],[1,3,4,0],[2,2,3,2],[1,1,0,0]],[[1,2,1,1],[1,4,3,0],[2,2,3,2],[1,1,0,0]],[[1,3,1,1],[1,3,3,0],[2,2,3,2],[1,1,0,0]],[[2,2,1,1],[1,3,3,0],[2,2,3,2],[1,1,0,0]],[[2,0,2,1],[2,2,3,2],[2,3,2,0],[0,1,2,0]],[[1,0,2,1],[3,2,3,2],[2,3,2,0],[0,1,2,0]],[[1,0,2,1],[2,2,3,2],[3,3,2,0],[0,1,2,0]],[[1,0,2,1],[2,2,3,2],[2,4,2,0],[0,1,2,0]],[[2,0,2,1],[2,2,3,2],[2,3,2,0],[0,2,0,1]],[[1,0,2,1],[3,2,3,2],[2,3,2,0],[0,2,0,1]],[[1,0,2,1],[2,2,3,2],[3,3,2,0],[0,2,0,1]],[[1,0,2,1],[2,2,3,2],[2,4,2,0],[0,2,0,1]],[[2,0,2,1],[2,2,3,2],[2,3,2,0],[0,2,1,0]],[[1,0,2,1],[3,2,3,2],[2,3,2,0],[0,2,1,0]],[[1,0,2,1],[2,2,3,2],[3,3,2,0],[0,2,1,0]],[[1,0,2,1],[2,2,3,2],[2,4,2,0],[0,2,1,0]],[[1,0,2,1],[2,2,3,2],[2,3,2,0],[0,3,1,0]],[[2,0,2,1],[2,2,3,2],[2,3,2,0],[1,0,2,0]],[[1,0,2,1],[3,2,3,2],[2,3,2,0],[1,0,2,0]],[[1,0,2,1],[2,2,3,2],[3,3,2,0],[1,0,2,0]],[[1,0,2,1],[2,2,3,2],[2,4,2,0],[1,0,2,0]],[[1,0,2,1],[2,2,3,2],[2,3,2,0],[2,0,2,0]],[[2,0,2,1],[2,2,3,2],[2,3,2,0],[1,1,0,1]],[[1,0,2,1],[3,2,3,2],[2,3,2,0],[1,1,0,1]],[[1,0,2,1],[2,2,3,2],[3,3,2,0],[1,1,0,1]],[[1,0,2,1],[2,2,3,2],[2,4,2,0],[1,1,0,1]],[[1,0,2,1],[2,2,3,2],[2,3,2,0],[2,1,0,1]],[[2,0,2,1],[2,2,3,2],[2,3,2,0],[1,1,1,0]],[[1,0,2,1],[3,2,3,2],[2,3,2,0],[1,1,1,0]],[[1,0,2,1],[2,2,3,2],[3,3,2,0],[1,1,1,0]],[[1,0,2,1],[2,2,3,2],[2,4,2,0],[1,1,1,0]],[[1,0,2,1],[2,2,3,2],[2,3,2,0],[2,1,1,0]],[[2,0,2,1],[2,2,3,2],[2,3,2,0],[1,2,0,0]],[[1,0,2,1],[3,2,3,2],[2,3,2,0],[1,2,0,0]],[[1,0,2,1],[2,2,3,2],[3,3,2,0],[1,2,0,0]],[[1,0,2,1],[2,2,3,2],[2,4,2,0],[1,2,0,0]],[[1,0,2,1],[2,2,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,1,1],[1,3,4,0],[2,2,3,2],[0,2,0,0]],[[1,2,1,1],[1,4,3,0],[2,2,3,2],[0,2,0,0]],[[1,3,1,1],[1,3,3,0],[2,2,3,2],[0,2,0,0]],[[2,2,1,1],[1,3,3,0],[2,2,3,2],[0,2,0,0]],[[1,2,1,1],[1,3,4,0],[2,2,2,2],[1,2,0,0]],[[1,2,1,1],[1,4,3,0],[2,2,2,2],[1,2,0,0]],[[1,3,1,1],[1,3,3,0],[2,2,2,2],[1,2,0,0]],[[2,2,1,1],[1,3,3,0],[2,2,2,2],[1,2,0,0]],[[1,2,1,1],[1,3,4,0],[2,2,2,2],[1,1,1,0]],[[1,2,1,1],[1,4,3,0],[2,2,2,2],[1,1,1,0]],[[1,3,1,1],[1,3,3,0],[2,2,2,2],[1,1,1,0]],[[2,2,1,1],[1,3,3,0],[2,2,2,2],[1,1,1,0]],[[1,2,1,1],[1,3,4,0],[2,2,2,2],[1,1,0,1]],[[1,2,1,1],[1,4,3,0],[2,2,2,2],[1,1,0,1]],[[1,3,1,1],[1,3,3,0],[2,2,2,2],[1,1,0,1]],[[2,2,1,1],[1,3,3,0],[2,2,2,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,0],[2,2,2,2],[1,0,2,0]],[[1,2,1,1],[1,4,3,0],[2,2,2,2],[1,0,2,0]],[[1,3,1,1],[1,3,3,0],[2,2,2,2],[1,0,2,0]],[[2,2,1,1],[1,3,3,0],[2,2,2,2],[1,0,2,0]],[[1,2,1,1],[1,3,4,0],[2,2,2,2],[1,0,1,1]],[[1,2,1,1],[1,4,3,0],[2,2,2,2],[1,0,1,1]],[[1,3,1,1],[1,3,3,0],[2,2,2,2],[1,0,1,1]],[[2,2,1,1],[1,3,3,0],[2,2,2,2],[1,0,1,1]],[[1,2,1,1],[1,3,4,0],[2,2,2,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,0],[2,2,2,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,0],[2,2,2,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,0],[2,2,2,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,0],[2,2,2,2],[0,2,0,1]],[[1,2,1,1],[1,4,3,0],[2,2,2,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,0],[2,2,2,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,0],[2,2,2,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,0],[2,2,2,2],[0,1,2,0]],[[1,2,1,1],[1,4,3,0],[2,2,2,2],[0,1,2,0]],[[1,3,1,1],[1,3,3,0],[2,2,2,2],[0,1,2,0]],[[2,2,1,1],[1,3,3,0],[2,2,2,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,0],[2,2,2,2],[0,1,1,1]],[[1,2,1,1],[1,4,3,0],[2,2,2,2],[0,1,1,1]],[[1,3,1,1],[1,3,3,0],[2,2,2,2],[0,1,1,1]],[[2,2,1,1],[1,3,3,0],[2,2,2,2],[0,1,1,1]],[[1,2,1,1],[1,4,3,0],[2,2,2,1],[1,2,0,1]],[[1,3,1,1],[1,3,3,0],[2,2,2,1],[1,2,0,1]],[[2,2,1,1],[1,3,3,0],[2,2,2,1],[1,2,0,1]],[[1,2,1,1],[1,3,4,0],[2,2,2,1],[1,1,1,1]],[[1,2,1,1],[1,4,3,0],[2,2,2,1],[1,1,1,1]],[[1,3,1,1],[1,3,3,0],[2,2,2,1],[1,1,1,1]],[[2,2,1,1],[1,3,3,0],[2,2,2,1],[1,1,1,1]],[[1,2,1,1],[1,3,4,0],[2,2,2,1],[1,0,2,1]],[[1,2,1,1],[1,4,3,0],[2,2,2,1],[1,0,2,1]],[[1,3,1,1],[1,3,3,0],[2,2,2,1],[1,0,2,1]],[[2,2,1,1],[1,3,3,0],[2,2,2,1],[1,0,2,1]],[[1,2,1,1],[1,3,4,0],[2,2,2,1],[0,2,1,1]],[[1,2,1,1],[1,4,3,0],[2,2,2,1],[0,2,1,1]],[[1,3,1,1],[1,3,3,0],[2,2,2,1],[0,2,1,1]],[[2,2,1,1],[1,3,3,0],[2,2,2,1],[0,2,1,1]],[[1,2,1,1],[1,3,4,0],[2,2,2,1],[0,1,2,1]],[[1,2,1,1],[1,4,3,0],[2,2,2,1],[0,1,2,1]],[[1,3,1,1],[1,3,3,0],[2,2,2,1],[0,1,2,1]],[[2,2,1,1],[1,3,3,0],[2,2,2,1],[0,1,2,1]],[[1,2,1,1],[1,3,4,0],[2,2,1,2],[1,1,2,0]],[[1,2,1,1],[1,4,3,0],[2,2,1,2],[1,1,2,0]],[[1,3,1,1],[1,3,3,0],[2,2,1,2],[1,1,2,0]],[[2,2,1,1],[1,3,3,0],[2,2,1,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,0],[2,2,1,2],[0,2,2,0]],[[1,2,1,1],[1,4,3,0],[2,2,1,2],[0,2,2,0]],[[1,3,1,1],[1,3,3,0],[2,2,1,2],[0,2,2,0]],[[2,2,1,1],[1,3,3,0],[2,2,1,2],[0,2,2,0]],[[1,2,1,1],[1,3,4,0],[2,2,1,1],[1,1,2,1]],[[1,2,1,1],[1,4,3,0],[2,2,1,1],[1,1,2,1]],[[1,3,1,1],[1,3,3,0],[2,2,1,1],[1,1,2,1]],[[2,2,1,1],[1,3,3,0],[2,2,1,1],[1,1,2,1]],[[1,2,1,1],[1,3,4,0],[2,2,1,1],[0,2,2,1]],[[1,2,1,1],[1,4,3,0],[2,2,1,1],[0,2,2,1]],[[1,3,1,1],[1,3,3,0],[2,2,1,1],[0,2,2,1]],[[2,2,1,1],[1,3,3,0],[2,2,1,1],[0,2,2,1]],[[1,2,1,1],[1,4,3,0],[2,2,0,2],[1,2,2,0]],[[1,3,1,1],[1,3,3,0],[2,2,0,2],[1,2,2,0]],[[2,2,1,1],[1,3,3,0],[2,2,0,2],[1,2,2,0]],[[1,2,1,1],[1,3,4,0],[2,2,0,2],[1,1,2,1]],[[1,2,1,1],[1,4,3,0],[2,2,0,2],[1,1,2,1]],[[1,3,1,1],[1,3,3,0],[2,2,0,2],[1,1,2,1]],[[2,2,1,1],[1,3,3,0],[2,2,0,2],[1,1,2,1]],[[1,2,1,1],[1,3,4,0],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[1,4,3,0],[2,2,0,2],[0,2,2,1]],[[1,3,1,1],[1,3,3,0],[2,2,0,2],[0,2,2,1]],[[2,2,1,1],[1,3,3,0],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[1,4,3,0],[2,2,0,1],[1,2,2,1]],[[1,3,1,1],[1,3,3,0],[2,2,0,1],[1,2,2,1]],[[2,2,1,1],[1,3,3,0],[2,2,0,1],[1,2,2,1]],[[1,2,1,1],[1,3,3,0],[2,1,3,3],[1,1,1,0]],[[1,2,1,1],[1,3,3,0],[2,1,4,2],[1,1,1,0]],[[1,2,1,1],[1,3,4,0],[2,1,3,2],[1,1,1,0]],[[1,2,1,1],[1,4,3,0],[2,1,3,2],[1,1,1,0]],[[1,3,1,1],[1,3,3,0],[2,1,3,2],[1,1,1,0]],[[2,2,1,1],[1,3,3,0],[2,1,3,2],[1,1,1,0]],[[1,2,1,1],[1,3,3,0],[2,1,3,2],[1,1,0,2]],[[1,2,1,1],[1,3,3,0],[2,1,3,3],[1,1,0,1]],[[1,2,1,1],[1,3,3,0],[2,1,4,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,0],[2,1,3,2],[1,1,0,1]],[[1,2,1,1],[1,4,3,0],[2,1,3,2],[1,1,0,1]],[[1,3,1,1],[1,3,3,0],[2,1,3,2],[1,1,0,1]],[[2,2,1,1],[1,3,3,0],[2,1,3,2],[1,1,0,1]],[[1,2,1,1],[1,3,3,0],[2,1,3,2],[1,0,3,0]],[[1,2,1,1],[1,3,3,0],[2,1,3,3],[1,0,2,0]],[[1,2,1,1],[1,3,3,0],[2,1,4,2],[1,0,2,0]],[[1,2,1,1],[1,3,4,0],[2,1,3,2],[1,0,2,0]],[[1,2,1,1],[1,4,3,0],[2,1,3,2],[1,0,2,0]],[[1,3,1,1],[1,3,3,0],[2,1,3,2],[1,0,2,0]],[[2,2,1,1],[1,3,3,0],[2,1,3,2],[1,0,2,0]],[[1,2,1,1],[1,3,3,0],[2,1,3,2],[1,0,1,2]],[[1,2,1,1],[1,3,3,0],[2,1,3,3],[1,0,1,1]],[[1,2,1,1],[1,3,3,0],[2,1,4,2],[1,0,1,1]],[[1,2,1,1],[1,3,4,0],[2,1,3,2],[1,0,1,1]],[[1,2,1,1],[1,4,3,0],[2,1,3,2],[1,0,1,1]],[[1,3,1,1],[1,3,3,0],[2,1,3,2],[1,0,1,1]],[[2,2,1,1],[1,3,3,0],[2,1,3,2],[1,0,1,1]],[[1,2,1,1],[1,3,3,0],[2,1,3,3],[0,2,1,0]],[[1,2,1,1],[1,3,3,0],[2,1,4,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,0],[2,1,3,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,0],[2,1,3,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,0],[2,1,3,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,0],[2,1,3,2],[0,2,1,0]],[[1,2,1,1],[1,3,3,0],[2,1,3,2],[0,2,0,2]],[[1,2,1,1],[1,3,3,0],[2,1,3,3],[0,2,0,1]],[[1,2,1,1],[1,3,3,0],[2,1,4,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,0],[2,1,3,2],[0,2,0,1]],[[1,2,1,1],[1,4,3,0],[2,1,3,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,0],[2,1,3,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,0],[2,1,3,2],[0,2,0,1]],[[1,2,1,1],[1,3,3,0],[2,1,3,2],[0,1,3,0]],[[1,2,1,1],[1,3,3,0],[2,1,3,3],[0,1,2,0]],[[1,2,1,1],[1,3,3,0],[2,1,4,2],[0,1,2,0]],[[2,0,2,1],[2,2,3,2],[2,3,3,0],[0,2,0,0]],[[1,0,2,1],[3,2,3,2],[2,3,3,0],[0,2,0,0]],[[1,0,2,1],[2,2,3,2],[3,3,3,0],[0,2,0,0]],[[1,0,2,1],[2,2,3,2],[2,4,3,0],[0,2,0,0]],[[1,2,1,1],[1,3,4,0],[2,1,3,2],[0,1,2,0]],[[1,2,1,1],[1,4,3,0],[2,1,3,2],[0,1,2,0]],[[1,3,1,1],[1,3,3,0],[2,1,3,2],[0,1,2,0]],[[2,2,1,1],[1,3,3,0],[2,1,3,2],[0,1,2,0]],[[1,2,1,1],[1,3,3,0],[2,1,3,2],[0,1,1,2]],[[1,2,1,1],[1,3,3,0],[2,1,3,3],[0,1,1,1]],[[1,2,1,1],[1,3,3,0],[2,1,4,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,0],[2,1,3,2],[0,1,1,1]],[[1,2,1,1],[1,4,3,0],[2,1,3,2],[0,1,1,1]],[[1,3,1,1],[1,3,3,0],[2,1,3,2],[0,1,1,1]],[[2,2,1,1],[1,3,3,0],[2,1,3,2],[0,1,1,1]],[[1,2,1,1],[1,3,3,0],[2,1,3,2],[0,0,2,2]],[[1,2,1,1],[1,3,3,0],[2,1,3,3],[0,0,2,1]],[[1,2,1,1],[1,3,3,0],[2,1,4,2],[0,0,2,1]],[[1,2,1,1],[1,3,4,0],[2,1,3,2],[0,0,2,1]],[[1,2,1,1],[1,4,3,0],[2,1,3,2],[0,0,2,1]],[[1,3,1,1],[1,3,3,0],[2,1,3,2],[0,0,2,1]],[[2,2,1,1],[1,3,3,0],[2,1,3,2],[0,0,2,1]],[[1,2,1,1],[1,3,3,0],[2,1,4,1],[1,1,1,1]],[[1,2,1,1],[1,3,4,0],[2,1,3,1],[1,1,1,1]],[[1,2,1,1],[1,4,3,0],[2,1,3,1],[1,1,1,1]],[[1,3,1,1],[1,3,3,0],[2,1,3,1],[1,1,1,1]],[[2,2,1,1],[1,3,3,0],[2,1,3,1],[1,1,1,1]],[[1,2,1,1],[1,3,3,0],[2,1,3,1],[1,0,2,2]],[[1,2,1,1],[1,3,3,0],[2,1,3,1],[1,0,3,1]],[[1,2,1,1],[1,3,3,0],[2,1,4,1],[1,0,2,1]],[[1,2,1,1],[1,3,4,0],[2,1,3,1],[1,0,2,1]],[[1,2,1,1],[1,4,3,0],[2,1,3,1],[1,0,2,1]],[[1,3,1,1],[1,3,3,0],[2,1,3,1],[1,0,2,1]],[[2,2,1,1],[1,3,3,0],[2,1,3,1],[1,0,2,1]],[[2,0,2,1],[2,2,3,2],[2,3,3,0],[1,1,0,0]],[[1,0,2,1],[3,2,3,2],[2,3,3,0],[1,1,0,0]],[[1,0,2,1],[2,2,3,2],[3,3,3,0],[1,1,0,0]],[[1,0,2,1],[2,2,3,2],[2,4,3,0],[1,1,0,0]],[[1,0,2,1],[2,2,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,1,1],[1,3,3,0],[2,1,4,1],[0,2,1,1]],[[1,2,1,1],[1,3,4,0],[2,1,3,1],[0,2,1,1]],[[1,2,1,1],[1,4,3,0],[2,1,3,1],[0,2,1,1]],[[1,3,1,1],[1,3,3,0],[2,1,3,1],[0,2,1,1]],[[2,2,1,1],[1,3,3,0],[2,1,3,1],[0,2,1,1]],[[1,2,1,1],[1,3,3,0],[2,1,3,1],[0,1,2,2]],[[1,2,1,1],[1,3,3,0],[2,1,3,1],[0,1,3,1]],[[1,2,1,1],[1,3,3,0],[2,1,4,1],[0,1,2,1]],[[1,2,1,1],[1,3,4,0],[2,1,3,1],[0,1,2,1]],[[1,2,1,1],[1,4,3,0],[2,1,3,1],[0,1,2,1]],[[1,3,1,1],[1,3,3,0],[2,1,3,1],[0,1,2,1]],[[2,2,1,1],[1,3,3,0],[2,1,3,1],[0,1,2,1]],[[1,2,1,1],[1,3,4,0],[2,1,2,2],[1,2,1,0]],[[1,2,1,1],[1,4,3,0],[2,1,2,2],[1,2,1,0]],[[1,3,1,1],[1,3,3,0],[2,1,2,2],[1,2,1,0]],[[2,2,1,1],[1,3,3,0],[2,1,2,2],[1,2,1,0]],[[1,2,1,1],[1,3,4,0],[2,1,2,2],[1,2,0,1]],[[1,2,1,1],[1,4,3,0],[2,1,2,2],[1,2,0,1]],[[1,3,1,1],[1,3,3,0],[2,1,2,2],[1,2,0,1]],[[2,2,1,1],[1,3,3,0],[2,1,2,2],[1,2,0,1]],[[1,2,1,1],[1,3,3,0],[2,1,2,2],[1,0,2,2]],[[1,2,1,1],[1,3,3,0],[2,1,2,2],[1,0,3,1]],[[1,2,1,1],[1,3,3,0],[2,1,2,3],[1,0,2,1]],[[1,2,1,1],[1,3,3,0],[2,1,2,2],[0,1,2,2]],[[1,2,1,1],[1,3,3,0],[2,1,2,2],[0,1,3,1]],[[1,2,1,1],[1,3,3,0],[2,1,2,3],[0,1,2,1]],[[1,2,1,1],[1,3,4,0],[2,1,2,1],[1,2,1,1]],[[1,2,1,1],[1,4,3,0],[2,1,2,1],[1,2,1,1]],[[1,3,1,1],[1,3,3,0],[2,1,2,1],[1,2,1,1]],[[2,2,1,1],[1,3,3,0],[2,1,2,1],[1,2,1,1]],[[1,2,1,1],[1,3,4,0],[2,1,1,2],[1,2,2,0]],[[1,2,1,1],[1,4,3,0],[2,1,1,2],[1,2,2,0]],[[1,3,1,1],[1,3,3,0],[2,1,1,2],[1,2,2,0]],[[2,2,1,1],[1,3,3,0],[2,1,1,2],[1,2,2,0]],[[1,2,1,1],[1,3,4,0],[2,1,1,1],[1,2,2,1]],[[1,2,1,1],[1,4,3,0],[2,1,1,1],[1,2,2,1]],[[1,3,1,1],[1,3,3,0],[2,1,1,1],[1,2,2,1]],[[2,2,1,1],[1,3,3,0],[2,1,1,1],[1,2,2,1]],[[1,2,1,1],[1,3,4,0],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[1,4,3,0],[2,1,0,2],[1,2,2,1]],[[1,3,1,1],[1,3,3,0],[2,1,0,2],[1,2,2,1]],[[2,2,1,1],[1,3,3,0],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[1,3,3,0],[2,0,3,3],[1,2,1,0]],[[1,2,1,1],[1,3,3,0],[2,0,4,2],[1,2,1,0]],[[1,2,1,1],[1,3,4,0],[2,0,3,2],[1,2,1,0]],[[1,2,1,1],[1,4,3,0],[2,0,3,2],[1,2,1,0]],[[1,3,1,1],[1,3,3,0],[2,0,3,2],[1,2,1,0]],[[2,2,1,1],[1,3,3,0],[2,0,3,2],[1,2,1,0]],[[1,2,1,1],[1,3,3,0],[2,0,3,2],[1,2,0,2]],[[1,2,1,1],[1,3,3,0],[2,0,3,3],[1,2,0,1]],[[1,2,1,1],[1,3,3,0],[2,0,4,2],[1,2,0,1]],[[1,2,1,1],[1,3,4,0],[2,0,3,2],[1,2,0,1]],[[1,2,1,1],[1,4,3,0],[2,0,3,2],[1,2,0,1]],[[1,3,1,1],[1,3,3,0],[2,0,3,2],[1,2,0,1]],[[2,2,1,1],[1,3,3,0],[2,0,3,2],[1,2,0,1]],[[1,2,1,1],[1,3,3,0],[2,0,3,2],[1,1,3,0]],[[1,2,1,1],[1,3,3,0],[2,0,3,3],[1,1,2,0]],[[1,2,1,1],[1,3,3,0],[2,0,4,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,0],[2,0,3,2],[1,1,2,0]],[[1,2,1,1],[1,4,3,0],[2,0,3,2],[1,1,2,0]],[[1,3,1,1],[1,3,3,0],[2,0,3,2],[1,1,2,0]],[[2,2,1,1],[1,3,3,0],[2,0,3,2],[1,1,2,0]],[[1,2,1,1],[1,3,3,0],[2,0,3,2],[1,1,1,2]],[[1,2,1,1],[1,3,3,0],[2,0,3,3],[1,1,1,1]],[[1,2,1,1],[1,3,3,0],[2,0,4,2],[1,1,1,1]],[[1,2,1,1],[1,3,4,0],[2,0,3,2],[1,1,1,1]],[[1,2,1,1],[1,4,3,0],[2,0,3,2],[1,1,1,1]],[[1,3,1,1],[1,3,3,0],[2,0,3,2],[1,1,1,1]],[[2,2,1,1],[1,3,3,0],[2,0,3,2],[1,1,1,1]],[[1,2,1,1],[1,3,3,0],[2,0,3,2],[0,2,3,0]],[[1,2,1,1],[1,3,3,0],[2,0,3,2],[0,3,2,0]],[[1,2,1,1],[1,3,3,0],[2,0,3,3],[0,2,2,0]],[[1,2,1,1],[1,3,3,0],[2,0,4,2],[0,2,2,0]],[[1,2,1,1],[1,3,4,0],[2,0,3,2],[0,2,2,0]],[[1,2,1,1],[1,4,3,0],[2,0,3,2],[0,2,2,0]],[[1,3,1,1],[1,3,3,0],[2,0,3,2],[0,2,2,0]],[[2,2,1,1],[1,3,3,0],[2,0,3,2],[0,2,2,0]],[[1,2,1,1],[1,3,3,0],[2,0,3,2],[0,2,1,2]],[[1,2,1,1],[1,3,3,0],[2,0,3,3],[0,2,1,1]],[[1,2,1,1],[1,3,3,0],[2,0,4,2],[0,2,1,1]],[[1,2,1,1],[1,3,4,0],[2,0,3,2],[0,2,1,1]],[[1,2,1,1],[1,4,3,0],[2,0,3,2],[0,2,1,1]],[[1,3,1,1],[1,3,3,0],[2,0,3,2],[0,2,1,1]],[[2,2,1,1],[1,3,3,0],[2,0,3,2],[0,2,1,1]],[[1,2,1,1],[1,3,3,0],[2,0,4,1],[1,2,1,1]],[[1,2,1,1],[1,3,4,0],[2,0,3,1],[1,2,1,1]],[[1,2,1,1],[1,4,3,0],[2,0,3,1],[1,2,1,1]],[[1,3,1,1],[1,3,3,0],[2,0,3,1],[1,2,1,1]],[[2,2,1,1],[1,3,3,0],[2,0,3,1],[1,2,1,1]],[[1,2,1,1],[1,3,3,0],[2,0,3,1],[1,1,2,2]],[[1,2,1,1],[1,3,3,0],[2,0,3,1],[1,1,3,1]],[[1,2,1,1],[1,3,3,0],[2,0,4,1],[1,1,2,1]],[[1,2,1,1],[1,3,4,0],[2,0,3,1],[1,1,2,1]],[[1,2,1,1],[1,4,3,0],[2,0,3,1],[1,1,2,1]],[[1,3,1,1],[1,3,3,0],[2,0,3,1],[1,1,2,1]],[[2,2,1,1],[1,3,3,0],[2,0,3,1],[1,1,2,1]],[[1,2,1,1],[1,3,3,0],[2,0,3,1],[0,2,2,2]],[[1,2,1,1],[1,3,3,0],[2,0,3,1],[0,2,3,1]],[[1,2,1,1],[1,3,3,0],[2,0,3,1],[0,3,2,1]],[[1,2,1,1],[1,3,3,0],[2,0,4,1],[0,2,2,1]],[[1,2,1,1],[1,3,4,0],[2,0,3,1],[0,2,2,1]],[[1,2,1,1],[1,4,3,0],[2,0,3,1],[0,2,2,1]],[[1,3,1,1],[1,3,3,0],[2,0,3,1],[0,2,2,1]],[[2,2,1,1],[1,3,3,0],[2,0,3,1],[0,2,2,1]],[[1,2,1,1],[1,3,4,0],[2,0,2,2],[1,2,2,0]],[[1,2,1,1],[1,4,3,0],[2,0,2,2],[1,2,2,0]],[[1,3,1,1],[1,3,3,0],[2,0,2,2],[1,2,2,0]],[[2,2,1,1],[1,3,3,0],[2,0,2,2],[1,2,2,0]],[[1,2,1,1],[1,3,3,0],[2,0,2,2],[1,1,2,2]],[[1,2,1,1],[1,3,3,0],[2,0,2,2],[1,1,3,1]],[[1,2,1,1],[1,3,3,0],[2,0,2,3],[1,1,2,1]],[[1,2,1,1],[1,3,3,0],[2,0,2,2],[0,2,2,2]],[[1,2,1,1],[1,3,3,0],[2,0,2,2],[0,2,3,1]],[[1,2,1,1],[1,3,3,0],[2,0,2,2],[0,3,2,1]],[[1,2,1,1],[1,3,3,0],[2,0,2,3],[0,2,2,1]],[[1,2,1,1],[1,3,4,0],[2,0,2,1],[1,2,2,1]],[[1,2,1,1],[1,4,3,0],[2,0,2,1],[1,2,2,1]],[[1,3,1,1],[1,3,3,0],[2,0,2,1],[1,2,2,1]],[[2,2,1,1],[1,3,3,0],[2,0,2,1],[1,2,2,1]],[[1,2,1,1],[1,3,4,0],[2,0,1,2],[1,2,2,1]],[[1,2,1,1],[1,4,3,0],[2,0,1,2],[1,2,2,1]],[[1,3,1,1],[1,3,3,0],[2,0,1,2],[1,2,2,1]],[[2,2,1,1],[1,3,3,0],[2,0,1,2],[1,2,2,1]],[[1,2,1,1],[1,3,3,0],[1,4,3,2],[1,1,0,0]],[[1,2,1,1],[1,3,4,0],[1,3,3,2],[1,1,0,0]],[[1,2,1,1],[1,4,3,0],[1,3,3,2],[1,1,0,0]],[[1,3,1,1],[1,3,3,0],[1,3,3,2],[1,1,0,0]],[[2,2,1,1],[1,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,2,1,1],[1,3,3,0],[1,4,3,2],[0,2,0,0]],[[1,2,1,1],[1,3,4,0],[1,3,3,2],[0,2,0,0]],[[1,2,1,1],[1,4,3,0],[1,3,3,2],[0,2,0,0]],[[1,3,1,1],[1,3,3,0],[1,3,3,2],[0,2,0,0]],[[2,2,1,1],[1,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,2,1,1],[1,3,3,0],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[1,3,3,0],[1,3,4,2],[0,0,2,0]],[[1,2,1,1],[1,3,4,0],[1,3,3,2],[0,0,2,0]],[[1,2,1,1],[1,4,3,0],[1,3,3,2],[0,0,2,0]],[[1,3,1,1],[1,3,3,0],[1,3,3,2],[0,0,2,0]],[[2,2,1,1],[1,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,2,1,1],[1,3,3,0],[1,3,3,2],[0,0,1,2]],[[1,2,1,1],[1,3,3,0],[1,3,3,3],[0,0,1,1]],[[1,2,1,1],[1,3,3,0],[1,3,4,2],[0,0,1,1]],[[1,2,1,1],[1,3,4,0],[1,3,3,2],[0,0,1,1]],[[1,2,1,1],[1,4,3,0],[1,3,3,2],[0,0,1,1]],[[1,3,1,1],[1,3,3,0],[1,3,3,2],[0,0,1,1]],[[2,2,1,1],[1,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,2,1,1],[1,3,3,0],[1,3,4,1],[0,0,2,1]],[[1,2,1,1],[1,3,4,0],[1,3,3,1],[0,0,2,1]],[[1,2,1,1],[1,4,3,0],[1,3,3,1],[0,0,2,1]],[[1,3,1,1],[1,3,3,0],[1,3,3,1],[0,0,2,1]],[[2,2,1,1],[1,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,2,1,1],[1,3,3,0],[1,4,2,2],[1,2,0,0]],[[1,2,1,1],[1,3,4,0],[1,3,2,2],[1,2,0,0]],[[1,2,1,1],[1,4,3,0],[1,3,2,2],[1,2,0,0]],[[1,3,1,1],[1,3,3,0],[1,3,2,2],[1,2,0,0]],[[2,2,1,1],[1,3,3,0],[1,3,2,2],[1,2,0,0]],[[1,2,1,1],[1,3,3,0],[1,4,2,2],[1,1,1,0]],[[1,2,1,1],[1,3,4,0],[1,3,2,2],[1,1,1,0]],[[1,2,1,1],[1,4,3,0],[1,3,2,2],[1,1,1,0]],[[1,3,1,1],[1,3,3,0],[1,3,2,2],[1,1,1,0]],[[2,2,1,1],[1,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,2,1,1],[1,3,3,0],[1,4,2,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,0],[1,3,2,2],[1,1,0,1]],[[1,2,1,1],[1,4,3,0],[1,3,2,2],[1,1,0,1]],[[1,3,1,1],[1,3,3,0],[1,3,2,2],[1,1,0,1]],[[2,2,1,1],[1,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,2,1,1],[1,3,3,0],[1,4,2,2],[1,0,2,0]],[[1,2,1,1],[1,3,4,0],[1,3,2,2],[1,0,2,0]],[[1,2,1,1],[1,4,3,0],[1,3,2,2],[1,0,2,0]],[[1,3,1,1],[1,3,3,0],[1,3,2,2],[1,0,2,0]],[[2,2,1,1],[1,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,2,1,1],[1,3,3,0],[1,4,2,2],[1,0,1,1]],[[1,2,1,1],[1,3,4,0],[1,3,2,2],[1,0,1,1]],[[1,2,1,1],[1,4,3,0],[1,3,2,2],[1,0,1,1]],[[1,3,1,1],[1,3,3,0],[1,3,2,2],[1,0,1,1]],[[2,2,1,1],[1,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,2,1,1],[1,3,3,0],[1,3,2,2],[0,3,1,0]],[[1,2,1,1],[1,3,3,0],[1,4,2,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,0],[1,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,0],[1,3,2,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,0],[1,3,2,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,3,3,0],[1,3,2,2],[0,3,0,1]],[[1,2,1,1],[1,3,3,0],[1,4,2,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,0],[1,3,2,2],[0,2,0,1]],[[1,2,1,1],[1,4,3,0],[1,3,2,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,0],[1,3,2,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,2,1,1],[1,3,3,0],[1,4,2,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,0],[1,3,2,2],[0,1,2,0]],[[1,2,1,1],[1,4,3,0],[1,3,2,2],[0,1,2,0]],[[1,3,1,1],[1,3,3,0],[1,3,2,2],[0,1,2,0]],[[2,2,1,1],[1,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,2,1,1],[1,3,3,0],[1,4,2,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,0],[1,3,2,2],[0,1,1,1]],[[1,2,1,1],[1,4,3,0],[1,3,2,2],[0,1,1,1]],[[1,3,1,1],[1,3,3,0],[1,3,2,2],[0,1,1,1]],[[2,2,1,1],[1,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,2,1,1],[1,3,3,0],[1,4,2,1],[1,2,0,1]],[[1,2,1,1],[1,4,3,0],[1,3,2,1],[1,2,0,1]],[[1,3,1,1],[1,3,3,0],[1,3,2,1],[1,2,0,1]],[[2,2,1,1],[1,3,3,0],[1,3,2,1],[1,2,0,1]],[[1,2,1,1],[1,3,3,0],[1,4,2,1],[1,1,1,1]],[[1,2,1,1],[1,3,4,0],[1,3,2,1],[1,1,1,1]],[[1,2,1,1],[1,4,3,0],[1,3,2,1],[1,1,1,1]],[[1,3,1,1],[1,3,3,0],[1,3,2,1],[1,1,1,1]],[[2,2,1,1],[1,3,3,0],[1,3,2,1],[1,1,1,1]],[[1,2,1,1],[1,3,3,0],[1,4,2,1],[1,0,2,1]],[[1,2,1,1],[1,3,4,0],[1,3,2,1],[1,0,2,1]],[[1,2,1,1],[1,4,3,0],[1,3,2,1],[1,0,2,1]],[[1,3,1,1],[1,3,3,0],[1,3,2,1],[1,0,2,1]],[[2,2,1,1],[1,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,2,1,1],[1,3,3,0],[1,3,2,1],[0,3,1,1]],[[1,2,1,1],[1,3,3,0],[1,4,2,1],[0,2,1,1]],[[1,2,1,1],[1,3,4,0],[1,3,2,1],[0,2,1,1]],[[1,2,1,1],[1,4,3,0],[1,3,2,1],[0,2,1,1]],[[1,3,1,1],[1,3,3,0],[1,3,2,1],[0,2,1,1]],[[2,2,1,1],[1,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,2,1,1],[1,3,3,0],[1,4,2,1],[0,1,2,1]],[[1,2,1,1],[1,3,4,0],[1,3,2,1],[0,1,2,1]],[[1,2,1,1],[1,4,3,0],[1,3,2,1],[0,1,2,1]],[[1,3,1,1],[1,3,3,0],[1,3,2,1],[0,1,2,1]],[[2,2,1,1],[1,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,2,1,1],[1,3,3,0],[1,4,1,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,0],[1,3,1,2],[1,1,2,0]],[[1,2,1,1],[1,4,3,0],[1,3,1,2],[1,1,2,0]],[[1,3,1,1],[1,3,3,0],[1,3,1,2],[1,1,2,0]],[[2,2,1,1],[1,3,3,0],[1,3,1,2],[1,1,2,0]],[[1,2,1,1],[1,3,3,0],[1,3,1,2],[0,2,3,0]],[[1,2,1,1],[1,3,3,0],[1,3,1,2],[0,3,2,0]],[[1,2,1,1],[1,3,3,0],[1,4,1,2],[0,2,2,0]],[[1,2,1,1],[1,3,4,0],[1,3,1,2],[0,2,2,0]],[[1,2,1,1],[1,4,3,0],[1,3,1,2],[0,2,2,0]],[[1,3,1,1],[1,3,3,0],[1,3,1,2],[0,2,2,0]],[[2,2,1,1],[1,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,2,1,1],[1,3,3,0],[1,4,1,1],[1,1,2,1]],[[1,2,1,1],[1,3,4,0],[1,3,1,1],[1,1,2,1]],[[1,2,1,1],[1,4,3,0],[1,3,1,1],[1,1,2,1]],[[1,3,1,1],[1,3,3,0],[1,3,1,1],[1,1,2,1]],[[2,2,1,1],[1,3,3,0],[1,3,1,1],[1,1,2,1]],[[1,2,1,1],[1,3,3,0],[1,3,1,1],[0,2,2,2]],[[1,2,1,1],[1,3,3,0],[1,3,1,1],[0,2,3,1]],[[1,2,1,1],[1,3,3,0],[1,3,1,1],[0,3,2,1]],[[1,2,1,1],[1,3,3,0],[1,4,1,1],[0,2,2,1]],[[1,2,1,1],[1,3,4,0],[1,3,1,1],[0,2,2,1]],[[1,2,1,1],[1,4,3,0],[1,3,1,1],[0,2,2,1]],[[1,3,1,1],[1,3,3,0],[1,3,1,1],[0,2,2,1]],[[2,2,1,1],[1,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,2,1,1],[1,3,3,0],[1,4,0,2],[1,1,2,1]],[[1,2,1,1],[1,3,4,0],[1,3,0,2],[1,1,2,1]],[[1,2,1,1],[1,4,3,0],[1,3,0,2],[1,1,2,1]],[[1,3,1,1],[1,3,3,0],[1,3,0,2],[1,1,2,1]],[[2,2,1,1],[1,3,3,0],[1,3,0,2],[1,1,2,1]],[[1,2,1,1],[1,3,3,0],[1,3,0,2],[0,2,2,2]],[[1,2,1,1],[1,3,3,0],[1,3,0,2],[0,2,3,1]],[[1,2,1,1],[1,3,3,0],[1,3,0,2],[0,3,2,1]],[[1,2,1,1],[1,3,3,0],[1,3,0,3],[0,2,2,1]],[[1,2,1,1],[1,3,3,0],[1,4,0,2],[0,2,2,1]],[[1,2,1,1],[1,3,4,0],[1,3,0,2],[0,2,2,1]],[[1,2,1,1],[1,4,3,0],[1,3,0,2],[0,2,2,1]],[[1,3,1,1],[1,3,3,0],[1,3,0,2],[0,2,2,1]],[[2,2,1,1],[1,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,2,1,1],[1,3,3,0],[1,2,3,3],[1,1,1,0]],[[1,2,1,1],[1,3,3,0],[1,2,4,2],[1,1,1,0]],[[1,2,1,1],[1,3,4,0],[1,2,3,2],[1,1,1,0]],[[1,2,1,1],[1,4,3,0],[1,2,3,2],[1,1,1,0]],[[1,3,1,1],[1,3,3,0],[1,2,3,2],[1,1,1,0]],[[2,2,1,1],[1,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,2,1,1],[1,3,3,0],[1,2,3,2],[1,1,0,2]],[[1,2,1,1],[1,3,3,0],[1,2,3,3],[1,1,0,1]],[[1,2,1,1],[1,3,3,0],[1,2,4,2],[1,1,0,1]],[[1,2,1,1],[1,3,4,0],[1,2,3,2],[1,1,0,1]],[[1,2,1,1],[1,4,3,0],[1,2,3,2],[1,1,0,1]],[[1,3,1,1],[1,3,3,0],[1,2,3,2],[1,1,0,1]],[[2,2,1,1],[1,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,2,1,1],[1,3,3,0],[1,2,3,2],[1,0,3,0]],[[1,2,1,1],[1,3,3,0],[1,2,3,3],[1,0,2,0]],[[1,2,1,1],[1,3,3,0],[1,2,4,2],[1,0,2,0]],[[1,2,1,1],[1,3,4,0],[1,2,3,2],[1,0,2,0]],[[1,2,1,1],[1,4,3,0],[1,2,3,2],[1,0,2,0]],[[1,3,1,1],[1,3,3,0],[1,2,3,2],[1,0,2,0]],[[2,2,1,1],[1,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,2,1,1],[1,3,3,0],[1,2,3,2],[1,0,1,2]],[[1,2,1,1],[1,3,3,0],[1,2,3,3],[1,0,1,1]],[[1,2,1,1],[1,3,3,0],[1,2,4,2],[1,0,1,1]],[[1,2,1,1],[1,3,4,0],[1,2,3,2],[1,0,1,1]],[[1,2,1,1],[1,4,3,0],[1,2,3,2],[1,0,1,1]],[[1,3,1,1],[1,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,0,3,1],[2,3,0,2],[0,2,2,2],[1,2,2,1]],[[1,0,2,2],[2,3,0,2],[0,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,0,3],[0,2,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,2,2,3],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,2,2,2],[2,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,2,2,2],[1,3,2,1]],[[1,0,2,1],[2,3,0,2],[0,2,2,2],[1,2,3,1]],[[1,0,2,1],[2,3,0,2],[0,2,2,2],[1,2,2,2]],[[1,0,2,1],[2,3,0,2],[0,2,4,1],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,2,3,1],[2,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,2,3,1],[1,3,2,1]],[[1,0,2,1],[2,3,0,2],[0,2,3,1],[1,2,3,1]],[[1,0,2,1],[2,3,0,2],[0,2,3,1],[1,2,2,2]],[[1,0,3,1],[2,3,0,2],[0,2,3,2],[1,2,1,1]],[[1,0,2,2],[2,3,0,2],[0,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,0,3],[0,2,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,0,2],[0,2,4,2],[1,2,1,1]],[[1,0,2,1],[2,3,0,2],[0,2,3,3],[1,2,1,1]],[[1,0,2,1],[2,3,0,2],[0,2,3,2],[1,2,1,2]],[[1,0,3,1],[2,3,0,2],[0,2,3,2],[1,2,2,0]],[[1,0,2,2],[2,3,0,2],[0,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,0,3],[0,2,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,0,2],[0,2,4,2],[1,2,2,0]],[[1,0,2,1],[2,3,0,2],[0,2,3,3],[1,2,2,0]],[[1,0,2,1],[2,3,0,2],[0,2,3,2],[2,2,2,0]],[[1,0,2,1],[2,3,0,2],[0,2,3,2],[1,3,2,0]],[[1,0,2,1],[2,3,0,2],[0,2,3,2],[1,2,3,0]],[[2,0,2,1],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,0,3,1],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,2],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[3,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,4,0,2],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,0,3],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,4,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,1,3],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,3,0,2],[0,3,1,2],[1,2,2,2]],[[2,0,2,1],[2,3,0,2],[0,3,2,1],[1,2,2,1]],[[1,0,2,1],[3,3,0,2],[0,3,2,1],[1,2,2,1]],[[1,0,2,1],[2,4,0,2],[0,3,2,1],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,4,2,1],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,3,0,2],[0,3,2,1],[1,2,2,2]],[[1,0,3,1],[2,3,0,2],[0,3,2,2],[1,1,2,1]],[[1,0,2,2],[2,3,0,2],[0,3,2,2],[1,1,2,1]],[[1,0,2,1],[2,3,0,3],[0,3,2,2],[1,1,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,2,3],[1,1,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,2,2],[1,1,3,1]],[[1,0,2,1],[2,3,0,2],[0,3,2,2],[1,1,2,2]],[[2,0,2,1],[2,3,0,2],[0,3,2,2],[1,2,2,0]],[[1,0,2,1],[3,3,0,2],[0,3,2,2],[1,2,2,0]],[[1,0,2,1],[2,4,0,2],[0,3,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,0,2],[0,4,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,0,2],[0,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,3,0,2],[0,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,3,0,2],[0,3,2,2],[1,2,3,0]],[[2,0,2,1],[2,3,0,2],[0,3,3,1],[1,1,2,1]],[[1,0,2,1],[3,3,0,2],[0,3,3,1],[1,1,2,1]],[[1,0,2,1],[2,4,0,2],[0,3,3,1],[1,1,2,1]],[[1,0,2,1],[2,3,0,2],[0,4,3,1],[1,1,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,4,1],[1,1,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,1],[1,1,3,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,1],[1,1,2,2]],[[2,0,2,1],[2,3,0,2],[0,3,3,1],[1,2,1,1]],[[1,0,2,1],[3,3,0,2],[0,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,4,0,2],[0,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,0,2],[0,4,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,0,2],[0,3,4,1],[1,2,1,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,1],[1,3,1,1]],[[1,0,3,1],[2,3,0,2],[0,3,3,2],[1,0,2,1]],[[1,0,2,2],[2,3,0,2],[0,3,3,2],[1,0,2,1]],[[1,0,2,1],[2,3,0,3],[0,3,3,2],[1,0,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,4,2],[1,0,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,3],[1,0,2,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,2],[1,0,2,2]],[[2,0,2,1],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,0,3,1],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,0,2,2],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[3,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,4,0,2],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,0,3],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,0,2],[0,4,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,0,2],[0,3,4,2],[1,1,1,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,3],[1,1,1,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,2],[1,1,1,2]],[[2,0,2,1],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,0,3,1],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,0,2,2],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[3,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,4,0,2],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,0,3],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,0,2],[0,4,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,0,2],[0,3,4,2],[1,1,2,0]],[[1,0,2,1],[2,3,0,2],[0,3,3,3],[1,1,2,0]],[[1,0,2,1],[2,3,0,2],[0,3,3,2],[1,1,3,0]],[[2,0,2,1],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,0,3,1],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,0,2,2],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[3,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,4,0,2],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,0,3],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,0,2],[0,4,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,0,2],[0,3,4,2],[1,2,0,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,3],[1,2,0,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,3,0,2],[0,3,3,2],[1,2,0,2]],[[2,0,2,1],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,0,3,1],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,0,2,2],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[3,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,4,0,2],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,0,3],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,0,2],[0,4,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,0,2],[0,3,4,2],[1,2,1,0]],[[1,0,2,1],[2,3,0,2],[0,3,3,3],[1,2,1,0]],[[1,0,2,1],[2,3,0,2],[0,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,3,0,2],[0,3,3,2],[1,3,1,0]],[[2,2,1,1],[1,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,0,3,1],[2,3,0,2],[1,2,2,2],[0,2,2,1]],[[1,0,2,2],[2,3,0,2],[1,2,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,0,3],[1,2,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,0,2],[1,2,2,3],[0,2,2,1]],[[1,0,2,1],[2,3,0,2],[1,2,2,2],[0,3,2,1]],[[1,0,2,1],[2,3,0,2],[1,2,2,2],[0,2,3,1]],[[1,0,2,1],[2,3,0,2],[1,2,2,2],[0,2,2,2]],[[1,0,2,1],[2,3,0,2],[1,2,4,1],[0,2,2,1]],[[1,0,2,1],[2,3,0,2],[1,2,3,1],[0,3,2,1]],[[1,0,2,1],[2,3,0,2],[1,2,3,1],[0,2,3,1]],[[1,0,2,1],[2,3,0,2],[1,2,3,1],[0,2,2,2]],[[1,0,3,1],[2,3,0,2],[1,2,3,2],[0,2,1,1]],[[1,0,2,2],[2,3,0,2],[1,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,0,3],[1,2,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,0,2],[1,2,4,2],[0,2,1,1]],[[1,0,2,1],[2,3,0,2],[1,2,3,3],[0,2,1,1]],[[1,0,2,1],[2,3,0,2],[1,2,3,2],[0,2,1,2]],[[1,0,3,1],[2,3,0,2],[1,2,3,2],[0,2,2,0]],[[1,0,2,2],[2,3,0,2],[1,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,0,3],[1,2,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,0,2],[1,2,4,2],[0,2,2,0]],[[1,0,2,1],[2,3,0,2],[1,2,3,3],[0,2,2,0]],[[1,0,2,1],[2,3,0,2],[1,2,3,2],[0,3,2,0]],[[1,0,2,1],[2,3,0,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[1,3,3,0],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[1,3,3,0],[1,2,4,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,0],[1,2,3,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,0],[1,2,3,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,0],[1,2,3,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,0],[1,2,3,2],[0,2,1,0]],[[2,0,2,1],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,0,3,1],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,0,2,2],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,0,2,1],[3,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,4,0,2],[1,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,0,3],[1,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,0,2],[1,4,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,1,3],[0,2,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,1,2],[0,3,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,1,2],[0,2,3,1]],[[1,0,2,1],[2,3,0,2],[1,3,1,2],[0,2,2,2]],[[2,0,2,1],[2,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[3,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,4,0,2],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,0,2],[1,4,1,2],[1,1,2,1]],[[2,0,2,1],[2,3,0,2],[1,3,2,1],[0,2,2,1]],[[1,0,2,1],[3,3,0,2],[1,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,4,0,2],[1,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,3,0,2],[1,4,2,1],[0,2,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,2,1],[0,3,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,2,1],[0,2,3,1]],[[1,0,2,1],[2,3,0,2],[1,3,2,1],[0,2,2,2]],[[2,0,2,1],[2,3,0,2],[1,3,2,1],[1,1,2,1]],[[1,0,2,1],[3,3,0,2],[1,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,4,0,2],[1,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,3,0,2],[1,4,2,1],[1,1,2,1]],[[1,0,3,1],[2,3,0,2],[1,3,2,2],[0,1,2,1]],[[1,0,2,2],[2,3,0,2],[1,3,2,2],[0,1,2,1]],[[1,0,2,1],[2,3,0,3],[1,3,2,2],[0,1,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,2,3],[0,1,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,2,2],[0,1,3,1]],[[1,0,2,1],[2,3,0,2],[1,3,2,2],[0,1,2,2]],[[2,0,2,1],[2,3,0,2],[1,3,2,2],[0,2,2,0]],[[1,0,2,1],[3,3,0,2],[1,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,4,0,2],[1,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,0,2],[1,4,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,0,2],[1,3,2,2],[0,3,2,0]],[[1,0,2,1],[2,3,0,2],[1,3,2,2],[0,2,3,0]],[[1,0,3,1],[2,3,0,2],[1,3,2,2],[1,0,2,1]],[[1,0,2,2],[2,3,0,2],[1,3,2,2],[1,0,2,1]],[[1,0,2,1],[2,3,0,3],[1,3,2,2],[1,0,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,2,3],[1,0,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,2,2],[1,0,3,1]],[[1,0,2,1],[2,3,0,2],[1,3,2,2],[1,0,2,2]],[[2,0,2,1],[2,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[3,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,4,0,2],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,0,2],[1,4,2,2],[1,1,2,0]],[[1,2,1,1],[1,3,3,0],[1,2,3,2],[0,2,0,2]],[[1,2,1,1],[1,3,3,0],[1,2,3,3],[0,2,0,1]],[[1,2,1,1],[1,3,3,0],[1,2,4,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,0],[1,2,3,2],[0,2,0,1]],[[1,2,1,1],[1,4,3,0],[1,2,3,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,0],[1,2,3,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,0],[1,2,3,2],[0,2,0,1]],[[2,0,2,1],[2,3,0,2],[1,3,3,1],[0,1,2,1]],[[1,0,2,1],[3,3,0,2],[1,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,4,0,2],[1,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,0,2],[1,4,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,4,1],[0,1,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,1],[0,1,3,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,1],[0,1,2,2]],[[2,0,2,1],[2,3,0,2],[1,3,3,1],[0,2,1,1]],[[1,0,2,1],[3,3,0,2],[1,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,4,0,2],[1,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,0,2],[1,4,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,0,2],[1,3,4,1],[0,2,1,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,1],[0,3,1,1]],[[2,0,2,1],[2,3,0,2],[1,3,3,1],[1,0,2,1]],[[1,0,2,1],[3,3,0,2],[1,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,4,0,2],[1,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,0,2],[1,4,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,4,1],[1,0,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,1],[1,0,3,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,1],[1,0,2,2]],[[2,0,2,1],[2,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[3,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,4,0,2],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,0,2],[1,4,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,0,2],[1,3,4,1],[1,1,1,1]],[[1,2,1,1],[1,3,3,0],[1,2,3,2],[0,1,3,0]],[[1,2,1,1],[1,3,3,0],[1,2,3,3],[0,1,2,0]],[[1,2,1,1],[1,3,3,0],[1,2,4,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,0],[1,2,3,2],[0,1,2,0]],[[1,2,1,1],[1,4,3,0],[1,2,3,2],[0,1,2,0]],[[1,3,1,1],[1,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,0,3,1],[2,3,0,2],[1,3,3,2],[0,0,2,1]],[[1,0,2,2],[2,3,0,2],[1,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,0,3],[1,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,4,2],[0,0,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,3],[0,0,2,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,2],[0,0,2,2]],[[2,0,2,1],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,0,3,1],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,0,2,2],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[3,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,4,0,2],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,0,3],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,0,2],[1,4,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,0,2],[1,3,4,2],[0,1,1,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,3],[0,1,1,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,2],[0,1,1,2]],[[2,0,2,1],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,0,3,1],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,0,2,2],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[3,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,4,0,2],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,0,3],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,0,2],[1,4,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,0,2],[1,3,4,2],[0,1,2,0]],[[1,0,2,1],[2,3,0,2],[1,3,3,3],[0,1,2,0]],[[1,0,2,1],[2,3,0,2],[1,3,3,2],[0,1,3,0]],[[2,0,2,1],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,0,3,1],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,2],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[3,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,4,0,2],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,0,3],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,0,2],[1,4,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,0,2],[1,3,4,2],[0,2,0,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,3],[0,2,0,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,2],[0,3,0,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,2],[0,2,0,2]],[[2,0,2,1],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,0,3,1],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,0,2,2],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[3,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,4,0,2],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,0,3],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,0,2],[1,4,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,0,2],[1,3,4,2],[0,2,1,0]],[[1,0,2,1],[2,3,0,2],[1,3,3,3],[0,2,1,0]],[[1,0,2,1],[2,3,0,2],[1,3,3,2],[0,3,1,0]],[[2,2,1,1],[1,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,2,1,1],[1,3,3,0],[1,2,3,2],[0,1,1,2]],[[1,2,1,1],[1,3,3,0],[1,2,3,3],[0,1,1,1]],[[1,2,1,1],[1,3,3,0],[1,2,4,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,0],[1,2,3,2],[0,1,1,1]],[[1,2,1,1],[1,4,3,0],[1,2,3,2],[0,1,1,1]],[[1,3,1,1],[1,3,3,0],[1,2,3,2],[0,1,1,1]],[[2,2,1,1],[1,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,2,1,1],[1,3,3,0],[1,2,3,2],[0,0,2,2]],[[1,2,1,1],[1,3,3,0],[1,2,3,3],[0,0,2,1]],[[1,2,1,1],[1,3,3,0],[1,2,4,2],[0,0,2,1]],[[1,2,1,1],[1,3,4,0],[1,2,3,2],[0,0,2,1]],[[2,0,2,1],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,0,3,1],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,0,2,2],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[3,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,4,0,2],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,0,3],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,0,2],[1,4,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,0,2],[1,3,4,2],[1,0,1,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,3],[1,0,1,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,2],[1,0,1,2]],[[2,0,2,1],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,0,3,1],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,0,2,2],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[3,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,4,0,2],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,0,3],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,0,2],[1,4,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,0,2],[1,3,4,2],[1,0,2,0]],[[1,0,2,1],[2,3,0,2],[1,3,3,3],[1,0,2,0]],[[1,0,2,1],[2,3,0,2],[1,3,3,2],[1,0,3,0]],[[2,0,2,1],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,0,3,1],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,2],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[3,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,4,0,2],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,0,3],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,0,2],[1,4,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,0,2],[1,3,4,2],[1,1,0,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,3],[1,1,0,1]],[[1,0,2,1],[2,3,0,2],[1,3,3,2],[1,1,0,2]],[[2,0,2,1],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,0,3,1],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,0,2,2],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,0,2,1],[3,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,4,0,2],[1,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,0,3],[1,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,0,2],[1,4,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,0,2],[1,3,4,2],[1,1,1,0]],[[1,0,2,1],[2,3,0,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[1,4,3,0],[1,2,3,2],[0,0,2,1]],[[1,3,1,1],[1,3,3,0],[1,2,3,2],[0,0,2,1]],[[2,2,1,1],[1,3,3,0],[1,2,3,2],[0,0,2,1]],[[2,0,2,1],[2,3,0,2],[1,3,3,2],[1,2,0,0]],[[1,0,2,1],[3,3,0,2],[1,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,4,0,2],[1,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,3,0,2],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[1,3,3,0],[1,2,4,1],[1,1,1,1]],[[1,2,1,1],[1,3,4,0],[1,2,3,1],[1,1,1,1]],[[1,2,1,1],[1,4,3,0],[1,2,3,1],[1,1,1,1]],[[1,3,1,1],[1,3,3,0],[1,2,3,1],[1,1,1,1]],[[2,2,1,1],[1,3,3,0],[1,2,3,1],[1,1,1,1]],[[1,2,1,1],[1,3,3,0],[1,2,3,1],[1,0,2,2]],[[1,2,1,1],[1,3,3,0],[1,2,3,1],[1,0,3,1]],[[1,2,1,1],[1,3,3,0],[1,2,4,1],[1,0,2,1]],[[1,2,1,1],[1,3,4,0],[1,2,3,1],[1,0,2,1]],[[1,2,1,1],[1,4,3,0],[1,2,3,1],[1,0,2,1]],[[1,3,1,1],[1,3,3,0],[1,2,3,1],[1,0,2,1]],[[2,2,1,1],[1,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,2,1,1],[1,3,3,0],[1,2,4,1],[0,2,1,1]],[[1,2,1,1],[1,3,4,0],[1,2,3,1],[0,2,1,1]],[[1,2,1,1],[1,4,3,0],[1,2,3,1],[0,2,1,1]],[[1,3,1,1],[1,3,3,0],[1,2,3,1],[0,2,1,1]],[[2,2,1,1],[1,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,2,1,1],[1,3,3,0],[1,2,3,1],[0,1,2,2]],[[1,2,1,1],[1,3,3,0],[1,2,3,1],[0,1,3,1]],[[1,2,1,1],[1,3,3,0],[1,2,4,1],[0,1,2,1]],[[1,2,1,1],[1,3,4,0],[1,2,3,1],[0,1,2,1]],[[1,2,1,1],[1,4,3,0],[1,2,3,1],[0,1,2,1]],[[1,3,1,1],[1,3,3,0],[1,2,3,1],[0,1,2,1]],[[2,2,1,1],[1,3,3,0],[1,2,3,1],[0,1,2,1]],[[2,0,2,1],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,0,3,1],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,2],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[3,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,4,0,2],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,0,3],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[3,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[2,0,2,3],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[2,0,2,2],[2,2,2,1]],[[1,0,2,1],[2,3,0,2],[2,0,2,2],[1,3,2,1]],[[1,0,2,1],[2,3,0,2],[2,0,2,2],[1,2,3,1]],[[1,0,2,1],[2,3,0,2],[2,0,2,2],[1,2,2,2]],[[2,0,2,1],[2,3,0,2],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[3,3,0,2],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,4,0,2],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[3,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[2,0,4,1],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[2,0,3,1],[2,2,2,1]],[[1,0,2,1],[2,3,0,2],[2,0,3,1],[1,3,2,1]],[[1,0,2,1],[2,3,0,2],[2,0,3,1],[1,2,3,1]],[[1,0,2,1],[2,3,0,2],[2,0,3,1],[1,2,2,2]],[[1,0,3,1],[2,3,0,2],[2,0,3,2],[1,2,1,1]],[[1,0,2,2],[2,3,0,2],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,0,3],[2,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,0,2],[2,0,4,2],[1,2,1,1]],[[1,0,2,1],[2,3,0,2],[2,0,3,3],[1,2,1,1]],[[1,0,2,1],[2,3,0,2],[2,0,3,2],[1,2,1,2]],[[2,0,2,1],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,0,3,1],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,2],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[3,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,4,0,2],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,0,3],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,0,2],[3,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,0,2],[2,0,4,2],[1,2,2,0]],[[1,0,2,1],[2,3,0,2],[2,0,3,3],[1,2,2,0]],[[1,0,2,1],[2,3,0,2],[2,0,3,2],[2,2,2,0]],[[1,0,2,1],[2,3,0,2],[2,0,3,2],[1,3,2,0]],[[1,0,2,1],[2,3,0,2],[2,0,3,2],[1,2,3,0]],[[2,0,2,1],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,0,3,1],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,2],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[3,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,4,0,2],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,0,3],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[3,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[2,1,1,3],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[2,1,1,2],[2,2,2,1]],[[1,0,2,1],[2,3,0,2],[2,1,1,2],[1,3,2,1]],[[1,0,2,1],[2,3,0,2],[2,1,1,2],[1,2,3,1]],[[1,0,2,1],[2,3,0,2],[2,1,1,2],[1,2,2,2]],[[2,0,2,1],[2,3,0,2],[2,1,2,1],[1,2,2,1]],[[1,0,2,1],[3,3,0,2],[2,1,2,1],[1,2,2,1]],[[1,0,2,1],[2,4,0,2],[2,1,2,1],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[3,1,2,1],[1,2,2,1]],[[1,0,2,1],[2,3,0,2],[2,1,2,1],[2,2,2,1]],[[1,0,2,1],[2,3,0,2],[2,1,2,1],[1,3,2,1]],[[1,0,2,1],[2,3,0,2],[2,1,2,1],[1,2,3,1]],[[1,0,2,1],[2,3,0,2],[2,1,2,1],[1,2,2,2]],[[2,0,2,1],[2,3,0,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[3,3,0,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,4,0,2],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,0,2],[3,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,0,2],[2,1,2,2],[2,2,2,0]],[[1,0,2,1],[2,3,0,2],[2,1,2,2],[1,3,2,0]],[[1,0,2,1],[2,3,0,2],[2,1,2,2],[1,2,3,0]],[[2,0,2,1],[2,3,0,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[3,3,0,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,4,0,2],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,0,2],[3,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,0,2],[2,1,3,1],[2,2,1,1]],[[1,0,2,1],[2,3,0,2],[2,1,3,1],[1,3,1,1]],[[2,0,2,1],[2,3,0,2],[2,1,3,2],[1,2,0,1]],[[1,0,2,1],[3,3,0,2],[2,1,3,2],[1,2,0,1]],[[1,0,2,1],[2,4,0,2],[2,1,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,0,2],[3,1,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,0,2],[2,1,3,2],[2,2,0,1]],[[1,0,2,1],[2,3,0,2],[2,1,3,2],[1,3,0,1]],[[2,0,2,1],[2,3,0,2],[2,1,3,2],[1,2,1,0]],[[1,0,2,1],[3,3,0,2],[2,1,3,2],[1,2,1,0]],[[1,0,2,1],[2,4,0,2],[2,1,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,0,2],[3,1,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,0,2],[2,1,3,2],[2,2,1,0]],[[1,0,2,1],[2,3,0,2],[2,1,3,2],[1,3,1,0]],[[1,2,1,1],[1,3,3,0],[1,2,2,2],[1,0,2,2]],[[1,2,1,1],[1,3,3,0],[1,2,2,2],[1,0,3,1]],[[1,2,1,1],[1,3,3,0],[1,2,2,3],[1,0,2,1]],[[1,2,1,1],[1,3,3,0],[1,2,2,2],[0,1,2,2]],[[1,2,1,1],[1,3,3,0],[1,2,2,2],[0,1,3,1]],[[1,2,1,1],[1,3,3,0],[1,2,2,3],[0,1,2,1]],[[2,0,2,1],[2,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[3,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[2,4,0,2],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,0,2],[3,2,1,2],[0,2,2,1]],[[2,0,2,1],[2,3,0,2],[2,2,1,2],[1,1,2,1]],[[1,0,2,1],[3,3,0,2],[2,2,1,2],[1,1,2,1]],[[1,0,2,1],[2,4,0,2],[2,2,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,0,2],[3,2,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,0,2],[2,2,1,2],[2,1,2,1]],[[2,0,2,1],[2,3,0,2],[2,2,2,1],[0,2,2,1]],[[1,0,2,1],[3,3,0,2],[2,2,2,1],[0,2,2,1]],[[1,0,2,1],[2,4,0,2],[2,2,2,1],[0,2,2,1]],[[1,0,2,1],[2,3,0,2],[3,2,2,1],[0,2,2,1]],[[2,0,2,1],[2,3,0,2],[2,2,2,1],[1,1,2,1]],[[1,0,2,1],[3,3,0,2],[2,2,2,1],[1,1,2,1]],[[1,0,2,1],[2,4,0,2],[2,2,2,1],[1,1,2,1]],[[1,0,2,1],[2,3,0,2],[3,2,2,1],[1,1,2,1]],[[1,0,2,1],[2,3,0,2],[2,2,2,1],[2,1,2,1]],[[2,0,2,1],[2,3,0,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[3,3,0,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[2,4,0,2],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,0,2],[3,2,2,2],[0,2,2,0]],[[2,0,2,1],[2,3,0,2],[2,2,2,2],[1,1,2,0]],[[1,0,2,1],[3,3,0,2],[2,2,2,2],[1,1,2,0]],[[1,0,2,1],[2,4,0,2],[2,2,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,0,2],[3,2,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,0,2],[2,2,2,2],[2,1,2,0]],[[2,0,2,1],[2,3,0,2],[2,2,3,1],[0,1,2,1]],[[1,0,2,1],[3,3,0,2],[2,2,3,1],[0,1,2,1]],[[1,0,2,1],[2,4,0,2],[2,2,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,0,2],[3,2,3,1],[0,1,2,1]],[[2,0,2,1],[2,3,0,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[3,3,0,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,4,0,2],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,0,2],[3,2,3,1],[0,2,1,1]],[[2,0,2,1],[2,3,0,2],[2,2,3,1],[1,0,2,1]],[[1,0,2,1],[3,3,0,2],[2,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,4,0,2],[2,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,0,2],[3,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,0,2],[2,2,3,1],[2,0,2,1]],[[2,0,2,1],[2,3,0,2],[2,2,3,1],[1,1,1,1]],[[1,0,2,1],[3,3,0,2],[2,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,4,0,2],[2,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,0,2],[3,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,0,2],[2,2,3,1],[2,1,1,1]],[[2,0,2,1],[2,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[3,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[2,4,0,2],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,0,2],[3,2,3,2],[0,1,1,1]],[[2,0,2,1],[2,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[3,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[2,4,0,2],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,0,2],[3,2,3,2],[0,1,2,0]],[[2,0,2,1],[2,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[3,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[2,4,0,2],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,0,2],[3,2,3,2],[0,2,0,1]],[[2,0,2,1],[2,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[3,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[2,4,0,2],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,0,2],[3,2,3,2],[0,2,1,0]],[[1,2,1,1],[1,3,3,0],[1,1,3,2],[0,2,3,0]],[[1,2,1,1],[1,3,3,0],[1,1,3,2],[0,3,2,0]],[[1,2,1,1],[1,3,3,0],[1,1,3,3],[0,2,2,0]],[[1,2,1,1],[1,3,3,0],[1,1,4,2],[0,2,2,0]],[[1,2,1,1],[1,3,4,0],[1,1,3,2],[0,2,2,0]],[[1,2,1,1],[1,4,3,0],[1,1,3,2],[0,2,2,0]],[[1,3,1,1],[1,3,3,0],[1,1,3,2],[0,2,2,0]],[[2,2,1,1],[1,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,2,1,1],[1,3,3,0],[1,1,3,2],[0,2,1,2]],[[2,0,2,1],[2,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[3,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[2,4,0,2],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,0,2],[3,2,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,0,2],[2,2,3,2],[2,0,1,1]],[[2,0,2,1],[2,3,0,2],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[3,3,0,2],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[2,4,0,2],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,0,2],[3,2,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,0,2],[2,2,3,2],[2,0,2,0]],[[2,0,2,1],[2,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[3,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,4,0,2],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,0,2],[3,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,0,2],[2,2,3,2],[2,1,0,1]],[[2,0,2,1],[2,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[3,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[2,4,0,2],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,0,2],[3,2,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,0,2],[2,2,3,2],[2,1,1,0]],[[1,2,1,1],[1,3,3,0],[1,1,3,3],[0,2,1,1]],[[1,2,1,1],[1,3,3,0],[1,1,4,2],[0,2,1,1]],[[1,2,1,1],[1,3,4,0],[1,1,3,2],[0,2,1,1]],[[1,2,1,1],[1,4,3,0],[1,1,3,2],[0,2,1,1]],[[1,3,1,1],[1,3,3,0],[1,1,3,2],[0,2,1,1]],[[2,0,2,1],[2,3,0,2],[2,2,3,2],[1,2,0,0]],[[1,0,2,1],[3,3,0,2],[2,2,3,2],[1,2,0,0]],[[1,0,2,1],[2,4,0,2],[2,2,3,2],[1,2,0,0]],[[1,0,2,1],[2,3,0,2],[3,2,3,2],[1,2,0,0]],[[1,0,2,1],[2,3,0,2],[2,2,3,2],[2,2,0,0]],[[2,2,1,1],[1,3,3,0],[1,1,3,2],[0,2,1,1]],[[1,2,1,1],[1,3,3,0],[1,1,3,1],[0,2,2,2]],[[1,2,1,1],[1,3,3,0],[1,1,3,1],[0,2,3,1]],[[1,2,1,1],[1,3,3,0],[1,1,3,1],[0,3,2,1]],[[1,2,1,1],[1,3,3,0],[1,1,4,1],[0,2,2,1]],[[1,2,1,1],[1,3,4,0],[1,1,3,1],[0,2,2,1]],[[1,2,1,1],[1,4,3,0],[1,1,3,1],[0,2,2,1]],[[1,3,1,1],[1,3,3,0],[1,1,3,1],[0,2,2,1]],[[2,2,1,1],[1,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,2,1,1],[1,3,3,0],[1,1,2,2],[0,2,2,2]],[[1,2,1,1],[1,3,3,0],[1,1,2,2],[0,2,3,1]],[[1,2,1,1],[1,3,3,0],[1,1,2,2],[0,3,2,1]],[[1,2,1,1],[1,3,3,0],[1,1,2,3],[0,2,2,1]],[[1,2,1,1],[1,3,3,0],[1,0,3,2],[1,2,3,0]],[[1,2,1,1],[1,3,3,0],[1,0,3,2],[1,3,2,0]],[[1,2,1,1],[1,3,3,0],[1,0,3,2],[2,2,2,0]],[[1,2,1,1],[1,3,3,0],[1,0,3,3],[1,2,2,0]],[[1,2,1,1],[1,3,3,0],[1,0,4,2],[1,2,2,0]],[[1,2,1,1],[1,3,4,0],[1,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,4,3,0],[1,0,3,2],[1,2,2,0]],[[1,3,1,1],[1,3,3,0],[1,0,3,2],[1,2,2,0]],[[2,2,1,1],[1,3,3,0],[1,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,3,3,0],[1,0,3,2],[1,2,1,2]],[[1,2,1,1],[1,3,3,0],[1,0,3,3],[1,2,1,1]],[[1,2,1,1],[1,3,3,0],[1,0,4,2],[1,2,1,1]],[[1,2,1,1],[1,3,4,0],[1,0,3,2],[1,2,1,1]],[[1,2,1,1],[1,4,3,0],[1,0,3,2],[1,2,1,1]],[[1,3,1,1],[1,3,3,0],[1,0,3,2],[1,2,1,1]],[[2,2,1,1],[1,3,3,0],[1,0,3,2],[1,2,1,1]],[[1,2,1,1],[1,3,3,0],[1,0,3,2],[0,2,2,2]],[[1,2,1,1],[1,3,3,0],[1,0,3,2],[0,2,3,1]],[[1,2,1,1],[1,3,3,0],[1,0,3,3],[0,2,2,1]],[[1,2,1,1],[1,3,3,0],[1,0,3,1],[1,2,2,2]],[[1,2,1,1],[1,3,3,0],[1,0,3,1],[1,2,3,1]],[[1,2,1,1],[1,3,3,0],[1,0,3,1],[1,3,2,1]],[[1,2,1,1],[1,3,3,0],[1,0,3,1],[2,2,2,1]],[[1,2,1,1],[1,3,3,0],[1,0,4,1],[1,2,2,1]],[[1,2,1,1],[1,3,4,0],[1,0,3,1],[1,2,2,1]],[[1,2,1,1],[1,4,3,0],[1,0,3,1],[1,2,2,1]],[[1,3,1,1],[1,3,3,0],[1,0,3,1],[1,2,2,1]],[[2,2,1,1],[1,3,3,0],[1,0,3,1],[1,2,2,1]],[[1,2,1,1],[1,3,3,0],[1,0,2,2],[1,2,2,2]],[[1,2,1,1],[1,3,3,0],[1,0,2,2],[1,2,3,1]],[[1,2,1,1],[1,3,3,0],[1,0,2,2],[1,3,2,1]],[[1,2,1,1],[1,3,3,0],[1,0,2,2],[2,2,2,1]],[[1,2,1,1],[1,3,3,0],[1,0,2,3],[1,2,2,1]],[[1,2,1,1],[1,3,3,0],[0,4,3,2],[1,2,0,0]],[[1,2,1,1],[1,3,4,0],[0,3,3,2],[1,2,0,0]],[[1,2,1,1],[1,4,3,0],[0,3,3,2],[1,2,0,0]],[[1,3,1,1],[1,3,3,0],[0,3,3,2],[1,2,0,0]],[[2,2,1,1],[1,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,2,1,1],[1,3,3,0],[0,3,3,3],[0,2,1,0]],[[1,2,1,1],[1,3,3,0],[0,3,4,2],[0,2,1,0]],[[1,2,1,1],[1,3,4,0],[0,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,4,3,0],[0,3,3,2],[0,2,1,0]],[[1,3,1,1],[1,3,3,0],[0,3,3,2],[0,2,1,0]],[[2,2,1,1],[1,3,3,0],[0,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,3,3,0],[0,3,3,2],[0,2,0,2]],[[1,2,1,1],[1,3,3,0],[0,3,3,3],[0,2,0,1]],[[1,2,1,1],[1,3,3,0],[0,3,4,2],[0,2,0,1]],[[1,2,1,1],[1,3,4,0],[0,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,4,3,0],[0,3,3,2],[0,2,0,1]],[[1,3,1,1],[1,3,3,0],[0,3,3,2],[0,2,0,1]],[[2,2,1,1],[1,3,3,0],[0,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,3,3,0],[0,3,3,2],[0,1,3,0]],[[1,2,1,1],[1,3,3,0],[0,3,3,3],[0,1,2,0]],[[1,2,1,1],[1,3,3,0],[0,3,4,2],[0,1,2,0]],[[1,2,1,1],[1,3,4,0],[0,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,4,3,0],[0,3,3,2],[0,1,2,0]],[[1,3,1,1],[1,3,3,0],[0,3,3,2],[0,1,2,0]],[[2,2,1,1],[1,3,3,0],[0,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,3,3,0],[0,3,3,2],[0,1,1,2]],[[1,2,1,1],[1,3,3,0],[0,3,3,3],[0,1,1,1]],[[1,2,1,1],[1,3,3,0],[0,3,4,2],[0,1,1,1]],[[1,2,1,1],[1,3,4,0],[0,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,4,3,0],[0,3,3,2],[0,1,1,1]],[[1,3,1,1],[1,3,3,0],[0,3,3,2],[0,1,1,1]],[[2,2,1,1],[1,3,3,0],[0,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,3,3,0],[0,3,3,2],[0,0,2,2]],[[1,2,1,1],[1,3,3,0],[0,3,3,3],[0,0,2,1]],[[1,2,1,1],[1,3,3,0],[0,3,4,2],[0,0,2,1]],[[1,2,1,1],[1,3,4,0],[0,3,3,2],[0,0,2,1]],[[1,2,1,1],[1,4,3,0],[0,3,3,2],[0,0,2,1]],[[1,3,1,1],[1,3,3,0],[0,3,3,2],[0,0,2,1]],[[2,2,1,1],[1,3,3,0],[0,3,3,2],[0,0,2,1]],[[2,0,2,1],[2,3,0,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[3,3,0,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[2,4,0,2],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,0,2],[3,3,3,2],[1,0,0,1]],[[2,0,2,1],[2,3,0,2],[2,3,3,2],[1,0,1,0]],[[1,0,2,1],[3,3,0,2],[2,3,3,2],[1,0,1,0]],[[1,0,2,1],[2,4,0,2],[2,3,3,2],[1,0,1,0]],[[1,0,2,1],[2,3,0,2],[3,3,3,2],[1,0,1,0]],[[1,2,1,1],[1,3,3,0],[0,3,4,1],[0,2,1,1]],[[1,2,1,1],[1,3,4,0],[0,3,3,1],[0,2,1,1]],[[1,2,1,1],[1,4,3,0],[0,3,3,1],[0,2,1,1]],[[1,3,1,1],[1,3,3,0],[0,3,3,1],[0,2,1,1]],[[2,2,1,1],[1,3,3,0],[0,3,3,1],[0,2,1,1]],[[1,2,1,1],[1,3,3,0],[0,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,3,3,0],[0,3,3,1],[0,1,3,1]],[[1,2,1,1],[1,3,3,0],[0,3,4,1],[0,1,2,1]],[[1,2,1,1],[1,3,4,0],[0,3,3,1],[0,1,2,1]],[[1,2,1,1],[1,4,3,0],[0,3,3,1],[0,1,2,1]],[[1,3,1,1],[1,3,3,0],[0,3,3,1],[0,1,2,1]],[[2,2,1,1],[1,3,3,0],[0,3,3,1],[0,1,2,1]],[[1,2,1,1],[1,3,3,0],[0,3,2,2],[1,3,1,0]],[[1,2,1,1],[1,3,3,0],[0,3,2,2],[2,2,1,0]],[[1,2,1,1],[1,3,3,0],[0,4,2,2],[1,2,1,0]],[[1,2,1,1],[1,3,4,0],[0,3,2,2],[1,2,1,0]],[[1,2,1,1],[1,4,3,0],[0,3,2,2],[1,2,1,0]],[[1,3,1,1],[1,3,3,0],[0,3,2,2],[1,2,1,0]],[[2,2,1,1],[1,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,2,1,1],[1,3,3,0],[0,3,2,2],[1,3,0,1]],[[1,2,1,1],[1,3,3,0],[0,3,2,2],[2,2,0,1]],[[1,2,1,1],[1,3,3,0],[0,4,2,2],[1,2,0,1]],[[1,2,1,1],[1,3,4,0],[0,3,2,2],[1,2,0,1]],[[1,2,1,1],[1,4,3,0],[0,3,2,2],[1,2,0,1]],[[1,3,1,1],[1,3,3,0],[0,3,2,2],[1,2,0,1]],[[2,2,1,1],[1,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,2,1,1],[1,3,3,0],[0,4,2,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,0],[0,3,2,2],[1,1,2,0]],[[1,2,1,1],[1,4,3,0],[0,3,2,2],[1,1,2,0]],[[1,3,1,1],[1,3,3,0],[0,3,2,2],[1,1,2,0]],[[2,2,1,1],[1,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,2,1,1],[1,3,3,0],[0,4,2,2],[1,1,1,1]],[[1,2,1,1],[1,3,4,0],[0,3,2,2],[1,1,1,1]],[[1,2,1,1],[1,4,3,0],[0,3,2,2],[1,1,1,1]],[[1,3,1,1],[1,3,3,0],[0,3,2,2],[1,1,1,1]],[[2,2,1,1],[1,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,2,1,1],[1,3,3,0],[0,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,3,3,0],[0,3,2,2],[0,1,3,1]],[[1,2,1,1],[1,3,3,0],[0,3,2,3],[0,1,2,1]],[[1,2,1,1],[1,3,3,0],[0,3,2,1],[1,3,1,1]],[[1,2,1,1],[1,3,3,0],[0,3,2,1],[2,2,1,1]],[[1,2,1,1],[1,3,3,0],[0,4,2,1],[1,2,1,1]],[[1,2,1,1],[1,3,4,0],[0,3,2,1],[1,2,1,1]],[[1,2,1,1],[1,4,3,0],[0,3,2,1],[1,2,1,1]],[[1,3,1,1],[1,3,3,0],[0,3,2,1],[1,2,1,1]],[[2,2,1,1],[1,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,2,1,1],[1,3,3,0],[0,4,2,1],[1,1,2,1]],[[1,2,1,1],[1,3,4,0],[0,3,2,1],[1,1,2,1]],[[1,2,1,1],[1,4,3,0],[0,3,2,1],[1,1,2,1]],[[1,3,1,1],[1,3,3,0],[0,3,2,1],[1,1,2,1]],[[2,2,1,1],[1,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,2,1,1],[1,3,3,0],[0,3,1,2],[1,2,3,0]],[[1,2,1,1],[1,3,3,0],[0,3,1,2],[1,3,2,0]],[[1,2,1,1],[1,3,3,0],[0,3,1,2],[2,2,2,0]],[[1,2,1,1],[1,3,3,0],[0,4,1,2],[1,2,2,0]],[[1,2,1,1],[1,3,4,0],[0,3,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,1,0],[0,4,3,1],[1,2,2,1]],[[1,0,2,1],[2,3,1,0],[0,3,3,1],[2,2,2,1]],[[1,0,2,1],[2,3,1,0],[0,3,3,1],[1,3,2,1]],[[1,0,2,1],[2,3,1,0],[0,3,3,1],[1,2,3,1]],[[1,0,2,1],[2,3,1,0],[0,3,3,1],[1,2,2,2]],[[1,0,2,1],[2,3,1,0],[0,4,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,1,0],[0,3,3,2],[2,2,2,0]],[[1,0,2,1],[2,3,1,0],[0,3,3,2],[1,3,2,0]],[[1,0,2,1],[2,3,1,0],[0,3,3,2],[1,2,3,0]],[[1,0,2,1],[2,3,1,0],[1,4,3,1],[0,2,2,1]],[[1,0,2,1],[2,3,1,0],[1,3,3,1],[0,3,2,1]],[[1,0,2,1],[2,3,1,0],[1,3,3,1],[0,2,3,1]],[[1,0,2,1],[2,3,1,0],[1,3,3,1],[0,2,2,2]],[[1,0,2,1],[2,3,1,0],[1,4,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,1,0],[1,3,3,2],[0,3,2,0]],[[1,0,2,1],[2,3,1,0],[1,3,3,2],[0,2,3,0]],[[1,2,1,1],[1,4,3,0],[0,3,1,2],[1,2,2,0]],[[1,3,1,1],[1,3,3,0],[0,3,1,2],[1,2,2,0]],[[2,2,1,1],[1,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,2,1,1],[1,3,3,0],[0,3,1,1],[1,2,2,2]],[[1,2,1,1],[1,3,3,0],[0,3,1,1],[1,2,3,1]],[[1,2,1,1],[1,3,3,0],[0,3,1,1],[1,3,2,1]],[[1,2,1,1],[1,3,3,0],[0,3,1,1],[2,2,2,1]],[[1,2,1,1],[1,3,3,0],[0,4,1,1],[1,2,2,1]],[[1,2,1,1],[1,3,4,0],[0,3,1,1],[1,2,2,1]],[[1,2,1,1],[1,4,3,0],[0,3,1,1],[1,2,2,1]],[[1,3,1,1],[1,3,3,0],[0,3,1,1],[1,2,2,1]],[[2,2,1,1],[1,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,2,1,1],[1,3,3,0],[0,3,0,2],[1,2,2,2]],[[1,2,1,1],[1,3,3,0],[0,3,0,2],[1,2,3,1]],[[1,2,1,1],[1,3,3,0],[0,3,0,2],[1,3,2,1]],[[1,2,1,1],[1,3,3,0],[0,3,0,2],[2,2,2,1]],[[1,2,1,1],[1,3,3,0],[0,3,0,3],[1,2,2,1]],[[1,2,1,1],[1,3,3,0],[0,4,0,2],[1,2,2,1]],[[1,2,1,1],[1,3,4,0],[0,3,0,2],[1,2,2,1]],[[1,2,1,1],[1,4,3,0],[0,3,0,2],[1,2,2,1]],[[1,3,1,1],[1,3,3,0],[0,3,0,2],[1,2,2,1]],[[2,2,1,1],[1,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,2,1,1],[1,3,3,0],[0,2,3,3],[1,2,1,0]],[[1,2,1,1],[1,3,3,0],[0,2,4,2],[1,2,1,0]],[[1,2,1,1],[1,3,4,0],[0,2,3,2],[1,2,1,0]],[[1,2,1,1],[1,4,3,0],[0,2,3,2],[1,2,1,0]],[[1,3,1,1],[1,3,3,0],[0,2,3,2],[1,2,1,0]],[[2,2,1,1],[1,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,2,1,1],[1,3,3,0],[0,2,3,2],[1,2,0,2]],[[1,2,1,1],[1,3,3,0],[0,2,3,3],[1,2,0,1]],[[1,2,1,1],[1,3,3,0],[0,2,4,2],[1,2,0,1]],[[1,2,1,1],[1,3,4,0],[0,2,3,2],[1,2,0,1]],[[1,2,1,1],[1,4,3,0],[0,2,3,2],[1,2,0,1]],[[1,3,1,1],[1,3,3,0],[0,2,3,2],[1,2,0,1]],[[2,2,1,1],[1,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,2,1,1],[1,3,3,0],[0,2,3,2],[1,1,3,0]],[[1,2,1,1],[1,3,3,0],[0,2,3,3],[1,1,2,0]],[[1,2,1,1],[1,3,3,0],[0,2,4,2],[1,1,2,0]],[[1,2,1,1],[1,3,4,0],[0,2,3,2],[1,1,2,0]],[[1,2,1,1],[1,4,3,0],[0,2,3,2],[1,1,2,0]],[[1,3,1,1],[1,3,3,0],[0,2,3,2],[1,1,2,0]],[[2,2,1,1],[1,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,2,1,1],[1,3,3,0],[0,2,3,2],[1,1,1,2]],[[1,2,1,1],[1,3,3,0],[0,2,3,3],[1,1,1,1]],[[1,2,1,1],[1,3,3,0],[0,2,4,2],[1,1,1,1]],[[1,2,1,1],[1,3,4,0],[0,2,3,2],[1,1,1,1]],[[1,2,1,1],[1,4,3,0],[0,2,3,2],[1,1,1,1]],[[1,3,1,1],[1,3,3,0],[0,2,3,2],[1,1,1,1]],[[2,2,1,1],[1,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,2,1,1],[1,3,3,0],[0,2,3,2],[1,0,2,2]],[[1,2,1,1],[1,3,3,0],[0,2,3,3],[1,0,2,1]],[[1,2,1,1],[1,3,3,0],[0,2,4,2],[1,0,2,1]],[[1,2,1,1],[1,3,4,0],[0,2,3,2],[1,0,2,1]],[[1,2,1,1],[1,4,3,0],[0,2,3,2],[1,0,2,1]],[[1,3,1,1],[1,3,3,0],[0,2,3,2],[1,0,2,1]],[[2,2,1,1],[1,3,3,0],[0,2,3,2],[1,0,2,1]],[[1,2,1,1],[1,3,3,0],[0,2,4,1],[1,2,1,1]],[[1,2,1,1],[1,3,4,0],[0,2,3,1],[1,2,1,1]],[[1,2,1,1],[1,4,3,0],[0,2,3,1],[1,2,1,1]],[[1,3,1,1],[1,3,3,0],[0,2,3,1],[1,2,1,1]],[[2,2,1,1],[1,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,2,1,1],[1,3,3,0],[0,2,3,1],[1,1,2,2]],[[1,2,1,1],[1,3,3,0],[0,2,3,1],[1,1,3,1]],[[1,2,1,1],[1,3,3,0],[0,2,4,1],[1,1,2,1]],[[1,2,1,1],[1,3,4,0],[0,2,3,1],[1,1,2,1]],[[1,2,1,1],[1,4,3,0],[0,2,3,1],[1,1,2,1]],[[1,3,1,1],[1,3,3,0],[0,2,3,1],[1,1,2,1]],[[2,2,1,1],[1,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,2,1,1],[1,3,3,0],[0,2,2,2],[1,1,2,2]],[[1,2,1,1],[1,3,3,0],[0,2,2,2],[1,1,3,1]],[[1,2,1,1],[1,3,3,0],[0,2,2,3],[1,1,2,1]],[[1,2,1,1],[1,3,3,0],[0,1,3,2],[1,2,3,0]],[[1,2,1,1],[1,3,3,0],[0,1,3,2],[1,3,2,0]],[[1,2,1,1],[1,3,3,0],[0,1,3,2],[2,2,2,0]],[[1,2,1,1],[1,3,3,0],[0,1,3,3],[1,2,2,0]],[[1,2,1,1],[1,3,3,0],[0,1,4,2],[1,2,2,0]],[[1,2,1,1],[1,3,4,0],[0,1,3,2],[1,2,2,0]],[[1,2,1,1],[1,4,3,0],[0,1,3,2],[1,2,2,0]],[[1,3,1,1],[1,3,3,0],[0,1,3,2],[1,2,2,0]],[[2,2,1,1],[1,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,2,1,1],[1,3,3,0],[0,1,3,2],[1,2,1,2]],[[1,2,1,1],[1,3,3,0],[0,1,3,3],[1,2,1,1]],[[1,0,3,1],[2,3,1,2],[0,0,3,2],[1,2,2,1]],[[1,0,2,2],[2,3,1,2],[0,0,3,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,3],[0,0,3,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[0,0,3,3],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[0,0,3,2],[1,2,3,1]],[[1,0,2,1],[2,3,1,2],[0,0,3,2],[1,2,2,2]],[[1,0,3,1],[2,3,1,2],[0,1,2,2],[1,2,2,1]],[[1,0,2,2],[2,3,1,2],[0,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,3],[0,1,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[0,1,2,3],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[0,1,2,2],[2,2,2,1]],[[1,0,2,1],[2,3,1,2],[0,1,2,2],[1,3,2,1]],[[1,0,2,1],[2,3,1,2],[0,1,2,2],[1,2,3,1]],[[1,0,2,1],[2,3,1,2],[0,1,2,2],[1,2,2,2]],[[1,0,2,1],[2,3,1,2],[0,1,4,1],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[0,1,3,1],[2,2,2,1]],[[1,0,2,1],[2,3,1,2],[0,1,3,1],[1,3,2,1]],[[1,0,2,1],[2,3,1,2],[0,1,3,1],[1,2,3,1]],[[1,0,2,1],[2,3,1,2],[0,1,3,1],[1,2,2,2]],[[1,0,3,1],[2,3,1,2],[0,1,3,2],[1,2,1,1]],[[1,0,2,2],[2,3,1,2],[0,1,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,1,3],[0,1,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,1,2],[0,1,4,2],[1,2,1,1]],[[1,0,2,1],[2,3,1,2],[0,1,3,3],[1,2,1,1]],[[1,0,2,1],[2,3,1,2],[0,1,3,2],[1,2,1,2]],[[1,0,3,1],[2,3,1,2],[0,1,3,2],[1,2,2,0]],[[1,0,2,2],[2,3,1,2],[0,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,1,3],[0,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,1,2],[0,1,4,2],[1,2,2,0]],[[1,0,2,1],[2,3,1,2],[0,1,3,3],[1,2,2,0]],[[1,0,2,1],[2,3,1,2],[0,1,3,2],[2,2,2,0]],[[1,0,2,1],[2,3,1,2],[0,1,3,2],[1,3,2,0]],[[1,0,2,1],[2,3,1,2],[0,1,3,2],[1,2,3,0]],[[1,0,3,1],[2,3,1,2],[0,2,2,2],[1,1,2,1]],[[1,0,2,2],[2,3,1,2],[0,2,2,2],[1,1,2,1]],[[1,0,2,1],[2,3,1,3],[0,2,2,2],[1,1,2,1]],[[1,0,2,1],[2,3,1,2],[0,2,2,3],[1,1,2,1]],[[1,0,2,1],[2,3,1,2],[0,2,2,2],[1,1,3,1]],[[1,0,2,1],[2,3,1,2],[0,2,2,2],[1,1,2,2]],[[1,0,2,1],[2,3,1,2],[0,2,4,1],[1,1,2,1]],[[1,0,2,1],[2,3,1,2],[0,2,3,1],[1,1,3,1]],[[1,0,2,1],[2,3,1,2],[0,2,3,1],[1,1,2,2]],[[1,0,3,1],[2,3,1,2],[0,2,3,2],[1,0,2,1]],[[1,0,2,2],[2,3,1,2],[0,2,3,2],[1,0,2,1]],[[1,0,2,1],[2,3,1,3],[0,2,3,2],[1,0,2,1]],[[1,0,2,1],[2,3,1,2],[0,2,4,2],[1,0,2,1]],[[1,0,2,1],[2,3,1,2],[0,2,3,3],[1,0,2,1]],[[1,0,2,1],[2,3,1,2],[0,2,3,2],[1,0,2,2]],[[1,0,3,1],[2,3,1,2],[0,2,3,2],[1,1,1,1]],[[1,0,2,2],[2,3,1,2],[0,2,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,1,3],[0,2,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,1,2],[0,2,4,2],[1,1,1,1]],[[1,0,2,1],[2,3,1,2],[0,2,3,3],[1,1,1,1]],[[1,0,2,1],[2,3,1,2],[0,2,3,2],[1,1,1,2]],[[1,0,3,1],[2,3,1,2],[0,2,3,2],[1,1,2,0]],[[1,0,2,2],[2,3,1,2],[0,2,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,1,3],[0,2,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,1,2],[0,2,4,2],[1,1,2,0]],[[1,0,2,1],[2,3,1,2],[0,2,3,3],[1,1,2,0]],[[1,0,2,1],[2,3,1,2],[0,2,3,2],[1,1,3,0]],[[1,0,3,1],[2,3,1,2],[0,2,3,2],[1,2,0,1]],[[1,0,2,2],[2,3,1,2],[0,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,1,3],[0,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,1,2],[0,2,4,2],[1,2,0,1]],[[1,0,2,1],[2,3,1,2],[0,2,3,3],[1,2,0,1]],[[1,0,2,1],[2,3,1,2],[0,2,3,2],[1,2,0,2]],[[1,0,3,1],[2,3,1,2],[0,2,3,2],[1,2,1,0]],[[1,0,2,2],[2,3,1,2],[0,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,1,3],[0,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,1,2],[0,2,4,2],[1,2,1,0]],[[1,0,2,1],[2,3,1,2],[0,2,3,3],[1,2,1,0]],[[1,2,1,1],[1,3,3,0],[0,1,4,2],[1,2,1,1]],[[1,2,1,1],[1,3,4,0],[0,1,3,2],[1,2,1,1]],[[1,2,1,1],[1,4,3,0],[0,1,3,2],[1,2,1,1]],[[1,3,1,1],[1,3,3,0],[0,1,3,2],[1,2,1,1]],[[2,2,1,1],[1,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,2,1,1],[1,3,3,0],[0,1,3,1],[1,2,2,2]],[[1,2,1,1],[1,3,3,0],[0,1,3,1],[1,2,3,1]],[[1,2,1,1],[1,3,3,0],[0,1,3,1],[1,3,2,1]],[[1,2,1,1],[1,3,3,0],[0,1,3,1],[2,2,2,1]],[[2,0,2,1],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,0,3,1],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,2],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[3,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,4,1,2],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,3],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[0,4,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[0,3,0,3],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[0,3,0,2],[2,2,2,1]],[[1,0,2,1],[2,3,1,2],[0,3,0,2],[1,3,2,1]],[[1,0,2,1],[2,3,1,2],[0,3,0,2],[1,2,3,1]],[[1,0,2,1],[2,3,1,2],[0,3,0,2],[1,2,2,2]],[[1,0,3,1],[2,3,1,2],[0,3,2,2],[0,1,2,1]],[[1,0,2,2],[2,3,1,2],[0,3,2,2],[0,1,2,1]],[[1,0,2,1],[2,3,1,3],[0,3,2,2],[0,1,2,1]],[[1,0,2,1],[2,3,1,2],[0,3,2,3],[0,1,2,1]],[[1,0,2,1],[2,3,1,2],[0,3,2,2],[0,1,3,1]],[[1,0,2,1],[2,3,1,2],[0,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,3,3,0],[0,1,4,1],[1,2,2,1]],[[1,2,1,1],[1,3,4,0],[0,1,3,1],[1,2,2,1]],[[1,2,1,1],[1,4,3,0],[0,1,3,1],[1,2,2,1]],[[1,3,1,1],[1,3,3,0],[0,1,3,1],[1,2,2,1]],[[2,2,1,1],[1,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,2,1,1],[1,3,3,0],[0,1,2,2],[1,2,2,2]],[[1,2,1,1],[1,3,3,0],[0,1,2,2],[1,2,3,1]],[[1,2,1,1],[1,3,3,0],[0,1,2,2],[1,3,2,1]],[[1,2,1,1],[1,3,3,0],[0,1,2,2],[2,2,2,1]],[[1,2,1,1],[1,3,3,0],[0,1,2,3],[1,2,2,1]],[[1,2,1,1],[1,3,3,0],[0,0,3,2],[1,2,2,2]],[[1,2,1,1],[1,3,3,0],[0,0,3,2],[1,2,3,1]],[[1,0,2,1],[2,3,1,2],[0,3,4,1],[0,1,2,1]],[[1,0,2,1],[2,3,1,2],[0,3,3,1],[0,1,3,1]],[[1,0,2,1],[2,3,1,2],[0,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,3,3,0],[0,0,3,3],[1,2,2,1]],[[1,0,3,1],[2,3,1,2],[0,3,3,2],[0,0,2,1]],[[1,0,2,2],[2,3,1,2],[0,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,1,3],[0,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,1,2],[0,3,4,2],[0,0,2,1]],[[1,0,2,1],[2,3,1,2],[0,3,3,3],[0,0,2,1]],[[1,0,2,1],[2,3,1,2],[0,3,3,2],[0,0,2,2]],[[1,0,3,1],[2,3,1,2],[0,3,3,2],[0,1,1,1]],[[1,0,2,2],[2,3,1,2],[0,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,1,3],[0,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,1,2],[0,3,4,2],[0,1,1,1]],[[1,0,2,1],[2,3,1,2],[0,3,3,3],[0,1,1,1]],[[1,0,2,1],[2,3,1,2],[0,3,3,2],[0,1,1,2]],[[1,0,3,1],[2,3,1,2],[0,3,3,2],[0,1,2,0]],[[1,0,2,2],[2,3,1,2],[0,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,1,3],[0,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,1,2],[0,3,4,2],[0,1,2,0]],[[1,0,2,1],[2,3,1,2],[0,3,3,3],[0,1,2,0]],[[1,0,2,1],[2,3,1,2],[0,3,3,2],[0,1,3,0]],[[1,0,3,1],[2,3,1,2],[0,3,3,2],[0,2,0,1]],[[1,0,2,2],[2,3,1,2],[0,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,1,3],[0,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,1,2],[0,3,4,2],[0,2,0,1]],[[1,0,2,1],[2,3,1,2],[0,3,3,3],[0,2,0,1]],[[1,0,2,1],[2,3,1,2],[0,3,3,2],[0,2,0,2]],[[1,0,3,1],[2,3,1,2],[0,3,3,2],[0,2,1,0]],[[1,0,2,2],[2,3,1,2],[0,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,1,3],[0,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,1,2],[0,3,4,2],[0,2,1,0]],[[1,0,2,1],[2,3,1,2],[0,3,3,3],[0,2,1,0]],[[1,0,3,1],[2,3,1,2],[1,0,2,2],[1,2,2,1]],[[1,0,2,2],[2,3,1,2],[1,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,3],[1,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,0,2,3],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,0,2,2],[2,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,0,2,2],[1,3,2,1]],[[1,0,2,1],[2,3,1,2],[1,0,2,2],[1,2,3,1]],[[1,0,2,1],[2,3,1,2],[1,0,2,2],[1,2,2,2]],[[1,0,2,1],[2,3,1,2],[1,0,4,1],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,0,3,1],[2,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,0,3,1],[1,3,2,1]],[[1,0,2,1],[2,3,1,2],[1,0,3,1],[1,2,3,1]],[[1,0,2,1],[2,3,1,2],[1,0,3,1],[1,2,2,2]],[[1,0,3,1],[2,3,1,2],[1,0,3,2],[0,2,2,1]],[[1,0,2,2],[2,3,1,2],[1,0,3,2],[0,2,2,1]],[[1,0,2,1],[2,3,1,3],[1,0,3,2],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,0,3,3],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,0,3,2],[0,2,3,1]],[[1,0,2,1],[2,3,1,2],[1,0,3,2],[0,2,2,2]],[[1,0,3,1],[2,3,1,2],[1,0,3,2],[1,2,1,1]],[[1,0,2,2],[2,3,1,2],[1,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,1,3],[1,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,1,2],[1,0,4,2],[1,2,1,1]],[[1,0,2,1],[2,3,1,2],[1,0,3,3],[1,2,1,1]],[[1,0,2,1],[2,3,1,2],[1,0,3,2],[1,2,1,2]],[[1,0,3,1],[2,3,1,2],[1,0,3,2],[1,2,2,0]],[[1,0,2,2],[2,3,1,2],[1,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,1,3],[1,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,1,2],[1,0,4,2],[1,2,2,0]],[[1,0,2,1],[2,3,1,2],[1,0,3,3],[1,2,2,0]],[[1,0,2,1],[2,3,1,2],[1,0,3,2],[2,2,2,0]],[[1,0,2,1],[2,3,1,2],[1,0,3,2],[1,3,2,0]],[[1,0,2,1],[2,3,1,2],[1,0,3,2],[1,2,3,0]],[[1,0,3,1],[2,3,1,2],[1,1,2,2],[0,2,2,1]],[[1,0,2,2],[2,3,1,2],[1,1,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,1,3],[1,1,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,1,2,3],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,1,2,2],[0,3,2,1]],[[1,0,2,1],[2,3,1,2],[1,1,2,2],[0,2,3,1]],[[1,0,2,1],[2,3,1,2],[1,1,2,2],[0,2,2,2]],[[1,0,2,1],[2,3,1,2],[1,1,4,1],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,1,3,1],[0,3,2,1]],[[1,0,2,1],[2,3,1,2],[1,1,3,1],[0,2,3,1]],[[1,0,2,1],[2,3,1,2],[1,1,3,1],[0,2,2,2]],[[1,0,3,1],[2,3,1,2],[1,1,3,2],[0,2,1,1]],[[1,0,2,2],[2,3,1,2],[1,1,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,1,3],[1,1,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,1,2],[1,1,4,2],[0,2,1,1]],[[1,0,2,1],[2,3,1,2],[1,1,3,3],[0,2,1,1]],[[1,0,2,1],[2,3,1,2],[1,1,3,2],[0,2,1,2]],[[1,0,3,1],[2,3,1,2],[1,1,3,2],[0,2,2,0]],[[1,0,2,2],[2,3,1,2],[1,1,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,1,3],[1,1,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,1,2],[1,1,4,2],[0,2,2,0]],[[1,0,2,1],[2,3,1,2],[1,1,3,3],[0,2,2,0]],[[1,0,2,1],[2,3,1,2],[1,1,3,2],[0,3,2,0]],[[1,0,2,1],[2,3,1,2],[1,1,3,2],[0,2,3,0]],[[1,0,3,1],[2,3,1,2],[1,2,2,2],[0,1,2,1]],[[1,0,2,2],[2,3,1,2],[1,2,2,2],[0,1,2,1]],[[1,0,2,1],[2,3,1,3],[1,2,2,2],[0,1,2,1]],[[1,0,2,1],[2,3,1,2],[1,2,2,3],[0,1,2,1]],[[1,0,2,1],[2,3,1,2],[1,2,2,2],[0,1,3,1]],[[1,0,2,1],[2,3,1,2],[1,2,2,2],[0,1,2,2]],[[1,0,3,1],[2,3,1,2],[1,2,2,2],[1,0,2,1]],[[1,0,2,2],[2,3,1,2],[1,2,2,2],[1,0,2,1]],[[1,0,2,1],[2,3,1,3],[1,2,2,2],[1,0,2,1]],[[1,0,2,1],[2,3,1,2],[1,2,2,3],[1,0,2,1]],[[1,0,2,1],[2,3,1,2],[1,2,2,2],[1,0,3,1]],[[1,0,2,1],[2,3,1,2],[1,2,2,2],[1,0,2,2]],[[1,0,2,1],[2,3,1,2],[1,2,4,1],[0,1,2,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,1],[0,1,3,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,1],[0,1,2,2]],[[1,0,2,1],[2,3,1,2],[1,2,4,1],[1,0,2,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,1],[1,0,3,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,1],[1,0,2,2]],[[1,0,3,1],[2,3,1,2],[1,2,3,2],[0,0,2,1]],[[1,0,2,2],[2,3,1,2],[1,2,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,1,3],[1,2,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,1,2],[1,2,4,2],[0,0,2,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,3],[0,0,2,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,2],[0,0,2,2]],[[1,0,3,1],[2,3,1,2],[1,2,3,2],[0,1,1,1]],[[1,0,2,2],[2,3,1,2],[1,2,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,1,3],[1,2,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,1,2],[1,2,4,2],[0,1,1,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,3],[0,1,1,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,2],[0,1,1,2]],[[1,0,3,1],[2,3,1,2],[1,2,3,2],[0,1,2,0]],[[1,0,2,2],[2,3,1,2],[1,2,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,1,3],[1,2,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,1,2],[1,2,4,2],[0,1,2,0]],[[1,0,2,1],[2,3,1,2],[1,2,3,3],[0,1,2,0]],[[1,0,2,1],[2,3,1,2],[1,2,3,2],[0,1,3,0]],[[1,0,3,1],[2,3,1,2],[1,2,3,2],[0,2,0,1]],[[1,0,2,2],[2,3,1,2],[1,2,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,1,3],[1,2,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,1,2],[1,2,4,2],[0,2,0,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,3],[0,2,0,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,2],[0,2,0,2]],[[1,0,3,1],[2,3,1,2],[1,2,3,2],[0,2,1,0]],[[1,0,2,2],[2,3,1,2],[1,2,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,1,3],[1,2,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,1,2],[1,2,4,2],[0,2,1,0]],[[1,0,2,1],[2,3,1,2],[1,2,3,3],[0,2,1,0]],[[1,0,3,1],[2,3,1,2],[1,2,3,2],[1,0,1,1]],[[1,0,2,2],[2,3,1,2],[1,2,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,1,3],[1,2,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,1,2],[1,2,4,2],[1,0,1,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,3],[1,0,1,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,2],[1,0,1,2]],[[1,0,3,1],[2,3,1,2],[1,2,3,2],[1,0,2,0]],[[1,0,2,2],[2,3,1,2],[1,2,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,1,3],[1,2,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,1,2],[1,2,4,2],[1,0,2,0]],[[1,0,2,1],[2,3,1,2],[1,2,3,3],[1,0,2,0]],[[1,0,2,1],[2,3,1,2],[1,2,3,2],[1,0,3,0]],[[1,0,3,1],[2,3,1,2],[1,2,3,2],[1,1,0,1]],[[1,0,2,2],[2,3,1,2],[1,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,1,3],[1,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,1,2],[1,2,4,2],[1,1,0,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,3],[1,1,0,1]],[[1,0,2,1],[2,3,1,2],[1,2,3,2],[1,1,0,2]],[[1,0,3,1],[2,3,1,2],[1,2,3,2],[1,1,1,0]],[[1,0,2,2],[2,3,1,2],[1,2,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,1,3],[1,2,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,1,2],[1,2,4,2],[1,1,1,0]],[[1,0,2,1],[2,3,1,2],[1,2,3,3],[1,1,1,0]],[[2,0,2,1],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,0,3,1],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,2],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[3,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,4,1,2],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,1,3],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,4,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,3,0,3],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[1,3,0,2],[0,3,2,1]],[[1,0,2,1],[2,3,1,2],[1,3,0,2],[0,2,3,1]],[[1,0,2,1],[2,3,1,2],[1,3,0,2],[0,2,2,2]],[[2,0,2,1],[2,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[3,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,4,1,2],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,1,2],[1,4,0,2],[1,1,2,1]],[[1,0,3,1],[2,3,1,2],[1,3,3,2],[0,0,1,1]],[[1,0,2,2],[2,3,1,2],[1,3,3,2],[0,0,1,1]],[[1,0,2,1],[2,3,1,3],[1,3,3,2],[0,0,1,1]],[[1,0,2,1],[2,3,1,2],[1,3,4,2],[0,0,1,1]],[[1,0,2,1],[2,3,1,2],[1,3,3,3],[0,0,1,1]],[[1,0,2,1],[2,3,1,2],[1,3,3,2],[0,0,1,2]],[[1,0,3,1],[2,3,1,2],[1,3,3,2],[0,0,2,0]],[[1,0,2,2],[2,3,1,2],[1,3,3,2],[0,0,2,0]],[[1,0,2,1],[2,3,1,3],[1,3,3,2],[0,0,2,0]],[[1,0,2,1],[2,3,1,2],[1,3,4,2],[0,0,2,0]],[[1,0,2,1],[2,3,1,2],[1,3,3,3],[0,0,2,0]],[[2,0,2,1],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,0,3,1],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,2],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[3,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,4,1,2],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,3],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[3,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,1,3],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,1,2],[2,2,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,1,2],[1,3,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,1,2],[1,2,3,1]],[[1,0,2,1],[2,3,1,2],[2,0,1,2],[1,2,2,2]],[[1,0,3,1],[2,3,1,2],[2,0,2,2],[0,2,2,1]],[[1,0,2,2],[2,3,1,2],[2,0,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,1,3],[2,0,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,2,3],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,2,2],[0,3,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,2,2],[0,2,3,1]],[[1,0,2,1],[2,3,1,2],[2,0,2,2],[0,2,2,2]],[[1,0,3,1],[2,3,1,2],[2,0,2,2],[1,1,2,1]],[[1,0,2,2],[2,3,1,2],[2,0,2,2],[1,1,2,1]],[[1,0,2,1],[2,3,1,3],[2,0,2,2],[1,1,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,2,3],[1,1,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,2,2],[1,1,3,1]],[[1,0,2,1],[2,3,1,2],[2,0,2,2],[1,1,2,2]],[[1,0,2,1],[2,3,1,2],[2,0,4,1],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,3,1],[0,3,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,3,1],[0,2,3,1]],[[1,0,2,1],[2,3,1,2],[2,0,3,1],[0,2,2,2]],[[1,0,2,1],[2,3,1,2],[2,0,4,1],[1,1,2,1]],[[1,0,2,1],[2,3,1,2],[2,0,3,1],[1,1,3,1]],[[1,0,2,1],[2,3,1,2],[2,0,3,1],[1,1,2,2]],[[1,0,3,1],[2,3,1,2],[2,0,3,2],[0,2,1,1]],[[1,0,2,2],[2,3,1,2],[2,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,1,3],[2,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,1,2],[2,0,4,2],[0,2,1,1]],[[1,0,2,1],[2,3,1,2],[2,0,3,3],[0,2,1,1]],[[1,0,2,1],[2,3,1,2],[2,0,3,2],[0,2,1,2]],[[1,0,3,1],[2,3,1,2],[2,0,3,2],[0,2,2,0]],[[1,0,2,2],[2,3,1,2],[2,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,1,3],[2,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,1,2],[2,0,4,2],[0,2,2,0]],[[1,0,2,1],[2,3,1,2],[2,0,3,3],[0,2,2,0]],[[1,0,2,1],[2,3,1,2],[2,0,3,2],[0,3,2,0]],[[1,0,2,1],[2,3,1,2],[2,0,3,2],[0,2,3,0]],[[1,0,3,1],[2,3,1,2],[2,0,3,2],[1,1,1,1]],[[1,0,2,2],[2,3,1,2],[2,0,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,1,3],[2,0,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,1,2],[2,0,4,2],[1,1,1,1]],[[1,0,2,1],[2,3,1,2],[2,0,3,3],[1,1,1,1]],[[1,0,2,1],[2,3,1,2],[2,0,3,2],[1,1,1,2]],[[1,0,3,1],[2,3,1,2],[2,0,3,2],[1,1,2,0]],[[1,0,2,2],[2,3,1,2],[2,0,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,1,3],[2,0,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,1,2],[2,0,4,2],[1,1,2,0]],[[1,0,2,1],[2,3,1,2],[2,0,3,3],[1,1,2,0]],[[1,0,2,1],[2,3,1,2],[2,0,3,2],[1,1,3,0]],[[1,0,3,1],[2,3,1,2],[2,0,3,2],[1,2,0,1]],[[1,0,2,2],[2,3,1,2],[2,0,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,1,3],[2,0,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,1,2],[2,0,4,2],[1,2,0,1]],[[1,0,2,1],[2,3,1,2],[2,0,3,3],[1,2,0,1]],[[1,0,2,1],[2,3,1,2],[2,0,3,2],[1,2,0,2]],[[1,0,3,1],[2,3,1,2],[2,0,3,2],[1,2,1,0]],[[1,0,2,2],[2,3,1,2],[2,0,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,1,3],[2,0,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,1,2],[2,0,4,2],[1,2,1,0]],[[1,0,2,1],[2,3,1,2],[2,0,3,3],[1,2,1,0]],[[2,0,2,1],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,0,3,1],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,2],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[3,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,4,1,2],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,3],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[3,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,0,3],[1,2,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,0,2],[2,2,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,0,2],[1,3,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,0,2],[1,2,3,1]],[[1,0,2,1],[2,3,1,2],[2,1,0,2],[1,2,2,2]],[[1,0,3,1],[2,3,1,2],[2,1,2,2],[0,1,2,1]],[[1,0,2,2],[2,3,1,2],[2,1,2,2],[0,1,2,1]],[[1,0,2,1],[2,3,1,3],[2,1,2,2],[0,1,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,2,3],[0,1,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,2,2],[0,1,3,1]],[[1,0,2,1],[2,3,1,2],[2,1,2,2],[0,1,2,2]],[[1,0,3,1],[2,3,1,2],[2,1,2,2],[1,0,2,1]],[[1,0,2,2],[2,3,1,2],[2,1,2,2],[1,0,2,1]],[[1,0,2,1],[2,3,1,3],[2,1,2,2],[1,0,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,2,3],[1,0,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,2,2],[1,0,3,1]],[[1,0,2,1],[2,3,1,2],[2,1,2,2],[1,0,2,2]],[[1,0,2,1],[2,3,1,2],[2,1,4,1],[0,1,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,1],[0,1,3,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,1],[0,1,2,2]],[[1,0,2,1],[2,3,1,2],[2,1,4,1],[1,0,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,1],[1,0,3,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,1],[1,0,2,2]],[[1,0,3,1],[2,3,1,2],[2,1,3,2],[0,0,2,1]],[[1,0,2,2],[2,3,1,2],[2,1,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,1,3],[2,1,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,4,2],[0,0,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,3],[0,0,2,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,2],[0,0,2,2]],[[1,0,3,1],[2,3,1,2],[2,1,3,2],[0,1,1,1]],[[1,0,2,2],[2,3,1,2],[2,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,1,3],[2,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,1,2],[2,1,4,2],[0,1,1,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,3],[0,1,1,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,2],[0,1,1,2]],[[1,0,3,1],[2,3,1,2],[2,1,3,2],[0,1,2,0]],[[1,0,2,2],[2,3,1,2],[2,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,1,3],[2,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,1,2],[2,1,4,2],[0,1,2,0]],[[1,0,2,1],[2,3,1,2],[2,1,3,3],[0,1,2,0]],[[1,0,2,1],[2,3,1,2],[2,1,3,2],[0,1,3,0]],[[1,0,3,1],[2,3,1,2],[2,1,3,2],[0,2,0,1]],[[1,0,2,2],[2,3,1,2],[2,1,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,1,3],[2,1,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,1,2],[2,1,4,2],[0,2,0,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,3],[0,2,0,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,2],[0,2,0,2]],[[1,0,3,1],[2,3,1,2],[2,1,3,2],[0,2,1,0]],[[1,0,2,2],[2,3,1,2],[2,1,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,1,3],[2,1,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,1,2],[2,1,4,2],[0,2,1,0]],[[1,0,2,1],[2,3,1,2],[2,1,3,3],[0,2,1,0]],[[1,0,3,1],[2,3,1,2],[2,1,3,2],[1,0,1,1]],[[1,0,2,2],[2,3,1,2],[2,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,1,3],[2,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,1,2],[2,1,4,2],[1,0,1,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,3],[1,0,1,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,2],[1,0,1,2]],[[1,0,3,1],[2,3,1,2],[2,1,3,2],[1,0,2,0]],[[1,0,2,2],[2,3,1,2],[2,1,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,1,3],[2,1,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,1,2],[2,1,4,2],[1,0,2,0]],[[1,0,2,1],[2,3,1,2],[2,1,3,3],[1,0,2,0]],[[1,0,2,1],[2,3,1,2],[2,1,3,2],[1,0,3,0]],[[1,0,3,1],[2,3,1,2],[2,1,3,2],[1,1,0,1]],[[1,0,2,2],[2,3,1,2],[2,1,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,1,3],[2,1,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,1,2],[2,1,4,2],[1,1,0,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,3],[1,1,0,1]],[[1,0,2,1],[2,3,1,2],[2,1,3,2],[1,1,0,2]],[[1,0,3,1],[2,3,1,2],[2,1,3,2],[1,1,1,0]],[[1,0,2,2],[2,3,1,2],[2,1,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,1,3],[2,1,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,1,2],[2,1,4,2],[1,1,1,0]],[[1,0,2,1],[2,3,1,2],[2,1,3,3],[1,1,1,0]],[[2,0,2,1],[2,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[3,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[2,4,1,2],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,1,2],[3,2,0,2],[0,2,2,1]],[[2,0,2,1],[2,3,1,2],[2,2,0,2],[1,1,2,1]],[[1,0,2,1],[3,3,1,2],[2,2,0,2],[1,1,2,1]],[[1,0,2,1],[2,4,1,2],[2,2,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,1,2],[3,2,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,1,2],[2,2,0,2],[2,1,2,1]],[[1,2,1,1],[1,4,2,1],[2,3,3,1],[1,0,1,0]],[[1,3,1,1],[1,3,2,1],[2,3,3,1],[1,0,1,0]],[[2,2,1,1],[1,3,2,1],[2,3,3,1],[1,0,1,0]],[[1,2,1,1],[1,4,2,1],[2,3,3,1],[1,0,0,1]],[[1,3,1,1],[1,3,2,1],[2,3,3,1],[1,0,0,1]],[[2,2,1,1],[1,3,2,1],[2,3,3,1],[1,0,0,1]],[[1,2,1,1],[1,4,2,1],[2,3,3,0],[1,0,1,1]],[[1,3,1,1],[1,3,2,1],[2,3,3,0],[1,0,1,1]],[[2,2,1,1],[1,3,2,1],[2,3,3,0],[1,0,1,1]],[[1,2,1,1],[1,4,2,1],[2,2,3,1],[1,2,0,0]],[[1,3,1,1],[1,3,2,1],[2,2,3,1],[1,2,0,0]],[[2,2,1,1],[1,3,2,1],[2,2,3,1],[1,2,0,0]],[[1,2,1,1],[1,4,2,1],[2,2,3,1],[1,1,1,0]],[[1,3,1,1],[1,3,2,1],[2,2,3,1],[1,1,1,0]],[[2,2,1,1],[1,3,2,1],[2,2,3,1],[1,1,1,0]],[[1,2,1,1],[1,4,2,1],[2,2,3,1],[1,1,0,1]],[[1,3,1,1],[1,3,2,1],[2,2,3,1],[1,1,0,1]],[[2,2,1,1],[1,3,2,1],[2,2,3,1],[1,1,0,1]],[[1,2,1,1],[1,4,2,1],[2,2,3,1],[1,0,2,0]],[[1,3,1,1],[1,3,2,1],[2,2,3,1],[1,0,2,0]],[[2,2,1,1],[1,3,2,1],[2,2,3,1],[1,0,2,0]],[[1,2,1,1],[1,4,2,1],[2,2,3,1],[1,0,1,1]],[[1,3,1,1],[1,3,2,1],[2,2,3,1],[1,0,1,1]],[[2,2,1,1],[1,3,2,1],[2,2,3,1],[1,0,1,1]],[[1,2,1,1],[1,4,2,1],[2,2,3,1],[0,2,1,0]],[[1,3,1,1],[1,3,2,1],[2,2,3,1],[0,2,1,0]],[[2,2,1,1],[1,3,2,1],[2,2,3,1],[0,2,1,0]],[[1,2,1,1],[1,4,2,1],[2,2,3,1],[0,2,0,1]],[[1,3,1,1],[1,3,2,1],[2,2,3,1],[0,2,0,1]],[[2,2,1,1],[1,3,2,1],[2,2,3,1],[0,2,0,1]],[[1,2,1,1],[1,4,2,1],[2,2,3,1],[0,1,2,0]],[[1,3,1,1],[1,3,2,1],[2,2,3,1],[0,1,2,0]],[[2,2,1,1],[1,3,2,1],[2,2,3,1],[0,1,2,0]],[[1,2,1,1],[1,4,2,1],[2,2,3,1],[0,1,1,1]],[[1,3,1,1],[1,3,2,1],[2,2,3,1],[0,1,1,1]],[[2,2,1,1],[1,3,2,1],[2,2,3,1],[0,1,1,1]],[[1,2,1,1],[1,4,2,1],[2,2,3,0],[1,2,0,1]],[[1,3,1,1],[1,3,2,1],[2,2,3,0],[1,2,0,1]],[[2,2,1,1],[1,3,2,1],[2,2,3,0],[1,2,0,1]],[[1,2,1,1],[1,4,2,1],[2,2,3,0],[1,1,1,1]],[[1,3,1,1],[1,3,2,1],[2,2,3,0],[1,1,1,1]],[[2,2,1,1],[1,3,2,1],[2,2,3,0],[1,1,1,1]],[[1,2,1,1],[1,4,2,1],[2,2,3,0],[1,0,2,1]],[[1,3,1,1],[1,3,2,1],[2,2,3,0],[1,0,2,1]],[[2,2,1,1],[1,3,2,1],[2,2,3,0],[1,0,2,1]],[[1,2,1,1],[1,4,2,1],[2,2,3,0],[0,2,1,1]],[[1,3,1,1],[1,3,2,1],[2,2,3,0],[0,2,1,1]],[[2,2,1,1],[1,3,2,1],[2,2,3,0],[0,2,1,1]],[[1,2,1,1],[1,4,2,1],[2,2,3,0],[0,1,2,1]],[[1,3,1,1],[1,3,2,1],[2,2,3,0],[0,1,2,1]],[[2,2,1,1],[1,3,2,1],[2,2,3,0],[0,1,2,1]],[[1,2,1,1],[1,4,2,1],[2,2,2,1],[1,1,2,0]],[[1,3,1,1],[1,3,2,1],[2,2,2,1],[1,1,2,0]],[[2,2,1,1],[1,3,2,1],[2,2,2,1],[1,1,2,0]],[[1,2,1,1],[1,4,2,1],[2,2,2,1],[0,2,2,0]],[[1,3,1,1],[1,3,2,1],[2,2,2,1],[0,2,2,0]],[[2,2,1,1],[1,3,2,1],[2,2,2,1],[0,2,2,0]],[[1,2,1,1],[1,4,2,1],[2,2,2,0],[1,1,2,1]],[[1,3,1,1],[1,3,2,1],[2,2,2,0],[1,1,2,1]],[[2,2,1,1],[1,3,2,1],[2,2,2,0],[1,1,2,1]],[[1,2,1,1],[1,4,2,1],[2,2,2,0],[0,2,2,1]],[[1,3,1,1],[1,3,2,1],[2,2,2,0],[0,2,2,1]],[[2,2,1,1],[1,3,2,1],[2,2,2,0],[0,2,2,1]],[[1,2,1,1],[1,4,2,1],[2,1,3,1],[1,2,1,0]],[[1,3,1,1],[1,3,2,1],[2,1,3,1],[1,2,1,0]],[[2,2,1,1],[1,3,2,1],[2,1,3,1],[1,2,1,0]],[[1,2,1,1],[1,4,2,1],[2,1,3,1],[1,2,0,1]],[[1,3,1,1],[1,3,2,1],[2,1,3,1],[1,2,0,1]],[[2,2,1,1],[1,3,2,1],[2,1,3,1],[1,2,0,1]],[[1,2,1,1],[1,4,2,1],[2,1,3,0],[1,2,1,1]],[[1,3,1,1],[1,3,2,1],[2,1,3,0],[1,2,1,1]],[[2,2,1,1],[1,3,2,1],[2,1,3,0],[1,2,1,1]],[[1,2,1,1],[1,4,2,1],[2,1,2,1],[1,2,2,0]],[[1,3,1,1],[1,3,2,1],[2,1,2,1],[1,2,2,0]],[[2,2,1,1],[1,3,2,1],[2,1,2,1],[1,2,2,0]],[[1,2,1,1],[1,4,2,1],[2,1,2,0],[1,2,2,1]],[[1,3,1,1],[1,3,2,1],[2,1,2,0],[1,2,2,1]],[[2,2,1,1],[1,3,2,1],[2,1,2,0],[1,2,2,1]],[[1,2,1,1],[1,4,2,1],[2,0,3,1],[1,2,2,0]],[[1,3,1,1],[1,3,2,1],[2,0,3,1],[1,2,2,0]],[[2,2,1,1],[1,3,2,1],[2,0,3,1],[1,2,2,0]],[[1,2,1,1],[1,4,2,1],[2,0,3,0],[1,2,2,1]],[[1,3,1,1],[1,3,2,1],[2,0,3,0],[1,2,2,1]],[[2,2,1,1],[1,3,2,1],[2,0,3,0],[1,2,2,1]],[[1,2,1,1],[1,3,2,1],[1,4,3,1],[1,2,0,0]],[[1,2,1,1],[1,4,2,1],[1,3,3,1],[1,2,0,0]],[[1,3,1,1],[1,3,2,1],[1,3,3,1],[1,2,0,0]],[[2,2,1,1],[1,3,2,1],[1,3,3,1],[1,2,0,0]],[[1,2,1,1],[1,3,2,1],[1,3,4,1],[1,1,1,0]],[[1,2,1,1],[1,3,2,1],[1,4,3,1],[1,1,1,0]],[[1,2,1,1],[1,4,2,1],[1,3,3,1],[1,1,1,0]],[[1,3,1,1],[1,3,2,1],[1,3,3,1],[1,1,1,0]],[[2,2,1,1],[1,3,2,1],[1,3,3,1],[1,1,1,0]],[[1,2,1,1],[1,3,2,1],[1,3,4,1],[1,1,0,1]],[[1,2,1,1],[1,3,2,1],[1,4,3,1],[1,1,0,1]],[[1,2,1,1],[1,4,2,1],[1,3,3,1],[1,1,0,1]],[[1,3,1,1],[1,3,2,1],[1,3,3,1],[1,1,0,1]],[[2,2,1,1],[1,3,2,1],[1,3,3,1],[1,1,0,1]],[[1,2,1,1],[1,3,2,1],[1,3,3,1],[1,0,3,0]],[[1,2,1,1],[1,3,2,1],[1,3,4,1],[1,0,2,0]],[[1,2,1,1],[1,3,2,1],[1,4,3,1],[1,0,2,0]],[[1,2,1,1],[1,4,2,1],[1,3,3,1],[1,0,2,0]],[[1,3,1,1],[1,3,2,1],[1,3,3,1],[1,0,2,0]],[[2,2,1,1],[1,3,2,1],[1,3,3,1],[1,0,2,0]],[[1,2,1,1],[1,3,2,1],[1,3,4,1],[1,0,1,1]],[[1,2,1,1],[1,3,2,1],[1,4,3,1],[1,0,1,1]],[[1,2,1,1],[1,4,2,1],[1,3,3,1],[1,0,1,1]],[[1,3,1,1],[1,3,2,1],[1,3,3,1],[1,0,1,1]],[[2,2,1,1],[1,3,2,1],[1,3,3,1],[1,0,1,1]],[[1,2,1,1],[1,3,2,1],[1,3,3,1],[0,3,1,0]],[[1,2,1,1],[1,3,2,1],[1,3,4,1],[0,2,1,0]],[[1,2,1,1],[1,3,2,1],[1,4,3,1],[0,2,1,0]],[[1,2,1,1],[1,4,2,1],[1,3,3,1],[0,2,1,0]],[[1,3,1,1],[1,3,2,1],[1,3,3,1],[0,2,1,0]],[[2,2,1,1],[1,3,2,1],[1,3,3,1],[0,2,1,0]],[[1,2,1,1],[1,3,2,1],[1,3,3,1],[0,3,0,1]],[[1,2,1,1],[1,3,2,1],[1,3,4,1],[0,2,0,1]],[[1,2,1,1],[1,3,2,1],[1,4,3,1],[0,2,0,1]],[[1,2,1,1],[1,4,2,1],[1,3,3,1],[0,2,0,1]],[[1,3,1,1],[1,3,2,1],[1,3,3,1],[0,2,0,1]],[[2,2,1,1],[1,3,2,1],[1,3,3,1],[0,2,0,1]],[[1,2,1,1],[1,3,2,1],[1,3,3,1],[0,1,3,0]],[[1,2,1,1],[1,3,2,1],[1,3,4,1],[0,1,2,0]],[[1,2,1,1],[1,3,2,1],[1,4,3,1],[0,1,2,0]],[[1,2,1,1],[1,4,2,1],[1,3,3,1],[0,1,2,0]],[[1,3,1,1],[1,3,2,1],[1,3,3,1],[0,1,2,0]],[[2,2,1,1],[1,3,2,1],[1,3,3,1],[0,1,2,0]],[[1,2,1,1],[1,3,2,1],[1,3,4,1],[0,1,1,1]],[[1,2,1,1],[1,3,2,1],[1,4,3,1],[0,1,1,1]],[[1,2,1,1],[1,4,2,1],[1,3,3,1],[0,1,1,1]],[[1,3,1,1],[1,3,2,1],[1,3,3,1],[0,1,1,1]],[[2,2,1,1],[1,3,2,1],[1,3,3,1],[0,1,1,1]],[[1,2,1,1],[1,3,2,1],[1,4,3,0],[1,2,0,1]],[[1,2,1,1],[1,4,2,1],[1,3,3,0],[1,2,0,1]],[[1,3,1,1],[1,3,2,1],[1,3,3,0],[1,2,0,1]],[[2,2,1,1],[1,3,2,1],[1,3,3,0],[1,2,0,1]],[[1,2,1,1],[1,3,2,1],[1,3,4,0],[1,1,1,1]],[[1,2,1,1],[1,3,2,1],[1,4,3,0],[1,1,1,1]],[[1,2,1,1],[1,4,2,1],[1,3,3,0],[1,1,1,1]],[[1,3,1,1],[1,3,2,1],[1,3,3,0],[1,1,1,1]],[[2,2,1,1],[1,3,2,1],[1,3,3,0],[1,1,1,1]],[[1,2,1,1],[1,3,2,1],[1,3,3,0],[1,0,2,2]],[[1,2,1,1],[1,3,2,1],[1,3,3,0],[1,0,3,1]],[[1,2,1,1],[1,3,2,1],[1,3,4,0],[1,0,2,1]],[[1,2,1,1],[1,3,2,1],[1,4,3,0],[1,0,2,1]],[[1,2,1,1],[1,4,2,1],[1,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,2,0],[0,2,2,3],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,2,2,2],[2,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,2,2,2],[1,3,2,1]],[[1,0,2,1],[2,3,2,0],[0,2,2,2],[1,2,3,1]],[[1,0,2,1],[2,3,2,0],[0,2,2,2],[1,2,2,2]],[[1,0,2,1],[2,3,2,0],[0,2,4,1],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,2,3,1],[2,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,2,3,1],[1,3,2,1]],[[1,0,2,1],[2,3,2,0],[0,2,3,1],[1,2,3,1]],[[1,0,2,1],[2,3,2,0],[0,2,3,1],[1,2,2,2]],[[1,0,2,1],[2,3,2,0],[0,2,4,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,0],[0,2,3,3],[1,2,1,1]],[[1,0,2,1],[2,3,2,0],[0,2,3,2],[1,2,1,2]],[[1,0,2,1],[2,3,2,0],[0,2,4,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,0],[0,2,3,3],[1,2,2,0]],[[1,0,2,1],[2,3,2,0],[0,2,3,2],[2,2,2,0]],[[1,0,2,1],[2,3,2,0],[0,2,3,2],[1,3,2,0]],[[1,0,2,1],[2,3,2,0],[0,2,3,2],[1,2,3,0]],[[2,0,2,1],[2,3,2,0],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[3,3,2,0],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,4,2,0],[0,3,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,4,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,1,3],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,1,2],[2,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,1,2],[1,3,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,1,2],[1,2,3,1]],[[1,0,2,1],[2,3,2,0],[0,3,1,2],[1,2,2,2]],[[2,0,2,1],[2,3,2,0],[0,3,2,1],[1,2,2,1]],[[1,0,2,1],[3,3,2,0],[0,3,2,1],[1,2,2,1]],[[1,0,2,1],[2,4,2,0],[0,3,2,1],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,4,2,1],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,2,1],[2,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,2,1],[1,3,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,2,1],[1,2,3,1]],[[1,0,2,1],[2,3,2,0],[0,3,2,1],[1,2,2,2]],[[1,0,2,1],[2,3,2,0],[0,3,2,3],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,2,2],[1,1,3,1]],[[1,0,2,1],[2,3,2,0],[0,3,2,2],[1,1,2,2]],[[2,0,2,1],[2,3,2,0],[0,3,2,2],[1,2,2,0]],[[1,0,2,1],[3,3,2,0],[0,3,2,2],[1,2,2,0]],[[1,0,2,1],[2,4,2,0],[0,3,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,0],[0,4,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,0],[0,3,2,2],[2,2,2,0]],[[1,0,2,1],[2,3,2,0],[0,3,2,2],[1,3,2,0]],[[1,0,2,1],[2,3,2,0],[0,3,2,2],[1,2,3,0]],[[2,0,2,1],[2,3,2,0],[0,3,3,0],[1,2,2,1]],[[1,0,2,1],[3,3,2,0],[0,3,3,0],[1,2,2,1]],[[1,0,2,1],[2,4,2,0],[0,3,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,4,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,0],[2,2,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,0],[1,3,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,0],[1,2,3,1]],[[2,0,2,1],[2,3,2,0],[0,3,3,1],[1,1,2,1]],[[1,0,2,1],[3,3,2,0],[0,3,3,1],[1,1,2,1]],[[1,0,2,1],[2,4,2,0],[0,3,3,1],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[0,4,3,1],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,4,1],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,1],[1,1,3,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,1],[1,1,2,2]],[[2,0,2,1],[2,3,2,0],[0,3,3,1],[1,2,1,1]],[[1,0,2,1],[3,3,2,0],[0,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,4,2,0],[0,3,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,2,0],[0,4,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,2,0],[0,3,4,1],[1,2,1,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,1],[2,2,1,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,1],[1,3,1,1]],[[1,0,2,1],[2,3,2,0],[0,3,4,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,3],[1,0,2,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,2],[1,0,2,2]],[[2,0,2,1],[2,3,2,0],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[3,3,2,0],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,4,2,0],[0,3,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,0],[0,4,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,0],[0,3,4,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,3],[1,1,1,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,2],[1,1,1,2]],[[2,0,2,1],[2,3,2,0],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[3,3,2,0],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,4,2,0],[0,3,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,0],[0,4,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,0],[0,3,4,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,0],[0,3,3,3],[1,1,2,0]],[[1,0,2,1],[2,3,2,0],[0,3,3,2],[1,1,3,0]],[[2,0,2,1],[2,3,2,0],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[3,3,2,0],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,4,2,0],[0,3,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,0],[0,4,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,0],[0,3,4,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,3],[1,2,0,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,2],[2,2,0,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,2],[1,3,0,1]],[[1,0,2,1],[2,3,2,0],[0,3,3,2],[1,2,0,2]],[[2,0,2,1],[2,3,2,0],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[3,3,2,0],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,4,2,0],[0,3,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,0],[0,4,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,0],[0,3,4,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,0],[0,3,3,3],[1,2,1,0]],[[1,0,2,1],[2,3,2,0],[0,3,3,2],[2,2,1,0]],[[1,0,2,1],[2,3,2,0],[0,3,3,2],[1,3,1,0]],[[1,3,1,1],[1,3,2,1],[1,3,3,0],[1,0,2,1]],[[2,2,1,1],[1,3,2,1],[1,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,2,0],[1,2,2,3],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[1,2,2,2],[0,3,2,1]],[[1,0,2,1],[2,3,2,0],[1,2,2,2],[0,2,3,1]],[[1,0,2,1],[2,3,2,0],[1,2,2,2],[0,2,2,2]],[[1,0,2,1],[2,3,2,0],[1,2,4,1],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[1,2,3,1],[0,3,2,1]],[[1,0,2,1],[2,3,2,0],[1,2,3,1],[0,2,3,1]],[[1,0,2,1],[2,3,2,0],[1,2,3,1],[0,2,2,2]],[[1,0,2,1],[2,3,2,0],[1,2,4,2],[0,2,1,1]],[[1,0,2,1],[2,3,2,0],[1,2,3,3],[0,2,1,1]],[[1,0,2,1],[2,3,2,0],[1,2,3,2],[0,2,1,2]],[[1,0,2,1],[2,3,2,0],[1,2,4,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,0],[1,2,3,3],[0,2,2,0]],[[1,0,2,1],[2,3,2,0],[1,2,3,2],[0,3,2,0]],[[1,0,2,1],[2,3,2,0],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[1,3,2,1],[1,3,3,0],[0,3,1,1]],[[1,2,1,1],[1,3,2,1],[1,3,4,0],[0,2,1,1]],[[1,2,1,1],[1,3,2,1],[1,4,3,0],[0,2,1,1]],[[1,2,1,1],[1,4,2,1],[1,3,3,0],[0,2,1,1]],[[1,3,1,1],[1,3,2,1],[1,3,3,0],[0,2,1,1]],[[2,2,1,1],[1,3,2,1],[1,3,3,0],[0,2,1,1]],[[2,0,2,1],[2,3,2,0],[1,3,1,2],[0,2,2,1]],[[1,0,2,1],[3,3,2,0],[1,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,4,2,0],[1,3,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[1,4,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,1,3],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,1,2],[0,3,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,1,2],[0,2,3,1]],[[1,0,2,1],[2,3,2,0],[1,3,1,2],[0,2,2,2]],[[2,0,2,1],[2,3,2,0],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[3,3,2,0],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,4,2,0],[1,3,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[1,4,1,2],[1,1,2,1]],[[2,0,2,1],[2,3,2,0],[1,3,2,1],[0,2,2,1]],[[1,0,2,1],[3,3,2,0],[1,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,4,2,0],[1,3,2,1],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[1,4,2,1],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,2,1],[0,3,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,2,1],[0,2,3,1]],[[1,0,2,1],[2,3,2,0],[1,3,2,1],[0,2,2,2]],[[2,0,2,1],[2,3,2,0],[1,3,2,1],[1,1,2,1]],[[1,0,2,1],[3,3,2,0],[1,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,4,2,0],[1,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[1,4,2,1],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,2,3],[0,1,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,2,2],[0,1,3,1]],[[1,0,2,1],[2,3,2,0],[1,3,2,2],[0,1,2,2]],[[2,0,2,1],[2,3,2,0],[1,3,2,2],[0,2,2,0]],[[1,0,2,1],[3,3,2,0],[1,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,4,2,0],[1,3,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,0],[1,4,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,0],[1,3,2,2],[0,3,2,0]],[[1,0,2,1],[2,3,2,0],[1,3,2,2],[0,2,3,0]],[[1,0,2,1],[2,3,2,0],[1,3,2,3],[1,0,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,2,2],[1,0,3,1]],[[1,0,2,1],[2,3,2,0],[1,3,2,2],[1,0,2,2]],[[2,0,2,1],[2,3,2,0],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[3,3,2,0],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,4,2,0],[1,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,0],[1,4,2,2],[1,1,2,0]],[[1,2,1,1],[1,3,2,1],[1,3,3,0],[0,1,2,2]],[[1,2,1,1],[1,3,2,1],[1,3,3,0],[0,1,3,1]],[[1,2,1,1],[1,3,2,1],[1,3,4,0],[0,1,2,1]],[[1,2,1,1],[1,3,2,1],[1,4,3,0],[0,1,2,1]],[[1,2,1,1],[1,4,2,1],[1,3,3,0],[0,1,2,1]],[[1,3,1,1],[1,3,2,1],[1,3,3,0],[0,1,2,1]],[[2,2,1,1],[1,3,2,1],[1,3,3,0],[0,1,2,1]],[[2,0,2,1],[2,3,2,0],[1,3,3,0],[0,2,2,1]],[[1,0,2,1],[3,3,2,0],[1,3,3,0],[0,2,2,1]],[[1,0,2,1],[2,4,2,0],[1,3,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[1,4,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,0],[0,3,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,0],[0,2,3,1]],[[2,0,2,1],[2,3,2,0],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[3,3,2,0],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,4,2,0],[1,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[1,4,3,0],[1,1,2,1]],[[2,0,2,1],[2,3,2,0],[1,3,3,1],[0,1,2,1]],[[1,0,2,1],[3,3,2,0],[1,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,4,2,0],[1,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,2,0],[1,4,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,4,1],[0,1,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,1],[0,1,3,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,1],[0,1,2,2]],[[2,0,2,1],[2,3,2,0],[1,3,3,1],[0,2,1,1]],[[1,0,2,1],[3,3,2,0],[1,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,4,2,0],[1,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,2,0],[1,4,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,2,0],[1,3,4,1],[0,2,1,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,1],[0,3,1,1]],[[2,0,2,1],[2,3,2,0],[1,3,3,1],[1,0,2,1]],[[1,0,2,1],[3,3,2,0],[1,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,4,2,0],[1,3,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,2,0],[1,4,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,4,1],[1,0,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,1],[1,0,3,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,1],[1,0,2,2]],[[2,0,2,1],[2,3,2,0],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[3,3,2,0],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,4,2,0],[1,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,2,0],[1,4,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,2,0],[1,3,4,1],[1,1,1,1]],[[2,0,2,1],[2,3,2,0],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[3,3,2,0],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,4,2,0],[1,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,0],[1,4,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,0],[1,3,4,2],[0,0,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,3],[0,0,2,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,2],[0,0,2,2]],[[2,0,2,1],[2,3,2,0],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[3,3,2,0],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,4,2,0],[1,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,0],[1,4,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,0],[1,3,4,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,3],[0,1,1,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,2],[0,1,1,2]],[[2,0,2,1],[2,3,2,0],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[3,3,2,0],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,4,2,0],[1,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,0],[1,4,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,0],[1,3,4,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,0],[1,3,3,3],[0,1,2,0]],[[1,0,2,1],[2,3,2,0],[1,3,3,2],[0,1,3,0]],[[2,0,2,1],[2,3,2,0],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[3,3,2,0],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,4,2,0],[1,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,0],[1,4,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,0],[1,3,4,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,3],[0,2,0,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,2],[0,3,0,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,2],[0,2,0,2]],[[2,0,2,1],[2,3,2,0],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[3,3,2,0],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,4,2,0],[1,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,0],[1,4,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,0],[1,3,4,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,0],[1,3,3,3],[0,2,1,0]],[[1,0,2,1],[2,3,2,0],[1,3,3,2],[0,3,1,0]],[[2,0,2,1],[2,3,2,0],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[3,3,2,0],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,4,2,0],[1,3,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,0],[1,4,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,0],[1,3,4,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,3],[1,0,1,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,2],[1,0,1,2]],[[2,0,2,1],[2,3,2,0],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[3,3,2,0],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,4,2,0],[1,3,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,0],[1,4,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,0],[1,3,4,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,0],[1,3,3,3],[1,0,2,0]],[[1,0,2,1],[2,3,2,0],[1,3,3,2],[1,0,3,0]],[[2,0,2,1],[2,3,2,0],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[3,3,2,0],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,4,2,0],[1,3,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,0],[1,4,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,0],[1,3,4,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,3],[1,1,0,1]],[[1,0,2,1],[2,3,2,0],[1,3,3,2],[1,1,0,2]],[[2,0,2,1],[2,3,2,0],[1,3,3,2],[1,1,1,0]],[[1,0,2,1],[3,3,2,0],[1,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,4,2,0],[1,3,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,0],[1,4,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,0],[1,3,4,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,0],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[1,3,2,1],[1,4,2,1],[1,1,2,0]],[[2,0,2,1],[2,3,2,0],[1,3,3,2],[1,2,0,0]],[[1,0,2,1],[3,3,2,0],[1,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,4,2,0],[1,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,3,2,0],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[1,4,2,1],[1,3,2,1],[1,1,2,0]],[[1,3,1,1],[1,3,2,1],[1,3,2,1],[1,1,2,0]],[[2,2,1,1],[1,3,2,1],[1,3,2,1],[1,1,2,0]],[[1,2,1,1],[1,3,2,1],[1,3,2,1],[0,2,3,0]],[[1,2,1,1],[1,3,2,1],[1,3,2,1],[0,3,2,0]],[[1,2,1,1],[1,3,2,1],[1,4,2,1],[0,2,2,0]],[[1,2,1,1],[1,4,2,1],[1,3,2,1],[0,2,2,0]],[[1,3,1,1],[1,3,2,1],[1,3,2,1],[0,2,2,0]],[[2,2,1,1],[1,3,2,1],[1,3,2,1],[0,2,2,0]],[[1,2,1,1],[1,3,2,1],[1,4,2,0],[1,1,2,1]],[[1,2,1,1],[1,4,2,1],[1,3,2,0],[1,1,2,1]],[[1,3,1,1],[1,3,2,1],[1,3,2,0],[1,1,2,1]],[[2,2,1,1],[1,3,2,1],[1,3,2,0],[1,1,2,1]],[[2,0,2,1],[2,3,2,0],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[3,3,2,0],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,4,2,0],[2,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[3,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,0,2,3],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,0,2,2],[2,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,0,2,2],[1,3,2,1]],[[1,0,2,1],[2,3,2,0],[2,0,2,2],[1,2,3,1]],[[1,0,2,1],[2,3,2,0],[2,0,2,2],[1,2,2,2]],[[2,0,2,1],[2,3,2,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[3,3,2,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,4,2,0],[2,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[3,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,0,4,1],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,0,3,1],[2,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,0,3,1],[1,3,2,1]],[[1,0,2,1],[2,3,2,0],[2,0,3,1],[1,2,3,1]],[[1,0,2,1],[2,3,2,0],[2,0,3,1],[1,2,2,2]],[[1,0,2,1],[2,3,2,0],[2,0,4,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,0],[2,0,3,3],[1,2,1,1]],[[1,0,2,1],[2,3,2,0],[2,0,3,2],[1,2,1,2]],[[2,0,2,1],[2,3,2,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[3,3,2,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,4,2,0],[2,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,0],[3,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,0],[2,0,4,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,0],[2,0,3,3],[1,2,2,0]],[[1,0,2,1],[2,3,2,0],[2,0,3,2],[2,2,2,0]],[[1,0,2,1],[2,3,2,0],[2,0,3,2],[1,3,2,0]],[[1,0,2,1],[2,3,2,0],[2,0,3,2],[1,2,3,0]],[[2,0,2,1],[2,3,2,0],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[3,3,2,0],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,4,2,0],[2,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[3,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,1,1,3],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,1,1,2],[2,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,1,1,2],[1,3,2,1]],[[1,0,2,1],[2,3,2,0],[2,1,1,2],[1,2,3,1]],[[1,0,2,1],[2,3,2,0],[2,1,1,2],[1,2,2,2]],[[2,0,2,1],[2,3,2,0],[2,1,2,1],[1,2,2,1]],[[1,0,2,1],[3,3,2,0],[2,1,2,1],[1,2,2,1]],[[1,0,2,1],[2,4,2,0],[2,1,2,1],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[3,1,2,1],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,1,2,1],[2,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,1,2,1],[1,3,2,1]],[[1,0,2,1],[2,3,2,0],[2,1,2,1],[1,2,3,1]],[[1,0,2,1],[2,3,2,0],[2,1,2,1],[1,2,2,2]],[[2,0,2,1],[2,3,2,0],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[3,3,2,0],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,4,2,0],[2,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,0],[3,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,0],[2,1,2,2],[2,2,2,0]],[[1,0,2,1],[2,3,2,0],[2,1,2,2],[1,3,2,0]],[[1,0,2,1],[2,3,2,0],[2,1,2,2],[1,2,3,0]],[[2,0,2,1],[2,3,2,0],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[3,3,2,0],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,4,2,0],[2,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[3,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,1,3,0],[2,2,2,1]],[[1,0,2,1],[2,3,2,0],[2,1,3,0],[1,3,2,1]],[[1,0,2,1],[2,3,2,0],[2,1,3,0],[1,2,3,1]],[[2,0,2,1],[2,3,2,0],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[3,3,2,0],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,4,2,0],[2,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,2,0],[3,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,2,0],[2,1,3,1],[2,2,1,1]],[[1,0,2,1],[2,3,2,0],[2,1,3,1],[1,3,1,1]],[[2,0,2,1],[2,3,2,0],[2,1,3,2],[1,2,0,1]],[[1,0,2,1],[3,3,2,0],[2,1,3,2],[1,2,0,1]],[[1,0,2,1],[2,4,2,0],[2,1,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,0],[3,1,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,0],[2,1,3,2],[2,2,0,1]],[[1,0,2,1],[2,3,2,0],[2,1,3,2],[1,3,0,1]],[[2,0,2,1],[2,3,2,0],[2,1,3,2],[1,2,1,0]],[[1,0,2,1],[3,3,2,0],[2,1,3,2],[1,2,1,0]],[[1,0,2,1],[2,4,2,0],[2,1,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,0],[3,1,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,0],[2,1,3,2],[2,2,1,0]],[[1,0,2,1],[2,3,2,0],[2,1,3,2],[1,3,1,0]],[[1,2,1,1],[1,3,2,1],[1,3,2,0],[0,2,2,2]],[[1,2,1,1],[1,3,2,1],[1,3,2,0],[0,2,3,1]],[[1,2,1,1],[1,3,2,1],[1,3,2,0],[0,3,2,1]],[[1,2,1,1],[1,3,2,1],[1,4,2,0],[0,2,2,1]],[[1,2,1,1],[1,4,2,1],[1,3,2,0],[0,2,2,1]],[[1,3,1,1],[1,3,2,1],[1,3,2,0],[0,2,2,1]],[[2,2,1,1],[1,3,2,1],[1,3,2,0],[0,2,2,1]],[[2,0,2,1],[2,3,2,0],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[3,3,2,0],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[2,4,2,0],[2,2,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[3,2,1,2],[0,2,2,1]],[[2,0,2,1],[2,3,2,0],[2,2,1,2],[1,1,2,1]],[[1,0,2,1],[3,3,2,0],[2,2,1,2],[1,1,2,1]],[[1,0,2,1],[2,4,2,0],[2,2,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[3,2,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[2,2,1,2],[2,1,2,1]],[[2,0,2,1],[2,3,2,0],[2,2,2,1],[0,2,2,1]],[[1,0,2,1],[3,3,2,0],[2,2,2,1],[0,2,2,1]],[[1,0,2,1],[2,4,2,0],[2,2,2,1],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[3,2,2,1],[0,2,2,1]],[[2,0,2,1],[2,3,2,0],[2,2,2,1],[1,1,2,1]],[[1,0,2,1],[3,3,2,0],[2,2,2,1],[1,1,2,1]],[[1,0,2,1],[2,4,2,0],[2,2,2,1],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[3,2,2,1],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[2,2,2,1],[2,1,2,1]],[[2,0,2,1],[2,3,2,0],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[3,3,2,0],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[2,4,2,0],[2,2,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,0],[3,2,2,2],[0,2,2,0]],[[2,0,2,1],[2,3,2,0],[2,2,2,2],[1,1,2,0]],[[1,0,2,1],[3,3,2,0],[2,2,2,2],[1,1,2,0]],[[1,0,2,1],[2,4,2,0],[2,2,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,0],[3,2,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,0],[2,2,2,2],[2,1,2,0]],[[2,0,2,1],[2,3,2,0],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[3,3,2,0],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[2,4,2,0],[2,2,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,2,0],[3,2,3,0],[0,2,2,1]],[[2,0,2,1],[2,3,2,0],[2,2,3,0],[1,1,2,1]],[[1,0,2,1],[3,3,2,0],[2,2,3,0],[1,1,2,1]],[[1,0,2,1],[2,4,2,0],[2,2,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[3,2,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,0],[2,2,3,0],[2,1,2,1]],[[2,0,2,1],[2,3,2,0],[2,2,3,1],[0,1,2,1]],[[1,0,2,1],[3,3,2,0],[2,2,3,1],[0,1,2,1]],[[1,0,2,1],[2,4,2,0],[2,2,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,2,0],[3,2,3,1],[0,1,2,1]],[[2,0,2,1],[2,3,2,0],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[3,3,2,0],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,4,2,0],[2,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,2,0],[3,2,3,1],[0,2,1,1]],[[2,0,2,1],[2,3,2,0],[2,2,3,1],[1,0,2,1]],[[1,0,2,1],[3,3,2,0],[2,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,4,2,0],[2,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,2,0],[3,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,2,0],[2,2,3,1],[2,0,2,1]],[[2,0,2,1],[2,3,2,0],[2,2,3,1],[1,1,1,1]],[[1,0,2,1],[3,3,2,0],[2,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,4,2,0],[2,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,2,0],[3,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,2,0],[2,2,3,1],[2,1,1,1]],[[2,0,2,1],[2,3,2,0],[2,2,3,1],[1,2,0,1]],[[1,0,2,1],[3,3,2,0],[2,2,3,1],[1,2,0,1]],[[1,0,2,1],[2,4,2,0],[2,2,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,0],[3,2,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,0],[2,2,3,1],[2,2,0,1]],[[2,0,2,1],[2,3,2,0],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[3,3,2,0],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[2,4,2,0],[2,2,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,0],[3,2,3,2],[0,1,1,1]],[[2,0,2,1],[2,3,2,0],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[3,3,2,0],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[2,4,2,0],[2,2,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,0],[3,2,3,2],[0,1,2,0]],[[2,0,2,1],[2,3,2,0],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[3,3,2,0],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[2,4,2,0],[2,2,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,0],[3,2,3,2],[0,2,0,1]],[[2,0,2,1],[2,3,2,0],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[3,3,2,0],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[2,4,2,0],[2,2,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,0],[3,2,3,2],[0,2,1,0]],[[1,2,1,1],[1,3,2,1],[1,2,3,1],[0,2,3,0]],[[1,2,1,1],[1,3,2,1],[1,2,3,1],[0,3,2,0]],[[1,2,1,1],[1,3,2,1],[1,2,4,1],[0,2,2,0]],[[2,0,2,1],[2,3,2,0],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[3,3,2,0],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[2,4,2,0],[2,2,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,0],[3,2,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,0],[2,2,3,2],[2,0,1,1]],[[2,0,2,1],[2,3,2,0],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[3,3,2,0],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[2,4,2,0],[2,2,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,0],[3,2,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,0],[2,2,3,2],[2,0,2,0]],[[2,0,2,1],[2,3,2,0],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[3,3,2,0],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,4,2,0],[2,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,0],[3,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,0],[2,2,3,2],[2,1,0,1]],[[2,0,2,1],[2,3,2,0],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[3,3,2,0],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[2,4,2,0],[2,2,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,0],[3,2,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,0],[2,2,3,2],[2,1,1,0]],[[2,0,2,1],[2,3,2,0],[2,2,3,2],[1,2,0,0]],[[1,0,2,1],[3,3,2,0],[2,2,3,2],[1,2,0,0]],[[1,0,2,1],[2,4,2,0],[2,2,3,2],[1,2,0,0]],[[1,0,2,1],[2,3,2,0],[3,2,3,2],[1,2,0,0]],[[1,0,2,1],[2,3,2,0],[2,2,3,2],[2,2,0,0]],[[1,2,1,1],[1,3,2,1],[1,2,3,0],[0,2,2,2]],[[1,2,1,1],[1,3,2,1],[1,2,3,0],[0,2,3,1]],[[1,2,1,1],[1,3,2,1],[1,2,3,0],[0,3,2,1]],[[1,2,1,1],[1,3,2,1],[1,2,4,0],[0,2,2,1]],[[1,2,1,1],[1,3,2,1],[0,3,3,1],[1,3,1,0]],[[1,2,1,1],[1,3,2,1],[0,3,3,1],[2,2,1,0]],[[1,2,1,1],[1,3,2,1],[0,3,4,1],[1,2,1,0]],[[1,2,1,1],[1,3,2,1],[0,4,3,1],[1,2,1,0]],[[1,2,1,1],[1,4,2,1],[0,3,3,1],[1,2,1,0]],[[1,3,1,1],[1,3,2,1],[0,3,3,1],[1,2,1,0]],[[2,2,1,1],[1,3,2,1],[0,3,3,1],[1,2,1,0]],[[1,2,1,1],[1,3,2,1],[0,3,3,1],[1,3,0,1]],[[1,2,1,1],[1,3,2,1],[0,3,3,1],[2,2,0,1]],[[1,2,1,1],[1,3,2,1],[0,3,4,1],[1,2,0,1]],[[1,2,1,1],[1,3,2,1],[0,4,3,1],[1,2,0,1]],[[1,2,1,1],[1,4,2,1],[0,3,3,1],[1,2,0,1]],[[1,3,1,1],[1,3,2,1],[0,3,3,1],[1,2,0,1]],[[2,2,1,1],[1,3,2,1],[0,3,3,1],[1,2,0,1]],[[1,2,1,1],[1,3,2,1],[0,3,3,1],[1,1,3,0]],[[1,2,1,1],[1,3,2,1],[0,3,4,1],[1,1,2,0]],[[1,2,1,1],[1,3,2,1],[0,4,3,1],[1,1,2,0]],[[1,2,1,1],[1,4,2,1],[0,3,3,1],[1,1,2,0]],[[1,3,1,1],[1,3,2,1],[0,3,3,1],[1,1,2,0]],[[2,2,1,1],[1,3,2,1],[0,3,3,1],[1,1,2,0]],[[1,2,1,1],[1,3,2,1],[0,3,4,1],[1,1,1,1]],[[1,2,1,1],[1,3,2,1],[0,4,3,1],[1,1,1,1]],[[1,2,1,1],[1,4,2,1],[0,3,3,1],[1,1,1,1]],[[1,3,1,1],[1,3,2,1],[0,3,3,1],[1,1,1,1]],[[2,2,1,1],[1,3,2,1],[0,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,3,2,1],[0,3,3,0],[1,3,1,1]],[[1,2,1,1],[1,3,2,1],[0,3,3,0],[2,2,1,1]],[[2,0,2,1],[2,3,2,0],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[3,3,2,0],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,4,2,0],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,2,0],[3,3,3,1],[1,0,1,1]],[[1,2,1,1],[1,3,2,1],[0,3,4,0],[1,2,1,1]],[[1,2,1,1],[1,3,2,1],[0,4,3,0],[1,2,1,1]],[[1,2,1,1],[1,4,2,1],[0,3,3,0],[1,2,1,1]],[[1,3,1,1],[1,3,2,1],[0,3,3,0],[1,2,1,1]],[[2,2,1,1],[1,3,2,1],[0,3,3,0],[1,2,1,1]],[[1,2,1,1],[1,3,2,1],[0,3,3,0],[1,1,2,2]],[[1,2,1,1],[1,3,2,1],[0,3,3,0],[1,1,3,1]],[[1,2,1,1],[1,3,2,1],[0,3,4,0],[1,1,2,1]],[[1,2,1,1],[1,3,2,1],[0,4,3,0],[1,1,2,1]],[[1,2,1,1],[1,4,2,1],[0,3,3,0],[1,1,2,1]],[[1,3,1,1],[1,3,2,1],[0,3,3,0],[1,1,2,1]],[[2,2,1,1],[1,3,2,1],[0,3,3,0],[1,1,2,1]],[[1,2,1,1],[1,3,2,1],[0,3,2,1],[1,2,3,0]],[[1,2,1,1],[1,3,2,1],[0,3,2,1],[1,3,2,0]],[[1,2,1,1],[1,3,2,1],[0,3,2,1],[2,2,2,0]],[[1,2,1,1],[1,3,2,1],[0,4,2,1],[1,2,2,0]],[[1,2,1,1],[1,4,2,1],[0,3,2,1],[1,2,2,0]],[[1,3,1,1],[1,3,2,1],[0,3,2,1],[1,2,2,0]],[[2,2,1,1],[1,3,2,1],[0,3,2,1],[1,2,2,0]],[[1,2,1,1],[1,3,2,1],[0,3,2,0],[1,2,2,2]],[[1,2,1,1],[1,3,2,1],[0,3,2,0],[1,2,3,1]],[[1,2,1,1],[1,3,2,1],[0,3,2,0],[1,3,2,1]],[[1,2,1,1],[1,3,2,1],[0,3,2,0],[2,2,2,1]],[[1,2,1,1],[1,3,2,1],[0,4,2,0],[1,2,2,1]],[[1,2,1,1],[1,4,2,1],[0,3,2,0],[1,2,2,1]],[[1,3,1,1],[1,3,2,1],[0,3,2,0],[1,2,2,1]],[[2,2,1,1],[1,3,2,1],[0,3,2,0],[1,2,2,1]],[[2,0,2,1],[2,3,2,0],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[3,3,2,0],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[2,4,2,0],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,2,0],[3,3,3,2],[1,0,0,1]],[[2,0,2,1],[2,3,2,0],[2,3,3,2],[1,0,1,0]],[[1,0,2,1],[3,3,2,0],[2,3,3,2],[1,0,1,0]],[[1,0,2,1],[2,4,2,0],[2,3,3,2],[1,0,1,0]],[[1,0,2,1],[2,3,2,0],[3,3,3,2],[1,0,1,0]],[[1,2,1,1],[1,3,2,1],[0,2,3,1],[1,2,3,0]],[[1,2,1,1],[1,3,2,1],[0,2,3,1],[1,3,2,0]],[[1,2,1,1],[1,3,2,1],[0,2,3,1],[2,2,2,0]],[[1,2,1,1],[1,3,2,1],[0,2,4,1],[1,2,2,0]],[[1,2,1,1],[1,3,2,1],[0,2,3,0],[1,2,2,2]],[[1,2,1,1],[1,3,2,1],[0,2,3,0],[1,2,3,1]],[[1,2,1,1],[1,3,2,1],[0,2,3,0],[1,3,2,1]],[[1,2,1,1],[1,3,2,1],[0,2,3,0],[2,2,2,1]],[[1,2,1,1],[1,3,2,1],[0,2,4,0],[1,2,2,1]],[[1,2,1,1],[1,4,2,0],[2,3,3,2],[1,0,1,0]],[[1,3,1,1],[1,3,2,0],[2,3,3,2],[1,0,1,0]],[[2,2,1,1],[1,3,2,0],[2,3,3,2],[1,0,1,0]],[[1,2,1,1],[1,4,2,0],[2,3,3,2],[1,0,0,1]],[[1,3,1,1],[1,3,2,0],[2,3,3,2],[1,0,0,1]],[[2,2,1,1],[1,3,2,0],[2,3,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,2,1],[0,2,4,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,1],[0,2,3,0],[2,2,2,1]],[[1,0,2,1],[2,3,2,1],[0,2,3,0],[1,3,2,1]],[[1,0,2,1],[2,3,2,1],[0,2,3,0],[1,2,3,1]],[[1,0,2,1],[2,3,2,1],[0,2,3,0],[1,2,2,2]],[[1,0,2,1],[2,3,2,1],[0,2,4,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,1],[0,2,3,1],[2,2,2,0]],[[1,0,2,1],[2,3,2,1],[0,2,3,1],[1,3,2,0]],[[1,0,2,1],[2,3,2,1],[0,2,3,1],[1,2,3,0]],[[2,0,2,1],[2,3,2,1],[0,3,2,0],[1,2,2,1]],[[1,0,2,1],[3,3,2,1],[0,3,2,0],[1,2,2,1]],[[1,0,2,1],[2,4,2,1],[0,3,2,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,1],[0,4,2,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,1],[0,3,2,0],[2,2,2,1]],[[1,0,2,1],[2,3,2,1],[0,3,2,0],[1,3,2,1]],[[1,0,2,1],[2,3,2,1],[0,3,2,0],[1,2,3,1]],[[1,0,2,1],[2,3,2,1],[0,3,2,0],[1,2,2,2]],[[2,0,2,1],[2,3,2,1],[0,3,2,1],[1,2,2,0]],[[1,0,2,1],[3,3,2,1],[0,3,2,1],[1,2,2,0]],[[1,0,2,1],[2,4,2,1],[0,3,2,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,1],[0,4,2,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,1],[0,3,2,1],[2,2,2,0]],[[1,0,2,1],[2,3,2,1],[0,3,2,1],[1,3,2,0]],[[1,0,2,1],[2,3,2,1],[0,3,2,1],[1,2,3,0]],[[2,0,2,1],[2,3,2,1],[0,3,3,0],[1,1,2,1]],[[1,0,2,1],[3,3,2,1],[0,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,4,2,1],[0,3,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,1],[0,4,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,1],[0,3,4,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,1],[0,3,3,0],[1,1,3,1]],[[1,0,2,1],[2,3,2,1],[0,3,3,0],[1,1,2,2]],[[2,0,2,1],[2,3,2,1],[0,3,3,0],[1,2,1,1]],[[1,0,2,1],[3,3,2,1],[0,3,3,0],[1,2,1,1]],[[1,0,2,1],[2,4,2,1],[0,3,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,2,1],[0,4,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,2,1],[0,3,4,0],[1,2,1,1]],[[1,0,2,1],[2,3,2,1],[0,3,3,0],[2,2,1,1]],[[1,0,2,1],[2,3,2,1],[0,3,3,0],[1,3,1,1]],[[2,0,2,1],[2,3,2,1],[0,3,3,1],[1,1,1,1]],[[1,0,2,1],[3,3,2,1],[0,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,4,2,1],[0,3,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,2,1],[0,4,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,2,1],[0,3,4,1],[1,1,1,1]],[[2,0,2,1],[2,3,2,1],[0,3,3,1],[1,1,2,0]],[[1,0,2,1],[3,3,2,1],[0,3,3,1],[1,1,2,0]],[[1,0,2,1],[2,4,2,1],[0,3,3,1],[1,1,2,0]],[[1,0,2,1],[2,3,2,1],[0,4,3,1],[1,1,2,0]],[[1,0,2,1],[2,3,2,1],[0,3,4,1],[1,1,2,0]],[[1,0,2,1],[2,3,2,1],[0,3,3,1],[1,1,3,0]],[[2,0,2,1],[2,3,2,1],[0,3,3,1],[1,2,0,1]],[[1,0,2,1],[3,3,2,1],[0,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,4,2,1],[0,3,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,1],[0,4,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,1],[0,3,4,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,1],[0,3,3,1],[2,2,0,1]],[[1,0,2,1],[2,3,2,1],[0,3,3,1],[1,3,0,1]],[[2,0,2,1],[2,3,2,1],[0,3,3,1],[1,2,1,0]],[[1,0,2,1],[3,3,2,1],[0,3,3,1],[1,2,1,0]],[[1,0,2,1],[2,4,2,1],[0,3,3,1],[1,2,1,0]],[[1,0,2,1],[2,3,2,1],[0,4,3,1],[1,2,1,0]],[[1,0,2,1],[2,3,2,1],[0,3,4,1],[1,2,1,0]],[[1,0,2,1],[2,3,2,1],[0,3,3,1],[2,2,1,0]],[[1,0,2,1],[2,3,2,1],[0,3,3,1],[1,3,1,0]],[[1,2,1,1],[1,4,2,0],[2,3,3,1],[1,0,1,1]],[[1,3,1,1],[1,3,2,0],[2,3,3,1],[1,0,1,1]],[[2,2,1,1],[1,3,2,0],[2,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,2,1],[1,2,4,0],[0,2,2,1]],[[1,0,2,1],[2,3,2,1],[1,2,3,0],[0,3,2,1]],[[1,0,2,1],[2,3,2,1],[1,2,3,0],[0,2,3,1]],[[1,0,2,1],[2,3,2,1],[1,2,3,0],[0,2,2,2]],[[1,0,2,1],[2,3,2,1],[1,2,4,1],[0,2,2,0]],[[1,0,2,1],[2,3,2,1],[1,2,3,1],[0,3,2,0]],[[1,0,2,1],[2,3,2,1],[1,2,3,1],[0,2,3,0]],[[2,0,2,1],[2,3,2,1],[1,3,2,0],[0,2,2,1]],[[1,0,2,1],[3,3,2,1],[1,3,2,0],[0,2,2,1]],[[1,0,2,1],[2,4,2,1],[1,3,2,0],[0,2,2,1]],[[1,0,2,1],[2,3,2,1],[1,4,2,0],[0,2,2,1]],[[1,0,2,1],[2,3,2,1],[1,3,2,0],[0,3,2,1]],[[1,0,2,1],[2,3,2,1],[1,3,2,0],[0,2,3,1]],[[1,0,2,1],[2,3,2,1],[1,3,2,0],[0,2,2,2]],[[2,0,2,1],[2,3,2,1],[1,3,2,0],[1,1,2,1]],[[1,0,2,1],[3,3,2,1],[1,3,2,0],[1,1,2,1]],[[1,0,2,1],[2,4,2,1],[1,3,2,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,1],[1,4,2,0],[1,1,2,1]],[[2,0,2,1],[2,3,2,1],[1,3,2,1],[0,2,2,0]],[[1,0,2,1],[3,3,2,1],[1,3,2,1],[0,2,2,0]],[[1,0,2,1],[2,4,2,1],[1,3,2,1],[0,2,2,0]],[[1,0,2,1],[2,3,2,1],[1,4,2,1],[0,2,2,0]],[[1,0,2,1],[2,3,2,1],[1,3,2,1],[0,3,2,0]],[[1,0,2,1],[2,3,2,1],[1,3,2,1],[0,2,3,0]],[[2,0,2,1],[2,3,2,1],[1,3,2,1],[1,1,2,0]],[[1,0,2,1],[3,3,2,1],[1,3,2,1],[1,1,2,0]],[[1,0,2,1],[2,4,2,1],[1,3,2,1],[1,1,2,0]],[[1,0,2,1],[2,3,2,1],[1,4,2,1],[1,1,2,0]],[[2,0,2,1],[2,3,2,1],[1,3,3,0],[0,1,2,1]],[[1,0,2,1],[3,3,2,1],[1,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,4,2,1],[1,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,2,1],[1,4,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,2,1],[1,3,4,0],[0,1,2,1]],[[1,0,2,1],[2,3,2,1],[1,3,3,0],[0,1,3,1]],[[1,0,2,1],[2,3,2,1],[1,3,3,0],[0,1,2,2]],[[2,0,2,1],[2,3,2,1],[1,3,3,0],[0,2,1,1]],[[1,0,2,1],[3,3,2,1],[1,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,4,2,1],[1,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,2,1],[1,4,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,2,1],[1,3,4,0],[0,2,1,1]],[[1,0,2,1],[2,3,2,1],[1,3,3,0],[0,3,1,1]],[[2,0,2,1],[2,3,2,1],[1,3,3,0],[1,0,2,1]],[[1,0,2,1],[3,3,2,1],[1,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,4,2,1],[1,3,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,2,1],[1,4,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,2,1],[1,3,4,0],[1,0,2,1]],[[1,0,2,1],[2,3,2,1],[1,3,3,0],[1,0,3,1]],[[1,0,2,1],[2,3,2,1],[1,3,3,0],[1,0,2,2]],[[2,0,2,1],[2,3,2,1],[1,3,3,0],[1,1,1,1]],[[1,0,2,1],[3,3,2,1],[1,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,4,2,1],[1,3,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,2,1],[1,4,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,2,1],[1,3,4,0],[1,1,1,1]],[[2,0,2,1],[2,3,2,1],[1,3,3,0],[1,2,0,1]],[[1,0,2,1],[3,3,2,1],[1,3,3,0],[1,2,0,1]],[[1,0,2,1],[2,4,2,1],[1,3,3,0],[1,2,0,1]],[[1,0,2,1],[2,3,2,1],[1,4,3,0],[1,2,0,1]],[[1,2,1,1],[1,4,2,0],[2,2,3,2],[1,2,0,0]],[[1,3,1,1],[1,3,2,0],[2,2,3,2],[1,2,0,0]],[[2,2,1,1],[1,3,2,0],[2,2,3,2],[1,2,0,0]],[[2,0,2,1],[2,3,2,1],[1,3,3,1],[0,1,1,1]],[[1,0,2,1],[3,3,2,1],[1,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,4,2,1],[1,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,2,1],[1,4,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,2,1],[1,3,4,1],[0,1,1,1]],[[2,0,2,1],[2,3,2,1],[1,3,3,1],[0,1,2,0]],[[1,0,2,1],[3,3,2,1],[1,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,4,2,1],[1,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,2,1],[1,4,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,2,1],[1,3,4,1],[0,1,2,0]],[[1,0,2,1],[2,3,2,1],[1,3,3,1],[0,1,3,0]],[[2,0,2,1],[2,3,2,1],[1,3,3,1],[0,2,0,1]],[[1,0,2,1],[3,3,2,1],[1,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,4,2,1],[1,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,2,1],[1,4,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,2,1],[1,3,4,1],[0,2,0,1]],[[1,0,2,1],[2,3,2,1],[1,3,3,1],[0,3,0,1]],[[2,0,2,1],[2,3,2,1],[1,3,3,1],[0,2,1,0]],[[1,0,2,1],[3,3,2,1],[1,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,4,2,1],[1,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,2,1],[1,4,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,2,1],[1,3,4,1],[0,2,1,0]],[[1,0,2,1],[2,3,2,1],[1,3,3,1],[0,3,1,0]],[[1,2,1,1],[1,4,2,0],[2,2,3,2],[1,1,1,0]],[[1,3,1,1],[1,3,2,0],[2,2,3,2],[1,1,1,0]],[[2,2,1,1],[1,3,2,0],[2,2,3,2],[1,1,1,0]],[[1,2,1,1],[1,4,2,0],[2,2,3,2],[1,1,0,1]],[[1,3,1,1],[1,3,2,0],[2,2,3,2],[1,1,0,1]],[[2,2,1,1],[1,3,2,0],[2,2,3,2],[1,1,0,1]],[[2,0,2,1],[2,3,2,1],[1,3,3,1],[1,0,1,1]],[[1,0,2,1],[3,3,2,1],[1,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,4,2,1],[1,3,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,2,1],[1,4,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,2,1],[1,3,4,1],[1,0,1,1]],[[2,0,2,1],[2,3,2,1],[1,3,3,1],[1,0,2,0]],[[1,0,2,1],[3,3,2,1],[1,3,3,1],[1,0,2,0]],[[1,0,2,1],[2,4,2,1],[1,3,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,2,1],[1,4,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,2,1],[1,3,4,1],[1,0,2,0]],[[1,0,2,1],[2,3,2,1],[1,3,3,1],[1,0,3,0]],[[2,0,2,1],[2,3,2,1],[1,3,3,1],[1,1,0,1]],[[1,0,2,1],[3,3,2,1],[1,3,3,1],[1,1,0,1]],[[1,0,2,1],[2,4,2,1],[1,3,3,1],[1,1,0,1]],[[1,0,2,1],[2,3,2,1],[1,4,3,1],[1,1,0,1]],[[1,0,2,1],[2,3,2,1],[1,3,4,1],[1,1,0,1]],[[2,0,2,1],[2,3,2,1],[1,3,3,1],[1,1,1,0]],[[1,0,2,1],[3,3,2,1],[1,3,3,1],[1,1,1,0]],[[1,0,2,1],[2,4,2,1],[1,3,3,1],[1,1,1,0]],[[1,0,2,1],[2,3,2,1],[1,4,3,1],[1,1,1,0]],[[1,0,2,1],[2,3,2,1],[1,3,4,1],[1,1,1,0]],[[1,2,1,1],[1,4,2,0],[2,2,3,2],[1,0,2,0]],[[1,3,1,1],[1,3,2,0],[2,2,3,2],[1,0,2,0]],[[2,2,1,1],[1,3,2,0],[2,2,3,2],[1,0,2,0]],[[1,2,1,1],[1,4,2,0],[2,2,3,2],[1,0,1,1]],[[1,3,1,1],[1,3,2,0],[2,2,3,2],[1,0,1,1]],[[2,2,1,1],[1,3,2,0],[2,2,3,2],[1,0,1,1]],[[2,0,2,1],[2,3,2,1],[1,3,3,1],[1,2,0,0]],[[1,0,2,1],[3,3,2,1],[1,3,3,1],[1,2,0,0]],[[1,0,2,1],[2,4,2,1],[1,3,3,1],[1,2,0,0]],[[1,0,2,1],[2,3,2,1],[1,4,3,1],[1,2,0,0]],[[1,2,1,1],[1,4,2,0],[2,2,3,2],[0,2,1,0]],[[1,3,1,1],[1,3,2,0],[2,2,3,2],[0,2,1,0]],[[2,2,1,1],[1,3,2,0],[2,2,3,2],[0,2,1,0]],[[1,2,1,1],[1,4,2,0],[2,2,3,2],[0,2,0,1]],[[1,3,1,1],[1,3,2,0],[2,2,3,2],[0,2,0,1]],[[2,2,1,1],[1,3,2,0],[2,2,3,2],[0,2,0,1]],[[1,2,1,1],[1,4,2,0],[2,2,3,2],[0,1,2,0]],[[1,3,1,1],[1,3,2,0],[2,2,3,2],[0,1,2,0]],[[2,2,1,1],[1,3,2,0],[2,2,3,2],[0,1,2,0]],[[1,2,1,1],[1,4,2,0],[2,2,3,2],[0,1,1,1]],[[1,3,1,1],[1,3,2,0],[2,2,3,2],[0,1,1,1]],[[2,2,1,1],[1,3,2,0],[2,2,3,2],[0,1,1,1]],[[1,2,1,1],[1,4,2,0],[2,2,3,1],[1,2,0,1]],[[1,3,1,1],[1,3,2,0],[2,2,3,1],[1,2,0,1]],[[2,2,1,1],[1,3,2,0],[2,2,3,1],[1,2,0,1]],[[1,2,1,1],[1,4,2,0],[2,2,3,1],[1,1,1,1]],[[1,3,1,1],[1,3,2,0],[2,2,3,1],[1,1,1,1]],[[2,2,1,1],[1,3,2,0],[2,2,3,1],[1,1,1,1]],[[1,2,1,1],[1,4,2,0],[2,2,3,1],[1,0,2,1]],[[1,3,1,1],[1,3,2,0],[2,2,3,1],[1,0,2,1]],[[2,2,1,1],[1,3,2,0],[2,2,3,1],[1,0,2,1]],[[1,2,1,1],[1,4,2,0],[2,2,3,1],[0,2,1,1]],[[1,3,1,1],[1,3,2,0],[2,2,3,1],[0,2,1,1]],[[2,2,1,1],[1,3,2,0],[2,2,3,1],[0,2,1,1]],[[1,2,1,1],[1,4,2,0],[2,2,3,1],[0,1,2,1]],[[1,3,1,1],[1,3,2,0],[2,2,3,1],[0,1,2,1]],[[2,2,1,1],[1,3,2,0],[2,2,3,1],[0,1,2,1]],[[1,2,1,1],[1,4,2,0],[2,2,3,0],[1,1,2,1]],[[1,3,1,1],[1,3,2,0],[2,2,3,0],[1,1,2,1]],[[2,2,1,1],[1,3,2,0],[2,2,3,0],[1,1,2,1]],[[1,2,1,1],[1,4,2,0],[2,2,3,0],[0,2,2,1]],[[1,3,1,1],[1,3,2,0],[2,2,3,0],[0,2,2,1]],[[2,2,1,1],[1,3,2,0],[2,2,3,0],[0,2,2,1]],[[1,2,1,1],[1,4,2,0],[2,2,2,2],[1,1,2,0]],[[1,3,1,1],[1,3,2,0],[2,2,2,2],[1,1,2,0]],[[2,2,1,1],[1,3,2,0],[2,2,2,2],[1,1,2,0]],[[1,2,1,1],[1,4,2,0],[2,2,2,2],[0,2,2,0]],[[1,3,1,1],[1,3,2,0],[2,2,2,2],[0,2,2,0]],[[2,2,1,1],[1,3,2,0],[2,2,2,2],[0,2,2,0]],[[1,2,1,1],[1,4,2,0],[2,2,2,1],[1,1,2,1]],[[1,3,1,1],[1,3,2,0],[2,2,2,1],[1,1,2,1]],[[2,2,1,1],[1,3,2,0],[2,2,2,1],[1,1,2,1]],[[1,2,1,1],[1,4,2,0],[2,2,2,1],[0,2,2,1]],[[1,3,1,1],[1,3,2,0],[2,2,2,1],[0,2,2,1]],[[2,2,1,1],[1,3,2,0],[2,2,2,1],[0,2,2,1]],[[1,2,1,1],[1,4,2,0],[2,2,1,2],[1,1,2,1]],[[1,3,1,1],[1,3,2,0],[2,2,1,2],[1,1,2,1]],[[2,2,1,1],[1,3,2,0],[2,2,1,2],[1,1,2,1]],[[1,2,1,1],[1,4,2,0],[2,2,1,2],[0,2,2,1]],[[1,3,1,1],[1,3,2,0],[2,2,1,2],[0,2,2,1]],[[2,2,1,1],[1,3,2,0],[2,2,1,2],[0,2,2,1]],[[2,0,2,1],[2,3,2,1],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[3,3,2,1],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[2,4,2,1],[2,0,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,1],[3,0,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,1],[2,0,4,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,1],[2,0,3,0],[2,2,2,1]],[[1,0,2,1],[2,3,2,1],[2,0,3,0],[1,3,2,1]],[[1,0,2,1],[2,3,2,1],[2,0,3,0],[1,2,3,1]],[[1,0,2,1],[2,3,2,1],[2,0,3,0],[1,2,2,2]],[[2,0,2,1],[2,3,2,1],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[3,3,2,1],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[2,4,2,1],[2,0,3,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,1],[3,0,3,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,1],[2,0,4,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,1],[2,0,3,1],[2,2,2,0]],[[1,0,2,1],[2,3,2,1],[2,0,3,1],[1,3,2,0]],[[1,0,2,1],[2,3,2,1],[2,0,3,1],[1,2,3,0]],[[1,2,1,1],[1,4,2,0],[2,1,3,2],[1,2,1,0]],[[1,3,1,1],[1,3,2,0],[2,1,3,2],[1,2,1,0]],[[2,2,1,1],[1,3,2,0],[2,1,3,2],[1,2,1,0]],[[2,0,2,1],[2,3,2,1],[2,1,2,0],[1,2,2,1]],[[1,0,2,1],[3,3,2,1],[2,1,2,0],[1,2,2,1]],[[1,0,2,1],[2,4,2,1],[2,1,2,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,1],[3,1,2,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,1],[2,1,2,0],[2,2,2,1]],[[1,0,2,1],[2,3,2,1],[2,1,2,0],[1,3,2,1]],[[1,0,2,1],[2,3,2,1],[2,1,2,0],[1,2,3,1]],[[1,0,2,1],[2,3,2,1],[2,1,2,0],[1,2,2,2]],[[2,0,2,1],[2,3,2,1],[2,1,2,1],[1,2,2,0]],[[1,0,2,1],[3,3,2,1],[2,1,2,1],[1,2,2,0]],[[1,0,2,1],[2,4,2,1],[2,1,2,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,1],[3,1,2,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,1],[2,1,2,1],[2,2,2,0]],[[1,0,2,1],[2,3,2,1],[2,1,2,1],[1,3,2,0]],[[1,0,2,1],[2,3,2,1],[2,1,2,1],[1,2,3,0]],[[1,2,1,1],[1,4,2,0],[2,1,3,2],[1,2,0,1]],[[1,3,1,1],[1,3,2,0],[2,1,3,2],[1,2,0,1]],[[2,2,1,1],[1,3,2,0],[2,1,3,2],[1,2,0,1]],[[2,0,2,1],[2,3,2,1],[2,1,3,0],[1,2,1,1]],[[1,0,2,1],[3,3,2,1],[2,1,3,0],[1,2,1,1]],[[1,0,2,1],[2,4,2,1],[2,1,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,2,1],[3,1,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,2,1],[2,1,3,0],[2,2,1,1]],[[1,0,2,1],[2,3,2,1],[2,1,3,0],[1,3,1,1]],[[2,0,2,1],[2,3,2,1],[2,1,3,1],[1,2,0,1]],[[1,0,2,1],[3,3,2,1],[2,1,3,1],[1,2,0,1]],[[1,0,2,1],[2,4,2,1],[2,1,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,1],[3,1,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,1],[2,1,3,1],[2,2,0,1]],[[1,0,2,1],[2,3,2,1],[2,1,3,1],[1,3,0,1]],[[2,0,2,1],[2,3,2,1],[2,1,3,1],[1,2,1,0]],[[1,0,2,1],[3,3,2,1],[2,1,3,1],[1,2,1,0]],[[1,0,2,1],[2,4,2,1],[2,1,3,1],[1,2,1,0]],[[1,0,2,1],[2,3,2,1],[3,1,3,1],[1,2,1,0]],[[1,0,2,1],[2,3,2,1],[2,1,3,1],[2,2,1,0]],[[1,0,2,1],[2,3,2,1],[2,1,3,1],[1,3,1,0]],[[1,2,1,1],[1,4,2,0],[2,1,3,1],[1,2,1,1]],[[1,3,1,1],[1,3,2,0],[2,1,3,1],[1,2,1,1]],[[2,2,1,1],[1,3,2,0],[2,1,3,1],[1,2,1,1]],[[1,2,1,1],[1,4,2,0],[2,1,3,0],[1,2,2,1]],[[1,3,1,1],[1,3,2,0],[2,1,3,0],[1,2,2,1]],[[2,2,1,1],[1,3,2,0],[2,1,3,0],[1,2,2,1]],[[1,2,1,1],[1,4,2,0],[2,1,2,2],[1,2,2,0]],[[1,3,1,1],[1,3,2,0],[2,1,2,2],[1,2,2,0]],[[2,2,1,1],[1,3,2,0],[2,1,2,2],[1,2,2,0]],[[1,2,1,1],[1,4,2,0],[2,1,2,1],[1,2,2,1]],[[1,3,1,1],[1,3,2,0],[2,1,2,1],[1,2,2,1]],[[2,2,1,1],[1,3,2,0],[2,1,2,1],[1,2,2,1]],[[1,2,1,1],[1,4,2,0],[2,1,1,2],[1,2,2,1]],[[1,3,1,1],[1,3,2,0],[2,1,1,2],[1,2,2,1]],[[2,2,1,1],[1,3,2,0],[2,1,1,2],[1,2,2,1]],[[1,2,1,1],[1,4,2,0],[2,0,3,2],[1,2,2,0]],[[1,3,1,1],[1,3,2,0],[2,0,3,2],[1,2,2,0]],[[2,2,1,1],[1,3,2,0],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,4,2,0],[2,0,3,1],[1,2,2,1]],[[1,3,1,1],[1,3,2,0],[2,0,3,1],[1,2,2,1]],[[2,2,1,1],[1,3,2,0],[2,0,3,1],[1,2,2,1]],[[1,2,1,1],[1,4,2,0],[2,0,2,2],[1,2,2,1]],[[1,3,1,1],[1,3,2,0],[2,0,2,2],[1,2,2,1]],[[2,2,1,1],[1,3,2,0],[2,0,2,2],[1,2,2,1]],[[2,0,2,1],[2,3,2,1],[2,2,2,0],[0,2,2,1]],[[1,0,2,1],[3,3,2,1],[2,2,2,0],[0,2,2,1]],[[1,0,2,1],[2,4,2,1],[2,2,2,0],[0,2,2,1]],[[1,0,2,1],[2,3,2,1],[3,2,2,0],[0,2,2,1]],[[2,0,2,1],[2,3,2,1],[2,2,2,0],[1,1,2,1]],[[1,0,2,1],[3,3,2,1],[2,2,2,0],[1,1,2,1]],[[1,0,2,1],[2,4,2,1],[2,2,2,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,1],[3,2,2,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,1],[2,2,2,0],[2,1,2,1]],[[2,0,2,1],[2,3,2,1],[2,2,2,1],[0,2,2,0]],[[1,0,2,1],[3,3,2,1],[2,2,2,1],[0,2,2,0]],[[1,0,2,1],[2,4,2,1],[2,2,2,1],[0,2,2,0]],[[1,0,2,1],[2,3,2,1],[3,2,2,1],[0,2,2,0]],[[2,0,2,1],[2,3,2,1],[2,2,2,1],[1,1,2,0]],[[1,0,2,1],[3,3,2,1],[2,2,2,1],[1,1,2,0]],[[1,0,2,1],[2,4,2,1],[2,2,2,1],[1,1,2,0]],[[1,0,2,1],[2,3,2,1],[3,2,2,1],[1,1,2,0]],[[1,0,2,1],[2,3,2,1],[2,2,2,1],[2,1,2,0]],[[1,2,1,1],[1,3,2,0],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[1,4,2,0],[1,3,3,2],[1,2,0,0]],[[1,3,1,1],[1,3,2,0],[1,3,3,2],[1,2,0,0]],[[2,2,1,1],[1,3,2,0],[1,3,3,2],[1,2,0,0]],[[1,2,1,1],[1,3,2,0],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[1,3,2,0],[1,3,4,2],[1,1,1,0]],[[1,2,1,1],[1,3,2,0],[1,4,3,2],[1,1,1,0]],[[1,2,1,1],[1,4,2,0],[1,3,3,2],[1,1,1,0]],[[1,3,1,1],[1,3,2,0],[1,3,3,2],[1,1,1,0]],[[2,2,1,1],[1,3,2,0],[1,3,3,2],[1,1,1,0]],[[1,2,1,1],[1,3,2,0],[1,3,3,2],[1,1,0,2]],[[1,2,1,1],[1,3,2,0],[1,3,3,3],[1,1,0,1]],[[1,2,1,1],[1,3,2,0],[1,3,4,2],[1,1,0,1]],[[2,0,2,1],[2,3,2,1],[2,2,3,0],[0,1,2,1]],[[1,0,2,1],[3,3,2,1],[2,2,3,0],[0,1,2,1]],[[1,0,2,1],[2,4,2,1],[2,2,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,2,1],[3,2,3,0],[0,1,2,1]],[[2,0,2,1],[2,3,2,1],[2,2,3,0],[0,2,1,1]],[[1,0,2,1],[3,3,2,1],[2,2,3,0],[0,2,1,1]],[[1,0,2,1],[2,4,2,1],[2,2,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,2,1],[3,2,3,0],[0,2,1,1]],[[2,0,2,1],[2,3,2,1],[2,2,3,0],[1,0,2,1]],[[1,0,2,1],[3,3,2,1],[2,2,3,0],[1,0,2,1]],[[1,0,2,1],[2,4,2,1],[2,2,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,2,1],[3,2,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,2,1],[2,2,3,0],[2,0,2,1]],[[2,0,2,1],[2,3,2,1],[2,2,3,0],[1,1,1,1]],[[1,0,2,1],[3,3,2,1],[2,2,3,0],[1,1,1,1]],[[1,0,2,1],[2,4,2,1],[2,2,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,2,1],[3,2,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,2,1],[2,2,3,0],[2,1,1,1]],[[2,0,2,1],[2,3,2,1],[2,2,3,0],[1,2,0,1]],[[1,0,2,1],[3,3,2,1],[2,2,3,0],[1,2,0,1]],[[1,0,2,1],[2,4,2,1],[2,2,3,0],[1,2,0,1]],[[1,0,2,1],[2,3,2,1],[3,2,3,0],[1,2,0,1]],[[1,0,2,1],[2,3,2,1],[2,2,3,0],[2,2,0,1]],[[1,2,1,1],[1,3,2,0],[1,4,3,2],[1,1,0,1]],[[1,2,1,1],[1,4,2,0],[1,3,3,2],[1,1,0,1]],[[1,3,1,1],[1,3,2,0],[1,3,3,2],[1,1,0,1]],[[2,2,1,1],[1,3,2,0],[1,3,3,2],[1,1,0,1]],[[2,0,2,1],[2,3,2,1],[2,2,3,1],[0,1,1,1]],[[1,0,2,1],[3,3,2,1],[2,2,3,1],[0,1,1,1]],[[1,0,2,1],[2,4,2,1],[2,2,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,2,1],[3,2,3,1],[0,1,1,1]],[[2,0,2,1],[2,3,2,1],[2,2,3,1],[0,1,2,0]],[[1,0,2,1],[3,3,2,1],[2,2,3,1],[0,1,2,0]],[[1,0,2,1],[2,4,2,1],[2,2,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,2,1],[3,2,3,1],[0,1,2,0]],[[2,0,2,1],[2,3,2,1],[2,2,3,1],[0,2,0,1]],[[1,0,2,1],[3,3,2,1],[2,2,3,1],[0,2,0,1]],[[1,0,2,1],[2,4,2,1],[2,2,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,2,1],[3,2,3,1],[0,2,0,1]],[[2,0,2,1],[2,3,2,1],[2,2,3,1],[0,2,1,0]],[[1,0,2,1],[3,3,2,1],[2,2,3,1],[0,2,1,0]],[[1,0,2,1],[2,4,2,1],[2,2,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,2,1],[3,2,3,1],[0,2,1,0]],[[1,2,1,1],[1,3,2,0],[1,3,3,2],[1,0,3,0]],[[1,2,1,1],[1,3,2,0],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[1,3,2,0],[1,3,4,2],[1,0,2,0]],[[1,2,1,1],[1,3,2,0],[1,4,3,2],[1,0,2,0]],[[1,2,1,1],[1,4,2,0],[1,3,3,2],[1,0,2,0]],[[2,0,2,1],[2,3,2,1],[2,2,3,1],[1,0,1,1]],[[1,0,2,1],[3,3,2,1],[2,2,3,1],[1,0,1,1]],[[1,0,2,1],[2,4,2,1],[2,2,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,2,1],[3,2,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,2,1],[2,2,3,1],[2,0,1,1]],[[2,0,2,1],[2,3,2,1],[2,2,3,1],[1,0,2,0]],[[1,0,2,1],[3,3,2,1],[2,2,3,1],[1,0,2,0]],[[1,0,2,1],[2,4,2,1],[2,2,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,2,1],[3,2,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,2,1],[2,2,3,1],[2,0,2,0]],[[2,0,2,1],[2,3,2,1],[2,2,3,1],[1,1,0,1]],[[1,0,2,1],[3,3,2,1],[2,2,3,1],[1,1,0,1]],[[1,0,2,1],[2,4,2,1],[2,2,3,1],[1,1,0,1]],[[1,0,2,1],[2,3,2,1],[3,2,3,1],[1,1,0,1]],[[1,0,2,1],[2,3,2,1],[2,2,3,1],[2,1,0,1]],[[2,0,2,1],[2,3,2,1],[2,2,3,1],[1,1,1,0]],[[1,0,2,1],[3,3,2,1],[2,2,3,1],[1,1,1,0]],[[1,0,2,1],[2,4,2,1],[2,2,3,1],[1,1,1,0]],[[1,0,2,1],[2,3,2,1],[3,2,3,1],[1,1,1,0]],[[1,0,2,1],[2,3,2,1],[2,2,3,1],[2,1,1,0]],[[1,3,1,1],[1,3,2,0],[1,3,3,2],[1,0,2,0]],[[2,2,1,1],[1,3,2,0],[1,3,3,2],[1,0,2,0]],[[1,2,1,1],[1,3,2,0],[1,3,3,2],[1,0,1,2]],[[1,2,1,1],[1,3,2,0],[1,3,3,3],[1,0,1,1]],[[1,2,1,1],[1,3,2,0],[1,3,4,2],[1,0,1,1]],[[2,0,2,1],[2,3,2,1],[2,2,3,1],[1,2,0,0]],[[1,0,2,1],[3,3,2,1],[2,2,3,1],[1,2,0,0]],[[1,0,2,1],[2,4,2,1],[2,2,3,1],[1,2,0,0]],[[1,0,2,1],[2,3,2,1],[3,2,3,1],[1,2,0,0]],[[1,0,2,1],[2,3,2,1],[2,2,3,1],[2,2,0,0]],[[1,2,1,1],[1,3,2,0],[1,4,3,2],[1,0,1,1]],[[1,2,1,1],[1,4,2,0],[1,3,3,2],[1,0,1,1]],[[1,3,1,1],[1,3,2,0],[1,3,3,2],[1,0,1,1]],[[2,2,1,1],[1,3,2,0],[1,3,3,2],[1,0,1,1]],[[1,2,1,1],[1,3,2,0],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[1,3,2,0],[1,3,3,3],[0,2,1,0]],[[1,2,1,1],[1,3,2,0],[1,3,4,2],[0,2,1,0]],[[1,2,1,1],[1,3,2,0],[1,4,3,2],[0,2,1,0]],[[1,2,1,1],[1,4,2,0],[1,3,3,2],[0,2,1,0]],[[1,3,1,1],[1,3,2,0],[1,3,3,2],[0,2,1,0]],[[2,2,1,1],[1,3,2,0],[1,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,3,2,0],[1,3,3,2],[0,2,0,2]],[[1,2,1,1],[1,3,2,0],[1,3,3,2],[0,3,0,1]],[[1,2,1,1],[1,3,2,0],[1,3,3,3],[0,2,0,1]],[[1,2,1,1],[1,3,2,0],[1,3,4,2],[0,2,0,1]],[[1,2,1,1],[1,3,2,0],[1,4,3,2],[0,2,0,1]],[[1,2,1,1],[1,4,2,0],[1,3,3,2],[0,2,0,1]],[[1,3,1,1],[1,3,2,0],[1,3,3,2],[0,2,0,1]],[[2,2,1,1],[1,3,2,0],[1,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,3,2,0],[1,3,3,2],[0,1,3,0]],[[1,2,1,1],[1,3,2,0],[1,3,3,3],[0,1,2,0]],[[1,2,1,1],[1,3,2,0],[1,3,4,2],[0,1,2,0]],[[1,2,1,1],[1,3,2,0],[1,4,3,2],[0,1,2,0]],[[1,2,1,1],[1,4,2,0],[1,3,3,2],[0,1,2,0]],[[1,3,1,1],[1,3,2,0],[1,3,3,2],[0,1,2,0]],[[2,2,1,1],[1,3,2,0],[1,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,3,2,0],[1,3,3,2],[0,1,1,2]],[[1,2,1,1],[1,3,2,0],[1,3,3,3],[0,1,1,1]],[[1,2,1,1],[1,3,2,0],[1,3,4,2],[0,1,1,1]],[[1,2,1,1],[1,3,2,0],[1,4,3,2],[0,1,1,1]],[[1,2,1,1],[1,4,2,0],[1,3,3,2],[0,1,1,1]],[[1,3,1,1],[1,3,2,0],[1,3,3,2],[0,1,1,1]],[[2,2,1,1],[1,3,2,0],[1,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,3,2,0],[1,3,3,2],[0,0,2,2]],[[1,2,1,1],[1,3,2,0],[1,3,3,3],[0,0,2,1]],[[1,2,1,1],[1,3,2,0],[1,3,4,2],[0,0,2,1]],[[1,2,1,1],[1,3,2,0],[1,4,3,1],[1,2,0,1]],[[1,2,1,1],[1,4,2,0],[1,3,3,1],[1,2,0,1]],[[1,3,1,1],[1,3,2,0],[1,3,3,1],[1,2,0,1]],[[2,2,1,1],[1,3,2,0],[1,3,3,1],[1,2,0,1]],[[1,2,1,1],[1,3,2,0],[1,3,4,1],[1,1,1,1]],[[1,2,1,1],[1,3,2,0],[1,4,3,1],[1,1,1,1]],[[1,2,1,1],[1,4,2,0],[1,3,3,1],[1,1,1,1]],[[1,3,1,1],[1,3,2,0],[1,3,3,1],[1,1,1,1]],[[2,2,1,1],[1,3,2,0],[1,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,3,2,0],[1,3,3,1],[1,0,2,2]],[[1,2,1,1],[1,3,2,0],[1,3,3,1],[1,0,3,1]],[[1,2,1,1],[1,3,2,0],[1,3,4,1],[1,0,2,1]],[[1,2,1,1],[1,3,2,0],[1,4,3,1],[1,0,2,1]],[[1,2,1,1],[1,4,2,0],[1,3,3,1],[1,0,2,1]],[[1,3,1,1],[1,3,2,0],[1,3,3,1],[1,0,2,1]],[[2,2,1,1],[1,3,2,0],[1,3,3,1],[1,0,2,1]],[[1,2,1,1],[1,3,2,0],[1,3,3,1],[0,3,1,1]],[[1,2,1,1],[1,3,2,0],[1,3,4,1],[0,2,1,1]],[[1,2,1,1],[1,3,2,0],[1,4,3,1],[0,2,1,1]],[[1,2,1,1],[1,4,2,0],[1,3,3,1],[0,2,1,1]],[[1,3,1,1],[1,3,2,0],[1,3,3,1],[0,2,1,1]],[[2,2,1,1],[1,3,2,0],[1,3,3,1],[0,2,1,1]],[[1,2,1,1],[1,3,2,0],[1,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,3,2,0],[1,3,3,1],[0,1,3,1]],[[1,2,1,1],[1,3,2,0],[1,3,4,1],[0,1,2,1]],[[1,2,1,1],[1,3,2,0],[1,4,3,1],[0,1,2,1]],[[1,2,1,1],[1,4,2,0],[1,3,3,1],[0,1,2,1]],[[1,3,1,1],[1,3,2,0],[1,3,3,1],[0,1,2,1]],[[2,2,1,1],[1,3,2,0],[1,3,3,1],[0,1,2,1]],[[1,2,1,1],[1,3,2,0],[1,4,3,0],[1,1,2,1]],[[1,2,1,1],[1,4,2,0],[1,3,3,0],[1,1,2,1]],[[1,3,1,1],[1,3,2,0],[1,3,3,0],[1,1,2,1]],[[2,2,1,1],[1,3,2,0],[1,3,3,0],[1,1,2,1]],[[1,2,1,1],[1,3,2,0],[1,3,3,0],[0,2,3,1]],[[1,2,1,1],[1,3,2,0],[1,3,3,0],[0,3,2,1]],[[1,2,1,1],[1,3,2,0],[1,4,3,0],[0,2,2,1]],[[1,2,1,1],[1,4,2,0],[1,3,3,0],[0,2,2,1]],[[1,3,1,1],[1,3,2,0],[1,3,3,0],[0,2,2,1]],[[2,2,1,1],[1,3,2,0],[1,3,3,0],[0,2,2,1]],[[1,2,1,1],[1,3,2,0],[1,4,2,2],[1,1,2,0]],[[1,2,1,1],[1,4,2,0],[1,3,2,2],[1,1,2,0]],[[1,3,1,1],[1,3,2,0],[1,3,2,2],[1,1,2,0]],[[2,2,1,1],[1,3,2,0],[1,3,2,2],[1,1,2,0]],[[1,2,1,1],[1,3,2,0],[1,3,2,2],[1,0,2,2]],[[1,2,1,1],[1,3,2,0],[1,3,2,2],[1,0,3,1]],[[1,2,1,1],[1,3,2,0],[1,3,2,3],[1,0,2,1]],[[1,2,1,1],[1,3,2,0],[1,3,2,2],[0,2,3,0]],[[1,2,1,1],[1,3,2,0],[1,3,2,2],[0,3,2,0]],[[1,2,1,1],[1,3,2,0],[1,4,2,2],[0,2,2,0]],[[1,2,1,1],[1,4,2,0],[1,3,2,2],[0,2,2,0]],[[1,3,1,1],[1,3,2,0],[1,3,2,2],[0,2,2,0]],[[2,2,1,1],[1,3,2,0],[1,3,2,2],[0,2,2,0]],[[1,2,1,1],[1,3,2,0],[1,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,3,2,0],[1,3,2,2],[0,1,3,1]],[[1,2,1,1],[1,3,2,0],[1,3,2,3],[0,1,2,1]],[[1,2,1,1],[1,3,2,0],[1,4,2,1],[1,1,2,1]],[[1,2,1,1],[1,4,2,0],[1,3,2,1],[1,1,2,1]],[[1,3,1,1],[1,3,2,0],[1,3,2,1],[1,1,2,1]],[[2,2,1,1],[1,3,2,0],[1,3,2,1],[1,1,2,1]],[[1,2,1,1],[1,3,2,0],[1,3,2,1],[0,2,2,2]],[[1,2,1,1],[1,3,2,0],[1,3,2,1],[0,2,3,1]],[[1,2,1,1],[1,3,2,0],[1,3,2,1],[0,3,2,1]],[[1,2,1,1],[1,3,2,0],[1,4,2,1],[0,2,2,1]],[[1,2,1,1],[1,4,2,0],[1,3,2,1],[0,2,2,1]],[[1,3,1,1],[1,3,2,0],[1,3,2,1],[0,2,2,1]],[[2,2,1,1],[1,3,2,0],[1,3,2,1],[0,2,2,1]],[[1,2,1,1],[1,3,2,0],[1,4,1,2],[1,1,2,1]],[[1,2,1,1],[1,4,2,0],[1,3,1,2],[1,1,2,1]],[[1,3,1,1],[1,3,2,0],[1,3,1,2],[1,1,2,1]],[[2,2,1,1],[1,3,2,0],[1,3,1,2],[1,1,2,1]],[[1,2,1,1],[1,3,2,0],[1,3,1,2],[0,2,2,2]],[[1,2,1,1],[1,3,2,0],[1,3,1,2],[0,2,3,1]],[[1,2,1,1],[1,3,2,0],[1,3,1,2],[0,3,2,1]],[[1,2,1,1],[1,3,2,0],[1,3,1,3],[0,2,2,1]],[[1,2,1,1],[1,3,2,0],[1,4,1,2],[0,2,2,1]],[[1,2,1,1],[1,4,2,0],[1,3,1,2],[0,2,2,1]],[[1,3,1,1],[1,3,2,0],[1,3,1,2],[0,2,2,1]],[[2,2,1,1],[1,3,2,0],[1,3,1,2],[0,2,2,1]],[[1,2,1,1],[1,3,2,0],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[1,3,2,0],[1,2,3,2],[0,3,2,0]],[[1,2,1,1],[1,3,2,0],[1,2,3,3],[0,2,2,0]],[[1,2,1,1],[1,3,2,0],[1,2,4,2],[0,2,2,0]],[[1,2,1,1],[1,3,2,0],[1,2,3,2],[0,2,1,2]],[[1,2,1,1],[1,3,2,0],[1,2,3,3],[0,2,1,1]],[[1,2,1,1],[1,3,2,0],[1,2,4,2],[0,2,1,1]],[[1,2,1,1],[1,3,2,0],[1,2,3,1],[0,2,2,2]],[[1,2,1,1],[1,3,2,0],[1,2,3,1],[0,2,3,1]],[[1,2,1,1],[1,3,2,0],[1,2,3,1],[0,3,2,1]],[[1,2,1,1],[1,3,2,0],[1,2,4,1],[0,2,2,1]],[[1,2,1,1],[1,3,2,0],[1,2,2,2],[0,2,2,2]],[[1,2,1,1],[1,3,2,0],[1,2,2,2],[0,2,3,1]],[[1,2,1,1],[1,3,2,0],[1,2,2,2],[0,3,2,1]],[[1,2,1,1],[1,3,2,0],[1,2,2,3],[0,2,2,1]],[[2,0,2,1],[2,3,2,1],[2,3,3,0],[1,0,1,1]],[[1,0,2,1],[3,3,2,1],[2,3,3,0],[1,0,1,1]],[[1,0,2,1],[2,4,2,1],[2,3,3,0],[1,0,1,1]],[[1,0,2,1],[2,3,2,1],[3,3,3,0],[1,0,1,1]],[[1,2,1,1],[1,3,2,0],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[1,3,2,0],[0,3,3,2],[2,2,1,0]],[[1,2,1,1],[1,3,2,0],[0,3,3,3],[1,2,1,0]],[[1,2,1,1],[1,3,2,0],[0,3,4,2],[1,2,1,0]],[[1,2,1,1],[1,3,2,0],[0,4,3,2],[1,2,1,0]],[[1,2,1,1],[1,4,2,0],[0,3,3,2],[1,2,1,0]],[[1,3,1,1],[1,3,2,0],[0,3,3,2],[1,2,1,0]],[[2,2,1,1],[1,3,2,0],[0,3,3,2],[1,2,1,0]],[[1,2,1,1],[1,3,2,0],[0,3,3,2],[1,2,0,2]],[[1,2,1,1],[1,3,2,0],[0,3,3,2],[1,3,0,1]],[[1,2,1,1],[1,3,2,0],[0,3,3,2],[2,2,0,1]],[[1,2,1,1],[1,3,2,0],[0,3,3,3],[1,2,0,1]],[[1,2,1,1],[1,3,2,0],[0,3,4,2],[1,2,0,1]],[[1,2,1,1],[1,3,2,0],[0,4,3,2],[1,2,0,1]],[[1,2,1,1],[1,4,2,0],[0,3,3,2],[1,2,0,1]],[[1,3,1,1],[1,3,2,0],[0,3,3,2],[1,2,0,1]],[[2,2,1,1],[1,3,2,0],[0,3,3,2],[1,2,0,1]],[[1,2,1,1],[1,3,2,0],[0,3,3,2],[1,1,3,0]],[[1,2,1,1],[1,3,2,0],[0,3,3,3],[1,1,2,0]],[[1,2,1,1],[1,3,2,0],[0,3,4,2],[1,1,2,0]],[[1,2,1,1],[1,3,2,0],[0,4,3,2],[1,1,2,0]],[[1,2,1,1],[1,4,2,0],[0,3,3,2],[1,1,2,0]],[[1,3,1,1],[1,3,2,0],[0,3,3,2],[1,1,2,0]],[[2,2,1,1],[1,3,2,0],[0,3,3,2],[1,1,2,0]],[[1,2,1,1],[1,3,2,0],[0,3,3,2],[1,1,1,2]],[[1,2,1,1],[1,3,2,0],[0,3,3,3],[1,1,1,1]],[[1,2,1,1],[1,3,2,0],[0,3,4,2],[1,1,1,1]],[[1,2,1,1],[1,3,2,0],[0,4,3,2],[1,1,1,1]],[[1,2,1,1],[1,4,2,0],[0,3,3,2],[1,1,1,1]],[[1,3,1,1],[1,3,2,0],[0,3,3,2],[1,1,1,1]],[[2,2,1,1],[1,3,2,0],[0,3,3,2],[1,1,1,1]],[[1,2,1,1],[1,3,2,0],[0,3,3,2],[1,0,2,2]],[[1,2,1,1],[1,3,2,0],[0,3,3,3],[1,0,2,1]],[[1,2,1,1],[1,3,2,0],[0,3,4,2],[1,0,2,1]],[[2,0,2,1],[2,3,2,1],[2,3,3,1],[1,0,0,1]],[[1,0,2,1],[3,3,2,1],[2,3,3,1],[1,0,0,1]],[[1,0,2,1],[2,4,2,1],[2,3,3,1],[1,0,0,1]],[[1,0,2,1],[2,3,2,1],[3,3,3,1],[1,0,0,1]],[[2,0,2,1],[2,3,2,1],[2,3,3,1],[1,0,1,0]],[[1,0,2,1],[3,3,2,1],[2,3,3,1],[1,0,1,0]],[[1,0,2,1],[2,4,2,1],[2,3,3,1],[1,0,1,0]],[[1,0,2,1],[2,3,2,1],[3,3,3,1],[1,0,1,0]],[[1,2,1,1],[1,3,2,0],[0,3,3,1],[1,3,1,1]],[[1,2,1,1],[1,3,2,0],[0,3,3,1],[2,2,1,1]],[[1,2,1,1],[1,3,2,0],[0,3,4,1],[1,2,1,1]],[[1,2,1,1],[1,3,2,0],[0,4,3,1],[1,2,1,1]],[[1,2,1,1],[1,4,2,0],[0,3,3,1],[1,2,1,1]],[[1,3,1,1],[1,3,2,0],[0,3,3,1],[1,2,1,1]],[[2,2,1,1],[1,3,2,0],[0,3,3,1],[1,2,1,1]],[[1,2,1,1],[1,3,2,0],[0,3,3,1],[1,1,2,2]],[[1,2,1,1],[1,3,2,0],[0,3,3,1],[1,1,3,1]],[[1,2,1,1],[1,3,2,0],[0,3,4,1],[1,1,2,1]],[[1,2,1,1],[1,3,2,0],[0,4,3,1],[1,1,2,1]],[[1,2,1,1],[1,4,2,0],[0,3,3,1],[1,1,2,1]],[[1,3,1,1],[1,3,2,0],[0,3,3,1],[1,1,2,1]],[[2,2,1,1],[1,3,2,0],[0,3,3,1],[1,1,2,1]],[[1,2,1,1],[1,3,2,0],[0,3,3,0],[1,2,3,1]],[[1,2,1,1],[1,3,2,0],[0,3,3,0],[1,3,2,1]],[[1,2,1,1],[1,3,2,0],[0,3,3,0],[2,2,2,1]],[[1,2,1,1],[1,3,2,0],[0,4,3,0],[1,2,2,1]],[[1,2,1,1],[1,4,2,0],[0,3,3,0],[1,2,2,1]],[[1,3,1,1],[1,3,2,0],[0,3,3,0],[1,2,2,1]],[[2,2,1,1],[1,3,2,0],[0,3,3,0],[1,2,2,1]],[[1,2,1,1],[1,3,2,0],[0,3,2,2],[1,2,3,0]],[[1,2,1,1],[1,3,2,0],[0,3,2,2],[1,3,2,0]],[[1,2,1,1],[1,3,2,0],[0,3,2,2],[2,2,2,0]],[[1,2,1,1],[1,3,2,0],[0,4,2,2],[1,2,2,0]],[[1,2,1,1],[1,4,2,0],[0,3,2,2],[1,2,2,0]],[[1,3,1,1],[1,3,2,0],[0,3,2,2],[1,2,2,0]],[[2,2,1,1],[1,3,2,0],[0,3,2,2],[1,2,2,0]],[[1,2,1,1],[1,3,2,0],[0,3,2,2],[1,1,2,2]],[[1,2,1,1],[1,3,2,0],[0,3,2,2],[1,1,3,1]],[[1,2,1,1],[1,3,2,0],[0,3,2,3],[1,1,2,1]],[[1,2,1,1],[1,3,2,0],[0,3,2,1],[1,2,2,2]],[[1,2,1,1],[1,3,2,0],[0,3,2,1],[1,2,3,1]],[[1,2,1,1],[1,3,2,0],[0,3,2,1],[1,3,2,1]],[[1,2,1,1],[1,3,2,0],[0,3,2,1],[2,2,2,1]],[[1,2,1,1],[1,3,2,0],[0,4,2,1],[1,2,2,1]],[[1,2,1,1],[1,4,2,0],[0,3,2,1],[1,2,2,1]],[[1,3,1,1],[1,3,2,0],[0,3,2,1],[1,2,2,1]],[[2,2,1,1],[1,3,2,0],[0,3,2,1],[1,2,2,1]],[[1,2,1,1],[1,3,2,0],[0,3,1,2],[1,2,2,2]],[[1,2,1,1],[1,3,2,0],[0,3,1,2],[1,2,3,1]],[[1,2,1,1],[1,3,2,0],[0,3,1,2],[1,3,2,1]],[[1,2,1,1],[1,3,2,0],[0,3,1,2],[2,2,2,1]],[[1,2,1,1],[1,3,2,0],[0,3,1,3],[1,2,2,1]],[[1,2,1,1],[1,3,2,0],[0,4,1,2],[1,2,2,1]],[[1,2,1,1],[1,4,2,0],[0,3,1,2],[1,2,2,1]],[[1,3,1,1],[1,3,2,0],[0,3,1,2],[1,2,2,1]],[[2,2,1,1],[1,3,2,0],[0,3,1,2],[1,2,2,1]],[[1,2,1,1],[1,3,2,0],[0,2,3,2],[1,2,3,0]],[[1,2,1,1],[1,3,2,0],[0,2,3,2],[1,3,2,0]],[[1,2,1,1],[1,3,2,0],[0,2,3,2],[2,2,2,0]],[[1,2,1,1],[1,3,2,0],[0,2,3,3],[1,2,2,0]],[[1,2,1,1],[1,3,2,0],[0,2,4,2],[1,2,2,0]],[[1,2,1,1],[1,3,2,0],[0,2,3,2],[1,2,1,2]],[[1,2,1,1],[1,3,2,0],[0,2,3,3],[1,2,1,1]],[[1,2,1,1],[1,3,2,0],[0,2,4,2],[1,2,1,1]],[[1,2,1,1],[1,3,2,0],[0,2,3,1],[1,2,2,2]],[[1,2,1,1],[1,3,2,0],[0,2,3,1],[1,2,3,1]],[[1,2,1,1],[1,3,2,0],[0,2,3,1],[1,3,2,1]],[[1,2,1,1],[1,3,2,0],[0,2,3,1],[2,2,2,1]],[[1,2,1,1],[1,3,2,0],[0,2,4,1],[1,2,2,1]],[[1,2,1,1],[1,3,2,0],[0,2,2,2],[1,2,2,2]],[[1,2,1,1],[1,3,2,0],[0,2,2,2],[1,2,3,1]],[[1,2,1,1],[1,3,2,0],[0,2,2,2],[1,3,2,1]],[[1,2,1,1],[1,3,2,0],[0,2,2,2],[2,2,2,1]],[[1,2,1,1],[1,3,2,0],[0,2,2,3],[1,2,2,1]],[[1,2,1,1],[1,4,1,2],[2,2,0,2],[1,1,2,1]],[[1,3,1,1],[1,3,1,2],[2,2,0,2],[1,1,2,1]],[[2,2,1,1],[1,3,1,2],[2,2,0,2],[1,1,2,1]],[[1,2,1,1],[1,4,1,2],[2,2,0,2],[0,2,2,1]],[[1,3,1,1],[1,3,1,2],[2,2,0,2],[0,2,2,1]],[[2,2,1,1],[1,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[1,4,1,2],[2,1,0,2],[1,2,2,1]],[[1,3,1,1],[1,3,1,2],[2,1,0,2],[1,2,2,1]],[[2,2,1,1],[1,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[1,4,1,2],[2,0,1,2],[1,2,2,1]],[[1,3,1,1],[1,3,1,2],[2,0,1,2],[1,2,2,1]],[[2,2,1,1],[1,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[0,0,2,2],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[0,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[0,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,2],[0,0,2,3],[1,2,2,1]],[[1,0,2,1],[2,3,2,2],[0,0,2,2],[1,2,3,1]],[[1,0,2,1],[2,3,2,2],[0,0,2,2],[1,2,2,2]],[[1,0,3,1],[2,3,2,2],[0,0,3,2],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[0,0,3,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[0,0,3,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,2],[0,0,3,3],[1,1,2,1]],[[1,0,2,1],[2,3,2,2],[0,0,3,2],[1,1,2,2]],[[1,0,3,1],[2,3,2,2],[0,0,3,2],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[0,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[0,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[0,0,3,3],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[0,0,3,2],[1,2,1,2]],[[1,0,3,1],[2,3,2,2],[0,0,3,2],[1,2,2,0]],[[1,0,2,2],[2,3,2,2],[0,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,3],[0,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,2],[0,0,3,3],[1,2,2,0]],[[1,0,3,1],[2,3,2,2],[0,1,1,2],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[0,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[0,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,2],[0,1,1,3],[1,2,2,1]],[[1,0,2,1],[2,3,2,2],[0,1,1,2],[2,2,2,1]],[[1,0,2,1],[2,3,2,2],[0,1,1,2],[1,3,2,1]],[[1,0,2,1],[2,3,2,2],[0,1,1,2],[1,2,3,1]],[[1,0,2,1],[2,3,2,2],[0,1,1,2],[1,2,2,2]],[[1,0,3,1],[2,3,2,2],[0,1,2,2],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[0,1,2,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[0,1,2,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[0,1,2,3],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[0,1,2,2],[1,2,1,2]],[[1,0,3,1],[2,3,2,2],[0,1,2,2],[1,2,2,0]],[[1,0,2,2],[2,3,2,2],[0,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,3],[0,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,2],[0,1,2,3],[1,2,2,0]],[[1,0,3,1],[2,3,2,2],[0,1,3,0],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[0,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[0,1,3,0],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[0,1,3,1],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[0,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[0,1,3,1],[1,2,1,1]],[[1,0,3,1],[2,3,2,2],[0,1,3,1],[1,2,2,0]],[[1,0,2,2],[2,3,2,2],[0,1,3,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,3],[0,1,3,1],[1,2,2,0]],[[1,0,3,1],[2,3,2,2],[0,1,3,2],[1,0,2,1]],[[1,0,2,2],[2,3,2,2],[0,1,3,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,3],[0,1,3,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[0,1,3,3],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[0,1,3,2],[1,0,2,2]],[[1,0,3,1],[2,3,2,2],[0,1,3,2],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[0,1,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[0,1,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[0,1,3,3],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[0,1,3,2],[1,1,1,2]],[[1,0,3,1],[2,3,2,2],[0,1,3,2],[1,1,2,0]],[[1,0,2,2],[2,3,2,2],[0,1,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,3],[0,1,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,2],[0,1,3,3],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[0,2,0,2],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[0,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[0,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,2],[0,2,0,3],[1,2,2,1]],[[1,0,2,1],[2,3,2,2],[0,2,0,2],[2,2,2,1]],[[1,0,2,1],[2,3,2,2],[0,2,0,2],[1,3,2,1]],[[1,0,2,1],[2,3,2,2],[0,2,0,2],[1,2,3,1]],[[1,0,2,1],[2,3,2,2],[0,2,0,2],[1,2,2,2]],[[1,0,3,1],[2,3,2,2],[0,2,1,2],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[0,2,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[0,2,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,2],[0,2,1,3],[1,1,2,1]],[[1,0,2,1],[2,3,2,2],[0,2,1,2],[1,1,3,1]],[[1,0,2,1],[2,3,2,2],[0,2,1,2],[1,1,2,2]],[[1,0,3,1],[2,3,2,2],[0,2,2,2],[1,0,2,1]],[[1,0,2,2],[2,3,2,2],[0,2,2,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,3],[0,2,2,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[0,2,2,3],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[0,2,2,2],[1,0,2,2]],[[1,0,3,1],[2,3,2,2],[0,2,2,2],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[0,2,2,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[0,2,2,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[0,2,2,3],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[0,2,2,2],[1,1,1,2]],[[1,0,3,1],[2,3,2,2],[0,2,2,2],[1,1,2,0]],[[1,0,2,2],[2,3,2,2],[0,2,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,3],[0,2,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,2],[0,2,2,3],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[0,2,2,2],[1,2,0,1]],[[1,0,2,2],[2,3,2,2],[0,2,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,3],[0,2,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,2],[0,2,2,3],[1,2,0,1]],[[1,0,2,1],[2,3,2,2],[0,2,2,2],[1,2,0,2]],[[1,0,3,1],[2,3,2,2],[0,2,2,2],[1,2,1,0]],[[1,0,2,2],[2,3,2,2],[0,2,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,3],[0,2,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,2],[0,2,2,3],[1,2,1,0]],[[1,0,3,1],[2,3,2,2],[0,2,3,0],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[0,2,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[0,2,3,0],[1,1,2,1]],[[1,0,3,1],[2,3,2,2],[0,2,3,0],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[0,2,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[0,2,3,0],[1,2,1,1]],[[1,0,3,1],[2,3,2,2],[0,2,3,1],[1,0,2,1]],[[1,0,2,2],[2,3,2,2],[0,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,2,3],[0,2,3,1],[1,0,2,1]],[[1,0,3,1],[2,3,2,2],[0,2,3,1],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[0,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[0,2,3,1],[1,1,1,1]],[[1,0,3,1],[2,3,2,2],[0,2,3,1],[1,1,2,0]],[[1,0,2,2],[2,3,2,2],[0,2,3,1],[1,1,2,0]],[[1,0,2,1],[2,3,2,3],[0,2,3,1],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[0,2,3,1],[1,2,0,1]],[[1,0,2,2],[2,3,2,2],[0,2,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,3],[0,2,3,1],[1,2,0,1]],[[1,0,3,1],[2,3,2,2],[0,2,3,1],[1,2,1,0]],[[1,0,2,2],[2,3,2,2],[0,2,3,1],[1,2,1,0]],[[1,0,2,1],[2,3,2,3],[0,2,3,1],[1,2,1,0]],[[1,0,3,1],[2,3,2,2],[0,2,3,2],[1,1,0,1]],[[1,0,2,2],[2,3,2,2],[0,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,3],[0,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,2],[0,2,3,3],[1,1,0,1]],[[1,0,3,1],[2,3,2,2],[0,3,0,1],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[0,3,0,1],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[0,3,0,1],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[0,3,0,2],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[0,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[0,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,2],[0,3,0,3],[1,1,2,1]],[[1,0,2,1],[2,3,2,2],[0,3,0,2],[1,1,3,1]],[[1,0,2,1],[2,3,2,2],[0,3,0,2],[1,1,2,2]],[[1,0,3,1],[2,3,2,2],[0,3,0,2],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[0,3,0,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[0,3,0,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[0,3,0,3],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[0,3,0,2],[1,2,1,2]],[[1,0,3,1],[2,3,2,2],[0,3,0,2],[1,2,2,0]],[[1,0,2,2],[2,3,2,2],[0,3,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,3],[0,3,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,2],[0,3,0,3],[1,2,2,0]],[[1,0,3,1],[2,3,2,2],[0,3,1,0],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[0,3,1,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[0,3,1,0],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[0,3,1,1],[1,2,2,0]],[[1,0,2,2],[2,3,2,2],[0,3,1,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,3],[0,3,1,1],[1,2,2,0]],[[1,0,3,1],[2,3,2,2],[0,3,1,2],[0,1,2,1]],[[1,0,2,2],[2,3,2,2],[0,3,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,3],[0,3,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[0,3,1,3],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[0,3,1,2],[0,1,3,1]],[[1,0,2,1],[2,3,2,2],[0,3,1,2],[0,1,2,2]],[[1,0,3,1],[2,3,2,2],[0,3,1,2],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[0,3,1,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[0,3,1,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[0,3,1,3],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[0,3,1,2],[1,1,1,2]],[[1,0,3,1],[2,3,2,2],[0,3,1,2],[1,1,2,0]],[[1,0,2,2],[2,3,2,2],[0,3,1,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,3],[0,3,1,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,2],[0,3,1,3],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[0,3,1,2],[1,2,0,1]],[[1,0,2,2],[2,3,2,2],[0,3,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,3],[0,3,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,2],[0,3,1,3],[1,2,0,1]],[[1,0,2,1],[2,3,2,2],[0,3,1,2],[1,2,0,2]],[[1,0,3,1],[2,3,2,2],[0,3,1,2],[1,2,1,0]],[[1,0,2,2],[2,3,2,2],[0,3,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,3],[0,3,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,2],[0,3,1,3],[1,2,1,0]],[[1,0,3,1],[2,3,2,2],[0,3,2,0],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[0,3,2,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[0,3,2,0],[1,1,2,1]],[[1,0,3,1],[2,3,2,2],[0,3,2,0],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[0,3,2,0],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[0,3,2,0],[1,2,1,1]],[[1,0,3,1],[2,3,2,2],[0,3,2,1],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[0,3,2,1],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[0,3,2,1],[1,1,1,1]],[[1,0,3,1],[2,3,2,2],[0,3,2,1],[1,1,2,0]],[[1,0,2,2],[2,3,2,2],[0,3,2,1],[1,1,2,0]],[[1,0,2,1],[2,3,2,3],[0,3,2,1],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[0,3,2,1],[1,2,0,1]],[[1,0,2,2],[2,3,2,2],[0,3,2,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,3],[0,3,2,1],[1,2,0,1]],[[1,0,3,1],[2,3,2,2],[0,3,2,1],[1,2,1,0]],[[1,0,2,2],[2,3,2,2],[0,3,2,1],[1,2,1,0]],[[1,0,2,1],[2,3,2,3],[0,3,2,1],[1,2,1,0]],[[1,0,3,1],[2,3,2,2],[0,3,2,2],[0,0,2,1]],[[1,0,2,2],[2,3,2,2],[0,3,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,2,3],[0,3,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,2,2],[0,3,2,3],[0,0,2,1]],[[1,0,2,1],[2,3,2,2],[0,3,2,2],[0,0,2,2]],[[1,0,3,1],[2,3,2,2],[0,3,2,2],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[0,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[0,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[0,3,2,3],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[0,3,2,2],[0,1,1,2]],[[1,0,3,1],[2,3,2,2],[0,3,2,2],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[0,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[0,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,2],[0,3,2,3],[0,1,2,0]],[[1,0,3,1],[2,3,2,2],[0,3,2,2],[0,2,0,1]],[[1,0,2,2],[2,3,2,2],[0,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,3],[0,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,2],[0,3,2,3],[0,2,0,1]],[[1,0,2,1],[2,3,2,2],[0,3,2,2],[0,2,0,2]],[[1,0,3,1],[2,3,2,2],[0,3,2,2],[0,2,1,0]],[[1,0,2,2],[2,3,2,2],[0,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,3],[0,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,2],[0,3,2,3],[0,2,1,0]],[[1,2,1,1],[1,3,1,2],[1,4,0,2],[1,1,2,1]],[[1,2,1,1],[1,4,1,2],[1,3,0,2],[1,1,2,1]],[[1,3,1,1],[1,3,1,2],[1,3,0,2],[1,1,2,1]],[[2,2,1,1],[1,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,2,1,1],[1,3,1,2],[1,3,0,2],[0,2,2,2]],[[1,2,1,1],[1,3,1,2],[1,3,0,2],[0,2,3,1]],[[1,2,1,1],[1,3,1,2],[1,3,0,2],[0,3,2,1]],[[1,2,1,1],[1,3,1,2],[1,3,0,3],[0,2,2,1]],[[1,2,1,1],[1,3,1,2],[1,4,0,2],[0,2,2,1]],[[1,2,1,1],[1,3,1,3],[1,3,0,2],[0,2,2,1]],[[1,2,1,1],[1,4,1,2],[1,3,0,2],[0,2,2,1]],[[1,2,1,2],[1,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,3,1,1],[1,3,1,2],[1,3,0,2],[0,2,2,1]],[[2,2,1,1],[1,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,0,3,1],[2,3,2,2],[0,3,3,0],[0,1,2,1]],[[1,0,2,2],[2,3,2,2],[0,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,2,3],[0,3,3,0],[0,1,2,1]],[[1,0,3,1],[2,3,2,2],[0,3,3,0],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[0,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[0,3,3,0],[0,2,1,1]],[[1,0,3,1],[2,3,2,2],[0,3,3,1],[0,0,2,1]],[[1,0,2,2],[2,3,2,2],[0,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,2,3],[0,3,3,1],[0,0,2,1]],[[1,0,3,1],[2,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[0,3,3,1],[0,1,1,1]],[[1,0,3,1],[2,3,2,2],[0,3,3,1],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[0,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[0,3,3,1],[0,1,2,0]],[[1,0,3,1],[2,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,0,2,2],[2,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,2,3],[0,3,3,1],[0,2,0,1]],[[1,0,3,1],[2,3,2,2],[0,3,3,1],[0,2,1,0]],[[1,0,2,2],[2,3,2,2],[0,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,2,3],[0,3,3,1],[0,2,1,0]],[[1,0,3,1],[2,3,2,2],[0,3,3,1],[1,2,0,0]],[[1,0,2,2],[2,3,2,2],[0,3,3,1],[1,2,0,0]],[[1,0,2,1],[2,3,2,3],[0,3,3,1],[1,2,0,0]],[[1,0,3,1],[2,3,2,2],[0,3,3,2],[0,1,0,1]],[[1,0,2,2],[2,3,2,2],[0,3,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,2,3],[0,3,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,2,2],[0,3,3,3],[0,1,0,1]],[[1,2,1,1],[1,3,1,2],[0,3,0,2],[1,2,2,2]],[[1,2,1,1],[1,3,1,2],[0,3,0,2],[1,2,3,1]],[[1,2,1,1],[1,3,1,2],[0,3,0,2],[1,3,2,1]],[[1,2,1,1],[1,3,1,2],[0,3,0,2],[2,2,2,1]],[[1,2,1,1],[1,3,1,2],[0,3,0,3],[1,2,2,1]],[[1,2,1,1],[1,3,1,2],[0,4,0,2],[1,2,2,1]],[[1,2,1,1],[1,3,1,3],[0,3,0,2],[1,2,2,1]],[[1,2,1,1],[1,4,1,2],[0,3,0,2],[1,2,2,1]],[[1,2,1,2],[1,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,3,1,1],[1,3,1,2],[0,3,0,2],[1,2,2,1]],[[2,2,1,1],[1,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[1,0,1,2],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[1,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[1,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,0,1,3],[1,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,0,1,2],[2,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,0,1,2],[1,3,2,1]],[[1,0,2,1],[2,3,2,2],[1,0,1,2],[1,2,3,1]],[[1,0,2,1],[2,3,2,2],[1,0,1,2],[1,2,2,2]],[[1,0,3,1],[2,3,2,2],[1,0,2,2],[0,2,2,1]],[[1,0,2,2],[2,3,2,2],[1,0,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,3],[1,0,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,0,2,3],[0,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,0,2,2],[0,2,3,1]],[[1,0,2,1],[2,3,2,2],[1,0,2,2],[0,2,2,2]],[[1,0,3,1],[2,3,2,2],[1,0,2,2],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[1,0,2,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[1,0,2,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[1,0,2,3],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[1,0,2,2],[1,2,1,2]],[[1,0,3,1],[2,3,2,2],[1,0,2,2],[1,2,2,0]],[[1,0,2,2],[2,3,2,2],[1,0,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,3],[1,0,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,2],[1,0,2,3],[1,2,2,0]],[[1,0,3,1],[2,3,2,2],[1,0,3,0],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[1,0,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[1,0,3,0],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[1,0,3,1],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[1,0,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[1,0,3,1],[1,2,1,1]],[[1,0,3,1],[2,3,2,2],[1,0,3,1],[1,2,2,0]],[[1,0,2,2],[2,3,2,2],[1,0,3,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,3],[1,0,3,1],[1,2,2,0]],[[1,0,3,1],[2,3,2,2],[1,0,3,2],[0,1,2,1]],[[1,0,2,2],[2,3,2,2],[1,0,3,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,3],[1,0,3,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[1,0,3,3],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[1,0,3,2],[0,1,2,2]],[[1,0,3,1],[2,3,2,2],[1,0,3,2],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[1,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[1,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,2,2],[1,0,3,3],[0,2,1,1]],[[1,0,2,1],[2,3,2,2],[1,0,3,2],[0,2,1,2]],[[1,0,3,1],[2,3,2,2],[1,0,3,2],[0,2,2,0]],[[1,0,2,2],[2,3,2,2],[1,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,3],[1,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,2],[1,0,3,3],[0,2,2,0]],[[1,2,1,1],[1,3,1,0],[1,3,3,2],[0,2,3,0]],[[1,2,1,1],[1,3,1,0],[1,3,3,2],[0,3,2,0]],[[1,2,1,1],[1,3,1,0],[1,4,3,2],[0,2,2,0]],[[1,0,3,1],[2,3,2,2],[1,1,0,2],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[1,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[1,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,1,0,3],[1,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,1,0,2],[2,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,1,0,2],[1,3,2,1]],[[1,0,2,1],[2,3,2,2],[1,1,0,2],[1,2,3,1]],[[1,0,2,1],[2,3,2,2],[1,1,0,2],[1,2,2,2]],[[1,0,3,1],[2,3,2,2],[1,1,1,2],[0,2,2,1]],[[1,0,2,2],[2,3,2,2],[1,1,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,3],[1,1,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,1,1,3],[0,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,1,1,2],[0,3,2,1]],[[1,0,2,1],[2,3,2,2],[1,1,1,2],[0,2,3,1]],[[1,0,2,1],[2,3,2,2],[1,1,1,2],[0,2,2,2]],[[1,0,3,1],[2,3,2,2],[1,1,2,2],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[1,1,2,2],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[1,1,2,2],[0,2,1,1]],[[1,0,2,1],[2,3,2,2],[1,1,2,3],[0,2,1,1]],[[1,0,2,1],[2,3,2,2],[1,1,2,2],[0,2,1,2]],[[1,0,3,1],[2,3,2,2],[1,1,2,2],[0,2,2,0]],[[1,0,2,2],[2,3,2,2],[1,1,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,3],[1,1,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,2],[1,1,2,3],[0,2,2,0]],[[1,2,1,1],[1,3,1,0],[1,3,3,1],[0,2,2,2]],[[1,2,1,1],[1,3,1,0],[1,3,3,1],[0,2,3,1]],[[1,2,1,1],[1,3,1,0],[1,3,3,1],[0,3,2,1]],[[1,2,1,1],[1,3,1,0],[1,4,3,1],[0,2,2,1]],[[1,0,3,1],[2,3,2,2],[1,1,3,0],[0,2,2,1]],[[1,0,2,2],[2,3,2,2],[1,1,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,2,3],[1,1,3,0],[0,2,2,1]],[[1,0,3,1],[2,3,2,2],[1,1,3,1],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[1,1,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[1,1,3,1],[0,2,1,1]],[[1,0,3,1],[2,3,2,2],[1,1,3,1],[0,2,2,0]],[[1,0,2,2],[2,3,2,2],[1,1,3,1],[0,2,2,0]],[[1,0,2,1],[2,3,2,3],[1,1,3,1],[0,2,2,0]],[[1,2,1,1],[1,3,1,0],[0,3,3,2],[1,2,3,0]],[[1,2,1,1],[1,3,1,0],[0,3,3,2],[1,3,2,0]],[[1,2,1,1],[1,3,1,0],[0,3,3,2],[2,2,2,0]],[[1,2,1,1],[1,3,1,0],[0,4,3,2],[1,2,2,0]],[[1,2,1,1],[1,3,1,0],[0,3,3,1],[1,2,2,2]],[[1,2,1,1],[1,3,1,0],[0,3,3,1],[1,2,3,1]],[[1,0,3,1],[2,3,2,2],[1,1,3,2],[0,0,2,1]],[[1,0,2,2],[2,3,2,2],[1,1,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,2,3],[1,1,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,2,2],[1,1,3,3],[0,0,2,1]],[[1,0,2,1],[2,3,2,2],[1,1,3,2],[0,0,2,2]],[[1,0,3,1],[2,3,2,2],[1,1,3,2],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[1,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[1,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[1,1,3,3],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[1,1,3,2],[0,1,1,2]],[[1,0,3,1],[2,3,2,2],[1,1,3,2],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[1,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[1,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,2],[1,1,3,3],[0,1,2,0]],[[1,2,1,1],[1,3,1,0],[0,3,3,1],[1,3,2,1]],[[1,2,1,1],[1,3,1,0],[0,3,3,1],[2,2,2,1]],[[1,2,1,1],[1,3,1,0],[0,4,3,1],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[1,1,3,2],[1,0,1,1]],[[1,0,2,2],[2,3,2,2],[1,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,3],[1,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[1,1,3,3],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[1,1,3,2],[1,0,1,2]],[[1,0,3,1],[2,3,2,2],[1,1,3,2],[1,0,2,0]],[[1,0,2,2],[2,3,2,2],[1,1,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,3],[1,1,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,2],[1,1,3,3],[1,0,2,0]],[[1,0,3,1],[2,3,2,2],[1,2,0,2],[0,2,2,1]],[[1,0,2,2],[2,3,2,2],[1,2,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,3],[1,2,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,2,0,3],[0,2,2,1]],[[1,0,2,1],[2,3,2,2],[1,2,0,2],[0,3,2,1]],[[1,0,2,1],[2,3,2,2],[1,2,0,2],[0,2,3,1]],[[1,0,2,1],[2,3,2,2],[1,2,0,2],[0,2,2,2]],[[1,0,3,1],[2,3,2,2],[1,2,1,2],[0,1,2,1]],[[1,0,2,2],[2,3,2,2],[1,2,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,3],[1,2,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[1,2,1,3],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[1,2,1,2],[0,1,3,1]],[[1,0,2,1],[2,3,2,2],[1,2,1,2],[0,1,2,2]],[[1,0,3,1],[2,3,2,2],[1,2,1,2],[1,0,2,1]],[[1,0,2,2],[2,3,2,2],[1,2,1,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,3],[1,2,1,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[1,2,1,3],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[1,2,1,2],[1,0,3,1]],[[1,0,2,1],[2,3,2,2],[1,2,1,2],[1,0,2,2]],[[1,0,3,1],[2,3,2,2],[1,2,2,2],[0,0,2,1]],[[1,0,2,2],[2,3,2,2],[1,2,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,2,3],[1,2,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,2,2],[1,2,2,3],[0,0,2,1]],[[1,0,2,1],[2,3,2,2],[1,2,2,2],[0,0,2,2]],[[1,0,3,1],[2,3,2,2],[1,2,2,2],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[1,2,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[1,2,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[1,2,2,3],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[1,2,2,2],[0,1,1,2]],[[1,0,3,1],[2,3,2,2],[1,2,2,2],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[1,2,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[1,2,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,2],[1,2,2,3],[0,1,2,0]],[[1,0,3,1],[2,3,2,2],[1,2,2,2],[0,2,0,1]],[[1,0,2,2],[2,3,2,2],[1,2,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,3],[1,2,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,2],[1,2,2,3],[0,2,0,1]],[[1,0,2,1],[2,3,2,2],[1,2,2,2],[0,2,0,2]],[[1,0,3,1],[2,3,2,2],[1,2,2,2],[0,2,1,0]],[[1,0,2,2],[2,3,2,2],[1,2,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,3],[1,2,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,2],[1,2,2,3],[0,2,1,0]],[[1,0,3,1],[2,3,2,2],[1,2,2,2],[1,0,1,1]],[[1,0,2,2],[2,3,2,2],[1,2,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,3],[1,2,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[1,2,2,3],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[1,2,2,2],[1,0,1,2]],[[1,0,3,1],[2,3,2,2],[1,2,2,2],[1,0,2,0]],[[1,0,2,2],[2,3,2,2],[1,2,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,3],[1,2,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,2],[1,2,2,3],[1,0,2,0]],[[1,0,3,1],[2,3,2,2],[1,2,2,2],[1,1,0,1]],[[1,0,2,2],[2,3,2,2],[1,2,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,3],[1,2,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,2],[1,2,2,3],[1,1,0,1]],[[1,0,2,1],[2,3,2,2],[1,2,2,2],[1,1,0,2]],[[1,0,3,1],[2,3,2,2],[1,2,2,2],[1,1,1,0]],[[1,0,2,2],[2,3,2,2],[1,2,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,3],[1,2,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,2],[1,2,2,3],[1,1,1,0]],[[1,2,1,1],[1,4,0,2],[2,3,3,2],[1,0,1,0]],[[1,3,1,1],[1,3,0,2],[2,3,3,2],[1,0,1,0]],[[2,2,1,1],[1,3,0,2],[2,3,3,2],[1,0,1,0]],[[1,2,1,1],[1,4,0,2],[2,3,3,2],[1,0,0,1]],[[1,3,1,1],[1,3,0,2],[2,3,3,2],[1,0,0,1]],[[2,2,1,1],[1,3,0,2],[2,3,3,2],[1,0,0,1]],[[1,0,3,1],[2,3,2,2],[1,2,3,0],[0,1,2,1]],[[1,0,2,2],[2,3,2,2],[1,2,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,2,3],[1,2,3,0],[0,1,2,1]],[[1,0,3,1],[2,3,2,2],[1,2,3,0],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[1,2,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[1,2,3,0],[0,2,1,1]],[[1,0,3,1],[2,3,2,2],[1,2,3,0],[1,0,2,1]],[[1,0,2,2],[2,3,2,2],[1,2,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,2,3],[1,2,3,0],[1,0,2,1]],[[1,0,3,1],[2,3,2,2],[1,2,3,0],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[1,2,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[1,2,3,0],[1,1,1,1]],[[1,0,3,1],[2,3,2,2],[1,2,3,1],[0,0,2,1]],[[1,0,2,2],[2,3,2,2],[1,2,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,2,3],[1,2,3,1],[0,0,2,1]],[[1,0,3,1],[2,3,2,2],[1,2,3,1],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[1,2,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[1,2,3,1],[0,1,1,1]],[[1,0,3,1],[2,3,2,2],[1,2,3,1],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[1,2,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[1,2,3,1],[0,1,2,0]],[[1,0,3,1],[2,3,2,2],[1,2,3,1],[0,2,0,1]],[[1,0,2,2],[2,3,2,2],[1,2,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,2,3],[1,2,3,1],[0,2,0,1]],[[1,0,3,1],[2,3,2,2],[1,2,3,1],[0,2,1,0]],[[1,0,2,2],[2,3,2,2],[1,2,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,2,3],[1,2,3,1],[0,2,1,0]],[[1,0,3,1],[2,3,2,2],[1,2,3,1],[1,0,1,1]],[[1,0,2,2],[2,3,2,2],[1,2,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,2,3],[1,2,3,1],[1,0,1,1]],[[1,0,3,1],[2,3,2,2],[1,2,3,1],[1,0,2,0]],[[1,0,2,2],[2,3,2,2],[1,2,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,2,3],[1,2,3,1],[1,0,2,0]],[[1,0,3,1],[2,3,2,2],[1,2,3,1],[1,1,0,1]],[[1,0,2,2],[2,3,2,2],[1,2,3,1],[1,1,0,1]],[[1,0,2,1],[2,3,2,3],[1,2,3,1],[1,1,0,1]],[[1,0,3,1],[2,3,2,2],[1,2,3,1],[1,1,1,0]],[[1,0,2,2],[2,3,2,2],[1,2,3,1],[1,1,1,0]],[[1,0,2,1],[2,3,2,3],[1,2,3,1],[1,1,1,0]],[[1,0,3,1],[2,3,2,2],[1,2,3,2],[0,1,0,1]],[[1,0,2,2],[2,3,2,2],[1,2,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,2,3],[1,2,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,2,2],[1,2,3,3],[0,1,0,1]],[[1,0,3,1],[2,3,2,2],[1,2,3,2],[1,0,0,1]],[[1,0,2,2],[2,3,2,2],[1,2,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,2,3],[1,2,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,2,2],[1,2,3,3],[1,0,0,1]],[[1,0,3,1],[2,3,2,2],[1,3,0,1],[0,2,2,1]],[[1,0,2,2],[2,3,2,2],[1,3,0,1],[0,2,2,1]],[[1,0,2,1],[2,3,2,3],[1,3,0,1],[0,2,2,1]],[[1,0,3,1],[2,3,2,2],[1,3,0,1],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[1,3,0,1],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[1,3,0,1],[1,1,2,1]],[[1,0,3,1],[2,3,2,2],[1,3,0,2],[0,1,2,1]],[[1,0,2,2],[2,3,2,2],[1,3,0,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,3],[1,3,0,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[1,3,0,3],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[1,3,0,2],[0,1,3,1]],[[1,0,2,1],[2,3,2,2],[1,3,0,2],[0,1,2,2]],[[1,0,3,1],[2,3,2,2],[1,3,0,2],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[1,3,0,2],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[1,3,0,2],[0,2,1,1]],[[1,0,2,1],[2,3,2,2],[1,3,0,3],[0,2,1,1]],[[1,0,2,1],[2,3,2,2],[1,3,0,2],[0,2,1,2]],[[1,0,3,1],[2,3,2,2],[1,3,0,2],[0,2,2,0]],[[1,0,2,2],[2,3,2,2],[1,3,0,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,3],[1,3,0,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,2],[1,3,0,3],[0,2,2,0]],[[1,0,3,1],[2,3,2,2],[1,3,0,2],[1,0,2,1]],[[1,0,2,2],[2,3,2,2],[1,3,0,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,3],[1,3,0,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[1,3,0,3],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[1,3,0,2],[1,0,3,1]],[[1,0,2,1],[2,3,2,2],[1,3,0,2],[1,0,2,2]],[[1,0,3,1],[2,3,2,2],[1,3,0,2],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[1,3,0,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[1,3,0,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[1,3,0,3],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[1,3,0,2],[1,1,1,2]],[[1,0,3,1],[2,3,2,2],[1,3,0,2],[1,1,2,0]],[[1,0,2,2],[2,3,2,2],[1,3,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,3],[1,3,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,2],[1,3,0,3],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[1,3,1,0],[0,2,2,1]],[[1,0,2,2],[2,3,2,2],[1,3,1,0],[0,2,2,1]],[[1,0,2,1],[2,3,2,3],[1,3,1,0],[0,2,2,1]],[[1,0,3,1],[2,3,2,2],[1,3,1,0],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[1,3,1,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[1,3,1,0],[1,1,2,1]],[[1,0,3,1],[2,3,2,2],[1,3,1,1],[0,2,2,0]],[[1,0,2,2],[2,3,2,2],[1,3,1,1],[0,2,2,0]],[[1,0,2,1],[2,3,2,3],[1,3,1,1],[0,2,2,0]],[[1,0,3,1],[2,3,2,2],[1,3,1,1],[1,1,2,0]],[[1,0,2,2],[2,3,2,2],[1,3,1,1],[1,1,2,0]],[[1,0,2,1],[2,3,2,3],[1,3,1,1],[1,1,2,0]],[[1,2,1,1],[1,4,0,2],[2,2,3,2],[1,2,0,0]],[[1,3,1,1],[1,3,0,2],[2,2,3,2],[1,2,0,0]],[[2,2,1,1],[1,3,0,2],[2,2,3,2],[1,2,0,0]],[[1,0,3,1],[2,3,2,2],[1,3,1,2],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[1,3,1,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[1,3,1,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[1,3,1,3],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[1,3,1,2],[0,1,1,2]],[[1,0,3,1],[2,3,2,2],[1,3,1,2],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[1,3,1,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[1,3,1,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,2],[1,3,1,3],[0,1,2,0]],[[1,0,3,1],[2,3,2,2],[1,3,1,2],[0,2,0,1]],[[1,0,2,2],[2,3,2,2],[1,3,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,3],[1,3,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,2],[1,3,1,3],[0,2,0,1]],[[1,0,2,1],[2,3,2,2],[1,3,1,2],[0,2,0,2]],[[1,0,3,1],[2,3,2,2],[1,3,1,2],[0,2,1,0]],[[1,0,2,2],[2,3,2,2],[1,3,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,3],[1,3,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,2],[1,3,1,3],[0,2,1,0]],[[1,2,1,1],[1,4,0,2],[2,2,3,2],[1,1,1,0]],[[1,3,1,1],[1,3,0,2],[2,2,3,2],[1,1,1,0]],[[2,2,1,1],[1,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,2,1,1],[1,4,0,2],[2,2,3,2],[1,1,0,1]],[[1,3,1,1],[1,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,0,3,1],[2,3,2,2],[1,3,1,2],[1,0,1,1]],[[1,0,2,2],[2,3,2,2],[1,3,1,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,3],[1,3,1,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[1,3,1,3],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[1,3,1,2],[1,0,1,2]],[[1,0,3,1],[2,3,2,2],[1,3,1,2],[1,0,2,0]],[[1,0,2,2],[2,3,2,2],[1,3,1,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,3],[1,3,1,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,2],[1,3,1,3],[1,0,2,0]],[[1,0,3,1],[2,3,2,2],[1,3,1,2],[1,1,0,1]],[[1,0,2,2],[2,3,2,2],[1,3,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,3],[1,3,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,2],[1,3,1,3],[1,1,0,1]],[[1,0,2,1],[2,3,2,2],[1,3,1,2],[1,1,0,2]],[[1,0,3,1],[2,3,2,2],[1,3,1,2],[1,1,1,0]],[[1,0,2,2],[2,3,2,2],[1,3,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,3],[1,3,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,2],[1,3,1,3],[1,1,1,0]],[[2,2,1,1],[1,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,2,1,1],[1,4,0,2],[2,2,3,2],[1,0,2,0]],[[1,3,1,1],[1,3,0,2],[2,2,3,2],[1,0,2,0]],[[2,2,1,1],[1,3,0,2],[2,2,3,2],[1,0,2,0]],[[1,2,1,1],[1,4,0,2],[2,2,3,2],[1,0,1,1]],[[1,3,1,1],[1,3,0,2],[2,2,3,2],[1,0,1,1]],[[2,2,1,1],[1,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,0,3,1],[2,3,2,2],[1,3,1,2],[1,2,0,0]],[[1,0,2,2],[2,3,2,2],[1,3,1,2],[1,2,0,0]],[[1,0,2,1],[2,3,2,3],[1,3,1,2],[1,2,0,0]],[[1,2,1,1],[1,4,0,2],[2,2,3,2],[0,2,1,0]],[[1,3,1,1],[1,3,0,2],[2,2,3,2],[0,2,1,0]],[[2,2,1,1],[1,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,2,1,1],[1,4,0,2],[2,2,3,2],[0,2,0,1]],[[1,0,3,1],[2,3,2,2],[1,3,2,0],[0,1,2,1]],[[1,0,2,2],[2,3,2,2],[1,3,2,0],[0,1,2,1]],[[1,0,2,1],[2,3,2,3],[1,3,2,0],[0,1,2,1]],[[1,0,3,1],[2,3,2,2],[1,3,2,0],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[1,3,2,0],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[1,3,2,0],[0,2,1,1]],[[1,0,3,1],[2,3,2,2],[1,3,2,0],[1,0,2,1]],[[1,0,2,2],[2,3,2,2],[1,3,2,0],[1,0,2,1]],[[1,0,2,1],[2,3,2,3],[1,3,2,0],[1,0,2,1]],[[1,0,3,1],[2,3,2,2],[1,3,2,0],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[1,3,2,0],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[1,3,2,0],[1,1,1,1]],[[1,3,1,1],[1,3,0,2],[2,2,3,2],[0,2,0,1]],[[2,2,1,1],[1,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,2,1,1],[1,4,0,2],[2,2,3,2],[0,1,2,0]],[[1,3,1,1],[1,3,0,2],[2,2,3,2],[0,1,2,0]],[[2,2,1,1],[1,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,2,1,1],[1,4,0,2],[2,2,3,2],[0,1,1,1]],[[1,3,1,1],[1,3,0,2],[2,2,3,2],[0,1,1,1]],[[2,2,1,1],[1,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,0,3,1],[2,3,2,2],[1,3,2,1],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[1,3,2,1],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[1,3,2,1],[0,1,1,1]],[[1,0,3,1],[2,3,2,2],[1,3,2,1],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[1,3,2,1],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[1,3,2,1],[0,1,2,0]],[[1,0,3,1],[2,3,2,2],[1,3,2,1],[0,2,0,1]],[[1,0,2,2],[2,3,2,2],[1,3,2,1],[0,2,0,1]],[[1,0,2,1],[2,3,2,3],[1,3,2,1],[0,2,0,1]],[[1,0,3,1],[2,3,2,2],[1,3,2,1],[0,2,1,0]],[[1,0,2,2],[2,3,2,2],[1,3,2,1],[0,2,1,0]],[[1,0,2,1],[2,3,2,3],[1,3,2,1],[0,2,1,0]],[[1,2,1,1],[1,4,0,2],[2,2,3,1],[1,1,1,1]],[[1,0,3,1],[2,3,2,2],[1,3,2,1],[1,0,1,1]],[[1,0,2,2],[2,3,2,2],[1,3,2,1],[1,0,1,1]],[[1,0,2,1],[2,3,2,3],[1,3,2,1],[1,0,1,1]],[[1,0,3,1],[2,3,2,2],[1,3,2,1],[1,0,2,0]],[[1,0,2,2],[2,3,2,2],[1,3,2,1],[1,0,2,0]],[[1,0,2,1],[2,3,2,3],[1,3,2,1],[1,0,2,0]],[[1,0,3,1],[2,3,2,2],[1,3,2,1],[1,1,0,1]],[[1,0,2,2],[2,3,2,2],[1,3,2,1],[1,1,0,1]],[[1,0,2,1],[2,3,2,3],[1,3,2,1],[1,1,0,1]],[[1,0,3,1],[2,3,2,2],[1,3,2,1],[1,1,1,0]],[[1,0,2,2],[2,3,2,2],[1,3,2,1],[1,1,1,0]],[[1,0,2,1],[2,3,2,3],[1,3,2,1],[1,1,1,0]],[[1,3,1,1],[1,3,0,2],[2,2,3,1],[1,1,1,1]],[[2,2,1,1],[1,3,0,2],[2,2,3,1],[1,1,1,1]],[[1,2,1,1],[1,4,0,2],[2,2,3,1],[1,0,2,1]],[[1,3,1,1],[1,3,0,2],[2,2,3,1],[1,0,2,1]],[[2,2,1,1],[1,3,0,2],[2,2,3,1],[1,0,2,1]],[[1,0,3,1],[2,3,2,2],[1,3,2,1],[1,2,0,0]],[[1,0,2,2],[2,3,2,2],[1,3,2,1],[1,2,0,0]],[[1,0,2,1],[2,3,2,3],[1,3,2,1],[1,2,0,0]],[[1,2,1,1],[1,4,0,2],[2,2,3,1],[0,2,1,1]],[[1,3,1,1],[1,3,0,2],[2,2,3,1],[0,2,1,1]],[[2,2,1,1],[1,3,0,2],[2,2,3,1],[0,2,1,1]],[[1,2,1,1],[1,4,0,2],[2,2,3,1],[0,1,2,1]],[[1,3,1,1],[1,3,0,2],[2,2,3,1],[0,1,2,1]],[[2,2,1,1],[1,3,0,2],[2,2,3,1],[0,1,2,1]],[[1,2,1,1],[1,4,0,2],[2,2,2,2],[1,1,2,0]],[[1,3,1,1],[1,3,0,2],[2,2,2,2],[1,1,2,0]],[[2,2,1,1],[1,3,0,2],[2,2,2,2],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[1,3,2,2],[0,0,1,1]],[[1,0,2,2],[2,3,2,2],[1,3,2,2],[0,0,1,1]],[[1,0,2,1],[2,3,2,3],[1,3,2,2],[0,0,1,1]],[[1,0,2,1],[2,3,2,2],[1,3,2,3],[0,0,1,1]],[[1,0,2,1],[2,3,2,2],[1,3,2,2],[0,0,1,2]],[[1,0,3,1],[2,3,2,2],[1,3,2,2],[0,0,2,0]],[[1,0,2,2],[2,3,2,2],[1,3,2,2],[0,0,2,0]],[[1,0,2,1],[2,3,2,3],[1,3,2,2],[0,0,2,0]],[[1,0,2,1],[2,3,2,2],[1,3,2,3],[0,0,2,0]],[[1,2,1,1],[1,4,0,2],[2,2,2,2],[0,2,2,0]],[[1,3,1,1],[1,3,0,2],[2,2,2,2],[0,2,2,0]],[[2,2,1,1],[1,3,0,2],[2,2,2,2],[0,2,2,0]],[[1,2,1,1],[1,4,0,2],[2,2,2,1],[1,1,2,1]],[[1,3,1,1],[1,3,0,2],[2,2,2,1],[1,1,2,1]],[[2,2,1,1],[1,3,0,2],[2,2,2,1],[1,1,2,1]],[[1,2,1,1],[1,4,0,2],[2,2,2,1],[0,2,2,1]],[[1,3,1,1],[1,3,0,2],[2,2,2,1],[0,2,2,1]],[[2,2,1,1],[1,3,0,2],[2,2,2,1],[0,2,2,1]],[[1,2,1,1],[1,4,0,2],[2,2,1,2],[1,1,2,1]],[[1,3,1,1],[1,3,0,2],[2,2,1,2],[1,1,2,1]],[[2,2,1,1],[1,3,0,2],[2,2,1,2],[1,1,2,1]],[[1,2,1,1],[1,4,0,2],[2,2,1,2],[0,2,2,1]],[[1,3,1,1],[1,3,0,2],[2,2,1,2],[0,2,2,1]],[[2,2,1,1],[1,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,2,1,1],[1,4,0,2],[2,1,3,2],[1,2,1,0]],[[1,3,1,1],[1,3,0,2],[2,1,3,2],[1,2,1,0]],[[2,2,1,1],[1,3,0,2],[2,1,3,2],[1,2,1,0]],[[1,2,1,1],[1,4,0,2],[2,1,3,2],[1,2,0,1]],[[1,3,1,1],[1,3,0,2],[2,1,3,2],[1,2,0,1]],[[2,2,1,1],[1,3,0,2],[2,1,3,2],[1,2,0,1]],[[1,2,1,1],[1,4,0,2],[2,1,3,1],[1,2,1,1]],[[1,3,1,1],[1,3,0,2],[2,1,3,1],[1,2,1,1]],[[2,2,1,1],[1,3,0,2],[2,1,3,1],[1,2,1,1]],[[1,2,1,1],[1,4,0,2],[2,1,2,2],[1,2,2,0]],[[1,3,1,1],[1,3,0,2],[2,1,2,2],[1,2,2,0]],[[2,2,1,1],[1,3,0,2],[2,1,2,2],[1,2,2,0]],[[1,2,1,1],[1,4,0,2],[2,1,2,1],[1,2,2,1]],[[1,3,1,1],[1,3,0,2],[2,1,2,1],[1,2,2,1]],[[2,2,1,1],[1,3,0,2],[2,1,2,1],[1,2,2,1]],[[1,2,1,1],[1,4,0,2],[2,1,1,2],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[1,3,3,0],[0,0,2,1]],[[1,0,2,2],[2,3,2,2],[1,3,3,0],[0,0,2,1]],[[1,0,2,1],[2,3,2,3],[1,3,3,0],[0,0,2,1]],[[1,3,1,1],[1,3,0,2],[2,1,1,2],[1,2,2,1]],[[2,2,1,1],[1,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,2,1,1],[1,4,0,2],[2,0,3,2],[1,2,2,0]],[[1,3,1,1],[1,3,0,2],[2,0,3,2],[1,2,2,0]],[[2,2,1,1],[1,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,4,0,2],[2,0,3,1],[1,2,2,1]],[[1,3,1,1],[1,3,0,2],[2,0,3,1],[1,2,2,1]],[[2,2,1,1],[1,3,0,2],[2,0,3,1],[1,2,2,1]],[[1,2,1,1],[1,4,0,2],[2,0,2,2],[1,2,2,1]],[[1,3,1,1],[1,3,0,2],[2,0,2,2],[1,2,2,1]],[[2,2,1,1],[1,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,2,1,1],[1,3,0,2],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[1,4,0,2],[1,3,3,2],[1,2,0,0]],[[1,3,1,1],[1,3,0,2],[1,3,3,2],[1,2,0,0]],[[2,2,1,1],[1,3,0,2],[1,3,3,2],[1,2,0,0]],[[1,0,3,1],[2,3,2,2],[1,3,3,1],[0,0,1,1]],[[1,0,2,2],[2,3,2,2],[1,3,3,1],[0,0,1,1]],[[1,0,2,1],[2,3,2,3],[1,3,3,1],[0,0,1,1]],[[1,0,3,1],[2,3,2,2],[1,3,3,1],[0,0,2,0]],[[1,0,2,2],[2,3,2,2],[1,3,3,1],[0,0,2,0]],[[1,0,2,1],[2,3,2,3],[1,3,3,1],[0,0,2,0]],[[1,0,3,1],[2,3,2,2],[1,3,3,1],[0,2,0,0]],[[1,0,2,2],[2,3,2,2],[1,3,3,1],[0,2,0,0]],[[1,0,2,1],[2,3,2,3],[1,3,3,1],[0,2,0,0]],[[1,2,1,1],[1,3,0,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[1,3,0,2],[1,3,4,2],[1,1,1,0]],[[1,2,1,1],[1,3,0,2],[1,4,3,2],[1,1,1,0]],[[1,2,1,1],[1,3,0,3],[1,3,3,2],[1,1,1,0]],[[1,2,1,1],[1,4,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,1,2],[1,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,3,1,1],[1,3,0,2],[1,3,3,2],[1,1,1,0]],[[2,2,1,1],[1,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,2,1,1],[1,3,0,2],[1,3,3,2],[1,1,0,2]],[[1,2,1,1],[1,3,0,2],[1,3,3,3],[1,1,0,1]],[[1,2,1,1],[1,3,0,2],[1,3,4,2],[1,1,0,1]],[[1,2,1,1],[1,3,0,2],[1,4,3,2],[1,1,0,1]],[[1,2,1,1],[1,3,0,3],[1,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,4,0,2],[1,3,3,2],[1,1,0,1]],[[1,2,1,2],[1,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,3,1,1],[1,3,0,2],[1,3,3,2],[1,1,0,1]],[[2,2,1,1],[1,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,3,0,2],[1,3,3,2],[1,0,3,0]],[[1,2,1,1],[1,3,0,2],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[1,3,0,2],[1,3,4,2],[1,0,2,0]],[[1,2,1,1],[1,3,0,2],[1,4,3,2],[1,0,2,0]],[[1,2,1,1],[1,3,0,3],[1,3,3,2],[1,0,2,0]],[[1,2,1,1],[1,4,0,2],[1,3,3,2],[1,0,2,0]],[[1,2,1,2],[1,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,3,1,1],[1,3,0,2],[1,3,3,2],[1,0,2,0]],[[2,2,1,1],[1,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,0,3,1],[2,3,2,2],[1,3,3,1],[1,1,0,0]],[[1,0,2,2],[2,3,2,2],[1,3,3,1],[1,1,0,0]],[[1,0,2,1],[2,3,2,3],[1,3,3,1],[1,1,0,0]],[[1,2,1,1],[1,3,0,2],[1,3,3,2],[1,0,1,2]],[[1,2,1,1],[1,3,0,2],[1,3,3,3],[1,0,1,1]],[[1,2,1,1],[1,3,0,2],[1,3,4,2],[1,0,1,1]],[[1,2,1,1],[1,3,0,2],[1,4,3,2],[1,0,1,1]],[[1,2,1,1],[1,3,0,3],[1,3,3,2],[1,0,1,1]],[[1,2,1,1],[1,4,0,2],[1,3,3,2],[1,0,1,1]],[[1,2,1,2],[1,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,3,1,1],[1,3,0,2],[1,3,3,2],[1,0,1,1]],[[2,2,1,1],[1,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,2,1,1],[1,3,0,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[1,3,0,2],[1,3,3,3],[0,2,1,0]],[[1,2,1,1],[1,3,0,2],[1,3,4,2],[0,2,1,0]],[[1,2,1,1],[1,3,0,2],[1,4,3,2],[0,2,1,0]],[[1,2,1,1],[1,3,0,3],[1,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,4,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,1,2],[1,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,3,1,1],[1,3,0,2],[1,3,3,2],[0,2,1,0]],[[2,2,1,1],[1,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,3,0,2],[1,3,3,2],[0,2,0,2]],[[1,2,1,1],[1,3,0,2],[1,3,3,2],[0,3,0,1]],[[1,2,1,1],[1,3,0,2],[1,3,3,3],[0,2,0,1]],[[1,2,1,1],[1,3,0,2],[1,3,4,2],[0,2,0,1]],[[1,2,1,1],[1,3,0,2],[1,4,3,2],[0,2,0,1]],[[1,2,1,1],[1,3,0,3],[1,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,4,0,2],[1,3,3,2],[0,2,0,1]],[[1,2,1,2],[1,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,3,1,1],[1,3,0,2],[1,3,3,2],[0,2,0,1]],[[2,2,1,1],[1,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,3,0,2],[1,3,3,2],[0,1,3,0]],[[1,2,1,1],[1,3,0,2],[1,3,3,3],[0,1,2,0]],[[1,2,1,1],[1,3,0,2],[1,3,4,2],[0,1,2,0]],[[1,2,1,1],[1,3,0,2],[1,4,3,2],[0,1,2,0]],[[1,2,1,1],[1,3,0,3],[1,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,4,0,2],[1,3,3,2],[0,1,2,0]],[[1,2,1,2],[1,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,3,1,1],[1,3,0,2],[1,3,3,2],[0,1,2,0]],[[2,2,1,1],[1,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,3,0,2],[1,3,3,2],[0,1,1,2]],[[1,2,1,1],[1,3,0,2],[1,3,3,3],[0,1,1,1]],[[1,2,1,1],[1,3,0,2],[1,3,4,2],[0,1,1,1]],[[1,2,1,1],[1,3,0,2],[1,4,3,2],[0,1,1,1]],[[1,2,1,1],[1,3,0,3],[1,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,4,0,2],[1,3,3,2],[0,1,1,1]],[[1,2,1,2],[1,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,3,1,1],[1,3,0,2],[1,3,3,2],[0,1,1,1]],[[2,2,1,1],[1,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,3,0,2],[1,3,3,2],[0,0,2,2]],[[1,2,1,1],[1,3,0,2],[1,3,3,3],[0,0,2,1]],[[1,2,1,1],[1,3,0,2],[1,3,4,2],[0,0,2,1]],[[1,2,1,1],[1,3,0,3],[1,3,3,2],[0,0,2,1]],[[1,0,3,1],[2,3,2,2],[1,3,3,2],[0,0,0,1]],[[1,0,2,2],[2,3,2,2],[1,3,3,2],[0,0,0,1]],[[1,0,2,1],[2,3,2,3],[1,3,3,2],[0,0,0,1]],[[1,0,2,1],[2,3,2,2],[1,3,3,3],[0,0,0,1]],[[1,2,1,2],[1,3,0,2],[1,3,3,2],[0,0,2,1]],[[1,2,1,1],[1,3,0,2],[1,3,4,1],[1,1,1,1]],[[1,2,1,1],[1,3,0,2],[1,4,3,1],[1,1,1,1]],[[1,2,1,1],[1,4,0,2],[1,3,3,1],[1,1,1,1]],[[1,3,1,1],[1,3,0,2],[1,3,3,1],[1,1,1,1]],[[2,2,1,1],[1,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,3,0,2],[1,3,3,1],[1,0,2,2]],[[1,2,1,1],[1,3,0,2],[1,3,3,1],[1,0,3,1]],[[1,2,1,1],[1,3,0,2],[1,3,4,1],[1,0,2,1]],[[1,2,1,1],[1,3,0,2],[1,4,3,1],[1,0,2,1]],[[1,2,1,1],[1,4,0,2],[1,3,3,1],[1,0,2,1]],[[1,3,1,1],[1,3,0,2],[1,3,3,1],[1,0,2,1]],[[2,2,1,1],[1,3,0,2],[1,3,3,1],[1,0,2,1]],[[1,2,1,1],[1,3,0,2],[1,3,3,1],[0,3,1,1]],[[1,2,1,1],[1,3,0,2],[1,3,4,1],[0,2,1,1]],[[1,2,1,1],[1,3,0,2],[1,4,3,1],[0,2,1,1]],[[1,2,1,1],[1,4,0,2],[1,3,3,1],[0,2,1,1]],[[1,3,1,1],[1,3,0,2],[1,3,3,1],[0,2,1,1]],[[2,2,1,1],[1,3,0,2],[1,3,3,1],[0,2,1,1]],[[1,2,1,1],[1,3,0,2],[1,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,3,0,2],[1,3,3,1],[0,1,3,1]],[[1,2,1,1],[1,3,0,2],[1,3,4,1],[0,1,2,1]],[[1,2,1,1],[1,3,0,2],[1,4,3,1],[0,1,2,1]],[[1,2,1,1],[1,4,0,2],[1,3,3,1],[0,1,2,1]],[[1,3,1,1],[1,3,0,2],[1,3,3,1],[0,1,2,1]],[[2,2,1,1],[1,3,0,2],[1,3,3,1],[0,1,2,1]],[[1,2,1,1],[1,3,0,2],[1,4,2,2],[1,1,2,0]],[[1,2,1,1],[1,4,0,2],[1,3,2,2],[1,1,2,0]],[[1,3,1,1],[1,3,0,2],[1,3,2,2],[1,1,2,0]],[[2,2,1,1],[1,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,2,1,1],[1,3,0,2],[1,3,2,2],[1,0,2,2]],[[1,2,1,1],[1,3,0,2],[1,3,2,2],[1,0,3,1]],[[1,2,1,1],[1,3,0,2],[1,3,2,3],[1,0,2,1]],[[1,2,1,1],[1,3,0,3],[1,3,2,2],[1,0,2,1]],[[1,2,1,2],[1,3,0,2],[1,3,2,2],[1,0,2,1]],[[1,2,1,1],[1,3,0,2],[1,3,2,2],[0,2,3,0]],[[1,2,1,1],[1,3,0,2],[1,3,2,2],[0,3,2,0]],[[1,2,1,1],[1,3,0,2],[1,4,2,2],[0,2,2,0]],[[1,2,1,1],[1,4,0,2],[1,3,2,2],[0,2,2,0]],[[1,3,1,1],[1,3,0,2],[1,3,2,2],[0,2,2,0]],[[2,2,1,1],[1,3,0,2],[1,3,2,2],[0,2,2,0]],[[1,2,1,1],[1,3,0,2],[1,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,3,0,2],[1,3,2,2],[0,1,3,1]],[[1,2,1,1],[1,3,0,2],[1,3,2,3],[0,1,2,1]],[[1,2,1,1],[1,3,0,3],[1,3,2,2],[0,1,2,1]],[[1,2,1,2],[1,3,0,2],[1,3,2,2],[0,1,2,1]],[[1,2,1,1],[1,3,0,2],[1,4,2,1],[1,1,2,1]],[[1,2,1,1],[1,4,0,2],[1,3,2,1],[1,1,2,1]],[[1,3,1,1],[1,3,0,2],[1,3,2,1],[1,1,2,1]],[[2,2,1,1],[1,3,0,2],[1,3,2,1],[1,1,2,1]],[[1,2,1,1],[1,3,0,2],[1,3,2,1],[0,2,2,2]],[[1,2,1,1],[1,3,0,2],[1,3,2,1],[0,2,3,1]],[[1,2,1,1],[1,3,0,2],[1,3,2,1],[0,3,2,1]],[[1,2,1,1],[1,3,0,2],[1,4,2,1],[0,2,2,1]],[[1,2,1,1],[1,4,0,2],[1,3,2,1],[0,2,2,1]],[[1,3,1,1],[1,3,0,2],[1,3,2,1],[0,2,2,1]],[[2,2,1,1],[1,3,0,2],[1,3,2,1],[0,2,2,1]],[[1,2,1,1],[1,3,0,2],[1,4,1,2],[1,1,2,1]],[[1,2,1,1],[1,4,0,2],[1,3,1,2],[1,1,2,1]],[[1,3,1,1],[1,3,0,2],[1,3,1,2],[1,1,2,1]],[[2,2,1,1],[1,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,2,1,1],[1,3,0,2],[1,3,1,2],[0,2,2,2]],[[1,2,1,1],[1,3,0,2],[1,3,1,2],[0,2,3,1]],[[1,2,1,1],[1,3,0,2],[1,3,1,2],[0,3,2,1]],[[1,2,1,1],[1,3,0,2],[1,3,1,3],[0,2,2,1]],[[1,2,1,1],[1,3,0,2],[1,4,1,2],[0,2,2,1]],[[1,2,1,1],[1,3,0,3],[1,3,1,2],[0,2,2,1]],[[1,2,1,1],[1,4,0,2],[1,3,1,2],[0,2,2,1]],[[1,2,1,2],[1,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,3,1,1],[1,3,0,2],[1,3,1,2],[0,2,2,1]],[[2,2,1,1],[1,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,2,1,1],[1,3,0,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[1,3,0,2],[1,2,3,2],[0,3,2,0]],[[1,2,1,1],[1,3,0,2],[1,2,3,3],[0,2,2,0]],[[1,2,1,1],[1,3,0,2],[1,2,4,2],[0,2,2,0]],[[1,2,1,1],[1,3,0,3],[1,2,3,2],[0,2,2,0]],[[1,2,1,2],[1,3,0,2],[1,2,3,2],[0,2,2,0]],[[1,2,1,1],[1,3,0,2],[1,2,3,2],[0,2,1,2]],[[1,2,1,1],[1,3,0,2],[1,2,3,3],[0,2,1,1]],[[1,2,1,1],[1,3,0,2],[1,2,4,2],[0,2,1,1]],[[1,2,1,1],[1,3,0,3],[1,2,3,2],[0,2,1,1]],[[1,2,1,2],[1,3,0,2],[1,2,3,2],[0,2,1,1]],[[1,2,1,1],[1,3,0,2],[1,2,3,1],[0,2,2,2]],[[1,2,1,1],[1,3,0,2],[1,2,3,1],[0,2,3,1]],[[1,2,1,1],[1,3,0,2],[1,2,3,1],[0,3,2,1]],[[1,2,1,1],[1,3,0,2],[1,2,4,1],[0,2,2,1]],[[1,2,1,1],[1,3,0,2],[1,2,2,2],[0,2,2,2]],[[1,2,1,1],[1,3,0,2],[1,2,2,2],[0,2,3,1]],[[1,2,1,1],[1,3,0,2],[1,2,2,2],[0,3,2,1]],[[1,2,1,1],[1,3,0,2],[1,2,2,3],[0,2,2,1]],[[1,2,1,1],[1,3,0,3],[1,2,2,2],[0,2,2,1]],[[1,2,1,2],[1,3,0,2],[1,2,2,2],[0,2,2,1]],[[1,2,1,1],[1,3,0,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[1,3,0,2],[0,3,3,2],[2,2,1,0]],[[1,2,1,1],[1,3,0,2],[0,3,3,3],[1,2,1,0]],[[1,2,1,1],[1,3,0,2],[0,3,4,2],[1,2,1,0]],[[1,2,1,1],[1,3,0,2],[0,4,3,2],[1,2,1,0]],[[1,2,1,1],[1,3,0,3],[0,3,3,2],[1,2,1,0]],[[1,2,1,1],[1,4,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,1,2],[1,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,3,1,1],[1,3,0,2],[0,3,3,2],[1,2,1,0]],[[2,2,1,1],[1,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,2,1,1],[1,3,0,2],[0,3,3,2],[1,2,0,2]],[[1,2,1,1],[1,3,0,2],[0,3,3,2],[1,3,0,1]],[[1,2,1,1],[1,3,0,2],[0,3,3,2],[2,2,0,1]],[[1,2,1,1],[1,3,0,2],[0,3,3,3],[1,2,0,1]],[[1,2,1,1],[1,3,0,2],[0,3,4,2],[1,2,0,1]],[[1,2,1,1],[1,3,0,2],[0,4,3,2],[1,2,0,1]],[[1,2,1,1],[1,3,0,3],[0,3,3,2],[1,2,0,1]],[[1,2,1,1],[1,4,0,2],[0,3,3,2],[1,2,0,1]],[[1,2,1,2],[1,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,3,1,1],[1,3,0,2],[0,3,3,2],[1,2,0,1]],[[2,2,1,1],[1,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,0,3,1],[2,3,2,2],[2,0,1,1],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[2,0,1,1],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[2,0,1,1],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[2,0,1,2],[0,2,2,1]],[[1,0,2,2],[2,3,2,2],[2,0,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,3],[2,0,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,2],[2,0,1,3],[0,2,2,1]],[[1,0,2,1],[2,3,2,2],[2,0,1,2],[0,3,2,1]],[[1,0,2,1],[2,3,2,2],[2,0,1,2],[0,2,3,1]],[[1,0,2,1],[2,3,2,2],[2,0,1,2],[0,2,2,2]],[[1,0,3,1],[2,3,2,2],[2,0,1,2],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[2,0,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[2,0,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,2],[2,0,1,3],[1,1,2,1]],[[1,0,2,1],[2,3,2,2],[2,0,1,2],[1,1,3,1]],[[1,0,2,1],[2,3,2,2],[2,0,1,2],[1,1,2,2]],[[1,0,3,1],[2,3,2,2],[2,0,1,2],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[2,0,1,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[2,0,1,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[2,0,1,3],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[2,0,1,2],[1,2,1,2]],[[1,0,3,1],[2,3,2,2],[2,0,1,2],[1,2,2,0]],[[1,0,2,2],[2,3,2,2],[2,0,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,3],[2,0,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,2],[2,0,1,3],[1,2,2,0]],[[1,0,3,1],[2,3,2,2],[2,0,2,0],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[2,0,2,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[2,0,2,0],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[2,0,2,1],[1,2,2,0]],[[1,0,2,2],[2,3,2,2],[2,0,2,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,3],[2,0,2,1],[1,2,2,0]],[[1,0,3,1],[2,3,2,2],[2,0,2,2],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[2,0,2,2],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[2,0,2,2],[0,2,1,1]],[[1,0,2,1],[2,3,2,2],[2,0,2,3],[0,2,1,1]],[[1,0,2,1],[2,3,2,2],[2,0,2,2],[0,2,1,2]],[[1,0,3,1],[2,3,2,2],[2,0,2,2],[0,2,2,0]],[[1,0,2,2],[2,3,2,2],[2,0,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,3],[2,0,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,2],[2,0,2,3],[0,2,2,0]],[[1,0,3,1],[2,3,2,2],[2,0,2,2],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[2,0,2,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[2,0,2,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[2,0,2,3],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[2,0,2,2],[1,1,1,2]],[[1,0,3,1],[2,3,2,2],[2,0,2,2],[1,1,2,0]],[[1,0,2,2],[2,3,2,2],[2,0,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,3],[2,0,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,2],[2,0,2,3],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[2,0,2,2],[1,2,0,1]],[[1,0,2,2],[2,3,2,2],[2,0,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,3],[2,0,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,2],[2,0,2,3],[1,2,0,1]],[[1,0,2,1],[2,3,2,2],[2,0,2,2],[1,2,0,2]],[[1,0,3,1],[2,3,2,2],[2,0,2,2],[1,2,1,0]],[[1,0,2,2],[2,3,2,2],[2,0,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,3],[2,0,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,2],[2,0,2,3],[1,2,1,0]],[[1,2,1,1],[1,3,0,2],[0,3,3,2],[1,1,3,0]],[[1,2,1,1],[1,3,0,2],[0,3,3,3],[1,1,2,0]],[[1,2,1,1],[1,3,0,2],[0,3,4,2],[1,1,2,0]],[[1,2,1,1],[1,3,0,2],[0,4,3,2],[1,1,2,0]],[[1,2,1,1],[1,3,0,3],[0,3,3,2],[1,1,2,0]],[[1,2,1,1],[1,4,0,2],[0,3,3,2],[1,1,2,0]],[[1,2,1,2],[1,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,3,1,1],[1,3,0,2],[0,3,3,2],[1,1,2,0]],[[2,2,1,1],[1,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[2,0,3,0],[0,2,2,1]],[[1,0,2,2],[2,3,2,2],[2,0,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,2,3],[2,0,3,0],[0,2,2,1]],[[1,0,3,1],[2,3,2,2],[2,0,3,0],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[2,0,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[2,0,3,0],[1,1,2,1]],[[1,0,3,1],[2,3,2,2],[2,0,3,0],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[2,0,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[2,0,3,0],[1,2,1,1]],[[1,0,3,1],[2,3,2,2],[2,0,3,1],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[2,0,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[2,0,3,1],[0,2,1,1]],[[1,0,3,1],[2,3,2,2],[2,0,3,1],[0,2,2,0]],[[1,0,2,2],[2,3,2,2],[2,0,3,1],[0,2,2,0]],[[1,0,2,1],[2,3,2,3],[2,0,3,1],[0,2,2,0]],[[1,0,3,1],[2,3,2,2],[2,0,3,1],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[2,0,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[2,0,3,1],[1,1,1,1]],[[1,0,3,1],[2,3,2,2],[2,0,3,1],[1,1,2,0]],[[1,0,2,2],[2,3,2,2],[2,0,3,1],[1,1,2,0]],[[1,0,2,1],[2,3,2,3],[2,0,3,1],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[2,0,3,1],[1,2,0,1]],[[1,0,2,2],[2,3,2,2],[2,0,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,3],[2,0,3,1],[1,2,0,1]],[[1,0,3,1],[2,3,2,2],[2,0,3,1],[1,2,1,0]],[[1,0,2,2],[2,3,2,2],[2,0,3,1],[1,2,1,0]],[[1,0,2,1],[2,3,2,3],[2,0,3,1],[1,2,1,0]],[[1,2,1,1],[1,3,0,2],[0,3,3,2],[1,1,1,2]],[[1,2,1,1],[1,3,0,2],[0,3,3,3],[1,1,1,1]],[[1,2,1,1],[1,3,0,2],[0,3,4,2],[1,1,1,1]],[[1,2,1,1],[1,3,0,2],[0,4,3,2],[1,1,1,1]],[[1,2,1,1],[1,3,0,3],[0,3,3,2],[1,1,1,1]],[[1,2,1,1],[1,4,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,1,2],[1,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,3,1,1],[1,3,0,2],[0,3,3,2],[1,1,1,1]],[[2,2,1,1],[1,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,2,1,1],[1,3,0,2],[0,3,3,2],[1,0,2,2]],[[1,2,1,1],[1,3,0,2],[0,3,3,3],[1,0,2,1]],[[1,2,1,1],[1,3,0,2],[0,3,4,2],[1,0,2,1]],[[1,0,3,1],[2,3,2,2],[2,0,3,2],[0,0,2,1]],[[1,0,2,2],[2,3,2,2],[2,0,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,2,3],[2,0,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,2,2],[2,0,3,3],[0,0,2,1]],[[1,0,2,1],[2,3,2,2],[2,0,3,2],[0,0,2,2]],[[1,0,3,1],[2,3,2,2],[2,0,3,2],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[2,0,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[2,0,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[2,0,3,3],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[2,0,3,2],[0,1,1,2]],[[1,0,3,1],[2,3,2,2],[2,0,3,2],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[2,0,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[2,0,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,2],[2,0,3,3],[0,1,2,0]],[[1,2,1,1],[1,3,0,3],[0,3,3,2],[1,0,2,1]],[[1,2,1,2],[1,3,0,2],[0,3,3,2],[1,0,2,1]],[[1,0,3,1],[2,3,2,2],[2,0,3,2],[1,0,1,1]],[[1,0,2,2],[2,3,2,2],[2,0,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,3],[2,0,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[2,0,3,3],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[2,0,3,2],[1,0,1,2]],[[1,0,3,1],[2,3,2,2],[2,0,3,2],[1,0,2,0]],[[1,0,2,2],[2,3,2,2],[2,0,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,3],[2,0,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,2],[2,0,3,3],[1,0,2,0]],[[1,2,1,1],[1,3,0,2],[0,3,3,1],[1,3,1,1]],[[1,2,1,1],[1,3,0,2],[0,3,3,1],[2,2,1,1]],[[1,2,1,1],[1,3,0,2],[0,3,4,1],[1,2,1,1]],[[1,2,1,1],[1,3,0,2],[0,4,3,1],[1,2,1,1]],[[1,2,1,1],[1,4,0,2],[0,3,3,1],[1,2,1,1]],[[1,3,1,1],[1,3,0,2],[0,3,3,1],[1,2,1,1]],[[2,2,1,1],[1,3,0,2],[0,3,3,1],[1,2,1,1]],[[1,2,1,1],[1,3,0,2],[0,3,3,1],[1,1,2,2]],[[1,2,1,1],[1,3,0,2],[0,3,3,1],[1,1,3,1]],[[1,2,1,1],[1,3,0,2],[0,3,4,1],[1,1,2,1]],[[1,2,1,1],[1,3,0,2],[0,4,3,1],[1,1,2,1]],[[1,2,1,1],[1,4,0,2],[0,3,3,1],[1,1,2,1]],[[1,3,1,1],[1,3,0,2],[0,3,3,1],[1,1,2,1]],[[2,2,1,1],[1,3,0,2],[0,3,3,1],[1,1,2,1]],[[1,2,1,1],[1,3,0,2],[0,3,2,2],[1,2,3,0]],[[1,2,1,1],[1,3,0,2],[0,3,2,2],[1,3,2,0]],[[1,2,1,1],[1,3,0,2],[0,3,2,2],[2,2,2,0]],[[1,2,1,1],[1,3,0,2],[0,4,2,2],[1,2,2,0]],[[1,2,1,1],[1,4,0,2],[0,3,2,2],[1,2,2,0]],[[1,3,1,1],[1,3,0,2],[0,3,2,2],[1,2,2,0]],[[2,2,1,1],[1,3,0,2],[0,3,2,2],[1,2,2,0]],[[1,2,1,1],[1,3,0,2],[0,3,2,2],[1,1,2,2]],[[1,2,1,1],[1,3,0,2],[0,3,2,2],[1,1,3,1]],[[1,2,1,1],[1,3,0,2],[0,3,2,3],[1,1,2,1]],[[1,0,3,1],[2,3,2,2],[2,1,0,1],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[2,1,0,1],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[2,1,0,1],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[2,1,0,2],[0,2,2,1]],[[1,0,2,2],[2,3,2,2],[2,1,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,3],[2,1,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,2,2],[2,1,0,3],[0,2,2,1]],[[1,0,2,1],[2,3,2,2],[2,1,0,2],[0,3,2,1]],[[1,0,2,1],[2,3,2,2],[2,1,0,2],[0,2,3,1]],[[1,0,2,1],[2,3,2,2],[2,1,0,2],[0,2,2,2]],[[1,0,3,1],[2,3,2,2],[2,1,0,2],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[2,1,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[2,1,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,2,2],[2,1,0,3],[1,1,2,1]],[[1,0,2,1],[2,3,2,2],[2,1,0,2],[1,1,3,1]],[[1,0,2,1],[2,3,2,2],[2,1,0,2],[1,1,2,2]],[[1,0,3,1],[2,3,2,2],[2,1,0,2],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[2,1,0,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[2,1,0,2],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[2,1,0,3],[1,2,1,1]],[[1,0,2,1],[2,3,2,2],[2,1,0,2],[1,2,1,2]],[[1,0,3,1],[2,3,2,2],[2,1,0,2],[1,2,2,0]],[[1,0,2,2],[2,3,2,2],[2,1,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,3],[2,1,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,2,2],[2,1,0,3],[1,2,2,0]],[[1,0,3,1],[2,3,2,2],[2,1,1,0],[1,2,2,1]],[[1,0,2,2],[2,3,2,2],[2,1,1,0],[1,2,2,1]],[[1,0,2,1],[2,3,2,3],[2,1,1,0],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[2,1,1,1],[1,2,2,0]],[[1,0,2,2],[2,3,2,2],[2,1,1,1],[1,2,2,0]],[[1,0,2,1],[2,3,2,3],[2,1,1,1],[1,2,2,0]],[[1,0,3,1],[2,3,2,2],[2,1,1,2],[0,1,2,1]],[[1,0,2,2],[2,3,2,2],[2,1,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,3],[2,1,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[2,1,1,3],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[2,1,1,2],[0,1,3,1]],[[1,0,2,1],[2,3,2,2],[2,1,1,2],[0,1,2,2]],[[1,0,3,1],[2,3,2,2],[2,1,1,2],[1,0,2,1]],[[1,0,2,2],[2,3,2,2],[2,1,1,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,3],[2,1,1,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[2,1,1,3],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[2,1,1,2],[1,0,3,1]],[[1,0,2,1],[2,3,2,2],[2,1,1,2],[1,0,2,2]],[[1,0,3,1],[2,3,2,2],[2,1,1,2],[1,2,0,1]],[[1,0,2,2],[2,3,2,2],[2,1,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,3],[2,1,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,2,2],[2,1,1,3],[1,2,0,1]],[[1,0,2,1],[2,3,2,2],[2,1,1,2],[1,2,0,2]],[[1,0,3,1],[2,3,2,2],[2,1,1,2],[1,2,1,0]],[[1,0,2,2],[2,3,2,2],[2,1,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,3],[2,1,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,2,2],[2,1,1,3],[1,2,1,0]],[[1,2,1,1],[1,3,0,3],[0,3,2,2],[1,1,2,1]],[[1,2,1,2],[1,3,0,2],[0,3,2,2],[1,1,2,1]],[[1,2,1,1],[1,3,0,2],[0,3,2,1],[1,2,2,2]],[[1,2,1,1],[1,3,0,2],[0,3,2,1],[1,2,3,1]],[[1,2,1,1],[1,3,0,2],[0,3,2,1],[1,3,2,1]],[[1,2,1,1],[1,3,0,2],[0,3,2,1],[2,2,2,1]],[[1,2,1,1],[1,3,0,2],[0,4,2,1],[1,2,2,1]],[[1,2,1,1],[1,4,0,2],[0,3,2,1],[1,2,2,1]],[[1,3,1,1],[1,3,0,2],[0,3,2,1],[1,2,2,1]],[[2,2,1,1],[1,3,0,2],[0,3,2,1],[1,2,2,1]],[[1,2,1,1],[1,3,0,2],[0,3,1,2],[1,2,2,2]],[[1,2,1,1],[1,3,0,2],[0,3,1,2],[1,2,3,1]],[[1,0,3,1],[2,3,2,2],[2,1,2,0],[1,2,1,1]],[[1,0,2,2],[2,3,2,2],[2,1,2,0],[1,2,1,1]],[[1,0,2,1],[2,3,2,3],[2,1,2,0],[1,2,1,1]],[[1,0,3,1],[2,3,2,2],[2,1,2,1],[1,2,0,1]],[[1,0,2,2],[2,3,2,2],[2,1,2,1],[1,2,0,1]],[[1,0,2,1],[2,3,2,3],[2,1,2,1],[1,2,0,1]],[[1,0,3,1],[2,3,2,2],[2,1,2,1],[1,2,1,0]],[[1,0,2,2],[2,3,2,2],[2,1,2,1],[1,2,1,0]],[[1,0,2,1],[2,3,2,3],[2,1,2,1],[1,2,1,0]],[[1,2,1,1],[1,3,0,2],[0,3,1,2],[1,3,2,1]],[[1,2,1,1],[1,3,0,2],[0,3,1,2],[2,2,2,1]],[[1,2,1,1],[1,3,0,2],[0,3,1,3],[1,2,2,1]],[[1,2,1,1],[1,3,0,2],[0,4,1,2],[1,2,2,1]],[[1,2,1,1],[1,3,0,3],[0,3,1,2],[1,2,2,1]],[[1,2,1,1],[1,4,0,2],[0,3,1,2],[1,2,2,1]],[[1,2,1,2],[1,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,3,1,1],[1,3,0,2],[0,3,1,2],[1,2,2,1]],[[2,2,1,1],[1,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[2,1,2,2],[0,0,2,1]],[[1,0,2,2],[2,3,2,2],[2,1,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,2,3],[2,1,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,2,2],[2,1,2,3],[0,0,2,1]],[[1,0,2,1],[2,3,2,2],[2,1,2,2],[0,0,2,2]],[[1,0,3,1],[2,3,2,2],[2,1,2,2],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[2,1,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[2,1,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[2,1,2,3],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[2,1,2,2],[0,1,1,2]],[[1,0,3,1],[2,3,2,2],[2,1,2,2],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[2,1,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[2,1,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,2],[2,1,2,3],[0,1,2,0]],[[1,0,3,1],[2,3,2,2],[2,1,2,2],[0,2,0,1]],[[1,0,2,2],[2,3,2,2],[2,1,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,3],[2,1,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,2],[2,1,2,3],[0,2,0,1]],[[1,0,2,1],[2,3,2,2],[2,1,2,2],[0,2,0,2]],[[1,0,3,1],[2,3,2,2],[2,1,2,2],[0,2,1,0]],[[1,0,2,2],[2,3,2,2],[2,1,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,3],[2,1,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,2],[2,1,2,3],[0,2,1,0]],[[1,2,1,1],[1,3,0,2],[0,2,3,2],[1,2,3,0]],[[1,0,3,1],[2,3,2,2],[2,1,2,2],[1,0,1,1]],[[1,0,2,2],[2,3,2,2],[2,1,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,3],[2,1,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[2,1,2,3],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[2,1,2,2],[1,0,1,2]],[[1,0,3,1],[2,3,2,2],[2,1,2,2],[1,0,2,0]],[[1,0,2,2],[2,3,2,2],[2,1,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,3],[2,1,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,2],[2,1,2,3],[1,0,2,0]],[[1,0,3,1],[2,3,2,2],[2,1,2,2],[1,1,0,1]],[[1,0,2,2],[2,3,2,2],[2,1,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,3],[2,1,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,2],[2,1,2,3],[1,1,0,1]],[[1,0,2,1],[2,3,2,2],[2,1,2,2],[1,1,0,2]],[[1,0,3,1],[2,3,2,2],[2,1,2,2],[1,1,1,0]],[[1,0,2,2],[2,3,2,2],[2,1,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,3],[2,1,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,2],[2,1,2,3],[1,1,1,0]],[[1,2,1,1],[1,3,0,2],[0,2,3,2],[1,3,2,0]],[[1,2,1,1],[1,3,0,2],[0,2,3,2],[2,2,2,0]],[[1,2,1,1],[1,3,0,2],[0,2,3,3],[1,2,2,0]],[[1,2,1,1],[1,3,0,2],[0,2,4,2],[1,2,2,0]],[[1,2,1,1],[1,3,0,3],[0,2,3,2],[1,2,2,0]],[[1,2,1,2],[1,3,0,2],[0,2,3,2],[1,2,2,0]],[[1,2,1,1],[1,3,0,2],[0,2,3,2],[1,2,1,2]],[[1,2,1,1],[1,3,0,2],[0,2,3,3],[1,2,1,1]],[[1,2,1,1],[1,3,0,2],[0,2,4,2],[1,2,1,1]],[[1,2,1,1],[1,3,0,3],[0,2,3,2],[1,2,1,1]],[[1,2,1,2],[1,3,0,2],[0,2,3,2],[1,2,1,1]],[[1,2,1,1],[1,3,0,2],[0,2,3,1],[1,2,2,2]],[[1,2,1,1],[1,3,0,2],[0,2,3,1],[1,2,3,1]],[[1,2,1,1],[1,3,0,2],[0,2,3,1],[1,3,2,1]],[[1,2,1,1],[1,3,0,2],[0,2,3,1],[2,2,2,1]],[[1,2,1,1],[1,3,0,2],[0,2,4,1],[1,2,2,1]],[[1,2,1,1],[1,3,0,2],[0,2,2,2],[1,2,2,2]],[[1,2,1,1],[1,3,0,2],[0,2,2,2],[1,2,3,1]],[[1,2,1,1],[1,3,0,2],[0,2,2,2],[1,3,2,1]],[[1,2,1,1],[1,3,0,2],[0,2,2,2],[2,2,2,1]],[[1,2,1,1],[1,3,0,2],[0,2,2,3],[1,2,2,1]],[[1,2,1,1],[1,3,0,3],[0,2,2,2],[1,2,2,1]],[[1,2,1,2],[1,3,0,2],[0,2,2,2],[1,2,2,1]],[[1,0,3,1],[2,3,2,2],[2,1,3,0],[0,1,2,1]],[[1,0,2,2],[2,3,2,2],[2,1,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,2,3],[2,1,3,0],[0,1,2,1]],[[1,0,3,1],[2,3,2,2],[2,1,3,0],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[2,1,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[2,1,3,0],[0,2,1,1]],[[1,0,3,1],[2,3,2,2],[2,1,3,0],[1,0,2,1]],[[1,0,2,2],[2,3,2,2],[2,1,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,2,3],[2,1,3,0],[1,0,2,1]],[[1,0,3,1],[2,3,2,2],[2,1,3,0],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[2,1,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[2,1,3,0],[1,1,1,1]],[[1,0,3,1],[2,3,2,2],[2,1,3,1],[0,0,2,1]],[[1,0,2,2],[2,3,2,2],[2,1,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,2,3],[2,1,3,1],[0,0,2,1]],[[1,0,3,1],[2,3,2,2],[2,1,3,1],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[2,1,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[2,1,3,1],[0,1,1,1]],[[1,0,3,1],[2,3,2,2],[2,1,3,1],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[2,1,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[2,1,3,1],[0,1,2,0]],[[1,0,3,1],[2,3,2,2],[2,1,3,1],[0,2,0,1]],[[1,0,2,2],[2,3,2,2],[2,1,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,2,3],[2,1,3,1],[0,2,0,1]],[[1,0,3,1],[2,3,2,2],[2,1,3,1],[0,2,1,0]],[[1,0,2,2],[2,3,2,2],[2,1,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,2,3],[2,1,3,1],[0,2,1,0]],[[1,2,1,1],[1,2,3,3],[2,3,3,1],[1,0,0,0]],[[1,2,1,1],[1,2,4,2],[2,3,3,1],[1,0,0,0]],[[1,2,1,2],[1,2,3,2],[2,3,3,1],[1,0,0,0]],[[1,0,3,1],[2,3,2,2],[2,1,3,1],[1,0,1,1]],[[1,0,2,2],[2,3,2,2],[2,1,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,2,3],[2,1,3,1],[1,0,1,1]],[[1,0,3,1],[2,3,2,2],[2,1,3,1],[1,0,2,0]],[[1,0,2,2],[2,3,2,2],[2,1,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,2,3],[2,1,3,1],[1,0,2,0]],[[1,0,3,1],[2,3,2,2],[2,1,3,1],[1,1,0,1]],[[1,0,2,2],[2,3,2,2],[2,1,3,1],[1,1,0,1]],[[1,0,2,1],[2,3,2,3],[2,1,3,1],[1,1,0,1]],[[1,0,3,1],[2,3,2,2],[2,1,3,1],[1,1,1,0]],[[1,0,2,2],[2,3,2,2],[2,1,3,1],[1,1,1,0]],[[1,0,2,1],[2,3,2,3],[2,1,3,1],[1,1,1,0]],[[1,0,3,1],[2,3,2,2],[2,1,3,2],[0,1,0,1]],[[1,0,2,2],[2,3,2,2],[2,1,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,2,3],[2,1,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,2,2],[2,1,3,3],[0,1,0,1]],[[1,2,1,1],[1,2,3,3],[2,3,2,1],[1,0,1,0]],[[1,2,1,1],[1,2,4,2],[2,3,2,1],[1,0,1,0]],[[1,2,1,2],[1,2,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,1,1],[1,2,3,3],[2,3,2,1],[1,0,0,1]],[[1,2,1,1],[1,2,4,2],[2,3,2,1],[1,0,0,1]],[[1,2,1,2],[1,2,3,2],[2,3,2,1],[1,0,0,1]],[[1,0,3,1],[2,3,2,2],[2,1,3,2],[1,0,0,1]],[[1,0,2,2],[2,3,2,2],[2,1,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,2,3],[2,1,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,2,2],[2,1,3,3],[1,0,0,1]],[[1,2,1,1],[1,2,3,3],[2,3,1,2],[1,0,1,0]],[[1,2,1,1],[1,2,4,2],[2,3,1,2],[1,0,1,0]],[[1,2,1,2],[1,2,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,1,1],[1,2,3,2],[2,3,1,3],[1,0,0,1]],[[1,2,1,1],[1,2,3,3],[2,3,1,2],[1,0,0,1]],[[1,2,1,1],[1,2,4,2],[2,3,1,2],[1,0,0,1]],[[1,2,1,2],[1,2,3,2],[2,3,1,2],[1,0,0,1]],[[1,0,3,1],[2,3,2,2],[2,2,0,1],[0,2,2,1]],[[1,0,2,2],[2,3,2,2],[2,2,0,1],[0,2,2,1]],[[1,0,2,1],[2,3,2,3],[2,2,0,1],[0,2,2,1]],[[1,0,3,1],[2,3,2,2],[2,2,0,1],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[2,2,0,1],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[2,2,0,1],[1,1,2,1]],[[1,0,3,1],[2,3,2,2],[2,2,0,2],[0,1,2,1]],[[1,0,2,2],[2,3,2,2],[2,2,0,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,3],[2,2,0,2],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[2,2,0,3],[0,1,2,1]],[[1,0,2,1],[2,3,2,2],[2,2,0,2],[0,1,3,1]],[[1,0,2,1],[2,3,2,2],[2,2,0,2],[0,1,2,2]],[[1,0,3,1],[2,3,2,2],[2,2,0,2],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[2,2,0,2],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[2,2,0,2],[0,2,1,1]],[[1,0,2,1],[2,3,2,2],[2,2,0,3],[0,2,1,1]],[[1,0,2,1],[2,3,2,2],[2,2,0,2],[0,2,1,2]],[[1,0,3,1],[2,3,2,2],[2,2,0,2],[0,2,2,0]],[[1,0,2,2],[2,3,2,2],[2,2,0,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,3],[2,2,0,2],[0,2,2,0]],[[1,0,2,1],[2,3,2,2],[2,2,0,3],[0,2,2,0]],[[1,0,3,1],[2,3,2,2],[2,2,0,2],[1,0,2,1]],[[1,0,2,2],[2,3,2,2],[2,2,0,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,3],[2,2,0,2],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[2,2,0,3],[1,0,2,1]],[[1,0,2,1],[2,3,2,2],[2,2,0,2],[1,0,3,1]],[[1,0,2,1],[2,3,2,2],[2,2,0,2],[1,0,2,2]],[[1,0,3,1],[2,3,2,2],[2,2,0,2],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[2,2,0,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[2,2,0,2],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[2,2,0,3],[1,1,1,1]],[[1,0,2,1],[2,3,2,2],[2,2,0,2],[1,1,1,2]],[[1,0,3,1],[2,3,2,2],[2,2,0,2],[1,1,2,0]],[[1,0,2,2],[2,3,2,2],[2,2,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,3],[2,2,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,2,2],[2,2,0,3],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[2,2,1,0],[0,2,2,1]],[[1,0,2,2],[2,3,2,2],[2,2,1,0],[0,2,2,1]],[[1,0,2,1],[2,3,2,3],[2,2,1,0],[0,2,2,1]],[[1,0,3,1],[2,3,2,2],[2,2,1,0],[1,1,2,1]],[[1,0,2,2],[2,3,2,2],[2,2,1,0],[1,1,2,1]],[[1,0,2,1],[2,3,2,3],[2,2,1,0],[1,1,2,1]],[[1,0,3,1],[2,3,2,2],[2,2,1,1],[0,2,2,0]],[[1,0,2,2],[2,3,2,2],[2,2,1,1],[0,2,2,0]],[[1,0,2,1],[2,3,2,3],[2,2,1,1],[0,2,2,0]],[[1,0,3,1],[2,3,2,2],[2,2,1,1],[1,1,2,0]],[[1,0,2,2],[2,3,2,2],[2,2,1,1],[1,1,2,0]],[[1,0,2,1],[2,3,2,3],[2,2,1,1],[1,1,2,0]],[[1,0,3,1],[2,3,2,2],[2,2,1,2],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[2,2,1,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[2,2,1,2],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[2,2,1,3],[0,1,1,1]],[[1,0,2,1],[2,3,2,2],[2,2,1,2],[0,1,1,2]],[[1,0,3,1],[2,3,2,2],[2,2,1,2],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[2,2,1,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[2,2,1,2],[0,1,2,0]],[[1,0,2,1],[2,3,2,2],[2,2,1,3],[0,1,2,0]],[[1,0,3,1],[2,3,2,2],[2,2,1,2],[0,2,0,1]],[[1,0,2,2],[2,3,2,2],[2,2,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,3],[2,2,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,2,2],[2,2,1,3],[0,2,0,1]],[[1,0,2,1],[2,3,2,2],[2,2,1,2],[0,2,0,2]],[[1,0,3,1],[2,3,2,2],[2,2,1,2],[0,2,1,0]],[[1,0,2,2],[2,3,2,2],[2,2,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,3],[2,2,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,2,2],[2,2,1,3],[0,2,1,0]],[[1,0,3,1],[2,3,2,2],[2,2,1,2],[1,0,1,1]],[[1,0,2,2],[2,3,2,2],[2,2,1,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,3],[2,2,1,2],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[2,2,1,3],[1,0,1,1]],[[1,0,2,1],[2,3,2,2],[2,2,1,2],[1,0,1,2]],[[1,0,3,1],[2,3,2,2],[2,2,1,2],[1,0,2,0]],[[1,0,2,2],[2,3,2,2],[2,2,1,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,3],[2,2,1,2],[1,0,2,0]],[[1,0,2,1],[2,3,2,2],[2,2,1,3],[1,0,2,0]],[[1,0,3,1],[2,3,2,2],[2,2,1,2],[1,1,0,1]],[[1,0,2,2],[2,3,2,2],[2,2,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,3],[2,2,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,2,2],[2,2,1,3],[1,1,0,1]],[[1,0,2,1],[2,3,2,2],[2,2,1,2],[1,1,0,2]],[[1,0,3,1],[2,3,2,2],[2,2,1,2],[1,1,1,0]],[[1,0,2,2],[2,3,2,2],[2,2,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,3],[2,2,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,2,2],[2,2,1,3],[1,1,1,0]],[[1,0,3,1],[2,3,2,2],[2,2,1,2],[1,2,0,0]],[[1,0,2,2],[2,3,2,2],[2,2,1,2],[1,2,0,0]],[[1,0,2,1],[2,3,2,3],[2,2,1,2],[1,2,0,0]],[[1,2,1,1],[1,2,3,3],[2,2,3,1],[1,1,0,0]],[[1,2,1,1],[1,2,4,2],[2,2,3,1],[1,1,0,0]],[[1,2,1,2],[1,2,3,2],[2,2,3,1],[1,1,0,0]],[[1,0,3,1],[2,3,2,2],[2,2,2,0],[0,1,2,1]],[[1,0,2,2],[2,3,2,2],[2,2,2,0],[0,1,2,1]],[[1,0,2,1],[2,3,2,3],[2,2,2,0],[0,1,2,1]],[[1,0,3,1],[2,3,2,2],[2,2,2,0],[0,2,1,1]],[[1,0,2,2],[2,3,2,2],[2,2,2,0],[0,2,1,1]],[[1,0,2,1],[2,3,2,3],[2,2,2,0],[0,2,1,1]],[[1,0,3,1],[2,3,2,2],[2,2,2,0],[1,0,2,1]],[[1,0,2,2],[2,3,2,2],[2,2,2,0],[1,0,2,1]],[[1,0,2,1],[2,3,2,3],[2,2,2,0],[1,0,2,1]],[[1,0,3,1],[2,3,2,2],[2,2,2,0],[1,1,1,1]],[[1,0,2,2],[2,3,2,2],[2,2,2,0],[1,1,1,1]],[[1,0,2,1],[2,3,2,3],[2,2,2,0],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[2,2,3,1],[0,2,0,0]],[[1,2,1,1],[1,2,4,2],[2,2,3,1],[0,2,0,0]],[[1,2,1,2],[1,2,3,2],[2,2,3,1],[0,2,0,0]],[[1,0,3,1],[2,3,2,2],[2,2,2,1],[0,1,1,1]],[[1,0,2,2],[2,3,2,2],[2,2,2,1],[0,1,1,1]],[[1,0,2,1],[2,3,2,3],[2,2,2,1],[0,1,1,1]],[[1,0,3,1],[2,3,2,2],[2,2,2,1],[0,1,2,0]],[[1,0,2,2],[2,3,2,2],[2,2,2,1],[0,1,2,0]],[[1,0,2,1],[2,3,2,3],[2,2,2,1],[0,1,2,0]],[[1,0,3,1],[2,3,2,2],[2,2,2,1],[0,2,0,1]],[[1,0,2,2],[2,3,2,2],[2,2,2,1],[0,2,0,1]],[[1,0,2,1],[2,3,2,3],[2,2,2,1],[0,2,0,1]],[[1,0,3,1],[2,3,2,2],[2,2,2,1],[0,2,1,0]],[[1,0,2,2],[2,3,2,2],[2,2,2,1],[0,2,1,0]],[[1,0,2,1],[2,3,2,3],[2,2,2,1],[0,2,1,0]],[[1,0,3,1],[2,3,2,2],[2,2,2,1],[1,0,1,1]],[[1,0,2,2],[2,3,2,2],[2,2,2,1],[1,0,1,1]],[[1,0,2,1],[2,3,2,3],[2,2,2,1],[1,0,1,1]],[[1,0,3,1],[2,3,2,2],[2,2,2,1],[1,0,2,0]],[[1,0,2,2],[2,3,2,2],[2,2,2,1],[1,0,2,0]],[[1,0,2,1],[2,3,2,3],[2,2,2,1],[1,0,2,0]],[[1,0,3,1],[2,3,2,2],[2,2,2,1],[1,1,0,1]],[[1,0,2,2],[2,3,2,2],[2,2,2,1],[1,1,0,1]],[[1,0,2,1],[2,3,2,3],[2,2,2,1],[1,1,0,1]],[[1,0,3,1],[2,3,2,2],[2,2,2,1],[1,1,1,0]],[[1,0,2,2],[2,3,2,2],[2,2,2,1],[1,1,1,0]],[[1,0,2,1],[2,3,2,3],[2,2,2,1],[1,1,1,0]],[[1,0,3,1],[2,3,2,2],[2,2,2,1],[1,2,0,0]],[[1,0,2,2],[2,3,2,2],[2,2,2,1],[1,2,0,0]],[[1,0,2,1],[2,3,2,3],[2,2,2,1],[1,2,0,0]],[[1,2,1,1],[1,2,3,3],[2,2,2,1],[1,2,0,0]],[[1,2,1,1],[1,2,4,2],[2,2,2,1],[1,2,0,0]],[[1,2,1,2],[1,2,3,2],[2,2,2,1],[1,2,0,0]],[[1,2,1,1],[1,2,3,3],[2,2,2,1],[1,1,1,0]],[[1,2,1,1],[1,2,4,2],[2,2,2,1],[1,1,1,0]],[[1,2,1,2],[1,2,3,2],[2,2,2,1],[1,1,1,0]],[[1,2,1,1],[1,2,3,3],[2,2,2,1],[1,1,0,1]],[[1,2,1,1],[1,2,4,2],[2,2,2,1],[1,1,0,1]],[[1,2,1,2],[1,2,3,2],[2,2,2,1],[1,1,0,1]],[[1,2,1,1],[1,2,3,3],[2,2,2,1],[1,0,2,0]],[[1,2,1,1],[1,2,4,2],[2,2,2,1],[1,0,2,0]],[[1,2,1,2],[1,2,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,1,1],[1,2,3,3],[2,2,2,1],[1,0,1,1]],[[1,2,1,1],[1,2,4,2],[2,2,2,1],[1,0,1,1]],[[1,2,1,2],[1,2,3,2],[2,2,2,1],[1,0,1,1]],[[1,2,1,1],[1,2,3,3],[2,2,2,1],[0,2,1,0]],[[1,2,1,1],[1,2,4,2],[2,2,2,1],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[2,2,2,1],[0,2,1,0]],[[1,2,1,1],[1,2,3,3],[2,2,2,1],[0,2,0,1]],[[1,2,1,1],[1,2,4,2],[2,2,2,1],[0,2,0,1]],[[1,2,1,2],[1,2,3,2],[2,2,2,1],[0,2,0,1]],[[1,2,1,1],[1,2,3,3],[2,2,2,1],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[2,2,2,1],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[2,2,2,1],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[2,2,2,1],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[2,2,2,1],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[2,2,2,0],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[2,2,2,0],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[2,2,2,0],[1,0,2,1]],[[1,2,1,1],[1,2,4,2],[2,2,2,0],[1,0,2,1]],[[1,2,1,2],[1,2,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,1,1],[1,2,3,3],[2,2,2,0],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[2,2,2,0],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[2,2,2,0],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[2,2,2,0],[0,1,2,1]],[[1,2,1,1],[1,2,4,2],[2,2,2,0],[0,1,2,1]],[[1,2,1,2],[1,2,3,2],[2,2,2,0],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[2,2,1,2],[1,2,0,0]],[[1,2,1,1],[1,2,4,2],[2,2,1,2],[1,2,0,0]],[[1,2,1,2],[1,2,3,2],[2,2,1,2],[1,2,0,0]],[[1,2,1,1],[1,2,3,2],[2,2,1,3],[1,1,1,0]],[[1,2,1,1],[1,2,3,3],[2,2,1,2],[1,1,1,0]],[[1,2,1,1],[1,2,4,2],[2,2,1,2],[1,1,1,0]],[[1,2,1,2],[1,2,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,1,1],[1,2,3,2],[2,2,1,2],[1,1,0,2]],[[1,2,1,1],[1,2,3,2],[2,2,1,3],[1,1,0,1]],[[1,2,1,1],[1,2,3,3],[2,2,1,2],[1,1,0,1]],[[1,2,1,1],[1,2,4,2],[2,2,1,2],[1,1,0,1]],[[1,2,1,2],[1,2,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,1,1],[1,2,3,2],[2,2,1,3],[1,0,2,0]],[[1,2,1,1],[1,2,3,3],[2,2,1,2],[1,0,2,0]],[[1,2,1,1],[1,2,4,2],[2,2,1,2],[1,0,2,0]],[[1,2,1,2],[1,2,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,1,1],[1,2,3,2],[2,2,1,2],[1,0,1,2]],[[1,2,1,1],[1,2,3,2],[2,2,1,3],[1,0,1,1]],[[1,2,1,1],[1,2,3,3],[2,2,1,2],[1,0,1,1]],[[1,0,3,1],[2,3,2,2],[2,2,3,1],[0,2,0,0]],[[1,0,2,2],[2,3,2,2],[2,2,3,1],[0,2,0,0]],[[1,0,2,1],[2,3,2,3],[2,2,3,1],[0,2,0,0]],[[1,2,1,1],[1,2,4,2],[2,2,1,2],[1,0,1,1]],[[1,2,1,2],[1,2,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,1,1],[1,2,3,2],[2,2,1,3],[0,2,1,0]],[[1,2,1,1],[1,2,3,3],[2,2,1,2],[0,2,1,0]],[[1,2,1,1],[1,2,4,2],[2,2,1,2],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,1,1],[1,2,3,2],[2,2,1,2],[0,2,0,2]],[[1,2,1,1],[1,2,3,2],[2,2,1,3],[0,2,0,1]],[[1,2,1,1],[1,2,3,3],[2,2,1,2],[0,2,0,1]],[[1,2,1,1],[1,2,4,2],[2,2,1,2],[0,2,0,1]],[[1,2,1,2],[1,2,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,1,1],[1,2,3,2],[2,2,1,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[2,2,1,2],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[2,2,1,2],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,2],[2,2,1,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,2],[2,2,1,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[2,2,1,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[2,2,1,2],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[2,2,1,2],[0,1,1,1]],[[1,0,3,1],[2,3,2,2],[2,2,3,1],[1,1,0,0]],[[1,0,2,2],[2,3,2,2],[2,2,3,1],[1,1,0,0]],[[1,0,2,1],[2,3,2,3],[2,2,3,1],[1,1,0,0]],[[1,2,1,1],[1,2,3,3],[2,2,1,1],[1,1,2,0]],[[1,2,1,1],[1,2,4,2],[2,2,1,1],[1,1,2,0]],[[1,2,1,2],[1,2,3,2],[2,2,1,1],[1,1,2,0]],[[1,2,1,1],[1,2,3,3],[2,2,1,1],[0,2,2,0]],[[1,2,1,1],[1,2,4,2],[2,2,1,1],[0,2,2,0]],[[1,2,1,2],[1,2,3,2],[2,2,1,1],[0,2,2,0]],[[1,2,1,1],[1,2,3,3],[2,2,1,0],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[2,2,1,0],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,1,1],[1,2,3,3],[2,2,1,0],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[2,2,1,0],[0,2,2,1]],[[1,2,1,2],[1,2,3,2],[2,2,1,0],[0,2,2,1]],[[1,2,1,1],[1,2,3,2],[2,2,0,3],[1,1,2,0]],[[1,2,1,1],[1,2,3,3],[2,2,0,2],[1,1,2,0]],[[1,2,1,1],[1,2,4,2],[2,2,0,2],[1,1,2,0]],[[1,2,1,2],[1,2,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,2],[2,2,0,2],[1,1,1,2]],[[1,2,1,1],[1,2,3,2],[2,2,0,3],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[2,2,0,2],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[2,2,0,2],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,1,1],[1,2,3,2],[2,2,0,2],[1,0,2,2]],[[1,2,1,1],[1,2,3,2],[2,2,0,2],[1,0,3,1]],[[1,2,1,1],[1,2,3,2],[2,2,0,3],[1,0,2,1]],[[1,2,1,1],[1,2,3,3],[2,2,0,2],[1,0,2,1]],[[1,2,1,1],[1,2,4,2],[2,2,0,2],[1,0,2,1]],[[1,2,1,2],[1,2,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,1,1],[1,2,3,2],[2,2,0,3],[0,2,2,0]],[[1,2,1,1],[1,2,3,3],[2,2,0,2],[0,2,2,0]],[[1,2,1,1],[1,2,4,2],[2,2,0,2],[0,2,2,0]],[[1,2,1,2],[1,2,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,1,1],[1,2,3,2],[2,2,0,2],[0,2,1,2]],[[1,2,1,1],[1,2,3,2],[2,2,0,3],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[2,2,0,2],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[2,2,0,2],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,1,1],[1,2,3,2],[2,2,0,2],[0,1,2,2]],[[1,2,1,1],[1,2,3,2],[2,2,0,2],[0,1,3,1]],[[1,2,1,1],[1,2,3,2],[2,2,0,3],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[2,2,0,2],[0,1,2,1]],[[1,2,1,1],[1,2,4,2],[2,2,0,2],[0,1,2,1]],[[1,2,1,2],[1,2,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[2,2,0,1],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[2,2,0,1],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,1,1],[1,2,3,3],[2,2,0,1],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[2,2,0,1],[0,2,2,1]],[[1,2,1,2],[1,2,3,2],[2,2,0,1],[0,2,2,1]],[[1,2,1,1],[1,2,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,1,1],[1,2,3,3],[2,1,3,2],[1,0,0,1]],[[1,2,1,1],[1,2,4,2],[2,1,3,2],[1,0,0,1]],[[1,2,1,2],[1,2,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,1,1],[1,2,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,1,1],[1,2,3,3],[2,1,3,2],[0,1,0,1]],[[1,2,1,1],[1,2,4,2],[2,1,3,2],[0,1,0,1]],[[1,2,1,2],[1,2,3,2],[2,1,3,2],[0,1,0,1]],[[1,2,1,1],[1,2,3,2],[2,1,4,1],[1,1,1,0]],[[1,2,1,1],[1,2,3,3],[2,1,3,1],[1,1,1,0]],[[1,2,1,1],[1,2,4,2],[2,1,3,1],[1,1,1,0]],[[1,2,1,2],[1,2,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,1,1],[1,2,3,2],[2,1,4,1],[1,1,0,1]],[[1,2,1,1],[1,2,3,3],[2,1,3,1],[1,1,0,1]],[[1,2,1,1],[1,2,4,2],[2,1,3,1],[1,1,0,1]],[[1,2,1,2],[1,2,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,1,1],[1,2,3,2],[2,1,3,1],[1,0,3,0]],[[1,2,1,1],[1,2,3,2],[2,1,4,1],[1,0,2,0]],[[1,2,1,1],[1,2,3,3],[2,1,3,1],[1,0,2,0]],[[1,2,1,1],[1,2,4,2],[2,1,3,1],[1,0,2,0]],[[1,2,1,2],[1,2,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,1,1],[1,2,3,2],[2,1,4,1],[1,0,1,1]],[[1,2,1,1],[1,2,3,3],[2,1,3,1],[1,0,1,1]],[[1,2,1,1],[1,2,4,2],[2,1,3,1],[1,0,1,1]],[[1,2,1,2],[1,2,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,1,1],[1,2,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,1,1],[1,2,3,3],[2,1,3,1],[0,2,1,0]],[[1,2,1,1],[1,2,4,2],[2,1,3,1],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,1,1],[1,2,3,2],[2,1,4,1],[0,2,0,1]],[[1,2,1,1],[1,2,3,3],[2,1,3,1],[0,2,0,1]],[[1,2,1,1],[1,2,4,2],[2,1,3,1],[0,2,0,1]],[[1,2,1,2],[1,2,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,1,1],[1,2,3,2],[2,1,3,1],[0,1,3,0]],[[1,2,1,1],[1,2,3,2],[2,1,4,1],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[2,1,3,1],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[2,1,3,1],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,1,1],[1,2,3,2],[2,1,4,1],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[2,1,3,1],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[2,1,3,1],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,1,1],[1,2,3,2],[2,1,4,1],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[2,1,3,1],[0,0,2,1]],[[1,2,1,1],[1,2,4,2],[2,1,3,1],[0,0,2,1]],[[1,2,1,2],[1,2,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,1,1],[1,2,3,2],[2,1,4,0],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[2,1,3,0],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[2,1,3,0],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,1,1],[1,2,3,2],[2,1,3,0],[1,0,2,2]],[[1,2,1,1],[1,2,3,2],[2,1,3,0],[1,0,3,1]],[[1,2,1,1],[1,2,3,2],[2,1,4,0],[1,0,2,1]],[[1,2,1,1],[1,2,3,3],[2,1,3,0],[1,0,2,1]],[[1,2,1,1],[1,2,4,2],[2,1,3,0],[1,0,2,1]],[[1,2,1,2],[1,2,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,1,1],[1,2,3,2],[2,1,4,0],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[2,1,3,0],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[2,1,3,0],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,1,1],[1,2,3,2],[2,1,3,0],[0,1,2,2]],[[1,2,1,1],[1,2,3,2],[2,1,3,0],[0,1,3,1]],[[1,2,1,1],[1,2,3,2],[2,1,4,0],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[2,1,3,0],[0,1,2,1]],[[1,2,1,1],[1,2,4,2],[2,1,3,0],[0,1,2,1]],[[1,2,1,2],[1,2,3,2],[2,1,3,0],[0,1,2,1]],[[1,2,1,1],[1,2,3,2],[2,1,2,3],[1,1,1,0]],[[1,2,1,1],[1,2,3,3],[2,1,2,2],[1,1,1,0]],[[1,2,1,1],[1,2,4,2],[2,1,2,2],[1,1,1,0]],[[1,2,1,2],[1,2,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,1,1],[1,2,3,2],[2,1,2,2],[1,1,0,2]],[[1,2,1,1],[1,2,3,2],[2,1,2,3],[1,1,0,1]],[[1,2,1,1],[1,2,3,3],[2,1,2,2],[1,1,0,1]],[[1,2,1,1],[1,2,4,2],[2,1,2,2],[1,1,0,1]],[[1,2,1,2],[1,2,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,1,1],[1,2,3,2],[2,1,2,3],[1,0,2,0]],[[1,2,1,1],[1,2,3,3],[2,1,2,2],[1,0,2,0]],[[1,2,1,1],[1,2,4,2],[2,1,2,2],[1,0,2,0]],[[1,2,1,2],[1,2,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,1,1],[1,2,3,2],[2,1,2,2],[1,0,1,2]],[[1,2,1,1],[1,2,3,2],[2,1,2,3],[1,0,1,1]],[[1,2,1,1],[1,2,3,3],[2,1,2,2],[1,0,1,1]],[[1,2,1,1],[1,2,4,2],[2,1,2,2],[1,0,1,1]],[[1,2,1,2],[1,2,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,1,1],[1,2,3,2],[2,1,2,3],[0,2,1,0]],[[1,2,1,1],[1,2,3,3],[2,1,2,2],[0,2,1,0]],[[1,2,1,1],[1,2,4,2],[2,1,2,2],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,1,1],[1,2,3,2],[2,1,2,2],[0,2,0,2]],[[1,2,1,1],[1,2,3,2],[2,1,2,3],[0,2,0,1]],[[1,2,1,1],[1,2,3,3],[2,1,2,2],[0,2,0,1]],[[1,2,1,1],[1,2,4,2],[2,1,2,2],[0,2,0,1]],[[1,2,1,2],[1,2,3,2],[2,1,2,2],[0,2,0,1]],[[1,2,1,1],[1,2,3,2],[2,1,2,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[2,1,2,2],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[2,1,2,2],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,2],[2,1,2,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,2],[2,1,2,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[2,1,2,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[2,1,2,2],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,2],[2,1,2,2],[0,0,2,2]],[[1,2,1,1],[1,2,3,2],[2,1,2,3],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[2,1,2,2],[0,0,2,1]],[[1,2,1,1],[1,2,4,2],[2,1,2,2],[0,0,2,1]],[[1,2,1,2],[1,2,3,2],[2,1,2,2],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[2,1,2,1],[1,2,1,0]],[[1,2,1,1],[1,2,4,2],[2,1,2,1],[1,2,1,0]],[[1,2,1,2],[1,2,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,1,1],[1,2,3,3],[2,1,2,1],[1,2,0,1]],[[1,2,1,1],[1,2,4,2],[2,1,2,1],[1,2,0,1]],[[1,2,1,2],[1,2,3,2],[2,1,2,1],[1,2,0,1]],[[1,2,1,1],[1,2,3,3],[2,1,2,0],[1,2,1,1]],[[1,2,1,1],[1,2,4,2],[2,1,2,0],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[2,1,2,0],[1,2,1,1]],[[1,2,1,1],[1,2,3,2],[2,1,1,3],[1,2,1,0]],[[1,2,1,1],[1,2,3,3],[2,1,1,2],[1,2,1,0]],[[1,2,1,1],[1,2,4,2],[2,1,1,2],[1,2,1,0]],[[1,2,1,2],[1,2,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,1,1],[1,2,3,2],[2,1,1,2],[1,2,0,2]],[[1,2,1,1],[1,2,3,2],[2,1,1,3],[1,2,0,1]],[[1,2,1,1],[1,2,3,3],[2,1,1,2],[1,2,0,1]],[[1,2,1,1],[1,2,4,2],[2,1,1,2],[1,2,0,1]],[[1,2,1,2],[1,2,3,2],[2,1,1,2],[1,2,0,1]],[[1,2,1,1],[1,2,3,2],[2,1,1,2],[1,0,2,2]],[[1,2,1,1],[1,2,3,2],[2,1,1,2],[1,0,3,1]],[[1,2,1,1],[1,2,3,2],[2,1,1,3],[1,0,2,1]],[[1,2,1,1],[1,2,3,3],[2,1,1,2],[1,0,2,1]],[[1,2,1,1],[1,2,4,2],[2,1,1,2],[1,0,2,1]],[[1,2,1,2],[1,2,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,1,1],[1,2,3,2],[2,1,1,2],[0,1,2,2]],[[1,2,1,1],[1,2,3,2],[2,1,1,2],[0,1,3,1]],[[1,2,1,1],[1,2,3,2],[2,1,1,3],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[2,1,1,2],[0,1,2,1]],[[1,2,1,1],[1,2,4,2],[2,1,1,2],[0,1,2,1]],[[1,2,1,2],[1,2,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[2,1,1,1],[1,2,2,0]],[[1,2,1,1],[1,2,4,2],[2,1,1,1],[1,2,2,0]],[[1,2,1,2],[1,2,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,1,1],[1,2,3,3],[2,1,1,0],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[2,1,1,0],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[2,1,1,0],[1,2,2,1]],[[1,2,1,1],[1,2,3,2],[2,1,0,3],[1,2,2,0]],[[1,2,1,1],[1,2,3,3],[2,1,0,2],[1,2,2,0]],[[1,2,1,1],[1,2,4,2],[2,1,0,2],[1,2,2,0]],[[1,2,1,2],[1,2,3,2],[2,1,0,2],[1,2,2,0]],[[1,2,1,1],[1,2,3,2],[2,1,0,2],[1,2,1,2]],[[1,2,1,1],[1,2,3,2],[2,1,0,3],[1,2,1,1]],[[1,2,1,1],[1,2,3,3],[2,1,0,2],[1,2,1,1]],[[1,2,1,1],[1,2,4,2],[2,1,0,2],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,1,1],[1,2,3,2],[2,1,0,2],[1,1,2,2]],[[1,2,1,1],[1,2,3,2],[2,1,0,2],[1,1,3,1]],[[1,2,1,1],[1,2,3,2],[2,1,0,3],[1,1,2,1]],[[1,0,3,1],[2,3,2,2],[2,3,1,2],[1,0,0,1]],[[1,0,2,2],[2,3,2,2],[2,3,1,2],[1,0,0,1]],[[1,0,2,1],[2,3,2,3],[2,3,1,2],[1,0,0,1]],[[1,0,2,1],[2,3,2,2],[2,3,1,3],[1,0,0,1]],[[1,0,3,1],[2,3,2,2],[2,3,1,2],[1,0,1,0]],[[1,0,2,2],[2,3,2,2],[2,3,1,2],[1,0,1,0]],[[1,0,2,1],[2,3,2,3],[2,3,1,2],[1,0,1,0]],[[1,2,1,1],[1,2,3,3],[2,1,0,2],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[2,1,0,2],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,1,1],[1,2,3,2],[2,1,0,2],[0,2,2,2]],[[1,2,1,1],[1,2,3,2],[2,1,0,2],[0,2,3,1]],[[1,2,1,1],[1,2,3,2],[2,1,0,2],[0,3,2,1]],[[1,2,1,1],[1,2,3,2],[2,1,0,3],[0,2,2,1]],[[1,2,1,1],[1,2,3,3],[2,1,0,2],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[2,1,0,2],[0,2,2,1]],[[1,2,1,2],[1,2,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,1,1],[1,2,3,3],[2,1,0,1],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[2,1,0,1],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[2,1,0,1],[1,2,2,1]],[[1,2,1,1],[1,2,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,1,1],[1,2,3,3],[2,0,3,2],[1,0,2,0]],[[1,2,1,1],[1,2,4,2],[2,0,3,2],[1,0,2,0]],[[1,2,1,2],[1,2,3,2],[2,0,3,2],[1,0,2,0]],[[1,2,1,1],[1,2,3,2],[2,0,3,2],[1,0,1,2]],[[1,2,1,1],[1,2,3,2],[2,0,3,3],[1,0,1,1]],[[1,2,1,1],[1,2,3,3],[2,0,3,2],[1,0,1,1]],[[1,2,1,1],[1,2,4,2],[2,0,3,2],[1,0,1,1]],[[1,2,1,2],[1,2,3,2],[2,0,3,2],[1,0,1,1]],[[1,2,1,1],[1,2,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[2,0,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[2,0,3,2],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[2,0,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,2],[2,0,3,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,2],[2,0,3,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[2,0,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[2,0,3,2],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[2,0,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,2],[2,0,3,2],[0,0,2,2]],[[1,2,1,1],[1,2,3,2],[2,0,3,3],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[2,0,3,2],[0,0,2,1]],[[1,2,1,1],[1,2,4,2],[2,0,3,2],[0,0,2,1]],[[1,2,1,2],[1,2,3,2],[2,0,3,2],[0,0,2,1]],[[1,2,1,1],[1,2,3,2],[2,0,4,1],[1,2,1,0]],[[1,2,1,1],[1,2,3,3],[2,0,3,1],[1,2,1,0]],[[1,2,1,1],[1,2,4,2],[2,0,3,1],[1,2,1,0]],[[1,2,1,2],[1,2,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,1,1],[1,2,3,2],[2,0,4,1],[1,2,0,1]],[[1,2,1,1],[1,2,3,3],[2,0,3,1],[1,2,0,1]],[[1,2,1,1],[1,2,4,2],[2,0,3,1],[1,2,0,1]],[[1,2,1,2],[1,2,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,1,1],[1,2,3,2],[2,0,3,1],[1,1,3,0]],[[1,2,1,1],[1,2,3,2],[2,0,4,1],[1,1,2,0]],[[1,2,1,1],[1,2,3,3],[2,0,3,1],[1,1,2,0]],[[1,2,1,1],[1,2,4,2],[2,0,3,1],[1,1,2,0]],[[1,2,1,2],[1,2,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,1,1],[1,2,3,2],[2,0,4,1],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[2,0,3,1],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[2,0,3,1],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[2,0,3,1],[1,1,1,1]],[[1,0,3,1],[2,3,2,2],[2,3,2,1],[1,0,0,1]],[[1,0,2,2],[2,3,2,2],[2,3,2,1],[1,0,0,1]],[[1,0,2,1],[2,3,2,3],[2,3,2,1],[1,0,0,1]],[[1,0,3,1],[2,3,2,2],[2,3,2,1],[1,0,1,0]],[[1,0,2,2],[2,3,2,2],[2,3,2,1],[1,0,1,0]],[[1,0,2,1],[2,3,2,3],[2,3,2,1],[1,0,1,0]],[[1,2,1,1],[1,2,3,2],[2,0,3,1],[0,2,3,0]],[[1,2,1,1],[1,2,3,2],[2,0,3,1],[0,3,2,0]],[[1,2,1,1],[1,2,3,2],[2,0,4,1],[0,2,2,0]],[[1,2,1,1],[1,2,3,3],[2,0,3,1],[0,2,2,0]],[[1,2,1,1],[1,2,4,2],[2,0,3,1],[0,2,2,0]],[[1,2,1,2],[1,2,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,1,1],[1,2,3,2],[2,0,4,1],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[2,0,3,1],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[2,0,3,1],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,1,1],[1,2,3,2],[2,0,4,0],[1,2,1,1]],[[1,2,1,1],[1,2,3,3],[2,0,3,0],[1,2,1,1]],[[1,2,1,1],[1,2,4,2],[2,0,3,0],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,1,1],[1,2,3,2],[2,0,3,0],[1,1,2,2]],[[1,2,1,1],[1,2,3,2],[2,0,3,0],[1,1,3,1]],[[1,2,1,1],[1,2,3,2],[2,0,4,0],[1,1,2,1]],[[1,2,1,1],[1,2,3,3],[2,0,3,0],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[2,0,3,0],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,1,1],[1,2,3,2],[2,0,3,0],[0,2,2,2]],[[1,2,1,1],[1,2,3,2],[2,0,3,0],[0,2,3,1]],[[1,2,1,1],[1,2,3,2],[2,0,3,0],[0,3,2,1]],[[1,2,1,1],[1,2,3,2],[2,0,4,0],[0,2,2,1]],[[1,2,1,1],[1,2,3,3],[2,0,3,0],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[2,0,3,0],[0,2,2,1]],[[1,2,1,2],[1,2,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,1,1],[1,2,3,2],[2,0,2,3],[1,2,1,0]],[[1,2,1,1],[1,2,3,3],[2,0,2,2],[1,2,1,0]],[[1,2,1,1],[1,2,4,2],[2,0,2,2],[1,2,1,0]],[[1,2,1,2],[1,2,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,1,1],[1,2,3,2],[2,0,2,2],[1,2,0,2]],[[1,2,1,1],[1,2,3,2],[2,0,2,3],[1,2,0,1]],[[1,2,1,1],[1,2,3,3],[2,0,2,2],[1,2,0,1]],[[1,2,1,1],[1,2,4,2],[2,0,2,2],[1,2,0,1]],[[1,2,1,2],[1,2,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,1,1],[1,2,3,2],[2,0,2,3],[1,1,2,0]],[[1,2,1,1],[1,2,3,3],[2,0,2,2],[1,1,2,0]],[[1,2,1,1],[1,2,4,2],[2,0,2,2],[1,1,2,0]],[[1,2,1,2],[1,2,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,2],[2,0,2,2],[1,1,1,2]],[[1,2,1,1],[1,2,3,2],[2,0,2,3],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[2,0,2,2],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[2,0,2,2],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,1,1],[1,2,3,2],[2,0,2,3],[0,2,2,0]],[[1,2,1,1],[1,2,3,3],[2,0,2,2],[0,2,2,0]],[[1,2,1,1],[1,2,4,2],[2,0,2,2],[0,2,2,0]],[[1,2,1,2],[1,2,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,1,1],[1,2,3,2],[2,0,2,2],[0,2,1,2]],[[1,2,1,1],[1,2,3,2],[2,0,2,3],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[2,0,2,2],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[2,0,2,2],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[2,0,2,1],[1,2,2,0]],[[1,2,1,1],[1,2,4,2],[2,0,2,1],[1,2,2,0]],[[1,2,1,2],[1,2,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,1,1],[1,2,3,3],[2,0,2,0],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[2,0,2,0],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,1,1],[1,2,3,2],[2,0,1,3],[1,2,2,0]],[[1,2,1,1],[1,2,3,3],[2,0,1,2],[1,2,2,0]],[[1,2,1,1],[1,2,4,2],[2,0,1,2],[1,2,2,0]],[[1,2,1,2],[1,2,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,1,1],[1,2,3,2],[2,0,1,2],[1,2,1,2]],[[1,2,1,1],[1,2,3,2],[2,0,1,3],[1,2,1,1]],[[1,2,1,1],[1,2,3,3],[2,0,1,2],[1,2,1,1]],[[1,2,1,1],[1,2,4,2],[2,0,1,2],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,1,1],[1,2,3,2],[2,0,1,2],[1,1,2,2]],[[1,2,1,1],[1,2,3,2],[2,0,1,2],[1,1,3,1]],[[1,2,1,1],[1,2,3,2],[2,0,1,3],[1,1,2,1]],[[1,2,1,1],[1,2,3,3],[2,0,1,2],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[2,0,1,2],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,1,1],[1,2,3,2],[2,0,1,2],[0,2,2,2]],[[1,2,1,1],[1,2,3,2],[2,0,1,2],[0,2,3,1]],[[1,2,1,1],[1,2,3,2],[2,0,1,2],[0,3,2,1]],[[1,2,1,1],[1,2,3,2],[2,0,1,3],[0,2,2,1]],[[1,2,1,1],[1,2,3,3],[2,0,1,2],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[2,0,1,2],[0,2,2,1]],[[1,2,1,2],[1,2,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,1,1],[1,2,3,3],[2,0,1,1],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[2,0,1,1],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,1,1],[1,2,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,1,1],[1,2,3,3],[1,3,3,2],[0,0,0,1]],[[1,2,1,1],[1,2,4,2],[1,3,3,2],[0,0,0,1]],[[1,2,1,2],[1,2,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,1,1],[1,2,3,3],[1,3,3,1],[1,1,0,0]],[[1,2,1,1],[1,2,4,2],[1,3,3,1],[1,1,0,0]],[[1,2,1,2],[1,2,3,2],[1,3,3,1],[1,1,0,0]],[[1,2,1,1],[1,2,3,3],[1,3,3,1],[0,2,0,0]],[[1,2,1,1],[1,2,4,2],[1,3,3,1],[0,2,0,0]],[[1,2,1,2],[1,2,3,2],[1,3,3,1],[0,2,0,0]],[[1,2,1,1],[1,2,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,1,1],[1,2,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,1,1],[1,2,4,2],[1,3,3,1],[0,0,2,0]],[[1,2,1,2],[1,2,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,1,1],[1,2,3,2],[1,3,4,1],[0,0,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,3,1],[0,0,1,1]],[[1,2,1,1],[1,2,4,2],[1,3,3,1],[0,0,1,1]],[[1,2,1,2],[1,2,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,1,1],[1,2,3,2],[1,3,4,0],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[1,3,3,0],[0,0,2,1]],[[1,2,1,1],[1,2,4,2],[1,3,3,0],[0,0,2,1]],[[1,2,1,2],[1,2,3,2],[1,3,3,0],[0,0,2,1]],[[1,2,1,1],[1,2,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,1,1],[1,2,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,1,1],[1,2,4,2],[1,3,2,2],[0,0,2,0]],[[1,2,1,2],[1,2,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,1,1],[1,2,3,2],[1,3,2,2],[0,0,1,2]],[[1,2,1,1],[1,2,3,2],[1,3,2,3],[0,0,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,2,2],[0,0,1,1]],[[1,2,1,1],[1,2,4,2],[1,3,2,2],[0,0,1,1]],[[1,2,1,2],[1,2,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,2,1],[1,2,0,0]],[[1,2,1,1],[1,2,4,2],[1,3,2,1],[1,2,0,0]],[[1,2,1,2],[1,2,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,1,1],[1,2,3,3],[1,3,2,1],[1,1,1,0]],[[1,2,1,1],[1,2,4,2],[1,3,2,1],[1,1,1,0]],[[1,2,1,2],[1,2,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,1,1],[1,2,3,3],[1,3,2,1],[1,1,0,1]],[[1,2,1,1],[1,2,4,2],[1,3,2,1],[1,1,0,1]],[[1,2,1,2],[1,2,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,1,1],[1,2,3,3],[1,3,2,1],[1,0,2,0]],[[1,2,1,1],[1,2,4,2],[1,3,2,1],[1,0,2,0]],[[1,2,1,2],[1,2,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,1,1],[1,2,3,3],[1,3,2,1],[1,0,1,1]],[[1,2,1,1],[1,2,4,2],[1,3,2,1],[1,0,1,1]],[[1,2,1,2],[1,2,3,2],[1,3,2,1],[1,0,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,2,1],[0,2,1,0]],[[1,2,1,1],[1,2,4,2],[1,3,2,1],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,1,1],[1,2,3,3],[1,3,2,1],[0,2,0,1]],[[1,2,1,1],[1,2,4,2],[1,3,2,1],[0,2,0,1]],[[1,2,1,2],[1,2,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,1,1],[1,2,3,3],[1,3,2,1],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[1,3,2,1],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[1,3,2,1],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[1,3,2,1],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,2,0],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[1,3,2,0],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,2,0],[1,0,2,1]],[[1,2,1,1],[1,2,4,2],[1,3,2,0],[1,0,2,1]],[[1,2,1,2],[1,2,3,2],[1,3,2,0],[1,0,2,1]],[[1,2,1,1],[1,2,3,3],[1,3,2,0],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[1,3,2,0],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,2,0],[0,1,2,1]],[[1,2,1,1],[1,2,4,2],[1,3,2,0],[0,1,2,1]],[[1,2,1,2],[1,2,3,2],[1,3,2,0],[0,1,2,1]],[[1,0,3,1],[2,3,2,2],[2,3,3,1],[1,0,0,0]],[[1,0,2,2],[2,3,2,2],[2,3,3,1],[1,0,0,0]],[[1,0,2,1],[2,3,2,3],[2,3,3,1],[1,0,0,0]],[[1,2,1,1],[1,2,3,3],[1,3,1,2],[1,2,0,0]],[[1,2,1,1],[1,2,4,2],[1,3,1,2],[1,2,0,0]],[[1,2,1,2],[1,2,3,2],[1,3,1,2],[1,2,0,0]],[[1,2,1,1],[1,2,3,2],[1,3,1,3],[1,1,1,0]],[[1,2,1,1],[1,2,3,3],[1,3,1,2],[1,1,1,0]],[[1,2,1,1],[1,2,4,2],[1,3,1,2],[1,1,1,0]],[[1,2,1,2],[1,2,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,1,1],[1,2,3,2],[1,3,1,2],[1,1,0,2]],[[1,2,1,1],[1,2,3,2],[1,3,1,3],[1,1,0,1]],[[1,2,1,1],[1,2,3,3],[1,3,1,2],[1,1,0,1]],[[1,2,1,1],[1,2,4,2],[1,3,1,2],[1,1,0,1]],[[1,2,1,2],[1,2,3,2],[1,3,1,2],[1,1,0,1]],[[1,2,1,1],[1,2,3,2],[1,3,1,3],[1,0,2,0]],[[1,2,1,1],[1,2,3,3],[1,3,1,2],[1,0,2,0]],[[1,2,1,1],[1,2,4,2],[1,3,1,2],[1,0,2,0]],[[1,2,1,2],[1,2,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,1,1],[1,2,3,2],[1,3,1,2],[1,0,1,2]],[[1,2,1,1],[1,2,3,2],[1,3,1,3],[1,0,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,1,2],[1,0,1,1]],[[1,2,1,1],[1,2,4,2],[1,3,1,2],[1,0,1,1]],[[1,2,1,2],[1,2,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,1,1],[1,2,3,2],[1,3,1,3],[0,2,1,0]],[[1,2,1,1],[1,2,3,3],[1,3,1,2],[0,2,1,0]],[[1,2,1,1],[1,2,4,2],[1,3,1,2],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,1,1],[1,2,3,2],[1,3,1,2],[0,2,0,2]],[[1,2,1,1],[1,2,3,2],[1,3,1,3],[0,2,0,1]],[[1,2,1,1],[1,2,3,3],[1,3,1,2],[0,2,0,1]],[[1,2,1,1],[1,2,4,2],[1,3,1,2],[0,2,0,1]],[[1,2,1,2],[1,2,3,2],[1,3,1,2],[0,2,0,1]],[[1,2,1,1],[1,2,3,2],[1,3,1,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[1,3,1,2],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[1,3,1,2],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,2],[1,3,1,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,2],[1,3,1,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,1,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[1,3,1,2],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[1,3,1,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,1,1],[1,1,2,0]],[[1,2,1,1],[1,2,4,2],[1,3,1,1],[1,1,2,0]],[[1,2,1,2],[1,2,3,2],[1,3,1,1],[1,1,2,0]],[[1,2,1,1],[1,2,3,3],[1,3,1,1],[0,2,2,0]],[[1,2,1,1],[1,2,4,2],[1,3,1,1],[0,2,2,0]],[[1,2,1,2],[1,2,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,1,1],[1,2,3,3],[1,3,1,0],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[1,3,1,0],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[1,3,1,0],[1,1,2,1]],[[1,2,1,1],[1,2,3,3],[1,3,1,0],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[1,3,1,0],[0,2,2,1]],[[1,2,1,2],[1,2,3,2],[1,3,1,0],[0,2,2,1]],[[1,2,1,1],[1,2,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,1,1],[1,2,3,3],[1,3,0,2],[1,1,2,0]],[[1,2,1,1],[1,2,4,2],[1,3,0,2],[1,1,2,0]],[[1,2,1,2],[1,2,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,2],[1,3,0,2],[1,1,1,2]],[[1,2,1,1],[1,2,3,2],[1,3,0,3],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,0,2],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[1,3,0,2],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,1,1],[1,2,3,2],[1,3,0,2],[1,0,2,2]],[[1,2,1,1],[1,2,3,2],[1,3,0,2],[1,0,3,1]],[[1,2,1,1],[1,2,3,2],[1,3,0,3],[1,0,2,1]],[[1,2,1,1],[1,2,3,3],[1,3,0,2],[1,0,2,1]],[[1,2,1,1],[1,2,4,2],[1,3,0,2],[1,0,2,1]],[[1,2,1,2],[1,2,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,1,1],[1,2,3,2],[1,3,0,3],[0,2,2,0]],[[1,2,1,1],[1,2,3,3],[1,3,0,2],[0,2,2,0]],[[1,2,1,1],[1,2,4,2],[1,3,0,2],[0,2,2,0]],[[1,2,1,2],[1,2,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,1,1],[1,2,3,2],[1,3,0,2],[0,2,1,2]],[[1,2,1,1],[1,2,3,2],[1,3,0,3],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[1,3,0,2],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[1,3,0,2],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,1,1],[1,2,3,2],[1,3,0,2],[0,1,2,2]],[[1,2,1,1],[1,2,3,2],[1,3,0,2],[0,1,3,1]],[[1,2,1,1],[1,2,3,2],[1,3,0,3],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[1,3,0,2],[0,1,2,1]],[[1,2,1,1],[1,2,4,2],[1,3,0,2],[0,1,2,1]],[[1,2,1,2],[1,2,3,2],[1,3,0,2],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[1,3,0,1],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[1,3,0,1],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,1,1],[1,2,3,3],[1,3,0,1],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[1,3,0,1],[0,2,2,1]],[[1,2,1,2],[1,2,3,2],[1,3,0,1],[0,2,2,1]],[[1,2,1,1],[1,2,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,1,1],[1,2,3,3],[1,2,3,2],[1,0,0,1]],[[1,2,1,1],[1,2,4,2],[1,2,3,2],[1,0,0,1]],[[1,2,1,2],[1,2,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,1,1],[1,2,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,1,1],[1,2,3,3],[1,2,3,2],[0,1,0,1]],[[1,2,1,1],[1,2,4,2],[1,2,3,2],[0,1,0,1]],[[1,2,1,2],[1,2,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,1,1],[1,2,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,1,1],[1,2,3,3],[1,2,3,1],[1,1,1,0]],[[1,2,1,1],[1,2,4,2],[1,2,3,1],[1,1,1,0]],[[1,2,1,2],[1,2,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,1,1],[1,2,3,2],[1,2,4,1],[1,1,0,1]],[[1,2,1,1],[1,2,3,3],[1,2,3,1],[1,1,0,1]],[[1,2,1,1],[1,2,4,2],[1,2,3,1],[1,1,0,1]],[[1,2,1,2],[1,2,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,1,1],[1,2,3,2],[1,2,3,1],[1,0,3,0]],[[1,2,1,1],[1,2,3,2],[1,2,4,1],[1,0,2,0]],[[1,2,1,1],[1,2,3,3],[1,2,3,1],[1,0,2,0]],[[1,2,1,1],[1,2,4,2],[1,2,3,1],[1,0,2,0]],[[1,2,1,2],[1,2,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,1,1],[1,2,3,2],[1,2,4,1],[1,0,1,1]],[[1,2,1,1],[1,2,3,3],[1,2,3,1],[1,0,1,1]],[[1,2,1,1],[1,2,4,2],[1,2,3,1],[1,0,1,1]],[[1,2,1,2],[1,2,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,1,1],[1,2,3,2],[1,2,4,1],[0,2,1,0]],[[1,2,1,1],[1,2,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,1,1],[1,2,4,2],[1,2,3,1],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,1,1],[1,2,3,2],[1,2,4,1],[0,2,0,1]],[[1,2,1,1],[1,2,3,3],[1,2,3,1],[0,2,0,1]],[[1,2,1,1],[1,2,4,2],[1,2,3,1],[0,2,0,1]],[[1,2,1,2],[1,2,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,1,1],[1,2,3,2],[1,2,3,1],[0,1,3,0]],[[1,2,1,1],[1,2,3,2],[1,2,4,1],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[1,2,3,1],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[1,2,3,1],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,1,1],[1,2,3,2],[1,2,4,1],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[1,2,3,1],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[1,2,3,1],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,1,1],[1,2,3,2],[1,2,4,1],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[1,2,3,1],[0,0,2,1]],[[1,2,1,1],[1,2,4,2],[1,2,3,1],[0,0,2,1]],[[1,2,1,2],[1,2,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,1,1],[1,2,3,2],[1,2,4,0],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[1,2,3,0],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[1,2,3,0],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,1,1],[1,2,3,2],[1,2,3,0],[1,0,2,2]],[[1,2,1,1],[1,2,3,2],[1,2,3,0],[1,0,3,1]],[[1,2,1,1],[1,2,3,2],[1,2,4,0],[1,0,2,1]],[[1,2,1,1],[1,2,3,3],[1,2,3,0],[1,0,2,1]],[[1,2,1,1],[1,2,4,2],[1,2,3,0],[1,0,2,1]],[[1,2,1,2],[1,2,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,1,1],[1,2,3,2],[1,2,4,0],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[1,2,3,0],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[1,2,3,0],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,1,1],[1,2,3,2],[1,2,3,0],[0,1,2,2]],[[1,2,1,1],[1,2,3,2],[1,2,3,0],[0,1,3,1]],[[1,2,1,1],[1,2,3,2],[1,2,4,0],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[1,2,3,0],[0,1,2,1]],[[1,2,1,1],[1,2,4,2],[1,2,3,0],[0,1,2,1]],[[1,2,1,2],[1,2,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,1,1],[1,2,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,1,1],[1,2,3,3],[1,2,2,2],[1,1,1,0]],[[1,2,1,1],[1,2,4,2],[1,2,2,2],[1,1,1,0]],[[1,2,1,2],[1,2,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,1,1],[1,2,3,2],[1,2,2,2],[1,1,0,2]],[[1,2,1,1],[1,2,3,2],[1,2,2,3],[1,1,0,1]],[[1,2,1,1],[1,2,3,3],[1,2,2,2],[1,1,0,1]],[[1,2,1,1],[1,2,4,2],[1,2,2,2],[1,1,0,1]],[[1,2,1,2],[1,2,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,1,1],[1,2,3,2],[1,2,2,3],[1,0,2,0]],[[1,2,1,1],[1,2,3,3],[1,2,2,2],[1,0,2,0]],[[1,2,1,1],[1,2,4,2],[1,2,2,2],[1,0,2,0]],[[1,2,1,2],[1,2,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,1,1],[1,2,3,2],[1,2,2,2],[1,0,1,2]],[[1,2,1,1],[1,2,3,2],[1,2,2,3],[1,0,1,1]],[[1,2,1,1],[1,2,3,3],[1,2,2,2],[1,0,1,1]],[[1,2,1,1],[1,2,4,2],[1,2,2,2],[1,0,1,1]],[[1,2,1,2],[1,2,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,1,1],[1,2,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,1,1],[1,2,3,3],[1,2,2,2],[0,2,1,0]],[[1,2,1,1],[1,2,4,2],[1,2,2,2],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,1,1],[1,2,3,2],[1,2,2,2],[0,2,0,2]],[[1,2,1,1],[1,2,3,2],[1,2,2,3],[0,2,0,1]],[[1,2,1,1],[1,2,3,3],[1,2,2,2],[0,2,0,1]],[[1,2,1,1],[1,2,4,2],[1,2,2,2],[0,2,0,1]],[[1,2,1,2],[1,2,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,1,1],[1,2,3,2],[1,2,2,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[1,2,2,2],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[1,2,2,2],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,2],[1,2,2,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,2],[1,2,2,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[1,2,2,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[1,2,2,2],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,2],[1,2,2,2],[0,0,2,2]],[[1,2,1,1],[1,2,3,2],[1,2,2,3],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[1,2,2,2],[0,0,2,1]],[[1,2,1,1],[1,2,4,2],[1,2,2,2],[0,0,2,1]],[[1,2,1,2],[1,2,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,1,1],[1,2,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,1,1],[1,2,3,2],[1,2,1,2],[1,0,3,1]],[[1,2,1,1],[1,2,3,2],[1,2,1,3],[1,0,2,1]],[[1,2,1,1],[1,2,3,3],[1,2,1,2],[1,0,2,1]],[[1,2,1,1],[1,2,4,2],[1,2,1,2],[1,0,2,1]],[[1,2,1,2],[1,2,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,1,1],[1,2,3,2],[1,2,1,2],[0,1,2,2]],[[1,2,1,1],[1,2,3,2],[1,2,1,2],[0,1,3,1]],[[1,2,1,1],[1,2,3,2],[1,2,1,3],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[1,2,1,2],[0,1,2,1]],[[1,2,1,1],[1,2,4,2],[1,2,1,2],[0,1,2,1]],[[1,2,1,2],[1,2,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,1,1],[1,2,3,2],[1,2,0,2],[0,2,2,2]],[[1,2,1,1],[1,2,3,2],[1,2,0,2],[0,2,3,1]],[[1,2,1,1],[1,2,3,2],[1,2,0,2],[0,3,2,1]],[[1,2,1,1],[1,2,3,2],[1,2,0,3],[0,2,2,1]],[[1,2,1,1],[1,2,3,3],[1,2,0,2],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[1,2,0,2],[0,2,2,1]],[[1,2,1,2],[1,2,3,2],[1,2,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,0,3,3],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,0,3,2],[1,2,3,1]],[[1,0,2,1],[2,3,3,0],[0,0,3,2],[1,2,2,2]],[[1,0,2,1],[2,3,3,0],[0,1,2,3],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,1,2,2],[2,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,1,2,2],[1,3,2,1]],[[1,0,2,1],[2,3,3,0],[0,1,2,2],[1,2,3,1]],[[1,0,2,1],[2,3,3,0],[0,1,2,2],[1,2,2,2]],[[2,0,2,1],[2,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,0,3,1],[2,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,0,2,2],[2,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,0,2,1],[3,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,4,3,0],[0,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,3,4,0],[0,1,3,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,1,4,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,1,3,1],[2,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,1,3,1],[1,3,2,1]],[[1,0,2,1],[2,3,3,0],[0,1,3,1],[1,2,3,1]],[[1,0,2,1],[2,3,3,0],[0,1,3,1],[1,2,2,2]],[[2,0,2,1],[2,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,0,3,1],[2,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,0,2,2],[2,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,0,2,1],[3,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,0,2,1],[2,4,3,0],[0,1,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,4,0],[0,1,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[0,1,4,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[0,1,3,3],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[0,1,3,2],[1,2,1,2]],[[2,0,2,1],[2,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,0,3,1],[2,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,0,2,1],[3,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,4,3,0],[0,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,4,0],[0,1,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[0,1,4,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[0,1,3,3],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[0,1,3,2],[2,2,2,0]],[[1,0,2,1],[2,3,3,0],[0,1,3,2],[1,3,2,0]],[[1,0,2,1],[2,3,3,0],[0,1,3,2],[1,2,3,0]],[[1,0,2,1],[2,3,3,0],[0,2,2,3],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[0,2,2,2],[1,1,3,1]],[[1,0,2,1],[2,3,3,0],[0,2,2,2],[1,1,2,2]],[[2,0,2,1],[2,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,0,3,1],[2,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,0,2,2],[2,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,0,2,1],[3,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,0,2,1],[2,4,3,0],[0,2,3,1],[1,1,2,1]],[[1,0,2,1],[2,3,4,0],[0,2,3,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[0,2,4,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[0,2,3,1],[1,1,3,1]],[[1,0,2,1],[2,3,3,0],[0,2,3,1],[1,1,2,2]],[[2,0,2,1],[2,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,0,3,1],[2,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,0,2,2],[2,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,0,2,1],[3,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,4,3,0],[0,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,4,0],[0,2,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[0,2,4,1],[1,2,1,1]],[[1,0,3,1],[2,3,3,0],[0,2,3,2],[1,0,2,1]],[[1,0,2,2],[2,3,3,0],[0,2,3,2],[1,0,2,1]],[[1,0,2,1],[2,4,3,0],[0,2,3,2],[1,0,2,1]],[[1,0,2,1],[2,3,4,0],[0,2,3,2],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[0,2,4,2],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[0,2,3,3],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[0,2,3,2],[1,0,2,2]],[[2,0,2,1],[2,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,0,2,1],[3,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,0,2,1],[2,4,3,0],[0,2,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,4,0],[0,2,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[0,2,4,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[0,2,3,3],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[0,2,3,2],[1,1,1,2]],[[2,0,2,1],[2,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,0,2,1],[3,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,0,2,1],[2,4,3,0],[0,2,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,4,0],[0,2,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[0,2,4,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[0,2,3,3],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[0,2,3,2],[1,1,3,0]],[[2,0,2,1],[2,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,0,2,1],[3,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,4,3,0],[0,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,4,0],[0,2,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[0,2,4,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[0,2,3,3],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[0,2,3,2],[1,2,0,2]],[[2,0,2,1],[2,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,0,3,1],[2,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,0,2,1],[3,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,4,3,0],[0,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,4,0],[0,2,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[0,2,4,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[0,2,3,3],[1,2,1,0]],[[1,2,1,1],[1,2,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,1,1],[1,2,3,3],[1,1,3,2],[1,0,2,0]],[[1,2,1,1],[1,2,4,2],[1,1,3,2],[1,0,2,0]],[[1,2,1,2],[1,2,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,1,1],[1,2,3,2],[1,1,3,2],[1,0,1,2]],[[1,2,1,1],[1,2,3,2],[1,1,3,3],[1,0,1,1]],[[2,0,2,1],[2,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,0,2,2],[2,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[3,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,4,3,0],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,4,0],[0,3,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,4,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,0,3],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,0,2],[2,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,0,2],[1,3,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,0,2],[1,2,3,1]],[[1,0,2,1],[2,3,3,0],[0,3,0,2],[1,2,2,2]],[[2,0,2,1],[2,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,0,3,1],[2,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,0,2,2],[2,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,0,2,1],[3,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,0,2,1],[2,4,3,0],[0,3,1,1],[1,2,2,1]],[[1,0,2,1],[2,3,4,0],[0,3,1,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,4,1,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,1,1],[2,2,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,1,1],[1,3,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,1,1],[1,2,3,1]],[[1,0,2,1],[2,3,3,0],[0,3,1,1],[1,2,2,2]],[[2,0,2,1],[2,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,0,3,1],[2,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,0,2,1],[3,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,0,2,1],[2,4,3,0],[0,3,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,4,0],[0,3,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[0,4,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[0,3,1,2],[2,2,2,0]],[[1,0,2,1],[2,3,3,0],[0,3,1,2],[1,3,2,0]],[[1,0,2,1],[2,3,3,0],[0,3,1,2],[1,2,3,0]],[[2,0,2,1],[2,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,0,3,1],[2,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,0,2,2],[2,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,0,2,1],[3,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,4,3,0],[0,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,3,4,0],[0,3,2,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[0,4,2,1],[1,1,2,1]],[[2,0,2,1],[2,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,0,3,1],[2,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,0,2,2],[2,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,0,2,1],[3,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,0,2,1],[2,4,3,0],[0,3,2,1],[1,2,1,1]],[[1,0,2,1],[2,3,4,0],[0,3,2,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[0,4,2,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[0,3,2,1],[2,2,1,1]],[[1,0,2,1],[2,3,3,0],[0,3,2,1],[1,3,1,1]],[[1,0,2,1],[2,3,3,0],[0,3,2,3],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,2,2],[0,1,3,1]],[[1,0,2,1],[2,3,3,0],[0,3,2,2],[0,1,2,2]],[[2,0,2,1],[2,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,0,2,1],[3,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,0,2,1],[2,4,3,0],[0,3,2,2],[1,1,1,1]],[[1,0,2,1],[2,3,4,0],[0,3,2,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[0,4,2,2],[1,1,1,1]],[[2,0,2,1],[2,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,0,2,1],[3,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,4,3,0],[0,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,4,0],[0,3,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[0,4,2,2],[1,1,2,0]],[[2,0,2,1],[2,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,0,2,1],[3,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,0,2,1],[2,4,3,0],[0,3,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,4,0],[0,3,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[0,4,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[0,3,2,2],[2,2,0,1]],[[1,0,2,1],[2,3,3,0],[0,3,2,2],[1,3,0,1]],[[2,0,2,1],[2,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,0,3,1],[2,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,0,2,1],[3,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,0,2,1],[2,4,3,0],[0,3,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,4,0],[0,3,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[0,4,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[0,3,2,2],[2,2,1,0]],[[1,0,2,1],[2,3,3,0],[0,3,2,2],[1,3,1,0]],[[1,2,1,1],[1,2,3,3],[1,1,3,2],[1,0,1,1]],[[1,2,1,1],[1,2,4,2],[1,1,3,2],[1,0,1,1]],[[1,2,1,2],[1,2,3,2],[1,1,3,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,0],[0,3,3,1],[0,1,2,1]],[[1,0,2,2],[2,3,3,0],[0,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,4,3,0],[0,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,4,0],[0,3,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,4,1],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,3,1],[0,1,3,1]],[[1,0,2,1],[2,3,3,0],[0,3,3,1],[0,1,2,2]],[[1,0,3,1],[2,3,3,0],[0,3,3,1],[0,2,1,1]],[[1,0,2,2],[2,3,3,0],[0,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,4,3,0],[0,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,4,0],[0,3,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[0,3,4,1],[0,2,1,1]],[[1,2,1,1],[1,2,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[1,1,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[1,1,3,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,0],[0,3,3,2],[0,0,2,1]],[[1,0,2,2],[2,3,3,0],[0,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,4,3,0],[0,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,4,0],[0,3,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,4,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,3,3],[0,0,2,1]],[[1,0,2,1],[2,3,3,0],[0,3,3,2],[0,0,2,2]],[[1,0,3,1],[2,3,3,0],[0,3,3,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,0],[0,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,4,3,0],[0,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,0],[0,3,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[0,3,4,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[0,3,3,3],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[0,3,3,2],[0,1,1,2]],[[1,0,3,1],[2,3,3,0],[0,3,3,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,0],[0,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,4,3,0],[0,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,0],[0,3,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[0,3,4,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[0,3,3,3],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[0,3,3,2],[0,1,3,0]],[[1,0,3,1],[2,3,3,0],[0,3,3,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,0],[0,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,0],[0,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,4,0],[0,3,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[0,3,4,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[0,3,3,3],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[0,3,3,2],[0,2,0,2]],[[1,0,3,1],[2,3,3,0],[0,3,3,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,0],[0,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,0],[0,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,4,0],[0,3,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,0],[0,3,4,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,0],[0,3,3,3],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,2],[1,1,3,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,2],[1,1,3,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[1,1,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[1,1,3,2],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,2],[1,1,3,2],[0,0,2,2]],[[1,2,1,1],[1,2,3,2],[1,1,3,3],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[1,1,3,2],[0,0,2,1]],[[1,2,1,1],[1,2,4,2],[1,1,3,2],[0,0,2,1]],[[1,2,1,2],[1,2,3,2],[1,1,3,2],[0,0,2,1]],[[2,0,2,1],[2,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,0,3,1],[2,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,0,2,2],[2,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,0,2,1],[3,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,4,3,0],[0,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,3,4,0],[0,3,3,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,0],[0,4,3,2],[1,2,0,0]],[[1,2,1,1],[1,2,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,1,1],[1,2,3,2],[1,1,3,1],[0,3,2,0]],[[1,2,1,1],[1,2,3,2],[1,1,4,1],[0,2,2,0]],[[1,2,1,1],[1,2,3,3],[1,1,3,1],[0,2,2,0]],[[1,2,1,1],[1,2,4,2],[1,1,3,1],[0,2,2,0]],[[1,2,1,2],[1,2,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,1,1],[1,2,3,2],[1,1,4,1],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[1,1,3,1],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[1,1,3,1],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,1,1],[1,2,3,2],[1,1,3,0],[0,2,2,2]],[[1,2,1,1],[1,2,3,2],[1,1,3,0],[0,2,3,1]],[[1,2,1,1],[1,2,3,2],[1,1,3,0],[0,3,2,1]],[[1,2,1,1],[1,2,3,2],[1,1,4,0],[0,2,2,1]],[[1,2,1,1],[1,2,3,3],[1,1,3,0],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[1,1,3,0],[0,2,2,1]],[[1,2,1,2],[1,2,3,2],[1,1,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,0,2,3],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,0,2,2],[2,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,0,2,2],[1,3,2,1]],[[1,0,2,1],[2,3,3,0],[1,0,2,2],[1,2,3,1]],[[1,0,2,1],[2,3,3,0],[1,0,2,2],[1,2,2,2]],[[2,0,2,1],[2,3,3,0],[1,0,3,1],[1,2,2,1]],[[1,0,3,1],[2,3,3,0],[1,0,3,1],[1,2,2,1]],[[1,0,2,2],[2,3,3,0],[1,0,3,1],[1,2,2,1]],[[1,0,2,1],[3,3,3,0],[1,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,4,3,0],[1,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,3,4,0],[1,0,3,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,0,4,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,0,3,1],[2,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,0,3,1],[1,3,2,1]],[[1,0,2,1],[2,3,3,0],[1,0,3,1],[1,2,3,1]],[[1,0,2,1],[2,3,3,0],[1,0,3,1],[1,2,2,2]],[[1,0,2,1],[2,3,3,0],[1,0,3,3],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,0,3,2],[0,2,3,1]],[[1,0,2,1],[2,3,3,0],[1,0,3,2],[0,2,2,2]],[[2,0,2,1],[2,3,3,0],[1,0,3,2],[1,2,1,1]],[[1,0,3,1],[2,3,3,0],[1,0,3,2],[1,2,1,1]],[[1,0,2,2],[2,3,3,0],[1,0,3,2],[1,2,1,1]],[[1,0,2,1],[3,3,3,0],[1,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,4,3,0],[1,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,4,0],[1,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[1,0,4,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[1,0,3,3],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[1,0,3,2],[1,2,1,2]],[[2,0,2,1],[2,3,3,0],[1,0,3,2],[1,2,2,0]],[[1,0,3,1],[2,3,3,0],[1,0,3,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,0],[1,0,3,2],[1,2,2,0]],[[1,0,2,1],[3,3,3,0],[1,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,4,3,0],[1,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,4,0],[1,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[1,0,4,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[1,0,3,3],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[1,0,3,2],[2,2,2,0]],[[1,0,2,1],[2,3,3,0],[1,0,3,2],[1,3,2,0]],[[1,0,2,1],[2,3,3,0],[1,0,3,2],[1,2,3,0]],[[1,0,2,1],[2,3,3,0],[1,1,2,3],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,1,2,2],[0,3,2,1]],[[1,0,2,1],[2,3,3,0],[1,1,2,2],[0,2,3,1]],[[1,0,2,1],[2,3,3,0],[1,1,2,2],[0,2,2,2]],[[2,0,2,1],[2,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,0,3,1],[2,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,0,2,2],[2,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,0,2,1],[3,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,0,2,1],[2,4,3,0],[1,1,3,1],[0,2,2,1]],[[1,0,2,1],[2,3,4,0],[1,1,3,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,1,4,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,1,3,1],[0,3,2,1]],[[1,0,2,1],[2,3,3,0],[1,1,3,1],[0,2,3,1]],[[1,0,2,1],[2,3,3,0],[1,1,3,1],[0,2,2,2]],[[2,0,2,1],[2,3,3,0],[1,1,3,2],[0,2,1,1]],[[1,0,3,1],[2,3,3,0],[1,1,3,2],[0,2,1,1]],[[1,0,2,2],[2,3,3,0],[1,1,3,2],[0,2,1,1]],[[1,0,2,1],[3,3,3,0],[1,1,3,2],[0,2,1,1]],[[1,0,2,1],[2,4,3,0],[1,1,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,4,0],[1,1,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[1,1,4,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[1,1,3,3],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[1,1,3,2],[0,2,1,2]],[[2,0,2,1],[2,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,0,3,1],[2,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,0,2,2],[2,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,0,2,1],[3,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,0,2,1],[2,4,3,0],[1,1,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,4,0],[1,1,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,0],[1,1,4,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,0],[1,1,3,3],[0,2,2,0]],[[1,0,2,1],[2,3,3,0],[1,1,3,2],[0,3,2,0]],[[1,0,2,1],[2,3,3,0],[1,1,3,2],[0,2,3,0]],[[1,0,2,1],[2,3,3,0],[1,2,2,3],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[1,2,2,2],[0,1,3,1]],[[1,0,2,1],[2,3,3,0],[1,2,2,2],[0,1,2,2]],[[1,0,2,1],[2,3,3,0],[1,2,2,3],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[1,2,2,2],[1,0,3,1]],[[1,0,2,1],[2,3,3,0],[1,2,2,2],[1,0,2,2]],[[1,2,1,1],[1,2,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,1,1],[1,2,3,3],[1,1,2,2],[0,2,2,0]],[[1,2,1,1],[1,2,4,2],[1,1,2,2],[0,2,2,0]],[[2,0,2,1],[2,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,0,3,1],[2,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,0,2,2],[2,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,0,2,1],[3,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,0,2,1],[2,4,3,0],[1,2,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,4,0],[1,2,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[1,2,4,1],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,1],[0,1,3,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,1],[0,1,2,2]],[[2,0,2,1],[2,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,0,3,1],[2,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,0,2,2],[2,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,0,2,1],[3,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,4,3,0],[1,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,4,0],[1,2,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[1,2,4,1],[0,2,1,1]],[[2,0,2,1],[2,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,0,3,1],[2,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,0,2,2],[2,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,0,2,1],[3,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,4,3,0],[1,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,4,0],[1,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[1,2,4,1],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,1],[1,0,3,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,1],[1,0,2,2]],[[2,0,2,1],[2,3,3,0],[1,2,3,1],[1,1,1,1]],[[1,0,3,1],[2,3,3,0],[1,2,3,1],[1,1,1,1]],[[1,0,2,2],[2,3,3,0],[1,2,3,1],[1,1,1,1]],[[1,0,2,1],[3,3,3,0],[1,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,4,3,0],[1,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,4,0],[1,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[1,2,4,1],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,1,1],[1,2,3,2],[1,1,2,2],[0,2,1,2]],[[1,2,1,1],[1,2,3,2],[1,1,2,3],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[1,1,2,2],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[1,1,2,2],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[1,1,2,2],[0,2,1,1]],[[2,0,2,1],[2,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,0,3,1],[2,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,0,2,2],[2,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,0,2,1],[3,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,0,2,1],[2,4,3,0],[1,2,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,4,0],[1,2,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,0],[1,2,4,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,3],[0,0,2,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,2],[0,0,2,2]],[[2,0,2,1],[2,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,0,2,1],[3,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,0,2,1],[2,4,3,0],[1,2,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,0],[1,2,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[1,2,4,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,3],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,2],[0,1,1,2]],[[2,0,2,1],[2,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,0,2,1],[3,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,0,2,1],[2,4,3,0],[1,2,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,0],[1,2,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[1,2,4,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[1,2,3,3],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[1,2,3,2],[0,1,3,0]],[[2,0,2,1],[2,3,3,0],[1,2,3,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,0],[1,2,3,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,0],[1,2,3,2],[0,2,0,1]],[[1,0,2,1],[3,3,3,0],[1,2,3,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,0],[1,2,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,4,0],[1,2,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[1,2,4,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,3],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,2],[0,2,0,2]],[[2,0,2,1],[2,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,0,3,1],[2,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,0,2,1],[3,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,0],[1,2,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,4,0],[1,2,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,0],[1,2,4,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,0],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[1,2,3,2],[1,1,1,2],[0,2,2,2]],[[1,2,1,1],[1,2,3,2],[1,1,1,2],[0,2,3,1]],[[1,2,1,1],[1,2,3,2],[1,1,1,2],[0,3,2,1]],[[1,2,1,1],[1,2,3,2],[1,1,1,3],[0,2,2,1]],[[1,2,1,1],[1,2,3,3],[1,1,1,2],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[1,1,1,2],[0,2,2,1]],[[1,2,1,2],[1,2,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,1,1],[1,2,3,2],[1,1,0,2],[1,2,2,2]],[[2,0,2,1],[2,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,0,2,1],[3,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,0,2,1],[2,4,3,0],[1,2,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,0],[1,2,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,0],[1,2,4,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,3],[1,0,1,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,2],[1,0,1,2]],[[2,0,2,1],[2,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,0,2,1],[3,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,0,2,1],[2,4,3,0],[1,2,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,0],[1,2,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,0],[1,2,4,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,0],[1,2,3,3],[1,0,2,0]],[[1,0,2,1],[2,3,3,0],[1,2,3,2],[1,0,3,0]],[[2,0,2,1],[2,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,0,2,1],[3,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,4,3,0],[1,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,4,0],[1,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[1,2,4,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,3],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[1,2,3,2],[1,1,0,2]],[[2,0,2,1],[2,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,0,3,1],[2,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,0,2,1],[3,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,0,2,1],[2,4,3,0],[1,2,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,4,0],[1,2,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,0],[1,2,4,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,0],[1,2,3,3],[1,1,1,0]],[[1,2,1,1],[1,2,3,2],[1,1,0,2],[1,2,3,1]],[[1,2,1,1],[1,2,3,2],[1,1,0,2],[1,3,2,1]],[[1,2,1,1],[1,2,3,2],[1,1,0,2],[2,2,2,1]],[[1,2,1,1],[1,2,3,2],[1,1,0,3],[1,2,2,1]],[[1,2,1,1],[1,2,3,3],[1,1,0,2],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[1,1,0,2],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[1,1,0,2],[1,2,2,1]],[[1,2,1,1],[1,2,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,1,1],[1,2,3,3],[1,0,3,2],[0,2,2,0]],[[1,2,1,1],[1,2,4,2],[1,0,3,2],[0,2,2,0]],[[1,2,1,2],[1,2,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,1,1],[1,2,3,2],[1,0,3,2],[0,2,1,2]],[[1,2,1,1],[1,2,3,2],[1,0,3,3],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[1,0,3,2],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[1,0,3,2],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,1,1],[1,2,3,2],[1,0,3,2],[0,1,2,2]],[[2,0,2,1],[2,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,0,3,1],[2,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,0,2,2],[2,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[3,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,4,3,0],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,4,0],[1,3,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,4,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,3,0,3],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,3,0,2],[0,3,2,1]],[[1,0,2,1],[2,3,3,0],[1,3,0,2],[0,2,3,1]],[[1,0,2,1],[2,3,3,0],[1,3,0,2],[0,2,2,2]],[[2,0,2,1],[2,3,3,0],[1,3,0,2],[1,1,2,1]],[[1,0,3,1],[2,3,3,0],[1,3,0,2],[1,1,2,1]],[[1,0,2,2],[2,3,3,0],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[3,3,3,0],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,4,3,0],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,4,0],[1,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[1,4,0,2],[1,1,2,1]],[[2,0,2,1],[2,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,0,3,1],[2,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,0,2,2],[2,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,0,2,1],[3,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,0,2,1],[2,4,3,0],[1,3,1,1],[0,2,2,1]],[[1,0,2,1],[2,3,4,0],[1,3,1,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,4,1,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[1,3,1,1],[0,3,2,1]],[[1,0,2,1],[2,3,3,0],[1,3,1,1],[0,2,3,1]],[[1,0,2,1],[2,3,3,0],[1,3,1,1],[0,2,2,2]],[[2,0,2,1],[2,3,3,0],[1,3,1,1],[1,1,2,1]],[[1,0,3,1],[2,3,3,0],[1,3,1,1],[1,1,2,1]],[[1,0,2,2],[2,3,3,0],[1,3,1,1],[1,1,2,1]],[[1,0,2,1],[3,3,3,0],[1,3,1,1],[1,1,2,1]],[[1,0,2,1],[2,4,3,0],[1,3,1,1],[1,1,2,1]],[[1,0,2,1],[2,3,4,0],[1,3,1,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[1,4,1,1],[1,1,2,1]],[[2,0,2,1],[2,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,0,3,1],[2,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,0,2,2],[2,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,0,2,1],[3,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,0,2,1],[2,4,3,0],[1,3,1,2],[0,2,2,0]],[[1,0,2,1],[2,3,4,0],[1,3,1,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,0],[1,4,1,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,0],[1,3,1,2],[0,3,2,0]],[[1,0,2,1],[2,3,3,0],[1,3,1,2],[0,2,3,0]],[[2,0,2,1],[2,3,3,0],[1,3,1,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,0],[1,3,1,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,0],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[3,3,3,0],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[2,4,3,0],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[2,3,4,0],[1,3,1,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[1,4,1,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,2],[1,0,3,3],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[1,0,3,2],[0,1,2,1]],[[1,2,1,1],[1,2,4,2],[1,0,3,2],[0,1,2,1]],[[1,2,1,2],[1,2,3,2],[1,0,3,2],[0,1,2,1]],[[2,0,2,1],[2,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,0,3,1],[2,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,0,2,2],[2,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,0,2,1],[3,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,0,2,1],[2,4,3,0],[1,3,2,1],[0,1,2,1]],[[1,0,2,1],[2,3,4,0],[1,3,2,1],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[1,4,2,1],[0,1,2,1]],[[2,0,2,1],[2,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,0,3,1],[2,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,0,2,2],[2,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,0,2,1],[3,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,0,2,1],[2,4,3,0],[1,3,2,1],[0,2,1,1]],[[1,0,2,1],[2,3,4,0],[1,3,2,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[1,4,2,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[1,3,2,1],[0,3,1,1]],[[2,0,2,1],[2,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,0,3,1],[2,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,0,2,2],[2,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,0,2,1],[3,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,0,2,1],[2,4,3,0],[1,3,2,1],[1,0,2,1]],[[1,0,2,1],[2,3,4,0],[1,3,2,1],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[1,4,2,1],[1,0,2,1]],[[2,0,2,1],[2,3,3,0],[1,3,2,1],[1,1,1,1]],[[1,0,3,1],[2,3,3,0],[1,3,2,1],[1,1,1,1]],[[1,0,2,2],[2,3,3,0],[1,3,2,1],[1,1,1,1]],[[1,0,2,1],[3,3,3,0],[1,3,2,1],[1,1,1,1]],[[1,0,2,1],[2,4,3,0],[1,3,2,1],[1,1,1,1]],[[1,0,2,1],[2,3,4,0],[1,3,2,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[1,4,2,1],[1,1,1,1]],[[2,0,2,1],[2,3,3,0],[1,3,2,1],[1,2,0,1]],[[1,0,2,1],[3,3,3,0],[1,3,2,1],[1,2,0,1]],[[1,0,2,1],[2,4,3,0],[1,3,2,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[1,4,2,1],[1,2,0,1]],[[1,2,1,1],[1,2,3,2],[1,0,3,1],[1,2,3,0]],[[1,2,1,1],[1,2,3,2],[1,0,3,1],[1,3,2,0]],[[1,2,1,1],[1,2,3,2],[1,0,3,1],[2,2,2,0]],[[1,2,1,1],[1,2,3,2],[1,0,4,1],[1,2,2,0]],[[1,2,1,1],[1,2,3,3],[1,0,3,1],[1,2,2,0]],[[1,2,1,1],[1,2,4,2],[1,0,3,1],[1,2,2,0]],[[1,2,1,2],[1,2,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,1,1],[1,2,3,2],[1,0,4,1],[1,2,1,1]],[[1,2,1,1],[1,2,3,3],[1,0,3,1],[1,2,1,1]],[[1,2,1,1],[1,2,4,2],[1,0,3,1],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[1,0,3,1],[1,2,1,1]],[[2,0,2,1],[2,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,0,2,1],[3,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,4,3,0],[1,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,0],[1,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[1,4,2,2],[0,1,1,1]],[[2,0,2,1],[2,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,0,2,1],[3,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,4,3,0],[1,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,0],[1,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[1,4,2,2],[0,1,2,0]],[[2,0,2,1],[2,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,0,2,1],[3,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,0],[1,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,4,0],[1,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[1,4,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[1,3,2,2],[0,3,0,1]],[[2,0,2,1],[2,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,0,3,1],[2,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,0,2,1],[3,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,0],[1,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,4,0],[1,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,0],[1,4,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,0],[1,3,2,2],[0,3,1,0]],[[1,2,1,1],[1,2,3,2],[1,0,3,0],[1,2,2,2]],[[1,2,1,1],[1,2,3,2],[1,0,3,0],[1,2,3,1]],[[1,2,1,1],[1,2,3,2],[1,0,3,0],[1,3,2,1]],[[1,2,1,1],[1,2,3,2],[1,0,3,0],[2,2,2,1]],[[1,2,1,1],[1,2,3,2],[1,0,4,0],[1,2,2,1]],[[1,2,1,1],[1,2,3,3],[1,0,3,0],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[1,0,3,0],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[1,0,3,0],[1,2,2,1]],[[2,0,2,1],[2,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,0,2,1],[3,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,0,2,1],[2,4,3,0],[1,3,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,0],[1,3,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,0],[1,4,2,2],[1,0,1,1]],[[2,0,2,1],[2,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,0,2,1],[3,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,0,2,1],[2,4,3,0],[1,3,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,0],[1,3,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,0],[1,4,2,2],[1,0,2,0]],[[2,0,2,1],[2,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,0,2,1],[3,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,0,2,1],[2,4,3,0],[1,3,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,4,0],[1,3,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[1,4,2,2],[1,1,0,1]],[[2,0,2,1],[2,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,0,3,1],[2,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,0,2,1],[3,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,0,2,1],[2,4,3,0],[1,3,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,4,0],[1,3,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,0],[1,4,2,2],[1,1,1,0]],[[1,2,1,1],[1,2,3,2],[1,0,2,3],[1,2,2,0]],[[1,2,1,1],[1,2,3,3],[1,0,2,2],[1,2,2,0]],[[1,2,1,1],[1,2,4,2],[1,0,2,2],[1,2,2,0]],[[1,2,1,2],[1,2,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,1,1],[1,2,3,2],[1,0,2,2],[1,2,1,2]],[[2,0,2,1],[2,3,3,0],[1,3,2,2],[1,2,0,0]],[[1,0,3,1],[2,3,3,0],[1,3,2,2],[1,2,0,0]],[[1,0,2,2],[2,3,3,0],[1,3,2,2],[1,2,0,0]],[[1,0,2,1],[3,3,3,0],[1,3,2,2],[1,2,0,0]],[[1,0,2,1],[2,4,3,0],[1,3,2,2],[1,2,0,0]],[[1,0,2,1],[2,3,4,0],[1,3,2,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,0],[1,4,2,2],[1,2,0,0]],[[1,2,1,1],[1,2,3,2],[1,0,2,3],[1,2,1,1]],[[1,2,1,1],[1,2,3,3],[1,0,2,2],[1,2,1,1]],[[1,2,1,1],[1,2,4,2],[1,0,2,2],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,1,1],[1,2,3,2],[1,0,2,2],[0,2,2,2]],[[1,2,1,1],[1,2,3,2],[1,0,2,2],[0,2,3,1]],[[1,2,1,1],[1,2,3,2],[1,0,2,3],[0,2,2,1]],[[1,2,1,1],[1,2,3,3],[1,0,2,2],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[1,0,2,2],[0,2,2,1]],[[1,2,1,2],[1,2,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,1,1],[1,2,3,2],[1,0,1,2],[1,2,2,2]],[[1,2,1,1],[1,2,3,2],[1,0,1,2],[1,2,3,1]],[[1,2,1,1],[1,2,3,2],[1,0,1,2],[1,3,2,1]],[[1,2,1,1],[1,2,3,2],[1,0,1,2],[2,2,2,1]],[[1,2,1,1],[1,2,3,2],[1,0,1,3],[1,2,2,1]],[[1,2,1,1],[1,2,3,3],[1,0,1,2],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[1,0,1,2],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[1,0,1,2],[1,2,2,1]],[[2,0,2,1],[2,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,0,3,1],[2,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,0,2,2],[2,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,0,2,1],[3,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,4,3,0],[1,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,4,0],[1,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,3,0],[1,3,4,1],[0,0,2,1]],[[1,2,1,1],[1,2,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,1,1],[1,2,3,3],[0,3,3,2],[0,1,0,1]],[[1,2,1,1],[1,2,4,2],[0,3,3,2],[0,1,0,1]],[[1,2,1,2],[1,2,3,2],[0,3,3,2],[0,1,0,1]],[[1,2,1,1],[1,2,3,3],[0,3,3,1],[1,2,0,0]],[[1,2,1,1],[1,2,4,2],[0,3,3,1],[1,2,0,0]],[[1,2,1,2],[1,2,3,2],[0,3,3,1],[1,2,0,0]],[[2,0,2,1],[2,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,0,3,1],[2,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,0,2,2],[2,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,0,2,1],[3,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,0,2,1],[2,4,3,0],[1,3,3,2],[0,0,1,1]],[[1,0,2,1],[2,3,4,0],[1,3,3,2],[0,0,1,1]],[[1,0,2,1],[2,3,3,0],[1,3,4,2],[0,0,1,1]],[[1,0,2,1],[2,3,3,0],[1,3,3,3],[0,0,1,1]],[[1,0,2,1],[2,3,3,0],[1,3,3,2],[0,0,1,2]],[[2,0,2,1],[2,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,0,3,1],[2,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,0,2,2],[2,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,0,2,1],[3,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,0,2,1],[2,4,3,0],[1,3,3,2],[0,0,2,0]],[[1,0,2,1],[2,3,4,0],[1,3,3,2],[0,0,2,0]],[[1,0,2,1],[2,3,3,0],[1,3,4,2],[0,0,2,0]],[[1,0,2,1],[2,3,3,0],[1,3,3,3],[0,0,2,0]],[[2,0,2,1],[2,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,0,3,1],[2,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,0,2,2],[2,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,0,2,1],[3,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,0,2,1],[2,4,3,0],[1,3,3,2],[0,2,0,0]],[[1,0,2,1],[2,3,4,0],[1,3,3,2],[0,2,0,0]],[[1,0,2,1],[2,3,3,0],[1,4,3,2],[0,2,0,0]],[[1,2,1,1],[1,2,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,1,1],[1,2,3,3],[0,3,3,1],[0,2,1,0]],[[1,2,1,1],[1,2,4,2],[0,3,3,1],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[0,3,3,1],[0,2,1,0]],[[1,2,1,1],[1,2,3,2],[0,3,4,1],[0,2,0,1]],[[1,2,1,1],[1,2,3,3],[0,3,3,1],[0,2,0,1]],[[1,2,1,1],[1,2,4,2],[0,3,3,1],[0,2,0,1]],[[1,2,1,2],[1,2,3,2],[0,3,3,1],[0,2,0,1]],[[1,2,1,1],[1,2,3,2],[0,3,3,1],[0,1,3,0]],[[1,2,1,1],[1,2,3,2],[0,3,4,1],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[0,3,3,1],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[0,3,3,1],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[0,3,3,1],[0,1,2,0]],[[1,2,1,1],[1,2,3,2],[0,3,4,1],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[0,3,3,1],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[0,3,3,1],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[0,3,3,1],[0,1,1,1]],[[1,2,1,1],[1,2,3,2],[0,3,4,1],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[0,3,3,1],[0,0,2,1]],[[1,2,1,1],[1,2,4,2],[0,3,3,1],[0,0,2,1]],[[1,2,1,2],[1,2,3,2],[0,3,3,1],[0,0,2,1]],[[2,0,2,1],[2,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,0,3,1],[2,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,0,2,2],[2,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,0,2,1],[3,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,0,2,1],[2,4,3,0],[1,3,3,2],[1,1,0,0]],[[1,0,2,1],[2,3,4,0],[1,3,3,2],[1,1,0,0]],[[1,0,2,1],[2,3,3,0],[1,4,3,2],[1,1,0,0]],[[1,2,1,1],[1,2,3,2],[0,3,4,0],[0,2,1,1]],[[1,2,1,1],[1,2,3,3],[0,3,3,0],[0,2,1,1]],[[1,2,1,1],[1,2,4,2],[0,3,3,0],[0,2,1,1]],[[1,2,1,2],[1,2,3,2],[0,3,3,0],[0,2,1,1]],[[1,2,1,1],[1,2,3,2],[0,3,3,0],[0,1,2,2]],[[1,2,1,1],[1,2,3,2],[0,3,3,0],[0,1,3,1]],[[1,2,1,1],[1,2,3,2],[0,3,4,0],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[0,3,3,0],[0,1,2,1]],[[1,2,1,1],[1,2,4,2],[0,3,3,0],[0,1,2,1]],[[1,2,1,2],[1,2,3,2],[0,3,3,0],[0,1,2,1]],[[1,2,1,1],[1,2,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,1,1],[1,2,3,3],[0,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,2,4,2],[0,3,2,2],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[0,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,2,3,2],[0,3,2,2],[0,2,0,2]],[[1,2,1,1],[1,2,3,2],[0,3,2,3],[0,2,0,1]],[[1,2,1,1],[1,2,3,3],[0,3,2,2],[0,2,0,1]],[[1,2,1,1],[1,2,4,2],[0,3,2,2],[0,2,0,1]],[[1,2,1,2],[1,2,3,2],[0,3,2,2],[0,2,0,1]],[[1,2,1,1],[1,2,3,2],[0,3,2,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[0,3,2,2],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[0,3,2,2],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[0,3,2,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,2],[0,3,2,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,2],[0,3,2,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[0,3,2,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[0,3,2,2],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[0,3,2,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,2],[0,3,2,2],[0,0,2,2]],[[1,2,1,1],[1,2,3,2],[0,3,2,3],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[0,3,2,2],[0,0,2,1]],[[1,2,1,1],[1,2,4,2],[0,3,2,2],[0,0,2,1]],[[1,2,1,2],[1,2,3,2],[0,3,2,2],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[0,3,2,1],[1,2,1,0]],[[2,0,2,1],[2,3,3,0],[2,0,1,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,0],[2,0,1,2],[1,2,2,1]],[[1,0,2,2],[2,3,3,0],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[3,3,3,0],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,4,3,0],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,4,0],[2,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[3,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,1,3],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,1,2],[2,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,1,2],[1,3,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,1,2],[1,2,3,1]],[[1,0,2,1],[2,3,3,0],[2,0,1,2],[1,2,2,2]],[[2,0,2,1],[2,3,3,0],[2,0,2,1],[1,2,2,1]],[[1,0,3,1],[2,3,3,0],[2,0,2,1],[1,2,2,1]],[[1,0,2,2],[2,3,3,0],[2,0,2,1],[1,2,2,1]],[[1,0,2,1],[3,3,3,0],[2,0,2,1],[1,2,2,1]],[[1,0,2,1],[2,4,3,0],[2,0,2,1],[1,2,2,1]],[[1,0,2,1],[2,3,4,0],[2,0,2,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[3,0,2,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,2,1],[2,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,2,1],[1,3,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,2,1],[1,2,3,1]],[[1,0,2,1],[2,3,3,0],[2,0,2,1],[1,2,2,2]],[[1,0,2,1],[2,3,3,0],[2,0,2,3],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,2,2],[0,3,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,2,2],[0,2,3,1]],[[1,0,2,1],[2,3,3,0],[2,0,2,2],[0,2,2,2]],[[1,0,2,1],[2,3,3,0],[2,0,2,3],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,2,2],[1,1,3,1]],[[1,0,2,1],[2,3,3,0],[2,0,2,2],[1,1,2,2]],[[2,0,2,1],[2,3,3,0],[2,0,2,2],[1,2,2,0]],[[1,0,3,1],[2,3,3,0],[2,0,2,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,0],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[3,3,3,0],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[2,4,3,0],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,4,0],[2,0,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[3,0,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[2,0,2,2],[2,2,2,0]],[[1,0,2,1],[2,3,3,0],[2,0,2,2],[1,3,2,0]],[[1,0,2,1],[2,3,3,0],[2,0,2,2],[1,2,3,0]],[[2,0,2,1],[2,3,3,0],[2,0,3,1],[0,2,2,1]],[[1,0,3,1],[2,3,3,0],[2,0,3,1],[0,2,2,1]],[[1,0,2,2],[2,3,3,0],[2,0,3,1],[0,2,2,1]],[[1,0,2,1],[3,3,3,0],[2,0,3,1],[0,2,2,1]],[[1,0,2,1],[2,4,3,0],[2,0,3,1],[0,2,2,1]],[[1,0,2,1],[2,3,4,0],[2,0,3,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[3,0,3,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,4,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,1],[0,3,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,1],[0,2,3,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,1],[0,2,2,2]],[[2,0,2,1],[2,3,3,0],[2,0,3,1],[1,1,2,1]],[[1,0,3,1],[2,3,3,0],[2,0,3,1],[1,1,2,1]],[[1,0,2,2],[2,3,3,0],[2,0,3,1],[1,1,2,1]],[[1,0,2,1],[3,3,3,0],[2,0,3,1],[1,1,2,1]],[[1,0,2,1],[2,4,3,0],[2,0,3,1],[1,1,2,1]],[[1,0,2,1],[2,3,4,0],[2,0,3,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[3,0,3,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,4,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,1],[2,1,2,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,1],[1,1,3,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,1],[1,1,2,2]],[[2,0,2,1],[2,3,3,0],[2,0,3,1],[1,2,1,1]],[[1,0,3,1],[2,3,3,0],[2,0,3,1],[1,2,1,1]],[[1,0,2,2],[2,3,3,0],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[3,3,3,0],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[2,4,3,0],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,4,0],[2,0,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[3,0,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[2,0,4,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,1],[2,2,1,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,1],[1,3,1,1]],[[2,0,2,1],[2,3,3,0],[2,0,3,2],[0,2,1,1]],[[1,0,3,1],[2,3,3,0],[2,0,3,2],[0,2,1,1]],[[1,0,2,2],[2,3,3,0],[2,0,3,2],[0,2,1,1]],[[1,0,2,1],[3,3,3,0],[2,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,4,3,0],[2,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,4,0],[2,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[3,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[2,0,4,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,3],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[0,2,1,2]],[[2,0,2,1],[2,3,3,0],[2,0,3,2],[0,2,2,0]],[[1,0,3,1],[2,3,3,0],[2,0,3,2],[0,2,2,0]],[[1,0,2,2],[2,3,3,0],[2,0,3,2],[0,2,2,0]],[[1,0,2,1],[3,3,3,0],[2,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,4,3,0],[2,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,4,0],[2,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,0],[3,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,0],[2,0,4,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,0],[2,0,3,3],[0,2,2,0]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[0,3,2,0]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[0,2,3,0]],[[2,0,2,1],[2,3,3,0],[2,0,3,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,0],[2,0,3,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,0],[2,0,3,2],[1,1,1,1]],[[1,0,2,1],[3,3,3,0],[2,0,3,2],[1,1,1,1]],[[1,0,2,1],[2,4,3,0],[2,0,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,4,0],[2,0,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[3,0,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[2,0,4,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,3],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[2,1,1,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[1,1,1,2]],[[2,0,2,1],[2,3,3,0],[2,0,3,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,0],[2,0,3,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,0],[2,0,3,2],[1,1,2,0]],[[1,0,2,1],[3,3,3,0],[2,0,3,2],[1,1,2,0]],[[1,0,2,1],[2,4,3,0],[2,0,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,4,0],[2,0,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[3,0,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[2,0,4,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[2,0,3,3],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[2,1,2,0]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[1,1,3,0]],[[2,0,2,1],[2,3,3,0],[2,0,3,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,0],[2,0,3,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,0],[2,0,3,2],[1,2,0,1]],[[1,0,2,1],[3,3,3,0],[2,0,3,2],[1,2,0,1]],[[1,0,2,1],[2,4,3,0],[2,0,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,4,0],[2,0,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[3,0,3,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[2,0,4,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,3],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[2,2,0,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[1,3,0,1]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[1,2,0,2]],[[2,0,2,1],[2,3,3,0],[2,0,3,2],[1,2,1,0]],[[1,0,3,1],[2,3,3,0],[2,0,3,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,0],[2,0,3,2],[1,2,1,0]],[[1,0,2,1],[3,3,3,0],[2,0,3,2],[1,2,1,0]],[[1,0,2,1],[2,4,3,0],[2,0,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,4,0],[2,0,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[3,0,3,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[2,0,4,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[2,0,3,3],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[2,2,1,0]],[[1,0,2,1],[2,3,3,0],[2,0,3,2],[1,3,1,0]],[[1,2,1,1],[1,2,4,2],[0,3,2,1],[1,2,1,0]],[[1,2,1,2],[1,2,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,1,1],[1,2,3,3],[0,3,2,1],[1,2,0,1]],[[1,2,1,1],[1,2,4,2],[0,3,2,1],[1,2,0,1]],[[1,2,1,2],[1,2,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,1,1],[1,2,3,3],[0,3,2,1],[1,1,2,0]],[[1,2,1,1],[1,2,4,2],[0,3,2,1],[1,1,2,0]],[[1,2,1,2],[1,2,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,1,1],[1,2,3,3],[0,3,2,1],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[0,3,2,1],[1,1,1,1]],[[2,0,2,1],[2,3,3,0],[2,1,0,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,0],[2,1,0,2],[1,2,2,1]],[[1,0,2,2],[2,3,3,0],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[3,3,3,0],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,4,3,0],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,4,0],[2,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[3,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,0,3],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,0,2],[2,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,0,2],[1,3,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,0,2],[1,2,3,1]],[[1,0,2,1],[2,3,3,0],[2,1,0,2],[1,2,2,2]],[[2,0,2,1],[2,3,3,0],[2,1,1,1],[1,2,2,1]],[[1,0,3,1],[2,3,3,0],[2,1,1,1],[1,2,2,1]],[[1,0,2,2],[2,3,3,0],[2,1,1,1],[1,2,2,1]],[[1,0,2,1],[3,3,3,0],[2,1,1,1],[1,2,2,1]],[[1,0,2,1],[2,4,3,0],[2,1,1,1],[1,2,2,1]],[[1,0,2,1],[2,3,4,0],[2,1,1,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[3,1,1,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,1,1],[2,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,1,1],[1,3,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,1,1],[1,2,3,1]],[[1,0,2,1],[2,3,3,0],[2,1,1,1],[1,2,2,2]],[[2,0,2,1],[2,3,3,0],[2,1,1,2],[1,2,2,0]],[[1,0,3,1],[2,3,3,0],[2,1,1,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,0],[2,1,1,2],[1,2,2,0]],[[1,0,2,1],[3,3,3,0],[2,1,1,2],[1,2,2,0]],[[1,0,2,1],[2,4,3,0],[2,1,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,4,0],[2,1,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[3,1,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[2,1,1,2],[2,2,2,0]],[[1,0,2,1],[2,3,3,0],[2,1,1,2],[1,3,2,0]],[[1,0,2,1],[2,3,3,0],[2,1,1,2],[1,2,3,0]],[[2,0,2,1],[2,3,3,0],[2,1,2,1],[1,2,1,1]],[[1,0,3,1],[2,3,3,0],[2,1,2,1],[1,2,1,1]],[[1,0,2,2],[2,3,3,0],[2,1,2,1],[1,2,1,1]],[[1,0,2,1],[3,3,3,0],[2,1,2,1],[1,2,1,1]],[[1,0,2,1],[2,4,3,0],[2,1,2,1],[1,2,1,1]],[[1,0,2,1],[2,3,4,0],[2,1,2,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[3,1,2,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,2,1],[2,2,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,2,1],[1,3,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,2,3],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,2,2],[0,1,3,1]],[[1,0,2,1],[2,3,3,0],[2,1,2,2],[0,1,2,2]],[[1,0,2,1],[2,3,3,0],[2,1,2,3],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,2,2],[1,0,3,1]],[[1,0,2,1],[2,3,3,0],[2,1,2,2],[1,0,2,2]],[[2,0,2,1],[2,3,3,0],[2,1,2,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,0],[2,1,2,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,0],[2,1,2,2],[1,2,0,1]],[[1,0,2,1],[3,3,3,0],[2,1,2,2],[1,2,0,1]],[[1,0,2,1],[2,4,3,0],[2,1,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,4,0],[2,1,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[3,1,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[2,1,2,2],[2,2,0,1]],[[1,0,2,1],[2,3,3,0],[2,1,2,2],[1,3,0,1]],[[2,0,2,1],[2,3,3,0],[2,1,2,2],[1,2,1,0]],[[1,0,3,1],[2,3,3,0],[2,1,2,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,0],[2,1,2,2],[1,2,1,0]],[[1,0,2,1],[3,3,3,0],[2,1,2,2],[1,2,1,0]],[[1,0,2,1],[2,4,3,0],[2,1,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,4,0],[2,1,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[3,1,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[2,1,2,2],[2,2,1,0]],[[1,0,2,1],[2,3,3,0],[2,1,2,2],[1,3,1,0]],[[1,2,1,2],[1,2,3,2],[0,3,2,1],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[0,3,2,0],[1,2,1,1]],[[1,2,1,1],[1,2,4,2],[0,3,2,0],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[0,3,2,0],[1,2,1,1]],[[2,0,2,1],[2,3,3,0],[2,1,3,1],[0,1,2,1]],[[1,0,3,1],[2,3,3,0],[2,1,3,1],[0,1,2,1]],[[1,0,2,2],[2,3,3,0],[2,1,3,1],[0,1,2,1]],[[1,0,2,1],[3,3,3,0],[2,1,3,1],[0,1,2,1]],[[1,0,2,1],[2,4,3,0],[2,1,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,4,0],[2,1,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[3,1,3,1],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,4,1],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,1],[0,1,3,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,1],[0,1,2,2]],[[2,0,2,1],[2,3,3,0],[2,1,3,1],[0,2,1,1]],[[1,0,3,1],[2,3,3,0],[2,1,3,1],[0,2,1,1]],[[1,0,2,2],[2,3,3,0],[2,1,3,1],[0,2,1,1]],[[1,0,2,1],[3,3,3,0],[2,1,3,1],[0,2,1,1]],[[1,0,2,1],[2,4,3,0],[2,1,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,4,0],[2,1,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[3,1,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,4,1],[0,2,1,1]],[[2,0,2,1],[2,3,3,0],[2,1,3,1],[1,0,2,1]],[[1,0,3,1],[2,3,3,0],[2,1,3,1],[1,0,2,1]],[[1,0,2,2],[2,3,3,0],[2,1,3,1],[1,0,2,1]],[[1,0,2,1],[3,3,3,0],[2,1,3,1],[1,0,2,1]],[[1,0,2,1],[2,4,3,0],[2,1,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,4,0],[2,1,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[3,1,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,4,1],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,1],[2,0,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,1],[1,0,3,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,1],[1,0,2,2]],[[2,0,2,1],[2,3,3,0],[2,1,3,1],[1,1,1,1]],[[1,0,3,1],[2,3,3,0],[2,1,3,1],[1,1,1,1]],[[1,0,2,2],[2,3,3,0],[2,1,3,1],[1,1,1,1]],[[1,0,2,1],[3,3,3,0],[2,1,3,1],[1,1,1,1]],[[1,0,2,1],[2,4,3,0],[2,1,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,4,0],[2,1,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[3,1,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,4,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,1],[2,1,1,1]],[[1,2,1,1],[1,2,3,3],[0,3,2,0],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[0,3,2,0],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[0,3,2,0],[1,1,2,1]],[[2,0,2,1],[2,3,3,0],[2,1,3,2],[0,0,2,1]],[[1,0,3,1],[2,3,3,0],[2,1,3,2],[0,0,2,1]],[[1,0,2,2],[2,3,3,0],[2,1,3,2],[0,0,2,1]],[[1,0,2,1],[3,3,3,0],[2,1,3,2],[0,0,2,1]],[[1,0,2,1],[2,4,3,0],[2,1,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,4,0],[2,1,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,4,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,3],[0,0,2,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,2],[0,0,2,2]],[[2,0,2,1],[2,3,3,0],[2,1,3,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,0],[2,1,3,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,0],[2,1,3,2],[0,1,1,1]],[[1,0,2,1],[3,3,3,0],[2,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,4,3,0],[2,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,0],[2,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[3,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,4,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,3],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,2],[0,1,1,2]],[[2,0,2,1],[2,3,3,0],[2,1,3,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,0],[2,1,3,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,0],[2,1,3,2],[0,1,2,0]],[[1,0,2,1],[3,3,3,0],[2,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,4,3,0],[2,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,0],[2,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[3,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[2,1,4,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[2,1,3,3],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[2,1,3,2],[0,1,3,0]],[[2,0,2,1],[2,3,3,0],[2,1,3,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,0],[2,1,3,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,0],[2,1,3,2],[0,2,0,1]],[[1,0,2,1],[3,3,3,0],[2,1,3,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,0],[2,1,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,4,0],[2,1,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[3,1,3,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[2,1,4,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,3],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,2],[0,2,0,2]],[[2,0,2,1],[2,3,3,0],[2,1,3,2],[0,2,1,0]],[[1,0,3,1],[2,3,3,0],[2,1,3,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,0],[2,1,3,2],[0,2,1,0]],[[1,0,2,1],[3,3,3,0],[2,1,3,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,0],[2,1,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,4,0],[2,1,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,0],[3,1,3,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,0],[2,1,4,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,0],[2,1,3,3],[0,2,1,0]],[[1,2,1,1],[1,2,3,2],[0,3,1,3],[1,2,1,0]],[[1,2,1,1],[1,2,3,3],[0,3,1,2],[1,2,1,0]],[[1,2,1,1],[1,2,4,2],[0,3,1,2],[1,2,1,0]],[[1,2,1,2],[1,2,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,1,1],[1,2,3,2],[0,3,1,2],[1,2,0,2]],[[1,2,1,1],[1,2,3,2],[0,3,1,3],[1,2,0,1]],[[1,2,1,1],[1,2,3,3],[0,3,1,2],[1,2,0,1]],[[1,2,1,1],[1,2,4,2],[0,3,1,2],[1,2,0,1]],[[1,2,1,2],[1,2,3,2],[0,3,1,2],[1,2,0,1]],[[2,0,2,1],[2,3,3,0],[2,1,3,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,0],[2,1,3,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,0],[2,1,3,2],[1,0,1,1]],[[1,0,2,1],[3,3,3,0],[2,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,4,3,0],[2,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,0],[2,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,0],[3,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,4,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,3],[1,0,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,2],[2,0,1,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,2],[1,0,1,2]],[[2,0,2,1],[2,3,3,0],[2,1,3,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,0],[2,1,3,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,0],[2,1,3,2],[1,0,2,0]],[[1,0,2,1],[3,3,3,0],[2,1,3,2],[1,0,2,0]],[[1,0,2,1],[2,4,3,0],[2,1,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,0],[2,1,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,0],[3,1,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,0],[2,1,4,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,0],[2,1,3,3],[1,0,2,0]],[[1,0,2,1],[2,3,3,0],[2,1,3,2],[2,0,2,0]],[[1,0,2,1],[2,3,3,0],[2,1,3,2],[1,0,3,0]],[[2,0,2,1],[2,3,3,0],[2,1,3,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,0],[2,1,3,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,0],[2,1,3,2],[1,1,0,1]],[[1,0,2,1],[3,3,3,0],[2,1,3,2],[1,1,0,1]],[[1,0,2,1],[2,4,3,0],[2,1,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,4,0],[2,1,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[3,1,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[2,1,4,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,3],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,2],[2,1,0,1]],[[1,0,2,1],[2,3,3,0],[2,1,3,2],[1,1,0,2]],[[2,0,2,1],[2,3,3,0],[2,1,3,2],[1,1,1,0]],[[1,0,3,1],[2,3,3,0],[2,1,3,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,0],[2,1,3,2],[1,1,1,0]],[[1,0,2,1],[3,3,3,0],[2,1,3,2],[1,1,1,0]],[[1,0,2,1],[2,4,3,0],[2,1,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,4,0],[2,1,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,0],[3,1,3,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,0],[2,1,4,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,0],[2,1,3,3],[1,1,1,0]],[[1,0,2,1],[2,3,3,0],[2,1,3,2],[2,1,1,0]],[[1,2,1,1],[1,2,3,2],[0,3,1,3],[1,1,2,0]],[[1,2,1,1],[1,2,3,3],[0,3,1,2],[1,1,2,0]],[[1,2,1,1],[1,2,4,2],[0,3,1,2],[1,1,2,0]],[[1,2,1,2],[1,2,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,2],[0,3,1,2],[1,1,1,2]],[[1,2,1,1],[1,2,3,2],[0,3,1,3],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[0,3,1,2],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[0,3,1,2],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,1,1],[1,2,3,2],[0,3,1,2],[0,1,2,2]],[[1,2,1,1],[1,2,3,2],[0,3,1,2],[0,1,3,1]],[[1,2,1,1],[1,2,3,2],[0,3,1,3],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[0,3,1,2],[0,1,2,1]],[[1,2,1,1],[1,2,4,2],[0,3,1,2],[0,1,2,1]],[[1,2,1,2],[1,2,3,2],[0,3,1,2],[0,1,2,1]],[[1,2,1,1],[1,2,3,3],[0,3,1,1],[1,2,2,0]],[[1,2,1,1],[1,2,4,2],[0,3,1,1],[1,2,2,0]],[[1,2,1,2],[1,2,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,1,1],[1,2,3,3],[0,3,1,0],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[0,3,1,0],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,1,1],[1,2,3,2],[0,3,0,3],[1,2,2,0]],[[1,2,1,1],[1,2,3,3],[0,3,0,2],[1,2,2,0]],[[1,2,1,1],[1,2,4,2],[0,3,0,2],[1,2,2,0]],[[1,2,1,2],[1,2,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,1,1],[1,2,3,2],[0,3,0,2],[1,2,1,2]],[[1,2,1,1],[1,2,3,2],[0,3,0,3],[1,2,1,1]],[[1,2,1,1],[1,2,3,3],[0,3,0,2],[1,2,1,1]],[[2,0,2,1],[2,3,3,0],[2,2,0,1],[1,2,2,1]],[[1,0,2,1],[3,3,3,0],[2,2,0,1],[1,2,2,1]],[[1,0,2,1],[2,4,3,0],[2,2,0,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[3,2,0,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,2,0,1],[2,2,2,1]],[[1,0,2,1],[2,3,3,0],[2,2,0,1],[1,3,2,1]],[[2,0,2,1],[2,3,3,0],[2,2,0,2],[0,2,2,1]],[[1,0,3,1],[2,3,3,0],[2,2,0,2],[0,2,2,1]],[[1,0,2,2],[2,3,3,0],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[3,3,3,0],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[2,4,3,0],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,4,0],[2,2,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[3,2,0,2],[0,2,2,1]],[[2,0,2,1],[2,3,3,0],[2,2,0,2],[1,1,2,1]],[[1,0,3,1],[2,3,3,0],[2,2,0,2],[1,1,2,1]],[[1,0,2,2],[2,3,3,0],[2,2,0,2],[1,1,2,1]],[[1,0,2,1],[3,3,3,0],[2,2,0,2],[1,1,2,1]],[[1,0,2,1],[2,4,3,0],[2,2,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,4,0],[2,2,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[3,2,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[2,2,0,2],[2,1,2,1]],[[2,0,2,1],[2,3,3,0],[2,2,0,2],[1,2,2,0]],[[1,0,2,1],[3,3,3,0],[2,2,0,2],[1,2,2,0]],[[1,0,2,1],[2,4,3,0],[2,2,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[3,2,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,0],[2,2,0,2],[2,2,2,0]],[[1,0,2,1],[2,3,3,0],[2,2,0,2],[1,3,2,0]],[[2,0,2,1],[2,3,3,0],[2,2,1,1],[0,2,2,1]],[[1,0,3,1],[2,3,3,0],[2,2,1,1],[0,2,2,1]],[[1,0,2,2],[2,3,3,0],[2,2,1,1],[0,2,2,1]],[[1,0,2,1],[3,3,3,0],[2,2,1,1],[0,2,2,1]],[[1,0,2,1],[2,4,3,0],[2,2,1,1],[0,2,2,1]],[[1,0,2,1],[2,3,4,0],[2,2,1,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[3,2,1,1],[0,2,2,1]],[[2,0,2,1],[2,3,3,0],[2,2,1,1],[1,1,2,1]],[[1,0,3,1],[2,3,3,0],[2,2,1,1],[1,1,2,1]],[[1,0,2,2],[2,3,3,0],[2,2,1,1],[1,1,2,1]],[[1,0,2,1],[3,3,3,0],[2,2,1,1],[1,1,2,1]],[[1,0,2,1],[2,4,3,0],[2,2,1,1],[1,1,2,1]],[[1,0,2,1],[2,3,4,0],[2,2,1,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[3,2,1,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[2,2,1,1],[2,1,2,1]],[[2,0,2,1],[2,3,3,0],[2,2,1,2],[0,2,2,0]],[[1,0,3,1],[2,3,3,0],[2,2,1,2],[0,2,2,0]],[[1,0,2,2],[2,3,3,0],[2,2,1,2],[0,2,2,0]],[[1,0,2,1],[3,3,3,0],[2,2,1,2],[0,2,2,0]],[[1,0,2,1],[2,4,3,0],[2,2,1,2],[0,2,2,0]],[[1,0,2,1],[2,3,4,0],[2,2,1,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,0],[3,2,1,2],[0,2,2,0]],[[2,0,2,1],[2,3,3,0],[2,2,1,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,0],[2,2,1,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,0],[2,2,1,2],[1,1,2,0]],[[1,0,2,1],[3,3,3,0],[2,2,1,2],[1,1,2,0]],[[1,0,2,1],[2,4,3,0],[2,2,1,2],[1,1,2,0]],[[1,0,2,1],[2,3,4,0],[2,2,1,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[3,2,1,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[2,2,1,2],[2,1,2,0]],[[1,2,1,1],[1,2,4,2],[0,3,0,2],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,1,1],[1,2,3,2],[0,3,0,2],[1,1,2,2]],[[1,2,1,1],[1,2,3,2],[0,3,0,2],[1,1,3,1]],[[1,2,1,1],[1,2,3,2],[0,3,0,3],[1,1,2,1]],[[1,2,1,1],[1,2,3,3],[0,3,0,2],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[0,3,0,2],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,1,1],[1,2,3,3],[0,3,0,1],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[0,3,0,1],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[0,3,0,1],[1,2,2,1]],[[2,0,2,1],[2,3,3,0],[2,2,2,1],[0,1,2,1]],[[1,0,3,1],[2,3,3,0],[2,2,2,1],[0,1,2,1]],[[1,0,2,2],[2,3,3,0],[2,2,2,1],[0,1,2,1]],[[1,0,2,1],[3,3,3,0],[2,2,2,1],[0,1,2,1]],[[1,0,2,1],[2,4,3,0],[2,2,2,1],[0,1,2,1]],[[1,0,2,1],[2,3,4,0],[2,2,2,1],[0,1,2,1]],[[1,0,2,1],[2,3,3,0],[3,2,2,1],[0,1,2,1]],[[2,0,2,1],[2,3,3,0],[2,2,2,1],[0,2,1,1]],[[1,0,3,1],[2,3,3,0],[2,2,2,1],[0,2,1,1]],[[1,0,2,2],[2,3,3,0],[2,2,2,1],[0,2,1,1]],[[1,0,2,1],[3,3,3,0],[2,2,2,1],[0,2,1,1]],[[1,0,2,1],[2,4,3,0],[2,2,2,1],[0,2,1,1]],[[1,0,2,1],[2,3,4,0],[2,2,2,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[3,2,2,1],[0,2,1,1]],[[2,0,2,1],[2,3,3,0],[2,2,2,1],[1,0,2,1]],[[1,0,3,1],[2,3,3,0],[2,2,2,1],[1,0,2,1]],[[1,0,2,2],[2,3,3,0],[2,2,2,1],[1,0,2,1]],[[1,0,2,1],[3,3,3,0],[2,2,2,1],[1,0,2,1]],[[1,0,2,1],[2,4,3,0],[2,2,2,1],[1,0,2,1]],[[1,0,2,1],[2,3,4,0],[2,2,2,1],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[3,2,2,1],[1,0,2,1]],[[1,0,2,1],[2,3,3,0],[2,2,2,1],[2,0,2,1]],[[2,0,2,1],[2,3,3,0],[2,2,2,1],[1,1,1,1]],[[1,0,3,1],[2,3,3,0],[2,2,2,1],[1,1,1,1]],[[1,0,2,2],[2,3,3,0],[2,2,2,1],[1,1,1,1]],[[1,0,2,1],[3,3,3,0],[2,2,2,1],[1,1,1,1]],[[1,0,2,1],[2,4,3,0],[2,2,2,1],[1,1,1,1]],[[1,0,2,1],[2,3,4,0],[2,2,2,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[3,2,2,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[2,2,2,1],[2,1,1,1]],[[2,0,2,1],[2,3,3,0],[2,2,2,1],[1,2,0,1]],[[1,0,2,1],[3,3,3,0],[2,2,2,1],[1,2,0,1]],[[1,0,2,1],[2,4,3,0],[2,2,2,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[3,2,2,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[2,2,2,1],[2,2,0,1]],[[2,0,2,1],[2,3,3,0],[2,2,2,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,0],[2,2,2,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,0],[2,2,2,2],[0,1,1,1]],[[1,0,2,1],[3,3,3,0],[2,2,2,2],[0,1,1,1]],[[1,0,2,1],[2,4,3,0],[2,2,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,0],[2,2,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,0],[3,2,2,2],[0,1,1,1]],[[2,0,2,1],[2,3,3,0],[2,2,2,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,0],[2,2,2,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,0],[2,2,2,2],[0,1,2,0]],[[1,0,2,1],[3,3,3,0],[2,2,2,2],[0,1,2,0]],[[1,0,2,1],[2,4,3,0],[2,2,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,0],[2,2,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,0],[3,2,2,2],[0,1,2,0]],[[2,0,2,1],[2,3,3,0],[2,2,2,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,0],[2,2,2,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,0],[2,2,2,2],[0,2,0,1]],[[1,0,2,1],[3,3,3,0],[2,2,2,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,0],[2,2,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,4,0],[2,2,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[3,2,2,2],[0,2,0,1]],[[2,0,2,1],[2,3,3,0],[2,2,2,2],[0,2,1,0]],[[1,0,3,1],[2,3,3,0],[2,2,2,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,0],[2,2,2,2],[0,2,1,0]],[[1,0,2,1],[3,3,3,0],[2,2,2,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,0],[2,2,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,4,0],[2,2,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,0],[3,2,2,2],[0,2,1,0]],[[2,0,2,1],[2,3,3,0],[2,2,2,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,0],[2,2,2,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,0],[2,2,2,2],[1,0,1,1]],[[1,0,2,1],[3,3,3,0],[2,2,2,2],[1,0,1,1]],[[1,0,2,1],[2,4,3,0],[2,2,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,0],[2,2,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,0],[3,2,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,0],[2,2,2,2],[2,0,1,1]],[[2,0,2,1],[2,3,3,0],[2,2,2,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,0],[2,2,2,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,0],[2,2,2,2],[1,0,2,0]],[[1,0,2,1],[3,3,3,0],[2,2,2,2],[1,0,2,0]],[[1,0,2,1],[2,4,3,0],[2,2,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,0],[2,2,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,0],[3,2,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,0],[2,2,2,2],[2,0,2,0]],[[2,0,2,1],[2,3,3,0],[2,2,2,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,0],[2,2,2,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,0],[2,2,2,2],[1,1,0,1]],[[1,0,2,1],[3,3,3,0],[2,2,2,2],[1,1,0,1]],[[1,0,2,1],[2,4,3,0],[2,2,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,4,0],[2,2,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[3,2,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[2,2,2,2],[2,1,0,1]],[[2,0,2,1],[2,3,3,0],[2,2,2,2],[1,1,1,0]],[[1,0,3,1],[2,3,3,0],[2,2,2,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,0],[2,2,2,2],[1,1,1,0]],[[1,0,2,1],[3,3,3,0],[2,2,2,2],[1,1,1,0]],[[1,0,2,1],[2,4,3,0],[2,2,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,4,0],[2,2,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,0],[3,2,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,0],[2,2,2,2],[2,1,1,0]],[[1,2,1,1],[1,2,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,1,1],[1,2,3,3],[0,2,3,2],[1,1,0,1]],[[1,2,1,1],[1,2,4,2],[0,2,3,2],[1,1,0,1]],[[1,2,1,2],[1,2,3,2],[0,2,3,2],[1,1,0,1]],[[2,0,2,1],[2,3,3,0],[2,2,2,2],[1,2,0,0]],[[1,0,3,1],[2,3,3,0],[2,2,2,2],[1,2,0,0]],[[1,0,2,2],[2,3,3,0],[2,2,2,2],[1,2,0,0]],[[1,0,2,1],[3,3,3,0],[2,2,2,2],[1,2,0,0]],[[1,0,2,1],[2,4,3,0],[2,2,2,2],[1,2,0,0]],[[1,0,2,1],[2,3,4,0],[2,2,2,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,0],[3,2,2,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,0],[2,2,2,2],[2,2,0,0]],[[1,2,1,1],[1,2,3,2],[0,2,3,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,3],[0,2,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,4,2],[0,2,3,2],[0,1,2,0]],[[1,2,1,2],[1,2,3,2],[0,2,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,2],[0,2,3,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,2],[0,2,3,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,3],[0,2,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,2],[0,2,3,2],[0,1,1,1]],[[1,2,1,2],[1,2,3,2],[0,2,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,2],[0,2,3,2],[0,0,2,2]],[[1,2,1,1],[1,2,3,2],[0,2,3,3],[0,0,2,1]],[[1,2,1,1],[1,2,3,3],[0,2,3,2],[0,0,2,1]],[[1,2,1,1],[1,2,4,2],[0,2,3,2],[0,0,2,1]],[[1,2,1,2],[1,2,3,2],[0,2,3,2],[0,0,2,1]],[[1,2,1,1],[1,2,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,1,1],[1,2,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,1,1],[1,2,4,2],[0,2,3,1],[1,2,1,0]],[[1,2,1,2],[1,2,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,1,1],[1,2,3,2],[0,2,4,1],[1,2,0,1]],[[1,2,1,1],[1,2,3,3],[0,2,3,1],[1,2,0,1]],[[1,2,1,1],[1,2,4,2],[0,2,3,1],[1,2,0,1]],[[1,2,1,2],[1,2,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,1,1],[1,2,3,2],[0,2,3,1],[1,1,3,0]],[[1,2,1,1],[1,2,3,2],[0,2,4,1],[1,1,2,0]],[[1,2,1,1],[1,2,3,3],[0,2,3,1],[1,1,2,0]],[[1,2,1,1],[1,2,4,2],[0,2,3,1],[1,1,2,0]],[[1,2,1,2],[1,2,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,1,1],[1,2,3,2],[0,2,4,1],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[0,2,3,1],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[0,2,3,1],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,1,1],[1,2,3,2],[0,2,4,1],[1,0,2,1]],[[1,2,1,1],[1,2,3,3],[0,2,3,1],[1,0,2,1]],[[1,2,1,1],[1,2,4,2],[0,2,3,1],[1,0,2,1]],[[1,2,1,2],[1,2,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,1,1],[1,2,3,2],[0,2,4,0],[1,2,1,1]],[[1,2,1,1],[1,2,3,3],[0,2,3,0],[1,2,1,1]],[[1,2,1,1],[1,2,4,2],[0,2,3,0],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,1,1],[1,2,3,2],[0,2,3,0],[1,1,2,2]],[[1,2,1,1],[1,2,3,2],[0,2,3,0],[1,1,3,1]],[[1,2,1,1],[1,2,3,2],[0,2,4,0],[1,1,2,1]],[[1,2,1,1],[1,2,3,3],[0,2,3,0],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[0,2,3,0],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,1,1],[1,2,3,2],[0,2,2,3],[1,2,1,0]],[[2,0,2,1],[2,3,3,0],[2,2,3,2],[0,2,0,0]],[[1,0,3,1],[2,3,3,0],[2,2,3,2],[0,2,0,0]],[[1,0,2,2],[2,3,3,0],[2,2,3,2],[0,2,0,0]],[[1,0,2,1],[3,3,3,0],[2,2,3,2],[0,2,0,0]],[[1,0,2,1],[2,4,3,0],[2,2,3,2],[0,2,0,0]],[[1,0,2,1],[2,3,4,0],[2,2,3,2],[0,2,0,0]],[[1,0,2,1],[2,3,3,0],[3,2,3,2],[0,2,0,0]],[[1,2,1,1],[1,2,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,1,1],[1,2,4,2],[0,2,2,2],[1,2,1,0]],[[1,2,1,2],[1,2,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,1,1],[1,2,3,2],[0,2,2,2],[1,2,0,2]],[[1,2,1,1],[1,2,3,2],[0,2,2,3],[1,2,0,1]],[[1,2,1,1],[1,2,3,3],[0,2,2,2],[1,2,0,1]],[[1,2,1,1],[1,2,4,2],[0,2,2,2],[1,2,0,1]],[[1,2,1,2],[1,2,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,1,1],[1,2,3,2],[0,2,2,3],[1,1,2,0]],[[1,2,1,1],[1,2,3,3],[0,2,2,2],[1,1,2,0]],[[1,2,1,1],[1,2,4,2],[0,2,2,2],[1,1,2,0]],[[1,2,1,2],[1,2,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,2],[0,2,2,2],[1,1,1,2]],[[1,2,1,1],[1,2,3,2],[0,2,2,3],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[0,2,2,2],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[0,2,2,2],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,1,1],[1,2,3,2],[0,2,2,2],[1,0,2,2]],[[1,2,1,1],[1,2,3,2],[0,2,2,3],[1,0,2,1]],[[1,2,1,1],[1,2,3,3],[0,2,2,2],[1,0,2,1]],[[1,2,1,1],[1,2,4,2],[0,2,2,2],[1,0,2,1]],[[1,2,1,2],[1,2,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,1,1],[1,2,3,2],[0,2,1,2],[1,1,2,2]],[[1,2,1,1],[1,2,3,2],[0,2,1,2],[1,1,3,1]],[[1,2,1,1],[1,2,3,2],[0,2,1,3],[1,1,2,1]],[[1,2,1,1],[1,2,3,3],[0,2,1,2],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[0,2,1,2],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,1,1],[1,2,3,2],[0,2,0,2],[1,2,2,2]],[[1,2,1,1],[1,2,3,2],[0,2,0,2],[1,2,3,1]],[[1,2,1,1],[1,2,3,2],[0,2,0,2],[1,3,2,1]],[[2,0,2,1],[2,3,3,0],[2,2,3,2],[1,1,0,0]],[[1,0,3,1],[2,3,3,0],[2,2,3,2],[1,1,0,0]],[[1,0,2,2],[2,3,3,0],[2,2,3,2],[1,1,0,0]],[[1,0,2,1],[3,3,3,0],[2,2,3,2],[1,1,0,0]],[[1,0,2,1],[2,4,3,0],[2,2,3,2],[1,1,0,0]],[[1,0,2,1],[2,3,4,0],[2,2,3,2],[1,1,0,0]],[[1,0,2,1],[2,3,3,0],[3,2,3,2],[1,1,0,0]],[[1,0,2,1],[2,3,3,0],[2,2,3,2],[2,1,0,0]],[[1,2,1,1],[1,2,3,2],[0,2,0,2],[2,2,2,1]],[[1,2,1,1],[1,2,3,2],[0,2,0,3],[1,2,2,1]],[[1,2,1,1],[1,2,3,3],[0,2,0,2],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[0,2,0,2],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[0,2,0,2],[1,2,2,1]],[[1,2,1,1],[1,2,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,1,1],[1,2,3,3],[0,1,3,2],[1,1,2,0]],[[1,2,1,1],[1,2,4,2],[0,1,3,2],[1,1,2,0]],[[1,2,1,2],[1,2,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,2],[0,1,3,2],[1,1,1,2]],[[1,2,1,1],[1,2,3,2],[0,1,3,3],[1,1,1,1]],[[1,2,1,1],[1,2,3,3],[0,1,3,2],[1,1,1,1]],[[1,2,1,1],[1,2,4,2],[0,1,3,2],[1,1,1,1]],[[1,2,1,2],[1,2,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,1,1],[1,2,3,2],[0,1,3,2],[1,0,2,2]],[[1,2,1,1],[1,2,3,2],[0,1,3,3],[1,0,2,1]],[[1,2,1,1],[1,2,3,3],[0,1,3,2],[1,0,2,1]],[[1,2,1,1],[1,2,4,2],[0,1,3,2],[1,0,2,1]],[[1,2,1,2],[1,2,3,2],[0,1,3,2],[1,0,2,1]],[[1,2,1,1],[1,2,3,2],[0,1,3,1],[1,2,3,0]],[[1,2,1,1],[1,2,3,2],[0,1,3,1],[1,3,2,0]],[[1,2,1,1],[1,2,3,2],[0,1,3,1],[2,2,2,0]],[[1,2,1,1],[1,2,3,2],[0,1,4,1],[1,2,2,0]],[[1,2,1,1],[1,2,3,3],[0,1,3,1],[1,2,2,0]],[[1,2,1,1],[1,2,4,2],[0,1,3,1],[1,2,2,0]],[[1,2,1,2],[1,2,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,1,1],[1,2,3,2],[0,1,4,1],[1,2,1,1]],[[1,2,1,1],[1,2,3,3],[0,1,3,1],[1,2,1,1]],[[1,2,1,1],[1,2,4,2],[0,1,3,1],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,1,1],[1,2,3,2],[0,1,3,0],[1,2,2,2]],[[1,2,1,1],[1,2,3,2],[0,1,3,0],[1,2,3,1]],[[1,2,1,1],[1,2,3,2],[0,1,3,0],[1,3,2,1]],[[1,2,1,1],[1,2,3,2],[0,1,3,0],[2,2,2,1]],[[1,2,1,1],[1,2,3,2],[0,1,4,0],[1,2,2,1]],[[1,2,1,1],[1,2,3,3],[0,1,3,0],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[0,1,3,0],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,1,1],[1,2,3,2],[0,1,2,3],[1,2,2,0]],[[1,2,1,1],[1,2,3,3],[0,1,2,2],[1,2,2,0]],[[1,2,1,1],[1,2,4,2],[0,1,2,2],[1,2,2,0]],[[1,2,1,2],[1,2,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,1,1],[1,2,3,2],[0,1,2,2],[1,2,1,2]],[[1,2,1,1],[1,2,3,2],[0,1,2,3],[1,2,1,1]],[[1,2,1,1],[1,2,3,3],[0,1,2,2],[1,2,1,1]],[[1,2,1,1],[1,2,4,2],[0,1,2,2],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,1,1],[1,2,3,2],[0,1,1,2],[1,2,2,2]],[[1,2,1,1],[1,2,3,2],[0,1,1,2],[1,2,3,1]],[[1,2,1,1],[1,2,3,2],[0,1,1,2],[1,3,2,1]],[[1,2,1,1],[1,2,3,2],[0,1,1,2],[2,2,2,1]],[[1,2,1,1],[1,2,3,2],[0,1,1,3],[1,2,2,1]],[[1,2,1,1],[1,2,3,3],[0,1,1,2],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[0,1,1,2],[1,2,2,1]],[[2,0,2,1],[2,3,3,0],[2,3,0,1],[0,2,2,1]],[[1,0,2,1],[3,3,3,0],[2,3,0,1],[0,2,2,1]],[[1,0,2,1],[2,4,3,0],[2,3,0,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,0],[3,3,0,1],[0,2,2,1]],[[2,0,2,1],[2,3,3,0],[2,3,0,1],[1,1,2,1]],[[1,0,2,1],[3,3,3,0],[2,3,0,1],[1,1,2,1]],[[1,0,2,1],[2,4,3,0],[2,3,0,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[3,3,0,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,0],[2,3,0,1],[2,1,2,1]],[[2,0,2,1],[2,3,3,0],[2,3,0,1],[1,2,1,1]],[[1,0,2,1],[3,3,3,0],[2,3,0,1],[1,2,1,1]],[[1,0,2,1],[2,4,3,0],[2,3,0,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[3,3,0,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,0],[2,3,0,1],[2,2,1,1]],[[2,0,2,1],[2,3,3,0],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[3,3,3,0],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[2,4,3,0],[2,3,0,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,0],[3,3,0,2],[0,2,2,0]],[[2,0,2,1],[2,3,3,0],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[3,3,3,0],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[2,4,3,0],[2,3,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[3,3,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,0],[2,3,0,2],[2,1,2,0]],[[2,0,2,1],[2,3,3,0],[2,3,0,2],[1,2,1,0]],[[1,0,2,1],[3,3,3,0],[2,3,0,2],[1,2,1,0]],[[1,0,2,1],[2,4,3,0],[2,3,0,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[3,3,0,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,0],[2,3,0,2],[2,2,1,0]],[[1,2,1,2],[1,2,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,1,1],[1,2,3,2],[0,0,3,3],[1,2,2,0]],[[1,2,1,1],[1,2,3,3],[0,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,2,4,2],[0,0,3,2],[1,2,2,0]],[[1,2,1,2],[1,2,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,2,3,2],[0,0,3,2],[1,2,1,2]],[[1,2,1,1],[1,2,3,2],[0,0,3,3],[1,2,1,1]],[[2,0,2,1],[2,3,3,0],[2,3,1,1],[0,2,1,1]],[[1,0,2,1],[3,3,3,0],[2,3,1,1],[0,2,1,1]],[[1,0,2,1],[2,4,3,0],[2,3,1,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,0],[3,3,1,1],[0,2,1,1]],[[2,0,2,1],[2,3,3,0],[2,3,1,1],[1,1,1,1]],[[1,0,2,1],[3,3,3,0],[2,3,1,1],[1,1,1,1]],[[1,0,2,1],[2,4,3,0],[2,3,1,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[3,3,1,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,0],[2,3,1,1],[2,1,1,1]],[[2,0,2,1],[2,3,3,0],[2,3,1,1],[1,2,0,1]],[[1,0,2,1],[3,3,3,0],[2,3,1,1],[1,2,0,1]],[[1,0,2,1],[2,4,3,0],[2,3,1,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[3,3,1,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,0],[2,3,1,1],[2,2,0,1]],[[1,2,1,1],[1,2,3,3],[0,0,3,2],[1,2,1,1]],[[1,2,1,1],[1,2,4,2],[0,0,3,2],[1,2,1,1]],[[1,2,1,2],[1,2,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,1,1],[1,2,3,2],[0,0,3,2],[1,1,2,2]],[[1,2,1,1],[1,2,3,2],[0,0,3,3],[1,1,2,1]],[[1,2,1,1],[1,2,3,3],[0,0,3,2],[1,1,2,1]],[[1,2,1,1],[1,2,4,2],[0,0,3,2],[1,1,2,1]],[[1,2,1,2],[1,2,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,1,1],[1,2,3,2],[0,0,3,2],[0,2,2,2]],[[1,2,1,1],[1,2,3,2],[0,0,3,3],[0,2,2,1]],[[1,2,1,1],[1,2,3,3],[0,0,3,2],[0,2,2,1]],[[1,2,1,1],[1,2,4,2],[0,0,3,2],[0,2,2,1]],[[2,0,2,1],[2,3,3,0],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[3,3,3,0],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,0],[2,3,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,0],[3,3,1,2],[0,2,0,1]],[[2,0,2,1],[2,3,3,0],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[3,3,3,0],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,0],[2,3,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,0],[3,3,1,2],[0,2,1,0]],[[1,2,1,2],[1,2,3,2],[0,0,3,2],[0,2,2,1]],[[1,2,1,1],[1,2,3,2],[0,0,2,2],[1,2,2,2]],[[1,2,1,1],[1,2,3,2],[0,0,2,2],[1,2,3,1]],[[1,2,1,1],[1,2,3,2],[0,0,2,3],[1,2,2,1]],[[1,2,1,1],[1,2,3,3],[0,0,2,2],[1,2,2,1]],[[1,2,1,1],[1,2,4,2],[0,0,2,2],[1,2,2,1]],[[1,2,1,2],[1,2,3,2],[0,0,2,2],[1,2,2,1]],[[2,0,2,1],[2,3,3,0],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[3,3,3,0],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[2,4,3,0],[2,3,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[3,3,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,0],[2,3,1,2],[2,1,0,1]],[[2,0,2,1],[2,3,3,0],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[3,3,3,0],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[2,4,3,0],[2,3,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,0],[3,3,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,0],[2,3,1,2],[2,1,1,0]],[[2,0,2,1],[2,3,3,0],[2,3,1,2],[1,2,0,0]],[[1,0,2,1],[3,3,3,0],[2,3,1,2],[1,2,0,0]],[[1,0,2,1],[2,4,3,0],[2,3,1,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,0],[3,3,1,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,0],[2,3,1,2],[2,2,0,0]],[[2,0,2,1],[2,3,3,0],[2,3,2,1],[1,0,1,1]],[[1,0,2,1],[3,3,3,0],[2,3,2,1],[1,0,1,1]],[[1,0,2,1],[2,4,3,0],[2,3,2,1],[1,0,1,1]],[[1,0,2,1],[2,3,3,0],[3,3,2,1],[1,0,1,1]],[[2,0,2,1],[2,3,3,0],[2,3,2,2],[1,0,0,1]],[[1,0,3,1],[2,3,3,0],[2,3,2,2],[1,0,0,1]],[[1,0,2,2],[2,3,3,0],[2,3,2,2],[1,0,0,1]],[[1,0,2,1],[3,3,3,0],[2,3,2,2],[1,0,0,1]],[[1,0,2,1],[2,4,3,0],[2,3,2,2],[1,0,0,1]],[[1,0,2,1],[2,3,4,0],[2,3,2,2],[1,0,0,1]],[[1,0,2,1],[2,3,3,0],[3,3,2,2],[1,0,0,1]],[[2,0,2,1],[2,3,3,0],[2,3,2,2],[1,0,1,0]],[[1,0,3,1],[2,3,3,0],[2,3,2,2],[1,0,1,0]],[[1,0,2,2],[2,3,3,0],[2,3,2,2],[1,0,1,0]],[[1,0,2,1],[3,3,3,0],[2,3,2,2],[1,0,1,0]],[[1,0,2,1],[2,4,3,0],[2,3,2,2],[1,0,1,0]],[[1,0,2,1],[2,3,4,0],[2,3,2,2],[1,0,1,0]],[[1,0,2,1],[2,3,3,0],[3,3,2,2],[1,0,1,0]],[[1,2,1,1],[1,2,3,1],[2,1,3,3],[1,1,1,0]],[[1,2,1,1],[1,2,3,1],[2,1,4,2],[1,1,1,0]],[[1,2,1,1],[1,2,4,1],[2,1,3,2],[1,1,1,0]],[[1,2,1,1],[1,2,3,1],[2,1,3,2],[1,1,0,2]],[[1,2,1,1],[1,2,3,1],[2,1,3,3],[1,1,0,1]],[[1,2,1,1],[1,2,3,1],[2,1,4,2],[1,1,0,1]],[[1,2,1,1],[1,2,4,1],[2,1,3,2],[1,1,0,1]],[[1,2,1,1],[1,2,3,1],[2,1,3,2],[1,0,3,0]],[[1,2,1,1],[1,2,3,1],[2,1,3,3],[1,0,2,0]],[[1,2,1,1],[1,2,3,1],[2,1,4,2],[1,0,2,0]],[[1,2,1,1],[1,2,4,1],[2,1,3,2],[1,0,2,0]],[[1,2,1,1],[1,2,3,1],[2,1,3,2],[1,0,1,2]],[[1,2,1,1],[1,2,3,1],[2,1,3,3],[1,0,1,1]],[[1,2,1,1],[1,2,3,1],[2,1,4,2],[1,0,1,1]],[[1,2,1,1],[1,2,4,1],[2,1,3,2],[1,0,1,1]],[[1,2,1,1],[1,2,3,1],[2,1,3,3],[0,2,1,0]],[[1,2,1,1],[1,2,3,1],[2,1,4,2],[0,2,1,0]],[[1,2,1,1],[1,2,4,1],[2,1,3,2],[0,2,1,0]],[[1,2,1,1],[1,2,3,1],[2,1,3,2],[0,2,0,2]],[[1,2,1,1],[1,2,3,1],[2,1,3,3],[0,2,0,1]],[[1,2,1,1],[1,2,3,1],[2,1,4,2],[0,2,0,1]],[[1,2,1,1],[1,2,4,1],[2,1,3,2],[0,2,0,1]],[[1,2,1,1],[1,2,3,1],[2,1,3,2],[0,1,3,0]],[[1,2,1,1],[1,2,3,1],[2,1,3,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,1],[2,1,4,2],[0,1,2,0]],[[1,2,1,1],[1,2,4,1],[2,1,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,1],[2,1,3,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,1],[2,1,3,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,1],[2,1,4,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,1],[2,1,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,1],[2,1,3,2],[0,0,2,2]],[[1,2,1,1],[1,2,3,1],[2,1,3,3],[0,0,2,1]],[[1,2,1,1],[1,2,3,1],[2,1,4,2],[0,0,2,1]],[[1,2,1,1],[1,2,4,1],[2,1,3,2],[0,0,2,1]],[[1,2,1,1],[1,2,3,1],[2,1,3,1],[1,0,2,2]],[[1,2,1,1],[1,2,3,1],[2,1,3,1],[1,0,3,1]],[[1,2,1,1],[1,2,3,1],[2,1,4,1],[1,0,2,1]],[[1,2,1,1],[1,2,4,1],[2,1,3,1],[1,0,2,1]],[[1,2,1,1],[1,2,3,1],[2,1,3,1],[0,1,2,2]],[[1,2,1,1],[1,2,3,1],[2,1,3,1],[0,1,3,1]],[[1,2,1,1],[1,2,3,1],[2,1,4,1],[0,1,2,1]],[[1,2,1,1],[1,2,4,1],[2,1,3,1],[0,1,2,1]],[[1,2,1,1],[1,2,3,1],[2,1,2,2],[1,0,2,2]],[[1,2,1,1],[1,2,3,1],[2,1,2,2],[1,0,3,1]],[[1,2,1,1],[1,2,3,1],[2,1,2,3],[1,0,2,1]],[[1,2,1,1],[1,2,3,1],[2,1,2,2],[0,1,2,2]],[[1,2,1,1],[1,2,3,1],[2,1,2,2],[0,1,3,1]],[[1,2,1,1],[1,2,3,1],[2,1,2,3],[0,1,2,1]],[[1,2,1,1],[1,2,3,1],[2,0,3,3],[1,2,1,0]],[[1,2,1,1],[1,2,3,1],[2,0,4,2],[1,2,1,0]],[[1,2,1,1],[1,2,4,1],[2,0,3,2],[1,2,1,0]],[[1,2,1,1],[1,2,3,1],[2,0,3,2],[1,2,0,2]],[[1,2,1,1],[1,2,3,1],[2,0,3,3],[1,2,0,1]],[[1,2,1,1],[1,2,3,1],[2,0,4,2],[1,2,0,1]],[[1,2,1,1],[1,2,4,1],[2,0,3,2],[1,2,0,1]],[[1,2,1,1],[1,2,3,1],[2,0,3,2],[1,1,3,0]],[[1,2,1,1],[1,2,3,1],[2,0,3,3],[1,1,2,0]],[[1,2,1,1],[1,2,3,1],[2,0,4,2],[1,1,2,0]],[[1,2,1,1],[1,2,4,1],[2,0,3,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,1],[2,0,3,2],[1,1,1,2]],[[1,2,1,1],[1,2,3,1],[2,0,3,3],[1,1,1,1]],[[1,2,1,1],[1,2,3,1],[2,0,4,2],[1,1,1,1]],[[1,2,1,1],[1,2,4,1],[2,0,3,2],[1,1,1,1]],[[1,2,1,1],[1,2,3,1],[2,0,3,2],[0,2,3,0]],[[1,2,1,1],[1,2,3,1],[2,0,3,2],[0,3,2,0]],[[1,2,1,1],[1,2,3,1],[2,0,3,3],[0,2,2,0]],[[1,2,1,1],[1,2,3,1],[2,0,4,2],[0,2,2,0]],[[1,2,1,1],[1,2,4,1],[2,0,3,2],[0,2,2,0]],[[1,2,1,1],[1,2,3,1],[2,0,3,2],[0,2,1,2]],[[1,2,1,1],[1,2,3,1],[2,0,3,3],[0,2,1,1]],[[1,2,1,1],[1,2,3,1],[2,0,4,2],[0,2,1,1]],[[1,2,1,1],[1,2,4,1],[2,0,3,2],[0,2,1,1]],[[1,2,1,1],[1,2,3,1],[2,0,3,1],[1,1,2,2]],[[1,2,1,1],[1,2,3,1],[2,0,3,1],[1,1,3,1]],[[1,2,1,1],[1,2,3,1],[2,0,4,1],[1,1,2,1]],[[1,2,1,1],[1,2,4,1],[2,0,3,1],[1,1,2,1]],[[1,2,1,1],[1,2,3,1],[2,0,3,1],[0,2,2,2]],[[1,2,1,1],[1,2,3,1],[2,0,3,1],[0,2,3,1]],[[1,2,1,1],[1,2,3,1],[2,0,3,1],[0,3,2,1]],[[1,2,1,1],[1,2,3,1],[2,0,4,1],[0,2,2,1]],[[1,2,1,1],[1,2,4,1],[2,0,3,1],[0,2,2,1]],[[1,2,1,1],[1,2,3,1],[2,0,2,2],[1,1,2,2]],[[1,2,1,1],[1,2,3,1],[2,0,2,2],[1,1,3,1]],[[1,2,1,1],[1,2,3,1],[2,0,2,3],[1,1,2,1]],[[1,2,1,1],[1,2,3,1],[2,0,2,2],[0,2,2,2]],[[1,2,1,1],[1,2,3,1],[2,0,2,2],[0,2,3,1]],[[1,2,1,1],[1,2,3,1],[2,0,2,2],[0,3,2,1]],[[1,2,1,1],[1,2,3,1],[2,0,2,3],[0,2,2,1]],[[1,2,1,1],[1,2,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[1,2,3,1],[1,3,4,2],[0,0,2,0]],[[1,2,1,1],[1,2,4,1],[1,3,3,2],[0,0,2,0]],[[1,2,1,1],[1,2,3,1],[1,3,3,2],[0,0,1,2]],[[1,2,1,1],[1,2,3,1],[1,3,3,3],[0,0,1,1]],[[1,2,1,1],[1,2,3,1],[1,3,4,2],[0,0,1,1]],[[1,2,1,1],[1,2,4,1],[1,3,3,2],[0,0,1,1]],[[1,2,1,1],[1,2,3,1],[1,3,4,1],[1,1,1,0]],[[1,2,1,1],[1,2,3,1],[1,4,3,1],[1,1,1,0]],[[1,2,1,1],[1,2,4,1],[1,3,3,1],[1,1,1,0]],[[1,2,1,1],[1,2,3,1],[1,3,4,1],[1,1,0,1]],[[1,2,1,1],[1,2,3,1],[1,4,3,1],[1,1,0,1]],[[1,2,1,1],[1,2,4,1],[1,3,3,1],[1,1,0,1]],[[1,2,1,1],[1,2,3,1],[1,3,3,1],[1,0,3,0]],[[1,2,1,1],[1,2,3,1],[1,3,4,1],[1,0,2,0]],[[1,2,1,1],[1,2,3,1],[1,4,3,1],[1,0,2,0]],[[1,2,1,1],[1,2,4,1],[1,3,3,1],[1,0,2,0]],[[1,2,1,1],[1,2,3,1],[1,3,4,1],[1,0,1,1]],[[1,2,1,1],[1,2,3,1],[1,4,3,1],[1,0,1,1]],[[1,2,1,1],[1,2,4,1],[1,3,3,1],[1,0,1,1]],[[1,2,1,1],[1,2,3,1],[1,3,3,1],[0,3,1,0]],[[2,0,2,1],[2,3,3,0],[2,3,3,2],[1,0,0,0]],[[1,0,3,1],[2,3,3,0],[2,3,3,2],[1,0,0,0]],[[1,0,2,2],[2,3,3,0],[2,3,3,2],[1,0,0,0]],[[1,0,2,1],[3,3,3,0],[2,3,3,2],[1,0,0,0]],[[1,0,2,1],[2,4,3,0],[2,3,3,2],[1,0,0,0]],[[1,0,2,1],[2,3,4,0],[2,3,3,2],[1,0,0,0]],[[1,0,2,1],[2,3,3,0],[3,3,3,2],[1,0,0,0]],[[1,2,1,1],[1,2,3,1],[1,3,4,1],[0,2,1,0]],[[1,2,1,1],[1,2,3,1],[1,4,3,1],[0,2,1,0]],[[1,2,1,1],[1,2,4,1],[1,3,3,1],[0,2,1,0]],[[1,2,1,1],[1,2,3,1],[1,3,3,1],[0,3,0,1]],[[1,2,1,1],[1,2,3,1],[1,3,4,1],[0,2,0,1]],[[1,2,1,1],[1,2,3,1],[1,4,3,1],[0,2,0,1]],[[1,2,1,1],[1,2,4,1],[1,3,3,1],[0,2,0,1]],[[1,2,1,1],[1,2,3,1],[1,3,3,1],[0,1,3,0]],[[1,2,1,1],[1,2,3,1],[1,3,4,1],[0,1,2,0]],[[1,2,1,1],[1,2,3,1],[1,4,3,1],[0,1,2,0]],[[1,2,1,1],[1,2,4,1],[1,3,3,1],[0,1,2,0]],[[1,2,1,1],[1,2,3,1],[1,3,4,1],[0,1,1,1]],[[1,2,1,1],[1,2,3,1],[1,4,3,1],[0,1,1,1]],[[1,2,1,1],[1,2,4,1],[1,3,3,1],[0,1,1,1]],[[1,2,1,1],[1,2,3,1],[1,3,4,0],[1,1,1,1]],[[1,2,1,1],[1,2,3,1],[1,4,3,0],[1,1,1,1]],[[1,2,1,1],[1,2,4,1],[1,3,3,0],[1,1,1,1]],[[1,2,1,1],[1,2,3,1],[1,3,3,0],[1,0,2,2]],[[1,2,1,1],[1,2,3,1],[1,3,3,0],[1,0,3,1]],[[1,2,1,1],[1,2,3,1],[1,3,4,0],[1,0,2,1]],[[1,2,1,1],[1,2,3,1],[1,4,3,0],[1,0,2,1]],[[1,2,1,1],[1,2,4,1],[1,3,3,0],[1,0,2,1]],[[1,2,1,1],[1,2,3,1],[1,3,3,0],[0,3,1,1]],[[1,2,1,1],[1,2,3,1],[1,3,4,0],[0,2,1,1]],[[1,2,1,1],[1,2,3,1],[1,4,3,0],[0,2,1,1]],[[1,2,1,1],[1,2,4,1],[1,3,3,0],[0,2,1,1]],[[1,2,1,1],[1,2,3,1],[1,3,3,0],[0,1,2,2]],[[1,2,1,1],[1,2,3,1],[1,3,3,0],[0,1,3,1]],[[1,2,1,1],[1,2,3,1],[1,3,4,0],[0,1,2,1]],[[1,2,1,1],[1,2,3,1],[1,4,3,0],[0,1,2,1]],[[1,2,1,1],[1,2,4,1],[1,3,3,0],[0,1,2,1]],[[1,2,1,1],[1,2,3,1],[1,3,2,1],[0,2,3,0]],[[1,2,1,1],[1,2,3,1],[1,3,2,1],[0,3,2,0]],[[1,2,1,1],[1,2,3,1],[1,4,2,1],[0,2,2,0]],[[1,2,1,1],[1,2,3,1],[1,3,2,0],[0,2,2,2]],[[1,2,1,1],[1,2,3,1],[1,3,2,0],[0,2,3,1]],[[1,2,1,1],[1,2,3,1],[1,3,2,0],[0,3,2,1]],[[1,2,1,1],[1,2,3,1],[1,4,2,0],[0,2,2,1]],[[1,2,1,1],[1,2,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,1,1],[1,2,3,1],[1,2,4,2],[1,1,1,0]],[[1,2,1,1],[1,2,4,1],[1,2,3,2],[1,1,1,0]],[[1,2,1,1],[1,2,3,1],[1,2,3,2],[1,1,0,2]],[[1,2,1,1],[1,2,3,1],[1,2,3,3],[1,1,0,1]],[[1,2,1,1],[1,2,3,1],[1,2,4,2],[1,1,0,1]],[[1,2,1,1],[1,2,4,1],[1,2,3,2],[1,1,0,1]],[[1,2,1,1],[1,2,3,1],[1,2,3,2],[1,0,3,0]],[[1,2,1,1],[1,2,3,1],[1,2,3,3],[1,0,2,0]],[[1,2,1,1],[1,2,3,1],[1,2,4,2],[1,0,2,0]],[[1,2,1,1],[1,2,4,1],[1,2,3,2],[1,0,2,0]],[[1,2,1,1],[1,2,3,1],[1,2,3,2],[1,0,1,2]],[[1,2,1,1],[1,2,3,1],[1,2,3,3],[1,0,1,1]],[[1,2,1,1],[1,2,3,1],[1,2,4,2],[1,0,1,1]],[[1,2,1,1],[1,2,4,1],[1,2,3,2],[1,0,1,1]],[[1,2,1,1],[1,2,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[1,2,3,1],[1,2,4,2],[0,2,1,0]],[[1,2,1,1],[1,2,4,1],[1,2,3,2],[0,2,1,0]],[[1,2,1,1],[1,2,3,1],[1,2,3,2],[0,2,0,2]],[[1,2,1,1],[1,2,3,1],[1,2,3,3],[0,2,0,1]],[[1,2,1,1],[1,2,3,1],[1,2,4,2],[0,2,0,1]],[[1,2,1,1],[1,2,4,1],[1,2,3,2],[0,2,0,1]],[[1,2,1,1],[1,2,3,1],[1,2,3,2],[0,1,3,0]],[[1,2,1,1],[1,2,3,1],[1,2,3,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,1],[1,2,4,2],[0,1,2,0]],[[1,2,1,1],[1,2,4,1],[1,2,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,1],[1,2,3,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,1],[1,2,3,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,1],[1,2,4,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,1],[1,2,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,1],[1,2,3,2],[0,0,2,2]],[[1,2,1,1],[1,2,3,1],[1,2,3,3],[0,0,2,1]],[[1,2,1,1],[1,2,3,1],[1,2,4,2],[0,0,2,1]],[[1,2,1,1],[1,2,4,1],[1,2,3,2],[0,0,2,1]],[[1,2,1,1],[1,2,3,1],[1,2,3,1],[1,0,2,2]],[[1,2,1,1],[1,2,3,1],[1,2,3,1],[1,0,3,1]],[[1,2,1,1],[1,2,3,1],[1,2,4,1],[1,0,2,1]],[[1,2,1,1],[1,2,4,1],[1,2,3,1],[1,0,2,1]],[[1,0,3,1],[2,3,3,1],[0,0,2,2],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[0,0,2,2],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[0,0,2,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[0,0,3,2],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[0,0,3,2],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[0,0,3,2],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[0,0,3,2],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[0,0,3,2],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[0,0,3,2],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[0,0,3,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,1],[0,0,3,2],[1,2,2,0]],[[1,0,2,1],[2,3,4,1],[0,0,3,2],[1,2,2,0]],[[2,0,2,1],[2,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[0,1,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[0,1,1,2],[1,2,2,1]],[[2,0,2,1],[2,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[0,1,2,2],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[0,1,2,2],[1,2,1,1]],[[2,0,2,1],[2,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,0,3,1],[2,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[0,1,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,4,1],[0,1,2,2],[1,2,2,0]],[[2,0,2,1],[2,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[0,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[0,1,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[0,1,4,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[0,1,3,0],[2,2,2,1]],[[1,0,2,1],[2,3,3,1],[0,1,3,0],[1,3,2,1]],[[1,0,2,1],[2,3,3,1],[0,1,3,0],[1,2,3,1]],[[1,0,2,1],[2,3,3,1],[0,1,3,0],[1,2,2,2]],[[2,0,2,1],[2,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[0,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[0,1,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[0,1,4,1],[1,2,1,1]],[[2,0,2,1],[2,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,0,3,1],[2,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,0,2,2],[2,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[0,1,3,1],[1,2,2,0]],[[1,0,2,1],[2,3,4,1],[0,1,3,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[0,1,4,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[0,1,3,1],[2,2,2,0]],[[1,0,2,1],[2,3,3,1],[0,1,3,1],[1,3,2,0]],[[1,0,2,1],[2,3,3,1],[0,1,3,1],[1,2,3,0]],[[1,0,3,1],[2,3,3,1],[0,1,3,2],[1,0,2,1]],[[1,0,2,2],[2,3,3,1],[0,1,3,2],[1,0,2,1]],[[1,0,2,1],[2,3,4,1],[0,1,3,2],[1,0,2,1]],[[1,0,3,1],[2,3,3,1],[0,1,3,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[0,1,3,2],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[0,1,3,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[0,1,3,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[0,1,3,2],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[0,1,3,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,1],[1,2,3,1],[0,2,3,0]],[[1,2,1,1],[1,2,3,1],[1,2,3,1],[0,3,2,0]],[[1,2,1,1],[1,2,3,1],[1,2,4,1],[0,2,2,0]],[[1,2,1,1],[1,2,4,1],[1,2,3,1],[0,2,2,0]],[[1,2,1,1],[1,2,3,1],[1,2,3,1],[0,1,2,2]],[[1,2,1,1],[1,2,3,1],[1,2,3,1],[0,1,3,1]],[[1,2,1,1],[1,2,3,1],[1,2,4,1],[0,1,2,1]],[[1,2,1,1],[1,2,4,1],[1,2,3,1],[0,1,2,1]],[[2,0,2,1],[2,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[0,2,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[0,2,0,2],[1,2,2,1]],[[2,0,2,1],[2,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[0,2,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[0,2,1,2],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[0,2,2,2],[1,0,2,1]],[[1,0,2,2],[2,3,3,1],[0,2,2,2],[1,0,2,1]],[[1,0,2,1],[2,4,3,1],[0,2,2,2],[1,0,2,1]],[[1,0,2,1],[2,3,4,1],[0,2,2,2],[1,0,2,1]],[[2,0,2,1],[2,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[0,2,2,2],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[0,2,2,2],[1,1,1,1]],[[2,0,2,1],[2,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[0,2,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[0,2,2,2],[1,1,2,0]],[[2,0,2,1],[2,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,0,2,1],[3,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,0,2,1],[2,4,3,1],[0,2,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,4,1],[0,2,2,2],[1,2,0,1]],[[2,0,2,1],[2,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,0,3,1],[2,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,0,2,1],[3,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,0,2,1],[2,4,3,1],[0,2,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,4,1],[0,2,2,2],[1,2,1,0]],[[1,2,1,1],[1,2,3,1],[1,2,3,0],[0,2,2,2]],[[1,2,1,1],[1,2,3,1],[1,2,3,0],[0,2,3,1]],[[1,2,1,1],[1,2,3,1],[1,2,3,0],[0,3,2,1]],[[1,2,1,1],[1,2,3,1],[1,2,4,0],[0,2,2,1]],[[1,2,1,1],[1,2,4,1],[1,2,3,0],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[0,2,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[0,2,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[0,2,4,0],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[0,2,3,0],[1,1,3,1]],[[1,0,2,1],[2,3,3,1],[0,2,3,0],[1,1,2,2]],[[2,0,2,1],[2,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[0,2,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[0,2,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[0,2,4,0],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[0,2,3,1],[1,0,2,1]],[[1,0,2,2],[2,3,3,1],[0,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,4,3,1],[0,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,4,1],[0,2,3,1],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[0,2,4,1],[1,0,2,1]],[[2,0,2,1],[2,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[0,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[0,2,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[0,2,4,1],[1,1,1,1]],[[2,0,2,1],[2,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,0,3,1],[2,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[0,2,3,1],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[0,2,3,1],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[0,2,4,1],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[0,2,3,1],[1,1,3,0]],[[2,0,2,1],[2,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,0,3,1],[2,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,0,2,2],[2,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,0,2,1],[3,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,0,2,1],[2,4,3,1],[0,2,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,4,1],[0,2,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[0,2,4,1],[1,2,0,1]],[[2,0,2,1],[2,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,0,3,1],[2,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,0,2,2],[2,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,0,2,1],[3,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,0,2,1],[2,4,3,1],[0,2,3,1],[1,2,1,0]],[[1,0,2,1],[2,3,4,1],[0,2,3,1],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[0,2,4,1],[1,2,1,0]],[[1,2,1,1],[1,2,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,1,1],[1,2,3,1],[1,2,2,2],[1,0,3,1]],[[1,2,1,1],[1,2,3,1],[1,2,2,3],[1,0,2,1]],[[1,2,1,1],[1,2,3,1],[1,2,2,2],[0,1,2,2]],[[1,2,1,1],[1,2,3,1],[1,2,2,2],[0,1,3,1]],[[1,2,1,1],[1,2,3,1],[1,2,2,3],[0,1,2,1]],[[1,0,3,1],[2,3,3,1],[0,2,3,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,1],[0,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,4,3,1],[0,2,3,2],[1,1,0,1]],[[1,0,2,1],[2,3,4,1],[0,2,3,2],[1,1,0,1]],[[1,2,1,1],[1,2,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,1,1],[1,2,3,1],[1,1,3,2],[0,3,2,0]],[[1,2,1,1],[1,2,3,1],[1,1,3,3],[0,2,2,0]],[[1,2,1,1],[1,2,3,1],[1,1,4,2],[0,2,2,0]],[[1,2,1,1],[1,2,4,1],[1,1,3,2],[0,2,2,0]],[[1,2,1,1],[1,2,3,1],[1,1,3,2],[0,2,1,2]],[[1,2,1,1],[1,2,3,1],[1,1,3,3],[0,2,1,1]],[[1,2,1,1],[1,2,3,1],[1,1,4,2],[0,2,1,1]],[[1,2,1,1],[1,2,4,1],[1,1,3,2],[0,2,1,1]],[[1,2,1,1],[1,2,3,1],[1,1,3,1],[0,2,2,2]],[[1,2,1,1],[1,2,3,1],[1,1,3,1],[0,2,3,1]],[[1,2,1,1],[1,2,3,1],[1,1,3,1],[0,3,2,1]],[[1,2,1,1],[1,2,3,1],[1,1,4,1],[0,2,2,1]],[[1,2,1,1],[1,2,4,1],[1,1,3,1],[0,2,2,1]],[[1,2,1,1],[1,2,3,1],[1,1,2,2],[0,2,2,2]],[[1,2,1,1],[1,2,3,1],[1,1,2,2],[0,2,3,1]],[[2,0,2,1],[2,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[0,3,0,1],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[0,3,0,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[0,4,0,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[0,3,0,1],[2,2,2,1]],[[1,0,2,1],[2,3,3,1],[0,3,0,1],[1,3,2,1]],[[1,0,2,1],[2,3,3,1],[0,3,0,1],[1,2,3,1]],[[1,0,2,1],[2,3,3,1],[0,3,0,1],[1,2,2,2]],[[2,0,2,1],[2,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[0,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[0,3,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[0,4,0,2],[1,1,2,1]],[[2,0,2,1],[2,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[0,3,0,2],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[0,3,0,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[0,4,0,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[0,3,0,2],[2,2,1,1]],[[1,0,2,1],[2,3,3,1],[0,3,0,2],[1,3,1,1]],[[2,0,2,1],[2,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,0,3,1],[2,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[0,3,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,4,1],[0,3,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[0,4,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[0,3,0,2],[2,2,2,0]],[[1,0,2,1],[2,3,3,1],[0,3,0,2],[1,3,2,0]],[[1,0,2,1],[2,3,3,1],[0,3,0,2],[1,2,3,0]],[[2,0,2,1],[2,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[0,3,1,0],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[0,3,1,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[0,4,1,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[0,3,1,0],[2,2,2,1]],[[1,0,2,1],[2,3,3,1],[0,3,1,0],[1,3,2,1]],[[1,0,2,1],[2,3,3,1],[0,3,1,0],[1,2,3,1]],[[1,0,2,1],[2,3,3,1],[0,3,1,0],[1,2,2,2]],[[2,0,2,1],[2,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,0,3,1],[2,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,0,2,2],[2,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[0,3,1,1],[1,2,2,0]],[[1,0,2,1],[2,3,4,1],[0,3,1,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[0,4,1,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[0,3,1,1],[2,2,2,0]],[[1,0,2,1],[2,3,3,1],[0,3,1,1],[1,3,2,0]],[[1,0,2,1],[2,3,3,1],[0,3,1,1],[1,2,3,0]],[[1,0,3,1],[2,3,3,1],[0,3,1,2],[0,1,2,1]],[[1,0,2,2],[2,3,3,1],[0,3,1,2],[0,1,2,1]],[[1,0,2,1],[2,4,3,1],[0,3,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,4,1],[0,3,1,2],[0,1,2,1]],[[2,0,2,1],[2,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[0,3,1,2],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[0,3,1,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[0,4,1,2],[1,1,1,1]],[[2,0,2,1],[2,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[0,3,1,2],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[0,3,1,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[0,4,1,2],[1,1,2,0]],[[2,0,2,1],[2,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,0,2,1],[3,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,0,2,1],[2,4,3,1],[0,3,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,4,1],[0,3,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[0,4,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[0,3,1,2],[2,2,0,1]],[[1,0,2,1],[2,3,3,1],[0,3,1,2],[1,3,0,1]],[[2,0,2,1],[2,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,0,3,1],[2,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,0,2,1],[3,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,0,2,1],[2,4,3,1],[0,3,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,4,1],[0,3,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[0,4,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[0,3,1,2],[2,2,1,0]],[[1,0,2,1],[2,3,3,1],[0,3,1,2],[1,3,1,0]],[[1,2,1,1],[1,2,3,1],[1,1,2,2],[0,3,2,1]],[[1,2,1,1],[1,2,3,1],[1,1,2,3],[0,2,2,1]],[[1,2,1,1],[1,2,3,1],[1,0,3,2],[1,2,3,0]],[[1,2,1,1],[1,2,3,1],[1,0,3,2],[1,3,2,0]],[[1,2,1,1],[1,2,3,1],[1,0,3,2],[2,2,2,0]],[[2,0,2,1],[2,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[0,3,2,0],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[0,3,2,0],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[0,4,2,0],[1,1,2,1]],[[2,0,2,1],[2,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[0,3,2,0],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[0,3,2,0],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[0,4,2,0],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[0,3,2,0],[2,2,1,1]],[[1,0,2,1],[2,3,3,1],[0,3,2,0],[1,3,1,1]],[[2,0,2,1],[2,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[0,3,2,1],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[0,3,2,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[0,4,2,1],[1,1,1,1]],[[2,0,2,1],[2,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,0,3,1],[2,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[0,3,2,1],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[0,3,2,1],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[0,4,2,1],[1,1,2,0]],[[2,0,2,1],[2,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,0,3,1],[2,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,0,2,2],[2,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,0,2,1],[3,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,0,2,1],[2,4,3,1],[0,3,2,1],[1,2,0,1]],[[1,0,2,1],[2,3,4,1],[0,3,2,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[0,4,2,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[0,3,2,1],[2,2,0,1]],[[1,0,2,1],[2,3,3,1],[0,3,2,1],[1,3,0,1]],[[2,0,2,1],[2,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,0,3,1],[2,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,0,2,2],[2,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,0,2,1],[3,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,0,2,1],[2,4,3,1],[0,3,2,1],[1,2,1,0]],[[1,0,2,1],[2,3,4,1],[0,3,2,1],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[0,4,2,1],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[0,3,2,1],[2,2,1,0]],[[1,0,2,1],[2,3,3,1],[0,3,2,1],[1,3,1,0]],[[1,2,1,1],[1,2,3,1],[1,0,3,3],[1,2,2,0]],[[1,2,1,1],[1,2,3,1],[1,0,4,2],[1,2,2,0]],[[1,2,1,1],[1,2,4,1],[1,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,2,3,1],[1,0,3,2],[1,2,1,2]],[[1,2,1,1],[1,2,3,1],[1,0,3,3],[1,2,1,1]],[[1,2,1,1],[1,2,3,1],[1,0,4,2],[1,2,1,1]],[[1,2,1,1],[1,2,4,1],[1,0,3,2],[1,2,1,1]],[[1,2,1,1],[1,2,3,1],[1,0,3,2],[0,2,2,2]],[[1,2,1,1],[1,2,3,1],[1,0,3,2],[0,2,3,1]],[[1,2,1,1],[1,2,3,1],[1,0,3,3],[0,2,2,1]],[[1,2,1,1],[1,2,3,1],[1,0,3,1],[1,2,2,2]],[[1,0,3,1],[2,3,3,1],[0,3,2,2],[0,0,2,1]],[[1,0,2,2],[2,3,3,1],[0,3,2,2],[0,0,2,1]],[[1,0,2,1],[2,4,3,1],[0,3,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,4,1],[0,3,2,2],[0,0,2,1]],[[1,0,3,1],[2,3,3,1],[0,3,2,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[0,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,4,3,1],[0,3,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[0,3,2,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[0,3,2,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[0,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[0,3,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[0,3,2,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[0,3,2,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,1],[0,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[0,3,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,4,1],[0,3,2,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,1],[0,3,2,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[0,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[0,3,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,2,3,1],[1,0,3,1],[1,2,3,1]],[[1,2,1,1],[1,2,3,1],[1,0,3,1],[1,3,2,1]],[[1,2,1,1],[1,2,3,1],[1,0,3,1],[2,2,2,1]],[[1,2,1,1],[1,2,3,1],[1,0,4,1],[1,2,2,1]],[[1,2,1,1],[1,2,4,1],[1,0,3,1],[1,2,2,1]],[[1,2,1,1],[1,2,3,1],[1,0,2,2],[1,2,2,2]],[[1,2,1,1],[1,2,3,1],[1,0,2,2],[1,2,3,1]],[[1,2,1,1],[1,2,3,1],[1,0,2,2],[1,3,2,1]],[[1,2,1,1],[1,2,3,1],[1,0,2,2],[2,2,2,1]],[[1,2,1,1],[1,2,3,1],[1,0,2,3],[1,2,2,1]],[[1,2,1,1],[1,2,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,1,1],[1,2,3,1],[0,3,4,2],[0,2,1,0]],[[1,2,1,1],[1,2,4,1],[0,3,3,2],[0,2,1,0]],[[1,0,3,1],[2,3,3,1],[0,3,3,0],[0,1,2,1]],[[1,0,2,2],[2,3,3,1],[0,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,4,3,1],[0,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,4,1],[0,3,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[0,3,4,0],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[0,3,3,0],[0,1,3,1]],[[1,0,2,1],[2,3,3,1],[0,3,3,0],[0,1,2,2]],[[1,0,3,1],[2,3,3,1],[0,3,3,0],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[0,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[0,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[0,3,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[0,3,4,0],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,0,3,1],[2,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[0,3,3,0],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[0,3,3,0],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[0,4,3,0],[1,1,2,0]],[[2,0,2,1],[2,3,3,1],[0,3,3,0],[1,2,1,0]],[[1,0,3,1],[2,3,3,1],[0,3,3,0],[1,2,1,0]],[[1,0,2,2],[2,3,3,1],[0,3,3,0],[1,2,1,0]],[[1,0,2,1],[3,3,3,1],[0,3,3,0],[1,2,1,0]],[[1,0,2,1],[2,4,3,1],[0,3,3,0],[1,2,1,0]],[[1,0,2,1],[2,3,4,1],[0,3,3,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[0,4,3,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[0,3,3,0],[2,2,1,0]],[[1,0,2,1],[2,3,3,1],[0,3,3,0],[1,3,1,0]],[[1,2,1,1],[1,2,3,1],[0,3,3,2],[0,2,0,2]],[[1,2,1,1],[1,2,3,1],[0,3,3,3],[0,2,0,1]],[[1,2,1,1],[1,2,3,1],[0,3,4,2],[0,2,0,1]],[[1,2,1,1],[1,2,4,1],[0,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,2,3,1],[0,3,3,2],[0,1,3,0]],[[1,2,1,1],[1,2,3,1],[0,3,3,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,1],[0,3,4,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[0,3,3,1],[0,0,2,1]],[[1,0,2,2],[2,3,3,1],[0,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,4,3,1],[0,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,4,1],[0,3,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,3,1],[0,3,4,1],[0,0,2,1]],[[1,0,3,1],[2,3,3,1],[0,3,3,1],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[0,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,4,3,1],[0,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[0,3,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,3,1],[0,3,4,1],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[0,3,3,1],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[0,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[0,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[0,3,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[0,3,4,1],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[0,3,3,1],[0,1,3,0]],[[1,0,3,1],[2,3,3,1],[0,3,3,1],[0,2,0,1]],[[1,0,2,2],[2,3,3,1],[0,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[0,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,4,1],[0,3,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[0,3,4,1],[0,2,0,1]],[[1,0,3,1],[2,3,3,1],[0,3,3,1],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[0,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[0,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[0,3,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[0,3,4,1],[0,2,1,0]],[[1,2,1,1],[1,2,4,1],[0,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,1],[0,3,3,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,1],[0,3,3,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,1],[0,3,4,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,1],[0,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,1],[0,3,3,2],[0,0,2,2]],[[1,2,1,1],[1,2,3,1],[0,3,3,3],[0,0,2,1]],[[1,2,1,1],[1,2,3,1],[0,3,4,2],[0,0,2,1]],[[1,2,1,1],[1,2,4,1],[0,3,3,2],[0,0,2,1]],[[2,0,2,1],[2,3,3,1],[0,3,3,1],[1,2,0,0]],[[1,0,3,1],[2,3,3,1],[0,3,3,1],[1,2,0,0]],[[1,0,2,2],[2,3,3,1],[0,3,3,1],[1,2,0,0]],[[1,0,2,1],[3,3,3,1],[0,3,3,1],[1,2,0,0]],[[1,0,2,1],[2,4,3,1],[0,3,3,1],[1,2,0,0]],[[1,0,2,1],[2,3,4,1],[0,3,3,1],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[0,4,3,1],[1,2,0,0]],[[1,2,1,1],[1,2,3,1],[0,3,3,1],[1,3,1,0]],[[1,2,1,1],[1,2,3,1],[0,3,3,1],[2,2,1,0]],[[1,2,1,1],[1,2,3,1],[0,3,4,1],[1,2,1,0]],[[1,2,1,1],[1,2,3,1],[0,4,3,1],[1,2,1,0]],[[1,2,1,1],[1,2,4,1],[0,3,3,1],[1,2,1,0]],[[1,2,1,1],[1,2,3,1],[0,3,3,1],[1,3,0,1]],[[1,2,1,1],[1,2,3,1],[0,3,3,1],[2,2,0,1]],[[1,2,1,1],[1,2,3,1],[0,3,4,1],[1,2,0,1]],[[1,2,1,1],[1,2,3,1],[0,4,3,1],[1,2,0,1]],[[1,2,1,1],[1,2,4,1],[0,3,3,1],[1,2,0,1]],[[1,2,1,1],[1,2,3,1],[0,3,3,1],[1,1,3,0]],[[1,2,1,1],[1,2,3,1],[0,3,4,1],[1,1,2,0]],[[1,2,1,1],[1,2,3,1],[0,4,3,1],[1,1,2,0]],[[1,2,1,1],[1,2,4,1],[0,3,3,1],[1,1,2,0]],[[1,2,1,1],[1,2,3,1],[0,3,4,1],[1,1,1,1]],[[1,2,1,1],[1,2,3,1],[0,4,3,1],[1,1,1,1]],[[1,2,1,1],[1,2,4,1],[0,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,2,3,1],[0,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,2,3,1],[0,3,3,1],[0,1,3,1]],[[1,2,1,1],[1,2,3,1],[0,3,4,1],[0,1,2,1]],[[1,2,1,1],[1,2,4,1],[0,3,3,1],[0,1,2,1]],[[1,0,3,1],[2,3,3,1],[0,3,3,2],[0,1,0,1]],[[1,0,2,2],[2,3,3,1],[0,3,3,2],[0,1,0,1]],[[1,0,2,1],[2,4,3,1],[0,3,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,4,1],[0,3,3,2],[0,1,0,1]],[[1,2,1,1],[1,2,3,1],[0,3,3,0],[1,3,1,1]],[[1,2,1,1],[1,2,3,1],[0,3,3,0],[2,2,1,1]],[[1,2,1,1],[1,2,3,1],[0,3,4,0],[1,2,1,1]],[[1,2,1,1],[1,2,3,1],[0,4,3,0],[1,2,1,1]],[[1,2,1,1],[1,2,4,1],[0,3,3,0],[1,2,1,1]],[[1,2,1,1],[1,2,3,1],[0,3,3,0],[1,1,2,2]],[[1,2,1,1],[1,2,3,1],[0,3,3,0],[1,1,3,1]],[[1,2,1,1],[1,2,3,1],[0,3,4,0],[1,1,2,1]],[[1,2,1,1],[1,2,3,1],[0,4,3,0],[1,1,2,1]],[[1,2,1,1],[1,2,4,1],[0,3,3,0],[1,1,2,1]],[[1,2,1,1],[1,2,3,1],[0,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,2,3,1],[0,3,2,2],[0,1,3,1]],[[1,2,1,1],[1,2,3,1],[0,3,2,3],[0,1,2,1]],[[1,2,1,1],[1,2,3,1],[0,3,2,1],[1,2,3,0]],[[1,2,1,1],[1,2,3,1],[0,3,2,1],[1,3,2,0]],[[1,2,1,1],[1,2,3,1],[0,3,2,1],[2,2,2,0]],[[1,2,1,1],[1,2,3,1],[0,4,2,1],[1,2,2,0]],[[1,2,1,1],[1,2,3,1],[0,3,2,0],[1,2,2,2]],[[1,2,1,1],[1,2,3,1],[0,3,2,0],[1,2,3,1]],[[1,2,1,1],[1,2,3,1],[0,3,2,0],[1,3,2,1]],[[1,2,1,1],[1,2,3,1],[0,3,2,0],[2,2,2,1]],[[1,2,1,1],[1,2,3,1],[0,4,2,0],[1,2,2,1]],[[1,2,1,1],[1,2,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,1,1],[1,2,3,1],[0,2,4,2],[1,2,1,0]],[[1,2,1,1],[1,2,4,1],[0,2,3,2],[1,2,1,0]],[[1,2,1,1],[1,2,3,1],[0,2,3,2],[1,2,0,2]],[[1,2,1,1],[1,2,3,1],[0,2,3,3],[1,2,0,1]],[[1,2,1,1],[1,2,3,1],[0,2,4,2],[1,2,0,1]],[[1,2,1,1],[1,2,4,1],[0,2,3,2],[1,2,0,1]],[[1,2,1,1],[1,2,3,1],[0,2,3,2],[1,1,3,0]],[[1,2,1,1],[1,2,3,1],[0,2,3,3],[1,1,2,0]],[[1,2,1,1],[1,2,3,1],[0,2,4,2],[1,1,2,0]],[[1,2,1,1],[1,2,4,1],[0,2,3,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,1],[0,2,3,2],[1,1,1,2]],[[1,2,1,1],[1,2,3,1],[0,2,3,3],[1,1,1,1]],[[1,2,1,1],[1,2,3,1],[0,2,4,2],[1,1,1,1]],[[1,2,1,1],[1,2,4,1],[0,2,3,2],[1,1,1,1]],[[1,2,1,1],[1,2,3,1],[0,2,3,2],[1,0,2,2]],[[1,2,1,1],[1,2,3,1],[0,2,3,3],[1,0,2,1]],[[1,2,1,1],[1,2,3,1],[0,2,4,2],[1,0,2,1]],[[1,2,1,1],[1,2,4,1],[0,2,3,2],[1,0,2,1]],[[1,2,1,1],[1,2,3,1],[0,2,3,1],[1,2,3,0]],[[1,2,1,1],[1,2,3,1],[0,2,3,1],[1,3,2,0]],[[1,2,1,1],[1,2,3,1],[0,2,3,1],[2,2,2,0]],[[1,2,1,1],[1,2,3,1],[0,2,4,1],[1,2,2,0]],[[1,2,1,1],[1,2,4,1],[0,2,3,1],[1,2,2,0]],[[1,2,1,1],[1,2,3,1],[0,2,3,1],[1,1,2,2]],[[1,2,1,1],[1,2,3,1],[0,2,3,1],[1,1,3,1]],[[1,2,1,1],[1,2,3,1],[0,2,4,1],[1,1,2,1]],[[1,2,1,1],[1,2,4,1],[0,2,3,1],[1,1,2,1]],[[1,2,1,1],[1,2,3,1],[0,2,3,0],[1,2,2,2]],[[1,2,1,1],[1,2,3,1],[0,2,3,0],[1,2,3,1]],[[1,2,1,1],[1,2,3,1],[0,2,3,0],[1,3,2,1]],[[1,2,1,1],[1,2,3,1],[0,2,3,0],[2,2,2,1]],[[1,2,1,1],[1,2,3,1],[0,2,4,0],[1,2,2,1]],[[1,2,1,1],[1,2,4,1],[0,2,3,0],[1,2,2,1]],[[1,2,1,1],[1,2,3,1],[0,2,2,2],[1,1,2,2]],[[1,2,1,1],[1,2,3,1],[0,2,2,2],[1,1,3,1]],[[1,2,1,1],[1,2,3,1],[0,2,2,3],[1,1,2,1]],[[1,2,1,1],[1,2,3,1],[0,1,3,2],[1,2,3,0]],[[1,2,1,1],[1,2,3,1],[0,1,3,2],[1,3,2,0]],[[1,2,1,1],[1,2,3,1],[0,1,3,2],[2,2,2,0]],[[1,2,1,1],[1,2,3,1],[0,1,3,3],[1,2,2,0]],[[1,2,1,1],[1,2,3,1],[0,1,4,2],[1,2,2,0]],[[1,2,1,1],[1,2,4,1],[0,1,3,2],[1,2,2,0]],[[1,2,1,1],[1,2,3,1],[0,1,3,2],[1,2,1,2]],[[1,2,1,1],[1,2,3,1],[0,1,3,3],[1,2,1,1]],[[2,0,2,1],[2,3,3,1],[1,0,1,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[1,0,1,2],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[1,0,1,2],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[1,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[1,0,1,2],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[1,0,1,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[1,0,2,2],[0,2,2,1]],[[1,0,2,2],[2,3,3,1],[1,0,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,4,1],[1,0,2,2],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[1,0,2,2],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[1,0,2,2],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[1,0,2,2],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[1,0,2,2],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[1,0,2,2],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[1,0,2,2],[1,2,1,1]],[[2,0,2,1],[2,3,3,1],[1,0,2,2],[1,2,2,0]],[[1,0,3,1],[2,3,3,1],[1,0,2,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,1],[1,0,2,2],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[1,0,2,2],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[1,0,2,2],[1,2,2,0]],[[1,0,2,1],[2,3,4,1],[1,0,2,2],[1,2,2,0]],[[2,0,2,1],[2,3,3,1],[1,0,3,0],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[1,0,3,0],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[1,0,3,0],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[1,0,3,0],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[1,0,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[1,0,3,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[1,0,4,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[1,0,3,0],[2,2,2,1]],[[1,0,2,1],[2,3,3,1],[1,0,3,0],[1,3,2,1]],[[1,0,2,1],[2,3,3,1],[1,0,3,0],[1,2,3,1]],[[1,0,2,1],[2,3,3,1],[1,0,3,0],[1,2,2,2]],[[2,0,2,1],[2,3,3,1],[1,0,3,1],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[1,0,3,1],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[1,0,3,1],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[1,0,3,1],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[1,0,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[1,0,3,1],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[1,0,4,1],[1,2,1,1]],[[2,0,2,1],[2,3,3,1],[1,0,3,1],[1,2,2,0]],[[1,0,3,1],[2,3,3,1],[1,0,3,1],[1,2,2,0]],[[1,0,2,2],[2,3,3,1],[1,0,3,1],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[1,0,3,1],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[1,0,3,1],[1,2,2,0]],[[1,0,2,1],[2,3,4,1],[1,0,3,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[1,0,4,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[1,0,3,1],[2,2,2,0]],[[1,0,2,1],[2,3,3,1],[1,0,3,1],[1,3,2,0]],[[1,0,2,1],[2,3,3,1],[1,0,3,1],[1,2,3,0]],[[1,0,3,1],[2,3,3,1],[1,0,3,2],[0,1,2,1]],[[1,0,2,2],[2,3,3,1],[1,0,3,2],[0,1,2,1]],[[1,0,2,1],[2,3,4,1],[1,0,3,2],[0,1,2,1]],[[1,0,3,1],[2,3,3,1],[1,0,3,2],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[1,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[1,0,3,2],[0,2,1,1]],[[1,0,3,1],[2,3,3,1],[1,0,3,2],[0,2,2,0]],[[1,0,2,2],[2,3,3,1],[1,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,4,1],[1,0,3,2],[0,2,2,0]],[[1,2,1,1],[1,2,3,1],[0,1,4,2],[1,2,1,1]],[[1,2,1,1],[1,2,4,1],[0,1,3,2],[1,2,1,1]],[[1,2,1,1],[1,2,3,1],[0,1,3,1],[1,2,2,2]],[[1,2,1,1],[1,2,3,1],[0,1,3,1],[1,2,3,1]],[[1,2,1,1],[1,2,3,1],[0,1,3,1],[1,3,2,1]],[[1,2,1,1],[1,2,3,1],[0,1,3,1],[2,2,2,1]],[[1,2,1,1],[1,2,3,1],[0,1,4,1],[1,2,2,1]],[[1,2,1,1],[1,2,4,1],[0,1,3,1],[1,2,2,1]],[[1,2,1,1],[1,2,3,1],[0,1,2,2],[1,2,2,2]],[[1,2,1,1],[1,2,3,1],[0,1,2,2],[1,2,3,1]],[[1,2,1,1],[1,2,3,1],[0,1,2,2],[1,3,2,1]],[[1,2,1,1],[1,2,3,1],[0,1,2,2],[2,2,2,1]],[[2,0,2,1],[2,3,3,1],[1,1,0,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[1,1,0,2],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[1,1,0,2],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[1,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[1,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[1,1,0,2],[1,2,2,1]],[[2,0,2,1],[2,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,0,3,1],[2,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,0,2,2],[2,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,0,2,1],[3,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,0,2,1],[2,4,3,1],[1,1,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,4,1],[1,1,1,2],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,0,3,1],[2,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,0,2,1],[3,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[1,1,2,2],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[1,1,2,2],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,0,3,1],[2,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,0,2,2],[2,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,0,2,1],[3,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,0,2,1],[2,4,3,1],[1,1,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,4,1],[1,1,2,2],[0,2,2,0]],[[1,2,1,1],[1,2,3,1],[0,1,2,3],[1,2,2,1]],[[1,2,1,1],[1,2,3,1],[0,0,3,2],[1,2,2,2]],[[1,2,1,1],[1,2,3,1],[0,0,3,2],[1,2,3,1]],[[1,2,1,1],[1,2,3,1],[0,0,3,3],[1,2,2,1]],[[2,0,2,1],[2,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,0,3,1],[2,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,0,2,2],[2,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,0,2,1],[3,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,0,2,1],[2,4,3,1],[1,1,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,4,1],[1,1,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[1,1,4,0],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[1,1,3,0],[0,3,2,1]],[[1,0,2,1],[2,3,3,1],[1,1,3,0],[0,2,3,1]],[[1,0,2,1],[2,3,3,1],[1,1,3,0],[0,2,2,2]],[[2,0,2,1],[2,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,0,3,1],[2,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,0,2,1],[3,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[1,1,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[1,1,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[1,1,4,1],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,0,3,1],[2,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,0,2,2],[2,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,0,2,1],[3,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,0,2,1],[2,4,3,1],[1,1,3,1],[0,2,2,0]],[[1,0,2,1],[2,3,4,1],[1,1,3,1],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[1,1,4,1],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[1,1,3,1],[0,3,2,0]],[[1,0,2,1],[2,3,3,1],[1,1,3,1],[0,2,3,0]],[[1,0,3,1],[2,3,3,1],[1,1,3,2],[0,0,2,1]],[[1,0,2,2],[2,3,3,1],[1,1,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,4,1],[1,1,3,2],[0,0,2,1]],[[1,0,3,1],[2,3,3,1],[1,1,3,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[1,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[1,1,3,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[1,1,3,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[1,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[1,1,3,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[1,1,3,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,1],[1,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,1],[1,1,3,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,1],[1,1,3,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[1,1,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[1,1,3,2],[1,0,2,0]],[[2,0,2,1],[2,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,0,3,1],[2,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,0,2,2],[2,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,0,2,1],[3,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,0,2,1],[2,4,3,1],[1,2,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,4,1],[1,2,0,2],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,0,3,1],[2,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,0,2,2],[2,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,0,2,1],[3,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,0,2,1],[2,4,3,1],[1,2,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,4,1],[1,2,1,2],[0,1,2,1]],[[2,0,2,1],[2,3,3,1],[1,2,1,2],[1,0,2,1]],[[1,0,3,1],[2,3,3,1],[1,2,1,2],[1,0,2,1]],[[1,0,2,2],[2,3,3,1],[1,2,1,2],[1,0,2,1]],[[1,0,2,1],[3,3,3,1],[1,2,1,2],[1,0,2,1]],[[1,0,2,1],[2,4,3,1],[1,2,1,2],[1,0,2,1]],[[1,0,2,1],[2,3,4,1],[1,2,1,2],[1,0,2,1]],[[2,0,2,1],[2,3,3,1],[1,2,2,2],[0,0,2,1]],[[1,0,3,1],[2,3,3,1],[1,2,2,2],[0,0,2,1]],[[1,0,2,2],[2,3,3,1],[1,2,2,2],[0,0,2,1]],[[1,0,2,1],[3,3,3,1],[1,2,2,2],[0,0,2,1]],[[1,0,2,1],[2,4,3,1],[1,2,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,4,1],[1,2,2,2],[0,0,2,1]],[[2,0,2,1],[2,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,0,2,1],[3,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,0,2,1],[2,4,3,1],[1,2,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[1,2,2,2],[0,1,1,1]],[[2,0,2,1],[2,3,3,1],[1,2,2,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[1,2,2,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[1,2,2,2],[0,1,2,0]],[[1,0,2,1],[3,3,3,1],[1,2,2,2],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[1,2,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[1,2,2,2],[0,1,2,0]],[[2,0,2,1],[2,3,3,1],[1,2,2,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,1],[1,2,2,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,1],[1,2,2,2],[0,2,0,1]],[[1,0,2,1],[3,3,3,1],[1,2,2,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[1,2,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,4,1],[1,2,2,2],[0,2,0,1]],[[2,0,2,1],[2,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,0,3,1],[2,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[1,2,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[1,2,2,2],[0,2,1,0]],[[2,0,2,1],[2,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,0,2,1],[3,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,0,2,1],[2,4,3,1],[1,2,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,1],[1,2,2,2],[1,0,1,1]],[[2,0,2,1],[2,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,0,2,1],[3,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,0,2,1],[2,4,3,1],[1,2,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[1,2,2,2],[1,0,2,0]],[[2,0,2,1],[2,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,0,2,1],[3,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,0,2,1],[2,4,3,1],[1,2,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,4,1],[1,2,2,2],[1,1,0,1]],[[2,0,2,1],[2,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,0,3,1],[2,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[1,2,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,4,1],[1,2,2,2],[1,1,1,0]],[[2,0,2,1],[2,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,0,3,1],[2,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,0,2,2],[2,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,0,2,1],[3,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,0,2,1],[2,4,3,1],[1,2,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,4,1],[1,2,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[1,2,4,0],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[1,2,3,0],[0,1,3,1]],[[1,0,2,1],[2,3,3,1],[1,2,3,0],[0,1,2,2]],[[2,0,2,1],[2,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,0,3,1],[2,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,0,2,1],[3,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[1,2,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[1,2,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[1,2,4,0],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,0,3,1],[2,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,0,2,2],[2,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,0,2,1],[3,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,0,2,1],[2,4,3,1],[1,2,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,4,1],[1,2,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[1,2,4,0],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[1,2,3,0],[1,0,3,1]],[[1,0,2,1],[2,3,3,1],[1,2,3,0],[1,0,2,2]],[[2,0,2,1],[2,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[1,2,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[1,2,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[1,2,4,0],[1,1,1,1]],[[2,0,2,1],[2,3,3,1],[1,2,3,1],[0,0,2,1]],[[1,0,3,1],[2,3,3,1],[1,2,3,1],[0,0,2,1]],[[1,0,2,2],[2,3,3,1],[1,2,3,1],[0,0,2,1]],[[1,0,2,1],[3,3,3,1],[1,2,3,1],[0,0,2,1]],[[1,0,2,1],[2,4,3,1],[1,2,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,4,1],[1,2,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,3,1],[1,2,4,1],[0,0,2,1]],[[2,0,2,1],[2,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,0,2,1],[3,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,0,2,1],[2,4,3,1],[1,2,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[1,2,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,3,1],[1,2,4,1],[0,1,1,1]],[[2,0,2,1],[2,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,0,2,1],[3,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[1,2,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[1,2,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[1,2,4,1],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[1,2,3,1],[0,1,3,0]],[[2,0,2,1],[2,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,0,3,1],[2,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,0,2,2],[2,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,0,2,1],[3,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[1,2,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,4,1],[1,2,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[1,2,4,1],[0,2,0,1]],[[2,0,2,1],[2,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,0,3,1],[2,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[1,2,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[1,2,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[1,2,4,1],[0,2,1,0]],[[2,0,2,1],[2,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,0,3,1],[2,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,0,2,2],[2,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,0,2,1],[3,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,0,2,1],[2,4,3,1],[1,2,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,4,1],[1,2,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[1,2,4,1],[1,0,1,1]],[[2,0,2,1],[2,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,0,3,1],[2,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,0,2,1],[3,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,0,2,1],[2,4,3,1],[1,2,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[1,2,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[1,2,4,1],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[1,2,3,1],[1,0,3,0]],[[2,0,2,1],[2,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,0,3,1],[2,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,0,2,2],[2,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,0,2,1],[3,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,0,2,1],[2,4,3,1],[1,2,3,1],[1,1,0,1]],[[1,0,2,1],[2,3,4,1],[1,2,3,1],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[1,2,4,1],[1,1,0,1]],[[2,0,2,1],[2,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,0,3,1],[2,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,0,2,2],[2,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[1,2,3,1],[1,1,1,0]],[[1,0,2,1],[2,3,4,1],[1,2,3,1],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[1,2,4,1],[1,1,1,0]],[[2,0,2,1],[2,3,3,1],[1,2,3,2],[0,1,0,1]],[[1,0,3,1],[2,3,3,1],[1,2,3,2],[0,1,0,1]],[[1,0,2,2],[2,3,3,1],[1,2,3,2],[0,1,0,1]],[[1,0,2,1],[3,3,3,1],[1,2,3,2],[0,1,0,1]],[[1,0,2,1],[2,4,3,1],[1,2,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,4,1],[1,2,3,2],[0,1,0,1]],[[2,0,2,1],[2,3,3,1],[1,2,3,2],[1,0,0,1]],[[1,0,3,1],[2,3,3,1],[1,2,3,2],[1,0,0,1]],[[1,0,2,2],[2,3,3,1],[1,2,3,2],[1,0,0,1]],[[1,0,2,1],[3,3,3,1],[1,2,3,2],[1,0,0,1]],[[1,0,2,1],[2,4,3,1],[1,2,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,4,1],[1,2,3,2],[1,0,0,1]],[[1,2,1,1],[1,2,3,0],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[1,2,3,0],[1,3,4,2],[1,1,1,0]],[[1,2,1,1],[1,2,3,0],[1,4,3,2],[1,1,1,0]],[[1,2,1,1],[1,2,4,0],[1,3,3,2],[1,1,1,0]],[[1,2,1,1],[1,2,3,0],[1,3,3,2],[1,1,0,2]],[[1,2,1,1],[1,2,3,0],[1,3,3,3],[1,1,0,1]],[[1,2,1,1],[1,2,3,0],[1,3,4,2],[1,1,0,1]],[[1,2,1,1],[1,2,3,0],[1,4,3,2],[1,1,0,1]],[[1,2,1,1],[1,2,4,0],[1,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,2,3,0],[1,3,3,2],[1,0,3,0]],[[1,2,1,1],[1,2,3,0],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[1,2,3,0],[1,3,4,2],[1,0,2,0]],[[1,2,1,1],[1,2,3,0],[1,4,3,2],[1,0,2,0]],[[1,2,1,1],[1,2,4,0],[1,3,3,2],[1,0,2,0]],[[1,2,1,1],[1,2,3,0],[1,3,3,2],[1,0,1,2]],[[1,2,1,1],[1,2,3,0],[1,3,3,3],[1,0,1,1]],[[1,2,1,1],[1,2,3,0],[1,3,4,2],[1,0,1,1]],[[1,2,1,1],[1,2,3,0],[1,4,3,2],[1,0,1,1]],[[1,2,1,1],[1,2,4,0],[1,3,3,2],[1,0,1,1]],[[1,2,1,1],[1,2,3,0],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[1,2,3,0],[1,3,3,3],[0,2,1,0]],[[1,2,1,1],[1,2,3,0],[1,3,4,2],[0,2,1,0]],[[1,2,1,1],[1,2,3,0],[1,4,3,2],[0,2,1,0]],[[1,2,1,1],[1,2,4,0],[1,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,2,3,0],[1,3,3,2],[0,2,0,2]],[[1,2,1,1],[1,2,3,0],[1,3,3,2],[0,3,0,1]],[[1,2,1,1],[1,2,3,0],[1,3,3,3],[0,2,0,1]],[[1,2,1,1],[1,2,3,0],[1,3,4,2],[0,2,0,1]],[[1,2,1,1],[1,2,3,0],[1,4,3,2],[0,2,0,1]],[[1,2,1,1],[1,2,4,0],[1,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,2,3,0],[1,3,3,2],[0,1,3,0]],[[1,2,1,1],[1,2,3,0],[1,3,3,3],[0,1,2,0]],[[1,2,1,1],[1,2,3,0],[1,3,4,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,0],[1,4,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,4,0],[1,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,3,0],[1,3,3,2],[0,1,1,2]],[[1,2,1,1],[1,2,3,0],[1,3,3,3],[0,1,1,1]],[[1,2,1,1],[1,2,3,0],[1,3,4,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,0],[1,4,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,4,0],[1,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,3,0],[1,3,3,2],[0,0,2,2]],[[1,2,1,1],[1,2,3,0],[1,3,3,3],[0,0,2,1]],[[1,2,1,1],[1,2,3,0],[1,3,4,2],[0,0,2,1]],[[1,2,1,1],[1,2,4,0],[1,3,3,2],[0,0,2,1]],[[1,2,1,1],[1,2,3,0],[1,3,4,1],[1,1,1,1]],[[1,2,1,1],[1,2,3,0],[1,4,3,1],[1,1,1,1]],[[1,2,1,1],[1,2,4,0],[1,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,2,3,0],[1,3,3,1],[1,0,2,2]],[[2,0,2,1],[2,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,0,3,1],[2,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,0,2,2],[2,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,0,2,1],[3,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,0,2,1],[2,4,3,1],[1,3,0,1],[0,2,2,1]],[[1,0,2,1],[2,3,4,1],[1,3,0,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[1,4,0,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[1,3,0,1],[0,3,2,1]],[[1,0,2,1],[2,3,3,1],[1,3,0,1],[0,2,3,1]],[[1,0,2,1],[2,3,3,1],[1,3,0,1],[0,2,2,2]],[[2,0,2,1],[2,3,3,1],[1,3,0,1],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[1,3,0,1],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[1,3,0,1],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[1,3,0,1],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[1,3,0,1],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[1,3,0,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[1,4,0,1],[1,1,2,1]],[[2,0,2,1],[2,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,0,3,1],[2,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,0,2,2],[2,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,0,2,1],[3,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,0,2,1],[2,4,3,1],[1,3,0,2],[0,1,2,1]],[[1,0,2,1],[2,3,4,1],[1,3,0,2],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[1,4,0,2],[0,1,2,1]],[[2,0,2,1],[2,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,0,3,1],[2,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,0,2,1],[3,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[1,3,0,2],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[1,3,0,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[1,4,0,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[1,3,0,2],[0,3,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,0,2],[0,2,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,0,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[1,4,0,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[1,3,0,2],[0,3,2,0]],[[1,0,2,1],[2,3,3,1],[1,3,0,2],[0,2,3,0]],[[2,0,2,1],[2,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,0,3,1],[2,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,0,2,2],[2,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,0,2,1],[3,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,0,2,1],[2,4,3,1],[1,3,0,2],[1,0,2,1]],[[1,0,2,1],[2,3,4,1],[1,3,0,2],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[1,4,0,2],[1,0,2,1]],[[2,0,2,1],[2,3,3,1],[1,3,0,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[1,3,0,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[1,3,0,2],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[1,3,0,2],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[1,3,0,2],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[1,3,0,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[1,4,0,2],[1,1,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,0,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,0,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,0,2],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,0,2],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[1,4,0,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,0],[1,3,3,1],[1,0,3,1]],[[1,2,1,1],[1,2,3,0],[1,3,4,1],[1,0,2,1]],[[1,2,1,1],[1,2,3,0],[1,4,3,1],[1,0,2,1]],[[1,2,1,1],[1,2,4,0],[1,3,3,1],[1,0,2,1]],[[1,2,1,1],[1,2,3,0],[1,3,3,1],[0,3,1,1]],[[1,2,1,1],[1,2,3,0],[1,3,4,1],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,0,3,1],[2,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,0,2,2],[2,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,0,2,1],[3,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,0,2,1],[2,4,3,1],[1,3,1,0],[0,2,2,1]],[[1,0,2,1],[2,3,4,1],[1,3,1,0],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[1,4,1,0],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[1,3,1,0],[0,3,2,1]],[[1,0,2,1],[2,3,3,1],[1,3,1,0],[0,2,3,1]],[[1,0,2,1],[2,3,3,1],[1,3,1,0],[0,2,2,2]],[[2,0,2,1],[2,3,3,1],[1,3,1,0],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[1,3,1,0],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[1,3,1,0],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[1,3,1,0],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[1,3,1,0],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[1,3,1,0],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[1,4,1,0],[1,1,2,1]],[[2,0,2,1],[2,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,1,1],[0,2,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,1,1],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[1,4,1,1],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[1,3,1,1],[0,3,2,0]],[[1,0,2,1],[2,3,3,1],[1,3,1,1],[0,2,3,0]],[[2,0,2,1],[2,3,3,1],[1,3,1,1],[1,1,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,1,1],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,1,1],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,1,1],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,1,1],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,1,1],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[1,4,1,1],[1,1,2,0]],[[1,2,1,1],[1,2,3,0],[1,4,3,1],[0,2,1,1]],[[1,2,1,1],[1,2,4,0],[1,3,3,1],[0,2,1,1]],[[1,2,1,1],[1,2,3,0],[1,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,2,3,0],[1,3,3,1],[0,1,3,1]],[[1,2,1,1],[1,2,3,0],[1,3,4,1],[0,1,2,1]],[[1,2,1,1],[1,2,3,0],[1,4,3,1],[0,1,2,1]],[[1,2,1,1],[1,2,4,0],[1,3,3,1],[0,1,2,1]],[[2,0,2,1],[2,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,0,2,1],[3,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,0,2,1],[2,4,3,1],[1,3,1,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[1,3,1,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,1],[1,4,1,2],[0,1,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,1,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,1,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[1,4,1,2],[0,1,2,0]],[[2,0,2,1],[2,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,0,2,1],[3,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[1,3,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,4,1],[1,3,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[1,4,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[1,3,1,2],[0,3,0,1]],[[2,0,2,1],[2,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,0,3,1],[2,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[1,3,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[1,3,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[1,4,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[1,3,1,2],[0,3,1,0]],[[1,2,1,1],[1,2,3,0],[1,3,3,0],[0,2,3,1]],[[1,2,1,1],[1,2,3,0],[1,3,3,0],[0,3,2,1]],[[1,2,1,1],[1,2,3,0],[1,4,3,0],[0,2,2,1]],[[1,2,1,1],[1,2,3,0],[1,3,2,2],[1,0,2,2]],[[2,0,2,1],[2,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,0,2,1],[3,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,0,2,1],[2,4,3,1],[1,3,1,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,1],[1,3,1,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[1,4,1,2],[1,0,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,1,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,1,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[1,4,1,2],[1,0,2,0]],[[2,0,2,1],[2,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,0,2,1],[3,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,0,2,1],[2,4,3,1],[1,3,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,4,1],[1,3,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[1,4,1,2],[1,1,0,1]],[[2,0,2,1],[2,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,0,3,1],[2,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[1,3,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,4,1],[1,3,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[1,4,1,2],[1,1,1,0]],[[1,2,1,1],[1,2,3,0],[1,3,2,2],[1,0,3,1]],[[1,2,1,1],[1,2,3,0],[1,3,2,3],[1,0,2,1]],[[2,0,2,1],[2,3,3,1],[1,3,1,2],[1,2,0,0]],[[1,0,3,1],[2,3,3,1],[1,3,1,2],[1,2,0,0]],[[1,0,2,2],[2,3,3,1],[1,3,1,2],[1,2,0,0]],[[1,0,2,1],[3,3,3,1],[1,3,1,2],[1,2,0,0]],[[1,0,2,1],[2,4,3,1],[1,3,1,2],[1,2,0,0]],[[1,0,2,1],[2,3,4,1],[1,3,1,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[1,4,1,2],[1,2,0,0]],[[1,2,1,1],[1,2,3,0],[1,3,2,2],[0,2,3,0]],[[1,2,1,1],[1,2,3,0],[1,3,2,2],[0,3,2,0]],[[1,2,1,1],[1,2,3,0],[1,4,2,2],[0,2,2,0]],[[1,2,1,1],[1,2,3,0],[1,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,2,3,0],[1,3,2,2],[0,1,3,1]],[[1,2,1,1],[1,2,3,0],[1,3,2,3],[0,1,2,1]],[[1,2,1,1],[1,2,3,0],[1,3,2,1],[0,2,2,2]],[[1,2,1,1],[1,2,3,0],[1,3,2,1],[0,2,3,1]],[[1,2,1,1],[1,2,3,0],[1,3,2,1],[0,3,2,1]],[[1,2,1,1],[1,2,3,0],[1,4,2,1],[0,2,2,1]],[[1,2,1,1],[1,2,3,0],[1,3,1,2],[0,2,2,2]],[[1,2,1,1],[1,2,3,0],[1,3,1,2],[0,2,3,1]],[[1,2,1,1],[1,2,3,0],[1,3,1,2],[0,3,2,1]],[[1,2,1,1],[1,2,3,0],[1,3,1,3],[0,2,2,1]],[[1,2,1,1],[1,2,3,0],[1,4,1,2],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,0,3,1],[2,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,0,2,2],[2,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,0,2,1],[3,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,0,2,1],[2,4,3,1],[1,3,2,0],[0,1,2,1]],[[1,0,2,1],[2,3,4,1],[1,3,2,0],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[1,4,2,0],[0,1,2,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,0,3,1],[2,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,0,2,1],[3,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[1,3,2,0],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[1,3,2,0],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[1,4,2,0],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[1,3,2,0],[0,3,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,0,3,1],[2,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,0,2,2],[2,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,0,2,1],[3,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,0,2,1],[2,4,3,1],[1,3,2,0],[1,0,2,1]],[[1,0,2,1],[2,3,4,1],[1,3,2,0],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[1,4,2,0],[1,0,2,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[1,3,2,0],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[1,3,2,0],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[1,4,2,0],[1,1,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,0],[1,2,0,1]],[[1,0,3,1],[2,3,3,1],[1,3,2,0],[1,2,0,1]],[[1,0,2,2],[2,3,3,1],[1,3,2,0],[1,2,0,1]],[[1,0,2,1],[3,3,3,1],[1,3,2,0],[1,2,0,1]],[[1,0,2,1],[2,4,3,1],[1,3,2,0],[1,2,0,1]],[[1,0,2,1],[2,3,4,1],[1,3,2,0],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[1,4,2,0],[1,2,0,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,0,2,1],[3,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,0,2,1],[2,4,3,1],[1,3,2,1],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[1,3,2,1],[0,1,1,1]],[[1,0,2,1],[2,3,3,1],[1,4,2,1],[0,1,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,2,1],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,2,1],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[1,4,2,1],[0,1,2,0]],[[2,0,2,1],[2,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,0,3,1],[2,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,0,2,2],[2,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,0,2,1],[3,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[1,3,2,1],[0,2,0,1]],[[1,0,2,1],[2,3,4,1],[1,3,2,1],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[1,4,2,1],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[1,3,2,1],[0,3,0,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,0,3,1],[2,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[1,3,2,1],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[1,3,2,1],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[1,4,2,1],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[1,3,2,1],[0,3,1,0]],[[1,2,1,1],[1,2,3,0],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[1,2,3,0],[1,2,3,2],[0,3,2,0]],[[1,2,1,1],[1,2,3,0],[1,2,3,3],[0,2,2,0]],[[1,2,1,1],[1,2,3,0],[1,2,4,2],[0,2,2,0]],[[1,2,1,1],[1,2,4,0],[1,2,3,2],[0,2,2,0]],[[1,2,1,1],[1,2,3,0],[1,2,3,2],[0,2,1,2]],[[1,2,1,1],[1,2,3,0],[1,2,3,3],[0,2,1,1]],[[1,2,1,1],[1,2,3,0],[1,2,4,2],[0,2,1,1]],[[1,2,1,1],[1,2,4,0],[1,2,3,2],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,0,3,1],[2,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,0,2,2],[2,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,0,2,1],[3,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,0,2,1],[2,4,3,1],[1,3,2,1],[1,0,1,1]],[[1,0,2,1],[2,3,4,1],[1,3,2,1],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[1,4,2,1],[1,0,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,2,1],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,2,1],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[1,4,2,1],[1,0,2,0]],[[2,0,2,1],[2,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,0,3,1],[2,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,0,2,2],[2,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,0,2,1],[3,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,0,2,1],[2,4,3,1],[1,3,2,1],[1,1,0,1]],[[1,0,2,1],[2,3,4,1],[1,3,2,1],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[1,4,2,1],[1,1,0,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,0,3,1],[2,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,0,2,2],[2,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[1,3,2,1],[1,1,1,0]],[[1,0,2,1],[2,3,4,1],[1,3,2,1],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[1,4,2,1],[1,1,1,0]],[[1,2,1,1],[1,2,3,0],[1,2,3,1],[0,2,2,2]],[[1,2,1,1],[1,2,3,0],[1,2,3,1],[0,2,3,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,1],[1,2,0,0]],[[1,0,3,1],[2,3,3,1],[1,3,2,1],[1,2,0,0]],[[1,0,2,2],[2,3,3,1],[1,3,2,1],[1,2,0,0]],[[1,0,2,1],[3,3,3,1],[1,3,2,1],[1,2,0,0]],[[1,0,2,1],[2,4,3,1],[1,3,2,1],[1,2,0,0]],[[1,0,2,1],[2,3,4,1],[1,3,2,1],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[1,4,2,1],[1,2,0,0]],[[1,2,1,1],[1,2,3,0],[1,2,3,1],[0,3,2,1]],[[1,2,1,1],[1,2,3,0],[1,2,4,1],[0,2,2,1]],[[1,2,1,1],[1,2,4,0],[1,2,3,1],[0,2,2,1]],[[1,2,1,1],[1,2,3,0],[1,2,2,2],[0,2,2,2]],[[1,2,1,1],[1,2,3,0],[1,2,2,2],[0,2,3,1]],[[1,2,1,1],[1,2,3,0],[1,2,2,2],[0,3,2,1]],[[1,2,1,1],[1,2,3,0],[1,2,2,3],[0,2,2,1]],[[1,2,1,1],[1,2,3,0],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[1,2,3,0],[0,3,3,2],[2,2,1,0]],[[1,2,1,1],[1,2,3,0],[0,3,3,3],[1,2,1,0]],[[1,2,1,1],[1,2,3,0],[0,3,4,2],[1,2,1,0]],[[2,0,2,1],[2,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,0,3,1],[2,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,0,2,2],[2,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,0,2,1],[3,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,0,2,1],[2,4,3,1],[1,3,2,2],[0,0,1,1]],[[1,0,2,1],[2,3,4,1],[1,3,2,2],[0,0,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,2,2],[0,0,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,2,2],[0,0,2,0]],[[1,2,1,1],[1,2,3,0],[0,4,3,2],[1,2,1,0]],[[1,2,1,1],[1,2,4,0],[0,3,3,2],[1,2,1,0]],[[1,2,1,1],[1,2,3,0],[0,3,3,2],[1,2,0,2]],[[1,2,1,1],[1,2,3,0],[0,3,3,2],[1,3,0,1]],[[1,2,1,1],[1,2,3,0],[0,3,3,2],[2,2,0,1]],[[1,2,1,1],[1,2,3,0],[0,3,3,3],[1,2,0,1]],[[1,2,1,1],[1,2,3,0],[0,3,4,2],[1,2,0,1]],[[1,2,1,1],[1,2,3,0],[0,4,3,2],[1,2,0,1]],[[1,2,1,1],[1,2,4,0],[0,3,3,2],[1,2,0,1]],[[1,2,1,1],[1,2,3,0],[0,3,3,2],[1,1,3,0]],[[1,2,1,1],[1,2,3,0],[0,3,3,3],[1,1,2,0]],[[1,2,1,1],[1,2,3,0],[0,3,4,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,0],[0,4,3,2],[1,1,2,0]],[[1,2,1,1],[1,2,4,0],[0,3,3,2],[1,1,2,0]],[[1,2,1,1],[1,2,3,0],[0,3,3,2],[1,1,1,2]],[[1,2,1,1],[1,2,3,0],[0,3,3,3],[1,1,1,1]],[[1,2,1,1],[1,2,3,0],[0,3,4,2],[1,1,1,1]],[[1,2,1,1],[1,2,3,0],[0,4,3,2],[1,1,1,1]],[[1,2,1,1],[1,2,4,0],[0,3,3,2],[1,1,1,1]],[[1,2,1,1],[1,2,3,0],[0,3,3,2],[1,0,2,2]],[[1,2,1,1],[1,2,3,0],[0,3,3,3],[1,0,2,1]],[[1,2,1,1],[1,2,3,0],[0,3,4,2],[1,0,2,1]],[[1,2,1,1],[1,2,4,0],[0,3,3,2],[1,0,2,1]],[[1,2,1,1],[1,2,3,0],[0,3,3,1],[1,3,1,1]],[[1,2,1,1],[1,2,3,0],[0,3,3,1],[2,2,1,1]],[[1,2,1,1],[1,2,3,0],[0,3,4,1],[1,2,1,1]],[[1,2,1,1],[1,2,3,0],[0,4,3,1],[1,2,1,1]],[[1,2,1,1],[1,2,4,0],[0,3,3,1],[1,2,1,1]],[[1,2,1,1],[1,2,3,0],[0,3,3,1],[1,1,2,2]],[[1,2,1,1],[1,2,3,0],[0,3,3,1],[1,1,3,1]],[[1,2,1,1],[1,2,3,0],[0,3,4,1],[1,1,2,1]],[[1,2,1,1],[1,2,3,0],[0,4,3,1],[1,1,2,1]],[[1,2,1,1],[1,2,4,0],[0,3,3,1],[1,1,2,1]],[[1,2,1,1],[1,2,3,0],[0,3,3,0],[1,2,3,1]],[[1,2,1,1],[1,2,3,0],[0,3,3,0],[1,3,2,1]],[[1,2,1,1],[1,2,3,0],[0,3,3,0],[2,2,2,1]],[[1,2,1,1],[1,2,3,0],[0,4,3,0],[1,2,2,1]],[[1,2,1,1],[1,2,3,0],[0,3,2,2],[1,2,3,0]],[[1,2,1,1],[1,2,3,0],[0,3,2,2],[1,3,2,0]],[[1,2,1,1],[1,2,3,0],[0,3,2,2],[2,2,2,0]],[[1,2,1,1],[1,2,3,0],[0,4,2,2],[1,2,2,0]],[[1,2,1,1],[1,2,3,0],[0,3,2,2],[1,1,2,2]],[[1,2,1,1],[1,2,3,0],[0,3,2,2],[1,1,3,1]],[[1,2,1,1],[1,2,3,0],[0,3,2,3],[1,1,2,1]],[[1,2,1,1],[1,2,3,0],[0,3,2,1],[1,2,2,2]],[[1,2,1,1],[1,2,3,0],[0,3,2,1],[1,2,3,1]],[[1,2,1,1],[1,2,3,0],[0,3,2,1],[1,3,2,1]],[[1,2,1,1],[1,2,3,0],[0,3,2,1],[2,2,2,1]],[[1,2,1,1],[1,2,3,0],[0,4,2,1],[1,2,2,1]],[[1,2,1,1],[1,2,3,0],[0,3,1,2],[1,2,2,2]],[[1,2,1,1],[1,2,3,0],[0,3,1,2],[1,2,3,1]],[[1,2,1,1],[1,2,3,0],[0,3,1,2],[1,3,2,1]],[[1,2,1,1],[1,2,3,0],[0,3,1,2],[2,2,2,1]],[[1,2,1,1],[1,2,3,0],[0,3,1,3],[1,2,2,1]],[[1,2,1,1],[1,2,3,0],[0,4,1,2],[1,2,2,1]],[[1,2,1,1],[1,2,3,0],[0,2,3,2],[1,2,3,0]],[[1,2,1,1],[1,2,3,0],[0,2,3,2],[1,3,2,0]],[[1,2,1,1],[1,2,3,0],[0,2,3,2],[2,2,2,0]],[[1,2,1,1],[1,2,3,0],[0,2,3,3],[1,2,2,0]],[[1,2,1,1],[1,2,3,0],[0,2,4,2],[1,2,2,0]],[[1,2,1,1],[1,2,4,0],[0,2,3,2],[1,2,2,0]],[[1,2,1,1],[1,2,3,0],[0,2,3,2],[1,2,1,2]],[[1,2,1,1],[1,2,3,0],[0,2,3,3],[1,2,1,1]],[[1,2,1,1],[1,2,3,0],[0,2,4,2],[1,2,1,1]],[[1,2,1,1],[1,2,4,0],[0,2,3,2],[1,2,1,1]],[[1,2,1,1],[1,2,3,0],[0,2,3,1],[1,2,2,2]],[[1,2,1,1],[1,2,3,0],[0,2,3,1],[1,2,3,1]],[[1,2,1,1],[1,2,3,0],[0,2,3,1],[1,3,2,1]],[[1,2,1,1],[1,2,3,0],[0,2,3,1],[2,2,2,1]],[[1,2,1,1],[1,2,3,0],[0,2,4,1],[1,2,2,1]],[[1,2,1,1],[1,2,4,0],[0,2,3,1],[1,2,2,1]],[[1,2,1,1],[1,2,3,0],[0,2,2,2],[1,2,2,2]],[[1,2,1,1],[1,2,3,0],[0,2,2,2],[1,2,3,1]],[[1,2,1,1],[1,2,3,0],[0,2,2,2],[1,3,2,1]],[[1,2,1,1],[1,2,3,0],[0,2,2,2],[2,2,2,1]],[[1,2,1,1],[1,2,3,0],[0,2,2,3],[1,2,2,1]],[[2,0,2,1],[2,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,0,3,1],[2,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,0,2,2],[2,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,0,2,1],[3,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,0,2,1],[2,4,3,1],[1,3,3,0],[0,0,2,1]],[[1,0,2,1],[2,3,4,1],[1,3,3,0],[0,0,2,1]],[[1,0,2,1],[2,3,3,1],[1,3,4,0],[0,0,2,1]],[[2,0,2,1],[2,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,3,0],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,3,0],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[1,4,3,0],[0,1,2,0]],[[2,0,2,1],[2,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,0,3,1],[2,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[1,3,3,0],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[1,3,3,0],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[1,4,3,0],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[1,3,3,0],[0,3,1,0]],[[2,0,2,1],[2,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,3,0],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,3,0],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[1,4,3,0],[1,0,2,0]],[[2,0,2,1],[2,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,0,3,1],[2,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,0,2,2],[2,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[1,3,3,0],[1,1,1,0]],[[1,0,2,1],[2,3,4,1],[1,3,3,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[1,4,3,0],[1,1,1,0]],[[2,0,2,1],[2,3,3,1],[1,3,3,0],[1,2,0,0]],[[1,0,3,1],[2,3,3,1],[1,3,3,0],[1,2,0,0]],[[1,0,2,2],[2,3,3,1],[1,3,3,0],[1,2,0,0]],[[1,0,2,1],[3,3,3,1],[1,3,3,0],[1,2,0,0]],[[1,0,2,1],[2,4,3,1],[1,3,3,0],[1,2,0,0]],[[1,0,2,1],[2,3,4,1],[1,3,3,0],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[1,4,3,0],[1,2,0,0]],[[2,0,2,1],[2,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,0,3,1],[2,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,0,2,2],[2,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,0,2,1],[3,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,0,2,1],[2,4,3,1],[1,3,3,1],[0,0,1,1]],[[1,0,2,1],[2,3,4,1],[1,3,3,1],[0,0,1,1]],[[1,0,2,1],[2,3,3,1],[1,3,4,1],[0,0,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,0,3,1],[2,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,0,2,2],[2,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,0,2,1],[3,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,0,2,1],[2,4,3,1],[1,3,3,1],[0,0,2,0]],[[1,0,2,1],[2,3,4,1],[1,3,3,1],[0,0,2,0]],[[1,0,2,1],[2,3,3,1],[1,3,4,1],[0,0,2,0]],[[2,0,2,1],[2,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,0,3,1],[2,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,0,2,2],[2,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,0,2,1],[3,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,0,2,1],[2,4,3,1],[1,3,3,1],[0,2,0,0]],[[1,0,2,1],[2,3,4,1],[1,3,3,1],[0,2,0,0]],[[1,0,2,1],[2,3,3,1],[1,4,3,1],[0,2,0,0]],[[1,2,1,1],[1,2,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,1,1],[1,2,2,2],[2,1,4,2],[1,1,1,0]],[[1,2,1,1],[1,2,2,3],[2,1,3,2],[1,1,1,0]],[[1,2,1,2],[1,2,2,2],[2,1,3,2],[1,1,1,0]],[[1,2,1,1],[1,2,2,2],[2,1,3,2],[1,1,0,2]],[[1,2,1,1],[1,2,2,2],[2,1,3,3],[1,1,0,1]],[[1,2,1,1],[1,2,2,2],[2,1,4,2],[1,1,0,1]],[[1,2,1,1],[1,2,2,3],[2,1,3,2],[1,1,0,1]],[[1,2,1,2],[1,2,2,2],[2,1,3,2],[1,1,0,1]],[[1,2,1,1],[1,2,2,2],[2,1,3,2],[1,0,3,0]],[[1,2,1,1],[1,2,2,2],[2,1,3,3],[1,0,2,0]],[[1,2,1,1],[1,2,2,2],[2,1,4,2],[1,0,2,0]],[[1,2,1,1],[1,2,2,3],[2,1,3,2],[1,0,2,0]],[[1,2,1,2],[1,2,2,2],[2,1,3,2],[1,0,2,0]],[[1,2,1,1],[1,2,2,2],[2,1,3,2],[1,0,1,2]],[[1,2,1,1],[1,2,2,2],[2,1,3,3],[1,0,1,1]],[[1,2,1,1],[1,2,2,2],[2,1,4,2],[1,0,1,1]],[[1,2,1,1],[1,2,2,3],[2,1,3,2],[1,0,1,1]],[[1,2,1,2],[1,2,2,2],[2,1,3,2],[1,0,1,1]],[[2,0,2,1],[2,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,0,3,1],[2,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,0,2,2],[2,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,0,2,1],[3,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,0,2,1],[2,4,3,1],[1,3,3,1],[1,1,0,0]],[[1,0,2,1],[2,3,4,1],[1,3,3,1],[1,1,0,0]],[[1,0,2,1],[2,3,3,1],[1,4,3,1],[1,1,0,0]],[[1,2,1,1],[1,2,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,1,1],[1,2,2,2],[2,1,4,2],[0,2,1,0]],[[1,2,1,1],[1,2,2,3],[2,1,3,2],[0,2,1,0]],[[1,2,1,2],[1,2,2,2],[2,1,3,2],[0,2,1,0]],[[1,2,1,1],[1,2,2,2],[2,1,3,2],[0,2,0,2]],[[1,2,1,1],[1,2,2,2],[2,1,3,3],[0,2,0,1]],[[1,2,1,1],[1,2,2,2],[2,1,4,2],[0,2,0,1]],[[1,2,1,1],[1,2,2,3],[2,1,3,2],[0,2,0,1]],[[1,2,1,2],[1,2,2,2],[2,1,3,2],[0,2,0,1]],[[1,2,1,1],[1,2,2,2],[2,1,3,2],[0,1,3,0]],[[1,2,1,1],[1,2,2,2],[2,1,3,3],[0,1,2,0]],[[1,2,1,1],[1,2,2,2],[2,1,4,2],[0,1,2,0]],[[1,2,1,1],[1,2,2,3],[2,1,3,2],[0,1,2,0]],[[1,2,1,2],[1,2,2,2],[2,1,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,2,2],[2,1,3,2],[0,1,1,2]],[[1,2,1,1],[1,2,2,2],[2,1,3,3],[0,1,1,1]],[[1,2,1,1],[1,2,2,2],[2,1,4,2],[0,1,1,1]],[[1,2,1,1],[1,2,2,3],[2,1,3,2],[0,1,1,1]],[[1,2,1,2],[1,2,2,2],[2,1,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,2,2],[2,1,3,2],[0,0,2,2]],[[1,2,1,1],[1,2,2,2],[2,1,3,3],[0,0,2,1]],[[1,2,1,1],[1,2,2,2],[2,1,4,2],[0,0,2,1]],[[1,2,1,1],[1,2,2,3],[2,1,3,2],[0,0,2,1]],[[1,2,1,2],[1,2,2,2],[2,1,3,2],[0,0,2,1]],[[1,2,1,1],[1,2,2,2],[2,1,3,1],[1,0,2,2]],[[1,2,1,1],[1,2,2,2],[2,1,3,1],[1,0,3,1]],[[1,2,1,1],[1,2,2,2],[2,1,4,1],[1,0,2,1]],[[1,2,1,1],[1,2,2,2],[2,1,3,1],[0,1,2,2]],[[1,2,1,1],[1,2,2,2],[2,1,3,1],[0,1,3,1]],[[1,2,1,1],[1,2,2,2],[2,1,4,1],[0,1,2,1]],[[1,2,1,1],[1,2,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,1,1],[1,2,2,2],[2,1,2,2],[1,0,3,1]],[[1,2,1,1],[1,2,2,2],[2,1,2,3],[1,0,2,1]],[[1,2,1,1],[1,2,2,3],[2,1,2,2],[1,0,2,1]],[[1,2,1,2],[1,2,2,2],[2,1,2,2],[1,0,2,1]],[[1,2,1,1],[1,2,2,2],[2,1,2,2],[0,1,2,2]],[[1,2,1,1],[1,2,2,2],[2,1,2,2],[0,1,3,1]],[[1,2,1,1],[1,2,2,2],[2,1,2,3],[0,1,2,1]],[[1,2,1,1],[1,2,2,3],[2,1,2,2],[0,1,2,1]],[[1,2,1,2],[1,2,2,2],[2,1,2,2],[0,1,2,1]],[[1,2,1,1],[1,2,2,2],[2,0,3,3],[1,2,1,0]],[[2,0,2,1],[2,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,0,3,1],[2,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,0,2,2],[2,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,0,2,1],[3,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,0,2,1],[2,4,3,1],[1,3,3,2],[0,0,0,1]],[[1,0,2,1],[2,3,4,1],[1,3,3,2],[0,0,0,1]],[[1,2,1,1],[1,2,2,2],[2,0,4,2],[1,2,1,0]],[[1,2,1,1],[1,2,2,3],[2,0,3,2],[1,2,1,0]],[[1,2,1,2],[1,2,2,2],[2,0,3,2],[1,2,1,0]],[[1,2,1,1],[1,2,2,2],[2,0,3,2],[1,2,0,2]],[[1,2,1,1],[1,2,2,2],[2,0,3,3],[1,2,0,1]],[[1,2,1,1],[1,2,2,2],[2,0,4,2],[1,2,0,1]],[[1,2,1,1],[1,2,2,3],[2,0,3,2],[1,2,0,1]],[[1,2,1,2],[1,2,2,2],[2,0,3,2],[1,2,0,1]],[[1,2,1,1],[1,2,2,2],[2,0,3,2],[1,1,3,0]],[[1,2,1,1],[1,2,2,2],[2,0,3,3],[1,1,2,0]],[[1,2,1,1],[1,2,2,2],[2,0,4,2],[1,1,2,0]],[[1,2,1,1],[1,2,2,3],[2,0,3,2],[1,1,2,0]],[[1,2,1,2],[1,2,2,2],[2,0,3,2],[1,1,2,0]],[[1,2,1,1],[1,2,2,2],[2,0,3,2],[1,1,1,2]],[[1,2,1,1],[1,2,2,2],[2,0,3,3],[1,1,1,1]],[[1,2,1,1],[1,2,2,2],[2,0,4,2],[1,1,1,1]],[[1,2,1,1],[1,2,2,3],[2,0,3,2],[1,1,1,1]],[[1,2,1,2],[1,2,2,2],[2,0,3,2],[1,1,1,1]],[[1,2,1,1],[1,2,2,2],[2,0,3,2],[0,2,3,0]],[[1,2,1,1],[1,2,2,2],[2,0,3,2],[0,3,2,0]],[[1,2,1,1],[1,2,2,2],[2,0,3,3],[0,2,2,0]],[[1,2,1,1],[1,2,2,2],[2,0,4,2],[0,2,2,0]],[[1,2,1,1],[1,2,2,3],[2,0,3,2],[0,2,2,0]],[[1,2,1,2],[1,2,2,2],[2,0,3,2],[0,2,2,0]],[[1,2,1,1],[1,2,2,2],[2,0,3,2],[0,2,1,2]],[[1,2,1,1],[1,2,2,2],[2,0,3,3],[0,2,1,1]],[[1,2,1,1],[1,2,2,2],[2,0,4,2],[0,2,1,1]],[[1,2,1,1],[1,2,2,3],[2,0,3,2],[0,2,1,1]],[[1,2,1,2],[1,2,2,2],[2,0,3,2],[0,2,1,1]],[[1,2,1,1],[1,2,2,2],[2,0,3,1],[1,1,2,2]],[[1,2,1,1],[1,2,2,2],[2,0,3,1],[1,1,3,1]],[[1,2,1,1],[1,2,2,2],[2,0,4,1],[1,1,2,1]],[[1,2,1,1],[1,2,2,2],[2,0,3,1],[0,2,2,2]],[[1,2,1,1],[1,2,2,2],[2,0,3,1],[0,2,3,1]],[[1,2,1,1],[1,2,2,2],[2,0,3,1],[0,3,2,1]],[[1,2,1,1],[1,2,2,2],[2,0,4,1],[0,2,2,1]],[[1,2,1,1],[1,2,2,2],[2,0,2,2],[1,1,2,2]],[[1,2,1,1],[1,2,2,2],[2,0,2,2],[1,1,3,1]],[[1,2,1,1],[1,2,2,2],[2,0,2,3],[1,1,2,1]],[[1,2,1,1],[1,2,2,3],[2,0,2,2],[1,1,2,1]],[[1,2,1,2],[1,2,2,2],[2,0,2,2],[1,1,2,1]],[[1,2,1,1],[1,2,2,2],[2,0,2,2],[0,2,2,2]],[[1,2,1,1],[1,2,2,2],[2,0,2,2],[0,2,3,1]],[[1,2,1,1],[1,2,2,2],[2,0,2,2],[0,3,2,1]],[[1,2,1,1],[1,2,2,2],[2,0,2,3],[0,2,2,1]],[[1,2,1,1],[1,2,2,3],[2,0,2,2],[0,2,2,1]],[[1,2,1,2],[1,2,2,2],[2,0,2,2],[0,2,2,1]],[[1,2,1,1],[1,2,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[1,2,2,2],[1,3,4,2],[0,0,2,0]],[[1,2,1,1],[1,2,2,3],[1,3,3,2],[0,0,2,0]],[[1,2,1,2],[1,2,2,2],[1,3,3,2],[0,0,2,0]],[[1,2,1,1],[1,2,2,2],[1,3,3,2],[0,0,1,2]],[[1,2,1,1],[1,2,2,2],[1,3,3,3],[0,0,1,1]],[[1,2,1,1],[1,2,2,2],[1,3,4,2],[0,0,1,1]],[[1,2,1,1],[1,2,2,3],[1,3,3,2],[0,0,1,1]],[[1,2,1,2],[1,2,2,2],[1,3,3,2],[0,0,1,1]],[[1,2,1,1],[1,2,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,1,1],[1,2,2,2],[1,2,4,2],[1,1,1,0]],[[1,2,1,1],[1,2,2,3],[1,2,3,2],[1,1,1,0]],[[1,2,1,2],[1,2,2,2],[1,2,3,2],[1,1,1,0]],[[1,2,1,1],[1,2,2,2],[1,2,3,2],[1,1,0,2]],[[1,2,1,1],[1,2,2,2],[1,2,3,3],[1,1,0,1]],[[1,2,1,1],[1,2,2,2],[1,2,4,2],[1,1,0,1]],[[1,2,1,1],[1,2,2,3],[1,2,3,2],[1,1,0,1]],[[1,2,1,2],[1,2,2,2],[1,2,3,2],[1,1,0,1]],[[1,2,1,1],[1,2,2,2],[1,2,3,2],[1,0,3,0]],[[1,2,1,1],[1,2,2,2],[1,2,3,3],[1,0,2,0]],[[1,2,1,1],[1,2,2,2],[1,2,4,2],[1,0,2,0]],[[1,2,1,1],[1,2,2,3],[1,2,3,2],[1,0,2,0]],[[1,2,1,2],[1,2,2,2],[1,2,3,2],[1,0,2,0]],[[1,2,1,1],[1,2,2,2],[1,2,3,2],[1,0,1,2]],[[1,2,1,1],[1,2,2,2],[1,2,3,3],[1,0,1,1]],[[1,2,1,1],[1,2,2,2],[1,2,4,2],[1,0,1,1]],[[1,2,1,1],[1,2,2,3],[1,2,3,2],[1,0,1,1]],[[1,2,1,2],[1,2,2,2],[1,2,3,2],[1,0,1,1]],[[1,2,1,1],[1,2,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[1,2,2,2],[1,2,4,2],[0,2,1,0]],[[1,2,1,1],[1,2,2,3],[1,2,3,2],[0,2,1,0]],[[1,2,1,2],[1,2,2,2],[1,2,3,2],[0,2,1,0]],[[1,2,1,1],[1,2,2,2],[1,2,3,2],[0,2,0,2]],[[1,2,1,1],[1,2,2,2],[1,2,3,3],[0,2,0,1]],[[1,2,1,1],[1,2,2,2],[1,2,4,2],[0,2,0,1]],[[1,2,1,1],[1,2,2,3],[1,2,3,2],[0,2,0,1]],[[1,2,1,2],[1,2,2,2],[1,2,3,2],[0,2,0,1]],[[1,2,1,1],[1,2,2,2],[1,2,3,2],[0,1,3,0]],[[1,2,1,1],[1,2,2,2],[1,2,3,3],[0,1,2,0]],[[2,0,2,1],[2,3,3,1],[2,0,1,1],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[2,0,1,1],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[2,0,1,1],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[2,0,1,1],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[2,0,1,1],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[2,0,1,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[3,0,1,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,1,1],[2,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,1,1],[1,3,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,1,1],[1,2,3,1]],[[1,0,2,1],[2,3,3,1],[2,0,1,1],[1,2,2,2]],[[2,0,2,1],[2,3,3,1],[2,0,1,2],[0,2,2,1]],[[1,0,3,1],[2,3,3,1],[2,0,1,2],[0,2,2,1]],[[1,0,2,2],[2,3,3,1],[2,0,1,2],[0,2,2,1]],[[1,0,2,1],[3,3,3,1],[2,0,1,2],[0,2,2,1]],[[1,0,2,1],[2,4,3,1],[2,0,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,4,1],[2,0,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[3,0,1,2],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,0,1,2],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[2,0,1,2],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[2,0,1,2],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[2,0,1,2],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[2,0,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[2,0,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[3,0,1,2],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,1,2],[2,1,2,1]],[[2,0,2,1],[2,3,3,1],[2,0,1,2],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[2,0,1,2],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[2,0,1,2],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[2,0,1,2],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[2,0,1,2],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[2,0,1,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[3,0,1,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,0,1,2],[2,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,0,1,2],[1,3,1,1]],[[2,0,2,1],[2,3,3,1],[2,0,1,2],[1,2,2,0]],[[1,0,3,1],[2,3,3,1],[2,0,1,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,1],[2,0,1,2],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[2,0,1,2],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[2,0,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,4,1],[2,0,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[3,0,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,1,2],[2,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,1,2],[1,3,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,1,2],[1,2,3,0]],[[2,0,2,1],[2,3,3,1],[2,0,2,0],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[2,0,2,0],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[2,0,2,0],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[2,0,2,0],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[2,0,2,0],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[2,0,2,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[3,0,2,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,2,0],[2,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,2,0],[1,3,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,2,0],[1,2,3,1]],[[1,0,2,1],[2,3,3,1],[2,0,2,0],[1,2,2,2]],[[2,0,2,1],[2,3,3,1],[2,0,2,1],[1,2,2,0]],[[1,0,3,1],[2,3,3,1],[2,0,2,1],[1,2,2,0]],[[1,0,2,2],[2,3,3,1],[2,0,2,1],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[2,0,2,1],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[2,0,2,1],[1,2,2,0]],[[1,0,2,1],[2,3,4,1],[2,0,2,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[3,0,2,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,2,1],[2,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,2,1],[1,3,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,2,1],[1,2,3,0]],[[2,0,2,1],[2,3,3,1],[2,0,2,2],[0,2,1,1]],[[1,0,3,1],[2,3,3,1],[2,0,2,2],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[2,0,2,2],[0,2,1,1]],[[1,0,2,1],[3,3,3,1],[2,0,2,2],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[2,0,2,2],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[2,0,2,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[3,0,2,2],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[2,0,2,2],[0,2,2,0]],[[1,0,3,1],[2,3,3,1],[2,0,2,2],[0,2,2,0]],[[1,0,2,2],[2,3,3,1],[2,0,2,2],[0,2,2,0]],[[1,0,2,1],[3,3,3,1],[2,0,2,2],[0,2,2,0]],[[1,0,2,1],[2,4,3,1],[2,0,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,4,1],[2,0,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[3,0,2,2],[0,2,2,0]],[[2,0,2,1],[2,3,3,1],[2,0,2,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[2,0,2,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[2,0,2,2],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[2,0,2,2],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[2,0,2,2],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[2,0,2,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[3,0,2,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[2,0,2,2],[2,1,1,1]],[[2,0,2,1],[2,3,3,1],[2,0,2,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,1],[2,0,2,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[2,0,2,2],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[2,0,2,2],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[2,0,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[2,0,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[3,0,2,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,2,2],[2,1,2,0]],[[2,0,2,1],[2,3,3,1],[2,0,2,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,1],[2,0,2,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,1],[2,0,2,2],[1,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,0,2,2],[1,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,0,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,4,1],[2,0,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,0,2,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,0,2,2],[2,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,0,2,2],[1,3,0,1]],[[2,0,2,1],[2,3,3,1],[2,0,2,2],[1,2,1,0]],[[1,0,3,1],[2,3,3,1],[2,0,2,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,1],[2,0,2,2],[1,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,0,2,2],[1,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,0,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,4,1],[2,0,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,0,2,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,0,2,2],[2,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,0,2,2],[1,3,1,0]],[[1,2,1,1],[1,2,2,2],[1,2,4,2],[0,1,2,0]],[[1,2,1,1],[1,2,2,3],[1,2,3,2],[0,1,2,0]],[[1,2,1,2],[1,2,2,2],[1,2,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,2,2],[1,2,3,2],[0,1,1,2]],[[1,2,1,1],[1,2,2,2],[1,2,3,3],[0,1,1,1]],[[1,2,1,1],[1,2,2,2],[1,2,4,2],[0,1,1,1]],[[1,2,1,1],[1,2,2,3],[1,2,3,2],[0,1,1,1]],[[1,2,1,2],[1,2,2,2],[1,2,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,2,2],[1,2,3,2],[0,0,2,2]],[[1,2,1,1],[1,2,2,2],[1,2,3,3],[0,0,2,1]],[[1,2,1,1],[1,2,2,2],[1,2,4,2],[0,0,2,1]],[[1,2,1,1],[1,2,2,3],[1,2,3,2],[0,0,2,1]],[[2,0,2,1],[2,3,3,1],[2,0,3,0],[0,2,2,1]],[[1,0,3,1],[2,3,3,1],[2,0,3,0],[0,2,2,1]],[[1,0,2,2],[2,3,3,1],[2,0,3,0],[0,2,2,1]],[[1,0,2,1],[3,3,3,1],[2,0,3,0],[0,2,2,1]],[[1,0,2,1],[2,4,3,1],[2,0,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,4,1],[2,0,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[3,0,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,4,0],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,3,0],[0,3,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,3,0],[0,2,3,1]],[[1,0,2,1],[2,3,3,1],[2,0,3,0],[0,2,2,2]],[[2,0,2,1],[2,3,3,1],[2,0,3,0],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[2,0,3,0],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[2,0,3,0],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[2,0,3,0],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[2,0,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[2,0,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[3,0,3,0],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,4,0],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,3,0],[2,1,2,1]],[[1,0,2,1],[2,3,3,1],[2,0,3,0],[1,1,3,1]],[[1,0,2,1],[2,3,3,1],[2,0,3,0],[1,1,2,2]],[[2,0,2,1],[2,3,3,1],[2,0,3,0],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[2,0,3,0],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[2,0,3,0],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[2,0,3,0],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[2,0,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[2,0,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[3,0,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,0,4,0],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,0,3,0],[2,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,0,3,0],[1,3,1,1]],[[2,0,2,1],[2,3,3,1],[2,0,3,1],[0,2,1,1]],[[1,0,3,1],[2,3,3,1],[2,0,3,1],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[2,0,3,1],[0,2,1,1]],[[1,0,2,1],[3,3,3,1],[2,0,3,1],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[2,0,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[2,0,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[3,0,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,0,4,1],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[2,0,3,1],[0,2,2,0]],[[1,0,3,1],[2,3,3,1],[2,0,3,1],[0,2,2,0]],[[1,0,2,2],[2,3,3,1],[2,0,3,1],[0,2,2,0]],[[1,0,2,1],[3,3,3,1],[2,0,3,1],[0,2,2,0]],[[1,0,2,1],[2,4,3,1],[2,0,3,1],[0,2,2,0]],[[1,0,2,1],[2,3,4,1],[2,0,3,1],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[3,0,3,1],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,4,1],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,3,1],[0,3,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,3,1],[0,2,3,0]],[[2,0,2,1],[2,3,3,1],[2,0,3,1],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[2,0,3,1],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[2,0,3,1],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[2,0,3,1],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[2,0,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[2,0,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[3,0,3,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[2,0,4,1],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[2,0,3,1],[2,1,1,1]],[[2,0,2,1],[2,3,3,1],[2,0,3,1],[1,1,2,0]],[[1,0,3,1],[2,3,3,1],[2,0,3,1],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[2,0,3,1],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[2,0,3,1],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[2,0,3,1],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[2,0,3,1],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[3,0,3,1],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,4,1],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,3,1],[2,1,2,0]],[[1,0,2,1],[2,3,3,1],[2,0,3,1],[1,1,3,0]],[[2,0,2,1],[2,3,3,1],[2,0,3,1],[1,2,0,1]],[[1,0,3,1],[2,3,3,1],[2,0,3,1],[1,2,0,1]],[[1,0,2,2],[2,3,3,1],[2,0,3,1],[1,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,0,3,1],[1,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,0,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,4,1],[2,0,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,0,3,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,0,4,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,0,3,1],[2,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,0,3,1],[1,3,0,1]],[[2,0,2,1],[2,3,3,1],[2,0,3,1],[1,2,1,0]],[[1,0,3,1],[2,3,3,1],[2,0,3,1],[1,2,1,0]],[[1,0,2,2],[2,3,3,1],[2,0,3,1],[1,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,0,3,1],[1,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,0,3,1],[1,2,1,0]],[[1,0,2,1],[2,3,4,1],[2,0,3,1],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,0,3,1],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,0,4,1],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,0,3,1],[2,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,0,3,1],[1,3,1,0]],[[1,2,1,2],[1,2,2,2],[1,2,3,2],[0,0,2,1]],[[1,2,1,1],[1,2,2,2],[1,2,3,1],[1,0,2,2]],[[1,2,1,1],[1,2,2,2],[1,2,3,1],[1,0,3,1]],[[1,2,1,1],[1,2,2,2],[1,2,4,1],[1,0,2,1]],[[1,2,1,1],[1,2,2,2],[1,2,3,1],[0,1,2,2]],[[1,0,3,1],[2,3,3,1],[2,0,3,2],[0,0,2,1]],[[1,0,2,2],[2,3,3,1],[2,0,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,4,1],[2,0,3,2],[0,0,2,1]],[[1,0,3,1],[2,3,3,1],[2,0,3,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[2,0,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[2,0,3,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[2,0,3,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[2,0,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[2,0,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,2,2],[1,2,3,1],[0,1,3,1]],[[1,2,1,1],[1,2,2,2],[1,2,4,1],[0,1,2,1]],[[1,2,1,1],[1,2,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,1,1],[1,2,2,2],[1,2,2,2],[1,0,3,1]],[[1,2,1,1],[1,2,2,2],[1,2,2,3],[1,0,2,1]],[[1,2,1,1],[1,2,2,3],[1,2,2,2],[1,0,2,1]],[[1,2,1,2],[1,2,2,2],[1,2,2,2],[1,0,2,1]],[[1,0,3,1],[2,3,3,1],[2,0,3,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,1],[2,0,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,1],[2,0,3,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,1],[2,0,3,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[2,0,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[2,0,3,2],[1,0,2,0]],[[1,2,1,1],[1,2,2,2],[1,2,2,2],[0,1,2,2]],[[1,2,1,1],[1,2,2,2],[1,2,2,2],[0,1,3,1]],[[1,2,1,1],[1,2,2,2],[1,2,2,3],[0,1,2,1]],[[1,2,1,1],[1,2,2,3],[1,2,2,2],[0,1,2,1]],[[1,2,1,2],[1,2,2,2],[1,2,2,2],[0,1,2,1]],[[1,2,1,1],[1,2,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,1,1],[1,2,2,2],[1,1,3,2],[0,3,2,0]],[[1,2,1,1],[1,2,2,2],[1,1,3,3],[0,2,2,0]],[[1,2,1,1],[1,2,2,2],[1,1,4,2],[0,2,2,0]],[[1,2,1,1],[1,2,2,3],[1,1,3,2],[0,2,2,0]],[[1,2,1,2],[1,2,2,2],[1,1,3,2],[0,2,2,0]],[[1,2,1,1],[1,2,2,2],[1,1,3,2],[0,2,1,2]],[[1,2,1,1],[1,2,2,2],[1,1,3,3],[0,2,1,1]],[[1,2,1,1],[1,2,2,2],[1,1,4,2],[0,2,1,1]],[[1,2,1,1],[1,2,2,3],[1,1,3,2],[0,2,1,1]],[[1,2,1,2],[1,2,2,2],[1,1,3,2],[0,2,1,1]],[[1,2,1,1],[1,2,2,2],[1,1,3,1],[0,2,2,2]],[[1,2,1,1],[1,2,2,2],[1,1,3,1],[0,2,3,1]],[[1,2,1,1],[1,2,2,2],[1,1,3,1],[0,3,2,1]],[[2,0,2,1],[2,3,3,1],[2,1,0,1],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[2,1,0,1],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[2,1,0,1],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[2,1,0,1],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[2,1,0,1],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[2,1,0,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[3,1,0,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,0,1],[2,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,0,1],[1,3,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,0,1],[1,2,3,1]],[[1,0,2,1],[2,3,3,1],[2,1,0,1],[1,2,2,2]],[[2,0,2,1],[2,3,3,1],[2,1,0,2],[0,2,2,1]],[[1,0,3,1],[2,3,3,1],[2,1,0,2],[0,2,2,1]],[[1,0,2,2],[2,3,3,1],[2,1,0,2],[0,2,2,1]],[[1,0,2,1],[3,3,3,1],[2,1,0,2],[0,2,2,1]],[[1,0,2,1],[2,4,3,1],[2,1,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,4,1],[2,1,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[3,1,0,2],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,1,0,2],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[2,1,0,2],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[2,1,0,2],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[2,1,0,2],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[2,1,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[2,1,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[3,1,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,0,2],[2,1,2,1]],[[2,0,2,1],[2,3,3,1],[2,1,0,2],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[2,1,0,2],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[2,1,0,2],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[2,1,0,2],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[2,1,0,2],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[2,1,0,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[3,1,0,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,1,0,2],[2,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,1,0,2],[1,3,1,1]],[[2,0,2,1],[2,3,3,1],[2,1,0,2],[1,2,2,0]],[[1,0,3,1],[2,3,3,1],[2,1,0,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,1],[2,1,0,2],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[2,1,0,2],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[2,1,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,4,1],[2,1,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[3,1,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,0,2],[2,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,0,2],[1,3,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,0,2],[1,2,3,0]],[[2,0,2,1],[2,3,3,1],[2,1,1,0],[1,2,2,1]],[[1,0,3,1],[2,3,3,1],[2,1,1,0],[1,2,2,1]],[[1,0,2,2],[2,3,3,1],[2,1,1,0],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[2,1,1,0],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[2,1,1,0],[1,2,2,1]],[[1,0,2,1],[2,3,4,1],[2,1,1,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[3,1,1,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,1,0],[2,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,1,0],[1,3,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,1,0],[1,2,3,1]],[[1,0,2,1],[2,3,3,1],[2,1,1,0],[1,2,2,2]],[[2,0,2,1],[2,3,3,1],[2,1,1,1],[1,2,2,0]],[[1,0,3,1],[2,3,3,1],[2,1,1,1],[1,2,2,0]],[[1,0,2,2],[2,3,3,1],[2,1,1,1],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[2,1,1,1],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[2,1,1,1],[1,2,2,0]],[[1,0,2,1],[2,3,4,1],[2,1,1,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[3,1,1,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,1,1],[2,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,1,1],[1,3,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,1,1],[1,2,3,0]],[[2,0,2,1],[2,3,3,1],[2,1,1,2],[0,1,2,1]],[[1,0,3,1],[2,3,3,1],[2,1,1,2],[0,1,2,1]],[[1,0,2,2],[2,3,3,1],[2,1,1,2],[0,1,2,1]],[[1,0,2,1],[3,3,3,1],[2,1,1,2],[0,1,2,1]],[[1,0,2,1],[2,4,3,1],[2,1,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,4,1],[2,1,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[3,1,1,2],[0,1,2,1]],[[2,0,2,1],[2,3,3,1],[2,1,1,2],[1,0,2,1]],[[1,0,3,1],[2,3,3,1],[2,1,1,2],[1,0,2,1]],[[1,0,2,2],[2,3,3,1],[2,1,1,2],[1,0,2,1]],[[1,0,2,1],[3,3,3,1],[2,1,1,2],[1,0,2,1]],[[1,0,2,1],[2,4,3,1],[2,1,1,2],[1,0,2,1]],[[1,0,2,1],[2,3,4,1],[2,1,1,2],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[3,1,1,2],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,1,2],[2,0,2,1]],[[2,0,2,1],[2,3,3,1],[2,1,1,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,1],[2,1,1,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,1],[2,1,1,2],[1,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,1,1,2],[1,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,1,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,4,1],[2,1,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,1,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,1,1,2],[2,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,1,1,2],[1,3,0,1]],[[2,0,2,1],[2,3,3,1],[2,1,1,2],[1,2,1,0]],[[1,0,3,1],[2,3,3,1],[2,1,1,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,1],[2,1,1,2],[1,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,1,1,2],[1,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,1,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,4,1],[2,1,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,1,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,1,1,2],[2,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,1,1,2],[1,3,1,0]],[[1,2,1,1],[1,2,2,2],[1,1,4,1],[0,2,2,1]],[[1,2,1,1],[1,2,2,2],[1,1,2,2],[0,2,2,2]],[[1,2,1,1],[1,2,2,2],[1,1,2,2],[0,2,3,1]],[[1,2,1,1],[1,2,2,2],[1,1,2,2],[0,3,2,1]],[[1,2,1,1],[1,2,2,2],[1,1,2,3],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,1,2,0],[1,2,1,1]],[[1,0,3,1],[2,3,3,1],[2,1,2,0],[1,2,1,1]],[[1,0,2,2],[2,3,3,1],[2,1,2,0],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[2,1,2,0],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[2,1,2,0],[1,2,1,1]],[[1,0,2,1],[2,3,4,1],[2,1,2,0],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[3,1,2,0],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,1,2,0],[2,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,1,2,0],[1,3,1,1]],[[2,0,2,1],[2,3,3,1],[2,1,2,1],[1,2,0,1]],[[1,0,3,1],[2,3,3,1],[2,1,2,1],[1,2,0,1]],[[1,0,2,2],[2,3,3,1],[2,1,2,1],[1,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,1,2,1],[1,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,1,2,1],[1,2,0,1]],[[1,0,2,1],[2,3,4,1],[2,1,2,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,1,2,1],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,1,2,1],[2,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,1,2,1],[1,3,0,1]],[[2,0,2,1],[2,3,3,1],[2,1,2,1],[1,2,1,0]],[[1,0,3,1],[2,3,3,1],[2,1,2,1],[1,2,1,0]],[[1,0,2,2],[2,3,3,1],[2,1,2,1],[1,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,1,2,1],[1,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,1,2,1],[1,2,1,0]],[[1,0,2,1],[2,3,4,1],[2,1,2,1],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,1,2,1],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,1,2,1],[2,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,1,2,1],[1,3,1,0]],[[1,2,1,1],[1,2,2,3],[1,1,2,2],[0,2,2,1]],[[1,2,1,2],[1,2,2,2],[1,1,2,2],[0,2,2,1]],[[1,2,1,1],[1,2,2,2],[1,0,3,2],[1,2,3,0]],[[2,0,2,1],[2,3,3,1],[2,1,2,2],[0,0,2,1]],[[1,0,3,1],[2,3,3,1],[2,1,2,2],[0,0,2,1]],[[1,0,2,2],[2,3,3,1],[2,1,2,2],[0,0,2,1]],[[1,0,2,1],[3,3,3,1],[2,1,2,2],[0,0,2,1]],[[1,0,2,1],[2,4,3,1],[2,1,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,4,1],[2,1,2,2],[0,0,2,1]],[[2,0,2,1],[2,3,3,1],[2,1,2,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[2,1,2,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[2,1,2,2],[0,1,1,1]],[[1,0,2,1],[3,3,3,1],[2,1,2,2],[0,1,1,1]],[[1,0,2,1],[2,4,3,1],[2,1,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[2,1,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,1],[3,1,2,2],[0,1,1,1]],[[2,0,2,1],[2,3,3,1],[2,1,2,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[2,1,2,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[2,1,2,2],[0,1,2,0]],[[1,0,2,1],[3,3,3,1],[2,1,2,2],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[2,1,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[2,1,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[3,1,2,2],[0,1,2,0]],[[2,0,2,1],[2,3,3,1],[2,1,2,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,1],[2,1,2,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,1],[2,1,2,2],[0,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,1,2,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,1,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,4,1],[2,1,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,1,2,2],[0,2,0,1]],[[2,0,2,1],[2,3,3,1],[2,1,2,2],[0,2,1,0]],[[1,0,3,1],[2,3,3,1],[2,1,2,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[2,1,2,2],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,1,2,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,1,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[2,1,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,1,2,2],[0,2,1,0]],[[1,2,1,1],[1,2,2,2],[1,0,3,2],[1,3,2,0]],[[1,2,1,1],[1,2,2,2],[1,0,3,2],[2,2,2,0]],[[1,2,1,1],[1,2,2,2],[1,0,3,3],[1,2,2,0]],[[1,2,1,1],[1,2,2,2],[1,0,4,2],[1,2,2,0]],[[1,2,1,1],[1,2,2,3],[1,0,3,2],[1,2,2,0]],[[1,2,1,2],[1,2,2,2],[1,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,2,2,2],[1,0,3,2],[1,2,1,2]],[[1,2,1,1],[1,2,2,2],[1,0,3,3],[1,2,1,1]],[[1,2,1,1],[1,2,2,2],[1,0,4,2],[1,2,1,1]],[[1,2,1,1],[1,2,2,3],[1,0,3,2],[1,2,1,1]],[[1,2,1,2],[1,2,2,2],[1,0,3,2],[1,2,1,1]],[[2,0,2,1],[2,3,3,1],[2,1,2,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,1],[2,1,2,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,1],[2,1,2,2],[1,0,1,1]],[[1,0,2,1],[3,3,3,1],[2,1,2,2],[1,0,1,1]],[[1,0,2,1],[2,4,3,1],[2,1,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,1],[2,1,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[3,1,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[2,1,2,2],[2,0,1,1]],[[2,0,2,1],[2,3,3,1],[2,1,2,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,1],[2,1,2,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[2,1,2,2],[1,0,2,0]],[[1,0,2,1],[3,3,3,1],[2,1,2,2],[1,0,2,0]],[[1,0,2,1],[2,4,3,1],[2,1,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[2,1,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[3,1,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,2,2],[2,0,2,0]],[[2,0,2,1],[2,3,3,1],[2,1,2,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,1],[2,1,2,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,1],[2,1,2,2],[1,1,0,1]],[[1,0,2,1],[3,3,3,1],[2,1,2,2],[1,1,0,1]],[[1,0,2,1],[2,4,3,1],[2,1,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,4,1],[2,1,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[3,1,2,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[2,1,2,2],[2,1,0,1]],[[2,0,2,1],[2,3,3,1],[2,1,2,2],[1,1,1,0]],[[1,0,3,1],[2,3,3,1],[2,1,2,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,1],[2,1,2,2],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[2,1,2,2],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[2,1,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,4,1],[2,1,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[3,1,2,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[2,1,2,2],[2,1,1,0]],[[1,2,1,1],[1,2,2,2],[1,0,3,2],[0,2,2,2]],[[1,2,1,1],[1,2,2,2],[1,0,3,2],[0,2,3,1]],[[1,2,1,1],[1,2,2,2],[1,0,3,3],[0,2,2,1]],[[1,2,1,1],[1,2,2,3],[1,0,3,2],[0,2,2,1]],[[1,2,1,2],[1,2,2,2],[1,0,3,2],[0,2,2,1]],[[1,2,1,1],[1,2,2,2],[1,0,3,1],[1,2,2,2]],[[1,2,1,1],[1,2,2,2],[1,0,3,1],[1,2,3,1]],[[1,2,1,1],[1,2,2,2],[1,0,3,1],[1,3,2,1]],[[1,2,1,1],[1,2,2,2],[1,0,3,1],[2,2,2,1]],[[1,2,1,1],[1,2,2,2],[1,0,4,1],[1,2,2,1]],[[1,2,1,1],[1,2,2,2],[1,0,2,2],[1,2,2,2]],[[1,2,1,1],[1,2,2,2],[1,0,2,2],[1,2,3,1]],[[1,2,1,1],[1,2,2,2],[1,0,2,2],[1,3,2,1]],[[1,2,1,1],[1,2,2,2],[1,0,2,2],[2,2,2,1]],[[1,2,1,1],[1,2,2,2],[1,0,2,3],[1,2,2,1]],[[1,2,1,1],[1,2,2,3],[1,0,2,2],[1,2,2,1]],[[1,2,1,2],[1,2,2,2],[1,0,2,2],[1,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,1,3,0],[0,1,2,1]],[[1,0,3,1],[2,3,3,1],[2,1,3,0],[0,1,2,1]],[[1,0,2,2],[2,3,3,1],[2,1,3,0],[0,1,2,1]],[[1,0,2,1],[3,3,3,1],[2,1,3,0],[0,1,2,1]],[[1,0,2,1],[2,4,3,1],[2,1,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,4,1],[2,1,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[3,1,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,4,0],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,3,0],[0,1,3,1]],[[1,0,2,1],[2,3,3,1],[2,1,3,0],[0,1,2,2]],[[2,0,2,1],[2,3,3,1],[2,1,3,0],[0,2,1,1]],[[1,0,3,1],[2,3,3,1],[2,1,3,0],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[2,1,3,0],[0,2,1,1]],[[1,0,2,1],[3,3,3,1],[2,1,3,0],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[2,1,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[2,1,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[3,1,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,1,4,0],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[2,1,3,0],[1,0,2,1]],[[1,0,3,1],[2,3,3,1],[2,1,3,0],[1,0,2,1]],[[1,0,2,2],[2,3,3,1],[2,1,3,0],[1,0,2,1]],[[1,0,2,1],[3,3,3,1],[2,1,3,0],[1,0,2,1]],[[1,0,2,1],[2,4,3,1],[2,1,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,4,1],[2,1,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[3,1,3,0],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,4,0],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,3,0],[2,0,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,3,0],[1,0,3,1]],[[1,0,2,1],[2,3,3,1],[2,1,3,0],[1,0,2,2]],[[2,0,2,1],[2,3,3,1],[2,1,3,0],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[2,1,3,0],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[2,1,3,0],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[2,1,3,0],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[2,1,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[2,1,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[3,1,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[2,1,4,0],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[2,1,3,0],[2,1,1,1]],[[2,0,2,1],[2,3,3,1],[2,1,3,0],[1,2,1,0]],[[1,0,3,1],[2,3,3,1],[2,1,3,0],[1,2,1,0]],[[1,0,2,2],[2,3,3,1],[2,1,3,0],[1,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,1,3,0],[1,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,1,3,0],[1,2,1,0]],[[1,0,2,1],[2,3,4,1],[2,1,3,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,1,3,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,1,3,0],[2,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,1,3,0],[1,3,1,0]],[[2,0,2,1],[2,3,3,1],[2,1,3,1],[0,0,2,1]],[[1,0,3,1],[2,3,3,1],[2,1,3,1],[0,0,2,1]],[[1,0,2,2],[2,3,3,1],[2,1,3,1],[0,0,2,1]],[[1,0,2,1],[3,3,3,1],[2,1,3,1],[0,0,2,1]],[[1,0,2,1],[2,4,3,1],[2,1,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,4,1],[2,1,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,3,1],[2,1,4,1],[0,0,2,1]],[[2,0,2,1],[2,3,3,1],[2,1,3,1],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[2,1,3,1],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[2,1,3,1],[0,1,1,1]],[[1,0,2,1],[3,3,3,1],[2,1,3,1],[0,1,1,1]],[[1,0,2,1],[2,4,3,1],[2,1,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[2,1,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,3,1],[3,1,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,3,1],[2,1,4,1],[0,1,1,1]],[[2,0,2,1],[2,3,3,1],[2,1,3,1],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[2,1,3,1],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[2,1,3,1],[0,1,2,0]],[[1,0,2,1],[3,3,3,1],[2,1,3,1],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[2,1,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[2,1,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[3,1,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,4,1],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,3,1],[0,1,3,0]],[[2,0,2,1],[2,3,3,1],[2,1,3,1],[0,2,0,1]],[[1,0,3,1],[2,3,3,1],[2,1,3,1],[0,2,0,1]],[[1,0,2,2],[2,3,3,1],[2,1,3,1],[0,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,1,3,1],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,1,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,4,1],[2,1,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,1,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,1,4,1],[0,2,0,1]],[[2,0,2,1],[2,3,3,1],[2,1,3,1],[0,2,1,0]],[[1,0,3,1],[2,3,3,1],[2,1,3,1],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[2,1,3,1],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,1,3,1],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,1,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[2,1,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,1,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,1,4,1],[0,2,1,0]],[[1,2,1,1],[1,2,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,1,1],[1,2,2,2],[0,3,4,2],[0,2,1,0]],[[1,2,1,1],[1,2,2,3],[0,3,3,2],[0,2,1,0]],[[1,2,1,2],[1,2,2,2],[0,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,2,2,2],[0,3,3,2],[0,2,0,2]],[[1,2,1,1],[1,2,2,2],[0,3,3,3],[0,2,0,1]],[[2,0,2,1],[2,3,3,1],[2,1,3,1],[1,0,1,1]],[[1,0,3,1],[2,3,3,1],[2,1,3,1],[1,0,1,1]],[[1,0,2,2],[2,3,3,1],[2,1,3,1],[1,0,1,1]],[[1,0,2,1],[3,3,3,1],[2,1,3,1],[1,0,1,1]],[[1,0,2,1],[2,4,3,1],[2,1,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,4,1],[2,1,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[3,1,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[2,1,4,1],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[2,1,3,1],[2,0,1,1]],[[2,0,2,1],[2,3,3,1],[2,1,3,1],[1,0,2,0]],[[1,0,3,1],[2,3,3,1],[2,1,3,1],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[2,1,3,1],[1,0,2,0]],[[1,0,2,1],[3,3,3,1],[2,1,3,1],[1,0,2,0]],[[1,0,2,1],[2,4,3,1],[2,1,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[2,1,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[3,1,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,4,1],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,3,1],[2,0,2,0]],[[1,0,2,1],[2,3,3,1],[2,1,3,1],[1,0,3,0]],[[2,0,2,1],[2,3,3,1],[2,1,3,1],[1,1,0,1]],[[1,0,3,1],[2,3,3,1],[2,1,3,1],[1,1,0,1]],[[1,0,2,2],[2,3,3,1],[2,1,3,1],[1,1,0,1]],[[1,0,2,1],[3,3,3,1],[2,1,3,1],[1,1,0,1]],[[1,0,2,1],[2,4,3,1],[2,1,3,1],[1,1,0,1]],[[1,0,2,1],[2,3,4,1],[2,1,3,1],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[3,1,3,1],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[2,1,4,1],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[2,1,3,1],[2,1,0,1]],[[2,0,2,1],[2,3,3,1],[2,1,3,1],[1,1,1,0]],[[1,0,3,1],[2,3,3,1],[2,1,3,1],[1,1,1,0]],[[1,0,2,2],[2,3,3,1],[2,1,3,1],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[2,1,3,1],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[2,1,3,1],[1,1,1,0]],[[1,0,2,1],[2,3,4,1],[2,1,3,1],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[3,1,3,1],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[2,1,4,1],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[2,1,3,1],[2,1,1,0]],[[1,2,1,1],[1,2,2,2],[0,3,4,2],[0,2,0,1]],[[1,2,1,1],[1,2,2,3],[0,3,3,2],[0,2,0,1]],[[1,2,1,2],[1,2,2,2],[0,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,2,2,2],[0,3,3,2],[0,1,3,0]],[[1,2,1,1],[1,2,2,2],[0,3,3,3],[0,1,2,0]],[[1,2,1,1],[1,2,2,2],[0,3,4,2],[0,1,2,0]],[[1,2,1,1],[1,2,2,3],[0,3,3,2],[0,1,2,0]],[[1,2,1,2],[1,2,2,2],[0,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,2,2,2],[0,3,3,2],[0,1,1,2]],[[1,2,1,1],[1,2,2,2],[0,3,3,3],[0,1,1,1]],[[1,2,1,1],[1,2,2,2],[0,3,4,2],[0,1,1,1]],[[1,2,1,1],[1,2,2,3],[0,3,3,2],[0,1,1,1]],[[1,2,1,2],[1,2,2,2],[0,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,2,2,2],[0,3,3,2],[0,0,2,2]],[[1,2,1,1],[1,2,2,2],[0,3,3,3],[0,0,2,1]],[[1,2,1,1],[1,2,2,2],[0,3,4,2],[0,0,2,1]],[[1,2,1,1],[1,2,2,3],[0,3,3,2],[0,0,2,1]],[[1,2,1,2],[1,2,2,2],[0,3,3,2],[0,0,2,1]],[[1,2,1,1],[1,2,2,2],[0,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,2,2,2],[0,3,3,1],[0,1,3,1]],[[1,2,1,1],[1,2,2,2],[0,3,4,1],[0,1,2,1]],[[2,0,2,1],[2,3,3,1],[2,1,3,2],[0,1,0,1]],[[1,0,3,1],[2,3,3,1],[2,1,3,2],[0,1,0,1]],[[1,0,2,2],[2,3,3,1],[2,1,3,2],[0,1,0,1]],[[1,0,2,1],[3,3,3,1],[2,1,3,2],[0,1,0,1]],[[1,0,2,1],[2,4,3,1],[2,1,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,4,1],[2,1,3,2],[0,1,0,1]],[[1,2,1,1],[1,2,2,2],[0,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,2,2,2],[0,3,2,2],[0,1,3,1]],[[1,2,1,1],[1,2,2,2],[0,3,2,3],[0,1,2,1]],[[1,2,1,1],[1,2,2,3],[0,3,2,2],[0,1,2,1]],[[1,2,1,2],[1,2,2,2],[0,3,2,2],[0,1,2,1]],[[1,2,1,1],[1,2,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,1,1],[1,2,2,2],[0,2,4,2],[1,2,1,0]],[[1,2,1,1],[1,2,2,3],[0,2,3,2],[1,2,1,0]],[[1,2,1,2],[1,2,2,2],[0,2,3,2],[1,2,1,0]],[[1,2,1,1],[1,2,2,2],[0,2,3,2],[1,2,0,2]],[[1,2,1,1],[1,2,2,2],[0,2,3,3],[1,2,0,1]],[[2,0,2,1],[2,3,3,1],[2,1,3,2],[1,0,0,1]],[[1,0,3,1],[2,3,3,1],[2,1,3,2],[1,0,0,1]],[[1,0,2,2],[2,3,3,1],[2,1,3,2],[1,0,0,1]],[[1,0,2,1],[3,3,3,1],[2,1,3,2],[1,0,0,1]],[[1,0,2,1],[2,4,3,1],[2,1,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,4,1],[2,1,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,3,1],[3,1,3,2],[1,0,0,1]],[[1,2,1,1],[1,2,2,2],[0,2,4,2],[1,2,0,1]],[[1,2,1,1],[1,2,2,3],[0,2,3,2],[1,2,0,1]],[[1,2,1,2],[1,2,2,2],[0,2,3,2],[1,2,0,1]],[[1,2,1,1],[1,2,2,2],[0,2,3,2],[1,1,3,0]],[[1,2,1,1],[1,2,2,2],[0,2,3,3],[1,1,2,0]],[[1,2,1,1],[1,2,2,2],[0,2,4,2],[1,1,2,0]],[[1,2,1,1],[1,2,2,3],[0,2,3,2],[1,1,2,0]],[[1,2,1,2],[1,2,2,2],[0,2,3,2],[1,1,2,0]],[[1,2,1,1],[1,2,2,2],[0,2,3,2],[1,1,1,2]],[[1,2,1,1],[1,2,2,2],[0,2,3,3],[1,1,1,1]],[[1,2,1,1],[1,2,2,2],[0,2,4,2],[1,1,1,1]],[[1,2,1,1],[1,2,2,3],[0,2,3,2],[1,1,1,1]],[[1,2,1,2],[1,2,2,2],[0,2,3,2],[1,1,1,1]],[[1,2,1,1],[1,2,2,2],[0,2,3,2],[1,0,2,2]],[[1,2,1,1],[1,2,2,2],[0,2,3,3],[1,0,2,1]],[[1,2,1,1],[1,2,2,2],[0,2,4,2],[1,0,2,1]],[[1,2,1,1],[1,2,2,3],[0,2,3,2],[1,0,2,1]],[[1,2,1,2],[1,2,2,2],[0,2,3,2],[1,0,2,1]],[[1,2,1,1],[1,2,2,2],[0,2,3,1],[1,1,2,2]],[[1,2,1,1],[1,2,2,2],[0,2,3,1],[1,1,3,1]],[[1,2,1,1],[1,2,2,2],[0,2,4,1],[1,1,2,1]],[[1,2,1,1],[1,2,2,2],[0,2,2,2],[1,1,2,2]],[[1,2,1,1],[1,2,2,2],[0,2,2,2],[1,1,3,1]],[[1,2,1,1],[1,2,2,2],[0,2,2,3],[1,1,2,1]],[[1,2,1,1],[1,2,2,3],[0,2,2,2],[1,1,2,1]],[[1,2,1,2],[1,2,2,2],[0,2,2,2],[1,1,2,1]],[[1,2,1,1],[1,2,2,2],[0,1,3,2],[1,2,3,0]],[[1,2,1,1],[1,2,2,2],[0,1,3,2],[1,3,2,0]],[[1,2,1,1],[1,2,2,2],[0,1,3,2],[2,2,2,0]],[[1,2,1,1],[1,2,2,2],[0,1,3,3],[1,2,2,0]],[[1,2,1,1],[1,2,2,2],[0,1,4,2],[1,2,2,0]],[[1,2,1,1],[1,2,2,3],[0,1,3,2],[1,2,2,0]],[[1,2,1,2],[1,2,2,2],[0,1,3,2],[1,2,2,0]],[[1,2,1,1],[1,2,2,2],[0,1,3,2],[1,2,1,2]],[[1,2,1,1],[1,2,2,2],[0,1,3,3],[1,2,1,1]],[[1,2,1,1],[1,2,2,2],[0,1,4,2],[1,2,1,1]],[[1,2,1,1],[1,2,2,3],[0,1,3,2],[1,2,1,1]],[[1,2,1,2],[1,2,2,2],[0,1,3,2],[1,2,1,1]],[[1,2,1,1],[1,2,2,2],[0,1,3,1],[1,2,2,2]],[[1,2,1,1],[1,2,2,2],[0,1,3,1],[1,2,3,1]],[[1,2,1,1],[1,2,2,2],[0,1,3,1],[1,3,2,1]],[[1,2,1,1],[1,2,2,2],[0,1,3,1],[2,2,2,1]],[[1,2,1,1],[1,2,2,2],[0,1,4,1],[1,2,2,1]],[[1,2,1,1],[1,2,2,2],[0,1,2,2],[1,2,2,2]],[[1,2,1,1],[1,2,2,2],[0,1,2,2],[1,2,3,1]],[[1,2,1,1],[1,2,2,2],[0,1,2,2],[1,3,2,1]],[[1,2,1,1],[1,2,2,2],[0,1,2,2],[2,2,2,1]],[[1,2,1,1],[1,2,2,2],[0,1,2,3],[1,2,2,1]],[[1,2,1,1],[1,2,2,3],[0,1,2,2],[1,2,2,1]],[[1,2,1,2],[1,2,2,2],[0,1,2,2],[1,2,2,1]],[[1,2,1,1],[1,2,2,2],[0,0,3,2],[1,2,2,2]],[[1,2,1,1],[1,2,2,2],[0,0,3,2],[1,2,3,1]],[[1,2,1,1],[1,2,2,2],[0,0,3,3],[1,2,2,1]],[[1,2,1,1],[1,2,2,3],[0,0,3,2],[1,2,2,1]],[[1,2,1,2],[1,2,2,2],[0,0,3,2],[1,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,2,0,0],[1,2,2,1]],[[1,0,2,1],[3,3,3,1],[2,2,0,0],[1,2,2,1]],[[1,0,2,1],[2,4,3,1],[2,2,0,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[3,2,0,0],[1,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,2,0,0],[2,2,2,1]],[[1,0,2,1],[2,3,3,1],[2,2,0,0],[1,3,2,1]],[[2,0,2,1],[2,3,3,1],[2,2,0,1],[0,2,2,1]],[[1,0,3,1],[2,3,3,1],[2,2,0,1],[0,2,2,1]],[[1,0,2,2],[2,3,3,1],[2,2,0,1],[0,2,2,1]],[[1,0,2,1],[3,3,3,1],[2,2,0,1],[0,2,2,1]],[[1,0,2,1],[2,4,3,1],[2,2,0,1],[0,2,2,1]],[[1,0,2,1],[2,3,4,1],[2,2,0,1],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[3,2,0,1],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,2,0,1],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[2,2,0,1],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[2,2,0,1],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[2,2,0,1],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[2,2,0,1],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[2,2,0,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[3,2,0,1],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[2,2,0,1],[2,1,2,1]],[[2,0,2,1],[2,3,3,1],[2,2,0,1],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[2,2,0,1],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[2,2,0,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[3,2,0,1],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,2,0,1],[2,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,2,0,1],[1,3,2,0]],[[2,0,2,1],[2,3,3,1],[2,2,0,2],[0,1,2,1]],[[1,0,3,1],[2,3,3,1],[2,2,0,2],[0,1,2,1]],[[1,0,2,2],[2,3,3,1],[2,2,0,2],[0,1,2,1]],[[1,0,2,1],[3,3,3,1],[2,2,0,2],[0,1,2,1]],[[1,0,2,1],[2,4,3,1],[2,2,0,2],[0,1,2,1]],[[1,0,2,1],[2,3,4,1],[2,2,0,2],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[3,2,0,2],[0,1,2,1]],[[2,0,2,1],[2,3,3,1],[2,2,0,2],[0,2,1,1]],[[1,0,3,1],[2,3,3,1],[2,2,0,2],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[2,2,0,2],[0,2,1,1]],[[1,0,2,1],[3,3,3,1],[2,2,0,2],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[2,2,0,2],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[2,2,0,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[3,2,0,2],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[2,2,0,2],[0,2,2,0]],[[1,0,3,1],[2,3,3,1],[2,2,0,2],[0,2,2,0]],[[1,0,2,2],[2,3,3,1],[2,2,0,2],[0,2,2,0]],[[1,0,2,1],[3,3,3,1],[2,2,0,2],[0,2,2,0]],[[1,0,2,1],[2,4,3,1],[2,2,0,2],[0,2,2,0]],[[1,0,2,1],[2,3,4,1],[2,2,0,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[3,2,0,2],[0,2,2,0]],[[2,0,2,1],[2,3,3,1],[2,2,0,2],[1,0,2,1]],[[1,0,3,1],[2,3,3,1],[2,2,0,2],[1,0,2,1]],[[1,0,2,2],[2,3,3,1],[2,2,0,2],[1,0,2,1]],[[1,0,2,1],[3,3,3,1],[2,2,0,2],[1,0,2,1]],[[1,0,2,1],[2,4,3,1],[2,2,0,2],[1,0,2,1]],[[1,0,2,1],[2,3,4,1],[2,2,0,2],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[3,2,0,2],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[2,2,0,2],[2,0,2,1]],[[2,0,2,1],[2,3,3,1],[2,2,0,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[2,2,0,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[2,2,0,2],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[2,2,0,2],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[2,2,0,2],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[2,2,0,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[3,2,0,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[2,2,0,2],[2,1,1,1]],[[2,0,2,1],[2,3,3,1],[2,2,0,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,1],[2,2,0,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[2,2,0,2],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[2,2,0,2],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[2,2,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[2,2,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[3,2,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[2,2,0,2],[2,1,2,0]],[[2,0,2,1],[2,3,3,1],[2,2,1,0],[0,2,2,1]],[[1,0,3,1],[2,3,3,1],[2,2,1,0],[0,2,2,1]],[[1,0,2,2],[2,3,3,1],[2,2,1,0],[0,2,2,1]],[[1,0,2,1],[3,3,3,1],[2,2,1,0],[0,2,2,1]],[[1,0,2,1],[2,4,3,1],[2,2,1,0],[0,2,2,1]],[[1,0,2,1],[2,3,4,1],[2,2,1,0],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[3,2,1,0],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,2,1,0],[1,1,2,1]],[[1,0,3,1],[2,3,3,1],[2,2,1,0],[1,1,2,1]],[[1,0,2,2],[2,3,3,1],[2,2,1,0],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[2,2,1,0],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[2,2,1,0],[1,1,2,1]],[[1,0,2,1],[2,3,4,1],[2,2,1,0],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[3,2,1,0],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[2,2,1,0],[2,1,2,1]],[[2,0,2,1],[2,3,3,1],[2,2,1,1],[0,2,2,0]],[[1,0,3,1],[2,3,3,1],[2,2,1,1],[0,2,2,0]],[[1,0,2,2],[2,3,3,1],[2,2,1,1],[0,2,2,0]],[[1,0,2,1],[3,3,3,1],[2,2,1,1],[0,2,2,0]],[[1,0,2,1],[2,4,3,1],[2,2,1,1],[0,2,2,0]],[[1,0,2,1],[2,3,4,1],[2,2,1,1],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[3,2,1,1],[0,2,2,0]],[[2,0,2,1],[2,3,3,1],[2,2,1,1],[1,1,2,0]],[[1,0,3,1],[2,3,3,1],[2,2,1,1],[1,1,2,0]],[[1,0,2,2],[2,3,3,1],[2,2,1,1],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[2,2,1,1],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[2,2,1,1],[1,1,2,0]],[[1,0,2,1],[2,3,4,1],[2,2,1,1],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[3,2,1,1],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[2,2,1,1],[2,1,2,0]],[[2,0,2,1],[2,3,3,1],[2,2,1,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[2,2,1,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[2,2,1,2],[0,1,1,1]],[[1,0,2,1],[3,3,3,1],[2,2,1,2],[0,1,1,1]],[[1,0,2,1],[2,4,3,1],[2,2,1,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[2,2,1,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,1],[3,2,1,2],[0,1,1,1]],[[2,0,2,1],[2,3,3,1],[2,2,1,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[2,2,1,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[2,2,1,2],[0,1,2,0]],[[1,0,2,1],[3,3,3,1],[2,2,1,2],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[2,2,1,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[2,2,1,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[3,2,1,2],[0,1,2,0]],[[2,0,2,1],[2,3,3,1],[2,2,1,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,1],[2,2,1,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,1],[2,2,1,2],[0,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,2,1,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,2,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,4,1],[2,2,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,2,1,2],[0,2,0,1]],[[2,0,2,1],[2,3,3,1],[2,2,1,2],[0,2,1,0]],[[1,0,3,1],[2,3,3,1],[2,2,1,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[2,2,1,2],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,2,1,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,2,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[2,2,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,2,1,2],[0,2,1,0]],[[2,0,2,1],[2,3,3,1],[2,2,1,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,1],[2,2,1,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,1],[2,2,1,2],[1,0,1,1]],[[1,0,2,1],[3,3,3,1],[2,2,1,2],[1,0,1,1]],[[1,0,2,1],[2,4,3,1],[2,2,1,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,1],[2,2,1,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[3,2,1,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[2,2,1,2],[2,0,1,1]],[[2,0,2,1],[2,3,3,1],[2,2,1,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,1],[2,2,1,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[2,2,1,2],[1,0,2,0]],[[1,0,2,1],[3,3,3,1],[2,2,1,2],[1,0,2,0]],[[1,0,2,1],[2,4,3,1],[2,2,1,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[2,2,1,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[3,2,1,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[2,2,1,2],[2,0,2,0]],[[2,0,2,1],[2,3,3,1],[2,2,1,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,1],[2,2,1,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,1],[2,2,1,2],[1,1,0,1]],[[1,0,2,1],[3,3,3,1],[2,2,1,2],[1,1,0,1]],[[1,0,2,1],[2,4,3,1],[2,2,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,4,1],[2,2,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[3,2,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[2,2,1,2],[2,1,0,1]],[[2,0,2,1],[2,3,3,1],[2,2,1,2],[1,1,1,0]],[[1,0,3,1],[2,3,3,1],[2,2,1,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,1],[2,2,1,2],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[2,2,1,2],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[2,2,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,4,1],[2,2,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[3,2,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[2,2,1,2],[2,1,1,0]],[[2,0,2,1],[2,3,3,1],[2,2,1,2],[1,2,0,0]],[[1,0,3,1],[2,3,3,1],[2,2,1,2],[1,2,0,0]],[[1,0,2,2],[2,3,3,1],[2,2,1,2],[1,2,0,0]],[[1,0,2,1],[3,3,3,1],[2,2,1,2],[1,2,0,0]],[[1,0,2,1],[2,4,3,1],[2,2,1,2],[1,2,0,0]],[[1,0,2,1],[2,3,4,1],[2,2,1,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[3,2,1,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[2,2,1,2],[2,2,0,0]],[[2,0,2,1],[2,3,3,1],[2,2,2,0],[0,1,2,1]],[[1,0,3,1],[2,3,3,1],[2,2,2,0],[0,1,2,1]],[[1,0,2,2],[2,3,3,1],[2,2,2,0],[0,1,2,1]],[[1,0,2,1],[3,3,3,1],[2,2,2,0],[0,1,2,1]],[[1,0,2,1],[2,4,3,1],[2,2,2,0],[0,1,2,1]],[[1,0,2,1],[2,3,4,1],[2,2,2,0],[0,1,2,1]],[[1,0,2,1],[2,3,3,1],[3,2,2,0],[0,1,2,1]],[[2,0,2,1],[2,3,3,1],[2,2,2,0],[0,2,1,1]],[[1,0,3,1],[2,3,3,1],[2,2,2,0],[0,2,1,1]],[[1,0,2,2],[2,3,3,1],[2,2,2,0],[0,2,1,1]],[[1,0,2,1],[3,3,3,1],[2,2,2,0],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[2,2,2,0],[0,2,1,1]],[[1,0,2,1],[2,3,4,1],[2,2,2,0],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[3,2,2,0],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[2,2,2,0],[1,0,2,1]],[[1,0,3,1],[2,3,3,1],[2,2,2,0],[1,0,2,1]],[[1,0,2,2],[2,3,3,1],[2,2,2,0],[1,0,2,1]],[[1,0,2,1],[3,3,3,1],[2,2,2,0],[1,0,2,1]],[[1,0,2,1],[2,4,3,1],[2,2,2,0],[1,0,2,1]],[[1,0,2,1],[2,3,4,1],[2,2,2,0],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[3,2,2,0],[1,0,2,1]],[[1,0,2,1],[2,3,3,1],[2,2,2,0],[2,0,2,1]],[[2,0,2,1],[2,3,3,1],[2,2,2,0],[1,1,1,1]],[[1,0,3,1],[2,3,3,1],[2,2,2,0],[1,1,1,1]],[[1,0,2,2],[2,3,3,1],[2,2,2,0],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[2,2,2,0],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[2,2,2,0],[1,1,1,1]],[[1,0,2,1],[2,3,4,1],[2,2,2,0],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[3,2,2,0],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[2,2,2,0],[2,1,1,1]],[[2,0,2,1],[2,3,3,1],[2,2,2,0],[1,2,0,1]],[[1,0,3,1],[2,3,3,1],[2,2,2,0],[1,2,0,1]],[[1,0,2,2],[2,3,3,1],[2,2,2,0],[1,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,2,2,0],[1,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,2,2,0],[1,2,0,1]],[[1,0,2,1],[2,3,4,1],[2,2,2,0],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,2,2,0],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,2,2,0],[2,2,0,1]],[[2,0,2,1],[2,3,3,1],[2,2,2,1],[0,1,1,1]],[[1,0,3,1],[2,3,3,1],[2,2,2,1],[0,1,1,1]],[[1,0,2,2],[2,3,3,1],[2,2,2,1],[0,1,1,1]],[[1,0,2,1],[3,3,3,1],[2,2,2,1],[0,1,1,1]],[[1,0,2,1],[2,4,3,1],[2,2,2,1],[0,1,1,1]],[[1,0,2,1],[2,3,4,1],[2,2,2,1],[0,1,1,1]],[[1,0,2,1],[2,3,3,1],[3,2,2,1],[0,1,1,1]],[[2,0,2,1],[2,3,3,1],[2,2,2,1],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[2,2,2,1],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[2,2,2,1],[0,1,2,0]],[[1,0,2,1],[3,3,3,1],[2,2,2,1],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[2,2,2,1],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[2,2,2,1],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[3,2,2,1],[0,1,2,0]],[[2,0,2,1],[2,3,3,1],[2,2,2,1],[0,2,0,1]],[[1,0,3,1],[2,3,3,1],[2,2,2,1],[0,2,0,1]],[[1,0,2,2],[2,3,3,1],[2,2,2,1],[0,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,2,2,1],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,2,2,1],[0,2,0,1]],[[1,0,2,1],[2,3,4,1],[2,2,2,1],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,2,2,1],[0,2,0,1]],[[2,0,2,1],[2,3,3,1],[2,2,2,1],[0,2,1,0]],[[1,0,3,1],[2,3,3,1],[2,2,2,1],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[2,2,2,1],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,2,2,1],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,2,2,1],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[2,2,2,1],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,2,2,1],[0,2,1,0]],[[2,0,2,1],[2,3,3,1],[2,2,2,1],[1,0,1,1]],[[1,0,3,1],[2,3,3,1],[2,2,2,1],[1,0,1,1]],[[1,0,2,2],[2,3,3,1],[2,2,2,1],[1,0,1,1]],[[1,0,2,1],[3,3,3,1],[2,2,2,1],[1,0,1,1]],[[1,0,2,1],[2,4,3,1],[2,2,2,1],[1,0,1,1]],[[1,0,2,1],[2,3,4,1],[2,2,2,1],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[3,2,2,1],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[2,2,2,1],[2,0,1,1]],[[2,0,2,1],[2,3,3,1],[2,2,2,1],[1,0,2,0]],[[1,0,3,1],[2,3,3,1],[2,2,2,1],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[2,2,2,1],[1,0,2,0]],[[1,0,2,1],[3,3,3,1],[2,2,2,1],[1,0,2,0]],[[1,0,2,1],[2,4,3,1],[2,2,2,1],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[2,2,2,1],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[3,2,2,1],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[2,2,2,1],[2,0,2,0]],[[2,0,2,1],[2,3,3,1],[2,2,2,1],[1,1,0,1]],[[1,0,3,1],[2,3,3,1],[2,2,2,1],[1,1,0,1]],[[1,0,2,2],[2,3,3,1],[2,2,2,1],[1,1,0,1]],[[1,0,2,1],[3,3,3,1],[2,2,2,1],[1,1,0,1]],[[1,0,2,1],[2,4,3,1],[2,2,2,1],[1,1,0,1]],[[1,0,2,1],[2,3,4,1],[2,2,2,1],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[3,2,2,1],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[2,2,2,1],[2,1,0,1]],[[2,0,2,1],[2,3,3,1],[2,2,2,1],[1,1,1,0]],[[1,0,3,1],[2,3,3,1],[2,2,2,1],[1,1,1,0]],[[1,0,2,2],[2,3,3,1],[2,2,2,1],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[2,2,2,1],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[2,2,2,1],[1,1,1,0]],[[1,0,2,1],[2,3,4,1],[2,2,2,1],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[3,2,2,1],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[2,2,2,1],[2,1,1,0]],[[2,0,2,1],[2,3,3,1],[2,2,2,1],[1,2,0,0]],[[1,0,3,1],[2,3,3,1],[2,2,2,1],[1,2,0,0]],[[1,0,2,2],[2,3,3,1],[2,2,2,1],[1,2,0,0]],[[1,0,2,1],[3,3,3,1],[2,2,2,1],[1,2,0,0]],[[1,0,2,1],[2,4,3,1],[2,2,2,1],[1,2,0,0]],[[1,0,2,1],[2,3,4,1],[2,2,2,1],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[3,2,2,1],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[2,2,2,1],[2,2,0,0]],[[2,0,2,1],[2,3,3,1],[2,2,3,0],[0,1,2,0]],[[1,0,3,1],[2,3,3,1],[2,2,3,0],[0,1,2,0]],[[1,0,2,2],[2,3,3,1],[2,2,3,0],[0,1,2,0]],[[1,0,2,1],[3,3,3,1],[2,2,3,0],[0,1,2,0]],[[1,0,2,1],[2,4,3,1],[2,2,3,0],[0,1,2,0]],[[1,0,2,1],[2,3,4,1],[2,2,3,0],[0,1,2,0]],[[1,0,2,1],[2,3,3,1],[3,2,3,0],[0,1,2,0]],[[2,0,2,1],[2,3,3,1],[2,2,3,0],[0,2,1,0]],[[1,0,3,1],[2,3,3,1],[2,2,3,0],[0,2,1,0]],[[1,0,2,2],[2,3,3,1],[2,2,3,0],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,2,3,0],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,2,3,0],[0,2,1,0]],[[1,0,2,1],[2,3,4,1],[2,2,3,0],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,2,3,0],[0,2,1,0]],[[2,0,2,1],[2,3,3,1],[2,2,3,0],[1,0,2,0]],[[1,0,3,1],[2,3,3,1],[2,2,3,0],[1,0,2,0]],[[1,0,2,2],[2,3,3,1],[2,2,3,0],[1,0,2,0]],[[1,0,2,1],[3,3,3,1],[2,2,3,0],[1,0,2,0]],[[1,0,2,1],[2,4,3,1],[2,2,3,0],[1,0,2,0]],[[1,0,2,1],[2,3,4,1],[2,2,3,0],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[3,2,3,0],[1,0,2,0]],[[1,0,2,1],[2,3,3,1],[2,2,3,0],[2,0,2,0]],[[2,0,2,1],[2,3,3,1],[2,2,3,0],[1,1,1,0]],[[1,0,3,1],[2,3,3,1],[2,2,3,0],[1,1,1,0]],[[1,0,2,2],[2,3,3,1],[2,2,3,0],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[2,2,3,0],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[2,2,3,0],[1,1,1,0]],[[1,0,2,1],[2,3,4,1],[2,2,3,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[3,2,3,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[2,2,3,0],[2,1,1,0]],[[2,0,2,1],[2,3,3,1],[2,2,3,0],[1,2,0,0]],[[1,0,3,1],[2,3,3,1],[2,2,3,0],[1,2,0,0]],[[1,0,2,2],[2,3,3,1],[2,2,3,0],[1,2,0,0]],[[1,0,2,1],[3,3,3,1],[2,2,3,0],[1,2,0,0]],[[1,0,2,1],[2,4,3,1],[2,2,3,0],[1,2,0,0]],[[1,0,2,1],[2,3,4,1],[2,2,3,0],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[3,2,3,0],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[2,2,3,0],[2,2,0,0]],[[1,2,1,1],[1,1,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,1],[1,1,3,2],[2,1,0,2],[1,2,3,1]],[[1,2,1,1],[1,1,3,2],[2,1,0,2],[1,3,2,1]],[[1,2,1,1],[1,1,3,2],[2,1,0,2],[2,2,2,1]],[[1,2,1,1],[1,1,3,2],[2,1,0,3],[1,2,2,1]],[[1,2,1,1],[1,1,3,2],[3,1,0,2],[1,2,2,1]],[[1,2,1,1],[1,1,3,3],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[1,1,4,2],[2,1,0,2],[1,2,2,1]],[[1,2,1,2],[1,1,3,2],[2,1,0,2],[1,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,2,3,1],[0,2,0,0]],[[1,0,3,1],[2,3,3,1],[2,2,3,1],[0,2,0,0]],[[1,0,2,2],[2,3,3,1],[2,2,3,1],[0,2,0,0]],[[1,0,2,1],[3,3,3,1],[2,2,3,1],[0,2,0,0]],[[1,0,2,1],[2,4,3,1],[2,2,3,1],[0,2,0,0]],[[1,0,2,1],[2,3,4,1],[2,2,3,1],[0,2,0,0]],[[1,0,2,1],[2,3,3,1],[3,2,3,1],[0,2,0,0]],[[1,2,1,1],[1,1,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,1,1],[1,1,3,2],[2,0,3,1],[1,3,2,0]],[[1,2,1,1],[1,1,3,2],[2,0,3,1],[2,2,2,0]],[[1,2,1,1],[1,1,3,2],[2,0,4,1],[1,2,2,0]],[[1,2,1,1],[1,1,3,2],[3,0,3,1],[1,2,2,0]],[[1,2,1,1],[1,1,3,3],[2,0,3,1],[1,2,2,0]],[[1,2,1,1],[1,1,4,2],[2,0,3,1],[1,2,2,0]],[[1,2,1,2],[1,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,1,1],[1,1,3,2],[2,0,4,1],[1,2,1,1]],[[1,2,1,1],[1,1,3,3],[2,0,3,1],[1,2,1,1]],[[1,2,1,1],[1,1,4,2],[2,0,3,1],[1,2,1,1]],[[1,2,1,2],[1,1,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,1,1],[1,1,3,2],[2,0,3,0],[1,2,2,2]],[[1,2,1,1],[1,1,3,2],[2,0,3,0],[1,2,3,1]],[[1,2,1,1],[1,1,3,2],[2,0,3,0],[1,3,2,1]],[[1,2,1,1],[1,1,3,2],[2,0,3,0],[2,2,2,1]],[[1,2,1,1],[1,1,3,2],[2,0,4,0],[1,2,2,1]],[[1,2,1,1],[1,1,3,2],[3,0,3,0],[1,2,2,1]],[[1,2,1,1],[1,1,3,3],[2,0,3,0],[1,2,2,1]],[[1,2,1,1],[1,1,4,2],[2,0,3,0],[1,2,2,1]],[[1,2,1,2],[1,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,1,1],[1,1,3,2],[2,0,2,3],[1,2,2,0]],[[1,2,1,1],[1,1,3,3],[2,0,2,2],[1,2,2,0]],[[1,2,1,1],[1,1,4,2],[2,0,2,2],[1,2,2,0]],[[1,2,1,2],[1,1,3,2],[2,0,2,2],[1,2,2,0]],[[1,2,1,1],[1,1,3,2],[2,0,2,2],[1,2,1,2]],[[1,2,1,1],[1,1,3,2],[2,0,2,3],[1,2,1,1]],[[1,2,1,1],[1,1,3,3],[2,0,2,2],[1,2,1,1]],[[1,2,1,1],[1,1,4,2],[2,0,2,2],[1,2,1,1]],[[1,2,1,2],[1,1,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,1,1],[1,1,3,2],[2,0,1,2],[1,2,2,2]],[[2,0,2,1],[2,3,3,1],[2,2,3,1],[1,1,0,0]],[[1,0,3,1],[2,3,3,1],[2,2,3,1],[1,1,0,0]],[[1,0,2,2],[2,3,3,1],[2,2,3,1],[1,1,0,0]],[[1,0,2,1],[3,3,3,1],[2,2,3,1],[1,1,0,0]],[[1,0,2,1],[2,4,3,1],[2,2,3,1],[1,1,0,0]],[[1,0,2,1],[2,3,4,1],[2,2,3,1],[1,1,0,0]],[[1,0,2,1],[2,3,3,1],[3,2,3,1],[1,1,0,0]],[[1,0,2,1],[2,3,3,1],[2,2,3,1],[2,1,0,0]],[[1,2,1,1],[1,1,3,2],[2,0,1,2],[1,2,3,1]],[[1,2,1,1],[1,1,3,2],[2,0,1,2],[1,3,2,1]],[[1,2,1,1],[1,1,3,2],[2,0,1,2],[2,2,2,1]],[[1,2,1,1],[1,1,3,2],[2,0,1,3],[1,2,2,1]],[[1,2,1,1],[1,1,3,2],[3,0,1,2],[1,2,2,1]],[[1,2,1,1],[1,1,3,3],[2,0,1,2],[1,2,2,1]],[[1,2,1,1],[1,1,4,2],[2,0,1,2],[1,2,2,1]],[[1,2,1,2],[1,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,2,1,1],[1,1,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,1,1],[1,1,3,3],[1,3,3,2],[1,0,0,1]],[[1,2,1,1],[1,1,4,2],[1,3,3,2],[1,0,0,1]],[[1,2,1,2],[1,1,3,2],[1,3,3,2],[1,0,0,1]],[[1,2,1,1],[1,1,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,1,1],[1,1,3,3],[1,3,3,2],[0,1,0,1]],[[1,2,1,1],[1,1,4,2],[1,3,3,2],[0,1,0,1]],[[1,2,1,2],[1,1,3,2],[1,3,3,2],[0,1,0,1]],[[1,2,1,1],[1,1,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,1,1],[1,1,3,2],[1,4,3,1],[1,1,1,0]],[[1,2,1,1],[1,1,3,3],[1,3,3,1],[1,1,1,0]],[[1,2,1,1],[1,1,4,2],[1,3,3,1],[1,1,1,0]],[[1,2,1,2],[1,1,3,2],[1,3,3,1],[1,1,1,0]],[[1,2,1,1],[1,1,3,2],[1,3,4,1],[1,1,0,1]],[[1,2,1,1],[1,1,3,2],[1,4,3,1],[1,1,0,1]],[[1,2,1,1],[1,1,3,3],[1,3,3,1],[1,1,0,1]],[[1,2,1,1],[1,1,4,2],[1,3,3,1],[1,1,0,1]],[[1,2,1,2],[1,1,3,2],[1,3,3,1],[1,1,0,1]],[[1,2,1,1],[1,1,3,2],[1,3,3,1],[1,0,3,0]],[[1,2,1,1],[1,1,3,2],[1,3,4,1],[1,0,2,0]],[[1,2,1,1],[1,1,3,2],[1,4,3,1],[1,0,2,0]],[[1,2,1,1],[1,1,3,3],[1,3,3,1],[1,0,2,0]],[[1,2,1,1],[1,1,4,2],[1,3,3,1],[1,0,2,0]],[[1,2,1,2],[1,1,3,2],[1,3,3,1],[1,0,2,0]],[[1,2,1,1],[1,1,3,2],[1,3,4,1],[1,0,1,1]],[[1,2,1,1],[1,1,3,2],[1,4,3,1],[1,0,1,1]],[[1,2,1,1],[1,1,3,3],[1,3,3,1],[1,0,1,1]],[[1,2,1,1],[1,1,4,2],[1,3,3,1],[1,0,1,1]],[[1,2,1,2],[1,1,3,2],[1,3,3,1],[1,0,1,1]],[[1,2,1,1],[1,1,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,1,1],[1,1,3,2],[1,3,4,1],[0,2,1,0]],[[1,2,1,1],[1,1,3,2],[1,4,3,1],[0,2,1,0]],[[1,2,1,1],[1,1,3,3],[1,3,3,1],[0,2,1,0]],[[1,2,1,1],[1,1,4,2],[1,3,3,1],[0,2,1,0]],[[1,2,1,2],[1,1,3,2],[1,3,3,1],[0,2,1,0]],[[1,2,1,1],[1,1,3,2],[1,3,3,1],[0,3,0,1]],[[1,2,1,1],[1,1,3,2],[1,3,4,1],[0,2,0,1]],[[1,2,1,1],[1,1,3,2],[1,4,3,1],[0,2,0,1]],[[1,2,1,1],[1,1,3,3],[1,3,3,1],[0,2,0,1]],[[1,2,1,1],[1,1,4,2],[1,3,3,1],[0,2,0,1]],[[1,2,1,2],[1,1,3,2],[1,3,3,1],[0,2,0,1]],[[1,2,1,1],[1,1,3,2],[1,3,3,1],[0,1,3,0]],[[1,2,1,1],[1,1,3,2],[1,3,4,1],[0,1,2,0]],[[1,2,1,1],[1,1,3,2],[1,4,3,1],[0,1,2,0]],[[1,2,1,1],[1,1,3,3],[1,3,3,1],[0,1,2,0]],[[1,2,1,1],[1,1,4,2],[1,3,3,1],[0,1,2,0]],[[1,2,1,2],[1,1,3,2],[1,3,3,1],[0,1,2,0]],[[1,2,1,1],[1,1,3,2],[1,3,4,1],[0,1,1,1]],[[1,2,1,1],[1,1,3,2],[1,4,3,1],[0,1,1,1]],[[1,2,1,1],[1,1,3,3],[1,3,3,1],[0,1,1,1]],[[1,2,1,1],[1,1,4,2],[1,3,3,1],[0,1,1,1]],[[1,2,1,2],[1,1,3,2],[1,3,3,1],[0,1,1,1]],[[1,2,1,1],[1,1,3,2],[1,3,4,1],[0,0,2,1]],[[1,2,1,1],[1,1,3,3],[1,3,3,1],[0,0,2,1]],[[1,2,1,1],[1,1,4,2],[1,3,3,1],[0,0,2,1]],[[1,2,1,2],[1,1,3,2],[1,3,3,1],[0,0,2,1]],[[1,2,1,1],[1,1,3,2],[1,3,4,0],[1,1,1,1]],[[1,2,1,1],[1,1,3,2],[1,4,3,0],[1,1,1,1]],[[1,2,1,1],[1,1,3,3],[1,3,3,0],[1,1,1,1]],[[1,2,1,1],[1,1,4,2],[1,3,3,0],[1,1,1,1]],[[1,2,1,2],[1,1,3,2],[1,3,3,0],[1,1,1,1]],[[1,2,1,1],[1,1,3,2],[1,3,3,0],[1,0,2,2]],[[1,2,1,1],[1,1,3,2],[1,3,3,0],[1,0,3,1]],[[1,2,1,1],[1,1,3,2],[1,3,4,0],[1,0,2,1]],[[1,2,1,1],[1,1,3,2],[1,4,3,0],[1,0,2,1]],[[1,2,1,1],[1,1,3,3],[1,3,3,0],[1,0,2,1]],[[1,2,1,1],[1,1,4,2],[1,3,3,0],[1,0,2,1]],[[1,2,1,2],[1,1,3,2],[1,3,3,0],[1,0,2,1]],[[1,2,1,1],[1,1,3,2],[1,3,3,0],[0,3,1,1]],[[1,2,1,1],[1,1,3,2],[1,3,4,0],[0,2,1,1]],[[1,2,1,1],[1,1,3,2],[1,4,3,0],[0,2,1,1]],[[1,2,1,1],[1,1,3,3],[1,3,3,0],[0,2,1,1]],[[1,2,1,1],[1,1,4,2],[1,3,3,0],[0,2,1,1]],[[1,2,1,2],[1,1,3,2],[1,3,3,0],[0,2,1,1]],[[1,2,1,1],[1,1,3,2],[1,3,3,0],[0,1,2,2]],[[1,2,1,1],[1,1,3,2],[1,3,3,0],[0,1,3,1]],[[1,2,1,1],[1,1,3,2],[1,3,4,0],[0,1,2,1]],[[1,2,1,1],[1,1,3,2],[1,4,3,0],[0,1,2,1]],[[1,2,1,1],[1,1,3,3],[1,3,3,0],[0,1,2,1]],[[1,2,1,1],[1,1,4,2],[1,3,3,0],[0,1,2,1]],[[1,2,1,2],[1,1,3,2],[1,3,3,0],[0,1,2,1]],[[1,2,1,1],[1,1,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,1,1],[1,1,3,3],[1,3,2,2],[1,1,1,0]],[[1,2,1,1],[1,1,4,2],[1,3,2,2],[1,1,1,0]],[[1,2,1,2],[1,1,3,2],[1,3,2,2],[1,1,1,0]],[[1,2,1,1],[1,1,3,2],[1,3,2,2],[1,1,0,2]],[[1,2,1,1],[1,1,3,2],[1,3,2,3],[1,1,0,1]],[[1,2,1,1],[1,1,3,3],[1,3,2,2],[1,1,0,1]],[[1,2,1,1],[1,1,4,2],[1,3,2,2],[1,1,0,1]],[[1,2,1,2],[1,1,3,2],[1,3,2,2],[1,1,0,1]],[[1,2,1,1],[1,1,3,2],[1,3,2,3],[1,0,2,0]],[[1,2,1,1],[1,1,3,3],[1,3,2,2],[1,0,2,0]],[[1,2,1,1],[1,1,4,2],[1,3,2,2],[1,0,2,0]],[[1,2,1,2],[1,1,3,2],[1,3,2,2],[1,0,2,0]],[[1,2,1,1],[1,1,3,2],[1,3,2,2],[1,0,1,2]],[[1,2,1,1],[1,1,3,2],[1,3,2,3],[1,0,1,1]],[[1,2,1,1],[1,1,3,3],[1,3,2,2],[1,0,1,1]],[[1,2,1,1],[1,1,4,2],[1,3,2,2],[1,0,1,1]],[[1,2,1,2],[1,1,3,2],[1,3,2,2],[1,0,1,1]],[[1,2,1,1],[1,1,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,1,1],[1,1,3,3],[1,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,1,4,2],[1,3,2,2],[0,2,1,0]],[[1,2,1,2],[1,1,3,2],[1,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,1,3,2],[1,3,2,2],[0,2,0,2]],[[1,2,1,1],[1,1,3,2],[1,3,2,3],[0,2,0,1]],[[1,2,1,1],[1,1,3,3],[1,3,2,2],[0,2,0,1]],[[1,2,1,1],[1,1,4,2],[1,3,2,2],[0,2,0,1]],[[1,2,1,2],[1,1,3,2],[1,3,2,2],[0,2,0,1]],[[1,2,1,1],[1,1,3,2],[1,3,2,3],[0,1,2,0]],[[1,2,1,1],[1,1,3,3],[1,3,2,2],[0,1,2,0]],[[1,2,1,1],[1,1,4,2],[1,3,2,2],[0,1,2,0]],[[1,2,1,2],[1,1,3,2],[1,3,2,2],[0,1,2,0]],[[1,2,1,1],[1,1,3,2],[1,3,2,2],[0,1,1,2]],[[1,2,1,1],[1,1,3,2],[1,3,2,3],[0,1,1,1]],[[1,2,1,1],[1,1,3,3],[1,3,2,2],[0,1,1,1]],[[1,2,1,1],[1,1,4,2],[1,3,2,2],[0,1,1,1]],[[1,2,1,2],[1,1,3,2],[1,3,2,2],[0,1,1,1]],[[1,2,1,1],[1,1,3,2],[1,3,2,2],[0,0,2,2]],[[1,2,1,1],[1,1,3,2],[1,3,2,3],[0,0,2,1]],[[1,2,1,1],[1,1,3,3],[1,3,2,2],[0,0,2,1]],[[1,2,1,1],[1,1,4,2],[1,3,2,2],[0,0,2,1]],[[1,2,1,2],[1,1,3,2],[1,3,2,2],[0,0,2,1]],[[1,2,1,1],[1,1,3,2],[1,3,2,1],[0,2,3,0]],[[1,2,1,1],[1,1,3,2],[1,3,2,1],[0,3,2,0]],[[1,2,1,1],[1,1,3,2],[1,4,2,1],[0,2,2,0]],[[1,2,1,1],[1,1,3,2],[1,3,2,0],[0,2,2,2]],[[1,2,1,1],[1,1,3,2],[1,3,2,0],[0,2,3,1]],[[1,2,1,1],[1,1,3,2],[1,3,2,0],[0,3,2,1]],[[1,2,1,1],[1,1,3,2],[1,4,2,0],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,3,0,0],[0,2,2,1]],[[1,0,2,1],[3,3,3,1],[2,3,0,0],[0,2,2,1]],[[1,0,2,1],[2,4,3,1],[2,3,0,0],[0,2,2,1]],[[1,0,2,1],[2,3,3,1],[3,3,0,0],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,3,0,0],[1,1,2,1]],[[1,0,2,1],[3,3,3,1],[2,3,0,0],[1,1,2,1]],[[1,0,2,1],[2,4,3,1],[2,3,0,0],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[3,3,0,0],[1,1,2,1]],[[1,0,2,1],[2,3,3,1],[2,3,0,0],[2,1,2,1]],[[2,0,2,1],[2,3,3,1],[2,3,0,0],[1,2,1,1]],[[1,0,2,1],[3,3,3,1],[2,3,0,0],[1,2,1,1]],[[1,0,2,1],[2,4,3,1],[2,3,0,0],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[3,3,0,0],[1,2,1,1]],[[1,0,2,1],[2,3,3,1],[2,3,0,0],[2,2,1,1]],[[2,0,2,1],[2,3,3,1],[2,3,0,0],[1,2,2,0]],[[1,0,2,1],[3,3,3,1],[2,3,0,0],[1,2,2,0]],[[1,0,2,1],[2,4,3,1],[2,3,0,0],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[3,3,0,0],[1,2,2,0]],[[1,0,2,1],[2,3,3,1],[2,3,0,0],[2,2,2,0]],[[2,0,2,1],[2,3,3,1],[2,3,0,1],[0,2,2,0]],[[1,0,2,1],[3,3,3,1],[2,3,0,1],[0,2,2,0]],[[1,0,2,1],[2,4,3,1],[2,3,0,1],[0,2,2,0]],[[1,0,2,1],[2,3,3,1],[3,3,0,1],[0,2,2,0]],[[2,0,2,1],[2,3,3,1],[2,3,0,1],[1,1,2,0]],[[1,0,2,1],[3,3,3,1],[2,3,0,1],[1,1,2,0]],[[1,0,2,1],[2,4,3,1],[2,3,0,1],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[3,3,0,1],[1,1,2,0]],[[1,0,2,1],[2,3,3,1],[2,3,0,1],[2,1,2,0]],[[2,0,2,1],[2,3,3,1],[2,3,0,1],[1,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,3,0,1],[1,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,3,0,1],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,3,0,1],[1,2,1,0]],[[1,0,2,1],[2,3,3,1],[2,3,0,1],[2,2,1,0]],[[1,2,1,1],[1,1,3,2],[1,3,1,2],[1,0,2,2]],[[1,2,1,1],[1,1,3,2],[1,3,1,2],[1,0,3,1]],[[1,2,1,1],[1,1,3,2],[1,3,1,3],[1,0,2,1]],[[1,2,1,1],[1,1,3,3],[1,3,1,2],[1,0,2,1]],[[1,2,1,1],[1,1,4,2],[1,3,1,2],[1,0,2,1]],[[1,2,1,2],[1,1,3,2],[1,3,1,2],[1,0,2,1]],[[2,0,2,1],[2,3,3,1],[2,3,0,2],[0,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,3,0,2],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,3,0,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,3,0,2],[0,2,0,1]],[[2,0,2,1],[2,3,3,1],[2,3,0,2],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,3,0,2],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,3,0,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,3,0,2],[0,2,1,0]],[[1,2,1,1],[1,1,3,2],[1,3,1,2],[0,1,2,2]],[[1,2,1,1],[1,1,3,2],[1,3,1,2],[0,1,3,1]],[[1,2,1,1],[1,1,3,2],[1,3,1,3],[0,1,2,1]],[[1,2,1,1],[1,1,3,3],[1,3,1,2],[0,1,2,1]],[[1,2,1,1],[1,1,4,2],[1,3,1,2],[0,1,2,1]],[[1,2,1,2],[1,1,3,2],[1,3,1,2],[0,1,2,1]],[[2,0,2,1],[2,3,3,1],[2,3,0,2],[1,1,0,1]],[[1,0,2,1],[3,3,3,1],[2,3,0,2],[1,1,0,1]],[[1,0,2,1],[2,4,3,1],[2,3,0,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[3,3,0,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[2,3,0,2],[2,1,0,1]],[[2,0,2,1],[2,3,3,1],[2,3,0,2],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[2,3,0,2],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[2,3,0,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[3,3,0,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[2,3,0,2],[2,1,1,0]],[[1,2,1,1],[1,1,3,2],[1,3,0,2],[0,2,2,2]],[[1,2,1,1],[1,1,3,2],[1,3,0,2],[0,2,3,1]],[[2,0,2,1],[2,3,3,1],[2,3,0,2],[1,2,0,0]],[[1,0,2,1],[3,3,3,1],[2,3,0,2],[1,2,0,0]],[[1,0,2,1],[2,4,3,1],[2,3,0,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[3,3,0,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[2,3,0,2],[2,2,0,0]],[[1,2,1,1],[1,1,3,2],[1,3,0,2],[0,3,2,1]],[[1,2,1,1],[1,1,3,2],[1,3,0,3],[0,2,2,1]],[[1,2,1,1],[1,1,3,2],[1,4,0,2],[0,2,2,1]],[[1,2,1,1],[1,1,3,3],[1,3,0,2],[0,2,2,1]],[[1,2,1,1],[1,1,4,2],[1,3,0,2],[0,2,2,1]],[[1,2,1,2],[1,1,3,2],[1,3,0,2],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,3,1,0],[0,2,1,1]],[[1,0,2,1],[3,3,3,1],[2,3,1,0],[0,2,1,1]],[[1,0,2,1],[2,4,3,1],[2,3,1,0],[0,2,1,1]],[[1,0,2,1],[2,3,3,1],[3,3,1,0],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[2,3,1,0],[1,1,1,1]],[[1,0,2,1],[3,3,3,1],[2,3,1,0],[1,1,1,1]],[[1,0,2,1],[2,4,3,1],[2,3,1,0],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[3,3,1,0],[1,1,1,1]],[[1,0,2,1],[2,3,3,1],[2,3,1,0],[2,1,1,1]],[[2,0,2,1],[2,3,3,1],[2,3,1,0],[1,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,3,1,0],[1,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,3,1,0],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,3,1,0],[1,2,0,1]],[[1,0,2,1],[2,3,3,1],[2,3,1,0],[2,2,0,1]],[[1,2,1,1],[1,1,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,1,1],[1,1,3,2],[1,2,3,1],[0,3,2,0]],[[1,2,1,1],[1,1,3,2],[1,2,4,1],[0,2,2,0]],[[1,2,1,1],[1,1,3,3],[1,2,3,1],[0,2,2,0]],[[1,2,1,1],[1,1,4,2],[1,2,3,1],[0,2,2,0]],[[1,2,1,2],[1,1,3,2],[1,2,3,1],[0,2,2,0]],[[1,2,1,1],[1,1,3,2],[1,2,4,1],[0,2,1,1]],[[1,2,1,1],[1,1,3,3],[1,2,3,1],[0,2,1,1]],[[1,2,1,1],[1,1,4,2],[1,2,3,1],[0,2,1,1]],[[2,0,2,1],[2,3,3,1],[2,3,1,1],[0,2,0,1]],[[1,0,2,1],[3,3,3,1],[2,3,1,1],[0,2,0,1]],[[1,0,2,1],[2,4,3,1],[2,3,1,1],[0,2,0,1]],[[1,0,2,1],[2,3,3,1],[3,3,1,1],[0,2,0,1]],[[2,0,2,1],[2,3,3,1],[2,3,1,1],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,3,1,1],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,3,1,1],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,3,1,1],[0,2,1,0]],[[1,2,1,2],[1,1,3,2],[1,2,3,1],[0,2,1,1]],[[1,2,1,1],[1,1,3,2],[1,2,3,0],[0,2,2,2]],[[1,2,1,1],[1,1,3,2],[1,2,3,0],[0,2,3,1]],[[2,0,2,1],[2,3,3,1],[2,3,1,1],[1,1,0,1]],[[1,0,2,1],[3,3,3,1],[2,3,1,1],[1,1,0,1]],[[1,0,2,1],[2,4,3,1],[2,3,1,1],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[3,3,1,1],[1,1,0,1]],[[1,0,2,1],[2,3,3,1],[2,3,1,1],[2,1,0,1]],[[2,0,2,1],[2,3,3,1],[2,3,1,1],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[2,3,1,1],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[2,3,1,1],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[3,3,1,1],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[2,3,1,1],[2,1,1,0]],[[1,2,1,1],[1,1,3,2],[1,2,3,0],[0,3,2,1]],[[1,2,1,1],[1,1,3,2],[1,2,4,0],[0,2,2,1]],[[1,2,1,1],[1,1,3,3],[1,2,3,0],[0,2,2,1]],[[1,2,1,1],[1,1,4,2],[1,2,3,0],[0,2,2,1]],[[1,2,1,2],[1,1,3,2],[1,2,3,0],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,3,1,1],[1,2,0,0]],[[1,0,2,1],[3,3,3,1],[2,3,1,1],[1,2,0,0]],[[1,0,2,1],[2,4,3,1],[2,3,1,1],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[3,3,1,1],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[2,3,1,1],[2,2,0,0]],[[1,2,1,1],[1,1,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,1,1],[1,1,3,3],[1,2,2,2],[0,2,2,0]],[[1,2,1,1],[1,1,4,2],[1,2,2,2],[0,2,2,0]],[[1,2,1,2],[1,1,3,2],[1,2,2,2],[0,2,2,0]],[[1,2,1,1],[1,1,3,2],[1,2,2,2],[0,2,1,2]],[[1,2,1,1],[1,1,3,2],[1,2,2,3],[0,2,1,1]],[[1,2,1,1],[1,1,3,3],[1,2,2,2],[0,2,1,1]],[[1,2,1,1],[1,1,4,2],[1,2,2,2],[0,2,1,1]],[[1,2,1,2],[1,1,3,2],[1,2,2,2],[0,2,1,1]],[[1,2,1,1],[1,1,3,2],[1,2,1,2],[0,2,2,2]],[[1,2,1,1],[1,1,3,2],[1,2,1,2],[0,2,3,1]],[[1,2,1,1],[1,1,3,2],[1,2,1,2],[0,3,2,1]],[[1,2,1,1],[1,1,3,2],[1,2,1,3],[0,2,2,1]],[[1,2,1,1],[1,1,3,3],[1,2,1,2],[0,2,2,1]],[[1,2,1,1],[1,1,4,2],[1,2,1,2],[0,2,2,1]],[[1,2,1,2],[1,1,3,2],[1,2,1,2],[0,2,2,1]],[[1,2,1,1],[1,1,3,2],[1,0,3,2],[0,2,2,2]],[[1,2,1,1],[1,1,3,2],[1,0,3,2],[0,2,3,1]],[[1,2,1,1],[1,1,3,2],[1,0,3,3],[0,2,2,1]],[[1,2,1,1],[1,1,3,3],[1,0,3,2],[0,2,2,1]],[[1,2,1,2],[1,1,3,2],[1,0,3,2],[0,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,3,1,2],[1,0,0,1]],[[1,0,3,1],[2,3,3,1],[2,3,1,2],[1,0,0,1]],[[1,0,2,2],[2,3,3,1],[2,3,1,2],[1,0,0,1]],[[1,0,2,1],[3,3,3,1],[2,3,1,2],[1,0,0,1]],[[1,0,2,1],[2,4,3,1],[2,3,1,2],[1,0,0,1]],[[1,0,2,1],[2,3,4,1],[2,3,1,2],[1,0,0,1]],[[1,0,2,1],[2,3,3,1],[3,3,1,2],[1,0,0,1]],[[2,0,2,1],[2,3,3,1],[2,3,1,2],[1,0,1,0]],[[1,0,3,1],[2,3,3,1],[2,3,1,2],[1,0,1,0]],[[1,0,2,2],[2,3,3,1],[2,3,1,2],[1,0,1,0]],[[1,0,2,1],[3,3,3,1],[2,3,1,2],[1,0,1,0]],[[1,0,2,1],[2,4,3,1],[2,3,1,2],[1,0,1,0]],[[1,0,2,1],[2,3,4,1],[2,3,1,2],[1,0,1,0]],[[1,0,2,1],[2,3,3,1],[3,3,1,2],[1,0,1,0]],[[1,2,1,1],[1,1,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,1,1],[1,1,3,3],[0,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,1,4,2],[0,3,3,2],[1,1,0,1]],[[1,2,1,2],[1,1,3,2],[0,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,1,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,1,1],[1,1,3,2],[0,3,3,1],[2,2,1,0]],[[1,2,1,1],[1,1,3,2],[0,3,4,1],[1,2,1,0]],[[1,2,1,1],[1,1,3,2],[0,4,3,1],[1,2,1,0]],[[1,2,1,1],[1,1,3,3],[0,3,3,1],[1,2,1,0]],[[1,2,1,1],[1,1,4,2],[0,3,3,1],[1,2,1,0]],[[1,2,1,2],[1,1,3,2],[0,3,3,1],[1,2,1,0]],[[1,2,1,1],[1,1,3,2],[0,3,3,1],[1,3,0,1]],[[1,2,1,1],[1,1,3,2],[0,3,3,1],[2,2,0,1]],[[1,2,1,1],[1,1,3,2],[0,3,4,1],[1,2,0,1]],[[1,2,1,1],[1,1,3,2],[0,4,3,1],[1,2,0,1]],[[1,2,1,1],[1,1,3,3],[0,3,3,1],[1,2,0,1]],[[1,2,1,1],[1,1,4,2],[0,3,3,1],[1,2,0,1]],[[1,2,1,2],[1,1,3,2],[0,3,3,1],[1,2,0,1]],[[1,2,1,1],[1,1,3,2],[0,3,3,1],[1,1,3,0]],[[1,2,1,1],[1,1,3,2],[0,3,4,1],[1,1,2,0]],[[1,2,1,1],[1,1,3,2],[0,4,3,1],[1,1,2,0]],[[1,2,1,1],[1,1,3,3],[0,3,3,1],[1,1,2,0]],[[1,2,1,1],[1,1,4,2],[0,3,3,1],[1,1,2,0]],[[1,2,1,2],[1,1,3,2],[0,3,3,1],[1,1,2,0]],[[1,2,1,1],[1,1,3,2],[0,3,4,1],[1,1,1,1]],[[1,2,1,1],[1,1,3,2],[0,4,3,1],[1,1,1,1]],[[1,2,1,1],[1,1,3,3],[0,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,1,4,2],[0,3,3,1],[1,1,1,1]],[[1,2,1,2],[1,1,3,2],[0,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,1,3,2],[0,3,4,1],[1,0,2,1]],[[1,2,1,1],[1,1,3,3],[0,3,3,1],[1,0,2,1]],[[1,2,1,1],[1,1,4,2],[0,3,3,1],[1,0,2,1]],[[1,2,1,2],[1,1,3,2],[0,3,3,1],[1,0,2,1]],[[1,2,1,1],[1,1,3,2],[0,3,3,0],[1,3,1,1]],[[1,2,1,1],[1,1,3,2],[0,3,3,0],[2,2,1,1]],[[1,2,1,1],[1,1,3,2],[0,3,4,0],[1,2,1,1]],[[1,2,1,1],[1,1,3,2],[0,4,3,0],[1,2,1,1]],[[1,2,1,1],[1,1,3,3],[0,3,3,0],[1,2,1,1]],[[2,0,2,1],[2,3,3,1],[2,3,2,0],[0,2,1,0]],[[1,0,2,1],[3,3,3,1],[2,3,2,0],[0,2,1,0]],[[1,0,2,1],[2,4,3,1],[2,3,2,0],[0,2,1,0]],[[1,0,2,1],[2,3,3,1],[3,3,2,0],[0,2,1,0]],[[1,2,1,1],[1,1,4,2],[0,3,3,0],[1,2,1,1]],[[1,2,1,2],[1,1,3,2],[0,3,3,0],[1,2,1,1]],[[1,2,1,1],[1,1,3,2],[0,3,3,0],[1,1,2,2]],[[1,2,1,1],[1,1,3,2],[0,3,3,0],[1,1,3,1]],[[1,2,1,1],[1,1,3,2],[0,3,4,0],[1,1,2,1]],[[1,2,1,1],[1,1,3,2],[0,4,3,0],[1,1,2,1]],[[1,2,1,1],[1,1,3,3],[0,3,3,0],[1,1,2,1]],[[1,2,1,1],[1,1,4,2],[0,3,3,0],[1,1,2,1]],[[1,2,1,2],[1,1,3,2],[0,3,3,0],[1,1,2,1]],[[2,0,2,1],[2,3,3,1],[2,3,2,0],[1,0,1,1]],[[1,0,3,1],[2,3,3,1],[2,3,2,0],[1,0,1,1]],[[1,0,2,2],[2,3,3,1],[2,3,2,0],[1,0,1,1]],[[1,0,2,1],[3,3,3,1],[2,3,2,0],[1,0,1,1]],[[1,0,2,1],[2,4,3,1],[2,3,2,0],[1,0,1,1]],[[1,0,2,1],[2,3,4,1],[2,3,2,0],[1,0,1,1]],[[1,0,2,1],[2,3,3,1],[3,3,2,0],[1,0,1,1]],[[2,0,2,1],[2,3,3,1],[2,3,2,0],[1,1,1,0]],[[1,0,2,1],[3,3,3,1],[2,3,2,0],[1,1,1,0]],[[1,0,2,1],[2,4,3,1],[2,3,2,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[3,3,2,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,1],[2,3,2,0],[2,1,1,0]],[[2,0,2,1],[2,3,3,1],[2,3,2,0],[1,2,0,0]],[[1,0,2,1],[3,3,3,1],[2,3,2,0],[1,2,0,0]],[[1,0,2,1],[2,4,3,1],[2,3,2,0],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[3,3,2,0],[1,2,0,0]],[[1,0,2,1],[2,3,3,1],[2,3,2,0],[2,2,0,0]],[[1,2,1,1],[1,1,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,1,1],[1,1,3,3],[0,3,2,2],[1,2,1,0]],[[1,2,1,1],[1,1,4,2],[0,3,2,2],[1,2,1,0]],[[1,2,1,2],[1,1,3,2],[0,3,2,2],[1,2,1,0]],[[1,2,1,1],[1,1,3,2],[0,3,2,2],[1,2,0,2]],[[1,2,1,1],[1,1,3,2],[0,3,2,3],[1,2,0,1]],[[1,2,1,1],[1,1,3,3],[0,3,2,2],[1,2,0,1]],[[1,2,1,1],[1,1,4,2],[0,3,2,2],[1,2,0,1]],[[1,2,1,2],[1,1,3,2],[0,3,2,2],[1,2,0,1]],[[1,2,1,1],[1,1,3,2],[0,3,2,3],[1,1,2,0]],[[1,2,1,1],[1,1,3,3],[0,3,2,2],[1,1,2,0]],[[1,2,1,1],[1,1,4,2],[0,3,2,2],[1,1,2,0]],[[1,2,1,2],[1,1,3,2],[0,3,2,2],[1,1,2,0]],[[1,2,1,1],[1,1,3,2],[0,3,2,2],[1,1,1,2]],[[1,2,1,1],[1,1,3,2],[0,3,2,3],[1,1,1,1]],[[1,2,1,1],[1,1,3,3],[0,3,2,2],[1,1,1,1]],[[1,2,1,1],[1,1,4,2],[0,3,2,2],[1,1,1,1]],[[1,2,1,2],[1,1,3,2],[0,3,2,2],[1,1,1,1]],[[1,2,1,1],[1,1,3,2],[0,3,2,2],[1,0,2,2]],[[1,2,1,1],[1,1,3,2],[0,3,2,3],[1,0,2,1]],[[1,2,1,1],[1,1,3,3],[0,3,2,2],[1,0,2,1]],[[1,2,1,1],[1,1,4,2],[0,3,2,2],[1,0,2,1]],[[1,2,1,2],[1,1,3,2],[0,3,2,2],[1,0,2,1]],[[1,2,1,1],[1,1,3,2],[0,3,2,1],[1,2,3,0]],[[1,2,1,1],[1,1,3,2],[0,3,2,1],[1,3,2,0]],[[1,2,1,1],[1,1,3,2],[0,3,2,1],[2,2,2,0]],[[1,2,1,1],[1,1,3,2],[0,4,2,1],[1,2,2,0]],[[1,2,1,1],[1,1,3,2],[0,3,2,0],[1,2,2,2]],[[1,2,1,1],[1,1,3,2],[0,3,2,0],[1,2,3,1]],[[1,2,1,1],[1,1,3,2],[0,3,2,0],[1,3,2,1]],[[1,2,1,1],[1,1,3,2],[0,3,2,0],[2,2,2,1]],[[1,2,1,1],[1,1,3,2],[0,4,2,0],[1,2,2,1]],[[1,2,1,1],[1,1,3,2],[0,3,1,2],[1,1,2,2]],[[1,2,1,1],[1,1,3,2],[0,3,1,2],[1,1,3,1]],[[1,2,1,1],[1,1,3,2],[0,3,1,3],[1,1,2,1]],[[1,2,1,1],[1,1,3,3],[0,3,1,2],[1,1,2,1]],[[1,2,1,1],[1,1,4,2],[0,3,1,2],[1,1,2,1]],[[1,2,1,2],[1,1,3,2],[0,3,1,2],[1,1,2,1]],[[1,2,1,1],[1,1,3,2],[0,3,0,2],[1,2,2,2]],[[1,2,1,1],[1,1,3,2],[0,3,0,2],[1,2,3,1]],[[1,2,1,1],[1,1,3,2],[0,3,0,2],[1,3,2,1]],[[1,2,1,1],[1,1,3,2],[0,3,0,2],[2,2,2,1]],[[1,2,1,1],[1,1,3,2],[0,3,0,3],[1,2,2,1]],[[2,0,2,1],[2,3,3,1],[2,3,2,1],[1,0,0,1]],[[1,0,3,1],[2,3,3,1],[2,3,2,1],[1,0,0,1]],[[1,0,2,2],[2,3,3,1],[2,3,2,1],[1,0,0,1]],[[1,0,2,1],[3,3,3,1],[2,3,2,1],[1,0,0,1]],[[1,0,2,1],[2,4,3,1],[2,3,2,1],[1,0,0,1]],[[1,0,2,1],[2,3,4,1],[2,3,2,1],[1,0,0,1]],[[1,0,2,1],[2,3,3,1],[3,3,2,1],[1,0,0,1]],[[2,0,2,1],[2,3,3,1],[2,3,2,1],[1,0,1,0]],[[1,0,3,1],[2,3,3,1],[2,3,2,1],[1,0,1,0]],[[1,0,2,2],[2,3,3,1],[2,3,2,1],[1,0,1,0]],[[1,0,2,1],[3,3,3,1],[2,3,2,1],[1,0,1,0]],[[1,0,2,1],[2,4,3,1],[2,3,2,1],[1,0,1,0]],[[1,0,2,1],[2,3,4,1],[2,3,2,1],[1,0,1,0]],[[1,0,2,1],[2,3,3,1],[3,3,2,1],[1,0,1,0]],[[1,2,1,1],[1,1,3,2],[0,4,0,2],[1,2,2,1]],[[1,2,1,1],[1,1,3,3],[0,3,0,2],[1,2,2,1]],[[1,2,1,1],[1,1,4,2],[0,3,0,2],[1,2,2,1]],[[1,2,1,2],[1,1,3,2],[0,3,0,2],[1,2,2,1]],[[1,2,1,1],[1,1,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,1,1],[1,1,3,2],[0,2,3,1],[1,3,2,0]],[[1,2,1,1],[1,1,3,2],[0,2,3,1],[2,2,2,0]],[[1,2,1,1],[1,1,3,2],[0,2,4,1],[1,2,2,0]],[[1,2,1,1],[1,1,3,3],[0,2,3,1],[1,2,2,0]],[[1,2,1,1],[1,1,4,2],[0,2,3,1],[1,2,2,0]],[[1,2,1,2],[1,1,3,2],[0,2,3,1],[1,2,2,0]],[[1,2,1,1],[1,1,3,2],[0,2,4,1],[1,2,1,1]],[[1,2,1,1],[1,1,3,3],[0,2,3,1],[1,2,1,1]],[[1,2,1,1],[1,1,4,2],[0,2,3,1],[1,2,1,1]],[[1,2,1,2],[1,1,3,2],[0,2,3,1],[1,2,1,1]],[[1,2,1,1],[1,1,3,2],[0,2,3,0],[1,2,2,2]],[[1,2,1,1],[1,1,3,2],[0,2,3,0],[1,2,3,1]],[[1,2,1,1],[1,1,3,2],[0,2,3,0],[1,3,2,1]],[[1,2,1,1],[1,1,3,2],[0,2,3,0],[2,2,2,1]],[[1,2,1,1],[1,1,3,2],[0,2,4,0],[1,2,2,1]],[[1,2,1,1],[1,1,3,3],[0,2,3,0],[1,2,2,1]],[[1,2,1,1],[1,1,4,2],[0,2,3,0],[1,2,2,1]],[[1,2,1,2],[1,1,3,2],[0,2,3,0],[1,2,2,1]],[[1,2,1,1],[1,1,3,2],[0,2,2,3],[1,2,2,0]],[[1,2,1,1],[1,1,3,3],[0,2,2,2],[1,2,2,0]],[[1,2,1,1],[1,1,4,2],[0,2,2,2],[1,2,2,0]],[[1,2,1,2],[1,1,3,2],[0,2,2,2],[1,2,2,0]],[[1,2,1,1],[1,1,3,2],[0,2,2,2],[1,2,1,2]],[[1,2,1,1],[1,1,3,2],[0,2,2,3],[1,2,1,1]],[[1,2,1,1],[1,1,3,3],[0,2,2,2],[1,2,1,1]],[[1,2,1,1],[1,1,4,2],[0,2,2,2],[1,2,1,1]],[[1,2,1,2],[1,1,3,2],[0,2,2,2],[1,2,1,1]],[[1,2,1,1],[1,1,3,2],[0,2,1,2],[1,2,2,2]],[[1,2,1,1],[1,1,3,2],[0,2,1,2],[1,2,3,1]],[[1,2,1,1],[1,1,3,2],[0,2,1,2],[1,3,2,1]],[[1,2,1,1],[1,1,3,2],[0,2,1,2],[2,2,2,1]],[[1,2,1,1],[1,1,3,2],[0,2,1,3],[1,2,2,1]],[[1,2,1,1],[1,1,3,3],[0,2,1,2],[1,2,2,1]],[[1,2,1,1],[1,1,4,2],[0,2,1,2],[1,2,2,1]],[[1,2,1,2],[1,1,3,2],[0,2,1,2],[1,2,2,1]],[[1,2,1,1],[1,1,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,1,1],[1,1,3,2],[0,0,3,2],[1,2,3,1]],[[1,2,1,1],[1,1,3,2],[0,0,3,3],[1,2,2,1]],[[1,2,1,1],[1,1,3,3],[0,0,3,2],[1,2,2,1]],[[1,2,1,2],[1,1,3,2],[0,0,3,2],[1,2,2,1]],[[1,2,1,1],[1,1,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[1,1,3,1],[2,0,3,2],[1,3,2,0]],[[1,2,1,1],[1,1,3,1],[2,0,3,2],[2,2,2,0]],[[1,2,1,1],[1,1,3,1],[2,0,3,3],[1,2,2,0]],[[1,2,1,1],[1,1,3,1],[2,0,4,2],[1,2,2,0]],[[1,2,1,1],[1,1,3,1],[3,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,1,4,1],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,1,3,1],[2,0,3,2],[1,2,1,2]],[[1,2,1,1],[1,1,3,1],[2,0,3,3],[1,2,1,1]],[[1,2,1,1],[1,1,3,1],[2,0,4,2],[1,2,1,1]],[[1,2,1,1],[1,1,4,1],[2,0,3,2],[1,2,1,1]],[[1,2,1,1],[1,1,3,1],[2,0,3,1],[1,2,2,2]],[[1,2,1,1],[1,1,3,1],[2,0,3,1],[1,2,3,1]],[[1,2,1,1],[1,1,3,1],[2,0,3,1],[1,3,2,1]],[[1,2,1,1],[1,1,3,1],[2,0,3,1],[2,2,2,1]],[[1,2,1,1],[1,1,3,1],[2,0,4,1],[1,2,2,1]],[[1,2,1,1],[1,1,3,1],[3,0,3,1],[1,2,2,1]],[[1,2,1,1],[1,1,4,1],[2,0,3,1],[1,2,2,1]],[[1,2,1,1],[1,1,3,1],[2,0,2,2],[1,2,2,2]],[[1,2,1,1],[1,1,3,1],[2,0,2,2],[1,2,3,1]],[[1,2,1,1],[1,1,3,1],[2,0,2,2],[1,3,2,1]],[[1,2,1,1],[1,1,3,1],[2,0,2,2],[2,2,2,1]],[[1,2,1,1],[1,1,3,1],[2,0,2,3],[1,2,2,1]],[[1,2,1,1],[1,1,3,1],[3,0,2,2],[1,2,2,1]],[[1,2,1,1],[1,1,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[1,1,3,1],[1,3,4,2],[1,1,1,0]],[[1,2,1,1],[1,1,3,1],[1,4,3,2],[1,1,1,0]],[[1,2,1,1],[1,1,4,1],[1,3,3,2],[1,1,1,0]],[[1,2,1,1],[1,1,3,1],[1,3,3,2],[1,1,0,2]],[[1,2,1,1],[1,1,3,1],[1,3,3,3],[1,1,0,1]],[[1,2,1,1],[1,1,3,1],[1,3,4,2],[1,1,0,1]],[[1,2,1,1],[1,1,3,1],[1,4,3,2],[1,1,0,1]],[[1,2,1,1],[1,1,4,1],[1,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,1,3,1],[1,3,3,2],[1,0,3,0]],[[1,2,1,1],[1,1,3,1],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[1,1,3,1],[1,3,4,2],[1,0,2,0]],[[1,2,1,1],[1,1,3,1],[1,4,3,2],[1,0,2,0]],[[1,2,1,1],[1,1,4,1],[1,3,3,2],[1,0,2,0]],[[1,2,1,1],[1,1,3,1],[1,3,3,2],[1,0,1,2]],[[1,2,1,1],[1,1,3,1],[1,3,3,3],[1,0,1,1]],[[1,2,1,1],[1,1,3,1],[1,3,4,2],[1,0,1,1]],[[1,2,1,1],[1,1,3,1],[1,4,3,2],[1,0,1,1]],[[1,2,1,1],[1,1,4,1],[1,3,3,2],[1,0,1,1]],[[1,2,1,1],[1,1,3,1],[1,3,3,2],[0,3,1,0]],[[2,0,2,1],[2,3,3,1],[2,3,3,0],[1,0,1,0]],[[1,0,3,1],[2,3,3,1],[2,3,3,0],[1,0,1,0]],[[1,0,2,2],[2,3,3,1],[2,3,3,0],[1,0,1,0]],[[1,0,2,1],[3,3,3,1],[2,3,3,0],[1,0,1,0]],[[1,0,2,1],[2,4,3,1],[2,3,3,0],[1,0,1,0]],[[1,0,2,1],[2,3,4,1],[2,3,3,0],[1,0,1,0]],[[1,0,2,1],[2,3,3,1],[3,3,3,0],[1,0,1,0]],[[1,2,1,1],[1,1,3,1],[1,3,3,3],[0,2,1,0]],[[1,2,1,1],[1,1,3,1],[1,3,4,2],[0,2,1,0]],[[1,2,1,1],[1,1,3,1],[1,4,3,2],[0,2,1,0]],[[1,2,1,1],[1,1,4,1],[1,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,1,3,1],[1,3,3,2],[0,2,0,2]],[[1,2,1,1],[1,1,3,1],[1,3,3,2],[0,3,0,1]],[[1,2,1,1],[1,1,3,1],[1,3,3,3],[0,2,0,1]],[[1,2,1,1],[1,1,3,1],[1,3,4,2],[0,2,0,1]],[[1,2,1,1],[1,1,3,1],[1,4,3,2],[0,2,0,1]],[[1,2,1,1],[1,1,4,1],[1,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,1,3,1],[1,3,3,2],[0,1,3,0]],[[1,2,1,1],[1,1,3,1],[1,3,3,3],[0,1,2,0]],[[1,2,1,1],[1,1,3,1],[1,3,4,2],[0,1,2,0]],[[1,2,1,1],[1,1,3,1],[1,4,3,2],[0,1,2,0]],[[1,2,1,1],[1,1,4,1],[1,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,1,3,1],[1,3,3,2],[0,1,1,2]],[[1,2,1,1],[1,1,3,1],[1,3,3,3],[0,1,1,1]],[[1,2,1,1],[1,1,3,1],[1,3,4,2],[0,1,1,1]],[[1,2,1,1],[1,1,3,1],[1,4,3,2],[0,1,1,1]],[[1,2,1,1],[1,1,4,1],[1,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,1,3,1],[1,3,3,2],[0,0,2,2]],[[1,2,1,1],[1,1,3,1],[1,3,3,3],[0,0,2,1]],[[1,2,1,1],[1,1,3,1],[1,3,4,2],[0,0,2,1]],[[1,2,1,1],[1,1,4,1],[1,3,3,2],[0,0,2,1]],[[1,2,1,1],[1,1,3,1],[1,3,3,1],[1,0,2,2]],[[1,2,1,1],[1,1,3,1],[1,3,3,1],[1,0,3,1]],[[1,2,1,1],[1,1,3,1],[1,3,4,1],[1,0,2,1]],[[1,2,1,1],[1,1,3,1],[1,4,3,1],[1,0,2,1]],[[1,2,1,1],[1,1,4,1],[1,3,3,1],[1,0,2,1]],[[1,2,1,1],[1,1,3,1],[1,3,3,1],[0,3,1,1]],[[1,2,1,1],[1,1,3,1],[1,3,4,1],[0,2,1,1]],[[1,2,1,1],[1,1,3,1],[1,4,3,1],[0,2,1,1]],[[1,2,1,1],[1,1,4,1],[1,3,3,1],[0,2,1,1]],[[1,2,1,1],[1,1,3,1],[1,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,1,3,1],[1,3,3,1],[0,1,3,1]],[[1,2,1,1],[1,1,3,1],[1,3,4,1],[0,1,2,1]],[[1,2,1,1],[1,1,3,1],[1,4,3,1],[0,1,2,1]],[[1,2,1,1],[1,1,4,1],[1,3,3,1],[0,1,2,1]],[[1,2,1,1],[1,1,3,1],[1,3,2,2],[1,0,2,2]],[[1,2,1,1],[1,1,3,1],[1,3,2,2],[1,0,3,1]],[[1,2,1,1],[1,1,3,1],[1,3,2,3],[1,0,2,1]],[[1,2,1,1],[1,1,3,1],[1,3,2,2],[0,2,3,0]],[[1,2,1,1],[1,1,3,1],[1,3,2,2],[0,3,2,0]],[[1,2,1,1],[1,1,3,1],[1,4,2,2],[0,2,2,0]],[[1,2,1,1],[1,1,3,1],[1,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,1,3,1],[1,3,2,2],[0,1,3,1]],[[1,2,1,1],[1,1,3,1],[1,3,2,3],[0,1,2,1]],[[1,2,1,1],[1,1,3,1],[1,3,2,1],[0,2,2,2]],[[1,2,1,1],[1,1,3,1],[1,3,2,1],[0,2,3,1]],[[1,2,1,1],[1,1,3,1],[1,3,2,1],[0,3,2,1]],[[1,2,1,1],[1,1,3,1],[1,4,2,1],[0,2,2,1]],[[1,2,1,1],[1,1,3,1],[1,3,1,2],[0,2,2,2]],[[1,2,1,1],[1,1,3,1],[1,3,1,2],[0,2,3,1]],[[1,2,1,1],[1,1,3,1],[1,3,1,2],[0,3,2,1]],[[1,2,1,1],[1,1,3,1],[1,3,1,3],[0,2,2,1]],[[1,2,1,1],[1,1,3,1],[1,4,1,2],[0,2,2,1]],[[1,2,1,1],[1,1,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[1,1,3,1],[1,2,3,2],[0,3,2,0]],[[1,2,1,1],[1,1,3,1],[1,2,3,3],[0,2,2,0]],[[1,2,1,1],[1,1,3,1],[1,2,4,2],[0,2,2,0]],[[1,2,1,1],[1,1,4,1],[1,2,3,2],[0,2,2,0]],[[1,2,1,1],[1,1,3,1],[1,2,3,2],[0,2,1,2]],[[1,2,1,1],[1,1,3,1],[1,2,3,3],[0,2,1,1]],[[1,2,1,1],[1,1,3,1],[1,2,4,2],[0,2,1,1]],[[1,2,1,1],[1,1,4,1],[1,2,3,2],[0,2,1,1]],[[1,2,1,1],[1,1,3,1],[1,2,3,1],[0,2,2,2]],[[1,2,1,1],[1,1,3,1],[1,2,3,1],[0,2,3,1]],[[1,2,1,1],[1,1,3,1],[1,2,3,1],[0,3,2,1]],[[1,2,1,1],[1,1,3,1],[1,2,4,1],[0,2,2,1]],[[1,2,1,1],[1,1,4,1],[1,2,3,1],[0,2,2,1]],[[1,2,1,1],[1,1,3,1],[1,2,2,2],[0,2,2,2]],[[1,2,1,1],[1,1,3,1],[1,2,2,2],[0,2,3,1]],[[1,2,1,1],[1,1,3,1],[1,2,2,2],[0,3,2,1]],[[1,2,1,1],[1,1,3,1],[1,2,2,3],[0,2,2,1]],[[1,2,1,1],[1,1,3,1],[1,1,3,2],[0,2,2,2]],[[1,2,1,1],[1,1,3,1],[1,1,3,2],[0,2,3,1]],[[1,2,1,1],[1,1,3,1],[1,1,3,3],[0,2,2,1]],[[1,2,1,1],[1,1,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[1,1,3,1],[0,3,3,2],[2,2,1,0]],[[1,2,1,1],[1,1,3,1],[0,3,3,3],[1,2,1,0]],[[1,2,1,1],[1,1,3,1],[0,3,4,2],[1,2,1,0]],[[1,2,1,1],[1,1,3,1],[0,4,3,2],[1,2,1,0]],[[1,2,1,1],[1,1,4,1],[0,3,3,2],[1,2,1,0]],[[1,2,1,1],[1,1,3,1],[0,3,3,2],[1,2,0,2]],[[1,2,1,1],[1,1,3,1],[0,3,3,2],[1,3,0,1]],[[1,2,1,1],[1,1,3,1],[0,3,3,2],[2,2,0,1]],[[1,2,1,1],[1,1,3,1],[0,3,3,3],[1,2,0,1]],[[1,2,1,1],[1,1,3,1],[0,3,4,2],[1,2,0,1]],[[1,2,1,1],[1,1,3,1],[0,4,3,2],[1,2,0,1]],[[1,2,1,1],[1,1,4,1],[0,3,3,2],[1,2,0,1]],[[1,2,1,1],[1,1,3,1],[0,3,3,2],[1,1,3,0]],[[2,0,2,1],[2,3,3,1],[2,3,3,1],[1,0,0,0]],[[1,0,3,1],[2,3,3,1],[2,3,3,1],[1,0,0,0]],[[1,0,2,2],[2,3,3,1],[2,3,3,1],[1,0,0,0]],[[1,0,2,1],[3,3,3,1],[2,3,3,1],[1,0,0,0]],[[1,0,2,1],[2,4,3,1],[2,3,3,1],[1,0,0,0]],[[1,0,2,1],[2,3,4,1],[2,3,3,1],[1,0,0,0]],[[1,0,2,1],[2,3,3,1],[3,3,3,1],[1,0,0,0]],[[1,2,1,1],[1,1,3,1],[0,3,3,3],[1,1,2,0]],[[1,2,1,1],[1,1,3,1],[0,3,4,2],[1,1,2,0]],[[1,2,1,1],[1,1,3,1],[0,4,3,2],[1,1,2,0]],[[1,2,1,1],[1,1,4,1],[0,3,3,2],[1,1,2,0]],[[1,2,1,1],[1,1,3,1],[0,3,3,2],[1,1,1,2]],[[1,2,1,1],[1,1,3,1],[0,3,3,3],[1,1,1,1]],[[1,2,1,1],[1,1,3,1],[0,3,4,2],[1,1,1,1]],[[1,2,1,1],[1,1,3,1],[0,4,3,2],[1,1,1,1]],[[1,2,1,1],[1,1,4,1],[0,3,3,2],[1,1,1,1]],[[1,2,1,1],[1,1,3,1],[0,3,3,2],[1,0,2,2]],[[1,2,1,1],[1,1,3,1],[0,3,3,3],[1,0,2,1]],[[1,2,1,1],[1,1,3,1],[0,3,4,2],[1,0,2,1]],[[1,2,1,1],[1,1,4,1],[0,3,3,2],[1,0,2,1]],[[1,2,1,1],[1,1,3,1],[0,3,3,1],[1,3,1,1]],[[1,2,1,1],[1,1,3,1],[0,3,3,1],[2,2,1,1]],[[1,2,1,1],[1,1,3,1],[0,3,4,1],[1,2,1,1]],[[1,2,1,1],[1,1,3,1],[0,4,3,1],[1,2,1,1]],[[1,2,1,1],[1,1,4,1],[0,3,3,1],[1,2,1,1]],[[1,2,1,1],[1,1,3,1],[0,3,3,1],[1,1,2,2]],[[1,2,1,1],[1,1,3,1],[0,3,3,1],[1,1,3,1]],[[1,2,1,1],[1,1,3,1],[0,3,4,1],[1,1,2,1]],[[1,2,1,1],[1,1,3,1],[0,4,3,1],[1,1,2,1]],[[1,2,1,1],[1,1,4,1],[0,3,3,1],[1,1,2,1]],[[1,2,1,1],[1,1,3,1],[0,3,2,2],[1,2,3,0]],[[1,2,1,1],[1,1,3,1],[0,3,2,2],[1,3,2,0]],[[1,2,1,1],[1,1,3,1],[0,3,2,2],[2,2,2,0]],[[1,2,1,1],[1,1,3,1],[0,4,2,2],[1,2,2,0]],[[1,2,1,1],[1,1,3,1],[0,3,2,2],[1,1,2,2]],[[1,2,1,1],[1,1,3,1],[0,3,2,2],[1,1,3,1]],[[1,2,1,1],[1,1,3,1],[0,3,2,3],[1,1,2,1]],[[1,2,1,1],[1,1,3,1],[0,3,2,1],[1,2,2,2]],[[1,2,1,1],[1,1,3,1],[0,3,2,1],[1,2,3,1]],[[1,2,1,1],[1,1,3,1],[0,3,2,1],[1,3,2,1]],[[1,2,1,1],[1,1,3,1],[0,3,2,1],[2,2,2,1]],[[1,2,1,1],[1,1,3,1],[0,4,2,1],[1,2,2,1]],[[1,2,1,1],[1,1,3,1],[0,3,1,2],[1,2,2,2]],[[1,2,1,1],[1,1,3,1],[0,3,1,2],[1,2,3,1]],[[1,2,1,1],[1,1,3,1],[0,3,1,2],[1,3,2,1]],[[1,2,1,1],[1,1,3,1],[0,3,1,2],[2,2,2,1]],[[1,2,1,1],[1,1,3,1],[0,3,1,3],[1,2,2,1]],[[1,2,1,1],[1,1,3,1],[0,4,1,2],[1,2,2,1]],[[1,2,1,1],[1,1,3,1],[0,2,3,2],[1,2,3,0]],[[1,2,1,1],[1,1,3,1],[0,2,3,2],[1,3,2,0]],[[1,2,1,1],[1,1,3,1],[0,2,3,2],[2,2,2,0]],[[1,2,1,1],[1,1,3,1],[0,2,3,3],[1,2,2,0]],[[1,2,1,1],[1,1,3,1],[0,2,4,2],[1,2,2,0]],[[1,2,1,1],[1,1,4,1],[0,2,3,2],[1,2,2,0]],[[1,2,1,1],[1,1,3,1],[0,2,3,2],[1,2,1,2]],[[1,2,1,1],[1,1,3,1],[0,2,3,3],[1,2,1,1]],[[1,2,1,1],[1,1,3,1],[0,2,4,2],[1,2,1,1]],[[1,2,1,1],[1,1,4,1],[0,2,3,2],[1,2,1,1]],[[1,2,1,1],[1,1,3,1],[0,2,3,1],[1,2,2,2]],[[1,2,1,1],[1,1,3,1],[0,2,3,1],[1,2,3,1]],[[1,2,1,1],[1,1,3,1],[0,2,3,1],[1,3,2,1]],[[1,2,1,1],[1,1,3,1],[0,2,3,1],[2,2,2,1]],[[1,2,1,1],[1,1,3,1],[0,2,4,1],[1,2,2,1]],[[1,2,1,1],[1,1,4,1],[0,2,3,1],[1,2,2,1]],[[1,2,1,1],[1,1,3,1],[0,2,2,2],[1,2,2,2]],[[1,2,1,1],[1,1,3,1],[0,2,2,2],[1,2,3,1]],[[1,2,1,1],[1,1,3,1],[0,2,2,2],[1,3,2,1]],[[1,2,1,1],[1,1,3,1],[0,2,2,2],[2,2,2,1]],[[1,2,1,1],[1,1,3,1],[0,2,2,3],[1,2,2,1]],[[1,2,1,1],[1,1,3,1],[0,1,3,2],[1,2,2,2]],[[1,2,1,1],[1,1,3,1],[0,1,3,2],[1,2,3,1]],[[1,2,1,1],[1,1,3,1],[0,1,3,3],[1,2,2,1]],[[1,2,1,1],[1,1,3,0],[1,3,3,2],[0,1,2,2]],[[1,2,1,1],[1,1,3,0],[1,3,3,2],[0,1,3,1]],[[1,2,1,1],[1,1,3,0],[1,3,4,2],[0,1,2,1]],[[1,2,1,1],[1,1,3,0],[1,2,3,2],[0,2,2,2]],[[1,2,1,1],[1,1,3,0],[1,2,3,2],[0,2,3,1]],[[1,2,1,1],[1,1,3,0],[1,2,4,2],[0,2,2,1]],[[1,2,1,1],[1,1,3,0],[0,3,3,2],[1,1,2,2]],[[1,2,1,1],[1,1,3,0],[0,3,3,2],[1,1,3,1]],[[1,2,1,1],[1,1,3,0],[0,3,4,2],[1,1,2,1]],[[1,2,1,1],[1,1,3,0],[0,2,3,2],[1,2,2,2]],[[1,2,1,1],[1,1,3,0],[0,2,3,2],[1,2,3,1]],[[1,2,1,1],[1,1,3,0],[0,2,3,2],[1,3,2,1]],[[1,2,1,1],[1,1,3,0],[0,2,4,2],[1,2,2,1]],[[1,2,1,1],[1,1,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[1,1,2,2],[2,0,3,2],[1,3,2,0]],[[1,2,1,1],[1,1,2,2],[2,0,3,2],[2,2,2,0]],[[1,2,1,1],[1,1,2,2],[2,0,3,3],[1,2,2,0]],[[1,2,1,1],[1,1,2,2],[2,0,4,2],[1,2,2,0]],[[1,2,1,1],[1,1,2,2],[3,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,1,2,3],[2,0,3,2],[1,2,2,0]],[[1,2,1,2],[1,1,2,2],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[1,1,2,2],[2,0,3,2],[1,2,1,2]],[[1,2,1,1],[1,1,2,2],[2,0,3,3],[1,2,1,1]],[[1,2,1,1],[1,1,2,2],[2,0,4,2],[1,2,1,1]],[[1,2,1,1],[1,1,2,3],[2,0,3,2],[1,2,1,1]],[[1,2,1,2],[1,1,2,2],[2,0,3,2],[1,2,1,1]],[[1,2,1,1],[1,1,2,2],[2,0,3,1],[1,2,2,2]],[[1,2,1,1],[1,1,2,2],[2,0,3,1],[1,2,3,1]],[[1,2,1,1],[1,1,2,2],[2,0,3,1],[1,3,2,1]],[[1,2,1,1],[1,1,2,2],[2,0,3,1],[2,2,2,1]],[[1,2,1,1],[1,1,2,2],[2,0,4,1],[1,2,2,1]],[[1,2,1,1],[1,1,2,2],[3,0,3,1],[1,2,2,1]],[[1,2,1,1],[1,1,2,2],[2,0,2,2],[1,2,2,2]],[[1,2,1,1],[1,1,2,2],[2,0,2,2],[1,2,3,1]],[[1,2,1,1],[1,1,2,2],[2,0,2,2],[1,3,2,1]],[[1,2,1,1],[1,1,2,2],[2,0,2,2],[2,2,2,1]],[[1,2,1,1],[1,1,2,2],[2,0,2,3],[1,2,2,1]],[[1,2,1,1],[1,1,2,2],[3,0,2,2],[1,2,2,1]],[[1,2,1,1],[1,1,2,3],[2,0,2,2],[1,2,2,1]],[[1,2,1,2],[1,1,2,2],[2,0,2,2],[1,2,2,1]],[[1,2,1,1],[1,1,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[1,1,2,2],[1,3,4,2],[1,1,1,0]],[[1,2,1,1],[1,1,2,2],[1,4,3,2],[1,1,1,0]],[[1,2,1,1],[1,1,2,3],[1,3,3,2],[1,1,1,0]],[[1,2,1,2],[1,1,2,2],[1,3,3,2],[1,1,1,0]],[[1,2,1,1],[1,1,2,2],[1,3,3,2],[1,1,0,2]],[[1,2,1,1],[1,1,2,2],[1,3,3,3],[1,1,0,1]],[[1,2,1,1],[1,1,2,2],[1,3,4,2],[1,1,0,1]],[[1,2,1,1],[1,1,2,2],[1,4,3,2],[1,1,0,1]],[[1,2,1,1],[1,1,2,3],[1,3,3,2],[1,1,0,1]],[[1,2,1,2],[1,1,2,2],[1,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,1,2,2],[1,3,3,2],[1,0,3,0]],[[1,2,1,1],[1,1,2,2],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[1,1,2,2],[1,3,4,2],[1,0,2,0]],[[1,2,1,1],[1,1,2,2],[1,4,3,2],[1,0,2,0]],[[1,2,1,1],[1,1,2,3],[1,3,3,2],[1,0,2,0]],[[1,2,1,2],[1,1,2,2],[1,3,3,2],[1,0,2,0]],[[1,2,1,1],[1,1,2,2],[1,3,3,2],[1,0,1,2]],[[1,2,1,1],[1,1,2,2],[1,3,3,3],[1,0,1,1]],[[1,2,1,1],[1,1,2,2],[1,3,4,2],[1,0,1,1]],[[1,2,1,1],[1,1,2,2],[1,4,3,2],[1,0,1,1]],[[1,2,1,1],[1,1,2,3],[1,3,3,2],[1,0,1,1]],[[1,2,1,2],[1,1,2,2],[1,3,3,2],[1,0,1,1]],[[1,2,1,1],[1,1,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[1,1,2,2],[1,3,3,3],[0,2,1,0]],[[1,2,1,1],[1,1,2,2],[1,3,4,2],[0,2,1,0]],[[1,2,1,1],[1,1,2,2],[1,4,3,2],[0,2,1,0]],[[1,2,1,1],[1,1,2,3],[1,3,3,2],[0,2,1,0]],[[1,2,1,2],[1,1,2,2],[1,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,1,2,2],[1,3,3,2],[0,2,0,2]],[[1,2,1,1],[1,1,2,2],[1,3,3,2],[0,3,0,1]],[[1,2,1,1],[1,1,2,2],[1,3,3,3],[0,2,0,1]],[[1,2,1,1],[1,1,2,2],[1,3,4,2],[0,2,0,1]],[[1,2,1,1],[1,1,2,2],[1,4,3,2],[0,2,0,1]],[[1,2,1,1],[1,1,2,3],[1,3,3,2],[0,2,0,1]],[[1,2,1,2],[1,1,2,2],[1,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,1,2,2],[1,3,3,2],[0,1,3,0]],[[1,2,1,1],[1,1,2,2],[1,3,3,3],[0,1,2,0]],[[1,2,1,1],[1,1,2,2],[1,3,4,2],[0,1,2,0]],[[1,2,1,1],[1,1,2,2],[1,4,3,2],[0,1,2,0]],[[1,2,1,1],[1,1,2,3],[1,3,3,2],[0,1,2,0]],[[1,2,1,2],[1,1,2,2],[1,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,1,2,2],[1,3,3,2],[0,1,1,2]],[[1,2,1,1],[1,1,2,2],[1,3,3,3],[0,1,1,1]],[[1,0,2,2],[2,3,3,2],[0,0,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,4,2],[0,0,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,3],[0,0,2,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,2],[0,0,2,3],[0,2,2,1]],[[1,0,2,1],[2,3,3,2],[0,0,2,2],[0,2,2,2]],[[1,0,2,2],[2,3,3,2],[0,0,3,2],[0,1,2,1]],[[1,0,2,1],[2,3,4,2],[0,0,3,2],[0,1,2,1]],[[1,0,2,1],[2,3,3,3],[0,0,3,2],[0,1,2,1]],[[1,0,2,1],[2,3,3,2],[0,0,3,3],[0,1,2,1]],[[1,0,2,1],[2,3,3,2],[0,0,3,2],[0,1,2,2]],[[1,0,2,2],[2,3,3,2],[0,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,4,2],[0,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,3],[0,0,3,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,2],[0,0,3,3],[0,2,1,1]],[[1,0,2,1],[2,3,3,2],[0,0,3,2],[0,2,1,2]],[[1,0,2,2],[2,3,3,2],[0,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,4,2],[0,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,3],[0,0,3,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,2],[0,0,3,3],[0,2,2,0]],[[1,2,1,1],[1,1,2,2],[1,3,4,2],[0,1,1,1]],[[1,2,1,1],[1,1,2,2],[1,4,3,2],[0,1,1,1]],[[1,2,1,1],[1,1,2,3],[1,3,3,2],[0,1,1,1]],[[1,2,1,2],[1,1,2,2],[1,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,1,2,2],[1,3,3,2],[0,0,2,2]],[[1,2,1,1],[1,1,2,2],[1,3,3,3],[0,0,2,1]],[[1,2,1,1],[1,1,2,2],[1,3,4,2],[0,0,2,1]],[[1,0,3,1],[2,3,3,2],[0,1,0,2],[1,2,2,1]],[[1,0,2,2],[2,3,3,2],[0,1,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,3,3],[0,1,0,2],[1,2,2,1]],[[1,0,2,2],[2,3,3,2],[0,1,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,4,2],[0,1,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,3],[0,1,1,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,2],[0,1,1,3],[0,2,2,1]],[[1,0,2,1],[2,3,3,2],[0,1,1,2],[0,2,2,2]],[[1,0,3,1],[2,3,3,2],[0,1,1,2],[1,2,1,1]],[[1,0,2,2],[2,3,3,2],[0,1,1,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,3],[0,1,1,2],[1,2,1,1]],[[1,0,3,1],[2,3,3,2],[0,1,1,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,2],[0,1,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,3],[0,1,1,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,2],[0,1,2,2],[0,2,1,1]],[[1,0,2,1],[2,3,4,2],[0,1,2,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,3],[0,1,2,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,2],[0,1,2,3],[0,2,1,1]],[[1,0,2,1],[2,3,3,2],[0,1,2,2],[0,2,1,2]],[[1,0,2,2],[2,3,3,2],[0,1,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,4,2],[0,1,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,3],[0,1,2,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,2],[0,1,2,3],[0,2,2,0]],[[1,2,1,1],[1,1,2,3],[1,3,3,2],[0,0,2,1]],[[1,2,1,2],[1,1,2,2],[1,3,3,2],[0,0,2,1]],[[1,2,1,1],[1,1,2,2],[1,3,3,1],[1,0,2,2]],[[1,2,1,1],[1,1,2,2],[1,3,3,1],[1,0,3,1]],[[1,0,2,2],[2,3,3,2],[0,1,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,4,2],[0,1,3,0],[0,2,2,1]],[[1,0,2,1],[2,3,3,3],[0,1,3,0],[0,2,2,1]],[[1,0,3,1],[2,3,3,2],[0,1,3,0],[1,2,1,1]],[[1,0,2,2],[2,3,3,2],[0,1,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,4,2],[0,1,3,0],[1,2,1,1]],[[2,0,2,1],[2,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,0,3,1],[2,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,0,2,2],[2,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,0,2,1],[3,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,0,2,1],[2,4,3,2],[0,1,3,0],[1,2,2,0]],[[1,0,2,1],[2,3,4,2],[0,1,3,0],[1,2,2,0]],[[1,0,2,2],[2,3,3,2],[0,1,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,4,2],[0,1,3,1],[0,2,1,1]],[[1,0,2,1],[2,3,3,3],[0,1,3,1],[0,2,1,1]],[[1,0,2,2],[2,3,3,2],[0,1,3,1],[0,2,2,0]],[[1,0,2,1],[2,3,4,2],[0,1,3,1],[0,2,2,0]],[[1,0,2,1],[2,3,3,3],[0,1,3,1],[0,2,2,0]],[[1,2,1,1],[1,1,2,2],[1,3,4,1],[1,0,2,1]],[[1,2,1,1],[1,1,2,2],[1,4,3,1],[1,0,2,1]],[[1,2,1,1],[1,1,2,2],[1,3,3,1],[0,3,1,1]],[[1,2,1,1],[1,1,2,2],[1,3,4,1],[0,2,1,1]],[[1,2,1,1],[1,1,2,2],[1,4,3,1],[0,2,1,1]],[[1,2,1,1],[1,1,2,2],[1,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,1,2,2],[1,3,3,1],[0,1,3,1]],[[1,0,2,2],[2,3,3,2],[0,1,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,4,2],[0,1,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,3],[0,1,3,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,2],[0,1,3,3],[0,0,2,1]],[[1,0,2,1],[2,3,3,2],[0,1,3,2],[0,0,2,2]],[[1,0,2,2],[2,3,3,2],[0,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,2],[0,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,3],[0,1,3,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,2],[0,1,3,3],[0,1,1,1]],[[1,0,2,1],[2,3,3,2],[0,1,3,2],[0,1,1,2]],[[1,0,2,2],[2,3,3,2],[0,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,2],[0,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,3],[0,1,3,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,2],[0,1,3,3],[0,1,2,0]],[[1,2,1,1],[1,1,2,2],[1,3,4,1],[0,1,2,1]],[[1,2,1,1],[1,1,2,2],[1,4,3,1],[0,1,2,1]],[[1,0,2,2],[2,3,3,2],[0,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,2],[0,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,3],[0,1,3,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,2],[0,1,3,3],[1,0,1,1]],[[1,0,2,2],[2,3,3,2],[0,1,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,2],[0,1,3,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,3],[0,1,3,2],[1,0,2,0]],[[1,2,1,1],[1,1,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,1,1],[1,1,2,2],[1,3,2,2],[1,0,3,1]],[[1,2,1,1],[1,1,2,2],[1,3,2,3],[1,0,2,1]],[[1,2,1,1],[1,1,2,3],[1,3,2,2],[1,0,2,1]],[[1,2,1,2],[1,1,2,2],[1,3,2,2],[1,0,2,1]],[[1,2,1,1],[1,1,2,2],[1,3,2,2],[0,2,3,0]],[[1,2,1,1],[1,1,2,2],[1,3,2,2],[0,3,2,0]],[[1,2,1,1],[1,1,2,2],[1,4,2,2],[0,2,2,0]],[[1,2,1,1],[1,1,2,2],[1,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,1,2,2],[1,3,2,2],[0,1,3,1]],[[1,2,1,1],[1,1,2,2],[1,3,2,3],[0,1,2,1]],[[1,2,1,1],[1,1,2,3],[1,3,2,2],[0,1,2,1]],[[1,2,1,2],[1,1,2,2],[1,3,2,2],[0,1,2,1]],[[1,2,1,1],[1,1,2,2],[1,3,2,1],[0,2,2,2]],[[1,2,1,1],[1,1,2,2],[1,3,2,1],[0,2,3,1]],[[1,2,1,1],[1,1,2,2],[1,3,2,1],[0,3,2,1]],[[1,2,1,1],[1,1,2,2],[1,4,2,1],[0,2,2,1]],[[1,0,3,1],[2,3,3,2],[0,2,0,2],[1,1,2,1]],[[1,0,2,2],[2,3,3,2],[0,2,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,3,3],[0,2,0,2],[1,1,2,1]],[[1,0,2,2],[2,3,3,2],[0,2,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,4,2],[0,2,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,3,3],[0,2,1,2],[0,1,2,1]],[[1,0,2,1],[2,3,3,2],[0,2,1,3],[0,1,2,1]],[[1,0,2,1],[2,3,3,2],[0,2,1,2],[0,1,2,2]],[[1,0,3,1],[2,3,3,2],[0,2,1,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,2],[0,2,1,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,3],[0,2,1,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,2],[0,2,1,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,2],[0,2,1,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,3],[0,2,1,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,2],[0,2,1,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,2],[0,2,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,3],[0,2,1,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,2],[0,2,1,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,2],[0,2,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,3],[0,2,1,2],[1,2,1,0]],[[1,2,1,1],[1,1,2,2],[1,3,1,2],[0,2,2,2]],[[1,2,1,1],[1,1,2,2],[1,3,1,2],[0,2,3,1]],[[1,2,1,1],[1,1,2,2],[1,3,1,2],[0,3,2,1]],[[1,2,1,1],[1,1,2,2],[1,3,1,3],[0,2,2,1]],[[1,2,1,1],[1,1,2,2],[1,4,1,2],[0,2,2,1]],[[1,2,1,1],[1,1,2,3],[1,3,1,2],[0,2,2,1]],[[1,2,1,2],[1,1,2,2],[1,3,1,2],[0,2,2,1]],[[1,0,2,2],[2,3,3,2],[0,2,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,4,2],[0,2,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,3],[0,2,2,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,2],[0,2,2,3],[0,0,2,1]],[[1,0,2,1],[2,3,3,2],[0,2,2,2],[0,0,2,2]],[[1,0,2,2],[2,3,3,2],[0,2,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,4,2],[0,2,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,3],[0,2,2,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,2],[0,2,2,3],[0,1,1,1]],[[1,0,2,1],[2,3,3,2],[0,2,2,2],[0,1,1,2]],[[1,0,2,2],[2,3,3,2],[0,2,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,4,2],[0,2,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,3],[0,2,2,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,2],[0,2,2,3],[0,1,2,0]],[[1,0,2,2],[2,3,3,2],[0,2,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,4,2],[0,2,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,3],[0,2,2,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,2],[0,2,2,3],[0,2,0,1]],[[1,0,2,2],[2,3,3,2],[0,2,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,4,2],[0,2,2,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,3],[0,2,2,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,2],[0,2,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,4,2],[0,2,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,3],[0,2,2,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,2],[0,2,2,3],[1,0,1,1]],[[1,0,2,2],[2,3,3,2],[0,2,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,4,2],[0,2,2,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,3],[0,2,2,2],[1,0,2,0]],[[1,2,1,1],[1,1,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[1,1,2,2],[1,2,3,2],[0,3,2,0]],[[1,2,1,1],[1,1,2,2],[1,2,3,3],[0,2,2,0]],[[1,2,1,1],[1,1,2,2],[1,2,4,2],[0,2,2,0]],[[1,2,1,1],[1,1,2,3],[1,2,3,2],[0,2,2,0]],[[1,2,1,2],[1,1,2,2],[1,2,3,2],[0,2,2,0]],[[1,2,1,1],[1,1,2,2],[1,2,3,2],[0,2,1,2]],[[1,2,1,1],[1,1,2,2],[1,2,3,3],[0,2,1,1]],[[1,2,1,1],[1,1,2,2],[1,2,4,2],[0,2,1,1]],[[1,2,1,1],[1,1,2,3],[1,2,3,2],[0,2,1,1]],[[1,2,1,2],[1,1,2,2],[1,2,3,2],[0,2,1,1]],[[1,2,1,1],[1,1,2,2],[1,2,3,1],[0,2,2,2]],[[1,2,1,1],[1,1,2,2],[1,2,3,1],[0,2,3,1]],[[1,2,1,1],[1,1,2,2],[1,2,3,1],[0,3,2,1]],[[1,2,1,1],[1,1,2,2],[1,2,4,1],[0,2,2,1]],[[1,2,1,1],[1,1,2,2],[1,2,2,2],[0,2,2,2]],[[1,0,2,2],[2,3,3,2],[0,2,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,4,2],[0,2,3,0],[0,1,2,1]],[[1,0,2,1],[2,3,3,3],[0,2,3,0],[0,1,2,1]],[[1,0,3,1],[2,3,3,2],[0,2,3,0],[1,1,1,1]],[[1,0,2,2],[2,3,3,2],[0,2,3,0],[1,1,1,1]],[[1,0,2,1],[2,4,3,2],[0,2,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,4,2],[0,2,3,0],[1,1,1,1]],[[2,0,2,1],[2,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,0,3,1],[2,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,0,2,2],[2,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,0,2,1],[3,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,0,2,1],[2,4,3,2],[0,2,3,0],[1,1,2,0]],[[1,0,2,1],[2,3,4,2],[0,2,3,0],[1,1,2,0]],[[2,0,2,1],[2,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,0,3,1],[2,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,0,2,2],[2,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,0,2,1],[3,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,0,2,1],[2,4,3,2],[0,2,3,0],[1,2,0,1]],[[1,0,2,1],[2,3,4,2],[0,2,3,0],[1,2,0,1]],[[2,0,2,1],[2,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,0,3,1],[2,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,0,2,2],[2,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,0,2,1],[3,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,0,2,1],[2,4,3,2],[0,2,3,0],[1,2,1,0]],[[1,0,2,1],[2,3,4,2],[0,2,3,0],[1,2,1,0]],[[1,2,1,1],[1,1,2,2],[1,2,2,2],[0,2,3,1]],[[1,2,1,1],[1,1,2,2],[1,2,2,2],[0,3,2,1]],[[1,2,1,1],[1,1,2,2],[1,2,2,3],[0,2,2,1]],[[1,2,1,1],[1,1,2,3],[1,2,2,2],[0,2,2,1]],[[1,2,1,2],[1,1,2,2],[1,2,2,2],[0,2,2,1]],[[1,2,1,1],[1,1,2,2],[1,1,3,2],[0,2,2,2]],[[1,2,1,1],[1,1,2,2],[1,1,3,2],[0,2,3,1]],[[1,0,2,2],[2,3,3,2],[0,2,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,4,2],[0,2,3,1],[0,0,2,1]],[[1,0,2,1],[2,3,3,3],[0,2,3,1],[0,0,2,1]],[[1,0,2,2],[2,3,3,2],[0,2,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,4,2],[0,2,3,1],[0,1,1,1]],[[1,0,2,1],[2,3,3,3],[0,2,3,1],[0,1,1,1]],[[1,0,2,2],[2,3,3,2],[0,2,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,4,2],[0,2,3,1],[0,1,2,0]],[[1,0,2,1],[2,3,3,3],[0,2,3,1],[0,1,2,0]],[[1,0,2,2],[2,3,3,2],[0,2,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,4,2],[0,2,3,1],[0,2,0,1]],[[1,0,2,1],[2,3,3,3],[0,2,3,1],[0,2,0,1]],[[1,0,2,2],[2,3,3,2],[0,2,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,4,2],[0,2,3,1],[0,2,1,0]],[[1,0,2,1],[2,3,3,3],[0,2,3,1],[0,2,1,0]],[[1,2,1,1],[1,1,2,2],[1,1,3,3],[0,2,2,1]],[[1,2,1,1],[1,1,2,3],[1,1,3,2],[0,2,2,1]],[[1,2,1,2],[1,1,2,2],[1,1,3,2],[0,2,2,1]],[[1,0,2,2],[2,3,3,2],[0,2,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,4,2],[0,2,3,1],[1,0,1,1]],[[1,0,2,1],[2,3,3,3],[0,2,3,1],[1,0,1,1]],[[1,0,2,2],[2,3,3,2],[0,2,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,4,2],[0,2,3,1],[1,0,2,0]],[[1,0,2,1],[2,3,3,3],[0,2,3,1],[1,0,2,0]],[[1,2,1,1],[1,1,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[1,1,2,2],[0,3,3,2],[2,2,1,0]],[[1,2,1,1],[1,1,2,2],[0,3,3,3],[1,2,1,0]],[[1,2,1,1],[1,1,2,2],[0,3,4,2],[1,2,1,0]],[[1,2,1,1],[1,1,2,2],[0,4,3,2],[1,2,1,0]],[[1,2,1,1],[1,1,2,3],[0,3,3,2],[1,2,1,0]],[[1,2,1,2],[1,1,2,2],[0,3,3,2],[1,2,1,0]],[[1,2,1,1],[1,1,2,2],[0,3,3,2],[1,2,0,2]],[[1,2,1,1],[1,1,2,2],[0,3,3,2],[1,3,0,1]],[[1,2,1,1],[1,1,2,2],[0,3,3,2],[2,2,0,1]],[[1,2,1,1],[1,1,2,2],[0,3,3,3],[1,2,0,1]],[[1,2,1,1],[1,1,2,2],[0,3,4,2],[1,2,0,1]],[[1,2,1,1],[1,1,2,2],[0,4,3,2],[1,2,0,1]],[[1,2,1,1],[1,1,2,3],[0,3,3,2],[1,2,0,1]],[[1,2,1,2],[1,1,2,2],[0,3,3,2],[1,2,0,1]],[[1,2,1,1],[1,1,2,2],[0,3,3,2],[1,1,3,0]],[[1,2,1,1],[1,1,2,2],[0,3,3,3],[1,1,2,0]],[[1,2,1,1],[1,1,2,2],[0,3,4,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,2],[0,2,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,4,2],[0,2,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,3,3],[0,2,3,2],[0,1,0,1]],[[1,0,2,1],[2,3,3,2],[0,2,3,3],[0,1,0,1]],[[1,2,1,1],[1,1,2,2],[0,4,3,2],[1,1,2,0]],[[1,2,1,1],[1,1,2,3],[0,3,3,2],[1,1,2,0]],[[1,2,1,2],[1,1,2,2],[0,3,3,2],[1,1,2,0]],[[1,2,1,1],[1,1,2,2],[0,3,3,2],[1,1,1,2]],[[1,2,1,1],[1,1,2,2],[0,3,3,3],[1,1,1,1]],[[1,2,1,1],[1,1,2,2],[0,3,4,2],[1,1,1,1]],[[1,2,1,1],[1,1,2,2],[0,4,3,2],[1,1,1,1]],[[1,2,1,1],[1,1,2,3],[0,3,3,2],[1,1,1,1]],[[1,2,1,2],[1,1,2,2],[0,3,3,2],[1,1,1,1]],[[1,2,1,1],[1,1,2,2],[0,3,3,2],[1,0,2,2]],[[1,2,1,1],[1,1,2,2],[0,3,3,3],[1,0,2,1]],[[1,2,1,1],[1,1,2,2],[0,3,4,2],[1,0,2,1]],[[1,2,1,1],[1,1,2,3],[0,3,3,2],[1,0,2,1]],[[1,2,1,2],[1,1,2,2],[0,3,3,2],[1,0,2,1]],[[1,0,2,2],[2,3,3,2],[0,2,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,4,2],[0,2,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,3,3],[0,2,3,2],[1,0,0,1]],[[1,0,2,1],[2,3,3,2],[0,2,3,3],[1,0,0,1]],[[1,2,1,1],[1,1,2,2],[0,3,3,1],[1,3,1,1]],[[1,2,1,1],[1,1,2,2],[0,3,3,1],[2,2,1,1]],[[1,2,1,1],[1,1,2,2],[0,3,4,1],[1,2,1,1]],[[1,2,1,1],[1,1,2,2],[0,4,3,1],[1,2,1,1]],[[1,2,1,1],[1,1,2,2],[0,3,3,1],[1,1,2,2]],[[1,2,1,1],[1,1,2,2],[0,3,3,1],[1,1,3,1]],[[1,2,1,1],[1,1,2,2],[0,3,4,1],[1,1,2,1]],[[1,2,1,1],[1,1,2,2],[0,4,3,1],[1,1,2,1]],[[1,2,1,1],[1,1,2,2],[0,3,2,2],[1,2,3,0]],[[1,2,1,1],[1,1,2,2],[0,3,2,2],[1,3,2,0]],[[1,2,1,1],[1,1,2,2],[0,3,2,2],[2,2,2,0]],[[1,2,1,1],[1,1,2,2],[0,4,2,2],[1,2,2,0]],[[1,2,1,1],[1,1,2,2],[0,3,2,2],[1,1,2,2]],[[1,2,1,1],[1,1,2,2],[0,3,2,2],[1,1,3,1]],[[1,2,1,1],[1,1,2,2],[0,3,2,3],[1,1,2,1]],[[1,2,1,1],[1,1,2,3],[0,3,2,2],[1,1,2,1]],[[1,2,1,2],[1,1,2,2],[0,3,2,2],[1,1,2,1]],[[1,2,1,1],[1,1,2,2],[0,3,2,1],[1,2,2,2]],[[1,2,1,1],[1,1,2,2],[0,3,2,1],[1,2,3,1]],[[1,2,1,1],[1,1,2,2],[0,3,2,1],[1,3,2,1]],[[1,2,1,1],[1,1,2,2],[0,3,2,1],[2,2,2,1]],[[1,2,1,1],[1,1,2,2],[0,4,2,1],[1,2,2,1]],[[1,2,1,1],[1,1,2,2],[0,3,1,2],[1,2,2,2]],[[1,2,1,1],[1,1,2,2],[0,3,1,2],[1,2,3,1]],[[1,2,1,1],[1,1,2,2],[0,3,1,2],[1,3,2,1]],[[1,2,1,1],[1,1,2,2],[0,3,1,2],[2,2,2,1]],[[1,2,1,1],[1,1,2,2],[0,3,1,3],[1,2,2,1]],[[1,2,1,1],[1,1,2,2],[0,4,1,2],[1,2,2,1]],[[1,2,1,1],[1,1,2,3],[0,3,1,2],[1,2,2,1]],[[1,2,1,2],[1,1,2,2],[0,3,1,2],[1,2,2,1]],[[1,2,1,1],[1,1,2,2],[0,2,3,2],[1,2,3,0]],[[1,2,1,1],[1,1,2,2],[0,2,3,2],[1,3,2,0]],[[1,2,1,1],[1,1,2,2],[0,2,3,2],[2,2,2,0]],[[1,2,1,1],[1,1,2,2],[0,2,3,3],[1,2,2,0]],[[1,2,1,1],[1,1,2,2],[0,2,4,2],[1,2,2,0]],[[1,2,1,1],[1,1,2,3],[0,2,3,2],[1,2,2,0]],[[1,2,1,2],[1,1,2,2],[0,2,3,2],[1,2,2,0]],[[1,2,1,1],[1,1,2,2],[0,2,3,2],[1,2,1,2]],[[1,2,1,1],[1,1,2,2],[0,2,3,3],[1,2,1,1]],[[1,2,1,1],[1,1,2,2],[0,2,4,2],[1,2,1,1]],[[1,2,1,1],[1,1,2,3],[0,2,3,2],[1,2,1,1]],[[1,2,1,2],[1,1,2,2],[0,2,3,2],[1,2,1,1]],[[1,2,1,1],[1,1,2,2],[0,2,3,1],[1,2,2,2]],[[1,2,1,1],[1,1,2,2],[0,2,3,1],[1,2,3,1]],[[1,2,1,1],[1,1,2,2],[0,2,3,1],[1,3,2,1]],[[1,2,1,1],[1,1,2,2],[0,2,3,1],[2,2,2,1]],[[1,2,1,1],[1,1,2,2],[0,2,4,1],[1,2,2,1]],[[1,2,1,1],[1,1,2,2],[0,2,2,2],[1,2,2,2]],[[1,2,1,1],[1,1,2,2],[0,2,2,2],[1,2,3,1]],[[1,2,1,1],[1,1,2,2],[0,2,2,2],[1,3,2,1]],[[1,2,1,1],[1,1,2,2],[0,2,2,2],[2,2,2,1]],[[1,2,1,1],[1,1,2,2],[0,2,2,3],[1,2,2,1]],[[1,2,1,1],[1,1,2,3],[0,2,2,2],[1,2,2,1]],[[1,2,1,2],[1,1,2,2],[0,2,2,2],[1,2,2,1]],[[1,2,1,1],[1,1,2,2],[0,1,3,2],[1,2,2,2]],[[1,2,1,1],[1,1,2,2],[0,1,3,2],[1,2,3,1]],[[1,2,1,1],[1,1,2,2],[0,1,3,3],[1,2,2,1]],[[1,2,1,1],[1,1,2,3],[0,1,3,2],[1,2,2,1]],[[1,2,1,2],[1,1,2,2],[0,1,3,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,2],[0,3,0,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,2],[0,3,0,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,3],[0,3,0,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,2],[0,3,0,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,2],[0,3,0,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,3],[0,3,0,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,2],[0,3,0,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,2],[0,3,0,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,3],[0,3,0,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,2],[0,3,0,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,2],[0,3,0,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,3],[0,3,0,2],[1,2,1,0]],[[1,2,1,1],[1,1,1,2],[1,3,3,2],[0,1,2,2]],[[1,2,1,1],[1,1,1,2],[1,3,3,2],[0,1,3,1]],[[1,2,1,1],[1,1,1,2],[1,3,3,3],[0,1,2,1]],[[1,2,1,1],[1,1,1,2],[1,2,3,2],[0,2,2,2]],[[2,0,2,1],[2,3,3,2],[0,3,1,0],[1,2,2,0]],[[1,0,3,1],[2,3,3,2],[0,3,1,0],[1,2,2,0]],[[1,0,2,2],[2,3,3,2],[0,3,1,0],[1,2,2,0]],[[1,0,2,1],[3,3,3,2],[0,3,1,0],[1,2,2,0]],[[1,0,2,1],[2,4,3,2],[0,3,1,0],[1,2,2,0]],[[1,0,2,1],[2,3,4,2],[0,3,1,0],[1,2,2,0]],[[1,0,2,1],[2,3,3,2],[0,4,1,0],[1,2,2,0]],[[1,0,2,1],[2,3,3,2],[0,3,1,0],[2,2,2,0]],[[1,0,2,1],[2,3,3,2],[0,3,1,0],[1,3,2,0]],[[1,2,1,1],[1,1,1,2],[1,2,3,2],[0,2,3,1]],[[1,2,1,1],[1,1,1,2],[1,2,3,3],[0,2,2,1]],[[1,2,1,1],[1,1,1,2],[0,3,3,2],[1,1,2,2]],[[1,2,1,1],[1,1,1,2],[0,3,3,2],[1,1,3,1]],[[1,2,1,1],[1,1,1,2],[0,3,3,3],[1,1,2,1]],[[1,2,1,1],[1,1,1,2],[0,2,3,2],[1,2,2,2]],[[1,2,1,1],[1,1,1,2],[0,2,3,2],[1,2,3,1]],[[1,2,1,1],[1,1,1,2],[0,2,3,2],[1,3,2,1]],[[1,2,1,1],[1,1,1,2],[0,2,3,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,1],[1,0,3,3],[2,3,3,2],[1,0,0,1]],[[1,2,1,1],[1,0,4,2],[2,3,3,2],[1,0,0,1]],[[1,2,1,2],[1,0,3,2],[2,3,3,2],[1,0,0,1]],[[1,0,3,1],[2,3,3,2],[0,3,2,0],[1,1,1,1]],[[1,0,2,2],[2,3,3,2],[0,3,2,0],[1,1,1,1]],[[1,0,2,1],[2,4,3,2],[0,3,2,0],[1,1,1,1]],[[1,0,2,1],[2,3,4,2],[0,3,2,0],[1,1,1,1]],[[2,0,2,1],[2,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,0,3,1],[2,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,0,2,2],[2,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,0,2,1],[3,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,0,2,1],[2,4,3,2],[0,3,2,0],[1,1,2,0]],[[1,0,2,1],[2,3,4,2],[0,3,2,0],[1,1,2,0]],[[1,0,2,1],[2,3,3,2],[0,4,2,0],[1,1,2,0]],[[2,0,2,1],[2,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,0,3,1],[2,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,0,2,2],[2,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,0,2,1],[3,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,0,2,1],[2,4,3,2],[0,3,2,0],[1,2,0,1]],[[1,0,2,1],[2,3,4,2],[0,3,2,0],[1,2,0,1]],[[1,0,2,1],[2,3,3,2],[0,4,2,0],[1,2,0,1]],[[2,0,2,1],[2,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,0,3,1],[2,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,0,2,2],[2,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,0,2,1],[3,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,0,2,1],[2,4,3,2],[0,3,2,0],[1,2,1,0]],[[1,0,2,1],[2,3,4,2],[0,3,2,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,2],[0,4,2,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,2],[0,3,2,0],[2,2,1,0]],[[1,0,2,1],[2,3,3,2],[0,3,2,0],[1,3,1,0]],[[1,2,1,1],[1,0,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,1],[1,0,3,3],[2,3,3,2],[0,1,0,1]],[[1,2,1,1],[1,0,4,2],[2,3,3,2],[0,1,0,1]],[[1,2,1,2],[1,0,3,2],[2,3,3,2],[0,1,0,1]],[[1,2,1,1],[1,0,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[1,0,3,2],[2,4,3,1],[1,2,0,0]],[[1,2,1,1],[1,0,3,2],[3,3,3,1],[1,2,0,0]],[[1,0,2,2],[2,3,3,2],[0,3,2,2],[0,0,1,1]],[[1,0,2,1],[2,3,4,2],[0,3,2,2],[0,0,1,1]],[[1,0,2,1],[2,3,3,3],[0,3,2,2],[0,0,1,1]],[[1,0,2,1],[2,3,3,2],[0,3,2,3],[0,0,1,1]],[[1,0,2,2],[2,3,3,2],[0,3,2,2],[0,0,2,0]],[[1,0,2,1],[2,3,4,2],[0,3,2,2],[0,0,2,0]],[[1,0,2,1],[2,3,3,3],[0,3,2,2],[0,0,2,0]],[[1,2,1,1],[1,0,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[1,0,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,1,1],[1,0,3,2],[2,4,3,1],[1,1,1,0]],[[1,2,1,1],[1,0,3,2],[3,3,3,1],[1,1,1,0]],[[1,2,1,1],[1,0,3,3],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[1,0,4,2],[2,3,3,1],[1,1,1,0]],[[1,2,1,2],[1,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[1,0,3,2],[2,3,3,1],[2,1,0,1]],[[1,2,1,1],[1,0,3,2],[2,3,4,1],[1,1,0,1]],[[1,2,1,1],[1,0,3,2],[2,4,3,1],[1,1,0,1]],[[1,2,1,1],[1,0,3,2],[3,3,3,1],[1,1,0,1]],[[1,2,1,1],[1,0,3,3],[2,3,3,1],[1,1,0,1]],[[1,2,1,1],[1,0,4,2],[2,3,3,1],[1,1,0,1]],[[1,2,1,2],[1,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,2,1,1],[1,0,3,2],[2,3,3,1],[1,0,3,0]],[[1,2,1,1],[1,0,3,2],[2,3,3,1],[2,0,2,0]],[[1,2,1,1],[1,0,3,2],[2,3,4,1],[1,0,2,0]],[[1,2,1,1],[1,0,3,2],[2,4,3,1],[1,0,2,0]],[[1,2,1,1],[1,0,3,2],[3,3,3,1],[1,0,2,0]],[[1,2,1,1],[1,0,3,3],[2,3,3,1],[1,0,2,0]],[[1,2,1,1],[1,0,4,2],[2,3,3,1],[1,0,2,0]],[[1,2,1,2],[1,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,2,1,1],[1,0,3,2],[2,3,3,1],[2,0,1,1]],[[1,2,1,1],[1,0,3,2],[2,3,4,1],[1,0,1,1]],[[1,2,1,1],[1,0,3,2],[2,4,3,1],[1,0,1,1]],[[1,2,1,1],[1,0,3,2],[3,3,3,1],[1,0,1,1]],[[1,2,1,1],[1,0,3,3],[2,3,3,1],[1,0,1,1]],[[1,2,1,1],[1,0,4,2],[2,3,3,1],[1,0,1,1]],[[1,2,1,2],[1,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,2,1,1],[1,0,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[1,0,3,2],[2,3,4,1],[0,2,1,0]],[[1,2,1,1],[1,0,3,2],[2,4,3,1],[0,2,1,0]],[[1,2,1,1],[1,0,3,2],[3,3,3,1],[0,2,1,0]],[[1,2,1,1],[1,0,3,3],[2,3,3,1],[0,2,1,0]],[[1,2,1,1],[1,0,4,2],[2,3,3,1],[0,2,1,0]],[[1,2,1,2],[1,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,2,1,1],[1,0,3,2],[2,3,3,1],[0,3,0,1]],[[1,2,1,1],[1,0,3,2],[2,3,4,1],[0,2,0,1]],[[1,2,1,1],[1,0,3,2],[2,4,3,1],[0,2,0,1]],[[1,2,1,1],[1,0,3,2],[3,3,3,1],[0,2,0,1]],[[1,2,1,1],[1,0,3,3],[2,3,3,1],[0,2,0,1]],[[1,2,1,1],[1,0,4,2],[2,3,3,1],[0,2,0,1]],[[1,2,1,2],[1,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,2,1,1],[1,0,3,2],[2,3,3,1],[0,1,3,0]],[[1,2,1,1],[1,0,3,2],[2,3,4,1],[0,1,2,0]],[[1,2,1,1],[1,0,3,2],[2,4,3,1],[0,1,2,0]],[[1,2,1,1],[1,0,3,2],[3,3,3,1],[0,1,2,0]],[[1,2,1,1],[1,0,3,3],[2,3,3,1],[0,1,2,0]],[[1,2,1,1],[1,0,4,2],[2,3,3,1],[0,1,2,0]],[[1,2,1,2],[1,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,2,1,1],[1,0,3,2],[2,3,4,1],[0,1,1,1]],[[1,2,1,1],[1,0,3,2],[2,4,3,1],[0,1,1,1]],[[1,2,1,1],[1,0,3,2],[3,3,3,1],[0,1,1,1]],[[1,2,1,1],[1,0,3,3],[2,3,3,1],[0,1,1,1]],[[1,2,1,1],[1,0,4,2],[2,3,3,1],[0,1,1,1]],[[1,2,1,2],[1,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,2,1,1],[1,0,3,2],[2,3,4,1],[0,0,2,1]],[[1,2,1,1],[1,0,3,3],[2,3,3,1],[0,0,2,1]],[[1,2,1,1],[1,0,4,2],[2,3,3,1],[0,0,2,1]],[[1,2,1,2],[1,0,3,2],[2,3,3,1],[0,0,2,1]],[[1,2,1,1],[1,0,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[1,0,3,2],[2,4,3,0],[1,2,0,1]],[[1,2,1,1],[1,0,3,2],[3,3,3,0],[1,2,0,1]],[[1,2,1,1],[1,0,3,2],[2,3,3,0],[2,1,1,1]],[[1,2,1,1],[1,0,3,2],[2,3,4,0],[1,1,1,1]],[[1,2,1,1],[1,0,3,2],[2,4,3,0],[1,1,1,1]],[[1,0,3,1],[2,3,3,2],[0,3,3,0],[0,1,1,1]],[[1,0,2,2],[2,3,3,2],[0,3,3,0],[0,1,1,1]],[[1,0,2,1],[2,4,3,2],[0,3,3,0],[0,1,1,1]],[[1,0,2,1],[2,3,4,2],[0,3,3,0],[0,1,1,1]],[[1,0,3,1],[2,3,3,2],[0,3,3,0],[0,1,2,0]],[[1,0,2,2],[2,3,3,2],[0,3,3,0],[0,1,2,0]],[[1,0,2,1],[2,4,3,2],[0,3,3,0],[0,1,2,0]],[[1,0,2,1],[2,3,4,2],[0,3,3,0],[0,1,2,0]],[[1,0,3,1],[2,3,3,2],[0,3,3,0],[0,2,0,1]],[[1,0,2,2],[2,3,3,2],[0,3,3,0],[0,2,0,1]],[[1,0,2,1],[2,4,3,2],[0,3,3,0],[0,2,0,1]],[[1,0,2,1],[2,3,4,2],[0,3,3,0],[0,2,0,1]],[[1,0,3,1],[2,3,3,2],[0,3,3,0],[0,2,1,0]],[[1,0,2,2],[2,3,3,2],[0,3,3,0],[0,2,1,0]],[[1,0,2,1],[2,4,3,2],[0,3,3,0],[0,2,1,0]],[[1,0,2,1],[2,3,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,1,1],[1,0,3,2],[3,3,3,0],[1,1,1,1]],[[1,2,1,1],[1,0,3,3],[2,3,3,0],[1,1,1,1]],[[1,2,1,1],[1,0,4,2],[2,3,3,0],[1,1,1,1]],[[1,2,1,2],[1,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,2,1,1],[1,0,3,2],[2,3,3,0],[1,0,2,2]],[[1,2,1,1],[1,0,3,2],[2,3,3,0],[1,0,3,1]],[[1,2,1,1],[1,0,3,2],[2,3,3,0],[2,0,2,1]],[[1,2,1,1],[1,0,3,2],[2,3,4,0],[1,0,2,1]],[[1,2,1,1],[1,0,3,2],[2,4,3,0],[1,0,2,1]],[[1,2,1,1],[1,0,3,2],[3,3,3,0],[1,0,2,1]],[[1,2,1,1],[1,0,3,3],[2,3,3,0],[1,0,2,1]],[[1,2,1,1],[1,0,4,2],[2,3,3,0],[1,0,2,1]],[[1,2,1,2],[1,0,3,2],[2,3,3,0],[1,0,2,1]],[[2,0,2,1],[2,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,0,3,1],[2,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,0,2,2],[2,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,0,2,1],[3,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,0,2,1],[2,4,3,2],[0,3,3,0],[1,2,0,0]],[[1,0,2,1],[2,3,4,2],[0,3,3,0],[1,2,0,0]],[[1,0,2,1],[2,3,3,2],[0,4,3,0],[1,2,0,0]],[[1,2,1,1],[1,0,3,2],[2,3,3,0],[0,3,1,1]],[[1,2,1,1],[1,0,3,2],[2,3,4,0],[0,2,1,1]],[[1,2,1,1],[1,0,3,2],[2,4,3,0],[0,2,1,1]],[[1,2,1,1],[1,0,3,2],[3,3,3,0],[0,2,1,1]],[[1,2,1,1],[1,0,3,3],[2,3,3,0],[0,2,1,1]],[[1,2,1,1],[1,0,4,2],[2,3,3,0],[0,2,1,1]],[[1,2,1,2],[1,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,2,1,1],[1,0,3,2],[2,3,3,0],[0,1,2,2]],[[1,2,1,1],[1,0,3,2],[2,3,3,0],[0,1,3,1]],[[1,2,1,1],[1,0,3,2],[2,3,4,0],[0,1,2,1]],[[1,2,1,1],[1,0,3,2],[2,4,3,0],[0,1,2,1]],[[1,2,1,1],[1,0,3,2],[3,3,3,0],[0,1,2,1]],[[1,2,1,1],[1,0,3,3],[2,3,3,0],[0,1,2,1]],[[1,2,1,1],[1,0,4,2],[2,3,3,0],[0,1,2,1]],[[1,2,1,2],[1,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,0,2,2],[2,3,3,2],[0,3,3,1],[0,0,1,1]],[[1,0,2,1],[2,3,4,2],[0,3,3,1],[0,0,1,1]],[[1,0,2,1],[2,3,3,3],[0,3,3,1],[0,0,1,1]],[[1,0,2,2],[2,3,3,2],[0,3,3,1],[0,0,2,0]],[[1,0,2,1],[2,3,4,2],[0,3,3,1],[0,0,2,0]],[[1,0,2,1],[2,3,3,3],[0,3,3,1],[0,0,2,0]],[[1,2,1,1],[1,0,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,1],[1,0,3,3],[2,3,2,2],[1,1,1,0]],[[1,2,1,1],[1,0,4,2],[2,3,2,2],[1,1,1,0]],[[1,2,1,2],[1,0,3,2],[2,3,2,2],[1,1,1,0]],[[1,2,1,1],[1,0,3,2],[2,3,2,2],[1,1,0,2]],[[1,2,1,1],[1,0,3,2],[2,3,2,3],[1,1,0,1]],[[1,2,1,1],[1,0,3,3],[2,3,2,2],[1,1,0,1]],[[1,2,1,1],[1,0,4,2],[2,3,2,2],[1,1,0,1]],[[1,2,1,2],[1,0,3,2],[2,3,2,2],[1,1,0,1]],[[1,2,1,1],[1,0,3,2],[2,3,2,3],[1,0,2,0]],[[1,2,1,1],[1,0,3,3],[2,3,2,2],[1,0,2,0]],[[1,2,1,1],[1,0,4,2],[2,3,2,2],[1,0,2,0]],[[1,2,1,2],[1,0,3,2],[2,3,2,2],[1,0,2,0]],[[1,2,1,1],[1,0,3,2],[2,3,2,2],[1,0,1,2]],[[1,2,1,1],[1,0,3,2],[2,3,2,3],[1,0,1,1]],[[1,2,1,1],[1,0,3,3],[2,3,2,2],[1,0,1,1]],[[1,2,1,1],[1,0,4,2],[2,3,2,2],[1,0,1,1]],[[1,2,1,2],[1,0,3,2],[2,3,2,2],[1,0,1,1]],[[1,2,1,1],[1,0,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,1],[1,0,3,3],[2,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,0,4,2],[2,3,2,2],[0,2,1,0]],[[1,2,1,2],[1,0,3,2],[2,3,2,2],[0,2,1,0]],[[1,2,1,1],[1,0,3,2],[2,3,2,2],[0,2,0,2]],[[1,2,1,1],[1,0,3,2],[2,3,2,3],[0,2,0,1]],[[1,2,1,1],[1,0,3,3],[2,3,2,2],[0,2,0,1]],[[1,2,1,1],[1,0,4,2],[2,3,2,2],[0,2,0,1]],[[1,2,1,2],[1,0,3,2],[2,3,2,2],[0,2,0,1]],[[1,2,1,1],[1,0,3,2],[2,3,2,3],[0,1,2,0]],[[1,2,1,1],[1,0,3,3],[2,3,2,2],[0,1,2,0]],[[1,2,1,1],[1,0,4,2],[2,3,2,2],[0,1,2,0]],[[1,2,1,2],[1,0,3,2],[2,3,2,2],[0,1,2,0]],[[1,2,1,1],[1,0,3,2],[2,3,2,2],[0,1,1,2]],[[1,2,1,1],[1,0,3,2],[2,3,2,3],[0,1,1,1]],[[1,2,1,1],[1,0,3,3],[2,3,2,2],[0,1,1,1]],[[1,2,1,1],[1,0,4,2],[2,3,2,2],[0,1,1,1]],[[1,2,1,2],[1,0,3,2],[2,3,2,2],[0,1,1,1]],[[1,2,1,1],[1,0,3,2],[2,3,2,2],[0,0,2,2]],[[1,2,1,1],[1,0,3,2],[2,3,2,3],[0,0,2,1]],[[1,2,1,1],[1,0,3,3],[2,3,2,2],[0,0,2,1]],[[1,2,1,1],[1,0,4,2],[2,3,2,2],[0,0,2,1]],[[1,2,1,2],[1,0,3,2],[2,3,2,2],[0,0,2,1]],[[1,2,1,1],[1,0,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[1,0,3,2],[2,4,2,1],[1,1,2,0]],[[1,2,1,1],[1,0,3,2],[3,3,2,1],[1,1,2,0]],[[1,2,1,1],[1,0,3,2],[2,3,2,1],[0,2,3,0]],[[1,2,1,1],[1,0,3,2],[2,3,2,1],[0,3,2,0]],[[1,2,1,1],[1,0,3,2],[2,4,2,1],[0,2,2,0]],[[1,2,1,1],[1,0,3,2],[3,3,2,1],[0,2,2,0]],[[1,2,1,1],[1,0,3,2],[2,3,2,0],[2,1,2,1]],[[1,2,1,1],[1,0,3,2],[2,4,2,0],[1,1,2,1]],[[1,2,1,1],[1,0,3,2],[3,3,2,0],[1,1,2,1]],[[1,2,1,1],[1,0,3,2],[2,3,2,0],[0,2,2,2]],[[1,2,1,1],[1,0,3,2],[2,3,2,0],[0,2,3,1]],[[1,2,1,1],[1,0,3,2],[2,3,2,0],[0,3,2,1]],[[1,2,1,1],[1,0,3,2],[2,4,2,0],[0,2,2,1]],[[1,2,1,1],[1,0,3,2],[3,3,2,0],[0,2,2,1]],[[1,2,1,1],[1,0,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,1,1],[1,0,3,2],[2,3,1,2],[1,0,3,1]],[[1,2,1,1],[1,0,3,2],[2,3,1,3],[1,0,2,1]],[[1,2,1,1],[1,0,3,3],[2,3,1,2],[1,0,2,1]],[[1,2,1,1],[1,0,4,2],[2,3,1,2],[1,0,2,1]],[[1,2,1,2],[1,0,3,2],[2,3,1,2],[1,0,2,1]],[[1,0,2,2],[2,3,3,2],[0,3,3,2],[0,0,0,1]],[[1,0,2,1],[2,3,4,2],[0,3,3,2],[0,0,0,1]],[[1,0,2,1],[2,3,3,3],[0,3,3,2],[0,0,0,1]],[[1,0,2,1],[2,3,3,2],[0,3,3,3],[0,0,0,1]],[[1,2,1,1],[1,0,3,2],[2,3,1,2],[0,1,2,2]],[[1,2,1,1],[1,0,3,2],[2,3,1,2],[0,1,3,1]],[[1,2,1,1],[1,0,3,2],[2,3,1,3],[0,1,2,1]],[[1,2,1,1],[1,0,3,3],[2,3,1,2],[0,1,2,1]],[[1,2,1,1],[1,0,4,2],[2,3,1,2],[0,1,2,1]],[[1,2,1,2],[1,0,3,2],[2,3,1,2],[0,1,2,1]],[[1,2,1,1],[1,0,3,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,1],[1,0,3,2],[2,4,0,2],[1,1,2,1]],[[1,2,1,1],[1,0,3,2],[3,3,0,2],[1,1,2,1]],[[1,2,1,1],[1,0,3,2],[2,3,0,2],[0,2,2,2]],[[1,2,1,1],[1,0,3,2],[2,3,0,2],[0,2,3,1]],[[1,2,1,1],[1,0,3,2],[2,3,0,2],[0,3,2,1]],[[1,2,1,1],[1,0,3,2],[2,3,0,3],[0,2,2,1]],[[1,2,1,1],[1,0,3,2],[2,4,0,2],[0,2,2,1]],[[1,2,1,1],[1,0,3,2],[3,3,0,2],[0,2,2,1]],[[1,2,1,1],[1,0,3,3],[2,3,0,2],[0,2,2,1]],[[1,2,1,1],[1,0,4,2],[2,3,0,2],[0,2,2,1]],[[1,2,1,2],[1,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,2,1,1],[1,0,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[1,0,3,2],[2,2,3,1],[2,2,1,0]],[[1,2,1,1],[1,0,3,2],[3,2,3,1],[1,2,1,0]],[[1,2,1,1],[1,0,3,2],[2,2,3,1],[1,3,0,1]],[[1,2,1,1],[1,0,3,2],[2,2,3,1],[2,2,0,1]],[[1,2,1,1],[1,0,3,2],[3,2,3,1],[1,2,0,1]],[[1,2,1,1],[1,0,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,1,1],[1,0,3,2],[2,2,3,1],[0,3,2,0]],[[1,2,1,1],[1,0,3,2],[2,2,4,1],[0,2,2,0]],[[1,2,1,1],[1,0,3,3],[2,2,3,1],[0,2,2,0]],[[1,2,1,1],[1,0,4,2],[2,2,3,1],[0,2,2,0]],[[1,2,1,2],[1,0,3,2],[2,2,3,1],[0,2,2,0]],[[1,2,1,1],[1,0,3,2],[2,2,4,1],[0,2,1,1]],[[1,2,1,1],[1,0,3,3],[2,2,3,1],[0,2,1,1]],[[1,2,1,1],[1,0,4,2],[2,2,3,1],[0,2,1,1]],[[1,2,1,2],[1,0,3,2],[2,2,3,1],[0,2,1,1]],[[1,2,1,1],[1,0,3,2],[2,2,3,0],[1,3,1,1]],[[1,2,1,1],[1,0,3,2],[2,2,3,0],[2,2,1,1]],[[1,2,1,1],[1,0,3,2],[3,2,3,0],[1,2,1,1]],[[1,2,1,1],[1,0,3,2],[2,2,3,0],[0,2,2,2]],[[1,2,1,1],[1,0,3,2],[2,2,3,0],[0,2,3,1]],[[1,2,1,1],[1,0,3,2],[2,2,3,0],[0,3,2,1]],[[1,2,1,1],[1,0,3,2],[2,2,4,0],[0,2,2,1]],[[1,2,1,1],[1,0,3,3],[2,2,3,0],[0,2,2,1]],[[1,2,1,1],[1,0,4,2],[2,2,3,0],[0,2,2,1]],[[1,2,1,2],[1,0,3,2],[2,2,3,0],[0,2,2,1]],[[1,2,1,1],[1,0,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,1,1],[1,0,3,3],[2,2,2,2],[0,2,2,0]],[[1,2,1,1],[1,0,4,2],[2,2,2,2],[0,2,2,0]],[[1,2,1,2],[1,0,3,2],[2,2,2,2],[0,2,2,0]],[[1,2,1,1],[1,0,3,2],[2,2,2,2],[0,2,1,2]],[[1,2,1,1],[1,0,3,2],[2,2,2,3],[0,2,1,1]],[[1,2,1,1],[1,0,3,3],[2,2,2,2],[0,2,1,1]],[[1,2,1,1],[1,0,4,2],[2,2,2,2],[0,2,1,1]],[[1,2,1,2],[1,0,3,2],[2,2,2,2],[0,2,1,1]],[[1,2,1,1],[1,0,3,2],[2,2,2,1],[1,2,3,0]],[[1,2,1,1],[1,0,3,2],[2,2,2,1],[1,3,2,0]],[[1,2,1,1],[1,0,3,2],[2,2,2,1],[2,2,2,0]],[[1,2,1,1],[1,0,3,2],[3,2,2,1],[1,2,2,0]],[[1,2,1,1],[1,0,3,2],[2,2,2,0],[1,2,2,2]],[[1,2,1,1],[1,0,3,2],[2,2,2,0],[1,2,3,1]],[[1,2,1,1],[1,0,3,2],[2,2,2,0],[1,3,2,1]],[[1,2,1,1],[1,0,3,2],[2,2,2,0],[2,2,2,1]],[[1,2,1,1],[1,0,3,2],[3,2,2,0],[1,2,2,1]],[[1,2,1,1],[1,0,3,2],[2,2,1,2],[0,2,2,2]],[[1,2,1,1],[1,0,3,2],[2,2,1,2],[0,2,3,1]],[[1,2,1,1],[1,0,3,2],[2,2,1,2],[0,3,2,1]],[[1,2,1,1],[1,0,3,2],[2,2,1,3],[0,2,2,1]],[[1,2,1,1],[1,0,3,3],[2,2,1,2],[0,2,2,1]],[[1,2,1,1],[1,0,4,2],[2,2,1,2],[0,2,2,1]],[[1,2,1,2],[1,0,3,2],[2,2,1,2],[0,2,2,1]],[[1,2,1,1],[1,0,3,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,2],[2,2,0,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,2],[2,2,0,2],[1,3,2,1]],[[1,2,1,1],[1,0,3,2],[2,2,0,2],[2,2,2,1]],[[1,2,1,1],[1,0,3,2],[2,2,0,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,2],[3,2,0,2],[1,2,2,1]],[[1,2,1,1],[1,0,3,3],[2,2,0,2],[1,2,2,1]],[[1,2,1,1],[1,0,4,2],[2,2,0,2],[1,2,2,1]],[[1,2,1,2],[1,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,2],[1,0,0,2],[1,2,2,1]],[[1,0,2,2],[2,3,3,2],[1,0,0,2],[1,2,2,1]],[[1,0,2,1],[2,3,3,3],[1,0,0,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,2],[1,0,1,2],[1,2,1,1]],[[1,0,2,2],[2,3,3,2],[1,0,1,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,3],[1,0,1,2],[1,2,1,1]],[[1,0,3,1],[2,3,3,2],[1,0,1,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,2],[1,0,1,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,3],[1,0,1,2],[1,2,2,0]],[[1,2,1,1],[1,0,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,1,1],[1,0,3,2],[2,1,3,1],[1,3,2,0]],[[1,2,1,1],[1,0,3,2],[2,1,3,1],[2,2,2,0]],[[1,2,1,1],[1,0,3,2],[2,1,4,1],[1,2,2,0]],[[1,2,1,1],[1,0,3,2],[3,1,3,1],[1,2,2,0]],[[1,0,3,1],[2,3,3,2],[1,0,3,0],[1,2,1,1]],[[1,0,2,2],[2,3,3,2],[1,0,3,0],[1,2,1,1]],[[1,0,2,1],[2,3,4,2],[1,0,3,0],[1,2,1,1]],[[2,0,2,1],[2,3,3,2],[1,0,3,0],[1,2,2,0]],[[1,0,3,1],[2,3,3,2],[1,0,3,0],[1,2,2,0]],[[1,0,2,2],[2,3,3,2],[1,0,3,0],[1,2,2,0]],[[1,0,2,1],[3,3,3,2],[1,0,3,0],[1,2,2,0]],[[1,0,2,1],[2,4,3,2],[1,0,3,0],[1,2,2,0]],[[1,0,2,1],[2,3,4,2],[1,0,3,0],[1,2,2,0]],[[1,2,1,1],[1,0,3,3],[2,1,3,1],[1,2,2,0]],[[1,2,1,1],[1,0,4,2],[2,1,3,1],[1,2,2,0]],[[1,2,1,2],[1,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,2,1,1],[1,0,3,2],[2,1,4,1],[1,2,1,1]],[[1,2,1,1],[1,0,3,3],[2,1,3,1],[1,2,1,1]],[[1,2,1,1],[1,0,4,2],[2,1,3,1],[1,2,1,1]],[[1,2,1,2],[1,0,3,2],[2,1,3,1],[1,2,1,1]],[[1,2,1,1],[1,0,3,2],[2,1,3,0],[1,2,2,2]],[[1,2,1,1],[1,0,3,2],[2,1,3,0],[1,2,3,1]],[[1,2,1,1],[1,0,3,2],[2,1,3,0],[1,3,2,1]],[[1,2,1,1],[1,0,3,2],[2,1,3,0],[2,2,2,1]],[[1,2,1,1],[1,0,3,2],[2,1,4,0],[1,2,2,1]],[[1,2,1,1],[1,0,3,2],[3,1,3,0],[1,2,2,1]],[[1,2,1,1],[1,0,3,3],[2,1,3,0],[1,2,2,1]],[[1,2,1,1],[1,0,4,2],[2,1,3,0],[1,2,2,1]],[[1,2,1,2],[1,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,2,1,1],[1,0,3,2],[2,1,2,3],[1,2,2,0]],[[1,2,1,1],[1,0,3,3],[2,1,2,2],[1,2,2,0]],[[1,2,1,1],[1,0,4,2],[2,1,2,2],[1,2,2,0]],[[1,2,1,2],[1,0,3,2],[2,1,2,2],[1,2,2,0]],[[1,2,1,1],[1,0,3,2],[2,1,2,2],[1,2,1,2]],[[1,2,1,1],[1,0,3,2],[2,1,2,3],[1,2,1,1]],[[1,2,1,1],[1,0,3,3],[2,1,2,2],[1,2,1,1]],[[1,2,1,1],[1,0,4,2],[2,1,2,2],[1,2,1,1]],[[1,2,1,2],[1,0,3,2],[2,1,2,2],[1,2,1,1]],[[1,2,1,1],[1,0,3,2],[2,1,1,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,2],[2,1,1,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,2],[2,1,1,2],[1,3,2,1]],[[1,2,1,1],[1,0,3,2],[2,1,1,2],[2,2,2,1]],[[1,2,1,1],[1,0,3,2],[2,1,1,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,2],[3,1,1,2],[1,2,2,1]],[[1,2,1,1],[1,0,3,3],[2,1,1,2],[1,2,2,1]],[[1,2,1,1],[1,0,4,2],[2,1,1,2],[1,2,2,1]],[[1,2,1,2],[1,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,2],[1,1,0,2],[0,2,2,1]],[[1,0,2,2],[2,3,3,2],[1,1,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,3],[1,1,0,2],[0,2,2,1]],[[1,0,3,1],[2,3,3,2],[1,1,1,2],[0,2,1,1]],[[1,0,2,2],[2,3,3,2],[1,1,1,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,3],[1,1,1,2],[0,2,1,1]],[[1,0,3,1],[2,3,3,2],[1,1,1,2],[0,2,2,0]],[[1,0,2,2],[2,3,3,2],[1,1,1,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,3],[1,1,1,2],[0,2,2,0]],[[1,2,1,1],[1,0,3,2],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[1,0,3,2],[1,3,4,2],[1,0,2,0]],[[1,2,1,1],[1,0,3,3],[1,3,3,2],[1,0,2,0]],[[1,2,1,2],[1,0,3,2],[1,3,3,2],[1,0,2,0]],[[1,2,1,1],[1,0,3,2],[1,3,3,2],[1,0,1,2]],[[1,2,1,1],[1,0,3,2],[1,3,3,3],[1,0,1,1]],[[1,2,1,1],[1,0,3,2],[1,3,4,2],[1,0,1,1]],[[1,2,1,1],[1,0,3,3],[1,3,3,2],[1,0,1,1]],[[1,2,1,2],[1,0,3,2],[1,3,3,2],[1,0,1,1]],[[1,2,1,1],[1,0,3,2],[1,3,3,3],[0,2,1,0]],[[1,2,1,1],[1,0,3,2],[1,3,4,2],[0,2,1,0]],[[1,2,1,1],[1,0,3,3],[1,3,3,2],[0,2,1,0]],[[1,2,1,2],[1,0,3,2],[1,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,0,3,2],[1,3,3,2],[0,2,0,2]],[[1,2,1,1],[1,0,3,2],[1,3,3,3],[0,2,0,1]],[[1,2,1,1],[1,0,3,2],[1,3,4,2],[0,2,0,1]],[[1,2,1,1],[1,0,3,3],[1,3,3,2],[0,2,0,1]],[[1,2,1,2],[1,0,3,2],[1,3,3,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,2],[1,1,3,0],[0,2,1,1]],[[1,0,2,2],[2,3,3,2],[1,1,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,4,2],[1,1,3,0],[0,2,1,1]],[[2,0,2,1],[2,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,0,3,1],[2,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,0,2,2],[2,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,0,2,1],[3,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,0,2,1],[2,4,3,2],[1,1,3,0],[0,2,2,0]],[[1,0,2,1],[2,3,4,2],[1,1,3,0],[0,2,2,0]],[[1,2,1,1],[1,0,3,2],[1,3,3,2],[0,1,3,0]],[[1,2,1,1],[1,0,3,2],[1,3,3,3],[0,1,2,0]],[[1,2,1,1],[1,0,3,2],[1,3,4,2],[0,1,2,0]],[[1,2,1,1],[1,0,3,3],[1,3,3,2],[0,1,2,0]],[[1,2,1,2],[1,0,3,2],[1,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,0,3,2],[1,3,3,2],[0,1,1,2]],[[1,2,1,1],[1,0,3,2],[1,3,3,3],[0,1,1,1]],[[1,2,1,1],[1,0,3,2],[1,3,4,2],[0,1,1,1]],[[1,2,1,1],[1,0,3,3],[1,3,3,2],[0,1,1,1]],[[1,2,1,2],[1,0,3,2],[1,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,0,3,2],[1,3,3,2],[0,0,2,2]],[[1,2,1,1],[1,0,3,2],[1,3,3,3],[0,0,2,1]],[[1,2,1,1],[1,0,3,2],[1,3,4,2],[0,0,2,1]],[[1,2,1,1],[1,0,3,3],[1,3,3,2],[0,0,2,1]],[[1,2,1,2],[1,0,3,2],[1,3,3,2],[0,0,2,1]],[[1,2,1,1],[1,0,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[1,0,3,2],[1,3,3,1],[2,2,1,0]],[[1,2,1,1],[1,0,3,2],[1,3,4,1],[1,2,1,0]],[[1,2,1,1],[1,0,3,2],[1,4,3,1],[1,2,1,0]],[[1,2,1,1],[1,0,3,3],[1,3,3,1],[1,2,1,0]],[[1,2,1,1],[1,0,4,2],[1,3,3,1],[1,2,1,0]],[[1,2,1,2],[1,0,3,2],[1,3,3,1],[1,2,1,0]],[[1,2,1,1],[1,0,3,2],[1,3,3,1],[1,3,0,1]],[[1,2,1,1],[1,0,3,2],[1,3,3,1],[2,2,0,1]],[[1,2,1,1],[1,0,3,2],[1,3,4,1],[1,2,0,1]],[[1,2,1,1],[1,0,3,2],[1,4,3,1],[1,2,0,1]],[[1,2,1,1],[1,0,3,3],[1,3,3,1],[1,2,0,1]],[[1,2,1,1],[1,0,4,2],[1,3,3,1],[1,2,0,1]],[[1,2,1,2],[1,0,3,2],[1,3,3,1],[1,2,0,1]],[[1,2,1,1],[1,0,3,2],[1,3,3,1],[1,1,3,0]],[[1,2,1,1],[1,0,3,2],[1,3,4,1],[1,1,2,0]],[[1,2,1,1],[1,0,3,2],[1,4,3,1],[1,1,2,0]],[[1,2,1,1],[1,0,3,3],[1,3,3,1],[1,1,2,0]],[[1,2,1,1],[1,0,4,2],[1,3,3,1],[1,1,2,0]],[[1,2,1,2],[1,0,3,2],[1,3,3,1],[1,1,2,0]],[[1,2,1,1],[1,0,3,2],[1,3,4,1],[1,1,1,1]],[[1,2,1,1],[1,0,3,2],[1,4,3,1],[1,1,1,1]],[[1,2,1,1],[1,0,3,3],[1,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,0,4,2],[1,3,3,1],[1,1,1,1]],[[1,2,1,2],[1,0,3,2],[1,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,0,3,2],[1,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,0,3,2],[1,3,3,1],[0,1,3,1]],[[1,2,1,1],[1,0,3,2],[1,3,4,1],[0,1,2,1]],[[1,2,1,1],[1,0,3,2],[1,3,3,0],[1,3,1,1]],[[1,2,1,1],[1,0,3,2],[1,3,3,0],[2,2,1,1]],[[1,2,1,1],[1,0,3,2],[1,3,4,0],[1,2,1,1]],[[1,2,1,1],[1,0,3,2],[1,4,3,0],[1,2,1,1]],[[1,2,1,1],[1,0,3,3],[1,3,3,0],[1,2,1,1]],[[1,2,1,1],[1,0,4,2],[1,3,3,0],[1,2,1,1]],[[1,2,1,2],[1,0,3,2],[1,3,3,0],[1,2,1,1]],[[1,2,1,1],[1,0,3,2],[1,3,3,0],[1,1,2,2]],[[1,2,1,1],[1,0,3,2],[1,3,3,0],[1,1,3,1]],[[1,2,1,1],[1,0,3,2],[1,3,4,0],[1,1,2,1]],[[1,2,1,1],[1,0,3,2],[1,4,3,0],[1,1,2,1]],[[1,2,1,1],[1,0,3,3],[1,3,3,0],[1,1,2,1]],[[1,2,1,1],[1,0,4,2],[1,3,3,0],[1,1,2,1]],[[1,2,1,2],[1,0,3,2],[1,3,3,0],[1,1,2,1]],[[1,2,1,1],[1,0,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,1,1],[1,0,3,3],[1,3,2,2],[1,2,1,0]],[[1,2,1,1],[1,0,4,2],[1,3,2,2],[1,2,1,0]],[[1,2,1,2],[1,0,3,2],[1,3,2,2],[1,2,1,0]],[[1,2,1,1],[1,0,3,2],[1,3,2,2],[1,2,0,2]],[[1,2,1,1],[1,0,3,2],[1,3,2,3],[1,2,0,1]],[[1,2,1,1],[1,0,3,3],[1,3,2,2],[1,2,0,1]],[[1,2,1,1],[1,0,4,2],[1,3,2,2],[1,2,0,1]],[[1,2,1,2],[1,0,3,2],[1,3,2,2],[1,2,0,1]],[[1,2,1,1],[1,0,3,2],[1,3,2,3],[1,1,2,0]],[[1,2,1,1],[1,0,3,3],[1,3,2,2],[1,1,2,0]],[[1,2,1,1],[1,0,4,2],[1,3,2,2],[1,1,2,0]],[[1,2,1,2],[1,0,3,2],[1,3,2,2],[1,1,2,0]],[[1,2,1,1],[1,0,3,2],[1,3,2,2],[1,1,1,2]],[[1,2,1,1],[1,0,3,2],[1,3,2,3],[1,1,1,1]],[[1,2,1,1],[1,0,3,3],[1,3,2,2],[1,1,1,1]],[[1,2,1,1],[1,0,4,2],[1,3,2,2],[1,1,1,1]],[[1,2,1,2],[1,0,3,2],[1,3,2,2],[1,1,1,1]],[[1,2,1,1],[1,0,3,2],[1,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,0,3,2],[1,3,2,2],[0,1,3,1]],[[1,2,1,1],[1,0,3,2],[1,3,2,3],[0,1,2,1]],[[1,2,1,1],[1,0,3,3],[1,3,2,2],[0,1,2,1]],[[1,2,1,2],[1,0,3,2],[1,3,2,2],[0,1,2,1]],[[1,2,1,1],[1,0,3,2],[1,3,2,1],[1,2,3,0]],[[1,2,1,1],[1,0,3,2],[1,3,2,1],[1,3,2,0]],[[1,0,3,1],[2,3,3,2],[1,2,0,2],[0,1,2,1]],[[1,0,2,2],[2,3,3,2],[1,2,0,2],[0,1,2,1]],[[1,0,2,1],[2,3,3,3],[1,2,0,2],[0,1,2,1]],[[1,0,3,1],[2,3,3,2],[1,2,0,2],[1,0,2,1]],[[1,0,2,2],[2,3,3,2],[1,2,0,2],[1,0,2,1]],[[1,0,2,1],[2,3,3,3],[1,2,0,2],[1,0,2,1]],[[1,2,1,1],[1,0,3,2],[1,3,2,1],[2,2,2,0]],[[1,2,1,1],[1,0,3,2],[1,4,2,1],[1,2,2,0]],[[1,2,1,1],[1,0,3,2],[1,3,2,0],[1,2,2,2]],[[1,2,1,1],[1,0,3,2],[1,3,2,0],[1,2,3,1]],[[1,2,1,1],[1,0,3,2],[1,3,2,0],[1,3,2,1]],[[1,2,1,1],[1,0,3,2],[1,3,2,0],[2,2,2,1]],[[1,2,1,1],[1,0,3,2],[1,4,2,0],[1,2,2,1]],[[1,0,3,1],[2,3,3,2],[1,2,1,2],[0,0,2,1]],[[1,0,2,2],[2,3,3,2],[1,2,1,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,3],[1,2,1,2],[0,0,2,1]],[[1,0,3,1],[2,3,3,2],[1,2,1,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,2],[1,2,1,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,3],[1,2,1,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,2],[1,2,1,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,2],[1,2,1,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,3],[1,2,1,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,2],[1,2,1,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,2],[1,2,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,3],[1,2,1,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,2],[1,2,1,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,2],[1,2,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,3],[1,2,1,2],[0,2,1,0]],[[1,2,1,1],[1,0,3,2],[1,3,1,2],[1,1,2,2]],[[1,2,1,1],[1,0,3,2],[1,3,1,2],[1,1,3,1]],[[1,2,1,1],[1,0,3,2],[1,3,1,3],[1,1,2,1]],[[1,2,1,1],[1,0,3,3],[1,3,1,2],[1,1,2,1]],[[1,2,1,1],[1,0,4,2],[1,3,1,2],[1,1,2,1]],[[1,2,1,2],[1,0,3,2],[1,3,1,2],[1,1,2,1]],[[1,2,1,1],[1,0,3,2],[1,3,0,2],[1,2,2,2]],[[1,0,3,1],[2,3,3,2],[1,2,1,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,2],[1,2,1,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,3],[1,2,1,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,2],[1,2,1,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,2],[1,2,1,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,3],[1,2,1,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,2],[1,2,1,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,2],[1,2,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,3],[1,2,1,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,2],[1,2,1,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,2],[1,2,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,3],[1,2,1,2],[1,1,1,0]],[[1,2,1,1],[1,0,3,2],[1,3,0,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,2],[1,3,0,2],[1,3,2,1]],[[1,2,1,1],[1,0,3,2],[1,3,0,2],[2,2,2,1]],[[1,2,1,1],[1,0,3,2],[1,3,0,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,2],[1,4,0,2],[1,2,2,1]],[[1,2,1,1],[1,0,3,3],[1,3,0,2],[1,2,2,1]],[[1,2,1,1],[1,0,4,2],[1,3,0,2],[1,2,2,1]],[[1,2,1,2],[1,0,3,2],[1,3,0,2],[1,2,2,1]],[[1,0,3,1],[2,3,3,2],[1,2,2,2],[0,1,0,1]],[[1,0,2,2],[2,3,3,2],[1,2,2,2],[0,1,0,1]],[[1,0,2,1],[2,3,3,3],[1,2,2,2],[0,1,0,1]],[[1,2,1,1],[1,0,3,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[1,0,3,2],[1,2,3,3],[0,2,2,0]],[[1,2,1,1],[1,0,3,2],[1,2,4,2],[0,2,2,0]],[[1,2,1,1],[1,0,3,3],[1,2,3,2],[0,2,2,0]],[[1,2,1,2],[1,0,3,2],[1,2,3,2],[0,2,2,0]],[[1,2,1,1],[1,0,3,2],[1,2,3,2],[0,2,1,2]],[[1,2,1,1],[1,0,3,2],[1,2,3,3],[0,2,1,1]],[[1,2,1,1],[1,0,3,2],[1,2,4,2],[0,2,1,1]],[[1,2,1,1],[1,0,3,3],[1,2,3,2],[0,2,1,1]],[[1,2,1,2],[1,0,3,2],[1,2,3,2],[0,2,1,1]],[[1,2,1,1],[1,0,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,1,1],[1,0,3,2],[1,2,3,1],[1,3,2,0]],[[1,2,1,1],[1,0,3,2],[1,2,3,1],[2,2,2,0]],[[1,2,1,1],[1,0,3,2],[1,2,4,1],[1,2,2,0]],[[1,2,1,1],[1,0,3,3],[1,2,3,1],[1,2,2,0]],[[1,2,1,1],[1,0,4,2],[1,2,3,1],[1,2,2,0]],[[1,2,1,2],[1,0,3,2],[1,2,3,1],[1,2,2,0]],[[1,2,1,1],[1,0,3,2],[1,2,4,1],[1,2,1,1]],[[1,2,1,1],[1,0,3,3],[1,2,3,1],[1,2,1,1]],[[1,2,1,1],[1,0,4,2],[1,2,3,1],[1,2,1,1]],[[1,2,1,2],[1,0,3,2],[1,2,3,1],[1,2,1,1]],[[1,2,1,1],[1,0,3,2],[1,2,3,1],[0,2,2,2]],[[1,2,1,1],[1,0,3,2],[1,2,3,1],[0,2,3,1]],[[1,2,1,1],[1,0,3,2],[1,2,4,1],[0,2,2,1]],[[1,2,1,1],[1,0,3,2],[1,2,3,0],[1,2,2,2]],[[1,2,1,1],[1,0,3,2],[1,2,3,0],[1,2,3,1]],[[1,2,1,1],[1,0,3,2],[1,2,3,0],[1,3,2,1]],[[1,2,1,1],[1,0,3,2],[1,2,3,0],[2,2,2,1]],[[1,2,1,1],[1,0,3,2],[1,2,4,0],[1,2,2,1]],[[1,2,1,1],[1,0,3,3],[1,2,3,0],[1,2,2,1]],[[1,0,3,1],[2,3,3,2],[1,2,2,2],[1,0,0,1]],[[1,0,2,2],[2,3,3,2],[1,2,2,2],[1,0,0,1]],[[1,0,2,1],[2,3,3,3],[1,2,2,2],[1,0,0,1]],[[1,2,1,1],[1,0,4,2],[1,2,3,0],[1,2,2,1]],[[1,2,1,2],[1,0,3,2],[1,2,3,0],[1,2,2,1]],[[1,2,1,1],[1,0,3,2],[1,2,2,3],[1,2,2,0]],[[1,2,1,1],[1,0,3,3],[1,2,2,2],[1,2,2,0]],[[1,2,1,1],[1,0,4,2],[1,2,2,2],[1,2,2,0]],[[1,2,1,2],[1,0,3,2],[1,2,2,2],[1,2,2,0]],[[1,2,1,1],[1,0,3,2],[1,2,2,2],[1,2,1,2]],[[1,2,1,1],[1,0,3,2],[1,2,2,3],[1,2,1,1]],[[1,2,1,1],[1,0,3,3],[1,2,2,2],[1,2,1,1]],[[1,2,1,1],[1,0,4,2],[1,2,2,2],[1,2,1,1]],[[1,2,1,2],[1,0,3,2],[1,2,2,2],[1,2,1,1]],[[1,2,1,1],[1,0,3,2],[1,2,2,2],[0,2,2,2]],[[1,2,1,1],[1,0,3,2],[1,2,2,2],[0,2,3,1]],[[1,2,1,1],[1,0,3,2],[1,2,2,3],[0,2,2,1]],[[1,2,1,1],[1,0,3,3],[1,2,2,2],[0,2,2,1]],[[1,2,1,2],[1,0,3,2],[1,2,2,2],[0,2,2,1]],[[1,2,1,1],[1,0,3,2],[1,2,1,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,2],[1,2,1,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,2],[1,2,1,2],[1,3,2,1]],[[1,2,1,1],[1,0,3,2],[1,2,1,2],[2,2,2,1]],[[1,2,1,1],[1,0,3,2],[1,2,1,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,3],[1,2,1,2],[1,2,2,1]],[[1,2,1,1],[1,0,4,2],[1,2,1,2],[1,2,2,1]],[[1,2,1,2],[1,0,3,2],[1,2,1,2],[1,2,2,1]],[[1,2,1,1],[1,0,3,2],[1,1,3,2],[0,2,2,2]],[[1,2,1,1],[1,0,3,2],[1,1,3,2],[0,2,3,1]],[[1,2,1,1],[1,0,3,2],[1,1,3,3],[0,2,2,1]],[[1,2,1,1],[1,0,3,3],[1,1,3,2],[0,2,2,1]],[[1,2,1,2],[1,0,3,2],[1,1,3,2],[0,2,2,1]],[[1,2,1,1],[1,0,3,2],[0,3,3,3],[1,2,1,0]],[[1,2,1,1],[1,0,3,2],[0,3,4,2],[1,2,1,0]],[[1,2,1,1],[1,0,3,3],[0,3,3,2],[1,2,1,0]],[[1,2,1,2],[1,0,3,2],[0,3,3,2],[1,2,1,0]],[[1,2,1,1],[1,0,3,2],[0,3,3,2],[1,2,0,2]],[[1,2,1,1],[1,0,3,2],[0,3,3,3],[1,2,0,1]],[[1,2,1,1],[1,0,3,2],[0,3,4,2],[1,2,0,1]],[[1,2,1,1],[1,0,3,3],[0,3,3,2],[1,2,0,1]],[[1,2,1,2],[1,0,3,2],[0,3,3,2],[1,2,0,1]],[[1,2,1,1],[1,0,3,2],[0,3,3,2],[1,1,3,0]],[[1,2,1,1],[1,0,3,2],[0,3,3,3],[1,1,2,0]],[[1,2,1,1],[1,0,3,2],[0,3,4,2],[1,1,2,0]],[[1,2,1,1],[1,0,3,3],[0,3,3,2],[1,1,2,0]],[[1,2,1,2],[1,0,3,2],[0,3,3,2],[1,1,2,0]],[[1,2,1,1],[1,0,3,2],[0,3,3,2],[1,1,1,2]],[[1,2,1,1],[1,0,3,2],[0,3,3,3],[1,1,1,1]],[[1,2,1,1],[1,0,3,2],[0,3,4,2],[1,1,1,1]],[[1,2,1,1],[1,0,3,3],[0,3,3,2],[1,1,1,1]],[[1,2,1,2],[1,0,3,2],[0,3,3,2],[1,1,1,1]],[[1,2,1,1],[1,0,3,2],[0,3,3,2],[1,0,2,2]],[[1,2,1,1],[1,0,3,2],[0,3,3,3],[1,0,2,1]],[[1,2,1,1],[1,0,3,2],[0,3,4,2],[1,0,2,1]],[[1,2,1,1],[1,0,3,3],[0,3,3,2],[1,0,2,1]],[[1,2,1,2],[1,0,3,2],[0,3,3,2],[1,0,2,1]],[[1,0,3,1],[2,3,3,2],[1,2,3,0],[0,0,2,1]],[[1,0,2,2],[2,3,3,2],[1,2,3,0],[0,0,2,1]],[[1,0,2,1],[2,3,4,2],[1,2,3,0],[0,0,2,1]],[[2,0,2,1],[2,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,0,3,1],[2,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,0,2,2],[2,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,0,2,1],[3,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,0,2,1],[2,4,3,2],[1,2,3,0],[0,1,1,1]],[[1,0,2,1],[2,3,4,2],[1,2,3,0],[0,1,1,1]],[[2,0,2,1],[2,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,0,3,1],[2,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,0,2,2],[2,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,0,2,1],[3,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,0,2,1],[2,4,3,2],[1,2,3,0],[0,1,2,0]],[[1,0,2,1],[2,3,4,2],[1,2,3,0],[0,1,2,0]],[[2,0,2,1],[2,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,0,3,1],[2,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,0,2,2],[2,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,0,2,1],[3,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,0,2,1],[2,4,3,2],[1,2,3,0],[0,2,0,1]],[[1,0,2,1],[2,3,4,2],[1,2,3,0],[0,2,0,1]],[[2,0,2,1],[2,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,0,3,1],[2,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,0,2,2],[2,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,0,2,1],[3,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,0,2,1],[2,4,3,2],[1,2,3,0],[0,2,1,0]],[[1,0,2,1],[2,3,4,2],[1,2,3,0],[0,2,1,0]],[[1,2,1,1],[1,0,3,2],[0,3,3,1],[1,1,2,2]],[[1,2,1,1],[1,0,3,2],[0,3,3,1],[1,1,3,1]],[[1,2,1,1],[1,0,3,2],[0,3,4,1],[1,1,2,1]],[[2,0,2,1],[2,3,3,2],[1,2,3,0],[1,0,1,1]],[[1,0,3,1],[2,3,3,2],[1,2,3,0],[1,0,1,1]],[[1,0,2,2],[2,3,3,2],[1,2,3,0],[1,0,1,1]],[[1,0,2,1],[3,3,3,2],[1,2,3,0],[1,0,1,1]],[[1,0,2,1],[2,4,3,2],[1,2,3,0],[1,0,1,1]],[[1,0,2,1],[2,3,4,2],[1,2,3,0],[1,0,1,1]],[[2,0,2,1],[2,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,0,3,1],[2,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,0,2,2],[2,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,0,2,1],[3,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,0,2,1],[2,4,3,2],[1,2,3,0],[1,0,2,0]],[[1,0,2,1],[2,3,4,2],[1,2,3,0],[1,0,2,0]],[[2,0,2,1],[2,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,0,3,1],[2,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,0,2,2],[2,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,0,2,1],[3,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,0,2,1],[2,4,3,2],[1,2,3,0],[1,1,0,1]],[[1,0,2,1],[2,3,4,2],[1,2,3,0],[1,1,0,1]],[[2,0,2,1],[2,3,3,2],[1,2,3,0],[1,1,1,0]],[[1,0,3,1],[2,3,3,2],[1,2,3,0],[1,1,1,0]],[[1,0,2,2],[2,3,3,2],[1,2,3,0],[1,1,1,0]],[[1,0,2,1],[3,3,3,2],[1,2,3,0],[1,1,1,0]],[[1,0,2,1],[2,4,3,2],[1,2,3,0],[1,1,1,0]],[[1,0,2,1],[2,3,4,2],[1,2,3,0],[1,1,1,0]],[[1,2,1,1],[1,0,3,2],[0,3,2,2],[1,1,2,2]],[[1,2,1,1],[1,0,3,2],[0,3,2,2],[1,1,3,1]],[[1,2,1,1],[1,0,3,2],[0,3,2,3],[1,1,2,1]],[[1,2,1,1],[1,0,3,3],[0,3,2,2],[1,1,2,1]],[[1,2,1,2],[1,0,3,2],[0,3,2,2],[1,1,2,1]],[[1,2,1,1],[1,0,3,2],[0,2,3,2],[1,2,3,0]],[[1,2,1,1],[1,0,3,2],[0,2,3,2],[1,3,2,0]],[[1,2,1,1],[1,0,3,2],[0,2,3,3],[1,2,2,0]],[[1,2,1,1],[1,0,3,2],[0,2,4,2],[1,2,2,0]],[[1,2,1,1],[1,0,3,3],[0,2,3,2],[1,2,2,0]],[[1,2,1,2],[1,0,3,2],[0,2,3,2],[1,2,2,0]],[[1,2,1,1],[1,0,3,2],[0,2,3,2],[1,2,1,2]],[[1,2,1,1],[1,0,3,2],[0,2,3,3],[1,2,1,1]],[[1,2,1,1],[1,0,3,2],[0,2,4,2],[1,2,1,1]],[[1,2,1,1],[1,0,3,3],[0,2,3,2],[1,2,1,1]],[[1,2,1,2],[1,0,3,2],[0,2,3,2],[1,2,1,1]],[[1,2,1,1],[1,0,3,2],[0,2,3,1],[1,2,2,2]],[[1,2,1,1],[1,0,3,2],[0,2,3,1],[1,2,3,1]],[[1,2,1,1],[1,0,3,2],[0,2,3,1],[1,3,2,1]],[[1,2,1,1],[1,0,3,2],[0,2,4,1],[1,2,2,1]],[[1,2,1,1],[1,0,3,2],[0,2,2,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,2],[0,2,2,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,2],[0,2,2,2],[1,3,2,1]],[[1,2,1,1],[1,0,3,2],[0,2,2,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,3],[0,2,2,2],[1,2,2,1]],[[1,2,1,2],[1,0,3,2],[0,2,2,2],[1,2,2,1]],[[1,2,1,1],[1,0,3,2],[0,1,3,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,2],[0,1,3,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,2],[0,1,3,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,3],[0,1,3,2],[1,2,2,1]],[[1,2,1,2],[1,0,3,2],[0,1,3,2],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[1,0,3,1],[2,4,3,2],[1,2,0,0]],[[1,2,1,1],[1,0,3,1],[3,3,3,2],[1,2,0,0]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[1,0,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[1,0,3,1],[2,3,4,2],[1,1,1,0]],[[1,2,1,1],[1,0,3,1],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[1,0,3,1],[3,3,3,2],[1,1,1,0]],[[1,2,1,1],[1,0,4,1],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[2,1,0,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,3],[1,1,0,1]],[[1,2,1,1],[1,0,3,1],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[1,0,3,1],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[1,0,3,1],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,0,4,1],[2,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[2,0,2,0]],[[1,2,1,1],[1,0,3,1],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[1,0,3,1],[2,3,4,2],[1,0,2,0]],[[1,2,1,1],[1,0,3,1],[2,4,3,2],[1,0,2,0]],[[1,2,1,1],[1,0,3,1],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[1,0,4,1],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[1,0,1,2]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,3],[1,0,1,1]],[[1,2,1,1],[1,0,3,1],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[1,0,3,1],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[1,0,3,1],[3,3,3,2],[1,0,1,1]],[[1,2,1,1],[1,0,4,1],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[1,0,3,1],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[1,0,3,1],[2,3,4,2],[0,2,1,0]],[[1,2,1,1],[1,0,3,1],[2,4,3,2],[0,2,1,0]],[[1,2,1,1],[1,0,3,1],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,0,4,1],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[1,0,3,1],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[1,0,3,1],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[1,0,3,1],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,0,4,1],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[1,0,3,1],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[1,0,3,1],[2,3,4,2],[0,1,2,0]],[[1,2,1,1],[1,0,3,1],[2,4,3,2],[0,1,2,0]],[[1,2,1,1],[1,0,3,1],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,0,4,1],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[0,1,1,2]],[[1,2,1,1],[1,0,3,1],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[1,0,3,1],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[1,0,3,1],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[1,0,3,1],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,0,4,1],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,2],[0,0,2,2]],[[1,2,1,1],[1,0,3,1],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[1,0,4,1],[2,3,3,2],[0,0,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[1,0,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,1,1],[1,0,3,1],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[1,0,3,1],[3,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,0,4,1],[2,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[1,0,3,1],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,1],[2,0,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[1,0,3,1],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[1,0,3,1],[3,3,3,1],[1,0,2,1]],[[1,2,1,1],[1,0,4,1],[2,3,3,1],[1,0,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[1,0,3,1],[2,3,4,1],[0,2,1,1]],[[1,2,1,1],[1,0,3,1],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[1,0,3,1],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[1,0,4,1],[2,3,3,1],[0,2,1,1]],[[1,2,1,1],[1,0,3,1],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,0,3,1],[2,3,3,1],[0,1,3,1]],[[1,2,1,1],[1,0,3,1],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[1,0,3,1],[2,4,3,1],[0,1,2,1]],[[1,2,1,1],[1,0,3,1],[3,3,3,1],[0,1,2,1]],[[1,2,1,1],[1,0,4,1],[2,3,3,1],[0,1,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[1,0,3,1],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[1,0,3,1],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[1,0,3,1],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[1,0,3,1],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[1,0,3,1],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,2,2],[0,2,3,0]],[[1,2,1,1],[1,0,3,1],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[1,0,3,1],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[1,0,3,1],[3,3,2,2],[0,2,2,0]],[[1,2,1,1],[1,0,3,1],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,0,3,1],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[1,0,3,1],[2,3,2,3],[0,1,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[1,0,3,1],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[1,0,3,1],[3,3,2,1],[1,1,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[1,0,3,1],[2,3,2,1],[0,2,3,1]],[[1,2,1,1],[1,0,3,1],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[1,0,3,1],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[1,0,3,1],[3,3,2,1],[0,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,1,2],[2,1,2,1]],[[1,2,1,1],[1,0,3,1],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[1,0,3,1],[3,3,1,2],[1,1,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[1,0,3,1],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[1,0,3,1],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[1,0,3,1],[2,3,1,3],[0,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[1,0,3,1],[3,3,1,2],[0,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[1,0,3,1],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[1,0,3,1],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[1,0,3,1],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[1,0,3,1],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[1,0,3,1],[3,2,3,2],[1,2,0,1]],[[1,2,1,1],[1,0,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[1,0,3,1],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[1,0,3,1],[2,2,3,3],[0,2,2,0]],[[1,2,1,1],[1,0,3,1],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[1,0,4,1],[2,2,3,2],[0,2,2,0]],[[1,2,1,1],[1,0,3,1],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[1,0,3,1],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[1,0,3,1],[2,2,4,2],[0,2,1,1]],[[1,2,1,1],[1,0,4,1],[2,2,3,2],[0,2,1,1]],[[1,2,1,1],[1,0,3,1],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[1,0,3,1],[2,2,3,1],[2,2,1,1]],[[1,2,1,1],[1,0,3,1],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[1,0,3,1],[2,2,3,1],[0,2,2,2]],[[1,2,1,1],[1,0,3,1],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[1,0,3,1],[2,2,3,1],[0,3,2,1]],[[1,2,1,1],[1,0,3,1],[2,2,4,1],[0,2,2,1]],[[1,2,1,1],[1,0,4,1],[2,2,3,1],[0,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[1,0,3,1],[2,2,2,2],[1,3,2,0]],[[1,2,1,1],[1,0,3,1],[2,2,2,2],[2,2,2,0]],[[1,2,1,1],[1,0,3,1],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[1,0,3,1],[2,2,2,2],[0,2,2,2]],[[1,2,1,1],[1,0,3,1],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[1,0,3,1],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[1,0,3,1],[2,2,2,3],[0,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[1,0,3,1],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[1,0,3,1],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[1,0,3,1],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[1,0,3,1],[3,2,2,1],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,1],[2,2,1,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,1],[2,2,1,2],[1,3,2,1]],[[1,2,1,1],[1,0,3,1],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,2,1,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[3,2,1,2],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,1,3,2],[1,2,3,0]],[[1,2,1,1],[1,0,3,1],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[1,0,3,1],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[1,0,3,1],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[1,0,3,1],[2,1,4,2],[1,2,2,0]],[[1,2,1,1],[1,0,3,1],[3,1,3,2],[1,2,2,0]],[[1,2,1,1],[1,0,4,1],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[1,0,3,1],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[1,0,3,1],[2,1,3,3],[1,2,1,1]],[[1,2,1,1],[1,0,3,1],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[1,0,4,1],[2,1,3,2],[1,2,1,1]],[[1,2,1,1],[1,0,3,1],[2,1,3,2],[0,2,2,2]],[[1,2,1,1],[1,0,3,1],[2,1,3,2],[0,2,3,1]],[[1,2,1,1],[1,0,3,1],[2,1,3,3],[0,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[1,0,3,1],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[1,0,3,1],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[1,0,3,1],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[3,1,3,1],[1,2,2,1]],[[1,2,1,1],[1,0,4,1],[2,1,3,1],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,1],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,1],[2,1,2,2],[1,3,2,1]],[[1,2,1,1],[1,0,3,1],[2,1,2,2],[2,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[3,1,2,2],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[2,0,3,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,1],[2,0,3,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,1],[2,0,3,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[1,0,3,1],[1,3,3,2],[2,2,1,0]],[[1,2,1,1],[1,0,3,1],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[1,0,3,1],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[1,0,3,1],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[1,0,4,1],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[1,0,3,1],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[1,0,3,1],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[1,0,3,1],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[1,0,3,1],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[1,0,3,1],[1,3,4,2],[1,2,0,1]],[[1,2,1,1],[1,0,3,1],[1,4,3,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,2],[1,3,0,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,2],[1,3,0,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,3],[1,3,0,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,2],[1,3,0,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,2],[1,3,0,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,3],[1,3,0,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,2],[1,3,0,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,2],[1,3,0,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,3],[1,3,0,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,2],[1,3,0,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,2],[1,3,0,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,3],[1,3,0,2],[0,2,1,0]],[[1,2,1,1],[1,0,4,1],[1,3,3,2],[1,2,0,1]],[[1,2,1,1],[1,0,3,1],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[1,0,3,1],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[1,0,3,1],[1,3,4,2],[1,1,2,0]],[[1,2,1,1],[1,0,3,1],[1,4,3,2],[1,1,2,0]],[[1,2,1,1],[1,0,4,1],[1,3,3,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,2],[1,3,0,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,2],[1,3,0,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,3],[1,3,0,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,2],[1,3,0,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,2],[1,3,0,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,3],[1,3,0,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,2],[1,3,0,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,2],[1,3,0,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,3],[1,3,0,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,2],[1,3,0,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,2],[1,3,0,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,3],[1,3,0,2],[1,1,1,0]],[[1,2,1,1],[1,0,3,1],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[1,0,3,1],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[1,0,3,1],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[1,0,3,1],[1,4,3,2],[1,1,1,1]],[[1,2,1,1],[1,0,4,1],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[1,0,3,1],[1,3,3,2],[1,0,2,2]],[[1,2,1,1],[1,0,3,1],[1,3,3,3],[1,0,2,1]],[[1,2,1,1],[1,0,3,1],[1,3,4,2],[1,0,2,1]],[[1,0,3,1],[2,3,3,2],[1,3,0,2],[1,2,0,0]],[[1,0,2,2],[2,3,3,2],[1,3,0,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,3],[1,3,0,2],[1,2,0,0]],[[1,2,1,1],[1,0,3,1],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[1,0,3,1],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[1,0,3,1],[1,3,4,1],[1,2,1,1]],[[1,2,1,1],[1,0,3,1],[1,4,3,1],[1,2,1,1]],[[1,2,1,1],[1,0,4,1],[1,3,3,1],[1,2,1,1]],[[1,2,1,1],[1,0,3,1],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[1,0,3,1],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[1,0,3,1],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[1,0,3,1],[1,4,3,1],[1,1,2,1]],[[1,2,1,1],[1,0,4,1],[1,3,3,1],[1,1,2,1]],[[1,2,1,1],[1,0,3,1],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[1,0,3,1],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[1,0,3,1],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[1,0,3,1],[1,4,2,2],[1,2,2,0]],[[1,2,1,1],[1,0,3,1],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[1,0,3,1],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[1,0,3,1],[1,3,2,3],[1,1,2,1]],[[1,2,1,1],[1,0,3,1],[1,3,2,1],[1,2,2,2]],[[1,2,1,1],[1,0,3,1],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[1,0,3,1],[1,3,2,1],[1,3,2,1]],[[1,2,1,1],[1,0,3,1],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[1,0,3,1],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[1,3,1,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,1],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,1],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[1,0,3,1],[1,3,1,2],[2,2,2,1]],[[1,2,1,1],[1,0,3,1],[1,3,1,3],[1,2,2,1]],[[2,0,2,1],[2,3,3,2],[1,3,1,0],[0,2,2,0]],[[1,0,3,1],[2,3,3,2],[1,3,1,0],[0,2,2,0]],[[1,0,2,2],[2,3,3,2],[1,3,1,0],[0,2,2,0]],[[1,0,2,1],[3,3,3,2],[1,3,1,0],[0,2,2,0]],[[1,0,2,1],[2,4,3,2],[1,3,1,0],[0,2,2,0]],[[1,0,2,1],[2,3,4,2],[1,3,1,0],[0,2,2,0]],[[1,0,2,1],[2,3,3,2],[1,4,1,0],[0,2,2,0]],[[1,0,2,1],[2,3,3,2],[1,3,1,0],[0,3,2,0]],[[2,0,2,1],[2,3,3,2],[1,3,1,0],[1,1,2,0]],[[1,0,3,1],[2,3,3,2],[1,3,1,0],[1,1,2,0]],[[1,0,2,2],[2,3,3,2],[1,3,1,0],[1,1,2,0]],[[1,0,2,1],[3,3,3,2],[1,3,1,0],[1,1,2,0]],[[1,0,2,1],[2,4,3,2],[1,3,1,0],[1,1,2,0]],[[1,0,2,1],[2,3,4,2],[1,3,1,0],[1,1,2,0]],[[1,0,2,1],[2,3,3,2],[1,4,1,0],[1,1,2,0]],[[1,2,1,1],[1,0,3,1],[1,4,1,2],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[1,0,3,1],[1,2,3,2],[1,3,2,0]],[[1,2,1,1],[1,0,3,1],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[1,0,3,1],[1,2,3,3],[1,2,2,0]],[[1,2,1,1],[1,0,3,1],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[1,0,4,1],[1,2,3,2],[1,2,2,0]],[[1,2,1,1],[1,0,3,1],[1,2,3,2],[1,2,1,2]],[[1,2,1,1],[1,0,3,1],[1,2,3,3],[1,2,1,1]],[[1,2,1,1],[1,0,3,1],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[1,0,4,1],[1,2,3,2],[1,2,1,1]],[[1,2,1,1],[1,0,3,1],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[1,0,3,1],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[1,0,3,1],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[1,0,3,1],[1,2,3,1],[2,2,2,1]],[[1,2,1,1],[1,0,3,1],[1,2,4,1],[1,2,2,1]],[[1,2,1,1],[1,0,4,1],[1,2,3,1],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,1],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,1],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[1,0,3,1],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[1,0,3,1],[1,2,2,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,1],[1,1,3,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,1],[1,1,3,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,1],[1,1,3,3],[1,2,2,1]],[[1,2,1,1],[1,0,3,0],[2,3,3,2],[1,0,2,2]],[[1,2,1,1],[1,0,3,0],[2,3,3,2],[1,0,3,1]],[[1,2,1,1],[1,0,3,0],[2,3,4,2],[1,0,2,1]],[[1,2,1,1],[1,0,3,0],[2,3,3,2],[0,1,2,2]],[[1,2,1,1],[1,0,3,0],[2,3,3,2],[0,1,3,1]],[[1,2,1,1],[1,0,3,0],[2,3,4,2],[0,1,2,1]],[[1,0,3,1],[2,3,3,2],[1,3,1,2],[0,0,1,1]],[[1,0,2,2],[2,3,3,2],[1,3,1,2],[0,0,1,1]],[[1,0,2,1],[2,3,3,3],[1,3,1,2],[0,0,1,1]],[[1,0,3,1],[2,3,3,2],[1,3,1,2],[0,0,2,0]],[[1,0,2,2],[2,3,3,2],[1,3,1,2],[0,0,2,0]],[[1,0,2,1],[2,3,3,3],[1,3,1,2],[0,0,2,0]],[[1,2,1,1],[1,0,3,0],[2,2,3,2],[0,2,2,2]],[[1,2,1,1],[1,0,3,0],[2,2,3,2],[0,2,3,1]],[[1,2,1,1],[1,0,3,0],[2,2,3,2],[0,3,2,1]],[[1,2,1,1],[1,0,3,0],[2,2,4,2],[0,2,2,1]],[[1,2,1,1],[1,0,3,0],[2,1,3,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,0],[2,1,3,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,0],[2,1,3,2],[1,3,2,1]],[[1,2,1,1],[1,0,3,0],[2,1,3,2],[2,2,2,1]],[[1,2,1,1],[1,0,3,0],[2,1,4,2],[1,2,2,1]],[[1,2,1,1],[1,0,3,0],[1,3,3,2],[1,1,2,2]],[[1,2,1,1],[1,0,3,0],[1,3,3,2],[1,1,3,1]],[[1,2,1,1],[1,0,3,0],[1,3,4,2],[1,1,2,1]],[[1,2,1,1],[1,0,3,0],[1,2,3,2],[1,2,2,2]],[[1,2,1,1],[1,0,3,0],[1,2,3,2],[1,2,3,1]],[[1,2,1,1],[1,0,3,0],[1,2,3,2],[1,3,2,1]],[[1,2,1,1],[1,0,3,0],[1,2,3,2],[2,2,2,1]],[[1,2,1,1],[1,0,3,0],[1,2,4,2],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[1,0,2,2],[2,4,3,2],[1,2,0,0]],[[1,2,1,1],[1,0,2,2],[3,3,3,2],[1,2,0,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[1,0,2,2],[2,3,4,2],[1,1,1,0]],[[1,2,1,1],[1,0,2,2],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[1,0,2,2],[3,3,3,2],[1,1,1,0]],[[1,2,1,1],[1,0,2,3],[2,3,3,2],[1,1,1,0]],[[1,2,1,2],[1,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[2,1,0,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,3],[1,1,0,1]],[[1,2,1,1],[1,0,2,2],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[1,0,2,2],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[1,0,2,2],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,0,2,3],[2,3,3,2],[1,1,0,1]],[[1,2,1,2],[1,0,2,2],[2,3,3,2],[1,1,0,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[2,0,2,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[1,0,2,2],[2,3,4,2],[1,0,2,0]],[[1,2,1,1],[1,0,2,2],[2,4,3,2],[1,0,2,0]],[[1,2,1,1],[1,0,2,2],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[1,0,2,3],[2,3,3,2],[1,0,2,0]],[[1,2,1,2],[1,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[1,0,1,2]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,3],[1,0,1,1]],[[1,2,1,1],[1,0,2,2],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[1,0,2,2],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[1,0,2,2],[3,3,3,2],[1,0,1,1]],[[1,2,1,1],[1,0,2,3],[2,3,3,2],[1,0,1,1]],[[1,2,1,2],[1,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[1,0,2,2],[2,3,4,2],[0,2,1,0]],[[1,2,1,1],[1,0,2,2],[2,4,3,2],[0,2,1,0]],[[1,2,1,1],[1,0,2,2],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,0,2,3],[2,3,3,2],[0,2,1,0]],[[1,2,1,2],[1,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[1,0,2,2],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[1,0,2,2],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[1,0,2,2],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,0,2,3],[2,3,3,2],[0,2,0,1]],[[1,2,1,2],[1,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[1,0,2,2],[2,3,4,2],[0,1,2,0]],[[1,2,1,1],[1,0,2,2],[2,4,3,2],[0,1,2,0]],[[2,0,2,1],[2,3,3,2],[1,3,2,0],[0,1,1,1]],[[1,0,3,1],[2,3,3,2],[1,3,2,0],[0,1,1,1]],[[1,0,2,2],[2,3,3,2],[1,3,2,0],[0,1,1,1]],[[1,0,2,1],[3,3,3,2],[1,3,2,0],[0,1,1,1]],[[1,0,2,1],[2,4,3,2],[1,3,2,0],[0,1,1,1]],[[1,0,2,1],[2,3,4,2],[1,3,2,0],[0,1,1,1]],[[2,0,2,1],[2,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,0,3,1],[2,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,0,2,2],[2,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,0,2,1],[3,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,0,2,1],[2,4,3,2],[1,3,2,0],[0,1,2,0]],[[1,0,2,1],[2,3,4,2],[1,3,2,0],[0,1,2,0]],[[1,0,2,1],[2,3,3,2],[1,4,2,0],[0,1,2,0]],[[2,0,2,1],[2,3,3,2],[1,3,2,0],[0,2,0,1]],[[1,0,3,1],[2,3,3,2],[1,3,2,0],[0,2,0,1]],[[1,0,2,2],[2,3,3,2],[1,3,2,0],[0,2,0,1]],[[1,0,2,1],[3,3,3,2],[1,3,2,0],[0,2,0,1]],[[1,0,2,1],[2,4,3,2],[1,3,2,0],[0,2,0,1]],[[1,0,2,1],[2,3,4,2],[1,3,2,0],[0,2,0,1]],[[1,0,2,1],[2,3,3,2],[1,4,2,0],[0,2,0,1]],[[2,0,2,1],[2,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,0,3,1],[2,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,0,2,2],[2,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,0,2,1],[3,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,0,2,1],[2,4,3,2],[1,3,2,0],[0,2,1,0]],[[1,0,2,1],[2,3,4,2],[1,3,2,0],[0,2,1,0]],[[1,0,2,1],[2,3,3,2],[1,4,2,0],[0,2,1,0]],[[1,0,2,1],[2,3,3,2],[1,3,2,0],[0,3,1,0]],[[1,2,1,1],[1,0,2,2],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,0,2,3],[2,3,3,2],[0,1,2,0]],[[1,2,1,2],[1,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[0,1,1,2]],[[1,2,1,1],[1,0,2,2],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[1,0,2,2],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[1,0,2,2],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[1,0,2,2],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,0,2,3],[2,3,3,2],[0,1,1,1]],[[1,2,1,2],[1,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,2],[0,0,2,2]],[[2,0,2,1],[2,3,3,2],[1,3,2,0],[1,0,1,1]],[[1,0,3,1],[2,3,3,2],[1,3,2,0],[1,0,1,1]],[[1,0,2,2],[2,3,3,2],[1,3,2,0],[1,0,1,1]],[[1,0,2,1],[3,3,3,2],[1,3,2,0],[1,0,1,1]],[[1,0,2,1],[2,4,3,2],[1,3,2,0],[1,0,1,1]],[[1,0,2,1],[2,3,4,2],[1,3,2,0],[1,0,1,1]],[[2,0,2,1],[2,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,0,3,1],[2,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,0,2,2],[2,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,0,2,1],[3,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,0,2,1],[2,4,3,2],[1,3,2,0],[1,0,2,0]],[[1,0,2,1],[2,3,4,2],[1,3,2,0],[1,0,2,0]],[[1,0,2,1],[2,3,3,2],[1,4,2,0],[1,0,2,0]],[[2,0,2,1],[2,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,0,3,1],[2,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,0,2,2],[2,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,0,2,1],[3,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,0,2,1],[2,4,3,2],[1,3,2,0],[1,1,0,1]],[[1,0,2,1],[2,3,4,2],[1,3,2,0],[1,1,0,1]],[[1,0,2,1],[2,3,3,2],[1,4,2,0],[1,1,0,1]],[[2,0,2,1],[2,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,0,3,1],[2,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,0,2,2],[2,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,0,2,1],[3,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,0,2,1],[2,4,3,2],[1,3,2,0],[1,1,1,0]],[[1,0,2,1],[2,3,4,2],[1,3,2,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,2],[1,4,2,0],[1,1,1,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[1,0,2,2],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[1,0,2,3],[2,3,3,2],[0,0,2,1]],[[1,2,1,2],[1,0,2,2],[2,3,3,2],[0,0,2,1]],[[2,0,2,1],[2,3,3,2],[1,3,2,0],[1,2,0,0]],[[1,0,3,1],[2,3,3,2],[1,3,2,0],[1,2,0,0]],[[1,0,2,2],[2,3,3,2],[1,3,2,0],[1,2,0,0]],[[1,0,2,1],[3,3,3,2],[1,3,2,0],[1,2,0,0]],[[1,0,2,1],[2,4,3,2],[1,3,2,0],[1,2,0,0]],[[1,0,2,1],[2,3,4,2],[1,3,2,0],[1,2,0,0]],[[1,0,2,1],[2,3,3,2],[1,4,2,0],[1,2,0,0]],[[1,2,1,1],[1,0,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[1,0,2,2],[2,3,4,1],[1,1,1,1]],[[1,2,1,1],[1,0,2,2],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[1,0,2,2],[3,3,3,1],[1,1,1,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[1,0,2,2],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,1],[2,0,2,1]],[[1,2,1,1],[1,0,2,2],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[1,0,2,2],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[1,0,2,2],[3,3,3,1],[1,0,2,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[1,0,2,2],[2,3,4,1],[0,2,1,1]],[[1,2,1,1],[1,0,2,2],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[1,0,2,2],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[1,0,2,2],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[1,0,2,2],[2,3,3,1],[0,1,3,1]],[[1,2,1,1],[1,0,2,2],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[1,0,2,2],[2,4,3,1],[0,1,2,1]],[[1,2,1,1],[1,0,2,2],[3,3,3,1],[0,1,2,1]],[[1,2,1,1],[1,0,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[1,0,2,2],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[1,0,2,2],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[1,0,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[1,0,2,2],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[1,0,2,2],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[1,0,2,3],[2,3,2,2],[1,0,2,1]],[[1,2,1,2],[1,0,2,2],[2,3,2,2],[1,0,2,1]],[[1,2,1,1],[1,0,2,2],[2,3,2,2],[0,2,3,0]],[[1,2,1,1],[1,0,2,2],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[1,0,2,2],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[1,0,2,2],[3,3,2,2],[0,2,2,0]],[[1,2,1,1],[1,0,2,2],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[1,0,2,2],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[1,0,2,2],[2,3,2,3],[0,1,2,1]],[[1,2,1,1],[1,0,2,3],[2,3,2,2],[0,1,2,1]],[[1,2,1,2],[1,0,2,2],[2,3,2,2],[0,1,2,1]],[[1,2,1,1],[1,0,2,2],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[1,0,2,2],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[1,0,2,2],[3,3,2,1],[1,1,2,1]],[[1,2,1,1],[1,0,2,2],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[1,0,2,2],[2,3,2,1],[0,2,3,1]],[[1,2,1,1],[1,0,2,2],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[1,0,2,2],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[1,0,2,2],[3,3,2,1],[0,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,3,1,2],[2,1,2,1]],[[1,2,1,1],[1,0,2,2],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[1,0,2,2],[3,3,1,2],[1,1,2,1]],[[1,2,1,1],[1,0,2,2],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[1,0,2,2],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[1,0,2,2],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[1,0,2,2],[2,3,1,3],[0,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[1,0,2,2],[3,3,1,2],[0,2,2,1]],[[1,2,1,1],[1,0,2,3],[2,3,1,2],[0,2,2,1]],[[1,2,1,2],[1,0,2,2],[2,3,1,2],[0,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[1,0,2,2],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[1,0,2,2],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[1,0,2,2],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[1,0,2,2],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[1,0,2,2],[3,2,3,2],[1,2,0,1]],[[1,2,1,1],[1,0,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[1,0,2,2],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[1,0,2,2],[2,2,3,3],[0,2,2,0]],[[1,2,1,1],[1,0,2,2],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[1,0,2,3],[2,2,3,2],[0,2,2,0]],[[1,2,1,2],[1,0,2,2],[2,2,3,2],[0,2,2,0]],[[1,2,1,1],[1,0,2,2],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[1,0,2,2],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[1,0,2,2],[2,2,4,2],[0,2,1,1]],[[1,2,1,1],[1,0,2,3],[2,2,3,2],[0,2,1,1]],[[1,2,1,2],[1,0,2,2],[2,2,3,2],[0,2,1,1]],[[1,2,1,1],[1,0,2,2],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[1,0,2,2],[2,2,3,1],[2,2,1,1]],[[1,2,1,1],[1,0,2,2],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[1,0,2,2],[2,2,3,1],[0,2,2,2]],[[1,0,3,1],[2,3,3,2],[1,3,2,2],[0,0,0,1]],[[1,0,2,2],[2,3,3,2],[1,3,2,2],[0,0,0,1]],[[1,0,2,1],[2,3,3,3],[1,3,2,2],[0,0,0,1]],[[1,2,1,1],[1,0,2,2],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[1,0,2,2],[2,2,3,1],[0,3,2,1]],[[1,2,1,1],[1,0,2,2],[2,2,4,1],[0,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[1,0,2,2],[2,2,2,2],[1,3,2,0]],[[1,2,1,1],[1,0,2,2],[2,2,2,2],[2,2,2,0]],[[1,2,1,1],[1,0,2,2],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[1,0,2,2],[2,2,2,2],[0,2,2,2]],[[1,2,1,1],[1,0,2,2],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[1,0,2,2],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[1,0,2,2],[2,2,2,3],[0,2,2,1]],[[1,2,1,1],[1,0,2,3],[2,2,2,2],[0,2,2,1]],[[1,2,1,2],[1,0,2,2],[2,2,2,2],[0,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[1,0,2,2],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[1,0,2,2],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[1,0,2,2],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[1,0,2,2],[3,2,2,1],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[1,0,2,2],[2,2,1,2],[1,2,3,1]],[[1,2,1,1],[1,0,2,2],[2,2,1,2],[1,3,2,1]],[[1,2,1,1],[1,0,2,2],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,2,1,3],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[3,2,1,2],[1,2,2,1]],[[1,2,1,1],[1,0,2,3],[2,2,1,2],[1,2,2,1]],[[1,2,1,2],[1,0,2,2],[2,2,1,2],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,1,3,2],[1,2,3,0]],[[1,2,1,1],[1,0,2,2],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[1,0,2,2],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[1,0,2,2],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[1,0,2,2],[2,1,4,2],[1,2,2,0]],[[1,2,1,1],[1,0,2,2],[3,1,3,2],[1,2,2,0]],[[1,2,1,1],[1,0,2,3],[2,1,3,2],[1,2,2,0]],[[1,2,1,2],[1,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[1,0,2,2],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[1,0,2,2],[2,1,3,3],[1,2,1,1]],[[1,2,1,1],[1,0,2,2],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[1,0,2,3],[2,1,3,2],[1,2,1,1]],[[1,2,1,2],[1,0,2,2],[2,1,3,2],[1,2,1,1]],[[1,2,1,1],[1,0,2,2],[2,1,3,2],[0,2,2,2]],[[1,2,1,1],[1,0,2,2],[2,1,3,2],[0,2,3,1]],[[1,2,1,1],[1,0,2,2],[2,1,3,3],[0,2,2,1]],[[1,2,1,1],[1,0,2,3],[2,1,3,2],[0,2,2,1]],[[1,2,1,2],[1,0,2,2],[2,1,3,2],[0,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[1,0,2,2],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[1,0,2,2],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[1,0,2,2],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[3,1,3,1],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[1,0,2,2],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[1,0,2,2],[2,1,2,2],[1,3,2,1]],[[1,2,1,1],[1,0,2,2],[2,1,2,2],[2,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[3,1,2,2],[1,2,2,1]],[[1,2,1,1],[1,0,2,3],[2,1,2,2],[1,2,2,1]],[[1,2,1,2],[1,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[2,0,3,2],[1,2,2,2]],[[1,2,1,1],[1,0,2,2],[2,0,3,2],[1,2,3,1]],[[1,2,1,1],[1,0,2,2],[2,0,3,3],[1,2,2,1]],[[1,2,1,1],[1,0,2,3],[2,0,3,2],[1,2,2,1]],[[1,2,1,2],[1,0,2,2],[2,0,3,2],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[1,0,2,2],[1,3,3,2],[2,2,1,0]],[[1,2,1,1],[1,0,2,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[1,0,2,2],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[1,0,2,2],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[1,0,2,3],[1,3,3,2],[1,2,1,0]],[[1,2,1,2],[1,0,2,2],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[1,0,2,2],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[1,0,2,2],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[1,0,2,2],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[1,0,2,2],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[1,0,2,2],[1,3,4,2],[1,2,0,1]],[[1,2,1,1],[1,0,2,2],[1,4,3,2],[1,2,0,1]],[[1,2,1,1],[1,0,2,3],[1,3,3,2],[1,2,0,1]],[[1,2,1,2],[1,0,2,2],[1,3,3,2],[1,2,0,1]],[[1,2,1,1],[1,0,2,2],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[1,0,2,2],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[1,0,2,2],[1,3,4,2],[1,1,2,0]],[[1,2,1,1],[1,0,2,2],[1,4,3,2],[1,1,2,0]],[[1,2,1,1],[1,0,2,3],[1,3,3,2],[1,1,2,0]],[[1,2,1,2],[1,0,2,2],[1,3,3,2],[1,1,2,0]],[[1,2,1,1],[1,0,2,2],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[1,0,2,2],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[1,0,2,2],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[1,0,2,2],[1,4,3,2],[1,1,1,1]],[[1,2,1,1],[1,0,2,3],[1,3,3,2],[1,1,1,1]],[[1,2,1,2],[1,0,2,2],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[1,0,2,2],[1,3,3,2],[1,0,2,2]],[[1,2,1,1],[1,0,2,2],[1,3,3,3],[1,0,2,1]],[[1,2,1,1],[1,0,2,2],[1,3,4,2],[1,0,2,1]],[[1,2,1,1],[1,0,2,3],[1,3,3,2],[1,0,2,1]],[[1,2,1,2],[1,0,2,2],[1,3,3,2],[1,0,2,1]],[[1,2,1,1],[1,0,2,2],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[1,0,2,2],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[1,0,2,2],[1,3,4,1],[1,2,1,1]],[[1,2,1,1],[1,0,2,2],[1,4,3,1],[1,2,1,1]],[[1,2,1,1],[1,0,2,2],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[1,0,2,2],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[1,0,2,2],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[1,0,2,2],[1,4,3,1],[1,1,2,1]],[[1,2,1,1],[1,0,2,2],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[1,0,2,2],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[1,0,2,2],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[1,0,2,2],[1,4,2,2],[1,2,2,0]],[[1,2,1,1],[1,0,2,2],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[1,0,2,2],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[1,0,2,2],[1,3,2,3],[1,1,2,1]],[[1,2,1,1],[1,0,2,3],[1,3,2,2],[1,1,2,1]],[[1,2,1,2],[1,0,2,2],[1,3,2,2],[1,1,2,1]],[[1,2,1,1],[1,0,2,2],[1,3,2,1],[1,2,2,2]],[[1,2,1,1],[1,0,2,2],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[1,0,2,2],[1,3,2,1],[1,3,2,1]],[[1,2,1,1],[1,0,2,2],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[1,0,2,2],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[1,3,1,2],[1,2,2,2]],[[1,2,1,1],[1,0,2,2],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[1,0,2,2],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[1,0,2,2],[1,3,1,2],[2,2,2,1]],[[1,2,1,1],[1,0,2,2],[1,3,1,3],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[1,4,1,2],[1,2,2,1]],[[1,2,1,1],[1,0,2,3],[1,3,1,2],[1,2,2,1]],[[1,2,1,2],[1,0,2,2],[1,3,1,2],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[1,0,2,2],[1,2,3,2],[1,3,2,0]],[[1,2,1,1],[1,0,2,2],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[1,0,2,2],[1,2,3,3],[1,2,2,0]],[[1,2,1,1],[1,0,2,2],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[1,0,2,3],[1,2,3,2],[1,2,2,0]],[[1,2,1,2],[1,0,2,2],[1,2,3,2],[1,2,2,0]],[[1,2,1,1],[1,0,2,2],[1,2,3,2],[1,2,1,2]],[[1,2,1,1],[1,0,2,2],[1,2,3,3],[1,2,1,1]],[[1,2,1,1],[1,0,2,2],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[1,0,2,3],[1,2,3,2],[1,2,1,1]],[[1,2,1,2],[1,0,2,2],[1,2,3,2],[1,2,1,1]],[[1,2,1,1],[1,0,2,2],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[1,0,2,2],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[1,0,2,2],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[1,0,2,2],[1,2,3,1],[2,2,2,1]],[[1,2,1,1],[1,0,2,2],[1,2,4,1],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[1,0,2,2],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[1,0,2,2],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[1,0,2,2],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[1,0,2,2],[1,2,2,3],[1,2,2,1]],[[1,2,1,1],[1,0,2,3],[1,2,2,2],[1,2,2,1]],[[1,2,1,2],[1,0,2,2],[1,2,2,2],[1,2,2,1]],[[1,2,1,1],[1,0,2,2],[1,1,3,2],[1,2,2,2]],[[1,2,1,1],[1,0,2,2],[1,1,3,2],[1,2,3,1]],[[1,2,1,1],[1,0,2,2],[1,1,3,3],[1,2,2,1]],[[1,2,1,1],[1,0,2,3],[1,1,3,2],[1,2,2,1]],[[1,2,1,2],[1,0,2,2],[1,1,3,2],[1,2,2,1]],[[1,2,1,1],[1,0,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,1,1],[1,0,1,2],[2,3,3,2],[1,0,3,1]],[[1,2,1,1],[1,0,1,2],[2,3,3,3],[1,0,2,1]],[[1,2,1,1],[1,0,1,2],[2,3,3,2],[0,1,2,2]],[[1,2,1,1],[1,0,1,2],[2,3,3,2],[0,1,3,1]],[[1,2,1,1],[1,0,1,2],[2,3,3,3],[0,1,2,1]],[[1,2,1,1],[1,0,1,2],[2,2,3,2],[0,2,2,2]],[[1,2,1,1],[1,0,1,2],[2,2,3,2],[0,2,3,1]],[[1,2,1,1],[1,0,1,2],[2,2,3,2],[0,3,2,1]],[[1,2,1,1],[1,0,1,2],[2,2,3,3],[0,2,2,1]],[[1,2,1,1],[1,0,1,2],[2,1,3,2],[1,2,2,2]],[[1,2,1,1],[1,0,1,2],[2,1,3,2],[1,2,3,1]],[[1,2,1,1],[1,0,1,2],[2,1,3,2],[1,3,2,1]],[[2,0,2,1],[2,3,3,2],[1,3,3,0],[0,0,1,1]],[[1,0,3,1],[2,3,3,2],[1,3,3,0],[0,0,1,1]],[[1,0,2,2],[2,3,3,2],[1,3,3,0],[0,0,1,1]],[[1,0,2,1],[3,3,3,2],[1,3,3,0],[0,0,1,1]],[[1,0,2,1],[2,4,3,2],[1,3,3,0],[0,0,1,1]],[[1,0,2,1],[2,3,4,2],[1,3,3,0],[0,0,1,1]],[[2,0,2,1],[2,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,0,3,1],[2,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,0,2,2],[2,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,0,2,1],[3,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,0,2,1],[2,4,3,2],[1,3,3,0],[0,0,2,0]],[[1,0,2,1],[2,3,4,2],[1,3,3,0],[0,0,2,0]],[[1,2,1,1],[1,0,1,2],[2,1,3,2],[2,2,2,1]],[[1,2,1,1],[1,0,1,2],[2,1,3,3],[1,2,2,1]],[[1,2,1,1],[1,0,1,2],[1,3,3,2],[1,1,2,2]],[[1,2,1,1],[1,0,1,2],[1,3,3,2],[1,1,3,1]],[[1,2,1,1],[1,0,1,2],[1,3,3,3],[1,1,2,1]],[[1,2,1,1],[1,0,1,2],[1,2,3,2],[1,2,2,2]],[[2,0,2,1],[2,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,0,3,1],[2,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,0,2,2],[2,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,0,2,1],[3,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,0,2,1],[2,4,3,2],[1,3,3,0],[0,2,0,0]],[[1,0,2,1],[2,3,4,2],[1,3,3,0],[0,2,0,0]],[[1,0,2,1],[2,3,3,2],[1,4,3,0],[0,2,0,0]],[[1,2,1,1],[1,0,1,2],[1,2,3,2],[1,2,3,1]],[[1,2,1,1],[1,0,1,2],[1,2,3,2],[1,3,2,1]],[[1,2,1,1],[1,0,1,2],[1,2,3,2],[2,2,2,1]],[[1,2,1,1],[1,0,1,2],[1,2,3,3],[1,2,2,1]],[[2,0,2,1],[2,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,0,3,1],[2,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,0,2,2],[2,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,0,2,1],[3,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,0,2,1],[2,4,3,2],[1,3,3,0],[1,1,0,0]],[[1,0,2,1],[2,3,4,2],[1,3,3,0],[1,1,0,0]],[[1,0,2,1],[2,3,3,2],[1,4,3,0],[1,1,0,0]],[[1,2,1,1],[0,3,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,1,1],[0,3,3,2],[2,4,3,0],[1,1,0,0]],[[1,2,1,1],[0,3,3,2],[3,3,3,0],[1,1,0,0]],[[1,2,1,1],[0,3,4,2],[2,3,3,0],[1,1,0,0]],[[1,2,1,1],[0,4,3,2],[2,3,3,0],[1,1,0,0]],[[1,3,1,1],[0,3,3,2],[2,3,3,0],[1,1,0,0]],[[2,2,1,1],[0,3,3,2],[2,3,3,0],[1,1,0,0]],[[1,2,1,1],[0,3,3,2],[2,4,3,0],[0,2,0,0]],[[1,2,1,1],[0,3,3,2],[3,3,3,0],[0,2,0,0]],[[1,2,1,1],[0,3,4,2],[2,3,3,0],[0,2,0,0]],[[1,2,1,1],[0,4,3,2],[2,3,3,0],[0,2,0,0]],[[1,3,1,1],[0,3,3,2],[2,3,3,0],[0,2,0,0]],[[2,2,1,1],[0,3,3,2],[2,3,3,0],[0,2,0,0]],[[1,2,1,1],[0,3,4,2],[2,3,3,0],[0,0,2,0]],[[1,2,1,1],[0,4,3,2],[2,3,3,0],[0,0,2,0]],[[1,3,1,1],[0,3,3,2],[2,3,3,0],[0,0,2,0]],[[2,2,1,1],[0,3,3,2],[2,3,3,0],[0,0,2,0]],[[1,2,1,1],[0,3,4,2],[2,3,3,0],[0,0,1,1]],[[1,2,1,1],[0,4,3,2],[2,3,3,0],[0,0,1,1]],[[1,3,1,1],[0,3,3,2],[2,3,3,0],[0,0,1,1]],[[2,2,1,1],[0,3,3,2],[2,3,3,0],[0,0,1,1]],[[1,2,1,1],[0,3,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,1,1],[0,3,3,2],[2,4,2,0],[1,2,0,0]],[[1,2,1,1],[0,3,3,2],[3,3,2,0],[1,2,0,0]],[[1,2,1,1],[0,3,4,2],[2,3,2,0],[1,2,0,0]],[[1,2,1,1],[0,4,3,2],[2,3,2,0],[1,2,0,0]],[[1,3,1,1],[0,3,3,2],[2,3,2,0],[1,2,0,0]],[[2,2,1,1],[0,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,2,1,1],[0,3,3,2],[2,3,2,0],[2,1,1,0]],[[1,2,1,1],[0,3,3,2],[2,4,2,0],[1,1,1,0]],[[1,2,1,1],[0,3,3,2],[3,3,2,0],[1,1,1,0]],[[1,2,1,1],[0,3,4,2],[2,3,2,0],[1,1,1,0]],[[1,2,1,1],[0,4,3,2],[2,3,2,0],[1,1,1,0]],[[1,3,1,1],[0,3,3,2],[2,3,2,0],[1,1,1,0]],[[2,2,1,1],[0,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,2,1,1],[0,3,3,2],[2,3,2,0],[2,1,0,1]],[[1,2,1,1],[0,3,3,2],[2,4,2,0],[1,1,0,1]],[[1,2,1,1],[0,3,3,2],[3,3,2,0],[1,1,0,1]],[[1,2,1,1],[0,3,4,2],[2,3,2,0],[1,1,0,1]],[[1,2,1,1],[0,4,3,2],[2,3,2,0],[1,1,0,1]],[[1,3,1,1],[0,3,3,2],[2,3,2,0],[1,1,0,1]],[[2,2,1,1],[0,3,3,2],[2,3,2,0],[1,1,0,1]],[[1,2,1,1],[0,3,3,2],[2,3,2,0],[2,0,2,0]],[[1,2,1,1],[0,3,3,2],[2,4,2,0],[1,0,2,0]],[[1,2,1,1],[0,3,3,2],[3,3,2,0],[1,0,2,0]],[[1,2,1,1],[0,3,4,2],[2,3,2,0],[1,0,2,0]],[[1,2,1,1],[0,4,3,2],[2,3,2,0],[1,0,2,0]],[[1,3,1,1],[0,3,3,2],[2,3,2,0],[1,0,2,0]],[[2,2,1,1],[0,3,3,2],[2,3,2,0],[1,0,2,0]],[[1,2,1,1],[0,3,4,2],[2,3,2,0],[1,0,1,1]],[[1,2,1,1],[0,4,3,2],[2,3,2,0],[1,0,1,1]],[[1,3,1,1],[0,3,3,2],[2,3,2,0],[1,0,1,1]],[[2,2,1,1],[0,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,2,1,1],[0,3,3,2],[2,3,2,0],[0,3,1,0]],[[1,2,1,1],[0,3,3,2],[2,4,2,0],[0,2,1,0]],[[1,2,1,1],[0,3,3,2],[3,3,2,0],[0,2,1,0]],[[1,2,1,1],[0,3,4,2],[2,3,2,0],[0,2,1,0]],[[1,2,1,1],[0,4,3,2],[2,3,2,0],[0,2,1,0]],[[1,3,1,1],[0,3,3,2],[2,3,2,0],[0,2,1,0]],[[2,2,1,1],[0,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,2,1,1],[0,3,3,2],[2,4,2,0],[0,2,0,1]],[[1,2,1,1],[0,3,3,2],[3,3,2,0],[0,2,0,1]],[[1,2,1,1],[0,3,4,2],[2,3,2,0],[0,2,0,1]],[[1,2,1,1],[0,4,3,2],[2,3,2,0],[0,2,0,1]],[[1,3,1,1],[0,3,3,2],[2,3,2,0],[0,2,0,1]],[[2,2,1,1],[0,3,3,2],[2,3,2,0],[0,2,0,1]],[[1,2,1,1],[0,3,3,2],[2,4,2,0],[0,1,2,0]],[[1,2,1,1],[0,3,3,2],[3,3,2,0],[0,1,2,0]],[[1,2,1,1],[0,3,4,2],[2,3,2,0],[0,1,2,0]],[[1,2,1,1],[0,4,3,2],[2,3,2,0],[0,1,2,0]],[[1,3,1,1],[0,3,3,2],[2,3,2,0],[0,1,2,0]],[[2,2,1,1],[0,3,3,2],[2,3,2,0],[0,1,2,0]],[[1,2,1,1],[0,3,4,2],[2,3,2,0],[0,1,1,1]],[[1,2,1,1],[0,4,3,2],[2,3,2,0],[0,1,1,1]],[[1,3,1,1],[0,3,3,2],[2,3,2,0],[0,1,1,1]],[[2,2,1,1],[0,3,3,2],[2,3,2,0],[0,1,1,1]],[[1,2,1,1],[0,3,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,1,1],[0,3,3,2],[2,4,1,0],[1,1,2,0]],[[1,2,1,1],[0,3,3,2],[3,3,1,0],[1,1,2,0]],[[1,2,1,1],[0,3,4,2],[2,3,1,0],[1,1,2,0]],[[1,2,1,1],[0,4,3,2],[2,3,1,0],[1,1,2,0]],[[1,3,1,1],[0,3,3,2],[2,3,1,0],[1,1,2,0]],[[2,2,1,1],[0,3,3,2],[2,3,1,0],[1,1,2,0]],[[1,2,1,1],[0,3,3,2],[2,3,1,0],[0,3,2,0]],[[1,2,1,1],[0,3,3,2],[2,4,1,0],[0,2,2,0]],[[1,2,1,1],[0,3,3,2],[3,3,1,0],[0,2,2,0]],[[1,2,1,1],[0,3,4,2],[2,3,1,0],[0,2,2,0]],[[1,2,1,1],[0,4,3,2],[2,3,1,0],[0,2,2,0]],[[1,3,1,1],[0,3,3,2],[2,3,1,0],[0,2,2,0]],[[2,2,1,1],[0,3,3,2],[2,3,1,0],[0,2,2,0]],[[1,2,1,1],[0,3,3,2],[2,3,0,0],[1,3,2,0]],[[1,2,1,1],[0,3,3,2],[2,3,0,0],[2,2,2,0]],[[1,2,1,1],[0,3,3,2],[3,3,0,0],[1,2,2,0]],[[1,0,3,1],[2,3,3,2],[2,0,0,1],[1,2,2,1]],[[1,0,2,2],[2,3,3,2],[2,0,0,1],[1,2,2,1]],[[1,0,2,1],[2,3,3,3],[2,0,0,1],[1,2,2,1]],[[1,0,3,1],[2,3,3,2],[2,0,0,2],[0,2,2,1]],[[1,0,2,2],[2,3,3,2],[2,0,0,2],[0,2,2,1]],[[1,0,2,1],[2,3,3,3],[2,0,0,2],[0,2,2,1]],[[1,0,3,1],[2,3,3,2],[2,0,0,2],[1,1,2,1]],[[1,0,2,2],[2,3,3,2],[2,0,0,2],[1,1,2,1]],[[1,0,2,1],[2,3,3,3],[2,0,0,2],[1,1,2,1]],[[1,0,3,1],[2,3,3,2],[2,0,0,2],[1,2,1,1]],[[1,0,2,2],[2,3,3,2],[2,0,0,2],[1,2,1,1]],[[1,0,2,1],[2,3,3,3],[2,0,0,2],[1,2,1,1]],[[1,0,3,1],[2,3,3,2],[2,0,0,2],[1,2,2,0]],[[1,0,2,2],[2,3,3,2],[2,0,0,2],[1,2,2,0]],[[1,0,2,1],[2,3,3,3],[2,0,0,2],[1,2,2,0]],[[1,0,3,1],[2,3,3,2],[2,0,1,2],[0,2,1,1]],[[1,0,2,2],[2,3,3,2],[2,0,1,2],[0,2,1,1]],[[1,0,2,1],[2,3,3,3],[2,0,1,2],[0,2,1,1]],[[1,0,3,1],[2,3,3,2],[2,0,1,2],[0,2,2,0]],[[1,0,2,2],[2,3,3,2],[2,0,1,2],[0,2,2,0]],[[1,0,2,1],[2,3,3,3],[2,0,1,2],[0,2,2,0]],[[1,0,3,1],[2,3,3,2],[2,0,1,2],[1,1,1,1]],[[1,0,2,2],[2,3,3,2],[2,0,1,2],[1,1,1,1]],[[1,0,2,1],[2,3,3,3],[2,0,1,2],[1,1,1,1]],[[1,0,3,1],[2,3,3,2],[2,0,1,2],[1,1,2,0]],[[1,0,2,2],[2,3,3,2],[2,0,1,2],[1,1,2,0]],[[1,0,2,1],[2,3,3,3],[2,0,1,2],[1,1,2,0]],[[1,0,3,1],[2,3,3,2],[2,0,1,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,2],[2,0,1,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,3],[2,0,1,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,2],[2,0,1,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,2],[2,0,1,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,3],[2,0,1,2],[1,2,1,0]],[[2,0,2,1],[2,3,3,2],[2,0,2,0],[1,2,2,0]],[[1,0,3,1],[2,3,3,2],[2,0,2,0],[1,2,2,0]],[[1,0,2,2],[2,3,3,2],[2,0,2,0],[1,2,2,0]],[[1,0,2,1],[3,3,3,2],[2,0,2,0],[1,2,2,0]],[[1,0,2,1],[2,4,3,2],[2,0,2,0],[1,2,2,0]],[[1,0,2,1],[2,3,4,2],[2,0,2,0],[1,2,2,0]],[[1,0,2,1],[2,3,3,2],[3,0,2,0],[1,2,2,0]],[[1,0,2,1],[2,3,3,2],[2,0,2,0],[2,2,2,0]],[[1,0,2,1],[2,3,3,2],[2,0,2,0],[1,3,2,0]],[[1,2,1,1],[0,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,1,1],[0,4,3,2],[2,2,3,0],[1,1,1,0]],[[1,3,1,1],[0,3,3,2],[2,2,3,0],[1,1,1,0]],[[2,2,1,1],[0,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,1,1],[0,3,4,2],[2,2,3,0],[1,1,0,1]],[[1,2,1,1],[0,4,3,2],[2,2,3,0],[1,1,0,1]],[[1,3,1,1],[0,3,3,2],[2,2,3,0],[1,1,0,1]],[[2,2,1,1],[0,3,3,2],[2,2,3,0],[1,1,0,1]],[[1,2,1,1],[0,3,4,2],[2,2,3,0],[1,0,2,0]],[[1,2,1,1],[0,4,3,2],[2,2,3,0],[1,0,2,0]],[[1,3,1,1],[0,3,3,2],[2,2,3,0],[1,0,2,0]],[[2,2,1,1],[0,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,1,1],[0,3,4,2],[2,2,3,0],[1,0,1,1]],[[1,2,1,1],[0,4,3,2],[2,2,3,0],[1,0,1,1]],[[1,3,1,1],[0,3,3,2],[2,2,3,0],[1,0,1,1]],[[2,2,1,1],[0,3,3,2],[2,2,3,0],[1,0,1,1]],[[1,2,1,1],[0,3,4,2],[2,2,3,0],[0,2,1,0]],[[1,2,1,1],[0,4,3,2],[2,2,3,0],[0,2,1,0]],[[1,3,1,1],[0,3,3,2],[2,2,3,0],[0,2,1,0]],[[2,2,1,1],[0,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,1,1],[0,3,4,2],[2,2,3,0],[0,2,0,1]],[[1,2,1,1],[0,4,3,2],[2,2,3,0],[0,2,0,1]],[[1,3,1,1],[0,3,3,2],[2,2,3,0],[0,2,0,1]],[[2,2,1,1],[0,3,3,2],[2,2,3,0],[0,2,0,1]],[[1,2,1,1],[0,3,4,2],[2,2,3,0],[0,1,2,0]],[[1,2,1,1],[0,4,3,2],[2,2,3,0],[0,1,2,0]],[[1,3,1,1],[0,3,3,2],[2,2,3,0],[0,1,2,0]],[[2,2,1,1],[0,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,2,1,1],[0,3,4,2],[2,2,3,0],[0,1,1,1]],[[1,2,1,1],[0,4,3,2],[2,2,3,0],[0,1,1,1]],[[1,3,1,1],[0,3,3,2],[2,2,3,0],[0,1,1,1]],[[2,2,1,1],[0,3,3,2],[2,2,3,0],[0,1,1,1]],[[1,0,3,1],[2,3,3,2],[2,0,3,0],[0,2,1,1]],[[1,0,2,2],[2,3,3,2],[2,0,3,0],[0,2,1,1]],[[1,0,2,1],[2,3,4,2],[2,0,3,0],[0,2,1,1]],[[2,0,2,1],[2,3,3,2],[2,0,3,0],[0,2,2,0]],[[1,0,3,1],[2,3,3,2],[2,0,3,0],[0,2,2,0]],[[1,0,2,2],[2,3,3,2],[2,0,3,0],[0,2,2,0]],[[1,0,2,1],[3,3,3,2],[2,0,3,0],[0,2,2,0]],[[1,0,2,1],[2,4,3,2],[2,0,3,0],[0,2,2,0]],[[1,0,2,1],[2,3,4,2],[2,0,3,0],[0,2,2,0]],[[1,0,2,1],[2,3,3,2],[3,0,3,0],[0,2,2,0]],[[1,0,3,1],[2,3,3,2],[2,0,3,0],[1,1,1,1]],[[1,0,2,2],[2,3,3,2],[2,0,3,0],[1,1,1,1]],[[1,0,2,1],[2,3,4,2],[2,0,3,0],[1,1,1,1]],[[2,0,2,1],[2,3,3,2],[2,0,3,0],[1,1,2,0]],[[1,0,3,1],[2,3,3,2],[2,0,3,0],[1,1,2,0]],[[1,0,2,2],[2,3,3,2],[2,0,3,0],[1,1,2,0]],[[1,0,2,1],[3,3,3,2],[2,0,3,0],[1,1,2,0]],[[1,0,2,1],[2,4,3,2],[2,0,3,0],[1,1,2,0]],[[1,0,2,1],[2,3,4,2],[2,0,3,0],[1,1,2,0]],[[1,0,2,1],[2,3,3,2],[3,0,3,0],[1,1,2,0]],[[1,0,2,1],[2,3,3,2],[2,0,3,0],[2,1,2,0]],[[2,0,2,1],[2,3,3,2],[2,0,3,0],[1,2,0,1]],[[1,0,3,1],[2,3,3,2],[2,0,3,0],[1,2,0,1]],[[1,0,2,2],[2,3,3,2],[2,0,3,0],[1,2,0,1]],[[1,0,2,1],[3,3,3,2],[2,0,3,0],[1,2,0,1]],[[1,0,2,1],[2,4,3,2],[2,0,3,0],[1,2,0,1]],[[1,0,2,1],[2,3,4,2],[2,0,3,0],[1,2,0,1]],[[1,0,2,1],[2,3,3,2],[3,0,3,0],[1,2,0,1]],[[1,0,2,1],[2,3,3,2],[2,0,3,0],[2,2,0,1]],[[2,0,2,1],[2,3,3,2],[2,0,3,0],[1,2,1,0]],[[1,0,3,1],[2,3,3,2],[2,0,3,0],[1,2,1,0]],[[1,0,2,2],[2,3,3,2],[2,0,3,0],[1,2,1,0]],[[1,0,2,1],[3,3,3,2],[2,0,3,0],[1,2,1,0]],[[1,0,2,1],[2,4,3,2],[2,0,3,0],[1,2,1,0]],[[1,0,2,1],[2,3,4,2],[2,0,3,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,2],[3,0,3,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,2],[2,0,3,0],[2,2,1,0]],[[1,0,2,1],[2,3,3,2],[2,0,3,0],[1,3,1,0]],[[1,2,1,1],[0,3,3,2],[2,2,2,0],[1,3,1,0]],[[1,2,1,1],[0,3,3,2],[2,2,2,0],[2,2,1,0]],[[1,2,1,1],[0,3,3,2],[3,2,2,0],[1,2,1,0]],[[1,2,1,1],[0,3,3,2],[2,2,1,0],[1,3,2,0]],[[1,2,1,1],[0,3,3,2],[2,2,1,0],[2,2,2,0]],[[1,2,1,1],[0,3,3,2],[3,2,1,0],[1,2,2,0]],[[1,2,1,1],[0,3,4,2],[2,1,3,0],[0,2,2,0]],[[1,2,1,1],[0,4,3,2],[2,1,3,0],[0,2,2,0]],[[1,3,1,1],[0,3,3,2],[2,1,3,0],[0,2,2,0]],[[2,2,1,1],[0,3,3,2],[2,1,3,0],[0,2,2,0]],[[1,0,3,1],[2,3,3,2],[2,1,0,2],[0,1,2,1]],[[1,0,2,2],[2,3,3,2],[2,1,0,2],[0,1,2,1]],[[1,0,2,1],[2,3,3,3],[2,1,0,2],[0,1,2,1]],[[1,0,3,1],[2,3,3,2],[2,1,0,2],[1,0,2,1]],[[1,0,2,2],[2,3,3,2],[2,1,0,2],[1,0,2,1]],[[1,0,2,1],[2,3,3,3],[2,1,0,2],[1,0,2,1]],[[1,0,3,1],[2,3,3,2],[2,1,0,2],[1,2,0,1]],[[1,0,2,2],[2,3,3,2],[2,1,0,2],[1,2,0,1]],[[1,0,2,1],[2,3,3,3],[2,1,0,2],[1,2,0,1]],[[1,0,3,1],[2,3,3,2],[2,1,0,2],[1,2,1,0]],[[1,0,2,2],[2,3,3,2],[2,1,0,2],[1,2,1,0]],[[1,0,2,1],[2,3,3,3],[2,1,0,2],[1,2,1,0]],[[2,0,2,1],[2,3,3,2],[2,1,1,0],[1,2,2,0]],[[1,0,3,1],[2,3,3,2],[2,1,1,0],[1,2,2,0]],[[1,0,2,2],[2,3,3,2],[2,1,1,0],[1,2,2,0]],[[1,0,2,1],[3,3,3,2],[2,1,1,0],[1,2,2,0]],[[1,0,2,1],[2,4,3,2],[2,1,1,0],[1,2,2,0]],[[1,0,2,1],[2,3,4,2],[2,1,1,0],[1,2,2,0]],[[1,0,2,1],[2,3,3,2],[3,1,1,0],[1,2,2,0]],[[1,0,2,1],[2,3,3,2],[2,1,1,0],[2,2,2,0]],[[1,0,2,1],[2,3,3,2],[2,1,1,0],[1,3,2,0]],[[1,0,3,1],[2,3,3,2],[2,1,1,2],[0,0,2,1]],[[1,0,2,2],[2,3,3,2],[2,1,1,2],[0,0,2,1]],[[1,0,2,1],[2,3,3,3],[2,1,1,2],[0,0,2,1]],[[1,0,3,1],[2,3,3,2],[2,1,1,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,2],[2,1,1,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,3],[2,1,1,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,2],[2,1,1,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,2],[2,1,1,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,3],[2,1,1,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,2],[2,1,1,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,2],[2,1,1,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,3],[2,1,1,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,2],[2,1,1,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,2],[2,1,1,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,3],[2,1,1,2],[0,2,1,0]],[[1,0,3,1],[2,3,3,2],[2,1,1,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,2],[2,1,1,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,3],[2,1,1,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,2],[2,1,1,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,2],[2,1,1,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,3],[2,1,1,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,2],[2,1,1,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,2],[2,1,1,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,3],[2,1,1,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,2],[2,1,1,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,2],[2,1,1,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,3],[2,1,1,2],[1,1,1,0]],[[1,2,1,1],[0,3,4,2],[2,0,3,0],[1,2,2,0]],[[1,2,1,1],[0,4,3,2],[2,0,3,0],[1,2,2,0]],[[1,3,1,1],[0,3,3,2],[2,0,3,0],[1,2,2,0]],[[2,2,1,1],[0,3,3,2],[2,0,3,0],[1,2,2,0]],[[2,0,2,1],[2,3,3,2],[2,1,2,0],[1,2,0,1]],[[1,0,3,1],[2,3,3,2],[2,1,2,0],[1,2,0,1]],[[1,0,2,2],[2,3,3,2],[2,1,2,0],[1,2,0,1]],[[1,0,2,1],[3,3,3,2],[2,1,2,0],[1,2,0,1]],[[1,0,2,1],[2,4,3,2],[2,1,2,0],[1,2,0,1]],[[1,0,2,1],[2,3,4,2],[2,1,2,0],[1,2,0,1]],[[1,0,2,1],[2,3,3,2],[3,1,2,0],[1,2,0,1]],[[1,0,2,1],[2,3,3,2],[2,1,2,0],[2,2,0,1]],[[2,0,2,1],[2,3,3,2],[2,1,2,0],[1,2,1,0]],[[1,0,3,1],[2,3,3,2],[2,1,2,0],[1,2,1,0]],[[1,0,2,2],[2,3,3,2],[2,1,2,0],[1,2,1,0]],[[1,0,2,1],[3,3,3,2],[2,1,2,0],[1,2,1,0]],[[1,0,2,1],[2,4,3,2],[2,1,2,0],[1,2,1,0]],[[1,0,2,1],[2,3,4,2],[2,1,2,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,2],[3,1,2,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,2],[2,1,2,0],[2,2,1,0]],[[1,0,2,1],[2,3,3,2],[2,1,2,0],[1,3,1,0]],[[1,2,1,1],[0,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,1,1],[0,3,3,3],[1,3,3,2],[0,0,0,1]],[[1,2,1,1],[0,3,4,2],[1,3,3,2],[0,0,0,1]],[[1,2,1,2],[0,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,0,3,1],[2,3,3,2],[2,1,2,2],[0,1,0,1]],[[1,0,2,2],[2,3,3,2],[2,1,2,2],[0,1,0,1]],[[1,0,2,1],[2,3,3,3],[2,1,2,2],[0,1,0,1]],[[1,2,1,1],[0,3,3,3],[1,3,3,1],[1,1,0,0]],[[1,2,1,1],[0,3,4,2],[1,3,3,1],[1,1,0,0]],[[1,2,1,2],[0,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,2,1,1],[0,3,3,3],[1,3,3,1],[0,2,0,0]],[[1,2,1,1],[0,3,4,2],[1,3,3,1],[0,2,0,0]],[[1,2,1,2],[0,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,2,1,1],[0,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,1,1],[0,3,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,1,1],[0,3,4,2],[1,3,3,1],[0,0,2,0]],[[1,2,1,2],[0,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,1,1],[0,3,3,2],[1,3,4,1],[0,0,1,1]],[[1,2,1,1],[0,3,3,3],[1,3,3,1],[0,0,1,1]],[[1,0,3,1],[2,3,3,2],[2,1,2,2],[1,0,0,1]],[[1,0,2,2],[2,3,3,2],[2,1,2,2],[1,0,0,1]],[[1,0,2,1],[2,3,3,3],[2,1,2,2],[1,0,0,1]],[[1,2,1,1],[0,3,4,2],[1,3,3,1],[0,0,1,1]],[[1,2,1,2],[0,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,1,1],[0,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,1,1],[0,3,4,2],[1,3,3,0],[1,2,0,0]],[[1,2,1,1],[0,4,3,2],[1,3,3,0],[1,2,0,0]],[[1,3,1,1],[0,3,3,2],[1,3,3,0],[1,2,0,0]],[[2,2,1,1],[0,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,2,1,1],[0,3,3,2],[1,3,4,0],[0,0,2,1]],[[1,2,1,1],[0,3,3,3],[1,3,3,0],[0,0,2,1]],[[1,2,1,1],[0,3,4,2],[1,3,3,0],[0,0,2,1]],[[1,2,1,2],[0,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,2,1,1],[0,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,1,1],[0,3,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,1,1],[0,3,4,2],[1,3,2,2],[0,0,2,0]],[[1,2,1,2],[0,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,1,1],[0,3,3,2],[1,3,2,2],[0,0,1,2]],[[1,2,1,1],[0,3,3,2],[1,3,2,3],[0,0,1,1]],[[1,2,1,1],[0,3,3,3],[1,3,2,2],[0,0,1,1]],[[1,2,1,1],[0,3,4,2],[1,3,2,2],[0,0,1,1]],[[1,2,1,2],[0,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,0,3,1],[2,3,3,2],[2,1,3,0],[0,0,2,1]],[[1,0,2,2],[2,3,3,2],[2,1,3,0],[0,0,2,1]],[[1,0,2,1],[2,3,4,2],[2,1,3,0],[0,0,2,1]],[[2,0,2,1],[2,3,3,2],[2,1,3,0],[0,1,1,1]],[[1,0,3,1],[2,3,3,2],[2,1,3,0],[0,1,1,1]],[[1,0,2,2],[2,3,3,2],[2,1,3,0],[0,1,1,1]],[[1,0,2,1],[3,3,3,2],[2,1,3,0],[0,1,1,1]],[[1,0,2,1],[2,4,3,2],[2,1,3,0],[0,1,1,1]],[[1,0,2,1],[2,3,4,2],[2,1,3,0],[0,1,1,1]],[[2,0,2,1],[2,3,3,2],[2,1,3,0],[0,1,2,0]],[[1,0,3,1],[2,3,3,2],[2,1,3,0],[0,1,2,0]],[[1,0,2,2],[2,3,3,2],[2,1,3,0],[0,1,2,0]],[[1,0,2,1],[3,3,3,2],[2,1,3,0],[0,1,2,0]],[[1,0,2,1],[2,4,3,2],[2,1,3,0],[0,1,2,0]],[[1,0,2,1],[2,3,4,2],[2,1,3,0],[0,1,2,0]],[[1,0,2,1],[2,3,3,2],[3,1,3,0],[0,1,2,0]],[[2,0,2,1],[2,3,3,2],[2,1,3,0],[0,2,0,1]],[[1,0,3,1],[2,3,3,2],[2,1,3,0],[0,2,0,1]],[[1,0,2,2],[2,3,3,2],[2,1,3,0],[0,2,0,1]],[[1,0,2,1],[3,3,3,2],[2,1,3,0],[0,2,0,1]],[[1,0,2,1],[2,4,3,2],[2,1,3,0],[0,2,0,1]],[[1,0,2,1],[2,3,4,2],[2,1,3,0],[0,2,0,1]],[[1,0,2,1],[2,3,3,2],[3,1,3,0],[0,2,0,1]],[[2,0,2,1],[2,3,3,2],[2,1,3,0],[0,2,1,0]],[[1,0,3,1],[2,3,3,2],[2,1,3,0],[0,2,1,0]],[[1,0,2,2],[2,3,3,2],[2,1,3,0],[0,2,1,0]],[[1,0,2,1],[3,3,3,2],[2,1,3,0],[0,2,1,0]],[[1,0,2,1],[2,4,3,2],[2,1,3,0],[0,2,1,0]],[[1,0,2,1],[2,3,4,2],[2,1,3,0],[0,2,1,0]],[[1,0,2,1],[2,3,3,2],[3,1,3,0],[0,2,1,0]],[[2,0,2,1],[2,3,3,2],[2,1,3,0],[1,0,1,1]],[[1,0,3,1],[2,3,3,2],[2,1,3,0],[1,0,1,1]],[[1,0,2,2],[2,3,3,2],[2,1,3,0],[1,0,1,1]],[[1,0,2,1],[3,3,3,2],[2,1,3,0],[1,0,1,1]],[[1,0,2,1],[2,4,3,2],[2,1,3,0],[1,0,1,1]],[[1,0,2,1],[2,3,4,2],[2,1,3,0],[1,0,1,1]],[[1,0,2,1],[2,3,3,2],[3,1,3,0],[1,0,1,1]],[[2,0,2,1],[2,3,3,2],[2,1,3,0],[1,0,2,0]],[[1,0,3,1],[2,3,3,2],[2,1,3,0],[1,0,2,0]],[[1,0,2,2],[2,3,3,2],[2,1,3,0],[1,0,2,0]],[[1,0,2,1],[3,3,3,2],[2,1,3,0],[1,0,2,0]],[[1,0,2,1],[2,4,3,2],[2,1,3,0],[1,0,2,0]],[[1,0,2,1],[2,3,4,2],[2,1,3,0],[1,0,2,0]],[[1,0,2,1],[2,3,3,2],[3,1,3,0],[1,0,2,0]],[[1,0,2,1],[2,3,3,2],[2,1,3,0],[2,0,2,0]],[[2,0,2,1],[2,3,3,2],[2,1,3,0],[1,1,0,1]],[[1,0,3,1],[2,3,3,2],[2,1,3,0],[1,1,0,1]],[[1,0,2,2],[2,3,3,2],[2,1,3,0],[1,1,0,1]],[[1,0,2,1],[3,3,3,2],[2,1,3,0],[1,1,0,1]],[[1,0,2,1],[2,4,3,2],[2,1,3,0],[1,1,0,1]],[[1,0,2,1],[2,3,4,2],[2,1,3,0],[1,1,0,1]],[[1,0,2,1],[2,3,3,2],[3,1,3,0],[1,1,0,1]],[[1,0,2,1],[2,3,3,2],[2,1,3,0],[2,1,0,1]],[[2,0,2,1],[2,3,3,2],[2,1,3,0],[1,1,1,0]],[[1,0,3,1],[2,3,3,2],[2,1,3,0],[1,1,1,0]],[[1,0,2,2],[2,3,3,2],[2,1,3,0],[1,1,1,0]],[[1,0,2,1],[3,3,3,2],[2,1,3,0],[1,1,1,0]],[[1,0,2,1],[2,4,3,2],[2,1,3,0],[1,1,1,0]],[[1,0,2,1],[2,3,4,2],[2,1,3,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,2],[3,1,3,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,2],[2,1,3,0],[2,1,1,0]],[[1,2,1,1],[0,3,3,3],[1,3,2,1],[1,1,1,0]],[[1,2,1,1],[0,3,4,2],[1,3,2,1],[1,1,1,0]],[[1,2,1,2],[0,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,1,1],[0,3,3,3],[1,3,2,1],[1,1,0,1]],[[1,2,1,1],[0,3,4,2],[1,3,2,1],[1,1,0,1]],[[1,2,1,2],[0,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,1,1],[0,3,3,3],[1,3,2,1],[1,0,2,0]],[[1,2,1,1],[0,3,4,2],[1,3,2,1],[1,0,2,0]],[[1,2,1,2],[0,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,1,1],[0,3,3,3],[1,3,2,1],[1,0,1,1]],[[1,2,1,1],[0,3,4,2],[1,3,2,1],[1,0,1,1]],[[1,2,1,2],[0,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,2,1,1],[0,3,3,3],[1,3,2,1],[0,2,1,0]],[[1,2,1,1],[0,3,4,2],[1,3,2,1],[0,2,1,0]],[[1,2,1,2],[0,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,1,1],[0,3,3,3],[1,3,2,1],[0,2,0,1]],[[1,2,1,1],[0,3,4,2],[1,3,2,1],[0,2,0,1]],[[1,2,1,2],[0,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,1,1],[0,3,3,3],[1,3,2,1],[0,1,2,0]],[[1,2,1,1],[0,3,4,2],[1,3,2,1],[0,1,2,0]],[[1,2,1,2],[0,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,1,1],[0,3,3,3],[1,3,2,1],[0,1,1,1]],[[1,2,1,1],[0,3,4,2],[1,3,2,1],[0,1,1,1]],[[1,2,1,2],[0,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,1,1],[0,3,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,1,1],[0,3,3,2],[1,3,2,0],[2,2,1,0]],[[1,2,1,1],[0,3,3,2],[1,4,2,0],[1,2,1,0]],[[1,2,1,1],[0,3,4,2],[1,3,2,0],[1,2,1,0]],[[1,2,1,1],[0,4,3,2],[1,3,2,0],[1,2,1,0]],[[1,3,1,1],[0,3,3,2],[1,3,2,0],[1,2,1,0]],[[2,2,1,1],[0,3,3,2],[1,3,2,0],[1,2,1,0]],[[1,2,1,1],[0,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,2,1,1],[0,3,4,2],[1,3,2,0],[1,2,0,1]],[[1,2,1,1],[0,4,3,2],[1,3,2,0],[1,2,0,1]],[[1,3,1,1],[0,3,3,2],[1,3,2,0],[1,2,0,1]],[[2,2,1,1],[0,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,1,1],[0,3,3,2],[1,4,2,0],[1,1,2,0]],[[1,2,1,1],[0,3,4,2],[1,3,2,0],[1,1,2,0]],[[1,2,1,1],[0,4,3,2],[1,3,2,0],[1,1,2,0]],[[1,3,1,1],[0,3,3,2],[1,3,2,0],[1,1,2,0]],[[2,2,1,1],[0,3,3,2],[1,3,2,0],[1,1,2,0]],[[1,2,1,1],[0,3,3,3],[1,3,2,0],[1,0,2,1]],[[1,2,1,1],[0,3,4,2],[1,3,2,0],[1,0,2,1]],[[1,2,1,2],[0,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,2,1,1],[0,3,3,3],[1,3,2,0],[0,2,1,1]],[[1,2,1,1],[0,3,4,2],[1,3,2,0],[0,2,1,1]],[[1,2,1,2],[0,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,1,1],[0,3,3,3],[1,3,2,0],[0,1,2,1]],[[1,2,1,1],[0,3,4,2],[1,3,2,0],[0,1,2,1]],[[1,2,1,2],[0,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,2,1,1],[0,3,3,3],[1,3,1,2],[1,1,1,0]],[[1,2,1,1],[0,3,4,2],[1,3,1,2],[1,1,1,0]],[[1,2,1,2],[0,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,1,1],[0,3,3,2],[1,3,1,3],[1,1,0,1]],[[1,2,1,1],[0,3,3,3],[1,3,1,2],[1,1,0,1]],[[1,2,1,1],[0,3,4,2],[1,3,1,2],[1,1,0,1]],[[1,2,1,2],[0,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,2,1,1],[0,3,3,2],[1,3,1,3],[1,0,2,0]],[[1,2,1,1],[0,3,3,3],[1,3,1,2],[1,0,2,0]],[[1,2,1,1],[0,3,4,2],[1,3,1,2],[1,0,2,0]],[[1,2,1,2],[0,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,1,1],[0,3,3,2],[1,3,1,2],[1,0,1,2]],[[1,2,1,1],[0,3,3,2],[1,3,1,3],[1,0,1,1]],[[1,2,1,1],[0,3,3,3],[1,3,1,2],[1,0,1,1]],[[1,2,1,1],[0,3,4,2],[1,3,1,2],[1,0,1,1]],[[1,2,1,2],[0,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,1,1],[0,3,3,2],[1,3,1,3],[0,2,1,0]],[[1,2,1,1],[0,3,3,3],[1,3,1,2],[0,2,1,0]],[[1,2,1,1],[0,3,4,2],[1,3,1,2],[0,2,1,0]],[[1,2,1,2],[0,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,1,1],[0,3,3,2],[1,3,1,2],[0,2,0,2]],[[1,2,1,1],[0,3,3,2],[1,3,1,3],[0,2,0,1]],[[1,2,1,1],[0,3,3,3],[1,3,1,2],[0,2,0,1]],[[1,2,1,1],[0,3,4,2],[1,3,1,2],[0,2,0,1]],[[1,2,1,2],[0,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,2,1,1],[0,3,3,2],[1,3,1,3],[0,1,2,0]],[[1,2,1,1],[0,3,3,3],[1,3,1,2],[0,1,2,0]],[[1,2,1,1],[0,3,4,2],[1,3,1,2],[0,1,2,0]],[[1,2,1,2],[0,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,2],[1,3,1,2],[0,1,1,2]],[[1,2,1,1],[0,3,3,2],[1,3,1,3],[0,1,1,1]],[[1,2,1,1],[0,3,3,3],[1,3,1,2],[0,1,1,1]],[[1,2,1,1],[0,3,4,2],[1,3,1,2],[0,1,1,1]],[[1,2,1,2],[0,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,2,1,1],[0,3,3,3],[1,3,1,1],[0,2,2,0]],[[1,2,1,1],[0,3,4,2],[1,3,1,1],[0,2,2,0]],[[1,2,1,2],[0,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,1,1],[0,3,3,2],[1,3,1,0],[1,3,2,0]],[[1,2,1,1],[0,3,3,2],[1,3,1,0],[2,2,2,0]],[[1,2,1,1],[0,3,3,2],[1,4,1,0],[1,2,2,0]],[[1,2,1,1],[0,3,4,2],[1,3,1,0],[1,2,2,0]],[[1,2,1,1],[0,4,3,2],[1,3,1,0],[1,2,2,0]],[[1,3,1,1],[0,3,3,2],[1,3,1,0],[1,2,2,0]],[[2,2,1,1],[0,3,3,2],[1,3,1,0],[1,2,2,0]],[[1,2,1,1],[0,3,3,3],[1,3,1,0],[0,2,2,1]],[[1,2,1,1],[0,3,4,2],[1,3,1,0],[0,2,2,1]],[[1,2,1,2],[0,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,2,1,1],[0,3,3,2],[1,3,0,2],[1,0,2,2]],[[1,2,1,1],[0,3,3,2],[1,3,0,3],[1,0,2,1]],[[1,2,1,1],[0,3,3,3],[1,3,0,2],[1,0,2,1]],[[1,2,1,1],[0,3,4,2],[1,3,0,2],[1,0,2,1]],[[1,2,1,2],[0,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,1,1],[0,3,3,2],[1,3,0,3],[0,2,2,0]],[[1,2,1,1],[0,3,3,3],[1,3,0,2],[0,2,2,0]],[[1,2,1,1],[0,3,4,2],[1,3,0,2],[0,2,2,0]],[[1,2,1,2],[0,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,1,1],[0,3,3,2],[1,3,0,2],[0,2,1,2]],[[1,2,1,1],[0,3,3,2],[1,3,0,3],[0,2,1,1]],[[1,2,1,1],[0,3,3,3],[1,3,0,2],[0,2,1,1]],[[1,2,1,1],[0,3,4,2],[1,3,0,2],[0,2,1,1]],[[1,2,1,2],[0,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,1,1],[0,3,3,2],[1,3,0,2],[0,1,2,2]],[[1,2,1,1],[0,3,3,2],[1,3,0,2],[0,1,3,1]],[[1,2,1,1],[0,3,3,2],[1,3,0,3],[0,1,2,1]],[[1,2,1,1],[0,3,3,3],[1,3,0,2],[0,1,2,1]],[[1,2,1,1],[0,3,4,2],[1,3,0,2],[0,1,2,1]],[[1,2,1,2],[0,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,2,1,1],[0,3,3,3],[1,3,0,1],[0,2,2,1]],[[1,2,1,1],[0,3,4,2],[1,3,0,1],[0,2,2,1]],[[1,2,1,2],[0,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,2,1,1],[0,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,1,1],[0,3,3,3],[1,2,3,2],[1,0,0,1]],[[1,2,1,1],[0,3,4,2],[1,2,3,2],[1,0,0,1]],[[1,2,1,2],[0,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,1,1],[0,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,1,1],[0,3,3,3],[1,2,3,2],[0,1,0,1]],[[1,2,1,1],[0,3,4,2],[1,2,3,2],[0,1,0,1]],[[1,2,1,2],[0,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,1,1],[0,3,3,3],[1,2,3,1],[1,1,1,0]],[[1,2,1,1],[0,3,4,2],[1,2,3,1],[1,1,1,0]],[[1,2,1,2],[0,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,1,1],[0,3,3,3],[1,2,3,1],[1,1,0,1]],[[1,2,1,1],[0,3,4,2],[1,2,3,1],[1,1,0,1]],[[1,2,1,2],[0,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,1,1],[0,3,3,2],[1,2,4,1],[1,0,2,0]],[[1,2,1,1],[0,3,3,3],[1,2,3,1],[1,0,2,0]],[[1,2,1,1],[0,3,4,2],[1,2,3,1],[1,0,2,0]],[[1,2,1,2],[0,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,1,1],[0,3,3,2],[1,2,4,1],[1,0,1,1]],[[1,2,1,1],[0,3,3,3],[1,2,3,1],[1,0,1,1]],[[1,2,1,1],[0,3,4,2],[1,2,3,1],[1,0,1,1]],[[1,2,1,2],[0,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,1,1],[0,3,3,2],[1,2,4,1],[0,2,1,0]],[[1,2,1,1],[0,3,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,1,1],[0,3,4,2],[1,2,3,1],[0,2,1,0]],[[1,2,1,2],[0,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,1,1],[0,3,3,2],[1,2,4,1],[0,2,0,1]],[[1,2,1,1],[0,3,3,3],[1,2,3,1],[0,2,0,1]],[[1,2,1,1],[0,3,4,2],[1,2,3,1],[0,2,0,1]],[[1,2,1,2],[0,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,1,1],[0,3,3,2],[1,2,3,1],[0,1,3,0]],[[1,2,1,1],[0,3,3,2],[1,2,4,1],[0,1,2,0]],[[1,2,1,1],[0,3,3,3],[1,2,3,1],[0,1,2,0]],[[1,2,1,1],[0,3,4,2],[1,2,3,1],[0,1,2,0]],[[1,2,1,2],[0,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,1,1],[0,3,3,2],[1,2,4,1],[0,1,1,1]],[[1,2,1,1],[0,3,3,3],[1,2,3,1],[0,1,1,1]],[[1,2,1,1],[0,3,4,2],[1,2,3,1],[0,1,1,1]],[[1,2,1,2],[0,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,1,1],[0,3,3,2],[1,2,4,1],[0,0,2,1]],[[1,2,1,1],[0,3,3,3],[1,2,3,1],[0,0,2,1]],[[1,2,1,1],[0,3,4,2],[1,2,3,1],[0,0,2,1]],[[1,2,1,2],[0,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,1,1],[0,3,4,2],[1,2,3,0],[1,2,1,0]],[[1,2,1,1],[0,4,3,2],[1,2,3,0],[1,2,1,0]],[[1,3,1,1],[0,3,3,2],[1,2,3,0],[1,2,1,0]],[[2,2,1,1],[0,3,3,2],[1,2,3,0],[1,2,1,0]],[[1,2,1,1],[0,3,4,2],[1,2,3,0],[1,2,0,1]],[[1,2,1,1],[0,4,3,2],[1,2,3,0],[1,2,0,1]],[[1,3,1,1],[0,3,3,2],[1,2,3,0],[1,2,0,1]],[[2,2,1,1],[0,3,3,2],[1,2,3,0],[1,2,0,1]],[[2,0,2,1],[2,3,3,2],[2,2,0,0],[1,2,2,0]],[[1,0,2,1],[3,3,3,2],[2,2,0,0],[1,2,2,0]],[[1,0,2,1],[2,4,3,2],[2,2,0,0],[1,2,2,0]],[[1,0,2,1],[2,3,3,2],[3,2,0,0],[1,2,2,0]],[[1,0,2,1],[2,3,3,2],[2,2,0,0],[2,2,2,0]],[[1,0,2,1],[2,3,3,2],[2,2,0,0],[1,3,2,0]],[[1,2,1,1],[0,3,4,2],[1,2,3,0],[1,1,2,0]],[[1,2,1,1],[0,4,3,2],[1,2,3,0],[1,1,2,0]],[[1,3,1,1],[0,3,3,2],[1,2,3,0],[1,1,2,0]],[[2,2,1,1],[0,3,3,2],[1,2,3,0],[1,1,2,0]],[[1,2,1,1],[0,3,3,2],[1,2,4,0],[1,0,2,1]],[[1,2,1,1],[0,3,3,3],[1,2,3,0],[1,0,2,1]],[[1,0,3,1],[2,3,3,2],[2,2,0,2],[0,1,1,1]],[[1,0,2,2],[2,3,3,2],[2,2,0,2],[0,1,1,1]],[[1,0,2,1],[2,3,3,3],[2,2,0,2],[0,1,1,1]],[[1,0,3,1],[2,3,3,2],[2,2,0,2],[0,1,2,0]],[[1,0,2,2],[2,3,3,2],[2,2,0,2],[0,1,2,0]],[[1,0,2,1],[2,3,3,3],[2,2,0,2],[0,1,2,0]],[[1,0,3,1],[2,3,3,2],[2,2,0,2],[0,2,0,1]],[[1,0,2,2],[2,3,3,2],[2,2,0,2],[0,2,0,1]],[[1,0,2,1],[2,3,3,3],[2,2,0,2],[0,2,0,1]],[[1,0,3,1],[2,3,3,2],[2,2,0,2],[0,2,1,0]],[[1,0,2,2],[2,3,3,2],[2,2,0,2],[0,2,1,0]],[[1,0,2,1],[2,3,3,3],[2,2,0,2],[0,2,1,0]],[[1,2,1,1],[0,3,4,2],[1,2,3,0],[1,0,2,1]],[[1,2,1,2],[0,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,1,1],[0,3,3,2],[1,2,4,0],[0,2,1,1]],[[1,2,1,1],[0,3,3,3],[1,2,3,0],[0,2,1,1]],[[1,2,1,1],[0,3,4,2],[1,2,3,0],[0,2,1,1]],[[1,2,1,2],[0,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,0,3,1],[2,3,3,2],[2,2,0,2],[1,0,1,1]],[[1,0,2,2],[2,3,3,2],[2,2,0,2],[1,0,1,1]],[[1,0,2,1],[2,3,3,3],[2,2,0,2],[1,0,1,1]],[[1,0,3,1],[2,3,3,2],[2,2,0,2],[1,0,2,0]],[[1,0,2,2],[2,3,3,2],[2,2,0,2],[1,0,2,0]],[[1,0,2,1],[2,3,3,3],[2,2,0,2],[1,0,2,0]],[[1,0,3,1],[2,3,3,2],[2,2,0,2],[1,1,0,1]],[[1,0,2,2],[2,3,3,2],[2,2,0,2],[1,1,0,1]],[[1,0,2,1],[2,3,3,3],[2,2,0,2],[1,1,0,1]],[[1,0,3,1],[2,3,3,2],[2,2,0,2],[1,1,1,0]],[[1,0,2,2],[2,3,3,2],[2,2,0,2],[1,1,1,0]],[[1,0,2,1],[2,3,3,3],[2,2,0,2],[1,1,1,0]],[[1,2,1,1],[0,3,3,2],[1,2,3,0],[0,1,2,2]],[[1,2,1,1],[0,3,3,2],[1,2,3,0],[0,1,3,1]],[[1,2,1,1],[0,3,3,2],[1,2,4,0],[0,1,2,1]],[[1,2,1,1],[0,3,3,3],[1,2,3,0],[0,1,2,1]],[[1,2,1,1],[0,3,4,2],[1,2,3,0],[0,1,2,1]],[[1,2,1,2],[0,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,0,3,1],[2,3,3,2],[2,2,0,2],[1,2,0,0]],[[1,0,2,2],[2,3,3,2],[2,2,0,2],[1,2,0,0]],[[1,0,2,1],[2,3,3,3],[2,2,0,2],[1,2,0,0]],[[1,2,1,1],[0,3,3,3],[1,2,2,2],[1,1,1,0]],[[1,2,1,1],[0,3,4,2],[1,2,2,2],[1,1,1,0]],[[1,2,1,2],[0,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,1,1],[0,3,3,2],[1,2,2,3],[1,1,0,1]],[[1,2,1,1],[0,3,3,3],[1,2,2,2],[1,1,0,1]],[[1,2,1,1],[0,3,4,2],[1,2,2,2],[1,1,0,1]],[[1,2,1,2],[0,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,1,1],[0,3,3,2],[1,2,2,3],[1,0,2,0]],[[2,0,2,1],[2,3,3,2],[2,2,1,0],[0,2,2,0]],[[1,0,3,1],[2,3,3,2],[2,2,1,0],[0,2,2,0]],[[1,0,2,2],[2,3,3,2],[2,2,1,0],[0,2,2,0]],[[1,0,2,1],[3,3,3,2],[2,2,1,0],[0,2,2,0]],[[1,0,2,1],[2,4,3,2],[2,2,1,0],[0,2,2,0]],[[1,0,2,1],[2,3,4,2],[2,2,1,0],[0,2,2,0]],[[1,0,2,1],[2,3,3,2],[3,2,1,0],[0,2,2,0]],[[2,0,2,1],[2,3,3,2],[2,2,1,0],[1,1,2,0]],[[1,0,3,1],[2,3,3,2],[2,2,1,0],[1,1,2,0]],[[1,0,2,2],[2,3,3,2],[2,2,1,0],[1,1,2,0]],[[1,0,2,1],[3,3,3,2],[2,2,1,0],[1,1,2,0]],[[1,0,2,1],[2,4,3,2],[2,2,1,0],[1,1,2,0]],[[1,0,2,1],[2,3,4,2],[2,2,1,0],[1,1,2,0]],[[1,0,2,1],[2,3,3,2],[3,2,1,0],[1,1,2,0]],[[1,0,2,1],[2,3,3,2],[2,2,1,0],[2,1,2,0]],[[1,2,1,1],[0,3,3,3],[1,2,2,2],[1,0,2,0]],[[1,2,1,1],[0,3,4,2],[1,2,2,2],[1,0,2,0]],[[1,2,1,2],[0,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,1,1],[0,3,3,2],[1,2,2,2],[1,0,1,2]],[[1,2,1,1],[0,3,3,2],[1,2,2,3],[1,0,1,1]],[[1,2,1,1],[0,3,3,3],[1,2,2,2],[1,0,1,1]],[[1,2,1,1],[0,3,4,2],[1,2,2,2],[1,0,1,1]],[[1,2,1,2],[0,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,1,1],[0,3,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,1,1],[0,3,3,3],[1,2,2,2],[0,2,1,0]],[[1,2,1,1],[0,3,4,2],[1,2,2,2],[0,2,1,0]],[[1,2,1,2],[0,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,1,1],[0,3,3,2],[1,2,2,2],[0,2,0,2]],[[1,2,1,1],[0,3,3,2],[1,2,2,3],[0,2,0,1]],[[1,2,1,1],[0,3,3,3],[1,2,2,2],[0,2,0,1]],[[1,2,1,1],[0,3,4,2],[1,2,2,2],[0,2,0,1]],[[1,2,1,2],[0,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,1,1],[0,3,3,2],[1,2,2,3],[0,1,2,0]],[[1,2,1,1],[0,3,3,3],[1,2,2,2],[0,1,2,0]],[[1,2,1,1],[0,3,4,2],[1,2,2,2],[0,1,2,0]],[[1,2,1,2],[0,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,2],[1,2,2,2],[0,1,1,2]],[[1,2,1,1],[0,3,3,2],[1,2,2,3],[0,1,1,1]],[[1,2,1,1],[0,3,3,3],[1,2,2,2],[0,1,1,1]],[[1,2,1,1],[0,3,4,2],[1,2,2,2],[0,1,1,1]],[[1,2,1,2],[0,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,1,1],[0,3,3,2],[1,2,2,2],[0,0,2,2]],[[1,2,1,1],[0,3,3,2],[1,2,2,3],[0,0,2,1]],[[1,2,1,1],[0,3,3,3],[1,2,2,2],[0,0,2,1]],[[1,2,1,1],[0,3,4,2],[1,2,2,2],[0,0,2,1]],[[1,2,1,2],[0,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,1,1],[0,3,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,1,1],[0,3,3,2],[1,2,1,3],[1,0,2,1]],[[1,2,1,1],[0,3,3,3],[1,2,1,2],[1,0,2,1]],[[1,2,1,1],[0,3,4,2],[1,2,1,2],[1,0,2,1]],[[1,2,1,2],[0,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,1,1],[0,3,3,2],[1,2,1,2],[0,1,2,2]],[[1,2,1,1],[0,3,3,2],[1,2,1,2],[0,1,3,1]],[[1,2,1,1],[0,3,3,2],[1,2,1,3],[0,1,2,1]],[[1,2,1,1],[0,3,3,3],[1,2,1,2],[0,1,2,1]],[[1,2,1,1],[0,3,4,2],[1,2,1,2],[0,1,2,1]],[[1,2,1,2],[0,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,1,1],[0,3,3,2],[1,2,0,2],[0,2,2,2]],[[1,2,1,1],[0,3,3,2],[1,2,0,2],[0,2,3,1]],[[1,2,1,1],[0,3,3,2],[1,2,0,3],[0,2,2,1]],[[1,2,1,1],[0,3,3,3],[1,2,0,2],[0,2,2,1]],[[1,2,1,1],[0,3,4,2],[1,2,0,2],[0,2,2,1]],[[1,2,1,2],[0,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,2,1,1],[0,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,1,1],[0,3,3,3],[1,1,3,2],[1,0,2,0]],[[1,2,1,1],[0,3,4,2],[1,1,3,2],[1,0,2,0]],[[1,2,1,2],[0,3,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,1,1],[0,3,3,2],[1,1,3,2],[1,0,1,2]],[[1,2,1,1],[0,3,3,2],[1,1,3,3],[1,0,1,1]],[[1,2,1,1],[0,3,3,3],[1,1,3,2],[1,0,1,1]],[[1,2,1,1],[0,3,4,2],[1,1,3,2],[1,0,1,1]],[[1,2,1,2],[0,3,3,2],[1,1,3,2],[1,0,1,1]],[[1,2,1,1],[0,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,1,1],[0,3,3,3],[1,1,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,4,2],[1,1,3,2],[0,1,2,0]],[[1,2,1,2],[0,3,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,2],[1,1,3,2],[0,1,1,2]],[[1,2,1,1],[0,3,3,2],[1,1,3,3],[0,1,1,1]],[[1,2,1,1],[0,3,3,3],[1,1,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,4,2],[1,1,3,2],[0,1,1,1]],[[1,2,1,2],[0,3,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,3,2],[1,1,3,2],[0,0,2,2]],[[1,2,1,1],[0,3,3,2],[1,1,3,3],[0,0,2,1]],[[1,2,1,1],[0,3,3,3],[1,1,3,2],[0,0,2,1]],[[1,2,1,1],[0,3,4,2],[1,1,3,2],[0,0,2,1]],[[1,2,1,2],[0,3,3,2],[1,1,3,2],[0,0,2,1]],[[1,2,1,1],[0,3,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,1,1],[0,3,3,2],[1,1,4,1],[0,2,2,0]],[[1,2,1,1],[0,3,3,3],[1,1,3,1],[0,2,2,0]],[[1,2,1,1],[0,3,4,2],[1,1,3,1],[0,2,2,0]],[[1,2,1,2],[0,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,1,1],[0,3,3,2],[1,1,4,1],[0,2,1,1]],[[1,2,1,1],[0,3,3,3],[1,1,3,1],[0,2,1,1]],[[1,2,1,1],[0,3,4,2],[1,1,3,1],[0,2,1,1]],[[1,2,1,2],[0,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,1,1],[0,3,4,2],[1,1,3,0],[1,2,2,0]],[[1,2,1,1],[0,4,3,2],[1,1,3,0],[1,2,2,0]],[[1,3,1,1],[0,3,3,2],[1,1,3,0],[1,2,2,0]],[[2,2,1,1],[0,3,3,2],[1,1,3,0],[1,2,2,0]],[[1,2,1,1],[0,3,3,2],[1,1,3,0],[0,2,2,2]],[[1,2,1,1],[0,3,3,2],[1,1,3,0],[0,2,3,1]],[[1,2,1,1],[0,3,3,2],[1,1,4,0],[0,2,2,1]],[[1,2,1,1],[0,3,3,3],[1,1,3,0],[0,2,2,1]],[[1,2,1,1],[0,3,4,2],[1,1,3,0],[0,2,2,1]],[[1,2,1,2],[0,3,3,2],[1,1,3,0],[0,2,2,1]],[[2,0,2,1],[2,3,3,2],[2,2,2,0],[0,1,1,1]],[[1,0,3,1],[2,3,3,2],[2,2,2,0],[0,1,1,1]],[[1,0,2,2],[2,3,3,2],[2,2,2,0],[0,1,1,1]],[[1,0,2,1],[3,3,3,2],[2,2,2,0],[0,1,1,1]],[[1,0,2,1],[2,4,3,2],[2,2,2,0],[0,1,1,1]],[[1,0,2,1],[2,3,4,2],[2,2,2,0],[0,1,1,1]],[[2,0,2,1],[2,3,3,2],[2,2,2,0],[0,1,2,0]],[[1,0,3,1],[2,3,3,2],[2,2,2,0],[0,1,2,0]],[[1,0,2,2],[2,3,3,2],[2,2,2,0],[0,1,2,0]],[[1,0,2,1],[3,3,3,2],[2,2,2,0],[0,1,2,0]],[[1,0,2,1],[2,4,3,2],[2,2,2,0],[0,1,2,0]],[[1,0,2,1],[2,3,4,2],[2,2,2,0],[0,1,2,0]],[[1,0,2,1],[2,3,3,2],[3,2,2,0],[0,1,2,0]],[[2,0,2,1],[2,3,3,2],[2,2,2,0],[0,2,0,1]],[[1,0,3,1],[2,3,3,2],[2,2,2,0],[0,2,0,1]],[[1,0,2,2],[2,3,3,2],[2,2,2,0],[0,2,0,1]],[[1,0,2,1],[3,3,3,2],[2,2,2,0],[0,2,0,1]],[[1,0,2,1],[2,4,3,2],[2,2,2,0],[0,2,0,1]],[[1,0,2,1],[2,3,4,2],[2,2,2,0],[0,2,0,1]],[[1,0,2,1],[2,3,3,2],[3,2,2,0],[0,2,0,1]],[[2,0,2,1],[2,3,3,2],[2,2,2,0],[0,2,1,0]],[[1,0,3,1],[2,3,3,2],[2,2,2,0],[0,2,1,0]],[[1,0,2,2],[2,3,3,2],[2,2,2,0],[0,2,1,0]],[[1,0,2,1],[3,3,3,2],[2,2,2,0],[0,2,1,0]],[[1,0,2,1],[2,4,3,2],[2,2,2,0],[0,2,1,0]],[[1,0,2,1],[2,3,4,2],[2,2,2,0],[0,2,1,0]],[[1,0,2,1],[2,3,3,2],[3,2,2,0],[0,2,1,0]],[[2,0,2,1],[2,3,3,2],[2,2,2,0],[1,0,1,1]],[[1,0,3,1],[2,3,3,2],[2,2,2,0],[1,0,1,1]],[[1,0,2,2],[2,3,3,2],[2,2,2,0],[1,0,1,1]],[[1,0,2,1],[3,3,3,2],[2,2,2,0],[1,0,1,1]],[[1,0,2,1],[2,4,3,2],[2,2,2,0],[1,0,1,1]],[[1,0,2,1],[2,3,4,2],[2,2,2,0],[1,0,1,1]],[[1,0,2,1],[2,3,3,2],[3,2,2,0],[1,0,1,1]],[[2,0,2,1],[2,3,3,2],[2,2,2,0],[1,0,2,0]],[[1,0,3,1],[2,3,3,2],[2,2,2,0],[1,0,2,0]],[[1,0,2,2],[2,3,3,2],[2,2,2,0],[1,0,2,0]],[[1,0,2,1],[3,3,3,2],[2,2,2,0],[1,0,2,0]],[[1,0,2,1],[2,4,3,2],[2,2,2,0],[1,0,2,0]],[[1,0,2,1],[2,3,4,2],[2,2,2,0],[1,0,2,0]],[[1,0,2,1],[2,3,3,2],[3,2,2,0],[1,0,2,0]],[[1,0,2,1],[2,3,3,2],[2,2,2,0],[2,0,2,0]],[[2,0,2,1],[2,3,3,2],[2,2,2,0],[1,1,0,1]],[[1,0,3,1],[2,3,3,2],[2,2,2,0],[1,1,0,1]],[[1,0,2,2],[2,3,3,2],[2,2,2,0],[1,1,0,1]],[[1,0,2,1],[3,3,3,2],[2,2,2,0],[1,1,0,1]],[[1,0,2,1],[2,4,3,2],[2,2,2,0],[1,1,0,1]],[[1,0,2,1],[2,3,4,2],[2,2,2,0],[1,1,0,1]],[[1,0,2,1],[2,3,3,2],[3,2,2,0],[1,1,0,1]],[[1,0,2,1],[2,3,3,2],[2,2,2,0],[2,1,0,1]],[[2,0,2,1],[2,3,3,2],[2,2,2,0],[1,1,1,0]],[[1,0,3,1],[2,3,3,2],[2,2,2,0],[1,1,1,0]],[[1,0,2,2],[2,3,3,2],[2,2,2,0],[1,1,1,0]],[[1,0,2,1],[3,3,3,2],[2,2,2,0],[1,1,1,0]],[[1,0,2,1],[2,4,3,2],[2,2,2,0],[1,1,1,0]],[[1,0,2,1],[2,3,4,2],[2,2,2,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,2],[3,2,2,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,2],[2,2,2,0],[2,1,1,0]],[[2,0,2,1],[2,3,3,2],[2,2,2,0],[1,2,0,0]],[[1,0,3,1],[2,3,3,2],[2,2,2,0],[1,2,0,0]],[[1,0,2,2],[2,3,3,2],[2,2,2,0],[1,2,0,0]],[[1,0,2,1],[3,3,3,2],[2,2,2,0],[1,2,0,0]],[[1,0,2,1],[2,4,3,2],[2,2,2,0],[1,2,0,0]],[[1,0,2,1],[2,3,4,2],[2,2,2,0],[1,2,0,0]],[[1,0,2,1],[2,3,3,2],[3,2,2,0],[1,2,0,0]],[[1,0,2,1],[2,3,3,2],[2,2,2,0],[2,2,0,0]],[[1,2,1,1],[0,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,1,1],[0,3,3,3],[1,1,2,2],[0,2,2,0]],[[1,2,1,1],[0,3,4,2],[1,1,2,2],[0,2,2,0]],[[1,2,1,2],[0,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,1,1],[0,3,3,2],[1,1,2,2],[0,2,1,2]],[[1,2,1,1],[0,3,3,2],[1,1,2,3],[0,2,1,1]],[[1,2,1,1],[0,3,3,3],[1,1,2,2],[0,2,1,1]],[[1,2,1,1],[0,3,4,2],[1,1,2,2],[0,2,1,1]],[[1,2,1,2],[0,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,1,1],[0,3,3,2],[1,1,1,2],[0,2,2,2]],[[1,2,1,1],[0,3,3,2],[1,1,1,2],[0,2,3,1]],[[1,2,1,1],[0,3,3,2],[1,1,1,3],[0,2,2,1]],[[1,2,1,1],[0,3,3,3],[1,1,1,2],[0,2,2,1]],[[1,2,1,1],[0,3,4,2],[1,1,1,2],[0,2,2,1]],[[1,2,1,2],[0,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,1,1],[0,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,1,1],[0,3,3,3],[1,0,3,2],[0,2,2,0]],[[1,2,1,1],[0,3,4,2],[1,0,3,2],[0,2,2,0]],[[1,2,1,2],[0,3,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,1,1],[0,3,3,2],[1,0,3,2],[0,2,1,2]],[[1,2,1,1],[0,3,3,2],[1,0,3,3],[0,2,1,1]],[[1,2,1,1],[0,3,3,3],[1,0,3,2],[0,2,1,1]],[[1,2,1,1],[0,3,4,2],[1,0,3,2],[0,2,1,1]],[[1,2,1,2],[0,3,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,1,1],[0,3,3,2],[1,0,3,2],[0,1,2,2]],[[1,2,1,1],[0,3,3,2],[1,0,3,3],[0,1,2,1]],[[1,2,1,1],[0,3,3,3],[1,0,3,2],[0,1,2,1]],[[1,2,1,1],[0,3,4,2],[1,0,3,2],[0,1,2,1]],[[1,2,1,2],[0,3,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,1,1],[0,3,3,2],[1,0,2,2],[0,2,2,2]],[[1,2,1,1],[0,3,3,2],[1,0,2,2],[0,2,3,1]],[[1,2,1,1],[0,3,3,2],[1,0,2,3],[0,2,2,1]],[[1,2,1,1],[0,3,3,3],[1,0,2,2],[0,2,2,1]],[[1,2,1,1],[0,3,4,2],[1,0,2,2],[0,2,2,1]],[[1,2,1,2],[0,3,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,1,1],[0,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,1,1],[0,3,3,3],[0,3,3,2],[0,1,0,1]],[[1,2,1,1],[0,3,4,2],[0,3,3,2],[0,1,0,1]],[[1,2,1,2],[0,3,3,2],[0,3,3,2],[0,1,0,1]],[[1,2,1,1],[0,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,2,1,1],[0,3,4,2],[0,3,3,1],[1,2,0,0]],[[1,2,1,2],[0,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,2,1,1],[0,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,1,1],[0,3,3,3],[0,3,3,1],[0,2,1,0]],[[1,2,1,1],[0,3,4,2],[0,3,3,1],[0,2,1,0]],[[1,2,1,2],[0,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,2,1,1],[0,3,3,2],[0,3,4,1],[0,2,0,1]],[[1,2,1,1],[0,3,3,3],[0,3,3,1],[0,2,0,1]],[[1,2,1,1],[0,3,4,2],[0,3,3,1],[0,2,0,1]],[[1,2,1,2],[0,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,2,1,1],[0,3,3,2],[0,3,3,1],[0,1,3,0]],[[1,2,1,1],[0,3,3,2],[0,3,4,1],[0,1,2,0]],[[1,2,1,1],[0,3,3,3],[0,3,3,1],[0,1,2,0]],[[1,2,1,1],[0,3,4,2],[0,3,3,1],[0,1,2,0]],[[1,2,1,2],[0,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,2,1,1],[0,3,3,2],[0,3,4,1],[0,1,1,1]],[[1,2,1,1],[0,3,3,3],[0,3,3,1],[0,1,1,1]],[[1,2,1,1],[0,3,4,2],[0,3,3,1],[0,1,1,1]],[[1,2,1,2],[0,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,2,1,1],[0,3,3,2],[0,3,4,1],[0,0,2,1]],[[1,2,1,1],[0,3,3,3],[0,3,3,1],[0,0,2,1]],[[1,2,1,1],[0,3,4,2],[0,3,3,1],[0,0,2,1]],[[1,2,1,2],[0,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,2,1,1],[0,3,3,2],[0,3,4,0],[0,2,1,1]],[[1,2,1,1],[0,3,3,3],[0,3,3,0],[0,2,1,1]],[[1,2,1,1],[0,3,4,2],[0,3,3,0],[0,2,1,1]],[[1,2,1,2],[0,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,2,1,1],[0,3,3,2],[0,3,3,0],[0,1,2,2]],[[1,2,1,1],[0,3,3,2],[0,3,3,0],[0,1,3,1]],[[1,2,1,1],[0,3,3,2],[0,3,4,0],[0,1,2,1]],[[1,2,1,1],[0,3,3,3],[0,3,3,0],[0,1,2,1]],[[1,2,1,1],[0,3,4,2],[0,3,3,0],[0,1,2,1]],[[1,2,1,2],[0,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,2,1,1],[0,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,1,1],[0,3,3,3],[0,3,2,2],[0,2,1,0]],[[1,2,1,1],[0,3,4,2],[0,3,2,2],[0,2,1,0]],[[1,2,1,2],[0,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,2,1,1],[0,3,3,2],[0,3,2,2],[0,2,0,2]],[[1,2,1,1],[0,3,3,2],[0,3,2,3],[0,2,0,1]],[[1,2,1,1],[0,3,3,3],[0,3,2,2],[0,2,0,1]],[[1,2,1,1],[0,3,4,2],[0,3,2,2],[0,2,0,1]],[[1,2,1,2],[0,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,2,1,1],[0,3,3,2],[0,3,2,3],[0,1,2,0]],[[1,2,1,1],[0,3,3,3],[0,3,2,2],[0,1,2,0]],[[1,2,1,1],[0,3,4,2],[0,3,2,2],[0,1,2,0]],[[1,2,1,2],[0,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,2],[0,3,2,2],[0,1,1,2]],[[1,2,1,1],[0,3,3,2],[0,3,2,3],[0,1,1,1]],[[1,2,1,1],[0,3,3,3],[0,3,2,2],[0,1,1,1]],[[1,2,1,1],[0,3,4,2],[0,3,2,2],[0,1,1,1]],[[1,2,1,2],[0,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,2,1,1],[0,3,3,2],[0,3,2,2],[0,0,2,2]],[[1,2,1,1],[0,3,3,2],[0,3,2,3],[0,0,2,1]],[[1,2,1,1],[0,3,3,3],[0,3,2,2],[0,0,2,1]],[[1,2,1,1],[0,3,4,2],[0,3,2,2],[0,0,2,1]],[[1,2,1,2],[0,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,2,1,1],[0,3,3,3],[0,3,2,1],[1,2,1,0]],[[1,2,1,1],[0,3,4,2],[0,3,2,1],[1,2,1,0]],[[1,2,1,2],[0,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,1,1],[0,3,3,3],[0,3,2,1],[1,2,0,1]],[[1,2,1,1],[0,3,4,2],[0,3,2,1],[1,2,0,1]],[[1,2,1,2],[0,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,1,1],[0,3,3,3],[0,3,2,1],[1,1,2,0]],[[1,2,1,1],[0,3,4,2],[0,3,2,1],[1,1,2,0]],[[1,2,1,2],[0,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,1,1],[0,3,3,3],[0,3,2,1],[1,1,1,1]],[[1,2,1,1],[0,3,4,2],[0,3,2,1],[1,1,1,1]],[[1,2,1,2],[0,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,2,1,1],[0,3,3,3],[0,3,2,0],[1,2,1,1]],[[1,2,1,1],[0,3,4,2],[0,3,2,0],[1,2,1,1]],[[1,2,1,2],[0,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,1,1],[0,3,3,3],[0,3,2,0],[1,1,2,1]],[[1,2,1,1],[0,3,4,2],[0,3,2,0],[1,1,2,1]],[[1,2,1,2],[0,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,2,1,1],[0,3,3,2],[0,3,1,3],[1,2,1,0]],[[1,2,1,1],[0,3,3,3],[0,3,1,2],[1,2,1,0]],[[1,2,1,1],[0,3,4,2],[0,3,1,2],[1,2,1,0]],[[1,2,1,2],[0,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,1,1],[0,3,3,2],[0,3,1,2],[1,2,0,2]],[[1,2,1,1],[0,3,3,2],[0,3,1,3],[1,2,0,1]],[[1,2,1,1],[0,3,3,3],[0,3,1,2],[1,2,0,1]],[[1,2,1,1],[0,3,4,2],[0,3,1,2],[1,2,0,1]],[[1,2,1,2],[0,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,2,1,1],[0,3,3,2],[0,3,1,3],[1,1,2,0]],[[1,2,1,1],[0,3,3,3],[0,3,1,2],[1,1,2,0]],[[1,2,1,1],[0,3,4,2],[0,3,1,2],[1,1,2,0]],[[1,2,1,2],[0,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,1,1],[0,3,3,2],[0,3,1,2],[1,1,1,2]],[[1,2,1,1],[0,3,3,2],[0,3,1,3],[1,1,1,1]],[[1,2,1,1],[0,3,3,3],[0,3,1,2],[1,1,1,1]],[[1,2,1,1],[0,3,4,2],[0,3,1,2],[1,1,1,1]],[[1,2,1,2],[0,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,1,1],[0,3,3,2],[0,3,1,2],[0,1,2,2]],[[1,2,1,1],[0,3,3,2],[0,3,1,2],[0,1,3,1]],[[1,2,1,1],[0,3,3,2],[0,3,1,3],[0,1,2,1]],[[1,2,1,1],[0,3,3,3],[0,3,1,2],[0,1,2,1]],[[1,2,1,1],[0,3,4,2],[0,3,1,2],[0,1,2,1]],[[1,2,1,2],[0,3,3,2],[0,3,1,2],[0,1,2,1]],[[1,2,1,1],[0,3,3,3],[0,3,1,1],[1,2,2,0]],[[1,2,1,1],[0,3,4,2],[0,3,1,1],[1,2,2,0]],[[1,2,1,2],[0,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,1,1],[0,3,3,3],[0,3,1,0],[1,2,2,1]],[[1,2,1,1],[0,3,4,2],[0,3,1,0],[1,2,2,1]],[[1,2,1,2],[0,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,1,1],[0,3,3,2],[0,3,0,3],[1,2,2,0]],[[1,2,1,1],[0,3,3,3],[0,3,0,2],[1,2,2,0]],[[1,2,1,1],[0,3,4,2],[0,3,0,2],[1,2,2,0]],[[1,2,1,2],[0,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,2],[0,3,0,2],[1,2,1,2]],[[1,2,1,1],[0,3,3,2],[0,3,0,3],[1,2,1,1]],[[1,2,1,1],[0,3,3,3],[0,3,0,2],[1,2,1,1]],[[1,2,1,1],[0,3,4,2],[0,3,0,2],[1,2,1,1]],[[1,2,1,2],[0,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,1,1],[0,3,3,2],[0,3,0,2],[1,1,2,2]],[[1,2,1,1],[0,3,3,2],[0,3,0,2],[1,1,3,1]],[[1,2,1,1],[0,3,3,2],[0,3,0,3],[1,1,2,1]],[[1,2,1,1],[0,3,3,3],[0,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,3,4,2],[0,3,0,2],[1,1,2,1]],[[1,2,1,2],[0,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,3,3,3],[0,3,0,1],[1,2,2,1]],[[1,2,1,1],[0,3,4,2],[0,3,0,1],[1,2,2,1]],[[1,2,1,2],[0,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,2,1,1],[0,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,1,1],[0,3,3,3],[0,2,3,2],[1,1,0,1]],[[1,2,1,1],[0,3,4,2],[0,2,3,2],[1,1,0,1]],[[1,2,1,2],[0,3,3,2],[0,2,3,2],[1,1,0,1]],[[2,0,2,1],[2,3,3,2],[2,2,3,0],[0,2,0,0]],[[1,0,3,1],[2,3,3,2],[2,2,3,0],[0,2,0,0]],[[1,0,2,2],[2,3,3,2],[2,2,3,0],[0,2,0,0]],[[1,0,2,1],[3,3,3,2],[2,2,3,0],[0,2,0,0]],[[1,0,2,1],[2,4,3,2],[2,2,3,0],[0,2,0,0]],[[1,0,2,1],[2,3,4,2],[2,2,3,0],[0,2,0,0]],[[1,0,2,1],[2,3,3,2],[3,2,3,0],[0,2,0,0]],[[1,2,1,1],[0,3,3,2],[0,2,3,3],[0,1,2,0]],[[1,2,1,1],[0,3,3,3],[0,2,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,4,2],[0,2,3,2],[0,1,2,0]],[[1,2,1,2],[0,3,3,2],[0,2,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,2],[0,2,3,2],[0,1,1,2]],[[1,2,1,1],[0,3,3,2],[0,2,3,3],[0,1,1,1]],[[1,2,1,1],[0,3,3,3],[0,2,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,4,2],[0,2,3,2],[0,1,1,1]],[[1,2,1,2],[0,3,3,2],[0,2,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,3,2],[0,2,3,2],[0,0,2,2]],[[1,2,1,1],[0,3,3,2],[0,2,3,3],[0,0,2,1]],[[1,2,1,1],[0,3,3,3],[0,2,3,2],[0,0,2,1]],[[1,2,1,1],[0,3,4,2],[0,2,3,2],[0,0,2,1]],[[1,2,1,2],[0,3,3,2],[0,2,3,2],[0,0,2,1]],[[1,2,1,1],[0,3,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,1,1],[0,3,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,1,1],[0,3,4,2],[0,2,3,1],[1,2,1,0]],[[1,2,1,2],[0,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,1,1],[0,3,3,2],[0,2,4,1],[1,2,0,1]],[[1,2,1,1],[0,3,3,3],[0,2,3,1],[1,2,0,1]],[[1,2,1,1],[0,3,4,2],[0,2,3,1],[1,2,0,1]],[[1,2,1,2],[0,3,3,2],[0,2,3,1],[1,2,0,1]],[[2,0,2,1],[2,3,3,2],[2,2,3,0],[1,1,0,0]],[[1,0,3,1],[2,3,3,2],[2,2,3,0],[1,1,0,0]],[[1,0,2,2],[2,3,3,2],[2,2,3,0],[1,1,0,0]],[[1,0,2,1],[3,3,3,2],[2,2,3,0],[1,1,0,0]],[[1,0,2,1],[2,4,3,2],[2,2,3,0],[1,1,0,0]],[[1,0,2,1],[2,3,4,2],[2,2,3,0],[1,1,0,0]],[[1,0,2,1],[2,3,3,2],[3,2,3,0],[1,1,0,0]],[[1,0,2,1],[2,3,3,2],[2,2,3,0],[2,1,0,0]],[[1,2,1,1],[0,3,3,2],[0,2,3,1],[1,1,3,0]],[[1,2,1,1],[0,3,3,2],[0,2,4,1],[1,1,2,0]],[[1,2,1,1],[0,3,3,3],[0,2,3,1],[1,1,2,0]],[[1,2,1,1],[0,3,4,2],[0,2,3,1],[1,1,2,0]],[[1,2,1,2],[0,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,1,1],[0,3,3,2],[0,2,4,1],[1,1,1,1]],[[1,2,1,1],[0,3,3,3],[0,2,3,1],[1,1,1,1]],[[1,2,1,1],[0,3,4,2],[0,2,3,1],[1,1,1,1]],[[1,2,1,2],[0,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,1,1],[0,3,3,2],[0,2,4,1],[1,0,2,1]],[[1,2,1,1],[0,3,3,3],[0,2,3,1],[1,0,2,1]],[[1,2,1,1],[0,3,4,2],[0,2,3,1],[1,0,2,1]],[[1,2,1,2],[0,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,1,1],[0,3,3,2],[0,2,4,0],[1,2,1,1]],[[1,2,1,1],[0,3,3,3],[0,2,3,0],[1,2,1,1]],[[1,2,1,1],[0,3,4,2],[0,2,3,0],[1,2,1,1]],[[1,2,1,2],[0,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,1,1],[0,3,3,2],[0,2,3,0],[1,1,2,2]],[[1,2,1,1],[0,3,3,2],[0,2,3,0],[1,1,3,1]],[[1,2,1,1],[0,3,3,2],[0,2,4,0],[1,1,2,1]],[[1,2,1,1],[0,3,3,3],[0,2,3,0],[1,1,2,1]],[[1,2,1,1],[0,3,4,2],[0,2,3,0],[1,1,2,1]],[[1,2,1,2],[0,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,1,1],[0,3,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,1,1],[0,3,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,1,1],[0,3,4,2],[0,2,2,2],[1,2,1,0]],[[1,2,1,2],[0,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,1,1],[0,3,3,2],[0,2,2,2],[1,2,0,2]],[[1,2,1,1],[0,3,3,2],[0,2,2,3],[1,2,0,1]],[[1,2,1,1],[0,3,3,3],[0,2,2,2],[1,2,0,1]],[[1,2,1,1],[0,3,4,2],[0,2,2,2],[1,2,0,1]],[[1,2,1,2],[0,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,1,1],[0,3,3,2],[0,2,2,3],[1,1,2,0]],[[1,2,1,1],[0,3,3,3],[0,2,2,2],[1,1,2,0]],[[1,2,1,1],[0,3,4,2],[0,2,2,2],[1,1,2,0]],[[1,2,1,2],[0,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,1,1],[0,3,3,2],[0,2,2,2],[1,1,1,2]],[[1,2,1,1],[0,3,3,2],[0,2,2,3],[1,1,1,1]],[[1,2,1,1],[0,3,3,3],[0,2,2,2],[1,1,1,1]],[[1,2,1,1],[0,3,4,2],[0,2,2,2],[1,1,1,1]],[[1,2,1,2],[0,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,1,1],[0,3,3,2],[0,2,2,2],[1,0,2,2]],[[1,2,1,1],[0,3,3,2],[0,2,2,3],[1,0,2,1]],[[1,2,1,1],[0,3,3,3],[0,2,2,2],[1,0,2,1]],[[1,2,1,1],[0,3,4,2],[0,2,2,2],[1,0,2,1]],[[1,2,1,2],[0,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,1,1],[0,3,3,2],[0,2,1,2],[1,1,2,2]],[[1,2,1,1],[0,3,3,2],[0,2,1,2],[1,1,3,1]],[[1,2,1,1],[0,3,3,2],[0,2,1,3],[1,1,2,1]],[[1,2,1,1],[0,3,3,3],[0,2,1,2],[1,1,2,1]],[[1,2,1,1],[0,3,4,2],[0,2,1,2],[1,1,2,1]],[[1,2,1,2],[0,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,1,1],[0,3,3,2],[0,2,0,2],[1,2,2,2]],[[1,2,1,1],[0,3,3,2],[0,2,0,2],[1,2,3,1]],[[1,2,1,1],[0,3,3,2],[0,2,0,2],[1,3,2,1]],[[1,2,1,1],[0,3,3,2],[0,2,0,3],[1,2,2,1]],[[1,2,1,1],[0,3,3,3],[0,2,0,2],[1,2,2,1]],[[1,2,1,1],[0,3,4,2],[0,2,0,2],[1,2,2,1]],[[1,2,1,2],[0,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,2,1,1],[0,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,1,1],[0,3,3,3],[0,1,3,2],[1,1,2,0]],[[1,2,1,1],[0,3,4,2],[0,1,3,2],[1,1,2,0]],[[1,2,1,2],[0,3,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,1,1],[0,3,3,2],[0,1,3,2],[1,1,1,2]],[[1,2,1,1],[0,3,3,2],[0,1,3,3],[1,1,1,1]],[[1,2,1,1],[0,3,3,3],[0,1,3,2],[1,1,1,1]],[[1,2,1,1],[0,3,4,2],[0,1,3,2],[1,1,1,1]],[[1,2,1,2],[0,3,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,1,1],[0,3,3,2],[0,1,3,2],[1,0,2,2]],[[1,2,1,1],[0,3,3,2],[0,1,3,3],[1,0,2,1]],[[1,2,1,1],[0,3,3,3],[0,1,3,2],[1,0,2,1]],[[1,2,1,1],[0,3,4,2],[0,1,3,2],[1,0,2,1]],[[1,2,1,2],[0,3,3,2],[0,1,3,2],[1,0,2,1]],[[1,2,1,1],[0,3,3,2],[0,1,3,1],[1,2,3,0]],[[1,2,1,1],[0,3,3,2],[0,1,3,1],[1,3,2,0]],[[1,2,1,1],[0,3,3,2],[0,1,4,1],[1,2,2,0]],[[1,2,1,1],[0,3,3,3],[0,1,3,1],[1,2,2,0]],[[1,2,1,1],[0,3,4,2],[0,1,3,1],[1,2,2,0]],[[1,2,1,2],[0,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,1,1],[0,3,3,2],[0,1,4,1],[1,2,1,1]],[[1,2,1,1],[0,3,3,3],[0,1,3,1],[1,2,1,1]],[[1,2,1,1],[0,3,4,2],[0,1,3,1],[1,2,1,1]],[[1,2,1,2],[0,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,1,1],[0,3,3,2],[0,1,3,0],[1,2,2,2]],[[1,2,1,1],[0,3,3,2],[0,1,3,0],[1,2,3,1]],[[1,2,1,1],[0,3,3,2],[0,1,3,0],[1,3,2,1]],[[1,2,1,1],[0,3,3,2],[0,1,4,0],[1,2,2,1]],[[1,2,1,1],[0,3,3,3],[0,1,3,0],[1,2,2,1]],[[1,2,1,1],[0,3,4,2],[0,1,3,0],[1,2,2,1]],[[1,2,1,2],[0,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,1,1],[0,3,3,2],[0,1,2,3],[1,2,2,0]],[[1,2,1,1],[0,3,3,3],[0,1,2,2],[1,2,2,0]],[[1,2,1,1],[0,3,4,2],[0,1,2,2],[1,2,2,0]],[[1,2,1,2],[0,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,2],[0,1,2,2],[1,2,1,2]],[[1,2,1,1],[0,3,3,2],[0,1,2,3],[1,2,1,1]],[[1,2,1,1],[0,3,3,3],[0,1,2,2],[1,2,1,1]],[[1,2,1,1],[0,3,4,2],[0,1,2,2],[1,2,1,1]],[[1,2,1,2],[0,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,1,1],[0,3,3,2],[0,1,1,2],[1,2,2,2]],[[1,2,1,1],[0,3,3,2],[0,1,1,2],[1,2,3,1]],[[1,2,1,1],[0,3,3,2],[0,1,1,2],[1,3,2,1]],[[1,2,1,1],[0,3,3,2],[0,1,1,3],[1,2,2,1]],[[1,2,1,1],[0,3,3,3],[0,1,1,2],[1,2,2,1]],[[1,2,1,1],[0,3,4,2],[0,1,1,2],[1,2,2,1]],[[1,2,1,2],[0,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,1,1],[0,3,3,2],[0,0,3,3],[1,2,2,0]],[[1,2,1,1],[0,3,3,3],[0,0,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,4,2],[0,0,3,2],[1,2,2,0]],[[1,2,1,2],[0,3,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,2],[0,0,3,2],[1,2,1,2]],[[1,2,1,1],[0,3,3,2],[0,0,3,3],[1,2,1,1]],[[1,2,1,1],[0,3,3,3],[0,0,3,2],[1,2,1,1]],[[1,2,1,1],[0,3,4,2],[0,0,3,2],[1,2,1,1]],[[1,2,1,2],[0,3,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,1,1],[0,3,3,2],[0,0,3,2],[1,1,2,2]],[[1,2,1,1],[0,3,3,2],[0,0,3,3],[1,1,2,1]],[[1,2,1,1],[0,3,3,3],[0,0,3,2],[1,1,2,1]],[[1,2,1,1],[0,3,4,2],[0,0,3,2],[1,1,2,1]],[[1,2,1,2],[0,3,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,1,1],[0,3,3,2],[0,0,3,2],[0,2,2,2]],[[1,2,1,1],[0,3,3,2],[0,0,3,3],[0,2,2,1]],[[1,2,1,1],[0,3,3,3],[0,0,3,2],[0,2,2,1]],[[1,2,1,1],[0,3,4,2],[0,0,3,2],[0,2,2,1]],[[1,2,1,2],[0,3,3,2],[0,0,3,2],[0,2,2,1]],[[1,2,1,1],[0,3,3,2],[0,0,2,2],[1,2,2,2]],[[1,2,1,1],[0,3,3,2],[0,0,2,2],[1,2,3,1]],[[1,2,1,1],[0,3,3,2],[0,0,2,3],[1,2,2,1]],[[1,2,1,1],[0,3,3,3],[0,0,2,2],[1,2,2,1]],[[1,2,1,1],[0,3,4,2],[0,0,2,2],[1,2,2,1]],[[1,2,1,2],[0,3,3,2],[0,0,2,2],[1,2,2,1]],[[1,2,1,1],[0,3,4,1],[2,3,3,2],[0,0,0,1]],[[1,2,1,1],[0,4,3,1],[2,3,3,2],[0,0,0,1]],[[1,3,1,1],[0,3,3,1],[2,3,3,2],[0,0,0,1]],[[2,2,1,1],[0,3,3,1],[2,3,3,2],[0,0,0,1]],[[1,2,1,1],[0,3,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,1,1],[0,3,3,1],[2,4,3,1],[1,1,0,0]],[[1,2,1,1],[0,3,3,1],[3,3,3,1],[1,1,0,0]],[[1,2,1,1],[0,3,4,1],[2,3,3,1],[1,1,0,0]],[[1,2,1,1],[0,4,3,1],[2,3,3,1],[1,1,0,0]],[[1,3,1,1],[0,3,3,1],[2,3,3,1],[1,1,0,0]],[[2,2,1,1],[0,3,3,1],[2,3,3,1],[1,1,0,0]],[[1,2,1,1],[0,3,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,1,1],[0,3,3,1],[3,3,3,1],[0,2,0,0]],[[1,2,1,1],[0,3,4,1],[2,3,3,1],[0,2,0,0]],[[1,2,1,1],[0,4,3,1],[2,3,3,1],[0,2,0,0]],[[1,3,1,1],[0,3,3,1],[2,3,3,1],[0,2,0,0]],[[2,2,1,1],[0,3,3,1],[2,3,3,1],[0,2,0,0]],[[1,2,1,1],[0,3,3,1],[2,3,4,1],[0,0,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,3,1],[0,0,2,0]],[[1,2,1,1],[0,4,3,1],[2,3,3,1],[0,0,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,3,1],[0,0,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,3,1],[0,0,2,0]],[[1,2,1,1],[0,3,3,1],[2,3,4,1],[0,0,1,1]],[[1,2,1,1],[0,3,4,1],[2,3,3,1],[0,0,1,1]],[[1,2,1,1],[0,4,3,1],[2,3,3,1],[0,0,1,1]],[[1,3,1,1],[0,3,3,1],[2,3,3,1],[0,0,1,1]],[[2,2,1,1],[0,3,3,1],[2,3,3,1],[0,0,1,1]],[[1,2,1,1],[0,3,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,1,1],[0,3,3,1],[2,4,3,0],[1,2,0,0]],[[1,2,1,1],[0,3,3,1],[3,3,3,0],[1,2,0,0]],[[1,2,1,1],[0,3,4,1],[2,3,3,0],[1,2,0,0]],[[1,2,1,1],[0,4,3,1],[2,3,3,0],[1,2,0,0]],[[1,3,1,1],[0,3,3,1],[2,3,3,0],[1,2,0,0]],[[2,2,1,1],[0,3,3,1],[2,3,3,0],[1,2,0,0]],[[1,2,1,1],[0,3,3,1],[2,3,3,0],[2,1,1,0]],[[1,2,1,1],[0,3,3,1],[2,4,3,0],[1,1,1,0]],[[1,2,1,1],[0,3,3,1],[3,3,3,0],[1,1,1,0]],[[1,2,1,1],[0,3,4,1],[2,3,3,0],[1,1,1,0]],[[1,2,1,1],[0,4,3,1],[2,3,3,0],[1,1,1,0]],[[1,3,1,1],[0,3,3,1],[2,3,3,0],[1,1,1,0]],[[2,2,1,1],[0,3,3,1],[2,3,3,0],[1,1,1,0]],[[1,2,1,1],[0,3,3,1],[2,3,3,0],[2,0,2,0]],[[1,2,1,1],[0,3,3,1],[2,4,3,0],[1,0,2,0]],[[1,2,1,1],[0,3,3,1],[3,3,3,0],[1,0,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,3,0],[1,0,2,0]],[[1,2,1,1],[0,4,3,1],[2,3,3,0],[1,0,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,3,0],[1,0,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,3,0],[1,0,2,0]],[[1,2,1,1],[0,3,3,1],[2,3,3,0],[0,3,1,0]],[[1,2,1,1],[0,3,3,1],[2,4,3,0],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[3,3,3,0],[0,2,1,0]],[[1,2,1,1],[0,3,4,1],[2,3,3,0],[0,2,1,0]],[[1,2,1,1],[0,4,3,1],[2,3,3,0],[0,2,1,0]],[[1,3,1,1],[0,3,3,1],[2,3,3,0],[0,2,1,0]],[[2,2,1,1],[0,3,3,1],[2,3,3,0],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[2,4,3,0],[0,1,2,0]],[[1,2,1,1],[0,3,3,1],[3,3,3,0],[0,1,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,3,0],[0,1,2,0]],[[1,2,1,1],[0,4,3,1],[2,3,3,0],[0,1,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,3,0],[0,1,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,3,0],[0,1,2,0]],[[1,2,1,1],[0,3,3,1],[2,3,4,0],[0,0,2,1]],[[1,2,1,1],[0,3,4,1],[2,3,3,0],[0,0,2,1]],[[1,2,1,1],[0,4,3,1],[2,3,3,0],[0,0,2,1]],[[1,3,1,1],[0,3,3,1],[2,3,3,0],[0,0,2,1]],[[2,2,1,1],[0,3,3,1],[2,3,3,0],[0,0,2,1]],[[1,2,1,1],[0,3,4,1],[2,3,2,2],[0,0,2,0]],[[1,2,1,1],[0,4,3,1],[2,3,2,2],[0,0,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,2,2],[0,0,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,2,2],[0,0,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,2,2],[0,0,1,1]],[[1,2,1,1],[0,4,3,1],[2,3,2,2],[0,0,1,1]],[[1,3,1,1],[0,3,3,1],[2,3,2,2],[0,0,1,1]],[[2,2,1,1],[0,3,3,1],[2,3,2,2],[0,0,1,1]],[[1,2,1,1],[0,3,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,1,1],[0,3,3,1],[2,4,2,1],[1,2,0,0]],[[1,2,1,1],[0,3,3,1],[3,3,2,1],[1,2,0,0]],[[1,2,1,1],[0,3,4,1],[2,3,2,1],[1,2,0,0]],[[1,2,1,1],[0,4,3,1],[2,3,2,1],[1,2,0,0]],[[1,3,1,1],[0,3,3,1],[2,3,2,1],[1,2,0,0]],[[2,2,1,1],[0,3,3,1],[2,3,2,1],[1,2,0,0]],[[1,2,1,1],[0,3,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,1,1],[0,3,3,1],[2,4,2,1],[1,1,1,0]],[[1,2,1,1],[0,3,3,1],[3,3,2,1],[1,1,1,0]],[[1,2,1,1],[0,3,4,1],[2,3,2,1],[1,1,1,0]],[[1,2,1,1],[0,4,3,1],[2,3,2,1],[1,1,1,0]],[[1,3,1,1],[0,3,3,1],[2,3,2,1],[1,1,1,0]],[[2,2,1,1],[0,3,3,1],[2,3,2,1],[1,1,1,0]],[[1,2,1,1],[0,3,3,1],[2,3,2,1],[2,1,0,1]],[[1,2,1,1],[0,3,3,1],[2,4,2,1],[1,1,0,1]],[[1,2,1,1],[0,3,3,1],[3,3,2,1],[1,1,0,1]],[[1,2,1,1],[0,3,4,1],[2,3,2,1],[1,1,0,1]],[[1,2,1,1],[0,4,3,1],[2,3,2,1],[1,1,0,1]],[[1,3,1,1],[0,3,3,1],[2,3,2,1],[1,1,0,1]],[[2,2,1,1],[0,3,3,1],[2,3,2,1],[1,1,0,1]],[[1,2,1,1],[0,3,3,1],[2,3,2,1],[2,0,2,0]],[[1,2,1,1],[0,3,3,1],[2,4,2,1],[1,0,2,0]],[[1,2,1,1],[0,3,3,1],[3,3,2,1],[1,0,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,2,1],[1,0,2,0]],[[1,2,1,1],[0,4,3,1],[2,3,2,1],[1,0,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,2,1],[1,0,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,2,1],[1,0,2,0]],[[1,2,1,1],[0,3,3,1],[2,3,2,1],[2,0,1,1]],[[1,2,1,1],[0,3,3,1],[2,4,2,1],[1,0,1,1]],[[1,2,1,1],[0,3,3,1],[3,3,2,1],[1,0,1,1]],[[1,2,1,1],[0,3,4,1],[2,3,2,1],[1,0,1,1]],[[1,2,1,1],[0,4,3,1],[2,3,2,1],[1,0,1,1]],[[1,3,1,1],[0,3,3,1],[2,3,2,1],[1,0,1,1]],[[2,2,1,1],[0,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,2,1,1],[0,3,3,1],[2,3,2,1],[0,3,1,0]],[[1,2,1,1],[0,3,3,1],[2,4,2,1],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[3,3,2,1],[0,2,1,0]],[[1,2,1,1],[0,3,4,1],[2,3,2,1],[0,2,1,0]],[[1,2,1,1],[0,4,3,1],[2,3,2,1],[0,2,1,0]],[[1,3,1,1],[0,3,3,1],[2,3,2,1],[0,2,1,0]],[[2,2,1,1],[0,3,3,1],[2,3,2,1],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[2,3,2,1],[0,3,0,1]],[[1,2,1,1],[0,3,3,1],[2,4,2,1],[0,2,0,1]],[[1,2,1,1],[0,3,3,1],[3,3,2,1],[0,2,0,1]],[[1,2,1,1],[0,3,4,1],[2,3,2,1],[0,2,0,1]],[[1,2,1,1],[0,4,3,1],[2,3,2,1],[0,2,0,1]],[[1,3,1,1],[0,3,3,1],[2,3,2,1],[0,2,0,1]],[[2,2,1,1],[0,3,3,1],[2,3,2,1],[0,2,0,1]],[[2,0,2,1],[2,3,3,2],[2,3,0,0],[0,2,2,0]],[[1,0,2,1],[3,3,3,2],[2,3,0,0],[0,2,2,0]],[[1,0,2,1],[2,4,3,2],[2,3,0,0],[0,2,2,0]],[[1,0,2,1],[2,3,3,2],[3,3,0,0],[0,2,2,0]],[[2,0,2,1],[2,3,3,2],[2,3,0,0],[1,1,2,0]],[[1,0,2,1],[3,3,3,2],[2,3,0,0],[1,1,2,0]],[[1,0,2,1],[2,4,3,2],[2,3,0,0],[1,1,2,0]],[[1,0,2,1],[2,3,3,2],[3,3,0,0],[1,1,2,0]],[[1,0,2,1],[2,3,3,2],[2,3,0,0],[2,1,2,0]],[[2,0,2,1],[2,3,3,2],[2,3,0,0],[1,2,1,0]],[[1,0,2,1],[3,3,3,2],[2,3,0,0],[1,2,1,0]],[[1,0,2,1],[2,4,3,2],[2,3,0,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,2],[3,3,0,0],[1,2,1,0]],[[1,0,2,1],[2,3,3,2],[2,3,0,0],[2,2,1,0]],[[1,2,1,1],[0,3,3,1],[2,4,2,1],[0,1,2,0]],[[1,2,1,1],[0,3,3,1],[3,3,2,1],[0,1,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,2,1],[0,1,2,0]],[[1,2,1,1],[0,4,3,1],[2,3,2,1],[0,1,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,2,1],[0,1,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,2,1],[0,1,2,0]],[[1,2,1,1],[0,3,3,1],[2,4,2,1],[0,1,1,1]],[[1,2,1,1],[0,3,3,1],[3,3,2,1],[0,1,1,1]],[[1,2,1,1],[0,3,4,1],[2,3,2,1],[0,1,1,1]],[[1,2,1,1],[0,4,3,1],[2,3,2,1],[0,1,1,1]],[[1,3,1,1],[0,3,3,1],[2,3,2,1],[0,1,1,1]],[[2,2,1,1],[0,3,3,1],[2,3,2,1],[0,1,1,1]],[[1,2,1,1],[0,3,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,1,1],[0,3,3,1],[2,4,2,0],[1,2,0,1]],[[1,2,1,1],[0,3,3,1],[3,3,2,0],[1,2,0,1]],[[1,2,1,1],[0,3,4,1],[2,3,2,0],[1,2,0,1]],[[1,2,1,1],[0,4,3,1],[2,3,2,0],[1,2,0,1]],[[1,3,1,1],[0,3,3,1],[2,3,2,0],[1,2,0,1]],[[2,2,1,1],[0,3,3,1],[2,3,2,0],[1,2,0,1]],[[1,2,1,1],[0,3,3,1],[2,3,2,0],[2,1,1,1]],[[1,2,1,1],[0,3,3,1],[2,4,2,0],[1,1,1,1]],[[1,2,1,1],[0,3,3,1],[3,3,2,0],[1,1,1,1]],[[1,2,1,1],[0,3,4,1],[2,3,2,0],[1,1,1,1]],[[1,2,1,1],[0,4,3,1],[2,3,2,0],[1,1,1,1]],[[1,3,1,1],[0,3,3,1],[2,3,2,0],[1,1,1,1]],[[2,2,1,1],[0,3,3,1],[2,3,2,0],[1,1,1,1]],[[1,2,1,1],[0,3,3,1],[2,3,2,0],[2,0,2,1]],[[1,2,1,1],[0,3,3,1],[2,4,2,0],[1,0,2,1]],[[1,2,1,1],[0,3,3,1],[3,3,2,0],[1,0,2,1]],[[1,2,1,1],[0,3,4,1],[2,3,2,0],[1,0,2,1]],[[1,2,1,1],[0,4,3,1],[2,3,2,0],[1,0,2,1]],[[1,3,1,1],[0,3,3,1],[2,3,2,0],[1,0,2,1]],[[2,2,1,1],[0,3,3,1],[2,3,2,0],[1,0,2,1]],[[1,2,1,1],[0,3,3,1],[2,3,2,0],[0,3,1,1]],[[1,2,1,1],[0,3,3,1],[2,4,2,0],[0,2,1,1]],[[1,2,1,1],[0,3,3,1],[3,3,2,0],[0,2,1,1]],[[1,2,1,1],[0,3,4,1],[2,3,2,0],[0,2,1,1]],[[1,2,1,1],[0,4,3,1],[2,3,2,0],[0,2,1,1]],[[1,3,1,1],[0,3,3,1],[2,3,2,0],[0,2,1,1]],[[2,2,1,1],[0,3,3,1],[2,3,2,0],[0,2,1,1]],[[1,2,1,1],[0,3,3,1],[2,4,2,0],[0,1,2,1]],[[1,2,1,1],[0,3,3,1],[3,3,2,0],[0,1,2,1]],[[1,2,1,1],[0,3,4,1],[2,3,2,0],[0,1,2,1]],[[1,2,1,1],[0,4,3,1],[2,3,2,0],[0,1,2,1]],[[1,3,1,1],[0,3,3,1],[2,3,2,0],[0,1,2,1]],[[2,2,1,1],[0,3,3,1],[2,3,2,0],[0,1,2,1]],[[1,2,1,1],[0,3,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,1,1],[0,3,3,1],[2,4,1,2],[1,2,0,0]],[[1,2,1,1],[0,3,3,1],[3,3,1,2],[1,2,0,0]],[[1,2,1,1],[0,3,4,1],[2,3,1,2],[1,2,0,0]],[[1,2,1,1],[0,4,3,1],[2,3,1,2],[1,2,0,0]],[[1,3,1,1],[0,3,3,1],[2,3,1,2],[1,2,0,0]],[[2,2,1,1],[0,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,0,3,1],[2,3,3,2],[2,3,0,2],[1,0,0,1]],[[1,0,2,2],[2,3,3,2],[2,3,0,2],[1,0,0,1]],[[1,0,2,1],[2,3,3,3],[2,3,0,2],[1,0,0,1]],[[1,0,3,1],[2,3,3,2],[2,3,0,2],[1,0,1,0]],[[1,0,2,2],[2,3,3,2],[2,3,0,2],[1,0,1,0]],[[1,0,2,1],[2,3,3,3],[2,3,0,2],[1,0,1,0]],[[1,2,1,1],[0,3,3,1],[2,3,1,2],[2,1,1,0]],[[1,2,1,1],[0,3,3,1],[2,4,1,2],[1,1,1,0]],[[1,2,1,1],[0,3,3,1],[3,3,1,2],[1,1,1,0]],[[1,2,1,1],[0,3,4,1],[2,3,1,2],[1,1,1,0]],[[1,2,1,1],[0,4,3,1],[2,3,1,2],[1,1,1,0]],[[1,3,1,1],[0,3,3,1],[2,3,1,2],[1,1,1,0]],[[2,2,1,1],[0,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,2,1,1],[0,3,3,1],[2,3,1,2],[2,1,0,1]],[[1,2,1,1],[0,3,3,1],[2,4,1,2],[1,1,0,1]],[[1,2,1,1],[0,3,3,1],[3,3,1,2],[1,1,0,1]],[[1,2,1,1],[0,3,4,1],[2,3,1,2],[1,1,0,1]],[[1,2,1,1],[0,4,3,1],[2,3,1,2],[1,1,0,1]],[[1,3,1,1],[0,3,3,1],[2,3,1,2],[1,1,0,1]],[[2,2,1,1],[0,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,2,1,1],[0,3,3,1],[2,3,1,2],[2,0,2,0]],[[1,2,1,1],[0,3,3,1],[2,4,1,2],[1,0,2,0]],[[1,2,1,1],[0,3,3,1],[3,3,1,2],[1,0,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,1,2],[1,0,2,0]],[[1,2,1,1],[0,4,3,1],[2,3,1,2],[1,0,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,1,2],[1,0,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,1,2],[1,0,2,0]],[[1,2,1,1],[0,3,3,1],[2,3,1,2],[2,0,1,1]],[[1,2,1,1],[0,3,3,1],[2,4,1,2],[1,0,1,1]],[[1,2,1,1],[0,3,3,1],[3,3,1,2],[1,0,1,1]],[[1,2,1,1],[0,3,4,1],[2,3,1,2],[1,0,1,1]],[[1,2,1,1],[0,4,3,1],[2,3,1,2],[1,0,1,1]],[[1,3,1,1],[0,3,3,1],[2,3,1,2],[1,0,1,1]],[[2,2,1,1],[0,3,3,1],[2,3,1,2],[1,0,1,1]],[[1,2,1,1],[0,3,3,1],[2,3,1,2],[0,3,1,0]],[[1,2,1,1],[0,3,3,1],[2,4,1,2],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[3,3,1,2],[0,2,1,0]],[[1,2,1,1],[0,3,4,1],[2,3,1,2],[0,2,1,0]],[[1,2,1,1],[0,4,3,1],[2,3,1,2],[0,2,1,0]],[[1,3,1,1],[0,3,3,1],[2,3,1,2],[0,2,1,0]],[[2,2,1,1],[0,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[2,3,1,2],[0,3,0,1]],[[1,2,1,1],[0,3,3,1],[2,4,1,2],[0,2,0,1]],[[1,2,1,1],[0,3,3,1],[3,3,1,2],[0,2,0,1]],[[1,2,1,1],[0,3,4,1],[2,3,1,2],[0,2,0,1]],[[1,2,1,1],[0,4,3,1],[2,3,1,2],[0,2,0,1]],[[1,3,1,1],[0,3,3,1],[2,3,1,2],[0,2,0,1]],[[2,2,1,1],[0,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,2,1,1],[0,3,3,1],[2,4,1,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,1],[3,3,1,2],[0,1,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,1,2],[0,1,2,0]],[[1,2,1,1],[0,4,3,1],[2,3,1,2],[0,1,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,1,2],[0,1,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,1,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,1],[2,4,1,2],[0,1,1,1]],[[1,2,1,1],[0,3,3,1],[3,3,1,2],[0,1,1,1]],[[1,2,1,1],[0,3,4,1],[2,3,1,2],[0,1,1,1]],[[1,2,1,1],[0,4,3,1],[2,3,1,2],[0,1,1,1]],[[1,3,1,1],[0,3,3,1],[2,3,1,2],[0,1,1,1]],[[2,2,1,1],[0,3,3,1],[2,3,1,2],[0,1,1,1]],[[2,0,2,1],[2,3,3,2],[2,3,1,0],[0,2,0,1]],[[1,0,2,1],[3,3,3,2],[2,3,1,0],[0,2,0,1]],[[1,0,2,1],[2,4,3,2],[2,3,1,0],[0,2,0,1]],[[1,0,2,1],[2,3,3,2],[3,3,1,0],[0,2,0,1]],[[2,0,2,1],[2,3,3,2],[2,3,1,0],[0,2,1,0]],[[1,0,2,1],[3,3,3,2],[2,3,1,0],[0,2,1,0]],[[1,0,2,1],[2,4,3,2],[2,3,1,0],[0,2,1,0]],[[1,0,2,1],[2,3,3,2],[3,3,1,0],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[2,3,1,1],[2,1,2,0]],[[1,2,1,1],[0,3,3,1],[2,4,1,1],[1,1,2,0]],[[1,2,1,1],[0,3,3,1],[3,3,1,1],[1,1,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,1,1],[1,1,2,0]],[[1,2,1,1],[0,4,3,1],[2,3,1,1],[1,1,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,1,1],[1,1,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,1,1],[1,1,2,0]],[[2,0,2,1],[2,3,3,2],[2,3,1,0],[1,1,0,1]],[[1,0,2,1],[3,3,3,2],[2,3,1,0],[1,1,0,1]],[[1,0,2,1],[2,4,3,2],[2,3,1,0],[1,1,0,1]],[[1,0,2,1],[2,3,3,2],[3,3,1,0],[1,1,0,1]],[[1,0,2,1],[2,3,3,2],[2,3,1,0],[2,1,0,1]],[[2,0,2,1],[2,3,3,2],[2,3,1,0],[1,1,1,0]],[[1,0,2,1],[3,3,3,2],[2,3,1,0],[1,1,1,0]],[[1,0,2,1],[2,4,3,2],[2,3,1,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,2],[3,3,1,0],[1,1,1,0]],[[1,0,2,1],[2,3,3,2],[2,3,1,0],[2,1,1,0]],[[1,2,1,1],[0,3,3,1],[2,3,1,1],[0,2,3,0]],[[1,2,1,1],[0,3,3,1],[2,3,1,1],[0,3,2,0]],[[1,2,1,1],[0,3,3,1],[2,4,1,1],[0,2,2,0]],[[1,2,1,1],[0,3,3,1],[3,3,1,1],[0,2,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,1,1],[0,2,2,0]],[[2,0,2,1],[2,3,3,2],[2,3,1,0],[1,2,0,0]],[[1,0,2,1],[3,3,3,2],[2,3,1,0],[1,2,0,0]],[[1,0,2,1],[2,4,3,2],[2,3,1,0],[1,2,0,0]],[[1,0,2,1],[2,3,3,2],[3,3,1,0],[1,2,0,0]],[[1,0,2,1],[2,3,3,2],[2,3,1,0],[2,2,0,0]],[[1,2,1,1],[0,4,3,1],[2,3,1,1],[0,2,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,1,1],[0,2,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,1,1],[0,2,2,0]],[[1,2,1,1],[0,3,3,1],[2,3,1,0],[2,1,2,1]],[[1,2,1,1],[0,3,3,1],[2,4,1,0],[1,1,2,1]],[[1,2,1,1],[0,3,3,1],[3,3,1,0],[1,1,2,1]],[[1,2,1,1],[0,3,4,1],[2,3,1,0],[1,1,2,1]],[[1,2,1,1],[0,4,3,1],[2,3,1,0],[1,1,2,1]],[[1,3,1,1],[0,3,3,1],[2,3,1,0],[1,1,2,1]],[[2,2,1,1],[0,3,3,1],[2,3,1,0],[1,1,2,1]],[[1,2,1,1],[0,3,3,1],[2,3,1,0],[0,2,2,2]],[[1,2,1,1],[0,3,3,1],[2,3,1,0],[0,2,3,1]],[[1,2,1,1],[0,3,3,1],[2,3,1,0],[0,3,2,1]],[[1,2,1,1],[0,3,3,1],[2,4,1,0],[0,2,2,1]],[[1,2,1,1],[0,3,3,1],[3,3,1,0],[0,2,2,1]],[[1,2,1,1],[0,3,4,1],[2,3,1,0],[0,2,2,1]],[[1,2,1,1],[0,4,3,1],[2,3,1,0],[0,2,2,1]],[[1,3,1,1],[0,3,3,1],[2,3,1,0],[0,2,2,1]],[[2,2,1,1],[0,3,3,1],[2,3,1,0],[0,2,2,1]],[[1,2,1,1],[0,3,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,1,1],[0,3,3,1],[2,4,0,2],[1,1,2,0]],[[1,2,1,1],[0,3,3,1],[3,3,0,2],[1,1,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,0,2],[1,1,2,0]],[[1,2,1,1],[0,4,3,1],[2,3,0,2],[1,1,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,0,2],[1,1,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,2,1,1],[0,3,3,1],[2,3,0,2],[2,1,1,1]],[[1,2,1,1],[0,3,3,1],[2,4,0,2],[1,1,1,1]],[[1,2,1,1],[0,3,3,1],[3,3,0,2],[1,1,1,1]],[[1,2,1,1],[0,3,4,1],[2,3,0,2],[1,1,1,1]],[[1,2,1,1],[0,4,3,1],[2,3,0,2],[1,1,1,1]],[[1,3,1,1],[0,3,3,1],[2,3,0,2],[1,1,1,1]],[[2,2,1,1],[0,3,3,1],[2,3,0,2],[1,1,1,1]],[[1,2,1,1],[0,3,3,1],[2,3,0,2],[2,0,2,1]],[[1,2,1,1],[0,3,3,1],[2,4,0,2],[1,0,2,1]],[[1,2,1,1],[0,3,3,1],[3,3,0,2],[1,0,2,1]],[[1,2,1,1],[0,3,4,1],[2,3,0,2],[1,0,2,1]],[[1,2,1,1],[0,4,3,1],[2,3,0,2],[1,0,2,1]],[[1,3,1,1],[0,3,3,1],[2,3,0,2],[1,0,2,1]],[[2,2,1,1],[0,3,3,1],[2,3,0,2],[1,0,2,1]],[[1,2,1,1],[0,3,3,1],[2,3,0,2],[0,2,3,0]],[[1,2,1,1],[0,3,3,1],[2,3,0,2],[0,3,2,0]],[[1,2,1,1],[0,3,3,1],[2,4,0,2],[0,2,2,0]],[[1,2,1,1],[0,3,3,1],[3,3,0,2],[0,2,2,0]],[[1,2,1,1],[0,3,4,1],[2,3,0,2],[0,2,2,0]],[[1,2,1,1],[0,4,3,1],[2,3,0,2],[0,2,2,0]],[[1,3,1,1],[0,3,3,1],[2,3,0,2],[0,2,2,0]],[[2,2,1,1],[0,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,2,1,1],[0,3,3,1],[2,3,0,2],[0,3,1,1]],[[1,2,1,1],[0,3,3,1],[2,4,0,2],[0,2,1,1]],[[1,2,1,1],[0,3,3,1],[3,3,0,2],[0,2,1,1]],[[1,2,1,1],[0,3,4,1],[2,3,0,2],[0,2,1,1]],[[1,2,1,1],[0,4,3,1],[2,3,0,2],[0,2,1,1]],[[1,3,1,1],[0,3,3,1],[2,3,0,2],[0,2,1,1]],[[2,2,1,1],[0,3,3,1],[2,3,0,2],[0,2,1,1]],[[1,2,1,1],[0,3,3,1],[2,4,0,2],[0,1,2,1]],[[1,2,1,1],[0,3,3,1],[3,3,0,2],[0,1,2,1]],[[1,2,1,1],[0,3,4,1],[2,3,0,2],[0,1,2,1]],[[1,2,1,1],[0,4,3,1],[2,3,0,2],[0,1,2,1]],[[1,3,1,1],[0,3,3,1],[2,3,0,2],[0,1,2,1]],[[2,2,1,1],[0,3,3,1],[2,3,0,2],[0,1,2,1]],[[1,2,1,1],[0,3,3,1],[2,3,0,1],[1,3,2,0]],[[1,2,1,1],[0,3,3,1],[2,3,0,1],[2,2,2,0]],[[1,2,1,1],[0,3,3,1],[3,3,0,1],[1,2,2,0]],[[1,2,1,1],[0,3,3,1],[2,3,0,1],[2,1,2,1]],[[1,2,1,1],[0,3,3,1],[2,4,0,1],[1,1,2,1]],[[1,2,1,1],[0,3,3,1],[3,3,0,1],[1,1,2,1]],[[1,2,1,1],[0,3,4,1],[2,3,0,1],[1,1,2,1]],[[1,2,1,1],[0,4,3,1],[2,3,0,1],[1,1,2,1]],[[1,3,1,1],[0,3,3,1],[2,3,0,1],[1,1,2,1]],[[2,2,1,1],[0,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,2,1,1],[0,3,3,1],[2,3,0,1],[0,2,2,2]],[[1,2,1,1],[0,3,3,1],[2,3,0,1],[0,2,3,1]],[[1,2,1,1],[0,3,3,1],[2,3,0,1],[0,3,2,1]],[[1,2,1,1],[0,3,3,1],[2,4,0,1],[0,2,2,1]],[[1,2,1,1],[0,3,3,1],[3,3,0,1],[0,2,2,1]],[[1,2,1,1],[0,3,4,1],[2,3,0,1],[0,2,2,1]],[[1,2,1,1],[0,4,3,1],[2,3,0,1],[0,2,2,1]],[[1,3,1,1],[0,3,3,1],[2,3,0,1],[0,2,2,1]],[[2,2,1,1],[0,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,2,1,1],[0,3,3,1],[2,3,0,0],[1,3,2,1]],[[1,2,1,1],[0,3,3,1],[2,3,0,0],[2,2,2,1]],[[1,2,1,1],[0,3,3,1],[3,3,0,0],[1,2,2,1]],[[1,2,1,1],[0,3,4,1],[2,2,3,2],[1,0,0,1]],[[1,2,1,1],[0,4,3,1],[2,2,3,2],[1,0,0,1]],[[1,3,1,1],[0,3,3,1],[2,2,3,2],[1,0,0,1]],[[2,2,1,1],[0,3,3,1],[2,2,3,2],[1,0,0,1]],[[1,2,1,1],[0,3,4,1],[2,2,3,2],[0,1,0,1]],[[1,2,1,1],[0,4,3,1],[2,2,3,2],[0,1,0,1]],[[1,3,1,1],[0,3,3,1],[2,2,3,2],[0,1,0,1]],[[2,2,1,1],[0,3,3,1],[2,2,3,2],[0,1,0,1]],[[1,2,1,1],[0,3,3,1],[2,2,4,1],[1,1,1,0]],[[1,2,1,1],[0,3,4,1],[2,2,3,1],[1,1,1,0]],[[1,2,1,1],[0,4,3,1],[2,2,3,1],[1,1,1,0]],[[1,3,1,1],[0,3,3,1],[2,2,3,1],[1,1,1,0]],[[2,2,1,1],[0,3,3,1],[2,2,3,1],[1,1,1,0]],[[1,2,1,1],[0,3,3,1],[2,2,4,1],[1,1,0,1]],[[1,2,1,1],[0,3,4,1],[2,2,3,1],[1,1,0,1]],[[1,2,1,1],[0,4,3,1],[2,2,3,1],[1,1,0,1]],[[1,3,1,1],[0,3,3,1],[2,2,3,1],[1,1,0,1]],[[2,2,1,1],[0,3,3,1],[2,2,3,1],[1,1,0,1]],[[1,2,1,1],[0,3,3,1],[2,2,3,1],[1,0,3,0]],[[1,2,1,1],[0,3,3,1],[2,2,4,1],[1,0,2,0]],[[1,2,1,1],[0,3,4,1],[2,2,3,1],[1,0,2,0]],[[1,2,1,1],[0,4,3,1],[2,2,3,1],[1,0,2,0]],[[1,3,1,1],[0,3,3,1],[2,2,3,1],[1,0,2,0]],[[2,2,1,1],[0,3,3,1],[2,2,3,1],[1,0,2,0]],[[1,2,1,1],[0,3,3,1],[2,2,4,1],[1,0,1,1]],[[1,2,1,1],[0,3,4,1],[2,2,3,1],[1,0,1,1]],[[1,2,1,1],[0,4,3,1],[2,2,3,1],[1,0,1,1]],[[1,3,1,1],[0,3,3,1],[2,2,3,1],[1,0,1,1]],[[2,2,1,1],[0,3,3,1],[2,2,3,1],[1,0,1,1]],[[1,2,1,1],[0,3,3,1],[2,2,4,1],[0,2,1,0]],[[1,2,1,1],[0,3,4,1],[2,2,3,1],[0,2,1,0]],[[1,2,1,1],[0,4,3,1],[2,2,3,1],[0,2,1,0]],[[1,3,1,1],[0,3,3,1],[2,2,3,1],[0,2,1,0]],[[2,2,1,1],[0,3,3,1],[2,2,3,1],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[2,2,4,1],[0,2,0,1]],[[1,2,1,1],[0,3,4,1],[2,2,3,1],[0,2,0,1]],[[1,2,1,1],[0,4,3,1],[2,2,3,1],[0,2,0,1]],[[1,3,1,1],[0,3,3,1],[2,2,3,1],[0,2,0,1]],[[2,2,1,1],[0,3,3,1],[2,2,3,1],[0,2,0,1]],[[1,2,1,1],[0,3,3,1],[2,2,3,1],[0,1,3,0]],[[1,2,1,1],[0,3,3,1],[2,2,4,1],[0,1,2,0]],[[1,2,1,1],[0,3,4,1],[2,2,3,1],[0,1,2,0]],[[1,2,1,1],[0,4,3,1],[2,2,3,1],[0,1,2,0]],[[1,3,1,1],[0,3,3,1],[2,2,3,1],[0,1,2,0]],[[2,2,1,1],[0,3,3,1],[2,2,3,1],[0,1,2,0]],[[1,2,1,1],[0,3,3,1],[2,2,4,1],[0,1,1,1]],[[1,2,1,1],[0,3,4,1],[2,2,3,1],[0,1,1,1]],[[1,2,1,1],[0,4,3,1],[2,2,3,1],[0,1,1,1]],[[1,3,1,1],[0,3,3,1],[2,2,3,1],[0,1,1,1]],[[2,2,1,1],[0,3,3,1],[2,2,3,1],[0,1,1,1]],[[1,2,1,1],[0,3,3,1],[2,2,4,1],[0,0,2,1]],[[1,2,1,1],[0,3,4,1],[2,2,3,1],[0,0,2,1]],[[1,2,1,1],[0,4,3,1],[2,2,3,1],[0,0,2,1]],[[1,3,1,1],[0,3,3,1],[2,2,3,1],[0,0,2,1]],[[2,2,1,1],[0,3,3,1],[2,2,3,1],[0,0,2,1]],[[1,2,1,1],[0,3,3,1],[2,2,3,0],[1,3,1,0]],[[1,2,1,1],[0,3,3,1],[2,2,3,0],[2,2,1,0]],[[1,2,1,1],[0,3,3,1],[3,2,3,0],[1,2,1,0]],[[1,2,1,1],[0,3,3,1],[2,2,4,0],[1,1,1,1]],[[1,2,1,1],[0,3,4,1],[2,2,3,0],[1,1,1,1]],[[1,2,1,1],[0,4,3,1],[2,2,3,0],[1,1,1,1]],[[1,3,1,1],[0,3,3,1],[2,2,3,0],[1,1,1,1]],[[2,2,1,1],[0,3,3,1],[2,2,3,0],[1,1,1,1]],[[1,2,1,1],[0,3,3,1],[2,2,3,0],[1,0,2,2]],[[1,2,1,1],[0,3,3,1],[2,2,3,0],[1,0,3,1]],[[1,2,1,1],[0,3,3,1],[2,2,4,0],[1,0,2,1]],[[1,2,1,1],[0,3,4,1],[2,2,3,0],[1,0,2,1]],[[1,2,1,1],[0,4,3,1],[2,2,3,0],[1,0,2,1]],[[1,3,1,1],[0,3,3,1],[2,2,3,0],[1,0,2,1]],[[2,2,1,1],[0,3,3,1],[2,2,3,0],[1,0,2,1]],[[1,2,1,1],[0,3,3,1],[2,2,4,0],[0,2,1,1]],[[1,2,1,1],[0,3,4,1],[2,2,3,0],[0,2,1,1]],[[1,2,1,1],[0,4,3,1],[2,2,3,0],[0,2,1,1]],[[1,3,1,1],[0,3,3,1],[2,2,3,0],[0,2,1,1]],[[2,2,1,1],[0,3,3,1],[2,2,3,0],[0,2,1,1]],[[1,2,1,1],[0,3,3,1],[2,2,3,0],[0,1,2,2]],[[1,2,1,1],[0,3,3,1],[2,2,3,0],[0,1,3,1]],[[1,2,1,1],[0,3,3,1],[2,2,4,0],[0,1,2,1]],[[1,2,1,1],[0,3,4,1],[2,2,3,0],[0,1,2,1]],[[1,2,1,1],[0,4,3,1],[2,2,3,0],[0,1,2,1]],[[1,3,1,1],[0,3,3,1],[2,2,3,0],[0,1,2,1]],[[2,2,1,1],[0,3,3,1],[2,2,3,0],[0,1,2,1]],[[1,2,1,1],[0,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,1,1],[0,4,3,1],[2,2,2,2],[1,1,1,0]],[[1,3,1,1],[0,3,3,1],[2,2,2,2],[1,1,1,0]],[[2,2,1,1],[0,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,1,1],[0,3,4,1],[2,2,2,2],[1,1,0,1]],[[1,2,1,1],[0,4,3,1],[2,2,2,2],[1,1,0,1]],[[1,3,1,1],[0,3,3,1],[2,2,2,2],[1,1,0,1]],[[2,2,1,1],[0,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,2,1,1],[0,3,4,1],[2,2,2,2],[1,0,2,0]],[[1,2,1,1],[0,4,3,1],[2,2,2,2],[1,0,2,0]],[[1,3,1,1],[0,3,3,1],[2,2,2,2],[1,0,2,0]],[[2,2,1,1],[0,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,1,1],[0,3,4,1],[2,2,2,2],[1,0,1,1]],[[1,2,1,1],[0,4,3,1],[2,2,2,2],[1,0,1,1]],[[1,3,1,1],[0,3,3,1],[2,2,2,2],[1,0,1,1]],[[2,2,1,1],[0,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,1,1],[0,3,4,1],[2,2,2,2],[0,2,1,0]],[[1,2,1,1],[0,4,3,1],[2,2,2,2],[0,2,1,0]],[[1,3,1,1],[0,3,3,1],[2,2,2,2],[0,2,1,0]],[[2,2,1,1],[0,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,1,1],[0,3,4,1],[2,2,2,2],[0,2,0,1]],[[1,2,1,1],[0,4,3,1],[2,2,2,2],[0,2,0,1]],[[1,3,1,1],[0,3,3,1],[2,2,2,2],[0,2,0,1]],[[2,2,1,1],[0,3,3,1],[2,2,2,2],[0,2,0,1]],[[2,0,2,1],[2,3,3,2],[2,3,2,0],[1,0,0,1]],[[1,0,3,1],[2,3,3,2],[2,3,2,0],[1,0,0,1]],[[1,0,2,2],[2,3,3,2],[2,3,2,0],[1,0,0,1]],[[1,0,2,1],[3,3,3,2],[2,3,2,0],[1,0,0,1]],[[1,0,2,1],[2,4,3,2],[2,3,2,0],[1,0,0,1]],[[1,0,2,1],[2,3,4,2],[2,3,2,0],[1,0,0,1]],[[1,0,2,1],[2,3,3,2],[3,3,2,0],[1,0,0,1]],[[2,0,2,1],[2,3,3,2],[2,3,2,0],[1,0,1,0]],[[1,0,3,1],[2,3,3,2],[2,3,2,0],[1,0,1,0]],[[1,0,2,2],[2,3,3,2],[2,3,2,0],[1,0,1,0]],[[1,0,2,1],[3,3,3,2],[2,3,2,0],[1,0,1,0]],[[1,0,2,1],[2,4,3,2],[2,3,2,0],[1,0,1,0]],[[1,0,2,1],[2,3,4,2],[2,3,2,0],[1,0,1,0]],[[1,0,2,1],[2,3,3,2],[3,3,2,0],[1,0,1,0]],[[1,2,1,1],[0,3,4,1],[2,2,2,2],[0,1,2,0]],[[1,2,1,1],[0,4,3,1],[2,2,2,2],[0,1,2,0]],[[1,3,1,1],[0,3,3,1],[2,2,2,2],[0,1,2,0]],[[2,2,1,1],[0,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,1,1],[0,3,4,1],[2,2,2,2],[0,1,1,1]],[[1,2,1,1],[0,4,3,1],[2,2,2,2],[0,1,1,1]],[[1,3,1,1],[0,3,3,1],[2,2,2,2],[0,1,1,1]],[[2,2,1,1],[0,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,1,1],[0,3,4,1],[2,2,2,2],[0,0,2,1]],[[1,2,1,1],[0,4,3,1],[2,2,2,2],[0,0,2,1]],[[1,3,1,1],[0,3,3,1],[2,2,2,2],[0,0,2,1]],[[2,2,1,1],[0,3,3,1],[2,2,2,2],[0,0,2,1]],[[1,2,1,1],[0,3,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,1,1],[0,3,3,1],[2,2,2,1],[2,2,1,0]],[[1,2,1,1],[0,3,3,1],[3,2,2,1],[1,2,1,0]],[[1,2,1,1],[0,3,3,1],[2,2,2,1],[1,3,0,1]],[[1,2,1,1],[0,3,3,1],[2,2,2,1],[2,2,0,1]],[[1,2,1,1],[0,3,3,1],[3,2,2,1],[1,2,0,1]],[[1,2,1,1],[0,3,3,1],[2,2,2,0],[1,3,1,1]],[[1,2,1,1],[0,3,3,1],[2,2,2,0],[2,2,1,1]],[[1,2,1,1],[0,3,3,1],[3,2,2,0],[1,2,1,1]],[[1,2,1,1],[0,3,3,1],[2,2,1,2],[1,3,1,0]],[[1,2,1,1],[0,3,3,1],[2,2,1,2],[2,2,1,0]],[[1,2,1,1],[0,3,3,1],[3,2,1,2],[1,2,1,0]],[[1,2,1,1],[0,3,3,1],[2,2,1,2],[1,3,0,1]],[[1,2,1,1],[0,3,3,1],[2,2,1,2],[2,2,0,1]],[[1,2,1,1],[0,3,3,1],[3,2,1,2],[1,2,0,1]],[[1,2,1,1],[0,3,4,1],[2,2,1,2],[1,0,2,1]],[[1,2,1,1],[0,4,3,1],[2,2,1,2],[1,0,2,1]],[[1,3,1,1],[0,3,3,1],[2,2,1,2],[1,0,2,1]],[[2,2,1,1],[0,3,3,1],[2,2,1,2],[1,0,2,1]],[[1,2,1,1],[0,3,4,1],[2,2,1,2],[0,1,2,1]],[[1,2,1,1],[0,4,3,1],[2,2,1,2],[0,1,2,1]],[[1,3,1,1],[0,3,3,1],[2,2,1,2],[0,1,2,1]],[[2,2,1,1],[0,3,3,1],[2,2,1,2],[0,1,2,1]],[[1,2,1,1],[0,3,3,1],[2,2,1,1],[1,2,3,0]],[[1,2,1,1],[0,3,3,1],[2,2,1,1],[1,3,2,0]],[[1,2,1,1],[0,3,3,1],[2,2,1,1],[2,2,2,0]],[[1,2,1,1],[0,3,3,1],[3,2,1,1],[1,2,2,0]],[[1,2,1,1],[0,3,3,1],[2,2,1,0],[1,2,2,2]],[[1,2,1,1],[0,3,3,1],[2,2,1,0],[1,2,3,1]],[[1,2,1,1],[0,3,3,1],[2,2,1,0],[1,3,2,1]],[[1,2,1,1],[0,3,3,1],[2,2,1,0],[2,2,2,1]],[[1,2,1,1],[0,3,3,1],[3,2,1,0],[1,2,2,1]],[[1,2,1,1],[0,3,3,1],[2,2,0,2],[1,2,3,0]],[[1,2,1,1],[0,3,3,1],[2,2,0,2],[1,3,2,0]],[[1,2,1,1],[0,3,3,1],[2,2,0,2],[2,2,2,0]],[[1,2,1,1],[0,3,3,1],[3,2,0,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,1],[2,2,0,2],[1,3,1,1]],[[1,2,1,1],[0,3,3,1],[2,2,0,2],[2,2,1,1]],[[1,2,1,1],[0,3,3,1],[3,2,0,2],[1,2,1,1]],[[1,2,1,1],[0,3,4,1],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[0,4,3,1],[2,2,0,2],[0,2,2,1]],[[1,3,1,1],[0,3,3,1],[2,2,0,2],[0,2,2,1]],[[2,2,1,1],[0,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[0,3,3,1],[2,2,0,1],[1,2,2,2]],[[1,2,1,1],[0,3,3,1],[2,2,0,1],[1,2,3,1]],[[1,2,1,1],[0,3,3,1],[2,2,0,1],[1,3,2,1]],[[1,2,1,1],[0,3,3,1],[2,2,0,1],[2,2,2,1]],[[1,2,1,1],[0,3,3,1],[3,2,0,1],[1,2,2,1]],[[1,2,1,1],[0,3,3,1],[2,1,3,1],[0,2,3,0]],[[1,2,1,1],[0,3,3,1],[2,1,3,1],[0,3,2,0]],[[1,2,1,1],[0,3,3,1],[2,1,4,1],[0,2,2,0]],[[1,2,1,1],[0,3,4,1],[2,1,3,1],[0,2,2,0]],[[1,2,1,1],[0,4,3,1],[2,1,3,1],[0,2,2,0]],[[1,3,1,1],[0,3,3,1],[2,1,3,1],[0,2,2,0]],[[2,2,1,1],[0,3,3,1],[2,1,3,1],[0,2,2,0]],[[1,2,1,1],[0,3,3,1],[2,1,4,1],[0,2,1,1]],[[1,2,1,1],[0,3,4,1],[2,1,3,1],[0,2,1,1]],[[1,2,1,1],[0,4,3,1],[2,1,3,1],[0,2,1,1]],[[1,3,1,1],[0,3,3,1],[2,1,3,1],[0,2,1,1]],[[2,2,1,1],[0,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,1,1],[0,3,3,1],[2,1,3,0],[0,2,2,2]],[[1,2,1,1],[0,3,3,1],[2,1,3,0],[0,2,3,1]],[[1,2,1,1],[0,3,3,1],[2,1,3,0],[0,3,2,1]],[[1,2,1,1],[0,3,3,1],[2,1,4,0],[0,2,2,1]],[[1,2,1,1],[0,3,4,1],[2,1,3,0],[0,2,2,1]],[[1,2,1,1],[0,4,3,1],[2,1,3,0],[0,2,2,1]],[[1,3,1,1],[0,3,3,1],[2,1,3,0],[0,2,2,1]],[[2,2,1,1],[0,3,3,1],[2,1,3,0],[0,2,2,1]],[[1,2,1,1],[0,3,4,1],[2,1,2,2],[0,2,2,0]],[[1,2,1,1],[0,4,3,1],[2,1,2,2],[0,2,2,0]],[[1,3,1,1],[0,3,3,1],[2,1,2,2],[0,2,2,0]],[[2,2,1,1],[0,3,3,1],[2,1,2,2],[0,2,2,0]],[[1,2,1,1],[0,3,4,1],[2,1,2,2],[0,2,1,1]],[[1,2,1,1],[0,4,3,1],[2,1,2,2],[0,2,1,1]],[[1,3,1,1],[0,3,3,1],[2,1,2,2],[0,2,1,1]],[[2,2,1,1],[0,3,3,1],[2,1,2,2],[0,2,1,1]],[[1,2,1,1],[0,3,4,1],[2,1,1,2],[0,2,2,1]],[[1,2,1,1],[0,4,3,1],[2,1,1,2],[0,2,2,1]],[[1,3,1,1],[0,3,3,1],[2,1,1,2],[0,2,2,1]],[[2,2,1,1],[0,3,3,1],[2,1,1,2],[0,2,2,1]],[[1,2,1,1],[0,3,4,1],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[0,4,3,1],[2,1,0,2],[1,2,2,1]],[[1,3,1,1],[0,3,3,1],[2,1,0,2],[1,2,2,1]],[[2,2,1,1],[0,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[0,3,3,1],[2,0,3,1],[1,2,3,0]],[[1,2,1,1],[0,3,3,1],[2,0,3,1],[1,3,2,0]],[[1,2,1,1],[0,3,3,1],[2,0,3,1],[2,2,2,0]],[[1,2,1,1],[0,3,3,1],[2,0,4,1],[1,2,2,0]],[[1,2,1,1],[0,3,3,1],[3,0,3,1],[1,2,2,0]],[[1,2,1,1],[0,3,4,1],[2,0,3,1],[1,2,2,0]],[[1,2,1,1],[0,4,3,1],[2,0,3,1],[1,2,2,0]],[[1,3,1,1],[0,3,3,1],[2,0,3,1],[1,2,2,0]],[[2,2,1,1],[0,3,3,1],[2,0,3,1],[1,2,2,0]],[[1,2,1,1],[0,3,3,1],[2,0,4,1],[1,2,1,1]],[[1,2,1,1],[0,3,4,1],[2,0,3,1],[1,2,1,1]],[[1,2,1,1],[0,4,3,1],[2,0,3,1],[1,2,1,1]],[[1,3,1,1],[0,3,3,1],[2,0,3,1],[1,2,1,1]],[[2,2,1,1],[0,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,1,1],[0,3,3,1],[2,0,3,0],[1,2,2,2]],[[1,2,1,1],[0,3,3,1],[2,0,3,0],[1,2,3,1]],[[1,2,1,1],[0,3,3,1],[2,0,3,0],[1,3,2,1]],[[1,2,1,1],[0,3,3,1],[2,0,3,0],[2,2,2,1]],[[1,2,1,1],[0,3,3,1],[2,0,4,0],[1,2,2,1]],[[1,2,1,1],[0,3,3,1],[3,0,3,0],[1,2,2,1]],[[1,2,1,1],[0,3,4,1],[2,0,3,0],[1,2,2,1]],[[1,2,1,1],[0,4,3,1],[2,0,3,0],[1,2,2,1]],[[1,3,1,1],[0,3,3,1],[2,0,3,0],[1,2,2,1]],[[2,2,1,1],[0,3,3,1],[2,0,3,0],[1,2,2,1]],[[1,2,1,1],[0,3,4,1],[2,0,2,2],[1,2,2,0]],[[1,2,1,1],[0,4,3,1],[2,0,2,2],[1,2,2,0]],[[1,3,1,1],[0,3,3,1],[2,0,2,2],[1,2,2,0]],[[2,2,1,1],[0,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,1,1],[0,3,4,1],[2,0,2,2],[1,2,1,1]],[[1,2,1,1],[0,4,3,1],[2,0,2,2],[1,2,1,1]],[[1,3,1,1],[0,3,3,1],[2,0,2,2],[1,2,1,1]],[[2,2,1,1],[0,3,3,1],[2,0,2,2],[1,2,1,1]],[[1,2,1,1],[0,3,4,1],[2,0,1,2],[1,2,2,1]],[[1,2,1,1],[0,4,3,1],[2,0,1,2],[1,2,2,1]],[[1,3,1,1],[0,3,3,1],[2,0,1,2],[1,2,2,1]],[[2,2,1,1],[0,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,1,1],[0,3,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[0,3,3,1],[1,3,4,2],[0,0,2,0]],[[1,2,1,1],[0,3,4,1],[1,3,3,2],[0,0,2,0]],[[1,2,1,1],[0,3,3,1],[1,3,3,2],[0,0,1,2]],[[1,2,1,1],[0,3,3,1],[1,3,3,3],[0,0,1,1]],[[1,2,1,1],[0,3,3,1],[1,3,4,2],[0,0,1,1]],[[1,2,1,1],[0,3,4,1],[1,3,3,2],[0,0,1,1]],[[1,2,1,1],[0,3,3,1],[1,4,3,1],[1,2,0,0]],[[1,2,1,1],[0,3,4,1],[1,3,3,1],[1,2,0,0]],[[1,2,1,1],[0,4,3,1],[1,3,3,1],[1,2,0,0]],[[1,3,1,1],[0,3,3,1],[1,3,3,1],[1,2,0,0]],[[2,2,1,1],[0,3,3,1],[1,3,3,1],[1,2,0,0]],[[1,2,1,1],[0,3,3,1],[1,3,3,0],[1,3,1,0]],[[1,2,1,1],[0,3,3,1],[1,3,3,0],[2,2,1,0]],[[1,2,1,1],[0,3,3,1],[1,4,3,0],[1,2,1,0]],[[1,2,1,1],[0,3,4,1],[1,3,3,0],[1,2,1,0]],[[1,2,1,1],[0,4,3,1],[1,3,3,0],[1,2,1,0]],[[1,3,1,1],[0,3,3,1],[1,3,3,0],[1,2,1,0]],[[2,2,1,1],[0,3,3,1],[1,3,3,0],[1,2,1,0]],[[1,2,1,1],[0,3,3,1],[1,4,3,0],[1,1,2,0]],[[1,2,1,1],[0,3,4,1],[1,3,3,0],[1,1,2,0]],[[1,2,1,1],[0,4,3,1],[1,3,3,0],[1,1,2,0]],[[1,3,1,1],[0,3,3,1],[1,3,3,0],[1,1,2,0]],[[2,2,1,1],[0,3,3,1],[1,3,3,0],[1,1,2,0]],[[1,2,1,1],[0,3,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,1,1],[0,3,3,1],[1,3,2,1],[2,2,1,0]],[[1,2,1,1],[0,3,3,1],[1,4,2,1],[1,2,1,0]],[[1,2,1,1],[0,3,4,1],[1,3,2,1],[1,2,1,0]],[[1,2,1,1],[0,4,3,1],[1,3,2,1],[1,2,1,0]],[[1,3,1,1],[0,3,3,1],[1,3,2,1],[1,2,1,0]],[[2,2,1,1],[0,3,3,1],[1,3,2,1],[1,2,1,0]],[[1,2,1,1],[0,3,3,1],[1,3,2,1],[1,3,0,1]],[[1,2,1,1],[0,3,3,1],[1,3,2,1],[2,2,0,1]],[[1,2,1,1],[0,3,3,1],[1,4,2,1],[1,2,0,1]],[[1,2,1,1],[0,3,4,1],[1,3,2,1],[1,2,0,1]],[[1,2,1,1],[0,4,3,1],[1,3,2,1],[1,2,0,1]],[[1,3,1,1],[0,3,3,1],[1,3,2,1],[1,2,0,1]],[[2,2,1,1],[0,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,2,1,1],[0,3,3,1],[1,4,2,1],[1,1,2,0]],[[1,2,1,1],[0,3,4,1],[1,3,2,1],[1,1,2,0]],[[1,2,1,1],[0,4,3,1],[1,3,2,1],[1,1,2,0]],[[1,3,1,1],[0,3,3,1],[1,3,2,1],[1,1,2,0]],[[2,2,1,1],[0,3,3,1],[1,3,2,1],[1,1,2,0]],[[1,2,1,1],[0,3,3,1],[1,4,2,1],[1,1,1,1]],[[1,2,1,1],[0,3,4,1],[1,3,2,1],[1,1,1,1]],[[1,2,1,1],[0,4,3,1],[1,3,2,1],[1,1,1,1]],[[1,3,1,1],[0,3,3,1],[1,3,2,1],[1,1,1,1]],[[2,2,1,1],[0,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,2,1,1],[0,3,3,1],[1,3,2,0],[1,3,1,1]],[[1,2,1,1],[0,3,3,1],[1,3,2,0],[2,2,1,1]],[[1,2,1,1],[0,3,3,1],[1,4,2,0],[1,2,1,1]],[[1,2,1,1],[0,3,4,1],[1,3,2,0],[1,2,1,1]],[[1,2,1,1],[0,4,3,1],[1,3,2,0],[1,2,1,1]],[[1,3,1,1],[0,3,3,1],[1,3,2,0],[1,2,1,1]],[[2,2,1,1],[0,3,3,1],[1,3,2,0],[1,2,1,1]],[[1,2,1,1],[0,3,3,1],[1,4,2,0],[1,1,2,1]],[[1,2,1,1],[0,3,4,1],[1,3,2,0],[1,1,2,1]],[[1,2,1,1],[0,4,3,1],[1,3,2,0],[1,1,2,1]],[[1,3,1,1],[0,3,3,1],[1,3,2,0],[1,1,2,1]],[[2,2,1,1],[0,3,3,1],[1,3,2,0],[1,1,2,1]],[[1,2,1,1],[0,3,3,1],[1,3,1,2],[1,3,1,0]],[[1,2,1,1],[0,3,3,1],[1,3,1,2],[2,2,1,0]],[[1,2,1,1],[0,3,3,1],[1,4,1,2],[1,2,1,0]],[[1,2,1,1],[0,3,4,1],[1,3,1,2],[1,2,1,0]],[[1,2,1,1],[0,4,3,1],[1,3,1,2],[1,2,1,0]],[[1,3,1,1],[0,3,3,1],[1,3,1,2],[1,2,1,0]],[[2,2,1,1],[0,3,3,1],[1,3,1,2],[1,2,1,0]],[[1,2,1,1],[0,3,3,1],[1,3,1,2],[1,3,0,1]],[[1,2,1,1],[0,3,3,1],[1,3,1,2],[2,2,0,1]],[[1,2,1,1],[0,3,3,1],[1,4,1,2],[1,2,0,1]],[[1,2,1,1],[0,3,4,1],[1,3,1,2],[1,2,0,1]],[[1,2,1,1],[0,4,3,1],[1,3,1,2],[1,2,0,1]],[[1,3,1,1],[0,3,3,1],[1,3,1,2],[1,2,0,1]],[[2,2,1,1],[0,3,3,1],[1,3,1,2],[1,2,0,1]],[[1,2,1,1],[0,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,2,1,1],[0,3,4,1],[1,3,1,2],[1,1,2,0]],[[1,2,1,1],[0,4,3,1],[1,3,1,2],[1,1,2,0]],[[1,3,1,1],[0,3,3,1],[1,3,1,2],[1,1,2,0]],[[2,2,1,1],[0,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,1,1],[0,3,3,1],[1,4,1,2],[1,1,1,1]],[[1,2,1,1],[0,3,4,1],[1,3,1,2],[1,1,1,1]],[[1,2,1,1],[0,4,3,1],[1,3,1,2],[1,1,1,1]],[[1,3,1,1],[0,3,3,1],[1,3,1,2],[1,1,1,1]],[[2,2,1,1],[0,3,3,1],[1,3,1,2],[1,1,1,1]],[[1,2,1,1],[0,3,3,1],[1,3,1,1],[1,2,3,0]],[[1,2,1,1],[0,3,3,1],[1,3,1,1],[1,3,2,0]],[[1,2,1,1],[0,3,3,1],[1,3,1,1],[2,2,2,0]],[[1,2,1,1],[0,3,3,1],[1,4,1,1],[1,2,2,0]],[[1,2,1,1],[0,3,4,1],[1,3,1,1],[1,2,2,0]],[[1,2,1,1],[0,4,3,1],[1,3,1,1],[1,2,2,0]],[[1,3,1,1],[0,3,3,1],[1,3,1,1],[1,2,2,0]],[[2,2,1,1],[0,3,3,1],[1,3,1,1],[1,2,2,0]],[[1,2,1,1],[0,3,3,1],[1,3,1,0],[1,2,2,2]],[[1,2,1,1],[0,3,3,1],[1,3,1,0],[1,2,3,1]],[[1,2,1,1],[0,3,3,1],[1,3,1,0],[1,3,2,1]],[[1,2,1,1],[0,3,3,1],[1,3,1,0],[2,2,2,1]],[[1,2,1,1],[0,3,3,1],[1,4,1,0],[1,2,2,1]],[[1,2,1,1],[0,3,4,1],[1,3,1,0],[1,2,2,1]],[[1,2,1,1],[0,4,3,1],[1,3,1,0],[1,2,2,1]],[[1,3,1,1],[0,3,3,1],[1,3,1,0],[1,2,2,1]],[[2,2,1,1],[0,3,3,1],[1,3,1,0],[1,2,2,1]],[[1,2,1,1],[0,3,3,1],[1,3,0,2],[1,2,3,0]],[[1,2,1,1],[0,3,3,1],[1,3,0,2],[1,3,2,0]],[[1,2,1,1],[0,3,3,1],[1,3,0,2],[2,2,2,0]],[[1,2,1,1],[0,3,3,1],[1,4,0,2],[1,2,2,0]],[[1,2,1,1],[0,3,4,1],[1,3,0,2],[1,2,2,0]],[[1,2,1,1],[0,4,3,1],[1,3,0,2],[1,2,2,0]],[[1,3,1,1],[0,3,3,1],[1,3,0,2],[1,2,2,0]],[[2,2,1,1],[0,3,3,1],[1,3,0,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,1],[1,3,0,2],[1,3,1,1]],[[1,2,1,1],[0,3,3,1],[1,3,0,2],[2,2,1,1]],[[1,2,1,1],[0,3,3,1],[1,4,0,2],[1,2,1,1]],[[1,2,1,1],[0,3,4,1],[1,3,0,2],[1,2,1,1]],[[1,2,1,1],[0,4,3,1],[1,3,0,2],[1,2,1,1]],[[1,3,1,1],[0,3,3,1],[1,3,0,2],[1,2,1,1]],[[2,2,1,1],[0,3,3,1],[1,3,0,2],[1,2,1,1]],[[1,2,1,1],[0,3,3,1],[1,4,0,2],[1,1,2,1]],[[1,2,1,1],[0,3,4,1],[1,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,4,3,1],[1,3,0,2],[1,1,2,1]],[[1,3,1,1],[0,3,3,1],[1,3,0,2],[1,1,2,1]],[[2,2,1,1],[0,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,3,3,1],[1,3,0,1],[1,2,2,2]],[[1,2,1,1],[0,3,3,1],[1,3,0,1],[1,2,3,1]],[[1,2,1,1],[0,3,3,1],[1,3,0,1],[1,3,2,1]],[[1,2,1,1],[0,3,3,1],[1,3,0,1],[2,2,2,1]],[[1,2,1,1],[0,3,3,1],[1,4,0,1],[1,2,2,1]],[[1,2,1,1],[0,3,4,1],[1,3,0,1],[1,2,2,1]],[[1,2,1,1],[0,4,3,1],[1,3,0,1],[1,2,2,1]],[[1,3,1,1],[0,3,3,1],[1,3,0,1],[1,2,2,1]],[[2,2,1,1],[0,3,3,1],[1,3,0,1],[1,2,2,1]],[[1,2,1,1],[0,3,3,1],[1,2,3,3],[1,0,2,0]],[[1,2,1,1],[0,3,3,1],[1,2,4,2],[1,0,2,0]],[[1,2,1,1],[0,3,4,1],[1,2,3,2],[1,0,2,0]],[[1,2,1,1],[0,3,3,1],[1,2,3,2],[1,0,1,2]],[[1,2,1,1],[0,3,3,1],[1,2,3,3],[1,0,1,1]],[[1,2,1,1],[0,3,3,1],[1,2,4,2],[1,0,1,1]],[[1,2,1,1],[0,3,4,1],[1,2,3,2],[1,0,1,1]],[[1,2,1,1],[0,3,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[1,2,4,2],[0,2,1,0]],[[1,2,1,1],[0,3,4,1],[1,2,3,2],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[1,2,3,2],[0,2,0,2]],[[1,2,1,1],[0,3,3,1],[1,2,3,3],[0,2,0,1]],[[1,2,1,1],[0,3,3,1],[1,2,4,2],[0,2,0,1]],[[1,2,1,1],[0,3,4,1],[1,2,3,2],[0,2,0,1]],[[1,2,1,1],[0,3,3,1],[1,2,3,2],[0,1,3,0]],[[1,2,1,1],[0,3,3,1],[1,2,3,3],[0,1,2,0]],[[1,2,1,1],[0,3,3,1],[1,2,4,2],[0,1,2,0]],[[1,2,1,1],[0,3,4,1],[1,2,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,1],[1,2,3,2],[0,1,1,2]],[[1,2,1,1],[0,3,3,1],[1,2,3,3],[0,1,1,1]],[[1,2,1,1],[0,3,3,1],[1,2,4,2],[0,1,1,1]],[[1,2,1,1],[0,3,4,1],[1,2,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,3,1],[1,2,3,2],[0,0,2,2]],[[1,2,1,1],[0,3,3,1],[1,2,3,3],[0,0,2,1]],[[1,2,1,1],[0,3,3,1],[1,2,4,2],[0,0,2,1]],[[1,2,1,1],[0,3,4,1],[1,2,3,2],[0,0,2,1]],[[1,2,1,1],[0,3,3,1],[1,2,4,1],[1,2,1,0]],[[1,2,1,1],[0,3,4,1],[1,2,3,1],[1,2,1,0]],[[1,2,1,1],[0,4,3,1],[1,2,3,1],[1,2,1,0]],[[1,3,1,1],[0,3,3,1],[1,2,3,1],[1,2,1,0]],[[2,2,1,1],[0,3,3,1],[1,2,3,1],[1,2,1,0]],[[1,2,1,1],[0,3,3,1],[1,2,4,1],[1,2,0,1]],[[1,2,1,1],[0,3,4,1],[1,2,3,1],[1,2,0,1]],[[1,2,1,1],[0,4,3,1],[1,2,3,1],[1,2,0,1]],[[1,3,1,1],[0,3,3,1],[1,2,3,1],[1,2,0,1]],[[2,2,1,1],[0,3,3,1],[1,2,3,1],[1,2,0,1]],[[1,2,1,1],[0,3,3,1],[1,2,3,1],[1,1,3,0]],[[1,2,1,1],[0,3,3,1],[1,2,4,1],[1,1,2,0]],[[1,2,1,1],[0,3,4,1],[1,2,3,1],[1,1,2,0]],[[1,2,1,1],[0,4,3,1],[1,2,3,1],[1,1,2,0]],[[1,3,1,1],[0,3,3,1],[1,2,3,1],[1,1,2,0]],[[2,2,1,1],[0,3,3,1],[1,2,3,1],[1,1,2,0]],[[1,2,1,1],[0,3,3,1],[1,2,4,1],[1,1,1,1]],[[1,2,1,1],[0,3,4,1],[1,2,3,1],[1,1,1,1]],[[1,2,1,1],[0,4,3,1],[1,2,3,1],[1,1,1,1]],[[1,3,1,1],[0,3,3,1],[1,2,3,1],[1,1,1,1]],[[2,2,1,1],[0,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,1,1],[0,3,3,1],[1,2,3,1],[0,1,2,2]],[[1,2,1,1],[0,3,3,1],[1,2,3,1],[0,1,3,1]],[[1,2,1,1],[0,3,3,1],[1,2,4,1],[0,1,2,1]],[[1,2,1,1],[0,3,4,1],[1,2,3,1],[0,1,2,1]],[[2,0,2,1],[2,3,3,2],[2,3,3,0],[1,0,0,0]],[[1,0,3,1],[2,3,3,2],[2,3,3,0],[1,0,0,0]],[[1,0,2,2],[2,3,3,2],[2,3,3,0],[1,0,0,0]],[[1,0,2,1],[3,3,3,2],[2,3,3,0],[1,0,0,0]],[[1,0,2,1],[2,4,3,2],[2,3,3,0],[1,0,0,0]],[[1,0,2,1],[2,3,4,2],[2,3,3,0],[1,0,0,0]],[[1,0,2,1],[2,3,3,2],[3,3,3,0],[1,0,0,0]],[[1,2,1,1],[0,3,3,1],[1,2,4,0],[1,2,1,1]],[[1,2,1,1],[0,3,4,1],[1,2,3,0],[1,2,1,1]],[[1,2,1,1],[0,4,3,1],[1,2,3,0],[1,2,1,1]],[[1,3,1,1],[0,3,3,1],[1,2,3,0],[1,2,1,1]],[[2,2,1,1],[0,3,3,1],[1,2,3,0],[1,2,1,1]],[[1,2,1,1],[0,3,3,1],[1,2,3,0],[1,1,2,2]],[[1,2,1,1],[0,3,3,1],[1,2,3,0],[1,1,3,1]],[[1,2,1,1],[0,3,3,1],[1,2,4,0],[1,1,2,1]],[[1,2,1,1],[0,3,4,1],[1,2,3,0],[1,1,2,1]],[[1,2,1,1],[0,4,3,1],[1,2,3,0],[1,1,2,1]],[[1,3,1,1],[0,3,3,1],[1,2,3,0],[1,1,2,1]],[[2,2,1,1],[0,3,3,1],[1,2,3,0],[1,1,2,1]],[[1,2,1,1],[0,3,4,1],[1,2,2,2],[1,2,1,0]],[[1,2,1,1],[0,4,3,1],[1,2,2,2],[1,2,1,0]],[[1,3,1,1],[0,3,3,1],[1,2,2,2],[1,2,1,0]],[[2,2,1,1],[0,3,3,1],[1,2,2,2],[1,2,1,0]],[[1,2,1,1],[0,3,4,1],[1,2,2,2],[1,2,0,1]],[[1,2,1,1],[0,4,3,1],[1,2,2,2],[1,2,0,1]],[[1,3,1,1],[0,3,3,1],[1,2,2,2],[1,2,0,1]],[[2,2,1,1],[0,3,3,1],[1,2,2,2],[1,2,0,1]],[[1,2,1,1],[0,3,4,1],[1,2,2,2],[1,1,2,0]],[[1,2,1,1],[0,4,3,1],[1,2,2,2],[1,1,2,0]],[[1,3,1,1],[0,3,3,1],[1,2,2,2],[1,1,2,0]],[[2,2,1,1],[0,3,3,1],[1,2,2,2],[1,1,2,0]],[[1,2,1,1],[0,3,4,1],[1,2,2,2],[1,1,1,1]],[[1,2,1,1],[0,4,3,1],[1,2,2,2],[1,1,1,1]],[[1,3,1,1],[0,3,3,1],[1,2,2,2],[1,1,1,1]],[[2,2,1,1],[0,3,3,1],[1,2,2,2],[1,1,1,1]],[[1,2,1,1],[0,3,3,1],[1,2,2,2],[0,1,2,2]],[[1,2,1,1],[0,3,3,1],[1,2,2,2],[0,1,3,1]],[[1,2,1,1],[0,3,3,1],[1,2,2,3],[0,1,2,1]],[[1,2,1,1],[0,3,4,1],[1,2,1,2],[1,1,2,1]],[[1,2,1,1],[0,4,3,1],[1,2,1,2],[1,1,2,1]],[[1,3,1,1],[0,3,3,1],[1,2,1,2],[1,1,2,1]],[[2,2,1,1],[0,3,3,1],[1,2,1,2],[1,1,2,1]],[[1,2,1,1],[0,3,4,1],[1,2,0,2],[1,2,2,1]],[[1,2,1,1],[0,4,3,1],[1,2,0,2],[1,2,2,1]],[[1,3,1,1],[0,3,3,1],[1,2,0,2],[1,2,2,1]],[[2,2,1,1],[0,3,3,1],[1,2,0,2],[1,2,2,1]],[[1,2,1,1],[0,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,1,1],[0,3,3,1],[1,1,3,3],[0,2,2,0]],[[1,2,1,1],[0,3,3,1],[1,1,4,2],[0,2,2,0]],[[1,2,1,1],[0,3,4,1],[1,1,3,2],[0,2,2,0]],[[1,2,1,1],[0,3,3,1],[1,1,3,2],[0,2,1,2]],[[1,2,1,1],[0,3,3,1],[1,1,3,3],[0,2,1,1]],[[1,2,1,1],[0,3,3,1],[1,1,4,2],[0,2,1,1]],[[1,2,1,1],[0,3,4,1],[1,1,3,2],[0,2,1,1]],[[1,2,1,1],[0,3,3,1],[1,1,3,1],[1,2,3,0]],[[1,2,1,1],[0,3,3,1],[1,1,3,1],[1,3,2,0]],[[1,2,1,1],[0,3,3,1],[1,1,3,1],[2,2,2,0]],[[1,2,1,1],[0,3,3,1],[1,1,4,1],[1,2,2,0]],[[1,2,1,1],[0,3,4,1],[1,1,3,1],[1,2,2,0]],[[1,2,1,1],[0,4,3,1],[1,1,3,1],[1,2,2,0]],[[1,3,1,1],[0,3,3,1],[1,1,3,1],[1,2,2,0]],[[2,2,1,1],[0,3,3,1],[1,1,3,1],[1,2,2,0]],[[1,2,1,1],[0,3,3,1],[1,1,4,1],[1,2,1,1]],[[1,2,1,1],[0,3,4,1],[1,1,3,1],[1,2,1,1]],[[1,2,1,1],[0,4,3,1],[1,1,3,1],[1,2,1,1]],[[1,3,1,1],[0,3,3,1],[1,1,3,1],[1,2,1,1]],[[2,2,1,1],[0,3,3,1],[1,1,3,1],[1,2,1,1]],[[1,2,1,1],[0,3,3,1],[1,1,3,1],[0,2,2,2]],[[1,2,1,1],[0,3,3,1],[1,1,3,1],[0,2,3,1]],[[1,2,1,1],[0,3,3,1],[1,1,4,1],[0,2,2,1]],[[1,2,1,1],[0,3,4,1],[1,1,3,1],[0,2,2,1]],[[1,2,1,1],[0,3,3,1],[1,1,3,0],[1,2,2,2]],[[1,2,1,1],[0,3,3,1],[1,1,3,0],[1,2,3,1]],[[1,2,1,1],[0,3,3,1],[1,1,3,0],[1,3,2,1]],[[1,2,1,1],[0,3,3,1],[1,1,3,0],[2,2,2,1]],[[1,2,1,1],[0,3,3,1],[1,1,4,0],[1,2,2,1]],[[1,2,1,1],[0,3,4,1],[1,1,3,0],[1,2,2,1]],[[1,2,1,1],[0,4,3,1],[1,1,3,0],[1,2,2,1]],[[1,3,1,1],[0,3,3,1],[1,1,3,0],[1,2,2,1]],[[2,2,1,1],[0,3,3,1],[1,1,3,0],[1,2,2,1]],[[1,2,1,1],[0,3,4,1],[1,1,2,2],[1,2,2,0]],[[1,2,1,1],[0,4,3,1],[1,1,2,2],[1,2,2,0]],[[1,3,1,1],[0,3,3,1],[1,1,2,2],[1,2,2,0]],[[2,2,1,1],[0,3,3,1],[1,1,2,2],[1,2,2,0]],[[1,2,1,1],[0,3,4,1],[1,1,2,2],[1,2,1,1]],[[1,2,1,1],[0,4,3,1],[1,1,2,2],[1,2,1,1]],[[1,3,1,1],[0,3,3,1],[1,1,2,2],[1,2,1,1]],[[2,2,1,1],[0,3,3,1],[1,1,2,2],[1,2,1,1]],[[1,2,1,1],[0,3,3,1],[1,1,2,2],[0,2,2,2]],[[1,2,1,1],[0,3,3,1],[1,1,2,2],[0,2,3,1]],[[1,2,1,1],[0,3,3,1],[1,1,2,3],[0,2,2,1]],[[1,2,1,1],[0,3,4,1],[1,1,1,2],[1,2,2,1]],[[1,2,1,1],[0,4,3,1],[1,1,1,2],[1,2,2,1]],[[1,3,1,1],[0,3,3,1],[1,1,1,2],[1,2,2,1]],[[2,2,1,1],[0,3,3,1],[1,1,1,2],[1,2,2,1]],[[1,2,1,1],[0,3,3,1],[1,0,3,2],[0,2,2,2]],[[1,2,1,1],[0,3,3,1],[1,0,3,2],[0,2,3,1]],[[1,2,1,1],[0,3,3,1],[1,0,3,3],[0,2,2,1]],[[1,2,1,1],[0,3,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[0,3,4,2],[0,2,1,0]],[[1,2,1,1],[0,3,4,1],[0,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,3,3,1],[0,3,3,2],[0,2,0,2]],[[1,2,1,1],[0,3,3,1],[0,3,3,3],[0,2,0,1]],[[1,2,1,1],[0,3,3,1],[0,3,4,2],[0,2,0,1]],[[1,2,1,1],[0,3,4,1],[0,3,3,2],[0,2,0,1]],[[1,2,1,1],[0,3,3,1],[0,3,3,2],[0,1,3,0]],[[1,2,1,1],[0,3,3,1],[0,3,3,3],[0,1,2,0]],[[1,2,1,1],[0,3,3,1],[0,3,4,2],[0,1,2,0]],[[1,2,1,1],[0,3,4,1],[0,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,1],[0,3,3,2],[0,1,1,2]],[[1,2,1,1],[0,3,3,1],[0,3,3,3],[0,1,1,1]],[[1,2,1,1],[0,3,3,1],[0,3,4,2],[0,1,1,1]],[[1,2,1,1],[0,3,4,1],[0,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,3,1],[0,3,3,2],[0,0,2,2]],[[1,2,1,1],[0,3,3,1],[0,3,3,3],[0,0,2,1]],[[1,2,1,1],[0,3,3,1],[0,3,4,2],[0,0,2,1]],[[1,2,1,1],[0,3,4,1],[0,3,3,2],[0,0,2,1]],[[1,2,1,1],[0,3,3,1],[0,3,3,1],[0,1,2,2]],[[1,2,1,1],[0,3,3,1],[0,3,3,1],[0,1,3,1]],[[1,2,1,1],[0,3,3,1],[0,3,4,1],[0,1,2,1]],[[1,2,1,1],[0,3,4,1],[0,3,3,1],[0,1,2,1]],[[1,2,1,1],[0,3,3,1],[0,3,2,2],[0,1,2,2]],[[1,2,1,1],[0,3,3,1],[0,3,2,2],[0,1,3,1]],[[1,2,1,1],[0,3,3,1],[0,3,2,3],[0,1,2,1]],[[1,2,1,1],[0,3,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,1,1],[0,3,3,1],[0,2,4,2],[1,2,1,0]],[[1,2,1,1],[0,3,4,1],[0,2,3,2],[1,2,1,0]],[[1,2,1,1],[0,3,3,1],[0,2,3,2],[1,2,0,2]],[[1,2,1,1],[0,3,3,1],[0,2,3,3],[1,2,0,1]],[[1,2,1,1],[0,3,3,1],[0,2,4,2],[1,2,0,1]],[[1,2,1,1],[0,3,4,1],[0,2,3,2],[1,2,0,1]],[[1,2,1,1],[0,3,3,1],[0,2,3,2],[1,1,3,0]],[[1,2,1,1],[0,3,3,1],[0,2,3,3],[1,1,2,0]],[[1,2,1,1],[0,3,3,1],[0,2,4,2],[1,1,2,0]],[[1,2,1,1],[0,3,4,1],[0,2,3,2],[1,1,2,0]],[[1,2,1,1],[0,3,3,1],[0,2,3,2],[1,1,1,2]],[[1,2,1,1],[0,3,3,1],[0,2,3,3],[1,1,1,1]],[[1,2,1,1],[0,3,3,1],[0,2,4,2],[1,1,1,1]],[[1,2,1,1],[0,3,4,1],[0,2,3,2],[1,1,1,1]],[[1,2,1,1],[0,3,3,1],[0,2,3,2],[1,0,2,2]],[[1,2,1,1],[0,3,3,1],[0,2,3,3],[1,0,2,1]],[[1,2,1,1],[0,3,3,1],[0,2,4,2],[1,0,2,1]],[[1,2,1,1],[0,3,4,1],[0,2,3,2],[1,0,2,1]],[[1,2,1,1],[0,3,3,1],[0,2,3,1],[1,1,2,2]],[[1,2,1,1],[0,3,3,1],[0,2,3,1],[1,1,3,1]],[[1,2,1,1],[0,3,3,1],[0,2,4,1],[1,1,2,1]],[[1,2,1,1],[0,3,4,1],[0,2,3,1],[1,1,2,1]],[[1,2,1,1],[0,3,3,1],[0,2,2,2],[1,1,2,2]],[[1,2,1,1],[0,3,3,1],[0,2,2,2],[1,1,3,1]],[[1,2,1,1],[0,3,3,1],[0,2,2,3],[1,1,2,1]],[[1,2,1,1],[0,3,3,1],[0,1,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,3,1],[0,1,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,3,1],[0,1,3,3],[1,2,2,0]],[[1,2,1,1],[0,3,3,1],[0,1,4,2],[1,2,2,0]],[[1,2,1,1],[0,3,4,1],[0,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,1],[0,1,3,2],[1,2,1,2]],[[1,2,1,1],[0,3,3,1],[0,1,3,3],[1,2,1,1]],[[1,2,1,1],[0,3,3,1],[0,1,4,2],[1,2,1,1]],[[1,2,1,1],[0,3,4,1],[0,1,3,2],[1,2,1,1]],[[1,2,1,1],[0,3,3,1],[0,1,3,1],[1,2,2,2]],[[1,2,1,1],[0,3,3,1],[0,1,3,1],[1,2,3,1]],[[1,2,1,1],[0,3,3,1],[0,1,3,1],[1,3,2,1]],[[1,2,1,1],[0,3,3,1],[0,1,4,1],[1,2,2,1]],[[1,2,1,1],[0,3,4,1],[0,1,3,1],[1,2,2,1]],[[1,2,1,1],[0,3,3,1],[0,1,2,2],[1,2,2,2]],[[1,2,1,1],[0,3,3,1],[0,1,2,2],[1,2,3,1]],[[1,2,1,1],[0,3,3,1],[0,1,2,2],[1,3,2,1]],[[1,2,1,1],[0,3,3,1],[0,1,2,3],[1,2,2,1]],[[1,2,1,1],[0,3,3,1],[0,0,3,2],[1,2,2,2]],[[1,2,1,1],[0,3,3,1],[0,0,3,2],[1,2,3,1]],[[1,2,1,1],[0,3,3,1],[0,0,3,3],[1,2,2,1]],[[1,2,1,1],[0,3,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,1,1],[0,3,3,0],[2,4,3,2],[1,1,0,0]],[[1,2,1,1],[0,3,3,0],[3,3,3,2],[1,1,0,0]],[[1,2,1,1],[0,3,4,0],[2,3,3,2],[1,1,0,0]],[[1,2,1,1],[0,4,3,0],[2,3,3,2],[1,1,0,0]],[[1,3,1,1],[0,3,3,0],[2,3,3,2],[1,1,0,0]],[[2,2,1,1],[0,3,3,0],[2,3,3,2],[1,1,0,0]],[[1,2,1,1],[0,3,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,1,1],[0,3,3,0],[3,3,3,2],[0,2,0,0]],[[1,2,1,1],[0,3,4,0],[2,3,3,2],[0,2,0,0]],[[1,2,1,1],[0,4,3,0],[2,3,3,2],[0,2,0,0]],[[1,3,1,1],[0,3,3,0],[2,3,3,2],[0,2,0,0]],[[2,2,1,1],[0,3,3,0],[2,3,3,2],[0,2,0,0]],[[1,2,1,1],[0,3,3,0],[2,3,3,3],[0,0,2,0]],[[1,2,1,1],[0,3,3,0],[2,3,4,2],[0,0,2,0]],[[1,2,1,1],[0,3,4,0],[2,3,3,2],[0,0,2,0]],[[1,2,1,1],[0,4,3,0],[2,3,3,2],[0,0,2,0]],[[1,3,1,1],[0,3,3,0],[2,3,3,2],[0,0,2,0]],[[2,2,1,1],[0,3,3,0],[2,3,3,2],[0,0,2,0]],[[1,2,1,1],[0,3,3,0],[2,3,3,2],[0,0,1,2]],[[1,2,1,1],[0,3,3,0],[2,3,3,3],[0,0,1,1]],[[1,2,1,1],[0,3,3,0],[2,3,4,2],[0,0,1,1]],[[1,2,1,1],[0,3,4,0],[2,3,3,2],[0,0,1,1]],[[1,2,1,1],[0,4,3,0],[2,3,3,2],[0,0,1,1]],[[1,3,1,1],[0,3,3,0],[2,3,3,2],[0,0,1,1]],[[2,2,1,1],[0,3,3,0],[2,3,3,2],[0,0,1,1]],[[1,2,1,1],[0,3,3,0],[2,3,4,1],[0,0,2,1]],[[1,2,1,1],[0,3,4,0],[2,3,3,1],[0,0,2,1]],[[1,2,1,1],[0,4,3,0],[2,3,3,1],[0,0,2,1]],[[1,3,1,1],[0,3,3,0],[2,3,3,1],[0,0,2,1]],[[2,2,1,1],[0,3,3,0],[2,3,3,1],[0,0,2,1]],[[1,2,1,1],[0,3,3,0],[2,3,2,2],[2,2,0,0]],[[1,2,1,1],[0,3,3,0],[2,4,2,2],[1,2,0,0]],[[1,2,1,1],[0,3,3,0],[3,3,2,2],[1,2,0,0]],[[1,2,1,1],[0,3,4,0],[2,3,2,2],[1,2,0,0]],[[1,2,1,1],[0,4,3,0],[2,3,2,2],[1,2,0,0]],[[1,3,1,1],[0,3,3,0],[2,3,2,2],[1,2,0,0]],[[2,2,1,1],[0,3,3,0],[2,3,2,2],[1,2,0,0]],[[1,2,1,1],[0,3,3,0],[2,3,2,2],[2,1,1,0]],[[1,2,1,1],[0,3,3,0],[2,4,2,2],[1,1,1,0]],[[1,2,1,1],[0,3,3,0],[3,3,2,2],[1,1,1,0]],[[1,2,1,1],[0,3,4,0],[2,3,2,2],[1,1,1,0]],[[1,2,1,1],[0,4,3,0],[2,3,2,2],[1,1,1,0]],[[1,3,1,1],[0,3,3,0],[2,3,2,2],[1,1,1,0]],[[2,2,1,1],[0,3,3,0],[2,3,2,2],[1,1,1,0]],[[1,2,1,1],[0,3,3,0],[2,3,2,2],[2,1,0,1]],[[1,2,1,1],[0,3,3,0],[2,4,2,2],[1,1,0,1]],[[1,2,1,1],[0,3,3,0],[3,3,2,2],[1,1,0,1]],[[1,2,1,1],[0,3,4,0],[2,3,2,2],[1,1,0,1]],[[1,2,1,1],[0,4,3,0],[2,3,2,2],[1,1,0,1]],[[1,3,1,1],[0,3,3,0],[2,3,2,2],[1,1,0,1]],[[2,2,1,1],[0,3,3,0],[2,3,2,2],[1,1,0,1]],[[1,2,1,1],[0,3,3,0],[2,3,2,2],[2,0,2,0]],[[1,2,1,1],[0,3,3,0],[2,4,2,2],[1,0,2,0]],[[1,2,1,1],[0,3,3,0],[3,3,2,2],[1,0,2,0]],[[1,2,1,1],[0,3,4,0],[2,3,2,2],[1,0,2,0]],[[1,2,1,1],[0,4,3,0],[2,3,2,2],[1,0,2,0]],[[1,3,1,1],[0,3,3,0],[2,3,2,2],[1,0,2,0]],[[2,2,1,1],[0,3,3,0],[2,3,2,2],[1,0,2,0]],[[1,2,1,1],[0,3,3,0],[2,3,2,2],[2,0,1,1]],[[1,2,1,1],[0,3,3,0],[2,4,2,2],[1,0,1,1]],[[1,2,1,1],[0,3,3,0],[3,3,2,2],[1,0,1,1]],[[1,2,1,1],[0,3,4,0],[2,3,2,2],[1,0,1,1]],[[1,2,1,1],[0,4,3,0],[2,3,2,2],[1,0,1,1]],[[1,3,1,1],[0,3,3,0],[2,3,2,2],[1,0,1,1]],[[2,2,1,1],[0,3,3,0],[2,3,2,2],[1,0,1,1]],[[1,2,1,1],[0,3,3,0],[2,3,2,2],[0,3,1,0]],[[1,2,1,1],[0,3,3,0],[2,4,2,2],[0,2,1,0]],[[1,2,1,1],[0,3,3,0],[3,3,2,2],[0,2,1,0]],[[1,2,1,1],[0,3,4,0],[2,3,2,2],[0,2,1,0]],[[1,2,1,1],[0,4,3,0],[2,3,2,2],[0,2,1,0]],[[1,3,1,1],[0,3,3,0],[2,3,2,2],[0,2,1,0]],[[2,2,1,1],[0,3,3,0],[2,3,2,2],[0,2,1,0]],[[1,2,1,1],[0,3,3,0],[2,3,2,2],[0,3,0,1]],[[1,2,1,1],[0,3,3,0],[2,4,2,2],[0,2,0,1]],[[1,2,1,1],[0,3,3,0],[3,3,2,2],[0,2,0,1]],[[1,2,1,1],[0,3,4,0],[2,3,2,2],[0,2,0,1]],[[1,2,1,1],[0,4,3,0],[2,3,2,2],[0,2,0,1]],[[1,3,1,1],[0,3,3,0],[2,3,2,2],[0,2,0,1]],[[2,2,1,1],[0,3,3,0],[2,3,2,2],[0,2,0,1]],[[1,2,1,1],[0,3,3,0],[2,4,2,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,0],[3,3,2,2],[0,1,2,0]],[[1,2,1,1],[0,3,4,0],[2,3,2,2],[0,1,2,0]],[[1,2,1,1],[0,4,3,0],[2,3,2,2],[0,1,2,0]],[[1,3,1,1],[0,3,3,0],[2,3,2,2],[0,1,2,0]],[[2,2,1,1],[0,3,3,0],[2,3,2,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,0],[2,4,2,2],[0,1,1,1]],[[1,2,1,1],[0,3,3,0],[3,3,2,2],[0,1,1,1]],[[1,2,1,1],[0,3,4,0],[2,3,2,2],[0,1,1,1]],[[1,2,1,1],[0,4,3,0],[2,3,2,2],[0,1,1,1]],[[1,3,1,1],[0,3,3,0],[2,3,2,2],[0,1,1,1]],[[2,2,1,1],[0,3,3,0],[2,3,2,2],[0,1,1,1]],[[1,2,1,1],[0,3,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,1,1],[0,3,3,0],[2,4,2,1],[1,2,0,1]],[[1,2,1,1],[0,3,3,0],[3,3,2,1],[1,2,0,1]],[[1,2,1,1],[0,4,3,0],[2,3,2,1],[1,2,0,1]],[[1,3,1,1],[0,3,3,0],[2,3,2,1],[1,2,0,1]],[[2,2,1,1],[0,3,3,0],[2,3,2,1],[1,2,0,1]],[[1,2,1,1],[0,3,3,0],[2,3,2,1],[2,1,1,1]],[[1,2,1,1],[0,3,3,0],[2,4,2,1],[1,1,1,1]],[[1,2,1,1],[0,3,3,0],[3,3,2,1],[1,1,1,1]],[[1,2,1,1],[0,3,4,0],[2,3,2,1],[1,1,1,1]],[[1,2,1,1],[0,4,3,0],[2,3,2,1],[1,1,1,1]],[[1,3,1,1],[0,3,3,0],[2,3,2,1],[1,1,1,1]],[[2,2,1,1],[0,3,3,0],[2,3,2,1],[1,1,1,1]],[[1,2,1,1],[0,3,3,0],[2,3,2,1],[2,0,2,1]],[[1,2,1,1],[0,3,3,0],[2,4,2,1],[1,0,2,1]],[[1,2,1,1],[0,3,3,0],[3,3,2,1],[1,0,2,1]],[[1,2,1,1],[0,3,4,0],[2,3,2,1],[1,0,2,1]],[[1,2,1,1],[0,4,3,0],[2,3,2,1],[1,0,2,1]],[[1,3,1,1],[0,3,3,0],[2,3,2,1],[1,0,2,1]],[[2,2,1,1],[0,3,3,0],[2,3,2,1],[1,0,2,1]],[[1,2,1,1],[0,3,3,0],[2,3,2,1],[0,3,1,1]],[[1,2,1,1],[0,3,3,0],[2,4,2,1],[0,2,1,1]],[[1,2,1,1],[0,3,3,0],[3,3,2,1],[0,2,1,1]],[[1,2,1,1],[0,3,4,0],[2,3,2,1],[0,2,1,1]],[[1,2,1,1],[0,4,3,0],[2,3,2,1],[0,2,1,1]],[[1,3,1,1],[0,3,3,0],[2,3,2,1],[0,2,1,1]],[[2,2,1,1],[0,3,3,0],[2,3,2,1],[0,2,1,1]],[[1,2,1,1],[0,3,3,0],[2,4,2,1],[0,1,2,1]],[[1,2,1,1],[0,3,3,0],[3,3,2,1],[0,1,2,1]],[[1,2,1,1],[0,3,4,0],[2,3,2,1],[0,1,2,1]],[[1,2,1,1],[0,4,3,0],[2,3,2,1],[0,1,2,1]],[[1,3,1,1],[0,3,3,0],[2,3,2,1],[0,1,2,1]],[[2,2,1,1],[0,3,3,0],[2,3,2,1],[0,1,2,1]],[[1,2,1,1],[0,3,3,0],[2,3,1,2],[2,1,2,0]],[[1,2,1,1],[0,3,3,0],[2,4,1,2],[1,1,2,0]],[[1,2,1,1],[0,3,3,0],[3,3,1,2],[1,1,2,0]],[[1,2,1,1],[0,3,4,0],[2,3,1,2],[1,1,2,0]],[[1,2,1,1],[0,4,3,0],[2,3,1,2],[1,1,2,0]],[[1,3,1,1],[0,3,3,0],[2,3,1,2],[1,1,2,0]],[[2,2,1,1],[0,3,3,0],[2,3,1,2],[1,1,2,0]],[[1,2,1,1],[0,3,3,0],[2,3,1,2],[0,2,3,0]],[[1,2,1,1],[0,3,3,0],[2,3,1,2],[0,3,2,0]],[[1,2,1,1],[0,3,3,0],[2,4,1,2],[0,2,2,0]],[[1,2,1,1],[0,3,3,0],[3,3,1,2],[0,2,2,0]],[[1,2,1,1],[0,3,4,0],[2,3,1,2],[0,2,2,0]],[[1,2,1,1],[0,4,3,0],[2,3,1,2],[0,2,2,0]],[[1,3,1,1],[0,3,3,0],[2,3,1,2],[0,2,2,0]],[[2,2,1,1],[0,3,3,0],[2,3,1,2],[0,2,2,0]],[[1,2,1,1],[0,3,3,0],[2,3,1,1],[2,1,2,1]],[[1,2,1,1],[0,3,3,0],[2,4,1,1],[1,1,2,1]],[[1,2,1,1],[0,3,3,0],[3,3,1,1],[1,1,2,1]],[[1,2,1,1],[0,3,4,0],[2,3,1,1],[1,1,2,1]],[[1,2,1,1],[0,4,3,0],[2,3,1,1],[1,1,2,1]],[[1,3,1,1],[0,3,3,0],[2,3,1,1],[1,1,2,1]],[[2,2,1,1],[0,3,3,0],[2,3,1,1],[1,1,2,1]],[[1,2,1,1],[0,3,3,0],[2,3,1,1],[0,2,2,2]],[[1,2,1,1],[0,3,3,0],[2,3,1,1],[0,2,3,1]],[[1,2,1,1],[0,3,3,0],[2,3,1,1],[0,3,2,1]],[[1,2,1,1],[0,3,3,0],[2,4,1,1],[0,2,2,1]],[[1,2,1,1],[0,3,3,0],[3,3,1,1],[0,2,2,1]],[[1,2,1,1],[0,3,4,0],[2,3,1,1],[0,2,2,1]],[[1,2,1,1],[0,4,3,0],[2,3,1,1],[0,2,2,1]],[[1,3,1,1],[0,3,3,0],[2,3,1,1],[0,2,2,1]],[[2,2,1,1],[0,3,3,0],[2,3,1,1],[0,2,2,1]],[[1,2,1,1],[0,3,3,0],[2,3,0,2],[1,3,2,0]],[[1,2,1,1],[0,3,3,0],[2,3,0,2],[2,2,2,0]],[[1,2,1,1],[0,3,3,0],[3,3,0,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,0],[2,3,0,2],[2,1,2,1]],[[1,2,1,1],[0,3,3,0],[2,4,0,2],[1,1,2,1]],[[1,2,1,1],[0,3,3,0],[3,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,3,4,0],[2,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,4,3,0],[2,3,0,2],[1,1,2,1]],[[1,3,1,1],[0,3,3,0],[2,3,0,2],[1,1,2,1]],[[2,2,1,1],[0,3,3,0],[2,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,3,3,0],[2,3,0,2],[0,2,2,2]],[[1,2,1,1],[0,3,3,0],[2,3,0,2],[0,2,3,1]],[[1,2,1,1],[0,3,3,0],[2,3,0,2],[0,3,2,1]],[[1,2,1,1],[0,3,3,0],[2,3,0,3],[0,2,2,1]],[[1,2,1,1],[0,3,3,0],[2,4,0,2],[0,2,2,1]],[[1,2,1,1],[0,3,3,0],[3,3,0,2],[0,2,2,1]],[[1,2,1,1],[0,3,4,0],[2,3,0,2],[0,2,2,1]],[[1,2,1,1],[0,4,3,0],[2,3,0,2],[0,2,2,1]],[[1,3,1,1],[0,3,3,0],[2,3,0,2],[0,2,2,1]],[[2,2,1,1],[0,3,3,0],[2,3,0,2],[0,2,2,1]],[[1,2,1,1],[0,3,3,0],[2,3,0,1],[1,3,2,1]],[[1,2,1,1],[0,3,3,0],[2,3,0,1],[2,2,2,1]],[[1,2,1,1],[0,3,3,0],[3,3,0,1],[1,2,2,1]],[[1,2,1,1],[0,3,3,0],[2,2,3,3],[1,1,1,0]],[[1,2,1,1],[0,3,3,0],[2,2,4,2],[1,1,1,0]],[[1,2,1,1],[0,3,4,0],[2,2,3,2],[1,1,1,0]],[[1,2,1,1],[0,4,3,0],[2,2,3,2],[1,1,1,0]],[[1,3,1,1],[0,3,3,0],[2,2,3,2],[1,1,1,0]],[[2,2,1,1],[0,3,3,0],[2,2,3,2],[1,1,1,0]],[[1,2,1,1],[0,3,3,0],[2,2,3,2],[1,1,0,2]],[[1,2,1,1],[0,3,3,0],[2,2,3,3],[1,1,0,1]],[[1,2,1,1],[0,3,3,0],[2,2,4,2],[1,1,0,1]],[[1,2,1,1],[0,3,4,0],[2,2,3,2],[1,1,0,1]],[[1,2,1,1],[0,4,3,0],[2,2,3,2],[1,1,0,1]],[[1,3,1,1],[0,3,3,0],[2,2,3,2],[1,1,0,1]],[[2,2,1,1],[0,3,3,0],[2,2,3,2],[1,1,0,1]],[[1,2,1,1],[0,3,3,0],[2,2,3,2],[1,0,3,0]],[[1,1,0,0],[0,3,0,2],[2,4,3,2],[1,2,2,1]],[[1,1,0,0],[0,3,0,2],[2,3,3,2],[2,2,2,1]],[[1,1,0,0],[0,3,0,2],[2,3,3,2],[1,3,2,1]],[[1,1,0,0],[0,3,0,2],[2,3,3,2],[1,2,3,1]],[[1,1,0,0],[0,3,0,2],[2,3,3,2],[1,2,2,2]],[[1,1,0,0],[0,3,2,0],[2,4,3,2],[1,2,2,1]],[[1,1,0,0],[0,3,2,0],[2,3,3,2],[2,2,2,1]],[[1,1,0,0],[0,3,2,0],[2,3,3,2],[1,3,2,1]],[[1,1,0,0],[0,3,2,0],[2,3,3,2],[1,2,3,1]],[[1,1,0,0],[0,3,2,0],[2,3,3,2],[1,2,2,2]],[[1,1,0,0],[0,3,2,1],[2,4,3,1],[1,2,2,1]],[[1,1,0,0],[0,3,2,1],[2,3,3,1],[2,2,2,1]],[[1,1,0,0],[0,3,2,1],[2,3,3,1],[1,3,2,1]],[[1,1,0,0],[0,3,2,1],[2,3,3,1],[1,2,3,1]],[[1,1,0,0],[0,3,2,1],[2,3,3,1],[1,2,2,2]],[[1,1,0,0],[0,3,2,1],[2,4,3,2],[1,2,2,0]],[[1,1,0,0],[0,3,2,1],[2,3,3,2],[2,2,2,0]],[[1,1,0,0],[0,3,2,1],[2,3,3,2],[1,3,2,0]],[[1,1,0,0],[0,3,2,1],[2,3,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,3,0],[2,2,3,3],[1,0,2,0]],[[1,2,1,1],[0,3,3,0],[2,2,4,2],[1,0,2,0]],[[1,2,1,1],[0,3,4,0],[2,2,3,2],[1,0,2,0]],[[1,2,1,1],[0,4,3,0],[2,2,3,2],[1,0,2,0]],[[1,3,1,1],[0,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,1,0,0],[0,3,3,0],[2,2,4,2],[1,2,2,1]],[[1,1,0,0],[0,3,3,0],[2,2,3,2],[2,2,2,1]],[[1,1,0,0],[0,3,3,0],[2,2,3,2],[1,3,2,1]],[[1,1,0,0],[0,3,3,0],[2,2,3,2],[1,2,3,1]],[[1,1,0,0],[0,3,3,0],[2,2,3,2],[1,2,2,2]],[[1,1,0,0],[0,3,3,0],[2,4,2,2],[1,2,2,1]],[[1,1,0,0],[0,3,3,0],[2,3,2,2],[2,2,2,1]],[[1,1,0,0],[0,3,3,0],[2,3,2,2],[1,3,2,1]],[[1,1,0,0],[0,3,3,0],[2,3,2,2],[1,2,3,1]],[[1,1,0,0],[0,3,3,0],[2,3,2,2],[1,2,2,2]],[[1,1,0,0],[0,3,3,0],[2,4,3,2],[1,1,2,1]],[[1,1,0,0],[0,3,3,0],[2,3,4,2],[1,1,2,1]],[[1,1,0,0],[0,3,3,0],[2,3,3,2],[1,1,3,1]],[[1,1,0,0],[0,3,3,0],[2,3,3,2],[1,1,2,2]],[[1,1,0,0],[0,3,3,0],[2,4,3,2],[1,2,1,1]],[[1,1,0,0],[0,3,3,0],[2,3,4,2],[1,2,1,1]],[[1,1,0,0],[0,3,3,0],[2,3,3,2],[2,2,1,1]],[[1,1,0,0],[0,3,3,0],[2,3,3,2],[1,3,1,1]],[[1,1,0,0],[0,3,3,1],[2,2,2,3],[1,2,2,1]],[[1,1,0,0],[0,3,3,1],[2,2,2,2],[2,2,2,1]],[[1,1,0,0],[0,3,3,1],[2,2,2,2],[1,3,2,1]],[[1,1,0,0],[0,3,3,1],[2,2,2,2],[1,2,3,1]],[[1,1,0,0],[0,3,3,1],[2,2,2,2],[1,2,2,2]],[[1,1,0,0],[0,3,3,1],[2,2,4,1],[1,2,2,1]],[[1,1,0,0],[0,3,3,1],[2,2,3,1],[2,2,2,1]],[[1,1,0,0],[0,3,3,1],[2,2,3,1],[1,3,2,1]],[[1,1,0,0],[0,3,3,1],[2,2,3,1],[1,2,3,1]],[[1,1,0,0],[0,3,3,1],[2,2,3,1],[1,2,2,2]],[[1,1,0,0],[0,3,3,1],[2,2,4,2],[1,2,1,1]],[[1,1,0,0],[0,3,3,1],[2,2,3,3],[1,2,1,1]],[[1,1,0,0],[0,3,3,1],[2,2,3,2],[1,2,1,2]],[[1,1,0,0],[0,3,3,1],[2,2,4,2],[1,2,2,0]],[[1,1,0,0],[0,3,3,1],[2,2,3,3],[1,2,2,0]],[[1,1,0,0],[0,3,3,1],[2,2,3,2],[2,2,2,0]],[[1,1,0,0],[0,3,3,1],[2,2,3,2],[1,3,2,0]],[[1,1,0,0],[0,3,3,1],[2,2,3,2],[1,2,3,0]],[[1,1,0,0],[0,3,3,1],[2,4,1,2],[1,2,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,1,3],[1,2,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,1,2],[2,2,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,1,2],[1,3,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,1,2],[1,2,3,1]],[[1,1,0,0],[0,3,3,1],[2,3,1,2],[1,2,2,2]],[[1,1,0,0],[0,3,3,1],[2,4,2,1],[1,2,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,2,1],[2,2,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,2,1],[1,3,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,2,1],[1,2,3,1]],[[1,1,0,0],[0,3,3,1],[2,3,2,1],[1,2,2,2]],[[1,1,0,0],[0,3,3,1],[2,3,2,3],[1,1,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,2,2],[1,1,3,1]],[[1,1,0,0],[0,3,3,1],[2,3,2,2],[1,1,2,2]],[[1,1,0,0],[0,3,3,1],[2,4,2,2],[1,2,2,0]],[[1,1,0,0],[0,3,3,1],[2,3,2,2],[2,2,2,0]],[[1,1,0,0],[0,3,3,1],[2,3,2,2],[1,3,2,0]],[[1,1,0,0],[0,3,3,1],[2,3,2,2],[1,2,3,0]],[[1,1,0,0],[0,3,3,1],[2,4,3,0],[1,2,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,0],[2,2,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,0],[1,3,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,0],[1,2,3,1]],[[1,1,0,0],[0,3,3,1],[2,4,3,1],[1,1,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,4,1],[1,1,2,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,1],[1,1,3,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,1],[1,1,2,2]],[[1,1,0,0],[0,3,3,1],[2,4,3,1],[1,2,1,1]],[[1,1,0,0],[0,3,3,1],[2,3,4,1],[1,2,1,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,1],[2,2,1,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,1],[1,3,1,1]],[[1,1,0,0],[0,3,3,1],[2,4,3,2],[1,1,1,1]],[[1,1,0,0],[0,3,3,1],[2,3,4,2],[1,1,1,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,3],[1,1,1,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,2],[1,1,1,2]],[[1,1,0,0],[0,3,3,1],[2,4,3,2],[1,1,2,0]],[[1,1,0,0],[0,3,3,1],[2,3,4,2],[1,1,2,0]],[[1,1,0,0],[0,3,3,1],[2,3,3,3],[1,1,2,0]],[[1,1,0,0],[0,3,3,1],[2,3,3,2],[1,1,3,0]],[[1,1,0,0],[0,3,3,1],[2,4,3,2],[1,2,0,1]],[[1,1,0,0],[0,3,3,1],[2,3,4,2],[1,2,0,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,3],[1,2,0,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,2],[2,2,0,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,2],[1,3,0,1]],[[1,1,0,0],[0,3,3,1],[2,3,3,2],[1,2,0,2]],[[1,1,0,0],[0,3,3,1],[2,4,3,2],[1,2,1,0]],[[1,1,0,0],[0,3,3,1],[2,3,4,2],[1,2,1,0]],[[1,1,0,0],[0,3,3,1],[2,3,3,3],[1,2,1,0]],[[1,1,0,0],[0,3,3,1],[2,3,3,2],[2,2,1,0]],[[1,1,0,0],[0,3,3,1],[2,3,3,2],[1,3,1,0]],[[2,2,1,1],[0,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,2,1,1],[0,3,3,0],[2,2,3,2],[1,0,1,2]],[[1,2,1,1],[0,3,3,0],[2,2,3,3],[1,0,1,1]],[[1,2,1,1],[0,3,3,0],[2,2,4,2],[1,0,1,1]],[[1,2,1,1],[0,3,4,0],[2,2,3,2],[1,0,1,1]],[[1,2,1,1],[0,4,3,0],[2,2,3,2],[1,0,1,1]],[[1,3,1,1],[0,3,3,0],[2,2,3,2],[1,0,1,1]],[[1,1,0,0],[0,3,3,2],[2,2,4,0],[1,2,2,1]],[[1,1,0,0],[0,3,3,2],[2,2,3,0],[2,2,2,1]],[[1,1,0,0],[0,3,3,2],[2,2,3,0],[1,3,2,1]],[[1,1,0,0],[0,3,3,2],[2,2,3,0],[1,2,3,1]],[[1,1,0,0],[0,3,3,2],[2,2,3,0],[1,2,2,2]],[[1,1,0,0],[0,3,3,2],[2,2,4,1],[1,2,2,0]],[[1,1,0,0],[0,3,3,2],[2,2,3,1],[2,2,2,0]],[[1,1,0,0],[0,3,3,2],[2,2,3,1],[1,3,2,0]],[[1,1,0,0],[0,3,3,2],[2,2,3,1],[1,2,3,0]],[[2,2,1,1],[0,3,3,0],[2,2,3,2],[1,0,1,1]],[[1,1,0,0],[0,3,3,2],[2,4,2,0],[1,2,2,1]],[[1,1,0,0],[0,3,3,2],[2,3,2,0],[2,2,2,1]],[[1,1,0,0],[0,3,3,2],[2,3,2,0],[1,3,2,1]],[[1,1,0,0],[0,3,3,2],[2,3,2,0],[1,2,3,1]],[[1,1,0,0],[0,3,3,2],[2,3,2,0],[1,2,2,2]],[[1,1,0,0],[0,3,3,2],[2,4,2,1],[1,2,2,0]],[[1,1,0,0],[0,3,3,2],[2,3,2,1],[2,2,2,0]],[[1,1,0,0],[0,3,3,2],[2,3,2,1],[1,3,2,0]],[[1,1,0,0],[0,3,3,2],[2,3,2,1],[1,2,3,0]],[[1,1,0,0],[0,3,3,2],[2,4,3,0],[1,1,2,1]],[[1,1,0,0],[0,3,3,2],[2,3,4,0],[1,1,2,1]],[[1,1,0,0],[0,3,3,2],[2,3,3,0],[1,1,3,1]],[[1,1,0,0],[0,3,3,2],[2,3,3,0],[1,1,2,2]],[[1,1,0,0],[0,3,3,2],[2,4,3,0],[1,2,1,1]],[[1,1,0,0],[0,3,3,2],[2,3,4,0],[1,2,1,1]],[[1,1,0,0],[0,3,3,2],[2,3,3,0],[2,2,1,1]],[[1,1,0,0],[0,3,3,2],[2,3,3,0],[1,3,1,1]],[[1,1,0,0],[0,3,3,2],[2,4,3,1],[1,1,2,0]],[[1,1,0,0],[0,3,3,2],[2,3,4,1],[1,1,2,0]],[[1,1,0,0],[0,3,3,2],[2,3,3,1],[1,1,3,0]],[[1,1,0,0],[0,3,3,2],[2,4,3,1],[1,2,0,1]],[[1,1,0,0],[0,3,3,2],[2,3,4,1],[1,2,0,1]],[[1,1,0,0],[0,3,3,2],[2,3,3,1],[2,2,0,1]],[[1,1,0,0],[0,3,3,2],[2,3,3,1],[1,3,0,1]],[[1,1,0,0],[0,3,3,2],[2,4,3,1],[1,2,1,0]],[[1,1,0,0],[0,3,3,2],[2,3,4,1],[1,2,1,0]],[[1,1,0,0],[0,3,3,2],[2,3,3,1],[2,2,1,0]],[[1,1,0,0],[0,3,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,3,3,0],[2,2,3,3],[0,2,1,0]],[[1,2,1,1],[0,3,3,0],[2,2,4,2],[0,2,1,0]],[[1,2,1,1],[0,3,4,0],[2,2,3,2],[0,2,1,0]],[[1,2,1,1],[0,4,3,0],[2,2,3,2],[0,2,1,0]],[[1,3,1,1],[0,3,3,0],[2,2,3,2],[0,2,1,0]],[[2,2,1,1],[0,3,3,0],[2,2,3,2],[0,2,1,0]],[[1,2,1,1],[0,3,3,0],[2,2,3,2],[0,2,0,2]],[[1,2,1,1],[0,3,3,0],[2,2,3,3],[0,2,0,1]],[[1,2,1,1],[0,3,3,0],[2,2,4,2],[0,2,0,1]],[[1,2,1,1],[0,3,4,0],[2,2,3,2],[0,2,0,1]],[[1,2,1,1],[0,4,3,0],[2,2,3,2],[0,2,0,1]],[[1,3,1,1],[0,3,3,0],[2,2,3,2],[0,2,0,1]],[[2,2,1,1],[0,3,3,0],[2,2,3,2],[0,2,0,1]],[[1,2,1,1],[0,3,3,0],[2,2,3,2],[0,1,3,0]],[[1,2,1,1],[0,3,3,0],[2,2,3,3],[0,1,2,0]],[[1,2,1,1],[0,3,3,0],[2,2,4,2],[0,1,2,0]],[[1,2,1,1],[0,3,4,0],[2,2,3,2],[0,1,2,0]],[[1,2,1,1],[0,4,3,0],[2,2,3,2],[0,1,2,0]],[[1,1,0,0],[1,3,0,2],[1,4,3,2],[1,2,2,1]],[[1,1,0,0],[1,3,0,2],[1,3,3,2],[2,2,2,1]],[[1,1,0,0],[1,3,0,2],[1,3,3,2],[1,3,2,1]],[[1,1,0,0],[1,3,0,2],[1,3,3,2],[1,2,3,1]],[[1,1,0,0],[1,3,0,2],[1,3,3,2],[1,2,2,2]],[[1,1,0,0],[1,3,0,2],[3,2,3,2],[1,2,2,1]],[[1,1,0,0],[1,3,0,2],[2,2,3,2],[2,2,2,1]],[[1,1,0,0],[1,3,0,2],[2,2,3,2],[1,3,2,1]],[[1,1,0,0],[1,3,0,2],[2,2,3,2],[1,2,3,1]],[[1,1,0,0],[1,3,0,2],[2,2,3,2],[1,2,2,2]],[[1,1,0,0],[1,3,0,2],[3,3,3,2],[0,2,2,1]],[[1,1,0,0],[1,3,0,2],[2,4,3,2],[0,2,2,1]],[[1,1,0,0],[1,3,0,2],[2,3,3,2],[0,3,2,1]],[[1,1,0,0],[1,3,0,2],[2,3,3,2],[0,2,3,1]],[[1,1,0,0],[1,3,0,2],[2,3,3,2],[0,2,2,2]],[[1,1,0,0],[1,3,0,2],[3,3,3,2],[1,1,2,1]],[[1,1,0,0],[1,3,0,2],[2,4,3,2],[1,1,2,1]],[[1,1,0,0],[1,3,0,2],[2,3,3,2],[2,1,2,1]],[[1,3,1,1],[0,3,3,0],[2,2,3,2],[0,1,2,0]],[[2,2,1,1],[0,3,3,0],[2,2,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,3,0],[2,2,3,2],[0,1,1,2]],[[1,2,1,1],[0,3,3,0],[2,2,3,3],[0,1,1,1]],[[1,2,1,1],[0,3,3,0],[2,2,4,2],[0,1,1,1]],[[1,2,1,1],[0,3,4,0],[2,2,3,2],[0,1,1,1]],[[1,1,0,0],[1,3,2,0],[1,4,3,2],[1,2,2,1]],[[1,1,0,0],[1,3,2,0],[1,3,3,2],[2,2,2,1]],[[1,1,0,0],[1,3,2,0],[1,3,3,2],[1,3,2,1]],[[1,1,0,0],[1,3,2,0],[1,3,3,2],[1,2,3,1]],[[1,1,0,0],[1,3,2,0],[1,3,3,2],[1,2,2,2]],[[1,1,0,0],[1,3,2,0],[3,2,3,2],[1,2,2,1]],[[1,1,0,0],[1,3,2,0],[2,2,3,2],[2,2,2,1]],[[1,1,0,0],[1,3,2,0],[2,2,3,2],[1,3,2,1]],[[1,1,0,0],[1,3,2,0],[2,2,3,2],[1,2,3,1]],[[1,1,0,0],[1,3,2,0],[2,2,3,2],[1,2,2,2]],[[1,1,0,0],[1,3,2,0],[3,3,3,2],[0,2,2,1]],[[1,1,0,0],[1,3,2,0],[2,4,3,2],[0,2,2,1]],[[1,1,0,0],[1,3,2,0],[2,3,3,2],[0,3,2,1]],[[1,1,0,0],[1,3,2,0],[2,3,3,2],[0,2,3,1]],[[1,1,0,0],[1,3,2,0],[2,3,3,2],[0,2,2,2]],[[1,1,0,0],[1,3,2,0],[3,3,3,2],[1,1,2,1]],[[1,1,0,0],[1,3,2,0],[2,4,3,2],[1,1,2,1]],[[1,1,0,0],[1,3,2,0],[2,3,3,2],[2,1,2,1]],[[1,1,0,0],[1,3,2,1],[1,4,3,1],[1,2,2,1]],[[1,1,0,0],[1,3,2,1],[1,3,3,1],[2,2,2,1]],[[1,1,0,0],[1,3,2,1],[1,3,3,1],[1,3,2,1]],[[1,1,0,0],[1,3,2,1],[1,3,3,1],[1,2,3,1]],[[1,1,0,0],[1,3,2,1],[1,3,3,1],[1,2,2,2]],[[1,1,0,0],[1,3,2,1],[1,4,3,2],[1,2,2,0]],[[1,1,0,0],[1,3,2,1],[1,3,3,2],[2,2,2,0]],[[1,1,0,0],[1,3,2,1],[1,3,3,2],[1,3,2,0]],[[1,1,0,0],[1,3,2,1],[1,3,3,2],[1,2,3,0]],[[1,1,0,0],[1,3,2,1],[3,2,3,1],[1,2,2,1]],[[1,1,0,0],[1,3,2,1],[2,2,3,1],[2,2,2,1]],[[1,1,0,0],[1,3,2,1],[2,2,3,1],[1,3,2,1]],[[1,1,0,0],[1,3,2,1],[2,2,3,1],[1,2,3,1]],[[1,1,0,0],[1,3,2,1],[2,2,3,1],[1,2,2,2]],[[1,1,0,0],[1,3,2,1],[3,2,3,2],[1,2,2,0]],[[1,1,0,0],[1,3,2,1],[2,2,3,2],[2,2,2,0]],[[1,1,0,0],[1,3,2,1],[2,2,3,2],[1,3,2,0]],[[1,1,0,0],[1,3,2,1],[2,2,3,2],[1,2,3,0]],[[1,1,0,0],[1,3,2,1],[3,3,3,1],[0,2,2,1]],[[1,1,0,0],[1,3,2,1],[2,4,3,1],[0,2,2,1]],[[1,1,0,0],[1,3,2,1],[2,3,3,1],[0,3,2,1]],[[1,1,0,0],[1,3,2,1],[2,3,3,1],[0,2,3,1]],[[1,1,0,0],[1,3,2,1],[2,3,3,1],[0,2,2,2]],[[1,1,0,0],[1,3,2,1],[3,3,3,1],[1,1,2,1]],[[1,1,0,0],[1,3,2,1],[2,4,3,1],[1,1,2,1]],[[1,1,0,0],[1,3,2,1],[2,3,3,1],[2,1,2,1]],[[1,1,0,0],[1,3,2,1],[3,3,3,2],[0,2,2,0]],[[1,1,0,0],[1,3,2,1],[2,4,3,2],[0,2,2,0]],[[1,1,0,0],[1,3,2,1],[2,3,3,2],[0,3,2,0]],[[1,1,0,0],[1,3,2,1],[2,3,3,2],[0,2,3,0]],[[1,1,0,0],[1,3,2,1],[3,3,3,2],[1,1,2,0]],[[1,1,0,0],[1,3,2,1],[2,4,3,2],[1,1,2,0]],[[1,1,0,0],[1,3,2,1],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[0,4,3,0],[2,2,3,2],[0,1,1,1]],[[1,3,1,1],[0,3,3,0],[2,2,3,2],[0,1,1,1]],[[2,2,1,1],[0,3,3,0],[2,2,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,3,0],[2,2,3,2],[0,0,2,2]],[[1,2,1,1],[0,3,3,0],[2,2,3,3],[0,0,2,1]],[[1,2,1,1],[0,3,3,0],[2,2,4,2],[0,0,2,1]],[[1,2,1,1],[0,3,4,0],[2,2,3,2],[0,0,2,1]],[[1,2,1,1],[0,4,3,0],[2,2,3,2],[0,0,2,1]],[[1,3,1,1],[0,3,3,0],[2,2,3,2],[0,0,2,1]],[[2,2,1,1],[0,3,3,0],[2,2,3,2],[0,0,2,1]],[[1,2,1,1],[0,3,3,0],[2,2,4,1],[1,1,1,1]],[[1,2,1,1],[0,3,4,0],[2,2,3,1],[1,1,1,1]],[[1,2,1,1],[0,4,3,0],[2,2,3,1],[1,1,1,1]],[[1,3,1,1],[0,3,3,0],[2,2,3,1],[1,1,1,1]],[[2,2,1,1],[0,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,2,1,1],[0,3,3,0],[2,2,3,1],[1,0,2,2]],[[1,2,1,1],[0,3,3,0],[2,2,3,1],[1,0,3,1]],[[1,2,1,1],[0,3,3,0],[2,2,4,1],[1,0,2,1]],[[1,2,1,1],[0,3,4,0],[2,2,3,1],[1,0,2,1]],[[1,2,1,1],[0,4,3,0],[2,2,3,1],[1,0,2,1]],[[1,3,1,1],[0,3,3,0],[2,2,3,1],[1,0,2,1]],[[2,2,1,1],[0,3,3,0],[2,2,3,1],[1,0,2,1]],[[1,1,0,0],[1,3,3,0],[0,3,4,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,0],[0,3,3,2],[1,3,2,1]],[[1,1,0,0],[1,3,3,0],[0,3,3,2],[1,2,3,1]],[[1,1,0,0],[1,3,3,0],[0,3,3,2],[1,2,2,2]],[[1,1,0,0],[1,3,3,0],[1,2,4,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,0],[1,2,3,2],[2,2,2,1]],[[1,1,0,0],[1,3,3,0],[1,2,3,2],[1,3,2,1]],[[1,1,0,0],[1,3,3,0],[1,2,3,2],[1,2,3,1]],[[1,1,0,0],[1,3,3,0],[1,2,3,2],[1,2,2,2]],[[1,1,0,0],[1,4,3,0],[1,3,2,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,0],[1,4,2,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,0],[1,3,2,2],[2,2,2,1]],[[1,1,0,0],[1,3,3,0],[1,3,2,2],[1,3,2,1]],[[1,1,0,0],[1,3,3,0],[1,3,2,2],[1,2,3,1]],[[1,1,0,0],[1,3,3,0],[1,3,2,2],[1,2,2,2]],[[1,1,0,0],[1,4,3,0],[1,3,3,2],[1,1,2,1]],[[1,1,0,0],[1,3,3,0],[1,4,3,2],[1,1,2,1]],[[1,1,0,0],[1,3,3,0],[1,3,4,2],[1,1,2,1]],[[1,1,0,0],[1,3,3,0],[1,3,3,2],[1,1,3,1]],[[1,1,0,0],[1,3,3,0],[1,3,3,2],[1,1,2,2]],[[1,1,0,0],[1,4,3,0],[1,3,3,2],[1,2,1,1]],[[1,1,0,0],[1,3,3,0],[1,4,3,2],[1,2,1,1]],[[1,1,0,0],[1,3,3,0],[1,3,4,2],[1,2,1,1]],[[1,1,0,0],[1,3,3,0],[1,3,3,2],[2,2,1,1]],[[1,1,0,0],[1,3,3,0],[1,3,3,2],[1,3,1,1]],[[1,1,0,0],[1,3,3,0],[3,1,3,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,0],[2,1,4,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,0],[2,1,3,2],[2,2,2,1]],[[1,1,0,0],[1,3,3,0],[2,1,3,2],[1,3,2,1]],[[1,1,0,0],[1,3,3,0],[2,1,3,2],[1,2,3,1]],[[1,1,0,0],[1,3,3,0],[2,1,3,2],[1,2,2,2]],[[1,1,0,0],[1,3,3,0],[3,2,2,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,0],[2,2,2,2],[2,2,2,1]],[[1,1,0,0],[1,3,3,0],[2,2,2,2],[1,3,2,1]],[[1,1,0,0],[1,3,3,0],[2,2,2,2],[1,2,3,1]],[[1,1,0,0],[1,3,3,0],[2,2,2,2],[1,2,2,2]],[[1,1,0,0],[1,3,3,0],[2,2,4,2],[0,2,2,1]],[[1,1,0,0],[1,3,3,0],[2,2,3,2],[0,3,2,1]],[[1,1,0,0],[1,3,3,0],[2,2,3,2],[0,2,3,1]],[[1,1,0,0],[1,3,3,0],[2,2,3,2],[0,2,2,2]],[[1,1,0,0],[1,3,3,0],[3,2,3,2],[1,2,1,1]],[[1,1,0,0],[1,3,3,0],[2,2,3,2],[2,2,1,1]],[[1,1,0,0],[1,3,3,0],[2,2,3,2],[1,3,1,1]],[[1,1,0,0],[1,3,3,0],[3,3,1,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,0],[2,3,1,2],[2,2,2,1]],[[1,1,0,0],[1,3,3,0],[2,3,1,2],[1,3,2,1]],[[1,1,0,0],[1,4,3,0],[2,3,2,2],[0,2,2,1]],[[1,1,0,0],[1,3,3,0],[3,3,2,2],[0,2,2,1]],[[1,1,0,0],[1,3,3,0],[2,4,2,2],[0,2,2,1]],[[1,1,0,0],[1,3,3,0],[2,3,2,2],[0,3,2,1]],[[1,1,0,0],[1,3,3,0],[2,3,2,2],[0,2,3,1]],[[1,1,0,0],[1,3,3,0],[2,3,2,2],[0,2,2,2]],[[1,1,0,0],[1,4,3,0],[2,3,2,2],[1,1,2,1]],[[1,1,0,0],[1,3,3,0],[3,3,2,2],[1,1,2,1]],[[1,1,0,0],[1,3,3,0],[2,4,2,2],[1,1,2,1]],[[1,1,0,0],[1,3,3,0],[2,3,2,2],[2,1,2,1]],[[1,1,0,0],[1,4,3,0],[2,3,3,2],[0,1,2,1]],[[1,1,0,0],[1,3,3,0],[3,3,3,2],[0,1,2,1]],[[1,1,0,0],[1,3,3,0],[2,4,3,2],[0,1,2,1]],[[1,1,0,0],[1,3,3,0],[2,3,4,2],[0,1,2,1]],[[1,1,0,0],[1,3,3,0],[2,3,3,2],[0,1,3,1]],[[1,1,0,0],[1,3,3,0],[2,3,3,2],[0,1,2,2]],[[1,1,0,0],[1,4,3,0],[2,3,3,2],[0,2,1,1]],[[1,1,0,0],[1,3,3,0],[3,3,3,2],[0,2,1,1]],[[1,1,0,0],[1,3,3,0],[2,4,3,2],[0,2,1,1]],[[1,1,0,0],[1,3,3,0],[2,3,4,2],[0,2,1,1]],[[1,1,0,0],[1,3,3,0],[2,3,3,2],[0,3,1,1]],[[1,1,0,0],[1,4,3,0],[2,3,3,2],[1,0,2,1]],[[1,1,0,0],[1,3,3,0],[3,3,3,2],[1,0,2,1]],[[1,1,0,0],[1,3,3,0],[2,4,3,2],[1,0,2,1]],[[1,1,0,0],[1,3,3,0],[2,3,4,2],[1,0,2,1]],[[1,1,0,0],[1,3,3,0],[2,3,3,2],[2,0,2,1]],[[1,1,0,0],[1,3,3,0],[2,3,3,2],[1,0,3,1]],[[1,1,0,0],[1,3,3,0],[2,3,3,2],[1,0,2,2]],[[1,1,0,0],[1,4,3,0],[2,3,3,2],[1,1,1,1]],[[1,1,0,0],[1,3,3,0],[3,3,3,2],[1,1,1,1]],[[1,1,0,0],[1,3,3,0],[2,4,3,2],[1,1,1,1]],[[1,1,0,0],[1,3,3,0],[2,3,4,2],[1,1,1,1]],[[1,1,0,0],[1,3,3,0],[2,3,3,2],[2,1,1,1]],[[1,1,0,0],[1,3,3,0],[3,3,3,2],[1,2,0,1]],[[1,1,0,0],[1,3,3,0],[2,4,3,2],[1,2,0,1]],[[1,1,0,0],[1,3,3,0],[2,3,3,2],[2,2,0,1]],[[1,2,1,1],[0,3,3,0],[2,2,4,1],[0,2,1,1]],[[1,2,1,1],[0,3,4,0],[2,2,3,1],[0,2,1,1]],[[1,2,1,1],[0,4,3,0],[2,2,3,1],[0,2,1,1]],[[1,3,1,1],[0,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,1,0,0],[1,3,3,1],[0,3,2,3],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[0,3,2,2],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[0,3,2,2],[1,2,3,1]],[[1,1,0,0],[1,3,3,1],[0,3,2,2],[1,2,2,2]],[[1,1,0,0],[1,3,3,1],[0,3,4,1],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[0,3,3,1],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[0,3,3,1],[1,2,3,1]],[[1,1,0,0],[1,3,3,1],[0,3,3,1],[1,2,2,2]],[[1,1,0,0],[1,3,3,1],[0,3,4,2],[1,2,1,1]],[[1,1,0,0],[1,3,3,1],[0,3,3,3],[1,2,1,1]],[[1,1,0,0],[1,3,3,1],[0,3,3,2],[1,2,1,2]],[[1,1,0,0],[1,3,3,1],[0,3,4,2],[1,2,2,0]],[[1,1,0,0],[1,3,3,1],[0,3,3,3],[1,2,2,0]],[[1,1,0,0],[1,3,3,1],[0,3,3,2],[1,3,2,0]],[[1,1,0,0],[1,3,3,1],[0,3,3,2],[1,2,3,0]],[[1,1,0,0],[1,3,3,1],[1,2,2,3],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,2,2,2],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,2,2,2],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[1,2,2,2],[1,2,3,1]],[[1,1,0,0],[1,3,3,1],[1,2,2,2],[1,2,2,2]],[[1,1,0,0],[1,3,3,1],[1,2,4,1],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,2,3,1],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,2,3,1],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[1,2,3,1],[1,2,3,1]],[[1,1,0,0],[1,3,3,1],[1,2,3,1],[1,2,2,2]],[[1,1,0,0],[1,3,3,1],[1,2,4,2],[1,2,1,1]],[[1,1,0,0],[1,3,3,1],[1,2,3,3],[1,2,1,1]],[[1,1,0,0],[1,3,3,1],[1,2,3,2],[1,2,1,2]],[[1,1,0,0],[1,3,3,1],[1,2,4,2],[1,2,2,0]],[[1,1,0,0],[1,3,3,1],[1,2,3,3],[1,2,2,0]],[[1,1,0,0],[1,3,3,1],[1,2,3,2],[2,2,2,0]],[[1,1,0,0],[1,3,3,1],[1,2,3,2],[1,3,2,0]],[[1,1,0,0],[1,3,3,1],[1,2,3,2],[1,2,3,0]],[[1,1,0,0],[1,4,3,1],[1,3,1,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,4,1,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,1,3],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,1,2],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,1,2],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,1,2],[1,2,3,1]],[[1,1,0,0],[1,3,3,1],[1,3,1,2],[1,2,2,2]],[[1,1,0,0],[1,4,3,1],[1,3,2,1],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,4,2,1],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,2,1],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,2,1],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,2,1],[1,2,3,1]],[[1,1,0,0],[1,3,3,1],[1,3,2,1],[1,2,2,2]],[[1,1,0,0],[1,3,3,1],[1,3,2,3],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,2,2],[1,1,3,1]],[[1,1,0,0],[1,3,3,1],[1,3,2,2],[1,1,2,2]],[[1,1,0,0],[1,4,3,1],[1,3,2,2],[1,2,2,0]],[[1,1,0,0],[1,3,3,1],[1,4,2,2],[1,2,2,0]],[[1,1,0,0],[1,3,3,1],[1,3,2,2],[2,2,2,0]],[[1,1,0,0],[1,3,3,1],[1,3,2,2],[1,3,2,0]],[[1,1,0,0],[1,3,3,1],[1,3,2,2],[1,2,3,0]],[[1,1,0,0],[1,4,3,1],[1,3,3,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,4,3,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,0],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,0],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,0],[1,2,3,1]],[[1,1,0,0],[1,4,3,1],[1,3,3,1],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[1,4,3,1],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,4,1],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,1],[1,1,3,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,1],[1,1,2,2]],[[1,1,0,0],[1,4,3,1],[1,3,3,1],[1,2,1,1]],[[1,1,0,0],[1,3,3,1],[1,4,3,1],[1,2,1,1]],[[1,1,0,0],[1,3,3,1],[1,3,4,1],[1,2,1,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,1],[2,2,1,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,1],[1,3,1,1]],[[1,1,0,0],[1,3,3,1],[1,3,4,2],[1,0,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,3],[1,0,2,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,2],[1,0,2,2]],[[1,1,0,0],[1,4,3,1],[1,3,3,2],[1,1,1,1]],[[1,1,0,0],[1,3,3,1],[1,4,3,2],[1,1,1,1]],[[1,1,0,0],[1,3,3,1],[1,3,4,2],[1,1,1,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,3],[1,1,1,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,2],[1,1,1,2]],[[1,1,0,0],[1,4,3,1],[1,3,3,2],[1,1,2,0]],[[1,1,0,0],[1,3,3,1],[1,4,3,2],[1,1,2,0]],[[1,1,0,0],[1,3,3,1],[1,3,4,2],[1,1,2,0]],[[1,1,0,0],[1,3,3,1],[1,3,3,3],[1,1,2,0]],[[1,1,0,0],[1,3,3,1],[1,3,3,2],[1,1,3,0]],[[1,1,0,0],[1,4,3,1],[1,3,3,2],[1,2,0,1]],[[1,1,0,0],[1,3,3,1],[1,4,3,2],[1,2,0,1]],[[1,1,0,0],[1,3,3,1],[1,3,4,2],[1,2,0,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,3],[1,2,0,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,2],[2,2,0,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,2],[1,3,0,1]],[[1,1,0,0],[1,3,3,1],[1,3,3,2],[1,2,0,2]],[[1,1,0,0],[1,4,3,1],[1,3,3,2],[1,2,1,0]],[[1,1,0,0],[1,3,3,1],[1,4,3,2],[1,2,1,0]],[[1,1,0,0],[1,3,3,1],[1,3,4,2],[1,2,1,0]],[[1,1,0,0],[1,3,3,1],[1,3,3,3],[1,2,1,0]],[[1,1,0,0],[1,3,3,1],[1,3,3,2],[2,2,1,0]],[[1,1,0,0],[1,3,3,1],[1,3,3,2],[1,3,1,0]],[[2,2,1,1],[0,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,2,1,1],[0,3,3,0],[2,2,3,1],[0,1,2,2]],[[1,2,1,1],[0,3,3,0],[2,2,3,1],[0,1,3,1]],[[1,2,1,1],[0,3,3,0],[2,2,4,1],[0,1,2,1]],[[1,2,1,1],[0,3,4,0],[2,2,3,1],[0,1,2,1]],[[1,2,1,1],[0,4,3,0],[2,2,3,1],[0,1,2,1]],[[1,3,1,1],[0,3,3,0],[2,2,3,1],[0,1,2,1]],[[2,2,1,1],[0,3,3,0],[2,2,3,1],[0,1,2,1]],[[1,1,0,0],[1,3,3,1],[3,1,2,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,1,2,3],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,1,2,2],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,1,2,2],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[2,1,2,2],[1,2,3,1]],[[1,1,0,0],[1,3,3,1],[2,1,2,2],[1,2,2,2]],[[1,1,0,0],[1,3,3,1],[3,1,3,1],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,1,4,1],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,1,3,1],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,1,3,1],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[2,1,3,1],[1,2,3,1]],[[1,1,0,0],[1,3,3,1],[2,1,3,1],[1,2,2,2]],[[1,1,0,0],[1,3,3,1],[2,1,4,2],[1,2,1,1]],[[1,1,0,0],[1,3,3,1],[2,1,3,3],[1,2,1,1]],[[1,1,0,0],[1,3,3,1],[2,1,3,2],[1,2,1,2]],[[1,1,0,0],[1,3,3,1],[3,1,3,2],[1,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,1,4,2],[1,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,1,3,3],[1,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,1,3,2],[2,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,1,3,2],[1,3,2,0]],[[1,1,0,0],[1,3,3,1],[2,1,3,2],[1,2,3,0]],[[1,1,0,0],[1,3,3,1],[3,2,1,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,1,3],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,1,2],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,1,2],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,1,2],[1,2,3,1]],[[1,1,0,0],[1,3,3,1],[2,2,1,2],[1,2,2,2]],[[1,1,0,0],[1,3,3,1],[3,2,2,1],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,2,1],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,2,1],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,2,1],[1,2,3,1]],[[1,1,0,0],[1,3,3,1],[2,2,2,1],[1,2,2,2]],[[1,1,0,0],[1,3,3,1],[2,2,2,3],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,2,2],[0,3,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,2,2],[0,2,3,1]],[[1,1,0,0],[1,3,3,1],[2,2,2,2],[0,2,2,2]],[[1,1,0,0],[1,3,3,1],[3,2,2,2],[1,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,2,2,2],[2,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,2,2,2],[1,3,2,0]],[[1,1,0,0],[1,3,3,1],[2,2,2,2],[1,2,3,0]],[[1,1,0,0],[1,3,3,1],[3,2,3,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,0],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,0],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,0],[1,2,3,1]],[[1,1,0,0],[1,3,3,1],[2,2,4,1],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,1],[0,3,2,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,1],[0,2,3,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,1],[0,2,2,2]],[[1,1,0,0],[1,3,3,1],[3,2,3,1],[1,2,1,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,1],[2,2,1,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,1],[1,3,1,1]],[[1,1,0,0],[1,3,3,1],[2,2,4,2],[0,2,1,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,3],[0,2,1,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,2],[0,2,1,2]],[[1,1,0,0],[1,3,3,1],[2,2,4,2],[0,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,2,3,3],[0,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,2,3,2],[0,3,2,0]],[[1,1,0,0],[1,3,3,1],[2,2,3,2],[0,2,3,0]],[[1,1,0,0],[1,3,3,1],[3,2,3,2],[1,2,0,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,2],[2,2,0,1]],[[1,1,0,0],[1,3,3,1],[2,2,3,2],[1,3,0,1]],[[1,1,0,0],[1,3,3,1],[3,2,3,2],[1,2,1,0]],[[1,1,0,0],[1,3,3,1],[2,2,3,2],[2,2,1,0]],[[1,1,0,0],[1,3,3,1],[2,2,3,2],[1,3,1,0]],[[1,1,0,0],[1,3,3,1],[3,3,0,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,0,2],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,0,2],[1,3,2,1]],[[1,1,0,0],[1,3,3,1],[3,3,1,1],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,1,1],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,1,1],[1,3,2,1]],[[1,1,0,0],[1,4,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[3,3,1,2],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,4,1,2],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,1,3],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,1,2],[0,3,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,1,2],[0,2,3,1]],[[1,1,0,0],[1,3,3,1],[2,3,1,2],[0,2,2,2]],[[1,1,0,0],[1,4,3,1],[2,3,1,2],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[3,3,1,2],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[2,4,1,2],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,1,2],[2,1,2,1]],[[1,1,0,0],[1,3,3,1],[3,3,1,2],[1,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,1,2],[2,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,1,2],[1,3,2,0]],[[1,1,0,0],[1,3,3,1],[3,3,2,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,2,0],[2,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,2,0],[1,3,2,1]],[[1,1,0,0],[1,4,3,1],[2,3,2,1],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[3,3,2,1],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,4,2,1],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,2,1],[0,3,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,2,1],[0,2,3,1]],[[1,1,0,0],[1,3,3,1],[2,3,2,1],[0,2,2,2]],[[1,1,0,0],[1,4,3,1],[2,3,2,1],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[3,3,2,1],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[2,4,2,1],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,2,1],[2,1,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,2,3],[0,1,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,2,2],[0,1,3,1]],[[1,1,0,0],[1,3,3,1],[2,3,2,2],[0,1,2,2]],[[1,1,0,0],[1,4,3,1],[2,3,2,2],[0,2,2,0]],[[1,1,0,0],[1,3,3,1],[3,3,2,2],[0,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,4,2,2],[0,2,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,2,2],[0,3,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,2,2],[0,2,3,0]],[[1,1,0,0],[1,3,3,1],[2,3,2,3],[1,0,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,2,2],[1,0,3,1]],[[1,1,0,0],[1,3,3,1],[2,3,2,2],[1,0,2,2]],[[1,1,0,0],[1,4,3,1],[2,3,2,2],[1,1,2,0]],[[1,1,0,0],[1,3,3,1],[3,3,2,2],[1,1,2,0]],[[1,1,0,0],[1,3,3,1],[2,4,2,2],[1,1,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,3,3,0],[2,2,2,2],[1,3,1,0]],[[1,2,1,1],[0,3,3,0],[2,2,2,2],[2,2,1,0]],[[1,2,1,1],[0,3,3,0],[3,2,2,2],[1,2,1,0]],[[1,2,1,1],[0,3,3,0],[2,2,2,2],[1,3,0,1]],[[1,1,0,0],[1,4,3,1],[2,3,3,0],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[3,3,3,0],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,4,3,0],[0,2,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,0],[0,3,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,0],[0,2,3,1]],[[1,1,0,0],[1,4,3,1],[2,3,3,0],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[3,3,3,0],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[2,4,3,0],[1,1,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,0],[2,1,2,1]],[[1,1,0,0],[1,4,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,0],[1,3,3,1],[3,3,3,1],[0,1,2,1]],[[1,1,0,0],[1,3,3,1],[2,4,3,1],[0,1,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,4,1],[0,1,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,1],[0,1,3,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,1],[0,1,2,2]],[[1,1,0,0],[1,4,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,0],[1,3,3,1],[3,3,3,1],[0,2,1,1]],[[1,1,0,0],[1,3,3,1],[2,4,3,1],[0,2,1,1]],[[1,1,0,0],[1,3,3,1],[2,3,4,1],[0,2,1,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,1],[0,3,1,1]],[[1,1,0,0],[1,4,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,0],[1,3,3,1],[3,3,3,1],[1,0,2,1]],[[1,1,0,0],[1,3,3,1],[2,4,3,1],[1,0,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,4,1],[1,0,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,1],[2,0,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,1],[1,0,3,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,1],[1,0,2,2]],[[1,1,0,0],[1,4,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,0],[1,3,3,1],[3,3,3,1],[1,1,1,1]],[[1,1,0,0],[1,3,3,1],[2,4,3,1],[1,1,1,1]],[[1,1,0,0],[1,3,3,1],[2,3,4,1],[1,1,1,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,1],[2,1,1,1]],[[1,1,0,0],[1,4,3,1],[2,3,3,1],[1,2,0,1]],[[1,1,0,0],[1,3,3,1],[3,3,3,1],[1,2,0,1]],[[1,1,0,0],[1,3,3,1],[2,4,3,1],[1,2,0,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,3,3,0],[2,2,2,2],[2,2,0,1]],[[1,2,1,1],[0,3,3,0],[3,2,2,2],[1,2,0,1]],[[1,2,1,1],[0,3,3,0],[2,2,2,2],[1,0,2,2]],[[1,2,1,1],[0,3,3,0],[2,2,2,2],[1,0,3,1]],[[1,2,1,1],[0,3,3,0],[2,2,2,3],[1,0,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,4,2],[0,0,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,3],[0,0,2,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[0,0,2,2]],[[1,1,0,0],[1,4,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,0],[1,3,3,1],[3,3,3,2],[0,1,1,1]],[[1,1,0,0],[1,3,3,1],[2,4,3,2],[0,1,1,1]],[[1,1,0,0],[1,3,3,1],[2,3,4,2],[0,1,1,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,3],[0,1,1,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[0,1,1,2]],[[1,1,0,0],[1,4,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,0],[1,3,3,1],[3,3,3,2],[0,1,2,0]],[[1,1,0,0],[1,3,3,1],[2,4,3,2],[0,1,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,4,2],[0,1,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,3,3],[0,1,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[0,1,3,0]],[[1,1,0,0],[1,4,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,0],[1,3,3,1],[3,3,3,2],[0,2,0,1]],[[1,1,0,0],[1,3,3,1],[2,4,3,2],[0,2,0,1]],[[1,1,0,0],[1,3,3,1],[2,3,4,2],[0,2,0,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,3],[0,2,0,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[0,3,0,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[0,2,0,2]],[[1,1,0,0],[1,4,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,0],[1,3,3,1],[3,3,3,2],[0,2,1,0]],[[1,1,0,0],[1,3,3,1],[2,4,3,2],[0,2,1,0]],[[1,1,0,0],[1,3,3,1],[2,3,4,2],[0,2,1,0]],[[1,1,0,0],[1,3,3,1],[2,3,3,3],[0,2,1,0]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,3,3,0],[2,2,2,2],[0,1,2,2]],[[1,2,1,1],[0,3,3,0],[2,2,2,2],[0,1,3,1]],[[1,2,1,1],[0,3,3,0],[2,2,2,3],[0,1,2,1]],[[1,1,0,0],[1,4,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,0],[1,3,3,1],[3,3,3,2],[1,0,1,1]],[[1,1,0,0],[1,3,3,1],[2,4,3,2],[1,0,1,1]],[[1,1,0,0],[1,3,3,1],[2,3,4,2],[1,0,1,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,3],[1,0,1,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[2,0,1,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[1,0,1,2]],[[1,1,0,0],[1,4,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,0],[1,3,3,1],[3,3,3,2],[1,0,2,0]],[[1,1,0,0],[1,3,3,1],[2,4,3,2],[1,0,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,4,2],[1,0,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,3,3],[1,0,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[2,0,2,0]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[1,0,3,0]],[[1,1,0,0],[1,4,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,0],[1,3,3,1],[3,3,3,2],[1,1,0,1]],[[1,1,0,0],[1,3,3,1],[2,4,3,2],[1,1,0,1]],[[1,1,0,0],[1,3,3,1],[2,3,4,2],[1,1,0,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,3],[1,1,0,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[2,1,0,1]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[1,1,0,2]],[[1,1,0,0],[1,4,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,0],[1,3,3,1],[3,3,3,2],[1,1,1,0]],[[1,1,0,0],[1,3,3,1],[2,4,3,2],[1,1,1,0]],[[1,1,0,0],[1,3,3,1],[2,3,4,2],[1,1,1,0]],[[1,1,0,0],[1,3,3,1],[2,3,3,3],[1,1,1,0]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,3,3,0],[2,2,2,1],[1,3,1,1]],[[1,2,1,1],[0,3,3,0],[2,2,2,1],[2,2,1,1]],[[1,2,1,1],[0,3,3,0],[3,2,2,1],[1,2,1,1]],[[1,1,0,0],[1,4,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,0,0],[1,3,3,1],[3,3,3,2],[1,2,0,0]],[[1,1,0,0],[1,3,3,1],[2,4,3,2],[1,2,0,0]],[[1,1,0,0],[1,3,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,3,3,0],[2,2,1,2],[1,2,3,0]],[[1,2,1,1],[0,3,3,0],[2,2,1,2],[1,3,2,0]],[[1,2,1,1],[0,3,3,0],[2,2,1,2],[2,2,2,0]],[[1,2,1,1],[0,3,3,0],[3,2,1,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,0],[2,2,1,1],[1,2,2,2]],[[1,2,1,1],[0,3,3,0],[2,2,1,1],[1,2,3,1]],[[1,2,1,1],[0,3,3,0],[2,2,1,1],[1,3,2,1]],[[1,2,1,1],[0,3,3,0],[2,2,1,1],[2,2,2,1]],[[1,2,1,1],[0,3,3,0],[3,2,1,1],[1,2,2,1]],[[1,2,1,1],[0,3,3,0],[2,2,0,2],[1,2,2,2]],[[1,2,1,1],[0,3,3,0],[2,2,0,2],[1,2,3,1]],[[1,2,1,1],[0,3,3,0],[2,2,0,2],[1,3,2,1]],[[1,2,1,1],[0,3,3,0],[2,2,0,2],[2,2,2,1]],[[1,2,1,1],[0,3,3,0],[2,2,0,3],[1,2,2,1]],[[1,2,1,1],[0,3,3,0],[3,2,0,2],[1,2,2,1]],[[1,1,0,0],[1,3,3,2],[0,3,4,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,2],[0,3,3,0],[1,3,2,1]],[[1,1,0,0],[1,3,3,2],[0,3,3,0],[1,2,3,1]],[[1,1,0,0],[1,3,3,2],[0,3,3,0],[1,2,2,2]],[[1,1,0,0],[1,3,3,2],[0,3,4,1],[1,2,2,0]],[[1,1,0,0],[1,3,3,2],[0,3,3,1],[1,3,2,0]],[[1,1,0,0],[1,3,3,2],[0,3,3,1],[1,2,3,0]],[[1,1,0,0],[1,3,3,2],[1,2,4,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,2],[1,2,3,0],[2,2,2,1]],[[1,1,0,0],[1,3,3,2],[1,2,3,0],[1,3,2,1]],[[1,1,0,0],[1,3,3,2],[1,2,3,0],[1,2,3,1]],[[1,1,0,0],[1,3,3,2],[1,2,3,0],[1,2,2,2]],[[1,1,0,0],[1,3,3,2],[1,2,4,1],[1,2,2,0]],[[1,1,0,0],[1,3,3,2],[1,2,3,1],[2,2,2,0]],[[1,1,0,0],[1,3,3,2],[1,2,3,1],[1,3,2,0]],[[1,1,0,0],[1,3,3,2],[1,2,3,1],[1,2,3,0]],[[1,1,0,0],[1,4,3,2],[1,3,2,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,2],[1,3,2,0],[2,2,2,1]],[[1,1,0,0],[1,3,3,2],[1,3,2,0],[1,3,2,1]],[[1,1,0,0],[1,3,3,2],[1,3,2,0],[1,2,3,1]],[[1,1,0,0],[1,3,3,2],[1,3,2,0],[1,2,2,2]],[[1,1,0,0],[1,4,3,2],[1,3,2,1],[1,2,2,0]],[[1,1,0,0],[1,3,3,2],[1,4,2,1],[1,2,2,0]],[[1,1,0,0],[1,3,3,2],[1,3,2,1],[2,2,2,0]],[[1,1,0,0],[1,3,3,2],[1,3,2,1],[1,3,2,0]],[[1,1,0,0],[1,3,3,2],[1,3,2,1],[1,2,3,0]],[[1,1,0,0],[1,4,3,2],[1,3,3,0],[1,1,2,1]],[[1,1,0,0],[1,3,3,2],[1,4,3,0],[1,1,2,1]],[[1,1,0,0],[1,3,3,2],[1,3,4,0],[1,1,2,1]],[[1,1,0,0],[1,3,3,2],[1,3,3,0],[1,1,3,1]],[[1,1,0,0],[1,3,3,2],[1,3,3,0],[1,1,2,2]],[[1,1,0,0],[1,4,3,2],[1,3,3,0],[1,2,1,1]],[[1,1,0,0],[1,3,3,2],[1,4,3,0],[1,2,1,1]],[[1,1,0,0],[1,3,3,2],[1,3,4,0],[1,2,1,1]],[[1,1,0,0],[1,3,3,2],[1,3,3,0],[2,2,1,1]],[[1,1,0,0],[1,3,3,2],[1,3,3,0],[1,3,1,1]],[[1,1,0,0],[1,4,3,2],[1,3,3,1],[1,1,1,1]],[[1,1,0,0],[1,3,3,2],[1,4,3,1],[1,1,1,1]],[[1,1,0,0],[1,3,3,2],[1,3,4,1],[1,1,1,1]],[[1,1,0,0],[1,4,3,2],[1,3,3,1],[1,1,2,0]],[[1,1,0,0],[1,3,3,2],[1,4,3,1],[1,1,2,0]],[[1,1,0,0],[1,3,3,2],[1,3,4,1],[1,1,2,0]],[[1,1,0,0],[1,3,3,2],[1,3,3,1],[1,1,3,0]],[[1,1,0,0],[1,4,3,2],[1,3,3,1],[1,2,0,1]],[[1,1,0,0],[1,3,3,2],[1,4,3,1],[1,2,0,1]],[[1,1,0,0],[1,3,3,2],[1,3,4,1],[1,2,0,1]],[[1,1,0,0],[1,3,3,2],[1,3,3,1],[2,2,0,1]],[[1,1,0,0],[1,3,3,2],[1,3,3,1],[1,3,0,1]],[[1,1,0,0],[1,4,3,2],[1,3,3,1],[1,2,1,0]],[[1,1,0,0],[1,3,3,2],[1,4,3,1],[1,2,1,0]],[[1,1,0,0],[1,3,3,2],[1,3,4,1],[1,2,1,0]],[[1,1,0,0],[1,3,3,2],[1,3,3,1],[2,2,1,0]],[[1,1,0,0],[1,3,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,3,3,0],[2,1,3,2],[0,2,3,0]],[[1,2,1,1],[0,3,3,0],[2,1,3,2],[0,3,2,0]],[[1,2,1,1],[0,3,3,0],[2,1,3,3],[0,2,2,0]],[[1,2,1,1],[0,3,3,0],[2,1,4,2],[0,2,2,0]],[[1,2,1,1],[0,3,4,0],[2,1,3,2],[0,2,2,0]],[[1,2,1,1],[0,4,3,0],[2,1,3,2],[0,2,2,0]],[[1,3,1,1],[0,3,3,0],[2,1,3,2],[0,2,2,0]],[[2,2,1,1],[0,3,3,0],[2,1,3,2],[0,2,2,0]],[[1,2,1,1],[0,3,3,0],[2,1,3,2],[0,2,1,2]],[[1,2,1,1],[0,3,3,0],[2,1,3,3],[0,2,1,1]],[[1,2,1,1],[0,3,3,0],[2,1,4,2],[0,2,1,1]],[[1,2,1,1],[0,3,4,0],[2,1,3,2],[0,2,1,1]],[[1,2,1,1],[0,4,3,0],[2,1,3,2],[0,2,1,1]],[[1,3,1,1],[0,3,3,0],[2,1,3,2],[0,2,1,1]],[[2,2,1,1],[0,3,3,0],[2,1,3,2],[0,2,1,1]],[[1,2,1,1],[0,3,3,0],[2,1,3,1],[0,2,2,2]],[[1,2,1,1],[0,3,3,0],[2,1,3,1],[0,2,3,1]],[[1,2,1,1],[0,3,3,0],[2,1,3,1],[0,3,2,1]],[[1,2,1,1],[0,3,3,0],[2,1,4,1],[0,2,2,1]],[[1,2,1,1],[0,3,4,0],[2,1,3,1],[0,2,2,1]],[[1,2,1,1],[0,4,3,0],[2,1,3,1],[0,2,2,1]],[[1,3,1,1],[0,3,3,0],[2,1,3,1],[0,2,2,1]],[[1,1,0,0],[1,3,3,2],[3,1,3,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,2],[2,1,4,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,2],[2,1,3,0],[2,2,2,1]],[[1,1,0,0],[1,3,3,2],[2,1,3,0],[1,3,2,1]],[[1,1,0,0],[1,3,3,2],[2,1,3,0],[1,2,3,1]],[[1,1,0,0],[1,3,3,2],[2,1,3,0],[1,2,2,2]],[[1,1,0,0],[1,3,3,2],[3,1,3,1],[1,2,2,0]],[[1,1,0,0],[1,3,3,2],[2,1,4,1],[1,2,2,0]],[[1,1,0,0],[1,3,3,2],[2,1,3,1],[2,2,2,0]],[[1,1,0,0],[1,3,3,2],[2,1,3,1],[1,3,2,0]],[[1,1,0,0],[1,3,3,2],[2,1,3,1],[1,2,3,0]],[[2,2,1,1],[0,3,3,0],[2,1,3,1],[0,2,2,1]],[[1,1,0,0],[1,3,3,2],[3,2,2,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,2],[2,2,2,0],[2,2,2,1]],[[1,1,0,0],[1,3,3,2],[2,2,2,0],[1,3,2,1]],[[1,1,0,0],[1,3,3,2],[2,2,2,0],[1,2,3,1]],[[1,1,0,0],[1,3,3,2],[2,2,2,0],[1,2,2,2]],[[1,1,0,0],[1,3,3,2],[3,2,2,1],[1,2,2,0]],[[1,1,0,0],[1,3,3,2],[2,2,2,1],[2,2,2,0]],[[1,1,0,0],[1,3,3,2],[2,2,2,1],[1,3,2,0]],[[1,1,0,0],[1,3,3,2],[2,2,2,1],[1,2,3,0]],[[1,2,1,1],[0,3,3,0],[2,1,2,2],[0,2,2,2]],[[1,2,1,1],[0,3,3,0],[2,1,2,2],[0,2,3,1]],[[1,2,1,1],[0,3,3,0],[2,1,2,2],[0,3,2,1]],[[1,2,1,1],[0,3,3,0],[2,1,2,3],[0,2,2,1]],[[1,1,0,0],[1,3,3,2],[2,2,4,0],[0,2,2,1]],[[1,1,0,0],[1,3,3,2],[2,2,3,0],[0,3,2,1]],[[1,1,0,0],[1,3,3,2],[2,2,3,0],[0,2,3,1]],[[1,1,0,0],[1,3,3,2],[2,2,3,0],[0,2,2,2]],[[1,1,0,0],[1,3,3,2],[3,2,3,0],[1,2,1,1]],[[1,1,0,0],[1,3,3,2],[2,2,3,0],[2,2,1,1]],[[1,1,0,0],[1,3,3,2],[2,2,3,0],[1,3,1,1]],[[1,1,0,0],[1,3,3,2],[2,2,4,1],[0,2,2,0]],[[1,1,0,0],[1,3,3,2],[2,2,3,1],[0,3,2,0]],[[1,1,0,0],[1,3,3,2],[2,2,3,1],[0,2,3,0]],[[1,1,0,0],[1,3,3,2],[3,2,3,1],[1,2,0,1]],[[1,1,0,0],[1,3,3,2],[2,2,3,1],[2,2,0,1]],[[1,1,0,0],[1,3,3,2],[2,2,3,1],[1,3,0,1]],[[1,1,0,0],[1,3,3,2],[3,2,3,1],[1,2,1,0]],[[1,1,0,0],[1,3,3,2],[2,2,3,1],[2,2,1,0]],[[1,1,0,0],[1,3,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[0,3,3,0],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,3,0],[2,0,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,3,0],[2,0,3,2],[2,2,2,0]],[[1,2,1,1],[0,3,3,0],[2,0,3,3],[1,2,2,0]],[[1,2,1,1],[0,3,3,0],[2,0,4,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,0],[3,0,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,4,0],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[0,4,3,0],[2,0,3,2],[1,2,2,0]],[[1,3,1,1],[0,3,3,0],[2,0,3,2],[1,2,2,0]],[[2,2,1,1],[0,3,3,0],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,0],[2,0,3,2],[1,2,1,2]],[[1,2,1,1],[0,3,3,0],[2,0,3,3],[1,2,1,1]],[[1,2,1,1],[0,3,3,0],[2,0,4,2],[1,2,1,1]],[[1,2,1,1],[0,3,4,0],[2,0,3,2],[1,2,1,1]],[[1,2,1,1],[0,4,3,0],[2,0,3,2],[1,2,1,1]],[[1,3,1,1],[0,3,3,0],[2,0,3,2],[1,2,1,1]],[[2,2,1,1],[0,3,3,0],[2,0,3,2],[1,2,1,1]],[[1,2,1,1],[0,3,3,0],[2,0,3,2],[0,2,2,2]],[[1,2,1,1],[0,3,3,0],[2,0,3,2],[0,2,3,1]],[[1,2,1,1],[0,3,3,0],[2,0,3,3],[0,2,2,1]],[[1,2,1,1],[0,3,3,0],[2,0,3,1],[1,2,2,2]],[[1,1,0,0],[1,3,3,2],[3,3,1,0],[1,2,2,1]],[[1,1,0,0],[1,3,3,2],[2,3,1,0],[2,2,2,1]],[[1,1,0,0],[1,3,3,2],[2,3,1,0],[1,3,2,1]],[[1,1,0,0],[1,3,3,2],[3,3,1,1],[1,2,2,0]],[[1,1,0,0],[1,3,3,2],[2,3,1,1],[2,2,2,0]],[[1,1,0,0],[1,3,3,2],[2,3,1,1],[1,3,2,0]],[[1,2,1,1],[0,3,3,0],[2,0,3,1],[1,2,3,1]],[[1,2,1,1],[0,3,3,0],[2,0,3,1],[1,3,2,1]],[[1,2,1,1],[0,3,3,0],[2,0,3,1],[2,2,2,1]],[[1,2,1,1],[0,3,3,0],[2,0,4,1],[1,2,2,1]],[[1,2,1,1],[0,3,3,0],[3,0,3,1],[1,2,2,1]],[[1,2,1,1],[0,3,4,0],[2,0,3,1],[1,2,2,1]],[[1,2,1,1],[0,4,3,0],[2,0,3,1],[1,2,2,1]],[[1,3,1,1],[0,3,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,0,0],[1,4,3,2],[2,3,2,0],[0,2,2,1]],[[1,1,0,0],[1,3,3,2],[3,3,2,0],[0,2,2,1]],[[1,1,0,0],[1,3,3,2],[2,4,2,0],[0,2,2,1]],[[1,1,0,0],[1,3,3,2],[2,3,2,0],[0,3,2,1]],[[1,1,0,0],[1,3,3,2],[2,3,2,0],[0,2,3,1]],[[1,1,0,0],[1,3,3,2],[2,3,2,0],[0,2,2,2]],[[1,1,0,0],[1,4,3,2],[2,3,2,0],[1,1,2,1]],[[1,1,0,0],[1,3,3,2],[3,3,2,0],[1,1,2,1]],[[1,1,0,0],[1,3,3,2],[2,4,2,0],[1,1,2,1]],[[1,1,0,0],[1,3,3,2],[2,3,2,0],[2,1,2,1]],[[1,1,0,0],[1,4,3,2],[2,3,2,1],[0,2,2,0]],[[1,1,0,0],[1,3,3,2],[3,3,2,1],[0,2,2,0]],[[1,1,0,0],[1,3,3,2],[2,4,2,1],[0,2,2,0]],[[1,1,0,0],[1,3,3,2],[2,3,2,1],[0,3,2,0]],[[1,1,0,0],[1,3,3,2],[2,3,2,1],[0,2,3,0]],[[1,1,0,0],[1,4,3,2],[2,3,2,1],[1,1,2,0]],[[1,1,0,0],[1,3,3,2],[3,3,2,1],[1,1,2,0]],[[1,1,0,0],[1,3,3,2],[2,4,2,1],[1,1,2,0]],[[1,1,0,0],[1,3,3,2],[2,3,2,1],[2,1,2,0]],[[2,2,1,1],[0,3,3,0],[2,0,3,1],[1,2,2,1]],[[1,2,1,1],[0,3,3,0],[2,0,2,2],[1,2,2,2]],[[1,2,1,1],[0,3,3,0],[2,0,2,2],[1,2,3,1]],[[1,2,1,1],[0,3,3,0],[2,0,2,2],[1,3,2,1]],[[1,2,1,1],[0,3,3,0],[2,0,2,2],[2,2,2,1]],[[1,2,1,1],[0,3,3,0],[2,0,2,3],[1,2,2,1]],[[1,2,1,1],[0,3,3,0],[3,0,2,2],[1,2,2,1]],[[1,2,1,1],[0,3,3,0],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[0,3,4,0],[1,3,3,2],[1,2,0,0]],[[1,2,1,1],[0,4,3,0],[1,3,3,2],[1,2,0,0]],[[1,3,1,1],[0,3,3,0],[1,3,3,2],[1,2,0,0]],[[2,2,1,1],[0,3,3,0],[1,3,3,2],[1,2,0,0]],[[1,1,0,0],[1,4,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,0],[1,3,3,2],[3,3,3,0],[0,1,2,1]],[[1,1,0,0],[1,3,3,2],[2,4,3,0],[0,1,2,1]],[[1,1,0,0],[1,3,3,2],[2,3,4,0],[0,1,2,1]],[[1,1,0,0],[1,3,3,2],[2,3,3,0],[0,1,3,1]],[[1,1,0,0],[1,3,3,2],[2,3,3,0],[0,1,2,2]],[[1,1,0,0],[1,4,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,0],[1,3,3,2],[3,3,3,0],[0,2,1,1]],[[1,1,0,0],[1,3,3,2],[2,4,3,0],[0,2,1,1]],[[1,1,0,0],[1,3,3,2],[2,3,4,0],[0,2,1,1]],[[1,1,0,0],[1,3,3,2],[2,3,3,0],[0,3,1,1]],[[1,1,0,0],[1,4,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,0],[1,3,3,2],[3,3,3,0],[1,0,2,1]],[[1,1,0,0],[1,3,3,2],[2,4,3,0],[1,0,2,1]],[[1,1,0,0],[1,3,3,2],[2,3,4,0],[1,0,2,1]],[[1,1,0,0],[1,3,3,2],[2,3,3,0],[2,0,2,1]],[[1,1,0,0],[1,3,3,2],[2,3,3,0],[1,0,3,1]],[[1,1,0,0],[1,3,3,2],[2,3,3,0],[1,0,2,2]],[[1,1,0,0],[1,4,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,0],[1,3,3,2],[3,3,3,0],[1,1,1,1]],[[1,1,0,0],[1,3,3,2],[2,4,3,0],[1,1,1,1]],[[1,1,0,0],[1,3,3,2],[2,3,4,0],[1,1,1,1]],[[1,1,0,0],[1,3,3,2],[2,3,3,0],[2,1,1,1]],[[1,1,0,0],[1,4,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,0,0],[1,3,3,2],[3,3,3,0],[1,2,0,1]],[[1,1,0,0],[1,3,3,2],[2,4,3,0],[1,2,0,1]],[[1,1,0,0],[1,3,3,2],[2,3,3,0],[2,2,0,1]],[[1,1,0,0],[1,4,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,0],[1,3,3,2],[3,3,3,1],[0,1,1,1]],[[1,1,0,0],[1,3,3,2],[2,4,3,1],[0,1,1,1]],[[1,1,0,0],[1,3,3,2],[2,3,4,1],[0,1,1,1]],[[1,1,0,0],[1,4,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,0],[1,3,3,2],[3,3,3,1],[0,1,2,0]],[[1,1,0,0],[1,3,3,2],[2,4,3,1],[0,1,2,0]],[[1,1,0,0],[1,3,3,2],[2,3,4,1],[0,1,2,0]],[[1,1,0,0],[1,3,3,2],[2,3,3,1],[0,1,3,0]],[[1,1,0,0],[1,4,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,0],[1,3,3,2],[3,3,3,1],[0,2,0,1]],[[1,1,0,0],[1,3,3,2],[2,4,3,1],[0,2,0,1]],[[1,1,0,0],[1,3,3,2],[2,3,4,1],[0,2,0,1]],[[1,1,0,0],[1,3,3,2],[2,3,3,1],[0,3,0,1]],[[1,1,0,0],[1,4,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,0],[1,3,3,2],[3,3,3,1],[0,2,1,0]],[[1,1,0,0],[1,3,3,2],[2,4,3,1],[0,2,1,0]],[[1,1,0,0],[1,3,3,2],[2,3,4,1],[0,2,1,0]],[[1,1,0,0],[1,3,3,2],[2,3,3,1],[0,3,1,0]],[[1,1,0,0],[1,4,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,0],[1,3,3,2],[3,3,3,1],[1,0,1,1]],[[1,1,0,0],[1,3,3,2],[2,4,3,1],[1,0,1,1]],[[1,1,0,0],[1,3,3,2],[2,3,4,1],[1,0,1,1]],[[1,1,0,0],[1,3,3,2],[2,3,3,1],[2,0,1,1]],[[1,1,0,0],[1,4,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,0],[1,3,3,2],[3,3,3,1],[1,0,2,0]],[[1,1,0,0],[1,3,3,2],[2,4,3,1],[1,0,2,0]],[[1,1,0,0],[1,3,3,2],[2,3,4,1],[1,0,2,0]],[[1,1,0,0],[1,3,3,2],[2,3,3,1],[2,0,2,0]],[[1,1,0,0],[1,3,3,2],[2,3,3,1],[1,0,3,0]],[[1,1,0,0],[1,4,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,0],[1,3,3,2],[3,3,3,1],[1,1,0,1]],[[1,1,0,0],[1,3,3,2],[2,4,3,1],[1,1,0,1]],[[1,1,0,0],[1,3,3,2],[2,3,4,1],[1,1,0,1]],[[1,1,0,0],[1,3,3,2],[2,3,3,1],[2,1,0,1]],[[1,1,0,0],[1,4,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,0],[1,3,3,2],[3,3,3,1],[1,1,1,0]],[[1,1,0,0],[1,3,3,2],[2,4,3,1],[1,1,1,0]],[[1,1,0,0],[1,3,3,2],[2,3,4,1],[1,1,1,0]],[[1,1,0,0],[1,3,3,2],[2,3,3,1],[2,1,1,0]],[[1,1,0,0],[1,4,3,2],[2,3,3,1],[1,2,0,0]],[[1,1,0,0],[1,3,3,2],[3,3,3,1],[1,2,0,0]],[[1,1,0,0],[1,3,3,2],[2,4,3,1],[1,2,0,0]],[[1,1,0,0],[1,3,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[0,3,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,1,1],[0,3,3,0],[1,3,2,2],[2,2,1,0]],[[1,2,1,1],[0,3,3,0],[1,4,2,2],[1,2,1,0]],[[1,2,1,1],[0,3,4,0],[1,3,2,2],[1,2,1,0]],[[1,2,1,1],[0,4,3,0],[1,3,2,2],[1,2,1,0]],[[1,3,1,1],[0,3,3,0],[1,3,2,2],[1,2,1,0]],[[2,2,1,1],[0,3,3,0],[1,3,2,2],[1,2,1,0]],[[1,2,1,1],[0,3,3,0],[1,3,2,2],[1,3,0,1]],[[1,2,1,1],[0,3,3,0],[1,3,2,2],[2,2,0,1]],[[1,2,1,1],[0,3,3,0],[1,4,2,2],[1,2,0,1]],[[1,2,1,1],[0,3,4,0],[1,3,2,2],[1,2,0,1]],[[1,2,1,1],[0,4,3,0],[1,3,2,2],[1,2,0,1]],[[1,3,1,1],[0,3,3,0],[1,3,2,2],[1,2,0,1]],[[2,2,1,1],[0,3,3,0],[1,3,2,2],[1,2,0,1]],[[1,2,1,1],[0,3,3,0],[1,4,2,2],[1,1,2,0]],[[1,2,1,1],[0,3,4,0],[1,3,2,2],[1,1,2,0]],[[1,2,1,1],[0,4,3,0],[1,3,2,2],[1,1,2,0]],[[1,3,1,1],[0,3,3,0],[1,3,2,2],[1,1,2,0]],[[2,2,1,1],[0,3,3,0],[1,3,2,2],[1,1,2,0]],[[1,2,1,1],[0,3,3,0],[1,4,2,2],[1,1,1,1]],[[1,2,1,1],[0,3,4,0],[1,3,2,2],[1,1,1,1]],[[1,2,1,1],[0,4,3,0],[1,3,2,2],[1,1,1,1]],[[1,3,1,1],[0,3,3,0],[1,3,2,2],[1,1,1,1]],[[2,2,1,1],[0,3,3,0],[1,3,2,2],[1,1,1,1]],[[1,2,1,1],[0,3,3,0],[1,3,2,1],[1,3,1,1]],[[1,2,1,1],[0,3,3,0],[1,3,2,1],[2,2,1,1]],[[1,2,1,1],[0,3,3,0],[1,4,2,1],[1,2,1,1]],[[1,2,1,1],[0,3,4,0],[1,3,2,1],[1,2,1,1]],[[1,2,1,1],[0,4,3,0],[1,3,2,1],[1,2,1,1]],[[1,3,1,1],[0,3,3,0],[1,3,2,1],[1,2,1,1]],[[2,2,1,1],[0,3,3,0],[1,3,2,1],[1,2,1,1]],[[1,2,1,1],[0,3,3,0],[1,4,2,1],[1,1,2,1]],[[1,2,1,1],[0,3,4,0],[1,3,2,1],[1,1,2,1]],[[1,2,1,1],[0,4,3,0],[1,3,2,1],[1,1,2,1]],[[1,3,1,1],[0,3,3,0],[1,3,2,1],[1,1,2,1]],[[2,2,1,1],[0,3,3,0],[1,3,2,1],[1,1,2,1]],[[1,2,1,1],[0,3,3,0],[1,3,1,2],[1,2,3,0]],[[1,2,1,1],[0,3,3,0],[1,3,1,2],[1,3,2,0]],[[1,2,1,1],[0,3,3,0],[1,3,1,2],[2,2,2,0]],[[1,2,1,1],[0,3,3,0],[1,4,1,2],[1,2,2,0]],[[1,2,1,1],[0,3,4,0],[1,3,1,2],[1,2,2,0]],[[1,2,1,1],[0,4,3,0],[1,3,1,2],[1,2,2,0]],[[1,3,1,1],[0,3,3,0],[1,3,1,2],[1,2,2,0]],[[2,2,1,1],[0,3,3,0],[1,3,1,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,0],[1,3,1,1],[1,2,2,2]],[[1,2,1,1],[0,3,3,0],[1,3,1,1],[1,2,3,1]],[[1,2,1,1],[0,3,3,0],[1,3,1,1],[1,3,2,1]],[[1,2,1,1],[0,3,3,0],[1,3,1,1],[2,2,2,1]],[[1,2,1,1],[0,3,3,0],[1,4,1,1],[1,2,2,1]],[[1,2,1,1],[0,3,4,0],[1,3,1,1],[1,2,2,1]],[[1,2,1,1],[0,4,3,0],[1,3,1,1],[1,2,2,1]],[[1,3,1,1],[0,3,3,0],[1,3,1,1],[1,2,2,1]],[[2,2,1,1],[0,3,3,0],[1,3,1,1],[1,2,2,1]],[[1,2,1,1],[0,3,3,0],[1,3,0,2],[1,2,2,2]],[[1,2,1,1],[0,3,3,0],[1,3,0,2],[1,2,3,1]],[[1,2,1,1],[0,3,3,0],[1,3,0,2],[1,3,2,1]],[[1,2,1,1],[0,3,3,0],[1,3,0,2],[2,2,2,1]],[[1,2,1,1],[0,3,3,0],[1,3,0,3],[1,2,2,1]],[[1,2,1,1],[0,3,3,0],[1,4,0,2],[1,2,2,1]],[[1,2,1,1],[0,3,4,0],[1,3,0,2],[1,2,2,1]],[[1,2,1,1],[0,4,3,0],[1,3,0,2],[1,2,2,1]],[[1,1,0,0],[2,0,1,2],[3,3,3,2],[1,2,2,1]],[[1,1,0,0],[2,0,1,2],[2,3,3,2],[2,2,2,1]],[[1,1,0,0],[2,0,1,2],[2,3,3,2],[1,3,2,1]],[[1,1,0,0],[2,0,1,2],[2,3,3,2],[1,2,3,1]],[[1,1,0,0],[2,0,1,2],[2,3,3,2],[1,2,2,2]],[[1,1,0,0],[2,0,3,0],[3,3,3,2],[1,2,2,1]],[[1,1,0,0],[2,0,3,0],[2,3,3,2],[2,2,2,1]],[[1,1,0,0],[2,0,3,0],[2,3,3,2],[1,3,2,1]],[[1,1,0,0],[2,0,3,0],[2,3,3,2],[1,2,3,1]],[[1,1,0,0],[2,0,3,0],[2,3,3,2],[1,2,2,2]],[[1,1,0,0],[2,0,3,1],[3,3,3,1],[1,2,2,1]],[[1,1,0,0],[2,0,3,1],[2,3,3,1],[2,2,2,1]],[[1,1,0,0],[2,0,3,1],[2,3,3,1],[1,3,2,1]],[[1,1,0,0],[2,0,3,1],[2,3,3,1],[1,2,3,1]],[[1,1,0,0],[2,0,3,1],[2,3,3,1],[1,2,2,2]],[[1,1,0,0],[2,0,3,1],[3,3,3,2],[1,2,2,0]],[[1,1,0,0],[2,0,3,1],[2,3,3,2],[2,2,2,0]],[[1,1,0,0],[2,0,3,1],[2,3,3,2],[1,3,2,0]],[[1,1,0,0],[2,0,3,1],[2,3,3,2],[1,2,3,0]],[[1,3,1,1],[0,3,3,0],[1,3,0,2],[1,2,2,1]],[[2,2,1,1],[0,3,3,0],[1,3,0,2],[1,2,2,1]],[[1,1,0,0],[2,1,0,2],[3,3,3,2],[1,2,2,1]],[[1,1,0,0],[2,1,0,2],[2,3,3,2],[2,2,2,1]],[[1,1,0,0],[2,1,0,2],[2,3,3,2],[1,3,2,1]],[[1,1,0,0],[2,1,0,2],[2,3,3,2],[1,2,3,1]],[[1,1,0,0],[2,1,0,2],[2,3,3,2],[1,2,2,2]],[[1,1,0,0],[2,1,2,0],[3,3,3,2],[1,2,2,1]],[[1,1,0,0],[2,1,2,0],[2,3,3,2],[2,2,2,1]],[[1,1,0,0],[2,1,2,0],[2,3,3,2],[1,3,2,1]],[[1,1,0,0],[2,1,2,0],[2,3,3,2],[1,2,3,1]],[[1,1,0,0],[2,1,2,0],[2,3,3,2],[1,2,2,2]],[[1,1,0,0],[2,1,2,1],[3,3,3,1],[1,2,2,1]],[[1,1,0,0],[2,1,2,1],[2,3,3,1],[2,2,2,1]],[[1,1,0,0],[2,1,2,1],[2,3,3,1],[1,3,2,1]],[[1,1,0,0],[2,1,2,1],[2,3,3,1],[1,2,3,1]],[[1,1,0,0],[2,1,2,1],[2,3,3,1],[1,2,2,2]],[[1,1,0,0],[2,1,2,1],[3,3,3,2],[1,2,2,0]],[[1,1,0,0],[2,1,2,1],[2,3,3,2],[2,2,2,0]],[[1,1,0,0],[2,1,2,1],[2,3,3,2],[1,3,2,0]],[[1,1,0,0],[2,1,2,1],[2,3,3,2],[1,2,3,0]],[[1,1,0,0],[2,1,3,0],[3,3,2,2],[1,2,2,1]],[[1,1,0,0],[2,1,3,0],[2,3,2,2],[2,2,2,1]],[[1,1,0,0],[2,1,3,0],[2,3,2,2],[1,3,2,1]],[[1,1,0,0],[2,1,3,0],[2,3,2,2],[1,2,3,1]],[[1,1,0,0],[2,1,3,0],[2,3,2,2],[1,2,2,2]],[[1,1,0,0],[2,1,3,0],[3,3,3,2],[1,2,1,1]],[[1,1,0,0],[2,1,3,0],[2,3,3,2],[2,2,1,1]],[[1,1,0,0],[2,1,3,0],[2,3,3,2],[1,3,1,1]],[[1,1,0,0],[2,1,3,1],[3,3,1,2],[1,2,2,1]],[[1,1,0,0],[2,1,3,1],[2,3,1,2],[2,2,2,1]],[[1,1,0,0],[2,1,3,1],[2,3,1,2],[1,3,2,1]],[[1,1,0,0],[2,1,3,1],[2,3,1,2],[1,2,3,1]],[[1,1,0,0],[2,1,3,1],[2,3,1,2],[1,2,2,2]],[[1,1,0,0],[2,1,3,1],[3,3,2,1],[1,2,2,1]],[[1,1,0,0],[2,1,3,1],[2,3,2,1],[2,2,2,1]],[[1,1,0,0],[2,1,3,1],[2,3,2,1],[1,3,2,1]],[[1,1,0,0],[2,1,3,1],[2,3,2,1],[1,2,3,1]],[[1,1,0,0],[2,1,3,1],[2,3,2,1],[1,2,2,2]],[[1,1,0,0],[2,1,3,1],[3,3,2,2],[1,2,2,0]],[[1,1,0,0],[2,1,3,1],[2,3,2,2],[2,2,2,0]],[[1,1,0,0],[2,1,3,1],[2,3,2,2],[1,3,2,0]],[[1,1,0,0],[2,1,3,1],[2,3,2,2],[1,2,3,0]],[[1,1,0,0],[2,1,3,1],[3,3,3,0],[1,2,2,1]],[[1,1,0,0],[2,1,3,1],[2,3,3,0],[2,2,2,1]],[[1,1,0,0],[2,1,3,1],[2,3,3,0],[1,3,2,1]],[[1,1,0,0],[2,1,3,1],[2,3,3,0],[1,2,3,1]],[[1,1,0,0],[2,1,3,1],[3,3,3,1],[1,2,1,1]],[[1,1,0,0],[2,1,3,1],[2,3,3,1],[2,2,1,1]],[[1,1,0,0],[2,1,3,1],[2,3,3,1],[1,3,1,1]],[[1,1,0,0],[2,1,3,1],[3,3,3,2],[1,2,0,1]],[[1,1,0,0],[2,1,3,1],[2,3,3,2],[2,2,0,1]],[[1,1,0,0],[2,1,3,1],[2,3,3,2],[1,3,0,1]],[[1,1,0,0],[2,1,3,1],[3,3,3,2],[1,2,1,0]],[[1,1,0,0],[2,1,3,1],[2,3,3,2],[2,2,1,0]],[[1,1,0,0],[2,1,3,1],[2,3,3,2],[1,3,1,0]],[[1,1,0,0],[2,1,3,2],[3,3,2,0],[1,2,2,1]],[[1,1,0,0],[2,1,3,2],[2,3,2,0],[2,2,2,1]],[[1,1,0,0],[2,1,3,2],[2,3,2,0],[1,3,2,1]],[[1,1,0,0],[2,1,3,2],[2,3,2,0],[1,2,3,1]],[[1,1,0,0],[2,1,3,2],[3,3,2,1],[1,2,2,0]],[[1,1,0,0],[2,1,3,2],[2,3,2,1],[2,2,2,0]],[[1,1,0,0],[2,1,3,2],[2,3,2,1],[1,3,2,0]],[[1,2,1,1],[0,3,3,0],[1,2,3,3],[1,2,1,0]],[[1,2,1,1],[0,3,3,0],[1,2,4,2],[1,2,1,0]],[[1,1,0,0],[2,1,3,2],[3,3,3,0],[1,2,1,1]],[[1,1,0,0],[2,1,3,2],[2,3,3,0],[2,2,1,1]],[[1,1,0,0],[2,1,3,2],[2,3,3,0],[1,3,1,1]],[[1,1,0,0],[2,1,3,2],[3,3,3,1],[1,2,1,0]],[[1,1,0,0],[2,1,3,2],[2,3,3,1],[2,2,1,0]],[[1,1,0,0],[2,1,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,3,4,0],[1,2,3,2],[1,2,1,0]],[[1,2,1,1],[0,4,3,0],[1,2,3,2],[1,2,1,0]],[[1,3,1,1],[0,3,3,0],[1,2,3,2],[1,2,1,0]],[[2,2,1,1],[0,3,3,0],[1,2,3,2],[1,2,1,0]],[[1,2,1,1],[0,3,3,0],[1,2,3,2],[1,2,0,2]],[[1,2,1,1],[0,3,3,0],[1,2,3,3],[1,2,0,1]],[[1,2,1,1],[0,3,3,0],[1,2,4,2],[1,2,0,1]],[[1,2,1,1],[0,3,4,0],[1,2,3,2],[1,2,0,1]],[[1,2,1,1],[0,4,3,0],[1,2,3,2],[1,2,0,1]],[[1,3,1,1],[0,3,3,0],[1,2,3,2],[1,2,0,1]],[[2,2,1,1],[0,3,3,0],[1,2,3,2],[1,2,0,1]],[[1,1,0,0],[2,2,0,2],[1,4,3,2],[1,2,2,1]],[[1,1,0,0],[2,2,0,2],[1,3,3,2],[2,2,2,1]],[[1,1,0,0],[2,2,0,2],[1,3,3,2],[1,3,2,1]],[[1,1,0,0],[2,2,0,2],[1,3,3,2],[1,2,3,1]],[[1,1,0,0],[2,2,0,2],[1,3,3,2],[1,2,2,2]],[[1,1,0,0],[3,2,0,2],[2,2,3,2],[1,2,2,1]],[[1,1,0,0],[2,2,0,2],[3,2,3,2],[1,2,2,1]],[[1,1,0,0],[2,2,0,2],[2,2,3,2],[2,2,2,1]],[[1,1,0,0],[2,2,0,2],[2,2,3,2],[1,3,2,1]],[[1,1,0,0],[2,2,0,2],[2,2,3,2],[1,2,3,1]],[[1,1,0,0],[2,2,0,2],[2,2,3,2],[1,2,2,2]],[[1,1,0,0],[3,2,0,2],[2,3,3,2],[0,2,2,1]],[[1,1,0,0],[2,2,0,2],[3,3,3,2],[0,2,2,1]],[[1,1,0,0],[2,2,0,2],[2,4,3,2],[0,2,2,1]],[[1,1,0,0],[2,2,0,2],[2,3,3,2],[0,3,2,1]],[[1,1,0,0],[2,2,0,2],[2,3,3,2],[0,2,3,1]],[[1,1,0,0],[2,2,0,2],[2,3,3,2],[0,2,2,2]],[[1,1,0,0],[3,2,0,2],[2,3,3,2],[1,1,2,1]],[[1,1,0,0],[2,2,0,2],[3,3,3,2],[1,1,2,1]],[[1,1,0,0],[2,2,0,2],[2,4,3,2],[1,1,2,1]],[[1,1,0,0],[2,2,0,2],[2,3,3,2],[2,1,2,1]],[[1,2,1,1],[0,3,3,0],[1,2,3,2],[1,1,3,0]],[[1,2,1,1],[0,3,3,0],[1,2,3,3],[1,1,2,0]],[[1,2,1,1],[0,3,3,0],[1,2,4,2],[1,1,2,0]],[[1,2,1,1],[0,3,4,0],[1,2,3,2],[1,1,2,0]],[[1,2,1,1],[0,4,3,0],[1,2,3,2],[1,1,2,0]],[[1,1,0,0],[2,2,2,0],[1,4,3,2],[1,2,2,1]],[[1,1,0,0],[2,2,2,0],[1,3,3,2],[2,2,2,1]],[[1,1,0,0],[2,2,2,0],[1,3,3,2],[1,3,2,1]],[[1,1,0,0],[2,2,2,0],[1,3,3,2],[1,2,3,1]],[[1,1,0,0],[2,2,2,0],[1,3,3,2],[1,2,2,2]],[[1,1,0,0],[3,2,2,0],[2,2,3,2],[1,2,2,1]],[[1,1,0,0],[2,2,2,0],[3,2,3,2],[1,2,2,1]],[[1,1,0,0],[2,2,2,0],[2,2,3,2],[2,2,2,1]],[[1,1,0,0],[2,2,2,0],[2,2,3,2],[1,3,2,1]],[[1,1,0,0],[2,2,2,0],[2,2,3,2],[1,2,3,1]],[[1,1,0,0],[2,2,2,0],[2,2,3,2],[1,2,2,2]],[[1,1,0,0],[3,2,2,0],[2,3,3,2],[0,2,2,1]],[[1,1,0,0],[2,2,2,0],[3,3,3,2],[0,2,2,1]],[[1,1,0,0],[2,2,2,0],[2,4,3,2],[0,2,2,1]],[[1,1,0,0],[2,2,2,0],[2,3,3,2],[0,3,2,1]],[[1,1,0,0],[2,2,2,0],[2,3,3,2],[0,2,3,1]],[[1,1,0,0],[2,2,2,0],[2,3,3,2],[0,2,2,2]],[[1,1,0,0],[3,2,2,0],[2,3,3,2],[1,1,2,1]],[[1,1,0,0],[2,2,2,0],[3,3,3,2],[1,1,2,1]],[[1,1,0,0],[2,2,2,0],[2,4,3,2],[1,1,2,1]],[[1,1,0,0],[2,2,2,0],[2,3,3,2],[2,1,2,1]],[[1,1,0,0],[2,2,2,1],[1,4,3,1],[1,2,2,1]],[[1,1,0,0],[2,2,2,1],[1,3,3,1],[2,2,2,1]],[[1,1,0,0],[2,2,2,1],[1,3,3,1],[1,3,2,1]],[[1,1,0,0],[2,2,2,1],[1,3,3,1],[1,2,3,1]],[[1,1,0,0],[2,2,2,1],[1,3,3,1],[1,2,2,2]],[[1,1,0,0],[2,2,2,1],[1,4,3,2],[1,2,2,0]],[[1,1,0,0],[2,2,2,1],[1,3,3,2],[2,2,2,0]],[[1,1,0,0],[2,2,2,1],[1,3,3,2],[1,3,2,0]],[[1,1,0,0],[2,2,2,1],[1,3,3,2],[1,2,3,0]],[[1,1,0,0],[3,2,2,1],[2,2,3,1],[1,2,2,1]],[[1,1,0,0],[2,2,2,1],[3,2,3,1],[1,2,2,1]],[[1,1,0,0],[2,2,2,1],[2,2,3,1],[2,2,2,1]],[[1,1,0,0],[2,2,2,1],[2,2,3,1],[1,3,2,1]],[[1,1,0,0],[2,2,2,1],[2,2,3,1],[1,2,3,1]],[[1,1,0,0],[2,2,2,1],[2,2,3,1],[1,2,2,2]],[[1,1,0,0],[3,2,2,1],[2,2,3,2],[1,2,2,0]],[[1,1,0,0],[2,2,2,1],[3,2,3,2],[1,2,2,0]],[[1,1,0,0],[2,2,2,1],[2,2,3,2],[2,2,2,0]],[[1,1,0,0],[2,2,2,1],[2,2,3,2],[1,3,2,0]],[[1,1,0,0],[2,2,2,1],[2,2,3,2],[1,2,3,0]],[[1,1,0,0],[3,2,2,1],[2,3,3,1],[0,2,2,1]],[[1,1,0,0],[2,2,2,1],[3,3,3,1],[0,2,2,1]],[[1,1,0,0],[2,2,2,1],[2,4,3,1],[0,2,2,1]],[[1,1,0,0],[2,2,2,1],[2,3,3,1],[0,3,2,1]],[[1,1,0,0],[2,2,2,1],[2,3,3,1],[0,2,3,1]],[[1,1,0,0],[2,2,2,1],[2,3,3,1],[0,2,2,2]],[[1,1,0,0],[3,2,2,1],[2,3,3,1],[1,1,2,1]],[[1,1,0,0],[2,2,2,1],[3,3,3,1],[1,1,2,1]],[[1,1,0,0],[2,2,2,1],[2,4,3,1],[1,1,2,1]],[[1,1,0,0],[2,2,2,1],[2,3,3,1],[2,1,2,1]],[[1,1,0,0],[3,2,2,1],[2,3,3,2],[0,2,2,0]],[[1,1,0,0],[2,2,2,1],[3,3,3,2],[0,2,2,0]],[[1,1,0,0],[2,2,2,1],[2,4,3,2],[0,2,2,0]],[[1,1,0,0],[2,2,2,1],[2,3,3,2],[0,3,2,0]],[[1,1,0,0],[2,2,2,1],[2,3,3,2],[0,2,3,0]],[[1,1,0,0],[3,2,2,1],[2,3,3,2],[1,1,2,0]],[[1,1,0,0],[2,2,2,1],[3,3,3,2],[1,1,2,0]],[[1,1,0,0],[2,2,2,1],[2,4,3,2],[1,1,2,0]],[[1,1,0,0],[2,2,2,1],[2,3,3,2],[2,1,2,0]],[[1,3,1,1],[0,3,3,0],[1,2,3,2],[1,1,2,0]],[[2,2,1,1],[0,3,3,0],[1,2,3,2],[1,1,2,0]],[[1,2,1,1],[0,3,3,0],[1,2,3,2],[1,1,1,2]],[[1,2,1,1],[0,3,3,0],[1,2,3,3],[1,1,1,1]],[[1,2,1,1],[0,3,3,0],[1,2,4,2],[1,1,1,1]],[[1,2,1,1],[0,3,4,0],[1,2,3,2],[1,1,1,1]],[[1,2,1,1],[0,4,3,0],[1,2,3,2],[1,1,1,1]],[[1,3,1,1],[0,3,3,0],[1,2,3,2],[1,1,1,1]],[[2,2,1,1],[0,3,3,0],[1,2,3,2],[1,1,1,1]],[[1,2,1,1],[0,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,1,1],[0,3,3,0],[1,2,3,3],[1,0,2,1]],[[1,2,1,1],[0,3,3,0],[1,2,4,2],[1,0,2,1]],[[1,2,1,1],[0,3,4,0],[1,2,3,2],[1,0,2,1]],[[1,2,1,1],[0,3,3,0],[1,2,4,1],[1,2,1,1]],[[1,2,1,1],[0,3,4,0],[1,2,3,1],[1,2,1,1]],[[1,2,1,1],[0,4,3,0],[1,2,3,1],[1,2,1,1]],[[1,3,1,1],[0,3,3,0],[1,2,3,1],[1,2,1,1]],[[2,2,1,1],[0,3,3,0],[1,2,3,1],[1,2,1,1]],[[1,2,1,1],[0,3,3,0],[1,2,3,1],[1,1,2,2]],[[1,2,1,1],[0,3,3,0],[1,2,3,1],[1,1,3,1]],[[1,2,1,1],[0,3,3,0],[1,2,4,1],[1,1,2,1]],[[1,2,1,1],[0,3,4,0],[1,2,3,1],[1,1,2,1]],[[1,2,1,1],[0,4,3,0],[1,2,3,1],[1,1,2,1]],[[1,3,1,1],[0,3,3,0],[1,2,3,1],[1,1,2,1]],[[2,2,1,1],[0,3,3,0],[1,2,3,1],[1,1,2,1]],[[1,2,1,1],[0,3,3,0],[1,2,2,2],[1,1,2,2]],[[1,2,1,1],[0,3,3,0],[1,2,2,2],[1,1,3,1]],[[1,2,1,1],[0,3,3,0],[1,2,2,3],[1,1,2,1]],[[1,1,0,0],[2,2,3,0],[1,2,4,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,0],[1,2,3,2],[2,2,2,1]],[[1,1,0,0],[2,2,3,0],[1,2,3,2],[1,3,2,1]],[[1,1,0,0],[2,2,3,0],[1,2,3,2],[1,2,3,1]],[[1,1,0,0],[2,2,3,0],[1,2,3,2],[1,2,2,2]],[[1,1,0,0],[2,2,3,0],[1,4,2,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,0],[1,3,2,2],[2,2,2,1]],[[1,1,0,0],[2,2,3,0],[1,3,2,2],[1,3,2,1]],[[1,1,0,0],[2,2,3,0],[1,3,2,2],[1,2,3,1]],[[1,1,0,0],[2,2,3,0],[1,3,2,2],[1,2,2,2]],[[1,1,0,0],[2,2,3,0],[1,4,3,2],[1,1,2,1]],[[1,1,0,0],[2,2,3,0],[1,3,4,2],[1,1,2,1]],[[1,1,0,0],[2,2,3,0],[1,3,3,2],[1,1,3,1]],[[1,1,0,0],[2,2,3,0],[1,3,3,2],[1,1,2,2]],[[1,1,0,0],[2,2,3,0],[1,4,3,2],[1,2,1,1]],[[1,1,0,0],[2,2,3,0],[1,3,4,2],[1,2,1,1]],[[1,1,0,0],[2,2,3,0],[1,3,3,2],[2,2,1,1]],[[1,1,0,0],[2,2,3,0],[1,3,3,2],[1,3,1,1]],[[2,1,0,0],[2,2,3,0],[2,1,3,2],[1,2,2,1]],[[1,1,0,0],[3,2,3,0],[2,1,3,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,0],[3,1,3,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,0],[2,1,4,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,0],[2,1,3,2],[2,2,2,1]],[[1,1,0,0],[2,2,3,0],[2,1,3,2],[1,3,2,1]],[[1,1,0,0],[2,2,3,0],[2,1,3,2],[1,2,3,1]],[[1,1,0,0],[2,2,3,0],[2,1,3,2],[1,2,2,2]],[[2,1,0,0],[2,2,3,0],[2,2,2,2],[1,2,2,1]],[[1,1,0,0],[3,2,3,0],[2,2,2,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,0],[3,2,2,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,0],[2,2,2,2],[2,2,2,1]],[[1,1,0,0],[2,2,3,0],[2,2,2,2],[1,3,2,1]],[[1,1,0,0],[2,2,3,0],[2,2,2,2],[1,2,3,1]],[[1,1,0,0],[2,2,3,0],[2,2,2,2],[1,2,2,2]],[[1,1,0,0],[2,2,3,0],[2,2,4,2],[0,2,2,1]],[[1,1,0,0],[2,2,3,0],[2,2,3,2],[0,3,2,1]],[[1,1,0,0],[2,2,3,0],[2,2,3,2],[0,2,3,1]],[[1,1,0,0],[2,2,3,0],[2,2,3,2],[0,2,2,2]],[[2,1,0,0],[2,2,3,0],[2,2,3,2],[1,2,1,1]],[[1,1,0,0],[3,2,3,0],[2,2,3,2],[1,2,1,1]],[[1,1,0,0],[2,2,3,0],[3,2,3,2],[1,2,1,1]],[[1,1,0,0],[2,2,3,0],[2,2,3,2],[2,2,1,1]],[[1,1,0,0],[2,2,3,0],[2,2,3,2],[1,3,1,1]],[[1,1,0,0],[3,2,3,0],[2,3,1,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,0],[3,3,1,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,0],[2,3,1,2],[2,2,2,1]],[[1,1,0,0],[2,2,3,0],[2,3,1,2],[1,3,2,1]],[[2,1,0,0],[2,2,3,0],[2,3,2,2],[0,2,2,1]],[[1,1,0,0],[3,2,3,0],[2,3,2,2],[0,2,2,1]],[[1,1,0,0],[2,2,3,0],[3,3,2,2],[0,2,2,1]],[[1,1,0,0],[2,2,3,0],[2,4,2,2],[0,2,2,1]],[[1,1,0,0],[2,2,3,0],[2,3,2,2],[0,3,2,1]],[[1,1,0,0],[2,2,3,0],[2,3,2,2],[0,2,3,1]],[[1,1,0,0],[2,2,3,0],[2,3,2,2],[0,2,2,2]],[[2,1,0,0],[2,2,3,0],[2,3,2,2],[1,1,2,1]],[[1,1,0,0],[3,2,3,0],[2,3,2,2],[1,1,2,1]],[[1,1,0,0],[2,2,3,0],[3,3,2,2],[1,1,2,1]],[[1,1,0,0],[2,2,3,0],[2,4,2,2],[1,1,2,1]],[[1,1,0,0],[2,2,3,0],[2,3,2,2],[2,1,2,1]],[[2,1,0,0],[2,2,3,0],[2,3,3,2],[0,1,2,1]],[[1,1,0,0],[3,2,3,0],[2,3,3,2],[0,1,2,1]],[[1,1,0,0],[2,2,3,0],[3,3,3,2],[0,1,2,1]],[[1,1,0,0],[2,2,3,0],[2,4,3,2],[0,1,2,1]],[[1,1,0,0],[2,2,3,0],[2,3,4,2],[0,1,2,1]],[[1,1,0,0],[2,2,3,0],[2,3,3,2],[0,1,3,1]],[[1,1,0,0],[2,2,3,0],[2,3,3,2],[0,1,2,2]],[[2,1,0,0],[2,2,3,0],[2,3,3,2],[0,2,1,1]],[[1,1,0,0],[3,2,3,0],[2,3,3,2],[0,2,1,1]],[[1,1,0,0],[2,2,3,0],[3,3,3,2],[0,2,1,1]],[[1,1,0,0],[2,2,3,0],[2,4,3,2],[0,2,1,1]],[[1,1,0,0],[2,2,3,0],[2,3,4,2],[0,2,1,1]],[[1,1,0,0],[2,2,3,0],[2,3,3,2],[0,3,1,1]],[[2,1,0,0],[2,2,3,0],[2,3,3,2],[1,0,2,1]],[[1,1,0,0],[3,2,3,0],[2,3,3,2],[1,0,2,1]],[[1,1,0,0],[2,2,3,0],[3,3,3,2],[1,0,2,1]],[[1,1,0,0],[2,2,3,0],[2,4,3,2],[1,0,2,1]],[[1,1,0,0],[2,2,3,0],[2,3,4,2],[1,0,2,1]],[[1,1,0,0],[2,2,3,0],[2,3,3,2],[2,0,2,1]],[[1,1,0,0],[2,2,3,0],[2,3,3,2],[1,0,3,1]],[[1,1,0,0],[2,2,3,0],[2,3,3,2],[1,0,2,2]],[[2,1,0,0],[2,2,3,0],[2,3,3,2],[1,1,1,1]],[[1,1,0,0],[3,2,3,0],[2,3,3,2],[1,1,1,1]],[[1,1,0,0],[2,2,3,0],[3,3,3,2],[1,1,1,1]],[[1,1,0,0],[2,2,3,0],[2,4,3,2],[1,1,1,1]],[[1,1,0,0],[2,2,3,0],[2,3,4,2],[1,1,1,1]],[[1,1,0,0],[2,2,3,0],[2,3,3,2],[2,1,1,1]],[[1,1,0,0],[3,2,3,0],[2,3,3,2],[1,2,0,1]],[[1,1,0,0],[2,2,3,0],[3,3,3,2],[1,2,0,1]],[[1,1,0,0],[2,2,3,0],[2,4,3,2],[1,2,0,1]],[[1,1,0,0],[2,2,3,0],[2,3,3,2],[2,2,0,1]],[[1,2,1,1],[0,3,3,0],[1,1,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,3,0],[1,1,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,3,0],[1,1,3,2],[2,2,2,0]],[[1,2,1,1],[0,3,3,0],[1,1,3,3],[1,2,2,0]],[[1,2,1,1],[0,3,3,0],[1,1,4,2],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[1,2,2,3],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[1,2,2,2],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[1,2,2,2],[1,3,2,1]],[[1,1,0,0],[2,2,3,1],[1,2,2,2],[1,2,3,1]],[[1,1,0,0],[2,2,3,1],[1,2,2,2],[1,2,2,2]],[[1,1,0,0],[2,2,3,1],[1,2,4,1],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[1,2,3,1],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[1,2,3,1],[1,3,2,1]],[[1,1,0,0],[2,2,3,1],[1,2,3,1],[1,2,3,1]],[[1,1,0,0],[2,2,3,1],[1,2,3,1],[1,2,2,2]],[[1,1,0,0],[2,2,3,1],[1,2,4,2],[1,2,1,1]],[[1,1,0,0],[2,2,3,1],[1,2,3,3],[1,2,1,1]],[[1,1,0,0],[2,2,3,1],[1,2,3,2],[1,2,1,2]],[[1,1,0,0],[2,2,3,1],[1,2,4,2],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[1,2,3,3],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[1,2,3,2],[2,2,2,0]],[[1,1,0,0],[2,2,3,1],[1,2,3,2],[1,3,2,0]],[[1,1,0,0],[2,2,3,1],[1,2,3,2],[1,2,3,0]],[[1,1,0,0],[2,2,3,1],[1,4,1,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,1,3],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,1,2],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,1,2],[1,3,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,1,2],[1,2,3,1]],[[1,1,0,0],[2,2,3,1],[1,3,1,2],[1,2,2,2]],[[1,1,0,0],[2,2,3,1],[1,4,2,1],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,2,1],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,2,1],[1,3,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,2,1],[1,2,3,1]],[[1,1,0,0],[2,2,3,1],[1,3,2,1],[1,2,2,2]],[[1,1,0,0],[2,2,3,1],[1,3,2,3],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,2,2],[1,1,3,1]],[[1,1,0,0],[2,2,3,1],[1,3,2,2],[1,1,2,2]],[[1,1,0,0],[2,2,3,1],[1,4,2,2],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[1,3,2,2],[2,2,2,0]],[[1,1,0,0],[2,2,3,1],[1,3,2,2],[1,3,2,0]],[[1,1,0,0],[2,2,3,1],[1,3,2,2],[1,2,3,0]],[[1,1,0,0],[2,2,3,1],[1,4,3,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,0],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,0],[1,3,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,0],[1,2,3,1]],[[1,1,0,0],[2,2,3,1],[1,4,3,1],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,4,1],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,1],[1,1,3,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,1],[1,1,2,2]],[[1,1,0,0],[2,2,3,1],[1,4,3,1],[1,2,1,1]],[[1,1,0,0],[2,2,3,1],[1,3,4,1],[1,2,1,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,1],[2,2,1,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,1],[1,3,1,1]],[[1,1,0,0],[2,2,3,1],[1,4,3,2],[1,1,1,1]],[[1,1,0,0],[2,2,3,1],[1,3,4,2],[1,1,1,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,3],[1,1,1,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,2],[1,1,1,2]],[[1,1,0,0],[2,2,3,1],[1,4,3,2],[1,1,2,0]],[[1,1,0,0],[2,2,3,1],[1,3,4,2],[1,1,2,0]],[[1,1,0,0],[2,2,3,1],[1,3,3,3],[1,1,2,0]],[[1,1,0,0],[2,2,3,1],[1,3,3,2],[1,1,3,0]],[[1,1,0,0],[2,2,3,1],[1,4,3,2],[1,2,0,1]],[[1,1,0,0],[2,2,3,1],[1,3,4,2],[1,2,0,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,3],[1,2,0,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,2],[2,2,0,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,2],[1,3,0,1]],[[1,1,0,0],[2,2,3,1],[1,3,3,2],[1,2,0,2]],[[1,1,0,0],[2,2,3,1],[1,4,3,2],[1,2,1,0]],[[1,1,0,0],[2,2,3,1],[1,3,4,2],[1,2,1,0]],[[1,1,0,0],[2,2,3,1],[1,3,3,3],[1,2,1,0]],[[1,1,0,0],[2,2,3,1],[1,3,3,2],[2,2,1,0]],[[1,1,0,0],[2,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,4,0],[1,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,4,3,0],[1,1,3,2],[1,2,2,0]],[[1,3,1,1],[0,3,3,0],[1,1,3,2],[1,2,2,0]],[[2,2,1,1],[0,3,3,0],[1,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,3,0],[1,1,3,2],[1,2,1,2]],[[1,2,1,1],[0,3,3,0],[1,1,3,3],[1,2,1,1]],[[1,2,1,1],[0,3,3,0],[1,1,4,2],[1,2,1,1]],[[2,1,0,0],[2,2,3,1],[2,1,2,2],[1,2,2,1]],[[1,1,0,0],[3,2,3,1],[2,1,2,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[3,1,2,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,1,2,3],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,1,2,2],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,1,2,2],[1,3,2,1]],[[1,1,0,0],[2,2,3,1],[2,1,2,2],[1,2,3,1]],[[1,1,0,0],[2,2,3,1],[2,1,2,2],[1,2,2,2]],[[2,1,0,0],[2,2,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,0,0],[3,2,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[3,1,3,1],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,1,4,1],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,1,3,1],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,1,3,1],[1,3,2,1]],[[1,1,0,0],[2,2,3,1],[2,1,3,1],[1,2,3,1]],[[1,1,0,0],[2,2,3,1],[2,1,3,1],[1,2,2,2]],[[1,1,0,0],[2,2,3,1],[2,1,4,2],[1,2,1,1]],[[1,1,0,0],[2,2,3,1],[2,1,3,3],[1,2,1,1]],[[1,1,0,0],[2,2,3,1],[2,1,3,2],[1,2,1,2]],[[2,1,0,0],[2,2,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,0,0],[3,2,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[3,1,3,2],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,1,4,2],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,1,3,3],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,1,3,2],[2,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,1,3,2],[1,3,2,0]],[[1,1,0,0],[2,2,3,1],[2,1,3,2],[1,2,3,0]],[[2,1,0,0],[2,2,3,1],[2,2,1,2],[1,2,2,1]],[[1,1,0,0],[3,2,3,1],[2,2,1,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[3,2,1,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,1,3],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,1,2],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,1,2],[1,3,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,1,2],[1,2,3,1]],[[1,1,0,0],[2,2,3,1],[2,2,1,2],[1,2,2,2]],[[2,1,0,0],[2,2,3,1],[2,2,2,1],[1,2,2,1]],[[1,1,0,0],[3,2,3,1],[2,2,2,1],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[3,2,2,1],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,2,1],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,2,1],[1,3,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,2,1],[1,2,3,1]],[[1,1,0,0],[2,2,3,1],[2,2,2,1],[1,2,2,2]],[[1,1,0,0],[2,2,3,1],[2,2,2,3],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,2,2],[0,3,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,2,2],[0,2,3,1]],[[1,1,0,0],[2,2,3,1],[2,2,2,2],[0,2,2,2]],[[2,1,0,0],[2,2,3,1],[2,2,2,2],[1,2,2,0]],[[1,1,0,0],[3,2,3,1],[2,2,2,2],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[3,2,2,2],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,2,2,2],[2,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,2,2,2],[1,3,2,0]],[[1,1,0,0],[2,2,3,1],[2,2,2,2],[1,2,3,0]],[[2,1,0,0],[2,2,3,1],[2,2,3,0],[1,2,2,1]],[[1,1,0,0],[3,2,3,1],[2,2,3,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[3,2,3,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,0],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,0],[1,3,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,0],[1,2,3,1]],[[1,1,0,0],[2,2,3,1],[2,2,4,1],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,1],[0,3,2,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,1],[0,2,3,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,1],[0,2,2,2]],[[2,1,0,0],[2,2,3,1],[2,2,3,1],[1,2,1,1]],[[1,1,0,0],[3,2,3,1],[2,2,3,1],[1,2,1,1]],[[1,1,0,0],[2,2,3,1],[3,2,3,1],[1,2,1,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,1],[2,2,1,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,1],[1,3,1,1]],[[1,1,0,0],[2,2,3,1],[2,2,4,2],[0,2,1,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,3],[0,2,1,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,2],[0,2,1,2]],[[1,1,0,0],[2,2,3,1],[2,2,4,2],[0,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,2,3,3],[0,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,2,3,2],[0,3,2,0]],[[1,1,0,0],[2,2,3,1],[2,2,3,2],[0,2,3,0]],[[2,1,0,0],[2,2,3,1],[2,2,3,2],[1,2,0,1]],[[1,1,0,0],[3,2,3,1],[2,2,3,2],[1,2,0,1]],[[1,1,0,0],[2,2,3,1],[3,2,3,2],[1,2,0,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,2],[2,2,0,1]],[[1,1,0,0],[2,2,3,1],[2,2,3,2],[1,3,0,1]],[[2,1,0,0],[2,2,3,1],[2,2,3,2],[1,2,1,0]],[[1,1,0,0],[3,2,3,1],[2,2,3,2],[1,2,1,0]],[[1,1,0,0],[2,2,3,1],[3,2,3,2],[1,2,1,0]],[[1,1,0,0],[2,2,3,1],[2,2,3,2],[2,2,1,0]],[[1,1,0,0],[2,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,4,0],[1,1,3,2],[1,2,1,1]],[[1,2,1,1],[0,4,3,0],[1,1,3,2],[1,2,1,1]],[[1,3,1,1],[0,3,3,0],[1,1,3,2],[1,2,1,1]],[[2,2,1,1],[0,3,3,0],[1,1,3,2],[1,2,1,1]],[[1,2,1,1],[0,3,3,0],[1,1,3,1],[1,2,2,2]],[[1,2,1,1],[0,3,3,0],[1,1,3,1],[1,2,3,1]],[[1,2,1,1],[0,3,3,0],[1,1,3,1],[1,3,2,1]],[[1,2,1,1],[0,3,3,0],[1,1,3,1],[2,2,2,1]],[[1,2,1,1],[0,3,3,0],[1,1,4,1],[1,2,2,1]],[[1,1,0,0],[3,2,3,1],[2,3,0,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[3,3,0,2],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,0,2],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,0,2],[1,3,2,1]],[[1,1,0,0],[3,2,3,1],[2,3,1,1],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[3,3,1,1],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,1,1],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,1,1],[1,3,2,1]],[[2,1,0,0],[2,2,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,0,0],[3,2,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[3,3,1,2],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,4,1,2],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,1,3],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,1,2],[0,3,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,1,2],[0,2,3,1]],[[1,1,0,0],[2,2,3,1],[2,3,1,2],[0,2,2,2]],[[2,1,0,0],[2,2,3,1],[2,3,1,2],[1,1,2,1]],[[1,1,0,0],[3,2,3,1],[2,3,1,2],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[3,3,1,2],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[2,4,1,2],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,1,2],[2,1,2,1]],[[1,1,0,0],[3,2,3,1],[2,3,1,2],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[3,3,1,2],[1,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,1,2],[2,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,1,2],[1,3,2,0]],[[1,1,0,0],[3,2,3,1],[2,3,2,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[3,3,2,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,2,0],[2,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,2,0],[1,3,2,1]],[[2,1,0,0],[2,2,3,1],[2,3,2,1],[0,2,2,1]],[[1,1,0,0],[3,2,3,1],[2,3,2,1],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[3,3,2,1],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,4,2,1],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,2,1],[0,3,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,2,1],[0,2,3,1]],[[1,1,0,0],[2,2,3,1],[2,3,2,1],[0,2,2,2]],[[2,1,0,0],[2,2,3,1],[2,3,2,1],[1,1,2,1]],[[1,1,0,0],[3,2,3,1],[2,3,2,1],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[3,3,2,1],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[2,4,2,1],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,2,1],[2,1,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,2,3],[0,1,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,2,2],[0,1,3,1]],[[1,1,0,0],[2,2,3,1],[2,3,2,2],[0,1,2,2]],[[2,1,0,0],[2,2,3,1],[2,3,2,2],[0,2,2,0]],[[1,1,0,0],[3,2,3,1],[2,3,2,2],[0,2,2,0]],[[1,1,0,0],[2,2,3,1],[3,3,2,2],[0,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,4,2,2],[0,2,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,2,2],[0,3,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,2,2],[0,2,3,0]],[[1,1,0,0],[2,2,3,1],[2,3,2,3],[1,0,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,2,2],[1,0,3,1]],[[1,1,0,0],[2,2,3,1],[2,3,2,2],[1,0,2,2]],[[2,1,0,0],[2,2,3,1],[2,3,2,2],[1,1,2,0]],[[1,1,0,0],[3,2,3,1],[2,3,2,2],[1,1,2,0]],[[1,1,0,0],[2,2,3,1],[3,3,2,2],[1,1,2,0]],[[1,1,0,0],[2,2,3,1],[2,4,2,2],[1,1,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,3,4,0],[1,1,3,1],[1,2,2,1]],[[1,2,1,1],[0,4,3,0],[1,1,3,1],[1,2,2,1]],[[1,3,1,1],[0,3,3,0],[1,1,3,1],[1,2,2,1]],[[2,2,1,1],[0,3,3,0],[1,1,3,1],[1,2,2,1]],[[1,2,1,1],[0,3,3,0],[1,1,2,2],[1,2,2,2]],[[1,2,1,1],[0,3,3,0],[1,1,2,2],[1,2,3,1]],[[1,2,1,1],[0,3,3,0],[1,1,2,2],[1,3,2,1]],[[1,2,1,1],[0,3,3,0],[1,1,2,2],[2,2,2,1]],[[1,2,1,1],[0,3,3,0],[1,1,2,3],[1,2,2,1]],[[2,1,0,0],[2,2,3,1],[2,3,3,0],[0,2,2,1]],[[1,1,0,0],[3,2,3,1],[2,3,3,0],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[3,3,3,0],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,4,3,0],[0,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,0],[0,3,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,0],[0,2,3,1]],[[2,1,0,0],[2,2,3,1],[2,3,3,0],[1,1,2,1]],[[1,1,0,0],[3,2,3,1],[2,3,3,0],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[3,3,3,0],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[2,4,3,0],[1,1,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,0],[2,1,2,1]],[[2,1,0,0],[2,2,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,0],[3,2,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,0],[2,2,3,1],[3,3,3,1],[0,1,2,1]],[[1,1,0,0],[2,2,3,1],[2,4,3,1],[0,1,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,4,1],[0,1,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,1],[0,1,3,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,1],[0,1,2,2]],[[2,1,0,0],[2,2,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,0],[3,2,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,0],[2,2,3,1],[3,3,3,1],[0,2,1,1]],[[1,1,0,0],[2,2,3,1],[2,4,3,1],[0,2,1,1]],[[1,1,0,0],[2,2,3,1],[2,3,4,1],[0,2,1,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,1],[0,3,1,1]],[[2,1,0,0],[2,2,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,0],[3,2,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,0],[2,2,3,1],[3,3,3,1],[1,0,2,1]],[[1,1,0,0],[2,2,3,1],[2,4,3,1],[1,0,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,4,1],[1,0,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,1],[2,0,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,1],[1,0,3,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,1],[1,0,2,2]],[[2,1,0,0],[2,2,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,0],[3,2,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,0],[2,2,3,1],[3,3,3,1],[1,1,1,1]],[[1,1,0,0],[2,2,3,1],[2,4,3,1],[1,1,1,1]],[[1,1,0,0],[2,2,3,1],[2,3,4,1],[1,1,1,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,1],[2,1,1,1]],[[2,1,0,0],[2,2,3,1],[2,3,3,1],[1,2,0,1]],[[1,1,0,0],[3,2,3,1],[2,3,3,1],[1,2,0,1]],[[1,1,0,0],[2,2,3,1],[3,3,3,1],[1,2,0,1]],[[1,1,0,0],[2,2,3,1],[2,4,3,1],[1,2,0,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,3,3,0],[1,0,3,2],[1,2,2,2]],[[1,2,1,1],[0,3,3,0],[1,0,3,2],[1,2,3,1]],[[1,2,1,1],[0,3,3,0],[1,0,3,3],[1,2,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,4,2],[0,0,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,3],[0,0,2,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[0,0,2,2]],[[2,1,0,0],[2,2,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,0],[3,2,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,0],[2,2,3,1],[3,3,3,2],[0,1,1,1]],[[1,1,0,0],[2,2,3,1],[2,4,3,2],[0,1,1,1]],[[1,1,0,0],[2,2,3,1],[2,3,4,2],[0,1,1,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,3],[0,1,1,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[0,1,1,2]],[[2,1,0,0],[2,2,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,0],[3,2,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,0],[2,2,3,1],[3,3,3,2],[0,1,2,0]],[[1,1,0,0],[2,2,3,1],[2,4,3,2],[0,1,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,4,2],[0,1,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,3,3],[0,1,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[0,1,3,0]],[[2,1,0,0],[2,2,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,0],[3,2,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,0],[2,2,3,1],[3,3,3,2],[0,2,0,1]],[[1,1,0,0],[2,2,3,1],[2,4,3,2],[0,2,0,1]],[[1,1,0,0],[2,2,3,1],[2,3,4,2],[0,2,0,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,3],[0,2,0,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[0,3,0,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[0,2,0,2]],[[2,1,0,0],[2,2,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,0],[3,2,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,0],[2,2,3,1],[3,3,3,2],[0,2,1,0]],[[1,1,0,0],[2,2,3,1],[2,4,3,2],[0,2,1,0]],[[1,1,0,0],[2,2,3,1],[2,3,4,2],[0,2,1,0]],[[1,1,0,0],[2,2,3,1],[2,3,3,3],[0,2,1,0]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[0,3,1,0]],[[2,1,0,0],[2,2,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,0],[3,2,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,0],[2,2,3,1],[3,3,3,2],[1,0,1,1]],[[1,1,0,0],[2,2,3,1],[2,4,3,2],[1,0,1,1]],[[1,1,0,0],[2,2,3,1],[2,3,4,2],[1,0,1,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,3],[1,0,1,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[2,0,1,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[1,0,1,2]],[[2,1,0,0],[2,2,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,0],[3,2,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,0],[2,2,3,1],[3,3,3,2],[1,0,2,0]],[[1,1,0,0],[2,2,3,1],[2,4,3,2],[1,0,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,4,2],[1,0,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,3,3],[1,0,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[2,0,2,0]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[1,0,3,0]],[[2,1,0,0],[2,2,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,0],[3,2,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,0],[2,2,3,1],[3,3,3,2],[1,1,0,1]],[[1,1,0,0],[2,2,3,1],[2,4,3,2],[1,1,0,1]],[[1,1,0,0],[2,2,3,1],[2,3,4,2],[1,1,0,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,3],[1,1,0,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[2,1,0,1]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[1,1,0,2]],[[2,1,0,0],[2,2,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,0],[3,2,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,0],[2,2,3,1],[3,3,3,2],[1,1,1,0]],[[1,1,0,0],[2,2,3,1],[2,4,3,2],[1,1,1,0]],[[1,1,0,0],[2,2,3,1],[2,3,4,2],[1,1,1,0]],[[1,1,0,0],[2,2,3,1],[2,3,3,3],[1,1,1,0]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[2,1,1,0]],[[2,1,0,0],[2,2,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,0,0],[3,2,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,0,0],[2,2,3,1],[3,3,3,2],[1,2,0,0]],[[1,1,0,0],[2,2,3,1],[2,4,3,2],[1,2,0,0]],[[1,1,0,0],[2,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,1,0,0],[2,2,3,2],[1,2,4,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,2],[1,2,3,0],[2,2,2,1]],[[1,1,0,0],[2,2,3,2],[1,2,3,0],[1,3,2,1]],[[1,1,0,0],[2,2,3,2],[1,2,3,0],[1,2,3,1]],[[1,1,0,0],[2,2,3,2],[1,2,3,0],[1,2,2,2]],[[1,1,0,0],[2,2,3,2],[1,2,4,1],[1,2,2,0]],[[1,1,0,0],[2,2,3,2],[1,2,3,1],[2,2,2,0]],[[1,1,0,0],[2,2,3,2],[1,2,3,1],[1,3,2,0]],[[1,1,0,0],[2,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,1,0,0],[2,2,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,2],[1,3,2,0],[2,2,2,1]],[[1,1,0,0],[2,2,3,2],[1,3,2,0],[1,3,2,1]],[[1,1,0,0],[2,2,3,2],[1,3,2,0],[1,2,3,1]],[[1,1,0,0],[2,2,3,2],[1,3,2,0],[1,2,2,2]],[[1,1,0,0],[2,2,3,2],[1,4,2,1],[1,2,2,0]],[[1,1,0,0],[2,2,3,2],[1,3,2,1],[2,2,2,0]],[[1,1,0,0],[2,2,3,2],[1,3,2,1],[1,3,2,0]],[[1,1,0,0],[2,2,3,2],[1,3,2,1],[1,2,3,0]],[[1,1,0,0],[2,2,3,2],[1,4,3,0],[1,1,2,1]],[[1,1,0,0],[2,2,3,2],[1,3,4,0],[1,1,2,1]],[[1,1,0,0],[2,2,3,2],[1,3,3,0],[1,1,3,1]],[[1,1,0,0],[2,2,3,2],[1,3,3,0],[1,1,2,2]],[[1,1,0,0],[2,2,3,2],[1,4,3,0],[1,2,1,1]],[[1,1,0,0],[2,2,3,2],[1,3,4,0],[1,2,1,1]],[[1,1,0,0],[2,2,3,2],[1,3,3,0],[2,2,1,1]],[[1,1,0,0],[2,2,3,2],[1,3,3,0],[1,3,1,1]],[[1,1,0,0],[2,2,3,2],[1,4,3,1],[1,1,2,0]],[[1,1,0,0],[2,2,3,2],[1,3,4,1],[1,1,2,0]],[[1,1,0,0],[2,2,3,2],[1,3,3,1],[1,1,3,0]],[[1,1,0,0],[2,2,3,2],[1,4,3,1],[1,2,0,1]],[[1,1,0,0],[2,2,3,2],[1,3,4,1],[1,2,0,1]],[[1,1,0,0],[2,2,3,2],[1,3,3,1],[2,2,0,1]],[[1,1,0,0],[2,2,3,2],[1,3,3,1],[1,3,0,1]],[[1,1,0,0],[2,2,3,2],[1,4,3,1],[1,2,1,0]],[[1,1,0,0],[2,2,3,2],[1,3,4,1],[1,2,1,0]],[[1,1,0,0],[2,2,3,2],[1,3,3,1],[2,2,1,0]],[[1,1,0,0],[2,2,3,2],[1,3,3,1],[1,3,1,0]],[[2,1,0,0],[2,2,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,0,0],[3,2,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,2],[3,1,3,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,2],[2,1,4,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,2],[2,1,3,0],[2,2,2,1]],[[1,1,0,0],[2,2,3,2],[2,1,3,0],[1,3,2,1]],[[1,1,0,0],[2,2,3,2],[2,1,3,0],[1,2,3,1]],[[1,1,0,0],[2,2,3,2],[2,1,3,0],[1,2,2,2]],[[2,1,0,0],[2,2,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,0,0],[3,2,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,0,0],[2,2,3,2],[3,1,3,1],[1,2,2,0]],[[1,1,0,0],[2,2,3,2],[2,1,4,1],[1,2,2,0]],[[1,1,0,0],[2,2,3,2],[2,1,3,1],[2,2,2,0]],[[1,1,0,0],[2,2,3,2],[2,1,3,1],[1,3,2,0]],[[1,1,0,0],[2,2,3,2],[2,1,3,1],[1,2,3,0]],[[2,1,0,0],[2,2,3,2],[2,2,2,0],[1,2,2,1]],[[1,1,0,0],[3,2,3,2],[2,2,2,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,2],[3,2,2,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,2],[2,2,2,0],[2,2,2,1]],[[1,1,0,0],[2,2,3,2],[2,2,2,0],[1,3,2,1]],[[1,1,0,0],[2,2,3,2],[2,2,2,0],[1,2,3,1]],[[1,1,0,0],[2,2,3,2],[2,2,2,0],[1,2,2,2]],[[2,1,0,0],[2,2,3,2],[2,2,2,1],[1,2,2,0]],[[1,1,0,0],[3,2,3,2],[2,2,2,1],[1,2,2,0]],[[1,1,0,0],[2,2,3,2],[3,2,2,1],[1,2,2,0]],[[1,1,0,0],[2,2,3,2],[2,2,2,1],[2,2,2,0]],[[1,1,0,0],[2,2,3,2],[2,2,2,1],[1,3,2,0]],[[1,1,0,0],[2,2,3,2],[2,2,2,1],[1,2,3,0]],[[1,1,0,0],[2,2,3,2],[2,2,4,0],[0,2,2,1]],[[1,1,0,0],[2,2,3,2],[2,2,3,0],[0,3,2,1]],[[1,1,0,0],[2,2,3,2],[2,2,3,0],[0,2,3,1]],[[1,1,0,0],[2,2,3,2],[2,2,3,0],[0,2,2,2]],[[2,1,0,0],[2,2,3,2],[2,2,3,0],[1,2,1,1]],[[1,1,0,0],[3,2,3,2],[2,2,3,0],[1,2,1,1]],[[1,1,0,0],[2,2,3,2],[3,2,3,0],[1,2,1,1]],[[1,1,0,0],[2,2,3,2],[2,2,3,0],[2,2,1,1]],[[1,1,0,0],[2,2,3,2],[2,2,3,0],[1,3,1,1]],[[1,1,0,0],[2,2,3,2],[2,2,4,1],[0,2,2,0]],[[1,1,0,0],[2,2,3,2],[2,2,3,1],[0,3,2,0]],[[1,1,0,0],[2,2,3,2],[2,2,3,1],[0,2,3,0]],[[2,1,0,0],[2,2,3,2],[2,2,3,1],[1,2,0,1]],[[1,1,0,0],[3,2,3,2],[2,2,3,1],[1,2,0,1]],[[1,1,0,0],[2,2,3,2],[3,2,3,1],[1,2,0,1]],[[1,1,0,0],[2,2,3,2],[2,2,3,1],[2,2,0,1]],[[1,1,0,0],[2,2,3,2],[2,2,3,1],[1,3,0,1]],[[2,1,0,0],[2,2,3,2],[2,2,3,1],[1,2,1,0]],[[1,1,0,0],[3,2,3,2],[2,2,3,1],[1,2,1,0]],[[1,1,0,0],[2,2,3,2],[3,2,3,1],[1,2,1,0]],[[1,1,0,0],[2,2,3,2],[2,2,3,1],[2,2,1,0]],[[1,1,0,0],[2,2,3,2],[2,2,3,1],[1,3,1,0]],[[1,1,0,0],[3,2,3,2],[2,3,1,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,2],[3,3,1,0],[1,2,2,1]],[[1,1,0,0],[2,2,3,2],[2,3,1,0],[2,2,2,1]],[[1,1,0,0],[2,2,3,2],[2,3,1,0],[1,3,2,1]],[[1,1,0,0],[3,2,3,2],[2,3,1,1],[1,2,2,0]],[[1,1,0,0],[2,2,3,2],[3,3,1,1],[1,2,2,0]],[[1,1,0,0],[2,2,3,2],[2,3,1,1],[2,2,2,0]],[[1,1,0,0],[2,2,3,2],[2,3,1,1],[1,3,2,0]],[[2,1,0,0],[2,2,3,2],[2,3,2,0],[0,2,2,1]],[[1,1,0,0],[3,2,3,2],[2,3,2,0],[0,2,2,1]],[[1,1,0,0],[2,2,3,2],[3,3,2,0],[0,2,2,1]],[[1,1,0,0],[2,2,3,2],[2,4,2,0],[0,2,2,1]],[[1,1,0,0],[2,2,3,2],[2,3,2,0],[0,3,2,1]],[[1,1,0,0],[2,2,3,2],[2,3,2,0],[0,2,3,1]],[[1,1,0,0],[2,2,3,2],[2,3,2,0],[0,2,2,2]],[[2,1,0,0],[2,2,3,2],[2,3,2,0],[1,1,2,1]],[[1,1,0,0],[3,2,3,2],[2,3,2,0],[1,1,2,1]],[[1,1,0,0],[2,2,3,2],[3,3,2,0],[1,1,2,1]],[[1,1,0,0],[2,2,3,2],[2,4,2,0],[1,1,2,1]],[[1,1,0,0],[2,2,3,2],[2,3,2,0],[2,1,2,1]],[[2,1,0,0],[2,2,3,2],[2,3,2,1],[0,2,2,0]],[[1,1,0,0],[3,2,3,2],[2,3,2,1],[0,2,2,0]],[[1,1,0,0],[2,2,3,2],[3,3,2,1],[0,2,2,0]],[[1,1,0,0],[2,2,3,2],[2,4,2,1],[0,2,2,0]],[[1,1,0,0],[2,2,3,2],[2,3,2,1],[0,3,2,0]],[[1,1,0,0],[2,2,3,2],[2,3,2,1],[0,2,3,0]],[[2,1,0,0],[2,2,3,2],[2,3,2,1],[1,1,2,0]],[[1,1,0,0],[3,2,3,2],[2,3,2,1],[1,1,2,0]],[[1,1,0,0],[2,2,3,2],[3,3,2,1],[1,1,2,0]],[[1,1,0,0],[2,2,3,2],[2,4,2,1],[1,1,2,0]],[[1,1,0,0],[2,2,3,2],[2,3,2,1],[2,1,2,0]],[[2,1,0,0],[2,2,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,0],[3,2,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,0],[2,2,3,2],[3,3,3,0],[0,1,2,1]],[[1,1,0,0],[2,2,3,2],[2,4,3,0],[0,1,2,1]],[[1,1,0,0],[2,2,3,2],[2,3,4,0],[0,1,2,1]],[[1,1,0,0],[2,2,3,2],[2,3,3,0],[0,1,3,1]],[[1,1,0,0],[2,2,3,2],[2,3,3,0],[0,1,2,2]],[[2,1,0,0],[2,2,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,0],[3,2,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,0],[2,2,3,2],[3,3,3,0],[0,2,1,1]],[[1,1,0,0],[2,2,3,2],[2,4,3,0],[0,2,1,1]],[[1,1,0,0],[2,2,3,2],[2,3,4,0],[0,2,1,1]],[[1,1,0,0],[2,2,3,2],[2,3,3,0],[0,3,1,1]],[[2,1,0,0],[2,2,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,0],[3,2,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,0],[2,2,3,2],[3,3,3,0],[1,0,2,1]],[[1,1,0,0],[2,2,3,2],[2,4,3,0],[1,0,2,1]],[[1,1,0,0],[2,2,3,2],[2,3,4,0],[1,0,2,1]],[[1,1,0,0],[2,2,3,2],[2,3,3,0],[2,0,2,1]],[[1,1,0,0],[2,2,3,2],[2,3,3,0],[1,0,3,1]],[[1,1,0,0],[2,2,3,2],[2,3,3,0],[1,0,2,2]],[[2,1,0,0],[2,2,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,0],[3,2,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,0],[2,2,3,2],[3,3,3,0],[1,1,1,1]],[[1,1,0,0],[2,2,3,2],[2,4,3,0],[1,1,1,1]],[[1,1,0,0],[2,2,3,2],[2,3,4,0],[1,1,1,1]],[[1,1,0,0],[2,2,3,2],[2,3,3,0],[2,1,1,1]],[[2,1,0,0],[2,2,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,0,0],[3,2,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,0,0],[2,2,3,2],[3,3,3,0],[1,2,0,1]],[[1,1,0,0],[2,2,3,2],[2,4,3,0],[1,2,0,1]],[[1,1,0,0],[2,2,3,2],[2,3,3,0],[2,2,0,1]],[[2,1,0,0],[2,2,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,0],[3,2,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,0],[2,2,3,2],[3,3,3,1],[0,1,1,1]],[[1,1,0,0],[2,2,3,2],[2,4,3,1],[0,1,1,1]],[[1,1,0,0],[2,2,3,2],[2,3,4,1],[0,1,1,1]],[[2,1,0,0],[2,2,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,0],[3,2,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,0],[2,2,3,2],[3,3,3,1],[0,1,2,0]],[[1,1,0,0],[2,2,3,2],[2,4,3,1],[0,1,2,0]],[[1,1,0,0],[2,2,3,2],[2,3,4,1],[0,1,2,0]],[[1,1,0,0],[2,2,3,2],[2,3,3,1],[0,1,3,0]],[[2,1,0,0],[2,2,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,0],[3,2,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,0],[2,2,3,2],[3,3,3,1],[0,2,0,1]],[[1,1,0,0],[2,2,3,2],[2,4,3,1],[0,2,0,1]],[[1,1,0,0],[2,2,3,2],[2,3,4,1],[0,2,0,1]],[[1,1,0,0],[2,2,3,2],[2,3,3,1],[0,3,0,1]],[[2,1,0,0],[2,2,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,0],[3,2,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,0],[2,2,3,2],[3,3,3,1],[0,2,1,0]],[[1,1,0,0],[2,2,3,2],[2,4,3,1],[0,2,1,0]],[[1,1,0,0],[2,2,3,2],[2,3,4,1],[0,2,1,0]],[[1,1,0,0],[2,2,3,2],[2,3,3,1],[0,3,1,0]],[[2,1,0,0],[2,2,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,0],[3,2,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,0],[2,2,3,2],[3,3,3,1],[1,0,1,1]],[[1,1,0,0],[2,2,3,2],[2,4,3,1],[1,0,1,1]],[[1,1,0,0],[2,2,3,2],[2,3,4,1],[1,0,1,1]],[[1,1,0,0],[2,2,3,2],[2,3,3,1],[2,0,1,1]],[[2,1,0,0],[2,2,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,0],[3,2,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,0],[2,2,3,2],[3,3,3,1],[1,0,2,0]],[[1,1,0,0],[2,2,3,2],[2,4,3,1],[1,0,2,0]],[[1,1,0,0],[2,2,3,2],[2,3,4,1],[1,0,2,0]],[[1,1,0,0],[2,2,3,2],[2,3,3,1],[2,0,2,0]],[[1,1,0,0],[2,2,3,2],[2,3,3,1],[1,0,3,0]],[[2,1,0,0],[2,2,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,0],[3,2,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,0],[2,2,3,2],[3,3,3,1],[1,1,0,1]],[[1,1,0,0],[2,2,3,2],[2,4,3,1],[1,1,0,1]],[[1,1,0,0],[2,2,3,2],[2,3,4,1],[1,1,0,1]],[[1,1,0,0],[2,2,3,2],[2,3,3,1],[2,1,0,1]],[[2,1,0,0],[2,2,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,0],[3,2,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,0],[2,2,3,2],[3,3,3,1],[1,1,1,0]],[[1,1,0,0],[2,2,3,2],[2,4,3,1],[1,1,1,0]],[[1,1,0,0],[2,2,3,2],[2,3,4,1],[1,1,1,0]],[[1,1,0,0],[2,2,3,2],[2,3,3,1],[2,1,1,0]],[[2,1,0,0],[2,2,3,2],[2,3,3,1],[1,2,0,0]],[[1,1,0,0],[3,2,3,2],[2,3,3,1],[1,2,0,0]],[[1,1,0,0],[2,2,3,2],[3,3,3,1],[1,2,0,0]],[[1,1,0,0],[2,2,3,2],[2,4,3,1],[1,2,0,0]],[[1,1,0,0],[2,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,1,0,0],[2,3,0,0],[3,3,3,2],[1,2,2,1]],[[1,1,0,0],[2,3,0,0],[2,3,3,2],[2,2,2,1]],[[1,1,0,0],[2,3,0,0],[2,3,3,2],[1,3,2,1]],[[1,1,0,0],[2,3,0,0],[2,3,3,2],[1,2,3,1]],[[1,1,0,0],[2,3,0,0],[2,3,3,2],[1,2,2,2]],[[1,1,0,0],[2,3,0,1],[3,3,3,1],[1,2,2,1]],[[1,1,0,0],[2,3,0,1],[2,3,3,1],[2,2,2,1]],[[1,1,0,0],[2,3,0,1],[2,3,3,1],[1,3,2,1]],[[1,1,0,0],[2,3,0,1],[2,3,3,1],[1,2,3,1]],[[1,1,0,0],[2,3,0,1],[3,3,3,2],[1,2,2,0]],[[1,1,0,0],[2,3,0,1],[2,3,3,2],[2,2,2,0]],[[1,1,0,0],[2,3,0,1],[2,3,3,2],[1,3,2,0]],[[1,1,0,0],[2,3,0,2],[0,4,3,2],[1,2,2,1]],[[1,1,0,0],[2,3,0,2],[0,3,3,2],[2,2,2,1]],[[1,1,0,0],[2,3,0,2],[0,3,3,2],[1,3,2,1]],[[1,1,0,0],[2,3,0,2],[0,3,3,2],[1,2,3,1]],[[1,1,0,0],[2,3,0,2],[0,3,3,2],[1,2,2,2]],[[1,1,0,0],[2,3,0,2],[1,4,3,2],[0,2,2,1]],[[1,1,0,0],[2,3,0,2],[1,3,3,2],[0,3,2,1]],[[1,1,0,0],[2,3,0,2],[1,3,3,2],[0,2,3,1]],[[1,1,0,0],[2,3,0,2],[1,3,3,2],[0,2,2,2]],[[1,2,1,1],[0,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[0,3,2,2],[1,3,4,2],[0,0,2,0]],[[1,2,1,1],[0,3,2,3],[1,3,3,2],[0,0,2,0]],[[1,2,1,2],[0,3,2,2],[1,3,3,2],[0,0,2,0]],[[1,2,1,1],[0,3,2,2],[1,3,3,2],[0,0,1,2]],[[1,2,1,1],[0,3,2,2],[1,3,3,3],[0,0,1,1]],[[1,2,1,1],[0,3,2,2],[1,3,4,2],[0,0,1,1]],[[1,2,1,1],[0,3,2,3],[1,3,3,2],[0,0,1,1]],[[1,2,1,2],[0,3,2,2],[1,3,3,2],[0,0,1,1]],[[1,1,0,0],[2,3,2,0],[0,4,3,2],[1,2,2,1]],[[1,1,0,0],[2,3,2,0],[0,3,3,2],[2,2,2,1]],[[1,1,0,0],[2,3,2,0],[0,3,3,2],[1,3,2,1]],[[1,1,0,0],[2,3,2,0],[0,3,3,2],[1,2,3,1]],[[1,1,0,0],[2,3,2,0],[0,3,3,2],[1,2,2,2]],[[1,1,0,0],[2,3,2,0],[1,4,3,2],[0,2,2,1]],[[1,1,0,0],[2,3,2,0],[1,3,3,2],[0,3,2,1]],[[1,1,0,0],[2,3,2,0],[1,3,3,2],[0,2,3,1]],[[1,1,0,0],[2,3,2,0],[1,3,3,2],[0,2,2,2]],[[1,1,0,0],[2,3,2,1],[0,4,3,1],[1,2,2,1]],[[1,1,0,0],[2,3,2,1],[0,3,3,1],[2,2,2,1]],[[1,1,0,0],[2,3,2,1],[0,3,3,1],[1,3,2,1]],[[1,1,0,0],[2,3,2,1],[0,3,3,1],[1,2,3,1]],[[1,1,0,0],[2,3,2,1],[0,3,3,1],[1,2,2,2]],[[1,1,0,0],[2,3,2,1],[0,4,3,2],[1,2,2,0]],[[1,1,0,0],[2,3,2,1],[0,3,3,2],[2,2,2,0]],[[1,1,0,0],[2,3,2,1],[0,3,3,2],[1,3,2,0]],[[1,1,0,0],[2,3,2,1],[0,3,3,2],[1,2,3,0]],[[1,1,0,0],[2,3,2,1],[1,4,3,1],[0,2,2,1]],[[1,1,0,0],[2,3,2,1],[1,3,3,1],[0,3,2,1]],[[1,1,0,0],[2,3,2,1],[1,3,3,1],[0,2,3,1]],[[1,1,0,0],[2,3,2,1],[1,3,3,1],[0,2,2,2]],[[1,1,0,0],[2,3,2,1],[1,4,3,2],[0,2,2,0]],[[1,1,0,0],[2,3,2,1],[1,3,3,2],[0,3,2,0]],[[1,1,0,0],[2,3,2,1],[1,3,3,2],[0,2,3,0]],[[1,2,1,1],[0,3,2,2],[1,2,3,3],[1,0,2,0]],[[1,2,1,1],[0,3,2,2],[1,2,4,2],[1,0,2,0]],[[1,2,1,1],[0,3,2,3],[1,2,3,2],[1,0,2,0]],[[1,2,1,2],[0,3,2,2],[1,2,3,2],[1,0,2,0]],[[1,2,1,1],[0,3,2,2],[1,2,3,2],[1,0,1,2]],[[1,2,1,1],[0,3,2,2],[1,2,3,3],[1,0,1,1]],[[1,2,1,1],[0,3,2,2],[1,2,4,2],[1,0,1,1]],[[1,2,1,1],[0,3,2,3],[1,2,3,2],[1,0,1,1]],[[1,2,1,2],[0,3,2,2],[1,2,3,2],[1,0,1,1]],[[1,2,1,1],[0,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[0,3,2,2],[1,2,4,2],[0,2,1,0]],[[1,2,1,1],[0,3,2,3],[1,2,3,2],[0,2,1,0]],[[1,2,1,2],[0,3,2,2],[1,2,3,2],[0,2,1,0]],[[1,2,1,1],[0,3,2,2],[1,2,3,2],[0,2,0,2]],[[1,2,1,1],[0,3,2,2],[1,2,3,3],[0,2,0,1]],[[1,2,1,1],[0,3,2,2],[1,2,4,2],[0,2,0,1]],[[1,2,1,1],[0,3,2,3],[1,2,3,2],[0,2,0,1]],[[1,2,1,2],[0,3,2,2],[1,2,3,2],[0,2,0,1]],[[1,2,1,1],[0,3,2,2],[1,2,3,2],[0,1,3,0]],[[1,2,1,1],[0,3,2,2],[1,2,3,3],[0,1,2,0]],[[1,2,1,1],[0,3,2,2],[1,2,4,2],[0,1,2,0]],[[1,2,1,1],[0,3,2,3],[1,2,3,2],[0,1,2,0]],[[1,2,1,2],[0,3,2,2],[1,2,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,2,2],[1,2,3,2],[0,1,1,2]],[[1,2,1,1],[0,3,2,2],[1,2,3,3],[0,1,1,1]],[[1,2,1,1],[0,3,2,2],[1,2,4,2],[0,1,1,1]],[[1,2,1,1],[0,3,2,3],[1,2,3,2],[0,1,1,1]],[[1,2,1,2],[0,3,2,2],[1,2,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,2,2],[1,2,3,2],[0,0,2,2]],[[1,2,1,1],[0,3,2,2],[1,2,3,3],[0,0,2,1]],[[1,2,1,1],[0,3,2,2],[1,2,4,2],[0,0,2,1]],[[1,2,1,1],[0,3,2,3],[1,2,3,2],[0,0,2,1]],[[1,2,1,2],[0,3,2,2],[1,2,3,2],[0,0,2,1]],[[1,2,1,1],[0,3,2,2],[1,2,3,1],[0,1,2,2]],[[1,2,1,1],[0,3,2,2],[1,2,3,1],[0,1,3,1]],[[1,2,1,1],[0,3,2,2],[1,2,4,1],[0,1,2,1]],[[1,1,0,0],[2,3,3,0],[0,2,4,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,0],[0,2,3,2],[2,2,2,1]],[[1,1,0,0],[2,3,3,0],[0,2,3,2],[1,3,2,1]],[[1,1,0,0],[2,3,3,0],[0,2,3,2],[1,2,3,1]],[[1,1,0,0],[2,3,3,0],[0,2,3,2],[1,2,2,2]],[[2,1,0,0],[2,3,3,0],[0,3,2,2],[1,2,2,1]],[[1,1,0,0],[3,3,3,0],[0,3,2,2],[1,2,2,1]],[[1,1,0,0],[2,4,3,0],[0,3,2,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,0],[0,4,2,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,0],[0,3,2,2],[2,2,2,1]],[[1,1,0,0],[2,3,3,0],[0,3,2,2],[1,3,2,1]],[[1,1,0,0],[2,3,3,0],[0,3,2,2],[1,2,3,1]],[[1,1,0,0],[2,3,3,0],[0,3,2,2],[1,2,2,2]],[[2,1,0,0],[2,3,3,0],[0,3,3,2],[1,1,2,1]],[[1,1,0,0],[3,3,3,0],[0,3,3,2],[1,1,2,1]],[[1,1,0,0],[2,4,3,0],[0,3,3,2],[1,1,2,1]],[[1,1,0,0],[2,3,3,0],[0,4,3,2],[1,1,2,1]],[[1,1,0,0],[2,3,3,0],[0,3,4,2],[1,1,2,1]],[[1,1,0,0],[2,3,3,0],[0,3,3,2],[1,1,3,1]],[[1,1,0,0],[2,3,3,0],[0,3,3,2],[1,1,2,2]],[[2,1,0,0],[2,3,3,0],[0,3,3,2],[1,2,1,1]],[[1,1,0,0],[3,3,3,0],[0,3,3,2],[1,2,1,1]],[[1,1,0,0],[2,4,3,0],[0,3,3,2],[1,2,1,1]],[[1,1,0,0],[2,3,3,0],[0,4,3,2],[1,2,1,1]],[[1,1,0,0],[2,3,3,0],[0,3,4,2],[1,2,1,1]],[[1,1,0,0],[2,3,3,0],[0,3,3,2],[2,2,1,1]],[[1,1,0,0],[2,3,3,0],[0,3,3,2],[1,3,1,1]],[[1,1,0,0],[2,3,3,0],[1,2,4,2],[0,2,2,1]],[[1,1,0,0],[2,3,3,0],[1,2,3,2],[0,3,2,1]],[[1,1,0,0],[2,3,3,0],[1,2,3,2],[0,2,3,1]],[[1,1,0,0],[2,3,3,0],[1,2,3,2],[0,2,2,2]],[[2,1,0,0],[2,3,3,0],[1,3,2,2],[0,2,2,1]],[[1,1,0,0],[3,3,3,0],[1,3,2,2],[0,2,2,1]],[[1,1,0,0],[2,4,3,0],[1,3,2,2],[0,2,2,1]],[[1,1,0,0],[2,3,3,0],[1,4,2,2],[0,2,2,1]],[[1,1,0,0],[2,3,3,0],[1,3,2,2],[0,3,2,1]],[[1,1,0,0],[2,3,3,0],[1,3,2,2],[0,2,3,1]],[[1,1,0,0],[2,3,3,0],[1,3,2,2],[0,2,2,2]],[[2,1,0,0],[2,3,3,0],[1,3,2,2],[1,1,2,1]],[[1,1,0,0],[3,3,3,0],[1,3,2,2],[1,1,2,1]],[[1,1,0,0],[2,4,3,0],[1,3,2,2],[1,1,2,1]],[[1,1,0,0],[2,3,3,0],[1,4,2,2],[1,1,2,1]],[[2,1,0,0],[2,3,3,0],[1,3,3,2],[0,1,2,1]],[[1,1,0,0],[3,3,3,0],[1,3,3,2],[0,1,2,1]],[[1,1,0,0],[2,4,3,0],[1,3,3,2],[0,1,2,1]],[[1,1,0,0],[2,3,3,0],[1,4,3,2],[0,1,2,1]],[[1,1,0,0],[2,3,3,0],[1,3,4,2],[0,1,2,1]],[[1,1,0,0],[2,3,3,0],[1,3,3,2],[0,1,3,1]],[[1,1,0,0],[2,3,3,0],[1,3,3,2],[0,1,2,2]],[[2,1,0,0],[2,3,3,0],[1,3,3,2],[0,2,1,1]],[[1,1,0,0],[3,3,3,0],[1,3,3,2],[0,2,1,1]],[[1,1,0,0],[2,4,3,0],[1,3,3,2],[0,2,1,1]],[[1,1,0,0],[2,3,3,0],[1,4,3,2],[0,2,1,1]],[[1,1,0,0],[2,3,3,0],[1,3,4,2],[0,2,1,1]],[[1,1,0,0],[2,3,3,0],[1,3,3,2],[0,3,1,1]],[[2,1,0,0],[2,3,3,0],[1,3,3,2],[1,0,2,1]],[[1,1,0,0],[3,3,3,0],[1,3,3,2],[1,0,2,1]],[[1,1,0,0],[2,4,3,0],[1,3,3,2],[1,0,2,1]],[[1,1,0,0],[2,3,3,0],[1,4,3,2],[1,0,2,1]],[[1,1,0,0],[2,3,3,0],[1,3,4,2],[1,0,2,1]],[[1,1,0,0],[2,3,3,0],[1,3,3,2],[1,0,3,1]],[[1,1,0,0],[2,3,3,0],[1,3,3,2],[1,0,2,2]],[[2,1,0,0],[2,3,3,0],[1,3,3,2],[1,1,1,1]],[[1,1,0,0],[3,3,3,0],[1,3,3,2],[1,1,1,1]],[[1,1,0,0],[2,4,3,0],[1,3,3,2],[1,1,1,1]],[[1,1,0,0],[2,3,3,0],[1,4,3,2],[1,1,1,1]],[[1,1,0,0],[2,3,3,0],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[0,3,2,2],[1,2,2,2],[0,1,2,2]],[[1,2,1,1],[0,3,2,2],[1,2,2,2],[0,1,3,1]],[[1,2,1,1],[0,3,2,2],[1,2,2,3],[0,1,2,1]],[[1,2,1,1],[0,3,2,3],[1,2,2,2],[0,1,2,1]],[[2,1,0,0],[2,3,3,0],[2,0,3,2],[1,2,2,1]],[[1,1,0,0],[3,3,3,0],[2,0,3,2],[1,2,2,1]],[[1,1,0,0],[2,4,3,0],[2,0,3,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,0],[3,0,3,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,0],[2,0,4,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,0],[2,0,3,2],[2,2,2,1]],[[1,1,0,0],[2,3,3,0],[2,0,3,2],[1,3,2,1]],[[1,1,0,0],[2,3,3,0],[2,0,3,2],[1,2,3,1]],[[1,1,0,0],[2,3,3,0],[2,0,3,2],[1,2,2,2]],[[2,1,0,0],[2,3,3,0],[2,1,2,2],[1,2,2,1]],[[1,1,0,0],[3,3,3,0],[2,1,2,2],[1,2,2,1]],[[1,1,0,0],[2,4,3,0],[2,1,2,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,0],[3,1,2,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,0],[2,1,2,2],[2,2,2,1]],[[1,1,0,0],[2,3,3,0],[2,1,2,2],[1,3,2,1]],[[1,1,0,0],[2,3,3,0],[2,1,2,2],[1,2,3,1]],[[1,1,0,0],[2,3,3,0],[2,1,2,2],[1,2,2,2]],[[2,1,0,0],[2,3,3,0],[2,1,3,2],[1,2,1,1]],[[1,1,0,0],[3,3,3,0],[2,1,3,2],[1,2,1,1]],[[1,1,0,0],[2,4,3,0],[2,1,3,2],[1,2,1,1]],[[1,1,0,0],[2,3,3,0],[3,1,3,2],[1,2,1,1]],[[1,1,0,0],[2,3,3,0],[2,1,3,2],[2,2,1,1]],[[1,1,0,0],[2,3,3,0],[2,1,3,2],[1,3,1,1]],[[2,1,0,0],[2,3,3,0],[2,2,2,2],[0,2,2,1]],[[1,1,0,0],[3,3,3,0],[2,2,2,2],[0,2,2,1]],[[1,1,0,0],[2,4,3,0],[2,2,2,2],[0,2,2,1]],[[1,1,0,0],[2,3,3,0],[3,2,2,2],[0,2,2,1]],[[2,1,0,0],[2,3,3,0],[2,2,2,2],[1,1,2,1]],[[1,1,0,0],[3,3,3,0],[2,2,2,2],[1,1,2,1]],[[1,1,0,0],[2,4,3,0],[2,2,2,2],[1,1,2,1]],[[1,1,0,0],[2,3,3,0],[3,2,2,2],[1,1,2,1]],[[1,1,0,0],[2,3,3,0],[2,2,2,2],[2,1,2,1]],[[2,1,0,0],[2,3,3,0],[2,2,3,2],[0,1,2,1]],[[1,1,0,0],[3,3,3,0],[2,2,3,2],[0,1,2,1]],[[1,1,0,0],[2,4,3,0],[2,2,3,2],[0,1,2,1]],[[1,1,0,0],[2,3,3,0],[3,2,3,2],[0,1,2,1]],[[2,1,0,0],[2,3,3,0],[2,2,3,2],[0,2,1,1]],[[1,1,0,0],[3,3,3,0],[2,2,3,2],[0,2,1,1]],[[1,1,0,0],[2,4,3,0],[2,2,3,2],[0,2,1,1]],[[1,1,0,0],[2,3,3,0],[3,2,3,2],[0,2,1,1]],[[2,1,0,0],[2,3,3,0],[2,2,3,2],[1,0,2,1]],[[1,1,0,0],[3,3,3,0],[2,2,3,2],[1,0,2,1]],[[1,1,0,0],[2,4,3,0],[2,2,3,2],[1,0,2,1]],[[1,1,0,0],[2,3,3,0],[3,2,3,2],[1,0,2,1]],[[1,1,0,0],[2,3,3,0],[2,2,3,2],[2,0,2,1]],[[2,1,0,0],[2,3,3,0],[2,2,3,2],[1,1,1,1]],[[1,1,0,0],[3,3,3,0],[2,2,3,2],[1,1,1,1]],[[1,1,0,0],[2,4,3,0],[2,2,3,2],[1,1,1,1]],[[1,1,0,0],[2,3,3,0],[3,2,3,2],[1,1,1,1]],[[1,1,0,0],[2,3,3,0],[2,2,3,2],[2,1,1,1]],[[1,2,1,2],[0,3,2,2],[1,2,2,2],[0,1,2,1]],[[1,2,1,1],[0,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,1,1],[0,3,2,2],[1,1,3,3],[0,2,2,0]],[[1,2,1,1],[0,3,2,2],[1,1,4,2],[0,2,2,0]],[[1,2,1,1],[0,3,2,3],[1,1,3,2],[0,2,2,0]],[[1,2,1,2],[0,3,2,2],[1,1,3,2],[0,2,2,0]],[[1,2,1,1],[0,3,2,2],[1,1,3,2],[0,2,1,2]],[[1,2,1,1],[0,3,2,2],[1,1,3,3],[0,2,1,1]],[[1,2,1,1],[0,3,2,2],[1,1,4,2],[0,2,1,1]],[[1,2,1,1],[0,3,2,3],[1,1,3,2],[0,2,1,1]],[[1,2,1,2],[0,3,2,2],[1,1,3,2],[0,2,1,1]],[[1,2,1,1],[0,3,2,2],[1,1,3,1],[0,2,2,2]],[[1,2,1,1],[0,3,2,2],[1,1,3,1],[0,2,3,1]],[[1,2,1,1],[0,3,2,2],[1,1,4,1],[0,2,2,1]],[[1,2,1,1],[0,3,2,2],[1,1,2,2],[0,2,2,2]],[[1,2,1,1],[0,3,2,2],[1,1,2,2],[0,2,3,1]],[[1,2,1,1],[0,3,2,2],[1,1,2,3],[0,2,2,1]],[[1,2,1,1],[0,3,2,3],[1,1,2,2],[0,2,2,1]],[[1,2,1,2],[0,3,2,2],[1,1,2,2],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,2,2,3],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,2,2,2],[2,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,2,2,2],[1,3,2,1]],[[1,1,0,0],[2,3,3,1],[0,2,2,2],[1,2,3,1]],[[1,1,0,0],[2,3,3,1],[0,2,2,2],[1,2,2,2]],[[1,1,0,0],[2,3,3,1],[0,2,4,1],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,2,3,1],[2,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,2,3,1],[1,3,2,1]],[[1,1,0,0],[2,3,3,1],[0,2,3,1],[1,2,3,1]],[[1,1,0,0],[2,3,3,1],[0,2,3,1],[1,2,2,2]],[[1,1,0,0],[2,3,3,1],[0,2,4,2],[1,2,1,1]],[[1,1,0,0],[2,3,3,1],[0,2,3,3],[1,2,1,1]],[[1,1,0,0],[2,3,3,1],[0,2,3,2],[1,2,1,2]],[[1,1,0,0],[2,3,3,1],[0,2,4,2],[1,2,2,0]],[[1,1,0,0],[2,3,3,1],[0,2,3,3],[1,2,2,0]],[[1,1,0,0],[2,3,3,1],[0,2,3,2],[2,2,2,0]],[[1,1,0,0],[2,3,3,1],[0,2,3,2],[1,3,2,0]],[[1,1,0,0],[2,3,3,1],[0,2,3,2],[1,2,3,0]],[[2,1,0,0],[2,3,3,1],[0,3,1,2],[1,2,2,1]],[[1,1,0,0],[3,3,3,1],[0,3,1,2],[1,2,2,1]],[[1,1,0,0],[2,4,3,1],[0,3,1,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,4,1,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,1,3],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,1,2],[2,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,1,2],[1,3,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,1,2],[1,2,3,1]],[[1,1,0,0],[2,3,3,1],[0,3,1,2],[1,2,2,2]],[[2,1,0,0],[2,3,3,1],[0,3,2,1],[1,2,2,1]],[[1,1,0,0],[3,3,3,1],[0,3,2,1],[1,2,2,1]],[[1,1,0,0],[2,4,3,1],[0,3,2,1],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,4,2,1],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,2,1],[2,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,2,1],[1,3,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,2,1],[1,2,3,1]],[[1,1,0,0],[2,3,3,1],[0,3,2,1],[1,2,2,2]],[[1,1,0,0],[2,3,3,1],[0,3,2,3],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,2,2],[1,1,3,1]],[[1,1,0,0],[2,3,3,1],[0,3,2,2],[1,1,2,2]],[[2,1,0,0],[2,3,3,1],[0,3,2,2],[1,2,2,0]],[[1,1,0,0],[3,3,3,1],[0,3,2,2],[1,2,2,0]],[[1,1,0,0],[2,4,3,1],[0,3,2,2],[1,2,2,0]],[[1,1,0,0],[2,3,3,1],[0,4,2,2],[1,2,2,0]],[[1,1,0,0],[2,3,3,1],[0,3,2,2],[2,2,2,0]],[[1,1,0,0],[2,3,3,1],[0,3,2,2],[1,3,2,0]],[[1,1,0,0],[2,3,3,1],[0,3,2,2],[1,2,3,0]],[[2,1,0,0],[2,3,3,1],[0,3,3,0],[1,2,2,1]],[[1,1,0,0],[3,3,3,1],[0,3,3,0],[1,2,2,1]],[[1,1,0,0],[2,4,3,1],[0,3,3,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,4,3,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,0],[2,2,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,0],[1,3,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,0],[1,2,3,1]],[[2,1,0,0],[2,3,3,1],[0,3,3,1],[1,1,2,1]],[[1,1,0,0],[3,3,3,1],[0,3,3,1],[1,1,2,1]],[[1,1,0,0],[2,4,3,1],[0,3,3,1],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[0,4,3,1],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,4,1],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,1],[1,1,3,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,1],[1,1,2,2]],[[2,1,0,0],[2,3,3,1],[0,3,3,1],[1,2,1,1]],[[1,1,0,0],[3,3,3,1],[0,3,3,1],[1,2,1,1]],[[1,1,0,0],[2,4,3,1],[0,3,3,1],[1,2,1,1]],[[1,1,0,0],[2,3,3,1],[0,4,3,1],[1,2,1,1]],[[1,1,0,0],[2,3,3,1],[0,3,4,1],[1,2,1,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,1],[2,2,1,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,1],[1,3,1,1]],[[1,1,0,0],[2,3,3,1],[0,3,4,2],[1,0,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,3],[1,0,2,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,2],[1,0,2,2]],[[2,1,0,0],[2,3,3,1],[0,3,3,2],[1,1,1,1]],[[1,1,0,0],[3,3,3,1],[0,3,3,2],[1,1,1,1]],[[1,1,0,0],[2,4,3,1],[0,3,3,2],[1,1,1,1]],[[1,1,0,0],[2,3,3,1],[0,4,3,2],[1,1,1,1]],[[1,1,0,0],[2,3,3,1],[0,3,4,2],[1,1,1,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,3],[1,1,1,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,2],[1,1,1,2]],[[2,1,0,0],[2,3,3,1],[0,3,3,2],[1,1,2,0]],[[1,1,0,0],[3,3,3,1],[0,3,3,2],[1,1,2,0]],[[1,1,0,0],[2,4,3,1],[0,3,3,2],[1,1,2,0]],[[1,1,0,0],[2,3,3,1],[0,4,3,2],[1,1,2,0]],[[1,1,0,0],[2,3,3,1],[0,3,4,2],[1,1,2,0]],[[1,1,0,0],[2,3,3,1],[0,3,3,3],[1,1,2,0]],[[1,1,0,0],[2,3,3,1],[0,3,3,2],[1,1,3,0]],[[2,1,0,0],[2,3,3,1],[0,3,3,2],[1,2,0,1]],[[1,1,0,0],[3,3,3,1],[0,3,3,2],[1,2,0,1]],[[1,1,0,0],[2,4,3,1],[0,3,3,2],[1,2,0,1]],[[1,1,0,0],[2,3,3,1],[0,4,3,2],[1,2,0,1]],[[1,1,0,0],[2,3,3,1],[0,3,4,2],[1,2,0,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,3],[1,2,0,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,2],[2,2,0,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,2],[1,3,0,1]],[[1,1,0,0],[2,3,3,1],[0,3,3,2],[1,2,0,2]],[[2,1,0,0],[2,3,3,1],[0,3,3,2],[1,2,1,0]],[[1,1,0,0],[3,3,3,1],[0,3,3,2],[1,2,1,0]],[[1,1,0,0],[2,4,3,1],[0,3,3,2],[1,2,1,0]],[[1,1,0,0],[2,3,3,1],[0,4,3,2],[1,2,1,0]],[[1,1,0,0],[2,3,3,1],[0,3,4,2],[1,2,1,0]],[[1,1,0,0],[2,3,3,1],[0,3,3,3],[1,2,1,0]],[[1,1,0,0],[2,3,3,1],[0,3,3,2],[2,2,1,0]],[[1,1,0,0],[2,3,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,2,2],[1,0,3,2],[0,2,2,2]],[[1,2,1,1],[0,3,2,2],[1,0,3,2],[0,2,3,1]],[[1,2,1,1],[0,3,2,2],[1,0,3,3],[0,2,2,1]],[[1,2,1,1],[0,3,2,3],[1,0,3,2],[0,2,2,1]],[[1,2,1,2],[0,3,2,2],[1,0,3,2],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[1,2,2,3],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[1,2,2,2],[0,3,2,1]],[[1,1,0,0],[2,3,3,1],[1,2,2,2],[0,2,3,1]],[[1,1,0,0],[2,3,3,1],[1,2,2,2],[0,2,2,2]],[[1,1,0,0],[2,3,3,1],[1,2,4,1],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[1,2,3,1],[0,3,2,1]],[[1,1,0,0],[2,3,3,1],[1,2,3,1],[0,2,3,1]],[[1,1,0,0],[2,3,3,1],[1,2,3,1],[0,2,2,2]],[[1,1,0,0],[2,3,3,1],[1,2,4,2],[0,2,1,1]],[[1,1,0,0],[2,3,3,1],[1,2,3,3],[0,2,1,1]],[[1,1,0,0],[2,3,3,1],[1,2,3,2],[0,2,1,2]],[[1,1,0,0],[2,3,3,1],[1,2,4,2],[0,2,2,0]],[[1,1,0,0],[2,3,3,1],[1,2,3,3],[0,2,2,0]],[[1,1,0,0],[2,3,3,1],[1,2,3,2],[0,3,2,0]],[[1,1,0,0],[2,3,3,1],[1,2,3,2],[0,2,3,0]],[[2,1,0,0],[2,3,3,1],[1,3,1,2],[0,2,2,1]],[[1,1,0,0],[3,3,3,1],[1,3,1,2],[0,2,2,1]],[[1,1,0,0],[2,4,3,1],[1,3,1,2],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[1,4,1,2],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,1,3],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,1,2],[0,3,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,1,2],[0,2,3,1]],[[1,1,0,0],[2,3,3,1],[1,3,1,2],[0,2,2,2]],[[2,1,0,0],[2,3,3,1],[1,3,1,2],[1,1,2,1]],[[1,1,0,0],[3,3,3,1],[1,3,1,2],[1,1,2,1]],[[1,1,0,0],[2,4,3,1],[1,3,1,2],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[1,4,1,2],[1,1,2,1]],[[2,1,0,0],[2,3,3,1],[1,3,2,1],[0,2,2,1]],[[1,1,0,0],[3,3,3,1],[1,3,2,1],[0,2,2,1]],[[1,1,0,0],[2,4,3,1],[1,3,2,1],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[1,4,2,1],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,2,1],[0,3,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,2,1],[0,2,3,1]],[[1,1,0,0],[2,3,3,1],[1,3,2,1],[0,2,2,2]],[[2,1,0,0],[2,3,3,1],[1,3,2,1],[1,1,2,1]],[[1,1,0,0],[3,3,3,1],[1,3,2,1],[1,1,2,1]],[[1,1,0,0],[2,4,3,1],[1,3,2,1],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[1,4,2,1],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,2,3],[0,1,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,2,2],[0,1,3,1]],[[1,1,0,0],[2,3,3,1],[1,3,2,2],[0,1,2,2]],[[2,1,0,0],[2,3,3,1],[1,3,2,2],[0,2,2,0]],[[1,1,0,0],[3,3,3,1],[1,3,2,2],[0,2,2,0]],[[1,1,0,0],[2,4,3,1],[1,3,2,2],[0,2,2,0]],[[1,1,0,0],[2,3,3,1],[1,4,2,2],[0,2,2,0]],[[1,1,0,0],[2,3,3,1],[1,3,2,2],[0,3,2,0]],[[1,1,0,0],[2,3,3,1],[1,3,2,2],[0,2,3,0]],[[1,1,0,0],[2,3,3,1],[1,3,2,3],[1,0,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,2,2],[1,0,3,1]],[[1,1,0,0],[2,3,3,1],[1,3,2,2],[1,0,2,2]],[[2,1,0,0],[2,3,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,0,0],[3,3,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,0,0],[2,4,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,0,0],[2,3,3,1],[1,4,2,2],[1,1,2,0]],[[2,1,0,0],[2,3,3,1],[1,3,3,0],[0,2,2,1]],[[1,1,0,0],[3,3,3,1],[1,3,3,0],[0,2,2,1]],[[1,1,0,0],[2,4,3,1],[1,3,3,0],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[1,4,3,0],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,0],[0,3,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,0],[0,2,3,1]],[[2,1,0,0],[2,3,3,1],[1,3,3,0],[1,1,2,1]],[[1,1,0,0],[3,3,3,1],[1,3,3,0],[1,1,2,1]],[[1,1,0,0],[2,4,3,1],[1,3,3,0],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[1,4,3,0],[1,1,2,1]],[[2,1,0,0],[2,3,3,1],[1,3,3,1],[0,1,2,1]],[[1,1,0,0],[3,3,3,1],[1,3,3,1],[0,1,2,1]],[[1,1,0,0],[2,4,3,1],[1,3,3,1],[0,1,2,1]],[[1,1,0,0],[2,3,3,1],[1,4,3,1],[0,1,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,4,1],[0,1,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,1],[0,1,3,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,1],[0,1,2,2]],[[2,1,0,0],[2,3,3,1],[1,3,3,1],[0,2,1,1]],[[1,1,0,0],[3,3,3,1],[1,3,3,1],[0,2,1,1]],[[1,1,0,0],[2,4,3,1],[1,3,3,1],[0,2,1,1]],[[1,1,0,0],[2,3,3,1],[1,4,3,1],[0,2,1,1]],[[1,1,0,0],[2,3,3,1],[1,3,4,1],[0,2,1,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,1],[0,3,1,1]],[[2,1,0,0],[2,3,3,1],[1,3,3,1],[1,0,2,1]],[[1,1,0,0],[3,3,3,1],[1,3,3,1],[1,0,2,1]],[[1,1,0,0],[2,4,3,1],[1,3,3,1],[1,0,2,1]],[[1,1,0,0],[2,3,3,1],[1,4,3,1],[1,0,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,4,1],[1,0,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,1],[1,0,3,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,1],[1,0,2,2]],[[2,1,0,0],[2,3,3,1],[1,3,3,1],[1,1,1,1]],[[1,1,0,0],[3,3,3,1],[1,3,3,1],[1,1,1,1]],[[1,1,0,0],[2,4,3,1],[1,3,3,1],[1,1,1,1]],[[1,1,0,0],[2,3,3,1],[1,4,3,1],[1,1,1,1]],[[1,1,0,0],[2,3,3,1],[1,3,4,1],[1,1,1,1]],[[2,1,0,0],[2,3,3,1],[1,3,3,1],[1,2,0,1]],[[1,1,0,0],[3,3,3,1],[1,3,3,1],[1,2,0,1]],[[1,1,0,0],[2,4,3,1],[1,3,3,1],[1,2,0,1]],[[1,1,0,0],[2,3,3,1],[1,4,3,1],[1,2,0,1]],[[1,1,0,0],[2,3,3,1],[1,3,4,2],[0,0,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,3],[0,0,2,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,2],[0,0,2,2]],[[2,1,0,0],[2,3,3,1],[1,3,3,2],[0,1,1,1]],[[1,1,0,0],[3,3,3,1],[1,3,3,2],[0,1,1,1]],[[1,1,0,0],[2,4,3,1],[1,3,3,2],[0,1,1,1]],[[1,1,0,0],[2,3,3,1],[1,4,3,2],[0,1,1,1]],[[1,1,0,0],[2,3,3,1],[1,3,4,2],[0,1,1,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,3],[0,1,1,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,2],[0,1,1,2]],[[2,1,0,0],[2,3,3,1],[1,3,3,2],[0,1,2,0]],[[1,1,0,0],[3,3,3,1],[1,3,3,2],[0,1,2,0]],[[1,1,0,0],[2,4,3,1],[1,3,3,2],[0,1,2,0]],[[1,1,0,0],[2,3,3,1],[1,4,3,2],[0,1,2,0]],[[1,1,0,0],[2,3,3,1],[1,3,4,2],[0,1,2,0]],[[1,1,0,0],[2,3,3,1],[1,3,3,3],[0,1,2,0]],[[1,1,0,0],[2,3,3,1],[1,3,3,2],[0,1,3,0]],[[2,1,0,0],[2,3,3,1],[1,3,3,2],[0,2,0,1]],[[1,1,0,0],[3,3,3,1],[1,3,3,2],[0,2,0,1]],[[1,1,0,0],[2,4,3,1],[1,3,3,2],[0,2,0,1]],[[1,1,0,0],[2,3,3,1],[1,4,3,2],[0,2,0,1]],[[1,1,0,0],[2,3,3,1],[1,3,4,2],[0,2,0,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,3],[0,2,0,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,2],[0,3,0,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,2],[0,2,0,2]],[[2,1,0,0],[2,3,3,1],[1,3,3,2],[0,2,1,0]],[[1,1,0,0],[3,3,3,1],[1,3,3,2],[0,2,1,0]],[[1,1,0,0],[2,4,3,1],[1,3,3,2],[0,2,1,0]],[[1,1,0,0],[2,3,3,1],[1,4,3,2],[0,2,1,0]],[[1,1,0,0],[2,3,3,1],[1,3,4,2],[0,2,1,0]],[[1,1,0,0],[2,3,3,1],[1,3,3,3],[0,2,1,0]],[[1,1,0,0],[2,3,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,1,1],[0,3,2,2],[0,3,4,2],[0,2,1,0]],[[1,2,1,1],[0,3,2,3],[0,3,3,2],[0,2,1,0]],[[1,2,1,2],[0,3,2,2],[0,3,3,2],[0,2,1,0]],[[2,1,0,0],[2,3,3,1],[1,3,3,2],[1,0,1,1]],[[1,1,0,0],[3,3,3,1],[1,3,3,2],[1,0,1,1]],[[1,1,0,0],[2,4,3,1],[1,3,3,2],[1,0,1,1]],[[1,1,0,0],[2,3,3,1],[1,4,3,2],[1,0,1,1]],[[1,1,0,0],[2,3,3,1],[1,3,4,2],[1,0,1,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,3],[1,0,1,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,2],[1,0,1,2]],[[2,1,0,0],[2,3,3,1],[1,3,3,2],[1,0,2,0]],[[1,1,0,0],[3,3,3,1],[1,3,3,2],[1,0,2,0]],[[1,1,0,0],[2,4,3,1],[1,3,3,2],[1,0,2,0]],[[1,1,0,0],[2,3,3,1],[1,4,3,2],[1,0,2,0]],[[1,1,0,0],[2,3,3,1],[1,3,4,2],[1,0,2,0]],[[1,1,0,0],[2,3,3,1],[1,3,3,3],[1,0,2,0]],[[1,1,0,0],[2,3,3,1],[1,3,3,2],[1,0,3,0]],[[2,1,0,0],[2,3,3,1],[1,3,3,2],[1,1,0,1]],[[1,1,0,0],[3,3,3,1],[1,3,3,2],[1,1,0,1]],[[1,1,0,0],[2,4,3,1],[1,3,3,2],[1,1,0,1]],[[1,1,0,0],[2,3,3,1],[1,4,3,2],[1,1,0,1]],[[1,1,0,0],[2,3,3,1],[1,3,4,2],[1,1,0,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,3],[1,1,0,1]],[[1,1,0,0],[2,3,3,1],[1,3,3,2],[1,1,0,2]],[[2,1,0,0],[2,3,3,1],[1,3,3,2],[1,1,1,0]],[[1,1,0,0],[3,3,3,1],[1,3,3,2],[1,1,1,0]],[[1,1,0,0],[2,4,3,1],[1,3,3,2],[1,1,1,0]],[[1,1,0,0],[2,3,3,1],[1,4,3,2],[1,1,1,0]],[[1,1,0,0],[2,3,3,1],[1,3,4,2],[1,1,1,0]],[[1,1,0,0],[2,3,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,3,2,2],[0,3,3,2],[0,2,0,2]],[[1,2,1,1],[0,3,2,2],[0,3,3,3],[0,2,0,1]],[[1,2,1,1],[0,3,2,2],[0,3,4,2],[0,2,0,1]],[[1,2,1,1],[0,3,2,3],[0,3,3,2],[0,2,0,1]],[[1,2,1,2],[0,3,2,2],[0,3,3,2],[0,2,0,1]],[[2,1,0,0],[2,3,3,1],[1,3,3,2],[1,2,0,0]],[[1,1,0,0],[3,3,3,1],[1,3,3,2],[1,2,0,0]],[[1,1,0,0],[2,4,3,1],[1,3,3,2],[1,2,0,0]],[[1,1,0,0],[2,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[0,3,2,2],[0,3,3,2],[0,1,3,0]],[[1,2,1,1],[0,3,2,2],[0,3,3,3],[0,1,2,0]],[[1,2,1,1],[0,3,2,2],[0,3,4,2],[0,1,2,0]],[[1,2,1,1],[0,3,2,3],[0,3,3,2],[0,1,2,0]],[[1,2,1,2],[0,3,2,2],[0,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,2,2],[0,3,3,2],[0,1,1,2]],[[1,2,1,1],[0,3,2,2],[0,3,3,3],[0,1,1,1]],[[1,2,1,1],[0,3,2,2],[0,3,4,2],[0,1,1,1]],[[1,2,1,1],[0,3,2,3],[0,3,3,2],[0,1,1,1]],[[1,2,1,2],[0,3,2,2],[0,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,2,2],[0,3,3,2],[0,0,2,2]],[[1,2,1,1],[0,3,2,2],[0,3,3,3],[0,0,2,1]],[[1,2,1,1],[0,3,2,2],[0,3,4,2],[0,0,2,1]],[[1,2,1,1],[0,3,2,3],[0,3,3,2],[0,0,2,1]],[[1,2,1,2],[0,3,2,2],[0,3,3,2],[0,0,2,1]],[[1,2,1,1],[0,3,2,2],[0,3,3,1],[0,1,2,2]],[[2,1,0,0],[2,3,3,1],[2,0,2,2],[1,2,2,1]],[[1,1,0,0],[3,3,3,1],[2,0,2,2],[1,2,2,1]],[[1,1,0,0],[2,4,3,1],[2,0,2,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[3,0,2,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,0,2,3],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,0,2,2],[2,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,0,2,2],[1,3,2,1]],[[1,1,0,0],[2,3,3,1],[2,0,2,2],[1,2,3,1]],[[1,1,0,0],[2,3,3,1],[2,0,2,2],[1,2,2,2]],[[2,1,0,0],[2,3,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,0,0],[3,3,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,0,0],[2,4,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[3,0,3,1],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,0,4,1],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,0,3,1],[2,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,0,3,1],[1,3,2,1]],[[1,1,0,0],[2,3,3,1],[2,0,3,1],[1,2,3,1]],[[1,1,0,0],[2,3,3,1],[2,0,3,1],[1,2,2,2]],[[1,1,0,0],[2,3,3,1],[2,0,4,2],[1,2,1,1]],[[1,1,0,0],[2,3,3,1],[2,0,3,3],[1,2,1,1]],[[1,1,0,0],[2,3,3,1],[2,0,3,2],[1,2,1,2]],[[2,1,0,0],[2,3,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,0,0],[3,3,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,0,0],[2,4,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,0,0],[2,3,3,1],[3,0,3,2],[1,2,2,0]],[[1,1,0,0],[2,3,3,1],[2,0,4,2],[1,2,2,0]],[[1,1,0,0],[2,3,3,1],[2,0,3,3],[1,2,2,0]],[[1,1,0,0],[2,3,3,1],[2,0,3,2],[2,2,2,0]],[[1,1,0,0],[2,3,3,1],[2,0,3,2],[1,3,2,0]],[[1,1,0,0],[2,3,3,1],[2,0,3,2],[1,2,3,0]],[[2,1,0,0],[2,3,3,1],[2,1,1,2],[1,2,2,1]],[[1,1,0,0],[3,3,3,1],[2,1,1,2],[1,2,2,1]],[[1,1,0,0],[2,4,3,1],[2,1,1,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[3,1,1,2],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,1,1,3],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,1,1,2],[2,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,1,1,2],[1,3,2,1]],[[1,1,0,0],[2,3,3,1],[2,1,1,2],[1,2,3,1]],[[1,1,0,0],[2,3,3,1],[2,1,1,2],[1,2,2,2]],[[2,1,0,0],[2,3,3,1],[2,1,2,1],[1,2,2,1]],[[1,1,0,0],[3,3,3,1],[2,1,2,1],[1,2,2,1]],[[1,1,0,0],[2,4,3,1],[2,1,2,1],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[3,1,2,1],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,1,2,1],[2,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,1,2,1],[1,3,2,1]],[[1,1,0,0],[2,3,3,1],[2,1,2,1],[1,2,3,1]],[[1,1,0,0],[2,3,3,1],[2,1,2,1],[1,2,2,2]],[[2,1,0,0],[2,3,3,1],[2,1,2,2],[1,2,2,0]],[[1,1,0,0],[3,3,3,1],[2,1,2,2],[1,2,2,0]],[[1,1,0,0],[2,4,3,1],[2,1,2,2],[1,2,2,0]],[[1,1,0,0],[2,3,3,1],[3,1,2,2],[1,2,2,0]],[[1,1,0,0],[2,3,3,1],[2,1,2,2],[2,2,2,0]],[[1,1,0,0],[2,3,3,1],[2,1,2,2],[1,3,2,0]],[[1,1,0,0],[2,3,3,1],[2,1,2,2],[1,2,3,0]],[[2,1,0,0],[2,3,3,1],[2,1,3,0],[1,2,2,1]],[[1,1,0,0],[3,3,3,1],[2,1,3,0],[1,2,2,1]],[[1,1,0,0],[2,4,3,1],[2,1,3,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[3,1,3,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,1,3,0],[2,2,2,1]],[[1,1,0,0],[2,3,3,1],[2,1,3,0],[1,3,2,1]],[[1,1,0,0],[2,3,3,1],[2,1,3,0],[1,2,3,1]],[[2,1,0,0],[2,3,3,1],[2,1,3,1],[1,2,1,1]],[[1,1,0,0],[3,3,3,1],[2,1,3,1],[1,2,1,1]],[[1,1,0,0],[2,4,3,1],[2,1,3,1],[1,2,1,1]],[[1,1,0,0],[2,3,3,1],[3,1,3,1],[1,2,1,1]],[[1,1,0,0],[2,3,3,1],[2,1,3,1],[2,2,1,1]],[[1,1,0,0],[2,3,3,1],[2,1,3,1],[1,3,1,1]],[[2,1,0,0],[2,3,3,1],[2,1,3,2],[1,2,0,1]],[[1,1,0,0],[3,3,3,1],[2,1,3,2],[1,2,0,1]],[[1,1,0,0],[2,4,3,1],[2,1,3,2],[1,2,0,1]],[[1,1,0,0],[2,3,3,1],[3,1,3,2],[1,2,0,1]],[[1,1,0,0],[2,3,3,1],[2,1,3,2],[2,2,0,1]],[[1,1,0,0],[2,3,3,1],[2,1,3,2],[1,3,0,1]],[[2,1,0,0],[2,3,3,1],[2,1,3,2],[1,2,1,0]],[[1,1,0,0],[3,3,3,1],[2,1,3,2],[1,2,1,0]],[[1,1,0,0],[2,4,3,1],[2,1,3,2],[1,2,1,0]],[[1,1,0,0],[2,3,3,1],[3,1,3,2],[1,2,1,0]],[[1,1,0,0],[2,3,3,1],[2,1,3,2],[2,2,1,0]],[[1,1,0,0],[2,3,3,1],[2,1,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,2,2],[0,3,3,1],[0,1,3,1]],[[1,2,1,1],[0,3,2,2],[0,3,4,1],[0,1,2,1]],[[2,1,0,0],[2,3,3,1],[2,2,1,2],[0,2,2,1]],[[1,1,0,0],[3,3,3,1],[2,2,1,2],[0,2,2,1]],[[1,1,0,0],[2,4,3,1],[2,2,1,2],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[3,2,1,2],[0,2,2,1]],[[2,1,0,0],[2,3,3,1],[2,2,1,2],[1,1,2,1]],[[1,1,0,0],[3,3,3,1],[2,2,1,2],[1,1,2,1]],[[1,1,0,0],[2,4,3,1],[2,2,1,2],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[3,2,1,2],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[2,2,1,2],[2,1,2,1]],[[2,1,0,0],[2,3,3,1],[2,2,2,1],[0,2,2,1]],[[1,1,0,0],[3,3,3,1],[2,2,2,1],[0,2,2,1]],[[1,1,0,0],[2,4,3,1],[2,2,2,1],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[3,2,2,1],[0,2,2,1]],[[2,1,0,0],[2,3,3,1],[2,2,2,1],[1,1,2,1]],[[1,1,0,0],[3,3,3,1],[2,2,2,1],[1,1,2,1]],[[1,1,0,0],[2,4,3,1],[2,2,2,1],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[3,2,2,1],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[2,2,2,1],[2,1,2,1]],[[2,1,0,0],[2,3,3,1],[2,2,2,2],[0,2,2,0]],[[1,1,0,0],[3,3,3,1],[2,2,2,2],[0,2,2,0]],[[1,1,0,0],[2,4,3,1],[2,2,2,2],[0,2,2,0]],[[1,1,0,0],[2,3,3,1],[3,2,2,2],[0,2,2,0]],[[2,1,0,0],[2,3,3,1],[2,2,2,2],[1,1,2,0]],[[1,1,0,0],[3,3,3,1],[2,2,2,2],[1,1,2,0]],[[1,1,0,0],[2,4,3,1],[2,2,2,2],[1,1,2,0]],[[1,1,0,0],[2,3,3,1],[3,2,2,2],[1,1,2,0]],[[1,1,0,0],[2,3,3,1],[2,2,2,2],[2,1,2,0]],[[1,2,1,1],[0,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,2,1,1],[0,3,2,2],[0,3,2,2],[0,1,3,1]],[[1,2,1,1],[0,3,2,2],[0,3,2,3],[0,1,2,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,0],[0,2,2,1]],[[1,1,0,0],[3,3,3,1],[2,2,3,0],[0,2,2,1]],[[1,1,0,0],[2,4,3,1],[2,2,3,0],[0,2,2,1]],[[1,1,0,0],[2,3,3,1],[3,2,3,0],[0,2,2,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,0],[1,1,2,1]],[[1,1,0,0],[3,3,3,1],[2,2,3,0],[1,1,2,1]],[[1,1,0,0],[2,4,3,1],[2,2,3,0],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[3,2,3,0],[1,1,2,1]],[[1,1,0,0],[2,3,3,1],[2,2,3,0],[2,1,2,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,1],[0,1,2,1]],[[1,1,0,0],[3,3,3,1],[2,2,3,1],[0,1,2,1]],[[1,1,0,0],[2,4,3,1],[2,2,3,1],[0,1,2,1]],[[1,1,0,0],[2,3,3,1],[3,2,3,1],[0,1,2,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,0,0],[3,3,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,0,0],[2,4,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,0,0],[2,3,3,1],[3,2,3,1],[0,2,1,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,1],[1,0,2,1]],[[1,1,0,0],[3,3,3,1],[2,2,3,1],[1,0,2,1]],[[1,1,0,0],[2,4,3,1],[2,2,3,1],[1,0,2,1]],[[1,1,0,0],[2,3,3,1],[3,2,3,1],[1,0,2,1]],[[1,1,0,0],[2,3,3,1],[2,2,3,1],[2,0,2,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,1],[1,1,1,1]],[[1,1,0,0],[3,3,3,1],[2,2,3,1],[1,1,1,1]],[[1,1,0,0],[2,4,3,1],[2,2,3,1],[1,1,1,1]],[[1,1,0,0],[2,3,3,1],[3,2,3,1],[1,1,1,1]],[[1,1,0,0],[2,3,3,1],[2,2,3,1],[2,1,1,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,1],[1,2,0,1]],[[1,1,0,0],[3,3,3,1],[2,2,3,1],[1,2,0,1]],[[1,1,0,0],[2,4,3,1],[2,2,3,1],[1,2,0,1]],[[1,1,0,0],[2,3,3,1],[3,2,3,1],[1,2,0,1]],[[1,1,0,0],[2,3,3,1],[2,2,3,1],[2,2,0,1]],[[1,2,1,1],[0,3,2,3],[0,3,2,2],[0,1,2,1]],[[1,2,1,2],[0,3,2,2],[0,3,2,2],[0,1,2,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,2],[0,1,1,1]],[[1,1,0,0],[3,3,3,1],[2,2,3,2],[0,1,1,1]],[[1,1,0,0],[2,4,3,1],[2,2,3,2],[0,1,1,1]],[[1,1,0,0],[2,3,3,1],[3,2,3,2],[0,1,1,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,2],[0,1,2,0]],[[1,1,0,0],[3,3,3,1],[2,2,3,2],[0,1,2,0]],[[1,1,0,0],[2,4,3,1],[2,2,3,2],[0,1,2,0]],[[1,1,0,0],[2,3,3,1],[3,2,3,2],[0,1,2,0]],[[2,1,0,0],[2,3,3,1],[2,2,3,2],[0,2,0,1]],[[1,1,0,0],[3,3,3,1],[2,2,3,2],[0,2,0,1]],[[1,1,0,0],[2,4,3,1],[2,2,3,2],[0,2,0,1]],[[1,1,0,0],[2,3,3,1],[3,2,3,2],[0,2,0,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,2],[0,2,1,0]],[[1,1,0,0],[3,3,3,1],[2,2,3,2],[0,2,1,0]],[[1,1,0,0],[2,4,3,1],[2,2,3,2],[0,2,1,0]],[[1,1,0,0],[2,3,3,1],[3,2,3,2],[0,2,1,0]],[[1,2,1,1],[0,3,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,1,1],[0,3,2,2],[0,2,4,2],[1,2,1,0]],[[1,2,1,1],[0,3,2,3],[0,2,3,2],[1,2,1,0]],[[1,2,1,2],[0,3,2,2],[0,2,3,2],[1,2,1,0]],[[1,2,1,1],[0,3,2,2],[0,2,3,2],[1,2,0,2]],[[2,1,0,0],[2,3,3,1],[2,2,3,2],[1,0,1,1]],[[1,1,0,0],[3,3,3,1],[2,2,3,2],[1,0,1,1]],[[1,1,0,0],[2,4,3,1],[2,2,3,2],[1,0,1,1]],[[1,1,0,0],[2,3,3,1],[3,2,3,2],[1,0,1,1]],[[1,1,0,0],[2,3,3,1],[2,2,3,2],[2,0,1,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,2],[1,0,2,0]],[[1,1,0,0],[3,3,3,1],[2,2,3,2],[1,0,2,0]],[[1,1,0,0],[2,4,3,1],[2,2,3,2],[1,0,2,0]],[[1,1,0,0],[2,3,3,1],[3,2,3,2],[1,0,2,0]],[[1,1,0,0],[2,3,3,1],[2,2,3,2],[2,0,2,0]],[[2,1,0,0],[2,3,3,1],[2,2,3,2],[1,1,0,1]],[[1,1,0,0],[3,3,3,1],[2,2,3,2],[1,1,0,1]],[[1,1,0,0],[2,4,3,1],[2,2,3,2],[1,1,0,1]],[[1,1,0,0],[2,3,3,1],[3,2,3,2],[1,1,0,1]],[[1,1,0,0],[2,3,3,1],[2,2,3,2],[2,1,0,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,2],[1,1,1,0]],[[1,1,0,0],[3,3,3,1],[2,2,3,2],[1,1,1,0]],[[1,1,0,0],[2,4,3,1],[2,2,3,2],[1,1,1,0]],[[1,1,0,0],[2,3,3,1],[3,2,3,2],[1,1,1,0]],[[1,1,0,0],[2,3,3,1],[2,2,3,2],[2,1,1,0]],[[1,2,1,1],[0,3,2,2],[0,2,3,3],[1,2,0,1]],[[1,2,1,1],[0,3,2,2],[0,2,4,2],[1,2,0,1]],[[1,2,1,1],[0,3,2,3],[0,2,3,2],[1,2,0,1]],[[1,2,1,2],[0,3,2,2],[0,2,3,2],[1,2,0,1]],[[2,1,0,0],[2,3,3,1],[2,2,3,2],[1,2,0,0]],[[1,1,0,0],[3,3,3,1],[2,2,3,2],[1,2,0,0]],[[1,1,0,0],[2,4,3,1],[2,2,3,2],[1,2,0,0]],[[1,1,0,0],[2,3,3,1],[3,2,3,2],[1,2,0,0]],[[1,1,0,0],[2,3,3,1],[2,2,3,2],[2,2,0,0]],[[1,2,1,1],[0,3,2,2],[0,2,3,2],[1,1,3,0]],[[1,2,1,1],[0,3,2,2],[0,2,3,3],[1,1,2,0]],[[1,2,1,1],[0,3,2,2],[0,2,4,2],[1,1,2,0]],[[1,2,1,1],[0,3,2,3],[0,2,3,2],[1,1,2,0]],[[1,2,1,2],[0,3,2,2],[0,2,3,2],[1,1,2,0]],[[1,2,1,1],[0,3,2,2],[0,2,3,2],[1,1,1,2]],[[1,2,1,1],[0,3,2,2],[0,2,3,3],[1,1,1,1]],[[1,2,1,1],[0,3,2,2],[0,2,4,2],[1,1,1,1]],[[1,2,1,1],[0,3,2,3],[0,2,3,2],[1,1,1,1]],[[1,2,1,2],[0,3,2,2],[0,2,3,2],[1,1,1,1]],[[1,2,1,1],[0,3,2,2],[0,2,3,2],[1,0,2,2]],[[1,2,1,1],[0,3,2,2],[0,2,3,3],[1,0,2,1]],[[1,2,1,1],[0,3,2,2],[0,2,4,2],[1,0,2,1]],[[1,2,1,1],[0,3,2,3],[0,2,3,2],[1,0,2,1]],[[1,2,1,2],[0,3,2,2],[0,2,3,2],[1,0,2,1]],[[1,2,1,1],[0,3,2,2],[0,2,3,1],[1,1,2,2]],[[1,2,1,1],[0,3,2,2],[0,2,3,1],[1,1,3,1]],[[1,2,1,1],[0,3,2,2],[0,2,4,1],[1,1,2,1]],[[1,2,1,1],[0,3,2,2],[0,2,2,2],[1,1,2,2]],[[1,2,1,1],[0,3,2,2],[0,2,2,2],[1,1,3,1]],[[1,2,1,1],[0,3,2,2],[0,2,2,3],[1,1,2,1]],[[1,2,1,1],[0,3,2,3],[0,2,2,2],[1,1,2,1]],[[1,2,1,2],[0,3,2,2],[0,2,2,2],[1,1,2,1]],[[1,2,1,1],[0,3,2,2],[0,1,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,2,2],[0,1,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,2,2],[0,1,3,3],[1,2,2,0]],[[1,2,1,1],[0,3,2,2],[0,1,4,2],[1,2,2,0]],[[1,2,1,1],[0,3,2,3],[0,1,3,2],[1,2,2,0]],[[1,2,1,2],[0,3,2,2],[0,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,2,2],[0,1,3,2],[1,2,1,2]],[[1,2,1,1],[0,3,2,2],[0,1,3,3],[1,2,1,1]],[[1,2,1,1],[0,3,2,2],[0,1,4,2],[1,2,1,1]],[[1,2,1,1],[0,3,2,3],[0,1,3,2],[1,2,1,1]],[[1,2,1,2],[0,3,2,2],[0,1,3,2],[1,2,1,1]],[[1,2,1,1],[0,3,2,2],[0,1,3,1],[1,2,2,2]],[[1,2,1,1],[0,3,2,2],[0,1,3,1],[1,2,3,1]],[[1,2,1,1],[0,3,2,2],[0,1,3,1],[1,3,2,1]],[[1,2,1,1],[0,3,2,2],[0,1,4,1],[1,2,2,1]],[[1,2,1,1],[0,3,2,2],[0,1,2,2],[1,2,2,2]],[[1,2,1,1],[0,3,2,2],[0,1,2,2],[1,2,3,1]],[[1,2,1,1],[0,3,2,2],[0,1,2,2],[1,3,2,1]],[[1,2,1,1],[0,3,2,2],[0,1,2,3],[1,2,2,1]],[[1,2,1,1],[0,3,2,3],[0,1,2,2],[1,2,2,1]],[[1,2,1,2],[0,3,2,2],[0,1,2,2],[1,2,2,1]],[[1,2,1,1],[0,3,2,2],[0,0,3,2],[1,2,2,2]],[[1,2,1,1],[0,3,2,2],[0,0,3,2],[1,2,3,1]],[[1,2,1,1],[0,3,2,2],[0,0,3,3],[1,2,2,1]],[[1,2,1,1],[0,3,2,3],[0,0,3,2],[1,2,2,1]],[[1,2,1,2],[0,3,2,2],[0,0,3,2],[1,2,2,1]],[[2,1,0,0],[2,3,3,1],[2,3,3,1],[1,0,1,1]],[[1,1,0,0],[3,3,3,1],[2,3,3,1],[1,0,1,1]],[[1,1,0,0],[2,4,3,1],[2,3,3,1],[1,0,1,1]],[[1,1,0,0],[2,3,3,1],[3,3,3,1],[1,0,1,1]],[[2,1,0,0],[2,3,3,1],[2,3,3,2],[1,0,0,1]],[[1,1,0,0],[3,3,3,1],[2,3,3,2],[1,0,0,1]],[[1,1,0,0],[2,4,3,1],[2,3,3,2],[1,0,0,1]],[[1,1,0,0],[2,3,3,1],[3,3,3,2],[1,0,0,1]],[[2,1,0,0],[2,3,3,1],[2,3,3,2],[1,0,1,0]],[[1,1,0,0],[3,3,3,1],[2,3,3,2],[1,0,1,0]],[[1,1,0,0],[2,4,3,1],[2,3,3,2],[1,0,1,0]],[[1,1,0,0],[2,3,3,1],[3,3,3,2],[1,0,1,0]],[[1,2,1,1],[0,3,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[0,3,2,1],[2,4,3,1],[1,2,0,0]],[[1,2,1,1],[0,3,2,1],[3,3,3,1],[1,2,0,0]],[[1,2,1,1],[0,4,2,1],[2,3,3,1],[1,2,0,0]],[[1,3,1,1],[0,3,2,1],[2,3,3,1],[1,2,0,0]],[[2,2,1,1],[0,3,2,1],[2,3,3,1],[1,2,0,0]],[[1,2,1,1],[0,3,2,1],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[0,3,2,1],[2,3,4,1],[1,1,1,0]],[[1,2,1,1],[0,3,2,1],[2,4,3,1],[1,1,1,0]],[[1,2,1,1],[0,3,2,1],[3,3,3,1],[1,1,1,0]],[[1,2,1,1],[0,4,2,1],[2,3,3,1],[1,1,1,0]],[[1,3,1,1],[0,3,2,1],[2,3,3,1],[1,1,1,0]],[[2,2,1,1],[0,3,2,1],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[0,3,2,1],[2,3,3,1],[2,1,0,1]],[[1,2,1,1],[0,3,2,1],[2,3,4,1],[1,1,0,1]],[[1,2,1,1],[0,3,2,1],[2,4,3,1],[1,1,0,1]],[[1,2,1,1],[0,3,2,1],[3,3,3,1],[1,1,0,1]],[[1,2,1,1],[0,4,2,1],[2,3,3,1],[1,1,0,1]],[[1,3,1,1],[0,3,2,1],[2,3,3,1],[1,1,0,1]],[[2,2,1,1],[0,3,2,1],[2,3,3,1],[1,1,0,1]],[[1,2,1,1],[0,3,2,1],[2,3,3,1],[1,0,3,0]],[[1,2,1,1],[0,3,2,1],[2,3,3,1],[2,0,2,0]],[[1,2,1,1],[0,3,2,1],[2,3,4,1],[1,0,2,0]],[[1,2,1,1],[0,3,2,1],[2,4,3,1],[1,0,2,0]],[[1,2,1,1],[0,3,2,1],[3,3,3,1],[1,0,2,0]],[[1,2,1,1],[0,4,2,1],[2,3,3,1],[1,0,2,0]],[[1,3,1,1],[0,3,2,1],[2,3,3,1],[1,0,2,0]],[[2,2,1,1],[0,3,2,1],[2,3,3,1],[1,0,2,0]],[[1,2,1,1],[0,3,2,1],[2,3,3,1],[2,0,1,1]],[[1,2,1,1],[0,3,2,1],[2,3,4,1],[1,0,1,1]],[[1,2,1,1],[0,3,2,1],[2,4,3,1],[1,0,1,1]],[[1,2,1,1],[0,3,2,1],[3,3,3,1],[1,0,1,1]],[[1,2,1,1],[0,4,2,1],[2,3,3,1],[1,0,1,1]],[[1,3,1,1],[0,3,2,1],[2,3,3,1],[1,0,1,1]],[[2,2,1,1],[0,3,2,1],[2,3,3,1],[1,0,1,1]],[[1,2,1,1],[0,3,2,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[0,3,2,1],[2,3,4,1],[0,2,1,0]],[[1,2,1,1],[0,3,2,1],[2,4,3,1],[0,2,1,0]],[[1,2,1,1],[0,3,2,1],[3,3,3,1],[0,2,1,0]],[[1,2,1,1],[0,4,2,1],[2,3,3,1],[0,2,1,0]],[[1,3,1,1],[0,3,2,1],[2,3,3,1],[0,2,1,0]],[[2,2,1,1],[0,3,2,1],[2,3,3,1],[0,2,1,0]],[[1,2,1,1],[0,3,2,1],[2,3,3,1],[0,3,0,1]],[[1,2,1,1],[0,3,2,1],[2,3,4,1],[0,2,0,1]],[[1,2,1,1],[0,3,2,1],[2,4,3,1],[0,2,0,1]],[[1,2,1,1],[0,3,2,1],[3,3,3,1],[0,2,0,1]],[[1,2,1,1],[0,4,2,1],[2,3,3,1],[0,2,0,1]],[[1,3,1,1],[0,3,2,1],[2,3,3,1],[0,2,0,1]],[[2,2,1,1],[0,3,2,1],[2,3,3,1],[0,2,0,1]],[[1,1,0,0],[2,3,3,2],[0,2,4,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,2],[0,2,3,0],[2,2,2,1]],[[1,1,0,0],[2,3,3,2],[0,2,3,0],[1,3,2,1]],[[1,1,0,0],[2,3,3,2],[0,2,3,0],[1,2,3,1]],[[1,1,0,0],[2,3,3,2],[0,2,3,0],[1,2,2,2]],[[1,1,0,0],[2,3,3,2],[0,2,4,1],[1,2,2,0]],[[1,1,0,0],[2,3,3,2],[0,2,3,1],[2,2,2,0]],[[1,1,0,0],[2,3,3,2],[0,2,3,1],[1,3,2,0]],[[1,1,0,0],[2,3,3,2],[0,2,3,1],[1,2,3,0]],[[2,1,0,0],[2,3,3,2],[0,3,2,0],[1,2,2,1]],[[1,1,0,0],[3,3,3,2],[0,3,2,0],[1,2,2,1]],[[1,1,0,0],[2,4,3,2],[0,3,2,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,2],[0,4,2,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,2],[0,3,2,0],[2,2,2,1]],[[1,1,0,0],[2,3,3,2],[0,3,2,0],[1,3,2,1]],[[1,1,0,0],[2,3,3,2],[0,3,2,0],[1,2,3,1]],[[1,1,0,0],[2,3,3,2],[0,3,2,0],[1,2,2,2]],[[2,1,0,0],[2,3,3,2],[0,3,2,1],[1,2,2,0]],[[1,1,0,0],[3,3,3,2],[0,3,2,1],[1,2,2,0]],[[1,1,0,0],[2,4,3,2],[0,3,2,1],[1,2,2,0]],[[1,1,0,0],[2,3,3,2],[0,4,2,1],[1,2,2,0]],[[1,1,0,0],[2,3,3,2],[0,3,2,1],[2,2,2,0]],[[1,1,0,0],[2,3,3,2],[0,3,2,1],[1,3,2,0]],[[1,1,0,0],[2,3,3,2],[0,3,2,1],[1,2,3,0]],[[1,2,1,1],[0,3,2,1],[2,3,3,1],[0,1,3,0]],[[1,2,1,1],[0,3,2,1],[2,3,4,1],[0,1,2,0]],[[1,2,1,1],[0,3,2,1],[2,4,3,1],[0,1,2,0]],[[1,2,1,1],[0,3,2,1],[3,3,3,1],[0,1,2,0]],[[1,2,1,1],[0,4,2,1],[2,3,3,1],[0,1,2,0]],[[1,3,1,1],[0,3,2,1],[2,3,3,1],[0,1,2,0]],[[2,2,1,1],[0,3,2,1],[2,3,3,1],[0,1,2,0]],[[2,1,0,0],[2,3,3,2],[0,3,3,0],[1,1,2,1]],[[1,1,0,0],[3,3,3,2],[0,3,3,0],[1,1,2,1]],[[1,1,0,0],[2,4,3,2],[0,3,3,0],[1,1,2,1]],[[1,1,0,0],[2,3,3,2],[0,4,3,0],[1,1,2,1]],[[1,1,0,0],[2,3,3,2],[0,3,4,0],[1,1,2,1]],[[1,1,0,0],[2,3,3,2],[0,3,3,0],[1,1,3,1]],[[1,1,0,0],[2,3,3,2],[0,3,3,0],[1,1,2,2]],[[2,1,0,0],[2,3,3,2],[0,3,3,0],[1,2,1,1]],[[1,1,0,0],[3,3,3,2],[0,3,3,0],[1,2,1,1]],[[1,1,0,0],[2,4,3,2],[0,3,3,0],[1,2,1,1]],[[1,1,0,0],[2,3,3,2],[0,4,3,0],[1,2,1,1]],[[1,1,0,0],[2,3,3,2],[0,3,4,0],[1,2,1,1]],[[1,1,0,0],[2,3,3,2],[0,3,3,0],[2,2,1,1]],[[1,1,0,0],[2,3,3,2],[0,3,3,0],[1,3,1,1]],[[2,1,0,0],[2,3,3,2],[0,3,3,1],[1,1,1,1]],[[1,1,0,0],[3,3,3,2],[0,3,3,1],[1,1,1,1]],[[1,1,0,0],[2,4,3,2],[0,3,3,1],[1,1,1,1]],[[1,1,0,0],[2,3,3,2],[0,4,3,1],[1,1,1,1]],[[1,1,0,0],[2,3,3,2],[0,3,4,1],[1,1,1,1]],[[2,1,0,0],[2,3,3,2],[0,3,3,1],[1,1,2,0]],[[1,1,0,0],[3,3,3,2],[0,3,3,1],[1,1,2,0]],[[1,1,0,0],[2,4,3,2],[0,3,3,1],[1,1,2,0]],[[1,1,0,0],[2,3,3,2],[0,4,3,1],[1,1,2,0]],[[1,1,0,0],[2,3,3,2],[0,3,4,1],[1,1,2,0]],[[1,1,0,0],[2,3,3,2],[0,3,3,1],[1,1,3,0]],[[2,1,0,0],[2,3,3,2],[0,3,3,1],[1,2,0,1]],[[1,1,0,0],[3,3,3,2],[0,3,3,1],[1,2,0,1]],[[1,1,0,0],[2,4,3,2],[0,3,3,1],[1,2,0,1]],[[1,1,0,0],[2,3,3,2],[0,4,3,1],[1,2,0,1]],[[1,1,0,0],[2,3,3,2],[0,3,4,1],[1,2,0,1]],[[1,1,0,0],[2,3,3,2],[0,3,3,1],[2,2,0,1]],[[1,1,0,0],[2,3,3,2],[0,3,3,1],[1,3,0,1]],[[2,1,0,0],[2,3,3,2],[0,3,3,1],[1,2,1,0]],[[1,1,0,0],[3,3,3,2],[0,3,3,1],[1,2,1,0]],[[1,1,0,0],[2,4,3,2],[0,3,3,1],[1,2,1,0]],[[1,1,0,0],[2,3,3,2],[0,4,3,1],[1,2,1,0]],[[1,1,0,0],[2,3,3,2],[0,3,4,1],[1,2,1,0]],[[1,1,0,0],[2,3,3,2],[0,3,3,1],[2,2,1,0]],[[1,1,0,0],[2,3,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,3,2,1],[2,3,4,1],[0,1,1,1]],[[1,2,1,1],[0,3,2,1],[2,4,3,1],[0,1,1,1]],[[1,2,1,1],[0,3,2,1],[3,3,3,1],[0,1,1,1]],[[1,2,1,1],[0,4,2,1],[2,3,3,1],[0,1,1,1]],[[1,3,1,1],[0,3,2,1],[2,3,3,1],[0,1,1,1]],[[2,2,1,1],[0,3,2,1],[2,3,3,1],[0,1,1,1]],[[1,2,1,1],[0,3,2,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[0,3,2,1],[2,4,3,0],[1,2,0,1]],[[1,2,1,1],[0,3,2,1],[3,3,3,0],[1,2,0,1]],[[1,2,1,1],[0,4,2,1],[2,3,3,0],[1,2,0,1]],[[1,3,1,1],[0,3,2,1],[2,3,3,0],[1,2,0,1]],[[2,2,1,1],[0,3,2,1],[2,3,3,0],[1,2,0,1]],[[1,2,1,1],[0,3,2,1],[2,3,3,0],[2,1,1,1]],[[1,2,1,1],[0,3,2,1],[2,3,4,0],[1,1,1,1]],[[1,2,1,1],[0,3,2,1],[2,4,3,0],[1,1,1,1]],[[1,2,1,1],[0,3,2,1],[3,3,3,0],[1,1,1,1]],[[1,2,1,1],[0,4,2,1],[2,3,3,0],[1,1,1,1]],[[1,3,1,1],[0,3,2,1],[2,3,3,0],[1,1,1,1]],[[2,2,1,1],[0,3,2,1],[2,3,3,0],[1,1,1,1]],[[1,2,1,1],[0,3,2,1],[2,3,3,0],[1,0,2,2]],[[1,2,1,1],[0,3,2,1],[2,3,3,0],[1,0,3,1]],[[1,2,1,1],[0,3,2,1],[2,3,3,0],[2,0,2,1]],[[1,2,1,1],[0,3,2,1],[2,3,4,0],[1,0,2,1]],[[1,2,1,1],[0,3,2,1],[2,4,3,0],[1,0,2,1]],[[1,2,1,1],[0,3,2,1],[3,3,3,0],[1,0,2,1]],[[1,2,1,1],[0,4,2,1],[2,3,3,0],[1,0,2,1]],[[1,3,1,1],[0,3,2,1],[2,3,3,0],[1,0,2,1]],[[2,2,1,1],[0,3,2,1],[2,3,3,0],[1,0,2,1]],[[1,1,0,0],[2,3,3,2],[1,2,4,0],[0,2,2,1]],[[1,1,0,0],[2,3,3,2],[1,2,3,0],[0,3,2,1]],[[1,1,0,0],[2,3,3,2],[1,2,3,0],[0,2,3,1]],[[1,1,0,0],[2,3,3,2],[1,2,3,0],[0,2,2,2]],[[1,1,0,0],[2,3,3,2],[1,2,4,1],[0,2,2,0]],[[1,1,0,0],[2,3,3,2],[1,2,3,1],[0,3,2,0]],[[1,1,0,0],[2,3,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,1,1],[0,3,2,1],[2,3,3,0],[0,3,1,1]],[[1,2,1,1],[0,3,2,1],[2,3,4,0],[0,2,1,1]],[[1,2,1,1],[0,3,2,1],[2,4,3,0],[0,2,1,1]],[[1,2,1,1],[0,3,2,1],[3,3,3,0],[0,2,1,1]],[[1,2,1,1],[0,4,2,1],[2,3,3,0],[0,2,1,1]],[[1,3,1,1],[0,3,2,1],[2,3,3,0],[0,2,1,1]],[[2,2,1,1],[0,3,2,1],[2,3,3,0],[0,2,1,1]],[[1,2,1,1],[0,3,2,1],[2,3,3,0],[0,1,2,2]],[[1,2,1,1],[0,3,2,1],[2,3,3,0],[0,1,3,1]],[[1,2,1,1],[0,3,2,1],[2,3,4,0],[0,1,2,1]],[[1,2,1,1],[0,3,2,1],[2,4,3,0],[0,1,2,1]],[[1,2,1,1],[0,3,2,1],[3,3,3,0],[0,1,2,1]],[[1,2,1,1],[0,4,2,1],[2,3,3,0],[0,1,2,1]],[[1,3,1,1],[0,3,2,1],[2,3,3,0],[0,1,2,1]],[[2,2,1,1],[0,3,2,1],[2,3,3,0],[0,1,2,1]],[[2,1,0,0],[2,3,3,2],[1,3,2,0],[0,2,2,1]],[[1,1,0,0],[3,3,3,2],[1,3,2,0],[0,2,2,1]],[[1,1,0,0],[2,4,3,2],[1,3,2,0],[0,2,2,1]],[[1,1,0,0],[2,3,3,2],[1,4,2,0],[0,2,2,1]],[[1,1,0,0],[2,3,3,2],[1,3,2,0],[0,3,2,1]],[[1,1,0,0],[2,3,3,2],[1,3,2,0],[0,2,3,1]],[[1,1,0,0],[2,3,3,2],[1,3,2,0],[0,2,2,2]],[[2,1,0,0],[2,3,3,2],[1,3,2,0],[1,1,2,1]],[[1,1,0,0],[3,3,3,2],[1,3,2,0],[1,1,2,1]],[[1,1,0,0],[2,4,3,2],[1,3,2,0],[1,1,2,1]],[[1,1,0,0],[2,3,3,2],[1,4,2,0],[1,1,2,1]],[[2,1,0,0],[2,3,3,2],[1,3,2,1],[0,2,2,0]],[[1,1,0,0],[3,3,3,2],[1,3,2,1],[0,2,2,0]],[[1,1,0,0],[2,4,3,2],[1,3,2,1],[0,2,2,0]],[[1,1,0,0],[2,3,3,2],[1,4,2,1],[0,2,2,0]],[[1,1,0,0],[2,3,3,2],[1,3,2,1],[0,3,2,0]],[[1,1,0,0],[2,3,3,2],[1,3,2,1],[0,2,3,0]],[[2,1,0,0],[2,3,3,2],[1,3,2,1],[1,1,2,0]],[[1,1,0,0],[3,3,3,2],[1,3,2,1],[1,1,2,0]],[[1,1,0,0],[2,4,3,2],[1,3,2,1],[1,1,2,0]],[[1,1,0,0],[2,3,3,2],[1,4,2,1],[1,1,2,0]],[[1,2,1,1],[0,3,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[0,3,2,1],[2,4,2,1],[1,1,2,0]],[[1,2,1,1],[0,3,2,1],[3,3,2,1],[1,1,2,0]],[[1,2,1,1],[0,4,2,1],[2,3,2,1],[1,1,2,0]],[[1,3,1,1],[0,3,2,1],[2,3,2,1],[1,1,2,0]],[[2,2,1,1],[0,3,2,1],[2,3,2,1],[1,1,2,0]],[[1,2,1,1],[0,3,2,1],[2,3,2,1],[0,2,3,0]],[[1,2,1,1],[0,3,2,1],[2,3,2,1],[0,3,2,0]],[[1,2,1,1],[0,3,2,1],[2,4,2,1],[0,2,2,0]],[[1,2,1,1],[0,3,2,1],[3,3,2,1],[0,2,2,0]],[[1,2,1,1],[0,4,2,1],[2,3,2,1],[0,2,2,0]],[[1,3,1,1],[0,3,2,1],[2,3,2,1],[0,2,2,0]],[[2,1,0,0],[2,3,3,2],[1,3,3,0],[0,1,2,1]],[[1,1,0,0],[3,3,3,2],[1,3,3,0],[0,1,2,1]],[[1,1,0,0],[2,4,3,2],[1,3,3,0],[0,1,2,1]],[[1,1,0,0],[2,3,3,2],[1,4,3,0],[0,1,2,1]],[[1,1,0,0],[2,3,3,2],[1,3,4,0],[0,1,2,1]],[[1,1,0,0],[2,3,3,2],[1,3,3,0],[0,1,3,1]],[[1,1,0,0],[2,3,3,2],[1,3,3,0],[0,1,2,2]],[[2,1,0,0],[2,3,3,2],[1,3,3,0],[0,2,1,1]],[[1,1,0,0],[3,3,3,2],[1,3,3,0],[0,2,1,1]],[[1,1,0,0],[2,4,3,2],[1,3,3,0],[0,2,1,1]],[[1,1,0,0],[2,3,3,2],[1,4,3,0],[0,2,1,1]],[[1,1,0,0],[2,3,3,2],[1,3,4,0],[0,2,1,1]],[[1,1,0,0],[2,3,3,2],[1,3,3,0],[0,3,1,1]],[[2,1,0,0],[2,3,3,2],[1,3,3,0],[1,0,2,1]],[[1,1,0,0],[3,3,3,2],[1,3,3,0],[1,0,2,1]],[[1,1,0,0],[2,4,3,2],[1,3,3,0],[1,0,2,1]],[[1,1,0,0],[2,3,3,2],[1,4,3,0],[1,0,2,1]],[[1,1,0,0],[2,3,3,2],[1,3,4,0],[1,0,2,1]],[[1,1,0,0],[2,3,3,2],[1,3,3,0],[1,0,3,1]],[[1,1,0,0],[2,3,3,2],[1,3,3,0],[1,0,2,2]],[[2,1,0,0],[2,3,3,2],[1,3,3,0],[1,1,1,1]],[[1,1,0,0],[3,3,3,2],[1,3,3,0],[1,1,1,1]],[[1,1,0,0],[2,4,3,2],[1,3,3,0],[1,1,1,1]],[[1,1,0,0],[2,3,3,2],[1,4,3,0],[1,1,1,1]],[[1,1,0,0],[2,3,3,2],[1,3,4,0],[1,1,1,1]],[[2,1,0,0],[2,3,3,2],[1,3,3,0],[1,2,0,1]],[[1,1,0,0],[3,3,3,2],[1,3,3,0],[1,2,0,1]],[[1,1,0,0],[2,4,3,2],[1,3,3,0],[1,2,0,1]],[[1,1,0,0],[2,3,3,2],[1,4,3,0],[1,2,0,1]],[[2,2,1,1],[0,3,2,1],[2,3,2,1],[0,2,2,0]],[[2,1,0,0],[2,3,3,2],[1,3,3,1],[0,1,1,1]],[[1,1,0,0],[3,3,3,2],[1,3,3,1],[0,1,1,1]],[[1,1,0,0],[2,4,3,2],[1,3,3,1],[0,1,1,1]],[[1,1,0,0],[2,3,3,2],[1,4,3,1],[0,1,1,1]],[[1,1,0,0],[2,3,3,2],[1,3,4,1],[0,1,1,1]],[[2,1,0,0],[2,3,3,2],[1,3,3,1],[0,1,2,0]],[[1,1,0,0],[3,3,3,2],[1,3,3,1],[0,1,2,0]],[[1,1,0,0],[2,4,3,2],[1,3,3,1],[0,1,2,0]],[[1,1,0,0],[2,3,3,2],[1,4,3,1],[0,1,2,0]],[[1,1,0,0],[2,3,3,2],[1,3,4,1],[0,1,2,0]],[[1,1,0,0],[2,3,3,2],[1,3,3,1],[0,1,3,0]],[[2,1,0,0],[2,3,3,2],[1,3,3,1],[0,2,0,1]],[[1,1,0,0],[3,3,3,2],[1,3,3,1],[0,2,0,1]],[[1,1,0,0],[2,4,3,2],[1,3,3,1],[0,2,0,1]],[[1,1,0,0],[2,3,3,2],[1,4,3,1],[0,2,0,1]],[[1,1,0,0],[2,3,3,2],[1,3,4,1],[0,2,0,1]],[[1,1,0,0],[2,3,3,2],[1,3,3,1],[0,3,0,1]],[[2,1,0,0],[2,3,3,2],[1,3,3,1],[0,2,1,0]],[[1,1,0,0],[3,3,3,2],[1,3,3,1],[0,2,1,0]],[[1,1,0,0],[2,4,3,2],[1,3,3,1],[0,2,1,0]],[[1,1,0,0],[2,3,3,2],[1,4,3,1],[0,2,1,0]],[[1,1,0,0],[2,3,3,2],[1,3,4,1],[0,2,1,0]],[[1,1,0,0],[2,3,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,1,1],[0,3,2,1],[2,3,2,0],[2,1,2,1]],[[1,2,1,1],[0,3,2,1],[2,4,2,0],[1,1,2,1]],[[1,2,1,1],[0,3,2,1],[3,3,2,0],[1,1,2,1]],[[1,2,1,1],[0,4,2,1],[2,3,2,0],[1,1,2,1]],[[1,3,1,1],[0,3,2,1],[2,3,2,0],[1,1,2,1]],[[2,2,1,1],[0,3,2,1],[2,3,2,0],[1,1,2,1]],[[1,2,1,1],[0,3,2,1],[2,3,2,0],[0,2,2,2]],[[2,1,0,0],[2,3,3,2],[1,3,3,1],[1,0,1,1]],[[1,1,0,0],[3,3,3,2],[1,3,3,1],[1,0,1,1]],[[1,1,0,0],[2,4,3,2],[1,3,3,1],[1,0,1,1]],[[1,1,0,0],[2,3,3,2],[1,4,3,1],[1,0,1,1]],[[1,1,0,0],[2,3,3,2],[1,3,4,1],[1,0,1,1]],[[2,1,0,0],[2,3,3,2],[1,3,3,1],[1,0,2,0]],[[1,1,0,0],[3,3,3,2],[1,3,3,1],[1,0,2,0]],[[1,1,0,0],[2,4,3,2],[1,3,3,1],[1,0,2,0]],[[1,1,0,0],[2,3,3,2],[1,4,3,1],[1,0,2,0]],[[1,1,0,0],[2,3,3,2],[1,3,4,1],[1,0,2,0]],[[1,1,0,0],[2,3,3,2],[1,3,3,1],[1,0,3,0]],[[2,1,0,0],[2,3,3,2],[1,3,3,1],[1,1,0,1]],[[1,1,0,0],[3,3,3,2],[1,3,3,1],[1,1,0,1]],[[1,1,0,0],[2,4,3,2],[1,3,3,1],[1,1,0,1]],[[1,1,0,0],[2,3,3,2],[1,4,3,1],[1,1,0,1]],[[1,1,0,0],[2,3,3,2],[1,3,4,1],[1,1,0,1]],[[2,1,0,0],[2,3,3,2],[1,3,3,1],[1,1,1,0]],[[1,1,0,0],[3,3,3,2],[1,3,3,1],[1,1,1,0]],[[1,1,0,0],[2,4,3,2],[1,3,3,1],[1,1,1,0]],[[1,1,0,0],[2,3,3,2],[1,4,3,1],[1,1,1,0]],[[1,1,0,0],[2,3,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,1,1],[0,3,2,1],[2,3,2,0],[0,2,3,1]],[[1,2,1,1],[0,3,2,1],[2,3,2,0],[0,3,2,1]],[[1,2,1,1],[0,3,2,1],[2,4,2,0],[0,2,2,1]],[[1,2,1,1],[0,3,2,1],[3,3,2,0],[0,2,2,1]],[[1,2,1,1],[0,4,2,1],[2,3,2,0],[0,2,2,1]],[[1,3,1,1],[0,3,2,1],[2,3,2,0],[0,2,2,1]],[[2,2,1,1],[0,3,2,1],[2,3,2,0],[0,2,2,1]],[[2,1,0,0],[2,3,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,0,0],[3,3,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,0,0],[2,4,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,0,0],[2,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,2,1,1],[0,3,2,1],[2,3,1,1],[1,3,2,0]],[[1,2,1,1],[0,3,2,1],[2,3,1,1],[2,2,2,0]],[[1,2,1,1],[0,3,2,1],[3,3,1,1],[1,2,2,0]],[[1,2,1,1],[0,3,2,1],[2,3,1,0],[1,3,2,1]],[[1,2,1,1],[0,3,2,1],[2,3,1,0],[2,2,2,1]],[[1,2,1,1],[0,3,2,1],[3,3,1,0],[1,2,2,1]],[[1,2,1,1],[0,3,2,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[0,3,2,1],[2,2,3,1],[2,2,1,0]],[[1,2,1,1],[0,3,2,1],[3,2,3,1],[1,2,1,0]],[[1,2,1,1],[0,3,2,1],[2,2,3,1],[1,3,0,1]],[[1,2,1,1],[0,3,2,1],[2,2,3,1],[2,2,0,1]],[[1,2,1,1],[0,3,2,1],[3,2,3,1],[1,2,0,1]],[[1,2,1,1],[0,3,2,1],[2,2,3,1],[0,2,3,0]],[[1,2,1,1],[0,3,2,1],[2,2,3,1],[0,3,2,0]],[[1,2,1,1],[0,3,2,1],[2,2,4,1],[0,2,2,0]],[[1,2,1,1],[0,3,2,1],[2,2,3,0],[1,3,1,1]],[[1,2,1,1],[0,3,2,1],[2,2,3,0],[2,2,1,1]],[[1,2,1,1],[0,3,2,1],[3,2,3,0],[1,2,1,1]],[[1,2,1,1],[0,3,2,1],[2,2,3,0],[0,2,2,2]],[[1,2,1,1],[0,3,2,1],[2,2,3,0],[0,2,3,1]],[[1,2,1,1],[0,3,2,1],[2,2,3,0],[0,3,2,1]],[[1,2,1,1],[0,3,2,1],[2,2,4,0],[0,2,2,1]],[[1,2,1,1],[0,3,2,1],[2,2,2,1],[1,2,3,0]],[[1,2,1,1],[0,3,2,1],[2,2,2,1],[1,3,2,0]],[[1,2,1,1],[0,3,2,1],[2,2,2,1],[2,2,2,0]],[[1,2,1,1],[0,3,2,1],[3,2,2,1],[1,2,2,0]],[[1,2,1,1],[0,3,2,1],[2,2,2,0],[1,2,2,2]],[[1,2,1,1],[0,3,2,1],[2,2,2,0],[1,2,3,1]],[[1,2,1,1],[0,3,2,1],[2,2,2,0],[1,3,2,1]],[[1,2,1,1],[0,3,2,1],[2,2,2,0],[2,2,2,1]],[[1,2,1,1],[0,3,2,1],[3,2,2,0],[1,2,2,1]],[[1,2,1,1],[0,3,2,1],[2,1,3,1],[1,2,3,0]],[[1,2,1,1],[0,3,2,1],[2,1,3,1],[1,3,2,0]],[[1,2,1,1],[0,3,2,1],[2,1,3,1],[2,2,2,0]],[[1,2,1,1],[0,3,2,1],[2,1,4,1],[1,2,2,0]],[[1,2,1,1],[0,3,2,1],[3,1,3,1],[1,2,2,0]],[[1,2,1,1],[0,3,2,1],[2,1,3,0],[1,2,2,2]],[[1,2,1,1],[0,3,2,1],[2,1,3,0],[1,2,3,1]],[[1,2,1,1],[0,3,2,1],[2,1,3,0],[1,3,2,1]],[[1,2,1,1],[0,3,2,1],[2,1,3,0],[2,2,2,1]],[[1,2,1,1],[0,3,2,1],[2,1,4,0],[1,2,2,1]],[[1,2,1,1],[0,3,2,1],[3,1,3,0],[1,2,2,1]],[[2,1,0,0],[2,3,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,0],[3,3,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,0],[2,4,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,2],[3,0,3,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,2],[2,0,4,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,2],[2,0,3,0],[2,2,2,1]],[[1,1,0,0],[2,3,3,2],[2,0,3,0],[1,3,2,1]],[[1,1,0,0],[2,3,3,2],[2,0,3,0],[1,2,3,1]],[[1,1,0,0],[2,3,3,2],[2,0,3,0],[1,2,2,2]],[[2,1,0,0],[2,3,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,0],[3,3,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,0],[2,4,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,0],[2,3,3,2],[3,0,3,1],[1,2,2,0]],[[1,1,0,0],[2,3,3,2],[2,0,4,1],[1,2,2,0]],[[1,1,0,0],[2,3,3,2],[2,0,3,1],[2,2,2,0]],[[1,1,0,0],[2,3,3,2],[2,0,3,1],[1,3,2,0]],[[1,1,0,0],[2,3,3,2],[2,0,3,1],[1,2,3,0]],[[2,1,0,0],[2,3,3,2],[2,1,2,0],[1,2,2,1]],[[1,1,0,0],[3,3,3,2],[2,1,2,0],[1,2,2,1]],[[1,1,0,0],[2,4,3,2],[2,1,2,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,2],[3,1,2,0],[1,2,2,1]],[[1,1,0,0],[2,3,3,2],[2,1,2,0],[2,2,2,1]],[[1,1,0,0],[2,3,3,2],[2,1,2,0],[1,3,2,1]],[[1,1,0,0],[2,3,3,2],[2,1,2,0],[1,2,3,1]],[[1,1,0,0],[2,3,3,2],[2,1,2,0],[1,2,2,2]],[[2,1,0,0],[2,3,3,2],[2,1,2,1],[1,2,2,0]],[[1,1,0,0],[3,3,3,2],[2,1,2,1],[1,2,2,0]],[[1,1,0,0],[2,4,3,2],[2,1,2,1],[1,2,2,0]],[[1,1,0,0],[2,3,3,2],[3,1,2,1],[1,2,2,0]],[[1,1,0,0],[2,3,3,2],[2,1,2,1],[2,2,2,0]],[[1,1,0,0],[2,3,3,2],[2,1,2,1],[1,3,2,0]],[[1,1,0,0],[2,3,3,2],[2,1,2,1],[1,2,3,0]],[[2,1,0,0],[2,3,3,2],[2,1,3,0],[1,2,1,1]],[[1,1,0,0],[3,3,3,2],[2,1,3,0],[1,2,1,1]],[[1,1,0,0],[2,4,3,2],[2,1,3,0],[1,2,1,1]],[[1,1,0,0],[2,3,3,2],[3,1,3,0],[1,2,1,1]],[[1,1,0,0],[2,3,3,2],[2,1,3,0],[2,2,1,1]],[[1,1,0,0],[2,3,3,2],[2,1,3,0],[1,3,1,1]],[[2,1,0,0],[2,3,3,2],[2,1,3,1],[1,2,0,1]],[[1,1,0,0],[3,3,3,2],[2,1,3,1],[1,2,0,1]],[[1,1,0,0],[2,4,3,2],[2,1,3,1],[1,2,0,1]],[[1,1,0,0],[2,3,3,2],[3,1,3,1],[1,2,0,1]],[[1,1,0,0],[2,3,3,2],[2,1,3,1],[2,2,0,1]],[[1,1,0,0],[2,3,3,2],[2,1,3,1],[1,3,0,1]],[[2,1,0,0],[2,3,3,2],[2,1,3,1],[1,2,1,0]],[[1,1,0,0],[3,3,3,2],[2,1,3,1],[1,2,1,0]],[[1,1,0,0],[2,4,3,2],[2,1,3,1],[1,2,1,0]],[[1,1,0,0],[2,3,3,2],[3,1,3,1],[1,2,1,0]],[[1,1,0,0],[2,3,3,2],[2,1,3,1],[2,2,1,0]],[[1,1,0,0],[2,3,3,2],[2,1,3,1],[1,3,1,0]],[[1,2,1,1],[0,3,2,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,3,2,1],[1,3,3,1],[2,2,1,0]],[[1,2,1,1],[0,3,2,1],[1,3,4,1],[1,2,1,0]],[[1,2,1,1],[0,3,2,1],[1,4,3,1],[1,2,1,0]],[[1,2,1,1],[0,4,2,1],[1,3,3,1],[1,2,1,0]],[[1,3,1,1],[0,3,2,1],[1,3,3,1],[1,2,1,0]],[[2,2,1,1],[0,3,2,1],[1,3,3,1],[1,2,1,0]],[[1,2,1,1],[0,3,2,1],[1,3,3,1],[1,3,0,1]],[[1,2,1,1],[0,3,2,1],[1,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,3,2,1],[1,3,4,1],[1,2,0,1]],[[1,2,1,1],[0,3,2,1],[1,4,3,1],[1,2,0,1]],[[2,1,0,0],[2,3,3,2],[2,2,2,0],[0,2,2,1]],[[1,1,0,0],[3,3,3,2],[2,2,2,0],[0,2,2,1]],[[1,1,0,0],[2,4,3,2],[2,2,2,0],[0,2,2,1]],[[1,1,0,0],[2,3,3,2],[3,2,2,0],[0,2,2,1]],[[2,1,0,0],[2,3,3,2],[2,2,2,0],[1,1,2,1]],[[1,1,0,0],[3,3,3,2],[2,2,2,0],[1,1,2,1]],[[1,1,0,0],[2,4,3,2],[2,2,2,0],[1,1,2,1]],[[1,1,0,0],[2,3,3,2],[3,2,2,0],[1,1,2,1]],[[1,1,0,0],[2,3,3,2],[2,2,2,0],[2,1,2,1]],[[2,1,0,0],[2,3,3,2],[2,2,2,1],[0,2,2,0]],[[1,1,0,0],[3,3,3,2],[2,2,2,1],[0,2,2,0]],[[1,1,0,0],[2,4,3,2],[2,2,2,1],[0,2,2,0]],[[1,1,0,0],[2,3,3,2],[3,2,2,1],[0,2,2,0]],[[2,1,0,0],[2,3,3,2],[2,2,2,1],[1,1,2,0]],[[1,1,0,0],[3,3,3,2],[2,2,2,1],[1,1,2,0]],[[1,1,0,0],[2,4,3,2],[2,2,2,1],[1,1,2,0]],[[1,1,0,0],[2,3,3,2],[3,2,2,1],[1,1,2,0]],[[1,1,0,0],[2,3,3,2],[2,2,2,1],[2,1,2,0]],[[1,2,1,1],[0,4,2,1],[1,3,3,1],[1,2,0,1]],[[1,3,1,1],[0,3,2,1],[1,3,3,1],[1,2,0,1]],[[2,2,1,1],[0,3,2,1],[1,3,3,1],[1,2,0,1]],[[1,2,1,1],[0,3,2,1],[1,3,3,1],[1,1,3,0]],[[1,2,1,1],[0,3,2,1],[1,3,4,1],[1,1,2,0]],[[1,2,1,1],[0,3,2,1],[1,4,3,1],[1,1,2,0]],[[1,2,1,1],[0,4,2,1],[1,3,3,1],[1,1,2,0]],[[1,3,1,1],[0,3,2,1],[1,3,3,1],[1,1,2,0]],[[2,2,1,1],[0,3,2,1],[1,3,3,1],[1,1,2,0]],[[1,2,1,1],[0,3,2,1],[1,3,4,1],[1,1,1,1]],[[1,2,1,1],[0,3,2,1],[1,4,3,1],[1,1,1,1]],[[1,2,1,1],[0,4,2,1],[1,3,3,1],[1,1,1,1]],[[1,3,1,1],[0,3,2,1],[1,3,3,1],[1,1,1,1]],[[2,2,1,1],[0,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,3,2,1],[1,3,3,0],[1,3,1,1]],[[1,2,1,1],[0,3,2,1],[1,3,3,0],[2,2,1,1]],[[1,2,1,1],[0,3,2,1],[1,3,4,0],[1,2,1,1]],[[1,2,1,1],[0,3,2,1],[1,4,3,0],[1,2,1,1]],[[1,2,1,1],[0,4,2,1],[1,3,3,0],[1,2,1,1]],[[1,3,1,1],[0,3,2,1],[1,3,3,0],[1,2,1,1]],[[2,2,1,1],[0,3,2,1],[1,3,3,0],[1,2,1,1]],[[2,1,0,0],[2,3,3,2],[2,2,3,0],[0,1,2,1]],[[1,1,0,0],[3,3,3,2],[2,2,3,0],[0,1,2,1]],[[1,1,0,0],[2,4,3,2],[2,2,3,0],[0,1,2,1]],[[1,1,0,0],[2,3,3,2],[3,2,3,0],[0,1,2,1]],[[2,1,0,0],[2,3,3,2],[2,2,3,0],[0,2,1,1]],[[1,1,0,0],[3,3,3,2],[2,2,3,0],[0,2,1,1]],[[1,1,0,0],[2,4,3,2],[2,2,3,0],[0,2,1,1]],[[1,1,0,0],[2,3,3,2],[3,2,3,0],[0,2,1,1]],[[2,1,0,0],[2,3,3,2],[2,2,3,0],[1,0,2,1]],[[1,1,0,0],[3,3,3,2],[2,2,3,0],[1,0,2,1]],[[1,1,0,0],[2,4,3,2],[2,2,3,0],[1,0,2,1]],[[1,1,0,0],[2,3,3,2],[3,2,3,0],[1,0,2,1]],[[1,1,0,0],[2,3,3,2],[2,2,3,0],[2,0,2,1]],[[2,1,0,0],[2,3,3,2],[2,2,3,0],[1,1,1,1]],[[1,1,0,0],[3,3,3,2],[2,2,3,0],[1,1,1,1]],[[1,1,0,0],[2,4,3,2],[2,2,3,0],[1,1,1,1]],[[1,1,0,0],[2,3,3,2],[3,2,3,0],[1,1,1,1]],[[1,1,0,0],[2,3,3,2],[2,2,3,0],[2,1,1,1]],[[2,1,0,0],[2,3,3,2],[2,2,3,0],[1,2,0,1]],[[1,1,0,0],[3,3,3,2],[2,2,3,0],[1,2,0,1]],[[1,1,0,0],[2,4,3,2],[2,2,3,0],[1,2,0,1]],[[1,1,0,0],[2,3,3,2],[3,2,3,0],[1,2,0,1]],[[1,1,0,0],[2,3,3,2],[2,2,3,0],[2,2,0,1]],[[1,2,1,1],[0,3,2,1],[1,3,3,0],[1,1,2,2]],[[1,2,1,1],[0,3,2,1],[1,3,3,0],[1,1,3,1]],[[1,2,1,1],[0,3,2,1],[1,3,4,0],[1,1,2,1]],[[1,2,1,1],[0,3,2,1],[1,4,3,0],[1,1,2,1]],[[1,2,1,1],[0,4,2,1],[1,3,3,0],[1,1,2,1]],[[1,3,1,1],[0,3,2,1],[1,3,3,0],[1,1,2,1]],[[2,2,1,1],[0,3,2,1],[1,3,3,0],[1,1,2,1]],[[2,1,0,0],[2,3,3,2],[2,2,3,1],[0,1,1,1]],[[1,1,0,0],[3,3,3,2],[2,2,3,1],[0,1,1,1]],[[1,1,0,0],[2,4,3,2],[2,2,3,1],[0,1,1,1]],[[1,1,0,0],[2,3,3,2],[3,2,3,1],[0,1,1,1]],[[2,1,0,0],[2,3,3,2],[2,2,3,1],[0,1,2,0]],[[1,1,0,0],[3,3,3,2],[2,2,3,1],[0,1,2,0]],[[1,1,0,0],[2,4,3,2],[2,2,3,1],[0,1,2,0]],[[1,1,0,0],[2,3,3,2],[3,2,3,1],[0,1,2,0]],[[2,1,0,0],[2,3,3,2],[2,2,3,1],[0,2,0,1]],[[1,1,0,0],[3,3,3,2],[2,2,3,1],[0,2,0,1]],[[1,1,0,0],[2,4,3,2],[2,2,3,1],[0,2,0,1]],[[1,1,0,0],[2,3,3,2],[3,2,3,1],[0,2,0,1]],[[2,1,0,0],[2,3,3,2],[2,2,3,1],[0,2,1,0]],[[1,1,0,0],[3,3,3,2],[2,2,3,1],[0,2,1,0]],[[1,1,0,0],[2,4,3,2],[2,2,3,1],[0,2,1,0]],[[1,1,0,0],[2,3,3,2],[3,2,3,1],[0,2,1,0]],[[2,1,0,0],[2,3,3,2],[2,2,3,1],[1,0,1,1]],[[1,1,0,0],[3,3,3,2],[2,2,3,1],[1,0,1,1]],[[1,1,0,0],[2,4,3,2],[2,2,3,1],[1,0,1,1]],[[1,1,0,0],[2,3,3,2],[3,2,3,1],[1,0,1,1]],[[1,1,0,0],[2,3,3,2],[2,2,3,1],[2,0,1,1]],[[2,1,0,0],[2,3,3,2],[2,2,3,1],[1,0,2,0]],[[1,1,0,0],[3,3,3,2],[2,2,3,1],[1,0,2,0]],[[1,1,0,0],[2,4,3,2],[2,2,3,1],[1,0,2,0]],[[1,1,0,0],[2,3,3,2],[3,2,3,1],[1,0,2,0]],[[1,1,0,0],[2,3,3,2],[2,2,3,1],[2,0,2,0]],[[2,1,0,0],[2,3,3,2],[2,2,3,1],[1,1,0,1]],[[1,1,0,0],[3,3,3,2],[2,2,3,1],[1,1,0,1]],[[1,1,0,0],[2,4,3,2],[2,2,3,1],[1,1,0,1]],[[1,1,0,0],[2,3,3,2],[3,2,3,1],[1,1,0,1]],[[1,1,0,0],[2,3,3,2],[2,2,3,1],[2,1,0,1]],[[2,1,0,0],[2,3,3,2],[2,2,3,1],[1,1,1,0]],[[1,1,0,0],[3,3,3,2],[2,2,3,1],[1,1,1,0]],[[1,1,0,0],[2,4,3,2],[2,2,3,1],[1,1,1,0]],[[1,1,0,0],[2,3,3,2],[3,2,3,1],[1,1,1,0]],[[1,1,0,0],[2,3,3,2],[2,2,3,1],[2,1,1,0]],[[2,1,0,0],[2,3,3,2],[2,2,3,1],[1,2,0,0]],[[1,1,0,0],[3,3,3,2],[2,2,3,1],[1,2,0,0]],[[1,1,0,0],[2,4,3,2],[2,2,3,1],[1,2,0,0]],[[1,1,0,0],[2,3,3,2],[3,2,3,1],[1,2,0,0]],[[1,1,0,0],[2,3,3,2],[2,2,3,1],[2,2,0,0]],[[1,2,1,1],[0,3,2,1],[1,3,2,1],[1,2,3,0]],[[1,2,1,1],[0,3,2,1],[1,3,2,1],[1,3,2,0]],[[1,2,1,1],[0,3,2,1],[1,3,2,1],[2,2,2,0]],[[1,2,1,1],[0,3,2,1],[1,4,2,1],[1,2,2,0]],[[1,2,1,1],[0,4,2,1],[1,3,2,1],[1,2,2,0]],[[1,3,1,1],[0,3,2,1],[1,3,2,1],[1,2,2,0]],[[2,2,1,1],[0,3,2,1],[1,3,2,1],[1,2,2,0]],[[1,2,1,1],[0,3,2,1],[1,3,2,0],[1,2,2,2]],[[1,2,1,1],[0,3,2,1],[1,3,2,0],[1,2,3,1]],[[1,2,1,1],[0,3,2,1],[1,3,2,0],[1,3,2,1]],[[1,2,1,1],[0,3,2,1],[1,3,2,0],[2,2,2,1]],[[1,2,1,1],[0,3,2,1],[1,4,2,0],[1,2,2,1]],[[1,2,1,1],[0,4,2,1],[1,3,2,0],[1,2,2,1]],[[1,3,1,1],[0,3,2,1],[1,3,2,0],[1,2,2,1]],[[2,2,1,1],[0,3,2,1],[1,3,2,0],[1,2,2,1]],[[1,2,1,1],[0,3,2,1],[1,2,3,1],[1,2,3,0]],[[1,2,1,1],[0,3,2,1],[1,2,3,1],[1,3,2,0]],[[1,2,1,1],[0,3,2,1],[1,2,3,1],[2,2,2,0]],[[1,2,1,1],[0,3,2,1],[1,2,4,1],[1,2,2,0]],[[1,2,1,1],[0,3,2,1],[1,2,3,0],[1,2,2,2]],[[1,2,1,1],[0,3,2,1],[1,2,3,0],[1,2,3,1]],[[1,2,1,1],[0,3,2,1],[1,2,3,0],[1,3,2,1]],[[1,2,1,1],[0,3,2,1],[1,2,3,0],[2,2,2,1]],[[1,2,1,1],[0,3,2,1],[1,2,4,0],[1,2,2,1]],[[1,2,1,1],[0,3,2,1],[0,3,3,1],[1,2,3,0]],[[1,2,1,1],[0,3,2,1],[0,3,3,1],[1,3,2,0]],[[1,2,1,1],[0,3,2,1],[0,3,4,1],[1,2,2,0]],[[1,2,1,1],[0,3,2,1],[0,3,3,0],[1,2,2,2]],[[1,2,1,1],[0,3,2,1],[0,3,3,0],[1,2,3,1]],[[1,2,1,1],[0,3,2,1],[0,3,3,0],[1,3,2,1]],[[1,2,1,1],[0,3,2,1],[0,3,4,0],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,3,2,0],[2,4,3,2],[1,2,0,0]],[[1,2,1,1],[0,3,2,0],[3,3,3,2],[1,2,0,0]],[[1,2,1,1],[0,4,2,0],[2,3,3,2],[1,2,0,0]],[[1,3,1,1],[0,3,2,0],[2,3,3,2],[1,2,0,0]],[[2,2,1,1],[0,3,2,0],[2,3,3,2],[1,2,0,0]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,3,2,0],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,3,2,0],[2,3,4,2],[1,1,1,0]],[[1,2,1,1],[0,3,2,0],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[0,3,2,0],[3,3,3,2],[1,1,1,0]],[[1,2,1,1],[0,4,2,0],[2,3,3,2],[1,1,1,0]],[[1,3,1,1],[0,3,2,0],[2,3,3,2],[1,1,1,0]],[[2,2,1,1],[0,3,2,0],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[2,1,0,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,3],[1,1,0,1]],[[1,2,1,1],[0,3,2,0],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[0,3,2,0],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[0,3,2,0],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[0,4,2,0],[2,3,3,2],[1,1,0,1]],[[1,3,1,1],[0,3,2,0],[2,3,3,2],[1,1,0,1]],[[2,2,1,1],[0,3,2,0],[2,3,3,2],[1,1,0,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[2,0,2,0]],[[1,2,1,1],[0,3,2,0],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[0,3,2,0],[2,3,4,2],[1,0,2,0]],[[1,2,1,1],[0,3,2,0],[2,4,3,2],[1,0,2,0]],[[1,2,1,1],[0,3,2,0],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,4,2,0],[2,3,3,2],[1,0,2,0]],[[1,3,1,1],[0,3,2,0],[2,3,3,2],[1,0,2,0]],[[2,2,1,1],[0,3,2,0],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[1,0,1,2]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,3],[1,0,1,1]],[[1,2,1,1],[0,3,2,0],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[0,3,2,0],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[0,3,2,0],[3,3,3,2],[1,0,1,1]],[[1,2,1,1],[0,4,2,0],[2,3,3,2],[1,0,1,1]],[[1,3,1,1],[0,3,2,0],[2,3,3,2],[1,0,1,1]],[[2,2,1,1],[0,3,2,0],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,3,2,0],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[0,3,2,0],[2,3,4,2],[0,2,1,0]],[[1,2,1,1],[0,3,2,0],[2,4,3,2],[0,2,1,0]],[[1,2,1,1],[0,3,2,0],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,4,2,0],[2,3,3,2],[0,2,1,0]],[[1,3,1,1],[0,3,2,0],[2,3,3,2],[0,2,1,0]],[[2,2,1,1],[0,3,2,0],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[0,3,2,0],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[0,3,2,0],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[0,3,2,0],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[0,4,2,0],[2,3,3,2],[0,2,0,1]],[[1,3,1,1],[0,3,2,0],[2,3,3,2],[0,2,0,1]],[[2,2,1,1],[0,3,2,0],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[0,3,2,0],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[0,3,2,0],[2,3,4,2],[0,1,2,0]],[[1,2,1,1],[0,3,2,0],[2,4,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,2,0],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,4,2,0],[2,3,3,2],[0,1,2,0]],[[1,3,1,1],[0,3,2,0],[2,3,3,2],[0,1,2,0]],[[2,2,1,1],[0,3,2,0],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[0,1,1,2]],[[1,2,1,1],[0,3,2,0],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[0,3,2,0],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[0,3,2,0],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,2,0],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,4,2,0],[2,3,3,2],[0,1,1,1]],[[1,3,1,1],[0,3,2,0],[2,3,3,2],[0,1,1,1]],[[2,2,1,1],[0,3,2,0],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,2],[0,0,2,2]],[[1,2,1,1],[0,3,2,0],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,3,2,0],[2,4,3,1],[1,2,0,1]],[[1,2,1,1],[0,3,2,0],[3,3,3,1],[1,2,0,1]],[[1,2,1,1],[0,4,2,0],[2,3,3,1],[1,2,0,1]],[[1,3,1,1],[0,3,2,0],[2,3,3,1],[1,2,0,1]],[[2,2,1,1],[0,3,2,0],[2,3,3,1],[1,2,0,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[0,3,2,0],[2,3,4,1],[1,1,1,1]],[[2,1,0,0],[2,3,3,2],[2,3,3,0],[1,0,1,1]],[[1,1,0,0],[3,3,3,2],[2,3,3,0],[1,0,1,1]],[[1,1,0,0],[2,4,3,2],[2,3,3,0],[1,0,1,1]],[[1,1,0,0],[2,3,3,2],[3,3,3,0],[1,0,1,1]],[[1,2,1,1],[0,3,2,0],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[0,3,2,0],[3,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,4,2,0],[2,3,3,1],[1,1,1,1]],[[1,3,1,1],[0,3,2,0],[2,3,3,1],[1,1,1,1]],[[2,2,1,1],[0,3,2,0],[2,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[0,3,2,0],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,1],[2,0,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[0,3,2,0],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[0,3,2,0],[3,3,3,1],[1,0,2,1]],[[1,2,1,1],[0,4,2,0],[2,3,3,1],[1,0,2,1]],[[1,3,1,1],[0,3,2,0],[2,3,3,1],[1,0,2,1]],[[2,2,1,1],[0,3,2,0],[2,3,3,1],[1,0,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[0,3,2,0],[2,3,4,1],[0,2,1,1]],[[1,2,1,1],[0,3,2,0],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[0,3,2,0],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[0,4,2,0],[2,3,3,1],[0,2,1,1]],[[1,3,1,1],[0,3,2,0],[2,3,3,1],[0,2,1,1]],[[2,2,1,1],[0,3,2,0],[2,3,3,1],[0,2,1,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[0,3,2,0],[2,3,3,1],[0,1,3,1]],[[1,2,1,1],[0,3,2,0],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[0,3,2,0],[2,4,3,1],[0,1,2,1]],[[1,2,1,1],[0,3,2,0],[3,3,3,1],[0,1,2,1]],[[1,2,1,1],[0,4,2,0],[2,3,3,1],[0,1,2,1]],[[1,3,1,1],[0,3,2,0],[2,3,3,1],[0,1,2,1]],[[2,2,1,1],[0,3,2,0],[2,3,3,1],[0,1,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,0],[2,1,2,1]],[[1,2,1,1],[0,3,2,0],[2,4,3,0],[1,1,2,1]],[[1,2,1,1],[0,3,2,0],[3,3,3,0],[1,1,2,1]],[[1,2,1,1],[0,4,2,0],[2,3,3,0],[1,1,2,1]],[[1,3,1,1],[0,3,2,0],[2,3,3,0],[1,1,2,1]],[[2,2,1,1],[0,3,2,0],[2,3,3,0],[1,1,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,0],[0,2,3,1]],[[1,2,1,1],[0,3,2,0],[2,3,3,0],[0,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,4,3,0],[0,2,2,1]],[[1,2,1,1],[0,3,2,0],[3,3,3,0],[0,2,2,1]],[[1,2,1,1],[0,4,2,0],[2,3,3,0],[0,2,2,1]],[[1,3,1,1],[0,3,2,0],[2,3,3,0],[0,2,2,1]],[[2,2,1,1],[0,3,2,0],[2,3,3,0],[0,2,2,1]],[[2,1,0,0],[2,3,3,2],[2,3,3,1],[1,0,0,1]],[[1,1,0,0],[3,3,3,2],[2,3,3,1],[1,0,0,1]],[[1,1,0,0],[2,4,3,2],[2,3,3,1],[1,0,0,1]],[[1,1,0,0],[2,3,3,2],[3,3,3,1],[1,0,0,1]],[[2,1,0,0],[2,3,3,2],[2,3,3,1],[1,0,1,0]],[[1,1,0,0],[3,3,3,2],[2,3,3,1],[1,0,1,0]],[[1,1,0,0],[2,4,3,2],[2,3,3,1],[1,0,1,0]],[[1,1,0,0],[2,3,3,2],[3,3,3,1],[1,0,1,0]],[[1,2,1,1],[0,3,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,3,2,0],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[0,3,2,0],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[0,4,2,0],[2,3,2,2],[1,1,2,0]],[[1,3,1,1],[0,3,2,0],[2,3,2,2],[1,1,2,0]],[[2,2,1,1],[0,3,2,0],[2,3,2,2],[1,1,2,0]],[[1,2,1,1],[0,3,2,0],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[0,3,2,0],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[0,3,2,0],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,2,2],[0,2,3,0]],[[1,2,1,1],[0,3,2,0],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[0,3,2,0],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[0,3,2,0],[3,3,2,2],[0,2,2,0]],[[1,2,1,1],[0,4,2,0],[2,3,2,2],[0,2,2,0]],[[1,3,1,1],[0,3,2,0],[2,3,2,2],[0,2,2,0]],[[2,2,1,1],[0,3,2,0],[2,3,2,2],[0,2,2,0]],[[1,2,1,1],[0,3,2,0],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[0,3,2,0],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[0,3,2,0],[2,3,2,3],[0,1,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[0,3,2,0],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[0,3,2,0],[3,3,2,1],[1,1,2,1]],[[1,2,1,1],[0,4,2,0],[2,3,2,1],[1,1,2,1]],[[1,3,1,1],[0,3,2,0],[2,3,2,1],[1,1,2,1]],[[2,2,1,1],[0,3,2,0],[2,3,2,1],[1,1,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[0,3,2,0],[2,3,2,1],[0,2,3,1]],[[1,2,1,1],[0,3,2,0],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[0,3,2,0],[3,3,2,1],[0,2,2,1]],[[1,2,1,1],[0,4,2,0],[2,3,2,1],[0,2,2,1]],[[1,3,1,1],[0,3,2,0],[2,3,2,1],[0,2,2,1]],[[2,2,1,1],[0,3,2,0],[2,3,2,1],[0,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,2,0],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,2,0],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[3,3,2,0],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,1,2],[1,3,2,0]],[[1,2,1,1],[0,3,2,0],[2,3,1,2],[2,2,2,0]],[[1,2,1,1],[0,3,2,0],[3,3,1,2],[1,2,2,0]],[[1,2,1,1],[0,3,2,0],[2,3,1,2],[2,1,2,1]],[[1,2,1,1],[0,3,2,0],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[0,3,2,0],[3,3,1,2],[1,1,2,1]],[[1,2,1,1],[0,4,2,0],[2,3,1,2],[1,1,2,1]],[[1,3,1,1],[0,3,2,0],[2,3,1,2],[1,1,2,1]],[[2,2,1,1],[0,3,2,0],[2,3,1,2],[1,1,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[0,3,2,0],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[0,3,2,0],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,1,3],[0,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[0,3,2,0],[3,3,1,2],[0,2,2,1]],[[1,2,1,1],[0,4,2,0],[2,3,1,2],[0,2,2,1]],[[1,3,1,1],[0,3,2,0],[2,3,1,2],[0,2,2,1]],[[2,2,1,1],[0,3,2,0],[2,3,1,2],[0,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,1,1],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,1,1],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[3,3,1,1],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,0,2],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,3,0,2],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[3,3,0,2],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,2,0],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[0,3,2,0],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[0,3,2,0],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[0,3,2,0],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[0,3,2,0],[3,2,3,2],[1,2,0,1]],[[1,2,1,1],[0,3,2,0],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[0,3,2,0],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[0,3,2,0],[2,2,3,3],[0,2,2,0]],[[1,2,1,1],[0,3,2,0],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[0,3,2,0],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[0,3,2,0],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[0,3,2,0],[2,2,4,2],[0,2,1,1]],[[1,2,1,1],[0,3,2,0],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[0,3,2,0],[2,2,3,1],[2,2,1,1]],[[1,2,1,1],[0,3,2,0],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[0,3,2,0],[2,2,3,1],[0,2,2,2]],[[1,2,1,1],[0,3,2,0],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[0,3,2,0],[2,2,3,1],[0,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,2,4,1],[0,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,2,3,0],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[2,2,3,0],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,2,3,0],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[3,2,3,0],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[0,3,2,0],[2,2,2,2],[1,3,2,0]],[[1,2,1,1],[0,3,2,0],[2,2,2,2],[2,2,2,0]],[[1,2,1,1],[0,3,2,0],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[0,3,2,0],[2,2,2,2],[0,2,2,2]],[[1,2,1,1],[0,3,2,0],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[0,3,2,0],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,2,2,3],[0,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[0,3,2,0],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[3,2,2,1],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[0,3,2,0],[2,2,1,2],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[2,2,1,2],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,2,1,3],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[3,2,1,2],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,1,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,2,0],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,2,0],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[0,3,2,0],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[0,3,2,0],[2,1,4,2],[1,2,2,0]],[[1,2,1,1],[0,3,2,0],[3,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,2,0],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[0,3,2,0],[2,1,3,3],[1,2,1,1]],[[1,2,1,1],[0,3,2,0],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[0,3,2,0],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[0,3,2,0],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[3,1,3,1],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[0,3,2,0],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[2,1,2,2],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[2,1,2,2],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[3,1,2,2],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,2,0],[1,3,3,2],[2,2,1,0]],[[1,2,1,1],[0,3,2,0],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[0,3,2,0],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[0,3,2,0],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[0,4,2,0],[1,3,3,2],[1,2,1,0]],[[1,3,1,1],[0,3,2,0],[1,3,3,2],[1,2,1,0]],[[2,2,1,1],[0,3,2,0],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[0,3,2,0],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[0,3,2,0],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[0,3,2,0],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[0,3,2,0],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[0,3,2,0],[1,3,4,2],[1,2,0,1]],[[1,2,1,1],[0,3,2,0],[1,4,3,2],[1,2,0,1]],[[1,2,1,1],[0,4,2,0],[1,3,3,2],[1,2,0,1]],[[1,3,1,1],[0,3,2,0],[1,3,3,2],[1,2,0,1]],[[2,2,1,1],[0,3,2,0],[1,3,3,2],[1,2,0,1]],[[1,2,1,1],[0,3,2,0],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[0,3,2,0],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[0,3,2,0],[1,3,4,2],[1,1,2,0]],[[1,2,1,1],[0,3,2,0],[1,4,3,2],[1,1,2,0]],[[1,2,1,1],[0,4,2,0],[1,3,3,2],[1,1,2,0]],[[1,3,1,1],[0,3,2,0],[1,3,3,2],[1,1,2,0]],[[2,2,1,1],[0,3,2,0],[1,3,3,2],[1,1,2,0]],[[1,2,1,1],[0,3,2,0],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[0,3,2,0],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[0,3,2,0],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[0,3,2,0],[1,4,3,2],[1,1,1,1]],[[1,2,1,1],[0,4,2,0],[1,3,3,2],[1,1,1,1]],[[1,3,1,1],[0,3,2,0],[1,3,3,2],[1,1,1,1]],[[2,2,1,1],[0,3,2,0],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[0,3,2,0],[1,3,3,2],[1,0,2,2]],[[1,2,1,1],[0,3,2,0],[1,3,3,3],[1,0,2,1]],[[1,2,1,1],[0,3,2,0],[1,3,4,2],[1,0,2,1]],[[1,2,1,1],[0,3,2,0],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[0,3,2,0],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[0,3,2,0],[1,3,4,1],[1,2,1,1]],[[1,2,1,1],[0,3,2,0],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[0,0,3,2],[1,3,3,3],[1,2,2,1]],[[1,1,0,1],[0,0,3,2],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[0,0,3,2],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[0,0,3,2],[1,3,3,2],[1,2,2,2]],[[1,1,0,1],[0,0,3,2],[2,3,3,3],[0,2,2,1]],[[1,1,0,1],[0,0,3,2],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[0,0,3,2],[2,3,3,2],[0,2,2,2]],[[1,1,0,1],[0,1,1,2],[2,3,3,3],[1,2,2,1]],[[1,1,0,1],[0,1,1,2],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[0,1,1,2],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[0,1,1,2],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[0,1,1,2],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[0,1,2,2],[1,3,3,3],[1,2,2,1]],[[1,1,0,1],[0,1,2,2],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[0,1,2,2],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[0,1,2,2],[1,3,3,2],[1,2,2,2]],[[1,1,0,1],[0,1,2,3],[2,3,2,2],[1,2,2,1]],[[1,1,0,1],[0,1,2,2],[2,3,2,3],[1,2,2,1]],[[1,1,0,1],[0,1,2,2],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[0,1,2,2],[2,3,2,2],[1,3,2,1]],[[1,1,0,1],[0,1,2,2],[2,3,2,2],[1,2,3,1]],[[1,1,0,1],[0,1,2,2],[2,3,2,2],[1,2,2,2]],[[1,1,0,1],[0,1,2,2],[2,3,4,1],[1,2,2,1]],[[1,1,0,1],[0,1,2,2],[2,3,3,1],[2,2,2,1]],[[1,1,0,1],[0,1,2,2],[2,3,3,1],[1,3,2,1]],[[1,1,0,1],[0,1,2,2],[2,3,3,1],[1,2,3,1]],[[1,1,0,1],[0,1,2,2],[2,3,3,1],[1,2,2,2]],[[1,1,0,1],[0,1,2,2],[2,3,3,3],[0,2,2,1]],[[1,1,0,1],[0,1,2,2],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[0,1,2,2],[2,3,3,2],[0,2,2,2]],[[1,1,0,1],[0,1,2,3],[2,3,3,2],[1,2,1,1]],[[1,1,0,1],[0,1,2,2],[2,3,4,2],[1,2,1,1]],[[1,1,0,1],[0,1,2,2],[2,3,3,3],[1,2,1,1]],[[1,1,0,1],[0,1,2,2],[2,3,3,2],[1,2,1,2]],[[1,1,0,1],[0,1,2,3],[2,3,3,2],[1,2,2,0]],[[1,1,0,1],[0,1,2,2],[2,3,4,2],[1,2,2,0]],[[1,1,0,1],[0,1,2,2],[2,3,3,3],[1,2,2,0]],[[1,1,0,1],[0,1,2,2],[2,3,3,2],[2,2,2,0]],[[1,1,0,1],[0,1,2,2],[2,3,3,2],[1,3,2,0]],[[1,1,0,1],[0,1,2,2],[2,3,3,2],[1,2,3,0]],[[1,1,0,1],[0,1,3,0],[2,3,4,2],[1,2,2,1]],[[1,1,0,1],[0,1,3,0],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[0,1,3,0],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[0,1,3,0],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[0,1,3,0],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[0,1,3,1],[2,3,2,3],[1,2,2,1]],[[1,1,0,1],[0,1,3,1],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[0,1,3,1],[2,3,2,2],[1,3,2,1]],[[1,1,0,1],[0,1,3,1],[2,3,2,2],[1,2,3,1]],[[1,1,0,1],[0,1,3,1],[2,3,2,2],[1,2,2,2]],[[1,1,0,1],[0,1,3,1],[2,3,4,1],[1,2,2,1]],[[1,1,0,1],[0,1,3,1],[2,3,3,1],[2,2,2,1]],[[1,1,0,1],[0,1,3,1],[2,3,3,1],[1,3,2,1]],[[1,1,0,1],[0,1,3,1],[2,3,3,1],[1,2,3,1]],[[1,1,0,1],[0,1,3,1],[2,3,3,1],[1,2,2,2]],[[1,1,0,1],[0,1,3,1],[2,3,4,2],[1,2,1,1]],[[1,1,0,1],[0,1,3,1],[2,3,3,3],[1,2,1,1]],[[1,1,0,1],[0,1,3,1],[2,3,3,2],[1,2,1,2]],[[1,1,0,1],[0,1,3,1],[2,3,4,2],[1,2,2,0]],[[1,1,0,1],[0,1,3,1],[2,3,3,3],[1,2,2,0]],[[1,1,0,1],[0,1,3,1],[2,3,3,2],[2,2,2,0]],[[1,1,0,1],[0,1,3,1],[2,3,3,2],[1,3,2,0]],[[1,1,0,1],[0,1,3,1],[2,3,3,2],[1,2,3,0]],[[1,1,0,1],[0,1,3,3],[1,3,2,2],[1,2,2,1]],[[1,1,0,1],[0,1,3,2],[1,3,2,3],[1,2,2,1]],[[1,1,0,1],[0,1,3,2],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[0,1,3,2],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[0,1,3,2],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[0,1,3,2],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[0,1,3,2],[1,3,4,1],[1,2,2,1]],[[1,1,0,1],[0,1,3,2],[1,3,3,1],[2,2,2,1]],[[1,1,0,1],[0,1,3,2],[1,3,3,1],[1,3,2,1]],[[1,1,0,1],[0,1,3,2],[1,3,3,1],[1,2,3,1]],[[1,1,0,1],[0,1,3,2],[1,3,3,1],[1,2,2,2]],[[1,1,0,1],[0,1,3,3],[1,3,3,2],[1,2,1,1]],[[1,1,0,1],[0,1,3,2],[1,3,4,2],[1,2,1,1]],[[1,1,0,1],[0,1,3,2],[1,3,3,3],[1,2,1,1]],[[1,1,0,1],[0,1,3,2],[1,3,3,2],[1,2,1,2]],[[1,1,0,1],[0,1,3,3],[1,3,3,2],[1,2,2,0]],[[1,1,0,1],[0,1,3,2],[1,3,4,2],[1,2,2,0]],[[1,1,0,1],[0,1,3,2],[1,3,3,3],[1,2,2,0]],[[1,1,0,1],[0,1,3,2],[1,3,3,2],[2,2,2,0]],[[1,1,0,1],[0,1,3,2],[1,3,3,2],[1,3,2,0]],[[1,1,0,1],[0,1,3,2],[1,3,3,2],[1,2,3,0]],[[1,1,0,1],[0,1,3,3],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[0,1,3,2],[2,3,2,3],[0,2,2,1]],[[1,1,0,1],[0,1,3,2],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[0,1,3,2],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[0,1,3,2],[2,3,2,2],[0,2,2,2]],[[1,1,0,1],[0,1,3,2],[2,3,4,0],[1,2,2,1]],[[1,1,0,1],[0,1,3,2],[2,3,3,0],[2,2,2,1]],[[1,1,0,1],[0,1,3,2],[2,3,3,0],[1,3,2,1]],[[1,1,0,1],[0,1,3,2],[2,3,3,0],[1,2,3,1]],[[1,1,0,1],[0,1,3,2],[2,3,3,0],[1,2,2,2]],[[1,1,0,1],[0,1,3,2],[2,3,4,1],[0,2,2,1]],[[1,1,0,1],[0,1,3,2],[2,3,3,1],[0,3,2,1]],[[1,1,0,1],[0,1,3,2],[2,3,3,1],[0,2,3,1]],[[1,1,0,1],[0,1,3,2],[2,3,3,1],[0,2,2,2]],[[1,1,0,1],[0,1,3,2],[2,3,4,1],[1,2,2,0]],[[1,1,0,1],[0,1,3,2],[2,3,3,1],[2,2,2,0]],[[1,1,0,1],[0,1,3,2],[2,3,3,1],[1,3,2,0]],[[1,1,0,1],[0,1,3,2],[2,3,3,1],[1,2,3,0]],[[1,1,0,1],[0,1,3,3],[2,3,3,2],[0,2,1,1]],[[1,1,0,1],[0,1,3,2],[2,3,4,2],[0,2,1,1]],[[1,1,0,1],[0,1,3,2],[2,3,3,3],[0,2,1,1]],[[1,1,0,1],[0,1,3,2],[2,3,3,2],[0,2,1,2]],[[1,1,0,1],[0,1,3,3],[2,3,3,2],[0,2,2,0]],[[1,1,0,1],[0,1,3,2],[2,3,4,2],[0,2,2,0]],[[1,1,0,1],[0,1,3,2],[2,3,3,3],[0,2,2,0]],[[1,1,0,1],[0,1,3,2],[2,3,3,2],[0,3,2,0]],[[1,1,0,1],[0,1,3,2],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[0,4,2,0],[1,3,3,1],[1,2,1,1]],[[1,3,1,1],[0,3,2,0],[1,3,3,1],[1,2,1,1]],[[2,2,1,1],[0,3,2,0],[1,3,3,1],[1,2,1,1]],[[1,2,1,1],[0,3,2,0],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[0,3,2,0],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[0,3,2,0],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[0,3,2,0],[1,4,3,1],[1,1,2,1]],[[1,1,0,1],[0,2,0,2],[2,3,3,3],[1,2,2,1]],[[1,1,0,1],[0,2,0,2],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[0,2,0,2],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[0,2,0,2],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[0,2,0,2],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[0,2,1,2],[2,2,3,3],[1,2,2,1]],[[1,1,0,1],[0,2,1,2],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[0,2,1,2],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[0,2,1,2],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[0,2,1,2],[2,2,3,2],[1,2,2,2]],[[1,1,0,1],[0,2,1,2],[2,3,3,3],[1,1,2,1]],[[1,1,0,1],[0,2,1,2],[2,3,3,2],[1,1,3,1]],[[1,1,0,1],[0,2,1,2],[2,3,3,2],[1,1,2,2]],[[1,1,0,1],[0,2,2,2],[0,3,3,3],[1,2,2,1]],[[1,1,0,1],[0,2,2,2],[0,3,3,2],[1,3,2,1]],[[1,1,0,1],[0,2,2,2],[0,3,3,2],[1,2,3,1]],[[1,1,0,1],[0,2,2,2],[0,3,3,2],[1,2,2,2]],[[1,1,0,1],[0,2,2,2],[1,2,3,3],[1,2,2,1]],[[1,1,0,1],[0,2,2,2],[1,2,3,2],[1,3,2,1]],[[1,1,0,1],[0,2,2,2],[1,2,3,2],[1,2,3,1]],[[1,1,0,1],[0,2,2,2],[1,2,3,2],[1,2,2,2]],[[1,1,0,1],[0,2,2,2],[1,3,3,3],[1,1,2,1]],[[1,1,0,1],[0,2,2,2],[1,3,3,2],[1,1,3,1]],[[1,1,0,1],[0,2,2,2],[1,3,3,2],[1,1,2,2]],[[1,1,0,1],[0,2,2,3],[2,2,2,2],[1,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,2,2,3],[1,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[0,2,2,2],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[0,2,2,2],[2,2,2,2],[1,2,2,2]],[[1,1,0,1],[0,2,2,2],[2,2,4,1],[1,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,2,3,1],[2,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,2,3,1],[1,3,2,1]],[[1,1,0,1],[0,2,2,2],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[0,2,2,2],[2,2,3,1],[1,2,2,2]],[[1,1,0,1],[0,2,2,2],[2,2,3,3],[0,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,2,3,2],[0,2,3,1]],[[1,1,0,1],[0,2,2,2],[2,2,3,2],[0,2,2,2]],[[1,1,0,1],[0,2,2,3],[2,2,3,2],[1,2,1,1]],[[1,1,0,1],[0,2,2,2],[2,2,4,2],[1,2,1,1]],[[1,1,0,1],[0,2,2,2],[2,2,3,3],[1,2,1,1]],[[1,1,0,1],[0,2,2,2],[2,2,3,2],[1,2,1,2]],[[1,1,0,1],[0,2,2,3],[2,2,3,2],[1,2,2,0]],[[1,1,0,1],[0,2,2,2],[2,2,4,2],[1,2,2,0]],[[1,1,0,1],[0,2,2,2],[2,2,3,3],[1,2,2,0]],[[1,1,0,1],[0,2,2,2],[2,2,3,2],[2,2,2,0]],[[1,1,0,1],[0,2,2,2],[2,2,3,2],[1,3,2,0]],[[1,1,0,1],[0,2,2,2],[2,2,3,2],[1,2,3,0]],[[1,1,0,1],[0,2,2,3],[2,3,1,2],[1,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,4,1,2],[1,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,1,3],[1,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,1,2],[2,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,1,2],[1,3,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,1,2],[1,2,3,1]],[[1,1,0,1],[0,2,2,2],[2,3,1,2],[1,2,2,2]],[[1,1,0,1],[0,2,2,2],[2,4,2,1],[1,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,2,1],[2,2,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,2,1],[1,3,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,2,1],[1,2,3,1]],[[1,1,0,1],[0,2,2,2],[2,3,2,1],[1,2,2,2]],[[1,1,0,1],[0,2,2,3],[2,3,2,2],[1,1,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,2,3],[1,1,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,2,2],[1,1,3,1]],[[1,1,0,1],[0,2,2,2],[2,3,2,2],[1,1,2,2]],[[1,1,0,1],[0,2,2,2],[2,4,2,2],[1,2,2,0]],[[1,1,0,1],[0,2,2,2],[2,3,2,2],[2,2,2,0]],[[1,1,0,1],[0,2,2,2],[2,3,2,2],[1,3,2,0]],[[1,1,0,1],[0,2,2,2],[2,3,2,2],[1,2,3,0]],[[1,1,0,1],[0,2,2,2],[2,4,3,1],[1,1,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,4,1],[1,1,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,1],[1,1,3,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,1],[1,1,2,2]],[[1,1,0,1],[0,2,2,2],[2,4,3,1],[1,2,1,1]],[[1,1,0,1],[0,2,2,2],[2,3,4,1],[1,2,1,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,1],[2,2,1,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,1],[1,3,1,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,3],[0,1,2,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,2],[0,1,3,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,2],[0,1,2,2]],[[1,1,0,1],[0,2,2,3],[2,3,3,2],[1,1,1,1]],[[1,1,0,1],[0,2,2,2],[2,4,3,2],[1,1,1,1]],[[1,1,0,1],[0,2,2,2],[2,3,4,2],[1,1,1,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,3],[1,1,1,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,2],[1,1,1,2]],[[1,1,0,1],[0,2,2,3],[2,3,3,2],[1,1,2,0]],[[1,1,0,1],[0,2,2,2],[2,4,3,2],[1,1,2,0]],[[1,1,0,1],[0,2,2,2],[2,3,4,2],[1,1,2,0]],[[1,1,0,1],[0,2,2,2],[2,3,3,3],[1,1,2,0]],[[1,1,0,1],[0,2,2,2],[2,3,3,2],[1,1,3,0]],[[1,1,0,1],[0,2,2,3],[2,3,3,2],[1,2,0,1]],[[1,1,0,1],[0,2,2,2],[2,4,3,2],[1,2,0,1]],[[1,1,0,1],[0,2,2,2],[2,3,4,2],[1,2,0,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,3],[1,2,0,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,2],[2,2,0,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,2],[1,3,0,1]],[[1,1,0,1],[0,2,2,2],[2,3,3,2],[1,2,0,2]],[[1,1,0,1],[0,2,2,3],[2,3,3,2],[1,2,1,0]],[[1,1,0,1],[0,2,2,2],[2,4,3,2],[1,2,1,0]],[[1,1,0,1],[0,2,2,2],[2,3,4,2],[1,2,1,0]],[[1,1,0,1],[0,2,2,2],[2,3,3,3],[1,2,1,0]],[[1,1,0,1],[0,2,2,2],[2,3,3,2],[2,2,1,0]],[[1,1,0,1],[0,2,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,4,2,0],[1,3,3,1],[1,1,2,1]],[[1,3,1,1],[0,3,2,0],[1,3,3,1],[1,1,2,1]],[[2,2,1,1],[0,3,2,0],[1,3,3,1],[1,1,2,1]],[[1,2,1,1],[0,3,2,0],[1,3,3,0],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[1,3,3,0],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[1,3,3,0],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[1,4,3,0],[1,2,2,1]],[[1,2,1,1],[0,4,2,0],[1,3,3,0],[1,2,2,1]],[[1,1,0,1],[0,2,3,0],[2,2,4,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,0],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[0,2,3,0],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[0,2,3,0],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,0],[2,2,3,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,0],[2,4,2,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,0],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[0,2,3,0],[2,3,2,2],[1,3,2,1]],[[1,1,0,1],[0,2,3,0],[2,3,2,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,0],[2,3,2,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,0],[2,4,3,2],[1,1,2,1]],[[1,1,0,1],[0,2,3,0],[2,3,4,2],[1,1,2,1]],[[1,1,0,1],[0,2,3,0],[2,3,3,2],[1,1,3,1]],[[1,1,0,1],[0,2,3,0],[2,3,3,2],[1,1,2,2]],[[1,1,0,1],[0,2,3,0],[2,4,3,2],[1,2,1,1]],[[1,1,0,1],[0,2,3,0],[2,3,4,2],[1,2,1,1]],[[1,1,0,1],[0,2,3,0],[2,3,3,2],[2,2,1,1]],[[1,1,0,1],[0,2,3,0],[2,3,3,2],[1,3,1,1]],[[1,1,0,1],[0,2,3,1],[2,2,2,3],[1,2,2,1]],[[1,1,0,1],[0,2,3,1],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[0,2,3,1],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[0,2,3,1],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,1],[2,2,2,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,1],[2,2,4,1],[1,2,2,1]],[[1,1,0,1],[0,2,3,1],[2,2,3,1],[2,2,2,1]],[[1,1,0,1],[0,2,3,1],[2,2,3,1],[1,3,2,1]],[[1,1,0,1],[0,2,3,1],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[0,2,3,1],[2,2,3,1],[1,2,2,2]],[[1,1,0,1],[0,2,3,1],[2,2,4,2],[1,2,1,1]],[[1,1,0,1],[0,2,3,1],[2,2,3,3],[1,2,1,1]],[[1,1,0,1],[0,2,3,1],[2,2,3,2],[1,2,1,2]],[[1,1,0,1],[0,2,3,1],[2,2,4,2],[1,2,2,0]],[[1,1,0,1],[0,2,3,1],[2,2,3,3],[1,2,2,0]],[[1,1,0,1],[0,2,3,1],[2,2,3,2],[2,2,2,0]],[[1,1,0,1],[0,2,3,1],[2,2,3,2],[1,3,2,0]],[[1,1,0,1],[0,2,3,1],[2,2,3,2],[1,2,3,0]],[[1,1,0,1],[0,2,3,1],[2,4,1,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,1,3],[1,2,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,1,2],[2,2,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,1,2],[1,3,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,1,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,1],[2,3,1,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,1],[2,4,2,1],[1,2,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,2,1],[2,2,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,2,1],[1,3,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,2,1],[1,2,3,1]],[[1,1,0,1],[0,2,3,1],[2,3,2,1],[1,2,2,2]],[[1,1,0,1],[0,2,3,1],[2,3,2,3],[1,1,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,2,2],[1,1,3,1]],[[1,1,0,1],[0,2,3,1],[2,3,2,2],[1,1,2,2]],[[1,1,0,1],[0,2,3,1],[2,4,2,2],[1,2,2,0]],[[1,1,0,1],[0,2,3,1],[2,3,2,2],[2,2,2,0]],[[1,1,0,1],[0,2,3,1],[2,3,2,2],[1,3,2,0]],[[1,1,0,1],[0,2,3,1],[2,3,2,2],[1,2,3,0]],[[1,1,0,1],[0,2,3,1],[2,4,3,0],[1,2,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,0],[2,2,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,0],[1,3,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,0],[1,2,3,1]],[[1,1,0,1],[0,2,3,1],[2,4,3,1],[1,1,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,4,1],[1,1,2,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,1],[1,1,3,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,1],[1,1,2,2]],[[1,1,0,1],[0,2,3,1],[2,4,3,1],[1,2,1,1]],[[1,1,0,1],[0,2,3,1],[2,3,4,1],[1,2,1,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,1],[2,2,1,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,1],[1,3,1,1]],[[1,1,0,1],[0,2,3,1],[2,4,3,2],[1,1,1,1]],[[1,1,0,1],[0,2,3,1],[2,3,4,2],[1,1,1,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,3],[1,1,1,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,2],[1,1,1,2]],[[1,1,0,1],[0,2,3,1],[2,4,3,2],[1,1,2,0]],[[1,1,0,1],[0,2,3,1],[2,3,4,2],[1,1,2,0]],[[1,1,0,1],[0,2,3,1],[2,3,3,3],[1,1,2,0]],[[1,1,0,1],[0,2,3,1],[2,3,3,2],[1,1,3,0]],[[1,1,0,1],[0,2,3,1],[2,4,3,2],[1,2,0,1]],[[1,1,0,1],[0,2,3,1],[2,3,4,2],[1,2,0,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,3],[1,2,0,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,2],[2,2,0,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,2],[1,3,0,1]],[[1,1,0,1],[0,2,3,1],[2,3,3,2],[1,2,0,2]],[[1,1,0,1],[0,2,3,1],[2,4,3,2],[1,2,1,0]],[[1,1,0,1],[0,2,3,1],[2,3,4,2],[1,2,1,0]],[[1,1,0,1],[0,2,3,1],[2,3,3,3],[1,2,1,0]],[[1,1,0,1],[0,2,3,1],[2,3,3,2],[2,2,1,0]],[[1,1,0,1],[0,2,3,1],[2,3,3,2],[1,3,1,0]],[[1,3,1,1],[0,3,2,0],[1,3,3,0],[1,2,2,1]],[[2,2,1,1],[0,3,2,0],[1,3,3,0],[1,2,2,1]],[[1,1,0,1],[0,2,3,3],[0,2,3,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[0,2,3,3],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[0,2,3,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[0,2,3,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,3],[0,3,2,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[0,3,2,3],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[0,3,2,2],[1,3,2,1]],[[1,1,0,1],[0,2,3,2],[0,3,2,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[0,3,2,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,2],[0,3,4,1],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[0,3,3,1],[1,3,2,1]],[[1,1,0,1],[0,2,3,2],[0,3,3,1],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[0,3,3,1],[1,2,2,2]],[[1,1,0,1],[0,2,3,3],[0,3,3,2],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[0,3,4,2],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[0,3,3,3],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[0,3,3,2],[1,2,1,2]],[[1,1,0,1],[0,2,3,3],[0,3,3,2],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[0,3,4,2],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[0,3,3,3],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[0,3,3,2],[1,3,2,0]],[[1,1,0,1],[0,2,3,2],[0,3,3,2],[1,2,3,0]],[[1,1,0,1],[0,2,3,3],[1,1,3,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,1,3,3],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,1,3,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[1,1,3,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,3],[1,2,2,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,2,2,3],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,2,2,2],[2,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,2,2,2],[1,3,2,1]],[[1,1,0,1],[0,2,3,2],[1,2,2,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[1,2,2,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,2],[1,2,4,1],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,2,3,1],[2,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,2,3,1],[1,3,2,1]],[[1,1,0,1],[0,2,3,2],[1,2,3,1],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[1,2,3,1],[1,2,2,2]],[[1,1,0,1],[0,2,3,3],[1,2,3,2],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[1,2,4,2],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[1,2,3,3],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[1,2,3,2],[1,2,1,2]],[[1,1,0,1],[0,2,3,3],[1,2,3,2],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[1,2,4,2],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[1,2,3,3],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[1,2,3,2],[2,2,2,0]],[[1,1,0,1],[0,2,3,2],[1,2,3,2],[1,3,2,0]],[[1,1,0,1],[0,2,3,2],[1,2,3,2],[1,2,3,0]],[[1,1,0,1],[0,2,3,3],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,1,3],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,1,2],[1,3,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,1,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[1,3,1,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,2],[1,4,2,1],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,2,1],[2,2,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,2,1],[1,3,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,2,1],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[1,3,2,1],[1,2,2,2]],[[1,1,0,1],[0,2,3,3],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,2,3],[1,1,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,2,2],[1,1,3,1]],[[1,1,0,1],[0,2,3,2],[1,3,2,2],[1,1,2,2]],[[1,1,0,1],[0,2,3,2],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[1,3,2,2],[2,2,2,0]],[[1,1,0,1],[0,2,3,2],[1,3,2,2],[1,3,2,0]],[[1,1,0,1],[0,2,3,2],[1,3,2,2],[1,2,3,0]],[[1,1,0,1],[0,2,3,2],[1,4,3,1],[1,1,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,4,1],[1,1,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,1],[1,1,3,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,1],[1,1,2,2]],[[1,1,0,1],[0,2,3,2],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[1,3,4,1],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,1],[2,2,1,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,1],[1,3,1,1]],[[1,1,0,1],[0,2,3,3],[1,3,3,2],[1,0,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,4,2],[1,0,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,3],[1,0,2,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,2],[1,0,2,2]],[[1,1,0,1],[0,2,3,3],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[0,2,3,2],[1,4,3,2],[1,1,1,1]],[[1,1,0,1],[0,2,3,2],[1,3,4,2],[1,1,1,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,3],[1,1,1,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,2],[1,1,1,2]],[[1,1,0,1],[0,2,3,3],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[0,2,3,2],[1,4,3,2],[1,1,2,0]],[[1,1,0,1],[0,2,3,2],[1,3,4,2],[1,1,2,0]],[[1,1,0,1],[0,2,3,2],[1,3,3,3],[1,1,2,0]],[[1,1,0,1],[0,2,3,2],[1,3,3,2],[1,1,3,0]],[[1,1,0,1],[0,2,3,3],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[0,2,3,2],[1,4,3,2],[1,2,0,1]],[[1,1,0,1],[0,2,3,2],[1,3,4,2],[1,2,0,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,3],[1,2,0,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,2],[2,2,0,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,2],[1,3,0,1]],[[1,1,0,1],[0,2,3,2],[1,3,3,2],[1,2,0,2]],[[1,1,0,1],[0,2,3,3],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[0,2,3,2],[1,4,3,2],[1,2,1,0]],[[1,1,0,1],[0,2,3,2],[1,3,4,2],[1,2,1,0]],[[1,1,0,1],[0,2,3,2],[1,3,3,3],[1,2,1,0]],[[1,1,0,1],[0,2,3,2],[1,3,3,2],[2,2,1,0]],[[1,1,0,1],[0,2,3,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,2,0],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[0,3,2,0],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[0,3,2,0],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[0,3,2,0],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[0,2,3,3],[2,0,3,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,0,3,3],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,0,3,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[2,0,3,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,3],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,1,2,3],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,1,2,2],[2,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,1,2,2],[1,3,2,1]],[[1,1,0,1],[0,2,3,2],[2,1,2,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[2,1,2,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,2],[2,1,4,1],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,1,3,1],[2,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,1,3,1],[1,3,2,1]],[[1,1,0,1],[0,2,3,2],[2,1,3,1],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[2,1,3,1],[1,2,2,2]],[[1,1,0,1],[0,2,3,3],[2,1,3,2],[0,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,1,3,3],[0,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,1,3,2],[0,2,3,1]],[[1,1,0,1],[0,2,3,2],[2,1,3,2],[0,2,2,2]],[[1,1,0,1],[0,2,3,3],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[2,1,4,2],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[2,1,3,3],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[2,1,3,2],[1,2,1,2]],[[1,1,0,1],[0,2,3,3],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,1,4,2],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,1,3,3],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,1,3,2],[2,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,1,3,2],[1,3,2,0]],[[1,1,0,1],[0,2,3,2],[2,1,3,2],[1,2,3,0]],[[1,1,0,1],[0,2,3,3],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,2,2,3],[0,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,2,2,2],[0,3,2,1]],[[1,1,0,1],[0,2,3,2],[2,2,2,2],[0,2,3,1]],[[1,1,0,1],[0,2,3,2],[2,2,2,2],[0,2,2,2]],[[1,1,0,1],[0,2,3,2],[2,2,4,0],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,2,3,0],[2,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,2,3,0],[1,3,2,1]],[[1,1,0,1],[0,2,3,2],[2,2,3,0],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[2,2,3,0],[1,2,2,2]],[[1,1,0,1],[0,2,3,2],[2,2,4,1],[0,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,2,3,1],[0,3,2,1]],[[1,1,0,1],[0,2,3,2],[2,2,3,1],[0,2,3,1]],[[1,1,0,1],[0,2,3,2],[2,2,3,1],[0,2,2,2]],[[1,1,0,1],[0,2,3,2],[2,2,4,1],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,2,3,1],[2,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,2,3,1],[1,3,2,0]],[[1,1,0,1],[0,2,3,2],[2,2,3,1],[1,2,3,0]],[[1,1,0,1],[0,2,3,3],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[0,2,3,2],[2,2,4,2],[0,2,1,1]],[[1,1,0,1],[0,2,3,2],[2,2,3,3],[0,2,1,1]],[[1,1,0,1],[0,2,3,2],[2,2,3,2],[0,2,1,2]],[[1,1,0,1],[0,2,3,3],[2,2,3,2],[0,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,2,4,2],[0,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,2,3,3],[0,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,2,3,2],[0,3,2,0]],[[1,1,0,1],[0,2,3,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[0,4,2,0],[1,3,2,2],[1,2,2,0]],[[1,3,1,1],[0,3,2,0],[1,3,2,2],[1,2,2,0]],[[2,2,1,1],[0,3,2,0],[1,3,2,2],[1,2,2,0]],[[1,2,1,1],[0,3,2,0],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[0,3,2,0],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[0,3,2,0],[1,3,2,3],[1,1,2,1]],[[1,2,1,1],[0,3,2,0],[1,3,2,1],[1,2,2,2]],[[1,1,0,1],[0,2,3,3],[2,3,0,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,4,0,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,0,3],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,0,2],[2,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,0,2],[1,3,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,0,2],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[2,3,0,2],[1,2,2,2]],[[1,1,0,1],[0,2,3,3],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,4,1,2],[0,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,1,3],[0,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,1,2],[0,3,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,1,2],[0,2,3,1]],[[1,1,0,1],[0,2,3,2],[2,3,1,2],[0,2,2,2]],[[1,1,0,1],[0,2,3,2],[2,4,2,0],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,0],[2,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,0],[1,3,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,0],[1,2,3,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,0],[1,2,2,2]],[[1,1,0,1],[0,2,3,2],[2,4,2,1],[0,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,1],[0,3,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,1],[0,2,3,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,1],[0,2,2,2]],[[1,1,0,1],[0,2,3,2],[2,4,2,1],[1,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,2,1],[2,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,2,1],[1,3,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,2,1],[1,2,3,0]],[[1,1,0,1],[0,2,3,3],[2,3,2,2],[0,1,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,3],[0,1,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,2],[0,1,3,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,2],[0,1,2,2]],[[1,1,0,1],[0,2,3,2],[2,4,2,2],[0,2,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,2,2],[0,3,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,2,2],[0,2,3,0]],[[1,1,0,1],[0,2,3,3],[2,3,2,2],[1,0,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,3],[1,0,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,2],[1,0,3,1]],[[1,1,0,1],[0,2,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[0,3,2,0],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[1,3,2,1],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[0,4,2,0],[1,3,2,1],[1,2,2,1]],[[1,3,1,1],[0,3,2,0],[1,3,2,1],[1,2,2,1]],[[2,2,1,1],[0,3,2,0],[1,3,2,1],[1,2,2,1]],[[1,1,0,1],[0,2,3,2],[2,4,3,0],[1,1,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,4,0],[1,1,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,0],[1,1,3,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,0],[1,1,2,2]],[[1,1,0,1],[0,2,3,2],[2,4,3,0],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[2,3,4,0],[1,2,1,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,0],[2,2,1,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,0],[1,3,1,1]],[[1,1,0,1],[0,2,3,2],[2,4,3,1],[0,1,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,4,1],[0,1,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,1],[0,1,3,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,1],[0,1,2,2]],[[1,1,0,1],[0,2,3,2],[2,4,3,1],[0,2,1,1]],[[1,1,0,1],[0,2,3,2],[2,3,4,1],[0,2,1,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,1],[0,3,1,1]],[[1,1,0,1],[0,2,3,2],[2,4,3,1],[1,0,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,4,1],[1,0,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,1],[1,0,3,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,1],[1,0,2,2]],[[1,1,0,1],[0,2,3,2],[2,4,3,1],[1,1,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,4,1],[1,1,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,3,1],[1,1,3,0]],[[1,1,0,1],[0,2,3,2],[2,4,3,1],[1,2,0,1]],[[1,1,0,1],[0,2,3,2],[2,3,4,1],[1,2,0,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,1],[2,2,0,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,1],[1,3,0,1]],[[1,1,0,1],[0,2,3,2],[2,4,3,1],[1,2,1,0]],[[1,1,0,1],[0,2,3,2],[2,3,4,1],[1,2,1,0]],[[1,1,0,1],[0,2,3,2],[2,3,3,1],[2,2,1,0]],[[1,1,0,1],[0,2,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,3,2,0],[1,3,1,2],[1,2,2,2]],[[1,2,1,1],[0,3,2,0],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[1,3,1,2],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[1,3,1,3],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,3],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,4,2],[0,0,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,3],[0,0,2,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,2],[0,0,2,2]],[[1,1,0,1],[0,2,3,3],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[0,2,3,2],[2,4,3,2],[0,1,1,1]],[[1,1,0,1],[0,2,3,2],[2,3,4,2],[0,1,1,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,3],[0,1,1,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,2],[0,1,1,2]],[[1,1,0,1],[0,2,3,3],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[0,2,3,2],[2,4,3,2],[0,1,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,4,2],[0,1,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,3,3],[0,1,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,3,2],[0,1,3,0]],[[1,1,0,1],[0,2,3,3],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[0,2,3,2],[2,4,3,2],[0,2,0,1]],[[1,1,0,1],[0,2,3,2],[2,3,4,2],[0,2,0,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,3],[0,2,0,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,2],[0,3,0,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,2],[0,2,0,2]],[[1,1,0,1],[0,2,3,3],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[0,2,3,2],[2,4,3,2],[0,2,1,0]],[[1,1,0,1],[0,2,3,2],[2,3,4,2],[0,2,1,0]],[[1,1,0,1],[0,2,3,2],[2,3,3,3],[0,2,1,0]],[[1,1,0,1],[0,2,3,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,4,2,0],[1,3,1,2],[1,2,2,1]],[[1,3,1,1],[0,3,2,0],[1,3,1,2],[1,2,2,1]],[[2,2,1,1],[0,3,2,0],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[0,2,3,3],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[0,2,3,2],[2,4,3,2],[1,0,1,1]],[[1,1,0,1],[0,2,3,2],[2,3,4,2],[1,0,1,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,3],[1,0,1,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,2],[1,0,1,2]],[[1,1,0,1],[0,2,3,3],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[0,2,3,2],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,4,2],[1,0,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,3,3],[1,0,2,0]],[[1,1,0,1],[0,2,3,2],[2,3,3,2],[1,0,3,0]],[[1,1,0,1],[0,2,3,3],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[0,2,3,2],[2,4,3,2],[1,1,0,1]],[[1,1,0,1],[0,2,3,2],[2,3,4,2],[1,1,0,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,3],[1,1,0,1]],[[1,1,0,1],[0,2,3,2],[2,3,3,2],[1,1,0,2]],[[1,1,0,1],[0,2,3,3],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[0,2,3,2],[2,4,3,2],[1,1,1,0]],[[1,1,0,1],[0,2,3,2],[2,3,4,2],[1,1,1,0]],[[1,1,0,1],[0,2,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,3,2,0],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,2,0],[1,2,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,2,0],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[0,3,2,0],[1,2,3,3],[1,2,2,0]],[[1,2,1,1],[0,3,2,0],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[0,3,2,0],[1,2,3,2],[1,2,1,2]],[[1,2,1,1],[0,3,2,0],[1,2,3,3],[1,2,1,1]],[[1,2,1,1],[0,3,2,0],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[0,3,2,0],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[0,3,2,0],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[1,2,3,1],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[1,2,4,1],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[0,3,2,0],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[0,3,2,0],[1,2,2,3],[1,2,2,1]],[[1,2,1,1],[0,3,2,0],[0,3,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,2,0],[0,3,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,2,0],[0,3,3,3],[1,2,2,0]],[[1,1,0,1],[0,3,0,1],[2,4,3,2],[1,2,2,1]],[[1,1,0,1],[0,3,0,1],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[0,3,0,1],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[0,3,0,1],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[0,3,0,1],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[0,3,0,2],[2,2,3,3],[1,2,2,1]],[[1,1,0,1],[0,3,0,2],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[0,3,0,2],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[0,3,0,2],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[0,3,0,2],[2,2,3,2],[1,2,2,2]],[[1,1,0,1],[0,3,0,2],[2,4,2,2],[1,2,2,1]],[[1,1,0,1],[0,3,0,2],[2,3,2,3],[1,2,2,1]],[[1,1,0,1],[0,3,0,2],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[0,3,0,2],[2,3,2,2],[1,3,2,1]],[[1,1,0,1],[0,3,0,2],[2,3,2,2],[1,2,3,1]],[[1,1,0,1],[0,3,0,2],[2,3,2,2],[1,2,2,2]],[[1,1,0,1],[0,3,0,2],[2,4,3,1],[1,2,2,1]],[[1,1,0,1],[0,3,0,2],[2,3,3,1],[2,2,2,1]],[[1,1,0,1],[0,3,0,2],[2,3,3,1],[1,3,2,1]],[[1,1,0,1],[0,3,0,2],[2,3,3,1],[1,2,3,1]],[[1,1,0,1],[0,3,0,2],[2,3,3,1],[1,2,2,2]],[[1,1,0,1],[0,3,0,2],[2,3,3,3],[1,1,2,1]],[[1,1,0,1],[0,3,0,2],[2,3,3,2],[1,1,3,1]],[[1,1,0,1],[0,3,0,2],[2,3,3,2],[1,1,2,2]],[[1,1,0,1],[0,3,0,2],[2,4,3,2],[1,2,2,0]],[[1,1,0,1],[0,3,0,2],[2,3,3,2],[2,2,2,0]],[[1,1,0,1],[0,3,0,2],[2,3,3,2],[1,3,2,0]],[[1,1,0,1],[0,3,0,2],[2,3,3,2],[1,2,3,0]],[[1,1,0,1],[0,3,1,0],[2,4,3,2],[1,2,2,1]],[[1,1,0,1],[0,3,1,0],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[0,3,1,0],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[0,3,1,0],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[0,3,1,0],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[0,3,1,1],[2,4,3,1],[1,2,2,1]],[[1,1,0,1],[0,3,1,1],[2,3,3,1],[2,2,2,1]],[[1,1,0,1],[0,3,1,1],[2,3,3,1],[1,3,2,1]],[[1,1,0,1],[0,3,1,1],[2,3,3,1],[1,2,3,1]],[[1,1,0,1],[0,3,1,1],[2,3,3,1],[1,2,2,2]],[[1,1,0,1],[0,3,1,1],[2,4,3,2],[1,2,2,0]],[[1,1,0,1],[0,3,1,1],[2,3,3,2],[2,2,2,0]],[[1,1,0,1],[0,3,1,1],[2,3,3,2],[1,3,2,0]],[[1,1,0,1],[0,3,1,1],[2,3,3,2],[1,2,3,0]],[[1,1,0,1],[0,3,1,3],[2,2,2,2],[1,2,2,1]],[[1,1,0,1],[0,3,1,2],[2,2,2,3],[1,2,2,1]],[[1,1,0,1],[0,3,1,2],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[0,3,1,2],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[0,3,1,2],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[0,3,1,2],[2,2,2,2],[1,2,2,2]],[[1,1,0,1],[0,3,1,2],[2,2,4,1],[1,2,2,1]],[[1,1,0,1],[0,3,1,2],[2,2,3,1],[2,2,2,1]],[[1,1,0,1],[0,3,1,2],[2,2,3,1],[1,3,2,1]],[[1,1,0,1],[0,3,1,2],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[0,3,1,2],[2,2,3,1],[1,2,2,2]],[[1,1,0,1],[0,3,1,3],[2,2,3,2],[1,2,1,1]],[[1,1,0,1],[0,3,1,2],[2,2,4,2],[1,2,1,1]],[[1,1,0,1],[0,3,1,2],[2,2,3,3],[1,2,1,1]],[[1,1,0,1],[0,3,1,2],[2,2,3,2],[1,2,1,2]],[[1,1,0,1],[0,3,1,3],[2,2,3,2],[1,2,2,0]],[[1,1,0,1],[0,3,1,2],[2,2,4,2],[1,2,2,0]],[[1,1,0,1],[0,3,1,2],[2,2,3,3],[1,2,2,0]],[[1,1,0,1],[0,3,1,2],[2,2,3,2],[2,2,2,0]],[[1,1,0,1],[0,3,1,2],[2,2,3,2],[1,3,2,0]],[[1,1,0,1],[0,3,1,2],[2,2,3,2],[1,2,3,0]],[[1,1,0,1],[0,3,1,3],[2,3,1,2],[1,2,2,1]],[[1,1,0,1],[0,3,1,2],[2,4,1,2],[1,2,2,1]],[[1,1,0,1],[0,3,1,2],[2,3,1,3],[1,2,2,1]],[[1,1,0,1],[0,3,1,2],[2,3,1,2],[2,2,2,1]],[[1,1,0,1],[0,3,1,2],[2,3,1,2],[1,3,2,1]],[[1,1,0,1],[0,3,1,2],[2,3,1,2],[1,2,3,1]],[[1,1,0,1],[0,3,1,2],[2,3,1,2],[1,2,2,2]],[[1,1,0,1],[0,3,1,2],[2,4,2,1],[1,2,2,1]],[[1,1,0,1],[0,3,1,2],[2,3,2,1],[2,2,2,1]],[[1,1,0,1],[0,3,1,2],[2,3,2,1],[1,3,2,1]],[[1,1,0,1],[0,3,1,2],[2,3,2,1],[1,2,3,1]],[[1,1,0,1],[0,3,1,2],[2,3,2,1],[1,2,2,2]],[[1,1,0,1],[0,3,1,3],[2,3,2,2],[1,1,2,1]],[[1,1,0,1],[0,3,1,2],[2,3,2,3],[1,1,2,1]],[[1,1,0,1],[0,3,1,2],[2,3,2,2],[1,1,3,1]],[[1,1,0,1],[0,3,1,2],[2,3,2,2],[1,1,2,2]],[[1,1,0,1],[0,3,1,2],[2,4,2,2],[1,2,2,0]],[[1,1,0,1],[0,3,1,2],[2,3,2,2],[2,2,2,0]],[[1,1,0,1],[0,3,1,2],[2,3,2,2],[1,3,2,0]],[[1,1,0,1],[0,3,1,2],[2,3,2,2],[1,2,3,0]],[[1,1,0,1],[0,3,1,2],[2,4,3,1],[1,1,2,1]],[[1,1,0,1],[0,3,1,2],[2,3,4,1],[1,1,2,1]],[[1,1,0,1],[0,3,1,2],[2,3,3,1],[1,1,3,1]],[[1,1,0,1],[0,3,1,2],[2,3,3,1],[1,1,2,2]],[[1,1,0,1],[0,3,1,2],[2,4,3,1],[1,2,1,1]],[[1,1,0,1],[0,3,1,2],[2,3,4,1],[1,2,1,1]],[[1,1,0,1],[0,3,1,2],[2,3,3,1],[2,2,1,1]],[[1,1,0,1],[0,3,1,2],[2,3,3,1],[1,3,1,1]],[[1,1,0,1],[0,3,1,3],[2,3,3,2],[1,1,1,1]],[[1,1,0,1],[0,3,1,2],[2,4,3,2],[1,1,1,1]],[[1,1,0,1],[0,3,1,2],[2,3,4,2],[1,1,1,1]],[[1,1,0,1],[0,3,1,2],[2,3,3,3],[1,1,1,1]],[[1,1,0,1],[0,3,1,2],[2,3,3,2],[1,1,1,2]],[[1,1,0,1],[0,3,1,3],[2,3,3,2],[1,1,2,0]],[[1,1,0,1],[0,3,1,2],[2,4,3,2],[1,1,2,0]],[[1,1,0,1],[0,3,1,2],[2,3,4,2],[1,1,2,0]],[[1,1,0,1],[0,3,1,2],[2,3,3,3],[1,1,2,0]],[[1,1,0,1],[0,3,1,2],[2,3,3,2],[1,1,3,0]],[[1,1,0,1],[0,3,1,3],[2,3,3,2],[1,2,0,1]],[[1,1,0,1],[0,3,1,2],[2,4,3,2],[1,2,0,1]],[[1,1,0,1],[0,3,1,2],[2,3,4,2],[1,2,0,1]],[[1,1,0,1],[0,3,1,2],[2,3,3,3],[1,2,0,1]],[[1,1,0,1],[0,3,1,2],[2,3,3,2],[2,2,0,1]],[[1,1,0,1],[0,3,1,2],[2,3,3,2],[1,3,0,1]],[[1,1,0,1],[0,3,1,2],[2,3,3,2],[1,2,0,2]],[[1,1,0,1],[0,3,1,3],[2,3,3,2],[1,2,1,0]],[[1,1,0,1],[0,3,1,2],[2,4,3,2],[1,2,1,0]],[[1,1,0,1],[0,3,1,2],[2,3,4,2],[1,2,1,0]],[[1,1,0,1],[0,3,1,2],[2,3,3,3],[1,2,1,0]],[[1,1,0,1],[0,3,1,2],[2,3,3,2],[2,2,1,0]],[[1,1,0,1],[0,3,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,2,0],[0,3,4,2],[1,2,2,0]],[[1,2,1,1],[0,3,2,0],[0,3,3,2],[1,2,1,2]],[[1,2,1,1],[0,3,2,0],[0,3,3,3],[1,2,1,1]],[[1,2,1,1],[0,3,2,0],[0,3,4,2],[1,2,1,1]],[[1,2,1,1],[0,3,2,0],[0,3,3,1],[1,2,2,2]],[[1,2,1,1],[0,3,2,0],[0,3,3,1],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[0,3,3,1],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[0,3,4,1],[1,2,2,1]],[[1,1,0,1],[0,3,2,0],[2,2,4,2],[1,2,2,1]],[[1,1,0,1],[0,3,2,0],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[0,3,2,0],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[0,3,2,0],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[0,3,2,0],[2,2,3,2],[1,2,2,2]],[[1,1,0,1],[0,3,2,0],[2,4,2,2],[1,2,2,1]],[[1,1,0,1],[0,3,2,0],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[0,3,2,0],[2,3,2,2],[1,3,2,1]],[[1,1,0,1],[0,3,2,0],[2,3,2,2],[1,2,3,1]],[[1,1,0,1],[0,3,2,0],[2,3,2,2],[1,2,2,2]],[[1,1,0,1],[0,3,2,0],[2,4,3,2],[1,1,2,1]],[[1,1,0,1],[0,3,2,0],[2,3,4,2],[1,1,2,1]],[[1,1,0,1],[0,3,2,0],[2,3,3,2],[1,1,3,1]],[[1,1,0,1],[0,3,2,0],[2,3,3,2],[1,1,2,2]],[[1,1,0,1],[0,3,2,0],[2,4,3,2],[1,2,1,1]],[[1,1,0,1],[0,3,2,0],[2,3,4,2],[1,2,1,1]],[[1,1,0,1],[0,3,2,0],[2,3,3,2],[2,2,1,1]],[[1,1,0,1],[0,3,2,0],[2,3,3,2],[1,3,1,1]],[[1,1,0,1],[0,3,2,1],[2,2,2,3],[1,2,2,1]],[[1,1,0,1],[0,3,2,1],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[0,3,2,1],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[0,3,2,1],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[0,3,2,1],[2,2,2,2],[1,2,2,2]],[[1,1,0,1],[0,3,2,1],[2,2,4,1],[1,2,2,1]],[[1,1,0,1],[0,3,2,1],[2,2,3,1],[2,2,2,1]],[[1,1,0,1],[0,3,2,1],[2,2,3,1],[1,3,2,1]],[[1,1,0,1],[0,3,2,1],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[0,3,2,1],[2,2,3,1],[1,2,2,2]],[[1,1,0,1],[0,3,2,1],[2,2,4,2],[1,2,1,1]],[[1,1,0,1],[0,3,2,1],[2,2,3,3],[1,2,1,1]],[[1,1,0,1],[0,3,2,1],[2,2,3,2],[1,2,1,2]],[[1,1,0,1],[0,3,2,1],[2,2,4,2],[1,2,2,0]],[[1,1,0,1],[0,3,2,1],[2,2,3,3],[1,2,2,0]],[[1,1,0,1],[0,3,2,1],[2,2,3,2],[2,2,2,0]],[[1,1,0,1],[0,3,2,1],[2,2,3,2],[1,3,2,0]],[[1,1,0,1],[0,3,2,1],[2,2,3,2],[1,2,3,0]],[[1,1,0,1],[0,3,2,1],[2,4,1,2],[1,2,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,1,3],[1,2,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,1,2],[2,2,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,1,2],[1,3,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,1,2],[1,2,3,1]],[[1,1,0,1],[0,3,2,1],[2,3,1,2],[1,2,2,2]],[[1,1,0,1],[0,3,2,1],[2,4,2,1],[1,2,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,2,1],[2,2,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,2,1],[1,3,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,2,1],[1,2,3,1]],[[1,1,0,1],[0,3,2,1],[2,3,2,1],[1,2,2,2]],[[1,1,0,1],[0,3,2,1],[2,3,2,3],[1,1,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,2,2],[1,1,3,1]],[[1,1,0,1],[0,3,2,1],[2,3,2,2],[1,1,2,2]],[[1,1,0,1],[0,3,2,1],[2,4,2,2],[1,2,2,0]],[[1,1,0,1],[0,3,2,1],[2,3,2,2],[2,2,2,0]],[[1,1,0,1],[0,3,2,1],[2,3,2,2],[1,3,2,0]],[[1,1,0,1],[0,3,2,1],[2,3,2,2],[1,2,3,0]],[[1,1,0,1],[0,3,2,1],[2,4,3,0],[1,2,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,0],[2,2,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,0],[1,3,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,0],[1,2,3,1]],[[1,1,0,1],[0,3,2,1],[2,4,3,1],[1,1,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,4,1],[1,1,2,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,1],[1,1,3,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,1],[1,1,2,2]],[[1,1,0,1],[0,3,2,1],[2,4,3,1],[1,2,1,1]],[[1,1,0,1],[0,3,2,1],[2,3,4,1],[1,2,1,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,1],[2,2,1,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,1],[1,3,1,1]],[[1,1,0,1],[0,3,2,1],[2,4,3,2],[1,1,1,1]],[[1,1,0,1],[0,3,2,1],[2,3,4,2],[1,1,1,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,3],[1,1,1,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,2],[1,1,1,2]],[[1,1,0,1],[0,3,2,1],[2,4,3,2],[1,1,2,0]],[[1,1,0,1],[0,3,2,1],[2,3,4,2],[1,1,2,0]],[[1,1,0,1],[0,3,2,1],[2,3,3,3],[1,1,2,0]],[[1,1,0,1],[0,3,2,1],[2,3,3,2],[1,1,3,0]],[[1,1,0,1],[0,3,2,1],[2,4,3,2],[1,2,0,1]],[[1,1,0,1],[0,3,2,1],[2,3,4,2],[1,2,0,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,3],[1,2,0,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,2],[2,2,0,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,2],[1,3,0,1]],[[1,1,0,1],[0,3,2,1],[2,3,3,2],[1,2,0,2]],[[1,1,0,1],[0,3,2,1],[2,4,3,2],[1,2,1,0]],[[1,1,0,1],[0,3,2,1],[2,3,4,2],[1,2,1,0]],[[1,1,0,1],[0,3,2,1],[2,3,3,3],[1,2,1,0]],[[1,1,0,1],[0,3,2,1],[2,3,3,2],[2,2,1,0]],[[1,1,0,1],[0,3,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,2,0],[0,3,2,2],[1,2,2,2]],[[1,2,1,1],[0,3,2,0],[0,3,2,2],[1,2,3,1]],[[1,2,1,1],[0,3,2,0],[0,3,2,2],[1,3,2,1]],[[1,2,1,1],[0,3,2,0],[0,3,2,3],[1,2,2,1]],[[1,1,0,1],[0,3,2,2],[2,2,4,0],[1,2,2,1]],[[1,1,0,1],[0,3,2,2],[2,2,3,0],[2,2,2,1]],[[1,1,0,1],[0,3,2,2],[2,2,3,0],[1,3,2,1]],[[1,1,0,1],[0,3,2,2],[2,2,3,0],[1,2,3,1]],[[1,1,0,1],[0,3,2,2],[2,2,3,0],[1,2,2,2]],[[1,1,0,1],[0,3,2,2],[2,2,4,1],[1,2,2,0]],[[1,1,0,1],[0,3,2,2],[2,2,3,1],[2,2,2,0]],[[1,1,0,1],[0,3,2,2],[2,2,3,1],[1,3,2,0]],[[1,1,0,1],[0,3,2,2],[2,2,3,1],[1,2,3,0]],[[1,1,0,1],[0,3,2,3],[2,3,0,2],[1,2,2,1]],[[1,1,0,1],[0,3,2,2],[2,4,0,2],[1,2,2,1]],[[1,1,0,1],[0,3,2,2],[2,3,0,3],[1,2,2,1]],[[1,1,0,1],[0,3,2,2],[2,3,0,2],[2,2,2,1]],[[1,1,0,1],[0,3,2,2],[2,3,0,2],[1,3,2,1]],[[1,1,0,1],[0,3,2,2],[2,3,0,2],[1,2,3,1]],[[1,1,0,1],[0,3,2,2],[2,3,0,2],[1,2,2,2]],[[1,1,0,1],[0,3,2,2],[2,4,2,0],[1,2,2,1]],[[1,1,0,1],[0,3,2,2],[2,3,2,0],[2,2,2,1]],[[1,1,0,1],[0,3,2,2],[2,3,2,0],[1,3,2,1]],[[1,1,0,1],[0,3,2,2],[2,3,2,0],[1,2,3,1]],[[1,1,0,1],[0,3,2,2],[2,3,2,0],[1,2,2,2]],[[1,1,0,1],[0,3,2,2],[2,4,2,1],[1,2,2,0]],[[1,1,0,1],[0,3,2,2],[2,3,2,1],[2,2,2,0]],[[1,1,0,1],[0,3,2,2],[2,3,2,1],[1,3,2,0]],[[1,1,0,1],[0,3,2,2],[2,3,2,1],[1,2,3,0]],[[1,1,0,1],[0,3,2,2],[2,4,3,0],[1,1,2,1]],[[1,1,0,1],[0,3,2,2],[2,3,4,0],[1,1,2,1]],[[1,1,0,1],[0,3,2,2],[2,3,3,0],[1,1,3,1]],[[1,1,0,1],[0,3,2,2],[2,3,3,0],[1,1,2,2]],[[1,1,0,1],[0,3,2,2],[2,4,3,0],[1,2,1,1]],[[1,1,0,1],[0,3,2,2],[2,3,4,0],[1,2,1,1]],[[1,1,0,1],[0,3,2,2],[2,3,3,0],[2,2,1,1]],[[1,1,0,1],[0,3,2,2],[2,3,3,0],[1,3,1,1]],[[1,1,0,1],[0,3,2,2],[2,4,3,1],[1,1,2,0]],[[1,1,0,1],[0,3,2,2],[2,3,4,1],[1,1,2,0]],[[1,1,0,1],[0,3,2,2],[2,3,3,1],[1,1,3,0]],[[1,1,0,1],[0,3,2,2],[2,4,3,1],[1,2,0,1]],[[1,1,0,1],[0,3,2,2],[2,3,4,1],[1,2,0,1]],[[1,1,0,1],[0,3,2,2],[2,3,3,1],[2,2,0,1]],[[1,1,0,1],[0,3,2,2],[2,3,3,1],[1,3,0,1]],[[1,1,0,1],[0,3,2,2],[2,4,3,1],[1,2,1,0]],[[1,1,0,1],[0,3,2,2],[2,3,4,1],[1,2,1,0]],[[1,1,0,1],[0,3,2,2],[2,3,3,1],[2,2,1,0]],[[1,1,0,1],[0,3,2,2],[2,3,3,1],[1,3,1,0]],[[1,1,0,1],[0,3,3,1],[2,4,0,2],[1,2,2,1]],[[1,1,0,1],[0,3,3,1],[2,3,0,3],[1,2,2,1]],[[1,1,0,1],[0,3,3,1],[2,3,0,2],[2,2,2,1]],[[1,1,0,1],[0,3,3,1],[2,3,0,2],[1,3,2,1]],[[1,1,0,1],[0,3,3,1],[2,3,0,2],[1,2,3,1]],[[1,1,0,1],[0,3,3,1],[2,3,0,2],[1,2,2,2]],[[1,1,0,1],[0,3,3,1],[2,4,1,1],[1,2,2,1]],[[1,1,0,1],[0,3,3,1],[2,3,1,1],[2,2,2,1]],[[1,1,0,1],[0,3,3,1],[2,3,1,1],[1,3,2,1]],[[1,1,0,1],[0,3,3,1],[2,3,1,1],[1,2,3,1]],[[1,1,0,1],[0,3,3,1],[2,3,1,1],[1,2,2,2]],[[1,1,0,1],[0,3,3,1],[2,4,1,2],[1,2,2,0]],[[1,1,0,1],[0,3,3,1],[2,3,1,2],[2,2,2,0]],[[1,1,0,1],[0,3,3,1],[2,3,1,2],[1,3,2,0]],[[1,1,0,1],[0,3,3,1],[2,3,1,2],[1,2,3,0]],[[1,1,0,1],[0,3,3,1],[2,4,2,1],[1,2,1,1]],[[1,1,0,1],[0,3,3,1],[2,3,2,1],[2,2,1,1]],[[1,1,0,1],[0,3,3,1],[2,3,2,1],[1,3,1,1]],[[1,1,0,1],[0,3,3,1],[2,4,2,2],[1,2,0,1]],[[1,1,0,1],[0,3,3,1],[2,3,2,2],[2,2,0,1]],[[1,1,0,1],[0,3,3,1],[2,3,2,2],[1,3,0,1]],[[1,1,0,1],[0,3,3,1],[2,4,2,2],[1,2,1,0]],[[1,1,0,1],[0,3,3,1],[2,3,2,2],[2,2,1,0]],[[1,1,0,1],[0,3,3,1],[2,3,2,2],[1,3,1,0]],[[1,1,0,1],[0,3,3,3],[1,0,3,2],[1,2,2,1]],[[1,1,0,1],[0,3,3,2],[1,0,3,3],[1,2,2,1]],[[1,1,0,1],[0,3,3,2],[1,0,3,2],[1,2,3,1]],[[1,1,0,1],[0,3,3,2],[1,0,3,2],[1,2,2,2]],[[1,1,0,1],[0,3,3,3],[1,1,2,2],[1,2,2,1]],[[1,1,0,1],[0,3,3,2],[1,1,2,3],[1,2,2,1]],[[1,1,0,1],[0,3,3,2],[1,1,2,2],[2,2,2,1]],[[1,1,0,1],[0,3,3,2],[1,1,2,2],[1,3,2,1]],[[1,1,0,1],[0,3,3,2],[1,1,2,2],[1,2,3,1]],[[1,1,0,1],[0,3,3,2],[1,1,2,2],[1,2,2,2]],[[1,1,0,1],[0,3,3,2],[1,1,4,1],[1,2,2,1]],[[1,1,0,1],[0,3,3,2],[1,1,3,1],[2,2,2,1]],[[1,1,0,1],[0,3,3,2],[1,1,3,1],[1,3,2,1]],[[1,1,0,1],[0,3,3,2],[1,1,3,1],[1,2,3,1]],[[1,1,0,1],[0,3,3,2],[1,1,3,1],[1,2,2,2]],[[1,1,0,1],[0,3,3,3],[1,1,3,2],[1,2,1,1]],[[1,1,0,1],[0,3,3,2],[1,1,4,2],[1,2,1,1]],[[1,1,0,1],[0,3,3,2],[1,1,3,3],[1,2,1,1]],[[1,1,0,1],[0,3,3,2],[1,1,3,2],[1,2,1,2]],[[1,1,0,1],[0,3,3,3],[1,1,3,2],[1,2,2,0]],[[1,1,0,1],[0,3,3,2],[1,1,4,2],[1,2,2,0]],[[1,1,0,1],[0,3,3,2],[1,1,3,3],[1,2,2,0]],[[1,1,0,1],[0,3,3,2],[1,1,3,2],[2,2,2,0]],[[1,1,0,1],[0,3,3,2],[1,1,3,2],[1,3,2,0]],[[1,1,0,1],[0,3,3,2],[1,1,3,2],[1,2,3,0]],[[1,1,0,1],[0,3,3,3],[1,2,2,2],[1,1,2,1]],[[1,1,0,1],[0,3,3,2],[1,2,2,3],[1,1,2,1]],[[1,1,0,1],[0,3,3,2],[1,2,2,2],[1,1,3,1]],[[1,1,0,1],[0,3,3,2],[1,2,2,2],[1,1,2,2]],[[1,1,0,1],[0,3,3,2],[1,2,4,1],[1,1,2,1]],[[1,1,0,1],[0,3,3,2],[1,2,3,1],[1,1,3,1]],[[1,1,0,1],[0,3,3,2],[1,2,3,1],[1,1,2,2]],[[1,1,0,1],[0,3,3,3],[1,2,3,2],[1,0,2,1]],[[1,1,0,1],[0,3,3,2],[1,2,4,2],[1,0,2,1]],[[1,1,0,1],[0,3,3,2],[1,2,3,3],[1,0,2,1]],[[1,1,0,1],[0,3,3,2],[1,2,3,2],[1,0,2,2]],[[1,1,0,1],[0,3,3,3],[1,2,3,2],[1,1,1,1]],[[1,1,0,1],[0,3,3,2],[1,2,4,2],[1,1,1,1]],[[1,1,0,1],[0,3,3,2],[1,2,3,3],[1,1,1,1]],[[1,1,0,1],[0,3,3,2],[1,2,3,2],[1,1,1,2]],[[1,1,0,1],[0,3,3,3],[1,2,3,2],[1,1,2,0]],[[1,1,0,1],[0,3,3,2],[1,2,4,2],[1,1,2,0]],[[1,1,0,1],[0,3,3,2],[1,2,3,3],[1,1,2,0]],[[1,1,0,1],[0,3,3,2],[1,2,3,2],[1,1,3,0]],[[1,1,0,1],[0,3,3,3],[1,2,3,2],[1,2,0,1]],[[1,1,0,1],[0,3,3,2],[1,2,4,2],[1,2,0,1]],[[1,1,0,1],[0,3,3,2],[1,2,3,3],[1,2,0,1]],[[1,1,0,1],[0,3,3,2],[1,2,3,2],[1,2,0,2]],[[1,1,0,1],[0,3,3,3],[1,2,3,2],[1,2,1,0]],[[1,1,0,1],[0,3,3,2],[1,2,4,2],[1,2,1,0]],[[1,1,0,1],[0,3,3,2],[1,2,3,3],[1,2,1,0]],[[1,1,0,1],[0,3,3,3],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,0,2,3],[1,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,0,2,2],[2,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,0,2,2],[1,3,2,1]],[[1,1,0,1],[0,3,3,2],[2,0,2,2],[1,2,3,1]],[[1,1,0,1],[0,3,3,2],[2,0,2,2],[1,2,2,2]],[[1,1,0,1],[0,3,3,2],[2,0,4,1],[1,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,0,3,1],[2,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,0,3,1],[1,3,2,1]],[[1,1,0,1],[0,3,3,2],[2,0,3,1],[1,2,3,1]],[[1,1,0,1],[0,3,3,2],[2,0,3,1],[1,2,2,2]],[[1,1,0,1],[0,3,3,3],[2,0,3,2],[0,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,0,3,3],[0,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,0,3,2],[0,2,3,1]],[[1,1,0,1],[0,3,3,2],[2,0,3,2],[0,2,2,2]],[[1,1,0,1],[0,3,3,3],[2,0,3,2],[1,2,1,1]],[[1,1,0,1],[0,3,3,2],[2,0,4,2],[1,2,1,1]],[[1,1,0,1],[0,3,3,2],[2,0,3,3],[1,2,1,1]],[[1,1,0,1],[0,3,3,2],[2,0,3,2],[1,2,1,2]],[[1,1,0,1],[0,3,3,3],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[0,3,3,2],[2,0,4,2],[1,2,2,0]],[[1,1,0,1],[0,3,3,2],[2,0,3,3],[1,2,2,0]],[[1,1,0,1],[0,3,3,2],[2,0,3,2],[2,2,2,0]],[[1,1,0,1],[0,3,3,2],[2,0,3,2],[1,3,2,0]],[[1,1,0,1],[0,3,3,2],[2,0,3,2],[1,2,3,0]],[[1,1,0,1],[0,3,3,3],[2,1,2,2],[0,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,1,2,3],[0,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,1,2,2],[0,3,2,1]],[[1,1,0,1],[0,3,3,2],[2,1,2,2],[0,2,3,1]],[[1,1,0,1],[0,3,3,2],[2,1,2,2],[0,2,2,2]],[[1,1,0,1],[0,3,3,2],[2,1,4,1],[0,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,1,3,1],[0,3,2,1]],[[1,1,0,1],[0,3,3,2],[2,1,3,1],[0,2,3,1]],[[1,1,0,1],[0,3,3,2],[2,1,3,1],[0,2,2,2]],[[1,1,0,1],[0,3,3,3],[2,1,3,2],[0,2,1,1]],[[1,1,0,1],[0,3,3,2],[2,1,4,2],[0,2,1,1]],[[1,1,0,1],[0,3,3,2],[2,1,3,3],[0,2,1,1]],[[1,1,0,1],[0,3,3,2],[2,1,3,2],[0,2,1,2]],[[1,1,0,1],[0,3,3,3],[2,1,3,2],[0,2,2,0]],[[1,1,0,1],[0,3,3,2],[2,1,4,2],[0,2,2,0]],[[1,1,0,1],[0,3,3,2],[2,1,3,3],[0,2,2,0]],[[1,1,0,1],[0,3,3,2],[2,1,3,2],[0,3,2,0]],[[1,1,0,1],[0,3,3,2],[2,1,3,2],[0,2,3,0]],[[1,1,0,1],[0,3,3,3],[2,2,2,2],[0,1,2,1]],[[1,1,0,1],[0,3,3,2],[2,2,2,3],[0,1,2,1]],[[1,1,0,1],[0,3,3,2],[2,2,2,2],[0,1,3,1]],[[1,1,0,1],[0,3,3,2],[2,2,2,2],[0,1,2,2]],[[1,1,0,1],[0,3,3,3],[2,2,2,2],[1,0,2,1]],[[1,1,0,1],[0,3,3,2],[2,2,2,3],[1,0,2,1]],[[1,1,0,1],[0,3,3,2],[2,2,2,2],[1,0,3,1]],[[1,1,0,1],[0,3,3,2],[2,2,2,2],[1,0,2,2]],[[1,1,0,1],[0,3,3,2],[2,2,4,1],[0,1,2,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,1],[0,1,3,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,1],[0,1,2,2]],[[1,1,0,1],[0,3,3,2],[2,2,4,1],[1,0,2,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,1],[1,0,3,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,1],[1,0,2,2]],[[1,1,0,1],[0,3,3,3],[2,2,3,2],[0,0,2,1]],[[1,1,0,1],[0,3,3,2],[2,2,4,2],[0,0,2,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,3],[0,0,2,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,2],[0,0,2,2]],[[1,1,0,1],[0,3,3,3],[2,2,3,2],[0,1,1,1]],[[1,1,0,1],[0,3,3,2],[2,2,4,2],[0,1,1,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,3],[0,1,1,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,2],[0,1,1,2]],[[1,1,0,1],[0,3,3,3],[2,2,3,2],[0,1,2,0]],[[1,1,0,1],[0,3,3,2],[2,2,4,2],[0,1,2,0]],[[1,1,0,1],[0,3,3,2],[2,2,3,3],[0,1,2,0]],[[1,1,0,1],[0,3,3,2],[2,2,3,2],[0,1,3,0]],[[1,1,0,1],[0,3,3,3],[2,2,3,2],[0,2,0,1]],[[1,1,0,1],[0,3,3,2],[2,2,4,2],[0,2,0,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,3],[0,2,0,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,2],[0,2,0,2]],[[1,1,0,1],[0,3,3,3],[2,2,3,2],[0,2,1,0]],[[1,1,0,1],[0,3,3,2],[2,2,4,2],[0,2,1,0]],[[1,1,0,1],[0,3,3,2],[2,2,3,3],[0,2,1,0]],[[1,1,0,1],[0,3,3,3],[2,2,3,2],[1,0,1,1]],[[1,1,0,1],[0,3,3,2],[2,2,4,2],[1,0,1,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,3],[1,0,1,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,2],[1,0,1,2]],[[1,1,0,1],[0,3,3,3],[2,2,3,2],[1,0,2,0]],[[1,1,0,1],[0,3,3,2],[2,2,4,2],[1,0,2,0]],[[1,1,0,1],[0,3,3,2],[2,2,3,3],[1,0,2,0]],[[1,1,0,1],[0,3,3,2],[2,2,3,2],[1,0,3,0]],[[1,1,0,1],[0,3,3,3],[2,2,3,2],[1,1,0,1]],[[1,1,0,1],[0,3,3,2],[2,2,4,2],[1,1,0,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,3],[1,1,0,1]],[[1,1,0,1],[0,3,3,2],[2,2,3,2],[1,1,0,2]],[[1,1,0,1],[0,3,3,3],[2,2,3,2],[1,1,1,0]],[[1,1,0,1],[0,3,3,2],[2,2,4,2],[1,1,1,0]],[[1,1,0,1],[0,3,3,2],[2,2,3,3],[1,1,1,0]],[[1,2,1,1],[0,3,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,1],[0,3,1,2],[2,4,0,2],[1,1,2,1]],[[1,2,1,1],[0,3,1,2],[3,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,4,1,2],[2,3,0,2],[1,1,2,1]],[[1,3,1,1],[0,3,1,2],[2,3,0,2],[1,1,2,1]],[[1,1,0,1],[0,3,3,2],[2,4,0,1],[1,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,3,0,1],[2,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,3,0,1],[1,3,2,1]],[[1,1,0,1],[0,3,3,2],[2,3,0,1],[1,2,3,1]],[[1,1,0,1],[0,3,3,2],[2,3,0,1],[1,2,2,2]],[[1,1,0,1],[0,3,3,2],[2,4,0,2],[1,2,1,1]],[[1,1,0,1],[0,3,3,2],[2,3,0,2],[2,2,1,1]],[[1,1,0,1],[0,3,3,2],[2,3,0,2],[1,3,1,1]],[[1,1,0,1],[0,3,3,2],[2,4,0,2],[1,2,2,0]],[[1,1,0,1],[0,3,3,2],[2,3,0,2],[2,2,2,0]],[[1,1,0,1],[0,3,3,2],[2,3,0,2],[1,3,2,0]],[[1,1,0,1],[0,3,3,2],[2,3,0,2],[1,2,3,0]],[[1,1,0,1],[0,3,3,2],[2,4,1,0],[1,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,3,1,0],[2,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,3,1,0],[1,3,2,1]],[[1,1,0,1],[0,3,3,2],[2,3,1,0],[1,2,3,1]],[[1,1,0,1],[0,3,3,2],[2,3,1,0],[1,2,2,2]],[[1,1,0,1],[0,3,3,2],[2,4,1,1],[1,2,2,0]],[[1,1,0,1],[0,3,3,2],[2,3,1,1],[2,2,2,0]],[[1,1,0,1],[0,3,3,2],[2,3,1,1],[1,3,2,0]],[[1,1,0,1],[0,3,3,2],[2,3,1,1],[1,2,3,0]],[[1,1,0,1],[0,3,3,2],[2,4,1,2],[1,2,0,1]],[[1,1,0,1],[0,3,3,2],[2,3,1,2],[2,2,0,1]],[[1,1,0,1],[0,3,3,2],[2,3,1,2],[1,3,0,1]],[[1,1,0,1],[0,3,3,2],[2,4,1,2],[1,2,1,0]],[[1,1,0,1],[0,3,3,2],[2,3,1,2],[2,2,1,0]],[[1,1,0,1],[0,3,3,2],[2,3,1,2],[1,3,1,0]],[[2,2,1,1],[0,3,1,2],[2,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,3,1,2],[2,3,0,2],[0,2,2,2]],[[1,2,1,1],[0,3,1,2],[2,3,0,2],[0,2,3,1]],[[1,2,1,1],[0,3,1,2],[2,3,0,2],[0,3,2,1]],[[1,2,1,1],[0,3,1,2],[2,3,0,3],[0,2,2,1]],[[1,2,1,1],[0,3,1,2],[2,4,0,2],[0,2,2,1]],[[1,2,1,1],[0,3,1,2],[3,3,0,2],[0,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,4,2,0],[1,2,1,1]],[[1,1,0,1],[0,3,3,2],[2,3,2,0],[2,2,1,1]],[[1,1,0,1],[0,3,3,2],[2,3,2,0],[1,3,1,1]],[[1,1,0,1],[0,3,3,2],[2,4,2,1],[1,2,0,1]],[[1,1,0,1],[0,3,3,2],[2,3,2,1],[2,2,0,1]],[[1,1,0,1],[0,3,3,2],[2,3,2,1],[1,3,0,1]],[[1,1,0,1],[0,3,3,2],[2,4,2,1],[1,2,1,0]],[[1,1,0,1],[0,3,3,2],[2,3,2,1],[2,2,1,0]],[[1,1,0,1],[0,3,3,2],[2,3,2,1],[1,3,1,0]],[[1,2,1,1],[0,3,1,3],[2,3,0,2],[0,2,2,1]],[[1,2,1,1],[0,4,1,2],[2,3,0,2],[0,2,2,1]],[[1,2,1,2],[0,3,1,2],[2,3,0,2],[0,2,2,1]],[[1,3,1,1],[0,3,1,2],[2,3,0,2],[0,2,2,1]],[[2,2,1,1],[0,3,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[0,3,3,2],[2,4,3,0],[1,2,1,0]],[[1,1,0,1],[0,3,3,2],[2,3,3,0],[2,2,1,0]],[[1,1,0,1],[0,3,3,2],[2,3,3,0],[1,3,1,0]],[[1,2,1,1],[0,3,1,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,1],[0,3,1,2],[2,2,0,2],[1,2,3,1]],[[1,2,1,1],[0,3,1,2],[2,2,0,2],[1,3,2,1]],[[1,2,1,1],[0,3,1,2],[2,2,0,2],[2,2,2,1]],[[1,2,1,1],[0,3,1,2],[2,2,0,3],[1,2,2,1]],[[1,2,1,1],[0,3,1,2],[3,2,0,2],[1,2,2,1]],[[1,2,1,1],[0,3,1,3],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[0,3,3,3],[2,3,3,2],[0,0,1,1]],[[1,1,0,1],[0,3,3,2],[2,3,4,2],[0,0,1,1]],[[1,1,0,1],[0,3,3,2],[2,3,3,3],[0,0,1,1]],[[1,1,0,1],[0,3,3,2],[2,3,3,2],[0,0,1,2]],[[1,1,0,1],[0,3,3,3],[2,3,3,2],[0,0,2,0]],[[1,1,0,1],[0,3,3,2],[2,3,4,2],[0,0,2,0]],[[1,1,0,1],[0,3,3,2],[2,3,3,3],[0,0,2,0]],[[1,2,1,2],[0,3,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,0,1,2],[2,3,3,3],[1,2,2,1]],[[1,1,0,1],[1,0,1,2],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[1,0,1,2],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,0,1,2],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,0,1,2],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,0,2,3],[2,3,2,2],[1,2,2,1]],[[1,1,0,1],[1,0,2,2],[2,3,2,3],[1,2,2,1]],[[1,1,0,1],[1,0,2,2],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[1,0,2,2],[2,3,2,2],[1,3,2,1]],[[1,1,0,1],[1,0,2,2],[2,3,2,2],[1,2,3,1]],[[1,1,0,1],[1,0,2,2],[2,3,2,2],[1,2,2,2]],[[1,1,0,1],[1,0,2,2],[2,3,4,1],[1,2,2,1]],[[1,1,0,1],[1,0,2,2],[2,3,3,1],[2,2,2,1]],[[1,1,0,1],[1,0,2,2],[2,3,3,1],[1,3,2,1]],[[1,1,0,1],[1,0,2,2],[2,3,3,1],[1,2,3,1]],[[1,1,0,1],[1,0,2,2],[2,3,3,1],[1,2,2,2]],[[1,1,0,1],[1,0,2,3],[2,3,3,2],[1,2,1,1]],[[1,1,0,1],[1,0,2,2],[2,3,4,2],[1,2,1,1]],[[1,1,0,1],[1,0,2,2],[2,3,3,3],[1,2,1,1]],[[1,1,0,1],[1,0,2,2],[2,3,3,2],[1,2,1,2]],[[1,1,0,1],[1,0,2,3],[2,3,3,2],[1,2,2,0]],[[1,1,0,1],[1,0,2,2],[2,3,4,2],[1,2,2,0]],[[1,1,0,1],[1,0,2,2],[2,3,3,3],[1,2,2,0]],[[1,1,0,1],[1,0,2,2],[2,3,3,2],[2,2,2,0]],[[1,1,0,1],[1,0,2,2],[2,3,3,2],[1,3,2,0]],[[1,1,0,1],[1,0,2,2],[2,3,3,2],[1,2,3,0]],[[1,1,0,1],[1,0,3,0],[2,3,4,2],[1,2,2,1]],[[1,1,0,1],[1,0,3,0],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[1,0,3,0],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,0,3,0],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,0,3,0],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,0,3,1],[2,3,2,3],[1,2,2,1]],[[1,1,0,1],[1,0,3,1],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[1,0,3,1],[2,3,2,2],[1,3,2,1]],[[1,1,0,1],[1,0,3,1],[2,3,2,2],[1,2,3,1]],[[1,1,0,1],[1,0,3,1],[2,3,2,2],[1,2,2,2]],[[1,1,0,1],[1,0,3,1],[2,3,4,1],[1,2,2,1]],[[1,1,0,1],[1,0,3,1],[2,3,3,1],[2,2,2,1]],[[1,1,0,1],[1,0,3,1],[2,3,3,1],[1,3,2,1]],[[1,1,0,1],[1,0,3,1],[2,3,3,1],[1,2,3,1]],[[1,1,0,1],[1,0,3,1],[2,3,3,1],[1,2,2,2]],[[1,1,0,1],[1,0,3,1],[2,3,4,2],[1,2,1,1]],[[1,1,0,1],[1,0,3,1],[2,3,3,3],[1,2,1,1]],[[1,1,0,1],[1,0,3,1],[2,3,3,2],[1,2,1,2]],[[1,1,0,1],[1,0,3,1],[2,3,4,2],[1,2,2,0]],[[1,1,0,1],[1,0,3,1],[2,3,3,3],[1,2,2,0]],[[1,1,0,1],[1,0,3,1],[2,3,3,2],[2,2,2,0]],[[1,1,0,1],[1,0,3,1],[2,3,3,2],[1,3,2,0]],[[1,1,0,1],[1,0,3,1],[2,3,3,2],[1,2,3,0]],[[1,1,0,1],[1,0,3,2],[2,3,4,0],[1,2,2,1]],[[1,1,0,1],[1,0,3,2],[2,3,3,0],[2,2,2,1]],[[1,1,0,1],[1,0,3,2],[2,3,3,0],[1,3,2,1]],[[1,1,0,1],[1,0,3,2],[2,3,3,0],[1,2,3,1]],[[1,1,0,1],[1,0,3,2],[2,3,3,0],[1,2,2,2]],[[1,1,0,1],[1,0,3,2],[2,3,4,1],[1,2,2,0]],[[1,1,0,1],[1,0,3,2],[2,3,3,1],[2,2,2,0]],[[1,1,0,1],[1,0,3,2],[2,3,3,1],[1,3,2,0]],[[1,1,0,1],[1,0,3,2],[2,3,3,1],[1,2,3,0]],[[1,1,0,1],[1,1,0,2],[2,3,3,3],[1,2,2,1]],[[1,1,0,1],[1,1,0,2],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[1,1,0,2],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,1,0,2],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,1,0,2],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,1,1,2],[1,3,3,3],[1,2,2,1]],[[1,1,0,1],[1,1,1,2],[1,3,3,2],[2,2,2,1]],[[1,1,0,1],[1,1,1,2],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,1,1,2],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,1,1,2],[1,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,1,1,2],[2,3,3,3],[0,2,2,1]],[[1,1,0,1],[1,1,1,2],[2,3,3,2],[0,3,2,1]],[[1,1,0,1],[1,1,1,2],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[1,1,1,2],[2,3,3,2],[0,2,2,2]],[[1,1,0,1],[1,1,2,3],[1,3,2,2],[1,2,2,1]],[[1,1,0,1],[1,1,2,2],[1,3,2,3],[1,2,2,1]],[[1,1,0,1],[1,1,2,2],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[1,1,2,2],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[1,1,2,2],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[1,1,2,2],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[1,1,2,2],[1,3,4,1],[1,2,2,1]],[[1,1,0,1],[1,1,2,2],[1,3,3,1],[2,2,2,1]],[[1,1,0,1],[1,1,2,2],[1,3,3,1],[1,3,2,1]],[[1,1,0,1],[1,1,2,2],[1,3,3,1],[1,2,3,1]],[[1,1,0,1],[1,1,2,2],[1,3,3,1],[1,2,2,2]],[[1,1,0,1],[1,1,2,3],[1,3,3,2],[1,2,1,1]],[[1,1,0,1],[1,1,2,2],[1,3,4,2],[1,2,1,1]],[[1,1,0,1],[1,1,2,2],[1,3,3,3],[1,2,1,1]],[[1,1,0,1],[1,1,2,2],[1,3,3,2],[1,2,1,2]],[[1,1,0,1],[1,1,2,3],[1,3,3,2],[1,2,2,0]],[[1,1,0,1],[1,1,2,2],[1,3,4,2],[1,2,2,0]],[[1,1,0,1],[1,1,2,2],[1,3,3,3],[1,2,2,0]],[[1,1,0,1],[1,1,2,2],[1,3,3,2],[2,2,2,0]],[[1,1,0,1],[1,1,2,2],[1,3,3,2],[1,3,2,0]],[[1,1,0,1],[1,1,2,2],[1,3,3,2],[1,2,3,0]],[[1,1,0,1],[1,1,2,3],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[1,1,2,2],[2,3,2,3],[0,2,2,1]],[[1,1,0,1],[1,1,2,2],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[1,1,2,2],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[1,1,2,2],[2,3,2,2],[0,2,2,2]],[[1,1,0,1],[1,1,2,2],[2,3,4,1],[0,2,2,1]],[[1,1,0,1],[1,1,2,2],[2,3,3,1],[0,3,2,1]],[[1,1,0,1],[1,1,2,2],[2,3,3,1],[0,2,3,1]],[[1,1,0,1],[1,1,2,2],[2,3,3,1],[0,2,2,2]],[[1,1,0,1],[1,1,2,3],[2,3,3,2],[0,2,1,1]],[[1,1,0,1],[1,1,2,2],[2,3,4,2],[0,2,1,1]],[[1,1,0,1],[1,1,2,2],[2,3,3,3],[0,2,1,1]],[[1,1,0,1],[1,1,2,2],[2,3,3,2],[0,2,1,2]],[[1,1,0,1],[1,1,2,3],[2,3,3,2],[0,2,2,0]],[[1,1,0,1],[1,1,2,2],[2,3,4,2],[0,2,2,0]],[[1,1,0,1],[1,1,2,2],[2,3,3,3],[0,2,2,0]],[[1,1,0,1],[1,1,2,2],[2,3,3,2],[0,3,2,0]],[[1,1,0,1],[1,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,1,0,1],[1,1,3,0],[1,3,4,2],[1,2,2,1]],[[1,1,0,1],[1,1,3,0],[1,3,3,2],[2,2,2,1]],[[1,1,0,1],[1,1,3,0],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,1,3,0],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,1,3,0],[1,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,1,3,0],[2,3,4,2],[0,2,2,1]],[[1,1,0,1],[1,1,3,0],[2,3,3,2],[0,3,2,1]],[[1,1,0,1],[1,1,3,0],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[1,1,3,0],[2,3,3,2],[0,2,2,2]],[[1,1,0,1],[1,1,3,1],[1,3,2,3],[1,2,2,1]],[[1,1,0,1],[1,1,3,1],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[1,1,3,1],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[1,1,3,1],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[1,1,3,1],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[1,1,3,1],[1,3,4,1],[1,2,2,1]],[[1,1,0,1],[1,1,3,1],[1,3,3,1],[2,2,2,1]],[[1,1,0,1],[1,1,3,1],[1,3,3,1],[1,3,2,1]],[[1,1,0,1],[1,1,3,1],[1,3,3,1],[1,2,3,1]],[[1,1,0,1],[1,1,3,1],[1,3,3,1],[1,2,2,2]],[[1,1,0,1],[1,1,3,1],[1,3,4,2],[1,2,1,1]],[[1,1,0,1],[1,1,3,1],[1,3,3,3],[1,2,1,1]],[[1,1,0,1],[1,1,3,1],[1,3,3,2],[1,2,1,2]],[[1,1,0,1],[1,1,3,1],[1,3,4,2],[1,2,2,0]],[[1,1,0,1],[1,1,3,1],[1,3,3,3],[1,2,2,0]],[[1,1,0,1],[1,1,3,1],[1,3,3,2],[2,2,2,0]],[[1,1,0,1],[1,1,3,1],[1,3,3,2],[1,3,2,0]],[[1,1,0,1],[1,1,3,1],[1,3,3,2],[1,2,3,0]],[[1,1,0,1],[1,1,3,1],[2,3,2,3],[0,2,2,1]],[[1,1,0,1],[1,1,3,1],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[1,1,3,1],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[1,1,3,1],[2,3,2,2],[0,2,2,2]],[[1,1,0,1],[1,1,3,1],[2,3,4,1],[0,2,2,1]],[[1,1,0,1],[1,1,3,1],[2,3,3,1],[0,3,2,1]],[[1,1,0,1],[1,1,3,1],[2,3,3,1],[0,2,3,1]],[[1,1,0,1],[1,1,3,1],[2,3,3,1],[0,2,2,2]],[[1,1,0,1],[1,1,3,1],[2,3,4,2],[0,2,1,1]],[[1,1,0,1],[1,1,3,1],[2,3,3,3],[0,2,1,1]],[[1,1,0,1],[1,1,3,1],[2,3,3,2],[0,2,1,2]],[[1,1,0,1],[1,1,3,1],[2,3,4,2],[0,2,2,0]],[[1,1,0,1],[1,1,3,1],[2,3,3,3],[0,2,2,0]],[[1,1,0,1],[1,1,3,1],[2,3,3,2],[0,3,2,0]],[[1,1,0,1],[1,1,3,1],[2,3,3,2],[0,2,3,0]],[[1,1,0,1],[1,1,3,2],[1,3,4,0],[1,2,2,1]],[[1,1,0,1],[1,1,3,2],[1,3,3,0],[2,2,2,1]],[[1,1,0,1],[1,1,3,2],[1,3,3,0],[1,3,2,1]],[[1,1,0,1],[1,1,3,2],[1,3,3,0],[1,2,3,1]],[[1,1,0,1],[1,1,3,2],[1,3,3,0],[1,2,2,2]],[[1,1,0,1],[1,1,3,2],[1,3,4,1],[1,2,2,0]],[[1,1,0,1],[1,1,3,2],[1,3,3,1],[2,2,2,0]],[[1,1,0,1],[1,1,3,2],[1,3,3,1],[1,3,2,0]],[[1,1,0,1],[1,1,3,2],[1,3,3,1],[1,2,3,0]],[[1,1,0,1],[1,1,3,2],[2,3,4,0],[0,2,2,1]],[[1,1,0,1],[1,1,3,2],[2,3,3,0],[0,3,2,1]],[[1,1,0,1],[1,1,3,2],[2,3,3,0],[0,2,3,1]],[[1,1,0,1],[1,1,3,2],[2,3,3,0],[0,2,2,2]],[[1,1,0,1],[1,1,3,2],[2,3,4,1],[0,2,2,0]],[[1,1,0,1],[1,1,3,2],[2,3,3,1],[0,3,2,0]],[[1,1,0,1],[1,1,3,2],[2,3,3,1],[0,2,3,0]],[[1,2,1,1],[0,3,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,1,1],[0,3,1,2],[1,3,0,2],[1,2,3,1]],[[1,2,1,1],[0,3,1,2],[1,3,0,2],[1,3,2,1]],[[1,2,1,1],[0,3,1,2],[1,3,0,2],[2,2,2,1]],[[1,2,1,1],[0,3,1,2],[1,3,0,3],[1,2,2,1]],[[1,2,1,1],[0,3,1,2],[1,4,0,2],[1,2,2,1]],[[1,2,1,1],[0,3,1,3],[1,3,0,2],[1,2,2,1]],[[1,2,1,1],[0,4,1,2],[1,3,0,2],[1,2,2,1]],[[1,2,1,2],[0,3,1,2],[1,3,0,2],[1,2,2,1]],[[1,3,1,1],[0,3,1,2],[1,3,0,2],[1,2,2,1]],[[2,2,1,1],[0,3,1,2],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[1,2,0,2],[1,3,3,3],[1,2,2,1]],[[1,1,0,1],[1,2,0,2],[1,3,3,2],[2,2,2,1]],[[1,1,0,1],[1,2,0,2],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,2,0,2],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,0,2],[1,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,2,0,2],[2,3,3,3],[0,2,2,1]],[[1,1,0,1],[1,2,0,2],[2,3,3,2],[0,3,2,1]],[[1,1,0,1],[1,2,0,2],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[1,2,0,2],[2,3,3,2],[0,2,2,2]],[[1,1,0,1],[1,2,1,2],[0,3,3,3],[1,2,2,1]],[[1,1,0,1],[1,2,1,2],[0,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,2,1,2],[0,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,1,2],[0,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,2,1,2],[1,2,3,3],[1,2,2,1]],[[1,1,0,1],[1,2,1,2],[1,2,3,2],[2,2,2,1]],[[1,1,0,1],[1,2,1,2],[1,2,3,2],[1,3,2,1]],[[1,1,0,1],[1,2,1,2],[1,2,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,1,2],[1,2,3,2],[1,2,2,2]],[[1,1,0,1],[1,2,1,2],[1,3,3,3],[1,1,2,1]],[[1,1,0,1],[1,2,1,2],[1,3,3,2],[1,1,3,1]],[[1,1,0,1],[1,2,1,2],[1,3,3,2],[1,1,2,2]],[[1,1,0,1],[1,2,1,2],[2,1,3,3],[1,2,2,1]],[[1,1,0,1],[1,2,1,2],[2,1,3,2],[2,2,2,1]],[[1,1,0,1],[1,2,1,2],[2,1,3,2],[1,3,2,1]],[[1,1,0,1],[1,2,1,2],[2,1,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,1,2],[2,1,3,2],[1,2,2,2]],[[1,1,0,1],[1,2,1,2],[2,2,3,3],[0,2,2,1]],[[1,1,0,1],[1,2,1,2],[2,2,3,2],[0,3,2,1]],[[1,1,0,1],[1,2,1,2],[2,2,3,2],[0,2,3,1]],[[1,1,0,1],[1,2,1,2],[2,2,3,2],[0,2,2,2]],[[1,1,0,1],[1,2,1,2],[2,3,3,3],[0,1,2,1]],[[1,1,0,1],[1,2,1,2],[2,3,3,2],[0,1,3,1]],[[1,1,0,1],[1,2,1,2],[2,3,3,2],[0,1,2,2]],[[1,1,0,1],[1,2,1,2],[2,3,3,3],[1,0,2,1]],[[1,1,0,1],[1,2,1,2],[2,3,3,2],[1,0,3,1]],[[1,1,0,1],[1,2,1,2],[2,3,3,2],[1,0,2,2]],[[1,1,0,1],[1,2,2,3],[0,3,2,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[0,3,2,3],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[0,3,2,2],[1,3,2,1]],[[1,1,0,1],[1,2,2,2],[0,3,2,2],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[0,3,2,2],[1,2,2,2]],[[1,1,0,1],[1,2,2,2],[0,3,4,1],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[0,3,3,1],[1,3,2,1]],[[1,1,0,1],[1,2,2,2],[0,3,3,1],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[0,3,3,1],[1,2,2,2]],[[1,1,0,1],[1,2,2,3],[0,3,3,2],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[0,3,4,2],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[0,3,3,3],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[0,3,3,2],[1,2,1,2]],[[1,1,0,1],[1,2,2,3],[0,3,3,2],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[0,3,4,2],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[0,3,3,3],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[0,3,3,2],[1,3,2,0]],[[1,1,0,1],[1,2,2,2],[0,3,3,2],[1,2,3,0]],[[1,1,0,1],[1,2,2,3],[1,1,3,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,1,3,3],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,1,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[1,1,3,2],[1,2,2,2]],[[1,1,0,2],[1,2,2,2],[1,2,2,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,3],[1,2,2,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,2,2,3],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,2,2,2],[2,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,2,2,2],[1,3,2,1]],[[1,1,0,1],[1,2,2,2],[1,2,2,2],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[1,2,2,2],[1,2,2,2]],[[1,1,0,1],[1,2,2,2],[1,2,4,1],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,2,3,1],[2,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,2,3,1],[1,3,2,1]],[[1,1,0,1],[1,2,2,2],[1,2,3,1],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[1,2,3,1],[1,2,2,2]],[[1,1,0,2],[1,2,2,2],[1,2,3,2],[1,2,1,1]],[[1,1,0,1],[1,2,2,3],[1,2,3,2],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[1,2,4,2],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[1,2,3,3],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[1,2,3,2],[1,2,1,2]],[[1,1,0,2],[1,2,2,2],[1,2,3,2],[1,2,2,0]],[[1,1,0,1],[1,2,2,3],[1,2,3,2],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[1,2,4,2],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[1,2,3,3],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[1,2,3,2],[2,2,2,0]],[[1,1,0,1],[1,2,2,2],[1,2,3,2],[1,3,2,0]],[[1,1,0,1],[1,2,2,2],[1,2,3,2],[1,2,3,0]],[[1,1,0,2],[1,2,2,2],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,3],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,1,3],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,1,2],[1,3,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,1,2],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[1,3,1,2],[1,2,2,2]],[[1,1,0,1],[1,2,2,2],[1,4,2,1],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,2,1],[2,2,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,2,1],[1,3,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,2,1],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[1,3,2,1],[1,2,2,2]],[[1,1,0,2],[1,2,2,2],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[1,2,2,3],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,2,3],[1,1,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,2,2],[1,1,3,1]],[[1,1,0,1],[1,2,2,2],[1,3,2,2],[1,1,2,2]],[[1,1,0,1],[1,2,2,2],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[1,3,2,2],[2,2,2,0]],[[1,1,0,1],[1,2,2,2],[1,3,2,2],[1,3,2,0]],[[1,1,0,1],[1,2,2,2],[1,3,2,2],[1,2,3,0]],[[1,1,0,1],[1,2,2,2],[1,4,3,1],[1,1,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,4,1],[1,1,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,1],[1,1,3,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,1],[1,1,2,2]],[[1,1,0,1],[1,2,2,2],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[1,3,4,1],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,1],[2,2,1,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,1],[1,3,1,1]],[[1,1,0,1],[1,2,2,3],[1,3,3,2],[1,0,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,4,2],[1,0,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,3],[1,0,2,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,2],[1,0,2,2]],[[1,1,0,2],[1,2,2,2],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,2,2,3],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,2,2,2],[1,4,3,2],[1,1,1,1]],[[1,1,0,1],[1,2,2,2],[1,3,4,2],[1,1,1,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,3],[1,1,1,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,2],[1,1,1,2]],[[1,1,0,2],[1,2,2,2],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[1,2,2,3],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[1,2,2,2],[1,4,3,2],[1,1,2,0]],[[1,1,0,1],[1,2,2,2],[1,3,4,2],[1,1,2,0]],[[1,1,0,1],[1,2,2,2],[1,3,3,3],[1,1,2,0]],[[1,1,0,1],[1,2,2,2],[1,3,3,2],[1,1,3,0]],[[1,1,0,2],[1,2,2,2],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[1,2,2,3],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[1,2,2,2],[1,4,3,2],[1,2,0,1]],[[1,1,0,1],[1,2,2,2],[1,3,4,2],[1,2,0,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,3],[1,2,0,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,2],[2,2,0,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,2],[1,3,0,1]],[[1,1,0,1],[1,2,2,2],[1,3,3,2],[1,2,0,2]],[[1,1,0,2],[1,2,2,2],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[1,2,2,3],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[1,2,2,2],[1,4,3,2],[1,2,1,0]],[[1,1,0,1],[1,2,2,2],[1,3,4,2],[1,2,1,0]],[[1,1,0,1],[1,2,2,2],[1,3,3,3],[1,2,1,0]],[[1,1,0,1],[1,2,2,2],[1,3,3,2],[2,2,1,0]],[[1,1,0,1],[1,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,1,0,1],[1,2,2,3],[2,0,3,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,0,3,3],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,0,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[2,0,3,2],[1,2,2,2]],[[1,1,0,2],[1,2,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,3],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[3,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,1,2,3],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,1,2,2],[2,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,1,2,2],[1,3,2,1]],[[1,1,0,1],[1,2,2,2],[2,1,2,2],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[2,1,2,2],[1,2,2,2]],[[1,1,0,1],[1,2,2,2],[3,1,3,1],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,1,4,1],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,1,3,1],[2,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,1,3,1],[1,3,2,1]],[[1,1,0,1],[1,2,2,2],[2,1,3,1],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[2,1,3,1],[1,2,2,2]],[[1,1,0,1],[1,2,2,3],[2,1,3,2],[0,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,1,3,3],[0,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,1,3,2],[0,2,3,1]],[[1,1,0,1],[1,2,2,2],[2,1,3,2],[0,2,2,2]],[[1,1,0,2],[1,2,2,2],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[1,2,2,3],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[2,1,4,2],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[2,1,3,3],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[2,1,3,2],[1,2,1,2]],[[1,1,0,2],[1,2,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,2,2,3],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[3,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[2,1,4,2],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[2,1,3,3],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[2,1,3,2],[2,2,2,0]],[[1,1,0,1],[1,2,2,2],[2,1,3,2],[1,3,2,0]],[[1,1,0,1],[1,2,2,2],[2,1,3,2],[1,2,3,0]],[[1,1,0,2],[1,2,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,3],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[3,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,1,3],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,1,2],[2,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,1,2],[1,3,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,1,2],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[2,2,1,2],[1,2,2,2]],[[1,1,0,1],[1,2,2,2],[3,2,2,1],[1,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,2,1],[2,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,2,1],[1,3,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,2,1],[1,2,3,1]],[[1,1,0,1],[1,2,2,2],[2,2,2,1],[1,2,2,2]],[[1,1,0,2],[1,2,2,2],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[1,2,2,3],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,2,3],[0,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,2,2],[0,3,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,2,2],[0,2,3,1]],[[1,1,0,1],[1,2,2,2],[2,2,2,2],[0,2,2,2]],[[1,1,0,1],[1,2,2,2],[3,2,2,2],[1,2,2,0]],[[1,1,0,1],[1,2,2,2],[2,2,2,2],[2,2,2,0]],[[1,1,0,1],[1,2,2,2],[2,2,2,2],[1,3,2,0]],[[1,1,0,1],[1,2,2,2],[2,2,2,2],[1,2,3,0]],[[1,1,0,1],[1,2,2,2],[2,2,4,1],[0,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,3,1],[0,3,2,1]],[[1,1,0,1],[1,2,2,2],[2,2,3,1],[0,2,3,1]],[[1,1,0,1],[1,2,2,2],[2,2,3,1],[0,2,2,2]],[[1,1,0,1],[1,2,2,2],[3,2,3,1],[1,2,1,1]],[[1,1,0,1],[1,2,2,2],[2,2,3,1],[2,2,1,1]],[[1,1,0,1],[1,2,2,2],[2,2,3,1],[1,3,1,1]],[[1,1,0,2],[1,2,2,2],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[1,2,2,3],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[1,2,2,2],[2,2,4,2],[0,2,1,1]],[[1,1,0,1],[1,2,2,2],[2,2,3,3],[0,2,1,1]],[[1,1,0,1],[1,2,2,2],[2,2,3,2],[0,2,1,2]],[[1,1,0,2],[1,2,2,2],[2,2,3,2],[0,2,2,0]],[[1,1,0,1],[1,2,2,3],[2,2,3,2],[0,2,2,0]],[[1,1,0,1],[1,2,2,2],[2,2,4,2],[0,2,2,0]],[[1,1,0,1],[1,2,2,2],[2,2,3,3],[0,2,2,0]],[[1,1,0,1],[1,2,2,2],[2,2,3,2],[0,3,2,0]],[[1,1,0,1],[1,2,2,2],[2,2,3,2],[0,2,3,0]],[[1,1,0,1],[1,2,2,2],[3,2,3,2],[1,2,0,1]],[[1,1,0,1],[1,2,2,2],[2,2,3,2],[2,2,0,1]],[[1,1,0,1],[1,2,2,2],[2,2,3,2],[1,3,0,1]],[[1,1,0,1],[1,2,2,2],[3,2,3,2],[1,2,1,0]],[[1,1,0,1],[1,2,2,2],[2,2,3,2],[2,2,1,0]],[[1,1,0,1],[1,2,2,2],[2,2,3,2],[1,3,1,0]],[[1,1,0,2],[1,2,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[1,2,2,3],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[1,2,2,2],[3,3,1,2],[0,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,4,1,2],[0,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,1,3],[0,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,1,2],[0,3,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,1,2],[0,2,3,1]],[[1,1,0,1],[1,2,2,2],[2,3,1,2],[0,2,2,2]],[[1,1,0,1],[1,2,2,2],[3,3,1,2],[1,1,2,1]],[[1,1,0,1],[1,2,2,2],[2,4,1,2],[1,1,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,1,2],[2,1,2,1]],[[1,1,0,1],[1,2,2,2],[3,3,2,1],[0,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,4,2,1],[0,2,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,2,1],[0,3,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,2,1],[0,2,3,1]],[[1,1,0,1],[1,2,2,2],[2,3,2,1],[0,2,2,2]],[[1,1,0,1],[1,2,2,2],[3,3,2,1],[1,1,2,1]],[[1,1,0,1],[1,2,2,2],[2,4,2,1],[1,1,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,2,1],[2,1,2,1]],[[1,1,0,2],[1,2,2,2],[2,3,2,2],[0,1,2,1]],[[1,1,0,1],[1,2,2,3],[2,3,2,2],[0,1,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,2,3],[0,1,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,2,2],[0,1,3,1]],[[1,1,0,1],[1,2,2,2],[2,3,2,2],[0,1,2,2]],[[1,1,0,1],[1,2,2,2],[3,3,2,2],[0,2,2,0]],[[1,1,0,1],[1,2,2,2],[2,4,2,2],[0,2,2,0]],[[1,1,0,1],[1,2,2,2],[2,3,2,2],[0,3,2,0]],[[1,1,0,1],[1,2,2,2],[2,3,2,2],[0,2,3,0]],[[1,1,0,2],[1,2,2,2],[2,3,2,2],[1,0,2,1]],[[1,1,0,1],[1,2,2,3],[2,3,2,2],[1,0,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,2,3],[1,0,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,2,2],[1,0,3,1]],[[1,1,0,1],[1,2,2,2],[2,3,2,2],[1,0,2,2]],[[1,1,0,1],[1,2,2,2],[3,3,2,2],[1,1,2,0]],[[1,1,0,1],[1,2,2,2],[2,4,2,2],[1,1,2,0]],[[1,1,0,1],[1,2,2,2],[2,3,2,2],[2,1,2,0]],[[1,1,0,1],[1,2,2,2],[3,3,3,1],[0,1,2,1]],[[1,1,0,1],[1,2,2,2],[2,4,3,1],[0,1,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,4,1],[0,1,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,1],[0,1,3,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,1],[0,1,2,2]],[[1,1,0,1],[1,2,2,2],[3,3,3,1],[0,2,1,1]],[[1,1,0,1],[1,2,2,2],[2,4,3,1],[0,2,1,1]],[[1,1,0,1],[1,2,2,2],[2,3,4,1],[0,2,1,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,1],[0,3,1,1]],[[1,1,0,1],[1,2,2,2],[3,3,3,1],[1,0,2,1]],[[1,1,0,1],[1,2,2,2],[2,4,3,1],[1,0,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,4,1],[1,0,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,1],[2,0,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,1],[1,0,3,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,1],[1,0,2,2]],[[1,1,0,1],[1,2,2,2],[3,3,3,1],[1,1,1,1]],[[1,1,0,1],[1,2,2,2],[2,4,3,1],[1,1,1,1]],[[1,1,0,1],[1,2,2,2],[2,3,4,1],[1,1,1,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,1],[2,1,1,1]],[[1,1,0,2],[1,2,2,2],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[1,2,2,3],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,4,2],[0,0,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,3],[0,0,2,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[0,0,2,2]],[[1,1,0,2],[1,2,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,2,2,3],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,2,2,2],[3,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,2,2,2],[2,4,3,2],[0,1,1,1]],[[1,1,0,1],[1,2,2,2],[2,3,4,2],[0,1,1,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,3],[0,1,1,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[0,1,1,2]],[[1,1,0,2],[1,2,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,2,2,3],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,2,2,2],[3,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,2,2,2],[2,4,3,2],[0,1,2,0]],[[1,1,0,1],[1,2,2,2],[2,3,4,2],[0,1,2,0]],[[1,1,0,1],[1,2,2,2],[2,3,3,3],[0,1,2,0]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[0,1,3,0]],[[1,1,0,2],[1,2,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,2,2,3],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,2,2,2],[3,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,2,2,2],[2,4,3,2],[0,2,0,1]],[[1,1,0,1],[1,2,2,2],[2,3,4,2],[0,2,0,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,3],[0,2,0,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[0,3,0,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[0,2,0,2]],[[1,1,0,2],[1,2,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,2,2,3],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,2,2,2],[3,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,2,2,2],[2,4,3,2],[0,2,1,0]],[[1,1,0,1],[1,2,2,2],[2,3,4,2],[0,2,1,0]],[[1,1,0,1],[1,2,2,2],[2,3,3,3],[0,2,1,0]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[0,3,1,0]],[[1,1,0,2],[1,2,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,2,2,3],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,2,2,2],[3,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,2,2,2],[2,4,3,2],[1,0,1,1]],[[1,1,0,1],[1,2,2,2],[2,3,4,2],[1,0,1,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,3],[1,0,1,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[2,0,1,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[1,0,1,2]],[[1,1,0,2],[1,2,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,2,2,3],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,2,2,2],[3,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,2,2,2],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[1,2,2,2],[2,3,4,2],[1,0,2,0]],[[1,1,0,1],[1,2,2,2],[2,3,3,3],[1,0,2,0]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[2,0,2,0]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[1,0,3,0]],[[1,1,0,2],[1,2,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,2,2,3],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,2,2,2],[3,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,2,2,2],[2,4,3,2],[1,1,0,1]],[[1,1,0,1],[1,2,2,2],[2,3,4,2],[1,1,0,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,3],[1,1,0,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[2,1,0,1]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[1,1,0,2]],[[1,1,0,2],[1,2,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[1,2,2,3],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[1,2,2,2],[3,3,3,2],[1,1,1,0]],[[1,1,0,1],[1,2,2,2],[2,4,3,2],[1,1,1,0]],[[1,1,0,1],[1,2,2,2],[2,3,4,2],[1,1,1,0]],[[1,1,0,1],[1,2,2,2],[2,3,3,3],[1,1,1,0]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[2,1,1,0]],[[1,1,0,1],[1,2,2,2],[3,3,3,2],[1,2,0,0]],[[1,1,0,1],[1,2,2,2],[2,4,3,2],[1,2,0,0]],[[1,1,0,1],[1,2,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,3,1,0],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[0,3,1,0],[2,4,3,2],[1,1,2,0]],[[1,2,1,1],[0,3,1,0],[3,3,3,2],[1,1,2,0]],[[1,2,1,1],[0,3,1,0],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[0,3,1,0],[2,3,3,2],[0,3,2,0]],[[1,2,1,1],[0,3,1,0],[2,4,3,2],[0,2,2,0]],[[1,2,1,1],[0,3,1,0],[3,3,3,2],[0,2,2,0]],[[1,1,0,1],[1,2,3,0],[0,3,4,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,0],[0,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,0],[0,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,0],[0,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,0],[1,2,4,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,0],[1,2,3,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,0],[1,2,3,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,0],[1,2,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,0],[1,2,3,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,0],[1,4,2,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,0],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,0],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,0],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,0],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,0],[1,4,3,2],[1,1,2,1]],[[1,1,0,1],[1,2,3,0],[1,3,4,2],[1,1,2,1]],[[1,1,0,1],[1,2,3,0],[1,3,3,2],[1,1,3,1]],[[1,1,0,1],[1,2,3,0],[1,3,3,2],[1,1,2,2]],[[1,1,0,1],[1,2,3,0],[1,4,3,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,0],[1,3,4,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,0],[1,3,3,2],[2,2,1,1]],[[1,1,0,1],[1,2,3,0],[1,3,3,2],[1,3,1,1]],[[1,1,0,1],[1,2,3,0],[3,1,3,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,0],[2,1,4,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,0],[2,1,3,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,0],[2,1,3,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,0],[2,1,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,0],[2,1,3,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,0],[3,2,2,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,0],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,0],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,0],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,0],[2,2,2,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,0],[2,2,4,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,0],[2,2,3,2],[0,3,2,1]],[[1,1,0,1],[1,2,3,0],[2,2,3,2],[0,2,3,1]],[[1,1,0,1],[1,2,3,0],[2,2,3,2],[0,2,2,2]],[[1,1,0,1],[1,2,3,0],[3,2,3,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,0],[2,2,3,2],[2,2,1,1]],[[1,1,0,1],[1,2,3,0],[2,2,3,2],[1,3,1,1]],[[1,1,0,1],[1,2,3,0],[3,3,2,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,0],[2,4,2,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,0],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[1,2,3,0],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[1,2,3,0],[2,3,2,2],[0,2,2,2]],[[1,1,0,1],[1,2,3,0],[3,3,2,2],[1,1,2,1]],[[1,1,0,1],[1,2,3,0],[2,4,2,2],[1,1,2,1]],[[1,1,0,1],[1,2,3,0],[2,3,2,2],[2,1,2,1]],[[1,1,0,1],[1,2,3,0],[3,3,3,2],[0,1,2,1]],[[1,1,0,1],[1,2,3,0],[2,4,3,2],[0,1,2,1]],[[1,1,0,1],[1,2,3,0],[2,3,4,2],[0,1,2,1]],[[1,1,0,1],[1,2,3,0],[2,3,3,2],[0,1,3,1]],[[1,1,0,1],[1,2,3,0],[2,3,3,2],[0,1,2,2]],[[1,1,0,1],[1,2,3,0],[3,3,3,2],[0,2,1,1]],[[1,1,0,1],[1,2,3,0],[2,4,3,2],[0,2,1,1]],[[1,1,0,1],[1,2,3,0],[2,3,4,2],[0,2,1,1]],[[1,1,0,1],[1,2,3,0],[2,3,3,2],[0,3,1,1]],[[1,1,0,1],[1,2,3,0],[3,3,3,2],[1,0,2,1]],[[1,1,0,1],[1,2,3,0],[2,4,3,2],[1,0,2,1]],[[1,1,0,1],[1,2,3,0],[2,3,4,2],[1,0,2,1]],[[1,1,0,1],[1,2,3,0],[2,3,3,2],[2,0,2,1]],[[1,1,0,1],[1,2,3,0],[2,3,3,2],[1,0,3,1]],[[1,1,0,1],[1,2,3,0],[2,3,3,2],[1,0,2,2]],[[1,1,0,1],[1,2,3,0],[3,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,2,3,0],[2,4,3,2],[1,1,1,1]],[[1,1,0,1],[1,2,3,0],[2,3,4,2],[1,1,1,1]],[[1,1,0,1],[1,2,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,1,1],[0,3,1,0],[2,3,3,1],[2,1,2,1]],[[1,2,1,1],[0,3,1,0],[2,4,3,1],[1,1,2,1]],[[1,2,1,1],[0,3,1,0],[3,3,3,1],[1,1,2,1]],[[1,1,0,1],[1,2,3,1],[0,3,2,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[0,3,2,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[0,3,2,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[0,3,2,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,1],[0,3,4,1],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[0,3,3,1],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[0,3,3,1],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[0,3,3,1],[1,2,2,2]],[[1,1,0,1],[1,2,3,1],[0,3,4,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[0,3,3,3],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[0,3,3,2],[1,2,1,2]],[[1,1,0,1],[1,2,3,1],[0,3,4,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,1],[0,3,3,3],[1,2,2,0]],[[1,1,0,1],[1,2,3,1],[0,3,3,2],[1,3,2,0]],[[1,1,0,1],[1,2,3,1],[0,3,3,2],[1,2,3,0]],[[1,1,0,1],[1,2,3,1],[1,1,3,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,1,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[1,1,3,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,1],[1,2,2,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,2,2,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,2,2,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[1,2,2,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[1,2,2,2],[1,2,2,2]],[[1,1,0,1],[1,2,4,1],[1,2,3,1],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,2,4,1],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,2,3,1],[2,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,2,3,1],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[1,2,3,1],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[1,2,3,1],[1,2,2,2]],[[1,1,0,1],[1,2,4,1],[1,2,3,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[1,2,4,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[1,2,3,3],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[1,2,3,2],[1,2,1,2]],[[1,1,0,1],[1,2,4,1],[1,2,3,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,1],[1,2,4,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,1],[1,2,3,3],[1,2,2,0]],[[1,1,0,1],[1,2,3,1],[1,2,3,2],[2,2,2,0]],[[1,1,0,1],[1,2,3,1],[1,2,3,2],[1,3,2,0]],[[1,1,0,1],[1,2,3,1],[1,2,3,2],[1,2,3,0]],[[1,1,0,1],[1,2,3,1],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,1,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,1,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,1,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[1,3,1,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,1],[1,4,2,1],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,2,1],[2,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,2,1],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,2,1],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[1,3,2,1],[1,2,2,2]],[[1,1,0,1],[1,2,3,1],[1,3,2,3],[1,1,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,2,2],[1,1,3,1]],[[1,1,0,1],[1,2,3,1],[1,3,2,2],[1,1,2,2]],[[1,1,0,1],[1,2,3,1],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,1],[1,3,2,2],[2,2,2,0]],[[1,1,0,1],[1,2,3,1],[1,3,2,2],[1,3,2,0]],[[1,1,0,1],[1,2,3,1],[1,3,2,2],[1,2,3,0]],[[1,1,0,1],[1,2,3,1],[1,4,3,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,0],[2,2,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,0],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,0],[1,2,3,1]],[[1,1,0,1],[1,2,4,1],[1,3,3,1],[1,1,2,1]],[[1,1,0,1],[1,2,3,1],[1,4,3,1],[1,1,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,4,1],[1,1,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,1],[1,1,3,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,1],[1,1,2,2]],[[1,1,0,1],[1,2,4,1],[1,3,3,1],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[1,3,4,1],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,1],[2,2,1,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,1],[1,3,1,1]],[[1,1,0,1],[1,2,3,1],[1,3,4,2],[1,0,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,3],[1,0,2,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,2],[1,0,2,2]],[[1,1,0,1],[1,2,4,1],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,2,3,1],[1,4,3,2],[1,1,1,1]],[[1,1,0,1],[1,2,3,1],[1,3,4,2],[1,1,1,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,3],[1,1,1,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,2],[1,1,1,2]],[[1,1,0,1],[1,2,4,1],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[1,2,3,1],[1,4,3,2],[1,1,2,0]],[[1,1,0,1],[1,2,3,1],[1,3,4,2],[1,1,2,0]],[[1,1,0,1],[1,2,3,1],[1,3,3,3],[1,1,2,0]],[[1,1,0,1],[1,2,3,1],[1,3,3,2],[1,1,3,0]],[[1,1,0,1],[1,2,4,1],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[1,2,3,1],[1,4,3,2],[1,2,0,1]],[[1,1,0,1],[1,2,3,1],[1,3,4,2],[1,2,0,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,3],[1,2,0,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,2],[2,2,0,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,2],[1,3,0,1]],[[1,1,0,1],[1,2,3,1],[1,3,3,2],[1,2,0,2]],[[1,1,0,1],[1,2,4,1],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[1,2,3,1],[1,4,3,2],[1,2,1,0]],[[1,1,0,1],[1,2,3,1],[1,3,4,2],[1,2,1,0]],[[1,1,0,1],[1,2,3,1],[1,3,3,3],[1,2,1,0]],[[1,1,0,1],[1,2,3,1],[1,3,3,2],[2,2,1,0]],[[1,1,0,1],[1,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,1,0],[2,3,3,1],[0,2,2,2]],[[1,2,1,1],[0,3,1,0],[2,3,3,1],[0,2,3,1]],[[1,2,1,1],[0,3,1,0],[2,3,3,1],[0,3,2,1]],[[1,2,1,1],[0,3,1,0],[2,4,3,1],[0,2,2,1]],[[1,2,1,1],[0,3,1,0],[3,3,3,1],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,0,3,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,0,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[2,0,3,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,1],[3,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,1,2,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,1,2,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,1,2,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[2,1,2,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[2,1,2,2],[1,2,2,2]],[[1,1,0,1],[1,2,4,1],[2,1,3,1],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[3,1,3,1],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,1,4,1],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,1,3,1],[2,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,1,3,1],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[2,1,3,1],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[2,1,3,1],[1,2,2,2]],[[1,1,0,1],[1,2,3,1],[2,1,3,3],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,1,3,2],[0,2,3,1]],[[1,1,0,1],[1,2,3,1],[2,1,3,2],[0,2,2,2]],[[1,1,0,1],[1,2,4,1],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[2,1,4,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[2,1,3,3],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[2,1,3,2],[1,2,1,2]],[[1,1,0,1],[1,2,4,1],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,1],[3,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,1],[2,1,4,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,1],[2,1,3,3],[1,2,2,0]],[[1,1,0,1],[1,2,3,1],[2,1,3,2],[2,2,2,0]],[[1,1,0,1],[1,2,3,1],[2,1,3,2],[1,3,2,0]],[[1,1,0,1],[1,2,3,1],[2,1,3,2],[1,2,3,0]],[[1,1,0,1],[1,2,3,1],[3,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,1,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,1,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,1,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,1,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[2,2,1,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,1],[3,2,2,1],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,2,1],[2,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,2,1],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,2,1],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[2,2,2,1],[1,2,2,2]],[[1,1,0,1],[1,2,3,1],[2,2,2,3],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,2,2],[0,3,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,2,2],[0,2,3,1]],[[1,1,0,1],[1,2,3,1],[2,2,2,2],[0,2,2,2]],[[1,1,0,1],[1,2,3,1],[3,2,2,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,1],[2,2,2,2],[2,2,2,0]],[[1,1,0,1],[1,2,3,1],[2,2,2,2],[1,3,2,0]],[[1,1,0,1],[1,2,3,1],[2,2,2,2],[1,2,3,0]],[[1,1,0,1],[1,2,3,1],[3,2,3,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,0],[2,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,0],[1,3,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,0],[1,2,3,1]],[[1,1,0,1],[1,2,4,1],[2,2,3,1],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,4,1],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,1],[0,3,2,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,1],[0,2,3,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,1],[0,2,2,2]],[[1,1,0,1],[1,2,3,1],[3,2,3,1],[1,2,1,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,1],[2,2,1,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,1],[1,3,1,1]],[[1,1,0,1],[1,2,4,1],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[1,2,3,1],[2,2,4,2],[0,2,1,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,3],[0,2,1,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,2],[0,2,1,2]],[[1,1,0,1],[1,2,4,1],[2,2,3,2],[0,2,2,0]],[[1,1,0,1],[1,2,3,1],[2,2,4,2],[0,2,2,0]],[[1,1,0,1],[1,2,3,1],[2,2,3,3],[0,2,2,0]],[[1,1,0,1],[1,2,3,1],[2,2,3,2],[0,3,2,0]],[[1,1,0,1],[1,2,3,1],[2,2,3,2],[0,2,3,0]],[[1,1,0,1],[1,2,3,1],[3,2,3,2],[1,2,0,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,2],[2,2,0,1]],[[1,1,0,1],[1,2,3,1],[2,2,3,2],[1,3,0,1]],[[1,1,0,1],[1,2,3,1],[3,2,3,2],[1,2,1,0]],[[1,1,0,1],[1,2,3,1],[2,2,3,2],[2,2,1,0]],[[1,1,0,1],[1,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,1,0],[2,2,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,1,0],[2,2,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,1,0],[2,2,3,2],[2,2,2,0]],[[1,2,1,1],[0,3,1,0],[3,2,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,1,0],[2,2,3,1],[1,2,2,2]],[[1,2,1,1],[0,3,1,0],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[1,2,3,1],[3,3,1,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,4,1,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,1,3],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,1,2],[0,3,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,1,2],[0,2,3,1]],[[1,1,0,1],[1,2,3,1],[2,3,1,2],[0,2,2,2]],[[1,1,0,1],[1,2,3,1],[3,3,1,2],[1,1,2,1]],[[1,1,0,1],[1,2,3,1],[2,4,1,2],[1,1,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,1,2],[2,1,2,1]],[[1,1,0,1],[1,2,3,1],[3,3,2,1],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,4,2,1],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,2,1],[0,3,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,2,1],[0,2,3,1]],[[1,1,0,1],[1,2,3,1],[2,3,2,1],[0,2,2,2]],[[1,1,0,1],[1,2,3,1],[3,3,2,1],[1,1,2,1]],[[1,1,0,1],[1,2,3,1],[2,4,2,1],[1,1,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,2,1],[2,1,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,2,3],[0,1,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,2,2],[0,1,3,1]],[[1,1,0,1],[1,2,3,1],[2,3,2,2],[0,1,2,2]],[[1,1,0,1],[1,2,3,1],[3,3,2,2],[0,2,2,0]],[[1,1,0,1],[1,2,3,1],[2,4,2,2],[0,2,2,0]],[[1,1,0,1],[1,2,3,1],[2,3,2,2],[0,3,2,0]],[[1,1,0,1],[1,2,3,1],[2,3,2,2],[0,2,3,0]],[[1,1,0,1],[1,2,3,1],[2,3,2,3],[1,0,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,2,2],[1,0,3,1]],[[1,1,0,1],[1,2,3,1],[2,3,2,2],[1,0,2,2]],[[1,1,0,1],[1,2,3,1],[3,3,2,2],[1,1,2,0]],[[1,1,0,1],[1,2,3,1],[2,4,2,2],[1,1,2,0]],[[1,1,0,1],[1,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,3,1,0],[2,2,3,1],[1,3,2,1]],[[1,2,1,1],[0,3,1,0],[2,2,3,1],[2,2,2,1]],[[1,2,1,1],[0,3,1,0],[3,2,3,1],[1,2,2,1]],[[1,1,0,1],[1,2,3,1],[3,3,3,0],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,4,3,0],[0,2,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,0],[0,3,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,0],[0,2,3,1]],[[1,1,0,1],[1,2,3,1],[3,3,3,0],[1,1,2,1]],[[1,1,0,1],[1,2,3,1],[2,4,3,0],[1,1,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,0],[2,1,2,1]],[[1,1,0,1],[1,2,4,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[1,2,3,1],[3,3,3,1],[0,1,2,1]],[[1,1,0,1],[1,2,3,1],[2,4,3,1],[0,1,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,4,1],[0,1,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,1],[0,1,3,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,1],[0,1,2,2]],[[1,1,0,1],[1,2,4,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[1,2,3,1],[3,3,3,1],[0,2,1,1]],[[1,1,0,1],[1,2,3,1],[2,4,3,1],[0,2,1,1]],[[1,1,0,1],[1,2,3,1],[2,3,4,1],[0,2,1,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,1],[0,3,1,1]],[[1,1,0,1],[1,2,4,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[1,2,3,1],[3,3,3,1],[1,0,2,1]],[[1,1,0,1],[1,2,3,1],[2,4,3,1],[1,0,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,4,1],[1,0,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,1],[2,0,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,1],[1,0,3,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,1],[1,0,2,2]],[[1,1,0,1],[1,2,4,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[1,2,3,1],[3,3,3,1],[1,1,1,1]],[[1,1,0,1],[1,2,3,1],[2,4,3,1],[1,1,1,1]],[[1,1,0,1],[1,2,3,1],[2,3,4,1],[1,1,1,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,1],[2,1,1,1]],[[1,1,0,1],[1,2,3,1],[3,3,3,1],[1,2,0,1]],[[1,1,0,1],[1,2,3,1],[2,4,3,1],[1,2,0,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,3,1,0],[1,3,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,1,0],[1,3,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,1,0],[1,3,3,2],[2,2,2,0]],[[1,2,1,1],[0,3,1,0],[1,4,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,1,0],[1,3,3,1],[1,2,2,2]],[[1,2,1,1],[0,3,1,0],[1,3,3,1],[1,2,3,1]],[[1,2,1,1],[0,3,1,0],[1,3,3,1],[1,3,2,1]],[[1,1,0,1],[1,2,4,1],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,4,2],[0,0,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,3],[0,0,2,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[0,0,2,2]],[[1,1,0,1],[1,2,4,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,2,3,1],[3,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,2,3,1],[2,4,3,2],[0,1,1,1]],[[1,1,0,1],[1,2,3,1],[2,3,4,2],[0,1,1,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,3],[0,1,1,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[0,1,1,2]],[[1,1,0,1],[1,2,4,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,2,3,1],[3,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,2,3,1],[2,4,3,2],[0,1,2,0]],[[1,1,0,1],[1,2,3,1],[2,3,4,2],[0,1,2,0]],[[1,1,0,1],[1,2,3,1],[2,3,3,3],[0,1,2,0]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[0,1,3,0]],[[1,1,0,1],[1,2,4,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,2,3,1],[3,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,2,3,1],[2,4,3,2],[0,2,0,1]],[[1,1,0,1],[1,2,3,1],[2,3,4,2],[0,2,0,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,3],[0,2,0,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[0,3,0,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[0,2,0,2]],[[1,1,0,1],[1,2,4,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,2,3,1],[3,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,2,3,1],[2,4,3,2],[0,2,1,0]],[[1,1,0,1],[1,2,3,1],[2,3,4,2],[0,2,1,0]],[[1,1,0,1],[1,2,3,1],[2,3,3,3],[0,2,1,0]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,3,1,0],[1,3,3,1],[2,2,2,1]],[[1,2,1,1],[0,3,1,0],[1,4,3,1],[1,2,2,1]],[[1,1,0,1],[1,2,4,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,2,3,1],[3,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,2,3,1],[2,4,3,2],[1,0,1,1]],[[1,1,0,1],[1,2,3,1],[2,3,4,2],[1,0,1,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,3],[1,0,1,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[2,0,1,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[1,0,1,2]],[[1,1,0,1],[1,2,4,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,2,3,1],[3,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,2,3,1],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[1,2,3,1],[2,3,4,2],[1,0,2,0]],[[1,1,0,1],[1,2,3,1],[2,3,3,3],[1,0,2,0]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[2,0,2,0]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[1,0,3,0]],[[1,1,0,1],[1,2,4,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,2,3,1],[3,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,2,3,1],[2,4,3,2],[1,1,0,1]],[[1,1,0,1],[1,2,3,1],[2,3,4,2],[1,1,0,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,3],[1,1,0,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[2,1,0,1]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[1,1,0,2]],[[1,1,0,1],[1,2,4,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[1,2,3,1],[3,3,3,2],[1,1,1,0]],[[1,1,0,1],[1,2,3,1],[2,4,3,2],[1,1,1,0]],[[1,1,0,1],[1,2,3,1],[2,3,4,2],[1,1,1,0]],[[1,1,0,1],[1,2,3,1],[2,3,3,3],[1,1,1,0]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[2,1,1,0]],[[1,1,0,1],[1,2,3,1],[3,3,3,2],[1,2,0,0]],[[1,1,0,1],[1,2,3,1],[2,4,3,2],[1,2,0,0]],[[1,1,0,1],[1,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,3,0,2],[2,4,3,2],[1,2,0,0]],[[1,2,1,1],[0,3,0,2],[3,3,3,2],[1,2,0,0]],[[1,2,1,1],[0,4,0,2],[2,3,3,2],[1,2,0,0]],[[1,3,1,1],[0,3,0,2],[2,3,3,2],[1,2,0,0]],[[2,2,1,1],[0,3,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[1,2,3,3],[0,1,3,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[0,1,3,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[0,1,3,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[0,1,3,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,3],[0,2,2,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[0,2,2,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[0,2,2,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,2],[0,2,2,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[0,2,2,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,2],[0,2,4,1],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[0,2,3,1],[1,3,2,1]],[[1,1,0,1],[1,2,3,2],[0,2,3,1],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[0,2,3,1],[1,2,2,2]],[[1,1,0,1],[1,2,3,3],[0,2,3,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[0,2,4,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[0,2,3,3],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[0,2,3,2],[1,2,1,2]],[[1,1,0,1],[1,2,3,3],[0,2,3,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[0,2,4,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[0,2,3,3],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[0,2,3,2],[1,3,2,0]],[[1,1,0,1],[1,2,3,2],[0,2,3,2],[1,2,3,0]],[[1,1,0,1],[1,2,3,3],[0,3,2,2],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[0,3,2,3],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[0,3,2,2],[1,1,3,1]],[[1,1,0,1],[1,2,3,2],[0,3,2,2],[1,1,2,2]],[[1,1,0,1],[1,2,3,2],[0,3,4,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[0,3,3,0],[1,3,2,1]],[[1,1,0,1],[1,2,3,2],[0,3,3,0],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[0,3,3,0],[1,2,2,2]],[[1,1,0,1],[1,2,3,2],[0,3,4,1],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[0,3,3,1],[1,1,3,1]],[[1,1,0,1],[1,2,3,2],[0,3,3,1],[1,1,2,2]],[[1,1,0,1],[1,2,3,2],[0,3,4,1],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[0,3,3,1],[1,3,2,0]],[[1,1,0,1],[1,2,3,2],[0,3,3,1],[1,2,3,0]],[[1,1,0,1],[1,2,3,3],[0,3,3,2],[1,0,2,1]],[[1,1,0,1],[1,2,3,2],[0,3,4,2],[1,0,2,1]],[[1,1,0,1],[1,2,3,2],[0,3,3,3],[1,0,2,1]],[[1,1,0,1],[1,2,3,2],[0,3,3,2],[1,0,2,2]],[[1,1,0,1],[1,2,3,3],[0,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,2,3,2],[0,3,4,2],[1,1,1,1]],[[1,1,0,1],[1,2,3,2],[0,3,3,3],[1,1,1,1]],[[1,1,0,1],[1,2,3,2],[0,3,3,2],[1,1,1,2]],[[1,1,0,1],[1,2,3,3],[0,3,3,2],[1,1,2,0]],[[1,1,0,1],[1,2,3,2],[0,3,4,2],[1,1,2,0]],[[1,1,0,1],[1,2,3,2],[0,3,3,3],[1,1,2,0]],[[1,1,0,1],[1,2,3,2],[0,3,3,2],[1,1,3,0]],[[1,1,0,1],[1,2,3,3],[0,3,3,2],[1,2,0,1]],[[1,1,0,1],[1,2,3,2],[0,3,4,2],[1,2,0,1]],[[1,1,0,1],[1,2,3,2],[0,3,3,3],[1,2,0,1]],[[1,1,0,1],[1,2,3,2],[0,3,3,2],[1,2,0,2]],[[1,1,0,1],[1,2,3,3],[0,3,3,2],[1,2,1,0]],[[1,1,0,1],[1,2,3,2],[0,3,4,2],[1,2,1,0]],[[1,1,0,1],[1,2,3,2],[0,3,3,3],[1,2,1,0]],[[1,1,0,1],[1,2,3,3],[1,1,3,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,1,3,3],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,1,3,2],[0,2,3,1]],[[1,1,0,1],[1,2,3,2],[1,1,3,2],[0,2,2,2]],[[1,1,0,2],[1,2,3,2],[1,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,4,2],[1,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,3],[1,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,2,1,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,2,1,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,2,1,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,2],[1,2,1,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[1,2,1,2],[1,2,2,2]],[[1,1,0,1],[1,2,3,3],[1,2,2,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,2,2,3],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,2,2,2],[0,2,3,1]],[[1,1,0,1],[1,2,3,2],[1,2,2,2],[0,2,2,2]],[[1,1,0,2],[1,2,3,2],[1,2,2,2],[1,2,1,1]],[[1,1,0,1],[1,2,4,2],[1,2,2,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,3],[1,2,2,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[1,2,2,3],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[1,2,2,2],[1,2,1,2]],[[1,1,0,2],[1,2,3,2],[1,2,2,2],[1,2,2,0]],[[1,1,0,1],[1,2,4,2],[1,2,2,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,3],[1,2,2,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[1,2,2,3],[1,2,2,0]],[[1,1,0,2],[1,2,3,2],[1,2,3,0],[1,2,2,1]],[[1,1,0,1],[1,2,4,2],[1,2,3,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,3],[1,2,3,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,2,4,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,2,3,0],[2,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,2,3,0],[1,3,2,1]],[[1,1,0,1],[1,2,3,2],[1,2,3,0],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[1,2,3,0],[1,2,2,2]],[[1,1,0,1],[1,2,3,2],[1,2,4,1],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,2,3,1],[0,2,3,1]],[[1,1,0,1],[1,2,3,2],[1,2,3,1],[0,2,2,2]],[[1,1,0,2],[1,2,3,2],[1,2,3,1],[1,2,1,1]],[[1,1,0,1],[1,2,4,2],[1,2,3,1],[1,2,1,1]],[[1,1,0,1],[1,2,3,3],[1,2,3,1],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[1,2,4,1],[1,2,1,1]],[[1,1,0,2],[1,2,3,2],[1,2,3,1],[1,2,2,0]],[[1,1,0,1],[1,2,4,2],[1,2,3,1],[1,2,2,0]],[[1,1,0,1],[1,2,3,3],[1,2,3,1],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[1,2,4,1],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[1,2,3,1],[2,2,2,0]],[[1,1,0,1],[1,2,3,2],[1,2,3,1],[1,3,2,0]],[[1,1,0,1],[1,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,1,0,1],[1,2,3,3],[1,2,3,2],[0,2,1,1]],[[1,1,0,1],[1,2,3,2],[1,2,4,2],[0,2,1,1]],[[1,1,0,1],[1,2,3,2],[1,2,3,3],[0,2,1,1]],[[1,1,0,1],[1,2,3,2],[1,2,3,2],[0,2,1,2]],[[1,1,0,1],[1,2,3,3],[1,2,3,2],[0,2,2,0]],[[1,1,0,1],[1,2,3,2],[1,2,4,2],[0,2,2,0]],[[1,1,0,1],[1,2,3,2],[1,2,3,3],[0,2,2,0]],[[1,1,0,1],[1,2,3,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,3,0,2],[2,3,4,2],[1,1,1,0]],[[1,1,0,2],[1,2,3,2],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[1,2,4,2],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,3],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,4,0,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,0,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,0,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,0,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,0,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[1,3,0,2],[1,2,2,2]],[[1,1,0,2],[1,2,3,2],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[1,2,4,2],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[1,2,3,3],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,1,3],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,1,2],[1,1,3,1]],[[1,1,0,1],[1,2,3,2],[1,3,1,2],[1,1,2,2]],[[1,1,0,1],[1,2,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,2,0],[2,2,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,2,0],[1,3,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,2,0],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[1,3,2,0],[1,2,2,2]],[[1,1,0,1],[1,2,3,2],[1,4,2,1],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[1,3,2,1],[2,2,2,0]],[[1,1,0,1],[1,2,3,2],[1,3,2,1],[1,3,2,0]],[[1,1,0,1],[1,2,3,2],[1,3,2,1],[1,2,3,0]],[[1,1,0,1],[1,2,3,3],[1,3,2,2],[0,1,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,2,3],[0,1,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,2,2],[0,1,3,1]],[[1,1,0,1],[1,2,3,2],[1,3,2,2],[0,1,2,2]],[[1,1,0,2],[1,2,3,2],[1,3,2,2],[1,1,1,1]],[[1,1,0,1],[1,2,4,2],[1,3,2,2],[1,1,1,1]],[[1,1,0,1],[1,2,3,3],[1,3,2,2],[1,1,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,2,3],[1,1,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,2,2],[1,1,1,2]],[[1,1,0,2],[1,2,3,2],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[1,2,4,2],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[1,2,3,3],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[1,2,3,2],[1,3,2,3],[1,1,2,0]],[[1,1,0,2],[1,2,3,2],[1,3,2,2],[1,2,0,1]],[[1,1,0,1],[1,2,4,2],[1,3,2,2],[1,2,0,1]],[[1,1,0,1],[1,2,3,3],[1,3,2,2],[1,2,0,1]],[[1,1,0,1],[1,2,3,2],[1,3,2,3],[1,2,0,1]],[[1,1,0,1],[1,2,3,2],[1,3,2,2],[1,2,0,2]],[[1,1,0,2],[1,2,3,2],[1,3,2,2],[1,2,1,0]],[[1,1,0,1],[1,2,4,2],[1,3,2,2],[1,2,1,0]],[[1,1,0,1],[1,2,3,3],[1,3,2,2],[1,2,1,0]],[[1,1,0,1],[1,2,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,1,1],[0,3,0,2],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[0,3,0,2],[3,3,3,2],[1,1,1,0]],[[1,2,1,1],[0,3,0,3],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[0,4,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,2],[0,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,3,1,1],[0,3,0,2],[2,3,3,2],[1,1,1,0]],[[2,2,1,1],[0,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[2,1,0,1]],[[1,1,0,2],[1,2,3,2],[1,3,3,0],[1,1,2,1]],[[1,1,0,1],[1,2,4,2],[1,3,3,0],[1,1,2,1]],[[1,1,0,1],[1,2,3,3],[1,3,3,0],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[1,4,3,0],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,4,0],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,0],[1,1,3,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,0],[1,1,2,2]],[[1,1,0,2],[1,2,3,2],[1,3,3,0],[1,2,1,1]],[[1,1,0,1],[1,2,4,2],[1,3,3,0],[1,2,1,1]],[[1,1,0,1],[1,2,3,3],[1,3,3,0],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[1,4,3,0],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,4,0],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,0],[2,2,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,0],[1,3,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,4,1],[0,1,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,1],[0,1,3,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,1],[0,1,2,2]],[[1,1,0,2],[1,2,3,2],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[1,2,4,2],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[1,2,3,3],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[1,2,3,2],[1,4,3,1],[1,1,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,4,1],[1,1,1,1]],[[1,1,0,2],[1,2,3,2],[1,3,3,1],[1,1,2,0]],[[1,1,0,1],[1,2,4,2],[1,3,3,1],[1,1,2,0]],[[1,1,0,1],[1,2,3,3],[1,3,3,1],[1,1,2,0]],[[1,1,0,1],[1,2,3,2],[1,4,3,1],[1,1,2,0]],[[1,1,0,1],[1,2,3,2],[1,3,4,1],[1,1,2,0]],[[1,1,0,1],[1,2,3,2],[1,3,3,1],[1,1,3,0]],[[1,1,0,2],[1,2,3,2],[1,3,3,1],[1,2,0,1]],[[1,1,0,1],[1,2,4,2],[1,3,3,1],[1,2,0,1]],[[1,1,0,1],[1,2,3,3],[1,3,3,1],[1,2,0,1]],[[1,1,0,1],[1,2,3,2],[1,4,3,1],[1,2,0,1]],[[1,1,0,1],[1,2,3,2],[1,3,4,1],[1,2,0,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,1],[2,2,0,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,1],[1,3,0,1]],[[1,1,0,2],[1,2,3,2],[1,3,3,1],[1,2,1,0]],[[1,1,0,1],[1,2,4,2],[1,3,3,1],[1,2,1,0]],[[1,1,0,1],[1,2,3,3],[1,3,3,1],[1,2,1,0]],[[1,1,0,1],[1,2,3,2],[1,4,3,1],[1,2,1,0]],[[1,1,0,1],[1,2,3,2],[1,3,4,1],[1,2,1,0]],[[1,1,0,1],[1,2,3,2],[1,3,3,1],[2,2,1,0]],[[1,1,0,1],[1,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,3],[1,1,0,1]],[[1,2,1,1],[0,3,0,2],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[0,3,0,2],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[0,3,0,2],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[0,3,0,3],[2,3,3,2],[1,1,0,1]],[[1,2,1,1],[0,4,0,2],[2,3,3,2],[1,1,0,1]],[[1,2,1,2],[0,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,3,1,1],[0,3,0,2],[2,3,3,2],[1,1,0,1]],[[2,2,1,1],[0,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,2,3,3],[1,3,3,2],[0,0,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,4,2],[0,0,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,3],[0,0,2,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,2],[0,0,2,2]],[[1,1,0,1],[1,2,3,3],[1,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,4,2],[0,1,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,3],[0,1,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,2],[0,1,1,2]],[[1,1,0,1],[1,2,3,3],[1,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,2,3,2],[1,3,4,2],[0,1,2,0]],[[1,1,0,1],[1,2,3,2],[1,3,3,3],[0,1,2,0]],[[1,1,0,1],[1,2,3,2],[1,3,3,2],[0,1,3,0]],[[1,1,0,1],[1,2,3,3],[1,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,2,3,2],[1,3,4,2],[0,2,0,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,3],[0,2,0,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,2],[0,2,0,2]],[[1,1,0,1],[1,2,3,3],[1,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,2,3,2],[1,3,4,2],[0,2,1,0]],[[1,1,0,1],[1,2,3,2],[1,3,3,3],[0,2,1,0]],[[1,1,0,1],[1,2,3,3],[1,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,4,2],[1,0,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,3],[1,0,1,1]],[[1,1,0,1],[1,2,3,2],[1,3,3,2],[1,0,1,2]],[[1,1,0,1],[1,2,3,3],[1,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,2,3,2],[1,3,4,2],[1,0,2,0]],[[1,1,0,1],[1,2,3,2],[1,3,3,3],[1,0,2,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[2,0,2,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[0,3,0,2],[2,3,4,2],[1,0,2,0]],[[1,2,1,1],[0,3,0,2],[2,4,3,2],[1,0,2,0]],[[1,2,1,1],[0,3,0,2],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,3,0,3],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,4,0,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,2],[0,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,3,1,1],[0,3,0,2],[2,3,3,2],[1,0,2,0]],[[2,2,1,1],[0,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[1,0,1,2]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[0,3,0,2],[2,3,3,3],[1,0,1,1]],[[1,2,1,1],[0,3,0,2],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[0,3,0,2],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[0,3,0,2],[3,3,3,2],[1,0,1,1]],[[1,2,1,1],[0,3,0,3],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[0,4,0,2],[2,3,3,2],[1,0,1,1]],[[1,2,1,2],[0,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,3,1,1],[0,3,0,2],[2,3,3,2],[1,0,1,1]],[[2,2,1,1],[0,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,2],[1,2,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,4,2],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,3],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[3,1,1,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,1,1,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,1,1,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,1,1,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,2],[2,1,1,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[2,1,1,2],[1,2,2,2]],[[1,1,0,2],[1,2,3,2],[2,1,2,2],[1,2,1,1]],[[1,1,0,1],[1,2,4,2],[2,1,2,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,3],[2,1,2,2],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[2,1,2,3],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[2,1,2,2],[1,2,1,2]],[[1,1,0,2],[1,2,3,2],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[1,2,4,2],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,3],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[2,1,2,3],[1,2,2,0]],[[1,1,0,2],[1,2,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[1,2,4,2],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,3],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[3,1,3,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,1,4,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,1,3,0],[2,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,1,3,0],[1,3,2,1]],[[1,1,0,1],[1,2,3,2],[2,1,3,0],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[2,1,3,0],[1,2,2,2]],[[1,1,0,2],[1,2,3,2],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[1,2,4,2],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[1,2,3,3],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[2,1,4,1],[1,2,1,1]],[[1,1,0,2],[1,2,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,0,1],[1,2,4,2],[2,1,3,1],[1,2,2,0]],[[1,1,0,1],[1,2,3,3],[2,1,3,1],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[3,1,3,1],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[2,1,4,1],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[2,1,3,1],[2,2,2,0]],[[1,1,0,1],[1,2,3,2],[2,1,3,1],[1,3,2,0]],[[1,1,0,1],[1,2,3,2],[2,1,3,1],[1,2,3,0]],[[1,1,0,2],[1,2,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,2,4,2],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,3],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[3,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,0,3],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,0,2],[2,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,0,2],[1,3,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,0,2],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[2,2,0,2],[1,2,2,2]],[[1,1,0,2],[1,2,3,2],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[1,2,4,2],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,3],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,1,3],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,1,2],[0,3,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,1,2],[0,2,3,1]],[[1,1,0,1],[1,2,3,2],[2,2,1,2],[0,2,2,2]],[[1,1,0,1],[1,2,3,2],[3,2,2,0],[1,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,2,0],[2,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,2,0],[1,3,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,2,0],[1,2,3,1]],[[1,1,0,1],[1,2,3,2],[2,2,2,0],[1,2,2,2]],[[1,1,0,1],[1,2,3,2],[3,2,2,1],[1,2,2,0]],[[1,1,0,1],[1,2,3,2],[2,2,2,1],[2,2,2,0]],[[1,1,0,1],[1,2,3,2],[2,2,2,1],[1,3,2,0]],[[1,1,0,1],[1,2,3,2],[2,2,2,1],[1,2,3,0]],[[1,1,0,2],[1,2,3,2],[2,2,2,2],[0,2,1,1]],[[1,1,0,1],[1,2,4,2],[2,2,2,2],[0,2,1,1]],[[1,1,0,1],[1,2,3,3],[2,2,2,2],[0,2,1,1]],[[1,1,0,1],[1,2,3,2],[2,2,2,3],[0,2,1,1]],[[1,1,0,1],[1,2,3,2],[2,2,2,2],[0,2,1,2]],[[1,1,0,2],[1,2,3,2],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[1,2,4,2],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[1,2,3,3],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[1,2,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[0,3,0,2],[2,3,4,2],[0,2,1,0]],[[1,2,1,1],[0,3,0,2],[2,4,3,2],[0,2,1,0]],[[1,1,0,2],[1,2,3,2],[2,2,3,0],[0,2,2,1]],[[1,1,0,1],[1,2,4,2],[2,2,3,0],[0,2,2,1]],[[1,1,0,1],[1,2,3,3],[2,2,3,0],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,4,0],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,3,0],[0,3,2,1]],[[1,1,0,1],[1,2,3,2],[2,2,3,0],[0,2,3,1]],[[1,1,0,1],[1,2,3,2],[2,2,3,0],[0,2,2,2]],[[1,1,0,1],[1,2,3,2],[3,2,3,0],[1,2,1,1]],[[1,1,0,1],[1,2,3,2],[2,2,3,0],[2,2,1,1]],[[1,1,0,1],[1,2,3,2],[2,2,3,0],[1,3,1,1]],[[1,1,0,2],[1,2,3,2],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[1,2,4,2],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[1,2,3,3],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[1,2,3,2],[2,2,4,1],[0,2,1,1]],[[1,1,0,2],[1,2,3,2],[2,2,3,1],[0,2,2,0]],[[1,1,0,1],[1,2,4,2],[2,2,3,1],[0,2,2,0]],[[1,1,0,1],[1,2,3,3],[2,2,3,1],[0,2,2,0]],[[1,1,0,1],[1,2,3,2],[2,2,4,1],[0,2,2,0]],[[1,1,0,1],[1,2,3,2],[2,2,3,1],[0,3,2,0]],[[1,1,0,1],[1,2,3,2],[2,2,3,1],[0,2,3,0]],[[1,1,0,1],[1,2,3,2],[3,2,3,1],[1,2,0,1]],[[1,1,0,1],[1,2,3,2],[2,2,3,1],[2,2,0,1]],[[1,1,0,1],[1,2,3,2],[2,2,3,1],[1,3,0,1]],[[1,1,0,1],[1,2,3,2],[3,2,3,1],[1,2,1,0]],[[1,1,0,1],[1,2,3,2],[2,2,3,1],[2,2,1,0]],[[1,1,0,1],[1,2,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[0,3,0,2],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,3,0,3],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,4,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,1,2],[0,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,3,1,1],[0,3,0,2],[2,3,3,2],[0,2,1,0]],[[2,2,1,1],[0,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[0,3,0,2],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[0,3,0,2],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[0,3,0,2],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[0,3,0,2],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[0,3,0,3],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[0,4,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,1,2],[0,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,3,1,1],[0,3,0,2],[2,3,3,2],[0,2,0,1]],[[2,2,1,1],[0,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[0,3,0,2],[2,3,4,2],[0,1,2,0]],[[1,2,1,1],[0,3,0,2],[2,4,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,0,2],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,0,3],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,4,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,2],[0,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,3,1,1],[0,3,0,2],[2,3,3,2],[0,1,2,0]],[[2,2,1,1],[0,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[0,1,1,2]],[[1,2,1,1],[0,3,0,2],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[0,3,0,2],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[0,3,0,2],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,0,2],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,0,3],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,4,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,2],[1,2,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[1,2,4,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,3],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[3,3,0,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,4,0,2],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,0,3],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,0,2],[0,3,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,0,2],[0,2,3,1]],[[1,1,0,1],[1,2,3,2],[2,3,0,2],[0,2,2,2]],[[1,1,0,1],[1,2,3,2],[3,3,0,2],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[2,4,0,2],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,0,2],[2,1,2,1]],[[1,1,0,2],[1,2,3,2],[2,3,1,2],[0,1,2,1]],[[1,1,0,1],[1,2,4,2],[2,3,1,2],[0,1,2,1]],[[1,1,0,1],[1,2,3,3],[2,3,1,2],[0,1,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,1,3],[0,1,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,1,2],[0,1,3,1]],[[1,1,0,1],[1,2,3,2],[2,3,1,2],[0,1,2,2]],[[1,1,0,2],[1,2,3,2],[2,3,1,2],[1,0,2,1]],[[1,1,0,1],[1,2,4,2],[2,3,1,2],[1,0,2,1]],[[1,1,0,1],[1,2,3,3],[2,3,1,2],[1,0,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,1,3],[1,0,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,1,2],[1,0,3,1]],[[1,1,0,1],[1,2,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,1,2],[0,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,3,1,1],[0,3,0,2],[2,3,3,2],[0,1,1,1]],[[2,2,1,1],[0,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,3,0,2],[2,3,3,2],[0,0,2,2]],[[1,2,1,1],[0,3,0,2],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[0,3,0,3],[2,3,3,2],[0,0,2,1]],[[1,2,1,2],[0,3,0,2],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[1,2,3,2],[3,3,2,0],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,4,2,0],[0,2,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,0],[0,3,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,0],[0,2,3,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,0],[0,2,2,2]],[[1,1,0,1],[1,2,3,2],[3,3,2,0],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[2,4,2,0],[1,1,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,0],[2,1,2,1]],[[1,1,0,1],[1,2,3,2],[3,3,2,1],[0,2,2,0]],[[1,1,0,1],[1,2,3,2],[2,4,2,1],[0,2,2,0]],[[1,1,0,1],[1,2,3,2],[2,3,2,1],[0,3,2,0]],[[1,1,0,1],[1,2,3,2],[2,3,2,1],[0,2,3,0]],[[1,1,0,1],[1,2,3,2],[3,3,2,1],[1,1,2,0]],[[1,1,0,1],[1,2,3,2],[2,4,2,1],[1,1,2,0]],[[1,1,0,1],[1,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,1,0,2],[1,2,3,2],[2,3,2,2],[0,0,2,1]],[[1,1,0,1],[1,2,4,2],[2,3,2,2],[0,0,2,1]],[[1,1,0,1],[1,2,3,3],[2,3,2,2],[0,0,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,3],[0,0,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,2],[0,0,2,2]],[[1,1,0,2],[1,2,3,2],[2,3,2,2],[0,1,1,1]],[[1,1,0,1],[1,2,4,2],[2,3,2,2],[0,1,1,1]],[[1,1,0,1],[1,2,3,3],[2,3,2,2],[0,1,1,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,3],[0,1,1,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,2],[0,1,1,2]],[[1,1,0,2],[1,2,3,2],[2,3,2,2],[0,1,2,0]],[[1,1,0,1],[1,2,4,2],[2,3,2,2],[0,1,2,0]],[[1,1,0,1],[1,2,3,3],[2,3,2,2],[0,1,2,0]],[[1,1,0,1],[1,2,3,2],[2,3,2,3],[0,1,2,0]],[[1,1,0,2],[1,2,3,2],[2,3,2,2],[0,2,0,1]],[[1,1,0,1],[1,2,4,2],[2,3,2,2],[0,2,0,1]],[[1,1,0,1],[1,2,3,3],[2,3,2,2],[0,2,0,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,3],[0,2,0,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,2],[0,2,0,2]],[[1,1,0,2],[1,2,3,2],[2,3,2,2],[0,2,1,0]],[[1,1,0,1],[1,2,4,2],[2,3,2,2],[0,2,1,0]],[[1,1,0,1],[1,2,3,3],[2,3,2,2],[0,2,1,0]],[[1,1,0,1],[1,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,3,0,2],[2,4,3,1],[1,2,0,1]],[[1,2,1,1],[0,3,0,2],[3,3,3,1],[1,2,0,1]],[[1,1,0,2],[1,2,3,2],[2,3,2,2],[1,0,1,1]],[[1,1,0,1],[1,2,4,2],[2,3,2,2],[1,0,1,1]],[[1,1,0,1],[1,2,3,3],[2,3,2,2],[1,0,1,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,3],[1,0,1,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,2],[1,0,1,2]],[[1,1,0,2],[1,2,3,2],[2,3,2,2],[1,0,2,0]],[[1,1,0,1],[1,2,4,2],[2,3,2,2],[1,0,2,0]],[[1,1,0,1],[1,2,3,3],[2,3,2,2],[1,0,2,0]],[[1,1,0,1],[1,2,3,2],[2,3,2,3],[1,0,2,0]],[[1,1,0,2],[1,2,3,2],[2,3,2,2],[1,1,0,1]],[[1,1,0,1],[1,2,4,2],[2,3,2,2],[1,1,0,1]],[[1,1,0,1],[1,2,3,3],[2,3,2,2],[1,1,0,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,3],[1,1,0,1]],[[1,1,0,1],[1,2,3,2],[2,3,2,2],[1,1,0,2]],[[1,1,0,2],[1,2,3,2],[2,3,2,2],[1,1,1,0]],[[1,1,0,1],[1,2,4,2],[2,3,2,2],[1,1,1,0]],[[1,1,0,1],[1,2,3,3],[2,3,2,2],[1,1,1,0]],[[1,1,0,1],[1,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,1],[0,3,0,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[0,3,0,2],[2,3,4,1],[1,1,1,1]],[[1,2,1,1],[0,3,0,2],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[0,3,0,2],[3,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,4,0,2],[2,3,3,1],[1,1,1,1]],[[1,3,1,1],[0,3,0,2],[2,3,3,1],[1,1,1,1]],[[2,2,1,1],[0,3,0,2],[2,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,3,0,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[0,3,0,2],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[0,3,0,2],[2,3,3,1],[2,0,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[0,3,0,2],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[0,3,0,2],[3,3,3,1],[1,0,2,1]],[[1,2,1,1],[0,4,0,2],[2,3,3,1],[1,0,2,1]],[[1,3,1,1],[0,3,0,2],[2,3,3,1],[1,0,2,1]],[[2,2,1,1],[0,3,0,2],[2,3,3,1],[1,0,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[0,3,0,2],[2,3,4,1],[0,2,1,1]],[[1,2,1,1],[0,3,0,2],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[0,3,0,2],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[0,4,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,0,2],[1,2,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[1,2,4,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[1,2,3,3],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[1,2,3,2],[3,3,3,0],[0,1,2,1]],[[1,1,0,1],[1,2,3,2],[2,4,3,0],[0,1,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,4,0],[0,1,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,0],[0,1,3,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,0],[0,1,2,2]],[[1,1,0,2],[1,2,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[1,2,4,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[1,2,3,3],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[1,2,3,2],[3,3,3,0],[0,2,1,1]],[[1,1,0,1],[1,2,3,2],[2,4,3,0],[0,2,1,1]],[[1,1,0,1],[1,2,3,2],[2,3,4,0],[0,2,1,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,0],[0,3,1,1]],[[1,1,0,2],[1,2,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[1,2,4,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[1,2,3,3],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[1,2,3,2],[3,3,3,0],[1,0,2,1]],[[1,1,0,1],[1,2,3,2],[2,4,3,0],[1,0,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,4,0],[1,0,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,0],[2,0,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,0],[1,0,3,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,0],[1,0,2,2]],[[1,1,0,2],[1,2,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[1,2,4,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[1,2,3,3],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[1,2,3,2],[3,3,3,0],[1,1,1,1]],[[1,1,0,1],[1,2,3,2],[2,4,3,0],[1,1,1,1]],[[1,1,0,1],[1,2,3,2],[2,3,4,0],[1,1,1,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,0],[2,1,1,1]],[[1,1,0,1],[1,2,3,2],[3,3,3,0],[1,2,0,1]],[[1,1,0,1],[1,2,3,2],[2,4,3,0],[1,2,0,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,3,1,1],[0,3,0,2],[2,3,3,1],[0,2,1,1]],[[2,2,1,1],[0,3,0,2],[2,3,3,1],[0,2,1,1]],[[1,2,1,1],[0,3,0,2],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[0,3,0,2],[2,3,3,1],[0,1,3,1]],[[1,2,1,1],[0,3,0,2],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[0,3,0,2],[2,4,3,1],[0,1,2,1]],[[1,2,1,1],[0,3,0,2],[3,3,3,1],[0,1,2,1]],[[1,2,1,1],[0,4,0,2],[2,3,3,1],[0,1,2,1]],[[1,3,1,1],[0,3,0,2],[2,3,3,1],[0,1,2,1]],[[2,2,1,1],[0,3,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,0,2],[1,2,3,2],[2,3,3,1],[0,0,2,1]],[[1,1,0,1],[1,2,4,2],[2,3,3,1],[0,0,2,1]],[[1,1,0,1],[1,2,3,3],[2,3,3,1],[0,0,2,1]],[[1,1,0,1],[1,2,3,2],[2,3,4,1],[0,0,2,1]],[[1,1,0,2],[1,2,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,1],[1,2,4,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,1],[1,2,3,3],[2,3,3,1],[0,1,1,1]],[[1,1,0,1],[1,2,3,2],[3,3,3,1],[0,1,1,1]],[[1,1,0,1],[1,2,3,2],[2,4,3,1],[0,1,1,1]],[[1,1,0,1],[1,2,3,2],[2,3,4,1],[0,1,1,1]],[[1,1,0,2],[1,2,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[1,2,4,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[1,2,3,3],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[1,2,3,2],[3,3,3,1],[0,1,2,0]],[[1,1,0,1],[1,2,3,2],[2,4,3,1],[0,1,2,0]],[[1,1,0,1],[1,2,3,2],[2,3,4,1],[0,1,2,0]],[[1,1,0,1],[1,2,3,2],[2,3,3,1],[0,1,3,0]],[[1,1,0,2],[1,2,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[1,2,4,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[1,2,3,3],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[1,2,3,2],[3,3,3,1],[0,2,0,1]],[[1,1,0,1],[1,2,3,2],[2,4,3,1],[0,2,0,1]],[[1,1,0,1],[1,2,3,2],[2,3,4,1],[0,2,0,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,1],[0,3,0,1]],[[1,1,0,2],[1,2,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[1,2,4,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[1,2,3,3],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[1,2,3,2],[3,3,3,1],[0,2,1,0]],[[1,1,0,1],[1,2,3,2],[2,4,3,1],[0,2,1,0]],[[1,1,0,1],[1,2,3,2],[2,3,4,1],[0,2,1,0]],[[1,1,0,1],[1,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,1,0,2],[1,2,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[1,2,4,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[1,2,3,3],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[1,2,3,2],[3,3,3,1],[1,0,1,1]],[[1,1,0,1],[1,2,3,2],[2,4,3,1],[1,0,1,1]],[[1,1,0,1],[1,2,3,2],[2,3,4,1],[1,0,1,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,1],[2,0,1,1]],[[1,1,0,2],[1,2,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[1,2,4,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[1,2,3,3],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[1,2,3,2],[3,3,3,1],[1,0,2,0]],[[1,1,0,1],[1,2,3,2],[2,4,3,1],[1,0,2,0]],[[1,1,0,1],[1,2,3,2],[2,3,4,1],[1,0,2,0]],[[1,1,0,1],[1,2,3,2],[2,3,3,1],[2,0,2,0]],[[1,1,0,1],[1,2,3,2],[2,3,3,1],[1,0,3,0]],[[1,1,0,2],[1,2,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[1,2,4,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[1,2,3,3],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[1,2,3,2],[3,3,3,1],[1,1,0,1]],[[1,1,0,1],[1,2,3,2],[2,4,3,1],[1,1,0,1]],[[1,1,0,1],[1,2,3,2],[2,3,4,1],[1,1,0,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,1],[2,1,0,1]],[[1,1,0,2],[1,2,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[1,2,4,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[1,2,3,3],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[1,2,3,2],[3,3,3,1],[1,1,1,0]],[[1,1,0,1],[1,2,3,2],[2,4,3,1],[1,1,1,0]],[[1,1,0,1],[1,2,3,2],[2,3,4,1],[1,1,1,0]],[[1,1,0,1],[1,2,3,2],[2,3,3,1],[2,1,1,0]],[[1,1,0,1],[1,2,3,2],[3,3,3,1],[1,2,0,0]],[[1,1,0,1],[1,2,3,2],[2,4,3,1],[1,2,0,0]],[[1,1,0,1],[1,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[0,3,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,3,0,2],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[0,3,0,2],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[0,4,0,2],[2,3,2,2],[1,1,2,0]],[[1,3,1,1],[0,3,0,2],[2,3,2,2],[1,1,2,0]],[[2,2,1,1],[0,3,0,2],[2,3,2,2],[1,1,2,0]],[[1,2,1,1],[0,3,0,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[0,3,0,2],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[0,3,0,2],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[0,3,0,3],[2,3,2,2],[1,0,2,1]],[[1,2,1,2],[0,3,0,2],[2,3,2,2],[1,0,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,2,2],[0,2,3,0]],[[1,2,1,1],[0,3,0,2],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[0,3,0,2],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[0,3,0,2],[3,3,2,2],[0,2,2,0]],[[1,1,0,2],[1,2,3,2],[2,3,3,2],[0,1,0,1]],[[1,1,0,1],[1,2,4,2],[2,3,3,2],[0,1,0,1]],[[1,1,0,1],[1,2,3,3],[2,3,3,2],[0,1,0,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,1],[0,4,0,2],[2,3,2,2],[0,2,2,0]],[[1,3,1,1],[0,3,0,2],[2,3,2,2],[0,2,2,0]],[[2,2,1,1],[0,3,0,2],[2,3,2,2],[0,2,2,0]],[[1,2,1,1],[0,3,0,2],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[0,3,0,2],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[0,3,0,2],[2,3,2,3],[0,1,2,1]],[[1,2,1,1],[0,3,0,3],[2,3,2,2],[0,1,2,1]],[[1,2,1,2],[0,3,0,2],[2,3,2,2],[0,1,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[0,3,0,2],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[0,3,0,2],[3,3,2,1],[1,1,2,1]],[[1,2,1,1],[0,4,0,2],[2,3,2,1],[1,1,2,1]],[[1,3,1,1],[0,3,0,2],[2,3,2,1],[1,1,2,1]],[[2,2,1,1],[0,3,0,2],[2,3,2,1],[1,1,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[0,3,0,2],[2,3,2,1],[0,2,3,1]],[[1,2,1,1],[0,3,0,2],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[0,3,0,2],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[0,3,0,2],[3,3,2,1],[0,2,2,1]],[[1,2,1,1],[0,4,0,2],[2,3,2,1],[0,2,2,1]],[[1,3,1,1],[0,3,0,2],[2,3,2,1],[0,2,2,1]],[[2,2,1,1],[0,3,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,0,2],[1,2,3,2],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[1,2,4,2],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[1,2,3,3],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[1,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,1],[0,3,0,2],[2,3,1,2],[1,3,2,0]],[[1,2,1,1],[0,3,0,2],[2,3,1,2],[2,2,2,0]],[[1,2,1,1],[0,3,0,2],[3,3,1,2],[1,2,2,0]],[[1,2,1,1],[0,3,0,2],[2,3,1,2],[2,1,2,1]],[[1,2,1,1],[0,3,0,2],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[0,3,0,2],[3,3,1,2],[1,1,2,1]],[[1,2,1,1],[0,4,0,2],[2,3,1,2],[1,1,2,1]],[[1,3,1,1],[0,3,0,2],[2,3,1,2],[1,1,2,1]],[[2,2,1,1],[0,3,0,2],[2,3,1,2],[1,1,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[0,3,0,2],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[0,3,0,2],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,1,3],[0,2,2,1]],[[1,2,1,1],[0,3,0,2],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[0,3,0,2],[3,3,1,2],[0,2,2,1]],[[1,2,1,1],[0,3,0,3],[2,3,1,2],[0,2,2,1]],[[1,2,1,1],[0,4,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,1,2],[0,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,3,1,1],[0,3,0,2],[2,3,1,2],[0,2,2,1]],[[2,2,1,1],[0,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,1,1],[1,3,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,1,1],[2,2,2,1]],[[1,2,1,1],[0,3,0,2],[3,3,1,1],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,0,2],[1,3,2,1]],[[1,2,1,1],[0,3,0,2],[2,3,0,2],[2,2,2,1]],[[1,2,1,1],[0,3,0,2],[3,3,0,2],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,0,2],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[0,3,0,2],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[0,3,0,2],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[0,3,0,2],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[0,3,0,2],[3,2,3,2],[1,2,0,1]],[[1,2,1,1],[0,3,0,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[0,3,0,2],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[0,3,0,2],[2,2,3,3],[0,2,2,0]],[[1,2,1,1],[0,3,0,2],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[0,3,0,3],[2,2,3,2],[0,2,2,0]],[[1,2,1,2],[0,3,0,2],[2,2,3,2],[0,2,2,0]],[[1,2,1,1],[0,3,0,2],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[0,3,0,2],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[0,3,0,2],[2,2,4,2],[0,2,1,1]],[[1,2,1,1],[0,3,0,3],[2,2,3,2],[0,2,1,1]],[[1,2,1,2],[0,3,0,2],[2,2,3,2],[0,2,1,1]],[[1,2,1,1],[0,3,0,2],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[0,3,0,2],[2,2,3,1],[2,2,1,1]],[[1,2,1,1],[0,3,0,2],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[0,3,0,2],[2,2,3,1],[0,2,2,2]],[[1,2,1,1],[0,3,0,2],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[0,3,0,2],[2,2,3,1],[0,3,2,1]],[[1,2,1,1],[0,3,0,2],[2,2,4,1],[0,2,2,1]],[[1,1,0,1],[1,3,0,1],[1,4,3,2],[1,2,2,1]],[[1,1,0,1],[1,3,0,1],[1,3,3,2],[2,2,2,1]],[[1,1,0,1],[1,3,0,1],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,0,1],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,0,1],[1,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,0,1],[3,2,3,2],[1,2,2,1]],[[1,1,0,1],[1,3,0,1],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[1,3,0,1],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,0,1],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,0,1],[2,2,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,0,1],[3,3,3,2],[0,2,2,1]],[[1,1,0,1],[1,3,0,1],[2,4,3,2],[0,2,2,1]],[[1,1,0,1],[1,3,0,1],[2,3,3,2],[0,3,2,1]],[[1,1,0,1],[1,3,0,1],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[1,3,0,1],[2,3,3,2],[0,2,2,2]],[[1,1,0,1],[1,3,0,1],[3,3,3,2],[1,1,2,1]],[[1,1,0,1],[1,3,0,1],[2,4,3,2],[1,1,2,1]],[[1,1,0,1],[1,3,0,1],[2,3,3,2],[2,1,2,1]],[[1,1,0,1],[1,3,0,2],[0,3,3,3],[1,2,2,1]],[[1,1,0,1],[1,3,0,2],[0,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,0,2],[0,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,0,2],[0,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,0,2],[1,2,3,3],[1,2,2,1]],[[1,1,0,1],[1,3,0,2],[1,2,3,2],[2,2,2,1]],[[1,1,0,1],[1,3,0,2],[1,2,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,0,2],[1,2,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,0,2],[1,2,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,0,2],[1,4,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,0,2],[1,3,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,0,2],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,0,2],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,0,2],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,0,2],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,0,2],[1,4,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,0,2],[1,3,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,0,2],[1,3,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,0,2],[1,3,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,0,2],[1,3,3,1],[1,2,2,2]],[[1,1,0,1],[1,3,0,2],[1,3,3,3],[1,1,2,1]],[[1,1,0,1],[1,3,0,2],[1,3,3,2],[1,1,3,1]],[[1,1,0,1],[1,3,0,2],[1,3,3,2],[1,1,2,2]],[[1,1,0,1],[1,3,0,2],[1,4,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,0,2],[1,3,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,0,2],[1,3,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,0,2],[1,3,3,2],[1,2,3,0]],[[1,1,0,1],[1,3,0,2],[3,1,3,2],[1,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,1,3,3],[1,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,1,3,2],[2,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,1,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,0,2],[2,1,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,0,2],[2,1,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,0,2],[3,2,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,2,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,0,2],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,0,2],[2,2,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,0,2],[3,2,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,2,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,2,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,0,2],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,0,2],[2,2,3,1],[1,2,2,2]],[[1,1,0,1],[1,3,0,2],[2,2,3,3],[0,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,2,3,2],[0,3,2,1]],[[1,1,0,1],[1,3,0,2],[2,2,3,2],[0,2,3,1]],[[1,1,0,1],[1,3,0,2],[2,2,3,2],[0,2,2,2]],[[1,1,0,1],[1,3,0,2],[3,2,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,0,2],[2,2,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,0,2],[2,2,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,0,2],[2,2,3,2],[1,2,3,0]],[[1,1,0,1],[1,3,0,2],[3,3,2,2],[0,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,4,2,2],[0,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,3,2,3],[0,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[1,3,0,2],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[1,3,0,2],[2,3,2,2],[0,2,2,2]],[[1,1,0,1],[1,3,0,2],[3,3,2,2],[1,1,2,1]],[[1,1,0,1],[1,3,0,2],[2,4,2,2],[1,1,2,1]],[[1,1,0,1],[1,3,0,2],[2,3,2,2],[2,1,2,1]],[[1,1,0,1],[1,3,0,2],[3,3,3,1],[0,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,4,3,1],[0,2,2,1]],[[1,1,0,1],[1,3,0,2],[2,3,3,1],[0,3,2,1]],[[1,1,0,1],[1,3,0,2],[2,3,3,1],[0,2,3,1]],[[1,1,0,1],[1,3,0,2],[2,3,3,1],[0,2,2,2]],[[1,1,0,1],[1,3,0,2],[3,3,3,1],[1,1,2,1]],[[1,1,0,1],[1,3,0,2],[2,4,3,1],[1,1,2,1]],[[1,1,0,1],[1,3,0,2],[2,3,3,1],[2,1,2,1]],[[1,1,0,1],[1,3,0,2],[2,3,3,3],[0,1,2,1]],[[1,1,0,1],[1,3,0,2],[2,3,3,2],[0,1,3,1]],[[1,1,0,1],[1,3,0,2],[2,3,3,2],[0,1,2,2]],[[1,1,0,1],[1,3,0,2],[3,3,3,2],[0,2,2,0]],[[1,1,0,1],[1,3,0,2],[2,4,3,2],[0,2,2,0]],[[1,1,0,1],[1,3,0,2],[2,3,3,2],[0,3,2,0]],[[1,1,0,1],[1,3,0,2],[2,3,3,2],[0,2,3,0]],[[1,1,0,1],[1,3,0,2],[2,3,3,3],[1,0,2,1]],[[1,1,0,1],[1,3,0,2],[2,3,3,2],[1,0,3,1]],[[1,1,0,1],[1,3,0,2],[2,3,3,2],[1,0,2,2]],[[1,1,0,1],[1,3,0,2],[3,3,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,0,2],[2,4,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[0,3,0,2],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[0,3,0,2],[2,2,2,2],[1,3,2,0]],[[1,1,0,1],[1,3,1,0],[1,4,3,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,0],[1,3,3,2],[2,2,2,1]],[[1,1,0,1],[1,3,1,0],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,1,0],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,1,0],[1,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,1,0],[3,2,3,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,0],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[1,3,1,0],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,1,0],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,1,0],[2,2,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,1,0],[3,3,3,2],[0,2,2,1]],[[1,1,0,1],[1,3,1,0],[2,4,3,2],[0,2,2,1]],[[1,1,0,1],[1,3,1,0],[2,3,3,2],[0,3,2,1]],[[1,1,0,1],[1,3,1,0],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[1,3,1,0],[2,3,3,2],[0,2,2,2]],[[1,1,0,1],[1,3,1,0],[3,3,3,2],[1,1,2,1]],[[1,1,0,1],[1,3,1,0],[2,4,3,2],[1,1,2,1]],[[1,1,0,1],[1,3,1,0],[2,3,3,2],[2,1,2,1]],[[1,1,0,1],[1,3,1,1],[1,4,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,1,1],[1,3,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,1,1],[1,3,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,1,1],[1,3,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,1,1],[1,3,3,1],[1,2,2,2]],[[1,1,0,1],[1,3,1,1],[1,4,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,1],[1,3,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,1,1],[1,3,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,1,1],[1,3,3,2],[1,2,3,0]],[[1,1,0,1],[1,3,1,1],[3,2,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,1,1],[2,2,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,1,1],[2,2,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,1,1],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,1,1],[2,2,3,1],[1,2,2,2]],[[1,1,0,1],[1,3,1,1],[3,2,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,1],[2,2,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,1,1],[2,2,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,1,1],[2,2,3,2],[1,2,3,0]],[[1,1,0,1],[1,3,1,1],[3,3,3,1],[0,2,2,1]],[[1,1,0,1],[1,3,1,1],[2,4,3,1],[0,2,2,1]],[[1,1,0,1],[1,3,1,1],[2,3,3,1],[0,3,2,1]],[[1,1,0,1],[1,3,1,1],[2,3,3,1],[0,2,3,1]],[[1,1,0,1],[1,3,1,1],[2,3,3,1],[0,2,2,2]],[[1,1,0,1],[1,3,1,1],[3,3,3,1],[1,1,2,1]],[[1,1,0,1],[1,3,1,1],[2,4,3,1],[1,1,2,1]],[[1,1,0,1],[1,3,1,1],[2,3,3,1],[2,1,2,1]],[[1,1,0,1],[1,3,1,1],[3,3,3,2],[0,2,2,0]],[[1,1,0,1],[1,3,1,1],[2,4,3,2],[0,2,2,0]],[[1,1,0,1],[1,3,1,1],[2,3,3,2],[0,3,2,0]],[[1,1,0,1],[1,3,1,1],[2,3,3,2],[0,2,3,0]],[[1,1,0,1],[1,3,1,1],[3,3,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,1,1],[2,4,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[0,3,0,2],[2,2,2,2],[2,2,2,0]],[[1,2,1,1],[0,3,0,2],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[0,3,0,2],[2,2,2,2],[0,2,2,2]],[[1,2,1,1],[0,3,0,2],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[0,3,0,2],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[0,3,0,2],[2,2,2,3],[0,2,2,1]],[[1,1,0,1],[1,3,1,3],[0,3,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[0,3,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[0,3,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,1,2],[0,3,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,1,2],[0,3,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,1,2],[0,3,4,1],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[0,3,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,1,2],[0,3,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,1,2],[0,3,3,1],[1,2,2,2]],[[1,1,0,1],[1,3,1,3],[0,3,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[0,3,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[0,3,3,3],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[0,3,3,2],[1,2,1,2]],[[1,1,0,1],[1,3,1,3],[0,3,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[0,3,4,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[0,3,3,3],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[0,3,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,1,2],[0,3,3,2],[1,2,3,0]],[[1,1,0,2],[1,3,1,2],[1,2,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,3],[1,2,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,2,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,2,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,2,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,1,2],[1,2,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,1,2],[1,2,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,1,2],[1,2,4,1],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,2,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,2,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,1,2],[1,2,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,1,2],[1,2,3,1],[1,2,2,2]],[[1,1,0,2],[1,3,1,2],[1,2,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,1,3],[1,2,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[1,2,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[1,2,3,3],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[1,2,3,2],[1,2,1,2]],[[1,1,0,2],[1,3,1,2],[1,2,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,3],[1,2,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[1,2,4,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[1,2,3,3],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[1,2,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,1,2],[1,2,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,1,2],[1,2,3,2],[1,2,3,0]],[[1,1,0,2],[1,3,1,2],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[1,4,1,2],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,3],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,1,3],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,1,2],[1,3,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,1,2],[1,2,3,1]],[[1,1,0,1],[1,3,1,2],[1,3,1,2],[1,2,2,2]],[[1,1,0,1],[1,4,1,2],[1,3,2,1],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,4,2,1],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,2,1],[2,2,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,2,1],[1,3,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,2,1],[1,2,3,1]],[[1,1,0,1],[1,3,1,2],[1,3,2,1],[1,2,2,2]],[[1,1,0,2],[1,3,1,2],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[1,3,1,3],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,2,3],[1,1,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,2,2],[1,1,3,1]],[[1,1,0,1],[1,3,1,2],[1,3,2,2],[1,1,2,2]],[[1,1,0,1],[1,4,1,2],[1,3,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[1,3,2,2],[2,2,2,0]],[[1,1,0,1],[1,3,1,2],[1,3,2,2],[1,3,2,0]],[[1,1,0,1],[1,3,1,2],[1,3,2,2],[1,2,3,0]],[[1,1,0,1],[1,4,1,2],[1,3,3,1],[1,1,2,1]],[[1,1,0,1],[1,3,1,2],[1,4,3,1],[1,1,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,4,1],[1,1,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,1],[1,1,3,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,1],[1,1,2,2]],[[1,1,0,1],[1,4,1,2],[1,3,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[1,3,4,1],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,1],[2,2,1,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,1],[1,3,1,1]],[[1,1,0,1],[1,3,1,3],[1,3,3,2],[1,0,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,4,2],[1,0,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,3],[1,0,2,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,2],[1,0,2,2]],[[1,1,0,2],[1,3,1,2],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,4,1,2],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,1,3],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,1,2],[1,4,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,1,2],[1,3,4,2],[1,1,1,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,3],[1,1,1,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,2],[1,1,1,2]],[[1,1,0,2],[1,3,1,2],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[1,4,1,2],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,1,3],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,1,2],[1,4,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,1,2],[1,3,4,2],[1,1,2,0]],[[1,1,0,1],[1,3,1,2],[1,3,3,3],[1,1,2,0]],[[1,1,0,1],[1,3,1,2],[1,3,3,2],[1,1,3,0]],[[1,1,0,2],[1,3,1,2],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[1,4,1,2],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,1,3],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,1,2],[1,4,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,1,2],[1,3,4,2],[1,2,0,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,3],[1,2,0,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,2],[2,2,0,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,2],[1,3,0,1]],[[1,1,0,1],[1,3,1,2],[1,3,3,2],[1,2,0,2]],[[1,1,0,2],[1,3,1,2],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[1,4,1,2],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,1,3],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,1,2],[1,4,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,1,2],[1,3,4,2],[1,2,1,0]],[[1,1,0,1],[1,3,1,2],[1,3,3,3],[1,2,1,0]],[[1,1,0,1],[1,3,1,2],[1,3,3,2],[2,2,1,0]],[[1,1,0,1],[1,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,0,3],[2,2,2,2],[0,2,2,1]],[[1,2,1,2],[0,3,0,2],[2,2,2,2],[0,2,2,1]],[[1,2,1,1],[0,3,0,2],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[0,3,0,2],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[0,3,0,2],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[0,3,0,2],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[0,3,0,2],[3,2,2,1],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[0,3,0,2],[2,2,1,2],[1,2,3,1]],[[1,2,1,1],[0,3,0,2],[2,2,1,2],[1,3,2,1]],[[1,1,0,2],[1,3,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,3],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[3,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,1,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,1,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,1,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,1,2],[2,1,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,1,2],[2,1,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,1,2],[3,1,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,1,4,1],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,1,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,1,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,1,2],[2,1,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,1,2],[2,1,3,1],[1,2,2,2]],[[1,1,0,2],[1,3,1,2],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,1,3],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[2,1,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[2,1,3,3],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[2,1,3,2],[1,2,1,2]],[[1,1,0,2],[1,3,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,3],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[3,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,1,4,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,1,3,3],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,1,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,1,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,1,2],[2,1,3,2],[1,2,3,0]],[[1,1,0,2],[1,3,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,3],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[3,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,1,3],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,1,2],[2,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,1,2],[1,3,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,1,2],[1,2,3,1]],[[1,1,0,1],[1,3,1,2],[2,2,1,2],[1,2,2,2]],[[1,1,0,1],[1,3,1,2],[3,2,2,1],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,2,1],[2,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,2,1],[1,3,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,2,1],[1,2,3,1]],[[1,1,0,1],[1,3,1,2],[2,2,2,1],[1,2,2,2]],[[1,1,0,2],[1,3,1,2],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[1,3,1,3],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,2,3],[0,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,2,2],[0,3,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,2,2],[0,2,3,1]],[[1,1,0,1],[1,3,1,2],[2,2,2,2],[0,2,2,2]],[[1,1,0,1],[1,3,1,2],[3,2,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,2,2,2],[2,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,2,2,2],[1,3,2,0]],[[1,1,0,1],[1,3,1,2],[2,2,2,2],[1,2,3,0]],[[1,1,0,1],[1,3,1,2],[2,2,4,1],[0,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,3,1],[0,3,2,1]],[[1,1,0,1],[1,3,1,2],[2,2,3,1],[0,2,3,1]],[[1,1,0,1],[1,3,1,2],[2,2,3,1],[0,2,2,2]],[[1,1,0,1],[1,3,1,2],[3,2,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,1,2],[2,2,3,1],[2,2,1,1]],[[1,1,0,1],[1,3,1,2],[2,2,3,1],[1,3,1,1]],[[1,1,0,2],[1,3,1,2],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[1,3,1,3],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[1,3,1,2],[2,2,4,2],[0,2,1,1]],[[1,1,0,1],[1,3,1,2],[2,2,3,3],[0,2,1,1]],[[1,1,0,1],[1,3,1,2],[2,2,3,2],[0,2,1,2]],[[1,1,0,2],[1,3,1,2],[2,2,3,2],[0,2,2,0]],[[1,1,0,1],[1,3,1,3],[2,2,3,2],[0,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,2,4,2],[0,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,2,3,3],[0,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,2,3,2],[0,3,2,0]],[[1,1,0,1],[1,3,1,2],[2,2,3,2],[0,2,3,0]],[[1,1,0,1],[1,3,1,2],[3,2,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,1,2],[2,2,3,2],[2,2,0,1]],[[1,1,0,1],[1,3,1,2],[2,2,3,2],[1,3,0,1]],[[1,1,0,1],[1,3,1,2],[3,2,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,1,2],[2,2,3,2],[2,2,1,0]],[[1,1,0,1],[1,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,0,2],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[0,3,0,2],[2,2,1,3],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[3,2,1,2],[1,2,2,1]],[[1,2,1,1],[0,3,0,3],[2,2,1,2],[1,2,2,1]],[[1,2,1,2],[0,3,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[3,3,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,0,2],[2,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,0,2],[1,3,2,1]],[[1,1,0,1],[1,3,1,2],[3,3,1,1],[1,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,1,1],[2,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,1,1],[1,3,2,1]],[[1,1,0,2],[1,3,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[1,4,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[1,3,1,3],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[1,3,1,2],[3,3,1,2],[0,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,4,1,2],[0,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,1,3],[0,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,1,2],[0,3,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,1,2],[0,2,3,1]],[[1,1,0,1],[1,3,1,2],[2,3,1,2],[0,2,2,2]],[[1,1,0,1],[1,4,1,2],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[1,3,1,2],[3,3,1,2],[1,1,2,1]],[[1,1,0,1],[1,3,1,2],[2,4,1,2],[1,1,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,1,2],[2,1,2,1]],[[1,1,0,1],[1,3,1,2],[3,3,1,2],[1,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,1,2],[2,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,1,2],[1,3,2,0]],[[1,1,0,1],[1,4,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[1,3,1,2],[3,3,2,1],[0,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,4,2,1],[0,2,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,2,1],[0,3,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,2,1],[0,2,3,1]],[[1,1,0,1],[1,3,1,2],[2,3,2,1],[0,2,2,2]],[[1,1,0,1],[1,4,1,2],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[1,3,1,2],[3,3,2,1],[1,1,2,1]],[[1,1,0,1],[1,3,1,2],[2,4,2,1],[1,1,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,2,1],[2,1,2,1]],[[1,1,0,2],[1,3,1,2],[2,3,2,2],[0,1,2,1]],[[1,1,0,1],[1,3,1,3],[2,3,2,2],[0,1,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,2,3],[0,1,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,2,2],[0,1,3,1]],[[1,1,0,1],[1,3,1,2],[2,3,2,2],[0,1,2,2]],[[1,1,0,1],[1,4,1,2],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[1,3,1,2],[3,3,2,2],[0,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,4,2,2],[0,2,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,2,2],[0,3,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,2,2],[0,2,3,0]],[[1,1,0,2],[1,3,1,2],[2,3,2,2],[1,0,2,1]],[[1,1,0,1],[1,3,1,3],[2,3,2,2],[1,0,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,2,3],[1,0,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,2,2],[1,0,3,1]],[[1,1,0,1],[1,3,1,2],[2,3,2,2],[1,0,2,2]],[[1,1,0,1],[1,4,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[1,3,1,2],[3,3,2,2],[1,1,2,0]],[[1,1,0,1],[1,3,1,2],[2,4,2,2],[1,1,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,3,0,2],[2,1,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,0,2],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,0,2],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[0,3,0,2],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[0,3,0,2],[2,1,4,2],[1,2,2,0]],[[1,1,0,1],[1,4,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[1,3,1,2],[3,3,3,1],[0,1,2,1]],[[1,1,0,1],[1,3,1,2],[2,4,3,1],[0,1,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,4,1],[0,1,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,1],[0,1,3,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,1],[0,1,2,2]],[[1,1,0,1],[1,4,1,2],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[1,3,1,2],[3,3,3,1],[0,2,1,1]],[[1,1,0,1],[1,3,1,2],[2,4,3,1],[0,2,1,1]],[[1,1,0,1],[1,3,1,2],[2,3,4,1],[0,2,1,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,1],[0,3,1,1]],[[1,1,0,1],[1,4,1,2],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[1,3,1,2],[3,3,3,1],[1,0,2,1]],[[1,1,0,1],[1,3,1,2],[2,4,3,1],[1,0,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,4,1],[1,0,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,1],[2,0,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,1],[1,0,3,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,1],[1,0,2,2]],[[1,1,0,1],[1,4,1,2],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,1,2],[3,3,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,1,2],[2,4,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,1,2],[2,3,4,1],[1,1,1,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,1],[2,1,1,1]],[[1,1,0,1],[1,3,1,2],[3,3,3,1],[1,2,0,1]],[[1,1,0,1],[1,3,1,2],[2,4,3,1],[1,2,0,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,3,0,2],[3,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,0,3],[2,1,3,2],[1,2,2,0]],[[1,2,1,2],[0,3,0,2],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,0,2],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[0,3,0,2],[2,1,3,3],[1,2,1,1]],[[1,2,1,1],[0,3,0,2],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[0,3,0,3],[2,1,3,2],[1,2,1,1]],[[1,2,1,2],[0,3,0,2],[2,1,3,2],[1,2,1,1]],[[1,1,0,2],[1,3,1,2],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[1,3,1,3],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,4,2],[0,0,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,3],[0,0,2,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[0,0,2,2]],[[1,1,0,2],[1,3,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,4,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,1,3],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,1,2],[3,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,1,2],[2,4,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,1,2],[2,3,4,2],[0,1,1,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,3],[0,1,1,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[0,1,1,2]],[[1,1,0,2],[1,3,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,4,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,1,3],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,1,2],[3,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,1,2],[2,4,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,4,2],[0,1,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,3,3],[0,1,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[0,1,3,0]],[[1,1,0,2],[1,3,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,4,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,1,3],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,1,2],[3,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,1,2],[2,4,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,1,2],[2,3,4,2],[0,2,0,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,3],[0,2,0,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[0,3,0,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[0,2,0,2]],[[1,1,0,2],[1,3,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,4,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,1,3],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,1,2],[3,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,1,2],[2,4,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,1,2],[2,3,4,2],[0,2,1,0]],[[1,1,0,1],[1,3,1,2],[2,3,3,3],[0,2,1,0]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,3,0,2],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[0,3,0,2],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[0,3,0,2],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[0,3,0,2],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[0,3,0,2],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[3,1,3,1],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[0,3,0,2],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[0,3,0,2],[2,1,2,2],[1,3,2,1]],[[1,2,1,1],[0,3,0,2],[2,1,2,2],[2,2,2,1]],[[1,1,0,2],[1,3,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,4,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,1,3],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,1,2],[3,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,1,2],[2,4,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,1,2],[2,3,4,2],[1,0,1,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,3],[1,0,1,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[2,0,1,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[1,0,1,2]],[[1,1,0,2],[1,3,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,4,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,1,3],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,1,2],[3,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,1,2],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,4,2],[1,0,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,3,3],[1,0,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[2,0,2,0]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[1,0,3,0]],[[1,1,0,2],[1,3,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,4,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,3,1,3],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,3,1,2],[3,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,3,1,2],[2,4,3,2],[1,1,0,1]],[[1,1,0,1],[1,3,1,2],[2,3,4,2],[1,1,0,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,3],[1,1,0,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[2,1,0,1]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[1,1,0,2]],[[1,1,0,2],[1,3,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[1,4,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[1,3,1,3],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[1,3,1,2],[3,3,3,2],[1,1,1,0]],[[1,1,0,1],[1,3,1,2],[2,4,3,2],[1,1,1,0]],[[1,1,0,1],[1,3,1,2],[2,3,4,2],[1,1,1,0]],[[1,1,0,1],[1,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,3,0,2],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[3,1,2,2],[1,2,2,1]],[[1,2,1,1],[0,3,0,3],[2,1,2,2],[1,2,2,1]],[[1,2,1,2],[0,3,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,4,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[1,3,1,2],[3,3,3,2],[1,2,0,0]],[[1,1,0,1],[1,3,1,2],[2,4,3,2],[1,2,0,0]],[[1,1,0,1],[1,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,0,2],[1,3,3,2],[2,2,1,0]],[[1,2,1,1],[0,3,0,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[0,3,0,2],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[0,3,0,2],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[0,3,0,3],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[0,4,0,2],[1,3,3,2],[1,2,1,0]],[[1,2,1,2],[0,3,0,2],[1,3,3,2],[1,2,1,0]],[[1,3,1,1],[0,3,0,2],[1,3,3,2],[1,2,1,0]],[[2,2,1,1],[0,3,0,2],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[0,3,0,2],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[0,3,0,2],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[0,3,0,2],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[0,3,0,2],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[0,3,0,2],[1,3,4,2],[1,2,0,1]],[[1,1,0,1],[1,3,2,0],[0,3,4,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,0],[0,3,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,0],[0,3,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,0],[0,3,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,2,0],[1,2,4,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,0],[1,2,3,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,0],[1,2,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,0],[1,2,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,0],[1,2,3,2],[1,2,2,2]],[[1,1,0,1],[1,4,2,0],[1,3,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,0],[1,4,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,0],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,0],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,0],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,0],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[1,4,2,0],[1,3,3,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,0],[1,4,3,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,0],[1,3,4,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,0],[1,3,3,2],[1,1,3,1]],[[1,1,0,1],[1,3,2,0],[1,3,3,2],[1,1,2,2]],[[1,1,0,1],[1,4,2,0],[1,3,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,0],[1,4,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,0],[1,3,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,0],[1,3,3,2],[2,2,1,1]],[[1,1,0,1],[1,3,2,0],[1,3,3,2],[1,3,1,1]],[[1,1,0,1],[1,3,2,0],[3,1,3,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,0],[2,1,4,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,0],[2,1,3,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,0],[2,1,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,0],[2,1,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,0],[2,1,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,2,0],[3,2,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,0],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,0],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,0],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,0],[2,2,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,2,0],[2,2,4,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,0],[2,2,3,2],[0,3,2,1]],[[1,1,0,1],[1,3,2,0],[2,2,3,2],[0,2,3,1]],[[1,1,0,1],[1,3,2,0],[2,2,3,2],[0,2,2,2]],[[1,1,0,1],[1,3,2,0],[3,2,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,0],[2,2,3,2],[2,2,1,1]],[[1,1,0,1],[1,3,2,0],[2,2,3,2],[1,3,1,1]],[[1,1,0,1],[1,3,2,0],[3,3,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,0],[2,3,1,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,0],[2,3,1,2],[1,3,2,1]],[[1,1,0,1],[1,4,2,0],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,0],[3,3,2,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,0],[2,4,2,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,0],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[1,3,2,0],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[1,3,2,0],[2,3,2,2],[0,2,2,2]],[[1,1,0,1],[1,4,2,0],[2,3,2,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,0],[3,3,2,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,0],[2,4,2,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,0],[2,3,2,2],[2,1,2,1]],[[1,1,0,1],[1,4,2,0],[2,3,3,2],[0,1,2,1]],[[1,1,0,1],[1,3,2,0],[3,3,3,2],[0,1,2,1]],[[1,1,0,1],[1,3,2,0],[2,4,3,2],[0,1,2,1]],[[1,1,0,1],[1,3,2,0],[2,3,4,2],[0,1,2,1]],[[1,1,0,1],[1,3,2,0],[2,3,3,2],[0,1,3,1]],[[1,1,0,1],[1,3,2,0],[2,3,3,2],[0,1,2,2]],[[1,1,0,1],[1,4,2,0],[2,3,3,2],[0,2,1,1]],[[1,1,0,1],[1,3,2,0],[3,3,3,2],[0,2,1,1]],[[1,1,0,1],[1,3,2,0],[2,4,3,2],[0,2,1,1]],[[1,1,0,1],[1,3,2,0],[2,3,4,2],[0,2,1,1]],[[1,1,0,1],[1,3,2,0],[2,3,3,2],[0,3,1,1]],[[1,1,0,1],[1,4,2,0],[2,3,3,2],[1,0,2,1]],[[1,1,0,1],[1,3,2,0],[3,3,3,2],[1,0,2,1]],[[1,1,0,1],[1,3,2,0],[2,4,3,2],[1,0,2,1]],[[1,1,0,1],[1,3,2,0],[2,3,4,2],[1,0,2,1]],[[1,1,0,1],[1,3,2,0],[2,3,3,2],[2,0,2,1]],[[1,1,0,1],[1,3,2,0],[2,3,3,2],[1,0,3,1]],[[1,1,0,1],[1,3,2,0],[2,3,3,2],[1,0,2,2]],[[1,1,0,1],[1,4,2,0],[2,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,2,0],[3,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,2,0],[2,4,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,2,0],[2,3,4,2],[1,1,1,1]],[[1,1,0,1],[1,3,2,0],[2,3,3,2],[2,1,1,1]],[[1,1,0,1],[1,3,2,0],[3,3,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,2,0],[2,4,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,1,1],[0,3,0,2],[1,4,3,2],[1,2,0,1]],[[1,2,1,1],[0,3,0,3],[1,3,3,2],[1,2,0,1]],[[1,2,1,1],[0,4,0,2],[1,3,3,2],[1,2,0,1]],[[1,2,1,2],[0,3,0,2],[1,3,3,2],[1,2,0,1]],[[1,3,1,1],[0,3,0,2],[1,3,3,2],[1,2,0,1]],[[2,2,1,1],[0,3,0,2],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,2,1],[0,3,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[0,3,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[0,3,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,1],[0,3,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,2,1],[0,3,4,1],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[0,3,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[0,3,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,2,1],[0,3,3,1],[1,2,2,2]],[[1,1,0,1],[1,3,2,1],[0,3,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,1],[0,3,3,3],[1,2,1,1]],[[1,1,0,1],[1,3,2,1],[0,3,3,2],[1,2,1,2]],[[1,1,0,1],[1,3,2,1],[0,3,4,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,1],[0,3,3,3],[1,2,2,0]],[[1,1,0,1],[1,3,2,1],[0,3,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,2,1],[0,3,3,2],[1,2,3,0]],[[1,1,0,1],[1,3,2,1],[1,2,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,2,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,2,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[1,2,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,1],[1,2,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,2,1],[1,2,4,1],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,2,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,2,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[1,2,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,2,1],[1,2,3,1],[1,2,2,2]],[[1,1,0,1],[1,3,2,1],[1,2,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,1],[1,2,3,3],[1,2,1,1]],[[1,1,0,1],[1,3,2,1],[1,2,3,2],[1,2,1,2]],[[1,1,0,1],[1,3,2,1],[1,2,4,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,1],[1,2,3,3],[1,2,2,0]],[[1,1,0,1],[1,3,2,1],[1,2,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,2,1],[1,2,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,2,1],[1,2,3,2],[1,2,3,0]],[[1,1,0,1],[1,4,2,1],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,1,3],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,1,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,1,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,1],[1,3,1,2],[1,2,2,2]],[[1,1,0,1],[1,4,2,1],[1,3,2,1],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,4,2,1],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,2,1],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,2,1],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,2,1],[1,2,3,1]],[[1,1,0,1],[1,3,2,1],[1,3,2,1],[1,2,2,2]],[[1,1,0,1],[1,3,2,1],[1,3,2,3],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,2,2],[1,1,3,1]],[[1,1,0,1],[1,3,2,1],[1,3,2,2],[1,1,2,2]],[[1,1,0,1],[1,4,2,1],[1,3,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,1],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,1],[1,3,2,2],[2,2,2,0]],[[1,1,0,1],[1,3,2,1],[1,3,2,2],[1,3,2,0]],[[1,1,0,1],[1,3,2,1],[1,3,2,2],[1,2,3,0]],[[1,1,0,1],[1,4,2,1],[1,3,3,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,4,3,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,0],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,0],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,0],[1,2,3,1]],[[1,1,0,1],[1,4,2,1],[1,3,3,1],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[1,4,3,1],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,4,1],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,1],[1,1,3,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,1],[1,1,2,2]],[[1,1,0,1],[1,4,2,1],[1,3,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,2,1],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,2,1],[1,3,4,1],[1,2,1,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,1],[2,2,1,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,1],[1,3,1,1]],[[1,1,0,1],[1,3,2,1],[1,3,4,2],[1,0,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,3],[1,0,2,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,2],[1,0,2,2]],[[1,1,0,1],[1,4,2,1],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,2,1],[1,4,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,2,1],[1,3,4,2],[1,1,1,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,3],[1,1,1,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,2],[1,1,1,2]],[[1,1,0,1],[1,4,2,1],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,2,1],[1,4,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,2,1],[1,3,4,2],[1,1,2,0]],[[1,1,0,1],[1,3,2,1],[1,3,3,3],[1,1,2,0]],[[1,1,0,1],[1,3,2,1],[1,3,3,2],[1,1,3,0]],[[1,1,0,1],[1,4,2,1],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,2,1],[1,4,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,2,1],[1,3,4,2],[1,2,0,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,3],[1,2,0,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,2],[2,2,0,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,2],[1,3,0,1]],[[1,1,0,1],[1,3,2,1],[1,3,3,2],[1,2,0,2]],[[1,1,0,1],[1,4,2,1],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,2,1],[1,4,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,2,1],[1,3,4,2],[1,2,1,0]],[[1,1,0,1],[1,3,2,1],[1,3,3,3],[1,2,1,0]],[[1,1,0,1],[1,3,2,1],[1,3,3,2],[2,2,1,0]],[[1,1,0,1],[1,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,1,0,1],[1,3,2,1],[3,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,1,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,1,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,1,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[2,1,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,1],[2,1,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,2,1],[3,1,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,1,4,1],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,1,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,1,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[2,1,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,2,1],[2,1,3,1],[1,2,2,2]],[[1,1,0,1],[1,3,2,1],[2,1,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,1],[2,1,3,3],[1,2,1,1]],[[1,1,0,1],[1,3,2,1],[2,1,3,2],[1,2,1,2]],[[1,1,0,1],[1,3,2,1],[3,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,1,4,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,1,3,3],[1,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,1,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,1,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,2,1],[2,1,3,2],[1,2,3,0]],[[1,1,0,1],[1,3,2,1],[3,2,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,1,3],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,1,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,1,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,1,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,1],[2,2,1,2],[1,2,2,2]],[[1,1,0,1],[1,3,2,1],[3,2,2,1],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,2,1],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,2,1],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,2,1],[1,2,3,1]],[[1,1,0,1],[1,3,2,1],[2,2,2,1],[1,2,2,2]],[[1,1,0,1],[1,3,2,1],[2,2,2,3],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,2,2],[0,3,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,2,2],[0,2,3,1]],[[1,1,0,1],[1,3,2,1],[2,2,2,2],[0,2,2,2]],[[1,1,0,1],[1,3,2,1],[3,2,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,2,2,2],[2,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,2,2,2],[1,3,2,0]],[[1,1,0,1],[1,3,2,1],[2,2,2,2],[1,2,3,0]],[[1,1,0,1],[1,3,2,1],[3,2,3,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,0],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,0],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,0],[1,2,3,1]],[[1,1,0,1],[1,3,2,1],[2,2,4,1],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,1],[0,3,2,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,1],[0,2,3,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,1],[0,2,2,2]],[[1,1,0,1],[1,3,2,1],[3,2,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,1],[2,2,1,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,1],[1,3,1,1]],[[1,1,0,1],[1,3,2,1],[2,2,4,2],[0,2,1,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,3],[0,2,1,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,2],[0,2,1,2]],[[1,1,0,1],[1,3,2,1],[2,2,4,2],[0,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,2,3,3],[0,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,2,3,2],[0,3,2,0]],[[1,1,0,1],[1,3,2,1],[2,2,3,2],[0,2,3,0]],[[1,1,0,1],[1,3,2,1],[3,2,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,2],[2,2,0,1]],[[1,1,0,1],[1,3,2,1],[2,2,3,2],[1,3,0,1]],[[1,1,0,1],[1,3,2,1],[3,2,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,2,1],[2,2,3,2],[2,2,1,0]],[[1,1,0,1],[1,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,3,0,2],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[0,3,0,2],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[0,3,0,2],[1,3,4,2],[1,1,2,0]],[[1,2,1,1],[0,3,0,2],[1,4,3,2],[1,1,2,0]],[[1,2,1,1],[0,3,0,3],[1,3,3,2],[1,1,2,0]],[[1,2,1,1],[0,4,0,2],[1,3,3,2],[1,1,2,0]],[[1,2,1,2],[0,3,0,2],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,2,1],[3,3,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,0,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,0,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,1],[3,3,1,1],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,1,1],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,1,1],[1,3,2,1]],[[1,1,0,1],[1,4,2,1],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[3,3,1,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,4,1,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,1,3],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,1,2],[0,3,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,1,2],[0,2,3,1]],[[1,1,0,1],[1,3,2,1],[2,3,1,2],[0,2,2,2]],[[1,1,0,1],[1,4,2,1],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[3,3,1,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[2,4,1,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,1,2],[2,1,2,1]],[[1,1,0,1],[1,3,2,1],[3,3,1,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,1,2],[2,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,1,2],[1,3,2,0]],[[1,1,0,1],[1,3,2,1],[3,3,2,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,2,0],[2,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,2,0],[1,3,2,1]],[[1,1,0,1],[1,4,2,1],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[3,3,2,1],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,4,2,1],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,2,1],[0,3,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,2,1],[0,2,3,1]],[[1,1,0,1],[1,3,2,1],[2,3,2,1],[0,2,2,2]],[[1,1,0,1],[1,4,2,1],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[3,3,2,1],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[2,4,2,1],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,2,1],[2,1,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,2,3],[0,1,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,2,2],[0,1,3,1]],[[1,1,0,1],[1,3,2,1],[2,3,2,2],[0,1,2,2]],[[1,1,0,1],[1,4,2,1],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[1,3,2,1],[3,3,2,2],[0,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,4,2,2],[0,2,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,2,2],[0,3,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,2,2],[0,2,3,0]],[[1,1,0,1],[1,3,2,1],[2,3,2,3],[1,0,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,2,2],[1,0,3,1]],[[1,1,0,1],[1,3,2,1],[2,3,2,2],[1,0,2,2]],[[1,1,0,1],[1,4,2,1],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[1,3,2,1],[3,3,2,2],[1,1,2,0]],[[1,1,0,1],[1,3,2,1],[2,4,2,2],[1,1,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,3,1,1],[0,3,0,2],[1,3,3,2],[1,1,2,0]],[[2,2,1,1],[0,3,0,2],[1,3,3,2],[1,1,2,0]],[[1,2,1,1],[0,3,0,2],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[0,3,0,2],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[0,3,0,2],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[0,3,0,2],[1,4,3,2],[1,1,1,1]],[[1,2,1,1],[0,3,0,3],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[0,4,0,2],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[1,4,2,1],[2,3,3,0],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[3,3,3,0],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,4,3,0],[0,2,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,0],[0,3,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,0],[0,2,3,1]],[[1,1,0,1],[1,4,2,1],[2,3,3,0],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[3,3,3,0],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[2,4,3,0],[1,1,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,0],[2,1,2,1]],[[1,1,0,1],[1,4,2,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[1,3,2,1],[3,3,3,1],[0,1,2,1]],[[1,1,0,1],[1,3,2,1],[2,4,3,1],[0,1,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,4,1],[0,1,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,1],[0,1,3,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,1],[0,1,2,2]],[[1,1,0,1],[1,4,2,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[1,3,2,1],[3,3,3,1],[0,2,1,1]],[[1,1,0,1],[1,3,2,1],[2,4,3,1],[0,2,1,1]],[[1,1,0,1],[1,3,2,1],[2,3,4,1],[0,2,1,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,1],[0,3,1,1]],[[1,1,0,1],[1,4,2,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[1,3,2,1],[3,3,3,1],[1,0,2,1]],[[1,1,0,1],[1,3,2,1],[2,4,3,1],[1,0,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,4,1],[1,0,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,1],[2,0,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,1],[1,0,3,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,1],[1,0,2,2]],[[1,1,0,1],[1,4,2,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,2,1],[3,3,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,2,1],[2,4,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,2,1],[2,3,4,1],[1,1,1,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,1],[2,1,1,1]],[[1,1,0,1],[1,4,2,1],[2,3,3,1],[1,2,0,1]],[[1,1,0,1],[1,3,2,1],[3,3,3,1],[1,2,0,1]],[[1,1,0,1],[1,3,2,1],[2,4,3,1],[1,2,0,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,2],[0,3,0,2],[1,3,3,2],[1,1,1,1]],[[1,3,1,1],[0,3,0,2],[1,3,3,2],[1,1,1,1]],[[2,2,1,1],[0,3,0,2],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[0,3,0,2],[1,3,3,2],[1,0,2,2]],[[1,2,1,1],[0,3,0,2],[1,3,3,3],[1,0,2,1]],[[1,2,1,1],[0,3,0,2],[1,3,4,2],[1,0,2,1]],[[1,2,1,1],[0,3,0,3],[1,3,3,2],[1,0,2,1]],[[1,2,1,2],[0,3,0,2],[1,3,3,2],[1,0,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,4,2],[0,0,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,3],[0,0,2,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[0,0,2,2]],[[1,1,0,1],[1,4,2,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,2,1],[3,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,2,1],[2,4,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,2,1],[2,3,4,2],[0,1,1,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,3],[0,1,1,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[0,1,1,2]],[[1,1,0,1],[1,4,2,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,2,1],[3,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,2,1],[2,4,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,4,2],[0,1,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,3,3],[0,1,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[0,1,3,0]],[[1,1,0,1],[1,4,2,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,2,1],[3,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,2,1],[2,4,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,2,1],[2,3,4,2],[0,2,0,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,3],[0,2,0,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[0,3,0,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[0,2,0,2]],[[1,1,0,1],[1,4,2,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,2,1],[3,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,2,1],[2,4,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,2,1],[2,3,4,2],[0,2,1,0]],[[1,1,0,1],[1,3,2,1],[2,3,3,3],[0,2,1,0]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,1,0,1],[1,4,2,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,2,1],[3,3,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,2,1],[2,4,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,2,1],[2,3,4,2],[1,0,1,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,3],[1,0,1,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[2,0,1,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[1,0,1,2]],[[1,1,0,1],[1,4,2,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,2,1],[3,3,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,2,1],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,4,2],[1,0,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,3,3],[1,0,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[2,0,2,0]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[1,0,3,0]],[[1,1,0,1],[1,4,2,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,3,2,1],[3,3,3,2],[1,1,0,1]],[[1,1,0,1],[1,3,2,1],[2,4,3,2],[1,1,0,1]],[[1,1,0,1],[1,3,2,1],[2,3,4,2],[1,1,0,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,3],[1,1,0,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[2,1,0,1]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[1,1,0,2]],[[1,1,0,1],[1,4,2,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[1,3,2,1],[3,3,3,2],[1,1,1,0]],[[1,1,0,1],[1,3,2,1],[2,4,3,2],[1,1,1,0]],[[1,1,0,1],[1,3,2,1],[2,3,4,2],[1,1,1,0]],[[1,1,0,1],[1,3,2,1],[2,3,3,3],[1,1,1,0]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,3,0,2],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[0,3,0,2],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[0,3,0,2],[1,3,4,1],[1,2,1,1]],[[1,2,1,1],[0,3,0,2],[1,4,3,1],[1,2,1,1]],[[1,2,1,1],[0,4,0,2],[1,3,3,1],[1,2,1,1]],[[1,3,1,1],[0,3,0,2],[1,3,3,1],[1,2,1,1]],[[2,2,1,1],[0,3,0,2],[1,3,3,1],[1,2,1,1]],[[1,1,0,1],[1,4,2,1],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[1,3,2,1],[3,3,3,2],[1,2,0,0]],[[1,1,0,1],[1,3,2,1],[2,4,3,2],[1,2,0,0]],[[1,1,0,1],[1,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,3,0,2],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[0,3,0,2],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[0,3,0,2],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[0,3,0,2],[1,4,3,1],[1,1,2,1]],[[1,2,1,1],[0,4,0,2],[1,3,3,1],[1,1,2,1]],[[1,3,1,1],[0,3,0,2],[1,3,3,1],[1,1,2,1]],[[2,2,1,1],[0,3,0,2],[1,3,3,1],[1,1,2,1]],[[1,2,1,1],[0,3,0,2],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[0,3,0,2],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[0,3,0,2],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[0,3,0,2],[1,4,2,2],[1,2,2,0]],[[1,2,1,1],[0,4,0,2],[1,3,2,2],[1,2,2,0]],[[1,3,1,1],[0,3,0,2],[1,3,2,2],[1,2,2,0]],[[2,2,1,1],[0,3,0,2],[1,3,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[0,3,4,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[0,3,3,0],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[0,3,3,0],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[0,3,3,0],[1,2,2,2]],[[1,1,0,1],[1,3,2,2],[0,3,4,1],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[0,3,3,1],[1,3,2,0]],[[1,1,0,1],[1,3,2,2],[0,3,3,1],[1,2,3,0]],[[1,2,1,1],[0,3,0,2],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[0,3,0,2],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[0,3,0,2],[1,3,2,3],[1,1,2,1]],[[1,2,1,1],[0,3,0,3],[1,3,2,2],[1,1,2,1]],[[1,2,1,2],[0,3,0,2],[1,3,2,2],[1,1,2,1]],[[1,2,1,1],[0,3,0,2],[1,3,2,1],[1,2,2,2]],[[1,1,0,1],[1,3,2,3],[1,0,3,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,0,3,3],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,0,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[1,0,3,2],[1,2,2,2]],[[1,1,0,2],[1,3,2,2],[1,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,3],[1,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,1,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,1,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,1,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[1,1,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[1,1,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,2,2],[1,1,4,1],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,1,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,1,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[1,1,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[1,1,3,1],[1,2,2,2]],[[1,1,0,2],[1,3,2,2],[1,1,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,3],[1,1,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,2],[1,1,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,2],[1,1,3,3],[1,2,1,1]],[[1,1,0,1],[1,3,2,2],[1,1,3,2],[1,2,1,2]],[[1,1,0,2],[1,3,2,2],[1,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,3],[1,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[1,1,4,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[1,1,3,3],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[1,1,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,2,2],[1,1,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,2,2],[1,1,3,2],[1,2,3,0]],[[1,1,0,2],[1,3,2,2],[1,2,2,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,3],[1,2,2,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[1,2,2,3],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[1,2,2,2],[1,1,3,1]],[[1,1,0,1],[1,3,2,2],[1,2,2,2],[1,1,2,2]],[[1,1,0,1],[1,3,2,2],[1,2,4,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,0],[2,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,0],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,0],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,0],[1,2,2,2]],[[1,1,0,1],[1,3,2,2],[1,2,4,1],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,1],[1,1,3,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,1],[1,1,2,2]],[[1,1,0,1],[1,3,2,2],[1,2,4,1],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[1,2,3,1],[2,2,2,0]],[[1,1,0,1],[1,3,2,2],[1,2,3,1],[1,3,2,0]],[[1,1,0,1],[1,3,2,2],[1,2,3,1],[1,2,3,0]],[[1,1,0,1],[1,3,2,3],[1,2,3,2],[1,0,2,1]],[[1,1,0,1],[1,3,2,2],[1,2,4,2],[1,0,2,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,3],[1,0,2,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,2],[1,0,2,2]],[[1,1,0,2],[1,3,2,2],[1,2,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,2,3],[1,2,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,2,2],[1,2,4,2],[1,1,1,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,3],[1,1,1,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,2],[1,1,1,2]],[[1,1,0,2],[1,3,2,2],[1,2,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,2,3],[1,2,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,2,2],[1,2,4,2],[1,1,2,0]],[[1,1,0,1],[1,3,2,2],[1,2,3,3],[1,1,2,0]],[[1,1,0,1],[1,3,2,2],[1,2,3,2],[1,1,3,0]],[[1,1,0,2],[1,3,2,2],[1,2,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,2,3],[1,2,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,2,2],[1,2,4,2],[1,2,0,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,3],[1,2,0,1]],[[1,1,0,1],[1,3,2,2],[1,2,3,2],[1,2,0,2]],[[1,1,0,2],[1,3,2,2],[1,2,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,2,3],[1,2,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,2,2],[1,2,4,2],[1,2,1,0]],[[1,1,0,1],[1,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,1,1],[0,3,0,2],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[0,3,0,2],[1,3,2,1],[1,3,2,1]],[[1,2,1,1],[0,3,0,2],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[0,3,0,2],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[0,4,0,2],[1,3,2,1],[1,2,2,1]],[[1,3,1,1],[0,3,0,2],[1,3,2,1],[1,2,2,1]],[[2,2,1,1],[0,3,0,2],[1,3,2,1],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[1,3,1,2],[1,2,2,2]],[[1,1,0,2],[1,3,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[1,4,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,3],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,4,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,3,0,3],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,3,0,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,3,0,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[1,3,0,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[1,3,0,2],[1,2,2,2]],[[1,1,0,1],[1,4,2,2],[1,3,2,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,4,2,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,3,2,0],[2,2,2,1]],[[1,1,0,1],[1,3,2,2],[1,3,2,0],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[1,3,2,0],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[1,3,2,0],[1,2,2,2]],[[1,1,0,1],[1,4,2,2],[1,3,2,1],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[1,4,2,1],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[1,3,2,1],[2,2,2,0]],[[1,1,0,1],[1,3,2,2],[1,3,2,1],[1,3,2,0]],[[1,1,0,1],[1,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,1,1],[0,3,0,2],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[0,3,0,2],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[0,3,0,2],[1,3,1,2],[2,2,2,1]],[[1,2,1,1],[0,3,0,2],[1,3,1,3],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[1,4,1,2],[1,2,2,1]],[[1,2,1,1],[0,3,0,3],[1,3,1,2],[1,2,2,1]],[[1,2,1,1],[0,4,0,2],[1,3,1,2],[1,2,2,1]],[[1,2,1,2],[0,3,0,2],[1,3,1,2],[1,2,2,1]],[[1,3,1,1],[0,3,0,2],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[1,4,2,2],[1,3,3,0],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[1,4,3,0],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[1,3,4,0],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[1,3,3,0],[1,1,3,1]],[[1,1,0,1],[1,3,2,2],[1,3,3,0],[1,1,2,2]],[[1,1,0,1],[1,4,2,2],[1,3,3,0],[1,2,1,1]],[[1,1,0,1],[1,3,2,2],[1,4,3,0],[1,2,1,1]],[[1,1,0,1],[1,3,2,2],[1,3,4,0],[1,2,1,1]],[[1,1,0,1],[1,3,2,2],[1,3,3,0],[2,2,1,1]],[[1,1,0,1],[1,3,2,2],[1,3,3,0],[1,3,1,1]],[[1,1,0,1],[1,4,2,2],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,2,2],[1,4,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,2,2],[1,3,4,1],[1,1,1,1]],[[1,1,0,1],[1,4,2,2],[1,3,3,1],[1,1,2,0]],[[1,1,0,1],[1,3,2,2],[1,4,3,1],[1,1,2,0]],[[1,1,0,1],[1,3,2,2],[1,3,4,1],[1,1,2,0]],[[1,1,0,1],[1,3,2,2],[1,3,3,1],[1,1,3,0]],[[1,1,0,1],[1,4,2,2],[1,3,3,1],[1,2,0,1]],[[1,1,0,1],[1,3,2,2],[1,4,3,1],[1,2,0,1]],[[1,1,0,1],[1,3,2,2],[1,3,4,1],[1,2,0,1]],[[1,1,0,1],[1,3,2,2],[1,3,3,1],[2,2,0,1]],[[1,1,0,1],[1,3,2,2],[1,3,3,1],[1,3,0,1]],[[1,1,0,1],[1,4,2,2],[1,3,3,1],[1,2,1,0]],[[1,1,0,1],[1,3,2,2],[1,4,3,1],[1,2,1,0]],[[1,1,0,1],[1,3,2,2],[1,3,4,1],[1,2,1,0]],[[1,1,0,1],[1,3,2,2],[1,3,3,1],[2,2,1,0]],[[1,1,0,1],[1,3,2,2],[1,3,3,1],[1,3,1,0]],[[2,2,1,1],[0,3,0,2],[1,3,1,2],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,0,2],[1,2,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,0,2],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[0,3,0,2],[1,2,3,3],[1,2,2,0]],[[1,2,1,1],[0,3,0,2],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[0,3,0,3],[1,2,3,2],[1,2,2,0]],[[1,2,1,2],[0,3,0,2],[1,2,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,0,2],[1,2,3,2],[1,2,1,2]],[[1,2,1,1],[0,3,0,2],[1,2,3,3],[1,2,1,1]],[[1,2,1,1],[0,3,0,2],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[0,3,0,3],[1,2,3,2],[1,2,1,1]],[[1,2,1,2],[0,3,0,2],[1,2,3,2],[1,2,1,1]],[[1,2,1,1],[0,3,0,2],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[0,3,0,2],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[0,3,0,2],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[0,3,0,2],[1,2,3,1],[2,2,2,1]],[[1,2,1,1],[0,3,0,2],[1,2,4,1],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[0,3,0,2],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[0,3,0,2],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[0,3,0,2],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[0,3,0,2],[1,2,2,3],[1,2,2,1]],[[1,2,1,1],[0,3,0,3],[1,2,2,2],[1,2,2,1]],[[1,2,1,2],[0,3,0,2],[1,2,2,2],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[0,3,3,2],[1,2,3,0]],[[1,2,1,1],[0,3,0,2],[0,3,3,2],[1,3,2,0]],[[1,2,1,1],[0,3,0,2],[0,3,3,3],[1,2,2,0]],[[1,1,0,2],[1,3,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,3],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[3,0,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,0,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,0,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,0,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[2,0,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[2,0,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,2,2],[3,0,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,0,4,1],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,0,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,0,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[2,0,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[2,0,3,1],[1,2,2,2]],[[1,1,0,1],[1,3,2,3],[2,0,3,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,0,3,3],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,0,3,2],[0,2,3,1]],[[1,1,0,1],[1,3,2,2],[2,0,3,2],[0,2,2,2]],[[1,1,0,2],[1,3,2,2],[2,0,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,3],[2,0,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,2],[2,0,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,2,2],[2,0,3,3],[1,2,1,1]],[[1,1,0,1],[1,3,2,2],[2,0,3,2],[1,2,1,2]],[[1,1,0,2],[1,3,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,3],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[3,0,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,0,4,2],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,0,3,3],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,0,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,0,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,2,2],[2,0,3,2],[1,2,3,0]],[[1,1,0,2],[1,3,2,2],[2,1,2,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,3],[2,1,2,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,1,2,3],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,1,2,2],[0,3,2,1]],[[1,1,0,1],[1,3,2,2],[2,1,2,2],[0,2,3,1]],[[1,1,0,1],[1,3,2,2],[2,1,2,2],[0,2,2,2]],[[1,1,0,1],[1,3,2,2],[3,1,3,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,1,4,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,1,3,0],[2,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,1,3,0],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[2,1,3,0],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[2,1,3,0],[1,2,2,2]],[[1,1,0,1],[1,3,2,2],[2,1,4,1],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,1,3,1],[0,3,2,1]],[[1,1,0,1],[1,3,2,2],[2,1,3,1],[0,2,3,1]],[[1,1,0,1],[1,3,2,2],[2,1,3,1],[0,2,2,2]],[[1,1,0,1],[1,3,2,2],[3,1,3,1],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,1,4,1],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,1,3,1],[2,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,1,3,1],[1,3,2,0]],[[1,1,0,1],[1,3,2,2],[2,1,3,1],[1,2,3,0]],[[1,1,0,2],[1,3,2,2],[2,1,3,2],[0,2,1,1]],[[1,1,0,1],[1,3,2,3],[2,1,3,2],[0,2,1,1]],[[1,1,0,1],[1,3,2,2],[2,1,4,2],[0,2,1,1]],[[1,1,0,1],[1,3,2,2],[2,1,3,3],[0,2,1,1]],[[1,1,0,1],[1,3,2,2],[2,1,3,2],[0,2,1,2]],[[1,1,0,2],[1,3,2,2],[2,1,3,2],[0,2,2,0]],[[1,1,0,1],[1,3,2,3],[2,1,3,2],[0,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,1,4,2],[0,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,1,3,3],[0,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,1,3,2],[0,3,2,0]],[[1,1,0,1],[1,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,1,1],[0,3,0,2],[0,3,4,2],[1,2,2,0]],[[1,2,1,1],[0,3,0,3],[0,3,3,2],[1,2,2,0]],[[1,2,1,2],[0,3,0,2],[0,3,3,2],[1,2,2,0]],[[1,2,1,1],[0,3,0,2],[0,3,3,2],[1,2,1,2]],[[1,2,1,1],[0,3,0,2],[0,3,3,3],[1,2,1,1]],[[1,2,1,1],[0,3,0,2],[0,3,4,2],[1,2,1,1]],[[1,2,1,1],[0,3,0,3],[0,3,3,2],[1,2,1,1]],[[1,2,1,2],[0,3,0,2],[0,3,3,2],[1,2,1,1]],[[1,2,1,1],[0,3,0,2],[0,3,3,1],[1,2,2,2]],[[1,1,0,2],[1,3,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,3],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[3,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,0,3],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,0,2],[2,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,0,2],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,0,2],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[2,2,0,2],[1,2,2,2]],[[1,1,0,1],[1,3,2,2],[3,2,2,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,2,0],[2,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,2,0],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,2,0],[1,2,3,1]],[[1,1,0,1],[1,3,2,2],[2,2,2,0],[1,2,2,2]],[[1,1,0,1],[1,3,2,2],[3,2,2,1],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,2,2,1],[2,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,2,2,1],[1,3,2,0]],[[1,1,0,1],[1,3,2,2],[2,2,2,1],[1,2,3,0]],[[1,1,0,2],[1,3,2,2],[2,2,2,2],[0,1,2,1]],[[1,1,0,1],[1,3,2,3],[2,2,2,2],[0,1,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,2,3],[0,1,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,2,2],[0,1,3,1]],[[1,1,0,1],[1,3,2,2],[2,2,2,2],[0,1,2,2]],[[1,1,0,2],[1,3,2,2],[2,2,2,2],[1,0,2,1]],[[1,1,0,1],[1,3,2,3],[2,2,2,2],[1,0,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,2,3],[1,0,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,2,2],[1,0,3,1]],[[1,1,0,1],[1,3,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,1,1],[0,3,0,2],[0,3,3,1],[1,2,3,1]],[[1,2,1,1],[0,3,0,2],[0,3,3,1],[1,3,2,1]],[[1,2,1,1],[0,3,0,2],[0,3,4,1],[1,2,2,1]],[[1,2,1,1],[0,3,0,2],[0,3,2,2],[1,2,2,2]],[[1,2,1,1],[0,3,0,2],[0,3,2,2],[1,2,3,1]],[[1,2,1,1],[0,3,0,2],[0,3,2,2],[1,3,2,1]],[[1,2,1,1],[0,3,0,2],[0,3,2,3],[1,2,2,1]],[[1,2,1,1],[0,3,0,3],[0,3,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,4,0],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,0],[0,3,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,0],[0,2,3,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,0],[0,2,2,2]],[[1,1,0,1],[1,3,2,2],[3,2,3,0],[1,2,1,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,0],[2,2,1,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,0],[1,3,1,1]],[[1,1,0,1],[1,3,2,2],[2,2,4,1],[0,1,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,1],[0,1,3,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,1],[0,1,2,2]],[[1,1,0,1],[1,3,2,2],[2,2,4,1],[0,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,2,3,1],[0,3,2,0]],[[1,1,0,1],[1,3,2,2],[2,2,3,1],[0,2,3,0]],[[1,1,0,1],[1,3,2,2],[2,2,4,1],[1,0,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,1],[1,0,3,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,1],[1,0,2,2]],[[1,1,0,1],[1,3,2,2],[3,2,3,1],[1,2,0,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,1],[2,2,0,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,1],[1,3,0,1]],[[1,1,0,1],[1,3,2,2],[3,2,3,1],[1,2,1,0]],[[1,1,0,1],[1,3,2,2],[2,2,3,1],[2,2,1,0]],[[1,1,0,1],[1,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,2],[0,3,0,2],[0,3,2,2],[1,2,2,1]],[[1,1,0,2],[1,3,2,2],[2,2,3,2],[0,0,2,1]],[[1,1,0,1],[1,3,2,3],[2,2,3,2],[0,0,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,4,2],[0,0,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,3],[0,0,2,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,2],[0,0,2,2]],[[1,1,0,2],[1,3,2,2],[2,2,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,2,3],[2,2,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,2,2],[2,2,4,2],[0,1,1,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,3],[0,1,1,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,2],[0,1,1,2]],[[1,1,0,2],[1,3,2,2],[2,2,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,2,3],[2,2,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,2,2],[2,2,4,2],[0,1,2,0]],[[1,1,0,1],[1,3,2,2],[2,2,3,3],[0,1,2,0]],[[1,1,0,1],[1,3,2,2],[2,2,3,2],[0,1,3,0]],[[1,1,0,2],[1,3,2,2],[2,2,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,2,3],[2,2,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,2,2],[2,2,4,2],[0,2,0,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,3],[0,2,0,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,2],[0,2,0,2]],[[1,1,0,2],[1,3,2,2],[2,2,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,2,3],[2,2,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,2,2],[2,2,4,2],[0,2,1,0]],[[1,1,0,1],[1,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,1,0,2],[1,3,2,2],[2,2,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,2,3],[2,2,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,2,2],[2,2,4,2],[1,0,1,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,3],[1,0,1,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,2],[1,0,1,2]],[[1,1,0,2],[1,3,2,2],[2,2,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,2,3],[2,2,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,2,2],[2,2,4,2],[1,0,2,0]],[[1,1,0,1],[1,3,2,2],[2,2,3,3],[1,0,2,0]],[[1,1,0,1],[1,3,2,2],[2,2,3,2],[1,0,3,0]],[[1,1,0,2],[1,3,2,2],[2,2,3,2],[1,1,0,1]],[[1,1,0,1],[1,3,2,3],[2,2,3,2],[1,1,0,1]],[[1,1,0,1],[1,3,2,2],[2,2,4,2],[1,1,0,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,3],[1,1,0,1]],[[1,1,0,1],[1,3,2,2],[2,2,3,2],[1,1,0,2]],[[1,1,0,2],[1,3,2,2],[2,2,3,2],[1,1,1,0]],[[1,1,0,1],[1,3,2,3],[2,2,3,2],[1,1,1,0]],[[1,1,0,1],[1,3,2,2],[2,2,4,2],[1,1,1,0]],[[1,1,0,1],[1,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,1,0,2],[1,3,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[1,4,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,3],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[3,3,0,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,4,0,2],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,0,3],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,0,2],[0,3,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,0,2],[0,2,3,1]],[[1,1,0,1],[1,3,2,2],[2,3,0,2],[0,2,2,2]],[[1,1,0,1],[1,4,2,2],[2,3,0,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[3,3,0,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[2,4,0,2],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,0,2],[2,1,2,1]],[[1,1,0,1],[1,3,2,2],[3,3,1,0],[1,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,1,0],[2,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,1,0],[1,3,2,1]],[[1,1,0,1],[1,3,2,2],[3,3,1,1],[1,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,1,1],[2,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,1,1],[0,2,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,1,1],[0,2,3,3],[2,3,3,2],[0,0,0,1]],[[1,2,1,1],[0,2,4,2],[2,3,3,2],[0,0,0,1]],[[1,2,1,2],[0,2,3,2],[2,3,3,2],[0,0,0,1]],[[1,1,0,1],[1,4,2,2],[2,3,2,0],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[3,3,2,0],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,4,2,0],[0,2,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,2,0],[0,3,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,2,0],[0,2,3,1]],[[1,1,0,1],[1,3,2,2],[2,3,2,0],[0,2,2,2]],[[1,1,0,1],[1,4,2,2],[2,3,2,0],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[3,3,2,0],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[2,4,2,0],[1,1,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,2,0],[2,1,2,1]],[[1,1,0,1],[1,4,2,2],[2,3,2,1],[0,2,2,0]],[[1,1,0,1],[1,3,2,2],[3,3,2,1],[0,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,4,2,1],[0,2,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,2,1],[0,3,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,2,1],[0,2,3,0]],[[1,1,0,1],[1,4,2,2],[2,3,2,1],[1,1,2,0]],[[1,1,0,1],[1,3,2,2],[3,3,2,1],[1,1,2,0]],[[1,1,0,1],[1,3,2,2],[2,4,2,1],[1,1,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[0,2,3,3],[2,3,3,1],[1,1,0,0]],[[1,2,1,1],[0,2,4,2],[2,3,3,1],[1,1,0,0]],[[1,2,1,2],[0,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,0,1],[1,4,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[1,3,2,2],[3,3,3,0],[0,1,2,1]],[[1,1,0,1],[1,3,2,2],[2,4,3,0],[0,1,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,4,0],[0,1,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,0],[0,1,3,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,0],[0,1,2,2]],[[1,1,0,1],[1,4,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[1,3,2,2],[3,3,3,0],[0,2,1,1]],[[1,1,0,1],[1,3,2,2],[2,4,3,0],[0,2,1,1]],[[1,1,0,1],[1,3,2,2],[2,3,4,0],[0,2,1,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,0],[0,3,1,1]],[[1,1,0,1],[1,4,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[1,3,2,2],[3,3,3,0],[1,0,2,1]],[[1,1,0,1],[1,3,2,2],[2,4,3,0],[1,0,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,4,0],[1,0,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,0],[2,0,2,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,0],[1,0,3,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,0],[1,0,2,2]],[[1,1,0,1],[1,4,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[1,3,2,2],[3,3,3,0],[1,1,1,1]],[[1,1,0,1],[1,3,2,2],[2,4,3,0],[1,1,1,1]],[[1,1,0,1],[1,3,2,2],[2,3,4,0],[1,1,1,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,0],[2,1,1,1]],[[1,1,0,1],[1,4,2,2],[2,3,3,0],[1,2,0,1]],[[1,1,0,1],[1,3,2,2],[3,3,3,0],[1,2,0,1]],[[1,1,0,1],[1,3,2,2],[2,4,3,0],[1,2,0,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[0,2,3,3],[2,3,3,1],[0,2,0,0]],[[1,2,1,1],[0,2,4,2],[2,3,3,1],[0,2,0,0]],[[1,2,1,2],[0,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,0,1],[1,4,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,1],[1,3,2,2],[3,3,3,1],[0,1,1,1]],[[1,1,0,1],[1,3,2,2],[2,4,3,1],[0,1,1,1]],[[1,1,0,1],[1,3,2,2],[2,3,4,1],[0,1,1,1]],[[1,1,0,1],[1,4,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[1,3,2,2],[3,3,3,1],[0,1,2,0]],[[1,1,0,1],[1,3,2,2],[2,4,3,1],[0,1,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,4,1],[0,1,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,3,1],[0,1,3,0]],[[1,1,0,1],[1,4,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[1,3,2,2],[3,3,3,1],[0,2,0,1]],[[1,1,0,1],[1,3,2,2],[2,4,3,1],[0,2,0,1]],[[1,1,0,1],[1,3,2,2],[2,3,4,1],[0,2,0,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,1],[0,3,0,1]],[[1,1,0,1],[1,4,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[1,3,2,2],[3,3,3,1],[0,2,1,0]],[[1,1,0,1],[1,3,2,2],[2,4,3,1],[0,2,1,0]],[[1,1,0,1],[1,3,2,2],[2,3,4,1],[0,2,1,0]],[[1,1,0,1],[1,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,1,0,1],[1,4,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[1,3,2,2],[3,3,3,1],[1,0,1,1]],[[1,1,0,1],[1,3,2,2],[2,4,3,1],[1,0,1,1]],[[1,1,0,1],[1,3,2,2],[2,3,4,1],[1,0,1,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,1],[2,0,1,1]],[[1,1,0,1],[1,4,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[1,3,2,2],[3,3,3,1],[1,0,2,0]],[[1,1,0,1],[1,3,2,2],[2,4,3,1],[1,0,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,4,1],[1,0,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,3,1],[2,0,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,3,1],[1,0,3,0]],[[1,1,0,1],[1,4,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[1,3,2,2],[3,3,3,1],[1,1,0,1]],[[1,1,0,1],[1,3,2,2],[2,4,3,1],[1,1,0,1]],[[1,1,0,1],[1,3,2,2],[2,3,4,1],[1,1,0,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,1],[2,1,0,1]],[[1,1,0,1],[1,4,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[1,3,2,2],[3,3,3,1],[1,1,1,0]],[[1,1,0,1],[1,3,2,2],[2,4,3,1],[1,1,1,0]],[[1,1,0,1],[1,3,2,2],[2,3,4,1],[1,1,1,0]],[[1,1,0,1],[1,3,2,2],[2,3,3,1],[2,1,1,0]],[[1,1,0,1],[1,4,2,2],[2,3,3,1],[1,2,0,0]],[[1,1,0,1],[1,3,2,2],[3,3,3,1],[1,2,0,0]],[[1,1,0,1],[1,3,2,2],[2,4,3,1],[1,2,0,0]],[[1,1,0,1],[1,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[0,2,3,2],[2,3,4,1],[0,0,2,0]],[[1,2,1,1],[0,2,3,3],[2,3,3,1],[0,0,2,0]],[[1,2,1,1],[0,2,4,2],[2,3,3,1],[0,0,2,0]],[[1,2,1,2],[0,2,3,2],[2,3,3,1],[0,0,2,0]],[[1,2,1,1],[0,2,3,2],[2,3,4,1],[0,0,1,1]],[[1,2,1,1],[0,2,3,3],[2,3,3,1],[0,0,1,1]],[[1,2,1,1],[0,2,4,2],[2,3,3,1],[0,0,1,1]],[[1,2,1,2],[0,2,3,2],[2,3,3,1],[0,0,1,1]],[[1,1,0,2],[1,3,2,2],[2,3,3,2],[0,0,1,1]],[[1,1,0,1],[1,3,2,3],[2,3,3,2],[0,0,1,1]],[[1,1,0,1],[1,3,2,2],[2,3,4,2],[0,0,1,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,3],[0,0,1,1]],[[1,1,0,1],[1,3,2,2],[2,3,3,2],[0,0,1,2]],[[1,1,0,2],[1,3,2,2],[2,3,3,2],[0,0,2,0]],[[1,1,0,1],[1,3,2,3],[2,3,3,2],[0,0,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,4,2],[0,0,2,0]],[[1,1,0,1],[1,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,1,1],[0,2,3,2],[2,3,4,0],[0,0,2,1]],[[1,2,1,1],[0,2,3,3],[2,3,3,0],[0,0,2,1]],[[1,2,1,1],[0,2,4,2],[2,3,3,0],[0,0,2,1]],[[1,2,1,2],[0,2,3,2],[2,3,3,0],[0,0,2,1]],[[1,2,1,1],[0,2,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,1,1],[0,2,3,3],[2,3,2,2],[0,0,2,0]],[[1,2,1,1],[0,2,4,2],[2,3,2,2],[0,0,2,0]],[[1,2,1,2],[0,2,3,2],[2,3,2,2],[0,0,2,0]],[[1,2,1,1],[0,2,3,2],[2,3,2,2],[0,0,1,2]],[[1,2,1,1],[0,2,3,2],[2,3,2,3],[0,0,1,1]],[[1,2,1,1],[0,2,3,3],[2,3,2,2],[0,0,1,1]],[[1,2,1,1],[0,2,4,2],[2,3,2,2],[0,0,1,1]],[[1,2,1,2],[0,2,3,2],[2,3,2,2],[0,0,1,1]],[[1,2,1,1],[0,2,3,3],[2,3,2,1],[1,2,0,0]],[[1,2,1,1],[0,2,4,2],[2,3,2,1],[1,2,0,0]],[[1,2,1,2],[0,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,2,1,1],[0,2,3,3],[2,3,2,1],[1,1,1,0]],[[1,2,1,1],[0,2,4,2],[2,3,2,1],[1,1,1,0]],[[1,2,1,2],[0,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,1,1],[0,2,3,3],[2,3,2,1],[1,1,0,1]],[[1,2,1,1],[0,2,4,2],[2,3,2,1],[1,1,0,1]],[[1,2,1,2],[0,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,2,1,1],[0,2,3,3],[2,3,2,1],[1,0,2,0]],[[1,2,1,1],[0,2,4,2],[2,3,2,1],[1,0,2,0]],[[1,2,1,2],[0,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,1,1],[0,2,3,3],[2,3,2,1],[1,0,1,1]],[[1,2,1,1],[0,2,4,2],[2,3,2,1],[1,0,1,1]],[[1,2,1,2],[0,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,2,1,1],[0,2,3,3],[2,3,2,1],[0,2,1,0]],[[1,1,0,1],[1,3,3,0],[1,1,4,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,0],[1,1,3,2],[2,2,2,1]],[[1,1,0,1],[1,3,3,0],[1,1,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,3,0],[1,1,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,0],[1,1,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,3,0],[1,2,4,2],[1,1,2,1]],[[1,1,0,1],[1,3,3,0],[1,2,3,2],[1,1,3,1]],[[1,1,0,1],[1,3,3,0],[1,2,3,2],[1,1,2,2]],[[1,2,1,1],[0,2,4,2],[2,3,2,1],[0,2,1,0]],[[1,2,1,2],[0,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,1,1],[0,2,3,3],[2,3,2,1],[0,2,0,1]],[[1,2,1,1],[0,2,4,2],[2,3,2,1],[0,2,0,1]],[[1,2,1,2],[0,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,0,1],[1,3,3,0],[3,0,3,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,0],[2,0,4,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,0],[2,0,3,2],[2,2,2,1]],[[1,1,0,1],[1,3,3,0],[2,0,3,2],[1,3,2,1]],[[1,1,0,1],[1,3,3,0],[2,0,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,0],[2,0,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,3,0],[2,1,4,2],[0,2,2,1]],[[1,1,0,1],[1,3,3,0],[2,1,3,2],[0,3,2,1]],[[1,1,0,1],[1,3,3,0],[2,1,3,2],[0,2,3,1]],[[1,1,0,1],[1,3,3,0],[2,1,3,2],[0,2,2,2]],[[1,1,0,1],[1,3,3,0],[2,2,4,2],[0,1,2,1]],[[1,1,0,1],[1,3,3,0],[2,2,3,2],[0,1,3,1]],[[1,1,0,1],[1,3,3,0],[2,2,3,2],[0,1,2,2]],[[1,1,0,1],[1,3,3,0],[2,2,4,2],[1,0,2,1]],[[1,1,0,1],[1,3,3,0],[2,2,3,2],[1,0,3,1]],[[1,1,0,1],[1,3,3,0],[2,2,3,2],[1,0,2,2]],[[1,2,1,1],[0,2,3,3],[2,3,2,1],[0,1,2,0]],[[1,2,1,1],[0,2,4,2],[2,3,2,1],[0,1,2,0]],[[1,2,1,2],[0,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,1,1],[0,2,3,3],[2,3,2,1],[0,1,1,1]],[[1,2,1,1],[0,2,4,2],[2,3,2,1],[0,1,1,1]],[[1,2,1,2],[0,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,2,1,1],[0,2,3,3],[2,3,2,0],[1,1,1,1]],[[1,2,1,1],[0,2,4,2],[2,3,2,0],[1,1,1,1]],[[1,2,1,2],[0,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,2,1,1],[0,2,3,3],[2,3,2,0],[1,0,2,1]],[[1,2,1,1],[0,2,4,2],[2,3,2,0],[1,0,2,1]],[[1,2,1,2],[0,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,2,1,1],[0,2,3,3],[2,3,2,0],[0,2,1,1]],[[1,2,1,1],[0,2,4,2],[2,3,2,0],[0,2,1,1]],[[1,2,1,2],[0,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,2,1,1],[0,2,3,3],[2,3,2,0],[0,1,2,1]],[[1,2,1,1],[0,2,4,2],[2,3,2,0],[0,1,2,1]],[[1,2,1,2],[0,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,2,1,1],[0,2,3,3],[2,3,1,2],[1,2,0,0]],[[1,1,0,1],[1,3,3,1],[1,0,3,3],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,0,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,1],[1,0,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,3,1],[1,1,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,1,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,1,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,3,1],[1,1,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,1],[1,1,2,2],[1,2,2,2]],[[1,1,0,1],[1,4,3,1],[1,1,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,4,1],[1,1,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,1,4,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,1,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,1,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,3,1],[1,1,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,3,1],[1,1,3,1],[1,2,2,2]],[[1,1,0,1],[1,4,3,1],[1,1,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,4,1],[1,1,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,1],[1,1,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,1],[1,1,3,3],[1,2,1,1]],[[1,1,0,1],[1,3,3,1],[1,1,3,2],[1,2,1,2]],[[1,1,0,1],[1,4,3,1],[1,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,4,1],[1,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,1],[1,1,4,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,1],[1,1,3,3],[1,2,2,0]],[[1,1,0,1],[1,3,3,1],[1,1,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,3,1],[1,1,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,3,1],[1,1,3,2],[1,2,3,0]],[[1,1,0,1],[1,3,3,1],[1,2,2,3],[1,1,2,1]],[[1,1,0,1],[1,3,3,1],[1,2,2,2],[1,1,3,1]],[[1,1,0,1],[1,3,3,1],[1,2,2,2],[1,1,2,2]],[[1,1,0,1],[1,4,3,1],[1,2,3,1],[1,1,2,1]],[[1,1,0,1],[1,3,4,1],[1,2,3,1],[1,1,2,1]],[[1,1,0,1],[1,3,3,1],[1,2,4,1],[1,1,2,1]],[[1,1,0,1],[1,3,3,1],[1,2,3,1],[1,1,3,1]],[[1,1,0,1],[1,3,3,1],[1,2,3,1],[1,1,2,2]],[[1,1,0,1],[1,4,3,1],[1,2,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,4,1],[1,2,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,3,1],[1,2,4,1],[1,2,1,1]],[[1,1,0,1],[1,3,3,1],[1,2,4,2],[1,0,2,1]],[[1,1,0,1],[1,3,3,1],[1,2,3,3],[1,0,2,1]],[[1,1,0,1],[1,3,3,1],[1,2,3,2],[1,0,2,2]],[[1,1,0,1],[1,4,3,1],[1,2,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,4,1],[1,2,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,1],[1,2,4,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,1],[1,2,3,3],[1,1,1,1]],[[1,1,0,1],[1,3,3,1],[1,2,3,2],[1,1,1,2]],[[1,1,0,1],[1,4,3,1],[1,2,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,4,1],[1,2,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,1],[1,2,4,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,1],[1,2,3,3],[1,1,2,0]],[[1,1,0,1],[1,3,3,1],[1,2,3,2],[1,1,3,0]],[[1,1,0,1],[1,4,3,1],[1,2,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,4,1],[1,2,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,1],[1,2,4,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,1],[1,2,3,3],[1,2,0,1]],[[1,1,0,1],[1,3,3,1],[1,2,3,2],[1,2,0,2]],[[1,1,0,1],[1,4,3,1],[1,2,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,4,1],[1,2,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,1],[1,2,4,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,1],[1,2,3,3],[1,2,1,0]],[[1,2,1,1],[0,2,4,2],[2,3,1,2],[1,2,0,0]],[[1,2,1,2],[0,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,0,1],[1,4,3,1],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,4,1],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,4,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,3,0,3],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,3,0,2],[2,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,3,0,2],[1,3,2,1]],[[1,1,0,1],[1,3,3,1],[1,3,0,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,1],[1,3,0,2],[1,2,2,2]],[[1,1,0,1],[1,4,3,1],[1,3,1,1],[1,2,2,1]],[[1,1,0,1],[1,3,4,1],[1,3,1,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,4,1,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,3,1,1],[2,2,2,1]],[[1,1,0,1],[1,3,3,1],[1,3,1,1],[1,3,2,1]],[[1,1,0,1],[1,3,3,1],[1,3,1,1],[1,2,3,1]],[[1,1,0,1],[1,3,3,1],[1,3,1,1],[1,2,2,2]],[[1,1,0,1],[1,4,3,1],[1,3,1,2],[1,2,2,0]],[[1,1,0,1],[1,3,4,1],[1,3,1,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,1],[1,4,1,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,1],[1,3,1,2],[2,2,2,0]],[[1,1,0,1],[1,3,3,1],[1,3,1,2],[1,3,2,0]],[[1,1,0,1],[1,3,3,1],[1,3,1,2],[1,2,3,0]],[[1,1,0,1],[1,4,3,1],[1,3,2,1],[1,1,2,1]],[[1,1,0,1],[1,3,4,1],[1,3,2,1],[1,1,2,1]],[[1,1,0,1],[1,3,3,1],[1,4,2,1],[1,1,2,1]],[[1,1,0,1],[1,4,3,1],[1,3,2,1],[1,2,1,1]],[[1,1,0,1],[1,3,4,1],[1,3,2,1],[1,2,1,1]],[[1,1,0,1],[1,3,3,1],[1,4,2,1],[1,2,1,1]],[[1,1,0,1],[1,3,3,1],[1,3,2,1],[2,2,1,1]],[[1,1,0,1],[1,3,3,1],[1,3,2,1],[1,3,1,1]],[[1,1,0,1],[1,4,3,1],[1,3,2,2],[1,1,1,1]],[[1,1,0,1],[1,3,4,1],[1,3,2,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,1],[1,4,2,2],[1,1,1,1]],[[1,1,0,1],[1,4,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[1,3,4,1],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,1],[1,4,2,2],[1,1,2,0]],[[1,1,0,1],[1,4,3,1],[1,3,2,2],[1,2,0,1]],[[1,1,0,1],[1,3,4,1],[1,3,2,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,1],[1,4,2,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,1],[1,3,2,2],[2,2,0,1]],[[1,1,0,1],[1,3,3,1],[1,3,2,2],[1,3,0,1]],[[1,1,0,1],[1,4,3,1],[1,3,2,2],[1,2,1,0]],[[1,1,0,1],[1,3,4,1],[1,3,2,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,1],[1,4,2,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,1],[1,3,2,2],[2,2,1,0]],[[1,1,0,1],[1,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,2],[2,3,1,3],[1,1,1,0]],[[1,2,1,1],[0,2,3,3],[2,3,1,2],[1,1,1,0]],[[1,2,1,1],[0,2,4,2],[2,3,1,2],[1,1,1,0]],[[1,2,1,2],[0,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,1,1],[0,2,3,2],[2,3,1,2],[1,1,0,2]],[[1,2,1,1],[0,2,3,2],[2,3,1,3],[1,1,0,1]],[[1,2,1,1],[0,2,3,3],[2,3,1,2],[1,1,0,1]],[[1,2,1,1],[0,2,4,2],[2,3,1,2],[1,1,0,1]],[[1,2,1,2],[0,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,2,1,1],[0,2,3,2],[2,3,1,3],[1,0,2,0]],[[1,2,1,1],[0,2,3,3],[2,3,1,2],[1,0,2,0]],[[1,2,1,1],[0,2,4,2],[2,3,1,2],[1,0,2,0]],[[1,2,1,2],[0,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,2,1,1],[0,2,3,2],[2,3,1,2],[1,0,1,2]],[[1,1,0,1],[1,4,3,1],[1,3,3,2],[1,2,0,0]],[[1,1,0,1],[1,3,4,1],[1,3,3,2],[1,2,0,0]],[[1,1,0,1],[1,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[0,2,3,2],[2,3,1,3],[1,0,1,1]],[[1,2,1,1],[0,2,3,3],[2,3,1,2],[1,0,1,1]],[[1,2,1,1],[0,2,4,2],[2,3,1,2],[1,0,1,1]],[[1,2,1,2],[0,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,2,1,1],[0,2,3,2],[2,3,1,3],[0,2,1,0]],[[1,2,1,1],[0,2,3,3],[2,3,1,2],[0,2,1,0]],[[1,2,1,1],[0,2,4,2],[2,3,1,2],[0,2,1,0]],[[1,2,1,2],[0,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,2,1,1],[0,2,3,2],[2,3,1,2],[0,2,0,2]],[[1,2,1,1],[0,2,3,2],[2,3,1,3],[0,2,0,1]],[[1,2,1,1],[0,2,3,3],[2,3,1,2],[0,2,0,1]],[[1,2,1,1],[0,2,4,2],[2,3,1,2],[0,2,0,1]],[[1,2,1,2],[0,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,1],[3,0,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,0,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,0,2,2],[2,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,0,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,3,1],[2,0,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,1],[2,0,2,2],[1,2,2,2]],[[1,1,0,1],[1,4,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,4,1],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[3,0,3,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,0,4,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,0,3,1],[2,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,0,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,3,1],[2,0,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,3,1],[2,0,3,1],[1,2,2,2]],[[1,1,0,1],[1,3,3,1],[2,0,3,3],[0,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,0,3,2],[0,2,3,1]],[[1,1,0,1],[1,3,3,1],[2,0,3,2],[0,2,2,2]],[[1,1,0,1],[1,4,3,1],[2,0,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,4,1],[2,0,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,1],[2,0,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,1],[2,0,3,3],[1,2,1,1]],[[1,1,0,1],[1,3,3,1],[2,0,3,2],[1,2,1,2]],[[1,1,0,1],[1,4,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,4,1],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,1],[3,0,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,0,4,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,0,3,3],[1,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,0,3,2],[2,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,0,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,3,1],[2,0,3,2],[1,2,3,0]],[[1,1,0,1],[1,3,3,1],[2,1,2,3],[0,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,1,2,2],[0,3,2,1]],[[1,1,0,1],[1,3,3,1],[2,1,2,2],[0,2,3,1]],[[1,1,0,1],[1,3,3,1],[2,1,2,2],[0,2,2,2]],[[1,1,0,1],[1,4,3,1],[2,1,3,1],[0,2,2,1]],[[1,1,0,1],[1,3,4,1],[2,1,3,1],[0,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,1,4,1],[0,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,1,3,1],[0,3,2,1]],[[1,1,0,1],[1,3,3,1],[2,1,3,1],[0,2,3,1]],[[1,1,0,1],[1,3,3,1],[2,1,3,1],[0,2,2,2]],[[1,1,0,1],[1,4,3,1],[2,1,3,2],[0,2,1,1]],[[1,1,0,1],[1,3,4,1],[2,1,3,2],[0,2,1,1]],[[1,1,0,1],[1,3,3,1],[2,1,4,2],[0,2,1,1]],[[1,1,0,1],[1,3,3,1],[2,1,3,3],[0,2,1,1]],[[1,1,0,1],[1,3,3,1],[2,1,3,2],[0,2,1,2]],[[1,1,0,1],[1,4,3,1],[2,1,3,2],[0,2,2,0]],[[1,1,0,1],[1,3,4,1],[2,1,3,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,1,4,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,1,3,3],[0,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,1,3,2],[0,3,2,0]],[[1,1,0,1],[1,3,3,1],[2,1,3,2],[0,2,3,0]],[[1,2,1,1],[0,2,3,2],[2,3,1,3],[0,1,2,0]],[[1,2,1,1],[0,2,3,3],[2,3,1,2],[0,1,2,0]],[[1,2,1,1],[0,2,4,2],[2,3,1,2],[0,1,2,0]],[[1,2,1,2],[0,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,1,1],[0,2,3,2],[2,3,1,2],[0,1,1,2]],[[1,2,1,1],[0,2,3,2],[2,3,1,3],[0,1,1,1]],[[1,1,0,1],[1,3,3,1],[3,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,0,3],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,0,2],[2,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,0,2],[1,3,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,0,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,1],[2,2,0,2],[1,2,2,2]],[[1,1,0,1],[1,3,3,1],[3,2,1,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,1,1],[2,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,1,1],[1,3,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,1,1],[1,2,3,1]],[[1,1,0,1],[1,3,3,1],[2,2,1,1],[1,2,2,2]],[[1,1,0,1],[1,3,3,1],[3,2,1,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,2,1,2],[2,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,2,1,2],[1,3,2,0]],[[1,1,0,1],[1,3,3,1],[2,2,1,2],[1,2,3,0]],[[1,1,0,1],[1,3,3,1],[3,2,2,1],[1,2,1,1]],[[1,1,0,1],[1,3,3,1],[2,2,2,1],[2,2,1,1]],[[1,1,0,1],[1,3,3,1],[2,2,2,1],[1,3,1,1]],[[1,1,0,1],[1,3,3,1],[2,2,2,3],[0,1,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,2,2],[0,1,3,1]],[[1,1,0,1],[1,3,3,1],[2,2,2,2],[0,1,2,2]],[[1,1,0,1],[1,3,3,1],[2,2,2,3],[1,0,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,2,2],[1,0,3,1]],[[1,1,0,1],[1,3,3,1],[2,2,2,2],[1,0,2,2]],[[1,1,0,1],[1,3,3,1],[3,2,2,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,1],[2,2,2,2],[2,2,0,1]],[[1,1,0,1],[1,3,3,1],[2,2,2,2],[1,3,0,1]],[[1,1,0,1],[1,3,3,1],[3,2,2,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,1],[2,2,2,2],[2,2,1,0]],[[1,1,0,1],[1,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,3],[2,3,1,2],[0,1,1,1]],[[1,2,1,1],[0,2,4,2],[2,3,1,2],[0,1,1,1]],[[1,2,1,2],[0,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,0,1],[1,4,3,1],[2,2,3,1],[0,1,2,1]],[[1,1,0,1],[1,3,4,1],[2,2,3,1],[0,1,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,4,1],[0,1,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,1],[0,1,3,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,1],[0,1,2,2]],[[1,1,0,1],[1,4,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[1,3,4,1],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[1,3,3,1],[2,2,4,1],[0,2,1,1]],[[1,1,0,1],[1,4,3,1],[2,2,3,1],[1,0,2,1]],[[1,1,0,1],[1,3,4,1],[2,2,3,1],[1,0,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,4,1],[1,0,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,1],[1,0,3,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,1],[1,0,2,2]],[[1,1,0,1],[1,4,3,1],[2,2,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,4,1],[2,2,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,3,1],[2,2,4,1],[1,1,1,1]],[[1,2,1,1],[0,2,3,3],[2,3,1,1],[1,1,2,0]],[[1,2,1,1],[0,2,4,2],[2,3,1,1],[1,1,2,0]],[[1,2,1,2],[0,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,0,1],[1,4,3,1],[2,2,3,2],[0,0,2,1]],[[1,1,0,1],[1,3,4,1],[2,2,3,2],[0,0,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,4,2],[0,0,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,3],[0,0,2,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,2],[0,0,2,2]],[[1,1,0,1],[1,4,3,1],[2,2,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,4,1],[2,2,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,1],[2,2,4,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,3],[0,1,1,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,2],[0,1,1,2]],[[1,1,0,1],[1,4,3,1],[2,2,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,4,1],[2,2,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,1],[2,2,4,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,1],[2,2,3,3],[0,1,2,0]],[[1,1,0,1],[1,3,3,1],[2,2,3,2],[0,1,3,0]],[[1,1,0,1],[1,4,3,1],[2,2,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,4,1],[2,2,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,1],[2,2,4,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,3],[0,2,0,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,2],[0,2,0,2]],[[1,1,0,1],[1,4,3,1],[2,2,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,4,1],[2,2,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,1],[2,2,4,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,1],[2,2,3,3],[0,2,1,0]],[[1,2,1,1],[0,2,3,3],[2,3,1,1],[0,2,2,0]],[[1,2,1,1],[0,2,4,2],[2,3,1,1],[0,2,2,0]],[[1,2,1,2],[0,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,0,1],[1,4,3,1],[2,2,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,4,1],[2,2,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,1],[2,2,4,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,3],[1,0,1,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,2],[1,0,1,2]],[[1,1,0,1],[1,4,3,1],[2,2,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,4,1],[2,2,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,1],[2,2,4,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,1],[2,2,3,3],[1,0,2,0]],[[1,1,0,1],[1,3,3,1],[2,2,3,2],[1,0,3,0]],[[1,1,0,1],[1,4,3,1],[2,2,3,2],[1,1,0,1]],[[1,1,0,1],[1,3,4,1],[2,2,3,2],[1,1,0,1]],[[1,1,0,1],[1,3,3,1],[2,2,4,2],[1,1,0,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,3],[1,1,0,1]],[[1,1,0,1],[1,3,3,1],[2,2,3,2],[1,1,0,2]],[[1,1,0,1],[1,4,3,1],[2,2,3,2],[1,1,1,0]],[[1,1,0,1],[1,3,4,1],[2,2,3,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,1],[2,2,4,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,1,1],[0,2,3,3],[2,3,1,0],[1,1,2,1]],[[1,2,1,1],[0,2,4,2],[2,3,1,0],[1,1,2,1]],[[1,2,1,2],[0,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,1,1],[0,2,3,3],[2,3,1,0],[0,2,2,1]],[[1,2,1,1],[0,2,4,2],[2,3,1,0],[0,2,2,1]],[[1,2,1,2],[0,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,2,1,1],[0,2,3,2],[2,3,0,3],[1,1,2,0]],[[1,2,1,1],[0,2,3,3],[2,3,0,2],[1,1,2,0]],[[1,2,1,1],[0,2,4,2],[2,3,0,2],[1,1,2,0]],[[1,2,1,2],[0,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,1,1],[0,2,3,2],[2,3,0,2],[1,1,1,2]],[[1,2,1,1],[0,2,3,2],[2,3,0,3],[1,1,1,1]],[[1,2,1,1],[0,2,3,3],[2,3,0,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,1],[3,3,0,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,3,0,1],[2,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,3,0,1],[1,3,2,1]],[[1,1,0,1],[1,4,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[1,3,4,1],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[1,3,3,1],[3,3,0,2],[0,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,4,0,2],[0,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,3,0,3],[0,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,3,0,2],[0,3,2,1]],[[1,1,0,1],[1,3,3,1],[2,3,0,2],[0,2,3,1]],[[1,1,0,1],[1,3,3,1],[2,3,0,2],[0,2,2,2]],[[1,1,0,1],[1,4,3,1],[2,3,0,2],[1,1,2,1]],[[1,1,0,1],[1,3,4,1],[2,3,0,2],[1,1,2,1]],[[1,1,0,1],[1,3,3,1],[3,3,0,2],[1,1,2,1]],[[1,1,0,1],[1,3,3,1],[2,4,0,2],[1,1,2,1]],[[1,1,0,1],[1,3,3,1],[2,3,0,2],[2,1,2,1]],[[1,1,0,1],[1,3,3,1],[3,3,0,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,3,0,2],[2,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,3,0,2],[1,3,2,0]],[[1,1,0,1],[1,4,3,1],[2,3,1,1],[0,2,2,1]],[[1,1,0,1],[1,3,4,1],[2,3,1,1],[0,2,2,1]],[[1,1,0,1],[1,3,3,1],[3,3,1,1],[0,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,4,1,1],[0,2,2,1]],[[1,1,0,1],[1,3,3,1],[2,3,1,1],[0,3,2,1]],[[1,1,0,1],[1,3,3,1],[2,3,1,1],[0,2,3,1]],[[1,1,0,1],[1,3,3,1],[2,3,1,1],[0,2,2,2]],[[1,1,0,1],[1,4,3,1],[2,3,1,1],[1,1,2,1]],[[1,1,0,1],[1,3,4,1],[2,3,1,1],[1,1,2,1]],[[1,1,0,1],[1,3,3,1],[3,3,1,1],[1,1,2,1]],[[1,1,0,1],[1,3,3,1],[2,4,1,1],[1,1,2,1]],[[1,1,0,1],[1,3,3,1],[2,3,1,1],[2,1,2,1]],[[1,1,0,1],[1,4,3,1],[2,3,1,2],[0,2,2,0]],[[1,1,0,1],[1,3,4,1],[2,3,1,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,1],[3,3,1,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,4,1,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,1],[2,3,1,2],[0,3,2,0]],[[1,1,0,1],[1,3,3,1],[2,3,1,2],[0,2,3,0]],[[1,1,0,1],[1,4,3,1],[2,3,1,2],[1,1,2,0]],[[1,1,0,1],[1,3,4,1],[2,3,1,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,1],[3,3,1,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,1],[2,4,1,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,1,1],[0,2,4,2],[2,3,0,2],[1,1,1,1]],[[1,2,1,2],[0,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,1,1],[0,2,3,2],[2,3,0,2],[1,0,2,2]],[[1,2,1,1],[0,2,3,2],[2,3,0,2],[1,0,3,1]],[[1,2,1,1],[0,2,3,2],[2,3,0,3],[1,0,2,1]],[[1,2,1,1],[0,2,3,3],[2,3,0,2],[1,0,2,1]],[[1,2,1,1],[0,2,4,2],[2,3,0,2],[1,0,2,1]],[[1,2,1,2],[0,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,1],[0,1,2,1]],[[1,1,0,1],[1,3,4,1],[2,3,2,1],[0,1,2,1]],[[1,1,0,1],[1,3,3,1],[3,3,2,1],[0,1,2,1]],[[1,1,0,1],[1,3,3,1],[2,4,2,1],[0,1,2,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,1],[0,2,1,1]],[[1,1,0,1],[1,3,4,1],[2,3,2,1],[0,2,1,1]],[[1,1,0,1],[1,3,3,1],[3,3,2,1],[0,2,1,1]],[[1,1,0,1],[1,3,3,1],[2,4,2,1],[0,2,1,1]],[[1,1,0,1],[1,3,3,1],[2,3,2,1],[0,3,1,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,1],[1,0,2,1]],[[1,1,0,1],[1,3,4,1],[2,3,2,1],[1,0,2,1]],[[1,1,0,1],[1,3,3,1],[3,3,2,1],[1,0,2,1]],[[1,1,0,1],[1,3,3,1],[2,4,2,1],[1,0,2,1]],[[1,1,0,1],[1,3,3,1],[2,3,2,1],[2,0,2,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,1],[1,1,1,1]],[[1,1,0,1],[1,3,4,1],[2,3,2,1],[1,1,1,1]],[[1,1,0,1],[1,3,3,1],[3,3,2,1],[1,1,1,1]],[[1,1,0,1],[1,3,3,1],[2,4,2,1],[1,1,1,1]],[[1,1,0,1],[1,3,3,1],[2,3,2,1],[2,1,1,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,1],[1,2,0,1]],[[1,1,0,1],[1,3,3,1],[3,3,2,1],[1,2,0,1]],[[1,1,0,1],[1,3,3,1],[2,4,2,1],[1,2,0,1]],[[1,1,0,1],[1,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,0,1],[1,3,4,1],[2,3,2,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,1],[3,3,2,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,1],[2,4,2,2],[0,1,1,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,0,1],[1,3,4,1],[2,3,2,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,1],[3,3,2,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,1],[2,4,2,2],[0,1,2,0]],[[1,1,0,1],[1,4,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,0,1],[1,3,4,1],[2,3,2,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,1],[3,3,2,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,1],[2,4,2,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,1],[2,3,2,2],[0,3,0,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,0,1],[1,3,4,1],[2,3,2,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,1],[3,3,2,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,1],[2,4,2,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,1,1],[0,2,3,2],[2,3,0,3],[0,2,2,0]],[[1,2,1,1],[0,2,3,3],[2,3,0,2],[0,2,2,0]],[[1,2,1,1],[0,2,4,2],[2,3,0,2],[0,2,2,0]],[[1,2,1,2],[0,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,1,1],[0,2,3,2],[2,3,0,2],[0,2,1,2]],[[1,2,1,1],[0,2,3,2],[2,3,0,3],[0,2,1,1]],[[1,2,1,1],[0,2,3,3],[2,3,0,2],[0,2,1,1]],[[1,2,1,1],[0,2,4,2],[2,3,0,2],[0,2,1,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,0,1],[1,3,4,1],[2,3,2,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,1],[3,3,2,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,1],[2,4,2,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,1],[2,3,2,2],[2,0,1,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,0,1],[1,3,4,1],[2,3,2,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,1],[3,3,2,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,1],[2,4,2,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,1],[2,3,2,2],[2,0,2,0]],[[1,1,0,1],[1,4,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,0,1],[1,3,4,1],[2,3,2,2],[1,1,0,1]],[[1,1,0,1],[1,3,3,1],[3,3,2,2],[1,1,0,1]],[[1,1,0,1],[1,3,3,1],[2,4,2,2],[1,1,0,1]],[[1,1,0,1],[1,3,3,1],[2,3,2,2],[2,1,0,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,0,1],[1,3,4,1],[2,3,2,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,1],[3,3,2,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,1],[2,4,2,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,1,2],[0,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,1,1],[0,2,3,2],[2,3,0,2],[0,1,2,2]],[[1,2,1,1],[0,2,3,2],[2,3,0,2],[0,1,3,1]],[[1,2,1,1],[0,2,3,2],[2,3,0,3],[0,1,2,1]],[[1,2,1,1],[0,2,3,3],[2,3,0,2],[0,1,2,1]],[[1,2,1,1],[0,2,4,2],[2,3,0,2],[0,1,2,1]],[[1,2,1,2],[0,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,0,1],[1,4,3,1],[2,3,2,2],[1,2,0,0]],[[1,1,0,1],[1,3,4,1],[2,3,2,2],[1,2,0,0]],[[1,1,0,1],[1,3,3,1],[3,3,2,2],[1,2,0,0]],[[1,1,0,1],[1,3,3,1],[2,4,2,2],[1,2,0,0]],[[1,1,0,1],[1,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,1,1],[0,2,3,3],[2,3,0,1],[1,1,2,1]],[[1,2,1,1],[0,2,4,2],[2,3,0,1],[1,1,2,1]],[[1,2,1,2],[0,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,1,1],[0,2,3,3],[2,3,0,1],[0,2,2,1]],[[1,2,1,1],[0,2,4,2],[2,3,0,1],[0,2,2,1]],[[1,2,1,2],[0,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,0,1],[1,4,3,1],[2,3,3,1],[0,0,2,1]],[[1,1,0,1],[1,3,4,1],[2,3,3,1],[0,0,2,1]],[[1,1,0,1],[1,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,1,1],[0,2,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,1,1],[0,2,3,3],[2,2,3,2],[1,0,0,1]],[[1,2,1,1],[0,2,4,2],[2,2,3,2],[1,0,0,1]],[[1,2,1,2],[0,2,3,2],[2,2,3,2],[1,0,0,1]],[[1,2,1,1],[0,2,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,1,1],[0,2,3,3],[2,2,3,2],[0,1,0,1]],[[1,1,0,1],[1,4,3,1],[2,3,3,2],[0,0,1,1]],[[1,1,0,1],[1,3,4,1],[2,3,3,2],[0,0,1,1]],[[1,1,0,1],[1,3,3,1],[2,3,4,2],[0,0,1,1]],[[1,1,0,1],[1,3,3,1],[2,3,3,3],[0,0,1,1]],[[1,1,0,1],[1,3,3,1],[2,3,3,2],[0,0,1,2]],[[1,1,0,1],[1,4,3,1],[2,3,3,2],[0,0,2,0]],[[1,1,0,1],[1,3,4,1],[2,3,3,2],[0,0,2,0]],[[1,1,0,1],[1,3,3,1],[2,3,4,2],[0,0,2,0]],[[1,1,0,1],[1,3,3,1],[2,3,3,3],[0,0,2,0]],[[1,2,1,1],[0,2,4,2],[2,2,3,2],[0,1,0,1]],[[1,2,1,2],[0,2,3,2],[2,2,3,2],[0,1,0,1]],[[1,1,0,1],[1,4,3,1],[2,3,3,2],[0,2,0,0]],[[1,1,0,1],[1,3,4,1],[2,3,3,2],[0,2,0,0]],[[1,1,0,1],[1,3,3,1],[3,3,3,2],[0,2,0,0]],[[1,1,0,1],[1,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,1,1],[0,2,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,1,1],[0,2,3,3],[2,2,3,1],[1,1,1,0]],[[1,2,1,1],[0,2,4,2],[2,2,3,1],[1,1,1,0]],[[1,2,1,2],[0,2,3,2],[2,2,3,1],[1,1,1,0]],[[1,2,1,1],[0,2,3,2],[2,2,4,1],[1,1,0,1]],[[1,2,1,1],[0,2,3,3],[2,2,3,1],[1,1,0,1]],[[1,2,1,1],[0,2,4,2],[2,2,3,1],[1,1,0,1]],[[1,2,1,2],[0,2,3,2],[2,2,3,1],[1,1,0,1]],[[1,1,0,1],[1,4,3,1],[2,3,3,2],[1,1,0,0]],[[1,1,0,1],[1,3,4,1],[2,3,3,2],[1,1,0,0]],[[1,1,0,1],[1,3,3,1],[3,3,3,2],[1,1,0,0]],[[1,1,0,1],[1,3,3,1],[2,4,3,2],[1,1,0,0]],[[1,1,0,1],[1,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,1,1],[0,2,3,2],[2,2,3,1],[1,0,3,0]],[[1,2,1,1],[0,2,3,2],[2,2,4,1],[1,0,2,0]],[[1,2,1,1],[0,2,3,3],[2,2,3,1],[1,0,2,0]],[[1,2,1,1],[0,2,4,2],[2,2,3,1],[1,0,2,0]],[[1,2,1,2],[0,2,3,2],[2,2,3,1],[1,0,2,0]],[[1,2,1,1],[0,2,3,2],[2,2,4,1],[1,0,1,1]],[[1,2,1,1],[0,2,3,3],[2,2,3,1],[1,0,1,1]],[[1,2,1,1],[0,2,4,2],[2,2,3,1],[1,0,1,1]],[[1,2,1,2],[0,2,3,2],[2,2,3,1],[1,0,1,1]],[[1,2,1,1],[0,2,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,1,1],[0,2,3,3],[2,2,3,1],[0,2,1,0]],[[1,2,1,1],[0,2,4,2],[2,2,3,1],[0,2,1,0]],[[1,2,1,2],[0,2,3,2],[2,2,3,1],[0,2,1,0]],[[1,2,1,1],[0,2,3,2],[2,2,4,1],[0,2,0,1]],[[1,2,1,1],[0,2,3,3],[2,2,3,1],[0,2,0,1]],[[1,2,1,1],[0,2,4,2],[2,2,3,1],[0,2,0,1]],[[1,2,1,2],[0,2,3,2],[2,2,3,1],[0,2,0,1]],[[1,2,1,1],[0,2,3,2],[2,2,3,1],[0,1,3,0]],[[1,2,1,1],[0,2,3,2],[2,2,4,1],[0,1,2,0]],[[1,2,1,1],[0,2,3,3],[2,2,3,1],[0,1,2,0]],[[1,2,1,1],[0,2,4,2],[2,2,3,1],[0,1,2,0]],[[1,2,1,2],[0,2,3,2],[2,2,3,1],[0,1,2,0]],[[1,2,1,1],[0,2,3,2],[2,2,4,1],[0,1,1,1]],[[1,2,1,1],[0,2,3,3],[2,2,3,1],[0,1,1,1]],[[1,2,1,1],[0,2,4,2],[2,2,3,1],[0,1,1,1]],[[1,2,1,2],[0,2,3,2],[2,2,3,1],[0,1,1,1]],[[1,2,1,1],[0,2,3,2],[2,2,4,1],[0,0,2,1]],[[1,2,1,1],[0,2,3,3],[2,2,3,1],[0,0,2,1]],[[1,2,1,1],[0,2,4,2],[2,2,3,1],[0,0,2,1]],[[1,2,1,2],[0,2,3,2],[2,2,3,1],[0,0,2,1]],[[1,2,1,1],[0,2,3,2],[2,2,4,0],[1,1,1,1]],[[1,2,1,1],[0,2,3,3],[2,2,3,0],[1,1,1,1]],[[1,2,1,1],[0,2,4,2],[2,2,3,0],[1,1,1,1]],[[1,2,1,2],[0,2,3,2],[2,2,3,0],[1,1,1,1]],[[1,2,1,1],[0,2,3,2],[2,2,3,0],[1,0,2,2]],[[1,2,1,1],[0,2,3,2],[2,2,3,0],[1,0,3,1]],[[1,2,1,1],[0,2,3,2],[2,2,4,0],[1,0,2,1]],[[1,2,1,1],[0,2,3,3],[2,2,3,0],[1,0,2,1]],[[1,1,0,1],[1,3,3,3],[0,0,3,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[0,0,3,3],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[0,0,3,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[0,0,3,2],[1,2,2,2]],[[1,1,0,1],[1,3,3,3],[0,1,2,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[0,1,2,3],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[0,1,2,2],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[0,1,2,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[0,1,2,2],[1,2,2,2]],[[1,1,0,1],[1,3,3,2],[0,1,4,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[0,1,3,1],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[0,1,3,1],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[0,1,3,1],[1,2,2,2]],[[1,1,0,1],[1,3,3,3],[0,1,3,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[0,1,4,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[0,1,3,3],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[0,1,3,2],[1,2,1,2]],[[1,1,0,1],[1,3,3,3],[0,1,3,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[0,1,4,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[0,1,3,3],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[0,1,3,2],[1,3,2,0]],[[1,1,0,1],[1,3,3,2],[0,1,3,2],[1,2,3,0]],[[1,1,0,1],[1,3,3,3],[0,2,2,2],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[0,2,2,3],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[0,2,2,2],[1,1,3,1]],[[1,1,0,1],[1,3,3,2],[0,2,2,2],[1,1,2,2]],[[1,1,0,1],[1,3,3,2],[0,2,4,1],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[0,2,3,1],[1,1,3,1]],[[1,1,0,1],[1,3,3,2],[0,2,3,1],[1,1,2,2]],[[1,1,0,1],[1,3,3,3],[0,2,3,2],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[0,2,4,2],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[0,2,3,3],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[0,2,3,2],[1,0,2,2]],[[1,1,0,1],[1,3,3,3],[0,2,3,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[0,2,4,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[0,2,3,3],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[0,2,3,2],[1,1,1,2]],[[1,1,0,1],[1,3,3,3],[0,2,3,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[0,2,4,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[0,2,3,3],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[0,2,3,2],[1,1,3,0]],[[1,1,0,1],[1,3,3,3],[0,2,3,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[0,2,4,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[0,2,3,3],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[0,2,3,2],[1,2,0,2]],[[1,1,0,1],[1,3,3,3],[0,2,3,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[0,2,4,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[0,2,3,3],[1,2,1,0]],[[1,2,1,1],[0,2,4,2],[2,2,3,0],[1,0,2,1]],[[1,2,1,2],[0,2,3,2],[2,2,3,0],[1,0,2,1]],[[1,1,0,1],[1,3,3,3],[0,3,2,2],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[0,3,2,3],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[0,3,2,2],[0,1,3,1]],[[1,1,0,1],[1,3,3,2],[0,3,2,2],[0,1,2,2]],[[1,2,1,1],[0,2,3,2],[2,2,4,0],[0,2,1,1]],[[1,2,1,1],[0,2,3,3],[2,2,3,0],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[0,3,4,1],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[0,3,3,1],[0,1,3,1]],[[1,1,0,1],[1,3,3,2],[0,3,3,1],[0,1,2,2]],[[1,2,1,1],[0,2,4,2],[2,2,3,0],[0,2,1,1]],[[1,2,1,2],[0,2,3,2],[2,2,3,0],[0,2,1,1]],[[1,2,1,1],[0,2,3,2],[2,2,3,0],[0,1,2,2]],[[1,2,1,1],[0,2,3,2],[2,2,3,0],[0,1,3,1]],[[1,1,0,1],[1,3,3,3],[0,3,3,2],[0,0,2,1]],[[1,1,0,1],[1,3,3,2],[0,3,4,2],[0,0,2,1]],[[1,1,0,1],[1,3,3,2],[0,3,3,3],[0,0,2,1]],[[1,1,0,1],[1,3,3,2],[0,3,3,2],[0,0,2,2]],[[1,1,0,1],[1,3,3,3],[0,3,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[0,3,4,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[0,3,3,3],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[0,3,3,2],[0,1,1,2]],[[1,1,0,1],[1,3,3,3],[0,3,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[0,3,4,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[0,3,3,3],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[0,3,3,2],[0,1,3,0]],[[1,1,0,1],[1,3,3,3],[0,3,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[0,3,4,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[0,3,3,3],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[0,3,3,2],[0,2,0,2]],[[1,1,0,1],[1,3,3,3],[0,3,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[0,3,4,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[0,3,3,3],[0,2,1,0]],[[1,2,1,1],[0,2,3,2],[2,2,4,0],[0,1,2,1]],[[1,2,1,1],[0,2,3,3],[2,2,3,0],[0,1,2,1]],[[1,2,1,1],[0,2,4,2],[2,2,3,0],[0,1,2,1]],[[1,2,1,2],[0,2,3,2],[2,2,3,0],[0,1,2,1]],[[1,2,1,1],[0,2,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,1,1],[0,2,3,3],[2,2,2,2],[1,1,1,0]],[[1,2,1,1],[0,2,4,2],[2,2,2,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,3],[1,0,3,2],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,0,3,3],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,0,3,2],[0,2,3,1]],[[1,1,0,1],[1,3,3,2],[1,0,3,2],[0,2,2,2]],[[1,1,0,2],[1,3,3,2],[1,1,1,2],[1,2,2,1]],[[1,1,0,1],[1,4,3,2],[1,1,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,4,2],[1,1,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,3],[1,1,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,1,1,3],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,1,1,2],[2,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,1,1,2],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[1,1,1,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[1,1,1,2],[1,2,2,2]],[[1,1,0,1],[1,3,3,3],[1,1,2,2],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,1,2,3],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,1,2,2],[0,2,3,1]],[[1,1,0,1],[1,3,3,2],[1,1,2,2],[0,2,2,2]],[[1,1,0,2],[1,3,3,2],[1,1,2,2],[1,2,1,1]],[[1,1,0,1],[1,4,3,2],[1,1,2,2],[1,2,1,1]],[[1,1,0,1],[1,3,4,2],[1,1,2,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,3],[1,1,2,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,1,2,3],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,1,2,2],[1,2,1,2]],[[1,1,0,2],[1,3,3,2],[1,1,2,2],[1,2,2,0]],[[1,1,0,1],[1,4,3,2],[1,1,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,4,2],[1,1,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,3],[1,1,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,1,2,3],[1,2,2,0]],[[1,1,0,2],[1,3,3,2],[1,1,3,0],[1,2,2,1]],[[1,1,0,1],[1,4,3,2],[1,1,3,0],[1,2,2,1]],[[1,1,0,1],[1,3,4,2],[1,1,3,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,3],[1,1,3,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,1,4,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,1,3,0],[2,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,1,3,0],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[1,1,3,0],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[1,1,3,0],[1,2,2,2]],[[1,1,0,1],[1,3,3,2],[1,1,4,1],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,1,3,1],[0,2,3,1]],[[1,1,0,1],[1,3,3,2],[1,1,3,1],[0,2,2,2]],[[1,1,0,2],[1,3,3,2],[1,1,3,1],[1,2,1,1]],[[1,1,0,1],[1,4,3,2],[1,1,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,4,2],[1,1,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,3,3],[1,1,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,1,4,1],[1,2,1,1]],[[1,1,0,2],[1,3,3,2],[1,1,3,1],[1,2,2,0]],[[1,1,0,1],[1,4,3,2],[1,1,3,1],[1,2,2,0]],[[1,1,0,1],[1,3,4,2],[1,1,3,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,3],[1,1,3,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,1,4,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,1,3,1],[2,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,1,3,1],[1,3,2,0]],[[1,1,0,1],[1,3,3,2],[1,1,3,1],[1,2,3,0]],[[1,1,0,1],[1,3,3,3],[1,1,3,2],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,1,4,2],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,1,3,3],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,1,3,2],[0,2,1,2]],[[1,1,0,1],[1,3,3,3],[1,1,3,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,1,4,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,1,3,3],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,1,3,2],[0,2,3,0]],[[1,2,1,2],[0,2,3,2],[2,2,2,2],[1,1,1,0]],[[1,2,1,1],[0,2,3,2],[2,2,2,2],[1,1,0,2]],[[1,2,1,1],[0,2,3,2],[2,2,2,3],[1,1,0,1]],[[1,2,1,1],[0,2,3,3],[2,2,2,2],[1,1,0,1]],[[1,2,1,1],[0,2,4,2],[2,2,2,2],[1,1,0,1]],[[1,2,1,2],[0,2,3,2],[2,2,2,2],[1,1,0,1]],[[1,1,0,2],[1,3,3,2],[1,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,4,3,2],[1,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,4,2],[1,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,3],[1,2,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,0,3],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,0,2],[2,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,0,2],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,0,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[1,2,0,2],[1,2,2,2]],[[1,1,0,2],[1,3,3,2],[1,2,1,2],[1,1,2,1]],[[1,1,0,1],[1,4,3,2],[1,2,1,2],[1,1,2,1]],[[1,1,0,1],[1,3,4,2],[1,2,1,2],[1,1,2,1]],[[1,1,0,1],[1,3,3,3],[1,2,1,2],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,1,3],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,1,2],[1,1,3,1]],[[1,1,0,1],[1,3,3,2],[1,2,1,2],[1,1,2,2]],[[1,1,0,1],[1,3,3,3],[1,2,2,2],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,2,3],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,2,2],[0,1,3,1]],[[1,1,0,1],[1,3,3,2],[1,2,2,2],[0,1,2,2]],[[1,1,0,2],[1,3,3,2],[1,2,2,2],[1,1,1,1]],[[1,1,0,1],[1,4,3,2],[1,2,2,2],[1,1,1,1]],[[1,1,0,1],[1,3,4,2],[1,2,2,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,3],[1,2,2,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[1,2,2,3],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[1,2,2,2],[1,1,1,2]],[[1,1,0,2],[1,3,3,2],[1,2,2,2],[1,1,2,0]],[[1,1,0,1],[1,4,3,2],[1,2,2,2],[1,1,2,0]],[[1,1,0,1],[1,3,4,2],[1,2,2,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,3],[1,2,2,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[1,2,2,3],[1,1,2,0]],[[1,1,0,2],[1,3,3,2],[1,2,2,2],[1,2,0,1]],[[1,1,0,1],[1,4,3,2],[1,2,2,2],[1,2,0,1]],[[1,1,0,1],[1,3,4,2],[1,2,2,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,3],[1,2,2,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,2,2,3],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,2,2,2],[1,2,0,2]],[[1,1,0,2],[1,3,3,2],[1,2,2,2],[1,2,1,0]],[[1,1,0,1],[1,4,3,2],[1,2,2,2],[1,2,1,0]],[[1,1,0,1],[1,3,4,2],[1,2,2,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,3],[1,2,2,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,2,2,3],[1,2,1,0]],[[1,2,1,1],[0,2,3,2],[2,2,2,3],[1,0,2,0]],[[1,2,1,1],[0,2,3,3],[2,2,2,2],[1,0,2,0]],[[1,2,1,1],[0,2,4,2],[2,2,2,2],[1,0,2,0]],[[1,2,1,2],[0,2,3,2],[2,2,2,2],[1,0,2,0]],[[1,2,1,1],[0,2,3,2],[2,2,2,2],[1,0,1,2]],[[1,2,1,1],[0,2,3,2],[2,2,2,3],[1,0,1,1]],[[1,2,1,1],[0,2,3,3],[2,2,2,2],[1,0,1,1]],[[1,1,0,2],[1,3,3,2],[1,2,3,0],[1,1,2,1]],[[1,1,0,1],[1,4,3,2],[1,2,3,0],[1,1,2,1]],[[1,1,0,1],[1,3,4,2],[1,2,3,0],[1,1,2,1]],[[1,1,0,1],[1,3,3,3],[1,2,3,0],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,4,0],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,0],[1,1,3,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,0],[1,1,2,2]],[[1,1,0,2],[1,3,3,2],[1,2,3,0],[1,2,1,1]],[[1,1,0,1],[1,4,3,2],[1,2,3,0],[1,2,1,1]],[[1,1,0,1],[1,3,4,2],[1,2,3,0],[1,2,1,1]],[[1,1,0,1],[1,3,3,3],[1,2,3,0],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,2,4,0],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,2,4,1],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,1],[0,1,3,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,1],[0,1,2,2]],[[1,1,0,2],[1,3,3,2],[1,2,3,1],[1,1,1,1]],[[1,1,0,1],[1,4,3,2],[1,2,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,4,2],[1,2,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,3,3],[1,2,3,1],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[1,2,4,1],[1,1,1,1]],[[1,1,0,2],[1,3,3,2],[1,2,3,1],[1,1,2,0]],[[1,1,0,1],[1,4,3,2],[1,2,3,1],[1,1,2,0]],[[1,1,0,1],[1,3,4,2],[1,2,3,1],[1,1,2,0]],[[1,1,0,1],[1,3,3,3],[1,2,3,1],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[1,2,4,1],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[1,2,3,1],[1,1,3,0]],[[1,1,0,2],[1,3,3,2],[1,2,3,1],[1,2,0,1]],[[1,1,0,1],[1,4,3,2],[1,2,3,1],[1,2,0,1]],[[1,1,0,1],[1,3,4,2],[1,2,3,1],[1,2,0,1]],[[1,1,0,1],[1,3,3,3],[1,2,3,1],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,2,4,1],[1,2,0,1]],[[1,1,0,2],[1,3,3,2],[1,2,3,1],[1,2,1,0]],[[1,1,0,1],[1,4,3,2],[1,2,3,1],[1,2,1,0]],[[1,1,0,1],[1,3,4,2],[1,2,3,1],[1,2,1,0]],[[1,1,0,1],[1,3,3,3],[1,2,3,1],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,1,1],[0,2,4,2],[2,2,2,2],[1,0,1,1]],[[1,2,1,2],[0,2,3,2],[2,2,2,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,3],[1,2,3,2],[0,0,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,4,2],[0,0,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,3],[0,0,2,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,2],[0,0,2,2]],[[1,1,0,1],[1,3,3,3],[1,2,3,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[1,2,4,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,3],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,2],[0,1,1,2]],[[1,1,0,1],[1,3,3,3],[1,2,3,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[1,2,4,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[1,2,3,3],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[1,2,3,2],[0,1,3,0]],[[1,1,0,1],[1,3,3,3],[1,2,3,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,2,4,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,3],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,2],[0,2,0,2]],[[1,1,0,1],[1,3,3,3],[1,2,3,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,2,4,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[0,2,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,1,1],[0,2,3,3],[2,2,2,2],[0,2,1,0]],[[1,2,1,1],[0,2,4,2],[2,2,2,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,3],[1,2,3,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[1,2,4,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,3],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[1,2,3,2],[1,0,1,2]],[[1,1,0,1],[1,3,3,3],[1,2,3,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[1,2,4,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[1,2,3,3],[1,0,2,0]],[[1,2,1,2],[0,2,3,2],[2,2,2,2],[0,2,1,0]],[[1,2,1,1],[0,2,3,2],[2,2,2,2],[0,2,0,2]],[[1,2,1,1],[0,2,3,2],[2,2,2,3],[0,2,0,1]],[[1,2,1,1],[0,2,3,3],[2,2,2,2],[0,2,0,1]],[[1,2,1,1],[0,2,4,2],[2,2,2,2],[0,2,0,1]],[[1,2,1,2],[0,2,3,2],[2,2,2,2],[0,2,0,1]],[[1,2,1,1],[0,2,3,2],[2,2,2,3],[0,1,2,0]],[[1,2,1,1],[0,2,3,3],[2,2,2,2],[0,1,2,0]],[[1,2,1,1],[0,2,4,2],[2,2,2,2],[0,1,2,0]],[[1,2,1,2],[0,2,3,2],[2,2,2,2],[0,1,2,0]],[[1,2,1,1],[0,2,3,2],[2,2,2,2],[0,1,1,2]],[[1,2,1,1],[0,2,3,2],[2,2,2,3],[0,1,1,1]],[[1,2,1,1],[0,2,3,3],[2,2,2,2],[0,1,1,1]],[[1,2,1,1],[0,2,4,2],[2,2,2,2],[0,1,1,1]],[[1,2,1,2],[0,2,3,2],[2,2,2,2],[0,1,1,1]],[[1,2,1,1],[0,2,3,2],[2,2,2,2],[0,0,2,2]],[[1,2,1,1],[0,2,3,2],[2,2,2,3],[0,0,2,1]],[[1,2,1,1],[0,2,3,3],[2,2,2,2],[0,0,2,1]],[[1,2,1,1],[0,2,4,2],[2,2,2,2],[0,0,2,1]],[[1,2,1,2],[0,2,3,2],[2,2,2,2],[0,0,2,1]],[[1,1,0,2],[1,3,3,2],[1,3,0,1],[1,2,2,1]],[[1,1,0,1],[1,4,3,2],[1,3,0,1],[1,2,2,1]],[[1,1,0,1],[1,3,4,2],[1,3,0,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,3],[1,3,0,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,4,0,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,3,0,1],[2,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,3,0,1],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[1,3,0,1],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[1,3,0,1],[1,2,2,2]],[[1,1,0,2],[1,3,3,2],[1,3,0,2],[1,1,2,1]],[[1,1,0,1],[1,4,3,2],[1,3,0,2],[1,1,2,1]],[[1,1,0,1],[1,3,4,2],[1,3,0,2],[1,1,2,1]],[[1,1,0,1],[1,3,3,3],[1,3,0,2],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[1,4,0,2],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[1,3,0,3],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[1,3,0,2],[1,1,3,1]],[[1,1,0,1],[1,3,3,2],[1,3,0,2],[1,1,2,2]],[[1,1,0,2],[1,3,3,2],[1,3,0,2],[1,2,1,1]],[[1,1,0,1],[1,4,3,2],[1,3,0,2],[1,2,1,1]],[[1,1,0,1],[1,3,4,2],[1,3,0,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,3],[1,3,0,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,4,0,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,3,0,3],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,3,0,2],[2,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,3,0,2],[1,3,1,1]],[[1,1,0,1],[1,3,3,2],[1,3,0,2],[1,2,1,2]],[[1,1,0,2],[1,3,3,2],[1,3,0,2],[1,2,2,0]],[[1,1,0,1],[1,4,3,2],[1,3,0,2],[1,2,2,0]],[[1,1,0,1],[1,3,4,2],[1,3,0,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,3],[1,3,0,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,4,0,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,3,0,3],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,3,0,2],[2,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,3,0,2],[1,3,2,0]],[[1,1,0,1],[1,3,3,2],[1,3,0,2],[1,2,3,0]],[[1,1,0,2],[1,3,3,2],[1,3,1,0],[1,2,2,1]],[[1,1,0,1],[1,4,3,2],[1,3,1,0],[1,2,2,1]],[[1,1,0,1],[1,3,4,2],[1,3,1,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,3],[1,3,1,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,4,1,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,3,1,0],[2,2,2,1]],[[1,1,0,1],[1,3,3,2],[1,3,1,0],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[1,3,1,0],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[1,3,1,0],[1,2,2,2]],[[1,1,0,2],[1,3,3,2],[1,3,1,1],[1,2,2,0]],[[1,1,0,1],[1,4,3,2],[1,3,1,1],[1,2,2,0]],[[1,1,0,1],[1,3,4,2],[1,3,1,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,3],[1,3,1,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,4,1,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,3,1,1],[2,2,2,0]],[[1,1,0,1],[1,3,3,2],[1,3,1,1],[1,3,2,0]],[[1,1,0,1],[1,3,3,2],[1,3,1,1],[1,2,3,0]],[[1,1,0,2],[1,3,3,2],[1,3,1,2],[1,1,1,1]],[[1,1,0,1],[1,4,3,2],[1,3,1,2],[1,1,1,1]],[[1,1,0,1],[1,3,4,2],[1,3,1,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,3],[1,3,1,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[1,4,1,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[1,3,1,3],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[1,3,1,2],[1,1,1,2]],[[1,1,0,2],[1,3,3,2],[1,3,1,2],[1,1,2,0]],[[1,1,0,1],[1,4,3,2],[1,3,1,2],[1,1,2,0]],[[1,1,0,1],[1,3,4,2],[1,3,1,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,3],[1,3,1,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[1,4,1,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[1,3,1,3],[1,1,2,0]],[[1,1,0,2],[1,3,3,2],[1,3,1,2],[1,2,0,1]],[[1,1,0,1],[1,4,3,2],[1,3,1,2],[1,2,0,1]],[[1,1,0,1],[1,3,4,2],[1,3,1,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,3],[1,3,1,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,4,1,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,3,1,3],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,3,1,2],[2,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,3,1,2],[1,3,0,1]],[[1,1,0,1],[1,3,3,2],[1,3,1,2],[1,2,0,2]],[[1,1,0,2],[1,3,3,2],[1,3,1,2],[1,2,1,0]],[[1,1,0,1],[1,4,3,2],[1,3,1,2],[1,2,1,0]],[[1,1,0,1],[1,3,4,2],[1,3,1,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,3],[1,3,1,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,4,1,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,3,1,3],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,3,1,2],[2,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,2],[2,2,1,2],[1,0,2,2]],[[1,2,1,1],[0,2,3,2],[2,2,1,2],[1,0,3,1]],[[1,2,1,1],[0,2,3,2],[2,2,1,3],[1,0,2,1]],[[1,1,0,2],[1,3,3,2],[1,3,2,0],[1,1,2,1]],[[1,1,0,1],[1,4,3,2],[1,3,2,0],[1,1,2,1]],[[1,1,0,1],[1,3,4,2],[1,3,2,0],[1,1,2,1]],[[1,1,0,1],[1,3,3,3],[1,3,2,0],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[1,4,2,0],[1,1,2,1]],[[1,1,0,2],[1,3,3,2],[1,3,2,0],[1,2,1,1]],[[1,1,0,1],[1,4,3,2],[1,3,2,0],[1,2,1,1]],[[1,1,0,1],[1,3,4,2],[1,3,2,0],[1,2,1,1]],[[1,1,0,1],[1,3,3,3],[1,3,2,0],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,4,2,0],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,3,2,0],[2,2,1,1]],[[1,1,0,1],[1,3,3,2],[1,3,2,0],[1,3,1,1]],[[1,1,0,2],[1,3,3,2],[1,3,2,1],[1,1,1,1]],[[1,1,0,1],[1,4,3,2],[1,3,2,1],[1,1,1,1]],[[1,1,0,1],[1,3,4,2],[1,3,2,1],[1,1,1,1]],[[1,1,0,1],[1,3,3,3],[1,3,2,1],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[1,4,2,1],[1,1,1,1]],[[1,1,0,2],[1,3,3,2],[1,3,2,1],[1,1,2,0]],[[1,1,0,1],[1,4,3,2],[1,3,2,1],[1,1,2,0]],[[1,1,0,1],[1,3,4,2],[1,3,2,1],[1,1,2,0]],[[1,1,0,1],[1,3,3,3],[1,3,2,1],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[1,4,2,1],[1,1,2,0]],[[1,1,0,2],[1,3,3,2],[1,3,2,1],[1,2,0,1]],[[1,1,0,1],[1,4,3,2],[1,3,2,1],[1,2,0,1]],[[1,1,0,1],[1,3,4,2],[1,3,2,1],[1,2,0,1]],[[1,1,0,1],[1,3,3,3],[1,3,2,1],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,4,2,1],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,3,2,1],[2,2,0,1]],[[1,1,0,1],[1,3,3,2],[1,3,2,1],[1,3,0,1]],[[1,1,0,2],[1,3,3,2],[1,3,2,1],[1,2,1,0]],[[1,1,0,1],[1,4,3,2],[1,3,2,1],[1,2,1,0]],[[1,1,0,1],[1,3,4,2],[1,3,2,1],[1,2,1,0]],[[1,1,0,1],[1,3,3,3],[1,3,2,1],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,4,2,1],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,3,2,1],[2,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,1,1],[0,2,3,3],[2,2,1,2],[1,0,2,1]],[[1,2,1,1],[0,2,4,2],[2,2,1,2],[1,0,2,1]],[[1,2,1,2],[0,2,3,2],[2,2,1,2],[1,0,2,1]],[[1,2,1,1],[0,2,3,2],[2,2,1,2],[0,1,2,2]],[[1,2,1,1],[0,2,3,2],[2,2,1,2],[0,1,3,1]],[[1,2,1,1],[0,2,3,2],[2,2,1,3],[0,1,2,1]],[[1,2,1,1],[0,2,3,3],[2,2,1,2],[0,1,2,1]],[[1,2,1,1],[0,2,4,2],[2,2,1,2],[0,1,2,1]],[[1,2,1,2],[0,2,3,2],[2,2,1,2],[0,1,2,1]],[[1,2,1,1],[0,2,3,2],[2,2,0,2],[0,2,2,2]],[[1,2,1,1],[0,2,3,2],[2,2,0,2],[0,2,3,1]],[[1,2,1,1],[0,2,3,2],[2,2,0,2],[0,3,2,1]],[[1,2,1,1],[0,2,3,2],[2,2,0,3],[0,2,2,1]],[[1,2,1,1],[0,2,3,3],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[0,2,4,2],[2,2,0,2],[0,2,2,1]],[[1,2,1,2],[0,2,3,2],[2,2,0,2],[0,2,2,1]],[[1,2,1,1],[0,2,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,1,1],[0,2,3,3],[2,1,3,2],[1,0,2,0]],[[1,2,1,1],[0,2,4,2],[2,1,3,2],[1,0,2,0]],[[1,1,0,1],[1,4,3,2],[1,3,3,0],[1,1,2,0]],[[1,1,0,1],[1,3,4,2],[1,3,3,0],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[1,4,3,0],[1,1,2,0]],[[1,1,0,1],[1,4,3,2],[1,3,3,0],[1,2,1,0]],[[1,1,0,1],[1,3,4,2],[1,3,3,0],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,4,3,0],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,3,3,0],[2,2,1,0]],[[1,1,0,1],[1,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,1,2],[0,2,3,2],[2,1,3,2],[1,0,2,0]],[[1,2,1,1],[0,2,3,2],[2,1,3,2],[1,0,1,2]],[[1,2,1,1],[0,2,3,2],[2,1,3,3],[1,0,1,1]],[[1,2,1,1],[0,2,3,3],[2,1,3,2],[1,0,1,1]],[[1,2,1,1],[0,2,4,2],[2,1,3,2],[1,0,1,1]],[[1,2,1,2],[0,2,3,2],[2,1,3,2],[1,0,1,1]],[[1,1,0,2],[1,3,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,0,1],[1,4,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,0,1],[1,3,4,2],[1,3,3,1],[1,2,0,0]],[[1,1,0,1],[1,3,3,3],[1,3,3,1],[1,2,0,0]],[[1,1,0,1],[1,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,2,1,1],[0,2,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,1,1],[0,2,3,3],[2,1,3,2],[0,1,2,0]],[[1,2,1,1],[0,2,4,2],[2,1,3,2],[0,1,2,0]],[[1,2,1,2],[0,2,3,2],[2,1,3,2],[0,1,2,0]],[[1,2,1,1],[0,2,3,2],[2,1,3,2],[0,1,1,2]],[[1,2,1,1],[0,2,3,2],[2,1,3,3],[0,1,1,1]],[[1,2,1,1],[0,2,3,3],[2,1,3,2],[0,1,1,1]],[[1,2,1,1],[0,2,4,2],[2,1,3,2],[0,1,1,1]],[[1,2,1,2],[0,2,3,2],[2,1,3,2],[0,1,1,1]],[[1,2,1,1],[0,2,3,2],[2,1,3,2],[0,0,2,2]],[[1,2,1,1],[0,2,3,2],[2,1,3,3],[0,0,2,1]],[[1,2,1,1],[0,2,3,3],[2,1,3,2],[0,0,2,1]],[[1,2,1,1],[0,2,4,2],[2,1,3,2],[0,0,2,1]],[[1,2,1,2],[0,2,3,2],[2,1,3,2],[0,0,2,1]],[[1,1,0,1],[1,3,3,3],[1,3,3,2],[0,0,1,1]],[[1,1,0,1],[1,3,3,2],[1,3,4,2],[0,0,1,1]],[[1,1,0,1],[1,3,3,2],[1,3,3,3],[0,0,1,1]],[[1,1,0,1],[1,3,3,2],[1,3,3,2],[0,0,1,2]],[[1,1,0,1],[1,3,3,3],[1,3,3,2],[0,0,2,0]],[[1,1,0,1],[1,3,3,2],[1,3,4,2],[0,0,2,0]],[[1,1,0,1],[1,3,3,2],[1,3,3,3],[0,0,2,0]],[[1,2,1,1],[0,2,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,1,1],[0,2,3,2],[2,1,3,1],[0,3,2,0]],[[1,2,1,1],[0,2,3,2],[2,1,4,1],[0,2,2,0]],[[1,2,1,1],[0,2,3,3],[2,1,3,1],[0,2,2,0]],[[1,2,1,1],[0,2,4,2],[2,1,3,1],[0,2,2,0]],[[1,2,1,2],[0,2,3,2],[2,1,3,1],[0,2,2,0]],[[1,2,1,1],[0,2,3,2],[2,1,4,1],[0,2,1,1]],[[1,2,1,1],[0,2,3,3],[2,1,3,1],[0,2,1,1]],[[1,2,1,1],[0,2,4,2],[2,1,3,1],[0,2,1,1]],[[1,2,1,2],[0,2,3,2],[2,1,3,1],[0,2,1,1]],[[1,2,1,1],[0,2,3,2],[2,1,3,0],[0,2,2,2]],[[1,2,1,1],[0,2,3,2],[2,1,3,0],[0,2,3,1]],[[1,2,1,1],[0,2,3,2],[2,1,3,0],[0,3,2,1]],[[1,2,1,1],[0,2,3,2],[2,1,4,0],[0,2,2,1]],[[1,2,1,1],[0,2,3,3],[2,1,3,0],[0,2,2,1]],[[1,2,1,1],[0,2,4,2],[2,1,3,0],[0,2,2,1]],[[1,2,1,2],[0,2,3,2],[2,1,3,0],[0,2,2,1]],[[1,2,1,1],[0,2,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,1,1],[0,2,3,3],[2,1,2,2],[0,2,2,0]],[[1,2,1,1],[0,2,4,2],[2,1,2,2],[0,2,2,0]],[[1,2,1,2],[0,2,3,2],[2,1,2,2],[0,2,2,0]],[[1,2,1,1],[0,2,3,2],[2,1,2,2],[0,2,1,2]],[[1,2,1,1],[0,2,3,2],[2,1,2,3],[0,2,1,1]],[[1,2,1,1],[0,2,3,3],[2,1,2,2],[0,2,1,1]],[[1,2,1,1],[0,2,4,2],[2,1,2,2],[0,2,1,1]],[[1,2,1,2],[0,2,3,2],[2,1,2,2],[0,2,1,1]],[[1,2,1,1],[0,2,3,2],[2,1,1,2],[0,2,2,2]],[[1,2,1,1],[0,2,3,2],[2,1,1,2],[0,2,3,1]],[[1,2,1,1],[0,2,3,2],[2,1,1,2],[0,3,2,1]],[[1,2,1,1],[0,2,3,2],[2,1,1,3],[0,2,2,1]],[[1,2,1,1],[0,2,3,3],[2,1,1,2],[0,2,2,1]],[[1,2,1,1],[0,2,4,2],[2,1,1,2],[0,2,2,1]],[[1,2,1,2],[0,2,3,2],[2,1,1,2],[0,2,2,1]],[[1,2,1,1],[0,2,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,2],[2,1,0,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,2],[2,1,0,2],[1,3,2,1]],[[1,2,1,1],[0,2,3,2],[2,1,0,2],[2,2,2,1]],[[1,2,1,1],[0,2,3,2],[2,1,0,3],[1,2,2,1]],[[1,2,1,1],[0,2,3,2],[3,1,0,2],[1,2,2,1]],[[1,2,1,1],[0,2,3,3],[2,1,0,2],[1,2,2,1]],[[1,2,1,1],[0,2,4,2],[2,1,0,2],[1,2,2,1]],[[1,2,1,2],[0,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,2],[1,3,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[1,4,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,4,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,3],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[3,0,1,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,0,1,3],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,0,1,2],[2,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,0,1,2],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[2,0,1,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[2,0,1,2],[1,2,2,2]],[[1,1,0,2],[1,3,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,0,1],[1,4,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,0,1],[1,3,4,2],[2,0,2,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,3],[2,0,2,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,0,2,3],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,0,2,2],[1,2,1,2]],[[1,1,0,2],[1,3,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,0,1],[1,4,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,4,2],[2,0,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,3],[2,0,2,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,0,2,3],[1,2,2,0]],[[1,1,0,2],[1,3,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,1],[1,4,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,1],[1,3,4,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,3],[2,0,3,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[3,0,3,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,0,4,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,0,3,0],[2,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,0,3,0],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[2,0,3,0],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[2,0,3,0],[1,2,2,2]],[[1,1,0,2],[1,3,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,0,1],[1,4,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,4,2],[2,0,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,3,3],[2,0,3,1],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,0,4,1],[1,2,1,1]],[[1,1,0,2],[1,3,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,1],[1,4,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,1],[1,3,4,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,3],[2,0,3,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[3,0,3,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,0,4,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,0,3,1],[2,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,0,3,1],[1,3,2,0]],[[1,1,0,1],[1,3,3,2],[2,0,3,1],[1,2,3,0]],[[1,1,0,2],[1,3,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[1,4,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,4,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,3],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[3,1,0,2],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,1,0,3],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,1,0,2],[2,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,1,0,2],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[2,1,0,2],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[2,1,0,2],[1,2,2,2]],[[1,1,0,2],[1,3,3,2],[2,1,1,2],[0,2,2,1]],[[1,1,0,1],[1,4,3,2],[2,1,1,2],[0,2,2,1]],[[1,1,0,1],[1,3,4,2],[2,1,1,2],[0,2,2,1]],[[1,1,0,1],[1,3,3,3],[2,1,1,2],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,1,1,3],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,1,1,2],[0,3,2,1]],[[1,1,0,1],[1,3,3,2],[2,1,1,2],[0,2,3,1]],[[1,1,0,1],[1,3,3,2],[2,1,1,2],[0,2,2,2]],[[1,1,0,2],[1,3,3,2],[2,1,2,2],[0,2,1,1]],[[1,1,0,1],[1,4,3,2],[2,1,2,2],[0,2,1,1]],[[1,1,0,1],[1,3,4,2],[2,1,2,2],[0,2,1,1]],[[1,1,0,1],[1,3,3,3],[2,1,2,2],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,1,2,3],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,1,2,2],[0,2,1,2]],[[1,1,0,2],[1,3,3,2],[2,1,2,2],[0,2,2,0]],[[1,1,0,1],[1,4,3,2],[2,1,2,2],[0,2,2,0]],[[1,1,0,1],[1,3,4,2],[2,1,2,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,3],[2,1,2,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,1,1],[0,2,3,2],[2,0,3,3],[0,2,2,0]],[[1,2,1,1],[0,2,3,3],[2,0,3,2],[0,2,2,0]],[[1,2,1,1],[0,2,4,2],[2,0,3,2],[0,2,2,0]],[[1,2,1,2],[0,2,3,2],[2,0,3,2],[0,2,2,0]],[[1,2,1,1],[0,2,3,2],[2,0,3,2],[0,2,1,2]],[[1,2,1,1],[0,2,3,2],[2,0,3,3],[0,2,1,1]],[[1,2,1,1],[0,2,3,3],[2,0,3,2],[0,2,1,1]],[[1,1,0,2],[1,3,3,2],[2,1,3,0],[0,2,2,1]],[[1,1,0,1],[1,4,3,2],[2,1,3,0],[0,2,2,1]],[[1,1,0,1],[1,3,4,2],[2,1,3,0],[0,2,2,1]],[[1,1,0,1],[1,3,3,3],[2,1,3,0],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,1,4,0],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,1,3,0],[0,3,2,1]],[[1,1,0,1],[1,3,3,2],[2,1,3,0],[0,2,3,1]],[[1,1,0,1],[1,3,3,2],[2,1,3,0],[0,2,2,2]],[[1,1,0,2],[1,3,3,2],[2,1,3,1],[0,2,1,1]],[[1,1,0,1],[1,4,3,2],[2,1,3,1],[0,2,1,1]],[[1,1,0,1],[1,3,4,2],[2,1,3,1],[0,2,1,1]],[[1,1,0,1],[1,3,3,3],[2,1,3,1],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,1,4,1],[0,2,1,1]],[[1,1,0,2],[1,3,3,2],[2,1,3,1],[0,2,2,0]],[[1,1,0,1],[1,4,3,2],[2,1,3,1],[0,2,2,0]],[[1,1,0,1],[1,3,4,2],[2,1,3,1],[0,2,2,0]],[[1,1,0,1],[1,3,3,3],[2,1,3,1],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,1,4,1],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,1,3,1],[0,3,2,0]],[[1,1,0,1],[1,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,1,1],[0,2,4,2],[2,0,3,2],[0,2,1,1]],[[1,2,1,2],[0,2,3,2],[2,0,3,2],[0,2,1,1]],[[1,2,1,1],[0,2,3,2],[2,0,3,2],[0,1,2,2]],[[1,2,1,1],[0,2,3,2],[2,0,3,3],[0,1,2,1]],[[1,2,1,1],[0,2,3,3],[2,0,3,2],[0,1,2,1]],[[1,2,1,1],[0,2,4,2],[2,0,3,2],[0,1,2,1]],[[1,2,1,2],[0,2,3,2],[2,0,3,2],[0,1,2,1]],[[1,2,1,1],[0,2,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,2],[2,0,3,1],[1,3,2,0]],[[1,2,1,1],[0,2,3,2],[2,0,3,1],[2,2,2,0]],[[1,2,1,1],[0,2,3,2],[2,0,4,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,2],[3,0,3,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,3],[2,0,3,1],[1,2,2,0]],[[1,2,1,1],[0,2,4,2],[2,0,3,1],[1,2,2,0]],[[1,2,1,2],[0,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,2],[2,0,4,1],[1,2,1,1]],[[1,2,1,1],[0,2,3,3],[2,0,3,1],[1,2,1,1]],[[1,2,1,1],[0,2,4,2],[2,0,3,1],[1,2,1,1]],[[1,2,1,2],[0,2,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,1,1],[0,2,3,2],[2,0,3,0],[1,2,2,2]],[[1,2,1,1],[0,2,3,2],[2,0,3,0],[1,2,3,1]],[[1,2,1,1],[0,2,3,2],[2,0,3,0],[1,3,2,1]],[[1,2,1,1],[0,2,3,2],[2,0,3,0],[2,2,2,1]],[[1,2,1,1],[0,2,3,2],[2,0,4,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,2],[3,0,3,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,3],[2,0,3,0],[1,2,2,1]],[[1,2,1,1],[0,2,4,2],[2,0,3,0],[1,2,2,1]],[[1,2,1,2],[0,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,2],[2,0,2,3],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[3,2,0,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,0,1],[2,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,0,1],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,0,1],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[2,2,0,1],[1,2,2,2]],[[1,1,0,2],[1,3,3,2],[2,2,0,2],[0,2,2,1]],[[1,1,0,1],[1,4,3,2],[2,2,0,2],[0,2,2,1]],[[1,1,0,1],[1,3,4,2],[2,2,0,2],[0,2,2,1]],[[1,1,0,1],[1,3,3,3],[2,2,0,2],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,0,3],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,0,2],[0,3,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,0,2],[0,2,3,1]],[[1,1,0,1],[1,3,3,2],[2,2,0,2],[0,2,2,2]],[[1,1,0,1],[1,3,3,2],[3,2,0,2],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,0,2],[2,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,0,2],[1,3,1,1]],[[1,1,0,1],[1,3,3,2],[3,2,0,2],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,0,2],[2,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,0,2],[1,3,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,0,2],[1,2,3,0]],[[1,1,0,1],[1,3,3,2],[3,2,1,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,0],[2,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,0],[1,3,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,0],[1,2,3,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,0],[1,2,2,2]],[[1,1,0,1],[1,3,3,2],[3,2,1,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,1,1],[2,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,1,1],[1,3,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,1,1],[1,2,3,0]],[[1,1,0,2],[1,3,3,2],[2,2,1,2],[0,1,2,1]],[[1,1,0,1],[1,4,3,2],[2,2,1,2],[0,1,2,1]],[[1,1,0,1],[1,3,4,2],[2,2,1,2],[0,1,2,1]],[[1,1,0,1],[1,3,3,3],[2,2,1,2],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,3],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,2],[0,1,3,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,2],[0,1,2,2]],[[1,1,0,2],[1,3,3,2],[2,2,1,2],[1,0,2,1]],[[1,1,0,1],[1,4,3,2],[2,2,1,2],[1,0,2,1]],[[1,1,0,1],[1,3,4,2],[2,2,1,2],[1,0,2,1]],[[1,1,0,1],[1,3,3,3],[2,2,1,2],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,3],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,2],[1,0,3,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,2],[1,0,2,2]],[[1,1,0,1],[1,3,3,2],[3,2,1,2],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,2],[2,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,1,2],[1,3,0,1]],[[1,1,0,1],[1,3,3,2],[3,2,1,2],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,2,1,2],[2,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,3],[2,0,2,2],[1,2,2,0]],[[1,2,1,1],[0,2,4,2],[2,0,2,2],[1,2,2,0]],[[1,2,1,2],[0,2,3,2],[2,0,2,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,2],[2,0,2,2],[1,2,1,2]],[[1,2,1,1],[0,2,3,2],[2,0,2,3],[1,2,1,1]],[[1,2,1,1],[0,2,3,3],[2,0,2,2],[1,2,1,1]],[[1,2,1,1],[0,2,4,2],[2,0,2,2],[1,2,1,1]],[[1,2,1,2],[0,2,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,1,1],[0,2,3,2],[2,0,2,2],[0,2,2,2]],[[1,2,1,1],[0,2,3,2],[2,0,2,2],[0,2,3,1]],[[1,1,0,1],[1,3,3,2],[3,2,2,0],[1,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,0],[2,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,0],[1,3,1,1]],[[1,1,0,1],[1,3,3,2],[3,2,2,1],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,1],[2,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,1],[1,3,0,1]],[[1,1,0,1],[1,3,3,2],[3,2,2,1],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,2,2,1],[2,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,1,1],[0,2,3,2],[2,0,2,3],[0,2,2,1]],[[1,2,1,1],[0,2,3,3],[2,0,2,2],[0,2,2,1]],[[1,2,1,1],[0,2,4,2],[2,0,2,2],[0,2,2,1]],[[1,2,1,2],[0,2,3,2],[2,0,2,2],[0,2,2,1]],[[1,2,1,1],[0,2,3,2],[2,0,1,2],[1,2,2,2]],[[1,1,0,2],[1,3,3,2],[2,2,2,2],[0,0,2,1]],[[1,1,0,1],[1,4,3,2],[2,2,2,2],[0,0,2,1]],[[1,1,0,1],[1,3,4,2],[2,2,2,2],[0,0,2,1]],[[1,1,0,1],[1,3,3,3],[2,2,2,2],[0,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,3],[0,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,2],[0,0,2,2]],[[1,1,0,2],[1,3,3,2],[2,2,2,2],[0,1,1,1]],[[1,1,0,1],[1,4,3,2],[2,2,2,2],[0,1,1,1]],[[1,1,0,1],[1,3,4,2],[2,2,2,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,3],[2,2,2,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,3],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,2],[0,1,1,2]],[[1,1,0,2],[1,3,3,2],[2,2,2,2],[0,1,2,0]],[[1,1,0,1],[1,4,3,2],[2,2,2,2],[0,1,2,0]],[[1,1,0,1],[1,3,4,2],[2,2,2,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,3],[2,2,2,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,2,3],[0,1,2,0]],[[1,1,0,2],[1,3,3,2],[2,2,2,2],[0,2,0,1]],[[1,1,0,1],[1,4,3,2],[2,2,2,2],[0,2,0,1]],[[1,1,0,1],[1,3,4,2],[2,2,2,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,3],[2,2,2,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,3],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,2],[0,2,0,2]],[[1,1,0,2],[1,3,3,2],[2,2,2,2],[0,2,1,0]],[[1,1,0,1],[1,4,3,2],[2,2,2,2],[0,2,1,0]],[[1,1,0,1],[1,3,4,2],[2,2,2,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,3],[2,2,2,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,1,1],[0,2,3,2],[2,0,1,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,2],[2,0,1,2],[1,3,2,1]],[[1,2,1,1],[0,2,3,2],[2,0,1,2],[2,2,2,1]],[[1,2,1,1],[0,2,3,2],[2,0,1,3],[1,2,2,1]],[[1,2,1,1],[0,2,3,2],[3,0,1,2],[1,2,2,1]],[[1,2,1,1],[0,2,3,3],[2,0,1,2],[1,2,2,1]],[[1,2,1,1],[0,2,4,2],[2,0,1,2],[1,2,2,1]],[[1,2,1,2],[0,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,2],[1,3,3,2],[2,2,2,2],[1,0,1,1]],[[1,1,0,1],[1,4,3,2],[2,2,2,2],[1,0,1,1]],[[1,1,0,1],[1,3,4,2],[2,2,2,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,3],[2,2,2,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,3],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,2],[1,0,1,2]],[[1,1,0,2],[1,3,3,2],[2,2,2,2],[1,0,2,0]],[[1,1,0,1],[1,4,3,2],[2,2,2,2],[1,0,2,0]],[[1,1,0,1],[1,3,4,2],[2,2,2,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,3],[2,2,2,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,2,3],[1,0,2,0]],[[1,1,0,2],[1,3,3,2],[2,2,2,2],[1,1,0,1]],[[1,1,0,1],[1,4,3,2],[2,2,2,2],[1,1,0,1]],[[1,1,0,1],[1,3,4,2],[2,2,2,2],[1,1,0,1]],[[1,1,0,1],[1,3,3,3],[2,2,2,2],[1,1,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,3],[1,1,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,2,2],[1,1,0,2]],[[1,1,0,2],[1,3,3,2],[2,2,2,2],[1,1,1,0]],[[1,1,0,1],[1,4,3,2],[2,2,2,2],[1,1,1,0]],[[1,1,0,1],[1,3,4,2],[2,2,2,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,3],[2,2,2,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,1,1],[0,2,3,3],[1,3,3,1],[1,2,0,0]],[[1,2,1,1],[0,2,4,2],[1,3,3,1],[1,2,0,0]],[[1,2,1,2],[0,2,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,0,2],[1,3,3,2],[2,2,3,0],[0,1,2,1]],[[1,1,0,1],[1,4,3,2],[2,2,3,0],[0,1,2,1]],[[1,1,0,1],[1,3,4,2],[2,2,3,0],[0,1,2,1]],[[1,1,0,1],[1,3,3,3],[2,2,3,0],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,4,0],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,3,0],[0,1,3,1]],[[1,1,0,1],[1,3,3,2],[2,2,3,0],[0,1,2,2]],[[1,1,0,2],[1,3,3,2],[2,2,3,0],[0,2,1,1]],[[1,1,0,1],[1,4,3,2],[2,2,3,0],[0,2,1,1]],[[1,1,0,1],[1,3,4,2],[2,2,3,0],[0,2,1,1]],[[1,1,0,1],[1,3,3,3],[2,2,3,0],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,4,0],[0,2,1,1]],[[1,1,0,2],[1,3,3,2],[2,2,3,0],[1,0,2,1]],[[1,1,0,1],[1,4,3,2],[2,2,3,0],[1,0,2,1]],[[1,1,0,1],[1,3,4,2],[2,2,3,0],[1,0,2,1]],[[1,1,0,1],[1,3,3,3],[2,2,3,0],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,4,0],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,3,0],[1,0,3,1]],[[1,1,0,1],[1,3,3,2],[2,2,3,0],[1,0,2,2]],[[1,1,0,2],[1,3,3,2],[2,2,3,0],[1,1,1,1]],[[1,1,0,1],[1,4,3,2],[2,2,3,0],[1,1,1,1]],[[1,1,0,1],[1,3,4,2],[2,2,3,0],[1,1,1,1]],[[1,1,0,1],[1,3,3,3],[2,2,3,0],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,4,0],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[3,2,3,0],[1,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,2,3,0],[2,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,2,3,0],[1,3,1,0]],[[1,1,0,2],[1,3,3,2],[2,2,3,1],[0,0,2,1]],[[1,1,0,1],[1,4,3,2],[2,2,3,1],[0,0,2,1]],[[1,1,0,1],[1,3,4,2],[2,2,3,1],[0,0,2,1]],[[1,1,0,1],[1,3,3,3],[2,2,3,1],[0,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,2,4,1],[0,0,2,1]],[[1,1,0,2],[1,3,3,2],[2,2,3,1],[0,1,1,1]],[[1,1,0,1],[1,4,3,2],[2,2,3,1],[0,1,1,1]],[[1,1,0,1],[1,3,4,2],[2,2,3,1],[0,1,1,1]],[[1,1,0,1],[1,3,3,3],[2,2,3,1],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,4,1],[0,1,1,1]],[[1,1,0,2],[1,3,3,2],[2,2,3,1],[0,1,2,0]],[[1,1,0,1],[1,4,3,2],[2,2,3,1],[0,1,2,0]],[[1,1,0,1],[1,3,4,2],[2,2,3,1],[0,1,2,0]],[[1,1,0,1],[1,3,3,3],[2,2,3,1],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,4,1],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,3,1],[0,1,3,0]],[[1,1,0,2],[1,3,3,2],[2,2,3,1],[0,2,0,1]],[[1,1,0,1],[1,4,3,2],[2,2,3,1],[0,2,0,1]],[[1,1,0,1],[1,3,4,2],[2,2,3,1],[0,2,0,1]],[[1,1,0,1],[1,3,3,3],[2,2,3,1],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,4,1],[0,2,0,1]],[[1,1,0,2],[1,3,3,2],[2,2,3,1],[0,2,1,0]],[[1,1,0,1],[1,4,3,2],[2,2,3,1],[0,2,1,0]],[[1,1,0,1],[1,3,4,2],[2,2,3,1],[0,2,1,0]],[[1,1,0,1],[1,3,3,3],[2,2,3,1],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,2,4,1],[0,2,1,0]],[[1,1,0,2],[1,3,3,2],[2,2,3,1],[1,0,1,1]],[[1,1,0,1],[1,4,3,2],[2,2,3,1],[1,0,1,1]],[[1,1,0,1],[1,3,4,2],[2,2,3,1],[1,0,1,1]],[[1,1,0,1],[1,3,3,3],[2,2,3,1],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,2,4,1],[1,0,1,1]],[[1,1,0,2],[1,3,3,2],[2,2,3,1],[1,0,2,0]],[[1,1,0,1],[1,4,3,2],[2,2,3,1],[1,0,2,0]],[[1,1,0,1],[1,3,4,2],[2,2,3,1],[1,0,2,0]],[[1,1,0,1],[1,3,3,3],[2,2,3,1],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,4,1],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,2,3,1],[1,0,3,0]],[[1,1,0,2],[1,3,3,2],[2,2,3,1],[1,1,0,1]],[[1,1,0,1],[1,4,3,2],[2,2,3,1],[1,1,0,1]],[[1,1,0,1],[1,3,4,2],[2,2,3,1],[1,1,0,1]],[[1,1,0,1],[1,3,3,3],[2,2,3,1],[1,1,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,4,1],[1,1,0,1]],[[1,1,0,2],[1,3,3,2],[2,2,3,1],[1,1,1,0]],[[1,1,0,1],[1,4,3,2],[2,2,3,1],[1,1,1,0]],[[1,1,0,1],[1,3,4,2],[2,2,3,1],[1,1,1,0]],[[1,1,0,1],[1,3,3,3],[2,2,3,1],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,1,1],[0,2,3,3],[1,3,2,1],[1,2,1,0]],[[1,1,0,2],[1,3,3,2],[2,2,3,2],[0,1,0,1]],[[1,1,0,1],[1,4,3,2],[2,2,3,2],[0,1,0,1]],[[1,1,0,1],[1,3,4,2],[2,2,3,2],[0,1,0,1]],[[1,1,0,1],[1,3,3,3],[2,2,3,2],[0,1,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,1,1],[0,2,4,2],[1,3,2,1],[1,2,1,0]],[[1,2,1,2],[0,2,3,2],[1,3,2,1],[1,2,1,0]],[[1,2,1,1],[0,2,3,3],[1,3,2,1],[1,2,0,1]],[[1,2,1,1],[0,2,4,2],[1,3,2,1],[1,2,0,1]],[[1,2,1,2],[0,2,3,2],[1,3,2,1],[1,2,0,1]],[[1,2,1,1],[0,2,3,3],[1,3,2,1],[1,1,2,0]],[[1,2,1,1],[0,2,4,2],[1,3,2,1],[1,1,2,0]],[[1,2,1,2],[0,2,3,2],[1,3,2,1],[1,1,2,0]],[[1,2,1,1],[0,2,3,3],[1,3,2,1],[1,1,1,1]],[[1,2,1,1],[0,2,4,2],[1,3,2,1],[1,1,1,1]],[[1,2,1,2],[0,2,3,2],[1,3,2,1],[1,1,1,1]],[[1,2,1,1],[0,2,3,3],[1,3,2,0],[1,2,1,1]],[[1,2,1,1],[0,2,4,2],[1,3,2,0],[1,2,1,1]],[[1,2,1,2],[0,2,3,2],[1,3,2,0],[1,2,1,1]],[[1,2,1,1],[0,2,3,3],[1,3,2,0],[1,1,2,1]],[[1,2,1,1],[0,2,4,2],[1,3,2,0],[1,1,2,1]],[[1,2,1,2],[0,2,3,2],[1,3,2,0],[1,1,2,1]],[[1,1,0,2],[1,3,3,2],[2,2,3,2],[1,0,0,1]],[[1,1,0,1],[1,4,3,2],[2,2,3,2],[1,0,0,1]],[[1,1,0,1],[1,3,4,2],[2,2,3,2],[1,0,0,1]],[[1,1,0,1],[1,3,3,3],[2,2,3,2],[1,0,0,1]],[[1,1,0,1],[1,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,1,1],[0,2,3,2],[1,3,1,3],[1,2,1,0]],[[1,2,1,1],[0,2,3,3],[1,3,1,2],[1,2,1,0]],[[1,2,1,1],[0,2,4,2],[1,3,1,2],[1,2,1,0]],[[1,2,1,2],[0,2,3,2],[1,3,1,2],[1,2,1,0]],[[1,2,1,1],[0,2,3,2],[1,3,1,2],[1,2,0,2]],[[1,2,1,1],[0,2,3,2],[1,3,1,3],[1,2,0,1]],[[1,2,1,1],[0,2,3,3],[1,3,1,2],[1,2,0,1]],[[1,2,1,1],[0,2,4,2],[1,3,1,2],[1,2,0,1]],[[1,2,1,2],[0,2,3,2],[1,3,1,2],[1,2,0,1]],[[1,2,1,1],[0,2,3,2],[1,3,1,3],[1,1,2,0]],[[1,2,1,1],[0,2,3,3],[1,3,1,2],[1,1,2,0]],[[1,2,1,1],[0,2,4,2],[1,3,1,2],[1,1,2,0]],[[1,2,1,2],[0,2,3,2],[1,3,1,2],[1,1,2,0]],[[1,2,1,1],[0,2,3,2],[1,3,1,2],[1,1,1,2]],[[1,2,1,1],[0,2,3,2],[1,3,1,3],[1,1,1,1]],[[1,2,1,1],[0,2,3,3],[1,3,1,2],[1,1,1,1]],[[1,2,1,1],[0,2,4,2],[1,3,1,2],[1,1,1,1]],[[1,2,1,2],[0,2,3,2],[1,3,1,2],[1,1,1,1]],[[1,2,1,1],[0,2,3,3],[1,3,1,1],[1,2,2,0]],[[1,2,1,1],[0,2,4,2],[1,3,1,1],[1,2,2,0]],[[1,2,1,2],[0,2,3,2],[1,3,1,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,3],[1,3,1,0],[1,2,2,1]],[[1,2,1,1],[0,2,4,2],[1,3,1,0],[1,2,2,1]],[[1,2,1,2],[0,2,3,2],[1,3,1,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,2],[1,3,0,3],[1,2,2,0]],[[1,2,1,1],[0,2,3,3],[1,3,0,2],[1,2,2,0]],[[1,2,1,1],[0,2,4,2],[1,3,0,2],[1,2,2,0]],[[1,2,1,2],[0,2,3,2],[1,3,0,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,2],[1,3,0,2],[1,2,1,2]],[[1,2,1,1],[0,2,3,2],[1,3,0,3],[1,2,1,1]],[[1,2,1,1],[0,2,3,3],[1,3,0,2],[1,2,1,1]],[[1,2,1,1],[0,2,4,2],[1,3,0,2],[1,2,1,1]],[[1,2,1,2],[0,2,3,2],[1,3,0,2],[1,2,1,1]],[[1,2,1,1],[0,2,3,2],[1,3,0,2],[1,1,2,2]],[[1,2,1,1],[0,2,3,2],[1,3,0,2],[1,1,3,1]],[[1,2,1,1],[0,2,3,2],[1,3,0,3],[1,1,2,1]],[[1,2,1,1],[0,2,3,3],[1,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,2,4,2],[1,3,0,2],[1,1,2,1]],[[1,2,1,2],[0,2,3,2],[1,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,2,3,3],[1,3,0,1],[1,2,2,1]],[[1,2,1,1],[0,2,4,2],[1,3,0,1],[1,2,2,1]],[[1,2,1,2],[0,2,3,2],[1,3,0,1],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[3,3,0,0],[1,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,0],[2,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,0],[1,3,2,1]],[[1,1,0,2],[1,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,0,1],[1,4,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,0,1],[1,3,4,2],[2,3,0,1],[0,2,2,1]],[[1,1,0,1],[1,3,3,3],[2,3,0,1],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[3,3,0,1],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,4,0,1],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,1],[0,3,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,1],[0,2,3,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,1],[0,2,2,2]],[[1,1,0,2],[1,3,3,2],[2,3,0,1],[1,1,2,1]],[[1,1,0,1],[1,4,3,2],[2,3,0,1],[1,1,2,1]],[[1,1,0,1],[1,3,4,2],[2,3,0,1],[1,1,2,1]],[[1,1,0,1],[1,3,3,3],[2,3,0,1],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[3,3,0,1],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,4,0,1],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,1],[2,1,2,1]],[[1,1,0,1],[1,3,3,2],[3,3,0,1],[1,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,0,1],[2,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,0,1],[1,3,2,0]],[[1,1,0,2],[1,3,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,0,1],[1,4,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,0,1],[1,3,4,2],[2,3,0,2],[0,1,2,1]],[[1,1,0,1],[1,3,3,3],[2,3,0,2],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[3,3,0,2],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,4,0,2],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,3],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[0,1,3,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[0,1,2,2]],[[1,1,0,2],[1,3,3,2],[2,3,0,2],[0,2,1,1]],[[1,1,0,1],[1,4,3,2],[2,3,0,2],[0,2,1,1]],[[1,1,0,1],[1,3,4,2],[2,3,0,2],[0,2,1,1]],[[1,1,0,1],[1,3,3,3],[2,3,0,2],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[3,3,0,2],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,4,0,2],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,3],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[0,3,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[0,2,1,2]],[[1,1,0,2],[1,3,3,2],[2,3,0,2],[0,2,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,0,2],[0,2,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,0,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,3],[2,3,0,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[3,3,0,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,4,0,2],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,0,3],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[0,3,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[0,2,3,0]],[[1,1,0,2],[1,3,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,0,1],[1,4,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,0,1],[1,3,4,2],[2,3,0,2],[1,0,2,1]],[[1,1,0,1],[1,3,3,3],[2,3,0,2],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[3,3,0,2],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,4,0,2],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,3],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[2,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[1,0,3,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[1,0,2,2]],[[1,1,0,2],[1,3,3,2],[2,3,0,2],[1,1,1,1]],[[1,1,0,1],[1,4,3,2],[2,3,0,2],[1,1,1,1]],[[1,1,0,1],[1,3,4,2],[2,3,0,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,3],[2,3,0,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[3,3,0,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,4,0,2],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,3],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[2,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[1,1,1,2]],[[1,1,0,2],[1,3,3,2],[2,3,0,2],[1,1,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,0,2],[1,1,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,0,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,3],[2,3,0,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[3,3,0,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,4,0,2],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,0,3],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,1,1],[0,2,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,1,1],[0,2,3,3],[1,2,3,2],[1,1,0,1]],[[1,2,1,1],[0,2,4,2],[1,2,3,2],[1,1,0,1]],[[1,1,0,2],[1,3,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,0,1],[1,4,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,0,1],[1,3,4,2],[2,3,1,0],[0,2,2,1]],[[1,1,0,1],[1,3,3,3],[2,3,1,0],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[3,3,1,0],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,4,1,0],[0,2,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,0],[0,3,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,0],[0,2,3,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,0],[0,2,2,2]],[[1,1,0,2],[1,3,3,2],[2,3,1,0],[1,1,2,1]],[[1,1,0,1],[1,4,3,2],[2,3,1,0],[1,1,2,1]],[[1,1,0,1],[1,3,4,2],[2,3,1,0],[1,1,2,1]],[[1,1,0,1],[1,3,3,3],[2,3,1,0],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[3,3,1,0],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,4,1,0],[1,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,0],[2,1,2,1]],[[1,1,0,2],[1,3,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,1,1],[0,2,2,0]],[[1,1,0,1],[1,3,3,3],[2,3,1,1],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[3,3,1,1],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,4,1,1],[0,2,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,1,1],[0,3,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,1,1],[0,2,3,0]],[[1,1,0,2],[1,3,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,1,1],[1,1,2,0]],[[1,1,0,1],[1,3,3,3],[2,3,1,1],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[3,3,1,1],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,4,1,1],[1,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,1,2],[0,2,3,2],[1,2,3,2],[1,1,0,1]],[[1,1,0,2],[1,3,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,0,1],[1,4,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,0,1],[1,3,4,2],[2,3,1,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,3],[2,3,1,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[3,3,1,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,4,1,2],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,3],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,2],[0,1,1,2]],[[1,1,0,2],[1,3,3,2],[2,3,1,2],[0,1,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,1,2],[0,1,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,1,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,3],[2,3,1,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[3,3,1,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,4,1,2],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,1,3],[0,1,2,0]],[[1,1,0,2],[1,3,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,0,1],[1,4,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,0,1],[1,3,4,2],[2,3,1,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,3],[2,3,1,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[3,3,1,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,4,1,2],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,3],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,2],[0,3,0,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,2],[0,2,0,2]],[[1,1,0,2],[1,3,3,2],[2,3,1,2],[0,2,1,0]],[[1,1,0,1],[1,4,3,2],[2,3,1,2],[0,2,1,0]],[[1,1,0,1],[1,3,4,2],[2,3,1,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,3],[2,3,1,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[3,3,1,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,4,1,2],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,3,1,3],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,1,1],[0,2,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,1,1],[0,2,3,3],[1,2,3,1],[1,2,1,0]],[[1,1,0,2],[1,3,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,0,1],[1,4,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,0,1],[1,3,4,2],[2,3,1,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,3],[2,3,1,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[3,3,1,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,4,1,2],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,3],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,2],[2,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,2],[1,0,1,2]],[[1,1,0,2],[1,3,3,2],[2,3,1,2],[1,0,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,1,2],[1,0,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,1,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,3],[2,3,1,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[3,3,1,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,4,1,2],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,1,3],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,1,2],[2,0,2,0]],[[1,1,0,2],[1,3,3,2],[2,3,1,2],[1,1,0,1]],[[1,1,0,1],[1,4,3,2],[2,3,1,2],[1,1,0,1]],[[1,1,0,1],[1,3,4,2],[2,3,1,2],[1,1,0,1]],[[1,1,0,1],[1,3,3,3],[2,3,1,2],[1,1,0,1]],[[1,1,0,1],[1,3,3,2],[3,3,1,2],[1,1,0,1]],[[1,1,0,1],[1,3,3,2],[2,4,1,2],[1,1,0,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,3],[1,1,0,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,2],[2,1,0,1]],[[1,1,0,1],[1,3,3,2],[2,3,1,2],[1,1,0,2]],[[1,1,0,2],[1,3,3,2],[2,3,1,2],[1,1,1,0]],[[1,1,0,1],[1,4,3,2],[2,3,1,2],[1,1,1,0]],[[1,1,0,1],[1,3,4,2],[2,3,1,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,3],[2,3,1,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[3,3,1,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[2,4,1,2],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[2,3,1,3],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,1,1],[0,2,4,2],[1,2,3,1],[1,2,1,0]],[[1,2,1,2],[0,2,3,2],[1,2,3,1],[1,2,1,0]],[[1,2,1,1],[0,2,3,2],[1,2,4,1],[1,2,0,1]],[[1,2,1,1],[0,2,3,3],[1,2,3,1],[1,2,0,1]],[[1,2,1,1],[0,2,4,2],[1,2,3,1],[1,2,0,1]],[[1,2,1,2],[0,2,3,2],[1,2,3,1],[1,2,0,1]],[[1,1,0,2],[1,3,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,0,1],[1,4,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,0,1],[1,3,4,2],[2,3,1,2],[1,2,0,0]],[[1,1,0,1],[1,3,3,3],[2,3,1,2],[1,2,0,0]],[[1,1,0,1],[1,3,3,2],[3,3,1,2],[1,2,0,0]],[[1,1,0,1],[1,3,3,2],[2,4,1,2],[1,2,0,0]],[[1,1,0,1],[1,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,1,1],[0,2,3,2],[1,2,3,1],[1,1,3,0]],[[1,2,1,1],[0,2,3,2],[1,2,4,1],[1,1,2,0]],[[1,2,1,1],[0,2,3,3],[1,2,3,1],[1,1,2,0]],[[1,2,1,1],[0,2,4,2],[1,2,3,1],[1,1,2,0]],[[1,2,1,2],[0,2,3,2],[1,2,3,1],[1,1,2,0]],[[1,2,1,1],[0,2,3,2],[1,2,4,1],[1,1,1,1]],[[1,2,1,1],[0,2,3,3],[1,2,3,1],[1,1,1,1]],[[1,2,1,1],[0,2,4,2],[1,2,3,1],[1,1,1,1]],[[1,2,1,2],[0,2,3,2],[1,2,3,1],[1,1,1,1]],[[1,2,1,1],[0,2,3,2],[1,2,4,1],[1,0,2,1]],[[1,2,1,1],[0,2,3,3],[1,2,3,1],[1,0,2,1]],[[1,2,1,1],[0,2,4,2],[1,2,3,1],[1,0,2,1]],[[1,2,1,2],[0,2,3,2],[1,2,3,1],[1,0,2,1]],[[1,2,1,1],[0,2,3,2],[1,2,4,0],[1,2,1,1]],[[1,2,1,1],[0,2,3,3],[1,2,3,0],[1,2,1,1]],[[1,2,1,1],[0,2,4,2],[1,2,3,0],[1,2,1,1]],[[1,2,1,2],[0,2,3,2],[1,2,3,0],[1,2,1,1]],[[1,2,1,1],[0,2,3,2],[1,2,3,0],[1,1,2,2]],[[1,2,1,1],[0,2,3,2],[1,2,3,0],[1,1,3,1]],[[1,2,1,1],[0,2,3,2],[1,2,4,0],[1,1,2,1]],[[1,2,1,1],[0,2,3,3],[1,2,3,0],[1,1,2,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,0,1],[1,4,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,0,1],[1,3,4,2],[2,3,2,0],[0,1,2,1]],[[1,1,0,1],[1,3,3,3],[2,3,2,0],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[3,3,2,0],[0,1,2,1]],[[1,1,0,1],[1,3,3,2],[2,4,2,0],[0,1,2,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,0],[0,2,1,1]],[[1,1,0,1],[1,4,3,2],[2,3,2,0],[0,2,1,1]],[[1,1,0,1],[1,3,4,2],[2,3,2,0],[0,2,1,1]],[[1,1,0,1],[1,3,3,3],[2,3,2,0],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[3,3,2,0],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,4,2,0],[0,2,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,2,0],[0,3,1,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,0],[1,0,2,1]],[[1,1,0,1],[1,4,3,2],[2,3,2,0],[1,0,2,1]],[[1,1,0,1],[1,3,4,2],[2,3,2,0],[1,0,2,1]],[[1,1,0,1],[1,3,3,3],[2,3,2,0],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[3,3,2,0],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,4,2,0],[1,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,2,0],[2,0,2,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,0,1],[1,4,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,0,1],[1,3,4,2],[2,3,2,0],[1,1,1,1]],[[1,1,0,1],[1,3,3,3],[2,3,2,0],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[3,3,2,0],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,4,2,0],[1,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,2,0],[2,1,1,1]],[[1,1,0,1],[1,4,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,0,1],[1,3,4,2],[2,3,2,0],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[3,3,2,0],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,4,2,0],[1,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,1,1],[0,2,4,2],[1,2,3,0],[1,1,2,1]],[[1,2,1,2],[0,2,3,2],[1,2,3,0],[1,1,2,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,0,1],[1,4,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,0,1],[1,3,4,2],[2,3,2,1],[0,1,1,1]],[[1,1,0,1],[1,3,3,3],[2,3,2,1],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[3,3,2,1],[0,1,1,1]],[[1,1,0,1],[1,3,3,2],[2,4,2,1],[0,1,1,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,1],[0,1,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,2,1],[0,1,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,2,1],[0,1,2,0]],[[1,1,0,1],[1,3,3,3],[2,3,2,1],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[3,3,2,1],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,4,2,1],[0,1,2,0]],[[1,1,0,2],[1,3,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,0,1],[1,4,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,0,1],[1,3,4,2],[2,3,2,1],[0,2,0,1]],[[1,1,0,1],[1,3,3,3],[2,3,2,1],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[3,3,2,1],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,4,2,1],[0,2,0,1]],[[1,1,0,1],[1,3,3,2],[2,3,2,1],[0,3,0,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,0,1],[1,4,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,0,1],[1,3,4,2],[2,3,2,1],[0,2,1,0]],[[1,1,0,1],[1,3,3,3],[2,3,2,1],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[3,3,2,1],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,4,2,1],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,1,1],[0,2,3,2],[1,2,2,3],[1,2,1,0]],[[1,2,1,1],[0,2,3,3],[1,2,2,2],[1,2,1,0]],[[1,2,1,1],[0,2,4,2],[1,2,2,2],[1,2,1,0]],[[1,2,1,2],[0,2,3,2],[1,2,2,2],[1,2,1,0]],[[1,2,1,1],[0,2,3,2],[1,2,2,2],[1,2,0,2]],[[1,2,1,1],[0,2,3,2],[1,2,2,3],[1,2,0,1]],[[1,2,1,1],[0,2,3,3],[1,2,2,2],[1,2,0,1]],[[1,2,1,1],[0,2,4,2],[1,2,2,2],[1,2,0,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,0,1],[1,4,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,0,1],[1,3,4,2],[2,3,2,1],[1,0,1,1]],[[1,1,0,1],[1,3,3,3],[2,3,2,1],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[3,3,2,1],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,4,2,1],[1,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,2,1],[2,0,1,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,2,1],[1,0,2,0]],[[1,1,0,1],[1,3,3,3],[2,3,2,1],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[3,3,2,1],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,4,2,1],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,2,1],[2,0,2,0]],[[1,1,0,2],[1,3,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,0,1],[1,4,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,0,1],[1,3,4,2],[2,3,2,1],[1,1,0,1]],[[1,1,0,1],[1,3,3,3],[2,3,2,1],[1,1,0,1]],[[1,1,0,1],[1,3,3,2],[3,3,2,1],[1,1,0,1]],[[1,1,0,1],[1,3,3,2],[2,4,2,1],[1,1,0,1]],[[1,1,0,1],[1,3,3,2],[2,3,2,1],[2,1,0,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,1],[1,1,1,0]],[[1,1,0,1],[1,4,3,2],[2,3,2,1],[1,1,1,0]],[[1,1,0,1],[1,3,4,2],[2,3,2,1],[1,1,1,0]],[[1,1,0,1],[1,3,3,3],[2,3,2,1],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[3,3,2,1],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[2,4,2,1],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,1,2],[0,2,3,2],[1,2,2,2],[1,2,0,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,0,1],[1,4,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,0,1],[1,3,4,2],[2,3,2,1],[1,2,0,0]],[[1,1,0,1],[1,3,3,3],[2,3,2,1],[1,2,0,0]],[[1,1,0,1],[1,3,3,2],[3,3,2,1],[1,2,0,0]],[[1,1,0,1],[1,3,3,2],[2,4,2,1],[1,2,0,0]],[[1,1,0,1],[1,3,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,1,1],[0,2,3,2],[1,2,2,3],[1,1,2,0]],[[1,2,1,1],[0,2,3,3],[1,2,2,2],[1,1,2,0]],[[1,2,1,1],[0,2,4,2],[1,2,2,2],[1,1,2,0]],[[1,2,1,2],[0,2,3,2],[1,2,2,2],[1,1,2,0]],[[1,2,1,1],[0,2,3,2],[1,2,2,2],[1,1,1,2]],[[1,2,1,1],[0,2,3,2],[1,2,2,3],[1,1,1,1]],[[1,2,1,1],[0,2,3,3],[1,2,2,2],[1,1,1,1]],[[1,2,1,1],[0,2,4,2],[1,2,2,2],[1,1,1,1]],[[1,2,1,2],[0,2,3,2],[1,2,2,2],[1,1,1,1]],[[1,2,1,1],[0,2,3,2],[1,2,2,2],[1,0,2,2]],[[1,2,1,1],[0,2,3,2],[1,2,2,3],[1,0,2,1]],[[1,2,1,1],[0,2,3,3],[1,2,2,2],[1,0,2,1]],[[1,2,1,1],[0,2,4,2],[1,2,2,2],[1,0,2,1]],[[1,2,1,2],[0,2,3,2],[1,2,2,2],[1,0,2,1]],[[1,2,1,1],[0,2,3,2],[1,2,1,2],[1,1,2,2]],[[1,2,1,1],[0,2,3,2],[1,2,1,2],[1,1,3,1]],[[1,2,1,1],[0,2,3,2],[1,2,1,3],[1,1,2,1]],[[1,2,1,1],[0,2,3,3],[1,2,1,2],[1,1,2,1]],[[1,2,1,1],[0,2,4,2],[1,2,1,2],[1,1,2,1]],[[1,1,0,2],[1,3,3,2],[2,3,2,2],[0,0,1,1]],[[1,1,0,1],[1,4,3,2],[2,3,2,2],[0,0,1,1]],[[1,1,0,1],[1,3,4,2],[2,3,2,2],[0,0,1,1]],[[1,1,0,1],[1,3,3,3],[2,3,2,2],[0,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,2,3],[0,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,2,2],[0,0,1,2]],[[1,1,0,2],[1,3,3,2],[2,3,2,2],[0,0,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,2,2],[0,0,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,2,2],[0,0,2,0]],[[1,1,0,1],[1,3,3,3],[2,3,2,2],[0,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,1,2],[0,2,3,2],[1,2,1,2],[1,1,2,1]],[[1,2,1,1],[0,2,3,2],[1,2,0,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,2],[1,2,0,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,2],[1,2,0,2],[1,3,2,1]],[[1,2,1,1],[0,2,3,2],[1,2,0,2],[2,2,2,1]],[[1,2,1,1],[0,2,3,2],[1,2,0,3],[1,2,2,1]],[[1,2,1,1],[0,2,3,3],[1,2,0,2],[1,2,2,1]],[[1,2,1,1],[0,2,4,2],[1,2,0,2],[1,2,2,1]],[[1,2,1,2],[0,2,3,2],[1,2,0,2],[1,2,2,1]],[[1,2,1,1],[0,2,3,2],[1,1,3,3],[1,1,2,0]],[[1,2,1,1],[0,2,3,3],[1,1,3,2],[1,1,2,0]],[[1,2,1,1],[0,2,4,2],[1,1,3,2],[1,1,2,0]],[[1,2,1,2],[0,2,3,2],[1,1,3,2],[1,1,2,0]],[[1,2,1,1],[0,2,3,2],[1,1,3,2],[1,1,1,2]],[[1,2,1,1],[0,2,3,2],[1,1,3,3],[1,1,1,1]],[[1,2,1,1],[0,2,3,3],[1,1,3,2],[1,1,1,1]],[[1,2,1,1],[0,2,4,2],[1,1,3,2],[1,1,1,1]],[[1,2,1,2],[0,2,3,2],[1,1,3,2],[1,1,1,1]],[[1,2,1,1],[0,2,3,2],[1,1,3,2],[1,0,2,2]],[[1,2,1,1],[0,2,3,2],[1,1,3,3],[1,0,2,1]],[[1,2,1,1],[0,2,3,3],[1,1,3,2],[1,0,2,1]],[[1,2,1,1],[0,2,4,2],[1,1,3,2],[1,0,2,1]],[[1,2,1,2],[0,2,3,2],[1,1,3,2],[1,0,2,1]],[[1,2,1,1],[0,2,3,2],[1,1,3,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,2],[1,1,3,1],[1,3,2,0]],[[1,2,1,1],[0,2,3,2],[1,1,3,1],[2,2,2,0]],[[1,2,1,1],[0,2,3,2],[1,1,4,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,3],[1,1,3,1],[1,2,2,0]],[[1,2,1,1],[0,2,4,2],[1,1,3,1],[1,2,2,0]],[[1,2,1,2],[0,2,3,2],[1,1,3,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,2],[1,1,4,1],[1,2,1,1]],[[1,2,1,1],[0,2,3,3],[1,1,3,1],[1,2,1,1]],[[1,2,1,1],[0,2,4,2],[1,1,3,1],[1,2,1,1]],[[1,2,1,2],[0,2,3,2],[1,1,3,1],[1,2,1,1]],[[1,2,1,1],[0,2,3,2],[1,1,3,0],[1,2,2,2]],[[1,2,1,1],[0,2,3,2],[1,1,3,0],[1,2,3,1]],[[1,2,1,1],[0,2,3,2],[1,1,3,0],[1,3,2,1]],[[1,2,1,1],[0,2,3,2],[1,1,3,0],[2,2,2,1]],[[1,2,1,1],[0,2,3,2],[1,1,4,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,3],[1,1,3,0],[1,2,2,1]],[[1,2,1,1],[0,2,4,2],[1,1,3,0],[1,2,2,1]],[[1,2,1,2],[0,2,3,2],[1,1,3,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,2],[1,1,2,3],[1,2,2,0]],[[1,2,1,1],[0,2,3,3],[1,1,2,2],[1,2,2,0]],[[1,2,1,1],[0,2,4,2],[1,1,2,2],[1,2,2,0]],[[1,2,1,2],[0,2,3,2],[1,1,2,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,2],[1,1,2,2],[1,2,1,2]],[[1,2,1,1],[0,2,3,2],[1,1,2,3],[1,2,1,1]],[[1,2,1,1],[0,2,3,3],[1,1,2,2],[1,2,1,1]],[[1,2,1,1],[0,2,4,2],[1,1,2,2],[1,2,1,1]],[[1,2,1,2],[0,2,3,2],[1,1,2,2],[1,2,1,1]],[[1,2,1,1],[0,2,3,2],[1,1,1,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,2],[1,1,1,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,2],[1,1,1,2],[1,3,2,1]],[[1,2,1,1],[0,2,3,2],[1,1,1,2],[2,2,2,1]],[[1,2,1,1],[0,2,3,2],[1,1,1,3],[1,2,2,1]],[[1,2,1,1],[0,2,3,3],[1,1,1,2],[1,2,2,1]],[[1,2,1,1],[0,2,4,2],[1,1,1,2],[1,2,2,1]],[[1,2,1,2],[0,2,3,2],[1,1,1,2],[1,2,2,1]],[[1,2,1,1],[0,2,3,2],[1,0,3,3],[1,2,2,0]],[[1,2,1,1],[0,2,3,3],[1,0,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,4,2],[1,0,3,2],[1,2,2,0]],[[1,2,1,2],[0,2,3,2],[1,0,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,2],[1,0,3,2],[1,2,1,2]],[[1,2,1,1],[0,2,3,2],[1,0,3,3],[1,2,1,1]],[[1,2,1,1],[0,2,3,3],[1,0,3,2],[1,2,1,1]],[[1,2,1,1],[0,2,4,2],[1,0,3,2],[1,2,1,1]],[[1,2,1,2],[0,2,3,2],[1,0,3,2],[1,2,1,1]],[[1,2,1,1],[0,2,3,2],[1,0,3,2],[1,1,2,2]],[[1,2,1,1],[0,2,3,2],[1,0,3,3],[1,1,2,1]],[[1,2,1,1],[0,2,3,3],[1,0,3,2],[1,1,2,1]],[[1,2,1,1],[0,2,4,2],[1,0,3,2],[1,1,2,1]],[[1,2,1,2],[0,2,3,2],[1,0,3,2],[1,1,2,1]],[[1,2,1,1],[0,2,3,2],[1,0,2,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,2],[1,0,2,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,2],[1,0,2,3],[1,2,2,1]],[[1,2,1,1],[0,2,3,3],[1,0,2,2],[1,2,2,1]],[[1,2,1,1],[0,2,4,2],[1,0,2,2],[1,2,2,1]],[[1,2,1,2],[0,2,3,2],[1,0,2,2],[1,2,2,1]],[[1,1,0,2],[1,3,3,2],[2,3,3,0],[0,0,2,1]],[[1,1,0,1],[1,4,3,2],[2,3,3,0],[0,0,2,1]],[[1,1,0,1],[1,3,4,2],[2,3,3,0],[0,0,2,1]],[[1,1,0,1],[1,3,3,3],[2,3,3,0],[0,0,2,1]],[[1,1,0,1],[1,3,3,2],[2,3,4,0],[0,0,2,1]],[[1,1,0,1],[1,4,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,3,0],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[3,3,3,0],[0,1,2,0]],[[1,1,0,1],[1,3,3,2],[2,4,3,0],[0,1,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,0,1],[1,3,4,2],[2,3,3,0],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[3,3,3,0],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,4,3,0],[0,2,1,0]],[[1,1,0,1],[1,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,1,0,1],[1,4,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,3,0],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[3,3,3,0],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,4,3,0],[1,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,3,0],[2,0,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,0,1],[1,3,4,2],[2,3,3,0],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[3,3,3,0],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[2,4,3,0],[1,1,1,0]],[[1,1,0,1],[1,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,1,0,1],[1,4,3,2],[2,3,3,0],[1,2,0,0]],[[1,1,0,1],[1,3,4,2],[2,3,3,0],[1,2,0,0]],[[1,1,0,1],[1,3,3,2],[3,3,3,0],[1,2,0,0]],[[1,1,0,1],[1,3,3,2],[2,4,3,0],[1,2,0,0]],[[1,1,0,1],[1,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,1,1],[0,2,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,2],[0,0,3,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,2],[0,0,3,3],[1,2,2,1]],[[1,2,1,1],[0,2,3,3],[0,0,3,2],[1,2,2,1]],[[1,2,1,2],[0,2,3,2],[0,0,3,2],[1,2,2,1]],[[1,1,0,2],[1,3,3,2],[2,3,3,1],[0,0,1,1]],[[1,1,0,1],[1,4,3,2],[2,3,3,1],[0,0,1,1]],[[1,1,0,1],[1,3,4,2],[2,3,3,1],[0,0,1,1]],[[1,1,0,1],[1,3,3,3],[2,3,3,1],[0,0,1,1]],[[1,1,0,1],[1,3,3,2],[2,3,4,1],[0,0,1,1]],[[1,1,0,2],[1,3,3,2],[2,3,3,1],[0,0,2,0]],[[1,1,0,1],[1,4,3,2],[2,3,3,1],[0,0,2,0]],[[1,1,0,1],[1,3,4,2],[2,3,3,1],[0,0,2,0]],[[1,1,0,1],[1,3,3,3],[2,3,3,1],[0,0,2,0]],[[1,1,0,1],[1,3,3,2],[2,3,4,1],[0,0,2,0]],[[1,1,0,2],[1,3,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,0,1],[1,4,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,0,1],[1,3,4,2],[2,3,3,1],[0,2,0,0]],[[1,1,0,1],[1,3,3,3],[2,3,3,1],[0,2,0,0]],[[1,1,0,1],[1,3,3,2],[3,3,3,1],[0,2,0,0]],[[1,1,0,1],[1,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,1,0,2],[1,3,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,0,1],[1,4,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,0,1],[1,3,4,2],[2,3,3,1],[1,1,0,0]],[[1,1,0,1],[1,3,3,3],[2,3,3,1],[1,1,0,0]],[[1,1,0,1],[1,3,3,2],[3,3,3,1],[1,1,0,0]],[[1,1,0,1],[1,3,3,2],[2,4,3,1],[1,1,0,0]],[[1,1,0,1],[1,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,1,1],[0,2,3,1],[2,3,3,3],[0,0,2,0]],[[1,2,1,1],[0,2,3,1],[2,3,4,2],[0,0,2,0]],[[1,2,1,1],[0,2,4,1],[2,3,3,2],[0,0,2,0]],[[1,2,1,1],[0,2,3,1],[2,3,3,2],[0,0,1,2]],[[1,2,1,1],[0,2,3,1],[2,3,3,3],[0,0,1,1]],[[1,2,1,1],[0,2,3,1],[2,3,4,2],[0,0,1,1]],[[1,2,1,1],[0,2,4,1],[2,3,3,2],[0,0,1,1]],[[1,2,1,1],[0,2,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[0,2,3,1],[2,4,3,1],[1,2,0,0]],[[1,2,1,1],[0,2,3,1],[3,3,3,1],[1,2,0,0]],[[1,2,1,1],[0,2,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[0,2,3,1],[2,3,4,1],[1,1,1,0]],[[1,2,1,1],[0,2,3,1],[2,4,3,1],[1,1,1,0]],[[1,2,1,1],[0,2,3,1],[3,3,3,1],[1,1,1,0]],[[1,2,1,1],[0,2,4,1],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[0,2,3,1],[2,3,3,1],[2,1,0,1]],[[1,2,1,1],[0,2,3,1],[2,3,4,1],[1,1,0,1]],[[1,2,1,1],[0,2,3,1],[2,4,3,1],[1,1,0,1]],[[1,2,1,1],[0,2,3,1],[3,3,3,1],[1,1,0,1]],[[1,2,1,1],[0,2,4,1],[2,3,3,1],[1,1,0,1]],[[1,2,1,1],[0,2,3,1],[2,3,3,1],[1,0,3,0]],[[1,2,1,1],[0,2,3,1],[2,3,3,1],[2,0,2,0]],[[1,2,1,1],[0,2,3,1],[2,3,4,1],[1,0,2,0]],[[1,2,1,1],[0,2,3,1],[2,4,3,1],[1,0,2,0]],[[1,2,1,1],[0,2,3,1],[3,3,3,1],[1,0,2,0]],[[1,2,1,1],[0,2,4,1],[2,3,3,1],[1,0,2,0]],[[1,2,1,1],[0,2,3,1],[2,3,3,1],[2,0,1,1]],[[1,2,1,1],[0,2,3,1],[2,3,4,1],[1,0,1,1]],[[1,2,1,1],[0,2,3,1],[2,4,3,1],[1,0,1,1]],[[1,2,1,1],[0,2,3,1],[3,3,3,1],[1,0,1,1]],[[1,2,1,1],[0,2,4,1],[2,3,3,1],[1,0,1,1]],[[1,1,0,2],[1,3,3,2],[2,3,3,2],[0,0,0,1]],[[1,1,0,1],[1,4,3,2],[2,3,3,2],[0,0,0,1]],[[1,1,0,1],[1,3,4,2],[2,3,3,2],[0,0,0,1]],[[1,1,0,1],[1,3,3,3],[2,3,3,2],[0,0,0,1]],[[1,1,0,1],[1,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,1,1],[0,2,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[0,2,3,1],[2,3,4,1],[0,2,1,0]],[[1,2,1,1],[0,2,3,1],[2,4,3,1],[0,2,1,0]],[[1,2,1,1],[0,2,3,1],[3,3,3,1],[0,2,1,0]],[[1,2,1,1],[0,2,4,1],[2,3,3,1],[0,2,1,0]],[[1,2,1,1],[0,2,3,1],[2,3,3,1],[0,3,0,1]],[[1,2,1,1],[0,2,3,1],[2,3,4,1],[0,2,0,1]],[[1,2,1,1],[0,2,3,1],[2,4,3,1],[0,2,0,1]],[[1,2,1,1],[0,2,3,1],[3,3,3,1],[0,2,0,1]],[[1,2,1,1],[0,2,4,1],[2,3,3,1],[0,2,0,1]],[[1,2,1,1],[0,2,3,1],[2,3,3,1],[0,1,3,0]],[[1,2,1,1],[0,2,3,1],[2,3,4,1],[0,1,2,0]],[[1,2,1,1],[0,2,3,1],[2,4,3,1],[0,1,2,0]],[[1,2,1,1],[0,2,3,1],[3,3,3,1],[0,1,2,0]],[[1,2,1,1],[0,2,4,1],[2,3,3,1],[0,1,2,0]],[[1,2,1,1],[0,2,3,1],[2,3,4,1],[0,1,1,1]],[[1,2,1,1],[0,2,3,1],[2,4,3,1],[0,1,1,1]],[[1,2,1,1],[0,2,3,1],[3,3,3,1],[0,1,1,1]],[[1,2,1,1],[0,2,4,1],[2,3,3,1],[0,1,1,1]],[[1,2,1,1],[0,2,3,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[0,2,3,1],[2,4,3,0],[1,2,0,1]],[[1,2,1,1],[0,2,3,1],[3,3,3,0],[1,2,0,1]],[[1,2,1,1],[0,2,3,1],[2,3,3,0],[2,1,1,1]],[[1,2,1,1],[0,2,3,1],[2,3,4,0],[1,1,1,1]],[[1,2,1,1],[0,2,3,1],[2,4,3,0],[1,1,1,1]],[[1,2,1,1],[0,2,3,1],[3,3,3,0],[1,1,1,1]],[[1,2,1,1],[0,2,4,1],[2,3,3,0],[1,1,1,1]],[[1,2,1,1],[0,2,3,1],[2,3,3,0],[1,0,2,2]],[[1,2,1,1],[0,2,3,1],[2,3,3,0],[1,0,3,1]],[[1,2,1,1],[0,2,3,1],[2,3,3,0],[2,0,2,1]],[[1,2,1,1],[0,2,3,1],[2,3,4,0],[1,0,2,1]],[[1,2,1,1],[0,2,3,1],[2,4,3,0],[1,0,2,1]],[[1,2,1,1],[0,2,3,1],[3,3,3,0],[1,0,2,1]],[[1,2,1,1],[0,2,4,1],[2,3,3,0],[1,0,2,1]],[[1,2,1,1],[0,2,3,1],[2,3,3,0],[0,3,1,1]],[[1,2,1,1],[0,2,3,1],[2,3,4,0],[0,2,1,1]],[[1,2,1,1],[0,2,3,1],[2,4,3,0],[0,2,1,1]],[[1,2,1,1],[0,2,3,1],[3,3,3,0],[0,2,1,1]],[[1,2,1,1],[0,2,4,1],[2,3,3,0],[0,2,1,1]],[[1,2,1,1],[0,2,3,1],[2,3,3,0],[0,1,2,2]],[[1,2,1,1],[0,2,3,1],[2,3,3,0],[0,1,3,1]],[[1,2,1,1],[0,2,3,1],[2,3,4,0],[0,1,2,1]],[[1,2,1,1],[0,2,3,1],[2,4,3,0],[0,1,2,1]],[[1,2,1,1],[0,2,3,1],[3,3,3,0],[0,1,2,1]],[[1,2,1,1],[0,2,4,1],[2,3,3,0],[0,1,2,1]],[[1,2,1,1],[0,2,3,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[0,2,3,1],[2,4,2,1],[1,1,2,0]],[[1,2,1,1],[0,2,3,1],[3,3,2,1],[1,1,2,0]],[[1,2,1,1],[0,2,3,1],[2,3,2,1],[0,2,3,0]],[[1,2,1,1],[0,2,3,1],[2,3,2,1],[0,3,2,0]],[[1,2,1,1],[0,2,3,1],[2,4,2,1],[0,2,2,0]],[[1,2,1,1],[0,2,3,1],[3,3,2,1],[0,2,2,0]],[[1,2,1,1],[0,2,3,1],[2,3,2,0],[2,1,2,1]],[[1,2,1,1],[0,2,3,1],[2,4,2,0],[1,1,2,1]],[[1,2,1,1],[0,2,3,1],[3,3,2,0],[1,1,2,1]],[[1,2,1,1],[0,2,3,1],[2,3,2,0],[0,2,2,2]],[[1,2,1,1],[0,2,3,1],[2,3,2,0],[0,2,3,1]],[[1,2,1,1],[0,2,3,1],[2,3,2,0],[0,3,2,1]],[[1,2,1,1],[0,2,3,1],[2,4,2,0],[0,2,2,1]],[[1,2,1,1],[0,2,3,1],[3,3,2,0],[0,2,2,1]],[[1,2,1,1],[0,2,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,1,1],[0,2,3,1],[2,2,4,2],[1,1,1,0]],[[1,2,1,1],[0,2,4,1],[2,2,3,2],[1,1,1,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,2],[1,1,0,2]],[[1,2,1,1],[0,2,3,1],[2,2,3,3],[1,1,0,1]],[[1,2,1,1],[0,2,3,1],[2,2,4,2],[1,1,0,1]],[[1,2,1,1],[0,2,4,1],[2,2,3,2],[1,1,0,1]],[[1,2,1,1],[0,2,3,1],[2,2,3,2],[1,0,3,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,3],[1,0,2,0]],[[1,2,1,1],[0,2,3,1],[2,2,4,2],[1,0,2,0]],[[1,2,1,1],[0,2,4,1],[2,2,3,2],[1,0,2,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,2],[1,0,1,2]],[[1,2,1,1],[0,2,3,1],[2,2,3,3],[1,0,1,1]],[[1,2,1,1],[0,2,3,1],[2,2,4,2],[1,0,1,1]],[[1,2,1,1],[0,2,4,1],[2,2,3,2],[1,0,1,1]],[[1,2,1,1],[0,2,3,1],[2,2,3,3],[0,2,1,0]],[[1,2,1,1],[0,2,3,1],[2,2,4,2],[0,2,1,0]],[[1,2,1,1],[0,2,4,1],[2,2,3,2],[0,2,1,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,2],[0,2,0,2]],[[1,2,1,1],[0,2,3,1],[2,2,3,3],[0,2,0,1]],[[1,2,1,1],[0,2,3,1],[2,2,4,2],[0,2,0,1]],[[1,2,1,1],[0,2,4,1],[2,2,3,2],[0,2,0,1]],[[1,2,1,1],[0,2,3,1],[2,2,3,2],[0,1,3,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,3],[0,1,2,0]],[[1,2,1,1],[0,2,3,1],[2,2,4,2],[0,1,2,0]],[[1,2,1,1],[0,2,4,1],[2,2,3,2],[0,1,2,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,2],[0,1,1,2]],[[1,2,1,1],[0,2,3,1],[2,2,3,3],[0,1,1,1]],[[1,2,1,1],[0,2,3,1],[2,2,4,2],[0,1,1,1]],[[1,2,1,1],[0,2,4,1],[2,2,3,2],[0,1,1,1]],[[1,2,1,1],[0,2,3,1],[2,2,3,2],[0,0,2,2]],[[1,2,1,1],[0,2,3,1],[2,2,3,3],[0,0,2,1]],[[1,2,1,1],[0,2,3,1],[2,2,4,2],[0,0,2,1]],[[1,2,1,1],[0,2,4,1],[2,2,3,2],[0,0,2,1]],[[1,2,1,1],[0,2,3,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,1],[2,2,1,0]],[[1,2,1,1],[0,2,3,1],[3,2,3,1],[1,2,1,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,1],[1,3,0,1]],[[1,2,1,1],[0,2,3,1],[2,2,3,1],[2,2,0,1]],[[1,2,1,1],[0,2,3,1],[3,2,3,1],[1,2,0,1]],[[1,2,1,1],[0,2,3,1],[2,2,3,1],[1,0,2,2]],[[1,2,1,1],[0,2,3,1],[2,2,3,1],[1,0,3,1]],[[1,2,1,1],[0,2,3,1],[2,2,4,1],[1,0,2,1]],[[1,2,1,1],[0,2,4,1],[2,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,0,1,1],[3,3,3,2],[1,2,2,1]],[[1,1,0,1],[2,0,1,1],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,0,1,1],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,0,1,1],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,0,1,1],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[2,0,1,2],[1,3,3,3],[1,2,2,1]],[[1,1,0,1],[2,0,1,2],[1,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,0,1,2],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,0,1,2],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,0,1,2],[1,3,3,2],[1,2,2,2]],[[1,1,0,1],[2,0,1,2],[3,2,3,2],[1,2,2,1]],[[1,1,0,1],[2,0,1,2],[2,2,3,3],[1,2,2,1]],[[1,1,0,1],[2,0,1,2],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,0,1,2],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,0,1,2],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,0,1,2],[2,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,0,1,2],[3,3,2,2],[1,2,2,1]],[[1,1,0,1],[2,0,1,2],[2,3,2,3],[1,2,2,1]],[[1,1,0,1],[2,0,1,2],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,0,1,2],[2,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,0,1,2],[2,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,0,1,2],[2,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,0,1,2],[3,3,3,1],[1,2,2,1]],[[1,1,0,1],[2,0,1,2],[2,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,0,1,2],[2,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,0,1,2],[2,3,3,1],[1,2,3,1]],[[1,1,0,1],[2,0,1,2],[2,3,3,1],[1,2,2,2]],[[1,1,0,1],[2,0,1,2],[2,3,3,3],[0,2,2,1]],[[1,1,0,1],[2,0,1,2],[2,3,3,2],[0,3,2,1]],[[1,1,0,1],[2,0,1,2],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[2,0,1,2],[2,3,3,2],[0,2,2,2]],[[1,1,0,1],[2,0,1,2],[3,3,3,2],[1,2,2,0]],[[1,1,0,1],[2,0,1,2],[2,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,0,1,2],[2,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,0,1,2],[2,3,3,2],[1,2,3,0]],[[1,1,0,1],[2,0,2,0],[3,3,3,2],[1,2,2,1]],[[1,1,0,1],[2,0,2,0],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,0,2,0],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,0,2,0],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,0,2,0],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[2,0,2,1],[3,3,3,1],[1,2,2,1]],[[1,1,0,1],[2,0,2,1],[2,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,0,2,1],[2,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,0,2,1],[2,3,3,1],[1,2,3,1]],[[1,1,0,1],[2,0,2,1],[2,3,3,1],[1,2,2,2]],[[1,1,0,1],[2,0,2,1],[3,3,3,2],[1,2,2,0]],[[1,1,0,1],[2,0,2,1],[2,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,0,2,1],[2,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,0,2,1],[2,3,3,2],[1,2,3,0]],[[1,1,0,1],[2,0,2,3],[1,3,2,2],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[1,3,2,3],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,0,2,2],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,0,2,2],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,0,2,2],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,0,2,2],[1,3,4,1],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[1,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,0,2,2],[1,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,0,2,2],[1,3,3,1],[1,2,3,1]],[[1,1,0,1],[2,0,2,2],[1,3,3,1],[1,2,2,2]],[[1,1,0,1],[2,0,2,3],[1,3,3,2],[1,2,1,1]],[[1,1,0,1],[2,0,2,2],[1,3,4,2],[1,2,1,1]],[[1,1,0,1],[2,0,2,2],[1,3,3,3],[1,2,1,1]],[[1,1,0,1],[2,0,2,2],[1,3,3,2],[1,2,1,2]],[[1,1,0,1],[2,0,2,3],[1,3,3,2],[1,2,2,0]],[[1,1,0,1],[2,0,2,2],[1,3,4,2],[1,2,2,0]],[[1,1,0,1],[2,0,2,2],[1,3,3,3],[1,2,2,0]],[[1,1,0,1],[2,0,2,2],[1,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,0,2,2],[1,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,0,2,2],[1,3,3,2],[1,2,3,0]],[[1,1,0,1],[2,0,2,3],[2,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[3,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,0,2,2],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,0,2,2],[2,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,0,2,2],[3,2,3,1],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,2,4,1],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,0,2,2],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,0,2,2],[2,2,3,1],[1,2,2,2]],[[1,1,0,1],[2,0,2,3],[2,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,0,2,2],[2,2,4,2],[1,2,1,1]],[[1,1,0,1],[2,0,2,2],[2,2,3,3],[1,2,1,1]],[[1,1,0,1],[2,0,2,2],[2,2,3,2],[1,2,1,2]],[[1,1,0,1],[2,0,2,3],[2,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,0,2,2],[3,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,0,2,2],[2,2,4,2],[1,2,2,0]],[[1,1,0,1],[2,0,2,2],[2,2,3,3],[1,2,2,0]],[[1,1,0,1],[2,0,2,2],[2,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,0,2,2],[2,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,0,2,2],[2,2,3,2],[1,2,3,0]],[[1,1,0,1],[2,0,2,3],[2,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[3,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,0,2,2],[2,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,0,2,2],[3,3,2,1],[1,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,0,2,2],[2,3,2,1],[1,2,2,2]],[[1,1,0,1],[2,0,2,3],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,2,3],[0,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[2,0,2,2],[2,3,2,2],[0,2,2,2]],[[1,1,0,1],[2,0,2,2],[3,3,2,2],[1,2,2,0]],[[1,1,0,1],[2,0,2,2],[2,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,0,2,2],[2,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,0,2,2],[2,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,0,2,2],[2,3,4,1],[0,2,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,3,1],[0,3,2,1]],[[1,1,0,1],[2,0,2,2],[2,3,3,1],[0,2,3,1]],[[1,1,0,1],[2,0,2,2],[2,3,3,1],[0,2,2,2]],[[1,1,0,1],[2,0,2,2],[3,3,3,1],[1,2,1,1]],[[1,1,0,1],[2,0,2,2],[2,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,0,2,2],[2,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,0,2,3],[2,3,3,2],[0,2,1,1]],[[1,1,0,1],[2,0,2,2],[2,3,4,2],[0,2,1,1]],[[1,1,0,1],[2,0,2,2],[2,3,3,3],[0,2,1,1]],[[1,1,0,1],[2,0,2,2],[2,3,3,2],[0,2,1,2]],[[1,1,0,1],[2,0,2,3],[2,3,3,2],[0,2,2,0]],[[1,1,0,1],[2,0,2,2],[2,3,4,2],[0,2,2,0]],[[1,1,0,1],[2,0,2,2],[2,3,3,3],[0,2,2,0]],[[1,1,0,1],[2,0,2,2],[2,3,3,2],[0,3,2,0]],[[1,1,0,1],[2,0,2,2],[2,3,3,2],[0,2,3,0]],[[1,1,0,1],[2,0,2,2],[3,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,0,2,2],[2,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,0,2,2],[2,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,0,2,2],[3,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,0,2,2],[2,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,0,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,1],[0,2,3,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,1],[0,3,2,0]],[[1,2,1,1],[0,2,3,1],[2,2,4,1],[0,2,2,0]],[[1,2,1,1],[0,2,4,1],[2,2,3,1],[0,2,2,0]],[[1,1,0,1],[2,0,3,0],[1,3,4,2],[1,2,2,1]],[[1,1,0,1],[2,0,3,0],[1,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,0,3,0],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,0,3,0],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,0,3,0],[1,3,3,2],[1,2,2,2]],[[1,1,0,1],[2,0,3,0],[3,2,3,2],[1,2,2,1]],[[1,1,0,1],[2,0,3,0],[2,2,4,2],[1,2,2,1]],[[1,1,0,1],[2,0,3,0],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,0,3,0],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,0,3,0],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,0,3,0],[2,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,0,3,0],[3,3,2,2],[1,2,2,1]],[[1,1,0,1],[2,0,3,0],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,0,3,0],[2,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,0,3,0],[2,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,0,3,0],[2,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,0,3,0],[2,3,4,2],[0,2,2,1]],[[1,1,0,1],[2,0,3,0],[2,3,3,2],[0,3,2,1]],[[1,1,0,1],[2,0,3,0],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[2,0,3,0],[2,3,3,2],[0,2,2,2]],[[1,1,0,1],[2,0,3,0],[3,3,3,2],[1,2,1,1]],[[1,1,0,1],[2,0,3,0],[2,3,3,2],[2,2,1,1]],[[1,1,0,1],[2,0,3,0],[2,3,3,2],[1,3,1,1]],[[1,1,0,1],[2,0,3,1],[1,3,2,3],[1,2,2,1]],[[1,1,0,1],[2,0,3,1],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,0,3,1],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,0,3,1],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,0,3,1],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,0,3,1],[1,3,4,1],[1,2,2,1]],[[1,1,0,1],[2,0,3,1],[1,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,0,3,1],[1,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,0,3,1],[1,3,3,1],[1,2,3,1]],[[1,1,0,1],[2,0,3,1],[1,3,3,1],[1,2,2,2]],[[1,1,0,1],[2,0,3,1],[1,3,4,2],[1,2,1,1]],[[1,1,0,1],[2,0,3,1],[1,3,3,3],[1,2,1,1]],[[1,1,0,1],[2,0,3,1],[1,3,3,2],[1,2,1,2]],[[1,1,0,1],[2,0,3,1],[1,3,4,2],[1,2,2,0]],[[1,1,0,1],[2,0,3,1],[1,3,3,3],[1,2,2,0]],[[1,1,0,1],[2,0,3,1],[1,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,0,3,1],[1,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,0,3,1],[1,3,3,2],[1,2,3,0]],[[1,1,0,1],[2,0,3,1],[3,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,0,3,1],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,0,3,1],[2,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,0,3,1],[3,2,3,1],[1,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,2,4,1],[1,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,0,3,1],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,0,3,1],[2,2,3,1],[1,2,2,2]],[[1,1,0,1],[2,0,3,1],[2,2,4,2],[1,2,1,1]],[[1,1,0,1],[2,0,3,1],[2,2,3,3],[1,2,1,1]],[[1,1,0,1],[2,0,3,1],[2,2,3,2],[1,2,1,2]],[[1,1,0,1],[2,0,3,1],[3,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,0,3,1],[2,2,4,2],[1,2,2,0]],[[1,1,0,1],[2,0,3,1],[2,2,3,3],[1,2,2,0]],[[1,1,0,1],[2,0,3,1],[2,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,0,3,1],[2,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,0,3,1],[2,2,3,2],[1,2,3,0]],[[1,1,0,1],[2,0,3,1],[3,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,0,3,1],[2,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,0,3,1],[3,3,2,1],[1,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,0,3,1],[2,3,2,1],[1,2,2,2]],[[1,1,0,1],[2,0,3,1],[2,3,2,3],[0,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[2,0,3,1],[2,3,2,2],[0,2,2,2]],[[1,1,0,1],[2,0,3,1],[3,3,2,2],[1,2,2,0]],[[1,1,0,1],[2,0,3,1],[2,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,0,3,1],[2,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,0,3,1],[2,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,0,3,1],[3,3,3,0],[1,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,0],[2,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,0],[1,3,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,0],[1,2,3,1]],[[1,1,0,1],[2,0,3,1],[2,3,4,1],[0,2,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,1],[0,3,2,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,1],[0,2,3,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,1],[0,2,2,2]],[[1,1,0,1],[2,0,3,1],[3,3,3,1],[1,2,1,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,0,3,1],[2,3,4,2],[0,2,1,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,3],[0,2,1,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,2],[0,2,1,2]],[[1,1,0,1],[2,0,3,1],[2,3,4,2],[0,2,2,0]],[[1,1,0,1],[2,0,3,1],[2,3,3,3],[0,2,2,0]],[[1,1,0,1],[2,0,3,1],[2,3,3,2],[0,3,2,0]],[[1,1,0,1],[2,0,3,1],[2,3,3,2],[0,2,3,0]],[[1,1,0,1],[2,0,3,1],[3,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,0,3,1],[2,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,0,3,1],[3,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,0,3,1],[2,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,0,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,1],[0,1,2,2]],[[1,2,1,1],[0,2,3,1],[2,2,3,1],[0,1,3,1]],[[1,2,1,1],[0,2,3,1],[2,2,4,1],[0,1,2,1]],[[1,2,1,1],[0,2,4,1],[2,2,3,1],[0,1,2,1]],[[1,1,0,1],[2,0,3,2],[1,3,4,0],[1,2,2,1]],[[1,1,0,1],[2,0,3,2],[1,3,3,0],[2,2,2,1]],[[1,1,0,1],[2,0,3,2],[1,3,3,0],[1,3,2,1]],[[1,1,0,1],[2,0,3,2],[1,3,3,0],[1,2,3,1]],[[1,1,0,1],[2,0,3,2],[1,3,3,0],[1,2,2,2]],[[1,1,0,1],[2,0,3,2],[1,3,4,1],[1,2,2,0]],[[1,1,0,1],[2,0,3,2],[1,3,3,1],[2,2,2,0]],[[1,1,0,1],[2,0,3,2],[1,3,3,1],[1,3,2,0]],[[1,1,0,1],[2,0,3,2],[1,3,3,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,0],[1,3,1,1]],[[1,2,1,1],[0,2,3,1],[2,2,3,0],[2,2,1,1]],[[1,2,1,1],[0,2,3,1],[3,2,3,0],[1,2,1,1]],[[1,1,0,1],[2,0,3,2],[3,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,0,3,2],[2,2,4,0],[1,2,2,1]],[[1,1,0,1],[2,0,3,2],[2,2,3,0],[2,2,2,1]],[[1,1,0,1],[2,0,3,2],[2,2,3,0],[1,3,2,1]],[[1,1,0,1],[2,0,3,2],[2,2,3,0],[1,2,3,1]],[[1,1,0,1],[2,0,3,2],[2,2,3,0],[1,2,2,2]],[[1,1,0,1],[2,0,3,2],[3,2,3,1],[1,2,2,0]],[[1,1,0,1],[2,0,3,2],[2,2,4,1],[1,2,2,0]],[[1,1,0,1],[2,0,3,2],[2,2,3,1],[2,2,2,0]],[[1,1,0,1],[2,0,3,2],[2,2,3,1],[1,3,2,0]],[[1,1,0,1],[2,0,3,2],[2,2,3,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[2,2,3,0],[0,2,2,2]],[[1,2,1,1],[0,2,3,1],[2,2,3,0],[0,2,3,1]],[[1,2,1,1],[0,2,3,1],[2,2,3,0],[0,3,2,1]],[[1,2,1,1],[0,2,3,1],[2,2,4,0],[0,2,2,1]],[[1,2,1,1],[0,2,4,1],[2,2,3,0],[0,2,2,1]],[[1,1,0,1],[2,0,3,3],[2,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,0,3,2],[3,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,0,3,2],[2,3,0,3],[1,2,2,1]],[[1,1,0,1],[2,0,3,2],[2,3,0,2],[2,2,2,1]],[[1,1,0,1],[2,0,3,2],[2,3,0,2],[1,3,2,1]],[[1,1,0,1],[2,0,3,2],[2,3,0,2],[1,2,3,1]],[[1,1,0,1],[2,0,3,2],[2,3,0,2],[1,2,2,2]],[[1,1,0,1],[2,0,3,2],[3,3,2,0],[1,2,2,1]],[[1,1,0,1],[2,0,3,2],[2,3,2,0],[2,2,2,1]],[[1,1,0,1],[2,0,3,2],[2,3,2,0],[1,3,2,1]],[[1,1,0,1],[2,0,3,2],[2,3,2,0],[1,2,3,1]],[[1,1,0,1],[2,0,3,2],[2,3,2,0],[1,2,2,2]],[[1,1,0,1],[2,0,3,2],[3,3,2,1],[1,2,2,0]],[[1,1,0,1],[2,0,3,2],[2,3,2,1],[2,2,2,0]],[[1,1,0,1],[2,0,3,2],[2,3,2,1],[1,3,2,0]],[[1,1,0,1],[2,0,3,2],[2,3,2,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[2,2,2,2],[1,0,2,2]],[[1,2,1,1],[0,2,3,1],[2,2,2,2],[1,0,3,1]],[[1,2,1,1],[0,2,3,1],[2,2,2,3],[1,0,2,1]],[[1,1,0,1],[2,0,3,2],[2,3,4,0],[0,2,2,1]],[[1,1,0,1],[2,0,3,2],[2,3,3,0],[0,3,2,1]],[[1,1,0,1],[2,0,3,2],[2,3,3,0],[0,2,3,1]],[[1,1,0,1],[2,0,3,2],[2,3,3,0],[0,2,2,2]],[[1,1,0,1],[2,0,3,2],[3,3,3,0],[1,2,1,1]],[[1,1,0,1],[2,0,3,2],[2,3,3,0],[2,2,1,1]],[[1,1,0,1],[2,0,3,2],[2,3,3,0],[1,3,1,1]],[[1,1,0,1],[2,0,3,2],[2,3,4,1],[0,2,2,0]],[[1,1,0,1],[2,0,3,2],[2,3,3,1],[0,3,2,0]],[[1,1,0,1],[2,0,3,2],[2,3,3,1],[0,2,3,0]],[[1,1,0,1],[2,0,3,2],[3,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,0,3,2],[2,3,3,1],[2,2,0,1]],[[1,1,0,1],[2,0,3,2],[2,3,3,1],[1,3,0,1]],[[1,1,0,1],[2,0,3,2],[3,3,3,1],[1,2,1,0]],[[1,1,0,1],[2,0,3,2],[2,3,3,1],[2,2,1,0]],[[1,1,0,1],[2,0,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,2,3,1],[2,2,2,2],[0,1,2,2]],[[1,2,1,1],[0,2,3,1],[2,2,2,2],[0,1,3,1]],[[1,2,1,1],[0,2,3,1],[2,2,2,3],[0,1,2,1]],[[1,2,1,1],[0,2,3,1],[2,2,2,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[2,2,2,1],[1,3,2,0]],[[1,2,1,1],[0,2,3,1],[2,2,2,1],[2,2,2,0]],[[1,2,1,1],[0,2,3,1],[3,2,2,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,1],[2,2,2,0],[1,2,2,2]],[[1,2,1,1],[0,2,3,1],[2,2,2,0],[1,2,3,1]],[[1,2,1,1],[0,2,3,1],[2,2,2,0],[1,3,2,1]],[[1,2,1,1],[0,2,3,1],[2,2,2,0],[2,2,2,1]],[[1,2,1,1],[0,2,3,1],[3,2,2,0],[1,2,2,1]],[[1,1,0,1],[2,1,0,1],[3,3,3,2],[1,2,2,1]],[[1,1,0,1],[2,1,0,1],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,1,0,1],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,1,0,1],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,0,1],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[2,1,0,2],[1,3,3,3],[1,2,2,1]],[[1,1,0,1],[2,1,0,2],[1,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,1,0,2],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,1,0,2],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,0,2],[1,3,3,2],[1,2,2,2]],[[1,1,0,1],[2,1,0,2],[3,2,3,2],[1,2,2,1]],[[1,1,0,1],[2,1,0,2],[2,2,3,3],[1,2,2,1]],[[1,1,0,1],[2,1,0,2],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,1,0,2],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,1,0,2],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,0,2],[2,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,1,0,2],[3,3,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,0,2],[2,3,2,3],[1,2,2,1]],[[1,1,0,1],[2,1,0,2],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,1,0,2],[2,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,1,0,2],[2,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,1,0,2],[2,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,1,0,2],[3,3,3,1],[1,2,2,1]],[[1,1,0,1],[2,1,0,2],[2,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,1,0,2],[2,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,1,0,2],[2,3,3,1],[1,2,3,1]],[[1,1,0,1],[2,1,0,2],[2,3,3,1],[1,2,2,2]],[[1,1,0,1],[2,1,0,2],[2,3,3,3],[0,2,2,1]],[[1,1,0,1],[2,1,0,2],[2,3,3,2],[0,3,2,1]],[[1,1,0,1],[2,1,0,2],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[2,1,0,2],[2,3,3,2],[0,2,2,2]],[[1,1,0,1],[2,1,0,2],[3,3,3,2],[1,2,2,0]],[[1,1,0,1],[2,1,0,2],[2,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,1,0,2],[2,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,1,0,2],[2,3,3,2],[1,2,3,0]],[[1,1,0,1],[2,1,1,0],[3,3,3,2],[1,2,2,1]],[[1,1,0,1],[2,1,1,0],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,1,1,0],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,1,1,0],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,1,0],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[2,1,1,1],[3,3,3,1],[1,2,2,1]],[[1,1,0,1],[2,1,1,1],[2,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,1,1,1],[2,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,1,1,1],[2,3,3,1],[1,2,3,1]],[[1,1,0,1],[2,1,1,1],[2,3,3,1],[1,2,2,2]],[[1,1,0,1],[2,1,1,1],[3,3,3,2],[1,2,2,0]],[[1,1,0,1],[2,1,1,1],[2,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,1,1,1],[2,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,1,1,1],[2,3,3,2],[1,2,3,0]],[[1,1,0,1],[2,1,1,2],[1,2,3,3],[1,2,2,1]],[[1,1,0,1],[2,1,1,2],[1,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,1,1,2],[1,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,1,1,2],[1,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,1,2],[1,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,1,1,2],[1,3,3,3],[1,1,2,1]],[[1,1,0,1],[2,1,1,2],[1,3,3,2],[1,1,3,1]],[[1,1,0,1],[2,1,1,2],[1,3,3,2],[1,1,2,2]],[[1,1,0,1],[2,1,1,2],[3,1,3,2],[1,2,2,1]],[[1,1,0,1],[2,1,1,2],[2,1,3,3],[1,2,2,1]],[[1,1,0,1],[2,1,1,2],[2,1,3,2],[2,2,2,1]],[[1,1,0,1],[2,1,1,2],[2,1,3,2],[1,3,2,1]],[[1,1,0,1],[2,1,1,2],[2,1,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,1,2],[2,1,3,2],[1,2,2,2]],[[1,1,0,1],[2,1,1,2],[2,2,3,3],[0,2,2,1]],[[1,1,0,1],[2,1,1,2],[2,2,3,2],[0,3,2,1]],[[1,1,0,1],[2,1,1,2],[2,2,3,2],[0,2,3,1]],[[1,1,0,1],[2,1,1,2],[2,2,3,2],[0,2,2,2]],[[1,1,0,1],[2,1,1,2],[3,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,1,2],[2,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,1,1,2],[2,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,1,1,2],[2,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,1,1,2],[2,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,1,1,2],[2,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,1,1,2],[3,3,2,1],[1,2,2,1]],[[1,1,0,1],[2,1,1,2],[2,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,1,1,2],[2,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,1,1,2],[2,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,1,1,2],[2,3,2,1],[1,2,2,2]],[[1,1,0,1],[2,1,1,2],[3,3,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,1,2],[2,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,1,1,2],[2,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,1,1,2],[2,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,1,1,2],[3,3,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,1,2],[2,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,1,1,2],[2,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,1,1,2],[2,3,3,3],[0,1,2,1]],[[1,1,0,1],[2,1,1,2],[2,3,3,2],[0,1,3,1]],[[1,1,0,1],[2,1,1,2],[2,3,3,2],[0,1,2,2]],[[1,1,0,1],[2,1,1,2],[2,3,3,3],[1,0,2,1]],[[1,1,0,1],[2,1,1,2],[2,3,3,2],[1,0,3,1]],[[1,1,0,1],[2,1,1,2],[2,3,3,2],[1,0,2,2]],[[1,1,0,1],[2,1,1,2],[3,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,1,1,2],[2,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,1,1,2],[2,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,1,1,2],[3,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,1,1,2],[2,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,1,1,2],[2,3,3,2],[1,3,1,0]],[[1,1,0,1],[2,1,2,0],[3,3,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,0],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,1,2,0],[2,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,1,2,0],[2,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,1,2,0],[2,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,1,2,0],[3,3,3,2],[1,2,1,1]],[[1,1,0,1],[2,1,2,0],[2,3,3,2],[2,2,1,1]],[[1,1,0,1],[2,1,2,0],[2,3,3,2],[1,3,1,1]],[[1,1,0,1],[2,1,2,1],[3,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,1],[2,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,1,2,1],[2,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,1,2,1],[2,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,1,2,1],[2,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,1,2,1],[3,3,2,1],[1,2,2,1]],[[1,1,0,1],[2,1,2,1],[2,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,1,2,1],[2,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,1,2,1],[2,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,1,2,1],[2,3,2,1],[1,2,2,2]],[[1,1,0,1],[2,1,2,1],[3,3,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,2,1],[2,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,1,2,1],[2,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,1,2,1],[2,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,1,2,1],[3,3,3,0],[1,2,2,1]],[[1,1,0,1],[2,1,2,1],[2,3,3,0],[2,2,2,1]],[[1,1,0,1],[2,1,2,1],[2,3,3,0],[1,3,2,1]],[[1,1,0,1],[2,1,2,1],[2,3,3,0],[1,2,3,1]],[[1,1,0,1],[2,1,2,1],[3,3,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,2,1],[2,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,1,2,1],[2,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,1,2,1],[3,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,1,2,1],[2,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,1,2,1],[2,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,1,2,1],[3,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,1,2,1],[2,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,1,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,1],[2,1,3,2],[0,2,3,0]],[[1,1,0,1],[2,1,2,3],[1,1,3,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,1,3,3],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,1,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,2,2],[1,1,3,2],[1,2,2,2]],[[1,1,0,2],[2,1,2,2],[1,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,3],[1,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,1,2,2],[1,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,1,2,2],[1,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,1,2,2],[1,2,4,1],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,1,2,2],[1,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,1,2,2],[1,2,3,1],[1,2,2,2]],[[1,1,0,2],[2,1,2,2],[1,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,1,2,3],[1,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,1,2,2],[1,2,4,2],[1,2,1,1]],[[1,1,0,1],[2,1,2,2],[1,2,3,3],[1,2,1,1]],[[1,1,0,1],[2,1,2,2],[1,2,3,2],[1,2,1,2]],[[1,1,0,2],[2,1,2,2],[1,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,1,2,3],[1,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,1,2,2],[1,2,4,2],[1,2,2,0]],[[1,1,0,1],[2,1,2,2],[1,2,3,3],[1,2,2,0]],[[1,1,0,1],[2,1,2,2],[1,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,1,2,2],[1,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,1,2,2],[1,2,3,2],[1,2,3,0]],[[1,1,0,2],[2,1,2,2],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,3],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,1,2,2],[1,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,1,2,2],[1,4,2,1],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,1,2,2],[1,3,2,1],[1,2,2,2]],[[1,1,0,2],[2,1,2,2],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,1,2,3],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,2,3],[1,1,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,2,2],[1,1,3,1]],[[1,1,0,1],[2,1,2,2],[1,3,2,2],[1,1,2,2]],[[1,1,0,1],[2,1,2,2],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,2,2],[1,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,1,2,2],[1,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,1,2,2],[1,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,1,2,2],[1,4,3,1],[1,1,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,4,1],[1,1,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,1],[1,1,3,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,1],[1,1,2,2]],[[1,1,0,1],[2,1,2,2],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,2,2],[1,3,4,1],[1,2,1,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,1,2,3],[1,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,4,2],[1,0,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,3],[1,0,2,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,2],[1,0,2,2]],[[1,1,0,2],[2,1,2,2],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,1,2,3],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,1,2,2],[1,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,1,2,2],[1,3,4,2],[1,1,1,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,3],[1,1,1,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,2],[1,1,1,2]],[[1,1,0,2],[2,1,2,2],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,1,2,3],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,1,2,2],[1,4,3,2],[1,1,2,0]],[[1,1,0,1],[2,1,2,2],[1,3,4,2],[1,1,2,0]],[[1,1,0,1],[2,1,2,2],[1,3,3,3],[1,1,2,0]],[[1,1,0,1],[2,1,2,2],[1,3,3,2],[1,1,3,0]],[[1,1,0,2],[2,1,2,2],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,1,2,3],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,1,2,2],[1,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,1,2,2],[1,3,4,2],[1,2,0,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,3],[1,2,0,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,1,2,2],[1,3,3,2],[1,2,0,2]],[[1,1,0,2],[2,1,2,2],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,1,2,3],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,1,2,2],[1,4,3,2],[1,2,1,0]],[[1,1,0,1],[2,1,2,2],[1,3,4,2],[1,2,1,0]],[[1,1,0,1],[2,1,2,2],[1,3,3,3],[1,2,1,0]],[[1,1,0,1],[2,1,2,2],[1,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,1,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,1],[2,1,3,2],[0,3,2,0]],[[1,2,1,1],[0,2,3,1],[2,1,3,3],[0,2,2,0]],[[1,2,1,1],[0,2,3,1],[2,1,4,2],[0,2,2,0]],[[1,2,1,1],[0,2,4,1],[2,1,3,2],[0,2,2,0]],[[1,2,1,1],[0,2,3,1],[2,1,3,2],[0,2,1,2]],[[1,2,1,1],[0,2,3,1],[2,1,3,3],[0,2,1,1]],[[1,2,1,1],[0,2,3,1],[2,1,4,2],[0,2,1,1]],[[1,2,1,1],[0,2,4,1],[2,1,3,2],[0,2,1,1]],[[1,1,0,1],[2,1,2,3],[2,0,3,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,0,3,3],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,0,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,2,2],[2,0,3,2],[1,2,2,2]],[[2,1,0,1],[2,1,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,0,2],[2,1,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[3,1,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,3],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[3,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,1,2,3],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,1,2,2],[2,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,1,2,2],[1,3,2,1]],[[1,1,0,1],[2,1,2,2],[2,1,2,2],[1,2,3,1]],[[1,1,0,1],[2,1,2,2],[2,1,2,2],[1,2,2,2]],[[2,1,0,1],[2,1,2,2],[2,1,3,1],[1,2,2,1]],[[1,1,0,1],[3,1,2,2],[2,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[3,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,1,4,1],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,1,3,1],[2,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,1,3,1],[1,3,2,1]],[[1,1,0,1],[2,1,2,2],[2,1,3,1],[1,2,3,1]],[[1,1,0,1],[2,1,2,2],[2,1,3,1],[1,2,2,2]],[[1,1,0,1],[2,1,2,3],[2,1,3,2],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,1,3,3],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,1,3,2],[0,2,3,1]],[[1,1,0,1],[2,1,2,2],[2,1,3,2],[0,2,2,2]],[[1,1,0,2],[2,1,2,2],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,1,2,3],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,1,4,2],[1,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,1,3,3],[1,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,1,3,2],[1,2,1,2]],[[2,1,0,1],[2,1,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,0,2],[2,1,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[3,1,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,1,2,3],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,1,2,2],[3,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,1,4,2],[1,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,1,3,3],[1,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,1,3,2],[2,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,1,3,2],[1,3,2,0]],[[1,1,0,1],[2,1,2,2],[2,1,3,2],[1,2,3,0]],[[2,1,0,1],[2,1,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,0,2],[2,1,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[3,1,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,3],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[3,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,1,3],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,1,2],[2,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,1,2],[1,3,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,1,2],[1,2,3,1]],[[1,1,0,1],[2,1,2,2],[2,2,1,2],[1,2,2,2]],[[2,1,0,1],[2,1,2,2],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[3,1,2,2],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[3,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,2,1],[2,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,2,1],[1,3,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,2,1],[1,2,3,1]],[[1,1,0,1],[2,1,2,2],[2,2,2,1],[1,2,2,2]],[[1,1,0,2],[2,1,2,2],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[2,1,2,3],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,2,3],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,2,2],[0,3,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,2,2],[0,2,3,1]],[[1,1,0,1],[2,1,2,2],[2,2,2,2],[0,2,2,2]],[[2,1,0,1],[2,1,2,2],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[3,1,2,2],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,2,2],[3,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,2,2,2],[2,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,2,2,2],[1,3,2,0]],[[1,1,0,1],[2,1,2,2],[2,2,2,2],[1,2,3,0]],[[1,1,0,1],[2,1,2,2],[2,2,4,1],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,3,1],[0,3,2,1]],[[1,1,0,1],[2,1,2,2],[2,2,3,1],[0,2,3,1]],[[1,1,0,1],[2,1,2,2],[2,2,3,1],[0,2,2,2]],[[2,1,0,1],[2,1,2,2],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[3,1,2,2],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,2,2],[3,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,2,3,1],[2,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,2,3,1],[1,3,1,1]],[[1,1,0,2],[2,1,2,2],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,1,2,3],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,2,4,2],[0,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,2,3,3],[0,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,2,3,2],[0,2,1,2]],[[1,1,0,2],[2,1,2,2],[2,2,3,2],[0,2,2,0]],[[1,1,0,1],[2,1,2,3],[2,2,3,2],[0,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,2,4,2],[0,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,2,3,3],[0,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,2,3,2],[0,3,2,0]],[[1,1,0,1],[2,1,2,2],[2,2,3,2],[0,2,3,0]],[[2,1,0,1],[2,1,2,2],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[3,1,2,2],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,1,2,2],[3,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,1,2,2],[2,2,3,2],[2,2,0,1]],[[1,1,0,1],[2,1,2,2],[2,2,3,2],[1,3,0,1]],[[2,1,0,1],[2,1,2,2],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[3,1,2,2],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,1,2,2],[3,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,1,2,2],[2,2,3,2],[2,2,1,0]],[[1,1,0,1],[2,1,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,1],[2,1,3,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[2,1,3,1],[1,3,2,0]],[[1,2,1,1],[0,2,3,1],[2,1,3,1],[2,2,2,0]],[[1,2,1,1],[0,2,3,1],[2,1,4,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,1],[3,1,3,1],[1,2,2,0]],[[2,1,0,1],[2,1,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,0,2],[2,1,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[3,1,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,1,2,3],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[3,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,4,1,2],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,1,3],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,1,2],[0,3,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,1,2],[0,2,3,1]],[[1,1,0,1],[2,1,2,2],[2,3,1,2],[0,2,2,2]],[[2,1,0,1],[2,1,2,2],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[3,1,2,2],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,1,2,2],[3,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,1,2,2],[2,4,1,2],[1,1,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,1,2],[2,1,2,1]],[[1,1,0,1],[2,1,2,2],[3,3,2,0],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,0],[2,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,0],[1,3,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,0],[1,2,3,1]],[[2,1,0,1],[2,1,2,2],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[3,1,2,2],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[3,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,4,2,1],[0,2,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,1],[0,3,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,1],[0,2,3,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,1],[0,2,2,2]],[[2,1,0,1],[2,1,2,2],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[3,1,2,2],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,1,2,2],[3,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,1,2,2],[2,4,2,1],[1,1,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,1],[2,1,2,1]],[[1,1,0,1],[2,1,2,2],[3,3,2,1],[1,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,2,1],[2,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,2,1],[1,3,2,0]],[[1,1,0,2],[2,1,2,2],[2,3,2,2],[0,1,2,1]],[[1,1,0,1],[2,1,2,3],[2,3,2,2],[0,1,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,3],[0,1,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,2],[0,1,3,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,2],[0,1,2,2]],[[2,1,0,1],[2,1,2,2],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[3,1,2,2],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,1,2,2],[3,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,4,2,2],[0,2,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,2,2],[0,3,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,2,2],[0,2,3,0]],[[1,1,0,2],[2,1,2,2],[2,3,2,2],[1,0,2,1]],[[1,1,0,1],[2,1,2,3],[2,3,2,2],[1,0,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,3],[1,0,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,2],[1,0,3,1]],[[1,1,0,1],[2,1,2,2],[2,3,2,2],[1,0,2,2]],[[2,1,0,1],[2,1,2,2],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[3,1,2,2],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,1,2,2],[3,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,1,2,2],[2,4,2,2],[1,1,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,2,4,1],[2,1,3,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,1],[2,1,3,1],[0,2,2,2]],[[1,2,1,1],[0,2,3,1],[2,1,3,1],[0,2,3,1]],[[1,2,1,1],[0,2,3,1],[2,1,3,1],[0,3,2,1]],[[1,2,1,1],[0,2,3,1],[2,1,4,1],[0,2,2,1]],[[1,2,1,1],[0,2,4,1],[2,1,3,1],[0,2,2,1]],[[1,2,1,1],[0,2,3,1],[2,1,3,0],[1,2,2,2]],[[1,2,1,1],[0,2,3,1],[2,1,3,0],[1,2,3,1]],[[1,2,1,1],[0,2,3,1],[2,1,3,0],[1,3,2,1]],[[1,2,1,1],[0,2,3,1],[2,1,3,0],[2,2,2,1]],[[1,2,1,1],[0,2,3,1],[2,1,4,0],[1,2,2,1]],[[1,1,0,1],[2,1,2,2],[3,3,3,0],[1,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,0],[2,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,0],[1,3,1,1]],[[2,1,0,1],[2,1,2,2],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[3,1,2,2],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,1,2,2],[3,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,1,2,2],[2,4,3,1],[0,1,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,4,1],[0,1,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,1],[0,1,3,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,1],[0,1,2,2]],[[2,1,0,1],[2,1,2,2],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[3,1,2,2],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,1,2,2],[3,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,4,3,1],[0,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,4,1],[0,2,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,1],[0,3,1,1]],[[2,1,0,1],[2,1,2,2],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[3,1,2,2],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,1,2,2],[3,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,1,2,2],[2,4,3,1],[1,0,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,4,1],[1,0,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,1],[2,0,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,1],[1,0,3,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,1],[1,0,2,2]],[[2,1,0,1],[2,1,2,2],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[3,1,2,2],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,2,2],[3,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,2,2],[2,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,4,1],[1,1,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,1],[2,1,1,1]],[[1,1,0,1],[2,1,2,2],[3,3,3,1],[1,2,1,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,1],[2,2,1,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,2,3,1],[3,1,3,0],[1,2,2,1]],[[1,2,1,1],[0,2,4,1],[2,1,3,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,1],[2,1,2,2],[0,2,2,2]],[[1,1,0,2],[2,1,2,2],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,1,2,3],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,4,2],[0,0,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,3],[0,0,2,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[0,0,2,2]],[[2,1,0,1],[2,1,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,2],[2,1,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[3,1,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,1,2,3],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,1,2,2],[3,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,1,2,2],[2,4,3,2],[0,1,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,4,2],[0,1,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,3],[0,1,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[0,1,1,2]],[[2,1,0,1],[2,1,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,0,2],[2,1,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[3,1,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,1,2,3],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,1,2,2],[3,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,1,2,2],[2,4,3,2],[0,1,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,4,2],[0,1,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,3],[0,1,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[0,1,3,0]],[[2,1,0,1],[2,1,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,0,2],[2,1,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[3,1,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,1,2,3],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,1,2,2],[3,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,1,2,2],[2,4,3,2],[0,2,0,1]],[[1,1,0,1],[2,1,2,2],[2,3,4,2],[0,2,0,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,3],[0,2,0,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[0,3,0,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[0,2,0,2]],[[2,1,0,1],[2,1,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,0,2],[2,1,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[3,1,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,1,2,3],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,1,2,2],[3,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,1,2,2],[2,4,3,2],[0,2,1,0]],[[1,1,0,1],[2,1,2,2],[2,3,4,2],[0,2,1,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,3],[0,2,1,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,2,3,1],[2,1,2,2],[0,2,3,1]],[[1,2,1,1],[0,2,3,1],[2,1,2,2],[0,3,2,1]],[[1,2,1,1],[0,2,3,1],[2,1,2,3],[0,2,2,1]],[[2,1,0,1],[2,1,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,2],[2,1,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[3,1,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,1,2,3],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,1,2,2],[3,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,1,2,2],[2,4,3,2],[1,0,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,4,2],[1,0,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,3],[1,0,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[2,0,1,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[1,0,1,2]],[[2,1,0,1],[2,1,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,0,2],[2,1,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[3,1,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,1,2,3],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,1,2,2],[3,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,1,2,2],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,4,2],[1,0,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,3],[1,0,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[2,0,2,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[1,0,3,0]],[[2,1,0,1],[2,1,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,2],[2,1,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[3,1,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,1,2,3],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,1,2,2],[3,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,1,2,2],[2,4,3,2],[1,1,0,1]],[[1,1,0,1],[2,1,2,2],[2,3,4,2],[1,1,0,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,3],[1,1,0,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[2,1,0,1]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[1,1,0,2]],[[2,1,0,1],[2,1,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,0,2],[2,1,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[3,1,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,1,2,3],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,1,2,2],[3,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,1,2,2],[2,4,3,2],[1,1,1,0]],[[1,1,0,1],[2,1,2,2],[2,3,4,2],[1,1,1,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,3],[1,1,1,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,2,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[2,0,3,2],[1,3,2,0]],[[1,2,1,1],[0,2,3,1],[2,0,3,2],[2,2,2,0]],[[1,2,1,1],[0,2,3,1],[2,0,3,3],[1,2,2,0]],[[1,2,1,1],[0,2,3,1],[2,0,4,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,1],[3,0,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,4,1],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,1],[2,0,3,2],[1,2,1,2]],[[1,2,1,1],[0,2,3,1],[2,0,3,3],[1,2,1,1]],[[1,2,1,1],[0,2,3,1],[2,0,4,2],[1,2,1,1]],[[1,2,1,1],[0,2,4,1],[2,0,3,2],[1,2,1,1]],[[2,1,0,1],[2,1,2,2],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[3,1,2,2],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,1,2,2],[3,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,1,2,2],[2,4,3,2],[1,2,0,0]],[[1,1,0,1],[2,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,2,3,1],[2,0,3,2],[0,2,2,2]],[[1,2,1,1],[0,2,3,1],[2,0,3,2],[0,2,3,1]],[[1,2,1,1],[0,2,3,1],[2,0,3,3],[0,2,2,1]],[[1,2,1,1],[0,2,3,1],[2,0,3,1],[1,2,2,2]],[[1,2,1,1],[0,2,3,1],[2,0,3,1],[1,2,3,1]],[[1,2,1,1],[0,2,3,1],[2,0,3,1],[1,3,2,1]],[[1,2,1,1],[0,2,3,1],[2,0,3,1],[2,2,2,1]],[[1,2,1,1],[0,2,3,1],[2,0,4,1],[1,2,2,1]],[[1,2,1,1],[0,2,3,1],[3,0,3,1],[1,2,2,1]],[[1,2,1,1],[0,2,4,1],[2,0,3,1],[1,2,2,1]],[[1,2,1,1],[0,2,3,1],[2,0,2,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,1],[2,0,2,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,1],[2,0,2,2],[1,3,2,1]],[[1,2,1,1],[0,2,3,1],[2,0,2,2],[2,2,2,1]],[[1,2,1,1],[0,2,3,1],[2,0,2,3],[1,2,2,1]],[[1,2,1,1],[0,2,3,1],[3,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,0],[1,2,4,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,0],[1,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,0],[1,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,0],[1,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,0],[1,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,1,3,0],[1,4,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,0],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,0],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,0],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,0],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,1,3,0],[1,4,3,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,0],[1,3,4,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,0],[1,3,3,2],[1,1,3,1]],[[1,1,0,1],[2,1,3,0],[1,3,3,2],[1,1,2,2]],[[1,1,0,1],[2,1,3,0],[1,4,3,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,0],[1,3,4,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,0],[1,3,3,2],[2,2,1,1]],[[1,1,0,1],[2,1,3,0],[1,3,3,2],[1,3,1,1]],[[2,1,0,1],[2,1,3,0],[2,1,3,2],[1,2,2,1]],[[1,1,0,1],[3,1,3,0],[2,1,3,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,0],[3,1,3,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,0],[2,1,4,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,0],[2,1,3,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,0],[2,1,3,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,0],[2,1,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,0],[2,1,3,2],[1,2,2,2]],[[2,1,0,1],[2,1,3,0],[2,2,2,2],[1,2,2,1]],[[1,1,0,1],[3,1,3,0],[2,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,0],[3,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,0],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,0],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,0],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,0],[2,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,1,3,0],[2,2,4,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,0],[2,2,3,2],[0,3,2,1]],[[1,1,0,1],[2,1,3,0],[2,2,3,2],[0,2,3,1]],[[1,1,0,1],[2,1,3,0],[2,2,3,2],[0,2,2,2]],[[2,1,0,1],[2,1,3,0],[2,2,3,2],[1,2,1,1]],[[1,1,0,1],[3,1,3,0],[2,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,0],[3,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,0],[2,2,3,2],[2,2,1,1]],[[1,1,0,1],[2,1,3,0],[2,2,3,2],[1,3,1,1]],[[2,1,0,1],[2,1,3,0],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[3,1,3,0],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,0],[3,3,2,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,0],[2,4,2,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,0],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[2,1,3,0],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[2,1,3,0],[2,3,2,2],[0,2,2,2]],[[2,1,0,1],[2,1,3,0],[2,3,2,2],[1,1,2,1]],[[1,1,0,1],[3,1,3,0],[2,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,0],[3,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,0],[2,4,2,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,0],[2,3,2,2],[2,1,2,1]],[[2,1,0,1],[2,1,3,0],[2,3,3,2],[0,1,2,1]],[[1,1,0,1],[3,1,3,0],[2,3,3,2],[0,1,2,1]],[[1,1,0,1],[2,1,3,0],[3,3,3,2],[0,1,2,1]],[[1,1,0,1],[2,1,3,0],[2,4,3,2],[0,1,2,1]],[[1,1,0,1],[2,1,3,0],[2,3,4,2],[0,1,2,1]],[[1,1,0,1],[2,1,3,0],[2,3,3,2],[0,1,3,1]],[[1,1,0,1],[2,1,3,0],[2,3,3,2],[0,1,2,2]],[[2,1,0,1],[2,1,3,0],[2,3,3,2],[0,2,1,1]],[[1,1,0,1],[3,1,3,0],[2,3,3,2],[0,2,1,1]],[[1,1,0,1],[2,1,3,0],[3,3,3,2],[0,2,1,1]],[[1,1,0,1],[2,1,3,0],[2,4,3,2],[0,2,1,1]],[[1,1,0,1],[2,1,3,0],[2,3,4,2],[0,2,1,1]],[[1,1,0,1],[2,1,3,0],[2,3,3,2],[0,3,1,1]],[[2,1,0,1],[2,1,3,0],[2,3,3,2],[1,0,2,1]],[[1,1,0,1],[3,1,3,0],[2,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,1,3,0],[3,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,1,3,0],[2,4,3,2],[1,0,2,1]],[[1,1,0,1],[2,1,3,0],[2,3,4,2],[1,0,2,1]],[[1,1,0,1],[2,1,3,0],[2,3,3,2],[2,0,2,1]],[[1,1,0,1],[2,1,3,0],[2,3,3,2],[1,0,3,1]],[[1,1,0,1],[2,1,3,0],[2,3,3,2],[1,0,2,2]],[[2,1,0,1],[2,1,3,0],[2,3,3,2],[1,1,1,1]],[[1,1,0,1],[3,1,3,0],[2,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,1,3,0],[3,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,1,3,0],[2,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,1,3,0],[2,3,4,2],[1,1,1,1]],[[1,1,0,1],[2,1,3,0],[2,3,3,2],[2,1,1,1]],[[1,1,0,1],[2,1,3,1],[1,1,3,3],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,1,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,1],[1,1,3,2],[1,2,2,2]],[[1,1,0,1],[2,1,3,1],[1,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,1],[1,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,1],[1,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,1,4,1],[1,2,3,1],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,2,4,1],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,1,3,1],[1,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,1,3,1],[1,2,3,1],[1,2,2,2]],[[1,1,0,1],[2,1,4,1],[1,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,1],[1,2,4,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,1],[1,2,3,3],[1,2,1,1]],[[1,1,0,1],[2,1,3,1],[1,2,3,2],[1,2,1,2]],[[1,1,0,1],[2,1,4,1],[1,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,1],[1,2,4,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,1],[1,2,3,3],[1,2,2,0]],[[1,1,0,1],[2,1,3,1],[1,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,1,3,1],[1,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,1,3,1],[1,2,3,2],[1,2,3,0]],[[1,1,0,1],[2,1,3,1],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,1],[1,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,1,3,1],[1,4,2,1],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,1,3,1],[1,3,2,1],[1,2,2,2]],[[1,1,0,1],[2,1,3,1],[1,3,2,3],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,2,2],[1,1,3,1]],[[1,1,0,1],[2,1,3,1],[1,3,2,2],[1,1,2,2]],[[1,1,0,1],[2,1,3,1],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,1],[1,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,1,3,1],[1,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,1,3,1],[1,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,1,3,1],[1,4,3,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,0],[2,2,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,0],[1,3,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,0],[1,2,3,1]],[[1,1,0,1],[2,1,4,1],[1,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[1,4,3,1],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,4,1],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,1],[1,1,3,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,1],[1,1,2,2]],[[1,1,0,1],[2,1,4,1],[1,3,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,3,1],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,3,1],[1,3,4,1],[1,2,1,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,1,3,1],[1,3,4,2],[1,0,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,3],[1,0,2,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,2],[1,0,2,2]],[[1,1,0,1],[2,1,4,1],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,1,3,1],[1,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,1,3,1],[1,3,4,2],[1,1,1,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,3],[1,1,1,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,2],[1,1,1,2]],[[1,1,0,1],[2,1,4,1],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,1,3,1],[1,4,3,2],[1,1,2,0]],[[1,1,0,1],[2,1,3,1],[1,3,4,2],[1,1,2,0]],[[1,1,0,1],[2,1,3,1],[1,3,3,3],[1,1,2,0]],[[1,1,0,1],[2,1,3,1],[1,3,3,2],[1,1,3,0]],[[1,1,0,1],[2,1,4,1],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,1,3,1],[1,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,1,3,1],[1,3,4,2],[1,2,0,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,3],[1,2,0,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,1,3,1],[1,3,3,2],[1,2,0,2]],[[1,1,0,1],[2,1,4,1],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,1,3,1],[1,4,3,2],[1,2,1,0]],[[1,1,0,1],[2,1,3,1],[1,3,4,2],[1,2,1,0]],[[1,1,0,1],[2,1,3,1],[1,3,3,3],[1,2,1,0]],[[1,1,0,1],[2,1,3,1],[1,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,1,3,1],[1,3,3,2],[1,3,1,0]],[[1,1,0,1],[2,1,3,1],[2,0,3,3],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,0,3,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,1],[2,0,3,2],[1,2,2,2]],[[2,1,0,1],[2,1,3,1],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[3,1,3,1],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[3,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,1,2,3],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,1,2,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,1,2,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,1],[2,1,2,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,1],[2,1,2,2],[1,2,2,2]],[[2,1,0,1],[2,1,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,0,1],[3,1,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,1,4,1],[2,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[3,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,1,4,1],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,1,3,1],[2,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,1,3,1],[1,3,2,1]],[[1,1,0,1],[2,1,3,1],[2,1,3,1],[1,2,3,1]],[[1,1,0,1],[2,1,3,1],[2,1,3,1],[1,2,2,2]],[[1,1,0,1],[2,1,3,1],[2,1,3,3],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,1,3,2],[0,2,3,1]],[[1,1,0,1],[2,1,3,1],[2,1,3,2],[0,2,2,2]],[[1,1,0,1],[2,1,4,1],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,1],[2,1,4,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,1],[2,1,3,3],[1,2,1,1]],[[1,1,0,1],[2,1,3,1],[2,1,3,2],[1,2,1,2]],[[2,1,0,1],[2,1,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[3,1,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,1,4,1],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,1],[3,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,1],[2,1,4,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,1],[2,1,3,3],[1,2,2,0]],[[1,1,0,1],[2,1,3,1],[2,1,3,2],[2,2,2,0]],[[1,1,0,1],[2,1,3,1],[2,1,3,2],[1,3,2,0]],[[1,1,0,1],[2,1,3,1],[2,1,3,2],[1,2,3,0]],[[2,1,0,1],[2,1,3,1],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[3,1,3,1],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[3,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,1,3],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,1,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,1,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,1,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,1],[2,2,1,2],[1,2,2,2]],[[2,1,0,1],[2,1,3,1],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[3,1,3,1],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[3,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,2,1],[2,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,2,1],[1,3,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,2,1],[1,2,3,1]],[[1,1,0,1],[2,1,3,1],[2,2,2,1],[1,2,2,2]],[[1,1,0,1],[2,1,3,1],[2,2,2,3],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,2,2],[0,3,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,2,2],[0,2,3,1]],[[1,1,0,1],[2,1,3,1],[2,2,2,2],[0,2,2,2]],[[2,1,0,1],[2,1,3,1],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[3,1,3,1],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,1],[3,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,1],[2,2,2,2],[2,2,2,0]],[[1,1,0,1],[2,1,3,1],[2,2,2,2],[1,3,2,0]],[[1,1,0,1],[2,1,3,1],[2,2,2,2],[1,2,3,0]],[[2,1,0,1],[2,1,3,1],[2,2,3,0],[1,2,2,1]],[[1,1,0,1],[3,1,3,1],[2,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[3,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,0],[2,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,0],[1,3,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,0],[1,2,3,1]],[[1,1,0,1],[2,1,4,1],[2,2,3,1],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,4,1],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,1],[0,3,2,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,1],[0,2,3,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,1],[0,2,2,2]],[[2,1,0,1],[2,1,3,1],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[3,1,3,1],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,3,1],[3,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,1],[2,2,1,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,1],[1,3,1,1]],[[1,1,0,1],[2,1,4,1],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,1,3,1],[2,2,4,2],[0,2,1,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,3],[0,2,1,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,2],[0,2,1,2]],[[1,1,0,1],[2,1,4,1],[2,2,3,2],[0,2,2,0]],[[1,1,0,1],[2,1,3,1],[2,2,4,2],[0,2,2,0]],[[1,1,0,1],[2,1,3,1],[2,2,3,3],[0,2,2,0]],[[1,1,0,1],[2,1,3,1],[2,2,3,2],[0,3,2,0]],[[1,1,0,1],[2,1,3,1],[2,2,3,2],[0,2,3,0]],[[2,1,0,1],[2,1,3,1],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[3,1,3,1],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,1,3,1],[3,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,2],[2,2,0,1]],[[1,1,0,1],[2,1,3,1],[2,2,3,2],[1,3,0,1]],[[2,1,0,1],[2,1,3,1],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[3,1,3,1],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,1,3,1],[3,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,1,3,1],[2,2,3,2],[2,2,1,0]],[[1,1,0,1],[2,1,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,2,3,1],[1,3,3,1],[2,2,1,0]],[[1,2,1,1],[0,2,3,1],[1,3,4,1],[1,2,1,0]],[[1,2,1,1],[0,2,3,1],[1,4,3,1],[1,2,1,0]],[[1,2,1,1],[0,2,4,1],[1,3,3,1],[1,2,1,0]],[[1,2,1,1],[0,2,3,1],[1,3,3,1],[1,3,0,1]],[[1,2,1,1],[0,2,3,1],[1,3,3,1],[2,2,0,1]],[[2,1,0,1],[2,1,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[3,1,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[3,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,4,1,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,1,3],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,1,2],[0,3,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,1,2],[0,2,3,1]],[[1,1,0,1],[2,1,3,1],[2,3,1,2],[0,2,2,2]],[[2,1,0,1],[2,1,3,1],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[3,1,3,1],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[3,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[2,4,1,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,1,2],[2,1,2,1]],[[2,1,0,1],[2,1,3,1],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[3,1,3,1],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[3,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,4,2,1],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,2,1],[0,3,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,2,1],[0,2,3,1]],[[1,1,0,1],[2,1,3,1],[2,3,2,1],[0,2,2,2]],[[2,1,0,1],[2,1,3,1],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[3,1,3,1],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[3,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[2,4,2,1],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,2,1],[2,1,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,2,3],[0,1,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,2,2],[0,1,3,1]],[[1,1,0,1],[2,1,3,1],[2,3,2,2],[0,1,2,2]],[[2,1,0,1],[2,1,3,1],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[3,1,3,1],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,1,3,1],[3,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,1,3,1],[2,4,2,2],[0,2,2,0]],[[1,1,0,1],[2,1,3,1],[2,3,2,2],[0,3,2,0]],[[1,1,0,1],[2,1,3,1],[2,3,2,2],[0,2,3,0]],[[1,1,0,1],[2,1,3,1],[2,3,2,3],[1,0,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,2,2],[1,0,3,1]],[[1,1,0,1],[2,1,3,1],[2,3,2,2],[1,0,2,2]],[[2,1,0,1],[2,1,3,1],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[3,1,3,1],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,1,3,1],[3,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,1,3,1],[2,4,2,2],[1,1,2,0]],[[1,1,0,1],[2,1,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,2,3,1],[1,3,4,1],[1,2,0,1]],[[1,2,1,1],[0,2,3,1],[1,4,3,1],[1,2,0,1]],[[1,2,1,1],[0,2,4,1],[1,3,3,1],[1,2,0,1]],[[1,2,1,1],[0,2,3,1],[1,3,3,1],[1,1,3,0]],[[2,1,0,1],[2,1,3,1],[2,3,3,0],[0,2,2,1]],[[1,1,0,1],[3,1,3,1],[2,3,3,0],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[3,3,3,0],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,4,3,0],[0,2,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,0],[0,3,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,0],[0,2,3,1]],[[2,1,0,1],[2,1,3,1],[2,3,3,0],[1,1,2,1]],[[1,1,0,1],[3,1,3,1],[2,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[3,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[2,4,3,0],[1,1,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,0],[2,1,2,1]],[[2,1,0,1],[2,1,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[3,1,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,1,4,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,1,3,1],[3,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,1,3,1],[2,4,3,1],[0,1,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,4,1],[0,1,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,1],[0,1,3,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,1],[0,1,2,2]],[[2,1,0,1],[2,1,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[3,1,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,1,4,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,1,3,1],[3,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,1,3,1],[2,4,3,1],[0,2,1,1]],[[1,1,0,1],[2,1,3,1],[2,3,4,1],[0,2,1,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,1],[0,3,1,1]],[[2,1,0,1],[2,1,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[3,1,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,1,4,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,1,3,1],[3,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,1,3,1],[2,4,3,1],[1,0,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,4,1],[1,0,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,1],[2,0,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,1],[1,0,3,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,1],[1,0,2,2]],[[2,1,0,1],[2,1,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[3,1,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,4,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,3,1],[3,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,3,1],[2,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,3,1],[2,3,4,1],[1,1,1,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,1],[2,1,1,1]],[[2,1,0,1],[2,1,3,1],[2,3,3,1],[1,2,0,1]],[[1,1,0,1],[3,1,3,1],[2,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,1,3,1],[3,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,1,3,1],[2,4,3,1],[1,2,0,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,2,3,1],[1,3,4,1],[1,1,2,0]],[[1,2,1,1],[0,2,3,1],[1,4,3,1],[1,1,2,0]],[[1,2,1,1],[0,2,4,1],[1,3,3,1],[1,1,2,0]],[[1,2,1,1],[0,2,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,1,1],[0,2,3,1],[1,4,3,1],[1,1,1,1]],[[1,2,1,1],[0,2,4,1],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,4,1],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,4,2],[0,0,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,3],[0,0,2,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[0,0,2,2]],[[2,1,0,1],[2,1,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[3,1,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,1,4,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,1,3,1],[3,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,1,3,1],[2,4,3,2],[0,1,1,1]],[[1,1,0,1],[2,1,3,1],[2,3,4,2],[0,1,1,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,3],[0,1,1,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[0,1,1,2]],[[2,1,0,1],[2,1,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[3,1,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,1,4,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,1,3,1],[3,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,1,3,1],[2,4,3,2],[0,1,2,0]],[[1,1,0,1],[2,1,3,1],[2,3,4,2],[0,1,2,0]],[[1,1,0,1],[2,1,3,1],[2,3,3,3],[0,1,2,0]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[0,1,3,0]],[[2,1,0,1],[2,1,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[3,1,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,1,4,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,1,3,1],[3,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,1,3,1],[2,4,3,2],[0,2,0,1]],[[1,1,0,1],[2,1,3,1],[2,3,4,2],[0,2,0,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,3],[0,2,0,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[0,3,0,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[0,2,0,2]],[[2,1,0,1],[2,1,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[3,1,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,1,4,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,1,3,1],[3,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,1,3,1],[2,4,3,2],[0,2,1,0]],[[1,1,0,1],[2,1,3,1],[2,3,4,2],[0,2,1,0]],[[1,1,0,1],[2,1,3,1],[2,3,3,3],[0,2,1,0]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,2,3,1],[1,3,3,0],[1,3,1,1]],[[1,2,1,1],[0,2,3,1],[1,3,3,0],[2,2,1,1]],[[1,2,1,1],[0,2,3,1],[1,3,4,0],[1,2,1,1]],[[1,2,1,1],[0,2,3,1],[1,4,3,0],[1,2,1,1]],[[1,2,1,1],[0,2,4,1],[1,3,3,0],[1,2,1,1]],[[1,2,1,1],[0,2,3,1],[1,3,3,0],[1,1,2,2]],[[1,2,1,1],[0,2,3,1],[1,3,3,0],[1,1,3,1]],[[2,1,0,1],[2,1,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[3,1,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,1,4,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,1,3,1],[3,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,1,3,1],[2,4,3,2],[1,0,1,1]],[[1,1,0,1],[2,1,3,1],[2,3,4,2],[1,0,1,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,3],[1,0,1,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[2,0,1,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[1,0,1,2]],[[2,1,0,1],[2,1,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[3,1,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,1,4,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,1,3,1],[3,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,1,3,1],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[2,1,3,1],[2,3,4,2],[1,0,2,0]],[[1,1,0,1],[2,1,3,1],[2,3,3,3],[1,0,2,0]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[2,0,2,0]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[1,0,3,0]],[[2,1,0,1],[2,1,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[3,1,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,1,4,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,1,3,1],[3,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,1,3,1],[2,4,3,2],[1,1,0,1]],[[1,1,0,1],[2,1,3,1],[2,3,4,2],[1,1,0,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,3],[1,1,0,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[2,1,0,1]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[1,1,0,2]],[[2,1,0,1],[2,1,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[3,1,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,1,4,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,1,3,1],[3,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,1,3,1],[2,4,3,2],[1,1,1,0]],[[1,1,0,1],[2,1,3,1],[2,3,4,2],[1,1,1,0]],[[1,1,0,1],[2,1,3,1],[2,3,3,3],[1,1,1,0]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,2,3,1],[1,3,4,0],[1,1,2,1]],[[1,2,1,1],[0,2,3,1],[1,4,3,0],[1,1,2,1]],[[1,2,1,1],[0,2,4,1],[1,3,3,0],[1,1,2,1]],[[2,1,0,1],[2,1,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[3,1,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,1,3,1],[3,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,1,3,1],[2,4,3,2],[1,2,0,0]],[[1,1,0,1],[2,1,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,2,3,1],[1,3,2,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[1,3,2,1],[1,3,2,0]],[[1,2,1,1],[0,2,3,1],[1,3,2,1],[2,2,2,0]],[[1,2,1,1],[0,2,3,1],[1,4,2,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,1],[1,3,2,0],[1,2,2,2]],[[1,2,1,1],[0,2,3,1],[1,3,2,0],[1,2,3,1]],[[1,2,1,1],[0,2,3,1],[1,3,2,0],[1,3,2,1]],[[1,2,1,1],[0,2,3,1],[1,3,2,0],[2,2,2,1]],[[1,2,1,1],[0,2,3,1],[1,4,2,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,1],[1,2,3,3],[1,2,1,0]],[[1,1,0,2],[2,1,3,2],[1,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,4,2],[1,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,3],[1,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,2,1,3],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,2,1,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,2,1,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,2],[1,2,1,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,2],[1,2,1,2],[1,2,2,2]],[[1,1,0,2],[2,1,3,2],[1,2,2,2],[1,2,1,1]],[[1,1,0,1],[2,1,4,2],[1,2,2,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,3],[1,2,2,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,2],[1,2,2,3],[1,2,1,1]],[[1,1,0,1],[2,1,3,2],[1,2,2,2],[1,2,1,2]],[[1,1,0,2],[2,1,3,2],[1,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,4,2],[1,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,3],[1,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,2],[1,2,2,3],[1,2,2,0]],[[1,1,0,2],[2,1,3,2],[1,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,1,4,2],[1,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,3],[1,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,2,4,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,2,3,0],[2,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,2,3,0],[1,3,2,1]],[[1,1,0,1],[2,1,3,2],[1,2,3,0],[1,2,3,1]],[[1,1,0,1],[2,1,3,2],[1,2,3,0],[1,2,2,2]],[[1,1,0,2],[2,1,3,2],[1,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,4,2],[1,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,3,3],[1,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,3,2],[1,2,4,1],[1,2,1,1]],[[1,1,0,2],[2,1,3,2],[1,2,3,1],[1,2,2,0]],[[1,1,0,1],[2,1,4,2],[1,2,3,1],[1,2,2,0]],[[1,1,0,1],[2,1,3,3],[1,2,3,1],[1,2,2,0]],[[1,1,0,1],[2,1,3,2],[1,2,4,1],[1,2,2,0]],[[1,1,0,1],[2,1,3,2],[1,2,3,1],[2,2,2,0]],[[1,1,0,1],[2,1,3,2],[1,2,3,1],[1,3,2,0]],[[1,1,0,1],[2,1,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[1,2,4,2],[1,2,1,0]],[[1,2,1,1],[0,2,4,1],[1,2,3,2],[1,2,1,0]],[[1,2,1,1],[0,2,3,1],[1,2,3,2],[1,2,0,2]],[[1,2,1,1],[0,2,3,1],[1,2,3,3],[1,2,0,1]],[[1,2,1,1],[0,2,3,1],[1,2,4,2],[1,2,0,1]],[[1,2,1,1],[0,2,4,1],[1,2,3,2],[1,2,0,1]],[[1,1,0,2],[2,1,3,2],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,1,4,2],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,3],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,4,0,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,3,0,3],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,3,0,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,3,0,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,2],[1,3,0,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,2],[1,3,0,2],[1,2,2,2]],[[1,1,0,2],[2,1,3,2],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,1,4,2],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,3],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,2],[1,3,1,3],[1,1,2,1]],[[1,1,0,1],[2,1,3,2],[1,3,1,2],[1,1,3,1]],[[1,1,0,1],[2,1,3,2],[1,3,1,2],[1,1,2,2]],[[1,1,0,1],[2,1,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,3,2,0],[2,2,2,1]],[[1,1,0,1],[2,1,3,2],[1,3,2,0],[1,3,2,1]],[[1,1,0,1],[2,1,3,2],[1,3,2,0],[1,2,3,1]],[[1,1,0,1],[2,1,3,2],[1,3,2,0],[1,2,2,2]],[[1,1,0,1],[2,1,3,2],[1,4,2,1],[1,2,2,0]],[[1,1,0,1],[2,1,3,2],[1,3,2,1],[2,2,2,0]],[[1,1,0,1],[2,1,3,2],[1,3,2,1],[1,3,2,0]],[[1,1,0,1],[2,1,3,2],[1,3,2,1],[1,2,3,0]],[[1,1,0,2],[2,1,3,2],[1,3,2,2],[1,1,1,1]],[[1,1,0,1],[2,1,4,2],[1,3,2,2],[1,1,1,1]],[[1,1,0,1],[2,1,3,3],[1,3,2,2],[1,1,1,1]],[[1,1,0,1],[2,1,3,2],[1,3,2,3],[1,1,1,1]],[[1,1,0,1],[2,1,3,2],[1,3,2,2],[1,1,1,2]],[[1,1,0,2],[2,1,3,2],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,1,4,2],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,1,3,3],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,1,3,2],[1,3,2,3],[1,1,2,0]],[[1,1,0,2],[2,1,3,2],[1,3,2,2],[1,2,0,1]],[[1,1,0,1],[2,1,4,2],[1,3,2,2],[1,2,0,1]],[[1,1,0,1],[2,1,3,3],[1,3,2,2],[1,2,0,1]],[[1,1,0,1],[2,1,3,2],[1,3,2,3],[1,2,0,1]],[[1,1,0,1],[2,1,3,2],[1,3,2,2],[1,2,0,2]],[[1,1,0,2],[2,1,3,2],[1,3,2,2],[1,2,1,0]],[[1,1,0,1],[2,1,4,2],[1,3,2,2],[1,2,1,0]],[[1,1,0,1],[2,1,3,3],[1,3,2,2],[1,2,1,0]],[[1,1,0,1],[2,1,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,1,1],[0,2,3,1],[1,2,3,2],[1,1,3,0]],[[1,2,1,1],[0,2,3,1],[1,2,3,3],[1,1,2,0]],[[1,2,1,1],[0,2,3,1],[1,2,4,2],[1,1,2,0]],[[1,2,1,1],[0,2,4,1],[1,2,3,2],[1,1,2,0]],[[1,2,1,1],[0,2,3,1],[1,2,3,2],[1,1,1,2]],[[1,2,1,1],[0,2,3,1],[1,2,3,3],[1,1,1,1]],[[1,2,1,1],[0,2,3,1],[1,2,4,2],[1,1,1,1]],[[1,1,0,2],[2,1,3,2],[1,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,1,4,2],[1,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,1,3,3],[1,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,1,3,2],[1,4,3,0],[1,1,2,1]],[[1,1,0,1],[2,1,3,2],[1,3,4,0],[1,1,2,1]],[[1,1,0,1],[2,1,3,2],[1,3,3,0],[1,1,3,1]],[[1,1,0,1],[2,1,3,2],[1,3,3,0],[1,1,2,2]],[[1,1,0,2],[2,1,3,2],[1,3,3,0],[1,2,1,1]],[[1,1,0,1],[2,1,4,2],[1,3,3,0],[1,2,1,1]],[[1,1,0,1],[2,1,3,3],[1,3,3,0],[1,2,1,1]],[[1,1,0,1],[2,1,3,2],[1,4,3,0],[1,2,1,1]],[[1,1,0,1],[2,1,3,2],[1,3,4,0],[1,2,1,1]],[[1,1,0,1],[2,1,3,2],[1,3,3,0],[2,2,1,1]],[[1,1,0,1],[2,1,3,2],[1,3,3,0],[1,3,1,1]],[[1,1,0,2],[2,1,3,2],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,4,2],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,3,3],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,3,2],[1,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,1,3,2],[1,3,4,1],[1,1,1,1]],[[1,1,0,2],[2,1,3,2],[1,3,3,1],[1,1,2,0]],[[1,1,0,1],[2,1,4,2],[1,3,3,1],[1,1,2,0]],[[1,1,0,1],[2,1,3,3],[1,3,3,1],[1,1,2,0]],[[1,1,0,1],[2,1,3,2],[1,4,3,1],[1,1,2,0]],[[1,1,0,1],[2,1,3,2],[1,3,4,1],[1,1,2,0]],[[1,1,0,1],[2,1,3,2],[1,3,3,1],[1,1,3,0]],[[1,1,0,2],[2,1,3,2],[1,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,1,4,2],[1,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,1,3,3],[1,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,1,3,2],[1,4,3,1],[1,2,0,1]],[[1,1,0,1],[2,1,3,2],[1,3,4,1],[1,2,0,1]],[[1,1,0,1],[2,1,3,2],[1,3,3,1],[2,2,0,1]],[[1,1,0,1],[2,1,3,2],[1,3,3,1],[1,3,0,1]],[[1,1,0,2],[2,1,3,2],[1,3,3,1],[1,2,1,0]],[[1,1,0,1],[2,1,4,2],[1,3,3,1],[1,2,1,0]],[[1,1,0,1],[2,1,3,3],[1,3,3,1],[1,2,1,0]],[[1,1,0,1],[2,1,3,2],[1,4,3,1],[1,2,1,0]],[[1,1,0,1],[2,1,3,2],[1,3,4,1],[1,2,1,0]],[[1,1,0,1],[2,1,3,2],[1,3,3,1],[2,2,1,0]],[[1,1,0,1],[2,1,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,2,4,1],[1,2,3,2],[1,1,1,1]],[[1,2,1,1],[0,2,3,1],[1,2,3,2],[1,0,2,2]],[[1,2,1,1],[0,2,3,1],[1,2,3,3],[1,0,2,1]],[[1,2,1,1],[0,2,3,1],[1,2,4,2],[1,0,2,1]],[[1,2,1,1],[0,2,4,1],[1,2,3,2],[1,0,2,1]],[[1,2,1,1],[0,2,3,1],[1,2,3,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[1,2,3,1],[1,3,2,0]],[[1,2,1,1],[0,2,3,1],[1,2,3,1],[2,2,2,0]],[[1,2,1,1],[0,2,3,1],[1,2,4,1],[1,2,2,0]],[[1,2,1,1],[0,2,4,1],[1,2,3,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,1],[1,2,3,1],[1,1,2,2]],[[1,2,1,1],[0,2,3,1],[1,2,3,1],[1,1,3,1]],[[1,2,1,1],[0,2,3,1],[1,2,4,1],[1,1,2,1]],[[1,2,1,1],[0,2,4,1],[1,2,3,1],[1,1,2,1]],[[1,2,1,1],[0,2,3,1],[1,2,3,0],[1,2,2,2]],[[1,2,1,1],[0,2,3,1],[1,2,3,0],[1,2,3,1]],[[1,2,1,1],[0,2,3,1],[1,2,3,0],[1,3,2,1]],[[1,2,1,1],[0,2,3,1],[1,2,3,0],[2,2,2,1]],[[1,2,1,1],[0,2,3,1],[1,2,4,0],[1,2,2,1]],[[1,2,1,1],[0,2,4,1],[1,2,3,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,1],[1,2,2,2],[1,1,2,2]],[[1,2,1,1],[0,2,3,1],[1,2,2,2],[1,1,3,1]],[[1,2,1,1],[0,2,3,1],[1,2,2,3],[1,1,2,1]],[[1,2,1,1],[0,2,3,1],[1,1,3,2],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[1,1,3,2],[1,3,2,0]],[[1,2,1,1],[0,2,3,1],[1,1,3,2],[2,2,2,0]],[[1,2,1,1],[0,2,3,1],[1,1,3,3],[1,2,2,0]],[[2,1,0,1],[2,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,0,2],[2,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[3,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,4,2],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,3],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[3,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,1,1,3],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,1,1,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,1,1,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,2],[2,1,1,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,2],[2,1,1,2],[1,2,2,2]],[[1,1,0,2],[2,1,3,2],[2,1,2,2],[1,2,1,1]],[[1,1,0,1],[2,1,4,2],[2,1,2,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,3],[2,1,2,2],[1,2,1,1]],[[1,1,0,1],[2,1,3,2],[2,1,2,3],[1,2,1,1]],[[1,1,0,1],[2,1,3,2],[2,1,2,2],[1,2,1,2]],[[1,1,0,2],[2,1,3,2],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,4,2],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,3],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,1,3,2],[2,1,2,3],[1,2,2,0]],[[2,1,0,1],[2,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,0,2],[2,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[3,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,1,4,2],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,3],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[3,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,1,4,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,1,3,0],[2,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,1,3,0],[1,3,2,1]],[[1,1,0,1],[2,1,3,2],[2,1,3,0],[1,2,3,1]],[[1,1,0,1],[2,1,3,2],[2,1,3,0],[1,2,2,2]],[[1,1,0,2],[2,1,3,2],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,4,2],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,3,3],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,1,3,2],[2,1,4,1],[1,2,1,1]],[[2,1,0,1],[2,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,0,2],[2,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,0,1],[3,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,0,1],[2,1,4,2],[2,1,3,1],[1,2,2,0]],[[1,1,0,1],[2,1,3,3],[2,1,3,1],[1,2,2,0]],[[1,1,0,1],[2,1,3,2],[3,1,3,1],[1,2,2,0]],[[1,1,0,1],[2,1,3,2],[2,1,4,1],[1,2,2,0]],[[1,1,0,1],[2,1,3,2],[2,1,3,1],[2,2,2,0]],[[1,1,0,1],[2,1,3,2],[2,1,3,1],[1,3,2,0]],[[1,1,0,1],[2,1,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[1,1,4,2],[1,2,2,0]],[[1,2,1,1],[0,2,4,1],[1,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,1],[1,1,3,2],[1,2,1,2]],[[1,2,1,1],[0,2,3,1],[1,1,3,3],[1,2,1,1]],[[1,2,1,1],[0,2,3,1],[1,1,4,2],[1,2,1,1]],[[1,2,1,1],[0,2,4,1],[1,1,3,2],[1,2,1,1]],[[1,2,1,1],[0,2,3,1],[1,1,3,1],[1,2,2,2]],[[1,2,1,1],[0,2,3,1],[1,1,3,1],[1,2,3,1]],[[1,2,1,1],[0,2,3,1],[1,1,3,1],[1,3,2,1]],[[1,2,1,1],[0,2,3,1],[1,1,3,1],[2,2,2,1]],[[1,2,1,1],[0,2,3,1],[1,1,4,1],[1,2,2,1]],[[1,2,1,1],[0,2,4,1],[1,1,3,1],[1,2,2,1]],[[2,1,0,1],[2,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,0,2],[2,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[3,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,1,4,2],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,3],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[3,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,0,3],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,0,2],[2,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,0,2],[1,3,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,0,2],[1,2,3,1]],[[1,1,0,1],[2,1,3,2],[2,2,0,2],[1,2,2,2]],[[1,1,0,2],[2,1,3,2],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[2,1,4,2],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,3],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,1,3],[0,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,1,2],[0,3,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,1,2],[0,2,3,1]],[[1,1,0,1],[2,1,3,2],[2,2,1,2],[0,2,2,2]],[[2,1,0,1],[2,1,3,2],[2,2,2,0],[1,2,2,1]],[[1,1,0,1],[3,1,3,2],[2,2,2,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[3,2,2,0],[1,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,2,0],[2,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,2,0],[1,3,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,2,0],[1,2,3,1]],[[1,1,0,1],[2,1,3,2],[2,2,2,0],[1,2,2,2]],[[2,1,0,1],[2,1,3,2],[2,2,2,1],[1,2,2,0]],[[1,1,0,1],[3,1,3,2],[2,2,2,1],[1,2,2,0]],[[1,1,0,1],[2,1,3,2],[3,2,2,1],[1,2,2,0]],[[1,1,0,1],[2,1,3,2],[2,2,2,1],[2,2,2,0]],[[1,1,0,1],[2,1,3,2],[2,2,2,1],[1,3,2,0]],[[1,1,0,1],[2,1,3,2],[2,2,2,1],[1,2,3,0]],[[1,1,0,2],[2,1,3,2],[2,2,2,2],[0,2,1,1]],[[1,1,0,1],[2,1,4,2],[2,2,2,2],[0,2,1,1]],[[1,1,0,1],[2,1,3,3],[2,2,2,2],[0,2,1,1]],[[1,1,0,1],[2,1,3,2],[2,2,2,3],[0,2,1,1]],[[1,1,0,1],[2,1,3,2],[2,2,2,2],[0,2,1,2]],[[1,1,0,2],[2,1,3,2],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[2,1,4,2],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[2,1,3,3],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[2,1,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,1,1],[0,2,3,1],[1,1,2,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,1],[1,1,2,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,1],[1,1,2,2],[1,3,2,1]],[[1,2,1,1],[0,2,3,1],[1,1,2,2],[2,2,2,1]],[[1,2,1,1],[0,2,3,1],[1,1,2,3],[1,2,2,1]],[[1,2,1,1],[0,2,3,1],[1,0,3,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,1],[1,0,3,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,1],[1,0,3,3],[1,2,2,1]],[[1,1,0,2],[2,1,3,2],[2,2,3,0],[0,2,2,1]],[[1,1,0,1],[2,1,4,2],[2,2,3,0],[0,2,2,1]],[[1,1,0,1],[2,1,3,3],[2,2,3,0],[0,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,4,0],[0,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,3,0],[0,3,2,1]],[[1,1,0,1],[2,1,3,2],[2,2,3,0],[0,2,3,1]],[[1,1,0,1],[2,1,3,2],[2,2,3,0],[0,2,2,2]],[[2,1,0,1],[2,1,3,2],[2,2,3,0],[1,2,1,1]],[[1,1,0,1],[3,1,3,2],[2,2,3,0],[1,2,1,1]],[[1,1,0,1],[2,1,3,2],[3,2,3,0],[1,2,1,1]],[[1,1,0,1],[2,1,3,2],[2,2,3,0],[2,2,1,1]],[[1,1,0,1],[2,1,3,2],[2,2,3,0],[1,3,1,1]],[[1,1,0,2],[2,1,3,2],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,1,4,2],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,1,3,3],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,1,3,2],[2,2,4,1],[0,2,1,1]],[[1,1,0,2],[2,1,3,2],[2,2,3,1],[0,2,2,0]],[[1,1,0,1],[2,1,4,2],[2,2,3,1],[0,2,2,0]],[[1,1,0,1],[2,1,3,3],[2,2,3,1],[0,2,2,0]],[[1,1,0,1],[2,1,3,2],[2,2,4,1],[0,2,2,0]],[[1,1,0,1],[2,1,3,2],[2,2,3,1],[0,3,2,0]],[[1,1,0,1],[2,1,3,2],[2,2,3,1],[0,2,3,0]],[[2,1,0,1],[2,1,3,2],[2,2,3,1],[1,2,0,1]],[[1,1,0,1],[3,1,3,2],[2,2,3,1],[1,2,0,1]],[[1,1,0,1],[2,1,3,2],[3,2,3,1],[1,2,0,1]],[[1,1,0,1],[2,1,3,2],[2,2,3,1],[2,2,0,1]],[[1,1,0,1],[2,1,3,2],[2,2,3,1],[1,3,0,1]],[[2,1,0,1],[2,1,3,2],[2,2,3,1],[1,2,1,0]],[[1,1,0,1],[3,1,3,2],[2,2,3,1],[1,2,1,0]],[[1,1,0,1],[2,1,3,2],[3,2,3,1],[1,2,1,0]],[[1,1,0,1],[2,1,3,2],[2,2,3,1],[2,2,1,0]],[[1,1,0,1],[2,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[0,2,3,1],[0,3,3,1],[1,2,3,0]],[[1,2,1,1],[0,2,3,1],[0,3,3,1],[1,3,2,0]],[[1,2,1,1],[0,2,3,1],[0,3,4,1],[1,2,2,0]],[[1,2,1,1],[0,2,4,1],[0,3,3,1],[1,2,2,0]],[[1,2,1,1],[0,2,3,1],[0,3,3,0],[1,2,2,2]],[[1,2,1,1],[0,2,3,1],[0,3,3,0],[1,2,3,1]],[[1,2,1,1],[0,2,3,1],[0,3,3,0],[1,3,2,1]],[[1,2,1,1],[0,2,3,1],[0,3,4,0],[1,2,2,1]],[[1,2,1,1],[0,2,4,1],[0,3,3,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,2,3,0],[2,4,3,2],[1,2,0,0]],[[1,2,1,1],[0,2,3,0],[3,3,3,2],[1,2,0,0]],[[2,1,0,1],[2,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,2],[2,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[3,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,1,4,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,3],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,2],[3,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,4,0,2],[0,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,0,3],[0,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,0,2],[0,3,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,0,2],[0,2,3,1]],[[1,1,0,1],[2,1,3,2],[2,3,0,2],[0,2,2,2]],[[2,1,0,1],[2,1,3,2],[2,3,0,2],[1,1,2,1]],[[1,1,0,1],[3,1,3,2],[2,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,2],[3,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,2],[2,4,0,2],[1,1,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,0,2],[2,1,2,1]],[[1,1,0,2],[2,1,3,2],[2,3,1,2],[0,1,2,1]],[[1,1,0,1],[2,1,4,2],[2,3,1,2],[0,1,2,1]],[[1,1,0,1],[2,1,3,3],[2,3,1,2],[0,1,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,1,3],[0,1,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,1,2],[0,1,3,1]],[[1,1,0,1],[2,1,3,2],[2,3,1,2],[0,1,2,2]],[[1,1,0,2],[2,1,3,2],[2,3,1,2],[1,0,2,1]],[[1,1,0,1],[2,1,4,2],[2,3,1,2],[1,0,2,1]],[[1,1,0,1],[2,1,3,3],[2,3,1,2],[1,0,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,1,3],[1,0,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,1,2],[1,0,3,1]],[[1,1,0,1],[2,1,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,2,3,0],[2,3,4,2],[1,1,1,0]],[[1,2,1,1],[0,2,3,0],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[0,2,3,0],[3,3,3,2],[1,1,1,0]],[[1,2,1,1],[0,2,4,0],[2,3,3,2],[1,1,1,0]],[[2,1,0,1],[2,1,3,2],[2,3,2,0],[0,2,2,1]],[[1,1,0,1],[3,1,3,2],[2,3,2,0],[0,2,2,1]],[[1,1,0,1],[2,1,3,2],[3,3,2,0],[0,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,4,2,0],[0,2,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,0],[0,3,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,0],[0,2,3,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,0],[0,2,2,2]],[[2,1,0,1],[2,1,3,2],[2,3,2,0],[1,1,2,1]],[[1,1,0,1],[3,1,3,2],[2,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,1,3,2],[3,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,1,3,2],[2,4,2,0],[1,1,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,0],[2,1,2,1]],[[2,1,0,1],[2,1,3,2],[2,3,2,1],[0,2,2,0]],[[1,1,0,1],[3,1,3,2],[2,3,2,1],[0,2,2,0]],[[1,1,0,1],[2,1,3,2],[3,3,2,1],[0,2,2,0]],[[1,1,0,1],[2,1,3,2],[2,4,2,1],[0,2,2,0]],[[1,1,0,1],[2,1,3,2],[2,3,2,1],[0,3,2,0]],[[1,1,0,1],[2,1,3,2],[2,3,2,1],[0,2,3,0]],[[2,1,0,1],[2,1,3,2],[2,3,2,1],[1,1,2,0]],[[1,1,0,1],[3,1,3,2],[2,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,1,3,2],[3,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,1,3,2],[2,4,2,1],[1,1,2,0]],[[1,1,0,1],[2,1,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[2,1,0,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,3],[1,1,0,1]],[[1,2,1,1],[0,2,3,0],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[0,2,3,0],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[0,2,3,0],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[0,2,4,0],[2,3,3,2],[1,1,0,1]],[[1,1,0,2],[2,1,3,2],[2,3,2,2],[0,0,2,1]],[[1,1,0,1],[2,1,4,2],[2,3,2,2],[0,0,2,1]],[[1,1,0,1],[2,1,3,3],[2,3,2,2],[0,0,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,3],[0,0,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,2],[0,0,2,2]],[[1,1,0,2],[2,1,3,2],[2,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,1,4,2],[2,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,1,3,3],[2,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,3],[0,1,1,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,2],[0,1,1,2]],[[1,1,0,2],[2,1,3,2],[2,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,1,4,2],[2,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,1,3,3],[2,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,1,3,2],[2,3,2,3],[0,1,2,0]],[[1,1,0,2],[2,1,3,2],[2,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,1,4,2],[2,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,1,3,3],[2,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,3],[0,2,0,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,2],[0,2,0,2]],[[1,1,0,2],[2,1,3,2],[2,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,1,4,2],[2,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,1,3,3],[2,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,1,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[2,0,2,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[0,2,3,0],[2,3,4,2],[1,0,2,0]],[[1,1,0,2],[2,1,3,2],[2,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,1,4,2],[2,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,1,3,3],[2,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,3],[1,0,1,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,2],[1,0,1,2]],[[1,1,0,2],[2,1,3,2],[2,3,2,2],[1,0,2,0]],[[1,1,0,1],[2,1,4,2],[2,3,2,2],[1,0,2,0]],[[1,1,0,1],[2,1,3,3],[2,3,2,2],[1,0,2,0]],[[1,1,0,1],[2,1,3,2],[2,3,2,3],[1,0,2,0]],[[1,1,0,2],[2,1,3,2],[2,3,2,2],[1,1,0,1]],[[1,1,0,1],[2,1,4,2],[2,3,2,2],[1,1,0,1]],[[1,1,0,1],[2,1,3,3],[2,3,2,2],[1,1,0,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,3],[1,1,0,1]],[[1,1,0,1],[2,1,3,2],[2,3,2,2],[1,1,0,2]],[[1,1,0,2],[2,1,3,2],[2,3,2,2],[1,1,1,0]],[[1,1,0,1],[2,1,4,2],[2,3,2,2],[1,1,1,0]],[[1,1,0,1],[2,1,3,3],[2,3,2,2],[1,1,1,0]],[[1,1,0,1],[2,1,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,1],[0,2,3,0],[2,4,3,2],[1,0,2,0]],[[1,2,1,1],[0,2,3,0],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,2,4,0],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[1,0,1,2]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,3],[1,0,1,1]],[[1,2,1,1],[0,2,3,0],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[0,2,3,0],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[0,2,3,0],[3,3,3,2],[1,0,1,1]],[[1,2,1,1],[0,2,4,0],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[0,2,3,0],[2,3,4,2],[0,2,1,0]],[[1,2,1,1],[0,2,3,0],[2,4,3,2],[0,2,1,0]],[[1,2,1,1],[0,2,3,0],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,2,4,0],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[0,2,3,0],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[0,2,3,0],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[0,2,3,0],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[0,2,4,0],[2,3,3,2],[0,2,0,1]],[[2,1,0,1],[2,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,2],[2,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[3,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,1,4,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,1,3,3],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,1,3,2],[3,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,1,3,2],[2,4,3,0],[0,1,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,4,0],[0,1,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,0],[0,1,3,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,0],[0,1,2,2]],[[2,1,0,1],[2,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,2],[2,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[3,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,1,4,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,1,3,3],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,1,3,2],[3,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,1,3,2],[2,4,3,0],[0,2,1,1]],[[1,1,0,1],[2,1,3,2],[2,3,4,0],[0,2,1,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,0],[0,3,1,1]],[[2,1,0,1],[2,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,2],[2,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[3,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,1,4,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,1,3,3],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,1,3,2],[3,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,1,3,2],[2,4,3,0],[1,0,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,4,0],[1,0,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,0],[2,0,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,0],[1,0,3,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,0],[1,0,2,2]],[[2,1,0,1],[2,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,2],[2,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[3,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,1,4,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,1,3,3],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,1,3,2],[3,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,1,3,2],[2,4,3,0],[1,1,1,1]],[[1,1,0,1],[2,1,3,2],[2,3,4,0],[1,1,1,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,0],[2,1,1,1]],[[2,1,0,1],[2,1,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,0,1],[3,1,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,0,1],[2,1,3,2],[3,3,3,0],[1,2,0,1]],[[1,1,0,1],[2,1,3,2],[2,4,3,0],[1,2,0,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[0,2,3,0],[2,3,4,2],[0,1,2,0]],[[1,2,1,1],[0,2,3,0],[2,4,3,2],[0,1,2,0]],[[1,2,1,1],[0,2,3,0],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,2,4,0],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[0,1,1,2]],[[1,1,0,2],[2,1,3,2],[2,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,1,4,2],[2,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,1,3,3],[2,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,1,3,2],[2,3,4,1],[0,0,2,1]],[[2,1,0,1],[2,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,2],[2,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,1],[3,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,1,4,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,1,3,3],[2,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,1,3,2],[3,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,1,3,2],[2,4,3,1],[0,1,1,1]],[[1,1,0,1],[2,1,3,2],[2,3,4,1],[0,1,1,1]],[[2,1,0,1],[2,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,2],[2,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[3,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,1,4,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,1,3,3],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,1,3,2],[3,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,1,3,2],[2,4,3,1],[0,1,2,0]],[[1,1,0,1],[2,1,3,2],[2,3,4,1],[0,1,2,0]],[[1,1,0,1],[2,1,3,2],[2,3,3,1],[0,1,3,0]],[[2,1,0,1],[2,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,2],[2,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[3,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,1,4,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,1,3,3],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,1,3,2],[3,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,1,3,2],[2,4,3,1],[0,2,0,1]],[[1,1,0,1],[2,1,3,2],[2,3,4,1],[0,2,0,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,1],[0,3,0,1]],[[2,1,0,1],[2,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,2],[2,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[3,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,1,4,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,1,3,3],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,1,3,2],[3,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,1,3,2],[2,4,3,1],[0,2,1,0]],[[1,1,0,1],[2,1,3,2],[2,3,4,1],[0,2,1,0]],[[1,1,0,1],[2,1,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[0,2,3,0],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[0,2,3,0],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[0,2,3,0],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,2,4,0],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,2],[0,0,2,2]],[[1,2,1,1],[0,2,3,0],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[0,2,3,0],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[0,2,4,0],[2,3,3,2],[0,0,2,1]],[[2,1,0,1],[2,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,2],[2,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[3,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,1,4,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,1,3,3],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,1,3,2],[3,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,1,3,2],[2,4,3,1],[1,0,1,1]],[[1,1,0,1],[2,1,3,2],[2,3,4,1],[1,0,1,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,1],[2,0,1,1]],[[2,1,0,1],[2,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,2],[2,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[3,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,1,4,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,1,3,3],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,1,3,2],[3,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,1,3,2],[2,4,3,1],[1,0,2,0]],[[1,1,0,1],[2,1,3,2],[2,3,4,1],[1,0,2,0]],[[1,1,0,1],[2,1,3,2],[2,3,3,1],[2,0,2,0]],[[1,1,0,1],[2,1,3,2],[2,3,3,1],[1,0,3,0]],[[2,1,0,1],[2,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,2],[2,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[3,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,1,4,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,1,3,3],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,1,3,2],[3,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,1,3,2],[2,4,3,1],[1,1,0,1]],[[1,1,0,1],[2,1,3,2],[2,3,4,1],[1,1,0,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,1],[2,1,0,1]],[[2,1,0,1],[2,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,2],[2,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[3,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,1,4,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,1,3,3],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,1,3,2],[3,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,1,3,2],[2,4,3,1],[1,1,1,0]],[[1,1,0,1],[2,1,3,2],[2,3,4,1],[1,1,1,0]],[[1,1,0,1],[2,1,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,2,3,0],[2,4,3,1],[1,2,0,1]],[[1,2,1,1],[0,2,3,0],[3,3,3,1],[1,2,0,1]],[[2,1,0,1],[2,1,3,2],[2,3,3,1],[1,2,0,0]],[[1,1,0,1],[3,1,3,2],[2,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,1,3,2],[3,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,1,3,2],[2,4,3,1],[1,2,0,0]],[[1,1,0,1],[2,1,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[0,2,3,0],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[0,2,3,0],[2,3,4,1],[1,1,1,1]],[[1,2,1,1],[0,2,3,0],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[0,2,3,0],[3,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,2,4,0],[2,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[0,2,3,0],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,1],[2,0,2,1]],[[1,2,1,1],[0,2,3,0],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[0,2,3,0],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[0,2,3,0],[3,3,3,1],[1,0,2,1]],[[1,2,1,1],[0,2,4,0],[2,3,3,1],[1,0,2,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[0,2,3,0],[2,3,4,1],[0,2,1,1]],[[1,2,1,1],[0,2,3,0],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[0,2,3,0],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[0,2,4,0],[2,3,3,1],[0,2,1,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[0,2,3,0],[2,3,3,1],[0,1,3,1]],[[1,2,1,1],[0,2,3,0],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[0,2,3,0],[2,4,3,1],[0,1,2,1]],[[1,2,1,1],[0,2,3,0],[3,3,3,1],[0,1,2,1]],[[1,2,1,1],[0,2,4,0],[2,3,3,1],[0,1,2,1]],[[1,1,0,2],[2,1,3,2],[2,3,3,2],[0,1,0,1]],[[1,1,0,1],[2,1,4,2],[2,3,3,2],[0,1,0,1]],[[1,1,0,1],[2,1,3,3],[2,3,3,2],[0,1,0,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,0],[2,1,2,1]],[[1,2,1,1],[0,2,3,0],[2,4,3,0],[1,1,2,1]],[[1,2,1,1],[0,2,3,0],[3,3,3,0],[1,1,2,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,0],[0,2,3,1]],[[1,2,1,1],[0,2,3,0],[2,3,3,0],[0,3,2,1]],[[1,2,1,1],[0,2,3,0],[2,4,3,0],[0,2,2,1]],[[1,2,1,1],[0,2,3,0],[3,3,3,0],[0,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,2,3,0],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[0,2,3,0],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[0,2,3,0],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[0,2,3,0],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[0,2,3,0],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[0,2,3,0],[2,3,2,2],[0,2,3,0]],[[1,2,1,1],[0,2,3,0],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[0,2,3,0],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[0,2,3,0],[3,3,2,2],[0,2,2,0]],[[1,2,1,1],[0,2,3,0],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[0,2,3,0],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[0,2,3,0],[2,3,2,3],[0,1,2,1]],[[1,1,0,2],[2,1,3,2],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[2,1,4,2],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[2,1,3,3],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[2,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,1],[0,2,3,0],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[0,2,3,0],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[0,2,3,0],[3,3,2,1],[1,1,2,1]],[[1,2,1,1],[0,2,3,0],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[0,2,3,0],[2,3,2,1],[0,2,3,1]],[[1,2,1,1],[0,2,3,0],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[0,2,3,0],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[0,2,3,0],[3,3,2,1],[0,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,3,1,2],[2,1,2,1]],[[1,2,1,1],[0,2,3,0],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[0,2,3,0],[3,3,1,2],[1,1,2,1]],[[1,2,1,1],[0,2,3,0],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[0,2,3,0],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[0,2,3,0],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[0,2,3,0],[2,3,1,3],[0,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[0,2,3,0],[3,3,1,2],[0,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,0],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[0,2,3,0],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[0,2,3,0],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[0,2,3,0],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[0,2,3,0],[3,2,3,2],[1,2,0,1]],[[1,2,1,1],[0,2,3,0],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[0,2,3,0],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[0,2,3,0],[2,2,3,3],[0,2,2,0]],[[1,2,1,1],[0,2,3,0],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[0,2,4,0],[2,2,3,2],[0,2,2,0]],[[1,2,1,1],[0,2,3,0],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[0,2,3,0],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[0,2,3,0],[2,2,4,2],[0,2,1,1]],[[1,2,1,1],[0,2,4,0],[2,2,3,2],[0,2,1,1]],[[1,2,1,1],[0,2,3,0],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[0,2,3,0],[2,2,3,1],[2,2,1,1]],[[1,2,1,1],[0,2,3,0],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[0,2,3,0],[2,2,3,1],[0,2,2,2]],[[1,2,1,1],[0,2,3,0],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[0,2,3,0],[2,2,3,1],[0,3,2,1]],[[1,2,1,1],[0,2,3,0],[2,2,4,1],[0,2,2,1]],[[1,2,1,1],[0,2,4,0],[2,2,3,1],[0,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,2,3,0],[1,2,3,1]],[[1,2,1,1],[0,2,3,0],[2,2,3,0],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[2,2,3,0],[2,2,2,1]],[[1,2,1,1],[0,2,3,0],[3,2,3,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[0,2,3,0],[2,2,2,2],[1,3,2,0]],[[1,2,1,1],[0,2,3,0],[2,2,2,2],[2,2,2,0]],[[1,2,1,1],[0,2,3,0],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,0],[2,2,2,2],[0,2,2,2]],[[1,2,1,1],[0,2,3,0],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[0,2,3,0],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[0,2,3,0],[2,2,2,3],[0,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[0,2,3,0],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[0,2,3,0],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[0,2,3,0],[3,2,2,1],[1,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,0],[2,2,1,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,0],[2,2,1,2],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,2,1,3],[1,2,2,1]],[[1,2,1,1],[0,2,3,0],[3,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,0,0],[3,3,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,0,0],[2,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,2,0,0],[2,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,0,0],[2,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,0,0],[2,3,3,2],[1,2,2,2]],[[1,1,0,1],[2,2,0,1],[1,4,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,0,1],[1,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,2,0,1],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,0,1],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,0,1],[1,3,3,2],[1,2,2,2]],[[2,1,0,1],[2,2,0,1],[2,2,3,2],[1,2,2,1]],[[1,1,0,1],[3,2,0,1],[2,2,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,0,1],[3,2,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,0,1],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,2,0,1],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,0,1],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,0,1],[2,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,2,0,1],[3,3,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,0,1],[2,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,0,1],[2,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,0,1],[2,3,3,1],[1,2,3,1]],[[2,1,0,1],[2,2,0,1],[2,3,3,2],[0,2,2,1]],[[1,1,0,1],[3,2,0,1],[2,3,3,2],[0,2,2,1]],[[1,1,0,1],[2,2,0,1],[3,3,3,2],[0,2,2,1]],[[1,1,0,1],[2,2,0,1],[2,4,3,2],[0,2,2,1]],[[1,1,0,1],[2,2,0,1],[2,3,3,2],[0,3,2,1]],[[1,1,0,1],[2,2,0,1],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[2,2,0,1],[2,3,3,2],[0,2,2,2]],[[2,1,0,1],[2,2,0,1],[2,3,3,2],[1,1,2,1]],[[1,1,0,1],[3,2,0,1],[2,3,3,2],[1,1,2,1]],[[1,1,0,1],[2,2,0,1],[3,3,3,2],[1,1,2,1]],[[1,1,0,1],[2,2,0,1],[2,4,3,2],[1,1,2,1]],[[1,1,0,1],[2,2,0,1],[2,3,3,2],[2,1,2,1]],[[1,1,0,1],[2,2,0,1],[3,3,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,0,1],[2,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,0,1],[2,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,0,2],[1,2,3,3],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[1,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,2,0,2],[1,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,0,2],[1,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,0,2],[1,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,2,0,2],[1,4,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[1,3,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,0,2],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,0,2],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,0,2],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,2,0,2],[1,4,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[1,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,0,2],[1,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,0,2],[1,3,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,0,2],[1,3,3,1],[1,2,2,2]],[[1,1,0,1],[2,2,0,2],[1,3,3,3],[1,1,2,1]],[[1,1,0,1],[2,2,0,2],[1,3,3,2],[1,1,3,1]],[[1,1,0,1],[2,2,0,2],[1,3,3,2],[1,1,2,2]],[[1,1,0,1],[2,2,0,2],[1,4,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,0,2],[1,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,0,2],[1,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,0,2],[1,3,3,2],[1,2,3,0]],[[2,1,0,1],[2,2,0,2],[2,1,3,2],[1,2,2,1]],[[1,1,0,1],[3,2,0,2],[2,1,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[3,1,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,1,3,3],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,1,3,2],[2,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,1,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,0,2],[2,1,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,0,2],[2,1,3,2],[1,2,2,2]],[[2,1,0,1],[2,2,0,2],[2,2,2,2],[1,2,2,1]],[[1,1,0,1],[3,2,0,2],[2,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[3,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,0,2],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,0,2],[2,2,2,2],[1,2,2,2]],[[2,1,0,1],[2,2,0,2],[2,2,3,1],[1,2,2,1]],[[1,1,0,1],[3,2,0,2],[2,2,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[3,2,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,0,2],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,0,2],[2,2,3,1],[1,2,2,2]],[[1,1,0,1],[2,2,0,2],[2,2,3,3],[0,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,2,3,2],[0,3,2,1]],[[1,1,0,1],[2,2,0,2],[2,2,3,2],[0,2,3,1]],[[1,1,0,1],[2,2,0,2],[2,2,3,2],[0,2,2,2]],[[2,1,0,1],[2,2,0,2],[2,2,3,2],[1,2,2,0]],[[1,1,0,1],[3,2,0,2],[2,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,0,2],[3,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,0,2],[2,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,0,2],[2,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,0,2],[2,2,3,2],[1,2,3,0]],[[2,1,0,1],[2,2,0,2],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[3,2,0,2],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[2,2,0,2],[3,3,2,2],[0,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,4,2,2],[0,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,3,2,3],[0,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[2,2,0,2],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[2,2,0,2],[2,3,2,2],[0,2,2,2]],[[2,1,0,1],[2,2,0,2],[2,3,2,2],[1,1,2,1]],[[1,1,0,1],[3,2,0,2],[2,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,2,0,2],[3,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,2,0,2],[2,4,2,2],[1,1,2,1]],[[1,1,0,1],[2,2,0,2],[2,3,2,2],[2,1,2,1]],[[2,1,0,1],[2,2,0,2],[2,3,3,1],[0,2,2,1]],[[1,1,0,1],[3,2,0,2],[2,3,3,1],[0,2,2,1]],[[1,1,0,1],[2,2,0,2],[3,3,3,1],[0,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,4,3,1],[0,2,2,1]],[[1,1,0,1],[2,2,0,2],[2,3,3,1],[0,3,2,1]],[[1,1,0,1],[2,2,0,2],[2,3,3,1],[0,2,3,1]],[[1,1,0,1],[2,2,0,2],[2,3,3,1],[0,2,2,2]],[[2,1,0,1],[2,2,0,2],[2,3,3,1],[1,1,2,1]],[[1,1,0,1],[3,2,0,2],[2,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,2,0,2],[3,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,2,0,2],[2,4,3,1],[1,1,2,1]],[[1,1,0,1],[2,2,0,2],[2,3,3,1],[2,1,2,1]],[[1,1,0,1],[2,2,0,2],[2,3,3,3],[0,1,2,1]],[[1,1,0,1],[2,2,0,2],[2,3,3,2],[0,1,3,1]],[[1,1,0,1],[2,2,0,2],[2,3,3,2],[0,1,2,2]],[[2,1,0,1],[2,2,0,2],[2,3,3,2],[0,2,2,0]],[[1,1,0,1],[3,2,0,2],[2,3,3,2],[0,2,2,0]],[[1,1,0,1],[2,2,0,2],[3,3,3,2],[0,2,2,0]],[[1,1,0,1],[2,2,0,2],[2,4,3,2],[0,2,2,0]],[[1,1,0,1],[2,2,0,2],[2,3,3,2],[0,3,2,0]],[[1,1,0,1],[2,2,0,2],[2,3,3,2],[0,2,3,0]],[[1,1,0,1],[2,2,0,2],[2,3,3,3],[1,0,2,1]],[[1,1,0,1],[2,2,0,2],[2,3,3,2],[1,0,3,1]],[[1,1,0,1],[2,2,0,2],[2,3,3,2],[1,0,2,2]],[[2,1,0,1],[2,2,0,2],[2,3,3,2],[1,1,2,0]],[[1,1,0,1],[3,2,0,2],[2,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,0,2],[3,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,0,2],[2,4,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[0,2,3,0],[2,1,3,2],[1,2,3,0]],[[1,1,0,1],[2,2,1,0],[1,4,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,0],[1,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,2,1,0],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,1,0],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,1,0],[1,3,3,2],[1,2,2,2]],[[2,1,0,1],[2,2,1,0],[2,2,3,2],[1,2,2,1]],[[1,1,0,1],[3,2,1,0],[2,2,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,0],[3,2,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,0],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,2,1,0],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,1,0],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,1,0],[2,2,3,2],[1,2,2,2]],[[2,1,0,1],[2,2,1,0],[2,3,3,2],[0,2,2,1]],[[1,1,0,1],[3,2,1,0],[2,3,3,2],[0,2,2,1]],[[1,1,0,1],[2,2,1,0],[3,3,3,2],[0,2,2,1]],[[1,1,0,1],[2,2,1,0],[2,4,3,2],[0,2,2,1]],[[1,1,0,1],[2,2,1,0],[2,3,3,2],[0,3,2,1]],[[1,1,0,1],[2,2,1,0],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[2,2,1,0],[2,3,3,2],[0,2,2,2]],[[2,1,0,1],[2,2,1,0],[2,3,3,2],[1,1,2,1]],[[1,1,0,1],[3,2,1,0],[2,3,3,2],[1,1,2,1]],[[1,1,0,1],[2,2,1,0],[3,3,3,2],[1,1,2,1]],[[1,1,0,1],[2,2,1,0],[2,4,3,2],[1,1,2,1]],[[1,1,0,1],[2,2,1,0],[2,3,3,2],[2,1,2,1]],[[1,1,0,1],[2,2,1,1],[1,4,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,1],[1,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,1,1],[1,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,1,1],[1,3,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,1,1],[1,3,3,1],[1,2,2,2]],[[1,1,0,1],[2,2,1,1],[1,4,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,1],[1,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,1,1],[1,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,1,1],[1,3,3,2],[1,2,3,0]],[[2,1,0,1],[2,2,1,1],[2,2,3,1],[1,2,2,1]],[[1,1,0,1],[3,2,1,1],[2,2,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,1],[3,2,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,1],[2,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,1,1],[2,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,1,1],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,1,1],[2,2,3,1],[1,2,2,2]],[[2,1,0,1],[2,2,1,1],[2,2,3,2],[1,2,2,0]],[[1,1,0,1],[3,2,1,1],[2,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,1],[3,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,1],[2,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,1,1],[2,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,1,1],[2,2,3,2],[1,2,3,0]],[[2,1,0,1],[2,2,1,1],[2,3,3,1],[0,2,2,1]],[[1,1,0,1],[3,2,1,1],[2,3,3,1],[0,2,2,1]],[[1,1,0,1],[2,2,1,1],[3,3,3,1],[0,2,2,1]],[[1,1,0,1],[2,2,1,1],[2,4,3,1],[0,2,2,1]],[[1,1,0,1],[2,2,1,1],[2,3,3,1],[0,3,2,1]],[[1,1,0,1],[2,2,1,1],[2,3,3,1],[0,2,3,1]],[[1,1,0,1],[2,2,1,1],[2,3,3,1],[0,2,2,2]],[[2,1,0,1],[2,2,1,1],[2,3,3,1],[1,1,2,1]],[[1,1,0,1],[3,2,1,1],[2,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,2,1,1],[3,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,2,1,1],[2,4,3,1],[1,1,2,1]],[[1,1,0,1],[2,2,1,1],[2,3,3,1],[2,1,2,1]],[[2,1,0,1],[2,2,1,1],[2,3,3,2],[0,2,2,0]],[[1,1,0,1],[3,2,1,1],[2,3,3,2],[0,2,2,0]],[[1,1,0,1],[2,2,1,1],[3,3,3,2],[0,2,2,0]],[[1,1,0,1],[2,2,1,1],[2,4,3,2],[0,2,2,0]],[[1,1,0,1],[2,2,1,1],[2,3,3,2],[0,3,2,0]],[[1,1,0,1],[2,2,1,1],[2,3,3,2],[0,2,3,0]],[[2,1,0,1],[2,2,1,1],[2,3,3,2],[1,1,2,0]],[[1,1,0,1],[3,2,1,1],[2,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,1,1],[3,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,1,1],[2,4,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[0,2,3,0],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[0,2,3,0],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[0,2,3,0],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[0,2,3,0],[2,1,4,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,0],[3,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,4,0],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,0],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[0,2,3,0],[2,1,3,3],[1,2,1,1]],[[1,1,0,1],[2,2,1,2],[0,2,3,3],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[0,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,1,2],[0,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,1,2],[0,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,2,1,2],[0,3,3,3],[1,1,2,1]],[[1,1,0,1],[2,2,1,2],[0,3,3,2],[1,1,3,1]],[[1,1,0,1],[2,2,1,2],[0,3,3,2],[1,1,2,2]],[[1,1,0,2],[2,2,1,2],[1,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,3],[1,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,1,2],[1,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,1,2],[1,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,2,1,2],[1,2,4,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,1,2],[1,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,1,2],[1,2,3,1],[1,2,2,2]],[[1,1,0,1],[2,2,1,2],[1,2,3,3],[0,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,2,3,2],[0,2,3,1]],[[1,1,0,1],[2,2,1,2],[1,2,3,2],[0,2,2,2]],[[1,1,0,2],[2,2,1,2],[1,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,1,3],[1,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,1,2],[1,2,4,2],[1,2,1,1]],[[1,1,0,1],[2,2,1,2],[1,2,3,3],[1,2,1,1]],[[1,1,0,1],[2,2,1,2],[1,2,3,2],[1,2,1,2]],[[1,1,0,2],[2,2,1,2],[1,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,3],[1,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[1,2,4,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[1,2,3,3],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[1,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,1,2],[1,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,1,2],[1,2,3,2],[1,2,3,0]],[[1,1,0,2],[2,2,1,2],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,3],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,2,1,2],[1,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,2,1,2],[1,4,2,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,2,1,2],[1,3,2,1],[1,2,2,2]],[[1,1,0,2],[2,2,1,2],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,2,1,3],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,2,3],[1,1,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,2,2],[1,1,3,1]],[[1,1,0,1],[2,2,1,2],[1,3,2,2],[1,1,2,2]],[[1,1,0,1],[2,2,1,2],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[1,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,2,1,2],[1,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,2,1,2],[1,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,2,1,2],[1,4,3,1],[1,1,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,4,1],[1,1,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,1],[1,1,3,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,1],[1,1,2,2]],[[1,1,0,1],[2,2,1,2],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,1,2],[1,3,4,1],[1,2,1,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,3],[0,1,2,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,2],[0,1,3,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,2],[0,1,2,2]],[[1,1,0,2],[2,2,1,2],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,1,3],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,1,2],[1,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,1,2],[1,3,4,2],[1,1,1,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,3],[1,1,1,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,2],[1,1,1,2]],[[1,1,0,2],[2,2,1,2],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,1,3],[1,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,1,2],[1,4,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,1,2],[1,3,4,2],[1,1,2,0]],[[1,1,0,1],[2,2,1,2],[1,3,3,3],[1,1,2,0]],[[1,1,0,1],[2,2,1,2],[1,3,3,2],[1,1,3,0]],[[1,1,0,2],[2,2,1,2],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,1,3],[1,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,1,2],[1,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,1,2],[1,3,4,2],[1,2,0,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,3],[1,2,0,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,2,1,2],[1,3,3,2],[1,2,0,2]],[[1,1,0,2],[2,2,1,2],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,1,3],[1,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,1,2],[1,4,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,1,2],[1,3,4,2],[1,2,1,0]],[[1,1,0,1],[2,2,1,2],[1,3,3,3],[1,2,1,0]],[[1,1,0,1],[2,2,1,2],[1,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,2,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,0],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[0,2,4,0],[2,1,3,2],[1,2,1,1]],[[1,2,1,1],[0,2,3,0],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[0,2,3,0],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[0,2,3,0],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[0,2,3,0],[3,1,3,1],[1,2,2,1]],[[1,2,1,1],[0,2,4,0],[2,1,3,1],[1,2,2,1]],[[2,1,0,1],[2,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,0,2],[2,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[3,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,3],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[3,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,1,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,1,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,1,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,1,2],[2,1,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,1,2],[2,1,2,2],[1,2,2,2]],[[2,1,0,1],[2,2,1,2],[2,1,3,1],[1,2,2,1]],[[1,1,0,1],[3,2,1,2],[2,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[3,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,1,4,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,1,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,1,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,1,2],[2,1,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,1,2],[2,1,3,1],[1,2,2,2]],[[1,1,0,2],[2,2,1,2],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,1,3],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,1,2],[2,1,4,2],[1,2,1,1]],[[1,1,0,1],[2,2,1,2],[2,1,3,3],[1,2,1,1]],[[1,1,0,1],[2,2,1,2],[2,1,3,2],[1,2,1,2]],[[2,1,0,1],[2,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,0,2],[2,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[3,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,3],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[3,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,1,4,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,1,3,3],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,1,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,1,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,1,2],[2,1,3,2],[1,2,3,0]],[[2,1,0,1],[2,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,0,2],[2,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[3,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,3],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[3,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,1,3],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,1,2],[2,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,1,2],[1,3,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,1,2],[1,2,3,1]],[[1,1,0,1],[2,2,1,2],[2,2,1,2],[1,2,2,2]],[[2,1,0,1],[2,2,1,2],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[3,2,1,2],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[3,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,2,1],[2,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,2,1],[1,3,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,2,1],[1,2,3,1]],[[1,1,0,1],[2,2,1,2],[2,2,2,1],[1,2,2,2]],[[1,1,0,2],[2,2,1,2],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[2,2,1,3],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,2,3],[0,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,2,2],[0,3,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,2,2],[0,2,3,1]],[[1,1,0,1],[2,2,1,2],[2,2,2,2],[0,2,2,2]],[[2,1,0,1],[2,2,1,2],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[3,2,1,2],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[3,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,2,2,2],[2,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,2,2,2],[1,3,2,0]],[[1,1,0,1],[2,2,1,2],[2,2,2,2],[1,2,3,0]],[[1,1,0,1],[2,2,1,2],[2,2,4,1],[0,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,3,1],[0,3,2,1]],[[1,1,0,1],[2,2,1,2],[2,2,3,1],[0,2,3,1]],[[1,1,0,1],[2,2,1,2],[2,2,3,1],[0,2,2,2]],[[2,1,0,1],[2,2,1,2],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[3,2,1,2],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,1,2],[3,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,1,2],[2,2,3,1],[2,2,1,1]],[[1,1,0,1],[2,2,1,2],[2,2,3,1],[1,3,1,1]],[[1,1,0,2],[2,2,1,2],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,2,1,3],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,2,1,2],[2,2,4,2],[0,2,1,1]],[[1,1,0,1],[2,2,1,2],[2,2,3,3],[0,2,1,1]],[[1,1,0,1],[2,2,1,2],[2,2,3,2],[0,2,1,2]],[[1,1,0,2],[2,2,1,2],[2,2,3,2],[0,2,2,0]],[[1,1,0,1],[2,2,1,3],[2,2,3,2],[0,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,2,4,2],[0,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,2,3,3],[0,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,2,3,2],[0,3,2,0]],[[1,1,0,1],[2,2,1,2],[2,2,3,2],[0,2,3,0]],[[2,1,0,1],[2,2,1,2],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[3,2,1,2],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,1,2],[3,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,1,2],[2,2,3,2],[2,2,0,1]],[[1,1,0,1],[2,2,1,2],[2,2,3,2],[1,3,0,1]],[[2,1,0,1],[2,2,1,2],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[3,2,1,2],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,1,2],[3,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,1,2],[2,2,3,2],[2,2,1,0]],[[1,1,0,1],[2,2,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,0],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,0],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,0],[2,1,2,2],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[2,1,2,2],[2,2,2,1]],[[1,2,1,1],[0,2,3,0],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[0,2,3,0],[3,1,2,2],[1,2,2,1]],[[2,1,0,1],[2,2,1,2],[2,3,0,2],[1,2,2,1]],[[1,1,0,1],[3,2,1,2],[2,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[3,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,0,2],[2,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,0,2],[1,3,2,1]],[[2,1,0,1],[2,2,1,2],[2,3,1,1],[1,2,2,1]],[[1,1,0,1],[3,2,1,2],[2,3,1,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[3,3,1,1],[1,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,1,1],[2,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,1,1],[1,3,2,1]],[[2,1,0,1],[2,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,0,2],[2,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[3,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,1,3],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,1,2],[3,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,4,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,1,3],[0,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,1,2],[0,3,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,1,2],[0,2,3,1]],[[1,1,0,1],[2,2,1,2],[2,3,1,2],[0,2,2,2]],[[2,1,0,1],[2,2,1,2],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[3,2,1,2],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,2,1,2],[3,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,2,1,2],[2,4,1,2],[1,1,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,1,2],[2,1,2,1]],[[2,1,0,1],[2,2,1,2],[2,3,1,2],[1,2,2,0]],[[1,1,0,1],[3,2,1,2],[2,3,1,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[3,3,1,2],[1,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,1,2],[2,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,1,2],[1,3,2,0]],[[2,1,0,1],[2,2,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[3,2,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,2,1,2],[3,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,4,2,1],[0,2,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,2,1],[0,3,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,2,1],[0,2,3,1]],[[1,1,0,1],[2,2,1,2],[2,3,2,1],[0,2,2,2]],[[2,1,0,1],[2,2,1,2],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[3,2,1,2],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,2,1,2],[3,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,2,1,2],[2,4,2,1],[1,1,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,2,1],[2,1,2,1]],[[1,1,0,2],[2,2,1,2],[2,3,2,2],[0,1,2,1]],[[1,1,0,1],[2,2,1,3],[2,3,2,2],[0,1,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,2,3],[0,1,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,2,2],[0,1,3,1]],[[1,1,0,1],[2,2,1,2],[2,3,2,2],[0,1,2,2]],[[2,1,0,1],[2,2,1,2],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[3,2,1,2],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,2,1,2],[3,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,4,2,2],[0,2,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,2,2],[0,3,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,2,2],[0,2,3,0]],[[1,1,0,2],[2,2,1,2],[2,3,2,2],[1,0,2,1]],[[1,1,0,1],[2,2,1,3],[2,3,2,2],[1,0,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,2,3],[1,0,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,2,2],[1,0,3,1]],[[1,1,0,1],[2,2,1,2],[2,3,2,2],[1,0,2,2]],[[2,1,0,1],[2,2,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[3,2,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,2,1,2],[3,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,2,1,2],[2,4,2,2],[1,1,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,2,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,0],[1,3,3,2],[2,2,1,0]],[[2,1,0,1],[2,2,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[3,2,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,2,1,2],[3,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,2,1,2],[2,4,3,1],[0,1,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,4,1],[0,1,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,1],[0,1,3,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,1],[0,1,2,2]],[[2,1,0,1],[2,2,1,2],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[3,2,1,2],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,1,2],[3,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,1,2],[2,4,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,1,2],[2,3,4,1],[0,2,1,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,1],[0,3,1,1]],[[2,1,0,1],[2,2,1,2],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[3,2,1,2],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,1,2],[3,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,1,2],[2,4,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,4,1],[1,0,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,1],[2,0,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,1],[1,0,3,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,1],[1,0,2,2]],[[2,1,0,1],[2,2,1,2],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[3,2,1,2],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,1,2],[3,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,1,2],[2,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,1,2],[2,3,4,1],[1,1,1,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,1],[2,1,1,1]],[[2,1,0,1],[2,2,1,2],[2,3,3,1],[1,2,0,1]],[[1,1,0,1],[3,2,1,2],[2,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,1,2],[3,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,1,2],[2,4,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,2,3,0],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[0,2,3,0],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[0,2,3,0],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[0,2,4,0],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[0,2,3,0],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[0,2,3,0],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[0,2,3,0],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[0,2,3,0],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[0,2,3,0],[1,3,4,2],[1,2,0,1]],[[1,1,0,2],[2,2,1,2],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,2,1,3],[2,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,4,2],[0,0,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,3],[0,0,2,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[0,0,2,2]],[[2,1,0,1],[2,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,2],[2,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[3,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,1,3],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,1,2],[3,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,1,2],[2,4,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,1,2],[2,3,4,2],[0,1,1,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,3],[0,1,1,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[0,1,1,2]],[[2,1,0,1],[2,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,0,2],[2,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[3,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,1,3],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,1,2],[3,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,1,2],[2,4,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,4,2],[0,1,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,3,3],[0,1,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[0,1,3,0]],[[2,1,0,1],[2,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,0,2],[2,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[3,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,1,3],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,1,2],[3,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,1,2],[2,4,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,1,2],[2,3,4,2],[0,2,0,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,3],[0,2,0,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[0,3,0,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[0,2,0,2]],[[2,1,0,1],[2,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,0,2],[2,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[3,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,1,3],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,1,2],[3,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,1,2],[2,4,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,1,2],[2,3,4,2],[0,2,1,0]],[[1,1,0,1],[2,2,1,2],[2,3,3,3],[0,2,1,0]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,2,3,0],[1,4,3,2],[1,2,0,1]],[[1,2,1,1],[0,2,4,0],[1,3,3,2],[1,2,0,1]],[[1,2,1,1],[0,2,3,0],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[0,2,3,0],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[0,2,3,0],[1,3,4,2],[1,1,2,0]],[[2,1,0,1],[2,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,2],[2,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[3,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,1,3],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,1,2],[3,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,1,2],[2,4,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,1,2],[2,3,4,2],[1,0,1,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,3],[1,0,1,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[2,0,1,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[1,0,1,2]],[[2,1,0,1],[2,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,0,2],[2,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[3,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,1,3],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,1,2],[3,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,1,2],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,4,2],[1,0,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,3,3],[1,0,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[2,0,2,0]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[1,0,3,0]],[[2,1,0,1],[2,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,2],[2,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[3,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,1,3],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,1,2],[3,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,1,2],[2,4,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,1,2],[2,3,4,2],[1,1,0,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,3],[1,1,0,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[2,1,0,1]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[1,1,0,2]],[[2,1,0,1],[2,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,0,2],[2,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[3,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,1,3],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,1,2],[3,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,1,2],[2,4,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,1,2],[2,3,4,2],[1,1,1,0]],[[1,1,0,1],[2,2,1,2],[2,3,3,3],[1,1,1,0]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,2,3,0],[1,4,3,2],[1,1,2,0]],[[1,2,1,1],[0,2,4,0],[1,3,3,2],[1,1,2,0]],[[1,2,1,1],[0,2,3,0],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[0,2,3,0],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[0,2,3,0],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[0,2,3,0],[1,4,3,2],[1,1,1,1]],[[1,2,1,1],[0,2,4,0],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[0,2,3,0],[1,3,3,2],[1,0,2,2]],[[1,2,1,1],[0,2,3,0],[1,3,3,3],[1,0,2,1]],[[1,2,1,1],[0,2,3,0],[1,3,4,2],[1,0,2,1]],[[1,2,1,1],[0,2,4,0],[1,3,3,2],[1,0,2,1]],[[2,1,0,1],[2,2,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[3,2,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,2,1,2],[3,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,2,1,2],[2,4,3,2],[1,2,0,0]],[[1,1,0,1],[2,2,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,2,3,0],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[0,2,3,0],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[0,2,3,0],[1,3,4,1],[1,2,1,1]],[[1,2,1,1],[0,2,3,0],[1,4,3,1],[1,2,1,1]],[[1,2,1,1],[0,2,4,0],[1,3,3,1],[1,2,1,1]],[[1,2,1,1],[0,2,3,0],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[0,2,3,0],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[0,2,3,0],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[0,2,3,0],[1,4,3,1],[1,1,2,1]],[[1,2,1,1],[0,2,4,0],[1,3,3,1],[1,1,2,1]],[[1,2,1,1],[0,2,3,0],[1,3,3,0],[1,2,3,1]],[[1,2,1,1],[0,2,3,0],[1,3,3,0],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[1,3,3,0],[2,2,2,1]],[[1,2,1,1],[0,2,3,0],[1,4,3,0],[1,2,2,1]],[[1,2,1,1],[0,2,3,0],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[0,2,3,0],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[0,2,3,0],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[0,2,3,0],[1,4,2,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,0],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[0,2,3,0],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[0,2,3,0],[1,3,2,3],[1,1,2,1]],[[1,1,0,1],[2,2,2,0],[1,2,4,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,0],[1,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,0],[1,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,0],[1,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,0],[1,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,2,2,0],[1,4,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,0],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,0],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,0],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,0],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,2,2,0],[1,4,3,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,0],[1,3,4,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,0],[1,3,3,2],[1,1,3,1]],[[1,1,0,1],[2,2,2,0],[1,3,3,2],[1,1,2,2]],[[1,1,0,1],[2,2,2,0],[1,4,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,0],[1,3,4,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,0],[1,3,3,2],[2,2,1,1]],[[1,1,0,1],[2,2,2,0],[1,3,3,2],[1,3,1,1]],[[2,1,0,1],[2,2,2,0],[2,1,3,2],[1,2,2,1]],[[1,1,0,1],[3,2,2,0],[2,1,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,0],[3,1,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,0],[2,1,4,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,0],[2,1,3,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,0],[2,1,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,0],[2,1,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,0],[2,1,3,2],[1,2,2,2]],[[2,1,0,1],[2,2,2,0],[2,2,2,2],[1,2,2,1]],[[1,1,0,1],[3,2,2,0],[2,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,0],[3,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,0],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,0],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,0],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,0],[2,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,2,2,0],[2,2,4,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,0],[2,2,3,2],[0,3,2,1]],[[1,1,0,1],[2,2,2,0],[2,2,3,2],[0,2,3,1]],[[1,1,0,1],[2,2,2,0],[2,2,3,2],[0,2,2,2]],[[2,1,0,1],[2,2,2,0],[2,2,3,2],[1,2,1,1]],[[1,1,0,1],[3,2,2,0],[2,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,0],[3,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,0],[2,2,3,2],[2,2,1,1]],[[1,1,0,1],[2,2,2,0],[2,2,3,2],[1,3,1,1]],[[1,1,0,1],[3,2,2,0],[2,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,0],[3,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,0],[2,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,0],[2,3,1,2],[1,3,2,1]],[[2,1,0,1],[2,2,2,0],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[3,2,2,0],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,0],[3,3,2,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,0],[2,4,2,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,0],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[2,2,2,0],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[2,2,2,0],[2,3,2,2],[0,2,2,2]],[[2,1,0,1],[2,2,2,0],[2,3,2,2],[1,1,2,1]],[[1,1,0,1],[3,2,2,0],[2,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,0],[3,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,0],[2,4,2,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,0],[2,3,2,2],[2,1,2,1]],[[2,1,0,1],[2,2,2,0],[2,3,3,2],[0,1,2,1]],[[1,1,0,1],[3,2,2,0],[2,3,3,2],[0,1,2,1]],[[1,1,0,1],[2,2,2,0],[3,3,3,2],[0,1,2,1]],[[1,1,0,1],[2,2,2,0],[2,4,3,2],[0,1,2,1]],[[1,1,0,1],[2,2,2,0],[2,3,4,2],[0,1,2,1]],[[1,1,0,1],[2,2,2,0],[2,3,3,2],[0,1,3,1]],[[1,1,0,1],[2,2,2,0],[2,3,3,2],[0,1,2,2]],[[2,1,0,1],[2,2,2,0],[2,3,3,2],[0,2,1,1]],[[1,1,0,1],[3,2,2,0],[2,3,3,2],[0,2,1,1]],[[1,1,0,1],[2,2,2,0],[3,3,3,2],[0,2,1,1]],[[1,1,0,1],[2,2,2,0],[2,4,3,2],[0,2,1,1]],[[1,1,0,1],[2,2,2,0],[2,3,4,2],[0,2,1,1]],[[1,1,0,1],[2,2,2,0],[2,3,3,2],[0,3,1,1]],[[2,1,0,1],[2,2,2,0],[2,3,3,2],[1,0,2,1]],[[1,1,0,1],[3,2,2,0],[2,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,2,2,0],[3,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,2,2,0],[2,4,3,2],[1,0,2,1]],[[1,1,0,1],[2,2,2,0],[2,3,4,2],[1,0,2,1]],[[1,1,0,1],[2,2,2,0],[2,3,3,2],[2,0,2,1]],[[1,1,0,1],[2,2,2,0],[2,3,3,2],[1,0,3,1]],[[1,1,0,1],[2,2,2,0],[2,3,3,2],[1,0,2,2]],[[2,1,0,1],[2,2,2,0],[2,3,3,2],[1,1,1,1]],[[1,1,0,1],[3,2,2,0],[2,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,2,0],[3,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,2,0],[2,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,2,0],[2,3,4,2],[1,1,1,1]],[[1,1,0,1],[2,2,2,0],[2,3,3,2],[2,1,1,1]],[[1,1,0,1],[3,2,2,0],[2,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,2,0],[3,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,2,0],[2,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,1,1],[0,2,3,0],[1,3,2,1],[1,2,2,2]],[[1,2,1,1],[0,2,3,0],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[0,2,3,0],[1,3,2,1],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[0,2,3,0],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[0,2,3,0],[1,3,1,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,0],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,0],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,1],[1,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,1],[1,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,2,2,1],[1,2,4,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,2,1],[1,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,2,1],[1,2,3,1],[1,2,2,2]],[[1,1,0,1],[2,2,2,1],[1,2,4,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,1],[1,2,3,3],[1,2,1,1]],[[1,1,0,1],[2,2,2,1],[1,2,3,2],[1,2,1,2]],[[1,1,0,1],[2,2,2,1],[1,2,4,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,1],[1,2,3,3],[1,2,2,0]],[[1,1,0,1],[2,2,2,1],[1,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,2,1],[1,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,2,1],[1,2,3,2],[1,2,3,0]],[[1,1,0,1],[2,2,2,1],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,1],[1,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,2,2,1],[1,4,2,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,2,2,1],[1,3,2,1],[1,2,2,2]],[[1,1,0,1],[2,2,2,1],[1,3,2,3],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,2,2],[1,1,3,1]],[[1,1,0,1],[2,2,2,1],[1,3,2,2],[1,1,2,2]],[[1,1,0,1],[2,2,2,1],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,1],[1,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,2,2,1],[1,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,2,2,1],[1,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,2,2,1],[1,4,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,0],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,0],[1,3,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,0],[1,2,3,1]],[[1,1,0,1],[2,2,2,1],[1,4,3,1],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,4,1],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,1],[1,1,3,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,1],[1,1,2,2]],[[1,1,0,1],[2,2,2,1],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,2,1],[1,3,4,1],[1,2,1,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,2,2,1],[1,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,2,1],[1,3,4,2],[1,1,1,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,3],[1,1,1,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,2],[1,1,1,2]],[[1,1,0,1],[2,2,2,1],[1,4,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,2,1],[1,3,4,2],[1,1,2,0]],[[1,1,0,1],[2,2,2,1],[1,3,3,3],[1,1,2,0]],[[1,1,0,1],[2,2,2,1],[1,3,3,2],[1,1,3,0]],[[1,1,0,1],[2,2,2,1],[1,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,2,1],[1,3,4,2],[1,2,0,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,3],[1,2,0,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,2,2,1],[1,3,3,2],[1,2,0,2]],[[1,1,0,1],[2,2,2,1],[1,4,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,2,1],[1,3,4,2],[1,2,1,0]],[[1,1,0,1],[2,2,2,1],[1,3,3,3],[1,2,1,0]],[[1,1,0,1],[2,2,2,1],[1,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,2,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,0],[1,3,1,3],[1,2,2,1]],[[1,2,1,1],[0,2,3,0],[1,4,1,2],[1,2,2,1]],[[2,1,0,1],[2,2,2,1],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[3,2,2,1],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[3,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,1,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,1,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,1,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,1],[2,1,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,1],[2,1,2,2],[1,2,2,2]],[[2,1,0,1],[2,2,2,1],[2,1,3,1],[1,2,2,1]],[[1,1,0,1],[3,2,2,1],[2,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[3,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,1,4,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,1,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,1,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,2,1],[2,1,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,2,1],[2,1,3,1],[1,2,2,2]],[[1,1,0,1],[2,2,2,1],[2,1,4,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,1],[2,1,3,3],[1,2,1,1]],[[1,1,0,1],[2,2,2,1],[2,1,3,2],[1,2,1,2]],[[2,1,0,1],[2,2,2,1],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[3,2,2,1],[2,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,1],[3,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,1,4,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,1,3,3],[1,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,1,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,1,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,2,1],[2,1,3,2],[1,2,3,0]],[[2,1,0,1],[2,2,2,1],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[3,2,2,1],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[3,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,1,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,1,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,1,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,1,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,1],[2,2,1,2],[1,2,2,2]],[[2,1,0,1],[2,2,2,1],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[3,2,2,1],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[3,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,2,1],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,2,1],[1,3,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,2,1],[1,2,3,1]],[[1,1,0,1],[2,2,2,1],[2,2,2,1],[1,2,2,2]],[[1,1,0,1],[2,2,2,1],[2,2,2,3],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,2,2],[0,3,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,2,2],[0,2,3,1]],[[1,1,0,1],[2,2,2,1],[2,2,2,2],[0,2,2,2]],[[2,1,0,1],[2,2,2,1],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[3,2,2,1],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,1],[3,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,2,2,2],[2,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,2,2,2],[1,3,2,0]],[[1,1,0,1],[2,2,2,1],[2,2,2,2],[1,2,3,0]],[[2,1,0,1],[2,2,2,1],[2,2,3,0],[1,2,2,1]],[[1,1,0,1],[3,2,2,1],[2,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[3,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,0],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,0],[1,3,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,0],[1,2,3,1]],[[1,1,0,1],[2,2,2,1],[2,2,4,1],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,1],[0,3,2,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,1],[0,2,3,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,1],[0,2,2,2]],[[2,1,0,1],[2,2,2,1],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[3,2,2,1],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,2,1],[3,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,1],[2,2,1,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,1],[1,3,1,1]],[[1,1,0,1],[2,2,2,1],[2,2,4,2],[0,2,1,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,3],[0,2,1,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,2],[0,2,1,2]],[[1,1,0,1],[2,2,2,1],[2,2,4,2],[0,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,2,3,3],[0,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,2,3,2],[0,3,2,0]],[[1,1,0,1],[2,2,2,1],[2,2,3,2],[0,2,3,0]],[[2,1,0,1],[2,2,2,1],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[3,2,2,1],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,2,1],[3,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,2],[2,2,0,1]],[[1,1,0,1],[2,2,2,1],[2,2,3,2],[1,3,0,1]],[[2,1,0,1],[2,2,2,1],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[3,2,2,1],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,2,1],[3,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,2,1],[2,2,3,2],[2,2,1,0]],[[1,1,0,1],[2,2,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,3,0],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[0,2,3,0],[1,2,3,2],[1,3,2,0]],[[1,2,1,1],[0,2,3,0],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[0,2,3,0],[1,2,3,3],[1,2,2,0]],[[1,2,1,1],[0,2,3,0],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[0,2,4,0],[1,2,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,0],[1,2,3,2],[1,2,1,2]],[[2,1,0,1],[2,2,2,1],[2,3,0,2],[1,2,2,1]],[[1,1,0,1],[3,2,2,1],[2,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[3,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,0,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,0,2],[1,3,2,1]],[[2,1,0,1],[2,2,2,1],[2,3,1,1],[1,2,2,1]],[[1,1,0,1],[3,2,2,1],[2,3,1,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[3,3,1,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,1,1],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,1,1],[1,3,2,1]],[[2,1,0,1],[2,2,2,1],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[3,2,2,1],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[3,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,4,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,1,3],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,1,2],[0,3,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,1,2],[0,2,3,1]],[[1,1,0,1],[2,2,2,1],[2,3,1,2],[0,2,2,2]],[[2,1,0,1],[2,2,2,1],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[3,2,2,1],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[3,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[2,4,1,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,1,2],[2,1,2,1]],[[2,1,0,1],[2,2,2,1],[2,3,1,2],[1,2,2,0]],[[1,1,0,1],[3,2,2,1],[2,3,1,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,1],[3,3,1,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,1,2],[2,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,1,2],[1,3,2,0]],[[1,1,0,1],[3,2,2,1],[2,3,2,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[3,3,2,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,2,0],[2,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,2,0],[1,3,2,1]],[[2,1,0,1],[2,2,2,1],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[3,2,2,1],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[3,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,4,2,1],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,2,1],[0,3,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,2,1],[0,2,3,1]],[[1,1,0,1],[2,2,2,1],[2,3,2,1],[0,2,2,2]],[[2,1,0,1],[2,2,2,1],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[3,2,2,1],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[3,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[2,4,2,1],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,2,1],[2,1,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,2,3],[0,1,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,2,2],[0,1,3,1]],[[1,1,0,1],[2,2,2,1],[2,3,2,2],[0,1,2,2]],[[2,1,0,1],[2,2,2,1],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[3,2,2,1],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,2,2,1],[3,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,4,2,2],[0,2,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,2,2],[0,3,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,2,2],[0,2,3,0]],[[1,1,0,1],[2,2,2,1],[2,3,2,3],[1,0,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,2,2],[1,0,3,1]],[[1,1,0,1],[2,2,2,1],[2,3,2,2],[1,0,2,2]],[[2,1,0,1],[2,2,2,1],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[3,2,2,1],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,2,2,1],[3,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,2,2,1],[2,4,2,2],[1,1,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,2,3,0],[1,2,3,3],[1,2,1,1]],[[1,2,1,1],[0,2,3,0],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[0,2,4,0],[1,2,3,2],[1,2,1,1]],[[1,2,1,1],[0,2,3,0],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[0,2,3,0],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[0,2,3,0],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[1,2,3,1],[2,2,2,1]],[[1,2,1,1],[0,2,3,0],[1,2,4,1],[1,2,2,1]],[[1,2,1,1],[0,2,4,0],[1,2,3,1],[1,2,2,1]],[[2,1,0,1],[2,2,2,1],[2,3,3,0],[0,2,2,1]],[[1,1,0,1],[3,2,2,1],[2,3,3,0],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[3,3,3,0],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,4,3,0],[0,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,0],[0,3,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,0],[0,2,3,1]],[[2,1,0,1],[2,2,2,1],[2,3,3,0],[1,1,2,1]],[[1,1,0,1],[3,2,2,1],[2,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[3,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[2,4,3,0],[1,1,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,0],[2,1,2,1]],[[2,1,0,1],[2,2,2,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[3,2,2,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,2,2,1],[3,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,2,2,1],[2,4,3,1],[0,1,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,4,1],[0,1,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,1],[0,1,3,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,1],[0,1,2,2]],[[2,1,0,1],[2,2,2,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[3,2,2,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,2,1],[3,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,2,1],[2,4,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,2,1],[2,3,4,1],[0,2,1,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,1],[0,3,1,1]],[[2,1,0,1],[2,2,2,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[3,2,2,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,2,1],[3,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,2,1],[2,4,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,4,1],[1,0,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,1],[2,0,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,1],[1,0,3,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,1],[1,0,2,2]],[[2,1,0,1],[2,2,2,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[3,2,2,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,2,1],[3,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,2,1],[2,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,2,1],[2,3,4,1],[1,1,1,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,1],[2,1,1,1]],[[2,1,0,1],[2,2,2,1],[2,3,3,1],[1,2,0,1]],[[1,1,0,1],[3,2,2,1],[2,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,2,1],[3,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,2,1],[2,4,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,2,3,0],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,0],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[0,2,3,0],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[0,2,3,0],[1,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,4,2],[0,0,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,3],[0,0,2,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[0,0,2,2]],[[2,1,0,1],[2,2,2,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[3,2,2,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,2,1],[3,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,2,1],[2,4,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,2,1],[2,3,4,2],[0,1,1,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,3],[0,1,1,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[0,1,1,2]],[[2,1,0,1],[2,2,2,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[3,2,2,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,2,1],[3,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,2,1],[2,4,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,4,2],[0,1,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,3,3],[0,1,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[0,1,3,0]],[[2,1,0,1],[2,2,2,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[3,2,2,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,2,1],[3,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,2,1],[2,4,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,2,1],[2,3,4,2],[0,2,0,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,3],[0,2,0,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[0,3,0,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[0,2,0,2]],[[2,1,0,1],[2,2,2,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[3,2,2,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,2,1],[3,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,2,1],[2,4,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,2,1],[2,3,4,2],[0,2,1,0]],[[1,1,0,1],[2,2,2,1],[2,3,3,3],[0,2,1,0]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,2,3,0],[0,3,3,2],[1,2,3,0]],[[1,2,1,1],[0,2,3,0],[0,3,3,2],[1,3,2,0]],[[1,2,1,1],[0,2,3,0],[0,3,3,3],[1,2,2,0]],[[1,2,1,1],[0,2,3,0],[0,3,4,2],[1,2,2,0]],[[1,2,1,1],[0,2,4,0],[0,3,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,3,0],[0,3,3,2],[1,2,1,2]],[[1,2,1,1],[0,2,3,0],[0,3,3,3],[1,2,1,1]],[[2,1,0,1],[2,2,2,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[3,2,2,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,2,1],[3,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,2,1],[2,4,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,2,1],[2,3,4,2],[1,0,1,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,3],[1,0,1,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[2,0,1,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[1,0,1,2]],[[2,1,0,1],[2,2,2,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[3,2,2,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,2,1],[3,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,2,1],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,4,2],[1,0,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,3,3],[1,0,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[2,0,2,0]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[1,0,3,0]],[[2,1,0,1],[2,2,2,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[3,2,2,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,2,1],[3,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,2,1],[2,4,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,2,1],[2,3,4,2],[1,1,0,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,3],[1,1,0,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[2,1,0,1]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[1,1,0,2]],[[2,1,0,1],[2,2,2,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[3,2,2,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,2,1],[3,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,2,1],[2,4,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,2,1],[2,3,4,2],[1,1,1,0]],[[1,1,0,1],[2,2,2,1],[2,3,3,3],[1,1,1,0]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,2,3,0],[0,3,4,2],[1,2,1,1]],[[1,2,1,1],[0,2,4,0],[0,3,3,2],[1,2,1,1]],[[1,2,1,1],[0,2,3,0],[0,3,3,1],[1,2,2,2]],[[1,2,1,1],[0,2,3,0],[0,3,3,1],[1,2,3,1]],[[1,2,1,1],[0,2,3,0],[0,3,3,1],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[0,3,4,1],[1,2,2,1]],[[1,2,1,1],[0,2,4,0],[0,3,3,1],[1,2,2,1]],[[1,2,1,1],[0,2,3,0],[0,3,2,2],[1,2,2,2]],[[1,2,1,1],[0,2,3,0],[0,3,2,2],[1,2,3,1]],[[2,1,0,1],[2,2,2,1],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[3,2,2,1],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,2,2,1],[3,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,2,2,1],[2,4,3,2],[1,2,0,0]],[[1,1,0,1],[2,2,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,2,3,0],[0,3,2,2],[1,3,2,1]],[[1,2,1,1],[0,2,3,0],[0,3,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,3],[0,1,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,1,3,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,1,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[0,1,3,2],[1,2,2,2]],[[1,1,0,2],[2,2,2,2],[0,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,3],[0,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[0,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[0,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,2,2,2],[0,2,4,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[0,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[0,2,3,1],[1,2,2,2]],[[1,1,0,2],[2,2,2,2],[0,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,3],[0,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[0,2,4,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[0,2,3,3],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[0,2,3,2],[1,2,1,2]],[[1,1,0,2],[2,2,2,2],[0,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,3],[0,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[0,2,4,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[0,2,3,3],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[0,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,2,2],[0,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,2,2],[0,2,3,2],[1,2,3,0]],[[1,1,0,2],[2,2,2,2],[0,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,3],[0,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,4,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[0,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,2,2,2],[0,4,2,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[0,3,2,1],[1,2,2,2]],[[1,1,0,2],[2,2,2,2],[0,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,3],[0,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,2,3],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,2,2],[1,1,3,1]],[[1,1,0,1],[2,2,2,2],[0,3,2,2],[1,1,2,2]],[[1,1,0,1],[2,2,2,2],[0,4,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[0,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,2,2,2],[0,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,2,2,2],[0,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,2,2,2],[0,4,3,1],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,4,1],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,1],[1,1,3,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,1],[1,1,2,2]],[[1,1,0,1],[2,2,2,2],[0,4,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[0,3,4,1],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,1],[1,3,1,1]],[[1,1,0,2],[2,2,2,2],[0,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,2,2,3],[0,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,4,2],[1,0,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,3],[1,0,2,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,2],[1,0,2,2]],[[1,1,0,2],[2,2,2,2],[0,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,2,3],[0,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,2,2],[0,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,2,2],[0,3,4,2],[1,1,1,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,3],[1,1,1,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,2],[1,1,1,2]],[[1,1,0,2],[2,2,2,2],[0,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,2,3],[0,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,2,2],[0,4,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,2,2],[0,3,4,2],[1,1,2,0]],[[1,1,0,1],[2,2,2,2],[0,3,3,3],[1,1,2,0]],[[1,1,0,1],[2,2,2,2],[0,3,3,2],[1,1,3,0]],[[1,1,0,2],[2,2,2,2],[0,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,2,3],[0,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,2,2],[0,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,2,2],[0,3,4,2],[1,2,0,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,3],[1,2,0,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,2,2,2],[0,3,3,2],[1,2,0,2]],[[1,1,0,2],[2,2,2,2],[0,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,2,3],[0,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,2,2],[0,4,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,2,2],[0,3,4,2],[1,2,1,0]],[[1,1,0,1],[2,2,2,2],[0,3,3,3],[1,2,1,0]],[[1,1,0,1],[2,2,2,2],[0,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,1,0,1],[2,2,2,3],[1,1,3,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,1,3,3],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,1,3,2],[0,2,3,1]],[[1,1,0,1],[2,2,2,2],[1,1,3,2],[0,2,2,2]],[[1,1,0,2],[2,2,2,2],[1,2,2,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,3],[1,2,2,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,2,2,3],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,2,2,2],[0,3,2,1]],[[1,1,0,1],[2,2,2,2],[1,2,2,2],[0,2,3,1]],[[1,1,0,1],[2,2,2,2],[1,2,2,2],[0,2,2,2]],[[1,1,0,1],[2,2,2,2],[1,2,4,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,2,3,0],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,2,3,0],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[1,2,3,0],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[1,2,3,0],[1,2,2,2]],[[1,1,0,1],[2,2,2,2],[1,2,4,1],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,2,3,1],[0,3,2,1]],[[1,1,0,1],[2,2,2,2],[1,2,3,1],[0,2,3,1]],[[1,1,0,1],[2,2,2,2],[1,2,3,1],[0,2,2,2]],[[1,1,0,1],[2,2,2,2],[1,2,4,1],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[1,2,3,1],[2,2,2,0]],[[1,1,0,1],[2,2,2,2],[1,2,3,1],[1,3,2,0]],[[1,1,0,1],[2,2,2,2],[1,2,3,1],[1,2,3,0]],[[1,1,0,2],[2,2,2,2],[1,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,2,2,3],[1,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,2,2,2],[1,2,4,2],[0,2,1,1]],[[1,1,0,1],[2,2,2,2],[1,2,3,3],[0,2,1,1]],[[1,1,0,1],[2,2,2,2],[1,2,3,2],[0,2,1,2]],[[1,1,0,2],[2,2,2,2],[1,2,3,2],[0,2,2,0]],[[1,1,0,1],[2,2,2,3],[1,2,3,2],[0,2,2,0]],[[1,1,0,1],[2,2,2,2],[1,2,4,2],[0,2,2,0]],[[1,1,0,1],[2,2,2,2],[1,2,3,3],[0,2,2,0]],[[1,1,0,1],[2,2,2,2],[1,2,3,2],[0,3,2,0]],[[1,1,0,1],[2,2,2,2],[1,2,3,2],[0,2,3,0]],[[1,1,0,2],[2,2,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,3],[1,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,4,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,0,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,0,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,0,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,0,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[1,3,0,2],[1,2,2,2]],[[1,1,0,2],[2,2,2,2],[1,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,3],[1,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,4,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,1,3],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,1,2],[0,3,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,1,2],[0,2,3,1]],[[1,1,0,1],[2,2,2,2],[1,3,1,2],[0,2,2,2]],[[1,1,0,1],[2,2,2,2],[1,4,2,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,0],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,0],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,0],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,0],[1,2,2,2]],[[1,1,0,1],[2,2,2,2],[1,4,2,1],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,1],[0,3,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,1],[0,2,3,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,1],[0,2,2,2]],[[1,1,0,1],[2,2,2,2],[1,4,2,1],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,2,1],[2,2,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,2,1],[1,3,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,2,1],[1,2,3,0]],[[1,1,0,2],[2,2,2,2],[1,3,2,2],[0,1,2,1]],[[1,1,0,1],[2,2,2,3],[1,3,2,2],[0,1,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,3],[0,1,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,2],[0,1,3,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,2],[0,1,2,2]],[[1,1,0,1],[2,2,2,2],[1,4,2,2],[0,2,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,2,2],[0,3,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,2,2],[0,2,3,0]],[[1,1,0,2],[2,2,2,2],[1,3,2,2],[1,0,2,1]],[[1,1,0,1],[2,2,2,3],[1,3,2,2],[1,0,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,3],[1,0,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,2],[1,0,3,1]],[[1,1,0,1],[2,2,2,2],[1,3,2,2],[1,0,2,2]],[[1,1,0,1],[2,2,2,2],[1,4,3,0],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,4,0],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,0],[1,1,3,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,0],[1,1,2,2]],[[1,1,0,1],[2,2,2,2],[1,4,3,0],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[1,3,4,0],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,0],[2,2,1,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,0],[1,3,1,1]],[[1,1,0,1],[2,2,2,2],[1,4,3,1],[0,1,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,4,1],[0,1,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,1],[0,1,3,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,1],[0,1,2,2]],[[1,1,0,1],[2,2,2,2],[1,4,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,2,2],[1,3,4,1],[0,2,1,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,1],[0,3,1,1]],[[1,1,0,1],[2,2,2,2],[1,4,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,4,1],[1,0,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,1],[1,0,3,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,1],[1,0,2,2]],[[1,1,0,1],[2,2,2,2],[1,4,3,1],[1,1,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,4,1],[1,1,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,3,1],[1,1,3,0]],[[1,1,0,1],[2,2,2,2],[1,4,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,2,2],[1,3,4,1],[1,2,0,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,1],[2,2,0,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,1],[1,3,0,1]],[[1,1,0,1],[2,2,2,2],[1,4,3,1],[1,2,1,0]],[[1,1,0,1],[2,2,2,2],[1,3,4,1],[1,2,1,0]],[[1,1,0,1],[2,2,2,2],[1,3,3,1],[2,2,1,0]],[[1,1,0,1],[2,2,2,2],[1,3,3,1],[1,3,1,0]],[[1,1,0,2],[2,2,2,2],[1,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,2,2,3],[1,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,4,2],[0,0,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,3],[0,0,2,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,2],[0,0,2,2]],[[1,1,0,2],[2,2,2,2],[1,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,2,3],[1,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,2,2],[1,4,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,2,2],[1,3,4,2],[0,1,1,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,3],[0,1,1,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,2],[0,1,1,2]],[[1,1,0,2],[2,2,2,2],[1,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,2,3],[1,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,2,2],[1,4,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,4,2],[0,1,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,3,3],[0,1,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,3,2],[0,1,3,0]],[[1,1,0,2],[2,2,2,2],[1,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,2,3],[1,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,2,2],[1,4,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,2,2],[1,3,4,2],[0,2,0,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,3],[0,2,0,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,2],[0,3,0,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,2],[0,2,0,2]],[[1,1,0,2],[2,2,2,2],[1,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,2,3],[1,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,2,2],[1,4,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,2,2],[1,3,4,2],[0,2,1,0]],[[1,1,0,1],[2,2,2,2],[1,3,3,3],[0,2,1,0]],[[1,1,0,1],[2,2,2,2],[1,3,3,2],[0,3,1,0]],[[1,1,0,2],[2,2,2,2],[1,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,2,3],[1,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,2,2],[1,4,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,2,2],[1,3,4,2],[1,0,1,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,3],[1,0,1,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,2],[1,0,1,2]],[[1,1,0,2],[2,2,2,2],[1,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,2,3],[1,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,2,2],[1,4,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,4,2],[1,0,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,3,3],[1,0,2,0]],[[1,1,0,1],[2,2,2,2],[1,3,3,2],[1,0,3,0]],[[1,1,0,2],[2,2,2,2],[1,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,2,3],[1,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,2,2],[1,4,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,2,2],[1,3,4,2],[1,1,0,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,3],[1,1,0,1]],[[1,1,0,1],[2,2,2,2],[1,3,3,2],[1,1,0,2]],[[1,1,0,2],[2,2,2,2],[1,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,2,3],[1,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,2,2],[1,4,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,2,2],[1,3,4,2],[1,1,1,0]],[[1,1,0,1],[2,2,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,2,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,1,1],[0,2,2,2],[2,3,4,2],[0,0,2,0]],[[1,2,1,1],[0,2,2,3],[2,3,3,2],[0,0,2,0]],[[1,2,1,2],[0,2,2,2],[2,3,3,2],[0,0,2,0]],[[1,2,1,1],[0,2,2,2],[2,3,3,2],[0,0,1,2]],[[1,2,1,1],[0,2,2,2],[2,3,3,3],[0,0,1,1]],[[1,2,1,1],[0,2,2,2],[2,3,4,2],[0,0,1,1]],[[1,2,1,1],[0,2,2,3],[2,3,3,2],[0,0,1,1]],[[1,2,1,2],[0,2,2,2],[2,3,3,2],[0,0,1,1]],[[2,1,0,1],[2,2,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,0,2],[2,2,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[3,2,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,3],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[3,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,0,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,0,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,0,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[2,0,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[2,0,2,2],[1,2,2,2]],[[2,1,0,1],[2,2,2,2],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[3,2,2,2],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[3,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,0,4,1],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,0,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,0,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[2,0,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[2,0,3,1],[1,2,2,2]],[[1,1,0,2],[2,2,2,2],[2,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,3],[2,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[2,0,4,2],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[2,0,3,3],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[2,0,3,2],[1,2,1,2]],[[2,1,0,1],[2,2,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,0,2],[2,2,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[3,2,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,3],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[3,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,0,4,2],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,0,3,3],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,0,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,0,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,2,2],[2,0,3,2],[1,2,3,0]],[[2,1,0,1],[2,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[3,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[3,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,1,4,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,1,3,0],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,1,3,0],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[2,1,3,0],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[2,1,3,0],[1,2,2,2]],[[2,1,0,1],[2,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,1,0,1],[3,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[3,1,3,1],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,1,4,1],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,1,3,1],[2,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,1,3,1],[1,3,2,0]],[[1,1,0,1],[2,2,2,2],[2,1,3,1],[1,2,3,0]],[[2,1,0,1],[2,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,0,2],[2,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[3,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,3],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[3,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,2,0,3],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,2,0,2],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,2,0,2],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[2,2,0,2],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[2,2,0,2],[1,2,2,2]],[[2,1,0,1],[2,2,2,2],[2,2,2,0],[1,2,2,1]],[[1,1,0,1],[3,2,2,2],[2,2,2,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[3,2,2,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,2,2,0],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,2,2,0],[1,3,2,1]],[[1,1,0,1],[2,2,2,2],[2,2,2,0],[1,2,3,1]],[[1,1,0,1],[2,2,2,2],[2,2,2,0],[1,2,2,2]],[[2,1,0,1],[2,2,2,2],[2,2,2,1],[1,2,2,0]],[[1,1,0,1],[3,2,2,2],[2,2,2,1],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[3,2,2,1],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,2,2,1],[2,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,2,2,1],[1,3,2,0]],[[1,1,0,1],[2,2,2,2],[2,2,2,1],[1,2,3,0]],[[1,1,0,1],[2,2,2,2],[2,2,4,0],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,2,3,0],[0,3,2,1]],[[1,1,0,1],[2,2,2,2],[2,2,3,0],[0,2,3,1]],[[1,1,0,1],[2,2,2,2],[2,2,3,0],[0,2,2,2]],[[2,1,0,1],[2,2,2,2],[2,2,3,0],[1,2,1,1]],[[1,1,0,1],[3,2,2,2],[2,2,3,0],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[3,2,3,0],[1,2,1,1]],[[1,1,0,1],[2,2,2,2],[2,2,3,0],[2,2,1,1]],[[1,1,0,1],[2,2,2,2],[2,2,3,0],[1,3,1,1]],[[1,1,0,1],[2,2,2,2],[2,2,4,1],[0,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,2,3,1],[0,3,2,0]],[[1,1,0,1],[2,2,2,2],[2,2,3,1],[0,2,3,0]],[[2,1,0,1],[2,2,2,2],[2,2,3,1],[1,2,0,1]],[[1,1,0,1],[3,2,2,2],[2,2,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,2,2],[3,2,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,2,2],[2,2,3,1],[2,2,0,1]],[[1,1,0,1],[2,2,2,2],[2,2,3,1],[1,3,0,1]],[[2,1,0,1],[2,2,2,2],[2,2,3,1],[1,2,1,0]],[[1,1,0,1],[3,2,2,2],[2,2,3,1],[1,2,1,0]],[[1,1,0,1],[2,2,2,2],[3,2,3,1],[1,2,1,0]],[[1,1,0,1],[2,2,2,2],[2,2,3,1],[2,2,1,0]],[[1,1,0,1],[2,2,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[0,2,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,1,1],[0,2,2,2],[2,2,4,2],[1,1,1,0]],[[1,2,1,1],[0,2,2,3],[2,2,3,2],[1,1,1,0]],[[1,2,1,2],[0,2,2,2],[2,2,3,2],[1,1,1,0]],[[1,2,1,1],[0,2,2,2],[2,2,3,2],[1,1,0,2]],[[1,2,1,1],[0,2,2,2],[2,2,3,3],[1,1,0,1]],[[1,2,1,1],[0,2,2,2],[2,2,4,2],[1,1,0,1]],[[2,1,0,1],[2,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,2],[2,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[3,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,3],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[3,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,4,0,2],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,0,3],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,0,2],[0,3,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,0,2],[0,2,3,1]],[[1,1,0,1],[2,2,2,2],[2,3,0,2],[0,2,2,2]],[[2,1,0,1],[2,2,2,2],[2,3,0,2],[1,1,2,1]],[[1,1,0,1],[3,2,2,2],[2,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[3,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[2,4,0,2],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,0,2],[2,1,2,1]],[[2,1,0,1],[2,2,2,2],[2,3,1,0],[1,2,2,1]],[[1,1,0,1],[3,2,2,2],[2,3,1,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[3,3,1,0],[1,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,1,0],[2,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,1,0],[1,3,2,1]],[[2,1,0,1],[2,2,2,2],[2,3,1,1],[1,2,2,0]],[[1,1,0,1],[3,2,2,2],[2,3,1,1],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[3,3,1,1],[1,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,3,1,1],[2,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,1,1],[0,2,2,3],[2,2,3,2],[1,1,0,1]],[[1,2,1,2],[0,2,2,2],[2,2,3,2],[1,1,0,1]],[[1,2,1,1],[0,2,2,2],[2,2,3,2],[1,0,3,0]],[[1,2,1,1],[0,2,2,2],[2,2,3,3],[1,0,2,0]],[[1,2,1,1],[0,2,2,2],[2,2,4,2],[1,0,2,0]],[[2,1,0,1],[2,2,2,2],[2,3,2,0],[0,2,2,1]],[[1,1,0,1],[3,2,2,2],[2,3,2,0],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[3,3,2,0],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,4,2,0],[0,2,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,2,0],[0,3,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,2,0],[0,2,3,1]],[[1,1,0,1],[2,2,2,2],[2,3,2,0],[0,2,2,2]],[[2,1,0,1],[2,2,2,2],[2,3,2,0],[1,1,2,1]],[[1,1,0,1],[3,2,2,2],[2,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[3,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[2,4,2,0],[1,1,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,2,0],[2,1,2,1]],[[2,1,0,1],[2,2,2,2],[2,3,2,1],[0,2,2,0]],[[1,1,0,1],[3,2,2,2],[2,3,2,1],[0,2,2,0]],[[1,1,0,1],[2,2,2,2],[3,3,2,1],[0,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,4,2,1],[0,2,2,0]],[[1,1,0,1],[2,2,2,2],[2,3,2,1],[0,3,2,0]],[[1,1,0,1],[2,2,2,2],[2,3,2,1],[0,2,3,0]],[[2,1,0,1],[2,2,2,2],[2,3,2,1],[1,1,2,0]],[[1,1,0,1],[3,2,2,2],[2,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,2,2,2],[3,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,2,2,2],[2,4,2,1],[1,1,2,0]],[[1,1,0,1],[2,2,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[0,2,2,3],[2,2,3,2],[1,0,2,0]],[[1,2,1,2],[0,2,2,2],[2,2,3,2],[1,0,2,0]],[[1,2,1,1],[0,2,2,2],[2,2,3,2],[1,0,1,2]],[[1,2,1,1],[0,2,2,2],[2,2,3,3],[1,0,1,1]],[[1,2,1,1],[0,2,2,2],[2,2,4,2],[1,0,1,1]],[[1,2,1,1],[0,2,2,3],[2,2,3,2],[1,0,1,1]],[[1,2,1,2],[0,2,2,2],[2,2,3,2],[1,0,1,1]],[[1,2,1,1],[0,2,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,1,1],[0,2,2,2],[2,2,4,2],[0,2,1,0]],[[1,2,1,1],[0,2,2,3],[2,2,3,2],[0,2,1,0]],[[1,2,1,2],[0,2,2,2],[2,2,3,2],[0,2,1,0]],[[1,2,1,1],[0,2,2,2],[2,2,3,2],[0,2,0,2]],[[1,2,1,1],[0,2,2,2],[2,2,3,3],[0,2,0,1]],[[1,2,1,1],[0,2,2,2],[2,2,4,2],[0,2,0,1]],[[1,2,1,1],[0,2,2,3],[2,2,3,2],[0,2,0,1]],[[1,2,1,2],[0,2,2,2],[2,2,3,2],[0,2,0,1]],[[1,2,1,1],[0,2,2,2],[2,2,3,2],[0,1,3,0]],[[1,2,1,1],[0,2,2,2],[2,2,3,3],[0,1,2,0]],[[1,2,1,1],[0,2,2,2],[2,2,4,2],[0,1,2,0]],[[1,2,1,1],[0,2,2,3],[2,2,3,2],[0,1,2,0]],[[1,2,1,2],[0,2,2,2],[2,2,3,2],[0,1,2,0]],[[1,2,1,1],[0,2,2,2],[2,2,3,2],[0,1,1,2]],[[1,2,1,1],[0,2,2,2],[2,2,3,3],[0,1,1,1]],[[1,2,1,1],[0,2,2,2],[2,2,4,2],[0,1,1,1]],[[1,2,1,1],[0,2,2,3],[2,2,3,2],[0,1,1,1]],[[1,2,1,2],[0,2,2,2],[2,2,3,2],[0,1,1,1]],[[1,2,1,1],[0,2,2,2],[2,2,3,2],[0,0,2,2]],[[1,2,1,1],[0,2,2,2],[2,2,3,3],[0,0,2,1]],[[1,2,1,1],[0,2,2,2],[2,2,4,2],[0,0,2,1]],[[2,1,0,1],[2,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[3,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,2,2,2],[3,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,2,2,2],[2,4,3,0],[0,1,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,4,0],[0,1,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,3,0],[0,1,3,1]],[[1,1,0,1],[2,2,2,2],[2,3,3,0],[0,1,2,2]],[[2,1,0,1],[2,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[3,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,2,2,2],[3,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,2,2,2],[2,4,3,0],[0,2,1,1]],[[1,1,0,1],[2,2,2,2],[2,3,4,0],[0,2,1,1]],[[1,1,0,1],[2,2,2,2],[2,3,3,0],[0,3,1,1]],[[2,1,0,1],[2,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[3,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,2,2,2],[3,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,2,2,2],[2,4,3,0],[1,0,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,4,0],[1,0,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,3,0],[2,0,2,1]],[[1,1,0,1],[2,2,2,2],[2,3,3,0],[1,0,3,1]],[[1,1,0,1],[2,2,2,2],[2,3,3,0],[1,0,2,2]],[[2,1,0,1],[2,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[3,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,2,2,2],[3,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,2,2,2],[2,4,3,0],[1,1,1,1]],[[1,1,0,1],[2,2,2,2],[2,3,4,0],[1,1,1,1]],[[1,1,0,1],[2,2,2,2],[2,3,3,0],[2,1,1,1]],[[2,1,0,1],[2,2,2,2],[2,3,3,0],[1,2,0,1]],[[1,1,0,1],[3,2,2,2],[2,3,3,0],[1,2,0,1]],[[1,1,0,1],[2,2,2,2],[3,3,3,0],[1,2,0,1]],[[1,1,0,1],[2,2,2,2],[2,4,3,0],[1,2,0,1]],[[1,1,0,1],[2,2,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[0,2,2,3],[2,2,3,2],[0,0,2,1]],[[1,2,1,2],[0,2,2,2],[2,2,3,2],[0,0,2,1]],[[1,2,1,1],[0,2,2,2],[2,2,3,1],[1,0,2,2]],[[2,1,0,1],[2,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,1],[3,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,2,2,2],[3,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,2,2,2],[2,4,3,1],[0,1,1,1]],[[1,1,0,1],[2,2,2,2],[2,3,4,1],[0,1,1,1]],[[2,1,0,1],[2,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[3,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,2,2,2],[3,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,2,2,2],[2,4,3,1],[0,1,2,0]],[[1,1,0,1],[2,2,2,2],[2,3,4,1],[0,1,2,0]],[[1,1,0,1],[2,2,2,2],[2,3,3,1],[0,1,3,0]],[[2,1,0,1],[2,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[3,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,2,2,2],[3,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,2,2,2],[2,4,3,1],[0,2,0,1]],[[1,1,0,1],[2,2,2,2],[2,3,4,1],[0,2,0,1]],[[1,1,0,1],[2,2,2,2],[2,3,3,1],[0,3,0,1]],[[2,1,0,1],[2,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[3,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,2,2,2],[3,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,2,2,2],[2,4,3,1],[0,2,1,0]],[[1,1,0,1],[2,2,2,2],[2,3,4,1],[0,2,1,0]],[[1,1,0,1],[2,2,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[0,2,2,2],[2,2,3,1],[1,0,3,1]],[[1,2,1,1],[0,2,2,2],[2,2,4,1],[1,0,2,1]],[[1,2,1,1],[0,2,2,2],[2,2,3,1],[0,1,2,2]],[[1,2,1,1],[0,2,2,2],[2,2,3,1],[0,1,3,1]],[[2,1,0,1],[2,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[3,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,2,2,2],[3,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,2,2,2],[2,4,3,1],[1,0,1,1]],[[1,1,0,1],[2,2,2,2],[2,3,4,1],[1,0,1,1]],[[1,1,0,1],[2,2,2,2],[2,3,3,1],[2,0,1,1]],[[2,1,0,1],[2,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[3,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,2,2,2],[3,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,2,2,2],[2,4,3,1],[1,0,2,0]],[[1,1,0,1],[2,2,2,2],[2,3,4,1],[1,0,2,0]],[[1,1,0,1],[2,2,2,2],[2,3,3,1],[2,0,2,0]],[[1,1,0,1],[2,2,2,2],[2,3,3,1],[1,0,3,0]],[[2,1,0,1],[2,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[3,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,2,2,2],[3,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,2,2,2],[2,4,3,1],[1,1,0,1]],[[1,1,0,1],[2,2,2,2],[2,3,4,1],[1,1,0,1]],[[1,1,0,1],[2,2,2,2],[2,3,3,1],[2,1,0,1]],[[2,1,0,1],[2,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[3,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,2,2,2],[3,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,2,2,2],[2,4,3,1],[1,1,1,0]],[[1,1,0,1],[2,2,2,2],[2,3,4,1],[1,1,1,0]],[[1,1,0,1],[2,2,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[0,2,2,2],[2,2,4,1],[0,1,2,1]],[[2,1,0,1],[2,2,2,2],[2,3,3,1],[1,2,0,0]],[[1,1,0,1],[3,2,2,2],[2,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,2,2,2],[3,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,2,2,2],[2,4,3,1],[1,2,0,0]],[[1,1,0,1],[2,2,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[0,2,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,1,1],[0,2,2,2],[2,2,2,2],[1,0,3,1]],[[1,2,1,1],[0,2,2,2],[2,2,2,3],[1,0,2,1]],[[1,2,1,1],[0,2,2,3],[2,2,2,2],[1,0,2,1]],[[1,2,1,2],[0,2,2,2],[2,2,2,2],[1,0,2,1]],[[1,2,1,1],[0,2,2,2],[2,2,2,2],[0,1,2,2]],[[1,2,1,1],[0,2,2,2],[2,2,2,2],[0,1,3,1]],[[1,2,1,1],[0,2,2,2],[2,2,2,3],[0,1,2,1]],[[1,2,1,1],[0,2,2,3],[2,2,2,2],[0,1,2,1]],[[1,2,1,2],[0,2,2,2],[2,2,2,2],[0,1,2,1]],[[1,2,1,1],[0,2,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,1,1],[0,2,2,2],[2,1,3,2],[0,3,2,0]],[[1,2,1,1],[0,2,2,2],[2,1,3,3],[0,2,2,0]],[[1,2,1,1],[0,2,2,2],[2,1,4,2],[0,2,2,0]],[[1,2,1,1],[0,2,2,3],[2,1,3,2],[0,2,2,0]],[[1,2,1,2],[0,2,2,2],[2,1,3,2],[0,2,2,0]],[[1,2,1,1],[0,2,2,2],[2,1,3,2],[0,2,1,2]],[[1,2,1,1],[0,2,2,2],[2,1,3,3],[0,2,1,1]],[[1,2,1,1],[0,2,2,2],[2,1,4,2],[0,2,1,1]],[[1,2,1,1],[0,2,2,3],[2,1,3,2],[0,2,1,1]],[[1,2,1,2],[0,2,2,2],[2,1,3,2],[0,2,1,1]],[[1,2,1,1],[0,2,2,2],[2,1,3,1],[0,2,2,2]],[[1,2,1,1],[0,2,2,2],[2,1,3,1],[0,2,3,1]],[[1,2,1,1],[0,2,2,2],[2,1,3,1],[0,3,2,1]],[[1,2,1,1],[0,2,2,2],[2,1,4,1],[0,2,2,1]],[[1,2,1,1],[0,2,2,2],[2,1,2,2],[0,2,2,2]],[[1,2,1,1],[0,2,2,2],[2,1,2,2],[0,2,3,1]],[[1,2,1,1],[0,2,2,2],[2,1,2,2],[0,3,2,1]],[[1,2,1,1],[0,2,2,2],[2,1,2,3],[0,2,2,1]],[[1,2,1,1],[0,2,2,3],[2,1,2,2],[0,2,2,1]],[[1,2,1,2],[0,2,2,2],[2,1,2,2],[0,2,2,1]],[[1,2,1,1],[0,2,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[0,2,2,2],[2,0,3,2],[1,3,2,0]],[[1,2,1,1],[0,2,2,2],[2,0,3,2],[2,2,2,0]],[[1,2,1,1],[0,2,2,2],[2,0,3,3],[1,2,2,0]],[[1,2,1,1],[0,2,2,2],[2,0,4,2],[1,2,2,0]],[[1,2,1,1],[0,2,2,2],[3,0,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,2,3],[2,0,3,2],[1,2,2,0]],[[1,2,1,2],[0,2,2,2],[2,0,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,2,2],[2,0,3,2],[1,2,1,2]],[[1,2,1,1],[0,2,2,2],[2,0,3,3],[1,2,1,1]],[[1,2,1,1],[0,2,2,2],[2,0,4,2],[1,2,1,1]],[[1,2,1,1],[0,2,2,3],[2,0,3,2],[1,2,1,1]],[[1,2,1,2],[0,2,2,2],[2,0,3,2],[1,2,1,1]],[[1,2,1,1],[0,2,2,2],[2,0,3,2],[0,2,2,2]],[[1,2,1,1],[0,2,2,2],[2,0,3,2],[0,2,3,1]],[[1,2,1,1],[0,2,2,2],[2,0,3,3],[0,2,2,1]],[[1,2,1,1],[0,2,2,3],[2,0,3,2],[0,2,2,1]],[[1,2,1,2],[0,2,2,2],[2,0,3,2],[0,2,2,1]],[[1,2,1,1],[0,2,2,2],[2,0,3,1],[1,2,2,2]],[[1,2,1,1],[0,2,2,2],[2,0,3,1],[1,2,3,1]],[[1,2,1,1],[0,2,2,2],[2,0,3,1],[1,3,2,1]],[[1,2,1,1],[0,2,2,2],[2,0,3,1],[2,2,2,1]],[[1,2,1,1],[0,2,2,2],[2,0,4,1],[1,2,2,1]],[[1,2,1,1],[0,2,2,2],[3,0,3,1],[1,2,2,1]],[[1,2,1,1],[0,2,2,2],[2,0,2,2],[1,2,2,2]],[[1,2,1,1],[0,2,2,2],[2,0,2,2],[1,2,3,1]],[[1,2,1,1],[0,2,2,2],[2,0,2,2],[1,3,2,1]],[[1,2,1,1],[0,2,2,2],[2,0,2,2],[2,2,2,1]],[[1,2,1,1],[0,2,2,2],[2,0,2,3],[1,2,2,1]],[[1,2,1,1],[0,2,2,2],[3,0,2,2],[1,2,2,1]],[[1,2,1,1],[0,2,2,3],[2,0,2,2],[1,2,2,1]],[[1,2,1,2],[0,2,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,0],[0,2,4,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,0],[0,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,0],[0,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,0],[0,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,0],[0,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,2,3,0],[0,4,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,0],[0,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,0],[0,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,0],[0,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,0],[0,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,2,3,0],[0,4,3,2],[1,1,2,1]],[[1,1,0,1],[2,2,3,0],[0,3,4,2],[1,1,2,1]],[[1,1,0,1],[2,2,3,0],[0,3,3,2],[1,1,3,1]],[[1,1,0,1],[2,2,3,0],[0,3,3,2],[1,1,2,2]],[[1,1,0,1],[2,2,3,0],[0,4,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,0],[0,3,4,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,0],[0,3,3,2],[2,2,1,1]],[[1,1,0,1],[2,2,3,0],[0,3,3,2],[1,3,1,1]],[[1,1,0,1],[2,2,3,0],[1,2,4,2],[0,2,2,1]],[[1,1,0,1],[2,2,3,0],[1,2,3,2],[0,3,2,1]],[[1,1,0,1],[2,2,3,0],[1,2,3,2],[0,2,3,1]],[[1,1,0,1],[2,2,3,0],[1,2,3,2],[0,2,2,2]],[[1,1,0,1],[2,2,3,0],[1,4,2,2],[0,2,2,1]],[[1,1,0,1],[2,2,3,0],[1,3,2,2],[0,3,2,1]],[[1,1,0,1],[2,2,3,0],[1,3,2,2],[0,2,3,1]],[[1,1,0,1],[2,2,3,0],[1,3,2,2],[0,2,2,2]],[[1,1,0,1],[2,2,3,0],[1,4,3,2],[0,1,2,1]],[[1,1,0,1],[2,2,3,0],[1,3,4,2],[0,1,2,1]],[[1,1,0,1],[2,2,3,0],[1,3,3,2],[0,1,3,1]],[[1,1,0,1],[2,2,3,0],[1,3,3,2],[0,1,2,2]],[[1,1,0,1],[2,2,3,0],[1,4,3,2],[0,2,1,1]],[[1,1,0,1],[2,2,3,0],[1,3,4,2],[0,2,1,1]],[[1,1,0,1],[2,2,3,0],[1,3,3,2],[0,3,1,1]],[[1,1,0,1],[2,2,3,0],[1,4,3,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,0],[1,3,4,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,0],[1,3,3,2],[1,0,3,1]],[[1,1,0,1],[2,2,3,0],[1,3,3,2],[1,0,2,2]],[[2,1,0,1],[2,2,3,0],[2,0,3,2],[1,2,2,1]],[[1,1,0,1],[3,2,3,0],[2,0,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,0],[3,0,3,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,0],[2,0,4,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,0],[2,0,3,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,0],[2,0,3,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,0],[2,0,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,1,1],[0,2,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,1,1],[0,2,2,2],[1,2,4,2],[1,2,1,0]],[[1,2,1,1],[0,2,2,3],[1,2,3,2],[1,2,1,0]],[[1,2,1,2],[0,2,2,2],[1,2,3,2],[1,2,1,0]],[[1,2,1,1],[0,2,2,2],[1,2,3,2],[1,2,0,2]],[[1,2,1,1],[0,2,2,2],[1,2,3,3],[1,2,0,1]],[[1,2,1,1],[0,2,2,2],[1,2,4,2],[1,2,0,1]],[[1,2,1,1],[0,2,2,3],[1,2,3,2],[1,2,0,1]],[[1,2,1,2],[0,2,2,2],[1,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,1],[0,1,3,3],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,1,3,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,1],[0,1,3,2],[1,2,2,2]],[[1,1,0,1],[2,2,3,1],[0,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,1],[0,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,1],[0,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,2,4,1],[0,2,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,2,4,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,3,1],[0,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,3,1],[0,2,3,1],[1,2,2,2]],[[1,1,0,1],[2,2,4,1],[0,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[0,2,4,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[0,2,3,3],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[0,2,3,2],[1,2,1,2]],[[1,1,0,1],[2,2,4,1],[0,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[0,2,4,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[0,2,3,3],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[0,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,3,1],[0,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,3,1],[0,2,3,2],[1,2,3,0]],[[1,1,0,1],[2,2,3,1],[0,4,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,1],[0,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,2,3,1],[0,4,2,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,2,3,1],[0,3,2,1],[1,2,2,2]],[[1,1,0,1],[2,2,3,1],[0,3,2,3],[1,1,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,2,2],[1,1,3,1]],[[1,1,0,1],[2,2,3,1],[0,3,2,2],[1,1,2,2]],[[1,1,0,1],[2,2,3,1],[0,4,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[0,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,2,3,1],[0,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,2,3,1],[0,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,2,3,1],[0,4,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,0],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,0],[1,3,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,0],[1,2,3,1]],[[1,1,0,1],[2,2,4,1],[0,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,2,3,1],[0,4,3,1],[1,1,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,4,1],[1,1,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,1],[1,1,3,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,1],[1,1,2,2]],[[1,1,0,1],[2,2,4,1],[0,3,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[0,4,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[0,3,4,1],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,2,4,1],[0,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,4,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,3],[1,0,2,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,2],[1,0,2,2]],[[1,1,0,1],[2,2,4,1],[0,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,3,1],[0,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,2,3,1],[0,3,4,2],[1,1,1,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,3],[1,1,1,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,2],[1,1,1,2]],[[1,1,0,1],[2,2,4,1],[0,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,3,1],[0,4,3,2],[1,1,2,0]],[[1,1,0,1],[2,2,3,1],[0,3,4,2],[1,1,2,0]],[[1,1,0,1],[2,2,3,1],[0,3,3,3],[1,1,2,0]],[[1,1,0,1],[2,2,3,1],[0,3,3,2],[1,1,3,0]],[[1,1,0,1],[2,2,4,1],[0,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,1],[0,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,1],[0,3,4,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,3],[1,2,0,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,2,3,1],[0,3,3,2],[1,2,0,2]],[[1,1,0,1],[2,2,4,1],[0,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,3,1],[0,4,3,2],[1,2,1,0]],[[1,1,0,1],[2,2,3,1],[0,3,4,2],[1,2,1,0]],[[1,1,0,1],[2,2,3,1],[0,3,3,3],[1,2,1,0]],[[1,1,0,1],[2,2,3,1],[0,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,2,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,2,2,2],[1,2,3,2],[1,1,3,0]],[[1,2,1,1],[0,2,2,2],[1,2,3,3],[1,1,2,0]],[[1,2,1,1],[0,2,2,2],[1,2,4,2],[1,1,2,0]],[[1,2,1,1],[0,2,2,3],[1,2,3,2],[1,1,2,0]],[[1,2,1,2],[0,2,2,2],[1,2,3,2],[1,1,2,0]],[[1,2,1,1],[0,2,2,2],[1,2,3,2],[1,1,1,2]],[[1,2,1,1],[0,2,2,2],[1,2,3,3],[1,1,1,1]],[[1,2,1,1],[0,2,2,2],[1,2,4,2],[1,1,1,1]],[[1,1,0,1],[2,2,3,1],[1,1,3,3],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,1,3,2],[0,2,3,1]],[[1,1,0,1],[2,2,3,1],[1,1,3,2],[0,2,2,2]],[[1,1,0,1],[2,2,3,1],[1,2,2,3],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,2,2,2],[0,3,2,1]],[[1,1,0,1],[2,2,3,1],[1,2,2,2],[0,2,3,1]],[[1,1,0,1],[2,2,3,1],[1,2,2,2],[0,2,2,2]],[[1,1,0,1],[2,2,4,1],[1,2,3,1],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,2,4,1],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,2,3,1],[0,3,2,1]],[[1,1,0,1],[2,2,3,1],[1,2,3,1],[0,2,3,1]],[[1,1,0,1],[2,2,3,1],[1,2,3,1],[0,2,2,2]],[[1,1,0,1],[2,2,4,1],[1,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,2,3,1],[1,2,4,2],[0,2,1,1]],[[1,1,0,1],[2,2,3,1],[1,2,3,3],[0,2,1,1]],[[1,1,0,1],[2,2,3,1],[1,2,3,2],[0,2,1,2]],[[1,1,0,1],[2,2,4,1],[1,2,3,2],[0,2,2,0]],[[1,1,0,1],[2,2,3,1],[1,2,4,2],[0,2,2,0]],[[1,1,0,1],[2,2,3,1],[1,2,3,3],[0,2,2,0]],[[1,1,0,1],[2,2,3,1],[1,2,3,2],[0,3,2,0]],[[1,1,0,1],[2,2,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[0,2,2,3],[1,2,3,2],[1,1,1,1]],[[1,2,1,2],[0,2,2,2],[1,2,3,2],[1,1,1,1]],[[1,2,1,1],[0,2,2,2],[1,2,3,2],[1,0,2,2]],[[1,2,1,1],[0,2,2,2],[1,2,3,3],[1,0,2,1]],[[1,2,1,1],[0,2,2,2],[1,2,4,2],[1,0,2,1]],[[1,2,1,1],[0,2,2,3],[1,2,3,2],[1,0,2,1]],[[1,2,1,2],[0,2,2,2],[1,2,3,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,1],[1,4,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,0,3],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,0,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,0,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,0,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,1],[1,3,0,2],[1,2,2,2]],[[1,1,0,1],[2,2,3,1],[1,4,1,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,1,1],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,1,1],[1,3,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,1,1],[1,2,3,1]],[[1,1,0,1],[2,2,3,1],[1,3,1,1],[1,2,2,2]],[[1,1,0,1],[2,2,3,1],[1,4,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,1,3],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,1,2],[0,3,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,1,2],[0,2,3,1]],[[1,1,0,1],[2,2,3,1],[1,3,1,2],[0,2,2,2]],[[1,1,0,1],[2,2,3,1],[1,4,1,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[1,3,1,2],[2,2,2,0]],[[1,1,0,1],[2,2,3,1],[1,3,1,2],[1,3,2,0]],[[1,1,0,1],[2,2,3,1],[1,3,1,2],[1,2,3,0]],[[1,1,0,1],[2,2,3,1],[1,4,2,1],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,1],[0,3,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,1],[0,2,3,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,1],[0,2,2,2]],[[1,1,0,1],[2,2,3,1],[1,4,2,1],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,1],[2,2,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,1],[1,3,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,3],[0,1,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,2],[0,1,3,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,2],[0,1,2,2]],[[1,1,0,1],[2,2,3,1],[1,4,2,2],[0,2,2,0]],[[1,1,0,1],[2,2,3,1],[1,3,2,2],[0,3,2,0]],[[1,1,0,1],[2,2,3,1],[1,3,2,2],[0,2,3,0]],[[1,1,0,1],[2,2,3,1],[1,3,2,3],[1,0,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,2],[1,0,3,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,2],[1,0,2,2]],[[1,1,0,1],[2,2,3,1],[1,4,2,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,2],[2,2,0,1]],[[1,1,0,1],[2,2,3,1],[1,3,2,2],[1,3,0,1]],[[1,1,0,1],[2,2,3,1],[1,4,2,2],[1,2,1,0]],[[1,1,0,1],[2,2,3,1],[1,3,2,2],[2,2,1,0]],[[1,1,0,1],[2,2,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,1,1],[0,2,2,2],[1,2,3,1],[1,1,2,2]],[[1,1,0,1],[2,2,3,1],[1,4,3,0],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,0],[0,3,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,0],[0,2,3,1]],[[1,1,0,1],[2,2,4,1],[1,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,2,3,1],[1,4,3,1],[0,1,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,4,1],[0,1,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,1],[0,1,3,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,1],[0,1,2,2]],[[1,1,0,1],[2,2,4,1],[1,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,3,1],[1,4,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,4,1],[0,2,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,1],[0,3,1,1]],[[1,1,0,1],[2,2,4,1],[1,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,3,1],[1,4,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,4,1],[1,0,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,1],[1,0,3,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,1],[1,0,2,2]],[[1,1,0,1],[2,2,4,1],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,3,1],[1,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,1,1],[0,2,2,2],[1,2,3,1],[1,1,3,1]],[[1,2,1,1],[0,2,2,2],[1,2,4,1],[1,1,2,1]],[[1,1,0,1],[2,2,4,1],[1,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,4,2],[0,0,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,3],[0,0,2,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,2],[0,0,2,2]],[[1,1,0,1],[2,2,4,1],[1,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,3,1],[1,4,3,2],[0,1,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,4,2],[0,1,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,3],[0,1,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,2],[0,1,1,2]],[[1,1,0,1],[2,2,4,1],[1,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,3,1],[1,4,3,2],[0,1,2,0]],[[1,1,0,1],[2,2,3,1],[1,3,4,2],[0,1,2,0]],[[1,1,0,1],[2,2,3,1],[1,3,3,3],[0,1,2,0]],[[1,1,0,1],[2,2,3,1],[1,3,3,2],[0,1,3,0]],[[1,1,0,1],[2,2,4,1],[1,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,1],[1,4,3,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,1],[1,3,4,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,3],[0,2,0,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,2],[0,3,0,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,2],[0,2,0,2]],[[1,1,0,1],[2,2,4,1],[1,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,3,1],[1,4,3,2],[0,2,1,0]],[[1,1,0,1],[2,2,3,1],[1,3,4,2],[0,2,1,0]],[[1,1,0,1],[2,2,3,1],[1,3,3,3],[0,2,1,0]],[[1,1,0,1],[2,2,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,2,2,2],[1,2,2,2],[1,1,2,2]],[[1,2,1,1],[0,2,2,2],[1,2,2,2],[1,1,3,1]],[[1,2,1,1],[0,2,2,2],[1,2,2,3],[1,1,2,1]],[[1,2,1,1],[0,2,2,3],[1,2,2,2],[1,1,2,1]],[[1,2,1,2],[0,2,2,2],[1,2,2,2],[1,1,2,1]],[[1,1,0,1],[2,2,4,1],[1,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,1],[1,4,3,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,4,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,3],[1,0,1,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,2],[1,0,1,2]],[[1,1,0,1],[2,2,4,1],[1,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,3,1],[1,4,3,2],[1,0,2,0]],[[1,1,0,1],[2,2,3,1],[1,3,4,2],[1,0,2,0]],[[1,1,0,1],[2,2,3,1],[1,3,3,3],[1,0,2,0]],[[1,1,0,1],[2,2,3,1],[1,3,3,2],[1,0,3,0]],[[1,1,0,1],[2,2,4,1],[1,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,1],[1,4,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,1],[1,3,4,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,3],[1,1,0,1]],[[1,1,0,1],[2,2,3,1],[1,3,3,2],[1,1,0,2]],[[1,1,0,1],[2,2,4,1],[1,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,3,1],[1,4,3,2],[1,1,1,0]],[[1,1,0,1],[2,2,3,1],[1,3,4,2],[1,1,1,0]],[[1,1,0,1],[2,2,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,2,2,2],[1,1,3,2],[1,2,3,0]],[[1,2,1,1],[0,2,2,2],[1,1,3,2],[1,3,2,0]],[[1,2,1,1],[0,2,2,2],[1,1,3,2],[2,2,2,0]],[[1,2,1,1],[0,2,2,2],[1,1,3,3],[1,2,2,0]],[[1,2,1,1],[0,2,2,2],[1,1,4,2],[1,2,2,0]],[[1,2,1,1],[0,2,2,3],[1,1,3,2],[1,2,2,0]],[[1,2,1,2],[0,2,2,2],[1,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,2,2,2],[1,1,3,2],[1,2,1,2]],[[1,2,1,1],[0,2,2,2],[1,1,3,3],[1,2,1,1]],[[1,2,1,1],[0,2,2,2],[1,1,4,2],[1,2,1,1]],[[1,2,1,1],[0,2,2,3],[1,1,3,2],[1,2,1,1]],[[1,2,1,2],[0,2,2,2],[1,1,3,2],[1,2,1,1]],[[1,2,1,1],[0,2,2,2],[1,1,3,1],[1,2,2,2]],[[1,2,1,1],[0,2,2,2],[1,1,3,1],[1,2,3,1]],[[1,2,1,1],[0,2,2,2],[1,1,3,1],[1,3,2,1]],[[1,2,1,1],[0,2,2,2],[1,1,3,1],[2,2,2,1]],[[1,2,1,1],[0,2,2,2],[1,1,4,1],[1,2,2,1]],[[1,2,1,1],[0,2,2,2],[1,1,2,2],[1,2,2,2]],[[1,2,1,1],[0,2,2,2],[1,1,2,2],[1,2,3,1]],[[1,2,1,1],[0,2,2,2],[1,1,2,2],[1,3,2,1]],[[2,1,0,1],[2,2,3,1],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[3,2,3,1],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[3,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,0,2,3],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,0,2,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,0,2,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,1],[2,0,2,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,1],[2,0,2,2],[1,2,2,2]],[[2,1,0,1],[2,2,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[3,2,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,4,1],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[3,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,0,4,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,0,3,1],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,0,3,1],[1,3,2,1]],[[1,1,0,1],[2,2,3,1],[2,0,3,1],[1,2,3,1]],[[1,1,0,1],[2,2,3,1],[2,0,3,1],[1,2,2,2]],[[1,1,0,1],[2,2,4,1],[2,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[2,0,4,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[2,0,3,3],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[2,0,3,2],[1,2,1,2]],[[2,1,0,1],[2,2,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[3,2,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,4,1],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[3,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[2,0,4,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[2,0,3,3],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[2,0,3,2],[2,2,2,0]],[[1,1,0,1],[2,2,3,1],[2,0,3,2],[1,3,2,0]],[[1,1,0,1],[2,2,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,1,1],[0,2,2,2],[1,1,2,2],[2,2,2,1]],[[1,2,1,1],[0,2,2,2],[1,1,2,3],[1,2,2,1]],[[1,2,1,1],[0,2,2,3],[1,1,2,2],[1,2,2,1]],[[1,2,1,2],[0,2,2,2],[1,1,2,2],[1,2,2,1]],[[1,2,1,1],[0,2,2,2],[1,0,3,2],[1,2,2,2]],[[1,2,1,1],[0,2,2,2],[1,0,3,2],[1,2,3,1]],[[1,2,1,1],[0,2,2,2],[1,0,3,3],[1,2,2,1]],[[1,2,1,1],[0,2,2,3],[1,0,3,2],[1,2,2,1]],[[1,2,1,2],[0,2,2,2],[1,0,3,2],[1,2,2,1]],[[2,1,0,1],[2,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[3,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[3,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,2,0,3],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,2,0,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,2,0,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,1],[2,2,0,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,1],[2,2,0,2],[1,2,2,2]],[[2,1,0,1],[2,2,3,1],[2,2,1,1],[1,2,2,1]],[[1,1,0,1],[3,2,3,1],[2,2,1,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[3,2,1,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,2,1,1],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,2,1,1],[1,3,2,1]],[[1,1,0,1],[2,2,3,1],[2,2,1,1],[1,2,3,1]],[[1,1,0,1],[2,2,3,1],[2,2,1,1],[1,2,2,2]],[[2,1,0,1],[2,2,3,1],[2,2,1,2],[1,2,2,0]],[[1,1,0,1],[3,2,3,1],[2,2,1,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[3,2,1,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[2,2,1,2],[2,2,2,0]],[[1,1,0,1],[2,2,3,1],[2,2,1,2],[1,3,2,0]],[[1,1,0,1],[2,2,3,1],[2,2,1,2],[1,2,3,0]],[[2,1,0,1],[2,2,3,1],[2,2,2,1],[1,2,1,1]],[[1,1,0,1],[3,2,3,1],[2,2,2,1],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[3,2,2,1],[1,2,1,1]],[[1,1,0,1],[2,2,3,1],[2,2,2,1],[2,2,1,1]],[[1,1,0,1],[2,2,3,1],[2,2,2,1],[1,3,1,1]],[[2,1,0,1],[2,2,3,1],[2,2,2,2],[1,2,0,1]],[[1,1,0,1],[3,2,3,1],[2,2,2,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,1],[3,2,2,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,1],[2,2,2,2],[2,2,0,1]],[[1,1,0,1],[2,2,3,1],[2,2,2,2],[1,3,0,1]],[[2,1,0,1],[2,2,3,1],[2,2,2,2],[1,2,1,0]],[[1,1,0,1],[3,2,3,1],[2,2,2,2],[1,2,1,0]],[[1,1,0,1],[2,2,3,1],[3,2,2,2],[1,2,1,0]],[[1,1,0,1],[2,2,3,1],[2,2,2,2],[2,2,1,0]],[[1,1,0,1],[2,2,3,1],[2,2,2,2],[1,3,1,0]],[[2,1,0,1],[2,2,3,1],[2,3,0,1],[1,2,2,1]],[[1,1,0,1],[3,2,3,1],[2,3,0,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[3,3,0,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,3,0,1],[2,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,3,0,1],[1,3,2,1]],[[2,1,0,1],[2,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[3,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[3,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,4,0,2],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,3,0,3],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,3,0,2],[0,3,2,1]],[[1,1,0,1],[2,2,3,1],[2,3,0,2],[0,2,3,1]],[[1,1,0,1],[2,2,3,1],[2,3,0,2],[0,2,2,2]],[[2,1,0,1],[2,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,1,0,1],[3,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,2,3,1],[3,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,2,3,1],[2,4,0,2],[1,1,2,1]],[[1,1,0,1],[2,2,3,1],[2,3,0,2],[2,1,2,1]],[[2,1,0,1],[2,2,3,1],[2,3,0,2],[1,2,2,0]],[[1,1,0,1],[3,2,3,1],[2,3,0,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[3,3,0,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,1],[2,3,0,2],[2,2,2,0]],[[1,1,0,1],[2,2,3,1],[2,3,0,2],[1,3,2,0]],[[2,1,0,1],[2,2,3,1],[2,3,1,1],[0,2,2,1]],[[1,1,0,1],[3,2,3,1],[2,3,1,1],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[3,3,1,1],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,4,1,1],[0,2,2,1]],[[1,1,0,1],[2,2,3,1],[2,3,1,1],[0,3,2,1]],[[1,1,0,1],[2,2,3,1],[2,3,1,1],[0,2,3,1]],[[1,1,0,1],[2,2,3,1],[2,3,1,1],[0,2,2,2]],[[2,1,0,1],[2,2,3,1],[2,3,1,1],[1,1,2,1]],[[1,1,0,1],[3,2,3,1],[2,3,1,1],[1,1,2,1]],[[1,1,0,1],[2,2,3,1],[3,3,1,1],[1,1,2,1]],[[1,1,0,1],[2,2,3,1],[2,4,1,1],[1,1,2,1]],[[1,1,0,1],[2,2,3,1],[2,3,1,1],[2,1,2,1]],[[2,1,0,1],[2,2,3,1],[2,3,1,2],[0,2,2,0]],[[1,1,0,1],[3,2,3,1],[2,3,1,2],[0,2,2,0]],[[1,1,0,1],[2,2,3,1],[3,3,1,2],[0,2,2,0]],[[1,1,0,1],[2,2,3,1],[2,4,1,2],[0,2,2,0]],[[1,1,0,1],[2,2,3,1],[2,3,1,2],[0,3,2,0]],[[1,1,0,1],[2,2,3,1],[2,3,1,2],[0,2,3,0]],[[2,1,0,1],[2,2,3,1],[2,3,1,2],[1,1,2,0]],[[1,1,0,1],[3,2,3,1],[2,3,1,2],[1,1,2,0]],[[1,1,0,1],[2,2,3,1],[3,3,1,2],[1,1,2,0]],[[1,1,0,1],[2,2,3,1],[2,4,1,2],[1,1,2,0]],[[1,1,0,1],[2,2,3,1],[2,3,1,2],[2,1,2,0]],[[2,1,0,1],[2,2,3,1],[2,3,2,1],[0,1,2,1]],[[1,1,0,1],[3,2,3,1],[2,3,2,1],[0,1,2,1]],[[1,1,0,1],[2,2,3,1],[3,3,2,1],[0,1,2,1]],[[1,1,0,1],[2,2,3,1],[2,4,2,1],[0,1,2,1]],[[2,1,0,1],[2,2,3,1],[2,3,2,1],[0,2,1,1]],[[1,1,0,1],[3,2,3,1],[2,3,2,1],[0,2,1,1]],[[1,1,0,1],[2,2,3,1],[3,3,2,1],[0,2,1,1]],[[1,1,0,1],[2,2,3,1],[2,4,2,1],[0,2,1,1]],[[1,1,0,1],[2,2,3,1],[2,3,2,1],[0,3,1,1]],[[2,1,0,1],[2,2,3,1],[2,3,2,1],[1,0,2,1]],[[1,1,0,1],[3,2,3,1],[2,3,2,1],[1,0,2,1]],[[1,1,0,1],[2,2,3,1],[3,3,2,1],[1,0,2,1]],[[1,1,0,1],[2,2,3,1],[2,4,2,1],[1,0,2,1]],[[1,1,0,1],[2,2,3,1],[2,3,2,1],[2,0,2,1]],[[2,1,0,1],[2,2,3,1],[2,3,2,1],[1,1,1,1]],[[1,1,0,1],[3,2,3,1],[2,3,2,1],[1,1,1,1]],[[1,1,0,1],[2,2,3,1],[3,3,2,1],[1,1,1,1]],[[1,1,0,1],[2,2,3,1],[2,4,2,1],[1,1,1,1]],[[1,1,0,1],[2,2,3,1],[2,3,2,1],[2,1,1,1]],[[2,1,0,1],[2,2,3,1],[2,3,2,1],[1,2,0,1]],[[1,1,0,1],[3,2,3,1],[2,3,2,1],[1,2,0,1]],[[1,1,0,1],[2,2,3,1],[3,3,2,1],[1,2,0,1]],[[1,1,0,1],[2,2,3,1],[2,4,2,1],[1,2,0,1]],[[1,1,0,1],[2,2,3,1],[2,3,2,1],[2,2,0,1]],[[2,1,0,1],[2,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,0,1],[3,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,2,3,1],[3,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,2,3,1],[2,4,2,2],[0,1,1,1]],[[2,1,0,1],[2,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,0,1],[3,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,2,3,1],[3,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,2,3,1],[2,4,2,2],[0,1,2,0]],[[2,1,0,1],[2,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,0,1],[3,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,1],[3,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,1],[2,4,2,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,1],[2,3,2,2],[0,3,0,1]],[[2,1,0,1],[2,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,0,1],[3,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,2,3,1],[3,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,2,3,1],[2,4,2,2],[0,2,1,0]],[[1,1,0,1],[2,2,3,1],[2,3,2,2],[0,3,1,0]],[[2,1,0,1],[2,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,0,1],[3,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,1],[3,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,1],[2,4,2,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,1],[2,3,2,2],[2,0,1,1]],[[2,1,0,1],[2,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,0,1],[3,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,0,1],[2,2,3,1],[3,3,2,2],[1,0,2,0]],[[1,1,0,1],[2,2,3,1],[2,4,2,2],[1,0,2,0]],[[1,1,0,1],[2,2,3,1],[2,3,2,2],[2,0,2,0]],[[2,1,0,1],[2,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,0,1],[3,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,1],[3,3,2,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,1],[2,4,2,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,1],[2,3,2,2],[2,1,0,1]],[[2,1,0,1],[2,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,0,1],[3,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,0,1],[2,2,3,1],[3,3,2,2],[1,1,1,0]],[[1,1,0,1],[2,2,3,1],[2,4,2,2],[1,1,1,0]],[[1,1,0,1],[2,2,3,1],[2,3,2,2],[2,1,1,0]],[[2,1,0,1],[2,2,3,1],[2,3,2,2],[1,2,0,0]],[[1,1,0,1],[3,2,3,1],[2,3,2,2],[1,2,0,0]],[[1,1,0,1],[2,2,3,1],[3,3,2,2],[1,2,0,0]],[[1,1,0,1],[2,2,3,1],[2,4,2,2],[1,2,0,0]],[[1,1,0,1],[2,2,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,1,1],[0,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,1],[0,1,3,3],[2,3,3,2],[1,0,0,1]],[[1,2,1,1],[0,1,4,2],[2,3,3,2],[1,0,0,1]],[[1,2,1,2],[0,1,3,2],[2,3,3,2],[1,0,0,1]],[[1,2,1,1],[0,1,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,1],[0,1,3,3],[2,3,3,2],[0,1,0,1]],[[1,2,1,1],[0,1,4,2],[2,3,3,2],[0,1,0,1]],[[1,2,1,2],[0,1,3,2],[2,3,3,2],[0,1,0,1]],[[2,1,0,1],[2,2,3,1],[2,3,3,2],[0,2,0,0]],[[1,1,0,1],[3,2,3,1],[2,3,3,2],[0,2,0,0]],[[1,1,0,1],[2,2,3,1],[3,3,3,2],[0,2,0,0]],[[1,1,0,1],[2,2,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,1,1],[0,1,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[0,1,3,2],[2,4,3,1],[1,2,0,0]],[[1,2,1,1],[0,1,3,2],[3,3,3,1],[1,2,0,0]],[[1,2,1,1],[0,1,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,1,1],[0,1,3,2],[2,4,3,1],[1,1,1,0]],[[1,2,1,1],[0,1,3,2],[3,3,3,1],[1,1,1,0]],[[1,2,1,1],[0,1,3,3],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[0,1,4,2],[2,3,3,1],[1,1,1,0]],[[1,2,1,2],[0,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,3,1],[2,1,0,1]],[[1,2,1,1],[0,1,3,2],[2,3,4,1],[1,1,0,1]],[[1,2,1,1],[0,1,3,2],[2,4,3,1],[1,1,0,1]],[[1,2,1,1],[0,1,3,2],[3,3,3,1],[1,1,0,1]],[[1,2,1,1],[0,1,3,3],[2,3,3,1],[1,1,0,1]],[[1,2,1,1],[0,1,4,2],[2,3,3,1],[1,1,0,1]],[[1,2,1,2],[0,1,3,2],[2,3,3,1],[1,1,0,1]],[[2,1,0,1],[2,2,3,1],[2,3,3,2],[1,1,0,0]],[[1,1,0,1],[3,2,3,1],[2,3,3,2],[1,1,0,0]],[[1,1,0,1],[2,2,3,1],[3,3,3,2],[1,1,0,0]],[[1,1,0,1],[2,2,3,1],[2,4,3,2],[1,1,0,0]],[[1,1,0,1],[2,2,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,1,1],[0,1,3,2],[2,3,3,1],[1,0,3,0]],[[1,2,1,1],[0,1,3,2],[2,3,3,1],[2,0,2,0]],[[1,2,1,1],[0,1,3,2],[2,3,4,1],[1,0,2,0]],[[1,2,1,1],[0,1,3,2],[2,4,3,1],[1,0,2,0]],[[1,2,1,1],[0,1,3,2],[3,3,3,1],[1,0,2,0]],[[1,2,1,1],[0,1,3,3],[2,3,3,1],[1,0,2,0]],[[1,2,1,1],[0,1,4,2],[2,3,3,1],[1,0,2,0]],[[1,2,1,2],[0,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,2,1,1],[0,1,3,2],[2,3,3,1],[2,0,1,1]],[[1,2,1,1],[0,1,3,2],[2,3,4,1],[1,0,1,1]],[[1,2,1,1],[0,1,3,2],[2,4,3,1],[1,0,1,1]],[[1,2,1,1],[0,1,3,2],[3,3,3,1],[1,0,1,1]],[[1,2,1,1],[0,1,3,3],[2,3,3,1],[1,0,1,1]],[[1,2,1,1],[0,1,4,2],[2,3,3,1],[1,0,1,1]],[[1,2,1,2],[0,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,2,1,1],[0,1,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,4,1],[0,2,1,0]],[[1,2,1,1],[0,1,3,2],[2,4,3,1],[0,2,1,0]],[[1,2,1,1],[0,1,3,2],[3,3,3,1],[0,2,1,0]],[[1,2,1,1],[0,1,3,3],[2,3,3,1],[0,2,1,0]],[[1,2,1,1],[0,1,4,2],[2,3,3,1],[0,2,1,0]],[[1,2,1,2],[0,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,3,1],[0,3,0,1]],[[1,2,1,1],[0,1,3,2],[2,3,4,1],[0,2,0,1]],[[1,2,1,1],[0,1,3,2],[2,4,3,1],[0,2,0,1]],[[1,2,1,1],[0,1,3,2],[3,3,3,1],[0,2,0,1]],[[1,2,1,1],[0,1,3,3],[2,3,3,1],[0,2,0,1]],[[1,2,1,1],[0,1,4,2],[2,3,3,1],[0,2,0,1]],[[1,2,1,2],[0,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,2,1,1],[0,1,3,2],[2,3,3,1],[0,1,3,0]],[[1,2,1,1],[0,1,3,2],[2,3,4,1],[0,1,2,0]],[[1,2,1,1],[0,1,3,2],[2,4,3,1],[0,1,2,0]],[[1,2,1,1],[0,1,3,2],[3,3,3,1],[0,1,2,0]],[[1,2,1,1],[0,1,3,3],[2,3,3,1],[0,1,2,0]],[[1,2,1,1],[0,1,4,2],[2,3,3,1],[0,1,2,0]],[[1,2,1,2],[0,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,2,1,1],[0,1,3,2],[2,3,4,1],[0,1,1,1]],[[1,2,1,1],[0,1,3,2],[2,4,3,1],[0,1,1,1]],[[1,2,1,1],[0,1,3,2],[3,3,3,1],[0,1,1,1]],[[1,2,1,1],[0,1,3,3],[2,3,3,1],[0,1,1,1]],[[1,2,1,1],[0,1,4,2],[2,3,3,1],[0,1,1,1]],[[1,2,1,2],[0,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,2,1,1],[0,1,3,2],[2,3,4,1],[0,0,2,1]],[[1,2,1,1],[0,1,3,3],[2,3,3,1],[0,0,2,1]],[[1,2,1,1],[0,1,4,2],[2,3,3,1],[0,0,2,1]],[[1,2,1,2],[0,1,3,2],[2,3,3,1],[0,0,2,1]],[[1,1,0,2],[2,2,3,2],[0,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,4,2],[0,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,3],[0,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,2,1,3],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,2,1,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,2,1,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,2],[0,2,1,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,2],[0,2,1,2],[1,2,2,2]],[[1,1,0,2],[2,2,3,2],[0,2,2,2],[1,2,1,1]],[[1,1,0,1],[2,2,4,2],[0,2,2,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,3],[0,2,2,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[0,2,2,3],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[0,2,2,2],[1,2,1,2]],[[1,1,0,2],[2,2,3,2],[0,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,4,2],[0,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,3],[0,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[0,2,2,3],[1,2,2,0]],[[1,1,0,2],[2,2,3,2],[0,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,4,2],[0,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,3],[0,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,2,4,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,2,3,0],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,2,3,0],[1,3,2,1]],[[1,1,0,1],[2,2,3,2],[0,2,3,0],[1,2,3,1]],[[1,1,0,1],[2,2,3,2],[0,2,3,0],[1,2,2,2]],[[1,1,0,2],[2,2,3,2],[0,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,4,2],[0,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,3,3],[0,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[0,2,4,1],[1,2,1,1]],[[1,1,0,2],[2,2,3,2],[0,2,3,1],[1,2,2,0]],[[1,1,0,1],[2,2,4,2],[0,2,3,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,3],[0,2,3,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[0,2,4,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[0,2,3,1],[2,2,2,0]],[[1,1,0,1],[2,2,3,2],[0,2,3,1],[1,3,2,0]],[[1,1,0,1],[2,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,1,1],[0,1,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[0,1,3,2],[2,4,3,0],[1,2,0,1]],[[1,2,1,1],[0,1,3,2],[3,3,3,0],[1,2,0,1]],[[1,1,0,2],[2,2,3,2],[0,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,4,2],[0,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,3],[0,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,4,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,0,3],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,0,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,0,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,0,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,2],[0,3,0,2],[1,2,2,2]],[[1,1,0,2],[2,2,3,2],[0,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,2,4,2],[0,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,2,3,3],[0,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,1,3],[1,1,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,1,2],[1,1,3,1]],[[1,1,0,1],[2,2,3,2],[0,3,1,2],[1,1,2,2]],[[1,1,0,1],[2,2,3,2],[0,4,2,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,2,0],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,2,0],[1,3,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,2,0],[1,2,3,1]],[[1,1,0,1],[2,2,3,2],[0,3,2,0],[1,2,2,2]],[[1,1,0,1],[2,2,3,2],[0,4,2,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[0,3,2,1],[2,2,2,0]],[[1,1,0,1],[2,2,3,2],[0,3,2,1],[1,3,2,0]],[[1,1,0,1],[2,2,3,2],[0,3,2,1],[1,2,3,0]],[[1,1,0,2],[2,2,3,2],[0,3,2,2],[1,0,2,1]],[[1,1,0,1],[2,2,4,2],[0,3,2,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,3],[0,3,2,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,2,3],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,2,2],[1,0,2,2]],[[1,1,0,2],[2,2,3,2],[0,3,2,2],[1,1,1,1]],[[1,1,0,1],[2,2,4,2],[0,3,2,2],[1,1,1,1]],[[1,1,0,1],[2,2,3,3],[0,3,2,2],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[0,3,2,3],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[0,3,2,2],[1,1,1,2]],[[1,1,0,2],[2,2,3,2],[0,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,2,4,2],[0,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,2,3,3],[0,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,2,3,2],[0,3,2,3],[1,1,2,0]],[[1,1,0,2],[2,2,3,2],[0,3,2,2],[1,2,0,1]],[[1,1,0,1],[2,2,4,2],[0,3,2,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,3],[0,3,2,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[0,3,2,3],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[0,3,2,2],[1,2,0,2]],[[1,1,0,2],[2,2,3,2],[0,3,2,2],[1,2,1,0]],[[1,1,0,1],[2,2,4,2],[0,3,2,2],[1,2,1,0]],[[1,1,0,1],[2,2,3,3],[0,3,2,2],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,1,0,2],[2,2,3,2],[0,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,2,4,2],[0,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,2,3,3],[0,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,2,3,2],[0,4,3,0],[1,1,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,4,0],[1,1,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,3,0],[1,1,3,1]],[[1,1,0,1],[2,2,3,2],[0,3,3,0],[1,1,2,2]],[[1,1,0,2],[2,2,3,2],[0,3,3,0],[1,2,1,1]],[[1,1,0,1],[2,2,4,2],[0,3,3,0],[1,2,1,1]],[[1,1,0,1],[2,2,3,3],[0,3,3,0],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[0,4,3,0],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[0,3,4,0],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[0,3,3,0],[2,2,1,1]],[[1,1,0,1],[2,2,3,2],[0,3,3,0],[1,3,1,1]],[[1,1,0,2],[2,2,3,2],[0,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,4,2],[0,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,3,3],[0,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[0,3,4,1],[1,0,2,1]],[[1,1,0,2],[2,2,3,2],[0,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,4,2],[0,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,3,3],[0,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[0,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[0,3,4,1],[1,1,1,1]],[[1,1,0,2],[2,2,3,2],[0,3,3,1],[1,1,2,0]],[[1,1,0,1],[2,2,4,2],[0,3,3,1],[1,1,2,0]],[[1,1,0,1],[2,2,3,3],[0,3,3,1],[1,1,2,0]],[[1,1,0,1],[2,2,3,2],[0,4,3,1],[1,1,2,0]],[[1,1,0,1],[2,2,3,2],[0,3,4,1],[1,1,2,0]],[[1,1,0,1],[2,2,3,2],[0,3,3,1],[1,1,3,0]],[[1,1,0,2],[2,2,3,2],[0,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,4,2],[0,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,3,3],[0,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[0,4,3,1],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[0,3,4,1],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[0,3,3,1],[2,2,0,1]],[[1,1,0,1],[2,2,3,2],[0,3,3,1],[1,3,0,1]],[[1,1,0,2],[2,2,3,2],[0,3,3,1],[1,2,1,0]],[[1,1,0,1],[2,2,4,2],[0,3,3,1],[1,2,1,0]],[[1,1,0,1],[2,2,3,3],[0,3,3,1],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[0,4,3,1],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[0,3,4,1],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[0,3,3,1],[2,2,1,0]],[[1,1,0,1],[2,2,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,3,0],[2,1,1,1]],[[1,2,1,1],[0,1,3,2],[2,3,4,0],[1,1,1,1]],[[1,2,1,1],[0,1,3,2],[2,4,3,0],[1,1,1,1]],[[1,2,1,1],[0,1,3,2],[3,3,3,0],[1,1,1,1]],[[1,2,1,1],[0,1,3,3],[2,3,3,0],[1,1,1,1]],[[1,2,1,1],[0,1,4,2],[2,3,3,0],[1,1,1,1]],[[1,2,1,2],[0,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,2,1,1],[0,1,3,2],[2,3,3,0],[1,0,2,2]],[[1,2,1,1],[0,1,3,2],[2,3,3,0],[1,0,3,1]],[[1,1,0,2],[2,2,3,2],[0,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,4,2],[0,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,3],[0,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,1,1],[0,1,3,2],[2,3,3,0],[2,0,2,1]],[[1,2,1,1],[0,1,3,2],[2,3,4,0],[1,0,2,1]],[[1,2,1,1],[0,1,3,2],[2,4,3,0],[1,0,2,1]],[[1,2,1,1],[0,1,3,2],[3,3,3,0],[1,0,2,1]],[[1,2,1,1],[0,1,3,3],[2,3,3,0],[1,0,2,1]],[[1,2,1,1],[0,1,4,2],[2,3,3,0],[1,0,2,1]],[[1,2,1,2],[0,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,2,1,1],[0,1,3,2],[2,3,3,0],[0,3,1,1]],[[1,2,1,1],[0,1,3,2],[2,3,4,0],[0,2,1,1]],[[1,2,1,1],[0,1,3,2],[2,4,3,0],[0,2,1,1]],[[1,2,1,1],[0,1,3,2],[3,3,3,0],[0,2,1,1]],[[1,2,1,1],[0,1,3,3],[2,3,3,0],[0,2,1,1]],[[1,2,1,1],[0,1,4,2],[2,3,3,0],[0,2,1,1]],[[1,2,1,2],[0,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,2,1,1],[0,1,3,2],[2,3,3,0],[0,1,2,2]],[[1,2,1,1],[0,1,3,2],[2,3,3,0],[0,1,3,1]],[[1,2,1,1],[0,1,3,2],[2,3,4,0],[0,1,2,1]],[[1,2,1,1],[0,1,3,2],[2,4,3,0],[0,1,2,1]],[[1,2,1,1],[0,1,3,2],[3,3,3,0],[0,1,2,1]],[[1,2,1,1],[0,1,3,3],[2,3,3,0],[0,1,2,1]],[[1,2,1,1],[0,1,4,2],[2,3,3,0],[0,1,2,1]],[[1,2,1,2],[0,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,2],[2,2,3,2],[1,2,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,4,2],[1,2,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,3,3],[1,2,1,2],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,2,1,3],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,2,1,2],[0,3,2,1]],[[1,1,0,1],[2,2,3,2],[1,2,1,2],[0,2,3,1]],[[1,1,0,1],[2,2,3,2],[1,2,1,2],[0,2,2,2]],[[1,1,0,2],[2,2,3,2],[1,2,2,2],[0,2,1,1]],[[1,1,0,1],[2,2,4,2],[1,2,2,2],[0,2,1,1]],[[1,1,0,1],[2,2,3,3],[1,2,2,2],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[1,2,2,3],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[1,2,2,2],[0,2,1,2]],[[1,1,0,2],[2,2,3,2],[1,2,2,2],[0,2,2,0]],[[1,1,0,1],[2,2,4,2],[1,2,2,2],[0,2,2,0]],[[1,1,0,1],[2,2,3,3],[1,2,2,2],[0,2,2,0]],[[1,1,0,1],[2,2,3,2],[1,2,2,3],[0,2,2,0]],[[1,1,0,2],[2,2,3,2],[1,2,3,0],[0,2,2,1]],[[1,1,0,1],[2,2,4,2],[1,2,3,0],[0,2,2,1]],[[1,1,0,1],[2,2,3,3],[1,2,3,0],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,2,4,0],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,2,3,0],[0,3,2,1]],[[1,1,0,1],[2,2,3,2],[1,2,3,0],[0,2,3,1]],[[1,1,0,1],[2,2,3,2],[1,2,3,0],[0,2,2,2]],[[1,1,0,2],[2,2,3,2],[1,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,4,2],[1,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,3,3],[1,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[1,2,4,1],[0,2,1,1]],[[1,1,0,2],[2,2,3,2],[1,2,3,1],[0,2,2,0]],[[1,1,0,1],[2,2,4,2],[1,2,3,1],[0,2,2,0]],[[1,1,0,1],[2,2,3,3],[1,2,3,1],[0,2,2,0]],[[1,1,0,1],[2,2,3,2],[1,2,4,1],[0,2,2,0]],[[1,1,0,1],[2,2,3,2],[1,2,3,1],[0,3,2,0]],[[1,1,0,1],[2,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,1],[0,1,3,3],[2,3,2,2],[1,1,1,0]],[[1,2,1,1],[0,1,4,2],[2,3,2,2],[1,1,1,0]],[[1,2,1,2],[0,1,3,2],[2,3,2,2],[1,1,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,2],[1,1,0,2]],[[1,2,1,1],[0,1,3,2],[2,3,2,3],[1,1,0,1]],[[1,2,1,1],[0,1,3,3],[2,3,2,2],[1,1,0,1]],[[1,2,1,1],[0,1,4,2],[2,3,2,2],[1,1,0,1]],[[1,2,1,2],[0,1,3,2],[2,3,2,2],[1,1,0,1]],[[1,2,1,1],[0,1,3,2],[2,3,2,3],[1,0,2,0]],[[1,2,1,1],[0,1,3,3],[2,3,2,2],[1,0,2,0]],[[1,2,1,1],[0,1,4,2],[2,3,2,2],[1,0,2,0]],[[1,2,1,2],[0,1,3,2],[2,3,2,2],[1,0,2,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,2],[1,0,1,2]],[[1,2,1,1],[0,1,3,2],[2,3,2,3],[1,0,1,1]],[[1,2,1,1],[0,1,3,3],[2,3,2,2],[1,0,1,1]],[[1,2,1,1],[0,1,4,2],[2,3,2,2],[1,0,1,1]],[[1,2,1,2],[0,1,3,2],[2,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,2],[1,4,0,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,0,1],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,0,1],[1,3,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,0,1],[1,2,3,1]],[[1,1,0,1],[2,2,3,2],[1,3,0,1],[1,2,2,2]],[[1,1,0,2],[2,2,3,2],[1,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,2,4,2],[1,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,2,3,3],[1,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,4,0,2],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,0,3],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,0,2],[0,3,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,0,2],[0,2,3,1]],[[1,1,0,1],[2,2,3,2],[1,3,0,2],[0,2,2,2]],[[1,1,0,1],[2,2,3,2],[1,4,0,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,0,2],[2,2,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,0,2],[1,3,1,1]],[[1,1,0,1],[2,2,3,2],[1,4,0,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,0,2],[2,2,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,0,2],[1,3,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,0,2],[1,2,3,0]],[[1,1,0,1],[2,2,3,2],[1,4,1,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,0],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,0],[1,3,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,0],[1,2,3,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,0],[1,2,2,2]],[[1,1,0,1],[2,2,3,2],[1,4,1,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,1,1],[2,2,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,1,1],[1,3,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,1,1],[1,2,3,0]],[[1,1,0,2],[2,2,3,2],[1,3,1,2],[0,1,2,1]],[[1,1,0,1],[2,2,4,2],[1,3,1,2],[0,1,2,1]],[[1,1,0,1],[2,2,3,3],[1,3,1,2],[0,1,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,3],[0,1,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,2],[0,1,3,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,2],[0,1,2,2]],[[1,1,0,2],[2,2,3,2],[1,3,1,2],[1,0,2,1]],[[1,1,0,1],[2,2,4,2],[1,3,1,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,3],[1,3,1,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,3],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,2],[1,0,3,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,2],[1,0,2,2]],[[1,1,0,1],[2,2,3,2],[1,4,1,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,2],[2,2,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,1,2],[1,3,0,1]],[[1,1,0,1],[2,2,3,2],[1,4,1,2],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[1,3,1,2],[2,2,1,0]],[[1,1,0,1],[2,2,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,1],[0,1,3,3],[2,3,2,2],[0,2,1,0]],[[1,2,1,1],[0,1,4,2],[2,3,2,2],[0,2,1,0]],[[1,2,1,2],[0,1,3,2],[2,3,2,2],[0,2,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,2],[0,2,0,2]],[[1,2,1,1],[0,1,3,2],[2,3,2,3],[0,2,0,1]],[[1,2,1,1],[0,1,3,3],[2,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[1,4,2,0],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,0],[0,3,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,0],[0,2,3,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,0],[0,2,2,2]],[[1,1,0,1],[2,2,3,2],[1,4,2,0],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,0],[2,2,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,0],[1,3,1,1]],[[1,1,0,1],[2,2,3,2],[1,4,2,1],[0,2,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,2,1],[0,3,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,2,1],[0,2,3,0]],[[1,1,0,1],[2,2,3,2],[1,4,2,1],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,1],[2,2,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,1],[1,3,0,1]],[[1,1,0,1],[2,2,3,2],[1,4,2,1],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[1,3,2,1],[2,2,1,0]],[[1,1,0,1],[2,2,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,1,1],[0,1,4,2],[2,3,2,2],[0,2,0,1]],[[1,2,1,2],[0,1,3,2],[2,3,2,2],[0,2,0,1]],[[1,1,0,2],[2,2,3,2],[1,3,2,2],[0,0,2,1]],[[1,1,0,1],[2,2,4,2],[1,3,2,2],[0,0,2,1]],[[1,1,0,1],[2,2,3,3],[1,3,2,2],[0,0,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,3],[0,0,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,2],[0,0,2,2]],[[1,1,0,2],[2,2,3,2],[1,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,2,4,2],[1,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,2,3,3],[1,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,3],[0,1,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,2],[0,1,1,2]],[[1,1,0,2],[2,2,3,2],[1,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,2,4,2],[1,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,2,3,3],[1,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,2,3],[0,1,2,0]],[[1,1,0,2],[2,2,3,2],[1,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,2,4,2],[1,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,3],[1,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,3],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,2],[0,2,0,2]],[[1,1,0,2],[2,2,3,2],[1,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,2,4,2],[1,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,2,3,3],[1,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,3],[0,1,2,0]],[[1,2,1,1],[0,1,3,3],[2,3,2,2],[0,1,2,0]],[[1,2,1,1],[0,1,4,2],[2,3,2,2],[0,1,2,0]],[[1,2,1,2],[0,1,3,2],[2,3,2,2],[0,1,2,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,2],[0,1,1,2]],[[1,1,0,2],[2,2,3,2],[1,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,2,4,2],[1,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,3],[1,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,3],[1,0,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,2],[1,0,1,2]],[[1,1,0,2],[2,2,3,2],[1,3,2,2],[1,0,2,0]],[[1,1,0,1],[2,2,4,2],[1,3,2,2],[1,0,2,0]],[[1,1,0,1],[2,2,3,3],[1,3,2,2],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,2,3],[1,0,2,0]],[[1,1,0,2],[2,2,3,2],[1,3,2,2],[1,1,0,1]],[[1,1,0,1],[2,2,4,2],[1,3,2,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,3],[1,3,2,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,3],[1,1,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,2,2],[1,1,0,2]],[[1,1,0,2],[2,2,3,2],[1,3,2,2],[1,1,1,0]],[[1,1,0,1],[2,2,4,2],[1,3,2,2],[1,1,1,0]],[[1,1,0,1],[2,2,3,3],[1,3,2,2],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,3],[0,1,1,1]],[[1,2,1,1],[0,1,3,3],[2,3,2,2],[0,1,1,1]],[[1,2,1,1],[0,1,4,2],[2,3,2,2],[0,1,1,1]],[[1,2,1,2],[0,1,3,2],[2,3,2,2],[0,1,1,1]],[[1,2,1,1],[0,1,3,2],[2,3,2,2],[0,0,2,2]],[[1,2,1,1],[0,1,3,2],[2,3,2,3],[0,0,2,1]],[[1,2,1,1],[0,1,3,3],[2,3,2,2],[0,0,2,1]],[[1,2,1,1],[0,1,4,2],[2,3,2,2],[0,0,2,1]],[[1,2,1,2],[0,1,3,2],[2,3,2,2],[0,0,2,1]],[[1,2,1,1],[0,1,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[0,1,3,2],[2,4,2,1],[1,1,2,0]],[[1,2,1,1],[0,1,3,2],[3,3,2,1],[1,1,2,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,1],[0,2,3,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,1],[0,3,2,0]],[[1,2,1,1],[0,1,3,2],[2,4,2,1],[0,2,2,0]],[[1,2,1,1],[0,1,3,2],[3,3,2,1],[0,2,2,0]],[[1,1,0,2],[2,2,3,2],[1,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,2,4,2],[1,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,2,3,3],[1,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,2,3,2],[1,4,3,0],[0,1,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,4,0],[0,1,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,3,0],[0,1,3,1]],[[1,1,0,1],[2,2,3,2],[1,3,3,0],[0,1,2,2]],[[1,1,0,2],[2,2,3,2],[1,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,2,4,2],[1,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,2,3,3],[1,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[1,4,3,0],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,4,0],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,3,0],[0,3,1,1]],[[1,1,0,2],[2,2,3,2],[1,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,2,4,2],[1,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,2,3,3],[1,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[1,4,3,0],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,4,0],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,3,0],[1,0,3,1]],[[1,1,0,1],[2,2,3,2],[1,3,3,0],[1,0,2,2]],[[1,1,0,2],[2,2,3,2],[1,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,2,4,2],[1,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,2,3,3],[1,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[1,4,3,0],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,4,0],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[1,4,3,0],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[1,3,3,0],[2,2,1,0]],[[1,1,0,1],[2,2,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,0],[2,1,2,1]],[[1,2,1,1],[0,1,3,2],[2,4,2,0],[1,1,2,1]],[[1,2,1,1],[0,1,3,2],[3,3,2,0],[1,1,2,1]],[[1,2,1,1],[0,1,3,2],[2,3,2,0],[0,2,2,2]],[[1,2,1,1],[0,1,3,2],[2,3,2,0],[0,2,3,1]],[[1,1,0,2],[2,2,3,2],[1,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,2,4,2],[1,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,2,3,3],[1,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,2,3,2],[1,3,4,1],[0,0,2,1]],[[1,1,0,2],[2,2,3,2],[1,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,2,4,2],[1,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,2,3,3],[1,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,2,3,2],[1,4,3,1],[0,1,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,4,1],[0,1,1,1]],[[1,1,0,2],[2,2,3,2],[1,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,2,4,2],[1,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,2,3,3],[1,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,2,3,2],[1,4,3,1],[0,1,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,4,1],[0,1,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,3,1],[0,1,3,0]],[[1,1,0,2],[2,2,3,2],[1,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,2,4,2],[1,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,2,3,3],[1,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[1,4,3,1],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,4,1],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,3,1],[0,3,0,1]],[[1,1,0,2],[2,2,3,2],[1,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,2,4,2],[1,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,2,3,3],[1,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[1,4,3,1],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[1,3,4,1],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,2,0],[0,3,2,1]],[[1,2,1,1],[0,1,3,2],[2,4,2,0],[0,2,2,1]],[[1,2,1,1],[0,1,3,2],[3,3,2,0],[0,2,2,1]],[[1,1,0,2],[2,2,3,2],[1,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,2,4,2],[1,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,2,3,3],[1,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,2,3,2],[1,4,3,1],[1,0,1,1]],[[1,1,0,1],[2,2,3,2],[1,3,4,1],[1,0,1,1]],[[1,1,0,2],[2,2,3,2],[1,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,2,4,2],[1,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,2,3,3],[1,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[1,4,3,1],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,4,1],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[1,3,3,1],[1,0,3,0]],[[1,1,0,2],[2,2,3,2],[1,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,2,4,2],[1,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,2,3,3],[1,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,2,3,2],[1,4,3,1],[1,1,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,4,1],[1,1,0,1]],[[1,1,0,2],[2,2,3,2],[1,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,2,4,2],[1,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,2,3,3],[1,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[1,4,3,1],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,1,1],[0,1,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,1,1],[0,1,3,2],[2,3,1,2],[1,0,3,1]],[[1,2,1,1],[0,1,3,2],[2,3,1,3],[1,0,2,1]],[[1,2,1,1],[0,1,3,3],[2,3,1,2],[1,0,2,1]],[[1,2,1,1],[0,1,4,2],[2,3,1,2],[1,0,2,1]],[[1,2,1,2],[0,1,3,2],[2,3,1,2],[1,0,2,1]],[[1,2,1,1],[0,1,3,2],[2,3,1,2],[0,1,2,2]],[[1,2,1,1],[0,1,3,2],[2,3,1,2],[0,1,3,1]],[[1,2,1,1],[0,1,3,2],[2,3,1,3],[0,1,2,1]],[[1,2,1,1],[0,1,3,3],[2,3,1,2],[0,1,2,1]],[[1,2,1,1],[0,1,4,2],[2,3,1,2],[0,1,2,1]],[[1,2,1,2],[0,1,3,2],[2,3,1,2],[0,1,2,1]],[[1,1,0,2],[2,2,3,2],[1,3,3,2],[0,1,0,1]],[[1,1,0,1],[2,2,4,2],[1,3,3,2],[0,1,0,1]],[[1,1,0,1],[2,2,3,3],[1,3,3,2],[0,1,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,1,1],[0,1,3,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,1],[0,1,3,2],[2,4,0,2],[1,1,2,1]],[[1,2,1,1],[0,1,3,2],[3,3,0,2],[1,1,2,1]],[[1,2,1,1],[0,1,3,2],[2,3,0,2],[0,2,2,2]],[[1,2,1,1],[0,1,3,2],[2,3,0,2],[0,2,3,1]],[[1,2,1,1],[0,1,3,2],[2,3,0,2],[0,3,2,1]],[[1,2,1,1],[0,1,3,2],[2,3,0,3],[0,2,2,1]],[[1,2,1,1],[0,1,3,2],[2,4,0,2],[0,2,2,1]],[[1,2,1,1],[0,1,3,2],[3,3,0,2],[0,2,2,1]],[[1,2,1,1],[0,1,3,3],[2,3,0,2],[0,2,2,1]],[[1,2,1,1],[0,1,4,2],[2,3,0,2],[0,2,2,1]],[[1,2,1,2],[0,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,0,2],[2,2,3,2],[1,3,3,2],[1,0,0,1]],[[1,1,0,1],[2,2,4,2],[1,3,3,2],[1,0,0,1]],[[1,1,0,1],[2,2,3,3],[1,3,3,2],[1,0,0,1]],[[1,1,0,1],[2,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,1,1],[0,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[0,1,3,2],[2,2,3,1],[2,2,1,0]],[[1,2,1,1],[0,1,3,2],[3,2,3,1],[1,2,1,0]],[[1,2,1,1],[0,1,3,2],[2,2,3,1],[1,3,0,1]],[[1,2,1,1],[0,1,3,2],[2,2,3,1],[2,2,0,1]],[[1,2,1,1],[0,1,3,2],[3,2,3,1],[1,2,0,1]],[[1,2,1,1],[0,1,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,1,1],[0,1,3,2],[2,2,3,1],[0,3,2,0]],[[1,2,1,1],[0,1,3,2],[2,2,4,1],[0,2,2,0]],[[1,2,1,1],[0,1,3,3],[2,2,3,1],[0,2,2,0]],[[1,2,1,1],[0,1,4,2],[2,2,3,1],[0,2,2,0]],[[1,2,1,2],[0,1,3,2],[2,2,3,1],[0,2,2,0]],[[1,2,1,1],[0,1,3,2],[2,2,4,1],[0,2,1,1]],[[1,2,1,1],[0,1,3,3],[2,2,3,1],[0,2,1,1]],[[1,2,1,1],[0,1,4,2],[2,2,3,1],[0,2,1,1]],[[1,2,1,2],[0,1,3,2],[2,2,3,1],[0,2,1,1]],[[1,2,1,1],[0,1,3,2],[2,2,3,0],[1,3,1,1]],[[1,2,1,1],[0,1,3,2],[2,2,3,0],[2,2,1,1]],[[1,2,1,1],[0,1,3,2],[3,2,3,0],[1,2,1,1]],[[1,2,1,1],[0,1,3,2],[2,2,3,0],[0,2,2,2]],[[1,2,1,1],[0,1,3,2],[2,2,3,0],[0,2,3,1]],[[1,2,1,1],[0,1,3,2],[2,2,3,0],[0,3,2,1]],[[1,2,1,1],[0,1,3,2],[2,2,4,0],[0,2,2,1]],[[1,2,1,1],[0,1,3,3],[2,2,3,0],[0,2,2,1]],[[1,2,1,1],[0,1,4,2],[2,2,3,0],[0,2,2,1]],[[1,2,1,2],[0,1,3,2],[2,2,3,0],[0,2,2,1]],[[2,1,0,1],[2,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,2],[2,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[3,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,4,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,3],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[3,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,0,1,3],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,0,1,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,0,1,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,2],[2,0,1,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,2],[2,0,1,2],[1,2,2,2]],[[1,1,0,2],[2,2,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,0,1],[2,2,4,2],[2,0,2,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,3],[2,0,2,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[2,0,2,3],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[2,0,2,2],[1,2,1,2]],[[1,1,0,2],[2,2,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,4,2],[2,0,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,3],[2,0,2,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,0,2,3],[1,2,2,0]],[[2,1,0,1],[2,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,2],[2,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,1],[3,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,4,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,3],[2,0,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[3,0,3,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,0,4,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,0,3,0],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,0,3,0],[1,3,2,1]],[[1,1,0,1],[2,2,3,2],[2,0,3,0],[1,2,3,1]],[[1,1,0,1],[2,2,3,2],[2,0,3,0],[1,2,2,2]],[[1,1,0,2],[2,2,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,4,2],[2,0,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,3,3],[2,0,3,1],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[2,0,4,1],[1,2,1,1]],[[2,1,0,1],[2,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,2],[2,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,1],[3,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,1],[2,2,4,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,3],[2,0,3,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[3,0,3,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,0,4,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,0,3,1],[2,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,0,3,1],[1,3,2,0]],[[1,1,0,1],[2,2,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,1,1],[0,1,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,1,1],[0,1,3,3],[2,2,2,2],[0,2,2,0]],[[1,2,1,1],[0,1,4,2],[2,2,2,2],[0,2,2,0]],[[1,2,1,2],[0,1,3,2],[2,2,2,2],[0,2,2,0]],[[1,2,1,1],[0,1,3,2],[2,2,2,2],[0,2,1,2]],[[1,2,1,1],[0,1,3,2],[2,2,2,3],[0,2,1,1]],[[1,2,1,1],[0,1,3,3],[2,2,2,2],[0,2,1,1]],[[1,2,1,1],[0,1,4,2],[2,2,2,2],[0,2,1,1]],[[2,1,0,1],[2,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,2],[2,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[3,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,4,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,3],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[3,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,1,0,3],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,1,0,2],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,1,0,2],[1,3,2,1]],[[1,1,0,1],[2,2,3,2],[2,1,0,2],[1,2,3,1]],[[1,1,0,1],[2,2,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,2],[0,1,3,2],[2,2,2,2],[0,2,1,1]],[[1,2,1,1],[0,1,3,2],[2,2,2,1],[1,2,3,0]],[[1,2,1,1],[0,1,3,2],[2,2,2,1],[1,3,2,0]],[[1,2,1,1],[0,1,3,2],[2,2,2,1],[2,2,2,0]],[[1,2,1,1],[0,1,3,2],[3,2,2,1],[1,2,2,0]],[[1,2,1,1],[0,1,3,2],[2,2,2,0],[1,2,2,2]],[[1,2,1,1],[0,1,3,2],[2,2,2,0],[1,2,3,1]],[[1,2,1,1],[0,1,3,2],[2,2,2,0],[1,3,2,1]],[[1,2,1,1],[0,1,3,2],[2,2,2,0],[2,2,2,1]],[[1,2,1,1],[0,1,3,2],[3,2,2,0],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[2,2,1,2],[0,2,2,2]],[[1,2,1,1],[0,1,3,2],[2,2,1,2],[0,2,3,1]],[[1,2,1,1],[0,1,3,2],[2,2,1,2],[0,3,2,1]],[[1,2,1,1],[0,1,3,2],[2,2,1,3],[0,2,2,1]],[[1,2,1,1],[0,1,3,3],[2,2,1,2],[0,2,2,1]],[[1,2,1,1],[0,1,4,2],[2,2,1,2],[0,2,2,1]],[[1,2,1,2],[0,1,3,2],[2,2,1,2],[0,2,2,1]],[[1,2,1,1],[0,1,3,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,2],[2,2,0,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,2],[2,2,0,2],[1,3,2,1]],[[1,2,1,1],[0,1,3,2],[2,2,0,2],[2,2,2,1]],[[1,2,1,1],[0,1,3,2],[2,2,0,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[3,2,0,2],[1,2,2,1]],[[1,2,1,1],[0,1,3,3],[2,2,0,2],[1,2,2,1]],[[1,2,1,1],[0,1,4,2],[2,2,0,2],[1,2,2,1]],[[1,2,1,2],[0,1,3,2],[2,2,0,2],[1,2,2,1]],[[2,1,0,1],[2,2,3,2],[2,2,0,1],[1,2,2,1]],[[1,1,0,1],[3,2,3,2],[2,2,0,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[3,2,0,1],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,2,0,1],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,2,0,1],[1,3,2,1]],[[1,1,0,1],[2,2,3,2],[2,2,0,1],[1,2,3,1]],[[1,1,0,1],[2,2,3,2],[2,2,0,1],[1,2,2,2]],[[2,1,0,1],[2,2,3,2],[2,2,0,2],[1,2,1,1]],[[1,1,0,1],[3,2,3,2],[2,2,0,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[3,2,0,2],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[2,2,0,2],[2,2,1,1]],[[1,1,0,1],[2,2,3,2],[2,2,0,2],[1,3,1,1]],[[2,1,0,1],[2,2,3,2],[2,2,0,2],[1,2,2,0]],[[1,1,0,1],[3,2,3,2],[2,2,0,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[3,2,0,2],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,2,0,2],[2,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,2,0,2],[1,3,2,0]],[[1,1,0,1],[2,2,3,2],[2,2,0,2],[1,2,3,0]],[[2,1,0,1],[2,2,3,2],[2,2,1,0],[1,2,2,1]],[[1,1,0,1],[3,2,3,2],[2,2,1,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[3,2,1,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,2,1,0],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,2,1,0],[1,3,2,1]],[[1,1,0,1],[2,2,3,2],[2,2,1,0],[1,2,3,1]],[[1,1,0,1],[2,2,3,2],[2,2,1,0],[1,2,2,2]],[[2,1,0,1],[2,2,3,2],[2,2,1,1],[1,2,2,0]],[[1,1,0,1],[3,2,3,2],[2,2,1,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[3,2,1,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,2,1,1],[2,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,2,1,1],[1,3,2,0]],[[1,1,0,1],[2,2,3,2],[2,2,1,1],[1,2,3,0]],[[2,1,0,1],[2,2,3,2],[2,2,1,2],[1,2,0,1]],[[1,1,0,1],[3,2,3,2],[2,2,1,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[3,2,1,2],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[2,2,1,2],[2,2,0,1]],[[1,1,0,1],[2,2,3,2],[2,2,1,2],[1,3,0,1]],[[2,1,0,1],[2,2,3,2],[2,2,1,2],[1,2,1,0]],[[1,1,0,1],[3,2,3,2],[2,2,1,2],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[3,2,1,2],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,2,1,2],[2,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,2,1,2],[1,3,1,0]],[[2,1,0,1],[2,2,3,2],[2,2,2,0],[1,2,1,1]],[[1,1,0,1],[3,2,3,2],[2,2,2,0],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[3,2,2,0],[1,2,1,1]],[[1,1,0,1],[2,2,3,2],[2,2,2,0],[2,2,1,1]],[[1,1,0,1],[2,2,3,2],[2,2,2,0],[1,3,1,1]],[[2,1,0,1],[2,2,3,2],[2,2,2,1],[1,2,0,1]],[[1,1,0,1],[3,2,3,2],[2,2,2,1],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[3,2,2,1],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[2,2,2,1],[2,2,0,1]],[[1,1,0,1],[2,2,3,2],[2,2,2,1],[1,3,0,1]],[[2,1,0,1],[2,2,3,2],[2,2,2,1],[1,2,1,0]],[[1,1,0,1],[3,2,3,2],[2,2,2,1],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[3,2,2,1],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,2,2,1],[2,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,1,1],[0,1,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,1,1],[0,1,3,2],[2,1,3,1],[1,3,2,0]],[[1,2,1,1],[0,1,3,2],[2,1,3,1],[2,2,2,0]],[[1,2,1,1],[0,1,3,2],[2,1,4,1],[1,2,2,0]],[[1,2,1,1],[0,1,3,2],[3,1,3,1],[1,2,2,0]],[[1,2,1,1],[0,1,3,3],[2,1,3,1],[1,2,2,0]],[[1,2,1,1],[0,1,4,2],[2,1,3,1],[1,2,2,0]],[[1,2,1,2],[0,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,2,1,1],[0,1,3,2],[2,1,4,1],[1,2,1,1]],[[1,2,1,1],[0,1,3,3],[2,1,3,1],[1,2,1,1]],[[1,2,1,1],[0,1,4,2],[2,1,3,1],[1,2,1,1]],[[1,2,1,2],[0,1,3,2],[2,1,3,1],[1,2,1,1]],[[1,2,1,1],[0,1,3,2],[2,1,3,0],[1,2,2,2]],[[1,2,1,1],[0,1,3,2],[2,1,3,0],[1,2,3,1]],[[1,2,1,1],[0,1,3,2],[2,1,3,0],[1,3,2,1]],[[1,2,1,1],[0,1,3,2],[2,1,3,0],[2,2,2,1]],[[1,2,1,1],[0,1,3,2],[2,1,4,0],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[3,1,3,0],[1,2,2,1]],[[1,2,1,1],[0,1,3,3],[2,1,3,0],[1,2,2,1]],[[1,2,1,1],[0,1,4,2],[2,1,3,0],[1,2,2,1]],[[1,2,1,2],[0,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[2,1,2,3],[1,2,2,0]],[[1,2,1,1],[0,1,3,3],[2,1,2,2],[1,2,2,0]],[[1,2,1,1],[0,1,4,2],[2,1,2,2],[1,2,2,0]],[[1,2,1,2],[0,1,3,2],[2,1,2,2],[1,2,2,0]],[[1,2,1,1],[0,1,3,2],[2,1,2,2],[1,2,1,2]],[[1,2,1,1],[0,1,3,2],[2,1,2,3],[1,2,1,1]],[[1,2,1,1],[0,1,3,3],[2,1,2,2],[1,2,1,1]],[[1,2,1,1],[0,1,4,2],[2,1,2,2],[1,2,1,1]],[[1,2,1,2],[0,1,3,2],[2,1,2,2],[1,2,1,1]],[[1,2,1,1],[0,1,3,2],[2,1,1,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,2],[2,1,1,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,2],[2,1,1,2],[1,3,2,1]],[[2,1,0,1],[2,2,3,2],[2,2,3,0],[1,2,1,0]],[[1,1,0,1],[3,2,3,2],[2,2,3,0],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[3,2,3,0],[1,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,2,3,0],[2,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,1,1],[0,1,3,2],[2,1,1,2],[2,2,2,1]],[[1,2,1,1],[0,1,3,2],[2,1,1,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[3,1,1,2],[1,2,2,1]],[[1,2,1,1],[0,1,3,3],[2,1,1,2],[1,2,2,1]],[[1,2,1,1],[0,1,4,2],[2,1,1,2],[1,2,2,1]],[[1,2,1,2],[0,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[2,0,3,2],[0,2,2,2]],[[1,2,1,1],[0,1,3,2],[2,0,3,2],[0,2,3,1]],[[1,2,1,1],[0,1,3,2],[2,0,3,3],[0,2,2,1]],[[1,2,1,1],[0,1,3,3],[2,0,3,2],[0,2,2,1]],[[1,2,1,2],[0,1,3,2],[2,0,3,2],[0,2,2,1]],[[1,2,1,1],[0,1,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,1,1],[0,1,3,3],[1,3,3,2],[1,1,0,1]],[[1,2,1,1],[0,1,4,2],[1,3,3,2],[1,1,0,1]],[[1,2,1,2],[0,1,3,2],[1,3,3,2],[1,1,0,1]],[[1,2,1,1],[0,1,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,1,3,2],[1,3,3,1],[2,2,1,0]],[[1,2,1,1],[0,1,3,2],[1,3,4,1],[1,2,1,0]],[[1,2,1,1],[0,1,3,2],[1,4,3,1],[1,2,1,0]],[[1,2,1,1],[0,1,3,3],[1,3,3,1],[1,2,1,0]],[[1,2,1,1],[0,1,4,2],[1,3,3,1],[1,2,1,0]],[[1,2,1,2],[0,1,3,2],[1,3,3,1],[1,2,1,0]],[[1,2,1,1],[0,1,3,2],[1,3,3,1],[1,3,0,1]],[[1,2,1,1],[0,1,3,2],[1,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,1,3,2],[1,3,4,1],[1,2,0,1]],[[1,2,1,1],[0,1,3,2],[1,4,3,1],[1,2,0,1]],[[1,2,1,1],[0,1,3,3],[1,3,3,1],[1,2,0,1]],[[1,2,1,1],[0,1,4,2],[1,3,3,1],[1,2,0,1]],[[1,2,1,2],[0,1,3,2],[1,3,3,1],[1,2,0,1]],[[1,2,1,1],[0,1,3,2],[1,3,3,1],[1,1,3,0]],[[1,2,1,1],[0,1,3,2],[1,3,4,1],[1,1,2,0]],[[1,2,1,1],[0,1,3,2],[1,4,3,1],[1,1,2,0]],[[1,2,1,1],[0,1,3,3],[1,3,3,1],[1,1,2,0]],[[1,2,1,1],[0,1,4,2],[1,3,3,1],[1,1,2,0]],[[1,2,1,2],[0,1,3,2],[1,3,3,1],[1,1,2,0]],[[1,2,1,1],[0,1,3,2],[1,3,4,1],[1,1,1,1]],[[1,2,1,1],[0,1,3,2],[1,4,3,1],[1,1,1,1]],[[1,2,1,1],[0,1,3,3],[1,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,1,4,2],[1,3,3,1],[1,1,1,1]],[[1,2,1,2],[0,1,3,2],[1,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,1,3,2],[1,3,4,1],[1,0,2,1]],[[1,2,1,1],[0,1,3,3],[1,3,3,1],[1,0,2,1]],[[1,2,1,1],[0,1,4,2],[1,3,3,1],[1,0,2,1]],[[1,2,1,2],[0,1,3,2],[1,3,3,1],[1,0,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,0,0],[1,2,2,1]],[[1,1,0,1],[3,2,3,2],[2,3,0,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[3,3,0,0],[1,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,3,0,0],[2,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,3,0,0],[1,3,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,0,1],[3,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[3,3,0,1],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,4,0,1],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,3,0,1],[0,3,2,1]],[[1,1,0,1],[2,2,3,2],[2,3,0,1],[0,2,3,1]],[[1,1,0,1],[2,2,3,2],[2,3,0,1],[0,2,2,2]],[[2,1,0,1],[2,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,1,0,1],[3,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,1,0,1],[2,2,3,2],[3,3,0,1],[1,1,2,1]],[[1,1,0,1],[2,2,3,2],[2,4,0,1],[1,1,2,1]],[[1,1,0,1],[2,2,3,2],[2,3,0,1],[2,1,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,0,1],[1,2,2,0]],[[1,1,0,1],[3,2,3,2],[2,3,0,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[3,3,0,1],[1,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,3,0,1],[2,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,3,0,1],[1,3,2,0]],[[2,1,0,1],[2,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,0,1],[3,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,0,1],[2,2,3,2],[3,3,0,2],[0,1,2,1]],[[1,1,0,1],[2,2,3,2],[2,4,0,2],[0,1,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,1,0,1],[3,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[3,3,0,2],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[2,4,0,2],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[2,3,0,2],[0,3,1,1]],[[2,1,0,1],[2,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,1,0,1],[3,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,1,0,1],[2,2,3,2],[3,3,0,2],[0,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,4,0,2],[0,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,3,0,2],[0,3,2,0]],[[1,1,0,1],[2,2,3,2],[2,3,0,2],[0,2,3,0]],[[2,1,0,1],[2,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,0,1],[3,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[3,3,0,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[2,4,0,2],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[2,3,0,2],[2,0,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,1,0,1],[3,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[3,3,0,2],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[2,4,0,2],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[2,3,0,2],[2,1,1,1]],[[2,1,0,1],[2,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,1,0,1],[3,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,1,0,1],[2,2,3,2],[3,3,0,2],[1,1,2,0]],[[1,1,0,1],[2,2,3,2],[2,4,0,2],[1,1,2,0]],[[1,1,0,1],[2,2,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,1,1],[0,1,3,2],[1,3,3,0],[1,3,1,1]],[[1,2,1,1],[0,1,3,2],[1,3,3,0],[2,2,1,1]],[[1,2,1,1],[0,1,3,2],[1,3,4,0],[1,2,1,1]],[[1,2,1,1],[0,1,3,2],[1,4,3,0],[1,2,1,1]],[[1,2,1,1],[0,1,3,3],[1,3,3,0],[1,2,1,1]],[[1,2,1,1],[0,1,4,2],[1,3,3,0],[1,2,1,1]],[[1,2,1,2],[0,1,3,2],[1,3,3,0],[1,2,1,1]],[[1,2,1,1],[0,1,3,2],[1,3,3,0],[1,1,2,2]],[[2,1,0,1],[2,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,0,1],[3,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[3,3,1,0],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,4,1,0],[0,2,2,1]],[[1,1,0,1],[2,2,3,2],[2,3,1,0],[0,3,2,1]],[[1,1,0,1],[2,2,3,2],[2,3,1,0],[0,2,3,1]],[[1,1,0,1],[2,2,3,2],[2,3,1,0],[0,2,2,2]],[[2,1,0,1],[2,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,1,0,1],[3,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,1,0,1],[2,2,3,2],[3,3,1,0],[1,1,2,1]],[[1,1,0,1],[2,2,3,2],[2,4,1,0],[1,1,2,1]],[[1,1,0,1],[2,2,3,2],[2,3,1,0],[2,1,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,0,1],[3,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,0,1],[2,2,3,2],[3,3,1,1],[0,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,4,1,1],[0,2,2,0]],[[1,1,0,1],[2,2,3,2],[2,3,1,1],[0,3,2,0]],[[1,1,0,1],[2,2,3,2],[2,3,1,1],[0,2,3,0]],[[2,1,0,1],[2,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,0,1],[3,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,0,1],[2,2,3,2],[3,3,1,1],[1,1,2,0]],[[1,1,0,1],[2,2,3,2],[2,4,1,1],[1,1,2,0]],[[1,1,0,1],[2,2,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,1,1],[0,1,3,2],[1,3,3,0],[1,1,3,1]],[[1,2,1,1],[0,1,3,2],[1,3,4,0],[1,1,2,1]],[[1,2,1,1],[0,1,3,2],[1,4,3,0],[1,1,2,1]],[[1,2,1,1],[0,1,3,3],[1,3,3,0],[1,1,2,1]],[[1,2,1,1],[0,1,4,2],[1,3,3,0],[1,1,2,1]],[[1,2,1,2],[0,1,3,2],[1,3,3,0],[1,1,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,0,1],[3,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,0,1],[2,2,3,2],[3,3,1,2],[0,1,1,1]],[[1,1,0,1],[2,2,3,2],[2,4,1,2],[0,1,1,1]],[[2,1,0,1],[2,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,1,0,1],[3,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,1,0,1],[2,2,3,2],[3,3,1,2],[0,1,2,0]],[[1,1,0,1],[2,2,3,2],[2,4,1,2],[0,1,2,0]],[[2,1,0,1],[2,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,0,1],[3,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[3,3,1,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[2,4,1,2],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[2,3,1,2],[0,3,0,1]],[[2,1,0,1],[2,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,1,0,1],[3,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[3,3,1,2],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,4,1,2],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,3,1,2],[0,3,1,0]],[[2,1,0,1],[2,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,0,1],[3,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,2],[3,3,1,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,2],[2,4,1,2],[1,0,1,1]],[[1,1,0,1],[2,2,3,2],[2,3,1,2],[2,0,1,1]],[[2,1,0,1],[2,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,1,0,1],[3,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[3,3,1,2],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[2,4,1,2],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[2,3,1,2],[2,0,2,0]],[[2,1,0,1],[2,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,1,0,1],[3,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,2],[3,3,1,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,2],[2,4,1,2],[1,1,0,1]],[[1,1,0,1],[2,2,3,2],[2,3,1,2],[2,1,0,1]],[[2,1,0,1],[2,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,1,0,1],[3,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[3,3,1,2],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[2,4,1,2],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,1,1],[0,1,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,1,1],[0,1,3,3],[1,3,2,2],[1,2,1,0]],[[1,2,1,1],[0,1,4,2],[1,3,2,2],[1,2,1,0]],[[1,2,1,2],[0,1,3,2],[1,3,2,2],[1,2,1,0]],[[1,2,1,1],[0,1,3,2],[1,3,2,2],[1,2,0,2]],[[1,2,1,1],[0,1,3,2],[1,3,2,3],[1,2,0,1]],[[1,2,1,1],[0,1,3,3],[1,3,2,2],[1,2,0,1]],[[1,2,1,1],[0,1,4,2],[1,3,2,2],[1,2,0,1]],[[1,2,1,2],[0,1,3,2],[1,3,2,2],[1,2,0,1]],[[2,1,0,1],[2,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,0,1],[3,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,0,1],[2,2,3,2],[3,3,1,2],[1,2,0,0]],[[1,1,0,1],[2,2,3,2],[2,4,1,2],[1,2,0,0]],[[1,1,0,1],[2,2,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,1,1],[0,1,3,2],[1,3,2,3],[1,1,2,0]],[[1,2,1,1],[0,1,3,3],[1,3,2,2],[1,1,2,0]],[[1,2,1,1],[0,1,4,2],[1,3,2,2],[1,1,2,0]],[[1,2,1,2],[0,1,3,2],[1,3,2,2],[1,1,2,0]],[[1,2,1,1],[0,1,3,2],[1,3,2,2],[1,1,1,2]],[[1,2,1,1],[0,1,3,2],[1,3,2,3],[1,1,1,1]],[[1,2,1,1],[0,1,3,3],[1,3,2,2],[1,1,1,1]],[[1,2,1,1],[0,1,4,2],[1,3,2,2],[1,1,1,1]],[[1,2,1,2],[0,1,3,2],[1,3,2,2],[1,1,1,1]],[[1,2,1,1],[0,1,3,2],[1,3,2,2],[1,0,2,2]],[[1,2,1,1],[0,1,3,2],[1,3,2,3],[1,0,2,1]],[[1,2,1,1],[0,1,3,3],[1,3,2,2],[1,0,2,1]],[[1,2,1,1],[0,1,4,2],[1,3,2,2],[1,0,2,1]],[[1,2,1,2],[0,1,3,2],[1,3,2,2],[1,0,2,1]],[[1,2,1,1],[0,1,3,2],[1,3,2,1],[1,2,3,0]],[[1,2,1,1],[0,1,3,2],[1,3,2,1],[1,3,2,0]],[[2,1,0,1],[2,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,0,1],[3,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,0,1],[2,2,3,2],[3,3,2,0],[0,1,2,1]],[[1,1,0,1],[2,2,3,2],[2,4,2,0],[0,1,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,1,0,1],[3,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[3,3,2,0],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[2,4,2,0],[0,2,1,1]],[[1,1,0,1],[2,2,3,2],[2,3,2,0],[0,3,1,1]],[[2,1,0,1],[2,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,1,0,1],[3,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[3,3,2,0],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[2,4,2,0],[1,0,2,1]],[[1,1,0,1],[2,2,3,2],[2,3,2,0],[2,0,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,0,1],[3,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[3,3,2,0],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[2,4,2,0],[1,1,1,1]],[[1,1,0,1],[2,2,3,2],[2,3,2,0],[2,1,1,1]],[[2,1,0,1],[2,2,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,0,1],[3,2,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[3,3,2,0],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[2,4,2,0],[1,2,0,1]],[[1,1,0,1],[2,2,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,1,1],[0,1,3,2],[1,3,2,1],[2,2,2,0]],[[1,2,1,1],[0,1,3,2],[1,4,2,1],[1,2,2,0]],[[1,2,1,1],[0,1,3,2],[1,3,2,0],[1,2,2,2]],[[1,2,1,1],[0,1,3,2],[1,3,2,0],[1,2,3,1]],[[1,2,1,1],[0,1,3,2],[1,3,2,0],[1,3,2,1]],[[1,2,1,1],[0,1,3,2],[1,3,2,0],[2,2,2,1]],[[1,2,1,1],[0,1,3,2],[1,4,2,0],[1,2,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,0,1],[3,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,0,1],[2,2,3,2],[3,3,2,1],[0,1,1,1]],[[1,1,0,1],[2,2,3,2],[2,4,2,1],[0,1,1,1]],[[2,1,0,1],[2,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,1,0,1],[3,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,1,0,1],[2,2,3,2],[3,3,2,1],[0,1,2,0]],[[1,1,0,1],[2,2,3,2],[2,4,2,1],[0,1,2,0]],[[2,1,0,1],[2,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,0,1],[3,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[3,3,2,1],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[2,4,2,1],[0,2,0,1]],[[1,1,0,1],[2,2,3,2],[2,3,2,1],[0,3,0,1]],[[2,1,0,1],[2,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,0,1],[3,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[3,3,2,1],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,4,2,1],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,3,2,1],[0,3,1,0]],[[2,1,0,1],[2,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,0,1],[3,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,0,1],[2,2,3,2],[3,3,2,1],[1,0,1,1]],[[1,1,0,1],[2,2,3,2],[2,4,2,1],[1,0,1,1]],[[1,1,0,1],[2,2,3,2],[2,3,2,1],[2,0,1,1]],[[2,1,0,1],[2,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,0,1],[3,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[3,3,2,1],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[2,4,2,1],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[2,3,2,1],[2,0,2,0]],[[2,1,0,1],[2,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,0,1],[3,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,0,1],[2,2,3,2],[3,3,2,1],[1,1,0,1]],[[1,1,0,1],[2,2,3,2],[2,4,2,1],[1,1,0,1]],[[1,1,0,1],[2,2,3,2],[2,3,2,1],[2,1,0,1]],[[2,1,0,1],[2,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,1,0,1],[3,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[3,3,2,1],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[2,4,2,1],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,1,1],[0,1,3,2],[1,3,1,2],[1,1,2,2]],[[1,2,1,1],[0,1,3,2],[1,3,1,2],[1,1,3,1]],[[1,2,1,1],[0,1,3,2],[1,3,1,3],[1,1,2,1]],[[1,2,1,1],[0,1,3,3],[1,3,1,2],[1,1,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,0,1],[3,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,0,1],[2,2,3,2],[3,3,2,1],[1,2,0,0]],[[1,1,0,1],[2,2,3,2],[2,4,2,1],[1,2,0,0]],[[1,1,0,1],[2,2,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,1,1],[0,1,4,2],[1,3,1,2],[1,1,2,1]],[[1,2,1,2],[0,1,3,2],[1,3,1,2],[1,1,2,1]],[[1,2,1,1],[0,1,3,2],[1,3,0,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,2],[1,3,0,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,2],[1,3,0,2],[1,3,2,1]],[[1,2,1,1],[0,1,3,2],[1,3,0,2],[2,2,2,1]],[[1,2,1,1],[0,1,3,2],[1,3,0,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[1,4,0,2],[1,2,2,1]],[[1,2,1,1],[0,1,3,3],[1,3,0,2],[1,2,2,1]],[[1,2,1,1],[0,1,4,2],[1,3,0,2],[1,2,2,1]],[[1,2,1,2],[0,1,3,2],[1,3,0,2],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,1,1],[0,1,3,2],[1,2,3,1],[1,3,2,0]],[[1,2,1,1],[0,1,3,2],[1,2,3,1],[2,2,2,0]],[[1,2,1,1],[0,1,3,2],[1,2,4,1],[1,2,2,0]],[[1,2,1,1],[0,1,3,3],[1,2,3,1],[1,2,2,0]],[[1,2,1,1],[0,1,4,2],[1,2,3,1],[1,2,2,0]],[[1,2,1,2],[0,1,3,2],[1,2,3,1],[1,2,2,0]],[[1,2,1,1],[0,1,3,2],[1,2,4,1],[1,2,1,1]],[[1,2,1,1],[0,1,3,3],[1,2,3,1],[1,2,1,1]],[[1,2,1,1],[0,1,4,2],[1,2,3,1],[1,2,1,1]],[[1,2,1,2],[0,1,3,2],[1,2,3,1],[1,2,1,1]],[[1,2,1,1],[0,1,3,2],[1,2,3,0],[1,2,2,2]],[[1,2,1,1],[0,1,3,2],[1,2,3,0],[1,2,3,1]],[[1,2,1,1],[0,1,3,2],[1,2,3,0],[1,3,2,1]],[[1,2,1,1],[0,1,3,2],[1,2,3,0],[2,2,2,1]],[[1,2,1,1],[0,1,3,2],[1,2,4,0],[1,2,2,1]],[[1,2,1,1],[0,1,3,3],[1,2,3,0],[1,2,2,1]],[[1,2,1,1],[0,1,4,2],[1,2,3,0],[1,2,2,1]],[[1,2,1,2],[0,1,3,2],[1,2,3,0],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[1,2,2,3],[1,2,2,0]],[[1,2,1,1],[0,1,3,3],[1,2,2,2],[1,2,2,0]],[[1,2,1,1],[0,1,4,2],[1,2,2,2],[1,2,2,0]],[[1,2,1,2],[0,1,3,2],[1,2,2,2],[1,2,2,0]],[[1,2,1,1],[0,1,3,2],[1,2,2,2],[1,2,1,2]],[[1,2,1,1],[0,1,3,2],[1,2,2,3],[1,2,1,1]],[[1,2,1,1],[0,1,3,3],[1,2,2,2],[1,2,1,1]],[[1,2,1,1],[0,1,4,2],[1,2,2,2],[1,2,1,1]],[[1,2,1,2],[0,1,3,2],[1,2,2,2],[1,2,1,1]],[[1,2,1,1],[0,1,3,2],[1,2,1,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,2],[1,2,1,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,2],[1,2,1,2],[1,3,2,1]],[[1,2,1,1],[0,1,3,2],[1,2,1,2],[2,2,2,1]],[[1,2,1,1],[0,1,3,2],[1,2,1,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,3],[1,2,1,2],[1,2,2,1]],[[1,2,1,1],[0,1,4,2],[1,2,1,2],[1,2,2,1]],[[1,2,1,2],[0,1,3,2],[1,2,1,2],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[1,0,3,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,2],[1,0,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,2],[1,0,3,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,3],[1,0,3,2],[1,2,2,1]],[[1,2,1,2],[0,1,3,2],[1,0,3,2],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,1,1],[0,1,3,2],[0,3,3,1],[1,3,2,0]],[[1,2,1,1],[0,1,3,2],[0,3,4,1],[1,2,2,0]],[[1,2,1,1],[0,1,3,3],[0,3,3,1],[1,2,2,0]],[[1,2,1,1],[0,1,4,2],[0,3,3,1],[1,2,2,0]],[[1,2,1,2],[0,1,3,2],[0,3,3,1],[1,2,2,0]],[[1,2,1,1],[0,1,3,2],[0,3,4,1],[1,2,1,1]],[[1,2,1,1],[0,1,3,3],[0,3,3,1],[1,2,1,1]],[[1,2,1,1],[0,1,4,2],[0,3,3,1],[1,2,1,1]],[[1,2,1,2],[0,1,3,2],[0,3,3,1],[1,2,1,1]],[[1,2,1,1],[0,1,3,2],[0,3,3,0],[1,2,2,2]],[[1,2,1,1],[0,1,3,2],[0,3,3,0],[1,2,3,1]],[[1,2,1,1],[0,1,3,2],[0,3,3,0],[1,3,2,1]],[[1,2,1,1],[0,1,3,2],[0,3,4,0],[1,2,2,1]],[[1,2,1,1],[0,1,3,3],[0,3,3,0],[1,2,2,1]],[[1,2,1,1],[0,1,4,2],[0,3,3,0],[1,2,2,1]],[[1,2,1,2],[0,1,3,2],[0,3,3,0],[1,2,2,1]],[[1,2,1,1],[0,1,3,2],[0,3,2,3],[1,2,2,0]],[[1,2,1,1],[0,1,3,3],[0,3,2,2],[1,2,2,0]],[[1,2,1,1],[0,1,4,2],[0,3,2,2],[1,2,2,0]],[[1,2,1,2],[0,1,3,2],[0,3,2,2],[1,2,2,0]],[[1,2,1,1],[0,1,3,2],[0,3,2,2],[1,2,1,2]],[[1,2,1,1],[0,1,3,2],[0,3,2,3],[1,2,1,1]],[[1,2,1,1],[0,1,3,3],[0,3,2,2],[1,2,1,1]],[[1,2,1,1],[0,1,4,2],[0,3,2,2],[1,2,1,1]],[[1,2,1,2],[0,1,3,2],[0,3,2,2],[1,2,1,1]],[[1,2,1,1],[0,1,3,2],[0,3,1,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,2],[0,3,1,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,2],[0,3,1,2],[1,3,2,1]],[[1,2,1,1],[0,1,3,2],[0,3,1,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,3],[0,3,1,2],[1,2,2,1]],[[1,2,1,1],[0,1,4,2],[0,3,1,2],[1,2,2,1]],[[1,2,1,2],[0,1,3,2],[0,3,1,2],[1,2,2,1]],[[2,1,0,1],[2,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,0,1],[3,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,0,1],[2,2,3,2],[3,3,3,0],[0,1,2,0]],[[1,1,0,1],[2,2,3,2],[2,4,3,0],[0,1,2,0]],[[2,1,0,1],[2,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,0,1],[3,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[3,3,3,0],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,4,3,0],[0,2,1,0]],[[1,1,0,1],[2,2,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,1,3,1],[2,4,3,2],[1,2,0,0]],[[2,1,0,1],[2,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,0,1],[3,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[3,3,3,0],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[2,4,3,0],[1,0,2,0]],[[1,1,0,1],[2,2,3,2],[2,3,3,0],[2,0,2,0]],[[2,1,0,1],[2,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,0,1],[3,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[3,3,3,0],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[2,4,3,0],[1,1,1,0]],[[1,1,0,1],[2,2,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,1,1],[0,1,3,1],[3,3,3,2],[1,2,0,0]],[[2,1,0,1],[2,2,3,2],[2,3,3,0],[1,2,0,0]],[[1,1,0,1],[3,2,3,2],[2,3,3,0],[1,2,0,0]],[[1,1,0,1],[2,2,3,2],[3,3,3,0],[1,2,0,0]],[[1,1,0,1],[2,2,3,2],[2,4,3,0],[1,2,0,0]],[[1,1,0,1],[2,2,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,1,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,1,3,1],[2,3,4,2],[1,1,1,0]],[[1,2,1,1],[0,1,3,1],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[0,1,3,1],[3,3,3,2],[1,1,1,0]],[[1,2,1,1],[0,1,4,1],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[2,1,0,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,3],[1,1,0,1]],[[1,2,1,1],[0,1,3,1],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[0,1,3,1],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[0,1,3,1],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[0,1,4,1],[2,3,3,2],[1,1,0,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[2,0,2,0]],[[1,2,1,1],[0,1,3,1],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[0,1,3,1],[2,3,4,2],[1,0,2,0]],[[1,2,1,1],[0,1,3,1],[2,4,3,2],[1,0,2,0]],[[1,2,1,1],[0,1,3,1],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,1,4,1],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[1,0,1,2]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,3],[1,0,1,1]],[[1,2,1,1],[0,1,3,1],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[0,1,3,1],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[0,1,3,1],[3,3,3,2],[1,0,1,1]],[[2,1,0,1],[2,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,0,1],[3,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,0,1],[2,2,3,2],[3,3,3,1],[0,2,0,0]],[[1,1,0,1],[2,2,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,1,1],[0,1,4,1],[2,3,3,2],[1,0,1,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,1,3,1],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[0,1,3,1],[2,3,4,2],[0,2,1,0]],[[1,2,1,1],[0,1,3,1],[2,4,3,2],[0,2,1,0]],[[1,2,1,1],[0,1,3,1],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,1,4,1],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[0,1,3,1],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[0,1,3,1],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[0,1,3,1],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[0,1,4,1],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[0,1,3,1],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[0,1,3,1],[2,3,4,2],[0,1,2,0]],[[1,2,1,1],[0,1,3,1],[2,4,3,2],[0,1,2,0]],[[1,2,1,1],[0,1,3,1],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,1,4,1],[2,3,3,2],[0,1,2,0]],[[2,1,0,1],[2,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,0,1],[3,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,0,1],[2,2,3,2],[3,3,3,1],[1,1,0,0]],[[1,1,0,1],[2,2,3,2],[2,4,3,1],[1,1,0,0]],[[1,1,0,1],[2,2,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[0,1,1,2]],[[1,2,1,1],[0,1,3,1],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[0,1,3,1],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[0,1,3,1],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[0,1,3,1],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,1,4,1],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,2],[0,0,2,2]],[[1,2,1,1],[0,1,3,1],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[0,1,3,1],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[0,1,4,1],[2,3,3,2],[0,0,2,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[0,1,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,1,1],[0,1,3,1],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[0,1,3,1],[3,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,1,4,1],[2,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[0,1,3,1],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,1],[2,0,2,1]],[[1,2,1,1],[0,1,3,1],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[0,1,3,1],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[0,1,3,1],[3,3,3,1],[1,0,2,1]],[[1,2,1,1],[0,1,4,1],[2,3,3,1],[1,0,2,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[0,1,3,1],[2,3,4,1],[0,2,1,1]],[[1,2,1,1],[0,1,3,1],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[0,1,3,1],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[0,1,4,1],[2,3,3,1],[0,2,1,1]],[[1,2,1,1],[0,1,3,1],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[0,1,3,1],[2,3,3,1],[0,1,3,1]],[[1,2,1,1],[0,1,3,1],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[0,1,3,1],[2,4,3,1],[0,1,2,1]],[[1,2,1,1],[0,1,3,1],[3,3,3,1],[0,1,2,1]],[[1,2,1,1],[0,1,4,1],[2,3,3,1],[0,1,2,1]],[[1,2,1,1],[0,1,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,1,3,1],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[0,1,3,1],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[0,1,3,1],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[0,1,3,1],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[0,1,3,1],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[0,1,3,1],[2,3,2,2],[0,2,3,0]],[[1,2,1,1],[0,1,3,1],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[0,1,3,1],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[0,1,3,1],[3,3,2,2],[0,2,2,0]],[[1,2,1,1],[0,1,3,1],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[0,1,3,1],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[0,1,3,1],[2,3,2,3],[0,1,2,1]],[[1,2,1,1],[0,1,3,1],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[0,1,3,1],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[0,1,3,1],[3,3,2,1],[1,1,2,1]],[[1,2,1,1],[0,1,3,1],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[0,1,3,1],[2,3,2,1],[0,2,3,1]],[[1,2,1,1],[0,1,3,1],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[0,1,3,1],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[0,1,3,1],[3,3,2,1],[0,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,3,1,2],[2,1,2,1]],[[1,2,1,1],[0,1,3,1],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[0,1,3,1],[3,3,1,2],[1,1,2,1]],[[1,2,1,1],[0,1,3,1],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[0,1,3,1],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[0,1,3,1],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[0,1,3,1],[2,3,1,3],[0,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[0,1,3,1],[3,3,1,2],[0,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,1,3,1],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[0,1,3,1],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[0,1,3,1],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[0,1,3,1],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[0,1,3,1],[3,2,3,2],[1,2,0,1]],[[1,2,1,1],[0,1,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[0,1,3,1],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[0,1,3,1],[2,2,3,3],[0,2,2,0]],[[1,2,1,1],[0,1,3,1],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[0,1,4,1],[2,2,3,2],[0,2,2,0]],[[1,2,1,1],[0,1,3,1],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[0,1,3,1],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[0,1,3,1],[2,2,4,2],[0,2,1,1]],[[1,2,1,1],[0,1,4,1],[2,2,3,2],[0,2,1,1]],[[1,2,1,1],[0,1,3,1],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[0,1,3,1],[2,2,3,1],[2,2,1,1]],[[1,2,1,1],[0,1,3,1],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[0,1,3,1],[2,2,3,1],[0,2,2,2]],[[1,2,1,1],[0,1,3,1],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[0,1,3,1],[2,2,3,1],[0,3,2,1]],[[1,2,1,1],[0,1,3,1],[2,2,4,1],[0,2,2,1]],[[1,2,1,1],[0,1,4,1],[2,2,3,1],[0,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[0,1,3,1],[2,2,2,2],[1,3,2,0]],[[1,2,1,1],[0,1,3,1],[2,2,2,2],[2,2,2,0]],[[1,2,1,1],[0,1,3,1],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[0,1,3,1],[2,2,2,2],[0,2,2,2]],[[1,2,1,1],[0,1,3,1],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[0,1,3,1],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[0,1,3,1],[2,2,2,3],[0,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[0,1,3,1],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[0,1,3,1],[3,2,2,1],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[2,2,1,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[2,2,1,2],[1,3,2,1]],[[1,2,1,1],[0,1,3,1],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,2,1,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[3,2,1,2],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,1,3,2],[1,2,3,0]],[[1,2,1,1],[0,1,3,1],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[0,1,3,1],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[0,1,3,1],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[0,1,3,1],[2,1,4,2],[1,2,2,0]],[[1,2,1,1],[0,1,3,1],[3,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,1,4,1],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,1,3,1],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[0,1,3,1],[2,1,3,3],[1,2,1,1]],[[1,2,1,1],[0,1,3,1],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[0,1,4,1],[2,1,3,2],[1,2,1,1]],[[1,2,1,1],[0,1,3,1],[2,1,3,2],[0,2,2,2]],[[1,2,1,1],[0,1,3,1],[2,1,3,2],[0,2,3,1]],[[1,2,1,1],[0,1,3,1],[2,1,3,3],[0,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[0,1,3,1],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[3,1,3,1],[1,2,2,1]],[[1,2,1,1],[0,1,4,1],[2,1,3,1],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[2,1,2,2],[1,3,2,1]],[[1,2,1,1],[0,1,3,1],[2,1,2,2],[2,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[3,1,2,2],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[2,0,3,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[2,0,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[2,0,3,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,1,3,1],[1,3,3,2],[2,2,1,0]],[[1,2,1,1],[0,1,3,1],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[0,1,3,1],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[0,1,3,1],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[0,1,4,1],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[0,1,3,1],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[0,1,3,1],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[0,1,3,1],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[0,1,3,1],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[0,1,3,1],[1,3,4,2],[1,2,0,1]],[[1,2,1,1],[0,1,3,1],[1,4,3,2],[1,2,0,1]],[[1,2,1,1],[0,1,4,1],[1,3,3,2],[1,2,0,1]],[[1,2,1,1],[0,1,3,1],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[0,1,3,1],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[0,1,3,1],[1,3,4,2],[1,1,2,0]],[[1,2,1,1],[0,1,3,1],[1,4,3,2],[1,1,2,0]],[[1,2,1,1],[0,1,4,1],[1,3,3,2],[1,1,2,0]],[[1,2,1,1],[0,1,3,1],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[0,1,3,1],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[0,1,3,1],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[0,1,3,1],[1,4,3,2],[1,1,1,1]],[[1,2,1,1],[0,1,4,1],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[0,1,3,1],[1,3,3,2],[1,0,2,2]],[[1,2,1,1],[0,1,3,1],[1,3,3,3],[1,0,2,1]],[[1,2,1,1],[0,1,3,1],[1,3,4,2],[1,0,2,1]],[[1,2,1,1],[0,1,4,1],[1,3,3,2],[1,0,2,1]],[[1,2,1,1],[0,1,3,1],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[0,1,3,1],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[0,1,3,1],[1,3,4,1],[1,2,1,1]],[[1,2,1,1],[0,1,3,1],[1,4,3,1],[1,2,1,1]],[[1,2,1,1],[0,1,4,1],[1,3,3,1],[1,2,1,1]],[[1,2,1,1],[0,1,3,1],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[0,1,3,1],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[0,1,3,1],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[0,1,3,1],[1,4,3,1],[1,1,2,1]],[[1,2,1,1],[0,1,4,1],[1,3,3,1],[1,1,2,1]],[[1,2,1,1],[0,1,3,1],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[0,1,3,1],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[0,1,3,1],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[0,1,3,1],[1,4,2,2],[1,2,2,0]],[[1,2,1,1],[0,1,3,1],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[0,1,3,1],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[0,1,3,1],[1,3,2,3],[1,1,2,1]],[[1,2,1,1],[0,1,3,1],[1,3,2,1],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[1,3,2,1],[1,3,2,1]],[[1,2,1,1],[0,1,3,1],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[0,1,3,1],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[1,3,1,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[0,1,3,1],[1,3,1,2],[2,2,2,1]],[[1,2,1,1],[0,1,3,1],[1,3,1,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[1,4,1,2],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[0,1,3,1],[1,2,3,2],[1,3,2,0]],[[1,2,1,1],[0,1,3,1],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[0,1,3,1],[1,2,3,3],[1,2,2,0]],[[1,2,1,1],[0,1,3,1],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[0,1,4,1],[1,2,3,2],[1,2,2,0]],[[1,2,1,1],[0,1,3,1],[1,2,3,2],[1,2,1,2]],[[1,2,1,1],[0,1,3,1],[1,2,3,3],[1,2,1,1]],[[1,1,0,1],[2,3,0,0],[1,4,3,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,0],[1,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,3,0,0],[1,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,3,0,0],[1,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,0,0],[1,3,3,2],[1,2,2,2]],[[2,1,0,1],[2,3,0,0],[2,2,3,2],[1,2,2,1]],[[1,1,0,1],[3,3,0,0],[2,2,3,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,0],[3,2,3,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,0],[2,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,3,0,0],[2,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,3,0,0],[2,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,0,0],[2,2,3,2],[1,2,2,2]],[[1,1,0,1],[3,3,0,0],[2,3,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,0],[3,3,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,0],[2,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,0,0],[2,3,2,2],[1,3,2,1]],[[2,1,0,1],[2,3,0,0],[2,3,3,2],[0,2,2,1]],[[1,1,0,1],[3,3,0,0],[2,3,3,2],[0,2,2,1]],[[1,1,0,1],[2,3,0,0],[3,3,3,2],[0,2,2,1]],[[1,1,0,1],[2,3,0,0],[2,4,3,2],[0,2,2,1]],[[1,1,0,1],[2,3,0,0],[2,3,3,2],[0,3,2,1]],[[1,1,0,1],[2,3,0,0],[2,3,3,2],[0,2,3,1]],[[1,1,0,1],[2,3,0,0],[2,3,3,2],[0,2,2,2]],[[2,1,0,1],[2,3,0,0],[2,3,3,2],[1,1,2,1]],[[1,1,0,1],[3,3,0,0],[2,3,3,2],[1,1,2,1]],[[1,1,0,1],[2,3,0,0],[3,3,3,2],[1,1,2,1]],[[1,1,0,1],[2,3,0,0],[2,4,3,2],[1,1,2,1]],[[1,1,0,1],[2,3,0,0],[2,3,3,2],[2,1,2,1]],[[1,1,0,1],[2,3,0,1],[0,4,3,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,1],[0,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,3,0,1],[0,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,3,0,1],[0,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,0,1],[0,3,3,2],[1,2,2,2]],[[1,1,0,1],[2,3,0,1],[1,4,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,1],[1,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,0,1],[1,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,0,1],[1,3,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,0,1],[1,3,3,1],[1,2,2,2]],[[1,1,0,1],[2,3,0,1],[1,4,3,2],[0,2,2,1]],[[1,1,0,1],[2,3,0,1],[1,3,3,2],[0,3,2,1]],[[1,1,0,1],[2,3,0,1],[1,3,3,2],[0,2,3,1]],[[1,1,0,1],[2,3,0,1],[1,3,3,2],[0,2,2,2]],[[1,1,0,1],[2,3,0,1],[1,4,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,0,1],[1,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,0,1],[1,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,0,1],[1,3,3,2],[1,2,3,0]],[[2,1,0,1],[2,3,0,1],[2,2,3,1],[1,2,2,1]],[[1,1,0,1],[3,3,0,1],[2,2,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,1],[3,2,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,1],[2,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,0,1],[2,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,0,1],[2,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,0,1],[2,2,3,1],[1,2,2,2]],[[2,1,0,1],[2,3,0,1],[2,2,3,2],[1,2,2,0]],[[1,1,0,1],[3,3,0,1],[2,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,0,1],[3,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,0,1],[2,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,0,1],[2,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,0,1],[2,2,3,2],[1,2,3,0]],[[1,1,0,1],[3,3,0,1],[2,3,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,1],[3,3,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,1],[2,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,3,0,1],[2,3,2,1],[1,3,2,1]],[[1,1,0,1],[3,3,0,1],[2,3,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,0,1],[3,3,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,0,1],[2,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,3,0,1],[2,3,2,2],[1,3,2,0]],[[1,1,0,1],[3,3,0,1],[2,3,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,0,1],[3,3,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,0,1],[2,3,3,0],[2,2,2,1]],[[1,1,0,1],[2,3,0,1],[2,3,3,0],[1,3,2,1]],[[2,1,0,1],[2,3,0,1],[2,3,3,1],[0,2,2,1]],[[1,1,0,1],[3,3,0,1],[2,3,3,1],[0,2,2,1]],[[1,1,0,1],[2,3,0,1],[3,3,3,1],[0,2,2,1]],[[1,1,0,1],[2,3,0,1],[2,4,3,1],[0,2,2,1]],[[1,1,0,1],[2,3,0,1],[2,3,3,1],[0,3,2,1]],[[1,1,0,1],[2,3,0,1],[2,3,3,1],[0,2,3,1]],[[1,1,0,1],[2,3,0,1],[2,3,3,1],[0,2,2,2]],[[2,1,0,1],[2,3,0,1],[2,3,3,1],[1,1,2,1]],[[1,1,0,1],[3,3,0,1],[2,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,0,1],[3,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,0,1],[2,4,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,0,1],[2,3,3,1],[2,1,2,1]],[[2,1,0,1],[2,3,0,1],[2,3,3,2],[0,2,2,0]],[[1,1,0,1],[3,3,0,1],[2,3,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,0,1],[3,3,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,0,1],[2,4,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,0,1],[2,3,3,2],[0,3,2,0]],[[1,1,0,1],[2,3,0,1],[2,3,3,2],[0,2,3,0]],[[2,1,0,1],[2,3,0,1],[2,3,3,2],[1,1,2,0]],[[1,1,0,1],[3,3,0,1],[2,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,0,1],[3,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,0,1],[2,4,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,0,1],[2,3,3,2],[2,1,2,0]],[[1,2,1,1],[0,1,3,1],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[0,1,4,1],[1,2,3,2],[1,2,1,1]],[[1,2,1,1],[0,1,3,1],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[0,1,3,1],[1,2,3,1],[2,2,2,1]],[[1,2,1,1],[0,1,3,1],[1,2,4,1],[1,2,2,1]],[[1,2,1,1],[0,1,4,1],[1,2,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[0,2,3,3],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[0,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,3,0,2],[0,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,3,0,2],[0,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,0,2],[0,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,3,0,2],[0,4,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[0,3,2,3],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[0,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,0,2],[0,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,0,2],[0,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,0,2],[0,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,3,0,2],[0,4,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[0,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,0,2],[0,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,0,2],[0,3,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,0,2],[0,3,3,1],[1,2,2,2]],[[1,1,0,1],[2,3,0,2],[0,3,3,3],[1,1,2,1]],[[1,1,0,1],[2,3,0,2],[0,3,3,2],[1,1,3,1]],[[1,1,0,1],[2,3,0,2],[0,3,3,2],[1,1,2,2]],[[1,1,0,1],[2,3,0,2],[0,4,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,0,2],[0,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,0,2],[0,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,0,2],[0,3,3,2],[1,2,3,0]],[[1,1,0,1],[2,3,0,2],[1,2,3,3],[0,2,2,1]],[[1,1,0,1],[2,3,0,2],[1,2,3,2],[0,3,2,1]],[[1,1,0,1],[2,3,0,2],[1,2,3,2],[0,2,3,1]],[[1,1,0,1],[2,3,0,2],[1,2,3,2],[0,2,2,2]],[[1,1,0,1],[2,3,0,2],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,0,2],[1,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,3,0,2],[1,4,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,3,0,2],[1,3,2,1],[1,2,2,2]],[[1,1,0,1],[2,3,0,2],[1,4,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,2,3],[0,2,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,2,2],[0,3,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,2,2],[0,2,3,1]],[[1,1,0,1],[2,3,0,2],[1,3,2,2],[0,2,2,2]],[[1,1,0,1],[2,3,0,2],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,0,2],[1,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,3,0,2],[1,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,3,0,2],[1,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,3,0,2],[1,4,3,1],[0,2,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,1],[0,3,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,1],[0,2,3,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,1],[0,2,2,2]],[[1,1,0,1],[2,3,0,2],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,3],[0,1,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,2],[0,1,3,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,2],[0,1,2,2]],[[1,1,0,1],[2,3,0,2],[1,4,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,0,2],[1,3,3,2],[0,3,2,0]],[[1,1,0,1],[2,3,0,2],[1,3,3,2],[0,2,3,0]],[[1,1,0,1],[2,3,0,2],[1,3,3,3],[1,0,2,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,2],[1,0,3,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,2],[1,0,2,2]],[[1,1,0,1],[2,3,0,2],[1,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,3,0,2],[1,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,3,0,2],[1,4,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,0,2],[1,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,1,3,1],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[0,1,3,1],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[0,1,3,1],[1,2,2,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[1,1,3,2],[1,2,2,2]],[[2,1,0,1],[2,3,0,2],[2,0,3,2],[1,2,2,1]],[[1,1,0,1],[3,3,0,2],[2,0,3,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[3,0,3,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,0,3,3],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,0,3,2],[2,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,0,3,2],[1,3,2,1]],[[1,1,0,1],[2,3,0,2],[2,0,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,0,2],[2,0,3,2],[1,2,2,2]],[[2,1,0,1],[2,3,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[3,3,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[3,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,2,1,3],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,2,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,2,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,0,2],[2,2,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,0,2],[2,2,1,2],[1,2,2,2]],[[2,1,0,1],[2,3,0,2],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[3,3,0,2],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[3,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,2,2,1],[2,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,2,2,1],[1,3,2,1]],[[1,1,0,1],[2,3,0,2],[2,2,2,1],[1,2,3,1]],[[1,1,0,1],[2,3,0,2],[2,2,2,1],[1,2,2,2]],[[2,1,0,1],[2,3,0,2],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[3,3,0,2],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,0,2],[3,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,0,2],[2,2,2,2],[2,2,2,0]],[[1,1,0,1],[2,3,0,2],[2,2,2,2],[1,3,2,0]],[[1,1,0,1],[2,3,0,2],[2,2,2,2],[1,2,3,0]],[[2,1,0,1],[2,3,0,2],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[3,3,0,2],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,0,2],[3,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,0,2],[2,2,3,1],[2,2,1,1]],[[1,1,0,1],[2,3,0,2],[2,2,3,1],[1,3,1,1]],[[2,1,0,1],[2,3,0,2],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[3,3,0,2],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,0,2],[3,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,0,2],[2,2,3,2],[2,2,0,1]],[[1,1,0,1],[2,3,0,2],[2,2,3,2],[1,3,0,1]],[[2,1,0,1],[2,3,0,2],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[3,3,0,2],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,0,2],[3,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,0,2],[2,2,3,2],[2,2,1,0]],[[1,1,0,1],[2,3,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,1,3,1],[1,1,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[1,1,3,3],[1,2,2,1]],[[2,1,0,1],[2,3,0,2],[2,3,0,2],[1,2,2,1]],[[1,1,0,1],[3,3,0,2],[2,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[3,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,0,2],[2,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,0,2],[1,3,2,1]],[[2,1,0,1],[2,3,0,2],[2,3,1,1],[1,2,2,1]],[[1,1,0,1],[3,3,0,2],[2,3,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[3,3,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,1,1],[2,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,1,1],[1,3,2,1]],[[2,1,0,1],[2,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[3,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,0,2],[3,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,4,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,1,3],[0,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,1,2],[0,3,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,1,2],[0,2,3,1]],[[1,1,0,1],[2,3,0,2],[2,3,1,2],[0,2,2,2]],[[2,1,0,1],[2,3,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[3,3,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,0,2],[3,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,0,2],[2,4,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,1,2],[2,1,2,1]],[[2,1,0,1],[2,3,0,2],[2,3,1,2],[1,2,2,0]],[[1,1,0,1],[3,3,0,2],[2,3,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,0,2],[3,3,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,0,2],[2,3,1,2],[2,2,2,0]],[[1,1,0,1],[2,3,0,2],[2,3,1,2],[1,3,2,0]],[[2,1,0,1],[2,3,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[3,3,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,0,2],[3,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,4,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,2,1],[0,3,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,2,1],[0,2,3,1]],[[1,1,0,1],[2,3,0,2],[2,3,2,1],[0,2,2,2]],[[2,1,0,1],[2,3,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[3,3,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,0,2],[3,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,0,2],[2,4,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,2,1],[2,1,2,1]],[[2,1,0,1],[2,3,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[3,3,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,0,2],[3,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,0,2],[2,4,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,0,2],[2,3,2,2],[0,3,2,0]],[[1,1,0,1],[2,3,0,2],[2,3,2,2],[0,2,3,0]],[[2,1,0,1],[2,3,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[3,3,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,0,2],[3,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,0,2],[2,4,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,1,3,1],[0,3,3,2],[1,2,3,0]],[[1,2,1,1],[0,1,3,1],[0,3,3,2],[1,3,2,0]],[[1,2,1,1],[0,1,3,1],[0,3,3,3],[1,2,2,0]],[[1,2,1,1],[0,1,3,1],[0,3,4,2],[1,2,2,0]],[[1,2,1,1],[0,1,4,1],[0,3,3,2],[1,2,2,0]],[[1,2,1,1],[0,1,3,1],[0,3,3,2],[1,2,1,2]],[[1,2,1,1],[0,1,3,1],[0,3,3,3],[1,2,1,1]],[[1,2,1,1],[0,1,3,1],[0,3,4,2],[1,2,1,1]],[[1,2,1,1],[0,1,4,1],[0,3,3,2],[1,2,1,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[3,3,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,0,2],[3,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,0,2],[2,4,3,1],[0,1,2,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[3,3,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,0,2],[3,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,0,2],[2,4,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,0,2],[2,3,3,1],[0,3,1,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[3,3,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,0,2],[3,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,0,2],[2,4,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,0,2],[2,3,3,1],[2,0,2,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[3,3,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,0,2],[3,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,0,2],[2,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,0,2],[2,3,3,1],[2,1,1,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,1],[1,2,0,1]],[[1,1,0,1],[3,3,0,2],[2,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,0,2],[3,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,0,2],[2,4,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,1,3,1],[0,3,3,1],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[0,3,3,1],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[0,3,3,1],[1,3,2,1]],[[1,2,1,1],[0,1,3,1],[0,3,4,1],[1,2,2,1]],[[1,2,1,1],[0,1,4,1],[0,3,3,1],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[0,3,2,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[0,3,2,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[0,3,2,2],[1,3,2,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[3,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,0,2],[3,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,0,2],[2,4,3,2],[0,1,1,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[3,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,0,2],[3,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,0,2],[2,4,3,2],[0,1,2,0]],[[2,1,0,1],[2,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[3,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,0,2],[3,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,0,2],[2,4,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,0,2],[2,3,3,2],[0,3,0,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[3,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,0,2],[3,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,0,2],[2,4,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,1,3,1],[0,3,2,3],[1,2,2,1]],[[1,2,1,1],[0,1,3,1],[0,2,3,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,1],[0,2,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,1],[0,2,3,3],[1,2,2,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[3,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,0,2],[3,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,0,2],[2,4,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,0,2],[2,3,3,2],[2,0,1,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[3,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,0,2],[3,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,0,2],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,0,2],[2,3,3,2],[2,0,2,0]],[[2,1,0,1],[2,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[3,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,0,2],[3,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,0,2],[2,4,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,0,2],[2,3,3,2],[2,1,0,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[3,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,0,2],[3,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,0,2],[2,4,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,1,3,0],[2,3,3,2],[1,0,2,2]],[[1,2,1,1],[0,1,3,0],[2,3,3,2],[1,0,3,1]],[[1,2,1,1],[0,1,3,0],[2,3,4,2],[1,0,2,1]],[[2,1,0,1],[2,3,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[3,3,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,0,2],[3,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,0,2],[2,4,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,1,3,0],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[0,1,3,0],[2,3,3,2],[0,3,2,0]],[[1,2,1,1],[0,1,3,0],[2,3,4,2],[0,2,2,0]],[[1,2,1,1],[0,1,3,0],[2,3,3,2],[0,1,2,2]],[[1,2,1,1],[0,1,3,0],[2,3,3,2],[0,1,3,1]],[[1,2,1,1],[0,1,3,0],[2,3,4,2],[0,1,2,1]],[[1,2,1,1],[0,1,3,0],[2,3,3,1],[0,2,2,2]],[[1,2,1,1],[0,1,3,0],[2,3,3,1],[0,2,3,1]],[[1,2,1,1],[0,1,3,0],[2,3,3,1],[0,3,2,1]],[[1,2,1,1],[0,1,3,0],[2,3,4,1],[0,2,2,1]],[[1,1,0,1],[2,3,1,0],[0,4,3,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,0],[0,3,3,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,0],[0,3,3,2],[1,3,2,1]],[[1,1,0,1],[2,3,1,0],[0,3,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,1,0],[0,3,3,2],[1,2,2,2]],[[1,1,0,1],[2,3,1,0],[1,4,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,0],[1,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,0],[1,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,1,0],[1,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,1,0],[1,3,2,2],[1,2,2,2]],[[1,1,0,1],[2,3,1,0],[1,4,3,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,0],[1,3,3,2],[0,3,2,1]],[[1,1,0,1],[2,3,1,0],[1,3,3,2],[0,2,3,1]],[[1,1,0,1],[2,3,1,0],[1,3,3,2],[0,2,2,2]],[[1,1,0,1],[2,3,1,0],[1,4,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,1,0],[1,3,3,2],[2,2,1,1]],[[1,1,0,1],[2,3,1,0],[1,3,3,2],[1,3,1,1]],[[2,1,0,1],[2,3,1,0],[2,2,2,2],[1,2,2,1]],[[1,1,0,1],[3,3,1,0],[2,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,0],[3,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,0],[2,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,0],[2,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,1,0],[2,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,1,0],[2,2,2,2],[1,2,2,2]],[[2,1,0,1],[2,3,1,0],[2,2,3,2],[1,2,1,1]],[[1,1,0,1],[3,3,1,0],[2,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,1,0],[3,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,1,0],[2,2,3,2],[2,2,1,1]],[[1,1,0,1],[2,3,1,0],[2,2,3,2],[1,3,1,1]],[[1,1,0,1],[3,3,1,0],[2,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,0],[3,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,0],[2,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,0],[2,3,1,2],[1,3,2,1]],[[2,1,0,1],[2,3,1,0],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[3,3,1,0],[2,3,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,0],[3,3,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,0],[2,4,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,0],[2,3,2,2],[0,3,2,1]],[[1,1,0,1],[2,3,1,0],[2,3,2,2],[0,2,3,1]],[[1,1,0,1],[2,3,1,0],[2,3,2,2],[0,2,2,2]],[[2,1,0,1],[2,3,1,0],[2,3,2,2],[1,1,2,1]],[[1,1,0,1],[3,3,1,0],[2,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,0],[3,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,0],[2,4,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,0],[2,3,2,2],[2,1,2,1]],[[2,1,0,1],[2,3,1,0],[2,3,3,2],[0,1,2,1]],[[1,1,0,1],[3,3,1,0],[2,3,3,2],[0,1,2,1]],[[1,1,0,1],[2,3,1,0],[3,3,3,2],[0,1,2,1]],[[1,1,0,1],[2,3,1,0],[2,4,3,2],[0,1,2,1]],[[2,1,0,1],[2,3,1,0],[2,3,3,2],[0,2,1,1]],[[1,1,0,1],[3,3,1,0],[2,3,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,1,0],[3,3,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,1,0],[2,4,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,1,0],[2,3,3,2],[0,3,1,1]],[[2,1,0,1],[2,3,1,0],[2,3,3,2],[1,0,2,1]],[[1,1,0,1],[3,3,1,0],[2,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,1,0],[3,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,1,0],[2,4,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,1,0],[2,3,3,2],[2,0,2,1]],[[2,1,0,1],[2,3,1,0],[2,3,3,2],[1,1,1,1]],[[1,1,0,1],[3,3,1,0],[2,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,1,0],[3,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,1,0],[2,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,1,0],[2,3,3,2],[2,1,1,1]],[[1,1,0,1],[3,3,1,0],[2,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,0],[3,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,0],[2,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,0],[2,3,3,2],[2,2,0,1]],[[1,2,1,1],[0,1,3,0],[2,2,3,2],[0,2,2,2]],[[1,2,1,1],[0,1,3,0],[2,2,3,2],[0,2,3,1]],[[1,2,1,1],[0,1,3,0],[2,2,3,2],[0,3,2,1]],[[1,2,1,1],[0,1,3,0],[2,2,4,2],[0,2,2,1]],[[1,2,1,1],[0,1,3,0],[2,1,3,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,0],[2,1,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,0],[2,1,3,2],[1,3,2,1]],[[1,2,1,1],[0,1,3,0],[2,1,3,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,1],[0,4,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[0,3,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,1,1],[0,3,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,1,1],[0,3,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,1,1],[0,3,3,1],[1,2,2,2]],[[1,1,0,1],[2,3,1,1],[0,4,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,1],[0,3,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,1,1],[0,3,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,1,1],[0,3,3,2],[1,2,3,0]],[[1,1,0,1],[2,3,1,1],[1,4,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[1,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,1],[1,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,1,1],[1,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,1,1],[1,3,1,2],[1,2,2,2]],[[1,1,0,1],[2,3,1,1],[1,4,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[1,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,3,1,1],[1,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,3,1,1],[1,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,3,1,1],[1,3,2,1],[1,2,2,2]],[[1,1,0,1],[2,3,1,1],[1,4,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,1],[1,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,3,1,1],[1,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,3,1,1],[1,3,2,2],[1,2,3,0]],[[1,1,0,1],[2,3,1,1],[1,4,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[1,3,3,0],[2,2,2,1]],[[1,1,0,1],[2,3,1,1],[1,3,3,0],[1,3,2,1]],[[1,1,0,1],[2,3,1,1],[1,3,3,0],[1,2,3,1]],[[1,1,0,1],[2,3,1,1],[1,4,3,1],[0,2,2,1]],[[1,1,0,1],[2,3,1,1],[1,3,3,1],[0,3,2,1]],[[1,1,0,1],[2,3,1,1],[1,3,3,1],[0,2,3,1]],[[1,1,0,1],[2,3,1,1],[1,3,3,1],[0,2,2,2]],[[1,1,0,1],[2,3,1,1],[1,4,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,1,1],[1,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,3,1,1],[1,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,3,1,1],[1,4,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,1,1],[1,3,3,2],[0,3,2,0]],[[1,1,0,1],[2,3,1,1],[1,3,3,2],[0,2,3,0]],[[1,1,0,1],[2,3,1,1],[1,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,1],[1,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,3,1,1],[1,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,3,1,1],[1,4,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,1,1],[1,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,3,1,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,1,3,0],[2,1,4,2],[1,2,2,1]],[[2,1,0,1],[2,3,1,1],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[3,3,1,1],[2,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[3,2,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,2,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,2,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,1,1],[2,2,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,1,1],[2,2,1,2],[1,2,2,2]],[[2,1,0,1],[2,3,1,1],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[3,3,1,1],[2,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[3,2,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,2,2,1],[2,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,2,2,1],[1,3,2,1]],[[1,1,0,1],[2,3,1,1],[2,2,2,1],[1,2,3,1]],[[1,1,0,1],[2,3,1,1],[2,2,2,1],[1,2,2,2]],[[2,1,0,1],[2,3,1,1],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[3,3,1,1],[2,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,1],[3,2,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,1],[2,2,2,2],[2,2,2,0]],[[1,1,0,1],[2,3,1,1],[2,2,2,2],[1,3,2,0]],[[1,1,0,1],[2,3,1,1],[2,2,2,2],[1,2,3,0]],[[2,1,0,1],[2,3,1,1],[2,2,3,0],[1,2,2,1]],[[1,1,0,1],[3,3,1,1],[2,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[3,2,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,2,3,0],[2,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,2,3,0],[1,3,2,1]],[[1,1,0,1],[2,3,1,1],[2,2,3,0],[1,2,3,1]],[[2,1,0,1],[2,3,1,1],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[3,3,1,1],[2,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,1,1],[3,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,1,1],[2,2,3,1],[2,2,1,1]],[[1,1,0,1],[2,3,1,1],[2,2,3,1],[1,3,1,1]],[[2,1,0,1],[2,3,1,1],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[3,3,1,1],[2,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,1],[3,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,1],[2,2,3,2],[2,2,0,1]],[[1,1,0,1],[2,3,1,1],[2,2,3,2],[1,3,0,1]],[[2,1,0,1],[2,3,1,1],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[3,3,1,1],[2,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,1,1],[3,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,1,1],[2,2,3,2],[2,2,1,0]],[[1,1,0,1],[2,3,1,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,1,3,0],[1,3,3,2],[1,2,3,0]],[[1,2,1,1],[0,1,3,0],[1,3,3,2],[1,3,2,0]],[[1,2,1,1],[0,1,3,0],[1,3,3,2],[2,2,2,0]],[[1,2,1,1],[0,1,3,0],[1,3,4,2],[1,2,2,0]],[[1,2,1,1],[0,1,3,0],[1,3,3,2],[1,1,2,2]],[[1,2,1,1],[0,1,3,0],[1,3,3,2],[1,1,3,1]],[[2,1,0,1],[2,3,1,1],[2,3,0,2],[1,2,2,1]],[[1,1,0,1],[3,3,1,1],[2,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[3,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,0,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,0,2],[1,3,2,1]],[[2,1,0,1],[2,3,1,1],[2,3,1,1],[1,2,2,1]],[[1,1,0,1],[3,3,1,1],[2,3,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[3,3,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,1,1],[2,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,1,1],[1,3,2,1]],[[2,1,0,1],[2,3,1,1],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[3,3,1,1],[2,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,1],[3,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,4,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,1,2],[0,3,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,1,2],[0,2,3,1]],[[1,1,0,1],[2,3,1,1],[2,3,1,2],[0,2,2,2]],[[2,1,0,1],[2,3,1,1],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[3,3,1,1],[2,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,1],[3,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,1],[2,4,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,1,2],[2,1,2,1]],[[2,1,0,1],[2,3,1,1],[2,3,1,2],[1,2,2,0]],[[1,1,0,1],[3,3,1,1],[2,3,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,1],[3,3,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,1],[2,3,1,2],[2,2,2,0]],[[1,1,0,1],[2,3,1,1],[2,3,1,2],[1,3,2,0]],[[1,1,0,1],[3,3,1,1],[2,3,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[3,3,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,2,0],[2,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,2,0],[1,3,2,1]],[[2,1,0,1],[2,3,1,1],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[3,3,1,1],[2,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,1,1],[3,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,4,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,2,1],[0,3,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,2,1],[0,2,3,1]],[[1,1,0,1],[2,3,1,1],[2,3,2,1],[0,2,2,2]],[[2,1,0,1],[2,3,1,1],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[3,3,1,1],[2,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,1,1],[3,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,1,1],[2,4,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,2,1],[2,1,2,1]],[[2,1,0,1],[2,3,1,1],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[3,3,1,1],[2,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,1,1],[3,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,1,1],[2,4,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,1,1],[2,3,2,2],[0,3,2,0]],[[1,1,0,1],[2,3,1,1],[2,3,2,2],[0,2,3,0]],[[2,1,0,1],[2,3,1,1],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[3,3,1,1],[2,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,1,1],[3,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,1,1],[2,4,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,1,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,1,3,0],[1,3,4,2],[1,1,2,1]],[[1,2,1,1],[0,1,3,0],[1,3,3,1],[1,2,2,2]],[[1,2,1,1],[0,1,3,0],[1,3,3,1],[1,2,3,1]],[[1,2,1,1],[0,1,3,0],[1,3,3,1],[1,3,2,1]],[[1,2,1,1],[0,1,3,0],[1,3,3,1],[2,2,2,1]],[[1,2,1,1],[0,1,3,0],[1,3,4,1],[1,2,2,1]],[[1,2,1,1],[0,1,3,0],[1,2,3,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,0],[1,2,3,2],[1,2,3,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,0],[0,2,2,1]],[[1,1,0,1],[3,3,1,1],[2,3,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,1,1],[3,3,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,4,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,3,0],[0,3,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,3,0],[0,2,3,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,0],[1,1,2,1]],[[1,1,0,1],[3,3,1,1],[2,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,1,1],[3,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,1,1],[2,4,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,3,0],[2,1,2,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[3,3,1,1],[2,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,1,1],[3,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,1,1],[2,4,3,1],[0,1,2,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[3,3,1,1],[2,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,1,1],[3,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,1,1],[2,4,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,1,1],[2,3,3,1],[0,3,1,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[3,3,1,1],[2,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,1,1],[3,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,1,1],[2,4,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,1,1],[2,3,3,1],[2,0,2,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[3,3,1,1],[2,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,1,1],[3,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,1,1],[2,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,1,1],[2,3,3,1],[2,1,1,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,1],[1,2,0,1]],[[1,1,0,1],[3,3,1,1],[2,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,1,1],[3,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,1,1],[2,4,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,1,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,1],[0,1,3,0],[1,2,3,2],[1,3,2,1]],[[1,2,1,1],[0,1,3,0],[1,2,3,2],[2,2,2,1]],[[1,2,1,1],[0,1,3,0],[1,2,4,2],[1,2,2,1]],[[1,2,1,1],[0,1,3,0],[0,3,3,2],[1,2,2,2]],[[1,2,1,1],[0,1,3,0],[0,3,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,3,0],[0,3,3,2],[1,3,2,1]],[[1,2,1,1],[0,1,3,0],[0,3,4,2],[1,2,2,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[3,3,1,1],[2,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,1,1],[3,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,1,1],[2,4,3,2],[0,1,1,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[3,3,1,1],[2,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,1,1],[3,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,1,1],[2,4,3,2],[0,1,2,0]],[[2,1,0,1],[2,3,1,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[3,3,1,1],[2,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,1,1],[3,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,1,1],[2,4,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,1,1],[2,3,3,2],[0,3,0,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[3,3,1,1],[2,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,1,1],[3,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,1,1],[2,4,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,1,1],[2,3,3,2],[0,3,1,0]],[[2,1,0,1],[2,3,1,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[3,3,1,1],[2,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,1,1],[3,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,1,1],[2,4,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,1,1],[2,3,3,2],[2,0,1,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[3,3,1,1],[2,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,1,1],[3,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,1,1],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,1,1],[2,3,3,2],[2,0,2,0]],[[2,1,0,1],[2,3,1,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[3,3,1,1],[2,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,1,1],[3,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,1,1],[2,4,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,1,1],[2,3,3,2],[2,1,0,1]],[[2,1,0,1],[2,3,1,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[3,3,1,1],[2,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,1,1],[3,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,1,1],[2,4,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,1,1],[2,3,3,2],[2,1,1,0]],[[2,1,0,1],[2,3,1,1],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[3,3,1,1],[2,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,1,1],[3,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,1,1],[2,4,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,1,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,1],[0,1,2,2],[2,4,3,2],[1,2,0,0]],[[1,2,1,1],[0,1,2,2],[3,3,3,2],[1,2,0,0]],[[1,1,0,2],[2,3,1,2],[0,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,3],[0,2,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,1,2],[0,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,1,2],[0,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,3,1,2],[0,2,4,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,1,2],[0,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,1,2],[0,2,3,1],[1,2,2,2]],[[1,1,0,2],[2,3,1,2],[0,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,1,3],[0,2,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[0,2,4,2],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[0,2,3,3],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[0,2,3,2],[1,2,1,2]],[[1,1,0,2],[2,3,1,2],[0,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,3],[0,2,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[0,2,4,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[0,2,3,3],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[0,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,1,2],[0,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,1,2],[0,2,3,2],[1,2,3,0]],[[2,1,0,1],[2,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,0,2],[2,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,0,1],[3,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,4,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,3],[0,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,4,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,1,2],[0,3,1,2],[1,2,2,2]],[[2,1,0,1],[2,3,1,2],[0,3,2,1],[1,2,2,1]],[[1,1,0,1],[3,3,1,2],[0,3,2,1],[1,2,2,1]],[[1,1,0,1],[2,4,1,2],[0,3,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,4,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,3,1,2],[0,3,2,1],[1,2,2,2]],[[1,1,0,2],[2,3,1,2],[0,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,3],[0,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,2,3],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,2,2],[1,1,3,1]],[[1,1,0,1],[2,3,1,2],[0,3,2,2],[1,1,2,2]],[[2,1,0,1],[2,3,1,2],[0,3,2,2],[1,2,2,0]],[[1,1,0,1],[3,3,1,2],[0,3,2,2],[1,2,2,0]],[[1,1,0,1],[2,4,1,2],[0,3,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[0,4,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[0,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,3,1,2],[0,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,3,1,2],[0,3,2,2],[1,2,3,0]],[[2,1,0,1],[2,3,1,2],[0,3,3,1],[1,1,2,1]],[[1,1,0,1],[3,3,1,2],[0,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,4,1,2],[0,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[0,4,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,4,1],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,1],[1,1,3,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,1],[1,1,2,2]],[[2,1,0,1],[2,3,1,2],[0,3,3,1],[1,2,1,1]],[[1,1,0,1],[3,3,1,2],[0,3,3,1],[1,2,1,1]],[[1,1,0,1],[2,4,1,2],[0,3,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[0,4,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[0,3,4,1],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,1],[1,3,1,1]],[[1,1,0,2],[2,3,1,2],[0,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,1,3],[0,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,4,2],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,3],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,2],[1,0,2,2]],[[2,1,0,1],[2,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,0,2],[2,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,0,1],[3,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,4,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,1,3],[0,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[0,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[0,3,4,2],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,3],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,2],[1,1,1,2]],[[2,1,0,1],[2,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,0,2],[2,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,0,1],[3,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,4,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,1,3],[0,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,1,2],[0,4,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,1,2],[0,3,4,2],[1,1,2,0]],[[1,1,0,1],[2,3,1,2],[0,3,3,3],[1,1,2,0]],[[1,1,0,1],[2,3,1,2],[0,3,3,2],[1,1,3,0]],[[2,1,0,1],[2,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,0,2],[2,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,0,1],[3,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,4,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,3],[0,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,2],[0,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,2],[0,3,4,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,3],[1,2,0,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,3,1,2],[0,3,3,2],[1,2,0,2]],[[2,1,0,1],[2,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,0,2],[2,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,0,1],[3,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,4,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,1,3],[0,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,1,2],[0,4,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,1,2],[0,3,4,2],[1,2,1,0]],[[1,1,0,1],[2,3,1,2],[0,3,3,3],[1,2,1,0]],[[1,1,0,1],[2,3,1,2],[0,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,1,2,2],[2,3,4,2],[1,1,1,0]],[[1,2,1,1],[0,1,2,2],[2,4,3,2],[1,1,1,0]],[[1,2,1,1],[0,1,2,2],[3,3,3,2],[1,1,1,0]],[[1,2,1,1],[0,1,2,3],[2,3,3,2],[1,1,1,0]],[[1,2,1,2],[0,1,2,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[2,1,0,1]],[[1,2,1,1],[0,1,2,2],[2,3,3,3],[1,1,0,1]],[[1,1,0,2],[2,3,1,2],[1,2,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,3],[1,2,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[1,2,2,3],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[1,2,2,2],[0,3,2,1]],[[1,1,0,1],[2,3,1,2],[1,2,2,2],[0,2,3,1]],[[1,1,0,1],[2,3,1,2],[1,2,2,2],[0,2,2,2]],[[1,1,0,1],[2,3,1,2],[1,2,4,1],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[1,2,3,1],[0,3,2,1]],[[1,1,0,1],[2,3,1,2],[1,2,3,1],[0,2,3,1]],[[1,1,0,1],[2,3,1,2],[1,2,3,1],[0,2,2,2]],[[1,1,0,2],[2,3,1,2],[1,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,1,3],[1,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,1,2],[1,2,4,2],[0,2,1,1]],[[1,1,0,1],[2,3,1,2],[1,2,3,3],[0,2,1,1]],[[1,1,0,1],[2,3,1,2],[1,2,3,2],[0,2,1,2]],[[1,1,0,2],[2,3,1,2],[1,2,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,1,3],[1,2,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,1,2],[1,2,4,2],[0,2,2,0]],[[1,1,0,1],[2,3,1,2],[1,2,3,3],[0,2,2,0]],[[1,1,0,1],[2,3,1,2],[1,2,3,2],[0,3,2,0]],[[1,1,0,1],[2,3,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[0,1,2,2],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[0,1,2,2],[2,4,3,2],[1,1,0,1]],[[1,2,1,1],[0,1,2,2],[3,3,3,2],[1,1,0,1]],[[1,2,1,1],[0,1,2,3],[2,3,3,2],[1,1,0,1]],[[1,2,1,2],[0,1,2,2],[2,3,3,2],[1,1,0,1]],[[2,1,0,1],[2,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,0,2],[2,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,0,1],[3,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,4,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,3],[1,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[1,4,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,1,3],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,1,2],[0,3,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,1,2],[0,2,3,1]],[[1,1,0,1],[2,3,1,2],[1,3,1,2],[0,2,2,2]],[[2,1,0,1],[2,3,1,2],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[3,3,1,2],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,4,1,2],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[1,4,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[1,4,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,0],[2,2,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,0],[1,3,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,0],[1,2,3,1]],[[2,1,0,1],[2,3,1,2],[1,3,2,1],[0,2,2,1]],[[1,1,0,1],[3,3,1,2],[1,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,4,1,2],[1,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[1,4,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,1],[0,3,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,1],[0,2,3,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,1],[0,2,2,2]],[[2,1,0,1],[2,3,1,2],[1,3,2,1],[1,1,2,1]],[[1,1,0,1],[3,3,1,2],[1,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,4,1,2],[1,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[1,4,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[1,4,2,1],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[1,3,2,1],[2,2,2,0]],[[1,1,0,1],[2,3,1,2],[1,3,2,1],[1,3,2,0]],[[1,1,0,2],[2,3,1,2],[1,3,2,2],[0,1,2,1]],[[1,1,0,1],[2,3,1,3],[1,3,2,2],[0,1,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,3],[0,1,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,2],[0,1,3,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,2],[0,1,2,2]],[[2,1,0,1],[2,3,1,2],[1,3,2,2],[0,2,2,0]],[[1,1,0,1],[3,3,1,2],[1,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,4,1,2],[1,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,1,2],[1,4,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,1,2],[1,3,2,2],[0,3,2,0]],[[1,1,0,1],[2,3,1,2],[1,3,2,2],[0,2,3,0]],[[1,1,0,2],[2,3,1,2],[1,3,2,2],[1,0,2,1]],[[1,1,0,1],[2,3,1,3],[1,3,2,2],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,3],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,2],[1,0,3,1]],[[1,1,0,1],[2,3,1,2],[1,3,2,2],[1,0,2,2]],[[2,1,0,1],[2,3,1,2],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[3,3,1,2],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,4,1,2],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,1,2],[1,4,2,2],[1,1,2,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[2,0,2,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[0,1,2,2],[2,3,4,2],[1,0,2,0]],[[1,2,1,1],[0,1,2,2],[2,4,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,1,2],[1,4,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,0],[2,2,1,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,0],[1,3,1,1]],[[2,1,0,1],[2,3,1,2],[1,3,3,1],[0,1,2,1]],[[1,1,0,1],[3,3,1,2],[1,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,4,1,2],[1,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,1,2],[1,4,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,4,1],[0,1,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,1],[0,1,3,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,1],[0,1,2,2]],[[2,1,0,1],[2,3,1,2],[1,3,3,1],[0,2,1,1]],[[1,1,0,1],[3,3,1,2],[1,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,4,1,2],[1,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,1,2],[1,4,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,1,2],[1,3,4,1],[0,2,1,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,1],[0,3,1,1]],[[2,1,0,1],[2,3,1,2],[1,3,3,1],[1,0,2,1]],[[1,1,0,1],[3,3,1,2],[1,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,4,1,2],[1,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[1,4,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,4,1],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,1],[1,0,3,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,1],[1,0,2,2]],[[2,1,0,1],[2,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[3,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,4,1,2],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[1,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[1,3,4,1],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[1,4,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,1,2],[1,3,3,1],[2,2,1,0]],[[1,1,0,1],[2,3,1,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,1,2,2],[3,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,1,2,3],[2,3,3,2],[1,0,2,0]],[[1,2,1,2],[0,1,2,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[1,0,1,2]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[2,0,1,1]],[[1,2,1,1],[0,1,2,2],[2,3,3,3],[1,0,1,1]],[[1,2,1,1],[0,1,2,2],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[0,1,2,2],[2,4,3,2],[1,0,1,1]],[[1,2,1,1],[0,1,2,2],[3,3,3,2],[1,0,1,1]],[[1,1,0,2],[2,3,1,2],[1,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,1,3],[1,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,4,2],[0,0,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,3],[0,0,2,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,2],[0,0,2,2]],[[2,1,0,1],[2,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,0,2],[2,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,0,1],[3,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,4,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,1,3],[1,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,1,2],[1,4,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,1,2],[1,3,4,2],[0,1,1,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,3],[0,1,1,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,2],[0,1,1,2]],[[2,1,0,1],[2,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,0,2],[2,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,0,1],[3,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,4,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,1,3],[1,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,1,2],[1,4,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,1,2],[1,3,4,2],[0,1,2,0]],[[1,1,0,1],[2,3,1,2],[1,3,3,3],[0,1,2,0]],[[1,1,0,1],[2,3,1,2],[1,3,3,2],[0,1,3,0]],[[2,1,0,1],[2,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,0,2],[2,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,0,1],[3,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,4,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,1,3],[1,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,1,2],[1,4,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,1,2],[1,3,4,2],[0,2,0,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,3],[0,2,0,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,2],[0,3,0,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,2],[0,2,0,2]],[[2,1,0,1],[2,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,0,2],[2,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,0,1],[3,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,4,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,1,3],[1,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,1,2],[1,4,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,1,2],[1,3,4,2],[0,2,1,0]],[[1,1,0,1],[2,3,1,2],[1,3,3,3],[0,2,1,0]],[[1,1,0,1],[2,3,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,1,2,3],[2,3,3,2],[1,0,1,1]],[[1,2,1,2],[0,1,2,2],[2,3,3,2],[1,0,1,1]],[[2,1,0,1],[2,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,0,2],[2,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,0,1],[3,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,4,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,1,3],[1,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,1,2],[1,4,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,1,2],[1,3,4,2],[1,0,1,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,3],[1,0,1,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,2],[1,0,1,2]],[[2,1,0,1],[2,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,0,2],[2,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,0,1],[3,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,4,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,1,3],[1,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,1,2],[1,4,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,1,2],[1,3,4,2],[1,0,2,0]],[[1,1,0,1],[2,3,1,2],[1,3,3,3],[1,0,2,0]],[[1,1,0,1],[2,3,1,2],[1,3,3,2],[1,0,3,0]],[[2,1,0,1],[2,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,0,2],[2,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,0,1],[3,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,4,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,1,3],[1,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,1,2],[1,4,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,1,2],[1,3,4,2],[1,1,0,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,3],[1,1,0,1]],[[1,1,0,1],[2,3,1,2],[1,3,3,2],[1,1,0,2]],[[2,1,0,1],[2,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,0,2],[2,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,0,1],[3,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,4,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,1,3],[1,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,1,2],[1,4,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,1,2],[1,3,4,2],[1,1,1,0]],[[1,1,0,1],[2,3,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[0,1,2,2],[2,3,4,2],[0,2,1,0]],[[2,1,0,1],[2,3,1,2],[1,3,3,2],[1,2,0,0]],[[1,1,0,1],[3,3,1,2],[1,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,4,1,2],[1,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,1,2],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[0,1,2,2],[2,4,3,2],[0,2,1,0]],[[1,2,1,1],[0,1,2,2],[3,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,1,2,3],[2,3,3,2],[0,2,1,0]],[[1,2,1,2],[0,1,2,2],[2,3,3,2],[0,2,1,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[0,3,0,1]],[[1,2,1,1],[0,1,2,2],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[0,1,2,2],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[0,1,2,2],[2,4,3,2],[0,2,0,1]],[[1,2,1,1],[0,1,2,2],[3,3,3,2],[0,2,0,1]],[[1,2,1,1],[0,1,2,3],[2,3,3,2],[0,2,0,1]],[[1,2,1,2],[0,1,2,2],[2,3,3,2],[0,2,0,1]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[0,1,2,2],[2,3,4,2],[0,1,2,0]],[[1,2,1,1],[0,1,2,2],[2,4,3,2],[0,1,2,0]],[[1,2,1,1],[0,1,2,2],[3,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,1,2,3],[2,3,3,2],[0,1,2,0]],[[1,2,1,2],[0,1,2,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[0,1,1,2]],[[1,2,1,1],[0,1,2,2],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[0,1,2,2],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[0,1,2,2],[2,4,3,2],[0,1,1,1]],[[1,2,1,1],[0,1,2,2],[3,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,1,2,3],[2,3,3,2],[0,1,1,1]],[[1,2,1,2],[0,1,2,2],[2,3,3,2],[0,1,1,1]],[[2,1,0,1],[2,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,0,2],[2,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[3,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,4,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,3],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[3,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,0,2,3],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,0,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,0,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,1,2],[2,0,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,1,2],[2,0,2,2],[1,2,2,2]],[[2,1,0,1],[2,3,1,2],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[3,3,1,2],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,4,1,2],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[3,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,0,4,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,0,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,0,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,1,2],[2,0,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,1,2],[2,0,3,1],[1,2,2,2]],[[1,1,0,2],[2,3,1,2],[2,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,1,3],[2,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[2,0,4,2],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[2,0,3,3],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[2,0,3,2],[1,2,1,2]],[[2,1,0,1],[2,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,0,2],[2,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[3,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,4,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,3],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[3,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,0,4,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,0,3,3],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,0,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,0,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,1,2],[2,0,3,2],[1,2,3,0]],[[2,1,0,1],[2,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,1,0,2],[2,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[3,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,4,1,2],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,3],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[3,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,1,1,3],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,1,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,1,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,1,2],[2,1,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,1,2],[2,1,1,2],[1,2,2,2]],[[2,1,0,1],[2,3,1,2],[2,1,2,1],[1,2,2,1]],[[1,1,0,1],[3,3,1,2],[2,1,2,1],[1,2,2,1]],[[1,1,0,1],[2,4,1,2],[2,1,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[3,1,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,1,2,1],[2,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,1,2,1],[1,3,2,1]],[[1,1,0,1],[2,3,1,2],[2,1,2,1],[1,2,3,1]],[[1,1,0,1],[2,3,1,2],[2,1,2,1],[1,2,2,2]],[[2,1,0,1],[2,3,1,2],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[3,3,1,2],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,4,1,2],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[3,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,1,2,2],[2,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,1,2,2],[1,3,2,0]],[[1,1,0,1],[2,3,1,2],[2,1,2,2],[1,2,3,0]],[[2,1,0,1],[2,3,1,2],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[3,3,1,2],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,4,1,2],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[3,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[2,1,3,1],[2,2,1,1]],[[1,1,0,1],[2,3,1,2],[2,1,3,1],[1,3,1,1]],[[2,1,0,1],[2,3,1,2],[2,1,3,2],[1,2,0,1]],[[1,1,0,1],[3,3,1,2],[2,1,3,2],[1,2,0,1]],[[1,1,0,1],[2,4,1,2],[2,1,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,2],[3,1,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,1,2],[2,1,3,2],[2,2,0,1]],[[1,1,0,1],[2,3,1,2],[2,1,3,2],[1,3,0,1]],[[2,1,0,1],[2,3,1,2],[2,1,3,2],[1,2,1,0]],[[1,1,0,1],[3,3,1,2],[2,1,3,2],[1,2,1,0]],[[1,1,0,1],[2,4,1,2],[2,1,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,1,2],[3,1,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,1,2],[2,1,3,2],[2,2,1,0]],[[1,1,0,1],[2,3,1,2],[2,1,3,2],[1,3,1,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,2],[0,0,2,2]],[[1,2,1,1],[0,1,2,2],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[0,1,2,2],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[0,1,2,3],[2,3,3,2],[0,0,2,1]],[[1,2,1,2],[0,1,2,2],[2,3,3,2],[0,0,2,1]],[[2,1,0,1],[2,3,1,2],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[3,3,1,2],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[2,4,1,2],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[3,2,1,2],[0,2,2,1]],[[2,1,0,1],[2,3,1,2],[2,2,1,2],[1,1,2,1]],[[1,1,0,1],[3,3,1,2],[2,2,1,2],[1,1,2,1]],[[1,1,0,1],[2,4,1,2],[2,2,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[3,2,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[2,2,1,2],[2,1,2,1]],[[2,1,0,1],[2,3,1,2],[2,2,2,0],[1,2,2,1]],[[1,1,0,1],[3,3,1,2],[2,2,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[3,2,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,2,2,0],[2,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,2,2,0],[1,3,2,1]],[[1,1,0,1],[2,3,1,2],[2,2,2,0],[1,2,3,1]],[[2,1,0,1],[2,3,1,2],[2,2,2,1],[0,2,2,1]],[[1,1,0,1],[3,3,1,2],[2,2,2,1],[0,2,2,1]],[[1,1,0,1],[2,4,1,2],[2,2,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[3,2,2,1],[0,2,2,1]],[[2,1,0,1],[2,3,1,2],[2,2,2,1],[1,1,2,1]],[[1,1,0,1],[3,3,1,2],[2,2,2,1],[1,1,2,1]],[[1,1,0,1],[2,4,1,2],[2,2,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[3,2,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[2,2,2,1],[2,1,2,1]],[[2,1,0,1],[2,3,1,2],[2,2,2,1],[1,2,2,0]],[[1,1,0,1],[3,3,1,2],[2,2,2,1],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[3,2,2,1],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,2,2,1],[2,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,2,2,1],[1,3,2,0]],[[2,1,0,1],[2,3,1,2],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[3,3,1,2],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[2,4,1,2],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,1,2],[3,2,2,2],[0,2,2,0]],[[2,1,0,1],[2,3,1,2],[2,2,2,2],[1,1,2,0]],[[1,1,0,1],[3,3,1,2],[2,2,2,2],[1,1,2,0]],[[1,1,0,1],[2,4,1,2],[2,2,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,1,2],[3,2,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,1,2],[2,2,2,2],[2,1,2,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,1],[0,1,2,2],[2,3,4,1],[1,1,1,1]],[[1,2,1,1],[0,1,2,2],[2,4,3,1],[1,1,1,1]],[[1,2,1,1],[0,1,2,2],[3,3,3,1],[1,1,1,1]],[[1,2,1,1],[0,1,2,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[0,1,2,2],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[0,1,2,2],[2,3,3,1],[2,0,2,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,0],[1,2,1,1]],[[1,1,0,1],[3,3,1,2],[2,2,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[3,2,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,1,2],[2,2,3,0],[2,2,1,1]],[[1,1,0,1],[2,3,1,2],[2,2,3,0],[1,3,1,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,1],[0,1,2,1]],[[1,1,0,1],[3,3,1,2],[2,2,3,1],[0,1,2,1]],[[1,1,0,1],[2,4,1,2],[2,2,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,1,2],[3,2,3,1],[0,1,2,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[3,3,1,2],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,4,1,2],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,1,2],[3,2,3,1],[0,2,1,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,1],[1,0,2,1]],[[1,1,0,1],[3,3,1,2],[2,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,4,1,2],[2,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[3,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[2,2,3,1],[2,0,2,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,1],[1,1,1,1]],[[1,1,0,1],[3,3,1,2],[2,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,4,1,2],[2,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[3,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[2,2,3,1],[2,1,1,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,1],[1,2,1,0]],[[1,1,0,1],[3,3,1,2],[2,2,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,1,2],[3,2,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,1,2],[2,2,3,1],[2,2,1,0]],[[1,1,0,1],[2,3,1,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,1],[0,1,2,2],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[0,1,2,2],[2,4,3,1],[1,0,2,1]],[[1,2,1,1],[0,1,2,2],[3,3,3,1],[1,0,2,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,1,0,1],[3,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,1,0,1],[2,4,1,2],[2,2,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,1,2],[3,2,3,2],[0,1,1,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,1,0,1],[3,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,1,0,1],[2,4,1,2],[2,2,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,1,2],[3,2,3,2],[0,1,2,0]],[[2,1,0,1],[2,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,1,0,1],[3,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,1,0,1],[2,4,1,2],[2,2,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,1,2],[3,2,3,2],[0,2,0,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,1,0,1],[3,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,1,0,1],[2,4,1,2],[2,2,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,1,2],[3,2,3,2],[0,2,1,0]],[[1,2,1,1],[0,1,2,2],[2,3,3,1],[0,3,1,1]],[[1,2,1,1],[0,1,2,2],[2,3,4,1],[0,2,1,1]],[[1,2,1,1],[0,1,2,2],[2,4,3,1],[0,2,1,1]],[[1,2,1,1],[0,1,2,2],[3,3,3,1],[0,2,1,1]],[[1,2,1,1],[0,1,2,2],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[0,1,2,2],[2,3,3,1],[0,1,3,1]],[[1,2,1,1],[0,1,2,2],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[0,1,2,2],[2,4,3,1],[0,1,2,1]],[[1,2,1,1],[0,1,2,2],[3,3,3,1],[0,1,2,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,1,0,1],[3,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,1,0,1],[2,4,1,2],[2,2,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,1,2],[3,2,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,1,2],[2,2,3,2],[2,0,1,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,1,0,1],[3,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,1,0,1],[2,4,1,2],[2,2,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,1,2],[3,2,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,1,2],[2,2,3,2],[2,0,2,0]],[[2,1,0,1],[2,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,1,0,1],[3,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,4,1,2],[2,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,1,2],[3,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,1,2],[2,2,3,2],[2,1,0,1]],[[2,1,0,1],[2,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,1,0,1],[3,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,1,0,1],[2,4,1,2],[2,2,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,1,2],[3,2,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,1,2],[2,2,3,2],[2,1,1,0]],[[2,1,0,1],[2,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,1,0,1],[3,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,1,0,1],[2,4,1,2],[2,2,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,1,2],[3,2,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,1,2],[2,2,3,2],[2,2,0,0]],[[1,2,1,1],[0,1,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,1],[0,1,2,2],[2,4,2,2],[1,1,2,0]],[[1,2,1,1],[0,1,2,2],[3,3,2,2],[1,1,2,0]],[[1,2,1,1],[0,1,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[0,1,2,2],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[0,1,2,2],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[0,1,2,3],[2,3,2,2],[1,0,2,1]],[[1,2,1,2],[0,1,2,2],[2,3,2,2],[1,0,2,1]],[[1,2,1,1],[0,1,2,2],[2,3,2,2],[0,2,3,0]],[[1,2,1,1],[0,1,2,2],[2,3,2,2],[0,3,2,0]],[[1,2,1,1],[0,1,2,2],[2,4,2,2],[0,2,2,0]],[[1,2,1,1],[0,1,2,2],[3,3,2,2],[0,2,2,0]],[[1,2,1,1],[0,1,2,2],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[0,1,2,2],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[0,1,2,2],[2,3,2,3],[0,1,2,1]],[[1,2,1,1],[0,1,2,3],[2,3,2,2],[0,1,2,1]],[[1,2,1,2],[0,1,2,2],[2,3,2,2],[0,1,2,1]],[[2,1,0,1],[2,3,1,2],[2,3,1,0],[1,2,2,1]],[[1,1,0,1],[3,3,1,2],[2,3,1,0],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[3,3,1,0],[1,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,3,1,0],[2,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,3,1,0],[1,3,2,1]],[[2,1,0,1],[2,3,1,2],[2,3,1,1],[1,2,2,0]],[[1,1,0,1],[3,3,1,2],[2,3,1,1],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[3,3,1,1],[1,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,3,1,1],[2,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,3,1,1],[1,3,2,0]],[[1,2,1,1],[0,1,2,2],[2,3,2,1],[2,1,2,1]],[[1,2,1,1],[0,1,2,2],[2,4,2,1],[1,1,2,1]],[[1,2,1,1],[0,1,2,2],[3,3,2,1],[1,1,2,1]],[[1,2,1,1],[0,1,2,2],[2,3,2,1],[0,2,2,2]],[[1,2,1,1],[0,1,2,2],[2,3,2,1],[0,2,3,1]],[[1,2,1,1],[0,1,2,2],[2,3,2,1],[0,3,2,1]],[[1,2,1,1],[0,1,2,2],[2,4,2,1],[0,2,2,1]],[[1,2,1,1],[0,1,2,2],[3,3,2,1],[0,2,2,1]],[[2,1,0,1],[2,3,1,2],[2,3,2,0],[0,2,2,1]],[[1,1,0,1],[3,3,1,2],[2,3,2,0],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[3,3,2,0],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,4,2,0],[0,2,2,1]],[[1,1,0,1],[2,3,1,2],[2,3,2,0],[0,3,2,1]],[[1,1,0,1],[2,3,1,2],[2,3,2,0],[0,2,3,1]],[[2,1,0,1],[2,3,1,2],[2,3,2,0],[1,1,2,1]],[[1,1,0,1],[3,3,1,2],[2,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[3,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[2,4,2,0],[1,1,2,1]],[[1,1,0,1],[2,3,1,2],[2,3,2,0],[2,1,2,1]],[[2,1,0,1],[2,3,1,2],[2,3,2,1],[0,2,2,0]],[[1,1,0,1],[3,3,1,2],[2,3,2,1],[0,2,2,0]],[[1,1,0,1],[2,3,1,2],[3,3,2,1],[0,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,4,2,1],[0,2,2,0]],[[1,1,0,1],[2,3,1,2],[2,3,2,1],[0,3,2,0]],[[2,1,0,1],[2,3,1,2],[2,3,2,1],[1,1,2,0]],[[1,1,0,1],[3,3,1,2],[2,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,3,1,2],[3,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,3,1,2],[2,4,2,1],[1,1,2,0]],[[1,1,0,1],[2,3,1,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,1],[0,1,2,2],[2,3,1,2],[2,1,2,1]],[[1,2,1,1],[0,1,2,2],[2,4,1,2],[1,1,2,1]],[[1,2,1,1],[0,1,2,2],[3,3,1,2],[1,1,2,1]],[[1,2,1,1],[0,1,2,2],[2,3,1,2],[0,2,2,2]],[[1,2,1,1],[0,1,2,2],[2,3,1,2],[0,2,3,1]],[[1,2,1,1],[0,1,2,2],[2,3,1,2],[0,3,2,1]],[[1,2,1,1],[0,1,2,2],[2,3,1,3],[0,2,2,1]],[[1,2,1,1],[0,1,2,2],[2,4,1,2],[0,2,2,1]],[[1,2,1,1],[0,1,2,2],[3,3,1,2],[0,2,2,1]],[[1,2,1,1],[0,1,2,3],[2,3,1,2],[0,2,2,1]],[[1,2,1,2],[0,1,2,2],[2,3,1,2],[0,2,2,1]],[[1,2,1,1],[0,1,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,1],[0,1,2,2],[2,2,3,2],[2,2,1,0]],[[1,2,1,1],[0,1,2,2],[3,2,3,2],[1,2,1,0]],[[1,2,1,1],[0,1,2,2],[2,2,3,2],[1,3,0,1]],[[1,2,1,1],[0,1,2,2],[2,2,3,2],[2,2,0,1]],[[1,2,1,1],[0,1,2,2],[3,2,3,2],[1,2,0,1]],[[1,2,1,1],[0,1,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[0,1,2,2],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[0,1,2,2],[2,2,3,3],[0,2,2,0]],[[2,1,0,1],[2,3,1,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[3,3,1,2],[2,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,1,2],[3,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,1,2],[2,4,3,0],[0,1,2,1]],[[2,1,0,1],[2,3,1,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[3,3,1,2],[2,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,1,2],[3,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,1,2],[2,4,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,1,2],[2,3,3,0],[0,3,1,1]],[[2,1,0,1],[2,3,1,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[3,3,1,2],[2,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[3,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[2,4,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,1,2],[2,3,3,0],[2,0,2,1]],[[2,1,0,1],[2,3,1,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[3,3,1,2],[2,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[3,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[2,4,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,1,2],[2,3,3,0],[2,1,1,1]],[[2,1,0,1],[2,3,1,2],[2,3,3,0],[1,2,0,1]],[[1,1,0,1],[3,3,1,2],[2,3,3,0],[1,2,0,1]],[[1,1,0,1],[2,3,1,2],[3,3,3,0],[1,2,0,1]],[[1,1,0,1],[2,3,1,2],[2,4,3,0],[1,2,0,1]],[[1,1,0,1],[2,3,1,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,1],[0,1,2,2],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[0,1,2,3],[2,2,3,2],[0,2,2,0]],[[1,2,1,2],[0,1,2,2],[2,2,3,2],[0,2,2,0]],[[1,2,1,1],[0,1,2,2],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[0,1,2,2],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[0,1,2,2],[2,2,4,2],[0,2,1,1]],[[1,2,1,1],[0,1,2,3],[2,2,3,2],[0,2,1,1]],[[2,1,0,1],[2,3,1,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[3,3,1,2],[2,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,1,2],[3,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,1,2],[2,4,3,1],[0,1,2,0]],[[2,1,0,1],[2,3,1,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[3,3,1,2],[2,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,1,2],[3,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,1,2],[2,4,3,1],[0,2,0,1]],[[2,1,0,1],[2,3,1,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[3,3,1,2],[2,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,1,2],[3,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,1,2],[2,4,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,1,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,2],[0,1,2,2],[2,2,3,2],[0,2,1,1]],[[1,2,1,1],[0,1,2,2],[2,2,3,1],[1,3,1,1]],[[1,2,1,1],[0,1,2,2],[2,2,3,1],[2,2,1,1]],[[2,1,0,1],[2,3,1,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[3,3,1,2],[2,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,1,2],[3,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,1,2],[2,4,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,1,2],[2,3,3,1],[2,0,2,0]],[[2,1,0,1],[2,3,1,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[3,3,1,2],[2,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,1,2],[3,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,1,2],[2,4,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,1,2],[2,3,3,1],[2,1,0,1]],[[2,1,0,1],[2,3,1,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[3,3,1,2],[2,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,1,2],[3,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,1,2],[2,4,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,1,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,1],[0,1,2,2],[3,2,3,1],[1,2,1,1]],[[1,2,1,1],[0,1,2,2],[2,2,3,1],[0,2,2,2]],[[1,2,1,1],[0,1,2,2],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[0,1,2,2],[2,2,3,1],[0,3,2,1]],[[1,2,1,1],[0,1,2,2],[2,2,4,1],[0,2,2,1]],[[2,1,0,1],[2,3,1,2],[2,3,3,1],[1,2,0,0]],[[1,1,0,1],[3,3,1,2],[2,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,3,1,2],[3,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,3,1,2],[2,4,3,1],[1,2,0,0]],[[1,1,0,1],[2,3,1,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,1],[0,1,2,2],[2,2,2,2],[1,2,3,0]],[[1,2,1,1],[0,1,2,2],[2,2,2,2],[1,3,2,0]],[[1,2,1,1],[0,1,2,2],[2,2,2,2],[2,2,2,0]],[[1,2,1,1],[0,1,2,2],[3,2,2,2],[1,2,2,0]],[[1,2,1,1],[0,1,2,2],[2,2,2,2],[0,2,2,2]],[[1,2,1,1],[0,1,2,2],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[0,1,2,2],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[0,1,2,2],[2,2,2,3],[0,2,2,1]],[[1,2,1,1],[0,1,2,3],[2,2,2,2],[0,2,2,1]],[[1,2,1,2],[0,1,2,2],[2,2,2,2],[0,2,2,1]],[[1,2,1,1],[0,1,2,2],[2,2,2,1],[1,2,2,2]],[[1,2,1,1],[0,1,2,2],[2,2,2,1],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[2,2,2,1],[1,3,2,1]],[[1,2,1,1],[0,1,2,2],[2,2,2,1],[2,2,2,1]],[[1,2,1,1],[0,1,2,2],[3,2,2,1],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[2,2,1,2],[1,2,2,2]],[[1,2,1,1],[0,1,2,2],[2,2,1,2],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[2,2,1,2],[1,3,2,1]],[[1,2,1,1],[0,1,2,2],[2,2,1,2],[2,2,2,1]],[[1,2,1,1],[0,1,2,2],[2,2,1,3],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[3,2,1,2],[1,2,2,1]],[[1,2,1,1],[0,1,2,3],[2,2,1,2],[1,2,2,1]],[[1,2,1,2],[0,1,2,2],[2,2,1,2],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[2,1,3,2],[1,2,3,0]],[[1,2,1,1],[0,1,2,2],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[0,1,2,2],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[0,1,2,2],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[0,1,2,2],[2,1,4,2],[1,2,2,0]],[[1,2,1,1],[0,1,2,2],[3,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,1,2,3],[2,1,3,2],[1,2,2,0]],[[1,2,1,2],[0,1,2,2],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,1,2,2],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[0,1,2,2],[2,1,3,3],[1,2,1,1]],[[1,2,1,1],[0,1,2,2],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[0,1,2,3],[2,1,3,2],[1,2,1,1]],[[1,2,1,2],[0,1,2,2],[2,1,3,2],[1,2,1,1]],[[1,2,1,1],[0,1,2,2],[2,1,3,2],[0,2,2,2]],[[1,2,1,1],[0,1,2,2],[2,1,3,2],[0,2,3,1]],[[1,2,1,1],[0,1,2,2],[2,1,3,3],[0,2,2,1]],[[1,2,1,1],[0,1,2,3],[2,1,3,2],[0,2,2,1]],[[1,2,1,2],[0,1,2,2],[2,1,3,2],[0,2,2,1]],[[1,2,1,1],[0,1,2,2],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[0,1,2,2],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[0,1,2,2],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[0,1,2,2],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[3,1,3,1],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[0,1,2,2],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[2,1,2,2],[1,3,2,1]],[[1,2,1,1],[0,1,2,2],[2,1,2,2],[2,2,2,1]],[[1,2,1,1],[0,1,2,2],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[3,1,2,2],[1,2,2,1]],[[1,2,1,1],[0,1,2,3],[2,1,2,2],[1,2,2,1]],[[1,2,1,2],[0,1,2,2],[2,1,2,2],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[2,0,3,2],[1,2,2,2]],[[2,1,0,1],[2,3,1,2],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[3,3,1,2],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[2,4,1,2],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[2,3,1,2],[3,3,3,2],[1,0,0,1]],[[2,1,0,1],[2,3,1,2],[2,3,3,2],[1,0,1,0]],[[1,1,0,1],[3,3,1,2],[2,3,3,2],[1,0,1,0]],[[1,1,0,1],[2,4,1,2],[2,3,3,2],[1,0,1,0]],[[1,1,0,1],[2,3,1,2],[3,3,3,2],[1,0,1,0]],[[1,2,1,1],[0,1,2,2],[2,0,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[2,0,3,3],[1,2,2,1]],[[1,2,1,1],[0,1,2,3],[2,0,3,2],[1,2,2,1]],[[1,2,1,2],[0,1,2,2],[2,0,3,2],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,1,2,2],[1,3,3,2],[2,2,1,0]],[[1,2,1,1],[0,1,2,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[0,1,2,2],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[0,1,2,2],[1,4,3,2],[1,2,1,0]],[[1,2,1,1],[0,1,2,3],[1,3,3,2],[1,2,1,0]],[[1,2,1,2],[0,1,2,2],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[0,1,2,2],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[0,1,2,2],[1,3,3,2],[1,3,0,1]],[[1,2,1,1],[0,1,2,2],[1,3,3,2],[2,2,0,1]],[[1,2,1,1],[0,1,2,2],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[0,1,2,2],[1,3,4,2],[1,2,0,1]],[[1,2,1,1],[0,1,2,2],[1,4,3,2],[1,2,0,1]],[[1,2,1,1],[0,1,2,3],[1,3,3,2],[1,2,0,1]],[[1,2,1,2],[0,1,2,2],[1,3,3,2],[1,2,0,1]],[[1,2,1,1],[0,1,2,2],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[0,1,2,2],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[0,1,2,2],[1,3,4,2],[1,1,2,0]],[[1,2,1,1],[0,1,2,2],[1,4,3,2],[1,1,2,0]],[[1,2,1,1],[0,1,2,3],[1,3,3,2],[1,1,2,0]],[[1,2,1,2],[0,1,2,2],[1,3,3,2],[1,1,2,0]],[[1,2,1,1],[0,1,2,2],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[0,1,2,2],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[0,1,2,2],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[0,1,2,2],[1,4,3,2],[1,1,1,1]],[[1,2,1,1],[0,1,2,3],[1,3,3,2],[1,1,1,1]],[[1,2,1,2],[0,1,2,2],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[0,1,2,2],[1,3,3,2],[1,0,2,2]],[[1,2,1,1],[0,1,2,2],[1,3,3,3],[1,0,2,1]],[[1,2,1,1],[0,1,2,2],[1,3,4,2],[1,0,2,1]],[[1,2,1,1],[0,1,2,3],[1,3,3,2],[1,0,2,1]],[[1,2,1,2],[0,1,2,2],[1,3,3,2],[1,0,2,1]],[[1,2,1,1],[0,1,2,2],[1,3,3,1],[1,3,1,1]],[[1,2,1,1],[0,1,2,2],[1,3,3,1],[2,2,1,1]],[[1,2,1,1],[0,1,2,2],[1,3,4,1],[1,2,1,1]],[[1,2,1,1],[0,1,2,2],[1,4,3,1],[1,2,1,1]],[[1,2,1,1],[0,1,2,2],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[0,1,2,2],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[0,1,2,2],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[0,1,2,2],[1,4,3,1],[1,1,2,1]],[[1,2,1,1],[0,1,2,2],[1,3,2,2],[1,2,3,0]],[[1,2,1,1],[0,1,2,2],[1,3,2,2],[1,3,2,0]],[[1,2,1,1],[0,1,2,2],[1,3,2,2],[2,2,2,0]],[[1,2,1,1],[0,1,2,2],[1,4,2,2],[1,2,2,0]],[[1,2,1,1],[0,1,2,2],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[0,1,2,2],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[0,1,2,2],[1,3,2,3],[1,1,2,1]],[[1,2,1,1],[0,1,2,3],[1,3,2,2],[1,1,2,1]],[[1,2,1,2],[0,1,2,2],[1,3,2,2],[1,1,2,1]],[[1,2,1,1],[0,1,2,2],[1,3,2,1],[1,2,2,2]],[[1,2,1,1],[0,1,2,2],[1,3,2,1],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[1,3,2,1],[1,3,2,1]],[[1,2,1,1],[0,1,2,2],[1,3,2,1],[2,2,2,1]],[[1,2,1,1],[0,1,2,2],[1,4,2,1],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[1,3,1,2],[1,2,2,2]],[[1,2,1,1],[0,1,2,2],[1,3,1,2],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[1,3,1,2],[1,3,2,1]],[[1,2,1,1],[0,1,2,2],[1,3,1,2],[2,2,2,1]],[[1,2,1,1],[0,1,2,2],[1,3,1,3],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[1,4,1,2],[1,2,2,1]],[[1,2,1,1],[0,1,2,3],[1,3,1,2],[1,2,2,1]],[[1,2,1,2],[0,1,2,2],[1,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,0],[0,2,4,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,0],[0,2,3,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,0],[0,2,3,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,0],[0,2,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,0],[0,2,3,2],[1,2,2,2]],[[2,1,0,1],[2,3,2,0],[0,3,2,2],[1,2,2,1]],[[1,1,0,1],[3,3,2,0],[0,3,2,2],[1,2,2,1]],[[1,1,0,1],[2,4,2,0],[0,3,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,0],[0,4,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,0],[0,3,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,0],[0,3,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,0],[0,3,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,0],[0,3,2,2],[1,2,2,2]],[[2,1,0,1],[2,3,2,0],[0,3,3,2],[1,1,2,1]],[[1,1,0,1],[3,3,2,0],[0,3,3,2],[1,1,2,1]],[[1,1,0,1],[2,4,2,0],[0,3,3,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,0],[0,4,3,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,0],[0,3,4,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,0],[0,3,3,2],[1,1,3,1]],[[1,1,0,1],[2,3,2,0],[0,3,3,2],[1,1,2,2]],[[2,1,0,1],[2,3,2,0],[0,3,3,2],[1,2,1,1]],[[1,1,0,1],[3,3,2,0],[0,3,3,2],[1,2,1,1]],[[1,1,0,1],[2,4,2,0],[0,3,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,0],[0,4,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,0],[0,3,4,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,0],[0,3,3,2],[2,2,1,1]],[[1,1,0,1],[2,3,2,0],[0,3,3,2],[1,3,1,1]],[[1,1,0,1],[2,3,2,0],[1,2,4,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,0],[1,2,3,2],[0,3,2,1]],[[1,1,0,1],[2,3,2,0],[1,2,3,2],[0,2,3,1]],[[1,1,0,1],[2,3,2,0],[1,2,3,2],[0,2,2,2]],[[2,1,0,1],[2,3,2,0],[1,3,2,2],[0,2,2,1]],[[1,1,0,1],[3,3,2,0],[1,3,2,2],[0,2,2,1]],[[1,1,0,1],[2,4,2,0],[1,3,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,0],[1,4,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,0],[1,3,2,2],[0,3,2,1]],[[1,1,0,1],[2,3,2,0],[1,3,2,2],[0,2,3,1]],[[1,1,0,1],[2,3,2,0],[1,3,2,2],[0,2,2,2]],[[2,1,0,1],[2,3,2,0],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[3,3,2,0],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,4,2,0],[1,3,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,0],[1,4,2,2],[1,1,2,1]],[[2,1,0,1],[2,3,2,0],[1,3,3,2],[0,1,2,1]],[[1,1,0,1],[3,3,2,0],[1,3,3,2],[0,1,2,1]],[[1,1,0,1],[2,4,2,0],[1,3,3,2],[0,1,2,1]],[[1,1,0,1],[2,3,2,0],[1,4,3,2],[0,1,2,1]],[[1,1,0,1],[2,3,2,0],[1,3,4,2],[0,1,2,1]],[[1,1,0,1],[2,3,2,0],[1,3,3,2],[0,1,3,1]],[[1,1,0,1],[2,3,2,0],[1,3,3,2],[0,1,2,2]],[[2,1,0,1],[2,3,2,0],[1,3,3,2],[0,2,1,1]],[[1,1,0,1],[3,3,2,0],[1,3,3,2],[0,2,1,1]],[[1,1,0,1],[2,4,2,0],[1,3,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,2,0],[1,4,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,2,0],[1,3,4,2],[0,2,1,1]],[[1,1,0,1],[2,3,2,0],[1,3,3,2],[0,3,1,1]],[[2,1,0,1],[2,3,2,0],[1,3,3,2],[1,0,2,1]],[[1,1,0,1],[3,3,2,0],[1,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,4,2,0],[1,3,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,0],[1,4,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,0],[1,3,4,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,0],[1,3,3,2],[1,0,3,1]],[[1,1,0,1],[2,3,2,0],[1,3,3,2],[1,0,2,2]],[[2,1,0,1],[2,3,2,0],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[3,3,2,0],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,4,2,0],[1,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,0],[1,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,0],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[0,1,2,2],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[0,1,2,2],[1,2,3,2],[1,3,2,0]],[[1,2,1,1],[0,1,2,2],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[0,1,2,2],[1,2,3,3],[1,2,2,0]],[[2,1,0,1],[2,3,2,0],[2,0,3,2],[1,2,2,1]],[[1,1,0,1],[3,3,2,0],[2,0,3,2],[1,2,2,1]],[[1,1,0,1],[2,4,2,0],[2,0,3,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,0],[3,0,3,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,0],[2,0,4,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,0],[2,0,3,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,0],[2,0,3,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,0],[2,0,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,0],[2,0,3,2],[1,2,2,2]],[[2,1,0,1],[2,3,2,0],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[3,3,2,0],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,4,2,0],[2,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,0],[3,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,0],[2,1,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,0],[2,1,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,0],[2,1,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,0],[2,1,2,2],[1,2,2,2]],[[2,1,0,1],[2,3,2,0],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[3,3,2,0],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,4,2,0],[2,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,0],[3,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,0],[2,1,3,2],[2,2,1,1]],[[1,1,0,1],[2,3,2,0],[2,1,3,2],[1,3,1,1]],[[2,1,0,1],[2,3,2,0],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[3,3,2,0],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[2,4,2,0],[2,2,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,0],[3,2,2,2],[0,2,2,1]],[[2,1,0,1],[2,3,2,0],[2,2,2,2],[1,1,2,1]],[[1,1,0,1],[3,3,2,0],[2,2,2,2],[1,1,2,1]],[[1,1,0,1],[2,4,2,0],[2,2,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,0],[3,2,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,0],[2,2,2,2],[2,1,2,1]],[[2,1,0,1],[2,3,2,0],[2,2,3,2],[0,1,2,1]],[[1,1,0,1],[3,3,2,0],[2,2,3,2],[0,1,2,1]],[[1,1,0,1],[2,4,2,0],[2,2,3,2],[0,1,2,1]],[[1,1,0,1],[2,3,2,0],[3,2,3,2],[0,1,2,1]],[[2,1,0,1],[2,3,2,0],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[3,3,2,0],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,4,2,0],[2,2,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,2,0],[3,2,3,2],[0,2,1,1]],[[2,1,0,1],[2,3,2,0],[2,2,3,2],[1,0,2,1]],[[1,1,0,1],[3,3,2,0],[2,2,3,2],[1,0,2,1]],[[1,1,0,1],[2,4,2,0],[2,2,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,0],[3,2,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,0],[2,2,3,2],[2,0,2,1]],[[2,1,0,1],[2,3,2,0],[2,2,3,2],[1,1,1,1]],[[1,1,0,1],[3,3,2,0],[2,2,3,2],[1,1,1,1]],[[1,1,0,1],[2,4,2,0],[2,2,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,0],[3,2,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,0],[2,2,3,2],[2,1,1,1]],[[1,2,1,1],[0,1,2,2],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[0,1,2,3],[1,2,3,2],[1,2,2,0]],[[1,2,1,2],[0,1,2,2],[1,2,3,2],[1,2,2,0]],[[1,2,1,1],[0,1,2,2],[1,2,3,2],[1,2,1,2]],[[1,2,1,1],[0,1,2,2],[1,2,3,3],[1,2,1,1]],[[1,2,1,1],[0,1,2,2],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[0,1,2,3],[1,2,3,2],[1,2,1,1]],[[1,2,1,2],[0,1,2,2],[1,2,3,2],[1,2,1,1]],[[1,2,1,1],[0,1,2,2],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[0,1,2,2],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[0,1,2,2],[1,2,3,1],[2,2,2,1]],[[1,2,1,1],[0,1,2,2],[1,2,4,1],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[0,1,2,2],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[0,1,2,2],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[0,1,2,2],[1,2,2,3],[1,2,2,1]],[[1,2,1,1],[0,1,2,3],[1,2,2,2],[1,2,2,1]],[[1,2,1,2],[0,1,2,2],[1,2,2,2],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[1,1,3,2],[1,2,2,2]],[[1,2,1,1],[0,1,2,2],[1,1,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[1,1,3,3],[1,2,2,1]],[[1,2,1,1],[0,1,2,3],[1,1,3,2],[1,2,2,1]],[[1,2,1,2],[0,1,2,2],[1,1,3,2],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[0,3,3,2],[1,2,3,0]],[[1,2,1,1],[0,1,2,2],[0,3,3,2],[1,3,2,0]],[[1,2,1,1],[0,1,2,2],[0,3,3,3],[1,2,2,0]],[[1,2,1,1],[0,1,2,2],[0,3,4,2],[1,2,2,0]],[[1,2,1,1],[0,1,2,3],[0,3,3,2],[1,2,2,0]],[[1,2,1,2],[0,1,2,2],[0,3,3,2],[1,2,2,0]],[[1,2,1,1],[0,1,2,2],[0,3,3,2],[1,2,1,2]],[[1,2,1,1],[0,1,2,2],[0,3,3,3],[1,2,1,1]],[[1,2,1,1],[0,1,2,2],[0,3,4,2],[1,2,1,1]],[[1,2,1,1],[0,1,2,3],[0,3,3,2],[1,2,1,1]],[[1,2,1,2],[0,1,2,2],[0,3,3,2],[1,2,1,1]],[[1,2,1,1],[0,1,2,2],[0,3,3,1],[1,2,2,2]],[[1,2,1,1],[0,1,2,2],[0,3,3,1],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[0,3,3,1],[1,3,2,1]],[[1,2,1,1],[0,1,2,2],[0,3,4,1],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[0,3,2,2],[1,2,2,2]],[[1,2,1,1],[0,1,2,2],[0,3,2,2],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[0,3,2,2],[1,3,2,1]],[[1,2,1,1],[0,1,2,2],[0,3,2,3],[1,2,2,1]],[[1,2,1,1],[0,1,2,3],[0,3,2,2],[1,2,2,1]],[[1,2,1,2],[0,1,2,2],[0,3,2,2],[1,2,2,1]],[[1,2,1,1],[0,1,2,2],[0,2,3,2],[1,2,2,2]],[[1,1,0,1],[2,3,2,1],[0,2,2,3],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,2,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,2,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,1],[0,2,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,1],[0,2,2,2],[1,2,2,2]],[[1,1,0,1],[2,3,2,1],[0,2,4,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,2,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,2,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,2,1],[0,2,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,2,1],[0,2,3,1],[1,2,2,2]],[[1,1,0,1],[2,3,2,1],[0,2,4,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,1],[0,2,3,3],[1,2,1,1]],[[1,1,0,1],[2,3,2,1],[0,2,3,2],[1,2,1,2]],[[1,1,0,1],[2,3,2,1],[0,2,4,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[0,2,3,3],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[0,2,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,2,1],[0,2,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,2,1],[0,2,3,2],[1,2,3,0]],[[2,1,0,1],[2,3,2,1],[0,3,1,2],[1,2,2,1]],[[1,1,0,1],[3,3,2,1],[0,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,4,2,1],[0,3,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,4,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,1,3],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,1],[0,3,1,2],[1,2,2,2]],[[2,1,0,1],[2,3,2,1],[0,3,2,1],[1,2,2,1]],[[1,1,0,1],[3,3,2,1],[0,3,2,1],[1,2,2,1]],[[1,1,0,1],[2,4,2,1],[0,3,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,4,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,2,1],[2,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,2,1],[1,3,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,2,1],[1,2,3,1]],[[1,1,0,1],[2,3,2,1],[0,3,2,1],[1,2,2,2]],[[1,1,0,1],[2,3,2,1],[0,3,2,3],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,2,2],[1,1,3,1]],[[1,1,0,1],[2,3,2,1],[0,3,2,2],[1,1,2,2]],[[2,1,0,1],[2,3,2,1],[0,3,2,2],[1,2,2,0]],[[1,1,0,1],[3,3,2,1],[0,3,2,2],[1,2,2,0]],[[1,1,0,1],[2,4,2,1],[0,3,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[0,4,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[0,3,2,2],[2,2,2,0]],[[1,1,0,1],[2,3,2,1],[0,3,2,2],[1,3,2,0]],[[1,1,0,1],[2,3,2,1],[0,3,2,2],[1,2,3,0]],[[2,1,0,1],[2,3,2,1],[0,3,3,0],[1,2,2,1]],[[1,1,0,1],[3,3,2,1],[0,3,3,0],[1,2,2,1]],[[1,1,0,1],[2,4,2,1],[0,3,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,4,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,0],[2,2,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,0],[1,3,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,0],[1,2,3,1]],[[2,1,0,1],[2,3,2,1],[0,3,3,1],[1,1,2,1]],[[1,1,0,1],[3,3,2,1],[0,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,4,2,1],[0,3,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[0,4,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,4,1],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,1],[1,1,3,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,1],[1,1,2,2]],[[2,1,0,1],[2,3,2,1],[0,3,3,1],[1,2,1,1]],[[1,1,0,1],[3,3,2,1],[0,3,3,1],[1,2,1,1]],[[1,1,0,1],[2,4,2,1],[0,3,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,2,1],[0,4,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,2,1],[0,3,4,1],[1,2,1,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,1],[2,2,1,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,1],[1,3,1,1]],[[1,1,0,1],[2,3,2,1],[0,3,4,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,3],[1,0,2,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,2],[1,0,2,2]],[[2,1,0,1],[2,3,2,1],[0,3,3,2],[1,1,1,1]],[[1,1,0,1],[3,3,2,1],[0,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,4,2,1],[0,3,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,1],[0,4,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,1],[0,3,4,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,3],[1,1,1,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,2],[1,1,1,2]],[[2,1,0,1],[2,3,2,1],[0,3,3,2],[1,1,2,0]],[[1,1,0,1],[3,3,2,1],[0,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,4,2,1],[0,3,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,1],[0,4,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,1],[0,3,4,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,1],[0,3,3,3],[1,1,2,0]],[[1,1,0,1],[2,3,2,1],[0,3,3,2],[1,1,3,0]],[[2,1,0,1],[2,3,2,1],[0,3,3,2],[1,2,0,1]],[[1,1,0,1],[3,3,2,1],[0,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,4,2,1],[0,3,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,2,1],[0,4,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,2,1],[0,3,4,2],[1,2,0,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,3],[1,2,0,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,2],[2,2,0,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,2],[1,3,0,1]],[[1,1,0,1],[2,3,2,1],[0,3,3,2],[1,2,0,2]],[[2,1,0,1],[2,3,2,1],[0,3,3,2],[1,2,1,0]],[[1,1,0,1],[3,3,2,1],[0,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,4,2,1],[0,3,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,2,1],[0,4,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,2,1],[0,3,4,2],[1,2,1,0]],[[1,1,0,1],[2,3,2,1],[0,3,3,3],[1,2,1,0]],[[1,1,0,1],[2,3,2,1],[0,3,3,2],[2,2,1,0]],[[1,1,0,1],[2,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,1],[0,1,2,2],[0,2,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,2,2],[0,2,3,3],[1,2,2,1]],[[1,2,1,1],[0,1,2,3],[0,2,3,2],[1,2,2,1]],[[1,2,1,2],[0,1,2,2],[0,2,3,2],[1,2,2,1]],[[1,2,1,1],[0,1,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,1,1],[0,1,1,2],[2,3,3,2],[1,0,3,1]],[[1,2,1,1],[0,1,1,2],[2,3,3,3],[1,0,2,1]],[[1,1,0,1],[2,3,2,1],[1,2,2,3],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[1,2,2,2],[0,3,2,1]],[[1,1,0,1],[2,3,2,1],[1,2,2,2],[0,2,3,1]],[[1,1,0,1],[2,3,2,1],[1,2,2,2],[0,2,2,2]],[[1,1,0,1],[2,3,2,1],[1,2,4,1],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[1,2,3,1],[0,3,2,1]],[[1,1,0,1],[2,3,2,1],[1,2,3,1],[0,2,3,1]],[[1,1,0,1],[2,3,2,1],[1,2,3,1],[0,2,2,2]],[[1,1,0,1],[2,3,2,1],[1,2,4,2],[0,2,1,1]],[[1,1,0,1],[2,3,2,1],[1,2,3,3],[0,2,1,1]],[[1,1,0,1],[2,3,2,1],[1,2,3,2],[0,2,1,2]],[[1,1,0,1],[2,3,2,1],[1,2,4,2],[0,2,2,0]],[[1,1,0,1],[2,3,2,1],[1,2,3,3],[0,2,2,0]],[[1,1,0,1],[2,3,2,1],[1,2,3,2],[0,3,2,0]],[[1,1,0,1],[2,3,2,1],[1,2,3,2],[0,2,3,0]],[[1,2,1,1],[0,1,1,2],[2,3,3,2],[0,1,2,2]],[[1,2,1,1],[0,1,1,2],[2,3,3,2],[0,1,3,1]],[[2,1,0,1],[2,3,2,1],[1,3,1,2],[0,2,2,1]],[[1,1,0,1],[3,3,2,1],[1,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,4,2,1],[1,3,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[1,4,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,1,3],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,1,2],[0,3,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,1,2],[0,2,3,1]],[[1,1,0,1],[2,3,2,1],[1,3,1,2],[0,2,2,2]],[[2,1,0,1],[2,3,2,1],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[3,3,2,1],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,4,2,1],[1,3,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[1,4,1,2],[1,1,2,1]],[[2,1,0,1],[2,3,2,1],[1,3,2,1],[0,2,2,1]],[[1,1,0,1],[3,3,2,1],[1,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,4,2,1],[1,3,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[1,4,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,2,1],[0,3,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,2,1],[0,2,3,1]],[[1,1,0,1],[2,3,2,1],[1,3,2,1],[0,2,2,2]],[[2,1,0,1],[2,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,1,0,1],[3,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,4,2,1],[1,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[1,4,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,2,3],[0,1,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,2,2],[0,1,3,1]],[[1,1,0,1],[2,3,2,1],[1,3,2,2],[0,1,2,2]],[[2,1,0,1],[2,3,2,1],[1,3,2,2],[0,2,2,0]],[[1,1,0,1],[3,3,2,1],[1,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,4,2,1],[1,3,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,2,1],[1,4,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,2,1],[1,3,2,2],[0,3,2,0]],[[1,1,0,1],[2,3,2,1],[1,3,2,2],[0,2,3,0]],[[1,1,0,1],[2,3,2,1],[1,3,2,3],[1,0,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,2,2],[1,0,3,1]],[[1,1,0,1],[2,3,2,1],[1,3,2,2],[1,0,2,2]],[[2,1,0,1],[2,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[3,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,4,2,1],[1,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,1],[1,4,2,2],[1,1,2,0]],[[1,2,1,1],[0,1,1,2],[2,3,3,3],[0,1,2,1]],[[1,2,1,1],[0,1,1,2],[2,2,3,2],[0,2,2,2]],[[1,2,1,1],[0,1,1,2],[2,2,3,2],[0,2,3,1]],[[1,2,1,1],[0,1,1,2],[2,2,3,2],[0,3,2,1]],[[2,1,0,1],[2,3,2,1],[1,3,3,0],[0,2,2,1]],[[1,1,0,1],[3,3,2,1],[1,3,3,0],[0,2,2,1]],[[1,1,0,1],[2,4,2,1],[1,3,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[1,4,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,0],[0,3,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,0],[0,2,3,1]],[[2,1,0,1],[2,3,2,1],[1,3,3,0],[1,1,2,1]],[[1,1,0,1],[3,3,2,1],[1,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,4,2,1],[1,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[1,4,3,0],[1,1,2,1]],[[2,1,0,1],[2,3,2,1],[1,3,3,1],[0,1,2,1]],[[1,1,0,1],[3,3,2,1],[1,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,4,2,1],[1,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,2,1],[1,4,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,4,1],[0,1,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,1],[0,1,3,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,1],[0,1,2,2]],[[2,1,0,1],[2,3,2,1],[1,3,3,1],[0,2,1,1]],[[1,1,0,1],[3,3,2,1],[1,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,4,2,1],[1,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,2,1],[1,4,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,2,1],[1,3,4,1],[0,2,1,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,1],[0,3,1,1]],[[2,1,0,1],[2,3,2,1],[1,3,3,1],[1,0,2,1]],[[1,1,0,1],[3,3,2,1],[1,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,4,2,1],[1,3,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,2,1],[1,4,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,4,1],[1,0,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,1],[1,0,3,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,1],[1,0,2,2]],[[2,1,0,1],[2,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[3,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,4,2,1],[1,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,2,1],[1,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,2,1],[1,3,4,1],[1,1,1,1]],[[2,1,0,1],[2,3,2,1],[1,3,3,1],[1,2,0,1]],[[1,1,0,1],[3,3,2,1],[1,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,4,2,1],[1,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,2,1],[1,4,3,1],[1,2,0,1]],[[1,2,1,1],[0,1,1,2],[2,2,3,3],[0,2,2,1]],[[1,2,1,1],[0,1,1,2],[2,1,3,2],[1,2,2,2]],[[1,2,1,1],[0,1,1,2],[2,1,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,1,2],[2,1,3,2],[1,3,2,1]],[[1,2,1,1],[0,1,1,2],[2,1,3,2],[2,2,2,1]],[[1,2,1,1],[0,1,1,2],[2,1,3,3],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,4,2],[0,0,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,3],[0,0,2,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,2],[0,0,2,2]],[[2,1,0,1],[2,3,2,1],[1,3,3,2],[0,1,1,1]],[[1,1,0,1],[3,3,2,1],[1,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,4,2,1],[1,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,1],[1,4,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,1],[1,3,4,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,3],[0,1,1,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,2],[0,1,1,2]],[[2,1,0,1],[2,3,2,1],[1,3,3,2],[0,1,2,0]],[[1,1,0,1],[3,3,2,1],[1,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,4,2,1],[1,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,1],[1,4,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,1],[1,3,4,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,1],[1,3,3,3],[0,1,2,0]],[[1,1,0,1],[2,3,2,1],[1,3,3,2],[0,1,3,0]],[[2,1,0,1],[2,3,2,1],[1,3,3,2],[0,2,0,1]],[[1,1,0,1],[3,3,2,1],[1,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,4,2,1],[1,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,1],[1,4,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,1],[1,3,4,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,3],[0,2,0,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,2],[0,3,0,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,2],[0,2,0,2]],[[2,1,0,1],[2,3,2,1],[1,3,3,2],[0,2,1,0]],[[1,1,0,1],[3,3,2,1],[1,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,4,2,1],[1,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,1],[1,4,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,1],[1,3,4,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,1],[1,3,3,3],[0,2,1,0]],[[1,1,0,1],[2,3,2,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,1],[0,1,1,2],[1,3,3,2],[1,1,2,2]],[[1,2,1,1],[0,1,1,2],[1,3,3,2],[1,1,3,1]],[[1,2,1,1],[0,1,1,2],[1,3,3,3],[1,1,2,1]],[[1,2,1,1],[0,1,1,2],[1,2,3,2],[1,2,2,2]],[[1,2,1,1],[0,1,1,2],[1,2,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,1,2],[1,2,3,2],[1,3,2,1]],[[1,2,1,1],[0,1,1,2],[1,2,3,2],[2,2,2,1]],[[2,1,0,1],[2,3,2,1],[1,3,3,2],[1,0,1,1]],[[1,1,0,1],[3,3,2,1],[1,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,4,2,1],[1,3,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,2,1],[1,4,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,2,1],[1,3,4,2],[1,0,1,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,3],[1,0,1,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,2],[1,0,1,2]],[[2,1,0,1],[2,3,2,1],[1,3,3,2],[1,0,2,0]],[[1,1,0,1],[3,3,2,1],[1,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,4,2,1],[1,3,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,2,1],[1,4,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,2,1],[1,3,4,2],[1,0,2,0]],[[1,1,0,1],[2,3,2,1],[1,3,3,3],[1,0,2,0]],[[1,1,0,1],[2,3,2,1],[1,3,3,2],[1,0,3,0]],[[2,1,0,1],[2,3,2,1],[1,3,3,2],[1,1,0,1]],[[1,1,0,1],[3,3,2,1],[1,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,4,2,1],[1,3,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,2,1],[1,4,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,2,1],[1,3,4,2],[1,1,0,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,3],[1,1,0,1]],[[1,1,0,1],[2,3,2,1],[1,3,3,2],[1,1,0,2]],[[2,1,0,1],[2,3,2,1],[1,3,3,2],[1,1,1,0]],[[1,1,0,1],[3,3,2,1],[1,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,4,2,1],[1,3,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,2,1],[1,4,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,2,1],[1,3,4,2],[1,1,1,0]],[[1,1,0,1],[2,3,2,1],[1,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,1,1,2],[1,2,3,3],[1,2,2,1]],[[1,2,1,1],[0,1,1,2],[0,3,3,2],[1,2,2,2]],[[1,2,1,1],[0,1,1,2],[0,3,3,2],[1,2,3,1]],[[1,2,1,1],[0,1,1,2],[0,3,3,2],[1,3,2,1]],[[1,2,1,1],[0,1,1,2],[0,3,3,3],[1,2,2,1]],[[2,1,0,1],[2,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,1,0,1],[3,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,4,2,1],[1,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,1,1],[0,0,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,1],[0,0,3,2],[2,3,4,2],[1,1,1,0]],[[1,2,1,1],[0,0,3,3],[2,3,3,2],[1,1,1,0]],[[1,2,1,2],[0,0,3,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,1],[0,0,3,2],[2,3,3,2],[1,1,0,2]],[[1,2,1,1],[0,0,3,2],[2,3,3,3],[1,1,0,1]],[[1,2,1,1],[0,0,3,2],[2,3,4,2],[1,1,0,1]],[[1,2,1,1],[0,0,3,3],[2,3,3,2],[1,1,0,1]],[[1,2,1,2],[0,0,3,2],[2,3,3,2],[1,1,0,1]],[[2,1,0,1],[2,3,2,1],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[3,3,2,1],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,4,2,1],[2,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[3,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,0,2,3],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,0,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,0,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,1],[2,0,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,1],[2,0,2,2],[1,2,2,2]],[[2,1,0,1],[2,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[3,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,4,2,1],[2,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[3,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,0,4,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,0,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,0,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,2,1],[2,0,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,2,1],[2,0,3,1],[1,2,2,2]],[[1,1,0,1],[2,3,2,1],[2,0,4,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,1],[2,0,3,3],[1,2,1,1]],[[1,1,0,1],[2,3,2,1],[2,0,3,2],[1,2,1,2]],[[2,1,0,1],[2,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[3,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,4,2,1],[2,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[3,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[2,0,4,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[2,0,3,3],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[2,0,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,2,1],[2,0,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,2,1],[2,0,3,2],[1,2,3,0]],[[2,1,0,1],[2,3,2,1],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[3,3,2,1],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,4,2,1],[2,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[3,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,1,1,3],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,1,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,1,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,1],[2,1,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,1],[2,1,1,2],[1,2,2,2]],[[2,1,0,1],[2,3,2,1],[2,1,2,1],[1,2,2,1]],[[1,1,0,1],[3,3,2,1],[2,1,2,1],[1,2,2,1]],[[1,1,0,1],[2,4,2,1],[2,1,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[3,1,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,1,2,1],[2,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,1,2,1],[1,3,2,1]],[[1,1,0,1],[2,3,2,1],[2,1,2,1],[1,2,3,1]],[[1,1,0,1],[2,3,2,1],[2,1,2,1],[1,2,2,2]],[[2,1,0,1],[2,3,2,1],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[3,3,2,1],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,4,2,1],[2,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[3,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[2,1,2,2],[2,2,2,0]],[[1,1,0,1],[2,3,2,1],[2,1,2,2],[1,3,2,0]],[[1,1,0,1],[2,3,2,1],[2,1,2,2],[1,2,3,0]],[[2,1,0,1],[2,3,2,1],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[3,3,2,1],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,4,2,1],[2,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[3,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,1,3,0],[2,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,1,3,0],[1,3,2,1]],[[1,1,0,1],[2,3,2,1],[2,1,3,0],[1,2,3,1]],[[2,1,0,1],[2,3,2,1],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[3,3,2,1],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,4,2,1],[2,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,2,1],[3,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,2,1],[2,1,3,1],[2,2,1,1]],[[1,1,0,1],[2,3,2,1],[2,1,3,1],[1,3,1,1]],[[2,1,0,1],[2,3,2,1],[2,1,3,2],[1,2,0,1]],[[1,1,0,1],[3,3,2,1],[2,1,3,2],[1,2,0,1]],[[1,1,0,1],[2,4,2,1],[2,1,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,2,1],[3,1,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,2,1],[2,1,3,2],[2,2,0,1]],[[1,1,0,1],[2,3,2,1],[2,1,3,2],[1,3,0,1]],[[2,1,0,1],[2,3,2,1],[2,1,3,2],[1,2,1,0]],[[1,1,0,1],[3,3,2,1],[2,1,3,2],[1,2,1,0]],[[1,1,0,1],[2,4,2,1],[2,1,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,2,1],[3,1,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,2,1],[2,1,3,2],[2,2,1,0]],[[1,1,0,1],[2,3,2,1],[2,1,3,2],[1,3,1,0]],[[1,2,1,1],[0,0,3,2],[2,3,3,2],[1,0,3,0]],[[1,2,1,1],[0,0,3,2],[2,3,3,3],[1,0,2,0]],[[1,2,1,1],[0,0,3,2],[2,3,4,2],[1,0,2,0]],[[1,2,1,1],[0,0,3,3],[2,3,3,2],[1,0,2,0]],[[1,2,1,2],[0,0,3,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,1],[0,0,3,2],[2,3,3,2],[1,0,1,2]],[[1,2,1,1],[0,0,3,2],[2,3,3,3],[1,0,1,1]],[[2,1,0,1],[2,3,2,1],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[3,3,2,1],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[2,4,2,1],[2,2,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[3,2,1,2],[0,2,2,1]],[[2,1,0,1],[2,3,2,1],[2,2,1,2],[1,1,2,1]],[[1,1,0,1],[3,3,2,1],[2,2,1,2],[1,1,2,1]],[[1,1,0,1],[2,4,2,1],[2,2,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[3,2,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[2,2,1,2],[2,1,2,1]],[[2,1,0,1],[2,3,2,1],[2,2,2,1],[0,2,2,1]],[[1,1,0,1],[3,3,2,1],[2,2,2,1],[0,2,2,1]],[[1,1,0,1],[2,4,2,1],[2,2,2,1],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[3,2,2,1],[0,2,2,1]],[[2,1,0,1],[2,3,2,1],[2,2,2,1],[1,1,2,1]],[[1,1,0,1],[3,3,2,1],[2,2,2,1],[1,1,2,1]],[[1,1,0,1],[2,4,2,1],[2,2,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[3,2,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[2,2,2,1],[2,1,2,1]],[[2,1,0,1],[2,3,2,1],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[3,3,2,1],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[2,4,2,1],[2,2,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,2,1],[3,2,2,2],[0,2,2,0]],[[2,1,0,1],[2,3,2,1],[2,2,2,2],[1,1,2,0]],[[1,1,0,1],[3,3,2,1],[2,2,2,2],[1,1,2,0]],[[1,1,0,1],[2,4,2,1],[2,2,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,1],[3,2,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,1],[2,2,2,2],[2,1,2,0]],[[1,2,1,1],[0,0,3,2],[2,3,4,2],[1,0,1,1]],[[1,2,1,1],[0,0,3,3],[2,3,3,2],[1,0,1,1]],[[1,2,1,2],[0,0,3,2],[2,3,3,2],[1,0,1,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,0],[0,2,2,1]],[[1,1,0,1],[3,3,2,1],[2,2,3,0],[0,2,2,1]],[[1,1,0,1],[2,4,2,1],[2,2,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,2,1],[3,2,3,0],[0,2,2,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,0],[1,1,2,1]],[[1,1,0,1],[3,3,2,1],[2,2,3,0],[1,1,2,1]],[[1,1,0,1],[2,4,2,1],[2,2,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[3,2,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,2,1],[2,2,3,0],[2,1,2,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,1,0,1],[3,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,1,0,1],[2,4,2,1],[2,2,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,2,1],[3,2,3,1],[0,1,2,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[3,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,4,2,1],[2,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,2,1],[3,2,3,1],[0,2,1,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,1,0,1],[3,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,4,2,1],[2,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,2,1],[3,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,2,1],[2,2,3,1],[2,0,2,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,1,0,1],[3,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,4,2,1],[2,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,2,1],[3,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,2,1],[2,2,3,1],[2,1,1,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,1],[1,2,0,1]],[[1,1,0,1],[3,3,2,1],[2,2,3,1],[1,2,0,1]],[[1,1,0,1],[2,4,2,1],[2,2,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,2,1],[3,2,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,2,1],[2,2,3,1],[2,2,0,1]],[[1,2,1,1],[0,0,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,1],[0,0,3,2],[2,3,4,2],[0,2,1,0]],[[1,2,1,1],[0,0,3,3],[2,3,3,2],[0,2,1,0]],[[1,2,1,2],[0,0,3,2],[2,3,3,2],[0,2,1,0]],[[2,1,0,1],[2,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,1,0,1],[3,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,1,0,1],[2,4,2,1],[2,2,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,1],[3,2,3,2],[0,1,1,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,1,0,1],[3,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,1,0,1],[2,4,2,1],[2,2,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,1],[3,2,3,2],[0,1,2,0]],[[2,1,0,1],[2,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,1,0,1],[3,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,1,0,1],[2,4,2,1],[2,2,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,1],[3,2,3,2],[0,2,0,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,1,0,1],[3,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,1,0,1],[2,4,2,1],[2,2,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,1],[3,2,3,2],[0,2,1,0]],[[1,2,1,1],[0,0,3,2],[2,3,3,2],[0,2,0,2]],[[1,2,1,1],[0,0,3,2],[2,3,3,3],[0,2,0,1]],[[1,2,1,1],[0,0,3,2],[2,3,4,2],[0,2,0,1]],[[1,2,1,1],[0,0,3,3],[2,3,3,2],[0,2,0,1]],[[1,2,1,2],[0,0,3,2],[2,3,3,2],[0,2,0,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,1,0,1],[3,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,1,0,1],[2,4,2,1],[2,2,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,2,1],[3,2,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,2,1],[2,2,3,2],[2,0,1,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,1,0,1],[3,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,1,0,1],[2,4,2,1],[2,2,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,2,1],[3,2,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,2,1],[2,2,3,2],[2,0,2,0]],[[2,1,0,1],[2,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,1,0,1],[3,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,4,2,1],[2,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,2,1],[3,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,2,1],[2,2,3,2],[2,1,0,1]],[[2,1,0,1],[2,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,1,0,1],[3,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,1,0,1],[2,4,2,1],[2,2,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,2,1],[3,2,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,2,1],[2,2,3,2],[2,1,1,0]],[[1,2,1,1],[0,0,3,2],[2,3,3,2],[0,1,3,0]],[[1,2,1,1],[0,0,3,2],[2,3,3,3],[0,1,2,0]],[[1,2,1,1],[0,0,3,2],[2,3,4,2],[0,1,2,0]],[[2,1,0,1],[2,3,2,1],[2,2,3,2],[1,2,0,0]],[[1,1,0,1],[3,3,2,1],[2,2,3,2],[1,2,0,0]],[[1,1,0,1],[2,4,2,1],[2,2,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,2,1],[3,2,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,2,1],[2,2,3,2],[2,2,0,0]],[[1,2,1,1],[0,0,3,3],[2,3,3,2],[0,1,2,0]],[[1,2,1,2],[0,0,3,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,1],[0,0,3,2],[2,3,3,2],[0,1,1,2]],[[1,2,1,1],[0,0,3,2],[2,3,3,3],[0,1,1,1]],[[1,2,1,1],[0,0,3,2],[2,3,4,2],[0,1,1,1]],[[1,2,1,1],[0,0,3,3],[2,3,3,2],[0,1,1,1]],[[1,2,1,2],[0,0,3,2],[2,3,3,2],[0,1,1,1]],[[1,2,1,1],[0,0,3,2],[2,3,3,2],[0,0,2,2]],[[1,2,1,1],[0,0,3,2],[2,3,3,3],[0,0,2,1]],[[1,2,1,1],[0,0,3,2],[2,3,4,2],[0,0,2,1]],[[1,2,1,1],[0,0,3,3],[2,3,3,2],[0,0,2,1]],[[1,2,1,2],[0,0,3,2],[2,3,3,2],[0,0,2,1]],[[1,2,1,1],[0,0,3,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,1],[0,0,3,2],[2,3,3,1],[1,0,3,1]],[[1,2,1,1],[0,0,3,2],[2,3,4,1],[1,0,2,1]],[[1,2,1,1],[0,0,3,2],[2,3,3,1],[0,2,3,0]],[[1,2,1,1],[0,0,3,2],[2,3,3,1],[0,3,2,0]],[[2,1,0,1],[2,3,2,1],[2,3,0,1],[1,2,2,1]],[[1,1,0,1],[3,3,2,1],[2,3,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[3,3,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,3,0,1],[2,2,2,1]],[[1,1,0,1],[2,3,2,1],[2,3,0,1],[1,3,2,1]],[[2,1,0,1],[2,3,2,1],[2,3,0,2],[1,2,2,0]],[[1,1,0,1],[3,3,2,1],[2,3,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[3,3,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,1],[2,3,0,2],[2,2,2,0]],[[1,1,0,1],[2,3,2,1],[2,3,0,2],[1,3,2,0]],[[1,2,1,1],[0,0,3,2],[2,3,4,1],[0,2,2,0]],[[1,2,1,1],[0,0,3,2],[2,3,3,1],[0,1,2,2]],[[1,2,1,1],[0,0,3,2],[2,3,3,1],[0,1,3,1]],[[1,2,1,1],[0,0,3,2],[2,3,4,1],[0,1,2,1]],[[1,2,1,1],[0,0,3,2],[2,3,3,0],[0,2,2,2]],[[1,2,1,1],[0,0,3,2],[2,3,3,0],[0,2,3,1]],[[1,2,1,1],[0,0,3,2],[2,3,3,0],[0,3,2,1]],[[1,2,1,1],[0,0,3,2],[2,3,4,0],[0,2,2,1]],[[1,2,1,1],[0,0,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,1],[0,0,3,2],[2,3,2,2],[1,0,3,1]],[[1,2,1,1],[0,0,3,2],[2,3,2,3],[1,0,2,1]],[[1,2,1,1],[0,0,3,3],[2,3,2,2],[1,0,2,1]],[[1,2,1,2],[0,0,3,2],[2,3,2,2],[1,0,2,1]],[[1,2,1,1],[0,0,3,2],[2,3,2,2],[0,1,2,2]],[[1,2,1,1],[0,0,3,2],[2,3,2,2],[0,1,3,1]],[[1,2,1,1],[0,0,3,2],[2,3,2,3],[0,1,2,1]],[[1,2,1,1],[0,0,3,3],[2,3,2,2],[0,1,2,1]],[[1,2,1,2],[0,0,3,2],[2,3,2,2],[0,1,2,1]],[[1,2,1,1],[0,0,3,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,1],[0,0,3,2],[2,2,3,2],[0,3,2,0]],[[1,2,1,1],[0,0,3,2],[2,2,3,3],[0,2,2,0]],[[1,2,1,1],[0,0,3,2],[2,2,4,2],[0,2,2,0]],[[1,2,1,1],[0,0,3,3],[2,2,3,2],[0,2,2,0]],[[1,2,1,2],[0,0,3,2],[2,2,3,2],[0,2,2,0]],[[1,2,1,1],[0,0,3,2],[2,2,3,2],[0,2,1,2]],[[1,2,1,1],[0,0,3,2],[2,2,3,3],[0,2,1,1]],[[1,2,1,1],[0,0,3,2],[2,2,4,2],[0,2,1,1]],[[1,2,1,1],[0,0,3,3],[2,2,3,2],[0,2,1,1]],[[1,2,1,2],[0,0,3,2],[2,2,3,2],[0,2,1,1]],[[1,2,1,1],[0,0,3,2],[2,2,3,1],[0,2,2,2]],[[1,2,1,1],[0,0,3,2],[2,2,3,1],[0,2,3,1]],[[1,2,1,1],[0,0,3,2],[2,2,3,1],[0,3,2,1]],[[2,1,0,1],[2,3,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[3,3,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,4,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,2,1],[3,3,3,1],[1,0,1,1]],[[1,2,1,1],[0,0,3,2],[2,2,4,1],[0,2,2,1]],[[1,2,1,1],[0,0,3,2],[2,2,2,2],[0,2,2,2]],[[1,2,1,1],[0,0,3,2],[2,2,2,2],[0,2,3,1]],[[1,2,1,1],[0,0,3,2],[2,2,2,2],[0,3,2,1]],[[1,2,1,1],[0,0,3,2],[2,2,2,3],[0,2,2,1]],[[1,2,1,1],[0,0,3,3],[2,2,2,2],[0,2,2,1]],[[1,2,1,2],[0,0,3,2],[2,2,2,2],[0,2,2,1]],[[1,2,1,1],[0,0,3,2],[2,1,3,2],[1,2,3,0]],[[1,2,1,1],[0,0,3,2],[2,1,3,2],[1,3,2,0]],[[1,2,1,1],[0,0,3,2],[2,1,3,2],[2,2,2,0]],[[1,2,1,1],[0,0,3,2],[2,1,3,3],[1,2,2,0]],[[1,2,1,1],[0,0,3,2],[2,1,4,2],[1,2,2,0]],[[1,2,1,1],[0,0,3,3],[2,1,3,2],[1,2,2,0]],[[1,2,1,2],[0,0,3,2],[2,1,3,2],[1,2,2,0]],[[1,2,1,1],[0,0,3,2],[2,1,3,2],[1,2,1,2]],[[1,2,1,1],[0,0,3,2],[2,1,3,3],[1,2,1,1]],[[1,2,1,1],[0,0,3,2],[2,1,4,2],[1,2,1,1]],[[1,2,1,1],[0,0,3,3],[2,1,3,2],[1,2,1,1]],[[1,2,1,2],[0,0,3,2],[2,1,3,2],[1,2,1,1]],[[1,2,1,1],[0,0,3,2],[2,1,3,2],[0,2,2,2]],[[1,2,1,1],[0,0,3,2],[2,1,3,2],[0,2,3,1]],[[1,2,1,1],[0,0,3,2],[2,1,3,3],[0,2,2,1]],[[1,2,1,1],[0,0,3,3],[2,1,3,2],[0,2,2,1]],[[1,2,1,2],[0,0,3,2],[2,1,3,2],[0,2,2,1]],[[1,2,1,1],[0,0,3,2],[2,1,3,1],[1,2,2,2]],[[1,2,1,1],[0,0,3,2],[2,1,3,1],[1,2,3,1]],[[1,2,1,1],[0,0,3,2],[2,1,3,1],[1,3,2,1]],[[1,2,1,1],[0,0,3,2],[2,1,3,1],[2,2,2,1]],[[1,2,1,1],[0,0,3,2],[2,1,4,1],[1,2,2,1]],[[1,2,1,1],[0,0,3,2],[2,1,2,2],[1,2,2,2]],[[1,2,1,1],[0,0,3,2],[2,1,2,2],[1,2,3,1]],[[1,2,1,1],[0,0,3,2],[2,1,2,2],[1,3,2,1]],[[1,2,1,1],[0,0,3,2],[2,1,2,2],[2,2,2,1]],[[1,2,1,1],[0,0,3,2],[2,1,2,3],[1,2,2,1]],[[1,2,1,1],[0,0,3,3],[2,1,2,2],[1,2,2,1]],[[1,2,1,2],[0,0,3,2],[2,1,2,2],[1,2,2,1]],[[1,2,1,1],[0,0,3,2],[2,0,3,2],[1,2,2,2]],[[1,2,1,1],[0,0,3,2],[2,0,3,2],[1,2,3,1]],[[1,2,1,1],[0,0,3,2],[2,0,3,3],[1,2,2,1]],[[1,2,1,1],[0,0,3,3],[2,0,3,2],[1,2,2,1]],[[1,2,1,2],[0,0,3,2],[2,0,3,2],[1,2,2,1]],[[2,1,0,1],[2,3,2,1],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[3,3,2,1],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[2,4,2,1],[2,3,3,2],[1,0,0,1]],[[1,1,0,1],[2,3,2,1],[3,3,3,2],[1,0,0,1]],[[2,1,0,1],[2,3,2,1],[2,3,3,2],[1,0,1,0]],[[1,1,0,1],[3,3,2,1],[2,3,3,2],[1,0,1,0]],[[1,1,0,1],[2,4,2,1],[2,3,3,2],[1,0,1,0]],[[1,1,0,1],[2,3,2,1],[3,3,3,2],[1,0,1,0]],[[1,2,1,1],[0,0,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,1],[0,0,3,2],[1,3,4,2],[1,2,1,0]],[[1,2,1,1],[0,0,3,3],[1,3,3,2],[1,2,1,0]],[[1,2,1,2],[0,0,3,2],[1,3,3,2],[1,2,1,0]],[[1,2,1,1],[0,0,3,2],[1,3,3,2],[1,2,0,2]],[[1,2,1,1],[0,0,3,2],[1,3,3,3],[1,2,0,1]],[[1,2,1,1],[0,0,3,2],[1,3,4,2],[1,2,0,1]],[[1,2,1,1],[0,0,3,3],[1,3,3,2],[1,2,0,1]],[[1,2,1,2],[0,0,3,2],[1,3,3,2],[1,2,0,1]],[[1,2,1,1],[0,0,3,2],[1,3,3,2],[1,1,3,0]],[[1,2,1,1],[0,0,3,2],[1,3,3,3],[1,1,2,0]],[[1,2,1,1],[0,0,3,2],[1,3,4,2],[1,1,2,0]],[[1,2,1,1],[0,0,3,3],[1,3,3,2],[1,1,2,0]],[[1,2,1,2],[0,0,3,2],[1,3,3,2],[1,1,2,0]],[[1,2,1,1],[0,0,3,2],[1,3,3,2],[1,1,1,2]],[[1,2,1,1],[0,0,3,2],[1,3,3,3],[1,1,1,1]],[[1,2,1,1],[0,0,3,2],[1,3,4,2],[1,1,1,1]],[[1,2,1,1],[0,0,3,3],[1,3,3,2],[1,1,1,1]],[[1,2,1,2],[0,0,3,2],[1,3,3,2],[1,1,1,1]],[[1,2,1,1],[0,0,3,2],[1,3,3,2],[1,0,2,2]],[[1,2,1,1],[0,0,3,2],[1,3,3,3],[1,0,2,1]],[[1,2,1,1],[0,0,3,2],[1,3,4,2],[1,0,2,1]],[[1,2,1,1],[0,0,3,3],[1,3,3,2],[1,0,2,1]],[[1,2,1,2],[0,0,3,2],[1,3,3,2],[1,0,2,1]],[[1,2,1,1],[0,0,3,2],[1,3,3,1],[1,2,3,0]],[[1,2,1,1],[0,0,3,2],[1,3,3,1],[1,3,2,0]],[[1,2,1,1],[0,0,3,2],[1,3,3,1],[2,2,2,0]],[[1,2,1,1],[0,0,3,2],[1,3,4,1],[1,2,2,0]],[[1,2,1,1],[0,0,3,2],[1,3,3,1],[1,1,2,2]],[[1,2,1,1],[0,0,3,2],[1,3,3,1],[1,1,3,1]],[[1,2,1,1],[0,0,3,2],[1,3,4,1],[1,1,2,1]],[[1,2,1,1],[0,0,3,2],[1,3,3,0],[1,2,2,2]],[[1,2,1,1],[0,0,3,2],[1,3,3,0],[1,2,3,1]],[[1,2,1,1],[0,0,3,2],[1,3,3,0],[1,3,2,1]],[[1,2,1,1],[0,0,3,2],[1,3,3,0],[2,2,2,1]],[[1,2,1,1],[0,0,3,2],[1,3,4,0],[1,2,2,1]],[[1,2,1,1],[0,0,3,2],[1,3,2,2],[1,1,2,2]],[[1,2,1,1],[0,0,3,2],[1,3,2,2],[1,1,3,1]],[[1,2,1,1],[0,0,3,2],[1,3,2,3],[1,1,2,1]],[[1,2,1,1],[0,0,3,3],[1,3,2,2],[1,1,2,1]],[[1,2,1,2],[0,0,3,2],[1,3,2,2],[1,1,2,1]],[[1,2,1,1],[0,0,3,2],[1,2,3,2],[1,2,3,0]],[[1,2,1,1],[0,0,3,2],[1,2,3,2],[1,3,2,0]],[[1,2,1,1],[0,0,3,2],[1,2,3,2],[2,2,2,0]],[[1,2,1,1],[0,0,3,2],[1,2,3,3],[1,2,2,0]],[[1,2,1,1],[0,0,3,2],[1,2,4,2],[1,2,2,0]],[[1,2,1,1],[0,0,3,3],[1,2,3,2],[1,2,2,0]],[[1,2,1,2],[0,0,3,2],[1,2,3,2],[1,2,2,0]],[[1,2,1,1],[0,0,3,2],[1,2,3,2],[1,2,1,2]],[[1,2,1,1],[0,0,3,2],[1,2,3,3],[1,2,1,1]],[[1,2,1,1],[0,0,3,2],[1,2,4,2],[1,2,1,1]],[[1,2,1,1],[0,0,3,3],[1,2,3,2],[1,2,1,1]],[[1,2,1,2],[0,0,3,2],[1,2,3,2],[1,2,1,1]],[[1,2,1,1],[0,0,3,2],[1,2,3,1],[1,2,2,2]],[[1,2,1,1],[0,0,3,2],[1,2,3,1],[1,2,3,1]],[[1,2,1,1],[0,0,3,2],[1,2,3,1],[1,3,2,1]],[[1,2,1,1],[0,0,3,2],[1,2,3,1],[2,2,2,1]],[[1,2,1,1],[0,0,3,2],[1,2,4,1],[1,2,2,1]],[[1,1,0,2],[2,3,2,2],[0,0,3,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,3],[0,0,3,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,0,3,3],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,0,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[0,0,3,2],[1,2,2,2]],[[1,1,0,2],[2,3,2,2],[0,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,3],[0,1,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,1,2,3],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,1,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,1,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,2],[0,1,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[0,1,2,2],[1,2,2,2]],[[1,1,0,1],[2,3,2,2],[0,1,4,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,1,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,1,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,2,2],[0,1,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[0,1,3,1],[1,2,2,2]],[[1,1,0,2],[2,3,2,2],[0,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,3],[0,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,2],[0,1,4,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,2],[0,1,3,3],[1,2,1,1]],[[1,1,0,1],[2,3,2,2],[0,1,3,2],[1,2,1,2]],[[1,1,0,2],[2,3,2,2],[0,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,3],[0,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[0,1,4,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[0,1,3,3],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[0,1,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,2,2],[0,1,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,2,2],[0,1,3,2],[1,2,3,0]],[[1,1,0,2],[2,3,2,2],[0,2,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,3],[0,2,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[0,2,2,3],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[0,2,2,2],[1,1,3,1]],[[1,1,0,1],[2,3,2,2],[0,2,2,2],[1,1,2,2]],[[1,1,0,1],[2,3,2,2],[0,2,4,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,0],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,0],[1,3,2,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,0],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,0],[1,2,2,2]],[[1,1,0,1],[2,3,2,2],[0,2,4,1],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,1],[1,1,3,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,1],[1,1,2,2]],[[1,1,0,1],[2,3,2,2],[0,2,4,1],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[0,2,3,1],[2,2,2,0]],[[1,1,0,1],[2,3,2,2],[0,2,3,1],[1,3,2,0]],[[1,1,0,1],[2,3,2,2],[0,2,3,1],[1,2,3,0]],[[1,1,0,2],[2,3,2,2],[0,2,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,3],[0,2,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[0,2,4,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,3],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,2],[1,0,2,2]],[[1,1,0,2],[2,3,2,2],[0,2,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,3],[0,2,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[0,2,4,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,3],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,2],[1,1,1,2]],[[1,1,0,2],[2,3,2,2],[0,2,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,3],[0,2,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[0,2,4,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[0,2,3,3],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[0,2,3,2],[1,1,3,0]],[[1,1,0,2],[2,3,2,2],[0,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,2,3],[0,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[0,2,4,2],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,3],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[0,2,3,2],[1,2,0,2]],[[1,1,0,2],[2,3,2,2],[0,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,2,3],[0,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,2,2],[0,2,4,2],[1,2,1,0]],[[1,1,0,1],[2,3,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,1,1],[0,0,3,2],[1,2,2,2],[1,2,2,2]],[[1,2,1,1],[0,0,3,2],[1,2,2,2],[1,2,3,1]],[[1,2,1,1],[0,0,3,2],[1,2,2,2],[1,3,2,1]],[[1,2,1,1],[0,0,3,2],[1,2,2,2],[2,2,2,1]],[[1,2,1,1],[0,0,3,2],[1,2,2,3],[1,2,2,1]],[[1,2,1,1],[0,0,3,3],[1,2,2,2],[1,2,2,1]],[[1,2,1,2],[0,0,3,2],[1,2,2,2],[1,2,2,1]],[[1,2,1,1],[0,0,3,2],[1,1,3,2],[1,2,2,2]],[[2,1,0,1],[2,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,0,2],[2,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,0,1],[3,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,4,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,3],[0,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,4,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,0,3],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,0,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,0,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,0,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[0,3,0,2],[1,2,2,2]],[[2,1,0,1],[2,3,2,2],[0,3,2,0],[1,2,2,1]],[[1,1,0,1],[3,3,2,2],[0,3,2,0],[1,2,2,1]],[[1,1,0,1],[2,4,2,2],[0,3,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,4,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,2,0],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,2,0],[1,3,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,2,0],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[0,3,2,0],[1,2,2,2]],[[2,1,0,1],[2,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,1,0,1],[3,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,1,0,1],[2,4,2,2],[0,3,2,1],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[0,4,2,1],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[0,3,2,1],[2,2,2,0]],[[1,1,0,1],[2,3,2,2],[0,3,2,1],[1,3,2,0]],[[1,1,0,1],[2,3,2,2],[0,3,2,1],[1,2,3,0]],[[1,1,0,2],[2,3,2,2],[0,3,2,2],[0,1,2,1]],[[1,1,0,1],[2,3,2,3],[0,3,2,2],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,2,3],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,2,2],[0,1,3,1]],[[1,1,0,1],[2,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,2,1,1],[0,0,3,2],[1,1,3,2],[1,2,3,1]],[[1,2,1,1],[0,0,3,2],[1,1,3,3],[1,2,2,1]],[[1,2,1,1],[0,0,3,3],[1,1,3,2],[1,2,2,1]],[[1,2,1,2],[0,0,3,2],[1,1,3,2],[1,2,2,1]],[[2,1,0,1],[2,3,2,2],[0,3,3,0],[1,1,2,1]],[[1,1,0,1],[3,3,2,2],[0,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,4,2,2],[0,3,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[0,4,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,4,0],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,0],[1,1,3,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,0],[1,1,2,2]],[[2,1,0,1],[2,3,2,2],[0,3,3,0],[1,2,1,1]],[[1,1,0,1],[3,3,2,2],[0,3,3,0],[1,2,1,1]],[[1,1,0,1],[2,4,2,2],[0,3,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,2,2],[0,4,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,2,2],[0,3,4,0],[1,2,1,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,0],[2,2,1,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,0],[1,3,1,1]],[[1,1,0,1],[2,3,2,2],[0,3,4,1],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,1],[0,1,3,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,1],[0,1,2,2]],[[2,1,0,1],[2,3,2,2],[0,3,3,1],[1,1,1,1]],[[1,1,0,1],[3,3,2,2],[0,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,4,2,2],[0,3,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[0,4,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[0,3,4,1],[1,1,1,1]],[[2,1,0,1],[2,3,2,2],[0,3,3,1],[1,1,2,0]],[[1,1,0,1],[3,3,2,2],[0,3,3,1],[1,1,2,0]],[[1,1,0,1],[2,4,2,2],[0,3,3,1],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[0,4,3,1],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[0,3,4,1],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[0,3,3,1],[1,1,3,0]],[[2,1,0,1],[2,3,2,2],[0,3,3,1],[1,2,0,1]],[[1,1,0,1],[3,3,2,2],[0,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,4,2,2],[0,3,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[0,4,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[0,3,4,1],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,1],[2,2,0,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,1],[1,3,0,1]],[[2,1,0,1],[2,3,2,2],[0,3,3,1],[1,2,1,0]],[[1,1,0,1],[3,3,2,2],[0,3,3,1],[1,2,1,0]],[[1,1,0,1],[2,4,2,2],[0,3,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,2,2],[0,4,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,2,2],[0,3,4,1],[1,2,1,0]],[[1,1,0,1],[2,3,2,2],[0,3,3,1],[2,2,1,0]],[[1,1,0,1],[2,3,2,2],[0,3,3,1],[1,3,1,0]],[[1,2,1,1],[0,0,3,2],[0,3,3,2],[1,2,3,0]],[[1,2,1,1],[0,0,3,2],[0,3,3,2],[1,3,2,0]],[[1,2,1,1],[0,0,3,2],[0,3,3,3],[1,2,2,0]],[[1,2,1,1],[0,0,3,2],[0,3,4,2],[1,2,2,0]],[[1,2,1,1],[0,0,3,3],[0,3,3,2],[1,2,2,0]],[[1,2,1,2],[0,0,3,2],[0,3,3,2],[1,2,2,0]],[[1,2,1,1],[0,0,3,2],[0,3,3,2],[1,2,1,2]],[[1,2,1,1],[0,0,3,2],[0,3,3,3],[1,2,1,1]],[[1,2,1,1],[0,0,3,2],[0,3,4,2],[1,2,1,1]],[[1,1,0,2],[2,3,2,2],[0,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,2,3],[0,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,4,2],[0,0,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,3],[0,0,2,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,2],[0,0,2,2]],[[1,1,0,2],[2,3,2,2],[0,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,3],[0,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[0,3,4,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,3],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,2],[0,1,1,2]],[[1,1,0,2],[2,3,2,2],[0,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,3],[0,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[0,3,4,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[0,3,3,3],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[0,3,3,2],[0,1,3,0]],[[1,1,0,2],[2,3,2,2],[0,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,3],[0,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[0,3,4,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,3],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[0,3,3,2],[0,2,0,2]],[[1,1,0,2],[2,3,2,2],[0,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,3],[0,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,2],[0,3,4,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,1,1],[0,0,3,3],[0,3,3,2],[1,2,1,1]],[[1,2,1,2],[0,0,3,2],[0,3,3,2],[1,2,1,1]],[[1,2,1,1],[0,0,3,2],[0,3,3,1],[1,2,2,2]],[[1,2,1,1],[0,0,3,2],[0,3,3,1],[1,2,3,1]],[[1,2,1,1],[0,0,3,2],[0,3,3,1],[1,3,2,1]],[[1,2,1,1],[0,0,3,2],[0,3,4,1],[1,2,2,1]],[[1,2,1,1],[0,0,3,2],[0,3,2,2],[1,2,2,2]],[[1,2,1,1],[0,0,3,2],[0,3,2,2],[1,2,3,1]],[[1,2,1,1],[0,0,3,2],[0,3,2,2],[1,3,2,1]],[[1,2,1,1],[0,0,3,2],[0,3,2,3],[1,2,2,1]],[[1,2,1,1],[0,0,3,3],[0,3,2,2],[1,2,2,1]],[[1,2,1,2],[0,0,3,2],[0,3,2,2],[1,2,2,1]],[[1,2,1,1],[0,0,3,2],[0,2,3,2],[1,2,2,2]],[[1,2,1,1],[0,0,3,2],[0,2,3,2],[1,2,3,1]],[[1,2,1,1],[0,0,3,2],[0,2,3,3],[1,2,2,1]],[[1,2,1,1],[0,0,3,3],[0,2,3,2],[1,2,2,1]],[[1,2,1,2],[0,0,3,2],[0,2,3,2],[1,2,2,1]],[[1,2,1,1],[0,0,3,1],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[0,0,3,1],[2,3,3,2],[0,3,2,0]],[[1,2,1,1],[0,0,3,1],[2,3,3,3],[0,2,2,0]],[[1,2,1,1],[0,0,3,1],[2,3,4,2],[0,2,2,0]],[[1,2,1,1],[0,0,3,1],[2,3,3,2],[0,2,1,2]],[[1,2,1,1],[0,0,3,1],[2,3,3,3],[0,2,1,1]],[[1,2,1,1],[0,0,3,1],[2,3,4,2],[0,2,1,1]],[[1,2,1,1],[0,0,3,1],[2,3,3,1],[0,2,2,2]],[[1,2,1,1],[0,0,3,1],[2,3,3,1],[0,2,3,1]],[[1,2,1,1],[0,0,3,1],[2,3,3,1],[0,3,2,1]],[[1,2,1,1],[0,0,3,1],[2,3,4,1],[0,2,2,1]],[[1,1,0,2],[2,3,2,2],[1,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,3],[1,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,0,2,3],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,0,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,0,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,2],[1,0,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[1,0,2,2],[1,2,2,2]],[[1,1,0,1],[2,3,2,2],[1,0,4,1],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,0,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,0,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,2,2],[1,0,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[1,0,3,1],[1,2,2,2]],[[1,1,0,2],[2,3,2,2],[1,0,3,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,3],[1,0,3,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,0,3,3],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,0,3,2],[0,2,3,1]],[[1,1,0,1],[2,3,2,2],[1,0,3,2],[0,2,2,2]],[[1,1,0,2],[2,3,2,2],[1,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,3],[1,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,2],[1,0,4,2],[1,2,1,1]],[[1,1,0,1],[2,3,2,2],[1,0,3,3],[1,2,1,1]],[[1,1,0,1],[2,3,2,2],[1,0,3,2],[1,2,1,2]],[[1,1,0,2],[2,3,2,2],[1,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,3],[1,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[1,0,4,2],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[1,0,3,3],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[1,0,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,2,2],[1,0,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,2,2],[1,0,3,2],[1,2,3,0]],[[1,1,0,2],[2,3,2,2],[1,1,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,3],[1,1,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,1,2,3],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,1,2,2],[0,3,2,1]],[[1,1,0,1],[2,3,2,2],[1,1,2,2],[0,2,3,1]],[[1,1,0,1],[2,3,2,2],[1,1,2,2],[0,2,2,2]],[[1,1,0,1],[2,3,2,2],[1,1,4,1],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,1,3,1],[0,3,2,1]],[[1,1,0,1],[2,3,2,2],[1,1,3,1],[0,2,3,1]],[[1,1,0,1],[2,3,2,2],[1,1,3,1],[0,2,2,2]],[[1,1,0,2],[2,3,2,2],[1,1,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,2,3],[1,1,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,2,2],[1,1,4,2],[0,2,1,1]],[[1,1,0,1],[2,3,2,2],[1,1,3,3],[0,2,1,1]],[[1,1,0,1],[2,3,2,2],[1,1,3,2],[0,2,1,2]],[[1,1,0,2],[2,3,2,2],[1,1,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,2,3],[1,1,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,2,2],[1,1,4,2],[0,2,2,0]],[[1,1,0,1],[2,3,2,2],[1,1,3,3],[0,2,2,0]],[[1,1,0,1],[2,3,2,2],[1,1,3,2],[0,3,2,0]],[[1,1,0,1],[2,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,1,1],[0,0,3,1],[2,3,2,2],[0,2,2,2]],[[1,2,1,1],[0,0,3,1],[2,3,2,2],[0,2,3,1]],[[1,2,1,1],[0,0,3,1],[2,3,2,2],[0,3,2,1]],[[1,2,1,1],[0,0,3,1],[2,3,2,3],[0,2,2,1]],[[1,1,0,2],[2,3,2,2],[1,2,2,2],[0,1,2,1]],[[1,1,0,1],[2,3,2,3],[1,2,2,2],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[1,2,2,3],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[1,2,2,2],[0,1,3,1]],[[1,1,0,1],[2,3,2,2],[1,2,2,2],[0,1,2,2]],[[1,1,0,2],[2,3,2,2],[1,2,2,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,3],[1,2,2,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[1,2,2,3],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[1,2,2,2],[1,0,3,1]],[[1,1,0,1],[2,3,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,1,1],[0,0,3,1],[1,3,3,2],[1,2,3,0]],[[1,2,1,1],[0,0,3,1],[1,3,3,2],[1,3,2,0]],[[1,2,1,1],[0,0,3,1],[1,3,3,2],[2,2,2,0]],[[1,2,1,1],[0,0,3,1],[1,3,3,3],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[1,2,4,0],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,0],[0,3,2,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,0],[0,2,3,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,0],[0,2,2,2]],[[1,1,0,1],[2,3,2,2],[1,2,4,1],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,1],[0,1,3,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,1],[0,1,2,2]],[[1,1,0,1],[2,3,2,2],[1,2,4,1],[0,2,2,0]],[[1,1,0,1],[2,3,2,2],[1,2,3,1],[0,3,2,0]],[[1,1,0,1],[2,3,2,2],[1,2,3,1],[0,2,3,0]],[[1,1,0,1],[2,3,2,2],[1,2,4,1],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,1],[1,0,3,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,1],[1,0,2,2]],[[1,2,1,1],[0,0,3,1],[1,3,4,2],[1,2,2,0]],[[1,2,1,1],[0,0,3,1],[1,3,3,2],[1,2,1,2]],[[1,2,1,1],[0,0,3,1],[1,3,3,3],[1,2,1,1]],[[1,2,1,1],[0,0,3,1],[1,3,4,2],[1,2,1,1]],[[1,2,1,1],[0,0,3,1],[1,3,3,1],[1,2,2,2]],[[1,1,0,2],[2,3,2,2],[1,2,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,2,3],[1,2,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,2,2],[1,2,4,2],[0,0,2,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,3],[0,0,2,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,2],[0,0,2,2]],[[1,1,0,2],[2,3,2,2],[1,2,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,3],[1,2,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[1,2,4,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,3],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,2],[0,1,1,2]],[[1,1,0,2],[2,3,2,2],[1,2,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,3],[1,2,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[1,2,4,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[1,2,3,3],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[1,2,3,2],[0,1,3,0]],[[1,1,0,2],[2,3,2,2],[1,2,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,3],[1,2,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[1,2,4,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,3],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,2],[0,2,0,2]],[[1,1,0,2],[2,3,2,2],[1,2,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,3],[1,2,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,2],[1,2,4,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,1,1],[0,0,3,1],[1,3,3,1],[1,2,3,1]],[[1,2,1,1],[0,0,3,1],[1,3,3,1],[1,3,2,1]],[[1,2,1,1],[0,0,3,1],[1,3,3,1],[2,2,2,1]],[[1,2,1,1],[0,0,3,1],[1,3,4,1],[1,2,2,1]],[[1,2,1,1],[0,0,3,1],[1,3,2,2],[1,2,2,2]],[[1,2,1,1],[0,0,3,1],[1,3,2,2],[1,2,3,1]],[[1,2,1,1],[0,0,3,1],[1,3,2,2],[1,3,2,1]],[[1,1,0,2],[2,3,2,2],[1,2,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,2,3],[1,2,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,2,2],[1,2,4,2],[1,0,1,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,3],[1,0,1,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,2],[1,0,1,2]],[[1,1,0,2],[2,3,2,2],[1,2,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,2,3],[1,2,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,2,2],[1,2,4,2],[1,0,2,0]],[[1,1,0,1],[2,3,2,2],[1,2,3,3],[1,0,2,0]],[[1,1,0,1],[2,3,2,2],[1,2,3,2],[1,0,3,0]],[[1,1,0,2],[2,3,2,2],[1,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,2,3],[1,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,2,2],[1,2,4,2],[1,1,0,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,3],[1,1,0,1]],[[1,1,0,1],[2,3,2,2],[1,2,3,2],[1,1,0,2]],[[1,1,0,2],[2,3,2,2],[1,2,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,2,3],[1,2,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,2,2],[1,2,4,2],[1,1,1,0]],[[1,1,0,1],[2,3,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,1,1],[0,0,3,1],[1,3,2,2],[2,2,2,1]],[[1,2,1,1],[0,0,3,1],[1,3,2,3],[1,2,2,1]],[[1,2,1,1],[0,0,3,0],[2,3,3,2],[0,2,2,2]],[[1,2,1,1],[0,0,3,0],[2,3,3,2],[0,2,3,1]],[[1,2,1,1],[0,0,3,0],[2,3,3,2],[0,3,2,1]],[[1,2,1,1],[0,0,3,0],[2,3,4,2],[0,2,2,1]],[[1,2,1,1],[0,0,3,0],[1,3,3,2],[1,2,2,2]],[[1,2,1,1],[0,0,3,0],[1,3,3,2],[1,2,3,1]],[[1,2,1,1],[0,0,3,0],[1,3,3,2],[1,3,2,1]],[[1,2,1,1],[0,0,3,0],[1,3,3,2],[2,2,2,1]],[[1,2,1,1],[0,0,3,0],[1,3,4,2],[1,2,2,1]],[[2,1,0,1],[2,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,0,2],[2,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,0,1],[3,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,4,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,3],[1,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,4,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,3,0,3],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,3,0,2],[0,3,2,1]],[[1,1,0,1],[2,3,2,2],[1,3,0,2],[0,2,3,1]],[[1,1,0,1],[2,3,2,2],[1,3,0,2],[0,2,2,2]],[[2,1,0,1],[2,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,1,0,1],[3,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,4,2,2],[1,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[1,4,0,2],[1,1,2,1]],[[1,2,1,1],[0,0,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,1,1],[0,0,2,2],[2,3,3,2],[0,3,2,0]],[[2,1,0,1],[2,3,2,2],[1,3,2,0],[0,2,2,1]],[[1,1,0,1],[3,3,2,2],[1,3,2,0],[0,2,2,1]],[[1,1,0,1],[2,4,2,2],[1,3,2,0],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,4,2,0],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[1,3,2,0],[0,3,2,1]],[[1,1,0,1],[2,3,2,2],[1,3,2,0],[0,2,3,1]],[[1,1,0,1],[2,3,2,2],[1,3,2,0],[0,2,2,2]],[[2,1,0,1],[2,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,1,0,1],[3,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,4,2,2],[1,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[1,4,2,0],[1,1,2,1]],[[2,1,0,1],[2,3,2,2],[1,3,2,1],[0,2,2,0]],[[1,1,0,1],[3,3,2,2],[1,3,2,1],[0,2,2,0]],[[1,1,0,1],[2,4,2,2],[1,3,2,1],[0,2,2,0]],[[1,1,0,1],[2,3,2,2],[1,4,2,1],[0,2,2,0]],[[1,1,0,1],[2,3,2,2],[1,3,2,1],[0,3,2,0]],[[1,1,0,1],[2,3,2,2],[1,3,2,1],[0,2,3,0]],[[2,1,0,1],[2,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,1,0,1],[3,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,4,2,2],[1,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[1,4,2,1],[1,1,2,0]],[[1,2,1,1],[0,0,2,2],[2,3,3,3],[0,2,2,0]],[[1,2,1,1],[0,0,2,2],[2,3,4,2],[0,2,2,0]],[[1,2,1,1],[0,0,2,3],[2,3,3,2],[0,2,2,0]],[[1,2,1,2],[0,0,2,2],[2,3,3,2],[0,2,2,0]],[[1,2,1,1],[0,0,2,2],[2,3,3,2],[0,2,1,2]],[[1,2,1,1],[0,0,2,2],[2,3,3,3],[0,2,1,1]],[[1,2,1,1],[0,0,2,2],[2,3,4,2],[0,2,1,1]],[[1,2,1,1],[0,0,2,3],[2,3,3,2],[0,2,1,1]],[[1,2,1,2],[0,0,2,2],[2,3,3,2],[0,2,1,1]],[[1,2,1,1],[0,0,2,2],[2,3,3,1],[0,2,2,2]],[[1,2,1,1],[0,0,2,2],[2,3,3,1],[0,2,3,1]],[[1,2,1,1],[0,0,2,2],[2,3,3,1],[0,3,2,1]],[[1,2,1,1],[0,0,2,2],[2,3,4,1],[0,2,2,1]],[[1,2,1,1],[0,0,2,2],[2,3,2,2],[0,2,2,2]],[[1,2,1,1],[0,0,2,2],[2,3,2,2],[0,2,3,1]],[[1,2,1,1],[0,0,2,2],[2,3,2,2],[0,3,2,1]],[[1,2,1,1],[0,0,2,2],[2,3,2,3],[0,2,2,1]],[[1,2,1,1],[0,0,2,3],[2,3,2,2],[0,2,2,1]],[[1,2,1,2],[0,0,2,2],[2,3,2,2],[0,2,2,1]],[[1,2,1,1],[0,0,2,2],[1,3,3,2],[1,2,3,0]],[[1,2,1,1],[0,0,2,2],[1,3,3,2],[1,3,2,0]],[[1,2,1,1],[0,0,2,2],[1,3,3,2],[2,2,2,0]],[[1,2,1,1],[0,0,2,2],[1,3,3,3],[1,2,2,0]],[[1,2,1,1],[0,0,2,2],[1,3,4,2],[1,2,2,0]],[[1,2,1,1],[0,0,2,3],[1,3,3,2],[1,2,2,0]],[[2,1,0,1],[2,3,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,0,1],[3,3,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,4,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[1,4,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[1,3,4,0],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[1,3,3,0],[0,1,3,1]],[[1,1,0,1],[2,3,2,2],[1,3,3,0],[0,1,2,2]],[[2,1,0,1],[2,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,1,0,1],[3,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,4,2,2],[1,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,2,2],[1,4,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,2,2],[1,3,4,0],[0,2,1,1]],[[1,1,0,1],[2,3,2,2],[1,3,3,0],[0,3,1,1]],[[2,1,0,1],[2,3,2,2],[1,3,3,0],[1,0,2,1]],[[1,1,0,1],[3,3,2,2],[1,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,4,2,2],[1,3,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[1,4,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[1,3,4,0],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[1,3,3,0],[1,0,3,1]],[[1,1,0,1],[2,3,2,2],[1,3,3,0],[1,0,2,2]],[[2,1,0,1],[2,3,2,2],[1,3,3,0],[1,1,1,1]],[[1,1,0,1],[3,3,2,2],[1,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,4,2,2],[1,3,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[1,4,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[1,3,4,0],[1,1,1,1]],[[2,1,0,1],[2,3,2,2],[1,3,3,0],[1,2,0,1]],[[1,1,0,1],[3,3,2,2],[1,3,3,0],[1,2,0,1]],[[1,1,0,1],[2,4,2,2],[1,3,3,0],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[1,4,3,0],[1,2,0,1]],[[1,2,1,2],[0,0,2,2],[1,3,3,2],[1,2,2,0]],[[1,2,1,1],[0,0,2,2],[1,3,3,2],[1,2,1,2]],[[1,2,1,1],[0,0,2,2],[1,3,3,3],[1,2,1,1]],[[1,2,1,1],[0,0,2,2],[1,3,4,2],[1,2,1,1]],[[1,2,1,1],[0,0,2,3],[1,3,3,2],[1,2,1,1]],[[1,2,1,2],[0,0,2,2],[1,3,3,2],[1,2,1,1]],[[1,2,1,1],[0,0,2,2],[1,3,3,1],[1,2,2,2]],[[1,2,1,1],[0,0,2,2],[1,3,3,1],[1,2,3,1]],[[1,2,1,1],[0,0,2,2],[1,3,3,1],[1,3,2,1]],[[2,1,0,1],[2,3,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,0,1],[3,3,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,4,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[1,4,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[1,3,4,1],[0,1,1,1]],[[2,1,0,1],[2,3,2,2],[1,3,3,1],[0,1,2,0]],[[1,1,0,1],[3,3,2,2],[1,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,4,2,2],[1,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[1,4,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[1,3,4,1],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[1,3,3,1],[0,1,3,0]],[[2,1,0,1],[2,3,2,2],[1,3,3,1],[0,2,0,1]],[[1,1,0,1],[3,3,2,2],[1,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,4,2,2],[1,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[1,4,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[1,3,4,1],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[1,3,3,1],[0,3,0,1]],[[2,1,0,1],[2,3,2,2],[1,3,3,1],[0,2,1,0]],[[1,1,0,1],[3,3,2,2],[1,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,4,2,2],[1,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,2,2],[1,4,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,2,2],[1,3,4,1],[0,2,1,0]],[[1,1,0,1],[2,3,2,2],[1,3,3,1],[0,3,1,0]],[[1,2,1,1],[0,0,2,2],[1,3,3,1],[2,2,2,1]],[[1,2,1,1],[0,0,2,2],[1,3,4,1],[1,2,2,1]],[[1,2,1,1],[0,0,2,2],[1,3,2,2],[1,2,2,2]],[[1,2,1,1],[0,0,2,2],[1,3,2,2],[1,2,3,1]],[[1,2,1,1],[0,0,2,2],[1,3,2,2],[1,3,2,1]],[[1,2,1,1],[0,0,2,2],[1,3,2,2],[2,2,2,1]],[[1,2,1,1],[0,0,2,2],[1,3,2,3],[1,2,2,1]],[[1,2,1,1],[0,0,2,3],[1,3,2,2],[1,2,2,1]],[[2,1,0,1],[2,3,2,2],[1,3,3,1],[1,0,1,1]],[[1,1,0,1],[3,3,2,2],[1,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,4,2,2],[1,3,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,2,2],[1,4,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,2,2],[1,3,4,1],[1,0,1,1]],[[2,1,0,1],[2,3,2,2],[1,3,3,1],[1,0,2,0]],[[1,1,0,1],[3,3,2,2],[1,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,4,2,2],[1,3,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,2,2],[1,4,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,2,2],[1,3,4,1],[1,0,2,0]],[[1,1,0,1],[2,3,2,2],[1,3,3,1],[1,0,3,0]],[[2,1,0,1],[2,3,2,2],[1,3,3,1],[1,1,0,1]],[[1,1,0,1],[3,3,2,2],[1,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,4,2,2],[1,3,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,2,2],[1,4,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,2,2],[1,3,4,1],[1,1,0,1]],[[2,1,0,1],[2,3,2,2],[1,3,3,1],[1,1,1,0]],[[1,1,0,1],[3,3,2,2],[1,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,4,2,2],[1,3,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,2,2],[1,4,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,2,2],[1,3,4,1],[1,1,1,0]],[[1,2,1,2],[0,0,2,2],[1,3,2,2],[1,2,2,1]],[[1,2,1,1],[0,0,1,2],[2,3,3,2],[0,2,2,2]],[[2,1,0,1],[2,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,1,0,1],[3,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,4,2,2],[1,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,2,1,1],[0,0,1,2],[2,3,3,2],[0,2,3,1]],[[1,2,1,1],[0,0,1,2],[2,3,3,2],[0,3,2,1]],[[1,2,1,1],[0,0,1,2],[2,3,3,3],[0,2,2,1]],[[1,2,1,1],[0,0,1,2],[1,3,3,2],[1,2,2,2]],[[1,2,1,1],[0,0,1,2],[1,3,3,2],[1,2,3,1]],[[1,2,1,1],[0,0,1,2],[1,3,3,2],[1,3,2,1]],[[1,2,1,1],[0,0,1,2],[1,3,3,2],[2,2,2,1]],[[1,2,1,1],[0,0,1,2],[1,3,3,3],[1,2,2,1]],[[1,1,0,2],[2,3,2,2],[1,3,3,2],[0,0,1,1]],[[1,1,0,1],[2,3,2,3],[1,3,3,2],[0,0,1,1]],[[1,1,0,1],[2,3,2,2],[1,3,4,2],[0,0,1,1]],[[1,1,0,1],[2,3,2,2],[1,3,3,3],[0,0,1,1]],[[1,1,0,1],[2,3,2,2],[1,3,3,2],[0,0,1,2]],[[1,1,0,2],[2,3,2,2],[1,3,3,2],[0,0,2,0]],[[1,1,0,1],[2,3,2,3],[1,3,3,2],[0,0,2,0]],[[1,1,0,1],[2,3,2,2],[1,3,4,2],[0,0,2,0]],[[1,1,0,1],[2,3,2,2],[1,3,3,3],[0,0,2,0]],[[2,1,0,1],[2,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,2],[2,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[3,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,4,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,3],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[3,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,1,3],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[2,0,1,2],[1,2,2,2]],[[1,1,0,2],[2,3,2,2],[2,0,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,3],[2,0,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,2,3],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,2,2],[0,3,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,2,2],[0,2,3,1]],[[1,1,0,1],[2,3,2,2],[2,0,2,2],[0,2,2,2]],[[1,1,0,2],[2,3,2,2],[2,0,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,3],[2,0,2,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,2,3],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,2,2],[1,1,3,1]],[[1,1,0,1],[2,3,2,2],[2,0,2,2],[1,1,2,2]],[[2,1,0,1],[2,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,1],[3,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,1],[2,4,2,2],[2,0,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[3,0,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,4,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,0],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,0],[1,3,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,0],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,0],[1,2,2,2]],[[1,1,0,1],[2,3,2,2],[2,0,4,1],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,1],[0,3,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,1],[0,2,3,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,1],[0,2,2,2]],[[1,1,0,1],[2,3,2,2],[2,0,4,1],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,1],[1,1,3,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,1],[1,1,2,2]],[[2,1,0,1],[2,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,1],[3,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,1],[2,4,2,2],[2,0,3,1],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[3,0,3,1],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[2,0,4,1],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[2,0,3,1],[2,2,2,0]],[[1,1,0,1],[2,3,2,2],[2,0,3,1],[1,3,2,0]],[[1,1,0,1],[2,3,2,2],[2,0,3,1],[1,2,3,0]],[[1,1,0,2],[2,3,2,2],[2,0,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,2,3],[2,0,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,2,2],[2,0,4,2],[0,2,1,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,3],[0,2,1,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,2],[0,2,1,2]],[[1,1,0,2],[2,3,2,2],[2,0,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,2,3],[2,0,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,2,2],[2,0,4,2],[0,2,2,0]],[[1,1,0,1],[2,3,2,2],[2,0,3,3],[0,2,2,0]],[[1,1,0,1],[2,3,2,2],[2,0,3,2],[0,3,2,0]],[[1,1,0,1],[2,3,2,2],[2,0,3,2],[0,2,3,0]],[[1,1,0,2],[2,3,2,2],[2,0,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,3],[2,0,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[2,0,4,2],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,3],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,2],[1,1,1,2]],[[1,1,0,2],[2,3,2,2],[2,0,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,3],[2,0,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[2,0,4,2],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[2,0,3,3],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[2,0,3,2],[1,1,3,0]],[[1,1,0,2],[2,3,2,2],[2,0,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,2,3],[2,0,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[2,0,4,2],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,3],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[2,0,3,2],[1,2,0,2]],[[1,1,0,2],[2,3,2,2],[2,0,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,2,3],[2,0,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,2,2],[2,0,4,2],[1,2,1,0]],[[1,1,0,1],[2,3,2,2],[2,0,3,3],[1,2,1,0]],[[2,1,0,1],[2,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,2],[2,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[3,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,4,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,3],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[3,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,0,3],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,0,2],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,0,2],[1,3,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,0,2],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[2,1,0,2],[1,2,2,2]],[[2,1,0,1],[2,3,2,2],[2,1,2,0],[1,2,2,1]],[[1,1,0,1],[3,3,2,2],[2,1,2,0],[1,2,2,1]],[[1,1,0,1],[2,4,2,2],[2,1,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[3,1,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,2,0],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,2,0],[1,3,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,2,0],[1,2,3,1]],[[1,1,0,1],[2,3,2,2],[2,1,2,0],[1,2,2,2]],[[2,1,0,1],[2,3,2,2],[2,1,2,1],[1,2,2,0]],[[1,1,0,1],[3,3,2,2],[2,1,2,1],[1,2,2,0]],[[1,1,0,1],[2,4,2,2],[2,1,2,1],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[3,1,2,1],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[2,1,2,1],[2,2,2,0]],[[1,1,0,1],[2,3,2,2],[2,1,2,1],[1,3,2,0]],[[1,1,0,1],[2,3,2,2],[2,1,2,1],[1,2,3,0]],[[1,1,0,2],[2,3,2,2],[2,1,2,2],[0,1,2,1]],[[1,1,0,1],[2,3,2,3],[2,1,2,2],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,2,3],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,2,2],[0,1,3,1]],[[1,1,0,1],[2,3,2,2],[2,1,2,2],[0,1,2,2]],[[1,1,0,2],[2,3,2,2],[2,1,2,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,3],[2,1,2,2],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,2,3],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,2,2],[1,0,3,1]],[[1,1,0,1],[2,3,2,2],[2,1,2,2],[1,0,2,2]],[[2,1,0,1],[2,3,2,2],[2,1,3,0],[1,2,1,1]],[[1,1,0,1],[3,3,2,2],[2,1,3,0],[1,2,1,1]],[[1,1,0,1],[2,4,2,2],[2,1,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,2,2],[3,1,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,0],[2,2,1,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,0],[1,3,1,1]],[[1,1,0,1],[2,3,2,2],[2,1,4,1],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,1],[0,1,3,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,1],[0,1,2,2]],[[1,1,0,1],[2,3,2,2],[2,1,4,1],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,1],[1,0,3,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,1],[1,0,2,2]],[[2,1,0,1],[2,3,2,2],[2,1,3,1],[1,2,0,1]],[[1,1,0,1],[3,3,2,2],[2,1,3,1],[1,2,0,1]],[[1,1,0,1],[2,4,2,2],[2,1,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[3,1,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,1],[2,2,0,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,1],[1,3,0,1]],[[2,1,0,1],[2,3,2,2],[2,1,3,1],[1,2,1,0]],[[1,1,0,1],[3,3,2,2],[2,1,3,1],[1,2,1,0]],[[1,1,0,1],[2,4,2,2],[2,1,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,2,2],[3,1,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,2,2],[2,1,3,1],[2,2,1,0]],[[1,1,0,1],[2,3,2,2],[2,1,3,1],[1,3,1,0]],[[1,1,0,2],[2,3,2,2],[2,1,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,2,3],[2,1,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,4,2],[0,0,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,3],[0,0,2,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,2],[0,0,2,2]],[[1,1,0,2],[2,3,2,2],[2,1,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,3],[2,1,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[2,1,4,2],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,3],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,2],[0,1,1,2]],[[1,1,0,2],[2,3,2,2],[2,1,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,3],[2,1,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[2,1,4,2],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[2,1,3,3],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[2,1,3,2],[0,1,3,0]],[[1,1,0,2],[2,3,2,2],[2,1,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,3],[2,1,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[2,1,4,2],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,3],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,2],[0,2,0,2]],[[1,1,0,2],[2,3,2,2],[2,1,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,3],[2,1,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,2],[2,1,4,2],[0,2,1,0]],[[1,1,0,1],[2,3,2,2],[2,1,3,3],[0,2,1,0]],[[1,1,0,2],[2,3,2,2],[2,1,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,2,3],[2,1,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,2,2],[2,1,4,2],[1,0,1,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,3],[1,0,1,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,2],[1,0,1,2]],[[1,1,0,2],[2,3,2,2],[2,1,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,2,3],[2,1,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,2,2],[2,1,4,2],[1,0,2,0]],[[1,1,0,1],[2,3,2,2],[2,1,3,3],[1,0,2,0]],[[1,1,0,1],[2,3,2,2],[2,1,3,2],[1,0,3,0]],[[1,1,0,2],[2,3,2,2],[2,1,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,2,3],[2,1,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,2,2],[2,1,4,2],[1,1,0,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,3],[1,1,0,1]],[[1,1,0,1],[2,3,2,2],[2,1,3,2],[1,1,0,2]],[[1,1,0,2],[2,3,2,2],[2,1,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,2,3],[2,1,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,2,2],[2,1,4,2],[1,1,1,0]],[[1,1,0,1],[2,3,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,1,0],[3,3,3,2],[2,2,3,1],[1,0,0,0]],[[1,3,1,0],[2,3,3,2],[2,2,3,1],[1,0,0,0]],[[2,2,1,0],[2,3,3,2],[2,2,3,1],[1,0,0,0]],[[2,1,0,1],[2,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,1,0,1],[3,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,1,0,1],[2,4,2,2],[2,2,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[3,2,0,2],[0,2,2,1]],[[2,1,0,1],[2,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,1,0,1],[3,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,1,0,1],[2,4,2,2],[2,2,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[3,2,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[2,2,0,2],[2,1,2,1]],[[1,2,1,0],[3,3,3,2],[2,2,3,0],[1,0,1,0]],[[1,3,1,0],[2,3,3,2],[2,2,3,0],[1,0,1,0]],[[2,2,1,0],[2,3,3,2],[2,2,3,0],[1,0,1,0]],[[2,1,0,1],[2,3,2,2],[2,2,2,0],[0,2,2,1]],[[1,1,0,1],[3,3,2,2],[2,2,2,0],[0,2,2,1]],[[1,1,0,1],[2,4,2,2],[2,2,2,0],[0,2,2,1]],[[1,1,0,1],[2,3,2,2],[3,2,2,0],[0,2,2,1]],[[2,1,0,1],[2,3,2,2],[2,2,2,0],[1,1,2,1]],[[1,1,0,1],[3,3,2,2],[2,2,2,0],[1,1,2,1]],[[1,1,0,1],[2,4,2,2],[2,2,2,0],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[3,2,2,0],[1,1,2,1]],[[1,1,0,1],[2,3,2,2],[2,2,2,0],[2,1,2,1]],[[2,1,0,1],[2,3,2,2],[2,2,2,1],[0,2,2,0]],[[1,1,0,1],[3,3,2,2],[2,2,2,1],[0,2,2,0]],[[1,1,0,1],[2,4,2,2],[2,2,2,1],[0,2,2,0]],[[1,1,0,1],[2,3,2,2],[3,2,2,1],[0,2,2,0]],[[2,1,0,1],[2,3,2,2],[2,2,2,1],[1,1,2,0]],[[1,1,0,1],[3,3,2,2],[2,2,2,1],[1,1,2,0]],[[1,1,0,1],[2,4,2,2],[2,2,2,1],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[3,2,2,1],[1,1,2,0]],[[1,1,0,1],[2,3,2,2],[2,2,2,1],[2,1,2,0]],[[2,1,0,1],[2,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,1,0,1],[3,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,1,0,1],[2,4,2,2],[2,2,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,2,2],[3,2,3,0],[0,1,2,1]],[[2,1,0,1],[2,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,1,0,1],[3,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,1,0,1],[2,4,2,2],[2,2,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,2,2],[3,2,3,0],[0,2,1,1]],[[2,1,0,1],[2,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,1,0,1],[3,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,1,0,1],[2,4,2,2],[2,2,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[3,2,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,2,2],[2,2,3,0],[2,0,2,1]],[[2,1,0,1],[2,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,1,0,1],[3,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,1,0,1],[2,4,2,2],[2,2,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[3,2,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,2,2],[2,2,3,0],[2,1,1,1]],[[2,1,0,1],[2,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,1,0,1],[3,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,1,0,1],[2,4,2,2],[2,2,3,0],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[3,2,3,0],[1,2,0,1]],[[1,1,0,1],[2,3,2,2],[2,2,3,0],[2,2,0,1]],[[1,2,1,0],[3,3,3,2],[2,2,2,1],[1,0,1,0]],[[1,3,1,0],[2,3,3,2],[2,2,2,1],[1,0,1,0]],[[2,2,1,0],[2,3,3,2],[2,2,2,1],[1,0,1,0]],[[1,2,1,0],[3,3,3,2],[2,2,2,1],[1,0,0,1]],[[1,3,1,0],[2,3,3,2],[2,2,2,1],[1,0,0,1]],[[2,1,0,1],[2,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,1,0,1],[3,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,1,0,1],[2,4,2,2],[2,2,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,2,2],[3,2,3,1],[0,1,1,1]],[[2,1,0,1],[2,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,1,0,1],[3,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,1,0,1],[2,4,2,2],[2,2,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,2,2],[3,2,3,1],[0,1,2,0]],[[2,1,0,1],[2,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,1,0,1],[3,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,1,0,1],[2,4,2,2],[2,2,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,2,2],[3,2,3,1],[0,2,0,1]],[[2,1,0,1],[2,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,1,0,1],[3,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,1,0,1],[2,4,2,2],[2,2,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,2,2],[3,2,3,1],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[2,2,2,1],[1,0,0,1]],[[2,1,0,1],[2,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,1,0,1],[3,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,1,0,1],[2,4,2,2],[2,2,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,2,2],[3,2,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,2,2],[2,2,3,1],[2,0,1,1]],[[2,1,0,1],[2,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,1,0,1],[3,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,1,0,1],[2,4,2,2],[2,2,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,2,2],[3,2,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,2,2],[2,2,3,1],[2,0,2,0]],[[2,1,0,1],[2,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,1,0,1],[3,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,1,0,1],[2,4,2,2],[2,2,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,2,2],[3,2,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,2,2],[2,2,3,1],[2,1,0,1]],[[2,1,0,1],[2,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,1,0,1],[3,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,1,0,1],[2,4,2,2],[2,2,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,2,2],[3,2,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,2,2],[2,2,3,1],[2,1,1,0]],[[2,1,0,1],[2,3,2,2],[2,2,3,1],[1,2,0,0]],[[1,1,0,1],[3,3,2,2],[2,2,3,1],[1,2,0,0]],[[1,1,0,1],[2,4,2,2],[2,2,3,1],[1,2,0,0]],[[1,1,0,1],[2,3,2,2],[3,2,3,1],[1,2,0,0]],[[1,1,0,1],[2,3,2,2],[2,2,3,1],[2,2,0,0]],[[1,2,1,0],[3,3,3,2],[2,2,2,0],[1,0,1,1]],[[1,3,1,0],[2,3,3,2],[2,2,2,0],[1,0,1,1]],[[2,2,1,0],[2,3,3,2],[2,2,2,0],[1,0,1,1]],[[1,2,1,0],[3,3,3,2],[2,2,1,2],[1,0,1,0]],[[1,3,1,0],[2,3,3,2],[2,2,1,2],[1,0,1,0]],[[2,2,1,0],[2,3,3,2],[2,2,1,2],[1,0,1,0]],[[1,2,1,0],[3,3,3,2],[2,2,1,2],[1,0,0,1]],[[1,3,1,0],[2,3,3,2],[2,2,1,2],[1,0,0,1]],[[2,2,1,0],[2,3,3,2],[2,2,1,2],[1,0,0,1]],[[2,1,0,1],[2,3,2,2],[2,3,0,0],[1,2,2,1]],[[1,1,0,1],[3,3,2,2],[2,3,0,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[3,3,0,0],[1,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,3,0,0],[2,2,2,1]],[[1,1,0,1],[2,3,2,2],[2,3,0,0],[1,3,2,1]],[[2,1,0,1],[2,3,2,2],[2,3,0,1],[1,2,2,0]],[[1,1,0,1],[3,3,2,2],[2,3,0,1],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[3,3,0,1],[1,2,2,0]],[[1,1,0,1],[2,3,2,2],[2,3,0,1],[2,2,2,0]],[[1,1,0,1],[2,3,2,2],[2,3,0,1],[1,3,2,0]],[[1,2,1,0],[3,3,3,2],[2,1,3,1],[1,1,0,0]],[[1,3,1,0],[2,3,3,2],[2,1,3,1],[1,1,0,0]],[[2,2,1,0],[2,3,3,2],[2,1,3,1],[1,1,0,0]],[[2,1,0,1],[2,3,2,2],[2,3,3,0],[1,0,1,1]],[[1,1,0,1],[3,3,2,2],[2,3,3,0],[1,0,1,1]],[[1,1,0,1],[2,4,2,2],[2,3,3,0],[1,0,1,1]],[[1,1,0,1],[2,3,2,2],[3,3,3,0],[1,0,1,1]],[[1,2,1,0],[3,3,3,2],[2,1,3,1],[0,2,0,0]],[[1,3,1,0],[2,3,3,2],[2,1,3,1],[0,2,0,0]],[[2,2,1,0],[2,3,3,2],[2,1,3,1],[0,2,0,0]],[[1,2,1,0],[3,3,3,2],[2,1,3,0],[1,2,0,0]],[[1,3,1,0],[2,3,3,2],[2,1,3,0],[1,2,0,0]],[[2,2,1,0],[2,3,3,2],[2,1,3,0],[1,2,0,0]],[[2,1,0,1],[2,3,2,2],[2,3,3,1],[1,0,0,1]],[[1,1,0,1],[3,3,2,2],[2,3,3,1],[1,0,0,1]],[[1,1,0,1],[2,4,2,2],[2,3,3,1],[1,0,0,1]],[[1,1,0,1],[2,3,2,2],[3,3,3,1],[1,0,0,1]],[[2,1,0,1],[2,3,2,2],[2,3,3,1],[1,0,1,0]],[[1,1,0,1],[3,3,2,2],[2,3,3,1],[1,0,1,0]],[[1,1,0,1],[2,4,2,2],[2,3,3,1],[1,0,1,0]],[[1,1,0,1],[2,3,2,2],[3,3,3,1],[1,0,1,0]],[[1,2,1,0],[3,3,3,2],[2,1,3,0],[1,1,1,0]],[[1,3,1,0],[2,3,3,2],[2,1,3,0],[1,1,1,0]],[[2,2,1,0],[2,3,3,2],[2,1,3,0],[1,1,1,0]],[[1,2,1,0],[3,3,3,2],[2,1,3,0],[1,0,2,0]],[[1,3,1,0],[2,3,3,2],[2,1,3,0],[1,0,2,0]],[[2,2,1,0],[2,3,3,2],[2,1,3,0],[1,0,2,0]],[[1,2,1,0],[3,3,3,2],[2,1,3,0],[0,2,1,0]],[[1,3,1,0],[2,3,3,2],[2,1,3,0],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[2,1,3,0],[0,2,1,0]],[[1,2,1,0],[3,3,3,2],[2,1,3,0],[0,1,2,0]],[[1,3,1,0],[2,3,3,2],[2,1,3,0],[0,1,2,0]],[[2,2,1,0],[2,3,3,2],[2,1,3,0],[0,1,2,0]],[[1,2,1,0],[3,3,3,2],[2,1,2,1],[1,2,0,0]],[[1,3,1,0],[2,3,3,2],[2,1,2,1],[1,2,0,0]],[[2,2,1,0],[2,3,3,2],[2,1,2,1],[1,2,0,0]],[[1,2,1,0],[3,3,3,2],[2,1,2,1],[1,1,1,0]],[[1,3,1,0],[2,3,3,2],[2,1,2,1],[1,1,1,0]],[[2,2,1,0],[2,3,3,2],[2,1,2,1],[1,1,1,0]],[[1,2,1,0],[3,3,3,2],[2,1,2,1],[1,1,0,1]],[[1,3,1,0],[2,3,3,2],[2,1,2,1],[1,1,0,1]],[[2,2,1,0],[2,3,3,2],[2,1,2,1],[1,1,0,1]],[[1,2,1,0],[3,3,3,2],[2,1,2,1],[1,0,2,0]],[[1,3,1,0],[2,3,3,2],[2,1,2,1],[1,0,2,0]],[[2,2,1,0],[2,3,3,2],[2,1,2,1],[1,0,2,0]],[[1,2,1,0],[3,3,3,2],[2,1,2,1],[1,0,1,1]],[[1,3,1,0],[2,3,3,2],[2,1,2,1],[1,0,1,1]],[[2,2,1,0],[2,3,3,2],[2,1,2,1],[1,0,1,1]],[[1,2,1,0],[3,3,3,2],[2,1,2,1],[0,2,1,0]],[[1,3,1,0],[2,3,3,2],[2,1,2,1],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[2,1,2,1],[0,2,1,0]],[[1,2,1,0],[3,3,3,2],[2,1,2,1],[0,2,0,1]],[[1,3,1,0],[2,3,3,2],[2,1,2,1],[0,2,0,1]],[[2,2,1,0],[2,3,3,2],[2,1,2,1],[0,2,0,1]],[[1,2,1,0],[3,3,3,2],[2,1,2,1],[0,1,2,0]],[[1,3,1,0],[2,3,3,2],[2,1,2,1],[0,1,2,0]],[[2,2,1,0],[2,3,3,2],[2,1,2,1],[0,1,2,0]],[[1,2,1,0],[3,3,3,2],[2,1,2,1],[0,1,1,1]],[[1,3,1,0],[2,3,3,2],[2,1,2,1],[0,1,1,1]],[[2,2,1,0],[2,3,3,2],[2,1,2,1],[0,1,1,1]],[[1,2,1,0],[3,3,3,2],[2,1,2,0],[1,2,0,1]],[[1,3,1,0],[2,3,3,2],[2,1,2,0],[1,2,0,1]],[[2,2,1,0],[2,3,3,2],[2,1,2,0],[1,2,0,1]],[[1,2,1,0],[3,3,3,2],[2,1,2,0],[1,1,1,1]],[[1,3,1,0],[2,3,3,2],[2,1,2,0],[1,1,1,1]],[[2,2,1,0],[2,3,3,2],[2,1,2,0],[1,1,1,1]],[[1,2,1,0],[3,3,3,2],[2,1,2,0],[1,0,2,1]],[[1,3,1,0],[2,3,3,2],[2,1,2,0],[1,0,2,1]],[[2,2,1,0],[2,3,3,2],[2,1,2,0],[1,0,2,1]],[[1,2,1,0],[3,3,3,2],[2,1,2,0],[0,2,1,1]],[[1,3,1,0],[2,3,3,2],[2,1,2,0],[0,2,1,1]],[[2,2,1,0],[2,3,3,2],[2,1,2,0],[0,2,1,1]],[[1,2,1,0],[3,3,3,2],[2,1,2,0],[0,1,2,1]],[[1,3,1,0],[2,3,3,2],[2,1,2,0],[0,1,2,1]],[[2,2,1,0],[2,3,3,2],[2,1,2,0],[0,1,2,1]],[[1,2,1,0],[3,3,3,2],[2,1,1,2],[1,2,0,0]],[[1,3,1,0],[2,3,3,2],[2,1,1,2],[1,2,0,0]],[[2,2,1,0],[2,3,3,2],[2,1,1,2],[1,2,0,0]],[[1,2,1,0],[3,3,3,2],[2,1,1,2],[1,1,1,0]],[[1,3,1,0],[2,3,3,2],[2,1,1,2],[1,1,1,0]],[[2,2,1,0],[2,3,3,2],[2,1,1,2],[1,1,1,0]],[[1,2,1,0],[3,3,3,2],[2,1,1,2],[1,1,0,1]],[[1,3,1,0],[2,3,3,2],[2,1,1,2],[1,1,0,1]],[[2,2,1,0],[2,3,3,2],[2,1,1,2],[1,1,0,1]],[[1,2,1,0],[3,3,3,2],[2,1,1,2],[1,0,2,0]],[[1,3,1,0],[2,3,3,2],[2,1,1,2],[1,0,2,0]],[[2,2,1,0],[2,3,3,2],[2,1,1,2],[1,0,2,0]],[[1,2,1,0],[3,3,3,2],[2,1,1,2],[1,0,1,1]],[[1,3,1,0],[2,3,3,2],[2,1,1,2],[1,0,1,1]],[[2,2,1,0],[2,3,3,2],[2,1,1,2],[1,0,1,1]],[[1,2,1,0],[3,3,3,2],[2,1,1,2],[0,2,1,0]],[[1,3,1,0],[2,3,3,2],[2,1,1,2],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[2,1,1,2],[0,2,1,0]],[[1,2,1,0],[3,3,3,2],[2,1,1,2],[0,2,0,1]],[[1,3,1,0],[2,3,3,2],[2,1,1,2],[0,2,0,1]],[[2,2,1,0],[2,3,3,2],[2,1,1,2],[0,2,0,1]],[[1,2,1,0],[3,3,3,2],[2,1,1,2],[0,1,2,0]],[[1,3,1,0],[2,3,3,2],[2,1,1,2],[0,1,2,0]],[[2,2,1,0],[2,3,3,2],[2,1,1,2],[0,1,2,0]],[[1,2,1,0],[3,3,3,2],[2,1,1,2],[0,1,1,1]],[[1,3,1,0],[2,3,3,2],[2,1,1,2],[0,1,1,1]],[[2,2,1,0],[2,3,3,2],[2,1,1,2],[0,1,1,1]],[[1,2,1,0],[3,3,3,2],[2,1,1,1],[1,1,2,0]],[[1,3,1,0],[2,3,3,2],[2,1,1,1],[1,1,2,0]],[[2,2,1,0],[2,3,3,2],[2,1,1,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,0],[0,1,4,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,0],[0,1,3,2],[2,2,2,1]],[[1,1,0,1],[2,3,3,0],[0,1,3,2],[1,3,2,1]],[[1,1,0,1],[2,3,3,0],[0,1,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,0],[0,1,3,2],[1,2,2,2]],[[1,1,0,1],[2,3,3,0],[0,2,4,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,0],[0,2,3,2],[1,1,3,1]],[[1,1,0,1],[2,3,3,0],[0,2,3,2],[1,1,2,2]],[[1,1,0,1],[2,3,3,0],[0,3,4,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,0],[0,3,3,2],[0,1,3,1]],[[1,1,0,1],[2,3,3,0],[0,3,3,2],[0,1,2,2]],[[1,2,1,0],[3,3,3,2],[2,1,1,1],[0,2,2,0]],[[1,3,1,0],[2,3,3,2],[2,1,1,1],[0,2,2,0]],[[2,2,1,0],[2,3,3,2],[2,1,1,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,0],[1,0,4,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,0],[1,0,3,2],[2,2,2,1]],[[1,1,0,1],[2,3,3,0],[1,0,3,2],[1,3,2,1]],[[1,1,0,1],[2,3,3,0],[1,0,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,0],[1,0,3,2],[1,2,2,2]],[[1,1,0,1],[2,3,3,0],[1,1,4,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,0],[1,1,3,2],[0,3,2,1]],[[1,1,0,1],[2,3,3,0],[1,1,3,2],[0,2,3,1]],[[1,1,0,1],[2,3,3,0],[1,1,3,2],[0,2,2,2]],[[1,1,0,1],[2,3,3,0],[1,2,4,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,0],[1,2,3,2],[0,1,3,1]],[[1,1,0,1],[2,3,3,0],[1,2,3,2],[0,1,2,2]],[[1,1,0,1],[2,3,3,0],[1,2,4,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,0],[1,2,3,2],[1,0,3,1]],[[1,1,0,1],[2,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,1,0],[3,3,3,2],[2,1,1,0],[1,1,2,1]],[[1,3,1,0],[2,3,3,2],[2,1,1,0],[1,1,2,1]],[[2,2,1,0],[2,3,3,2],[2,1,1,0],[1,1,2,1]],[[1,2,1,0],[3,3,3,2],[2,1,1,0],[0,2,2,1]],[[1,3,1,0],[2,3,3,2],[2,1,1,0],[0,2,2,1]],[[2,2,1,0],[2,3,3,2],[2,1,1,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,0],[2,0,4,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,0],[2,0,3,2],[0,3,2,1]],[[1,1,0,1],[2,3,3,0],[2,0,3,2],[0,2,3,1]],[[1,1,0,1],[2,3,3,0],[2,0,3,2],[0,2,2,2]],[[1,1,0,1],[2,3,3,0],[2,0,4,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,0],[2,0,3,2],[1,1,3,1]],[[1,1,0,1],[2,3,3,0],[2,0,3,2],[1,1,2,2]],[[1,1,0,1],[2,3,3,0],[2,1,4,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,0],[2,1,3,2],[0,1,3,1]],[[1,1,0,1],[2,3,3,0],[2,1,3,2],[0,1,2,2]],[[1,1,0,1],[2,3,3,0],[2,1,4,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,0],[2,1,3,2],[1,0,3,1]],[[1,1,0,1],[2,3,3,0],[2,1,3,2],[1,0,2,2]],[[1,2,1,0],[3,3,3,2],[2,1,0,2],[1,1,2,0]],[[1,3,1,0],[2,3,3,2],[2,1,0,2],[1,1,2,0]],[[2,2,1,0],[2,3,3,2],[2,1,0,2],[1,1,2,0]],[[1,2,1,0],[3,3,3,2],[2,1,0,2],[1,1,1,1]],[[1,3,1,0],[2,3,3,2],[2,1,0,2],[1,1,1,1]],[[2,2,1,0],[2,3,3,2],[2,1,0,2],[1,1,1,1]],[[1,2,1,0],[3,3,3,2],[2,1,0,2],[1,0,2,1]],[[1,3,1,0],[2,3,3,2],[2,1,0,2],[1,0,2,1]],[[2,2,1,0],[2,3,3,2],[2,1,0,2],[1,0,2,1]],[[1,2,1,0],[3,3,3,2],[2,1,0,2],[0,2,2,0]],[[1,3,1,0],[2,3,3,2],[2,1,0,2],[0,2,2,0]],[[2,2,1,0],[2,3,3,2],[2,1,0,2],[0,2,2,0]],[[1,2,1,0],[3,3,3,2],[2,1,0,2],[0,2,1,1]],[[1,3,1,0],[2,3,3,2],[2,1,0,2],[0,2,1,1]],[[2,2,1,0],[2,3,3,2],[2,1,0,2],[0,2,1,1]],[[1,2,1,0],[3,3,3,2],[2,1,0,2],[0,1,2,1]],[[1,3,1,0],[2,3,3,2],[2,1,0,2],[0,1,2,1]],[[2,2,1,0],[2,3,3,2],[2,1,0,2],[0,1,2,1]],[[1,2,1,0],[3,3,3,2],[2,1,0,1],[1,1,2,1]],[[1,3,1,0],[2,3,3,2],[2,1,0,1],[1,1,2,1]],[[2,2,1,0],[2,3,3,2],[2,1,0,1],[1,1,2,1]],[[1,2,1,0],[3,3,3,2],[2,1,0,1],[0,2,2,1]],[[1,3,1,0],[2,3,3,2],[2,1,0,1],[0,2,2,1]],[[2,2,1,0],[2,3,3,2],[2,1,0,1],[0,2,2,1]],[[1,2,1,0],[3,3,3,2],[2,0,3,2],[1,0,0,1]],[[1,3,1,0],[2,3,3,2],[2,0,3,2],[1,0,0,1]],[[2,2,1,0],[2,3,3,2],[2,0,3,2],[1,0,0,1]],[[1,2,1,0],[3,3,3,2],[2,0,3,2],[0,1,0,1]],[[1,3,1,0],[2,3,3,2],[2,0,3,2],[0,1,0,1]],[[2,2,1,0],[2,3,3,2],[2,0,3,2],[0,1,0,1]],[[1,2,1,0],[3,3,3,2],[2,0,3,1],[1,1,1,0]],[[1,3,1,0],[2,3,3,2],[2,0,3,1],[1,1,1,0]],[[2,2,1,0],[2,3,3,2],[2,0,3,1],[1,1,1,0]],[[1,2,1,0],[3,3,3,2],[2,0,3,1],[1,1,0,1]],[[1,3,1,0],[2,3,3,2],[2,0,3,1],[1,1,0,1]],[[2,2,1,0],[2,3,3,2],[2,0,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[0,0,3,3],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,0,3,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,1],[0,0,3,2],[1,2,2,2]],[[1,1,0,1],[2,3,3,1],[0,1,2,3],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,1,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,1,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,3,1],[0,1,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,1],[0,1,2,2],[1,2,2,2]],[[2,1,0,1],[2,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,1,0,1],[3,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,4,3,1],[0,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,4,1],[0,1,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,1,4,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,1,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,1,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,3,1],[0,1,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,3,1],[0,1,3,1],[1,2,2,2]],[[2,1,0,1],[2,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,1,0,1],[3,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,4,3,1],[0,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,4,1],[0,1,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[0,1,4,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[0,1,3,3],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[0,1,3,2],[1,2,1,2]],[[2,1,0,1],[2,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,1,0,1],[3,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,4,3,1],[0,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,4,1],[0,1,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[0,1,4,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[0,1,3,3],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[0,1,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,3,1],[0,1,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,3,1],[0,1,3,2],[1,2,3,0]],[[1,1,0,1],[2,3,3,1],[0,2,2,3],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[0,2,2,2],[1,1,3,1]],[[1,1,0,1],[2,3,3,1],[0,2,2,2],[1,1,2,2]],[[2,1,0,1],[2,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,1,0,1],[3,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,1,0,1],[2,4,3,1],[0,2,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,4,1],[0,2,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[0,2,4,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[0,2,3,1],[1,1,3,1]],[[1,1,0,1],[2,3,3,1],[0,2,3,1],[1,1,2,2]],[[2,1,0,1],[2,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,1,0,1],[3,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,4,3,1],[0,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,4,1],[0,2,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[0,2,4,1],[1,2,1,1]],[[1,1,0,1],[2,4,3,1],[0,2,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,4,1],[0,2,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[0,2,4,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[0,2,3,3],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[0,2,3,2],[1,0,2,2]],[[2,1,0,1],[2,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,1,0,1],[3,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,1,0,1],[2,4,3,1],[0,2,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,4,1],[0,2,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[0,2,4,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[0,2,3,3],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[0,2,3,2],[1,1,1,2]],[[2,1,0,1],[2,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,1,0,1],[3,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,1,0,1],[2,4,3,1],[0,2,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,4,1],[0,2,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[0,2,4,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[0,2,3,3],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[0,2,3,2],[1,1,3,0]],[[2,1,0,1],[2,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,1,0,1],[3,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,4,3,1],[0,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,4,1],[0,2,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[0,2,4,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[0,2,3,3],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[0,2,3,2],[1,2,0,2]],[[2,1,0,1],[2,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,1,0,1],[3,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,4,3,1],[0,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,4,1],[0,2,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[0,2,4,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,1,0],[3,3,3,2],[2,0,3,1],[1,0,2,0]],[[1,3,1,0],[2,3,3,2],[2,0,3,1],[1,0,2,0]],[[2,2,1,0],[2,3,3,2],[2,0,3,1],[1,0,2,0]],[[1,2,1,0],[3,3,3,2],[2,0,3,1],[1,0,1,1]],[[1,3,1,0],[2,3,3,2],[2,0,3,1],[1,0,1,1]],[[2,2,1,0],[2,3,3,2],[2,0,3,1],[1,0,1,1]],[[2,1,0,1],[2,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,0,1],[3,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,4,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,4,1],[0,3,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,4,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,0,3],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,0,2],[2,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,0,2],[1,3,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,0,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,1],[0,3,0,2],[1,2,2,2]],[[2,1,0,1],[2,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,1,0,1],[3,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,1,0,1],[2,4,3,1],[0,3,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,4,1],[0,3,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,4,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,1,1],[2,2,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,1,1],[1,3,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,1,1],[1,2,3,1]],[[1,1,0,1],[2,3,3,1],[0,3,1,1],[1,2,2,2]],[[2,1,0,1],[2,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,1,0,1],[3,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,1,0,1],[2,4,3,1],[0,3,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,4,1],[0,3,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[0,4,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[0,3,1,2],[2,2,2,0]],[[1,1,0,1],[2,3,3,1],[0,3,1,2],[1,3,2,0]],[[1,1,0,1],[2,3,3,1],[0,3,1,2],[1,2,3,0]],[[2,1,0,1],[2,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,1,0,1],[3,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,4,3,1],[0,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,4,1],[0,3,2,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[0,4,2,1],[1,1,2,1]],[[2,1,0,1],[2,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,1,0,1],[3,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,1,0,1],[2,4,3,1],[0,3,2,1],[1,2,1,1]],[[1,1,0,1],[2,3,4,1],[0,3,2,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[0,4,2,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[0,3,2,1],[2,2,1,1]],[[1,1,0,1],[2,3,3,1],[0,3,2,1],[1,3,1,1]],[[1,1,0,1],[2,3,3,1],[0,3,2,3],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,2,2],[0,1,3,1]],[[1,1,0,1],[2,3,3,1],[0,3,2,2],[0,1,2,2]],[[2,1,0,1],[2,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,0,1],[3,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,0,1],[2,4,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,0,1],[2,3,4,1],[0,3,2,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[0,4,2,2],[1,1,1,1]],[[2,1,0,1],[2,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,1,0,1],[3,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,4,3,1],[0,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,4,1],[0,3,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[0,4,2,2],[1,1,2,0]],[[2,1,0,1],[2,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,0,1],[3,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,0,1],[2,4,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,4,1],[0,3,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[0,4,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[0,3,2,2],[2,2,0,1]],[[1,1,0,1],[2,3,3,1],[0,3,2,2],[1,3,0,1]],[[2,1,0,1],[2,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,0,1],[3,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,0,1],[2,4,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,4,1],[0,3,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[0,4,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[0,3,2,2],[2,2,1,0]],[[1,1,0,1],[2,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,1,0,1],[2,4,3,1],[0,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,4,1],[0,3,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,4,1],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,3,1],[0,1,3,1]],[[1,1,0,1],[2,3,3,1],[0,3,3,1],[0,1,2,2]],[[1,1,0,1],[2,4,3,1],[0,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,4,1],[0,3,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,2,1,0],[3,3,3,2],[2,0,3,1],[0,2,1,0]],[[1,3,1,0],[2,3,3,2],[2,0,3,1],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[2,0,3,1],[0,2,1,0]],[[1,2,1,0],[3,3,3,2],[2,0,3,1],[0,2,0,1]],[[1,3,1,0],[2,3,3,2],[2,0,3,1],[0,2,0,1]],[[1,1,0,1],[2,4,3,1],[0,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,4,1],[0,3,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,4,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,3,3],[0,0,2,1]],[[1,1,0,1],[2,3,3,1],[0,3,3,2],[0,0,2,2]],[[1,1,0,1],[2,4,3,1],[0,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,1],[0,3,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[0,3,4,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[0,3,3,3],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[0,3,3,2],[0,1,1,2]],[[1,1,0,1],[2,4,3,1],[0,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,1],[0,3,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[0,3,4,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[0,3,3,3],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[0,3,3,2],[0,1,3,0]],[[1,1,0,1],[2,4,3,1],[0,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,4,1],[0,3,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[0,3,4,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[0,3,3,3],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[0,3,3,2],[0,2,0,2]],[[1,1,0,1],[2,4,3,1],[0,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,4,1],[0,3,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,1],[0,3,4,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,1],[0,3,3,3],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[2,0,3,1],[0,2,0,1]],[[1,2,1,0],[3,3,3,2],[2,0,3,1],[0,1,2,0]],[[1,3,1,0],[2,3,3,2],[2,0,3,1],[0,1,2,0]],[[2,2,1,0],[2,3,3,2],[2,0,3,1],[0,1,2,0]],[[1,2,1,0],[3,3,3,2],[2,0,3,1],[0,1,1,1]],[[1,3,1,0],[2,3,3,2],[2,0,3,1],[0,1,1,1]],[[2,2,1,0],[2,3,3,2],[2,0,3,1],[0,1,1,1]],[[1,2,1,0],[3,3,3,2],[2,0,3,1],[0,0,2,1]],[[1,3,1,0],[2,3,3,2],[2,0,3,1],[0,0,2,1]],[[2,2,1,0],[2,3,3,2],[2,0,3,1],[0,0,2,1]],[[2,1,0,1],[2,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,1,0,1],[3,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,4,3,1],[0,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,4,1],[0,3,3,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,2,1,0],[3,3,3,2],[2,0,3,0],[1,2,1,0]],[[1,3,1,0],[2,3,3,2],[2,0,3,0],[1,2,1,0]],[[2,2,1,0],[2,3,3,2],[2,0,3,0],[1,2,1,0]],[[1,2,1,0],[3,3,3,2],[2,0,3,0],[1,1,1,1]],[[1,3,1,0],[2,3,3,2],[2,0,3,0],[1,1,1,1]],[[2,2,1,0],[2,3,3,2],[2,0,3,0],[1,1,1,1]],[[1,2,1,0],[3,3,3,2],[2,0,3,0],[1,0,2,1]],[[1,3,1,0],[2,3,3,2],[2,0,3,0],[1,0,2,1]],[[2,2,1,0],[2,3,3,2],[2,0,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[1,0,2,3],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,0,2,2],[2,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,0,2,2],[1,3,2,1]],[[1,1,0,1],[2,3,3,1],[1,0,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,1],[1,0,2,2],[1,2,2,2]],[[2,1,0,1],[2,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,1,0,1],[3,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,4,3,1],[1,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,4,1],[1,0,3,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,0,4,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,0,3,1],[2,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,0,3,1],[1,3,2,1]],[[1,1,0,1],[2,3,3,1],[1,0,3,1],[1,2,3,1]],[[1,1,0,1],[2,3,3,1],[1,0,3,1],[1,2,2,2]],[[1,1,0,1],[2,3,3,1],[1,0,3,3],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,0,3,2],[0,2,3,1]],[[1,1,0,1],[2,3,3,1],[1,0,3,2],[0,2,2,2]],[[2,1,0,1],[2,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,0,1],[3,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,4,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,4,1],[1,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[1,0,4,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[1,0,3,3],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[1,0,3,2],[1,2,1,2]],[[2,1,0,1],[2,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,1,0,1],[3,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,4,3,1],[1,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,4,1],[1,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[1,0,4,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[1,0,3,3],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[1,0,3,2],[2,2,2,0]],[[1,1,0,1],[2,3,3,1],[1,0,3,2],[1,3,2,0]],[[1,1,0,1],[2,3,3,1],[1,0,3,2],[1,2,3,0]],[[1,1,0,1],[2,3,3,1],[1,1,2,3],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,1,2,2],[0,3,2,1]],[[1,1,0,1],[2,3,3,1],[1,1,2,2],[0,2,3,1]],[[1,1,0,1],[2,3,3,1],[1,1,2,2],[0,2,2,2]],[[2,1,0,1],[2,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,1,0,1],[3,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,1,0,1],[2,4,3,1],[1,1,3,1],[0,2,2,1]],[[1,1,0,1],[2,3,4,1],[1,1,3,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,1,4,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,1,3,1],[0,3,2,1]],[[1,1,0,1],[2,3,3,1],[1,1,3,1],[0,2,3,1]],[[1,1,0,1],[2,3,3,1],[1,1,3,1],[0,2,2,2]],[[2,1,0,1],[2,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,1,0,1],[3,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,1,0,1],[2,4,3,1],[1,1,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,4,1],[1,1,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[1,1,4,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[1,1,3,3],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[1,1,3,2],[0,2,1,2]],[[2,1,0,1],[2,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,1,0,1],[3,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,1,0,1],[2,4,3,1],[1,1,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,4,1],[1,1,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,1],[1,1,4,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,1],[1,1,3,3],[0,2,2,0]],[[1,1,0,1],[2,3,3,1],[1,1,3,2],[0,3,2,0]],[[1,1,0,1],[2,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,1,0,1],[2,3,3,1],[1,2,2,3],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[1,2,2,2],[0,1,3,1]],[[1,1,0,1],[2,3,3,1],[1,2,2,2],[0,1,2,2]],[[1,1,0,1],[2,3,3,1],[1,2,2,3],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[1,2,2,2],[1,0,3,1]],[[1,1,0,1],[2,3,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,1,0],[3,3,3,2],[2,0,3,0],[0,2,1,1]],[[1,3,1,0],[2,3,3,2],[2,0,3,0],[0,2,1,1]],[[2,2,1,0],[2,3,3,2],[2,0,3,0],[0,2,1,1]],[[1,2,1,0],[3,3,3,2],[2,0,3,0],[0,1,2,1]],[[2,1,0,1],[2,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,1,0,1],[3,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,1,0,1],[2,4,3,1],[1,2,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,4,1],[1,2,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[1,2,4,1],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,1],[0,1,3,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,1],[0,1,2,2]],[[2,1,0,1],[2,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,1,0,1],[3,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,4,3,1],[1,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,4,1],[1,2,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[1,2,4,1],[0,2,1,1]],[[2,1,0,1],[2,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,1,0,1],[3,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,4,3,1],[1,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,4,1],[1,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[1,2,4,1],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,1],[1,0,3,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,1],[1,0,2,2]],[[2,1,0,1],[2,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,1,0,1],[3,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,4,3,1],[1,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,4,1],[1,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[1,2,4,1],[1,1,1,1]],[[1,3,1,0],[2,3,3,2],[2,0,3,0],[0,1,2,1]],[[2,2,1,0],[2,3,3,2],[2,0,3,0],[0,1,2,1]],[[2,1,0,1],[2,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,1,0,1],[3,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,1,0,1],[2,4,3,1],[1,2,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,4,1],[1,2,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,1],[1,2,4,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,3],[0,0,2,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,2],[0,0,2,2]],[[2,1,0,1],[2,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,1,0,1],[3,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,1,0,1],[2,4,3,1],[1,2,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,1],[1,2,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[1,2,4,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,3],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,2],[0,1,1,2]],[[2,1,0,1],[2,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,1,0,1],[3,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,1,0,1],[2,4,3,1],[1,2,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,1],[1,2,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[1,2,4,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[1,2,3,3],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[1,2,3,2],[0,1,3,0]],[[2,1,0,1],[2,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,1,0,1],[3,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,1,0,1],[2,4,3,1],[1,2,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,4,1],[1,2,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[1,2,4,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,3],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,2],[0,2,0,2]],[[2,1,0,1],[2,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,1,0,1],[3,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,1,0,1],[2,4,3,1],[1,2,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,4,1],[1,2,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,1],[1,2,4,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,1],[1,2,3,3],[0,2,1,0]],[[2,1,0,1],[2,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,1,0,1],[3,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,1,0,1],[2,4,3,1],[1,2,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,4,1],[1,2,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,1],[1,2,4,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,3],[1,0,1,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,2],[1,0,1,2]],[[2,1,0,1],[2,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,1,0,1],[3,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,1,0,1],[2,4,3,1],[1,2,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,4,1],[1,2,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,1],[1,2,4,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,1],[1,2,3,3],[1,0,2,0]],[[1,1,0,1],[2,3,3,1],[1,2,3,2],[1,0,3,0]],[[2,1,0,1],[2,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,1,0,1],[3,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,4,3,1],[1,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,4,1],[1,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[1,2,4,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,3],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[1,2,3,2],[1,1,0,2]],[[2,1,0,1],[2,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,1,0,1],[3,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,1,0,1],[2,4,3,1],[1,2,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,4,1],[1,2,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,1],[1,2,4,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,1,0],[3,3,3,2],[2,0,2,2],[1,1,1,0]],[[1,3,1,0],[2,3,3,2],[2,0,2,2],[1,1,1,0]],[[2,2,1,0],[2,3,3,2],[2,0,2,2],[1,1,1,0]],[[1,2,1,0],[3,3,3,2],[2,0,2,2],[1,1,0,1]],[[1,3,1,0],[2,3,3,2],[2,0,2,2],[1,1,0,1]],[[2,2,1,0],[2,3,3,2],[2,0,2,2],[1,1,0,1]],[[1,2,1,0],[3,3,3,2],[2,0,2,2],[1,0,2,0]],[[2,1,0,1],[2,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,0,1],[3,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,4,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,4,1],[1,3,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,4,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,3,0,3],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,3,0,2],[0,3,2,1]],[[1,1,0,1],[2,3,3,1],[1,3,0,2],[0,2,3,1]],[[1,1,0,1],[2,3,3,1],[1,3,0,2],[0,2,2,2]],[[2,1,0,1],[2,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,1,0,1],[3,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,4,3,1],[1,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,4,1],[1,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[1,4,0,2],[1,1,2,1]],[[2,1,0,1],[2,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,1,0,1],[3,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,1,0,1],[2,4,3,1],[1,3,1,1],[0,2,2,1]],[[1,1,0,1],[2,3,4,1],[1,3,1,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,4,1,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[1,3,1,1],[0,3,2,1]],[[1,1,0,1],[2,3,3,1],[1,3,1,1],[0,2,3,1]],[[1,1,0,1],[2,3,3,1],[1,3,1,1],[0,2,2,2]],[[2,1,0,1],[2,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,1,0,1],[3,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,1,0,1],[2,4,3,1],[1,3,1,1],[1,1,2,1]],[[1,1,0,1],[2,3,4,1],[1,3,1,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[1,4,1,1],[1,1,2,1]],[[2,1,0,1],[2,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,1,0,1],[3,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,1,0,1],[2,4,3,1],[1,3,1,2],[0,2,2,0]],[[1,1,0,1],[2,3,4,1],[1,3,1,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,1],[1,4,1,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,1],[1,3,1,2],[0,3,2,0]],[[1,1,0,1],[2,3,3,1],[1,3,1,2],[0,2,3,0]],[[2,1,0,1],[2,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,1,0,1],[3,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,1,0,1],[2,4,3,1],[1,3,1,2],[1,1,2,0]],[[1,1,0,1],[2,3,4,1],[1,3,1,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,3,1,0],[2,3,3,2],[2,0,2,2],[1,0,2,0]],[[2,2,1,0],[2,3,3,2],[2,0,2,2],[1,0,2,0]],[[1,2,1,0],[3,3,3,2],[2,0,2,2],[1,0,1,1]],[[1,3,1,0],[2,3,3,2],[2,0,2,2],[1,0,1,1]],[[2,2,1,0],[2,3,3,2],[2,0,2,2],[1,0,1,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,1,0,1],[3,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,1,0,1],[2,4,3,1],[1,3,2,1],[0,1,2,1]],[[1,1,0,1],[2,3,4,1],[1,3,2,1],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[1,4,2,1],[0,1,2,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,1,0,1],[3,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,1,0,1],[2,4,3,1],[1,3,2,1],[0,2,1,1]],[[1,1,0,1],[2,3,4,1],[1,3,2,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[1,4,2,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[1,3,2,1],[0,3,1,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,1,0,1],[3,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,1,0,1],[2,4,3,1],[1,3,2,1],[1,0,2,1]],[[1,1,0,1],[2,3,4,1],[1,3,2,1],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[1,4,2,1],[1,0,2,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,0,1],[3,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,0,1],[2,4,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,0,1],[2,3,4,1],[1,3,2,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[1,4,2,1],[1,1,1,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,1,0,1],[3,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,1,0,1],[2,4,3,1],[1,3,2,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[1,4,2,1],[1,2,0,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,1,0,1],[3,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,4,3,1],[1,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,1],[1,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[1,4,2,2],[0,1,1,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,1,0,1],[3,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,4,3,1],[1,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,1],[1,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[1,4,2,2],[0,1,2,0]],[[2,1,0,1],[2,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,0,1],[3,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,4,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,4,1],[1,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[1,4,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[1,3,2,2],[0,3,0,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,1,0,1],[3,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,4,3,1],[1,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,4,1],[1,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,1],[1,4,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,1],[1,3,2,2],[0,3,1,0]],[[1,2,1,0],[3,3,3,2],[2,0,2,2],[0,2,1,0]],[[1,3,1,0],[2,3,3,2],[2,0,2,2],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[2,0,2,2],[0,2,1,0]],[[1,2,1,0],[3,3,3,2],[2,0,2,2],[0,2,0,1]],[[1,3,1,0],[2,3,3,2],[2,0,2,2],[0,2,0,1]],[[2,2,1,0],[2,3,3,2],[2,0,2,2],[0,2,0,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,1,0,1],[3,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,4,3,1],[1,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,4,1],[1,3,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,1],[1,4,2,2],[1,0,1,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,1,0,1],[3,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,1,0,1],[2,4,3,1],[1,3,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,4,1],[1,3,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,1],[1,4,2,2],[1,0,2,0]],[[2,1,0,1],[2,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,0,1],[3,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,0,1],[2,4,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,4,1],[1,3,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[1,4,2,2],[1,1,0,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,1,0,1],[3,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,1,0,1],[2,4,3,1],[1,3,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,4,1],[1,3,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,1],[1,4,2,2],[1,1,1,0]],[[1,2,1,0],[3,3,3,2],[2,0,2,2],[0,1,2,0]],[[1,3,1,0],[2,3,3,2],[2,0,2,2],[0,1,2,0]],[[2,2,1,0],[2,3,3,2],[2,0,2,2],[0,1,2,0]],[[1,2,1,0],[3,3,3,2],[2,0,2,2],[0,1,1,1]],[[1,3,1,0],[2,3,3,2],[2,0,2,2],[0,1,1,1]],[[2,1,0,1],[2,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,1,0,1],[3,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,1,0,1],[2,4,3,1],[1,3,2,2],[1,2,0,0]],[[1,1,0,1],[2,3,4,1],[1,3,2,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,1],[1,4,2,2],[1,2,0,0]],[[2,2,1,0],[2,3,3,2],[2,0,2,2],[0,1,1,1]],[[1,2,1,0],[3,3,3,2],[2,0,2,2],[0,0,2,1]],[[1,3,1,0],[2,3,3,2],[2,0,2,2],[0,0,2,1]],[[2,2,1,0],[2,3,3,2],[2,0,2,2],[0,0,2,1]],[[1,2,1,0],[3,3,3,2],[2,0,2,1],[1,2,1,0]],[[1,3,1,0],[2,3,3,2],[2,0,2,1],[1,2,1,0]],[[2,2,1,0],[2,3,3,2],[2,0,2,1],[1,2,1,0]],[[1,2,1,0],[3,3,3,2],[2,0,2,1],[1,2,0,1]],[[1,3,1,0],[2,3,3,2],[2,0,2,1],[1,2,0,1]],[[2,2,1,0],[2,3,3,2],[2,0,2,1],[1,2,0,1]],[[2,1,0,1],[2,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,0,1],[3,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,4,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,3,4,1],[1,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,3,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,1,0],[3,3,3,2],[2,0,2,0],[1,2,1,1]],[[1,3,1,0],[2,3,3,2],[2,0,2,0],[1,2,1,1]],[[2,2,1,0],[2,3,3,2],[2,0,2,0],[1,2,1,1]],[[1,2,1,0],[3,3,3,2],[2,0,1,2],[1,2,1,0]],[[1,3,1,0],[2,3,3,2],[2,0,1,2],[1,2,1,0]],[[2,2,1,0],[2,3,3,2],[2,0,1,2],[1,2,1,0]],[[1,2,1,0],[3,3,3,2],[2,0,1,2],[1,2,0,1]],[[1,3,1,0],[2,3,3,2],[2,0,1,2],[1,2,0,1]],[[2,2,1,0],[2,3,3,2],[2,0,1,2],[1,2,0,1]],[[2,1,0,1],[2,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,1,0,1],[3,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,1,0,1],[2,4,3,1],[1,3,3,2],[0,0,1,1]],[[1,1,0,1],[2,3,4,1],[1,3,3,2],[0,0,1,1]],[[1,1,0,1],[2,3,3,1],[1,3,4,2],[0,0,1,1]],[[1,1,0,1],[2,3,3,1],[1,3,3,3],[0,0,1,1]],[[1,1,0,1],[2,3,3,1],[1,3,3,2],[0,0,1,2]],[[2,1,0,1],[2,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,1,0,1],[3,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,1,0,1],[2,4,3,1],[1,3,3,2],[0,0,2,0]],[[1,1,0,1],[2,3,4,1],[1,3,3,2],[0,0,2,0]],[[1,1,0,1],[2,3,3,1],[1,3,4,2],[0,0,2,0]],[[1,1,0,1],[2,3,3,1],[1,3,3,3],[0,0,2,0]],[[2,1,0,1],[2,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,1,0,1],[3,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,1,0,1],[2,4,3,1],[1,3,3,2],[0,2,0,0]],[[1,1,0,1],[2,3,4,1],[1,3,3,2],[0,2,0,0]],[[1,1,0,1],[2,3,3,1],[1,4,3,2],[0,2,0,0]],[[1,2,1,0],[3,3,3,2],[2,0,1,2],[1,0,2,1]],[[1,3,1,0],[2,3,3,2],[2,0,1,2],[1,0,2,1]],[[2,2,1,0],[2,3,3,2],[2,0,1,2],[1,0,2,1]],[[1,2,1,0],[3,3,3,2],[2,0,1,2],[0,1,2,1]],[[1,3,1,0],[2,3,3,2],[2,0,1,2],[0,1,2,1]],[[2,2,1,0],[2,3,3,2],[2,0,1,2],[0,1,2,1]],[[1,2,1,0],[3,3,3,2],[2,0,1,1],[1,2,2,0]],[[1,3,1,0],[2,3,3,2],[2,0,1,1],[1,2,2,0]],[[2,2,1,0],[2,3,3,2],[2,0,1,1],[1,2,2,0]],[[1,2,1,0],[3,3,3,2],[2,0,1,0],[1,2,2,1]],[[1,3,1,0],[2,3,3,2],[2,0,1,0],[1,2,2,1]],[[2,2,1,0],[2,3,3,2],[2,0,1,0],[1,2,2,1]],[[2,1,0,1],[2,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,1,0,1],[3,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,1,0,1],[2,4,3,1],[1,3,3,2],[1,1,0,0]],[[1,1,0,1],[2,3,4,1],[1,3,3,2],[1,1,0,0]],[[1,1,0,1],[2,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,1,0],[3,3,3,2],[2,0,0,2],[1,2,2,0]],[[1,3,1,0],[2,3,3,2],[2,0,0,2],[1,2,2,0]],[[2,2,1,0],[2,3,3,2],[2,0,0,2],[1,2,2,0]],[[1,2,1,0],[3,3,3,2],[2,0,0,2],[1,2,1,1]],[[1,3,1,0],[2,3,3,2],[2,0,0,2],[1,2,1,1]],[[2,2,1,0],[2,3,3,2],[2,0,0,2],[1,2,1,1]],[[1,2,1,0],[3,3,3,2],[2,0,0,2],[1,1,2,1]],[[1,3,1,0],[2,3,3,2],[2,0,0,2],[1,1,2,1]],[[2,2,1,0],[2,3,3,2],[2,0,0,2],[1,1,2,1]],[[1,2,1,0],[3,3,3,2],[2,0,0,2],[0,2,2,1]],[[1,3,1,0],[2,3,3,2],[2,0,0,2],[0,2,2,1]],[[2,2,1,0],[2,3,3,2],[2,0,0,2],[0,2,2,1]],[[1,2,1,0],[3,3,3,2],[2,0,0,1],[1,2,2,1]],[[1,3,1,0],[2,3,3,2],[2,0,0,1],[1,2,2,1]],[[2,2,1,0],[2,3,3,2],[2,0,0,1],[1,2,2,1]],[[2,1,0,1],[2,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[3,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,4,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,4,1],[2,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[3,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,1,3],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,1],[2,0,1,2],[1,2,2,2]],[[2,1,0,1],[2,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,1,0,1],[3,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,1,0,1],[2,4,3,1],[2,0,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,4,1],[2,0,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[3,0,2,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,2,1],[2,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,2,1],[1,3,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,2,1],[1,2,3,1]],[[1,1,0,1],[2,3,3,1],[2,0,2,1],[1,2,2,2]],[[1,1,0,1],[2,3,3,1],[2,0,2,3],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,2,2],[0,3,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,2,2],[0,2,3,1]],[[1,1,0,1],[2,3,3,1],[2,0,2,2],[0,2,2,2]],[[1,1,0,1],[2,3,3,1],[2,0,2,3],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,2,2],[1,1,3,1]],[[1,1,0,1],[2,3,3,1],[2,0,2,2],[1,1,2,2]],[[2,1,0,1],[2,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,0,1],[3,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,0,1],[2,4,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,4,1],[2,0,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[3,0,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[2,0,2,2],[2,2,2,0]],[[1,1,0,1],[2,3,3,1],[2,0,2,2],[1,3,2,0]],[[1,1,0,1],[2,3,3,1],[2,0,2,2],[1,2,3,0]],[[2,1,0,1],[2,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,1,0,1],[3,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,1,0,1],[2,4,3,1],[2,0,3,1],[0,2,2,1]],[[1,1,0,1],[2,3,4,1],[2,0,3,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[3,0,3,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,4,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,1],[0,3,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,1],[0,2,3,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,1],[0,2,2,2]],[[2,1,0,1],[2,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,1,0,1],[3,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,1,0,1],[2,4,3,1],[2,0,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,4,1],[2,0,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[3,0,3,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,4,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,1],[2,1,2,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,1],[1,1,3,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,1],[1,1,2,2]],[[2,1,0,1],[2,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,0,1],[3,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,0,1],[2,4,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,4,1],[2,0,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[3,0,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[2,0,4,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,1],[2,2,1,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,1],[1,3,1,1]],[[2,1,0,1],[2,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,0,1],[3,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,0,1],[2,4,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,4,1],[2,0,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[3,0,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[2,0,4,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,3],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[0,2,1,2]],[[2,1,0,1],[2,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,0,1],[3,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,0,1],[2,4,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,4,1],[2,0,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,1],[3,0,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,1],[2,0,4,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,1],[2,0,3,3],[0,2,2,0]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[0,3,2,0]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[0,2,3,0]],[[2,1,0,1],[2,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,1,0,1],[3,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,1,0,1],[2,4,3,1],[2,0,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,4,1],[2,0,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[3,0,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[2,0,4,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,3],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[2,1,1,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[1,1,1,2]],[[2,1,0,1],[2,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,1,0,1],[3,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,1,0,1],[2,4,3,1],[2,0,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,4,1],[2,0,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[3,0,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[2,0,4,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[2,0,3,3],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[2,1,2,0]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[1,1,3,0]],[[2,1,0,1],[2,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,1,0,1],[3,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,1,0,1],[2,4,3,1],[2,0,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,4,1],[2,0,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[3,0,3,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[2,0,4,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,3],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[2,2,0,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[1,3,0,1]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[1,2,0,2]],[[2,1,0,1],[2,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,1,0,1],[3,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,1,0,1],[2,4,3,1],[2,0,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,4,1],[2,0,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[3,0,3,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[2,0,4,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[2,0,3,3],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[2,2,1,0]],[[1,1,0,1],[2,3,3,1],[2,0,3,2],[1,3,1,0]],[[2,1,0,1],[2,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[3,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,4,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,4,1],[2,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[3,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,0,3],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,0,2],[2,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,0,2],[1,3,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,0,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,1],[2,1,0,2],[1,2,2,2]],[[2,1,0,1],[2,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,1,0,1],[3,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,1,0,1],[2,4,3,1],[2,1,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,4,1],[2,1,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[3,1,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,1,1],[2,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,1,1],[1,3,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,1,1],[1,2,3,1]],[[1,1,0,1],[2,3,3,1],[2,1,1,1],[1,2,2,2]],[[2,1,0,1],[2,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,1,0,1],[3,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,1,0,1],[2,4,3,1],[2,1,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,4,1],[2,1,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[3,1,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[2,1,1,2],[2,2,2,0]],[[1,1,0,1],[2,3,3,1],[2,1,1,2],[1,3,2,0]],[[1,1,0,1],[2,3,3,1],[2,1,1,2],[1,2,3,0]],[[2,1,0,1],[2,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,1,0,1],[3,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,1,0,1],[2,4,3,1],[2,1,2,1],[1,2,1,1]],[[1,1,0,1],[2,3,4,1],[2,1,2,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[3,1,2,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,2,1],[2,2,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,2,1],[1,3,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,2,3],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,2,2],[0,1,3,1]],[[1,1,0,1],[2,3,3,1],[2,1,2,2],[0,1,2,2]],[[1,1,0,1],[2,3,3,1],[2,1,2,3],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,2,2],[1,0,3,1]],[[1,1,0,1],[2,3,3,1],[2,1,2,2],[1,0,2,2]],[[2,1,0,1],[2,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,1,0,1],[3,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,1,0,1],[2,4,3,1],[2,1,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,4,1],[2,1,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[3,1,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[2,1,2,2],[2,2,0,1]],[[1,1,0,1],[2,3,3,1],[2,1,2,2],[1,3,0,1]],[[2,1,0,1],[2,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,1,0,1],[3,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,1,0,1],[2,4,3,1],[2,1,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,4,1],[2,1,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[3,1,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[2,1,2,2],[2,2,1,0]],[[1,1,0,1],[2,3,3,1],[2,1,2,2],[1,3,1,0]],[[2,1,0,1],[2,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,1,0,1],[3,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,1,0,1],[2,4,3,1],[2,1,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,4,1],[2,1,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[3,1,3,1],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,4,1],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,1],[0,1,3,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,1],[0,1,2,2]],[[2,1,0,1],[2,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,1,0,1],[3,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,1,0,1],[2,4,3,1],[2,1,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,4,1],[2,1,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[3,1,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,4,1],[0,2,1,1]],[[2,1,0,1],[2,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,1,0,1],[3,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,1,0,1],[2,4,3,1],[2,1,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,4,1],[2,1,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[3,1,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,4,1],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,1],[2,0,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,1],[1,0,3,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,1],[1,0,2,2]],[[2,1,0,1],[2,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,1,0,1],[3,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,1,0,1],[2,4,3,1],[2,1,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,4,1],[2,1,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[3,1,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,4,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,1],[2,1,1,1]],[[2,1,0,1],[2,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,1,0,1],[3,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,1,0,1],[2,4,3,1],[2,1,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,4,1],[2,1,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,4,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,3],[0,0,2,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,2],[0,0,2,2]],[[2,1,0,1],[2,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,1,0,1],[3,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,1,0,1],[2,4,3,1],[2,1,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,1],[2,1,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[3,1,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,4,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,3],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,2],[0,1,1,2]],[[2,1,0,1],[2,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,1,0,1],[3,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,1,0,1],[2,4,3,1],[2,1,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,1],[2,1,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[3,1,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[2,1,4,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[2,1,3,3],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[2,1,3,2],[0,1,3,0]],[[2,1,0,1],[2,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,1,0,1],[3,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,1,0,1],[2,4,3,1],[2,1,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,4,1],[2,1,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[3,1,3,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[2,1,4,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,3],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,2],[0,2,0,2]],[[2,1,0,1],[2,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,1,0,1],[3,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,1,0,1],[2,4,3,1],[2,1,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,4,1],[2,1,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,1],[3,1,3,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,1],[2,1,4,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,1],[2,1,3,3],[0,2,1,0]],[[2,1,0,1],[2,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,1,0,1],[3,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,1,0,1],[2,4,3,1],[2,1,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,4,1],[2,1,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,1],[3,1,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,4,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,3],[1,0,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,2],[2,0,1,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,2],[1,0,1,2]],[[2,1,0,1],[2,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,1,0,1],[3,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,1,0,1],[2,4,3,1],[2,1,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,4,1],[2,1,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,1],[3,1,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,1],[2,1,4,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,1],[2,1,3,3],[1,0,2,0]],[[1,1,0,1],[2,3,3,1],[2,1,3,2],[2,0,2,0]],[[1,1,0,1],[2,3,3,1],[2,1,3,2],[1,0,3,0]],[[2,1,0,1],[2,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,1,0,1],[3,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,1,0,1],[2,4,3,1],[2,1,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,4,1],[2,1,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[3,1,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[2,1,4,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,3],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,2],[2,1,0,1]],[[1,1,0,1],[2,3,3,1],[2,1,3,2],[1,1,0,2]],[[2,1,0,1],[2,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,1,0,1],[3,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,1,0,1],[2,4,3,1],[2,1,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,4,1],[2,1,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,1],[3,1,3,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,1],[2,1,4,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,1],[2,1,3,3],[1,1,1,0]],[[1,1,0,1],[2,3,3,1],[2,1,3,2],[2,1,1,0]],[[2,1,0,1],[2,3,3,1],[2,2,0,1],[1,2,2,1]],[[1,1,0,1],[3,3,3,1],[2,2,0,1],[1,2,2,1]],[[1,1,0,1],[2,4,3,1],[2,2,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[3,2,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,2,0,1],[2,2,2,1]],[[1,1,0,1],[2,3,3,1],[2,2,0,1],[1,3,2,1]],[[2,1,0,1],[2,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,0,1],[3,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,0,1],[2,4,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,4,1],[2,2,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[3,2,0,2],[0,2,2,1]],[[2,1,0,1],[2,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,1,0,1],[3,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,1,0,1],[2,4,3,1],[2,2,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,4,1],[2,2,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[3,2,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[2,2,0,2],[2,1,2,1]],[[2,1,0,1],[2,3,3,1],[2,2,0,2],[1,2,2,0]],[[1,1,0,1],[3,3,3,1],[2,2,0,2],[1,2,2,0]],[[1,1,0,1],[2,4,3,1],[2,2,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[3,2,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,1],[2,2,0,2],[2,2,2,0]],[[1,1,0,1],[2,3,3,1],[2,2,0,2],[1,3,2,0]],[[2,1,0,1],[2,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,1,0,1],[3,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,1,0,1],[2,4,3,1],[2,2,1,1],[0,2,2,1]],[[1,1,0,1],[2,3,4,1],[2,2,1,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[3,2,1,1],[0,2,2,1]],[[2,1,0,1],[2,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,1,0,1],[3,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,1,0,1],[2,4,3,1],[2,2,1,1],[1,1,2,1]],[[1,1,0,1],[2,3,4,1],[2,2,1,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[3,2,1,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[2,2,1,1],[2,1,2,1]],[[2,1,0,1],[2,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,1,0,1],[3,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,1,0,1],[2,4,3,1],[2,2,1,2],[0,2,2,0]],[[1,1,0,1],[2,3,4,1],[2,2,1,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,1],[3,2,1,2],[0,2,2,0]],[[2,1,0,1],[2,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,1,0,1],[3,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,1,0,1],[2,4,3,1],[2,2,1,2],[1,1,2,0]],[[1,1,0,1],[2,3,4,1],[2,2,1,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[3,2,1,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[2,2,1,2],[2,1,2,0]],[[2,1,0,1],[2,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,1,0,1],[3,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,1,0,1],[2,4,3,1],[2,2,2,1],[0,1,2,1]],[[1,1,0,1],[2,3,4,1],[2,2,2,1],[0,1,2,1]],[[1,1,0,1],[2,3,3,1],[3,2,2,1],[0,1,2,1]],[[2,1,0,1],[2,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,1,0,1],[3,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,1,0,1],[2,4,3,1],[2,2,2,1],[0,2,1,1]],[[1,1,0,1],[2,3,4,1],[2,2,2,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[3,2,2,1],[0,2,1,1]],[[2,1,0,1],[2,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,1,0,1],[3,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,1,0,1],[2,4,3,1],[2,2,2,1],[1,0,2,1]],[[1,1,0,1],[2,3,4,1],[2,2,2,1],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[3,2,2,1],[1,0,2,1]],[[1,1,0,1],[2,3,3,1],[2,2,2,1],[2,0,2,1]],[[2,1,0,1],[2,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,1,0,1],[3,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,1,0,1],[2,4,3,1],[2,2,2,1],[1,1,1,1]],[[1,1,0,1],[2,3,4,1],[2,2,2,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[3,2,2,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[2,2,2,1],[2,1,1,1]],[[2,1,0,1],[2,3,3,1],[2,2,2,1],[1,2,0,1]],[[1,1,0,1],[3,3,3,1],[2,2,2,1],[1,2,0,1]],[[1,1,0,1],[2,4,3,1],[2,2,2,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[3,2,2,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[2,2,2,1],[2,2,0,1]],[[2,1,0,1],[2,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,1,0,1],[3,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,1,0,1],[2,4,3,1],[2,2,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,1],[2,2,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,1],[3,2,2,2],[0,1,1,1]],[[2,1,0,1],[2,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,1,0,1],[3,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,1,0,1],[2,4,3,1],[2,2,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,1],[2,2,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,1],[3,2,2,2],[0,1,2,0]],[[2,1,0,1],[2,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,1,0,1],[3,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,1,0,1],[2,4,3,1],[2,2,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,4,1],[2,2,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[3,2,2,2],[0,2,0,1]],[[2,1,0,1],[2,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,1,0,1],[3,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,1,0,1],[2,4,3,1],[2,2,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,4,1],[2,2,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,1],[3,2,2,2],[0,2,1,0]],[[2,1,0,1],[2,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,1,0,1],[3,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,1,0,1],[2,4,3,1],[2,2,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,4,1],[2,2,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,1],[3,2,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,1],[2,2,2,2],[2,0,1,1]],[[2,1,0,1],[2,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,1,0,1],[3,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,1,0,1],[2,4,3,1],[2,2,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,4,1],[2,2,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,1],[3,2,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,1],[2,2,2,2],[2,0,2,0]],[[2,1,0,1],[2,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,0,1],[3,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,0,1],[2,4,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,4,1],[2,2,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[3,2,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[2,2,2,2],[2,1,0,1]],[[2,1,0,1],[2,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,1,0,1],[3,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,1,0,1],[2,4,3,1],[2,2,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,1],[3,2,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,1],[2,2,2,2],[2,1,1,0]],[[2,1,0,1],[2,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,1,0,1],[3,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,1,0,1],[2,4,3,1],[2,2,2,2],[1,2,0,0]],[[1,1,0,1],[2,3,4,1],[2,2,2,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,1],[3,2,2,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,1],[2,2,2,2],[2,2,0,0]],[[2,1,0,1],[2,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,0,1],[3,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,0,1],[2,4,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,0,1],[2,3,4,1],[2,2,3,2],[0,2,0,0]],[[1,1,0,1],[2,3,3,1],[3,2,3,2],[0,2,0,0]],[[2,1,0,1],[2,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,0,1],[3,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,0,1],[2,4,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,0,1],[2,3,4,1],[2,2,3,2],[1,1,0,0]],[[1,1,0,1],[2,3,3,1],[3,2,3,2],[1,1,0,0]],[[1,1,0,1],[2,3,3,1],[2,2,3,2],[2,1,0,0]],[[2,1,0,1],[2,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,0,1],[3,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,0,1],[2,4,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,1],[3,3,0,1],[0,2,2,1]],[[2,1,0,1],[2,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,0,1],[3,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,0,1],[2,4,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[3,3,0,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,1],[2,3,0,1],[2,1,2,1]],[[2,1,0,1],[2,3,3,1],[2,3,0,1],[1,2,1,1]],[[1,1,0,1],[3,3,3,1],[2,3,0,1],[1,2,1,1]],[[1,1,0,1],[2,4,3,1],[2,3,0,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[3,3,0,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,1],[2,3,0,1],[2,2,1,1]],[[2,1,0,1],[2,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,0,1],[3,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,0,1],[2,4,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,1],[3,3,0,2],[0,2,2,0]],[[2,1,0,1],[2,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,0,1],[3,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,0,1],[2,4,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[3,3,0,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,1],[2,3,0,2],[2,1,2,0]],[[2,1,0,1],[2,3,3,1],[2,3,0,2],[1,2,1,0]],[[1,1,0,1],[3,3,3,1],[2,3,0,2],[1,2,1,0]],[[1,1,0,1],[2,4,3,1],[2,3,0,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[3,3,0,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,1],[2,3,0,2],[2,2,1,0]],[[2,1,0,1],[2,3,3,1],[2,3,1,1],[0,2,1,1]],[[1,1,0,1],[3,3,3,1],[2,3,1,1],[0,2,1,1]],[[1,1,0,1],[2,4,3,1],[2,3,1,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,1],[3,3,1,1],[0,2,1,1]],[[2,1,0,1],[2,3,3,1],[2,3,1,1],[1,1,1,1]],[[1,1,0,1],[3,3,3,1],[2,3,1,1],[1,1,1,1]],[[1,1,0,1],[2,4,3,1],[2,3,1,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[3,3,1,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,1],[2,3,1,1],[2,1,1,1]],[[2,1,0,1],[2,3,3,1],[2,3,1,1],[1,2,0,1]],[[1,1,0,1],[3,3,3,1],[2,3,1,1],[1,2,0,1]],[[1,1,0,1],[2,4,3,1],[2,3,1,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[3,3,1,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,1],[2,3,1,1],[2,2,0,1]],[[2,1,0,1],[2,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,0,1],[3,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,0,1],[2,4,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,1],[3,3,1,2],[0,2,0,1]],[[2,1,0,1],[2,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,0,1],[3,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,0,1],[2,4,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,1],[3,3,1,2],[0,2,1,0]],[[2,1,0,1],[2,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,0,1],[3,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,0,1],[2,4,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[3,3,1,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,1],[2,3,1,2],[2,1,0,1]],[[2,1,0,1],[2,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,0,1],[3,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,0,1],[2,4,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,1],[3,3,1,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,1],[2,3,1,2],[2,1,1,0]],[[2,1,0,1],[2,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,0,1],[3,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,0,1],[2,4,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,1],[3,3,1,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,1],[2,3,1,2],[2,2,0,0]],[[2,1,0,1],[2,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,0,1],[3,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,0,1],[2,4,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,1],[3,3,2,1],[1,0,1,1]],[[2,1,0,1],[2,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,1,0,1],[3,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,1,0,1],[2,4,3,1],[2,3,2,2],[1,0,0,1]],[[1,1,0,1],[2,3,4,1],[2,3,2,2],[1,0,0,1]],[[1,1,0,1],[2,3,3,1],[3,3,2,2],[1,0,0,1]],[[2,1,0,1],[2,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,1,0,1],[3,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,1,0,1],[2,4,3,1],[2,3,2,2],[1,0,1,0]],[[1,1,0,1],[2,3,4,1],[2,3,2,2],[1,0,1,0]],[[1,1,0,1],[2,3,3,1],[3,3,2,2],[1,0,1,0]],[[1,2,1,0],[3,3,3,2],[1,0,0,2],[1,2,2,1]],[[1,3,1,0],[2,3,3,2],[1,0,0,2],[1,2,2,1]],[[2,2,1,0],[2,3,3,2],[1,0,0,2],[1,2,2,1]],[[1,2,1,0],[2,3,3,2],[0,3,3,3],[0,0,0,1]],[[1,2,1,0],[2,3,3,3],[0,3,3,2],[0,0,0,1]],[[2,1,0,1],[2,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,1,0,1],[3,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,1,0,1],[2,4,3,1],[2,3,3,2],[1,0,0,0]],[[1,1,0,1],[2,3,4,1],[2,3,3,2],[1,0,0,0]],[[1,1,0,1],[2,3,3,1],[3,3,3,2],[1,0,0,0]],[[1,2,1,0],[2,3,4,2],[0,3,3,2],[0,0,0,1]],[[1,2,1,0],[2,4,3,2],[0,3,3,2],[0,0,0,1]],[[1,3,1,0],[2,3,3,2],[0,3,3,2],[0,0,0,1]],[[2,2,1,0],[2,3,3,2],[0,3,3,2],[0,0,0,1]],[[1,2,1,0],[2,3,3,3],[0,3,3,1],[1,1,0,0]],[[1,2,1,0],[2,3,4,2],[0,3,3,1],[1,1,0,0]],[[1,2,1,0],[2,4,3,2],[0,3,3,1],[1,1,0,0]],[[1,3,1,0],[2,3,3,2],[0,3,3,1],[1,1,0,0]],[[2,2,1,0],[2,3,3,2],[0,3,3,1],[1,1,0,0]],[[1,2,1,0],[2,3,3,3],[0,3,3,1],[0,2,0,0]],[[1,2,1,0],[2,3,4,2],[0,3,3,1],[0,2,0,0]],[[1,2,1,0],[2,4,3,2],[0,3,3,1],[0,2,0,0]],[[1,3,1,0],[2,3,3,2],[0,3,3,1],[0,2,0,0]],[[2,2,1,0],[2,3,3,2],[0,3,3,1],[0,2,0,0]],[[1,2,1,0],[2,3,3,2],[0,3,4,1],[0,0,2,0]],[[1,2,1,0],[2,3,3,3],[0,3,3,1],[0,0,2,0]],[[1,2,1,0],[2,3,4,2],[0,3,3,1],[0,0,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,3,1],[0,0,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,3,1],[0,0,2,0]],[[2,2,1,0],[2,3,3,2],[0,3,3,1],[0,0,2,0]],[[1,2,1,0],[2,3,3,2],[0,3,4,1],[0,0,1,1]],[[1,2,1,0],[2,3,3,3],[0,3,3,1],[0,0,1,1]],[[1,2,1,0],[2,3,4,2],[0,3,3,1],[0,0,1,1]],[[1,2,1,0],[2,4,3,2],[0,3,3,1],[0,0,1,1]],[[1,3,1,0],[2,3,3,2],[0,3,3,1],[0,0,1,1]],[[2,2,1,0],[2,3,3,2],[0,3,3,1],[0,0,1,1]],[[1,2,1,0],[2,4,3,2],[0,3,3,0],[1,2,0,0]],[[1,3,1,0],[2,3,3,2],[0,3,3,0],[1,2,0,0]],[[2,2,1,0],[2,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,2,1,0],[2,3,4,2],[0,3,3,0],[1,1,1,0]],[[1,2,1,0],[2,4,3,2],[0,3,3,0],[1,1,1,0]],[[1,3,1,0],[2,3,3,2],[0,3,3,0],[1,1,1,0]],[[2,2,1,0],[2,3,3,2],[0,3,3,0],[1,1,1,0]],[[1,2,1,0],[2,3,4,2],[0,3,3,0],[1,0,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,3,0],[1,0,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,3,0],[1,0,2,0]],[[2,2,1,0],[2,3,3,2],[0,3,3,0],[1,0,2,0]],[[1,2,1,0],[2,3,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,1,0],[2,4,3,2],[0,3,3,0],[0,2,1,0]],[[1,3,1,0],[2,3,3,2],[0,3,3,0],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[0,3,3,0],[0,2,1,0]],[[1,1,0,2],[2,3,3,2],[0,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[0,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[0,0,2,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,0,2,3],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,0,2,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[0,0,2,2],[1,2,2,2]],[[1,1,0,2],[2,3,3,2],[0,0,3,2],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[0,0,3,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[0,0,3,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,0,3,3],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,0,3,2],[1,1,2,2]],[[1,1,0,2],[2,3,3,2],[0,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[0,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[0,0,3,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,0,3,3],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,0,3,2],[1,2,1,2]],[[1,1,0,2],[2,3,3,2],[0,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,4,2],[0,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,3],[0,0,3,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,0,3,3],[1,2,2,0]],[[2,1,0,1],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[0,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[0,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[0,1,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,1,1,3],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,1,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,1,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[0,1,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[0,1,1,2],[1,2,2,2]],[[2,1,0,1],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[0,1,2,2],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[0,1,2,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[0,1,2,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,1,2,3],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,1,2,2],[1,2,1,2]],[[2,1,0,1],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,1,0,2],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[0,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,4,2],[0,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,3],[0,1,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,1,2,3],[1,2,2,0]],[[2,1,0,1],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[0,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[0,1,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,1,4,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,1,3,0],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,1,3,0],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[0,1,3,0],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[0,1,3,0],[1,2,2,2]],[[2,1,0,1],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[0,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[0,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[0,1,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,1,4,1],[1,2,1,1]],[[2,1,0,1],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,1,0,2],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[0,1,3,1],[1,2,2,0]],[[1,1,0,1],[2,3,4,2],[0,1,3,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,3],[0,1,3,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,1,4,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,1,3,1],[2,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,1,3,1],[1,3,2,0]],[[1,1,0,1],[2,3,3,2],[0,1,3,1],[1,2,3,0]],[[1,1,0,2],[2,3,3,2],[0,1,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,4,2],[0,1,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,3],[0,1,3,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[0,1,3,3],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[0,1,3,2],[1,0,2,2]],[[1,1,0,2],[2,3,3,2],[0,1,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[0,1,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[0,1,3,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,1,3,3],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,1,3,2],[1,1,1,2]],[[1,1,0,2],[2,3,3,2],[0,1,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[0,1,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,3],[0,1,3,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,1,0],[2,3,4,2],[0,3,3,0],[0,1,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,3,0],[0,1,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,3,0],[0,1,2,0]],[[2,2,1,0],[2,3,3,2],[0,3,3,0],[0,1,2,0]],[[1,2,1,0],[2,3,3,2],[0,3,4,0],[0,0,2,1]],[[1,2,1,0],[2,3,3,3],[0,3,3,0],[0,0,2,1]],[[1,2,1,0],[2,3,4,2],[0,3,3,0],[0,0,2,1]],[[1,2,1,0],[2,4,3,2],[0,3,3,0],[0,0,2,1]],[[1,3,1,0],[2,3,3,2],[0,3,3,0],[0,0,2,1]],[[2,1,0,1],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[0,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[0,2,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,2,0,3],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,2,0,2],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,2,0,2],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[0,2,0,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[0,2,0,2],[1,2,2,2]],[[2,1,0,1],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,1,0,2],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[0,2,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[0,2,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[0,2,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,2,1,3],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,2,1,2],[1,1,3,1]],[[1,1,0,1],[2,3,3,2],[0,2,1,2],[1,1,2,2]],[[1,1,0,2],[2,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,1,0,1],[2,4,3,2],[0,2,2,2],[1,0,2,1]],[[1,1,0,1],[2,3,4,2],[0,2,2,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,3],[0,2,2,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[0,2,2,3],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[0,2,2,2],[1,0,2,2]],[[2,1,0,1],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[0,2,2,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[0,2,2,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,2,2,3],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,2,2,2],[1,1,1,2]],[[2,1,0,1],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,1,0,2],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[0,2,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[0,2,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,3],[0,2,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[0,2,2,3],[1,1,2,0]],[[2,1,0,1],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,0,2],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,0,1],[3,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,0,1],[2,4,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,4,2],[0,2,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,3],[0,2,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,2,2,3],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,2,2,2],[1,2,0,2]],[[2,1,0,1],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,1,0,2],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,1,0,1],[3,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,1,0,1],[2,4,3,2],[0,2,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,4,2],[0,2,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,3],[0,2,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,2,2,3],[1,2,1,0]],[[2,2,1,0],[2,3,3,2],[0,3,3,0],[0,0,2,1]],[[2,1,0,1],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,0,2],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[0,2,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[0,2,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,2,4,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,2,3,0],[1,1,3,1]],[[1,1,0,1],[2,3,3,2],[0,2,3,0],[1,1,2,2]],[[2,1,0,1],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[0,2,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[0,2,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[0,2,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,2,4,0],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,4,3,2],[0,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,4,2],[0,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,3,3],[0,2,3,1],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[0,2,4,1],[1,0,2,1]],[[2,1,0,1],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[0,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[0,2,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,2,4,1],[1,1,1,1]],[[2,1,0,1],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,1,0,2],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[0,2,3,1],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[0,2,3,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,3],[0,2,3,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[0,2,4,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[0,2,3,1],[1,1,3,0]],[[2,1,0,1],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,1,0,2],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,1,0,1],[3,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,1,0,1],[2,4,3,2],[0,2,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,4,2],[0,2,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,3],[0,2,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,2,4,1],[1,2,0,1]],[[2,1,0,1],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,1,0,2],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,1,0,1],[3,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,1,0,1],[2,4,3,2],[0,2,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,4,2],[0,2,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,3],[0,2,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,2,4,1],[1,2,1,0]],[[1,1,0,2],[2,3,3,2],[0,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,4,3,2],[0,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,4,2],[0,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,3],[0,2,3,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,1,0],[2,3,3,2],[0,3,2,3],[0,0,2,0]],[[1,2,1,0],[2,3,3,3],[0,3,2,2],[0,0,2,0]],[[1,2,1,0],[2,3,4,2],[0,3,2,2],[0,0,2,0]],[[2,1,0,1],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[0,3,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[0,3,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,4,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,0,1],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,0,1],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,0,1],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[0,3,0,1],[1,2,2,2]],[[2,1,0,1],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,1,0,2],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[0,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[0,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[0,3,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,4,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,0,3],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,0,2],[1,1,3,1]],[[1,1,0,1],[2,3,3,2],[0,3,0,2],[1,1,2,2]],[[2,1,0,1],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[0,3,0,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[0,3,0,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,4,0,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,0,3],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,0,2],[2,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,0,2],[1,3,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,0,2],[1,2,1,2]],[[2,1,0,1],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,1,0,2],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[0,3,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,4,2],[0,3,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,3],[0,3,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,4,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,3,0,3],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,3,0,2],[2,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,3,0,2],[1,3,2,0]],[[1,1,0,1],[2,3,3,2],[0,3,0,2],[1,2,3,0]],[[2,1,0,1],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[0,3,1,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[0,3,1,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,4,1,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,0],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,0],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,0],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,0],[1,2,2,2]],[[2,1,0,1],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,0,2],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,0,1],[2,3,4,2],[0,3,1,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,3],[0,3,1,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,4,1,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,3,1,1],[2,2,2,0]],[[1,1,0,1],[2,3,3,2],[0,3,1,1],[1,3,2,0]],[[1,1,0,1],[2,3,3,2],[0,3,1,1],[1,2,3,0]],[[1,1,0,2],[2,3,3,2],[0,3,1,2],[0,1,2,1]],[[1,1,0,1],[2,4,3,2],[0,3,1,2],[0,1,2,1]],[[1,1,0,1],[2,3,4,2],[0,3,1,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,3],[0,3,1,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,3],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,2],[0,1,3,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,2],[0,1,2,2]],[[2,1,0,1],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[0,3,1,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[0,3,1,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,4,1,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,3],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,2],[1,1,1,2]],[[2,1,0,1],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,0,2],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[0,3,1,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,3],[0,3,1,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[0,4,1,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[0,3,1,3],[1,1,2,0]],[[2,1,0,1],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,0,2],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,0,1],[3,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,0,1],[2,4,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,0,1],[2,3,4,2],[0,3,1,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,3],[0,3,1,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,4,1,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,3],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,2],[2,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,2],[1,3,0,1]],[[1,1,0,1],[2,3,3,2],[0,3,1,2],[1,2,0,2]],[[2,1,0,1],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,0,2],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,0,1],[3,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,0,1],[2,4,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,0,1],[2,3,4,2],[0,3,1,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,3],[0,3,1,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,4,1,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,3,1,3],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,3,1,2],[2,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,3,1,2],[1,3,1,0]],[[1,2,1,0],[2,4,3,2],[0,3,2,2],[0,0,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,2,2],[0,0,2,0]],[[2,2,1,0],[2,3,3,2],[0,3,2,2],[0,0,2,0]],[[1,2,1,0],[2,3,3,2],[0,3,2,2],[0,0,1,2]],[[1,2,1,0],[2,3,3,2],[0,3,2,3],[0,0,1,1]],[[1,2,1,0],[2,3,3,3],[0,3,2,2],[0,0,1,1]],[[1,2,1,0],[2,3,4,2],[0,3,2,2],[0,0,1,1]],[[1,2,1,0],[2,4,3,2],[0,3,2,2],[0,0,1,1]],[[1,3,1,0],[2,3,3,2],[0,3,2,2],[0,0,1,1]],[[2,2,1,0],[2,3,3,2],[0,3,2,2],[0,0,1,1]],[[2,1,0,1],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,0,2],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[0,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[0,3,2,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,4,2,0],[1,1,2,1]],[[2,1,0,1],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[0,3,2,0],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[0,3,2,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[0,3,2,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,4,2,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,2,0],[2,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,2,0],[1,3,1,1]],[[2,1,0,1],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[0,3,2,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[0,3,2,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,4,2,1],[1,1,1,1]],[[2,1,0,1],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,0,2],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[0,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,3],[0,3,2,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[0,4,2,1],[1,1,2,0]],[[2,1,0,1],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,0,2],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,0,1],[3,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,0,1],[2,4,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,0,1],[2,3,4,2],[0,3,2,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,3],[0,3,2,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,4,2,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,3,2,1],[2,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,3,2,1],[1,3,0,1]],[[2,1,0,1],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,1,0,2],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,1,0,1],[3,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,1,0,1],[2,4,3,2],[0,3,2,1],[1,2,1,0]],[[1,1,0,1],[2,3,4,2],[0,3,2,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,3],[0,3,2,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,4,2,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,3,2,1],[2,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,3,2,1],[1,3,1,0]],[[1,1,0,2],[2,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,1,0,1],[2,4,3,2],[0,3,2,2],[0,0,2,1]],[[1,1,0,1],[2,3,4,2],[0,3,2,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,3],[0,3,2,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,2,3],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,2,2],[0,0,2,2]],[[1,1,0,2],[2,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,4,3,2],[0,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[0,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[0,3,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,2,3],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,2,2],[0,1,1,2]],[[1,1,0,2],[2,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[0,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[0,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[0,3,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[0,3,2,3],[0,1,2,0]],[[1,1,0,2],[2,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[0,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,4,2],[0,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,3],[0,3,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,3,2,3],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,3,2,2],[0,2,0,2]],[[1,1,0,2],[2,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[0,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[0,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,3],[0,3,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,1,0],[2,4,3,2],[0,3,2,1],[1,2,0,0]],[[1,3,1,0],[2,3,3,2],[0,3,2,1],[1,2,0,0]],[[2,2,1,0],[2,3,3,2],[0,3,2,1],[1,2,0,0]],[[1,2,1,0],[2,3,3,3],[0,3,2,1],[1,1,1,0]],[[1,2,1,0],[2,3,4,2],[0,3,2,1],[1,1,1,0]],[[1,2,1,0],[2,4,3,2],[0,3,2,1],[1,1,1,0]],[[1,3,1,0],[2,3,3,2],[0,3,2,1],[1,1,1,0]],[[2,2,1,0],[2,3,3,2],[0,3,2,1],[1,1,1,0]],[[1,2,1,0],[2,3,3,3],[0,3,2,1],[1,1,0,1]],[[1,2,1,0],[2,3,4,2],[0,3,2,1],[1,1,0,1]],[[1,2,1,0],[2,4,3,2],[0,3,2,1],[1,1,0,1]],[[1,3,1,0],[2,3,3,2],[0,3,2,1],[1,1,0,1]],[[2,2,1,0],[2,3,3,2],[0,3,2,1],[1,1,0,1]],[[1,2,1,0],[2,3,3,3],[0,3,2,1],[1,0,2,0]],[[1,2,1,0],[2,3,4,2],[0,3,2,1],[1,0,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,2,1],[1,0,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,2,1],[1,0,2,0]],[[2,2,1,0],[2,3,3,2],[0,3,2,1],[1,0,2,0]],[[1,2,1,0],[2,3,3,3],[0,3,2,1],[1,0,1,1]],[[1,2,1,0],[2,3,4,2],[0,3,2,1],[1,0,1,1]],[[1,2,1,0],[2,4,3,2],[0,3,2,1],[1,0,1,1]],[[1,3,1,0],[2,3,3,2],[0,3,2,1],[1,0,1,1]],[[2,2,1,0],[2,3,3,2],[0,3,2,1],[1,0,1,1]],[[1,1,0,2],[2,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,4,3,2],[0,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,4,2],[0,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,3],[0,3,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,4,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,3,0],[0,1,3,1]],[[1,1,0,1],[2,3,3,2],[0,3,3,0],[0,1,2,2]],[[1,1,0,2],[2,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[0,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[0,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[0,3,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,4,0],[0,2,1,1]],[[2,1,0,1],[2,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[0,3,3,0],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[0,4,3,0],[1,1,2,0]],[[2,1,0,1],[2,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,0,1],[3,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,0,1],[2,4,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,0,1],[2,3,4,2],[0,3,3,0],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,4,3,0],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,3,3,0],[2,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,3,3,0],[1,3,1,0]],[[1,2,1,0],[2,3,3,3],[0,3,2,1],[0,2,1,0]],[[1,2,1,0],[2,3,4,2],[0,3,2,1],[0,2,1,0]],[[1,2,1,0],[2,4,3,2],[0,3,2,1],[0,2,1,0]],[[1,3,1,0],[2,3,3,2],[0,3,2,1],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[0,3,2,1],[0,2,1,0]],[[1,2,1,0],[2,3,3,3],[0,3,2,1],[0,2,0,1]],[[1,1,0,2],[2,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,4,3,2],[0,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,3,4,2],[0,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,3,3,3],[0,3,3,1],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[0,3,4,1],[0,0,2,1]],[[1,1,0,2],[2,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,4,3,2],[0,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[0,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[0,3,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[0,3,4,1],[0,1,1,1]],[[1,1,0,2],[2,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[0,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[0,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[0,3,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[0,3,4,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[0,3,3,1],[0,1,3,0]],[[1,1,0,2],[2,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[0,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,4,2],[0,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,3],[0,3,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[0,3,4,1],[0,2,0,1]],[[1,1,0,2],[2,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[0,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[0,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,3],[0,3,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,1,0],[2,3,4,2],[0,3,2,1],[0,2,0,1]],[[1,2,1,0],[2,4,3,2],[0,3,2,1],[0,2,0,1]],[[1,3,1,0],[2,3,3,2],[0,3,2,1],[0,2,0,1]],[[2,2,1,0],[2,3,3,2],[0,3,2,1],[0,2,0,1]],[[1,2,1,0],[2,3,3,3],[0,3,2,1],[0,1,2,0]],[[1,2,1,0],[2,3,4,2],[0,3,2,1],[0,1,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,2,1],[0,1,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,2,1],[0,1,2,0]],[[2,2,1,0],[2,3,3,2],[0,3,2,1],[0,1,2,0]],[[1,2,1,0],[2,3,3,3],[0,3,2,1],[0,1,1,1]],[[1,2,1,0],[2,3,4,2],[0,3,2,1],[0,1,1,1]],[[1,2,1,0],[2,4,3,2],[0,3,2,1],[0,1,1,1]],[[2,1,0,1],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,0,2],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,0,1],[3,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,4,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,3,4,2],[0,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[0,4,3,1],[1,2,0,0]],[[1,3,1,0],[2,3,3,2],[0,3,2,1],[0,1,1,1]],[[2,2,1,0],[2,3,3,2],[0,3,2,1],[0,1,1,1]],[[1,2,1,0],[2,4,3,2],[0,3,2,0],[1,2,0,1]],[[1,3,1,0],[2,3,3,2],[0,3,2,0],[1,2,0,1]],[[2,2,1,0],[2,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,2,1,0],[2,3,4,2],[0,3,2,0],[1,1,1,1]],[[1,2,1,0],[2,4,3,2],[0,3,2,0],[1,1,1,1]],[[1,3,1,0],[2,3,3,2],[0,3,2,0],[1,1,1,1]],[[2,2,1,0],[2,3,3,2],[0,3,2,0],[1,1,1,1]],[[1,2,1,0],[2,3,3,3],[0,3,2,0],[1,0,2,1]],[[1,2,1,0],[2,3,4,2],[0,3,2,0],[1,0,2,1]],[[1,2,1,0],[2,4,3,2],[0,3,2,0],[1,0,2,1]],[[1,3,1,0],[2,3,3,2],[0,3,2,0],[1,0,2,1]],[[2,2,1,0],[2,3,3,2],[0,3,2,0],[1,0,2,1]],[[1,1,0,2],[2,3,3,2],[0,3,3,2],[0,1,0,1]],[[1,1,0,1],[2,4,3,2],[0,3,3,2],[0,1,0,1]],[[1,1,0,1],[2,3,4,2],[0,3,3,2],[0,1,0,1]],[[1,1,0,1],[2,3,3,3],[0,3,3,2],[0,1,0,1]],[[1,1,0,1],[2,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,1,0],[2,3,3,3],[0,3,2,0],[0,2,1,1]],[[1,2,1,0],[2,3,4,2],[0,3,2,0],[0,2,1,1]],[[1,2,1,0],[2,4,3,2],[0,3,2,0],[0,2,1,1]],[[1,3,1,0],[2,3,3,2],[0,3,2,0],[0,2,1,1]],[[2,2,1,0],[2,3,3,2],[0,3,2,0],[0,2,1,1]],[[1,2,1,0],[2,3,3,3],[0,3,2,0],[0,1,2,1]],[[1,2,1,0],[2,3,4,2],[0,3,2,0],[0,1,2,1]],[[1,2,1,0],[2,4,3,2],[0,3,2,0],[0,1,2,1]],[[1,3,1,0],[2,3,3,2],[0,3,2,0],[0,1,2,1]],[[2,2,1,0],[2,3,3,2],[0,3,2,0],[0,1,2,1]],[[1,2,1,0],[2,4,3,2],[0,3,1,2],[1,2,0,0]],[[1,3,1,0],[2,3,3,2],[0,3,1,2],[1,2,0,0]],[[2,2,1,0],[2,3,3,2],[0,3,1,2],[1,2,0,0]],[[1,2,1,0],[2,3,3,3],[0,3,1,2],[1,1,1,0]],[[1,2,1,0],[2,3,4,2],[0,3,1,2],[1,1,1,0]],[[1,2,1,0],[2,4,3,2],[0,3,1,2],[1,1,1,0]],[[1,3,1,0],[2,3,3,2],[0,3,1,2],[1,1,1,0]],[[2,2,1,0],[2,3,3,2],[0,3,1,2],[1,1,1,0]],[[1,2,1,0],[2,3,3,2],[0,3,1,3],[1,1,0,1]],[[1,2,1,0],[2,3,3,3],[0,3,1,2],[1,1,0,1]],[[1,2,1,0],[2,3,4,2],[0,3,1,2],[1,1,0,1]],[[1,2,1,0],[2,4,3,2],[0,3,1,2],[1,1,0,1]],[[1,3,1,0],[2,3,3,2],[0,3,1,2],[1,1,0,1]],[[2,2,1,0],[2,3,3,2],[0,3,1,2],[1,1,0,1]],[[1,2,1,0],[2,3,3,2],[0,3,1,3],[1,0,2,0]],[[1,2,1,0],[2,3,3,3],[0,3,1,2],[1,0,2,0]],[[1,2,1,0],[2,3,4,2],[0,3,1,2],[1,0,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,1,2],[1,0,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,1,2],[1,0,2,0]],[[2,2,1,0],[2,3,3,2],[0,3,1,2],[1,0,2,0]],[[1,2,1,0],[2,3,3,2],[0,3,1,2],[1,0,1,2]],[[1,2,1,0],[2,3,3,2],[0,3,1,3],[1,0,1,1]],[[1,2,1,0],[2,3,3,3],[0,3,1,2],[1,0,1,1]],[[1,2,1,0],[2,3,4,2],[0,3,1,2],[1,0,1,1]],[[1,2,1,0],[2,4,3,2],[0,3,1,2],[1,0,1,1]],[[1,3,1,0],[2,3,3,2],[0,3,1,2],[1,0,1,1]],[[2,2,1,0],[2,3,3,2],[0,3,1,2],[1,0,1,1]],[[1,2,1,0],[2,3,3,2],[0,3,1,3],[0,2,1,0]],[[1,2,1,0],[2,3,3,3],[0,3,1,2],[0,2,1,0]],[[1,2,1,0],[2,3,4,2],[0,3,1,2],[0,2,1,0]],[[1,2,1,0],[2,4,3,2],[0,3,1,2],[0,2,1,0]],[[1,3,1,0],[2,3,3,2],[0,3,1,2],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[0,3,1,2],[0,2,1,0]],[[1,2,1,0],[2,3,3,2],[0,3,1,2],[0,2,0,2]],[[1,2,1,0],[2,3,3,2],[0,3,1,3],[0,2,0,1]],[[1,2,1,0],[2,3,3,3],[0,3,1,2],[0,2,0,1]],[[1,2,1,0],[2,3,4,2],[0,3,1,2],[0,2,0,1]],[[1,2,1,0],[2,4,3,2],[0,3,1,2],[0,2,0,1]],[[1,3,1,0],[2,3,3,2],[0,3,1,2],[0,2,0,1]],[[2,2,1,0],[2,3,3,2],[0,3,1,2],[0,2,0,1]],[[1,2,1,0],[2,3,3,2],[0,3,1,3],[0,1,2,0]],[[1,2,1,0],[2,3,3,3],[0,3,1,2],[0,1,2,0]],[[1,2,1,0],[2,3,4,2],[0,3,1,2],[0,1,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,1,2],[0,1,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,1,2],[0,1,2,0]],[[2,2,1,0],[2,3,3,2],[0,3,1,2],[0,1,2,0]],[[1,2,1,0],[2,3,3,2],[0,3,1,2],[0,1,1,2]],[[1,2,1,0],[2,3,3,2],[0,3,1,3],[0,1,1,1]],[[1,2,1,0],[2,3,3,3],[0,3,1,2],[0,1,1,1]],[[1,2,1,0],[2,3,4,2],[0,3,1,2],[0,1,1,1]],[[2,1,0,1],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[1,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[1,0,1,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,1,3],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,1,2],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,1,2],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,1,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[1,0,1,2],[1,2,2,2]],[[1,1,0,2],[2,3,3,2],[1,0,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,4,2],[1,0,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,3],[1,0,2,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,2,3],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,2,2],[0,2,3,1]],[[1,1,0,1],[2,3,3,2],[1,0,2,2],[0,2,2,2]],[[2,1,0,1],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[1,0,2,2],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[1,0,2,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[1,0,2,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,0,2,3],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,0,2,2],[1,2,1,2]],[[2,1,0,1],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,1,0,2],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[1,0,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,4,2],[1,0,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,3],[1,0,2,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,0,2,3],[1,2,2,0]],[[2,1,0,1],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[1,0,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[1,0,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[1,0,3,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,4,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,3,0],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,3,0],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,3,0],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[1,0,3,0],[1,2,2,2]],[[2,1,0,1],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[1,0,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[1,0,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[1,0,3,1],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,0,4,1],[1,2,1,1]],[[2,1,0,1],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,0,2],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,0,1],[2,3,4,2],[1,0,3,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,3],[1,0,3,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,0,4,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,0,3,1],[2,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,0,3,1],[1,3,2,0]],[[1,1,0,1],[2,3,3,2],[1,0,3,1],[1,2,3,0]],[[1,1,0,2],[2,3,3,2],[1,0,3,2],[0,1,2,1]],[[1,1,0,1],[2,3,4,2],[1,0,3,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,3],[1,0,3,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,3,3],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,0,3,2],[0,1,2,2]],[[1,1,0,2],[2,3,3,2],[1,0,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[1,0,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[1,0,3,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,0,3,3],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,0,3,2],[0,2,1,2]],[[1,1,0,2],[2,3,3,2],[1,0,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,4,2],[1,0,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,3],[1,0,3,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,1,2],[0,1,1,1]],[[1,3,1,0],[2,3,3,2],[0,3,1,2],[0,1,1,1]],[[2,2,1,0],[2,3,3,2],[0,3,1,2],[0,1,1,1]],[[2,1,0,1],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[1,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[1,1,0,2],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,0,3],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,0,2],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,0,2],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,0,2],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[1,1,0,2],[1,2,2,2]],[[2,1,0,1],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,1,0,2],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,1,0,1],[3,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,1,0,1],[2,4,3,2],[1,1,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,4,2],[1,1,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,3],[1,1,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,1,3],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,1,2],[0,3,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,1,2],[0,2,3,1]],[[1,1,0,1],[2,3,3,2],[1,1,1,2],[0,2,2,2]],[[2,1,0,1],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,0,2],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,0,1],[3,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[1,1,2,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[1,1,2,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,1,2,3],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,1,2,2],[0,2,1,2]],[[2,1,0,1],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,1,0,2],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,1,0,1],[3,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,1,0,1],[2,4,3,2],[1,1,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,4,2],[1,1,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,3],[1,1,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,1,1],[1,1,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,1,1],[1,1,2,0]],[[2,2,1,0],[2,3,3,2],[0,3,1,1],[1,1,2,0]],[[2,1,0,1],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,0,2],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,0,1],[3,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,0,1],[2,4,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,4,2],[1,1,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,3],[1,1,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,4,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,3,0],[0,3,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,3,0],[0,2,3,1]],[[1,1,0,1],[2,3,3,2],[1,1,3,0],[0,2,2,2]],[[2,1,0,1],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,0,2],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,0,1],[3,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[1,1,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[1,1,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,1,4,1],[0,2,1,1]],[[2,1,0,1],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,1,0,2],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,1,0,1],[3,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,1,0,1],[2,4,3,2],[1,1,3,1],[0,2,2,0]],[[1,1,0,1],[2,3,4,2],[1,1,3,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,3],[1,1,3,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,1,4,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,1,3,1],[0,3,2,0]],[[1,1,0,1],[2,3,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,1,0],[2,3,3,3],[0,3,1,1],[0,2,2,0]],[[1,2,1,0],[2,3,4,2],[0,3,1,1],[0,2,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,1,1],[0,2,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,1,1],[0,2,2,0]],[[2,2,1,0],[2,3,3,2],[0,3,1,1],[0,2,2,0]],[[1,1,0,2],[2,3,3,2],[1,1,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,4,2],[1,1,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,3],[1,1,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,3,3],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,1,3,2],[0,0,2,2]],[[1,1,0,2],[2,3,3,2],[1,1,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[1,1,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[1,1,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,1,3,3],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,1,3,2],[0,1,1,2]],[[1,1,0,2],[2,3,3,2],[1,1,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[1,1,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[1,1,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,1,0],[1,1,2,1]],[[1,3,1,0],[2,3,3,2],[0,3,1,0],[1,1,2,1]],[[2,2,1,0],[2,3,3,2],[0,3,1,0],[1,1,2,1]],[[1,2,1,0],[2,3,3,3],[0,3,1,0],[0,2,2,1]],[[1,2,1,0],[2,3,4,2],[0,3,1,0],[0,2,2,1]],[[1,1,0,2],[2,3,3,2],[1,1,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,4,2],[1,1,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,3],[1,1,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,1,3,3],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,1,3,2],[1,0,1,2]],[[1,1,0,2],[2,3,3,2],[1,1,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[1,1,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,3],[1,1,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,1,0],[0,2,2,1]],[[1,3,1,0],[2,3,3,2],[0,3,1,0],[0,2,2,1]],[[2,2,1,0],[2,3,3,2],[0,3,1,0],[0,2,2,1]],[[1,2,1,0],[2,4,3,2],[0,3,0,2],[1,1,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,0,2],[1,1,2,0]],[[2,1,0,1],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,0,2],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,0,1],[3,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,0,1],[2,4,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,4,2],[1,2,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,3],[1,2,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,0,3],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,0,2],[0,3,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,0,2],[0,2,3,1]],[[1,1,0,1],[2,3,3,2],[1,2,0,2],[0,2,2,2]],[[2,1,0,1],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,1,0,2],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,1,0,1],[3,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,1,0,1],[2,4,3,2],[1,2,1,2],[0,1,2,1]],[[1,1,0,1],[2,3,4,2],[1,2,1,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,3],[1,2,1,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,1,3],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,1,2],[0,1,3,1]],[[1,1,0,1],[2,3,3,2],[1,2,1,2],[0,1,2,2]],[[2,1,0,1],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,1,0,2],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,1,0,1],[3,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,1,0,1],[2,4,3,2],[1,2,1,2],[1,0,2,1]],[[1,1,0,1],[2,3,4,2],[1,2,1,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,3],[1,2,1,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,1,3],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,1,2],[1,0,3,1]],[[1,1,0,1],[2,3,3,2],[1,2,1,2],[1,0,2,2]],[[2,2,1,0],[2,3,3,2],[0,3,0,2],[1,1,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,0,2],[1,1,1,1]],[[1,3,1,0],[2,3,3,2],[0,3,0,2],[1,1,1,1]],[[2,2,1,0],[2,3,3,2],[0,3,0,2],[1,1,1,1]],[[1,2,1,0],[2,3,3,2],[0,3,0,2],[1,0,2,2]],[[1,2,1,0],[2,3,3,2],[0,3,0,3],[1,0,2,1]],[[1,2,1,0],[2,3,3,3],[0,3,0,2],[1,0,2,1]],[[1,2,1,0],[2,3,4,2],[0,3,0,2],[1,0,2,1]],[[1,2,1,0],[2,4,3,2],[0,3,0,2],[1,0,2,1]],[[1,3,1,0],[2,3,3,2],[0,3,0,2],[1,0,2,1]],[[2,2,1,0],[2,3,3,2],[0,3,0,2],[1,0,2,1]],[[2,1,0,1],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,0,2],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,0,1],[3,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,0,1],[2,4,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,0,1],[2,3,4,2],[1,2,2,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,3],[1,2,2,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,2,3],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,2,2],[0,0,2,2]],[[2,1,0,1],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,1,0,2],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,1,0,1],[3,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,1,0,1],[2,4,3,2],[1,2,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[1,2,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[1,2,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,2,2,3],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,2,2,2],[0,1,1,2]],[[2,1,0,1],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,1,0,2],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,1,0,1],[3,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[1,2,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[1,2,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[1,2,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[1,2,2,3],[0,1,2,0]],[[2,1,0,1],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,1,0,2],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,1,0,1],[3,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[1,2,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,4,2],[1,2,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,3],[1,2,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[1,2,2,3],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[1,2,2,2],[0,2,0,2]],[[2,1,0,1],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,0,2],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[1,2,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,3],[1,2,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,1,0],[2,3,3,2],[0,3,0,3],[0,2,2,0]],[[1,2,1,0],[2,3,3,3],[0,3,0,2],[0,2,2,0]],[[2,1,0,1],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,1,0,2],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,1,0,1],[3,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,1,0,1],[2,4,3,2],[1,2,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,4,2],[1,2,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,3],[1,2,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,2,2,3],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,2,2,2],[1,0,1,2]],[[2,1,0,1],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,1,0,2],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,1,0,1],[3,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,1,0,1],[2,4,3,2],[1,2,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[1,2,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,3],[1,2,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[1,2,2,3],[1,0,2,0]],[[2,1,0,1],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,1,0,2],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,1,0,1],[3,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,1,0,1],[2,4,3,2],[1,2,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,4,2],[1,2,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,3],[1,2,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[1,2,2,3],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[1,2,2,2],[1,1,0,2]],[[2,1,0,1],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,1,0,2],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[1,2,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,4,2],[1,2,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,3],[1,2,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,1,0],[2,3,4,2],[0,3,0,2],[0,2,2,0]],[[1,2,1,0],[2,4,3,2],[0,3,0,2],[0,2,2,0]],[[1,3,1,0],[2,3,3,2],[0,3,0,2],[0,2,2,0]],[[2,2,1,0],[2,3,3,2],[0,3,0,2],[0,2,2,0]],[[1,2,1,0],[2,3,3,2],[0,3,0,2],[0,2,1,2]],[[1,2,1,0],[2,3,3,2],[0,3,0,3],[0,2,1,1]],[[1,2,1,0],[2,3,3,3],[0,3,0,2],[0,2,1,1]],[[1,2,1,0],[2,3,4,2],[0,3,0,2],[0,2,1,1]],[[1,2,1,0],[2,4,3,2],[0,3,0,2],[0,2,1,1]],[[1,3,1,0],[2,3,3,2],[0,3,0,2],[0,2,1,1]],[[2,2,1,0],[2,3,3,2],[0,3,0,2],[0,2,1,1]],[[1,2,1,0],[2,3,3,2],[0,3,0,2],[0,1,2,2]],[[1,2,1,0],[2,3,3,2],[0,3,0,2],[0,1,3,1]],[[1,2,1,0],[2,3,3,2],[0,3,0,3],[0,1,2,1]],[[1,2,1,0],[2,3,3,3],[0,3,0,2],[0,1,2,1]],[[1,2,1,0],[2,3,4,2],[0,3,0,2],[0,1,2,1]],[[1,2,1,0],[2,4,3,2],[0,3,0,2],[0,1,2,1]],[[1,3,1,0],[2,3,3,2],[0,3,0,2],[0,1,2,1]],[[2,2,1,0],[2,3,3,2],[0,3,0,2],[0,1,2,1]],[[1,2,1,0],[2,4,3,2],[0,3,0,1],[1,1,2,1]],[[1,3,1,0],[2,3,3,2],[0,3,0,1],[1,1,2,1]],[[2,2,1,0],[2,3,3,2],[0,3,0,1],[1,1,2,1]],[[1,2,1,0],[2,3,3,3],[0,3,0,1],[0,2,2,1]],[[1,2,1,0],[2,3,4,2],[0,3,0,1],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,0,2],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,0,1],[3,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,0,1],[2,4,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,4,2],[1,2,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,3],[1,2,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,4,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,3,0],[0,1,3,1]],[[1,1,0,1],[2,3,3,2],[1,2,3,0],[0,1,2,2]],[[2,1,0,1],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,1,0,2],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,1,0,1],[3,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[1,2,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[1,2,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[1,2,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,2,4,0],[0,2,1,1]],[[2,1,0,1],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,0,2],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,0,1],[3,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,0,1],[2,4,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,4,2],[1,2,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,3],[1,2,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,4,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,3,0],[1,0,3,1]],[[1,1,0,1],[2,3,3,2],[1,2,3,0],[1,0,2,2]],[[2,1,0,1],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[1,2,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[1,2,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,2,4,0],[1,1,1,1]],[[1,2,1,0],[2,4,3,2],[0,3,0,1],[0,2,2,1]],[[1,3,1,0],[2,3,3,2],[0,3,0,1],[0,2,2,1]],[[2,2,1,0],[2,3,3,2],[0,3,0,1],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,0,2],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,0,1],[3,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,0,1],[2,4,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,0,1],[2,3,4,2],[1,2,3,1],[0,0,2,1]],[[1,1,0,1],[2,3,3,3],[1,2,3,1],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,2,4,1],[0,0,2,1]],[[2,1,0,1],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,1,0,2],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,1,0,1],[3,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,1,0,1],[2,4,3,2],[1,2,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[1,2,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[1,2,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,2,4,1],[0,1,1,1]],[[2,1,0,1],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,0,2],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,0,1],[3,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[1,2,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[1,2,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[1,2,4,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[1,2,3,1],[0,1,3,0]],[[2,1,0,1],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,0,2],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,0,1],[3,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,4,2],[1,2,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,3],[1,2,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[1,2,4,1],[0,2,0,1]],[[2,1,0,1],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,1,0,2],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[1,2,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[1,2,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,3],[1,2,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[1,2,4,1],[0,2,1,0]],[[2,1,0,1],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,0,2],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,0,1],[3,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,0,1],[2,4,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,4,2],[1,2,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,3],[1,2,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,2,4,1],[1,0,1,1]],[[2,1,0,1],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,1,0,2],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,1,0,1],[3,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,1,0,1],[2,4,3,2],[1,2,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[1,2,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,3],[1,2,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[1,2,4,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[1,2,3,1],[1,0,3,0]],[[2,1,0,1],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,0,2],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,0,1],[3,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,0,1],[2,4,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,4,2],[1,2,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,3],[1,2,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[1,2,4,1],[1,1,0,1]],[[2,1,0,1],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,1,0,2],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[1,2,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,4,2],[1,2,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,3],[1,2,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,1,0],[2,3,3,2],[0,2,3,3],[1,0,0,1]],[[1,2,1,0],[2,3,3,3],[0,2,3,2],[1,0,0,1]],[[1,2,1,0],[2,3,4,2],[0,2,3,2],[1,0,0,1]],[[1,2,1,0],[2,4,3,2],[0,2,3,2],[1,0,0,1]],[[1,3,1,0],[2,3,3,2],[0,2,3,2],[1,0,0,1]],[[2,2,1,0],[2,3,3,2],[0,2,3,2],[1,0,0,1]],[[2,1,0,1],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,0,2],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,0,1],[3,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,0,1],[2,4,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,0,1],[2,3,4,2],[1,2,3,2],[0,1,0,1]],[[1,1,0,1],[2,3,3,3],[1,2,3,2],[0,1,0,1]],[[1,1,0,1],[2,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,1,0],[2,3,3,2],[0,2,3,3],[0,1,0,1]],[[1,2,1,0],[2,3,3,3],[0,2,3,2],[0,1,0,1]],[[1,2,1,0],[2,3,4,2],[0,2,3,2],[0,1,0,1]],[[1,2,1,0],[2,4,3,2],[0,2,3,2],[0,1,0,1]],[[1,3,1,0],[2,3,3,2],[0,2,3,2],[0,1,0,1]],[[2,2,1,0],[2,3,3,2],[0,2,3,2],[0,1,0,1]],[[2,1,0,1],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,0,2],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,0,1],[3,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,0,1],[2,4,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,0,1],[2,3,4,2],[1,2,3,2],[1,0,0,1]],[[1,1,0,1],[2,3,3,3],[1,2,3,2],[1,0,0,1]],[[1,1,0,1],[2,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,1,0],[2,3,3,3],[0,2,3,1],[1,1,1,0]],[[1,2,1,0],[2,3,4,2],[0,2,3,1],[1,1,1,0]],[[1,2,1,0],[2,4,3,2],[0,2,3,1],[1,1,1,0]],[[1,3,1,0],[2,3,3,2],[0,2,3,1],[1,1,1,0]],[[2,2,1,0],[2,3,3,2],[0,2,3,1],[1,1,1,0]],[[1,2,1,0],[2,3,3,3],[0,2,3,1],[1,1,0,1]],[[1,2,1,0],[2,3,4,2],[0,2,3,1],[1,1,0,1]],[[1,2,1,0],[2,4,3,2],[0,2,3,1],[1,1,0,1]],[[1,3,1,0],[2,3,3,2],[0,2,3,1],[1,1,0,1]],[[2,2,1,0],[2,3,3,2],[0,2,3,1],[1,1,0,1]],[[1,2,1,0],[2,3,3,2],[0,2,4,1],[1,0,2,0]],[[1,2,1,0],[2,3,3,3],[0,2,3,1],[1,0,2,0]],[[1,2,1,0],[2,3,4,2],[0,2,3,1],[1,0,2,0]],[[1,2,1,0],[2,4,3,2],[0,2,3,1],[1,0,2,0]],[[1,3,1,0],[2,3,3,2],[0,2,3,1],[1,0,2,0]],[[2,2,1,0],[2,3,3,2],[0,2,3,1],[1,0,2,0]],[[1,2,1,0],[2,3,3,2],[0,2,4,1],[1,0,1,1]],[[1,2,1,0],[2,3,3,3],[0,2,3,1],[1,0,1,1]],[[1,2,1,0],[2,3,4,2],[0,2,3,1],[1,0,1,1]],[[1,2,1,0],[2,4,3,2],[0,2,3,1],[1,0,1,1]],[[1,3,1,0],[2,3,3,2],[0,2,3,1],[1,0,1,1]],[[2,2,1,0],[2,3,3,2],[0,2,3,1],[1,0,1,1]],[[1,2,1,0],[2,3,3,2],[0,2,4,1],[0,2,1,0]],[[1,2,1,0],[2,3,3,3],[0,2,3,1],[0,2,1,0]],[[1,2,1,0],[2,3,4,2],[0,2,3,1],[0,2,1,0]],[[1,2,1,0],[2,4,3,2],[0,2,3,1],[0,2,1,0]],[[1,3,1,0],[2,3,3,2],[0,2,3,1],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[0,2,3,1],[0,2,1,0]],[[1,2,1,0],[2,3,3,2],[0,2,4,1],[0,2,0,1]],[[1,2,1,0],[2,3,3,3],[0,2,3,1],[0,2,0,1]],[[1,2,1,0],[2,3,4,2],[0,2,3,1],[0,2,0,1]],[[1,2,1,0],[2,4,3,2],[0,2,3,1],[0,2,0,1]],[[1,3,1,0],[2,3,3,2],[0,2,3,1],[0,2,0,1]],[[2,2,1,0],[2,3,3,2],[0,2,3,1],[0,2,0,1]],[[1,2,1,0],[2,3,3,2],[0,2,3,1],[0,1,3,0]],[[1,2,1,0],[2,3,3,2],[0,2,4,1],[0,1,2,0]],[[1,2,1,0],[2,3,3,3],[0,2,3,1],[0,1,2,0]],[[1,2,1,0],[2,3,4,2],[0,2,3,1],[0,1,2,0]],[[1,2,1,0],[2,4,3,2],[0,2,3,1],[0,1,2,0]],[[1,3,1,0],[2,3,3,2],[0,2,3,1],[0,1,2,0]],[[2,2,1,0],[2,3,3,2],[0,2,3,1],[0,1,2,0]],[[1,2,1,0],[2,3,3,2],[0,2,4,1],[0,1,1,1]],[[1,2,1,0],[2,3,3,3],[0,2,3,1],[0,1,1,1]],[[1,2,1,0],[2,3,4,2],[0,2,3,1],[0,1,1,1]],[[1,2,1,0],[2,4,3,2],[0,2,3,1],[0,1,1,1]],[[1,3,1,0],[2,3,3,2],[0,2,3,1],[0,1,1,1]],[[2,2,1,0],[2,3,3,2],[0,2,3,1],[0,1,1,1]],[[1,2,1,0],[2,3,3,2],[0,2,4,1],[0,0,2,1]],[[1,2,1,0],[2,3,3,3],[0,2,3,1],[0,0,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,0,2],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,0,1],[3,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,0,1],[2,4,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,0,1],[2,3,4,2],[1,3,0,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,3],[1,3,0,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,4,0,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,1],[0,3,2,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,1],[0,2,3,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,1],[0,2,2,2]],[[2,1,0,1],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,0,2],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[1,3,0,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[1,3,0,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,4,0,1],[1,1,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,0,2],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,0,1],[3,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,0,1],[2,4,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,0,1],[2,3,4,2],[1,3,0,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,3],[1,3,0,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,4,0,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,3],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,2],[0,1,3,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,2],[0,1,2,2]],[[2,1,0,1],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,0,2],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,0,1],[3,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[1,3,0,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[1,3,0,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,4,0,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,3],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,2],[0,3,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,2],[0,2,1,2]],[[2,1,0,1],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,1,0,2],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,0,2],[0,2,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,0,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,3],[1,3,0,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,4,0,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,3,0,3],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,3,0,2],[0,3,2,0]],[[1,1,0,1],[2,3,3,2],[1,3,0,2],[0,2,3,0]],[[2,1,0,1],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,0,2],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,0,1],[3,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,0,1],[2,4,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,0,1],[2,3,4,2],[1,3,0,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,3],[1,3,0,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,4,0,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,3],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,2],[1,0,3,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,2],[1,0,2,2]],[[2,1,0,1],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[1,3,0,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[1,3,0,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,4,0,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,3],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,0,2],[1,1,1,2]],[[2,1,0,1],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,0,2],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,0,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,3],[1,3,0,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[1,4,0,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,1,0],[2,3,4,2],[0,2,3,1],[0,0,2,1]],[[1,2,1,0],[2,4,3,2],[0,2,3,1],[0,0,2,1]],[[1,3,1,0],[2,3,3,2],[0,2,3,1],[0,0,2,1]],[[2,2,1,0],[2,3,3,2],[0,2,3,1],[0,0,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,0,2],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,0,1],[3,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,0,1],[2,4,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,0,1],[2,3,4,2],[1,3,1,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,3],[1,3,1,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,4,1,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,0],[0,3,2,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,0],[0,2,3,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,0],[0,2,2,2]],[[2,1,0,1],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,1,0,2],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[1,3,1,0],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[1,3,1,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[1,3,1,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,4,1,0],[1,1,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,0,2],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,1,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,3],[1,3,1,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,4,1,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[1,3,1,1],[0,3,2,0]],[[1,1,0,1],[2,3,3,2],[1,3,1,1],[0,2,3,0]],[[2,1,0,1],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,0,2],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,1,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,3],[1,3,1,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[1,4,1,1],[1,1,2,0]],[[1,2,1,0],[2,3,4,2],[0,2,3,0],[1,1,1,1]],[[1,2,1,0],[2,4,3,2],[0,2,3,0],[1,1,1,1]],[[1,3,1,0],[2,3,3,2],[0,2,3,0],[1,1,1,1]],[[2,1,0,1],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,0,2],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,0,1],[3,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,0,1],[2,4,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[1,3,1,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[1,3,1,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,4,1,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,3],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,2],[0,1,1,2]],[[2,1,0,1],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,0,2],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,1,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[1,3,1,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[1,4,1,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[1,3,1,3],[0,1,2,0]],[[2,1,0,1],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,1,0,2],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,1,0,1],[3,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[1,3,1,2],[0,2,0,1]],[[1,1,0,1],[2,3,4,2],[1,3,1,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,3],[1,3,1,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[1,4,1,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,3],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,2],[0,3,0,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,2],[0,2,0,2]],[[2,1,0,1],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,1,0,2],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[1,3,1,2],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[1,3,1,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,3],[1,3,1,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[1,4,1,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[1,3,1,3],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[1,3,1,2],[0,3,1,0]],[[2,2,1,0],[2,3,3,2],[0,2,3,0],[1,1,1,1]],[[1,2,1,0],[2,3,3,2],[0,2,4,0],[1,0,2,1]],[[1,2,1,0],[2,3,3,3],[0,2,3,0],[1,0,2,1]],[[1,2,1,0],[2,3,4,2],[0,2,3,0],[1,0,2,1]],[[1,2,1,0],[2,4,3,2],[0,2,3,0],[1,0,2,1]],[[1,3,1,0],[2,3,3,2],[0,2,3,0],[1,0,2,1]],[[2,2,1,0],[2,3,3,2],[0,2,3,0],[1,0,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,0,2],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,0,1],[3,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,0,1],[2,4,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,0,1],[2,3,4,2],[1,3,1,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,3],[1,3,1,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,4,1,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,3],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,2],[1,0,1,2]],[[2,1,0,1],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,1,0,2],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,1,2],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,1,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,3],[1,3,1,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[1,4,1,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[1,3,1,3],[1,0,2,0]],[[2,1,0,1],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,0,2],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,0,1],[3,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,0,1],[2,4,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,0,1],[2,3,4,2],[1,3,1,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,3],[1,3,1,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[1,4,1,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,3],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[1,3,1,2],[1,1,0,2]],[[2,1,0,1],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,1,0,2],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[1,3,1,2],[1,1,1,0]],[[1,1,0,1],[2,3,4,2],[1,3,1,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,3],[1,3,1,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[1,4,1,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[1,3,1,3],[1,1,1,0]],[[1,2,1,0],[2,3,3,2],[0,2,4,0],[0,2,1,1]],[[1,2,1,0],[2,3,3,3],[0,2,3,0],[0,2,1,1]],[[1,2,1,0],[2,3,4,2],[0,2,3,0],[0,2,1,1]],[[1,2,1,0],[2,4,3,2],[0,2,3,0],[0,2,1,1]],[[1,3,1,0],[2,3,3,2],[0,2,3,0],[0,2,1,1]],[[2,2,1,0],[2,3,3,2],[0,2,3,0],[0,2,1,1]],[[2,1,0,1],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,0,2],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,0,1],[3,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,0,1],[2,4,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,0,1],[2,3,4,2],[1,3,1,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,3],[1,3,1,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[1,4,1,2],[1,2,0,0]],[[1,2,1,0],[2,3,3,2],[0,2,3,0],[0,1,2,2]],[[1,2,1,0],[2,3,3,2],[0,2,3,0],[0,1,3,1]],[[1,2,1,0],[2,3,3,2],[0,2,4,0],[0,1,2,1]],[[1,2,1,0],[2,3,3,3],[0,2,3,0],[0,1,2,1]],[[1,2,1,0],[2,3,4,2],[0,2,3,0],[0,1,2,1]],[[1,2,1,0],[2,4,3,2],[0,2,3,0],[0,1,2,1]],[[1,3,1,0],[2,3,3,2],[0,2,3,0],[0,1,2,1]],[[2,2,1,0],[2,3,3,2],[0,2,3,0],[0,1,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,1,0,2],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,1,0,1],[3,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,1,0,1],[2,4,3,2],[1,3,2,0],[0,1,2,1]],[[1,1,0,1],[2,3,4,2],[1,3,2,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,3],[1,3,2,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[1,4,2,0],[0,1,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,1,0,2],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,1,0,1],[3,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[1,3,2,0],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[1,3,2,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[1,3,2,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,4,2,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,2,0],[0,3,1,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,0,2],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,0,1],[3,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,0,1],[2,4,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,0,1],[2,3,4,2],[1,3,2,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,3],[1,3,2,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,4,2,0],[1,0,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[1,3,2,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[1,3,2,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,4,2,0],[1,1,1,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,1,0,1],[3,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,1,0,1],[2,4,3,2],[1,3,2,0],[1,2,0,1]],[[1,1,0,1],[2,3,4,2],[1,3,2,0],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,2,1,0],[2,3,3,3],[0,2,2,2],[1,1,1,0]],[[1,2,1,0],[2,3,4,2],[0,2,2,2],[1,1,1,0]],[[1,2,1,0],[2,4,3,2],[0,2,2,2],[1,1,1,0]],[[1,3,1,0],[2,3,3,2],[0,2,2,2],[1,1,1,0]],[[2,2,1,0],[2,3,3,2],[0,2,2,2],[1,1,1,0]],[[1,2,1,0],[2,3,3,2],[0,2,2,3],[1,1,0,1]],[[1,2,1,0],[2,3,3,3],[0,2,2,2],[1,1,0,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,1,0,2],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,1,0,1],[3,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,1,0,1],[2,4,3,2],[1,3,2,1],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[1,3,2,1],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[1,3,2,1],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[1,4,2,1],[0,1,1,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,1,0,2],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,2,1],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,2,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[1,3,2,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[1,4,2,1],[0,1,2,0]],[[2,1,0,1],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,0,2],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,0,1],[3,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,0,1],[2,3,4,2],[1,3,2,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,3],[1,3,2,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[1,4,2,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[1,3,2,1],[0,3,0,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,1,0,2],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[1,3,2,1],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[1,3,2,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,3],[1,3,2,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[1,4,2,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[1,3,2,1],[0,3,1,0]],[[1,2,1,0],[2,3,4,2],[0,2,2,2],[1,1,0,1]],[[1,2,1,0],[2,4,3,2],[0,2,2,2],[1,1,0,1]],[[1,3,1,0],[2,3,3,2],[0,2,2,2],[1,1,0,1]],[[2,2,1,0],[2,3,3,2],[0,2,2,2],[1,1,0,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,0,2],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,0,1],[3,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,0,1],[2,4,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,0,1],[2,3,4,2],[1,3,2,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,3],[1,3,2,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,4,2,1],[1,0,1,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,1,0,2],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,2,1],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,2,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,3],[1,3,2,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[1,4,2,1],[1,0,2,0]],[[2,1,0,1],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,1,0,2],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,1,0,1],[3,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,1,0,1],[2,4,3,2],[1,3,2,1],[1,1,0,1]],[[1,1,0,1],[2,3,4,2],[1,3,2,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,3],[1,3,2,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[1,4,2,1],[1,1,0,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,0,2],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,0,1],[2,3,4,2],[1,3,2,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,3],[1,3,2,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[1,4,2,1],[1,1,1,0]],[[1,2,1,0],[2,3,3,2],[0,2,2,3],[1,0,2,0]],[[1,2,1,0],[2,3,3,3],[0,2,2,2],[1,0,2,0]],[[1,2,1,0],[2,3,4,2],[0,2,2,2],[1,0,2,0]],[[1,2,1,0],[2,4,3,2],[0,2,2,2],[1,0,2,0]],[[1,3,1,0],[2,3,3,2],[0,2,2,2],[1,0,2,0]],[[2,2,1,0],[2,3,3,2],[0,2,2,2],[1,0,2,0]],[[2,1,0,1],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,1,0,2],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,1,0,1],[3,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,1,0,1],[2,4,3,2],[1,3,2,1],[1,2,0,0]],[[1,1,0,1],[2,3,4,2],[1,3,2,1],[1,2,0,0]],[[1,1,0,1],[2,3,3,3],[1,3,2,1],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[1,4,2,1],[1,2,0,0]],[[1,2,1,0],[2,3,3,2],[0,2,2,2],[1,0,1,2]],[[1,2,1,0],[2,3,3,2],[0,2,2,3],[1,0,1,1]],[[1,2,1,0],[2,3,3,3],[0,2,2,2],[1,0,1,1]],[[1,2,1,0],[2,3,4,2],[0,2,2,2],[1,0,1,1]],[[1,2,1,0],[2,4,3,2],[0,2,2,2],[1,0,1,1]],[[1,3,1,0],[2,3,3,2],[0,2,2,2],[1,0,1,1]],[[2,2,1,0],[2,3,3,2],[0,2,2,2],[1,0,1,1]],[[1,2,1,0],[2,3,3,2],[0,2,2,3],[0,2,1,0]],[[1,2,1,0],[2,3,3,3],[0,2,2,2],[0,2,1,0]],[[1,2,1,0],[2,3,4,2],[0,2,2,2],[0,2,1,0]],[[1,2,1,0],[2,4,3,2],[0,2,2,2],[0,2,1,0]],[[1,3,1,0],[2,3,3,2],[0,2,2,2],[0,2,1,0]],[[2,2,1,0],[2,3,3,2],[0,2,2,2],[0,2,1,0]],[[1,2,1,0],[2,3,3,2],[0,2,2,2],[0,2,0,2]],[[1,2,1,0],[2,3,3,2],[0,2,2,3],[0,2,0,1]],[[1,2,1,0],[2,3,3,3],[0,2,2,2],[0,2,0,1]],[[1,2,1,0],[2,3,4,2],[0,2,2,2],[0,2,0,1]],[[2,1,0,1],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,1,0,2],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,1,0,1],[3,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,1,0,1],[2,4,3,2],[1,3,2,2],[0,0,1,1]],[[1,1,0,1],[2,3,4,2],[1,3,2,2],[0,0,1,1]],[[1,1,0,1],[2,3,3,3],[1,3,2,2],[0,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,2,3],[0,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,2,2],[0,0,1,2]],[[2,1,0,1],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,0,2],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,2,2],[0,0,2,0]],[[1,1,0,1],[2,3,3,3],[1,3,2,2],[0,0,2,0]],[[1,1,0,1],[2,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,1,0],[2,4,3,2],[0,2,2,2],[0,2,0,1]],[[1,3,1,0],[2,3,3,2],[0,2,2,2],[0,2,0,1]],[[2,2,1,0],[2,3,3,2],[0,2,2,2],[0,2,0,1]],[[1,2,1,0],[2,3,3,2],[0,2,2,3],[0,1,2,0]],[[1,2,1,0],[2,3,3,3],[0,2,2,2],[0,1,2,0]],[[1,2,1,0],[2,3,4,2],[0,2,2,2],[0,1,2,0]],[[1,2,1,0],[2,4,3,2],[0,2,2,2],[0,1,2,0]],[[1,3,1,0],[2,3,3,2],[0,2,2,2],[0,1,2,0]],[[2,2,1,0],[2,3,3,2],[0,2,2,2],[0,1,2,0]],[[1,2,1,0],[2,3,3,2],[0,2,2,2],[0,1,1,2]],[[1,2,1,0],[2,3,3,2],[0,2,2,3],[0,1,1,1]],[[1,2,1,0],[2,3,3,3],[0,2,2,2],[0,1,1,1]],[[1,2,1,0],[2,3,4,2],[0,2,2,2],[0,1,1,1]],[[1,2,1,0],[2,4,3,2],[0,2,2,2],[0,1,1,1]],[[1,3,1,0],[2,3,3,2],[0,2,2,2],[0,1,1,1]],[[2,2,1,0],[2,3,3,2],[0,2,2,2],[0,1,1,1]],[[1,2,1,0],[2,3,3,2],[0,2,2,2],[0,0,2,2]],[[1,2,1,0],[2,3,3,2],[0,2,2,3],[0,0,2,1]],[[1,2,1,0],[2,3,3,3],[0,2,2,2],[0,0,2,1]],[[1,2,1,0],[2,3,4,2],[0,2,2,2],[0,0,2,1]],[[1,2,1,0],[2,4,3,2],[0,2,2,2],[0,0,2,1]],[[1,3,1,0],[2,3,3,2],[0,2,2,2],[0,0,2,1]],[[2,2,1,0],[2,3,3,2],[0,2,2,2],[0,0,2,1]],[[1,2,1,0],[2,3,3,2],[0,2,1,2],[1,0,2,2]],[[1,2,1,0],[2,3,3,2],[0,2,1,3],[1,0,2,1]],[[1,2,1,0],[2,3,3,3],[0,2,1,2],[1,0,2,1]],[[1,2,1,0],[2,3,4,2],[0,2,1,2],[1,0,2,1]],[[1,2,1,0],[2,4,3,2],[0,2,1,2],[1,0,2,1]],[[1,3,1,0],[2,3,3,2],[0,2,1,2],[1,0,2,1]],[[2,2,1,0],[2,3,3,2],[0,2,1,2],[1,0,2,1]],[[1,2,1,0],[2,3,3,2],[0,2,1,2],[0,1,2,2]],[[1,2,1,0],[2,3,3,2],[0,2,1,2],[0,1,3,1]],[[1,2,1,0],[2,3,3,2],[0,2,1,3],[0,1,2,1]],[[1,2,1,0],[2,3,3,3],[0,2,1,2],[0,1,2,1]],[[1,2,1,0],[2,3,4,2],[0,2,1,2],[0,1,2,1]],[[1,2,1,0],[2,4,3,2],[0,2,1,2],[0,1,2,1]],[[1,3,1,0],[2,3,3,2],[0,2,1,2],[0,1,2,1]],[[2,2,1,0],[2,3,3,2],[0,2,1,2],[0,1,2,1]],[[1,2,1,0],[2,3,3,2],[0,2,0,2],[0,2,2,2]],[[1,2,1,0],[2,3,3,2],[0,2,0,2],[0,2,3,1]],[[1,2,1,0],[2,3,3,2],[0,2,0,3],[0,2,2,1]],[[1,2,1,0],[2,3,3,3],[0,2,0,2],[0,2,2,1]],[[1,2,1,0],[2,3,4,2],[0,2,0,2],[0,2,2,1]],[[1,2,1,0],[2,4,3,2],[0,2,0,2],[0,2,2,1]],[[1,3,1,0],[2,3,3,2],[0,2,0,2],[0,2,2,1]],[[2,2,1,0],[2,3,3,2],[0,2,0,2],[0,2,2,1]],[[1,2,1,0],[2,3,3,2],[0,1,3,3],[1,0,2,0]],[[1,2,1,0],[2,3,3,3],[0,1,3,2],[1,0,2,0]],[[1,2,1,0],[2,3,4,2],[0,1,3,2],[1,0,2,0]],[[1,2,1,0],[2,3,3,2],[0,1,3,2],[1,0,1,2]],[[1,2,1,0],[2,3,3,2],[0,1,3,3],[1,0,1,1]],[[1,2,1,0],[2,3,3,3],[0,1,3,2],[1,0,1,1]],[[1,2,1,0],[2,3,4,2],[0,1,3,2],[1,0,1,1]],[[1,2,1,0],[2,3,3,2],[0,1,3,3],[0,1,2,0]],[[1,2,1,0],[2,3,3,3],[0,1,3,2],[0,1,2,0]],[[1,2,1,0],[2,3,4,2],[0,1,3,2],[0,1,2,0]],[[1,2,1,0],[2,3,3,2],[0,1,3,2],[0,1,1,2]],[[1,2,1,0],[2,3,3,2],[0,1,3,3],[0,1,1,1]],[[1,2,1,0],[2,3,3,3],[0,1,3,2],[0,1,1,1]],[[1,2,1,0],[2,3,4,2],[0,1,3,2],[0,1,1,1]],[[1,2,1,0],[2,3,3,2],[0,1,3,2],[0,0,2,2]],[[1,2,1,0],[2,3,3,2],[0,1,3,3],[0,0,2,1]],[[1,2,1,0],[2,3,3,3],[0,1,3,2],[0,0,2,1]],[[1,2,1,0],[2,3,4,2],[0,1,3,2],[0,0,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,0,2],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,0,1],[3,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,0,1],[2,4,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,0,1],[2,3,4,2],[1,3,3,0],[0,0,2,1]],[[1,1,0,1],[2,3,3,3],[1,3,3,0],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[1,3,4,0],[0,0,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,3,0],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,3,0],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[1,4,3,0],[0,1,2,0]],[[2,1,0,1],[2,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[1,3,3,0],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[1,4,3,0],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[1,3,3,0],[0,3,1,0]],[[2,1,0,1],[2,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,3,0],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[1,4,3,0],[1,0,2,0]],[[2,1,0,1],[2,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[1,3,3,0],[1,1,1,0]],[[1,1,0,1],[2,3,4,2],[1,3,3,0],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[1,4,3,0],[1,1,1,0]],[[2,1,0,1],[2,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,0,1],[3,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,0,1],[2,4,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,0,1],[2,3,4,2],[1,3,3,0],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,1,0],[2,3,3,2],[0,1,3,1],[0,2,3,0]],[[1,2,1,0],[2,3,3,2],[0,1,4,1],[0,2,2,0]],[[1,2,1,0],[2,3,3,3],[0,1,3,1],[0,2,2,0]],[[1,2,1,0],[2,3,4,2],[0,1,3,1],[0,2,2,0]],[[1,2,1,0],[2,4,3,2],[0,1,3,1],[0,2,2,0]],[[1,3,1,0],[2,3,3,2],[0,1,3,1],[0,2,2,0]],[[2,2,1,0],[2,3,3,2],[0,1,3,1],[0,2,2,0]],[[1,2,1,0],[2,3,3,2],[0,1,4,1],[0,2,1,1]],[[1,2,1,0],[2,3,3,3],[0,1,3,1],[0,2,1,1]],[[1,2,1,0],[2,3,4,2],[0,1,3,1],[0,2,1,1]],[[1,2,1,0],[2,4,3,2],[0,1,3,1],[0,2,1,1]],[[1,3,1,0],[2,3,3,2],[0,1,3,1],[0,2,1,1]],[[2,2,1,0],[2,3,3,2],[0,1,3,1],[0,2,1,1]],[[1,2,1,0],[2,3,3,2],[0,1,3,0],[0,2,2,2]],[[1,2,1,0],[2,3,3,2],[0,1,3,0],[0,2,3,1]],[[1,2,1,0],[2,3,3,2],[0,1,4,0],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,0,2],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,0,1],[3,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,0,1],[2,4,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,0,1],[2,3,4,2],[1,3,3,1],[0,0,1,1]],[[1,1,0,1],[2,3,3,3],[1,3,3,1],[0,0,1,1]],[[1,1,0,1],[2,3,3,2],[1,3,4,1],[0,0,1,1]],[[2,1,0,1],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,1,0,2],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,1,0,1],[3,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,1,0,1],[2,4,3,2],[1,3,3,1],[0,0,2,0]],[[1,1,0,1],[2,3,4,2],[1,3,3,1],[0,0,2,0]],[[1,1,0,1],[2,3,3,3],[1,3,3,1],[0,0,2,0]],[[1,1,0,1],[2,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,1,0],[2,3,3,3],[0,1,3,0],[0,2,2,1]],[[1,2,1,0],[2,3,4,2],[0,1,3,0],[0,2,2,1]],[[1,2,1,0],[2,4,3,2],[0,1,3,0],[0,2,2,1]],[[1,3,1,0],[2,3,3,2],[0,1,3,0],[0,2,2,1]],[[2,2,1,0],[2,3,3,2],[0,1,3,0],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,0,2],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,0,1],[3,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,0,1],[2,4,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,0,1],[2,3,4,2],[1,3,3,1],[0,2,0,0]],[[1,1,0,1],[2,3,3,3],[1,3,3,1],[0,2,0,0]],[[1,1,0,1],[2,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,2,1,0],[2,3,3,2],[0,1,2,3],[0,2,2,0]],[[1,2,1,0],[2,3,3,3],[0,1,2,2],[0,2,2,0]],[[1,2,1,0],[2,3,4,2],[0,1,2,2],[0,2,2,0]],[[1,2,1,0],[2,4,3,2],[0,1,2,2],[0,2,2,0]],[[1,3,1,0],[2,3,3,2],[0,1,2,2],[0,2,2,0]],[[2,2,1,0],[2,3,3,2],[0,1,2,2],[0,2,2,0]],[[1,2,1,0],[2,3,3,2],[0,1,2,2],[0,2,1,2]],[[1,2,1,0],[2,3,3,2],[0,1,2,3],[0,2,1,1]],[[1,2,1,0],[2,3,3,3],[0,1,2,2],[0,2,1,1]],[[1,2,1,0],[2,3,4,2],[0,1,2,2],[0,2,1,1]],[[1,2,1,0],[2,4,3,2],[0,1,2,2],[0,2,1,1]],[[1,3,1,0],[2,3,3,2],[0,1,2,2],[0,2,1,1]],[[2,2,1,0],[2,3,3,2],[0,1,2,2],[0,2,1,1]],[[2,1,0,1],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,0,2],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,0,1],[3,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,0,1],[2,4,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,0,1],[2,3,4,2],[1,3,3,1],[1,1,0,0]],[[1,1,0,1],[2,3,3,3],[1,3,3,1],[1,1,0,0]],[[1,1,0,1],[2,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,1,0],[2,3,3,2],[0,1,1,2],[0,2,2,2]],[[1,2,1,0],[2,3,3,2],[0,1,1,2],[0,2,3,1]],[[1,2,1,0],[2,3,3,2],[0,1,1,3],[0,2,2,1]],[[1,2,1,0],[2,3,3,3],[0,1,1,2],[0,2,2,1]],[[1,2,1,0],[2,3,4,2],[0,1,1,2],[0,2,2,1]],[[1,2,1,0],[2,4,3,2],[0,1,1,2],[0,2,2,1]],[[1,3,1,0],[2,3,3,2],[0,1,1,2],[0,2,2,1]],[[2,2,1,0],[2,3,3,2],[0,1,1,2],[0,2,2,1]],[[1,2,1,0],[2,3,3,2],[0,0,3,3],[0,2,2,0]],[[1,2,1,0],[2,3,3,3],[0,0,3,2],[0,2,2,0]],[[1,2,1,0],[2,3,4,2],[0,0,3,2],[0,2,2,0]],[[1,2,1,0],[2,3,3,2],[0,0,3,2],[0,2,1,2]],[[1,2,1,0],[2,3,3,2],[0,0,3,3],[0,2,1,1]],[[1,2,1,0],[2,3,3,3],[0,0,3,2],[0,2,1,1]],[[1,2,1,0],[2,3,4,2],[0,0,3,2],[0,2,1,1]],[[1,2,1,0],[2,3,3,2],[0,0,3,2],[0,1,2,2]],[[1,2,1,0],[2,3,3,2],[0,0,3,3],[0,1,2,1]],[[1,2,1,0],[2,3,3,3],[0,0,3,2],[0,1,2,1]],[[1,2,1,0],[2,3,4,2],[0,0,3,2],[0,1,2,1]],[[1,2,1,0],[2,3,3,2],[0,0,2,2],[0,2,2,2]],[[1,2,1,0],[2,3,3,2],[0,0,2,2],[0,2,3,1]],[[1,2,1,0],[2,3,3,2],[0,0,2,3],[0,2,2,1]],[[1,2,1,0],[2,3,3,3],[0,0,2,2],[0,2,2,1]],[[1,2,1,0],[2,3,4,2],[0,0,2,2],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,0,2],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,0,1],[3,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,0,1],[2,4,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,0,1],[2,3,4,2],[1,3,3,2],[0,0,0,1]],[[1,1,0,1],[2,3,3,3],[1,3,3,2],[0,0,0,1]],[[1,1,0,1],[2,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,1,0],[3,3,3,1],[2,2,3,2],[1,0,0,0]],[[1,3,1,0],[2,3,3,1],[2,2,3,2],[1,0,0,0]],[[2,2,1,0],[2,3,3,1],[2,2,3,2],[1,0,0,0]],[[1,2,1,0],[3,3,3,1],[2,2,2,2],[1,0,1,0]],[[1,3,1,0],[2,3,3,1],[2,2,2,2],[1,0,1,0]],[[2,2,1,0],[2,3,3,1],[2,2,2,2],[1,0,1,0]],[[1,2,1,0],[3,3,3,1],[2,2,2,2],[1,0,0,1]],[[1,3,1,0],[2,3,3,1],[2,2,2,2],[1,0,0,1]],[[2,2,1,0],[2,3,3,1],[2,2,2,2],[1,0,0,1]],[[2,1,0,1],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[2,0,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[2,0,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[3,0,1,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,1],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,1],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,1],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,1],[1,2,2,2]],[[2,1,0,1],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,1,0,2],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,1,0,1],[3,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,1,0,1],[2,4,3,2],[2,0,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,4,2],[2,0,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,3],[2,0,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[3,0,1,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,3],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[0,3,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[0,2,3,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[0,2,2,2]],[[2,1,0,1],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,1,0,2],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[2,0,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[2,0,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[2,0,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[3,0,1,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,3],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[2,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[1,1,3,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[1,1,2,2]],[[2,1,0,1],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[2,0,1,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[2,0,1,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[3,0,1,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,3],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[2,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[1,3,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[1,2,1,2]],[[2,1,0,1],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,0,2],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,4,2],[2,0,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,3],[2,0,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[3,0,1,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,1,3],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[2,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[1,3,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,1,2],[1,2,3,0]],[[2,1,0,1],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[2,0,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[2,0,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[3,0,2,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,0],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,0],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,0],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,0],[1,2,2,2]],[[2,1,0,1],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,0,2],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,0,1],[2,3,4,2],[2,0,2,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,3],[2,0,2,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[3,0,2,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,2,1],[2,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,2,1],[1,3,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,2,1],[1,2,3,0]],[[2,1,0,1],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,1,0,2],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,1,0,1],[3,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[2,0,2,2],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[2,0,2,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[2,0,2,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[3,0,2,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,3],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,2],[0,2,1,2]],[[2,1,0,1],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,1,0,2],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,1,0,1],[3,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,1,0,1],[2,4,3,2],[2,0,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,4,2],[2,0,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,3],[2,0,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[3,0,2,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,2,3],[0,2,2,0]],[[2,1,0,1],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[2,0,2,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[2,0,2,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[3,0,2,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,3],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,2],[2,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,2],[1,1,1,2]],[[2,1,0,1],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,1,0,2],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[2,0,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[2,0,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,3],[2,0,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[3,0,2,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,2,3],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,2,2],[2,1,2,0]],[[2,1,0,1],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,0,2],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,4,2],[2,0,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,3],[2,0,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,0,2,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,3],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,2],[2,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,2],[1,3,0,1]],[[1,1,0,1],[2,3,3,2],[2,0,2,2],[1,2,0,2]],[[2,1,0,1],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,0,2],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,4,2],[2,0,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,3],[2,0,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,0,2,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,0,2,3],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,0,2,2],[2,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,0,2,2],[1,3,1,0]],[[2,1,0,1],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,0,2],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,0,1],[3,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,0,1],[2,4,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,4,2],[2,0,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,3],[2,0,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[3,0,3,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,4,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,0],[0,3,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,0],[0,2,3,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,0],[0,2,2,2]],[[2,1,0,1],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,0,2],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[2,0,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[2,0,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[3,0,3,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,4,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,0],[2,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,0],[1,1,3,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,0],[1,1,2,2]],[[2,1,0,1],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[2,0,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[2,0,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[3,0,3,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,4,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,0],[2,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,0],[1,3,1,1]],[[2,1,0,1],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,0,2],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,0,1],[3,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[2,0,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[2,0,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[3,0,3,1],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,4,1],[0,2,1,1]],[[2,1,0,1],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,1,0,2],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,1,0,1],[3,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,1,0,1],[2,4,3,2],[2,0,3,1],[0,2,2,0]],[[1,1,0,1],[2,3,4,2],[2,0,3,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,3],[2,0,3,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[3,0,3,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,4,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,3,1],[0,3,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,3,1],[0,2,3,0]],[[2,1,0,1],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[2,0,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[2,0,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[2,0,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[3,0,3,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,4,1],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,1],[2,1,1,1]],[[2,1,0,1],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,1,0,2],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[2,0,3,1],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[2,0,3,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,3],[2,0,3,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[3,0,3,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,4,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,3,1],[2,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,3,1],[1,1,3,0]],[[2,1,0,1],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,0,2],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,4,2],[2,0,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,3],[2,0,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,0,3,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,0,4,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,1],[2,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,1],[1,3,0,1]],[[2,1,0,1],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,0,2],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,4,2],[2,0,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,3],[2,0,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,0,3,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,0,4,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,0,3,1],[2,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,0,3,1],[1,3,1,0]],[[1,1,0,2],[2,3,3,2],[2,0,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,4,2],[2,0,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,3],[2,0,3,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,3],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,2],[0,0,2,2]],[[1,1,0,2],[2,3,3,2],[2,0,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[2,0,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[2,0,3,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,3],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,2],[0,1,1,2]],[[1,1,0,2],[2,3,3,2],[2,0,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[2,0,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[2,0,3,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,1,0],[3,3,3,1],[2,1,3,2],[1,1,0,0]],[[1,3,1,0],[2,3,3,1],[2,1,3,2],[1,1,0,0]],[[2,2,1,0],[2,3,3,1],[2,1,3,2],[1,1,0,0]],[[1,1,0,2],[2,3,3,2],[2,0,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,4,2],[2,0,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,3],[2,0,3,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,3],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[2,0,3,2],[1,0,1,2]],[[1,1,0,2],[2,3,3,2],[2,0,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[2,0,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,3],[2,0,3,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,1,0],[3,3,3,1],[2,1,3,2],[0,2,0,0]],[[1,3,1,0],[2,3,3,1],[2,1,3,2],[0,2,0,0]],[[2,2,1,0],[2,3,3,1],[2,1,3,2],[0,2,0,0]],[[2,1,0,1],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[2,1,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[2,1,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[3,1,0,1],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,1],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,1],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,1],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,1],[1,2,2,2]],[[2,1,0,1],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,0,2],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,0,1],[3,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,0,1],[2,4,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,4,2],[2,1,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,3],[2,1,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[3,1,0,2],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,3],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[0,3,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[0,2,3,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[0,2,2,2]],[[2,1,0,1],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,1,0,2],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[2,1,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[2,1,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[2,1,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[3,1,0,2],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,3],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[2,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[1,1,3,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[1,1,2,2]],[[2,1,0,1],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[2,1,0,2],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[2,1,0,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[2,1,0,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[3,1,0,2],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,3],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[2,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[1,3,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[1,2,1,2]],[[2,1,0,1],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,0,2],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,4,2],[2,1,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,3],[2,1,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[3,1,0,2],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,0,3],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[2,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[1,3,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,0,2],[1,2,3,0]],[[2,1,0,1],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,0,2],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,0,1],[2,3,4,2],[2,1,1,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,3],[2,1,1,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[3,1,1,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,0],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,0],[1,3,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,0],[1,2,3,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,0],[1,2,2,2]],[[2,1,0,1],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,1,0,2],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[2,1,1,1],[1,2,2,0]],[[1,1,0,1],[2,3,4,2],[2,1,1,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,3],[2,1,1,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[3,1,1,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,1,1],[2,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,1,1],[1,3,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,1,1],[1,2,3,0]],[[2,1,0,1],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,1,0,2],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,1,0,1],[3,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,1,0,1],[2,4,3,2],[2,1,1,2],[0,1,2,1]],[[1,1,0,1],[2,3,4,2],[2,1,1,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,3],[2,1,1,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[3,1,1,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,3],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,2],[0,1,3,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,2],[0,1,2,2]],[[2,1,0,1],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,1,0,2],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,1,0,1],[3,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,1,0,1],[2,4,3,2],[2,1,1,2],[1,0,2,1]],[[1,1,0,1],[2,3,4,2],[2,1,1,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,3],[2,1,1,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[3,1,1,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,3],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,2],[2,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,2],[1,0,3,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,2],[1,0,2,2]],[[2,1,0,1],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,0,2],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,0,1],[2,3,4,2],[2,1,1,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,3],[2,1,1,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,1,1,2],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,3],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,2],[2,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,2],[1,3,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,1,2],[1,2,0,2]],[[2,1,0,1],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,0,2],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,0,1],[2,3,4,2],[2,1,1,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,3],[2,1,1,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,1,1,2],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,1,3],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,1,2],[2,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,1,2],[1,3,1,0]],[[2,1,0,1],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,0,2],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,0,1],[2,3,4,2],[2,1,2,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,3],[2,1,2,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[3,1,2,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,0],[2,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,0],[1,3,1,1]],[[2,1,0,1],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,0,2],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,0,1],[2,3,4,2],[2,1,2,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,3],[2,1,2,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,1,2,1],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,1],[2,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,1],[1,3,0,1]],[[2,1,0,1],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,1,0,2],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,1,2,1],[1,2,1,0]],[[1,1,0,1],[2,3,4,2],[2,1,2,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,3],[2,1,2,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,1,2,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,2,1],[2,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,2,1],[1,3,1,0]],[[2,1,0,1],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,0,2],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,0,1],[3,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,0,1],[2,4,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,0,1],[2,3,4,2],[2,1,2,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,3],[2,1,2,2],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,3],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,2],[0,0,2,2]],[[2,1,0,1],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,1,0,2],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,1,0,1],[3,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,1,0,1],[2,4,3,2],[2,1,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[2,1,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[2,1,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[3,1,2,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,3],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,2],[0,1,1,2]],[[2,1,0,1],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,1,0,2],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,1,0,1],[3,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[2,1,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[2,1,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[2,1,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[3,1,2,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,2,3],[0,1,2,0]],[[2,1,0,1],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,0,2],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,4,2],[2,1,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,3],[2,1,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,1,2,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,3],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,2],[0,2,0,2]],[[2,1,0,1],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,0,2],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[2,1,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,3],[2,1,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,1,2,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,2,3],[0,2,1,0]],[[2,1,0,1],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,0,2],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,0,1],[3,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,0,1],[2,4,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,4,2],[2,1,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,3],[2,1,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[3,1,2,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,3],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,2],[2,0,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,2],[1,0,1,2]],[[2,1,0,1],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,1,0,2],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,1,0,1],[3,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,1,0,1],[2,4,3,2],[2,1,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[2,1,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,3],[2,1,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[3,1,2,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,2,3],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,2,2],[2,0,2,0]],[[2,1,0,1],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,0,2],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,0,1],[3,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,0,1],[2,4,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,4,2],[2,1,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,3],[2,1,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[3,1,2,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,3],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,2],[2,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,2,2],[1,1,0,2]],[[2,1,0,1],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,0,2],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,4,2],[2,1,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,3],[2,1,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[3,1,2,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,2,3],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,2,2],[2,1,1,0]],[[1,2,1,0],[3,3,3,1],[2,1,2,2],[1,2,0,0]],[[1,3,1,0],[2,3,3,1],[2,1,2,2],[1,2,0,0]],[[2,2,1,0],[2,3,3,1],[2,1,2,2],[1,2,0,0]],[[1,2,1,0],[3,3,3,1],[2,1,2,2],[1,1,1,0]],[[1,3,1,0],[2,3,3,1],[2,1,2,2],[1,1,1,0]],[[2,2,1,0],[2,3,3,1],[2,1,2,2],[1,1,1,0]],[[1,2,1,0],[3,3,3,1],[2,1,2,2],[1,1,0,1]],[[1,3,1,0],[2,3,3,1],[2,1,2,2],[1,1,0,1]],[[2,2,1,0],[2,3,3,1],[2,1,2,2],[1,1,0,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,0,2],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,0,1],[3,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,0,1],[2,4,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,4,2],[2,1,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,3],[2,1,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[3,1,3,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,4,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,3,0],[0,1,3,1]],[[1,1,0,1],[2,3,3,2],[2,1,3,0],[0,1,2,2]],[[2,1,0,1],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,0,2],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,0,1],[3,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[2,1,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[2,1,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[3,1,3,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,4,0],[0,2,1,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,0,2],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,0,1],[3,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,0,1],[2,4,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,4,2],[2,1,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,3],[2,1,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[3,1,3,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,4,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,3,0],[2,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,3,0],[1,0,3,1]],[[1,1,0,1],[2,3,3,2],[2,1,3,0],[1,0,2,2]],[[2,1,0,1],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[2,1,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[2,1,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[2,1,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[3,1,3,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,4,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,3,0],[2,1,1,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,1,3,0],[1,2,1,0]],[[1,1,0,1],[2,3,4,2],[2,1,3,0],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,1,3,0],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,3,0],[2,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,3,0],[1,3,1,0]],[[1,2,1,0],[3,3,3,1],[2,1,2,2],[1,0,2,0]],[[1,3,1,0],[2,3,3,1],[2,1,2,2],[1,0,2,0]],[[2,2,1,0],[2,3,3,1],[2,1,2,2],[1,0,2,0]],[[1,2,1,0],[3,3,3,1],[2,1,2,2],[1,0,1,1]],[[1,3,1,0],[2,3,3,1],[2,1,2,2],[1,0,1,1]],[[2,2,1,0],[2,3,3,1],[2,1,2,2],[1,0,1,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,1,0,2],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,1,0,1],[3,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,1,0,1],[2,4,3,2],[2,1,3,1],[0,0,2,1]],[[1,1,0,1],[2,3,4,2],[2,1,3,1],[0,0,2,1]],[[1,1,0,1],[2,3,3,3],[2,1,3,1],[0,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,1,4,1],[0,0,2,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,1,0,2],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,1,0,1],[3,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,1,0,1],[2,4,3,2],[2,1,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[2,1,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[2,1,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[3,1,3,1],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,4,1],[0,1,1,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,1,0,2],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,1,0,1],[3,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[2,1,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[2,1,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[2,1,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[3,1,3,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,4,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,3,1],[0,1,3,0]],[[2,1,0,1],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,1,0,2],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,1,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,4,2],[2,1,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,3],[2,1,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,1,3,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,4,1],[0,2,0,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,1,0,2],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,1,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[2,1,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,3],[2,1,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,1,3,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,1,0],[3,3,3,1],[2,1,2,2],[0,2,1,0]],[[1,3,1,0],[2,3,3,1],[2,1,2,2],[0,2,1,0]],[[2,2,1,0],[2,3,3,1],[2,1,2,2],[0,2,1,0]],[[1,2,1,0],[3,3,3,1],[2,1,2,2],[0,2,0,1]],[[1,3,1,0],[2,3,3,1],[2,1,2,2],[0,2,0,1]],[[2,2,1,0],[2,3,3,1],[2,1,2,2],[0,2,0,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,0,2],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,0,1],[3,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,0,1],[2,4,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,4,2],[2,1,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,3],[2,1,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[3,1,3,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,4,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[2,1,3,1],[2,0,1,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,1,0,2],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,1,0,1],[3,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,1,0,1],[2,4,3,2],[2,1,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[2,1,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,3],[2,1,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[3,1,3,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,4,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,3,1],[2,0,2,0]],[[1,1,0,1],[2,3,3,2],[2,1,3,1],[1,0,3,0]],[[2,1,0,1],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,0,2],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,0,1],[3,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,0,1],[2,4,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,4,2],[2,1,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,3],[2,1,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[3,1,3,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,4,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,3,1],[2,1,0,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,1,0,2],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[2,1,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,4,2],[2,1,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,3],[2,1,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[3,1,3,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,4,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[2,1,3,1],[2,1,1,0]],[[1,2,1,0],[3,3,3,1],[2,1,2,2],[0,1,2,0]],[[1,3,1,0],[2,3,3,1],[2,1,2,2],[0,1,2,0]],[[2,2,1,0],[2,3,3,1],[2,1,2,2],[0,1,2,0]],[[1,2,1,0],[3,3,3,1],[2,1,2,2],[0,1,1,1]],[[1,3,1,0],[2,3,3,1],[2,1,2,2],[0,1,1,1]],[[2,2,1,0],[2,3,3,1],[2,1,2,2],[0,1,1,1]],[[1,2,1,0],[3,3,3,1],[2,1,2,1],[1,1,1,1]],[[1,3,1,0],[2,3,3,1],[2,1,2,1],[1,1,1,1]],[[2,2,1,0],[2,3,3,1],[2,1,2,1],[1,1,1,1]],[[1,2,1,0],[3,3,3,1],[2,1,2,1],[1,0,2,1]],[[1,3,1,0],[2,3,3,1],[2,1,2,1],[1,0,2,1]],[[2,2,1,0],[2,3,3,1],[2,1,2,1],[1,0,2,1]],[[1,2,1,0],[3,3,3,1],[2,1,2,1],[0,2,1,1]],[[1,3,1,0],[2,3,3,1],[2,1,2,1],[0,2,1,1]],[[2,2,1,0],[2,3,3,1],[2,1,2,1],[0,2,1,1]],[[1,2,1,0],[3,3,3,1],[2,1,2,1],[0,1,2,1]],[[1,3,1,0],[2,3,3,1],[2,1,2,1],[0,1,2,1]],[[2,2,1,0],[2,3,3,1],[2,1,2,1],[0,1,2,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,0,2],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,0,1],[3,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,0,1],[2,4,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,0,1],[2,3,4,2],[2,1,3,2],[0,1,0,1]],[[1,1,0,1],[2,3,3,3],[2,1,3,2],[0,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,1,0],[3,3,3,1],[2,1,1,2],[1,1,2,0]],[[1,3,1,0],[2,3,3,1],[2,1,1,2],[1,1,2,0]],[[2,2,1,0],[2,3,3,1],[2,1,1,2],[1,1,2,0]],[[1,2,1,0],[3,3,3,1],[2,1,1,2],[0,2,2,0]],[[1,3,1,0],[2,3,3,1],[2,1,1,2],[0,2,2,0]],[[2,2,1,0],[2,3,3,1],[2,1,1,2],[0,2,2,0]],[[1,2,1,0],[3,3,3,1],[2,1,1,1],[1,1,2,1]],[[1,3,1,0],[2,3,3,1],[2,1,1,1],[1,1,2,1]],[[2,2,1,0],[2,3,3,1],[2,1,1,1],[1,1,2,1]],[[1,2,1,0],[3,3,3,1],[2,1,1,1],[0,2,2,1]],[[1,3,1,0],[2,3,3,1],[2,1,1,1],[0,2,2,1]],[[2,2,1,0],[2,3,3,1],[2,1,1,1],[0,2,2,1]],[[1,2,1,0],[3,3,3,1],[2,1,0,2],[1,1,2,1]],[[1,3,1,0],[2,3,3,1],[2,1,0,2],[1,1,2,1]],[[2,2,1,0],[2,3,3,1],[2,1,0,2],[1,1,2,1]],[[1,2,1,0],[3,3,3,1],[2,1,0,2],[0,2,2,1]],[[1,3,1,0],[2,3,3,1],[2,1,0,2],[0,2,2,1]],[[2,2,1,0],[2,3,3,1],[2,1,0,2],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,0,2],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,0,1],[3,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,0,1],[2,4,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,0,1],[2,3,4,2],[2,1,3,2],[1,0,0,1]],[[1,1,0,1],[2,3,3,3],[2,1,3,2],[1,0,0,1]],[[1,1,0,1],[2,3,3,2],[3,1,3,2],[1,0,0,1]],[[1,1,0,1],[2,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,1,0],[3,3,3,1],[2,0,3,2],[1,1,1,0]],[[1,3,1,0],[2,3,3,1],[2,0,3,2],[1,1,1,0]],[[2,2,1,0],[2,3,3,1],[2,0,3,2],[1,1,1,0]],[[1,2,1,0],[3,3,3,1],[2,0,3,2],[1,1,0,1]],[[1,3,1,0],[2,3,3,1],[2,0,3,2],[1,1,0,1]],[[2,2,1,0],[2,3,3,1],[2,0,3,2],[1,1,0,1]],[[1,2,1,0],[3,3,3,1],[2,0,3,2],[1,0,2,0]],[[1,3,1,0],[2,3,3,1],[2,0,3,2],[1,0,2,0]],[[2,2,1,0],[2,3,3,1],[2,0,3,2],[1,0,2,0]],[[1,2,1,0],[3,3,3,1],[2,0,3,2],[1,0,1,1]],[[1,3,1,0],[2,3,3,1],[2,0,3,2],[1,0,1,1]],[[2,2,1,0],[2,3,3,1],[2,0,3,2],[1,0,1,1]],[[1,2,1,0],[3,3,3,1],[2,0,3,2],[0,2,1,0]],[[1,3,1,0],[2,3,3,1],[2,0,3,2],[0,2,1,0]],[[2,2,1,0],[2,3,3,1],[2,0,3,2],[0,2,1,0]],[[1,2,1,0],[3,3,3,1],[2,0,3,2],[0,2,0,1]],[[1,3,1,0],[2,3,3,1],[2,0,3,2],[0,2,0,1]],[[2,2,1,0],[2,3,3,1],[2,0,3,2],[0,2,0,1]],[[1,2,1,0],[3,3,3,1],[2,0,3,2],[0,1,2,0]],[[1,3,1,0],[2,3,3,1],[2,0,3,2],[0,1,2,0]],[[2,2,1,0],[2,3,3,1],[2,0,3,2],[0,1,2,0]],[[1,2,1,0],[3,3,3,1],[2,0,3,2],[0,1,1,1]],[[1,3,1,0],[2,3,3,1],[2,0,3,2],[0,1,1,1]],[[2,2,1,0],[2,3,3,1],[2,0,3,2],[0,1,1,1]],[[1,2,1,0],[3,3,3,1],[2,0,3,2],[0,0,2,1]],[[1,3,1,0],[2,3,3,1],[2,0,3,2],[0,0,2,1]],[[2,2,1,0],[2,3,3,1],[2,0,3,2],[0,0,2,1]],[[2,1,0,1],[2,3,3,2],[2,2,0,0],[1,2,2,1]],[[1,1,0,1],[3,3,3,2],[2,2,0,0],[1,2,2,1]],[[1,1,0,1],[2,4,3,2],[2,2,0,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[3,2,0,0],[1,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,0],[2,2,2,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,0],[1,3,2,1]],[[2,1,0,1],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,1,0,2],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,1,0,1],[3,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,1,0,1],[2,4,3,2],[2,2,0,1],[0,2,2,1]],[[1,1,0,1],[2,3,4,2],[2,2,0,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,3],[2,2,0,1],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[3,2,0,1],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,1,0,2],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[2,2,0,1],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[2,2,0,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[2,2,0,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[3,2,0,1],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,1],[2,1,2,1]],[[2,1,0,1],[2,3,3,2],[2,2,0,1],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[2,2,0,1],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[2,2,0,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[3,2,0,1],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,2,0,1],[2,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,2,0,1],[1,3,2,0]],[[2,1,0,1],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,0,2],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,0,1],[3,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,0,1],[2,4,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,0,1],[2,3,4,2],[2,2,0,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,3],[2,2,0,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[3,2,0,2],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,3],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,2],[0,1,3,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,2],[0,1,2,2]],[[2,1,0,1],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,0,2],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,0,1],[3,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[2,2,0,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[2,2,0,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[3,2,0,2],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,3],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,2],[0,2,1,2]],[[2,1,0,1],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,0,2],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,0,1],[3,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,0,1],[2,4,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,0,1],[2,3,4,2],[2,2,0,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,3],[2,2,0,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[3,2,0,2],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,2,0,3],[0,2,2,0]],[[2,1,0,1],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,0,2],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,0,1],[3,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,0,1],[2,4,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,0,1],[2,3,4,2],[2,2,0,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,3],[2,2,0,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[3,2,0,2],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,3],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,2],[2,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,2],[1,0,3,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,2],[1,0,2,2]],[[2,1,0,1],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[2,2,0,2],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[2,2,0,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[2,2,0,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[3,2,0,2],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,3],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,2],[2,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,0,2],[1,1,1,2]],[[2,1,0,1],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,1,0,2],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[2,2,0,2],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[2,2,0,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,3],[2,2,0,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[3,2,0,2],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,2,0,3],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,2,0,2],[2,1,2,0]],[[1,2,1,0],[3,3,3,1],[2,0,3,1],[1,1,1,1]],[[1,3,1,0],[2,3,3,1],[2,0,3,1],[1,1,1,1]],[[2,2,1,0],[2,3,3,1],[2,0,3,1],[1,1,1,1]],[[1,2,1,0],[3,3,3,1],[2,0,3,1],[1,0,2,1]],[[1,3,1,0],[2,3,3,1],[2,0,3,1],[1,0,2,1]],[[2,2,1,0],[2,3,3,1],[2,0,3,1],[1,0,2,1]],[[2,1,0,1],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,0,2],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,0,1],[3,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,0,1],[2,4,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,0,1],[2,3,4,2],[2,2,1,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,3],[2,2,1,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[3,2,1,0],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,1,0,2],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[2,2,1,0],[1,1,2,1]],[[1,1,0,1],[2,3,4,2],[2,2,1,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,3],[2,2,1,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[3,2,1,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,2,1,0],[2,1,2,1]],[[2,1,0,1],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,0,2],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,0,1],[3,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,0,1],[2,4,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,0,1],[2,3,4,2],[2,2,1,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,3],[2,2,1,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[3,2,1,1],[0,2,2,0]],[[2,1,0,1],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,0,2],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,0,1],[2,3,4,2],[2,2,1,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,3],[2,2,1,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[3,2,1,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,2,1,1],[2,1,2,0]],[[1,2,1,0],[3,3,3,1],[2,0,3,1],[0,2,1,1]],[[2,1,0,1],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,0,2],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,0,1],[3,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,0,1],[2,4,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[2,2,1,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[2,2,1,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[3,2,1,2],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,1,3],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,1,2],[0,1,1,2]],[[2,1,0,1],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,0,2],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,0,1],[3,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[2,2,1,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[2,2,1,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[3,2,1,2],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,2,1,3],[0,1,2,0]],[[2,1,0,1],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,0,2],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,0,1],[2,3,4,2],[2,2,1,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,3],[2,2,1,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,2,1,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,2,1,3],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,2,1,2],[0,2,0,2]],[[2,1,0,1],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,0,2],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[2,2,1,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,3],[2,2,1,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,2,1,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,2,1,3],[0,2,1,0]],[[1,3,1,0],[2,3,3,1],[2,0,3,1],[0,2,1,1]],[[2,2,1,0],[2,3,3,1],[2,0,3,1],[0,2,1,1]],[[1,2,1,0],[3,3,3,1],[2,0,3,1],[0,1,2,1]],[[1,3,1,0],[2,3,3,1],[2,0,3,1],[0,1,2,1]],[[2,2,1,0],[2,3,3,1],[2,0,3,1],[0,1,2,1]],[[2,1,0,1],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,0,2],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,0,1],[3,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,0,1],[2,4,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,0,1],[2,3,4,2],[2,2,1,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,3],[2,2,1,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[3,2,1,2],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,1,3],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,1,2],[2,0,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,1,2],[1,0,1,2]],[[2,1,0,1],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,0,2],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,0,1],[3,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,0,1],[2,4,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[2,2,1,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,3],[2,2,1,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[3,2,1,2],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[2,2,1,3],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[2,2,1,2],[2,0,2,0]],[[2,1,0,1],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,0,2],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,0,1],[3,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,0,1],[2,4,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,0,1],[2,3,4,2],[2,2,1,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,3],[2,2,1,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[3,2,1,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,2,1,3],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,2,1,2],[2,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,2,1,2],[1,1,0,2]],[[2,1,0,1],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,0,2],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,0,1],[2,3,4,2],[2,2,1,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,3],[2,2,1,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[3,2,1,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[2,2,1,3],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[2,2,1,2],[2,1,1,0]],[[1,2,1,0],[3,3,3,1],[2,0,2,2],[1,2,1,0]],[[1,3,1,0],[2,3,3,1],[2,0,2,2],[1,2,1,0]],[[2,2,1,0],[2,3,3,1],[2,0,2,2],[1,2,1,0]],[[1,2,1,0],[3,3,3,1],[2,0,2,2],[1,2,0,1]],[[1,3,1,0],[2,3,3,1],[2,0,2,2],[1,2,0,1]],[[2,1,0,1],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,1,0,2],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,1,0,1],[3,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,1,0,1],[2,4,3,2],[2,2,1,2],[1,2,0,0]],[[1,1,0,1],[2,3,4,2],[2,2,1,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,3],[2,2,1,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[3,2,1,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[2,2,1,2],[2,2,0,0]],[[2,2,1,0],[2,3,3,1],[2,0,2,2],[1,2,0,1]],[[1,2,1,0],[3,3,3,1],[2,0,2,1],[1,2,1,1]],[[1,3,1,0],[2,3,3,1],[2,0,2,1],[1,2,1,1]],[[2,2,1,0],[2,3,3,1],[2,0,2,1],[1,2,1,1]],[[1,2,1,0],[3,3,3,1],[2,0,1,2],[1,2,2,0]],[[1,3,1,0],[2,3,3,1],[2,0,1,2],[1,2,2,0]],[[2,1,0,1],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,0,2],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,0,1],[3,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,0,1],[2,4,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,0,1],[2,3,4,2],[2,2,2,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,3],[2,2,2,0],[0,1,2,1]],[[1,1,0,1],[2,3,3,2],[3,2,2,0],[0,1,2,1]],[[2,1,0,1],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,1,0,2],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,1,0,1],[3,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[2,2,2,0],[0,2,1,1]],[[1,1,0,1],[2,3,4,2],[2,2,2,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,3],[2,2,2,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[3,2,2,0],[0,2,1,1]],[[2,1,0,1],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,1,0,2],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,1,0,1],[3,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,1,0,1],[2,4,3,2],[2,2,2,0],[1,0,2,1]],[[1,1,0,1],[2,3,4,2],[2,2,2,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,3],[2,2,2,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[3,2,2,0],[1,0,2,1]],[[1,1,0,1],[2,3,3,2],[2,2,2,0],[2,0,2,1]],[[2,1,0,1],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,1,0,2],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[2,2,2,0],[1,1,1,1]],[[1,1,0,1],[2,3,4,2],[2,2,2,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,3],[2,2,2,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[3,2,2,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,2,0],[2,1,1,1]],[[2,1,0,1],[2,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,2,2,0],[1,2,0,1]],[[1,1,0,1],[2,3,4,2],[2,2,2,0],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,2,2,0],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,2,2,0],[2,2,0,1]],[[2,2,1,0],[2,3,3,1],[2,0,1,2],[1,2,2,0]],[[1,2,1,0],[3,3,3,1],[2,0,1,1],[1,2,2,1]],[[1,3,1,0],[2,3,3,1],[2,0,1,1],[1,2,2,1]],[[2,2,1,0],[2,3,3,1],[2,0,1,1],[1,2,2,1]],[[1,2,1,0],[3,3,3,1],[2,0,0,2],[1,2,2,1]],[[1,3,1,0],[2,3,3,1],[2,0,0,2],[1,2,2,1]],[[2,2,1,0],[2,3,3,1],[2,0,0,2],[1,2,2,1]],[[2,1,0,1],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,1,0,2],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,1,0,1],[3,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,1,0,1],[2,4,3,2],[2,2,2,1],[0,1,1,1]],[[1,1,0,1],[2,3,4,2],[2,2,2,1],[0,1,1,1]],[[1,1,0,1],[2,3,3,3],[2,2,2,1],[0,1,1,1]],[[1,1,0,1],[2,3,3,2],[3,2,2,1],[0,1,1,1]],[[2,1,0,1],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,1,0,2],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,1,0,1],[3,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[2,2,2,1],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[2,2,2,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,3],[2,2,2,1],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[3,2,2,1],[0,1,2,0]],[[2,1,0,1],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,1,0,2],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,2,2,1],[0,2,0,1]],[[1,1,0,1],[2,3,4,2],[2,2,2,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,3],[2,2,2,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,2,2,1],[0,2,0,1]],[[2,1,0,1],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,0,2],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[2,2,2,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,3],[2,2,2,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,2,2,1],[0,2,1,0]],[[2,1,0,1],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,0,2],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,0,1],[3,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,0,1],[2,4,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,0,1],[2,3,4,2],[2,2,2,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,3],[2,2,2,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[3,2,2,1],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[2,2,2,1],[2,0,1,1]],[[2,1,0,1],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,1,0,2],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,1,0,1],[3,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,1,0,1],[2,4,3,2],[2,2,2,1],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[2,2,2,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,3],[2,2,2,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[3,2,2,1],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[2,2,2,1],[2,0,2,0]],[[2,1,0,1],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,0,2],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,0,1],[3,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,0,1],[2,4,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,0,1],[2,3,4,2],[2,2,2,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,3],[2,2,2,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[3,2,2,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,2,2,1],[2,1,0,1]],[[2,1,0,1],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,1,0,2],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[2,2,2,1],[1,1,1,0]],[[1,1,0,1],[2,3,4,2],[2,2,2,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,3],[2,2,2,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[3,2,2,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[2,2,2,1],[2,1,1,0]],[[2,1,0,1],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,0,2],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,0,1],[3,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,0,1],[2,4,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,0,1],[2,3,4,2],[2,2,2,1],[1,2,0,0]],[[1,1,0,1],[2,3,3,3],[2,2,2,1],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[3,2,2,1],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[2,2,2,1],[2,2,0,0]],[[2,1,0,1],[2,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,0,1],[3,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,0,1],[2,4,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,0,1],[2,3,4,2],[2,2,3,0],[0,1,2,0]],[[1,1,0,1],[2,3,3,2],[3,2,3,0],[0,1,2,0]],[[2,1,0,1],[2,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,0,1],[2,3,4,2],[2,2,3,0],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,2,3,0],[0,2,1,0]],[[2,1,0,1],[2,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,0,1],[3,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,0,1],[2,4,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,0,1],[2,3,4,2],[2,2,3,0],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[3,2,3,0],[1,0,2,0]],[[1,1,0,1],[2,3,3,2],[2,2,3,0],[2,0,2,0]],[[2,1,0,1],[2,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,0,1],[2,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[3,2,3,0],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[2,2,3,0],[2,1,1,0]],[[2,1,0,1],[2,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,1,0,1],[3,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,1,0,1],[2,4,3,2],[2,2,3,0],[1,2,0,0]],[[1,1,0,1],[2,3,4,2],[2,2,3,0],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[3,2,3,0],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[2,2,3,0],[2,2,0,0]],[[2,1,0,1],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,0,2],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,0,1],[3,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,0,1],[2,4,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,0,1],[2,3,4,2],[2,2,3,1],[0,2,0,0]],[[1,1,0,1],[2,3,3,3],[2,2,3,1],[0,2,0,0]],[[1,1,0,1],[2,3,3,2],[3,2,3,1],[0,2,0,0]],[[2,1,0,1],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,1,0,2],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,1,0,1],[3,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,1,0,1],[2,4,3,2],[2,2,3,1],[1,1,0,0]],[[1,1,0,1],[2,3,4,2],[2,2,3,1],[1,1,0,0]],[[1,1,0,1],[2,3,3,3],[2,2,3,1],[1,1,0,0]],[[1,1,0,1],[2,3,3,2],[3,2,3,1],[1,1,0,0]],[[1,1,0,1],[2,3,3,2],[2,2,3,1],[2,1,0,0]],[[1,2,1,0],[2,3,4,1],[0,3,3,2],[1,1,0,0]],[[1,2,1,0],[2,4,3,1],[0,3,3,2],[1,1,0,0]],[[1,3,1,0],[2,3,3,1],[0,3,3,2],[1,1,0,0]],[[2,2,1,0],[2,3,3,1],[0,3,3,2],[1,1,0,0]],[[1,2,1,0],[2,3,4,1],[0,3,3,2],[0,2,0,0]],[[1,2,1,0],[2,4,3,1],[0,3,3,2],[0,2,0,0]],[[1,3,1,0],[2,3,3,1],[0,3,3,2],[0,2,0,0]],[[2,2,1,0],[2,3,3,1],[0,3,3,2],[0,2,0,0]],[[1,2,1,0],[2,3,3,1],[0,3,3,3],[0,0,2,0]],[[1,2,1,0],[2,3,3,1],[0,3,4,2],[0,0,2,0]],[[1,2,1,0],[2,3,4,1],[0,3,3,2],[0,0,2,0]],[[1,2,1,0],[2,4,3,1],[0,3,3,2],[0,0,2,0]],[[1,3,1,0],[2,3,3,1],[0,3,3,2],[0,0,2,0]],[[2,2,1,0],[2,3,3,1],[0,3,3,2],[0,0,2,0]],[[1,2,1,0],[2,3,3,1],[0,3,3,2],[0,0,1,2]],[[1,2,1,0],[2,3,3,1],[0,3,3,3],[0,0,1,1]],[[1,2,1,0],[2,3,3,1],[0,3,4,2],[0,0,1,1]],[[1,2,1,0],[2,3,4,1],[0,3,3,2],[0,0,1,1]],[[1,2,1,0],[2,4,3,1],[0,3,3,2],[0,0,1,1]],[[1,3,1,0],[2,3,3,1],[0,3,3,2],[0,0,1,1]],[[2,2,1,0],[2,3,3,1],[0,3,3,2],[0,0,1,1]],[[1,2,1,0],[2,3,3,1],[0,3,4,1],[0,0,2,1]],[[1,2,1,0],[2,3,4,1],[0,3,3,1],[0,0,2,1]],[[1,2,1,0],[2,4,3,1],[0,3,3,1],[0,0,2,1]],[[1,3,1,0],[2,3,3,1],[0,3,3,1],[0,0,2,1]],[[2,2,1,0],[2,3,3,1],[0,3,3,1],[0,0,2,1]],[[1,2,1,0],[2,4,3,1],[0,3,2,2],[1,2,0,0]],[[1,3,1,0],[2,3,3,1],[0,3,2,2],[1,2,0,0]],[[2,2,1,0],[2,3,3,1],[0,3,2,2],[1,2,0,0]],[[1,2,1,0],[2,3,4,1],[0,3,2,2],[1,1,1,0]],[[1,2,1,0],[2,4,3,1],[0,3,2,2],[1,1,1,0]],[[1,3,1,0],[2,3,3,1],[0,3,2,2],[1,1,1,0]],[[2,2,1,0],[2,3,3,1],[0,3,2,2],[1,1,1,0]],[[1,2,1,0],[2,3,4,1],[0,3,2,2],[1,1,0,1]],[[1,2,1,0],[2,4,3,1],[0,3,2,2],[1,1,0,1]],[[1,3,1,0],[2,3,3,1],[0,3,2,2],[1,1,0,1]],[[2,2,1,0],[2,3,3,1],[0,3,2,2],[1,1,0,1]],[[1,2,1,0],[2,3,4,1],[0,3,2,2],[1,0,2,0]],[[1,2,1,0],[2,4,3,1],[0,3,2,2],[1,0,2,0]],[[1,3,1,0],[2,3,3,1],[0,3,2,2],[1,0,2,0]],[[2,2,1,0],[2,3,3,1],[0,3,2,2],[1,0,2,0]],[[1,2,1,0],[2,3,4,1],[0,3,2,2],[1,0,1,1]],[[1,2,1,0],[2,4,3,1],[0,3,2,2],[1,0,1,1]],[[1,3,1,0],[2,3,3,1],[0,3,2,2],[1,0,1,1]],[[2,2,1,0],[2,3,3,1],[0,3,2,2],[1,0,1,1]],[[1,2,1,0],[2,3,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,1,0],[2,4,3,1],[0,3,2,2],[0,2,1,0]],[[1,3,1,0],[2,3,3,1],[0,3,2,2],[0,2,1,0]],[[2,2,1,0],[2,3,3,1],[0,3,2,2],[0,2,1,0]],[[1,2,1,0],[2,3,4,1],[0,3,2,2],[0,2,0,1]],[[1,2,1,0],[2,4,3,1],[0,3,2,2],[0,2,0,1]],[[1,3,1,0],[2,3,3,1],[0,3,2,2],[0,2,0,1]],[[2,2,1,0],[2,3,3,1],[0,3,2,2],[0,2,0,1]],[[1,2,1,0],[2,3,4,1],[0,3,2,2],[0,1,2,0]],[[1,2,1,0],[2,4,3,1],[0,3,2,2],[0,1,2,0]],[[1,3,1,0],[2,3,3,1],[0,3,2,2],[0,1,2,0]],[[2,2,1,0],[2,3,3,1],[0,3,2,2],[0,1,2,0]],[[1,2,1,0],[2,3,4,1],[0,3,2,2],[0,1,1,1]],[[1,2,1,0],[2,4,3,1],[0,3,2,2],[0,1,1,1]],[[1,3,1,0],[2,3,3,1],[0,3,2,2],[0,1,1,1]],[[2,2,1,0],[2,3,3,1],[0,3,2,2],[0,1,1,1]],[[1,2,1,0],[2,4,3,1],[0,3,2,1],[1,1,1,1]],[[1,3,1,0],[2,3,3,1],[0,3,2,1],[1,1,1,1]],[[2,2,1,0],[2,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,2,1,0],[2,3,4,1],[0,3,2,1],[1,0,2,1]],[[1,2,1,0],[2,4,3,1],[0,3,2,1],[1,0,2,1]],[[1,3,1,0],[2,3,3,1],[0,3,2,1],[1,0,2,1]],[[2,2,1,0],[2,3,3,1],[0,3,2,1],[1,0,2,1]],[[1,2,1,0],[2,3,4,1],[0,3,2,1],[0,2,1,1]],[[1,2,1,0],[2,4,3,1],[0,3,2,1],[0,2,1,1]],[[1,3,1,0],[2,3,3,1],[0,3,2,1],[0,2,1,1]],[[2,2,1,0],[2,3,3,1],[0,3,2,1],[0,2,1,1]],[[1,2,1,0],[2,3,4,1],[0,3,2,1],[0,1,2,1]],[[1,2,1,0],[2,4,3,1],[0,3,2,1],[0,1,2,1]],[[1,3,1,0],[2,3,3,1],[0,3,2,1],[0,1,2,1]],[[2,2,1,0],[2,3,3,1],[0,3,2,1],[0,1,2,1]],[[1,2,1,0],[2,4,3,1],[0,3,1,2],[1,1,2,0]],[[1,3,1,0],[2,3,3,1],[0,3,1,2],[1,1,2,0]],[[2,2,1,0],[2,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,2,1,0],[2,3,4,1],[0,3,1,2],[0,2,2,0]],[[1,2,1,0],[2,4,3,1],[0,3,1,2],[0,2,2,0]],[[1,3,1,0],[2,3,3,1],[0,3,1,2],[0,2,2,0]],[[2,2,1,0],[2,3,3,1],[0,3,1,2],[0,2,2,0]],[[1,2,1,0],[2,4,3,1],[0,3,1,1],[1,1,2,1]],[[1,3,1,0],[2,3,3,1],[0,3,1,1],[1,1,2,1]],[[2,2,1,0],[2,3,3,1],[0,3,1,1],[1,1,2,1]],[[1,2,1,0],[2,3,4,1],[0,3,1,1],[0,2,2,1]],[[1,2,1,0],[2,4,3,1],[0,3,1,1],[0,2,2,1]],[[1,3,1,0],[2,3,3,1],[0,3,1,1],[0,2,2,1]],[[2,2,1,0],[2,3,3,1],[0,3,1,1],[0,2,2,1]],[[1,2,1,0],[2,4,3,1],[0,3,0,2],[1,1,2,1]],[[1,3,1,0],[2,3,3,1],[0,3,0,2],[1,1,2,1]],[[2,2,1,0],[2,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,2,1,0],[2,3,4,1],[0,3,0,2],[0,2,2,1]],[[1,2,1,0],[2,4,3,1],[0,3,0,2],[0,2,2,1]],[[1,3,1,0],[2,3,3,1],[0,3,0,2],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[2,3,0,0],[0,2,2,1]],[[1,1,0,1],[3,3,3,2],[2,3,0,0],[0,2,2,1]],[[1,1,0,1],[2,4,3,2],[2,3,0,0],[0,2,2,1]],[[1,1,0,1],[2,3,3,2],[3,3,0,0],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,1,0,1],[3,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,1,0,1],[2,4,3,2],[2,3,0,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[3,3,0,0],[1,1,2,1]],[[1,1,0,1],[2,3,3,2],[2,3,0,0],[2,1,2,1]],[[2,1,0,1],[2,3,3,2],[2,3,0,0],[1,2,1,1]],[[1,1,0,1],[3,3,3,2],[2,3,0,0],[1,2,1,1]],[[1,1,0,1],[2,4,3,2],[2,3,0,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[3,3,0,0],[1,2,1,1]],[[1,1,0,1],[2,3,3,2],[2,3,0,0],[2,2,1,1]],[[2,1,0,1],[2,3,3,2],[2,3,0,0],[1,2,2,0]],[[1,1,0,1],[3,3,3,2],[2,3,0,0],[1,2,2,0]],[[1,1,0,1],[2,4,3,2],[2,3,0,0],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[3,3,0,0],[1,2,2,0]],[[1,1,0,1],[2,3,3,2],[2,3,0,0],[2,2,2,0]],[[2,1,0,1],[2,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,1,0,1],[3,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,1,0,1],[2,4,3,2],[2,3,0,1],[0,2,2,0]],[[1,1,0,1],[2,3,3,2],[3,3,0,1],[0,2,2,0]],[[2,1,0,1],[2,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,1,0,1],[3,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,1,0,1],[2,4,3,2],[2,3,0,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[3,3,0,1],[1,1,2,0]],[[1,1,0,1],[2,3,3,2],[2,3,0,1],[2,1,2,0]],[[2,1,0,1],[2,3,3,2],[2,3,0,1],[1,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,3,0,1],[1,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,3,0,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,3,0,1],[1,2,1,0]],[[1,1,0,1],[2,3,3,2],[2,3,0,1],[2,2,1,0]],[[2,2,1,0],[2,3,3,1],[0,3,0,2],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,3,0,2],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,3,0,2],[0,2,0,1]],[[2,1,0,1],[2,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,3,0,2],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,3,0,2],[0,2,1,0]],[[2,1,0,1],[2,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,0,1],[3,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,0,1],[2,4,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[3,3,0,2],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,3,0,2],[2,1,0,1]],[[2,1,0,1],[2,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[2,3,0,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[3,3,0,2],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[2,3,0,2],[2,1,1,0]],[[1,2,1,0],[2,3,4,1],[0,2,3,2],[1,1,1,0]],[[1,2,1,0],[2,4,3,1],[0,2,3,2],[1,1,1,0]],[[1,3,1,0],[2,3,3,1],[0,2,3,2],[1,1,1,0]],[[2,2,1,0],[2,3,3,1],[0,2,3,2],[1,1,1,0]],[[2,1,0,1],[2,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,1,0,1],[3,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,1,0,1],[2,4,3,2],[2,3,0,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[3,3,0,2],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[2,3,0,2],[2,2,0,0]],[[1,2,1,0],[2,3,4,1],[0,2,3,2],[1,1,0,1]],[[1,2,1,0],[2,4,3,1],[0,2,3,2],[1,1,0,1]],[[1,3,1,0],[2,3,3,1],[0,2,3,2],[1,1,0,1]],[[2,2,1,0],[2,3,3,1],[0,2,3,2],[1,1,0,1]],[[1,2,1,0],[2,3,3,1],[0,2,3,3],[1,0,2,0]],[[1,2,1,0],[2,3,3,1],[0,2,4,2],[1,0,2,0]],[[1,2,1,0],[2,3,4,1],[0,2,3,2],[1,0,2,0]],[[1,2,1,0],[2,4,3,1],[0,2,3,2],[1,0,2,0]],[[1,3,1,0],[2,3,3,1],[0,2,3,2],[1,0,2,0]],[[2,2,1,0],[2,3,3,1],[0,2,3,2],[1,0,2,0]],[[1,2,1,0],[2,3,3,1],[0,2,3,2],[1,0,1,2]],[[1,2,1,0],[2,3,3,1],[0,2,3,3],[1,0,1,1]],[[1,2,1,0],[2,3,3,1],[0,2,4,2],[1,0,1,1]],[[1,2,1,0],[2,3,4,1],[0,2,3,2],[1,0,1,1]],[[1,2,1,0],[2,4,3,1],[0,2,3,2],[1,0,1,1]],[[1,3,1,0],[2,3,3,1],[0,2,3,2],[1,0,1,1]],[[2,2,1,0],[2,3,3,1],[0,2,3,2],[1,0,1,1]],[[2,1,0,1],[2,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,1,0,1],[3,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,1,0,1],[2,4,3,2],[2,3,1,0],[0,2,1,1]],[[1,1,0,1],[2,3,3,2],[3,3,1,0],[0,2,1,1]],[[2,1,0,1],[2,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,1,0,1],[3,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,1,0,1],[2,4,3,2],[2,3,1,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[3,3,1,0],[1,1,1,1]],[[1,1,0,1],[2,3,3,2],[2,3,1,0],[2,1,1,1]],[[2,1,0,1],[2,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,3,1,0],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,3,1,0],[1,2,0,1]],[[1,1,0,1],[2,3,3,2],[2,3,1,0],[2,2,0,1]],[[1,2,1,0],[2,3,3,1],[0,2,3,3],[0,2,1,0]],[[1,2,1,0],[2,3,3,1],[0,2,4,2],[0,2,1,0]],[[1,2,1,0],[2,3,4,1],[0,2,3,2],[0,2,1,0]],[[1,2,1,0],[2,4,3,1],[0,2,3,2],[0,2,1,0]],[[1,3,1,0],[2,3,3,1],[0,2,3,2],[0,2,1,0]],[[2,2,1,0],[2,3,3,1],[0,2,3,2],[0,2,1,0]],[[1,2,1,0],[2,3,3,1],[0,2,3,2],[0,2,0,2]],[[1,2,1,0],[2,3,3,1],[0,2,3,3],[0,2,0,1]],[[1,2,1,0],[2,3,3,1],[0,2,4,2],[0,2,0,1]],[[1,2,1,0],[2,3,4,1],[0,2,3,2],[0,2,0,1]],[[1,2,1,0],[2,4,3,1],[0,2,3,2],[0,2,0,1]],[[2,1,0,1],[2,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,1,0,1],[3,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,1,0,1],[2,4,3,2],[2,3,1,1],[0,2,0,1]],[[1,1,0,1],[2,3,3,2],[3,3,1,1],[0,2,0,1]],[[2,1,0,1],[2,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,3,1,1],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,3,1,1],[0,2,1,0]],[[1,3,1,0],[2,3,3,1],[0,2,3,2],[0,2,0,1]],[[2,2,1,0],[2,3,3,1],[0,2,3,2],[0,2,0,1]],[[1,2,1,0],[2,3,3,1],[0,2,3,2],[0,1,3,0]],[[2,1,0,1],[2,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,1,0,1],[3,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,1,0,1],[2,4,3,2],[2,3,1,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[3,3,1,1],[1,1,0,1]],[[1,1,0,1],[2,3,3,2],[2,3,1,1],[2,1,0,1]],[[2,1,0,1],[2,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[2,3,1,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[3,3,1,1],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[2,3,1,1],[2,1,1,0]],[[1,2,1,0],[2,3,3,1],[0,2,3,3],[0,1,2,0]],[[1,2,1,0],[2,3,3,1],[0,2,4,2],[0,1,2,0]],[[1,2,1,0],[2,3,4,1],[0,2,3,2],[0,1,2,0]],[[1,2,1,0],[2,4,3,1],[0,2,3,2],[0,1,2,0]],[[1,3,1,0],[2,3,3,1],[0,2,3,2],[0,1,2,0]],[[2,2,1,0],[2,3,3,1],[0,2,3,2],[0,1,2,0]],[[1,2,1,0],[2,3,3,1],[0,2,3,2],[0,1,1,2]],[[1,2,1,0],[2,3,3,1],[0,2,3,3],[0,1,1,1]],[[1,2,1,0],[2,3,3,1],[0,2,4,2],[0,1,1,1]],[[2,1,0,1],[2,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,1,0,1],[3,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,1,0,1],[2,4,3,2],[2,3,1,1],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[3,3,1,1],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[2,3,1,1],[2,2,0,0]],[[1,2,1,0],[2,3,4,1],[0,2,3,2],[0,1,1,1]],[[1,2,1,0],[2,4,3,1],[0,2,3,2],[0,1,1,1]],[[1,3,1,0],[2,3,3,1],[0,2,3,2],[0,1,1,1]],[[2,2,1,0],[2,3,3,1],[0,2,3,2],[0,1,1,1]],[[1,2,1,0],[2,3,3,1],[0,2,3,2],[0,0,2,2]],[[1,2,1,0],[2,3,3,1],[0,2,3,3],[0,0,2,1]],[[1,2,1,0],[2,3,3,1],[0,2,4,2],[0,0,2,1]],[[1,2,1,0],[2,3,4,1],[0,2,3,2],[0,0,2,1]],[[1,2,1,0],[2,4,3,1],[0,2,3,2],[0,0,2,1]],[[1,3,1,0],[2,3,3,1],[0,2,3,2],[0,0,2,1]],[[2,2,1,0],[2,3,3,1],[0,2,3,2],[0,0,2,1]],[[1,2,1,0],[2,4,3,1],[0,2,3,1],[1,1,1,1]],[[1,3,1,0],[2,3,3,1],[0,2,3,1],[1,1,1,1]],[[2,2,1,0],[2,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,2,1,0],[2,3,3,1],[0,2,4,1],[1,0,2,1]],[[1,2,1,0],[2,3,4,1],[0,2,3,1],[1,0,2,1]],[[1,2,1,0],[2,4,3,1],[0,2,3,1],[1,0,2,1]],[[1,3,1,0],[2,3,3,1],[0,2,3,1],[1,0,2,1]],[[2,2,1,0],[2,3,3,1],[0,2,3,1],[1,0,2,1]],[[1,2,1,0],[2,3,3,1],[0,2,4,1],[0,2,1,1]],[[1,2,1,0],[2,3,4,1],[0,2,3,1],[0,2,1,1]],[[1,2,1,0],[2,4,3,1],[0,2,3,1],[0,2,1,1]],[[1,3,1,0],[2,3,3,1],[0,2,3,1],[0,2,1,1]],[[2,2,1,0],[2,3,3,1],[0,2,3,1],[0,2,1,1]],[[1,2,1,0],[2,3,3,1],[0,2,3,1],[0,1,2,2]],[[1,2,1,0],[2,3,3,1],[0,2,3,1],[0,1,3,1]],[[1,2,1,0],[2,3,3,1],[0,2,4,1],[0,1,2,1]],[[1,2,1,0],[2,3,4,1],[0,2,3,1],[0,1,2,1]],[[1,2,1,0],[2,4,3,1],[0,2,3,1],[0,1,2,1]],[[1,3,1,0],[2,3,3,1],[0,2,3,1],[0,1,2,1]],[[2,2,1,0],[2,3,3,1],[0,2,3,1],[0,1,2,1]],[[1,2,1,0],[2,3,3,1],[0,2,2,2],[0,1,2,2]],[[1,2,1,0],[2,3,3,1],[0,2,2,2],[0,1,3,1]],[[1,2,1,0],[2,3,3,1],[0,2,2,3],[0,1,2,1]],[[2,1,0,1],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,0,2],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,0,1],[3,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,0,1],[2,4,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,0,1],[2,3,4,2],[2,3,1,2],[1,0,0,1]],[[1,1,0,1],[2,3,3,3],[2,3,1,2],[1,0,0,1]],[[1,1,0,1],[2,3,3,2],[3,3,1,2],[1,0,0,1]],[[1,1,0,1],[2,3,3,2],[2,3,1,3],[1,0,0,1]],[[2,1,0,1],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,0,2],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,0,1],[3,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,0,1],[2,4,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,0,1],[2,3,4,2],[2,3,1,2],[1,0,1,0]],[[1,1,0,1],[2,3,3,3],[2,3,1,2],[1,0,1,0]],[[1,1,0,1],[2,3,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,1,0],[2,3,3,1],[0,1,3,2],[0,2,3,0]],[[1,2,1,0],[2,3,3,1],[0,1,3,3],[0,2,2,0]],[[1,2,1,0],[2,3,3,1],[0,1,4,2],[0,2,2,0]],[[1,2,1,0],[2,3,4,1],[0,1,3,2],[0,2,2,0]],[[1,2,1,0],[2,4,3,1],[0,1,3,2],[0,2,2,0]],[[1,3,1,0],[2,3,3,1],[0,1,3,2],[0,2,2,0]],[[2,2,1,0],[2,3,3,1],[0,1,3,2],[0,2,2,0]],[[1,2,1,0],[2,3,3,1],[0,1,3,2],[0,2,1,2]],[[1,2,1,0],[2,3,3,1],[0,1,3,3],[0,2,1,1]],[[1,2,1,0],[2,3,3,1],[0,1,4,2],[0,2,1,1]],[[1,2,1,0],[2,3,4,1],[0,1,3,2],[0,2,1,1]],[[1,2,1,0],[2,4,3,1],[0,1,3,2],[0,2,1,1]],[[1,3,1,0],[2,3,3,1],[0,1,3,2],[0,2,1,1]],[[2,2,1,0],[2,3,3,1],[0,1,3,2],[0,2,1,1]],[[1,2,1,0],[2,3,3,1],[0,1,3,1],[0,2,2,2]],[[1,2,1,0],[2,3,3,1],[0,1,3,1],[0,2,3,1]],[[1,2,1,0],[2,3,3,1],[0,1,4,1],[0,2,2,1]],[[1,2,1,0],[2,3,4,1],[0,1,3,1],[0,2,2,1]],[[1,2,1,0],[2,4,3,1],[0,1,3,1],[0,2,2,1]],[[1,3,1,0],[2,3,3,1],[0,1,3,1],[0,2,2,1]],[[2,2,1,0],[2,3,3,1],[0,1,3,1],[0,2,2,1]],[[1,2,1,0],[2,3,3,1],[0,1,2,2],[0,2,2,2]],[[1,2,1,0],[2,3,3,1],[0,1,2,2],[0,2,3,1]],[[1,2,1,0],[2,3,3,1],[0,1,2,3],[0,2,2,1]],[[1,2,1,0],[2,3,3,1],[0,0,3,2],[0,2,2,2]],[[1,2,1,0],[2,3,3,1],[0,0,3,2],[0,2,3,1]],[[1,2,1,0],[2,3,3,1],[0,0,3,3],[0,2,2,1]],[[1,2,1,0],[2,3,3,0],[2,3,0,0],[1,3,2,1]],[[1,2,1,0],[2,3,3,0],[2,3,0,0],[2,2,2,1]],[[1,2,1,0],[2,3,3,0],[3,3,0,0],[1,2,2,1]],[[1,2,1,0],[3,3,3,0],[2,3,0,0],[1,2,2,1]],[[2,2,1,0],[2,3,3,0],[2,3,0,0],[1,2,2,1]],[[2,1,0,1],[2,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,0,1],[3,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,0,1],[2,4,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,0,1],[2,3,3,2],[3,3,2,0],[0,2,1,0]],[[2,1,0,1],[2,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,0,1],[3,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,0,1],[2,4,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,0,1],[2,3,4,2],[2,3,2,0],[1,0,1,1]],[[1,1,0,1],[2,3,3,2],[3,3,2,0],[1,0,1,1]],[[2,1,0,1],[2,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,0,1],[3,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,0,1],[2,4,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[3,3,2,0],[1,1,1,0]],[[1,1,0,1],[2,3,3,2],[2,3,2,0],[2,1,1,0]],[[2,1,0,1],[2,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,0,1],[3,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,0,1],[2,4,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[3,3,2,0],[1,2,0,0]],[[1,1,0,1],[2,3,3,2],[2,3,2,0],[2,2,0,0]],[[2,1,0,1],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,0,2],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,0,1],[3,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,0,1],[2,4,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,0,1],[2,3,4,2],[2,3,2,1],[1,0,0,1]],[[1,1,0,1],[2,3,3,3],[2,3,2,1],[1,0,0,1]],[[1,1,0,1],[2,3,3,2],[3,3,2,1],[1,0,0,1]],[[2,1,0,1],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,1,0,2],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,1,0,1],[3,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,1,0,1],[2,4,3,2],[2,3,2,1],[1,0,1,0]],[[1,1,0,1],[2,3,4,2],[2,3,2,1],[1,0,1,0]],[[1,1,0,1],[2,3,3,3],[2,3,2,1],[1,0,1,0]],[[1,1,0,1],[2,3,3,2],[3,3,2,1],[1,0,1,0]],[[1,2,1,0],[2,4,3,0],[0,3,3,2],[1,1,1,0]],[[1,3,1,0],[2,3,3,0],[0,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,3,3,0],[0,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,4,3,0],[0,3,3,2],[1,1,0,1]],[[1,3,1,0],[2,3,3,0],[0,3,3,2],[1,1,0,1]],[[2,2,1,0],[2,3,3,0],[0,3,3,2],[1,1,0,1]],[[1,2,1,0],[2,4,3,0],[0,3,3,2],[1,0,2,0]],[[1,3,1,0],[2,3,3,0],[0,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,3,3,0],[0,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,4,3,0],[0,3,3,2],[1,0,1,1]],[[1,3,1,0],[2,3,3,0],[0,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,3,3,0],[0,3,3,2],[1,0,1,1]],[[1,2,1,0],[2,4,3,0],[0,3,3,2],[0,2,1,0]],[[1,3,1,0],[2,3,3,0],[0,3,3,2],[0,2,1,0]],[[2,2,1,0],[2,3,3,0],[0,3,3,2],[0,2,1,0]],[[1,2,1,0],[2,4,3,0],[0,3,3,2],[0,2,0,1]],[[1,3,1,0],[2,3,3,0],[0,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,3,3,0],[0,3,3,2],[0,2,0,1]],[[1,2,1,0],[2,4,3,0],[0,3,3,2],[0,1,2,0]],[[1,3,1,0],[2,3,3,0],[0,3,3,2],[0,1,2,0]],[[2,2,1,0],[2,3,3,0],[0,3,3,2],[0,1,2,0]],[[1,2,1,0],[2,4,3,0],[0,3,3,2],[0,1,1,1]],[[1,3,1,0],[2,3,3,0],[0,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,3,3,0],[0,3,3,2],[0,1,1,1]],[[1,2,1,0],[2,4,3,0],[0,3,3,1],[1,1,1,1]],[[1,3,1,0],[2,3,3,0],[0,3,3,1],[1,1,1,1]],[[2,2,1,0],[2,3,3,0],[0,3,3,1],[1,1,1,1]],[[1,2,1,0],[2,4,3,0],[0,3,3,1],[1,0,2,1]],[[1,3,1,0],[2,3,3,0],[0,3,3,1],[1,0,2,1]],[[2,2,1,0],[2,3,3,0],[0,3,3,1],[1,0,2,1]],[[1,2,1,0],[2,4,3,0],[0,3,3,1],[0,2,1,1]],[[1,3,1,0],[2,3,3,0],[0,3,3,1],[0,2,1,1]],[[2,2,1,0],[2,3,3,0],[0,3,3,1],[0,2,1,1]],[[1,2,1,0],[2,4,3,0],[0,3,3,1],[0,1,2,1]],[[1,3,1,0],[2,3,3,0],[0,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,3,3,0],[0,3,3,1],[0,1,2,1]],[[1,2,1,0],[2,4,3,0],[0,3,3,0],[0,2,2,1]],[[1,3,1,0],[2,3,3,0],[0,3,3,0],[0,2,2,1]],[[2,2,1,0],[2,3,3,0],[0,3,3,0],[0,2,2,1]],[[1,2,1,0],[2,4,3,0],[0,3,2,2],[0,2,2,0]],[[1,3,1,0],[2,3,3,0],[0,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,3,3,0],[0,3,2,2],[0,2,2,0]],[[1,2,1,0],[2,4,3,0],[0,3,2,1],[0,2,2,1]],[[1,3,1,0],[2,3,3,0],[0,3,2,1],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,1,0,1],[3,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,1,0,1],[2,4,3,2],[2,3,3,0],[1,0,1,0]],[[1,1,0,1],[2,3,4,2],[2,3,3,0],[1,0,1,0]],[[1,1,0,1],[2,3,3,2],[3,3,3,0],[1,0,1,0]],[[2,2,1,0],[2,3,3,0],[0,3,2,1],[0,2,2,1]],[[1,2,1,0],[2,3,3,0],[0,2,3,2],[0,1,2,2]],[[1,2,1,0],[2,3,3,0],[0,2,3,2],[0,1,3,1]],[[1,2,1,0],[2,3,3,0],[0,2,4,2],[0,1,2,1]],[[1,2,1,0],[2,3,3,0],[0,1,3,2],[0,2,2,2]],[[1,2,1,0],[2,3,3,0],[0,1,3,2],[0,2,3,1]],[[1,2,1,0],[2,3,3,0],[0,1,4,2],[0,2,2,1]],[[2,1,0,1],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,0,2],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,0,1],[3,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,0,1],[2,4,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,0,1],[2,3,4,2],[2,3,3,1],[1,0,0,0]],[[1,1,0,1],[2,3,3,3],[2,3,3,1],[1,0,0,0]],[[1,1,0,1],[2,3,3,2],[3,3,3,1],[1,0,0,0]],[[1,2,1,0],[3,3,2,2],[2,0,0,2],[1,2,2,1]],[[1,3,1,0],[2,3,2,2],[2,0,0,2],[1,2,2,1]],[[2,2,1,0],[2,3,2,2],[2,0,0,2],[1,2,2,1]],[[1,2,1,0],[2,3,2,2],[0,3,3,3],[0,0,2,0]],[[1,2,1,0],[2,3,2,2],[0,3,4,2],[0,0,2,0]],[[1,2,1,0],[2,3,2,3],[0,3,3,2],[0,0,2,0]],[[1,2,1,0],[2,3,2,2],[0,3,3,2],[0,0,1,2]],[[1,2,1,0],[2,3,2,2],[0,3,3,3],[0,0,1,1]],[[1,2,1,0],[2,3,2,2],[0,3,4,2],[0,0,1,1]],[[1,2,1,0],[2,3,2,3],[0,3,3,2],[0,0,1,1]],[[1,2,1,0],[2,4,2,2],[0,3,3,1],[1,1,1,0]],[[1,3,1,0],[2,3,2,2],[0,3,3,1],[1,1,1,0]],[[2,2,1,0],[2,3,2,2],[0,3,3,1],[1,1,1,0]],[[1,2,1,0],[2,4,2,2],[0,3,3,1],[1,1,0,1]],[[1,3,1,0],[2,3,2,2],[0,3,3,1],[1,1,0,1]],[[2,2,1,0],[2,3,2,2],[0,3,3,1],[1,1,0,1]],[[1,1,1,0],[0,1,1,2],[2,3,3,3],[1,2,2,1]],[[1,1,1,0],[0,1,1,2],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[0,1,1,2],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[0,1,1,2],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[0,1,1,2],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[0,1,2,2],[2,3,2,3],[1,2,2,1]],[[1,1,1,0],[0,1,2,2],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[0,1,2,2],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[0,1,2,2],[2,3,2,2],[1,2,3,1]],[[1,1,1,0],[0,1,2,2],[2,3,2,2],[1,2,2,2]],[[1,1,1,0],[0,1,2,2],[2,3,4,1],[1,2,2,1]],[[1,1,1,0],[0,1,2,2],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[0,1,2,2],[2,3,3,1],[1,3,2,1]],[[1,1,1,0],[0,1,2,2],[2,3,3,1],[1,2,3,1]],[[1,1,1,0],[0,1,2,2],[2,3,3,1],[1,2,2,2]],[[1,1,1,0],[0,1,2,2],[2,3,4,2],[1,2,1,1]],[[1,1,1,0],[0,1,2,2],[2,3,3,3],[1,2,1,1]],[[1,1,1,0],[0,1,2,2],[2,3,3,2],[1,2,1,2]],[[1,1,1,0],[0,1,2,2],[2,3,4,2],[1,2,2,0]],[[1,1,1,0],[0,1,2,2],[2,3,3,3],[1,2,2,0]],[[1,1,1,0],[0,1,2,2],[2,3,3,2],[2,2,2,0]],[[1,1,1,0],[0,1,2,2],[2,3,3,2],[1,3,2,0]],[[1,1,1,0],[0,1,2,2],[2,3,3,2],[1,2,3,0]],[[1,1,1,0],[0,1,3,0],[2,3,4,2],[1,2,2,1]],[[1,1,1,0],[0,1,3,0],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[0,1,3,0],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[0,1,3,0],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[0,1,3,0],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[0,1,3,1],[2,3,2,3],[1,2,2,1]],[[1,1,1,0],[0,1,3,1],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[0,1,3,1],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[0,1,3,1],[2,3,2,2],[1,2,3,1]],[[1,1,1,0],[0,1,3,1],[2,3,2,2],[1,2,2,2]],[[1,1,1,0],[0,1,3,1],[2,3,4,1],[1,2,2,1]],[[1,1,1,0],[0,1,3,1],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[0,1,3,1],[2,3,3,1],[1,3,2,1]],[[1,1,1,0],[0,1,3,1],[2,3,3,1],[1,2,3,1]],[[1,1,1,0],[0,1,3,1],[2,3,3,1],[1,2,2,2]],[[1,1,1,0],[0,1,3,1],[2,3,4,2],[1,2,1,1]],[[1,1,1,0],[0,1,3,1],[2,3,3,3],[1,2,1,1]],[[1,1,1,0],[0,1,3,1],[2,3,3,2],[1,2,1,2]],[[1,1,1,0],[0,1,3,1],[2,3,4,2],[1,2,2,0]],[[1,1,1,0],[0,1,3,1],[2,3,3,3],[1,2,2,0]],[[1,1,1,0],[0,1,3,1],[2,3,3,2],[2,2,2,0]],[[1,1,1,0],[0,1,3,1],[2,3,3,2],[1,3,2,0]],[[1,1,1,0],[0,1,3,1],[2,3,3,2],[1,2,3,0]],[[1,1,1,0],[0,1,3,2],[2,3,4,0],[1,2,2,1]],[[1,1,1,0],[0,1,3,2],[2,3,3,0],[2,2,2,1]],[[1,1,1,0],[0,1,3,2],[2,3,3,0],[1,3,2,1]],[[1,1,1,0],[0,1,3,2],[2,3,3,0],[1,2,3,1]],[[1,1,1,0],[0,1,3,2],[2,3,3,0],[1,2,2,2]],[[1,1,1,0],[0,1,3,2],[2,3,4,1],[1,2,2,0]],[[1,1,1,0],[0,1,3,2],[2,3,3,1],[2,2,2,0]],[[1,1,1,0],[0,1,3,2],[2,3,3,1],[1,3,2,0]],[[1,1,1,0],[0,1,3,2],[2,3,3,1],[1,2,3,0]],[[1,2,1,0],[2,4,2,2],[0,3,3,1],[1,0,2,0]],[[1,3,1,0],[2,3,2,2],[0,3,3,1],[1,0,2,0]],[[2,2,1,0],[2,3,2,2],[0,3,3,1],[1,0,2,0]],[[1,1,1,0],[0,2,0,2],[2,3,3,3],[1,2,2,1]],[[1,1,1,0],[0,2,0,2],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[0,2,0,2],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[0,2,0,2],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[0,2,0,2],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[0,2,1,2],[2,2,3,3],[1,2,2,1]],[[1,1,1,0],[0,2,1,2],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[0,2,1,2],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[0,2,1,2],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[0,2,1,2],[2,2,3,2],[1,2,2,2]],[[1,1,1,0],[0,2,1,2],[2,3,3,3],[1,1,2,1]],[[1,1,1,0],[0,2,1,2],[2,3,3,2],[1,1,3,1]],[[1,1,1,0],[0,2,1,2],[2,3,3,2],[1,1,2,2]],[[1,1,1,0],[0,2,2,2],[2,2,2,3],[1,2,2,1]],[[1,1,1,0],[0,2,2,2],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[0,2,2,2],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[0,2,2,2],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[0,2,2,2],[2,2,2,2],[1,2,2,2]],[[1,1,1,0],[0,2,2,2],[2,2,4,1],[1,2,2,1]],[[1,1,1,0],[0,2,2,2],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[0,2,2,2],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[0,2,2,2],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[0,2,2,2],[2,2,3,1],[1,2,2,2]],[[1,1,1,0],[0,2,2,2],[2,2,4,2],[1,2,1,1]],[[1,1,1,0],[0,2,2,2],[2,2,3,3],[1,2,1,1]],[[1,1,1,0],[0,2,2,2],[2,2,3,2],[1,2,1,2]],[[1,1,1,0],[0,2,2,2],[2,2,4,2],[1,2,2,0]],[[1,1,1,0],[0,2,2,2],[2,2,3,3],[1,2,2,0]],[[1,1,1,0],[0,2,2,2],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[0,2,2,2],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[0,2,2,2],[2,2,3,2],[1,2,3,0]],[[1,1,1,0],[0,2,2,2],[2,4,1,2],[1,2,2,1]],[[1,1,1,0],[0,2,2,2],[2,3,1,3],[1,2,2,1]],[[1,1,1,0],[0,2,2,2],[2,3,1,2],[2,2,2,1]],[[1,1,1,0],[0,2,2,2],[2,3,1,2],[1,3,2,1]],[[1,1,1,0],[0,2,2,2],[2,3,1,2],[1,2,3,1]],[[1,1,1,0],[0,2,2,2],[2,3,1,2],[1,2,2,2]],[[1,1,1,0],[0,2,2,2],[2,4,2,1],[1,2,2,1]],[[1,1,1,0],[0,2,2,2],[2,3,2,1],[2,2,2,1]],[[1,1,1,0],[0,2,2,2],[2,3,2,1],[1,3,2,1]],[[1,1,1,0],[0,2,2,2],[2,3,2,1],[1,2,3,1]],[[1,1,1,0],[0,2,2,2],[2,3,2,1],[1,2,2,2]],[[1,1,1,0],[0,2,2,2],[2,3,2,3],[1,1,2,1]],[[1,1,1,0],[0,2,2,2],[2,3,2,2],[1,1,3,1]],[[1,1,1,0],[0,2,2,2],[2,3,2,2],[1,1,2,2]],[[1,1,1,0],[0,2,2,2],[2,4,2,2],[1,2,2,0]],[[1,1,1,0],[0,2,2,2],[2,3,2,2],[2,2,2,0]],[[1,1,1,0],[0,2,2,2],[2,3,2,2],[1,3,2,0]],[[1,1,1,0],[0,2,2,2],[2,3,2,2],[1,2,3,0]],[[1,1,1,0],[0,2,2,2],[2,4,3,1],[1,1,2,1]],[[1,1,1,0],[0,2,2,2],[2,3,4,1],[1,1,2,1]],[[1,1,1,0],[0,2,2,2],[2,3,3,1],[1,1,3,1]],[[1,1,1,0],[0,2,2,2],[2,3,3,1],[1,1,2,2]],[[1,1,1,0],[0,2,2,2],[2,4,3,1],[1,2,1,1]],[[1,1,1,0],[0,2,2,2],[2,3,4,1],[1,2,1,1]],[[1,1,1,0],[0,2,2,2],[2,3,3,1],[2,2,1,1]],[[1,1,1,0],[0,2,2,2],[2,3,3,1],[1,3,1,1]],[[1,1,1,0],[0,2,2,2],[2,4,3,2],[1,1,1,1]],[[1,1,1,0],[0,2,2,2],[2,3,4,2],[1,1,1,1]],[[1,1,1,0],[0,2,2,2],[2,3,3,3],[1,1,1,1]],[[1,1,1,0],[0,2,2,2],[2,3,3,2],[1,1,1,2]],[[1,1,1,0],[0,2,2,2],[2,4,3,2],[1,1,2,0]],[[1,1,1,0],[0,2,2,2],[2,3,4,2],[1,1,2,0]],[[1,1,1,0],[0,2,2,2],[2,3,3,3],[1,1,2,0]],[[1,1,1,0],[0,2,2,2],[2,3,3,2],[1,1,3,0]],[[1,1,1,0],[0,2,2,2],[2,4,3,2],[1,2,0,1]],[[1,1,1,0],[0,2,2,2],[2,3,4,2],[1,2,0,1]],[[1,1,1,0],[0,2,2,2],[2,3,3,3],[1,2,0,1]],[[1,1,1,0],[0,2,2,2],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[0,2,2,2],[2,3,3,2],[1,3,0,1]],[[1,1,1,0],[0,2,2,2],[2,3,3,2],[1,2,0,2]],[[1,1,1,0],[0,2,2,2],[2,4,3,2],[1,2,1,0]],[[1,1,1,0],[0,2,2,2],[2,3,4,2],[1,2,1,0]],[[1,1,1,0],[0,2,2,2],[2,3,3,3],[1,2,1,0]],[[1,1,1,0],[0,2,2,2],[2,3,3,2],[2,2,1,0]],[[1,1,1,0],[0,2,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,4,2,2],[0,3,3,1],[1,0,1,1]],[[1,3,1,0],[2,3,2,2],[0,3,3,1],[1,0,1,1]],[[2,2,1,0],[2,3,2,2],[0,3,3,1],[1,0,1,1]],[[1,1,1,0],[0,2,3,0],[2,2,4,2],[1,2,2,1]],[[1,1,1,0],[0,2,3,0],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[0,2,3,0],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[0,2,3,0],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[0,2,3,0],[2,2,3,2],[1,2,2,2]],[[1,1,1,0],[0,2,3,0],[2,4,2,2],[1,2,2,1]],[[1,1,1,0],[0,2,3,0],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[0,2,3,0],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[0,2,3,0],[2,3,2,2],[1,2,3,1]],[[1,1,1,0],[0,2,3,0],[2,3,2,2],[1,2,2,2]],[[1,1,1,0],[0,2,3,0],[2,4,3,2],[1,1,2,1]],[[1,1,1,0],[0,2,3,0],[2,3,4,2],[1,1,2,1]],[[1,1,1,0],[0,2,3,0],[2,3,3,2],[1,1,3,1]],[[1,1,1,0],[0,2,3,0],[2,3,3,2],[1,1,2,2]],[[1,1,1,0],[0,2,3,0],[2,4,3,2],[1,2,1,1]],[[1,1,1,0],[0,2,3,0],[2,3,4,2],[1,2,1,1]],[[1,1,1,0],[0,2,3,0],[2,3,3,2],[2,2,1,1]],[[1,1,1,0],[0,2,3,0],[2,3,3,2],[1,3,1,1]],[[1,1,1,0],[0,2,3,1],[2,2,2,3],[1,2,2,1]],[[1,1,1,0],[0,2,3,1],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[0,2,3,1],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[0,2,3,1],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[0,2,3,1],[2,2,2,2],[1,2,2,2]],[[1,1,1,0],[0,2,3,1],[2,2,4,1],[1,2,2,1]],[[1,1,1,0],[0,2,3,1],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[0,2,3,1],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[0,2,3,1],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[0,2,3,1],[2,2,3,1],[1,2,2,2]],[[1,1,1,0],[0,2,3,1],[2,2,4,2],[1,2,1,1]],[[1,1,1,0],[0,2,3,1],[2,2,3,3],[1,2,1,1]],[[1,1,1,0],[0,2,3,1],[2,2,3,2],[1,2,1,2]],[[1,1,1,0],[0,2,3,1],[2,2,4,2],[1,2,2,0]],[[1,1,1,0],[0,2,3,1],[2,2,3,3],[1,2,2,0]],[[1,1,1,0],[0,2,3,1],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[0,2,3,1],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[0,2,3,1],[2,2,3,2],[1,2,3,0]],[[1,1,1,0],[0,2,3,1],[2,4,1,2],[1,2,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,1,3],[1,2,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,1,2],[2,2,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,1,2],[1,3,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,1,2],[1,2,3,1]],[[1,1,1,0],[0,2,3,1],[2,3,1,2],[1,2,2,2]],[[1,1,1,0],[0,2,3,1],[2,4,2,1],[1,2,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,2,1],[2,2,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,2,1],[1,3,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,2,1],[1,2,3,1]],[[1,1,1,0],[0,2,3,1],[2,3,2,1],[1,2,2,2]],[[1,1,1,0],[0,2,3,1],[2,3,2,3],[1,1,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,2,2],[1,1,3,1]],[[1,1,1,0],[0,2,3,1],[2,3,2,2],[1,1,2,2]],[[1,1,1,0],[0,2,3,1],[2,4,2,2],[1,2,2,0]],[[1,1,1,0],[0,2,3,1],[2,3,2,2],[2,2,2,0]],[[1,1,1,0],[0,2,3,1],[2,3,2,2],[1,3,2,0]],[[1,1,1,0],[0,2,3,1],[2,3,2,2],[1,2,3,0]],[[1,1,1,0],[0,2,3,1],[2,4,3,0],[1,2,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,0],[2,2,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,0],[1,3,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,0],[1,2,3,1]],[[1,1,1,0],[0,2,3,1],[2,4,3,1],[1,1,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,4,1],[1,1,2,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,1],[1,1,3,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,1],[1,1,2,2]],[[1,1,1,0],[0,2,3,1],[2,4,3,1],[1,2,1,1]],[[1,1,1,0],[0,2,3,1],[2,3,4,1],[1,2,1,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,1],[2,2,1,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,1],[1,3,1,1]],[[1,1,1,0],[0,2,3,1],[2,4,3,2],[1,1,1,1]],[[1,1,1,0],[0,2,3,1],[2,3,4,2],[1,1,1,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,3],[1,1,1,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,2],[1,1,1,2]],[[1,1,1,0],[0,2,3,1],[2,4,3,2],[1,1,2,0]],[[1,1,1,0],[0,2,3,1],[2,3,4,2],[1,1,2,0]],[[1,1,1,0],[0,2,3,1],[2,3,3,3],[1,1,2,0]],[[1,1,1,0],[0,2,3,1],[2,3,3,2],[1,1,3,0]],[[1,1,1,0],[0,2,3,1],[2,4,3,2],[1,2,0,1]],[[1,1,1,0],[0,2,3,1],[2,3,4,2],[1,2,0,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,3],[1,2,0,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,2],[1,3,0,1]],[[1,1,1,0],[0,2,3,1],[2,3,3,2],[1,2,0,2]],[[1,1,1,0],[0,2,3,1],[2,4,3,2],[1,2,1,0]],[[1,1,1,0],[0,2,3,1],[2,3,4,2],[1,2,1,0]],[[1,1,1,0],[0,2,3,1],[2,3,3,3],[1,2,1,0]],[[1,1,1,0],[0,2,3,1],[2,3,3,2],[2,2,1,0]],[[1,1,1,0],[0,2,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,4,2,2],[0,3,3,1],[0,2,1,0]],[[1,3,1,0],[2,3,2,2],[0,3,3,1],[0,2,1,0]],[[2,2,1,0],[2,3,2,2],[0,3,3,1],[0,2,1,0]],[[1,2,1,0],[2,4,2,2],[0,3,3,1],[0,2,0,1]],[[1,3,1,0],[2,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,1,1,0],[0,2,3,2],[2,2,4,0],[1,2,2,1]],[[1,1,1,0],[0,2,3,2],[2,2,3,0],[2,2,2,1]],[[1,1,1,0],[0,2,3,2],[2,2,3,0],[1,3,2,1]],[[1,1,1,0],[0,2,3,2],[2,2,3,0],[1,2,3,1]],[[1,1,1,0],[0,2,3,2],[2,2,3,0],[1,2,2,2]],[[1,1,1,0],[0,2,3,2],[2,2,4,1],[1,2,2,0]],[[1,1,1,0],[0,2,3,2],[2,2,3,1],[2,2,2,0]],[[1,1,1,0],[0,2,3,2],[2,2,3,1],[1,3,2,0]],[[1,1,1,0],[0,2,3,2],[2,2,3,1],[1,2,3,0]],[[2,2,1,0],[2,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,1,1,0],[0,2,3,2],[2,4,0,2],[1,2,2,1]],[[1,1,1,0],[0,2,3,2],[2,3,0,3],[1,2,2,1]],[[1,1,1,0],[0,2,3,2],[2,3,0,2],[2,2,2,1]],[[1,1,1,0],[0,2,3,2],[2,3,0,2],[1,3,2,1]],[[1,1,1,0],[0,2,3,2],[2,3,0,2],[1,2,3,1]],[[1,1,1,0],[0,2,3,2],[2,3,0,2],[1,2,2,2]],[[1,1,1,0],[0,2,3,2],[2,4,2,0],[1,2,2,1]],[[1,1,1,0],[0,2,3,2],[2,3,2,0],[2,2,2,1]],[[1,1,1,0],[0,2,3,2],[2,3,2,0],[1,3,2,1]],[[1,1,1,0],[0,2,3,2],[2,3,2,0],[1,2,3,1]],[[1,1,1,0],[0,2,3,2],[2,3,2,0],[1,2,2,2]],[[1,1,1,0],[0,2,3,2],[2,4,2,1],[1,2,2,0]],[[1,1,1,0],[0,2,3,2],[2,3,2,1],[2,2,2,0]],[[1,1,1,0],[0,2,3,2],[2,3,2,1],[1,3,2,0]],[[1,1,1,0],[0,2,3,2],[2,3,2,1],[1,2,3,0]],[[1,2,1,0],[2,4,2,2],[0,3,3,1],[0,1,2,0]],[[1,3,1,0],[2,3,2,2],[0,3,3,1],[0,1,2,0]],[[2,2,1,0],[2,3,2,2],[0,3,3,1],[0,1,2,0]],[[1,2,1,0],[2,4,2,2],[0,3,3,1],[0,1,1,1]],[[1,3,1,0],[2,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,1,1,0],[0,2,3,2],[2,4,3,0],[1,1,2,1]],[[1,1,1,0],[0,2,3,2],[2,3,4,0],[1,1,2,1]],[[1,1,1,0],[0,2,3,2],[2,3,3,0],[1,1,3,1]],[[1,1,1,0],[0,2,3,2],[2,3,3,0],[1,1,2,2]],[[1,1,1,0],[0,2,3,2],[2,4,3,0],[1,2,1,1]],[[1,1,1,0],[0,2,3,2],[2,3,4,0],[1,2,1,1]],[[1,1,1,0],[0,2,3,2],[2,3,3,0],[2,2,1,1]],[[1,1,1,0],[0,2,3,2],[2,3,3,0],[1,3,1,1]],[[1,1,1,0],[0,2,3,2],[2,4,3,1],[1,1,2,0]],[[1,1,1,0],[0,2,3,2],[2,3,4,1],[1,1,2,0]],[[1,1,1,0],[0,2,3,2],[2,3,3,1],[1,1,3,0]],[[1,1,1,0],[0,2,3,2],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[0,2,3,2],[2,3,4,1],[1,2,0,1]],[[1,1,1,0],[0,2,3,2],[2,3,3,1],[2,2,0,1]],[[1,1,1,0],[0,2,3,2],[2,3,3,1],[1,3,0,1]],[[1,1,1,0],[0,2,3,2],[2,4,3,1],[1,2,1,0]],[[1,1,1,0],[0,2,3,2],[2,3,4,1],[1,2,1,0]],[[1,1,1,0],[0,2,3,2],[2,3,3,1],[2,2,1,0]],[[1,1,1,0],[0,2,3,2],[2,3,3,1],[1,3,1,0]],[[2,2,1,0],[2,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,2,1,0],[2,4,2,2],[0,3,3,0],[1,1,1,1]],[[1,3,1,0],[2,3,2,2],[0,3,3,0],[1,1,1,1]],[[2,2,1,0],[2,3,2,2],[0,3,3,0],[1,1,1,1]],[[1,2,1,0],[2,4,2,2],[0,3,3,0],[1,0,2,1]],[[1,3,1,0],[2,3,2,2],[0,3,3,0],[1,0,2,1]],[[2,2,1,0],[2,3,2,2],[0,3,3,0],[1,0,2,1]],[[1,2,1,0],[2,4,2,2],[0,3,3,0],[0,2,1,1]],[[1,3,1,0],[2,3,2,2],[0,3,3,0],[0,2,1,1]],[[2,2,1,0],[2,3,2,2],[0,3,3,0],[0,2,1,1]],[[1,2,1,0],[2,4,2,2],[0,3,3,0],[0,1,2,1]],[[1,1,1,0],[0,3,0,1],[2,4,3,2],[1,2,2,1]],[[1,1,1,0],[0,3,0,1],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[0,3,0,1],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[0,3,0,1],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[0,3,0,1],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[0,3,0,2],[2,2,3,3],[1,2,2,1]],[[1,1,1,0],[0,3,0,2],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[0,3,0,2],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[0,3,0,2],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[0,3,0,2],[2,2,3,2],[1,2,2,2]],[[1,1,1,0],[0,3,0,2],[2,4,2,2],[1,2,2,1]],[[1,1,1,0],[0,3,0,2],[2,3,2,3],[1,2,2,1]],[[1,1,1,0],[0,3,0,2],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[0,3,0,2],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[0,3,0,2],[2,3,2,2],[1,2,3,1]],[[1,1,1,0],[0,3,0,2],[2,3,2,2],[1,2,2,2]],[[1,1,1,0],[0,3,0,2],[2,4,3,1],[1,2,2,1]],[[1,1,1,0],[0,3,0,2],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[0,3,0,2],[2,3,3,1],[1,3,2,1]],[[1,1,1,0],[0,3,0,2],[2,3,3,1],[1,2,3,1]],[[1,1,1,0],[0,3,0,2],[2,3,3,1],[1,2,2,2]],[[1,1,1,0],[0,3,0,2],[2,3,3,3],[1,1,2,1]],[[1,1,1,0],[0,3,0,2],[2,3,3,2],[1,1,3,1]],[[1,1,1,0],[0,3,0,2],[2,3,3,2],[1,1,2,2]],[[1,1,1,0],[0,3,0,2],[2,4,3,2],[1,2,2,0]],[[1,1,1,0],[0,3,0,2],[2,3,3,2],[2,2,2,0]],[[1,1,1,0],[0,3,0,2],[2,3,3,2],[1,3,2,0]],[[1,1,1,0],[0,3,0,2],[2,3,3,2],[1,2,3,0]],[[1,1,1,0],[0,3,1,0],[2,4,3,2],[1,2,2,1]],[[1,1,1,0],[0,3,1,0],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[0,3,1,0],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[0,3,1,0],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[0,3,1,0],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[0,3,1,1],[2,4,3,1],[1,2,2,1]],[[1,1,1,0],[0,3,1,1],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[0,3,1,1],[2,3,3,1],[1,3,2,1]],[[1,1,1,0],[0,3,1,1],[2,3,3,1],[1,2,3,1]],[[1,1,1,0],[0,3,1,1],[2,3,3,1],[1,2,2,2]],[[1,1,1,0],[0,3,1,1],[2,4,3,2],[1,2,2,0]],[[1,1,1,0],[0,3,1,1],[2,3,3,2],[2,2,2,0]],[[1,1,1,0],[0,3,1,1],[2,3,3,2],[1,3,2,0]],[[1,1,1,0],[0,3,1,1],[2,3,3,2],[1,2,3,0]],[[1,1,1,0],[0,3,1,2],[2,2,2,3],[1,2,2,1]],[[1,1,1,0],[0,3,1,2],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[0,3,1,2],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[0,3,1,2],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[0,3,1,2],[2,2,2,2],[1,2,2,2]],[[1,1,1,0],[0,3,1,2],[2,2,4,1],[1,2,2,1]],[[1,1,1,0],[0,3,1,2],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[0,3,1,2],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[0,3,1,2],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[0,3,1,2],[2,2,3,1],[1,2,2,2]],[[1,1,1,0],[0,3,1,2],[2,2,4,2],[1,2,1,1]],[[1,1,1,0],[0,3,1,2],[2,2,3,3],[1,2,1,1]],[[1,1,1,0],[0,3,1,2],[2,2,3,2],[1,2,1,2]],[[1,1,1,0],[0,3,1,2],[2,2,4,2],[1,2,2,0]],[[1,1,1,0],[0,3,1,2],[2,2,3,3],[1,2,2,0]],[[1,1,1,0],[0,3,1,2],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[0,3,1,2],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[0,3,1,2],[2,2,3,2],[1,2,3,0]],[[1,1,1,0],[0,3,1,2],[2,4,1,2],[1,2,2,1]],[[1,1,1,0],[0,3,1,2],[2,3,1,3],[1,2,2,1]],[[1,1,1,0],[0,3,1,2],[2,3,1,2],[2,2,2,1]],[[1,1,1,0],[0,3,1,2],[2,3,1,2],[1,3,2,1]],[[1,1,1,0],[0,3,1,2],[2,3,1,2],[1,2,3,1]],[[1,1,1,0],[0,3,1,2],[2,3,1,2],[1,2,2,2]],[[1,1,1,0],[0,3,1,2],[2,4,2,1],[1,2,2,1]],[[1,1,1,0],[0,3,1,2],[2,3,2,1],[2,2,2,1]],[[1,1,1,0],[0,3,1,2],[2,3,2,1],[1,3,2,1]],[[1,1,1,0],[0,3,1,2],[2,3,2,1],[1,2,3,1]],[[1,1,1,0],[0,3,1,2],[2,3,2,1],[1,2,2,2]],[[1,1,1,0],[0,3,1,2],[2,3,2,3],[1,1,2,1]],[[1,1,1,0],[0,3,1,2],[2,3,2,2],[1,1,3,1]],[[1,1,1,0],[0,3,1,2],[2,3,2,2],[1,1,2,2]],[[1,1,1,0],[0,3,1,2],[2,4,2,2],[1,2,2,0]],[[1,1,1,0],[0,3,1,2],[2,3,2,2],[2,2,2,0]],[[1,1,1,0],[0,3,1,2],[2,3,2,2],[1,3,2,0]],[[1,1,1,0],[0,3,1,2],[2,3,2,2],[1,2,3,0]],[[1,1,1,0],[0,3,1,2],[2,4,3,1],[1,1,2,1]],[[1,1,1,0],[0,3,1,2],[2,3,4,1],[1,1,2,1]],[[1,1,1,0],[0,3,1,2],[2,3,3,1],[1,1,3,1]],[[1,1,1,0],[0,3,1,2],[2,3,3,1],[1,1,2,2]],[[1,1,1,0],[0,3,1,2],[2,4,3,1],[1,2,1,1]],[[1,1,1,0],[0,3,1,2],[2,3,4,1],[1,2,1,1]],[[1,1,1,0],[0,3,1,2],[2,3,3,1],[2,2,1,1]],[[1,1,1,0],[0,3,1,2],[2,3,3,1],[1,3,1,1]],[[1,1,1,0],[0,3,1,2],[2,4,3,2],[1,1,1,1]],[[1,1,1,0],[0,3,1,2],[2,3,4,2],[1,1,1,1]],[[1,1,1,0],[0,3,1,2],[2,3,3,3],[1,1,1,1]],[[1,1,1,0],[0,3,1,2],[2,3,3,2],[1,1,1,2]],[[1,1,1,0],[0,3,1,2],[2,4,3,2],[1,1,2,0]],[[1,1,1,0],[0,3,1,2],[2,3,4,2],[1,1,2,0]],[[1,1,1,0],[0,3,1,2],[2,3,3,3],[1,1,2,0]],[[1,1,1,0],[0,3,1,2],[2,3,3,2],[1,1,3,0]],[[1,1,1,0],[0,3,1,2],[2,4,3,2],[1,2,0,1]],[[1,1,1,0],[0,3,1,2],[2,3,4,2],[1,2,0,1]],[[1,1,1,0],[0,3,1,2],[2,3,3,3],[1,2,0,1]],[[1,1,1,0],[0,3,1,2],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[0,3,1,2],[2,3,3,2],[1,3,0,1]],[[1,1,1,0],[0,3,1,2],[2,3,3,2],[1,2,0,2]],[[1,1,1,0],[0,3,1,2],[2,4,3,2],[1,2,1,0]],[[1,1,1,0],[0,3,1,2],[2,3,4,2],[1,2,1,0]],[[1,1,1,0],[0,3,1,2],[2,3,3,3],[1,2,1,0]],[[1,1,1,0],[0,3,1,2],[2,3,3,2],[2,2,1,0]],[[1,1,1,0],[0,3,1,2],[2,3,3,2],[1,3,1,0]],[[1,3,1,0],[2,3,2,2],[0,3,3,0],[0,1,2,1]],[[2,2,1,0],[2,3,2,2],[0,3,3,0],[0,1,2,1]],[[1,1,1,0],[0,3,2,0],[2,2,4,2],[1,2,2,1]],[[1,1,1,0],[0,3,2,0],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[0,3,2,0],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[0,3,2,0],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[0,3,2,0],[2,2,3,2],[1,2,2,2]],[[1,1,1,0],[0,3,2,0],[2,4,2,2],[1,2,2,1]],[[1,1,1,0],[0,3,2,0],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[0,3,2,0],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[0,3,2,0],[2,3,2,2],[1,2,3,1]],[[1,1,1,0],[0,3,2,0],[2,3,2,2],[1,2,2,2]],[[1,1,1,0],[0,3,2,0],[2,4,3,2],[1,1,2,1]],[[1,1,1,0],[0,3,2,0],[2,3,4,2],[1,1,2,1]],[[1,1,1,0],[0,3,2,0],[2,3,3,2],[1,1,3,1]],[[1,1,1,0],[0,3,2,0],[2,3,3,2],[1,1,2,2]],[[1,1,1,0],[0,3,2,0],[2,4,3,2],[1,2,1,1]],[[1,1,1,0],[0,3,2,0],[2,3,4,2],[1,2,1,1]],[[1,1,1,0],[0,3,2,0],[2,3,3,2],[2,2,1,1]],[[1,1,1,0],[0,3,2,0],[2,3,3,2],[1,3,1,1]],[[1,1,1,0],[0,3,2,1],[2,2,2,3],[1,2,2,1]],[[1,1,1,0],[0,3,2,1],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[0,3,2,1],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[0,3,2,1],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[0,3,2,1],[2,2,2,2],[1,2,2,2]],[[1,1,1,0],[0,3,2,1],[2,2,4,1],[1,2,2,1]],[[1,1,1,0],[0,3,2,1],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[0,3,2,1],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[0,3,2,1],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[0,3,2,1],[2,2,3,1],[1,2,2,2]],[[1,1,1,0],[0,3,2,1],[2,2,4,2],[1,2,1,1]],[[1,1,1,0],[0,3,2,1],[2,2,3,3],[1,2,1,1]],[[1,1,1,0],[0,3,2,1],[2,2,3,2],[1,2,1,2]],[[1,1,1,0],[0,3,2,1],[2,2,4,2],[1,2,2,0]],[[1,1,1,0],[0,3,2,1],[2,2,3,3],[1,2,2,0]],[[1,1,1,0],[0,3,2,1],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[0,3,2,1],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[0,3,2,1],[2,2,3,2],[1,2,3,0]],[[1,1,1,0],[0,3,2,1],[2,4,1,2],[1,2,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,1,3],[1,2,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,1,2],[2,2,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,1,2],[1,3,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,1,2],[1,2,3,1]],[[1,1,1,0],[0,3,2,1],[2,3,1,2],[1,2,2,2]],[[1,1,1,0],[0,3,2,1],[2,4,2,1],[1,2,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,2,1],[2,2,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,2,1],[1,3,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,2,1],[1,2,3,1]],[[1,1,1,0],[0,3,2,1],[2,3,2,1],[1,2,2,2]],[[1,1,1,0],[0,3,2,1],[2,3,2,3],[1,1,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,2,2],[1,1,3,1]],[[1,1,1,0],[0,3,2,1],[2,3,2,2],[1,1,2,2]],[[1,1,1,0],[0,3,2,1],[2,4,2,2],[1,2,2,0]],[[1,1,1,0],[0,3,2,1],[2,3,2,2],[2,2,2,0]],[[1,1,1,0],[0,3,2,1],[2,3,2,2],[1,3,2,0]],[[1,1,1,0],[0,3,2,1],[2,3,2,2],[1,2,3,0]],[[1,1,1,0],[0,3,2,1],[2,4,3,0],[1,2,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,0],[2,2,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,0],[1,3,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,0],[1,2,3,1]],[[1,1,1,0],[0,3,2,1],[2,4,3,1],[1,1,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,4,1],[1,1,2,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,1],[1,1,3,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,1],[1,1,2,2]],[[1,1,1,0],[0,3,2,1],[2,4,3,1],[1,2,1,1]],[[1,1,1,0],[0,3,2,1],[2,3,4,1],[1,2,1,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,1],[2,2,1,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,1],[1,3,1,1]],[[1,1,1,0],[0,3,2,1],[2,4,3,2],[1,1,1,1]],[[1,1,1,0],[0,3,2,1],[2,3,4,2],[1,1,1,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,3],[1,1,1,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,2],[1,1,1,2]],[[1,1,1,0],[0,3,2,1],[2,4,3,2],[1,1,2,0]],[[1,1,1,0],[0,3,2,1],[2,3,4,2],[1,1,2,0]],[[1,1,1,0],[0,3,2,1],[2,3,3,3],[1,1,2,0]],[[1,1,1,0],[0,3,2,1],[2,3,3,2],[1,1,3,0]],[[1,1,1,0],[0,3,2,1],[2,4,3,2],[1,2,0,1]],[[1,1,1,0],[0,3,2,1],[2,3,4,2],[1,2,0,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,3],[1,2,0,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,2],[1,3,0,1]],[[1,1,1,0],[0,3,2,1],[2,3,3,2],[1,2,0,2]],[[1,1,1,0],[0,3,2,1],[2,4,3,2],[1,2,1,0]],[[1,1,1,0],[0,3,2,1],[2,3,4,2],[1,2,1,0]],[[1,1,1,0],[0,3,2,1],[2,3,3,3],[1,2,1,0]],[[1,1,1,0],[0,3,2,1],[2,3,3,2],[2,2,1,0]],[[1,1,1,0],[0,3,2,1],[2,3,3,2],[1,3,1,0]],[[1,1,1,0],[0,3,2,2],[2,2,4,0],[1,2,2,1]],[[1,1,1,0],[0,3,2,2],[2,2,3,0],[2,2,2,1]],[[1,1,1,0],[0,3,2,2],[2,2,3,0],[1,3,2,1]],[[1,1,1,0],[0,3,2,2],[2,2,3,0],[1,2,3,1]],[[1,1,1,0],[0,3,2,2],[2,2,3,0],[1,2,2,2]],[[1,1,1,0],[0,3,2,2],[2,2,4,1],[1,2,2,0]],[[1,1,1,0],[0,3,2,2],[2,2,3,1],[2,2,2,0]],[[1,1,1,0],[0,3,2,2],[2,2,3,1],[1,3,2,0]],[[1,1,1,0],[0,3,2,2],[2,2,3,1],[1,2,3,0]],[[1,1,1,0],[0,3,2,2],[2,4,0,2],[1,2,2,1]],[[1,1,1,0],[0,3,2,2],[2,3,0,3],[1,2,2,1]],[[1,1,1,0],[0,3,2,2],[2,3,0,2],[2,2,2,1]],[[1,1,1,0],[0,3,2,2],[2,3,0,2],[1,3,2,1]],[[1,1,1,0],[0,3,2,2],[2,3,0,2],[1,2,3,1]],[[1,1,1,0],[0,3,2,2],[2,3,0,2],[1,2,2,2]],[[1,1,1,0],[0,3,2,2],[2,4,2,0],[1,2,2,1]],[[1,1,1,0],[0,3,2,2],[2,3,2,0],[2,2,2,1]],[[1,1,1,0],[0,3,2,2],[2,3,2,0],[1,3,2,1]],[[1,1,1,0],[0,3,2,2],[2,3,2,0],[1,2,3,1]],[[1,1,1,0],[0,3,2,2],[2,3,2,0],[1,2,2,2]],[[1,1,1,0],[0,3,2,2],[2,4,2,1],[1,2,2,0]],[[1,1,1,0],[0,3,2,2],[2,3,2,1],[2,2,2,0]],[[1,1,1,0],[0,3,2,2],[2,3,2,1],[1,3,2,0]],[[1,1,1,0],[0,3,2,2],[2,3,2,1],[1,2,3,0]],[[1,2,1,0],[2,4,2,2],[0,3,2,1],[0,2,2,0]],[[1,3,1,0],[2,3,2,2],[0,3,2,1],[0,2,2,0]],[[2,2,1,0],[2,3,2,2],[0,3,2,1],[0,2,2,0]],[[1,1,1,0],[0,3,2,2],[2,4,3,0],[1,1,2,1]],[[1,1,1,0],[0,3,2,2],[2,3,4,0],[1,1,2,1]],[[1,1,1,0],[0,3,2,2],[2,3,3,0],[1,1,3,1]],[[1,1,1,0],[0,3,2,2],[2,3,3,0],[1,1,2,2]],[[1,1,1,0],[0,3,2,2],[2,4,3,0],[1,2,1,1]],[[1,1,1,0],[0,3,2,2],[2,3,4,0],[1,2,1,1]],[[1,1,1,0],[0,3,2,2],[2,3,3,0],[2,2,1,1]],[[1,1,1,0],[0,3,2,2],[2,3,3,0],[1,3,1,1]],[[1,1,1,0],[0,3,2,2],[2,4,3,1],[1,1,2,0]],[[1,1,1,0],[0,3,2,2],[2,3,4,1],[1,1,2,0]],[[1,1,1,0],[0,3,2,2],[2,3,3,1],[1,1,3,0]],[[1,1,1,0],[0,3,2,2],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[0,3,2,2],[2,3,4,1],[1,2,0,1]],[[1,1,1,0],[0,3,2,2],[2,3,3,1],[2,2,0,1]],[[1,1,1,0],[0,3,2,2],[2,3,3,1],[1,3,0,1]],[[1,1,1,0],[0,3,2,2],[2,4,3,1],[1,2,1,0]],[[1,1,1,0],[0,3,2,2],[2,3,4,1],[1,2,1,0]],[[1,1,1,0],[0,3,2,2],[2,3,3,1],[2,2,1,0]],[[1,1,1,0],[0,3,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,4,2,2],[0,3,2,0],[0,2,2,1]],[[1,3,1,0],[2,3,2,2],[0,3,2,0],[0,2,2,1]],[[2,2,1,0],[2,3,2,2],[0,3,2,0],[0,2,2,1]],[[1,2,1,0],[2,4,2,2],[0,3,0,2],[0,2,2,1]],[[1,3,1,0],[2,3,2,2],[0,3,0,2],[0,2,2,1]],[[2,2,1,0],[2,3,2,2],[0,3,0,2],[0,2,2,1]],[[1,1,1,0],[0,3,3,0],[2,2,4,1],[1,2,2,1]],[[1,1,1,0],[0,3,3,0],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[0,3,3,0],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[0,3,3,0],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[0,3,3,0],[2,2,3,1],[1,2,2,2]],[[1,1,1,0],[0,3,3,0],[2,2,4,2],[1,2,2,0]],[[1,1,1,0],[0,3,3,0],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[0,3,3,0],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[0,3,3,0],[2,2,3,2],[1,2,3,0]],[[1,1,1,0],[0,3,3,0],[2,4,2,1],[1,2,2,1]],[[1,1,1,0],[0,3,3,0],[2,3,2,1],[2,2,2,1]],[[1,1,1,0],[0,3,3,0],[2,3,2,1],[1,3,2,1]],[[1,1,1,0],[0,3,3,0],[2,3,2,1],[1,2,3,1]],[[1,1,1,0],[0,3,3,0],[2,3,2,1],[1,2,2,2]],[[1,1,1,0],[0,3,3,0],[2,4,2,2],[1,2,2,0]],[[1,1,1,0],[0,3,3,0],[2,3,2,2],[2,2,2,0]],[[1,1,1,0],[0,3,3,0],[2,3,2,2],[1,3,2,0]],[[1,1,1,0],[0,3,3,0],[2,3,2,2],[1,2,3,0]],[[1,1,1,0],[0,3,3,0],[2,4,3,0],[1,2,2,1]],[[1,1,1,0],[0,3,3,0],[2,3,3,0],[2,2,2,1]],[[1,1,1,0],[0,3,3,0],[2,3,3,0],[1,3,2,1]],[[1,1,1,0],[0,3,3,0],[2,3,3,0],[1,2,3,1]],[[1,1,1,0],[0,3,3,0],[2,4,3,1],[1,1,2,1]],[[1,1,1,0],[0,3,3,0],[2,3,4,1],[1,1,2,1]],[[1,1,1,0],[0,3,3,0],[2,3,3,1],[1,1,3,1]],[[1,1,1,0],[0,3,3,0],[2,3,3,1],[1,1,2,2]],[[1,1,1,0],[0,3,3,0],[2,4,3,1],[1,2,1,1]],[[1,1,1,0],[0,3,3,0],[2,3,4,1],[1,2,1,1]],[[1,1,1,0],[0,3,3,0],[2,3,3,1],[2,2,1,1]],[[1,1,1,0],[0,3,3,0],[2,3,3,1],[1,3,1,1]],[[1,1,1,0],[0,3,3,0],[2,4,3,2],[1,1,2,0]],[[1,1,1,0],[0,3,3,0],[2,3,4,2],[1,1,2,0]],[[1,1,1,0],[0,3,3,0],[2,3,3,2],[1,1,3,0]],[[1,1,1,0],[0,3,3,0],[2,4,3,2],[1,2,0,1]],[[1,1,1,0],[0,3,3,0],[2,3,4,2],[1,2,0,1]],[[1,1,1,0],[0,3,3,0],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[0,3,3,0],[2,3,3,2],[1,3,0,1]],[[1,1,1,0],[0,3,3,0],[2,4,3,2],[1,2,1,0]],[[1,1,1,0],[0,3,3,0],[2,3,4,2],[1,2,1,0]],[[1,1,1,0],[0,3,3,0],[2,3,3,2],[2,2,1,0]],[[1,1,1,0],[0,3,3,0],[2,3,3,2],[1,3,1,0]],[[1,1,1,0],[0,3,3,1],[2,4,0,2],[1,2,2,1]],[[1,1,1,0],[0,3,3,1],[2,3,0,3],[1,2,2,1]],[[1,1,1,0],[0,3,3,1],[2,3,0,2],[2,2,2,1]],[[1,1,1,0],[0,3,3,1],[2,3,0,2],[1,3,2,1]],[[1,1,1,0],[0,3,3,1],[2,3,0,2],[1,2,3,1]],[[1,1,1,0],[0,3,3,1],[2,3,0,2],[1,2,2,2]],[[1,1,1,0],[0,3,3,1],[2,4,1,1],[1,2,2,1]],[[1,1,1,0],[0,3,3,1],[2,3,1,1],[2,2,2,1]],[[1,1,1,0],[0,3,3,1],[2,3,1,1],[1,3,2,1]],[[1,1,1,0],[0,3,3,1],[2,3,1,1],[1,2,3,1]],[[1,1,1,0],[0,3,3,1],[2,3,1,1],[1,2,2,2]],[[1,1,1,0],[0,3,3,1],[2,4,1,2],[1,2,2,0]],[[1,1,1,0],[0,3,3,1],[2,3,1,2],[2,2,2,0]],[[1,1,1,0],[0,3,3,1],[2,3,1,2],[1,3,2,0]],[[1,1,1,0],[0,3,3,1],[2,3,1,2],[1,2,3,0]],[[1,1,1,0],[0,3,3,1],[2,4,2,1],[1,2,1,1]],[[1,1,1,0],[0,3,3,1],[2,3,2,1],[2,2,1,1]],[[1,1,1,0],[0,3,3,1],[2,3,2,1],[1,3,1,1]],[[1,1,1,0],[0,3,3,1],[2,4,2,2],[1,2,0,1]],[[1,1,1,0],[0,3,3,1],[2,3,2,2],[2,2,0,1]],[[1,1,1,0],[0,3,3,1],[2,3,2,2],[1,3,0,1]],[[1,1,1,0],[0,3,3,1],[2,4,2,2],[1,2,1,0]],[[1,1,1,0],[0,3,3,1],[2,3,2,2],[2,2,1,0]],[[1,1,1,0],[0,3,3,1],[2,3,2,2],[1,3,1,0]],[[1,2,1,0],[2,3,2,2],[0,2,3,3],[1,0,2,0]],[[1,2,1,0],[2,3,2,2],[0,2,4,2],[1,0,2,0]],[[1,2,1,0],[2,3,2,3],[0,2,3,2],[1,0,2,0]],[[1,2,1,0],[2,3,2,2],[0,2,3,2],[1,0,1,2]],[[1,2,1,0],[2,3,2,2],[0,2,3,3],[1,0,1,1]],[[1,2,1,0],[2,3,2,2],[0,2,4,2],[1,0,1,1]],[[1,2,1,0],[2,3,2,3],[0,2,3,2],[1,0,1,1]],[[1,2,1,0],[2,3,2,2],[0,2,3,3],[0,2,1,0]],[[1,2,1,0],[2,3,2,2],[0,2,4,2],[0,2,1,0]],[[1,2,1,0],[2,3,2,3],[0,2,3,2],[0,2,1,0]],[[1,2,1,0],[2,3,2,2],[0,2,3,2],[0,2,0,2]],[[1,2,1,0],[2,3,2,2],[0,2,3,3],[0,2,0,1]],[[1,2,1,0],[2,3,2,2],[0,2,4,2],[0,2,0,1]],[[1,2,1,0],[2,3,2,3],[0,2,3,2],[0,2,0,1]],[[1,2,1,0],[2,3,2,2],[0,2,3,2],[0,1,3,0]],[[1,2,1,0],[2,3,2,2],[0,2,3,3],[0,1,2,0]],[[1,2,1,0],[2,3,2,2],[0,2,4,2],[0,1,2,0]],[[1,2,1,0],[2,3,2,3],[0,2,3,2],[0,1,2,0]],[[1,2,1,0],[2,3,2,2],[0,2,3,2],[0,1,1,2]],[[1,2,1,0],[2,3,2,2],[0,2,3,3],[0,1,1,1]],[[1,2,1,0],[2,3,2,2],[0,2,4,2],[0,1,1,1]],[[1,2,1,0],[2,3,2,3],[0,2,3,2],[0,1,1,1]],[[1,2,1,0],[2,3,2,2],[0,2,3,2],[0,0,2,2]],[[1,2,1,0],[2,3,2,2],[0,2,3,3],[0,0,2,1]],[[1,2,1,0],[2,3,2,2],[0,2,4,2],[0,0,2,1]],[[1,2,1,0],[2,3,2,3],[0,2,3,2],[0,0,2,1]],[[1,2,1,0],[2,3,2,2],[0,2,3,1],[0,1,2,2]],[[1,2,1,0],[2,3,2,2],[0,2,3,1],[0,1,3,1]],[[1,2,1,0],[2,3,2,2],[0,2,4,1],[0,1,2,1]],[[1,1,1,0],[0,3,3,2],[2,4,0,1],[1,2,2,1]],[[1,1,1,0],[0,3,3,2],[2,3,0,1],[2,2,2,1]],[[1,1,1,0],[0,3,3,2],[2,3,0,1],[1,3,2,1]],[[1,1,1,0],[0,3,3,2],[2,3,0,1],[1,2,3,1]],[[1,1,1,0],[0,3,3,2],[2,3,0,1],[1,2,2,2]],[[1,1,1,0],[0,3,3,2],[2,4,0,2],[1,2,1,1]],[[1,1,1,0],[0,3,3,2],[2,3,0,2],[2,2,1,1]],[[1,1,1,0],[0,3,3,2],[2,3,0,2],[1,3,1,1]],[[1,1,1,0],[0,3,3,2],[2,4,0,2],[1,2,2,0]],[[1,1,1,0],[0,3,3,2],[2,3,0,2],[2,2,2,0]],[[1,1,1,0],[0,3,3,2],[2,3,0,2],[1,3,2,0]],[[1,1,1,0],[0,3,3,2],[2,3,0,2],[1,2,3,0]],[[1,1,1,0],[0,3,3,2],[2,4,1,0],[1,2,2,1]],[[1,1,1,0],[0,3,3,2],[2,3,1,0],[2,2,2,1]],[[1,1,1,0],[0,3,3,2],[2,3,1,0],[1,3,2,1]],[[1,1,1,0],[0,3,3,2],[2,3,1,0],[1,2,3,1]],[[1,1,1,0],[0,3,3,2],[2,3,1,0],[1,2,2,2]],[[1,1,1,0],[0,3,3,2],[2,4,1,1],[1,2,2,0]],[[1,1,1,0],[0,3,3,2],[2,3,1,1],[2,2,2,0]],[[1,1,1,0],[0,3,3,2],[2,3,1,1],[1,3,2,0]],[[1,1,1,0],[0,3,3,2],[2,3,1,1],[1,2,3,0]],[[1,1,1,0],[0,3,3,2],[2,4,1,2],[1,2,0,1]],[[1,1,1,0],[0,3,3,2],[2,3,1,2],[2,2,0,1]],[[1,1,1,0],[0,3,3,2],[2,3,1,2],[1,3,0,1]],[[1,1,1,0],[0,3,3,2],[2,4,1,2],[1,2,1,0]],[[1,1,1,0],[0,3,3,2],[2,3,1,2],[2,2,1,0]],[[1,1,1,0],[0,3,3,2],[2,3,1,2],[1,3,1,0]],[[1,1,1,0],[0,3,3,2],[2,4,2,0],[1,2,1,1]],[[1,1,1,0],[0,3,3,2],[2,3,2,0],[2,2,1,1]],[[1,1,1,0],[0,3,3,2],[2,3,2,0],[1,3,1,1]],[[1,1,1,0],[0,3,3,2],[2,4,2,1],[1,2,0,1]],[[1,1,1,0],[0,3,3,2],[2,3,2,1],[2,2,0,1]],[[1,1,1,0],[0,3,3,2],[2,3,2,1],[1,3,0,1]],[[1,1,1,0],[0,3,3,2],[2,4,2,1],[1,2,1,0]],[[1,1,1,0],[0,3,3,2],[2,3,2,1],[2,2,1,0]],[[1,1,1,0],[0,3,3,2],[2,3,2,1],[1,3,1,0]],[[1,2,1,0],[2,3,2,2],[0,2,2,2],[0,1,2,2]],[[1,2,1,0],[2,3,2,2],[0,2,2,2],[0,1,3,1]],[[1,2,1,0],[2,3,2,2],[0,2,2,3],[0,1,2,1]],[[1,2,1,0],[2,3,2,3],[0,2,2,2],[0,1,2,1]],[[1,1,1,0],[0,3,3,2],[2,4,3,0],[1,2,1,0]],[[1,1,1,0],[0,3,3,2],[2,3,3,0],[2,2,1,0]],[[1,1,1,0],[0,3,3,2],[2,3,3,0],[1,3,1,0]],[[1,2,1,0],[2,3,2,2],[0,1,3,2],[0,2,3,0]],[[1,2,1,0],[2,3,2,2],[0,1,3,3],[0,2,2,0]],[[1,2,1,0],[2,3,2,2],[0,1,4,2],[0,2,2,0]],[[1,2,1,0],[2,3,2,3],[0,1,3,2],[0,2,2,0]],[[1,2,1,0],[2,3,2,2],[0,1,3,2],[0,2,1,2]],[[1,2,1,0],[2,3,2,2],[0,1,3,3],[0,2,1,1]],[[1,2,1,0],[2,3,2,2],[0,1,4,2],[0,2,1,1]],[[1,2,1,0],[2,3,2,3],[0,1,3,2],[0,2,1,1]],[[1,2,1,0],[2,3,2,2],[0,1,3,1],[0,2,2,2]],[[1,2,1,0],[2,3,2,2],[0,1,3,1],[0,2,3,1]],[[1,2,1,0],[2,3,2,2],[0,1,4,1],[0,2,2,1]],[[1,2,1,0],[2,3,2,2],[0,1,2,2],[0,2,2,2]],[[1,2,1,0],[2,3,2,2],[0,1,2,2],[0,2,3,1]],[[1,2,1,0],[2,3,2,2],[0,1,2,3],[0,2,2,1]],[[1,2,1,0],[2,3,2,3],[0,1,2,2],[0,2,2,1]],[[1,2,1,0],[2,3,2,2],[0,0,3,2],[0,2,2,2]],[[1,2,1,0],[2,3,2,2],[0,0,3,2],[0,2,3,1]],[[1,2,1,0],[2,3,2,2],[0,0,3,3],[0,2,2,1]],[[1,2,1,0],[2,3,2,3],[0,0,3,2],[0,2,2,1]],[[1,1,1,0],[1,0,1,2],[2,3,3,3],[1,2,2,1]],[[1,1,1,0],[1,0,1,2],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[1,0,1,2],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,0,1,2],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,0,1,2],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,0,2,2],[2,3,2,3],[1,2,2,1]],[[1,1,1,0],[1,0,2,2],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[1,0,2,2],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[1,0,2,2],[2,3,2,2],[1,2,3,1]],[[1,1,1,0],[1,0,2,2],[2,3,2,2],[1,2,2,2]],[[1,1,1,0],[1,0,2,2],[2,3,4,1],[1,2,2,1]],[[1,1,1,0],[1,0,2,2],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[1,0,2,2],[2,3,3,1],[1,3,2,1]],[[1,1,1,0],[1,0,2,2],[2,3,3,1],[1,2,3,1]],[[1,1,1,0],[1,0,2,2],[2,3,3,1],[1,2,2,2]],[[1,1,1,0],[1,0,2,2],[2,3,4,2],[1,2,1,1]],[[1,1,1,0],[1,0,2,2],[2,3,3,3],[1,2,1,1]],[[1,1,1,0],[1,0,2,2],[2,3,3,2],[1,2,1,2]],[[1,1,1,0],[1,0,2,2],[2,3,4,2],[1,2,2,0]],[[1,1,1,0],[1,0,2,2],[2,3,3,3],[1,2,2,0]],[[1,1,1,0],[1,0,2,2],[2,3,3,2],[2,2,2,0]],[[1,1,1,0],[1,0,2,2],[2,3,3,2],[1,3,2,0]],[[1,1,1,0],[1,0,2,2],[2,3,3,2],[1,2,3,0]],[[1,1,1,0],[1,0,3,0],[2,3,4,2],[1,2,2,1]],[[1,1,1,0],[1,0,3,0],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[1,0,3,0],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,0,3,0],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,0,3,0],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,0,3,1],[2,3,2,3],[1,2,2,1]],[[1,1,1,0],[1,0,3,1],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[1,0,3,1],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[1,0,3,1],[2,3,2,2],[1,2,3,1]],[[1,1,1,0],[1,0,3,1],[2,3,2,2],[1,2,2,2]],[[1,1,1,0],[1,0,3,1],[2,3,4,1],[1,2,2,1]],[[1,1,1,0],[1,0,3,1],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[1,0,3,1],[2,3,3,1],[1,3,2,1]],[[1,1,1,0],[1,0,3,1],[2,3,3,1],[1,2,3,1]],[[1,1,1,0],[1,0,3,1],[2,3,3,1],[1,2,2,2]],[[1,1,1,0],[1,0,3,1],[2,3,4,2],[1,2,1,1]],[[1,1,1,0],[1,0,3,1],[2,3,3,3],[1,2,1,1]],[[1,1,1,0],[1,0,3,1],[2,3,3,2],[1,2,1,2]],[[1,1,1,0],[1,0,3,1],[2,3,4,2],[1,2,2,0]],[[1,1,1,0],[1,0,3,1],[2,3,3,3],[1,2,2,0]],[[1,1,1,0],[1,0,3,1],[2,3,3,2],[2,2,2,0]],[[1,1,1,0],[1,0,3,1],[2,3,3,2],[1,3,2,0]],[[1,1,1,0],[1,0,3,1],[2,3,3,2],[1,2,3,0]],[[1,1,1,0],[1,0,3,2],[2,3,4,0],[1,2,2,1]],[[1,1,1,0],[1,0,3,2],[2,3,3,0],[2,2,2,1]],[[1,1,1,0],[1,0,3,2],[2,3,3,0],[1,3,2,1]],[[1,1,1,0],[1,0,3,2],[2,3,3,0],[1,2,3,1]],[[1,1,1,0],[1,0,3,2],[2,3,3,0],[1,2,2,2]],[[1,1,1,0],[1,0,3,2],[2,3,4,1],[1,2,2,0]],[[1,1,1,0],[1,0,3,2],[2,3,3,1],[2,2,2,0]],[[1,1,1,0],[1,0,3,2],[2,3,3,1],[1,3,2,0]],[[1,1,1,0],[1,0,3,2],[2,3,3,1],[1,2,3,0]],[[1,1,1,0],[1,1,0,2],[2,3,3,3],[1,2,2,1]],[[1,1,1,0],[1,1,0,2],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[1,1,0,2],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,1,0,2],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,1,0,2],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,1,1,2],[1,3,3,3],[1,2,2,1]],[[1,1,1,0],[1,1,1,2],[1,3,3,2],[2,2,2,1]],[[1,1,1,0],[1,1,1,2],[1,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,1,1,2],[1,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,1,1,2],[1,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,1,1,2],[2,3,3,3],[0,2,2,1]],[[1,1,1,0],[1,1,1,2],[2,3,3,2],[0,3,2,1]],[[1,1,1,0],[1,1,1,2],[2,3,3,2],[0,2,3,1]],[[1,1,1,0],[1,1,1,2],[2,3,3,2],[0,2,2,2]],[[1,1,1,0],[1,1,2,2],[1,3,2,3],[1,2,2,1]],[[1,1,1,0],[1,1,2,2],[1,3,2,2],[2,2,2,1]],[[1,1,1,0],[1,1,2,2],[1,3,2,2],[1,3,2,1]],[[1,1,1,0],[1,1,2,2],[1,3,2,2],[1,2,3,1]],[[1,1,1,0],[1,1,2,2],[1,3,2,2],[1,2,2,2]],[[1,1,1,0],[1,1,2,2],[1,3,4,1],[1,2,2,1]],[[1,1,1,0],[1,1,2,2],[1,3,3,1],[2,2,2,1]],[[1,1,1,0],[1,1,2,2],[1,3,3,1],[1,3,2,1]],[[1,1,1,0],[1,1,2,2],[1,3,3,1],[1,2,3,1]],[[1,1,1,0],[1,1,2,2],[1,3,3,1],[1,2,2,2]],[[1,1,1,0],[1,1,2,2],[1,3,4,2],[1,2,1,1]],[[1,1,1,0],[1,1,2,2],[1,3,3,3],[1,2,1,1]],[[1,1,1,0],[1,1,2,2],[1,3,3,2],[1,2,1,2]],[[1,1,1,0],[1,1,2,2],[1,3,4,2],[1,2,2,0]],[[1,1,1,0],[1,1,2,2],[1,3,3,3],[1,2,2,0]],[[1,1,1,0],[1,1,2,2],[1,3,3,2],[2,2,2,0]],[[1,1,1,0],[1,1,2,2],[1,3,3,2],[1,3,2,0]],[[1,1,1,0],[1,1,2,2],[1,3,3,2],[1,2,3,0]],[[1,1,1,0],[1,1,2,2],[2,3,2,3],[0,2,2,1]],[[1,1,1,0],[1,1,2,2],[2,3,2,2],[0,3,2,1]],[[1,1,1,0],[1,1,2,2],[2,3,2,2],[0,2,3,1]],[[1,1,1,0],[1,1,2,2],[2,3,2,2],[0,2,2,2]],[[1,1,1,0],[1,1,2,2],[2,3,4,1],[0,2,2,1]],[[1,1,1,0],[1,1,2,2],[2,3,3,1],[0,3,2,1]],[[1,1,1,0],[1,1,2,2],[2,3,3,1],[0,2,3,1]],[[1,1,1,0],[1,1,2,2],[2,3,3,1],[0,2,2,2]],[[1,1,1,0],[1,1,2,2],[2,3,4,2],[0,2,1,1]],[[1,1,1,0],[1,1,2,2],[2,3,3,3],[0,2,1,1]],[[1,1,1,0],[1,1,2,2],[2,3,3,2],[0,2,1,2]],[[1,1,1,0],[1,1,2,2],[2,3,4,2],[0,2,2,0]],[[1,1,1,0],[1,1,2,2],[2,3,3,3],[0,2,2,0]],[[1,1,1,0],[1,1,2,2],[2,3,3,2],[0,3,2,0]],[[1,1,1,0],[1,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,1,1,0],[1,1,3,0],[1,3,4,2],[1,2,2,1]],[[1,1,1,0],[1,1,3,0],[1,3,3,2],[2,2,2,1]],[[1,1,1,0],[1,1,3,0],[1,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,1,3,0],[1,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,1,3,0],[1,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,1,3,0],[2,3,4,2],[0,2,2,1]],[[1,1,1,0],[1,1,3,0],[2,3,3,2],[0,3,2,1]],[[1,1,1,0],[1,1,3,0],[2,3,3,2],[0,2,3,1]],[[1,1,1,0],[1,1,3,0],[2,3,3,2],[0,2,2,2]],[[1,1,1,0],[1,1,3,1],[1,3,2,3],[1,2,2,1]],[[1,1,1,0],[1,1,3,1],[1,3,2,2],[2,2,2,1]],[[1,1,1,0],[1,1,3,1],[1,3,2,2],[1,3,2,1]],[[1,1,1,0],[1,1,3,1],[1,3,2,2],[1,2,3,1]],[[1,1,1,0],[1,1,3,1],[1,3,2,2],[1,2,2,2]],[[1,1,1,0],[1,1,3,1],[1,3,4,1],[1,2,2,1]],[[1,1,1,0],[1,1,3,1],[1,3,3,1],[2,2,2,1]],[[1,1,1,0],[1,1,3,1],[1,3,3,1],[1,3,2,1]],[[1,1,1,0],[1,1,3,1],[1,3,3,1],[1,2,3,1]],[[1,1,1,0],[1,1,3,1],[1,3,3,1],[1,2,2,2]],[[1,1,1,0],[1,1,3,1],[1,3,4,2],[1,2,1,1]],[[1,1,1,0],[1,1,3,1],[1,3,3,3],[1,2,1,1]],[[1,1,1,0],[1,1,3,1],[1,3,3,2],[1,2,1,2]],[[1,1,1,0],[1,1,3,1],[1,3,4,2],[1,2,2,0]],[[1,1,1,0],[1,1,3,1],[1,3,3,3],[1,2,2,0]],[[1,1,1,0],[1,1,3,1],[1,3,3,2],[2,2,2,0]],[[1,1,1,0],[1,1,3,1],[1,3,3,2],[1,3,2,0]],[[1,1,1,0],[1,1,3,1],[1,3,3,2],[1,2,3,0]],[[1,1,1,0],[1,1,3,1],[2,3,2,3],[0,2,2,1]],[[1,1,1,0],[1,1,3,1],[2,3,2,2],[0,3,2,1]],[[1,1,1,0],[1,1,3,1],[2,3,2,2],[0,2,3,1]],[[1,1,1,0],[1,1,3,1],[2,3,2,2],[0,2,2,2]],[[1,1,1,0],[1,1,3,1],[2,3,4,1],[0,2,2,1]],[[1,1,1,0],[1,1,3,1],[2,3,3,1],[0,3,2,1]],[[1,1,1,0],[1,1,3,1],[2,3,3,1],[0,2,3,1]],[[1,1,1,0],[1,1,3,1],[2,3,3,1],[0,2,2,2]],[[1,1,1,0],[1,1,3,1],[2,3,4,2],[0,2,1,1]],[[1,1,1,0],[1,1,3,1],[2,3,3,3],[0,2,1,1]],[[1,1,1,0],[1,1,3,1],[2,3,3,2],[0,2,1,2]],[[1,1,1,0],[1,1,3,1],[2,3,4,2],[0,2,2,0]],[[1,1,1,0],[1,1,3,1],[2,3,3,3],[0,2,2,0]],[[1,1,1,0],[1,1,3,1],[2,3,3,2],[0,3,2,0]],[[1,1,1,0],[1,1,3,1],[2,3,3,2],[0,2,3,0]],[[1,1,1,0],[1,1,3,2],[1,3,4,0],[1,2,2,1]],[[1,1,1,0],[1,1,3,2],[1,3,3,0],[2,2,2,1]],[[1,1,1,0],[1,1,3,2],[1,3,3,0],[1,3,2,1]],[[1,1,1,0],[1,1,3,2],[1,3,3,0],[1,2,3,1]],[[1,1,1,0],[1,1,3,2],[1,3,3,0],[1,2,2,2]],[[1,1,1,0],[1,1,3,2],[1,3,4,1],[1,2,2,0]],[[1,1,1,0],[1,1,3,2],[1,3,3,1],[2,2,2,0]],[[1,1,1,0],[1,1,3,2],[1,3,3,1],[1,3,2,0]],[[1,1,1,0],[1,1,3,2],[1,3,3,1],[1,2,3,0]],[[1,1,1,0],[1,1,3,2],[2,3,4,0],[0,2,2,1]],[[1,1,1,0],[1,1,3,2],[2,3,3,0],[0,3,2,1]],[[1,1,1,0],[1,1,3,2],[2,3,3,0],[0,2,3,1]],[[1,1,1,0],[1,1,3,2],[2,3,3,0],[0,2,2,2]],[[1,1,1,0],[1,1,3,2],[2,3,4,1],[0,2,2,0]],[[1,1,1,0],[1,1,3,2],[2,3,3,1],[0,3,2,0]],[[1,1,1,0],[1,1,3,2],[2,3,3,1],[0,2,3,0]],[[1,1,1,0],[1,2,0,2],[1,3,3,3],[1,2,2,1]],[[1,1,1,0],[1,2,0,2],[1,3,3,2],[2,2,2,1]],[[1,1,1,0],[1,2,0,2],[1,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,2,0,2],[1,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,2,0,2],[1,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,2,0,2],[2,3,3,3],[0,2,2,1]],[[1,1,1,0],[1,2,0,2],[2,3,3,2],[0,3,2,1]],[[1,1,1,0],[1,2,0,2],[2,3,3,2],[0,2,3,1]],[[1,1,1,0],[1,2,0,2],[2,3,3,2],[0,2,2,2]],[[1,1,1,0],[1,2,1,2],[0,3,3,3],[1,2,2,1]],[[1,1,1,0],[1,2,1,2],[0,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,2,1,2],[0,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,2,1,2],[0,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,2,1,2],[1,2,3,3],[1,2,2,1]],[[1,1,1,0],[1,2,1,2],[1,2,3,2],[2,2,2,1]],[[1,1,1,0],[1,2,1,2],[1,2,3,2],[1,3,2,1]],[[1,1,1,0],[1,2,1,2],[1,2,3,2],[1,2,3,1]],[[1,1,1,0],[1,2,1,2],[1,2,3,2],[1,2,2,2]],[[1,1,1,0],[1,2,1,2],[1,3,3,3],[1,1,2,1]],[[1,1,1,0],[1,2,1,2],[1,3,3,2],[1,1,3,1]],[[1,1,1,0],[1,2,1,2],[1,3,3,2],[1,1,2,2]],[[1,1,1,0],[1,2,1,2],[2,1,3,3],[1,2,2,1]],[[1,1,1,0],[1,2,1,2],[2,1,3,2],[2,2,2,1]],[[1,1,1,0],[1,2,1,2],[2,1,3,2],[1,3,2,1]],[[1,1,1,0],[1,2,1,2],[2,1,3,2],[1,2,3,1]],[[1,1,1,0],[1,2,1,2],[2,1,3,2],[1,2,2,2]],[[1,1,1,0],[1,2,1,2],[2,2,3,3],[0,2,2,1]],[[1,1,1,0],[1,2,1,2],[2,2,3,2],[0,3,2,1]],[[1,1,1,0],[1,2,1,2],[2,2,3,2],[0,2,3,1]],[[1,1,1,0],[1,2,1,2],[2,2,3,2],[0,2,2,2]],[[1,1,1,0],[1,2,1,2],[2,3,3,3],[0,1,2,1]],[[1,1,1,0],[1,2,1,2],[2,3,3,2],[0,1,3,1]],[[1,1,1,0],[1,2,1,2],[2,3,3,2],[0,1,2,2]],[[1,1,1,0],[1,2,1,2],[2,3,3,3],[1,0,2,1]],[[1,1,1,0],[1,2,1,2],[2,3,3,2],[1,0,3,1]],[[1,1,1,0],[1,2,1,2],[2,3,3,2],[1,0,2,2]],[[1,1,1,0],[1,2,2,2],[0,3,2,3],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[0,3,2,2],[1,3,2,1]],[[1,1,1,0],[1,2,2,2],[0,3,2,2],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[0,3,2,2],[1,2,2,2]],[[1,1,1,0],[1,2,2,2],[0,3,4,1],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[0,3,3,1],[1,3,2,1]],[[1,1,1,0],[1,2,2,2],[0,3,3,1],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[0,3,3,1],[1,2,2,2]],[[1,1,1,0],[1,2,2,2],[0,3,4,2],[1,2,1,1]],[[1,1,1,0],[1,2,2,2],[0,3,3,3],[1,2,1,1]],[[1,1,1,0],[1,2,2,2],[0,3,3,2],[1,2,1,2]],[[1,1,1,0],[1,2,2,2],[0,3,4,2],[1,2,2,0]],[[1,1,1,0],[1,2,2,2],[0,3,3,3],[1,2,2,0]],[[1,1,1,0],[1,2,2,2],[0,3,3,2],[1,3,2,0]],[[1,1,1,0],[1,2,2,2],[0,3,3,2],[1,2,3,0]],[[1,1,1,0],[1,2,2,2],[1,1,3,3],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,1,3,2],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[1,1,3,2],[1,2,2,2]],[[1,1,1,0],[1,2,2,3],[1,2,2,2],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,2,2,3],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,2,2,2],[2,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,2,2,2],[1,3,2,1]],[[1,1,1,0],[1,2,2,2],[1,2,2,2],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[1,2,2,2],[1,2,2,2]],[[1,1,1,0],[1,2,2,2],[1,2,4,1],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,2,3,1],[2,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,2,3,1],[1,3,2,1]],[[1,1,1,0],[1,2,2,2],[1,2,3,1],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[1,2,3,1],[1,2,2,2]],[[1,1,1,0],[1,2,2,3],[1,2,3,2],[1,2,1,1]],[[1,1,1,0],[1,2,2,2],[1,2,4,2],[1,2,1,1]],[[1,1,1,0],[1,2,2,2],[1,2,3,3],[1,2,1,1]],[[1,1,1,0],[1,2,2,2],[1,2,3,2],[1,2,1,2]],[[1,1,1,0],[1,2,2,3],[1,2,3,2],[1,2,2,0]],[[1,1,1,0],[1,2,2,2],[1,2,4,2],[1,2,2,0]],[[1,1,1,0],[1,2,2,2],[1,2,3,3],[1,2,2,0]],[[1,1,1,0],[1,2,2,2],[1,2,3,2],[2,2,2,0]],[[1,1,1,0],[1,2,2,2],[1,2,3,2],[1,3,2,0]],[[1,1,1,0],[1,2,2,2],[1,2,3,2],[1,2,3,0]],[[1,1,1,0],[1,2,2,3],[1,3,1,2],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,4,1,2],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,1,3],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,1,2],[2,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,1,2],[1,3,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,1,2],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[1,3,1,2],[1,2,2,2]],[[1,1,1,0],[1,2,2,2],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[1,2,2,3],[1,3,2,2],[1,1,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,2,3],[1,1,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,2,2],[1,1,3,1]],[[1,1,1,0],[1,2,2,2],[1,3,2,2],[1,1,2,2]],[[1,1,1,0],[1,2,2,2],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[1,2,2,2],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[1,2,2,2],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[1,2,2,2],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[1,2,2,2],[1,4,3,1],[1,1,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,4,1],[1,1,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,1],[1,1,3,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,1],[1,1,2,2]],[[1,1,1,0],[1,2,2,2],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[1,2,2,2],[1,3,4,1],[1,2,1,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[1,2,2,2],[1,3,4,2],[1,0,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,3],[1,0,2,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,2],[1,0,2,2]],[[1,1,1,0],[1,2,2,3],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[1,2,2,2],[1,4,3,2],[1,1,1,1]],[[1,1,1,0],[1,2,2,2],[1,3,4,2],[1,1,1,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,3],[1,1,1,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,2],[1,1,1,2]],[[1,1,1,0],[1,2,2,3],[1,3,3,2],[1,1,2,0]],[[1,1,1,0],[1,2,2,2],[1,4,3,2],[1,1,2,0]],[[1,1,1,0],[1,2,2,2],[1,3,4,2],[1,1,2,0]],[[1,1,1,0],[1,2,2,2],[1,3,3,3],[1,1,2,0]],[[1,1,1,0],[1,2,2,2],[1,3,3,2],[1,1,3,0]],[[1,1,1,0],[1,2,2,3],[1,3,3,2],[1,2,0,1]],[[1,1,1,0],[1,2,2,2],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[1,2,2,2],[1,3,4,2],[1,2,0,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,3],[1,2,0,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[1,2,2,2],[1,3,3,2],[1,2,0,2]],[[1,1,1,0],[1,2,2,3],[1,3,3,2],[1,2,1,0]],[[1,1,1,0],[1,2,2,2],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[1,2,2,2],[1,3,4,2],[1,2,1,0]],[[1,1,1,0],[1,2,2,2],[1,3,3,3],[1,2,1,0]],[[1,1,1,0],[1,2,2,2],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[1,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,1,1,0],[1,2,2,2],[2,0,3,3],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,0,3,2],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[2,0,3,2],[1,2,2,2]],[[1,1,1,0],[1,2,2,3],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[3,1,2,2],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,1,2,3],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,1,2,2],[2,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,1,2,2],[1,3,2,1]],[[1,1,1,0],[1,2,2,2],[2,1,2,2],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[2,1,2,2],[1,2,2,2]],[[1,1,1,0],[1,2,2,2],[3,1,3,1],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,1,4,1],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,1,3,1],[2,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,1,3,1],[1,3,2,1]],[[1,1,1,0],[1,2,2,2],[2,1,3,1],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[2,1,3,1],[1,2,2,2]],[[1,1,1,0],[1,2,2,2],[2,1,3,3],[0,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,1,3,2],[0,2,3,1]],[[1,1,1,0],[1,2,2,2],[2,1,3,2],[0,2,2,2]],[[1,1,1,0],[1,2,2,3],[2,1,3,2],[1,2,1,1]],[[1,1,1,0],[1,2,2,2],[2,1,4,2],[1,2,1,1]],[[1,1,1,0],[1,2,2,2],[2,1,3,3],[1,2,1,1]],[[1,1,1,0],[1,2,2,2],[2,1,3,2],[1,2,1,2]],[[1,1,1,0],[1,2,2,3],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[1,2,2,2],[3,1,3,2],[1,2,2,0]],[[1,1,1,0],[1,2,2,2],[2,1,4,2],[1,2,2,0]],[[1,1,1,0],[1,2,2,2],[2,1,3,3],[1,2,2,0]],[[1,1,1,0],[1,2,2,2],[2,1,3,2],[2,2,2,0]],[[1,1,1,0],[1,2,2,2],[2,1,3,2],[1,3,2,0]],[[1,1,1,0],[1,2,2,2],[2,1,3,2],[1,2,3,0]],[[1,1,1,0],[1,2,2,3],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[3,2,1,2],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,1,3],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,1,2],[2,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,1,2],[1,3,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,1,2],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[2,2,1,2],[1,2,2,2]],[[1,1,1,0],[1,2,2,2],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[1,2,2,2],[2,2,2,1],[1,2,2,2]],[[1,1,1,0],[1,2,2,3],[2,2,2,2],[0,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,2,3],[0,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,2,2],[0,3,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,2,2],[0,2,3,1]],[[1,1,1,0],[1,2,2,2],[2,2,2,2],[0,2,2,2]],[[1,1,1,0],[1,2,2,2],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[1,2,2,2],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[1,2,2,2],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[1,2,2,2],[2,2,2,2],[1,2,3,0]],[[1,1,1,0],[1,2,2,2],[2,2,4,1],[0,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,3,1],[0,3,2,1]],[[1,1,1,0],[1,2,2,2],[2,2,3,1],[0,2,3,1]],[[1,1,1,0],[1,2,2,2],[2,2,3,1],[0,2,2,2]],[[1,1,1,0],[1,2,2,2],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[1,2,2,2],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[1,2,2,2],[2,2,3,1],[1,3,1,1]],[[1,1,1,0],[1,2,2,3],[2,2,3,2],[0,2,1,1]],[[1,1,1,0],[1,2,2,2],[2,2,4,2],[0,2,1,1]],[[1,1,1,0],[1,2,2,2],[2,2,3,3],[0,2,1,1]],[[1,1,1,0],[1,2,2,2],[2,2,3,2],[0,2,1,2]],[[1,1,1,0],[1,2,2,3],[2,2,3,2],[0,2,2,0]],[[1,1,1,0],[1,2,2,2],[2,2,4,2],[0,2,2,0]],[[1,1,1,0],[1,2,2,2],[2,2,3,3],[0,2,2,0]],[[1,1,1,0],[1,2,2,2],[2,2,3,2],[0,3,2,0]],[[1,1,1,0],[1,2,2,2],[2,2,3,2],[0,2,3,0]],[[1,1,1,0],[1,2,2,2],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[1,2,2,2],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[1,2,2,2],[2,2,3,2],[1,3,0,1]],[[1,1,1,0],[1,2,2,2],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[1,2,2,2],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[1,2,2,2],[2,2,3,2],[1,3,1,0]],[[1,1,1,0],[1,2,2,3],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[1,2,2,2],[3,3,1,2],[0,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,4,1,2],[0,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,1,3],[0,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,1,2],[0,3,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,1,2],[0,2,3,1]],[[1,1,1,0],[1,2,2,2],[2,3,1,2],[0,2,2,2]],[[1,1,1,0],[1,2,2,2],[3,3,1,2],[1,1,2,1]],[[1,1,1,0],[1,2,2,2],[2,4,1,2],[1,1,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,1,2],[2,1,2,1]],[[1,1,1,0],[1,2,2,2],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[1,2,2,2],[2,3,2,1],[0,2,2,2]],[[1,1,1,0],[1,2,2,2],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[1,2,2,2],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,2,1],[2,1,2,1]],[[1,1,1,0],[1,2,2,3],[2,3,2,2],[0,1,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,2,3],[0,1,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,2,2],[0,1,3,1]],[[1,1,1,0],[1,2,2,2],[2,3,2,2],[0,1,2,2]],[[1,1,1,0],[1,2,2,2],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[1,2,2,2],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[1,2,2,2],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[1,2,2,2],[2,3,2,2],[0,2,3,0]],[[1,1,1,0],[1,2,2,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,2,3],[1,0,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,2,2],[1,0,3,1]],[[1,1,1,0],[1,2,2,2],[2,3,2,2],[1,0,2,2]],[[1,1,1,0],[1,2,2,2],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,2,2,2],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[1,2,2,2],[2,3,2,2],[2,1,2,0]],[[1,1,1,0],[1,2,2,2],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[1,2,2,2],[2,4,3,1],[0,1,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,4,1],[0,1,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,1],[0,1,3,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,1],[0,1,2,2]],[[1,1,1,0],[1,2,2,2],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[1,2,2,2],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[1,2,2,2],[2,3,4,1],[0,2,1,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,1],[0,3,1,1]],[[1,1,1,0],[1,2,2,2],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[1,2,2,2],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,4,1],[1,0,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,1],[2,0,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,1],[1,0,3,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,1],[1,0,2,2]],[[1,1,1,0],[1,2,2,2],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,2,2,2],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[1,2,2,2],[2,3,4,1],[1,1,1,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,1],[2,1,1,1]],[[1,1,1,0],[1,2,2,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,4,2],[0,0,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,3],[0,0,2,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[0,0,2,2]],[[1,1,1,0],[1,2,2,3],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,2,2,2],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,2,2,2],[2,4,3,2],[0,1,1,1]],[[1,1,1,0],[1,2,2,2],[2,3,4,2],[0,1,1,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,3],[0,1,1,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[0,1,1,2]],[[1,1,1,0],[1,2,2,3],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,2,2,2],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,2,2,2],[2,4,3,2],[0,1,2,0]],[[1,1,1,0],[1,2,2,2],[2,3,4,2],[0,1,2,0]],[[1,1,1,0],[1,2,2,2],[2,3,3,3],[0,1,2,0]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[0,1,3,0]],[[1,1,1,0],[1,2,2,3],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[1,2,2,2],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[1,2,2,2],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[1,2,2,2],[2,3,4,2],[0,2,0,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,3],[0,2,0,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[0,3,0,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[0,2,0,2]],[[1,1,1,0],[1,2,2,3],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,2,2,2],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,2,2,2],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[1,2,2,2],[2,3,4,2],[0,2,1,0]],[[1,1,1,0],[1,2,2,2],[2,3,3,3],[0,2,1,0]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[0,3,1,0]],[[1,1,1,0],[1,2,2,3],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[1,2,2,2],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[1,2,2,2],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[1,2,2,2],[2,3,4,2],[1,0,1,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,3],[1,0,1,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[2,0,1,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[1,0,1,2]],[[1,1,1,0],[1,2,2,3],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,2,2,2],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,2,2,2],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[1,2,2,2],[2,3,4,2],[1,0,2,0]],[[1,1,1,0],[1,2,2,2],[2,3,3,3],[1,0,2,0]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[2,0,2,0]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[1,0,3,0]],[[1,1,1,0],[1,2,2,3],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[1,2,2,2],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[1,2,2,2],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[1,2,2,2],[2,3,4,2],[1,1,0,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,3],[1,1,0,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[2,1,0,1]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[1,1,0,2]],[[1,1,1,0],[1,2,2,3],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[1,2,2,2],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[1,2,2,2],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[1,2,2,2],[2,3,4,2],[1,1,1,0]],[[1,1,1,0],[1,2,2,2],[2,3,3,3],[1,1,1,0]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[2,1,1,0]],[[1,1,1,0],[1,2,2,2],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[1,2,2,2],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[1,2,2,2],[2,3,3,2],[2,2,0,0]],[[1,1,1,0],[1,2,3,0],[0,3,4,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,0],[0,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,0],[0,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,0],[0,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,2,3,0],[1,2,4,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,0],[1,2,3,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,0],[1,2,3,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,0],[1,2,3,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,0],[1,2,3,2],[1,2,2,2]],[[1,1,1,0],[1,2,3,0],[1,4,2,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,0],[1,3,2,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,0],[1,3,2,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,0],[1,3,2,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,0],[1,3,2,2],[1,2,2,2]],[[1,1,1,0],[1,2,3,0],[1,4,3,2],[1,1,2,1]],[[1,1,1,0],[1,2,3,0],[1,3,4,2],[1,1,2,1]],[[1,1,1,0],[1,2,3,0],[1,3,3,2],[1,1,3,1]],[[1,1,1,0],[1,2,3,0],[1,3,3,2],[1,1,2,2]],[[1,1,1,0],[1,2,3,0],[1,4,3,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,0],[1,3,4,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,0],[1,3,3,2],[2,2,1,1]],[[1,1,1,0],[1,2,3,0],[1,3,3,2],[1,3,1,1]],[[1,1,1,0],[1,2,3,0],[3,1,3,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,0],[2,1,4,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,0],[2,1,3,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,0],[2,1,3,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,0],[2,1,3,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,0],[2,1,3,2],[1,2,2,2]],[[1,1,1,0],[1,2,3,0],[3,2,2,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,0],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,0],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,0],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,0],[2,2,2,2],[1,2,2,2]],[[1,1,1,0],[1,2,3,0],[2,2,4,2],[0,2,2,1]],[[1,1,1,0],[1,2,3,0],[2,2,3,2],[0,3,2,1]],[[1,1,1,0],[1,2,3,0],[2,2,3,2],[0,2,3,1]],[[1,1,1,0],[1,2,3,0],[2,2,3,2],[0,2,2,2]],[[1,1,1,0],[1,2,3,0],[3,2,3,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,0],[2,2,3,2],[2,2,1,1]],[[1,1,1,0],[1,2,3,0],[2,2,3,2],[1,3,1,1]],[[1,1,1,0],[1,2,3,0],[3,3,2,2],[0,2,2,1]],[[1,1,1,0],[1,2,3,0],[2,4,2,2],[0,2,2,1]],[[1,1,1,0],[1,2,3,0],[2,3,2,2],[0,3,2,1]],[[1,1,1,0],[1,2,3,0],[2,3,2,2],[0,2,3,1]],[[1,1,1,0],[1,2,3,0],[2,3,2,2],[0,2,2,2]],[[1,1,1,0],[1,2,3,0],[3,3,2,2],[1,1,2,1]],[[1,1,1,0],[1,2,3,0],[2,4,2,2],[1,1,2,1]],[[1,1,1,0],[1,2,3,0],[2,3,2,2],[2,1,2,1]],[[1,1,1,0],[1,2,3,0],[3,3,3,2],[0,1,2,1]],[[1,1,1,0],[1,2,3,0],[2,4,3,2],[0,1,2,1]],[[1,1,1,0],[1,2,3,0],[2,3,4,2],[0,1,2,1]],[[1,1,1,0],[1,2,3,0],[2,3,3,2],[0,1,3,1]],[[1,1,1,0],[1,2,3,0],[2,3,3,2],[0,1,2,2]],[[1,1,1,0],[1,2,3,0],[3,3,3,2],[0,2,1,1]],[[1,1,1,0],[1,2,3,0],[2,4,3,2],[0,2,1,1]],[[1,1,1,0],[1,2,3,0],[2,3,4,2],[0,2,1,1]],[[1,1,1,0],[1,2,3,0],[2,3,3,2],[0,3,1,1]],[[1,1,1,0],[1,2,3,0],[3,3,3,2],[1,0,2,1]],[[1,1,1,0],[1,2,3,0],[2,4,3,2],[1,0,2,1]],[[1,1,1,0],[1,2,3,0],[2,3,4,2],[1,0,2,1]],[[1,1,1,0],[1,2,3,0],[2,3,3,2],[2,0,2,1]],[[1,1,1,0],[1,2,3,0],[2,3,3,2],[1,0,3,1]],[[1,1,1,0],[1,2,3,0],[2,3,3,2],[1,0,2,2]],[[1,1,1,0],[1,2,3,0],[3,3,3,2],[1,1,1,1]],[[1,1,1,0],[1,2,3,0],[2,4,3,2],[1,1,1,1]],[[1,1,1,0],[1,2,3,0],[2,3,4,2],[1,1,1,1]],[[1,1,1,0],[1,2,3,0],[2,3,3,2],[2,1,1,1]],[[1,1,1,0],[1,2,3,1],[0,3,2,3],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[0,3,2,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[0,3,2,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[0,3,2,2],[1,2,2,2]],[[1,1,1,0],[1,2,3,1],[0,3,4,1],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[0,3,3,1],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[0,3,3,1],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[0,3,3,1],[1,2,2,2]],[[1,1,1,0],[1,2,3,1],[0,3,4,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[0,3,3,3],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[0,3,3,2],[1,2,1,2]],[[1,1,1,0],[1,2,3,1],[0,3,4,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,1],[0,3,3,3],[1,2,2,0]],[[1,1,1,0],[1,2,3,1],[0,3,3,2],[1,3,2,0]],[[1,1,1,0],[1,2,3,1],[0,3,3,2],[1,2,3,0]],[[1,1,1,0],[1,2,3,1],[1,1,3,3],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,1,3,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[1,1,3,2],[1,2,2,2]],[[1,1,1,0],[1,2,3,1],[1,2,2,3],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,2,2,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,2,2,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[1,2,2,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[1,2,2,2],[1,2,2,2]],[[1,1,1,0],[1,2,4,1],[1,2,3,1],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,2,4,1],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,2,3,1],[2,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,2,3,1],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[1,2,3,1],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[1,2,3,1],[1,2,2,2]],[[1,1,1,0],[1,2,4,1],[1,2,3,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[1,2,4,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[1,2,3,3],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[1,2,3,2],[1,2,1,2]],[[1,1,1,0],[1,2,4,1],[1,2,3,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,1],[1,2,4,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,1],[1,2,3,3],[1,2,2,0]],[[1,1,1,0],[1,2,3,1],[1,2,3,2],[2,2,2,0]],[[1,1,1,0],[1,2,3,1],[1,2,3,2],[1,3,2,0]],[[1,1,1,0],[1,2,3,1],[1,2,3,2],[1,2,3,0]],[[1,1,1,0],[1,2,3,1],[1,4,1,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,1,3],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,1,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,1,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,1,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[1,3,1,2],[1,2,2,2]],[[1,1,1,0],[1,2,3,1],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[1,2,3,1],[1,3,2,3],[1,1,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,2,2],[1,1,3,1]],[[1,1,1,0],[1,2,3,1],[1,3,2,2],[1,1,2,2]],[[1,1,1,0],[1,2,3,1],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,1],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[1,2,3,1],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[1,2,3,1],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[1,2,3,1],[1,4,3,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,0],[2,2,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,0],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,0],[1,2,3,1]],[[1,1,1,0],[1,2,4,1],[1,3,3,1],[1,1,2,1]],[[1,1,1,0],[1,2,3,1],[1,4,3,1],[1,1,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,4,1],[1,1,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,1],[1,1,3,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,1],[1,1,2,2]],[[1,1,1,0],[1,2,4,1],[1,3,3,1],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[1,3,4,1],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[1,2,3,1],[1,3,4,2],[1,0,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,3],[1,0,2,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,2],[1,0,2,2]],[[1,1,1,0],[1,2,4,1],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[1,2,3,1],[1,4,3,2],[1,1,1,1]],[[1,1,1,0],[1,2,3,1],[1,3,4,2],[1,1,1,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,3],[1,1,1,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,2],[1,1,1,2]],[[1,1,1,0],[1,2,4,1],[1,3,3,2],[1,1,2,0]],[[1,1,1,0],[1,2,3,1],[1,4,3,2],[1,1,2,0]],[[1,1,1,0],[1,2,3,1],[1,3,4,2],[1,1,2,0]],[[1,1,1,0],[1,2,3,1],[1,3,3,3],[1,1,2,0]],[[1,1,1,0],[1,2,3,1],[1,3,3,2],[1,1,3,0]],[[1,1,1,0],[1,2,4,1],[1,3,3,2],[1,2,0,1]],[[1,1,1,0],[1,2,3,1],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[1,2,3,1],[1,3,4,2],[1,2,0,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,3],[1,2,0,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[1,2,3,1],[1,3,3,2],[1,2,0,2]],[[1,1,1,0],[1,2,4,1],[1,3,3,2],[1,2,1,0]],[[1,1,1,0],[1,2,3,1],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[1,2,3,1],[1,3,4,2],[1,2,1,0]],[[1,1,1,0],[1,2,3,1],[1,3,3,3],[1,2,1,0]],[[1,1,1,0],[1,2,3,1],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[1,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,1,1,0],[1,2,3,1],[2,0,3,3],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,0,3,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[2,0,3,2],[1,2,2,2]],[[1,1,1,0],[1,2,3,1],[3,1,2,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,1,2,3],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,1,2,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,1,2,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[2,1,2,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[2,1,2,2],[1,2,2,2]],[[1,1,1,0],[1,2,4,1],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[3,1,3,1],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,1,4,1],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,1,3,1],[2,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,1,3,1],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[2,1,3,1],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[2,1,3,1],[1,2,2,2]],[[1,1,1,0],[1,2,3,1],[2,1,3,3],[0,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,1,3,2],[0,2,3,1]],[[1,1,1,0],[1,2,3,1],[2,1,3,2],[0,2,2,2]],[[1,1,1,0],[1,2,4,1],[2,1,3,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[2,1,4,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[2,1,3,3],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[2,1,3,2],[1,2,1,2]],[[1,1,1,0],[1,2,4,1],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,1],[3,1,3,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,1],[2,1,4,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,1],[2,1,3,3],[1,2,2,0]],[[1,1,1,0],[1,2,3,1],[2,1,3,2],[2,2,2,0]],[[1,1,1,0],[1,2,3,1],[2,1,3,2],[1,3,2,0]],[[1,1,1,0],[1,2,3,1],[2,1,3,2],[1,2,3,0]],[[1,1,1,0],[1,2,3,1],[3,2,1,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,1,3],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,1,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,1,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,1,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[2,2,1,2],[1,2,2,2]],[[1,1,1,0],[1,2,3,1],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[1,2,3,1],[2,2,2,1],[1,2,2,2]],[[1,1,1,0],[1,2,3,1],[2,2,2,3],[0,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,2,2],[0,3,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,2,2],[0,2,3,1]],[[1,1,1,0],[1,2,3,1],[2,2,2,2],[0,2,2,2]],[[1,1,1,0],[1,2,3,1],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,1],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[1,2,3,1],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[1,2,3,1],[2,2,2,2],[1,2,3,0]],[[1,1,1,0],[1,2,3,1],[3,2,3,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,0],[2,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,0],[1,3,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,0],[1,2,3,1]],[[1,1,1,0],[1,2,4,1],[2,2,3,1],[0,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,4,1],[0,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,1],[0,3,2,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,1],[0,2,3,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,1],[0,2,2,2]],[[1,1,1,0],[1,2,3,1],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,1],[1,3,1,1]],[[1,1,1,0],[1,2,4,1],[2,2,3,2],[0,2,1,1]],[[1,1,1,0],[1,2,3,1],[2,2,4,2],[0,2,1,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,3],[0,2,1,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,2],[0,2,1,2]],[[1,1,1,0],[1,2,4,1],[2,2,3,2],[0,2,2,0]],[[1,1,1,0],[1,2,3,1],[2,2,4,2],[0,2,2,0]],[[1,1,1,0],[1,2,3,1],[2,2,3,3],[0,2,2,0]],[[1,1,1,0],[1,2,3,1],[2,2,3,2],[0,3,2,0]],[[1,1,1,0],[1,2,3,1],[2,2,3,2],[0,2,3,0]],[[1,1,1,0],[1,2,3,1],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[1,2,3,1],[2,2,3,2],[1,3,0,1]],[[1,1,1,0],[1,2,3,1],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[1,2,3,1],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[1,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,1,1,0],[1,2,3,1],[3,3,1,2],[0,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,4,1,2],[0,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,1,3],[0,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,1,2],[0,3,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,1,2],[0,2,3,1]],[[1,1,1,0],[1,2,3,1],[2,3,1,2],[0,2,2,2]],[[1,1,1,0],[1,2,3,1],[3,3,1,2],[1,1,2,1]],[[1,1,1,0],[1,2,3,1],[2,4,1,2],[1,1,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,1,2],[2,1,2,1]],[[1,1,1,0],[1,2,3,1],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[1,2,3,1],[2,3,2,1],[0,2,2,2]],[[1,1,1,0],[1,2,3,1],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[1,2,3,1],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,2,1],[2,1,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,2,3],[0,1,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,2,2],[0,1,3,1]],[[1,1,1,0],[1,2,3,1],[2,3,2,2],[0,1,2,2]],[[1,1,1,0],[1,2,3,1],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[1,2,3,1],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[1,2,3,1],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[1,2,3,1],[2,3,2,2],[0,2,3,0]],[[1,1,1,0],[1,2,3,1],[2,3,2,3],[1,0,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,2,2],[1,0,3,1]],[[1,1,1,0],[1,2,3,1],[2,3,2,2],[1,0,2,2]],[[1,1,1,0],[1,2,3,1],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,2,3,1],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[1,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,1,1,0],[1,2,3,1],[3,3,3,0],[0,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,4,3,0],[0,2,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,0],[0,3,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,0],[0,2,3,1]],[[1,1,1,0],[1,2,3,1],[3,3,3,0],[1,1,2,1]],[[1,1,1,0],[1,2,3,1],[2,4,3,0],[1,1,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,0],[2,1,2,1]],[[1,1,1,0],[1,2,4,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[1,2,3,1],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[1,2,3,1],[2,4,3,1],[0,1,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,4,1],[0,1,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,1],[0,1,3,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,1],[0,1,2,2]],[[1,1,1,0],[1,2,4,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[1,2,3,1],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[1,2,3,1],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[1,2,3,1],[2,3,4,1],[0,2,1,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,1],[0,3,1,1]],[[1,1,1,0],[1,2,4,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[1,2,3,1],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[1,2,3,1],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,4,1],[1,0,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,1],[2,0,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,1],[1,0,3,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,1],[1,0,2,2]],[[1,1,1,0],[1,2,4,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,2,3,1],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,2,3,1],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[1,2,3,1],[2,3,4,1],[1,1,1,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,1],[2,1,1,1]],[[1,1,1,0],[1,2,3,1],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[1,2,3,1],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,1],[2,2,0,1]],[[1,1,1,0],[1,2,4,1],[2,3,3,2],[0,0,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,4,2],[0,0,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,3],[0,0,2,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[0,0,2,2]],[[1,1,1,0],[1,2,4,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,2,3,1],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,2,3,1],[2,4,3,2],[0,1,1,1]],[[1,1,1,0],[1,2,3,1],[2,3,4,2],[0,1,1,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,3],[0,1,1,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[0,1,1,2]],[[1,1,1,0],[1,2,4,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,2,3,1],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,2,3,1],[2,4,3,2],[0,1,2,0]],[[1,1,1,0],[1,2,3,1],[2,3,4,2],[0,1,2,0]],[[1,1,1,0],[1,2,3,1],[2,3,3,3],[0,1,2,0]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[0,1,3,0]],[[1,1,1,0],[1,2,4,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[1,2,3,1],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[1,2,3,1],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[1,2,3,1],[2,3,4,2],[0,2,0,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,3],[0,2,0,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[0,3,0,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[0,2,0,2]],[[1,1,1,0],[1,2,4,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,2,3,1],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,2,3,1],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[1,2,3,1],[2,3,4,2],[0,2,1,0]],[[1,1,1,0],[1,2,3,1],[2,3,3,3],[0,2,1,0]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,1,1,0],[1,2,4,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[1,2,3,1],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[1,2,3,1],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[1,2,3,1],[2,3,4,2],[1,0,1,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,3],[1,0,1,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[2,0,1,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[1,0,1,2]],[[1,1,1,0],[1,2,4,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,2,3,1],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,2,3,1],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[1,2,3,1],[2,3,4,2],[1,0,2,0]],[[1,1,1,0],[1,2,3,1],[2,3,3,3],[1,0,2,0]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[2,0,2,0]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[1,0,3,0]],[[1,1,1,0],[1,2,4,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[1,2,3,1],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[1,2,3,1],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[1,2,3,1],[2,3,4,2],[1,1,0,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,3],[1,1,0,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[2,1,0,1]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[1,1,0,2]],[[1,1,1,0],[1,2,4,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[1,2,3,1],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[1,2,3,1],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[1,2,3,1],[2,3,4,2],[1,1,1,0]],[[1,1,1,0],[1,2,3,1],[2,3,3,3],[1,1,1,0]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[2,1,1,0]],[[1,1,1,0],[1,2,3,1],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[1,2,3,1],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[1,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,1,1,0],[1,2,3,2],[0,3,4,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[0,3,3,0],[1,3,2,1]],[[1,1,1,0],[1,2,3,2],[0,3,3,0],[1,2,3,1]],[[1,1,1,0],[1,2,3,2],[0,3,3,0],[1,2,2,2]],[[1,1,1,0],[1,2,3,2],[0,3,4,1],[1,2,2,0]],[[1,1,1,0],[1,2,3,2],[0,3,3,1],[1,3,2,0]],[[1,1,1,0],[1,2,3,2],[0,3,3,1],[1,2,3,0]],[[1,1,1,0],[1,2,4,2],[1,2,1,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,3],[1,2,1,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,2,1,3],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,2,1,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,2,1,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,2],[1,2,1,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,2],[1,2,1,2],[1,2,2,2]],[[1,1,1,0],[1,2,4,2],[1,2,2,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,3],[1,2,2,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,2],[1,2,2,3],[1,2,1,1]],[[1,1,1,0],[1,2,3,2],[1,2,2,2],[1,2,1,2]],[[1,1,1,0],[1,2,4,2],[1,2,2,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,3],[1,2,2,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,2],[1,2,2,3],[1,2,2,0]],[[1,1,1,0],[1,2,4,2],[1,2,3,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,3],[1,2,3,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,2,4,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,2,3,0],[2,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,2,3,0],[1,3,2,1]],[[1,1,1,0],[1,2,3,2],[1,2,3,0],[1,2,3,1]],[[1,1,1,0],[1,2,3,2],[1,2,3,0],[1,2,2,2]],[[1,1,1,0],[1,2,4,2],[1,2,3,1],[1,2,1,1]],[[1,1,1,0],[1,2,3,3],[1,2,3,1],[1,2,1,1]],[[1,1,1,0],[1,2,3,2],[1,2,4,1],[1,2,1,1]],[[1,1,1,0],[1,2,4,2],[1,2,3,1],[1,2,2,0]],[[1,1,1,0],[1,2,3,3],[1,2,3,1],[1,2,2,0]],[[1,1,1,0],[1,2,3,2],[1,2,4,1],[1,2,2,0]],[[1,1,1,0],[1,2,3,2],[1,2,3,1],[2,2,2,0]],[[1,1,1,0],[1,2,3,2],[1,2,3,1],[1,3,2,0]],[[1,1,1,0],[1,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,1,1,0],[1,2,4,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,3],[1,3,0,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,4,0,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,3,0,3],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,3,0,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,3,0,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,2],[1,3,0,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,2],[1,3,0,2],[1,2,2,2]],[[1,1,1,0],[1,2,4,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,0],[1,2,3,3],[1,3,1,2],[1,1,2,1]],[[1,1,1,0],[1,2,3,2],[1,3,1,3],[1,1,2,1]],[[1,1,1,0],[1,2,3,2],[1,3,1,2],[1,1,3,1]],[[1,1,1,0],[1,2,3,2],[1,3,1,2],[1,1,2,2]],[[1,1,1,0],[1,2,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,3,2,0],[2,2,2,1]],[[1,1,1,0],[1,2,3,2],[1,3,2,0],[1,3,2,1]],[[1,1,1,0],[1,2,3,2],[1,3,2,0],[1,2,3,1]],[[1,1,1,0],[1,2,3,2],[1,3,2,0],[1,2,2,2]],[[1,1,1,0],[1,2,3,2],[1,4,2,1],[1,2,2,0]],[[1,1,1,0],[1,2,3,2],[1,3,2,1],[2,2,2,0]],[[1,1,1,0],[1,2,3,2],[1,3,2,1],[1,3,2,0]],[[1,1,1,0],[1,2,3,2],[1,3,2,1],[1,2,3,0]],[[1,1,1,0],[1,2,4,2],[1,3,2,2],[1,1,1,1]],[[1,1,1,0],[1,2,3,3],[1,3,2,2],[1,1,1,1]],[[1,1,1,0],[1,2,3,2],[1,3,2,3],[1,1,1,1]],[[1,1,1,0],[1,2,3,2],[1,3,2,2],[1,1,1,2]],[[1,1,1,0],[1,2,4,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,2,3,3],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,2,3,2],[1,3,2,3],[1,1,2,0]],[[1,1,1,0],[1,2,4,2],[1,3,2,2],[1,2,0,1]],[[1,1,1,0],[1,2,3,3],[1,3,2,2],[1,2,0,1]],[[1,1,1,0],[1,2,3,2],[1,3,2,3],[1,2,0,1]],[[1,1,1,0],[1,2,3,2],[1,3,2,2],[1,2,0,2]],[[1,1,1,0],[1,2,4,2],[1,3,2,2],[1,2,1,0]],[[1,1,1,0],[1,2,3,3],[1,3,2,2],[1,2,1,0]],[[1,1,1,0],[1,2,3,2],[1,3,2,3],[1,2,1,0]],[[1,1,1,0],[1,2,4,2],[1,3,3,0],[1,1,2,1]],[[1,1,1,0],[1,2,3,3],[1,3,3,0],[1,1,2,1]],[[1,1,1,0],[1,2,3,2],[1,4,3,0],[1,1,2,1]],[[1,1,1,0],[1,2,3,2],[1,3,4,0],[1,1,2,1]],[[1,1,1,0],[1,2,3,2],[1,3,3,0],[1,1,3,1]],[[1,1,1,0],[1,2,3,2],[1,3,3,0],[1,1,2,2]],[[1,1,1,0],[1,2,4,2],[1,3,3,0],[1,2,1,1]],[[1,1,1,0],[1,2,3,3],[1,3,3,0],[1,2,1,1]],[[1,1,1,0],[1,2,3,2],[1,4,3,0],[1,2,1,1]],[[1,1,1,0],[1,2,3,2],[1,3,4,0],[1,2,1,1]],[[1,1,1,0],[1,2,3,2],[1,3,3,0],[2,2,1,1]],[[1,1,1,0],[1,2,3,2],[1,3,3,0],[1,3,1,1]],[[1,1,1,0],[1,2,4,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,2,3,3],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,2,3,2],[1,4,3,1],[1,1,1,1]],[[1,1,1,0],[1,2,3,2],[1,3,4,1],[1,1,1,1]],[[1,1,1,0],[1,2,4,2],[1,3,3,1],[1,1,2,0]],[[1,1,1,0],[1,2,3,3],[1,3,3,1],[1,1,2,0]],[[1,1,1,0],[1,2,3,2],[1,4,3,1],[1,1,2,0]],[[1,1,1,0],[1,2,3,2],[1,3,4,1],[1,1,2,0]],[[1,1,1,0],[1,2,3,2],[1,3,3,1],[1,1,3,0]],[[1,1,1,0],[1,2,4,2],[1,3,3,1],[1,2,0,1]],[[1,1,1,0],[1,2,3,3],[1,3,3,1],[1,2,0,1]],[[1,1,1,0],[1,2,3,2],[1,4,3,1],[1,2,0,1]],[[1,1,1,0],[1,2,3,2],[1,3,4,1],[1,2,0,1]],[[1,1,1,0],[1,2,3,2],[1,3,3,1],[2,2,0,1]],[[1,1,1,0],[1,2,3,2],[1,3,3,1],[1,3,0,1]],[[1,1,1,0],[1,2,4,2],[1,3,3,1],[1,2,1,0]],[[1,1,1,0],[1,2,3,3],[1,3,3,1],[1,2,1,0]],[[1,1,1,0],[1,2,3,2],[1,4,3,1],[1,2,1,0]],[[1,1,1,0],[1,2,3,2],[1,3,4,1],[1,2,1,0]],[[1,1,1,0],[1,2,3,2],[1,3,3,1],[2,2,1,0]],[[1,1,1,0],[1,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,1,1,0],[1,2,4,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,3],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[3,1,1,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,1,1,3],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,1,1,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,1,1,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,2],[2,1,1,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,2],[2,1,1,2],[1,2,2,2]],[[1,1,1,0],[1,2,4,2],[2,1,2,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,3],[2,1,2,2],[1,2,1,1]],[[1,1,1,0],[1,2,3,2],[2,1,2,3],[1,2,1,1]],[[1,1,1,0],[1,2,3,2],[2,1,2,2],[1,2,1,2]],[[1,1,1,0],[1,2,4,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,3],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[1,2,3,2],[2,1,2,3],[1,2,2,0]],[[1,1,1,0],[1,2,4,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,3],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[3,1,3,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,1,4,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,1,3,0],[2,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,1,3,0],[1,3,2,1]],[[1,1,1,0],[1,2,3,2],[2,1,3,0],[1,2,3,1]],[[1,1,1,0],[1,2,3,2],[2,1,3,0],[1,2,2,2]],[[1,1,1,0],[1,2,4,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[1,2,3,3],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[1,2,3,2],[2,1,4,1],[1,2,1,1]],[[1,1,1,0],[1,2,4,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,0],[1,2,3,3],[2,1,3,1],[1,2,2,0]],[[1,1,1,0],[1,2,3,2],[3,1,3,1],[1,2,2,0]],[[1,1,1,0],[1,2,3,2],[2,1,4,1],[1,2,2,0]],[[1,1,1,0],[1,2,3,2],[2,1,3,1],[2,2,2,0]],[[1,1,1,0],[1,2,3,2],[2,1,3,1],[1,3,2,0]],[[1,1,1,0],[1,2,3,2],[2,1,3,1],[1,2,3,0]],[[1,1,1,0],[1,2,4,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,3],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[3,2,0,2],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,0,3],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,0,2],[2,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,0,2],[1,3,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,0,2],[1,2,3,1]],[[1,1,1,0],[1,2,3,2],[2,2,0,2],[1,2,2,2]],[[1,1,1,0],[1,2,4,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,0],[1,2,3,3],[2,2,1,2],[0,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,1,3],[0,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,1,2],[0,3,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,1,2],[0,2,3,1]],[[1,1,1,0],[1,2,3,2],[2,2,1,2],[0,2,2,2]],[[1,1,1,0],[1,2,3,2],[3,2,2,0],[1,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,2,0],[2,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,2,0],[1,3,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,2,0],[1,2,3,1]],[[1,1,1,0],[1,2,3,2],[2,2,2,0],[1,2,2,2]],[[1,1,1,0],[1,2,3,2],[3,2,2,1],[1,2,2,0]],[[1,1,1,0],[1,2,3,2],[2,2,2,1],[2,2,2,0]],[[1,1,1,0],[1,2,3,2],[2,2,2,1],[1,3,2,0]],[[1,1,1,0],[1,2,3,2],[2,2,2,1],[1,2,3,0]],[[1,1,1,0],[1,2,4,2],[2,2,2,2],[0,2,1,1]],[[1,1,1,0],[1,2,3,3],[2,2,2,2],[0,2,1,1]],[[1,1,1,0],[1,2,3,2],[2,2,2,3],[0,2,1,1]],[[1,1,1,0],[1,2,3,2],[2,2,2,2],[0,2,1,2]],[[1,1,1,0],[1,2,4,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[1,2,3,3],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[1,2,3,2],[2,2,2,3],[0,2,2,0]],[[1,1,1,0],[1,2,4,2],[2,2,3,0],[0,2,2,1]],[[1,1,1,0],[1,2,3,3],[2,2,3,0],[0,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,4,0],[0,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,3,0],[0,3,2,1]],[[1,1,1,0],[1,2,3,2],[2,2,3,0],[0,2,3,1]],[[1,1,1,0],[1,2,3,2],[2,2,3,0],[0,2,2,2]],[[1,1,1,0],[1,2,3,2],[3,2,3,0],[1,2,1,1]],[[1,1,1,0],[1,2,3,2],[2,2,3,0],[2,2,1,1]],[[1,1,1,0],[1,2,3,2],[2,2,3,0],[1,3,1,1]],[[1,1,1,0],[1,2,4,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[1,2,3,3],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[1,2,3,2],[2,2,4,1],[0,2,1,1]],[[1,1,1,0],[1,2,4,2],[2,2,3,1],[0,2,2,0]],[[1,1,1,0],[1,2,3,3],[2,2,3,1],[0,2,2,0]],[[1,1,1,0],[1,2,3,2],[2,2,4,1],[0,2,2,0]],[[1,1,1,0],[1,2,3,2],[2,2,3,1],[0,3,2,0]],[[1,1,1,0],[1,2,3,2],[2,2,3,1],[0,2,3,0]],[[1,1,1,0],[1,2,3,2],[3,2,3,1],[1,2,0,1]],[[1,1,1,0],[1,2,3,2],[2,2,3,1],[2,2,0,1]],[[1,1,1,0],[1,2,3,2],[2,2,3,1],[1,3,0,1]],[[1,1,1,0],[1,2,3,2],[3,2,3,1],[1,2,1,0]],[[1,1,1,0],[1,2,3,2],[2,2,3,1],[2,2,1,0]],[[1,1,1,0],[1,2,3,2],[2,2,3,1],[1,3,1,0]],[[1,1,1,0],[1,2,4,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[1,2,3,3],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[1,2,3,2],[3,3,0,2],[0,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,4,0,2],[0,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,0,3],[0,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,0,2],[0,3,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,0,2],[0,2,3,1]],[[1,1,1,0],[1,2,3,2],[2,3,0,2],[0,2,2,2]],[[1,1,1,0],[1,2,3,2],[3,3,0,2],[1,1,2,1]],[[1,1,1,0],[1,2,3,2],[2,4,0,2],[1,1,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,0,2],[2,1,2,1]],[[1,1,1,0],[1,2,4,2],[2,3,1,2],[0,1,2,1]],[[1,1,1,0],[1,2,3,3],[2,3,1,2],[0,1,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,1,3],[0,1,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,1,2],[0,1,3,1]],[[1,1,1,0],[1,2,3,2],[2,3,1,2],[0,1,2,2]],[[1,1,1,0],[1,2,4,2],[2,3,1,2],[1,0,2,1]],[[1,1,1,0],[1,2,3,3],[2,3,1,2],[1,0,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,1,3],[1,0,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,1,2],[1,0,3,1]],[[1,1,1,0],[1,2,3,2],[2,3,1,2],[1,0,2,2]],[[1,1,1,0],[1,2,3,2],[3,3,2,0],[0,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,4,2,0],[0,2,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,0],[0,3,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,0],[0,2,3,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,0],[0,2,2,2]],[[1,1,1,0],[1,2,3,2],[3,3,2,0],[1,1,2,1]],[[1,1,1,0],[1,2,3,2],[2,4,2,0],[1,1,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,0],[2,1,2,1]],[[1,1,1,0],[1,2,3,2],[3,3,2,1],[0,2,2,0]],[[1,1,1,0],[1,2,3,2],[2,4,2,1],[0,2,2,0]],[[1,1,1,0],[1,2,3,2],[2,3,2,1],[0,3,2,0]],[[1,1,1,0],[1,2,3,2],[2,3,2,1],[0,2,3,0]],[[1,1,1,0],[1,2,3,2],[3,3,2,1],[1,1,2,0]],[[1,1,1,0],[1,2,3,2],[2,4,2,1],[1,1,2,0]],[[1,1,1,0],[1,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,1,1,0],[1,2,4,2],[2,3,2,2],[0,0,2,1]],[[1,1,1,0],[1,2,3,3],[2,3,2,2],[0,0,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,3],[0,0,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,2],[0,0,2,2]],[[1,1,1,0],[1,2,4,2],[2,3,2,2],[0,1,1,1]],[[1,1,1,0],[1,2,3,3],[2,3,2,2],[0,1,1,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,3],[0,1,1,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,2],[0,1,1,2]],[[1,1,1,0],[1,2,4,2],[2,3,2,2],[0,1,2,0]],[[1,1,1,0],[1,2,3,3],[2,3,2,2],[0,1,2,0]],[[1,1,1,0],[1,2,3,2],[2,3,2,3],[0,1,2,0]],[[1,1,1,0],[1,2,4,2],[2,3,2,2],[0,2,0,1]],[[1,1,1,0],[1,2,3,3],[2,3,2,2],[0,2,0,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,3],[0,2,0,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,2],[0,2,0,2]],[[1,1,1,0],[1,2,4,2],[2,3,2,2],[0,2,1,0]],[[1,1,1,0],[1,2,3,3],[2,3,2,2],[0,2,1,0]],[[1,1,1,0],[1,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,1,1,0],[1,2,4,2],[2,3,2,2],[1,0,1,1]],[[1,1,1,0],[1,2,3,3],[2,3,2,2],[1,0,1,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,3],[1,0,1,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,2],[1,0,1,2]],[[1,1,1,0],[1,2,4,2],[2,3,2,2],[1,0,2,0]],[[1,1,1,0],[1,2,3,3],[2,3,2,2],[1,0,2,0]],[[1,1,1,0],[1,2,3,2],[2,3,2,3],[1,0,2,0]],[[1,1,1,0],[1,2,4,2],[2,3,2,2],[1,1,0,1]],[[1,1,1,0],[1,2,3,3],[2,3,2,2],[1,1,0,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,3],[1,1,0,1]],[[1,1,1,0],[1,2,3,2],[2,3,2,2],[1,1,0,2]],[[1,1,1,0],[1,2,4,2],[2,3,2,2],[1,1,1,0]],[[1,1,1,0],[1,2,3,3],[2,3,2,2],[1,1,1,0]],[[1,1,1,0],[1,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,1,1,0],[1,2,4,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[1,2,3,3],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[1,2,3,2],[3,3,3,0],[0,1,2,1]],[[1,1,1,0],[1,2,3,2],[2,4,3,0],[0,1,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,4,0],[0,1,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,0],[0,1,3,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,0],[0,1,2,2]],[[1,1,1,0],[1,2,4,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[1,2,3,3],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[1,2,3,2],[3,3,3,0],[0,2,1,1]],[[1,1,1,0],[1,2,3,2],[2,4,3,0],[0,2,1,1]],[[1,1,1,0],[1,2,3,2],[2,3,4,0],[0,2,1,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,0],[0,3,1,1]],[[1,1,1,0],[1,2,4,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[1,2,3,3],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[1,2,3,2],[3,3,3,0],[1,0,2,1]],[[1,1,1,0],[1,2,3,2],[2,4,3,0],[1,0,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,4,0],[1,0,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,0],[2,0,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,0],[1,0,3,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,0],[1,0,2,2]],[[1,1,1,0],[1,2,4,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,0],[1,2,3,3],[2,3,3,0],[1,1,1,1]],[[1,1,1,0],[1,2,3,2],[3,3,3,0],[1,1,1,1]],[[1,1,1,0],[1,2,3,2],[2,4,3,0],[1,1,1,1]],[[1,1,1,0],[1,2,3,2],[2,3,4,0],[1,1,1,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,0],[2,1,1,1]],[[1,1,1,0],[1,2,3,2],[3,3,3,0],[1,2,0,1]],[[1,1,1,0],[1,2,3,2],[2,4,3,0],[1,2,0,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,1,1,0],[1,2,4,2],[2,3,3,1],[0,0,2,1]],[[1,1,1,0],[1,2,3,3],[2,3,3,1],[0,0,2,1]],[[1,1,1,0],[1,2,3,2],[2,3,4,1],[0,0,2,1]],[[1,1,1,0],[1,2,4,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,0],[1,2,3,3],[2,3,3,1],[0,1,1,1]],[[1,1,1,0],[1,2,3,2],[3,3,3,1],[0,1,1,1]],[[1,1,1,0],[1,2,3,2],[2,4,3,1],[0,1,1,1]],[[1,1,1,0],[1,2,3,2],[2,3,4,1],[0,1,1,1]],[[1,1,1,0],[1,2,4,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,0],[1,2,3,3],[2,3,3,1],[0,1,2,0]],[[1,1,1,0],[1,2,3,2],[3,3,3,1],[0,1,2,0]],[[1,1,1,0],[1,2,3,2],[2,4,3,1],[0,1,2,0]],[[1,1,1,0],[1,2,3,2],[2,3,4,1],[0,1,2,0]],[[1,1,1,0],[1,2,3,2],[2,3,3,1],[0,1,3,0]],[[1,1,1,0],[1,2,4,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,0],[1,2,3,3],[2,3,3,1],[0,2,0,1]],[[1,1,1,0],[1,2,3,2],[3,3,3,1],[0,2,0,1]],[[1,1,1,0],[1,2,3,2],[2,4,3,1],[0,2,0,1]],[[1,1,1,0],[1,2,3,2],[2,3,4,1],[0,2,0,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,1],[0,3,0,1]],[[1,1,1,0],[1,2,4,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,0],[1,2,3,3],[2,3,3,1],[0,2,1,0]],[[1,1,1,0],[1,2,3,2],[3,3,3,1],[0,2,1,0]],[[1,1,1,0],[1,2,3,2],[2,4,3,1],[0,2,1,0]],[[1,1,1,0],[1,2,3,2],[2,3,4,1],[0,2,1,0]],[[1,1,1,0],[1,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,1,1,0],[1,2,4,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[1,2,3,3],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[1,2,3,2],[3,3,3,1],[1,0,1,1]],[[1,1,1,0],[1,2,3,2],[2,4,3,1],[1,0,1,1]],[[1,1,1,0],[1,2,3,2],[2,3,4,1],[1,0,1,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,1],[2,0,1,1]],[[1,1,1,0],[1,2,4,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[1,2,3,3],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[1,2,3,2],[3,3,3,1],[1,0,2,0]],[[1,1,1,0],[1,2,3,2],[2,4,3,1],[1,0,2,0]],[[1,1,1,0],[1,2,3,2],[2,3,4,1],[1,0,2,0]],[[1,1,1,0],[1,2,3,2],[2,3,3,1],[2,0,2,0]],[[1,1,1,0],[1,2,3,2],[2,3,3,1],[1,0,3,0]],[[1,1,1,0],[1,2,4,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[1,2,3,3],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[1,2,3,2],[3,3,3,1],[1,1,0,1]],[[1,1,1,0],[1,2,3,2],[2,4,3,1],[1,1,0,1]],[[1,1,1,0],[1,2,3,2],[2,3,4,1],[1,1,0,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,1],[2,1,0,1]],[[1,1,1,0],[1,2,4,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[1,2,3,3],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[1,2,3,2],[3,3,3,1],[1,1,1,0]],[[1,1,1,0],[1,2,3,2],[2,4,3,1],[1,1,1,0]],[[1,1,1,0],[1,2,3,2],[2,3,4,1],[1,1,1,0]],[[1,1,1,0],[1,2,3,2],[2,3,3,1],[2,1,1,0]],[[1,1,1,0],[1,2,3,2],[3,3,3,1],[1,2,0,0]],[[1,1,1,0],[1,2,3,2],[2,4,3,1],[1,2,0,0]],[[1,1,1,0],[1,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[2,4,2,1],[0,3,3,2],[1,1,1,0]],[[1,3,1,0],[2,3,2,1],[0,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,3,2,1],[0,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,4,2,1],[0,3,3,2],[1,1,0,1]],[[1,3,1,0],[2,3,2,1],[0,3,3,2],[1,1,0,1]],[[2,2,1,0],[2,3,2,1],[0,3,3,2],[1,1,0,1]],[[1,2,1,0],[2,4,2,1],[0,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,2,4,2],[2,3,3,2],[0,1,0,1]],[[1,1,1,0],[1,2,3,3],[2,3,3,2],[0,1,0,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,3,1,0],[2,3,2,1],[0,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,3,2,1],[0,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,4,2,1],[0,3,3,2],[1,0,1,1]],[[1,3,1,0],[2,3,2,1],[0,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,3,2,1],[0,3,3,2],[1,0,1,1]],[[1,2,1,0],[2,4,2,1],[0,3,3,2],[0,2,1,0]],[[1,3,1,0],[2,3,2,1],[0,3,3,2],[0,2,1,0]],[[2,2,1,0],[2,3,2,1],[0,3,3,2],[0,2,1,0]],[[1,2,1,0],[2,4,2,1],[0,3,3,2],[0,2,0,1]],[[1,3,1,0],[2,3,2,1],[0,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,3,2,1],[0,3,3,2],[0,2,0,1]],[[1,2,1,0],[2,4,2,1],[0,3,3,2],[0,1,2,0]],[[1,3,1,0],[2,3,2,1],[0,3,3,2],[0,1,2,0]],[[2,2,1,0],[2,3,2,1],[0,3,3,2],[0,1,2,0]],[[1,2,1,0],[2,4,2,1],[0,3,3,2],[0,1,1,1]],[[1,3,1,0],[2,3,2,1],[0,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,3,2,1],[0,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,2,4,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[1,2,3,3],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[1,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,0],[2,4,2,1],[0,3,3,1],[1,1,1,1]],[[1,3,1,0],[2,3,2,1],[0,3,3,1],[1,1,1,1]],[[2,2,1,0],[2,3,2,1],[0,3,3,1],[1,1,1,1]],[[1,2,1,0],[2,4,2,1],[0,3,3,1],[1,0,2,1]],[[1,3,1,0],[2,3,2,1],[0,3,3,1],[1,0,2,1]],[[2,2,1,0],[2,3,2,1],[0,3,3,1],[1,0,2,1]],[[1,2,1,0],[2,4,2,1],[0,3,3,1],[0,2,1,1]],[[1,3,1,0],[2,3,2,1],[0,3,3,1],[0,2,1,1]],[[2,2,1,0],[2,3,2,1],[0,3,3,1],[0,2,1,1]],[[1,2,1,0],[2,4,2,1],[0,3,3,1],[0,1,2,1]],[[1,3,1,0],[2,3,2,1],[0,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,3,2,1],[0,3,3,1],[0,1,2,1]],[[1,2,1,0],[2,4,2,1],[0,3,3,0],[0,2,2,1]],[[1,3,1,0],[2,3,2,1],[0,3,3,0],[0,2,2,1]],[[2,2,1,0],[2,3,2,1],[0,3,3,0],[0,2,2,1]],[[1,2,1,0],[2,4,2,1],[0,3,2,2],[0,2,2,0]],[[1,3,1,0],[2,3,2,1],[0,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,3,2,1],[0,3,2,2],[0,2,2,0]],[[1,2,1,0],[2,4,2,1],[0,3,2,1],[0,2,2,1]],[[1,3,1,0],[2,3,2,1],[0,3,2,1],[0,2,2,1]],[[2,2,1,0],[2,3,2,1],[0,3,2,1],[0,2,2,1]],[[1,2,1,0],[2,4,2,1],[0,3,1,2],[0,2,2,1]],[[1,3,1,0],[2,3,2,1],[0,3,1,2],[0,2,2,1]],[[2,2,1,0],[2,3,2,1],[0,3,1,2],[0,2,2,1]],[[1,1,1,0],[1,3,0,1],[1,4,3,2],[1,2,2,1]],[[1,1,1,0],[1,3,0,1],[1,3,3,2],[2,2,2,1]],[[1,1,1,0],[1,3,0,1],[1,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,0,1],[1,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,0,1],[1,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,0,1],[3,2,3,2],[1,2,2,1]],[[1,1,1,0],[1,3,0,1],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[1,3,0,1],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,0,1],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,0,1],[2,2,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,0,1],[3,3,3,2],[0,2,2,1]],[[1,1,1,0],[1,3,0,1],[2,4,3,2],[0,2,2,1]],[[1,1,1,0],[1,3,0,1],[2,3,3,2],[0,3,2,1]],[[1,1,1,0],[1,3,0,1],[2,3,3,2],[0,2,3,1]],[[1,1,1,0],[1,3,0,1],[2,3,3,2],[0,2,2,2]],[[1,1,1,0],[1,3,0,1],[3,3,3,2],[1,1,2,1]],[[1,1,1,0],[1,3,0,1],[2,4,3,2],[1,1,2,1]],[[1,1,1,0],[1,3,0,1],[2,3,3,2],[2,1,2,1]],[[1,1,1,0],[1,3,0,2],[0,3,3,3],[1,2,2,1]],[[1,1,1,0],[1,3,0,2],[0,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,0,2],[0,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,0,2],[0,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,0,2],[1,2,3,3],[1,2,2,1]],[[1,1,1,0],[1,3,0,2],[1,2,3,2],[2,2,2,1]],[[1,1,1,0],[1,3,0,2],[1,2,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,0,2],[1,2,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,0,2],[1,2,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,0,2],[1,4,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,0,2],[1,3,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,0,2],[1,3,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,0,2],[1,3,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,0,2],[1,3,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,0,2],[1,3,2,2],[1,2,2,2]],[[1,1,1,0],[1,3,0,2],[1,4,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,0,2],[1,3,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,0,2],[1,3,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,0,2],[1,3,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,0,2],[1,3,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,0,2],[1,3,3,3],[1,1,2,1]],[[1,1,1,0],[1,3,0,2],[1,3,3,2],[1,1,3,1]],[[1,1,1,0],[1,3,0,2],[1,3,3,2],[1,1,2,2]],[[1,1,1,0],[1,3,0,2],[1,4,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,0,2],[1,3,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,0,2],[1,3,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,0,2],[1,3,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,0,2],[3,1,3,2],[1,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,1,3,3],[1,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,1,3,2],[2,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,1,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,0,2],[2,1,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,0,2],[2,1,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,0,2],[3,2,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,2,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,0,2],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,0,2],[2,2,2,2],[1,2,2,2]],[[1,1,1,0],[1,3,0,2],[3,2,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,0,2],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,0,2],[2,2,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,0,2],[2,2,3,3],[0,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,2,3,2],[0,3,2,1]],[[1,1,1,0],[1,3,0,2],[2,2,3,2],[0,2,3,1]],[[1,1,1,0],[1,3,0,2],[2,2,3,2],[0,2,2,2]],[[1,1,1,0],[1,3,0,2],[3,2,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,0,2],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,0,2],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,0,2],[2,2,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,0,2],[3,3,2,2],[0,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,4,2,2],[0,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,3,2,3],[0,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,3,2,2],[0,3,2,1]],[[1,1,1,0],[1,3,0,2],[2,3,2,2],[0,2,3,1]],[[1,1,1,0],[1,3,0,2],[2,3,2,2],[0,2,2,2]],[[1,1,1,0],[1,3,0,2],[3,3,2,2],[1,1,2,1]],[[1,1,1,0],[1,3,0,2],[2,4,2,2],[1,1,2,1]],[[1,1,1,0],[1,3,0,2],[2,3,2,2],[2,1,2,1]],[[1,1,1,0],[1,3,0,2],[3,3,3,1],[0,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,4,3,1],[0,2,2,1]],[[1,1,1,0],[1,3,0,2],[2,3,3,1],[0,3,2,1]],[[1,1,1,0],[1,3,0,2],[2,3,3,1],[0,2,3,1]],[[1,1,1,0],[1,3,0,2],[2,3,3,1],[0,2,2,2]],[[1,1,1,0],[1,3,0,2],[3,3,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,0,2],[2,4,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,0,2],[2,3,3,1],[2,1,2,1]],[[1,1,1,0],[1,3,0,2],[2,3,3,3],[0,1,2,1]],[[1,1,1,0],[1,3,0,2],[2,3,3,2],[0,1,3,1]],[[1,1,1,0],[1,3,0,2],[2,3,3,2],[0,1,2,2]],[[1,1,1,0],[1,3,0,2],[3,3,3,2],[0,2,2,0]],[[1,1,1,0],[1,3,0,2],[2,4,3,2],[0,2,2,0]],[[1,1,1,0],[1,3,0,2],[2,3,3,2],[0,3,2,0]],[[1,1,1,0],[1,3,0,2],[2,3,3,2],[0,2,3,0]],[[1,1,1,0],[1,3,0,2],[2,3,3,3],[1,0,2,1]],[[1,1,1,0],[1,3,0,2],[2,3,3,2],[1,0,3,1]],[[1,1,1,0],[1,3,0,2],[2,3,3,2],[1,0,2,2]],[[1,1,1,0],[1,3,0,2],[3,3,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,0,2],[2,4,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,0,2],[2,3,3,2],[2,1,2,0]],[[1,1,1,0],[1,3,1,0],[1,4,3,2],[1,2,2,1]],[[1,1,1,0],[1,3,1,0],[1,3,3,2],[2,2,2,1]],[[1,1,1,0],[1,3,1,0],[1,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,1,0],[1,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,1,0],[1,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,1,0],[3,2,3,2],[1,2,2,1]],[[1,1,1,0],[1,3,1,0],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[1,3,1,0],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,1,0],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,1,0],[2,2,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,1,0],[3,3,3,2],[0,2,2,1]],[[1,1,1,0],[1,3,1,0],[2,4,3,2],[0,2,2,1]],[[1,1,1,0],[1,3,1,0],[2,3,3,2],[0,3,2,1]],[[1,1,1,0],[1,3,1,0],[2,3,3,2],[0,2,3,1]],[[1,1,1,0],[1,3,1,0],[2,3,3,2],[0,2,2,2]],[[1,1,1,0],[1,3,1,0],[3,3,3,2],[1,1,2,1]],[[1,1,1,0],[1,3,1,0],[2,4,3,2],[1,1,2,1]],[[1,1,1,0],[1,3,1,0],[2,3,3,2],[2,1,2,1]],[[1,1,1,0],[1,3,1,1],[1,4,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,1,1],[1,3,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,1,1],[1,3,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,1,1],[1,3,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,1,1],[1,3,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,1,1],[1,4,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,1],[1,3,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,1,1],[1,3,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,1,1],[1,3,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,1,1],[3,2,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,1,1],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,1,1],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,1,1],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,1,1],[2,2,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,1,1],[3,2,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,1],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,1,1],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,1,1],[2,2,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,1,1],[3,3,3,1],[0,2,2,1]],[[1,1,1,0],[1,3,1,1],[2,4,3,1],[0,2,2,1]],[[1,1,1,0],[1,3,1,1],[2,3,3,1],[0,3,2,1]],[[1,1,1,0],[1,3,1,1],[2,3,3,1],[0,2,3,1]],[[1,1,1,0],[1,3,1,1],[2,3,3,1],[0,2,2,2]],[[1,1,1,0],[1,3,1,1],[3,3,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,1,1],[2,4,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,1,1],[2,3,3,1],[2,1,2,1]],[[1,1,1,0],[1,3,1,1],[3,3,3,2],[0,2,2,0]],[[1,1,1,0],[1,3,1,1],[2,4,3,2],[0,2,2,0]],[[1,1,1,0],[1,3,1,1],[2,3,3,2],[0,3,2,0]],[[1,1,1,0],[1,3,1,1],[2,3,3,2],[0,2,3,0]],[[1,1,1,0],[1,3,1,1],[3,3,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,1,1],[2,4,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,1,1],[2,3,3,2],[2,1,2,0]],[[1,1,1,0],[1,3,1,2],[0,3,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[0,3,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,1,2],[0,3,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,1,2],[0,3,2,2],[1,2,2,2]],[[1,1,1,0],[1,3,1,2],[0,3,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[0,3,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,1,2],[0,3,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,1,2],[0,3,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,1,2],[0,3,4,2],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[0,3,3,3],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[0,3,3,2],[1,2,1,2]],[[1,1,1,0],[1,3,1,2],[0,3,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[0,3,3,3],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[0,3,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,1,2],[0,3,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,1,3],[1,2,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,2,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,2,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,2,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,1,2],[1,2,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,1,2],[1,2,2,2],[1,2,2,2]],[[1,1,1,0],[1,3,1,2],[1,2,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,2,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,2,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,1,2],[1,2,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,1,2],[1,2,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,1,3],[1,2,3,2],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[1,2,4,2],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[1,2,3,3],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[1,2,3,2],[1,2,1,2]],[[1,1,1,0],[1,3,1,3],[1,2,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[1,2,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[1,2,3,3],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[1,2,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,1,2],[1,2,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,1,2],[1,2,3,2],[1,2,3,0]],[[1,1,1,0],[1,4,1,2],[1,3,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,1,3],[1,3,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,4,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,1,3],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,1,2],[2,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,1,2],[1,3,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,1,2],[1,2,3,1]],[[1,1,1,0],[1,3,1,2],[1,3,1,2],[1,2,2,2]],[[1,1,1,0],[1,4,1,2],[1,3,2,1],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[1,3,1,2],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[1,3,1,3],[1,3,2,2],[1,1,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,2,3],[1,1,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,2,2],[1,1,3,1]],[[1,1,1,0],[1,3,1,2],[1,3,2,2],[1,1,2,2]],[[1,1,1,0],[1,4,1,2],[1,3,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[1,3,1,2],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[1,3,1,2],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[1,4,1,2],[1,3,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,1,2],[1,4,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,4,1],[1,1,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,1],[1,1,3,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,1],[1,1,2,2]],[[1,1,1,0],[1,4,1,2],[1,3,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[1,3,4,1],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[1,3,1,2],[1,3,4,2],[1,0,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,3],[1,0,2,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,2],[1,0,2,2]],[[1,1,1,0],[1,4,1,2],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,1,3],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,1,2],[1,4,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,1,2],[1,3,4,2],[1,1,1,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,3],[1,1,1,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,2],[1,1,1,2]],[[1,1,1,0],[1,4,1,2],[1,3,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,1,3],[1,3,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,1,2],[1,4,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,1,2],[1,3,4,2],[1,1,2,0]],[[1,1,1,0],[1,3,1,2],[1,3,3,3],[1,1,2,0]],[[1,1,1,0],[1,3,1,2],[1,3,3,2],[1,1,3,0]],[[1,1,1,0],[1,4,1,2],[1,3,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,1,3],[1,3,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,1,2],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,1,2],[1,3,4,2],[1,2,0,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,3],[1,2,0,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[1,3,1,2],[1,3,3,2],[1,2,0,2]],[[1,1,1,0],[1,4,1,2],[1,3,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,1,3],[1,3,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,1,2],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,1,2],[1,3,4,2],[1,2,1,0]],[[1,1,1,0],[1,3,1,2],[1,3,3,3],[1,2,1,0]],[[1,1,1,0],[1,3,1,2],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[1,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,1,1,0],[1,3,1,3],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[3,1,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,1,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,1,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,1,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,1,2],[2,1,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,1,2],[2,1,2,2],[1,2,2,2]],[[1,1,1,0],[1,3,1,2],[3,1,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,1,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,1,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,1,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,1,2],[2,1,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,1,2],[2,1,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,1,3],[2,1,3,2],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[2,1,4,2],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[2,1,3,3],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[2,1,3,2],[1,2,1,2]],[[1,1,1,0],[1,3,1,3],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[3,1,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,1,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,1,3,3],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,1,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,1,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,1,2],[2,1,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,1,3],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[3,2,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,1,3],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,1,2],[2,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,1,2],[1,3,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,1,2],[1,2,3,1]],[[1,1,1,0],[1,3,1,2],[2,2,1,2],[1,2,2,2]],[[1,1,1,0],[1,3,1,2],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[1,3,1,2],[2,2,2,1],[1,2,2,2]],[[1,1,1,0],[1,3,1,3],[2,2,2,2],[0,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,2,3],[0,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,2,2],[0,3,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,2,2],[0,2,3,1]],[[1,1,1,0],[1,3,1,2],[2,2,2,2],[0,2,2,2]],[[1,1,1,0],[1,3,1,2],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[1,3,1,2],[2,2,2,2],[1,2,3,0]],[[1,1,1,0],[1,3,1,2],[2,2,4,1],[0,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,3,1],[0,3,2,1]],[[1,1,1,0],[1,3,1,2],[2,2,3,1],[0,2,3,1]],[[1,1,1,0],[1,3,1,2],[2,2,3,1],[0,2,2,2]],[[1,1,1,0],[1,3,1,2],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,1,2],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[1,3,1,2],[2,2,3,1],[1,3,1,1]],[[1,1,1,0],[1,3,1,3],[2,2,3,2],[0,2,1,1]],[[1,1,1,0],[1,3,1,2],[2,2,4,2],[0,2,1,1]],[[1,1,1,0],[1,3,1,2],[2,2,3,3],[0,2,1,1]],[[1,1,1,0],[1,3,1,2],[2,2,3,2],[0,2,1,2]],[[1,1,1,0],[1,3,1,3],[2,2,3,2],[0,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,2,4,2],[0,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,2,3,3],[0,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,2,3,2],[0,3,2,0]],[[1,1,1,0],[1,3,1,2],[2,2,3,2],[0,2,3,0]],[[1,1,1,0],[1,3,1,2],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,1,2],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[1,3,1,2],[2,2,3,2],[1,3,0,1]],[[1,1,1,0],[1,3,1,2],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,1,2],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[1,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,1,1,0],[1,3,1,2],[3,3,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,0,2],[2,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,0,2],[1,3,2,1]],[[1,1,1,0],[1,3,1,2],[3,3,1,1],[1,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,1,1],[2,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,1,1],[1,3,2,1]],[[1,1,1,0],[1,4,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[1,3,1,3],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[1,3,1,2],[3,3,1,2],[0,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,4,1,2],[0,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,1,3],[0,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,1,2],[0,3,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,1,2],[0,2,3,1]],[[1,1,1,0],[1,3,1,2],[2,3,1,2],[0,2,2,2]],[[1,1,1,0],[1,4,1,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[1,3,1,2],[3,3,1,2],[1,1,2,1]],[[1,1,1,0],[1,3,1,2],[2,4,1,2],[1,1,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,1,2],[2,1,2,1]],[[1,1,1,0],[1,3,1,2],[3,3,1,2],[1,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,1,2],[2,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,1,2],[1,3,2,0]],[[1,1,1,0],[1,4,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[1,3,1,2],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[1,3,1,2],[2,3,2,1],[0,2,2,2]],[[1,1,1,0],[1,4,1,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[1,3,1,2],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[1,3,1,2],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,2,1],[2,1,2,1]],[[1,1,1,0],[1,3,1,3],[2,3,2,2],[0,1,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,2,3],[0,1,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,2,2],[0,1,3,1]],[[1,1,1,0],[1,3,1,2],[2,3,2,2],[0,1,2,2]],[[1,1,1,0],[1,4,1,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,1,2],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,2,2],[0,2,3,0]],[[1,1,1,0],[1,3,1,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,2,3],[1,0,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,2,2],[1,0,3,1]],[[1,1,1,0],[1,3,1,2],[2,3,2,2],[1,0,2,2]],[[1,1,1,0],[1,4,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,1,2],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,1,2],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,1,1,0],[1,4,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[1,3,1,2],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[1,3,1,2],[2,4,3,1],[0,1,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,4,1],[0,1,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,1],[0,1,3,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,1],[0,1,2,2]],[[1,1,1,0],[1,4,1,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,1,2],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,1,2],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,1,2],[2,3,4,1],[0,2,1,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,1],[0,3,1,1]],[[1,1,1,0],[1,4,1,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[1,3,1,2],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[1,3,1,2],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,4,1],[1,0,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,1],[2,0,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,1],[1,0,3,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,1],[1,0,2,2]],[[1,1,1,0],[1,4,1,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,1,2],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,1,2],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,1,2],[2,3,4,1],[1,1,1,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,1],[2,1,1,1]],[[1,1,1,0],[1,3,1,2],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,1,2],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,1,1,0],[1,3,1,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,4,2],[0,0,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,3],[0,0,2,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[0,0,2,2]],[[1,1,1,0],[1,4,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,1,3],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,1,2],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,1,2],[2,4,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,1,2],[2,3,4,2],[0,1,1,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,3],[0,1,1,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[0,1,1,2]],[[1,1,1,0],[1,4,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,1,3],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,1,2],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,1,2],[2,4,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,4,2],[0,1,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,3,3],[0,1,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[0,1,3,0]],[[1,1,1,0],[1,4,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,1,3],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,1,2],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,1,2],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,1,2],[2,3,4,2],[0,2,0,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,3],[0,2,0,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[0,3,0,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[0,2,0,2]],[[1,1,1,0],[1,4,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,1,3],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,1,2],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,1,2],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,1,2],[2,3,4,2],[0,2,1,0]],[[1,1,1,0],[1,3,1,2],[2,3,3,3],[0,2,1,0]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,1,1,0],[1,4,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,1,3],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,1,2],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,1,2],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,1,2],[2,3,4,2],[1,0,1,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,3],[1,0,1,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[2,0,1,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[1,0,1,2]],[[1,1,1,0],[1,4,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,1,3],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,1,2],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,1,2],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,4,2],[1,0,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,3,3],[1,0,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[2,0,2,0]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[1,0,3,0]],[[1,1,1,0],[1,4,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,1,3],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,1,2],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,1,2],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,1,2],[2,3,4,2],[1,1,0,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,3],[1,1,0,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[2,1,0,1]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[1,1,0,2]],[[1,1,1,0],[1,4,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,1,3],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,1,2],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,1,2],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,1,2],[2,3,4,2],[1,1,1,0]],[[1,1,1,0],[1,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,1,1,0],[1,4,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,1,2],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,1,2],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,1,1,0],[1,3,2,0],[0,3,4,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,0],[0,3,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,0],[0,3,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,0],[0,3,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,2,0],[1,2,4,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,0],[1,2,3,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,0],[1,2,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,0],[1,2,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,0],[1,2,3,2],[1,2,2,2]],[[1,1,1,0],[1,4,2,0],[1,3,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,0],[1,4,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,0],[1,3,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,0],[1,3,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,0],[1,3,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,0],[1,3,2,2],[1,2,2,2]],[[1,1,1,0],[1,4,2,0],[1,3,3,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,0],[1,4,3,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,0],[1,3,4,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,0],[1,3,3,2],[1,1,3,1]],[[1,1,1,0],[1,3,2,0],[1,3,3,2],[1,1,2,2]],[[1,1,1,0],[1,4,2,0],[1,3,3,2],[1,2,1,1]],[[1,1,1,0],[1,3,2,0],[1,4,3,2],[1,2,1,1]],[[1,1,1,0],[1,3,2,0],[1,3,4,2],[1,2,1,1]],[[1,1,1,0],[1,3,2,0],[1,3,3,2],[2,2,1,1]],[[1,1,1,0],[1,3,2,0],[1,3,3,2],[1,3,1,1]],[[1,1,1,0],[1,3,2,0],[3,1,3,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,0],[2,1,4,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,0],[2,1,3,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,0],[2,1,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,0],[2,1,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,0],[2,1,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,2,0],[3,2,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,0],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,0],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,0],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,0],[2,2,2,2],[1,2,2,2]],[[1,1,1,0],[1,3,2,0],[2,2,4,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,0],[2,2,3,2],[0,3,2,1]],[[1,1,1,0],[1,3,2,0],[2,2,3,2],[0,2,3,1]],[[1,1,1,0],[1,3,2,0],[2,2,3,2],[0,2,2,2]],[[1,1,1,0],[1,3,2,0],[3,2,3,2],[1,2,1,1]],[[1,1,1,0],[1,3,2,0],[2,2,3,2],[2,2,1,1]],[[1,1,1,0],[1,3,2,0],[2,2,3,2],[1,3,1,1]],[[1,1,1,0],[1,3,2,0],[3,3,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,0],[2,3,1,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,0],[2,3,1,2],[1,3,2,1]],[[1,1,1,0],[1,4,2,0],[2,3,2,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,0],[3,3,2,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,0],[2,4,2,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,0],[2,3,2,2],[0,3,2,1]],[[1,1,1,0],[1,3,2,0],[2,3,2,2],[0,2,3,1]],[[1,1,1,0],[1,3,2,0],[2,3,2,2],[0,2,2,2]],[[1,1,1,0],[1,4,2,0],[2,3,2,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,0],[3,3,2,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,0],[2,4,2,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,0],[2,3,2,2],[2,1,2,1]],[[1,1,1,0],[1,4,2,0],[2,3,3,2],[0,1,2,1]],[[1,1,1,0],[1,3,2,0],[3,3,3,2],[0,1,2,1]],[[1,1,1,0],[1,3,2,0],[2,4,3,2],[0,1,2,1]],[[1,1,1,0],[1,3,2,0],[2,3,4,2],[0,1,2,1]],[[1,1,1,0],[1,3,2,0],[2,3,3,2],[0,1,3,1]],[[1,1,1,0],[1,3,2,0],[2,3,3,2],[0,1,2,2]],[[1,1,1,0],[1,4,2,0],[2,3,3,2],[0,2,1,1]],[[1,1,1,0],[1,3,2,0],[3,3,3,2],[0,2,1,1]],[[1,1,1,0],[1,3,2,0],[2,4,3,2],[0,2,1,1]],[[1,1,1,0],[1,3,2,0],[2,3,4,2],[0,2,1,1]],[[1,1,1,0],[1,3,2,0],[2,3,3,2],[0,3,1,1]],[[1,1,1,0],[1,4,2,0],[2,3,3,2],[1,0,2,1]],[[1,1,1,0],[1,3,2,0],[3,3,3,2],[1,0,2,1]],[[1,1,1,0],[1,3,2,0],[2,4,3,2],[1,0,2,1]],[[1,1,1,0],[1,3,2,0],[2,3,4,2],[1,0,2,1]],[[1,1,1,0],[1,3,2,0],[2,3,3,2],[2,0,2,1]],[[1,1,1,0],[1,3,2,0],[2,3,3,2],[1,0,3,1]],[[1,1,1,0],[1,3,2,0],[2,3,3,2],[1,0,2,2]],[[1,1,1,0],[1,4,2,0],[2,3,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,2,0],[3,3,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,2,0],[2,4,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,2,0],[2,3,4,2],[1,1,1,1]],[[1,1,1,0],[1,3,2,0],[2,3,3,2],[2,1,1,1]],[[1,1,1,0],[1,3,2,0],[3,3,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,2,0],[2,4,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[1,3,2,1],[0,3,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[0,3,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[0,3,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,1],[0,3,2,2],[1,2,2,2]],[[1,1,1,0],[1,3,2,1],[0,3,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[0,3,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[0,3,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,2,1],[0,3,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,2,1],[0,3,4,2],[1,2,1,1]],[[1,1,1,0],[1,3,2,1],[0,3,3,3],[1,2,1,1]],[[1,1,1,0],[1,3,2,1],[0,3,3,2],[1,2,1,2]],[[1,1,1,0],[1,3,2,1],[0,3,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,1],[0,3,3,3],[1,2,2,0]],[[1,1,1,0],[1,3,2,1],[0,3,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,2,1],[0,3,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,2,1],[1,2,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,2,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,2,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[1,2,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,1],[1,2,2,2],[1,2,2,2]],[[1,1,1,0],[1,3,2,1],[1,2,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,2,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,2,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[1,2,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,2,1],[1,2,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,2,1],[1,2,4,2],[1,2,1,1]],[[1,1,1,0],[1,3,2,1],[1,2,3,3],[1,2,1,1]],[[1,1,1,0],[1,3,2,1],[1,2,3,2],[1,2,1,2]],[[1,1,1,0],[1,3,2,1],[1,2,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,1],[1,2,3,3],[1,2,2,0]],[[1,1,1,0],[1,3,2,1],[1,2,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,2,1],[1,2,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,2,1],[1,2,3,2],[1,2,3,0]],[[1,1,1,0],[1,4,2,1],[1,3,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,4,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,1,3],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,1,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,1,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,1,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,1],[1,3,1,2],[1,2,2,2]],[[1,1,1,0],[1,4,2,1],[1,3,2,1],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[1,3,2,1],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[1,3,2,1],[1,3,2,3],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,2,2],[1,1,3,1]],[[1,1,1,0],[1,3,2,1],[1,3,2,2],[1,1,2,2]],[[1,1,1,0],[1,4,2,1],[1,3,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,1],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,1],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[1,3,2,1],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[1,3,2,1],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[1,4,2,1],[1,3,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,4,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,0],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,0],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,0],[1,2,3,1]],[[1,1,1,0],[1,4,2,1],[1,3,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[1,4,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,4,1],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,1],[1,1,3,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,1],[1,1,2,2]],[[1,1,1,0],[1,4,2,1],[1,3,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,2,1],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,2,1],[1,3,4,1],[1,2,1,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[1,3,2,1],[1,3,4,2],[1,0,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,3],[1,0,2,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,2],[1,0,2,2]],[[1,1,1,0],[1,4,2,1],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,2,1],[1,4,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,2,1],[1,3,4,2],[1,1,1,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,3],[1,1,1,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,2],[1,1,1,2]],[[1,1,1,0],[1,4,2,1],[1,3,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,2,1],[1,4,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,2,1],[1,3,4,2],[1,1,2,0]],[[1,1,1,0],[1,3,2,1],[1,3,3,3],[1,1,2,0]],[[1,1,1,0],[1,3,2,1],[1,3,3,2],[1,1,3,0]],[[1,1,1,0],[1,4,2,1],[1,3,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,2,1],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,2,1],[1,3,4,2],[1,2,0,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,3],[1,2,0,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[1,3,2,1],[1,3,3,2],[1,2,0,2]],[[1,1,1,0],[1,4,2,1],[1,3,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,2,1],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,2,1],[1,3,4,2],[1,2,1,0]],[[1,1,1,0],[1,3,2,1],[1,3,3,3],[1,2,1,0]],[[1,1,1,0],[1,3,2,1],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[1,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,1,1,0],[1,3,2,1],[3,1,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,1,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,1,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,1,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[2,1,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,1],[2,1,2,2],[1,2,2,2]],[[1,1,1,0],[1,3,2,1],[3,1,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,1,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,1,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,1,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[2,1,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,2,1],[2,1,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,2,1],[2,1,4,2],[1,2,1,1]],[[1,1,1,0],[1,3,2,1],[2,1,3,3],[1,2,1,1]],[[1,1,1,0],[1,3,2,1],[2,1,3,2],[1,2,1,2]],[[1,1,1,0],[1,3,2,1],[3,1,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,1,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,1,3,3],[1,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,1,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,1,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,2,1],[2,1,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,2,1],[3,2,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,1,3],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,1,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,1,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,1,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,1],[2,2,1,2],[1,2,2,2]],[[1,1,1,0],[1,3,2,1],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[1,3,2,1],[2,2,2,1],[1,2,2,2]],[[1,1,1,0],[1,3,2,1],[2,2,2,3],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,2,2],[0,3,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,2,2],[0,2,3,1]],[[1,1,1,0],[1,3,2,1],[2,2,2,2],[0,2,2,2]],[[1,1,1,0],[1,3,2,1],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[1,3,2,1],[2,2,2,2],[1,2,3,0]],[[1,1,1,0],[1,3,2,1],[3,2,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,0],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,0],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,0],[1,2,3,1]],[[1,1,1,0],[1,3,2,1],[2,2,4,1],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,1],[0,3,2,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,1],[0,2,3,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,1],[0,2,2,2]],[[1,1,1,0],[1,3,2,1],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,1],[1,3,1,1]],[[1,1,1,0],[1,3,2,1],[2,2,4,2],[0,2,1,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,3],[0,2,1,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,2],[0,2,1,2]],[[1,1,1,0],[1,3,2,1],[2,2,4,2],[0,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,2,3,3],[0,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,2,3,2],[0,3,2,0]],[[1,1,1,0],[1,3,2,1],[2,2,3,2],[0,2,3,0]],[[1,1,1,0],[1,3,2,1],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[1,3,2,1],[2,2,3,2],[1,3,0,1]],[[1,1,1,0],[1,3,2,1],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,2,1],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[1,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,1,1,0],[1,3,2,1],[3,3,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,0,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,0,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,1],[3,3,1,1],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,1,1],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,1,1],[1,3,2,1]],[[1,1,1,0],[1,4,2,1],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[3,3,1,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,4,1,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,1,3],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,1,2],[0,3,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,1,2],[0,2,3,1]],[[1,1,1,0],[1,3,2,1],[2,3,1,2],[0,2,2,2]],[[1,1,1,0],[1,4,2,1],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[3,3,1,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[2,4,1,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,1,2],[2,1,2,1]],[[1,1,1,0],[1,3,2,1],[3,3,1,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,1,2],[2,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,1,2],[1,3,2,0]],[[1,1,1,0],[1,3,2,1],[3,3,2,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,2,0],[2,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,2,0],[1,3,2,1]],[[1,1,1,0],[1,4,2,1],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[1,3,2,1],[2,3,2,1],[0,2,2,2]],[[1,1,1,0],[1,4,2,1],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,2,1],[2,1,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,2,3],[0,1,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,2,2],[0,1,3,1]],[[1,1,1,0],[1,3,2,1],[2,3,2,2],[0,1,2,2]],[[1,1,1,0],[1,4,2,1],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,2,1],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,2,2],[0,2,3,0]],[[1,1,1,0],[1,3,2,1],[2,3,2,3],[1,0,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,2,2],[1,0,3,1]],[[1,1,1,0],[1,3,2,1],[2,3,2,2],[1,0,2,2]],[[1,1,1,0],[1,4,2,1],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,2,1],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,2,1],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,1,1,0],[1,4,2,1],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[3,3,3,0],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,4,3,0],[0,2,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,0],[0,3,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,0],[0,2,3,1]],[[1,1,1,0],[1,4,2,1],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[3,3,3,0],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[2,4,3,0],[1,1,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,0],[2,1,2,1]],[[1,1,1,0],[1,4,2,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[1,3,2,1],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[1,3,2,1],[2,4,3,1],[0,1,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,4,1],[0,1,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,1],[0,1,3,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,1],[0,1,2,2]],[[1,1,1,0],[1,4,2,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,2,1],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,2,1],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,2,1],[2,3,4,1],[0,2,1,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,1],[0,3,1,1]],[[1,1,1,0],[1,4,2,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[1,3,2,1],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[1,3,2,1],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,4,1],[1,0,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,1],[2,0,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,1],[1,0,3,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,1],[1,0,2,2]],[[1,1,1,0],[1,4,2,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,2,1],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,2,1],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,2,1],[2,3,4,1],[1,1,1,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,1],[2,1,1,1]],[[1,1,1,0],[1,4,2,1],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,2,1],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,2,1],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,1,1,0],[1,3,2,1],[2,3,4,2],[0,0,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,3],[0,0,2,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[0,0,2,2]],[[1,1,1,0],[1,4,2,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,2,1],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,2,1],[2,4,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,2,1],[2,3,4,2],[0,1,1,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,3],[0,1,1,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[0,1,1,2]],[[1,1,1,0],[1,4,2,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,2,1],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,2,1],[2,4,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,4,2],[0,1,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,3,3],[0,1,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[0,1,3,0]],[[1,1,1,0],[1,4,2,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,2,1],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,2,1],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,2,1],[2,3,4,2],[0,2,0,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,3],[0,2,0,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[0,3,0,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[0,2,0,2]],[[1,1,1,0],[1,4,2,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,2,1],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,2,1],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,2,1],[2,3,4,2],[0,2,1,0]],[[1,1,1,0],[1,3,2,1],[2,3,3,3],[0,2,1,0]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,1,1,0],[1,4,2,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,2,1],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,2,1],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,2,1],[2,3,4,2],[1,0,1,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,3],[1,0,1,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[2,0,1,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[1,0,1,2]],[[1,1,1,0],[1,4,2,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,2,1],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,2,1],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,4,2],[1,0,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,3,3],[1,0,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[2,0,2,0]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[1,0,3,0]],[[1,1,1,0],[1,4,2,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,2,1],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,2,1],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,2,1],[2,3,4,2],[1,1,0,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,3],[1,1,0,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[2,1,0,1]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[1,1,0,2]],[[1,1,1,0],[1,4,2,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,2,1],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,2,1],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,2,1],[2,3,4,2],[1,1,1,0]],[[1,1,1,0],[1,3,2,1],[2,3,3,3],[1,1,1,0]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,1,1,0],[1,4,2,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,2,1],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,2,1],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,1,1,0],[1,3,2,2],[0,3,4,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[0,3,3,0],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[0,3,3,0],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[0,3,3,0],[1,2,2,2]],[[1,1,1,0],[1,3,2,2],[0,3,4,1],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[0,3,3,1],[1,3,2,0]],[[1,1,1,0],[1,3,2,2],[0,3,3,1],[1,2,3,0]],[[1,1,1,0],[1,3,2,2],[1,0,3,3],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,0,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[1,0,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,2,3],[1,1,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,1,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,1,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,1,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[1,1,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[1,1,2,2],[1,2,2,2]],[[1,1,1,0],[1,3,2,2],[1,1,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,1,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,1,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[1,1,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[1,1,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,2,3],[1,1,3,2],[1,2,1,1]],[[1,1,1,0],[1,3,2,2],[1,1,4,2],[1,2,1,1]],[[1,1,1,0],[1,3,2,2],[1,1,3,3],[1,2,1,1]],[[1,1,1,0],[1,3,2,2],[1,1,3,2],[1,2,1,2]],[[1,1,1,0],[1,3,2,3],[1,1,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[1,1,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[1,1,3,3],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[1,1,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,2,2],[1,1,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,2,2],[1,1,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,2,3],[1,2,2,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[1,2,2,3],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[1,2,2,2],[1,1,3,1]],[[1,1,1,0],[1,3,2,2],[1,2,2,2],[1,1,2,2]],[[1,1,1,0],[1,3,2,2],[1,2,4,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,0],[2,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,0],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,0],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,0],[1,2,2,2]],[[1,1,1,0],[1,3,2,2],[1,2,4,1],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,1],[1,1,3,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,1],[1,1,2,2]],[[1,1,1,0],[1,3,2,2],[1,2,4,1],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[1,2,3,1],[2,2,2,0]],[[1,1,1,0],[1,3,2,2],[1,2,3,1],[1,3,2,0]],[[1,1,1,0],[1,3,2,2],[1,2,3,1],[1,2,3,0]],[[1,1,1,0],[1,3,2,2],[1,2,4,2],[1,0,2,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,3],[1,0,2,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,2],[1,0,2,2]],[[1,1,1,0],[1,3,2,3],[1,2,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,2,2],[1,2,4,2],[1,1,1,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,3],[1,1,1,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,2],[1,1,1,2]],[[1,1,1,0],[1,3,2,3],[1,2,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,2,2],[1,2,4,2],[1,1,2,0]],[[1,1,1,0],[1,3,2,2],[1,2,3,3],[1,1,2,0]],[[1,1,1,0],[1,3,2,2],[1,2,3,2],[1,1,3,0]],[[1,1,1,0],[1,3,2,3],[1,2,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,2,2],[1,2,4,2],[1,2,0,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,3],[1,2,0,1]],[[1,1,1,0],[1,3,2,2],[1,2,3,2],[1,2,0,2]],[[1,1,1,0],[1,3,2,3],[1,2,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,2,2],[1,2,4,2],[1,2,1,0]],[[1,1,1,0],[1,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,1,1,0],[1,4,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,3],[1,3,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,4,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,3,0,3],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,3,0,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,3,0,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[1,3,0,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[1,3,0,2],[1,2,2,2]],[[1,1,1,0],[1,4,2,2],[1,3,2,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,4,2,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,3,2,0],[2,2,2,1]],[[1,1,1,0],[1,3,2,2],[1,3,2,0],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[1,3,2,0],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[1,3,2,0],[1,2,2,2]],[[1,1,1,0],[1,4,2,2],[1,3,2,1],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[1,4,2,1],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[1,3,2,1],[2,2,2,0]],[[1,1,1,0],[1,3,2,2],[1,3,2,1],[1,3,2,0]],[[1,1,1,0],[1,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,1,1,0],[1,4,2,2],[1,3,3,0],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[1,4,3,0],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[1,3,4,0],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[1,3,3,0],[1,1,3,1]],[[1,1,1,0],[1,3,2,2],[1,3,3,0],[1,1,2,2]],[[1,1,1,0],[1,4,2,2],[1,3,3,0],[1,2,1,1]],[[1,1,1,0],[1,3,2,2],[1,4,3,0],[1,2,1,1]],[[1,1,1,0],[1,3,2,2],[1,3,4,0],[1,2,1,1]],[[1,1,1,0],[1,3,2,2],[1,3,3,0],[2,2,1,1]],[[1,1,1,0],[1,3,2,2],[1,3,3,0],[1,3,1,1]],[[1,1,1,0],[1,4,2,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,2,2],[1,4,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,2,2],[1,3,4,1],[1,1,1,1]],[[1,1,1,0],[1,4,2,2],[1,3,3,1],[1,1,2,0]],[[1,1,1,0],[1,3,2,2],[1,4,3,1],[1,1,2,0]],[[1,1,1,0],[1,3,2,2],[1,3,4,1],[1,1,2,0]],[[1,1,1,0],[1,3,2,2],[1,3,3,1],[1,1,3,0]],[[1,1,1,0],[1,4,2,2],[1,3,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,2,2],[1,4,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,2,2],[1,3,4,1],[1,2,0,1]],[[1,1,1,0],[1,3,2,2],[1,3,3,1],[2,2,0,1]],[[1,1,1,0],[1,3,2,2],[1,3,3,1],[1,3,0,1]],[[1,1,1,0],[1,4,2,2],[1,3,3,1],[1,2,1,0]],[[1,1,1,0],[1,3,2,2],[1,4,3,1],[1,2,1,0]],[[1,1,1,0],[1,3,2,2],[1,3,4,1],[1,2,1,0]],[[1,1,1,0],[1,3,2,2],[1,3,3,1],[2,2,1,0]],[[1,1,1,0],[1,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,1,1,0],[1,3,2,3],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[3,0,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,0,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,0,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,0,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[2,0,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[2,0,2,2],[1,2,2,2]],[[1,1,1,0],[1,3,2,2],[3,0,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,0,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,0,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,0,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[2,0,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[2,0,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,2,2],[2,0,3,3],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,0,3,2],[0,2,3,1]],[[1,1,1,0],[1,3,2,2],[2,0,3,2],[0,2,2,2]],[[1,1,1,0],[1,3,2,3],[2,0,3,2],[1,2,1,1]],[[1,1,1,0],[1,3,2,2],[2,0,4,2],[1,2,1,1]],[[1,1,1,0],[1,3,2,2],[2,0,3,3],[1,2,1,1]],[[1,1,1,0],[1,3,2,2],[2,0,3,2],[1,2,1,2]],[[1,1,1,0],[1,3,2,3],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[3,0,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,0,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,0,3,3],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,0,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,0,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,2,2],[2,0,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,2,3],[2,1,2,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,1,2,3],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,1,2,2],[0,3,2,1]],[[1,1,1,0],[1,3,2,2],[2,1,2,2],[0,2,3,1]],[[1,1,1,0],[1,3,2,2],[2,1,2,2],[0,2,2,2]],[[1,1,1,0],[1,3,2,2],[3,1,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,1,4,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,1,3,0],[2,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,1,3,0],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[2,1,3,0],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[2,1,3,0],[1,2,2,2]],[[1,1,1,0],[1,3,2,2],[2,1,4,1],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,1,3,1],[0,3,2,1]],[[1,1,1,0],[1,3,2,2],[2,1,3,1],[0,2,3,1]],[[1,1,1,0],[1,3,2,2],[2,1,3,1],[0,2,2,2]],[[1,1,1,0],[1,3,2,2],[3,1,3,1],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,1,4,1],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,1,3,1],[2,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,1,3,1],[1,3,2,0]],[[1,1,1,0],[1,3,2,2],[2,1,3,1],[1,2,3,0]],[[1,1,1,0],[1,3,2,3],[2,1,3,2],[0,2,1,1]],[[1,1,1,0],[1,3,2,2],[2,1,4,2],[0,2,1,1]],[[1,1,1,0],[1,3,2,2],[2,1,3,3],[0,2,1,1]],[[1,1,1,0],[1,3,2,2],[2,1,3,2],[0,2,1,2]],[[1,1,1,0],[1,3,2,3],[2,1,3,2],[0,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,1,4,2],[0,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,1,3,3],[0,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,1,3,2],[0,3,2,0]],[[1,1,1,0],[1,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,1,1,0],[1,3,2,3],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[3,2,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,0,3],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,0,2],[2,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,0,2],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,0,2],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[2,2,0,2],[1,2,2,2]],[[1,1,1,0],[1,3,2,2],[3,2,2,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,2,0],[2,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,2,0],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,2,0],[1,2,3,1]],[[1,1,1,0],[1,3,2,2],[2,2,2,0],[1,2,2,2]],[[1,1,1,0],[1,3,2,2],[3,2,2,1],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,2,2,1],[2,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,2,2,1],[1,3,2,0]],[[1,1,1,0],[1,3,2,2],[2,2,2,1],[1,2,3,0]],[[1,1,1,0],[1,3,2,3],[2,2,2,2],[0,1,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,2,3],[0,1,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,2,2],[0,1,3,1]],[[1,1,1,0],[1,3,2,2],[2,2,2,2],[0,1,2,2]],[[1,1,1,0],[1,3,2,3],[2,2,2,2],[1,0,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,2,3],[1,0,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,2,2],[1,0,3,1]],[[1,1,1,0],[1,3,2,2],[2,2,2,2],[1,0,2,2]],[[1,1,1,0],[1,3,2,2],[2,2,4,0],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,0],[0,3,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,0],[0,2,3,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,0],[0,2,2,2]],[[1,1,1,0],[1,3,2,2],[3,2,3,0],[1,2,1,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,0],[2,2,1,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,0],[1,3,1,1]],[[1,1,1,0],[1,3,2,2],[2,2,4,1],[0,1,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,1],[0,1,3,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,1],[0,1,2,2]],[[1,1,1,0],[1,3,2,2],[2,2,4,1],[0,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,2,3,1],[0,3,2,0]],[[1,1,1,0],[1,3,2,2],[2,2,3,1],[0,2,3,0]],[[1,1,1,0],[1,3,2,2],[2,2,4,1],[1,0,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,1],[1,0,3,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,1],[1,0,2,2]],[[1,1,1,0],[1,3,2,2],[3,2,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,1],[2,2,0,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,1],[1,3,0,1]],[[1,1,1,0],[1,3,2,2],[3,2,3,1],[1,2,1,0]],[[1,1,1,0],[1,3,2,2],[2,2,3,1],[2,2,1,0]],[[1,1,1,0],[1,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,1,1,0],[1,3,2,3],[2,2,3,2],[0,0,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,4,2],[0,0,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,3],[0,0,2,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,2],[0,0,2,2]],[[1,1,1,0],[1,3,2,3],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,2,2],[2,2,4,2],[0,1,1,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,3],[0,1,1,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,2],[0,1,1,2]],[[1,1,1,0],[1,3,2,3],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,2,2],[2,2,4,2],[0,1,2,0]],[[1,1,1,0],[1,3,2,2],[2,2,3,3],[0,1,2,0]],[[1,1,1,0],[1,3,2,2],[2,2,3,2],[0,1,3,0]],[[1,1,1,0],[1,3,2,3],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,2,2],[2,2,4,2],[0,2,0,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,3],[0,2,0,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,2],[0,2,0,2]],[[1,1,1,0],[1,3,2,3],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,2,2],[2,2,4,2],[0,2,1,0]],[[1,1,1,0],[1,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,1,1,0],[1,3,2,3],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,2,2],[2,2,4,2],[1,0,1,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,3],[1,0,1,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,2],[1,0,1,2]],[[1,1,1,0],[1,3,2,3],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,2,2],[2,2,4,2],[1,0,2,0]],[[1,1,1,0],[1,3,2,2],[2,2,3,3],[1,0,2,0]],[[1,1,1,0],[1,3,2,2],[2,2,3,2],[1,0,3,0]],[[1,1,1,0],[1,3,2,3],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,2,2],[2,2,4,2],[1,1,0,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,3],[1,1,0,1]],[[1,1,1,0],[1,3,2,2],[2,2,3,2],[1,1,0,2]],[[1,1,1,0],[1,3,2,3],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,2,2],[2,2,4,2],[1,1,1,0]],[[1,1,1,0],[1,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,1,0],[2,4,2,0],[0,3,3,2],[1,0,2,1]],[[1,1,1,0],[1,4,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,3],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[3,3,0,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,4,0,2],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,0,3],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,0,2],[0,3,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,0,2],[0,2,3,1]],[[1,1,1,0],[1,3,2,2],[2,3,0,2],[0,2,2,2]],[[1,1,1,0],[1,4,2,2],[2,3,0,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[3,3,0,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[2,4,0,2],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,0,2],[2,1,2,1]],[[1,1,1,0],[1,3,2,2],[3,3,1,0],[1,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,1,0],[2,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,1,0],[1,3,2,1]],[[1,1,1,0],[1,3,2,2],[3,3,1,1],[1,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,1,1],[2,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,3,1,0],[2,3,2,0],[0,3,3,2],[1,0,2,1]],[[2,2,1,0],[2,3,2,0],[0,3,3,2],[1,0,2,1]],[[1,2,1,0],[2,4,2,0],[0,3,3,2],[0,2,1,1]],[[1,3,1,0],[2,3,2,0],[0,3,3,2],[0,2,1,1]],[[2,2,1,0],[2,3,2,0],[0,3,3,2],[0,2,1,1]],[[1,2,1,0],[2,4,2,0],[0,3,3,2],[0,1,2,1]],[[1,1,1,0],[1,4,2,2],[2,3,2,0],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[3,3,2,0],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,4,2,0],[0,2,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,2,0],[0,3,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,2,0],[0,2,3,1]],[[1,1,1,0],[1,3,2,2],[2,3,2,0],[0,2,2,2]],[[1,1,1,0],[1,4,2,2],[2,3,2,0],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[3,3,2,0],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[2,4,2,0],[1,1,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,2,0],[2,1,2,1]],[[1,1,1,0],[1,4,2,2],[2,3,2,1],[0,2,2,0]],[[1,1,1,0],[1,3,2,2],[3,3,2,1],[0,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,4,2,1],[0,2,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,2,1],[0,3,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,2,1],[0,2,3,0]],[[1,1,1,0],[1,4,2,2],[2,3,2,1],[1,1,2,0]],[[1,1,1,0],[1,3,2,2],[3,3,2,1],[1,1,2,0]],[[1,1,1,0],[1,3,2,2],[2,4,2,1],[1,1,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,3,1,0],[2,3,2,0],[0,3,3,2],[0,1,2,1]],[[2,2,1,0],[2,3,2,0],[0,3,3,2],[0,1,2,1]],[[1,2,1,0],[2,4,2,0],[0,3,2,2],[0,2,2,1]],[[1,3,1,0],[2,3,2,0],[0,3,2,2],[0,2,2,1]],[[2,2,1,0],[2,3,2,0],[0,3,2,2],[0,2,2,1]],[[1,1,1,0],[1,4,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[1,3,2,2],[3,3,3,0],[0,1,2,1]],[[1,1,1,0],[1,3,2,2],[2,4,3,0],[0,1,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,4,0],[0,1,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,0],[0,1,3,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,0],[0,1,2,2]],[[1,1,1,0],[1,4,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[1,3,2,2],[3,3,3,0],[0,2,1,1]],[[1,1,1,0],[1,3,2,2],[2,4,3,0],[0,2,1,1]],[[1,1,1,0],[1,3,2,2],[2,3,4,0],[0,2,1,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,0],[0,3,1,1]],[[1,1,1,0],[1,4,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[1,3,2,2],[3,3,3,0],[1,0,2,1]],[[1,1,1,0],[1,3,2,2],[2,4,3,0],[1,0,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,4,0],[1,0,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,0],[2,0,2,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,0],[1,0,3,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,0],[1,0,2,2]],[[1,1,1,0],[1,4,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,0],[1,3,2,2],[3,3,3,0],[1,1,1,1]],[[1,1,1,0],[1,3,2,2],[2,4,3,0],[1,1,1,1]],[[1,1,1,0],[1,3,2,2],[2,3,4,0],[1,1,1,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,0],[2,1,1,1]],[[1,1,1,0],[1,4,2,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,0],[1,3,2,2],[3,3,3,0],[1,2,0,1]],[[1,1,1,0],[1,3,2,2],[2,4,3,0],[1,2,0,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,1,1,0],[1,4,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,0],[1,3,2,2],[3,3,3,1],[0,1,1,1]],[[1,1,1,0],[1,3,2,2],[2,4,3,1],[0,1,1,1]],[[1,1,1,0],[1,3,2,2],[2,3,4,1],[0,1,1,1]],[[1,1,1,0],[1,4,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,0],[1,3,2,2],[3,3,3,1],[0,1,2,0]],[[1,1,1,0],[1,3,2,2],[2,4,3,1],[0,1,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,4,1],[0,1,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,3,1],[0,1,3,0]],[[1,1,1,0],[1,4,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,0],[1,3,2,2],[3,3,3,1],[0,2,0,1]],[[1,1,1,0],[1,3,2,2],[2,4,3,1],[0,2,0,1]],[[1,1,1,0],[1,3,2,2],[2,3,4,1],[0,2,0,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,1],[0,3,0,1]],[[1,1,1,0],[1,4,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,0],[1,3,2,2],[3,3,3,1],[0,2,1,0]],[[1,1,1,0],[1,3,2,2],[2,4,3,1],[0,2,1,0]],[[1,1,1,0],[1,3,2,2],[2,3,4,1],[0,2,1,0]],[[1,1,1,0],[1,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,1,1,0],[1,4,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[1,3,2,2],[3,3,3,1],[1,0,1,1]],[[1,1,1,0],[1,3,2,2],[2,4,3,1],[1,0,1,1]],[[1,1,1,0],[1,3,2,2],[2,3,4,1],[1,0,1,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,1],[2,0,1,1]],[[1,1,1,0],[1,4,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[1,3,2,2],[3,3,3,1],[1,0,2,0]],[[1,1,1,0],[1,3,2,2],[2,4,3,1],[1,0,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,4,1],[1,0,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,3,1],[2,0,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,3,1],[1,0,3,0]],[[1,1,1,0],[1,4,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[1,3,2,2],[3,3,3,1],[1,1,0,1]],[[1,1,1,0],[1,3,2,2],[2,4,3,1],[1,1,0,1]],[[1,1,1,0],[1,3,2,2],[2,3,4,1],[1,1,0,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,1],[2,1,0,1]],[[1,1,1,0],[1,4,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[1,3,2,2],[3,3,3,1],[1,1,1,0]],[[1,1,1,0],[1,3,2,2],[2,4,3,1],[1,1,1,0]],[[1,1,1,0],[1,3,2,2],[2,3,4,1],[1,1,1,0]],[[1,1,1,0],[1,3,2,2],[2,3,3,1],[2,1,1,0]],[[1,1,1,0],[1,4,2,2],[2,3,3,1],[1,2,0,0]],[[1,1,1,0],[1,3,2,2],[3,3,3,1],[1,2,0,0]],[[1,1,1,0],[1,3,2,2],[2,4,3,1],[1,2,0,0]],[[1,1,1,0],[1,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,1,1,0],[1,3,2,3],[2,3,3,2],[0,0,1,1]],[[1,1,1,0],[1,3,2,2],[2,3,4,2],[0,0,1,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,3],[0,0,1,1]],[[1,1,1,0],[1,3,2,2],[2,3,3,2],[0,0,1,2]],[[1,1,1,0],[1,3,2,3],[2,3,3,2],[0,0,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,4,2],[0,0,2,0]],[[1,1,1,0],[1,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,1,0],[2,3,1,2],[2,3,0,1],[1,3,2,0]],[[1,2,1,0],[2,3,1,2],[2,3,0,1],[2,2,2,0]],[[1,2,1,0],[2,3,1,2],[3,3,0,1],[1,2,2,0]],[[1,2,1,0],[3,3,1,2],[2,3,0,1],[1,2,2,0]],[[2,2,1,0],[2,3,1,2],[2,3,0,1],[1,2,2,0]],[[1,2,1,0],[2,3,1,2],[2,3,0,0],[1,3,2,1]],[[1,2,1,0],[2,3,1,2],[2,3,0,0],[2,2,2,1]],[[1,2,1,0],[2,3,1,2],[3,3,0,0],[1,2,2,1]],[[1,2,1,0],[3,3,1,2],[2,3,0,0],[1,2,2,1]],[[2,2,1,0],[2,3,1,2],[2,3,0,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[0,3,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[0,3,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,0],[0,3,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,3,0],[0,3,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,3,0],[0,3,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,0],[0,3,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,0],[0,3,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,3,0],[1,1,4,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[1,1,3,2],[2,2,2,1]],[[1,1,1,0],[1,3,3,0],[1,1,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,3,0],[1,1,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,3,0],[1,1,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,3,0],[1,2,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[1,2,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,0],[1,2,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,0],[1,2,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,3,0],[1,2,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,3,0],[1,2,4,2],[1,1,2,1]],[[1,1,1,0],[1,3,3,0],[1,2,3,2],[1,1,3,1]],[[1,1,1,0],[1,3,3,0],[1,2,3,2],[1,1,2,2]],[[1,1,1,0],[1,3,3,0],[1,2,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,0],[1,2,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,0],[1,2,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,0],[1,2,3,2],[1,2,3,0]],[[1,1,1,0],[1,4,3,0],[1,3,2,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,0],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,0],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[1,3,3,0],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[1,4,3,0],[1,3,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,0],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,0],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,0],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,0],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[1,4,3,0],[1,3,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[1,4,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[1,3,3,0],[2,2,2,1]],[[1,1,1,0],[1,3,3,0],[1,3,3,0],[1,3,2,1]],[[1,1,1,0],[1,3,3,0],[1,3,3,0],[1,2,3,1]],[[1,1,1,0],[1,4,3,0],[1,3,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,0],[1,4,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,0],[1,3,4,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,0],[1,3,3,1],[1,1,3,1]],[[1,1,1,0],[1,3,3,0],[1,3,3,1],[1,1,2,2]],[[1,1,1,0],[1,4,3,0],[1,3,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,0],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,0],[1,3,4,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,0],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[1,3,3,0],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[1,4,3,0],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,0],[1,4,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,0],[1,3,4,2],[1,1,1,1]],[[1,1,1,0],[1,4,3,0],[1,3,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,0],[1,4,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,0],[1,3,4,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,0],[1,3,3,2],[1,1,3,0]],[[1,1,1,0],[1,4,3,0],[1,3,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,0],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,0],[1,3,4,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,0],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[1,3,3,0],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[1,4,3,0],[1,3,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,0],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,0],[1,3,4,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,0],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[1,3,3,0],[1,3,3,2],[1,3,1,0]],[[1,1,1,0],[1,3,3,0],[3,0,3,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,0,4,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,0,3,2],[2,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,0,3,2],[1,3,2,1]],[[1,1,1,0],[1,3,3,0],[2,0,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,3,0],[2,0,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,3,0],[3,1,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,1,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,1,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,1,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,0],[2,1,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,3,0],[2,1,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,3,0],[2,1,4,2],[0,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,1,3,2],[0,3,2,1]],[[1,1,1,0],[1,3,3,0],[2,1,3,2],[0,2,3,1]],[[1,1,1,0],[1,3,3,0],[2,1,3,2],[0,2,2,2]],[[1,1,1,0],[1,3,3,0],[3,1,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,0],[2,1,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,0],[2,1,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,0],[2,1,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,0],[2,1,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,3,0],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,0],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[1,3,3,0],[2,2,2,1],[1,2,2,2]],[[1,1,1,0],[1,3,3,0],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,0],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,0],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,0],[2,2,2,2],[1,2,3,0]],[[1,1,1,0],[1,3,3,0],[3,2,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,0],[2,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,0],[1,3,2,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,0],[1,2,3,1]],[[1,1,1,0],[1,3,3,0],[2,2,4,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,1],[0,3,2,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,1],[0,2,3,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,1],[0,2,2,2]],[[1,1,1,0],[1,3,3,0],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,1],[1,3,1,1]],[[1,1,1,0],[1,3,3,0],[2,2,4,2],[0,1,2,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,2],[0,1,3,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,2],[0,1,2,2]],[[1,1,1,0],[1,3,3,0],[2,2,4,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,0],[2,2,3,2],[0,3,2,0]],[[1,1,1,0],[1,3,3,0],[2,2,3,2],[0,2,3,0]],[[1,1,1,0],[1,3,3,0],[2,2,4,2],[1,0,2,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,2],[1,0,3,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,2],[1,0,2,2]],[[1,1,1,0],[1,3,3,0],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[1,3,3,0],[2,2,3,2],[1,3,0,1]],[[1,1,1,0],[1,3,3,0],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,0],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[1,3,3,0],[2,2,3,2],[1,3,1,0]],[[1,1,1,0],[1,3,3,0],[3,3,1,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,1,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,1,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,0],[3,3,1,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,0],[2,3,1,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,0],[2,3,1,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,0],[3,3,2,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,2,0],[2,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,2,0],[1,3,2,1]],[[1,1,1,0],[1,4,3,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,0],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[1,3,3,0],[2,3,2,1],[0,2,2,2]],[[1,1,1,0],[1,4,3,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,0],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,0],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,2,1],[2,1,2,1]],[[1,1,1,0],[1,4,3,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,0],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,0],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,0],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[1,3,3,0],[2,3,2,2],[0,2,3,0]],[[1,1,1,0],[1,4,3,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,0],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,0],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,0],[2,3,2,2],[2,1,2,0]],[[1,1,1,0],[1,4,3,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[1,3,3,0],[3,3,3,0],[0,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,4,3,0],[0,2,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,0],[0,3,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,0],[0,2,3,1]],[[1,1,1,0],[1,4,3,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,0],[3,3,3,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,0],[2,4,3,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,0],[2,1,2,1]],[[1,1,1,0],[1,4,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[1,3,3,0],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[1,3,3,0],[2,4,3,1],[0,1,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,4,1],[0,1,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,1],[0,1,3,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,1],[0,1,2,2]],[[1,1,1,0],[1,4,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,3,0],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,3,0],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,3,0],[2,3,4,1],[0,2,1,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,1],[0,3,1,1]],[[1,1,1,0],[1,4,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[1,3,3,0],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[1,3,3,0],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,4,1],[1,0,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,1],[2,0,2,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,1],[1,0,3,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,1],[1,0,2,2]],[[1,1,1,0],[1,4,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,0],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,0],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,0],[2,3,4,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,1],[2,1,1,1]],[[1,1,1,0],[1,4,3,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,0],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,0],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,1],[2,2,0,1]],[[1,1,1,0],[1,4,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,0],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,0],[2,4,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,0],[2,3,4,2],[0,1,1,1]],[[1,1,1,0],[1,4,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,0],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,0],[2,4,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,0],[2,3,4,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,0],[2,3,3,2],[0,1,3,0]],[[1,1,1,0],[1,4,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,0],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,0],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,0],[2,3,4,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,2],[0,3,0,1]],[[1,1,1,0],[1,4,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,0],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,0],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,0],[2,3,4,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,0],[2,3,3,2],[0,3,1,0]],[[1,1,1,0],[1,4,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,0],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,0],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,0],[2,3,4,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,2],[2,0,1,1]],[[1,1,1,0],[1,4,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,0],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,0],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,0],[2,3,4,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,0],[2,3,3,2],[2,0,2,0]],[[1,1,1,0],[1,3,3,0],[2,3,3,2],[1,0,3,0]],[[1,1,1,0],[1,4,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,0],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,0],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,0],[2,3,4,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,0],[2,3,3,2],[2,1,0,1]],[[1,1,1,0],[1,4,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,0],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,0],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,0],[2,3,4,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,0],[2,3,3,2],[2,1,1,0]],[[1,1,1,0],[1,4,3,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,0],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,0],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,0],[2,3,3,2],[2,2,0,0]],[[1,1,1,0],[1,3,3,1],[1,0,3,3],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,0,3,2],[1,2,3,1]],[[1,1,1,0],[1,3,3,1],[1,0,3,2],[1,2,2,2]],[[1,1,1,0],[1,3,3,1],[1,1,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,1,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,1,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,3,1],[1,1,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,3,1],[1,1,2,2],[1,2,2,2]],[[1,1,1,0],[1,4,3,1],[1,1,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,4,1],[1,1,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,1,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,1,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,1,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,1],[1,1,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,3,1],[1,1,3,1],[1,2,2,2]],[[1,1,1,0],[1,4,3,1],[1,1,3,2],[1,2,1,1]],[[1,1,1,0],[1,3,4,1],[1,1,3,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,1],[1,1,4,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,1],[1,1,3,3],[1,2,1,1]],[[1,1,1,0],[1,3,3,1],[1,1,3,2],[1,2,1,2]],[[1,1,1,0],[1,4,3,1],[1,1,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,4,1],[1,1,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,1],[1,1,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,1],[1,1,3,3],[1,2,2,0]],[[1,1,1,0],[1,3,3,1],[1,1,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,1],[1,1,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,1],[1,1,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,3,1],[1,2,2,3],[1,1,2,1]],[[1,1,1,0],[1,3,3,1],[1,2,2,2],[1,1,3,1]],[[1,1,1,0],[1,3,3,1],[1,2,2,2],[1,1,2,2]],[[1,1,1,0],[1,4,3,1],[1,2,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,4,1],[1,2,3,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,1],[1,2,4,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,1],[1,2,3,1],[1,1,3,1]],[[1,1,1,0],[1,3,3,1],[1,2,3,1],[1,1,2,2]],[[1,1,1,0],[1,4,3,1],[1,2,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,4,1],[1,2,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,1],[1,2,4,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,1],[1,2,4,2],[1,0,2,1]],[[1,1,1,0],[1,3,3,1],[1,2,3,3],[1,0,2,1]],[[1,1,1,0],[1,3,3,1],[1,2,3,2],[1,0,2,2]],[[1,1,1,0],[1,4,3,1],[1,2,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,4,1],[1,2,3,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,1],[1,2,4,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,1],[1,2,3,3],[1,1,1,1]],[[1,1,1,0],[1,3,3,1],[1,2,3,2],[1,1,1,2]],[[1,1,1,0],[1,4,3,1],[1,2,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,4,1],[1,2,3,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,1],[1,2,4,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,1],[1,2,3,3],[1,1,2,0]],[[1,1,1,0],[1,3,3,1],[1,2,3,2],[1,1,3,0]],[[1,1,1,0],[1,4,3,1],[1,2,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,4,1],[1,2,3,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,1],[1,2,4,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,1],[1,2,3,3],[1,2,0,1]],[[1,1,1,0],[1,3,3,1],[1,2,3,2],[1,2,0,2]],[[1,1,1,0],[1,4,3,1],[1,2,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,4,1],[1,2,3,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,1],[1,2,4,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,1],[1,2,3,3],[1,2,1,0]],[[1,1,1,0],[1,4,3,1],[1,3,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,4,1],[1,3,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,4,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,3,0,3],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,3,0,2],[2,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,3,0,2],[1,3,2,1]],[[1,1,1,0],[1,3,3,1],[1,3,0,2],[1,2,3,1]],[[1,1,1,0],[1,3,3,1],[1,3,0,2],[1,2,2,2]],[[1,1,1,0],[1,4,3,1],[1,3,1,1],[1,2,2,1]],[[1,1,1,0],[1,3,4,1],[1,3,1,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,4,1,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,3,1,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,1],[1,3,1,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,1],[1,3,1,1],[1,2,3,1]],[[1,1,1,0],[1,3,3,1],[1,3,1,1],[1,2,2,2]],[[1,1,1,0],[1,4,3,1],[1,3,1,2],[1,2,2,0]],[[1,1,1,0],[1,3,4,1],[1,3,1,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,1],[1,4,1,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,1],[1,3,1,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,1],[1,3,1,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,1],[1,3,1,2],[1,2,3,0]],[[1,1,1,0],[1,4,3,1],[1,3,2,1],[1,1,2,1]],[[1,1,1,0],[1,3,4,1],[1,3,2,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,1],[1,4,2,1],[1,1,2,1]],[[1,1,1,0],[1,4,3,1],[1,3,2,1],[1,2,1,1]],[[1,1,1,0],[1,3,4,1],[1,3,2,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,1],[1,4,2,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,1],[1,3,2,1],[2,2,1,1]],[[1,1,1,0],[1,3,3,1],[1,3,2,1],[1,3,1,1]],[[1,1,1,0],[1,4,3,1],[1,3,2,2],[1,1,1,1]],[[1,1,1,0],[1,3,4,1],[1,3,2,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,1],[1,4,2,2],[1,1,1,1]],[[1,1,1,0],[1,4,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,4,1],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,1],[1,4,2,2],[1,1,2,0]],[[1,1,1,0],[1,4,3,1],[1,3,2,2],[1,2,0,1]],[[1,1,1,0],[1,3,4,1],[1,3,2,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,1],[1,4,2,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,1],[1,3,2,2],[2,2,0,1]],[[1,1,1,0],[1,3,3,1],[1,3,2,2],[1,3,0,1]],[[1,1,1,0],[1,4,3,1],[1,3,2,2],[1,2,1,0]],[[1,1,1,0],[1,3,4,1],[1,3,2,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,1],[1,4,2,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,1],[1,3,2,2],[2,2,1,0]],[[1,1,1,0],[1,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,1,1,0],[1,4,3,1],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,4,1],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,1],[3,0,2,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,0,2,3],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,0,2,2],[2,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,0,2,2],[1,3,2,1]],[[1,1,1,0],[1,3,3,1],[2,0,2,2],[1,2,3,1]],[[1,1,1,0],[1,3,3,1],[2,0,2,2],[1,2,2,2]],[[1,1,1,0],[1,4,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,4,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[3,0,3,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,0,4,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,0,3,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,0,3,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,1],[2,0,3,1],[1,2,3,1]],[[1,1,1,0],[1,3,3,1],[2,0,3,1],[1,2,2,2]],[[1,1,1,0],[1,3,3,1],[2,0,3,3],[0,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,0,3,2],[0,2,3,1]],[[1,1,1,0],[1,3,3,1],[2,0,3,2],[0,2,2,2]],[[1,1,1,0],[1,4,3,1],[2,0,3,2],[1,2,1,1]],[[1,1,1,0],[1,3,4,1],[2,0,3,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,1],[2,0,4,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,1],[2,0,3,3],[1,2,1,1]],[[1,1,1,0],[1,3,3,1],[2,0,3,2],[1,2,1,2]],[[1,1,1,0],[1,4,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,4,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,1],[3,0,3,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,0,4,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,0,3,3],[1,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,0,3,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,0,3,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,1],[2,0,3,2],[1,2,3,0]],[[1,1,1,0],[1,3,3,1],[2,1,2,3],[0,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,1,2,2],[0,3,2,1]],[[1,1,1,0],[1,3,3,1],[2,1,2,2],[0,2,3,1]],[[1,1,1,0],[1,3,3,1],[2,1,2,2],[0,2,2,2]],[[1,1,1,0],[1,4,3,1],[2,1,3,1],[0,2,2,1]],[[1,1,1,0],[1,3,4,1],[2,1,3,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,1,4,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,1,3,1],[0,3,2,1]],[[1,1,1,0],[1,3,3,1],[2,1,3,1],[0,2,3,1]],[[1,1,1,0],[1,3,3,1],[2,1,3,1],[0,2,2,2]],[[1,1,1,0],[1,4,3,1],[2,1,3,2],[0,2,1,1]],[[1,1,1,0],[1,3,4,1],[2,1,3,2],[0,2,1,1]],[[1,1,1,0],[1,3,3,1],[2,1,4,2],[0,2,1,1]],[[1,1,1,0],[1,3,3,1],[2,1,3,3],[0,2,1,1]],[[1,1,1,0],[1,3,3,1],[2,1,3,2],[0,2,1,2]],[[1,1,1,0],[1,4,3,1],[2,1,3,2],[0,2,2,0]],[[1,1,1,0],[1,3,4,1],[2,1,3,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,1,4,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,1,3,3],[0,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,1,3,2],[0,3,2,0]],[[1,1,1,0],[1,3,3,1],[2,1,3,2],[0,2,3,0]],[[1,1,1,0],[1,3,3,1],[3,2,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,0,3],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,0,2],[2,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,0,2],[1,3,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,0,2],[1,2,3,1]],[[1,1,1,0],[1,3,3,1],[2,2,0,2],[1,2,2,2]],[[1,1,1,0],[1,3,3,1],[3,2,1,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,1,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,1,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,1,1],[1,2,3,1]],[[1,1,1,0],[1,3,3,1],[2,2,1,1],[1,2,2,2]],[[1,1,1,0],[1,3,3,1],[3,2,1,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,2,1,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,2,1,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,1],[2,2,1,2],[1,2,3,0]],[[1,1,1,0],[1,3,3,1],[3,2,2,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,1],[2,2,2,1],[2,2,1,1]],[[1,1,1,0],[1,3,3,1],[2,2,2,1],[1,3,1,1]],[[1,1,1,0],[1,3,3,1],[2,2,2,3],[0,1,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,2,2],[0,1,3,1]],[[1,1,1,0],[1,3,3,1],[2,2,2,2],[0,1,2,2]],[[1,1,1,0],[1,3,3,1],[2,2,2,3],[1,0,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,2,2],[1,0,3,1]],[[1,1,1,0],[1,3,3,1],[2,2,2,2],[1,0,2,2]],[[1,1,1,0],[1,3,3,1],[3,2,2,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,1],[2,2,2,2],[2,2,0,1]],[[1,1,1,0],[1,3,3,1],[2,2,2,2],[1,3,0,1]],[[1,1,1,0],[1,3,3,1],[3,2,2,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,1],[2,2,2,2],[2,2,1,0]],[[1,1,1,0],[1,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,1,1,0],[1,4,3,1],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[1,3,4,1],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,4,1],[0,1,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,1],[0,1,3,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,1],[0,1,2,2]],[[1,1,1,0],[1,4,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,4,1],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,3,1],[2,2,4,1],[0,2,1,1]],[[1,1,1,0],[1,4,3,1],[2,2,3,1],[1,0,2,1]],[[1,1,1,0],[1,3,4,1],[2,2,3,1],[1,0,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,4,1],[1,0,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,1],[1,0,3,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,1],[1,0,2,2]],[[1,1,1,0],[1,4,3,1],[2,2,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,4,1],[2,2,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,1],[2,2,4,1],[1,1,1,1]],[[1,1,1,0],[1,4,3,1],[2,2,3,2],[0,0,2,1]],[[1,1,1,0],[1,3,4,1],[2,2,3,2],[0,0,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,4,2],[0,0,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,3],[0,0,2,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,2],[0,0,2,2]],[[1,1,1,0],[1,4,3,1],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,4,1],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,1],[2,2,4,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,3],[0,1,1,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,2],[0,1,1,2]],[[1,1,1,0],[1,4,3,1],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,4,1],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,1],[2,2,4,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,1],[2,2,3,3],[0,1,2,0]],[[1,1,1,0],[1,3,3,1],[2,2,3,2],[0,1,3,0]],[[1,1,1,0],[1,4,3,1],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,4,1],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,1],[2,2,4,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,3],[0,2,0,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,2],[0,2,0,2]],[[1,1,1,0],[1,4,3,1],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,4,1],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,1],[2,2,4,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,1],[2,2,3,3],[0,2,1,0]],[[1,1,1,0],[1,4,3,1],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,4,1],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,1],[2,2,4,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,3],[1,0,1,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,2],[1,0,1,2]],[[1,1,1,0],[1,4,3,1],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,4,1],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,1],[2,2,4,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,1],[2,2,3,3],[1,0,2,0]],[[1,1,1,0],[1,3,3,1],[2,2,3,2],[1,0,3,0]],[[1,1,1,0],[1,4,3,1],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,4,1],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,1],[2,2,4,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,3],[1,1,0,1]],[[1,1,1,0],[1,3,3,1],[2,2,3,2],[1,1,0,2]],[[1,1,1,0],[1,4,3,1],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,4,1],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,1],[2,2,4,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,1,1,0],[1,3,3,1],[3,3,0,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,3,0,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,3,0,1],[1,3,2,1]],[[1,1,1,0],[1,4,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[1,3,4,1],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[1,3,3,1],[3,3,0,2],[0,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,4,0,2],[0,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,3,0,3],[0,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,3,0,2],[0,3,2,1]],[[1,1,1,0],[1,3,3,1],[2,3,0,2],[0,2,3,1]],[[1,1,1,0],[1,3,3,1],[2,3,0,2],[0,2,2,2]],[[1,1,1,0],[1,4,3,1],[2,3,0,2],[1,1,2,1]],[[1,1,1,0],[1,3,4,1],[2,3,0,2],[1,1,2,1]],[[1,1,1,0],[1,3,3,1],[3,3,0,2],[1,1,2,1]],[[1,1,1,0],[1,3,3,1],[2,4,0,2],[1,1,2,1]],[[1,1,1,0],[1,3,3,1],[2,3,0,2],[2,1,2,1]],[[1,1,1,0],[1,3,3,1],[3,3,0,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,3,0,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,3,0,2],[1,3,2,0]],[[1,1,1,0],[1,4,3,1],[2,3,1,1],[0,2,2,1]],[[1,1,1,0],[1,3,4,1],[2,3,1,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,1],[3,3,1,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,4,1,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,1],[2,3,1,1],[0,3,2,1]],[[1,1,1,0],[1,3,3,1],[2,3,1,1],[0,2,3,1]],[[1,1,1,0],[1,3,3,1],[2,3,1,1],[0,2,2,2]],[[1,1,1,0],[1,4,3,1],[2,3,1,1],[1,1,2,1]],[[1,1,1,0],[1,3,4,1],[2,3,1,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,1],[3,3,1,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,1],[2,4,1,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,1],[2,3,1,1],[2,1,2,1]],[[1,1,1,0],[1,4,3,1],[2,3,1,2],[0,2,2,0]],[[1,1,1,0],[1,3,4,1],[2,3,1,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,1],[3,3,1,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,4,1,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,1],[2,3,1,2],[0,3,2,0]],[[1,1,1,0],[1,3,3,1],[2,3,1,2],[0,2,3,0]],[[1,1,1,0],[1,4,3,1],[2,3,1,2],[1,1,2,0]],[[1,1,1,0],[1,3,4,1],[2,3,1,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,1],[3,3,1,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,1],[2,4,1,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,1,1,0],[1,4,3,1],[2,3,2,1],[0,1,2,1]],[[1,1,1,0],[1,3,4,1],[2,3,2,1],[0,1,2,1]],[[1,1,1,0],[1,3,3,1],[3,3,2,1],[0,1,2,1]],[[1,1,1,0],[1,3,3,1],[2,4,2,1],[0,1,2,1]],[[1,1,1,0],[1,4,3,1],[2,3,2,1],[0,2,1,1]],[[1,1,1,0],[1,3,4,1],[2,3,2,1],[0,2,1,1]],[[1,1,1,0],[1,3,3,1],[3,3,2,1],[0,2,1,1]],[[1,1,1,0],[1,3,3,1],[2,4,2,1],[0,2,1,1]],[[1,1,1,0],[1,3,3,1],[2,3,2,1],[0,3,1,1]],[[1,1,1,0],[1,4,3,1],[2,3,2,1],[1,0,2,1]],[[1,1,1,0],[1,3,4,1],[2,3,2,1],[1,0,2,1]],[[1,1,1,0],[1,3,3,1],[3,3,2,1],[1,0,2,1]],[[1,1,1,0],[1,3,3,1],[2,4,2,1],[1,0,2,1]],[[1,1,1,0],[1,3,3,1],[2,3,2,1],[2,0,2,1]],[[1,1,1,0],[1,4,3,1],[2,3,2,1],[1,1,1,1]],[[1,1,1,0],[1,3,4,1],[2,3,2,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,1],[3,3,2,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,1],[2,4,2,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,1],[2,3,2,1],[2,1,1,1]],[[1,1,1,0],[1,4,3,1],[2,3,2,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,1],[3,3,2,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,1],[2,4,2,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,1,1,0],[1,4,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,1,0],[1,3,4,1],[2,3,2,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,1],[3,3,2,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,1],[2,4,2,2],[0,1,1,1]],[[1,1,1,0],[1,4,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,1,0],[1,3,4,1],[2,3,2,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,1],[3,3,2,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,1],[2,4,2,2],[0,1,2,0]],[[1,1,1,0],[1,4,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,1,0],[1,3,4,1],[2,3,2,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,1],[3,3,2,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,1],[2,4,2,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,1],[2,3,2,2],[0,3,0,1]],[[1,1,1,0],[1,4,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,1,0],[1,3,4,1],[2,3,2,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,1],[3,3,2,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,1],[2,4,2,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,1,1,0],[1,4,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,1,0],[1,3,4,1],[2,3,2,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,1],[3,3,2,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,1],[2,4,2,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,1],[2,3,2,2],[2,0,1,1]],[[1,1,1,0],[1,4,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,1,0],[1,3,4,1],[2,3,2,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,1],[3,3,2,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,1],[2,4,2,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,1],[2,3,2,2],[2,0,2,0]],[[1,1,1,0],[1,4,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,1,0],[1,3,4,1],[2,3,2,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,1],[3,3,2,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,1],[2,4,2,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,1],[2,3,2,2],[2,1,0,1]],[[1,1,1,0],[1,4,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,1,0],[1,3,4,1],[2,3,2,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,1],[3,3,2,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,1],[2,4,2,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,1,1,0],[1,4,3,1],[2,3,2,2],[1,2,0,0]],[[1,1,1,0],[1,3,4,1],[2,3,2,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,1],[3,3,2,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,1],[2,4,2,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,1,1,0],[1,4,3,1],[2,3,3,1],[0,0,2,1]],[[1,1,1,0],[1,3,4,1],[2,3,3,1],[0,0,2,1]],[[1,1,1,0],[1,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,1,1,0],[1,4,3,1],[2,3,3,2],[0,0,1,1]],[[1,1,1,0],[1,3,4,1],[2,3,3,2],[0,0,1,1]],[[1,1,1,0],[1,3,3,1],[2,3,4,2],[0,0,1,1]],[[1,1,1,0],[1,3,3,1],[2,3,3,3],[0,0,1,1]],[[1,1,1,0],[1,3,3,1],[2,3,3,2],[0,0,1,2]],[[1,1,1,0],[1,4,3,1],[2,3,3,2],[0,0,2,0]],[[1,1,1,0],[1,3,4,1],[2,3,3,2],[0,0,2,0]],[[1,1,1,0],[1,3,3,1],[2,3,4,2],[0,0,2,0]],[[1,1,1,0],[1,3,3,1],[2,3,3,3],[0,0,2,0]],[[1,1,1,0],[1,4,3,1],[2,3,3,2],[0,2,0,0]],[[1,1,1,0],[1,3,4,1],[2,3,3,2],[0,2,0,0]],[[1,1,1,0],[1,3,3,1],[3,3,3,2],[0,2,0,0]],[[1,1,1,0],[1,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,1,1,0],[1,4,3,1],[2,3,3,2],[1,1,0,0]],[[1,1,1,0],[1,3,4,1],[2,3,3,2],[1,1,0,0]],[[1,1,1,0],[1,3,3,1],[3,3,3,2],[1,1,0,0]],[[1,1,1,0],[1,3,3,1],[2,4,3,2],[1,1,0,0]],[[1,1,1,0],[1,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,1,0],[2,4,1,2],[0,3,3,2],[1,1,1,0]],[[1,3,1,0],[2,3,1,2],[0,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,3,1,2],[0,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,4,1,2],[0,3,3,2],[1,1,0,1]],[[1,3,1,0],[2,3,1,2],[0,3,3,2],[1,1,0,1]],[[2,2,1,0],[2,3,1,2],[0,3,3,2],[1,1,0,1]],[[1,2,1,0],[2,4,1,2],[0,3,3,2],[1,0,2,0]],[[1,3,1,0],[2,3,1,2],[0,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,3,1,2],[0,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,4,1,2],[0,3,3,2],[1,0,1,1]],[[1,3,1,0],[2,3,1,2],[0,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,3,1,2],[0,3,3,2],[1,0,1,1]],[[1,2,1,0],[2,4,1,2],[0,3,3,2],[0,2,1,0]],[[1,3,1,0],[2,3,1,2],[0,3,3,2],[0,2,1,0]],[[1,1,1,0],[1,4,3,2],[1,1,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,4,2],[1,1,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,3],[1,1,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,1,1,3],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,1,1,2],[2,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,1,1,2],[1,3,2,1]],[[1,1,1,0],[1,3,3,2],[1,1,1,2],[1,2,3,1]],[[1,1,1,0],[1,3,3,2],[1,1,1,2],[1,2,2,2]],[[1,1,1,0],[1,4,3,2],[1,1,2,2],[1,2,1,1]],[[1,1,1,0],[1,3,4,2],[1,1,2,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,3],[1,1,2,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[1,1,2,3],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[1,1,2,2],[1,2,1,2]],[[1,1,1,0],[1,4,3,2],[1,1,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,4,2],[1,1,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,3],[1,1,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[1,1,2,3],[1,2,2,0]],[[1,1,1,0],[1,4,3,2],[1,1,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,4,2],[1,1,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,3],[1,1,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,1,4,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,1,3,0],[2,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,1,3,0],[1,3,2,1]],[[1,1,1,0],[1,3,3,2],[1,1,3,0],[1,2,3,1]],[[1,1,1,0],[1,3,3,2],[1,1,3,0],[1,2,2,2]],[[1,1,1,0],[1,4,3,2],[1,1,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,4,2],[1,1,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,3],[1,1,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[1,1,4,1],[1,2,1,1]],[[1,1,1,0],[1,4,3,2],[1,1,3,1],[1,2,2,0]],[[1,1,1,0],[1,3,4,2],[1,1,3,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,3],[1,1,3,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[1,1,4,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[1,1,3,1],[2,2,2,0]],[[1,1,1,0],[1,3,3,2],[1,1,3,1],[1,3,2,0]],[[1,1,1,0],[1,3,3,2],[1,1,3,1],[1,2,3,0]],[[2,2,1,0],[2,3,1,2],[0,3,3,2],[0,2,1,0]],[[1,2,1,0],[2,4,1,2],[0,3,3,2],[0,2,0,1]],[[1,3,1,0],[2,3,1,2],[0,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,3,1,2],[0,3,3,2],[0,2,0,1]],[[1,2,1,0],[2,4,1,2],[0,3,3,2],[0,1,2,0]],[[1,3,1,0],[2,3,1,2],[0,3,3,2],[0,1,2,0]],[[1,1,1,0],[1,4,3,2],[1,2,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,4,2],[1,2,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,3],[1,2,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,2,0,3],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,2,0,2],[2,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,2,0,2],[1,3,2,1]],[[1,1,1,0],[1,3,3,2],[1,2,0,2],[1,2,3,1]],[[1,1,1,0],[1,3,3,2],[1,2,0,2],[1,2,2,2]],[[1,1,1,0],[1,4,3,2],[1,2,1,2],[1,1,2,1]],[[1,1,1,0],[1,3,4,2],[1,2,1,2],[1,1,2,1]],[[1,1,1,0],[1,3,3,3],[1,2,1,2],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[1,2,1,3],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[1,2,1,2],[1,1,3,1]],[[1,1,1,0],[1,3,3,2],[1,2,1,2],[1,1,2,2]],[[1,1,1,0],[1,4,3,2],[1,2,2,2],[1,1,1,1]],[[1,1,1,0],[1,3,4,2],[1,2,2,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,3],[1,2,2,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[1,2,2,3],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[1,2,2,2],[1,1,1,2]],[[1,1,1,0],[1,4,3,2],[1,2,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,4,2],[1,2,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,3],[1,2,2,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[1,2,2,3],[1,1,2,0]],[[1,1,1,0],[1,4,3,2],[1,2,2,2],[1,2,0,1]],[[1,1,1,0],[1,3,4,2],[1,2,2,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,3],[1,2,2,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[1,2,2,3],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[1,2,2,2],[1,2,0,2]],[[1,1,1,0],[1,4,3,2],[1,2,2,2],[1,2,1,0]],[[1,1,1,0],[1,3,4,2],[1,2,2,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,3],[1,2,2,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,2,2,3],[1,2,1,0]],[[2,2,1,0],[2,3,1,2],[0,3,3,2],[0,1,2,0]],[[1,2,1,0],[2,4,1,2],[0,3,3,2],[0,1,1,1]],[[1,3,1,0],[2,3,1,2],[0,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,3,1,2],[0,3,3,2],[0,1,1,1]],[[1,1,1,0],[1,4,3,2],[1,2,3,0],[1,1,2,1]],[[1,1,1,0],[1,3,4,2],[1,2,3,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,3],[1,2,3,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[1,2,4,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[1,2,3,0],[1,1,3,1]],[[1,1,1,0],[1,3,3,2],[1,2,3,0],[1,1,2,2]],[[1,1,1,0],[1,4,3,2],[1,2,3,0],[1,2,1,1]],[[1,1,1,0],[1,3,4,2],[1,2,3,0],[1,2,1,1]],[[1,1,1,0],[1,3,3,3],[1,2,3,0],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[1,2,4,0],[1,2,1,1]],[[1,1,1,0],[1,4,3,2],[1,2,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,4,2],[1,2,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,3],[1,2,3,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[1,2,4,1],[1,1,1,1]],[[1,1,1,0],[1,4,3,2],[1,2,3,1],[1,1,2,0]],[[1,1,1,0],[1,3,4,2],[1,2,3,1],[1,1,2,0]],[[1,1,1,0],[1,3,3,3],[1,2,3,1],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[1,2,4,1],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[1,2,3,1],[1,1,3,0]],[[1,1,1,0],[1,4,3,2],[1,2,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,4,2],[1,2,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,3],[1,2,3,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[1,2,4,1],[1,2,0,1]],[[1,1,1,0],[1,4,3,2],[1,2,3,1],[1,2,1,0]],[[1,1,1,0],[1,3,4,2],[1,2,3,1],[1,2,1,0]],[[1,1,1,0],[1,3,3,3],[1,2,3,1],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,1,0],[2,4,1,2],[0,3,3,1],[1,0,2,1]],[[1,3,1,0],[2,3,1,2],[0,3,3,1],[1,0,2,1]],[[2,2,1,0],[2,3,1,2],[0,3,3,1],[1,0,2,1]],[[1,2,1,0],[2,4,1,2],[0,3,3,1],[0,2,1,1]],[[1,3,1,0],[2,3,1,2],[0,3,3,1],[0,2,1,1]],[[2,2,1,0],[2,3,1,2],[0,3,3,1],[0,2,1,1]],[[1,2,1,0],[2,4,1,2],[0,3,3,1],[0,1,2,1]],[[1,3,1,0],[2,3,1,2],[0,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,3,1,2],[0,3,3,1],[0,1,2,1]],[[1,1,1,0],[1,4,3,2],[1,3,0,1],[1,2,2,1]],[[1,1,1,0],[1,3,4,2],[1,3,0,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,3],[1,3,0,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,4,0,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,3,0,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,3,0,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,2],[1,3,0,1],[1,2,3,1]],[[1,1,1,0],[1,3,3,2],[1,3,0,1],[1,2,2,2]],[[1,1,1,0],[1,4,3,2],[1,3,0,2],[1,1,2,1]],[[1,1,1,0],[1,3,4,2],[1,3,0,2],[1,1,2,1]],[[1,1,1,0],[1,3,3,3],[1,3,0,2],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[1,4,0,2],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[1,3,0,3],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[1,3,0,2],[1,1,3,1]],[[1,1,1,0],[1,3,3,2],[1,3,0,2],[1,1,2,2]],[[1,1,1,0],[1,4,3,2],[1,3,0,2],[1,2,1,1]],[[1,1,1,0],[1,3,4,2],[1,3,0,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,3],[1,3,0,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[1,4,0,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[1,3,0,3],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[1,3,0,2],[2,2,1,1]],[[1,1,1,0],[1,3,3,2],[1,3,0,2],[1,3,1,1]],[[1,1,1,0],[1,3,3,2],[1,3,0,2],[1,2,1,2]],[[1,1,1,0],[1,4,3,2],[1,3,0,2],[1,2,2,0]],[[1,1,1,0],[1,3,4,2],[1,3,0,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,3],[1,3,0,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[1,4,0,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[1,3,0,3],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[1,3,0,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,2],[1,3,0,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,2],[1,3,0,2],[1,2,3,0]],[[1,1,1,0],[1,4,3,2],[1,3,1,0],[1,2,2,1]],[[1,1,1,0],[1,3,4,2],[1,3,1,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,3],[1,3,1,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,4,1,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,3,1,0],[2,2,2,1]],[[1,1,1,0],[1,3,3,2],[1,3,1,0],[1,3,2,1]],[[1,1,1,0],[1,3,3,2],[1,3,1,0],[1,2,3,1]],[[1,1,1,0],[1,3,3,2],[1,3,1,0],[1,2,2,2]],[[1,1,1,0],[1,4,3,2],[1,3,1,1],[1,2,2,0]],[[1,1,1,0],[1,3,4,2],[1,3,1,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,3],[1,3,1,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[1,4,1,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[1,3,1,1],[2,2,2,0]],[[1,1,1,0],[1,3,3,2],[1,3,1,1],[1,3,2,0]],[[1,1,1,0],[1,3,3,2],[1,3,1,1],[1,2,3,0]],[[1,1,1,0],[1,4,3,2],[1,3,1,2],[1,1,1,1]],[[1,1,1,0],[1,3,4,2],[1,3,1,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,3],[1,3,1,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[1,4,1,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[1,3,1,3],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[1,3,1,2],[1,1,1,2]],[[1,1,1,0],[1,4,3,2],[1,3,1,2],[1,1,2,0]],[[1,1,1,0],[1,3,4,2],[1,3,1,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,3],[1,3,1,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[1,4,1,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[1,3,1,3],[1,1,2,0]],[[1,1,1,0],[1,4,3,2],[1,3,1,2],[1,2,0,1]],[[1,1,1,0],[1,3,4,2],[1,3,1,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,3],[1,3,1,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[1,4,1,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[1,3,1,3],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[1,3,1,2],[2,2,0,1]],[[1,1,1,0],[1,3,3,2],[1,3,1,2],[1,3,0,1]],[[1,1,1,0],[1,3,3,2],[1,3,1,2],[1,2,0,2]],[[1,1,1,0],[1,4,3,2],[1,3,1,2],[1,2,1,0]],[[1,1,1,0],[1,3,4,2],[1,3,1,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,3],[1,3,1,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,4,1,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,3,1,3],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,3,1,2],[2,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,1,0],[2,4,1,2],[0,3,2,2],[0,2,2,0]],[[1,3,1,0],[2,3,1,2],[0,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,3,1,2],[0,3,2,2],[0,2,2,0]],[[1,1,1,0],[1,4,3,2],[1,3,2,0],[1,1,2,1]],[[1,1,1,0],[1,3,4,2],[1,3,2,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,3],[1,3,2,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[1,4,2,0],[1,1,2,1]],[[1,1,1,0],[1,4,3,2],[1,3,2,0],[1,2,1,1]],[[1,1,1,0],[1,3,4,2],[1,3,2,0],[1,2,1,1]],[[1,1,1,0],[1,3,3,3],[1,3,2,0],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[1,4,2,0],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[1,3,2,0],[2,2,1,1]],[[1,1,1,0],[1,3,3,2],[1,3,2,0],[1,3,1,1]],[[1,1,1,0],[1,4,3,2],[1,3,2,1],[1,1,1,1]],[[1,1,1,0],[1,3,4,2],[1,3,2,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,3],[1,3,2,1],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[1,4,2,1],[1,1,1,1]],[[1,1,1,0],[1,4,3,2],[1,3,2,1],[1,1,2,0]],[[1,1,1,0],[1,3,4,2],[1,3,2,1],[1,1,2,0]],[[1,1,1,0],[1,3,3,3],[1,3,2,1],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[1,4,2,1],[1,1,2,0]],[[1,1,1,0],[1,4,3,2],[1,3,2,1],[1,2,0,1]],[[1,1,1,0],[1,3,4,2],[1,3,2,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,3],[1,3,2,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[1,4,2,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[1,3,2,1],[2,2,0,1]],[[1,1,1,0],[1,3,3,2],[1,3,2,1],[1,3,0,1]],[[1,1,1,0],[1,4,3,2],[1,3,2,1],[1,2,1,0]],[[1,1,1,0],[1,3,4,2],[1,3,2,1],[1,2,1,0]],[[1,1,1,0],[1,3,3,3],[1,3,2,1],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,4,2,1],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,3,2,1],[2,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,1,0],[2,4,1,2],[0,3,2,1],[0,2,2,1]],[[1,3,1,0],[2,3,1,2],[0,3,2,1],[0,2,2,1]],[[2,2,1,0],[2,3,1,2],[0,3,2,1],[0,2,2,1]],[[1,2,1,0],[2,4,1,2],[0,3,1,2],[0,2,2,1]],[[1,3,1,0],[2,3,1,2],[0,3,1,2],[0,2,2,1]],[[2,2,1,0],[2,3,1,2],[0,3,1,2],[0,2,2,1]],[[1,1,1,0],[1,4,3,2],[1,3,3,0],[1,1,2,0]],[[1,1,1,0],[1,3,4,2],[1,3,3,0],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[1,4,3,0],[1,1,2,0]],[[1,1,1,0],[1,4,3,2],[1,3,3,0],[1,2,1,0]],[[1,1,1,0],[1,3,4,2],[1,3,3,0],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,4,3,0],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,3,3,0],[2,2,1,0]],[[1,1,1,0],[1,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,1,1,0],[1,4,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,1,0],[1,3,4,2],[1,3,3,1],[1,2,0,0]],[[1,1,1,0],[1,3,3,3],[1,3,3,1],[1,2,0,0]],[[1,1,1,0],[1,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,1,1,0],[1,4,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,4,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,3],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[3,0,1,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,0,1,3],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,0,1,2],[2,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,0,1,2],[1,3,2,1]],[[1,1,1,0],[1,3,3,2],[2,0,1,2],[1,2,3,1]],[[1,1,1,0],[1,3,3,2],[2,0,1,2],[1,2,2,2]],[[1,1,1,0],[1,4,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,1,0],[1,3,4,2],[2,0,2,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,3],[2,0,2,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,0,2,3],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,0,2,2],[1,2,1,2]],[[1,1,1,0],[1,4,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,4,2],[2,0,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,3],[2,0,2,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,0,2,3],[1,2,2,0]],[[1,1,1,0],[1,4,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,4,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,3],[2,0,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[3,0,3,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,0,4,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,0,3,0],[2,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,0,3,0],[1,3,2,1]],[[1,1,1,0],[1,3,3,2],[2,0,3,0],[1,2,3,1]],[[1,1,1,0],[1,3,3,2],[2,0,3,0],[1,2,2,2]],[[1,1,1,0],[1,4,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,4,2],[2,0,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,3],[2,0,3,1],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,0,4,1],[1,2,1,1]],[[1,1,1,0],[1,4,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,0],[1,3,4,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,3],[2,0,3,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[3,0,3,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,0,4,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,0,3,1],[2,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,0,3,1],[1,3,2,0]],[[1,1,1,0],[1,3,3,2],[2,0,3,1],[1,2,3,0]],[[1,1,1,0],[1,4,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,4,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,3],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[3,1,0,2],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,1,0,3],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,1,0,2],[2,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,1,0,2],[1,3,2,1]],[[1,1,1,0],[1,3,3,2],[2,1,0,2],[1,2,3,1]],[[1,1,1,0],[1,3,3,2],[2,1,0,2],[1,2,2,2]],[[1,1,1,0],[1,4,3,2],[2,1,1,2],[0,2,2,1]],[[1,1,1,0],[1,3,4,2],[2,1,1,2],[0,2,2,1]],[[1,1,1,0],[1,3,3,3],[2,1,1,2],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,1,1,3],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,1,1,2],[0,3,2,1]],[[1,1,1,0],[1,3,3,2],[2,1,1,2],[0,2,3,1]],[[1,1,1,0],[1,3,3,2],[2,1,1,2],[0,2,2,2]],[[1,1,1,0],[1,4,3,2],[2,1,2,2],[0,2,1,1]],[[1,1,1,0],[1,3,4,2],[2,1,2,2],[0,2,1,1]],[[1,1,1,0],[1,3,3,3],[2,1,2,2],[0,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,1,2,3],[0,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,1,2,2],[0,2,1,2]],[[1,1,1,0],[1,4,3,2],[2,1,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,4,2],[2,1,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,3],[2,1,2,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,1,1,0],[1,4,3,2],[2,1,3,0],[0,2,2,1]],[[1,1,1,0],[1,3,4,2],[2,1,3,0],[0,2,2,1]],[[1,1,1,0],[1,3,3,3],[2,1,3,0],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,1,4,0],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,1,3,0],[0,3,2,1]],[[1,1,1,0],[1,3,3,2],[2,1,3,0],[0,2,3,1]],[[1,1,1,0],[1,3,3,2],[2,1,3,0],[0,2,2,2]],[[1,1,1,0],[1,4,3,2],[2,1,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,4,2],[2,1,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,3,3],[2,1,3,1],[0,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,1,4,1],[0,2,1,1]],[[1,1,1,0],[1,4,3,2],[2,1,3,1],[0,2,2,0]],[[1,1,1,0],[1,3,4,2],[2,1,3,1],[0,2,2,0]],[[1,1,1,0],[1,3,3,3],[2,1,3,1],[0,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,1,4,1],[0,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,1,3,1],[0,3,2,0]],[[1,1,1,0],[1,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,1,0],[2,3,1,1],[2,3,0,2],[1,3,2,0]],[[1,2,1,0],[2,3,1,1],[2,3,0,2],[2,2,2,0]],[[1,2,1,0],[2,3,1,1],[3,3,0,2],[1,2,2,0]],[[1,2,1,0],[3,3,1,1],[2,3,0,2],[1,2,2,0]],[[2,2,1,0],[2,3,1,1],[2,3,0,2],[1,2,2,0]],[[1,2,1,0],[2,3,1,1],[2,3,0,1],[1,3,2,1]],[[1,2,1,0],[2,3,1,1],[2,3,0,1],[2,2,2,1]],[[1,2,1,0],[2,3,1,1],[3,3,0,1],[1,2,2,1]],[[1,2,1,0],[3,3,1,1],[2,3,0,1],[1,2,2,1]],[[2,2,1,0],[2,3,1,1],[2,3,0,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[3,2,0,1],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,0,1],[2,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,0,1],[1,3,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,0,1],[1,2,3,1]],[[1,1,1,0],[1,3,3,2],[2,2,0,1],[1,2,2,2]],[[1,1,1,0],[1,4,3,2],[2,2,0,2],[0,2,2,1]],[[1,1,1,0],[1,3,4,2],[2,2,0,2],[0,2,2,1]],[[1,1,1,0],[1,3,3,3],[2,2,0,2],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,0,3],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,0,2],[0,3,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,0,2],[0,2,3,1]],[[1,1,1,0],[1,3,3,2],[2,2,0,2],[0,2,2,2]],[[1,1,1,0],[1,3,3,2],[3,2,0,2],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,0,2],[2,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,0,2],[1,3,1,1]],[[1,1,1,0],[1,3,3,2],[3,2,0,2],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,0,2],[2,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,0,2],[1,3,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,0,2],[1,2,3,0]],[[1,1,1,0],[1,3,3,2],[3,2,1,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,0],[2,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,0],[1,3,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,0],[1,2,3,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,0],[1,2,2,2]],[[1,1,1,0],[1,3,3,2],[3,2,1,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,1,1],[2,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,1,1],[1,3,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,1,1],[1,2,3,0]],[[1,1,1,0],[1,4,3,2],[2,2,1,2],[0,1,2,1]],[[1,1,1,0],[1,3,4,2],[2,2,1,2],[0,1,2,1]],[[1,1,1,0],[1,3,3,3],[2,2,1,2],[0,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,3],[0,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,2],[0,1,3,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,2],[0,1,2,2]],[[1,1,1,0],[1,4,3,2],[2,2,1,2],[1,0,2,1]],[[1,1,1,0],[1,3,4,2],[2,2,1,2],[1,0,2,1]],[[1,1,1,0],[1,3,3,3],[2,2,1,2],[1,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,3],[1,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,2],[1,0,3,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,2],[1,0,2,2]],[[1,1,1,0],[1,3,3,2],[3,2,1,2],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,2],[2,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,1,2],[1,3,0,1]],[[1,1,1,0],[1,3,3,2],[3,2,1,2],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,2,1,2],[2,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,2,1,2],[1,3,1,0]],[[1,1,1,0],[1,3,3,2],[3,2,2,0],[1,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,0],[2,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,0],[1,3,1,1]],[[1,1,1,0],[1,3,3,2],[3,2,2,1],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,1],[2,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,1],[1,3,0,1]],[[1,1,1,0],[1,3,3,2],[3,2,2,1],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,2,2,1],[2,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,2,2,1],[1,3,1,0]],[[1,1,1,0],[1,4,3,2],[2,2,2,2],[0,0,2,1]],[[1,1,1,0],[1,3,4,2],[2,2,2,2],[0,0,2,1]],[[1,1,1,0],[1,3,3,3],[2,2,2,2],[0,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,3],[0,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,2],[0,0,2,2]],[[1,1,1,0],[1,4,3,2],[2,2,2,2],[0,1,1,1]],[[1,1,1,0],[1,3,4,2],[2,2,2,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,3],[2,2,2,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,3],[0,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,2],[0,1,1,2]],[[1,1,1,0],[1,4,3,2],[2,2,2,2],[0,1,2,0]],[[1,1,1,0],[1,3,4,2],[2,2,2,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,3],[2,2,2,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,2,3],[0,1,2,0]],[[1,1,1,0],[1,4,3,2],[2,2,2,2],[0,2,0,1]],[[1,1,1,0],[1,3,4,2],[2,2,2,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,3],[2,2,2,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,3],[0,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,2],[0,2,0,2]],[[1,1,1,0],[1,4,3,2],[2,2,2,2],[0,2,1,0]],[[1,1,1,0],[1,3,4,2],[2,2,2,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,3],[2,2,2,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,1,1,0],[1,4,3,2],[2,2,2,2],[1,0,1,1]],[[1,1,1,0],[1,3,4,2],[2,2,2,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,3],[2,2,2,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,3],[1,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,2],[1,0,1,2]],[[1,1,1,0],[1,4,3,2],[2,2,2,2],[1,0,2,0]],[[1,1,1,0],[1,3,4,2],[2,2,2,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,3],[2,2,2,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,2,3],[1,0,2,0]],[[1,1,1,0],[1,4,3,2],[2,2,2,2],[1,1,0,1]],[[1,1,1,0],[1,3,4,2],[2,2,2,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,3],[2,2,2,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,3],[1,1,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,2,2],[1,1,0,2]],[[1,1,1,0],[1,4,3,2],[2,2,2,2],[1,1,1,0]],[[1,1,1,0],[1,3,4,2],[2,2,2,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,3],[2,2,2,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[2,2,2,3],[1,1,1,0]],[[1,1,1,0],[1,4,3,2],[2,2,3,0],[0,1,2,1]],[[1,1,1,0],[1,3,4,2],[2,2,3,0],[0,1,2,1]],[[1,1,1,0],[1,3,3,3],[2,2,3,0],[0,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,4,0],[0,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,3,0],[0,1,3,1]],[[1,1,1,0],[1,3,3,2],[2,2,3,0],[0,1,2,2]],[[1,1,1,0],[1,4,3,2],[2,2,3,0],[0,2,1,1]],[[1,1,1,0],[1,3,4,2],[2,2,3,0],[0,2,1,1]],[[1,1,1,0],[1,3,3,3],[2,2,3,0],[0,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,4,0],[0,2,1,1]],[[1,1,1,0],[1,4,3,2],[2,2,3,0],[1,0,2,1]],[[1,1,1,0],[1,3,4,2],[2,2,3,0],[1,0,2,1]],[[1,1,1,0],[1,3,3,3],[2,2,3,0],[1,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,4,0],[1,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,3,0],[1,0,3,1]],[[1,1,1,0],[1,3,3,2],[2,2,3,0],[1,0,2,2]],[[1,1,1,0],[1,4,3,2],[2,2,3,0],[1,1,1,1]],[[1,1,1,0],[1,3,4,2],[2,2,3,0],[1,1,1,1]],[[1,1,1,0],[1,3,3,3],[2,2,3,0],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,4,0],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[3,2,3,0],[1,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,2,3,0],[2,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,2,3,0],[1,3,1,0]],[[1,1,1,0],[1,4,3,2],[2,2,3,1],[0,0,2,1]],[[1,1,1,0],[1,3,4,2],[2,2,3,1],[0,0,2,1]],[[1,1,1,0],[1,3,3,3],[2,2,3,1],[0,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,2,4,1],[0,0,2,1]],[[1,1,1,0],[1,4,3,2],[2,2,3,1],[0,1,1,1]],[[1,1,1,0],[1,3,4,2],[2,2,3,1],[0,1,1,1]],[[1,1,1,0],[1,3,3,3],[2,2,3,1],[0,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,4,1],[0,1,1,1]],[[1,1,1,0],[1,4,3,2],[2,2,3,1],[0,1,2,0]],[[1,1,1,0],[1,3,4,2],[2,2,3,1],[0,1,2,0]],[[1,1,1,0],[1,3,3,3],[2,2,3,1],[0,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,4,1],[0,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,3,1],[0,1,3,0]],[[1,1,1,0],[1,4,3,2],[2,2,3,1],[0,2,0,1]],[[1,1,1,0],[1,3,4,2],[2,2,3,1],[0,2,0,1]],[[1,1,1,0],[1,3,3,3],[2,2,3,1],[0,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,4,1],[0,2,0,1]],[[1,1,1,0],[1,4,3,2],[2,2,3,1],[0,2,1,0]],[[1,1,1,0],[1,3,4,2],[2,2,3,1],[0,2,1,0]],[[1,1,1,0],[1,3,3,3],[2,2,3,1],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,2,4,1],[0,2,1,0]],[[1,1,1,0],[1,4,3,2],[2,2,3,1],[1,0,1,1]],[[1,1,1,0],[1,3,4,2],[2,2,3,1],[1,0,1,1]],[[1,1,1,0],[1,3,3,3],[2,2,3,1],[1,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,2,4,1],[1,0,1,1]],[[1,1,1,0],[1,4,3,2],[2,2,3,1],[1,0,2,0]],[[1,1,1,0],[1,3,4,2],[2,2,3,1],[1,0,2,0]],[[1,1,1,0],[1,3,3,3],[2,2,3,1],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,4,1],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,2,3,1],[1,0,3,0]],[[1,1,1,0],[1,4,3,2],[2,2,3,1],[1,1,0,1]],[[1,1,1,0],[1,3,4,2],[2,2,3,1],[1,1,0,1]],[[1,1,1,0],[1,3,3,3],[2,2,3,1],[1,1,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,4,1],[1,1,0,1]],[[1,1,1,0],[1,4,3,2],[2,2,3,1],[1,1,1,0]],[[1,1,1,0],[1,3,4,2],[2,2,3,1],[1,1,1,0]],[[1,1,1,0],[1,3,3,3],[2,2,3,1],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,1,1,0],[1,4,3,2],[2,2,3,2],[0,1,0,1]],[[1,1,1,0],[1,3,4,2],[2,2,3,2],[0,1,0,1]],[[1,1,1,0],[1,3,3,3],[2,2,3,2],[0,1,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,1,1,0],[1,4,3,2],[2,2,3,2],[1,0,0,1]],[[1,1,1,0],[1,3,4,2],[2,2,3,2],[1,0,0,1]],[[1,1,1,0],[1,3,3,3],[2,2,3,2],[1,0,0,1]],[[1,1,1,0],[1,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,1,0],[2,3,0,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[2,3,0,2],[2,4,3,1],[1,2,0,0]],[[1,2,1,0],[2,3,0,2],[3,3,3,1],[1,2,0,0]],[[1,2,1,0],[3,3,0,2],[2,3,3,1],[1,2,0,0]],[[2,2,1,0],[2,3,0,2],[2,3,3,1],[1,2,0,0]],[[1,1,1,0],[1,3,3,2],[3,3,0,0],[1,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,0],[2,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,0],[1,3,2,1]],[[1,1,1,0],[1,4,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,1,0],[1,3,4,2],[2,3,0,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,3],[2,3,0,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[3,3,0,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,4,0,1],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,1],[0,3,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,1],[0,2,3,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,1],[0,2,2,2]],[[1,1,1,0],[1,4,3,2],[2,3,0,1],[1,1,2,1]],[[1,1,1,0],[1,3,4,2],[2,3,0,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,3],[2,3,0,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[3,3,0,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,4,0,1],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,1],[2,1,2,1]],[[1,1,1,0],[1,3,3,2],[3,3,0,1],[1,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,0,1],[2,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,0,1],[1,3,2,0]],[[1,1,1,0],[1,4,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,1,0],[1,3,4,2],[2,3,0,2],[0,1,2,1]],[[1,1,1,0],[1,3,3,3],[2,3,0,2],[0,1,2,1]],[[1,1,1,0],[1,3,3,2],[3,3,0,2],[0,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,4,0,2],[0,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,3],[0,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[0,1,3,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[0,1,2,2]],[[1,1,1,0],[1,4,3,2],[2,3,0,2],[0,2,1,1]],[[1,1,1,0],[1,3,4,2],[2,3,0,2],[0,2,1,1]],[[1,1,1,0],[1,3,3,3],[2,3,0,2],[0,2,1,1]],[[1,1,1,0],[1,3,3,2],[3,3,0,2],[0,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,4,0,2],[0,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,3],[0,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[0,3,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[0,2,1,2]],[[1,1,1,0],[1,4,3,2],[2,3,0,2],[0,2,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,0,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,3],[2,3,0,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,2],[3,3,0,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,4,0,2],[0,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,0,3],[0,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[0,3,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[0,2,3,0]],[[1,1,1,0],[1,4,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,1,0],[1,3,4,2],[2,3,0,2],[1,0,2,1]],[[1,1,1,0],[1,3,3,3],[2,3,0,2],[1,0,2,1]],[[1,1,1,0],[1,3,3,2],[3,3,0,2],[1,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,4,0,2],[1,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,3],[1,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[2,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[1,0,3,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[1,0,2,2]],[[1,1,1,0],[1,4,3,2],[2,3,0,2],[1,1,1,1]],[[1,1,1,0],[1,3,4,2],[2,3,0,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,3],[2,3,0,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[3,3,0,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,4,0,2],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,3],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[2,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[1,1,1,2]],[[1,1,1,0],[1,4,3,2],[2,3,0,2],[1,1,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,0,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,3],[2,3,0,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[3,3,0,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,4,0,2],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,0,3],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,1,0],[2,3,0,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,0],[2,3,0,2],[2,4,3,1],[1,1,1,0]],[[1,2,1,0],[2,3,0,2],[3,3,3,1],[1,1,1,0]],[[1,2,1,0],[3,3,0,2],[2,3,3,1],[1,1,1,0]],[[2,2,1,0],[2,3,0,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[1,4,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,1,0],[1,3,4,2],[2,3,1,0],[0,2,2,1]],[[1,1,1,0],[1,3,3,3],[2,3,1,0],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[3,3,1,0],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,4,1,0],[0,2,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,0],[0,3,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,0],[0,2,3,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,0],[0,2,2,2]],[[1,1,1,0],[1,4,3,2],[2,3,1,0],[1,1,2,1]],[[1,1,1,0],[1,3,4,2],[2,3,1,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,3],[2,3,1,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[3,3,1,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,4,1,0],[1,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,0],[2,1,2,1]],[[1,1,1,0],[1,4,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,1,1],[0,2,2,0]],[[1,1,1,0],[1,3,3,3],[2,3,1,1],[0,2,2,0]],[[1,1,1,0],[1,3,3,2],[3,3,1,1],[0,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,4,1,1],[0,2,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,1,1],[0,3,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,1,1],[0,2,3,0]],[[1,1,1,0],[1,4,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,1,1],[1,1,2,0]],[[1,1,1,0],[1,3,3,3],[2,3,1,1],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[3,3,1,1],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,4,1,1],[1,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,1,0],[2,3,0,2],[2,3,3,1],[2,1,0,1]],[[1,2,1,0],[2,3,0,2],[2,4,3,1],[1,1,0,1]],[[1,2,1,0],[2,3,0,2],[3,3,3,1],[1,1,0,1]],[[1,2,1,0],[3,3,0,2],[2,3,3,1],[1,1,0,1]],[[2,2,1,0],[2,3,0,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[1,4,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,1,0],[1,3,4,2],[2,3,1,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,3],[2,3,1,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,2],[3,3,1,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,4,1,2],[0,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,3],[0,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,2],[0,1,1,2]],[[1,1,1,0],[1,4,3,2],[2,3,1,2],[0,1,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,1,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,3],[2,3,1,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,2],[3,3,1,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,4,1,2],[0,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,1,3],[0,1,2,0]],[[1,1,1,0],[1,4,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,1,0],[1,3,4,2],[2,3,1,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,3],[2,3,1,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,2],[3,3,1,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,4,1,2],[0,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,3],[0,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,2],[0,3,0,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,2],[0,2,0,2]],[[1,1,1,0],[1,4,3,2],[2,3,1,2],[0,2,1,0]],[[1,1,1,0],[1,3,4,2],[2,3,1,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,3],[2,3,1,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[3,3,1,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,4,1,2],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,3,1,3],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,1,0],[2,3,0,2],[2,3,3,1],[2,0,2,0]],[[1,2,1,0],[2,3,0,2],[2,4,3,1],[1,0,2,0]],[[1,2,1,0],[2,3,0,2],[3,3,3,1],[1,0,2,0]],[[1,2,1,0],[3,3,0,2],[2,3,3,1],[1,0,2,0]],[[2,2,1,0],[2,3,0,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[1,4,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,1,0],[1,3,4,2],[2,3,1,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,3],[2,3,1,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,2],[3,3,1,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,4,1,2],[1,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,3],[1,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,2],[2,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,2],[1,0,1,2]],[[1,1,1,0],[1,4,3,2],[2,3,1,2],[1,0,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,1,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,3],[2,3,1,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[3,3,1,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,4,1,2],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,1,3],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,1,2],[2,0,2,0]],[[1,1,1,0],[1,4,3,2],[2,3,1,2],[1,1,0,1]],[[1,1,1,0],[1,3,4,2],[2,3,1,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,3],[2,3,1,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,2],[3,3,1,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,2],[2,4,1,2],[1,1,0,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,3],[1,1,0,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,2],[2,1,0,1]],[[1,1,1,0],[1,3,3,2],[2,3,1,2],[1,1,0,2]],[[1,1,1,0],[1,4,3,2],[2,3,1,2],[1,1,1,0]],[[1,1,1,0],[1,3,4,2],[2,3,1,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,3],[2,3,1,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[3,3,1,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[2,4,1,2],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[2,3,1,3],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,1,0],[2,3,0,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[2,3,0,2],[2,4,3,1],[0,2,1,0]],[[1,1,1,0],[1,4,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,1,0],[1,3,4,2],[2,3,1,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,3],[2,3,1,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,2],[3,3,1,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,2],[2,4,1,2],[1,2,0,0]],[[1,1,1,0],[1,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,1,0],[2,3,0,2],[3,3,3,1],[0,2,1,0]],[[1,2,1,0],[3,3,0,2],[2,3,3,1],[0,2,1,0]],[[2,2,1,0],[2,3,0,2],[2,3,3,1],[0,2,1,0]],[[1,2,1,0],[2,3,0,2],[2,4,3,1],[0,2,0,1]],[[1,2,1,0],[2,3,0,2],[3,3,3,1],[0,2,0,1]],[[1,2,1,0],[3,3,0,2],[2,3,3,1],[0,2,0,1]],[[2,2,1,0],[2,3,0,2],[2,3,3,1],[0,2,0,1]],[[1,2,1,0],[2,3,0,2],[2,4,3,1],[0,1,2,0]],[[1,2,1,0],[2,3,0,2],[3,3,3,1],[0,1,2,0]],[[1,2,1,0],[3,3,0,2],[2,3,3,1],[0,1,2,0]],[[2,2,1,0],[2,3,0,2],[2,3,3,1],[0,1,2,0]],[[1,2,1,0],[2,3,0,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[2,3,0,2],[2,4,3,0],[1,2,0,1]],[[1,2,1,0],[2,3,0,2],[3,3,3,0],[1,2,0,1]],[[1,2,1,0],[3,3,0,2],[2,3,3,0],[1,2,0,1]],[[2,2,1,0],[2,3,0,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,1,0],[1,3,4,2],[2,3,2,0],[0,1,2,1]],[[1,1,1,0],[1,3,3,3],[2,3,2,0],[0,1,2,1]],[[1,1,1,0],[1,3,3,2],[3,3,2,0],[0,1,2,1]],[[1,1,1,0],[1,3,3,2],[2,4,2,0],[0,1,2,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,0],[0,2,1,1]],[[1,1,1,0],[1,3,4,2],[2,3,2,0],[0,2,1,1]],[[1,1,1,0],[1,3,3,3],[2,3,2,0],[0,2,1,1]],[[1,1,1,0],[1,3,3,2],[3,3,2,0],[0,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,4,2,0],[0,2,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,2,0],[0,3,1,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,0],[1,0,2,1]],[[1,1,1,0],[1,3,4,2],[2,3,2,0],[1,0,2,1]],[[1,1,1,0],[1,3,3,3],[2,3,2,0],[1,0,2,1]],[[1,1,1,0],[1,3,3,2],[3,3,2,0],[1,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,4,2,0],[1,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,2,0],[2,0,2,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,1,0],[1,3,4,2],[2,3,2,0],[1,1,1,1]],[[1,1,1,0],[1,3,3,3],[2,3,2,0],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[3,3,2,0],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,4,2,0],[1,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,2,0],[2,1,1,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,1,0],[1,3,4,2],[2,3,2,0],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[3,3,2,0],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,4,2,0],[1,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,1,0],[2,3,0,2],[2,3,3,0],[2,1,1,1]],[[1,2,1,0],[2,3,0,2],[2,4,3,0],[1,1,1,1]],[[1,2,1,0],[2,3,0,2],[3,3,3,0],[1,1,1,1]],[[1,2,1,0],[3,3,0,2],[2,3,3,0],[1,1,1,1]],[[2,2,1,0],[2,3,0,2],[2,3,3,0],[1,1,1,1]],[[1,2,1,0],[2,3,0,2],[2,3,3,0],[2,0,2,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,1,0],[1,3,4,2],[2,3,2,1],[0,1,1,1]],[[1,1,1,0],[1,3,3,3],[2,3,2,1],[0,1,1,1]],[[1,1,1,0],[1,3,3,2],[3,3,2,1],[0,1,1,1]],[[1,1,1,0],[1,3,3,2],[2,4,2,1],[0,1,1,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,1],[0,1,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,2,1],[0,1,2,0]],[[1,1,1,0],[1,3,3,3],[2,3,2,1],[0,1,2,0]],[[1,1,1,0],[1,3,3,2],[3,3,2,1],[0,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,4,2,1],[0,1,2,0]],[[1,1,1,0],[1,4,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,1,0],[1,3,4,2],[2,3,2,1],[0,2,0,1]],[[1,1,1,0],[1,3,3,3],[2,3,2,1],[0,2,0,1]],[[1,1,1,0],[1,3,3,2],[3,3,2,1],[0,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,4,2,1],[0,2,0,1]],[[1,1,1,0],[1,3,3,2],[2,3,2,1],[0,3,0,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,1,0],[1,3,4,2],[2,3,2,1],[0,2,1,0]],[[1,1,1,0],[1,3,3,3],[2,3,2,1],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[3,3,2,1],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,4,2,1],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,1,0],[2,3,0,2],[2,4,3,0],[1,0,2,1]],[[1,2,1,0],[2,3,0,2],[3,3,3,0],[1,0,2,1]],[[1,2,1,0],[3,3,0,2],[2,3,3,0],[1,0,2,1]],[[2,2,1,0],[2,3,0,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,1,0],[1,3,4,2],[2,3,2,1],[1,0,1,1]],[[1,1,1,0],[1,3,3,3],[2,3,2,1],[1,0,1,1]],[[1,1,1,0],[1,3,3,2],[3,3,2,1],[1,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,4,2,1],[1,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,2,1],[2,0,1,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,2,1],[1,0,2,0]],[[1,1,1,0],[1,3,3,3],[2,3,2,1],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[3,3,2,1],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,4,2,1],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,2,1],[2,0,2,0]],[[1,1,1,0],[1,4,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,1,0],[1,3,4,2],[2,3,2,1],[1,1,0,1]],[[1,1,1,0],[1,3,3,3],[2,3,2,1],[1,1,0,1]],[[1,1,1,0],[1,3,3,2],[3,3,2,1],[1,1,0,1]],[[1,1,1,0],[1,3,3,2],[2,4,2,1],[1,1,0,1]],[[1,1,1,0],[1,3,3,2],[2,3,2,1],[2,1,0,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,1],[1,1,1,0]],[[1,1,1,0],[1,3,4,2],[2,3,2,1],[1,1,1,0]],[[1,1,1,0],[1,3,3,3],[2,3,2,1],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[3,3,2,1],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[2,4,2,1],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,1,0],[2,3,0,2],[2,3,3,0],[0,3,1,1]],[[1,2,1,0],[2,3,0,2],[2,4,3,0],[0,2,1,1]],[[1,2,1,0],[2,3,0,2],[3,3,3,0],[0,2,1,1]],[[1,2,1,0],[3,3,0,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,1,0],[1,3,4,2],[2,3,2,1],[1,2,0,0]],[[1,1,1,0],[1,3,3,3],[2,3,2,1],[1,2,0,0]],[[1,1,1,0],[1,3,3,2],[3,3,2,1],[1,2,0,0]],[[1,1,1,0],[1,3,3,2],[2,4,2,1],[1,2,0,0]],[[1,1,1,0],[1,3,3,2],[2,3,2,1],[2,2,0,0]],[[2,2,1,0],[2,3,0,2],[2,3,3,0],[0,2,1,1]],[[1,2,1,0],[2,3,0,2],[2,4,3,0],[0,1,2,1]],[[1,2,1,0],[2,3,0,2],[3,3,3,0],[0,1,2,1]],[[1,2,1,0],[3,3,0,2],[2,3,3,0],[0,1,2,1]],[[2,2,1,0],[2,3,0,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[1,4,3,2],[2,3,2,2],[0,0,1,1]],[[1,1,1,0],[1,3,4,2],[2,3,2,2],[0,0,1,1]],[[1,1,1,0],[1,3,3,3],[2,3,2,2],[0,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,2,3],[0,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,2,2],[0,0,1,2]],[[1,1,1,0],[1,4,3,2],[2,3,2,2],[0,0,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,2,2],[0,0,2,0]],[[1,1,1,0],[1,3,3,3],[2,3,2,2],[0,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,1,0],[2,3,0,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[2,3,0,2],[2,4,2,1],[1,1,2,0]],[[1,2,1,0],[2,3,0,2],[3,3,2,1],[1,1,2,0]],[[1,2,1,0],[3,3,0,2],[2,3,2,1],[1,1,2,0]],[[2,2,1,0],[2,3,0,2],[2,3,2,1],[1,1,2,0]],[[1,2,1,0],[2,3,0,2],[2,3,2,1],[0,3,2,0]],[[1,2,1,0],[2,3,0,2],[2,4,2,1],[0,2,2,0]],[[1,2,1,0],[2,3,0,2],[3,3,2,1],[0,2,2,0]],[[1,2,1,0],[3,3,0,2],[2,3,2,1],[0,2,2,0]],[[2,2,1,0],[2,3,0,2],[2,3,2,1],[0,2,2,0]],[[1,2,1,0],[2,3,0,2],[2,3,2,0],[2,1,2,1]],[[1,2,1,0],[2,3,0,2],[2,4,2,0],[1,1,2,1]],[[1,2,1,0],[2,3,0,2],[3,3,2,0],[1,1,2,1]],[[1,2,1,0],[3,3,0,2],[2,3,2,0],[1,1,2,1]],[[2,2,1,0],[2,3,0,2],[2,3,2,0],[1,1,2,1]],[[1,2,1,0],[2,3,0,2],[2,3,2,0],[0,2,3,1]],[[1,2,1,0],[2,3,0,2],[2,3,2,0],[0,3,2,1]],[[1,2,1,0],[2,3,0,2],[2,4,2,0],[0,2,2,1]],[[1,2,1,0],[2,3,0,2],[3,3,2,0],[0,2,2,1]],[[1,2,1,0],[3,3,0,2],[2,3,2,0],[0,2,2,1]],[[2,2,1,0],[2,3,0,2],[2,3,2,0],[0,2,2,1]],[[1,2,1,0],[2,3,0,2],[2,3,1,1],[1,3,2,0]],[[1,2,1,0],[2,3,0,2],[2,3,1,1],[2,2,2,0]],[[1,2,1,0],[2,3,0,2],[3,3,1,1],[1,2,2,0]],[[1,2,1,0],[3,3,0,2],[2,3,1,1],[1,2,2,0]],[[2,2,1,0],[2,3,0,2],[2,3,1,1],[1,2,2,0]],[[1,2,1,0],[2,3,0,2],[2,3,1,0],[1,3,2,1]],[[1,2,1,0],[2,3,0,2],[2,3,1,0],[2,2,2,1]],[[1,2,1,0],[2,3,0,2],[3,3,1,0],[1,2,2,1]],[[1,2,1,0],[3,3,0,2],[2,3,1,0],[1,2,2,1]],[[2,2,1,0],[2,3,0,2],[2,3,1,0],[1,2,2,1]],[[1,2,1,0],[2,3,0,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[2,3,0,2],[2,2,3,1],[2,2,1,0]],[[1,2,1,0],[2,3,0,2],[3,2,3,1],[1,2,1,0]],[[1,2,1,0],[3,3,0,2],[2,2,3,1],[1,2,1,0]],[[2,2,1,0],[2,3,0,2],[2,2,3,1],[1,2,1,0]],[[1,2,1,0],[2,3,0,2],[2,2,3,0],[1,3,1,1]],[[1,2,1,0],[2,3,0,2],[2,2,3,0],[2,2,1,1]],[[1,2,1,0],[2,3,0,2],[3,2,3,0],[1,2,1,1]],[[1,2,1,0],[3,3,0,2],[2,2,3,0],[1,2,1,1]],[[1,1,1,0],[1,4,3,2],[2,3,3,0],[0,0,2,1]],[[1,1,1,0],[1,3,4,2],[2,3,3,0],[0,0,2,1]],[[1,1,1,0],[1,3,3,3],[2,3,3,0],[0,0,2,1]],[[1,1,1,0],[1,3,3,2],[2,3,4,0],[0,0,2,1]],[[1,1,1,0],[1,4,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,3,0],[0,1,2,0]],[[1,1,1,0],[1,3,3,2],[3,3,3,0],[0,1,2,0]],[[1,1,1,0],[1,3,3,2],[2,4,3,0],[0,1,2,0]],[[1,1,1,0],[1,4,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,1,0],[1,3,4,2],[2,3,3,0],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[3,3,3,0],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,4,3,0],[0,2,1,0]],[[1,1,1,0],[1,3,3,2],[2,3,3,0],[0,3,1,0]],[[2,2,1,0],[2,3,0,2],[2,2,3,0],[1,2,1,1]],[[1,1,1,0],[1,4,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,3,0],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[3,3,3,0],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,4,3,0],[1,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,3,0],[2,0,2,0]],[[1,1,1,0],[1,4,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,1,0],[1,3,4,2],[2,3,3,0],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[3,3,3,0],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[2,4,3,0],[1,1,1,0]],[[1,1,1,0],[1,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,1,0],[2,3,0,2],[2,2,2,1],[1,3,2,0]],[[1,2,1,0],[2,3,0,2],[2,2,2,1],[2,2,2,0]],[[1,2,1,0],[2,3,0,2],[3,2,2,1],[1,2,2,0]],[[1,2,1,0],[3,3,0,2],[2,2,2,1],[1,2,2,0]],[[1,1,1,0],[1,4,3,2],[2,3,3,0],[1,2,0,0]],[[1,1,1,0],[1,3,4,2],[2,3,3,0],[1,2,0,0]],[[1,1,1,0],[1,3,3,2],[3,3,3,0],[1,2,0,0]],[[1,1,1,0],[1,3,3,2],[2,4,3,0],[1,2,0,0]],[[1,1,1,0],[1,3,3,2],[2,3,3,0],[2,2,0,0]],[[2,2,1,0],[2,3,0,2],[2,2,2,1],[1,2,2,0]],[[1,2,1,0],[2,3,0,2],[2,2,2,0],[1,2,3,1]],[[1,2,1,0],[2,3,0,2],[2,2,2,0],[1,3,2,1]],[[1,2,1,0],[2,3,0,2],[2,2,2,0],[2,2,2,1]],[[1,2,1,0],[2,3,0,2],[3,2,2,0],[1,2,2,1]],[[1,2,1,0],[3,3,0,2],[2,2,2,0],[1,2,2,1]],[[2,2,1,0],[2,3,0,2],[2,2,2,0],[1,2,2,1]],[[1,1,1,0],[1,4,3,2],[2,3,3,1],[0,0,1,1]],[[1,1,1,0],[1,3,4,2],[2,3,3,1],[0,0,1,1]],[[1,1,1,0],[1,3,3,3],[2,3,3,1],[0,0,1,1]],[[1,1,1,0],[1,3,3,2],[2,3,4,1],[0,0,1,1]],[[1,1,1,0],[1,4,3,2],[2,3,3,1],[0,0,2,0]],[[1,1,1,0],[1,3,4,2],[2,3,3,1],[0,0,2,0]],[[1,1,1,0],[1,3,3,3],[2,3,3,1],[0,0,2,0]],[[1,1,1,0],[1,3,3,2],[2,3,4,1],[0,0,2,0]],[[1,1,1,0],[1,4,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,1,0],[1,3,4,2],[2,3,3,1],[0,2,0,0]],[[1,1,1,0],[1,3,3,3],[2,3,3,1],[0,2,0,0]],[[1,1,1,0],[1,3,3,2],[3,3,3,1],[0,2,0,0]],[[1,1,1,0],[1,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,1,0],[2,3,0,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,3,0,2],[1,3,3,1],[2,2,1,0]],[[1,2,1,0],[2,3,0,2],[1,4,3,1],[1,2,1,0]],[[1,2,1,0],[2,3,0,2],[1,3,3,0],[1,3,1,1]],[[1,2,1,0],[2,3,0,2],[1,3,3,0],[2,2,1,1]],[[1,2,1,0],[2,3,0,2],[1,4,3,0],[1,2,1,1]],[[1,1,1,0],[1,4,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,1,0],[1,3,4,2],[2,3,3,1],[1,1,0,0]],[[1,1,1,0],[1,3,3,3],[2,3,3,1],[1,1,0,0]],[[1,1,1,0],[1,3,3,2],[3,3,3,1],[1,1,0,0]],[[1,1,1,0],[1,3,3,2],[2,4,3,1],[1,1,0,0]],[[1,1,1,0],[1,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,1,0],[2,3,0,2],[1,3,2,1],[1,3,2,0]],[[1,2,1,0],[2,3,0,2],[1,3,2,1],[2,2,2,0]],[[1,2,1,0],[2,3,0,2],[1,4,2,1],[1,2,2,0]],[[1,2,1,0],[2,3,0,2],[1,3,2,0],[1,2,3,1]],[[1,2,1,0],[2,3,0,2],[1,3,2,0],[1,3,2,1]],[[1,2,1,0],[2,3,0,2],[1,3,2,0],[2,2,2,1]],[[1,2,1,0],[2,3,0,2],[1,4,2,0],[1,2,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,3,0,1],[2,4,3,2],[1,2,0,0]],[[1,2,1,0],[2,3,0,1],[3,3,3,2],[1,2,0,0]],[[1,2,1,0],[3,3,0,1],[2,3,3,2],[1,2,0,0]],[[2,2,1,0],[2,3,0,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[1,4,3,2],[2,3,3,2],[0,0,0,1]],[[1,1,1,0],[1,3,4,2],[2,3,3,2],[0,0,0,1]],[[1,1,1,0],[1,3,3,3],[2,3,3,2],[0,0,0,1]],[[1,1,1,0],[1,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,1,0],[2,3,0,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,3,0,1],[2,4,3,2],[1,1,1,0]],[[1,2,1,0],[2,3,0,1],[3,3,3,2],[1,1,1,0]],[[1,2,1,0],[3,3,0,1],[2,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,3,0,1],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,3,0,1],[2,3,3,2],[2,1,0,1]],[[1,2,1,0],[2,3,0,1],[2,4,3,2],[1,1,0,1]],[[1,2,1,0],[2,3,0,1],[3,3,3,2],[1,1,0,1]],[[1,2,1,0],[3,3,0,1],[2,3,3,2],[1,1,0,1]],[[2,2,1,0],[2,3,0,1],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[2,3,0,1],[2,3,3,2],[2,0,2,0]],[[1,2,1,0],[2,3,0,1],[2,4,3,2],[1,0,2,0]],[[1,2,1,0],[2,3,0,1],[3,3,3,2],[1,0,2,0]],[[1,2,1,0],[3,3,0,1],[2,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,3,0,1],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,3,0,1],[2,3,3,2],[2,0,1,1]],[[1,2,1,0],[2,3,0,1],[2,4,3,2],[1,0,1,1]],[[1,2,1,0],[2,3,0,1],[3,3,3,2],[1,0,1,1]],[[1,2,1,0],[3,3,0,1],[2,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,3,0,1],[2,3,3,2],[1,0,1,1]],[[1,2,1,0],[2,3,0,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,3,0,1],[2,4,3,2],[0,2,1,0]],[[1,2,1,0],[2,3,0,1],[3,3,3,2],[0,2,1,0]],[[1,2,1,0],[3,3,0,1],[2,3,3,2],[0,2,1,0]],[[2,2,1,0],[2,3,0,1],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[2,3,0,1],[2,3,3,2],[0,3,0,1]],[[1,2,1,0],[2,3,0,1],[2,4,3,2],[0,2,0,1]],[[1,2,1,0],[2,3,0,1],[3,3,3,2],[0,2,0,1]],[[1,2,1,0],[3,3,0,1],[2,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,3,0,1],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[2,3,0,1],[2,4,3,2],[0,1,2,0]],[[1,2,1,0],[2,3,0,1],[3,3,3,2],[0,1,2,0]],[[1,2,1,0],[3,3,0,1],[2,3,3,2],[0,1,2,0]],[[2,2,1,0],[2,3,0,1],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[2,3,0,1],[2,4,3,2],[0,1,1,1]],[[1,2,1,0],[2,3,0,1],[3,3,3,2],[0,1,1,1]],[[1,2,1,0],[3,3,0,1],[2,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,3,0,1],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[2,3,0,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[2,3,0,1],[2,4,3,1],[1,2,0,1]],[[1,2,1,0],[2,3,0,1],[3,3,3,1],[1,2,0,1]],[[1,2,1,0],[3,3,0,1],[2,3,3,1],[1,2,0,1]],[[2,2,1,0],[2,3,0,1],[2,3,3,1],[1,2,0,1]],[[1,2,1,0],[2,3,0,1],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[2,3,0,1],[2,4,3,1],[1,1,1,1]],[[1,2,1,0],[2,3,0,1],[3,3,3,1],[1,1,1,1]],[[1,2,1,0],[3,3,0,1],[2,3,3,1],[1,1,1,1]],[[2,2,1,0],[2,3,0,1],[2,3,3,1],[1,1,1,1]],[[1,2,1,0],[2,3,0,1],[2,3,3,1],[2,0,2,1]],[[1,2,1,0],[2,3,0,1],[2,4,3,1],[1,0,2,1]],[[1,2,1,0],[2,3,0,1],[3,3,3,1],[1,0,2,1]],[[1,2,1,0],[3,3,0,1],[2,3,3,1],[1,0,2,1]],[[2,2,1,0],[2,3,0,1],[2,3,3,1],[1,0,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,3,1],[0,3,1,1]],[[1,2,1,0],[2,3,0,1],[2,4,3,1],[0,2,1,1]],[[1,2,1,0],[2,3,0,1],[3,3,3,1],[0,2,1,1]],[[1,2,1,0],[3,3,0,1],[2,3,3,1],[0,2,1,1]],[[2,2,1,0],[2,3,0,1],[2,3,3,1],[0,2,1,1]],[[1,2,1,0],[2,3,0,1],[2,4,3,1],[0,1,2,1]],[[1,2,1,0],[2,3,0,1],[3,3,3,1],[0,1,2,1]],[[1,2,1,0],[3,3,0,1],[2,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,3,0,1],[2,3,3,1],[0,1,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,3,0],[2,1,2,1]],[[1,2,1,0],[2,3,0,1],[2,4,3,0],[1,1,2,1]],[[1,2,1,0],[2,3,0,1],[3,3,3,0],[1,1,2,1]],[[1,2,1,0],[3,3,0,1],[2,3,3,0],[1,1,2,1]],[[2,2,1,0],[2,3,0,1],[2,3,3,0],[1,1,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,3,0],[0,2,3,1]],[[1,2,1,0],[2,3,0,1],[2,3,3,0],[0,3,2,1]],[[1,2,1,0],[2,3,0,1],[2,4,3,0],[0,2,2,1]],[[1,2,1,0],[2,3,0,1],[3,3,3,0],[0,2,2,1]],[[1,2,1,0],[3,3,0,1],[2,3,3,0],[0,2,2,1]],[[2,2,1,0],[2,3,0,1],[2,3,3,0],[0,2,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,3,0,1],[2,4,2,2],[1,1,2,0]],[[1,2,1,0],[2,3,0,1],[3,3,2,2],[1,1,2,0]],[[1,2,1,0],[3,3,0,1],[2,3,2,2],[1,1,2,0]],[[2,2,1,0],[2,3,0,1],[2,3,2,2],[1,1,2,0]],[[1,2,1,0],[2,3,0,1],[2,3,2,2],[0,2,3,0]],[[1,2,1,0],[2,3,0,1],[2,3,2,2],[0,3,2,0]],[[1,2,1,0],[2,3,0,1],[2,4,2,2],[0,2,2,0]],[[1,2,1,0],[2,3,0,1],[3,3,2,2],[0,2,2,0]],[[1,2,1,0],[3,3,0,1],[2,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,3,0,1],[2,3,2,2],[0,2,2,0]],[[1,2,1,0],[2,3,0,1],[2,3,2,1],[2,1,2,1]],[[1,2,1,0],[2,3,0,1],[2,4,2,1],[1,1,2,1]],[[1,2,1,0],[2,3,0,1],[3,3,2,1],[1,1,2,1]],[[1,2,1,0],[3,3,0,1],[2,3,2,1],[1,1,2,1]],[[2,2,1,0],[2,3,0,1],[2,3,2,1],[1,1,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,2,1],[0,2,2,2]],[[1,2,1,0],[2,3,0,1],[2,3,2,1],[0,2,3,1]],[[1,2,1,0],[2,3,0,1],[2,3,2,1],[0,3,2,1]],[[1,2,1,0],[2,3,0,1],[2,4,2,1],[0,2,2,1]],[[1,2,1,0],[2,3,0,1],[3,3,2,1],[0,2,2,1]],[[1,2,1,0],[3,3,0,1],[2,3,2,1],[0,2,2,1]],[[2,2,1,0],[2,3,0,1],[2,3,2,1],[0,2,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,2,0],[1,3,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,2,0],[2,2,2,1]],[[1,2,1,0],[2,3,0,1],[3,3,2,0],[1,2,2,1]],[[1,2,1,0],[3,3,0,1],[2,3,2,0],[1,2,2,1]],[[2,2,1,0],[2,3,0,1],[2,3,2,0],[1,2,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,1,2],[1,3,2,0]],[[1,2,1,0],[2,3,0,1],[2,3,1,2],[2,2,2,0]],[[1,2,1,0],[2,3,0,1],[3,3,1,2],[1,2,2,0]],[[1,2,1,0],[3,3,0,1],[2,3,1,2],[1,2,2,0]],[[2,2,1,0],[2,3,0,1],[2,3,1,2],[1,2,2,0]],[[1,2,1,0],[2,3,0,1],[2,3,1,2],[2,1,2,1]],[[1,2,1,0],[2,3,0,1],[2,4,1,2],[1,1,2,1]],[[1,2,1,0],[2,3,0,1],[3,3,1,2],[1,1,2,1]],[[1,2,1,0],[3,3,0,1],[2,3,1,2],[1,1,2,1]],[[2,2,1,0],[2,3,0,1],[2,3,1,2],[1,1,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,1,2],[0,2,2,2]],[[1,2,1,0],[2,3,0,1],[2,3,1,2],[0,2,3,1]],[[1,2,1,0],[2,3,0,1],[2,3,1,2],[0,3,2,1]],[[1,2,1,0],[2,3,0,1],[2,4,1,2],[0,2,2,1]],[[1,2,1,0],[2,3,0,1],[3,3,1,2],[0,2,2,1]],[[1,2,1,0],[3,3,0,1],[2,3,1,2],[0,2,2,1]],[[2,2,1,0],[2,3,0,1],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,0,1,1],[3,3,3,2],[1,2,2,1]],[[1,1,1,0],[2,0,1,1],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,0,1,1],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,0,1,1],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,0,1,1],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[2,0,1,2],[1,3,3,3],[1,2,2,1]],[[1,1,1,0],[2,0,1,2],[1,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,0,1,2],[1,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,0,1,2],[1,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,0,1,2],[1,3,3,2],[1,2,2,2]],[[1,1,1,0],[2,0,1,2],[3,2,3,2],[1,2,2,1]],[[1,1,1,0],[2,0,1,2],[2,2,3,3],[1,2,2,1]],[[1,1,1,0],[2,0,1,2],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,0,1,2],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,0,1,2],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,0,1,2],[2,2,3,2],[1,2,2,2]],[[1,1,1,0],[2,0,1,2],[3,3,2,2],[1,2,2,1]],[[1,1,1,0],[2,0,1,2],[2,3,2,3],[1,2,2,1]],[[1,1,1,0],[2,0,1,2],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,0,1,2],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,0,1,2],[2,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,0,1,2],[2,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,0,1,2],[3,3,3,1],[1,2,2,1]],[[1,1,1,0],[2,0,1,2],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,0,1,2],[2,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,0,1,2],[2,3,3,1],[1,2,3,1]],[[1,1,1,0],[2,0,1,2],[2,3,3,1],[1,2,2,2]],[[1,1,1,0],[2,0,1,2],[2,3,3,3],[0,2,2,1]],[[1,1,1,0],[2,0,1,2],[2,3,3,2],[0,3,2,1]],[[1,1,1,0],[2,0,1,2],[2,3,3,2],[0,2,3,1]],[[1,1,1,0],[2,0,1,2],[2,3,3,2],[0,2,2,2]],[[1,1,1,0],[2,0,1,2],[3,3,3,2],[1,2,2,0]],[[1,1,1,0],[2,0,1,2],[2,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,0,1,2],[2,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,0,1,2],[2,3,3,2],[1,2,3,0]],[[1,1,1,0],[2,0,2,0],[3,3,3,2],[1,2,2,1]],[[1,1,1,0],[2,0,2,0],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,0,2,0],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,0,2,0],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,0,2,0],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[2,0,2,1],[3,3,3,1],[1,2,2,1]],[[1,1,1,0],[2,0,2,1],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,0,2,1],[2,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,0,2,1],[2,3,3,1],[1,2,3,1]],[[1,1,1,0],[2,0,2,1],[2,3,3,1],[1,2,2,2]],[[1,1,1,0],[2,0,2,1],[3,3,3,2],[1,2,2,0]],[[1,1,1,0],[2,0,2,1],[2,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,0,2,1],[2,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,0,2,1],[2,3,3,2],[1,2,3,0]],[[1,1,1,0],[2,0,2,2],[1,3,2,3],[1,2,2,1]],[[1,1,1,0],[2,0,2,2],[1,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,0,2,2],[1,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,0,2,2],[1,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,0,2,2],[1,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,0,2,2],[1,3,4,1],[1,2,2,1]],[[1,1,1,0],[2,0,2,2],[1,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,0,2,2],[1,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,0,2,2],[1,3,3,1],[1,2,3,1]],[[1,1,1,0],[2,0,2,2],[1,3,3,1],[1,2,2,2]],[[1,1,1,0],[2,0,2,2],[1,3,4,2],[1,2,1,1]],[[1,1,1,0],[2,0,2,2],[1,3,3,3],[1,2,1,1]],[[1,1,1,0],[2,0,2,2],[1,3,3,2],[1,2,1,2]],[[1,1,1,0],[2,0,2,2],[1,3,4,2],[1,2,2,0]],[[1,1,1,0],[2,0,2,2],[1,3,3,3],[1,2,2,0]],[[1,1,1,0],[2,0,2,2],[1,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,0,2,2],[1,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,0,2,2],[1,3,3,2],[1,2,3,0]],[[1,1,1,0],[2,0,2,2],[3,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,2,2,3],[1,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,0,2,2],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,0,2,2],[2,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,0,2,2],[3,2,3,1],[1,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,0,2,2],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,0,2,2],[2,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,0,2,2],[2,2,4,2],[1,2,1,1]],[[1,1,1,0],[2,0,2,2],[2,2,3,3],[1,2,1,1]],[[1,1,1,0],[2,0,2,2],[2,2,3,2],[1,2,1,2]],[[1,1,1,0],[2,0,2,2],[3,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,0,2,2],[2,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,0,2,2],[2,2,3,3],[1,2,2,0]],[[1,1,1,0],[2,0,2,2],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,0,2,2],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,0,2,2],[2,2,3,2],[1,2,3,0]],[[1,1,1,0],[2,0,2,2],[3,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,0,2,2],[2,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,0,2,2],[2,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,0,2,2],[3,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,0,2,2],[2,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,0,2,2],[2,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,0,2,2],[2,3,2,3],[0,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,3,2,2],[0,3,2,1]],[[1,1,1,0],[2,0,2,2],[2,3,2,2],[0,2,3,1]],[[1,1,1,0],[2,0,2,2],[2,3,2,2],[0,2,2,2]],[[1,1,1,0],[2,0,2,2],[3,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,0,2,2],[2,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,0,2,2],[2,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,0,2,2],[2,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,0,2,2],[2,3,4,1],[0,2,2,1]],[[1,1,1,0],[2,0,2,2],[2,3,3,1],[0,3,2,1]],[[1,1,1,0],[2,0,2,2],[2,3,3,1],[0,2,3,1]],[[1,1,1,0],[2,0,2,2],[2,3,3,1],[0,2,2,2]],[[1,1,1,0],[2,0,2,2],[3,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,0,2,2],[2,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,0,2,2],[2,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,0,2,2],[2,3,4,2],[0,2,1,1]],[[1,1,1,0],[2,0,2,2],[2,3,3,3],[0,2,1,1]],[[1,1,1,0],[2,0,2,2],[2,3,3,2],[0,2,1,2]],[[1,1,1,0],[2,0,2,2],[2,3,4,2],[0,2,2,0]],[[1,1,1,0],[2,0,2,2],[2,3,3,3],[0,2,2,0]],[[1,1,1,0],[2,0,2,2],[2,3,3,2],[0,3,2,0]],[[1,1,1,0],[2,0,2,2],[2,3,3,2],[0,2,3,0]],[[1,1,1,0],[2,0,2,2],[3,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,0,2,2],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,0,2,2],[2,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,0,2,2],[3,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,0,2,2],[2,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,0,2,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,3,0,1],[2,3,1,1],[1,3,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,1,1],[2,2,2,1]],[[1,2,1,0],[2,3,0,1],[3,3,1,1],[1,2,2,1]],[[1,2,1,0],[3,3,0,1],[2,3,1,1],[1,2,2,1]],[[2,2,1,0],[2,3,0,1],[2,3,1,1],[1,2,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,0,2],[1,3,2,1]],[[1,2,1,0],[2,3,0,1],[2,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,0,3,0],[1,3,4,2],[1,2,2,1]],[[1,1,1,0],[2,0,3,0],[1,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,0,3,0],[1,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,0,3,0],[1,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,0,3,0],[1,3,3,2],[1,2,2,2]],[[1,1,1,0],[2,0,3,0],[3,2,3,2],[1,2,2,1]],[[1,1,1,0],[2,0,3,0],[2,2,4,2],[1,2,2,1]],[[1,1,1,0],[2,0,3,0],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,0,3,0],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,0,3,0],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,0,3,0],[2,2,3,2],[1,2,2,2]],[[1,1,1,0],[2,0,3,0],[3,3,2,2],[1,2,2,1]],[[1,1,1,0],[2,0,3,0],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,0,3,0],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,0,3,0],[2,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,0,3,0],[2,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,0,3,0],[2,3,4,2],[0,2,2,1]],[[1,1,1,0],[2,0,3,0],[2,3,3,2],[0,3,2,1]],[[1,1,1,0],[2,0,3,0],[2,3,3,2],[0,2,3,1]],[[1,1,1,0],[2,0,3,0],[2,3,3,2],[0,2,2,2]],[[1,1,1,0],[2,0,3,0],[3,3,3,2],[1,2,1,1]],[[1,1,1,0],[2,0,3,0],[2,3,3,2],[2,2,1,1]],[[1,1,1,0],[2,0,3,0],[2,3,3,2],[1,3,1,1]],[[1,1,1,0],[2,0,3,1],[1,3,2,3],[1,2,2,1]],[[1,1,1,0],[2,0,3,1],[1,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,0,3,1],[1,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,0,3,1],[1,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,0,3,1],[1,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,0,3,1],[1,3,4,1],[1,2,2,1]],[[1,1,1,0],[2,0,3,1],[1,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,0,3,1],[1,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,0,3,1],[1,3,3,1],[1,2,3,1]],[[1,1,1,0],[2,0,3,1],[1,3,3,1],[1,2,2,2]],[[1,1,1,0],[2,0,3,1],[1,3,4,2],[1,2,1,1]],[[1,1,1,0],[2,0,3,1],[1,3,3,3],[1,2,1,1]],[[1,1,1,0],[2,0,3,1],[1,3,3,2],[1,2,1,2]],[[1,1,1,0],[2,0,3,1],[1,3,4,2],[1,2,2,0]],[[1,1,1,0],[2,0,3,1],[1,3,3,3],[1,2,2,0]],[[1,1,1,0],[2,0,3,1],[1,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,0,3,1],[1,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,0,3,1],[1,3,3,2],[1,2,3,0]],[[1,1,1,0],[2,0,3,1],[3,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,2,2,3],[1,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,0,3,1],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,0,3,1],[2,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,0,3,1],[3,2,3,1],[1,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,0,3,1],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,0,3,1],[2,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,0,3,1],[2,2,4,2],[1,2,1,1]],[[1,1,1,0],[2,0,3,1],[2,2,3,3],[1,2,1,1]],[[1,1,1,0],[2,0,3,1],[2,2,3,2],[1,2,1,2]],[[1,1,1,0],[2,0,3,1],[3,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,0,3,1],[2,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,0,3,1],[2,2,3,3],[1,2,2,0]],[[1,1,1,0],[2,0,3,1],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,0,3,1],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,0,3,1],[2,2,3,2],[1,2,3,0]],[[1,1,1,0],[2,0,3,1],[3,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,0,3,1],[2,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,0,3,1],[3,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,0,3,1],[2,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,0,3,1],[2,3,2,3],[0,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,2,2],[0,3,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,2,2],[0,2,3,1]],[[1,1,1,0],[2,0,3,1],[2,3,2,2],[0,2,2,2]],[[1,1,1,0],[2,0,3,1],[3,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,0,3,1],[2,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,0,3,1],[2,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,0,3,1],[2,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,0,3,1],[3,3,3,0],[1,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,0],[1,2,3,1]],[[1,1,1,0],[2,0,3,1],[2,3,4,1],[0,2,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,1],[0,3,2,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,1],[0,2,3,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,1],[0,2,2,2]],[[1,1,1,0],[2,0,3,1],[3,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,0,3,1],[2,3,4,2],[0,2,1,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,3],[0,2,1,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,2],[0,2,1,2]],[[1,1,1,0],[2,0,3,1],[2,3,4,2],[0,2,2,0]],[[1,1,1,0],[2,0,3,1],[2,3,3,3],[0,2,2,0]],[[1,1,1,0],[2,0,3,1],[2,3,3,2],[0,3,2,0]],[[1,1,1,0],[2,0,3,1],[2,3,3,2],[0,2,3,0]],[[1,1,1,0],[2,0,3,1],[3,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,0,3,1],[2,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,0,3,1],[3,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,0,3,1],[2,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,0,3,1],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,3,0,1],[3,3,0,2],[1,2,2,1]],[[1,2,1,0],[3,3,0,1],[2,3,0,2],[1,2,2,1]],[[2,2,1,0],[2,3,0,1],[2,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,0,3,2],[1,3,4,0],[1,2,2,1]],[[1,1,1,0],[2,0,3,2],[1,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,0,3,2],[1,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,0,3,2],[1,3,3,0],[1,2,3,1]],[[1,1,1,0],[2,0,3,2],[1,3,3,0],[1,2,2,2]],[[1,1,1,0],[2,0,3,2],[1,3,4,1],[1,2,2,0]],[[1,1,1,0],[2,0,3,2],[1,3,3,1],[2,2,2,0]],[[1,1,1,0],[2,0,3,2],[1,3,3,1],[1,3,2,0]],[[1,1,1,0],[2,0,3,2],[1,3,3,1],[1,2,3,0]],[[1,1,1,0],[2,0,3,2],[3,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,0,3,2],[2,2,4,0],[1,2,2,1]],[[1,1,1,0],[2,0,3,2],[2,2,3,0],[2,2,2,1]],[[1,1,1,0],[2,0,3,2],[2,2,3,0],[1,3,2,1]],[[1,1,1,0],[2,0,3,2],[2,2,3,0],[1,2,3,1]],[[1,1,1,0],[2,0,3,2],[2,2,3,0],[1,2,2,2]],[[1,1,1,0],[2,0,3,2],[3,2,3,1],[1,2,2,0]],[[1,1,1,0],[2,0,3,2],[2,2,4,1],[1,2,2,0]],[[1,1,1,0],[2,0,3,2],[2,2,3,1],[2,2,2,0]],[[1,1,1,0],[2,0,3,2],[2,2,3,1],[1,3,2,0]],[[1,1,1,0],[2,0,3,2],[2,2,3,1],[1,2,3,0]],[[1,2,1,0],[2,3,0,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,3,0,1],[2,2,3,2],[2,2,1,0]],[[1,2,1,0],[2,3,0,1],[3,2,3,2],[1,2,1,0]],[[1,2,1,0],[3,3,0,1],[2,2,3,2],[1,2,1,0]],[[2,2,1,0],[2,3,0,1],[2,2,3,2],[1,2,1,0]],[[1,2,1,0],[2,3,0,1],[2,2,3,2],[1,3,0,1]],[[1,1,1,0],[2,0,3,2],[3,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,0,3,2],[2,3,0,3],[1,2,2,1]],[[1,1,1,0],[2,0,3,2],[2,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,0,3,2],[2,3,0,2],[1,3,2,1]],[[1,1,1,0],[2,0,3,2],[2,3,0,2],[1,2,3,1]],[[1,1,1,0],[2,0,3,2],[2,3,0,2],[1,2,2,2]],[[1,1,1,0],[2,0,3,2],[3,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,0,3,2],[2,3,2,0],[2,2,2,1]],[[1,1,1,0],[2,0,3,2],[2,3,2,0],[1,3,2,1]],[[1,1,1,0],[2,0,3,2],[2,3,2,0],[1,2,3,1]],[[1,1,1,0],[2,0,3,2],[2,3,2,0],[1,2,2,2]],[[1,1,1,0],[2,0,3,2],[3,3,2,1],[1,2,2,0]],[[1,1,1,0],[2,0,3,2],[2,3,2,1],[2,2,2,0]],[[1,1,1,0],[2,0,3,2],[2,3,2,1],[1,3,2,0]],[[1,1,1,0],[2,0,3,2],[2,3,2,1],[1,2,3,0]],[[1,2,1,0],[2,3,0,1],[2,2,3,2],[2,2,0,1]],[[1,2,1,0],[2,3,0,1],[3,2,3,2],[1,2,0,1]],[[1,2,1,0],[3,3,0,1],[2,2,3,2],[1,2,0,1]],[[2,2,1,0],[2,3,0,1],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,0,3,2],[2,3,4,0],[0,2,2,1]],[[1,1,1,0],[2,0,3,2],[2,3,3,0],[0,3,2,1]],[[1,1,1,0],[2,0,3,2],[2,3,3,0],[0,2,3,1]],[[1,1,1,0],[2,0,3,2],[2,3,3,0],[0,2,2,2]],[[1,1,1,0],[2,0,3,2],[3,3,3,0],[1,2,1,1]],[[1,1,1,0],[2,0,3,2],[2,3,3,0],[2,2,1,1]],[[1,1,1,0],[2,0,3,2],[2,3,3,0],[1,3,1,1]],[[1,1,1,0],[2,0,3,2],[2,3,4,1],[0,2,2,0]],[[1,1,1,0],[2,0,3,2],[2,3,3,1],[0,3,2,0]],[[1,1,1,0],[2,0,3,2],[2,3,3,1],[0,2,3,0]],[[1,1,1,0],[2,0,3,2],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,0,3,2],[2,3,3,1],[2,2,0,1]],[[1,1,1,0],[2,0,3,2],[2,3,3,1],[1,3,0,1]],[[1,1,1,0],[2,0,3,2],[3,3,3,1],[1,2,1,0]],[[1,1,1,0],[2,0,3,2],[2,3,3,1],[2,2,1,0]],[[1,1,1,0],[2,0,3,2],[2,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,3,0,1],[2,2,3,1],[1,3,1,1]],[[1,2,1,0],[2,3,0,1],[2,2,3,1],[2,2,1,1]],[[1,2,1,0],[2,3,0,1],[3,2,3,1],[1,2,1,1]],[[1,2,1,0],[3,3,0,1],[2,2,3,1],[1,2,1,1]],[[2,2,1,0],[2,3,0,1],[2,2,3,1],[1,2,1,1]],[[1,2,1,0],[2,3,0,1],[2,2,3,0],[1,2,3,1]],[[1,2,1,0],[2,3,0,1],[2,2,3,0],[1,3,2,1]],[[1,2,1,0],[2,3,0,1],[2,2,3,0],[2,2,2,1]],[[1,2,1,0],[2,3,0,1],[3,2,3,0],[1,2,2,1]],[[1,2,1,0],[3,3,0,1],[2,2,3,0],[1,2,2,1]],[[2,2,1,0],[2,3,0,1],[2,2,3,0],[1,2,2,1]],[[1,2,1,0],[2,3,0,1],[2,2,2,2],[1,2,3,0]],[[1,2,1,0],[2,3,0,1],[2,2,2,2],[1,3,2,0]],[[1,2,1,0],[2,3,0,1],[2,2,2,2],[2,2,2,0]],[[1,2,1,0],[2,3,0,1],[3,2,2,2],[1,2,2,0]],[[1,2,1,0],[3,3,0,1],[2,2,2,2],[1,2,2,0]],[[2,2,1,0],[2,3,0,1],[2,2,2,2],[1,2,2,0]],[[1,2,1,0],[2,3,0,1],[2,2,2,1],[1,2,2,2]],[[1,1,1,0],[2,1,0,1],[3,3,3,2],[1,2,2,1]],[[1,1,1,0],[2,1,0,1],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,1,0,1],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,1,0,1],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,0,1],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[2,1,0,2],[1,3,3,3],[1,2,2,1]],[[1,1,1,0],[2,1,0,2],[1,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,1,0,2],[1,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,1,0,2],[1,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,0,2],[1,3,3,2],[1,2,2,2]],[[1,1,1,0],[2,1,0,2],[3,2,3,2],[1,2,2,1]],[[1,1,1,0],[2,1,0,2],[2,2,3,3],[1,2,2,1]],[[1,1,1,0],[2,1,0,2],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,1,0,2],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,1,0,2],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,0,2],[2,2,3,2],[1,2,2,2]],[[1,1,1,0],[2,1,0,2],[3,3,2,2],[1,2,2,1]],[[1,1,1,0],[2,1,0,2],[2,3,2,3],[1,2,2,1]],[[1,1,1,0],[2,1,0,2],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,1,0,2],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,1,0,2],[2,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,1,0,2],[2,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,1,0,2],[3,3,3,1],[1,2,2,1]],[[1,1,1,0],[2,1,0,2],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,1,0,2],[2,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,1,0,2],[2,3,3,1],[1,2,3,1]],[[1,1,1,0],[2,1,0,2],[2,3,3,1],[1,2,2,2]],[[1,1,1,0],[2,1,0,2],[2,3,3,3],[0,2,2,1]],[[1,1,1,0],[2,1,0,2],[2,3,3,2],[0,3,2,1]],[[1,1,1,0],[2,1,0,2],[2,3,3,2],[0,2,3,1]],[[1,1,1,0],[2,1,0,2],[2,3,3,2],[0,2,2,2]],[[1,1,1,0],[2,1,0,2],[3,3,3,2],[1,2,2,0]],[[1,1,1,0],[2,1,0,2],[2,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,1,0,2],[2,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,1,0,2],[2,3,3,2],[1,2,3,0]],[[1,1,1,0],[2,1,1,0],[3,3,3,2],[1,2,2,1]],[[1,1,1,0],[2,1,1,0],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,1,1,0],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,1,1,0],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,1,0],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[2,1,1,1],[3,3,3,1],[1,2,2,1]],[[1,1,1,0],[2,1,1,1],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,1,1,1],[2,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,1,1,1],[2,3,3,1],[1,2,3,1]],[[1,1,1,0],[2,1,1,1],[2,3,3,1],[1,2,2,2]],[[1,1,1,0],[2,1,1,1],[3,3,3,2],[1,2,2,0]],[[1,1,1,0],[2,1,1,1],[2,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,1,1,1],[2,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,1,1,1],[2,3,3,2],[1,2,3,0]],[[1,1,1,0],[2,1,1,2],[1,2,3,3],[1,2,2,1]],[[1,1,1,0],[2,1,1,2],[1,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,1,1,2],[1,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,1,1,2],[1,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,1,2],[1,2,3,2],[1,2,2,2]],[[1,1,1,0],[2,1,1,2],[1,3,3,3],[1,1,2,1]],[[1,1,1,0],[2,1,1,2],[1,3,3,2],[1,1,3,1]],[[1,1,1,0],[2,1,1,2],[1,3,3,2],[1,1,2,2]],[[1,1,1,0],[2,1,1,2],[3,1,3,2],[1,2,2,1]],[[1,1,1,0],[2,1,1,2],[2,1,3,3],[1,2,2,1]],[[1,1,1,0],[2,1,1,2],[2,1,3,2],[2,2,2,1]],[[1,1,1,0],[2,1,1,2],[2,1,3,2],[1,3,2,1]],[[1,1,1,0],[2,1,1,2],[2,1,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,1,2],[2,1,3,2],[1,2,2,2]],[[1,1,1,0],[2,1,1,2],[2,2,3,3],[0,2,2,1]],[[1,1,1,0],[2,1,1,2],[2,2,3,2],[0,3,2,1]],[[1,1,1,0],[2,1,1,2],[2,2,3,2],[0,2,3,1]],[[1,1,1,0],[2,1,1,2],[2,2,3,2],[0,2,2,2]],[[1,1,1,0],[2,1,1,2],[3,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,1,2],[2,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,1,1,2],[2,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,1,1,2],[2,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,1,1,2],[2,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,1,1,2],[2,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,1,1,2],[3,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,1,1,2],[2,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,1,1,2],[2,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,1,1,2],[2,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,1,1,2],[2,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,1,1,2],[3,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,1,2],[2,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,1,1,2],[2,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,1,1,2],[2,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,1,1,2],[3,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,1,2],[2,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,1,1,2],[2,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,1,1,2],[2,3,3,3],[0,1,2,1]],[[1,1,1,0],[2,1,1,2],[2,3,3,2],[0,1,3,1]],[[1,1,1,0],[2,1,1,2],[2,3,3,2],[0,1,2,2]],[[1,1,1,0],[2,1,1,2],[2,3,3,3],[1,0,2,1]],[[1,1,1,0],[2,1,1,2],[2,3,3,2],[1,0,3,1]],[[1,1,1,0],[2,1,1,2],[2,3,3,2],[1,0,2,2]],[[1,1,1,0],[2,1,1,2],[3,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,1,1,2],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,1,1,2],[2,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,1,1,2],[3,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,1,1,2],[2,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,1,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,3,0,1],[2,2,2,1],[1,2,3,1]],[[1,2,1,0],[2,3,0,1],[2,2,2,1],[1,3,2,1]],[[1,2,1,0],[2,3,0,1],[2,2,2,1],[2,2,2,1]],[[1,2,1,0],[2,3,0,1],[3,2,2,1],[1,2,2,1]],[[1,2,1,0],[3,3,0,1],[2,2,2,1],[1,2,2,1]],[[2,2,1,0],[2,3,0,1],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,1,2,0],[3,3,2,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,0],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,1,2,0],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,1,2,0],[2,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,1,2,0],[2,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,1,2,0],[3,3,3,2],[1,2,1,1]],[[1,1,1,0],[2,1,2,0],[2,3,3,2],[2,2,1,1]],[[1,1,1,0],[2,1,2,0],[2,3,3,2],[1,3,1,1]],[[1,1,1,0],[2,1,2,1],[3,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,1],[2,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,1,2,1],[2,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,1,2,1],[2,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,1,2,1],[2,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,1,2,1],[3,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,1,2,1],[2,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,1,2,1],[2,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,1,2,1],[2,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,1,2,1],[2,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,1,2,1],[3,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,2,1],[2,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,1,2,1],[2,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,1,2,1],[2,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,1,2,1],[3,3,3,0],[1,2,2,1]],[[1,1,1,0],[2,1,2,1],[2,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,1,2,1],[2,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,1,2,1],[2,3,3,0],[1,2,3,1]],[[1,1,1,0],[2,1,2,1],[3,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,2,1],[2,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,1,2,1],[2,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,1,2,1],[3,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,1,2,1],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,1,2,1],[2,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,1,2,1],[3,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,1,2,1],[2,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,1,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,3,0,1],[2,2,1,2],[1,2,2,2]],[[1,2,1,0],[2,3,0,1],[2,2,1,2],[1,2,3,1]],[[1,2,1,0],[2,3,0,1],[2,2,1,2],[1,3,2,1]],[[1,2,1,0],[2,3,0,1],[2,2,1,2],[2,2,2,1]],[[1,2,1,0],[2,3,0,1],[3,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,1,3,3],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,1,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,2,2],[1,1,3,2],[1,2,2,2]],[[1,1,1,0],[2,1,2,3],[1,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,2,2,3],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,1,2,2],[1,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,1,2,2],[1,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,1,2,2],[1,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,1,2,2],[1,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,1,2,2],[1,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,1,2,3],[1,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,1,2,2],[1,2,4,2],[1,2,1,1]],[[1,1,1,0],[2,1,2,2],[1,2,3,3],[1,2,1,1]],[[1,1,1,0],[2,1,2,2],[1,2,3,2],[1,2,1,2]],[[1,1,1,0],[2,1,2,3],[1,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,1,2,2],[1,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,1,2,2],[1,2,3,3],[1,2,2,0]],[[1,1,1,0],[2,1,2,2],[1,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,1,2,2],[1,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,1,2,2],[1,2,3,2],[1,2,3,0]],[[1,1,1,0],[2,1,2,3],[1,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,4,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,1,2,2],[1,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,1,2,2],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,1,2,2],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,1,2,3],[1,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,2,3],[1,1,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,2,2],[1,1,3,1]],[[1,1,1,0],[2,1,2,2],[1,3,2,2],[1,1,2,2]],[[1,1,1,0],[2,1,2,2],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,2,2],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,1,2,2],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,1,2,2],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,1,2,2],[1,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,4,1],[1,1,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,1],[1,1,3,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,1],[1,1,2,2]],[[1,1,1,0],[2,1,2,2],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,2,2],[1,3,4,1],[1,2,1,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,1,2,2],[1,3,4,2],[1,0,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,3],[1,0,2,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,2],[1,0,2,2]],[[1,1,1,0],[2,1,2,3],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,1,2,2],[1,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,1,2,2],[1,3,4,2],[1,1,1,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,3],[1,1,1,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,2],[1,1,1,2]],[[1,1,1,0],[2,1,2,3],[1,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,1,2,2],[1,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,1,2,2],[1,3,4,2],[1,1,2,0]],[[1,1,1,0],[2,1,2,2],[1,3,3,3],[1,1,2,0]],[[1,1,1,0],[2,1,2,2],[1,3,3,2],[1,1,3,0]],[[1,1,1,0],[2,1,2,3],[1,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,1,2,2],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,1,2,2],[1,3,4,2],[1,2,0,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,3],[1,2,0,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,1,2,2],[1,3,3,2],[1,2,0,2]],[[1,1,1,0],[2,1,2,3],[1,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,1,2,2],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,1,2,2],[1,3,4,2],[1,2,1,0]],[[1,1,1,0],[2,1,2,2],[1,3,3,3],[1,2,1,0]],[[1,1,1,0],[2,1,2,2],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,1,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[3,3,0,1],[2,2,1,2],[1,2,2,1]],[[2,2,1,0],[2,3,0,1],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,0,3,3],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,0,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,2,2],[2,0,3,2],[1,2,2,2]],[[2,1,1,0],[2,1,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[3,1,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,3],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[3,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,1,2,3],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,1,2,2],[2,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,1,2,2],[1,3,2,1]],[[1,1,1,0],[2,1,2,2],[2,1,2,2],[1,2,3,1]],[[1,1,1,0],[2,1,2,2],[2,1,2,2],[1,2,2,2]],[[2,1,1,0],[2,1,2,2],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[3,1,2,2],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[3,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,1,4,1],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,1,3,1],[2,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,1,3,1],[1,3,2,1]],[[1,1,1,0],[2,1,2,2],[2,1,3,1],[1,2,3,1]],[[1,1,1,0],[2,1,2,2],[2,1,3,1],[1,2,2,2]],[[1,1,1,0],[2,1,2,2],[2,1,3,3],[0,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,1,3,2],[0,2,3,1]],[[1,1,1,0],[2,1,2,2],[2,1,3,2],[0,2,2,2]],[[1,1,1,0],[2,1,2,3],[2,1,3,2],[1,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,1,4,2],[1,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,1,3,3],[1,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,1,3,2],[1,2,1,2]],[[2,1,1,0],[2,1,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[3,1,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,1,2,3],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,1,2,2],[3,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,1,4,2],[1,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,1,3,3],[1,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,1,3,2],[2,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,1,3,2],[1,3,2,0]],[[1,1,1,0],[2,1,2,2],[2,1,3,2],[1,2,3,0]],[[2,1,1,0],[2,1,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[3,1,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,3],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[3,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,1,3],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,1,2],[2,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,1,2],[1,3,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,1,2],[1,2,3,1]],[[1,1,1,0],[2,1,2,2],[2,2,1,2],[1,2,2,2]],[[2,1,1,0],[2,1,2,2],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[3,1,2,2],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[2,1,2,2],[2,2,2,1],[1,2,2,2]],[[1,1,1,0],[2,1,2,3],[2,2,2,2],[0,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,2,3],[0,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,2,2],[0,3,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,2,2],[0,2,3,1]],[[1,1,1,0],[2,1,2,2],[2,2,2,2],[0,2,2,2]],[[2,1,1,0],[2,1,2,2],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[3,1,2,2],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,2,2],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[2,1,2,2],[2,2,2,2],[1,2,3,0]],[[1,1,1,0],[2,1,2,2],[2,2,4,1],[0,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,3,1],[0,3,2,1]],[[1,1,1,0],[2,1,2,2],[2,2,3,1],[0,2,3,1]],[[1,1,1,0],[2,1,2,2],[2,2,3,1],[0,2,2,2]],[[2,1,1,0],[2,1,2,2],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[3,1,2,2],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,2,2],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,2,3,1],[1,3,1,1]],[[1,1,1,0],[2,1,2,3],[2,2,3,2],[0,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,2,4,2],[0,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,2,3,3],[0,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,2,3,2],[0,2,1,2]],[[1,1,1,0],[2,1,2,3],[2,2,3,2],[0,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,2,4,2],[0,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,2,3,3],[0,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,2,3,2],[0,3,2,0]],[[1,1,1,0],[2,1,2,2],[2,2,3,2],[0,2,3,0]],[[2,1,1,0],[2,1,2,2],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[3,1,2,2],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,1,2,2],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,1,2,2],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[2,1,2,2],[2,2,3,2],[1,3,0,1]],[[2,1,1,0],[2,1,2,2],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[3,1,2,2],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,1,2,2],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,1,2,2],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[2,1,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,3,0,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,3,0,1],[1,3,3,2],[2,2,1,0]],[[1,2,1,0],[2,3,0,1],[1,4,3,2],[1,2,1,0]],[[1,2,1,0],[2,3,0,1],[1,3,3,2],[1,3,0,1]],[[1,2,1,0],[2,3,0,1],[1,3,3,2],[2,2,0,1]],[[1,2,1,0],[2,3,0,1],[1,4,3,2],[1,2,0,1]],[[2,1,1,0],[2,1,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[3,1,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,1,2,3],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,1,2,2],[3,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,4,1,2],[0,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,1,3],[0,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,1,2],[0,3,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,1,2],[0,2,3,1]],[[1,1,1,0],[2,1,2,2],[2,3,1,2],[0,2,2,2]],[[2,1,1,0],[2,1,2,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[3,1,2,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,1,2,2],[3,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,1,2,2],[2,4,1,2],[1,1,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,1,2],[2,1,2,1]],[[1,1,1,0],[2,1,2,2],[3,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,0],[2,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,0],[1,3,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,0],[1,2,3,1]],[[2,1,1,0],[2,1,2,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[3,1,2,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,1,2,2],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,1],[0,2,2,2]],[[2,1,1,0],[2,1,2,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,1,2,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,1,2,2],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,1,2,2],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,1],[2,1,2,1]],[[1,1,1,0],[2,1,2,2],[3,3,2,1],[1,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,2,1],[2,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,2,1],[1,3,2,0]],[[1,1,1,0],[2,1,2,3],[2,3,2,2],[0,1,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,3],[0,1,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,2],[0,1,3,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,2],[0,1,2,2]],[[2,1,1,0],[2,1,2,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[3,1,2,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,1,2,2],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,2,2],[0,2,3,0]],[[1,1,1,0],[2,1,2,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,3],[1,0,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,2],[1,0,3,1]],[[1,1,1,0],[2,1,2,2],[2,3,2,2],[1,0,2,2]],[[2,1,1,0],[2,1,2,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,1,2,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,1,2,2],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,1,2,2],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,3,0,1],[1,3,3,1],[1,3,1,1]],[[1,2,1,0],[2,3,0,1],[1,3,3,1],[2,2,1,1]],[[1,2,1,0],[2,3,0,1],[1,4,3,1],[1,2,1,1]],[[1,2,1,0],[2,3,0,1],[1,3,3,0],[1,2,3,1]],[[1,1,1,0],[2,1,2,2],[3,3,3,0],[1,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,0],[2,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,0],[1,3,1,1]],[[2,1,1,0],[2,1,2,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[3,1,2,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,1,2,2],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,1,2,2],[2,4,3,1],[0,1,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,1],[0,1,2,2]],[[2,1,1,0],[2,1,2,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[3,1,2,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,1,2,2],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,4,1],[0,2,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,1],[0,3,1,1]],[[2,1,1,0],[2,1,2,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[3,1,2,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,1,2,2],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,1,2,2],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,4,1],[1,0,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,1],[2,0,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,1],[1,0,3,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,1],[1,0,2,2]],[[2,1,1,0],[2,1,2,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,1,2,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,1,2,2],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,1,2,2],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,4,1],[1,1,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,1],[2,1,1,1]],[[1,1,1,0],[2,1,2,2],[3,3,3,1],[1,2,1,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,1],[2,2,1,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,3,0,1],[1,3,3,0],[1,3,2,1]],[[1,2,1,0],[2,3,0,1],[1,3,3,0],[2,2,2,1]],[[1,2,1,0],[2,3,0,1],[1,4,3,0],[1,2,2,1]],[[1,2,1,0],[2,3,0,1],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,1,2,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,4,2],[0,0,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,3],[0,0,2,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[0,0,2,2]],[[2,1,1,0],[2,1,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[3,1,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,1,2,3],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,1,2,2],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,1,2,2],[2,4,3,2],[0,1,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,4,2],[0,1,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,3],[0,1,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[0,1,1,2]],[[2,1,1,0],[2,1,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[3,1,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,1,2,3],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,1,2,2],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,1,2,2],[2,4,3,2],[0,1,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,3],[0,1,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[0,1,3,0]],[[2,1,1,0],[2,1,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[3,1,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,1,2,3],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,1,2,2],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,1,2,2],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,1,2,2],[2,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,3],[0,2,0,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[0,3,0,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[0,2,0,2]],[[2,1,1,0],[2,1,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[3,1,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,1,2,3],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,1,2,2],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,1,2,2],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,1,2,2],[2,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,3],[0,2,1,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,3,0,1],[1,3,2,2],[1,3,2,0]],[[1,2,1,0],[2,3,0,1],[1,3,2,2],[2,2,2,0]],[[1,2,1,0],[2,3,0,1],[1,4,2,2],[1,2,2,0]],[[1,2,1,0],[2,3,0,1],[1,3,2,1],[1,2,2,2]],[[1,2,1,0],[2,3,0,1],[1,3,2,1],[1,2,3,1]],[[1,2,1,0],[2,3,0,1],[1,3,2,1],[1,3,2,1]],[[1,2,1,0],[2,3,0,1],[1,3,2,1],[2,2,2,1]],[[1,2,1,0],[2,3,0,1],[1,4,2,1],[1,2,2,1]],[[1,2,1,0],[2,3,0,1],[1,3,1,2],[1,2,2,2]],[[1,2,1,0],[2,3,0,1],[1,3,1,2],[1,2,3,1]],[[2,1,1,0],[2,1,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[3,1,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,1,2,3],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,1,2,2],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,1,2,2],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,4,2],[1,0,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,3],[1,0,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[2,0,1,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[1,0,1,2]],[[2,1,1,0],[2,1,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[3,1,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,1,2,3],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,1,2,2],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,1,2,2],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,4,2],[1,0,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,3],[1,0,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[2,0,2,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[1,0,3,0]],[[2,1,1,0],[2,1,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[3,1,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,1,2,3],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,1,2,2],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,1,2,2],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,1,2,2],[2,3,4,2],[1,1,0,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,3],[1,1,0,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[2,1,0,1]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[1,1,0,2]],[[2,1,1,0],[2,1,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[3,1,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,1,2,3],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,1,2,2],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,1,2,2],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,1,2,2],[2,3,4,2],[1,1,1,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,3],[1,1,1,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,3,0,1],[1,3,1,2],[1,3,2,1]],[[1,2,1,0],[2,3,0,1],[1,3,1,2],[2,2,2,1]],[[1,2,1,0],[2,3,0,1],[1,4,1,2],[1,2,2,1]],[[2,1,1,0],[2,1,2,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,1,2,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,1,2,2],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,1,2,2],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[2,1,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,3,0,0],[2,3,3,2],[2,2,0,1]],[[1,2,1,0],[2,3,0,0],[2,4,3,2],[1,2,0,1]],[[1,2,1,0],[2,3,0,0],[3,3,3,2],[1,2,0,1]],[[1,2,1,0],[3,3,0,0],[2,3,3,2],[1,2,0,1]],[[2,2,1,0],[2,3,0,0],[2,3,3,2],[1,2,0,1]],[[1,2,1,0],[2,3,0,0],[2,3,3,2],[2,1,1,1]],[[1,2,1,0],[2,3,0,0],[2,4,3,2],[1,1,1,1]],[[1,2,1,0],[2,3,0,0],[3,3,3,2],[1,1,1,1]],[[1,2,1,0],[3,3,0,0],[2,3,3,2],[1,1,1,1]],[[2,2,1,0],[2,3,0,0],[2,3,3,2],[1,1,1,1]],[[1,2,1,0],[2,3,0,0],[2,3,3,2],[2,0,2,1]],[[1,2,1,0],[2,3,0,0],[2,4,3,2],[1,0,2,1]],[[1,2,1,0],[2,3,0,0],[3,3,3,2],[1,0,2,1]],[[1,2,1,0],[3,3,0,0],[2,3,3,2],[1,0,2,1]],[[2,2,1,0],[2,3,0,0],[2,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,1,3,0],[1,2,4,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,0],[1,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,0],[1,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,0],[1,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,0],[1,2,3,2],[1,2,2,2]],[[1,1,1,0],[2,1,3,0],[1,4,2,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,0],[1,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,0],[1,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,0],[1,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,0],[1,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,1,3,0],[1,4,3,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,0],[1,3,4,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,0],[1,3,3,2],[1,1,3,1]],[[1,1,1,0],[2,1,3,0],[1,3,3,2],[1,1,2,2]],[[1,1,1,0],[2,1,3,0],[1,4,3,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,0],[1,3,4,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,0],[1,3,3,2],[2,2,1,1]],[[1,1,1,0],[2,1,3,0],[1,3,3,2],[1,3,1,1]],[[2,1,1,0],[2,1,3,0],[2,1,3,2],[1,2,2,1]],[[1,1,1,0],[3,1,3,0],[2,1,3,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,0],[3,1,3,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,1,4,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,1,3,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,1,3,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,0],[2,1,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,0],[2,1,3,2],[1,2,2,2]],[[2,1,1,0],[2,1,3,0],[2,2,2,2],[1,2,2,1]],[[1,1,1,0],[3,1,3,0],[2,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,0],[3,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,0],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,0],[2,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,1,3,0],[2,2,4,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,2,3,2],[0,3,2,1]],[[1,1,1,0],[2,1,3,0],[2,2,3,2],[0,2,3,1]],[[1,1,1,0],[2,1,3,0],[2,2,3,2],[0,2,2,2]],[[2,1,1,0],[2,1,3,0],[2,2,3,2],[1,2,1,1]],[[1,1,1,0],[3,1,3,0],[2,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,0],[3,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,0],[2,2,3,2],[2,2,1,1]],[[1,1,1,0],[2,1,3,0],[2,2,3,2],[1,3,1,1]],[[1,1,1,0],[2,1,3,0],[3,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,2,1],[1,2,3,1]],[[2,1,1,0],[2,1,3,0],[2,3,2,2],[0,2,2,1]],[[1,1,1,0],[3,1,3,0],[2,3,2,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,0],[3,3,2,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,4,2,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,2,2],[0,3,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,2,2],[0,2,3,1]],[[1,1,1,0],[2,1,3,0],[2,3,2,2],[0,2,2,2]],[[2,1,1,0],[2,1,3,0],[2,3,2,2],[1,1,2,1]],[[1,1,1,0],[3,1,3,0],[2,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,0],[3,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,0],[2,4,2,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,2,2],[2,1,2,1]],[[1,1,1,0],[2,1,3,0],[3,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,0],[2,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,1,3,0],[2,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,1,3,0],[3,3,3,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,0],[1,2,3,1]],[[1,1,1,0],[2,1,3,0],[3,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,1],[1,3,1,1]],[[2,1,1,0],[2,1,3,0],[2,3,3,2],[0,1,2,1]],[[1,1,1,0],[3,1,3,0],[2,3,3,2],[0,1,2,1]],[[1,1,1,0],[2,1,3,0],[3,3,3,2],[0,1,2,1]],[[1,1,1,0],[2,1,3,0],[2,4,3,2],[0,1,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,4,2],[0,1,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,2],[0,1,3,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,2],[0,1,2,2]],[[2,1,1,0],[2,1,3,0],[2,3,3,2],[0,2,1,1]],[[1,1,1,0],[3,1,3,0],[2,3,3,2],[0,2,1,1]],[[1,1,1,0],[2,1,3,0],[3,3,3,2],[0,2,1,1]],[[1,1,1,0],[2,1,3,0],[2,4,3,2],[0,2,1,1]],[[1,1,1,0],[2,1,3,0],[2,3,4,2],[0,2,1,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,2],[0,3,1,1]],[[2,1,1,0],[2,1,3,0],[2,3,3,2],[1,0,2,1]],[[1,1,1,0],[3,1,3,0],[2,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,1,3,0],[3,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,1,3,0],[2,4,3,2],[1,0,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,4,2],[1,0,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,2],[2,0,2,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,2],[1,0,3,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,2],[1,0,2,2]],[[2,1,1,0],[2,1,3,0],[2,3,3,2],[1,1,1,1]],[[1,1,1,0],[3,1,3,0],[2,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,1,3,0],[3,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,1,3,0],[2,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,1,3,0],[2,3,4,2],[1,1,1,1]],[[1,1,1,0],[2,1,3,0],[2,3,3,2],[2,1,1,1]],[[1,1,1,0],[2,1,3,0],[3,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,1,3,0],[2,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,1,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,3,0,0],[2,3,3,2],[0,3,1,1]],[[1,2,1,0],[2,3,0,0],[2,4,3,2],[0,2,1,1]],[[1,2,1,0],[2,3,0,0],[3,3,3,2],[0,2,1,1]],[[1,2,1,0],[3,3,0,0],[2,3,3,2],[0,2,1,1]],[[2,2,1,0],[2,3,0,0],[2,3,3,2],[0,2,1,1]],[[1,2,1,0],[2,3,0,0],[2,4,3,2],[0,1,2,1]],[[1,2,1,0],[2,3,0,0],[3,3,3,2],[0,1,2,1]],[[1,2,1,0],[3,3,0,0],[2,3,3,2],[0,1,2,1]],[[2,2,1,0],[2,3,0,0],[2,3,3,2],[0,1,2,1]],[[1,1,1,0],[2,1,3,1],[1,1,3,3],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,1,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,1],[1,1,3,2],[1,2,2,2]],[[1,1,1,0],[2,1,3,1],[1,2,2,3],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,1],[1,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,1],[1,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,1,4,1],[1,2,3,1],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,1,3,1],[1,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,1,3,1],[1,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,1,4,1],[1,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,1],[1,2,4,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,1],[1,2,3,3],[1,2,1,1]],[[1,1,1,0],[2,1,3,1],[1,2,3,2],[1,2,1,2]],[[1,1,1,0],[2,1,4,1],[1,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,1],[1,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,1],[1,2,3,3],[1,2,2,0]],[[1,1,1,0],[2,1,3,1],[1,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,1,3,1],[1,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,1,3,1],[1,2,3,2],[1,2,3,0]],[[1,1,1,0],[2,1,3,1],[1,4,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,1],[1,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,1,3,1],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,1,3,1],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,1,3,1],[1,3,2,3],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,2,2],[1,1,3,1]],[[1,1,1,0],[2,1,3,1],[1,3,2,2],[1,1,2,2]],[[1,1,1,0],[2,1,3,1],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,1],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,1,3,1],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,1,3,1],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,1,3,1],[1,4,3,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,0],[1,2,3,1]],[[1,1,1,0],[2,1,4,1],[1,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[1,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,4,1],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,1],[1,1,3,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,1],[1,1,2,2]],[[1,1,1,0],[2,1,4,1],[1,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,3,1],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,3,1],[1,3,4,1],[1,2,1,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,1,3,1],[1,3,4,2],[1,0,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,3],[1,0,2,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,2],[1,0,2,2]],[[1,1,1,0],[2,1,4,1],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,1,3,1],[1,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,1,3,1],[1,3,4,2],[1,1,1,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,3],[1,1,1,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,2],[1,1,1,2]],[[1,1,1,0],[2,1,4,1],[1,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,1,3,1],[1,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,1,3,1],[1,3,4,2],[1,1,2,0]],[[1,1,1,0],[2,1,3,1],[1,3,3,3],[1,1,2,0]],[[1,1,1,0],[2,1,3,1],[1,3,3,2],[1,1,3,0]],[[1,1,1,0],[2,1,4,1],[1,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,1,3,1],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,1,3,1],[1,3,4,2],[1,2,0,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,3],[1,2,0,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,1,3,1],[1,3,3,2],[1,2,0,2]],[[1,1,1,0],[2,1,4,1],[1,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,1,3,1],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,1,3,1],[1,3,4,2],[1,2,1,0]],[[1,1,1,0],[2,1,3,1],[1,3,3,3],[1,2,1,0]],[[1,1,1,0],[2,1,3,1],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,1,3,1],[1,3,3,2],[1,3,1,0]],[[1,1,1,0],[2,1,3,1],[2,0,3,3],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,0,3,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,1],[2,0,3,2],[1,2,2,2]],[[2,1,1,0],[2,1,3,1],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[3,1,3,1],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[3,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,1,2,3],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,1,2,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,1,2,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,1],[2,1,2,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,1],[2,1,2,2],[1,2,2,2]],[[2,1,1,0],[2,1,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[3,1,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,1,4,1],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[3,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,1,4,1],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,1,3,1],[2,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,1,3,1],[1,3,2,1]],[[1,1,1,0],[2,1,3,1],[2,1,3,1],[1,2,3,1]],[[1,1,1,0],[2,1,3,1],[2,1,3,1],[1,2,2,2]],[[1,1,1,0],[2,1,3,1],[2,1,3,3],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,1,3,2],[0,2,3,1]],[[1,1,1,0],[2,1,3,1],[2,1,3,2],[0,2,2,2]],[[1,1,1,0],[2,1,4,1],[2,1,3,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,1],[2,1,4,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,1],[2,1,3,3],[1,2,1,1]],[[1,1,1,0],[2,1,3,1],[2,1,3,2],[1,2,1,2]],[[2,1,1,0],[2,1,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[3,1,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,1,4,1],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,1],[3,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,1],[2,1,4,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,1],[2,1,3,3],[1,2,2,0]],[[1,1,1,0],[2,1,3,1],[2,1,3,2],[2,2,2,0]],[[1,1,1,0],[2,1,3,1],[2,1,3,2],[1,3,2,0]],[[1,1,1,0],[2,1,3,1],[2,1,3,2],[1,2,3,0]],[[2,1,1,0],[2,1,3,1],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[3,1,3,1],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[3,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,1,3],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,1,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,1,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,1,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,1],[2,2,1,2],[1,2,2,2]],[[2,1,1,0],[2,1,3,1],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[3,1,3,1],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[2,1,3,1],[2,2,2,1],[1,2,2,2]],[[1,1,1,0],[2,1,3,1],[2,2,2,3],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,2,2],[0,3,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,2,2],[0,2,3,1]],[[1,1,1,0],[2,1,3,1],[2,2,2,2],[0,2,2,2]],[[2,1,1,0],[2,1,3,1],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[3,1,3,1],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,1],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,1],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[2,1,3,1],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[2,1,3,1],[2,2,2,2],[1,2,3,0]],[[2,1,1,0],[2,1,3,1],[2,2,3,0],[1,2,2,1]],[[1,1,1,0],[3,1,3,1],[2,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[3,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,0],[2,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,0],[1,3,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,0],[1,2,3,1]],[[1,1,1,0],[2,1,4,1],[2,2,3,1],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,4,1],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,1],[0,3,2,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,1],[0,2,3,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,1],[0,2,2,2]],[[2,1,1,0],[2,1,3,1],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[3,1,3,1],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,3,1],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,1],[1,3,1,1]],[[1,1,1,0],[2,1,4,1],[2,2,3,2],[0,2,1,1]],[[1,1,1,0],[2,1,3,1],[2,2,4,2],[0,2,1,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,3],[0,2,1,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,2],[0,2,1,2]],[[1,1,1,0],[2,1,4,1],[2,2,3,2],[0,2,2,0]],[[1,1,1,0],[2,1,3,1],[2,2,4,2],[0,2,2,0]],[[1,1,1,0],[2,1,3,1],[2,2,3,3],[0,2,2,0]],[[1,1,1,0],[2,1,3,1],[2,2,3,2],[0,3,2,0]],[[1,1,1,0],[2,1,3,1],[2,2,3,2],[0,2,3,0]],[[2,1,1,0],[2,1,3,1],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[3,1,3,1],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,1,3,1],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[2,1,3,1],[2,2,3,2],[1,3,0,1]],[[2,1,1,0],[2,1,3,1],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[3,1,3,1],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,1,3,1],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,1,3,1],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[2,1,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,3,0,0],[2,3,2,2],[2,1,2,1]],[[1,2,1,0],[2,3,0,0],[2,4,2,2],[1,1,2,1]],[[1,2,1,0],[2,3,0,0],[3,3,2,2],[1,1,2,1]],[[1,2,1,0],[3,3,0,0],[2,3,2,2],[1,1,2,1]],[[2,2,1,0],[2,3,0,0],[2,3,2,2],[1,1,2,1]],[[2,1,1,0],[2,1,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[3,1,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[3,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,4,1,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,1,3],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,1,2],[0,3,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,1,2],[0,2,3,1]],[[1,1,1,0],[2,1,3,1],[2,3,1,2],[0,2,2,2]],[[2,1,1,0],[2,1,3,1],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[3,1,3,1],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[3,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[2,4,1,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,1,2],[2,1,2,1]],[[2,1,1,0],[2,1,3,1],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[3,1,3,1],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,1,3,1],[2,3,2,1],[0,2,2,2]],[[2,1,1,0],[2,1,3,1],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,1,3,1],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,2,1],[2,1,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,2,3],[0,1,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,2,2],[0,1,3,1]],[[1,1,1,0],[2,1,3,1],[2,3,2,2],[0,1,2,2]],[[2,1,1,0],[2,1,3,1],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[3,1,3,1],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,1,3,1],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,1,3,1],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,1,3,1],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,1,3,1],[2,3,2,2],[0,2,3,0]],[[1,1,1,0],[2,1,3,1],[2,3,2,3],[1,0,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,2,2],[1,0,3,1]],[[1,1,1,0],[2,1,3,1],[2,3,2,2],[1,0,2,2]],[[2,1,1,0],[2,1,3,1],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,1,3,1],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,1,3,1],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,1,3,1],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[2,1,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,3,0,0],[2,3,2,2],[0,2,2,2]],[[1,2,1,0],[2,3,0,0],[2,3,2,2],[0,2,3,1]],[[1,2,1,0],[2,3,0,0],[2,3,2,2],[0,3,2,1]],[[1,2,1,0],[2,3,0,0],[2,4,2,2],[0,2,2,1]],[[1,2,1,0],[2,3,0,0],[3,3,2,2],[0,2,2,1]],[[1,2,1,0],[3,3,0,0],[2,3,2,2],[0,2,2,1]],[[2,2,1,0],[2,3,0,0],[2,3,2,2],[0,2,2,1]],[[1,2,1,0],[2,3,0,0],[2,3,1,2],[1,3,2,1]],[[1,2,1,0],[2,3,0,0],[2,3,1,2],[2,2,2,1]],[[2,1,1,0],[2,1,3,1],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[3,1,3,1],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[3,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,4,3,0],[0,2,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,0],[0,3,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,0],[0,2,3,1]],[[2,1,1,0],[2,1,3,1],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[3,1,3,1],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[3,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[2,4,3,0],[1,1,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,0],[2,1,2,1]],[[2,1,1,0],[2,1,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[3,1,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,1,4,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,1,3,1],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,1,3,1],[2,4,3,1],[0,1,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,1],[0,1,2,2]],[[2,1,1,0],[2,1,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[3,1,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,1,4,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,1,3,1],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,1,3,1],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,1,3,1],[2,3,4,1],[0,2,1,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,1],[0,3,1,1]],[[2,1,1,0],[2,1,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[3,1,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,1,4,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,1,3,1],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,1,3,1],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,4,1],[1,0,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,1],[2,0,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,1],[1,0,3,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,1],[1,0,2,2]],[[2,1,1,0],[2,1,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,1,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,1,4,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,1,3,1],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,1,3,1],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,1,3,1],[2,3,4,1],[1,1,1,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,1],[2,1,1,1]],[[2,1,1,0],[2,1,3,1],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[3,1,3,1],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,1,3,1],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,1,3,1],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[2,3,0,0],[3,3,1,2],[1,2,2,1]],[[1,2,1,0],[3,3,0,0],[2,3,1,2],[1,2,2,1]],[[2,2,1,0],[2,3,0,0],[2,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,4,1],[2,3,3,2],[0,0,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,4,2],[0,0,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,3],[0,0,2,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[0,0,2,2]],[[2,1,1,0],[2,1,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[3,1,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,1,4,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,1,3,1],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,1,3,1],[2,4,3,2],[0,1,1,1]],[[1,1,1,0],[2,1,3,1],[2,3,4,2],[0,1,1,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,3],[0,1,1,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[0,1,1,2]],[[2,1,1,0],[2,1,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[3,1,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,1,4,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,1,3,1],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,1,3,1],[2,4,3,2],[0,1,2,0]],[[1,1,1,0],[2,1,3,1],[2,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,1,3,1],[2,3,3,3],[0,1,2,0]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[0,1,3,0]],[[2,1,1,0],[2,1,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[3,1,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,1,4,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,1,3,1],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,1,3,1],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,1,3,1],[2,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,3],[0,2,0,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[0,3,0,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[0,2,0,2]],[[2,1,1,0],[2,1,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[3,1,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,1,4,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,1,3,1],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,1,3,1],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,1,3,1],[2,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,1,3,1],[2,3,3,3],[0,2,1,0]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,3,0,0],[2,2,3,2],[1,3,1,1]],[[1,2,1,0],[2,3,0,0],[2,2,3,2],[2,2,1,1]],[[1,2,1,0],[2,3,0,0],[3,2,3,2],[1,2,1,1]],[[1,2,1,0],[3,3,0,0],[2,2,3,2],[1,2,1,1]],[[2,2,1,0],[2,3,0,0],[2,2,3,2],[1,2,1,1]],[[1,2,1,0],[2,3,0,0],[2,2,2,2],[1,2,2,2]],[[1,2,1,0],[2,3,0,0],[2,2,2,2],[1,2,3,1]],[[1,2,1,0],[2,3,0,0],[2,2,2,2],[1,3,2,1]],[[1,2,1,0],[2,3,0,0],[2,2,2,2],[2,2,2,1]],[[1,2,1,0],[2,3,0,0],[3,2,2,2],[1,2,2,1]],[[2,1,1,0],[2,1,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[3,1,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,1,4,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,1,3,1],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,1,3,1],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,1,3,1],[2,3,4,2],[1,0,1,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,3],[1,0,1,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[2,0,1,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[1,0,1,2]],[[2,1,1,0],[2,1,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[3,1,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,1,4,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,1,3,1],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,1,3,1],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,1,3,1],[2,3,4,2],[1,0,2,0]],[[1,1,1,0],[2,1,3,1],[2,3,3,3],[1,0,2,0]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[2,0,2,0]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[1,0,3,0]],[[2,1,1,0],[2,1,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[3,1,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,1,4,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,1,3,1],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,1,3,1],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,1,3,1],[2,3,4,2],[1,1,0,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,3],[1,1,0,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[2,1,0,1]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[1,1,0,2]],[[2,1,1,0],[2,1,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[3,1,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,1,4,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,1,3,1],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,1,3,1],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,1,3,1],[2,3,4,2],[1,1,1,0]],[[1,1,1,0],[2,1,3,1],[2,3,3,3],[1,1,1,0]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[3,3,0,0],[2,2,2,2],[1,2,2,1]],[[2,2,1,0],[2,3,0,0],[2,2,2,2],[1,2,2,1]],[[1,2,1,0],[2,3,0,0],[1,3,3,2],[1,3,1,1]],[[1,2,1,0],[2,3,0,0],[1,3,3,2],[2,2,1,1]],[[1,2,1,0],[2,3,0,0],[1,4,3,2],[1,2,1,1]],[[2,1,1,0],[2,1,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,1,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,1,3,1],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,1,3,1],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[2,1,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,3,0,0],[1,3,2,2],[1,2,2,2]],[[1,2,1,0],[2,3,0,0],[1,3,2,2],[1,2,3,1]],[[1,2,1,0],[2,3,0,0],[1,3,2,2],[1,3,2,1]],[[1,2,1,0],[2,3,0,0],[1,3,2,2],[2,2,2,1]],[[1,2,1,0],[2,3,0,0],[1,4,2,2],[1,2,2,1]],[[1,2,1,0],[2,2,3,2],[3,3,3,1],[1,0,0,0]],[[1,2,1,0],[3,2,3,2],[2,3,3,1],[1,0,0,0]],[[1,3,1,0],[2,2,3,2],[2,3,3,1],[1,0,0,0]],[[2,2,1,0],[2,2,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,1,0],[2,1,4,2],[1,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,3],[1,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,2,1,3],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,2,1,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,2,1,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,2],[1,2,1,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,2],[1,2,1,2],[1,2,2,2]],[[1,1,1,0],[2,1,4,2],[1,2,2,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,3],[1,2,2,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,2],[1,2,2,3],[1,2,1,1]],[[1,1,1,0],[2,1,3,2],[1,2,2,2],[1,2,1,2]],[[1,1,1,0],[2,1,4,2],[1,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,3],[1,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,2],[1,2,2,3],[1,2,2,0]],[[1,1,1,0],[2,1,4,2],[1,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,3],[1,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,2,4,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,2,3,0],[2,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,2,3,0],[1,3,2,1]],[[1,1,1,0],[2,1,3,2],[1,2,3,0],[1,2,3,1]],[[1,1,1,0],[2,1,3,2],[1,2,3,0],[1,2,2,2]],[[1,1,1,0],[2,1,4,2],[1,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,3,3],[1,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,3,2],[1,2,4,1],[1,2,1,1]],[[1,1,1,0],[2,1,4,2],[1,2,3,1],[1,2,2,0]],[[1,1,1,0],[2,1,3,3],[1,2,3,1],[1,2,2,0]],[[1,1,1,0],[2,1,3,2],[1,2,4,1],[1,2,2,0]],[[1,1,1,0],[2,1,3,2],[1,2,3,1],[2,2,2,0]],[[1,1,1,0],[2,1,3,2],[1,2,3,1],[1,3,2,0]],[[1,1,1,0],[2,1,3,2],[1,2,3,1],[1,2,3,0]],[[1,1,1,0],[2,1,4,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,3],[1,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,4,0,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,3,0,3],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,3,0,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,2],[1,3,0,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,2],[1,3,0,2],[1,2,2,2]],[[1,1,1,0],[2,1,4,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,3],[1,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,2],[1,3,1,3],[1,1,2,1]],[[1,1,1,0],[2,1,3,2],[1,3,1,2],[1,1,3,1]],[[1,1,1,0],[2,1,3,2],[1,3,1,2],[1,1,2,2]],[[1,1,1,0],[2,1,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,3,2,0],[2,2,2,1]],[[1,1,1,0],[2,1,3,2],[1,3,2,0],[1,3,2,1]],[[1,1,1,0],[2,1,3,2],[1,3,2,0],[1,2,3,1]],[[1,1,1,0],[2,1,3,2],[1,3,2,0],[1,2,2,2]],[[1,1,1,0],[2,1,3,2],[1,4,2,1],[1,2,2,0]],[[1,1,1,0],[2,1,3,2],[1,3,2,1],[2,2,2,0]],[[1,1,1,0],[2,1,3,2],[1,3,2,1],[1,3,2,0]],[[1,1,1,0],[2,1,3,2],[1,3,2,1],[1,2,3,0]],[[1,1,1,0],[2,1,4,2],[1,3,2,2],[1,1,1,1]],[[1,1,1,0],[2,1,3,3],[1,3,2,2],[1,1,1,1]],[[1,1,1,0],[2,1,3,2],[1,3,2,3],[1,1,1,1]],[[1,1,1,0],[2,1,3,2],[1,3,2,2],[1,1,1,2]],[[1,1,1,0],[2,1,4,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,1,3,3],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,1,3,2],[1,3,2,3],[1,1,2,0]],[[1,1,1,0],[2,1,4,2],[1,3,2,2],[1,2,0,1]],[[1,1,1,0],[2,1,3,3],[1,3,2,2],[1,2,0,1]],[[1,1,1,0],[2,1,3,2],[1,3,2,3],[1,2,0,1]],[[1,1,1,0],[2,1,3,2],[1,3,2,2],[1,2,0,2]],[[1,1,1,0],[2,1,4,2],[1,3,2,2],[1,2,1,0]],[[1,1,1,0],[2,1,3,3],[1,3,2,2],[1,2,1,0]],[[1,1,1,0],[2,1,3,2],[1,3,2,3],[1,2,1,0]],[[1,1,1,0],[2,1,4,2],[1,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,1,3,3],[1,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,1,3,2],[1,4,3,0],[1,1,2,1]],[[1,1,1,0],[2,1,3,2],[1,3,4,0],[1,1,2,1]],[[1,1,1,0],[2,1,3,2],[1,3,3,0],[1,1,3,1]],[[1,1,1,0],[2,1,3,2],[1,3,3,0],[1,1,2,2]],[[1,1,1,0],[2,1,4,2],[1,3,3,0],[1,2,1,1]],[[1,1,1,0],[2,1,3,3],[1,3,3,0],[1,2,1,1]],[[1,1,1,0],[2,1,3,2],[1,4,3,0],[1,2,1,1]],[[1,1,1,0],[2,1,3,2],[1,3,4,0],[1,2,1,1]],[[1,1,1,0],[2,1,3,2],[1,3,3,0],[2,2,1,1]],[[1,1,1,0],[2,1,3,2],[1,3,3,0],[1,3,1,1]],[[1,1,1,0],[2,1,4,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,1,3,3],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,1,3,2],[1,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,1,3,2],[1,3,4,1],[1,1,1,1]],[[1,1,1,0],[2,1,4,2],[1,3,3,1],[1,1,2,0]],[[1,1,1,0],[2,1,3,3],[1,3,3,1],[1,1,2,0]],[[1,1,1,0],[2,1,3,2],[1,4,3,1],[1,1,2,0]],[[1,1,1,0],[2,1,3,2],[1,3,4,1],[1,1,2,0]],[[1,1,1,0],[2,1,3,2],[1,3,3,1],[1,1,3,0]],[[1,1,1,0],[2,1,4,2],[1,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,1,3,3],[1,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,1,3,2],[1,4,3,1],[1,2,0,1]],[[1,1,1,0],[2,1,3,2],[1,3,4,1],[1,2,0,1]],[[1,1,1,0],[2,1,3,2],[1,3,3,1],[2,2,0,1]],[[1,1,1,0],[2,1,3,2],[1,3,3,1],[1,3,0,1]],[[1,1,1,0],[2,1,4,2],[1,3,3,1],[1,2,1,0]],[[1,1,1,0],[2,1,3,3],[1,3,3,1],[1,2,1,0]],[[1,1,1,0],[2,1,3,2],[1,4,3,1],[1,2,1,0]],[[1,1,1,0],[2,1,3,2],[1,3,4,1],[1,2,1,0]],[[1,1,1,0],[2,1,3,2],[1,3,3,1],[2,2,1,0]],[[1,1,1,0],[2,1,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,3,0],[1,0,1,0]],[[1,2,1,0],[3,2,3,2],[2,3,3,0],[1,0,1,0]],[[1,3,1,0],[2,2,3,2],[2,3,3,0],[1,0,1,0]],[[2,2,1,0],[2,2,3,2],[2,3,3,0],[1,0,1,0]],[[2,1,1,0],[2,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[3,1,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,4,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,3],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[3,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,1,1,3],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,1,1,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,1,1,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,2],[2,1,1,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,2],[2,1,1,2],[1,2,2,2]],[[1,1,1,0],[2,1,4,2],[2,1,2,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,3],[2,1,2,2],[1,2,1,1]],[[1,1,1,0],[2,1,3,2],[2,1,2,3],[1,2,1,1]],[[1,1,1,0],[2,1,3,2],[2,1,2,2],[1,2,1,2]],[[1,1,1,0],[2,1,4,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,3],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,1,3,2],[2,1,2,3],[1,2,2,0]],[[2,1,1,0],[2,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[3,1,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,1,4,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,3],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[3,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,1,4,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,1,3,0],[2,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,1,3,0],[1,3,2,1]],[[1,1,1,0],[2,1,3,2],[2,1,3,0],[1,2,3,1]],[[1,1,1,0],[2,1,3,2],[2,1,3,0],[1,2,2,2]],[[1,1,1,0],[2,1,4,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,3,3],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,1,3,2],[2,1,4,1],[1,2,1,1]],[[2,1,1,0],[2,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,0],[3,1,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,0],[2,1,4,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,0],[2,1,3,3],[2,1,3,1],[1,2,2,0]],[[1,1,1,0],[2,1,3,2],[3,1,3,1],[1,2,2,0]],[[1,1,1,0],[2,1,3,2],[2,1,4,1],[1,2,2,0]],[[1,1,1,0],[2,1,3,2],[2,1,3,1],[2,2,2,0]],[[1,1,1,0],[2,1,3,2],[2,1,3,1],[1,3,2,0]],[[1,1,1,0],[2,1,3,2],[2,1,3,1],[1,2,3,0]],[[2,1,1,0],[2,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[3,1,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,1,4,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,3],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[3,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,0,3],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,0,2],[2,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,0,2],[1,3,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,0,2],[1,2,3,1]],[[1,1,1,0],[2,1,3,2],[2,2,0,2],[1,2,2,2]],[[1,1,1,0],[2,1,4,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,3],[2,2,1,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,1,3],[0,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,1,2],[0,3,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,1,2],[0,2,3,1]],[[1,1,1,0],[2,1,3,2],[2,2,1,2],[0,2,2,2]],[[2,1,1,0],[2,1,3,2],[2,2,2,0],[1,2,2,1]],[[1,1,1,0],[3,1,3,2],[2,2,2,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[3,2,2,0],[1,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,2,0],[2,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,2,0],[1,3,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,2,0],[1,2,3,1]],[[1,1,1,0],[2,1,3,2],[2,2,2,0],[1,2,2,2]],[[2,1,1,0],[2,1,3,2],[2,2,2,1],[1,2,2,0]],[[1,1,1,0],[3,1,3,2],[2,2,2,1],[1,2,2,0]],[[1,1,1,0],[2,1,3,2],[3,2,2,1],[1,2,2,0]],[[1,1,1,0],[2,1,3,2],[2,2,2,1],[2,2,2,0]],[[1,1,1,0],[2,1,3,2],[2,2,2,1],[1,3,2,0]],[[1,1,1,0],[2,1,3,2],[2,2,2,1],[1,2,3,0]],[[1,1,1,0],[2,1,4,2],[2,2,2,2],[0,2,1,1]],[[1,1,1,0],[2,1,3,3],[2,2,2,2],[0,2,1,1]],[[1,1,1,0],[2,1,3,2],[2,2,2,3],[0,2,1,1]],[[1,1,1,0],[2,1,3,2],[2,2,2,2],[0,2,1,2]],[[1,1,1,0],[2,1,4,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[2,1,3,3],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[2,1,3,2],[2,2,2,3],[0,2,2,0]],[[1,1,1,0],[2,1,4,2],[2,2,3,0],[0,2,2,1]],[[1,1,1,0],[2,1,3,3],[2,2,3,0],[0,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,4,0],[0,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,3,0],[0,3,2,1]],[[1,1,1,0],[2,1,3,2],[2,2,3,0],[0,2,3,1]],[[1,1,1,0],[2,1,3,2],[2,2,3,0],[0,2,2,2]],[[2,1,1,0],[2,1,3,2],[2,2,3,0],[1,2,1,1]],[[1,1,1,0],[3,1,3,2],[2,2,3,0],[1,2,1,1]],[[1,1,1,0],[2,1,3,2],[3,2,3,0],[1,2,1,1]],[[1,1,1,0],[2,1,3,2],[2,2,3,0],[2,2,1,1]],[[1,1,1,0],[2,1,3,2],[2,2,3,0],[1,3,1,1]],[[1,1,1,0],[2,1,4,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,1,3,3],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,1,3,2],[2,2,4,1],[0,2,1,1]],[[1,1,1,0],[2,1,4,2],[2,2,3,1],[0,2,2,0]],[[1,1,1,0],[2,1,3,3],[2,2,3,1],[0,2,2,0]],[[1,1,1,0],[2,1,3,2],[2,2,4,1],[0,2,2,0]],[[1,1,1,0],[2,1,3,2],[2,2,3,1],[0,3,2,0]],[[1,1,1,0],[2,1,3,2],[2,2,3,1],[0,2,3,0]],[[2,1,1,0],[2,1,3,2],[2,2,3,1],[1,2,0,1]],[[1,1,1,0],[3,1,3,2],[2,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,1,3,2],[3,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,1,3,2],[2,2,3,1],[2,2,0,1]],[[1,1,1,0],[2,1,3,2],[2,2,3,1],[1,3,0,1]],[[2,1,1,0],[2,1,3,2],[2,2,3,1],[1,2,1,0]],[[1,1,1,0],[3,1,3,2],[2,2,3,1],[1,2,1,0]],[[1,1,1,0],[2,1,3,2],[3,2,3,1],[1,2,1,0]],[[1,1,1,0],[2,1,3,2],[2,2,3,1],[2,2,1,0]],[[1,1,1,0],[2,1,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,2,1],[1,0,1,0]],[[1,2,1,0],[3,2,3,2],[2,3,2,1],[1,0,1,0]],[[1,3,1,0],[2,2,3,2],[2,3,2,1],[1,0,1,0]],[[2,2,1,0],[2,2,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,2,1],[1,0,0,1]],[[1,2,1,0],[3,2,3,2],[2,3,2,1],[1,0,0,1]],[[1,3,1,0],[2,2,3,2],[2,3,2,1],[1,0,0,1]],[[2,2,1,0],[2,2,3,2],[2,3,2,1],[1,0,0,1]],[[2,1,1,0],[2,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[3,1,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,1,4,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,3],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,2],[3,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,4,0,2],[0,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,0,3],[0,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,0,2],[0,3,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,0,2],[0,2,3,1]],[[1,1,1,0],[2,1,3,2],[2,3,0,2],[0,2,2,2]],[[2,1,1,0],[2,1,3,2],[2,3,0,2],[1,1,2,1]],[[1,1,1,0],[3,1,3,2],[2,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,2],[3,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,2],[2,4,0,2],[1,1,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,0,2],[2,1,2,1]],[[1,1,1,0],[2,1,4,2],[2,3,1,2],[0,1,2,1]],[[1,1,1,0],[2,1,3,3],[2,3,1,2],[0,1,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,1,3],[0,1,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,1,2],[0,1,3,1]],[[1,1,1,0],[2,1,3,2],[2,3,1,2],[0,1,2,2]],[[1,1,1,0],[2,1,4,2],[2,3,1,2],[1,0,2,1]],[[1,1,1,0],[2,1,3,3],[2,3,1,2],[1,0,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,1,3],[1,0,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,1,2],[1,0,3,1]],[[1,1,1,0],[2,1,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,1,0],[2,2,3,2],[2,3,2,0],[2,2,0,0]],[[2,1,1,0],[2,1,3,2],[2,3,2,0],[0,2,2,1]],[[1,1,1,0],[3,1,3,2],[2,3,2,0],[0,2,2,1]],[[1,1,1,0],[2,1,3,2],[3,3,2,0],[0,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,4,2,0],[0,2,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,0],[0,3,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,0],[0,2,3,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,0],[0,2,2,2]],[[2,1,1,0],[2,1,3,2],[2,3,2,0],[1,1,2,1]],[[1,1,1,0],[3,1,3,2],[2,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,1,3,2],[3,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,1,3,2],[2,4,2,0],[1,1,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,0],[2,1,2,1]],[[2,1,1,0],[2,1,3,2],[2,3,2,1],[0,2,2,0]],[[1,1,1,0],[3,1,3,2],[2,3,2,1],[0,2,2,0]],[[1,1,1,0],[2,1,3,2],[3,3,2,1],[0,2,2,0]],[[1,1,1,0],[2,1,3,2],[2,4,2,1],[0,2,2,0]],[[1,1,1,0],[2,1,3,2],[2,3,2,1],[0,3,2,0]],[[1,1,1,0],[2,1,3,2],[2,3,2,1],[0,2,3,0]],[[2,1,1,0],[2,1,3,2],[2,3,2,1],[1,1,2,0]],[[1,1,1,0],[3,1,3,2],[2,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,1,3,2],[3,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,1,3,2],[2,4,2,1],[1,1,2,0]],[[1,1,1,0],[2,1,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,3,2,0],[1,2,0,0]],[[1,2,1,0],[3,2,3,2],[2,3,2,0],[1,2,0,0]],[[1,3,1,0],[2,2,3,2],[2,3,2,0],[1,2,0,0]],[[2,2,1,0],[2,2,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,1,0],[2,1,4,2],[2,3,2,2],[0,0,2,1]],[[1,1,1,0],[2,1,3,3],[2,3,2,2],[0,0,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,3],[0,0,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,2],[0,0,2,2]],[[1,1,1,0],[2,1,4,2],[2,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,1,3,3],[2,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,3],[0,1,1,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,2],[0,1,1,2]],[[1,1,1,0],[2,1,4,2],[2,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,1,3,3],[2,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,1,3,2],[2,3,2,3],[0,1,2,0]],[[1,1,1,0],[2,1,4,2],[2,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,1,3,3],[2,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,3],[0,2,0,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,2],[0,2,0,2]],[[1,1,1,0],[2,1,4,2],[2,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,1,3,3],[2,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,1,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,0],[2,2,3,2],[2,3,2,0],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,2,0],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,1,0],[2,1,4,2],[2,3,2,2],[1,0,1,1]],[[1,1,1,0],[2,1,3,3],[2,3,2,2],[1,0,1,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,3],[1,0,1,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,2],[1,0,1,2]],[[1,1,1,0],[2,1,4,2],[2,3,2,2],[1,0,2,0]],[[1,1,1,0],[2,1,3,3],[2,3,2,2],[1,0,2,0]],[[1,1,1,0],[2,1,3,2],[2,3,2,3],[1,0,2,0]],[[1,1,1,0],[2,1,4,2],[2,3,2,2],[1,1,0,1]],[[1,1,1,0],[2,1,3,3],[2,3,2,2],[1,1,0,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,3],[1,1,0,1]],[[1,1,1,0],[2,1,3,2],[2,3,2,2],[1,1,0,2]],[[1,1,1,0],[2,1,4,2],[2,3,2,2],[1,1,1,0]],[[1,1,1,0],[2,1,3,3],[2,3,2,2],[1,1,1,0]],[[1,1,1,0],[2,1,3,2],[2,3,2,3],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[2,3,2,0],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[2,3,2,0],[1,1,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,2,0],[1,0,1,1]],[[1,2,1,0],[3,2,3,2],[2,3,2,0],[1,0,1,1]],[[1,3,1,0],[2,2,3,2],[2,3,2,0],[1,0,1,1]],[[2,2,1,0],[2,2,3,2],[2,3,2,0],[1,0,1,1]],[[1,2,1,0],[2,2,3,2],[3,3,2,0],[0,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,3,2,0],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,3,2,0],[0,2,1,0]],[[2,2,1,0],[2,2,3,2],[2,3,2,0],[0,2,1,0]],[[2,1,1,0],[2,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[3,1,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,1,4,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,1,3,3],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,1,3,2],[3,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,1,3,2],[2,4,3,0],[0,1,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,4,0],[0,1,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,0],[0,1,3,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,0],[0,1,2,2]],[[2,1,1,0],[2,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[3,1,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,1,4,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,1,3,3],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,1,3,2],[3,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,1,3,2],[2,4,3,0],[0,2,1,1]],[[1,1,1,0],[2,1,3,2],[2,3,4,0],[0,2,1,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,0],[0,3,1,1]],[[2,1,1,0],[2,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[3,1,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,1,4,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,1,3,3],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,1,3,2],[3,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,1,3,2],[2,4,3,0],[1,0,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,4,0],[1,0,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,0],[2,0,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,0],[1,0,3,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,0],[1,0,2,2]],[[2,1,1,0],[2,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,0],[3,1,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,1,4,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,1,3,3],[2,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,1,3,2],[3,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,1,3,2],[2,4,3,0],[1,1,1,1]],[[1,1,1,0],[2,1,3,2],[2,3,4,0],[1,1,1,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,0],[2,1,1,1]],[[2,1,1,0],[2,1,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,0],[3,1,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,0],[2,1,3,2],[3,3,3,0],[1,2,0,1]],[[1,1,1,0],[2,1,3,2],[2,4,3,0],[1,2,0,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,0],[2,2,0,1]],[[1,1,1,0],[2,1,4,2],[2,3,3,1],[0,0,2,1]],[[1,1,1,0],[2,1,3,3],[2,3,3,1],[0,0,2,1]],[[1,1,1,0],[2,1,3,2],[2,3,4,1],[0,0,2,1]],[[2,1,1,0],[2,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,0],[3,1,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,1,4,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,1,3,3],[2,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,1,3,2],[3,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,1,3,2],[2,4,3,1],[0,1,1,1]],[[1,1,1,0],[2,1,3,2],[2,3,4,1],[0,1,1,1]],[[2,1,1,0],[2,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,0],[3,1,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,1,4,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,1,3,3],[2,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,1,3,2],[3,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,1,3,2],[2,4,3,1],[0,1,2,0]],[[1,1,1,0],[2,1,3,2],[2,3,4,1],[0,1,2,0]],[[1,1,1,0],[2,1,3,2],[2,3,3,1],[0,1,3,0]],[[2,1,1,0],[2,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,0],[3,1,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,1,4,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,1,3,3],[2,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,1,3,2],[3,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,1,3,2],[2,4,3,1],[0,2,0,1]],[[1,1,1,0],[2,1,3,2],[2,3,4,1],[0,2,0,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,1],[0,3,0,1]],[[2,1,1,0],[2,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,0],[3,1,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,1,4,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,1,3,3],[2,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,1,3,2],[3,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,1,3,2],[2,4,3,1],[0,2,1,0]],[[1,1,1,0],[2,1,3,2],[2,3,4,1],[0,2,1,0]],[[1,1,1,0],[2,1,3,2],[2,3,3,1],[0,3,1,0]],[[2,1,1,0],[2,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[3,1,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,1,4,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,1,3,3],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,1,3,2],[3,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,1,3,2],[2,4,3,1],[1,0,1,1]],[[1,1,1,0],[2,1,3,2],[2,3,4,1],[1,0,1,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,1],[2,0,1,1]],[[2,1,1,0],[2,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[3,1,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,1,4,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,1,3,3],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,1,3,2],[3,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,1,3,2],[2,4,3,1],[1,0,2,0]],[[1,1,1,0],[2,1,3,2],[2,3,4,1],[1,0,2,0]],[[1,1,1,0],[2,1,3,2],[2,3,3,1],[2,0,2,0]],[[1,1,1,0],[2,1,3,2],[2,3,3,1],[1,0,3,0]],[[2,1,1,0],[2,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[3,1,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,1,4,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,1,3,3],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,1,3,2],[3,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,1,3,2],[2,4,3,1],[1,1,0,1]],[[1,1,1,0],[2,1,3,2],[2,3,4,1],[1,1,0,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,1],[2,1,0,1]],[[2,1,1,0],[2,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[3,1,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,1,4,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,1,3,3],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,1,3,2],[3,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,1,3,2],[2,4,3,1],[1,1,1,0]],[[1,1,1,0],[2,1,3,2],[2,3,4,1],[1,1,1,0]],[[1,1,1,0],[2,1,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,1,0],[3,2,3,2],[2,3,1,2],[1,0,1,0]],[[1,3,1,0],[2,2,3,2],[2,3,1,2],[1,0,1,0]],[[2,2,1,0],[2,2,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,1,2],[1,0,0,1]],[[2,1,1,0],[2,1,3,2],[2,3,3,1],[1,2,0,0]],[[1,1,1,0],[3,1,3,2],[2,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,1,3,2],[3,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,1,3,2],[2,4,3,1],[1,2,0,0]],[[1,1,1,0],[2,1,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[3,2,3,2],[2,3,1,2],[1,0,0,1]],[[1,3,1,0],[2,2,3,2],[2,3,1,2],[1,0,0,1]],[[2,2,1,0],[2,2,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,1,0],[2,1,4,2],[2,3,3,2],[0,1,0,1]],[[1,1,1,0],[2,1,3,3],[2,3,3,2],[0,1,0,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,0],[2,2,3,2],[2,3,1,1],[2,2,0,0]],[[1,2,1,0],[2,2,3,2],[3,3,1,1],[1,2,0,0]],[[1,2,1,0],[3,2,3,2],[2,3,1,1],[1,2,0,0]],[[1,3,1,0],[2,2,3,2],[2,3,1,1],[1,2,0,0]],[[2,2,1,0],[2,2,3,2],[2,3,1,1],[1,2,0,0]],[[1,2,1,0],[2,2,3,2],[2,3,1,1],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,1,1],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[2,3,1,1],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[2,3,1,1],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[2,3,1,1],[1,1,1,0]],[[1,2,1,0],[2,2,3,2],[2,3,1,1],[2,1,0,1]],[[1,2,1,0],[2,2,3,2],[3,3,1,1],[1,1,0,1]],[[1,2,1,0],[3,2,3,2],[2,3,1,1],[1,1,0,1]],[[1,3,1,0],[2,2,3,2],[2,3,1,1],[1,1,0,1]],[[2,2,1,0],[2,2,3,2],[2,3,1,1],[1,1,0,1]],[[1,1,1,0],[2,1,4,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[2,1,3,3],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[2,1,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,0],[2,2,3,2],[3,3,1,1],[0,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,3,1,1],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,3,1,1],[0,2,1,0]],[[2,2,1,0],[2,2,3,2],[2,3,1,1],[0,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,1,1],[0,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,3,1,1],[0,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,3,1,1],[0,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,3,1,1],[0,2,0,1]],[[1,2,1,0],[2,2,3,2],[2,3,1,0],[2,2,0,1]],[[1,2,1,0],[2,2,3,2],[3,3,1,0],[1,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,3,1,0],[1,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,3,1,0],[1,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,3,1,0],[1,2,0,1]],[[1,2,1,0],[2,2,3,2],[2,3,1,0],[2,1,1,1]],[[1,2,1,0],[2,2,3,2],[3,3,1,0],[1,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,3,1,0],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[2,3,1,0],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[2,3,1,0],[1,1,1,1]],[[1,2,1,0],[2,2,3,2],[3,3,1,0],[0,2,1,1]],[[1,2,1,0],[3,2,3,2],[2,3,1,0],[0,2,1,1]],[[1,3,1,0],[2,2,3,2],[2,3,1,0],[0,2,1,1]],[[2,2,1,0],[2,2,3,2],[2,3,1,0],[0,2,1,1]],[[1,2,1,0],[2,2,3,2],[2,3,0,2],[2,2,0,0]],[[1,2,1,0],[2,2,3,2],[3,3,0,2],[1,2,0,0]],[[1,2,1,0],[3,2,3,2],[2,3,0,2],[1,2,0,0]],[[1,3,1,0],[2,2,3,2],[2,3,0,2],[1,2,0,0]],[[2,2,1,0],[2,2,3,2],[2,3,0,2],[1,2,0,0]],[[1,2,1,0],[2,2,3,2],[2,3,0,2],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,0,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[2,3,0,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[2,3,0,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,1,0],[2,2,3,2],[2,3,0,2],[2,1,0,1]],[[1,2,1,0],[2,2,3,2],[3,3,0,2],[1,1,0,1]],[[1,2,1,0],[3,2,3,2],[2,3,0,2],[1,1,0,1]],[[1,3,1,0],[2,2,3,2],[2,3,0,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,1,0],[2,2,0,0],[3,3,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,0,0],[2,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,2,0,0],[2,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,0,0],[2,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,0,0],[2,3,3,2],[1,2,2,2]],[[1,1,1,0],[2,2,0,1],[1,4,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,0,1],[1,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,2,0,1],[1,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,0,1],[1,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,0,1],[1,3,3,2],[1,2,2,2]],[[2,1,1,0],[2,2,0,1],[2,2,3,2],[1,2,2,1]],[[1,1,1,0],[3,2,0,1],[2,2,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,0,1],[3,2,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,0,1],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,2,0,1],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,0,1],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,0,1],[2,2,3,2],[1,2,2,2]],[[1,1,1,0],[2,2,0,1],[3,3,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,0,1],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,0,1],[2,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,0,1],[2,3,3,1],[1,2,3,1]],[[2,1,1,0],[2,2,0,1],[2,3,3,2],[0,2,2,1]],[[1,1,1,0],[3,2,0,1],[2,3,3,2],[0,2,2,1]],[[1,1,1,0],[2,2,0,1],[3,3,3,2],[0,2,2,1]],[[1,1,1,0],[2,2,0,1],[2,4,3,2],[0,2,2,1]],[[1,1,1,0],[2,2,0,1],[2,3,3,2],[0,3,2,1]],[[1,1,1,0],[2,2,0,1],[2,3,3,2],[0,2,3,1]],[[1,1,1,0],[2,2,0,1],[2,3,3,2],[0,2,2,2]],[[2,1,1,0],[2,2,0,1],[2,3,3,2],[1,1,2,1]],[[1,1,1,0],[3,2,0,1],[2,3,3,2],[1,1,2,1]],[[1,1,1,0],[2,2,0,1],[3,3,3,2],[1,1,2,1]],[[1,1,1,0],[2,2,0,1],[2,4,3,2],[1,1,2,1]],[[1,1,1,0],[2,2,0,1],[2,3,3,2],[2,1,2,1]],[[1,1,1,0],[2,2,0,1],[3,3,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,0,1],[2,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,0,1],[2,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,0,2],[1,2,3,3],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[1,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,2,0,2],[1,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,0,2],[1,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,0,2],[1,2,3,2],[1,2,2,2]],[[1,1,1,0],[2,2,0,2],[1,4,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[1,3,2,3],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[1,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,0,2],[1,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,0,2],[1,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,0,2],[1,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,2,0,2],[1,4,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[1,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,0,2],[1,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,0,2],[1,3,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,0,2],[1,3,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,0,2],[1,3,3,3],[1,1,2,1]],[[1,1,1,0],[2,2,0,2],[1,3,3,2],[1,1,3,1]],[[1,1,1,0],[2,2,0,2],[1,3,3,2],[1,1,2,2]],[[1,1,1,0],[2,2,0,2],[1,4,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,0,2],[1,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,0,2],[1,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,0,2],[1,3,3,2],[1,2,3,0]],[[2,1,1,0],[2,2,0,2],[2,1,3,2],[1,2,2,1]],[[1,1,1,0],[3,2,0,2],[2,1,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[3,1,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,1,3,3],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,1,3,2],[2,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,1,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,0,2],[2,1,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,0,2],[2,1,3,2],[1,2,2,2]],[[2,1,1,0],[2,2,0,2],[2,2,2,2],[1,2,2,1]],[[1,1,1,0],[3,2,0,2],[2,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[3,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,2,2,3],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,0,2],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,0,2],[2,2,2,2],[1,2,2,2]],[[2,1,1,0],[2,2,0,2],[2,2,3,1],[1,2,2,1]],[[1,1,1,0],[3,2,0,2],[2,2,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[3,2,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,0,2],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,0,2],[2,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,0,2],[2,2,3,3],[0,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,2,3,2],[0,3,2,1]],[[1,1,1,0],[2,2,0,2],[2,2,3,2],[0,2,3,1]],[[1,1,1,0],[2,2,0,2],[2,2,3,2],[0,2,2,2]],[[2,1,1,0],[2,2,0,2],[2,2,3,2],[1,2,2,0]],[[1,1,1,0],[3,2,0,2],[2,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,0,2],[3,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,0,2],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,0,2],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,0,2],[2,2,3,2],[1,2,3,0]],[[2,1,1,0],[2,2,0,2],[2,3,2,2],[0,2,2,1]],[[1,1,1,0],[3,2,0,2],[2,3,2,2],[0,2,2,1]],[[1,1,1,0],[2,2,0,2],[3,3,2,2],[0,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,4,2,2],[0,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,3,2,3],[0,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,3,2,2],[0,3,2,1]],[[1,1,1,0],[2,2,0,2],[2,3,2,2],[0,2,3,1]],[[1,1,1,0],[2,2,0,2],[2,3,2,2],[0,2,2,2]],[[2,1,1,0],[2,2,0,2],[2,3,2,2],[1,1,2,1]],[[1,1,1,0],[3,2,0,2],[2,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,2,0,2],[3,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,2,0,2],[2,4,2,2],[1,1,2,1]],[[1,1,1,0],[2,2,0,2],[2,3,2,2],[2,1,2,1]],[[2,1,1,0],[2,2,0,2],[2,3,3,1],[0,2,2,1]],[[1,1,1,0],[3,2,0,2],[2,3,3,1],[0,2,2,1]],[[1,1,1,0],[2,2,0,2],[3,3,3,1],[0,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,4,3,1],[0,2,2,1]],[[1,1,1,0],[2,2,0,2],[2,3,3,1],[0,3,2,1]],[[1,1,1,0],[2,2,0,2],[2,3,3,1],[0,2,3,1]],[[1,1,1,0],[2,2,0,2],[2,3,3,1],[0,2,2,2]],[[2,1,1,0],[2,2,0,2],[2,3,3,1],[1,1,2,1]],[[1,1,1,0],[3,2,0,2],[2,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,0,2],[3,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,0,2],[2,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,0,2],[2,3,3,1],[2,1,2,1]],[[1,1,1,0],[2,2,0,2],[2,3,3,3],[0,1,2,1]],[[1,1,1,0],[2,2,0,2],[2,3,3,2],[0,1,3,1]],[[1,1,1,0],[2,2,0,2],[2,3,3,2],[0,1,2,2]],[[2,1,1,0],[2,2,0,2],[2,3,3,2],[0,2,2,0]],[[1,1,1,0],[3,2,0,2],[2,3,3,2],[0,2,2,0]],[[1,1,1,0],[2,2,0,2],[3,3,3,2],[0,2,2,0]],[[1,1,1,0],[2,2,0,2],[2,4,3,2],[0,2,2,0]],[[1,1,1,0],[2,2,0,2],[2,3,3,2],[0,3,2,0]],[[1,1,1,0],[2,2,0,2],[2,3,3,2],[0,2,3,0]],[[1,1,1,0],[2,2,0,2],[2,3,3,3],[1,0,2,1]],[[1,1,1,0],[2,2,0,2],[2,3,3,2],[1,0,3,1]],[[1,1,1,0],[2,2,0,2],[2,3,3,2],[1,0,2,2]],[[2,1,1,0],[2,2,0,2],[2,3,3,2],[1,1,2,0]],[[1,1,1,0],[3,2,0,2],[2,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,0,2],[3,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,0,2],[2,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,3,0,2],[0,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,3,0,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,3,0,2],[0,2,1,0]],[[1,1,1,0],[2,2,1,0],[1,4,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,0],[1,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,2,1,0],[1,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,1,0],[1,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,1,0],[1,3,3,2],[1,2,2,2]],[[2,1,1,0],[2,2,1,0],[2,2,3,2],[1,2,2,1]],[[1,1,1,0],[3,2,1,0],[2,2,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,0],[3,2,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,0],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,2,1,0],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,1,0],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,1,0],[2,2,3,2],[1,2,2,2]],[[2,1,1,0],[2,2,1,0],[2,3,3,2],[0,2,2,1]],[[1,1,1,0],[3,2,1,0],[2,3,3,2],[0,2,2,1]],[[1,1,1,0],[2,2,1,0],[3,3,3,2],[0,2,2,1]],[[1,1,1,0],[2,2,1,0],[2,4,3,2],[0,2,2,1]],[[1,1,1,0],[2,2,1,0],[2,3,3,2],[0,3,2,1]],[[1,1,1,0],[2,2,1,0],[2,3,3,2],[0,2,3,1]],[[1,1,1,0],[2,2,1,0],[2,3,3,2],[0,2,2,2]],[[2,1,1,0],[2,2,1,0],[2,3,3,2],[1,1,2,1]],[[1,1,1,0],[3,2,1,0],[2,3,3,2],[1,1,2,1]],[[1,1,1,0],[2,2,1,0],[3,3,3,2],[1,1,2,1]],[[1,1,1,0],[2,2,1,0],[2,4,3,2],[1,1,2,1]],[[1,1,1,0],[2,2,1,0],[2,3,3,2],[2,1,2,1]],[[1,1,1,0],[2,2,1,1],[1,4,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,1],[1,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,1,1],[1,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,1,1],[1,3,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,1,1],[1,3,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,1,1],[1,4,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,1],[1,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,1,1],[1,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,1,1],[1,3,3,2],[1,2,3,0]],[[2,1,1,0],[2,2,1,1],[2,2,3,1],[1,2,2,1]],[[1,1,1,0],[3,2,1,1],[2,2,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,1],[3,2,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,1],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,1,1],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,1,1],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,1,1],[2,2,3,1],[1,2,2,2]],[[2,1,1,0],[2,2,1,1],[2,2,3,2],[1,2,2,0]],[[1,1,1,0],[3,2,1,1],[2,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,1],[3,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,1],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,1,1],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,1,1],[2,2,3,2],[1,2,3,0]],[[2,1,1,0],[2,2,1,1],[2,3,3,1],[0,2,2,1]],[[1,1,1,0],[3,2,1,1],[2,3,3,1],[0,2,2,1]],[[1,1,1,0],[2,2,1,1],[3,3,3,1],[0,2,2,1]],[[1,1,1,0],[2,2,1,1],[2,4,3,1],[0,2,2,1]],[[1,1,1,0],[2,2,1,1],[2,3,3,1],[0,3,2,1]],[[1,1,1,0],[2,2,1,1],[2,3,3,1],[0,2,3,1]],[[1,1,1,0],[2,2,1,1],[2,3,3,1],[0,2,2,2]],[[2,1,1,0],[2,2,1,1],[2,3,3,1],[1,1,2,1]],[[1,1,1,0],[3,2,1,1],[2,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,1,1],[3,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,1,1],[2,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,1,1],[2,3,3,1],[2,1,2,1]],[[2,1,1,0],[2,2,1,1],[2,3,3,2],[0,2,2,0]],[[1,1,1,0],[3,2,1,1],[2,3,3,2],[0,2,2,0]],[[1,1,1,0],[2,2,1,1],[3,3,3,2],[0,2,2,0]],[[1,1,1,0],[2,2,1,1],[2,4,3,2],[0,2,2,0]],[[1,1,1,0],[2,2,1,1],[2,3,3,2],[0,3,2,0]],[[1,1,1,0],[2,2,1,1],[2,3,3,2],[0,2,3,0]],[[2,1,1,0],[2,2,1,1],[2,3,3,2],[1,1,2,0]],[[1,1,1,0],[3,2,1,1],[2,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,1,1],[3,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,1,1],[2,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,1,1],[2,3,3,2],[2,1,2,0]],[[2,2,1,0],[2,2,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,0,2],[0,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,3,0,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,3,0,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,3,0,2],[0,2,0,1]],[[1,1,1,0],[2,2,1,2],[0,2,3,3],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[0,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,1,2],[0,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,1,2],[0,2,3,2],[1,2,2,2]],[[1,1,1,0],[2,2,1,2],[0,3,3,3],[1,1,2,1]],[[1,1,1,0],[2,2,1,2],[0,3,3,2],[1,1,3,1]],[[1,1,1,0],[2,2,1,2],[0,3,3,2],[1,1,2,2]],[[1,1,1,0],[2,2,1,3],[1,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,2,2,3],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,1,2],[1,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,1,2],[1,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,2,1,2],[1,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,1,2],[1,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,1,2],[1,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,1,2],[1,2,3,3],[0,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,2,3,2],[0,2,3,1]],[[1,1,1,0],[2,2,1,2],[1,2,3,2],[0,2,2,2]],[[1,1,1,0],[2,2,1,3],[1,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,2,1,2],[1,2,4,2],[1,2,1,1]],[[1,1,1,0],[2,2,1,2],[1,2,3,3],[1,2,1,1]],[[1,1,1,0],[2,2,1,2],[1,2,3,2],[1,2,1,2]],[[1,1,1,0],[2,2,1,3],[1,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[1,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[1,2,3,3],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[1,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,1,2],[1,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,1,2],[1,2,3,2],[1,2,3,0]],[[1,1,1,0],[2,2,1,3],[1,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,4,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,2,1,2],[1,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,2,1,2],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,2,1,2],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,2,1,3],[1,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,2,3],[1,1,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,2,2],[1,1,3,1]],[[1,1,1,0],[2,2,1,2],[1,3,2,2],[1,1,2,2]],[[1,1,1,0],[2,2,1,2],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,2,1,2],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,2,1,2],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,2,1,2],[1,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,4,1],[1,1,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,1],[1,1,3,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,1],[1,1,2,2]],[[1,1,1,0],[2,2,1,2],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,1,2],[1,3,4,1],[1,2,1,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,3],[0,1,2,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,2],[0,1,3,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,2],[0,1,2,2]],[[1,1,1,0],[2,2,1,3],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,2,1,2],[1,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,2,1,2],[1,3,4,2],[1,1,1,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,3],[1,1,1,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,2],[1,1,1,2]],[[1,1,1,0],[2,2,1,3],[1,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,1,2],[1,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,1,2],[1,3,4,2],[1,1,2,0]],[[1,1,1,0],[2,2,1,2],[1,3,3,3],[1,1,2,0]],[[1,1,1,0],[2,2,1,2],[1,3,3,2],[1,1,3,0]],[[1,1,1,0],[2,2,1,3],[1,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,1,2],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,1,2],[1,3,4,2],[1,2,0,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,3],[1,2,0,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,2,1,2],[1,3,3,2],[1,2,0,2]],[[1,1,1,0],[2,2,1,3],[1,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,1,2],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,1,2],[1,3,4,2],[1,2,1,0]],[[1,1,1,0],[2,2,1,2],[1,3,3,3],[1,2,1,0]],[[1,1,1,0],[2,2,1,2],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,2,1,2],[1,3,3,2],[1,3,1,0]],[[2,1,1,0],[2,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[3,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,3],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[3,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,1,2,3],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,1,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,1,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,1,2],[2,1,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,1,2],[2,1,2,2],[1,2,2,2]],[[2,1,1,0],[2,2,1,2],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[3,2,1,2],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[3,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,1,4,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,1,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,1,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,1,2],[2,1,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,1,2],[2,1,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,1,3],[2,1,3,2],[1,2,1,1]],[[1,1,1,0],[2,2,1,2],[2,1,4,2],[1,2,1,1]],[[1,1,1,0],[2,2,1,2],[2,1,3,3],[1,2,1,1]],[[1,1,1,0],[2,2,1,2],[2,1,3,2],[1,2,1,2]],[[2,1,1,0],[2,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[3,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,3],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[3,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,1,4,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,1,3,3],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,1,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,1,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,1,2],[2,1,3,2],[1,2,3,0]],[[2,1,1,0],[2,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[3,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,3],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[3,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,1,3],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,1,2],[2,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,1,2],[1,3,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,1,2],[1,2,3,1]],[[1,1,1,0],[2,2,1,2],[2,2,1,2],[1,2,2,2]],[[2,1,1,0],[2,2,1,2],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[3,2,1,2],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[2,2,1,2],[2,2,2,1],[1,2,2,2]],[[1,1,1,0],[2,2,1,3],[2,2,2,2],[0,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,2,3],[0,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,2,2],[0,3,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,2,2],[0,2,3,1]],[[1,1,1,0],[2,2,1,2],[2,2,2,2],[0,2,2,2]],[[2,1,1,0],[2,2,1,2],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[3,2,1,2],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[2,2,1,2],[2,2,2,2],[1,2,3,0]],[[1,1,1,0],[2,2,1,2],[2,2,4,1],[0,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,3,1],[0,3,2,1]],[[1,1,1,0],[2,2,1,2],[2,2,3,1],[0,2,3,1]],[[1,1,1,0],[2,2,1,2],[2,2,3,1],[0,2,2,2]],[[2,1,1,0],[2,2,1,2],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[3,2,1,2],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,1,2],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,1,2],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[2,2,1,2],[2,2,3,1],[1,3,1,1]],[[1,1,1,0],[2,2,1,3],[2,2,3,2],[0,2,1,1]],[[1,1,1,0],[2,2,1,2],[2,2,4,2],[0,2,1,1]],[[1,1,1,0],[2,2,1,2],[2,2,3,3],[0,2,1,1]],[[1,1,1,0],[2,2,1,2],[2,2,3,2],[0,2,1,2]],[[1,1,1,0],[2,2,1,3],[2,2,3,2],[0,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,2,4,2],[0,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,2,3,3],[0,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,2,3,2],[0,3,2,0]],[[1,1,1,0],[2,2,1,2],[2,2,3,2],[0,2,3,0]],[[2,1,1,0],[2,2,1,2],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[3,2,1,2],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,1,2],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,1,2],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[2,2,1,2],[2,2,3,2],[1,3,0,1]],[[2,1,1,0],[2,2,1,2],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[3,2,1,2],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,1,2],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,1,2],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[2,2,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,3,0,1],[2,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,0,1],[1,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,3,0,1],[1,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,3,0,1],[1,2,1,0]],[[2,2,1,0],[2,2,3,2],[2,3,0,1],[1,2,1,0]],[[2,1,1,0],[2,2,1,2],[2,3,0,2],[1,2,2,1]],[[1,1,1,0],[3,2,1,2],[2,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[3,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,0,2],[1,3,2,1]],[[2,1,1,0],[2,2,1,2],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[3,2,1,2],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[3,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,1,1],[2,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,1,1],[1,3,2,1]],[[2,1,1,0],[2,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[3,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,1,3],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,1,2],[3,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,4,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,1,3],[0,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,1,2],[0,3,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,1,2],[0,2,3,1]],[[1,1,1,0],[2,2,1,2],[2,3,1,2],[0,2,2,2]],[[2,1,1,0],[2,2,1,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[3,2,1,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,2,1,2],[3,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,2,1,2],[2,4,1,2],[1,1,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,1,2],[2,1,2,1]],[[2,1,1,0],[2,2,1,2],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[3,2,1,2],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[3,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,1,2],[2,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,1,2],[1,3,2,0]],[[2,1,1,0],[2,2,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[3,2,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,2,1,2],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,2,1,2],[2,3,2,1],[0,2,2,2]],[[2,1,1,0],[2,2,1,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,2,1,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,2,1,2],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,2,1,2],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,2,1],[2,1,2,1]],[[1,1,1,0],[2,2,1,3],[2,3,2,2],[0,1,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,2,3],[0,1,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,2,2],[0,1,3,1]],[[1,1,1,0],[2,2,1,2],[2,3,2,2],[0,1,2,2]],[[2,1,1,0],[2,2,1,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[3,2,1,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,1,2],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,2,2],[0,2,3,0]],[[1,1,1,0],[2,2,1,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,2,3],[1,0,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,2,2],[1,0,3,1]],[[1,1,1,0],[2,2,1,2],[2,3,2,2],[1,0,2,2]],[[2,1,1,0],[2,2,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,2,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,2,1,2],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,2,1,2],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,2],[2,3,0,1],[2,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,3,0,1],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[2,3,0,1],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[2,3,0,1],[1,1,2,0]],[[2,1,1,0],[2,2,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[3,2,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,1,2],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,1,2],[2,4,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,1],[0,1,2,2]],[[2,1,1,0],[2,2,1,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[3,2,1,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,1,2],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,1,2],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,1,2],[2,3,4,1],[0,2,1,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,1],[0,3,1,1]],[[2,1,1,0],[2,2,1,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[3,2,1,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,1,2],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,1,2],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,4,1],[1,0,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,1],[2,0,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,1],[1,0,3,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,1],[1,0,2,2]],[[2,1,1,0],[2,2,1,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,2,1,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,1,2],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,1,2],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,1,2],[2,3,4,1],[1,1,1,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,1],[2,1,1,1]],[[2,1,1,0],[2,2,1,2],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[3,2,1,2],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,1,2],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,1,2],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,1],[2,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,3,0,1],[1,1,2,0]],[[1,1,1,0],[2,2,1,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,4,2],[0,0,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,3],[0,0,2,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[0,0,2,2]],[[2,1,1,0],[2,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[3,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,1,3],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,1,2],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,1,2],[2,4,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,1,2],[2,3,4,2],[0,1,1,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,3],[0,1,1,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[0,1,1,2]],[[2,1,1,0],[2,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[3,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,1,3],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,1,2],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,1,2],[2,4,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,3,3],[0,1,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[0,1,3,0]],[[2,1,1,0],[2,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[3,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,1,3],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,1,2],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,1,2],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,1,2],[2,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,3],[0,2,0,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[0,3,0,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[0,2,0,2]],[[2,1,1,0],[2,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[3,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,1,3],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,1,2],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,1,2],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,1,2],[2,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,2,1,2],[2,3,3,3],[0,2,1,0]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,2,3,2],[3,3,0,1],[0,2,2,0]],[[1,2,1,0],[3,2,3,2],[2,3,0,1],[0,2,2,0]],[[1,3,1,0],[2,2,3,2],[2,3,0,1],[0,2,2,0]],[[2,2,1,0],[2,2,3,2],[2,3,0,1],[0,2,2,0]],[[2,1,1,0],[2,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[3,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,1,3],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,1,2],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,1,2],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,1,2],[2,3,4,2],[1,0,1,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,3],[1,0,1,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[2,0,1,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[1,0,1,2]],[[2,1,1,0],[2,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[3,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,1,3],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,1,2],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,1,2],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,4,2],[1,0,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,3,3],[1,0,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[2,0,2,0]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[1,0,3,0]],[[2,1,1,0],[2,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[3,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,1,3],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,1,2],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,1,2],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,1,2],[2,3,4,2],[1,1,0,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,3],[1,1,0,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[2,1,0,1]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[1,1,0,2]],[[2,1,1,0],[2,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[3,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,1,3],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,1,2],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,1,2],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,1,2],[2,3,4,2],[1,1,1,0]],[[1,1,1,0],[2,2,1,2],[2,3,3,3],[1,1,1,0]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[2,3,0,0],[2,2,2,0]],[[1,2,1,0],[2,2,3,2],[3,3,0,0],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[2,3,0,0],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[2,3,0,0],[1,2,2,0]],[[2,2,1,0],[2,2,3,2],[2,3,0,0],[1,2,2,0]],[[1,2,1,0],[2,2,3,2],[2,3,0,0],[2,2,1,1]],[[1,2,1,0],[2,2,3,2],[3,3,0,0],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[2,3,0,0],[1,2,1,1]],[[1,3,1,0],[2,2,3,2],[2,3,0,0],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[2,3,0,0],[1,2,1,1]],[[2,1,1,0],[2,2,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,2,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,2,1,2],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,2,1,2],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[2,2,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,2,3,2],[2,3,0,0],[2,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,3,0,0],[1,1,2,1]],[[1,2,1,0],[3,2,3,2],[2,3,0,0],[1,1,2,1]],[[1,3,1,0],[2,2,3,2],[2,3,0,0],[1,1,2,1]],[[2,2,1,0],[2,2,3,2],[2,3,0,0],[1,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,3,0,0],[0,2,2,1]],[[1,2,1,0],[3,2,3,2],[2,3,0,0],[0,2,2,1]],[[1,3,1,0],[2,2,3,2],[2,3,0,0],[0,2,2,1]],[[2,2,1,0],[2,2,3,2],[2,3,0,0],[0,2,2,1]],[[1,1,1,0],[2,2,2,0],[1,2,4,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,0],[1,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,0],[1,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,0],[1,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,0],[1,2,3,2],[1,2,2,2]],[[1,1,1,0],[2,2,2,0],[1,4,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,0],[1,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,0],[1,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,0],[1,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,0],[1,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,2,2,0],[1,4,3,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,0],[1,3,4,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,0],[1,3,3,2],[1,1,3,1]],[[1,1,1,0],[2,2,2,0],[1,3,3,2],[1,1,2,2]],[[1,1,1,0],[2,2,2,0],[1,4,3,2],[1,2,1,1]],[[1,1,1,0],[2,2,2,0],[1,3,4,2],[1,2,1,1]],[[1,1,1,0],[2,2,2,0],[1,3,3,2],[2,2,1,1]],[[1,1,1,0],[2,2,2,0],[1,3,3,2],[1,3,1,1]],[[2,1,1,0],[2,2,2,0],[2,1,3,2],[1,2,2,1]],[[1,1,1,0],[3,2,2,0],[2,1,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,0],[3,1,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,0],[2,1,4,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,0],[2,1,3,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,0],[2,1,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,0],[2,1,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,0],[2,1,3,2],[1,2,2,2]],[[2,1,1,0],[2,2,2,0],[2,2,2,2],[1,2,2,1]],[[1,1,1,0],[3,2,2,0],[2,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,0],[3,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,0],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,0],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,0],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,0],[2,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,2,2,0],[2,2,4,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,0],[2,2,3,2],[0,3,2,1]],[[1,1,1,0],[2,2,2,0],[2,2,3,2],[0,2,3,1]],[[1,1,1,0],[2,2,2,0],[2,2,3,2],[0,2,2,2]],[[2,1,1,0],[2,2,2,0],[2,2,3,2],[1,2,1,1]],[[1,1,1,0],[3,2,2,0],[2,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,2,2,0],[3,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,2,2,0],[2,2,3,2],[2,2,1,1]],[[1,1,1,0],[2,2,2,0],[2,2,3,2],[1,3,1,1]],[[2,1,1,0],[2,2,2,0],[2,3,1,2],[1,2,2,1]],[[1,1,1,0],[3,2,2,0],[2,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,0],[3,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,0],[2,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,0],[2,3,1,2],[1,3,2,1]],[[2,1,1,0],[2,2,2,0],[2,3,2,2],[0,2,2,1]],[[1,1,1,0],[3,2,2,0],[2,3,2,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,0],[3,3,2,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,0],[2,4,2,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,0],[2,3,2,2],[0,3,2,1]],[[1,1,1,0],[2,2,2,0],[2,3,2,2],[0,2,3,1]],[[1,1,1,0],[2,2,2,0],[2,3,2,2],[0,2,2,2]],[[2,1,1,0],[2,2,2,0],[2,3,2,2],[1,1,2,1]],[[1,1,1,0],[3,2,2,0],[2,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,0],[3,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,0],[2,4,2,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,0],[2,3,2,2],[2,1,2,1]],[[2,1,1,0],[2,2,2,0],[2,3,3,2],[0,1,2,1]],[[1,1,1,0],[3,2,2,0],[2,3,3,2],[0,1,2,1]],[[1,1,1,0],[2,2,2,0],[3,3,3,2],[0,1,2,1]],[[1,1,1,0],[2,2,2,0],[2,4,3,2],[0,1,2,1]],[[1,1,1,0],[2,2,2,0],[2,3,4,2],[0,1,2,1]],[[1,1,1,0],[2,2,2,0],[2,3,3,2],[0,1,3,1]],[[1,1,1,0],[2,2,2,0],[2,3,3,2],[0,1,2,2]],[[2,1,1,0],[2,2,2,0],[2,3,3,2],[0,2,1,1]],[[1,1,1,0],[3,2,2,0],[2,3,3,2],[0,2,1,1]],[[1,1,1,0],[2,2,2,0],[3,3,3,2],[0,2,1,1]],[[1,1,1,0],[2,2,2,0],[2,4,3,2],[0,2,1,1]],[[1,1,1,0],[2,2,2,0],[2,3,4,2],[0,2,1,1]],[[1,1,1,0],[2,2,2,0],[2,3,3,2],[0,3,1,1]],[[2,1,1,0],[2,2,2,0],[2,3,3,2],[1,0,2,1]],[[1,1,1,0],[3,2,2,0],[2,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,2,2,0],[3,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,2,2,0],[2,4,3,2],[1,0,2,1]],[[1,1,1,0],[2,2,2,0],[2,3,4,2],[1,0,2,1]],[[1,1,1,0],[2,2,2,0],[2,3,3,2],[2,0,2,1]],[[1,1,1,0],[2,2,2,0],[2,3,3,2],[1,0,3,1]],[[1,1,1,0],[2,2,2,0],[2,3,3,2],[1,0,2,2]],[[2,1,1,0],[2,2,2,0],[2,3,3,2],[1,1,1,1]],[[1,1,1,0],[3,2,2,0],[2,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,2,2,0],[3,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,2,2,0],[2,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,2,2,0],[2,3,4,2],[1,1,1,1]],[[1,1,1,0],[2,2,2,0],[2,3,3,2],[2,1,1,1]],[[2,1,1,0],[2,2,2,0],[2,3,3,2],[1,2,0,1]],[[1,1,1,0],[3,2,2,0],[2,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,2,0],[3,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,2,0],[2,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,2,0],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,2,2,1],[1,2,2,3],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[1,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[1,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,1],[1,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,1],[1,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,2,2,1],[1,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[1,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[1,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,2,1],[1,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,2,1],[1,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,2,1],[1,2,4,2],[1,2,1,1]],[[1,1,1,0],[2,2,2,1],[1,2,3,3],[1,2,1,1]],[[1,1,1,0],[2,2,2,1],[1,2,3,2],[1,2,1,2]],[[1,1,1,0],[2,2,2,1],[1,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,1],[1,2,3,3],[1,2,2,0]],[[1,1,1,0],[2,2,2,1],[1,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,2,1],[1,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,2,1],[1,2,3,2],[1,2,3,0]],[[1,1,1,0],[2,2,2,1],[1,4,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,1],[1,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,2,2,1],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,2,2,1],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,2,2,1],[1,3,2,3],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,2,2],[1,1,3,1]],[[1,1,1,0],[2,2,2,1],[1,3,2,2],[1,1,2,2]],[[1,1,1,0],[2,2,2,1],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,1],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,2,2,1],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,2,2,1],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,2,2,1],[1,4,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,0],[1,2,3,1]],[[1,1,1,0],[2,2,2,1],[1,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,4,1],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,1],[1,1,3,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,1],[1,1,2,2]],[[1,1,1,0],[2,2,2,1],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,2,1],[1,3,4,1],[1,2,1,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,2,2,1],[1,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,2,2,1],[1,3,4,2],[1,1,1,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,3],[1,1,1,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,2],[1,1,1,2]],[[1,1,1,0],[2,2,2,1],[1,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,2,1],[1,3,4,2],[1,1,2,0]],[[1,1,1,0],[2,2,2,1],[1,3,3,3],[1,1,2,0]],[[1,1,1,0],[2,2,2,1],[1,3,3,2],[1,1,3,0]],[[1,1,1,0],[2,2,2,1],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,2,1],[1,3,4,2],[1,2,0,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,3],[1,2,0,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,2,2,1],[1,3,3,2],[1,2,0,2]],[[1,1,1,0],[2,2,2,1],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,2,1],[1,3,4,2],[1,2,1,0]],[[1,1,1,0],[2,2,2,1],[1,3,3,3],[1,2,1,0]],[[1,1,1,0],[2,2,2,1],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,2,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,2,3,1],[2,1,0,0]],[[1,2,1,0],[2,2,3,2],[3,2,3,1],[1,1,0,0]],[[1,2,1,0],[3,2,3,2],[2,2,3,1],[1,1,0,0]],[[1,3,1,0],[2,2,3,2],[2,2,3,1],[1,1,0,0]],[[2,2,1,0],[2,2,3,2],[2,2,3,1],[1,1,0,0]],[[2,1,1,0],[2,2,2,1],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[3,2,2,1],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[3,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,1,2,3],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,1,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,1,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,1],[2,1,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,1],[2,1,2,2],[1,2,2,2]],[[2,1,1,0],[2,2,2,1],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[3,2,2,1],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[3,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,1,4,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,1,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,1,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,2,1],[2,1,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,2,1],[2,1,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,2,1],[2,1,4,2],[1,2,1,1]],[[1,1,1,0],[2,2,2,1],[2,1,3,3],[1,2,1,1]],[[1,1,1,0],[2,2,2,1],[2,1,3,2],[1,2,1,2]],[[2,1,1,0],[2,2,2,1],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[3,2,2,1],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,1],[3,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,1,4,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,1,3,3],[1,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,1,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,1,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,2,1],[2,1,3,2],[1,2,3,0]],[[2,1,1,0],[2,2,2,1],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[3,2,2,1],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[3,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,1,3],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,1,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,1,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,1,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,1],[2,2,1,2],[1,2,2,2]],[[2,1,1,0],[2,2,2,1],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[3,2,2,1],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[2,2,2,1],[2,2,2,1],[1,2,2,2]],[[1,1,1,0],[2,2,2,1],[2,2,2,3],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,2,2],[0,3,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,2,2],[0,2,3,1]],[[1,1,1,0],[2,2,2,1],[2,2,2,2],[0,2,2,2]],[[2,1,1,0],[2,2,2,1],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[3,2,2,1],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,1],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[2,2,2,1],[2,2,2,2],[1,2,3,0]],[[2,1,1,0],[2,2,2,1],[2,2,3,0],[1,2,2,1]],[[1,1,1,0],[3,2,2,1],[2,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[3,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,0],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,0],[1,3,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,0],[1,2,3,1]],[[1,1,1,0],[2,2,2,1],[2,2,4,1],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,1],[0,3,2,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,1],[0,2,3,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,1],[0,2,2,2]],[[2,1,1,0],[2,2,2,1],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[3,2,2,1],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,2,1],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,1],[1,3,1,1]],[[1,1,1,0],[2,2,2,1],[2,2,4,2],[0,2,1,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,3],[0,2,1,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,2],[0,2,1,2]],[[1,1,1,0],[2,2,2,1],[2,2,4,2],[0,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,2,3,3],[0,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,2,3,2],[0,3,2,0]],[[1,1,1,0],[2,2,2,1],[2,2,3,2],[0,2,3,0]],[[2,1,1,0],[2,2,2,1],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[3,2,2,1],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,2,1],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[2,2,2,1],[2,2,3,2],[1,3,0,1]],[[2,1,1,0],[2,2,2,1],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[3,2,2,1],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,2,1],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,2,1],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[2,2,2,1],[2,2,3,2],[1,3,1,0]],[[2,1,1,0],[2,2,2,1],[2,3,0,2],[1,2,2,1]],[[1,1,1,0],[3,2,2,1],[2,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[3,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,0,2],[1,3,2,1]],[[2,1,1,0],[2,2,2,1],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[3,2,2,1],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[3,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,1,1],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,1,1],[1,3,2,1]],[[2,1,1,0],[2,2,2,1],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[3,2,2,1],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[3,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,4,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,1,3],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,1,2],[0,3,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,1,2],[0,2,3,1]],[[1,1,1,0],[2,2,2,1],[2,3,1,2],[0,2,2,2]],[[2,1,1,0],[2,2,2,1],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[3,2,2,1],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[3,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[2,4,1,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,1,2],[2,1,2,1]],[[2,1,1,0],[2,2,2,1],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[3,2,2,1],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,1],[3,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,1,2],[2,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,1,2],[1,3,2,0]],[[2,1,1,0],[2,2,2,1],[2,3,2,0],[1,2,2,1]],[[1,1,1,0],[3,2,2,1],[2,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[3,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,2,0],[2,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,2,0],[1,3,2,1]],[[2,1,1,0],[2,2,2,1],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[3,2,2,1],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,2,2,1],[2,3,2,1],[0,2,2,2]],[[2,1,1,0],[2,2,2,1],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,2,2,1],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,2,1],[2,1,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,2,3],[0,1,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,2,2],[0,1,3,1]],[[1,1,1,0],[2,2,2,1],[2,3,2,2],[0,1,2,2]],[[2,1,1,0],[2,2,2,1],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[3,2,2,1],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,2,1],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,2,2],[0,2,3,0]],[[1,1,1,0],[2,2,2,1],[2,3,2,3],[1,0,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,2,2],[1,0,3,1]],[[1,1,1,0],[2,2,2,1],[2,3,2,2],[1,0,2,2]],[[2,1,1,0],[2,2,2,1],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,2,2,1],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,2,2,1],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,2,2,1],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,3,1],[0,2,0,0]],[[1,2,1,0],[3,2,3,2],[2,2,3,1],[0,2,0,0]],[[2,1,1,0],[2,2,2,1],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[3,2,2,1],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[3,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,4,3,0],[0,2,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,0],[0,3,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,0],[0,2,3,1]],[[2,1,1,0],[2,2,2,1],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[3,2,2,1],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[3,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[2,4,3,0],[1,1,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,0],[2,1,2,1]],[[2,1,1,0],[2,2,2,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[3,2,2,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,2,1],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,2,1],[2,4,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,1],[0,1,2,2]],[[2,1,1,0],[2,2,2,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[3,2,2,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,2,1],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,2,1],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,2,1],[2,3,4,1],[0,2,1,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,1],[0,3,1,1]],[[2,1,1,0],[2,2,2,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[3,2,2,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,2,1],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,2,1],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,4,1],[1,0,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,1],[2,0,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,1],[1,0,3,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,1],[1,0,2,2]],[[2,1,1,0],[2,2,2,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,2,2,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,2,1],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,2,1],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,2,1],[2,3,4,1],[1,1,1,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,1],[2,1,1,1]],[[2,1,1,0],[2,2,2,1],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[3,2,2,1],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,2,1],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,2,1],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,1],[2,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,2,3,1],[0,2,0,0]],[[2,2,1,0],[2,2,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,1,0],[2,2,2,1],[2,3,4,2],[0,0,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,3],[0,0,2,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[0,0,2,2]],[[2,1,1,0],[2,2,2,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[3,2,2,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,2,1],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,2,1],[2,4,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,2,1],[2,3,4,2],[0,1,1,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,3],[0,1,1,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[0,1,1,2]],[[2,1,1,0],[2,2,2,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[3,2,2,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,2,1],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,2,1],[2,4,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,3,3],[0,1,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[0,1,3,0]],[[2,1,1,0],[2,2,2,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[3,2,2,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,2,1],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,2,1],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,2,1],[2,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,3],[0,2,0,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[0,3,0,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[0,2,0,2]],[[2,1,1,0],[2,2,2,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[3,2,2,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,2,1],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,2,1],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,2,1],[2,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,2,2,1],[2,3,3,3],[0,2,1,0]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[0,3,1,0]],[[2,1,1,0],[2,2,2,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[3,2,2,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,2,1],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,2,1],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,2,1],[2,3,4,2],[1,0,1,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,3],[1,0,1,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[2,0,1,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[1,0,1,2]],[[2,1,1,0],[2,2,2,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[3,2,2,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,2,1],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,2,1],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,4,2],[1,0,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,3,3],[1,0,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[2,0,2,0]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[1,0,3,0]],[[2,1,1,0],[2,2,2,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[3,2,2,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,2,1],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,2,1],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,2,1],[2,3,4,2],[1,1,0,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,3],[1,1,0,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[2,1,0,1]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[1,1,0,2]],[[2,1,1,0],[2,2,2,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[3,2,2,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,2,1],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,2,1],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,2,1],[2,3,4,2],[1,1,1,0]],[[1,1,1,0],[2,2,2,1],[2,3,3,3],[1,1,1,0]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[2,2,3,0],[2,2,0,0]],[[1,2,1,0],[2,2,3,2],[3,2,3,0],[1,2,0,0]],[[1,2,1,0],[3,2,3,2],[2,2,3,0],[1,2,0,0]],[[2,1,1,0],[2,2,2,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,2,2,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,2,2,1],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,2,2,1],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[2,2,2,1],[2,3,3,2],[2,2,0,0]],[[1,3,1,0],[2,2,3,2],[2,2,3,0],[1,2,0,0]],[[2,2,1,0],[2,2,3,2],[2,2,3,0],[1,2,0,0]],[[1,2,1,0],[2,2,3,2],[2,2,3,0],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[3,2,3,0],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[2,2,3,0],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[2,2,3,0],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,1,0],[2,2,3,2],[2,2,3,0],[2,0,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,3,0],[1,0,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,3,0],[1,0,2,0]],[[1,3,1,0],[2,2,3,2],[2,2,3,0],[1,0,2,0]],[[2,2,1,0],[2,2,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,1,0],[2,2,2,2],[0,1,3,3],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,1,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[0,1,3,2],[1,2,2,2]],[[1,1,1,0],[2,2,2,3],[0,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,2,2,3],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[0,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[0,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,2,2,2],[0,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[0,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[0,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,2,3],[0,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[0,2,4,2],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[0,2,3,3],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[0,2,3,2],[1,2,1,2]],[[1,1,1,0],[2,2,2,3],[0,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[0,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[0,2,3,3],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[0,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,2,2],[0,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,2,2],[0,2,3,2],[1,2,3,0]],[[1,1,1,0],[2,2,2,3],[0,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,4,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[0,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,2,2,2],[0,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[0,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,2,2,3],[0,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,2,3],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,2,2],[1,1,3,1]],[[1,1,1,0],[2,2,2,2],[0,3,2,2],[1,1,2,2]],[[1,1,1,0],[2,2,2,2],[0,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[0,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,2,2,2],[0,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,2,2,2],[0,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,2,2,2],[0,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,4,1],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,1],[1,1,3,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,1],[1,1,2,2]],[[1,1,1,0],[2,2,2,2],[0,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[0,3,4,1],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,2,2,3],[0,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,4,2],[1,0,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,3],[1,0,2,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,2],[1,0,2,2]],[[1,1,1,0],[2,2,2,3],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,2,2,2],[0,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,2,2,2],[0,3,4,2],[1,1,1,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,3],[1,1,1,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,2],[1,1,1,2]],[[1,1,1,0],[2,2,2,3],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,2,2],[0,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,2,2],[0,3,4,2],[1,1,2,0]],[[1,1,1,0],[2,2,2,2],[0,3,3,3],[1,1,2,0]],[[1,1,1,0],[2,2,2,2],[0,3,3,2],[1,1,3,0]],[[1,1,1,0],[2,2,2,3],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,2,2],[0,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,2,2],[0,3,4,2],[1,2,0,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,3],[1,2,0,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,2,2,2],[0,3,3,2],[1,2,0,2]],[[1,1,1,0],[2,2,2,3],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,2,2],[0,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,2,2],[0,3,4,2],[1,2,1,0]],[[1,1,1,0],[2,2,2,2],[0,3,3,3],[1,2,1,0]],[[1,1,1,0],[2,2,2,2],[0,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[3,2,3,0],[0,2,1,0]],[[1,1,1,0],[2,2,2,2],[1,1,3,3],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,1,3,2],[0,2,3,1]],[[1,1,1,0],[2,2,2,2],[1,1,3,2],[0,2,2,2]],[[1,1,1,0],[2,2,2,3],[1,2,2,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,2,2,3],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,2,2,2],[0,3,2,1]],[[1,1,1,0],[2,2,2,2],[1,2,2,2],[0,2,3,1]],[[1,1,1,0],[2,2,2,2],[1,2,2,2],[0,2,2,2]],[[1,1,1,0],[2,2,2,2],[1,2,4,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,2,3,0],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,2,3,0],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[1,2,3,0],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[1,2,3,0],[1,2,2,2]],[[1,1,1,0],[2,2,2,2],[1,2,4,1],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,2,3,1],[0,3,2,1]],[[1,1,1,0],[2,2,2,2],[1,2,3,1],[0,2,3,1]],[[1,1,1,0],[2,2,2,2],[1,2,3,1],[0,2,2,2]],[[1,1,1,0],[2,2,2,2],[1,2,4,1],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[1,2,3,1],[2,2,2,0]],[[1,1,1,0],[2,2,2,2],[1,2,3,1],[1,3,2,0]],[[1,1,1,0],[2,2,2,2],[1,2,3,1],[1,2,3,0]],[[1,1,1,0],[2,2,2,3],[1,2,3,2],[0,2,1,1]],[[1,1,1,0],[2,2,2,2],[1,2,4,2],[0,2,1,1]],[[1,1,1,0],[2,2,2,2],[1,2,3,3],[0,2,1,1]],[[1,1,1,0],[2,2,2,2],[1,2,3,2],[0,2,1,2]],[[1,1,1,0],[2,2,2,3],[1,2,3,2],[0,2,2,0]],[[1,1,1,0],[2,2,2,2],[1,2,4,2],[0,2,2,0]],[[1,1,1,0],[2,2,2,2],[1,2,3,3],[0,2,2,0]],[[1,1,1,0],[2,2,2,2],[1,2,3,2],[0,3,2,0]],[[1,1,1,0],[2,2,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,0],[3,2,3,2],[2,2,3,0],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,2,3,0],[0,2,1,0]],[[2,2,1,0],[2,2,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,1,0],[2,2,2,3],[1,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,4,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,0,3],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,0,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,0,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[1,3,0,2],[1,2,2,2]],[[1,1,1,0],[2,2,2,3],[1,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,4,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,1,3],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,1,2],[0,3,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,1,2],[0,2,3,1]],[[1,1,1,0],[2,2,2,2],[1,3,1,2],[0,2,2,2]],[[1,1,1,0],[2,2,2,2],[1,4,2,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,0],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,0],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,0],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,0],[1,2,2,2]],[[1,1,1,0],[2,2,2,2],[1,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,1],[0,2,2,2]],[[1,1,1,0],[2,2,2,2],[1,4,2,1],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,2,1],[2,2,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,2,1],[1,3,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,2,1],[1,2,3,0]],[[1,1,1,0],[2,2,2,3],[1,3,2,2],[0,1,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,3],[0,1,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,2],[0,1,3,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,2],[0,1,2,2]],[[1,1,1,0],[2,2,2,2],[1,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,2,2],[0,2,3,0]],[[1,1,1,0],[2,2,2,3],[1,3,2,2],[1,0,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,3],[1,0,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,2],[1,0,3,1]],[[1,1,1,0],[2,2,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,1,0],[2,2,3,2],[3,2,3,0],[0,1,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,3,0],[0,1,2,0]],[[1,3,1,0],[2,2,3,2],[2,2,3,0],[0,1,2,0]],[[2,2,1,0],[2,2,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,1,0],[2,2,2,2],[1,4,3,0],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,4,0],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,0],[1,1,3,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,0],[1,1,2,2]],[[1,1,1,0],[2,2,2,2],[1,4,3,0],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[1,3,4,0],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,0],[2,2,1,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,0],[1,3,1,1]],[[1,1,1,0],[2,2,2,2],[1,4,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,1],[0,1,2,2]],[[1,1,1,0],[2,2,2,2],[1,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,2,2],[1,3,4,1],[0,2,1,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,1],[0,3,1,1]],[[1,1,1,0],[2,2,2,2],[1,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,4,1],[1,0,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,1],[1,0,3,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,1],[1,0,2,2]],[[1,1,1,0],[2,2,2,2],[1,4,3,1],[1,1,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,4,1],[1,1,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,3,1],[1,1,3,0]],[[1,1,1,0],[2,2,2,2],[1,4,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,2,2],[1,3,4,1],[1,2,0,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,1],[2,2,0,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,1],[1,3,0,1]],[[1,1,1,0],[2,2,2,2],[1,4,3,1],[1,2,1,0]],[[1,1,1,0],[2,2,2,2],[1,3,4,1],[1,2,1,0]],[[1,1,1,0],[2,2,2,2],[1,3,3,1],[2,2,1,0]],[[1,1,1,0],[2,2,2,2],[1,3,3,1],[1,3,1,0]],[[1,1,1,0],[2,2,2,3],[1,3,3,2],[0,0,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,4,2],[0,0,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,3],[0,0,2,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,2],[0,0,2,2]],[[1,1,1,0],[2,2,2,3],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,2,2],[1,4,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,2,2],[1,3,4,2],[0,1,1,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,3],[0,1,1,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,2],[0,1,1,2]],[[1,1,1,0],[2,2,2,3],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,2,2],[1,4,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,3,3],[0,1,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,3,2],[0,1,3,0]],[[1,1,1,0],[2,2,2,3],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,2,2],[1,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,2,2],[1,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,3],[0,2,0,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,2],[0,3,0,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,2],[0,2,0,2]],[[1,1,1,0],[2,2,2,3],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,2,2],[1,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,2,2],[1,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,2,2,2],[1,3,3,3],[0,2,1,0]],[[1,1,1,0],[2,2,2,2],[1,3,3,2],[0,3,1,0]],[[1,1,1,0],[2,2,2,3],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,2,2],[1,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,2,2],[1,3,4,2],[1,0,1,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,3],[1,0,1,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,2],[1,0,1,2]],[[1,1,1,0],[2,2,2,3],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,2,2],[1,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,4,2],[1,0,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,3,3],[1,0,2,0]],[[1,1,1,0],[2,2,2,2],[1,3,3,2],[1,0,3,0]],[[1,1,1,0],[2,2,2,3],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,2,2],[1,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,2,2],[1,3,4,2],[1,1,0,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,3],[1,1,0,1]],[[1,1,1,0],[2,2,2,2],[1,3,3,2],[1,1,0,2]],[[1,1,1,0],[2,2,2,3],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,2,2],[1,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,2,2],[1,3,4,2],[1,1,1,0]],[[1,1,1,0],[2,2,2,2],[1,3,3,3],[1,1,1,0]],[[2,1,1,0],[2,2,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[3,2,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,3],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[3,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,0,2,3],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,0,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,0,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[2,0,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[2,0,2,2],[1,2,2,2]],[[2,1,1,0],[2,2,2,2],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[3,2,2,2],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[3,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,0,4,1],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,0,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,0,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[2,0,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[2,0,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,2,3],[2,0,3,2],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[2,0,4,2],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[2,0,3,3],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[2,0,3,2],[1,2,1,2]],[[2,1,1,0],[2,2,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[3,2,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,3],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[3,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,0,4,2],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,0,3,3],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,0,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,0,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,2,2],[2,0,3,2],[1,2,3,0]],[[2,1,1,0],[2,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[3,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[3,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,1,4,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,1,3,0],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,1,3,0],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[2,1,3,0],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[2,1,3,0],[1,2,2,2]],[[2,1,1,0],[2,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,0],[3,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[3,1,3,1],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,1,4,1],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,1,3,1],[2,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,1,3,1],[1,3,2,0]],[[1,1,1,0],[2,2,2,2],[2,1,3,1],[1,2,3,0]],[[2,1,1,0],[2,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[3,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,3],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[3,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,2,0,3],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,2,0,2],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,2,0,2],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[2,2,0,2],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[2,2,0,2],[1,2,2,2]],[[2,1,1,0],[2,2,2,2],[2,2,2,0],[1,2,2,1]],[[1,1,1,0],[3,2,2,2],[2,2,2,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[3,2,2,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,2,2,0],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,2,2,0],[1,3,2,1]],[[1,1,1,0],[2,2,2,2],[2,2,2,0],[1,2,3,1]],[[1,1,1,0],[2,2,2,2],[2,2,2,0],[1,2,2,2]],[[2,1,1,0],[2,2,2,2],[2,2,2,1],[1,2,2,0]],[[1,1,1,0],[3,2,2,2],[2,2,2,1],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[3,2,2,1],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,2,2,1],[2,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,2,2,1],[1,3,2,0]],[[1,1,1,0],[2,2,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,1,0],[2,2,3,2],[2,2,2,1],[2,2,0,0]],[[1,2,1,0],[2,2,3,2],[3,2,2,1],[1,2,0,0]],[[1,2,1,0],[3,2,3,2],[2,2,2,1],[1,2,0,0]],[[1,3,1,0],[2,2,3,2],[2,2,2,1],[1,2,0,0]],[[2,2,1,0],[2,2,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,1,0],[2,2,2,2],[2,2,4,0],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,2,3,0],[0,3,2,1]],[[1,1,1,0],[2,2,2,2],[2,2,3,0],[0,2,3,1]],[[1,1,1,0],[2,2,2,2],[2,2,3,0],[0,2,2,2]],[[2,1,1,0],[2,2,2,2],[2,2,3,0],[1,2,1,1]],[[1,1,1,0],[3,2,2,2],[2,2,3,0],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[3,2,3,0],[1,2,1,1]],[[1,1,1,0],[2,2,2,2],[2,2,3,0],[2,2,1,1]],[[1,1,1,0],[2,2,2,2],[2,2,3,0],[1,3,1,1]],[[1,1,1,0],[2,2,2,2],[2,2,4,1],[0,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,2,3,1],[0,3,2,0]],[[1,1,1,0],[2,2,2,2],[2,2,3,1],[0,2,3,0]],[[2,1,1,0],[2,2,2,2],[2,2,3,1],[1,2,0,1]],[[1,1,1,0],[3,2,2,2],[2,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,2,2],[3,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,2,2],[2,2,3,1],[2,2,0,1]],[[1,1,1,0],[2,2,2,2],[2,2,3,1],[1,3,0,1]],[[2,1,1,0],[2,2,2,2],[2,2,3,1],[1,2,1,0]],[[1,1,1,0],[3,2,2,2],[2,2,3,1],[1,2,1,0]],[[1,1,1,0],[2,2,2,2],[3,2,3,1],[1,2,1,0]],[[1,1,1,0],[2,2,2,2],[2,2,3,1],[2,2,1,0]],[[1,1,1,0],[2,2,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,2,2,1],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[3,2,2,1],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[2,2,2,1],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[2,2,2,1],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[2,2,2,1],[1,1,1,0]],[[1,2,1,0],[2,2,3,2],[2,2,2,1],[2,1,0,1]],[[1,2,1,0],[2,2,3,2],[3,2,2,1],[1,1,0,1]],[[1,2,1,0],[3,2,3,2],[2,2,2,1],[1,1,0,1]],[[1,3,1,0],[2,2,3,2],[2,2,2,1],[1,1,0,1]],[[2,2,1,0],[2,2,3,2],[2,2,2,1],[1,1,0,1]],[[1,2,1,0],[2,2,3,2],[2,2,2,1],[2,0,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,2,1],[1,0,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,2,1],[1,0,2,0]],[[1,3,1,0],[2,2,3,2],[2,2,2,1],[1,0,2,0]],[[2,2,1,0],[2,2,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,1,0],[2,2,3,2],[2,2,2,1],[2,0,1,1]],[[1,2,1,0],[2,2,3,2],[3,2,2,1],[1,0,1,1]],[[1,2,1,0],[3,2,3,2],[2,2,2,1],[1,0,1,1]],[[1,3,1,0],[2,2,3,2],[2,2,2,1],[1,0,1,1]],[[2,2,1,0],[2,2,3,2],[2,2,2,1],[1,0,1,1]],[[1,2,1,0],[2,2,3,2],[3,2,2,1],[0,2,1,0]],[[2,1,1,0],[2,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[3,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,3],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[3,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,4,0,2],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,0,3],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,0,2],[0,3,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,0,2],[0,2,3,1]],[[1,1,1,0],[2,2,2,2],[2,3,0,2],[0,2,2,2]],[[2,1,1,0],[2,2,2,2],[2,3,0,2],[1,1,2,1]],[[1,1,1,0],[3,2,2,2],[2,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[3,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[2,4,0,2],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,0,2],[2,1,2,1]],[[2,1,1,0],[2,2,2,2],[2,3,1,0],[1,2,2,1]],[[1,1,1,0],[3,2,2,2],[2,3,1,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[3,3,1,0],[1,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,1,0],[2,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,1,0],[1,3,2,1]],[[2,1,1,0],[2,2,2,2],[2,3,1,1],[1,2,2,0]],[[1,1,1,0],[3,2,2,2],[2,3,1,1],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[3,3,1,1],[1,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,3,1,1],[2,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,2,1],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,2,2,1],[0,2,1,0]],[[2,2,1,0],[2,2,3,2],[2,2,2,1],[0,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,2,2,1],[0,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,2,2,1],[0,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,2,2,1],[0,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,2,2,1],[0,2,0,1]],[[2,1,1,0],[2,2,2,2],[2,3,2,0],[0,2,2,1]],[[1,1,1,0],[3,2,2,2],[2,3,2,0],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[3,3,2,0],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,4,2,0],[0,2,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,2,0],[0,3,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,2,0],[0,2,3,1]],[[1,1,1,0],[2,2,2,2],[2,3,2,0],[0,2,2,2]],[[2,1,1,0],[2,2,2,2],[2,3,2,0],[1,1,2,1]],[[1,1,1,0],[3,2,2,2],[2,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[3,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[2,4,2,0],[1,1,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,2,0],[2,1,2,1]],[[2,1,1,0],[2,2,2,2],[2,3,2,1],[0,2,2,0]],[[1,1,1,0],[3,2,2,2],[2,3,2,1],[0,2,2,0]],[[1,1,1,0],[2,2,2,2],[3,3,2,1],[0,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,4,2,1],[0,2,2,0]],[[1,1,1,0],[2,2,2,2],[2,3,2,1],[0,3,2,0]],[[1,1,1,0],[2,2,2,2],[2,3,2,1],[0,2,3,0]],[[2,1,1,0],[2,2,2,2],[2,3,2,1],[1,1,2,0]],[[1,1,1,0],[3,2,2,2],[2,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,2,2,2],[3,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,2,2,2],[2,4,2,1],[1,1,2,0]],[[1,1,1,0],[2,2,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,2,1],[0,1,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,2,1],[0,1,2,0]],[[1,3,1,0],[2,2,3,2],[2,2,2,1],[0,1,2,0]],[[2,2,1,0],[2,2,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,2,1],[0,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,2,2,1],[0,1,1,1]],[[1,3,1,0],[2,2,3,2],[2,2,2,1],[0,1,1,1]],[[2,2,1,0],[2,2,3,2],[2,2,2,1],[0,1,1,1]],[[1,2,1,0],[2,2,3,2],[2,2,2,0],[2,2,0,1]],[[1,2,1,0],[2,2,3,2],[3,2,2,0],[1,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,2,2,0],[1,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,2,2,0],[1,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,2,2,0],[1,2,0,1]],[[1,2,1,0],[2,2,3,2],[2,2,2,0],[2,1,1,1]],[[1,2,1,0],[2,2,3,2],[3,2,2,0],[1,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,2,2,0],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[2,2,2,0],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,1,0],[2,2,3,2],[2,2,2,0],[2,0,2,1]],[[1,2,1,0],[2,2,3,2],[3,2,2,0],[1,0,2,1]],[[1,2,1,0],[3,2,3,2],[2,2,2,0],[1,0,2,1]],[[1,3,1,0],[2,2,3,2],[2,2,2,0],[1,0,2,1]],[[2,2,1,0],[2,2,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,1,0],[2,2,3,2],[3,2,2,0],[0,2,1,1]],[[1,2,1,0],[3,2,3,2],[2,2,2,0],[0,2,1,1]],[[1,3,1,0],[2,2,3,2],[2,2,2,0],[0,2,1,1]],[[2,2,1,0],[2,2,3,2],[2,2,2,0],[0,2,1,1]],[[2,1,1,0],[2,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[3,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,2,2,2],[3,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,2,2,2],[2,4,3,0],[0,1,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,4,0],[0,1,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,3,0],[0,1,3,1]],[[1,1,1,0],[2,2,2,2],[2,3,3,0],[0,1,2,2]],[[2,1,1,0],[2,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[3,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,2,2,2],[3,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,2,2,2],[2,4,3,0],[0,2,1,1]],[[1,1,1,0],[2,2,2,2],[2,3,4,0],[0,2,1,1]],[[1,1,1,0],[2,2,2,2],[2,3,3,0],[0,3,1,1]],[[2,1,1,0],[2,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[3,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,2,2,2],[3,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,2,2,2],[2,4,3,0],[1,0,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,4,0],[1,0,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,3,0],[2,0,2,1]],[[1,1,1,0],[2,2,2,2],[2,3,3,0],[1,0,3,1]],[[1,1,1,0],[2,2,2,2],[2,3,3,0],[1,0,2,2]],[[2,1,1,0],[2,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,0],[3,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,2,2,2],[3,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,2,2,2],[2,4,3,0],[1,1,1,1]],[[1,1,1,0],[2,2,2,2],[2,3,4,0],[1,1,1,1]],[[1,1,1,0],[2,2,2,2],[2,3,3,0],[2,1,1,1]],[[2,1,1,0],[2,2,2,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,0],[3,2,2,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,0],[2,2,2,2],[3,3,3,0],[1,2,0,1]],[[1,1,1,0],[2,2,2,2],[2,4,3,0],[1,2,0,1]],[[1,1,1,0],[2,2,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[2,2,3,2],[3,2,2,0],[0,1,2,1]],[[1,2,1,0],[3,2,3,2],[2,2,2,0],[0,1,2,1]],[[1,3,1,0],[2,2,3,2],[2,2,2,0],[0,1,2,1]],[[2,2,1,0],[2,2,3,2],[2,2,2,0],[0,1,2,1]],[[2,1,1,0],[2,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,0],[3,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,2,2,2],[3,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,2,2,2],[2,4,3,1],[0,1,1,1]],[[1,1,1,0],[2,2,2,2],[2,3,4,1],[0,1,1,1]],[[2,1,1,0],[2,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,0],[3,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,2,2,2],[3,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,2,2,2],[2,4,3,1],[0,1,2,0]],[[1,1,1,0],[2,2,2,2],[2,3,4,1],[0,1,2,0]],[[1,1,1,0],[2,2,2,2],[2,3,3,1],[0,1,3,0]],[[2,1,1,0],[2,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,0],[3,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,2,2,2],[3,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,2,2,2],[2,4,3,1],[0,2,0,1]],[[1,1,1,0],[2,2,2,2],[2,3,4,1],[0,2,0,1]],[[1,1,1,0],[2,2,2,2],[2,3,3,1],[0,3,0,1]],[[2,1,1,0],[2,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,0],[3,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,2,2,2],[3,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,2,2,2],[2,4,3,1],[0,2,1,0]],[[1,1,1,0],[2,2,2,2],[2,3,4,1],[0,2,1,0]],[[1,1,1,0],[2,2,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,2,1,2],[2,2,0,0]],[[2,1,1,0],[2,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[3,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,2,2,2],[3,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,2,2,2],[2,4,3,1],[1,0,1,1]],[[1,1,1,0],[2,2,2,2],[2,3,4,1],[1,0,1,1]],[[1,1,1,0],[2,2,2,2],[2,3,3,1],[2,0,1,1]],[[2,1,1,0],[2,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[3,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,2,2,2],[3,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,2,2,2],[2,4,3,1],[1,0,2,0]],[[1,1,1,0],[2,2,2,2],[2,3,4,1],[1,0,2,0]],[[1,1,1,0],[2,2,2,2],[2,3,3,1],[2,0,2,0]],[[1,1,1,0],[2,2,2,2],[2,3,3,1],[1,0,3,0]],[[2,1,1,0],[2,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[3,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,2,2,2],[3,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,2,2,2],[2,4,3,1],[1,1,0,1]],[[1,1,1,0],[2,2,2,2],[2,3,4,1],[1,1,0,1]],[[1,1,1,0],[2,2,2,2],[2,3,3,1],[2,1,0,1]],[[2,1,1,0],[2,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[3,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,2,2,2],[3,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,2,2,2],[2,4,3,1],[1,1,1,0]],[[1,1,1,0],[2,2,2,2],[2,3,4,1],[1,1,1,0]],[[1,1,1,0],[2,2,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[3,2,1,2],[1,2,0,0]],[[1,2,1,0],[3,2,3,2],[2,2,1,2],[1,2,0,0]],[[1,3,1,0],[2,2,3,2],[2,2,1,2],[1,2,0,0]],[[2,2,1,0],[2,2,3,2],[2,2,1,2],[1,2,0,0]],[[2,1,1,0],[2,2,2,2],[2,3,3,1],[1,2,0,0]],[[1,1,1,0],[3,2,2,2],[2,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,2,2,2],[3,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,2,2,2],[2,4,3,1],[1,2,0,0]],[[1,1,1,0],[2,2,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[2,2,3,2],[2,2,1,2],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[3,2,1,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[2,2,1,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[2,2,1,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,1,0],[2,2,3,2],[2,2,1,2],[2,1,0,1]],[[1,2,1,0],[2,2,3,2],[3,2,1,2],[1,1,0,1]],[[1,2,1,0],[3,2,3,2],[2,2,1,2],[1,1,0,1]],[[1,3,1,0],[2,2,3,2],[2,2,1,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,1,0],[2,2,3,2],[2,2,1,2],[2,0,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,1,2],[1,0,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,1,2],[1,0,2,0]],[[1,3,1,0],[2,2,3,2],[2,2,1,2],[1,0,2,0]],[[2,2,1,0],[2,2,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,1,0],[2,2,3,2],[2,2,1,2],[2,0,1,1]],[[1,2,1,0],[2,2,3,2],[3,2,1,2],[1,0,1,1]],[[1,2,1,0],[3,2,3,2],[2,2,1,2],[1,0,1,1]],[[1,3,1,0],[2,2,3,2],[2,2,1,2],[1,0,1,1]],[[2,2,1,0],[2,2,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,1,0],[2,2,3,2],[3,2,1,2],[0,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,2,1,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,2,1,2],[0,2,1,0]],[[2,2,1,0],[2,2,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,2,1,2],[0,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,2,1,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,2,1,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,1,0],[2,2,3,2],[3,2,1,2],[0,1,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,1,2],[0,1,2,0]],[[1,3,1,0],[2,2,3,2],[2,2,1,2],[0,1,2,0]],[[2,2,1,0],[2,2,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,1,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,2,1,2],[0,1,1,1]],[[1,3,1,0],[2,2,3,2],[2,2,1,2],[0,1,1,1]],[[2,2,1,0],[2,2,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,1,0],[2,2,3,2],[2,2,1,1],[2,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,1,1],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,1,1],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[2,2,1,1],[1,1,2,0]],[[2,2,1,0],[2,2,3,2],[2,2,1,1],[1,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,1,1],[0,2,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,1,1],[0,2,2,0]],[[1,3,1,0],[2,2,3,2],[2,2,1,1],[0,2,2,0]],[[2,2,1,0],[2,2,3,2],[2,2,1,1],[0,2,2,0]],[[1,2,1,0],[2,2,3,2],[2,2,1,0],[2,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,2,1,0],[1,1,2,1]],[[1,2,1,0],[3,2,3,2],[2,2,1,0],[1,1,2,1]],[[1,3,1,0],[2,2,3,2],[2,2,1,0],[1,1,2,1]],[[2,2,1,0],[2,2,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,2,1,0],[0,2,2,1]],[[1,2,1,0],[3,2,3,2],[2,2,1,0],[0,2,2,1]],[[1,3,1,0],[2,2,3,2],[2,2,1,0],[0,2,2,1]],[[2,2,1,0],[2,2,3,2],[2,2,1,0],[0,2,2,1]],[[1,2,1,0],[2,2,3,2],[2,2,0,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,0,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,0,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[2,2,0,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,1,0],[2,2,3,2],[2,2,0,2],[2,1,1,1]],[[1,2,1,0],[2,2,3,2],[3,2,0,2],[1,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,2,0,2],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[2,2,0,2],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,1,0],[2,2,3,2],[2,2,0,2],[2,0,2,1]],[[1,2,1,0],[2,2,3,2],[3,2,0,2],[1,0,2,1]],[[1,2,1,0],[3,2,3,2],[2,2,0,2],[1,0,2,1]],[[1,3,1,0],[2,2,3,2],[2,2,0,2],[1,0,2,1]],[[2,2,1,0],[2,2,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,1,0],[2,2,3,2],[3,2,0,2],[0,2,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,0,2],[0,2,2,0]],[[1,3,1,0],[2,2,3,2],[2,2,0,2],[0,2,2,0]],[[2,2,1,0],[2,2,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,0,2],[0,2,1,1]],[[1,2,1,0],[3,2,3,2],[2,2,0,2],[0,2,1,1]],[[1,3,1,0],[2,2,3,2],[2,2,0,2],[0,2,1,1]],[[2,2,1,0],[2,2,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,1,0],[2,2,3,2],[3,2,0,2],[0,1,2,1]],[[1,2,1,0],[3,2,3,2],[2,2,0,2],[0,1,2,1]],[[1,3,1,0],[2,2,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,1,0],[2,2,3,0],[0,2,4,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[0,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,0],[0,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,0],[0,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,0],[0,2,3,2],[1,2,2,2]],[[1,1,1,0],[2,2,3,0],[0,4,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[0,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,0],[0,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,0],[0,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,0],[0,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,2,3,0],[0,4,3,2],[1,1,2,1]],[[1,1,1,0],[2,2,3,0],[0,3,4,2],[1,1,2,1]],[[1,1,1,0],[2,2,3,0],[0,3,3,2],[1,1,3,1]],[[1,1,1,0],[2,2,3,0],[0,3,3,2],[1,1,2,2]],[[1,1,1,0],[2,2,3,0],[0,4,3,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,0],[0,3,4,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,0],[0,3,3,2],[2,2,1,1]],[[1,1,1,0],[2,2,3,0],[0,3,3,2],[1,3,1,1]],[[1,1,1,0],[2,2,3,0],[1,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[1,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,0],[1,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,3,0],[1,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,3,0],[1,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,3,0],[1,2,4,2],[0,2,2,1]],[[1,1,1,0],[2,2,3,0],[1,2,3,2],[0,3,2,1]],[[1,1,1,0],[2,2,3,0],[1,2,3,2],[0,2,3,1]],[[1,1,1,0],[2,2,3,0],[1,2,3,2],[0,2,2,2]],[[1,1,1,0],[2,2,3,0],[1,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,0],[1,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,0],[1,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,3,0],[1,2,3,2],[1,2,3,0]],[[1,1,1,0],[2,2,3,0],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,2,3,0],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,2,3,0],[1,4,2,2],[0,2,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,2,2],[0,3,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,2,2],[0,2,3,1]],[[1,1,1,0],[2,2,3,0],[1,3,2,2],[0,2,2,2]],[[1,1,1,0],[2,2,3,0],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,0],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,0],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,2,3,0],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,2,3,0],[1,4,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,0],[1,2,3,1]],[[1,1,1,0],[2,2,3,0],[1,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,4,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,1],[1,1,3,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,1],[1,1,2,2]],[[1,1,1,0],[2,2,3,0],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,0],[1,3,4,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,2,3,0],[1,4,3,2],[0,1,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,4,2],[0,1,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,2],[0,1,3,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,2],[0,1,2,2]],[[1,1,1,0],[2,2,3,0],[1,4,3,2],[0,2,1,1]],[[1,1,1,0],[2,2,3,0],[1,3,4,2],[0,2,1,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,2],[0,3,1,1]],[[1,1,1,0],[2,2,3,0],[1,4,3,2],[1,0,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,4,2],[1,0,2,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,2],[1,0,3,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,2],[1,0,2,2]],[[1,1,1,0],[2,2,3,0],[1,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,0],[1,3,4,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,0],[1,3,3,2],[1,1,3,0]],[[1,1,1,0],[2,2,3,0],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,0],[1,3,4,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,2,3,0],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,2,3,0],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,0],[1,3,4,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,0],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,2,3,0],[1,3,3,2],[1,3,1,0]],[[2,2,1,0],[2,2,3,2],[2,2,0,2],[0,1,2,1]],[[2,1,1,0],[2,2,3,0],[2,0,3,2],[1,2,2,1]],[[1,1,1,0],[3,2,3,0],[2,0,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[3,0,3,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,0,4,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,0,3,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,0,3,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,0],[2,0,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,0],[2,0,3,2],[1,2,2,2]],[[2,1,1,0],[2,2,3,0],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[3,2,3,0],[2,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[3,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,1,4,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,1,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,1,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,3,0],[2,1,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,3,0],[2,1,3,1],[1,2,2,2]],[[2,1,1,0],[2,2,3,0],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[3,2,3,0],[2,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,0],[3,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,0],[2,1,4,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,0],[2,1,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,0],[2,1,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,3,0],[2,1,3,2],[1,2,3,0]],[[2,1,1,0],[2,2,3,0],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[3,2,3,0],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[2,2,3,0],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[2,2,3,0],[2,2,2,1],[1,2,2,2]],[[2,1,1,0],[2,2,3,0],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[3,2,3,0],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,0],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,0],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,0],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[2,2,3,0],[2,2,2,2],[1,2,3,0]],[[2,1,1,0],[2,2,3,0],[2,2,3,0],[1,2,2,1]],[[1,1,1,0],[3,2,3,0],[2,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[3,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,2,3,0],[2,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,2,3,0],[1,3,2,1]],[[1,1,1,0],[2,2,3,0],[2,2,3,0],[1,2,3,1]],[[1,1,1,0],[2,2,3,0],[2,2,4,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,2,3,1],[0,3,2,1]],[[1,1,1,0],[2,2,3,0],[2,2,3,1],[0,2,3,1]],[[1,1,1,0],[2,2,3,0],[2,2,3,1],[0,2,2,2]],[[2,1,1,0],[2,2,3,0],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[3,2,3,0],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,0],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,0],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[2,2,3,0],[2,2,3,1],[1,3,1,1]],[[1,1,1,0],[2,2,3,0],[2,2,4,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,0],[2,2,3,2],[0,3,2,0]],[[1,1,1,0],[2,2,3,0],[2,2,3,2],[0,2,3,0]],[[2,1,1,0],[2,2,3,0],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[3,2,3,0],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,0],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,0],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[2,2,3,0],[2,2,3,2],[1,3,0,1]],[[2,1,1,0],[2,2,3,0],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[3,2,3,0],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,0],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,0],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[2,2,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,2,0,1],[1,3,2,0]],[[1,2,1,0],[2,2,3,2],[2,2,0,1],[2,2,2,0]],[[1,2,1,0],[2,2,3,2],[3,2,0,1],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[2,2,0,1],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[2,2,0,1],[1,2,2,0]],[[2,1,1,0],[2,2,3,0],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[3,2,3,0],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[3,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,1,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,1,1],[1,3,2,1]],[[2,1,1,0],[2,2,3,0],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[3,2,3,0],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,0],[3,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,0],[2,3,1,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,0],[2,3,1,2],[1,3,2,0]],[[2,1,1,0],[2,2,3,0],[2,3,2,0],[1,2,2,1]],[[1,1,1,0],[3,2,3,0],[2,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[3,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,2,0],[2,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,2,0],[1,3,2,1]],[[2,1,1,0],[2,2,3,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[3,2,3,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,0],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,2,3,0],[2,3,2,1],[0,2,2,2]],[[2,1,1,0],[2,2,3,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,2,3,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,0],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,0],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,2,1],[2,1,2,1]],[[2,1,1,0],[2,2,3,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[3,2,3,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,0],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,0],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,0],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,2,3,0],[2,3,2,2],[0,2,3,0]],[[2,1,1,0],[2,2,3,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,2,3,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,0],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,0],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,0],[2,3,2,2],[2,1,2,0]],[[2,2,1,0],[2,2,3,2],[2,2,0,1],[1,2,2,0]],[[1,2,1,0],[2,2,3,2],[2,2,0,1],[2,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,2,0,1],[1,1,2,1]],[[1,2,1,0],[3,2,3,2],[2,2,0,1],[1,1,2,1]],[[1,3,1,0],[2,2,3,2],[2,2,0,1],[1,1,2,1]],[[2,2,1,0],[2,2,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,2,0,1],[0,2,2,1]],[[1,2,1,0],[3,2,3,2],[2,2,0,1],[0,2,2,1]],[[2,1,1,0],[2,2,3,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[3,2,3,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,2,3,0],[3,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,4,3,0],[0,2,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,0],[0,3,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,0],[0,2,3,1]],[[2,1,1,0],[2,2,3,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[3,2,3,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,2,3,0],[3,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,2,3,0],[2,4,3,0],[1,1,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,0],[2,1,2,1]],[[2,1,1,0],[2,2,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[3,2,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,3,0],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,3,0],[2,4,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,1],[0,1,2,2]],[[2,1,1,0],[2,2,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[3,2,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,0],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,0],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,0],[2,3,4,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,1],[0,3,1,1]],[[2,1,1,0],[2,2,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[3,2,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,0],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,0],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,4,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,1],[2,0,2,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,1],[1,0,3,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,1],[1,0,2,2]],[[2,1,1,0],[2,2,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,2,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,0],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,0],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,0],[2,3,4,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,1],[2,1,1,1]],[[2,1,1,0],[2,2,3,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[3,2,3,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,0],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,0],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,1],[2,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,2,0,1],[0,2,2,1]],[[2,2,1,0],[2,2,3,2],[2,2,0,1],[0,2,2,1]],[[1,2,1,0],[2,2,3,2],[2,2,0,0],[1,3,2,1]],[[1,2,1,0],[2,2,3,2],[2,2,0,0],[2,2,2,1]],[[1,2,1,0],[2,2,3,2],[3,2,0,0],[1,2,2,1]],[[1,2,1,0],[3,2,3,2],[2,2,0,0],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[2,2,0,0],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[2,2,0,0],[1,2,2,1]],[[2,1,1,0],[2,2,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[3,2,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,0],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,0],[2,4,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,0],[2,3,4,2],[0,1,1,1]],[[2,1,1,0],[2,2,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[3,2,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,0],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,0],[2,4,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,0],[2,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,0],[2,3,3,2],[0,1,3,0]],[[2,1,1,0],[2,2,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[3,2,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,0],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,0],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,0],[2,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,2],[0,3,0,1]],[[2,1,1,0],[2,2,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[3,2,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,0],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,0],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,0],[2,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,0],[2,3,3,2],[0,3,1,0]],[[2,1,1,0],[2,2,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[3,2,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,0],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,0],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,0],[2,3,4,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,2],[2,0,1,1]],[[2,1,1,0],[2,2,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[3,2,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,0],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,0],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,0],[2,3,4,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,0],[2,3,3,2],[2,0,2,0]],[[1,1,1,0],[2,2,3,0],[2,3,3,2],[1,0,3,0]],[[2,1,1,0],[2,2,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[3,2,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,0],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,0],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,0],[2,3,4,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,0],[2,3,3,2],[2,1,0,1]],[[2,1,1,0],[2,2,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[3,2,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,0],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,0],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,0],[2,3,4,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,0],[2,3,3,2],[2,1,1,0]],[[2,1,1,0],[2,2,3,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,2,3,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,2,3,0],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,2,3,0],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[2,2,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,2,3,2],[3,1,3,2],[1,0,0,1]],[[1,2,1,0],[3,2,3,2],[2,1,3,2],[1,0,0,1]],[[1,3,1,0],[2,2,3,2],[2,1,3,2],[1,0,0,1]],[[2,2,1,0],[2,2,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,1,0],[3,2,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,1,0],[2,2,3,1],[0,1,3,3],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,1,3,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,1],[0,1,3,2],[1,2,2,2]],[[1,1,1,0],[2,2,3,1],[0,2,2,3],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,1],[0,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,1],[0,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,2,4,1],[0,2,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,3,1],[0,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,3,1],[0,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,4,1],[0,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[0,2,4,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[0,2,3,3],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[0,2,3,2],[1,2,1,2]],[[1,1,1,0],[2,2,4,1],[0,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[0,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[0,2,3,3],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[0,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,1],[0,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,3,1],[0,2,3,2],[1,2,3,0]],[[1,1,1,0],[2,2,3,1],[0,4,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,1],[0,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,2,3,1],[0,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,2,3,1],[0,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,2,3,1],[0,3,2,3],[1,1,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,2,2],[1,1,3,1]],[[1,1,1,0],[2,2,3,1],[0,3,2,2],[1,1,2,2]],[[1,1,1,0],[2,2,3,1],[0,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[0,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,1],[0,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,2,3,1],[0,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,2,3,1],[0,4,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,0],[1,2,3,1]],[[1,1,1,0],[2,2,4,1],[0,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,1],[0,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,4,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,1],[1,1,3,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,1],[1,1,2,2]],[[1,1,1,0],[2,2,4,1],[0,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[0,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[0,3,4,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,2,4,1],[0,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,4,2],[1,0,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,3],[1,0,2,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,2],[1,0,2,2]],[[1,1,1,0],[2,2,4,1],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,2,3,1],[0,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,2,3,1],[0,3,4,2],[1,1,1,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,3],[1,1,1,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,2],[1,1,1,2]],[[1,1,1,0],[2,2,4,1],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,1],[0,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,1],[0,3,4,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,1],[0,3,3,3],[1,1,2,0]],[[1,1,1,0],[2,2,3,1],[0,3,3,2],[1,1,3,0]],[[1,1,1,0],[2,2,4,1],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,1],[0,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,1],[0,3,4,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,3],[1,2,0,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,2,3,1],[0,3,3,2],[1,2,0,2]],[[1,1,1,0],[2,2,4,1],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,1],[0,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,1],[0,3,4,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,1],[0,3,3,3],[1,2,1,0]],[[1,1,1,0],[2,2,3,1],[0,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,2,3,1],[0,3,3,2],[1,3,1,0]],[[1,3,1,0],[2,2,3,2],[2,1,3,2],[0,1,0,1]],[[2,2,1,0],[2,2,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,1,0],[2,2,3,1],[1,1,3,3],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,1,3,2],[0,2,3,1]],[[1,1,1,0],[2,2,3,1],[1,1,3,2],[0,2,2,2]],[[1,1,1,0],[2,2,3,1],[1,2,2,3],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,2,2,2],[0,3,2,1]],[[1,1,1,0],[2,2,3,1],[1,2,2,2],[0,2,3,1]],[[1,1,1,0],[2,2,3,1],[1,2,2,2],[0,2,2,2]],[[1,1,1,0],[2,2,4,1],[1,2,3,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,2,4,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,2,3,1],[0,3,2,1]],[[1,1,1,0],[2,2,3,1],[1,2,3,1],[0,2,3,1]],[[1,1,1,0],[2,2,3,1],[1,2,3,1],[0,2,2,2]],[[1,1,1,0],[2,2,4,1],[1,2,3,2],[0,2,1,1]],[[1,1,1,0],[2,2,3,1],[1,2,4,2],[0,2,1,1]],[[1,1,1,0],[2,2,3,1],[1,2,3,3],[0,2,1,1]],[[1,1,1,0],[2,2,3,1],[1,2,3,2],[0,2,1,2]],[[1,1,1,0],[2,2,4,1],[1,2,3,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,1],[1,2,4,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,1],[1,2,3,3],[0,2,2,0]],[[1,1,1,0],[2,2,3,1],[1,2,3,2],[0,3,2,0]],[[1,1,1,0],[2,2,3,1],[1,2,3,2],[0,2,3,0]],[[1,1,1,0],[2,2,3,1],[1,4,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,0,3],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,0,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,0,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,1],[1,3,0,2],[1,2,2,2]],[[1,1,1,0],[2,2,3,1],[1,4,1,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,1,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,1,1],[1,3,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,1,1],[1,2,3,1]],[[1,1,1,0],[2,2,3,1],[1,3,1,1],[1,2,2,2]],[[1,1,1,0],[2,2,3,1],[1,4,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,1,3],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,1,2],[0,3,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,1,2],[0,2,3,1]],[[1,1,1,0],[2,2,3,1],[1,3,1,2],[0,2,2,2]],[[1,1,1,0],[2,2,3,1],[1,4,1,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[1,3,1,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,1],[1,3,1,2],[1,3,2,0]],[[1,1,1,0],[2,2,3,1],[1,3,1,2],[1,2,3,0]],[[1,1,1,0],[2,2,3,1],[1,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,1],[0,2,2,2]],[[1,1,1,0],[2,2,3,1],[1,4,2,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,1],[2,2,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,1],[1,3,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,3],[0,1,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,2],[0,1,3,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,2],[0,1,2,2]],[[1,1,1,0],[2,2,3,1],[1,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,1],[1,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,2,3,1],[1,3,2,2],[0,2,3,0]],[[1,1,1,0],[2,2,3,1],[1,3,2,3],[1,0,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,2],[1,0,3,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,2],[1,0,2,2]],[[1,1,1,0],[2,2,3,1],[1,4,2,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,2],[2,2,0,1]],[[1,1,1,0],[2,2,3,1],[1,3,2,2],[1,3,0,1]],[[1,1,1,0],[2,2,3,1],[1,4,2,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,1],[1,3,2,2],[2,2,1,0]],[[1,1,1,0],[2,2,3,1],[1,3,2,2],[1,3,1,0]],[[1,1,1,0],[2,2,3,1],[1,4,3,0],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,0],[0,3,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,0],[0,2,3,1]],[[1,1,1,0],[2,2,4,1],[1,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,3,1],[1,4,3,1],[0,1,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,1],[0,1,2,2]],[[1,1,1,0],[2,2,4,1],[1,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,1],[1,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,4,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,1],[0,3,1,1]],[[1,1,1,0],[2,2,4,1],[1,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,1],[1,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,4,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,1],[1,0,3,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,1],[1,0,2,2]],[[1,1,1,0],[2,2,4,1],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,1],[1,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,1,0],[2,2,3,2],[2,1,3,1],[2,1,1,0]],[[1,1,1,0],[2,2,4,1],[1,3,3,2],[0,0,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,4,2],[0,0,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,3],[0,0,2,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,2],[0,0,2,2]],[[1,1,1,0],[2,2,4,1],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,1],[1,4,3,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,4,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,3],[0,1,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,2],[0,1,1,2]],[[1,1,1,0],[2,2,4,1],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,1],[1,4,3,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,1],[1,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,1],[1,3,3,3],[0,1,2,0]],[[1,1,1,0],[2,2,3,1],[1,3,3,2],[0,1,3,0]],[[1,1,1,0],[2,2,4,1],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,1],[1,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,1],[1,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,3],[0,2,0,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,2],[0,3,0,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,2],[0,2,0,2]],[[1,1,1,0],[2,2,4,1],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,1],[1,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,1],[1,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,1],[1,3,3,3],[0,2,1,0]],[[1,1,1,0],[2,2,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,2,3,2],[3,1,3,1],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[2,1,3,1],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[2,1,3,1],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,1,0],[2,2,3,2],[2,1,3,1],[2,1,0,1]],[[1,2,1,0],[2,2,3,2],[3,1,3,1],[1,1,0,1]],[[1,2,1,0],[3,2,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,1,0],[2,2,4,1],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,1],[1,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,4,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,3],[1,0,1,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,2],[1,0,1,2]],[[1,1,1,0],[2,2,4,1],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,1],[1,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,1],[1,3,4,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,1],[1,3,3,3],[1,0,2,0]],[[1,1,1,0],[2,2,3,1],[1,3,3,2],[1,0,3,0]],[[1,1,1,0],[2,2,4,1],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,1],[1,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,1],[1,3,4,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,3],[1,1,0,1]],[[1,1,1,0],[2,2,3,1],[1,3,3,2],[1,1,0,2]],[[1,1,1,0],[2,2,4,1],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,1],[1,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,1],[1,3,4,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,1],[1,3,3,3],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[2,1,3,1],[1,1,0,1]],[[2,2,1,0],[2,2,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,1,0],[2,2,3,2],[2,1,3,1],[2,0,2,0]],[[1,2,1,0],[2,2,3,2],[3,1,3,1],[1,0,2,0]],[[1,2,1,0],[3,2,3,2],[2,1,3,1],[1,0,2,0]],[[1,3,1,0],[2,2,3,2],[2,1,3,1],[1,0,2,0]],[[2,2,1,0],[2,2,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,1,0],[2,2,3,2],[2,1,3,1],[2,0,1,1]],[[1,2,1,0],[2,2,3,2],[3,1,3,1],[1,0,1,1]],[[1,2,1,0],[3,2,3,2],[2,1,3,1],[1,0,1,1]],[[1,3,1,0],[2,2,3,2],[2,1,3,1],[1,0,1,1]],[[2,2,1,0],[2,2,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,1,0],[2,2,3,2],[3,1,3,1],[0,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,1,3,1],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,1,3,1],[0,2,1,0]],[[2,1,1,0],[2,2,3,1],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[3,2,3,1],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[3,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,0,2,3],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,0,2,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,0,2,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,1],[2,0,2,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,1],[2,0,2,2],[1,2,2,2]],[[2,1,1,0],[2,2,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[3,2,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,4,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[3,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,0,4,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,0,3,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,0,3,1],[1,3,2,1]],[[1,1,1,0],[2,2,3,1],[2,0,3,1],[1,2,3,1]],[[1,1,1,0],[2,2,3,1],[2,0,3,1],[1,2,2,2]],[[1,1,1,0],[2,2,4,1],[2,0,3,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[2,0,4,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[2,0,3,3],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[2,0,3,2],[1,2,1,2]],[[2,1,1,0],[2,2,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[3,2,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,4,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[3,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[2,0,4,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[2,0,3,3],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[2,0,3,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,1],[2,0,3,2],[1,3,2,0]],[[1,1,1,0],[2,2,3,1],[2,0,3,2],[1,2,3,0]],[[2,2,1,0],[2,2,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,1,3,1],[0,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,1,3,1],[0,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,1,3,1],[0,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,1,0],[2,2,3,2],[3,1,3,1],[0,1,2,0]],[[2,1,1,0],[2,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[3,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[3,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,2,0,3],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,2,0,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,2,0,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,1],[2,2,0,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,1],[2,2,0,2],[1,2,2,2]],[[2,1,1,0],[2,2,3,1],[2,2,1,1],[1,2,2,1]],[[1,1,1,0],[3,2,3,1],[2,2,1,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[3,2,1,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,2,1,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,2,1,1],[1,3,2,1]],[[1,1,1,0],[2,2,3,1],[2,2,1,1],[1,2,3,1]],[[1,1,1,0],[2,2,3,1],[2,2,1,1],[1,2,2,2]],[[2,1,1,0],[2,2,3,1],[2,2,1,2],[1,2,2,0]],[[1,1,1,0],[3,2,3,1],[2,2,1,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[3,2,1,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[2,2,1,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,1],[2,2,1,2],[1,3,2,0]],[[1,1,1,0],[2,2,3,1],[2,2,1,2],[1,2,3,0]],[[2,1,1,0],[2,2,3,1],[2,2,2,1],[1,2,1,1]],[[1,1,1,0],[3,2,3,1],[2,2,2,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[3,2,2,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,1],[2,2,2,1],[2,2,1,1]],[[1,1,1,0],[2,2,3,1],[2,2,2,1],[1,3,1,1]],[[2,1,1,0],[2,2,3,1],[2,2,2,2],[1,2,0,1]],[[1,1,1,0],[3,2,3,1],[2,2,2,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,1],[3,2,2,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,1],[2,2,2,2],[2,2,0,1]],[[1,1,1,0],[2,2,3,1],[2,2,2,2],[1,3,0,1]],[[2,1,1,0],[2,2,3,1],[2,2,2,2],[1,2,1,0]],[[1,1,1,0],[3,2,3,1],[2,2,2,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,1],[3,2,2,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,1],[2,2,2,2],[2,2,1,0]],[[1,1,1,0],[2,2,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,1,0],[3,2,3,2],[2,1,3,1],[0,1,2,0]],[[1,3,1,0],[2,2,3,2],[2,1,3,1],[0,1,2,0]],[[2,2,1,0],[2,2,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,1,3,1],[0,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,1,3,1],[0,1,1,1]],[[1,3,1,0],[2,2,3,2],[2,1,3,1],[0,1,1,1]],[[2,2,1,0],[2,2,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,1,3,1],[0,0,2,1]],[[1,3,1,0],[2,2,3,2],[2,1,3,1],[0,0,2,1]],[[2,2,1,0],[2,2,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,1,0],[2,2,3,2],[2,1,3,0],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,1,3,0],[2,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,1,3,0],[1,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,1,3,0],[1,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,1,3,0],[1,2,1,0]],[[2,2,1,0],[2,2,3,2],[2,1,3,0],[1,2,1,0]],[[1,2,1,0],[2,2,3,2],[2,1,3,0],[2,1,1,1]],[[1,2,1,0],[2,2,3,2],[3,1,3,0],[1,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,1,3,0],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[2,1,3,0],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,1,0],[2,2,3,2],[2,1,3,0],[2,0,2,1]],[[1,2,1,0],[2,2,3,2],[3,1,3,0],[1,0,2,1]],[[1,2,1,0],[3,2,3,2],[2,1,3,0],[1,0,2,1]],[[1,3,1,0],[2,2,3,2],[2,1,3,0],[1,0,2,1]],[[2,2,1,0],[2,2,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,1,0],[2,2,3,2],[3,1,3,0],[0,2,1,1]],[[1,2,1,0],[3,2,3,2],[2,1,3,0],[0,2,1,1]],[[1,3,1,0],[2,2,3,2],[2,1,3,0],[0,2,1,1]],[[2,2,1,0],[2,2,3,2],[2,1,3,0],[0,2,1,1]],[[2,1,1,0],[2,2,3,1],[2,3,0,1],[1,2,2,1]],[[1,1,1,0],[3,2,3,1],[2,3,0,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[3,3,0,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,3,0,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,3,0,1],[1,3,2,1]],[[2,1,1,0],[2,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[3,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[3,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,4,0,2],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,3,0,3],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,3,0,2],[0,3,2,1]],[[1,1,1,0],[2,2,3,1],[2,3,0,2],[0,2,3,1]],[[1,1,1,0],[2,2,3,1],[2,3,0,2],[0,2,2,2]],[[2,1,1,0],[2,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,1,1,0],[3,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,2,3,1],[3,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,2,3,1],[2,4,0,2],[1,1,2,1]],[[1,1,1,0],[2,2,3,1],[2,3,0,2],[2,1,2,1]],[[2,1,1,0],[2,2,3,1],[2,3,0,2],[1,2,2,0]],[[1,1,1,0],[3,2,3,1],[2,3,0,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[3,3,0,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,1],[2,3,0,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,1],[2,3,0,2],[1,3,2,0]],[[2,1,1,0],[2,2,3,1],[2,3,1,1],[0,2,2,1]],[[1,1,1,0],[3,2,3,1],[2,3,1,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[3,3,1,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,4,1,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,1],[2,3,1,1],[0,3,2,1]],[[1,1,1,0],[2,2,3,1],[2,3,1,1],[0,2,3,1]],[[1,1,1,0],[2,2,3,1],[2,3,1,1],[0,2,2,2]],[[2,1,1,0],[2,2,3,1],[2,3,1,1],[1,1,2,1]],[[1,1,1,0],[3,2,3,1],[2,3,1,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,1],[3,3,1,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,1],[2,4,1,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,1],[2,3,1,1],[2,1,2,1]],[[2,1,1,0],[2,2,3,1],[2,3,1,2],[0,2,2,0]],[[1,1,1,0],[3,2,3,1],[2,3,1,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,1],[3,3,1,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,1],[2,4,1,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,1],[2,3,1,2],[0,3,2,0]],[[1,1,1,0],[2,2,3,1],[2,3,1,2],[0,2,3,0]],[[2,1,1,0],[2,2,3,1],[2,3,1,2],[1,1,2,0]],[[1,1,1,0],[3,2,3,1],[2,3,1,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,1],[3,3,1,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,1],[2,4,1,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,1,3,0],[0,1,2,1]],[[1,2,1,0],[3,2,3,2],[2,1,3,0],[0,1,2,1]],[[1,3,1,0],[2,2,3,2],[2,1,3,0],[0,1,2,1]],[[2,2,1,0],[2,2,3,2],[2,1,3,0],[0,1,2,1]],[[2,1,1,0],[2,2,3,1],[2,3,2,1],[0,1,2,1]],[[1,1,1,0],[3,2,3,1],[2,3,2,1],[0,1,2,1]],[[1,1,1,0],[2,2,3,1],[3,3,2,1],[0,1,2,1]],[[1,1,1,0],[2,2,3,1],[2,4,2,1],[0,1,2,1]],[[2,1,1,0],[2,2,3,1],[2,3,2,1],[0,2,1,1]],[[1,1,1,0],[3,2,3,1],[2,3,2,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,1],[3,3,2,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,1],[2,4,2,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,1],[2,3,2,1],[0,3,1,1]],[[2,1,1,0],[2,2,3,1],[2,3,2,1],[1,0,2,1]],[[1,1,1,0],[3,2,3,1],[2,3,2,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,1],[3,3,2,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,1],[2,4,2,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,1],[2,3,2,1],[2,0,2,1]],[[2,1,1,0],[2,2,3,1],[2,3,2,1],[1,1,1,1]],[[1,1,1,0],[3,2,3,1],[2,3,2,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,1],[3,3,2,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,1],[2,4,2,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,1],[2,3,2,1],[2,1,1,1]],[[2,1,1,0],[2,2,3,1],[2,3,2,1],[1,2,0,1]],[[1,1,1,0],[3,2,3,1],[2,3,2,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,1],[3,3,2,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,1],[2,4,2,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,1],[2,3,2,1],[2,2,0,1]],[[2,1,1,0],[2,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,1,0],[3,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,1],[3,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,1],[2,4,2,2],[0,1,1,1]],[[2,1,1,0],[2,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,1,0],[3,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,1],[3,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,1],[2,4,2,2],[0,1,2,0]],[[2,1,1,0],[2,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,1,0],[3,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,1],[3,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,1],[2,4,2,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,1],[2,3,2,2],[0,3,0,1]],[[2,1,1,0],[2,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,1,0],[3,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,1],[3,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,1],[2,4,2,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,1],[2,3,2,2],[0,3,1,0]],[[2,1,1,0],[2,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,1,0],[3,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,1],[3,3,2,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,1],[2,4,2,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,1],[2,3,2,2],[2,0,1,1]],[[2,1,1,0],[2,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,1,0],[3,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,1],[3,3,2,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,1],[2,4,2,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,1],[2,3,2,2],[2,0,2,0]],[[2,1,1,0],[2,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,1,0],[3,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,1],[3,3,2,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,1],[2,4,2,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,1],[2,3,2,2],[2,1,0,1]],[[2,1,1,0],[2,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,1,0],[3,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,1],[3,3,2,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,1],[2,4,2,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[2,1,2,2],[2,1,1,0]],[[1,2,1,0],[2,2,3,2],[3,1,2,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[2,1,2,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[2,1,2,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,1,0],[2,2,3,2],[2,1,2,2],[2,1,0,1]],[[1,2,1,0],[2,2,3,2],[3,1,2,2],[1,1,0,1]],[[2,1,1,0],[2,2,3,1],[2,3,2,2],[1,2,0,0]],[[1,1,1,0],[3,2,3,1],[2,3,2,2],[1,2,0,0]],[[1,1,1,0],[2,2,3,1],[3,3,2,2],[1,2,0,0]],[[1,1,1,0],[2,2,3,1],[2,4,2,2],[1,2,0,0]],[[1,1,1,0],[2,2,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,1,0],[3,2,3,2],[2,1,2,2],[1,1,0,1]],[[1,3,1,0],[2,2,3,2],[2,1,2,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,1,0],[2,2,3,2],[2,1,2,2],[2,0,2,0]],[[1,2,1,0],[2,2,3,2],[3,1,2,2],[1,0,2,0]],[[1,2,1,0],[3,2,3,2],[2,1,2,2],[1,0,2,0]],[[1,3,1,0],[2,2,3,2],[2,1,2,2],[1,0,2,0]],[[2,2,1,0],[2,2,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,1,0],[2,2,3,2],[2,1,2,2],[2,0,1,1]],[[1,2,1,0],[2,2,3,2],[3,1,2,2],[1,0,1,1]],[[1,2,1,0],[3,2,3,2],[2,1,2,2],[1,0,1,1]],[[1,3,1,0],[2,2,3,2],[2,1,2,2],[1,0,1,1]],[[2,2,1,0],[2,2,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,1,0],[2,2,3,2],[3,1,2,2],[0,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,1,2,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,1,2,2],[0,2,1,0]],[[2,2,1,0],[2,2,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,1,2,2],[0,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,1,2,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,1,2,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,1,2,2],[0,2,0,1]],[[1,2,1,0],[2,2,3,2],[3,1,2,2],[0,1,2,0]],[[1,2,1,0],[3,2,3,2],[2,1,2,2],[0,1,2,0]],[[1,3,1,0],[2,2,3,2],[2,1,2,2],[0,1,2,0]],[[2,2,1,0],[2,2,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,1,2,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,1,2,2],[0,1,1,1]],[[1,3,1,0],[2,2,3,2],[2,1,2,2],[0,1,1,1]],[[2,2,1,0],[2,2,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,1,2,2],[0,0,2,1]],[[1,3,1,0],[2,2,3,2],[2,1,2,2],[0,0,2,1]],[[2,2,1,0],[2,2,3,2],[2,1,2,2],[0,0,2,1]],[[1,2,1,0],[2,2,3,2],[2,1,2,1],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,1,2,1],[2,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,1,2,1],[1,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,1,2,1],[1,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,1,2,1],[1,2,1,0]],[[2,2,1,0],[2,2,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,1,0],[2,2,3,2],[2,1,2,1],[1,3,0,1]],[[1,2,1,0],[2,2,3,2],[2,1,2,1],[2,2,0,1]],[[1,2,1,0],[2,2,3,2],[3,1,2,1],[1,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,1,2,1],[1,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,1,2,1],[1,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,1,2,1],[1,2,0,1]],[[2,1,1,0],[2,2,3,1],[2,3,3,2],[0,2,0,0]],[[1,1,1,0],[3,2,3,1],[2,3,3,2],[0,2,0,0]],[[1,1,1,0],[2,2,3,1],[3,3,3,2],[0,2,0,0]],[[1,1,1,0],[2,2,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,1,0],[2,2,3,2],[2,1,2,0],[1,3,1,1]],[[1,2,1,0],[2,2,3,2],[2,1,2,0],[2,2,1,1]],[[1,2,1,0],[2,2,3,2],[3,1,2,0],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[2,1,2,0],[1,2,1,1]],[[1,3,1,0],[2,2,3,2],[2,1,2,0],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[2,1,2,0],[1,2,1,1]],[[1,2,1,0],[2,2,3,2],[2,1,1,2],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,1,1,2],[2,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,1,1,2],[1,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,1,1,2],[1,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,1,1,2],[1,2,1,0]],[[2,2,1,0],[2,2,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,1,0],[2,2,3,2],[2,1,1,2],[1,3,0,1]],[[1,2,1,0],[2,2,3,2],[2,1,1,2],[2,2,0,1]],[[1,2,1,0],[2,2,3,2],[3,1,1,2],[1,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,1,1,2],[1,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,1,1,2],[1,2,0,1]],[[2,1,1,0],[2,2,3,1],[2,3,3,2],[1,1,0,0]],[[1,1,1,0],[3,2,3,1],[2,3,3,2],[1,1,0,0]],[[1,1,1,0],[2,2,3,1],[3,3,3,2],[1,1,0,0]],[[1,1,1,0],[2,2,3,1],[2,4,3,2],[1,1,0,0]],[[1,1,1,0],[2,2,3,1],[2,3,3,2],[2,1,0,0]],[[2,2,1,0],[2,2,3,2],[2,1,1,2],[1,2,0,1]],[[1,2,1,0],[2,2,3,2],[2,1,1,2],[2,0,2,1]],[[1,2,1,0],[2,2,3,2],[3,1,1,2],[1,0,2,1]],[[1,2,1,0],[3,2,3,2],[2,1,1,2],[1,0,2,1]],[[1,3,1,0],[2,2,3,2],[2,1,1,2],[1,0,2,1]],[[2,2,1,0],[2,2,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,1,0],[2,2,3,2],[3,1,1,2],[0,1,2,1]],[[1,2,1,0],[3,2,3,2],[2,1,1,2],[0,1,2,1]],[[1,3,1,0],[2,2,3,2],[2,1,1,2],[0,1,2,1]],[[2,2,1,0],[2,2,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,1,0],[2,2,3,2],[2,1,1,1],[1,2,3,0]],[[1,2,1,0],[2,2,3,2],[2,1,1,1],[1,3,2,0]],[[1,2,1,0],[2,2,3,2],[2,1,1,1],[2,2,2,0]],[[1,2,1,0],[2,2,3,2],[3,1,1,1],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[2,1,1,1],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[2,1,1,1],[1,2,2,0]],[[2,2,1,0],[2,2,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,1,0],[2,2,3,2],[2,1,1,0],[1,2,2,2]],[[1,2,1,0],[2,2,3,2],[2,1,1,0],[1,2,3,1]],[[1,2,1,0],[2,2,3,2],[2,1,1,0],[1,3,2,1]],[[1,2,1,0],[2,2,3,2],[2,1,1,0],[2,2,2,1]],[[1,2,1,0],[2,2,3,2],[3,1,1,0],[1,2,2,1]],[[1,2,1,0],[3,2,3,2],[2,1,1,0],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[2,1,1,0],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[2,1,1,0],[1,2,2,1]],[[1,2,1,0],[2,2,3,2],[2,1,0,2],[1,2,3,0]],[[1,2,1,0],[2,2,3,2],[2,1,0,2],[1,3,2,0]],[[1,2,1,0],[2,2,3,2],[2,1,0,2],[2,2,2,0]],[[1,2,1,0],[2,2,3,2],[3,1,0,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[2,1,0,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[2,1,0,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,2],[2,1,0,2],[1,2,2,0]],[[1,2,1,0],[2,2,3,2],[2,1,0,2],[1,3,1,1]],[[1,2,1,0],[2,2,3,2],[2,1,0,2],[2,2,1,1]],[[1,2,1,0],[2,2,3,2],[3,1,0,2],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[2,1,0,2],[1,2,1,1]],[[1,3,1,0],[2,2,3,2],[2,1,0,2],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,1,0],[2,2,3,2],[2,1,0,2],[2,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,1,0,2],[1,1,2,1]],[[1,2,1,0],[3,2,3,2],[2,1,0,2],[1,1,2,1]],[[1,3,1,0],[2,2,3,2],[2,1,0,2],[1,1,2,1]],[[2,2,1,0],[2,2,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,1,0,2],[0,2,2,1]],[[1,2,1,0],[3,2,3,2],[2,1,0,2],[0,2,2,1]],[[1,3,1,0],[2,2,3,2],[2,1,0,2],[0,2,2,1]],[[2,2,1,0],[2,2,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,1,0],[2,2,3,2],[2,1,0,1],[1,2,2,2]],[[1,2,1,0],[2,2,3,2],[2,1,0,1],[1,2,3,1]],[[1,2,1,0],[2,2,3,2],[2,1,0,1],[1,3,2,1]],[[1,1,1,0],[2,2,4,2],[0,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,3],[0,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,2,1,3],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,2,1,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,2,1,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,2],[0,2,1,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,2],[0,2,1,2],[1,2,2,2]],[[1,1,1,0],[2,2,4,2],[0,2,2,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,3],[0,2,2,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[0,2,2,3],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[0,2,2,2],[1,2,1,2]],[[1,1,1,0],[2,2,4,2],[0,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,3],[0,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[0,2,2,3],[1,2,2,0]],[[1,1,1,0],[2,2,4,2],[0,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,3],[0,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,2,4,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,2,3,0],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,2,3,0],[1,3,2,1]],[[1,1,1,0],[2,2,3,2],[0,2,3,0],[1,2,3,1]],[[1,1,1,0],[2,2,3,2],[0,2,3,0],[1,2,2,2]],[[1,1,1,0],[2,2,4,2],[0,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,3],[0,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[0,2,4,1],[1,2,1,1]],[[1,1,1,0],[2,2,4,2],[0,2,3,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,3],[0,2,3,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[0,2,4,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[0,2,3,1],[2,2,2,0]],[[1,1,1,0],[2,2,3,2],[0,2,3,1],[1,3,2,0]],[[1,1,1,0],[2,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,1,0],[2,2,3,2],[2,1,0,1],[2,2,2,1]],[[1,2,1,0],[2,2,3,2],[3,1,0,1],[1,2,2,1]],[[1,2,1,0],[3,2,3,2],[2,1,0,1],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[2,1,0,1],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,1,0],[2,2,4,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,3],[0,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,4,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,0,3],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,0,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,0,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,2],[0,3,0,2],[1,2,2,2]],[[1,1,1,0],[2,2,4,2],[0,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,2,3,3],[0,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,1,3],[1,1,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,1,2],[1,1,3,1]],[[1,1,1,0],[2,2,3,2],[0,3,1,2],[1,1,2,2]],[[1,1,1,0],[2,2,3,2],[0,4,2,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,2,0],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,2,0],[1,3,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,2,0],[1,2,3,1]],[[1,1,1,0],[2,2,3,2],[0,3,2,0],[1,2,2,2]],[[1,1,1,0],[2,2,3,2],[0,4,2,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[0,3,2,1],[2,2,2,0]],[[1,1,1,0],[2,2,3,2],[0,3,2,1],[1,3,2,0]],[[1,1,1,0],[2,2,3,2],[0,3,2,1],[1,2,3,0]],[[1,1,1,0],[2,2,4,2],[0,3,2,2],[1,0,2,1]],[[1,1,1,0],[2,2,3,3],[0,3,2,2],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,2,3],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,2,2],[1,0,2,2]],[[1,1,1,0],[2,2,4,2],[0,3,2,2],[1,1,1,1]],[[1,1,1,0],[2,2,3,3],[0,3,2,2],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[0,3,2,3],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[0,3,2,2],[1,1,1,2]],[[1,1,1,0],[2,2,4,2],[0,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,3],[0,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,2],[0,3,2,3],[1,1,2,0]],[[1,1,1,0],[2,2,4,2],[0,3,2,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,3],[0,3,2,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[0,3,2,3],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[0,3,2,2],[1,2,0,2]],[[1,1,1,0],[2,2,4,2],[0,3,2,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,3],[0,3,2,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,1,1,0],[2,2,4,2],[0,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,2,3,3],[0,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,2,3,2],[0,4,3,0],[1,1,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,4,0],[1,1,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,3,0],[1,1,3,1]],[[1,1,1,0],[2,2,3,2],[0,3,3,0],[1,1,2,2]],[[1,1,1,0],[2,2,4,2],[0,3,3,0],[1,2,1,1]],[[1,1,1,0],[2,2,3,3],[0,3,3,0],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[0,4,3,0],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[0,3,4,0],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[0,3,3,0],[2,2,1,1]],[[1,1,1,0],[2,2,3,2],[0,3,3,0],[1,3,1,1]],[[1,1,1,0],[2,2,4,2],[0,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,3],[0,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[0,3,4,1],[1,0,2,1]],[[1,1,1,0],[2,2,4,2],[0,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,3],[0,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[0,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[0,3,4,1],[1,1,1,1]],[[1,1,1,0],[2,2,4,2],[0,3,3,1],[1,1,2,0]],[[1,1,1,0],[2,2,3,3],[0,3,3,1],[1,1,2,0]],[[1,1,1,0],[2,2,3,2],[0,4,3,1],[1,1,2,0]],[[1,1,1,0],[2,2,3,2],[0,3,4,1],[1,1,2,0]],[[1,1,1,0],[2,2,3,2],[0,3,3,1],[1,1,3,0]],[[1,1,1,0],[2,2,4,2],[0,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,3],[0,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[0,4,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[0,3,4,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[0,3,3,1],[2,2,0,1]],[[1,1,1,0],[2,2,3,2],[0,3,3,1],[1,3,0,1]],[[1,1,1,0],[2,2,4,2],[0,3,3,1],[1,2,1,0]],[[1,1,1,0],[2,2,3,3],[0,3,3,1],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[0,4,3,1],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[0,3,4,1],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[0,3,3,1],[2,2,1,0]],[[1,1,1,0],[2,2,3,2],[0,3,3,1],[1,3,1,0]],[[1,1,1,0],[2,2,4,2],[0,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,3],[0,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,1,0],[2,2,3,2],[2,0,3,1],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,0,3,1],[2,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,0,3,1],[1,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,0,3,1],[1,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,1,0],[2,2,4,2],[1,2,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,3,3],[1,2,1,2],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,2,1,3],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,2,1,2],[0,3,2,1]],[[1,1,1,0],[2,2,3,2],[1,2,1,2],[0,2,3,1]],[[1,1,1,0],[2,2,3,2],[1,2,1,2],[0,2,2,2]],[[1,1,1,0],[2,2,4,2],[1,2,2,2],[0,2,1,1]],[[1,1,1,0],[2,2,3,3],[1,2,2,2],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,2,2,3],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,2,2,2],[0,2,1,2]],[[1,1,1,0],[2,2,4,2],[1,2,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,3],[1,2,2,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,2],[1,2,2,3],[0,2,2,0]],[[2,2,1,0],[2,2,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,1,0],[2,2,3,2],[2,0,3,1],[1,3,0,1]],[[1,2,1,0],[2,2,3,2],[2,0,3,1],[2,2,0,1]],[[1,2,1,0],[2,2,3,2],[3,0,3,1],[1,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,0,3,1],[1,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,0,3,1],[1,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,1,0],[2,2,4,2],[1,2,3,0],[0,2,2,1]],[[1,1,1,0],[2,2,3,3],[1,2,3,0],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,2,4,0],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,2,3,0],[0,3,2,1]],[[1,1,1,0],[2,2,3,2],[1,2,3,0],[0,2,3,1]],[[1,1,1,0],[2,2,3,2],[1,2,3,0],[0,2,2,2]],[[1,1,1,0],[2,2,4,2],[1,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,3],[1,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,2,4,1],[0,2,1,1]],[[1,1,1,0],[2,2,4,2],[1,2,3,1],[0,2,2,0]],[[1,1,1,0],[2,2,3,3],[1,2,3,1],[0,2,2,0]],[[1,1,1,0],[2,2,3,2],[1,2,4,1],[0,2,2,0]],[[1,1,1,0],[2,2,3,2],[1,2,3,1],[0,3,2,0]],[[1,1,1,0],[2,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,1,0],[2,2,3,2],[2,0,3,1],[2,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,0,3,1],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[2,0,3,1],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[2,0,3,1],[1,1,2,0]],[[2,2,1,0],[2,2,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,1,0],[2,2,3,2],[2,0,3,1],[2,1,1,1]],[[1,2,1,0],[2,2,3,2],[3,0,3,1],[1,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,0,3,1],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[2,0,3,1],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,1,0],[2,2,3,2],[3,0,3,1],[0,2,2,0]],[[1,2,1,0],[3,2,3,2],[2,0,3,1],[0,2,2,0]],[[1,3,1,0],[2,2,3,2],[2,0,3,1],[0,2,2,0]],[[2,2,1,0],[2,2,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,1,0],[2,2,3,2],[3,0,3,1],[0,2,1,1]],[[1,2,1,0],[3,2,3,2],[2,0,3,1],[0,2,1,1]],[[1,3,1,0],[2,2,3,2],[2,0,3,1],[0,2,1,1]],[[2,2,1,0],[2,2,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,4,0,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,0,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,0,1],[1,3,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,0,1],[1,2,3,1]],[[1,1,1,0],[2,2,3,2],[1,3,0,1],[1,2,2,2]],[[1,1,1,0],[2,2,4,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,2,3,3],[1,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,4,0,2],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,0,3],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,0,2],[0,3,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,0,2],[0,2,3,1]],[[1,1,1,0],[2,2,3,2],[1,3,0,2],[0,2,2,2]],[[1,1,1,0],[2,2,3,2],[1,4,0,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,0,2],[2,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,0,2],[1,3,1,1]],[[1,1,1,0],[2,2,3,2],[1,4,0,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,0,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,0,2],[1,3,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,0,2],[1,2,3,0]],[[1,1,1,0],[2,2,3,2],[1,4,1,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,0],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,0],[1,3,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,0],[1,2,3,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,0],[1,2,2,2]],[[1,1,1,0],[2,2,3,2],[1,4,1,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,1,1],[2,2,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,1,1],[1,3,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,1,1],[1,2,3,0]],[[1,1,1,0],[2,2,4,2],[1,3,1,2],[0,1,2,1]],[[1,1,1,0],[2,2,3,3],[1,3,1,2],[0,1,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,3],[0,1,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,2],[0,1,3,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,2],[0,1,2,2]],[[1,1,1,0],[2,2,4,2],[1,3,1,2],[1,0,2,1]],[[1,1,1,0],[2,2,3,3],[1,3,1,2],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,3],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,2],[1,0,3,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,2],[1,0,2,2]],[[1,1,1,0],[2,2,3,2],[1,4,1,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,2],[2,2,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,1,2],[1,3,0,1]],[[1,1,1,0],[2,2,3,2],[1,4,1,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[1,3,1,2],[2,2,1,0]],[[1,1,1,0],[2,2,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,0,3,0],[1,3,1,1]],[[1,2,1,0],[2,2,3,2],[2,0,3,0],[2,2,1,1]],[[1,2,1,0],[2,2,3,2],[3,0,3,0],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,4,2,0],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,0],[0,3,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,0],[0,2,3,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,0],[0,2,2,2]],[[1,1,1,0],[2,2,3,2],[1,4,2,0],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,0],[2,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,0],[1,3,1,1]],[[1,1,1,0],[2,2,3,2],[1,4,2,1],[0,2,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,2,1],[0,3,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,2,1],[0,2,3,0]],[[1,1,1,0],[2,2,3,2],[1,4,2,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,1],[2,2,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,1],[1,3,0,1]],[[1,1,1,0],[2,2,3,2],[1,4,2,1],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[1,3,2,1],[2,2,1,0]],[[1,1,1,0],[2,2,3,2],[1,3,2,1],[1,3,1,0]],[[1,3,1,0],[2,2,3,2],[2,0,3,0],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,1,0],[2,2,3,2],[2,0,3,0],[2,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,0,3,0],[1,1,2,1]],[[1,2,1,0],[3,2,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,1,0],[2,2,4,2],[1,3,2,2],[0,0,2,1]],[[1,1,1,0],[2,2,3,3],[1,3,2,2],[0,0,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,3],[0,0,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,2],[0,0,2,2]],[[1,1,1,0],[2,2,4,2],[1,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,3],[1,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,3],[0,1,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,2],[0,1,1,2]],[[1,1,1,0],[2,2,4,2],[1,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,3],[1,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,2,3],[0,1,2,0]],[[1,1,1,0],[2,2,4,2],[1,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,3],[1,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,3],[0,2,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,2],[0,2,0,2]],[[1,1,1,0],[2,2,4,2],[1,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,3],[1,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,0,3,0],[1,1,2,1]],[[2,2,1,0],[2,2,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,0,3,0],[0,2,2,1]],[[1,2,1,0],[3,2,3,2],[2,0,3,0],[0,2,2,1]],[[1,3,1,0],[2,2,3,2],[2,0,3,0],[0,2,2,1]],[[2,2,1,0],[2,2,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,1,0],[2,2,4,2],[1,3,2,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,3],[1,3,2,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,3],[1,0,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,2],[1,0,1,2]],[[1,1,1,0],[2,2,4,2],[1,3,2,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,3],[1,3,2,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,2,3],[1,0,2,0]],[[1,1,1,0],[2,2,4,2],[1,3,2,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,3],[1,3,2,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,3],[1,1,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,2,2],[1,1,0,2]],[[1,1,1,0],[2,2,4,2],[1,3,2,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,3],[1,3,2,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,1,0],[2,2,3,2],[2,0,2,2],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,0,2,2],[2,2,1,0]],[[1,2,1,0],[2,2,3,2],[3,0,2,2],[1,2,1,0]],[[1,2,1,0],[3,2,3,2],[2,0,2,2],[1,2,1,0]],[[1,3,1,0],[2,2,3,2],[2,0,2,2],[1,2,1,0]],[[2,2,1,0],[2,2,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,1,0],[2,2,3,2],[2,0,2,2],[1,3,0,1]],[[1,2,1,0],[2,2,3,2],[2,0,2,2],[2,2,0,1]],[[1,1,1,0],[2,2,4,2],[1,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,2,3,3],[1,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,2,3,2],[1,4,3,0],[0,1,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,4,0],[0,1,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,3,0],[0,1,3,1]],[[1,1,1,0],[2,2,3,2],[1,3,3,0],[0,1,2,2]],[[1,1,1,0],[2,2,4,2],[1,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,2,3,3],[1,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,4,3,0],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,4,0],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,3,0],[0,3,1,1]],[[1,1,1,0],[2,2,4,2],[1,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,2,3,3],[1,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[1,4,3,0],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,4,0],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,3,0],[1,0,3,1]],[[1,1,1,0],[2,2,3,2],[1,3,3,0],[1,0,2,2]],[[1,1,1,0],[2,2,4,2],[1,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,2,3,3],[1,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[1,4,3,0],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,4,0],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[1,4,3,0],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[1,3,3,0],[2,2,1,0]],[[1,1,1,0],[2,2,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,1,0],[2,2,3,2],[3,0,2,2],[1,2,0,1]],[[1,2,1,0],[3,2,3,2],[2,0,2,2],[1,2,0,1]],[[1,3,1,0],[2,2,3,2],[2,0,2,2],[1,2,0,1]],[[2,2,1,0],[2,2,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,1,0],[2,2,4,2],[1,3,3,1],[0,0,2,1]],[[1,1,1,0],[2,2,3,3],[1,3,3,1],[0,0,2,1]],[[1,1,1,0],[2,2,3,2],[1,3,4,1],[0,0,2,1]],[[1,1,1,0],[2,2,4,2],[1,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,2,3,3],[1,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,2,3,2],[1,4,3,1],[0,1,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,4,1],[0,1,1,1]],[[1,1,1,0],[2,2,4,2],[1,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,2,3,3],[1,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,2,3,2],[1,4,3,1],[0,1,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,4,1],[0,1,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,3,1],[0,1,3,0]],[[1,1,1,0],[2,2,4,2],[1,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,2,3,3],[1,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,2,3,2],[1,4,3,1],[0,2,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,4,1],[0,2,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,3,1],[0,3,0,1]],[[1,1,1,0],[2,2,4,2],[1,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,2,3,3],[1,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[1,4,3,1],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[1,3,4,1],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,1,0],[2,2,3,2],[2,0,2,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,2],[3,0,2,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[2,0,2,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[2,0,2,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,1,0],[2,2,3,2],[2,0,2,2],[2,1,1,1]],[[1,1,1,0],[2,2,4,2],[1,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,2,3,3],[1,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,2,3,2],[1,4,3,1],[1,0,1,1]],[[1,1,1,0],[2,2,3,2],[1,3,4,1],[1,0,1,1]],[[1,1,1,0],[2,2,4,2],[1,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,2,3,3],[1,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[1,4,3,1],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,4,1],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[1,3,3,1],[1,0,3,0]],[[1,1,1,0],[2,2,4,2],[1,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,2,3,3],[1,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,2,3,2],[1,4,3,1],[1,1,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,4,1],[1,1,0,1]],[[1,1,1,0],[2,2,4,2],[1,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,2,3,3],[1,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[1,4,3,1],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,1,0],[2,2,3,2],[3,0,2,2],[1,1,1,1]],[[1,2,1,0],[3,2,3,2],[2,0,2,2],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[2,0,2,2],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,1,0],[2,2,3,2],[3,0,2,2],[0,2,2,0]],[[1,2,1,0],[3,2,3,2],[2,0,2,2],[0,2,2,0]],[[1,3,1,0],[2,2,3,2],[2,0,2,2],[0,2,2,0]],[[2,2,1,0],[2,2,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,1,0],[2,2,3,2],[3,0,2,2],[0,2,1,1]],[[1,2,1,0],[3,2,3,2],[2,0,2,2],[0,2,1,1]],[[1,3,1,0],[2,2,3,2],[2,0,2,2],[0,2,1,1]],[[2,2,1,0],[2,2,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,1,0],[2,2,3,2],[2,0,2,1],[1,2,3,0]],[[1,2,1,0],[2,2,3,2],[2,0,2,1],[1,3,2,0]],[[1,2,1,0],[2,2,3,2],[2,0,2,1],[2,2,2,0]],[[1,1,1,0],[2,2,4,2],[1,3,3,2],[0,1,0,1]],[[1,1,1,0],[2,2,3,3],[1,3,3,2],[0,1,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,1,0],[2,2,3,2],[3,0,2,1],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[2,0,2,1],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[2,0,2,1],[1,2,2,0]],[[2,2,1,0],[2,2,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,1,0],[2,2,3,2],[2,0,2,0],[1,2,2,2]],[[1,2,1,0],[2,2,3,2],[2,0,2,0],[1,2,3,1]],[[1,2,1,0],[2,2,3,2],[2,0,2,0],[1,3,2,1]],[[1,2,1,0],[2,2,3,2],[2,0,2,0],[2,2,2,1]],[[1,2,1,0],[2,2,3,2],[3,0,2,0],[1,2,2,1]],[[1,2,1,0],[3,2,3,2],[2,0,2,0],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[2,0,2,0],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,1,0],[2,2,3,2],[2,0,1,2],[1,2,3,0]],[[1,2,1,0],[2,2,3,2],[2,0,1,2],[1,3,2,0]],[[1,2,1,0],[2,2,3,2],[2,0,1,2],[2,2,2,0]],[[1,2,1,0],[2,2,3,2],[3,0,1,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[2,0,1,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,1,0],[2,2,4,2],[1,3,3,2],[1,0,0,1]],[[1,1,1,0],[2,2,3,3],[1,3,3,2],[1,0,0,1]],[[1,1,1,0],[2,2,3,2],[1,3,3,3],[1,0,0,1]],[[2,2,1,0],[2,2,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,1,0],[2,2,3,2],[2,0,1,2],[1,3,1,1]],[[1,2,1,0],[2,2,3,2],[2,0,1,2],[2,2,1,1]],[[1,2,1,0],[2,2,3,2],[3,0,1,2],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[2,0,1,2],[1,2,1,1]],[[1,3,1,0],[2,2,3,2],[2,0,1,2],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,1,0],[2,2,3,2],[2,0,1,2],[2,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,0,1,2],[1,1,2,1]],[[1,2,1,0],[3,2,3,2],[2,0,1,2],[1,1,2,1]],[[1,3,1,0],[2,2,3,2],[2,0,1,2],[1,1,2,1]],[[2,2,1,0],[2,2,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,1,0],[2,2,3,2],[3,0,1,2],[0,2,2,1]],[[1,2,1,0],[3,2,3,2],[2,0,1,2],[0,2,2,1]],[[1,3,1,0],[2,2,3,2],[2,0,1,2],[0,2,2,1]],[[2,2,1,0],[2,2,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,1,0],[2,2,3,2],[2,0,1,1],[1,2,2,2]],[[1,2,1,0],[2,2,3,2],[2,0,1,1],[1,2,3,1]],[[1,2,1,0],[2,2,3,2],[2,0,1,1],[1,3,2,1]],[[1,2,1,0],[2,2,3,2],[2,0,1,1],[2,2,2,1]],[[1,2,1,0],[2,2,3,2],[3,0,1,1],[1,2,2,1]],[[1,2,1,0],[3,2,3,2],[2,0,1,1],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[2,0,1,1],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,1,0],[3,2,3,2],[1,3,3,2],[0,0,0,1]],[[1,3,1,0],[2,2,3,2],[1,3,3,2],[0,0,0,1]],[[2,2,1,0],[2,2,3,2],[1,3,3,2],[0,0,0,1]],[[2,1,1,0],[2,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[3,2,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,4,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,3],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[3,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,0,1,3],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,0,1,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,0,1,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,2],[2,0,1,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,2],[2,0,1,2],[1,2,2,2]],[[1,1,1,0],[2,2,4,2],[2,0,2,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,3],[2,0,2,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[2,0,2,3],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[2,0,2,2],[1,2,1,2]],[[1,1,1,0],[2,2,4,2],[2,0,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,3],[2,0,2,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,0,2,3],[1,2,2,0]],[[2,1,1,0],[2,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,0],[3,2,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,4,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,3],[2,0,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[3,0,3,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,0,4,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,0,3,0],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,0,3,0],[1,3,2,1]],[[1,1,1,0],[2,2,3,2],[2,0,3,0],[1,2,3,1]],[[1,1,1,0],[2,2,3,2],[2,0,3,0],[1,2,2,2]],[[1,1,1,0],[2,2,4,2],[2,0,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,3],[2,0,3,1],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[2,0,4,1],[1,2,1,1]],[[2,1,1,0],[2,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,0],[3,2,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,0],[2,2,4,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,3],[2,0,3,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[3,0,3,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,0,4,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,0,3,1],[2,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,0,3,1],[1,3,2,0]],[[1,1,1,0],[2,2,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,1,0],[3,2,3,2],[1,3,3,1],[1,1,0,0]],[[1,3,1,0],[2,2,3,2],[1,3,3,1],[1,1,0,0]],[[2,2,1,0],[2,2,3,2],[1,3,3,1],[1,1,0,0]],[[2,1,1,0],[2,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[3,2,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,4,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,3],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[3,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,1,0,3],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,1,0,2],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,1,0,2],[1,3,2,1]],[[1,1,1,0],[2,2,3,2],[2,1,0,2],[1,2,3,1]],[[1,1,1,0],[2,2,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,0],[3,2,3,2],[1,3,3,1],[0,2,0,0]],[[1,3,1,0],[2,2,3,2],[1,3,3,1],[0,2,0,0]],[[2,2,1,0],[2,2,3,2],[1,3,3,1],[0,2,0,0]],[[2,1,1,0],[2,2,3,2],[2,2,0,1],[1,2,2,1]],[[1,1,1,0],[3,2,3,2],[2,2,0,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[3,2,0,1],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,2,0,1],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,2,0,1],[1,3,2,1]],[[1,1,1,0],[2,2,3,2],[2,2,0,1],[1,2,3,1]],[[1,1,1,0],[2,2,3,2],[2,2,0,1],[1,2,2,2]],[[2,1,1,0],[2,2,3,2],[2,2,0,2],[1,2,1,1]],[[1,1,1,0],[3,2,3,2],[2,2,0,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[3,2,0,2],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[2,2,0,2],[2,2,1,1]],[[1,1,1,0],[2,2,3,2],[2,2,0,2],[1,3,1,1]],[[2,1,1,0],[2,2,3,2],[2,2,0,2],[1,2,2,0]],[[1,1,1,0],[3,2,3,2],[2,2,0,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[3,2,0,2],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,2,0,2],[2,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,2,0,2],[1,3,2,0]],[[1,1,1,0],[2,2,3,2],[2,2,0,2],[1,2,3,0]],[[2,1,1,0],[2,2,3,2],[2,2,1,0],[1,2,2,1]],[[1,1,1,0],[3,2,3,2],[2,2,1,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[3,2,1,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,2,1,0],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,2,1,0],[1,3,2,1]],[[1,1,1,0],[2,2,3,2],[2,2,1,0],[1,2,3,1]],[[1,1,1,0],[2,2,3,2],[2,2,1,0],[1,2,2,2]],[[2,1,1,0],[2,2,3,2],[2,2,1,1],[1,2,2,0]],[[1,1,1,0],[3,2,3,2],[2,2,1,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[3,2,1,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,2,1,1],[2,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,2,1,1],[1,3,2,0]],[[1,1,1,0],[2,2,3,2],[2,2,1,1],[1,2,3,0]],[[2,1,1,0],[2,2,3,2],[2,2,1,2],[1,2,0,1]],[[1,1,1,0],[3,2,3,2],[2,2,1,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[3,2,1,2],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[2,2,1,2],[2,2,0,1]],[[1,1,1,0],[2,2,3,2],[2,2,1,2],[1,3,0,1]],[[2,1,1,0],[2,2,3,2],[2,2,1,2],[1,2,1,0]],[[1,1,1,0],[3,2,3,2],[2,2,1,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[3,2,1,2],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,2,1,2],[2,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,1,0],[3,2,3,2],[1,3,3,1],[0,0,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,3,1],[0,0,2,0]],[[2,2,1,0],[2,2,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,3,1],[0,0,1,1]],[[1,3,1,0],[2,2,3,2],[1,3,3,1],[0,0,1,1]],[[2,2,1,0],[2,2,3,2],[1,3,3,1],[0,0,1,1]],[[2,1,1,0],[2,2,3,2],[2,2,2,0],[1,2,1,1]],[[1,1,1,0],[3,2,3,2],[2,2,2,0],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[3,2,2,0],[1,2,1,1]],[[1,1,1,0],[2,2,3,2],[2,2,2,0],[2,2,1,1]],[[1,1,1,0],[2,2,3,2],[2,2,2,0],[1,3,1,1]],[[2,1,1,0],[2,2,3,2],[2,2,2,1],[1,2,0,1]],[[1,1,1,0],[3,2,3,2],[2,2,2,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[3,2,2,1],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[2,2,2,1],[2,2,0,1]],[[1,1,1,0],[2,2,3,2],[2,2,2,1],[1,3,0,1]],[[2,1,1,0],[2,2,3,2],[2,2,2,1],[1,2,1,0]],[[1,1,1,0],[3,2,3,2],[2,2,2,1],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[3,2,2,1],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,2,2,1],[2,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,1,0],[3,2,3,2],[1,3,3,0],[1,2,0,0]],[[1,3,1,0],[2,2,3,2],[1,3,3,0],[1,2,0,0]],[[2,2,1,0],[2,2,3,2],[1,3,3,0],[1,2,0,0]],[[1,2,1,0],[3,2,3,2],[1,3,3,0],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[1,3,3,0],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[1,3,3,0],[1,0,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,3,0],[1,0,2,0]],[[2,2,1,0],[2,2,3,2],[1,3,3,0],[1,0,2,0]],[[2,1,1,0],[2,2,3,2],[2,2,3,0],[1,2,1,0]],[[1,1,1,0],[3,2,3,2],[2,2,3,0],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[3,2,3,0],[1,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,2,3,0],[2,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,1,0],[3,2,3,2],[1,3,3,0],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[1,3,3,0],[0,2,1,0]],[[2,2,1,0],[2,2,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,1,0],[3,2,3,2],[1,3,3,0],[0,1,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,3,0],[0,1,2,0]],[[2,2,1,0],[2,2,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,3,0],[0,0,2,1]],[[1,3,1,0],[2,2,3,2],[1,3,3,0],[0,0,2,1]],[[2,2,1,0],[2,2,3,2],[1,3,3,0],[0,0,2,1]],[[1,2,1,0],[3,2,3,2],[1,3,2,2],[0,0,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,2,2],[0,0,2,0]],[[2,2,1,0],[2,2,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,2,2],[0,0,1,1]],[[1,3,1,0],[2,2,3,2],[1,3,2,2],[0,0,1,1]],[[2,2,1,0],[2,2,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,1,0],[3,2,3,2],[1,3,2,1],[1,2,0,0]],[[2,1,1,0],[2,2,3,2],[2,3,0,0],[1,2,2,1]],[[1,1,1,0],[3,2,3,2],[2,3,0,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[3,3,0,0],[1,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,3,0,0],[2,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,3,0,0],[1,3,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,1,0],[3,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[3,3,0,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,4,0,1],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,3,0,1],[0,3,2,1]],[[1,1,1,0],[2,2,3,2],[2,3,0,1],[0,2,3,1]],[[1,1,1,0],[2,2,3,2],[2,3,0,1],[0,2,2,2]],[[2,1,1,0],[2,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,1,1,0],[3,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,2],[3,3,0,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,2],[2,4,0,1],[1,1,2,1]],[[1,1,1,0],[2,2,3,2],[2,3,0,1],[2,1,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,0,1],[1,2,2,0]],[[1,1,1,0],[3,2,3,2],[2,3,0,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[3,3,0,1],[1,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,3,0,1],[2,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,3,0,1],[1,3,2,0]],[[2,1,1,0],[2,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,1,0],[3,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,1,0],[2,2,3,2],[3,3,0,2],[0,1,2,1]],[[1,1,1,0],[2,2,3,2],[2,4,0,2],[0,1,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,1,1,0],[3,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[3,3,0,2],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[2,4,0,2],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[2,3,0,2],[0,3,1,1]],[[2,1,1,0],[2,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,1,1,0],[3,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,2],[3,3,0,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,4,0,2],[0,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,3,0,2],[0,3,2,0]],[[1,1,1,0],[2,2,3,2],[2,3,0,2],[0,2,3,0]],[[2,1,1,0],[2,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,1,0],[3,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[3,3,0,2],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[2,4,0,2],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[2,3,0,2],[2,0,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,1,1,0],[3,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[3,3,0,2],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[2,4,0,2],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[2,3,0,2],[2,1,1,1]],[[2,1,1,0],[2,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,1,1,0],[3,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,2],[3,3,0,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,2],[2,4,0,2],[1,1,2,0]],[[1,1,1,0],[2,2,3,2],[2,3,0,2],[2,1,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,2,1],[1,2,0,0]],[[2,2,1,0],[2,2,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,1,0],[3,2,3,2],[1,3,2,1],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[1,3,2,1],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[1,3,2,1],[1,1,1,0]],[[2,1,1,0],[2,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,1,0],[3,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[3,3,1,0],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,4,1,0],[0,2,2,1]],[[1,1,1,0],[2,2,3,2],[2,3,1,0],[0,3,2,1]],[[1,1,1,0],[2,2,3,2],[2,3,1,0],[0,2,3,1]],[[1,1,1,0],[2,2,3,2],[2,3,1,0],[0,2,2,2]],[[2,1,1,0],[2,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,1,1,0],[3,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,1,1,0],[2,2,3,2],[3,3,1,0],[1,1,2,1]],[[1,1,1,0],[2,2,3,2],[2,4,1,0],[1,1,2,1]],[[1,1,1,0],[2,2,3,2],[2,3,1,0],[2,1,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,1,0],[3,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,1,0],[2,2,3,2],[3,3,1,1],[0,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,4,1,1],[0,2,2,0]],[[1,1,1,0],[2,2,3,2],[2,3,1,1],[0,3,2,0]],[[1,1,1,0],[2,2,3,2],[2,3,1,1],[0,2,3,0]],[[2,1,1,0],[2,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,1,0],[3,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,1,0],[2,2,3,2],[3,3,1,1],[1,1,2,0]],[[1,1,1,0],[2,2,3,2],[2,4,1,1],[1,1,2,0]],[[1,1,1,0],[2,2,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,2,1],[1,1,0,1]],[[1,3,1,0],[2,2,3,2],[1,3,2,1],[1,1,0,1]],[[2,2,1,0],[2,2,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,1,0],[3,2,3,2],[1,3,2,1],[1,0,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,2,1],[1,0,2,0]],[[2,1,1,0],[2,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,1,0],[3,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,2],[3,3,1,2],[0,1,1,1]],[[1,1,1,0],[2,2,3,2],[2,4,1,2],[0,1,1,1]],[[2,1,1,0],[2,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,1,1,0],[3,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,2],[3,3,1,2],[0,1,2,0]],[[1,1,1,0],[2,2,3,2],[2,4,1,2],[0,1,2,0]],[[2,1,1,0],[2,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,1,0],[3,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,2],[3,3,1,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,2],[2,4,1,2],[0,2,0,1]],[[1,1,1,0],[2,2,3,2],[2,3,1,2],[0,3,0,1]],[[2,1,1,0],[2,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,1,1,0],[3,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[3,3,1,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,4,1,2],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,3,1,2],[0,3,1,0]],[[2,2,1,0],[2,2,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,2,1],[1,0,1,1]],[[1,3,1,0],[2,2,3,2],[1,3,2,1],[1,0,1,1]],[[2,2,1,0],[2,2,3,2],[1,3,2,1],[1,0,1,1]],[[2,1,1,0],[2,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,1,0],[3,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,2],[3,3,1,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,2],[2,4,1,2],[1,0,1,1]],[[1,1,1,0],[2,2,3,2],[2,3,1,2],[2,0,1,1]],[[2,1,1,0],[2,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,1,1,0],[3,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[3,3,1,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[2,4,1,2],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[2,3,1,2],[2,0,2,0]],[[2,1,1,0],[2,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,1,1,0],[3,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,2],[3,3,1,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,2],[2,4,1,2],[1,1,0,1]],[[1,1,1,0],[2,2,3,2],[2,3,1,2],[2,1,0,1]],[[2,1,1,0],[2,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,1,1,0],[3,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[3,3,1,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[2,4,1,2],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,1,0],[3,2,3,2],[1,3,2,1],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[1,3,2,1],[0,2,1,0]],[[2,2,1,0],[2,2,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,1,0],[3,2,3,2],[1,3,2,1],[0,2,0,1]],[[1,3,1,0],[2,2,3,2],[1,3,2,1],[0,2,0,1]],[[2,2,1,0],[2,2,3,2],[1,3,2,1],[0,2,0,1]],[[2,1,1,0],[2,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,1,0],[3,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,1,0],[2,2,3,2],[3,3,1,2],[1,2,0,0]],[[1,1,1,0],[2,2,3,2],[2,4,1,2],[1,2,0,0]],[[1,1,1,0],[2,2,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,1,0],[3,2,3,2],[1,3,2,1],[0,1,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,2,1],[0,1,2,0]],[[2,2,1,0],[2,2,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,2,1],[0,1,1,1]],[[1,3,1,0],[2,2,3,2],[1,3,2,1],[0,1,1,1]],[[2,2,1,0],[2,2,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,1,0],[3,2,3,2],[1,3,2,0],[1,2,0,1]],[[1,3,1,0],[2,2,3,2],[1,3,2,0],[1,2,0,1]],[[2,2,1,0],[2,2,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,1,0],[3,2,3,2],[1,3,2,0],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[1,3,2,0],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,1,0],[3,2,3,2],[1,3,2,0],[1,0,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,1,0],[3,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,1,0],[2,2,3,2],[3,3,2,0],[0,1,2,1]],[[1,1,1,0],[2,2,3,2],[2,4,2,0],[0,1,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,1,1,0],[3,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[3,3,2,0],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[2,4,2,0],[0,2,1,1]],[[1,1,1,0],[2,2,3,2],[2,3,2,0],[0,3,1,1]],[[2,1,1,0],[2,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,1,1,0],[3,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[3,3,2,0],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[2,4,2,0],[1,0,2,1]],[[1,1,1,0],[2,2,3,2],[2,3,2,0],[2,0,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,1,0],[3,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[3,3,2,0],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[2,4,2,0],[1,1,1,1]],[[1,1,1,0],[2,2,3,2],[2,3,2,0],[2,1,1,1]],[[2,1,1,0],[2,2,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,1,0],[3,2,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[3,3,2,0],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[2,4,2,0],[1,2,0,1]],[[1,1,1,0],[2,2,3,2],[2,3,2,0],[2,2,0,1]],[[1,3,1,0],[2,2,3,2],[1,3,2,0],[1,0,2,1]],[[2,2,1,0],[2,2,3,2],[1,3,2,0],[1,0,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,1,0],[3,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,1,0],[2,2,3,2],[3,3,2,1],[0,1,1,1]],[[1,1,1,0],[2,2,3,2],[2,4,2,1],[0,1,1,1]],[[2,1,1,0],[2,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,1,1,0],[3,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,1,1,0],[2,2,3,2],[3,3,2,1],[0,1,2,0]],[[1,1,1,0],[2,2,3,2],[2,4,2,1],[0,1,2,0]],[[2,1,1,0],[2,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,1,0],[3,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,1,0],[2,2,3,2],[3,3,2,1],[0,2,0,1]],[[1,1,1,0],[2,2,3,2],[2,4,2,1],[0,2,0,1]],[[1,1,1,0],[2,2,3,2],[2,3,2,1],[0,3,0,1]],[[2,1,1,0],[2,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,1,0],[3,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[3,3,2,1],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,4,2,1],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,1,0],[3,2,3,2],[1,3,2,0],[0,2,1,1]],[[1,3,1,0],[2,2,3,2],[1,3,2,0],[0,2,1,1]],[[2,2,1,0],[2,2,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,1,0],[3,2,3,2],[1,3,2,0],[0,1,2,1]],[[1,3,1,0],[2,2,3,2],[1,3,2,0],[0,1,2,1]],[[2,2,1,0],[2,2,3,2],[1,3,2,0],[0,1,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,1,0],[3,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,1,0],[2,2,3,2],[3,3,2,1],[1,0,1,1]],[[1,1,1,0],[2,2,3,2],[2,4,2,1],[1,0,1,1]],[[1,1,1,0],[2,2,3,2],[2,3,2,1],[2,0,1,1]],[[2,1,1,0],[2,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,1,0],[3,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[3,3,2,1],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[2,4,2,1],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[2,3,2,1],[2,0,2,0]],[[2,1,1,0],[2,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,1,0],[3,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,1,0],[2,2,3,2],[3,3,2,1],[1,1,0,1]],[[1,1,1,0],[2,2,3,2],[2,4,2,1],[1,1,0,1]],[[1,1,1,0],[2,2,3,2],[2,3,2,1],[2,1,0,1]],[[2,1,1,0],[2,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,1,1,0],[3,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[3,3,2,1],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[2,4,2,1],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[2,3,2,1],[2,1,1,0]],[[2,1,1,0],[2,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,1,0],[3,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,1,0],[2,2,3,2],[3,3,2,1],[1,2,0,0]],[[1,1,1,0],[2,2,3,2],[2,4,2,1],[1,2,0,0]],[[1,1,1,0],[2,2,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,1,0],[3,2,3,2],[1,3,1,2],[1,2,0,0]],[[1,3,1,0],[2,2,3,2],[1,3,1,2],[1,2,0,0]],[[2,2,1,0],[2,2,3,2],[1,3,1,2],[1,2,0,0]],[[1,2,1,0],[3,2,3,2],[1,3,1,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[1,3,1,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[1,3,1,2],[1,1,0,1]],[[1,3,1,0],[2,2,3,2],[1,3,1,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,2],[1,3,1,2],[1,1,0,1]],[[1,2,1,0],[3,2,3,2],[1,3,1,2],[1,0,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,1,2],[1,0,2,0]],[[2,2,1,0],[2,2,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,1,2],[1,0,1,1]],[[1,3,1,0],[2,2,3,2],[1,3,1,2],[1,0,1,1]],[[2,2,1,0],[2,2,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,1,0],[3,2,3,2],[1,3,1,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[1,3,1,2],[0,2,1,0]],[[2,2,1,0],[2,2,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,1,0],[3,2,3,2],[1,3,1,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,2],[1,3,1,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,2],[1,3,1,2],[0,2,0,1]],[[1,2,1,0],[3,2,3,2],[1,3,1,2],[0,1,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,1,2],[0,1,2,0]],[[2,2,1,0],[2,2,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,1,2],[0,1,1,1]],[[1,3,1,0],[2,2,3,2],[1,3,1,2],[0,1,1,1]],[[2,2,1,0],[2,2,3,2],[1,3,1,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,2],[1,3,1,1],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,1,1],[1,1,2,0]],[[2,2,1,0],[2,2,3,2],[1,3,1,1],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,1,1],[0,2,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,1,1],[0,2,2,0]],[[2,2,1,0],[2,2,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,1,0],[1,1,2,1]],[[1,3,1,0],[2,2,3,2],[1,3,1,0],[1,1,2,1]],[[2,2,1,0],[2,2,3,2],[1,3,1,0],[1,1,2,1]],[[1,2,1,0],[3,2,3,2],[1,3,1,0],[0,2,2,1]],[[1,3,1,0],[2,2,3,2],[1,3,1,0],[0,2,2,1]],[[2,2,1,0],[2,2,3,2],[1,3,1,0],[0,2,2,1]],[[1,2,1,0],[3,2,3,2],[1,3,0,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,0,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,0,2],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[1,3,0,2],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,1,0],[3,2,3,2],[1,3,0,2],[1,0,2,1]],[[1,3,1,0],[2,2,3,2],[1,3,0,2],[1,0,2,1]],[[2,2,1,0],[2,2,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,1,0],[3,2,3,2],[1,3,0,2],[0,2,2,0]],[[1,3,1,0],[2,2,3,2],[1,3,0,2],[0,2,2,0]],[[2,2,1,0],[2,2,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,1,0],[3,2,3,2],[1,3,0,2],[0,2,1,1]],[[1,3,1,0],[2,2,3,2],[1,3,0,2],[0,2,1,1]],[[2,2,1,0],[2,2,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,1,0],[3,2,3,2],[1,3,0,2],[0,1,2,1]],[[1,3,1,0],[2,2,3,2],[1,3,0,2],[0,1,2,1]],[[2,2,1,0],[2,2,3,2],[1,3,0,2],[0,1,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,1,0],[3,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,1,0],[2,2,3,2],[3,3,3,0],[0,1,2,0]],[[1,1,1,0],[2,2,3,2],[2,4,3,0],[0,1,2,0]],[[2,1,1,0],[2,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,1,0],[3,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[3,3,3,0],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,4,3,0],[0,2,1,0]],[[1,1,1,0],[2,2,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,1,0],[3,2,3,2],[1,3,0,1],[1,1,2,1]],[[1,3,1,0],[2,2,3,2],[1,3,0,1],[1,1,2,1]],[[2,2,1,0],[2,2,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,1,0],[3,2,3,2],[1,3,0,1],[0,2,2,1]],[[1,3,1,0],[2,2,3,2],[1,3,0,1],[0,2,2,1]],[[2,2,1,0],[2,2,3,2],[1,3,0,1],[0,2,2,1]],[[2,1,1,0],[2,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,1,0],[3,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[3,3,3,0],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[2,4,3,0],[1,0,2,0]],[[1,1,1,0],[2,2,3,2],[2,3,3,0],[2,0,2,0]],[[2,1,1,0],[2,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,1,0],[3,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[3,3,3,0],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[2,4,3,0],[1,1,1,0]],[[1,1,1,0],[2,2,3,2],[2,3,3,0],[2,1,1,0]],[[2,1,1,0],[2,2,3,2],[2,3,3,0],[1,2,0,0]],[[1,1,1,0],[3,2,3,2],[2,3,3,0],[1,2,0,0]],[[1,1,1,0],[2,2,3,2],[3,3,3,0],[1,2,0,0]],[[1,1,1,0],[2,2,3,2],[2,4,3,0],[1,2,0,0]],[[1,1,1,0],[2,2,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,1,0],[3,2,3,2],[1,2,3,2],[1,0,0,1]],[[1,3,1,0],[2,2,3,2],[1,2,3,2],[1,0,0,1]],[[2,2,1,0],[2,2,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,1,0],[3,2,3,2],[1,2,3,2],[0,1,0,1]],[[1,3,1,0],[2,2,3,2],[1,2,3,2],[0,1,0,1]],[[2,2,1,0],[2,2,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,1,0],[3,2,3,2],[1,2,3,1],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[1,2,3,1],[1,1,1,0]],[[2,1,1,0],[2,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,1,0],[3,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,1,0],[2,2,3,2],[3,3,3,1],[0,2,0,0]],[[1,1,1,0],[2,2,3,2],[2,4,3,1],[0,2,0,0]],[[2,2,1,0],[2,2,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[1,2,3,1],[1,1,0,1]],[[1,3,1,0],[2,2,3,2],[1,2,3,1],[1,1,0,1]],[[2,2,1,0],[2,2,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,1,0],[3,2,3,2],[1,2,3,1],[1,0,2,0]],[[1,3,1,0],[2,2,3,2],[1,2,3,1],[1,0,2,0]],[[2,2,1,0],[2,2,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,1,0],[3,2,3,2],[1,2,3,1],[1,0,1,1]],[[1,3,1,0],[2,2,3,2],[1,2,3,1],[1,0,1,1]],[[2,2,1,0],[2,2,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,1,0],[3,2,3,2],[1,2,3,1],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[1,2,3,1],[0,2,1,0]],[[2,2,1,0],[2,2,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,1,0],[3,2,3,2],[1,2,3,1],[0,2,0,1]],[[1,3,1,0],[2,2,3,2],[1,2,3,1],[0,2,0,1]],[[2,2,1,0],[2,2,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,1,0],[3,2,3,2],[1,2,3,1],[0,1,2,0]],[[2,1,1,0],[2,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,1,0],[3,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,1,0],[2,2,3,2],[3,3,3,1],[1,1,0,0]],[[1,1,1,0],[2,2,3,2],[2,4,3,1],[1,1,0,0]],[[1,1,1,0],[2,2,3,2],[2,3,3,1],[2,1,0,0]],[[1,3,1,0],[2,2,3,2],[1,2,3,1],[0,1,2,0]],[[2,2,1,0],[2,2,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,1,0],[3,2,3,2],[1,2,3,1],[0,1,1,1]],[[1,3,1,0],[2,2,3,2],[1,2,3,1],[0,1,1,1]],[[2,2,1,0],[2,2,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,1,0],[3,2,3,2],[1,2,3,1],[0,0,2,1]],[[1,3,1,0],[2,2,3,2],[1,2,3,1],[0,0,2,1]],[[2,2,1,0],[2,2,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,1,0],[3,2,3,2],[1,2,3,0],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[1,2,3,0],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,1,0],[3,2,3,2],[1,2,3,0],[1,0,2,1]],[[1,3,1,0],[2,2,3,2],[1,2,3,0],[1,0,2,1]],[[2,2,1,0],[2,2,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,1,0],[3,2,3,2],[1,2,3,0],[0,2,1,1]],[[1,3,1,0],[2,2,3,2],[1,2,3,0],[0,2,1,1]],[[2,2,1,0],[2,2,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,1,0],[3,2,3,2],[1,2,3,0],[0,1,2,1]],[[1,3,1,0],[2,2,3,2],[1,2,3,0],[0,1,2,1]],[[2,2,1,0],[2,2,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,1,0],[3,2,3,2],[1,2,2,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,2],[1,2,2,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[1,2,2,2],[1,1,0,1]],[[1,3,1,0],[2,2,3,2],[1,2,2,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,1,0],[3,2,3,2],[1,2,2,2],[1,0,2,0]],[[1,3,1,0],[2,2,3,2],[1,2,2,2],[1,0,2,0]],[[2,2,1,0],[2,2,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,1,0],[3,2,3,2],[1,2,2,2],[1,0,1,1]],[[1,3,1,0],[2,2,3,2],[1,2,2,2],[1,0,1,1]],[[2,2,1,0],[2,2,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,1,0],[3,2,3,2],[1,2,2,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,2],[1,2,2,2],[0,2,1,0]],[[2,2,1,0],[2,2,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,1,0],[3,2,3,2],[1,2,2,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,2],[1,2,2,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,1,0],[3,2,3,2],[1,2,2,2],[0,1,2,0]],[[1,3,1,0],[2,2,3,2],[1,2,2,2],[0,1,2,0]],[[2,2,1,0],[2,2,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,1,0],[3,2,3,2],[1,2,2,2],[0,1,1,1]],[[1,3,1,0],[2,2,3,2],[1,2,2,2],[0,1,1,1]],[[2,2,1,0],[2,2,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,2],[1,2,2,2],[0,0,2,1]],[[1,3,1,0],[2,2,3,2],[1,2,2,2],[0,0,2,1]],[[2,2,1,0],[2,2,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,1,0],[3,2,3,2],[1,2,1,2],[1,0,2,1]],[[1,3,1,0],[2,2,3,2],[1,2,1,2],[1,0,2,1]],[[2,2,1,0],[2,2,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,1,0],[3,2,3,2],[1,2,1,2],[0,1,2,1]],[[1,3,1,0],[2,2,3,2],[1,2,1,2],[0,1,2,1]],[[2,2,1,0],[2,2,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,1,0],[3,2,3,2],[1,2,0,2],[0,2,2,1]],[[1,3,1,0],[2,2,3,2],[1,2,0,2],[0,2,2,1]],[[2,2,1,0],[2,2,3,2],[1,2,0,2],[0,2,2,1]],[[1,2,1,0],[3,2,3,2],[1,1,3,1],[0,2,2,0]],[[1,3,1,0],[2,2,3,2],[1,1,3,1],[0,2,2,0]],[[2,2,1,0],[2,2,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,1,0],[3,2,3,2],[1,1,3,1],[0,2,1,1]],[[1,3,1,0],[2,2,3,2],[1,1,3,1],[0,2,1,1]],[[2,2,1,0],[2,2,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,1,0],[3,2,3,2],[1,1,3,0],[0,2,2,1]],[[1,3,1,0],[2,2,3,2],[1,1,3,0],[0,2,2,1]],[[2,2,1,0],[2,2,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,1,0],[3,2,3,2],[1,1,2,2],[0,2,2,0]],[[1,3,1,0],[2,2,3,2],[1,1,2,2],[0,2,2,0]],[[2,2,1,0],[2,2,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,1,0],[3,2,3,2],[1,1,2,2],[0,2,1,1]],[[1,3,1,0],[2,2,3,2],[1,1,2,2],[0,2,1,1]],[[2,2,1,0],[2,2,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,1,0],[3,2,3,2],[1,1,1,2],[0,2,2,1]],[[1,3,1,0],[2,2,3,2],[1,1,1,2],[0,2,2,1]],[[2,2,1,0],[2,2,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,1,0],[3,2,3,2],[1,1,0,2],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[1,1,0,2],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[1,1,0,2],[1,2,2,1]],[[1,2,1,0],[3,2,3,2],[1,0,3,1],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[1,0,3,1],[1,2,2,0]],[[2,2,1,0],[2,2,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[1,0,3,1],[1,2,1,1]],[[1,3,1,0],[2,2,3,2],[1,0,3,1],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[1,0,3,0],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[1,0,3,0],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,1,0],[3,2,3,2],[1,0,2,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[1,0,2,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[1,0,2,2],[1,2,1,1]],[[1,3,1,0],[2,2,3,2],[1,0,2,2],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[1,0,1,2],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[1,0,1,2],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[1,0,1,2],[1,2,2,1]],[[1,2,1,0],[3,2,3,2],[0,3,3,1],[1,2,0,0]],[[1,3,1,0],[2,2,3,2],[0,3,3,1],[1,2,0,0]],[[2,2,1,0],[2,2,3,2],[0,3,3,1],[1,2,0,0]],[[1,2,1,0],[3,2,3,2],[0,3,3,0],[1,2,1,0]],[[1,3,1,0],[2,2,3,2],[0,3,3,0],[1,2,1,0]],[[2,2,1,0],[2,2,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,1,0],[3,2,3,2],[0,3,3,0],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[0,3,3,0],[1,1,2,0]],[[2,2,1,0],[2,2,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,1,0],[2,3,0,0],[1,4,3,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,0],[1,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,3,0,0],[1,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,3,0,0],[1,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,0,0],[1,3,3,2],[1,2,2,2]],[[2,1,1,0],[2,3,0,0],[2,2,3,2],[1,2,2,1]],[[1,1,1,0],[3,3,0,0],[2,2,3,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,0],[3,2,3,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,0],[2,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,3,0,0],[2,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,3,0,0],[2,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,0,0],[2,2,3,2],[1,2,2,2]],[[1,1,1,0],[3,3,0,0],[2,3,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,0],[3,3,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,0],[2,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,0,0],[2,3,2,2],[1,3,2,1]],[[1,1,1,0],[3,3,0,0],[2,3,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,0],[3,3,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,0],[2,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,0,0],[2,3,3,1],[1,3,2,1]],[[2,1,1,0],[2,3,0,0],[2,3,3,2],[0,2,2,1]],[[1,1,1,0],[3,3,0,0],[2,3,3,2],[0,2,2,1]],[[1,1,1,0],[2,3,0,0],[3,3,3,2],[0,2,2,1]],[[1,1,1,0],[2,3,0,0],[2,4,3,2],[0,2,2,1]],[[1,1,1,0],[2,3,0,0],[2,3,3,2],[0,3,2,1]],[[1,1,1,0],[2,3,0,0],[2,3,3,2],[0,2,3,1]],[[1,1,1,0],[2,3,0,0],[2,3,3,2],[0,2,2,2]],[[2,1,1,0],[2,3,0,0],[2,3,3,2],[1,1,2,1]],[[1,1,1,0],[3,3,0,0],[2,3,3,2],[1,1,2,1]],[[1,1,1,0],[2,3,0,0],[3,3,3,2],[1,1,2,1]],[[1,1,1,0],[2,3,0,0],[2,4,3,2],[1,1,2,1]],[[1,1,1,0],[2,3,0,0],[2,3,3,2],[2,1,2,1]],[[1,1,1,0],[2,3,0,1],[0,4,3,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,1],[0,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,3,0,1],[0,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,3,0,1],[0,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,0,1],[0,3,3,2],[1,2,2,2]],[[1,1,1,0],[2,3,0,1],[1,4,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,1],[1,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,0,1],[1,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,0,1],[1,3,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,0,1],[1,3,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,0,1],[1,4,3,2],[0,2,2,1]],[[1,1,1,0],[2,3,0,1],[1,3,3,2],[0,3,2,1]],[[1,1,1,0],[2,3,0,1],[1,3,3,2],[0,2,3,1]],[[1,1,1,0],[2,3,0,1],[1,3,3,2],[0,2,2,2]],[[1,1,1,0],[2,3,0,1],[1,4,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,0,1],[1,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,0,1],[1,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,0,1],[1,3,3,2],[1,2,3,0]],[[2,1,1,0],[2,3,0,1],[2,2,3,1],[1,2,2,1]],[[1,1,1,0],[3,3,0,1],[2,2,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,1],[3,2,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,1],[2,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,0,1],[2,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,0,1],[2,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,0,1],[2,2,3,1],[1,2,2,2]],[[2,1,1,0],[2,3,0,1],[2,2,3,2],[1,2,2,0]],[[1,1,1,0],[3,3,0,1],[2,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,0,1],[3,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,0,1],[2,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,0,1],[2,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,0,1],[2,2,3,2],[1,2,3,0]],[[1,1,1,0],[3,3,0,1],[2,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,1],[3,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,1],[2,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,0,1],[2,3,2,1],[1,3,2,1]],[[1,1,1,0],[3,3,0,1],[2,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,0,1],[3,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,0,1],[2,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,0,1],[2,3,2,2],[1,3,2,0]],[[1,1,1,0],[3,3,0,1],[2,3,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,0,1],[3,3,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,0,1],[2,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,0,1],[2,3,3,0],[1,3,2,1]],[[2,1,1,0],[2,3,0,1],[2,3,3,1],[0,2,2,1]],[[1,1,1,0],[3,3,0,1],[2,3,3,1],[0,2,2,1]],[[1,1,1,0],[2,3,0,1],[3,3,3,1],[0,2,2,1]],[[1,1,1,0],[2,3,0,1],[2,4,3,1],[0,2,2,1]],[[1,1,1,0],[2,3,0,1],[2,3,3,1],[0,3,2,1]],[[1,1,1,0],[2,3,0,1],[2,3,3,1],[0,2,3,1]],[[1,1,1,0],[2,3,0,1],[2,3,3,1],[0,2,2,2]],[[2,1,1,0],[2,3,0,1],[2,3,3,1],[1,1,2,1]],[[1,1,1,0],[3,3,0,1],[2,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,0,1],[3,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,0,1],[2,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,0,1],[2,3,3,1],[2,1,2,1]],[[2,1,1,0],[2,3,0,1],[2,3,3,2],[0,2,2,0]],[[1,1,1,0],[3,3,0,1],[2,3,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,0,1],[3,3,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,0,1],[2,4,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,0,1],[2,3,3,2],[0,3,2,0]],[[1,1,1,0],[2,3,0,1],[2,3,3,2],[0,2,3,0]],[[2,1,1,0],[2,3,0,1],[2,3,3,2],[1,1,2,0]],[[1,1,1,0],[3,3,0,1],[2,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,0,1],[3,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,0,1],[2,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,0,1],[2,3,3,2],[2,1,2,0]],[[1,1,1,0],[2,3,0,2],[0,2,3,3],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[0,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,3,0,2],[0,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,3,0,2],[0,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,0,2],[0,2,3,2],[1,2,2,2]],[[1,1,1,0],[2,3,0,2],[0,4,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[0,3,2,3],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[0,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,0,2],[0,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,0,2],[0,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,0,2],[0,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,3,0,2],[0,4,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[0,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,0,2],[0,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,0,2],[0,3,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,0,2],[0,3,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,0,2],[0,3,3,3],[1,1,2,1]],[[1,1,1,0],[2,3,0,2],[0,3,3,2],[1,1,3,1]],[[1,1,1,0],[2,3,0,2],[0,3,3,2],[1,1,2,2]],[[1,1,1,0],[2,3,0,2],[0,4,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,0,2],[0,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,0,2],[0,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,0,2],[0,3,3,2],[1,2,3,0]],[[1,1,1,0],[2,3,0,2],[1,2,3,3],[0,2,2,1]],[[1,1,1,0],[2,3,0,2],[1,2,3,2],[0,3,2,1]],[[1,1,1,0],[2,3,0,2],[1,2,3,2],[0,2,3,1]],[[1,1,1,0],[2,3,0,2],[1,2,3,2],[0,2,2,2]],[[1,1,1,0],[2,3,0,2],[1,4,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,0,2],[1,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,3,0,2],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,3,0,2],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,3,0,2],[1,4,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,2,3],[0,2,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,2,2],[0,3,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,2,2],[0,2,3,1]],[[1,1,1,0],[2,3,0,2],[1,3,2,2],[0,2,2,2]],[[1,1,1,0],[2,3,0,2],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,0,2],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,0,2],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,0,2],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,3,0,2],[1,4,3,1],[0,2,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,1],[0,3,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,1],[0,2,3,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,1],[0,2,2,2]],[[1,1,1,0],[2,3,0,2],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,3],[0,1,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,2],[0,1,3,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,2],[0,1,2,2]],[[1,1,1,0],[2,3,0,2],[1,4,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,0,2],[1,3,3,2],[0,3,2,0]],[[1,1,1,0],[2,3,0,2],[1,3,3,2],[0,2,3,0]],[[1,1,1,0],[2,3,0,2],[1,3,3,3],[1,0,2,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,2],[1,0,3,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,2],[1,0,2,2]],[[1,1,1,0],[2,3,0,2],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,0,2],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,3,0,2],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,0,2],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[3,2,3,2],[0,3,2,1],[1,2,1,0]],[[1,3,1,0],[2,2,3,2],[0,3,2,1],[1,2,1,0]],[[2,2,1,0],[2,2,3,2],[0,3,2,1],[1,2,1,0]],[[2,1,1,0],[2,3,0,2],[2,0,3,2],[1,2,2,1]],[[1,1,1,0],[3,3,0,2],[2,0,3,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[3,0,3,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,0,3,3],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,0,3,2],[2,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,0,3,2],[1,3,2,1]],[[1,1,1,0],[2,3,0,2],[2,0,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,0,2],[2,0,3,2],[1,2,2,2]],[[2,1,1,0],[2,3,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[3,3,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[3,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,2,1,3],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,2,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,2,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,0,2],[2,2,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,0,2],[2,2,1,2],[1,2,2,2]],[[2,1,1,0],[2,3,0,2],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[3,3,0,2],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,0,2],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[2,3,0,2],[2,2,2,1],[1,2,2,2]],[[2,1,1,0],[2,3,0,2],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,0,2],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,0,2],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,0,2],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,0,2],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,0,2],[2,2,2,2],[1,2,3,0]],[[2,1,1,0],[2,3,0,2],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,0,2],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,0,2],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,0,2],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,0,2],[2,2,3,1],[1,3,1,1]],[[2,1,1,0],[2,3,0,2],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[3,3,0,2],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,0,2],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,0,2],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,0,2],[2,2,3,2],[1,3,0,1]],[[2,1,1,0],[2,3,0,2],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[3,3,0,2],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,0,2],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,0,2],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[3,2,3,2],[0,3,2,1],[1,2,0,1]],[[1,3,1,0],[2,2,3,2],[0,3,2,1],[1,2,0,1]],[[2,2,1,0],[2,2,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,1,0],[3,2,3,2],[0,3,2,1],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[0,3,2,1],[1,1,2,0]],[[2,1,1,0],[2,3,0,2],[2,3,0,2],[1,2,2,1]],[[1,1,1,0],[3,3,0,2],[2,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[3,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,0,2],[1,3,2,1]],[[2,1,1,0],[2,3,0,2],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[3,3,0,2],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[3,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,1,1],[2,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,1,1],[1,3,2,1]],[[2,1,1,0],[2,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[3,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,0,2],[3,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,4,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,1,3],[0,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,1,2],[0,3,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,1,2],[0,2,3,1]],[[1,1,1,0],[2,3,0,2],[2,3,1,2],[0,2,2,2]],[[2,1,1,0],[2,3,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[3,3,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,0,2],[3,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,0,2],[2,4,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,1,2],[2,1,2,1]],[[2,1,1,0],[2,3,0,2],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[3,3,0,2],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,0,2],[3,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,0,2],[2,3,1,2],[2,2,2,0]],[[1,1,1,0],[2,3,0,2],[2,3,1,2],[1,3,2,0]],[[2,1,1,0],[2,3,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[3,3,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,0,2],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,3,0,2],[2,3,2,1],[0,2,2,2]],[[2,1,1,0],[2,3,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,3,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,0,2],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,0,2],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,2,1],[2,1,2,1]],[[2,1,1,0],[2,3,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[3,3,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,0,2],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,0,2],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,0,2],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,3,0,2],[2,3,2,2],[0,2,3,0]],[[2,1,1,0],[2,3,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,0,2],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,0,2],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,0,2],[2,3,2,2],[2,1,2,0]],[[2,2,1,0],[2,2,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[0,3,2,1],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[0,3,2,1],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[0,3,2,1],[1,1,1,1]],[[2,1,1,0],[2,3,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[3,3,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,0,2],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,0,2],[2,4,3,1],[0,1,2,1]],[[2,1,1,0],[2,3,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,0,2],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,0,2],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,0,2],[2,3,3,1],[0,3,1,1]],[[2,1,1,0],[2,3,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[3,3,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,0,2],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,0,2],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,0,2],[2,3,3,1],[2,0,2,1]],[[2,1,1,0],[2,3,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,0,2],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,0,2],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,0,2],[2,3,3,1],[2,1,1,1]],[[2,1,1,0],[2,3,0,2],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[3,3,0,2],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,0,2],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,0,2],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[3,2,3,2],[0,3,2,0],[1,2,1,1]],[[1,3,1,0],[2,2,3,2],[0,3,2,0],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[0,3,2,0],[1,1,2,1]],[[1,3,1,0],[2,2,3,2],[0,3,2,0],[1,1,2,1]],[[2,1,1,0],[2,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[3,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,0,2],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,0,2],[2,4,3,2],[0,1,1,1]],[[2,1,1,0],[2,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[3,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,0,2],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,0,2],[2,4,3,2],[0,1,2,0]],[[2,1,1,0],[2,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[3,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,0,2],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,0,2],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,0,2],[2,3,3,2],[0,3,0,1]],[[2,1,1,0],[2,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[3,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,0,2],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,0,2],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,0,2],[2,3,3,2],[0,3,1,0]],[[2,2,1,0],[2,2,3,2],[0,3,2,0],[1,1,2,1]],[[1,2,1,0],[3,2,3,2],[0,3,1,2],[1,2,1,0]],[[2,1,1,0],[2,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[3,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,0,2],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,0,2],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,0,2],[2,3,3,2],[2,0,1,1]],[[2,1,1,0],[2,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[3,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,0,2],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,0,2],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,0,2],[2,3,3,2],[2,0,2,0]],[[2,1,1,0],[2,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[3,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,0,2],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,0,2],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,0,2],[2,3,3,2],[2,1,0,1]],[[2,1,1,0],[2,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[3,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,0,2],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,0,2],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,0,2],[2,3,3,2],[2,1,1,0]],[[1,3,1,0],[2,2,3,2],[0,3,1,2],[1,2,1,0]],[[2,2,1,0],[2,2,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,1,0],[3,2,3,2],[0,3,1,2],[1,2,0,1]],[[1,3,1,0],[2,2,3,2],[0,3,1,2],[1,2,0,1]],[[2,2,1,0],[2,2,3,2],[0,3,1,2],[1,2,0,1]],[[2,1,1,0],[2,3,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,3,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,0,2],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,0,2],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[3,2,3,2],[0,3,1,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[0,3,1,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[0,3,1,2],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[0,3,1,2],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,1,0],[3,2,3,2],[0,3,1,1],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[0,3,1,1],[1,2,2,0]],[[2,2,1,0],[2,2,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[0,3,1,0],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[0,3,1,0],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,0],[0,4,3,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,0],[0,3,3,2],[2,2,2,1]],[[1,1,1,0],[2,3,1,0],[0,3,3,2],[1,3,2,1]],[[1,1,1,0],[2,3,1,0],[0,3,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,1,0],[0,3,3,2],[1,2,2,2]],[[1,1,1,0],[2,3,1,0],[1,4,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,0],[1,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,1,0],[1,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,1,0],[1,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,1,0],[1,3,2,2],[1,2,2,2]],[[1,1,1,0],[2,3,1,0],[1,4,3,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,0],[1,3,3,2],[0,3,2,1]],[[1,1,1,0],[2,3,1,0],[1,3,3,2],[0,2,3,1]],[[1,1,1,0],[2,3,1,0],[1,3,3,2],[0,2,2,2]],[[1,1,1,0],[2,3,1,0],[1,4,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,1,0],[1,3,3,2],[2,2,1,1]],[[1,1,1,0],[2,3,1,0],[1,3,3,2],[1,3,1,1]],[[2,1,1,0],[2,3,1,0],[2,2,2,2],[1,2,2,1]],[[1,1,1,0],[3,3,1,0],[2,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,0],[3,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,0],[2,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,1,0],[2,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,1,0],[2,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,1,0],[2,2,2,2],[1,2,2,2]],[[2,1,1,0],[2,3,1,0],[2,2,3,2],[1,2,1,1]],[[1,1,1,0],[3,3,1,0],[2,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,1,0],[3,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,1,0],[2,2,3,2],[2,2,1,1]],[[1,1,1,0],[2,3,1,0],[2,2,3,2],[1,3,1,1]],[[2,1,1,0],[2,3,1,0],[2,3,1,2],[1,2,2,1]],[[1,1,1,0],[3,3,1,0],[2,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,0],[3,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,0],[2,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,1,0],[2,3,1,2],[1,3,2,1]],[[2,1,1,0],[2,3,1,0],[2,3,2,2],[0,2,2,1]],[[1,1,1,0],[3,3,1,0],[2,3,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,0],[3,3,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,0],[2,4,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,0],[2,3,2,2],[0,3,2,1]],[[1,1,1,0],[2,3,1,0],[2,3,2,2],[0,2,3,1]],[[1,1,1,0],[2,3,1,0],[2,3,2,2],[0,2,2,2]],[[2,1,1,0],[2,3,1,0],[2,3,2,2],[1,1,2,1]],[[1,1,1,0],[3,3,1,0],[2,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,3,1,0],[3,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,3,1,0],[2,4,2,2],[1,1,2,1]],[[1,1,1,0],[2,3,1,0],[2,3,2,2],[2,1,2,1]],[[1,1,1,0],[3,3,1,0],[2,3,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,0],[3,3,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,0],[2,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,1,0],[2,3,3,0],[1,3,2,1]],[[2,1,1,0],[2,3,1,0],[2,3,3,2],[0,1,2,1]],[[1,1,1,0],[3,3,1,0],[2,3,3,2],[0,1,2,1]],[[1,1,1,0],[2,3,1,0],[3,3,3,2],[0,1,2,1]],[[1,1,1,0],[2,3,1,0],[2,4,3,2],[0,1,2,1]],[[2,1,1,0],[2,3,1,0],[2,3,3,2],[0,2,1,1]],[[1,1,1,0],[3,3,1,0],[2,3,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,1,0],[3,3,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,1,0],[2,4,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,1,0],[2,3,3,2],[0,3,1,1]],[[2,1,1,0],[2,3,1,0],[2,3,3,2],[1,0,2,1]],[[1,1,1,0],[3,3,1,0],[2,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,1,0],[3,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,1,0],[2,4,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,1,0],[2,3,3,2],[2,0,2,1]],[[2,1,1,0],[2,3,1,0],[2,3,3,2],[1,1,1,1]],[[1,1,1,0],[3,3,1,0],[2,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,1,0],[3,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,1,0],[2,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,1,0],[2,3,3,2],[2,1,1,1]],[[2,1,1,0],[2,3,1,0],[2,3,3,2],[1,2,0,1]],[[1,1,1,0],[3,3,1,0],[2,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,0],[3,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,0],[2,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,0],[2,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,1,1],[0,4,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[0,3,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,1,1],[0,3,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,1,1],[0,3,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,1,1],[0,3,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,1,1],[0,4,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,1],[0,3,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,1,1],[0,3,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,1,1],[0,3,3,2],[1,2,3,0]],[[1,1,1,0],[2,3,1,1],[1,4,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[1,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,1,1],[1,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,1,1],[1,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,1,1],[1,3,1,2],[1,2,2,2]],[[1,1,1,0],[2,3,1,1],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,1,1],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,1,1],[1,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,3,1,1],[1,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,3,1,1],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,1],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,1,1],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,1,1],[1,3,2,2],[1,2,3,0]],[[1,1,1,0],[2,3,1,1],[1,4,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[1,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,1,1],[1,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,1,1],[1,3,3,0],[1,2,3,1]],[[1,1,1,0],[2,3,1,1],[1,4,3,1],[0,2,2,1]],[[1,1,1,0],[2,3,1,1],[1,3,3,1],[0,3,2,1]],[[1,1,1,0],[2,3,1,1],[1,3,3,1],[0,2,3,1]],[[1,1,1,0],[2,3,1,1],[1,3,3,1],[0,2,2,2]],[[1,1,1,0],[2,3,1,1],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,1,1],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,1,1],[1,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,3,1,1],[1,4,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,1,1],[1,3,3,2],[0,3,2,0]],[[1,1,1,0],[2,3,1,1],[1,3,3,2],[0,2,3,0]],[[1,1,1,0],[2,3,1,1],[1,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,1],[1,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,1,1],[1,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,3,1,1],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,1,1],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,1,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[3,2,3,2],[0,3,0,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[0,3,0,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[0,3,0,2],[1,2,1,1]],[[2,1,1,0],[2,3,1,1],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[3,3,1,1],[2,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[3,2,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,2,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,2,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,1,1],[2,2,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,1,1],[2,2,1,2],[1,2,2,2]],[[2,1,1,0],[2,3,1,1],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[3,3,1,1],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,1,1],[2,2,2,1],[1,2,3,1]],[[1,1,1,0],[2,3,1,1],[2,2,2,1],[1,2,2,2]],[[2,1,1,0],[2,3,1,1],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,1,1],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,1],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,1],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,1,1],[2,2,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,1,1],[2,2,2,2],[1,2,3,0]],[[2,1,1,0],[2,3,1,1],[2,2,3,0],[1,2,2,1]],[[1,1,1,0],[3,3,1,1],[2,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[3,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,2,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,2,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,1,1],[2,2,3,0],[1,2,3,1]],[[2,1,1,0],[2,3,1,1],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,1,1],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,1,1],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,1,1],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,1,1],[2,2,3,1],[1,3,1,1]],[[2,1,1,0],[2,3,1,1],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[3,3,1,1],[2,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,1],[3,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,1],[2,2,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,1,1],[2,2,3,2],[1,3,0,1]],[[2,1,1,0],[2,3,1,1],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[3,3,1,1],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,1,1],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,1,1],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,1,1],[2,2,3,2],[1,3,1,0]],[[1,3,1,0],[2,2,3,2],[0,3,0,2],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[0,3,0,2],[1,1,2,1]],[[1,3,1,0],[2,2,3,2],[0,3,0,2],[1,1,2,1]],[[2,2,1,0],[2,2,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,1,0],[3,2,3,2],[0,3,0,1],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[0,3,0,1],[1,2,2,1]],[[2,1,1,0],[2,3,1,1],[2,3,0,2],[1,2,2,1]],[[1,1,1,0],[3,3,1,1],[2,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[3,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,0,2],[1,3,2,1]],[[2,1,1,0],[2,3,1,1],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[3,3,1,1],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[3,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,1,1],[2,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,1,1],[1,3,2,1]],[[2,1,1,0],[2,3,1,1],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[3,3,1,1],[2,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,1],[3,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,4,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,1,2],[0,3,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,1,2],[0,2,3,1]],[[1,1,1,0],[2,3,1,1],[2,3,1,2],[0,2,2,2]],[[2,1,1,0],[2,3,1,1],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[3,3,1,1],[2,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,1,1],[3,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,1,1],[2,4,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,1,2],[2,1,2,1]],[[2,1,1,0],[2,3,1,1],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[3,3,1,1],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,1],[3,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,1],[2,3,1,2],[2,2,2,0]],[[1,1,1,0],[2,3,1,1],[2,3,1,2],[1,3,2,0]],[[2,1,1,0],[2,3,1,1],[2,3,2,0],[1,2,2,1]],[[1,1,1,0],[3,3,1,1],[2,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[3,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,2,0],[2,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,2,0],[1,3,2,1]],[[2,1,1,0],[2,3,1,1],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[3,3,1,1],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,1,1],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,3,1,1],[2,3,2,1],[0,2,2,2]],[[2,1,1,0],[2,3,1,1],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,3,1,1],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,1,1],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,1,1],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,2,1],[2,1,2,1]],[[2,1,1,0],[2,3,1,1],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[3,3,1,1],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,1,1],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,1,1],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,1,1],[2,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,3,1,1],[2,3,2,2],[0,2,3,0]],[[2,1,1,0],[2,3,1,1],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,1,1],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,1,1],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,1,1],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,1,1],[2,3,2,2],[2,1,2,0]],[[2,2,1,0],[2,2,3,2],[0,3,0,1],[1,2,2,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[3,3,1,1],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,1,1],[3,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,4,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,3,0],[0,3,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,3,0],[0,2,3,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[3,3,1,1],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,1,1],[3,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,1,1],[2,4,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,3,0],[2,1,2,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[3,3,1,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,1,1],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,1,1],[2,4,3,1],[0,1,2,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,1,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,1,1],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,1,1],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,1,1],[2,3,3,1],[0,3,1,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[3,3,1,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,1,1],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,1,1],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,1,1],[2,3,3,1],[2,0,2,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,1,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,1,1],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,1,1],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,1,1],[2,3,3,1],[2,1,1,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[3,3,1,1],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,1,1],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,1,1],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,1,1],[2,3,3,1],[2,2,0,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[3,3,1,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,1,1],[3,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,1,1],[2,4,3,2],[0,1,1,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[3,3,1,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,1,1],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,1,1],[2,4,3,2],[0,1,2,0]],[[2,1,1,0],[2,3,1,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[3,3,1,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,1,1],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,1,1],[2,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,1,1],[2,3,3,2],[0,3,0,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[3,3,1,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,1,1],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,1,1],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,1,1],[2,3,3,2],[0,3,1,0]],[[2,1,1,0],[2,3,1,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[3,3,1,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,1,1],[3,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,1,1],[2,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,1,1],[2,3,3,2],[2,0,1,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[3,3,1,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,1,1],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,1,1],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,1,1],[2,3,3,2],[2,0,2,0]],[[2,1,1,0],[2,3,1,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[3,3,1,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,1,1],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,1,1],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,1,1],[2,3,3,2],[2,1,0,1]],[[2,1,1,0],[2,3,1,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[3,3,1,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,1,1],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,1,1],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,1,1],[2,3,3,2],[2,1,1,0]],[[2,1,1,0],[2,3,1,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,3,1,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,1,1],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,1,1],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,1,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[3,2,3,2],[0,2,3,1],[1,2,1,0]],[[1,3,1,0],[2,2,3,2],[0,2,3,1],[1,2,1,0]],[[2,2,1,0],[2,2,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,1,0],[3,2,3,2],[0,2,3,1],[1,2,0,1]],[[1,3,1,0],[2,2,3,2],[0,2,3,1],[1,2,0,1]],[[2,2,1,0],[2,2,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,1,0],[3,2,3,2],[0,2,3,1],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[0,2,3,1],[1,1,2,0]],[[2,2,1,0],[2,2,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[0,2,3,1],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[0,2,3,1],[1,1,1,1]],[[2,2,1,0],[2,2,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,1,3],[0,2,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,2,2,3],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,1,2],[0,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,1,2],[0,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,3,1,2],[0,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,1,2],[0,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,1,2],[0,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,1,3],[0,2,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[0,2,4,2],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[0,2,3,3],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[0,2,3,2],[1,2,1,2]],[[1,1,1,0],[2,3,1,3],[0,2,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[0,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[0,2,3,3],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[0,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,1,2],[0,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,1,2],[0,2,3,2],[1,2,3,0]],[[2,1,1,0],[2,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,0],[3,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,4,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,3],[0,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,4,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,1,2],[0,3,1,2],[1,2,2,2]],[[2,1,1,0],[2,3,1,2],[0,3,2,1],[1,2,2,1]],[[1,1,1,0],[3,3,1,2],[0,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,4,1,2],[0,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,3,1,2],[0,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,3,1,3],[0,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,2,3],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,2,2],[1,1,3,1]],[[1,1,1,0],[2,3,1,2],[0,3,2,2],[1,1,2,2]],[[2,1,1,0],[2,3,1,2],[0,3,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,1,2],[0,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,4,1,2],[0,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[0,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[0,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,1,2],[0,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,1,2],[0,3,2,2],[1,2,3,0]],[[2,1,1,0],[2,3,1,2],[0,3,3,1],[1,1,2,1]],[[1,1,1,0],[3,3,1,2],[0,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,4,1,2],[0,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[0,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,4,1],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,1],[1,1,3,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,1],[1,1,2,2]],[[2,1,1,0],[2,3,1,2],[0,3,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,1,2],[0,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,4,1,2],[0,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[0,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[0,3,4,1],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,3,1,3],[0,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,4,2],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,3],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,2],[1,0,2,2]],[[2,1,1,0],[2,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[3,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,4,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,1,3],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[0,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[0,3,4,2],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,3],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,2],[1,1,1,2]],[[2,1,1,0],[2,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[3,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,4,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,1,3],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,1,2],[0,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,1,2],[0,3,4,2],[1,1,2,0]],[[1,1,1,0],[2,3,1,2],[0,3,3,3],[1,1,2,0]],[[1,1,1,0],[2,3,1,2],[0,3,3,2],[1,1,3,0]],[[2,1,1,0],[2,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[3,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,4,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,3],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,2],[0,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,2],[0,3,4,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,3],[1,2,0,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,3,1,2],[0,3,3,2],[1,2,0,2]],[[2,1,1,0],[2,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[3,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,4,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,1,3],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,1,2],[0,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,1,2],[0,3,4,2],[1,2,1,0]],[[1,1,1,0],[2,3,1,2],[0,3,3,3],[1,2,1,0]],[[1,1,1,0],[2,3,1,2],[0,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[3,2,3,2],[0,2,3,0],[1,2,1,1]],[[1,3,1,0],[2,2,3,2],[0,2,3,0],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[0,2,3,0],[1,1,2,1]],[[1,3,1,0],[2,2,3,2],[0,2,3,0],[1,1,2,1]],[[2,2,1,0],[2,2,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,1,3],[1,2,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[1,2,2,3],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[1,2,2,2],[0,3,2,1]],[[1,1,1,0],[2,3,1,2],[1,2,2,2],[0,2,3,1]],[[1,1,1,0],[2,3,1,2],[1,2,2,2],[0,2,2,2]],[[1,1,1,0],[2,3,1,2],[1,2,4,1],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[1,2,3,1],[0,3,2,1]],[[1,1,1,0],[2,3,1,2],[1,2,3,1],[0,2,3,1]],[[1,1,1,0],[2,3,1,2],[1,2,3,1],[0,2,2,2]],[[1,1,1,0],[2,3,1,3],[1,2,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,1,2],[1,2,4,2],[0,2,1,1]],[[1,1,1,0],[2,3,1,2],[1,2,3,3],[0,2,1,1]],[[1,1,1,0],[2,3,1,2],[1,2,3,2],[0,2,1,2]],[[1,1,1,0],[2,3,1,3],[1,2,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,1,2],[1,2,4,2],[0,2,2,0]],[[1,1,1,0],[2,3,1,2],[1,2,3,3],[0,2,2,0]],[[1,1,1,0],[2,3,1,2],[1,2,3,2],[0,3,2,0]],[[1,1,1,0],[2,3,1,2],[1,2,3,2],[0,2,3,0]],[[2,1,1,0],[2,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,1,0],[3,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,4,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,3],[1,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[1,4,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,1,3],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,1,2],[0,3,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,1,2],[0,2,3,1]],[[1,1,1,0],[2,3,1,2],[1,3,1,2],[0,2,2,2]],[[2,1,1,0],[2,3,1,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,0],[3,3,1,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,4,1,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[1,4,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[1,4,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,0],[2,2,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,0],[1,3,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,0],[1,2,3,1]],[[2,1,1,0],[2,3,1,2],[1,3,2,1],[0,2,2,1]],[[1,1,1,0],[3,3,1,2],[1,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,4,1,2],[1,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[1,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,1],[0,2,2,2]],[[2,1,1,0],[2,3,1,2],[1,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,3,1,2],[1,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,4,1,2],[1,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[1,4,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[1,4,2,1],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[1,3,2,1],[2,2,2,0]],[[1,1,1,0],[2,3,1,2],[1,3,2,1],[1,3,2,0]],[[1,1,1,0],[2,3,1,3],[1,3,2,2],[0,1,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,3],[0,1,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,2],[0,1,3,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,2],[0,1,2,2]],[[2,1,1,0],[2,3,1,2],[1,3,2,2],[0,2,2,0]],[[1,1,1,0],[3,3,1,2],[1,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,4,1,2],[1,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,1,2],[1,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,1,2],[1,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,3,1,2],[1,3,2,2],[0,2,3,0]],[[1,1,1,0],[2,3,1,3],[1,3,2,2],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,3],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,2],[1,0,3,1]],[[1,1,1,0],[2,3,1,2],[1,3,2,2],[1,0,2,2]],[[2,1,1,0],[2,3,1,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,1,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,4,1,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,1,2],[1,4,2,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[0,2,2,2],[1,2,1,0]],[[1,3,1,0],[2,2,3,2],[0,2,2,2],[1,2,1,0]],[[2,2,1,0],[2,2,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,1,0],[3,2,3,2],[0,2,2,2],[1,2,0,1]],[[1,3,1,0],[2,2,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,2],[1,4,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,0],[2,2,1,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,0],[1,3,1,1]],[[2,1,1,0],[2,3,1,2],[1,3,3,1],[0,1,2,1]],[[1,1,1,0],[3,3,1,2],[1,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,4,1,2],[1,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,1,2],[1,4,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,1],[0,1,2,2]],[[2,1,1,0],[2,3,1,2],[1,3,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,1,2],[1,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,4,1,2],[1,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,1,2],[1,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,1,2],[1,3,4,1],[0,2,1,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,1],[0,3,1,1]],[[2,1,1,0],[2,3,1,2],[1,3,3,1],[1,0,2,1]],[[1,1,1,0],[3,3,1,2],[1,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,4,1,2],[1,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[1,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,4,1],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,1],[1,0,3,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,1],[1,0,2,2]],[[2,1,1,0],[2,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,4,1,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[1,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[1,3,4,1],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[1,4,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,1,2],[1,3,3,1],[2,2,1,0]],[[1,1,1,0],[2,3,1,2],[1,3,3,1],[1,3,1,0]],[[2,2,1,0],[2,2,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,1,0],[3,2,3,2],[0,2,2,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,2],[0,2,2,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,2],[0,2,2,2],[1,1,1,1]],[[1,3,1,0],[2,2,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,1,0],[2,3,1,3],[1,3,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,4,2],[0,0,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,3],[0,0,2,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,2],[0,0,2,2]],[[2,1,1,0],[2,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[3,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,4,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,1,3],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,1,2],[1,4,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,1,2],[1,3,4,2],[0,1,1,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,3],[0,1,1,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,2],[0,1,1,2]],[[2,1,1,0],[2,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[3,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,4,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,1,3],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,1,2],[1,4,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,1,2],[1,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,3,1,2],[1,3,3,3],[0,1,2,0]],[[1,1,1,0],[2,3,1,2],[1,3,3,2],[0,1,3,0]],[[2,1,1,0],[2,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[3,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,4,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,1,3],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,1,2],[1,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,1,2],[1,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,3],[0,2,0,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,2],[0,3,0,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,2],[0,2,0,2]],[[2,1,1,0],[2,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[3,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,4,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,1,3],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,1,2],[1,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,1,2],[1,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,3,1,2],[1,3,3,3],[0,2,1,0]],[[1,1,1,0],[2,3,1,2],[1,3,3,2],[0,3,1,0]],[[2,2,1,0],[2,2,3,2],[0,2,2,2],[1,1,1,1]],[[2,1,1,0],[2,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[3,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,4,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,1,3],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,1,2],[1,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,1,2],[1,3,4,2],[1,0,1,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,3],[1,0,1,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,2],[1,0,1,2]],[[2,1,1,0],[2,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[3,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,4,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,1,3],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,1,2],[1,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,1,2],[1,3,4,2],[1,0,2,0]],[[1,1,1,0],[2,3,1,2],[1,3,3,3],[1,0,2,0]],[[1,1,1,0],[2,3,1,2],[1,3,3,2],[1,0,3,0]],[[2,1,1,0],[2,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[3,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,4,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,1,3],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,1,2],[1,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,1,2],[1,3,4,2],[1,1,0,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,3],[1,1,0,1]],[[1,1,1,0],[2,3,1,2],[1,3,3,2],[1,1,0,2]],[[2,1,1,0],[2,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[3,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,4,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,1,3],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,1,2],[1,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,1,2],[1,3,4,2],[1,1,1,0]],[[1,1,1,0],[2,3,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[3,2,3,2],[0,2,1,2],[1,1,2,1]],[[1,3,1,0],[2,2,3,2],[0,2,1,2],[1,1,2,1]],[[2,2,1,0],[2,2,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,1,0],[3,2,3,2],[0,2,0,2],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[0,2,0,2],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[0,2,0,2],[1,2,2,1]],[[2,1,1,0],[2,3,1,2],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,3,1,2],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,4,1,2],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,1,2],[1,4,3,2],[1,2,0,0]],[[1,2,1,0],[3,2,3,2],[0,1,3,1],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[0,1,3,1],[1,2,2,0]],[[2,2,1,0],[2,2,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[0,1,3,1],[1,2,1,1]],[[1,3,1,0],[2,2,3,2],[0,1,3,1],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[0,1,3,0],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[0,1,3,0],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,1,0],[3,2,3,2],[0,1,2,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,2],[0,1,2,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,2],[0,1,2,2],[1,2,1,1]],[[1,3,1,0],[2,2,3,2],[0,1,2,2],[1,2,1,1]],[[2,2,1,0],[2,2,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,1,0],[3,2,3,2],[0,1,1,2],[1,2,2,1]],[[1,3,1,0],[2,2,3,2],[0,1,1,2],[1,2,2,1]],[[2,2,1,0],[2,2,3,2],[0,1,1,2],[1,2,2,1]],[[2,1,1,0],[2,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[3,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,4,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,3],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[3,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,0,2,3],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,0,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,0,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,1,2],[2,0,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,1,2],[2,0,2,2],[1,2,2,2]],[[2,1,1,0],[2,3,1,2],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[3,3,1,2],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,4,1,2],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[3,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,0,4,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,0,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,0,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,1,2],[2,0,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,1,2],[2,0,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,1,3],[2,0,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[2,0,4,2],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[2,0,3,3],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[2,0,3,2],[1,2,1,2]],[[2,1,1,0],[2,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[3,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,4,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,3],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[3,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,0,4,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,0,3,3],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,0,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,0,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,1,2],[2,0,3,2],[1,2,3,0]],[[2,1,1,0],[2,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[3,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,4,1,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,3],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[3,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,1,1,3],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,1,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,1,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,1,2],[2,1,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,1,2],[2,1,1,2],[1,2,2,2]],[[2,1,1,0],[2,3,1,2],[2,1,2,1],[1,2,2,1]],[[1,1,1,0],[3,3,1,2],[2,1,2,1],[1,2,2,1]],[[1,1,1,0],[2,4,1,2],[2,1,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[3,1,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,1,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,1,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,1,2],[2,1,2,1],[1,2,3,1]],[[1,1,1,0],[2,3,1,2],[2,1,2,1],[1,2,2,2]],[[2,1,1,0],[2,3,1,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,1,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,4,1,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[3,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,1,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,1,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,1,2],[2,1,2,2],[1,2,3,0]],[[2,1,1,0],[2,3,1,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,1,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,4,1,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[3,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[2,1,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,1,2],[2,1,3,1],[1,3,1,1]],[[2,1,1,0],[2,3,1,2],[2,1,3,2],[1,2,0,1]],[[1,1,1,0],[3,3,1,2],[2,1,3,2],[1,2,0,1]],[[1,1,1,0],[2,4,1,2],[2,1,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,2],[3,1,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,1,2],[2,1,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,1,2],[2,1,3,2],[1,3,0,1]],[[2,1,1,0],[2,3,1,2],[2,1,3,2],[1,2,1,0]],[[1,1,1,0],[3,3,1,2],[2,1,3,2],[1,2,1,0]],[[1,1,1,0],[2,4,1,2],[2,1,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,1,2],[3,1,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,1,2],[2,1,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,1,2],[2,1,3,2],[1,3,1,0]],[[2,1,1,0],[2,3,1,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,0],[3,3,1,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,0],[2,4,1,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[3,2,1,2],[0,2,2,1]],[[2,1,1,0],[2,3,1,2],[2,2,1,2],[1,1,2,1]],[[1,1,1,0],[3,3,1,2],[2,2,1,2],[1,1,2,1]],[[1,1,1,0],[2,4,1,2],[2,2,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[3,2,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[2,2,1,2],[2,1,2,1]],[[2,1,1,0],[2,3,1,2],[2,2,2,0],[1,2,2,1]],[[1,1,1,0],[3,3,1,2],[2,2,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[3,2,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,2,2,0],[2,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,2,2,0],[1,3,2,1]],[[1,1,1,0],[2,3,1,2],[2,2,2,0],[1,2,3,1]],[[2,1,1,0],[2,3,1,2],[2,2,2,1],[0,2,2,1]],[[1,1,1,0],[3,3,1,2],[2,2,2,1],[0,2,2,1]],[[1,1,1,0],[2,4,1,2],[2,2,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[3,2,2,1],[0,2,2,1]],[[2,1,1,0],[2,3,1,2],[2,2,2,1],[1,1,2,1]],[[1,1,1,0],[3,3,1,2],[2,2,2,1],[1,1,2,1]],[[1,1,1,0],[2,4,1,2],[2,2,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[3,2,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[2,2,2,1],[2,1,2,1]],[[2,1,1,0],[2,3,1,2],[2,2,2,1],[1,2,2,0]],[[1,1,1,0],[3,3,1,2],[2,2,2,1],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[3,2,2,1],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,2,2,1],[2,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,2,2,1],[1,3,2,0]],[[2,1,1,0],[2,3,1,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[3,3,1,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[2,4,1,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,1,2],[3,2,2,2],[0,2,2,0]],[[2,1,1,0],[2,3,1,2],[2,2,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,1,2],[2,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,4,1,2],[2,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,1,2],[3,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,1,2],[2,2,2,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,1],[3,3,3,2],[1,0,0,0]],[[1,2,1,0],[3,2,3,1],[2,3,3,2],[1,0,0,0]],[[1,3,1,0],[2,2,3,1],[2,3,3,2],[1,0,0,0]],[[2,2,1,0],[2,2,3,1],[2,3,3,2],[1,0,0,0]],[[2,1,1,0],[2,3,1,2],[2,2,3,0],[1,2,1,1]],[[1,1,1,0],[3,3,1,2],[2,2,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[3,2,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,1,2],[2,2,3,0],[2,2,1,1]],[[1,1,1,0],[2,3,1,2],[2,2,3,0],[1,3,1,1]],[[2,1,1,0],[2,3,1,2],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[3,3,1,2],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[2,4,1,2],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,1,2],[3,2,3,1],[0,1,2,1]],[[2,1,1,0],[2,3,1,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,1,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,4,1,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,1,2],[3,2,3,1],[0,2,1,1]],[[2,1,1,0],[2,3,1,2],[2,2,3,1],[1,0,2,1]],[[1,1,1,0],[3,3,1,2],[2,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,4,1,2],[2,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[3,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[2,2,3,1],[2,0,2,1]],[[2,1,1,0],[2,3,1,2],[2,2,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,1,2],[2,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,4,1,2],[2,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[3,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[2,2,3,1],[2,1,1,1]],[[2,1,1,0],[2,3,1,2],[2,2,3,1],[1,2,1,0]],[[1,1,1,0],[3,3,1,2],[2,2,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,1,2],[3,2,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,1,2],[2,2,3,1],[2,2,1,0]],[[1,1,1,0],[2,3,1,2],[2,2,3,1],[1,3,1,0]],[[2,1,1,0],[2,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[3,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[2,4,1,2],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,1,2],[3,2,3,2],[0,1,1,1]],[[2,1,1,0],[2,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[3,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[2,4,1,2],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,1,2],[3,2,3,2],[0,1,2,0]],[[2,1,1,0],[2,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[3,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[2,4,1,2],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,1,2],[3,2,3,2],[0,2,0,1]],[[2,1,1,0],[2,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[3,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[2,4,1,2],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,1,2],[3,2,3,2],[0,2,1,0]],[[2,1,1,0],[2,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[3,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,4,1,2],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,1,2],[3,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,1,2],[2,2,3,2],[2,0,1,1]],[[2,1,1,0],[2,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[3,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,4,1,2],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,1,2],[3,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,1,2],[2,2,3,2],[2,0,2,0]],[[2,1,1,0],[2,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[3,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,4,1,2],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,1,2],[3,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,1,2],[2,2,3,2],[2,1,0,1]],[[2,1,1,0],[2,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[3,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,4,1,2],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,1,2],[3,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,1,2],[2,2,3,2],[2,1,1,0]],[[2,1,1,0],[2,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,1,1,0],[3,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,1,1,0],[2,4,1,2],[2,2,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,1,2],[3,2,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,1,2],[2,2,3,2],[2,2,0,0]],[[1,2,1,0],[2,2,3,1],[3,3,2,2],[1,0,1,0]],[[1,2,1,0],[3,2,3,1],[2,3,2,2],[1,0,1,0]],[[1,3,1,0],[2,2,3,1],[2,3,2,2],[1,0,1,0]],[[2,2,1,0],[2,2,3,1],[2,3,2,2],[1,0,1,0]],[[1,2,1,0],[2,2,3,1],[3,3,2,2],[1,0,0,1]],[[1,2,1,0],[3,2,3,1],[2,3,2,2],[1,0,0,1]],[[1,3,1,0],[2,2,3,1],[2,3,2,2],[1,0,0,1]],[[2,2,1,0],[2,2,3,1],[2,3,2,2],[1,0,0,1]],[[2,1,1,0],[2,3,1,2],[2,3,1,0],[1,2,2,1]],[[1,1,1,0],[3,3,1,2],[2,3,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[3,3,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,3,1,0],[2,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,3,1,0],[1,3,2,1]],[[2,1,1,0],[2,3,1,2],[2,3,1,1],[1,2,2,0]],[[1,1,1,0],[3,3,1,2],[2,3,1,1],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[3,3,1,1],[1,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,3,1,1],[2,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,3,1,1],[1,3,2,0]],[[2,1,1,0],[2,3,1,2],[2,3,2,0],[0,2,2,1]],[[1,1,1,0],[3,3,1,2],[2,3,2,0],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[3,3,2,0],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,4,2,0],[0,2,2,1]],[[1,1,1,0],[2,3,1,2],[2,3,2,0],[0,3,2,1]],[[1,1,1,0],[2,3,1,2],[2,3,2,0],[0,2,3,1]],[[2,1,1,0],[2,3,1,2],[2,3,2,0],[1,1,2,1]],[[1,1,1,0],[3,3,1,2],[2,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[3,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[2,4,2,0],[1,1,2,1]],[[1,1,1,0],[2,3,1,2],[2,3,2,0],[2,1,2,1]],[[2,1,1,0],[2,3,1,2],[2,3,2,1],[0,2,2,0]],[[1,1,1,0],[3,3,1,2],[2,3,2,1],[0,2,2,0]],[[1,1,1,0],[2,3,1,2],[3,3,2,1],[0,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,4,2,1],[0,2,2,0]],[[1,1,1,0],[2,3,1,2],[2,3,2,1],[0,3,2,0]],[[2,1,1,0],[2,3,1,2],[2,3,2,1],[1,1,2,0]],[[1,1,1,0],[3,3,1,2],[2,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,3,1,2],[3,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,3,1,2],[2,4,2,1],[1,1,2,0]],[[1,1,1,0],[2,3,1,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[2,2,3,1],[3,3,2,1],[1,0,1,1]],[[1,2,1,0],[3,2,3,1],[2,3,2,1],[1,0,1,1]],[[1,3,1,0],[2,2,3,1],[2,3,2,1],[1,0,1,1]],[[2,2,1,0],[2,2,3,1],[2,3,2,1],[1,0,1,1]],[[2,1,1,0],[2,3,1,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[3,3,1,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,1,2],[3,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,1,2],[2,4,3,0],[0,1,2,1]],[[2,1,1,0],[2,3,1,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[3,3,1,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,1,2],[3,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,1,2],[2,4,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,1,2],[2,3,3,0],[0,3,1,1]],[[2,1,1,0],[2,3,1,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[3,3,1,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[3,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[2,4,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,1,2],[2,3,3,0],[2,0,2,1]],[[2,1,1,0],[2,3,1,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,0],[3,3,1,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[3,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[2,4,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,1,2],[2,3,3,0],[2,1,1,1]],[[2,1,1,0],[2,3,1,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,0],[3,3,1,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,0],[2,3,1,2],[3,3,3,0],[1,2,0,1]],[[1,1,1,0],[2,3,1,2],[2,4,3,0],[1,2,0,1]],[[1,1,1,0],[2,3,1,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[2,2,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,1,0],[2,2,3,1],[3,3,1,2],[1,2,0,0]],[[1,2,1,0],[3,2,3,1],[2,3,1,2],[1,2,0,0]],[[1,3,1,0],[2,2,3,1],[2,3,1,2],[1,2,0,0]],[[2,2,1,0],[2,2,3,1],[2,3,1,2],[1,2,0,0]],[[2,1,1,0],[2,3,1,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,0],[3,3,1,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,1,2],[3,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,1,2],[2,4,3,1],[0,1,2,0]],[[2,1,1,0],[2,3,1,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,0],[3,3,1,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,1,2],[3,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,1,2],[2,4,3,1],[0,2,0,1]],[[2,1,1,0],[2,3,1,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,0],[3,3,1,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,1,2],[3,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,1,2],[2,4,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,1,2],[2,3,3,1],[0,3,1,0]],[[2,1,1,0],[2,3,1,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[3,3,1,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,1,2],[3,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,1,2],[2,4,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,1,2],[2,3,3,1],[2,0,2,0]],[[2,1,1,0],[2,3,1,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[3,3,1,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,1,2],[3,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,1,2],[2,4,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,1,2],[2,3,3,1],[2,1,0,1]],[[2,1,1,0],[2,3,1,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[3,3,1,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,1,2],[3,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,1,2],[2,4,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,1,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,0],[2,2,3,1],[2,3,1,2],[2,1,1,0]],[[1,2,1,0],[2,2,3,1],[3,3,1,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,1],[2,3,1,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,1],[2,3,1,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,1],[2,3,1,2],[1,1,1,0]],[[1,2,1,0],[2,2,3,1],[2,3,1,2],[2,1,0,1]],[[1,2,1,0],[2,2,3,1],[3,3,1,2],[1,1,0,1]],[[1,2,1,0],[3,2,3,1],[2,3,1,2],[1,1,0,1]],[[2,1,1,0],[2,3,1,2],[2,3,3,1],[1,2,0,0]],[[1,1,1,0],[3,3,1,2],[2,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,3,1,2],[3,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,3,1,2],[2,4,3,1],[1,2,0,0]],[[1,1,1,0],[2,3,1,2],[2,3,3,1],[2,2,0,0]],[[1,3,1,0],[2,2,3,1],[2,3,1,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,1],[2,3,1,2],[1,1,0,1]],[[1,2,1,0],[2,2,3,1],[3,3,1,2],[0,2,1,0]],[[1,2,1,0],[3,2,3,1],[2,3,1,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,1],[2,3,1,2],[0,2,1,0]],[[2,2,1,0],[2,2,3,1],[2,3,1,2],[0,2,1,0]],[[1,2,1,0],[2,2,3,1],[3,3,1,2],[0,2,0,1]],[[1,2,1,0],[3,2,3,1],[2,3,1,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,1],[2,3,1,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,1],[2,3,1,2],[0,2,0,1]],[[1,2,1,0],[2,2,3,1],[2,3,1,1],[2,2,0,1]],[[1,2,1,0],[2,2,3,1],[3,3,1,1],[1,2,0,1]],[[1,2,1,0],[3,2,3,1],[2,3,1,1],[1,2,0,1]],[[1,3,1,0],[2,2,3,1],[2,3,1,1],[1,2,0,1]],[[2,2,1,0],[2,2,3,1],[2,3,1,1],[1,2,0,1]],[[1,2,1,0],[2,2,3,1],[2,3,1,1],[2,1,1,1]],[[1,2,1,0],[2,2,3,1],[3,3,1,1],[1,1,1,1]],[[1,2,1,0],[3,2,3,1],[2,3,1,1],[1,1,1,1]],[[1,3,1,0],[2,2,3,1],[2,3,1,1],[1,1,1,1]],[[2,2,1,0],[2,2,3,1],[2,3,1,1],[1,1,1,1]],[[1,2,1,0],[2,2,3,1],[3,3,1,1],[0,2,1,1]],[[1,2,1,0],[3,2,3,1],[2,3,1,1],[0,2,1,1]],[[1,3,1,0],[2,2,3,1],[2,3,1,1],[0,2,1,1]],[[2,2,1,0],[2,2,3,1],[2,3,1,1],[0,2,1,1]],[[2,1,1,0],[2,3,1,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[3,3,1,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[2,4,1,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[2,3,1,2],[3,3,3,2],[1,0,0,1]],[[2,1,1,0],[2,3,1,2],[2,3,3,2],[1,0,1,0]],[[1,1,1,0],[3,3,1,2],[2,3,3,2],[1,0,1,0]],[[1,1,1,0],[2,4,1,2],[2,3,3,2],[1,0,1,0]],[[1,1,1,0],[2,3,1,2],[3,3,3,2],[1,0,1,0]],[[1,2,1,0],[2,2,3,1],[2,3,0,2],[2,2,1,0]],[[1,2,1,0],[2,2,3,1],[3,3,0,2],[1,2,1,0]],[[1,2,1,0],[3,2,3,1],[2,3,0,2],[1,2,1,0]],[[1,3,1,0],[2,2,3,1],[2,3,0,2],[1,2,1,0]],[[2,2,1,0],[2,2,3,1],[2,3,0,2],[1,2,1,0]],[[1,2,1,0],[2,2,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,1],[3,3,0,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,1],[2,3,0,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,1],[2,3,0,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,1],[2,3,0,2],[1,1,2,0]],[[1,2,1,0],[2,2,3,1],[3,3,0,2],[0,2,2,0]],[[1,2,1,0],[3,2,3,1],[2,3,0,2],[0,2,2,0]],[[1,3,1,0],[2,2,3,1],[2,3,0,2],[0,2,2,0]],[[2,2,1,0],[2,2,3,1],[2,3,0,2],[0,2,2,0]],[[1,2,1,0],[2,2,3,1],[2,3,0,1],[2,2,1,1]],[[1,2,1,0],[2,2,3,1],[3,3,0,1],[1,2,1,1]],[[1,2,1,0],[3,2,3,1],[2,3,0,1],[1,2,1,1]],[[1,3,1,0],[2,2,3,1],[2,3,0,1],[1,2,1,1]],[[2,2,1,0],[2,2,3,1],[2,3,0,1],[1,2,1,1]],[[1,2,1,0],[2,2,3,1],[2,3,0,1],[2,1,2,1]],[[1,2,1,0],[2,2,3,1],[3,3,0,1],[1,1,2,1]],[[1,2,1,0],[3,2,3,1],[2,3,0,1],[1,1,2,1]],[[1,3,1,0],[2,2,3,1],[2,3,0,1],[1,1,2,1]],[[2,2,1,0],[2,2,3,1],[2,3,0,1],[1,1,2,1]],[[1,2,1,0],[2,2,3,1],[3,3,0,1],[0,2,2,1]],[[1,2,1,0],[3,2,3,1],[2,3,0,1],[0,2,2,1]],[[1,3,1,0],[2,2,3,1],[2,3,0,1],[0,2,2,1]],[[2,2,1,0],[2,2,3,1],[2,3,0,1],[0,2,2,1]],[[1,2,1,0],[2,2,3,1],[2,2,3,2],[2,1,0,0]],[[1,2,1,0],[2,2,3,1],[3,2,3,2],[1,1,0,0]],[[1,2,1,0],[3,2,3,1],[2,2,3,2],[1,1,0,0]],[[1,3,1,0],[2,2,3,1],[2,2,3,2],[1,1,0,0]],[[2,2,1,0],[2,2,3,1],[2,2,3,2],[1,1,0,0]],[[1,2,1,0],[2,2,3,1],[3,2,3,2],[0,2,0,0]],[[1,2,1,0],[3,2,3,1],[2,2,3,2],[0,2,0,0]],[[1,3,1,0],[2,2,3,1],[2,2,3,2],[0,2,0,0]],[[2,2,1,0],[2,2,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,1,0],[2,3,2,0],[0,2,4,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[0,2,3,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,0],[0,2,3,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,0],[0,2,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,0],[0,2,3,2],[1,2,2,2]],[[2,1,1,0],[2,3,2,0],[0,3,2,2],[1,2,2,1]],[[1,1,1,0],[3,3,2,0],[0,3,2,2],[1,2,2,1]],[[1,1,1,0],[2,4,2,0],[0,3,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[0,4,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[0,3,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,0],[0,3,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,0],[0,3,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,0],[0,3,2,2],[1,2,2,2]],[[2,1,1,0],[2,3,2,0],[0,3,3,2],[1,1,2,1]],[[1,1,1,0],[3,3,2,0],[0,3,3,2],[1,1,2,1]],[[1,1,1,0],[2,4,2,0],[0,3,3,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[0,4,3,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[0,3,4,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[0,3,3,2],[1,1,3,1]],[[1,1,1,0],[2,3,2,0],[0,3,3,2],[1,1,2,2]],[[2,1,1,0],[2,3,2,0],[0,3,3,2],[1,2,1,1]],[[1,1,1,0],[3,3,2,0],[0,3,3,2],[1,2,1,1]],[[1,1,1,0],[2,4,2,0],[0,3,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,2,0],[0,4,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,2,0],[0,3,4,2],[1,2,1,1]],[[1,1,1,0],[2,3,2,0],[0,3,3,2],[2,2,1,1]],[[1,1,1,0],[2,3,2,0],[0,3,3,2],[1,3,1,1]],[[1,1,1,0],[2,3,2,0],[1,2,4,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,0],[1,2,3,2],[0,3,2,1]],[[1,1,1,0],[2,3,2,0],[1,2,3,2],[0,2,3,1]],[[1,1,1,0],[2,3,2,0],[1,2,3,2],[0,2,2,2]],[[1,1,1,0],[2,3,2,0],[1,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,2,1],[1,2,3,1]],[[2,1,1,0],[2,3,2,0],[1,3,2,2],[0,2,2,1]],[[1,1,1,0],[3,3,2,0],[1,3,2,2],[0,2,2,1]],[[1,1,1,0],[2,4,2,0],[1,3,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,0],[1,4,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,2,2],[0,3,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,2,2],[0,2,3,1]],[[1,1,1,0],[2,3,2,0],[1,3,2,2],[0,2,2,2]],[[2,1,1,0],[2,3,2,0],[1,3,2,2],[1,1,2,1]],[[1,1,1,0],[3,3,2,0],[1,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,4,2,0],[1,3,2,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[1,4,2,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[1,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,0],[1,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,2,0],[1,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,2,0],[1,4,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,3,0],[1,2,3,1]],[[1,1,1,0],[2,3,2,0],[1,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,2,0],[1,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,2,0],[1,3,3,1],[1,3,1,1]],[[2,1,1,0],[2,3,2,0],[1,3,3,2],[0,1,2,1]],[[1,1,1,0],[3,3,2,0],[1,3,3,2],[0,1,2,1]],[[1,1,1,0],[2,4,2,0],[1,3,3,2],[0,1,2,1]],[[1,1,1,0],[2,3,2,0],[1,4,3,2],[0,1,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,4,2],[0,1,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,3,2],[0,1,3,1]],[[1,1,1,0],[2,3,2,0],[1,3,3,2],[0,1,2,2]],[[2,1,1,0],[2,3,2,0],[1,3,3,2],[0,2,1,1]],[[1,1,1,0],[3,3,2,0],[1,3,3,2],[0,2,1,1]],[[1,1,1,0],[2,4,2,0],[1,3,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,2,0],[1,4,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,2,0],[1,3,4,2],[0,2,1,1]],[[1,1,1,0],[2,3,2,0],[1,3,3,2],[0,3,1,1]],[[2,1,1,0],[2,3,2,0],[1,3,3,2],[1,0,2,1]],[[1,1,1,0],[3,3,2,0],[1,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,4,2,0],[1,3,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,2,0],[1,4,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,4,2],[1,0,2,1]],[[1,1,1,0],[2,3,2,0],[1,3,3,2],[1,0,3,1]],[[1,1,1,0],[2,3,2,0],[1,3,3,2],[1,0,2,2]],[[2,1,1,0],[2,3,2,0],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[3,3,2,0],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,4,2,0],[1,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,0],[1,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,0],[1,3,4,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,0],[1,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,0],[1,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,2,0],[1,3,3,2],[1,3,1,0]],[[2,1,1,0],[2,3,2,0],[2,0,3,2],[1,2,2,1]],[[1,1,1,0],[3,3,2,0],[2,0,3,2],[1,2,2,1]],[[1,1,1,0],[2,4,2,0],[2,0,3,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[3,0,3,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,0,4,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,0,3,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,0,3,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,0],[2,0,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,0],[2,0,3,2],[1,2,2,2]],[[2,1,1,0],[2,3,2,0],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[3,3,2,0],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,4,2,0],[2,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[3,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,1,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,1,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,0],[2,1,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,0],[2,1,2,2],[1,2,2,2]],[[2,1,1,0],[2,3,2,0],[2,1,3,2],[1,2,1,1]],[[1,1,1,0],[3,3,2,0],[2,1,3,2],[1,2,1,1]],[[1,1,1,0],[2,4,2,0],[2,1,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,2,0],[3,1,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,2,0],[2,1,3,2],[2,2,1,1]],[[1,1,1,0],[2,3,2,0],[2,1,3,2],[1,3,1,1]],[[2,1,1,0],[2,3,2,0],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[3,3,2,0],[2,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[3,2,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,2,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,2,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,2,0],[2,2,2,1],[1,2,3,1]],[[2,1,1,0],[2,3,2,0],[2,2,2,2],[0,2,2,1]],[[1,1,1,0],[3,3,2,0],[2,2,2,2],[0,2,2,1]],[[1,1,1,0],[2,4,2,0],[2,2,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,0],[3,2,2,2],[0,2,2,1]],[[2,1,1,0],[2,3,2,0],[2,2,2,2],[1,1,2,1]],[[1,1,1,0],[3,3,2,0],[2,2,2,2],[1,1,2,1]],[[1,1,1,0],[2,4,2,0],[2,2,2,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[3,2,2,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[2,2,2,2],[2,1,2,1]],[[2,1,1,0],[2,3,2,0],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,2,0],[2,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,0],[3,2,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,0],[2,2,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,2,0],[2,2,2,2],[1,3,2,0]],[[2,1,1,0],[2,3,2,0],[2,2,3,0],[1,2,2,1]],[[1,1,1,0],[3,3,2,0],[2,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[3,2,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,2,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,2,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,2,0],[2,2,3,0],[1,2,3,1]],[[2,1,1,0],[2,3,2,0],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,2,0],[2,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,2,0],[3,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,2,0],[2,2,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,2,0],[2,2,3,1],[1,3,1,1]],[[2,1,1,0],[2,3,2,0],[2,2,3,2],[0,1,2,1]],[[1,1,1,0],[3,3,2,0],[2,2,3,2],[0,1,2,1]],[[1,1,1,0],[2,4,2,0],[2,2,3,2],[0,1,2,1]],[[1,1,1,0],[2,3,2,0],[3,2,3,2],[0,1,2,1]],[[2,1,1,0],[2,3,2,0],[2,2,3,2],[0,2,1,1]],[[1,1,1,0],[3,3,2,0],[2,2,3,2],[0,2,1,1]],[[1,1,1,0],[2,4,2,0],[2,2,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,2,0],[3,2,3,2],[0,2,1,1]],[[2,1,1,0],[2,3,2,0],[2,2,3,2],[1,0,2,1]],[[1,1,1,0],[3,3,2,0],[2,2,3,2],[1,0,2,1]],[[1,1,1,0],[2,4,2,0],[2,2,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,2,0],[3,2,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,2,0],[2,2,3,2],[2,0,2,1]],[[2,1,1,0],[2,3,2,0],[2,2,3,2],[1,1,1,1]],[[1,1,1,0],[3,3,2,0],[2,2,3,2],[1,1,1,1]],[[1,1,1,0],[2,4,2,0],[2,2,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,0],[3,2,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,0],[2,2,3,2],[2,1,1,1]],[[2,1,1,0],[2,3,2,0],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[3,3,2,0],[2,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,0],[3,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,0],[2,2,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,2,0],[2,2,3,2],[1,3,1,0]],[[2,1,1,0],[2,3,2,0],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[3,3,2,0],[2,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[3,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,3,1,1],[2,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,3,1,1],[1,3,2,1]],[[2,1,1,0],[2,3,2,0],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[3,3,2,0],[2,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,0],[3,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,0],[2,3,1,2],[2,2,2,0]],[[1,1,1,0],[2,3,2,0],[2,3,1,2],[1,3,2,0]],[[2,1,1,0],[2,3,2,0],[2,3,2,0],[1,2,2,1]],[[1,1,1,0],[3,3,2,0],[2,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[3,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,3,2,0],[2,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,3,2,0],[1,3,2,1]],[[2,1,1,0],[2,3,2,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[3,3,2,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,2,0],[3,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,3,2,0],[2,3,2,1],[0,2,3,1]],[[2,1,1,0],[2,3,2,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,3,2,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[3,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[2,4,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[2,3,2,1],[2,1,2,1]],[[2,1,1,0],[2,3,2,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[3,3,2,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,2,0],[3,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,2,0],[2,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,2,0],[2,3,2,2],[0,3,2,0]],[[2,1,1,0],[2,3,2,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,2,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,0],[3,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,0],[2,4,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,0],[2,3,2,2],[2,1,2,0]],[[2,1,1,0],[2,3,2,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[3,3,2,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,2,0],[3,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,4,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,2,0],[2,3,3,0],[0,3,2,1]],[[1,1,1,0],[2,3,2,0],[2,3,3,0],[0,2,3,1]],[[2,1,1,0],[2,3,2,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[3,3,2,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[3,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[2,4,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,0],[2,3,3,0],[2,1,2,1]],[[2,1,1,0],[2,3,2,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[3,3,2,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,2,0],[3,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,2,0],[2,4,3,1],[0,1,2,1]],[[2,1,1,0],[2,3,2,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,2,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,2,0],[3,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,2,0],[2,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,2,0],[2,3,3,1],[0,3,1,1]],[[2,1,1,0],[2,3,2,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[3,3,2,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,2,0],[3,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,2,0],[2,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,2,0],[2,3,3,1],[2,0,2,1]],[[2,1,1,0],[2,3,2,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,2,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,2,0],[3,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,2,0],[2,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,2,0],[2,3,3,1],[2,1,1,1]],[[2,1,1,0],[2,3,2,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[3,3,2,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,2,0],[3,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,2,0],[2,4,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,2,0],[2,3,3,1],[2,2,0,1]],[[2,1,1,0],[2,3,2,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[3,3,2,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,0],[3,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,0],[2,4,3,2],[0,1,2,0]],[[2,1,1,0],[2,3,2,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[3,3,2,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,0],[3,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,0],[2,4,3,2],[0,2,0,1]],[[2,1,1,0],[2,3,2,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[3,3,2,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,0],[3,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,0],[2,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,0],[2,3,3,2],[0,3,1,0]],[[2,1,1,0],[2,3,2,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[3,3,2,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,0],[3,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,0],[2,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,0],[2,3,3,2],[2,0,2,0]],[[2,1,1,0],[2,3,2,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[3,3,2,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,0],[3,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,0],[2,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,0],[2,3,3,2],[2,1,0,1]],[[2,1,1,0],[2,3,2,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[3,3,2,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,0],[3,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,0],[2,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,2,3,1],[2,2,2,2],[2,2,0,0]],[[1,2,1,0],[2,2,3,1],[3,2,2,2],[1,2,0,0]],[[1,2,1,0],[3,2,3,1],[2,2,2,2],[1,2,0,0]],[[2,1,1,0],[2,3,2,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,3,2,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,2,0],[3,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,2,0],[2,4,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,2,0],[2,3,3,2],[2,2,0,0]],[[1,3,1,0],[2,2,3,1],[2,2,2,2],[1,2,0,0]],[[2,2,1,0],[2,2,3,1],[2,2,2,2],[1,2,0,0]],[[1,2,1,0],[2,2,3,1],[2,2,2,2],[2,1,1,0]],[[1,2,1,0],[2,2,3,1],[3,2,2,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,1],[2,2,2,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,1],[2,2,2,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,1,0],[2,2,3,1],[2,2,2,2],[2,1,0,1]],[[1,2,1,0],[2,2,3,1],[3,2,2,2],[1,1,0,1]],[[1,2,1,0],[3,2,3,1],[2,2,2,2],[1,1,0,1]],[[1,3,1,0],[2,2,3,1],[2,2,2,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,1],[0,2,2,3],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,2,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,2,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,1],[0,2,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,1],[0,2,2,2],[1,2,2,2]],[[1,1,1,0],[2,3,2,1],[0,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,2,1],[0,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,2,1],[0,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,2,1],[0,2,4,2],[1,2,1,1]],[[1,1,1,0],[2,3,2,1],[0,2,3,3],[1,2,1,1]],[[1,1,1,0],[2,3,2,1],[0,2,3,2],[1,2,1,2]],[[1,1,1,0],[2,3,2,1],[0,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[0,2,3,3],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[0,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,2,1],[0,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,2,1],[0,2,3,2],[1,2,3,0]],[[2,1,1,0],[2,3,2,1],[0,3,1,2],[1,2,2,1]],[[1,1,1,0],[3,3,2,1],[0,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,4,2,1],[0,3,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,4,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,1,3],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,1],[0,3,1,2],[1,2,2,2]],[[2,1,1,0],[2,3,2,1],[0,3,2,1],[1,2,2,1]],[[1,1,1,0],[3,3,2,1],[0,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,4,2,1],[0,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,3,2,1],[0,3,2,1],[1,2,2,2]],[[1,1,1,0],[2,3,2,1],[0,3,2,3],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,2,2],[1,1,3,1]],[[1,1,1,0],[2,3,2,1],[0,3,2,2],[1,1,2,2]],[[2,1,1,0],[2,3,2,1],[0,3,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,2,1],[0,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,4,2,1],[0,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[0,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[0,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,2,1],[0,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,2,1],[0,3,2,2],[1,2,3,0]],[[2,1,1,0],[2,3,2,1],[0,3,3,0],[1,2,2,1]],[[1,1,1,0],[3,3,2,1],[0,3,3,0],[1,2,2,1]],[[1,1,1,0],[2,4,2,1],[0,3,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,4,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,0],[1,2,3,1]],[[2,1,1,0],[2,3,2,1],[0,3,3,1],[1,1,2,1]],[[1,1,1,0],[3,3,2,1],[0,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,4,2,1],[0,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[0,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,4,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,1],[1,1,3,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,1],[1,1,2,2]],[[2,1,1,0],[2,3,2,1],[0,3,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,2,1],[0,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,4,2,1],[0,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,2,1],[0,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,2,1],[0,3,4,1],[1,2,1,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,3,2,1],[0,3,4,2],[1,0,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,3],[1,0,2,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,2],[1,0,2,2]],[[2,1,1,0],[2,3,2,1],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[3,3,2,1],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,4,2,1],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,1],[0,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,1],[0,3,4,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,3],[1,1,1,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,2],[1,1,1,2]],[[2,1,1,0],[2,3,2,1],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[3,3,2,1],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,4,2,1],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,1],[0,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,1],[0,3,4,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,1],[0,3,3,3],[1,1,2,0]],[[1,1,1,0],[2,3,2,1],[0,3,3,2],[1,1,3,0]],[[2,1,1,0],[2,3,2,1],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[3,3,2,1],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,4,2,1],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,2,1],[0,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,2,1],[0,3,4,2],[1,2,0,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,3],[1,2,0,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,2],[1,3,0,1]],[[1,1,1,0],[2,3,2,1],[0,3,3,2],[1,2,0,2]],[[2,1,1,0],[2,3,2,1],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[3,3,2,1],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,4,2,1],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,1],[0,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,1],[0,3,4,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,1],[0,3,3,3],[1,2,1,0]],[[1,1,1,0],[2,3,2,1],[0,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,2,3,1],[2,2,2,2],[2,0,2,0]],[[1,2,1,0],[2,2,3,1],[3,2,2,2],[1,0,2,0]],[[1,2,1,0],[3,2,3,1],[2,2,2,2],[1,0,2,0]],[[1,3,1,0],[2,2,3,1],[2,2,2,2],[1,0,2,0]],[[2,2,1,0],[2,2,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,1,0],[2,2,3,1],[2,2,2,2],[2,0,1,1]],[[1,2,1,0],[2,2,3,1],[3,2,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,2,1],[1,2,2,3],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[1,2,2,2],[0,3,2,1]],[[1,1,1,0],[2,3,2,1],[1,2,2,2],[0,2,3,1]],[[1,1,1,0],[2,3,2,1],[1,2,2,2],[0,2,2,2]],[[1,1,1,0],[2,3,2,1],[1,2,4,1],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[1,2,3,1],[0,3,2,1]],[[1,1,1,0],[2,3,2,1],[1,2,3,1],[0,2,3,1]],[[1,1,1,0],[2,3,2,1],[1,2,3,1],[0,2,2,2]],[[1,1,1,0],[2,3,2,1],[1,2,4,2],[0,2,1,1]],[[1,1,1,0],[2,3,2,1],[1,2,3,3],[0,2,1,1]],[[1,1,1,0],[2,3,2,1],[1,2,3,2],[0,2,1,2]],[[1,1,1,0],[2,3,2,1],[1,2,4,2],[0,2,2,0]],[[1,1,1,0],[2,3,2,1],[1,2,3,3],[0,2,2,0]],[[1,1,1,0],[2,3,2,1],[1,2,3,2],[0,3,2,0]],[[1,1,1,0],[2,3,2,1],[1,2,3,2],[0,2,3,0]],[[1,2,1,0],[3,2,3,1],[2,2,2,2],[1,0,1,1]],[[1,3,1,0],[2,2,3,1],[2,2,2,2],[1,0,1,1]],[[2,2,1,0],[2,2,3,1],[2,2,2,2],[1,0,1,1]],[[2,1,1,0],[2,3,2,1],[1,3,1,2],[0,2,2,1]],[[1,1,1,0],[3,3,2,1],[1,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,4,2,1],[1,3,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[1,4,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,1,3],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,1,2],[0,3,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,1,2],[0,2,3,1]],[[1,1,1,0],[2,3,2,1],[1,3,1,2],[0,2,2,2]],[[2,1,1,0],[2,3,2,1],[1,3,1,2],[1,1,2,1]],[[1,1,1,0],[3,3,2,1],[1,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,4,2,1],[1,3,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[1,4,1,2],[1,1,2,1]],[[2,1,1,0],[2,3,2,1],[1,3,2,1],[0,2,2,1]],[[1,1,1,0],[3,3,2,1],[1,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,4,2,1],[1,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[1,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,3,2,1],[1,3,2,1],[0,2,2,2]],[[2,1,1,0],[2,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,4,2,1],[1,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[1,4,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,2,3],[0,1,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,2,2],[0,1,3,1]],[[1,1,1,0],[2,3,2,1],[1,3,2,2],[0,1,2,2]],[[2,1,1,0],[2,3,2,1],[1,3,2,2],[0,2,2,0]],[[1,1,1,0],[3,3,2,1],[1,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,4,2,1],[1,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,2,1],[1,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,2,1],[1,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,3,2,1],[1,3,2,2],[0,2,3,0]],[[1,1,1,0],[2,3,2,1],[1,3,2,3],[1,0,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,2,2],[1,0,3,1]],[[1,1,1,0],[2,3,2,1],[1,3,2,2],[1,0,2,2]],[[2,1,1,0],[2,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,4,2,1],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,1],[1,4,2,2],[1,1,2,0]],[[1,2,1,0],[2,2,3,1],[3,2,2,2],[0,2,1,0]],[[1,2,1,0],[3,2,3,1],[2,2,2,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,1],[2,2,2,2],[0,2,1,0]],[[2,2,1,0],[2,2,3,1],[2,2,2,2],[0,2,1,0]],[[2,1,1,0],[2,3,2,1],[1,3,3,0],[0,2,2,1]],[[1,1,1,0],[3,3,2,1],[1,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,4,2,1],[1,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[1,4,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,0],[0,3,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,0],[0,2,3,1]],[[2,1,1,0],[2,3,2,1],[1,3,3,0],[1,1,2,1]],[[1,1,1,0],[3,3,2,1],[1,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,4,2,1],[1,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[1,4,3,0],[1,1,2,1]],[[2,1,1,0],[2,3,2,1],[1,3,3,1],[0,1,2,1]],[[1,1,1,0],[3,3,2,1],[1,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,4,2,1],[1,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,2,1],[1,4,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,1],[0,1,2,2]],[[2,1,1,0],[2,3,2,1],[1,3,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,2,1],[1,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,4,2,1],[1,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,2,1],[1,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,2,1],[1,3,4,1],[0,2,1,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,1],[0,3,1,1]],[[2,1,1,0],[2,3,2,1],[1,3,3,1],[1,0,2,1]],[[1,1,1,0],[3,3,2,1],[1,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,4,2,1],[1,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,2,1],[1,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,4,1],[1,0,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,1],[1,0,3,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,1],[1,0,2,2]],[[2,1,1,0],[2,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,4,2,1],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,2,1],[1,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,2,1],[1,3,4,1],[1,1,1,1]],[[2,1,1,0],[2,3,2,1],[1,3,3,1],[1,2,0,1]],[[1,1,1,0],[3,3,2,1],[1,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,4,2,1],[1,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,2,1],[1,4,3,1],[1,2,0,1]],[[1,2,1,0],[2,2,3,1],[3,2,2,2],[0,2,0,1]],[[1,2,1,0],[3,2,3,1],[2,2,2,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,1],[2,2,2,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,1,0],[2,2,3,1],[3,2,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,1],[1,3,4,2],[0,0,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,3],[0,0,2,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,2],[0,0,2,2]],[[2,1,1,0],[2,3,2,1],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[3,3,2,1],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,4,2,1],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,2,1],[1,4,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,2,1],[1,3,4,2],[0,1,1,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,3],[0,1,1,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,2],[0,1,1,2]],[[2,1,1,0],[2,3,2,1],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[3,3,2,1],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,4,2,1],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,1],[1,4,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,1],[1,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,1],[1,3,3,3],[0,1,2,0]],[[1,1,1,0],[2,3,2,1],[1,3,3,2],[0,1,3,0]],[[2,1,1,0],[2,3,2,1],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[3,3,2,1],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,4,2,1],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,1],[1,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,1],[1,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,3],[0,2,0,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,2],[0,3,0,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,2],[0,2,0,2]],[[2,1,1,0],[2,3,2,1],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[3,3,2,1],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,4,2,1],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,1],[1,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,1],[1,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,1],[1,3,3,3],[0,2,1,0]],[[1,1,1,0],[2,3,2,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[3,2,3,1],[2,2,2,2],[0,1,2,0]],[[1,3,1,0],[2,2,3,1],[2,2,2,2],[0,1,2,0]],[[2,2,1,0],[2,2,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,1,0],[2,2,3,1],[3,2,2,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,1],[2,2,2,2],[0,1,1,1]],[[1,3,1,0],[2,2,3,1],[2,2,2,2],[0,1,1,1]],[[2,2,1,0],[2,2,3,1],[2,2,2,2],[0,1,1,1]],[[2,1,1,0],[2,3,2,1],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[3,3,2,1],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,4,2,1],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,2,1],[1,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,2,1],[1,3,4,2],[1,0,1,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,3],[1,0,1,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,2],[1,0,1,2]],[[2,1,1,0],[2,3,2,1],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[3,3,2,1],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,4,2,1],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,1],[1,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,1],[1,3,4,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,1],[1,3,3,3],[1,0,2,0]],[[1,1,1,0],[2,3,2,1],[1,3,3,2],[1,0,3,0]],[[2,1,1,0],[2,3,2,1],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[3,3,2,1],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,4,2,1],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,1],[1,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,1],[1,3,4,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,3],[1,1,0,1]],[[1,1,1,0],[2,3,2,1],[1,3,3,2],[1,1,0,2]],[[2,1,1,0],[2,3,2,1],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[3,3,2,1],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,4,2,1],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,1],[1,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,1],[1,3,4,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,1],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[2,2,3,1],[2,2,2,1],[2,2,0,1]],[[1,2,1,0],[2,2,3,1],[3,2,2,1],[1,2,0,1]],[[1,2,1,0],[3,2,3,1],[2,2,2,1],[1,2,0,1]],[[1,3,1,0],[2,2,3,1],[2,2,2,1],[1,2,0,1]],[[2,1,1,0],[2,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,4,2,1],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,2,1],[1,4,3,2],[1,2,0,0]],[[2,2,1,0],[2,2,3,1],[2,2,2,1],[1,2,0,1]],[[1,2,1,0],[2,2,3,1],[2,2,2,1],[2,1,1,1]],[[1,2,1,0],[2,2,3,1],[3,2,2,1],[1,1,1,1]],[[1,2,1,0],[3,2,3,1],[2,2,2,1],[1,1,1,1]],[[1,3,1,0],[2,2,3,1],[2,2,2,1],[1,1,1,1]],[[2,2,1,0],[2,2,3,1],[2,2,2,1],[1,1,1,1]],[[1,2,1,0],[2,2,3,1],[2,2,2,1],[2,0,2,1]],[[1,2,1,0],[2,2,3,1],[3,2,2,1],[1,0,2,1]],[[1,2,1,0],[3,2,3,1],[2,2,2,1],[1,0,2,1]],[[1,3,1,0],[2,2,3,1],[2,2,2,1],[1,0,2,1]],[[2,2,1,0],[2,2,3,1],[2,2,2,1],[1,0,2,1]],[[1,2,1,0],[2,2,3,1],[3,2,2,1],[0,2,1,1]],[[1,2,1,0],[3,2,3,1],[2,2,2,1],[0,2,1,1]],[[1,3,1,0],[2,2,3,1],[2,2,2,1],[0,2,1,1]],[[2,2,1,0],[2,2,3,1],[2,2,2,1],[0,2,1,1]],[[1,2,1,0],[2,2,3,1],[3,2,2,1],[0,1,2,1]],[[1,2,1,0],[3,2,3,1],[2,2,2,1],[0,1,2,1]],[[1,3,1,0],[2,2,3,1],[2,2,2,1],[0,1,2,1]],[[2,2,1,0],[2,2,3,1],[2,2,2,1],[0,1,2,1]],[[2,1,1,0],[2,3,2,1],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[3,3,2,1],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,4,2,1],[2,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[3,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,0,2,3],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,0,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,0,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,1],[2,0,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,1],[2,0,2,2],[1,2,2,2]],[[2,1,1,0],[2,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[3,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,4,2,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[3,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,0,4,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,0,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,0,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,2,1],[2,0,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,2,1],[2,0,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,2,1],[2,0,4,2],[1,2,1,1]],[[1,1,1,0],[2,3,2,1],[2,0,3,3],[1,2,1,1]],[[1,1,1,0],[2,3,2,1],[2,0,3,2],[1,2,1,2]],[[2,1,1,0],[2,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[3,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,4,2,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[3,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[2,0,4,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[2,0,3,3],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[2,0,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,2,1],[2,0,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,2,1],[2,0,3,2],[1,2,3,0]],[[2,1,1,0],[2,3,2,1],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[3,3,2,1],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,4,2,1],[2,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[3,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,1,1,3],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,1,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,1,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,1],[2,1,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,1],[2,1,1,2],[1,2,2,2]],[[2,1,1,0],[2,3,2,1],[2,1,2,1],[1,2,2,1]],[[1,1,1,0],[3,3,2,1],[2,1,2,1],[1,2,2,1]],[[1,1,1,0],[2,4,2,1],[2,1,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[3,1,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,1,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,1,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,2,1],[2,1,2,1],[1,2,3,1]],[[1,1,1,0],[2,3,2,1],[2,1,2,1],[1,2,2,2]],[[2,1,1,0],[2,3,2,1],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,2,1],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,4,2,1],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[3,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[2,1,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,2,1],[2,1,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,2,1],[2,1,2,2],[1,2,3,0]],[[2,1,1,0],[2,3,2,1],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[3,3,2,1],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,4,2,1],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[3,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,1,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,1,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,2,1],[2,1,3,0],[1,2,3,1]],[[2,1,1,0],[2,3,2,1],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,2,1],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,4,2,1],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,2,1],[3,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,2,1],[2,1,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,2,1],[2,1,3,1],[1,3,1,1]],[[2,1,1,0],[2,3,2,1],[2,1,3,2],[1,2,0,1]],[[1,1,1,0],[3,3,2,1],[2,1,3,2],[1,2,0,1]],[[1,1,1,0],[2,4,2,1],[2,1,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,2,1],[3,1,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,2,1],[2,1,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,2,1],[2,1,3,2],[1,3,0,1]],[[2,1,1,0],[2,3,2,1],[2,1,3,2],[1,2,1,0]],[[1,1,1,0],[3,3,2,1],[2,1,3,2],[1,2,1,0]],[[1,1,1,0],[2,4,2,1],[2,1,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,1],[3,1,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,1],[2,1,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,2,1],[2,1,3,2],[1,3,1,0]],[[2,1,1,0],[2,3,2,1],[2,2,1,2],[0,2,2,1]],[[1,1,1,0],[3,3,2,1],[2,2,1,2],[0,2,2,1]],[[1,1,1,0],[2,4,2,1],[2,2,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[3,2,1,2],[0,2,2,1]],[[2,1,1,0],[2,3,2,1],[2,2,1,2],[1,1,2,1]],[[1,1,1,0],[3,3,2,1],[2,2,1,2],[1,1,2,1]],[[1,1,1,0],[2,4,2,1],[2,2,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[3,2,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[2,2,1,2],[2,1,2,1]],[[2,1,1,0],[2,3,2,1],[2,2,2,1],[0,2,2,1]],[[1,1,1,0],[3,3,2,1],[2,2,2,1],[0,2,2,1]],[[1,1,1,0],[2,4,2,1],[2,2,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[3,2,2,1],[0,2,2,1]],[[2,1,1,0],[2,3,2,1],[2,2,2,1],[1,1,2,1]],[[1,1,1,0],[3,3,2,1],[2,2,2,1],[1,1,2,1]],[[1,1,1,0],[2,4,2,1],[2,2,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[3,2,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[2,2,2,1],[2,1,2,1]],[[2,1,1,0],[2,3,2,1],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[3,3,2,1],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[2,4,2,1],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,2,1],[3,2,2,2],[0,2,2,0]],[[2,1,1,0],[2,3,2,1],[2,2,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,2,1],[2,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,4,2,1],[2,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,1],[3,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,1],[2,2,2,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,1],[2,2,1,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,1],[3,2,1,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,1],[2,2,1,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,1],[2,2,1,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,1],[2,2,1,2],[1,1,2,0]],[[2,1,1,0],[2,3,2,1],[2,2,3,0],[0,2,2,1]],[[1,1,1,0],[3,3,2,1],[2,2,3,0],[0,2,2,1]],[[1,1,1,0],[2,4,2,1],[2,2,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,2,1],[3,2,3,0],[0,2,2,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,0],[1,1,2,1]],[[1,1,1,0],[3,3,2,1],[2,2,3,0],[1,1,2,1]],[[1,1,1,0],[2,4,2,1],[2,2,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[3,2,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,1],[2,2,3,0],[2,1,2,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[3,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[2,4,2,1],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,2,1],[3,2,3,1],[0,1,2,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,4,2,1],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,2,1],[3,2,3,1],[0,2,1,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,1,1,0],[3,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,4,2,1],[2,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,2,1],[3,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,2,1],[2,2,3,1],[2,0,2,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,4,2,1],[2,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,2,1],[3,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,2,1],[2,2,3,1],[2,1,1,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,1],[1,2,0,1]],[[1,1,1,0],[3,3,2,1],[2,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,4,2,1],[2,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,2,1],[3,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,2,1],[2,2,3,1],[2,2,0,1]],[[1,2,1,0],[2,2,3,1],[3,2,1,2],[0,2,2,0]],[[1,2,1,0],[3,2,3,1],[2,2,1,2],[0,2,2,0]],[[1,3,1,0],[2,2,3,1],[2,2,1,2],[0,2,2,0]],[[2,2,1,0],[2,2,3,1],[2,2,1,2],[0,2,2,0]],[[2,1,1,0],[2,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[3,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[2,4,2,1],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,2,1],[3,2,3,2],[0,1,1,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[3,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[2,4,2,1],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,1],[3,2,3,2],[0,1,2,0]],[[2,1,1,0],[2,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[3,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[2,4,2,1],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,1],[3,2,3,2],[0,2,0,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[3,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[2,4,2,1],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,1],[3,2,3,2],[0,2,1,0]],[[1,2,1,0],[2,2,3,1],[2,2,1,1],[2,1,2,1]],[[1,2,1,0],[2,2,3,1],[3,2,1,1],[1,1,2,1]],[[1,2,1,0],[3,2,3,1],[2,2,1,1],[1,1,2,1]],[[1,3,1,0],[2,2,3,1],[2,2,1,1],[1,1,2,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[3,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,4,2,1],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,2,1],[3,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,2,1],[2,2,3,2],[2,0,1,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[3,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,4,2,1],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,1],[3,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,1],[2,2,3,2],[2,0,2,0]],[[2,1,1,0],[2,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[3,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,4,2,1],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,1],[3,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,1],[2,2,3,2],[2,1,0,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[3,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,4,2,1],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,1],[3,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,1],[2,2,3,2],[2,1,1,0]],[[2,2,1,0],[2,2,3,1],[2,2,1,1],[1,1,2,1]],[[1,2,1,0],[2,2,3,1],[3,2,1,1],[0,2,2,1]],[[1,2,1,0],[3,2,3,1],[2,2,1,1],[0,2,2,1]],[[1,3,1,0],[2,2,3,1],[2,2,1,1],[0,2,2,1]],[[2,2,1,0],[2,2,3,1],[2,2,1,1],[0,2,2,1]],[[2,1,1,0],[2,3,2,1],[2,2,3,2],[1,2,0,0]],[[1,1,1,0],[3,3,2,1],[2,2,3,2],[1,2,0,0]],[[1,1,1,0],[2,4,2,1],[2,2,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,2,1],[3,2,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,2,1],[2,2,3,2],[2,2,0,0]],[[1,2,1,0],[2,2,3,1],[2,2,0,2],[1,3,2,0]],[[1,2,1,0],[2,2,3,1],[2,2,0,2],[2,2,2,0]],[[1,2,1,0],[2,2,3,1],[3,2,0,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,1],[2,2,0,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,1],[2,2,0,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,1],[2,2,0,2],[1,2,2,0]],[[1,2,1,0],[2,2,3,1],[2,2,0,2],[2,1,2,1]],[[1,2,1,0],[2,2,3,1],[3,2,0,2],[1,1,2,1]],[[1,2,1,0],[3,2,3,1],[2,2,0,2],[1,1,2,1]],[[1,3,1,0],[2,2,3,1],[2,2,0,2],[1,1,2,1]],[[2,2,1,0],[2,2,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,1,0],[2,2,3,1],[3,2,0,2],[0,2,2,1]],[[1,2,1,0],[3,2,3,1],[2,2,0,2],[0,2,2,1]],[[1,3,1,0],[2,2,3,1],[2,2,0,2],[0,2,2,1]],[[2,2,1,0],[2,2,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,1,0],[2,2,3,1],[2,2,0,1],[1,3,2,1]],[[1,2,1,0],[2,2,3,1],[2,2,0,1],[2,2,2,1]],[[1,2,1,0],[2,2,3,1],[3,2,0,1],[1,2,2,1]],[[1,2,1,0],[3,2,3,1],[2,2,0,1],[1,2,2,1]],[[2,1,1,0],[2,3,2,1],[2,3,0,1],[1,2,2,1]],[[1,1,1,0],[3,3,2,1],[2,3,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[3,3,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,3,0,1],[2,2,2,1]],[[1,1,1,0],[2,3,2,1],[2,3,0,1],[1,3,2,1]],[[2,1,1,0],[2,3,2,1],[2,3,0,2],[1,2,2,0]],[[1,1,1,0],[3,3,2,1],[2,3,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[3,3,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,1],[2,3,0,2],[2,2,2,0]],[[1,1,1,0],[2,3,2,1],[2,3,0,2],[1,3,2,0]],[[1,3,1,0],[2,2,3,1],[2,2,0,1],[1,2,2,1]],[[2,2,1,0],[2,2,3,1],[2,2,0,1],[1,2,2,1]],[[1,2,1,0],[2,2,3,1],[2,1,3,2],[2,1,1,0]],[[1,2,1,0],[2,2,3,1],[3,1,3,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,1],[2,1,3,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,1],[2,1,3,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,1],[2,1,3,2],[1,1,1,0]],[[1,2,1,0],[2,2,3,1],[2,1,3,2],[2,1,0,1]],[[1,2,1,0],[2,2,3,1],[3,1,3,2],[1,1,0,1]],[[1,2,1,0],[3,2,3,1],[2,1,3,2],[1,1,0,1]],[[1,3,1,0],[2,2,3,1],[2,1,3,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,1],[2,1,3,2],[1,1,0,1]],[[1,2,1,0],[2,2,3,1],[2,1,3,2],[2,0,2,0]],[[1,2,1,0],[2,2,3,1],[3,1,3,2],[1,0,2,0]],[[1,2,1,0],[3,2,3,1],[2,1,3,2],[1,0,2,0]],[[1,3,1,0],[2,2,3,1],[2,1,3,2],[1,0,2,0]],[[2,2,1,0],[2,2,3,1],[2,1,3,2],[1,0,2,0]],[[1,2,1,0],[2,2,3,1],[2,1,3,2],[2,0,1,1]],[[1,2,1,0],[2,2,3,1],[3,1,3,2],[1,0,1,1]],[[1,2,1,0],[3,2,3,1],[2,1,3,2],[1,0,1,1]],[[1,3,1,0],[2,2,3,1],[2,1,3,2],[1,0,1,1]],[[2,2,1,0],[2,2,3,1],[2,1,3,2],[1,0,1,1]],[[1,2,1,0],[2,2,3,1],[3,1,3,2],[0,2,1,0]],[[1,2,1,0],[3,2,3,1],[2,1,3,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,1],[2,1,3,2],[0,2,1,0]],[[2,2,1,0],[2,2,3,1],[2,1,3,2],[0,2,1,0]],[[1,2,1,0],[2,2,3,1],[3,1,3,2],[0,2,0,1]],[[1,2,1,0],[3,2,3,1],[2,1,3,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,1],[2,1,3,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,1],[2,1,3,2],[0,2,0,1]],[[1,2,1,0],[2,2,3,1],[3,1,3,2],[0,1,2,0]],[[1,2,1,0],[3,2,3,1],[2,1,3,2],[0,1,2,0]],[[1,3,1,0],[2,2,3,1],[2,1,3,2],[0,1,2,0]],[[2,1,1,0],[2,3,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[3,3,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,4,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,2,1],[3,3,3,1],[1,0,1,1]],[[2,2,1,0],[2,2,3,1],[2,1,3,2],[0,1,2,0]],[[1,2,1,0],[2,2,3,1],[3,1,3,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,1],[2,1,3,2],[0,1,1,1]],[[1,3,1,0],[2,2,3,1],[2,1,3,2],[0,1,1,1]],[[2,2,1,0],[2,2,3,1],[2,1,3,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,1],[2,1,3,2],[0,0,2,1]],[[1,3,1,0],[2,2,3,1],[2,1,3,2],[0,0,2,1]],[[2,2,1,0],[2,2,3,1],[2,1,3,2],[0,0,2,1]],[[1,2,1,0],[2,2,3,1],[2,1,3,1],[2,1,1,1]],[[1,2,1,0],[2,2,3,1],[3,1,3,1],[1,1,1,1]],[[1,2,1,0],[3,2,3,1],[2,1,3,1],[1,1,1,1]],[[1,3,1,0],[2,2,3,1],[2,1,3,1],[1,1,1,1]],[[2,2,1,0],[2,2,3,1],[2,1,3,1],[1,1,1,1]],[[1,2,1,0],[2,2,3,1],[2,1,3,1],[2,0,2,1]],[[1,2,1,0],[2,2,3,1],[3,1,3,1],[1,0,2,1]],[[1,2,1,0],[3,2,3,1],[2,1,3,1],[1,0,2,1]],[[1,3,1,0],[2,2,3,1],[2,1,3,1],[1,0,2,1]],[[2,2,1,0],[2,2,3,1],[2,1,3,1],[1,0,2,1]],[[1,2,1,0],[2,2,3,1],[3,1,3,1],[0,2,1,1]],[[1,2,1,0],[3,2,3,1],[2,1,3,1],[0,2,1,1]],[[1,3,1,0],[2,2,3,1],[2,1,3,1],[0,2,1,1]],[[2,2,1,0],[2,2,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,1,0],[2,2,3,1],[3,1,3,1],[0,1,2,1]],[[1,2,1,0],[3,2,3,1],[2,1,3,1],[0,1,2,1]],[[1,3,1,0],[2,2,3,1],[2,1,3,1],[0,1,2,1]],[[2,2,1,0],[2,2,3,1],[2,1,3,1],[0,1,2,1]],[[1,2,1,0],[2,2,3,1],[2,1,2,2],[1,3,1,0]],[[1,2,1,0],[2,2,3,1],[2,1,2,2],[2,2,1,0]],[[1,2,1,0],[2,2,3,1],[3,1,2,2],[1,2,1,0]],[[2,1,1,0],[2,3,2,1],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[3,3,2,1],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[2,4,2,1],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[2,3,2,1],[3,3,3,2],[1,0,0,1]],[[2,1,1,0],[2,3,2,1],[2,3,3,2],[1,0,1,0]],[[1,1,1,0],[3,3,2,1],[2,3,3,2],[1,0,1,0]],[[1,1,1,0],[2,4,2,1],[2,3,3,2],[1,0,1,0]],[[1,1,1,0],[2,3,2,1],[3,3,3,2],[1,0,1,0]],[[1,2,1,0],[3,2,3,1],[2,1,2,2],[1,2,1,0]],[[1,3,1,0],[2,2,3,1],[2,1,2,2],[1,2,1,0]],[[2,2,1,0],[2,2,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,1,0],[2,2,3,1],[2,1,2,2],[1,3,0,1]],[[1,2,1,0],[2,2,3,1],[2,1,2,2],[2,2,0,1]],[[1,2,1,0],[2,2,3,1],[3,1,2,2],[1,2,0,1]],[[1,2,1,0],[3,2,3,1],[2,1,2,2],[1,2,0,1]],[[1,3,1,0],[2,2,3,1],[2,1,2,2],[1,2,0,1]],[[2,2,1,0],[2,2,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,1,0],[2,2,3,1],[2,1,2,1],[1,3,1,1]],[[1,2,1,0],[2,2,3,1],[2,1,2,1],[2,2,1,1]],[[1,2,1,0],[2,2,3,1],[3,1,2,1],[1,2,1,1]],[[1,2,1,0],[3,2,3,1],[2,1,2,1],[1,2,1,1]],[[1,3,1,0],[2,2,3,1],[2,1,2,1],[1,2,1,1]],[[2,2,1,0],[2,2,3,1],[2,1,2,1],[1,2,1,1]],[[1,2,1,0],[2,2,3,1],[2,1,1,2],[1,2,3,0]],[[1,2,1,0],[2,2,3,1],[2,1,1,2],[1,3,2,0]],[[1,2,1,0],[2,2,3,1],[2,1,1,2],[2,2,2,0]],[[1,2,1,0],[2,2,3,1],[3,1,1,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,1],[2,1,1,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,1],[2,1,1,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,1,0],[2,2,3,1],[2,1,1,1],[1,2,2,2]],[[1,2,1,0],[2,2,3,1],[2,1,1,1],[1,2,3,1]],[[1,2,1,0],[2,2,3,1],[2,1,1,1],[1,3,2,1]],[[1,2,1,0],[2,2,3,1],[2,1,1,1],[2,2,2,1]],[[1,2,1,0],[2,2,3,1],[3,1,1,1],[1,2,2,1]],[[1,2,1,0],[3,2,3,1],[2,1,1,1],[1,2,2,1]],[[1,3,1,0],[2,2,3,1],[2,1,1,1],[1,2,2,1]],[[2,2,1,0],[2,2,3,1],[2,1,1,1],[1,2,2,1]],[[1,2,1,0],[2,2,3,1],[2,1,0,2],[1,2,2,2]],[[1,2,1,0],[2,2,3,1],[2,1,0,2],[1,2,3,1]],[[1,2,1,0],[2,2,3,1],[2,1,0,2],[1,3,2,1]],[[1,2,1,0],[2,2,3,1],[2,1,0,2],[2,2,2,1]],[[1,2,1,0],[2,2,3,1],[2,1,0,3],[1,2,2,1]],[[1,2,1,0],[2,2,3,1],[3,1,0,2],[1,2,2,1]],[[1,2,1,0],[3,2,3,1],[2,1,0,2],[1,2,2,1]],[[1,3,1,0],[2,2,3,1],[2,1,0,2],[1,2,2,1]],[[2,2,1,0],[2,2,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,1,0],[2,2,3,1],[2,0,3,2],[1,3,1,0]],[[1,2,1,0],[2,2,3,1],[2,0,3,2],[2,2,1,0]],[[1,2,1,0],[2,2,3,1],[3,0,3,2],[1,2,1,0]],[[1,2,1,0],[3,2,3,1],[2,0,3,2],[1,2,1,0]],[[1,3,1,0],[2,2,3,1],[2,0,3,2],[1,2,1,0]],[[2,2,1,0],[2,2,3,1],[2,0,3,2],[1,2,1,0]],[[1,2,1,0],[2,2,3,1],[2,0,3,2],[1,3,0,1]],[[1,2,1,0],[2,2,3,1],[2,0,3,2],[2,2,0,1]],[[1,2,1,0],[2,2,3,1],[3,0,3,2],[1,2,0,1]],[[1,2,1,0],[3,2,3,1],[2,0,3,2],[1,2,0,1]],[[1,3,1,0],[2,2,3,1],[2,0,3,2],[1,2,0,1]],[[2,2,1,0],[2,2,3,1],[2,0,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,2,3],[0,0,3,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,0,3,3],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,0,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[0,0,3,2],[1,2,2,2]],[[1,1,1,0],[2,3,2,3],[0,1,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,1,2,3],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,1,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,1,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,2],[0,1,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[0,1,2,2],[1,2,2,2]],[[1,1,1,0],[2,3,2,2],[0,1,4,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,1,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,1,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,2,2],[0,1,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[0,1,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,2,3],[0,1,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,2,2],[0,1,4,2],[1,2,1,1]],[[1,1,1,0],[2,3,2,2],[0,1,3,3],[1,2,1,1]],[[1,1,1,0],[2,3,2,2],[0,1,3,2],[1,2,1,2]],[[1,1,1,0],[2,3,2,3],[0,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[0,1,4,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[0,1,3,3],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[0,1,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,2,2],[0,1,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,2,2],[0,1,3,2],[1,2,3,0]],[[1,1,1,0],[2,3,2,3],[0,2,2,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[0,2,2,3],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[0,2,2,2],[1,1,3,1]],[[1,1,1,0],[2,3,2,2],[0,2,2,2],[1,1,2,2]],[[1,1,1,0],[2,3,2,2],[0,2,4,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,0],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,0],[1,2,2,2]],[[1,1,1,0],[2,3,2,2],[0,2,4,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,1],[1,1,3,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,1],[1,1,2,2]],[[1,1,1,0],[2,3,2,2],[0,2,4,1],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[0,2,3,1],[2,2,2,0]],[[1,1,1,0],[2,3,2,2],[0,2,3,1],[1,3,2,0]],[[1,1,1,0],[2,3,2,2],[0,2,3,1],[1,2,3,0]],[[1,1,1,0],[2,3,2,3],[0,2,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[0,2,4,2],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,3],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,2],[1,0,2,2]],[[1,1,1,0],[2,3,2,3],[0,2,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[0,2,4,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,3],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,2],[1,1,1,2]],[[1,1,1,0],[2,3,2,3],[0,2,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[0,2,4,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[0,2,3,3],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[0,2,3,2],[1,1,3,0]],[[1,1,1,0],[2,3,2,3],[0,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[0,2,4,2],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,3],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[0,2,3,2],[1,2,0,2]],[[1,1,1,0],[2,3,2,3],[0,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,2],[0,2,4,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,1,0],[2,2,3,1],[2,0,3,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,1],[3,0,3,2],[1,1,2,0]],[[2,1,1,0],[2,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,0],[3,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,4,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,3],[0,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,4,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,0,3],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,0,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,0,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[0,3,0,2],[1,2,2,2]],[[2,1,1,0],[2,3,2,2],[0,3,2,0],[1,2,2,1]],[[1,1,1,0],[3,3,2,2],[0,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,4,2,2],[0,3,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,4,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,2,0],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,2,0],[1,3,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,2,0],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[0,3,2,0],[1,2,2,2]],[[2,1,1,0],[2,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,1,1,0],[3,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,1,1,0],[2,4,2,2],[0,3,2,1],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[0,4,2,1],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[0,3,2,1],[2,2,2,0]],[[1,1,1,0],[2,3,2,2],[0,3,2,1],[1,3,2,0]],[[1,1,1,0],[2,3,2,2],[0,3,2,1],[1,2,3,0]],[[1,1,1,0],[2,3,2,3],[0,3,2,2],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,2,3],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,2,2],[0,1,3,1]],[[1,1,1,0],[2,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,2,1,0],[3,2,3,1],[2,0,3,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,1],[2,0,3,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,1],[2,0,3,2],[1,1,2,0]],[[1,2,1,0],[2,2,3,1],[2,0,3,2],[2,1,1,1]],[[1,2,1,0],[2,2,3,1],[3,0,3,2],[1,1,1,1]],[[1,2,1,0],[3,2,3,1],[2,0,3,2],[1,1,1,1]],[[1,3,1,0],[2,2,3,1],[2,0,3,2],[1,1,1,1]],[[2,2,1,0],[2,2,3,1],[2,0,3,2],[1,1,1,1]],[[2,1,1,0],[2,3,2,2],[0,3,3,0],[1,1,2,1]],[[1,1,1,0],[3,3,2,2],[0,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,4,2,2],[0,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[0,4,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,4,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,0],[1,1,3,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,0],[1,1,2,2]],[[2,1,1,0],[2,3,2,2],[0,3,3,0],[1,2,1,1]],[[1,1,1,0],[3,3,2,2],[0,3,3,0],[1,2,1,1]],[[1,1,1,0],[2,4,2,2],[0,3,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,2,2],[0,4,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,2,2],[0,3,4,0],[1,2,1,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,0],[2,2,1,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,0],[1,3,1,1]],[[1,1,1,0],[2,3,2,2],[0,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,1],[0,1,2,2]],[[2,1,1,0],[2,3,2,2],[0,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,2,2],[0,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,4,2,2],[0,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[0,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[0,3,4,1],[1,1,1,1]],[[2,1,1,0],[2,3,2,2],[0,3,3,1],[1,1,2,0]],[[1,1,1,0],[3,3,2,2],[0,3,3,1],[1,1,2,0]],[[1,1,1,0],[2,4,2,2],[0,3,3,1],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[0,4,3,1],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[0,3,4,1],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[0,3,3,1],[1,1,3,0]],[[2,1,1,0],[2,3,2,2],[0,3,3,1],[1,2,0,1]],[[1,1,1,0],[3,3,2,2],[0,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,4,2,2],[0,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[0,4,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[0,3,4,1],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,1],[2,2,0,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,1],[1,3,0,1]],[[2,1,1,0],[2,3,2,2],[0,3,3,1],[1,2,1,0]],[[1,1,1,0],[3,3,2,2],[0,3,3,1],[1,2,1,0]],[[1,1,1,0],[2,4,2,2],[0,3,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,2,2],[0,4,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,2,2],[0,3,4,1],[1,2,1,0]],[[1,1,1,0],[2,3,2,2],[0,3,3,1],[2,2,1,0]],[[1,1,1,0],[2,3,2,2],[0,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,2,3,1],[3,0,3,2],[0,2,2,0]],[[1,2,1,0],[3,2,3,1],[2,0,3,2],[0,2,2,0]],[[1,3,1,0],[2,2,3,1],[2,0,3,2],[0,2,2,0]],[[2,2,1,0],[2,2,3,1],[2,0,3,2],[0,2,2,0]],[[1,2,1,0],[2,2,3,1],[3,0,3,2],[0,2,1,1]],[[1,2,1,0],[3,2,3,1],[2,0,3,2],[0,2,1,1]],[[1,3,1,0],[2,2,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,2,3],[0,3,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,4,2],[0,0,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,3],[0,0,2,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,2],[0,0,2,2]],[[1,1,1,0],[2,3,2,3],[0,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[0,3,4,2],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,3],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,2],[0,1,1,2]],[[1,1,1,0],[2,3,2,3],[0,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[0,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[0,3,3,3],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[0,3,3,2],[0,1,3,0]],[[1,1,1,0],[2,3,2,3],[0,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[0,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,3],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[0,3,3,2],[0,2,0,2]],[[1,1,1,0],[2,3,2,3],[0,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,2],[0,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,2],[0,3,3,3],[0,2,1,0]],[[2,2,1,0],[2,2,3,1],[2,0,3,2],[0,2,1,1]],[[1,2,1,0],[2,2,3,1],[2,0,3,1],[1,3,1,1]],[[1,2,1,0],[2,2,3,1],[2,0,3,1],[2,2,1,1]],[[1,2,1,0],[2,2,3,1],[3,0,3,1],[1,2,1,1]],[[1,2,1,0],[3,2,3,1],[2,0,3,1],[1,2,1,1]],[[1,3,1,0],[2,2,3,1],[2,0,3,1],[1,2,1,1]],[[2,2,1,0],[2,2,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,1,0],[2,2,3,1],[2,0,3,1],[2,1,2,1]],[[1,2,1,0],[2,2,3,1],[3,0,3,1],[1,1,2,1]],[[1,2,1,0],[3,2,3,1],[2,0,3,1],[1,1,2,1]],[[1,3,1,0],[2,2,3,1],[2,0,3,1],[1,1,2,1]],[[2,2,1,0],[2,2,3,1],[2,0,3,1],[1,1,2,1]],[[1,2,1,0],[2,2,3,1],[3,0,3,1],[0,2,2,1]],[[1,2,1,0],[3,2,3,1],[2,0,3,1],[0,2,2,1]],[[1,3,1,0],[2,2,3,1],[2,0,3,1],[0,2,2,1]],[[2,2,1,0],[2,2,3,1],[2,0,3,1],[0,2,2,1]],[[1,2,1,0],[2,2,3,1],[2,0,2,2],[1,2,3,0]],[[1,2,1,0],[2,2,3,1],[2,0,2,2],[1,3,2,0]],[[1,2,1,0],[2,2,3,1],[2,0,2,2],[2,2,2,0]],[[1,2,1,0],[2,2,3,1],[3,0,2,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,1],[2,0,2,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,1],[2,0,2,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,1,0],[2,2,3,1],[2,0,2,1],[1,2,2,2]],[[1,2,1,0],[2,2,3,1],[2,0,2,1],[1,2,3,1]],[[1,2,1,0],[2,2,3,1],[2,0,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,2,3],[1,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,0,2,3],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,0,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,0,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,2],[1,0,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[1,0,2,2],[1,2,2,2]],[[1,1,1,0],[2,3,2,2],[1,0,4,1],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,0,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,0,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,2,2],[1,0,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[1,0,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,2,3],[1,0,3,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,0,3,3],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,0,3,2],[0,2,3,1]],[[1,1,1,0],[2,3,2,2],[1,0,3,2],[0,2,2,2]],[[1,1,1,0],[2,3,2,3],[1,0,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,2,2],[1,0,4,2],[1,2,1,1]],[[1,1,1,0],[2,3,2,2],[1,0,3,3],[1,2,1,1]],[[1,1,1,0],[2,3,2,2],[1,0,3,2],[1,2,1,2]],[[1,1,1,0],[2,3,2,3],[1,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[1,0,4,2],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[1,0,3,3],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[1,0,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,2,2],[1,0,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,2,2],[1,0,3,2],[1,2,3,0]],[[1,1,1,0],[2,3,2,3],[1,1,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,1,2,3],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,1,2,2],[0,3,2,1]],[[1,1,1,0],[2,3,2,2],[1,1,2,2],[0,2,3,1]],[[1,1,1,0],[2,3,2,2],[1,1,2,2],[0,2,2,2]],[[1,1,1,0],[2,3,2,2],[1,1,4,1],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,1,3,1],[0,3,2,1]],[[1,1,1,0],[2,3,2,2],[1,1,3,1],[0,2,3,1]],[[1,1,1,0],[2,3,2,2],[1,1,3,1],[0,2,2,2]],[[1,1,1,0],[2,3,2,3],[1,1,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,2,2],[1,1,4,2],[0,2,1,1]],[[1,1,1,0],[2,3,2,2],[1,1,3,3],[0,2,1,1]],[[1,1,1,0],[2,3,2,2],[1,1,3,2],[0,2,1,2]],[[1,1,1,0],[2,3,2,3],[1,1,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,2,2],[1,1,4,2],[0,2,2,0]],[[1,1,1,0],[2,3,2,2],[1,1,3,3],[0,2,2,0]],[[1,1,1,0],[2,3,2,2],[1,1,3,2],[0,3,2,0]],[[1,1,1,0],[2,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,1,0],[2,2,3,1],[2,0,2,1],[2,2,2,1]],[[1,2,1,0],[2,2,3,1],[3,0,2,1],[1,2,2,1]],[[1,2,1,0],[3,2,3,1],[2,0,2,1],[1,2,2,1]],[[1,3,1,0],[2,2,3,1],[2,0,2,1],[1,2,2,1]],[[2,2,1,0],[2,2,3,1],[2,0,2,1],[1,2,2,1]],[[1,2,1,0],[2,2,3,1],[2,0,1,2],[1,2,2,2]],[[1,2,1,0],[2,2,3,1],[2,0,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,3],[1,2,2,2],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,2,3],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,2,2],[0,1,3,1]],[[1,1,1,0],[2,3,2,2],[1,2,2,2],[0,1,2,2]],[[1,1,1,0],[2,3,2,3],[1,2,2,2],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,2,3],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,2,2],[1,0,3,1]],[[1,1,1,0],[2,3,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,1,0],[2,2,3,1],[2,0,1,2],[1,3,2,1]],[[1,2,1,0],[2,2,3,1],[2,0,1,2],[2,2,2,1]],[[1,2,1,0],[2,2,3,1],[2,0,1,3],[1,2,2,1]],[[1,2,1,0],[2,2,3,1],[3,0,1,2],[1,2,2,1]],[[1,2,1,0],[3,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,3,1,0],[2,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,4,0],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,0],[0,3,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,0],[0,2,3,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,0],[0,2,2,2]],[[1,1,1,0],[2,3,2,2],[1,2,4,1],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,1],[0,1,3,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,1],[0,1,2,2]],[[1,1,1,0],[2,3,2,2],[1,2,4,1],[0,2,2,0]],[[1,1,1,0],[2,3,2,2],[1,2,3,1],[0,3,2,0]],[[1,1,1,0],[2,3,2,2],[1,2,3,1],[0,2,3,0]],[[1,1,1,0],[2,3,2,2],[1,2,4,1],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,1],[1,0,3,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,1],[1,0,2,2]],[[2,2,1,0],[2,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,3],[1,2,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,4,2],[0,0,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,3],[0,0,2,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,2],[0,0,2,2]],[[1,1,1,0],[2,3,2,3],[1,2,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[1,2,4,2],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,3],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,2],[0,1,1,2]],[[1,1,1,0],[2,3,2,3],[1,2,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[1,2,4,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[1,2,3,3],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[1,2,3,2],[0,1,3,0]],[[1,1,1,0],[2,3,2,3],[1,2,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[1,2,4,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,3],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,2],[0,2,0,2]],[[1,1,1,0],[2,3,2,3],[1,2,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,2],[1,2,4,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,1,1,0],[2,3,2,3],[1,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,2,2],[1,2,4,2],[1,0,1,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,3],[1,0,1,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,2],[1,0,1,2]],[[1,1,1,0],[2,3,2,3],[1,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,2],[1,2,4,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,2],[1,2,3,3],[1,0,2,0]],[[1,1,1,0],[2,3,2,2],[1,2,3,2],[1,0,3,0]],[[1,1,1,0],[2,3,2,3],[1,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,2],[1,2,4,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,3],[1,1,0,1]],[[1,1,1,0],[2,3,2,2],[1,2,3,2],[1,1,0,2]],[[1,1,1,0],[2,3,2,3],[1,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,2],[1,2,4,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,1,0],[3,2,3,1],[1,3,3,2],[1,1,0,0]],[[1,3,1,0],[2,2,3,1],[1,3,3,2],[1,1,0,0]],[[2,2,1,0],[2,2,3,1],[1,3,3,2],[1,1,0,0]],[[2,1,1,0],[2,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,0],[3,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,4,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,3],[1,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,4,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,3,0,3],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,3,0,2],[0,3,2,1]],[[1,1,1,0],[2,3,2,2],[1,3,0,2],[0,2,3,1]],[[1,1,1,0],[2,3,2,2],[1,3,0,2],[0,2,2,2]],[[2,1,1,0],[2,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,1,1,0],[3,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,4,2,2],[1,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[1,4,0,2],[1,1,2,1]],[[2,1,1,0],[2,3,2,2],[1,3,2,0],[0,2,2,1]],[[1,1,1,0],[3,3,2,2],[1,3,2,0],[0,2,2,1]],[[1,1,1,0],[2,4,2,2],[1,3,2,0],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,4,2,0],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[1,3,2,0],[0,3,2,1]],[[1,1,1,0],[2,3,2,2],[1,3,2,0],[0,2,3,1]],[[1,1,1,0],[2,3,2,2],[1,3,2,0],[0,2,2,2]],[[2,1,1,0],[2,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,1,1,0],[3,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,4,2,2],[1,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[1,4,2,0],[1,1,2,1]],[[2,1,1,0],[2,3,2,2],[1,3,2,1],[0,2,2,0]],[[1,1,1,0],[3,3,2,2],[1,3,2,1],[0,2,2,0]],[[1,1,1,0],[2,4,2,2],[1,3,2,1],[0,2,2,0]],[[1,1,1,0],[2,3,2,2],[1,4,2,1],[0,2,2,0]],[[1,1,1,0],[2,3,2,2],[1,3,2,1],[0,3,2,0]],[[1,1,1,0],[2,3,2,2],[1,3,2,1],[0,2,3,0]],[[2,1,1,0],[2,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,1,1,0],[3,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,4,2,2],[1,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[1,4,2,1],[1,1,2,0]],[[1,2,1,0],[3,2,3,1],[1,3,3,2],[0,2,0,0]],[[1,3,1,0],[2,2,3,1],[1,3,3,2],[0,2,0,0]],[[2,2,1,0],[2,2,3,1],[1,3,3,2],[0,2,0,0]],[[1,2,1,0],[3,2,3,1],[1,3,3,2],[0,0,2,0]],[[1,3,1,0],[2,2,3,1],[1,3,3,2],[0,0,2,0]],[[2,2,1,0],[2,2,3,1],[1,3,3,2],[0,0,2,0]],[[1,2,1,0],[3,2,3,1],[1,3,3,2],[0,0,1,1]],[[2,1,1,0],[2,3,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,1,0],[3,3,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,4,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[1,4,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[1,3,4,0],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[1,3,3,0],[0,1,3,1]],[[1,1,1,0],[2,3,2,2],[1,3,3,0],[0,1,2,2]],[[2,1,1,0],[2,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,1,1,0],[3,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,4,2,2],[1,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,2,2],[1,4,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,2,2],[1,3,4,0],[0,2,1,1]],[[1,1,1,0],[2,3,2,2],[1,3,3,0],[0,3,1,1]],[[2,1,1,0],[2,3,2,2],[1,3,3,0],[1,0,2,1]],[[1,1,1,0],[3,3,2,2],[1,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,4,2,2],[1,3,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[1,4,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[1,3,4,0],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[1,3,3,0],[1,0,3,1]],[[1,1,1,0],[2,3,2,2],[1,3,3,0],[1,0,2,2]],[[2,1,1,0],[2,3,2,2],[1,3,3,0],[1,1,1,1]],[[1,1,1,0],[3,3,2,2],[1,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,4,2,2],[1,3,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[1,4,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[1,3,4,0],[1,1,1,1]],[[2,1,1,0],[2,3,2,2],[1,3,3,0],[1,2,0,1]],[[1,1,1,0],[3,3,2,2],[1,3,3,0],[1,2,0,1]],[[1,1,1,0],[2,4,2,2],[1,3,3,0],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[1,4,3,0],[1,2,0,1]],[[1,3,1,0],[2,2,3,1],[1,3,3,2],[0,0,1,1]],[[2,2,1,0],[2,2,3,1],[1,3,3,2],[0,0,1,1]],[[2,1,1,0],[2,3,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,1,0],[3,3,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,4,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[1,4,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[1,3,4,1],[0,1,1,1]],[[2,1,1,0],[2,3,2,2],[1,3,3,1],[0,1,2,0]],[[1,1,1,0],[3,3,2,2],[1,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,4,2,2],[1,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[1,4,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[1,3,4,1],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[1,3,3,1],[0,1,3,0]],[[2,1,1,0],[2,3,2,2],[1,3,3,1],[0,2,0,1]],[[1,1,1,0],[3,3,2,2],[1,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,4,2,2],[1,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[1,4,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[1,3,4,1],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[1,3,3,1],[0,3,0,1]],[[2,1,1,0],[2,3,2,2],[1,3,3,1],[0,2,1,0]],[[1,1,1,0],[3,3,2,2],[1,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,4,2,2],[1,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,2,2],[1,4,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,2,2],[1,3,4,1],[0,2,1,0]],[[1,1,1,0],[2,3,2,2],[1,3,3,1],[0,3,1,0]],[[2,1,1,0],[2,3,2,2],[1,3,3,1],[1,0,1,1]],[[1,1,1,0],[3,3,2,2],[1,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,4,2,2],[1,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,2,2],[1,4,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,2,2],[1,3,4,1],[1,0,1,1]],[[2,1,1,0],[2,3,2,2],[1,3,3,1],[1,0,2,0]],[[1,1,1,0],[3,3,2,2],[1,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,4,2,2],[1,3,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,2,2],[1,4,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,2,2],[1,3,4,1],[1,0,2,0]],[[1,1,1,0],[2,3,2,2],[1,3,3,1],[1,0,3,0]],[[2,1,1,0],[2,3,2,2],[1,3,3,1],[1,1,0,1]],[[1,1,1,0],[3,3,2,2],[1,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,4,2,2],[1,3,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,2,2],[1,4,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,2,2],[1,3,4,1],[1,1,0,1]],[[2,1,1,0],[2,3,2,2],[1,3,3,1],[1,1,1,0]],[[1,1,1,0],[3,3,2,2],[1,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,4,2,2],[1,3,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,2,2],[1,4,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,2,2],[1,3,4,1],[1,1,1,0]],[[2,1,1,0],[2,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,1,1,0],[3,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,4,2,2],[1,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,2,1,0],[3,2,3,1],[1,3,3,1],[0,0,2,1]],[[1,3,1,0],[2,2,3,1],[1,3,3,1],[0,0,2,1]],[[2,2,1,0],[2,2,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,2,3],[1,3,3,2],[0,0,1,1]],[[1,1,1,0],[2,3,2,2],[1,3,4,2],[0,0,1,1]],[[1,1,1,0],[2,3,2,2],[1,3,3,3],[0,0,1,1]],[[1,1,1,0],[2,3,2,2],[1,3,3,2],[0,0,1,2]],[[1,1,1,0],[2,3,2,3],[1,3,3,2],[0,0,2,0]],[[1,1,1,0],[2,3,2,2],[1,3,4,2],[0,0,2,0]],[[1,1,1,0],[2,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,1,0],[3,2,3,1],[1,3,2,2],[1,2,0,0]],[[1,3,1,0],[2,2,3,1],[1,3,2,2],[1,2,0,0]],[[2,2,1,0],[2,2,3,1],[1,3,2,2],[1,2,0,0]],[[1,2,1,0],[3,2,3,1],[1,3,2,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,1],[1,3,2,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,1],[1,3,2,2],[1,1,0,1]],[[1,3,1,0],[2,2,3,1],[1,3,2,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,1,0],[3,2,3,1],[1,3,2,2],[1,0,2,0]],[[1,3,1,0],[2,2,3,1],[1,3,2,2],[1,0,2,0]],[[2,2,1,0],[2,2,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,1,0],[3,2,3,1],[1,3,2,2],[1,0,1,1]],[[1,3,1,0],[2,2,3,1],[1,3,2,2],[1,0,1,1]],[[2,2,1,0],[2,2,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,1,0],[3,2,3,1],[1,3,2,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,1],[1,3,2,2],[0,2,1,0]],[[2,2,1,0],[2,2,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,1,0],[3,2,3,1],[1,3,2,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,1],[1,3,2,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,1,0],[3,2,3,1],[1,3,2,2],[0,1,2,0]],[[1,3,1,0],[2,2,3,1],[1,3,2,2],[0,1,2,0]],[[2,2,1,0],[2,2,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,1,0],[3,2,3,1],[1,3,2,2],[0,1,1,1]],[[1,3,1,0],[2,2,3,1],[1,3,2,2],[0,1,1,1]],[[2,2,1,0],[2,2,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,1],[1,3,2,1],[1,2,0,1]],[[1,3,1,0],[2,2,3,1],[1,3,2,1],[1,2,0,1]],[[2,2,1,0],[2,2,3,1],[1,3,2,1],[1,2,0,1]],[[1,2,1,0],[3,2,3,1],[1,3,2,1],[1,1,1,1]],[[1,3,1,0],[2,2,3,1],[1,3,2,1],[1,1,1,1]],[[2,2,1,0],[2,2,3,1],[1,3,2,1],[1,1,1,1]],[[1,2,1,0],[3,2,3,1],[1,3,2,1],[1,0,2,1]],[[1,3,1,0],[2,2,3,1],[1,3,2,1],[1,0,2,1]],[[2,2,1,0],[2,2,3,1],[1,3,2,1],[1,0,2,1]],[[1,2,1,0],[3,2,3,1],[1,3,2,1],[0,2,1,1]],[[1,3,1,0],[2,2,3,1],[1,3,2,1],[0,2,1,1]],[[2,2,1,0],[2,2,3,1],[1,3,2,1],[0,2,1,1]],[[1,2,1,0],[3,2,3,1],[1,3,2,1],[0,1,2,1]],[[1,3,1,0],[2,2,3,1],[1,3,2,1],[0,1,2,1]],[[2,2,1,0],[2,2,3,1],[1,3,2,1],[0,1,2,1]],[[1,2,1,0],[3,2,3,1],[1,3,1,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,1],[1,3,1,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,1],[1,3,1,2],[0,2,2,0]],[[1,3,1,0],[2,2,3,1],[1,3,1,2],[0,2,2,0]],[[2,2,1,0],[2,2,3,1],[1,3,1,2],[0,2,2,0]],[[2,1,1,0],[2,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[3,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,4,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,3],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[3,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,1,3],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[2,0,1,2],[1,2,2,2]],[[1,1,1,0],[2,3,2,3],[2,0,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,2,3],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,2,2],[0,3,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,2,2],[0,2,3,1]],[[1,1,1,0],[2,3,2,2],[2,0,2,2],[0,2,2,2]],[[1,1,1,0],[2,3,2,3],[2,0,2,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,2,3],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,2,2],[1,1,3,1]],[[1,1,1,0],[2,3,2,2],[2,0,2,2],[1,1,2,2]],[[2,1,1,0],[2,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,0],[3,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,0],[2,4,2,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[3,0,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,4,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,0],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,0],[1,2,2,2]],[[1,1,1,0],[2,3,2,2],[2,0,4,1],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,1],[0,3,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,1],[0,2,3,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,1],[0,2,2,2]],[[1,1,1,0],[2,3,2,2],[2,0,4,1],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,1],[1,1,3,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,1],[1,1,2,2]],[[2,1,1,0],[2,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,0],[3,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,0],[2,4,2,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[3,0,3,1],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[2,0,4,1],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[2,0,3,1],[2,2,2,0]],[[1,1,1,0],[2,3,2,2],[2,0,3,1],[1,3,2,0]],[[1,1,1,0],[2,3,2,2],[2,0,3,1],[1,2,3,0]],[[1,1,1,0],[2,3,2,3],[2,0,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,2,2],[2,0,4,2],[0,2,1,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,3],[0,2,1,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,2],[0,2,1,2]],[[1,1,1,0],[2,3,2,3],[2,0,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,2,2],[2,0,4,2],[0,2,2,0]],[[1,1,1,0],[2,3,2,2],[2,0,3,3],[0,2,2,0]],[[1,1,1,0],[2,3,2,2],[2,0,3,2],[0,3,2,0]],[[1,1,1,0],[2,3,2,2],[2,0,3,2],[0,2,3,0]],[[1,1,1,0],[2,3,2,3],[2,0,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[2,0,4,2],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,3],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,2],[1,1,1,2]],[[1,1,1,0],[2,3,2,3],[2,0,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[2,0,4,2],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[2,0,3,3],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[2,0,3,2],[1,1,3,0]],[[1,1,1,0],[2,3,2,3],[2,0,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[2,0,4,2],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,3],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[2,0,3,2],[1,2,0,2]],[[1,1,1,0],[2,3,2,3],[2,0,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,2],[2,0,4,2],[1,2,1,0]],[[1,1,1,0],[2,3,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,1,0],[3,2,3,1],[1,3,1,1],[1,1,2,1]],[[1,3,1,0],[2,2,3,1],[1,3,1,1],[1,1,2,1]],[[2,2,1,0],[2,2,3,1],[1,3,1,1],[1,1,2,1]],[[1,2,1,0],[3,2,3,1],[1,3,1,1],[0,2,2,1]],[[1,3,1,0],[2,2,3,1],[1,3,1,1],[0,2,2,1]],[[2,1,1,0],[2,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[3,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,4,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,3],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[3,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,0,3],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,0,2],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,0,2],[1,3,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,0,2],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[2,1,0,2],[1,2,2,2]],[[2,1,1,0],[2,3,2,2],[2,1,2,0],[1,2,2,1]],[[1,1,1,0],[3,3,2,2],[2,1,2,0],[1,2,2,1]],[[1,1,1,0],[2,4,2,2],[2,1,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[3,1,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,2,0],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,2,0],[1,3,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,2,0],[1,2,3,1]],[[1,1,1,0],[2,3,2,2],[2,1,2,0],[1,2,2,2]],[[2,1,1,0],[2,3,2,2],[2,1,2,1],[1,2,2,0]],[[1,1,1,0],[3,3,2,2],[2,1,2,1],[1,2,2,0]],[[1,1,1,0],[2,4,2,2],[2,1,2,1],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[3,1,2,1],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[2,1,2,1],[2,2,2,0]],[[1,1,1,0],[2,3,2,2],[2,1,2,1],[1,3,2,0]],[[1,1,1,0],[2,3,2,2],[2,1,2,1],[1,2,3,0]],[[1,1,1,0],[2,3,2,3],[2,1,2,2],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,2,3],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,2,2],[0,1,3,1]],[[1,1,1,0],[2,3,2,2],[2,1,2,2],[0,1,2,2]],[[1,1,1,0],[2,3,2,3],[2,1,2,2],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,2,3],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,2,2],[1,0,3,1]],[[1,1,1,0],[2,3,2,2],[2,1,2,2],[1,0,2,2]],[[2,2,1,0],[2,2,3,1],[1,3,1,1],[0,2,2,1]],[[2,1,1,0],[2,3,2,2],[2,1,3,0],[1,2,1,1]],[[1,1,1,0],[3,3,2,2],[2,1,3,0],[1,2,1,1]],[[1,1,1,0],[2,4,2,2],[2,1,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,2,2],[3,1,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,0],[2,2,1,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,0],[1,3,1,1]],[[1,1,1,0],[2,3,2,2],[2,1,4,1],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,1],[0,1,3,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,1],[0,1,2,2]],[[1,1,1,0],[2,3,2,2],[2,1,4,1],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,1],[1,0,3,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,1],[1,0,2,2]],[[2,1,1,0],[2,3,2,2],[2,1,3,1],[1,2,0,1]],[[1,1,1,0],[3,3,2,2],[2,1,3,1],[1,2,0,1]],[[1,1,1,0],[2,4,2,2],[2,1,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[3,1,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,1],[2,2,0,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,1],[1,3,0,1]],[[2,1,1,0],[2,3,2,2],[2,1,3,1],[1,2,1,0]],[[1,1,1,0],[3,3,2,2],[2,1,3,1],[1,2,1,0]],[[1,1,1,0],[2,4,2,2],[2,1,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,2,2],[3,1,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,2,2],[2,1,3,1],[2,2,1,0]],[[1,1,1,0],[2,3,2,2],[2,1,3,1],[1,3,1,0]],[[1,2,1,0],[3,2,3,1],[1,3,0,2],[1,1,2,1]],[[1,3,1,0],[2,2,3,1],[1,3,0,2],[1,1,2,1]],[[2,2,1,0],[2,2,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,1,0],[3,2,3,1],[1,3,0,2],[0,2,2,1]],[[1,3,1,0],[2,2,3,1],[1,3,0,2],[0,2,2,1]],[[2,2,1,0],[2,2,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,3],[2,1,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,4,2],[0,0,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,3],[0,0,2,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,2],[0,0,2,2]],[[1,1,1,0],[2,3,2,3],[2,1,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[2,1,4,2],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,3],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,2],[0,1,1,2]],[[1,1,1,0],[2,3,2,3],[2,1,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[2,1,4,2],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[2,1,3,3],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[2,1,3,2],[0,1,3,0]],[[1,1,1,0],[2,3,2,3],[2,1,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[2,1,4,2],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,3],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,2],[0,2,0,2]],[[1,1,1,0],[2,3,2,3],[2,1,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,2],[2,1,4,2],[0,2,1,0]],[[1,1,1,0],[2,3,2,2],[2,1,3,3],[0,2,1,0]],[[1,1,1,0],[2,3,2,3],[2,1,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,2,2],[2,1,4,2],[1,0,1,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,3],[1,0,1,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,2],[1,0,1,2]],[[1,1,1,0],[2,3,2,3],[2,1,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,2],[2,1,4,2],[1,0,2,0]],[[1,1,1,0],[2,3,2,2],[2,1,3,3],[1,0,2,0]],[[1,1,1,0],[2,3,2,2],[2,1,3,2],[1,0,3,0]],[[1,1,1,0],[2,3,2,3],[2,1,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,2],[2,1,4,2],[1,1,0,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,3],[1,1,0,1]],[[1,1,1,0],[2,3,2,2],[2,1,3,2],[1,1,0,2]],[[1,1,1,0],[2,3,2,3],[2,1,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,2],[2,1,4,2],[1,1,1,0]],[[1,1,1,0],[2,3,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,1,0],[3,2,3,1],[1,2,3,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,1],[1,2,3,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,1],[1,2,3,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,1],[1,2,3,2],[1,1,0,1]],[[1,3,1,0],[2,2,3,1],[1,2,3,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,1,0],[3,2,3,1],[1,2,3,2],[1,0,2,0]],[[1,3,1,0],[2,2,3,1],[1,2,3,2],[1,0,2,0]],[[2,2,1,0],[2,2,3,1],[1,2,3,2],[1,0,2,0]],[[1,2,1,0],[3,2,3,1],[1,2,3,2],[1,0,1,1]],[[1,3,1,0],[2,2,3,1],[1,2,3,2],[1,0,1,1]],[[2,2,1,0],[2,2,3,1],[1,2,3,2],[1,0,1,1]],[[1,2,1,0],[3,2,3,1],[1,2,3,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,1],[1,2,3,2],[0,2,1,0]],[[2,2,1,0],[2,2,3,1],[1,2,3,2],[0,2,1,0]],[[2,1,1,0],[2,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,1,1,0],[3,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,1,1,0],[2,4,2,2],[2,2,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[3,2,0,2],[0,2,2,1]],[[2,1,1,0],[2,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,1,1,0],[3,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,1,1,0],[2,4,2,2],[2,2,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[3,2,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[2,2,0,2],[2,1,2,1]],[[1,2,1,0],[3,2,3,1],[1,2,3,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,1],[1,2,3,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,1],[1,2,3,2],[0,2,0,1]],[[1,2,1,0],[3,2,3,1],[1,2,3,2],[0,1,2,0]],[[1,3,1,0],[2,2,3,1],[1,2,3,2],[0,1,2,0]],[[2,2,1,0],[2,2,3,1],[1,2,3,2],[0,1,2,0]],[[1,2,1,0],[3,2,3,1],[1,2,3,2],[0,1,1,1]],[[2,1,1,0],[2,3,2,2],[2,2,2,0],[0,2,2,1]],[[1,1,1,0],[3,3,2,2],[2,2,2,0],[0,2,2,1]],[[1,1,1,0],[2,4,2,2],[2,2,2,0],[0,2,2,1]],[[1,1,1,0],[2,3,2,2],[3,2,2,0],[0,2,2,1]],[[2,1,1,0],[2,3,2,2],[2,2,2,0],[1,1,2,1]],[[1,1,1,0],[3,3,2,2],[2,2,2,0],[1,1,2,1]],[[1,1,1,0],[2,4,2,2],[2,2,2,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[3,2,2,0],[1,1,2,1]],[[1,1,1,0],[2,3,2,2],[2,2,2,0],[2,1,2,1]],[[2,1,1,0],[2,3,2,2],[2,2,2,1],[0,2,2,0]],[[1,1,1,0],[3,3,2,2],[2,2,2,1],[0,2,2,0]],[[1,1,1,0],[2,4,2,2],[2,2,2,1],[0,2,2,0]],[[1,1,1,0],[2,3,2,2],[3,2,2,1],[0,2,2,0]],[[2,1,1,0],[2,3,2,2],[2,2,2,1],[1,1,2,0]],[[1,1,1,0],[3,3,2,2],[2,2,2,1],[1,1,2,0]],[[1,1,1,0],[2,4,2,2],[2,2,2,1],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[3,2,2,1],[1,1,2,0]],[[1,1,1,0],[2,3,2,2],[2,2,2,1],[2,1,2,0]],[[1,3,1,0],[2,2,3,1],[1,2,3,2],[0,1,1,1]],[[2,2,1,0],[2,2,3,1],[1,2,3,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,1],[1,2,3,2],[0,0,2,1]],[[1,3,1,0],[2,2,3,1],[1,2,3,2],[0,0,2,1]],[[2,2,1,0],[2,2,3,1],[1,2,3,2],[0,0,2,1]],[[1,2,1,0],[3,2,3,1],[1,2,3,1],[1,1,1,1]],[[1,3,1,0],[2,2,3,1],[1,2,3,1],[1,1,1,1]],[[2,2,1,0],[2,2,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,1,0],[3,2,3,1],[1,2,3,1],[1,0,2,1]],[[1,3,1,0],[2,2,3,1],[1,2,3,1],[1,0,2,1]],[[2,2,1,0],[2,2,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,1,0],[3,2,3,1],[1,2,3,1],[0,2,1,1]],[[1,3,1,0],[2,2,3,1],[1,2,3,1],[0,2,1,1]],[[2,2,1,0],[2,2,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,1,0],[3,2,3,1],[1,2,3,1],[0,1,2,1]],[[1,3,1,0],[2,2,3,1],[1,2,3,1],[0,1,2,1]],[[2,2,1,0],[2,2,3,1],[1,2,3,1],[0,1,2,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,1,1,0],[3,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,1,1,0],[2,4,2,2],[2,2,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,2,2],[3,2,3,0],[0,1,2,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,1,1,0],[3,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,1,1,0],[2,4,2,2],[2,2,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,2,2],[3,2,3,0],[0,2,1,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,1,1,0],[3,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,1,1,0],[2,4,2,2],[2,2,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[3,2,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,2,2],[2,2,3,0],[2,0,2,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,1,1,0],[3,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,1,1,0],[2,4,2,2],[2,2,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[3,2,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,2,2],[2,2,3,0],[2,1,1,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,1,1,0],[3,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,1,1,0],[2,4,2,2],[2,2,3,0],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[3,2,3,0],[1,2,0,1]],[[1,1,1,0],[2,3,2,2],[2,2,3,0],[2,2,0,1]],[[1,2,1,0],[3,2,3,1],[1,1,3,2],[0,2,2,0]],[[1,3,1,0],[2,2,3,1],[1,1,3,2],[0,2,2,0]],[[2,2,1,0],[2,2,3,1],[1,1,3,2],[0,2,2,0]],[[1,2,1,0],[3,2,3,1],[1,1,3,2],[0,2,1,1]],[[1,3,1,0],[2,2,3,1],[1,1,3,2],[0,2,1,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,1,1,0],[3,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,1,1,0],[2,4,2,2],[2,2,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,2,2],[3,2,3,1],[0,1,1,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,1,1,0],[3,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,1,1,0],[2,4,2,2],[2,2,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,2,2],[3,2,3,1],[0,1,2,0]],[[2,1,1,0],[2,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,1,1,0],[3,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,1,1,0],[2,4,2,2],[2,2,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,2,2],[3,2,3,1],[0,2,0,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,1,1,0],[3,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,1,1,0],[2,4,2,2],[2,2,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,2,2],[3,2,3,1],[0,2,1,0]],[[2,2,1,0],[2,2,3,1],[1,1,3,2],[0,2,1,1]],[[1,2,1,0],[3,2,3,1],[1,1,3,1],[0,2,2,1]],[[1,3,1,0],[2,2,3,1],[1,1,3,1],[0,2,2,1]],[[2,2,1,0],[2,2,3,1],[1,1,3,1],[0,2,2,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,1,1,0],[3,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,1,1,0],[2,4,2,2],[2,2,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,2,2],[3,2,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,2,2],[2,2,3,1],[2,0,1,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,1,1,0],[3,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,1,1,0],[2,4,2,2],[2,2,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,2,2],[3,2,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,2,2],[2,2,3,1],[2,0,2,0]],[[2,1,1,0],[2,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,1,1,0],[3,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,1,1,0],[2,4,2,2],[2,2,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,2,2],[3,2,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,2,2],[2,2,3,1],[2,1,0,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,1,1,0],[3,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,1,1,0],[2,4,2,2],[2,2,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,2,2],[3,2,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,2,2],[2,2,3,1],[2,1,1,0]],[[1,2,1,0],[3,2,3,1],[1,0,3,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,1],[1,0,3,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,1],[1,0,3,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,1],[1,0,3,2],[1,2,1,1]],[[1,3,1,0],[2,2,3,1],[1,0,3,2],[1,2,1,1]],[[2,2,1,0],[2,2,3,1],[1,0,3,2],[1,2,1,1]],[[2,1,1,0],[2,3,2,2],[2,2,3,1],[1,2,0,0]],[[1,1,1,0],[3,3,2,2],[2,2,3,1],[1,2,0,0]],[[1,1,1,0],[2,4,2,2],[2,2,3,1],[1,2,0,0]],[[1,1,1,0],[2,3,2,2],[3,2,3,1],[1,2,0,0]],[[1,1,1,0],[2,3,2,2],[2,2,3,1],[2,2,0,0]],[[1,2,1,0],[3,2,3,1],[1,0,3,1],[1,2,2,1]],[[1,3,1,0],[2,2,3,1],[1,0,3,1],[1,2,2,1]],[[2,2,1,0],[2,2,3,1],[1,0,3,1],[1,2,2,1]],[[1,2,1,0],[3,2,3,1],[0,3,3,2],[1,2,0,0]],[[1,3,1,0],[2,2,3,1],[0,3,3,2],[1,2,0,0]],[[2,2,1,0],[2,2,3,1],[0,3,3,2],[1,2,0,0]],[[1,2,1,0],[3,2,3,1],[0,3,2,2],[1,2,1,0]],[[1,3,1,0],[2,2,3,1],[0,3,2,2],[1,2,1,0]],[[2,2,1,0],[2,2,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,1,0],[3,2,3,1],[0,3,2,2],[1,2,0,1]],[[1,3,1,0],[2,2,3,1],[0,3,2,2],[1,2,0,1]],[[2,2,1,0],[2,2,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,1,0],[3,2,3,1],[0,3,2,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,1],[0,3,2,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,1],[0,3,2,2],[1,1,1,1]],[[1,3,1,0],[2,2,3,1],[0,3,2,2],[1,1,1,1]],[[2,2,1,0],[2,2,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,1,0],[3,2,3,1],[0,3,2,1],[1,2,1,1]],[[1,3,1,0],[2,2,3,1],[0,3,2,1],[1,2,1,1]],[[2,2,1,0],[2,2,3,1],[0,3,2,1],[1,2,1,1]],[[1,2,1,0],[3,2,3,1],[0,3,2,1],[1,1,2,1]],[[1,3,1,0],[2,2,3,1],[0,3,2,1],[1,1,2,1]],[[2,2,1,0],[2,2,3,1],[0,3,2,1],[1,1,2,1]],[[1,2,1,0],[3,2,3,1],[0,3,1,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,1],[0,3,1,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,1],[0,3,1,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,1],[0,3,1,1],[1,2,2,1]],[[1,3,1,0],[2,2,3,1],[0,3,1,1],[1,2,2,1]],[[2,2,1,0],[2,2,3,1],[0,3,1,1],[1,2,2,1]],[[1,2,1,0],[3,2,3,1],[0,3,0,2],[1,2,2,1]],[[1,3,1,0],[2,2,3,1],[0,3,0,2],[1,2,2,1]],[[2,2,1,0],[2,2,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,1,0],[3,2,3,1],[0,2,3,2],[1,2,1,0]],[[1,3,1,0],[2,2,3,1],[0,2,3,2],[1,2,1,0]],[[2,2,1,0],[2,2,3,1],[0,2,3,2],[1,2,1,0]],[[2,1,1,0],[2,3,2,2],[2,3,0,0],[1,2,2,1]],[[1,1,1,0],[3,3,2,2],[2,3,0,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[3,3,0,0],[1,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,3,0,0],[2,2,2,1]],[[1,1,1,0],[2,3,2,2],[2,3,0,0],[1,3,2,1]],[[2,1,1,0],[2,3,2,2],[2,3,0,1],[1,2,2,0]],[[1,1,1,0],[3,3,2,2],[2,3,0,1],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[3,3,0,1],[1,2,2,0]],[[1,1,1,0],[2,3,2,2],[2,3,0,1],[2,2,2,0]],[[1,1,1,0],[2,3,2,2],[2,3,0,1],[1,3,2,0]],[[1,2,1,0],[3,2,3,1],[0,2,3,2],[1,2,0,1]],[[1,3,1,0],[2,2,3,1],[0,2,3,2],[1,2,0,1]],[[2,2,1,0],[2,2,3,1],[0,2,3,2],[1,2,0,1]],[[1,2,1,0],[3,2,3,1],[0,2,3,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,1],[0,2,3,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,1],[0,2,3,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,1],[0,2,3,2],[1,1,1,1]],[[1,3,1,0],[2,2,3,1],[0,2,3,2],[1,1,1,1]],[[2,2,1,0],[2,2,3,1],[0,2,3,2],[1,1,1,1]],[[1,2,1,0],[3,2,3,1],[0,2,3,1],[1,2,1,1]],[[1,3,1,0],[2,2,3,1],[0,2,3,1],[1,2,1,1]],[[2,2,1,0],[2,2,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,1,0],[3,2,3,1],[0,2,3,1],[1,1,2,1]],[[1,3,1,0],[2,2,3,1],[0,2,3,1],[1,1,2,1]],[[2,2,1,0],[2,2,3,1],[0,2,3,1],[1,1,2,1]],[[1,2,1,0],[3,2,3,1],[0,1,3,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,1],[0,1,3,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,1],[0,1,3,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,1],[0,1,3,2],[1,2,1,1]],[[1,3,1,0],[2,2,3,1],[0,1,3,2],[1,2,1,1]],[[2,2,1,0],[2,2,3,1],[0,1,3,2],[1,2,1,1]],[[1,2,1,0],[3,2,3,1],[0,1,3,1],[1,2,2,1]],[[1,3,1,0],[2,2,3,1],[0,1,3,1],[1,2,2,1]],[[2,2,1,0],[2,2,3,1],[0,1,3,1],[1,2,2,1]],[[1,2,1,0],[2,2,3,0],[3,3,3,2],[1,0,1,0]],[[1,2,1,0],[3,2,3,0],[2,3,3,2],[1,0,1,0]],[[1,3,1,0],[2,2,3,0],[2,3,3,2],[1,0,1,0]],[[2,2,1,0],[2,2,3,0],[2,3,3,2],[1,0,1,0]],[[1,2,1,0],[2,2,3,0],[3,3,3,2],[1,0,0,1]],[[1,2,1,0],[3,2,3,0],[2,3,3,2],[1,0,0,1]],[[1,3,1,0],[2,2,3,0],[2,3,3,2],[1,0,0,1]],[[2,2,1,0],[2,2,3,0],[2,3,3,2],[1,0,0,1]],[[1,2,1,0],[2,2,3,0],[3,3,3,1],[1,0,1,1]],[[1,2,1,0],[3,2,3,0],[2,3,3,1],[1,0,1,1]],[[1,3,1,0],[2,2,3,0],[2,3,3,1],[1,0,1,1]],[[2,2,1,0],[2,2,3,0],[2,3,3,1],[1,0,1,1]],[[2,1,1,0],[2,3,2,2],[2,3,3,0],[1,0,1,1]],[[1,1,1,0],[3,3,2,2],[2,3,3,0],[1,0,1,1]],[[1,1,1,0],[2,4,2,2],[2,3,3,0],[1,0,1,1]],[[1,1,1,0],[2,3,2,2],[3,3,3,0],[1,0,1,1]],[[2,1,1,0],[2,3,2,2],[2,3,3,1],[1,0,0,1]],[[1,1,1,0],[3,3,2,2],[2,3,3,1],[1,0,0,1]],[[1,1,1,0],[2,4,2,2],[2,3,3,1],[1,0,0,1]],[[1,1,1,0],[2,3,2,2],[3,3,3,1],[1,0,0,1]],[[2,1,1,0],[2,3,2,2],[2,3,3,1],[1,0,1,0]],[[1,1,1,0],[3,3,2,2],[2,3,3,1],[1,0,1,0]],[[1,1,1,0],[2,4,2,2],[2,3,3,1],[1,0,1,0]],[[1,1,1,0],[2,3,2,2],[3,3,3,1],[1,0,1,0]],[[1,2,1,0],[2,2,3,0],[2,2,3,2],[2,2,0,0]],[[1,2,1,0],[2,2,3,0],[3,2,3,2],[1,2,0,0]],[[1,2,1,0],[3,2,3,0],[2,2,3,2],[1,2,0,0]],[[1,3,1,0],[2,2,3,0],[2,2,3,2],[1,2,0,0]],[[2,2,1,0],[2,2,3,0],[2,2,3,2],[1,2,0,0]],[[1,2,1,0],[2,2,3,0],[2,2,3,2],[2,1,1,0]],[[1,2,1,0],[2,2,3,0],[3,2,3,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,0],[2,2,3,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,0],[2,2,3,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,0],[2,2,3,2],[1,1,1,0]],[[1,2,1,0],[2,2,3,0],[2,2,3,2],[2,1,0,1]],[[1,2,1,0],[2,2,3,0],[3,2,3,2],[1,1,0,1]],[[1,2,1,0],[3,2,3,0],[2,2,3,2],[1,1,0,1]],[[1,3,1,0],[2,2,3,0],[2,2,3,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,0],[2,2,3,2],[1,1,0,1]],[[1,2,1,0],[2,2,3,0],[2,2,3,2],[2,0,2,0]],[[1,2,1,0],[2,2,3,0],[3,2,3,2],[1,0,2,0]],[[1,2,1,0],[3,2,3,0],[2,2,3,2],[1,0,2,0]],[[1,3,1,0],[2,2,3,0],[2,2,3,2],[1,0,2,0]],[[2,2,1,0],[2,2,3,0],[2,2,3,2],[1,0,2,0]],[[1,2,1,0],[2,2,3,0],[2,2,3,2],[2,0,1,1]],[[1,2,1,0],[2,2,3,0],[3,2,3,2],[1,0,1,1]],[[1,2,1,0],[3,2,3,0],[2,2,3,2],[1,0,1,1]],[[1,3,1,0],[2,2,3,0],[2,2,3,2],[1,0,1,1]],[[2,2,1,0],[2,2,3,0],[2,2,3,2],[1,0,1,1]],[[1,2,1,0],[2,2,3,0],[3,2,3,2],[0,2,1,0]],[[1,2,1,0],[3,2,3,0],[2,2,3,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,0],[2,2,3,2],[0,2,1,0]],[[2,2,1,0],[2,2,3,0],[2,2,3,2],[0,2,1,0]],[[1,2,1,0],[2,2,3,0],[3,2,3,2],[0,2,0,1]],[[1,2,1,0],[3,2,3,0],[2,2,3,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,0],[2,2,3,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,0],[2,2,3,2],[0,2,0,1]],[[1,2,1,0],[2,2,3,0],[3,2,3,2],[0,1,2,0]],[[1,2,1,0],[3,2,3,0],[2,2,3,2],[0,1,2,0]],[[1,3,1,0],[2,2,3,0],[2,2,3,2],[0,1,2,0]],[[2,2,1,0],[2,2,3,0],[2,2,3,2],[0,1,2,0]],[[1,2,1,0],[2,2,3,0],[3,2,3,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,0],[2,2,3,2],[0,1,1,1]],[[1,3,1,0],[2,2,3,0],[2,2,3,2],[0,1,1,1]],[[2,2,1,0],[2,2,3,0],[2,2,3,2],[0,1,1,1]],[[1,2,1,0],[2,2,3,0],[2,2,3,1],[2,2,0,1]],[[1,2,1,0],[2,2,3,0],[3,2,3,1],[1,2,0,1]],[[1,2,1,0],[3,2,3,0],[2,2,3,1],[1,2,0,1]],[[1,3,1,0],[2,2,3,0],[2,2,3,1],[1,2,0,1]],[[2,2,1,0],[2,2,3,0],[2,2,3,1],[1,2,0,1]],[[1,2,1,0],[2,2,3,0],[2,2,3,1],[2,1,1,1]],[[1,2,1,0],[2,2,3,0],[3,2,3,1],[1,1,1,1]],[[1,2,1,0],[3,2,3,0],[2,2,3,1],[1,1,1,1]],[[1,3,1,0],[2,2,3,0],[2,2,3,1],[1,1,1,1]],[[2,2,1,0],[2,2,3,0],[2,2,3,1],[1,1,1,1]],[[1,2,1,0],[2,2,3,0],[2,2,3,1],[2,0,2,1]],[[1,2,1,0],[2,2,3,0],[3,2,3,1],[1,0,2,1]],[[1,2,1,0],[3,2,3,0],[2,2,3,1],[1,0,2,1]],[[1,3,1,0],[2,2,3,0],[2,2,3,1],[1,0,2,1]],[[2,2,1,0],[2,2,3,0],[2,2,3,1],[1,0,2,1]],[[1,2,1,0],[2,2,3,0],[3,2,3,1],[0,2,1,1]],[[1,2,1,0],[3,2,3,0],[2,2,3,1],[0,2,1,1]],[[1,3,1,0],[2,2,3,0],[2,2,3,1],[0,2,1,1]],[[2,2,1,0],[2,2,3,0],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[2,2,3,0],[3,2,3,1],[0,1,2,1]],[[1,2,1,0],[3,2,3,0],[2,2,3,1],[0,1,2,1]],[[1,3,1,0],[2,2,3,0],[2,2,3,1],[0,1,2,1]],[[2,2,1,0],[2,2,3,0],[2,2,3,1],[0,1,2,1]],[[1,2,1,0],[2,2,3,0],[2,2,3,0],[2,1,2,1]],[[1,2,1,0],[2,2,3,0],[3,2,3,0],[1,1,2,1]],[[1,2,1,0],[3,2,3,0],[2,2,3,0],[1,1,2,1]],[[1,3,1,0],[2,2,3,0],[2,2,3,0],[1,1,2,1]],[[2,2,1,0],[2,2,3,0],[2,2,3,0],[1,1,2,1]],[[1,2,1,0],[2,2,3,0],[3,2,3,0],[0,2,2,1]],[[1,2,1,0],[3,2,3,0],[2,2,3,0],[0,2,2,1]],[[1,3,1,0],[2,2,3,0],[2,2,3,0],[0,2,2,1]],[[2,2,1,0],[2,2,3,0],[2,2,3,0],[0,2,2,1]],[[1,2,1,0],[2,2,3,0],[2,2,2,2],[2,1,2,0]],[[1,2,1,0],[2,2,3,0],[3,2,2,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,0],[2,2,2,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,0],[2,2,2,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,0],[2,2,2,2],[1,1,2,0]],[[1,2,1,0],[2,2,3,0],[3,2,2,2],[0,2,2,0]],[[1,2,1,0],[3,2,3,0],[2,2,2,2],[0,2,2,0]],[[1,3,1,0],[2,2,3,0],[2,2,2,2],[0,2,2,0]],[[2,2,1,0],[2,2,3,0],[2,2,2,2],[0,2,2,0]],[[1,2,1,0],[2,2,3,0],[2,2,2,1],[2,1,2,1]],[[1,2,1,0],[2,2,3,0],[3,2,2,1],[1,1,2,1]],[[1,2,1,0],[3,2,3,0],[2,2,2,1],[1,1,2,1]],[[1,3,1,0],[2,2,3,0],[2,2,2,1],[1,1,2,1]],[[2,2,1,0],[2,2,3,0],[2,2,2,1],[1,1,2,1]],[[1,2,1,0],[2,2,3,0],[3,2,2,1],[0,2,2,1]],[[1,2,1,0],[3,2,3,0],[2,2,2,1],[0,2,2,1]],[[1,3,1,0],[2,2,3,0],[2,2,2,1],[0,2,2,1]],[[2,2,1,0],[2,2,3,0],[2,2,2,1],[0,2,2,1]],[[1,2,1,0],[2,2,3,0],[2,1,3,2],[1,3,1,0]],[[1,2,1,0],[2,2,3,0],[2,1,3,2],[2,2,1,0]],[[1,2,1,0],[2,2,3,0],[3,1,3,2],[1,2,1,0]],[[1,2,1,0],[3,2,3,0],[2,1,3,2],[1,2,1,0]],[[1,3,1,0],[2,2,3,0],[2,1,3,2],[1,2,1,0]],[[2,2,1,0],[2,2,3,0],[2,1,3,2],[1,2,1,0]],[[1,2,1,0],[2,2,3,0],[2,1,3,2],[1,3,0,1]],[[1,2,1,0],[2,2,3,0],[2,1,3,2],[2,2,0,1]],[[1,2,1,0],[2,2,3,0],[3,1,3,2],[1,2,0,1]],[[1,2,1,0],[3,2,3,0],[2,1,3,2],[1,2,0,1]],[[1,3,1,0],[2,2,3,0],[2,1,3,2],[1,2,0,1]],[[2,2,1,0],[2,2,3,0],[2,1,3,2],[1,2,0,1]],[[1,2,1,0],[2,2,3,0],[2,1,3,1],[1,3,1,1]],[[1,2,1,0],[2,2,3,0],[2,1,3,1],[2,2,1,1]],[[1,2,1,0],[2,2,3,0],[3,1,3,1],[1,2,1,1]],[[1,2,1,0],[3,2,3,0],[2,1,3,1],[1,2,1,1]],[[1,3,1,0],[2,2,3,0],[2,1,3,1],[1,2,1,1]],[[2,2,1,0],[2,2,3,0],[2,1,3,1],[1,2,1,1]],[[1,2,1,0],[2,2,3,0],[2,1,3,0],[1,2,3,1]],[[1,2,1,0],[2,2,3,0],[2,1,3,0],[1,3,2,1]],[[1,2,1,0],[2,2,3,0],[2,1,3,0],[2,2,2,1]],[[1,2,1,0],[2,2,3,0],[3,1,3,0],[1,2,2,1]],[[1,2,1,0],[3,2,3,0],[2,1,3,0],[1,2,2,1]],[[1,3,1,0],[2,2,3,0],[2,1,3,0],[1,2,2,1]],[[2,2,1,0],[2,2,3,0],[2,1,3,0],[1,2,2,1]],[[1,2,1,0],[2,2,3,0],[2,1,2,2],[1,2,3,0]],[[1,2,1,0],[2,2,3,0],[2,1,2,2],[1,3,2,0]],[[1,2,1,0],[2,2,3,0],[2,1,2,2],[2,2,2,0]],[[1,2,1,0],[2,2,3,0],[3,1,2,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,0],[2,1,2,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,0],[2,1,2,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,0],[2,1,2,2],[1,2,2,0]],[[1,2,1,0],[2,2,3,0],[2,1,2,1],[1,2,2,2]],[[1,2,1,0],[2,2,3,0],[2,1,2,1],[1,2,3,1]],[[1,2,1,0],[2,2,3,0],[2,1,2,1],[1,3,2,1]],[[1,2,1,0],[2,2,3,0],[2,1,2,1],[2,2,2,1]],[[1,2,1,0],[2,2,3,0],[3,1,2,1],[1,2,2,1]],[[1,2,1,0],[3,2,3,0],[2,1,2,1],[1,2,2,1]],[[1,3,1,0],[2,2,3,0],[2,1,2,1],[1,2,2,1]],[[2,2,1,0],[2,2,3,0],[2,1,2,1],[1,2,2,1]],[[1,2,1,0],[2,2,3,0],[2,0,3,2],[1,2,3,0]],[[1,2,1,0],[2,2,3,0],[2,0,3,2],[1,3,2,0]],[[1,2,1,0],[2,2,3,0],[2,0,3,2],[2,2,2,0]],[[1,2,1,0],[2,2,3,0],[2,0,4,2],[1,2,2,0]],[[1,2,1,0],[2,2,3,0],[3,0,3,2],[1,2,2,0]],[[1,2,1,0],[3,2,3,0],[2,0,3,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,0],[2,0,3,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,0],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[2,2,3,0],[2,0,3,1],[1,2,2,2]],[[1,2,1,0],[2,2,3,0],[2,0,3,1],[1,2,3,1]],[[1,2,1,0],[2,2,3,0],[2,0,3,1],[1,3,2,1]],[[1,2,1,0],[2,2,3,0],[2,0,3,1],[2,2,2,1]],[[1,2,1,0],[2,2,3,0],[2,0,4,1],[1,2,2,1]],[[1,2,1,0],[2,2,3,0],[3,0,3,1],[1,2,2,1]],[[1,2,1,0],[3,2,3,0],[2,0,3,1],[1,2,2,1]],[[1,3,1,0],[2,2,3,0],[2,0,3,1],[1,2,2,1]],[[2,2,1,0],[2,2,3,0],[2,0,3,1],[1,2,2,1]],[[1,2,1,0],[3,2,3,0],[1,3,3,2],[1,2,0,0]],[[1,3,1,0],[2,2,3,0],[1,3,3,2],[1,2,0,0]],[[2,2,1,0],[2,2,3,0],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,0],[0,1,4,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[0,1,3,2],[2,2,2,1]],[[1,1,1,0],[2,3,3,0],[0,1,3,2],[1,3,2,1]],[[1,1,1,0],[2,3,3,0],[0,1,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,0],[0,1,3,2],[1,2,2,2]],[[1,1,1,0],[2,3,3,0],[0,2,4,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[0,2,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,0],[0,2,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,0],[0,2,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,0],[0,2,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,3,0],[0,2,4,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,0],[0,2,3,2],[1,1,3,1]],[[1,1,1,0],[2,3,3,0],[0,2,3,2],[1,1,2,2]],[[1,1,1,0],[2,3,3,0],[0,2,4,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,0],[0,2,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,0],[0,2,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,0],[0,2,3,2],[1,2,3,0]],[[2,1,1,0],[2,3,3,0],[0,3,2,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,0],[0,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,0],[0,3,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[0,4,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[0,3,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,0],[0,3,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,0],[0,3,2,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,0],[0,3,2,1],[1,2,2,2]],[[2,1,1,0],[2,3,3,0],[0,3,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,0],[0,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,0],[0,3,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,0],[0,4,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,0],[0,3,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,0],[0,3,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,0],[0,3,2,2],[1,2,3,0]],[[2,1,1,0],[2,3,3,0],[0,3,3,0],[1,2,2,1]],[[1,1,1,0],[3,3,3,0],[0,3,3,0],[1,2,2,1]],[[1,1,1,0],[2,4,3,0],[0,3,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[0,4,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[0,3,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,3,0],[0,3,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,3,0],[0,3,3,0],[1,2,3,1]],[[2,1,1,0],[2,3,3,0],[0,3,3,1],[1,1,2,1]],[[1,1,1,0],[3,3,3,0],[0,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,4,3,0],[0,3,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,0],[0,4,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,0],[0,3,4,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,0],[0,3,3,1],[1,1,3,1]],[[1,1,1,0],[2,3,3,0],[0,3,3,1],[1,1,2,2]],[[2,1,1,0],[2,3,3,0],[0,3,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,3,0],[0,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,4,3,0],[0,3,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,0],[0,4,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,0],[0,3,4,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,0],[0,3,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,3,0],[0,3,3,1],[1,3,1,1]],[[1,1,1,0],[2,3,3,0],[0,3,4,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,0],[0,3,3,2],[0,1,3,1]],[[1,1,1,0],[2,3,3,0],[0,3,3,2],[0,1,2,2]],[[2,1,1,0],[2,3,3,0],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[3,3,3,0],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,4,3,0],[0,3,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,0],[0,4,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,0],[0,3,4,2],[1,1,1,1]],[[2,1,1,0],[2,3,3,0],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,0],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,0],[0,3,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,0],[0,4,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,0],[0,3,4,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,0],[0,3,3,2],[1,1,3,0]],[[2,1,1,0],[2,3,3,0],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[3,3,3,0],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,4,3,0],[0,3,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,0],[0,4,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,0],[0,3,4,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,0],[0,3,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,3,0],[0,3,3,2],[1,3,0,1]],[[2,1,1,0],[2,3,3,0],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[3,3,3,0],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,4,3,0],[0,3,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,0],[0,4,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,0],[0,3,4,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,0],[0,3,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,3,0],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[3,2,3,0],[1,3,3,2],[1,1,1,0]],[[1,3,1,0],[2,2,3,0],[1,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,2,3,0],[1,3,3,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,0],[1,3,3,2],[1,1,0,1]],[[1,3,1,0],[2,2,3,0],[1,3,3,2],[1,1,0,1]],[[2,2,1,0],[2,2,3,0],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,0],[1,0,4,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[1,0,3,2],[2,2,2,1]],[[1,1,1,0],[2,3,3,0],[1,0,3,2],[1,3,2,1]],[[1,1,1,0],[2,3,3,0],[1,0,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,0],[1,0,3,2],[1,2,2,2]],[[1,1,1,0],[2,3,3,0],[1,1,4,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,0],[1,1,3,2],[0,3,2,1]],[[1,1,1,0],[2,3,3,0],[1,1,3,2],[0,2,3,1]],[[1,1,1,0],[2,3,3,0],[1,1,3,2],[0,2,2,2]],[[1,1,1,0],[2,3,3,0],[1,2,4,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,0],[1,2,3,1],[0,3,2,1]],[[1,1,1,0],[2,3,3,0],[1,2,3,1],[0,2,3,1]],[[1,1,1,0],[2,3,3,0],[1,2,3,1],[0,2,2,2]],[[1,1,1,0],[2,3,3,0],[1,2,4,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,0],[1,2,3,2],[0,1,3,1]],[[1,1,1,0],[2,3,3,0],[1,2,3,2],[0,1,2,2]],[[1,1,1,0],[2,3,3,0],[1,2,4,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,0],[1,2,3,2],[0,3,2,0]],[[1,1,1,0],[2,3,3,0],[1,2,3,2],[0,2,3,0]],[[1,1,1,0],[2,3,3,0],[1,2,4,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,0],[1,2,3,2],[1,0,3,1]],[[1,1,1,0],[2,3,3,0],[1,2,3,2],[1,0,2,2]],[[2,1,1,0],[2,3,3,0],[1,3,2,1],[0,2,2,1]],[[1,1,1,0],[3,3,3,0],[1,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,4,3,0],[1,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,0],[1,4,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,0],[1,3,2,1],[0,3,2,1]],[[1,1,1,0],[2,3,3,0],[1,3,2,1],[0,2,3,1]],[[1,1,1,0],[2,3,3,0],[1,3,2,1],[0,2,2,2]],[[2,1,1,0],[2,3,3,0],[1,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,3,3,0],[1,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,4,3,0],[1,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,0],[1,4,2,1],[1,1,2,1]],[[2,1,1,0],[2,3,3,0],[1,3,2,2],[0,2,2,0]],[[1,1,1,0],[3,3,3,0],[1,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,4,3,0],[1,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,0],[1,4,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,0],[1,3,2,2],[0,3,2,0]],[[1,1,1,0],[2,3,3,0],[1,3,2,2],[0,2,3,0]],[[2,1,1,0],[2,3,3,0],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,0],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,0],[1,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,0],[1,4,2,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,0],[1,3,3,2],[1,0,2,0]],[[1,3,1,0],[2,2,3,0],[1,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,2,3,0],[1,3,3,2],[1,0,2,0]],[[1,2,1,0],[3,2,3,0],[1,3,3,2],[1,0,1,1]],[[1,3,1,0],[2,2,3,0],[1,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,2,3,0],[1,3,3,2],[1,0,1,1]],[[2,1,1,0],[2,3,3,0],[1,3,3,0],[0,2,2,1]],[[1,1,1,0],[3,3,3,0],[1,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,4,3,0],[1,3,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,0],[1,4,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,0],[1,3,3,0],[0,3,2,1]],[[1,1,1,0],[2,3,3,0],[1,3,3,0],[0,2,3,1]],[[2,1,1,0],[2,3,3,0],[1,3,3,0],[1,1,2,1]],[[1,1,1,0],[3,3,3,0],[1,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,4,3,0],[1,3,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,0],[1,4,3,0],[1,1,2,1]],[[2,1,1,0],[2,3,3,0],[1,3,3,1],[0,1,2,1]],[[1,1,1,0],[3,3,3,0],[1,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,4,3,0],[1,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,0],[1,4,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,0],[1,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,0],[1,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,3,3,0],[1,3,3,1],[0,1,2,2]],[[2,1,1,0],[2,3,3,0],[1,3,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,3,0],[1,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,4,3,0],[1,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,0],[1,4,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,0],[1,3,4,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,0],[1,3,3,1],[0,3,1,1]],[[2,1,1,0],[2,3,3,0],[1,3,3,1],[1,0,2,1]],[[1,1,1,0],[3,3,3,0],[1,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,4,3,0],[1,3,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,0],[1,4,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,0],[1,3,4,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,0],[1,3,3,1],[1,0,3,1]],[[1,1,1,0],[2,3,3,0],[1,3,3,1],[1,0,2,2]],[[2,1,1,0],[2,3,3,0],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,3,0],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,4,3,0],[1,3,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,0],[1,4,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,0],[1,3,4,1],[1,1,1,1]],[[2,1,1,0],[2,3,3,0],[1,3,3,1],[1,2,0,1]],[[1,1,1,0],[3,3,3,0],[1,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,4,3,0],[1,3,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,0],[1,4,3,1],[1,2,0,1]],[[2,1,1,0],[2,3,3,0],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[3,3,3,0],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,4,3,0],[1,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,0],[1,4,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,0],[1,3,4,2],[0,1,1,1]],[[2,1,1,0],[2,3,3,0],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[3,3,3,0],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,4,3,0],[1,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,0],[1,4,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,0],[1,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,0],[1,3,3,2],[0,1,3,0]],[[2,1,1,0],[2,3,3,0],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,0],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,0],[1,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,0],[1,4,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,0],[1,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,0],[1,3,3,2],[0,3,0,1]],[[2,1,1,0],[2,3,3,0],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,0],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,0],[1,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,0],[1,4,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,0],[1,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,0],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[3,2,3,0],[1,3,3,2],[0,2,1,0]],[[1,3,1,0],[2,2,3,0],[1,3,3,2],[0,2,1,0]],[[2,2,1,0],[2,2,3,0],[1,3,3,2],[0,2,1,0]],[[1,2,1,0],[3,2,3,0],[1,3,3,2],[0,2,0,1]],[[1,3,1,0],[2,2,3,0],[1,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,2,3,0],[1,3,3,2],[0,2,0,1]],[[2,1,1,0],[2,3,3,0],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[3,3,3,0],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,4,3,0],[1,3,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,0],[1,4,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,0],[1,3,4,2],[1,0,1,1]],[[2,1,1,0],[2,3,3,0],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[3,3,3,0],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,4,3,0],[1,3,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,0],[1,4,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,0],[1,3,4,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,0],[1,3,3,2],[1,0,3,0]],[[2,1,1,0],[2,3,3,0],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,0],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,0],[1,3,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,0],[1,4,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,0],[1,3,4,2],[1,1,0,1]],[[2,1,1,0],[2,3,3,0],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,0],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,0],[1,3,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,0],[1,4,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,0],[1,3,4,2],[1,1,1,0]],[[1,2,1,0],[3,2,3,0],[1,3,3,2],[0,1,2,0]],[[1,3,1,0],[2,2,3,0],[1,3,3,2],[0,1,2,0]],[[2,1,1,0],[2,3,3,0],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,3,3,0],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,4,3,0],[1,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,0],[1,4,3,2],[1,2,0,0]],[[2,2,1,0],[2,2,3,0],[1,3,3,2],[0,1,2,0]],[[1,2,1,0],[3,2,3,0],[1,3,3,2],[0,1,1,1]],[[1,3,1,0],[2,2,3,0],[1,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,2,3,0],[1,3,3,2],[0,1,1,1]],[[1,2,1,0],[3,2,3,0],[1,3,3,1],[1,2,0,1]],[[1,3,1,0],[2,2,3,0],[1,3,3,1],[1,2,0,1]],[[2,2,1,0],[2,2,3,0],[1,3,3,1],[1,2,0,1]],[[1,2,1,0],[3,2,3,0],[1,3,3,1],[1,1,1,1]],[[1,3,1,0],[2,2,3,0],[1,3,3,1],[1,1,1,1]],[[2,2,1,0],[2,2,3,0],[1,3,3,1],[1,1,1,1]],[[2,1,1,0],[2,3,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[3,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,0,4,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,0,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,0,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,0],[2,0,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,0],[2,0,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,3,0],[2,0,4,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,0,3,2],[0,3,2,1]],[[1,1,1,0],[2,3,3,0],[2,0,3,2],[0,2,3,1]],[[1,1,1,0],[2,3,3,0],[2,0,3,2],[0,2,2,2]],[[1,1,1,0],[2,3,3,0],[2,0,4,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,0],[2,0,3,2],[1,1,3,1]],[[1,1,1,0],[2,3,3,0],[2,0,3,2],[1,1,2,2]],[[2,1,1,0],[2,3,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,0],[3,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,0],[2,0,4,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,0],[2,0,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,0],[2,0,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,0],[2,0,3,2],[1,2,3,0]],[[2,1,1,0],[2,3,3,0],[2,1,2,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,0],[2,1,2,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,0],[2,1,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[3,1,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,1,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,1,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,0],[2,1,2,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,0],[2,1,2,1],[1,2,2,2]],[[2,1,1,0],[2,3,3,0],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,0],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,0],[2,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,0],[3,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,0],[2,1,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,0],[2,1,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,0],[2,1,2,2],[1,2,3,0]],[[2,1,1,0],[2,3,3,0],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[3,3,3,0],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,4,3,0],[2,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[3,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,1,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,1,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,3,0],[2,1,3,0],[1,2,3,1]],[[2,1,1,0],[2,3,3,0],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,3,0],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,4,3,0],[2,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,0],[3,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,0],[2,1,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,3,0],[2,1,3,1],[1,3,1,1]],[[1,1,1,0],[2,3,3,0],[2,1,4,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,0],[2,1,3,2],[0,1,3,1]],[[1,1,1,0],[2,3,3,0],[2,1,3,2],[0,1,2,2]],[[1,1,1,0],[2,3,3,0],[2,1,4,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,0],[2,1,3,2],[1,0,3,1]],[[1,1,1,0],[2,3,3,0],[2,1,3,2],[1,0,2,2]],[[2,1,1,0],[2,3,3,0],[2,1,3,2],[1,2,0,1]],[[1,1,1,0],[3,3,3,0],[2,1,3,2],[1,2,0,1]],[[1,1,1,0],[2,4,3,0],[2,1,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,0],[3,1,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,0],[2,1,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,3,0],[2,1,3,2],[1,3,0,1]],[[2,1,1,0],[2,3,3,0],[2,1,3,2],[1,2,1,0]],[[1,1,1,0],[3,3,3,0],[2,1,3,2],[1,2,1,0]],[[1,1,1,0],[2,4,3,0],[2,1,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,0],[3,1,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,0],[2,1,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,3,0],[2,1,3,2],[1,3,1,0]],[[1,2,1,0],[3,2,3,0],[1,3,3,1],[1,0,2,1]],[[1,3,1,0],[2,2,3,0],[1,3,3,1],[1,0,2,1]],[[2,2,1,0],[2,2,3,0],[1,3,3,1],[1,0,2,1]],[[1,2,1,0],[3,2,3,0],[1,3,3,1],[0,2,1,1]],[[1,3,1,0],[2,2,3,0],[1,3,3,1],[0,2,1,1]],[[2,2,1,0],[2,2,3,0],[1,3,3,1],[0,2,1,1]],[[2,1,1,0],[2,3,3,0],[2,2,2,1],[0,2,2,1]],[[1,1,1,0],[3,3,3,0],[2,2,2,1],[0,2,2,1]],[[1,1,1,0],[2,4,3,0],[2,2,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,0],[3,2,2,1],[0,2,2,1]],[[2,1,1,0],[2,3,3,0],[2,2,2,1],[1,1,2,1]],[[1,1,1,0],[3,3,3,0],[2,2,2,1],[1,1,2,1]],[[1,1,1,0],[2,4,3,0],[2,2,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,0],[3,2,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,0],[2,2,2,1],[2,1,2,1]],[[2,1,1,0],[2,3,3,0],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[3,3,3,0],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[2,4,3,0],[2,2,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,0],[3,2,2,2],[0,2,2,0]],[[2,1,1,0],[2,3,3,0],[2,2,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,0],[2,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,0],[2,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,0],[3,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,0],[2,2,2,2],[2,1,2,0]],[[1,2,1,0],[3,2,3,0],[1,3,3,1],[0,1,2,1]],[[1,3,1,0],[2,2,3,0],[1,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,2,3,0],[1,3,3,1],[0,1,2,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,0],[0,2,2,1]],[[1,1,1,0],[3,3,3,0],[2,2,3,0],[0,2,2,1]],[[1,1,1,0],[2,4,3,0],[2,2,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,0],[3,2,3,0],[0,2,2,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,0],[1,1,2,1]],[[1,1,1,0],[3,3,3,0],[2,2,3,0],[1,1,2,1]],[[1,1,1,0],[2,4,3,0],[2,2,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,0],[3,2,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,0],[2,2,3,0],[2,1,2,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[3,3,3,0],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[2,4,3,0],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,0],[3,2,3,1],[0,1,2,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,4,3,0],[2,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,0],[3,2,3,1],[0,2,1,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,1],[1,0,2,1]],[[1,1,1,0],[3,3,3,0],[2,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,4,3,0],[2,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,0],[3,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,0],[2,2,3,1],[2,0,2,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,4,3,0],[2,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,0],[3,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,0],[2,2,3,1],[2,1,1,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,1],[1,2,0,1]],[[1,1,1,0],[3,3,3,0],[2,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,4,3,0],[2,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,0],[3,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,0],[2,2,3,1],[2,2,0,1]],[[1,2,1,0],[3,2,3,0],[1,3,3,0],[1,1,2,1]],[[1,3,1,0],[2,2,3,0],[1,3,3,0],[1,1,2,1]],[[2,2,1,0],[2,2,3,0],[1,3,3,0],[1,1,2,1]],[[1,2,1,0],[3,2,3,0],[1,3,3,0],[0,2,2,1]],[[1,3,1,0],[2,2,3,0],[1,3,3,0],[0,2,2,1]],[[2,2,1,0],[2,2,3,0],[1,3,3,0],[0,2,2,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[3,3,3,0],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[2,4,3,0],[2,2,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,0],[3,2,3,2],[0,1,1,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[3,3,3,0],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[2,4,3,0],[2,2,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,0],[3,2,3,2],[0,1,2,0]],[[2,1,1,0],[2,3,3,0],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,0],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,0],[2,2,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,0],[3,2,3,2],[0,2,0,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,0],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,0],[2,2,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,0],[3,2,3,2],[0,2,1,0]],[[2,1,1,0],[2,3,3,0],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[3,3,3,0],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,4,3,0],[2,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,0],[3,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,0],[2,2,3,2],[2,0,1,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[3,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,4,3,0],[2,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,0],[3,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,0],[2,2,3,2],[2,0,2,0]],[[2,1,1,0],[2,3,3,0],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,0],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,0],[2,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,0],[3,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,0],[2,2,3,2],[2,1,0,1]],[[2,1,1,0],[2,3,3,0],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,0],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,0],[2,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,0],[3,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,0],[2,2,3,2],[2,1,1,0]],[[1,2,1,0],[3,2,3,0],[1,3,2,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,0],[1,3,2,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,0],[1,3,2,2],[1,1,2,0]],[[2,1,1,0],[2,3,3,0],[2,2,3,2],[1,2,0,0]],[[1,1,1,0],[3,3,3,0],[2,2,3,2],[1,2,0,0]],[[1,1,1,0],[2,4,3,0],[2,2,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,0],[3,2,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,0],[2,2,3,2],[2,2,0,0]],[[1,2,1,0],[3,2,3,0],[1,3,2,2],[0,2,2,0]],[[1,3,1,0],[2,2,3,0],[1,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,2,3,0],[1,3,2,2],[0,2,2,0]],[[1,2,1,0],[3,2,3,0],[1,3,2,1],[1,1,2,1]],[[1,3,1,0],[2,2,3,0],[1,3,2,1],[1,1,2,1]],[[2,2,1,0],[2,2,3,0],[1,3,2,1],[1,1,2,1]],[[1,2,1,0],[3,2,3,0],[1,3,2,1],[0,2,2,1]],[[1,3,1,0],[2,2,3,0],[1,3,2,1],[0,2,2,1]],[[2,2,1,0],[2,2,3,0],[1,3,2,1],[0,2,2,1]],[[2,1,1,0],[2,3,3,0],[2,3,0,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,0],[2,3,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[3,3,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,3,0,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,3,0,1],[1,3,2,1]],[[2,1,1,0],[2,3,3,0],[2,3,0,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,0],[2,3,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,0],[3,3,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,0],[2,3,0,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,0],[2,3,0,2],[1,3,2,0]],[[2,1,1,0],[2,3,3,0],[2,3,1,0],[1,2,2,1]],[[1,1,1,0],[3,3,3,0],[2,3,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[3,3,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,3,1,0],[2,2,2,1]],[[1,1,1,0],[2,3,3,0],[2,3,1,0],[1,3,2,1]],[[1,2,1,0],[3,2,3,0],[0,3,3,2],[1,2,1,0]],[[1,3,1,0],[2,2,3,0],[0,3,3,2],[1,2,1,0]],[[2,2,1,0],[2,2,3,0],[0,3,3,2],[1,2,1,0]],[[1,2,1,0],[3,2,3,0],[0,3,3,2],[1,2,0,1]],[[1,3,1,0],[2,2,3,0],[0,3,3,2],[1,2,0,1]],[[2,2,1,0],[2,2,3,0],[0,3,3,2],[1,2,0,1]],[[1,2,1,0],[3,2,3,0],[0,3,3,2],[1,1,2,0]],[[1,3,1,0],[2,2,3,0],[0,3,3,2],[1,1,2,0]],[[2,2,1,0],[2,2,3,0],[0,3,3,2],[1,1,2,0]],[[1,2,1,0],[3,2,3,0],[0,3,3,2],[1,1,1,1]],[[1,3,1,0],[2,2,3,0],[0,3,3,2],[1,1,1,1]],[[2,2,1,0],[2,2,3,0],[0,3,3,2],[1,1,1,1]],[[1,2,1,0],[3,2,3,0],[0,3,3,1],[1,2,1,1]],[[1,3,1,0],[2,2,3,0],[0,3,3,1],[1,2,1,1]],[[2,2,1,0],[2,2,3,0],[0,3,3,1],[1,2,1,1]],[[1,2,1,0],[3,2,3,0],[0,3,3,1],[1,1,2,1]],[[1,3,1,0],[2,2,3,0],[0,3,3,1],[1,1,2,1]],[[2,2,1,0],[2,2,3,0],[0,3,3,1],[1,1,2,1]],[[1,2,1,0],[3,2,3,0],[0,3,3,0],[1,2,2,1]],[[1,3,1,0],[2,2,3,0],[0,3,3,0],[1,2,2,1]],[[2,2,1,0],[2,2,3,0],[0,3,3,0],[1,2,2,1]],[[1,2,1,0],[3,2,3,0],[0,3,2,2],[1,2,2,0]],[[1,3,1,0],[2,2,3,0],[0,3,2,2],[1,2,2,0]],[[2,2,1,0],[2,2,3,0],[0,3,2,2],[1,2,2,0]],[[2,1,1,0],[2,3,3,0],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[3,3,3,0],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,4,3,0],[2,3,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,0],[3,3,3,1],[1,0,1,1]],[[1,2,1,0],[3,2,3,0],[0,3,2,1],[1,2,2,1]],[[1,3,1,0],[2,2,3,0],[0,3,2,1],[1,2,2,1]],[[2,2,1,0],[2,2,3,0],[0,3,2,1],[1,2,2,1]],[[1,2,1,0],[2,2,2,2],[3,3,3,1],[1,0,1,0]],[[1,2,1,0],[3,2,2,2],[2,3,3,1],[1,0,1,0]],[[1,3,1,0],[2,2,2,2],[2,3,3,1],[1,0,1,0]],[[2,2,1,0],[2,2,2,2],[2,3,3,1],[1,0,1,0]],[[1,2,1,0],[2,2,2,2],[3,3,3,1],[1,0,0,1]],[[1,2,1,0],[3,2,2,2],[2,3,3,1],[1,0,0,1]],[[1,3,1,0],[2,2,2,2],[2,3,3,1],[1,0,0,1]],[[2,2,1,0],[2,2,2,2],[2,3,3,1],[1,0,0,1]],[[2,1,1,0],[2,3,3,0],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[3,3,3,0],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[2,4,3,0],[2,3,3,2],[1,0,0,1]],[[1,1,1,0],[2,3,3,0],[3,3,3,2],[1,0,0,1]],[[2,1,1,0],[2,3,3,0],[2,3,3,2],[1,0,1,0]],[[1,1,1,0],[3,3,3,0],[2,3,3,2],[1,0,1,0]],[[1,1,1,0],[2,4,3,0],[2,3,3,2],[1,0,1,0]],[[1,1,1,0],[2,3,3,0],[3,3,3,2],[1,0,1,0]],[[1,2,1,0],[2,2,2,2],[3,3,3,0],[1,0,1,1]],[[1,2,1,0],[3,2,2,2],[2,3,3,0],[1,0,1,1]],[[1,3,1,0],[2,2,2,2],[2,3,3,0],[1,0,1,1]],[[2,2,1,0],[2,2,2,2],[2,3,3,0],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[0,0,3,3],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,0,3,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,1],[0,0,3,2],[1,2,2,2]],[[1,1,1,0],[2,3,3,1],[0,1,2,3],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,1,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,1,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,3,1],[0,1,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,1],[0,1,2,2],[1,2,2,2]],[[2,1,1,0],[2,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,1],[0,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,4,1],[0,1,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,1,4,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,1,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,1,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,1],[0,1,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,1],[0,1,3,1],[1,2,2,2]],[[2,1,1,0],[2,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,1,1,0],[3,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,1,1,0],[2,4,3,1],[0,1,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,4,1],[0,1,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[0,1,4,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[0,1,3,3],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[0,1,3,2],[1,2,1,2]],[[2,1,1,0],[2,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,1],[0,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,4,1],[0,1,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[0,1,4,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[0,1,3,3],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[0,1,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,1],[0,1,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,1],[0,1,3,2],[1,2,3,0]],[[1,1,1,0],[2,3,3,1],[0,2,2,3],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[0,2,2,2],[1,1,3,1]],[[1,1,1,0],[2,3,3,1],[0,2,2,2],[1,1,2,2]],[[2,1,1,0],[2,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,1,1,0],[3,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,1,1,0],[2,4,3,1],[0,2,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,4,1],[0,2,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[0,2,4,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[0,2,3,1],[1,1,3,1]],[[1,1,1,0],[2,3,3,1],[0,2,3,1],[1,1,2,2]],[[2,1,1,0],[2,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,4,3,1],[0,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,4,1],[0,2,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[0,2,4,1],[1,2,1,1]],[[1,1,1,0],[2,4,3,1],[0,2,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,4,1],[0,2,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[0,2,4,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[0,2,3,3],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[0,2,3,2],[1,0,2,2]],[[2,1,1,0],[2,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,1,1,0],[3,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,1,1,0],[2,4,3,1],[0,2,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,4,1],[0,2,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[0,2,4,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[0,2,3,3],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[0,2,3,2],[1,1,1,2]],[[2,1,1,0],[2,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,1],[0,2,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,4,1],[0,2,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[0,2,4,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[0,2,3,3],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[0,2,3,2],[1,1,3,0]],[[2,1,1,0],[2,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,1,1,0],[3,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,4,3,1],[0,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,4,1],[0,2,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[0,2,4,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[0,2,3,3],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[0,2,3,2],[1,2,0,2]],[[2,1,1,0],[2,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,1,1,0],[3,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,4,3,1],[0,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,4,1],[0,2,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[0,2,4,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[0,2,3,3],[1,2,1,0]],[[2,1,1,0],[2,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,1,0],[3,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,4,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,4,1],[0,3,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,4,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,0,3],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,0,2],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,0,2],[1,3,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,0,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,1],[0,3,0,2],[1,2,2,2]],[[2,1,1,0],[2,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,1],[0,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,4,1],[0,3,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,4,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,1,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,1,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,1,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,1],[0,3,1,1],[1,2,2,2]],[[2,1,1,0],[2,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,1],[0,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,4,1],[0,3,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[0,4,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[0,3,1,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,1],[0,3,1,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,1],[0,3,1,2],[1,2,3,0]],[[2,1,1,0],[2,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,1,1,0],[3,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,4,3,1],[0,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,4,1],[0,3,2,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[0,4,2,1],[1,1,2,1]],[[2,1,1,0],[2,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,1,1,0],[3,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,1,1,0],[2,4,3,1],[0,3,2,1],[1,2,1,1]],[[1,1,1,0],[2,3,4,1],[0,3,2,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[0,4,2,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[0,3,2,1],[2,2,1,1]],[[1,1,1,0],[2,3,3,1],[0,3,2,1],[1,3,1,1]],[[1,1,1,0],[2,3,3,1],[0,3,2,3],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,2,2],[0,1,3,1]],[[1,1,1,0],[2,3,3,1],[0,3,2,2],[0,1,2,2]],[[2,1,1,0],[2,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,1,0],[3,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,1,0],[2,4,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,1,0],[2,3,4,1],[0,3,2,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[0,4,2,2],[1,1,1,1]],[[2,1,1,0],[2,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,1],[0,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,4,1],[0,3,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[0,4,2,2],[1,1,2,0]],[[2,1,1,0],[2,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,1,0],[3,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,1,0],[2,4,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,4,1],[0,3,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[0,4,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[0,3,2,2],[2,2,0,1]],[[1,1,1,0],[2,3,3,1],[0,3,2,2],[1,3,0,1]],[[2,1,1,0],[2,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,1,0],[3,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,1,0],[2,4,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,4,1],[0,3,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[0,4,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[0,3,2,2],[2,2,1,0]],[[1,1,1,0],[2,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,1,1,0],[2,4,3,1],[0,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,4,1],[0,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,4,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,3,1],[0,1,3,1]],[[1,1,1,0],[2,3,3,1],[0,3,3,1],[0,1,2,2]],[[1,1,1,0],[2,4,3,1],[0,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,4,1],[0,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,1,1,0],[2,4,3,1],[0,3,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,4,1],[0,3,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,4,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,3,3],[0,0,2,1]],[[1,1,1,0],[2,3,3,1],[0,3,3,2],[0,0,2,2]],[[1,1,1,0],[2,4,3,1],[0,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,4,1],[0,3,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[0,3,4,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[0,3,3,3],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[0,3,3,2],[0,1,1,2]],[[1,1,1,0],[2,4,3,1],[0,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,4,1],[0,3,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[0,3,4,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[0,3,3,3],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[0,3,3,2],[0,1,3,0]],[[1,1,1,0],[2,4,3,1],[0,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,4,1],[0,3,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[0,3,4,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[0,3,3,3],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[0,3,3,2],[0,2,0,2]],[[1,1,1,0],[2,4,3,1],[0,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,4,1],[0,3,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,1],[0,3,4,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,1],[0,3,3,3],[0,2,1,0]],[[2,1,1,0],[2,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,1,1,0],[3,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,4,3,1],[0,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,4,1],[0,3,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,1],[1,0,2,3],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,0,2,2],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,0,2,2],[1,3,2,1]],[[1,1,1,0],[2,3,3,1],[1,0,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,1],[1,0,2,2],[1,2,2,2]],[[2,1,1,0],[2,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,1],[1,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,4,1],[1,0,3,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,0,4,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,0,3,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,0,3,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,1],[1,0,3,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,1],[1,0,3,1],[1,2,2,2]],[[1,1,1,0],[2,3,3,1],[1,0,3,3],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,0,3,2],[0,2,3,1]],[[1,1,1,0],[2,3,3,1],[1,0,3,2],[0,2,2,2]],[[2,1,1,0],[2,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,1,0],[3,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,1,0],[2,4,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,4,1],[1,0,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[1,0,4,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[1,0,3,3],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[1,0,3,2],[1,2,1,2]],[[2,1,1,0],[2,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,1],[1,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,4,1],[1,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[1,0,4,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[1,0,3,3],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[1,0,3,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,1],[1,0,3,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,1],[1,0,3,2],[1,2,3,0]],[[1,1,1,0],[2,3,3,1],[1,1,2,3],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,1,2,2],[0,3,2,1]],[[1,1,1,0],[2,3,3,1],[1,1,2,2],[0,2,3,1]],[[1,1,1,0],[2,3,3,1],[1,1,2,2],[0,2,2,2]],[[2,1,1,0],[2,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,1,1,0],[3,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,1,1,0],[2,4,3,1],[1,1,3,1],[0,2,2,1]],[[1,1,1,0],[2,3,4,1],[1,1,3,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,1,4,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,1,3,1],[0,3,2,1]],[[1,1,1,0],[2,3,3,1],[1,1,3,1],[0,2,3,1]],[[1,1,1,0],[2,3,3,1],[1,1,3,1],[0,2,2,2]],[[2,1,1,0],[2,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,1,1,0],[3,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,1,1,0],[2,4,3,1],[1,1,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,4,1],[1,1,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[1,1,4,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[1,1,3,3],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[1,1,3,2],[0,2,1,2]],[[2,1,1,0],[2,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,1,1,0],[3,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,1,1,0],[2,4,3,1],[1,1,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,4,1],[1,1,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,1],[1,1,4,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,1],[1,1,3,3],[0,2,2,0]],[[1,1,1,0],[2,3,3,1],[1,1,3,2],[0,3,2,0]],[[1,1,1,0],[2,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,1,1,0],[2,3,3,1],[1,2,2,3],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[1,2,2,2],[0,1,3,1]],[[1,1,1,0],[2,3,3,1],[1,2,2,2],[0,1,2,2]],[[1,1,1,0],[2,3,3,1],[1,2,2,3],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[1,2,2,2],[1,0,3,1]],[[1,1,1,0],[2,3,3,1],[1,2,2,2],[1,0,2,2]],[[2,1,1,0],[2,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,1,1,0],[3,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,1,1,0],[2,4,3,1],[1,2,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,4,1],[1,2,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[1,2,4,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,1],[0,1,3,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,1],[0,1,2,2]],[[2,1,1,0],[2,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,4,3,1],[1,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,4,1],[1,2,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[1,2,4,1],[0,2,1,1]],[[2,1,1,0],[2,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,1,1,0],[3,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,4,3,1],[1,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,4,1],[1,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[1,2,4,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,1],[1,0,3,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,1],[1,0,2,2]],[[2,1,1,0],[2,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,4,3,1],[1,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,4,1],[1,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[1,2,4,1],[1,1,1,1]],[[1,2,1,0],[2,2,2,2],[2,2,3,1],[2,2,0,0]],[[1,2,1,0],[2,2,2,2],[3,2,3,1],[1,2,0,0]],[[2,1,1,0],[2,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,1,1,0],[3,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,1,1,0],[2,4,3,1],[1,2,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,4,1],[1,2,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,1],[1,2,4,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,3],[0,0,2,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,2],[0,0,2,2]],[[2,1,1,0],[2,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,1,1,0],[3,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,1,1,0],[2,4,3,1],[1,2,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,4,1],[1,2,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[1,2,4,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,3],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,2],[0,1,1,2]],[[2,1,1,0],[2,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,1,1,0],[3,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,1,1,0],[2,4,3,1],[1,2,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,4,1],[1,2,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[1,2,4,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[1,2,3,3],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[1,2,3,2],[0,1,3,0]],[[2,1,1,0],[2,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,1],[1,2,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,4,1],[1,2,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[1,2,4,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,3],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,2],[0,2,0,2]],[[2,1,1,0],[2,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,1],[1,2,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,4,1],[1,2,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,1],[1,2,4,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,1,0],[3,2,2,2],[2,2,3,1],[1,2,0,0]],[[1,3,1,0],[2,2,2,2],[2,2,3,1],[1,2,0,0]],[[2,2,1,0],[2,2,2,2],[2,2,3,1],[1,2,0,0]],[[2,1,1,0],[2,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,1,1,0],[3,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,4,3,1],[1,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,4,1],[1,2,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[1,2,4,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,3],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,2],[1,0,1,2]],[[2,1,1,0],[2,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,1,1,0],[3,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,4,3,1],[1,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,4,1],[1,2,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,1],[1,2,4,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,1],[1,2,3,3],[1,0,2,0]],[[1,1,1,0],[2,3,3,1],[1,2,3,2],[1,0,3,0]],[[2,1,1,0],[2,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,1],[1,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,4,1],[1,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[1,2,4,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,3],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[1,2,3,2],[1,1,0,2]],[[2,1,1,0],[2,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,1],[1,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,4,1],[1,2,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,1],[1,2,4,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,1,0],[2,2,2,2],[2,2,3,1],[2,1,1,0]],[[1,2,1,0],[2,2,2,2],[3,2,3,1],[1,1,1,0]],[[1,2,1,0],[3,2,2,2],[2,2,3,1],[1,1,1,0]],[[1,3,1,0],[2,2,2,2],[2,2,3,1],[1,1,1,0]],[[2,2,1,0],[2,2,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,1,0],[2,2,2,2],[2,2,3,1],[2,1,0,1]],[[1,2,1,0],[2,2,2,2],[3,2,3,1],[1,1,0,1]],[[1,2,1,0],[3,2,2,2],[2,2,3,1],[1,1,0,1]],[[1,3,1,0],[2,2,2,2],[2,2,3,1],[1,1,0,1]],[[2,2,1,0],[2,2,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,1,0],[2,2,2,2],[2,2,3,1],[2,0,2,0]],[[1,2,1,0],[2,2,2,2],[3,2,3,1],[1,0,2,0]],[[1,2,1,0],[3,2,2,2],[2,2,3,1],[1,0,2,0]],[[1,3,1,0],[2,2,2,2],[2,2,3,1],[1,0,2,0]],[[2,2,1,0],[2,2,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,1,0],[2,2,2,2],[2,2,3,1],[2,0,1,1]],[[1,2,1,0],[2,2,2,2],[3,2,3,1],[1,0,1,1]],[[1,2,1,0],[3,2,2,2],[2,2,3,1],[1,0,1,1]],[[1,3,1,0],[2,2,2,2],[2,2,3,1],[1,0,1,1]],[[2,2,1,0],[2,2,2,2],[2,2,3,1],[1,0,1,1]],[[2,1,1,0],[2,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,1,0],[3,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,4,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,4,1],[1,3,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,4,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,3,0,3],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,3,0,2],[0,3,2,1]],[[1,1,1,0],[2,3,3,1],[1,3,0,2],[0,2,3,1]],[[1,1,1,0],[2,3,3,1],[1,3,0,2],[0,2,2,2]],[[2,1,1,0],[2,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,1,1,0],[3,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,4,3,1],[1,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,4,1],[1,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[1,4,0,2],[1,1,2,1]],[[2,1,1,0],[2,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,1,1,0],[3,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,1,1,0],[2,4,3,1],[1,3,1,1],[0,2,2,1]],[[1,1,1,0],[2,3,4,1],[1,3,1,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,4,1,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[1,3,1,1],[0,3,2,1]],[[1,1,1,0],[2,3,3,1],[1,3,1,1],[0,2,3,1]],[[1,1,1,0],[2,3,3,1],[1,3,1,1],[0,2,2,2]],[[2,1,1,0],[2,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,1,1,0],[3,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,1,1,0],[2,4,3,1],[1,3,1,1],[1,1,2,1]],[[1,1,1,0],[2,3,4,1],[1,3,1,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[1,4,1,1],[1,1,2,1]],[[2,1,1,0],[2,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,1,1,0],[3,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,1,1,0],[2,4,3,1],[1,3,1,2],[0,2,2,0]],[[1,1,1,0],[2,3,4,1],[1,3,1,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,1],[1,4,1,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,1],[1,3,1,2],[0,3,2,0]],[[1,1,1,0],[2,3,3,1],[1,3,1,2],[0,2,3,0]],[[2,1,1,0],[2,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,1],[1,3,1,2],[1,1,2,0]],[[1,1,1,0],[2,3,4,1],[1,3,1,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,2,1,0],[2,2,2,2],[3,2,3,1],[0,2,1,0]],[[1,2,1,0],[3,2,2,2],[2,2,3,1],[0,2,1,0]],[[1,3,1,0],[2,2,2,2],[2,2,3,1],[0,2,1,0]],[[2,2,1,0],[2,2,2,2],[2,2,3,1],[0,2,1,0]],[[2,1,1,0],[2,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,1,1,0],[3,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,1,1,0],[2,4,3,1],[1,3,2,1],[0,1,2,1]],[[1,1,1,0],[2,3,4,1],[1,3,2,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[1,4,2,1],[0,1,2,1]],[[2,1,1,0],[2,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,1,1,0],[3,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,1,1,0],[2,4,3,1],[1,3,2,1],[0,2,1,1]],[[1,1,1,0],[2,3,4,1],[1,3,2,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[1,4,2,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[1,3,2,1],[0,3,1,1]],[[2,1,1,0],[2,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,1,1,0],[3,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,1,1,0],[2,4,3,1],[1,3,2,1],[1,0,2,1]],[[1,1,1,0],[2,3,4,1],[1,3,2,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[1,4,2,1],[1,0,2,1]],[[2,1,1,0],[2,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,1,0],[3,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,1,0],[2,4,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,1,0],[2,3,4,1],[1,3,2,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[1,4,2,1],[1,1,1,1]],[[2,1,1,0],[2,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,1,1,0],[3,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,1,1,0],[2,4,3,1],[1,3,2,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[1,4,2,1],[1,2,0,1]],[[1,2,1,0],[2,2,2,2],[3,2,3,1],[0,2,0,1]],[[1,2,1,0],[3,2,2,2],[2,2,3,1],[0,2,0,1]],[[1,3,1,0],[2,2,2,2],[2,2,3,1],[0,2,0,1]],[[2,2,1,0],[2,2,2,2],[2,2,3,1],[0,2,0,1]],[[1,2,1,0],[2,2,2,2],[3,2,3,1],[0,1,2,0]],[[2,1,1,0],[2,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,1,1,0],[3,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,4,3,1],[1,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,4,1],[1,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[1,4,2,2],[0,1,1,1]],[[2,1,1,0],[2,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,1,1,0],[3,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,4,3,1],[1,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,4,1],[1,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[1,4,2,2],[0,1,2,0]],[[2,1,1,0],[2,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,4,1],[1,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[1,4,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[1,3,2,2],[0,3,0,1]],[[2,1,1,0],[2,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,1],[1,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,4,1],[1,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,1],[1,4,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,1],[1,3,2,2],[0,3,1,0]],[[1,2,1,0],[3,2,2,2],[2,2,3,1],[0,1,2,0]],[[1,3,1,0],[2,2,2,2],[2,2,3,1],[0,1,2,0]],[[2,2,1,0],[2,2,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,1,0],[2,2,2,2],[3,2,3,1],[0,1,1,1]],[[1,2,1,0],[3,2,2,2],[2,2,3,1],[0,1,1,1]],[[1,3,1,0],[2,2,2,2],[2,2,3,1],[0,1,1,1]],[[2,2,1,0],[2,2,2,2],[2,2,3,1],[0,1,1,1]],[[2,1,1,0],[2,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,1,1,0],[3,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,1,1,0],[2,4,3,1],[1,3,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,4,1],[1,3,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[1,4,2,2],[1,0,1,1]],[[2,1,1,0],[2,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,1,1,0],[3,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,1,1,0],[2,4,3,1],[1,3,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,4,1],[1,3,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,1],[1,4,2,2],[1,0,2,0]],[[2,1,1,0],[2,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,4,1],[1,3,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[1,4,2,2],[1,1,0,1]],[[2,1,1,0],[2,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,1],[1,3,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,4,1],[1,3,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,1],[1,4,2,2],[1,1,1,0]],[[1,2,1,0],[2,2,2,2],[2,2,3,0],[2,2,0,1]],[[1,2,1,0],[2,2,2,2],[3,2,3,0],[1,2,0,1]],[[1,2,1,0],[3,2,2,2],[2,2,3,0],[1,2,0,1]],[[1,3,1,0],[2,2,2,2],[2,2,3,0],[1,2,0,1]],[[2,1,1,0],[2,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,1,1,0],[3,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,1,1,0],[2,4,3,1],[1,3,2,2],[1,2,0,0]],[[1,1,1,0],[2,3,4,1],[1,3,2,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,1],[1,4,2,2],[1,2,0,0]],[[2,2,1,0],[2,2,2,2],[2,2,3,0],[1,2,0,1]],[[1,2,1,0],[2,2,2,2],[2,2,3,0],[2,1,1,1]],[[1,2,1,0],[2,2,2,2],[3,2,3,0],[1,1,1,1]],[[1,2,1,0],[3,2,2,2],[2,2,3,0],[1,1,1,1]],[[1,3,1,0],[2,2,2,2],[2,2,3,0],[1,1,1,1]],[[2,2,1,0],[2,2,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,1,0],[2,2,2,2],[2,2,3,0],[2,0,2,1]],[[1,2,1,0],[2,2,2,2],[3,2,3,0],[1,0,2,1]],[[1,2,1,0],[3,2,2,2],[2,2,3,0],[1,0,2,1]],[[1,3,1,0],[2,2,2,2],[2,2,3,0],[1,0,2,1]],[[2,2,1,0],[2,2,2,2],[2,2,3,0],[1,0,2,1]],[[1,2,1,0],[2,2,2,2],[3,2,3,0],[0,2,1,1]],[[1,2,1,0],[3,2,2,2],[2,2,3,0],[0,2,1,1]],[[1,3,1,0],[2,2,2,2],[2,2,3,0],[0,2,1,1]],[[2,2,1,0],[2,2,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,1,0],[2,2,2,2],[3,2,3,0],[0,1,2,1]],[[1,2,1,0],[3,2,2,2],[2,2,3,0],[0,1,2,1]],[[1,3,1,0],[2,2,2,2],[2,2,3,0],[0,1,2,1]],[[2,2,1,0],[2,2,2,2],[2,2,3,0],[0,1,2,1]],[[2,1,1,0],[2,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,1,0],[3,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,1,0],[2,4,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,4,1],[1,3,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,1,0],[2,2,2,2],[2,2,2,1],[2,1,2,0]],[[1,2,1,0],[2,2,2,2],[3,2,2,1],[1,1,2,0]],[[1,2,1,0],[3,2,2,2],[2,2,2,1],[1,1,2,0]],[[1,3,1,0],[2,2,2,2],[2,2,2,1],[1,1,2,0]],[[2,2,1,0],[2,2,2,2],[2,2,2,1],[1,1,2,0]],[[1,2,1,0],[2,2,2,2],[3,2,2,1],[0,2,2,0]],[[1,2,1,0],[3,2,2,2],[2,2,2,1],[0,2,2,0]],[[1,3,1,0],[2,2,2,2],[2,2,2,1],[0,2,2,0]],[[2,2,1,0],[2,2,2,2],[2,2,2,1],[0,2,2,0]],[[2,1,1,0],[2,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,1,1,0],[3,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,1,1,0],[2,4,3,1],[1,3,3,2],[0,0,1,1]],[[1,1,1,0],[2,3,4,1],[1,3,3,2],[0,0,1,1]],[[1,1,1,0],[2,3,3,1],[1,3,4,2],[0,0,1,1]],[[1,1,1,0],[2,3,3,1],[1,3,3,3],[0,0,1,1]],[[1,1,1,0],[2,3,3,1],[1,3,3,2],[0,0,1,2]],[[2,1,1,0],[2,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,1,1,0],[3,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,1,1,0],[2,4,3,1],[1,3,3,2],[0,0,2,0]],[[1,1,1,0],[2,3,4,1],[1,3,3,2],[0,0,2,0]],[[1,1,1,0],[2,3,3,1],[1,3,4,2],[0,0,2,0]],[[1,1,1,0],[2,3,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,1,0],[2,2,2,2],[2,2,2,0],[2,1,2,1]],[[1,2,1,0],[2,2,2,2],[3,2,2,0],[1,1,2,1]],[[2,1,1,0],[2,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,1,1,0],[3,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,1,1,0],[2,4,3,1],[1,3,3,2],[0,2,0,0]],[[1,1,1,0],[2,3,4,1],[1,3,3,2],[0,2,0,0]],[[1,1,1,0],[2,3,3,1],[1,4,3,2],[0,2,0,0]],[[1,2,1,0],[3,2,2,2],[2,2,2,0],[1,1,2,1]],[[1,3,1,0],[2,2,2,2],[2,2,2,0],[1,1,2,1]],[[2,2,1,0],[2,2,2,2],[2,2,2,0],[1,1,2,1]],[[1,2,1,0],[2,2,2,2],[3,2,2,0],[0,2,2,1]],[[1,2,1,0],[3,2,2,2],[2,2,2,0],[0,2,2,1]],[[1,3,1,0],[2,2,2,2],[2,2,2,0],[0,2,2,1]],[[2,2,1,0],[2,2,2,2],[2,2,2,0],[0,2,2,1]],[[1,2,1,0],[2,2,2,2],[2,2,0,2],[2,1,2,1]],[[1,2,1,0],[2,2,2,2],[3,2,0,2],[1,1,2,1]],[[1,2,1,0],[3,2,2,2],[2,2,0,2],[1,1,2,1]],[[1,3,1,0],[2,2,2,2],[2,2,0,2],[1,1,2,1]],[[2,2,1,0],[2,2,2,2],[2,2,0,2],[1,1,2,1]],[[1,2,1,0],[2,2,2,2],[3,2,0,2],[0,2,2,1]],[[1,2,1,0],[3,2,2,2],[2,2,0,2],[0,2,2,1]],[[1,3,1,0],[2,2,2,2],[2,2,0,2],[0,2,2,1]],[[2,2,1,0],[2,2,2,2],[2,2,0,2],[0,2,2,1]],[[2,1,1,0],[2,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,1,1,0],[3,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,1,1,0],[2,4,3,1],[1,3,3,2],[1,1,0,0]],[[1,1,1,0],[2,3,4,1],[1,3,3,2],[1,1,0,0]],[[1,1,1,0],[2,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,1,0],[2,2,2,2],[2,1,3,1],[1,3,1,0]],[[1,2,1,0],[2,2,2,2],[2,1,3,1],[2,2,1,0]],[[1,2,1,0],[2,2,2,2],[3,1,3,1],[1,2,1,0]],[[1,2,1,0],[3,2,2,2],[2,1,3,1],[1,2,1,0]],[[1,3,1,0],[2,2,2,2],[2,1,3,1],[1,2,1,0]],[[2,2,1,0],[2,2,2,2],[2,1,3,1],[1,2,1,0]],[[1,2,1,0],[2,2,2,2],[2,1,3,1],[1,3,0,1]],[[1,2,1,0],[2,2,2,2],[2,1,3,1],[2,2,0,1]],[[1,2,1,0],[2,2,2,2],[3,1,3,1],[1,2,0,1]],[[1,2,1,0],[3,2,2,2],[2,1,3,1],[1,2,0,1]],[[1,3,1,0],[2,2,2,2],[2,1,3,1],[1,2,0,1]],[[2,2,1,0],[2,2,2,2],[2,1,3,1],[1,2,0,1]],[[1,2,1,0],[2,2,2,2],[2,1,3,0],[1,3,1,1]],[[1,2,1,0],[2,2,2,2],[2,1,3,0],[2,2,1,1]],[[1,2,1,0],[2,2,2,2],[3,1,3,0],[1,2,1,1]],[[1,2,1,0],[3,2,2,2],[2,1,3,0],[1,2,1,1]],[[1,3,1,0],[2,2,2,2],[2,1,3,0],[1,2,1,1]],[[2,2,1,0],[2,2,2,2],[2,1,3,0],[1,2,1,1]],[[1,2,1,0],[2,2,2,2],[2,1,2,1],[1,2,3,0]],[[1,2,1,0],[2,2,2,2],[2,1,2,1],[1,3,2,0]],[[1,2,1,0],[2,2,2,2],[2,1,2,1],[2,2,2,0]],[[1,2,1,0],[2,2,2,2],[3,1,2,1],[1,2,2,0]],[[1,2,1,0],[3,2,2,2],[2,1,2,1],[1,2,2,0]],[[1,3,1,0],[2,2,2,2],[2,1,2,1],[1,2,2,0]],[[2,2,1,0],[2,2,2,2],[2,1,2,1],[1,2,2,0]],[[1,2,1,0],[2,2,2,2],[2,1,2,0],[1,2,2,2]],[[1,2,1,0],[2,2,2,2],[2,1,2,0],[1,2,3,1]],[[2,1,1,0],[2,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[3,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,4,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,4,1],[2,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[3,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,1,3],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,1],[2,0,1,2],[1,2,2,2]],[[2,1,1,0],[2,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,1],[2,0,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,4,1],[2,0,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[3,0,2,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,2,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,2,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,2,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,1],[2,0,2,1],[1,2,2,2]],[[1,1,1,0],[2,3,3,1],[2,0,2,3],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,2,2],[0,3,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,2,2],[0,2,3,1]],[[1,1,1,0],[2,3,3,1],[2,0,2,2],[0,2,2,2]],[[1,1,1,0],[2,3,3,1],[2,0,2,3],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,2,2],[1,1,3,1]],[[1,1,1,0],[2,3,3,1],[2,0,2,2],[1,1,2,2]],[[2,1,1,0],[2,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,4,1],[2,0,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[3,0,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[2,0,2,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,1],[2,0,2,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,1],[2,0,2,2],[1,2,3,0]],[[2,1,1,0],[2,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,1,1,0],[3,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,1,1,0],[2,4,3,1],[2,0,3,1],[0,2,2,1]],[[1,1,1,0],[2,3,4,1],[2,0,3,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[3,0,3,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,4,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,1],[0,3,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,1],[0,2,3,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,1],[0,2,2,2]],[[2,1,1,0],[2,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,1,1,0],[3,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,1,1,0],[2,4,3,1],[2,0,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,4,1],[2,0,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[3,0,3,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,4,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,1],[2,1,2,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,1],[1,1,3,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,1],[1,1,2,2]],[[2,1,1,0],[2,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,1,0],[2,4,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,4,1],[2,0,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[3,0,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[2,0,4,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,1],[2,2,1,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,1],[1,3,1,1]],[[2,1,1,0],[2,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,1,0],[3,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,1,0],[2,4,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,4,1],[2,0,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[3,0,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[2,0,4,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,3],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[0,2,1,2]],[[2,1,1,0],[2,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,1,0],[3,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,1,0],[2,4,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,4,1],[2,0,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,1],[3,0,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,1],[2,0,4,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,1],[2,0,3,3],[0,2,2,0]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[0,3,2,0]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[0,2,3,0]],[[2,1,1,0],[2,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,1,1,0],[3,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,1,1,0],[2,4,3,1],[2,0,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,4,1],[2,0,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[3,0,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[2,0,4,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,3],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[2,1,1,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[1,1,1,2]],[[2,1,1,0],[2,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,1],[2,0,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,4,1],[2,0,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[3,0,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[2,0,4,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[2,0,3,3],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[2,1,2,0]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[1,1,3,0]],[[2,1,1,0],[2,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,1,1,0],[3,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,1,1,0],[2,4,3,1],[2,0,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,4,1],[2,0,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[3,0,3,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[2,0,4,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,3],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[2,2,0,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[1,3,0,1]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[1,2,0,2]],[[2,1,1,0],[2,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,1,1,0],[3,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,1,1,0],[2,4,3,1],[2,0,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,4,1],[2,0,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[3,0,3,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[2,0,4,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[2,0,3,3],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[2,2,1,0]],[[1,1,1,0],[2,3,3,1],[2,0,3,2],[1,3,1,0]],[[1,2,1,0],[2,2,2,2],[2,1,2,0],[1,3,2,1]],[[1,2,1,0],[2,2,2,2],[2,1,2,0],[2,2,2,1]],[[1,2,1,0],[2,2,2,2],[3,1,2,0],[1,2,2,1]],[[1,2,1,0],[3,2,2,2],[2,1,2,0],[1,2,2,1]],[[1,3,1,0],[2,2,2,2],[2,1,2,0],[1,2,2,1]],[[2,2,1,0],[2,2,2,2],[2,1,2,0],[1,2,2,1]],[[2,1,1,0],[2,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[3,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,4,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,4,1],[2,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[3,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,0,3],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,0,2],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,0,2],[1,3,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,0,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,1],[2,1,0,2],[1,2,2,2]],[[2,1,1,0],[2,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,1],[2,1,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,4,1],[2,1,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[3,1,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,1,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,1,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,1,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,1],[2,1,1,1],[1,2,2,2]],[[2,1,1,0],[2,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,1],[2,1,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,4,1],[2,1,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[3,1,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[2,1,1,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,1],[2,1,1,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,1],[2,1,1,2],[1,2,3,0]],[[2,1,1,0],[2,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,1,1,0],[3,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,1,1,0],[2,4,3,1],[2,1,2,1],[1,2,1,1]],[[1,1,1,0],[2,3,4,1],[2,1,2,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[3,1,2,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,2,1],[2,2,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,2,1],[1,3,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,2,3],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,2,2],[0,1,3,1]],[[1,1,1,0],[2,3,3,1],[2,1,2,2],[0,1,2,2]],[[1,1,1,0],[2,3,3,1],[2,1,2,3],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,2,2],[1,0,3,1]],[[1,1,1,0],[2,3,3,1],[2,1,2,2],[1,0,2,2]],[[2,1,1,0],[2,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,1,1,0],[3,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,1,1,0],[2,4,3,1],[2,1,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,4,1],[2,1,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[3,1,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[2,1,2,2],[2,2,0,1]],[[1,1,1,0],[2,3,3,1],[2,1,2,2],[1,3,0,1]],[[2,1,1,0],[2,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,1,1,0],[3,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,1,1,0],[2,4,3,1],[2,1,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,4,1],[2,1,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[3,1,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[2,1,2,2],[2,2,1,0]],[[1,1,1,0],[2,3,3,1],[2,1,2,2],[1,3,1,0]],[[1,2,1,0],[2,2,2,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,0],[2,2,2,2],[2,1,0,2],[1,2,3,1]],[[1,2,1,0],[2,2,2,2],[2,1,0,2],[1,3,2,1]],[[1,2,1,0],[2,2,2,2],[2,1,0,2],[2,2,2,1]],[[1,2,1,0],[2,2,2,2],[2,1,0,3],[1,2,2,1]],[[2,1,1,0],[2,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,1,1,0],[3,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,1,1,0],[2,4,3,1],[2,1,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,4,1],[2,1,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[3,1,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,4,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,1],[0,1,3,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,1],[0,1,2,2]],[[2,1,1,0],[2,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,1,1,0],[2,4,3,1],[2,1,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,4,1],[2,1,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[3,1,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,4,1],[0,2,1,1]],[[2,1,1,0],[2,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,1,1,0],[3,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,1,1,0],[2,4,3,1],[2,1,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,4,1],[2,1,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[3,1,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,4,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,1],[2,0,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,1],[1,0,3,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,1],[1,0,2,2]],[[2,1,1,0],[2,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,1,1,0],[2,4,3,1],[2,1,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,4,1],[2,1,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[3,1,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,4,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,1],[2,1,1,1]],[[1,2,1,0],[2,2,2,2],[3,1,0,2],[1,2,2,1]],[[1,2,1,0],[2,2,2,3],[2,1,0,2],[1,2,2,1]],[[1,2,1,0],[3,2,2,2],[2,1,0,2],[1,2,2,1]],[[1,3,1,0],[2,2,2,2],[2,1,0,2],[1,2,2,1]],[[2,2,1,0],[2,2,2,2],[2,1,0,2],[1,2,2,1]],[[2,1,1,0],[2,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,1,1,0],[3,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,1,1,0],[2,4,3,1],[2,1,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,4,1],[2,1,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,4,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,3],[0,0,2,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,2],[0,0,2,2]],[[2,1,1,0],[2,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,1,1,0],[3,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,1,1,0],[2,4,3,1],[2,1,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,4,1],[2,1,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[3,1,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,4,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,3],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,2],[0,1,1,2]],[[2,1,1,0],[2,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,1,1,0],[3,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,1,1,0],[2,4,3,1],[2,1,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,4,1],[2,1,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[3,1,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[2,1,4,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[2,1,3,3],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[2,1,3,2],[0,1,3,0]],[[2,1,1,0],[2,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,1],[2,1,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,4,1],[2,1,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[3,1,3,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[2,1,4,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,3],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,2],[0,2,0,2]],[[2,1,1,0],[2,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,1],[2,1,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,4,1],[2,1,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,1],[3,1,3,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,1],[2,1,4,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,1],[2,1,3,3],[0,2,1,0]],[[2,1,1,0],[2,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,1,1,0],[3,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,1,1,0],[2,4,3,1],[2,1,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,4,1],[2,1,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[3,1,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,4,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,3],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,2],[2,0,1,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,2],[1,0,1,2]],[[2,1,1,0],[2,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,1,1,0],[3,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,1,1,0],[2,4,3,1],[2,1,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,4,1],[2,1,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,1],[3,1,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,1],[2,1,4,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,1],[2,1,3,3],[1,0,2,0]],[[1,1,1,0],[2,3,3,1],[2,1,3,2],[2,0,2,0]],[[1,1,1,0],[2,3,3,1],[2,1,3,2],[1,0,3,0]],[[2,1,1,0],[2,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,1],[2,1,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,4,1],[2,1,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[3,1,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[2,1,4,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,3],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,2],[2,1,0,1]],[[1,1,1,0],[2,3,3,1],[2,1,3,2],[1,1,0,2]],[[2,1,1,0],[2,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,1],[2,1,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,4,1],[2,1,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,1],[3,1,3,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,1],[2,1,4,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,1],[2,1,3,3],[1,1,1,0]],[[1,1,1,0],[2,3,3,1],[2,1,3,2],[2,1,1,0]],[[1,2,1,0],[2,2,2,2],[2,0,3,1],[1,2,3,0]],[[1,2,1,0],[2,2,2,2],[2,0,3,1],[1,3,2,0]],[[1,2,1,0],[2,2,2,2],[2,0,3,1],[2,2,2,0]],[[1,2,1,0],[2,2,2,2],[2,0,4,1],[1,2,2,0]],[[1,2,1,0],[2,2,2,2],[3,0,3,1],[1,2,2,0]],[[1,2,1,0],[3,2,2,2],[2,0,3,1],[1,2,2,0]],[[1,3,1,0],[2,2,2,2],[2,0,3,1],[1,2,2,0]],[[2,2,1,0],[2,2,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,1,0],[2,2,2,2],[2,0,3,0],[1,2,2,2]],[[1,2,1,0],[2,2,2,2],[2,0,3,0],[1,2,3,1]],[[1,2,1,0],[2,2,2,2],[2,0,3,0],[1,3,2,1]],[[1,2,1,0],[2,2,2,2],[2,0,3,0],[2,2,2,1]],[[1,2,1,0],[2,2,2,2],[2,0,4,0],[1,2,2,1]],[[1,2,1,0],[2,2,2,2],[3,0,3,0],[1,2,2,1]],[[1,2,1,0],[3,2,2,2],[2,0,3,0],[1,2,2,1]],[[1,3,1,0],[2,2,2,2],[2,0,3,0],[1,2,2,1]],[[2,2,1,0],[2,2,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,1,0],[2,2,2,2],[2,0,1,2],[1,2,2,2]],[[1,2,1,0],[2,2,2,2],[2,0,1,2],[1,2,3,1]],[[1,2,1,0],[2,2,2,2],[2,0,1,2],[1,3,2,1]],[[1,2,1,0],[2,2,2,2],[2,0,1,2],[2,2,2,1]],[[1,2,1,0],[2,2,2,2],[2,0,1,3],[1,2,2,1]],[[1,2,1,0],[2,2,2,2],[3,0,1,2],[1,2,2,1]],[[2,1,1,0],[2,3,3,1],[2,2,0,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,1],[2,2,0,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,1],[2,2,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[3,2,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,2,0,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,2,0,1],[1,3,2,1]],[[2,1,1,0],[2,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,1,0],[3,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,1,0],[2,4,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,4,1],[2,2,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[3,2,0,2],[0,2,2,1]],[[2,1,1,0],[2,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,1,1,0],[3,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,1,1,0],[2,4,3,1],[2,2,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,4,1],[2,2,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[3,2,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[2,2,0,2],[2,1,2,1]],[[2,1,1,0],[2,3,3,1],[2,2,0,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,1],[2,2,0,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,1],[2,2,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[3,2,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,1],[2,2,0,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,1],[2,2,0,2],[1,3,2,0]],[[2,1,1,0],[2,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,1,1,0],[3,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,1,1,0],[2,4,3,1],[2,2,1,1],[0,2,2,1]],[[1,1,1,0],[2,3,4,1],[2,2,1,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[3,2,1,1],[0,2,2,1]],[[2,1,1,0],[2,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,1,1,0],[3,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,1,1,0],[2,4,3,1],[2,2,1,1],[1,1,2,1]],[[1,1,1,0],[2,3,4,1],[2,2,1,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[3,2,1,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[2,2,1,1],[2,1,2,1]],[[2,1,1,0],[2,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,1,1,0],[3,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,1,1,0],[2,4,3,1],[2,2,1,2],[0,2,2,0]],[[1,1,1,0],[2,3,4,1],[2,2,1,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,1],[3,2,1,2],[0,2,2,0]],[[2,1,1,0],[2,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,1],[2,2,1,2],[1,1,2,0]],[[1,1,1,0],[2,3,4,1],[2,2,1,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[3,2,1,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[2,2,1,2],[2,1,2,0]],[[1,2,1,0],[2,2,2,3],[2,0,1,2],[1,2,2,1]],[[1,2,1,0],[3,2,2,2],[2,0,1,2],[1,2,2,1]],[[1,3,1,0],[2,2,2,2],[2,0,1,2],[1,2,2,1]],[[2,2,1,0],[2,2,2,2],[2,0,1,2],[1,2,2,1]],[[2,1,1,0],[2,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,1,1,0],[3,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,1,1,0],[2,4,3,1],[2,2,2,1],[0,1,2,1]],[[1,1,1,0],[2,3,4,1],[2,2,2,1],[0,1,2,1]],[[1,1,1,0],[2,3,3,1],[3,2,2,1],[0,1,2,1]],[[2,1,1,0],[2,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,1,1,0],[3,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,1,1,0],[2,4,3,1],[2,2,2,1],[0,2,1,1]],[[1,1,1,0],[2,3,4,1],[2,2,2,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[3,2,2,1],[0,2,1,1]],[[2,1,1,0],[2,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,1,1,0],[3,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,1,1,0],[2,4,3,1],[2,2,2,1],[1,0,2,1]],[[1,1,1,0],[2,3,4,1],[2,2,2,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[3,2,2,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,1],[2,2,2,1],[2,0,2,1]],[[2,1,1,0],[2,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,1,1,0],[3,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,1,1,0],[2,4,3,1],[2,2,2,1],[1,1,1,1]],[[1,1,1,0],[2,3,4,1],[2,2,2,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[3,2,2,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[2,2,2,1],[2,1,1,1]],[[2,1,1,0],[2,3,3,1],[2,2,2,1],[1,2,0,1]],[[1,1,1,0],[3,3,3,1],[2,2,2,1],[1,2,0,1]],[[1,1,1,0],[2,4,3,1],[2,2,2,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[3,2,2,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[2,2,2,1],[2,2,0,1]],[[2,1,1,0],[2,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,1,1,0],[3,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,1,1,0],[2,4,3,1],[2,2,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,4,1],[2,2,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,1],[3,2,2,2],[0,1,1,1]],[[2,1,1,0],[2,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,1,1,0],[3,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,1,1,0],[2,4,3,1],[2,2,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,4,1],[2,2,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,1],[3,2,2,2],[0,1,2,0]],[[2,1,1,0],[2,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,1],[2,2,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,4,1],[2,2,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[3,2,2,2],[0,2,0,1]],[[2,1,1,0],[2,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,1],[2,2,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,4,1],[2,2,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,1],[3,2,2,2],[0,2,1,0]],[[2,1,1,0],[2,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,1,1,0],[3,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,1,1,0],[2,4,3,1],[2,2,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,4,1],[2,2,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[3,2,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[2,2,2,2],[2,0,1,1]],[[2,1,1,0],[2,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,1,1,0],[3,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,1,1,0],[2,4,3,1],[2,2,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,4,1],[2,2,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,1],[3,2,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,1],[2,2,2,2],[2,0,2,0]],[[2,1,1,0],[2,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,4,1],[2,2,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[3,2,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[2,2,2,2],[2,1,0,1]],[[2,1,1,0],[2,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,1],[2,2,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,1],[3,2,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,1],[2,2,2,2],[2,1,1,0]],[[2,1,1,0],[2,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,1,1,0],[3,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,1,1,0],[2,4,3,1],[2,2,2,2],[1,2,0,0]],[[1,1,1,0],[2,3,4,1],[2,2,2,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,1],[3,2,2,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,1],[2,2,2,2],[2,2,0,0]],[[1,2,1,0],[3,2,2,2],[1,3,3,1],[1,2,0,0]],[[1,3,1,0],[2,2,2,2],[1,3,3,1],[1,2,0,0]],[[2,2,1,0],[2,2,2,2],[1,3,3,1],[1,2,0,0]],[[1,2,1,0],[3,2,2,2],[1,3,3,1],[1,1,1,0]],[[1,3,1,0],[2,2,2,2],[1,3,3,1],[1,1,1,0]],[[2,2,1,0],[2,2,2,2],[1,3,3,1],[1,1,1,0]],[[1,2,1,0],[3,2,2,2],[1,3,3,1],[1,1,0,1]],[[1,3,1,0],[2,2,2,2],[1,3,3,1],[1,1,0,1]],[[2,2,1,0],[2,2,2,2],[1,3,3,1],[1,1,0,1]],[[2,1,1,0],[2,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,1,0],[3,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,1,0],[2,4,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,1,0],[2,3,4,1],[2,2,3,2],[0,2,0,0]],[[1,1,1,0],[2,3,3,1],[3,2,3,2],[0,2,0,0]],[[1,2,1,0],[3,2,2,2],[1,3,3,1],[1,0,2,0]],[[1,3,1,0],[2,2,2,2],[1,3,3,1],[1,0,2,0]],[[2,2,1,0],[2,2,2,2],[1,3,3,1],[1,0,2,0]],[[1,2,1,0],[3,2,2,2],[1,3,3,1],[1,0,1,1]],[[1,3,1,0],[2,2,2,2],[1,3,3,1],[1,0,1,1]],[[2,2,1,0],[2,2,2,2],[1,3,3,1],[1,0,1,1]],[[1,2,1,0],[3,2,2,2],[1,3,3,1],[0,2,1,0]],[[1,3,1,0],[2,2,2,2],[1,3,3,1],[0,2,1,0]],[[2,2,1,0],[2,2,2,2],[1,3,3,1],[0,2,1,0]],[[1,2,1,0],[3,2,2,2],[1,3,3,1],[0,2,0,1]],[[1,3,1,0],[2,2,2,2],[1,3,3,1],[0,2,0,1]],[[2,2,1,0],[2,2,2,2],[1,3,3,1],[0,2,0,1]],[[1,2,1,0],[3,2,2,2],[1,3,3,1],[0,1,2,0]],[[1,3,1,0],[2,2,2,2],[1,3,3,1],[0,1,2,0]],[[2,2,1,0],[2,2,2,2],[1,3,3,1],[0,1,2,0]],[[1,2,1,0],[3,2,2,2],[1,3,3,1],[0,1,1,1]],[[1,3,1,0],[2,2,2,2],[1,3,3,1],[0,1,1,1]],[[2,2,1,0],[2,2,2,2],[1,3,3,1],[0,1,1,1]],[[2,1,1,0],[2,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,1,0],[3,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,1,0],[2,4,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,1,0],[2,3,4,1],[2,2,3,2],[1,1,0,0]],[[1,1,1,0],[2,3,3,1],[3,2,3,2],[1,1,0,0]],[[1,1,1,0],[2,3,3,1],[2,2,3,2],[2,1,0,0]],[[1,2,1,0],[3,2,2,2],[1,3,3,0],[1,2,0,1]],[[1,3,1,0],[2,2,2,2],[1,3,3,0],[1,2,0,1]],[[2,2,1,0],[2,2,2,2],[1,3,3,0],[1,2,0,1]],[[1,2,1,0],[3,2,2,2],[1,3,3,0],[1,1,1,1]],[[1,3,1,0],[2,2,2,2],[1,3,3,0],[1,1,1,1]],[[2,2,1,0],[2,2,2,2],[1,3,3,0],[1,1,1,1]],[[1,2,1,0],[3,2,2,2],[1,3,3,0],[1,0,2,1]],[[1,3,1,0],[2,2,2,2],[1,3,3,0],[1,0,2,1]],[[2,2,1,0],[2,2,2,2],[1,3,3,0],[1,0,2,1]],[[1,2,1,0],[3,2,2,2],[1,3,3,0],[0,2,1,1]],[[1,3,1,0],[2,2,2,2],[1,3,3,0],[0,2,1,1]],[[2,2,1,0],[2,2,2,2],[1,3,3,0],[0,2,1,1]],[[1,2,1,0],[3,2,2,2],[1,3,3,0],[0,1,2,1]],[[1,3,1,0],[2,2,2,2],[1,3,3,0],[0,1,2,1]],[[2,2,1,0],[2,2,2,2],[1,3,3,0],[0,1,2,1]],[[1,2,1,0],[3,2,2,2],[1,3,2,1],[1,1,2,0]],[[1,3,1,0],[2,2,2,2],[1,3,2,1],[1,1,2,0]],[[2,2,1,0],[2,2,2,2],[1,3,2,1],[1,1,2,0]],[[1,2,1,0],[3,2,2,2],[1,3,2,1],[0,2,2,0]],[[1,3,1,0],[2,2,2,2],[1,3,2,1],[0,2,2,0]],[[2,2,1,0],[2,2,2,2],[1,3,2,1],[0,2,2,0]],[[1,2,1,0],[3,2,2,2],[1,3,2,0],[1,1,2,1]],[[2,1,1,0],[2,3,3,1],[2,3,0,0],[1,2,2,1]],[[1,1,1,0],[3,3,3,1],[2,3,0,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[3,3,0,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,3,0,0],[2,2,2,1]],[[1,1,1,0],[2,3,3,1],[2,3,0,0],[1,3,2,1]],[[2,1,1,0],[2,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,1,0],[3,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,1,0],[2,4,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,1],[3,3,0,1],[0,2,2,1]],[[2,1,1,0],[2,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,1,0],[3,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,1,0],[2,4,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[3,3,0,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,1],[2,3,0,1],[2,1,2,1]],[[2,1,1,0],[2,3,3,1],[2,3,0,1],[1,2,1,1]],[[1,1,1,0],[3,3,3,1],[2,3,0,1],[1,2,1,1]],[[1,1,1,0],[2,4,3,1],[2,3,0,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[3,3,0,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,1],[2,3,0,1],[2,2,1,1]],[[2,1,1,0],[2,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,1,0],[3,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,1,0],[2,4,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,1],[3,3,0,2],[0,2,2,0]],[[2,1,1,0],[2,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[3,3,0,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,1],[2,3,0,2],[2,1,2,0]],[[2,1,1,0],[2,3,3,1],[2,3,0,2],[1,2,1,0]],[[1,1,1,0],[3,3,3,1],[2,3,0,2],[1,2,1,0]],[[1,1,1,0],[2,4,3,1],[2,3,0,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[3,3,0,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,1],[2,3,0,2],[2,2,1,0]],[[1,3,1,0],[2,2,2,2],[1,3,2,0],[1,1,2,1]],[[2,2,1,0],[2,2,2,2],[1,3,2,0],[1,1,2,1]],[[1,2,1,0],[3,2,2,2],[1,3,2,0],[0,2,2,1]],[[1,3,1,0],[2,2,2,2],[1,3,2,0],[0,2,2,1]],[[2,2,1,0],[2,2,2,2],[1,3,2,0],[0,2,2,1]],[[2,1,1,0],[2,3,3,1],[2,3,1,1],[0,2,1,1]],[[1,1,1,0],[3,3,3,1],[2,3,1,1],[0,2,1,1]],[[1,1,1,0],[2,4,3,1],[2,3,1,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,1],[3,3,1,1],[0,2,1,1]],[[2,1,1,0],[2,3,3,1],[2,3,1,1],[1,1,1,1]],[[1,1,1,0],[3,3,3,1],[2,3,1,1],[1,1,1,1]],[[1,1,1,0],[2,4,3,1],[2,3,1,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[3,3,1,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,1],[2,3,1,1],[2,1,1,1]],[[2,1,1,0],[2,3,3,1],[2,3,1,1],[1,2,0,1]],[[1,1,1,0],[3,3,3,1],[2,3,1,1],[1,2,0,1]],[[1,1,1,0],[2,4,3,1],[2,3,1,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[3,3,1,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,1],[2,3,1,1],[2,2,0,1]],[[2,1,1,0],[2,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,1],[3,3,1,2],[0,2,0,1]],[[2,1,1,0],[2,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,1],[3,3,1,2],[0,2,1,0]],[[1,2,1,0],[3,2,2,2],[1,3,0,2],[1,1,2,1]],[[1,3,1,0],[2,2,2,2],[1,3,0,2],[1,1,2,1]],[[2,2,1,0],[2,2,2,2],[1,3,0,2],[1,1,2,1]],[[1,2,1,0],[3,2,2,2],[1,3,0,2],[0,2,2,1]],[[2,1,1,0],[2,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[3,3,1,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,1],[2,3,1,2],[2,1,0,1]],[[2,1,1,0],[2,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,1],[3,3,1,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,1],[2,3,1,2],[2,1,1,0]],[[1,3,1,0],[2,2,2,2],[1,3,0,2],[0,2,2,1]],[[2,2,1,0],[2,2,2,2],[1,3,0,2],[0,2,2,1]],[[2,1,1,0],[2,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,1,0],[3,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,1,0],[2,4,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,1],[3,3,1,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,1],[2,3,1,2],[2,2,0,0]],[[2,1,1,0],[2,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,1,0],[3,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,1,0],[2,4,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,1],[3,3,2,1],[1,0,1,1]],[[1,2,1,0],[3,2,2,2],[0,3,3,1],[1,2,1,0]],[[1,3,1,0],[2,2,2,2],[0,3,3,1],[1,2,1,0]],[[2,2,1,0],[2,2,2,2],[0,3,3,1],[1,2,1,0]],[[1,2,1,0],[3,2,2,2],[0,3,3,1],[1,2,0,1]],[[1,3,1,0],[2,2,2,2],[0,3,3,1],[1,2,0,1]],[[2,2,1,0],[2,2,2,2],[0,3,3,1],[1,2,0,1]],[[1,2,1,0],[3,2,2,2],[0,3,3,1],[1,1,2,0]],[[1,3,1,0],[2,2,2,2],[0,3,3,1],[1,1,2,0]],[[2,2,1,0],[2,2,2,2],[0,3,3,1],[1,1,2,0]],[[1,2,1,0],[3,2,2,2],[0,3,3,1],[1,1,1,1]],[[1,3,1,0],[2,2,2,2],[0,3,3,1],[1,1,1,1]],[[2,2,1,0],[2,2,2,2],[0,3,3,1],[1,1,1,1]],[[1,2,1,0],[3,2,2,2],[0,3,3,0],[1,2,1,1]],[[1,3,1,0],[2,2,2,2],[0,3,3,0],[1,2,1,1]],[[2,1,1,0],[2,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,1,1,0],[3,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,1,1,0],[2,4,3,1],[2,3,2,2],[1,0,0,1]],[[1,1,1,0],[2,3,4,1],[2,3,2,2],[1,0,0,1]],[[1,1,1,0],[2,3,3,1],[3,3,2,2],[1,0,0,1]],[[2,1,1,0],[2,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,1,1,0],[3,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,1,1,0],[2,4,3,1],[2,3,2,2],[1,0,1,0]],[[1,1,1,0],[2,3,4,1],[2,3,2,2],[1,0,1,0]],[[1,1,1,0],[2,3,3,1],[3,3,2,2],[1,0,1,0]],[[2,2,1,0],[2,2,2,2],[0,3,3,0],[1,2,1,1]],[[1,2,1,0],[3,2,2,2],[0,3,3,0],[1,1,2,1]],[[1,3,1,0],[2,2,2,2],[0,3,3,0],[1,1,2,1]],[[2,2,1,0],[2,2,2,2],[0,3,3,0],[1,1,2,1]],[[1,2,1,0],[3,2,2,2],[0,3,2,1],[1,2,2,0]],[[1,3,1,0],[2,2,2,2],[0,3,2,1],[1,2,2,0]],[[2,2,1,0],[2,2,2,2],[0,3,2,1],[1,2,2,0]],[[1,2,1,0],[3,2,2,2],[0,3,2,0],[1,2,2,1]],[[1,3,1,0],[2,2,2,2],[0,3,2,0],[1,2,2,1]],[[2,2,1,0],[2,2,2,2],[0,3,2,0],[1,2,2,1]],[[1,2,1,0],[3,2,2,2],[0,3,0,2],[1,2,2,1]],[[1,3,1,0],[2,2,2,2],[0,3,0,2],[1,2,2,1]],[[2,2,1,0],[2,2,2,2],[0,3,0,2],[1,2,2,1]],[[1,2,1,0],[2,2,2,1],[3,3,3,2],[1,0,1,0]],[[1,2,1,0],[3,2,2,1],[2,3,3,2],[1,0,1,0]],[[1,3,1,0],[2,2,2,1],[2,3,3,2],[1,0,1,0]],[[2,2,1,0],[2,2,2,1],[2,3,3,2],[1,0,1,0]],[[1,2,1,0],[2,2,2,1],[3,3,3,2],[1,0,0,1]],[[1,2,1,0],[3,2,2,1],[2,3,3,2],[1,0,0,1]],[[1,3,1,0],[2,2,2,1],[2,3,3,2],[1,0,0,1]],[[2,2,1,0],[2,2,2,1],[2,3,3,2],[1,0,0,1]],[[1,2,1,0],[2,2,2,1],[3,3,3,1],[1,0,1,1]],[[1,2,1,0],[3,2,2,1],[2,3,3,1],[1,0,1,1]],[[1,3,1,0],[2,2,2,1],[2,3,3,1],[1,0,1,1]],[[2,2,1,0],[2,2,2,1],[2,3,3,1],[1,0,1,1]],[[2,1,1,0],[2,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,1,1,0],[3,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,1,1,0],[2,4,3,1],[2,3,3,2],[1,0,0,0]],[[1,1,1,0],[2,3,4,1],[2,3,3,2],[1,0,0,0]],[[1,1,1,0],[2,3,3,1],[3,3,3,2],[1,0,0,0]],[[1,2,1,0],[2,2,2,1],[2,2,3,2],[2,2,0,0]],[[1,2,1,0],[2,2,2,1],[3,2,3,2],[1,2,0,0]],[[1,2,1,0],[3,2,2,1],[2,2,3,2],[1,2,0,0]],[[1,3,1,0],[2,2,2,1],[2,2,3,2],[1,2,0,0]],[[2,2,1,0],[2,2,2,1],[2,2,3,2],[1,2,0,0]],[[1,2,1,0],[2,2,2,1],[2,2,3,2],[2,1,1,0]],[[1,2,1,0],[2,2,2,1],[3,2,3,2],[1,1,1,0]],[[1,2,1,0],[3,2,2,1],[2,2,3,2],[1,1,1,0]],[[1,3,1,0],[2,2,2,1],[2,2,3,2],[1,1,1,0]],[[2,2,1,0],[2,2,2,1],[2,2,3,2],[1,1,1,0]],[[1,2,1,0],[2,2,2,1],[2,2,3,2],[2,1,0,1]],[[1,2,1,0],[2,2,2,1],[3,2,3,2],[1,1,0,1]],[[1,2,1,0],[3,2,2,1],[2,2,3,2],[1,1,0,1]],[[1,3,1,0],[2,2,2,1],[2,2,3,2],[1,1,0,1]],[[2,2,1,0],[2,2,2,1],[2,2,3,2],[1,1,0,1]],[[1,2,1,0],[2,2,2,1],[2,2,3,2],[2,0,2,0]],[[1,2,1,0],[2,2,2,1],[3,2,3,2],[1,0,2,0]],[[1,2,1,0],[3,2,2,1],[2,2,3,2],[1,0,2,0]],[[1,3,1,0],[2,2,2,1],[2,2,3,2],[1,0,2,0]],[[2,2,1,0],[2,2,2,1],[2,2,3,2],[1,0,2,0]],[[1,2,1,0],[2,2,2,1],[2,2,3,2],[2,0,1,1]],[[1,2,1,0],[2,2,2,1],[3,2,3,2],[1,0,1,1]],[[1,2,1,0],[3,2,2,1],[2,2,3,2],[1,0,1,1]],[[1,3,1,0],[2,2,2,1],[2,2,3,2],[1,0,1,1]],[[2,2,1,0],[2,2,2,1],[2,2,3,2],[1,0,1,1]],[[1,2,1,0],[2,2,2,1],[3,2,3,2],[0,2,1,0]],[[1,2,1,0],[3,2,2,1],[2,2,3,2],[0,2,1,0]],[[1,3,1,0],[2,2,2,1],[2,2,3,2],[0,2,1,0]],[[2,2,1,0],[2,2,2,1],[2,2,3,2],[0,2,1,0]],[[1,2,1,0],[2,2,2,1],[3,2,3,2],[0,2,0,1]],[[1,2,1,0],[3,2,2,1],[2,2,3,2],[0,2,0,1]],[[1,3,1,0],[2,2,2,1],[2,2,3,2],[0,2,0,1]],[[2,2,1,0],[2,2,2,1],[2,2,3,2],[0,2,0,1]],[[1,2,1,0],[2,2,2,1],[3,2,3,2],[0,1,2,0]],[[1,2,1,0],[3,2,2,1],[2,2,3,2],[0,1,2,0]],[[1,3,1,0],[2,2,2,1],[2,2,3,2],[0,1,2,0]],[[2,2,1,0],[2,2,2,1],[2,2,3,2],[0,1,2,0]],[[1,2,1,0],[2,2,2,1],[3,2,3,2],[0,1,1,1]],[[1,2,1,0],[3,2,2,1],[2,2,3,2],[0,1,1,1]],[[1,3,1,0],[2,2,2,1],[2,2,3,2],[0,1,1,1]],[[2,2,1,0],[2,2,2,1],[2,2,3,2],[0,1,1,1]],[[1,2,1,0],[2,2,2,1],[2,2,3,1],[2,2,0,1]],[[1,2,1,0],[2,2,2,1],[3,2,3,1],[1,2,0,1]],[[1,2,1,0],[3,2,2,1],[2,2,3,1],[1,2,0,1]],[[1,3,1,0],[2,2,2,1],[2,2,3,1],[1,2,0,1]],[[2,2,1,0],[2,2,2,1],[2,2,3,1],[1,2,0,1]],[[1,2,1,0],[2,2,2,1],[2,2,3,1],[2,1,1,1]],[[1,2,1,0],[2,2,2,1],[3,2,3,1],[1,1,1,1]],[[1,2,1,0],[3,2,2,1],[2,2,3,1],[1,1,1,1]],[[1,3,1,0],[2,2,2,1],[2,2,3,1],[1,1,1,1]],[[2,2,1,0],[2,2,2,1],[2,2,3,1],[1,1,1,1]],[[1,2,1,0],[2,2,2,1],[2,2,3,1],[2,0,2,1]],[[1,2,1,0],[2,2,2,1],[3,2,3,1],[1,0,2,1]],[[1,2,1,0],[3,2,2,1],[2,2,3,1],[1,0,2,1]],[[1,3,1,0],[2,2,2,1],[2,2,3,1],[1,0,2,1]],[[2,2,1,0],[2,2,2,1],[2,2,3,1],[1,0,2,1]],[[1,2,1,0],[2,2,2,1],[3,2,3,1],[0,2,1,1]],[[1,2,1,0],[3,2,2,1],[2,2,3,1],[0,2,1,1]],[[1,3,1,0],[2,2,2,1],[2,2,3,1],[0,2,1,1]],[[2,2,1,0],[2,2,2,1],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[2,2,2,1],[3,2,3,1],[0,1,2,1]],[[1,2,1,0],[3,2,2,1],[2,2,3,1],[0,1,2,1]],[[1,3,1,0],[2,2,2,1],[2,2,3,1],[0,1,2,1]],[[2,2,1,0],[2,2,2,1],[2,2,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[0,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[0,0,2,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,0,2,3],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,0,2,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[0,0,2,2],[1,2,2,2]],[[1,1,1,0],[2,3,4,2],[0,0,3,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[0,0,3,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,0,3,3],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,0,3,2],[1,1,2,2]],[[1,1,1,0],[2,3,4,2],[0,0,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[0,0,3,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,0,3,3],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,0,3,2],[1,2,1,2]],[[1,1,1,0],[2,3,4,2],[0,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,3],[0,0,3,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,0,3,3],[1,2,2,0]],[[2,1,1,0],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[0,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[0,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[0,1,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,1,1,3],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,1,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,1,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[0,1,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[0,1,1,2],[1,2,2,2]],[[2,1,1,0],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[0,1,2,2],[1,2,1,1]],[[1,1,1,0],[2,3,4,2],[0,1,2,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[0,1,2,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,1,2,3],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,1,2,2],[1,2,1,2]],[[2,1,1,0],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[0,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,4,2],[0,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,3],[0,1,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,1,2,3],[1,2,2,0]],[[2,1,1,0],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[0,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[0,1,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,1,4,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,1,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,1,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[0,1,3,0],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[0,1,3,0],[1,2,2,2]],[[2,1,1,0],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[0,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,4,2],[0,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[0,1,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,1,4,1],[1,2,1,1]],[[2,1,1,0],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[0,1,3,1],[1,2,2,0]],[[1,1,1,0],[2,3,4,2],[0,1,3,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,3],[0,1,3,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,1,4,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,1,3,1],[2,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,1,3,1],[1,3,2,0]],[[1,1,1,0],[2,3,3,2],[0,1,3,1],[1,2,3,0]],[[1,1,1,0],[2,3,4,2],[0,1,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,3],[0,1,3,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[0,1,3,3],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[0,1,3,2],[1,0,2,2]],[[1,1,1,0],[2,3,4,2],[0,1,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[0,1,3,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,1,3,3],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,1,3,2],[1,1,1,2]],[[1,1,1,0],[2,3,4,2],[0,1,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,3],[0,1,3,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,1,0],[2,2,2,1],[2,2,3,0],[2,1,2,1]],[[1,2,1,0],[2,2,2,1],[3,2,3,0],[1,1,2,1]],[[1,2,1,0],[3,2,2,1],[2,2,3,0],[1,1,2,1]],[[1,3,1,0],[2,2,2,1],[2,2,3,0],[1,1,2,1]],[[2,2,1,0],[2,2,2,1],[2,2,3,0],[1,1,2,1]],[[1,2,1,0],[2,2,2,1],[3,2,3,0],[0,2,2,1]],[[1,2,1,0],[3,2,2,1],[2,2,3,0],[0,2,2,1]],[[1,3,1,0],[2,2,2,1],[2,2,3,0],[0,2,2,1]],[[2,2,1,0],[2,2,2,1],[2,2,3,0],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[0,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[0,2,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,2,0,3],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,2,0,2],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,2,0,2],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[0,2,0,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[0,2,0,2],[1,2,2,2]],[[2,1,1,0],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[0,2,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,4,2],[0,2,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[0,2,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,2,1,3],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,2,1,2],[1,1,3,1]],[[1,1,1,0],[2,3,3,2],[0,2,1,2],[1,1,2,2]],[[1,1,1,0],[2,4,3,2],[0,2,2,2],[1,0,2,1]],[[1,1,1,0],[2,3,4,2],[0,2,2,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,3],[0,2,2,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[0,2,2,3],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[0,2,2,2],[1,0,2,2]],[[2,1,1,0],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[0,2,2,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[0,2,2,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,2,2,3],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,2,2,2],[1,1,1,2]],[[2,1,1,0],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[0,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,4,2],[0,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,3],[0,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[0,2,2,3],[1,1,2,0]],[[2,1,1,0],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,1,0],[3,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,1,0],[2,4,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,4,2],[0,2,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,3],[0,2,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,2,2,3],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,2,2,2],[1,2,0,2]],[[2,1,1,0],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,1,1,0],[3,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,1,1,0],[2,4,3,2],[0,2,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,4,2],[0,2,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,3],[0,2,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,2,2,3],[1,2,1,0]],[[2,1,1,0],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,4,2],[0,2,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[0,2,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,2,4,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,2,3,0],[1,1,3,1]],[[1,1,1,0],[2,3,3,2],[0,2,3,0],[1,1,2,2]],[[2,1,1,0],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[0,2,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,4,2],[0,2,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[0,2,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,2,4,0],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[0,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,4,2],[0,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,3],[0,2,3,1],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[0,2,4,1],[1,0,2,1]],[[2,1,1,0],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[0,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[0,2,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,2,4,1],[1,1,1,1]],[[2,1,1,0],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[0,2,3,1],[1,1,2,0]],[[1,1,1,0],[2,3,4,2],[0,2,3,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,3],[0,2,3,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[0,2,4,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[0,2,3,1],[1,1,3,0]],[[2,1,1,0],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,1,1,0],[3,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,4,3,2],[0,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,4,2],[0,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,3],[0,2,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,2,4,1],[1,2,0,1]],[[2,1,1,0],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,1,1,0],[3,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,1,1,0],[2,4,3,2],[0,2,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,4,2],[0,2,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,3],[0,2,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,1,0],[2,2,2,1],[2,2,2,2],[2,1,2,0]],[[1,2,1,0],[2,2,2,1],[3,2,2,2],[1,1,2,0]],[[1,2,1,0],[3,2,2,1],[2,2,2,2],[1,1,2,0]],[[1,3,1,0],[2,2,2,1],[2,2,2,2],[1,1,2,0]],[[2,2,1,0],[2,2,2,1],[2,2,2,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[0,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,4,2],[0,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,3],[0,2,3,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,1,0],[2,2,2,1],[3,2,2,2],[0,2,2,0]],[[1,2,1,0],[3,2,2,1],[2,2,2,2],[0,2,2,0]],[[1,3,1,0],[2,2,2,1],[2,2,2,2],[0,2,2,0]],[[2,2,1,0],[2,2,2,1],[2,2,2,2],[0,2,2,0]],[[1,2,1,0],[2,2,2,1],[2,2,2,1],[2,1,2,1]],[[1,2,1,0],[2,2,2,1],[3,2,2,1],[1,1,2,1]],[[1,2,1,0],[3,2,2,1],[2,2,2,1],[1,1,2,1]],[[1,3,1,0],[2,2,2,1],[2,2,2,1],[1,1,2,1]],[[2,2,1,0],[2,2,2,1],[2,2,2,1],[1,1,2,1]],[[1,2,1,0],[2,2,2,1],[3,2,2,1],[0,2,2,1]],[[1,2,1,0],[3,2,2,1],[2,2,2,1],[0,2,2,1]],[[1,3,1,0],[2,2,2,1],[2,2,2,1],[0,2,2,1]],[[2,2,1,0],[2,2,2,1],[2,2,2,1],[0,2,2,1]],[[1,2,1,0],[2,2,2,1],[2,2,1,2],[2,1,2,1]],[[1,2,1,0],[2,2,2,1],[3,2,1,2],[1,1,2,1]],[[1,2,1,0],[3,2,2,1],[2,2,1,2],[1,1,2,1]],[[1,3,1,0],[2,2,2,1],[2,2,1,2],[1,1,2,1]],[[2,1,1,0],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[0,3,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[0,3,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,4,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,0,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,0,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,0,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[0,3,0,1],[1,2,2,2]],[[2,1,1,0],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[0,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,4,2],[0,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[0,3,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,4,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,0,3],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,0,2],[1,1,3,1]],[[1,1,1,0],[2,3,3,2],[0,3,0,2],[1,1,2,2]],[[2,1,1,0],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,1,0],[2,3,4,2],[0,3,0,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[0,3,0,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,4,0,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,0,3],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,0,2],[2,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,0,2],[1,3,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,0,2],[1,2,1,2]],[[2,1,1,0],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[0,3,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,4,2],[0,3,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,3],[0,3,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,4,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,3,0,3],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,3,0,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,3,0,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,2],[0,3,0,2],[1,2,3,0]],[[2,1,1,0],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[0,3,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[0,3,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,4,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,0],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,0],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,0],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,0],[1,2,2,2]],[[2,1,1,0],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,1,0],[2,3,4,2],[0,3,1,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,3],[0,3,1,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,4,1,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,3,1,1],[2,2,2,0]],[[1,1,1,0],[2,3,3,2],[0,3,1,1],[1,3,2,0]],[[1,1,1,0],[2,3,3,2],[0,3,1,1],[1,2,3,0]],[[1,1,1,0],[2,4,3,2],[0,3,1,2],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[0,3,1,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,3],[0,3,1,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,3],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,2],[0,1,3,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,2],[0,1,2,2]],[[2,1,1,0],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[0,3,1,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[0,3,1,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,4,1,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,3],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,2],[1,1,1,2]],[[2,1,1,0],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,1,0],[2,3,4,2],[0,3,1,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,3],[0,3,1,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[0,4,1,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[0,3,1,3],[1,1,2,0]],[[2,1,1,0],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,1,0],[3,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,1,0],[2,4,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,1,0],[2,3,4,2],[0,3,1,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,3],[0,3,1,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,4,1,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,3],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,2],[2,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,2],[1,3,0,1]],[[1,1,1,0],[2,3,3,2],[0,3,1,2],[1,2,0,2]],[[2,1,1,0],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,1,0],[3,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,1,0],[2,4,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,1,0],[2,3,4,2],[0,3,1,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,3],[0,3,1,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,4,1,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,3,1,3],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,3,1,2],[2,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,3,1,2],[1,3,1,0]],[[2,2,1,0],[2,2,2,1],[2,2,1,2],[1,1,2,1]],[[1,2,1,0],[2,2,2,1],[3,2,1,2],[0,2,2,1]],[[1,2,1,0],[3,2,2,1],[2,2,1,2],[0,2,2,1]],[[1,3,1,0],[2,2,2,1],[2,2,1,2],[0,2,2,1]],[[2,2,1,0],[2,2,2,1],[2,2,1,2],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,3,4,2],[0,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[0,3,2,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,4,2,0],[1,1,2,1]],[[2,1,1,0],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[0,3,2,0],[1,2,1,1]],[[1,1,1,0],[2,3,4,2],[0,3,2,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[0,3,2,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,4,2,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,2,0],[2,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,2,0],[1,3,1,1]],[[2,1,1,0],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[0,3,2,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[0,3,2,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,4,2,1],[1,1,1,1]],[[2,1,1,0],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,3,4,2],[0,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,3],[0,3,2,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[0,4,2,1],[1,1,2,0]],[[2,1,1,0],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,1,0],[3,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,1,0],[2,4,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,1,0],[2,3,4,2],[0,3,2,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,3],[0,3,2,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,4,2,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,3,2,1],[2,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,3,2,1],[1,3,0,1]],[[2,1,1,0],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,1,1,0],[3,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,1,1,0],[2,4,3,2],[0,3,2,1],[1,2,1,0]],[[1,1,1,0],[2,3,4,2],[0,3,2,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,3],[0,3,2,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,4,2,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,3,2,1],[2,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,3,2,1],[1,3,1,0]],[[1,1,1,0],[2,4,3,2],[0,3,2,2],[0,0,2,1]],[[1,1,1,0],[2,3,4,2],[0,3,2,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,3],[0,3,2,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,2,3],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,2,2],[0,0,2,2]],[[1,1,1,0],[2,4,3,2],[0,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,4,2],[0,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[0,3,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,2,3],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,2,2],[0,1,1,2]],[[1,1,1,0],[2,4,3,2],[0,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[0,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[0,3,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[0,3,2,3],[0,1,2,0]],[[1,1,1,0],[2,4,3,2],[0,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,4,2],[0,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,3],[0,3,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,3,2,3],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,3,2,2],[0,2,0,2]],[[1,1,1,0],[2,4,3,2],[0,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[0,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,3],[0,3,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,1,0],[2,2,2,1],[2,1,3,2],[1,3,1,0]],[[1,2,1,0],[2,2,2,1],[2,1,3,2],[2,2,1,0]],[[1,2,1,0],[2,2,2,1],[3,1,3,2],[1,2,1,0]],[[1,2,1,0],[3,2,2,1],[2,1,3,2],[1,2,1,0]],[[1,3,1,0],[2,2,2,1],[2,1,3,2],[1,2,1,0]],[[2,2,1,0],[2,2,2,1],[2,1,3,2],[1,2,1,0]],[[1,2,1,0],[2,2,2,1],[2,1,3,2],[1,3,0,1]],[[1,2,1,0],[2,2,2,1],[2,1,3,2],[2,2,0,1]],[[1,2,1,0],[2,2,2,1],[3,1,3,2],[1,2,0,1]],[[1,2,1,0],[3,2,2,1],[2,1,3,2],[1,2,0,1]],[[1,3,1,0],[2,2,2,1],[2,1,3,2],[1,2,0,1]],[[2,2,1,0],[2,2,2,1],[2,1,3,2],[1,2,0,1]],[[1,2,1,0],[2,2,2,1],[2,1,3,1],[1,3,1,1]],[[1,2,1,0],[2,2,2,1],[2,1,3,1],[2,2,1,1]],[[1,2,1,0],[2,2,2,1],[3,1,3,1],[1,2,1,1]],[[1,2,1,0],[3,2,2,1],[2,1,3,1],[1,2,1,1]],[[1,3,1,0],[2,2,2,1],[2,1,3,1],[1,2,1,1]],[[2,2,1,0],[2,2,2,1],[2,1,3,1],[1,2,1,1]],[[1,2,1,0],[2,2,2,1],[2,1,3,0],[1,2,3,1]],[[1,2,1,0],[2,2,2,1],[2,1,3,0],[1,3,2,1]],[[1,2,1,0],[2,2,2,1],[2,1,3,0],[2,2,2,1]],[[1,2,1,0],[2,2,2,1],[3,1,3,0],[1,2,2,1]],[[1,2,1,0],[3,2,2,1],[2,1,3,0],[1,2,2,1]],[[1,3,1,0],[2,2,2,1],[2,1,3,0],[1,2,2,1]],[[2,2,1,0],[2,2,2,1],[2,1,3,0],[1,2,2,1]],[[1,2,1,0],[2,2,2,1],[2,1,2,2],[1,2,3,0]],[[1,1,1,0],[2,4,3,2],[0,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[0,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,3],[0,3,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,4,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,3,0],[0,1,3,1]],[[1,1,1,0],[2,3,3,2],[0,3,3,0],[0,1,2,2]],[[1,1,1,0],[2,4,3,2],[0,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[0,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[0,3,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,4,0],[0,2,1,1]],[[2,1,1,0],[2,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,1,0],[2,3,4,2],[0,3,3,0],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[0,4,3,0],[1,1,2,0]],[[2,1,1,0],[2,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,1,0],[3,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,1,0],[2,4,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,1,0],[2,3,4,2],[0,3,3,0],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,4,3,0],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,3,3,0],[2,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,3,3,0],[1,3,1,0]],[[1,2,1,0],[2,2,2,1],[2,1,2,2],[1,3,2,0]],[[1,2,1,0],[2,2,2,1],[2,1,2,2],[2,2,2,0]],[[1,2,1,0],[2,2,2,1],[3,1,2,2],[1,2,2,0]],[[1,2,1,0],[3,2,2,1],[2,1,2,2],[1,2,2,0]],[[1,3,1,0],[2,2,2,1],[2,1,2,2],[1,2,2,0]],[[2,2,1,0],[2,2,2,1],[2,1,2,2],[1,2,2,0]],[[1,2,1,0],[2,2,2,1],[2,1,2,1],[1,2,2,2]],[[1,2,1,0],[2,2,2,1],[2,1,2,1],[1,2,3,1]],[[1,2,1,0],[2,2,2,1],[2,1,2,1],[1,3,2,1]],[[1,2,1,0],[2,2,2,1],[2,1,2,1],[2,2,2,1]],[[1,2,1,0],[2,2,2,1],[3,1,2,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[0,3,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,4,2],[0,3,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,3,3],[0,3,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[0,3,4,1],[0,0,2,1]],[[1,1,1,0],[2,4,3,2],[0,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,4,2],[0,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[0,3,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[0,3,4,1],[0,1,1,1]],[[1,1,1,0],[2,4,3,2],[0,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[0,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[0,3,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[0,3,4,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[0,3,3,1],[0,1,3,0]],[[1,1,1,0],[2,4,3,2],[0,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,4,2],[0,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,3],[0,3,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[0,3,4,1],[0,2,0,1]],[[1,1,1,0],[2,4,3,2],[0,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[0,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,3],[0,3,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,1,0],[3,2,2,1],[2,1,2,1],[1,2,2,1]],[[1,3,1,0],[2,2,2,1],[2,1,2,1],[1,2,2,1]],[[2,2,1,0],[2,2,2,1],[2,1,2,1],[1,2,2,1]],[[1,2,1,0],[2,2,2,1],[2,1,1,2],[1,2,2,2]],[[1,2,1,0],[2,2,2,1],[2,1,1,2],[1,2,3,1]],[[1,2,1,0],[2,2,2,1],[2,1,1,2],[1,3,2,1]],[[1,2,1,0],[2,2,2,1],[2,1,1,2],[2,2,2,1]],[[1,2,1,0],[2,2,2,1],[2,1,1,3],[1,2,2,1]],[[1,2,1,0],[2,2,2,1],[3,1,1,2],[1,2,2,1]],[[1,2,1,0],[3,2,2,1],[2,1,1,2],[1,2,2,1]],[[1,3,1,0],[2,2,2,1],[2,1,1,2],[1,2,2,1]],[[2,2,1,0],[2,2,2,1],[2,1,1,2],[1,2,2,1]],[[2,1,1,0],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,1,0],[3,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,4,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,3,4,2],[0,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[0,4,3,1],[1,2,0,0]],[[1,2,1,0],[2,2,2,1],[2,0,3,2],[1,2,3,0]],[[1,2,1,0],[2,2,2,1],[2,0,3,2],[1,3,2,0]],[[1,2,1,0],[2,2,2,1],[2,0,3,2],[2,2,2,0]],[[1,2,1,0],[2,2,2,1],[2,0,3,3],[1,2,2,0]],[[1,2,1,0],[2,2,2,1],[2,0,4,2],[1,2,2,0]],[[1,2,1,0],[2,2,2,1],[3,0,3,2],[1,2,2,0]],[[1,2,1,0],[3,2,2,1],[2,0,3,2],[1,2,2,0]],[[1,3,1,0],[2,2,2,1],[2,0,3,2],[1,2,2,0]],[[2,2,1,0],[2,2,2,1],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[2,2,2,1],[2,0,3,2],[1,2,1,2]],[[1,2,1,0],[2,2,2,1],[2,0,3,3],[1,2,1,1]],[[1,2,1,0],[2,2,2,1],[2,0,4,2],[1,2,1,1]],[[1,2,1,0],[2,2,2,1],[2,0,3,1],[1,2,2,2]],[[1,2,1,0],[2,2,2,1],[2,0,3,1],[1,2,3,1]],[[1,2,1,0],[2,2,2,1],[2,0,3,1],[1,3,2,1]],[[1,2,1,0],[2,2,2,1],[2,0,3,1],[2,2,2,1]],[[1,2,1,0],[2,2,2,1],[2,0,4,1],[1,2,2,1]],[[1,2,1,0],[2,2,2,1],[3,0,3,1],[1,2,2,1]],[[1,2,1,0],[3,2,2,1],[2,0,3,1],[1,2,2,1]],[[1,3,1,0],[2,2,2,1],[2,0,3,1],[1,2,2,1]],[[2,2,1,0],[2,2,2,1],[2,0,3,1],[1,2,2,1]],[[1,2,1,0],[2,2,2,1],[2,0,2,2],[1,2,2,2]],[[1,2,1,0],[2,2,2,1],[2,0,2,2],[1,2,3,1]],[[1,1,1,0],[2,4,3,2],[0,3,3,2],[0,1,0,1]],[[1,1,1,0],[2,3,4,2],[0,3,3,2],[0,1,0,1]],[[1,1,1,0],[2,3,3,3],[0,3,3,2],[0,1,0,1]],[[1,1,1,0],[2,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,1,0],[2,2,2,1],[2,0,2,2],[1,3,2,1]],[[1,2,1,0],[2,2,2,1],[2,0,2,2],[2,2,2,1]],[[1,2,1,0],[2,2,2,1],[2,0,2,3],[1,2,2,1]],[[1,2,1,0],[2,2,2,1],[3,0,2,2],[1,2,2,1]],[[1,2,1,0],[3,2,2,1],[2,0,2,2],[1,2,2,1]],[[1,3,1,0],[2,2,2,1],[2,0,2,2],[1,2,2,1]],[[2,2,1,0],[2,2,2,1],[2,0,2,2],[1,2,2,1]],[[1,2,1,0],[3,2,2,1],[1,3,3,2],[1,2,0,0]],[[1,3,1,0],[2,2,2,1],[1,3,3,2],[1,2,0,0]],[[2,2,1,0],[2,2,2,1],[1,3,3,2],[1,2,0,0]],[[1,2,1,0],[3,2,2,1],[1,3,3,2],[1,1,1,0]],[[1,3,1,0],[2,2,2,1],[1,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,2,2,1],[1,3,3,2],[1,1,1,0]],[[1,2,1,0],[3,2,2,1],[1,3,3,2],[1,1,0,1]],[[1,3,1,0],[2,2,2,1],[1,3,3,2],[1,1,0,1]],[[2,2,1,0],[2,2,2,1],[1,3,3,2],[1,1,0,1]],[[1,2,1,0],[3,2,2,1],[1,3,3,2],[1,0,2,0]],[[1,3,1,0],[2,2,2,1],[1,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,2,2,1],[1,3,3,2],[1,0,2,0]],[[1,2,1,0],[3,2,2,1],[1,3,3,2],[1,0,1,1]],[[1,3,1,0],[2,2,2,1],[1,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,2,2,1],[1,3,3,2],[1,0,1,1]],[[1,2,1,0],[3,2,2,1],[1,3,3,2],[0,2,1,0]],[[1,3,1,0],[2,2,2,1],[1,3,3,2],[0,2,1,0]],[[2,2,1,0],[2,2,2,1],[1,3,3,2],[0,2,1,0]],[[1,2,1,0],[3,2,2,1],[1,3,3,2],[0,2,0,1]],[[1,3,1,0],[2,2,2,1],[1,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,2,2,1],[1,3,3,2],[0,2,0,1]],[[1,2,1,0],[3,2,2,1],[1,3,3,2],[0,1,2,0]],[[1,3,1,0],[2,2,2,1],[1,3,3,2],[0,1,2,0]],[[2,2,1,0],[2,2,2,1],[1,3,3,2],[0,1,2,0]],[[1,2,1,0],[3,2,2,1],[1,3,3,2],[0,1,1,1]],[[1,3,1,0],[2,2,2,1],[1,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,2,2,1],[1,3,3,2],[0,1,1,1]],[[1,2,1,0],[3,2,2,1],[1,3,3,1],[1,2,0,1]],[[1,3,1,0],[2,2,2,1],[1,3,3,1],[1,2,0,1]],[[2,2,1,0],[2,2,2,1],[1,3,3,1],[1,2,0,1]],[[1,2,1,0],[3,2,2,1],[1,3,3,1],[1,1,1,1]],[[1,3,1,0],[2,2,2,1],[1,3,3,1],[1,1,1,1]],[[2,2,1,0],[2,2,2,1],[1,3,3,1],[1,1,1,1]],[[1,2,1,0],[3,2,2,1],[1,3,3,1],[1,0,2,1]],[[1,3,1,0],[2,2,2,1],[1,3,3,1],[1,0,2,1]],[[2,2,1,0],[2,2,2,1],[1,3,3,1],[1,0,2,1]],[[1,2,1,0],[3,2,2,1],[1,3,3,1],[0,2,1,1]],[[1,3,1,0],[2,2,2,1],[1,3,3,1],[0,2,1,1]],[[2,2,1,0],[2,2,2,1],[1,3,3,1],[0,2,1,1]],[[1,2,1,0],[3,2,2,1],[1,3,3,1],[0,1,2,1]],[[1,3,1,0],[2,2,2,1],[1,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,2,2,1],[1,3,3,1],[0,1,2,1]],[[2,1,1,0],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[1,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[1,0,1,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,1,3],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,1,2],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,1,2],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,1,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[1,0,1,2],[1,2,2,2]],[[1,1,1,0],[2,3,4,2],[1,0,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,3],[1,0,2,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,2,3],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,2,2],[0,2,3,1]],[[1,1,1,0],[2,3,3,2],[1,0,2,2],[0,2,2,2]],[[2,1,1,0],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[1,0,2,2],[1,2,1,1]],[[1,1,1,0],[2,3,4,2],[1,0,2,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[1,0,2,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,0,2,3],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,0,2,2],[1,2,1,2]],[[2,1,1,0],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[1,0,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,4,2],[1,0,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,3],[1,0,2,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,0,2,3],[1,2,2,0]],[[2,1,1,0],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[1,0,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[1,0,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[1,0,3,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,4,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,3,0],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,3,0],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,3,0],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[1,0,3,0],[1,2,2,2]],[[2,1,1,0],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[1,0,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,4,2],[1,0,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[1,0,3,1],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,0,4,1],[1,2,1,1]],[[2,1,1,0],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,1,0],[2,3,4,2],[1,0,3,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,3],[1,0,3,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,0,4,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,0,3,1],[2,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,0,3,1],[1,3,2,0]],[[1,1,1,0],[2,3,3,2],[1,0,3,1],[1,2,3,0]],[[1,1,1,0],[2,3,4,2],[1,0,3,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,3],[1,0,3,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,3,3],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,0,3,2],[0,1,2,2]],[[1,1,1,0],[2,3,4,2],[1,0,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[1,0,3,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,0,3,3],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,0,3,2],[0,2,1,2]],[[1,1,1,0],[2,3,4,2],[1,0,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,3],[1,0,3,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,1,0],[3,2,2,1],[1,3,3,0],[1,1,2,1]],[[1,3,1,0],[2,2,2,1],[1,3,3,0],[1,1,2,1]],[[2,2,1,0],[2,2,2,1],[1,3,3,0],[1,1,2,1]],[[1,2,1,0],[3,2,2,1],[1,3,3,0],[0,2,2,1]],[[1,3,1,0],[2,2,2,1],[1,3,3,0],[0,2,2,1]],[[2,2,1,0],[2,2,2,1],[1,3,3,0],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[1,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[1,1,0,2],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,0,3],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,0,2],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,0,2],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,0,2],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[1,1,0,2],[1,2,2,2]],[[2,1,1,0],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,1,1,0],[3,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,1,1,0],[2,4,3,2],[1,1,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,4,2],[1,1,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,3],[1,1,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,1,3],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,1,2],[0,3,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,1,2],[0,2,3,1]],[[1,1,1,0],[2,3,3,2],[1,1,1,2],[0,2,2,2]],[[2,1,1,0],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,1,0],[3,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,1,0],[2,4,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[1,1,2,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[1,1,2,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,1,2,3],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,1,2,2],[0,2,1,2]],[[2,1,1,0],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,1,1,0],[3,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,1,1,0],[2,4,3,2],[1,1,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,4,2],[1,1,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,3],[1,1,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,1,0],[3,2,2,1],[1,3,2,2],[1,1,2,0]],[[2,1,1,0],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,1,0],[3,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,1,0],[2,4,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,4,2],[1,1,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,3],[1,1,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,4,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,3,0],[0,3,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,3,0],[0,2,3,1]],[[1,1,1,0],[2,3,3,2],[1,1,3,0],[0,2,2,2]],[[2,1,1,0],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,1,0],[2,4,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[1,1,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[1,1,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,1,4,1],[0,2,1,1]],[[2,1,1,0],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,1,1,0],[3,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,1,1,0],[2,4,3,2],[1,1,3,1],[0,2,2,0]],[[1,1,1,0],[2,3,4,2],[1,1,3,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,3],[1,1,3,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,1,4,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,1,3,1],[0,3,2,0]],[[1,1,1,0],[2,3,3,2],[1,1,3,1],[0,2,3,0]],[[1,3,1,0],[2,2,2,1],[1,3,2,2],[1,1,2,0]],[[2,2,1,0],[2,2,2,1],[1,3,2,2],[1,1,2,0]],[[1,2,1,0],[3,2,2,1],[1,3,2,2],[0,2,2,0]],[[1,3,1,0],[2,2,2,1],[1,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,2,2,1],[1,3,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,4,2],[1,1,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,3],[1,1,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,3,3],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,1,3,2],[0,0,2,2]],[[1,1,1,0],[2,3,4,2],[1,1,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[1,1,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,1,3,3],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,1,3,2],[0,1,1,2]],[[1,1,1,0],[2,3,4,2],[1,1,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[1,1,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,1,0],[3,2,2,1],[1,3,2,1],[1,1,2,1]],[[1,3,1,0],[2,2,2,1],[1,3,2,1],[1,1,2,1]],[[2,2,1,0],[2,2,2,1],[1,3,2,1],[1,1,2,1]],[[1,2,1,0],[3,2,2,1],[1,3,2,1],[0,2,2,1]],[[1,1,1,0],[2,3,4,2],[1,1,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,3],[1,1,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,1,3,3],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,1,3,2],[1,0,1,2]],[[1,1,1,0],[2,3,4,2],[1,1,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,3],[1,1,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,3,1,0],[2,2,2,1],[1,3,2,1],[0,2,2,1]],[[2,2,1,0],[2,2,2,1],[1,3,2,1],[0,2,2,1]],[[1,2,1,0],[3,2,2,1],[1,3,1,2],[1,1,2,1]],[[1,3,1,0],[2,2,2,1],[1,3,1,2],[1,1,2,1]],[[2,2,1,0],[2,2,2,1],[1,3,1,2],[1,1,2,1]],[[1,2,1,0],[3,2,2,1],[1,3,1,2],[0,2,2,1]],[[1,3,1,0],[2,2,2,1],[1,3,1,2],[0,2,2,1]],[[2,2,1,0],[2,2,2,1],[1,3,1,2],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,1,0],[3,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,1,0],[2,4,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,4,2],[1,2,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,3],[1,2,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,0,3],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,0,2],[0,3,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,0,2],[0,2,3,1]],[[1,1,1,0],[2,3,3,2],[1,2,0,2],[0,2,2,2]],[[2,1,1,0],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,1,1,0],[3,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,1,1,0],[2,4,3,2],[1,2,1,2],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[1,2,1,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,3],[1,2,1,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,1,3],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,1,2],[0,1,3,1]],[[1,1,1,0],[2,3,3,2],[1,2,1,2],[0,1,2,2]],[[2,1,1,0],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,1,1,0],[3,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,1,1,0],[2,4,3,2],[1,2,1,2],[1,0,2,1]],[[1,1,1,0],[2,3,4,2],[1,2,1,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,3],[1,2,1,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,1,3],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,1,2],[1,0,3,1]],[[1,1,1,0],[2,3,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,1,0],[3,2,2,1],[0,3,3,2],[1,2,1,0]],[[1,3,1,0],[2,2,2,1],[0,3,3,2],[1,2,1,0]],[[2,1,1,0],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,1,0],[3,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,1,0],[2,4,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,1,0],[2,3,4,2],[1,2,2,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,3],[1,2,2,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,2,3],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,2,2],[0,0,2,2]],[[2,1,1,0],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,1,1,0],[3,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,1,1,0],[2,4,3,2],[1,2,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,4,2],[1,2,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[1,2,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,2,2,3],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,2,2,2],[0,1,1,2]],[[2,1,1,0],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,1,1,0],[3,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,1,1,0],[2,4,3,2],[1,2,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[1,2,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[1,2,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[1,2,2,3],[0,1,2,0]],[[2,1,1,0],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,2],[1,2,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,4,2],[1,2,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,3],[1,2,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[1,2,2,3],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[1,2,2,2],[0,2,0,2]],[[2,1,1,0],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[1,2,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,3],[1,2,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[1,2,2,3],[0,2,1,0]],[[2,2,1,0],[2,2,2,1],[0,3,3,2],[1,2,1,0]],[[1,2,1,0],[3,2,2,1],[0,3,3,2],[1,2,0,1]],[[1,3,1,0],[2,2,2,1],[0,3,3,2],[1,2,0,1]],[[2,2,1,0],[2,2,2,1],[0,3,3,2],[1,2,0,1]],[[1,2,1,0],[3,2,2,1],[0,3,3,2],[1,1,2,0]],[[1,3,1,0],[2,2,2,1],[0,3,3,2],[1,1,2,0]],[[2,1,1,0],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,1,1,0],[3,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,1,1,0],[2,4,3,2],[1,2,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,4,2],[1,2,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,3],[1,2,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,2,2,3],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,2,2,2],[1,0,1,2]],[[2,1,1,0],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,1,1,0],[3,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,1,1,0],[2,4,3,2],[1,2,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,4,2],[1,2,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,3],[1,2,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[1,2,2,3],[1,0,2,0]],[[2,1,1,0],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,2],[1,2,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,4,2],[1,2,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,3],[1,2,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[1,2,2,3],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[1,2,2,2],[1,1,0,2]],[[2,1,1,0],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[1,2,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,4,2],[1,2,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,3],[1,2,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[1,2,2,3],[1,1,1,0]],[[2,2,1,0],[2,2,2,1],[0,3,3,2],[1,1,2,0]],[[1,2,1,0],[3,2,2,1],[0,3,3,2],[1,1,1,1]],[[1,3,1,0],[2,2,2,1],[0,3,3,2],[1,1,1,1]],[[2,2,1,0],[2,2,2,1],[0,3,3,2],[1,1,1,1]],[[1,2,1,0],[3,2,2,1],[0,3,3,1],[1,2,1,1]],[[1,3,1,0],[2,2,2,1],[0,3,3,1],[1,2,1,1]],[[2,2,1,0],[2,2,2,1],[0,3,3,1],[1,2,1,1]],[[1,2,1,0],[3,2,2,1],[0,3,3,1],[1,1,2,1]],[[1,3,1,0],[2,2,2,1],[0,3,3,1],[1,1,2,1]],[[2,2,1,0],[2,2,2,1],[0,3,3,1],[1,1,2,1]],[[1,2,1,0],[3,2,2,1],[0,3,3,0],[1,2,2,1]],[[1,3,1,0],[2,2,2,1],[0,3,3,0],[1,2,2,1]],[[2,2,1,0],[2,2,2,1],[0,3,3,0],[1,2,2,1]],[[1,2,1,0],[3,2,2,1],[0,3,2,2],[1,2,2,0]],[[1,3,1,0],[2,2,2,1],[0,3,2,2],[1,2,2,0]],[[2,2,1,0],[2,2,2,1],[0,3,2,2],[1,2,2,0]],[[1,2,1,0],[3,2,2,1],[0,3,2,1],[1,2,2,1]],[[1,3,1,0],[2,2,2,1],[0,3,2,1],[1,2,2,1]],[[2,2,1,0],[2,2,2,1],[0,3,2,1],[1,2,2,1]],[[1,2,1,0],[3,2,2,1],[0,3,1,2],[1,2,2,1]],[[1,3,1,0],[2,2,2,1],[0,3,1,2],[1,2,2,1]],[[2,2,1,0],[2,2,2,1],[0,3,1,2],[1,2,2,1]],[[2,1,1,0],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,1,0],[3,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,1,0],[2,4,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[1,2,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,3],[1,2,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,4,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,3,0],[0,1,3,1]],[[1,1,1,0],[2,3,3,2],[1,2,3,0],[0,1,2,2]],[[2,1,1,0],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,1,1,0],[3,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,1,1,0],[2,4,3,2],[1,2,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[1,2,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[1,2,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,2,4,0],[0,2,1,1]],[[2,1,1,0],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,1,0],[3,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,1,0],[2,4,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,4,2],[1,2,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,3],[1,2,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,4,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,3,0],[1,0,3,1]],[[1,1,1,0],[2,3,3,2],[1,2,3,0],[1,0,2,2]],[[2,1,1,0],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[1,2,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[1,2,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,2,4,0],[1,1,1,1]],[[2,1,1,0],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,1,0],[3,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,1,0],[2,4,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,4,2],[1,2,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,3,3],[1,2,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,2,4,1],[0,0,2,1]],[[2,1,1,0],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,1,1,0],[3,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,1,1,0],[2,4,3,2],[1,2,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,4,2],[1,2,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[1,2,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,2,4,1],[0,1,1,1]],[[2,1,1,0],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,1,0],[3,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,1,0],[2,4,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[1,2,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[1,2,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[1,2,4,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[1,2,3,1],[0,1,3,0]],[[2,1,1,0],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,1,0],[3,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,1,0],[2,4,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,4,2],[1,2,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,3],[1,2,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[1,2,4,1],[0,2,0,1]],[[2,1,1,0],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[1,2,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[1,2,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,3],[1,2,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[1,2,4,1],[0,2,1,0]],[[2,1,1,0],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,1,0],[3,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,1,0],[2,4,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,4,2],[1,2,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,3],[1,2,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,2,4,1],[1,0,1,1]],[[2,1,1,0],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,1,1,0],[3,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,1,1,0],[2,4,3,2],[1,2,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,4,2],[1,2,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,3],[1,2,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[1,2,4,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[1,2,3,1],[1,0,3,0]],[[2,1,1,0],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,1,0],[3,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,1,0],[2,4,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,4,2],[1,2,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,3],[1,2,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[1,2,4,1],[1,1,0,1]],[[2,1,1,0],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[1,2,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,4,2],[1,2,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,3],[1,2,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[1,2,4,1],[1,1,1,0]],[[2,1,1,0],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,1,0],[3,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,1,0],[2,4,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,1,0],[2,3,4,2],[1,2,3,2],[0,1,0,1]],[[1,1,1,0],[2,3,3,3],[1,2,3,2],[0,1,0,1]],[[1,1,1,0],[2,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,1,0],[2,2,2,0],[2,2,3,2],[2,1,1,1]],[[1,2,1,0],[2,2,2,0],[3,2,3,2],[1,1,1,1]],[[1,2,1,0],[3,2,2,0],[2,2,3,2],[1,1,1,1]],[[1,3,1,0],[2,2,2,0],[2,2,3,2],[1,1,1,1]],[[2,2,1,0],[2,2,2,0],[2,2,3,2],[1,1,1,1]],[[1,2,1,0],[2,2,2,0],[2,2,3,2],[2,0,2,1]],[[1,2,1,0],[2,2,2,0],[3,2,3,2],[1,0,2,1]],[[1,2,1,0],[3,2,2,0],[2,2,3,2],[1,0,2,1]],[[1,3,1,0],[2,2,2,0],[2,2,3,2],[1,0,2,1]],[[2,2,1,0],[2,2,2,0],[2,2,3,2],[1,0,2,1]],[[1,2,1,0],[2,2,2,0],[3,2,3,2],[0,2,1,1]],[[1,2,1,0],[3,2,2,0],[2,2,3,2],[0,2,1,1]],[[1,3,1,0],[2,2,2,0],[2,2,3,2],[0,2,1,1]],[[2,2,1,0],[2,2,2,0],[2,2,3,2],[0,2,1,1]],[[1,2,1,0],[2,2,2,0],[3,2,3,2],[0,1,2,1]],[[1,2,1,0],[3,2,2,0],[2,2,3,2],[0,1,2,1]],[[1,3,1,0],[2,2,2,0],[2,2,3,2],[0,1,2,1]],[[2,1,1,0],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,1,0],[3,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,1,0],[2,4,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,1,0],[2,3,4,2],[1,2,3,2],[1,0,0,1]],[[1,1,1,0],[2,3,3,3],[1,2,3,2],[1,0,0,1]],[[1,1,1,0],[2,3,3,2],[1,2,3,3],[1,0,0,1]],[[2,2,1,0],[2,2,2,0],[2,2,3,2],[0,1,2,1]],[[1,2,1,0],[2,2,2,0],[2,2,2,2],[2,1,2,1]],[[1,2,1,0],[2,2,2,0],[3,2,2,2],[1,1,2,1]],[[1,2,1,0],[3,2,2,0],[2,2,2,2],[1,1,2,1]],[[1,3,1,0],[2,2,2,0],[2,2,2,2],[1,1,2,1]],[[2,2,1,0],[2,2,2,0],[2,2,2,2],[1,1,2,1]],[[1,2,1,0],[2,2,2,0],[3,2,2,2],[0,2,2,1]],[[1,2,1,0],[3,2,2,0],[2,2,2,2],[0,2,2,1]],[[1,3,1,0],[2,2,2,0],[2,2,2,2],[0,2,2,1]],[[2,2,1,0],[2,2,2,0],[2,2,2,2],[0,2,2,1]],[[1,2,1,0],[2,2,2,0],[2,1,3,2],[1,3,1,1]],[[1,2,1,0],[2,2,2,0],[2,1,3,2],[2,2,1,1]],[[1,2,1,0],[2,2,2,0],[3,1,3,2],[1,2,1,1]],[[1,2,1,0],[3,2,2,0],[2,1,3,2],[1,2,1,1]],[[1,3,1,0],[2,2,2,0],[2,1,3,2],[1,2,1,1]],[[2,2,1,0],[2,2,2,0],[2,1,3,2],[1,2,1,1]],[[1,2,1,0],[2,2,2,0],[2,1,2,2],[1,2,2,2]],[[1,2,1,0],[2,2,2,0],[2,1,2,2],[1,2,3,1]],[[1,2,1,0],[2,2,2,0],[2,1,2,2],[1,3,2,1]],[[1,2,1,0],[2,2,2,0],[2,1,2,2],[2,2,2,1]],[[1,2,1,0],[2,2,2,0],[3,1,2,2],[1,2,2,1]],[[1,2,1,0],[3,2,2,0],[2,1,2,2],[1,2,2,1]],[[1,3,1,0],[2,2,2,0],[2,1,2,2],[1,2,2,1]],[[2,2,1,0],[2,2,2,0],[2,1,2,2],[1,2,2,1]],[[1,2,1,0],[2,2,2,0],[2,0,3,2],[1,2,2,2]],[[1,2,1,0],[2,2,2,0],[2,0,3,2],[1,2,3,1]],[[1,2,1,0],[2,2,2,0],[2,0,3,2],[1,3,2,1]],[[1,2,1,0],[2,2,2,0],[2,0,3,2],[2,2,2,1]],[[1,2,1,0],[2,2,2,0],[2,0,4,2],[1,2,2,1]],[[1,2,1,0],[2,2,2,0],[3,0,3,2],[1,2,2,1]],[[1,2,1,0],[3,2,2,0],[2,0,3,2],[1,2,2,1]],[[1,3,1,0],[2,2,2,0],[2,0,3,2],[1,2,2,1]],[[2,2,1,0],[2,2,2,0],[2,0,3,2],[1,2,2,1]],[[1,2,1,0],[3,2,2,0],[1,3,3,2],[1,1,1,1]],[[1,3,1,0],[2,2,2,0],[1,3,3,2],[1,1,1,1]],[[2,2,1,0],[2,2,2,0],[1,3,3,2],[1,1,1,1]],[[1,2,1,0],[3,2,2,0],[1,3,3,2],[1,0,2,1]],[[1,3,1,0],[2,2,2,0],[1,3,3,2],[1,0,2,1]],[[2,2,1,0],[2,2,2,0],[1,3,3,2],[1,0,2,1]],[[1,2,1,0],[3,2,2,0],[1,3,3,2],[0,2,1,1]],[[1,3,1,0],[2,2,2,0],[1,3,3,2],[0,2,1,1]],[[2,2,1,0],[2,2,2,0],[1,3,3,2],[0,2,1,1]],[[1,2,1,0],[3,2,2,0],[1,3,3,2],[0,1,2,1]],[[1,3,1,0],[2,2,2,0],[1,3,3,2],[0,1,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,1,0],[3,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,1,0],[2,4,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,1,0],[2,3,4,2],[1,3,0,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,3],[1,3,0,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,4,0,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,1],[0,3,2,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,1],[0,2,3,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,1],[0,2,2,2]],[[2,1,1,0],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,1,0],[2,3,4,2],[1,3,0,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[1,3,0,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,4,0,1],[1,1,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,1,0],[3,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,1,0],[2,4,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[1,3,0,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,3],[1,3,0,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,4,0,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,3],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,2],[0,1,3,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,2],[0,1,2,2]],[[2,1,1,0],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,1,0],[3,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,1,0],[2,4,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[1,3,0,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[1,3,0,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,4,0,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,3],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,2],[0,3,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,2],[0,2,1,2]],[[2,1,1,0],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,0,2],[0,2,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,0,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,3],[1,3,0,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,4,0,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,3,0,3],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,3,0,2],[0,3,2,0]],[[1,1,1,0],[2,3,3,2],[1,3,0,2],[0,2,3,0]],[[2,1,1,0],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,1,0],[3,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,1,0],[2,4,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,1,0],[2,3,4,2],[1,3,0,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,3],[1,3,0,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,4,0,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,3],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,2],[1,0,3,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,2],[1,0,2,2]],[[2,1,1,0],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[1,3,0,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[1,3,0,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,4,0,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,3],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,0,2],[1,1,1,2]],[[2,1,1,0],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,0,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,3],[1,3,0,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[1,4,0,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[1,3,0,3],[1,1,2,0]],[[2,2,1,0],[2,2,2,0],[1,3,3,2],[0,1,2,1]],[[1,2,1,0],[3,2,2,0],[1,3,2,2],[1,1,2,1]],[[1,3,1,0],[2,2,2,0],[1,3,2,2],[1,1,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,1,0],[3,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,1,0],[2,4,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,1,0],[2,3,4,2],[1,3,1,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,3],[1,3,1,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,4,1,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,0],[0,3,2,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,0],[0,2,3,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,0],[0,2,2,2]],[[2,1,1,0],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[1,3,1,0],[1,1,2,1]],[[1,1,1,0],[2,3,4,2],[1,3,1,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[1,3,1,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,4,1,0],[1,1,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,1,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,3],[1,3,1,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,4,1,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[1,3,1,1],[0,3,2,0]],[[1,1,1,0],[2,3,3,2],[1,3,1,1],[0,2,3,0]],[[2,1,1,0],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,1,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,3],[1,3,1,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[1,4,1,1],[1,1,2,0]],[[2,2,1,0],[2,2,2,0],[1,3,2,2],[1,1,2,1]],[[1,2,1,0],[3,2,2,0],[1,3,2,2],[0,2,2,1]],[[1,3,1,0],[2,2,2,0],[1,3,2,2],[0,2,2,1]],[[2,2,1,0],[2,2,2,0],[1,3,2,2],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,1,0],[3,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,1,0],[2,4,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,1,0],[2,3,4,2],[1,3,1,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[1,3,1,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,4,1,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,3],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,2],[0,1,1,2]],[[2,1,1,0],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,1,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[1,3,1,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[1,4,1,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[1,3,1,3],[0,1,2,0]],[[2,1,1,0],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,2],[1,3,1,2],[0,2,0,1]],[[1,1,1,0],[2,3,4,2],[1,3,1,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,3],[1,3,1,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[1,4,1,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,3],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,2],[0,3,0,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,2],[0,2,0,2]],[[2,1,1,0],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[1,3,1,2],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[1,3,1,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,3],[1,3,1,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[1,4,1,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[1,3,1,3],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[1,3,1,2],[0,3,1,0]],[[1,2,1,0],[3,2,2,0],[0,3,3,2],[1,2,1,1]],[[1,3,1,0],[2,2,2,0],[0,3,3,2],[1,2,1,1]],[[2,2,1,0],[2,2,2,0],[0,3,3,2],[1,2,1,1]],[[1,2,1,0],[3,2,2,0],[0,3,3,2],[1,1,2,1]],[[1,3,1,0],[2,2,2,0],[0,3,3,2],[1,1,2,1]],[[2,2,1,0],[2,2,2,0],[0,3,3,2],[1,1,2,1]],[[1,2,1,0],[3,2,2,0],[0,3,2,2],[1,2,2,1]],[[1,3,1,0],[2,2,2,0],[0,3,2,2],[1,2,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,1,0],[3,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,1,0],[2,4,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,1,0],[2,3,4,2],[1,3,1,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,3],[1,3,1,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,4,1,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,3],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,2],[1,0,1,2]],[[2,1,1,0],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,1,2],[1,0,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,1,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,3],[1,3,1,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[1,4,1,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[1,3,1,3],[1,0,2,0]],[[2,1,1,0],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,1,0],[2,3,4,2],[1,3,1,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,3],[1,3,1,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[1,4,1,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,3],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[1,3,1,2],[1,1,0,2]],[[2,1,1,0],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[1,3,1,2],[1,1,1,0]],[[1,1,1,0],[2,3,4,2],[1,3,1,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,3],[1,3,1,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[1,4,1,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[1,3,1,3],[1,1,1,0]],[[2,2,1,0],[2,2,2,0],[0,3,2,2],[1,2,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,1,0],[3,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,1,0],[2,4,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,1,0],[2,3,4,2],[1,3,1,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,3],[1,3,1,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[1,4,1,2],[1,2,0,0]],[[2,1,1,0],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,1,1,0],[3,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,1,1,0],[2,4,3,2],[1,3,2,0],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[1,3,2,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,3],[1,3,2,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[1,4,2,0],[0,1,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,1,1,0],[3,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,1,1,0],[2,4,3,2],[1,3,2,0],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[1,3,2,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[1,3,2,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,4,2,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,2,0],[0,3,1,1]],[[2,1,1,0],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,1,0],[3,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,1,0],[2,4,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,1,0],[2,3,4,2],[1,3,2,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,3],[1,3,2,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,4,2,0],[1,0,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[1,3,2,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[1,3,2,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,4,2,0],[1,1,1,1]],[[2,1,1,0],[2,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,1,1,0],[3,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,1,1,0],[2,4,3,2],[1,3,2,0],[1,2,0,1]],[[1,1,1,0],[2,3,4,2],[1,3,2,0],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,2,1,0],[2,2,1,2],[3,3,3,2],[1,0,1,0]],[[1,2,1,0],[3,2,1,2],[2,3,3,2],[1,0,1,0]],[[1,3,1,0],[2,2,1,2],[2,3,3,2],[1,0,1,0]],[[2,2,1,0],[2,2,1,2],[2,3,3,2],[1,0,1,0]],[[2,1,1,0],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,1,1,0],[3,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,1,1,0],[2,4,3,2],[1,3,2,1],[0,1,1,1]],[[1,1,1,0],[2,3,4,2],[1,3,2,1],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[1,3,2,1],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[1,4,2,1],[0,1,1,1]],[[2,1,1,0],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,2,1],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,2,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[1,3,2,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[1,4,2,1],[0,1,2,0]],[[2,1,1,0],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,1,0],[3,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,1,0],[2,4,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,1,0],[2,3,4,2],[1,3,2,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,3],[1,3,2,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[1,4,2,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[1,3,2,1],[0,3,0,1]],[[2,1,1,0],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[1,3,2,1],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[1,3,2,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,3],[1,3,2,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[1,4,2,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[1,3,2,1],[0,3,1,0]],[[1,2,1,0],[2,2,1,2],[3,3,3,2],[1,0,0,1]],[[1,2,1,0],[3,2,1,2],[2,3,3,2],[1,0,0,1]],[[1,3,1,0],[2,2,1,2],[2,3,3,2],[1,0,0,1]],[[2,2,1,0],[2,2,1,2],[2,3,3,2],[1,0,0,1]],[[2,1,1,0],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,1,0],[3,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,1,0],[2,4,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,1,0],[2,3,4,2],[1,3,2,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,3],[1,3,2,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,4,2,1],[1,0,1,1]],[[2,1,1,0],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,2,1],[1,0,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,2,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,3],[1,3,2,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[1,4,2,1],[1,0,2,0]],[[2,1,1,0],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,1,1,0],[3,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,1,1,0],[2,4,3,2],[1,3,2,1],[1,1,0,1]],[[1,1,1,0],[2,3,4,2],[1,3,2,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,3],[1,3,2,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[1,4,2,1],[1,1,0,1]],[[2,1,1,0],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,1,0],[2,3,4,2],[1,3,2,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,3],[1,3,2,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[1,4,2,1],[1,1,1,0]],[[2,1,1,0],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,1,1,0],[3,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,1,1,0],[2,4,3,2],[1,3,2,1],[1,2,0,0]],[[1,1,1,0],[2,3,4,2],[1,3,2,1],[1,2,0,0]],[[1,1,1,0],[2,3,3,3],[1,3,2,1],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[1,4,2,1],[1,2,0,0]],[[2,1,1,0],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,1,1,0],[3,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,1,1,0],[2,4,3,2],[1,3,2,2],[0,0,1,1]],[[1,1,1,0],[2,3,4,2],[1,3,2,2],[0,0,1,1]],[[1,1,1,0],[2,3,3,3],[1,3,2,2],[0,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,2,3],[0,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,2,2],[0,0,1,2]],[[2,1,1,0],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,2,2],[0,0,2,0]],[[1,1,1,0],[2,3,3,3],[1,3,2,2],[0,0,2,0]],[[1,1,1,0],[2,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,1,0],[2,2,1,2],[2,2,3,2],[2,2,0,0]],[[1,2,1,0],[2,2,1,2],[3,2,3,2],[1,2,0,0]],[[1,2,1,0],[3,2,1,2],[2,2,3,2],[1,2,0,0]],[[2,1,1,0],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,1,0],[3,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,1,0],[2,4,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,1,0],[2,3,4,2],[1,3,3,0],[0,0,2,1]],[[1,1,1,0],[2,3,3,3],[1,3,3,0],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[1,3,4,0],[0,0,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,3,0],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,3,0],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[1,4,3,0],[0,1,2,0]],[[2,1,1,0],[2,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[1,3,3,0],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[1,4,3,0],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[1,3,3,0],[0,3,1,0]],[[1,3,1,0],[2,2,1,2],[2,2,3,2],[1,2,0,0]],[[2,2,1,0],[2,2,1,2],[2,2,3,2],[1,2,0,0]],[[2,1,1,0],[2,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,3,0],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[1,4,3,0],[1,0,2,0]],[[2,1,1,0],[2,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[1,3,3,0],[1,1,1,0]],[[1,1,1,0],[2,3,4,2],[1,3,3,0],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[1,4,3,0],[1,1,1,0]],[[1,2,1,0],[2,2,1,2],[2,2,3,2],[2,1,1,0]],[[1,2,1,0],[2,2,1,2],[3,2,3,2],[1,1,1,0]],[[1,2,1,0],[3,2,1,2],[2,2,3,2],[1,1,1,0]],[[1,3,1,0],[2,2,1,2],[2,2,3,2],[1,1,1,0]],[[2,2,1,0],[2,2,1,2],[2,2,3,2],[1,1,1,0]],[[1,2,1,0],[2,2,1,2],[2,2,3,2],[2,1,0,1]],[[1,2,1,0],[2,2,1,2],[3,2,3,2],[1,1,0,1]],[[2,1,1,0],[2,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,1,0],[3,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,1,0],[2,4,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,1,0],[2,3,4,2],[1,3,3,0],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,1,0],[3,2,1,2],[2,2,3,2],[1,1,0,1]],[[1,3,1,0],[2,2,1,2],[2,2,3,2],[1,1,0,1]],[[2,2,1,0],[2,2,1,2],[2,2,3,2],[1,1,0,1]],[[1,2,1,0],[2,2,1,2],[2,2,3,2],[2,0,2,0]],[[1,2,1,0],[2,2,1,2],[3,2,3,2],[1,0,2,0]],[[1,2,1,0],[3,2,1,2],[2,2,3,2],[1,0,2,0]],[[1,3,1,0],[2,2,1,2],[2,2,3,2],[1,0,2,0]],[[2,2,1,0],[2,2,1,2],[2,2,3,2],[1,0,2,0]],[[1,2,1,0],[2,2,1,2],[2,2,3,2],[2,0,1,1]],[[1,2,1,0],[2,2,1,2],[3,2,3,2],[1,0,1,1]],[[1,2,1,0],[3,2,1,2],[2,2,3,2],[1,0,1,1]],[[1,3,1,0],[2,2,1,2],[2,2,3,2],[1,0,1,1]],[[2,2,1,0],[2,2,1,2],[2,2,3,2],[1,0,1,1]],[[2,1,1,0],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,1,0],[3,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,1,0],[2,4,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,1,0],[2,3,4,2],[1,3,3,1],[0,0,1,1]],[[1,1,1,0],[2,3,3,3],[1,3,3,1],[0,0,1,1]],[[1,1,1,0],[2,3,3,2],[1,3,4,1],[0,0,1,1]],[[2,1,1,0],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,1,1,0],[3,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,1,1,0],[2,4,3,2],[1,3,3,1],[0,0,2,0]],[[1,1,1,0],[2,3,4,2],[1,3,3,1],[0,0,2,0]],[[1,1,1,0],[2,3,3,3],[1,3,3,1],[0,0,2,0]],[[1,1,1,0],[2,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,1,0],[2,2,1,2],[3,2,3,2],[0,2,1,0]],[[2,1,1,0],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,1,0],[3,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,1,0],[2,4,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,1,0],[2,3,4,2],[1,3,3,1],[0,2,0,0]],[[1,1,1,0],[2,3,3,3],[1,3,3,1],[0,2,0,0]],[[1,1,1,0],[2,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,2,1,0],[3,2,1,2],[2,2,3,2],[0,2,1,0]],[[1,3,1,0],[2,2,1,2],[2,2,3,2],[0,2,1,0]],[[2,2,1,0],[2,2,1,2],[2,2,3,2],[0,2,1,0]],[[1,2,1,0],[2,2,1,2],[3,2,3,2],[0,2,0,1]],[[1,2,1,0],[3,2,1,2],[2,2,3,2],[0,2,0,1]],[[1,3,1,0],[2,2,1,2],[2,2,3,2],[0,2,0,1]],[[2,2,1,0],[2,2,1,2],[2,2,3,2],[0,2,0,1]],[[1,2,1,0],[2,2,1,2],[3,2,3,2],[0,1,2,0]],[[1,2,1,0],[3,2,1,2],[2,2,3,2],[0,1,2,0]],[[1,3,1,0],[2,2,1,2],[2,2,3,2],[0,1,2,0]],[[2,2,1,0],[2,2,1,2],[2,2,3,2],[0,1,2,0]],[[1,2,1,0],[2,2,1,2],[3,2,3,2],[0,1,1,1]],[[1,2,1,0],[3,2,1,2],[2,2,3,2],[0,1,1,1]],[[1,3,1,0],[2,2,1,2],[2,2,3,2],[0,1,1,1]],[[2,2,1,0],[2,2,1,2],[2,2,3,2],[0,1,1,1]],[[1,2,1,0],[2,2,1,2],[2,2,3,1],[2,1,1,1]],[[1,2,1,0],[2,2,1,2],[3,2,3,1],[1,1,1,1]],[[1,2,1,0],[3,2,1,2],[2,2,3,1],[1,1,1,1]],[[1,3,1,0],[2,2,1,2],[2,2,3,1],[1,1,1,1]],[[2,2,1,0],[2,2,1,2],[2,2,3,1],[1,1,1,1]],[[1,2,1,0],[2,2,1,2],[2,2,3,1],[2,0,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,1,0],[3,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,1,0],[2,4,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,1,0],[2,3,4,2],[1,3,3,1],[1,1,0,0]],[[1,1,1,0],[2,3,3,3],[1,3,3,1],[1,1,0,0]],[[1,1,1,0],[2,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,1,0],[2,2,1,2],[3,2,3,1],[1,0,2,1]],[[1,2,1,0],[3,2,1,2],[2,2,3,1],[1,0,2,1]],[[1,3,1,0],[2,2,1,2],[2,2,3,1],[1,0,2,1]],[[2,2,1,0],[2,2,1,2],[2,2,3,1],[1,0,2,1]],[[1,2,1,0],[2,2,1,2],[3,2,3,1],[0,2,1,1]],[[1,2,1,0],[3,2,1,2],[2,2,3,1],[0,2,1,1]],[[1,3,1,0],[2,2,1,2],[2,2,3,1],[0,2,1,1]],[[2,2,1,0],[2,2,1,2],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[2,2,1,2],[3,2,3,1],[0,1,2,1]],[[1,2,1,0],[3,2,1,2],[2,2,3,1],[0,1,2,1]],[[1,3,1,0],[2,2,1,2],[2,2,3,1],[0,1,2,1]],[[2,2,1,0],[2,2,1,2],[2,2,3,1],[0,1,2,1]],[[1,2,1,0],[2,2,1,2],[2,2,2,2],[2,1,2,0]],[[1,2,1,0],[2,2,1,2],[3,2,2,2],[1,1,2,0]],[[1,2,1,0],[3,2,1,2],[2,2,2,2],[1,1,2,0]],[[1,3,1,0],[2,2,1,2],[2,2,2,2],[1,1,2,0]],[[2,2,1,0],[2,2,1,2],[2,2,2,2],[1,1,2,0]],[[1,2,1,0],[2,2,1,2],[3,2,2,2],[0,2,2,0]],[[1,2,1,0],[3,2,1,2],[2,2,2,2],[0,2,2,0]],[[1,3,1,0],[2,2,1,2],[2,2,2,2],[0,2,2,0]],[[2,2,1,0],[2,2,1,2],[2,2,2,2],[0,2,2,0]],[[1,2,1,0],[2,2,1,2],[2,2,2,1],[2,1,2,1]],[[1,2,1,0],[2,2,1,2],[3,2,2,1],[1,1,2,1]],[[1,2,1,0],[3,2,1,2],[2,2,2,1],[1,1,2,1]],[[1,3,1,0],[2,2,1,2],[2,2,2,1],[1,1,2,1]],[[2,2,1,0],[2,2,1,2],[2,2,2,1],[1,1,2,1]],[[1,2,1,0],[2,2,1,2],[3,2,2,1],[0,2,2,1]],[[1,2,1,0],[3,2,1,2],[2,2,2,1],[0,2,2,1]],[[1,3,1,0],[2,2,1,2],[2,2,2,1],[0,2,2,1]],[[2,2,1,0],[2,2,1,2],[2,2,2,1],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,1,0],[3,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,1,0],[2,4,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,1,0],[2,3,4,2],[1,3,3,2],[0,0,0,1]],[[1,1,1,0],[2,3,3,3],[1,3,3,2],[0,0,0,1]],[[1,1,1,0],[2,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,1,0],[2,2,1,2],[2,2,1,2],[2,1,2,1]],[[1,2,1,0],[2,2,1,2],[3,2,1,2],[1,1,2,1]],[[1,2,1,0],[3,2,1,2],[2,2,1,2],[1,1,2,1]],[[1,3,1,0],[2,2,1,2],[2,2,1,2],[1,1,2,1]],[[2,2,1,0],[2,2,1,2],[2,2,1,2],[1,1,2,1]],[[1,2,1,0],[2,2,1,2],[3,2,1,2],[0,2,2,1]],[[1,2,1,0],[3,2,1,2],[2,2,1,2],[0,2,2,1]],[[1,3,1,0],[2,2,1,2],[2,2,1,2],[0,2,2,1]],[[2,2,1,0],[2,2,1,2],[2,2,1,2],[0,2,2,1]],[[1,2,1,0],[2,2,1,2],[2,1,3,2],[1,3,1,0]],[[1,2,1,0],[2,2,1,2],[2,1,3,2],[2,2,1,0]],[[1,2,1,0],[2,2,1,2],[3,1,3,2],[1,2,1,0]],[[1,2,1,0],[3,2,1,2],[2,1,3,2],[1,2,1,0]],[[1,3,1,0],[2,2,1,2],[2,1,3,2],[1,2,1,0]],[[2,2,1,0],[2,2,1,2],[2,1,3,2],[1,2,1,0]],[[1,2,1,0],[2,2,1,2],[2,1,3,2],[1,3,0,1]],[[1,2,1,0],[2,2,1,2],[2,1,3,2],[2,2,0,1]],[[1,2,1,0],[2,2,1,2],[3,1,3,2],[1,2,0,1]],[[1,2,1,0],[3,2,1,2],[2,1,3,2],[1,2,0,1]],[[1,3,1,0],[2,2,1,2],[2,1,3,2],[1,2,0,1]],[[2,2,1,0],[2,2,1,2],[2,1,3,2],[1,2,0,1]],[[1,2,1,0],[2,2,1,2],[2,1,3,1],[1,3,1,1]],[[1,2,1,0],[2,2,1,2],[2,1,3,1],[2,2,1,1]],[[1,2,1,0],[2,2,1,2],[3,1,3,1],[1,2,1,1]],[[1,2,1,0],[3,2,1,2],[2,1,3,1],[1,2,1,1]],[[1,3,1,0],[2,2,1,2],[2,1,3,1],[1,2,1,1]],[[2,2,1,0],[2,2,1,2],[2,1,3,1],[1,2,1,1]],[[1,2,1,0],[2,2,1,2],[2,1,2,2],[1,2,3,0]],[[1,2,1,0],[2,2,1,2],[2,1,2,2],[1,3,2,0]],[[1,2,1,0],[2,2,1,2],[2,1,2,2],[2,2,2,0]],[[1,2,1,0],[2,2,1,2],[3,1,2,2],[1,2,2,0]],[[1,2,1,0],[3,2,1,2],[2,1,2,2],[1,2,2,0]],[[1,3,1,0],[2,2,1,2],[2,1,2,2],[1,2,2,0]],[[2,2,1,0],[2,2,1,2],[2,1,2,2],[1,2,2,0]],[[1,2,1,0],[2,2,1,2],[2,1,2,1],[1,2,2,2]],[[1,2,1,0],[2,2,1,2],[2,1,2,1],[1,2,3,1]],[[1,2,1,0],[2,2,1,2],[2,1,2,1],[1,3,2,1]],[[1,2,1,0],[2,2,1,2],[2,1,2,1],[2,2,2,1]],[[1,2,1,0],[2,2,1,2],[3,1,2,1],[1,2,2,1]],[[1,2,1,0],[3,2,1,2],[2,1,2,1],[1,2,2,1]],[[1,3,1,0],[2,2,1,2],[2,1,2,1],[1,2,2,1]],[[2,2,1,0],[2,2,1,2],[2,1,2,1],[1,2,2,1]],[[1,2,1,0],[2,2,1,2],[2,1,1,2],[1,2,2,2]],[[1,2,1,0],[2,2,1,2],[2,1,1,2],[1,2,3,1]],[[1,2,1,0],[2,2,1,2],[2,1,1,2],[1,3,2,1]],[[1,2,1,0],[2,2,1,2],[2,1,1,2],[2,2,2,1]],[[1,2,1,0],[2,2,1,2],[2,1,1,3],[1,2,2,1]],[[1,2,1,0],[2,2,1,2],[3,1,1,2],[1,2,2,1]],[[1,2,1,0],[2,2,1,3],[2,1,1,2],[1,2,2,1]],[[1,2,1,0],[3,2,1,2],[2,1,1,2],[1,2,2,1]],[[1,3,1,0],[2,2,1,2],[2,1,1,2],[1,2,2,1]],[[2,2,1,0],[2,2,1,2],[2,1,1,2],[1,2,2,1]],[[1,2,1,0],[2,2,1,2],[2,0,3,2],[1,2,3,0]],[[1,2,1,0],[2,2,1,2],[2,0,3,2],[1,3,2,0]],[[1,2,1,0],[2,2,1,2],[2,0,3,2],[2,2,2,0]],[[1,2,1,0],[2,2,1,2],[2,0,3,3],[1,2,2,0]],[[1,2,1,0],[2,2,1,2],[2,0,4,2],[1,2,2,0]],[[1,2,1,0],[2,2,1,2],[3,0,3,2],[1,2,2,0]],[[1,2,1,0],[2,2,1,3],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[3,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,3,1,0],[2,2,1,2],[2,0,3,2],[1,2,2,0]],[[2,2,1,0],[2,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[2,2,1,2],[2,0,3,2],[1,2,1,2]],[[1,2,1,0],[2,2,1,2],[2,0,3,3],[1,2,1,1]],[[1,2,1,0],[2,2,1,2],[2,0,4,2],[1,2,1,1]],[[1,2,1,0],[2,2,1,3],[2,0,3,2],[1,2,1,1]],[[1,2,1,0],[2,2,1,2],[2,0,3,1],[1,2,2,2]],[[1,2,1,0],[2,2,1,2],[2,0,3,1],[1,2,3,1]],[[1,2,1,0],[2,2,1,2],[2,0,3,1],[1,3,2,1]],[[1,2,1,0],[2,2,1,2],[2,0,3,1],[2,2,2,1]],[[1,2,1,0],[2,2,1,2],[2,0,4,1],[1,2,2,1]],[[1,2,1,0],[2,2,1,2],[3,0,3,1],[1,2,2,1]],[[1,2,1,0],[3,2,1,2],[2,0,3,1],[1,2,2,1]],[[1,3,1,0],[2,2,1,2],[2,0,3,1],[1,2,2,1]],[[2,2,1,0],[2,2,1,2],[2,0,3,1],[1,2,2,1]],[[1,2,1,0],[2,2,1,2],[2,0,2,2],[1,2,2,2]],[[1,2,1,0],[2,2,1,2],[2,0,2,2],[1,2,3,1]],[[1,2,1,0],[2,2,1,2],[2,0,2,2],[1,3,2,1]],[[1,2,1,0],[2,2,1,2],[2,0,2,2],[2,2,2,1]],[[1,2,1,0],[2,2,1,2],[2,0,2,3],[1,2,2,1]],[[1,2,1,0],[2,2,1,2],[3,0,2,2],[1,2,2,1]],[[1,2,1,0],[2,2,1,3],[2,0,2,2],[1,2,2,1]],[[1,2,1,0],[3,2,1,2],[2,0,2,2],[1,2,2,1]],[[1,3,1,0],[2,2,1,2],[2,0,2,2],[1,2,2,1]],[[2,2,1,0],[2,2,1,2],[2,0,2,2],[1,2,2,1]],[[1,2,1,0],[3,2,1,2],[1,3,3,2],[1,2,0,0]],[[1,3,1,0],[2,2,1,2],[1,3,3,2],[1,2,0,0]],[[2,2,1,0],[2,2,1,2],[1,3,3,2],[1,2,0,0]],[[1,2,1,0],[3,2,1,2],[1,3,3,2],[1,1,1,0]],[[1,3,1,0],[2,2,1,2],[1,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,2,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,1,0],[3,2,1,2],[1,3,3,2],[1,1,0,1]],[[1,3,1,0],[2,2,1,2],[1,3,3,2],[1,1,0,1]],[[2,2,1,0],[2,2,1,2],[1,3,3,2],[1,1,0,1]],[[1,2,1,0],[3,2,1,2],[1,3,3,2],[1,0,2,0]],[[1,3,1,0],[2,2,1,2],[1,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,2,1,2],[1,3,3,2],[1,0,2,0]],[[1,2,1,0],[3,2,1,2],[1,3,3,2],[1,0,1,1]],[[1,3,1,0],[2,2,1,2],[1,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,2,1,2],[1,3,3,2],[1,0,1,1]],[[1,2,1,0],[3,2,1,2],[1,3,3,2],[0,2,1,0]],[[1,3,1,0],[2,2,1,2],[1,3,3,2],[0,2,1,0]],[[2,2,1,0],[2,2,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,1,0],[3,2,1,2],[1,3,3,2],[0,2,0,1]],[[1,3,1,0],[2,2,1,2],[1,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,2,1,2],[1,3,3,2],[0,2,0,1]],[[1,2,1,0],[3,2,1,2],[1,3,3,2],[0,1,2,0]],[[1,3,1,0],[2,2,1,2],[1,3,3,2],[0,1,2,0]],[[2,2,1,0],[2,2,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,1,0],[3,2,1,2],[1,3,3,2],[0,1,1,1]],[[1,3,1,0],[2,2,1,2],[1,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,2,1,2],[1,3,3,2],[0,1,1,1]],[[2,1,1,0],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[2,0,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[2,0,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[3,0,1,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,1],[1,2,2,2]],[[2,1,1,0],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,1,1,0],[3,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,1,1,0],[2,4,3,2],[2,0,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,4,2],[2,0,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,3],[2,0,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[3,0,1,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,3],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[0,3,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[0,2,3,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[0,2,2,2]],[[2,1,1,0],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[2,0,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,4,2],[2,0,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[2,0,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[3,0,1,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,3],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[2,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[1,1,3,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[1,1,2,2]],[[2,1,1,0],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,1,0],[2,3,4,2],[2,0,1,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[2,0,1,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[3,0,1,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,3],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[2,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[1,3,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[1,2,1,2]],[[2,1,1,0],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,4,2],[2,0,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,3],[2,0,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[3,0,1,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,1,3],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,1,2],[1,2,3,0]],[[2,1,1,0],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[2,0,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[2,0,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[3,0,2,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,0],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,0],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,0],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,0],[1,2,2,2]],[[2,1,1,0],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,1,0],[2,3,4,2],[2,0,2,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,3],[2,0,2,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[3,0,2,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,2,1],[2,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,2,1],[1,3,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,2,1],[1,2,3,0]],[[2,1,1,0],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,1,1,0],[3,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,1,1,0],[2,4,3,2],[2,0,2,2],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[2,0,2,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[2,0,2,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[3,0,2,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,3],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,2],[0,2,1,2]],[[2,1,1,0],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,1,1,0],[3,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,1,1,0],[2,4,3,2],[2,0,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,4,2],[2,0,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,3],[2,0,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[3,0,2,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,2,3],[0,2,2,0]],[[2,1,1,0],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[2,0,2,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[2,0,2,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[3,0,2,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,3],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,2],[2,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,2],[1,1,1,2]],[[2,1,1,0],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[2,0,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,4,2],[2,0,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,3],[2,0,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[3,0,2,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,2,3],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,2,2],[2,1,2,0]],[[2,1,1,0],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,4,2],[2,0,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,3],[2,0,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,0,2,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,3],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,2],[2,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,2],[1,3,0,1]],[[1,1,1,0],[2,3,3,2],[2,0,2,2],[1,2,0,2]],[[2,1,1,0],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,4,2],[2,0,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,3],[2,0,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,0,2,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,0,2,3],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,0,2,2],[2,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,0,2,2],[1,3,1,0]],[[2,1,1,0],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,1,0],[3,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,1,0],[2,4,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,4,2],[2,0,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,3],[2,0,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[3,0,3,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,4,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,0],[0,3,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,0],[0,2,3,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,0],[0,2,2,2]],[[2,1,1,0],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,4,2],[2,0,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[2,0,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[3,0,3,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,4,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,0],[2,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,0],[1,1,3,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,0],[1,1,2,2]],[[2,1,1,0],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,4,2],[2,0,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[2,0,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[3,0,3,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,4,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,0],[2,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,0],[1,3,1,1]],[[2,1,1,0],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,1,0],[3,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,1,0],[2,4,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[2,0,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[2,0,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[3,0,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,4,1],[0,2,1,1]],[[2,1,1,0],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,1,1,0],[3,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,1,1,0],[2,4,3,2],[2,0,3,1],[0,2,2,0]],[[1,1,1,0],[2,3,4,2],[2,0,3,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,3],[2,0,3,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[3,0,3,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,4,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,3,1],[0,3,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,3,1],[0,2,3,0]],[[2,1,1,0],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[2,0,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[2,0,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[2,0,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[3,0,3,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,4,1],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,1],[2,1,1,1]],[[2,1,1,0],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[2,0,3,1],[1,1,2,0]],[[1,1,1,0],[2,3,4,2],[2,0,3,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,3],[2,0,3,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[3,0,3,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,4,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,3,1],[2,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,3,1],[1,1,3,0]],[[2,1,1,0],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,4,2],[2,0,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,3],[2,0,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,0,3,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,0,4,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,1],[2,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,1],[1,3,0,1]],[[2,1,1,0],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,4,2],[2,0,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,3],[2,0,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,0,3,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,0,4,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,0,3,1],[2,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,0,3,1],[1,3,1,0]],[[1,2,1,0],[3,2,1,2],[1,3,3,1],[1,1,1,1]],[[1,3,1,0],[2,2,1,2],[1,3,3,1],[1,1,1,1]],[[2,2,1,0],[2,2,1,2],[1,3,3,1],[1,1,1,1]],[[1,2,1,0],[3,2,1,2],[1,3,3,1],[1,0,2,1]],[[1,3,1,0],[2,2,1,2],[1,3,3,1],[1,0,2,1]],[[2,2,1,0],[2,2,1,2],[1,3,3,1],[1,0,2,1]],[[1,2,1,0],[3,2,1,2],[1,3,3,1],[0,2,1,1]],[[1,3,1,0],[2,2,1,2],[1,3,3,1],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[2,0,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,3],[2,0,3,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,3],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,2],[0,0,2,2]],[[1,1,1,0],[2,3,4,2],[2,0,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[2,0,3,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,3],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,2],[0,1,1,2]],[[1,1,1,0],[2,3,4,2],[2,0,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[2,0,3,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,3,3],[0,1,2,0]],[[2,2,1,0],[2,2,1,2],[1,3,3,1],[0,2,1,1]],[[1,2,1,0],[3,2,1,2],[1,3,3,1],[0,1,2,1]],[[1,3,1,0],[2,2,1,2],[1,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,2,1,2],[1,3,3,1],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[2,0,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,3],[2,0,3,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,3],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[2,0,3,2],[1,0,1,2]],[[1,1,1,0],[2,3,4,2],[2,0,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,3],[2,0,3,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,1,0],[3,2,1,2],[1,3,2,2],[1,1,2,0]],[[1,3,1,0],[2,2,1,2],[1,3,2,2],[1,1,2,0]],[[2,2,1,0],[2,2,1,2],[1,3,2,2],[1,1,2,0]],[[1,2,1,0],[3,2,1,2],[1,3,2,2],[0,2,2,0]],[[1,3,1,0],[2,2,1,2],[1,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,2,1,2],[1,3,2,2],[0,2,2,0]],[[1,2,1,0],[3,2,1,2],[1,3,2,1],[1,1,2,1]],[[1,3,1,0],[2,2,1,2],[1,3,2,1],[1,1,2,1]],[[2,2,1,0],[2,2,1,2],[1,3,2,1],[1,1,2,1]],[[1,2,1,0],[3,2,1,2],[1,3,2,1],[0,2,2,1]],[[1,3,1,0],[2,2,1,2],[1,3,2,1],[0,2,2,1]],[[2,2,1,0],[2,2,1,2],[1,3,2,1],[0,2,2,1]],[[1,2,1,0],[3,2,1,2],[1,3,1,2],[1,1,2,1]],[[1,3,1,0],[2,2,1,2],[1,3,1,2],[1,1,2,1]],[[2,2,1,0],[2,2,1,2],[1,3,1,2],[1,1,2,1]],[[1,2,1,0],[3,2,1,2],[1,3,1,2],[0,2,2,1]],[[1,3,1,0],[2,2,1,2],[1,3,1,2],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[2,1,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[2,1,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[3,1,0,1],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,1],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,1],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,1],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,1],[1,2,2,2]],[[2,1,1,0],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,1,0],[3,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,1,0],[2,4,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,4,2],[2,1,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,3],[2,1,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[3,1,0,2],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,3],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[0,3,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[0,2,3,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[0,2,2,2]],[[2,1,1,0],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[2,1,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,4,2],[2,1,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[2,1,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[3,1,0,2],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,3],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[2,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[1,1,3,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[1,1,2,2]],[[2,1,1,0],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[2,1,0,2],[1,2,1,1]],[[1,1,1,0],[2,3,4,2],[2,1,0,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[2,1,0,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[3,1,0,2],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,3],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[2,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[1,3,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[1,2,1,2]],[[2,1,1,0],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,4,2],[2,1,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,3],[2,1,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[3,1,0,2],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,0,3],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[2,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[1,3,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,0,2],[1,2,3,0]],[[2,1,1,0],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,4,2],[2,1,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,3],[2,1,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[3,1,1,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,0],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,0],[1,3,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,0],[1,2,3,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,0],[1,2,2,2]],[[2,1,1,0],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[2,1,1,1],[1,2,2,0]],[[1,1,1,0],[2,3,4,2],[2,1,1,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,3],[2,1,1,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[3,1,1,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,1,1],[2,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,1,1],[1,3,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,1,1],[1,2,3,0]],[[2,1,1,0],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,1,1,0],[3,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,1,1,0],[2,4,3,2],[2,1,1,2],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[2,1,1,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,3],[2,1,1,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[3,1,1,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,3],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,2],[0,1,3,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,2],[0,1,2,2]],[[2,1,1,0],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,1,1,0],[3,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,1,1,0],[2,4,3,2],[2,1,1,2],[1,0,2,1]],[[1,1,1,0],[2,3,4,2],[2,1,1,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,3],[2,1,1,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[3,1,1,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,3],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,2],[2,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,2],[1,0,3,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,2],[1,0,2,2]],[[2,1,1,0],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,1,0],[2,3,4,2],[2,1,1,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,3],[2,1,1,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,1,1,2],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,3],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,2],[2,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,2],[1,3,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,1,2],[1,2,0,2]],[[2,1,1,0],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,1,0],[2,3,4,2],[2,1,1,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,3],[2,1,1,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,1,1,2],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,1,3],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,1,2],[2,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,1,2],[1,3,1,0]],[[2,2,1,0],[2,2,1,2],[1,3,1,2],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,1,0],[2,3,4,2],[2,1,2,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,3],[2,1,2,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[3,1,2,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,0],[2,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,0],[1,3,1,1]],[[2,1,1,0],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,1,0],[2,3,4,2],[2,1,2,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,3],[2,1,2,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,1,2,1],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,1],[2,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,1],[1,3,0,1]],[[2,1,1,0],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,1,2,1],[1,2,1,0]],[[1,1,1,0],[2,3,4,2],[2,1,2,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,3],[2,1,2,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,1,2,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,2,1],[2,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,2,1],[1,3,1,0]],[[2,1,1,0],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,1,0],[3,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,1,0],[2,4,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,1,0],[2,3,4,2],[2,1,2,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,3],[2,1,2,2],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,3],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,2],[0,0,2,2]],[[2,1,1,0],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,1,1,0],[3,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,1,1,0],[2,4,3,2],[2,1,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,4,2],[2,1,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[2,1,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[3,1,2,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,3],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,2],[0,1,1,2]],[[2,1,1,0],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,1,1,0],[3,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,1,1,0],[2,4,3,2],[2,1,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[2,1,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[2,1,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[3,1,2,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,2,3],[0,1,2,0]],[[2,1,1,0],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,4,2],[2,1,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,3],[2,1,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,1,2,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,3],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,2],[0,2,0,2]],[[2,1,1,0],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[2,1,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,3],[2,1,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,1,2,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,2,3],[0,2,1,0]],[[2,1,1,0],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,1,0],[3,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,1,0],[2,4,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,4,2],[2,1,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,3],[2,1,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[3,1,2,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,3],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,2],[2,0,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,2],[1,0,1,2]],[[2,1,1,0],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,1,1,0],[3,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,1,1,0],[2,4,3,2],[2,1,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,4,2],[2,1,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,3],[2,1,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[3,1,2,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,2,3],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,2,2],[2,0,2,0]],[[2,1,1,0],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,4,2],[2,1,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,3],[2,1,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[3,1,2,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,3],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,2],[2,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,2,2],[1,1,0,2]],[[2,1,1,0],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,4,2],[2,1,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,3],[2,1,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[3,1,2,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,2,3],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,2,2],[2,1,1,0]],[[1,2,1,0],[3,2,1,2],[0,3,3,2],[1,2,1,0]],[[1,3,1,0],[2,2,1,2],[0,3,3,2],[1,2,1,0]],[[2,2,1,0],[2,2,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,1,0],[3,2,1,2],[0,3,3,2],[1,2,0,1]],[[1,3,1,0],[2,2,1,2],[0,3,3,2],[1,2,0,1]],[[2,2,1,0],[2,2,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,1,0],[3,2,1,2],[0,3,3,2],[1,1,2,0]],[[1,3,1,0],[2,2,1,2],[0,3,3,2],[1,1,2,0]],[[2,2,1,0],[2,2,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,1,0],[3,2,1,2],[0,3,3,2],[1,1,1,1]],[[1,3,1,0],[2,2,1,2],[0,3,3,2],[1,1,1,1]],[[2,2,1,0],[2,2,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,1,0],[3,2,1,2],[0,3,3,1],[1,2,1,1]],[[1,3,1,0],[2,2,1,2],[0,3,3,1],[1,2,1,1]],[[2,2,1,0],[2,2,1,2],[0,3,3,1],[1,2,1,1]],[[1,2,1,0],[3,2,1,2],[0,3,3,1],[1,1,2,1]],[[1,3,1,0],[2,2,1,2],[0,3,3,1],[1,1,2,1]],[[2,2,1,0],[2,2,1,2],[0,3,3,1],[1,1,2,1]],[[1,2,1,0],[3,2,1,2],[0,3,2,2],[1,2,2,0]],[[1,3,1,0],[2,2,1,2],[0,3,2,2],[1,2,2,0]],[[2,2,1,0],[2,2,1,2],[0,3,2,2],[1,2,2,0]],[[1,2,1,0],[3,2,1,2],[0,3,2,1],[1,2,2,1]],[[1,3,1,0],[2,2,1,2],[0,3,2,1],[1,2,2,1]],[[2,2,1,0],[2,2,1,2],[0,3,2,1],[1,2,2,1]],[[1,2,1,0],[3,2,1,2],[0,3,1,2],[1,2,2,1]],[[1,3,1,0],[2,2,1,2],[0,3,1,2],[1,2,2,1]],[[2,2,1,0],[2,2,1,2],[0,3,1,2],[1,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,1,0],[3,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,1,0],[2,4,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[2,1,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,3],[2,1,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[3,1,3,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,4,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,3,0],[0,1,3,1]],[[1,1,1,0],[2,3,3,2],[2,1,3,0],[0,1,2,2]],[[2,1,1,0],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,1,0],[3,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,1,0],[2,4,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[2,1,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[2,1,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[3,1,3,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,4,0],[0,2,1,1]],[[2,1,1,0],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,1,0],[3,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,1,0],[2,4,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,4,2],[2,1,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,3],[2,1,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[3,1,3,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,4,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,3,0],[2,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,3,0],[1,0,3,1]],[[1,1,1,0],[2,3,3,2],[2,1,3,0],[1,0,2,2]],[[2,1,1,0],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[2,1,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[2,1,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[2,1,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[3,1,3,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,4,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,3,0],[2,1,1,1]],[[2,1,1,0],[2,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,1,3,0],[1,2,1,0]],[[1,1,1,0],[2,3,4,2],[2,1,3,0],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,1,3,0],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,3,0],[2,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,3,0],[1,3,1,0]],[[2,1,1,0],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,1,1,0],[3,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,1,1,0],[2,4,3,2],[2,1,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,4,2],[2,1,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,3,3],[2,1,3,1],[0,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,1,4,1],[0,0,2,1]],[[2,1,1,0],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,1,1,0],[3,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,1,1,0],[2,4,3,2],[2,1,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,4,2],[2,1,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[2,1,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[3,1,3,1],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,4,1],[0,1,1,1]],[[2,1,1,0],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,1,1,0],[3,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,1,1,0],[2,4,3,2],[2,1,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[2,1,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[2,1,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[3,1,3,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,4,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,3,1],[0,1,3,0]],[[2,1,1,0],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,1,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,4,2],[2,1,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,3],[2,1,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,1,3,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,4,1],[0,2,0,1]],[[2,1,1,0],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,1,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[2,1,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,3],[2,1,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,1,3,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,4,1],[0,2,1,0]],[[2,1,1,0],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,1,0],[3,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,1,0],[2,4,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,4,2],[2,1,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,3],[2,1,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[3,1,3,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,4,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[2,1,3,1],[2,0,1,1]],[[2,1,1,0],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,1,1,0],[3,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,1,1,0],[2,4,3,2],[2,1,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,4,2],[2,1,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,3],[2,1,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[3,1,3,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,4,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,3,1],[2,0,2,0]],[[1,1,1,0],[2,3,3,2],[2,1,3,1],[1,0,3,0]],[[2,1,1,0],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,1,0],[3,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,1,0],[2,4,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,4,2],[2,1,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,3],[2,1,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[3,1,3,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,4,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,3,1],[2,1,0,1]],[[2,1,1,0],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[2,1,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,4,2],[2,1,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,3],[2,1,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[3,1,3,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,4,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[2,1,3,1],[2,1,1,0]],[[2,1,1,0],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,1,0],[3,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,1,0],[2,4,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,1,0],[2,3,4,2],[2,1,3,2],[0,1,0,1]],[[1,1,1,0],[2,3,3,3],[2,1,3,2],[0,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,3,3],[0,1,0,1]],[[2,1,1,0],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,1,0],[3,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,1,0],[2,4,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,1,0],[2,3,4,2],[2,1,3,2],[1,0,0,1]],[[1,1,1,0],[2,3,3,3],[2,1,3,2],[1,0,0,1]],[[1,1,1,0],[2,3,3,2],[3,1,3,2],[1,0,0,1]],[[1,1,1,0],[2,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,1,0],[2,2,0,2],[2,0,3,2],[1,2,2,2]],[[1,2,1,0],[2,2,0,2],[2,0,3,2],[1,2,3,1]],[[1,2,1,0],[2,2,0,2],[2,0,3,2],[1,3,2,1]],[[1,2,1,0],[2,2,0,2],[2,0,3,2],[2,2,2,1]],[[1,2,1,0],[2,2,0,2],[2,0,3,3],[1,2,2,1]],[[1,2,1,0],[2,2,0,2],[3,0,3,2],[1,2,2,1]],[[1,2,1,0],[3,2,0,2],[2,0,3,2],[1,2,2,1]],[[2,2,1,0],[2,2,0,2],[2,0,3,2],[1,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,2,0,0],[1,2,2,1]],[[1,1,1,0],[3,3,3,2],[2,2,0,0],[1,2,2,1]],[[1,1,1,0],[2,4,3,2],[2,2,0,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[3,2,0,0],[1,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,0],[2,2,2,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,0],[1,3,2,1]],[[2,1,1,0],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,1,1,0],[3,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,1,1,0],[2,4,3,2],[2,2,0,1],[0,2,2,1]],[[1,1,1,0],[2,3,4,2],[2,2,0,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,3],[2,2,0,1],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[3,2,0,1],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[2,2,0,1],[1,1,2,1]],[[1,1,1,0],[2,3,4,2],[2,2,0,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[2,2,0,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[3,2,0,1],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,1],[2,1,2,1]],[[2,1,1,0],[2,3,3,2],[2,2,0,1],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[2,2,0,1],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[2,2,0,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[3,2,0,1],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,2,0,1],[2,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,2,0,1],[1,3,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,1,0],[3,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,1,0],[2,4,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[2,2,0,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,3],[2,2,0,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[3,2,0,2],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,3],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,2],[0,1,3,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,2],[0,1,2,2]],[[2,1,1,0],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,1,0],[3,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,1,0],[2,4,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[2,2,0,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[2,2,0,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[3,2,0,2],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,3],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,2],[0,2,1,2]],[[2,1,1,0],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,1,0],[3,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,1,0],[2,4,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,1,0],[2,3,4,2],[2,2,0,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,3],[2,2,0,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[3,2,0,2],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,2,0,3],[0,2,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,1,0],[3,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,1,0],[2,4,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,1,0],[2,3,4,2],[2,2,0,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,3],[2,2,0,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[3,2,0,2],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,3],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,2],[2,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,2],[1,0,3,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,2],[1,0,2,2]],[[2,1,1,0],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[2,2,0,2],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[2,2,0,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[2,2,0,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[3,2,0,2],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,3],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,2],[2,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,0,2],[1,1,1,2]],[[2,1,1,0],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[2,2,0,2],[1,1,2,0]],[[1,1,1,0],[2,3,4,2],[2,2,0,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,3],[2,2,0,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[3,2,0,2],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,2,0,3],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,2,0,2],[2,1,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,1,0],[3,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,1,0],[2,4,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,1,0],[2,3,4,2],[2,2,1,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,3],[2,2,1,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[3,2,1,0],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[2,2,1,0],[1,1,2,1]],[[1,1,1,0],[2,3,4,2],[2,2,1,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,3],[2,2,1,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[3,2,1,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,2,1,0],[2,1,2,1]],[[2,1,1,0],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,1,0],[3,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,1,0],[2,4,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,1,0],[2,3,4,2],[2,2,1,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,3],[2,2,1,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[3,2,1,1],[0,2,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,1,0],[2,3,4,2],[2,2,1,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,3],[2,2,1,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[3,2,1,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,2,1,1],[2,1,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,1,0],[3,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,1,0],[2,4,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,1,0],[2,3,4,2],[2,2,1,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[2,2,1,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[3,2,1,2],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,1,3],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,1,2],[0,1,1,2]],[[2,1,1,0],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,1,0],[3,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,1,0],[2,4,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[2,2,1,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[2,2,1,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[3,2,1,2],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,2,1,3],[0,1,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,1,0],[2,3,4,2],[2,2,1,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,3],[2,2,1,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,2,1,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,2,1,3],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,2,1,2],[0,2,0,2]],[[2,1,1,0],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[2,2,1,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,3],[2,2,1,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,2,1,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,2,1,3],[0,2,1,0]],[[2,1,1,0],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,1,0],[3,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,1,0],[2,4,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,1,0],[2,3,4,2],[2,2,1,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,3],[2,2,1,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[3,2,1,2],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,1,3],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,1,2],[2,0,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,1,2],[1,0,1,2]],[[2,1,1,0],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,1,0],[3,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,1,0],[2,4,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,1,0],[2,3,4,2],[2,2,1,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,3],[2,2,1,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[3,2,1,2],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[2,2,1,3],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[2,2,1,2],[2,0,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,1,0],[2,3,4,2],[2,2,1,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,3],[2,2,1,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[3,2,1,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,2,1,3],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,2,1,2],[2,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,2,1,2],[1,1,0,2]],[[2,1,1,0],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,1,0],[2,3,4,2],[2,2,1,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,3],[2,2,1,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[3,2,1,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[2,2,1,3],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[2,2,1,2],[2,1,1,0]],[[2,1,1,0],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,1,1,0],[3,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,1,1,0],[2,4,3,2],[2,2,1,2],[1,2,0,0]],[[1,1,1,0],[2,3,4,2],[2,2,1,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,3],[2,2,1,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[3,2,1,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[2,2,1,2],[2,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,1,0],[2,1,3,2],[2,4,3,1],[1,1,0,0]],[[1,2,1,0],[2,1,3,2],[3,3,3,1],[1,1,0,0]],[[1,2,1,0],[3,1,3,2],[2,3,3,1],[1,1,0,0]],[[1,3,1,0],[2,1,3,2],[2,3,3,1],[1,1,0,0]],[[2,2,1,0],[2,1,3,2],[2,3,3,1],[1,1,0,0]],[[2,1,1,0],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,1,0],[3,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,1,0],[2,4,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,1,0],[2,3,4,2],[2,2,2,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,3],[2,2,2,0],[0,1,2,1]],[[1,1,1,0],[2,3,3,2],[3,2,2,0],[0,1,2,1]],[[2,1,1,0],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,1,1,0],[3,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,1,1,0],[2,4,3,2],[2,2,2,0],[0,2,1,1]],[[1,1,1,0],[2,3,4,2],[2,2,2,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,3],[2,2,2,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[3,2,2,0],[0,2,1,1]],[[2,1,1,0],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,1,1,0],[3,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,1,1,0],[2,4,3,2],[2,2,2,0],[1,0,2,1]],[[1,1,1,0],[2,3,4,2],[2,2,2,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,3],[2,2,2,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[3,2,2,0],[1,0,2,1]],[[1,1,1,0],[2,3,3,2],[2,2,2,0],[2,0,2,1]],[[2,1,1,0],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[2,2,2,0],[1,1,1,1]],[[1,1,1,0],[2,3,4,2],[2,2,2,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,3],[2,2,2,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[3,2,2,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,2,0],[2,1,1,1]],[[2,1,1,0],[2,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,2,2,0],[1,2,0,1]],[[1,1,1,0],[2,3,4,2],[2,2,2,0],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,2,2,0],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,2,2,0],[2,2,0,1]],[[2,1,1,0],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,1,1,0],[3,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,1,1,0],[2,4,3,2],[2,2,2,1],[0,1,1,1]],[[1,1,1,0],[2,3,4,2],[2,2,2,1],[0,1,1,1]],[[1,1,1,0],[2,3,3,3],[2,2,2,1],[0,1,1,1]],[[1,1,1,0],[2,3,3,2],[3,2,2,1],[0,1,1,1]],[[2,1,1,0],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,1,1,0],[3,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,1,1,0],[2,4,3,2],[2,2,2,1],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[2,2,2,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,3],[2,2,2,1],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[3,2,2,1],[0,1,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,2,2,1],[0,2,0,1]],[[1,1,1,0],[2,3,4,2],[2,2,2,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,3],[2,2,2,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,2,2,1],[0,2,0,1]],[[2,1,1,0],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[2,2,2,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,3],[2,2,2,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,2,2,1],[0,2,1,0]],[[2,1,1,0],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,1,0],[3,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,1,0],[2,4,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,1,0],[2,3,4,2],[2,2,2,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,3],[2,2,2,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[3,2,2,1],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[2,2,2,1],[2,0,1,1]],[[2,1,1,0],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,1,1,0],[3,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,1,1,0],[2,4,3,2],[2,2,2,1],[1,0,2,0]],[[1,1,1,0],[2,3,4,2],[2,2,2,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,3],[2,2,2,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[3,2,2,1],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[2,2,2,1],[2,0,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,1,0],[3,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,1,0],[2,4,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,1,0],[2,3,4,2],[2,2,2,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,3],[2,2,2,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[3,2,2,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,2,2,1],[2,1,0,1]],[[2,1,1,0],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[2,2,2,1],[1,1,1,0]],[[1,1,1,0],[2,3,4,2],[2,2,2,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,3],[2,2,2,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[3,2,2,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[2,2,2,1],[2,1,1,0]],[[2,1,1,0],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,1,0],[3,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,1,0],[2,4,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,1,0],[2,3,4,2],[2,2,2,1],[1,2,0,0]],[[1,1,1,0],[2,3,3,3],[2,2,2,1],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[3,2,2,1],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[2,2,2,1],[2,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,1,0],[2,1,3,2],[3,3,3,1],[0,2,0,0]],[[1,2,1,0],[3,1,3,2],[2,3,3,1],[0,2,0,0]],[[1,3,1,0],[2,1,3,2],[2,3,3,1],[0,2,0,0]],[[2,2,1,0],[2,1,3,2],[2,3,3,1],[0,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,4,3,0],[1,2,0,0]],[[1,2,1,0],[2,1,3,2],[3,3,3,0],[1,2,0,0]],[[1,2,1,0],[3,1,3,2],[2,3,3,0],[1,2,0,0]],[[1,3,1,0],[2,1,3,2],[2,3,3,0],[1,2,0,0]],[[2,2,1,0],[2,1,3,2],[2,3,3,0],[1,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,1,0],[2,1,3,2],[2,4,3,0],[1,1,1,0]],[[1,2,1,0],[2,1,3,2],[3,3,3,0],[1,1,1,0]],[[1,2,1,0],[3,1,3,2],[2,3,3,0],[1,1,1,0]],[[1,3,1,0],[2,1,3,2],[2,3,3,0],[1,1,1,0]],[[2,2,1,0],[2,1,3,2],[2,3,3,0],[1,1,1,0]],[[1,2,1,0],[2,1,3,2],[2,3,3,0],[2,0,2,0]],[[1,2,1,0],[2,1,3,2],[2,4,3,0],[1,0,2,0]],[[1,2,1,0],[2,1,3,2],[3,3,3,0],[1,0,2,0]],[[1,2,1,0],[3,1,3,2],[2,3,3,0],[1,0,2,0]],[[1,3,1,0],[2,1,3,2],[2,3,3,0],[1,0,2,0]],[[2,2,1,0],[2,1,3,2],[2,3,3,0],[1,0,2,0]],[[1,2,1,0],[2,1,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,1,0],[2,1,3,2],[2,4,3,0],[0,2,1,0]],[[1,2,1,0],[2,1,3,2],[3,3,3,0],[0,2,1,0]],[[1,2,1,0],[3,1,3,2],[2,3,3,0],[0,2,1,0]],[[1,3,1,0],[2,1,3,2],[2,3,3,0],[0,2,1,0]],[[2,2,1,0],[2,1,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,1,0],[2,1,3,2],[2,4,3,0],[0,1,2,0]],[[1,2,1,0],[2,1,3,2],[3,3,3,0],[0,1,2,0]],[[1,2,1,0],[3,1,3,2],[2,3,3,0],[0,1,2,0]],[[1,3,1,0],[2,1,3,2],[2,3,3,0],[0,1,2,0]],[[2,2,1,0],[2,1,3,2],[2,3,3,0],[0,1,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,1,0],[3,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,1,0],[2,4,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,1,0],[2,3,4,2],[2,2,3,0],[0,1,2,0]],[[1,1,1,0],[2,3,3,2],[3,2,3,0],[0,1,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,1,0],[2,3,4,2],[2,2,3,0],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,2,3,0],[0,2,1,0]],[[2,1,1,0],[2,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,1,0],[3,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,1,0],[2,4,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,1,0],[2,3,4,2],[2,2,3,0],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[3,2,3,0],[1,0,2,0]],[[1,1,1,0],[2,3,3,2],[2,2,3,0],[2,0,2,0]],[[2,1,1,0],[2,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,1,0],[2,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[3,2,3,0],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[2,2,3,0],[2,1,1,0]],[[2,1,1,0],[2,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,1,1,0],[3,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,1,1,0],[2,4,3,2],[2,2,3,0],[1,2,0,0]],[[1,1,1,0],[2,3,4,2],[2,2,3,0],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[3,2,3,0],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[2,2,3,0],[2,2,0,0]],[[2,1,1,0],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,1,0],[3,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,1,0],[2,4,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,1,0],[2,3,4,2],[2,2,3,1],[0,2,0,0]],[[1,1,1,0],[2,3,3,3],[2,2,3,1],[0,2,0,0]],[[1,1,1,0],[2,3,3,2],[3,2,3,1],[0,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,4,2,1],[1,2,0,0]],[[1,2,1,0],[2,1,3,2],[3,3,2,1],[1,2,0,0]],[[1,2,1,0],[3,1,3,2],[2,3,2,1],[1,2,0,0]],[[1,3,1,0],[2,1,3,2],[2,3,2,1],[1,2,0,0]],[[2,2,1,0],[2,1,3,2],[2,3,2,1],[1,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,1,0],[2,1,3,2],[2,4,2,1],[1,1,1,0]],[[2,1,1,0],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,1,1,0],[3,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,1,1,0],[2,4,3,2],[2,2,3,1],[1,1,0,0]],[[1,1,1,0],[2,3,4,2],[2,2,3,1],[1,1,0,0]],[[1,1,1,0],[2,3,3,3],[2,2,3,1],[1,1,0,0]],[[1,1,1,0],[2,3,3,2],[3,2,3,1],[1,1,0,0]],[[1,1,1,0],[2,3,3,2],[2,2,3,1],[2,1,0,0]],[[1,2,1,0],[2,1,3,2],[3,3,2,1],[1,1,1,0]],[[1,2,1,0],[3,1,3,2],[2,3,2,1],[1,1,1,0]],[[1,3,1,0],[2,1,3,2],[2,3,2,1],[1,1,1,0]],[[2,2,1,0],[2,1,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,1,0],[2,1,3,2],[2,3,2,1],[2,1,0,1]],[[1,2,1,0],[2,1,3,2],[2,4,2,1],[1,1,0,1]],[[1,2,1,0],[2,1,3,2],[3,3,2,1],[1,1,0,1]],[[1,2,1,0],[3,1,3,2],[2,3,2,1],[1,1,0,1]],[[1,3,1,0],[2,1,3,2],[2,3,2,1],[1,1,0,1]],[[2,2,1,0],[2,1,3,2],[2,3,2,1],[1,1,0,1]],[[1,2,1,0],[2,1,3,2],[2,3,2,1],[2,0,2,0]],[[1,2,1,0],[2,1,3,2],[2,4,2,1],[1,0,2,0]],[[1,2,1,0],[2,1,3,2],[3,3,2,1],[1,0,2,0]],[[1,2,1,0],[3,1,3,2],[2,3,2,1],[1,0,2,0]],[[1,3,1,0],[2,1,3,2],[2,3,2,1],[1,0,2,0]],[[2,2,1,0],[2,1,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,1,0],[2,1,3,2],[2,3,2,1],[2,0,1,1]],[[1,2,1,0],[2,1,3,2],[2,4,2,1],[1,0,1,1]],[[1,2,1,0],[2,1,3,2],[3,3,2,1],[1,0,1,1]],[[1,2,1,0],[3,1,3,2],[2,3,2,1],[1,0,1,1]],[[1,3,1,0],[2,1,3,2],[2,3,2,1],[1,0,1,1]],[[2,2,1,0],[2,1,3,2],[2,3,2,1],[1,0,1,1]],[[1,2,1,0],[2,1,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,1,0],[2,1,3,2],[2,4,2,1],[0,2,1,0]],[[1,2,1,0],[2,1,3,2],[3,3,2,1],[0,2,1,0]],[[1,2,1,0],[3,1,3,2],[2,3,2,1],[0,2,1,0]],[[1,3,1,0],[2,1,3,2],[2,3,2,1],[0,2,1,0]],[[2,2,1,0],[2,1,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,1,0],[2,1,3,2],[2,3,2,1],[0,3,0,1]],[[1,2,1,0],[2,1,3,2],[2,4,2,1],[0,2,0,1]],[[1,2,1,0],[2,1,3,2],[3,3,2,1],[0,2,0,1]],[[1,2,1,0],[3,1,3,2],[2,3,2,1],[0,2,0,1]],[[1,3,1,0],[2,1,3,2],[2,3,2,1],[0,2,0,1]],[[2,2,1,0],[2,1,3,2],[2,3,2,1],[0,2,0,1]],[[1,2,1,0],[2,1,3,2],[2,4,2,1],[0,1,2,0]],[[1,2,1,0],[2,1,3,2],[3,3,2,1],[0,1,2,0]],[[1,2,1,0],[3,1,3,2],[2,3,2,1],[0,1,2,0]],[[1,3,1,0],[2,1,3,2],[2,3,2,1],[0,1,2,0]],[[2,2,1,0],[2,1,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,1,0],[2,1,3,2],[2,4,2,1],[0,1,1,1]],[[1,2,1,0],[2,1,3,2],[3,3,2,1],[0,1,1,1]],[[1,2,1,0],[3,1,3,2],[2,3,2,1],[0,1,1,1]],[[1,3,1,0],[2,1,3,2],[2,3,2,1],[0,1,1,1]],[[2,2,1,0],[2,1,3,2],[2,3,2,1],[0,1,1,1]],[[1,2,1,0],[2,1,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,1,0],[2,1,3,2],[2,4,2,0],[1,2,0,1]],[[1,2,1,0],[2,1,3,2],[3,3,2,0],[1,2,0,1]],[[1,2,1,0],[3,1,3,2],[2,3,2,0],[1,2,0,1]],[[1,3,1,0],[2,1,3,2],[2,3,2,0],[1,2,0,1]],[[2,2,1,0],[2,1,3,2],[2,3,2,0],[1,2,0,1]],[[1,2,1,0],[2,1,3,2],[2,3,2,0],[2,1,1,1]],[[1,2,1,0],[2,1,3,2],[2,4,2,0],[1,1,1,1]],[[1,2,1,0],[2,1,3,2],[3,3,2,0],[1,1,1,1]],[[1,2,1,0],[3,1,3,2],[2,3,2,0],[1,1,1,1]],[[1,3,1,0],[2,1,3,2],[2,3,2,0],[1,1,1,1]],[[2,2,1,0],[2,1,3,2],[2,3,2,0],[1,1,1,1]],[[1,2,1,0],[2,1,3,2],[2,3,2,0],[2,0,2,1]],[[1,2,1,0],[2,1,3,2],[2,4,2,0],[1,0,2,1]],[[1,2,1,0],[2,1,3,2],[3,3,2,0],[1,0,2,1]],[[1,2,1,0],[3,1,3,2],[2,3,2,0],[1,0,2,1]],[[1,3,1,0],[2,1,3,2],[2,3,2,0],[1,0,2,1]],[[2,2,1,0],[2,1,3,2],[2,3,2,0],[1,0,2,1]],[[1,2,1,0],[2,1,3,2],[2,3,2,0],[0,3,1,1]],[[1,2,1,0],[2,1,3,2],[2,4,2,0],[0,2,1,1]],[[1,2,1,0],[2,1,3,2],[3,3,2,0],[0,2,1,1]],[[1,2,1,0],[3,1,3,2],[2,3,2,0],[0,2,1,1]],[[1,3,1,0],[2,1,3,2],[2,3,2,0],[0,2,1,1]],[[2,2,1,0],[2,1,3,2],[2,3,2,0],[0,2,1,1]],[[1,2,1,0],[2,1,3,2],[2,4,2,0],[0,1,2,1]],[[1,2,1,0],[2,1,3,2],[3,3,2,0],[0,1,2,1]],[[1,2,1,0],[3,1,3,2],[2,3,2,0],[0,1,2,1]],[[1,3,1,0],[2,1,3,2],[2,3,2,0],[0,1,2,1]],[[2,2,1,0],[2,1,3,2],[2,3,2,0],[0,1,2,1]],[[1,2,1,0],[2,1,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,4,1,2],[1,2,0,0]],[[1,2,1,0],[2,1,3,2],[3,3,1,2],[1,2,0,0]],[[1,2,1,0],[3,1,3,2],[2,3,1,2],[1,2,0,0]],[[1,3,1,0],[2,1,3,2],[2,3,1,2],[1,2,0,0]],[[2,2,1,0],[2,1,3,2],[2,3,1,2],[1,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,1,0],[2,1,3,2],[2,4,1,2],[1,1,1,0]],[[1,2,1,0],[2,1,3,2],[3,3,1,2],[1,1,1,0]],[[1,2,1,0],[3,1,3,2],[2,3,1,2],[1,1,1,0]],[[1,3,1,0],[2,1,3,2],[2,3,1,2],[1,1,1,0]],[[2,2,1,0],[2,1,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,1,0],[2,1,3,2],[2,3,1,2],[2,1,0,1]],[[1,2,1,0],[2,1,3,2],[2,4,1,2],[1,1,0,1]],[[1,2,1,0],[2,1,3,2],[3,3,1,2],[1,1,0,1]],[[1,2,1,0],[3,1,3,2],[2,3,1,2],[1,1,0,1]],[[1,3,1,0],[2,1,3,2],[2,3,1,2],[1,1,0,1]],[[2,2,1,0],[2,1,3,2],[2,3,1,2],[1,1,0,1]],[[1,2,1,0],[2,1,3,2],[2,3,1,2],[2,0,2,0]],[[1,2,1,0],[2,1,3,2],[2,4,1,2],[1,0,2,0]],[[1,2,1,0],[2,1,3,2],[3,3,1,2],[1,0,2,0]],[[1,2,1,0],[3,1,3,2],[2,3,1,2],[1,0,2,0]],[[1,3,1,0],[2,1,3,2],[2,3,1,2],[1,0,2,0]],[[2,2,1,0],[2,1,3,2],[2,3,1,2],[1,0,2,0]],[[1,2,1,0],[2,1,3,2],[2,3,1,2],[2,0,1,1]],[[1,2,1,0],[2,1,3,2],[2,4,1,2],[1,0,1,1]],[[1,2,1,0],[2,1,3,2],[3,3,1,2],[1,0,1,1]],[[1,2,1,0],[3,1,3,2],[2,3,1,2],[1,0,1,1]],[[1,3,1,0],[2,1,3,2],[2,3,1,2],[1,0,1,1]],[[2,2,1,0],[2,1,3,2],[2,3,1,2],[1,0,1,1]],[[1,2,1,0],[2,1,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,1,0],[2,1,3,2],[2,4,1,2],[0,2,1,0]],[[1,2,1,0],[2,1,3,2],[3,3,1,2],[0,2,1,0]],[[1,2,1,0],[3,1,3,2],[2,3,1,2],[0,2,1,0]],[[1,3,1,0],[2,1,3,2],[2,3,1,2],[0,2,1,0]],[[2,2,1,0],[2,1,3,2],[2,3,1,2],[0,2,1,0]],[[1,2,1,0],[2,1,3,2],[2,3,1,2],[0,3,0,1]],[[1,2,1,0],[2,1,3,2],[2,4,1,2],[0,2,0,1]],[[1,2,1,0],[2,1,3,2],[3,3,1,2],[0,2,0,1]],[[1,2,1,0],[3,1,3,2],[2,3,1,2],[0,2,0,1]],[[1,3,1,0],[2,1,3,2],[2,3,1,2],[0,2,0,1]],[[2,2,1,0],[2,1,3,2],[2,3,1,2],[0,2,0,1]],[[1,2,1,0],[2,1,3,2],[2,4,1,2],[0,1,2,0]],[[1,2,1,0],[2,1,3,2],[3,3,1,2],[0,1,2,0]],[[1,2,1,0],[3,1,3,2],[2,3,1,2],[0,1,2,0]],[[1,3,1,0],[2,1,3,2],[2,3,1,2],[0,1,2,0]],[[2,2,1,0],[2,1,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,1,0],[2,1,3,2],[2,4,1,2],[0,1,1,1]],[[1,2,1,0],[2,1,3,2],[3,3,1,2],[0,1,1,1]],[[1,2,1,0],[3,1,3,2],[2,3,1,2],[0,1,1,1]],[[1,3,1,0],[2,1,3,2],[2,3,1,2],[0,1,1,1]],[[2,2,1,0],[2,1,3,2],[2,3,1,2],[0,1,1,1]],[[1,2,1,0],[2,1,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,1,0],[2,1,3,2],[2,4,1,1],[1,1,2,0]],[[1,2,1,0],[2,1,3,2],[3,3,1,1],[1,1,2,0]],[[1,2,1,0],[3,1,3,2],[2,3,1,1],[1,1,2,0]],[[1,3,1,0],[2,1,3,2],[2,3,1,1],[1,1,2,0]],[[2,2,1,0],[2,1,3,2],[2,3,1,1],[1,1,2,0]],[[1,2,1,0],[2,1,3,2],[2,3,1,1],[0,2,3,0]],[[1,2,1,0],[2,1,3,2],[2,3,1,1],[0,3,2,0]],[[1,2,1,0],[2,1,3,2],[2,4,1,1],[0,2,2,0]],[[1,2,1,0],[2,1,3,2],[3,3,1,1],[0,2,2,0]],[[1,2,1,0],[3,1,3,2],[2,3,1,1],[0,2,2,0]],[[1,3,1,0],[2,1,3,2],[2,3,1,1],[0,2,2,0]],[[2,2,1,0],[2,1,3,2],[2,3,1,1],[0,2,2,0]],[[1,2,1,0],[2,1,3,2],[2,3,1,0],[2,1,2,1]],[[1,2,1,0],[2,1,3,2],[2,4,1,0],[1,1,2,1]],[[1,2,1,0],[2,1,3,2],[3,3,1,0],[1,1,2,1]],[[1,2,1,0],[3,1,3,2],[2,3,1,0],[1,1,2,1]],[[1,3,1,0],[2,1,3,2],[2,3,1,0],[1,1,2,1]],[[2,2,1,0],[2,1,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,1,0],[2,1,3,2],[2,3,1,0],[0,2,2,2]],[[1,2,1,0],[2,1,3,2],[2,3,1,0],[0,2,3,1]],[[1,2,1,0],[2,1,3,2],[2,3,1,0],[0,3,2,1]],[[1,2,1,0],[2,1,3,2],[2,4,1,0],[0,2,2,1]],[[1,2,1,0],[2,1,3,2],[3,3,1,0],[0,2,2,1]],[[1,2,1,0],[3,1,3,2],[2,3,1,0],[0,2,2,1]],[[1,3,1,0],[2,1,3,2],[2,3,1,0],[0,2,2,1]],[[2,2,1,0],[2,1,3,2],[2,3,1,0],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,3,0,0],[0,2,2,1]],[[1,1,1,0],[3,3,3,2],[2,3,0,0],[0,2,2,1]],[[1,1,1,0],[2,4,3,2],[2,3,0,0],[0,2,2,1]],[[1,1,1,0],[2,3,3,2],[3,3,0,0],[0,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,1,1,0],[3,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,1,1,0],[2,4,3,2],[2,3,0,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[3,3,0,0],[1,1,2,1]],[[1,1,1,0],[2,3,3,2],[2,3,0,0],[2,1,2,1]],[[2,1,1,0],[2,3,3,2],[2,3,0,0],[1,2,1,1]],[[1,1,1,0],[3,3,3,2],[2,3,0,0],[1,2,1,1]],[[1,1,1,0],[2,4,3,2],[2,3,0,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[3,3,0,0],[1,2,1,1]],[[1,1,1,0],[2,3,3,2],[2,3,0,0],[2,2,1,1]],[[2,1,1,0],[2,3,3,2],[2,3,0,0],[1,2,2,0]],[[1,1,1,0],[3,3,3,2],[2,3,0,0],[1,2,2,0]],[[1,1,1,0],[2,4,3,2],[2,3,0,0],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[3,3,0,0],[1,2,2,0]],[[1,1,1,0],[2,3,3,2],[2,3,0,0],[2,2,2,0]],[[2,1,1,0],[2,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,1,1,0],[3,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,1,1,0],[2,4,3,2],[2,3,0,1],[0,2,2,0]],[[1,1,1,0],[2,3,3,2],[3,3,0,1],[0,2,2,0]],[[2,1,1,0],[2,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,1,1,0],[3,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,1,1,0],[2,4,3,2],[2,3,0,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[3,3,0,1],[1,1,2,0]],[[1,1,1,0],[2,3,3,2],[2,3,0,1],[2,1,2,0]],[[2,1,1,0],[2,3,3,2],[2,3,0,1],[1,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,3,0,1],[1,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,3,0,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,3,0,1],[1,2,1,0]],[[1,1,1,0],[2,3,3,2],[2,3,0,1],[2,2,1,0]],[[1,2,1,0],[2,1,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,1,0],[2,1,3,2],[2,4,0,2],[1,1,2,0]],[[1,2,1,0],[2,1,3,2],[3,3,0,2],[1,1,2,0]],[[2,1,1,0],[2,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,3,0,2],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,3,0,2],[0,2,0,1]],[[2,1,1,0],[2,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,3,0,2],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,3,0,2],[0,2,1,0]],[[1,2,1,0],[3,1,3,2],[2,3,0,2],[1,1,2,0]],[[1,3,1,0],[2,1,3,2],[2,3,0,2],[1,1,2,0]],[[2,2,1,0],[2,1,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,1,0],[2,1,3,2],[2,3,0,2],[2,1,1,1]],[[1,2,1,0],[2,1,3,2],[2,4,0,2],[1,1,1,1]],[[1,2,1,0],[2,1,3,2],[3,3,0,2],[1,1,1,1]],[[1,2,1,0],[3,1,3,2],[2,3,0,2],[1,1,1,1]],[[1,3,1,0],[2,1,3,2],[2,3,0,2],[1,1,1,1]],[[2,2,1,0],[2,1,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,1,0],[2,1,3,2],[2,3,0,2],[2,0,2,1]],[[1,2,1,0],[2,1,3,2],[2,4,0,2],[1,0,2,1]],[[2,1,1,0],[2,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,1,0],[3,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,1,0],[2,4,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[3,3,0,2],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,3,0,2],[2,1,0,1]],[[2,1,1,0],[2,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[2,3,0,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[3,3,0,2],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[2,3,0,2],[2,1,1,0]],[[1,2,1,0],[2,1,3,2],[3,3,0,2],[1,0,2,1]],[[1,2,1,0],[3,1,3,2],[2,3,0,2],[1,0,2,1]],[[1,3,1,0],[2,1,3,2],[2,3,0,2],[1,0,2,1]],[[2,2,1,0],[2,1,3,2],[2,3,0,2],[1,0,2,1]],[[2,1,1,0],[2,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,1,1,0],[3,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,1,1,0],[2,4,3,2],[2,3,0,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[3,3,0,2],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[2,3,0,2],[2,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,3,0,2],[0,2,3,0]],[[1,2,1,0],[2,1,3,2],[2,3,0,2],[0,3,2,0]],[[1,2,1,0],[2,1,3,2],[2,4,0,2],[0,2,2,0]],[[1,2,1,0],[2,1,3,2],[3,3,0,2],[0,2,2,0]],[[1,2,1,0],[3,1,3,2],[2,3,0,2],[0,2,2,0]],[[1,3,1,0],[2,1,3,2],[2,3,0,2],[0,2,2,0]],[[2,2,1,0],[2,1,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,1,0],[2,1,3,2],[2,3,0,2],[0,3,1,1]],[[1,2,1,0],[2,1,3,2],[2,4,0,2],[0,2,1,1]],[[1,2,1,0],[2,1,3,2],[3,3,0,2],[0,2,1,1]],[[1,2,1,0],[3,1,3,2],[2,3,0,2],[0,2,1,1]],[[1,3,1,0],[2,1,3,2],[2,3,0,2],[0,2,1,1]],[[2,2,1,0],[2,1,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,1,0],[2,1,3,2],[2,4,0,2],[0,1,2,1]],[[1,2,1,0],[2,1,3,2],[3,3,0,2],[0,1,2,1]],[[1,2,1,0],[3,1,3,2],[2,3,0,2],[0,1,2,1]],[[1,3,1,0],[2,1,3,2],[2,3,0,2],[0,1,2,1]],[[2,2,1,0],[2,1,3,2],[2,3,0,2],[0,1,2,1]],[[1,2,1,0],[2,1,3,2],[2,3,0,1],[1,3,2,0]],[[1,2,1,0],[2,1,3,2],[2,3,0,1],[2,2,2,0]],[[1,2,1,0],[2,1,3,2],[3,3,0,1],[1,2,2,0]],[[2,1,1,0],[2,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,1,1,0],[3,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,1,1,0],[2,4,3,2],[2,3,1,0],[0,2,1,1]],[[1,1,1,0],[2,3,3,2],[3,3,1,0],[0,2,1,1]],[[2,1,1,0],[2,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,1,1,0],[3,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,1,1,0],[2,4,3,2],[2,3,1,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[3,3,1,0],[1,1,1,1]],[[1,1,1,0],[2,3,3,2],[2,3,1,0],[2,1,1,1]],[[2,1,1,0],[2,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,3,1,0],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,3,1,0],[1,2,0,1]],[[1,1,1,0],[2,3,3,2],[2,3,1,0],[2,2,0,1]],[[1,2,1,0],[3,1,3,2],[2,3,0,1],[1,2,2,0]],[[1,3,1,0],[2,1,3,2],[2,3,0,1],[1,2,2,0]],[[2,2,1,0],[2,1,3,2],[2,3,0,1],[1,2,2,0]],[[1,2,1,0],[2,1,3,2],[2,3,0,1],[2,1,2,1]],[[1,2,1,0],[2,1,3,2],[2,4,0,1],[1,1,2,1]],[[1,2,1,0],[2,1,3,2],[3,3,0,1],[1,1,2,1]],[[1,2,1,0],[3,1,3,2],[2,3,0,1],[1,1,2,1]],[[1,3,1,0],[2,1,3,2],[2,3,0,1],[1,1,2,1]],[[2,2,1,0],[2,1,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,1,0],[2,1,3,2],[2,3,0,1],[0,2,2,2]],[[1,2,1,0],[2,1,3,2],[2,3,0,1],[0,2,3,1]],[[2,1,1,0],[2,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,1,1,0],[3,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,1,1,0],[2,4,3,2],[2,3,1,1],[0,2,0,1]],[[1,1,1,0],[2,3,3,2],[3,3,1,1],[0,2,0,1]],[[2,1,1,0],[2,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,3,1,1],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,3,1,1],[0,2,1,0]],[[1,2,1,0],[2,1,3,2],[2,3,0,1],[0,3,2,1]],[[1,2,1,0],[2,1,3,2],[2,4,0,1],[0,2,2,1]],[[1,2,1,0],[2,1,3,2],[3,3,0,1],[0,2,2,1]],[[1,2,1,0],[3,1,3,2],[2,3,0,1],[0,2,2,1]],[[1,3,1,0],[2,1,3,2],[2,3,0,1],[0,2,2,1]],[[2,2,1,0],[2,1,3,2],[2,3,0,1],[0,2,2,1]],[[1,2,1,0],[2,1,3,2],[2,3,0,0],[1,3,2,1]],[[1,2,1,0],[2,1,3,2],[2,3,0,0],[2,2,2,1]],[[1,2,1,0],[2,1,3,2],[3,3,0,0],[1,2,2,1]],[[1,2,1,0],[3,1,3,2],[2,3,0,0],[1,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,1,1,0],[3,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,1,1,0],[2,4,3,2],[2,3,1,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[3,3,1,1],[1,1,0,1]],[[1,1,1,0],[2,3,3,2],[2,3,1,1],[2,1,0,1]],[[2,1,1,0],[2,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[2,3,1,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[3,3,1,1],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[2,3,1,1],[2,1,1,0]],[[1,3,1,0],[2,1,3,2],[2,3,0,0],[1,2,2,1]],[[2,2,1,0],[2,1,3,2],[2,3,0,0],[1,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,1,1,0],[3,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,1,1,0],[2,4,3,2],[2,3,1,1],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[3,3,1,1],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[2,3,1,1],[2,2,0,0]],[[1,2,1,0],[2,1,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,1,0],[2,1,3,2],[2,2,3,0],[2,2,1,0]],[[1,2,1,0],[2,1,3,2],[3,2,3,0],[1,2,1,0]],[[1,2,1,0],[3,1,3,2],[2,2,3,0],[1,2,1,0]],[[1,3,1,0],[2,1,3,2],[2,2,3,0],[1,2,1,0]],[[2,2,1,0],[2,1,3,2],[2,2,3,0],[1,2,1,0]],[[2,1,1,0],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,1,0],[3,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,1,0],[2,4,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,1,0],[2,3,4,2],[2,3,1,2],[1,0,0,1]],[[1,1,1,0],[2,3,3,3],[2,3,1,2],[1,0,0,1]],[[1,1,1,0],[2,3,3,2],[3,3,1,2],[1,0,0,1]],[[1,1,1,0],[2,3,3,2],[2,3,1,3],[1,0,0,1]],[[2,1,1,0],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,1,0],[3,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,1,0],[2,4,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,1,0],[2,3,4,2],[2,3,1,2],[1,0,1,0]],[[1,1,1,0],[2,3,3,3],[2,3,1,2],[1,0,1,0]],[[1,1,1,0],[2,3,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,1,0],[2,1,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,1,0],[2,1,3,2],[2,2,2,1],[2,2,1,0]],[[1,2,1,0],[2,1,3,2],[3,2,2,1],[1,2,1,0]],[[1,2,1,0],[3,1,3,2],[2,2,2,1],[1,2,1,0]],[[1,3,1,0],[2,1,3,2],[2,2,2,1],[1,2,1,0]],[[2,2,1,0],[2,1,3,2],[2,2,2,1],[1,2,1,0]],[[1,2,1,0],[2,1,3,2],[2,2,2,1],[1,3,0,1]],[[1,2,1,0],[2,1,3,2],[2,2,2,1],[2,2,0,1]],[[1,2,1,0],[2,1,3,2],[3,2,2,1],[1,2,0,1]],[[1,2,1,0],[3,1,3,2],[2,2,2,1],[1,2,0,1]],[[1,3,1,0],[2,1,3,2],[2,2,2,1],[1,2,0,1]],[[2,2,1,0],[2,1,3,2],[2,2,2,1],[1,2,0,1]],[[1,2,1,0],[2,1,3,2],[2,2,2,0],[1,3,1,1]],[[1,2,1,0],[2,1,3,2],[2,2,2,0],[2,2,1,1]],[[1,2,1,0],[2,1,3,2],[3,2,2,0],[1,2,1,1]],[[1,2,1,0],[3,1,3,2],[2,2,2,0],[1,2,1,1]],[[1,3,1,0],[2,1,3,2],[2,2,2,0],[1,2,1,1]],[[2,2,1,0],[2,1,3,2],[2,2,2,0],[1,2,1,1]],[[1,2,1,0],[2,1,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,1,0],[2,1,3,2],[2,2,1,2],[2,2,1,0]],[[1,2,1,0],[2,1,3,2],[3,2,1,2],[1,2,1,0]],[[1,2,1,0],[3,1,3,2],[2,2,1,2],[1,2,1,0]],[[1,3,1,0],[2,1,3,2],[2,2,1,2],[1,2,1,0]],[[2,2,1,0],[2,1,3,2],[2,2,1,2],[1,2,1,0]],[[1,2,1,0],[2,1,3,2],[2,2,1,2],[1,3,0,1]],[[1,2,1,0],[2,1,3,2],[2,2,1,2],[2,2,0,1]],[[1,2,1,0],[2,1,3,2],[3,2,1,2],[1,2,0,1]],[[1,2,1,0],[3,1,3,2],[2,2,1,2],[1,2,0,1]],[[1,3,1,0],[2,1,3,2],[2,2,1,2],[1,2,0,1]],[[2,2,1,0],[2,1,3,2],[2,2,1,2],[1,2,0,1]],[[1,2,1,0],[2,1,3,2],[2,2,1,1],[1,2,3,0]],[[1,2,1,0],[2,1,3,2],[2,2,1,1],[1,3,2,0]],[[1,2,1,0],[2,1,3,2],[2,2,1,1],[2,2,2,0]],[[1,2,1,0],[2,1,3,2],[3,2,1,1],[1,2,2,0]],[[1,2,1,0],[3,1,3,2],[2,2,1,1],[1,2,2,0]],[[1,3,1,0],[2,1,3,2],[2,2,1,1],[1,2,2,0]],[[2,2,1,0],[2,1,3,2],[2,2,1,1],[1,2,2,0]],[[1,2,1,0],[2,1,3,2],[2,2,1,0],[1,2,2,2]],[[1,2,1,0],[2,1,3,2],[2,2,1,0],[1,2,3,1]],[[1,2,1,0],[2,1,3,2],[2,2,1,0],[1,3,2,1]],[[1,2,1,0],[2,1,3,2],[2,2,1,0],[2,2,2,1]],[[1,2,1,0],[2,1,3,2],[3,2,1,0],[1,2,2,1]],[[1,2,1,0],[3,1,3,2],[2,2,1,0],[1,2,2,1]],[[1,3,1,0],[2,1,3,2],[2,2,1,0],[1,2,2,1]],[[2,2,1,0],[2,1,3,2],[2,2,1,0],[1,2,2,1]],[[1,2,1,0],[2,1,3,2],[2,2,0,2],[1,2,3,0]],[[1,2,1,0],[2,1,3,2],[2,2,0,2],[1,3,2,0]],[[2,1,1,0],[2,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,1,0],[3,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,1,0],[2,4,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,1,0],[2,3,3,2],[3,3,2,0],[0,2,1,0]],[[1,2,1,0],[2,1,3,2],[2,2,0,2],[2,2,2,0]],[[1,2,1,0],[2,1,3,2],[3,2,0,2],[1,2,2,0]],[[1,2,1,0],[3,1,3,2],[2,2,0,2],[1,2,2,0]],[[1,3,1,0],[2,1,3,2],[2,2,0,2],[1,2,2,0]],[[2,2,1,0],[2,1,3,2],[2,2,0,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,2],[2,2,0,2],[1,3,1,1]],[[1,2,1,0],[2,1,3,2],[2,2,0,2],[2,2,1,1]],[[1,2,1,0],[2,1,3,2],[3,2,0,2],[1,2,1,1]],[[1,2,1,0],[3,1,3,2],[2,2,0,2],[1,2,1,1]],[[1,3,1,0],[2,1,3,2],[2,2,0,2],[1,2,1,1]],[[2,1,1,0],[2,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,1,0],[3,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,1,0],[2,4,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,1,0],[2,3,4,2],[2,3,2,0],[1,0,1,1]],[[1,1,1,0],[2,3,3,2],[3,3,2,0],[1,0,1,1]],[[2,1,1,0],[2,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,1,0],[3,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,1,0],[2,4,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[3,3,2,0],[1,1,1,0]],[[1,1,1,0],[2,3,3,2],[2,3,2,0],[2,1,1,0]],[[2,2,1,0],[2,1,3,2],[2,2,0,2],[1,2,1,1]],[[1,2,1,0],[2,1,3,2],[2,2,0,1],[1,2,2,2]],[[1,2,1,0],[2,1,3,2],[2,2,0,1],[1,2,3,1]],[[1,2,1,0],[2,1,3,2],[2,2,0,1],[1,3,2,1]],[[1,2,1,0],[2,1,3,2],[2,2,0,1],[2,2,2,1]],[[1,2,1,0],[2,1,3,2],[3,2,0,1],[1,2,2,1]],[[1,2,1,0],[3,1,3,2],[2,2,0,1],[1,2,2,1]],[[1,3,1,0],[2,1,3,2],[2,2,0,1],[1,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,1,0],[3,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,1,0],[2,4,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[3,3,2,0],[1,2,0,0]],[[1,1,1,0],[2,3,3,2],[2,3,2,0],[2,2,0,0]],[[2,2,1,0],[2,1,3,2],[2,2,0,1],[1,2,2,1]],[[1,2,1,0],[2,1,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,0],[2,1,3,2],[2,1,0,2],[1,2,3,1]],[[1,2,1,0],[2,1,3,2],[2,1,0,2],[1,3,2,1]],[[1,2,1,0],[2,1,3,2],[2,1,0,2],[2,2,2,1]],[[1,2,1,0],[2,1,3,2],[2,1,0,3],[1,2,2,1]],[[1,2,1,0],[2,1,3,2],[3,1,0,2],[1,2,2,1]],[[1,2,1,0],[2,1,3,3],[2,1,0,2],[1,2,2,1]],[[1,2,1,0],[2,1,4,2],[2,1,0,2],[1,2,2,1]],[[1,2,1,0],[3,1,3,2],[2,1,0,2],[1,2,2,1]],[[1,3,1,0],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[2,2,1,0],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[2,1,1,0],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,1,0],[3,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,1,0],[2,4,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,1,0],[2,3,4,2],[2,3,2,1],[1,0,0,1]],[[1,1,1,0],[2,3,3,3],[2,3,2,1],[1,0,0,1]],[[1,1,1,0],[2,3,3,2],[3,3,2,1],[1,0,0,1]],[[2,1,1,0],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,1,1,0],[3,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,1,1,0],[2,4,3,2],[2,3,2,1],[1,0,1,0]],[[1,1,1,0],[2,3,4,2],[2,3,2,1],[1,0,1,0]],[[1,1,1,0],[2,3,3,3],[2,3,2,1],[1,0,1,0]],[[1,1,1,0],[2,3,3,2],[3,3,2,1],[1,0,1,0]],[[1,2,1,0],[2,1,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,1,0],[2,1,3,2],[2,0,3,1],[1,3,2,0]],[[1,2,1,0],[2,1,3,2],[2,0,3,1],[2,2,2,0]],[[1,2,1,0],[2,1,3,2],[2,0,4,1],[1,2,2,0]],[[1,2,1,0],[2,1,3,2],[3,0,3,1],[1,2,2,0]],[[1,2,1,0],[2,1,3,3],[2,0,3,1],[1,2,2,0]],[[1,2,1,0],[2,1,4,2],[2,0,3,1],[1,2,2,0]],[[1,2,1,0],[3,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,3,1,0],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[2,2,1,0],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,1,0],[2,1,3,2],[2,0,4,1],[1,2,1,1]],[[1,2,1,0],[2,1,3,3],[2,0,3,1],[1,2,1,1]],[[1,2,1,0],[2,1,4,2],[2,0,3,1],[1,2,1,1]],[[1,2,1,0],[2,1,3,2],[2,0,3,0],[1,2,2,2]],[[1,2,1,0],[2,1,3,2],[2,0,3,0],[1,2,3,1]],[[1,2,1,0],[2,1,3,2],[2,0,3,0],[1,3,2,1]],[[1,2,1,0],[2,1,3,2],[2,0,3,0],[2,2,2,1]],[[1,2,1,0],[2,1,3,2],[2,0,4,0],[1,2,2,1]],[[1,2,1,0],[2,1,3,2],[3,0,3,0],[1,2,2,1]],[[1,2,1,0],[2,1,3,3],[2,0,3,0],[1,2,2,1]],[[1,2,1,0],[2,1,4,2],[2,0,3,0],[1,2,2,1]],[[1,2,1,0],[3,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,3,1,0],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[2,2,1,0],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,1,0],[2,1,3,2],[2,0,2,3],[1,2,2,0]],[[1,2,1,0],[2,1,3,3],[2,0,2,2],[1,2,2,0]],[[1,2,1,0],[2,1,4,2],[2,0,2,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,2],[2,0,2,2],[1,2,1,2]],[[1,2,1,0],[2,1,3,2],[2,0,2,3],[1,2,1,1]],[[1,2,1,0],[2,1,3,3],[2,0,2,2],[1,2,1,1]],[[1,2,1,0],[2,1,4,2],[2,0,2,2],[1,2,1,1]],[[1,2,1,0],[2,1,3,2],[2,0,1,2],[1,2,2,2]],[[1,2,1,0],[2,1,3,2],[2,0,1,2],[1,2,3,1]],[[1,2,1,0],[2,1,3,2],[2,0,1,2],[1,3,2,1]],[[1,2,1,0],[2,1,3,2],[2,0,1,2],[2,2,2,1]],[[1,2,1,0],[2,1,3,2],[2,0,1,3],[1,2,2,1]],[[1,2,1,0],[2,1,3,2],[3,0,1,2],[1,2,2,1]],[[1,2,1,0],[2,1,3,3],[2,0,1,2],[1,2,2,1]],[[1,2,1,0],[2,1,4,2],[2,0,1,2],[1,2,2,1]],[[1,2,1,0],[3,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,3,1,0],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[2,2,1,0],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,2,1,0],[2,1,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,1,0],[2,1,3,2],[1,3,3,0],[2,2,1,0]],[[1,2,1,0],[2,1,3,2],[1,4,3,0],[1,2,1,0]],[[1,2,1,0],[2,1,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,1,0],[2,1,3,2],[1,3,2,1],[2,2,1,0]],[[1,2,1,0],[2,1,3,2],[1,4,2,1],[1,2,1,0]],[[1,2,1,0],[2,1,3,2],[1,3,2,1],[1,3,0,1]],[[1,2,1,0],[2,1,3,2],[1,3,2,1],[2,2,0,1]],[[1,2,1,0],[2,1,3,2],[1,4,2,1],[1,2,0,1]],[[1,2,1,0],[2,1,3,2],[1,3,2,0],[1,3,1,1]],[[1,2,1,0],[2,1,3,2],[1,3,2,0],[2,2,1,1]],[[1,2,1,0],[2,1,3,2],[1,4,2,0],[1,2,1,1]],[[1,2,1,0],[2,1,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,1,0],[2,1,3,2],[1,3,1,2],[2,2,1,0]],[[1,2,1,0],[2,1,3,2],[1,4,1,2],[1,2,1,0]],[[1,2,1,0],[2,1,3,2],[1,3,1,2],[1,3,0,1]],[[1,2,1,0],[2,1,3,2],[1,3,1,2],[2,2,0,1]],[[1,2,1,0],[2,1,3,2],[1,4,1,2],[1,2,0,1]],[[1,2,1,0],[2,1,3,2],[1,3,1,1],[1,2,3,0]],[[1,2,1,0],[2,1,3,2],[1,3,1,1],[1,3,2,0]],[[1,2,1,0],[2,1,3,2],[1,3,1,1],[2,2,2,0]],[[1,2,1,0],[2,1,3,2],[1,4,1,1],[1,2,2,0]],[[1,2,1,0],[2,1,3,2],[1,3,1,0],[1,2,2,2]],[[1,2,1,0],[2,1,3,2],[1,3,1,0],[1,2,3,1]],[[1,2,1,0],[2,1,3,2],[1,3,1,0],[1,3,2,1]],[[1,2,1,0],[2,1,3,2],[1,3,1,0],[2,2,2,1]],[[1,2,1,0],[2,1,3,2],[1,4,1,0],[1,2,2,1]],[[1,2,1,0],[2,1,3,2],[1,3,0,2],[1,2,3,0]],[[1,2,1,0],[2,1,3,2],[1,3,0,2],[1,3,2,0]],[[1,2,1,0],[2,1,3,2],[1,3,0,2],[2,2,2,0]],[[1,2,1,0],[2,1,3,2],[1,4,0,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,2],[1,3,0,2],[1,3,1,1]],[[1,2,1,0],[2,1,3,2],[1,3,0,2],[2,2,1,1]],[[1,2,1,0],[2,1,3,2],[1,4,0,2],[1,2,1,1]],[[1,2,1,0],[2,1,3,2],[1,3,0,1],[1,2,2,2]],[[1,2,1,0],[2,1,3,2],[1,3,0,1],[1,2,3,1]],[[1,2,1,0],[2,1,3,2],[1,3,0,1],[1,3,2,1]],[[1,2,1,0],[2,1,3,2],[1,3,0,1],[2,2,2,1]],[[1,2,1,0],[2,1,3,2],[1,4,0,1],[1,2,2,1]],[[1,2,1,0],[2,1,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,1,0],[2,1,3,1],[2,4,3,2],[1,1,0,0]],[[1,2,1,0],[2,1,3,1],[3,3,3,2],[1,1,0,0]],[[1,2,1,0],[3,1,3,1],[2,3,3,2],[1,1,0,0]],[[1,3,1,0],[2,1,3,1],[2,3,3,2],[1,1,0,0]],[[2,2,1,0],[2,1,3,1],[2,3,3,2],[1,1,0,0]],[[1,2,1,0],[2,1,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,1,0],[2,1,3,1],[3,3,3,2],[0,2,0,0]],[[1,2,1,0],[3,1,3,1],[2,3,3,2],[0,2,0,0]],[[1,3,1,0],[2,1,3,1],[2,3,3,2],[0,2,0,0]],[[2,2,1,0],[2,1,3,1],[2,3,3,2],[0,2,0,0]],[[2,1,1,0],[2,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,1,1,0],[3,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,1,1,0],[2,4,3,2],[2,3,3,0],[1,0,1,0]],[[1,1,1,0],[2,3,4,2],[2,3,3,0],[1,0,1,0]],[[1,1,1,0],[2,3,3,2],[3,3,3,0],[1,0,1,0]],[[1,2,1,0],[2,1,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,1,0],[2,1,3,1],[2,4,2,2],[1,2,0,0]],[[1,2,1,0],[2,1,3,1],[3,3,2,2],[1,2,0,0]],[[1,2,1,0],[3,1,3,1],[2,3,2,2],[1,2,0,0]],[[1,3,1,0],[2,1,3,1],[2,3,2,2],[1,2,0,0]],[[2,2,1,0],[2,1,3,1],[2,3,2,2],[1,2,0,0]],[[1,2,1,0],[2,1,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,1,0],[2,1,3,1],[2,4,2,2],[1,1,1,0]],[[1,2,1,0],[2,1,3,1],[3,3,2,2],[1,1,1,0]],[[1,2,1,0],[3,1,3,1],[2,3,2,2],[1,1,1,0]],[[1,3,1,0],[2,1,3,1],[2,3,2,2],[1,1,1,0]],[[2,2,1,0],[2,1,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,1,0],[2,1,3,1],[2,3,2,2],[2,1,0,1]],[[1,2,1,0],[2,1,3,1],[2,4,2,2],[1,1,0,1]],[[1,2,1,0],[2,1,3,1],[3,3,2,2],[1,1,0,1]],[[1,2,1,0],[3,1,3,1],[2,3,2,2],[1,1,0,1]],[[1,3,1,0],[2,1,3,1],[2,3,2,2],[1,1,0,1]],[[2,2,1,0],[2,1,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,1,0],[2,1,3,1],[2,3,2,2],[2,0,2,0]],[[1,2,1,0],[2,1,3,1],[2,4,2,2],[1,0,2,0]],[[1,2,1,0],[2,1,3,1],[3,3,2,2],[1,0,2,0]],[[1,2,1,0],[3,1,3,1],[2,3,2,2],[1,0,2,0]],[[1,3,1,0],[2,1,3,1],[2,3,2,2],[1,0,2,0]],[[2,2,1,0],[2,1,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,1,0],[2,1,3,1],[2,3,2,2],[2,0,1,1]],[[1,2,1,0],[2,1,3,1],[2,4,2,2],[1,0,1,1]],[[1,2,1,0],[2,1,3,1],[3,3,2,2],[1,0,1,1]],[[1,2,1,0],[3,1,3,1],[2,3,2,2],[1,0,1,1]],[[1,3,1,0],[2,1,3,1],[2,3,2,2],[1,0,1,1]],[[2,2,1,0],[2,1,3,1],[2,3,2,2],[1,0,1,1]],[[1,2,1,0],[2,1,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,1,0],[2,1,3,1],[2,4,2,2],[0,2,1,0]],[[1,2,1,0],[2,1,3,1],[3,3,2,2],[0,2,1,0]],[[1,2,1,0],[3,1,3,1],[2,3,2,2],[0,2,1,0]],[[1,3,1,0],[2,1,3,1],[2,3,2,2],[0,2,1,0]],[[2,2,1,0],[2,1,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,1,0],[2,1,3,1],[2,3,2,2],[0,3,0,1]],[[1,2,1,0],[2,1,3,1],[2,4,2,2],[0,2,0,1]],[[1,2,1,0],[2,1,3,1],[3,3,2,2],[0,2,0,1]],[[1,2,1,0],[3,1,3,1],[2,3,2,2],[0,2,0,1]],[[1,3,1,0],[2,1,3,1],[2,3,2,2],[0,2,0,1]],[[2,2,1,0],[2,1,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,1,0],[2,1,3,1],[2,4,2,2],[0,1,2,0]],[[1,2,1,0],[2,1,3,1],[3,3,2,2],[0,1,2,0]],[[1,2,1,0],[3,1,3,1],[2,3,2,2],[0,1,2,0]],[[1,3,1,0],[2,1,3,1],[2,3,2,2],[0,1,2,0]],[[2,2,1,0],[2,1,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,1,0],[2,1,3,1],[2,4,2,2],[0,1,1,1]],[[1,2,1,0],[2,1,3,1],[3,3,2,2],[0,1,1,1]],[[1,2,1,0],[3,1,3,1],[2,3,2,2],[0,1,1,1]],[[1,3,1,0],[2,1,3,1],[2,3,2,2],[0,1,1,1]],[[2,2,1,0],[2,1,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,1,0],[2,1,3,1],[2,3,2,1],[2,2,0,1]],[[1,2,1,0],[2,1,3,1],[2,4,2,1],[1,2,0,1]],[[1,2,1,0],[2,1,3,1],[3,3,2,1],[1,2,0,1]],[[1,2,1,0],[3,1,3,1],[2,3,2,1],[1,2,0,1]],[[2,1,1,0],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,1,0],[3,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,1,0],[2,4,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,1,0],[2,3,4,2],[2,3,3,1],[1,0,0,0]],[[1,1,1,0],[2,3,3,3],[2,3,3,1],[1,0,0,0]],[[1,1,1,0],[2,3,3,2],[3,3,3,1],[1,0,0,0]],[[1,3,1,0],[2,1,3,1],[2,3,2,1],[1,2,0,1]],[[2,2,1,0],[2,1,3,1],[2,3,2,1],[1,2,0,1]],[[1,2,1,0],[2,1,3,1],[2,3,2,1],[2,1,1,1]],[[1,2,1,0],[2,1,3,1],[2,4,2,1],[1,1,1,1]],[[1,2,1,0],[2,1,3,1],[3,3,2,1],[1,1,1,1]],[[1,2,1,0],[3,1,3,1],[2,3,2,1],[1,1,1,1]],[[1,3,1,0],[2,1,3,1],[2,3,2,1],[1,1,1,1]],[[2,2,1,0],[2,1,3,1],[2,3,2,1],[1,1,1,1]],[[1,2,1,0],[2,1,3,1],[2,3,2,1],[2,0,2,1]],[[1,2,1,0],[2,1,3,1],[2,4,2,1],[1,0,2,1]],[[1,2,1,0],[2,1,3,1],[3,3,2,1],[1,0,2,1]],[[1,2,1,0],[3,1,3,1],[2,3,2,1],[1,0,2,1]],[[1,3,1,0],[2,1,3,1],[2,3,2,1],[1,0,2,1]],[[2,2,1,0],[2,1,3,1],[2,3,2,1],[1,0,2,1]],[[1,2,1,0],[2,1,3,1],[2,3,2,1],[0,3,1,1]],[[1,2,1,0],[2,1,3,1],[2,4,2,1],[0,2,1,1]],[[1,2,1,0],[2,1,3,1],[3,3,2,1],[0,2,1,1]],[[1,2,1,0],[3,1,3,1],[2,3,2,1],[0,2,1,1]],[[1,3,1,0],[2,1,3,1],[2,3,2,1],[0,2,1,1]],[[2,2,1,0],[2,1,3,1],[2,3,2,1],[0,2,1,1]],[[1,2,1,0],[2,1,3,1],[2,4,2,1],[0,1,2,1]],[[1,2,1,0],[2,1,3,1],[3,3,2,1],[0,1,2,1]],[[1,2,1,0],[3,1,3,1],[2,3,2,1],[0,1,2,1]],[[1,3,1,0],[2,1,3,1],[2,3,2,1],[0,1,2,1]],[[2,2,1,0],[2,1,3,1],[2,3,2,1],[0,1,2,1]],[[1,2,1,0],[2,1,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,1,0],[2,1,3,1],[2,4,1,2],[1,1,2,0]],[[1,2,1,0],[2,1,3,1],[3,3,1,2],[1,1,2,0]],[[1,2,1,0],[3,1,3,1],[2,3,1,2],[1,1,2,0]],[[1,3,1,0],[2,1,3,1],[2,3,1,2],[1,1,2,0]],[[2,2,1,0],[2,1,3,1],[2,3,1,2],[1,1,2,0]],[[1,2,1,0],[2,1,3,1],[2,3,1,2],[0,2,3,0]],[[1,2,1,0],[2,1,3,1],[2,3,1,2],[0,3,2,0]],[[1,2,1,0],[2,1,3,1],[2,4,1,2],[0,2,2,0]],[[1,2,1,0],[2,1,3,1],[3,3,1,2],[0,2,2,0]],[[1,2,1,0],[3,1,3,1],[2,3,1,2],[0,2,2,0]],[[1,3,1,0],[2,1,3,1],[2,3,1,2],[0,2,2,0]],[[2,2,1,0],[2,1,3,1],[2,3,1,2],[0,2,2,0]],[[1,2,1,0],[2,1,3,1],[2,3,1,1],[2,1,2,1]],[[1,2,1,0],[2,1,3,1],[2,4,1,1],[1,1,2,1]],[[1,2,1,0],[2,1,3,1],[3,3,1,1],[1,1,2,1]],[[1,2,1,0],[3,1,3,1],[2,3,1,1],[1,1,2,1]],[[1,3,1,0],[2,1,3,1],[2,3,1,1],[1,1,2,1]],[[2,2,1,0],[2,1,3,1],[2,3,1,1],[1,1,2,1]],[[1,2,1,0],[2,1,3,1],[2,3,1,1],[0,2,2,2]],[[1,2,1,0],[2,1,3,1],[2,3,1,1],[0,2,3,1]],[[1,2,1,0],[2,1,3,1],[2,3,1,1],[0,3,2,1]],[[1,2,1,0],[2,1,3,1],[2,4,1,1],[0,2,2,1]],[[1,2,1,0],[2,1,3,1],[3,3,1,1],[0,2,2,1]],[[1,2,1,0],[3,1,3,1],[2,3,1,1],[0,2,2,1]],[[1,3,1,0],[2,1,3,1],[2,3,1,1],[0,2,2,1]],[[2,2,1,0],[2,1,3,1],[2,3,1,1],[0,2,2,1]],[[1,2,1,0],[2,1,3,1],[2,3,0,2],[1,3,2,0]],[[1,2,1,0],[2,1,3,1],[2,3,0,2],[2,2,2,0]],[[1,2,1,0],[2,1,3,1],[3,3,0,2],[1,2,2,0]],[[1,2,1,0],[3,1,3,1],[2,3,0,2],[1,2,2,0]],[[1,3,1,0],[2,1,3,1],[2,3,0,2],[1,2,2,0]],[[2,2,1,0],[2,1,3,1],[2,3,0,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,1],[2,3,0,2],[2,1,2,1]],[[1,2,1,0],[2,1,3,1],[2,4,0,2],[1,1,2,1]],[[1,2,1,0],[2,1,3,1],[3,3,0,2],[1,1,2,1]],[[1,2,1,0],[3,1,3,1],[2,3,0,2],[1,1,2,1]],[[1,3,1,0],[2,1,3,1],[2,3,0,2],[1,1,2,1]],[[2,2,1,0],[2,1,3,1],[2,3,0,2],[1,1,2,1]],[[1,2,1,0],[2,1,3,1],[2,3,0,2],[0,2,2,2]],[[1,2,1,0],[2,1,3,1],[2,3,0,2],[0,2,3,1]],[[1,2,1,0],[2,1,3,1],[2,3,0,2],[0,3,2,1]],[[1,2,1,0],[2,1,3,1],[2,3,0,3],[0,2,2,1]],[[1,2,1,0],[2,1,3,1],[2,4,0,2],[0,2,2,1]],[[1,2,1,0],[2,1,3,1],[3,3,0,2],[0,2,2,1]],[[1,2,1,0],[3,1,3,1],[2,3,0,2],[0,2,2,1]],[[1,3,1,0],[2,1,3,1],[2,3,0,2],[0,2,2,1]],[[2,2,1,0],[2,1,3,1],[2,3,0,2],[0,2,2,1]],[[1,2,1,0],[2,1,3,1],[2,3,0,1],[1,3,2,1]],[[1,2,1,0],[2,1,3,1],[2,3,0,1],[2,2,2,1]],[[1,2,1,0],[2,1,3,1],[3,3,0,1],[1,2,2,1]],[[1,2,1,0],[3,1,3,1],[2,3,0,1],[1,2,2,1]],[[1,3,1,0],[2,1,3,1],[2,3,0,1],[1,2,2,1]],[[2,2,1,0],[2,1,3,1],[2,3,0,1],[1,2,2,1]],[[1,2,1,0],[2,1,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,1,0],[2,1,3,1],[2,2,2,2],[2,2,1,0]],[[1,2,1,0],[2,1,3,1],[3,2,2,2],[1,2,1,0]],[[1,2,1,0],[3,1,3,1],[2,2,2,2],[1,2,1,0]],[[1,3,1,0],[2,1,3,1],[2,2,2,2],[1,2,1,0]],[[2,2,1,0],[2,1,3,1],[2,2,2,2],[1,2,1,0]],[[1,2,1,0],[2,1,3,1],[2,2,2,2],[1,3,0,1]],[[1,2,1,0],[2,1,3,1],[2,2,2,2],[2,2,0,1]],[[1,2,1,0],[2,1,3,1],[3,2,2,2],[1,2,0,1]],[[1,2,1,0],[3,1,3,1],[2,2,2,2],[1,2,0,1]],[[1,3,1,0],[2,1,3,1],[2,2,2,2],[1,2,0,1]],[[2,2,1,0],[2,1,3,1],[2,2,2,2],[1,2,0,1]],[[1,2,1,0],[2,1,3,1],[2,2,2,1],[1,3,1,1]],[[1,2,1,0],[2,1,3,1],[2,2,2,1],[2,2,1,1]],[[1,2,1,0],[2,1,3,1],[3,2,2,1],[1,2,1,1]],[[1,2,1,0],[3,1,3,1],[2,2,2,1],[1,2,1,1]],[[1,3,1,0],[2,1,3,1],[2,2,2,1],[1,2,1,1]],[[2,2,1,0],[2,1,3,1],[2,2,2,1],[1,2,1,1]],[[1,2,1,0],[2,1,3,1],[2,2,1,2],[1,2,3,0]],[[1,2,1,0],[2,1,3,1],[2,2,1,2],[1,3,2,0]],[[1,2,1,0],[2,1,3,1],[2,2,1,2],[2,2,2,0]],[[1,2,1,0],[2,1,3,1],[3,2,1,2],[1,2,2,0]],[[1,2,1,0],[3,1,3,1],[2,2,1,2],[1,2,2,0]],[[1,3,1,0],[2,1,3,1],[2,2,1,2],[1,2,2,0]],[[2,2,1,0],[2,1,3,1],[2,2,1,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,1],[2,2,1,1],[1,2,2,2]],[[1,2,1,0],[2,1,3,1],[2,2,1,1],[1,2,3,1]],[[1,2,1,0],[2,1,3,1],[2,2,1,1],[1,3,2,1]],[[1,2,1,0],[2,1,3,1],[2,2,1,1],[2,2,2,1]],[[1,2,1,0],[2,1,3,1],[3,2,1,1],[1,2,2,1]],[[1,2,1,0],[3,1,3,1],[2,2,1,1],[1,2,2,1]],[[1,3,1,0],[2,1,3,1],[2,2,1,1],[1,2,2,1]],[[2,2,1,0],[2,1,3,1],[2,2,1,1],[1,2,2,1]],[[1,2,1,0],[2,1,3,1],[2,2,0,2],[1,2,2,2]],[[1,2,1,0],[2,1,3,1],[2,2,0,2],[1,2,3,1]],[[1,2,1,0],[2,1,3,1],[2,2,0,2],[1,3,2,1]],[[1,2,1,0],[2,1,3,1],[2,2,0,2],[2,2,2,1]],[[1,2,1,0],[2,1,3,1],[2,2,0,3],[1,2,2,1]],[[1,2,1,0],[2,1,3,1],[3,2,0,2],[1,2,2,1]],[[1,2,1,0],[3,1,3,1],[2,2,0,2],[1,2,2,1]],[[1,3,1,0],[2,1,3,1],[2,2,0,2],[1,2,2,1]],[[2,2,1,0],[2,1,3,1],[2,2,0,2],[1,2,2,1]],[[1,2,1,0],[2,1,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,3,1],[2,0,3,2],[1,3,2,0]],[[1,2,1,0],[2,1,3,1],[2,0,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,3,1],[2,0,3,3],[1,2,2,0]],[[1,2,1,0],[2,1,3,1],[2,0,4,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,1],[3,0,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,4,1],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[3,1,3,1],[2,0,3,2],[1,2,2,0]],[[1,3,1,0],[2,1,3,1],[2,0,3,2],[1,2,2,0]],[[2,2,1,0],[2,1,3,1],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,1],[2,0,3,2],[1,2,1,2]],[[1,2,1,0],[2,1,3,1],[2,0,3,3],[1,2,1,1]],[[1,2,1,0],[2,1,3,1],[2,0,4,2],[1,2,1,1]],[[1,2,1,0],[2,1,4,1],[2,0,3,2],[1,2,1,1]],[[1,2,1,0],[2,1,3,1],[2,0,3,1],[1,2,2,2]],[[1,2,1,0],[2,1,3,1],[2,0,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,3,1],[2,0,3,1],[1,3,2,1]],[[1,2,1,0],[2,1,3,1],[2,0,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,3,1],[2,0,4,1],[1,2,2,1]],[[1,2,1,0],[2,1,3,1],[3,0,3,1],[1,2,2,1]],[[1,2,1,0],[2,1,4,1],[2,0,3,1],[1,2,2,1]],[[1,2,1,0],[3,1,3,1],[2,0,3,1],[1,2,2,1]],[[1,3,1,0],[2,1,3,1],[2,0,3,1],[1,2,2,1]],[[2,2,1,0],[2,1,3,1],[2,0,3,1],[1,2,2,1]],[[1,2,1,0],[2,1,3,1],[2,0,2,2],[1,2,2,2]],[[1,2,1,0],[2,1,3,1],[2,0,2,2],[1,2,3,1]],[[1,2,1,0],[2,1,3,1],[2,0,2,2],[1,3,2,1]],[[1,2,1,0],[2,1,3,1],[2,0,2,2],[2,2,2,1]],[[1,2,1,0],[2,1,3,1],[2,0,2,3],[1,2,2,1]],[[1,2,1,0],[2,1,3,1],[3,0,2,2],[1,2,2,1]],[[1,2,1,0],[3,1,3,1],[2,0,2,2],[1,2,2,1]],[[1,3,1,0],[2,1,3,1],[2,0,2,2],[1,2,2,1]],[[2,2,1,0],[2,1,3,1],[2,0,2,2],[1,2,2,1]],[[1,2,1,0],[2,1,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,1,0],[2,1,3,1],[1,3,2,2],[2,2,1,0]],[[1,2,1,0],[2,1,3,1],[1,4,2,2],[1,2,1,0]],[[1,2,1,0],[2,1,3,1],[1,3,2,2],[1,3,0,1]],[[1,2,1,0],[2,1,3,1],[1,3,2,2],[2,2,0,1]],[[1,2,1,0],[2,1,3,1],[1,4,2,2],[1,2,0,1]],[[1,2,1,0],[2,1,3,1],[1,3,2,1],[1,3,1,1]],[[1,2,1,0],[2,1,3,1],[1,3,2,1],[2,2,1,1]],[[1,2,1,0],[2,1,3,1],[1,4,2,1],[1,2,1,1]],[[1,2,1,0],[2,1,3,1],[1,3,1,2],[1,2,3,0]],[[1,2,1,0],[2,1,3,1],[1,3,1,2],[1,3,2,0]],[[1,2,1,0],[2,1,3,1],[1,3,1,2],[2,2,2,0]],[[1,2,1,0],[2,1,3,1],[1,4,1,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,1],[1,3,1,1],[1,2,2,2]],[[1,2,1,0],[2,1,3,1],[1,3,1,1],[1,2,3,1]],[[1,2,1,0],[2,1,3,1],[1,3,1,1],[1,3,2,1]],[[1,2,1,0],[2,1,3,1],[1,3,1,1],[2,2,2,1]],[[1,2,1,0],[2,1,3,1],[1,4,1,1],[1,2,2,1]],[[1,2,1,0],[2,1,3,1],[1,3,0,2],[1,2,2,2]],[[1,2,1,0],[2,1,3,1],[1,3,0,2],[1,2,3,1]],[[1,2,1,0],[2,1,3,1],[1,3,0,2],[1,3,2,1]],[[1,2,1,0],[2,1,3,1],[1,3,0,2],[2,2,2,1]],[[1,2,1,0],[2,1,3,1],[1,3,0,3],[1,2,2,1]],[[1,2,1,0],[2,1,3,1],[1,4,0,2],[1,2,2,1]],[[1,1,1,1],[0,0,2,2],[1,3,3,3],[1,2,2,1]],[[1,1,1,1],[0,0,2,2],[1,3,3,2],[1,3,2,1]],[[1,1,1,1],[0,0,2,2],[1,3,3,2],[1,2,3,1]],[[1,1,1,1],[0,0,2,2],[1,3,3,2],[1,2,2,2]],[[1,1,1,1],[0,0,2,2],[2,3,3,3],[0,2,2,1]],[[1,1,1,1],[0,0,2,2],[2,3,3,2],[0,2,3,1]],[[1,1,1,1],[0,0,2,2],[2,3,3,2],[0,2,2,2]],[[1,1,1,1],[0,0,3,3],[0,3,3,2],[1,2,2,1]],[[1,1,1,1],[0,0,3,2],[0,3,3,3],[1,2,2,1]],[[1,1,1,1],[0,0,3,2],[0,3,3,2],[1,2,3,1]],[[1,1,1,1],[0,0,3,2],[0,3,3,2],[1,2,2,2]],[[1,1,1,1],[0,0,3,3],[1,2,3,2],[1,2,2,1]],[[1,1,1,1],[0,0,3,2],[1,2,3,3],[1,2,2,1]],[[1,1,1,1],[0,0,3,2],[1,2,3,2],[1,2,3,1]],[[1,1,1,1],[0,0,3,2],[1,2,3,2],[1,2,2,2]],[[1,1,1,2],[0,0,3,2],[1,3,2,2],[1,2,2,1]],[[1,1,1,1],[0,0,3,3],[1,3,2,2],[1,2,2,1]],[[1,1,1,1],[0,0,3,2],[1,3,2,3],[1,2,2,1]],[[1,1,1,1],[0,0,3,2],[1,3,2,2],[2,2,2,1]],[[1,1,1,1],[0,0,3,2],[1,3,2,2],[1,3,2,1]],[[1,1,1,1],[0,0,3,2],[1,3,2,2],[1,2,3,1]],[[1,1,1,1],[0,0,3,2],[1,3,2,2],[1,2,2,2]],[[1,1,1,1],[0,0,3,2],[1,3,4,1],[1,2,2,1]],[[1,1,1,1],[0,0,3,2],[1,3,3,1],[2,2,2,1]],[[1,1,1,1],[0,0,3,2],[1,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,0,3,2],[1,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,0,3,2],[1,3,3,1],[1,2,2,2]],[[1,1,1,2],[0,0,3,2],[1,3,3,2],[1,2,1,1]],[[1,1,1,1],[0,0,3,3],[1,3,3,2],[1,2,1,1]],[[1,1,1,1],[0,0,3,2],[1,3,4,2],[1,2,1,1]],[[1,1,1,1],[0,0,3,2],[1,3,3,3],[1,2,1,1]],[[1,1,1,1],[0,0,3,2],[1,3,3,2],[1,2,1,2]],[[1,1,1,2],[0,0,3,2],[1,3,3,2],[1,2,2,0]],[[1,1,1,1],[0,0,3,3],[1,3,3,2],[1,2,2,0]],[[1,1,1,1],[0,0,3,2],[1,3,4,2],[1,2,2,0]],[[1,1,1,1],[0,0,3,2],[1,3,3,3],[1,2,2,0]],[[1,1,1,1],[0,0,3,2],[1,3,3,2],[2,2,2,0]],[[1,1,1,1],[0,0,3,2],[1,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,0,3,2],[1,3,3,2],[1,2,3,0]],[[1,1,1,1],[0,0,3,3],[2,2,3,2],[0,2,2,1]],[[1,1,1,1],[0,0,3,2],[2,2,3,3],[0,2,2,1]],[[1,1,1,1],[0,0,3,2],[2,2,3,2],[0,2,3,1]],[[1,1,1,1],[0,0,3,2],[2,2,3,2],[0,2,2,2]],[[1,1,1,2],[0,0,3,2],[2,3,2,2],[0,2,2,1]],[[1,1,1,1],[0,0,3,3],[2,3,2,2],[0,2,2,1]],[[1,1,1,1],[0,0,3,2],[2,3,2,3],[0,2,2,1]],[[1,1,1,1],[0,0,3,2],[2,3,2,2],[0,3,2,1]],[[1,1,1,1],[0,0,3,2],[2,3,2,2],[0,2,3,1]],[[1,1,1,1],[0,0,3,2],[2,3,2,2],[0,2,2,2]],[[1,1,1,1],[0,0,3,2],[2,3,4,1],[0,2,2,1]],[[1,1,1,1],[0,0,3,2],[2,3,3,1],[0,3,2,1]],[[1,1,1,1],[0,0,3,2],[2,3,3,1],[0,2,3,1]],[[1,1,1,1],[0,0,3,2],[2,3,3,1],[0,2,2,2]],[[1,1,1,2],[0,0,3,2],[2,3,3,2],[0,2,1,1]],[[1,1,1,1],[0,0,3,3],[2,3,3,2],[0,2,1,1]],[[1,1,1,1],[0,0,3,2],[2,3,4,2],[0,2,1,1]],[[1,1,1,1],[0,0,3,2],[2,3,3,3],[0,2,1,1]],[[1,1,1,1],[0,0,3,2],[2,3,3,2],[0,2,1,2]],[[1,1,1,2],[0,0,3,2],[2,3,3,2],[0,2,2,0]],[[1,1,1,1],[0,0,3,3],[2,3,3,2],[0,2,2,0]],[[1,1,1,1],[0,0,3,2],[2,3,4,2],[0,2,2,0]],[[1,1,1,1],[0,0,3,2],[2,3,3,3],[0,2,2,0]],[[1,1,1,1],[0,0,3,2],[2,3,3,2],[0,3,2,0]],[[1,1,1,1],[0,0,3,2],[2,3,3,2],[0,2,3,0]],[[1,1,1,1],[0,1,1,2],[1,3,3,3],[1,2,2,1]],[[1,1,1,1],[0,1,1,2],[1,3,3,2],[2,2,2,1]],[[1,1,1,1],[0,1,1,2],[1,3,3,2],[1,3,2,1]],[[1,1,1,1],[0,1,1,2],[1,3,3,2],[1,2,3,1]],[[1,1,1,1],[0,1,1,2],[1,3,3,2],[1,2,2,2]],[[1,1,1,1],[0,1,1,2],[2,3,3,3],[0,2,2,1]],[[1,1,1,1],[0,1,1,2],[2,3,3,2],[0,3,2,1]],[[1,1,1,1],[0,1,1,2],[2,3,3,2],[0,2,3,1]],[[1,1,1,1],[0,1,1,2],[2,3,3,2],[0,2,2,2]],[[1,1,1,2],[0,1,2,2],[1,3,2,2],[1,2,2,1]],[[1,1,1,1],[0,1,2,3],[1,3,2,2],[1,2,2,1]],[[1,1,1,1],[0,1,2,2],[1,3,2,3],[1,2,2,1]],[[1,1,1,1],[0,1,2,2],[1,3,2,2],[2,2,2,1]],[[1,1,1,1],[0,1,2,2],[1,3,2,2],[1,3,2,1]],[[1,1,1,1],[0,1,2,2],[1,3,2,2],[1,2,3,1]],[[1,1,1,1],[0,1,2,2],[1,3,2,2],[1,2,2,2]],[[1,1,1,1],[0,1,2,2],[1,3,4,1],[1,2,2,1]],[[1,1,1,1],[0,1,2,2],[1,3,3,1],[2,2,2,1]],[[1,1,1,1],[0,1,2,2],[1,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,1,2,2],[1,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,1,2,2],[1,3,3,1],[1,2,2,2]],[[1,1,1,2],[0,1,2,2],[1,3,3,2],[1,2,1,1]],[[1,1,1,1],[0,1,2,3],[1,3,3,2],[1,2,1,1]],[[1,1,1,1],[0,1,2,2],[1,3,4,2],[1,2,1,1]],[[1,1,1,1],[0,1,2,2],[1,3,3,3],[1,2,1,1]],[[1,1,1,1],[0,1,2,2],[1,3,3,2],[1,2,1,2]],[[1,1,1,2],[0,1,2,2],[1,3,3,2],[1,2,2,0]],[[1,1,1,1],[0,1,2,3],[1,3,3,2],[1,2,2,0]],[[1,1,1,1],[0,1,2,2],[1,3,4,2],[1,2,2,0]],[[1,1,1,1],[0,1,2,2],[1,3,3,3],[1,2,2,0]],[[1,1,1,1],[0,1,2,2],[1,3,3,2],[2,2,2,0]],[[1,1,1,1],[0,1,2,2],[1,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,1,2,2],[1,3,3,2],[1,2,3,0]],[[1,1,1,2],[0,1,2,2],[2,3,2,2],[0,2,2,1]],[[1,1,1,1],[0,1,2,3],[2,3,2,2],[0,2,2,1]],[[1,1,1,1],[0,1,2,2],[2,3,2,3],[0,2,2,1]],[[1,1,1,1],[0,1,2,2],[2,3,2,2],[0,3,2,1]],[[1,1,1,1],[0,1,2,2],[2,3,2,2],[0,2,3,1]],[[1,1,1,1],[0,1,2,2],[2,3,2,2],[0,2,2,2]],[[1,1,1,1],[0,1,2,2],[2,3,4,1],[0,2,2,1]],[[1,1,1,1],[0,1,2,2],[2,3,3,1],[0,3,2,1]],[[1,1,1,1],[0,1,2,2],[2,3,3,1],[0,2,3,1]],[[1,1,1,1],[0,1,2,2],[2,3,3,1],[0,2,2,2]],[[1,1,1,2],[0,1,2,2],[2,3,3,2],[0,2,1,1]],[[1,1,1,1],[0,1,2,3],[2,3,3,2],[0,2,1,1]],[[1,1,1,1],[0,1,2,2],[2,3,4,2],[0,2,1,1]],[[1,1,1,1],[0,1,2,2],[2,3,3,3],[0,2,1,1]],[[1,1,1,1],[0,1,2,2],[2,3,3,2],[0,2,1,2]],[[1,1,1,2],[0,1,2,2],[2,3,3,2],[0,2,2,0]],[[1,1,1,1],[0,1,2,3],[2,3,3,2],[0,2,2,0]],[[1,1,1,1],[0,1,2,2],[2,3,4,2],[0,2,2,0]],[[1,1,1,1],[0,1,2,2],[2,3,3,3],[0,2,2,0]],[[1,1,1,1],[0,1,2,2],[2,3,3,2],[0,3,2,0]],[[1,1,1,1],[0,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,1,1,1],[0,1,3,0],[1,3,4,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,0],[1,3,3,2],[2,2,2,1]],[[1,1,1,1],[0,1,3,0],[1,3,3,2],[1,3,2,1]],[[1,1,1,1],[0,1,3,0],[1,3,3,2],[1,2,3,1]],[[1,1,1,1],[0,1,3,0],[1,3,3,2],[1,2,2,2]],[[1,1,1,1],[0,1,3,0],[2,3,4,1],[1,2,2,1]],[[1,1,1,1],[0,1,3,0],[2,3,3,1],[2,2,2,1]],[[1,1,1,1],[0,1,3,0],[2,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,1,3,0],[2,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,1,3,0],[2,3,3,1],[1,2,2,2]],[[1,1,1,1],[0,1,3,0],[2,3,4,2],[0,2,2,1]],[[1,1,1,1],[0,1,3,0],[2,3,3,2],[0,3,2,1]],[[1,1,1,1],[0,1,3,0],[2,3,3,2],[0,2,3,1]],[[1,1,1,1],[0,1,3,0],[2,3,3,2],[0,2,2,2]],[[1,1,1,1],[0,1,3,0],[2,3,4,2],[1,2,2,0]],[[1,1,1,1],[0,1,3,0],[2,3,3,2],[2,2,2,0]],[[1,1,1,1],[0,1,3,0],[2,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,1,3,0],[2,3,3,2],[1,2,3,0]],[[1,1,1,1],[0,1,3,1],[1,3,2,3],[1,2,2,1]],[[1,1,1,1],[0,1,3,1],[1,3,2,2],[2,2,2,1]],[[1,1,1,1],[0,1,3,1],[1,3,2,2],[1,3,2,1]],[[1,1,1,1],[0,1,3,1],[1,3,2,2],[1,2,3,1]],[[1,1,1,1],[0,1,3,1],[1,3,2,2],[1,2,2,2]],[[1,1,1,1],[0,1,3,1],[1,3,4,1],[1,2,2,1]],[[1,1,1,1],[0,1,3,1],[1,3,3,1],[2,2,2,1]],[[1,1,1,1],[0,1,3,1],[1,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,1,3,1],[1,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,1,3,1],[1,3,3,1],[1,2,2,2]],[[1,1,1,1],[0,1,3,1],[1,3,4,2],[1,2,1,1]],[[1,1,1,1],[0,1,3,1],[1,3,3,3],[1,2,1,1]],[[1,1,1,1],[0,1,3,1],[1,3,3,2],[1,2,1,2]],[[1,1,1,1],[0,1,3,1],[1,3,4,2],[1,2,2,0]],[[1,1,1,1],[0,1,3,1],[1,3,3,3],[1,2,2,0]],[[1,1,1,1],[0,1,3,1],[1,3,3,2],[2,2,2,0]],[[1,1,1,1],[0,1,3,1],[1,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,1,3,1],[1,3,3,2],[1,2,3,0]],[[1,1,1,1],[0,1,3,1],[2,3,2,3],[0,2,2,1]],[[1,1,1,1],[0,1,3,1],[2,3,2,2],[0,3,2,1]],[[1,1,1,1],[0,1,3,1],[2,3,2,2],[0,2,3,1]],[[1,1,1,1],[0,1,3,1],[2,3,2,2],[0,2,2,2]],[[1,1,1,1],[0,1,3,1],[2,3,4,1],[0,2,2,1]],[[1,1,1,1],[0,1,3,1],[2,3,3,1],[0,3,2,1]],[[1,1,1,1],[0,1,3,1],[2,3,3,1],[0,2,3,1]],[[1,1,1,1],[0,1,3,1],[2,3,3,1],[0,2,2,2]],[[1,1,1,1],[0,1,3,1],[2,3,4,2],[0,2,1,1]],[[1,1,1,1],[0,1,3,1],[2,3,3,3],[0,2,1,1]],[[1,1,1,1],[0,1,3,1],[2,3,3,2],[0,2,1,2]],[[1,1,1,1],[0,1,3,1],[2,3,4,2],[0,2,2,0]],[[1,1,1,1],[0,1,3,1],[2,3,3,3],[0,2,2,0]],[[1,1,1,1],[0,1,3,1],[2,3,3,2],[0,3,2,0]],[[1,1,1,1],[0,1,3,1],[2,3,3,2],[0,2,3,0]],[[1,2,1,0],[2,1,3,0],[2,3,3,2],[2,2,0,0]],[[1,1,1,2],[0,1,3,2],[0,2,3,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,3],[0,2,3,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[0,2,3,3],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[0,2,3,2],[1,2,3,1]],[[1,1,1,1],[0,1,3,2],[0,2,3,2],[1,2,2,2]],[[1,1,1,2],[0,1,3,2],[0,3,2,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,3],[0,3,2,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[0,3,2,3],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[0,3,2,2],[1,3,2,1]],[[1,1,1,1],[0,1,3,2],[0,3,2,2],[1,2,3,1]],[[1,1,1,1],[0,1,3,2],[0,3,2,2],[1,2,2,2]],[[1,1,1,1],[0,1,3,2],[0,3,4,1],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[0,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,1,3,2],[0,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,1,3,2],[0,3,3,1],[1,2,2,2]],[[1,1,1,2],[0,1,3,2],[0,3,3,2],[1,2,1,1]],[[1,1,1,1],[0,1,3,3],[0,3,3,2],[1,2,1,1]],[[1,1,1,1],[0,1,3,2],[0,3,4,2],[1,2,1,1]],[[1,1,1,1],[0,1,3,2],[0,3,3,3],[1,2,1,1]],[[1,1,1,1],[0,1,3,2],[0,3,3,2],[1,2,1,2]],[[1,1,1,2],[0,1,3,2],[0,3,3,2],[1,2,2,0]],[[1,1,1,1],[0,1,3,3],[0,3,3,2],[1,2,2,0]],[[1,1,1,1],[0,1,3,2],[0,3,4,2],[1,2,2,0]],[[1,1,1,1],[0,1,3,2],[0,3,3,3],[1,2,2,0]],[[1,1,1,1],[0,1,3,2],[0,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,1,3,2],[0,3,3,2],[1,2,3,0]],[[1,1,1,2],[0,1,3,2],[1,1,3,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,3],[1,1,3,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[1,1,3,3],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[1,1,3,2],[1,2,3,1]],[[1,1,1,1],[0,1,3,2],[1,1,3,2],[1,2,2,2]],[[1,1,1,2],[0,1,3,2],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,3],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[0,1,3,2],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[0,1,3,2],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[0,1,3,2],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[0,1,3,2],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[0,1,3,2],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[0,1,3,2],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[0,1,3,2],[1,2,3,1],[1,2,2,2]],[[1,1,1,2],[0,1,3,2],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[0,1,3,3],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[0,1,3,2],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[0,1,3,2],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[0,1,3,2],[1,2,3,2],[1,2,1,2]],[[1,1,1,2],[0,1,3,2],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[0,1,3,3],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[0,1,3,2],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[0,1,3,2],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[0,1,3,2],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[0,1,3,2],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[0,1,3,2],[1,2,3,2],[1,2,3,0]],[[1,1,1,2],[0,1,3,2],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[0,1,3,3],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[0,1,3,2],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[0,1,3,2],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[0,1,3,2],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[0,1,3,2],[1,3,4,0],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,0],[2,2,2,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,0],[1,3,2,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,0],[1,2,3,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,0],[1,2,2,2]],[[1,1,1,1],[0,1,3,2],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[0,1,3,2],[1,3,4,1],[1,2,2,0]],[[1,1,1,1],[0,1,3,2],[1,3,3,1],[2,2,2,0]],[[1,1,1,1],[0,1,3,2],[1,3,3,1],[1,3,2,0]],[[1,1,1,1],[0,1,3,2],[1,3,3,1],[1,2,3,0]],[[1,1,1,2],[0,1,3,2],[1,3,3,2],[1,0,2,1]],[[1,1,1,1],[0,1,3,3],[1,3,3,2],[1,0,2,1]],[[1,1,1,1],[0,1,3,2],[1,3,4,2],[1,0,2,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,3],[1,0,2,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,2],[1,0,2,2]],[[1,1,1,2],[0,1,3,2],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[0,1,3,3],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[0,1,3,2],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,2],[1,1,1,2]],[[1,1,1,2],[0,1,3,2],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[0,1,3,3],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[0,1,3,2],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[0,1,3,2],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[0,1,3,2],[1,3,3,2],[1,1,3,0]],[[1,1,1,2],[0,1,3,2],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[0,1,3,3],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[0,1,3,2],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[0,1,3,2],[1,3,3,2],[1,2,0,2]],[[1,1,1,2],[0,1,3,2],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[0,1,3,3],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[0,1,3,2],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[0,1,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,0],[2,1,3,0],[2,4,3,2],[1,2,0,0]],[[1,2,1,0],[2,1,3,0],[3,3,3,2],[1,2,0,0]],[[1,2,1,0],[3,1,3,0],[2,3,3,2],[1,2,0,0]],[[1,3,1,0],[2,1,3,0],[2,3,3,2],[1,2,0,0]],[[2,2,1,0],[2,1,3,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,2],[0,1,3,2],[2,0,3,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,3],[2,0,3,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,0,3,3],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,0,3,2],[1,2,3,1]],[[1,1,1,1],[0,1,3,2],[2,0,3,2],[1,2,2,2]],[[1,1,1,2],[0,1,3,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,3],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[0,1,3,2],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[0,1,3,2],[2,1,2,2],[1,2,2,2]],[[1,1,1,1],[0,1,3,2],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[0,1,3,2],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[0,1,3,2],[2,1,3,1],[1,2,2,2]],[[1,1,1,2],[0,1,3,2],[2,1,3,2],[0,2,2,1]],[[1,1,1,1],[0,1,3,3],[2,1,3,2],[0,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,1,3,3],[0,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,1,3,2],[0,2,3,1]],[[1,1,1,1],[0,1,3,2],[2,1,3,2],[0,2,2,2]],[[1,1,1,2],[0,1,3,2],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[0,1,3,3],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[0,1,3,2],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[0,1,3,2],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[0,1,3,2],[2,1,3,2],[1,2,1,2]],[[1,1,1,2],[0,1,3,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,1,3,3],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,1,3,2],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[0,1,3,2],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[0,1,3,2],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[0,1,3,2],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[0,1,3,2],[2,1,3,2],[1,2,3,0]],[[1,1,1,2],[0,1,3,2],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[0,1,3,3],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[0,1,3,2],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[0,1,3,2],[2,2,2,2],[0,2,2,2]],[[1,1,1,1],[0,1,3,2],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[0,1,3,2],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[0,1,3,2],[2,2,3,1],[0,2,2,2]],[[1,1,1,2],[0,1,3,2],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[0,1,3,3],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[0,1,3,2],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[0,1,3,2],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[0,1,3,2],[2,2,3,2],[0,2,1,2]],[[1,1,1,2],[0,1,3,2],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[0,1,3,3],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[0,1,3,2],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[0,1,3,2],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[0,1,3,2],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[0,1,3,2],[2,2,3,2],[0,2,3,0]],[[1,1,1,2],[0,1,3,2],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[0,1,3,3],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[0,1,3,2],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[0,1,3,2],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[0,1,3,2],[2,3,2,2],[0,1,2,2]],[[1,1,1,2],[0,1,3,2],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[0,1,3,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[0,1,3,2],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[0,1,3,2],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[0,1,3,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,0],[2,1,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,1,3,0],[2,3,4,2],[1,1,1,0]],[[1,2,1,0],[2,1,3,0],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[0,1,3,2],[2,3,4,0],[0,2,2,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,0],[0,3,2,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,0],[0,2,3,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,0],[0,2,2,2]],[[1,1,1,1],[0,1,3,2],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,1],[0,1,2,2]],[[1,1,1,1],[0,1,3,2],[2,3,4,1],[0,2,2,0]],[[1,1,1,1],[0,1,3,2],[2,3,3,1],[0,3,2,0]],[[1,1,1,1],[0,1,3,2],[2,3,3,1],[0,2,3,0]],[[1,1,1,1],[0,1,3,2],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,0],[2,1,3,0],[3,3,3,2],[1,1,1,0]],[[1,2,1,0],[3,1,3,0],[2,3,3,2],[1,1,1,0]],[[1,3,1,0],[2,1,3,0],[2,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,1,3,0],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,1,3,0],[2,3,3,2],[2,1,0,1]],[[1,1,1,2],[0,1,3,2],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[0,1,3,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[0,1,3,2],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,2],[0,0,2,2]],[[1,1,1,2],[0,1,3,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,1,3,3],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,1,3,2],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,2],[0,1,1,2]],[[1,1,1,2],[0,1,3,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,1,3,3],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,1,3,2],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[0,1,3,2],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[0,1,3,2],[2,3,3,2],[0,1,3,0]],[[1,1,1,2],[0,1,3,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,1,3,3],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,1,3,2],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,2],[0,2,0,2]],[[1,1,1,2],[0,1,3,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,1,3,3],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,1,3,2],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[0,1,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,0],[2,1,3,0],[2,3,4,2],[1,1,0,1]],[[1,2,1,0],[2,1,3,0],[2,4,3,2],[1,1,0,1]],[[1,2,1,0],[2,1,3,0],[3,3,3,2],[1,1,0,1]],[[1,2,1,0],[3,1,3,0],[2,3,3,2],[1,1,0,1]],[[1,3,1,0],[2,1,3,0],[2,3,3,2],[1,1,0,1]],[[2,2,1,0],[2,1,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,2],[0,1,3,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,1,3,3],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,1,3,2],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,2],[1,0,1,2]],[[1,1,1,2],[0,1,3,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,1,3,3],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,1,3,2],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[0,1,3,2],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[0,1,3,2],[2,3,3,2],[1,0,3,0]],[[1,1,1,2],[0,1,3,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,1,3,3],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,1,3,2],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[0,1,3,2],[2,3,3,2],[1,1,0,2]],[[1,1,1,2],[0,1,3,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,1,3,3],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,1,3,2],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[0,1,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,0],[2,1,3,0],[2,3,3,2],[1,0,3,0]],[[1,2,1,0],[2,1,3,0],[2,3,3,2],[2,0,2,0]],[[1,2,1,0],[2,1,3,0],[2,3,4,2],[1,0,2,0]],[[1,2,1,0],[2,1,3,0],[2,4,3,2],[1,0,2,0]],[[1,2,1,0],[2,1,3,0],[3,3,3,2],[1,0,2,0]],[[1,2,1,0],[3,1,3,0],[2,3,3,2],[1,0,2,0]],[[1,3,1,0],[2,1,3,0],[2,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,1,3,0],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,1,3,0],[2,3,3,2],[2,0,1,1]],[[1,2,1,0],[2,1,3,0],[2,3,4,2],[1,0,1,1]],[[1,2,1,0],[2,1,3,0],[2,4,3,2],[1,0,1,1]],[[1,2,1,0],[2,1,3,0],[3,3,3,2],[1,0,1,1]],[[1,2,1,0],[3,1,3,0],[2,3,3,2],[1,0,1,1]],[[1,3,1,0],[2,1,3,0],[2,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,1,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,2,0,2],[1,3,3,3],[1,2,2,1]],[[1,1,1,1],[0,2,0,2],[1,3,3,2],[2,2,2,1]],[[1,1,1,1],[0,2,0,2],[1,3,3,2],[1,3,2,1]],[[1,1,1,1],[0,2,0,2],[1,3,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,0,2],[1,3,3,2],[1,2,2,2]],[[1,1,1,1],[0,2,0,2],[2,3,3,3],[0,2,2,1]],[[1,1,1,1],[0,2,0,2],[2,3,3,2],[0,3,2,1]],[[1,1,1,1],[0,2,0,2],[2,3,3,2],[0,2,3,1]],[[1,1,1,1],[0,2,0,2],[2,3,3,2],[0,2,2,2]],[[1,1,1,1],[0,2,1,2],[0,3,3,3],[1,2,2,1]],[[1,1,1,1],[0,2,1,2],[0,3,3,2],[1,3,2,1]],[[1,1,1,1],[0,2,1,2],[0,3,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,1,2],[0,3,3,2],[1,2,2,2]],[[1,1,1,1],[0,2,1,2],[1,2,3,3],[1,2,2,1]],[[1,1,1,1],[0,2,1,2],[1,2,3,2],[2,2,2,1]],[[1,1,1,1],[0,2,1,2],[1,2,3,2],[1,3,2,1]],[[1,1,1,1],[0,2,1,2],[1,2,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,1,2],[1,2,3,2],[1,2,2,2]],[[1,1,1,1],[0,2,1,2],[1,3,3,3],[1,1,2,1]],[[1,1,1,1],[0,2,1,2],[1,3,3,2],[1,1,3,1]],[[1,1,1,1],[0,2,1,2],[1,3,3,2],[1,1,2,2]],[[1,1,1,1],[0,2,1,2],[2,1,3,3],[1,2,2,1]],[[1,1,1,1],[0,2,1,2],[2,1,3,2],[2,2,2,1]],[[1,1,1,1],[0,2,1,2],[2,1,3,2],[1,3,2,1]],[[1,1,1,1],[0,2,1,2],[2,1,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,1,2],[2,1,3,2],[1,2,2,2]],[[1,1,1,1],[0,2,1,2],[2,2,3,3],[0,2,2,1]],[[1,1,1,1],[0,2,1,2],[2,2,3,2],[0,3,2,1]],[[1,1,1,1],[0,2,1,2],[2,2,3,2],[0,2,3,1]],[[1,1,1,1],[0,2,1,2],[2,2,3,2],[0,2,2,2]],[[1,1,1,1],[0,2,1,2],[2,3,3,3],[0,1,2,1]],[[1,1,1,1],[0,2,1,2],[2,3,3,2],[0,1,3,1]],[[1,1,1,1],[0,2,1,2],[2,3,3,2],[0,1,2,2]],[[1,1,1,1],[0,2,1,2],[2,3,3,3],[1,0,2,1]],[[1,1,1,1],[0,2,1,2],[2,3,3,2],[1,0,3,1]],[[1,1,1,1],[0,2,1,2],[2,3,3,2],[1,0,2,2]],[[1,1,1,2],[0,2,2,2],[0,2,3,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,3],[0,2,3,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[0,2,3,3],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[0,2,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[0,2,3,2],[1,2,2,2]],[[1,1,1,2],[0,2,2,2],[0,3,2,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,3],[0,3,2,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[0,3,2,3],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[0,3,2,2],[1,3,2,1]],[[1,1,1,1],[0,2,2,2],[0,3,2,2],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[0,3,2,2],[1,2,2,2]],[[1,1,1,1],[0,2,2,2],[0,3,4,1],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[0,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,2,2,2],[0,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[0,3,3,1],[1,2,2,2]],[[1,1,1,2],[0,2,2,2],[0,3,3,2],[1,2,1,1]],[[1,1,1,1],[0,2,2,3],[0,3,3,2],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[0,3,4,2],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[0,3,3,3],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[0,3,3,2],[1,2,1,2]],[[1,1,1,2],[0,2,2,2],[0,3,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,3],[0,3,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[0,3,4,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[0,3,3,3],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[0,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,2,2,2],[0,3,3,2],[1,2,3,0]],[[1,1,1,2],[0,2,2,2],[1,1,3,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,3],[1,1,3,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,1,3,3],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,1,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[1,1,3,2],[1,2,2,2]],[[1,1,1,2],[0,2,2,2],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,3],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[0,2,2,2],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[0,2,2,2],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[0,2,2,2],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[1,2,3,1],[1,2,2,2]],[[1,1,1,2],[0,2,2,2],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[0,2,2,3],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[1,2,3,2],[1,2,1,2]],[[1,1,1,2],[0,2,2,2],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,3],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[0,2,2,2],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[0,2,2,2],[1,2,3,2],[1,2,3,0]],[[1,1,1,2],[0,2,2,2],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,3],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[0,2,2,2],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[1,3,2,1],[1,2,2,2]],[[1,1,1,2],[0,2,2,2],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[0,2,2,3],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[0,2,2,2],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[0,2,2,2],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[0,2,2,2],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[0,2,2,2],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[0,2,2,2],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[0,2,2,2],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,1],[1,3,1,1]],[[1,1,1,2],[0,2,2,2],[1,3,3,2],[1,0,2,1]],[[1,1,1,1],[0,2,2,3],[1,3,3,2],[1,0,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,4,2],[1,0,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,3],[1,0,2,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,2],[1,0,2,2]],[[1,1,1,2],[0,2,2,2],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[0,2,2,3],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[0,2,2,2],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[0,2,2,2],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,2],[1,1,1,2]],[[1,1,1,2],[0,2,2,2],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[0,2,2,3],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[0,2,2,2],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[0,2,2,2],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[0,2,2,2],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[0,2,2,2],[1,3,3,2],[1,1,3,0]],[[1,1,1,2],[0,2,2,2],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[0,2,2,3],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[0,2,2,2],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[0,2,2,2],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[0,2,2,2],[1,3,3,2],[1,2,0,2]],[[1,1,1,2],[0,2,2,2],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[0,2,2,3],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[0,2,2,2],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[0,2,2,2],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[0,2,2,2],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[0,2,2,2],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[0,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,1,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,1,3,0],[2,3,4,2],[0,2,1,0]],[[1,1,1,2],[0,2,2,2],[2,0,3,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,3],[2,0,3,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,0,3,3],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,0,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[2,0,3,2],[1,2,2,2]],[[1,1,1,2],[0,2,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,3],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[0,2,2,2],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[2,1,2,2],[1,2,2,2]],[[1,1,1,1],[0,2,2,2],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[0,2,2,2],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[2,1,3,1],[1,2,2,2]],[[1,1,1,2],[0,2,2,2],[2,1,3,2],[0,2,2,1]],[[1,1,1,1],[0,2,2,3],[2,1,3,2],[0,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,1,3,3],[0,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,1,3,2],[0,2,3,1]],[[1,1,1,1],[0,2,2,2],[2,1,3,2],[0,2,2,2]],[[1,1,1,2],[0,2,2,2],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[0,2,2,3],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[2,1,3,2],[1,2,1,2]],[[1,1,1,2],[0,2,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,3],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[0,2,2,2],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[0,2,2,2],[2,1,3,2],[1,2,3,0]],[[1,1,1,2],[0,2,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,3],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[2,2,1,2],[1,2,2,2]],[[1,1,1,1],[0,2,2,2],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[0,2,2,2],[2,2,2,1],[1,2,2,2]],[[1,1,1,2],[0,2,2,2],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[0,2,2,3],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[0,2,2,2],[2,2,2,2],[0,2,2,2]],[[1,1,1,1],[0,2,2,2],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,2,2],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[0,2,2,2],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[0,2,2,2],[2,2,2,2],[1,2,3,0]],[[1,1,1,1],[0,2,2,2],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[0,2,2,2],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[0,2,2,2],[2,2,3,1],[0,2,2,2]],[[1,1,1,1],[0,2,2,2],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,2,2],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[0,2,2,2],[2,2,3,1],[1,3,1,1]],[[1,1,1,2],[0,2,2,2],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[0,2,2,3],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[0,2,2,2],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[0,2,2,2],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[0,2,2,2],[2,2,3,2],[0,2,1,2]],[[1,1,1,2],[0,2,2,2],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[0,2,2,3],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[0,2,2,2],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[0,2,2,2],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[0,2,2,2],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[0,2,2,2],[2,2,3,2],[0,2,3,0]],[[1,1,1,1],[0,2,2,2],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[0,2,2,2],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[0,2,2,2],[2,2,3,2],[1,3,0,1]],[[1,1,1,1],[0,2,2,2],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[0,2,2,2],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[0,2,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,1,3,0],[2,4,3,2],[0,2,1,0]],[[1,2,1,0],[2,1,3,0],[3,3,3,2],[0,2,1,0]],[[1,2,1,0],[3,1,3,0],[2,3,3,2],[0,2,1,0]],[[1,3,1,0],[2,1,3,0],[2,3,3,2],[0,2,1,0]],[[2,2,1,0],[2,1,3,0],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[2,1,3,0],[2,3,3,2],[0,3,0,1]],[[1,2,1,0],[2,1,3,0],[2,3,4,2],[0,2,0,1]],[[1,2,1,0],[2,1,3,0],[2,4,3,2],[0,2,0,1]],[[1,2,1,0],[2,1,3,0],[3,3,3,2],[0,2,0,1]],[[1,1,1,2],[0,2,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[0,2,2,3],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[0,2,2,2],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[0,2,2,2],[2,3,1,2],[0,2,2,2]],[[1,1,1,1],[0,2,2,2],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[0,2,2,2],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,1,2],[2,1,2,1]],[[1,1,1,1],[0,2,2,2],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[0,2,2,2],[2,3,2,1],[0,2,2,2]],[[1,1,1,1],[0,2,2,2],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[0,2,2,2],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,2,1],[2,1,2,1]],[[1,1,1,2],[0,2,2,2],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[0,2,2,3],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[0,2,2,2],[2,3,2,2],[0,1,2,2]],[[1,1,1,1],[0,2,2,2],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[0,2,2,2],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[0,2,2,2],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[0,2,2,2],[2,3,2,2],[0,2,3,0]],[[1,1,1,2],[0,2,2,2],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[0,2,2,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[0,2,2,2],[2,3,2,2],[1,0,2,2]],[[1,1,1,1],[0,2,2,2],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[0,2,2,2],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[0,2,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[3,1,3,0],[2,3,3,2],[0,2,0,1]],[[1,3,1,0],[2,1,3,0],[2,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,1,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,2,2,2],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[0,2,2,2],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,1],[0,1,2,2]],[[1,1,1,1],[0,2,2,2],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[0,2,2,2],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[0,2,2,2],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,1],[0,3,1,1]],[[1,1,1,1],[0,2,2,2],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,2,2,2],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,1],[1,0,2,2]],[[1,1,1,1],[0,2,2,2],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[0,2,2,2],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[0,2,2,2],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[2,1,3,0],[2,3,3,2],[0,1,3,0]],[[1,2,1,0],[2,1,3,0],[2,3,4,2],[0,1,2,0]],[[1,2,1,0],[2,1,3,0],[2,4,3,2],[0,1,2,0]],[[1,2,1,0],[2,1,3,0],[3,3,3,2],[0,1,2,0]],[[1,2,1,0],[3,1,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,2],[0,2,2,2],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[0,2,2,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[0,0,2,2]],[[1,1,1,2],[0,2,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,2,2,3],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,2,2,2],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,2,2,2],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[0,2,2,2],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[0,1,1,2]],[[1,1,1,2],[0,2,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,2,2,3],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,2,2,2],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,2,2,2],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[0,2,2,2],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[0,2,2,2],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[0,1,3,0]],[[1,1,1,2],[0,2,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,2,2,3],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,2,2,2],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,2,2,2],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[0,2,2,2],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[0,2,0,2]],[[1,1,1,2],[0,2,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,2,2,3],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,2,2,2],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,2,2,2],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[0,2,2,2],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[0,2,2,2],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[0,3,1,0]],[[1,3,1,0],[2,1,3,0],[2,3,3,2],[0,1,2,0]],[[2,2,1,0],[2,1,3,0],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[2,1,3,0],[2,3,4,2],[0,1,1,1]],[[1,2,1,0],[2,1,3,0],[2,4,3,2],[0,1,1,1]],[[1,2,1,0],[2,1,3,0],[3,3,3,2],[0,1,1,1]],[[1,2,1,0],[3,1,3,0],[2,3,3,2],[0,1,1,1]],[[1,3,1,0],[2,1,3,0],[2,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,1,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,2],[0,2,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,2,2,3],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,2,2,2],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,2,2,2],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[0,2,2,2],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[1,0,1,2]],[[1,1,1,2],[0,2,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,2,2,3],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,2,2,2],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,2,2,2],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[0,2,2,2],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[0,2,2,2],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[1,0,3,0]],[[1,1,1,2],[0,2,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,2,2,3],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,2,2,2],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,2,2,2],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[0,2,2,2],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[1,1,0,2]],[[1,1,1,2],[0,2,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,2,2,3],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,2,2,2],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,2,2,2],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[0,2,2,2],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[0,2,2,2],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,1,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[2,1,3,0],[2,4,3,1],[1,2,0,1]],[[1,1,1,1],[0,2,2,2],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[0,2,2,2],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[0,2,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,1,3,0],[3,3,3,1],[1,2,0,1]],[[1,2,1,0],[3,1,3,0],[2,3,3,1],[1,2,0,1]],[[1,3,1,0],[2,1,3,0],[2,3,3,1],[1,2,0,1]],[[2,2,1,0],[2,1,3,0],[2,3,3,1],[1,2,0,1]],[[1,2,1,0],[2,1,3,0],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[2,1,3,0],[2,3,4,1],[1,1,1,1]],[[1,2,1,0],[2,1,3,0],[2,4,3,1],[1,1,1,1]],[[1,2,1,0],[2,1,3,0],[3,3,3,1],[1,1,1,1]],[[1,2,1,0],[3,1,3,0],[2,3,3,1],[1,1,1,1]],[[1,3,1,0],[2,1,3,0],[2,3,3,1],[1,1,1,1]],[[2,2,1,0],[2,1,3,0],[2,3,3,1],[1,1,1,1]],[[1,2,1,0],[2,1,3,0],[2,3,3,1],[1,0,2,2]],[[1,2,1,0],[2,1,3,0],[2,3,3,1],[1,0,3,1]],[[1,2,1,0],[2,1,3,0],[2,3,3,1],[2,0,2,1]],[[1,2,1,0],[2,1,3,0],[2,3,4,1],[1,0,2,1]],[[1,2,1,0],[2,1,3,0],[2,4,3,1],[1,0,2,1]],[[1,2,1,0],[2,1,3,0],[3,3,3,1],[1,0,2,1]],[[1,2,1,0],[3,1,3,0],[2,3,3,1],[1,0,2,1]],[[1,3,1,0],[2,1,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,2,3,0],[0,3,4,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,0],[0,3,3,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,0],[0,3,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,0],[0,3,3,2],[1,2,2,2]],[[1,1,1,1],[0,2,3,0],[1,2,4,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,0],[1,2,3,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,0],[1,2,3,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,0],[1,2,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,0],[1,2,3,2],[1,2,2,2]],[[1,1,1,1],[0,2,3,0],[1,4,2,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,0],[1,3,2,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,0],[1,3,2,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,0],[1,3,2,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,0],[1,3,2,2],[1,2,2,2]],[[1,1,1,1],[0,2,3,0],[1,4,3,2],[1,1,2,1]],[[1,1,1,1],[0,2,3,0],[1,3,4,2],[1,1,2,1]],[[1,1,1,1],[0,2,3,0],[1,3,3,2],[1,1,3,1]],[[1,1,1,1],[0,2,3,0],[1,3,3,2],[1,1,2,2]],[[1,1,1,1],[0,2,3,0],[1,4,3,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,0],[1,3,4,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,0],[1,3,3,2],[2,2,1,1]],[[1,1,1,1],[0,2,3,0],[1,3,3,2],[1,3,1,1]],[[1,1,1,1],[0,2,3,0],[2,1,4,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,1,3,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,1,3,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,0],[2,1,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,0],[2,1,3,2],[1,2,2,2]],[[1,1,1,1],[0,2,3,0],[2,2,4,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,2,3,1],[2,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,2,3,1],[1,3,2,1]],[[1,1,1,1],[0,2,3,0],[2,2,3,1],[1,2,3,1]],[[1,1,1,1],[0,2,3,0],[2,2,3,1],[1,2,2,2]],[[1,1,1,1],[0,2,3,0],[2,2,4,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,2,3,2],[0,3,2,1]],[[1,1,1,1],[0,2,3,0],[2,2,3,2],[0,2,3,1]],[[1,1,1,1],[0,2,3,0],[2,2,3,2],[0,2,2,2]],[[1,1,1,1],[0,2,3,0],[2,2,4,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,0],[2,2,3,2],[2,2,2,0]],[[1,1,1,1],[0,2,3,0],[2,2,3,2],[1,3,2,0]],[[1,1,1,1],[0,2,3,0],[2,2,3,2],[1,2,3,0]],[[1,1,1,1],[0,2,3,0],[2,4,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,1,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,1,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,1,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,0],[2,3,1,2],[1,2,2,2]],[[1,1,1,1],[0,2,3,0],[2,4,2,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,2,1],[2,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,2,1],[1,3,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,2,1],[1,2,3,1]],[[1,1,1,1],[0,2,3,0],[2,3,2,1],[1,2,2,2]],[[1,1,1,1],[0,2,3,0],[2,4,2,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,2,2],[0,3,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,2,2],[0,2,3,1]],[[1,1,1,1],[0,2,3,0],[2,3,2,2],[0,2,2,2]],[[1,1,1,1],[0,2,3,0],[2,4,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,0],[2,3,2,2],[2,2,2,0]],[[1,1,1,1],[0,2,3,0],[2,3,2,2],[1,3,2,0]],[[1,1,1,1],[0,2,3,0],[2,3,2,2],[1,2,3,0]],[[1,1,1,1],[0,2,3,0],[2,4,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,0],[2,2,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,0],[1,3,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,0],[1,2,3,1]],[[1,1,1,1],[0,2,3,0],[2,4,3,1],[1,1,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,4,1],[1,1,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,1],[1,1,3,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,1],[1,1,2,2]],[[1,1,1,1],[0,2,3,0],[2,4,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,0],[2,3,4,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,1],[2,2,1,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,1],[1,3,1,1]],[[1,1,1,1],[0,2,3,0],[2,4,3,2],[0,1,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,4,2],[0,1,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,2],[0,1,3,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,2],[0,1,2,2]],[[1,1,1,1],[0,2,3,0],[2,4,3,2],[0,2,1,1]],[[1,1,1,1],[0,2,3,0],[2,3,4,2],[0,2,1,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,2],[0,3,1,1]],[[1,1,1,1],[0,2,3,0],[2,4,3,2],[1,0,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,4,2],[1,0,2,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,2],[1,0,3,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,2],[1,0,2,2]],[[1,1,1,1],[0,2,3,0],[2,4,3,2],[1,1,2,0]],[[1,1,1,1],[0,2,3,0],[2,3,4,2],[1,1,2,0]],[[1,1,1,1],[0,2,3,0],[2,3,3,2],[1,1,3,0]],[[1,1,1,1],[0,2,3,0],[2,4,3,2],[1,2,0,1]],[[1,1,1,1],[0,2,3,0],[2,3,4,2],[1,2,0,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,2],[2,2,0,1]],[[1,1,1,1],[0,2,3,0],[2,3,3,2],[1,3,0,1]],[[1,1,1,1],[0,2,3,0],[2,4,3,2],[1,2,1,0]],[[1,1,1,1],[0,2,3,0],[2,3,4,2],[1,2,1,0]],[[1,1,1,1],[0,2,3,0],[2,3,3,2],[2,2,1,0]],[[1,1,1,1],[0,2,3,0],[2,3,3,2],[1,3,1,0]],[[2,2,1,0],[2,1,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,2,3,1],[0,2,3,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[0,2,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[0,2,3,2],[1,2,2,2]],[[1,1,1,1],[0,2,3,1],[0,3,2,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[0,3,2,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[0,3,2,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[0,3,2,2],[1,2,2,2]],[[1,1,1,1],[0,2,4,1],[0,3,3,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[0,3,4,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[0,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[0,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[0,3,3,1],[1,2,2,2]],[[1,1,1,1],[0,2,4,1],[0,3,3,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[0,3,4,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[0,3,3,3],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[0,3,3,2],[1,2,1,2]],[[1,1,1,1],[0,2,4,1],[0,3,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[0,3,4,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[0,3,3,3],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[0,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,2,3,1],[0,3,3,2],[1,2,3,0]],[[1,1,1,1],[0,2,3,1],[1,1,3,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,1,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[1,1,3,2],[1,2,2,2]],[[1,1,1,1],[0,2,3,1],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[0,2,4,1],[1,2,3,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[1,2,3,1],[1,2,2,2]],[[1,1,1,1],[0,2,4,1],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[1,2,3,2],[1,2,1,2]],[[1,1,1,1],[0,2,4,1],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[0,2,3,1],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[0,2,3,1],[1,2,3,2],[1,2,3,0]],[[1,1,1,1],[0,2,3,1],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[0,2,3,1],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[1,3,2,1],[1,2,2,2]],[[1,1,1,1],[0,2,3,1],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[0,2,3,1],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[0,2,3,1],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[0,2,3,1],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[0,2,3,1],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[0,2,3,1],[1,4,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,0],[2,2,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,0],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,0],[1,2,3,1]],[[1,1,1,1],[0,2,4,1],[1,3,3,1],[1,1,2,1]],[[1,1,1,1],[0,2,3,1],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[0,2,4,1],[1,3,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,1],[1,3,1,1]],[[1,1,1,1],[0,2,4,1],[1,3,3,2],[1,0,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,4,2],[1,0,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,3],[1,0,2,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,2],[1,0,2,2]],[[1,1,1,1],[0,2,4,1],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[0,2,3,1],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[0,2,3,1],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,2],[1,1,1,2]],[[1,1,1,1],[0,2,4,1],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[0,2,3,1],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[0,2,3,1],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[0,2,3,1],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[0,2,3,1],[1,3,3,2],[1,1,3,0]],[[1,1,1,1],[0,2,4,1],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[0,2,3,1],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[0,2,3,1],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[0,2,3,1],[1,3,3,2],[1,2,0,2]],[[1,1,1,1],[0,2,4,1],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[0,2,3,1],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[0,2,3,1],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[0,2,3,1],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[0,2,3,1],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[0,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,1,3,0],[2,3,3,1],[0,3,1,1]],[[1,2,1,0],[2,1,3,0],[2,3,4,1],[0,2,1,1]],[[1,2,1,0],[2,1,3,0],[2,4,3,1],[0,2,1,1]],[[1,2,1,0],[2,1,3,0],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,0,3,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,0,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[2,0,3,2],[1,2,2,2]],[[1,1,1,1],[0,2,3,1],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[2,1,2,2],[1,2,2,2]],[[1,1,1,1],[0,2,4,1],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[2,1,3,1],[1,2,2,2]],[[1,1,1,1],[0,2,3,1],[2,1,3,3],[0,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,1,3,2],[0,2,3,1]],[[1,1,1,1],[0,2,3,1],[2,1,3,2],[0,2,2,2]],[[1,1,1,1],[0,2,4,1],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,1,3,2],[1,2,1,2]],[[1,1,1,1],[0,2,4,1],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[0,2,3,1],[2,1,3,2],[1,2,3,0]],[[1,1,1,1],[0,2,3,1],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[2,2,1,2],[1,2,2,2]],[[1,1,1,1],[0,2,3,1],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[2,2,2,1],[1,2,2,2]],[[1,1,1,1],[0,2,3,1],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[0,2,3,1],[2,2,2,2],[0,2,2,2]],[[1,1,1,1],[0,2,3,1],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[0,2,3,1],[2,2,2,2],[1,2,3,0]],[[1,1,1,1],[0,2,4,1],[2,2,3,1],[0,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[0,2,3,1],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[0,2,3,1],[2,2,3,1],[0,2,2,2]],[[1,1,1,1],[0,2,3,1],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,2,3,1],[1,3,1,1]],[[1,1,1,1],[0,2,4,1],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,2,3,2],[0,2,1,2]],[[1,1,1,1],[0,2,4,1],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[0,2,3,1],[2,2,3,2],[0,2,3,0]],[[1,1,1,1],[0,2,3,1],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[0,2,3,1],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[0,2,3,1],[2,2,3,2],[1,3,0,1]],[[1,1,1,1],[0,2,3,1],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[0,2,3,1],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[0,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[3,1,3,0],[2,3,3,1],[0,2,1,1]],[[1,3,1,0],[2,1,3,0],[2,3,3,1],[0,2,1,1]],[[2,2,1,0],[2,1,3,0],[2,3,3,1],[0,2,1,1]],[[1,2,1,0],[2,1,3,0],[2,3,3,1],[0,1,2,2]],[[1,2,1,0],[2,1,3,0],[2,3,3,1],[0,1,3,1]],[[1,2,1,0],[2,1,3,0],[2,3,4,1],[0,1,2,1]],[[1,2,1,0],[2,1,3,0],[2,4,3,1],[0,1,2,1]],[[1,2,1,0],[2,1,3,0],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[0,2,3,1],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[0,2,3,1],[2,3,1,2],[0,2,2,2]],[[1,1,1,1],[0,2,3,1],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[0,2,3,1],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,1,2],[2,1,2,1]],[[1,1,1,1],[0,2,3,1],[2,4,2,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,2,0],[2,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,2,0],[1,3,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,2,0],[1,2,3,1]],[[1,1,1,1],[0,2,3,1],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[0,2,3,1],[2,3,2,1],[0,2,2,2]],[[1,1,1,1],[0,2,3,1],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[0,2,3,1],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,2,1],[2,1,2,1]],[[1,1,1,1],[0,2,3,1],[2,4,2,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,2,1],[2,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,2,1],[1,3,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[0,2,3,1],[2,3,2,2],[0,1,2,2]],[[1,1,1,1],[0,2,3,1],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,2,2],[0,2,3,0]],[[1,1,1,1],[0,2,3,1],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[0,2,3,1],[2,3,2,2],[1,0,2,2]],[[1,1,1,1],[0,2,3,1],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[0,2,3,1],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[3,1,3,0],[2,3,3,1],[0,1,2,1]],[[1,3,1,0],[2,1,3,0],[2,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,1,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[0,2,3,1],[2,4,3,0],[0,2,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,0],[0,3,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,0],[0,2,3,1]],[[1,1,1,1],[0,2,3,1],[2,4,3,0],[1,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,0],[2,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,0],[1,3,1,1]],[[1,1,1,1],[0,2,4,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[0,2,3,1],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[0,2,3,1],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,1],[0,1,2,2]],[[1,1,1,1],[0,2,4,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[0,2,3,1],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,1],[0,3,1,1]],[[1,1,1,1],[0,2,4,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,2,3,1],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,2,3,1],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,1],[1,0,2,2]],[[1,1,1,1],[0,2,4,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[0,2,3,1],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[0,2,3,1],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,1],[2,1,1,1]],[[1,1,1,1],[0,2,3,1],[2,4,3,1],[1,2,1,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,1],[2,2,1,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,1,3,0],[2,3,3,0],[2,1,2,1]],[[1,2,1,0],[2,1,3,0],[2,4,3,0],[1,1,2,1]],[[1,2,1,0],[2,1,3,0],[3,3,3,0],[1,1,2,1]],[[1,2,1,0],[3,1,3,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,1],[0,2,4,1],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[0,0,2,2]],[[1,1,1,1],[0,2,4,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,2,3,1],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,2,3,1],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[0,1,1,2]],[[1,1,1,1],[0,2,4,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,2,3,1],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,2,3,1],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[0,1,3,0]],[[1,1,1,1],[0,2,4,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,2,3,1],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,2,3,1],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[0,2,3,1],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[0,2,0,2]],[[1,1,1,1],[0,2,4,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,2,3,1],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,2,3,1],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[0,2,3,1],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,3,1,0],[2,1,3,0],[2,3,3,0],[1,1,2,1]],[[2,2,1,0],[2,1,3,0],[2,3,3,0],[1,1,2,1]],[[1,2,1,0],[2,1,3,0],[2,3,3,0],[0,2,3,1]],[[1,2,1,0],[2,1,3,0],[2,3,3,0],[0,3,2,1]],[[1,2,1,0],[2,1,3,0],[2,4,3,0],[0,2,2,1]],[[1,2,1,0],[2,1,3,0],[3,3,3,0],[0,2,2,1]],[[1,2,1,0],[3,1,3,0],[2,3,3,0],[0,2,2,1]],[[1,3,1,0],[2,1,3,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,1],[0,2,4,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,2,3,1],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,2,3,1],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[1,0,1,2]],[[1,1,1,1],[0,2,4,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,2,3,1],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,2,3,1],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[1,0,3,0]],[[1,1,1,1],[0,2,4,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,2,3,1],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,2,3,1],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[0,2,3,1],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[1,1,0,2]],[[1,1,1,1],[0,2,4,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,2,3,1],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,2,3,1],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[0,2,3,1],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[2,1,1,0]],[[2,2,1,0],[2,1,3,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,1],[0,2,3,1],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[0,2,3,1],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[0,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,1,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,1,3,0],[2,4,2,2],[1,1,2,0]],[[1,2,1,0],[2,1,3,0],[3,3,2,2],[1,1,2,0]],[[1,2,1,0],[3,1,3,0],[2,3,2,2],[1,1,2,0]],[[1,3,1,0],[2,1,3,0],[2,3,2,2],[1,1,2,0]],[[2,2,1,0],[2,1,3,0],[2,3,2,2],[1,1,2,0]],[[1,2,1,0],[2,1,3,0],[2,3,2,2],[0,2,3,0]],[[1,2,1,0],[2,1,3,0],[2,3,2,2],[0,3,2,0]],[[1,2,1,0],[2,1,3,0],[2,4,2,2],[0,2,2,0]],[[1,2,1,0],[2,1,3,0],[3,3,2,2],[0,2,2,0]],[[1,1,1,2],[0,2,3,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,4,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,3],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[0,3,1,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[0,3,1,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,2],[0,3,1,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,2],[0,3,1,2],[1,2,2,2]],[[1,1,1,2],[0,2,3,2],[0,3,2,2],[1,2,1,1]],[[1,1,1,1],[0,2,4,2],[0,3,2,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,3],[0,3,2,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[0,3,2,3],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[0,3,2,2],[1,2,1,2]],[[1,1,1,2],[0,2,3,2],[0,3,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,4,2],[0,3,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,3],[0,3,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[0,3,2,3],[1,2,2,0]],[[1,1,1,2],[0,2,3,2],[0,3,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,4,2],[0,3,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,3],[0,3,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[0,3,4,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[0,3,3,0],[1,3,2,1]],[[1,1,1,1],[0,2,3,2],[0,3,3,0],[1,2,3,1]],[[1,1,1,1],[0,2,3,2],[0,3,3,0],[1,2,2,2]],[[1,1,1,2],[0,2,3,2],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,4,2],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,3],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[0,3,4,1],[1,2,1,1]],[[1,1,1,2],[0,2,3,2],[0,3,3,1],[1,2,2,0]],[[1,1,1,1],[0,2,4,2],[0,3,3,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,3],[0,3,3,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[0,3,4,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[0,3,3,1],[1,3,2,0]],[[1,1,1,1],[0,2,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,1,0],[3,1,3,0],[2,3,2,2],[0,2,2,0]],[[1,3,1,0],[2,1,3,0],[2,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,1,3,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,2],[0,2,3,2],[1,0,3,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,3],[1,0,3,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,0,3,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,0,3,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,2],[1,0,3,2],[1,2,2,2]],[[1,1,1,2],[0,2,3,2],[1,2,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,4,2],[1,2,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,3],[1,2,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,2,1,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,2,1,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,2,1,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,2],[1,2,1,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,2],[1,2,1,2],[1,2,2,2]],[[1,1,1,2],[0,2,3,2],[1,2,2,2],[1,2,1,1]],[[1,1,1,1],[0,2,4,2],[1,2,2,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,3],[1,2,2,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[1,2,2,3],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[1,2,2,2],[1,2,1,2]],[[1,1,1,2],[0,2,3,2],[1,2,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,4,2],[1,2,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,3],[1,2,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[1,2,2,3],[1,2,2,0]],[[1,1,1,2],[0,2,3,2],[1,2,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,4,2],[1,2,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,3],[1,2,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,2,4,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,2,3,0],[2,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,2,3,0],[1,3,2,1]],[[1,1,1,1],[0,2,3,2],[1,2,3,0],[1,2,3,1]],[[1,1,1,1],[0,2,3,2],[1,2,3,0],[1,2,2,2]],[[1,1,1,2],[0,2,3,2],[1,2,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,4,2],[1,2,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,3],[1,2,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[1,2,4,1],[1,2,1,1]],[[1,1,1,2],[0,2,3,2],[1,2,3,1],[1,2,2,0]],[[1,1,1,1],[0,2,4,2],[1,2,3,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,3],[1,2,3,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[1,2,4,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[1,2,3,1],[2,2,2,0]],[[1,1,1,1],[0,2,3,2],[1,2,3,1],[1,3,2,0]],[[1,1,1,1],[0,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,1,0],[2,1,3,0],[2,3,2,1],[2,1,2,1]],[[1,2,1,0],[2,1,3,0],[2,4,2,1],[1,1,2,1]],[[1,2,1,0],[2,1,3,0],[3,3,2,1],[1,1,2,1]],[[1,2,1,0],[3,1,3,0],[2,3,2,1],[1,1,2,1]],[[1,3,1,0],[2,1,3,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,2],[0,2,3,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[0,2,4,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,3],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,4,0,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,0,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,0,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,0,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,0,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,2],[1,3,0,2],[1,2,2,2]],[[1,1,1,2],[0,2,3,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[0,2,4,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[0,2,3,3],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,1,3],[1,1,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,1,2],[1,1,3,1]],[[1,1,1,1],[0,2,3,2],[1,3,1,2],[1,1,2,2]],[[1,1,1,1],[0,2,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,2,0],[2,2,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,2,0],[1,3,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,2,0],[1,2,3,1]],[[1,1,1,1],[0,2,3,2],[1,3,2,0],[1,2,2,2]],[[1,1,1,1],[0,2,3,2],[1,4,2,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[1,3,2,1],[2,2,2,0]],[[1,1,1,1],[0,2,3,2],[1,3,2,1],[1,3,2,0]],[[1,1,1,1],[0,2,3,2],[1,3,2,1],[1,2,3,0]],[[1,1,1,2],[0,2,3,2],[1,3,2,2],[1,0,2,1]],[[1,1,1,1],[0,2,4,2],[1,3,2,2],[1,0,2,1]],[[1,1,1,1],[0,2,3,3],[1,3,2,2],[1,0,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,2,3],[1,0,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,2,2],[1,0,2,2]],[[1,1,1,2],[0,2,3,2],[1,3,2,2],[1,1,1,1]],[[1,1,1,1],[0,2,4,2],[1,3,2,2],[1,1,1,1]],[[1,1,1,1],[0,2,3,3],[1,3,2,2],[1,1,1,1]],[[1,1,1,1],[0,2,3,2],[1,3,2,3],[1,1,1,1]],[[1,1,1,1],[0,2,3,2],[1,3,2,2],[1,1,1,2]],[[1,1,1,2],[0,2,3,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[0,2,4,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[0,2,3,3],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[0,2,3,2],[1,3,2,3],[1,1,2,0]],[[1,1,1,2],[0,2,3,2],[1,3,2,2],[1,2,0,1]],[[1,1,1,1],[0,2,4,2],[1,3,2,2],[1,2,0,1]],[[1,1,1,1],[0,2,3,3],[1,3,2,2],[1,2,0,1]],[[1,1,1,1],[0,2,3,2],[1,3,2,3],[1,2,0,1]],[[1,1,1,1],[0,2,3,2],[1,3,2,2],[1,2,0,2]],[[1,1,1,2],[0,2,3,2],[1,3,2,2],[1,2,1,0]],[[1,1,1,1],[0,2,4,2],[1,3,2,2],[1,2,1,0]],[[1,1,1,1],[0,2,3,3],[1,3,2,2],[1,2,1,0]],[[1,1,1,1],[0,2,3,2],[1,3,2,3],[1,2,1,0]],[[2,2,1,0],[2,1,3,0],[2,3,2,1],[1,1,2,1]],[[1,2,1,0],[2,1,3,0],[2,3,2,1],[0,2,2,2]],[[1,2,1,0],[2,1,3,0],[2,3,2,1],[0,2,3,1]],[[1,2,1,0],[2,1,3,0],[2,3,2,1],[0,3,2,1]],[[1,2,1,0],[2,1,3,0],[2,4,2,1],[0,2,2,1]],[[1,2,1,0],[2,1,3,0],[3,3,2,1],[0,2,2,1]],[[1,2,1,0],[3,1,3,0],[2,3,2,1],[0,2,2,1]],[[1,3,1,0],[2,1,3,0],[2,3,2,1],[0,2,2,1]],[[2,2,1,0],[2,1,3,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,2],[0,2,3,2],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[0,2,4,2],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[0,2,3,3],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[0,2,3,2],[1,4,3,0],[1,1,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,4,0],[1,1,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,3,0],[1,1,3,1]],[[1,1,1,1],[0,2,3,2],[1,3,3,0],[1,1,2,2]],[[1,1,1,2],[0,2,3,2],[1,3,3,0],[1,2,1,1]],[[1,1,1,1],[0,2,4,2],[1,3,3,0],[1,2,1,1]],[[1,1,1,1],[0,2,3,3],[1,3,3,0],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[1,4,3,0],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[1,3,4,0],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[1,3,3,0],[2,2,1,1]],[[1,1,1,1],[0,2,3,2],[1,3,3,0],[1,3,1,1]],[[1,1,1,2],[0,2,3,2],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,2,4,2],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,2,3,3],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,2,3,2],[1,3,4,1],[1,0,2,1]],[[1,1,1,2],[0,2,3,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[0,2,4,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[0,2,3,3],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[0,2,3,2],[1,4,3,1],[1,1,1,1]],[[1,1,1,1],[0,2,3,2],[1,3,4,1],[1,1,1,1]],[[1,1,1,2],[0,2,3,2],[1,3,3,1],[1,1,2,0]],[[1,1,1,1],[0,2,4,2],[1,3,3,1],[1,1,2,0]],[[1,1,1,1],[0,2,3,3],[1,3,3,1],[1,1,2,0]],[[1,1,1,1],[0,2,3,2],[1,4,3,1],[1,1,2,0]],[[1,1,1,1],[0,2,3,2],[1,3,4,1],[1,1,2,0]],[[1,1,1,1],[0,2,3,2],[1,3,3,1],[1,1,3,0]],[[1,1,1,2],[0,2,3,2],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[0,2,4,2],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[0,2,3,3],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[0,2,3,2],[1,4,3,1],[1,2,0,1]],[[1,1,1,1],[0,2,3,2],[1,3,4,1],[1,2,0,1]],[[1,1,1,1],[0,2,3,2],[1,3,3,1],[2,2,0,1]],[[1,1,1,1],[0,2,3,2],[1,3,3,1],[1,3,0,1]],[[1,1,1,2],[0,2,3,2],[1,3,3,1],[1,2,1,0]],[[1,1,1,1],[0,2,4,2],[1,3,3,1],[1,2,1,0]],[[1,1,1,1],[0,2,3,3],[1,3,3,1],[1,2,1,0]],[[1,1,1,1],[0,2,3,2],[1,4,3,1],[1,2,1,0]],[[1,1,1,1],[0,2,3,2],[1,3,4,1],[1,2,1,0]],[[1,1,1,1],[0,2,3,2],[1,3,3,1],[2,2,1,0]],[[1,1,1,1],[0,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,1,3,0],[2,3,2,0],[1,3,2,1]],[[1,2,1,0],[2,1,3,0],[2,3,2,0],[2,2,2,1]],[[1,2,1,0],[2,1,3,0],[3,3,2,0],[1,2,2,1]],[[1,2,1,0],[3,1,3,0],[2,3,2,0],[1,2,2,1]],[[2,2,1,0],[2,1,3,0],[2,3,2,0],[1,2,2,1]],[[1,1,1,2],[0,2,3,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,2,4,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,2,3,3],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,2,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,1,0],[2,1,3,0],[2,3,1,2],[1,3,2,0]],[[1,2,1,0],[2,1,3,0],[2,3,1,2],[2,2,2,0]],[[1,2,1,0],[2,1,3,0],[3,3,1,2],[1,2,2,0]],[[1,2,1,0],[3,1,3,0],[2,3,1,2],[1,2,2,0]],[[2,2,1,0],[2,1,3,0],[2,3,1,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,0],[2,3,1,1],[1,3,2,1]],[[1,2,1,0],[2,1,3,0],[2,3,1,1],[2,2,2,1]],[[1,2,1,0],[2,1,3,0],[3,3,1,1],[1,2,2,1]],[[1,2,1,0],[3,1,3,0],[2,3,1,1],[1,2,2,1]],[[2,2,1,0],[2,1,3,0],[2,3,1,1],[1,2,2,1]],[[1,2,1,0],[2,1,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,1,3,0],[2,2,3,2],[2,2,1,0]],[[1,2,1,0],[2,1,3,0],[3,2,3,2],[1,2,1,0]],[[1,2,1,0],[3,1,3,0],[2,2,3,2],[1,2,1,0]],[[1,3,1,0],[2,1,3,0],[2,2,3,2],[1,2,1,0]],[[2,2,1,0],[2,1,3,0],[2,2,3,2],[1,2,1,0]],[[1,2,1,0],[2,1,3,0],[2,2,3,2],[1,3,0,1]],[[1,2,1,0],[2,1,3,0],[2,2,3,2],[2,2,0,1]],[[1,2,1,0],[2,1,3,0],[3,2,3,2],[1,2,0,1]],[[1,2,1,0],[3,1,3,0],[2,2,3,2],[1,2,0,1]],[[1,3,1,0],[2,1,3,0],[2,2,3,2],[1,2,0,1]],[[1,1,1,2],[0,2,3,2],[2,0,3,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,3],[2,0,3,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,0,3,3],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,0,3,2],[0,2,3,1]],[[1,1,1,1],[0,2,3,2],[2,0,3,2],[0,2,2,2]],[[1,1,1,2],[0,2,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,4,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,3],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[3,1,1,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,1,1,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,1,1,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,1,1,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,2],[2,1,1,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,2],[2,1,1,2],[1,2,2,2]],[[1,1,1,2],[0,2,3,2],[2,1,2,2],[1,2,1,1]],[[1,1,1,1],[0,2,4,2],[2,1,2,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,3],[2,1,2,2],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[2,1,2,3],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[2,1,2,2],[1,2,1,2]],[[1,1,1,2],[0,2,3,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,4,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,3],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[2,1,2,3],[1,2,2,0]],[[1,1,1,2],[0,2,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,4,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,3],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[3,1,3,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,1,4,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,1,3,0],[2,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,1,3,0],[1,3,2,1]],[[1,1,1,1],[0,2,3,2],[2,1,3,0],[1,2,3,1]],[[1,1,1,1],[0,2,3,2],[2,1,3,0],[1,2,2,2]],[[1,1,1,2],[0,2,3,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,4,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,3],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[2,1,4,1],[1,2,1,1]],[[1,1,1,2],[0,2,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[0,2,4,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,3],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[3,1,3,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[2,1,4,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[2,1,3,1],[2,2,2,0]],[[1,1,1,1],[0,2,3,2],[2,1,3,1],[1,3,2,0]],[[1,1,1,1],[0,2,3,2],[2,1,3,1],[1,2,3,0]],[[2,2,1,0],[2,1,3,0],[2,2,3,2],[1,2,0,1]],[[1,2,1,0],[2,1,3,0],[2,2,3,2],[0,2,3,0]],[[1,2,1,0],[2,1,3,0],[2,2,3,2],[0,3,2,0]],[[1,2,1,0],[2,1,3,0],[2,2,4,2],[0,2,2,0]],[[1,1,1,2],[0,2,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,2,4,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,3],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[3,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,0,3],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,0,2],[2,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,0,2],[1,3,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,0,2],[1,2,3,1]],[[1,1,1,1],[0,2,3,2],[2,2,0,2],[1,2,2,2]],[[1,1,1,2],[0,2,3,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[0,2,4,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,3],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,1,3],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,1,2],[0,3,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,1,2],[0,2,3,1]],[[1,1,1,1],[0,2,3,2],[2,2,1,2],[0,2,2,2]],[[1,1,1,1],[0,2,3,2],[3,2,2,0],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,2,0],[2,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,2,0],[1,3,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,2,0],[1,2,3,1]],[[1,1,1,1],[0,2,3,2],[2,2,2,0],[1,2,2,2]],[[1,1,1,1],[0,2,3,2],[3,2,2,1],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[2,2,2,1],[2,2,2,0]],[[1,1,1,1],[0,2,3,2],[2,2,2,1],[1,3,2,0]],[[1,1,1,1],[0,2,3,2],[2,2,2,1],[1,2,3,0]],[[1,1,1,2],[0,2,3,2],[2,2,2,2],[0,2,1,1]],[[1,1,1,1],[0,2,4,2],[2,2,2,2],[0,2,1,1]],[[1,1,1,1],[0,2,3,3],[2,2,2,2],[0,2,1,1]],[[1,1,1,1],[0,2,3,2],[2,2,2,3],[0,2,1,1]],[[1,1,1,1],[0,2,3,2],[2,2,2,2],[0,2,1,2]],[[1,1,1,2],[0,2,3,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[0,2,4,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[0,2,3,3],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[0,2,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,1,0],[2,1,3,0],[2,2,3,1],[1,3,1,1]],[[1,2,1,0],[2,1,3,0],[2,2,3,1],[2,2,1,1]],[[1,1,1,2],[0,2,3,2],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[0,2,4,2],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[0,2,3,3],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,4,0],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,3,0],[0,3,2,1]],[[1,1,1,1],[0,2,3,2],[2,2,3,0],[0,2,3,1]],[[1,1,1,1],[0,2,3,2],[2,2,3,0],[0,2,2,2]],[[1,1,1,1],[0,2,3,2],[3,2,3,0],[1,2,1,1]],[[1,1,1,1],[0,2,3,2],[2,2,3,0],[2,2,1,1]],[[1,1,1,1],[0,2,3,2],[2,2,3,0],[1,3,1,1]],[[1,1,1,2],[0,2,3,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[0,2,4,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[0,2,3,3],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[0,2,3,2],[2,2,4,1],[0,2,1,1]],[[1,1,1,2],[0,2,3,2],[2,2,3,1],[0,2,2,0]],[[1,1,1,1],[0,2,4,2],[2,2,3,1],[0,2,2,0]],[[1,1,1,1],[0,2,3,3],[2,2,3,1],[0,2,2,0]],[[1,1,1,1],[0,2,3,2],[2,2,4,1],[0,2,2,0]],[[1,1,1,1],[0,2,3,2],[2,2,3,1],[0,3,2,0]],[[1,1,1,1],[0,2,3,2],[2,2,3,1],[0,2,3,0]],[[1,1,1,1],[0,2,3,2],[3,2,3,1],[1,2,0,1]],[[1,1,1,1],[0,2,3,2],[2,2,3,1],[2,2,0,1]],[[1,1,1,1],[0,2,3,2],[2,2,3,1],[1,3,0,1]],[[1,1,1,1],[0,2,3,2],[3,2,3,1],[1,2,1,0]],[[1,1,1,1],[0,2,3,2],[2,2,3,1],[2,2,1,0]],[[1,1,1,1],[0,2,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[2,1,3,0],[3,2,3,1],[1,2,1,1]],[[1,2,1,0],[3,1,3,0],[2,2,3,1],[1,2,1,1]],[[1,3,1,0],[2,1,3,0],[2,2,3,1],[1,2,1,1]],[[2,2,1,0],[2,1,3,0],[2,2,3,1],[1,2,1,1]],[[1,2,1,0],[2,1,3,0],[2,2,3,1],[0,2,2,2]],[[1,2,1,0],[2,1,3,0],[2,2,3,1],[0,2,3,1]],[[1,2,1,0],[2,1,3,0],[2,2,3,1],[0,3,2,1]],[[1,2,1,0],[2,1,3,0],[2,2,4,1],[0,2,2,1]],[[1,2,1,0],[2,1,3,0],[2,2,3,0],[1,2,3,1]],[[1,2,1,0],[2,1,3,0],[2,2,3,0],[1,3,2,1]],[[1,2,1,0],[2,1,3,0],[2,2,3,0],[2,2,2,1]],[[1,2,1,0],[2,1,3,0],[3,2,3,0],[1,2,2,1]],[[1,2,1,0],[3,1,3,0],[2,2,3,0],[1,2,2,1]],[[1,3,1,0],[2,1,3,0],[2,2,3,0],[1,2,2,1]],[[2,2,1,0],[2,1,3,0],[2,2,3,0],[1,2,2,1]],[[1,2,1,0],[2,1,3,0],[2,2,2,2],[1,2,3,0]],[[1,2,1,0],[2,1,3,0],[2,2,2,2],[1,3,2,0]],[[1,2,1,0],[2,1,3,0],[2,2,2,2],[2,2,2,0]],[[1,2,1,0],[2,1,3,0],[3,2,2,2],[1,2,2,0]],[[1,2,1,0],[3,1,3,0],[2,2,2,2],[1,2,2,0]],[[1,3,1,0],[2,1,3,0],[2,2,2,2],[1,2,2,0]],[[2,2,1,0],[2,1,3,0],[2,2,2,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,0],[2,2,2,1],[1,2,2,2]],[[1,2,1,0],[2,1,3,0],[2,2,2,1],[1,2,3,1]],[[1,2,1,0],[2,1,3,0],[2,2,2,1],[1,3,2,1]],[[1,2,1,0],[2,1,3,0],[2,2,2,1],[2,2,2,1]],[[1,2,1,0],[2,1,3,0],[3,2,2,1],[1,2,2,1]],[[1,2,1,0],[3,1,3,0],[2,2,2,1],[1,2,2,1]],[[1,3,1,0],[2,1,3,0],[2,2,2,1],[1,2,2,1]],[[2,2,1,0],[2,1,3,0],[2,2,2,1],[1,2,2,1]],[[1,1,1,2],[0,2,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[0,2,4,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,3],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[3,3,0,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,4,0,2],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,0,3],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,0,2],[0,3,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,0,2],[0,2,3,1]],[[1,1,1,1],[0,2,3,2],[2,3,0,2],[0,2,2,2]],[[1,1,1,1],[0,2,3,2],[3,3,0,2],[1,1,2,1]],[[1,1,1,1],[0,2,3,2],[2,4,0,2],[1,1,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,0,2],[2,1,2,1]],[[1,1,1,2],[0,2,3,2],[2,3,1,2],[0,1,2,1]],[[1,1,1,1],[0,2,4,2],[2,3,1,2],[0,1,2,1]],[[1,1,1,1],[0,2,3,3],[2,3,1,2],[0,1,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,1,3],[0,1,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,1,2],[0,1,3,1]],[[1,1,1,1],[0,2,3,2],[2,3,1,2],[0,1,2,2]],[[1,1,1,2],[0,2,3,2],[2,3,1,2],[1,0,2,1]],[[1,1,1,1],[0,2,4,2],[2,3,1,2],[1,0,2,1]],[[1,1,1,1],[0,2,3,3],[2,3,1,2],[1,0,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,1,3],[1,0,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,1,2],[1,0,3,1]],[[1,1,1,1],[0,2,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,1,0],[2,1,3,0],[2,1,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,3,0],[2,1,3,2],[1,3,2,0]],[[1,2,1,0],[2,1,3,0],[2,1,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,3,0],[2,1,4,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,0],[3,1,3,2],[1,2,2,0]],[[1,2,1,0],[3,1,3,0],[2,1,3,2],[1,2,2,0]],[[1,3,1,0],[2,1,3,0],[2,1,3,2],[1,2,2,0]],[[2,2,1,0],[2,1,3,0],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,2,3,2],[3,3,2,0],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,4,2,0],[0,2,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,0],[0,3,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,0],[0,2,3,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,0],[0,2,2,2]],[[1,1,1,1],[0,2,3,2],[3,3,2,0],[1,1,2,1]],[[1,1,1,1],[0,2,3,2],[2,4,2,0],[1,1,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,0],[2,1,2,1]],[[1,1,1,1],[0,2,3,2],[3,3,2,1],[0,2,2,0]],[[1,1,1,1],[0,2,3,2],[2,4,2,1],[0,2,2,0]],[[1,1,1,1],[0,2,3,2],[2,3,2,1],[0,3,2,0]],[[1,1,1,1],[0,2,3,2],[2,3,2,1],[0,2,3,0]],[[1,1,1,1],[0,2,3,2],[3,3,2,1],[1,1,2,0]],[[1,1,1,1],[0,2,3,2],[2,4,2,1],[1,1,2,0]],[[1,1,1,1],[0,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[2,1,3,0],[2,1,3,1],[1,2,2,2]],[[1,2,1,0],[2,1,3,0],[2,1,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,3,0],[2,1,3,1],[1,3,2,1]],[[1,2,1,0],[2,1,3,0],[2,1,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,3,0],[2,1,4,1],[1,2,2,1]],[[1,2,1,0],[2,1,3,0],[3,1,3,1],[1,2,2,1]],[[1,1,1,2],[0,2,3,2],[2,3,2,2],[0,0,2,1]],[[1,1,1,1],[0,2,4,2],[2,3,2,2],[0,0,2,1]],[[1,1,1,1],[0,2,3,3],[2,3,2,2],[0,0,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,3],[0,0,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,2],[0,0,2,2]],[[1,1,1,2],[0,2,3,2],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[0,2,4,2],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[0,2,3,3],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,3],[0,1,1,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,2],[0,1,1,2]],[[1,1,1,2],[0,2,3,2],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[0,2,4,2],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[0,2,3,3],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[0,2,3,2],[2,3,2,3],[0,1,2,0]],[[1,1,1,2],[0,2,3,2],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[0,2,4,2],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[0,2,3,3],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,3],[0,2,0,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,2],[0,2,0,2]],[[1,1,1,2],[0,2,3,2],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[0,2,4,2],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[0,2,3,3],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[0,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,0],[3,1,3,0],[2,1,3,1],[1,2,2,1]],[[1,3,1,0],[2,1,3,0],[2,1,3,1],[1,2,2,1]],[[2,2,1,0],[2,1,3,0],[2,1,3,1],[1,2,2,1]],[[1,2,1,0],[2,1,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,1,0],[2,1,3,0],[2,0,3,2],[1,2,3,1]],[[1,2,1,0],[2,1,3,0],[2,0,3,2],[1,3,2,1]],[[1,2,1,0],[2,1,3,0],[2,0,3,2],[2,2,2,1]],[[1,2,1,0],[2,1,3,0],[2,0,4,2],[1,2,2,1]],[[1,2,1,0],[2,1,3,0],[3,0,3,2],[1,2,2,1]],[[1,1,1,2],[0,2,3,2],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[0,2,4,2],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[0,2,3,3],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,3],[1,0,1,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,2],[1,0,1,2]],[[1,1,1,2],[0,2,3,2],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[0,2,4,2],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[0,2,3,3],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[0,2,3,2],[2,3,2,3],[1,0,2,0]],[[1,1,1,2],[0,2,3,2],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[0,2,4,2],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[0,2,3,3],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,3],[1,1,0,1]],[[1,1,1,1],[0,2,3,2],[2,3,2,2],[1,1,0,2]],[[1,1,1,2],[0,2,3,2],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[0,2,4,2],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[0,2,3,3],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[0,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,0],[3,1,3,0],[2,0,3,2],[1,2,2,1]],[[1,3,1,0],[2,1,3,0],[2,0,3,2],[1,2,2,1]],[[2,2,1,0],[2,1,3,0],[2,0,3,2],[1,2,2,1]],[[1,2,1,0],[2,1,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,1,3,0],[1,3,3,2],[2,2,1,0]],[[1,2,1,0],[2,1,3,0],[1,3,4,2],[1,2,1,0]],[[1,2,1,0],[2,1,3,0],[1,4,3,2],[1,2,1,0]],[[1,2,1,0],[2,1,3,0],[1,3,3,2],[1,3,0,1]],[[1,2,1,0],[2,1,3,0],[1,3,3,2],[2,2,0,1]],[[1,2,1,0],[2,1,3,0],[1,3,4,2],[1,2,0,1]],[[1,2,1,0],[2,1,3,0],[1,4,3,2],[1,2,0,1]],[[1,2,1,0],[2,1,3,0],[1,3,3,2],[1,1,3,0]],[[1,2,1,0],[2,1,3,0],[1,3,4,2],[1,1,2,0]],[[1,2,1,0],[2,1,3,0],[1,4,3,2],[1,1,2,0]],[[1,1,1,2],[0,2,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[0,2,4,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[0,2,3,3],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[0,2,3,2],[3,3,3,0],[0,1,2,1]],[[1,1,1,1],[0,2,3,2],[2,4,3,0],[0,1,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,4,0],[0,1,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,0],[0,1,3,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,0],[0,1,2,2]],[[1,1,1,2],[0,2,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[0,2,4,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[0,2,3,3],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[0,2,3,2],[3,3,3,0],[0,2,1,1]],[[1,1,1,1],[0,2,3,2],[2,4,3,0],[0,2,1,1]],[[1,1,1,1],[0,2,3,2],[2,3,4,0],[0,2,1,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,0],[0,3,1,1]],[[1,1,1,2],[0,2,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[0,2,4,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[0,2,3,3],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[0,2,3,2],[3,3,3,0],[1,0,2,1]],[[1,1,1,1],[0,2,3,2],[2,4,3,0],[1,0,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,4,0],[1,0,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,0],[2,0,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,0],[1,0,3,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,0],[1,0,2,2]],[[1,1,1,2],[0,2,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[0,2,4,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[0,2,3,3],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[0,2,3,2],[3,3,3,0],[1,1,1,1]],[[1,1,1,1],[0,2,3,2],[2,4,3,0],[1,1,1,1]],[[1,1,1,1],[0,2,3,2],[2,3,4,0],[1,1,1,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,0],[2,1,1,1]],[[1,1,1,1],[0,2,3,2],[3,3,3,0],[1,2,0,1]],[[1,1,1,1],[0,2,3,2],[2,4,3,0],[1,2,0,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[2,1,3,0],[1,3,3,1],[1,3,1,1]],[[1,2,1,0],[2,1,3,0],[1,3,3,1],[2,2,1,1]],[[1,2,1,0],[2,1,3,0],[1,3,4,1],[1,2,1,1]],[[1,2,1,0],[2,1,3,0],[1,4,3,1],[1,2,1,1]],[[1,2,1,0],[2,1,3,0],[1,3,3,1],[1,1,2,2]],[[1,2,1,0],[2,1,3,0],[1,3,3,1],[1,1,3,1]],[[1,2,1,0],[2,1,3,0],[1,3,4,1],[1,1,2,1]],[[1,2,1,0],[2,1,3,0],[1,4,3,1],[1,1,2,1]],[[1,2,1,0],[2,1,3,0],[1,3,3,0],[1,2,3,1]],[[1,2,1,0],[2,1,3,0],[1,3,3,0],[1,3,2,1]],[[1,1,1,2],[0,2,3,2],[2,3,3,1],[0,0,2,1]],[[1,1,1,1],[0,2,4,2],[2,3,3,1],[0,0,2,1]],[[1,1,1,1],[0,2,3,3],[2,3,3,1],[0,0,2,1]],[[1,1,1,1],[0,2,3,2],[2,3,4,1],[0,0,2,1]],[[1,1,1,2],[0,2,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[0,2,4,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[0,2,3,3],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[0,2,3,2],[3,3,3,1],[0,1,1,1]],[[1,1,1,1],[0,2,3,2],[2,4,3,1],[0,1,1,1]],[[1,1,1,1],[0,2,3,2],[2,3,4,1],[0,1,1,1]],[[1,1,1,2],[0,2,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[0,2,4,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[0,2,3,3],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[0,2,3,2],[3,3,3,1],[0,1,2,0]],[[1,1,1,1],[0,2,3,2],[2,4,3,1],[0,1,2,0]],[[1,1,1,1],[0,2,3,2],[2,3,4,1],[0,1,2,0]],[[1,1,1,1],[0,2,3,2],[2,3,3,1],[0,1,3,0]],[[1,1,1,2],[0,2,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[0,2,4,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[0,2,3,3],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[0,2,3,2],[3,3,3,1],[0,2,0,1]],[[1,1,1,1],[0,2,3,2],[2,4,3,1],[0,2,0,1]],[[1,1,1,1],[0,2,3,2],[2,3,4,1],[0,2,0,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,1],[0,3,0,1]],[[1,1,1,2],[0,2,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[0,2,4,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[0,2,3,3],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[0,2,3,2],[3,3,3,1],[0,2,1,0]],[[1,1,1,1],[0,2,3,2],[2,4,3,1],[0,2,1,0]],[[1,1,1,1],[0,2,3,2],[2,3,4,1],[0,2,1,0]],[[1,1,1,1],[0,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[2,1,3,0],[1,3,3,0],[2,2,2,1]],[[1,2,1,0],[2,1,3,0],[1,4,3,0],[1,2,2,1]],[[1,2,1,0],[2,1,3,0],[1,3,2,2],[1,2,3,0]],[[1,2,1,0],[2,1,3,0],[1,3,2,2],[1,3,2,0]],[[1,1,1,2],[0,2,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[0,2,4,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[0,2,3,3],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[0,2,3,2],[3,3,3,1],[1,0,1,1]],[[1,1,1,1],[0,2,3,2],[2,4,3,1],[1,0,1,1]],[[1,1,1,1],[0,2,3,2],[2,3,4,1],[1,0,1,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,1],[2,0,1,1]],[[1,1,1,2],[0,2,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[0,2,4,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[0,2,3,3],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[0,2,3,2],[3,3,3,1],[1,0,2,0]],[[1,1,1,1],[0,2,3,2],[2,4,3,1],[1,0,2,0]],[[1,1,1,1],[0,2,3,2],[2,3,4,1],[1,0,2,0]],[[1,1,1,1],[0,2,3,2],[2,3,3,1],[2,0,2,0]],[[1,1,1,1],[0,2,3,2],[2,3,3,1],[1,0,3,0]],[[1,1,1,2],[0,2,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[0,2,4,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[0,2,3,3],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[0,2,3,2],[3,3,3,1],[1,1,0,1]],[[1,1,1,1],[0,2,3,2],[2,4,3,1],[1,1,0,1]],[[1,1,1,1],[0,2,3,2],[2,3,4,1],[1,1,0,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,1],[2,1,0,1]],[[1,1,1,2],[0,2,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[0,2,4,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[0,2,3,3],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[0,2,3,2],[3,3,3,1],[1,1,1,0]],[[1,1,1,1],[0,2,3,2],[2,4,3,1],[1,1,1,0]],[[1,1,1,1],[0,2,3,2],[2,3,4,1],[1,1,1,0]],[[1,1,1,1],[0,2,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,0],[2,1,3,0],[1,3,2,2],[2,2,2,0]],[[1,2,1,0],[2,1,3,0],[1,4,2,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,0],[1,3,2,1],[1,2,2,2]],[[1,2,1,0],[2,1,3,0],[1,3,2,1],[1,2,3,1]],[[1,2,1,0],[2,1,3,0],[1,3,2,1],[1,3,2,1]],[[1,2,1,0],[2,1,3,0],[1,3,2,1],[2,2,2,1]],[[1,2,1,0],[2,1,3,0],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[0,2,3,2],[3,3,3,1],[1,2,0,0]],[[1,1,1,1],[0,2,3,2],[2,4,3,1],[1,2,0,0]],[[1,1,1,1],[0,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[2,1,3,0],[1,2,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,3,0],[1,2,3,2],[1,3,2,0]],[[1,2,1,0],[2,1,3,0],[1,2,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,3,0],[1,2,4,2],[1,2,2,0]],[[1,2,1,0],[2,1,3,0],[1,2,3,1],[1,2,2,2]],[[1,2,1,0],[2,1,3,0],[1,2,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,3,0],[1,2,3,1],[1,3,2,1]],[[1,2,1,0],[2,1,3,0],[1,2,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,3,0],[1,2,4,1],[1,2,2,1]],[[1,1,1,2],[0,2,3,2],[2,3,3,2],[0,1,0,1]],[[1,1,1,1],[0,2,4,2],[2,3,3,2],[0,1,0,1]],[[1,1,1,1],[0,2,3,3],[2,3,3,2],[0,1,0,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,1,1,2],[0,2,3,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[0,2,4,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[0,2,3,3],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[0,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,0],[2,1,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[2,1,2,2],[2,4,3,1],[1,2,0,0]],[[1,2,1,0],[2,1,2,2],[3,3,3,1],[1,2,0,0]],[[1,2,1,0],[3,1,2,2],[2,3,3,1],[1,2,0,0]],[[1,3,1,0],[2,1,2,2],[2,3,3,1],[1,2,0,0]],[[2,2,1,0],[2,1,2,2],[2,3,3,1],[1,2,0,0]],[[1,2,1,0],[2,1,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,0],[2,1,2,2],[2,3,4,1],[1,1,1,0]],[[1,2,1,0],[2,1,2,2],[2,4,3,1],[1,1,1,0]],[[1,2,1,0],[2,1,2,2],[3,3,3,1],[1,1,1,0]],[[1,2,1,0],[3,1,2,2],[2,3,3,1],[1,1,1,0]],[[1,3,1,0],[2,1,2,2],[2,3,3,1],[1,1,1,0]],[[2,2,1,0],[2,1,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,1,0],[2,1,2,2],[2,3,3,1],[2,1,0,1]],[[1,2,1,0],[2,1,2,2],[2,3,4,1],[1,1,0,1]],[[1,2,1,0],[2,1,2,2],[2,4,3,1],[1,1,0,1]],[[1,2,1,0],[2,1,2,2],[3,3,3,1],[1,1,0,1]],[[1,2,1,0],[3,1,2,2],[2,3,3,1],[1,1,0,1]],[[1,3,1,0],[2,1,2,2],[2,3,3,1],[1,1,0,1]],[[2,2,1,0],[2,1,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[0,3,0,1],[1,4,3,2],[1,2,2,1]],[[1,1,1,1],[0,3,0,1],[1,3,3,2],[2,2,2,1]],[[1,1,1,1],[0,3,0,1],[1,3,3,2],[1,3,2,1]],[[1,1,1,1],[0,3,0,1],[1,3,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,0,1],[1,3,3,2],[1,2,2,2]],[[1,1,1,1],[0,3,0,1],[2,4,3,2],[0,2,2,1]],[[1,1,1,1],[0,3,0,1],[2,3,3,2],[0,3,2,1]],[[1,1,1,1],[0,3,0,1],[2,3,3,2],[0,2,3,1]],[[1,1,1,1],[0,3,0,1],[2,3,3,2],[0,2,2,2]],[[1,1,1,1],[0,3,0,2],[0,3,3,3],[1,2,2,1]],[[1,1,1,1],[0,3,0,2],[0,3,3,2],[1,3,2,1]],[[1,1,1,1],[0,3,0,2],[0,3,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,0,2],[0,3,3,2],[1,2,2,2]],[[1,1,1,1],[0,3,0,2],[1,2,3,3],[1,2,2,1]],[[1,1,1,1],[0,3,0,2],[1,2,3,2],[2,2,2,1]],[[1,1,1,1],[0,3,0,2],[1,2,3,2],[1,3,2,1]],[[1,1,1,1],[0,3,0,2],[1,2,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,0,2],[1,2,3,2],[1,2,2,2]],[[1,1,1,1],[0,3,0,2],[1,4,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,0,2],[1,3,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,0,2],[1,3,2,2],[2,2,2,1]],[[1,1,1,1],[0,3,0,2],[1,3,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,0,2],[1,3,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,0,2],[1,3,2,2],[1,2,2,2]],[[1,1,1,1],[0,3,0,2],[1,4,3,1],[1,2,2,1]],[[1,1,1,1],[0,3,0,2],[1,3,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,0,2],[1,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,0,2],[1,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,0,2],[1,3,3,1],[1,2,2,2]],[[1,1,1,1],[0,3,0,2],[1,3,3,3],[1,1,2,1]],[[1,1,1,1],[0,3,0,2],[1,3,3,2],[1,1,3,1]],[[1,1,1,1],[0,3,0,2],[1,3,3,2],[1,1,2,2]],[[1,1,1,1],[0,3,0,2],[1,4,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,0,2],[1,3,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,0,2],[1,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,0,2],[1,3,3,2],[1,2,3,0]],[[1,1,1,1],[0,3,0,2],[2,1,3,3],[1,2,2,1]],[[1,1,1,1],[0,3,0,2],[2,1,3,2],[2,2,2,1]],[[1,1,1,1],[0,3,0,2],[2,1,3,2],[1,3,2,1]],[[1,1,1,1],[0,3,0,2],[2,1,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,0,2],[2,1,3,2],[1,2,2,2]],[[1,1,1,1],[0,3,0,2],[2,2,3,3],[0,2,2,1]],[[1,1,1,1],[0,3,0,2],[2,2,3,2],[0,3,2,1]],[[1,1,1,1],[0,3,0,2],[2,2,3,2],[0,2,3,1]],[[1,1,1,1],[0,3,0,2],[2,2,3,2],[0,2,2,2]],[[1,1,1,1],[0,3,0,2],[2,4,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,1,3],[1,2,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,1,2],[2,2,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,1,2],[1,3,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,1,2],[1,2,3,1]],[[1,1,1,1],[0,3,0,2],[2,3,1,2],[1,2,2,2]],[[1,1,1,1],[0,3,0,2],[2,4,2,1],[1,2,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,2,1],[2,2,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,2,1],[1,3,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,2,1],[1,2,3,1]],[[1,1,1,1],[0,3,0,2],[2,3,2,1],[1,2,2,2]],[[1,1,1,1],[0,3,0,2],[2,4,2,2],[0,2,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,2,3],[0,2,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,2,2],[0,3,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,2,2],[0,2,3,1]],[[1,1,1,1],[0,3,0,2],[2,3,2,2],[0,2,2,2]],[[1,1,1,1],[0,3,0,2],[2,4,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,0,2],[2,3,2,2],[2,2,2,0]],[[1,1,1,1],[0,3,0,2],[2,3,2,2],[1,3,2,0]],[[1,1,1,1],[0,3,0,2],[2,3,2,2],[1,2,3,0]],[[1,1,1,1],[0,3,0,2],[2,4,3,1],[0,2,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,1],[0,3,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,1],[0,2,3,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,1],[0,2,2,2]],[[1,1,1,1],[0,3,0,2],[2,4,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,1],[2,2,1,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,1],[1,3,1,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,3],[0,1,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,2],[0,1,3,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,2],[0,1,2,2]],[[1,1,1,1],[0,3,0,2],[2,4,3,2],[0,2,2,0]],[[1,1,1,1],[0,3,0,2],[2,3,3,2],[0,3,2,0]],[[1,1,1,1],[0,3,0,2],[2,3,3,2],[0,2,3,0]],[[1,1,1,1],[0,3,0,2],[2,3,3,3],[1,0,2,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,2],[1,0,3,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,2],[1,0,2,2]],[[1,1,1,1],[0,3,0,2],[2,4,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,2],[2,2,0,1]],[[1,1,1,1],[0,3,0,2],[2,3,3,2],[1,3,0,1]],[[1,1,1,1],[0,3,0,2],[2,4,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,0,2],[2,3,3,2],[2,2,1,0]],[[1,1,1,1],[0,3,0,2],[2,3,3,2],[1,3,1,0]],[[1,1,1,1],[0,3,1,0],[1,4,3,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,0],[1,3,3,2],[2,2,2,1]],[[1,1,1,1],[0,3,1,0],[1,3,3,2],[1,3,2,1]],[[1,1,1,1],[0,3,1,0],[1,3,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,1,0],[1,3,3,2],[1,2,2,2]],[[1,1,1,1],[0,3,1,0],[2,4,3,1],[1,2,2,1]],[[1,1,1,1],[0,3,1,0],[2,3,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,1,0],[2,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,1,0],[2,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,1,0],[2,3,3,1],[1,2,2,2]],[[1,1,1,1],[0,3,1,0],[2,4,3,2],[0,2,2,1]],[[1,1,1,1],[0,3,1,0],[2,3,3,2],[0,3,2,1]],[[1,1,1,1],[0,3,1,0],[2,3,3,2],[0,2,3,1]],[[1,1,1,1],[0,3,1,0],[2,3,3,2],[0,2,2,2]],[[1,1,1,1],[0,3,1,0],[2,4,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,0],[2,3,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,1,0],[2,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,1,0],[2,3,3,2],[1,2,3,0]],[[1,1,1,1],[0,3,1,1],[1,4,3,1],[1,2,2,1]],[[1,1,1,1],[0,3,1,1],[1,3,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,1,1],[1,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,1,1],[1,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,1,1],[1,3,3,1],[1,2,2,2]],[[1,1,1,1],[0,3,1,1],[1,4,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,1],[1,3,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,1,1],[1,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,1,1],[1,3,3,2],[1,2,3,0]],[[1,1,1,1],[0,3,1,1],[2,4,3,1],[0,2,2,1]],[[1,1,1,1],[0,3,1,1],[2,3,3,1],[0,3,2,1]],[[1,1,1,1],[0,3,1,1],[2,3,3,1],[0,2,3,1]],[[1,1,1,1],[0,3,1,1],[2,3,3,1],[0,2,2,2]],[[1,1,1,1],[0,3,1,1],[2,4,3,2],[0,2,2,0]],[[1,1,1,1],[0,3,1,1],[2,3,3,2],[0,3,2,0]],[[1,1,1,1],[0,3,1,1],[2,3,3,2],[0,2,3,0]],[[1,2,1,0],[2,1,2,2],[2,3,3,1],[1,0,3,0]],[[1,2,1,0],[2,1,2,2],[2,3,3,1],[2,0,2,0]],[[1,2,1,0],[2,1,2,2],[2,3,4,1],[1,0,2,0]],[[1,2,1,0],[2,1,2,2],[2,4,3,1],[1,0,2,0]],[[1,2,1,0],[2,1,2,2],[3,3,3,1],[1,0,2,0]],[[1,1,1,2],[0,3,1,2],[0,3,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,3],[0,3,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[0,3,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[0,3,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,1,2],[0,3,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,1,2],[0,3,2,2],[1,2,2,2]],[[1,1,1,1],[0,3,1,2],[0,3,4,1],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[0,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,1,2],[0,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,1,2],[0,3,3,1],[1,2,2,2]],[[1,1,1,2],[0,3,1,2],[0,3,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,1,3],[0,3,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[0,3,4,2],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[0,3,3,3],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[0,3,3,2],[1,2,1,2]],[[1,1,1,2],[0,3,1,2],[0,3,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,3],[0,3,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[0,3,4,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[0,3,3,3],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[0,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,1,2],[0,3,3,2],[1,2,3,0]],[[1,1,1,2],[0,3,1,2],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,3],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,1,2],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,1,2],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[0,3,1,2],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,1,2],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,1,2],[1,2,3,1],[1,2,2,2]],[[1,1,1,2],[0,3,1,2],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,1,3],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[1,2,3,2],[1,2,1,2]],[[1,1,1,2],[0,3,1,2],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,3],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,1,2],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,1,2],[1,2,3,2],[1,2,3,0]],[[1,1,1,2],[0,3,1,2],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[0,4,1,2],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,3],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[0,3,1,2],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[0,4,1,2],[1,3,2,1],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[0,3,1,2],[1,3,2,1],[1,2,2,2]],[[1,1,1,2],[0,3,1,2],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[0,3,1,3],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[0,3,1,2],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[0,4,1,2],[1,3,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[0,3,1,2],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[0,3,1,2],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[0,4,1,2],[1,3,3,1],[1,1,2,1]],[[1,1,1,1],[0,3,1,2],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[0,4,1,2],[1,3,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,1],[1,3,1,1]],[[1,1,1,2],[0,3,1,2],[1,3,3,2],[1,0,2,1]],[[1,1,1,1],[0,3,1,3],[1,3,3,2],[1,0,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,4,2],[1,0,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,3],[1,0,2,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,2],[1,0,2,2]],[[1,1,1,2],[0,3,1,2],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[0,4,1,2],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,1,3],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,1,2],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,1,2],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,2],[1,1,1,2]],[[1,1,1,2],[0,3,1,2],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[0,4,1,2],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,1,3],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,1,2],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,1,2],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[0,3,1,2],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[0,3,1,2],[1,3,3,2],[1,1,3,0]],[[1,1,1,2],[0,3,1,2],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[0,4,1,2],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,1,3],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,1,2],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,1,2],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[0,3,1,2],[1,3,3,2],[1,2,0,2]],[[1,1,1,2],[0,3,1,2],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[0,4,1,2],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,1,3],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,1,2],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,1,2],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[0,3,1,2],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[0,3,1,2],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[0,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[3,1,2,2],[2,3,3,1],[1,0,2,0]],[[1,3,1,0],[2,1,2,2],[2,3,3,1],[1,0,2,0]],[[2,2,1,0],[2,1,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,1,0],[2,1,2,2],[2,3,3,1],[2,0,1,1]],[[1,2,1,0],[2,1,2,2],[2,3,4,1],[1,0,1,1]],[[1,2,1,0],[2,1,2,2],[2,4,3,1],[1,0,1,1]],[[1,2,1,0],[2,1,2,2],[3,3,3,1],[1,0,1,1]],[[1,2,1,0],[3,1,2,2],[2,3,3,1],[1,0,1,1]],[[1,3,1,0],[2,1,2,2],[2,3,3,1],[1,0,1,1]],[[2,2,1,0],[2,1,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,2],[0,3,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,3],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,1,2],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,1,2],[2,1,2,2],[1,2,2,2]],[[1,1,1,1],[0,3,1,2],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,1,2],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,1,2],[2,1,3,1],[1,2,2,2]],[[1,1,1,2],[0,3,1,2],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,1,3],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[2,1,3,2],[1,2,1,2]],[[1,1,1,2],[0,3,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,3],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,1,2],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,1,2],[2,1,3,2],[1,2,3,0]],[[1,1,1,2],[0,3,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,3],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[0,3,1,2],[2,2,1,2],[1,2,2,2]],[[1,1,1,1],[0,3,1,2],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[0,3,1,2],[2,2,2,1],[1,2,2,2]],[[1,1,1,2],[0,3,1,2],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[0,3,1,3],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[0,3,1,2],[2,2,2,2],[0,2,2,2]],[[1,1,1,1],[0,3,1,2],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,1,2],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[0,3,1,2],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[0,3,1,2],[2,2,2,2],[1,2,3,0]],[[1,1,1,1],[0,3,1,2],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[0,3,1,2],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[0,3,1,2],[2,2,3,1],[0,2,2,2]],[[1,1,1,1],[0,3,1,2],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,1,2],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[0,3,1,2],[2,2,3,1],[1,3,1,1]],[[1,1,1,2],[0,3,1,2],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[0,3,1,3],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[0,3,1,2],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[0,3,1,2],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[0,3,1,2],[2,2,3,2],[0,2,1,2]],[[1,1,1,2],[0,3,1,2],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[0,3,1,3],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[0,3,1,2],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[0,3,1,2],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[0,3,1,2],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[0,3,1,2],[2,2,3,2],[0,2,3,0]],[[1,1,1,1],[0,3,1,2],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,1,2],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[0,3,1,2],[2,2,3,2],[1,3,0,1]],[[1,1,1,1],[0,3,1,2],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,1,2],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[0,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,1,1,2],[0,3,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[0,4,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[0,3,1,3],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[0,3,1,2],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[0,3,1,2],[2,3,1,2],[0,2,2,2]],[[1,1,1,1],[0,4,1,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[0,3,1,2],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[0,3,1,2],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,1,2],[2,1,2,1]],[[1,1,1,1],[0,4,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[0,3,1,2],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[0,3,1,2],[2,3,2,1],[0,2,2,2]],[[1,1,1,1],[0,4,1,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[0,3,1,2],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[0,3,1,2],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,2,1],[2,1,2,1]],[[1,1,1,2],[0,3,1,2],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[0,3,1,3],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[0,3,1,2],[2,3,2,2],[0,1,2,2]],[[1,1,1,1],[0,4,1,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[0,3,1,2],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[0,3,1,2],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[0,3,1,2],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[0,3,1,2],[2,3,2,2],[0,2,3,0]],[[1,1,1,2],[0,3,1,2],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[0,3,1,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[0,3,1,2],[2,3,2,2],[1,0,2,2]],[[1,1,1,1],[0,4,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[0,3,1,2],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[0,3,1,2],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[0,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,1,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[2,1,2,2],[2,3,4,1],[0,2,1,0]],[[1,2,1,0],[2,1,2,2],[2,4,3,1],[0,2,1,0]],[[1,2,1,0],[2,1,2,2],[3,3,3,1],[0,2,1,0]],[[1,1,1,1],[0,4,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[0,3,1,2],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[0,3,1,2],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,1],[0,1,2,2]],[[1,1,1,1],[0,4,1,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[0,3,1,2],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[0,3,1,2],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[0,3,1,2],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,1],[0,3,1,1]],[[1,1,1,1],[0,4,1,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,3,1,2],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,3,1,2],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,1],[1,0,2,2]],[[1,1,1,1],[0,4,1,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,1,2],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,1,2],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,1,2],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[3,1,2,2],[2,3,3,1],[0,2,1,0]],[[1,3,1,0],[2,1,2,2],[2,3,3,1],[0,2,1,0]],[[2,2,1,0],[2,1,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,1,0],[2,1,2,2],[2,3,3,1],[0,3,0,1]],[[1,2,1,0],[2,1,2,2],[2,3,4,1],[0,2,0,1]],[[1,2,1,0],[2,1,2,2],[2,4,3,1],[0,2,0,1]],[[1,2,1,0],[2,1,2,2],[3,3,3,1],[0,2,0,1]],[[1,2,1,0],[3,1,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,2],[0,3,1,2],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[0,3,1,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[0,0,2,2]],[[1,1,1,2],[0,3,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,4,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,1,3],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,1,2],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,1,2],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,1,2],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[0,1,1,2]],[[1,1,1,2],[0,3,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,4,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,1,3],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,1,2],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,1,2],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,1,2],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[0,3,1,2],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[0,1,3,0]],[[1,1,1,2],[0,3,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,4,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,3,1,3],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,3,1,2],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,3,1,2],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[0,3,1,2],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[0,2,0,2]],[[1,1,1,2],[0,3,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,4,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,1,3],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,1,2],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,1,2],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,1,2],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[0,3,1,2],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,3,1,0],[2,1,2,2],[2,3,3,1],[0,2,0,1]],[[2,2,1,0],[2,1,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,2],[0,3,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,4,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,1,3],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,1,2],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,1,2],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,1,2],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[1,0,1,2]],[[1,1,1,2],[0,3,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,4,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,1,3],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,1,2],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,1,2],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,1,2],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[0,3,1,2],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[1,0,3,0]],[[1,1,1,2],[0,3,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,4,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,1,3],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,1,2],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,1,2],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,1,2],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[1,1,0,2]],[[1,1,1,2],[0,3,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,4,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,3,1,3],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,3,1,2],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,3,1,2],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[0,3,1,2],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[0,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,1,2,2],[2,3,3,1],[0,1,3,0]],[[1,2,1,0],[2,1,2,2],[2,3,4,1],[0,1,2,0]],[[1,2,1,0],[2,1,2,2],[2,4,3,1],[0,1,2,0]],[[1,2,1,0],[2,1,2,2],[3,3,3,1],[0,1,2,0]],[[1,2,1,0],[3,1,2,2],[2,3,3,1],[0,1,2,0]],[[1,3,1,0],[2,1,2,2],[2,3,3,1],[0,1,2,0]],[[2,2,1,0],[2,1,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,1,0],[2,1,2,2],[2,3,4,1],[0,1,1,1]],[[1,2,1,0],[2,1,2,2],[2,4,3,1],[0,1,1,1]],[[1,2,1,0],[2,1,2,2],[3,3,3,1],[0,1,1,1]],[[1,1,1,1],[0,4,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[0,3,1,2],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[0,3,1,2],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[0,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[3,1,2,2],[2,3,3,1],[0,1,1,1]],[[1,3,1,0],[2,1,2,2],[2,3,3,1],[0,1,1,1]],[[2,2,1,0],[2,1,2,2],[2,3,3,1],[0,1,1,1]],[[1,2,1,0],[2,1,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[2,1,2,2],[2,4,3,0],[1,2,0,1]],[[1,2,1,0],[2,1,2,2],[3,3,3,0],[1,2,0,1]],[[1,2,1,0],[3,1,2,2],[2,3,3,0],[1,2,0,1]],[[1,3,1,0],[2,1,2,2],[2,3,3,0],[1,2,0,1]],[[2,2,1,0],[2,1,2,2],[2,3,3,0],[1,2,0,1]],[[1,2,1,0],[2,1,2,2],[2,3,3,0],[2,1,1,1]],[[1,2,1,0],[2,1,2,2],[2,3,4,0],[1,1,1,1]],[[1,2,1,0],[2,1,2,2],[2,4,3,0],[1,1,1,1]],[[1,2,1,0],[2,1,2,2],[3,3,3,0],[1,1,1,1]],[[1,2,1,0],[3,1,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[0,3,2,0],[0,3,4,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,0],[0,3,3,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,0],[0,3,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,0],[0,3,3,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,0],[1,2,4,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,0],[1,2,3,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,0],[1,2,3,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,0],[1,2,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,0],[1,2,3,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,0],[1,4,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,0],[1,3,2,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,0],[1,3,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,0],[1,3,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,0],[1,3,2,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,0],[1,4,3,2],[1,1,2,1]],[[1,1,1,1],[0,3,2,0],[1,3,4,2],[1,1,2,1]],[[1,1,1,1],[0,3,2,0],[1,3,3,2],[1,1,3,1]],[[1,1,1,1],[0,3,2,0],[1,3,3,2],[1,1,2,2]],[[1,1,1,1],[0,3,2,0],[1,4,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,2,0],[1,3,4,2],[1,2,1,1]],[[1,1,1,1],[0,3,2,0],[1,3,3,2],[2,2,1,1]],[[1,1,1,1],[0,3,2,0],[1,3,3,2],[1,3,1,1]],[[1,1,1,1],[0,3,2,0],[2,1,4,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,1,3,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,1,3,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,0],[2,1,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,0],[2,1,3,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,0],[2,2,4,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,2,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,2,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,2,0],[2,2,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,2,0],[2,2,3,1],[1,2,2,2]],[[1,1,1,1],[0,3,2,0],[2,2,4,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,2,3,2],[0,3,2,1]],[[1,1,1,1],[0,3,2,0],[2,2,3,2],[0,2,3,1]],[[1,1,1,1],[0,3,2,0],[2,2,3,2],[0,2,2,2]],[[1,1,1,1],[0,3,2,0],[2,2,4,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,0],[2,2,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,2,0],[2,2,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,2,0],[2,2,3,2],[1,2,3,0]],[[1,1,1,1],[0,3,2,0],[2,4,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,1,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,1,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,1,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,0],[2,3,1,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,0],[2,4,2,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,2,1],[2,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,2,1],[1,3,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,2,1],[1,2,3,1]],[[1,1,1,1],[0,3,2,0],[2,3,2,1],[1,2,2,2]],[[1,1,1,1],[0,3,2,0],[2,4,2,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,2,2],[0,3,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,2,2],[0,2,3,1]],[[1,1,1,1],[0,3,2,0],[2,3,2,2],[0,2,2,2]],[[1,1,1,1],[0,3,2,0],[2,4,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,0],[2,3,2,2],[2,2,2,0]],[[1,1,1,1],[0,3,2,0],[2,3,2,2],[1,3,2,0]],[[1,1,1,1],[0,3,2,0],[2,3,2,2],[1,2,3,0]],[[1,1,1,1],[0,3,2,0],[2,4,3,0],[1,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,0],[2,2,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,0],[1,3,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,0],[1,2,3,1]],[[1,1,1,1],[0,3,2,0],[2,4,3,1],[1,1,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,4,1],[1,1,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,1],[1,1,3,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,1],[1,1,2,2]],[[1,1,1,1],[0,3,2,0],[2,4,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,2,0],[2,3,4,1],[1,2,1,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,1],[2,2,1,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,1],[1,3,1,1]],[[1,1,1,1],[0,3,2,0],[2,4,3,2],[0,1,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,4,2],[0,1,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,2],[0,1,3,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,2],[0,1,2,2]],[[1,1,1,1],[0,3,2,0],[2,4,3,2],[0,2,1,1]],[[1,1,1,1],[0,3,2,0],[2,3,4,2],[0,2,1,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,2],[0,3,1,1]],[[1,1,1,1],[0,3,2,0],[2,4,3,2],[1,0,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,4,2],[1,0,2,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,2],[1,0,3,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,2],[1,0,2,2]],[[1,1,1,1],[0,3,2,0],[2,4,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,2,0],[2,3,4,2],[1,1,2,0]],[[1,1,1,1],[0,3,2,0],[2,3,3,2],[1,1,3,0]],[[1,1,1,1],[0,3,2,0],[2,4,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,2,0],[2,3,4,2],[1,2,0,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,1,1,1],[0,3,2,0],[2,3,3,2],[1,3,0,1]],[[1,1,1,1],[0,3,2,0],[2,4,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,2,0],[2,3,4,2],[1,2,1,0]],[[1,1,1,1],[0,3,2,0],[2,3,3,2],[2,2,1,0]],[[1,1,1,1],[0,3,2,0],[2,3,3,2],[1,3,1,0]],[[1,3,1,0],[2,1,2,2],[2,3,3,0],[1,1,1,1]],[[2,2,1,0],[2,1,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,1,0],[2,1,2,2],[2,3,3,0],[1,0,2,2]],[[1,2,1,0],[2,1,2,2],[2,3,3,0],[1,0,3,1]],[[1,2,1,0],[2,1,2,2],[2,3,3,0],[2,0,2,1]],[[1,2,1,0],[2,1,2,2],[2,3,4,0],[1,0,2,1]],[[1,1,1,1],[0,3,2,1],[0,3,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[0,3,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[0,3,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,1],[0,3,2,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,1],[0,3,4,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[0,3,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[0,3,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,2,1],[0,3,3,1],[1,2,2,2]],[[1,1,1,1],[0,3,2,1],[0,3,4,2],[1,2,1,1]],[[1,1,1,1],[0,3,2,1],[0,3,3,3],[1,2,1,1]],[[1,1,1,1],[0,3,2,1],[0,3,3,2],[1,2,1,2]],[[1,1,1,1],[0,3,2,1],[0,3,4,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,1],[0,3,3,3],[1,2,2,0]],[[1,1,1,1],[0,3,2,1],[0,3,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,2,1],[0,3,3,2],[1,2,3,0]],[[1,1,1,1],[0,3,2,1],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,1],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,1],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,2,1],[1,2,3,1],[1,2,2,2]],[[1,1,1,1],[0,3,2,1],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[0,3,2,1],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[0,3,2,1],[1,2,3,2],[1,2,1,2]],[[1,1,1,1],[0,3,2,1],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,1],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[0,3,2,1],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,2,1],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,2,1],[1,2,3,2],[1,2,3,0]],[[1,1,1,1],[0,4,2,1],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,1],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[0,4,2,1],[1,3,2,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[0,3,2,1],[1,3,2,1],[1,2,2,2]],[[1,1,1,1],[0,3,2,1],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[0,3,2,1],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[0,4,2,1],[1,3,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,1],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,1],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[0,3,2,1],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[0,3,2,1],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[0,3,2,1],[1,4,3,0],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,0],[2,2,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,0],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,0],[1,2,3,1]],[[1,1,1,1],[0,4,2,1],[1,3,3,1],[1,1,2,1]],[[1,1,1,1],[0,3,2,1],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[0,4,2,1],[1,3,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,2,1],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,2,1],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,1],[1,3,1,1]],[[1,1,1,1],[0,3,2,1],[1,3,4,2],[1,0,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,3],[1,0,2,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,2],[1,0,2,2]],[[1,1,1,1],[0,4,2,1],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,2,1],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,2,1],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,2],[1,1,1,2]],[[1,1,1,1],[0,4,2,1],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,2,1],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,2,1],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[0,3,2,1],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[0,3,2,1],[1,3,3,2],[1,1,3,0]],[[1,1,1,1],[0,4,2,1],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,2,1],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,2,1],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[0,3,2,1],[1,3,3,2],[1,2,0,2]],[[1,1,1,1],[0,4,2,1],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,2,1],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,2,1],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[0,3,2,1],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[0,3,2,1],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[0,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,1,2,2],[2,4,3,0],[1,0,2,1]],[[1,2,1,0],[2,1,2,2],[3,3,3,0],[1,0,2,1]],[[1,2,1,0],[3,1,2,2],[2,3,3,0],[1,0,2,1]],[[1,3,1,0],[2,1,2,2],[2,3,3,0],[1,0,2,1]],[[2,2,1,0],[2,1,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[0,3,2,1],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,1],[2,1,2,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,1],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,2,1],[2,1,3,1],[1,2,2,2]],[[1,1,1,1],[0,3,2,1],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[0,3,2,1],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[0,3,2,1],[2,1,3,2],[1,2,1,2]],[[1,1,1,1],[0,3,2,1],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,2,1],[2,1,3,2],[1,2,3,0]],[[1,1,1,1],[0,3,2,1],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,1],[2,2,1,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,1],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[0,3,2,1],[2,2,2,1],[1,2,2,2]],[[1,1,1,1],[0,3,2,1],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[0,3,2,1],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[0,3,2,1],[2,2,2,2],[0,2,2,2]],[[1,1,1,1],[0,3,2,1],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[0,3,2,1],[2,2,2,2],[1,2,3,0]],[[1,1,1,1],[0,3,2,1],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[0,3,2,1],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[0,3,2,1],[2,2,3,1],[0,2,2,2]],[[1,1,1,1],[0,3,2,1],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,2,1],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[0,3,2,1],[2,2,3,1],[1,3,1,1]],[[1,1,1,1],[0,3,2,1],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[0,3,2,1],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[0,3,2,1],[2,2,3,2],[0,2,1,2]],[[1,1,1,1],[0,3,2,1],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[0,3,2,1],[2,2,3,2],[0,2,3,0]],[[1,1,1,1],[0,3,2,1],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,2,1],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[0,3,2,1],[2,2,3,2],[1,3,0,1]],[[1,1,1,1],[0,3,2,1],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,2,1],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[0,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,1,2,2],[2,3,3,0],[0,3,1,1]],[[1,1,1,1],[0,4,2,1],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,1],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[0,3,2,1],[2,3,1,2],[0,2,2,2]],[[1,1,1,1],[0,4,2,1],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[0,3,2,1],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[0,3,2,1],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,1,2],[2,1,2,1]],[[1,1,1,1],[0,3,2,1],[2,4,2,0],[1,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,2,0],[2,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,2,0],[1,3,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,2,0],[1,2,3,1]],[[1,1,1,1],[0,4,2,1],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[0,3,2,1],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[0,3,2,1],[2,3,2,1],[0,2,2,2]],[[1,1,1,1],[0,4,2,1],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[0,3,2,1],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[0,3,2,1],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,2,1],[2,1,2,1]],[[1,1,1,1],[0,3,2,1],[2,4,2,1],[1,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,2,1],[2,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,2,1],[1,3,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[0,3,2,1],[2,3,2,2],[0,1,2,2]],[[1,1,1,1],[0,4,2,1],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[0,3,2,1],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,2,2],[0,2,3,0]],[[1,1,1,1],[0,3,2,1],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[0,3,2,1],[2,3,2,2],[1,0,2,2]],[[1,1,1,1],[0,4,2,1],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[0,3,2,1],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[0,3,2,1],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,1,2,2],[2,3,4,0],[0,2,1,1]],[[1,2,1,0],[2,1,2,2],[2,4,3,0],[0,2,1,1]],[[1,2,1,0],[2,1,2,2],[3,3,3,0],[0,2,1,1]],[[1,2,1,0],[3,1,2,2],[2,3,3,0],[0,2,1,1]],[[1,3,1,0],[2,1,2,2],[2,3,3,0],[0,2,1,1]],[[2,2,1,0],[2,1,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,1,0],[2,1,2,2],[2,3,3,0],[0,1,2,2]],[[1,2,1,0],[2,1,2,2],[2,3,3,0],[0,1,3,1]],[[1,1,1,1],[0,3,2,1],[2,4,3,0],[0,2,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,0],[0,3,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,0],[0,2,3,1]],[[1,1,1,1],[0,3,2,1],[2,4,3,0],[1,2,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,0],[2,2,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,0],[1,3,1,1]],[[1,1,1,1],[0,4,2,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[0,3,2,1],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[0,3,2,1],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,1],[0,1,2,2]],[[1,1,1,1],[0,4,2,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[0,3,2,1],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[0,3,2,1],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,1],[0,3,1,1]],[[1,1,1,1],[0,4,2,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,3,2,1],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,3,2,1],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,1],[1,0,2,2]],[[1,1,1,1],[0,4,2,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,2,1],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,2,1],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,1],[2,1,1,1]],[[1,1,1,1],[0,3,2,1],[2,4,3,1],[1,2,1,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,1],[2,2,1,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,1,2,2],[2,3,4,0],[0,1,2,1]],[[1,2,1,0],[2,1,2,2],[2,4,3,0],[0,1,2,1]],[[1,2,1,0],[2,1,2,2],[3,3,3,0],[0,1,2,1]],[[1,2,1,0],[3,1,2,2],[2,3,3,0],[0,1,2,1]],[[1,3,1,0],[2,1,2,2],[2,3,3,0],[0,1,2,1]],[[2,2,1,0],[2,1,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[0,0,2,2]],[[1,1,1,1],[0,4,2,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,2,1],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,2,1],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[0,1,1,2]],[[1,1,1,1],[0,4,2,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,2,1],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,2,1],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[0,1,3,0]],[[1,1,1,1],[0,4,2,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,3,2,1],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[0,3,2,1],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[0,3,2,1],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[0,2,0,2]],[[1,1,1,1],[0,4,2,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,2,1],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,2,1],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,2,1],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,1,1,1],[0,4,2,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,2,1],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,2,1],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[1,0,1,2]],[[1,1,1,1],[0,4,2,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,2,1],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,2,1],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[1,0,3,0]],[[1,1,1,1],[0,4,2,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,2,1],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,2,1],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,2,1],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[1,1,0,2]],[[1,1,1,1],[0,4,2,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,3,2,1],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[0,3,2,1],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[0,3,2,1],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,1,1,1],[0,4,2,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[0,3,2,1],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[0,3,2,1],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[0,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,1,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[2,1,2,2],[2,4,2,1],[1,1,2,0]],[[1,2,1,0],[2,1,2,2],[3,3,2,1],[1,1,2,0]],[[1,2,1,0],[3,1,2,2],[2,3,2,1],[1,1,2,0]],[[1,3,1,0],[2,1,2,2],[2,3,2,1],[1,1,2,0]],[[2,2,1,0],[2,1,2,2],[2,3,2,1],[1,1,2,0]],[[1,1,1,1],[0,3,2,2],[0,3,4,0],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[0,3,3,0],[1,3,2,1]],[[1,1,1,1],[0,3,2,2],[0,3,3,0],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[0,3,3,0],[1,2,2,2]],[[1,1,1,1],[0,3,2,2],[0,3,4,1],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[0,3,3,1],[1,3,2,0]],[[1,1,1,1],[0,3,2,2],[0,3,3,1],[1,2,3,0]],[[1,2,1,0],[2,1,2,2],[2,3,2,1],[0,2,3,0]],[[1,1,1,2],[0,3,2,2],[1,0,3,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,3],[1,0,3,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,0,3,3],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,0,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[1,0,3,2],[1,2,2,2]],[[1,1,1,2],[0,3,2,2],[1,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,3],[1,1,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,1,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,1,2,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,1,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,2],[1,1,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[1,1,2,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,2],[1,1,4,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,1,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,1,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,2,2],[1,1,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[1,1,3,1],[1,2,2,2]],[[1,1,1,2],[0,3,2,2],[1,1,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,2,3],[1,1,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,2,2],[1,1,4,2],[1,2,1,1]],[[1,1,1,1],[0,3,2,2],[1,1,3,3],[1,2,1,1]],[[1,1,1,1],[0,3,2,2],[1,1,3,2],[1,2,1,2]],[[1,1,1,2],[0,3,2,2],[1,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,3],[1,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[1,1,4,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[1,1,3,3],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[1,1,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,2,2],[1,1,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,2,2],[1,1,3,2],[1,2,3,0]],[[1,1,1,2],[0,3,2,2],[1,2,2,2],[1,1,2,1]],[[1,1,1,1],[0,3,2,3],[1,2,2,2],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[1,2,2,3],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[1,2,2,2],[1,1,3,1]],[[1,1,1,1],[0,3,2,2],[1,2,2,2],[1,1,2,2]],[[1,1,1,1],[0,3,2,2],[1,2,4,0],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,0],[2,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,0],[1,3,2,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,0],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,0],[1,2,2,2]],[[1,1,1,1],[0,3,2,2],[1,2,4,1],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,1],[1,1,3,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,1],[1,1,2,2]],[[1,1,1,1],[0,3,2,2],[1,2,4,1],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[1,2,3,1],[2,2,2,0]],[[1,1,1,1],[0,3,2,2],[1,2,3,1],[1,3,2,0]],[[1,1,1,1],[0,3,2,2],[1,2,3,1],[1,2,3,0]],[[1,1,1,2],[0,3,2,2],[1,2,3,2],[1,0,2,1]],[[1,1,1,1],[0,3,2,3],[1,2,3,2],[1,0,2,1]],[[1,1,1,1],[0,3,2,2],[1,2,4,2],[1,0,2,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,3],[1,0,2,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,2],[1,0,2,2]],[[1,1,1,2],[0,3,2,2],[1,2,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,2,3],[1,2,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,2,2],[1,2,4,2],[1,1,1,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,3],[1,1,1,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,2],[1,1,1,2]],[[1,1,1,2],[0,3,2,2],[1,2,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,2,3],[1,2,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,2,2],[1,2,4,2],[1,1,2,0]],[[1,1,1,1],[0,3,2,2],[1,2,3,3],[1,1,2,0]],[[1,1,1,1],[0,3,2,2],[1,2,3,2],[1,1,3,0]],[[1,1,1,2],[0,3,2,2],[1,2,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,2,3],[1,2,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,2,2],[1,2,4,2],[1,2,0,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,3],[1,2,0,1]],[[1,1,1,1],[0,3,2,2],[1,2,3,2],[1,2,0,2]],[[1,1,1,2],[0,3,2,2],[1,2,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,2,3],[1,2,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,2,2],[1,2,4,2],[1,2,1,0]],[[1,1,1,1],[0,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,1,0],[2,1,2,2],[2,3,2,1],[0,3,2,0]],[[1,2,1,0],[2,1,2,2],[2,4,2,1],[0,2,2,0]],[[1,2,1,0],[2,1,2,2],[3,3,2,1],[0,2,2,0]],[[1,2,1,0],[3,1,2,2],[2,3,2,1],[0,2,2,0]],[[1,3,1,0],[2,1,2,2],[2,3,2,1],[0,2,2,0]],[[2,2,1,0],[2,1,2,2],[2,3,2,1],[0,2,2,0]],[[1,1,1,2],[0,3,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[0,4,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,3],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,4,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,3,0,3],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,3,0,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,3,0,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,2],[1,3,0,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[1,3,0,2],[1,2,2,2]],[[1,1,1,1],[0,4,2,2],[1,3,2,0],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,4,2,0],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,3,2,0],[2,2,2,1]],[[1,1,1,1],[0,3,2,2],[1,3,2,0],[1,3,2,1]],[[1,1,1,1],[0,3,2,2],[1,3,2,0],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[1,3,2,0],[1,2,2,2]],[[1,1,1,1],[0,4,2,2],[1,3,2,1],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[1,4,2,1],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[1,3,2,1],[2,2,2,0]],[[1,1,1,1],[0,3,2,2],[1,3,2,1],[1,3,2,0]],[[1,1,1,1],[0,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,1,0],[2,1,2,2],[2,3,2,0],[2,1,2,1]],[[1,2,1,0],[2,1,2,2],[2,4,2,0],[1,1,2,1]],[[1,1,1,1],[0,4,2,2],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[1,4,3,0],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[1,3,4,0],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[1,3,3,0],[1,1,3,1]],[[1,1,1,1],[0,3,2,2],[1,3,3,0],[1,1,2,2]],[[1,1,1,1],[0,4,2,2],[1,3,3,0],[1,2,1,1]],[[1,1,1,1],[0,3,2,2],[1,4,3,0],[1,2,1,1]],[[1,1,1,1],[0,3,2,2],[1,3,4,0],[1,2,1,1]],[[1,1,1,1],[0,3,2,2],[1,3,3,0],[2,2,1,1]],[[1,1,1,1],[0,3,2,2],[1,3,3,0],[1,3,1,1]],[[1,1,1,1],[0,4,2,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,2,2],[1,4,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,2,2],[1,3,4,1],[1,1,1,1]],[[1,1,1,1],[0,4,2,2],[1,3,3,1],[1,1,2,0]],[[1,1,1,1],[0,3,2,2],[1,4,3,1],[1,1,2,0]],[[1,1,1,1],[0,3,2,2],[1,3,4,1],[1,1,2,0]],[[1,1,1,1],[0,3,2,2],[1,3,3,1],[1,1,3,0]],[[1,1,1,1],[0,4,2,2],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[0,3,2,2],[1,4,3,1],[1,2,0,1]],[[1,1,1,1],[0,3,2,2],[1,3,4,1],[1,2,0,1]],[[1,1,1,1],[0,3,2,2],[1,3,3,1],[2,2,0,1]],[[1,1,1,1],[0,3,2,2],[1,3,3,1],[1,3,0,1]],[[1,1,1,1],[0,4,2,2],[1,3,3,1],[1,2,1,0]],[[1,1,1,1],[0,3,2,2],[1,4,3,1],[1,2,1,0]],[[1,1,1,1],[0,3,2,2],[1,3,4,1],[1,2,1,0]],[[1,1,1,1],[0,3,2,2],[1,3,3,1],[2,2,1,0]],[[1,1,1,1],[0,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,1,2,2],[3,3,2,0],[1,1,2,1]],[[1,2,1,0],[3,1,2,2],[2,3,2,0],[1,1,2,1]],[[1,3,1,0],[2,1,2,2],[2,3,2,0],[1,1,2,1]],[[2,2,1,0],[2,1,2,2],[2,3,2,0],[1,1,2,1]],[[1,2,1,0],[2,1,2,2],[2,3,2,0],[0,2,2,2]],[[1,2,1,0],[2,1,2,2],[2,3,2,0],[0,2,3,1]],[[1,2,1,0],[2,1,2,2],[2,3,2,0],[0,3,2,1]],[[1,2,1,0],[2,1,2,2],[2,4,2,0],[0,2,2,1]],[[1,2,1,0],[2,1,2,2],[3,3,2,0],[0,2,2,1]],[[1,2,1,0],[3,1,2,2],[2,3,2,0],[0,2,2,1]],[[1,3,1,0],[2,1,2,2],[2,3,2,0],[0,2,2,1]],[[2,2,1,0],[2,1,2,2],[2,3,2,0],[0,2,2,1]],[[1,2,1,0],[2,1,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,1,0],[2,1,2,2],[2,3,1,1],[2,2,2,0]],[[1,2,1,0],[2,1,2,2],[3,3,1,1],[1,2,2,0]],[[1,2,1,0],[3,1,2,2],[2,3,1,1],[1,2,2,0]],[[2,2,1,0],[2,1,2,2],[2,3,1,1],[1,2,2,0]],[[1,1,1,2],[0,3,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,3],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[3,0,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,0,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,0,2,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,0,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,2],[2,0,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[2,0,2,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,2],[3,0,3,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,0,4,1],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,0,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,0,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,2,2],[2,0,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[2,0,3,1],[1,2,2,2]],[[1,1,1,2],[0,3,2,2],[2,0,3,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,3],[2,0,3,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,0,3,3],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,0,3,2],[0,2,3,1]],[[1,1,1,1],[0,3,2,2],[2,0,3,2],[0,2,2,2]],[[1,1,1,2],[0,3,2,2],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,2,3],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,2,2],[2,0,4,2],[1,2,1,1]],[[1,1,1,1],[0,3,2,2],[2,0,3,3],[1,2,1,1]],[[1,1,1,1],[0,3,2,2],[2,0,3,2],[1,2,1,2]],[[1,1,1,2],[0,3,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,3],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[3,0,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,0,4,2],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,0,3,3],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,0,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,0,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,2,2],[2,0,3,2],[1,2,3,0]],[[1,1,1,2],[0,3,2,2],[2,1,2,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,3],[2,1,2,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,1,2,3],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,1,2,2],[0,3,2,1]],[[1,1,1,1],[0,3,2,2],[2,1,2,2],[0,2,3,1]],[[1,1,1,1],[0,3,2,2],[2,1,2,2],[0,2,2,2]],[[1,1,1,1],[0,3,2,2],[3,1,3,0],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,1,4,0],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,1,3,0],[2,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,1,3,0],[1,3,2,1]],[[1,1,1,1],[0,3,2,2],[2,1,3,0],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[2,1,3,0],[1,2,2,2]],[[1,1,1,1],[0,3,2,2],[2,1,4,1],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,1,3,1],[0,3,2,1]],[[1,1,1,1],[0,3,2,2],[2,1,3,1],[0,2,3,1]],[[1,1,1,1],[0,3,2,2],[2,1,3,1],[0,2,2,2]],[[1,1,1,1],[0,3,2,2],[3,1,3,1],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,1,4,1],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,1,3,1],[2,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,1,3,1],[1,3,2,0]],[[1,1,1,1],[0,3,2,2],[2,1,3,1],[1,2,3,0]],[[1,1,1,2],[0,3,2,2],[2,1,3,2],[0,2,1,1]],[[1,1,1,1],[0,3,2,3],[2,1,3,2],[0,2,1,1]],[[1,1,1,1],[0,3,2,2],[2,1,4,2],[0,2,1,1]],[[1,1,1,1],[0,3,2,2],[2,1,3,3],[0,2,1,1]],[[1,1,1,1],[0,3,2,2],[2,1,3,2],[0,2,1,2]],[[1,1,1,2],[0,3,2,2],[2,1,3,2],[0,2,2,0]],[[1,1,1,1],[0,3,2,3],[2,1,3,2],[0,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,1,4,2],[0,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,1,3,3],[0,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,1,3,2],[0,3,2,0]],[[1,1,1,1],[0,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,1,0],[2,1,2,2],[2,3,1,0],[1,3,2,1]],[[1,2,1,0],[2,1,2,2],[2,3,1,0],[2,2,2,1]],[[1,2,1,0],[2,1,2,2],[3,3,1,0],[1,2,2,1]],[[1,2,1,0],[3,1,2,2],[2,3,1,0],[1,2,2,1]],[[2,2,1,0],[2,1,2,2],[2,3,1,0],[1,2,2,1]],[[1,1,1,2],[0,3,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,3],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[3,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,0,3],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,0,2],[2,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,0,2],[1,3,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,0,2],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[2,2,0,2],[1,2,2,2]],[[1,1,1,1],[0,3,2,2],[3,2,2,0],[1,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,2,0],[2,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,2,0],[1,3,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,2,0],[1,2,3,1]],[[1,1,1,1],[0,3,2,2],[2,2,2,0],[1,2,2,2]],[[1,1,1,1],[0,3,2,2],[3,2,2,1],[1,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,2,2,1],[2,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,2,2,1],[1,3,2,0]],[[1,1,1,1],[0,3,2,2],[2,2,2,1],[1,2,3,0]],[[1,1,1,2],[0,3,2,2],[2,2,2,2],[0,1,2,1]],[[1,1,1,1],[0,3,2,3],[2,2,2,2],[0,1,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,2,3],[0,1,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,2,2],[0,1,3,1]],[[1,1,1,1],[0,3,2,2],[2,2,2,2],[0,1,2,2]],[[1,1,1,2],[0,3,2,2],[2,2,2,2],[1,0,2,1]],[[1,1,1,1],[0,3,2,3],[2,2,2,2],[1,0,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,2,3],[1,0,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,2,2],[1,0,3,1]],[[1,1,1,1],[0,3,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,1,0],[2,1,2,2],[2,3,0,2],[2,1,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,4,0],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,0],[0,3,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,0],[0,2,3,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,0],[0,2,2,2]],[[1,1,1,1],[0,3,2,2],[3,2,3,0],[1,2,1,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,0],[2,2,1,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,0],[1,3,1,1]],[[1,1,1,1],[0,3,2,2],[2,2,4,1],[0,1,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,1],[0,1,3,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,1],[0,1,2,2]],[[1,1,1,1],[0,3,2,2],[2,2,4,1],[0,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,2,3,1],[0,3,2,0]],[[1,1,1,1],[0,3,2,2],[2,2,3,1],[0,2,3,0]],[[1,1,1,1],[0,3,2,2],[2,2,4,1],[1,0,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,1],[1,0,3,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,1],[1,0,2,2]],[[1,1,1,1],[0,3,2,2],[3,2,3,1],[1,2,0,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,1],[2,2,0,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,1],[1,3,0,1]],[[1,1,1,1],[0,3,2,2],[3,2,3,1],[1,2,1,0]],[[1,1,1,1],[0,3,2,2],[2,2,3,1],[2,2,1,0]],[[1,1,1,1],[0,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[2,1,2,2],[2,4,0,2],[1,1,2,1]],[[1,2,1,0],[2,1,2,2],[3,3,0,2],[1,1,2,1]],[[1,2,1,0],[3,1,2,2],[2,3,0,2],[1,1,2,1]],[[1,3,1,0],[2,1,2,2],[2,3,0,2],[1,1,2,1]],[[2,2,1,0],[2,1,2,2],[2,3,0,2],[1,1,2,1]],[[1,2,1,0],[2,1,2,2],[2,3,0,2],[0,2,2,2]],[[1,1,1,2],[0,3,2,2],[2,2,3,2],[0,0,2,1]],[[1,1,1,1],[0,3,2,3],[2,2,3,2],[0,0,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,4,2],[0,0,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,3],[0,0,2,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,2],[0,0,2,2]],[[1,1,1,2],[0,3,2,2],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,2,3],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,2,2],[2,2,4,2],[0,1,1,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,3],[0,1,1,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,2],[0,1,1,2]],[[1,1,1,2],[0,3,2,2],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,2,3],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,2,2],[2,2,4,2],[0,1,2,0]],[[1,1,1,1],[0,3,2,2],[2,2,3,3],[0,1,2,0]],[[1,1,1,1],[0,3,2,2],[2,2,3,2],[0,1,3,0]],[[1,1,1,2],[0,3,2,2],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[0,3,2,3],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[0,3,2,2],[2,2,4,2],[0,2,0,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,3],[0,2,0,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,2],[0,2,0,2]],[[1,1,1,2],[0,3,2,2],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,2,3],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,2,2],[2,2,4,2],[0,2,1,0]],[[1,1,1,1],[0,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,1,0],[2,1,2,2],[2,3,0,2],[0,2,3,1]],[[1,2,1,0],[2,1,2,2],[2,3,0,2],[0,3,2,1]],[[1,2,1,0],[2,1,2,2],[2,3,0,3],[0,2,2,1]],[[1,2,1,0],[2,1,2,2],[2,4,0,2],[0,2,2,1]],[[1,2,1,0],[2,1,2,2],[3,3,0,2],[0,2,2,1]],[[1,2,1,0],[2,1,2,3],[2,3,0,2],[0,2,2,1]],[[1,2,1,0],[3,1,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,2],[0,3,2,2],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,2,3],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,2,2],[2,2,4,2],[1,0,1,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,3],[1,0,1,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,2],[1,0,1,2]],[[1,1,1,2],[0,3,2,2],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,2,3],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,2,2],[2,2,4,2],[1,0,2,0]],[[1,1,1,1],[0,3,2,2],[2,2,3,3],[1,0,2,0]],[[1,1,1,1],[0,3,2,2],[2,2,3,2],[1,0,3,0]],[[1,1,1,2],[0,3,2,2],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,2,3],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,2,2],[2,2,4,2],[1,1,0,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,3],[1,1,0,1]],[[1,1,1,1],[0,3,2,2],[2,2,3,2],[1,1,0,2]],[[1,1,1,2],[0,3,2,2],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[0,3,2,3],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[0,3,2,2],[2,2,4,2],[1,1,1,0]],[[1,1,1,1],[0,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,3,1,0],[2,1,2,2],[2,3,0,2],[0,2,2,1]],[[2,2,1,0],[2,1,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,2],[0,3,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[0,4,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,3],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[3,3,0,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,4,0,2],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,0,3],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,0,2],[0,3,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,0,2],[0,2,3,1]],[[1,1,1,1],[0,3,2,2],[2,3,0,2],[0,2,2,2]],[[1,1,1,1],[0,4,2,2],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[3,3,0,2],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[2,4,0,2],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,0],[2,1,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[2,1,2,2],[2,2,3,1],[2,2,1,0]],[[1,2,1,0],[2,1,2,2],[3,2,3,1],[1,2,1,0]],[[1,2,1,0],[3,1,2,2],[2,2,3,1],[1,2,1,0]],[[1,1,1,1],[0,4,2,2],[2,3,2,0],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[3,3,2,0],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,4,2,0],[0,2,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,2,0],[0,3,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,2,0],[0,2,3,1]],[[1,1,1,1],[0,3,2,2],[2,3,2,0],[0,2,2,2]],[[1,1,1,1],[0,4,2,2],[2,3,2,0],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[3,3,2,0],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[2,4,2,0],[1,1,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,2,0],[2,1,2,1]],[[1,1,1,1],[0,4,2,2],[2,3,2,1],[0,2,2,0]],[[1,1,1,1],[0,3,2,2],[3,3,2,1],[0,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,4,2,1],[0,2,2,0]],[[1,1,1,1],[0,3,2,2],[2,3,2,1],[0,3,2,0]],[[1,1,1,1],[0,3,2,2],[2,3,2,1],[0,2,3,0]],[[1,1,1,1],[0,4,2,2],[2,3,2,1],[1,1,2,0]],[[1,1,1,1],[0,3,2,2],[3,3,2,1],[1,1,2,0]],[[1,1,1,1],[0,3,2,2],[2,4,2,1],[1,1,2,0]],[[1,1,1,1],[0,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,3,1,0],[2,1,2,2],[2,2,3,1],[1,2,1,0]],[[2,2,1,0],[2,1,2,2],[2,2,3,1],[1,2,1,0]],[[1,2,1,0],[2,1,2,2],[2,2,3,1],[1,3,0,1]],[[1,2,1,0],[2,1,2,2],[2,2,3,1],[2,2,0,1]],[[1,2,1,0],[2,1,2,2],[3,2,3,1],[1,2,0,1]],[[1,2,1,0],[3,1,2,2],[2,2,3,1],[1,2,0,1]],[[1,3,1,0],[2,1,2,2],[2,2,3,1],[1,2,0,1]],[[2,2,1,0],[2,1,2,2],[2,2,3,1],[1,2,0,1]],[[1,2,1,0],[2,1,2,2],[2,2,3,1],[0,2,3,0]],[[1,2,1,0],[2,1,2,2],[2,2,3,1],[0,3,2,0]],[[1,2,1,0],[2,1,2,2],[2,2,4,1],[0,2,2,0]],[[1,2,1,0],[2,1,2,2],[2,2,3,0],[1,3,1,1]],[[1,2,1,0],[2,1,2,2],[2,2,3,0],[2,2,1,1]],[[1,2,1,0],[2,1,2,2],[3,2,3,0],[1,2,1,1]],[[1,2,1,0],[3,1,2,2],[2,2,3,0],[1,2,1,1]],[[1,3,1,0],[2,1,2,2],[2,2,3,0],[1,2,1,1]],[[2,2,1,0],[2,1,2,2],[2,2,3,0],[1,2,1,1]],[[1,2,1,0],[2,1,2,2],[2,2,3,0],[0,2,2,2]],[[1,2,1,0],[2,1,2,2],[2,2,3,0],[0,2,3,1]],[[1,2,1,0],[2,1,2,2],[2,2,3,0],[0,3,2,1]],[[1,2,1,0],[2,1,2,2],[2,2,4,0],[0,2,2,1]],[[1,1,1,1],[0,4,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[0,3,2,2],[3,3,3,0],[0,1,2,1]],[[1,1,1,1],[0,3,2,2],[2,4,3,0],[0,1,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,4,0],[0,1,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,0],[0,1,3,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,0],[0,1,2,2]],[[1,1,1,1],[0,4,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[0,3,2,2],[3,3,3,0],[0,2,1,1]],[[1,1,1,1],[0,3,2,2],[2,4,3,0],[0,2,1,1]],[[1,1,1,1],[0,3,2,2],[2,3,4,0],[0,2,1,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,0],[0,3,1,1]],[[1,1,1,1],[0,4,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[0,3,2,2],[3,3,3,0],[1,0,2,1]],[[1,1,1,1],[0,3,2,2],[2,4,3,0],[1,0,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,4,0],[1,0,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,0],[2,0,2,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,0],[1,0,3,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,0],[1,0,2,2]],[[1,1,1,1],[0,4,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[0,3,2,2],[3,3,3,0],[1,1,1,1]],[[1,1,1,1],[0,3,2,2],[2,4,3,0],[1,1,1,1]],[[1,1,1,1],[0,3,2,2],[2,3,4,0],[1,1,1,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,0],[2,1,1,1]],[[1,1,1,1],[0,4,2,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,1],[0,3,2,2],[3,3,3,0],[1,2,0,1]],[[1,1,1,1],[0,3,2,2],[2,4,3,0],[1,2,0,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,1,1,1],[0,4,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[0,3,2,2],[3,3,3,1],[0,1,1,1]],[[1,1,1,1],[0,3,2,2],[2,4,3,1],[0,1,1,1]],[[1,1,1,1],[0,3,2,2],[2,3,4,1],[0,1,1,1]],[[1,1,1,1],[0,4,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[0,3,2,2],[3,3,3,1],[0,1,2,0]],[[1,1,1,1],[0,3,2,2],[2,4,3,1],[0,1,2,0]],[[1,1,1,1],[0,3,2,2],[2,3,4,1],[0,1,2,0]],[[1,1,1,1],[0,3,2,2],[2,3,3,1],[0,1,3,0]],[[1,1,1,1],[0,4,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[0,3,2,2],[3,3,3,1],[0,2,0,1]],[[1,1,1,1],[0,3,2,2],[2,4,3,1],[0,2,0,1]],[[1,1,1,1],[0,3,2,2],[2,3,4,1],[0,2,0,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,1],[0,3,0,1]],[[1,1,1,1],[0,4,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[0,3,2,2],[3,3,3,1],[0,2,1,0]],[[1,1,1,1],[0,3,2,2],[2,4,3,1],[0,2,1,0]],[[1,1,1,1],[0,3,2,2],[2,3,4,1],[0,2,1,0]],[[1,1,1,1],[0,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[2,1,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,1,0],[2,1,2,2],[2,2,2,1],[1,3,2,0]],[[1,1,1,1],[0,4,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[0,3,2,2],[3,3,3,1],[1,0,1,1]],[[1,1,1,1],[0,3,2,2],[2,4,3,1],[1,0,1,1]],[[1,1,1,1],[0,3,2,2],[2,3,4,1],[1,0,1,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,1],[2,0,1,1]],[[1,1,1,1],[0,4,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[0,3,2,2],[3,3,3,1],[1,0,2,0]],[[1,1,1,1],[0,3,2,2],[2,4,3,1],[1,0,2,0]],[[1,1,1,1],[0,3,2,2],[2,3,4,1],[1,0,2,0]],[[1,1,1,1],[0,3,2,2],[2,3,3,1],[2,0,2,0]],[[1,1,1,1],[0,3,2,2],[2,3,3,1],[1,0,3,0]],[[1,1,1,1],[0,4,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[0,3,2,2],[3,3,3,1],[1,1,0,1]],[[1,1,1,1],[0,3,2,2],[2,4,3,1],[1,1,0,1]],[[1,1,1,1],[0,3,2,2],[2,3,4,1],[1,1,0,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,1],[2,1,0,1]],[[1,1,1,1],[0,4,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[0,3,2,2],[3,3,3,1],[1,1,1,0]],[[1,1,1,1],[0,3,2,2],[2,4,3,1],[1,1,1,0]],[[1,1,1,1],[0,3,2,2],[2,3,4,1],[1,1,1,0]],[[1,1,1,1],[0,3,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,0],[2,1,2,2],[2,2,2,1],[2,2,2,0]],[[1,2,1,0],[2,1,2,2],[3,2,2,1],[1,2,2,0]],[[1,2,1,0],[3,1,2,2],[2,2,2,1],[1,2,2,0]],[[1,3,1,0],[2,1,2,2],[2,2,2,1],[1,2,2,0]],[[2,2,1,0],[2,1,2,2],[2,2,2,1],[1,2,2,0]],[[1,2,1,0],[2,1,2,2],[2,2,2,0],[1,2,2,2]],[[1,2,1,0],[2,1,2,2],[2,2,2,0],[1,2,3,1]],[[1,1,1,1],[0,4,2,2],[2,3,3,1],[1,2,0,0]],[[1,1,1,1],[0,3,2,2],[3,3,3,1],[1,2,0,0]],[[1,1,1,1],[0,3,2,2],[2,4,3,1],[1,2,0,0]],[[1,1,1,1],[0,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[2,1,2,2],[2,2,2,0],[1,3,2,1]],[[1,2,1,0],[2,1,2,2],[2,2,2,0],[2,2,2,1]],[[1,2,1,0],[2,1,2,2],[3,2,2,0],[1,2,2,1]],[[1,2,1,0],[3,1,2,2],[2,2,2,0],[1,2,2,1]],[[1,3,1,0],[2,1,2,2],[2,2,2,0],[1,2,2,1]],[[2,2,1,0],[2,1,2,2],[2,2,2,0],[1,2,2,1]],[[1,2,1,0],[2,1,2,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,2],[2,2,0,2],[1,2,3,1]],[[1,2,1,0],[2,1,2,2],[2,2,0,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,2],[2,2,0,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,2],[2,2,0,3],[1,2,2,1]],[[1,1,1,2],[0,3,2,2],[2,3,3,2],[0,0,1,1]],[[1,1,1,1],[0,3,2,3],[2,3,3,2],[0,0,1,1]],[[1,1,1,1],[0,3,2,2],[2,3,4,2],[0,0,1,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,3],[0,0,1,1]],[[1,1,1,1],[0,3,2,2],[2,3,3,2],[0,0,1,2]],[[1,1,1,2],[0,3,2,2],[2,3,3,2],[0,0,2,0]],[[1,1,1,1],[0,3,2,3],[2,3,3,2],[0,0,2,0]],[[1,1,1,1],[0,3,2,2],[2,3,4,2],[0,0,2,0]],[[1,1,1,1],[0,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,1,0],[2,1,2,2],[3,2,0,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,3],[2,2,0,2],[1,2,2,1]],[[1,2,1,0],[3,1,2,2],[2,2,0,2],[1,2,2,1]],[[1,3,1,0],[2,1,2,2],[2,2,0,2],[1,2,2,1]],[[2,2,1,0],[2,1,2,2],[2,2,0,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,2],[2,1,3,1],[1,2,3,0]],[[1,2,1,0],[2,1,2,2],[2,1,3,1],[1,3,2,0]],[[1,2,1,0],[2,1,2,2],[2,1,3,1],[2,2,2,0]],[[1,2,1,0],[2,1,2,2],[2,1,4,1],[1,2,2,0]],[[1,2,1,0],[2,1,2,2],[3,1,3,1],[1,2,2,0]],[[1,2,1,0],[3,1,2,2],[2,1,3,1],[1,2,2,0]],[[1,3,1,0],[2,1,2,2],[2,1,3,1],[1,2,2,0]],[[2,2,1,0],[2,1,2,2],[2,1,3,1],[1,2,2,0]],[[1,2,1,0],[2,1,2,2],[2,1,3,0],[1,2,2,2]],[[1,2,1,0],[2,1,2,2],[2,1,3,0],[1,2,3,1]],[[1,2,1,0],[2,1,2,2],[2,1,3,0],[1,3,2,1]],[[1,2,1,0],[2,1,2,2],[2,1,3,0],[2,2,2,1]],[[1,2,1,0],[2,1,2,2],[2,1,4,0],[1,2,2,1]],[[1,2,1,0],[2,1,2,2],[3,1,3,0],[1,2,2,1]],[[1,2,1,0],[3,1,2,2],[2,1,3,0],[1,2,2,1]],[[1,3,1,0],[2,1,2,2],[2,1,3,0],[1,2,2,1]],[[2,2,1,0],[2,1,2,2],[2,1,3,0],[1,2,2,1]],[[1,2,1,0],[2,1,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,2,2],[2,0,3,2],[1,3,2,0]],[[1,2,1,0],[2,1,2,2],[2,0,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,2,2],[2,0,3,3],[1,2,2,0]],[[1,2,1,0],[2,1,2,2],[2,0,4,2],[1,2,2,0]],[[1,2,1,0],[2,1,2,2],[3,0,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,2,3],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[3,1,2,2],[2,0,3,2],[1,2,2,0]],[[1,3,1,0],[2,1,2,2],[2,0,3,2],[1,2,2,0]],[[2,2,1,0],[2,1,2,2],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,2,2],[2,0,3,2],[1,2,1,2]],[[1,2,1,0],[2,1,2,2],[2,0,3,3],[1,2,1,1]],[[1,2,1,0],[2,1,2,2],[2,0,4,2],[1,2,1,1]],[[1,2,1,0],[2,1,2,3],[2,0,3,2],[1,2,1,1]],[[1,2,1,0],[2,1,2,2],[2,0,3,1],[1,2,2,2]],[[1,2,1,0],[2,1,2,2],[2,0,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,2,2],[2,0,3,1],[1,3,2,1]],[[1,2,1,0],[2,1,2,2],[2,0,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,2,2],[2,0,4,1],[1,2,2,1]],[[1,2,1,0],[2,1,2,2],[3,0,3,1],[1,2,2,1]],[[1,2,1,0],[3,1,2,2],[2,0,3,1],[1,2,2,1]],[[1,3,1,0],[2,1,2,2],[2,0,3,1],[1,2,2,1]],[[2,2,1,0],[2,1,2,2],[2,0,3,1],[1,2,2,1]],[[1,2,1,0],[2,1,2,2],[2,0,2,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,2],[2,0,2,2],[1,2,3,1]],[[1,2,1,0],[2,1,2,2],[2,0,2,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,2],[2,0,2,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,2],[2,0,2,3],[1,2,2,1]],[[1,2,1,0],[2,1,2,2],[3,0,2,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,3],[2,0,2,2],[1,2,2,1]],[[1,2,1,0],[3,1,2,2],[2,0,2,2],[1,2,2,1]],[[1,3,1,0],[2,1,2,2],[2,0,2,2],[1,2,2,1]],[[2,2,1,0],[2,1,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,0],[1,1,4,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,0],[1,1,3,2],[2,2,2,1]],[[1,1,1,1],[0,3,3,0],[1,1,3,2],[1,3,2,1]],[[1,1,1,1],[0,3,3,0],[1,1,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,0],[1,1,3,2],[1,2,2,2]],[[1,1,1,1],[0,3,3,0],[1,2,4,2],[1,1,2,1]],[[1,1,1,1],[0,3,3,0],[1,2,3,2],[1,1,3,1]],[[1,1,1,1],[0,3,3,0],[1,2,3,2],[1,1,2,2]],[[1,1,1,1],[0,3,3,0],[2,0,4,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,0],[2,0,3,2],[2,2,2,1]],[[1,1,1,1],[0,3,3,0],[2,0,3,2],[1,3,2,1]],[[1,1,1,1],[0,3,3,0],[2,0,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,0],[2,0,3,2],[1,2,2,2]],[[1,1,1,1],[0,3,3,0],[2,1,4,2],[0,2,2,1]],[[1,1,1,1],[0,3,3,0],[2,1,3,2],[0,3,2,1]],[[1,1,1,1],[0,3,3,0],[2,1,3,2],[0,2,3,1]],[[1,1,1,1],[0,3,3,0],[2,1,3,2],[0,2,2,2]],[[1,1,1,1],[0,3,3,0],[2,2,4,2],[0,1,2,1]],[[1,1,1,1],[0,3,3,0],[2,2,3,2],[0,1,3,1]],[[1,1,1,1],[0,3,3,0],[2,2,3,2],[0,1,2,2]],[[1,1,1,1],[0,3,3,0],[2,2,4,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,0],[2,2,3,2],[1,0,3,1]],[[1,1,1,1],[0,3,3,0],[2,2,3,2],[1,0,2,2]],[[1,1,1,1],[0,3,3,0],[2,4,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,0],[2,3,0,2],[2,2,2,1]],[[1,1,1,1],[0,3,3,0],[2,3,0,2],[1,3,2,1]],[[1,1,1,1],[0,3,3,0],[2,3,0,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,0],[2,3,0,2],[1,2,2,2]],[[1,1,1,1],[0,3,3,0],[2,4,1,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,0],[2,3,1,1],[2,2,2,1]],[[1,1,1,1],[0,3,3,0],[2,3,1,1],[1,3,2,1]],[[1,1,1,1],[0,3,3,0],[2,3,1,1],[1,2,3,1]],[[1,1,1,1],[0,3,3,0],[2,3,1,1],[1,2,2,2]],[[1,1,1,1],[0,3,3,0],[2,4,1,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,0],[2,3,1,2],[2,2,2,0]],[[1,1,1,1],[0,3,3,0],[2,3,1,2],[1,3,2,0]],[[1,1,1,1],[0,3,3,0],[2,3,1,2],[1,2,3,0]],[[1,1,1,1],[0,3,3,0],[2,4,2,1],[1,2,1,1]],[[1,1,1,1],[0,3,3,0],[2,3,2,1],[2,2,1,1]],[[1,1,1,1],[0,3,3,0],[2,3,2,1],[1,3,1,1]],[[1,1,1,1],[0,3,3,0],[2,4,2,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,0],[2,3,2,2],[2,2,0,1]],[[1,1,1,1],[0,3,3,0],[2,3,2,2],[1,3,0,1]],[[1,1,1,1],[0,3,3,0],[2,4,2,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,0],[2,3,2,2],[2,2,1,0]],[[1,1,1,1],[0,3,3,0],[2,3,2,2],[1,3,1,0]],[[1,2,1,0],[2,1,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,1,2,2],[1,3,3,1],[2,2,1,0]],[[1,2,1,0],[2,1,2,2],[1,3,4,1],[1,2,1,0]],[[1,2,1,0],[2,1,2,2],[1,4,3,1],[1,2,1,0]],[[1,2,1,0],[2,1,2,2],[1,3,3,1],[1,3,0,1]],[[1,2,1,0],[2,1,2,2],[1,3,3,1],[2,2,0,1]],[[1,2,1,0],[2,1,2,2],[1,3,4,1],[1,2,0,1]],[[1,2,1,0],[2,1,2,2],[1,4,3,1],[1,2,0,1]],[[1,2,1,0],[2,1,2,2],[1,3,3,1],[1,1,3,0]],[[1,2,1,0],[2,1,2,2],[1,3,4,1],[1,1,2,0]],[[1,2,1,0],[2,1,2,2],[1,4,3,1],[1,1,2,0]],[[1,2,1,0],[2,1,2,2],[1,3,3,0],[1,3,1,1]],[[1,2,1,0],[2,1,2,2],[1,3,3,0],[2,2,1,1]],[[1,2,1,0],[2,1,2,2],[1,3,4,0],[1,2,1,1]],[[1,2,1,0],[2,1,2,2],[1,4,3,0],[1,2,1,1]],[[1,2,1,0],[2,1,2,2],[1,3,3,0],[1,1,2,2]],[[1,2,1,0],[2,1,2,2],[1,3,3,0],[1,1,3,1]],[[1,2,1,0],[2,1,2,2],[1,3,4,0],[1,1,2,1]],[[1,2,1,0],[2,1,2,2],[1,4,3,0],[1,1,2,1]],[[1,1,1,1],[0,3,3,1],[1,0,3,3],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,0,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,1],[1,0,3,2],[1,2,2,2]],[[1,1,1,1],[0,3,3,1],[1,1,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,1,2,2],[2,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,1,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,3,1],[1,1,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,1],[1,1,2,2],[1,2,2,2]],[[1,1,1,1],[0,4,3,1],[1,1,3,1],[1,2,2,1]],[[1,1,1,1],[0,3,4,1],[1,1,3,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,1,4,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,1,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,1,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,3,1],[1,1,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,3,1],[1,1,3,1],[1,2,2,2]],[[1,1,1,1],[0,4,3,1],[1,1,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,4,1],[1,1,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,1],[1,1,4,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,1],[1,1,3,3],[1,2,1,1]],[[1,1,1,1],[0,3,3,1],[1,1,3,2],[1,2,1,2]],[[1,1,1,1],[0,4,3,1],[1,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,4,1],[1,1,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,1],[1,1,4,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,1],[1,1,3,3],[1,2,2,0]],[[1,1,1,1],[0,3,3,1],[1,1,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,3,1],[1,1,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,3,1],[1,1,3,2],[1,2,3,0]],[[1,1,1,1],[0,3,3,1],[1,2,2,3],[1,1,2,1]],[[1,1,1,1],[0,3,3,1],[1,2,2,2],[1,1,3,1]],[[1,1,1,1],[0,3,3,1],[1,2,2,2],[1,1,2,2]],[[1,1,1,1],[0,4,3,1],[1,2,3,1],[1,1,2,1]],[[1,1,1,1],[0,3,4,1],[1,2,3,1],[1,1,2,1]],[[1,1,1,1],[0,3,3,1],[1,2,4,1],[1,1,2,1]],[[1,1,1,1],[0,3,3,1],[1,2,3,1],[1,1,3,1]],[[1,1,1,1],[0,3,3,1],[1,2,3,1],[1,1,2,2]],[[1,1,1,1],[0,4,3,1],[1,2,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,4,1],[1,2,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,3,1],[1,2,4,1],[1,2,1,1]],[[1,1,1,1],[0,3,4,1],[1,2,3,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,1],[1,2,4,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,1],[1,2,3,3],[1,0,2,1]],[[1,1,1,1],[0,3,3,1],[1,2,3,2],[1,0,2,2]],[[1,1,1,1],[0,4,3,1],[1,2,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,4,1],[1,2,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,1],[1,2,4,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,1],[1,2,3,3],[1,1,1,1]],[[1,1,1,1],[0,3,3,1],[1,2,3,2],[1,1,1,2]],[[1,1,1,1],[0,4,3,1],[1,2,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,4,1],[1,2,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,1],[1,2,4,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,1],[1,2,3,3],[1,1,2,0]],[[1,1,1,1],[0,3,3,1],[1,2,3,2],[1,1,3,0]],[[1,1,1,1],[0,4,3,1],[1,2,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,4,1],[1,2,3,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,1],[1,2,4,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,1],[1,2,3,3],[1,2,0,1]],[[1,1,1,1],[0,3,3,1],[1,2,3,2],[1,2,0,2]],[[1,1,1,1],[0,4,3,1],[1,2,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,4,1],[1,2,3,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,1],[1,2,4,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,1],[1,2,3,3],[1,2,1,0]],[[1,2,1,0],[2,1,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,1,0],[2,1,2,2],[1,3,2,1],[1,3,2,0]],[[1,2,1,0],[2,1,2,2],[1,3,2,1],[2,2,2,0]],[[1,2,1,0],[2,1,2,2],[1,4,2,1],[1,2,2,0]],[[1,2,1,0],[2,1,2,2],[1,3,2,0],[1,2,2,2]],[[1,2,1,0],[2,1,2,2],[1,3,2,0],[1,2,3,1]],[[1,1,1,1],[0,4,3,1],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,4,1],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,4,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,3,0,3],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,3,0,2],[2,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,3,0,2],[1,3,2,1]],[[1,1,1,1],[0,3,3,1],[1,3,0,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,1],[1,3,0,2],[1,2,2,2]],[[1,1,1,1],[0,4,3,1],[1,3,1,1],[1,2,2,1]],[[1,1,1,1],[0,3,4,1],[1,3,1,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,4,1,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,3,1,1],[2,2,2,1]],[[1,1,1,1],[0,3,3,1],[1,3,1,1],[1,3,2,1]],[[1,1,1,1],[0,3,3,1],[1,3,1,1],[1,2,3,1]],[[1,1,1,1],[0,3,3,1],[1,3,1,1],[1,2,2,2]],[[1,1,1,1],[0,4,3,1],[1,3,1,2],[1,2,2,0]],[[1,1,1,1],[0,3,4,1],[1,3,1,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,1],[1,4,1,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,1],[1,3,1,2],[2,2,2,0]],[[1,1,1,1],[0,3,3,1],[1,3,1,2],[1,3,2,0]],[[1,1,1,1],[0,3,3,1],[1,3,1,2],[1,2,3,0]],[[1,1,1,1],[0,4,3,1],[1,3,2,1],[1,1,2,1]],[[1,1,1,1],[0,3,4,1],[1,3,2,1],[1,1,2,1]],[[1,1,1,1],[0,3,3,1],[1,4,2,1],[1,1,2,1]],[[1,1,1,1],[0,4,3,1],[1,3,2,1],[1,2,1,1]],[[1,1,1,1],[0,3,4,1],[1,3,2,1],[1,2,1,1]],[[1,1,1,1],[0,3,3,1],[1,4,2,1],[1,2,1,1]],[[1,1,1,1],[0,3,3,1],[1,3,2,1],[2,2,1,1]],[[1,1,1,1],[0,3,3,1],[1,3,2,1],[1,3,1,1]],[[1,1,1,1],[0,4,3,1],[1,3,2,2],[1,1,1,1]],[[1,1,1,1],[0,3,4,1],[1,3,2,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,1],[1,4,2,2],[1,1,1,1]],[[1,1,1,1],[0,4,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[0,3,4,1],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,1],[1,4,2,2],[1,1,2,0]],[[1,1,1,1],[0,4,3,1],[1,3,2,2],[1,2,0,1]],[[1,1,1,1],[0,3,4,1],[1,3,2,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,1],[1,4,2,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,1],[1,3,2,2],[2,2,0,1]],[[1,1,1,1],[0,3,3,1],[1,3,2,2],[1,3,0,1]],[[1,1,1,1],[0,4,3,1],[1,3,2,2],[1,2,1,0]],[[1,1,1,1],[0,3,4,1],[1,3,2,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,1],[1,4,2,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,1],[1,3,2,2],[2,2,1,0]],[[1,1,1,1],[0,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,1,0],[2,1,2,2],[1,3,2,0],[1,3,2,1]],[[1,2,1,0],[2,1,2,2],[1,3,2,0],[2,2,2,1]],[[1,2,1,0],[2,1,2,2],[1,4,2,0],[1,2,2,1]],[[1,2,1,0],[2,1,2,2],[1,3,0,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,2],[1,3,0,2],[1,2,3,1]],[[1,2,1,0],[2,1,2,2],[1,3,0,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,2],[1,3,0,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,2],[1,3,0,3],[1,2,2,1]],[[1,2,1,0],[2,1,2,2],[1,4,0,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,3],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[0,4,3,1],[1,3,3,2],[1,2,0,0]],[[1,1,1,1],[0,3,4,1],[1,3,3,2],[1,2,0,0]],[[1,1,1,1],[0,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,2,1,0],[2,1,2,2],[1,2,3,1],[1,2,3,0]],[[1,2,1,0],[2,1,2,2],[1,2,3,1],[1,3,2,0]],[[1,2,1,0],[2,1,2,2],[1,2,3,1],[2,2,2,0]],[[1,2,1,0],[2,1,2,2],[1,2,4,1],[1,2,2,0]],[[1,2,1,0],[2,1,2,2],[1,2,3,0],[1,2,2,2]],[[1,2,1,0],[2,1,2,2],[1,2,3,0],[1,2,3,1]],[[1,2,1,0],[2,1,2,2],[1,2,3,0],[1,3,2,1]],[[1,2,1,0],[2,1,2,2],[1,2,3,0],[2,2,2,1]],[[1,2,1,0],[2,1,2,2],[1,2,4,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[3,0,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,0,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,0,2,2],[2,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,0,2,2],[1,3,2,1]],[[1,1,1,1],[0,3,3,1],[2,0,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,1],[2,0,2,2],[1,2,2,2]],[[1,1,1,1],[0,4,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[0,3,4,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[3,0,3,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,0,4,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,0,3,1],[2,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,0,3,1],[1,3,2,1]],[[1,1,1,1],[0,3,3,1],[2,0,3,1],[1,2,3,1]],[[1,1,1,1],[0,3,3,1],[2,0,3,1],[1,2,2,2]],[[1,1,1,1],[0,3,3,1],[2,0,3,3],[0,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,0,3,2],[0,2,3,1]],[[1,1,1,1],[0,3,3,1],[2,0,3,2],[0,2,2,2]],[[1,1,1,1],[0,4,3,1],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,4,1],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,0,4,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,0,3,3],[1,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,0,3,2],[1,2,1,2]],[[1,1,1,1],[0,4,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,4,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,1],[3,0,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,0,4,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,0,3,3],[1,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,0,3,2],[2,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,0,3,2],[1,3,2,0]],[[1,1,1,1],[0,3,3,1],[2,0,3,2],[1,2,3,0]],[[1,1,1,1],[0,3,3,1],[2,1,2,3],[0,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,1,2,2],[0,3,2,1]],[[1,1,1,1],[0,3,3,1],[2,1,2,2],[0,2,3,1]],[[1,1,1,1],[0,3,3,1],[2,1,2,2],[0,2,2,2]],[[1,1,1,1],[0,4,3,1],[2,1,3,1],[0,2,2,1]],[[1,1,1,1],[0,3,4,1],[2,1,3,1],[0,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,1,4,1],[0,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,1,3,1],[0,3,2,1]],[[1,1,1,1],[0,3,3,1],[2,1,3,1],[0,2,3,1]],[[1,1,1,1],[0,3,3,1],[2,1,3,1],[0,2,2,2]],[[1,1,1,1],[0,4,3,1],[2,1,3,2],[0,2,1,1]],[[1,1,1,1],[0,3,4,1],[2,1,3,2],[0,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,1,4,2],[0,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,1,3,3],[0,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,1,3,2],[0,2,1,2]],[[1,1,1,1],[0,4,3,1],[2,1,3,2],[0,2,2,0]],[[1,1,1,1],[0,3,4,1],[2,1,3,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,1,4,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,1,3,3],[0,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,1,3,2],[0,3,2,0]],[[1,1,1,1],[0,3,3,1],[2,1,3,2],[0,2,3,0]],[[1,1,1,1],[0,3,3,1],[3,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,0,3],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,0,2],[2,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,0,2],[1,3,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,0,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,1],[2,2,0,2],[1,2,2,2]],[[1,1,1,1],[0,3,3,1],[3,2,1,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,1,1],[2,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,1,1],[1,3,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,1,1],[1,2,3,1]],[[1,1,1,1],[0,3,3,1],[2,2,1,1],[1,2,2,2]],[[1,1,1,1],[0,3,3,1],[3,2,1,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,2,1,2],[2,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,2,1,2],[1,3,2,0]],[[1,1,1,1],[0,3,3,1],[2,2,1,2],[1,2,3,0]],[[1,1,1,1],[0,3,3,1],[3,2,2,1],[1,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,2,2,1],[2,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,2,2,1],[1,3,1,1]],[[1,1,1,1],[0,3,3,1],[2,2,2,3],[0,1,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,2,2],[0,1,3,1]],[[1,1,1,1],[0,3,3,1],[2,2,2,2],[0,1,2,2]],[[1,1,1,1],[0,3,3,1],[2,2,2,3],[1,0,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,2,2],[1,0,3,1]],[[1,1,1,1],[0,3,3,1],[2,2,2,2],[1,0,2,2]],[[1,1,1,1],[0,3,3,1],[3,2,2,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,1],[2,2,2,2],[2,2,0,1]],[[1,1,1,1],[0,3,3,1],[2,2,2,2],[1,3,0,1]],[[1,1,1,1],[0,3,3,1],[3,2,2,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,1],[2,2,2,2],[2,2,1,0]],[[1,1,1,1],[0,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,1,1,1],[0,4,3,1],[2,2,3,1],[0,1,2,1]],[[1,1,1,1],[0,3,4,1],[2,2,3,1],[0,1,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,4,1],[0,1,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,1],[0,1,3,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,1],[0,1,2,2]],[[1,1,1,1],[0,4,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[0,3,4,1],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,2,4,1],[0,2,1,1]],[[1,1,1,1],[0,4,3,1],[2,2,3,1],[1,0,2,1]],[[1,1,1,1],[0,3,4,1],[2,2,3,1],[1,0,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,4,1],[1,0,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,1],[1,0,3,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,1],[1,0,2,2]],[[1,1,1,1],[0,4,3,1],[2,2,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,4,1],[2,2,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,3,1],[2,2,4,1],[1,1,1,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,1,2,1],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[0,4,3,1],[2,2,3,2],[0,0,2,1]],[[1,1,1,1],[0,3,4,1],[2,2,3,2],[0,0,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,4,2],[0,0,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,3],[0,0,2,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,2],[0,0,2,2]],[[1,1,1,1],[0,4,3,1],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,4,1],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,1],[2,2,4,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,3],[0,1,1,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,2],[0,1,1,2]],[[1,1,1,1],[0,4,3,1],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,4,1],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,1],[2,2,4,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,1],[2,2,3,3],[0,1,2,0]],[[1,1,1,1],[0,3,3,1],[2,2,3,2],[0,1,3,0]],[[1,1,1,1],[0,4,3,1],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[0,3,4,1],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[0,3,3,1],[2,2,4,2],[0,2,0,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,3],[0,2,0,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,2],[0,2,0,2]],[[1,1,1,1],[0,4,3,1],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,4,1],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,1],[2,2,4,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,1],[2,2,3,3],[0,2,1,0]],[[1,2,1,0],[2,1,2,1],[3,3,3,2],[1,2,0,0]],[[1,2,1,0],[3,1,2,1],[2,3,3,2],[1,2,0,0]],[[1,3,1,0],[2,1,2,1],[2,3,3,2],[1,2,0,0]],[[2,2,1,0],[2,1,2,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[0,4,3,1],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,4,1],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,1],[2,2,4,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,3],[1,0,1,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,2],[1,0,1,2]],[[1,1,1,1],[0,4,3,1],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,4,1],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,1],[2,2,4,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,1],[2,2,3,3],[1,0,2,0]],[[1,1,1,1],[0,3,3,1],[2,2,3,2],[1,0,3,0]],[[1,1,1,1],[0,4,3,1],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,4,1],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,1],[2,2,4,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,3],[1,1,0,1]],[[1,1,1,1],[0,3,3,1],[2,2,3,2],[1,1,0,2]],[[1,1,1,1],[0,4,3,1],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[0,3,4,1],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[0,3,3,1],[2,2,4,2],[1,1,1,0]],[[1,1,1,1],[0,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,3],[1,1,1,0]],[[1,2,1,0],[2,1,2,1],[2,3,4,2],[1,1,1,0]],[[1,2,1,0],[2,1,2,1],[2,4,3,2],[1,1,1,0]],[[1,2,1,0],[2,1,2,1],[3,3,3,2],[1,1,1,0]],[[1,2,1,0],[3,1,2,1],[2,3,3,2],[1,1,1,0]],[[1,3,1,0],[2,1,2,1],[2,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,1,2,1],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[1,1,0,2]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[2,1,0,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,3],[1,1,0,1]],[[1,2,1,0],[2,1,2,1],[2,3,4,2],[1,1,0,1]],[[1,2,1,0],[2,1,2,1],[2,4,3,2],[1,1,0,1]],[[1,2,1,0],[2,1,2,1],[3,3,3,2],[1,1,0,1]],[[1,2,1,0],[3,1,2,1],[2,3,3,2],[1,1,0,1]],[[1,3,1,0],[2,1,2,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,4,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[0,3,4,1],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[0,3,3,1],[3,3,0,2],[0,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,4,0,2],[0,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,0,3],[0,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,0,2],[0,3,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,0,2],[0,2,3,1]],[[1,1,1,1],[0,3,3,1],[2,3,0,2],[0,2,2,2]],[[1,1,1,1],[0,4,3,1],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[0,3,4,1],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[0,3,3,1],[3,3,0,2],[1,1,2,1]],[[1,1,1,1],[0,3,3,1],[2,4,0,2],[1,1,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,0,2],[2,1,2,1]],[[1,1,1,1],[0,3,3,1],[2,4,1,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,1,0],[2,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,1,0],[1,3,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,1,0],[1,2,3,1]],[[1,1,1,1],[0,4,3,1],[2,3,1,1],[0,2,2,1]],[[1,1,1,1],[0,3,4,1],[2,3,1,1],[0,2,2,1]],[[1,1,1,1],[0,3,3,1],[3,3,1,1],[0,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,4,1,1],[0,2,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,1,1],[0,3,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,1,1],[0,2,3,1]],[[1,1,1,1],[0,3,3,1],[2,3,1,1],[0,2,2,2]],[[1,1,1,1],[0,4,3,1],[2,3,1,1],[1,1,2,1]],[[1,1,1,1],[0,3,4,1],[2,3,1,1],[1,1,2,1]],[[1,1,1,1],[0,3,3,1],[3,3,1,1],[1,1,2,1]],[[1,1,1,1],[0,3,3,1],[2,4,1,1],[1,1,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,1,1],[2,1,2,1]],[[1,1,1,1],[0,3,3,1],[2,4,1,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,3,1,1],[2,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,3,1,1],[1,3,2,0]],[[1,1,1,1],[0,4,3,1],[2,3,1,2],[0,2,2,0]],[[1,1,1,1],[0,3,4,1],[2,3,1,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,1],[3,3,1,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,4,1,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,1],[2,3,1,2],[0,3,2,0]],[[1,1,1,1],[0,3,3,1],[2,3,1,2],[0,2,3,0]],[[1,1,1,1],[0,4,3,1],[2,3,1,2],[1,1,2,0]],[[1,1,1,1],[0,3,4,1],[2,3,1,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,1],[3,3,1,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,1],[2,4,1,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,1],[2,3,1,2],[2,1,2,0]],[[2,2,1,0],[2,1,2,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,1],[2,4,2,0],[1,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,3,2,0],[2,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,3,2,0],[1,3,1,1]],[[1,1,1,1],[0,4,3,1],[2,3,2,1],[0,1,2,1]],[[1,1,1,1],[0,3,4,1],[2,3,2,1],[0,1,2,1]],[[1,1,1,1],[0,3,3,1],[3,3,2,1],[0,1,2,1]],[[1,1,1,1],[0,3,3,1],[2,4,2,1],[0,1,2,1]],[[1,1,1,1],[0,4,3,1],[2,3,2,1],[0,2,1,1]],[[1,1,1,1],[0,3,4,1],[2,3,2,1],[0,2,1,1]],[[1,1,1,1],[0,3,3,1],[3,3,2,1],[0,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,4,2,1],[0,2,1,1]],[[1,1,1,1],[0,3,3,1],[2,3,2,1],[0,3,1,1]],[[1,1,1,1],[0,4,3,1],[2,3,2,1],[1,0,2,1]],[[1,1,1,1],[0,3,4,1],[2,3,2,1],[1,0,2,1]],[[1,1,1,1],[0,3,3,1],[3,3,2,1],[1,0,2,1]],[[1,1,1,1],[0,3,3,1],[2,4,2,1],[1,0,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,2,1],[2,0,2,1]],[[1,1,1,1],[0,4,3,1],[2,3,2,1],[1,1,1,1]],[[1,1,1,1],[0,3,4,1],[2,3,2,1],[1,1,1,1]],[[1,1,1,1],[0,3,3,1],[3,3,2,1],[1,1,1,1]],[[1,1,1,1],[0,3,3,1],[2,4,2,1],[1,1,1,1]],[[1,1,1,1],[0,3,3,1],[2,3,2,1],[2,1,1,1]],[[1,1,1,1],[0,3,3,1],[2,4,2,1],[1,2,1,0]],[[1,1,1,1],[0,3,3,1],[2,3,2,1],[2,2,1,0]],[[1,1,1,1],[0,3,3,1],[2,3,2,1],[1,3,1,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[1,0,3,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[2,0,2,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,3],[1,0,2,0]],[[1,2,1,0],[2,1,2,1],[2,3,4,2],[1,0,2,0]],[[1,2,1,0],[2,1,2,1],[2,4,3,2],[1,0,2,0]],[[1,2,1,0],[2,1,2,1],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[0,4,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[0,3,4,1],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,1],[3,3,2,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,1],[2,4,2,2],[0,1,1,1]],[[1,1,1,1],[0,4,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[0,3,4,1],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,1],[3,3,2,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,1],[2,4,2,2],[0,1,2,0]],[[1,1,1,1],[0,4,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[0,3,4,1],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[0,3,3,1],[3,3,2,2],[0,2,0,1]],[[1,1,1,1],[0,3,3,1],[2,4,2,2],[0,2,0,1]],[[1,1,1,1],[0,3,3,1],[2,3,2,2],[0,3,0,1]],[[1,1,1,1],[0,4,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[0,3,4,1],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,1],[3,3,2,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,1],[2,4,2,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,1,0],[3,1,2,1],[2,3,3,2],[1,0,2,0]],[[1,3,1,0],[2,1,2,1],[2,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,1,2,1],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[1,0,1,2]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[2,0,1,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,3],[1,0,1,1]],[[1,2,1,0],[2,1,2,1],[2,3,4,2],[1,0,1,1]],[[1,2,1,0],[2,1,2,1],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[0,4,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[0,3,4,1],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,1],[3,3,2,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,1],[2,4,2,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,1],[2,3,2,2],[2,0,1,1]],[[1,1,1,1],[0,4,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[0,3,4,1],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,1],[3,3,2,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,1],[2,4,2,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,1],[2,3,2,2],[2,0,2,0]],[[1,1,1,1],[0,4,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[0,3,4,1],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,1],[3,3,2,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,1],[2,4,2,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,1],[2,3,2,2],[2,1,0,1]],[[1,1,1,1],[0,4,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[0,3,4,1],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[0,3,3,1],[3,3,2,2],[1,1,1,0]],[[1,1,1,1],[0,3,3,1],[2,4,2,2],[1,1,1,0]],[[1,1,1,1],[0,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,1,0],[2,1,2,1],[3,3,3,2],[1,0,1,1]],[[1,2,1,0],[3,1,2,1],[2,3,3,2],[1,0,1,1]],[[1,3,1,0],[2,1,2,1],[2,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,1,2,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,4,3,1],[2,3,2,2],[1,2,0,0]],[[1,1,1,1],[0,3,4,1],[2,3,2,2],[1,2,0,0]],[[1,1,1,1],[0,3,3,1],[3,3,2,2],[1,2,0,0]],[[1,1,1,1],[0,3,3,1],[2,4,2,2],[1,2,0,0]],[[1,1,1,1],[0,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,3],[0,2,1,0]],[[1,2,1,0],[2,1,2,1],[2,3,4,2],[0,2,1,0]],[[1,2,1,0],[2,1,2,1],[2,4,3,2],[0,2,1,0]],[[1,2,1,0],[2,1,2,1],[3,3,3,2],[0,2,1,0]],[[1,2,1,0],[3,1,2,1],[2,3,3,2],[0,2,1,0]],[[1,3,1,0],[2,1,2,1],[2,3,3,2],[0,2,1,0]],[[2,2,1,0],[2,1,2,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,1],[2,4,3,0],[1,2,1,0]],[[1,1,1,1],[0,3,3,1],[2,3,3,0],[2,2,1,0]],[[1,1,1,1],[0,3,3,1],[2,3,3,0],[1,3,1,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[0,2,0,2]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[0,3,0,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,3],[0,2,0,1]],[[1,2,1,0],[2,1,2,1],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[0,4,3,1],[2,3,3,1],[0,0,2,1]],[[1,1,1,1],[0,3,4,1],[2,3,3,1],[0,0,2,1]],[[1,1,1,1],[0,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,1,0],[2,1,2,1],[2,4,3,2],[0,2,0,1]],[[1,2,1,0],[2,1,2,1],[3,3,3,2],[0,2,0,1]],[[1,2,1,0],[3,1,2,1],[2,3,3,2],[0,2,0,1]],[[1,3,1,0],[2,1,2,1],[2,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,1,2,1],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[0,1,3,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,3],[0,1,2,0]],[[1,2,1,0],[2,1,2,1],[2,3,4,2],[0,1,2,0]],[[1,2,1,0],[2,1,2,1],[2,4,3,2],[0,1,2,0]],[[1,2,1,0],[2,1,2,1],[3,3,3,2],[0,1,2,0]],[[1,2,1,0],[3,1,2,1],[2,3,3,2],[0,1,2,0]],[[1,3,1,0],[2,1,2,1],[2,3,3,2],[0,1,2,0]],[[2,2,1,0],[2,1,2,1],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[0,1,1,2]],[[1,2,1,0],[2,1,2,1],[2,3,3,3],[0,1,1,1]],[[1,2,1,0],[2,1,2,1],[2,3,4,2],[0,1,1,1]],[[1,2,1,0],[2,1,2,1],[2,4,3,2],[0,1,1,1]],[[1,2,1,0],[2,1,2,1],[3,3,3,2],[0,1,1,1]],[[1,2,1,0],[3,1,2,1],[2,3,3,2],[0,1,1,1]],[[1,3,1,0],[2,1,2,1],[2,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,1,2,1],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,2],[0,0,2,2]],[[1,2,1,0],[2,1,2,1],[2,3,3,3],[0,0,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[0,4,3,1],[2,3,3,2],[0,0,1,1]],[[1,1,1,1],[0,3,4,1],[2,3,3,2],[0,0,1,1]],[[1,1,1,1],[0,3,3,1],[2,3,4,2],[0,0,1,1]],[[1,1,1,1],[0,3,3,1],[2,3,3,3],[0,0,1,1]],[[1,1,1,1],[0,3,3,1],[2,3,3,2],[0,0,1,2]],[[1,1,1,1],[0,4,3,1],[2,3,3,2],[0,0,2,0]],[[1,1,1,1],[0,3,4,1],[2,3,3,2],[0,0,2,0]],[[1,1,1,1],[0,3,3,1],[2,3,4,2],[0,0,2,0]],[[1,1,1,1],[0,3,3,1],[2,3,3,3],[0,0,2,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[2,1,2,1],[2,4,3,1],[1,2,0,1]],[[1,1,1,1],[0,4,3,1],[2,3,3,2],[0,2,0,0]],[[1,1,1,1],[0,3,4,1],[2,3,3,2],[0,2,0,0]],[[1,1,1,1],[0,3,3,1],[3,3,3,2],[0,2,0,0]],[[1,1,1,1],[0,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,1,0],[2,1,2,1],[3,3,3,1],[1,2,0,1]],[[1,2,1,0],[3,1,2,1],[2,3,3,1],[1,2,0,1]],[[1,3,1,0],[2,1,2,1],[2,3,3,1],[1,2,0,1]],[[2,2,1,0],[2,1,2,1],[2,3,3,1],[1,2,0,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[2,1,2,1],[2,3,4,1],[1,1,1,1]],[[1,2,1,0],[2,1,2,1],[2,4,3,1],[1,1,1,1]],[[1,2,1,0],[2,1,2,1],[3,3,3,1],[1,1,1,1]],[[1,2,1,0],[3,1,2,1],[2,3,3,1],[1,1,1,1]],[[1,3,1,0],[2,1,2,1],[2,3,3,1],[1,1,1,1]],[[2,2,1,0],[2,1,2,1],[2,3,3,1],[1,1,1,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,1],[1,0,2,2]],[[1,2,1,0],[2,1,2,1],[2,3,3,1],[1,0,3,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,1],[2,0,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,4,1],[1,0,2,1]],[[1,2,1,0],[2,1,2,1],[2,4,3,1],[1,0,2,1]],[[1,2,1,0],[2,1,2,1],[3,3,3,1],[1,0,2,1]],[[1,2,1,0],[3,1,2,1],[2,3,3,1],[1,0,2,1]],[[1,3,1,0],[2,1,2,1],[2,3,3,1],[1,0,2,1]],[[2,2,1,0],[2,1,2,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[0,4,3,1],[2,3,3,2],[1,1,0,0]],[[1,1,1,1],[0,3,4,1],[2,3,3,2],[1,1,0,0]],[[1,1,1,1],[0,3,3,1],[3,3,3,2],[1,1,0,0]],[[1,1,1,1],[0,3,3,1],[2,4,3,2],[1,1,0,0]],[[1,1,1,1],[0,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,1,0],[2,1,2,1],[2,3,3,1],[0,3,1,1]],[[1,2,1,0],[2,1,2,1],[2,3,4,1],[0,2,1,1]],[[1,2,1,0],[2,1,2,1],[2,4,3,1],[0,2,1,1]],[[1,2,1,0],[2,1,2,1],[3,3,3,1],[0,2,1,1]],[[1,2,1,0],[3,1,2,1],[2,3,3,1],[0,2,1,1]],[[1,3,1,0],[2,1,2,1],[2,3,3,1],[0,2,1,1]],[[2,2,1,0],[2,1,2,1],[2,3,3,1],[0,2,1,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,1],[0,1,2,2]],[[1,2,1,0],[2,1,2,1],[2,3,3,1],[0,1,3,1]],[[1,2,1,0],[2,1,2,1],[2,3,4,1],[0,1,2,1]],[[1,2,1,0],[2,1,2,1],[2,4,3,1],[0,1,2,1]],[[1,2,1,0],[2,1,2,1],[3,3,3,1],[0,1,2,1]],[[1,2,1,0],[3,1,2,1],[2,3,3,1],[0,1,2,1]],[[1,3,1,0],[2,1,2,1],[2,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,1,2,1],[2,3,3,1],[0,1,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,0],[2,1,2,1]],[[1,2,1,0],[2,1,2,1],[2,4,3,0],[1,1,2,1]],[[1,2,1,0],[2,1,2,1],[3,3,3,0],[1,1,2,1]],[[1,2,1,0],[3,1,2,1],[2,3,3,0],[1,1,2,1]],[[1,3,1,0],[2,1,2,1],[2,3,3,0],[1,1,2,1]],[[2,2,1,0],[2,1,2,1],[2,3,3,0],[1,1,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,0],[0,2,3,1]],[[1,2,1,0],[2,1,2,1],[2,3,3,0],[0,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,4,3,0],[0,2,2,1]],[[1,2,1,0],[2,1,2,1],[3,3,3,0],[0,2,2,1]],[[1,2,1,0],[3,1,2,1],[2,3,3,0],[0,2,2,1]],[[1,3,1,0],[2,1,2,1],[2,3,3,0],[0,2,2,1]],[[2,2,1,0],[2,1,2,1],[2,3,3,0],[0,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,1,2,1],[2,4,2,2],[1,1,2,0]],[[1,2,1,0],[2,1,2,1],[3,3,2,2],[1,1,2,0]],[[1,2,1,0],[3,1,2,1],[2,3,2,2],[1,1,2,0]],[[1,3,1,0],[2,1,2,1],[2,3,2,2],[1,1,2,0]],[[2,2,1,0],[2,1,2,1],[2,3,2,2],[1,1,2,0]],[[1,2,1,0],[2,1,2,1],[2,3,2,2],[1,0,2,2]],[[1,2,1,0],[2,1,2,1],[2,3,2,2],[1,0,3,1]],[[1,2,1,0],[2,1,2,1],[2,3,2,3],[1,0,2,1]],[[1,1,1,2],[0,3,3,2],[0,0,3,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,3],[0,0,3,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[0,0,3,3],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[0,0,3,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,1],[2,3,2,2],[0,2,3,0]],[[1,2,1,0],[2,1,2,1],[2,3,2,2],[0,3,2,0]],[[1,2,1,0],[2,1,2,1],[2,4,2,2],[0,2,2,0]],[[1,2,1,0],[2,1,2,1],[3,3,2,2],[0,2,2,0]],[[1,2,1,0],[3,1,2,1],[2,3,2,2],[0,2,2,0]],[[1,3,1,0],[2,1,2,1],[2,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,1,2,1],[2,3,2,2],[0,2,2,0]],[[1,2,1,0],[2,1,2,1],[2,3,2,2],[0,1,2,2]],[[1,2,1,0],[2,1,2,1],[2,3,2,2],[0,1,3,1]],[[1,2,1,0],[2,1,2,1],[2,3,2,3],[0,1,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,2,1],[2,1,2,1]],[[1,2,1,0],[2,1,2,1],[2,4,2,1],[1,1,2,1]],[[1,2,1,0],[2,1,2,1],[3,3,2,1],[1,1,2,1]],[[1,2,1,0],[3,1,2,1],[2,3,2,1],[1,1,2,1]],[[1,3,1,0],[2,1,2,1],[2,3,2,1],[1,1,2,1]],[[2,2,1,0],[2,1,2,1],[2,3,2,1],[1,1,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,2,1],[0,2,2,2]],[[1,2,1,0],[2,1,2,1],[2,3,2,1],[0,2,3,1]],[[1,2,1,0],[2,1,2,1],[2,3,2,1],[0,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,4,2,1],[0,2,2,1]],[[1,2,1,0],[2,1,2,1],[3,3,2,1],[0,2,2,1]],[[1,2,1,0],[3,1,2,1],[2,3,2,1],[0,2,2,1]],[[1,3,1,0],[2,1,2,1],[2,3,2,1],[0,2,2,1]],[[2,2,1,0],[2,1,2,1],[2,3,2,1],[0,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,2,0],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,2,0],[2,2,2,1]],[[1,1,1,2],[0,3,3,2],[1,0,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,4,2],[1,0,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,3],[1,0,2,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,0,2,3],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,0,2,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[1,0,2,2],[1,2,2,2]],[[1,1,1,2],[0,3,3,2],[1,0,3,2],[1,1,2,1]],[[1,1,1,1],[0,3,4,2],[1,0,3,2],[1,1,2,1]],[[1,1,1,1],[0,3,3,3],[1,0,3,2],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[1,0,3,3],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[1,0,3,2],[1,1,2,2]],[[1,1,1,2],[0,3,3,2],[1,0,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,4,2],[1,0,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,3],[1,0,3,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,0,3,3],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,0,3,2],[1,2,1,2]],[[1,1,1,2],[0,3,3,2],[1,0,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,4,2],[1,0,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,3],[1,0,3,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,0,3,3],[1,2,2,0]],[[1,1,1,2],[0,3,3,2],[1,1,1,2],[1,2,2,1]],[[1,1,1,1],[0,4,3,2],[1,1,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,4,2],[1,1,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,3],[1,1,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,1,1,3],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,1,1,2],[2,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,1,1,2],[1,3,2,1]],[[1,1,1,1],[0,3,3,2],[1,1,1,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[1,1,1,2],[1,2,2,2]],[[1,1,1,2],[0,3,3,2],[1,1,2,2],[1,2,1,1]],[[1,1,1,1],[0,4,3,2],[1,1,2,2],[1,2,1,1]],[[1,1,1,1],[0,3,4,2],[1,1,2,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,3],[1,1,2,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,1,2,3],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,1,2,2],[1,2,1,2]],[[1,1,1,2],[0,3,3,2],[1,1,2,2],[1,2,2,0]],[[1,1,1,1],[0,4,3,2],[1,1,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,4,2],[1,1,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,3],[1,1,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,1,2,3],[1,2,2,0]],[[1,1,1,2],[0,3,3,2],[1,1,3,0],[1,2,2,1]],[[1,1,1,1],[0,4,3,2],[1,1,3,0],[1,2,2,1]],[[1,1,1,1],[0,3,4,2],[1,1,3,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,3],[1,1,3,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,1,4,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,1,3,0],[2,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,1,3,0],[1,3,2,1]],[[1,1,1,1],[0,3,3,2],[1,1,3,0],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[1,1,3,0],[1,2,2,2]],[[1,1,1,2],[0,3,3,2],[1,1,3,1],[1,2,1,1]],[[1,1,1,1],[0,4,3,2],[1,1,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,4,2],[1,1,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,3,3],[1,1,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,1,4,1],[1,2,1,1]],[[1,1,1,2],[0,3,3,2],[1,1,3,1],[1,2,2,0]],[[1,1,1,1],[0,4,3,2],[1,1,3,1],[1,2,2,0]],[[1,1,1,1],[0,3,4,2],[1,1,3,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,3],[1,1,3,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,1,4,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,1,3,1],[2,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,1,3,1],[1,3,2,0]],[[1,1,1,1],[0,3,3,2],[1,1,3,1],[1,2,3,0]],[[1,1,1,2],[0,3,3,2],[1,1,3,2],[1,0,2,1]],[[1,1,1,1],[0,3,4,2],[1,1,3,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,3],[1,1,3,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[1,1,3,3],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[1,1,3,2],[1,0,2,2]],[[1,1,1,2],[0,3,3,2],[1,1,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,4,2],[1,1,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,3],[1,1,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[1,1,3,3],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[1,1,3,2],[1,1,1,2]],[[1,1,1,2],[0,3,3,2],[1,1,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,4,2],[1,1,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,3],[1,1,3,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[1,1,3,3],[1,1,2,0]],[[1,2,1,0],[2,1,2,1],[3,3,2,0],[1,2,2,1]],[[1,2,1,0],[3,1,2,1],[2,3,2,0],[1,2,2,1]],[[2,2,1,0],[2,1,2,1],[2,3,2,0],[1,2,2,1]],[[1,1,1,2],[0,3,3,2],[1,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,4,3,2],[1,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,4,2],[1,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,3],[1,2,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,2,0,3],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,2,0,2],[2,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,2,0,2],[1,3,2,1]],[[1,1,1,1],[0,3,3,2],[1,2,0,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[1,2,0,2],[1,2,2,2]],[[1,1,1,2],[0,3,3,2],[1,2,1,2],[1,1,2,1]],[[1,1,1,1],[0,4,3,2],[1,2,1,2],[1,1,2,1]],[[1,1,1,1],[0,3,4,2],[1,2,1,2],[1,1,2,1]],[[1,1,1,1],[0,3,3,3],[1,2,1,2],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[1,2,1,3],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[1,2,1,2],[1,1,3,1]],[[1,1,1,1],[0,3,3,2],[1,2,1,2],[1,1,2,2]],[[1,1,1,2],[0,3,3,2],[1,2,2,2],[1,0,2,1]],[[1,1,1,1],[0,3,4,2],[1,2,2,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,3],[1,2,2,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[1,2,2,3],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[1,2,2,2],[1,0,2,2]],[[1,1,1,2],[0,3,3,2],[1,2,2,2],[1,1,1,1]],[[1,1,1,1],[0,4,3,2],[1,2,2,2],[1,1,1,1]],[[1,1,1,1],[0,3,4,2],[1,2,2,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,3],[1,2,2,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[1,2,2,3],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[1,2,2,2],[1,1,1,2]],[[1,1,1,2],[0,3,3,2],[1,2,2,2],[1,1,2,0]],[[1,1,1,1],[0,4,3,2],[1,2,2,2],[1,1,2,0]],[[1,1,1,1],[0,3,4,2],[1,2,2,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,3],[1,2,2,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[1,2,2,3],[1,1,2,0]],[[1,1,1,2],[0,3,3,2],[1,2,2,2],[1,2,0,1]],[[1,1,1,1],[0,4,3,2],[1,2,2,2],[1,2,0,1]],[[1,1,1,1],[0,3,4,2],[1,2,2,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,3],[1,2,2,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[1,2,2,3],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[1,2,2,2],[1,2,0,2]],[[1,1,1,2],[0,3,3,2],[1,2,2,2],[1,2,1,0]],[[1,1,1,1],[0,4,3,2],[1,2,2,2],[1,2,1,0]],[[1,1,1,1],[0,3,4,2],[1,2,2,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,3],[1,2,2,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,2,2,3],[1,2,1,0]],[[1,2,1,0],[2,1,2,1],[2,3,1,2],[1,3,2,0]],[[1,2,1,0],[2,1,2,1],[2,3,1,2],[2,2,2,0]],[[1,2,1,0],[2,1,2,1],[3,3,1,2],[1,2,2,0]],[[1,2,1,0],[3,1,2,1],[2,3,1,2],[1,2,2,0]],[[2,2,1,0],[2,1,2,1],[2,3,1,2],[1,2,2,0]],[[1,2,1,0],[2,1,2,1],[2,3,1,2],[2,1,2,1]],[[1,1,1,2],[0,3,3,2],[1,2,3,0],[1,1,2,1]],[[1,1,1,1],[0,4,3,2],[1,2,3,0],[1,1,2,1]],[[1,1,1,1],[0,3,4,2],[1,2,3,0],[1,1,2,1]],[[1,1,1,1],[0,3,3,3],[1,2,3,0],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[1,2,4,0],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[1,2,3,0],[1,1,3,1]],[[1,1,1,1],[0,3,3,2],[1,2,3,0],[1,1,2,2]],[[1,1,1,2],[0,3,3,2],[1,2,3,0],[1,2,1,1]],[[1,1,1,1],[0,4,3,2],[1,2,3,0],[1,2,1,1]],[[1,1,1,1],[0,3,4,2],[1,2,3,0],[1,2,1,1]],[[1,1,1,1],[0,3,3,3],[1,2,3,0],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,2,4,0],[1,2,1,1]],[[1,1,1,2],[0,3,3,2],[1,2,3,1],[1,0,2,1]],[[1,1,1,1],[0,3,4,2],[1,2,3,1],[1,0,2,1]],[[1,1,1,1],[0,3,3,3],[1,2,3,1],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[1,2,4,1],[1,0,2,1]],[[1,1,1,2],[0,3,3,2],[1,2,3,1],[1,1,1,1]],[[1,1,1,1],[0,4,3,2],[1,2,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,4,2],[1,2,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,3,3],[1,2,3,1],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[1,2,4,1],[1,1,1,1]],[[1,1,1,2],[0,3,3,2],[1,2,3,1],[1,1,2,0]],[[1,1,1,1],[0,4,3,2],[1,2,3,1],[1,1,2,0]],[[1,1,1,1],[0,3,4,2],[1,2,3,1],[1,1,2,0]],[[1,1,1,1],[0,3,3,3],[1,2,3,1],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[1,2,4,1],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[1,2,3,1],[1,1,3,0]],[[1,1,1,2],[0,3,3,2],[1,2,3,1],[1,2,0,1]],[[1,1,1,1],[0,4,3,2],[1,2,3,1],[1,2,0,1]],[[1,1,1,1],[0,3,4,2],[1,2,3,1],[1,2,0,1]],[[1,1,1,1],[0,3,3,3],[1,2,3,1],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[1,2,4,1],[1,2,0,1]],[[1,1,1,2],[0,3,3,2],[1,2,3,1],[1,2,1,0]],[[1,1,1,1],[0,4,3,2],[1,2,3,1],[1,2,1,0]],[[1,1,1,1],[0,3,4,2],[1,2,3,1],[1,2,1,0]],[[1,1,1,1],[0,3,3,3],[1,2,3,1],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,1,0],[2,1,2,1],[2,4,1,2],[1,1,2,1]],[[1,2,1,0],[2,1,2,1],[3,3,1,2],[1,1,2,1]],[[1,2,1,0],[3,1,2,1],[2,3,1,2],[1,1,2,1]],[[1,3,1,0],[2,1,2,1],[2,3,1,2],[1,1,2,1]],[[2,2,1,0],[2,1,2,1],[2,3,1,2],[1,1,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,1,2],[0,2,2,2]],[[1,2,1,0],[2,1,2,1],[2,3,1,2],[0,2,3,1]],[[1,2,1,0],[2,1,2,1],[2,3,1,2],[0,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,1,3],[0,2,2,1]],[[1,1,1,2],[0,3,3,2],[1,2,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,4,2],[1,2,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,3],[1,2,3,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,1,0],[2,1,2,1],[2,4,1,2],[0,2,2,1]],[[1,2,1,0],[2,1,2,1],[3,3,1,2],[0,2,2,1]],[[1,2,1,0],[3,1,2,1],[2,3,1,2],[0,2,2,1]],[[1,3,1,0],[2,1,2,1],[2,3,1,2],[0,2,2,1]],[[2,2,1,0],[2,1,2,1],[2,3,1,2],[0,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,1,1],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,1,1],[2,2,2,1]],[[1,2,1,0],[2,1,2,1],[3,3,1,1],[1,2,2,1]],[[1,2,1,0],[3,1,2,1],[2,3,1,1],[1,2,2,1]],[[2,2,1,0],[2,1,2,1],[2,3,1,1],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,0,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,3,0,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,1],[3,3,0,2],[1,2,2,1]],[[1,2,1,0],[3,1,2,1],[2,3,0,2],[1,2,2,1]],[[2,2,1,0],[2,1,2,1],[2,3,0,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,2,3,2],[1,3,1,0]],[[1,1,1,2],[0,3,3,2],[1,3,0,1],[1,2,2,1]],[[1,1,1,1],[0,4,3,2],[1,3,0,1],[1,2,2,1]],[[1,1,1,1],[0,3,4,2],[1,3,0,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,3],[1,3,0,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,4,0,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,3,0,1],[2,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,3,0,1],[1,3,2,1]],[[1,1,1,1],[0,3,3,2],[1,3,0,1],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[1,3,0,1],[1,2,2,2]],[[1,1,1,2],[0,3,3,2],[1,3,0,2],[1,1,2,1]],[[1,1,1,1],[0,4,3,2],[1,3,0,2],[1,1,2,1]],[[1,1,1,1],[0,3,4,2],[1,3,0,2],[1,1,2,1]],[[1,1,1,1],[0,3,3,3],[1,3,0,2],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[1,4,0,2],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[1,3,0,3],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[1,3,0,2],[1,1,3,1]],[[1,1,1,1],[0,3,3,2],[1,3,0,2],[1,1,2,2]],[[1,1,1,2],[0,3,3,2],[1,3,0,2],[1,2,1,1]],[[1,1,1,1],[0,4,3,2],[1,3,0,2],[1,2,1,1]],[[1,1,1,1],[0,3,4,2],[1,3,0,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,3],[1,3,0,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,4,0,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,3,0,3],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,3,0,2],[2,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,3,0,2],[1,3,1,1]],[[1,1,1,1],[0,3,3,2],[1,3,0,2],[1,2,1,2]],[[1,1,1,2],[0,3,3,2],[1,3,0,2],[1,2,2,0]],[[1,1,1,1],[0,4,3,2],[1,3,0,2],[1,2,2,0]],[[1,1,1,1],[0,3,4,2],[1,3,0,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,3],[1,3,0,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,4,0,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,3,0,3],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,3,0,2],[2,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,3,0,2],[1,3,2,0]],[[1,1,1,1],[0,3,3,2],[1,3,0,2],[1,2,3,0]],[[1,1,1,2],[0,3,3,2],[1,3,1,0],[1,2,2,1]],[[1,1,1,1],[0,4,3,2],[1,3,1,0],[1,2,2,1]],[[1,1,1,1],[0,3,4,2],[1,3,1,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,3],[1,3,1,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,4,1,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,3,1,0],[2,2,2,1]],[[1,1,1,1],[0,3,3,2],[1,3,1,0],[1,3,2,1]],[[1,1,1,1],[0,3,3,2],[1,3,1,0],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[1,3,1,0],[1,2,2,2]],[[1,1,1,2],[0,3,3,2],[1,3,1,1],[1,2,2,0]],[[1,1,1,1],[0,4,3,2],[1,3,1,1],[1,2,2,0]],[[1,1,1,1],[0,3,4,2],[1,3,1,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,3],[1,3,1,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,4,1,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,3,1,1],[2,2,2,0]],[[1,1,1,1],[0,3,3,2],[1,3,1,1],[1,3,2,0]],[[1,1,1,1],[0,3,3,2],[1,3,1,1],[1,2,3,0]],[[1,1,1,2],[0,3,3,2],[1,3,1,2],[1,1,1,1]],[[1,1,1,1],[0,4,3,2],[1,3,1,2],[1,1,1,1]],[[1,1,1,1],[0,3,4,2],[1,3,1,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,3],[1,3,1,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[1,4,1,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[1,3,1,3],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[1,3,1,2],[1,1,1,2]],[[1,1,1,2],[0,3,3,2],[1,3,1,2],[1,1,2,0]],[[1,1,1,1],[0,4,3,2],[1,3,1,2],[1,1,2,0]],[[1,1,1,1],[0,3,4,2],[1,3,1,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,3],[1,3,1,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[1,4,1,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[1,3,1,3],[1,1,2,0]],[[1,1,1,2],[0,3,3,2],[1,3,1,2],[1,2,0,1]],[[1,1,1,1],[0,4,3,2],[1,3,1,2],[1,2,0,1]],[[1,1,1,1],[0,3,4,2],[1,3,1,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,3],[1,3,1,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[1,4,1,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[1,3,1,3],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[1,3,1,2],[2,2,0,1]],[[1,1,1,1],[0,3,3,2],[1,3,1,2],[1,3,0,1]],[[1,1,1,1],[0,3,3,2],[1,3,1,2],[1,2,0,2]],[[1,1,1,2],[0,3,3,2],[1,3,1,2],[1,2,1,0]],[[1,1,1,1],[0,4,3,2],[1,3,1,2],[1,2,1,0]],[[1,1,1,1],[0,3,4,2],[1,3,1,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,3],[1,3,1,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,4,1,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,3,1,3],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,3,1,2],[2,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,1,0],[2,1,2,1],[2,2,3,2],[2,2,1,0]],[[1,2,1,0],[2,1,2,1],[3,2,3,2],[1,2,1,0]],[[1,2,1,0],[3,1,2,1],[2,2,3,2],[1,2,1,0]],[[1,3,1,0],[2,1,2,1],[2,2,3,2],[1,2,1,0]],[[2,2,1,0],[2,1,2,1],[2,2,3,2],[1,2,1,0]],[[1,2,1,0],[2,1,2,1],[2,2,3,2],[1,3,0,1]],[[1,2,1,0],[2,1,2,1],[2,2,3,2],[2,2,0,1]],[[1,2,1,0],[2,1,2,1],[3,2,3,2],[1,2,0,1]],[[1,2,1,0],[3,1,2,1],[2,2,3,2],[1,2,0,1]],[[1,3,1,0],[2,1,2,1],[2,2,3,2],[1,2,0,1]],[[1,1,1,2],[0,3,3,2],[1,3,2,0],[1,1,2,1]],[[1,1,1,1],[0,4,3,2],[1,3,2,0],[1,1,2,1]],[[1,1,1,1],[0,3,4,2],[1,3,2,0],[1,1,2,1]],[[1,1,1,1],[0,3,3,3],[1,3,2,0],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[1,4,2,0],[1,1,2,1]],[[1,1,1,2],[0,3,3,2],[1,3,2,0],[1,2,1,1]],[[1,1,1,1],[0,4,3,2],[1,3,2,0],[1,2,1,1]],[[1,1,1,1],[0,3,4,2],[1,3,2,0],[1,2,1,1]],[[1,1,1,1],[0,3,3,3],[1,3,2,0],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,4,2,0],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,3,2,0],[2,2,1,1]],[[1,1,1,1],[0,3,3,2],[1,3,2,0],[1,3,1,1]],[[1,1,1,2],[0,3,3,2],[1,3,2,1],[1,1,1,1]],[[1,1,1,1],[0,4,3,2],[1,3,2,1],[1,1,1,1]],[[1,1,1,1],[0,3,4,2],[1,3,2,1],[1,1,1,1]],[[1,1,1,1],[0,3,3,3],[1,3,2,1],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[1,4,2,1],[1,1,1,1]],[[1,1,1,2],[0,3,3,2],[1,3,2,1],[1,1,2,0]],[[1,1,1,1],[0,4,3,2],[1,3,2,1],[1,1,2,0]],[[1,1,1,1],[0,3,4,2],[1,3,2,1],[1,1,2,0]],[[1,1,1,1],[0,3,3,3],[1,3,2,1],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[1,4,2,1],[1,1,2,0]],[[1,1,1,2],[0,3,3,2],[1,3,2,1],[1,2,0,1]],[[1,1,1,1],[0,4,3,2],[1,3,2,1],[1,2,0,1]],[[1,1,1,1],[0,3,4,2],[1,3,2,1],[1,2,0,1]],[[1,1,1,1],[0,3,3,3],[1,3,2,1],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[1,4,2,1],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[1,3,2,1],[2,2,0,1]],[[1,1,1,1],[0,3,3,2],[1,3,2,1],[1,3,0,1]],[[1,1,1,2],[0,3,3,2],[1,3,2,1],[1,2,1,0]],[[1,1,1,1],[0,4,3,2],[1,3,2,1],[1,2,1,0]],[[1,1,1,1],[0,3,4,2],[1,3,2,1],[1,2,1,0]],[[1,1,1,1],[0,3,3,3],[1,3,2,1],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,4,2,1],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,3,2,1],[2,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,3,2,1],[1,3,1,0]],[[2,2,1,0],[2,1,2,1],[2,2,3,2],[1,2,0,1]],[[1,2,1,0],[2,1,2,1],[2,2,3,2],[0,2,3,0]],[[1,2,1,0],[2,1,2,1],[2,2,3,2],[0,3,2,0]],[[1,2,1,0],[2,1,2,1],[2,2,3,3],[0,2,2,0]],[[1,2,1,0],[2,1,2,1],[2,2,4,2],[0,2,2,0]],[[1,2,1,0],[2,1,2,1],[2,2,3,2],[0,2,1,2]],[[1,2,1,0],[2,1,2,1],[2,2,3,3],[0,2,1,1]],[[1,2,1,0],[2,1,2,1],[2,2,4,2],[0,2,1,1]],[[1,2,1,0],[2,1,2,1],[2,2,3,1],[1,3,1,1]],[[1,2,1,0],[2,1,2,1],[2,2,3,1],[2,2,1,1]],[[1,2,1,0],[2,1,2,1],[3,2,3,1],[1,2,1,1]],[[1,2,1,0],[3,1,2,1],[2,2,3,1],[1,2,1,1]],[[1,3,1,0],[2,1,2,1],[2,2,3,1],[1,2,1,1]],[[2,2,1,0],[2,1,2,1],[2,2,3,1],[1,2,1,1]],[[1,2,1,0],[2,1,2,1],[2,2,3,1],[0,2,2,2]],[[1,2,1,0],[2,1,2,1],[2,2,3,1],[0,2,3,1]],[[1,2,1,0],[2,1,2,1],[2,2,3,1],[0,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,2,4,1],[0,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,2,3,0],[1,2,3,1]],[[1,2,1,0],[2,1,2,1],[2,2,3,0],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,2,3,0],[2,2,2,1]],[[1,2,1,0],[2,1,2,1],[3,2,3,0],[1,2,2,1]],[[1,2,1,0],[3,1,2,1],[2,2,3,0],[1,2,2,1]],[[1,3,1,0],[2,1,2,1],[2,2,3,0],[1,2,2,1]],[[2,2,1,0],[2,1,2,1],[2,2,3,0],[1,2,2,1]],[[1,1,1,1],[0,4,3,2],[1,3,3,0],[1,1,2,0]],[[1,1,1,1],[0,3,4,2],[1,3,3,0],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[1,4,3,0],[1,1,2,0]],[[1,1,1,1],[0,4,3,2],[1,3,3,0],[1,2,1,0]],[[1,1,1,1],[0,3,4,2],[1,3,3,0],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,4,3,0],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,3,3,0],[2,2,1,0]],[[1,1,1,1],[0,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,1,0],[2,1,2,1],[2,2,2,2],[1,2,3,0]],[[1,2,1,0],[2,1,2,1],[2,2,2,2],[1,3,2,0]],[[1,2,1,0],[2,1,2,1],[2,2,2,2],[2,2,2,0]],[[1,2,1,0],[2,1,2,1],[3,2,2,2],[1,2,2,0]],[[1,2,1,0],[3,1,2,1],[2,2,2,2],[1,2,2,0]],[[1,3,1,0],[2,1,2,1],[2,2,2,2],[1,2,2,0]],[[2,2,1,0],[2,1,2,1],[2,2,2,2],[1,2,2,0]],[[1,2,1,0],[2,1,2,1],[2,2,2,2],[0,2,2,2]],[[1,2,1,0],[2,1,2,1],[2,2,2,2],[0,2,3,1]],[[1,2,1,0],[2,1,2,1],[2,2,2,2],[0,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,2,2,3],[0,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,2,2,1],[1,2,2,2]],[[1,2,1,0],[2,1,2,1],[2,2,2,1],[1,2,3,1]],[[1,2,1,0],[2,1,2,1],[2,2,2,1],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,2,2,1],[2,2,2,1]],[[1,1,1,2],[0,3,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,1,1],[0,4,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,1,1],[0,3,4,2],[1,3,3,1],[1,2,0,0]],[[1,1,1,1],[0,3,3,3],[1,3,3,1],[1,2,0,0]],[[1,1,1,1],[0,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,2,1,0],[2,1,2,1],[3,2,2,1],[1,2,2,1]],[[1,2,1,0],[3,1,2,1],[2,2,2,1],[1,2,2,1]],[[1,3,1,0],[2,1,2,1],[2,2,2,1],[1,2,2,1]],[[2,2,1,0],[2,1,2,1],[2,2,2,1],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,2,1,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,1],[2,2,1,2],[1,2,3,1]],[[1,2,1,0],[2,1,2,1],[2,2,1,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,2,1,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,2,1,3],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[3,2,1,2],[1,2,2,1]],[[1,2,1,0],[3,1,2,1],[2,2,1,2],[1,2,2,1]],[[1,3,1,0],[2,1,2,1],[2,2,1,2],[1,2,2,1]],[[2,2,1,0],[2,1,2,1],[2,2,1,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,1,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,2,1],[2,1,3,2],[1,3,2,0]],[[1,2,1,0],[2,1,2,1],[2,1,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,2,1],[2,1,3,3],[1,2,2,0]],[[1,2,1,0],[2,1,2,1],[2,1,4,2],[1,2,2,0]],[[1,2,1,0],[2,1,2,1],[3,1,3,2],[1,2,2,0]],[[1,2,1,0],[3,1,2,1],[2,1,3,2],[1,2,2,0]],[[1,3,1,0],[2,1,2,1],[2,1,3,2],[1,2,2,0]],[[2,2,1,0],[2,1,2,1],[2,1,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,2,1],[2,1,3,2],[1,2,1,2]],[[1,2,1,0],[2,1,2,1],[2,1,3,3],[1,2,1,1]],[[1,2,1,0],[2,1,2,1],[2,1,4,2],[1,2,1,1]],[[1,2,1,0],[2,1,2,1],[2,1,3,1],[1,2,2,2]],[[1,2,1,0],[2,1,2,1],[2,1,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,2,1],[2,1,3,1],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,1,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,1,4,1],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[3,1,3,1],[1,2,2,1]],[[1,2,1,0],[3,1,2,1],[2,1,3,1],[1,2,2,1]],[[1,3,1,0],[2,1,2,1],[2,1,3,1],[1,2,2,1]],[[2,2,1,0],[2,1,2,1],[2,1,3,1],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,1,2,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,1],[2,1,2,2],[1,2,3,1]],[[1,2,1,0],[2,1,2,1],[2,1,2,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[2,1,2,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,1],[2,1,2,3],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[3,1,2,2],[1,2,2,1]],[[1,2,1,0],[3,1,2,1],[2,1,2,2],[1,2,2,1]],[[1,3,1,0],[2,1,2,1],[2,1,2,2],[1,2,2,1]],[[2,2,1,0],[2,1,2,1],[2,1,2,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,1,2,1],[1,3,3,2],[2,2,1,0]],[[1,2,1,0],[2,1,2,1],[1,3,3,3],[1,2,1,0]],[[1,2,1,0],[2,1,2,1],[1,3,4,2],[1,2,1,0]],[[1,2,1,0],[2,1,2,1],[1,4,3,2],[1,2,1,0]],[[1,2,1,0],[2,1,2,1],[1,3,3,2],[1,2,0,2]],[[1,2,1,0],[2,1,2,1],[1,3,3,2],[1,3,0,1]],[[1,2,1,0],[2,1,2,1],[1,3,3,2],[2,2,0,1]],[[1,2,1,0],[2,1,2,1],[1,3,3,3],[1,2,0,1]],[[1,2,1,0],[2,1,2,1],[1,3,4,2],[1,2,0,1]],[[1,2,1,0],[2,1,2,1],[1,4,3,2],[1,2,0,1]],[[1,2,1,0],[2,1,2,1],[1,3,3,2],[1,1,3,0]],[[1,2,1,0],[2,1,2,1],[1,3,3,3],[1,1,2,0]],[[1,2,1,0],[2,1,2,1],[1,3,4,2],[1,1,2,0]],[[1,2,1,0],[2,1,2,1],[1,4,3,2],[1,1,2,0]],[[1,2,1,0],[2,1,2,1],[1,3,3,2],[1,1,1,2]],[[1,2,1,0],[2,1,2,1],[1,3,3,3],[1,1,1,1]],[[1,2,1,0],[2,1,2,1],[1,3,4,2],[1,1,1,1]],[[1,2,1,0],[2,1,2,1],[1,4,3,2],[1,1,1,1]],[[1,2,1,0],[2,1,2,1],[1,3,3,1],[1,3,1,1]],[[1,2,1,0],[2,1,2,1],[1,3,3,1],[2,2,1,1]],[[1,2,1,0],[2,1,2,1],[1,3,4,1],[1,2,1,1]],[[1,2,1,0],[2,1,2,1],[1,4,3,1],[1,2,1,1]],[[1,2,1,0],[2,1,2,1],[1,3,3,1],[1,1,2,2]],[[1,2,1,0],[2,1,2,1],[1,3,3,1],[1,1,3,1]],[[1,2,1,0],[2,1,2,1],[1,3,4,1],[1,1,2,1]],[[1,2,1,0],[2,1,2,1],[1,4,3,1],[1,1,2,1]],[[1,2,1,0],[2,1,2,1],[1,3,3,0],[1,2,3,1]],[[1,2,1,0],[2,1,2,1],[1,3,3,0],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[1,3,3,0],[2,2,2,1]],[[1,2,1,0],[2,1,2,1],[1,4,3,0],[1,2,2,1]],[[1,1,1,2],[0,3,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[0,4,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,4,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,3],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[3,0,1,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,1,3],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,1,2],[2,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,1,2],[1,3,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,1,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[2,0,1,2],[1,2,2,2]],[[1,1,1,2],[0,3,3,2],[2,0,2,2],[0,2,2,1]],[[1,1,1,1],[0,3,4,2],[2,0,2,2],[0,2,2,1]],[[1,1,1,1],[0,3,3,3],[2,0,2,2],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,2,3],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,2,2],[0,2,3,1]],[[1,1,1,1],[0,3,3,2],[2,0,2,2],[0,2,2,2]],[[1,1,1,2],[0,3,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,1,1],[0,4,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,1,1],[0,3,4,2],[2,0,2,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,3],[2,0,2,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,0,2,3],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,0,2,2],[1,2,1,2]],[[1,1,1,2],[0,3,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,1,1],[0,4,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,4,2],[2,0,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,3],[2,0,2,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,0,2,3],[1,2,2,0]],[[1,1,1,2],[0,3,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[0,4,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[0,3,4,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,3],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[3,0,3,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,4,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,3,0],[2,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,3,0],[1,3,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,3,0],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[2,0,3,0],[1,2,2,2]],[[1,1,1,2],[0,3,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,1,1],[0,4,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,4,2],[2,0,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,3,3],[2,0,3,1],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,0,4,1],[1,2,1,1]],[[1,1,1,2],[0,3,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[0,4,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[0,3,4,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,3],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[3,0,3,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,0,4,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,0,3,1],[2,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,0,3,1],[1,3,2,0]],[[1,1,1,1],[0,3,3,2],[2,0,3,1],[1,2,3,0]],[[1,1,1,2],[0,3,3,2],[2,0,3,2],[0,1,2,1]],[[1,1,1,1],[0,3,4,2],[2,0,3,2],[0,1,2,1]],[[1,1,1,1],[0,3,3,3],[2,0,3,2],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,3,3],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,0,3,2],[0,1,2,2]],[[1,1,1,2],[0,3,3,2],[2,0,3,2],[0,2,1,1]],[[1,1,1,1],[0,3,4,2],[2,0,3,2],[0,2,1,1]],[[1,1,1,1],[0,3,3,3],[2,0,3,2],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,0,3,3],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,0,3,2],[0,2,1,2]],[[1,1,1,2],[0,3,3,2],[2,0,3,2],[0,2,2,0]],[[1,1,1,1],[0,3,4,2],[2,0,3,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,3],[2,0,3,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,0,3,3],[0,2,2,0]],[[1,2,1,0],[2,1,2,1],[1,3,2,2],[1,2,3,0]],[[1,2,1,0],[2,1,2,1],[1,3,2,2],[1,3,2,0]],[[1,2,1,0],[2,1,2,1],[1,3,2,2],[2,2,2,0]],[[1,2,1,0],[2,1,2,1],[1,4,2,2],[1,2,2,0]],[[1,2,1,0],[2,1,2,1],[1,3,2,2],[1,1,2,2]],[[1,2,1,0],[2,1,2,1],[1,3,2,2],[1,1,3,1]],[[1,1,1,2],[0,3,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[0,4,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,4,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,3],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[3,1,0,2],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,0,3],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,0,2],[2,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,0,2],[1,3,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,0,2],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[2,1,0,2],[1,2,2,2]],[[1,1,1,2],[0,3,3,2],[2,1,1,2],[0,2,2,1]],[[1,1,1,1],[0,4,3,2],[2,1,1,2],[0,2,2,1]],[[1,1,1,1],[0,3,4,2],[2,1,1,2],[0,2,2,1]],[[1,1,1,1],[0,3,3,3],[2,1,1,2],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,1,3],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,1,2],[0,3,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,1,2],[0,2,3,1]],[[1,1,1,1],[0,3,3,2],[2,1,1,2],[0,2,2,2]],[[1,1,1,2],[0,3,3,2],[2,1,2,2],[0,2,1,1]],[[1,1,1,1],[0,4,3,2],[2,1,2,2],[0,2,1,1]],[[1,1,1,1],[0,3,4,2],[2,1,2,2],[0,2,1,1]],[[1,1,1,1],[0,3,3,3],[2,1,2,2],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,1,2,3],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,1,2,2],[0,2,1,2]],[[1,1,1,2],[0,3,3,2],[2,1,2,2],[0,2,2,0]],[[1,1,1,1],[0,4,3,2],[2,1,2,2],[0,2,2,0]],[[1,1,1,1],[0,3,4,2],[2,1,2,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,3],[2,1,2,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,1,0],[2,1,2,1],[1,3,2,3],[1,1,2,1]],[[1,2,1,0],[2,1,2,1],[1,3,2,1],[1,2,2,2]],[[1,2,1,0],[2,1,2,1],[1,3,2,1],[1,2,3,1]],[[1,2,1,0],[2,1,2,1],[1,3,2,1],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[1,3,2,1],[2,2,2,1]],[[1,2,1,0],[2,1,2,1],[1,4,2,1],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[1,3,1,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,1],[1,3,1,2],[1,2,3,1]],[[1,2,1,0],[2,1,2,1],[1,3,1,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[1,3,1,2],[2,2,2,1]],[[1,1,1,2],[0,3,3,2],[2,1,3,0],[0,2,2,1]],[[1,1,1,1],[0,4,3,2],[2,1,3,0],[0,2,2,1]],[[1,1,1,1],[0,3,4,2],[2,1,3,0],[0,2,2,1]],[[1,1,1,1],[0,3,3,3],[2,1,3,0],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,4,0],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,3,0],[0,3,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,3,0],[0,2,3,1]],[[1,1,1,1],[0,3,3,2],[2,1,3,0],[0,2,2,2]],[[1,1,1,2],[0,3,3,2],[2,1,3,1],[0,2,1,1]],[[1,1,1,1],[0,4,3,2],[2,1,3,1],[0,2,1,1]],[[1,1,1,1],[0,3,4,2],[2,1,3,1],[0,2,1,1]],[[1,1,1,1],[0,3,3,3],[2,1,3,1],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,1,4,1],[0,2,1,1]],[[1,1,1,2],[0,3,3,2],[2,1,3,1],[0,2,2,0]],[[1,1,1,1],[0,4,3,2],[2,1,3,1],[0,2,2,0]],[[1,1,1,1],[0,3,4,2],[2,1,3,1],[0,2,2,0]],[[1,1,1,1],[0,3,3,3],[2,1,3,1],[0,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,1,4,1],[0,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,1,3,1],[0,3,2,0]],[[1,1,1,1],[0,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,1,0],[2,1,2,1],[1,3,1,3],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[1,4,1,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[1,2,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,2,1],[1,2,3,2],[1,3,2,0]],[[1,1,1,2],[0,3,3,2],[2,1,3,2],[0,0,2,1]],[[1,1,1,1],[0,3,4,2],[2,1,3,2],[0,0,2,1]],[[1,1,1,1],[0,3,3,3],[2,1,3,2],[0,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,3,3],[0,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,1,3,2],[0,0,2,2]],[[1,1,1,2],[0,3,3,2],[2,1,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,4,2],[2,1,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,3],[2,1,3,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,1,3,3],[0,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,1,3,2],[0,1,1,2]],[[1,1,1,2],[0,3,3,2],[2,1,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,4,2],[2,1,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,3],[2,1,3,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,1,0],[2,1,2,1],[1,2,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,2,1],[1,2,3,3],[1,2,2,0]],[[1,2,1,0],[2,1,2,1],[1,2,4,2],[1,2,2,0]],[[1,2,1,0],[2,1,2,1],[1,2,3,2],[1,2,1,2]],[[1,2,1,0],[2,1,2,1],[1,2,3,3],[1,2,1,1]],[[1,2,1,0],[2,1,2,1],[1,2,4,2],[1,2,1,1]],[[1,2,1,0],[2,1,2,1],[1,2,3,1],[1,2,2,2]],[[1,2,1,0],[2,1,2,1],[1,2,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,2,1],[1,2,3,1],[1,3,2,1]],[[1,1,1,2],[0,3,3,2],[2,1,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,4,2],[2,1,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,3],[2,1,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,1,3,3],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,1,3,2],[1,0,1,2]],[[1,1,1,2],[0,3,3,2],[2,1,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,4,2],[2,1,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,3],[2,1,3,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,1,0],[2,1,2,1],[1,2,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,2,1],[1,2,4,1],[1,2,2,1]],[[1,2,1,0],[2,1,2,1],[1,2,2,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,1],[1,2,2,2],[1,2,3,1]],[[1,2,1,0],[2,1,2,1],[1,2,2,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,1],[1,2,2,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,1],[1,2,2,3],[1,2,2,1]],[[1,2,1,0],[2,1,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,1,0],[2,1,2,0],[2,4,3,2],[1,2,0,1]],[[1,2,1,0],[2,1,2,0],[3,3,3,2],[1,2,0,1]],[[1,2,1,0],[3,1,2,0],[2,3,3,2],[1,2,0,1]],[[2,2,1,0],[2,1,2,0],[2,3,3,2],[1,2,0,1]],[[1,2,1,0],[2,1,2,0],[2,3,3,2],[2,1,1,1]],[[1,2,1,0],[2,1,2,0],[2,3,4,2],[1,1,1,1]],[[1,2,1,0],[2,1,2,0],[2,4,3,2],[1,1,1,1]],[[1,2,1,0],[2,1,2,0],[3,3,3,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[3,2,0,1],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,0,1],[2,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,0,1],[1,3,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,0,1],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[2,2,0,1],[1,2,2,2]],[[1,1,1,2],[0,3,3,2],[2,2,0,2],[0,2,2,1]],[[1,1,1,1],[0,4,3,2],[2,2,0,2],[0,2,2,1]],[[1,1,1,1],[0,3,4,2],[2,2,0,2],[0,2,2,1]],[[1,1,1,1],[0,3,3,3],[2,2,0,2],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,0,3],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,0,2],[0,3,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,0,2],[0,2,3,1]],[[1,1,1,1],[0,3,3,2],[2,2,0,2],[0,2,2,2]],[[1,1,1,1],[0,3,3,2],[3,2,0,2],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,0,2],[2,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,0,2],[1,3,1,1]],[[1,1,1,1],[0,3,3,2],[3,2,0,2],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,0,2],[2,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,0,2],[1,3,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,0,2],[1,2,3,0]],[[1,1,1,1],[0,3,3,2],[3,2,1,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,0],[2,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,0],[1,3,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,0],[1,2,3,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,0],[1,2,2,2]],[[1,1,1,1],[0,3,3,2],[3,2,1,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,1,1],[2,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,1,1],[1,3,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,1,1],[1,2,3,0]],[[1,1,1,2],[0,3,3,2],[2,2,1,2],[0,1,2,1]],[[1,1,1,1],[0,4,3,2],[2,2,1,2],[0,1,2,1]],[[1,1,1,1],[0,3,4,2],[2,2,1,2],[0,1,2,1]],[[1,1,1,1],[0,3,3,3],[2,2,1,2],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,3],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,2],[0,1,3,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,2],[0,1,2,2]],[[1,1,1,2],[0,3,3,2],[2,2,1,2],[1,0,2,1]],[[1,1,1,1],[0,4,3,2],[2,2,1,2],[1,0,2,1]],[[1,1,1,1],[0,3,4,2],[2,2,1,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,3],[2,2,1,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,3],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,2],[1,0,3,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,2],[1,0,2,2]],[[1,1,1,1],[0,3,3,2],[3,2,1,2],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,2],[2,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,1,2],[1,3,0,1]],[[1,1,1,1],[0,3,3,2],[3,2,1,2],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,2,1,2],[2,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,1,0],[3,1,2,0],[2,3,3,2],[1,1,1,1]],[[1,3,1,0],[2,1,2,0],[2,3,3,2],[1,1,1,1]],[[2,2,1,0],[2,1,2,0],[2,3,3,2],[1,1,1,1]],[[1,2,1,0],[2,1,2,0],[2,3,3,2],[1,0,2,2]],[[1,2,1,0],[2,1,2,0],[2,3,3,2],[1,0,3,1]],[[1,2,1,0],[2,1,2,0],[2,3,3,2],[2,0,2,1]],[[1,2,1,0],[2,1,2,0],[2,3,4,2],[1,0,2,1]],[[1,2,1,0],[2,1,2,0],[2,4,3,2],[1,0,2,1]],[[1,2,1,0],[2,1,2,0],[3,3,3,2],[1,0,2,1]],[[1,2,1,0],[3,1,2,0],[2,3,3,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[3,2,2,0],[1,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,0],[2,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,0],[1,3,1,1]],[[1,1,1,1],[0,3,3,2],[3,2,2,1],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,1],[2,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,1],[1,3,0,1]],[[1,1,1,1],[0,3,3,2],[3,2,2,1],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,2,2,1],[2,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,2,2,1],[1,3,1,0]],[[1,3,1,0],[2,1,2,0],[2,3,3,2],[1,0,2,1]],[[2,2,1,0],[2,1,2,0],[2,3,3,2],[1,0,2,1]],[[1,1,1,2],[0,3,3,2],[2,2,2,2],[0,0,2,1]],[[1,1,1,1],[0,4,3,2],[2,2,2,2],[0,0,2,1]],[[1,1,1,1],[0,3,4,2],[2,2,2,2],[0,0,2,1]],[[1,1,1,1],[0,3,3,3],[2,2,2,2],[0,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,3],[0,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,2],[0,0,2,2]],[[1,1,1,2],[0,3,3,2],[2,2,2,2],[0,1,1,1]],[[1,1,1,1],[0,4,3,2],[2,2,2,2],[0,1,1,1]],[[1,1,1,1],[0,3,4,2],[2,2,2,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,3],[2,2,2,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,3],[0,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,2],[0,1,1,2]],[[1,1,1,2],[0,3,3,2],[2,2,2,2],[0,1,2,0]],[[1,1,1,1],[0,4,3,2],[2,2,2,2],[0,1,2,0]],[[1,1,1,1],[0,3,4,2],[2,2,2,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,3],[2,2,2,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,2,3],[0,1,2,0]],[[1,1,1,2],[0,3,3,2],[2,2,2,2],[0,2,0,1]],[[1,1,1,1],[0,4,3,2],[2,2,2,2],[0,2,0,1]],[[1,1,1,1],[0,3,4,2],[2,2,2,2],[0,2,0,1]],[[1,1,1,1],[0,3,3,3],[2,2,2,2],[0,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,3],[0,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,2],[0,2,0,2]],[[1,1,1,2],[0,3,3,2],[2,2,2,2],[0,2,1,0]],[[1,1,1,1],[0,4,3,2],[2,2,2,2],[0,2,1,0]],[[1,1,1,1],[0,3,4,2],[2,2,2,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,3],[2,2,2,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,1,0],[2,1,2,0],[2,3,3,2],[0,3,1,1]],[[1,2,1,0],[2,1,2,0],[2,3,4,2],[0,2,1,1]],[[1,1,1,2],[0,3,3,2],[2,2,2,2],[1,0,1,1]],[[1,1,1,1],[0,4,3,2],[2,2,2,2],[1,0,1,1]],[[1,1,1,1],[0,3,4,2],[2,2,2,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,3],[2,2,2,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,3],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,2],[1,0,1,2]],[[1,1,1,2],[0,3,3,2],[2,2,2,2],[1,0,2,0]],[[1,1,1,1],[0,4,3,2],[2,2,2,2],[1,0,2,0]],[[1,1,1,1],[0,3,4,2],[2,2,2,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,3],[2,2,2,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,2,3],[1,0,2,0]],[[1,1,1,2],[0,3,3,2],[2,2,2,2],[1,1,0,1]],[[1,1,1,1],[0,4,3,2],[2,2,2,2],[1,1,0,1]],[[1,1,1,1],[0,3,4,2],[2,2,2,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,3],[2,2,2,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,3],[1,1,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,2,2],[1,1,0,2]],[[1,1,1,2],[0,3,3,2],[2,2,2,2],[1,1,1,0]],[[1,1,1,1],[0,4,3,2],[2,2,2,2],[1,1,1,0]],[[1,1,1,1],[0,3,4,2],[2,2,2,2],[1,1,1,0]],[[1,1,1,1],[0,3,3,3],[2,2,2,2],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,1,0],[2,1,2,0],[2,4,3,2],[0,2,1,1]],[[1,2,1,0],[2,1,2,0],[3,3,3,2],[0,2,1,1]],[[1,2,1,0],[3,1,2,0],[2,3,3,2],[0,2,1,1]],[[1,3,1,0],[2,1,2,0],[2,3,3,2],[0,2,1,1]],[[2,2,1,0],[2,1,2,0],[2,3,3,2],[0,2,1,1]],[[1,2,1,0],[2,1,2,0],[2,3,3,2],[0,1,2,2]],[[1,2,1,0],[2,1,2,0],[2,3,3,2],[0,1,3,1]],[[1,2,1,0],[2,1,2,0],[2,3,4,2],[0,1,2,1]],[[1,2,1,0],[2,1,2,0],[2,4,3,2],[0,1,2,1]],[[1,2,1,0],[2,1,2,0],[3,3,3,2],[0,1,2,1]],[[1,2,1,0],[3,1,2,0],[2,3,3,2],[0,1,2,1]],[[1,3,1,0],[2,1,2,0],[2,3,3,2],[0,1,2,1]],[[2,2,1,0],[2,1,2,0],[2,3,3,2],[0,1,2,1]],[[1,2,1,0],[2,1,2,0],[2,3,2,2],[2,1,2,1]],[[1,2,1,0],[2,1,2,0],[2,4,2,2],[1,1,2,1]],[[1,2,1,0],[2,1,2,0],[3,3,2,2],[1,1,2,1]],[[1,2,1,0],[3,1,2,0],[2,3,2,2],[1,1,2,1]],[[1,3,1,0],[2,1,2,0],[2,3,2,2],[1,1,2,1]],[[2,2,1,0],[2,1,2,0],[2,3,2,2],[1,1,2,1]],[[1,2,1,0],[2,1,2,0],[2,3,2,2],[0,2,2,2]],[[1,2,1,0],[2,1,2,0],[2,3,2,2],[0,2,3,1]],[[1,2,1,0],[2,1,2,0],[2,3,2,2],[0,3,2,1]],[[1,2,1,0],[2,1,2,0],[2,4,2,2],[0,2,2,1]],[[1,2,1,0],[2,1,2,0],[3,3,2,2],[0,2,2,1]],[[1,2,1,0],[3,1,2,0],[2,3,2,2],[0,2,2,1]],[[1,3,1,0],[2,1,2,0],[2,3,2,2],[0,2,2,1]],[[1,1,1,2],[0,3,3,2],[2,2,3,0],[0,1,2,1]],[[1,1,1,1],[0,4,3,2],[2,2,3,0],[0,1,2,1]],[[1,1,1,1],[0,3,4,2],[2,2,3,0],[0,1,2,1]],[[1,1,1,1],[0,3,3,3],[2,2,3,0],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,4,0],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,3,0],[0,1,3,1]],[[1,1,1,1],[0,3,3,2],[2,2,3,0],[0,1,2,2]],[[1,1,1,2],[0,3,3,2],[2,2,3,0],[0,2,1,1]],[[1,1,1,1],[0,4,3,2],[2,2,3,0],[0,2,1,1]],[[1,1,1,1],[0,3,4,2],[2,2,3,0],[0,2,1,1]],[[1,1,1,1],[0,3,3,3],[2,2,3,0],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,4,0],[0,2,1,1]],[[1,1,1,2],[0,3,3,2],[2,2,3,0],[1,0,2,1]],[[1,1,1,1],[0,4,3,2],[2,2,3,0],[1,0,2,1]],[[1,1,1,1],[0,3,4,2],[2,2,3,0],[1,0,2,1]],[[1,1,1,1],[0,3,3,3],[2,2,3,0],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,4,0],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,3,0],[1,0,3,1]],[[1,1,1,1],[0,3,3,2],[2,2,3,0],[1,0,2,2]],[[1,1,1,2],[0,3,3,2],[2,2,3,0],[1,1,1,1]],[[1,1,1,1],[0,4,3,2],[2,2,3,0],[1,1,1,1]],[[1,1,1,1],[0,3,4,2],[2,2,3,0],[1,1,1,1]],[[1,1,1,1],[0,3,3,3],[2,2,3,0],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,4,0],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[3,2,3,0],[1,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,2,3,0],[2,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,2,3,0],[1,3,1,0]],[[2,2,1,0],[2,1,2,0],[2,3,2,2],[0,2,2,1]],[[1,2,1,0],[2,1,2,0],[2,3,1,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,0],[2,3,1,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,0],[3,3,1,2],[1,2,2,1]],[[1,2,1,0],[3,1,2,0],[2,3,1,2],[1,2,2,1]],[[2,2,1,0],[2,1,2,0],[2,3,1,2],[1,2,2,1]],[[1,1,1,2],[0,3,3,2],[2,2,3,1],[0,0,2,1]],[[1,1,1,1],[0,4,3,2],[2,2,3,1],[0,0,2,1]],[[1,1,1,1],[0,3,4,2],[2,2,3,1],[0,0,2,1]],[[1,1,1,1],[0,3,3,3],[2,2,3,1],[0,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,2,4,1],[0,0,2,1]],[[1,1,1,2],[0,3,3,2],[2,2,3,1],[0,1,1,1]],[[1,1,1,1],[0,4,3,2],[2,2,3,1],[0,1,1,1]],[[1,1,1,1],[0,3,4,2],[2,2,3,1],[0,1,1,1]],[[1,1,1,1],[0,3,3,3],[2,2,3,1],[0,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,4,1],[0,1,1,1]],[[1,1,1,2],[0,3,3,2],[2,2,3,1],[0,1,2,0]],[[1,1,1,1],[0,4,3,2],[2,2,3,1],[0,1,2,0]],[[1,1,1,1],[0,3,4,2],[2,2,3,1],[0,1,2,0]],[[1,1,1,1],[0,3,3,3],[2,2,3,1],[0,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,4,1],[0,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,3,1],[0,1,3,0]],[[1,1,1,2],[0,3,3,2],[2,2,3,1],[0,2,0,1]],[[1,1,1,1],[0,4,3,2],[2,2,3,1],[0,2,0,1]],[[1,1,1,1],[0,3,4,2],[2,2,3,1],[0,2,0,1]],[[1,1,1,1],[0,3,3,3],[2,2,3,1],[0,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,4,1],[0,2,0,1]],[[1,1,1,2],[0,3,3,2],[2,2,3,1],[0,2,1,0]],[[1,1,1,1],[0,4,3,2],[2,2,3,1],[0,2,1,0]],[[1,1,1,1],[0,3,4,2],[2,2,3,1],[0,2,1,0]],[[1,1,1,1],[0,3,3,3],[2,2,3,1],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,1,0],[2,1,2,0],[2,2,3,2],[1,3,1,1]],[[1,2,1,0],[2,1,2,0],[2,2,3,2],[2,2,1,1]],[[1,2,1,0],[2,1,2,0],[3,2,3,2],[1,2,1,1]],[[1,1,1,2],[0,3,3,2],[2,2,3,1],[1,0,1,1]],[[1,1,1,1],[0,4,3,2],[2,2,3,1],[1,0,1,1]],[[1,1,1,1],[0,3,4,2],[2,2,3,1],[1,0,1,1]],[[1,1,1,1],[0,3,3,3],[2,2,3,1],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,2,4,1],[1,0,1,1]],[[1,1,1,2],[0,3,3,2],[2,2,3,1],[1,0,2,0]],[[1,1,1,1],[0,4,3,2],[2,2,3,1],[1,0,2,0]],[[1,1,1,1],[0,3,4,2],[2,2,3,1],[1,0,2,0]],[[1,1,1,1],[0,3,3,3],[2,2,3,1],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,4,1],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,2,3,1],[1,0,3,0]],[[1,1,1,2],[0,3,3,2],[2,2,3,1],[1,1,0,1]],[[1,1,1,1],[0,4,3,2],[2,2,3,1],[1,1,0,1]],[[1,1,1,1],[0,3,4,2],[2,2,3,1],[1,1,0,1]],[[1,1,1,1],[0,3,3,3],[2,2,3,1],[1,1,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,4,1],[1,1,0,1]],[[1,1,1,2],[0,3,3,2],[2,2,3,1],[1,1,1,0]],[[1,1,1,1],[0,4,3,2],[2,2,3,1],[1,1,1,0]],[[1,1,1,1],[0,3,4,2],[2,2,3,1],[1,1,1,0]],[[1,1,1,1],[0,3,3,3],[2,2,3,1],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,1,0],[3,1,2,0],[2,2,3,2],[1,2,1,1]],[[1,3,1,0],[2,1,2,0],[2,2,3,2],[1,2,1,1]],[[2,2,1,0],[2,1,2,0],[2,2,3,2],[1,2,1,1]],[[1,2,1,0],[2,1,2,0],[2,2,3,2],[0,2,2,2]],[[1,2,1,0],[2,1,2,0],[2,2,3,2],[0,2,3,1]],[[1,2,1,0],[2,1,2,0],[2,2,3,2],[0,3,2,1]],[[1,2,1,0],[2,1,2,0],[2,2,4,2],[0,2,2,1]],[[1,2,1,0],[2,1,2,0],[2,2,2,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,0],[2,2,2,2],[1,2,3,1]],[[1,2,1,0],[2,1,2,0],[2,2,2,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,0],[2,2,2,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,0],[3,2,2,2],[1,2,2,1]],[[1,2,1,0],[3,1,2,0],[2,2,2,2],[1,2,2,1]],[[1,3,1,0],[2,1,2,0],[2,2,2,2],[1,2,2,1]],[[2,2,1,0],[2,1,2,0],[2,2,2,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,0],[2,1,3,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,0],[2,1,3,2],[1,2,3,1]],[[1,2,1,0],[2,1,2,0],[2,1,3,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,0],[2,1,3,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,0],[2,1,4,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,0],[3,1,3,2],[1,2,2,1]],[[1,2,1,0],[3,1,2,0],[2,1,3,2],[1,2,2,1]],[[1,3,1,0],[2,1,2,0],[2,1,3,2],[1,2,2,1]],[[2,2,1,0],[2,1,2,0],[2,1,3,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,0],[1,3,3,2],[1,3,1,1]],[[1,2,1,0],[2,1,2,0],[1,3,3,2],[2,2,1,1]],[[1,2,1,0],[2,1,2,0],[1,3,4,2],[1,2,1,1]],[[1,2,1,0],[2,1,2,0],[1,4,3,2],[1,2,1,1]],[[1,1,1,2],[0,3,3,2],[2,2,3,2],[0,1,0,1]],[[1,1,1,1],[0,4,3,2],[2,2,3,2],[0,1,0,1]],[[1,1,1,1],[0,3,4,2],[2,2,3,2],[0,1,0,1]],[[1,1,1,1],[0,3,3,3],[2,2,3,2],[0,1,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,1,0],[2,1,2,0],[1,3,3,2],[1,1,2,2]],[[1,2,1,0],[2,1,2,0],[1,3,3,2],[1,1,3,1]],[[1,2,1,0],[2,1,2,0],[1,3,4,2],[1,1,2,1]],[[1,2,1,0],[2,1,2,0],[1,4,3,2],[1,1,2,1]],[[1,2,1,0],[2,1,2,0],[1,3,2,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,0],[1,3,2,2],[1,2,3,1]],[[1,2,1,0],[2,1,2,0],[1,3,2,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,0],[1,3,2,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,0],[1,4,2,2],[1,2,2,1]],[[1,2,1,0],[2,1,2,0],[1,2,3,2],[1,2,2,2]],[[1,2,1,0],[2,1,2,0],[1,2,3,2],[1,2,3,1]],[[1,2,1,0],[2,1,2,0],[1,2,3,2],[1,3,2,1]],[[1,2,1,0],[2,1,2,0],[1,2,3,2],[2,2,2,1]],[[1,2,1,0],[2,1,2,0],[1,2,4,2],[1,2,2,1]],[[1,1,1,2],[0,3,3,2],[2,2,3,2],[1,0,0,1]],[[1,1,1,1],[0,4,3,2],[2,2,3,2],[1,0,0,1]],[[1,1,1,1],[0,3,4,2],[2,2,3,2],[1,0,0,1]],[[1,1,1,1],[0,3,3,3],[2,2,3,2],[1,0,0,1]],[[1,1,1,1],[0,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,1,1,2],[2,4,3,2],[1,2,0,0]],[[1,2,1,0],[2,1,1,2],[3,3,3,2],[1,2,0,0]],[[1,2,1,0],[3,1,1,2],[2,3,3,2],[1,2,0,0]],[[1,3,1,0],[2,1,1,2],[2,3,3,2],[1,2,0,0]],[[2,2,1,0],[2,1,1,2],[2,3,3,2],[1,2,0,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,0],[2,1,1,2],[2,3,4,2],[1,1,1,0]],[[1,2,1,0],[2,1,1,2],[2,4,3,2],[1,1,1,0]],[[1,2,1,0],[2,1,1,2],[3,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,1,1,3],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[3,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,3,1,0],[2,1,1,2],[2,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[1,1,0,2]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[2,1,0,1]],[[1,2,1,0],[2,1,1,2],[2,3,3,3],[1,1,0,1]],[[1,2,1,0],[2,1,1,2],[2,3,4,2],[1,1,0,1]],[[1,2,1,0],[2,1,1,2],[2,4,3,2],[1,1,0,1]],[[1,2,1,0],[2,1,1,2],[3,3,3,2],[1,1,0,1]],[[1,2,1,0],[2,1,1,3],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[3,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,3,1,0],[2,1,1,2],[2,3,3,2],[1,1,0,1]],[[2,2,1,0],[2,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[1,0,3,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[2,0,2,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,3],[1,0,2,0]],[[1,2,1,0],[2,1,1,2],[2,3,4,2],[1,0,2,0]],[[1,2,1,0],[2,1,1,2],[2,4,3,2],[1,0,2,0]],[[1,2,1,0],[2,1,1,2],[3,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,1,1,3],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[3,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,3,1,0],[2,1,1,2],[2,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[1,0,1,2]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[2,0,1,1]],[[1,2,1,0],[2,1,1,2],[2,3,3,3],[1,0,1,1]],[[1,2,1,0],[2,1,1,2],[2,3,4,2],[1,0,1,1]],[[1,2,1,0],[2,1,1,2],[2,4,3,2],[1,0,1,1]],[[1,2,1,0],[2,1,1,2],[3,3,3,2],[1,0,1,1]],[[1,2,1,0],[2,1,1,3],[2,3,3,2],[1,0,1,1]],[[1,2,1,0],[3,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,3,1,0],[2,1,1,2],[2,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[3,3,0,0],[1,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,0],[2,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,0],[1,3,2,1]],[[1,1,1,2],[0,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,1,1],[0,4,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,1,1],[0,3,4,2],[2,3,0,1],[0,2,2,1]],[[1,1,1,1],[0,3,3,3],[2,3,0,1],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[3,3,0,1],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,4,0,1],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,1],[0,3,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,1],[0,2,3,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,1],[0,2,2,2]],[[1,1,1,2],[0,3,3,2],[2,3,0,1],[1,1,2,1]],[[1,1,1,1],[0,4,3,2],[2,3,0,1],[1,1,2,1]],[[1,1,1,1],[0,3,4,2],[2,3,0,1],[1,1,2,1]],[[1,1,1,1],[0,3,3,3],[2,3,0,1],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[3,3,0,1],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,4,0,1],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,1],[2,1,2,1]],[[1,1,1,1],[0,3,3,2],[3,3,0,1],[1,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,0,1],[2,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,0,1],[1,3,2,0]],[[1,1,1,2],[0,3,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,1,1],[0,4,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,1,1],[0,3,4,2],[2,3,0,2],[0,1,2,1]],[[1,1,1,1],[0,3,3,3],[2,3,0,2],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[3,3,0,2],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,4,0,2],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,3],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[0,1,3,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[0,1,2,2]],[[1,1,1,2],[0,3,3,2],[2,3,0,2],[0,2,1,1]],[[1,1,1,1],[0,4,3,2],[2,3,0,2],[0,2,1,1]],[[1,1,1,1],[0,3,4,2],[2,3,0,2],[0,2,1,1]],[[1,1,1,1],[0,3,3,3],[2,3,0,2],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[3,3,0,2],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,4,0,2],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,3],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[0,3,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[0,2,1,2]],[[1,1,1,2],[0,3,3,2],[2,3,0,2],[0,2,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,0,2],[0,2,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,0,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,3],[2,3,0,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,2],[3,3,0,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,4,0,2],[0,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,0,3],[0,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[0,3,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[0,2,3,0]],[[1,1,1,2],[0,3,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,1,1],[0,4,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,1,1],[0,3,4,2],[2,3,0,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,3],[2,3,0,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[3,3,0,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,4,0,2],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,3],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[2,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[1,0,3,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[1,0,2,2]],[[1,1,1,2],[0,3,3,2],[2,3,0,2],[1,1,1,1]],[[1,1,1,1],[0,4,3,2],[2,3,0,2],[1,1,1,1]],[[1,1,1,1],[0,3,4,2],[2,3,0,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,3],[2,3,0,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[3,3,0,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,4,0,2],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,3],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[2,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[1,1,1,2]],[[1,1,1,2],[0,3,3,2],[2,3,0,2],[1,1,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,0,2],[1,1,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,0,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,3],[2,3,0,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[3,3,0,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,4,0,2],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,0,3],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,1,1,2],[0,3,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,1,1],[0,4,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,1,1],[0,3,4,2],[2,3,1,0],[0,2,2,1]],[[1,1,1,1],[0,3,3,3],[2,3,1,0],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[3,3,1,0],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,4,1,0],[0,2,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,0],[0,3,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,0],[0,2,3,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,0],[0,2,2,2]],[[1,1,1,2],[0,3,3,2],[2,3,1,0],[1,1,2,1]],[[1,1,1,1],[0,4,3,2],[2,3,1,0],[1,1,2,1]],[[1,1,1,1],[0,3,4,2],[2,3,1,0],[1,1,2,1]],[[1,1,1,1],[0,3,3,3],[2,3,1,0],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[3,3,1,0],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,4,1,0],[1,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,0],[2,1,2,1]],[[1,1,1,2],[0,3,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,1,1],[0,2,2,0]],[[1,1,1,1],[0,3,3,3],[2,3,1,1],[0,2,2,0]],[[1,1,1,1],[0,3,3,2],[3,3,1,1],[0,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,4,1,1],[0,2,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,1,1],[0,3,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,1,1],[0,2,3,0]],[[1,1,1,2],[0,3,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,1,1],[1,1,2,0]],[[1,1,1,1],[0,3,3,3],[2,3,1,1],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[3,3,1,1],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,4,1,1],[1,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,3],[0,2,1,0]],[[1,1,1,2],[0,3,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,1,1],[0,4,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,1,1],[0,3,4,2],[2,3,1,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,3],[2,3,1,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,2],[3,3,1,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,4,1,2],[0,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,3],[0,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,2],[0,1,1,2]],[[1,1,1,2],[0,3,3,2],[2,3,1,2],[0,1,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,1,2],[0,1,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,1,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,3],[2,3,1,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,2],[3,3,1,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,4,1,2],[0,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,1,3],[0,1,2,0]],[[1,1,1,2],[0,3,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,1,1],[0,4,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,1,1],[0,3,4,2],[2,3,1,2],[0,2,0,1]],[[1,1,1,1],[0,3,3,3],[2,3,1,2],[0,2,0,1]],[[1,1,1,1],[0,3,3,2],[3,3,1,2],[0,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,4,1,2],[0,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,3],[0,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,2],[0,3,0,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,2],[0,2,0,2]],[[1,1,1,2],[0,3,3,2],[2,3,1,2],[0,2,1,0]],[[1,1,1,1],[0,4,3,2],[2,3,1,2],[0,2,1,0]],[[1,1,1,1],[0,3,4,2],[2,3,1,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,3],[2,3,1,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[3,3,1,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,4,1,2],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,3,1,3],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,1,0],[2,1,1,2],[2,3,4,2],[0,2,1,0]],[[1,2,1,0],[2,1,1,2],[2,4,3,2],[0,2,1,0]],[[1,2,1,0],[2,1,1,2],[3,3,3,2],[0,2,1,0]],[[1,2,1,0],[2,1,1,3],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[3,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,3,1,0],[2,1,1,2],[2,3,3,2],[0,2,1,0]],[[2,2,1,0],[2,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[0,2,0,2]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[0,3,0,1]],[[1,2,1,0],[2,1,1,2],[2,3,3,3],[0,2,0,1]],[[1,1,1,2],[0,3,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,1,1],[0,4,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,1,1],[0,3,4,2],[2,3,1,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,3],[2,3,1,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[3,3,1,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,4,1,2],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,3],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,2],[2,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,2],[1,0,1,2]],[[1,1,1,2],[0,3,3,2],[2,3,1,2],[1,0,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,1,2],[1,0,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,1,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,3],[2,3,1,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[3,3,1,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,4,1,2],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,1,3],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,1,2],[2,0,2,0]],[[1,1,1,2],[0,3,3,2],[2,3,1,2],[1,1,0,1]],[[1,1,1,1],[0,4,3,2],[2,3,1,2],[1,1,0,1]],[[1,1,1,1],[0,3,4,2],[2,3,1,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,3],[2,3,1,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,2],[3,3,1,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,2],[2,4,1,2],[1,1,0,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,3],[1,1,0,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,2],[2,1,0,1]],[[1,1,1,1],[0,3,3,2],[2,3,1,2],[1,1,0,2]],[[1,1,1,2],[0,3,3,2],[2,3,1,2],[1,1,1,0]],[[1,1,1,1],[0,4,3,2],[2,3,1,2],[1,1,1,0]],[[1,1,1,1],[0,3,4,2],[2,3,1,2],[1,1,1,0]],[[1,1,1,1],[0,3,3,3],[2,3,1,2],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[3,3,1,2],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[2,4,1,2],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[2,3,1,3],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,1,0],[2,1,1,2],[2,3,4,2],[0,2,0,1]],[[1,2,1,0],[2,1,1,2],[2,4,3,2],[0,2,0,1]],[[1,2,1,0],[2,1,1,2],[3,3,3,2],[0,2,0,1]],[[1,2,1,0],[2,1,1,3],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[3,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,3,1,0],[2,1,1,2],[2,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,2],[0,3,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,1,1],[0,4,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,1,1],[0,3,4,2],[2,3,1,2],[1,2,0,0]],[[1,1,1,1],[0,3,3,3],[2,3,1,2],[1,2,0,0]],[[1,1,1,1],[0,3,3,2],[3,3,1,2],[1,2,0,0]],[[1,1,1,1],[0,3,3,2],[2,4,1,2],[1,2,0,0]],[[1,1,1,1],[0,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[0,1,3,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,3],[0,1,2,0]],[[1,2,1,0],[2,1,1,2],[2,3,4,2],[0,1,2,0]],[[1,2,1,0],[2,1,1,2],[2,4,3,2],[0,1,2,0]],[[1,2,1,0],[2,1,1,2],[3,3,3,2],[0,1,2,0]],[[1,2,1,0],[2,1,1,3],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[3,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,3,1,0],[2,1,1,2],[2,3,3,2],[0,1,2,0]],[[2,2,1,0],[2,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[0,1,1,2]],[[1,2,1,0],[2,1,1,2],[2,3,3,3],[0,1,1,1]],[[1,2,1,0],[2,1,1,2],[2,3,4,2],[0,1,1,1]],[[1,2,1,0],[2,1,1,2],[2,4,3,2],[0,1,1,1]],[[1,2,1,0],[2,1,1,2],[3,3,3,2],[0,1,1,1]],[[1,2,1,0],[2,1,1,3],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[3,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,3,1,0],[2,1,1,2],[2,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[2,1,1,2],[2,3,3,2],[0,0,2,2]],[[1,2,1,0],[2,1,1,2],[2,3,3,3],[0,0,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,4,2],[0,0,2,1]],[[1,2,1,0],[2,1,1,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,2],[0,3,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,1,1],[0,4,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,1,1],[0,3,4,2],[2,3,2,0],[0,1,2,1]],[[1,1,1,1],[0,3,3,3],[2,3,2,0],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[3,3,2,0],[0,1,2,1]],[[1,1,1,1],[0,3,3,2],[2,4,2,0],[0,1,2,1]],[[1,1,1,2],[0,3,3,2],[2,3,2,0],[0,2,1,1]],[[1,1,1,1],[0,4,3,2],[2,3,2,0],[0,2,1,1]],[[1,1,1,1],[0,3,4,2],[2,3,2,0],[0,2,1,1]],[[1,1,1,1],[0,3,3,3],[2,3,2,0],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[3,3,2,0],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,4,2,0],[0,2,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,2,0],[0,3,1,1]],[[1,1,1,2],[0,3,3,2],[2,3,2,0],[1,0,2,1]],[[1,1,1,1],[0,4,3,2],[2,3,2,0],[1,0,2,1]],[[1,1,1,1],[0,3,4,2],[2,3,2,0],[1,0,2,1]],[[1,1,1,1],[0,3,3,3],[2,3,2,0],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[3,3,2,0],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,4,2,0],[1,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,2,0],[2,0,2,1]],[[1,1,1,2],[0,3,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,1,1],[0,4,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,1,1],[0,3,4,2],[2,3,2,0],[1,1,1,1]],[[1,1,1,1],[0,3,3,3],[2,3,2,0],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[3,3,2,0],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,4,2,0],[1,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,2,0],[2,1,1,1]],[[1,1,1,1],[0,4,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,1,1],[0,3,4,2],[2,3,2,0],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[3,3,2,0],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,4,2,0],[1,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,1,0],[2,1,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[2,1,1,2],[2,4,3,1],[1,2,0,1]],[[1,2,1,0],[2,1,1,2],[3,3,3,1],[1,2,0,1]],[[1,2,1,0],[3,1,1,2],[2,3,3,1],[1,2,0,1]],[[1,1,1,2],[0,3,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,1,1],[0,4,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,1,1],[0,3,4,2],[2,3,2,1],[0,1,1,1]],[[1,1,1,1],[0,3,3,3],[2,3,2,1],[0,1,1,1]],[[1,1,1,1],[0,3,3,2],[3,3,2,1],[0,1,1,1]],[[1,1,1,1],[0,3,3,2],[2,4,2,1],[0,1,1,1]],[[1,1,1,2],[0,3,3,2],[2,3,2,1],[0,1,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,2,1],[0,1,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,2,1],[0,1,2,0]],[[1,1,1,1],[0,3,3,3],[2,3,2,1],[0,1,2,0]],[[1,1,1,1],[0,3,3,2],[3,3,2,1],[0,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,4,2,1],[0,1,2,0]],[[1,1,1,2],[0,3,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,1,1],[0,4,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,1,1],[0,3,4,2],[2,3,2,1],[0,2,0,1]],[[1,1,1,1],[0,3,3,3],[2,3,2,1],[0,2,0,1]],[[1,1,1,1],[0,3,3,2],[3,3,2,1],[0,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,4,2,1],[0,2,0,1]],[[1,1,1,1],[0,3,3,2],[2,3,2,1],[0,3,0,1]],[[1,1,1,2],[0,3,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,1,1],[0,4,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,1,1],[0,3,4,2],[2,3,2,1],[0,2,1,0]],[[1,1,1,1],[0,3,3,3],[2,3,2,1],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[3,3,2,1],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,4,2,1],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,3,2,1],[0,3,1,0]],[[2,2,1,0],[2,1,1,2],[2,3,3,1],[1,2,0,1]],[[1,1,1,2],[0,3,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,1,1],[0,4,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,1,1],[0,3,4,2],[2,3,2,1],[1,0,1,1]],[[1,1,1,1],[0,3,3,3],[2,3,2,1],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[3,3,2,1],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,4,2,1],[1,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,2,1],[2,0,1,1]],[[1,1,1,2],[0,3,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,2,1],[1,0,2,0]],[[1,1,1,1],[0,3,3,3],[2,3,2,1],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[3,3,2,1],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,4,2,1],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,2,1],[2,0,2,0]],[[1,1,1,2],[0,3,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,1,1],[0,4,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,1,1],[0,3,4,2],[2,3,2,1],[1,1,0,1]],[[1,1,1,1],[0,3,3,3],[2,3,2,1],[1,1,0,1]],[[1,1,1,1],[0,3,3,2],[3,3,2,1],[1,1,0,1]],[[1,1,1,1],[0,3,3,2],[2,4,2,1],[1,1,0,1]],[[1,1,1,1],[0,3,3,2],[2,3,2,1],[2,1,0,1]],[[1,1,1,2],[0,3,3,2],[2,3,2,1],[1,1,1,0]],[[1,1,1,1],[0,4,3,2],[2,3,2,1],[1,1,1,0]],[[1,1,1,1],[0,3,4,2],[2,3,2,1],[1,1,1,0]],[[1,1,1,1],[0,3,3,3],[2,3,2,1],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[3,3,2,1],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[2,4,2,1],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[2,1,1,2],[2,3,4,1],[1,1,1,1]],[[1,2,1,0],[2,1,1,2],[2,4,3,1],[1,1,1,1]],[[1,2,1,0],[2,1,1,2],[3,3,3,1],[1,1,1,1]],[[1,2,1,0],[3,1,1,2],[2,3,3,1],[1,1,1,1]],[[1,3,1,0],[2,1,1,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,2],[0,3,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,1,1],[0,4,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,1,1],[0,3,4,2],[2,3,2,1],[1,2,0,0]],[[1,1,1,1],[0,3,3,3],[2,3,2,1],[1,2,0,0]],[[1,1,1,1],[0,3,3,2],[3,3,2,1],[1,2,0,0]],[[1,1,1,1],[0,3,3,2],[2,4,2,1],[1,2,0,0]],[[1,1,1,1],[0,3,3,2],[2,3,2,1],[2,2,0,0]],[[2,2,1,0],[2,1,1,2],[2,3,3,1],[1,1,1,1]],[[1,2,1,0],[2,1,1,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,0],[2,1,1,2],[2,3,3,1],[1,0,3,1]],[[1,2,1,0],[2,1,1,2],[2,3,3,1],[2,0,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,4,1],[1,0,2,1]],[[1,2,1,0],[2,1,1,2],[2,4,3,1],[1,0,2,1]],[[1,2,1,0],[2,1,1,2],[3,3,3,1],[1,0,2,1]],[[1,2,1,0],[3,1,1,2],[2,3,3,1],[1,0,2,1]],[[1,3,1,0],[2,1,1,2],[2,3,3,1],[1,0,2,1]],[[2,2,1,0],[2,1,1,2],[2,3,3,1],[1,0,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,3,1],[0,3,1,1]],[[1,2,1,0],[2,1,1,2],[2,3,4,1],[0,2,1,1]],[[1,2,1,0],[2,1,1,2],[2,4,3,1],[0,2,1,1]],[[1,2,1,0],[2,1,1,2],[3,3,3,1],[0,2,1,1]],[[1,2,1,0],[3,1,1,2],[2,3,3,1],[0,2,1,1]],[[1,3,1,0],[2,1,1,2],[2,3,3,1],[0,2,1,1]],[[2,2,1,0],[2,1,1,2],[2,3,3,1],[0,2,1,1]],[[1,2,1,0],[2,1,1,2],[2,3,3,1],[0,1,2,2]],[[1,1,1,2],[0,3,3,2],[2,3,2,2],[0,0,1,1]],[[1,1,1,1],[0,4,3,2],[2,3,2,2],[0,0,1,1]],[[1,1,1,1],[0,3,4,2],[2,3,2,2],[0,0,1,1]],[[1,1,1,1],[0,3,3,3],[2,3,2,2],[0,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,2,3],[0,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,2,2],[0,0,1,2]],[[1,1,1,2],[0,3,3,2],[2,3,2,2],[0,0,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,2,2],[0,0,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,2,2],[0,0,2,0]],[[1,1,1,1],[0,3,3,3],[2,3,2,2],[0,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,1,0],[2,1,1,2],[2,3,3,1],[0,1,3,1]],[[1,2,1,0],[2,1,1,2],[2,3,4,1],[0,1,2,1]],[[1,2,1,0],[2,1,1,2],[2,4,3,1],[0,1,2,1]],[[1,2,1,0],[2,1,1,2],[3,3,3,1],[0,1,2,1]],[[1,2,1,0],[3,1,1,2],[2,3,3,1],[0,1,2,1]],[[1,3,1,0],[2,1,1,2],[2,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,1,1,2],[2,3,3,1],[0,1,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,1,1,2],[2,4,2,2],[1,1,2,0]],[[1,2,1,0],[2,1,1,2],[3,3,2,2],[1,1,2,0]],[[1,2,1,0],[3,1,1,2],[2,3,2,2],[1,1,2,0]],[[1,3,1,0],[2,1,1,2],[2,3,2,2],[1,1,2,0]],[[2,2,1,0],[2,1,1,2],[2,3,2,2],[1,1,2,0]],[[1,2,1,0],[2,1,1,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,0],[2,1,1,2],[2,3,2,2],[1,0,3,1]],[[1,2,1,0],[2,1,1,2],[2,3,2,3],[1,0,2,1]],[[1,2,1,0],[2,1,1,3],[2,3,2,2],[1,0,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,2,2],[0,2,3,0]],[[1,2,1,0],[2,1,1,2],[2,3,2,2],[0,3,2,0]],[[1,2,1,0],[2,1,1,2],[2,4,2,2],[0,2,2,0]],[[1,2,1,0],[2,1,1,2],[3,3,2,2],[0,2,2,0]],[[1,2,1,0],[3,1,1,2],[2,3,2,2],[0,2,2,0]],[[1,3,1,0],[2,1,1,2],[2,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,1,1,2],[2,3,2,2],[0,2,2,0]],[[1,2,1,0],[2,1,1,2],[2,3,2,2],[0,1,2,2]],[[1,2,1,0],[2,1,1,2],[2,3,2,2],[0,1,3,1]],[[1,2,1,0],[2,1,1,2],[2,3,2,3],[0,1,2,1]],[[1,2,1,0],[2,1,1,3],[2,3,2,2],[0,1,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,2,1],[2,1,2,1]],[[1,2,1,0],[2,1,1,2],[2,4,2,1],[1,1,2,1]],[[1,2,1,0],[2,1,1,2],[3,3,2,1],[1,1,2,1]],[[1,2,1,0],[3,1,1,2],[2,3,2,1],[1,1,2,1]],[[1,3,1,0],[2,1,1,2],[2,3,2,1],[1,1,2,1]],[[2,2,1,0],[2,1,1,2],[2,3,2,1],[1,1,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,2,1],[0,2,2,2]],[[1,2,1,0],[2,1,1,2],[2,3,2,1],[0,2,3,1]],[[1,2,1,0],[2,1,1,2],[2,3,2,1],[0,3,2,1]],[[1,2,1,0],[2,1,1,2],[2,4,2,1],[0,2,2,1]],[[1,2,1,0],[2,1,1,2],[3,3,2,1],[0,2,2,1]],[[1,2,1,0],[3,1,1,2],[2,3,2,1],[0,2,2,1]],[[1,3,1,0],[2,1,1,2],[2,3,2,1],[0,2,2,1]],[[2,2,1,0],[2,1,1,2],[2,3,2,1],[0,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,1,2],[1,3,2,0]],[[1,2,1,0],[2,1,1,2],[2,3,1,2],[2,2,2,0]],[[1,2,1,0],[2,1,1,2],[3,3,1,2],[1,2,2,0]],[[1,2,1,0],[3,1,1,2],[2,3,1,2],[1,2,2,0]],[[2,2,1,0],[2,1,1,2],[2,3,1,2],[1,2,2,0]],[[1,2,1,0],[2,1,1,2],[2,3,1,2],[2,1,2,1]],[[1,2,1,0],[2,1,1,2],[2,4,1,2],[1,1,2,1]],[[1,2,1,0],[2,1,1,2],[3,3,1,2],[1,1,2,1]],[[1,2,1,0],[3,1,1,2],[2,3,1,2],[1,1,2,1]],[[1,3,1,0],[2,1,1,2],[2,3,1,2],[1,1,2,1]],[[2,2,1,0],[2,1,1,2],[2,3,1,2],[1,1,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,1,2],[0,2,2,2]],[[1,2,1,0],[2,1,1,2],[2,3,1,2],[0,2,3,1]],[[1,2,1,0],[2,1,1,2],[2,3,1,2],[0,3,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,1,3],[0,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,4,1,2],[0,2,2,1]],[[1,2,1,0],[2,1,1,2],[3,3,1,2],[0,2,2,1]],[[1,2,1,0],[2,1,1,3],[2,3,1,2],[0,2,2,1]],[[1,2,1,0],[3,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,3,1,0],[2,1,1,2],[2,3,1,2],[0,2,2,1]],[[2,2,1,0],[2,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,1,1],[1,3,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,1,1],[2,2,2,1]],[[1,2,1,0],[2,1,1,2],[3,3,1,1],[1,2,2,1]],[[1,2,1,0],[3,1,1,2],[2,3,1,1],[1,2,2,1]],[[2,2,1,0],[2,1,1,2],[2,3,1,1],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,0,2],[1,3,2,1]],[[1,2,1,0],[2,1,1,2],[2,3,0,2],[2,2,2,1]],[[1,2,1,0],[2,1,1,2],[3,3,0,2],[1,2,2,1]],[[1,2,1,0],[3,1,1,2],[2,3,0,2],[1,2,2,1]],[[2,2,1,0],[2,1,1,2],[2,3,0,2],[1,2,2,1]],[[1,1,1,2],[0,3,3,2],[2,3,3,0],[0,0,2,1]],[[1,1,1,1],[0,4,3,2],[2,3,3,0],[0,0,2,1]],[[1,1,1,1],[0,3,4,2],[2,3,3,0],[0,0,2,1]],[[1,1,1,1],[0,3,3,3],[2,3,3,0],[0,0,2,1]],[[1,1,1,1],[0,3,3,2],[2,3,4,0],[0,0,2,1]],[[1,1,1,1],[0,4,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,3,0],[0,1,2,0]],[[1,1,1,1],[0,3,3,2],[3,3,3,0],[0,1,2,0]],[[1,1,1,1],[0,3,3,2],[2,4,3,0],[0,1,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,1,1],[0,3,4,2],[2,3,3,0],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[3,3,3,0],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,4,3,0],[0,2,1,0]],[[1,1,1,1],[0,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,1,1,1],[0,4,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,3,0],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[3,3,3,0],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,4,3,0],[1,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,3,0],[2,0,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,1,1],[0,3,4,2],[2,3,3,0],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[3,3,3,0],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[2,4,3,0],[1,1,1,0]],[[1,1,1,1],[0,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,1,0],[2,1,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,1,1,2],[2,2,3,2],[2,2,1,0]],[[1,2,1,0],[2,1,1,2],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[0,4,3,2],[2,3,3,0],[1,2,0,0]],[[1,1,1,1],[0,3,4,2],[2,3,3,0],[1,2,0,0]],[[1,1,1,1],[0,3,3,2],[3,3,3,0],[1,2,0,0]],[[1,1,1,1],[0,3,3,2],[2,4,3,0],[1,2,0,0]],[[1,1,1,1],[0,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,1,0],[3,1,1,2],[2,2,3,2],[1,2,1,0]],[[1,3,1,0],[2,1,1,2],[2,2,3,2],[1,2,1,0]],[[2,2,1,0],[2,1,1,2],[2,2,3,2],[1,2,1,0]],[[1,2,1,0],[2,1,1,2],[2,2,3,2],[1,3,0,1]],[[1,2,1,0],[2,1,1,2],[2,2,3,2],[2,2,0,1]],[[1,2,1,0],[2,1,1,2],[3,2,3,2],[1,2,0,1]],[[1,2,1,0],[3,1,1,2],[2,2,3,2],[1,2,0,1]],[[1,3,1,0],[2,1,1,2],[2,2,3,2],[1,2,0,1]],[[2,2,1,0],[2,1,1,2],[2,2,3,2],[1,2,0,1]],[[1,2,1,0],[2,1,1,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,0],[2,1,1,2],[2,2,3,2],[0,3,2,0]],[[1,2,1,0],[2,1,1,2],[2,2,3,3],[0,2,2,0]],[[1,2,1,0],[2,1,1,2],[2,2,4,2],[0,2,2,0]],[[1,2,1,0],[2,1,1,3],[2,2,3,2],[0,2,2,0]],[[1,2,1,0],[2,1,1,2],[2,2,3,2],[0,2,1,2]],[[1,2,1,0],[2,1,1,2],[2,2,3,3],[0,2,1,1]],[[1,2,1,0],[2,1,1,2],[2,2,4,2],[0,2,1,1]],[[1,2,1,0],[2,1,1,3],[2,2,3,2],[0,2,1,1]],[[1,1,1,2],[0,3,3,2],[2,3,3,1],[0,0,1,1]],[[1,1,1,1],[0,4,3,2],[2,3,3,1],[0,0,1,1]],[[1,1,1,1],[0,3,4,2],[2,3,3,1],[0,0,1,1]],[[1,1,1,1],[0,3,3,3],[2,3,3,1],[0,0,1,1]],[[1,1,1,1],[0,3,3,2],[2,3,4,1],[0,0,1,1]],[[1,1,1,2],[0,3,3,2],[2,3,3,1],[0,0,2,0]],[[1,1,1,1],[0,4,3,2],[2,3,3,1],[0,0,2,0]],[[1,1,1,1],[0,3,4,2],[2,3,3,1],[0,0,2,0]],[[1,1,1,1],[0,3,3,3],[2,3,3,1],[0,0,2,0]],[[1,1,1,1],[0,3,3,2],[2,3,4,1],[0,0,2,0]],[[1,2,1,0],[2,1,1,2],[2,2,3,1],[1,3,1,1]],[[1,2,1,0],[2,1,1,2],[2,2,3,1],[2,2,1,1]],[[1,1,1,2],[0,3,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,1,1],[0,4,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,1,1],[0,3,4,2],[2,3,3,1],[0,2,0,0]],[[1,1,1,1],[0,3,3,3],[2,3,3,1],[0,2,0,0]],[[1,1,1,1],[0,3,3,2],[3,3,3,1],[0,2,0,0]],[[1,1,1,1],[0,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,1,0],[2,1,1,2],[3,2,3,1],[1,2,1,1]],[[1,2,1,0],[3,1,1,2],[2,2,3,1],[1,2,1,1]],[[1,3,1,0],[2,1,1,2],[2,2,3,1],[1,2,1,1]],[[2,2,1,0],[2,1,1,2],[2,2,3,1],[1,2,1,1]],[[1,2,1,0],[2,1,1,2],[2,2,3,1],[0,2,2,2]],[[1,2,1,0],[2,1,1,2],[2,2,3,1],[0,2,3,1]],[[1,2,1,0],[2,1,1,2],[2,2,3,1],[0,3,2,1]],[[1,2,1,0],[2,1,1,2],[2,2,4,1],[0,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,2,2,2],[1,2,3,0]],[[1,2,1,0],[2,1,1,2],[2,2,2,2],[1,3,2,0]],[[1,2,1,0],[2,1,1,2],[2,2,2,2],[2,2,2,0]],[[1,2,1,0],[2,1,1,2],[3,2,2,2],[1,2,2,0]],[[1,2,1,0],[3,1,1,2],[2,2,2,2],[1,2,2,0]],[[1,3,1,0],[2,1,1,2],[2,2,2,2],[1,2,2,0]],[[2,2,1,0],[2,1,1,2],[2,2,2,2],[1,2,2,0]],[[1,2,1,0],[2,1,1,2],[2,2,2,2],[0,2,2,2]],[[1,2,1,0],[2,1,1,2],[2,2,2,2],[0,2,3,1]],[[1,2,1,0],[2,1,1,2],[2,2,2,2],[0,3,2,1]],[[1,2,1,0],[2,1,1,2],[2,2,2,3],[0,2,2,1]],[[1,2,1,0],[2,1,1,3],[2,2,2,2],[0,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,2,2,1],[1,2,2,2]],[[1,2,1,0],[2,1,1,2],[2,2,2,1],[1,2,3,1]],[[1,2,1,0],[2,1,1,2],[2,2,2,1],[1,3,2,1]],[[1,2,1,0],[2,1,1,2],[2,2,2,1],[2,2,2,1]],[[1,2,1,0],[2,1,1,2],[3,2,2,1],[1,2,2,1]],[[1,2,1,0],[3,1,1,2],[2,2,2,1],[1,2,2,1]],[[1,3,1,0],[2,1,1,2],[2,2,2,1],[1,2,2,1]],[[1,1,1,2],[0,3,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,1,1],[0,4,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,1,1],[0,3,4,2],[2,3,3,1],[1,1,0,0]],[[1,1,1,1],[0,3,3,3],[2,3,3,1],[1,1,0,0]],[[1,1,1,1],[0,3,3,2],[3,3,3,1],[1,1,0,0]],[[1,1,1,1],[0,3,3,2],[2,4,3,1],[1,1,0,0]],[[1,1,1,1],[0,3,3,2],[2,3,3,1],[2,1,0,0]],[[2,2,1,0],[2,1,1,2],[2,2,2,1],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,2,1,2],[1,2,2,2]],[[1,2,1,0],[2,1,1,2],[2,2,1,2],[1,2,3,1]],[[1,2,1,0],[2,1,1,2],[2,2,1,2],[1,3,2,1]],[[1,2,1,0],[2,1,1,2],[2,2,1,2],[2,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,2,1,3],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[3,2,1,2],[1,2,2,1]],[[1,2,1,0],[2,1,1,3],[2,2,1,2],[1,2,2,1]],[[1,2,1,0],[3,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,3,1,0],[2,1,1,2],[2,2,1,2],[1,2,2,1]],[[2,2,1,0],[2,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,1,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,1,2],[2,1,3,2],[1,3,2,0]],[[1,2,1,0],[2,1,1,2],[2,1,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,1,2],[2,1,3,3],[1,2,2,0]],[[1,2,1,0],[2,1,1,2],[2,1,4,2],[1,2,2,0]],[[1,2,1,0],[2,1,1,2],[3,1,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,1,3],[2,1,3,2],[1,2,2,0]],[[1,2,1,0],[3,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,3,1,0],[2,1,1,2],[2,1,3,2],[1,2,2,0]],[[2,2,1,0],[2,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,1,2],[2,1,3,2],[1,2,1,2]],[[1,2,1,0],[2,1,1,2],[2,1,3,3],[1,2,1,1]],[[1,2,1,0],[2,1,1,2],[2,1,4,2],[1,2,1,1]],[[1,2,1,0],[2,1,1,3],[2,1,3,2],[1,2,1,1]],[[1,2,1,0],[2,1,1,2],[2,1,3,1],[1,2,2,2]],[[1,2,1,0],[2,1,1,2],[2,1,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,1,2],[2,1,3,1],[1,3,2,1]],[[1,2,1,0],[2,1,1,2],[2,1,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,1,4,1],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[3,1,3,1],[1,2,2,1]],[[1,2,1,0],[3,1,1,2],[2,1,3,1],[1,2,2,1]],[[1,3,1,0],[2,1,1,2],[2,1,3,1],[1,2,2,1]],[[2,2,1,0],[2,1,1,2],[2,1,3,1],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,1,2,2],[1,2,2,2]],[[1,2,1,0],[2,1,1,2],[2,1,2,2],[1,2,3,1]],[[1,2,1,0],[2,1,1,2],[2,1,2,2],[1,3,2,1]],[[1,2,1,0],[2,1,1,2],[2,1,2,2],[2,2,2,1]],[[1,2,1,0],[2,1,1,2],[2,1,2,3],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[3,1,2,2],[1,2,2,1]],[[1,2,1,0],[2,1,1,3],[2,1,2,2],[1,2,2,1]],[[1,2,1,0],[3,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,3,1,0],[2,1,1,2],[2,1,2,2],[1,2,2,1]],[[2,2,1,0],[2,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,1,1,2],[1,3,3,2],[2,2,1,0]],[[1,2,1,0],[2,1,1,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,0],[2,1,1,2],[1,3,4,2],[1,2,1,0]],[[1,2,1,0],[2,1,1,2],[1,4,3,2],[1,2,1,0]],[[1,2,1,0],[2,1,1,3],[1,3,3,2],[1,2,1,0]],[[1,1,1,2],[0,3,3,2],[2,3,3,2],[0,0,0,1]],[[1,1,1,1],[0,4,3,2],[2,3,3,2],[0,0,0,1]],[[1,1,1,1],[0,3,4,2],[2,3,3,2],[0,0,0,1]],[[1,1,1,1],[0,3,3,3],[2,3,3,2],[0,0,0,1]],[[1,1,1,1],[0,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,1,0],[2,1,1,2],[1,3,3,2],[1,2,0,2]],[[1,2,1,0],[2,1,1,2],[1,3,3,2],[1,3,0,1]],[[1,2,1,0],[2,1,1,2],[1,3,3,2],[2,2,0,1]],[[1,2,1,0],[2,1,1,2],[1,3,3,3],[1,2,0,1]],[[1,2,1,0],[2,1,1,2],[1,3,4,2],[1,2,0,1]],[[1,2,1,0],[2,1,1,2],[1,4,3,2],[1,2,0,1]],[[1,2,1,0],[2,1,1,3],[1,3,3,2],[1,2,0,1]],[[1,2,1,0],[2,1,1,2],[1,3,3,2],[1,1,3,0]],[[1,2,1,0],[2,1,1,2],[1,3,3,3],[1,1,2,0]],[[1,2,1,0],[2,1,1,2],[1,3,4,2],[1,1,2,0]],[[1,2,1,0],[2,1,1,2],[1,4,3,2],[1,1,2,0]],[[1,2,1,0],[2,1,1,3],[1,3,3,2],[1,1,2,0]],[[1,2,1,0],[2,1,1,2],[1,3,3,2],[1,1,1,2]],[[1,2,1,0],[2,1,1,2],[1,3,3,3],[1,1,1,1]],[[1,2,1,0],[2,1,1,2],[1,3,4,2],[1,1,1,1]],[[1,2,1,0],[2,1,1,2],[1,4,3,2],[1,1,1,1]],[[1,2,1,0],[2,1,1,3],[1,3,3,2],[1,1,1,1]],[[1,2,1,0],[2,1,1,2],[1,3,3,1],[1,3,1,1]],[[1,2,1,0],[2,1,1,2],[1,3,3,1],[2,2,1,1]],[[1,2,1,0],[2,1,1,2],[1,3,4,1],[1,2,1,1]],[[1,2,1,0],[2,1,1,2],[1,4,3,1],[1,2,1,1]],[[1,2,1,0],[2,1,1,2],[1,3,3,1],[1,1,2,2]],[[1,2,1,0],[2,1,1,2],[1,3,3,1],[1,1,3,1]],[[1,2,1,0],[2,1,1,2],[1,3,4,1],[1,1,2,1]],[[1,2,1,0],[2,1,1,2],[1,4,3,1],[1,1,2,1]],[[1,2,1,0],[2,1,1,2],[1,3,2,2],[1,2,3,0]],[[1,2,1,0],[2,1,1,2],[1,3,2,2],[1,3,2,0]],[[1,2,1,0],[2,1,1,2],[1,3,2,2],[2,2,2,0]],[[1,2,1,0],[2,1,1,2],[1,4,2,2],[1,2,2,0]],[[1,2,1,0],[2,1,1,2],[1,3,2,2],[1,1,2,2]],[[1,2,1,0],[2,1,1,2],[1,3,2,2],[1,1,3,1]],[[1,2,1,0],[2,1,1,2],[1,3,2,3],[1,1,2,1]],[[1,2,1,0],[2,1,1,3],[1,3,2,2],[1,1,2,1]],[[1,2,1,0],[2,1,1,2],[1,3,2,1],[1,2,2,2]],[[1,2,1,0],[2,1,1,2],[1,3,2,1],[1,2,3,1]],[[1,2,1,0],[2,1,1,2],[1,3,2,1],[1,3,2,1]],[[1,2,1,0],[2,1,1,2],[1,3,2,1],[2,2,2,1]],[[1,2,1,0],[2,1,1,2],[1,4,2,1],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[1,3,1,2],[1,2,2,2]],[[1,2,1,0],[2,1,1,2],[1,3,1,2],[1,2,3,1]],[[1,2,1,0],[2,1,1,2],[1,3,1,2],[1,3,2,1]],[[1,2,1,0],[2,1,1,2],[1,3,1,2],[2,2,2,1]],[[1,2,1,0],[2,1,1,2],[1,3,1,3],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[1,4,1,2],[1,2,2,1]],[[1,2,1,0],[2,1,1,3],[1,3,1,2],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[1,2,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,1,2],[1,2,3,2],[1,3,2,0]],[[1,2,1,0],[2,1,1,2],[1,2,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,1,2],[1,2,3,3],[1,2,2,0]],[[1,2,1,0],[2,1,1,2],[1,2,4,2],[1,2,2,0]],[[1,2,1,0],[2,1,1,3],[1,2,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,1,2],[1,2,3,2],[1,2,1,2]],[[1,2,1,0],[2,1,1,2],[1,2,3,3],[1,2,1,1]],[[1,2,1,0],[2,1,1,2],[1,2,4,2],[1,2,1,1]],[[1,2,1,0],[2,1,1,3],[1,2,3,2],[1,2,1,1]],[[1,2,1,0],[2,1,1,2],[1,2,3,1],[1,2,2,2]],[[1,2,1,0],[2,1,1,2],[1,2,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,1,2],[1,2,3,1],[1,3,2,1]],[[1,2,1,0],[2,1,1,2],[1,2,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,1,2],[1,2,4,1],[1,2,2,1]],[[1,2,1,0],[2,1,1,2],[1,2,2,2],[1,2,2,2]],[[1,2,1,0],[2,1,1,2],[1,2,2,2],[1,2,3,1]],[[1,2,1,0],[2,1,1,2],[1,2,2,2],[1,3,2,1]],[[1,2,1,0],[2,1,1,2],[1,2,2,2],[2,2,2,1]],[[1,2,1,0],[2,1,1,2],[1,2,2,3],[1,2,2,1]],[[1,2,1,0],[2,1,1,3],[1,2,2,2],[1,2,2,1]],[[1,2,1,0],[2,1,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,1,0],[2,1,1,1],[2,4,3,2],[1,1,2,0]],[[1,2,1,0],[2,1,1,1],[3,3,3,2],[1,1,2,0]],[[1,2,1,0],[3,1,1,1],[2,3,3,2],[1,1,2,0]],[[2,2,1,0],[2,1,1,1],[2,3,3,2],[1,1,2,0]],[[1,2,1,0],[2,1,1,1],[2,3,3,2],[0,2,3,0]],[[1,2,1,0],[2,1,1,1],[2,3,3,2],[0,3,2,0]],[[1,2,1,0],[2,1,1,1],[2,4,3,2],[0,2,2,0]],[[1,2,1,0],[2,1,1,1],[3,3,3,2],[0,2,2,0]],[[1,2,1,0],[3,1,1,1],[2,3,3,2],[0,2,2,0]],[[2,2,1,0],[2,1,1,1],[2,3,3,2],[0,2,2,0]],[[1,2,1,0],[2,1,1,1],[2,3,3,1],[2,1,2,1]],[[1,2,1,0],[2,1,1,1],[2,4,3,1],[1,1,2,1]],[[1,2,1,0],[2,1,1,1],[3,3,3,1],[1,1,2,1]],[[1,2,1,0],[3,1,1,1],[2,3,3,1],[1,1,2,1]],[[2,2,1,0],[2,1,1,1],[2,3,3,1],[1,1,2,1]],[[1,2,1,0],[2,1,1,1],[2,3,3,1],[0,2,2,2]],[[1,2,1,0],[2,1,1,1],[2,3,3,1],[0,2,3,1]],[[1,2,1,0],[2,1,1,1],[2,3,3,1],[0,3,2,1]],[[1,2,1,0],[2,1,1,1],[2,4,3,1],[0,2,2,1]],[[1,2,1,0],[2,1,1,1],[3,3,3,1],[0,2,2,1]],[[1,2,1,0],[3,1,1,1],[2,3,3,1],[0,2,2,1]],[[2,2,1,0],[2,1,1,1],[2,3,3,1],[0,2,2,1]],[[1,2,1,0],[2,1,1,1],[2,2,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,1,1],[2,2,3,2],[1,3,2,0]],[[1,2,1,0],[2,1,1,1],[2,2,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,1,1],[3,2,3,2],[1,2,2,0]],[[1,2,1,0],[3,1,1,1],[2,2,3,2],[1,2,2,0]],[[2,2,1,0],[2,1,1,1],[2,2,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,1,1],[2,2,3,1],[1,2,2,2]],[[1,2,1,0],[2,1,1,1],[2,2,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,1,1],[2,2,3,1],[1,3,2,1]],[[1,2,1,0],[2,1,1,1],[2,2,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,1,1],[3,2,3,1],[1,2,2,1]],[[1,2,1,0],[3,1,1,1],[2,2,3,1],[1,2,2,1]],[[2,2,1,0],[2,1,1,1],[2,2,3,1],[1,2,2,1]],[[1,2,1,0],[2,1,1,1],[1,3,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,1,1],[1,3,3,2],[1,3,2,0]],[[1,2,1,0],[2,1,1,1],[1,3,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,1,1],[1,4,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,1,1],[1,3,3,1],[1,2,2,2]],[[1,2,1,0],[2,1,1,1],[1,3,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,1,1],[1,3,3,1],[1,3,2,1]],[[1,2,1,0],[2,1,1,1],[1,3,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,1,1],[1,4,3,1],[1,2,2,1]],[[1,2,1,0],[2,1,1,0],[2,3,3,2],[2,1,2,1]],[[1,2,1,0],[2,1,1,0],[2,4,3,2],[1,1,2,1]],[[1,2,1,0],[2,1,1,0],[3,3,3,2],[1,1,2,1]],[[1,2,1,0],[3,1,1,0],[2,3,3,2],[1,1,2,1]],[[2,2,1,0],[2,1,1,0],[2,3,3,2],[1,1,2,1]],[[1,2,1,0],[2,1,1,0],[2,3,3,2],[0,2,2,2]],[[1,2,1,0],[2,1,1,0],[2,3,3,2],[0,2,3,1]],[[1,2,1,0],[2,1,1,0],[2,3,3,2],[0,3,2,1]],[[1,2,1,0],[2,1,1,0],[2,4,3,2],[0,2,2,1]],[[1,2,1,0],[2,1,1,0],[3,3,3,2],[0,2,2,1]],[[1,2,1,0],[3,1,1,0],[2,3,3,2],[0,2,2,1]],[[2,2,1,0],[2,1,1,0],[2,3,3,2],[0,2,2,1]],[[1,2,1,0],[2,1,1,0],[2,2,3,2],[1,2,2,2]],[[1,2,1,0],[2,1,1,0],[2,2,3,2],[1,2,3,1]],[[1,2,1,0],[2,1,1,0],[2,2,3,2],[1,3,2,1]],[[1,2,1,0],[2,1,1,0],[2,2,3,2],[2,2,2,1]],[[1,2,1,0],[2,1,1,0],[3,2,3,2],[1,2,2,1]],[[1,2,1,0],[3,1,1,0],[2,2,3,2],[1,2,2,1]],[[2,2,1,0],[2,1,1,0],[2,2,3,2],[1,2,2,1]],[[1,2,1,0],[2,1,1,0],[1,3,3,2],[1,2,2,2]],[[1,2,1,0],[2,1,1,0],[1,3,3,2],[1,2,3,1]],[[1,2,1,0],[2,1,1,0],[1,3,3,2],[1,3,2,1]],[[1,2,1,0],[2,1,1,0],[1,3,3,2],[2,2,2,1]],[[1,2,1,0],[2,1,1,0],[1,4,3,2],[1,2,2,1]],[[1,2,1,0],[2,1,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,1,0],[2,1,0,2],[2,4,3,2],[1,1,2,0]],[[1,2,1,0],[2,1,0,2],[3,3,3,2],[1,1,2,0]],[[1,2,1,0],[3,1,0,2],[2,3,3,2],[1,1,2,0]],[[2,2,1,0],[2,1,0,2],[2,3,3,2],[1,1,2,0]],[[1,2,1,0],[2,1,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,1,0],[2,1,0,2],[2,3,3,2],[1,0,3,1]],[[1,2,1,0],[2,1,0,2],[2,3,3,3],[1,0,2,1]],[[1,1,1,1],[1,0,3,0],[2,3,4,1],[1,2,2,1]],[[1,1,1,1],[1,0,3,0],[2,3,3,1],[2,2,2,1]],[[1,1,1,1],[1,0,3,0],[2,3,3,1],[1,3,2,1]],[[1,1,1,1],[1,0,3,0],[2,3,3,1],[1,2,3,1]],[[1,1,1,1],[1,0,3,0],[2,3,3,1],[1,2,2,2]],[[1,1,1,1],[1,0,3,0],[2,3,4,2],[1,2,2,0]],[[1,1,1,1],[1,0,3,0],[2,3,3,2],[2,2,2,0]],[[1,1,1,1],[1,0,3,0],[2,3,3,2],[1,3,2,0]],[[1,1,1,1],[1,0,3,0],[2,3,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,0,2],[2,3,3,2],[0,2,3,0]],[[1,2,1,0],[2,1,0,2],[2,3,3,2],[0,3,2,0]],[[1,2,1,0],[2,1,0,2],[2,4,3,2],[0,2,2,0]],[[1,2,1,0],[2,1,0,2],[3,3,3,2],[0,2,2,0]],[[1,2,1,0],[3,1,0,2],[2,3,3,2],[0,2,2,0]],[[2,2,1,0],[2,1,0,2],[2,3,3,2],[0,2,2,0]],[[1,2,1,0],[2,1,0,2],[2,3,3,2],[0,1,2,2]],[[1,2,1,0],[2,1,0,2],[2,3,3,2],[0,1,3,1]],[[1,2,1,0],[2,1,0,2],[2,3,3,3],[0,1,2,1]],[[1,2,1,0],[2,1,0,2],[2,3,3,1],[2,1,2,1]],[[1,2,1,0],[2,1,0,2],[2,4,3,1],[1,1,2,1]],[[1,2,1,0],[2,1,0,2],[3,3,3,1],[1,1,2,1]],[[1,2,1,0],[3,1,0,2],[2,3,3,1],[1,1,2,1]],[[2,2,1,0],[2,1,0,2],[2,3,3,1],[1,1,2,1]],[[1,2,1,0],[2,1,0,2],[2,3,3,1],[0,2,2,2]],[[1,2,1,0],[2,1,0,2],[2,3,3,1],[0,2,3,1]],[[1,2,1,0],[2,1,0,2],[2,3,3,1],[0,3,2,1]],[[1,2,1,0],[2,1,0,2],[2,4,3,1],[0,2,2,1]],[[1,2,1,0],[2,1,0,2],[3,3,3,1],[0,2,2,1]],[[1,2,1,0],[3,1,0,2],[2,3,3,1],[0,2,2,1]],[[2,2,1,0],[2,1,0,2],[2,3,3,1],[0,2,2,1]],[[1,2,1,0],[2,1,0,2],[2,3,2,2],[2,1,2,1]],[[1,2,1,0],[2,1,0,2],[2,4,2,2],[1,1,2,1]],[[1,2,1,0],[2,1,0,2],[3,3,2,2],[1,1,2,1]],[[1,2,1,0],[3,1,0,2],[2,3,2,2],[1,1,2,1]],[[2,2,1,0],[2,1,0,2],[2,3,2,2],[1,1,2,1]],[[1,2,1,0],[2,1,0,2],[2,3,2,2],[0,2,2,2]],[[1,2,1,0],[2,1,0,2],[2,3,2,2],[0,2,3,1]],[[1,2,1,0],[2,1,0,2],[2,3,2,2],[0,3,2,1]],[[1,2,1,0],[2,1,0,2],[2,3,2,3],[0,2,2,1]],[[1,2,1,0],[2,1,0,2],[2,4,2,2],[0,2,2,1]],[[1,2,1,0],[2,1,0,2],[3,3,2,2],[0,2,2,1]],[[1,2,1,0],[3,1,0,2],[2,3,2,2],[0,2,2,1]],[[2,2,1,0],[2,1,0,2],[2,3,2,2],[0,2,2,1]],[[1,2,1,0],[2,1,0,2],[2,2,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,0,2],[2,2,3,2],[1,3,2,0]],[[1,2,1,0],[2,1,0,2],[2,2,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,0,2],[3,2,3,2],[1,2,2,0]],[[1,2,1,0],[3,1,0,2],[2,2,3,2],[1,2,2,0]],[[2,2,1,0],[2,1,0,2],[2,2,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,0,2],[2,2,3,2],[0,2,2,2]],[[1,2,1,0],[2,1,0,2],[2,2,3,2],[0,2,3,1]],[[1,2,1,0],[2,1,0,2],[2,2,3,2],[0,3,2,1]],[[1,2,1,0],[2,1,0,2],[2,2,3,3],[0,2,2,1]],[[1,2,1,0],[2,1,0,2],[2,2,3,1],[1,2,2,2]],[[1,2,1,0],[2,1,0,2],[2,2,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,0,2],[2,2,3,1],[1,3,2,1]],[[1,2,1,0],[2,1,0,2],[2,2,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,0,2],[3,2,3,1],[1,2,2,1]],[[1,2,1,0],[3,1,0,2],[2,2,3,1],[1,2,2,1]],[[2,2,1,0],[2,1,0,2],[2,2,3,1],[1,2,2,1]],[[1,2,1,0],[2,1,0,2],[2,2,2,2],[1,2,2,2]],[[1,2,1,0],[2,1,0,2],[2,2,2,2],[1,2,3,1]],[[1,2,1,0],[2,1,0,2],[2,2,2,2],[1,3,2,1]],[[1,2,1,0],[2,1,0,2],[2,2,2,2],[2,2,2,1]],[[1,2,1,0],[2,1,0,2],[2,2,2,3],[1,2,2,1]],[[1,2,1,0],[2,1,0,2],[3,2,2,2],[1,2,2,1]],[[1,2,1,0],[3,1,0,2],[2,2,2,2],[1,2,2,1]],[[2,2,1,0],[2,1,0,2],[2,2,2,2],[1,2,2,1]],[[1,2,1,0],[2,1,0,2],[2,1,3,2],[1,2,2,2]],[[1,2,1,0],[2,1,0,2],[2,1,3,2],[1,2,3,1]],[[1,2,1,0],[2,1,0,2],[2,1,3,2],[1,3,2,1]],[[1,2,1,0],[2,1,0,2],[2,1,3,2],[2,2,2,1]],[[1,2,1,0],[2,1,0,2],[2,1,3,3],[1,2,2,1]],[[1,2,1,0],[2,1,0,2],[3,1,3,2],[1,2,2,1]],[[1,2,1,0],[3,1,0,2],[2,1,3,2],[1,2,2,1]],[[2,2,1,0],[2,1,0,2],[2,1,3,2],[1,2,2,1]],[[1,2,1,0],[2,1,0,2],[1,3,3,2],[1,2,3,0]],[[1,2,1,0],[2,1,0,2],[1,3,3,2],[1,3,2,0]],[[1,2,1,0],[2,1,0,2],[1,3,3,2],[2,2,2,0]],[[1,2,1,0],[2,1,0,2],[1,4,3,2],[1,2,2,0]],[[1,2,1,0],[2,1,0,2],[1,3,3,2],[1,1,2,2]],[[1,2,1,0],[2,1,0,2],[1,3,3,2],[1,1,3,1]],[[1,2,1,0],[2,1,0,2],[1,3,3,3],[1,1,2,1]],[[1,2,1,0],[2,1,0,2],[1,3,3,1],[1,2,2,2]],[[1,1,1,1],[1,1,3,0],[1,3,4,1],[1,2,2,1]],[[1,1,1,1],[1,1,3,0],[1,3,3,1],[2,2,2,1]],[[1,1,1,1],[1,1,3,0],[1,3,3,1],[1,3,2,1]],[[1,1,1,1],[1,1,3,0],[1,3,3,1],[1,2,3,1]],[[1,1,1,1],[1,1,3,0],[1,3,3,1],[1,2,2,2]],[[1,1,1,1],[1,1,3,0],[1,3,4,2],[1,2,2,0]],[[1,1,1,1],[1,1,3,0],[1,3,3,2],[2,2,2,0]],[[1,1,1,1],[1,1,3,0],[1,3,3,2],[1,3,2,0]],[[1,1,1,1],[1,1,3,0],[1,3,3,2],[1,2,3,0]],[[1,1,1,1],[1,1,3,0],[2,3,4,1],[0,2,2,1]],[[1,1,1,1],[1,1,3,0],[2,3,3,1],[0,3,2,1]],[[1,1,1,1],[1,1,3,0],[2,3,3,1],[0,2,3,1]],[[1,1,1,1],[1,1,3,0],[2,3,3,1],[0,2,2,2]],[[1,1,1,1],[1,1,3,0],[2,3,4,2],[0,2,2,0]],[[1,1,1,1],[1,1,3,0],[2,3,3,2],[0,3,2,0]],[[1,1,1,1],[1,1,3,0],[2,3,3,2],[0,2,3,0]],[[1,2,1,0],[2,1,0,2],[1,3,3,1],[1,2,3,1]],[[1,2,1,0],[2,1,0,2],[1,3,3,1],[1,3,2,1]],[[1,2,1,0],[2,1,0,2],[1,3,3,1],[2,2,2,1]],[[1,2,1,0],[2,1,0,2],[1,4,3,1],[1,2,2,1]],[[1,2,1,0],[2,1,0,2],[1,3,2,2],[1,2,2,2]],[[1,2,1,0],[2,1,0,2],[1,3,2,2],[1,2,3,1]],[[1,2,1,0],[2,1,0,2],[1,3,2,2],[1,3,2,1]],[[1,2,1,0],[2,1,0,2],[1,3,2,2],[2,2,2,1]],[[1,2,1,0],[2,1,0,2],[1,3,2,3],[1,2,2,1]],[[1,2,1,0],[2,1,0,2],[1,4,2,2],[1,2,2,1]],[[1,2,1,0],[2,1,0,2],[1,2,3,2],[1,2,2,2]],[[1,2,1,0],[2,1,0,2],[1,2,3,2],[1,2,3,1]],[[1,2,1,0],[2,1,0,2],[1,2,3,2],[1,3,2,1]],[[1,2,1,0],[2,1,0,2],[1,2,3,2],[2,2,2,1]],[[1,2,1,0],[2,1,0,2],[1,2,3,3],[1,2,2,1]],[[1,2,1,0],[2,1,0,1],[2,3,3,2],[2,1,2,1]],[[1,2,1,0],[2,1,0,1],[2,4,3,2],[1,1,2,1]],[[1,2,1,0],[2,1,0,1],[3,3,3,2],[1,1,2,1]],[[1,2,1,0],[3,1,0,1],[2,3,3,2],[1,1,2,1]],[[2,2,1,0],[2,1,0,1],[2,3,3,2],[1,1,2,1]],[[1,2,1,0],[2,1,0,1],[2,3,3,2],[0,2,2,2]],[[1,2,1,0],[2,1,0,1],[2,3,3,2],[0,2,3,1]],[[1,2,1,0],[2,1,0,1],[2,3,3,2],[0,3,2,1]],[[1,2,1,0],[2,1,0,1],[2,4,3,2],[0,2,2,1]],[[1,2,1,0],[2,1,0,1],[3,3,3,2],[0,2,2,1]],[[1,2,1,0],[3,1,0,1],[2,3,3,2],[0,2,2,1]],[[2,2,1,0],[2,1,0,1],[2,3,3,2],[0,2,2,1]],[[1,2,1,0],[2,1,0,1],[2,2,3,2],[1,2,2,2]],[[1,2,1,0],[2,1,0,1],[2,2,3,2],[1,2,3,1]],[[1,2,1,0],[2,1,0,1],[2,2,3,2],[1,3,2,1]],[[1,2,1,0],[2,1,0,1],[2,2,3,2],[2,2,2,1]],[[1,2,1,0],[2,1,0,1],[3,2,3,2],[1,2,2,1]],[[1,1,1,2],[1,1,3,2],[0,1,3,2],[1,2,2,1]],[[1,1,1,1],[1,1,3,3],[0,1,3,2],[1,2,2,1]],[[1,1,1,1],[1,1,3,2],[0,1,3,3],[1,2,2,1]],[[1,1,1,1],[1,1,3,2],[0,1,3,2],[1,2,3,1]],[[1,1,1,1],[1,1,3,2],[0,1,3,2],[1,2,2,2]],[[1,1,1,2],[1,1,3,2],[0,2,2,2],[1,2,2,1]],[[1,1,1,1],[1,1,3,3],[0,2,2,2],[1,2,2,1]],[[1,1,1,1],[1,1,3,2],[0,2,2,3],[1,2,2,1]],[[1,1,1,1],[1,1,3,2],[0,2,2,2],[1,3,2,1]],[[1,1,1,1],[1,1,3,2],[0,2,2,2],[1,2,3,1]],[[1,1,1,1],[1,1,3,2],[0,2,2,2],[1,2,2,2]],[[1,1,1,1],[1,1,3,2],[0,2,4,1],[1,2,2,1]],[[1,1,1,1],[1,1,3,2],[0,2,3,1],[1,3,2,1]],[[1,1,1,1],[1,1,3,2],[0,2,3,1],[1,2,3,1]],[[1,1,1,1],[1,1,3,2],[0,2,3,1],[1,2,2,2]],[[1,1,1,2],[1,1,3,2],[0,2,3,2],[1,2,1,1]],[[1,1,1,1],[1,1,3,3],[0,2,3,2],[1,2,1,1]],[[1,1,1,1],[1,1,3,2],[0,2,4,2],[1,2,1,1]],[[1,1,1,1],[1,1,3,2],[0,2,3,3],[1,2,1,1]],[[1,1,1,1],[1,1,3,2],[0,2,3,2],[1,2,1,2]],[[1,1,1,2],[1,1,3,2],[0,2,3,2],[1,2,2,0]],[[1,1,1,1],[1,1,3,3],[0,2,3,2],[1,2,2,0]],[[1,1,1,1],[1,1,3,2],[0,2,4,2],[1,2,2,0]],[[1,1,1,1],[1,1,3,2],[0,2,3,3],[1,2,2,0]],[[1,1,1,1],[1,1,3,2],[0,2,3,2],[1,3,2,0]],[[1,1,1,1],[1,1,3,2],[0,2,3,2],[1,2,3,0]],[[1,1,1,2],[1,1,3,2],[0,3,2,2],[1,1,2,1]],[[1,1,1,1],[1,1,3,3],[0,3,2,2],[1,1,2,1]],[[1,1,1,1],[1,1,3,2],[0,3,2,3],[1,1,2,1]],[[1,1,1,1],[1,1,3,2],[0,3,2,2],[1,1,3,1]],[[1,1,1,1],[1,1,3,2],[0,3,2,2],[1,1,2,2]],[[1,1,1,1],[1,1,3,2],[0,3,4,1],[1,1,2,1]],[[1,1,1,1],[1,1,3,2],[0,3,3,1],[1,1,3,1]],[[1,1,1,1],[1,1,3,2],[0,3,3,1],[1,1,2,2]],[[1,1,1,2],[1,1,3,2],[0,3,3,2],[1,0,2,1]],[[1,1,1,1],[1,1,3,3],[0,3,3,2],[1,0,2,1]],[[1,1,1,1],[1,1,3,2],[0,3,4,2],[1,0,2,1]],[[1,1,1,1],[1,1,3,2],[0,3,3,3],[1,0,2,1]],[[1,1,1,1],[1,1,3,2],[0,3,3,2],[1,0,2,2]],[[1,1,1,2],[1,1,3,2],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,1,3,3],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,1,3,2],[0,3,4,2],[1,1,1,1]],[[1,1,1,1],[1,1,3,2],[0,3,3,3],[1,1,1,1]],[[1,1,1,1],[1,1,3,2],[0,3,3,2],[1,1,1,2]],[[1,1,1,2],[1,1,3,2],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,1,3,3],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,1,3,2],[0,3,4,2],[1,1,2,0]],[[1,1,1,1],[1,1,3,2],[0,3,3,3],[1,1,2,0]],[[1,1,1,1],[1,1,3,2],[0,3,3,2],[1,1,3,0]],[[1,1,1,2],[1,1,3,2],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,1,3,3],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,1,3,2],[0,3,4,2],[1,2,0,1]],[[1,1,1,1],[1,1,3,2],[0,3,3,3],[1,2,0,1]],[[1,1,1,1],[1,1,3,2],[0,3,3,2],[1,2,0,2]],[[1,1,1,2],[1,1,3,2],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,1,3,3],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,1,3,2],[0,3,4,2],[1,2,1,0]],[[1,1,1,1],[1,1,3,2],[0,3,3,3],[1,2,1,0]],[[1,2,1,0],[3,1,0,1],[2,2,3,2],[1,2,2,1]],[[2,2,1,0],[2,1,0,1],[2,2,3,2],[1,2,2,1]],[[1,2,1,0],[2,1,0,1],[1,3,3,2],[1,2,2,2]],[[1,2,1,0],[2,1,0,1],[1,3,3,2],[1,2,3,1]],[[1,2,1,0],[2,1,0,1],[1,3,3,2],[1,3,2,1]],[[1,2,1,0],[2,1,0,1],[1,3,3,2],[2,2,2,1]],[[1,2,1,0],[2,1,0,1],[1,4,3,2],[1,2,2,1]],[[1,1,1,2],[1,1,3,2],[1,1,3,2],[0,2,2,1]],[[1,1,1,1],[1,1,3,3],[1,1,3,2],[0,2,2,1]],[[1,1,1,1],[1,1,3,2],[1,1,3,3],[0,2,2,1]],[[1,1,1,1],[1,1,3,2],[1,1,3,2],[0,2,3,1]],[[1,1,1,1],[1,1,3,2],[1,1,3,2],[0,2,2,2]],[[1,1,1,2],[1,1,3,2],[1,2,2,2],[0,2,2,1]],[[1,1,1,1],[1,1,3,3],[1,2,2,2],[0,2,2,1]],[[1,1,1,1],[1,1,3,2],[1,2,2,3],[0,2,2,1]],[[1,1,1,1],[1,1,3,2],[1,2,2,2],[0,2,3,1]],[[1,1,1,1],[1,1,3,2],[1,2,2,2],[0,2,2,2]],[[1,1,1,1],[1,1,3,2],[1,2,4,1],[0,2,2,1]],[[1,1,1,1],[1,1,3,2],[1,2,3,1],[0,2,3,1]],[[1,1,1,1],[1,1,3,2],[1,2,3,1],[0,2,2,2]],[[1,1,1,2],[1,1,3,2],[1,2,3,2],[0,2,1,1]],[[1,1,1,1],[1,1,3,3],[1,2,3,2],[0,2,1,1]],[[1,1,1,1],[1,1,3,2],[1,2,4,2],[0,2,1,1]],[[1,1,1,1],[1,1,3,2],[1,2,3,3],[0,2,1,1]],[[1,1,1,1],[1,1,3,2],[1,2,3,2],[0,2,1,2]],[[1,1,1,2],[1,1,3,2],[1,2,3,2],[0,2,2,0]],[[1,1,1,1],[1,1,3,3],[1,2,3,2],[0,2,2,0]],[[1,1,1,1],[1,1,3,2],[1,2,4,2],[0,2,2,0]],[[1,1,1,1],[1,1,3,2],[1,2,3,3],[0,2,2,0]],[[1,1,1,1],[1,1,3,2],[1,2,3,2],[0,2,3,0]],[[1,1,1,2],[1,1,3,2],[1,3,2,2],[0,1,2,1]],[[1,1,1,1],[1,1,3,3],[1,3,2,2],[0,1,2,1]],[[1,1,1,1],[1,1,3,2],[1,3,2,3],[0,1,2,1]],[[1,1,1,1],[1,1,3,2],[1,3,2,2],[0,1,3,1]],[[1,1,1,1],[1,1,3,2],[1,3,2,2],[0,1,2,2]],[[1,1,1,1],[1,1,3,2],[1,3,4,1],[0,1,2,1]],[[1,1,1,1],[1,1,3,2],[1,3,3,1],[0,1,3,1]],[[1,1,1,1],[1,1,3,2],[1,3,3,1],[0,1,2,2]],[[1,1,1,2],[1,1,3,2],[1,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,1,3,3],[1,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,1,3,2],[1,3,4,2],[0,0,2,1]],[[1,1,1,1],[1,1,3,2],[1,3,3,3],[0,0,2,1]],[[1,1,1,1],[1,1,3,2],[1,3,3,2],[0,0,2,2]],[[1,1,1,2],[1,1,3,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,1,3,3],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,1,3,2],[1,3,4,2],[0,1,1,1]],[[1,1,1,1],[1,1,3,2],[1,3,3,3],[0,1,1,1]],[[1,1,1,1],[1,1,3,2],[1,3,3,2],[0,1,1,2]],[[1,1,1,2],[1,1,3,2],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,1,3,3],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,1,3,2],[1,3,4,2],[0,1,2,0]],[[1,1,1,1],[1,1,3,2],[1,3,3,3],[0,1,2,0]],[[1,1,1,1],[1,1,3,2],[1,3,3,2],[0,1,3,0]],[[1,1,1,2],[1,1,3,2],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,1,3,3],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,1,3,2],[1,3,4,2],[0,2,0,1]],[[1,1,1,1],[1,1,3,2],[1,3,3,3],[0,2,0,1]],[[1,1,1,1],[1,1,3,2],[1,3,3,2],[0,2,0,2]],[[1,1,1,2],[1,1,3,2],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,1,3,3],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,1,3,2],[1,3,4,2],[0,2,1,0]],[[1,1,1,1],[1,1,3,2],[1,3,3,3],[0,2,1,0]],[[1,1,1,2],[1,1,3,2],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,1,3,3],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,1,3,2],[1,3,4,2],[1,0,1,1]],[[1,1,1,1],[1,1,3,2],[1,3,3,3],[1,0,1,1]],[[1,1,1,1],[1,1,3,2],[1,3,3,2],[1,0,1,2]],[[1,1,1,2],[1,1,3,2],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,1,3,3],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,1,3,2],[1,3,4,2],[1,0,2,0]],[[1,1,1,1],[1,1,3,2],[1,3,3,3],[1,0,2,0]],[[1,2,1,0],[2,0,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,0],[2,0,3,3],[2,3,3,2],[1,0,0,1]],[[1,2,1,0],[2,0,4,2],[2,3,3,2],[1,0,0,1]],[[1,2,1,0],[2,0,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,0],[2,0,3,3],[2,3,3,2],[0,1,0,1]],[[1,2,1,0],[2,0,4,2],[2,3,3,2],[0,1,0,1]],[[1,2,1,0],[2,0,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[2,0,3,2],[2,4,3,1],[1,2,0,0]],[[1,2,1,0],[2,0,3,2],[3,3,3,1],[1,2,0,0]],[[1,2,1,0],[3,0,3,2],[2,3,3,1],[1,2,0,0]],[[1,3,1,0],[2,0,3,2],[2,3,3,1],[1,2,0,0]],[[2,2,1,0],[2,0,3,2],[2,3,3,1],[1,2,0,0]],[[1,2,1,0],[2,0,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,0],[2,0,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,1,0],[2,0,3,2],[2,4,3,1],[1,1,1,0]],[[1,2,1,0],[2,0,3,2],[3,3,3,1],[1,1,1,0]],[[1,2,1,0],[2,0,3,3],[2,3,3,1],[1,1,1,0]],[[1,2,1,0],[2,0,4,2],[2,3,3,1],[1,1,1,0]],[[1,2,1,0],[3,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,3,1,0],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[2,2,1,0],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,2,1,0],[2,0,3,2],[2,3,3,1],[2,1,0,1]],[[1,2,1,0],[2,0,3,2],[2,3,4,1],[1,1,0,1]],[[1,2,1,0],[2,0,3,2],[2,4,3,1],[1,1,0,1]],[[1,2,1,0],[2,0,3,2],[3,3,3,1],[1,1,0,1]],[[1,2,1,0],[2,0,3,3],[2,3,3,1],[1,1,0,1]],[[1,2,1,0],[2,0,4,2],[2,3,3,1],[1,1,0,1]],[[1,2,1,0],[3,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,3,1,0],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[2,2,1,0],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,2,1,0],[2,0,3,2],[2,3,3,1],[1,0,3,0]],[[1,2,1,0],[2,0,3,2],[2,3,3,1],[2,0,2,0]],[[1,2,1,0],[2,0,3,2],[2,3,4,1],[1,0,2,0]],[[1,2,1,0],[2,0,3,2],[2,4,3,1],[1,0,2,0]],[[1,2,1,0],[2,0,3,2],[3,3,3,1],[1,0,2,0]],[[1,2,1,0],[2,0,3,3],[2,3,3,1],[1,0,2,0]],[[1,2,1,0],[2,0,4,2],[2,3,3,1],[1,0,2,0]],[[1,2,1,0],[3,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,3,1,0],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[2,2,1,0],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,2,1,0],[2,0,3,2],[2,3,3,1],[2,0,1,1]],[[1,2,1,0],[2,0,3,2],[2,3,4,1],[1,0,1,1]],[[1,2,1,0],[2,0,3,2],[2,4,3,1],[1,0,1,1]],[[1,2,1,0],[2,0,3,2],[3,3,3,1],[1,0,1,1]],[[1,2,1,0],[2,0,3,3],[2,3,3,1],[1,0,1,1]],[[1,2,1,0],[2,0,4,2],[2,3,3,1],[1,0,1,1]],[[1,2,1,0],[3,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,3,1,0],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[2,2,1,0],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,2,1,0],[2,0,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[2,0,3,2],[2,3,4,1],[0,2,1,0]],[[1,2,1,0],[2,0,3,2],[2,4,3,1],[0,2,1,0]],[[1,2,1,0],[2,0,3,2],[3,3,3,1],[0,2,1,0]],[[1,2,1,0],[2,0,3,3],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,2,1,2],[0,2,3,3],[1,2,2,1]],[[1,1,1,1],[1,2,1,2],[0,2,3,2],[1,3,2,1]],[[1,1,1,1],[1,2,1,2],[0,2,3,2],[1,2,3,1]],[[1,1,1,1],[1,2,1,2],[0,2,3,2],[1,2,2,2]],[[1,1,1,1],[1,2,1,2],[0,3,3,3],[1,1,2,1]],[[1,1,1,1],[1,2,1,2],[0,3,3,2],[1,1,3,1]],[[1,1,1,1],[1,2,1,2],[0,3,3,2],[1,1,2,2]],[[1,1,1,1],[1,2,1,2],[1,2,3,3],[0,2,2,1]],[[1,1,1,1],[1,2,1,2],[1,2,3,2],[0,2,3,1]],[[1,1,1,1],[1,2,1,2],[1,2,3,2],[0,2,2,2]],[[1,1,1,1],[1,2,1,2],[1,3,3,3],[0,1,2,1]],[[1,1,1,1],[1,2,1,2],[1,3,3,2],[0,1,3,1]],[[1,1,1,1],[1,2,1,2],[1,3,3,2],[0,1,2,2]],[[1,2,1,0],[2,0,4,2],[2,3,3,1],[0,2,1,0]],[[1,2,1,0],[3,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,3,1,0],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[2,2,1,0],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,2,1,0],[2,0,3,2],[2,3,3,1],[0,3,0,1]],[[1,2,1,0],[2,0,3,2],[2,3,4,1],[0,2,0,1]],[[1,2,1,0],[2,0,3,2],[2,4,3,1],[0,2,0,1]],[[1,2,1,0],[2,0,3,2],[3,3,3,1],[0,2,0,1]],[[1,2,1,0],[2,0,3,3],[2,3,3,1],[0,2,0,1]],[[1,2,1,0],[2,0,4,2],[2,3,3,1],[0,2,0,1]],[[1,2,1,0],[3,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,3,1,0],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[2,2,1,0],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,2],[1,2,2,2],[0,1,3,2],[1,2,2,1]],[[1,1,1,1],[1,2,2,3],[0,1,3,2],[1,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,1,3,3],[1,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,1,3,2],[1,2,3,1]],[[1,1,1,1],[1,2,2,2],[0,1,3,2],[1,2,2,2]],[[1,1,1,2],[1,2,2,2],[0,2,2,2],[1,2,2,1]],[[1,1,1,1],[1,2,2,3],[0,2,2,2],[1,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,2,2,3],[1,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,2,2,2],[2,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,2,2,2],[1,3,2,1]],[[1,1,1,1],[1,2,2,2],[0,2,2,2],[1,2,3,1]],[[1,1,1,1],[1,2,2,2],[0,2,2,2],[1,2,2,2]],[[1,1,1,1],[1,2,2,2],[0,2,4,1],[1,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,2,3,1],[2,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,2,3,1],[1,3,2,1]],[[1,1,1,1],[1,2,2,2],[0,2,3,1],[1,2,3,1]],[[1,1,1,1],[1,2,2,2],[0,2,3,1],[1,2,2,2]],[[1,1,1,2],[1,2,2,2],[0,2,3,2],[1,2,1,1]],[[1,1,1,1],[1,2,2,3],[0,2,3,2],[1,2,1,1]],[[1,1,1,1],[1,2,2,2],[0,2,4,2],[1,2,1,1]],[[1,1,1,1],[1,2,2,2],[0,2,3,3],[1,2,1,1]],[[1,1,1,1],[1,2,2,2],[0,2,3,2],[1,2,1,2]],[[1,1,1,2],[1,2,2,2],[0,2,3,2],[1,2,2,0]],[[1,1,1,1],[1,2,2,3],[0,2,3,2],[1,2,2,0]],[[1,1,1,1],[1,2,2,2],[0,2,4,2],[1,2,2,0]],[[1,1,1,1],[1,2,2,2],[0,2,3,3],[1,2,2,0]],[[1,1,1,1],[1,2,2,2],[0,2,3,2],[2,2,2,0]],[[1,1,1,1],[1,2,2,2],[0,2,3,2],[1,3,2,0]],[[1,1,1,1],[1,2,2,2],[0,2,3,2],[1,2,3,0]],[[1,1,1,2],[1,2,2,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,2,2,3],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,4,1,2],[1,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,1,3],[1,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,1,2],[2,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,1,2],[1,3,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,1,2],[1,2,3,1]],[[1,1,1,1],[1,2,2,2],[0,3,1,2],[1,2,2,2]],[[1,1,1,1],[1,2,2,2],[0,4,2,1],[1,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,2,1],[2,2,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,2,1],[1,3,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,2,1],[1,2,3,1]],[[1,1,1,1],[1,2,2,2],[0,3,2,1],[1,2,2,2]],[[1,1,1,2],[1,2,2,2],[0,3,2,2],[1,1,2,1]],[[1,1,1,1],[1,2,2,3],[0,3,2,2],[1,1,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,2,3],[1,1,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,2,2],[1,1,3,1]],[[1,1,1,1],[1,2,2,2],[0,3,2,2],[1,1,2,2]],[[1,1,1,1],[1,2,2,2],[0,4,2,2],[1,2,2,0]],[[1,1,1,1],[1,2,2,2],[0,3,2,2],[2,2,2,0]],[[1,1,1,1],[1,2,2,2],[0,3,2,2],[1,3,2,0]],[[1,1,1,1],[1,2,2,2],[0,3,2,2],[1,2,3,0]],[[1,1,1,1],[1,2,2,2],[0,4,3,1],[1,1,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,4,1],[1,1,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,1],[1,1,3,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,1],[1,1,2,2]],[[1,1,1,1],[1,2,2,2],[0,4,3,1],[1,2,1,1]],[[1,1,1,1],[1,2,2,2],[0,3,4,1],[1,2,1,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,1],[2,2,1,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,1],[1,3,1,1]],[[1,1,1,2],[1,2,2,2],[0,3,3,2],[1,0,2,1]],[[1,1,1,1],[1,2,2,3],[0,3,3,2],[1,0,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,4,2],[1,0,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,3],[1,0,2,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,2],[1,0,2,2]],[[1,1,1,2],[1,2,2,2],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,2,2,3],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,2,2,2],[0,4,3,2],[1,1,1,1]],[[1,1,1,1],[1,2,2,2],[0,3,4,2],[1,1,1,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,3],[1,1,1,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,2],[1,1,1,2]],[[1,1,1,2],[1,2,2,2],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,2,2,3],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,2,2,2],[0,4,3,2],[1,1,2,0]],[[1,1,1,1],[1,2,2,2],[0,3,4,2],[1,1,2,0]],[[1,1,1,1],[1,2,2,2],[0,3,3,3],[1,1,2,0]],[[1,1,1,1],[1,2,2,2],[0,3,3,2],[1,1,3,0]],[[1,1,1,2],[1,2,2,2],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,2,2,3],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,2,2,2],[0,4,3,2],[1,2,0,1]],[[1,1,1,1],[1,2,2,2],[0,3,4,2],[1,2,0,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,3],[1,2,0,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,2],[2,2,0,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,2],[1,3,0,1]],[[1,1,1,1],[1,2,2,2],[0,3,3,2],[1,2,0,2]],[[1,1,1,2],[1,2,2,2],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,2,2,3],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,2,2,2],[0,4,3,2],[1,2,1,0]],[[1,1,1,1],[1,2,2,2],[0,3,4,2],[1,2,1,0]],[[1,1,1,1],[1,2,2,2],[0,3,3,3],[1,2,1,0]],[[1,1,1,1],[1,2,2,2],[0,3,3,2],[2,2,1,0]],[[1,1,1,1],[1,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,3,2],[2,3,3,1],[0,1,3,0]],[[1,2,1,0],[2,0,3,2],[2,3,4,1],[0,1,2,0]],[[1,2,1,0],[2,0,3,2],[2,4,3,1],[0,1,2,0]],[[1,2,1,0],[2,0,3,2],[3,3,3,1],[0,1,2,0]],[[1,2,1,0],[2,0,3,3],[2,3,3,1],[0,1,2,0]],[[1,2,1,0],[2,0,4,2],[2,3,3,1],[0,1,2,0]],[[1,2,1,0],[3,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,3,1,0],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,2],[1,2,2,2],[1,1,3,2],[0,2,2,1]],[[1,1,1,1],[1,2,2,3],[1,1,3,2],[0,2,2,1]],[[1,1,1,1],[1,2,2,2],[1,1,3,3],[0,2,2,1]],[[1,1,1,1],[1,2,2,2],[1,1,3,2],[0,2,3,1]],[[1,1,1,1],[1,2,2,2],[1,1,3,2],[0,2,2,2]],[[1,1,1,2],[1,2,2,2],[1,2,2,2],[0,2,2,1]],[[1,1,1,1],[1,2,2,3],[1,2,2,2],[0,2,2,1]],[[1,1,1,1],[1,2,2,2],[1,2,2,3],[0,2,2,1]],[[1,1,1,1],[1,2,2,2],[1,2,2,2],[0,3,2,1]],[[1,1,1,1],[1,2,2,2],[1,2,2,2],[0,2,3,1]],[[1,1,1,1],[1,2,2,2],[1,2,2,2],[0,2,2,2]],[[1,1,1,1],[1,2,2,2],[1,2,4,1],[0,2,2,1]],[[1,1,1,1],[1,2,2,2],[1,2,3,1],[0,3,2,1]],[[1,1,1,1],[1,2,2,2],[1,2,3,1],[0,2,3,1]],[[1,1,1,1],[1,2,2,2],[1,2,3,1],[0,2,2,2]],[[1,1,1,2],[1,2,2,2],[1,2,3,2],[0,2,1,1]],[[1,1,1,1],[1,2,2,3],[1,2,3,2],[0,2,1,1]],[[1,1,1,1],[1,2,2,2],[1,2,4,2],[0,2,1,1]],[[1,1,1,1],[1,2,2,2],[1,2,3,3],[0,2,1,1]],[[1,1,1,1],[1,2,2,2],[1,2,3,2],[0,2,1,2]],[[1,1,1,2],[1,2,2,2],[1,2,3,2],[0,2,2,0]],[[1,1,1,1],[1,2,2,3],[1,2,3,2],[0,2,2,0]],[[1,1,1,1],[1,2,2,2],[1,2,4,2],[0,2,2,0]],[[1,1,1,1],[1,2,2,2],[1,2,3,3],[0,2,2,0]],[[1,1,1,1],[1,2,2,2],[1,2,3,2],[0,3,2,0]],[[1,1,1,1],[1,2,2,2],[1,2,3,2],[0,2,3,0]],[[2,2,1,0],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,2,1,0],[2,0,3,2],[2,3,4,1],[0,1,1,1]],[[1,2,1,0],[2,0,3,2],[2,4,3,1],[0,1,1,1]],[[1,2,1,0],[2,0,3,2],[3,3,3,1],[0,1,1,1]],[[1,2,1,0],[2,0,3,3],[2,3,3,1],[0,1,1,1]],[[1,2,1,0],[2,0,4,2],[2,3,3,1],[0,1,1,1]],[[1,2,1,0],[3,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,3,1,0],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,2],[1,2,2,2],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,2,2,3],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,2,2,2],[1,4,1,2],[0,2,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,1,3],[0,2,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,1,2],[0,3,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,1,2],[0,2,3,1]],[[1,1,1,1],[1,2,2,2],[1,3,1,2],[0,2,2,2]],[[1,1,1,1],[1,2,2,2],[1,4,2,1],[0,2,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,2,1],[0,3,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,2,1],[0,2,3,1]],[[1,1,1,1],[1,2,2,2],[1,3,2,1],[0,2,2,2]],[[1,1,1,2],[1,2,2,2],[1,3,2,2],[0,1,2,1]],[[1,1,1,1],[1,2,2,3],[1,3,2,2],[0,1,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,2,3],[0,1,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,2,2],[0,1,3,1]],[[1,1,1,1],[1,2,2,2],[1,3,2,2],[0,1,2,2]],[[1,1,1,1],[1,2,2,2],[1,4,2,2],[0,2,2,0]],[[1,1,1,1],[1,2,2,2],[1,3,2,2],[0,3,2,0]],[[1,1,1,1],[1,2,2,2],[1,3,2,2],[0,2,3,0]],[[1,1,1,2],[1,2,2,2],[1,3,2,2],[1,0,2,1]],[[1,1,1,1],[1,2,2,3],[1,3,2,2],[1,0,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,2,3],[1,0,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,2,2],[1,0,3,1]],[[1,1,1,1],[1,2,2,2],[1,3,2,2],[1,0,2,2]],[[2,2,1,0],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,2,1,0],[2,0,3,2],[2,3,4,1],[0,0,2,1]],[[1,2,1,0],[2,0,3,3],[2,3,3,1],[0,0,2,1]],[[1,2,1,0],[2,0,4,2],[2,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,2,2,2],[1,4,3,1],[0,1,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,4,1],[0,1,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,1],[0,1,3,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,1],[0,1,2,2]],[[1,1,1,1],[1,2,2,2],[1,4,3,1],[0,2,1,1]],[[1,1,1,1],[1,2,2,2],[1,3,4,1],[0,2,1,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,1],[0,3,1,1]],[[1,1,1,1],[1,2,2,2],[1,4,3,1],[1,0,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,4,1],[1,0,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,1],[1,0,3,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,1],[1,0,2,2]],[[1,1,1,2],[1,2,2,2],[1,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,2,2,3],[1,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,4,2],[0,0,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,3],[0,0,2,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,2],[0,0,2,2]],[[1,1,1,2],[1,2,2,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,2,2,3],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,2,2,2],[1,4,3,2],[0,1,1,1]],[[1,1,1,1],[1,2,2,2],[1,3,4,2],[0,1,1,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,3],[0,1,1,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,2],[0,1,1,2]],[[1,1,1,2],[1,2,2,2],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,2,2,3],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,2,2,2],[1,4,3,2],[0,1,2,0]],[[1,1,1,1],[1,2,2,2],[1,3,4,2],[0,1,2,0]],[[1,1,1,1],[1,2,2,2],[1,3,3,3],[0,1,2,0]],[[1,1,1,1],[1,2,2,2],[1,3,3,2],[0,1,3,0]],[[1,1,1,2],[1,2,2,2],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,2,2,3],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,2,2,2],[1,4,3,2],[0,2,0,1]],[[1,1,1,1],[1,2,2,2],[1,3,4,2],[0,2,0,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,3],[0,2,0,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,2],[0,3,0,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,2],[0,2,0,2]],[[1,1,1,2],[1,2,2,2],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,2,2,3],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,2,2,2],[1,4,3,2],[0,2,1,0]],[[1,1,1,1],[1,2,2,2],[1,3,4,2],[0,2,1,0]],[[1,1,1,1],[1,2,2,2],[1,3,3,3],[0,2,1,0]],[[1,1,1,1],[1,2,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,0,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[2,0,3,2],[2,4,3,0],[1,2,0,1]],[[1,2,1,0],[2,0,3,2],[3,3,3,0],[1,2,0,1]],[[1,2,1,0],[3,0,3,2],[2,3,3,0],[1,2,0,1]],[[1,3,1,0],[2,0,3,2],[2,3,3,0],[1,2,0,1]],[[2,2,1,0],[2,0,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,2],[1,2,2,2],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,2,2,3],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,2,2,2],[1,4,3,2],[1,0,1,1]],[[1,1,1,1],[1,2,2,2],[1,3,4,2],[1,0,1,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,3],[1,0,1,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,2],[1,0,1,2]],[[1,1,1,2],[1,2,2,2],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,2,2,3],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,2,2,2],[1,4,3,2],[1,0,2,0]],[[1,1,1,1],[1,2,2,2],[1,3,4,2],[1,0,2,0]],[[1,1,1,1],[1,2,2,2],[1,3,3,3],[1,0,2,0]],[[1,1,1,1],[1,2,2,2],[1,3,3,2],[1,0,3,0]],[[1,1,1,2],[1,2,2,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,2,2,3],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,2,2,2],[1,4,3,2],[1,1,0,1]],[[1,1,1,1],[1,2,2,2],[1,3,4,2],[1,1,0,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,3],[1,1,0,1]],[[1,1,1,1],[1,2,2,2],[1,3,3,2],[1,1,0,2]],[[1,1,1,2],[1,2,2,2],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,2,2,3],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,2,2,2],[1,4,3,2],[1,1,1,0]],[[1,1,1,1],[1,2,2,2],[1,3,4,2],[1,1,1,0]],[[1,1,1,1],[1,2,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[2,0,3,2],[2,3,3,0],[2,1,1,1]],[[1,2,1,0],[2,0,3,2],[2,3,4,0],[1,1,1,1]],[[1,2,1,0],[2,0,3,2],[2,4,3,0],[1,1,1,1]],[[1,2,1,0],[2,0,3,2],[3,3,3,0],[1,1,1,1]],[[1,2,1,0],[2,0,3,3],[2,3,3,0],[1,1,1,1]],[[1,2,1,0],[2,0,4,2],[2,3,3,0],[1,1,1,1]],[[1,2,1,0],[3,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,3,1,0],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[2,2,1,0],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,2,1,0],[2,0,3,2],[2,3,3,0],[1,0,2,2]],[[1,2,1,0],[2,0,3,2],[2,3,3,0],[1,0,3,1]],[[1,2,1,0],[2,0,3,2],[2,3,3,0],[2,0,2,1]],[[1,2,1,0],[2,0,3,2],[2,3,4,0],[1,0,2,1]],[[1,2,1,0],[2,0,3,2],[2,4,3,0],[1,0,2,1]],[[1,2,1,0],[2,0,3,2],[3,3,3,0],[1,0,2,1]],[[1,2,1,0],[2,0,3,3],[2,3,3,0],[1,0,2,1]],[[1,2,1,0],[2,0,4,2],[2,3,3,0],[1,0,2,1]],[[1,2,1,0],[3,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,3,1,0],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[2,2,1,0],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,2,1,0],[2,0,3,2],[2,3,3,0],[0,3,1,1]],[[1,2,1,0],[2,0,3,2],[2,3,4,0],[0,2,1,1]],[[1,2,1,0],[2,0,3,2],[2,4,3,0],[0,2,1,1]],[[1,2,1,0],[2,0,3,2],[3,3,3,0],[0,2,1,1]],[[1,2,1,0],[2,0,3,3],[2,3,3,0],[0,2,1,1]],[[1,2,1,0],[2,0,4,2],[2,3,3,0],[0,2,1,1]],[[1,2,1,0],[3,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,3,1,0],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[2,2,1,0],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,2,1,0],[2,0,3,2],[2,3,3,0],[0,1,2,2]],[[1,2,1,0],[2,0,3,2],[2,3,3,0],[0,1,3,1]],[[1,2,1,0],[2,0,3,2],[2,3,4,0],[0,1,2,1]],[[1,2,1,0],[2,0,3,2],[2,4,3,0],[0,1,2,1]],[[1,2,1,0],[2,0,3,2],[3,3,3,0],[0,1,2,1]],[[1,2,1,0],[2,0,3,3],[2,3,3,0],[0,1,2,1]],[[1,2,1,0],[2,0,4,2],[2,3,3,0],[0,1,2,1]],[[1,2,1,0],[3,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,3,1,0],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[2,2,1,0],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,2,1,0],[2,0,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,0],[2,0,3,3],[2,3,2,2],[1,1,1,0]],[[1,2,1,0],[2,0,4,2],[2,3,2,2],[1,1,1,0]],[[1,2,1,0],[2,0,3,2],[2,3,2,2],[1,1,0,2]],[[1,2,1,0],[2,0,3,2],[2,3,2,3],[1,1,0,1]],[[1,2,1,0],[2,0,3,3],[2,3,2,2],[1,1,0,1]],[[1,2,1,0],[2,0,4,2],[2,3,2,2],[1,1,0,1]],[[1,2,1,0],[2,0,3,2],[2,3,2,3],[1,0,2,0]],[[1,2,1,0],[2,0,3,3],[2,3,2,2],[1,0,2,0]],[[1,2,1,0],[2,0,4,2],[2,3,2,2],[1,0,2,0]],[[1,2,1,0],[2,0,3,2],[2,3,2,2],[1,0,1,2]],[[1,2,1,0],[2,0,3,2],[2,3,2,3],[1,0,1,1]],[[1,2,1,0],[2,0,3,3],[2,3,2,2],[1,0,1,1]],[[1,2,1,0],[2,0,4,2],[2,3,2,2],[1,0,1,1]],[[1,2,1,0],[2,0,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,0],[2,0,3,3],[2,3,2,2],[0,2,1,0]],[[1,2,1,0],[2,0,4,2],[2,3,2,2],[0,2,1,0]],[[1,2,1,0],[2,0,3,2],[2,3,2,2],[0,2,0,2]],[[1,2,1,0],[2,0,3,2],[2,3,2,3],[0,2,0,1]],[[1,2,1,0],[2,0,3,3],[2,3,2,2],[0,2,0,1]],[[1,2,1,0],[2,0,4,2],[2,3,2,2],[0,2,0,1]],[[1,2,1,0],[2,0,3,2],[2,3,2,3],[0,1,2,0]],[[1,2,1,0],[2,0,3,3],[2,3,2,2],[0,1,2,0]],[[1,2,1,0],[2,0,4,2],[2,3,2,2],[0,1,2,0]],[[1,2,1,0],[2,0,3,2],[2,3,2,2],[0,1,1,2]],[[1,2,1,0],[2,0,3,2],[2,3,2,3],[0,1,1,1]],[[1,2,1,0],[2,0,3,3],[2,3,2,2],[0,1,1,1]],[[1,2,1,0],[2,0,4,2],[2,3,2,2],[0,1,1,1]],[[1,2,1,0],[2,0,3,2],[2,3,2,2],[0,0,2,2]],[[1,2,1,0],[2,0,3,2],[2,3,2,3],[0,0,2,1]],[[1,2,1,0],[2,0,3,3],[2,3,2,2],[0,0,2,1]],[[1,2,1,0],[2,0,4,2],[2,3,2,2],[0,0,2,1]],[[1,2,1,0],[2,0,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[2,0,3,2],[2,4,2,1],[1,1,2,0]],[[1,2,1,0],[2,0,3,2],[3,3,2,1],[1,1,2,0]],[[1,2,1,0],[3,0,3,2],[2,3,2,1],[1,1,2,0]],[[1,3,1,0],[2,0,3,2],[2,3,2,1],[1,1,2,0]],[[2,2,1,0],[2,0,3,2],[2,3,2,1],[1,1,2,0]],[[1,2,1,0],[2,0,3,2],[2,3,2,1],[0,2,3,0]],[[1,2,1,0],[2,0,3,2],[2,3,2,1],[0,3,2,0]],[[1,2,1,0],[2,0,3,2],[2,4,2,1],[0,2,2,0]],[[1,2,1,0],[2,0,3,2],[3,3,2,1],[0,2,2,0]],[[1,2,1,0],[3,0,3,2],[2,3,2,1],[0,2,2,0]],[[1,3,1,0],[2,0,3,2],[2,3,2,1],[0,2,2,0]],[[2,2,1,0],[2,0,3,2],[2,3,2,1],[0,2,2,0]],[[1,2,1,0],[2,0,3,2],[2,3,2,0],[2,1,2,1]],[[1,2,1,0],[2,0,3,2],[2,4,2,0],[1,1,2,1]],[[1,2,1,0],[2,0,3,2],[3,3,2,0],[1,1,2,1]],[[1,2,1,0],[3,0,3,2],[2,3,2,0],[1,1,2,1]],[[1,3,1,0],[2,0,3,2],[2,3,2,0],[1,1,2,1]],[[2,2,1,0],[2,0,3,2],[2,3,2,0],[1,1,2,1]],[[1,2,1,0],[2,0,3,2],[2,3,2,0],[0,2,2,2]],[[1,2,1,0],[2,0,3,2],[2,3,2,0],[0,2,3,1]],[[1,2,1,0],[2,0,3,2],[2,3,2,0],[0,3,2,1]],[[1,2,1,0],[2,0,3,2],[2,4,2,0],[0,2,2,1]],[[1,2,1,0],[2,0,3,2],[3,3,2,0],[0,2,2,1]],[[1,2,1,0],[3,0,3,2],[2,3,2,0],[0,2,2,1]],[[1,3,1,0],[2,0,3,2],[2,3,2,0],[0,2,2,1]],[[2,2,1,0],[2,0,3,2],[2,3,2,0],[0,2,2,1]],[[1,2,1,0],[2,0,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,1,0],[2,0,3,2],[2,3,1,2],[1,0,3,1]],[[1,2,1,0],[2,0,3,2],[2,3,1,3],[1,0,2,1]],[[1,2,1,0],[2,0,3,3],[2,3,1,2],[1,0,2,1]],[[1,2,1,0],[2,0,4,2],[2,3,1,2],[1,0,2,1]],[[1,2,1,0],[2,0,3,2],[2,3,1,2],[0,1,2,2]],[[1,2,1,0],[2,0,3,2],[2,3,1,2],[0,1,3,1]],[[1,2,1,0],[2,0,3,2],[2,3,1,3],[0,1,2,1]],[[1,2,1,0],[2,0,3,3],[2,3,1,2],[0,1,2,1]],[[1,2,1,0],[2,0,4,2],[2,3,1,2],[0,1,2,1]],[[1,2,1,0],[2,0,3,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,0],[2,0,3,2],[2,4,0,2],[1,1,2,1]],[[1,2,1,0],[2,0,3,2],[3,3,0,2],[1,1,2,1]],[[1,2,1,0],[3,0,3,2],[2,3,0,2],[1,1,2,1]],[[1,3,1,0],[2,0,3,2],[2,3,0,2],[1,1,2,1]],[[2,2,1,0],[2,0,3,2],[2,3,0,2],[1,1,2,1]],[[1,2,1,0],[2,0,3,2],[2,3,0,2],[0,2,2,2]],[[1,2,1,0],[2,0,3,2],[2,3,0,2],[0,2,3,1]],[[1,2,1,0],[2,0,3,2],[2,3,0,2],[0,3,2,1]],[[1,2,1,0],[2,0,3,2],[2,3,0,3],[0,2,2,1]],[[1,2,1,0],[2,0,3,2],[2,4,0,2],[0,2,2,1]],[[1,2,1,0],[2,0,3,2],[3,3,0,2],[0,2,2,1]],[[1,2,1,0],[2,0,3,3],[2,3,0,2],[0,2,2,1]],[[1,2,1,0],[2,0,4,2],[2,3,0,2],[0,2,2,1]],[[1,2,1,0],[3,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,3,1,0],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[2,2,1,0],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[0,2,4,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[0,2,3,2],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[0,2,3,2],[1,2,3,1]],[[1,1,1,1],[1,2,3,0],[0,2,3,2],[1,2,2,2]],[[1,1,1,1],[1,2,3,0],[0,3,4,1],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[0,3,3,1],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[0,3,3,1],[1,2,3,1]],[[1,1,1,1],[1,2,3,0],[0,3,3,1],[1,2,2,2]],[[1,1,1,1],[1,2,3,0],[0,3,4,2],[1,1,2,1]],[[1,1,1,1],[1,2,3,0],[0,3,3,2],[1,1,3,1]],[[1,1,1,1],[1,2,3,0],[0,3,3,2],[1,1,2,2]],[[1,1,1,1],[1,2,3,0],[0,3,4,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,0],[0,3,3,2],[1,3,2,0]],[[1,1,1,1],[1,2,3,0],[0,3,3,2],[1,2,3,0]],[[1,1,1,1],[1,2,3,0],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[1,2,3,0],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[1,2,4,0],[1,2,3,1],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[1,2,3,0],[1,2,3,1],[1,2,2,2]],[[1,1,1,1],[1,2,3,0],[1,2,4,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,2,3,2],[0,2,3,1]],[[1,1,1,1],[1,2,3,0],[1,2,3,2],[0,2,2,2]],[[1,1,1,1],[1,2,4,0],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[1,2,3,0],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[1,2,3,0],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[1,2,3,0],[1,2,3,2],[1,2,1,2]],[[1,1,1,1],[1,2,4,0],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,0],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,0],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[1,2,3,0],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[1,2,3,0],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[1,2,3,0],[1,2,3,2],[1,2,3,0]],[[1,1,1,1],[1,2,3,0],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[1,2,3,0],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[1,2,3,0],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[1,2,3,0],[1,3,2,1],[1,2,2,2]],[[1,1,1,1],[1,2,3,0],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[1,2,3,0],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[1,2,3,0],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,0],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[1,2,3,0],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[1,2,3,0],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[1,2,3,0],[1,4,3,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,0],[2,2,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,0],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,0],[1,2,3,1]],[[1,1,1,1],[1,2,4,0],[1,3,3,1],[1,1,2,1]],[[1,1,1,1],[1,2,3,0],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[1,2,4,0],[1,3,3,1],[1,2,1,1]],[[1,1,1,1],[1,2,3,0],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[1,2,3,0],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,1],[1,3,1,1]],[[1,1,1,1],[1,2,3,0],[1,3,4,2],[0,1,2,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,2],[0,1,3,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,2],[0,1,2,2]],[[1,1,1,1],[1,2,4,0],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,2,3,0],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[1,2,3,0],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,2],[1,1,1,2]],[[1,1,1,1],[1,2,4,0],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,2,3,0],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[1,2,3,0],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[1,2,3,0],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[1,2,3,0],[1,3,3,2],[1,1,3,0]],[[1,1,1,1],[1,2,4,0],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,2,3,0],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[1,2,3,0],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[1,2,3,0],[1,3,3,2],[1,2,0,2]],[[1,1,1,1],[1,2,4,0],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,2,3,0],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[1,2,3,0],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[1,2,3,0],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[1,2,3,0],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[1,2,3,0],[1,3,3,2],[1,3,1,0]],[[1,1,1,1],[1,2,3,0],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[1,2,3,0],[2,1,2,2],[1,2,2,2]],[[1,1,1,1],[1,2,4,0],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[1,2,3,0],[2,1,3,1],[1,2,2,2]],[[1,1,1,1],[1,2,4,0],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[1,2,3,0],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[1,2,3,0],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[1,2,3,0],[2,1,3,2],[1,2,1,2]],[[1,1,1,1],[1,2,4,0],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,0],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,0],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,0],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[1,2,3,0],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[1,2,3,0],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[1,2,3,0],[2,1,3,2],[1,2,3,0]],[[1,1,1,1],[1,2,3,0],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[1,2,3,0],[2,2,1,2],[1,2,2,2]],[[1,1,1,1],[1,2,3,0],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[1,2,3,0],[2,2,2,1],[1,2,2,2]],[[1,1,1,1],[1,2,3,0],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[1,2,3,0],[2,2,2,2],[0,2,2,2]],[[1,1,1,1],[1,2,3,0],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,0],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[1,2,3,0],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[1,2,3,0],[2,2,2,2],[1,2,3,0]],[[1,1,1,1],[1,2,3,0],[3,2,3,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,0],[2,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,0],[1,3,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,0],[1,2,3,1]],[[1,1,1,1],[1,2,4,0],[2,2,3,1],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,1],[0,2,2,2]],[[1,1,1,1],[1,2,3,0],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,1],[1,3,1,1]],[[1,1,1,1],[1,2,4,0],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[1,2,3,0],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,2],[0,2,1,2]],[[1,1,1,1],[1,2,4,0],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[1,2,3,0],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[1,2,3,0],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[1,2,3,0],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[1,2,3,0],[2,2,3,2],[0,2,3,0]],[[1,1,1,1],[1,2,3,0],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[1,2,3,0],[2,2,3,2],[1,3,0,1]],[[1,1,1,1],[1,2,3,0],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[1,2,3,0],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[1,2,3,0],[2,2,3,2],[1,3,1,0]],[[1,1,1,1],[1,2,3,0],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[1,2,3,0],[2,3,1,2],[0,2,2,2]],[[1,1,1,1],[1,2,3,0],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[1,2,3,0],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,1,2],[2,1,2,1]],[[1,1,1,1],[1,2,3,0],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[1,2,3,0],[2,3,2,1],[0,2,2,2]],[[1,1,1,1],[1,2,3,0],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[1,2,3,0],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,2,1],[2,1,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[1,2,3,0],[2,3,2,2],[0,1,2,2]],[[1,1,1,1],[1,2,3,0],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[1,2,3,0],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[1,2,3,0],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[1,2,3,0],[2,3,2,2],[0,2,3,0]],[[1,1,1,1],[1,2,3,0],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[1,2,3,0],[2,3,2,2],[1,0,2,2]],[[1,1,1,1],[1,2,3,0],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,2,3,0],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[1,2,3,0],[2,3,2,2],[2,1,2,0]],[[1,1,1,1],[1,2,3,0],[3,3,3,0],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,4,3,0],[0,2,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,0],[0,3,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,0],[0,2,3,1]],[[1,1,1,1],[1,2,3,0],[3,3,3,0],[1,1,2,1]],[[1,1,1,1],[1,2,3,0],[2,4,3,0],[1,1,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,0],[2,1,2,1]],[[1,1,1,1],[1,2,4,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[1,2,3,0],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[1,2,3,0],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,1],[0,1,2,2]],[[1,1,1,1],[1,2,4,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[1,2,3,0],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[1,2,3,0],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[1,2,3,0],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,1],[0,3,1,1]],[[1,1,1,1],[1,2,4,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,2,3,0],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,2,3,0],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,1],[1,0,2,2]],[[1,1,1,1],[1,2,4,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[1,2,3,0],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[1,2,3,0],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[1,2,3,0],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,1],[2,1,1,1]],[[1,1,1,1],[1,2,3,0],[3,3,3,1],[1,2,0,1]],[[1,1,1,1],[1,2,3,0],[2,4,3,1],[1,2,0,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[2,0,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[2,0,3,2],[2,2,3,1],[2,2,1,0]],[[1,2,1,0],[2,0,3,2],[3,2,3,1],[1,2,1,0]],[[1,1,1,1],[1,2,4,0],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[0,0,2,2]],[[1,1,1,1],[1,2,4,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,2,3,0],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,2,3,0],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[1,2,3,0],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[0,1,1,2]],[[1,1,1,1],[1,2,4,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,2,3,0],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,2,3,0],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[1,2,3,0],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[1,2,3,0],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[0,1,3,0]],[[1,1,1,1],[1,2,4,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,2,3,0],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,2,3,0],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[1,2,3,0],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[0,2,0,2]],[[1,1,1,1],[1,2,4,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,2,3,0],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,2,3,0],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[1,2,3,0],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[1,2,3,0],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[3,0,3,2],[2,2,3,1],[1,2,1,0]],[[1,3,1,0],[2,0,3,2],[2,2,3,1],[1,2,1,0]],[[2,2,1,0],[2,0,3,2],[2,2,3,1],[1,2,1,0]],[[1,2,1,0],[2,0,3,2],[2,2,3,1],[1,3,0,1]],[[1,2,1,0],[2,0,3,2],[2,2,3,1],[2,2,0,1]],[[1,2,1,0],[2,0,3,2],[3,2,3,1],[1,2,0,1]],[[1,2,1,0],[3,0,3,2],[2,2,3,1],[1,2,0,1]],[[1,3,1,0],[2,0,3,2],[2,2,3,1],[1,2,0,1]],[[1,1,1,1],[1,2,4,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,2,3,0],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,2,3,0],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[1,2,3,0],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[1,0,1,2]],[[1,1,1,1],[1,2,4,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,2,3,0],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,2,3,0],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[1,2,3,0],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[1,2,3,0],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[1,0,3,0]],[[1,1,1,1],[1,2,4,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,2,3,0],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,2,3,0],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[1,2,3,0],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[1,1,0,2]],[[1,1,1,1],[1,2,4,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,2,3,0],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,2,3,0],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[1,2,3,0],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[1,2,3,0],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[2,1,1,0]],[[2,2,1,0],[2,0,3,2],[2,2,3,1],[1,2,0,1]],[[1,2,1,0],[2,0,3,2],[2,2,3,1],[0,2,3,0]],[[1,1,1,1],[1,2,3,0],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[1,2,3,0],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[1,2,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,0,3,2],[2,2,3,1],[0,3,2,0]],[[1,2,1,0],[2,0,3,2],[2,2,4,1],[0,2,2,0]],[[1,2,1,0],[2,0,3,3],[2,2,3,1],[0,2,2,0]],[[1,2,1,0],[2,0,4,2],[2,2,3,1],[0,2,2,0]],[[1,2,1,0],[2,0,3,2],[2,2,4,1],[0,2,1,1]],[[1,2,1,0],[2,0,3,3],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[2,0,4,2],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[2,0,3,2],[2,2,3,0],[1,3,1,1]],[[1,2,1,0],[2,0,3,2],[2,2,3,0],[2,2,1,1]],[[1,2,1,0],[2,0,3,2],[3,2,3,0],[1,2,1,1]],[[1,2,1,0],[3,0,3,2],[2,2,3,0],[1,2,1,1]],[[1,3,1,0],[2,0,3,2],[2,2,3,0],[1,2,1,1]],[[2,2,1,0],[2,0,3,2],[2,2,3,0],[1,2,1,1]],[[1,2,1,0],[2,0,3,2],[2,2,3,0],[0,2,2,2]],[[1,1,1,1],[1,2,3,1],[0,1,3,3],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[0,1,3,2],[1,2,3,1]],[[1,1,1,1],[1,2,3,1],[0,1,3,2],[1,2,2,2]],[[1,1,1,1],[1,2,3,1],[0,2,2,3],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[0,2,2,2],[2,2,2,1]],[[1,1,1,1],[1,2,3,1],[0,2,2,2],[1,3,2,1]],[[1,1,1,1],[1,2,3,1],[0,2,2,2],[1,2,3,1]],[[1,1,1,1],[1,2,3,1],[0,2,2,2],[1,2,2,2]],[[1,1,1,1],[1,2,4,1],[0,2,3,1],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[0,2,4,1],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[0,2,3,1],[2,2,2,1]],[[1,1,1,1],[1,2,3,1],[0,2,3,1],[1,3,2,1]],[[1,1,1,1],[1,2,3,1],[0,2,3,1],[1,2,3,1]],[[1,1,1,1],[1,2,3,1],[0,2,3,1],[1,2,2,2]],[[1,1,1,1],[1,2,4,1],[0,2,3,2],[1,2,1,1]],[[1,1,1,1],[1,2,3,1],[0,2,4,2],[1,2,1,1]],[[1,1,1,1],[1,2,3,1],[0,2,3,3],[1,2,1,1]],[[1,1,1,1],[1,2,3,1],[0,2,3,2],[1,2,1,2]],[[1,1,1,1],[1,2,4,1],[0,2,3,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[0,2,4,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[0,2,3,3],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[0,2,3,2],[2,2,2,0]],[[1,1,1,1],[1,2,3,1],[0,2,3,2],[1,3,2,0]],[[1,1,1,1],[1,2,3,1],[0,2,3,2],[1,2,3,0]],[[1,1,1,1],[1,2,3,1],[0,4,1,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,1,3],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,1,2],[2,2,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,1,2],[1,3,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,1,2],[1,2,3,1]],[[1,1,1,1],[1,2,3,1],[0,3,1,2],[1,2,2,2]],[[1,1,1,1],[1,2,3,1],[0,4,2,1],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,2,1],[2,2,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,2,1],[1,3,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,2,1],[1,2,3,1]],[[1,1,1,1],[1,2,3,1],[0,3,2,1],[1,2,2,2]],[[1,1,1,1],[1,2,3,1],[0,3,2,3],[1,1,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,2,2],[1,1,3,1]],[[1,1,1,1],[1,2,3,1],[0,3,2,2],[1,1,2,2]],[[1,1,1,1],[1,2,3,1],[0,4,2,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[0,3,2,2],[2,2,2,0]],[[1,1,1,1],[1,2,3,1],[0,3,2,2],[1,3,2,0]],[[1,1,1,1],[1,2,3,1],[0,3,2,2],[1,2,3,0]],[[1,1,1,1],[1,2,4,1],[0,3,3,1],[1,1,2,1]],[[1,1,1,1],[1,2,3,1],[0,4,3,1],[1,1,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,4,1],[1,1,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,1],[1,1,3,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,1],[1,1,2,2]],[[1,1,1,1],[1,2,4,1],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[1,2,3,1],[0,4,3,1],[1,2,1,1]],[[1,1,1,1],[1,2,3,1],[0,3,4,1],[1,2,1,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,1],[2,2,1,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,1],[1,3,1,1]],[[1,1,1,1],[1,2,4,1],[0,3,3,2],[1,0,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,4,2],[1,0,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,3],[1,0,2,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,2],[1,0,2,2]],[[1,1,1,1],[1,2,4,1],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,2,3,1],[0,4,3,2],[1,1,1,1]],[[1,1,1,1],[1,2,3,1],[0,3,4,2],[1,1,1,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,3],[1,1,1,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,2],[1,1,1,2]],[[1,1,1,1],[1,2,4,1],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,2,3,1],[0,4,3,2],[1,1,2,0]],[[1,1,1,1],[1,2,3,1],[0,3,4,2],[1,1,2,0]],[[1,1,1,1],[1,2,3,1],[0,3,3,3],[1,1,2,0]],[[1,1,1,1],[1,2,3,1],[0,3,3,2],[1,1,3,0]],[[1,1,1,1],[1,2,4,1],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,2,3,1],[0,4,3,2],[1,2,0,1]],[[1,1,1,1],[1,2,3,1],[0,3,4,2],[1,2,0,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,3],[1,2,0,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,2],[2,2,0,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,2],[1,3,0,1]],[[1,1,1,1],[1,2,3,1],[0,3,3,2],[1,2,0,2]],[[1,1,1,1],[1,2,4,1],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,2,3,1],[0,4,3,2],[1,2,1,0]],[[1,1,1,1],[1,2,3,1],[0,3,4,2],[1,2,1,0]],[[1,1,1,1],[1,2,3,1],[0,3,3,3],[1,2,1,0]],[[1,1,1,1],[1,2,3,1],[0,3,3,2],[2,2,1,0]],[[1,1,1,1],[1,2,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,3,2],[2,2,3,0],[0,2,3,1]],[[1,2,1,0],[2,0,3,2],[2,2,3,0],[0,3,2,1]],[[1,2,1,0],[2,0,3,2],[2,2,4,0],[0,2,2,1]],[[1,2,1,0],[2,0,3,3],[2,2,3,0],[0,2,2,1]],[[1,2,1,0],[2,0,4,2],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,1,3,3],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,1,3,2],[0,2,3,1]],[[1,1,1,1],[1,2,3,1],[1,1,3,2],[0,2,2,2]],[[1,1,1,1],[1,2,3,1],[1,2,2,3],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,2,2,2],[0,3,2,1]],[[1,1,1,1],[1,2,3,1],[1,2,2,2],[0,2,3,1]],[[1,1,1,1],[1,2,3,1],[1,2,2,2],[0,2,2,2]],[[1,1,1,1],[1,2,4,1],[1,2,3,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,2,4,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,2,3,0],[2,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,2,3,0],[1,3,2,1]],[[1,1,1,1],[1,2,3,1],[1,2,3,0],[1,2,3,1]],[[1,1,1,1],[1,2,3,1],[1,2,3,0],[1,2,2,2]],[[1,1,1,1],[1,2,4,1],[1,2,3,1],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,2,4,1],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,2,3,1],[0,3,2,1]],[[1,1,1,1],[1,2,3,1],[1,2,3,1],[0,2,3,1]],[[1,1,1,1],[1,2,3,1],[1,2,3,1],[0,2,2,2]],[[1,1,1,1],[1,2,4,1],[1,2,3,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[1,2,4,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[1,2,3,1],[2,2,2,0]],[[1,1,1,1],[1,2,3,1],[1,2,3,1],[1,3,2,0]],[[1,1,1,1],[1,2,3,1],[1,2,3,1],[1,2,3,0]],[[1,1,1,1],[1,2,4,1],[1,2,3,2],[0,2,1,1]],[[1,1,1,1],[1,2,3,1],[1,2,4,2],[0,2,1,1]],[[1,1,1,1],[1,2,3,1],[1,2,3,3],[0,2,1,1]],[[1,1,1,1],[1,2,3,1],[1,2,3,2],[0,2,1,2]],[[1,1,1,1],[1,2,4,1],[1,2,3,2],[0,2,2,0]],[[1,1,1,1],[1,2,3,1],[1,2,4,2],[0,2,2,0]],[[1,1,1,1],[1,2,3,1],[1,2,3,3],[0,2,2,0]],[[1,1,1,1],[1,2,3,1],[1,2,3,2],[0,3,2,0]],[[1,1,1,1],[1,2,3,1],[1,2,3,2],[0,2,3,0]],[[1,1,1,1],[1,2,3,1],[1,4,1,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,1,3],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,1,2],[0,3,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,1,2],[0,2,3,1]],[[1,1,1,1],[1,2,3,1],[1,3,1,2],[0,2,2,2]],[[1,1,1,1],[1,2,3,1],[1,4,2,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,2,0],[2,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,2,0],[1,3,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,2,0],[1,2,3,1]],[[1,1,1,1],[1,2,3,1],[1,3,2,0],[1,2,2,2]],[[1,1,1,1],[1,2,3,1],[1,4,2,1],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,2,1],[0,3,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,2,1],[0,2,3,1]],[[1,1,1,1],[1,2,3,1],[1,3,2,1],[0,2,2,2]],[[1,1,1,1],[1,2,3,1],[1,4,2,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,2,1],[2,2,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,2,1],[1,3,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,2,1],[1,2,3,0]],[[1,1,1,1],[1,2,3,1],[1,3,2,3],[0,1,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,2,2],[0,1,3,1]],[[1,1,1,1],[1,2,3,1],[1,3,2,2],[0,1,2,2]],[[1,1,1,1],[1,2,3,1],[1,4,2,2],[0,2,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,2,2],[0,3,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,2,2],[0,2,3,0]],[[1,1,1,1],[1,2,3,1],[1,3,2,3],[1,0,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,2,2],[1,0,3,1]],[[1,1,1,1],[1,2,3,1],[1,3,2,2],[1,0,2,2]],[[1,1,1,1],[1,2,4,1],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[1,2,3,1],[1,4,3,0],[1,1,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,4,0],[1,1,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,0],[1,1,3,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,0],[1,1,2,2]],[[1,1,1,1],[1,2,4,1],[1,3,3,0],[1,2,1,1]],[[1,1,1,1],[1,2,3,1],[1,4,3,0],[1,2,1,1]],[[1,1,1,1],[1,2,3,1],[1,3,4,0],[1,2,1,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,0],[2,2,1,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,0],[1,3,1,1]],[[1,1,1,1],[1,2,4,1],[1,3,3,1],[0,1,2,1]],[[1,1,1,1],[1,2,3,1],[1,4,3,1],[0,1,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,4,1],[0,1,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,1],[0,1,3,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,1],[0,1,2,2]],[[1,1,1,1],[1,2,4,1],[1,3,3,1],[0,2,1,1]],[[1,1,1,1],[1,2,3,1],[1,4,3,1],[0,2,1,1]],[[1,1,1,1],[1,2,3,1],[1,3,4,1],[0,2,1,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,1],[0,3,1,1]],[[1,1,1,1],[1,2,4,1],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,2,3,1],[1,4,3,1],[1,0,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,4,1],[1,0,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,1],[1,0,3,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,1],[1,0,2,2]],[[1,1,1,1],[1,2,4,1],[1,3,3,1],[1,1,2,0]],[[1,1,1,1],[1,2,3,1],[1,4,3,1],[1,1,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,4,1],[1,1,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,3,1],[1,1,3,0]],[[1,1,1,1],[1,2,4,1],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[1,2,3,1],[1,4,3,1],[1,2,0,1]],[[1,1,1,1],[1,2,3,1],[1,3,4,1],[1,2,0,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,1],[2,2,0,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,1],[1,3,0,1]],[[1,1,1,1],[1,2,4,1],[1,3,3,1],[1,2,1,0]],[[1,1,1,1],[1,2,3,1],[1,4,3,1],[1,2,1,0]],[[1,1,1,1],[1,2,3,1],[1,3,4,1],[1,2,1,0]],[[1,1,1,1],[1,2,3,1],[1,3,3,1],[2,2,1,0]],[[1,1,1,1],[1,2,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,0,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,1,0],[2,0,3,3],[2,2,2,2],[0,2,2,0]],[[1,2,1,0],[2,0,4,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[1,2,4,1],[1,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,4,2],[0,0,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,3],[0,0,2,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,2],[0,0,2,2]],[[1,1,1,1],[1,2,4,1],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,2,3,1],[1,4,3,2],[0,1,1,1]],[[1,1,1,1],[1,2,3,1],[1,3,4,2],[0,1,1,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,3],[0,1,1,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,2],[0,1,1,2]],[[1,1,1,1],[1,2,4,1],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,2,3,1],[1,4,3,2],[0,1,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,4,2],[0,1,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,3,3],[0,1,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,3,2],[0,1,3,0]],[[1,1,1,1],[1,2,4,1],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,2,3,1],[1,4,3,2],[0,2,0,1]],[[1,1,1,1],[1,2,3,1],[1,3,4,2],[0,2,0,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,3],[0,2,0,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,2],[0,3,0,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,2],[0,2,0,2]],[[1,1,1,1],[1,2,4,1],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,2,3,1],[1,4,3,2],[0,2,1,0]],[[1,1,1,1],[1,2,3,1],[1,3,4,2],[0,2,1,0]],[[1,1,1,1],[1,2,3,1],[1,3,3,3],[0,2,1,0]],[[1,1,1,1],[1,2,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,0,3,2],[2,2,2,2],[0,2,1,2]],[[1,2,1,0],[2,0,3,2],[2,2,2,3],[0,2,1,1]],[[1,2,1,0],[2,0,3,3],[2,2,2,2],[0,2,1,1]],[[1,2,1,0],[2,0,4,2],[2,2,2,2],[0,2,1,1]],[[1,1,1,1],[1,2,4,1],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,2,3,1],[1,4,3,2],[1,0,1,1]],[[1,1,1,1],[1,2,3,1],[1,3,4,2],[1,0,1,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,3],[1,0,1,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,2],[1,0,1,2]],[[1,1,1,1],[1,2,4,1],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,2,3,1],[1,4,3,2],[1,0,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,4,2],[1,0,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,3,3],[1,0,2,0]],[[1,1,1,1],[1,2,3,1],[1,3,3,2],[1,0,3,0]],[[1,1,1,1],[1,2,4,1],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,2,3,1],[1,4,3,2],[1,1,0,1]],[[1,1,1,1],[1,2,3,1],[1,3,4,2],[1,1,0,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,3],[1,1,0,1]],[[1,1,1,1],[1,2,3,1],[1,3,3,2],[1,1,0,2]],[[1,1,1,1],[1,2,4,1],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,2,3,1],[1,4,3,2],[1,1,1,0]],[[1,1,1,1],[1,2,3,1],[1,3,4,2],[1,1,1,0]],[[1,1,1,1],[1,2,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[2,0,3,2],[2,2,2,1],[1,2,3,0]],[[1,2,1,0],[2,0,3,2],[2,2,2,1],[1,3,2,0]],[[1,2,1,0],[2,0,3,2],[2,2,2,1],[2,2,2,0]],[[1,2,1,0],[2,0,3,2],[3,2,2,1],[1,2,2,0]],[[1,2,1,0],[3,0,3,2],[2,2,2,1],[1,2,2,0]],[[1,3,1,0],[2,0,3,2],[2,2,2,1],[1,2,2,0]],[[2,2,1,0],[2,0,3,2],[2,2,2,1],[1,2,2,0]],[[1,2,1,0],[2,0,3,2],[2,2,2,0],[1,2,2,2]],[[1,2,1,0],[2,0,3,2],[2,2,2,0],[1,2,3,1]],[[1,2,1,0],[2,0,3,2],[2,2,2,0],[1,3,2,1]],[[1,2,1,0],[2,0,3,2],[2,2,2,0],[2,2,2,1]],[[1,2,1,0],[2,0,3,2],[3,2,2,0],[1,2,2,1]],[[1,2,1,0],[3,0,3,2],[2,2,2,0],[1,2,2,1]],[[1,3,1,0],[2,0,3,2],[2,2,2,0],[1,2,2,1]],[[2,2,1,0],[2,0,3,2],[2,2,2,0],[1,2,2,1]],[[1,1,1,1],[1,2,4,1],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[3,1,3,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[2,1,4,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[2,1,3,0],[2,2,2,1]],[[1,1,1,1],[1,2,3,1],[2,1,3,0],[1,3,2,1]],[[1,1,1,1],[1,2,3,1],[2,1,3,0],[1,2,3,1]],[[1,1,1,1],[1,2,3,1],[2,1,3,0],[1,2,2,2]],[[1,1,1,1],[1,2,4,1],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[3,1,3,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[2,1,4,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[2,1,3,1],[2,2,2,0]],[[1,1,1,1],[1,2,3,1],[2,1,3,1],[1,3,2,0]],[[1,1,1,1],[1,2,3,1],[2,1,3,1],[1,2,3,0]],[[1,2,1,0],[2,0,3,2],[2,2,1,2],[0,2,2,2]],[[1,2,1,0],[2,0,3,2],[2,2,1,2],[0,2,3,1]],[[1,2,1,0],[2,0,3,2],[2,2,1,2],[0,3,2,1]],[[1,2,1,0],[2,0,3,2],[2,2,1,3],[0,2,2,1]],[[1,2,1,0],[2,0,3,3],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[3,2,2,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[2,2,2,0],[2,2,2,1]],[[1,1,1,1],[1,2,3,1],[2,2,2,0],[1,3,2,1]],[[1,1,1,1],[1,2,3,1],[2,2,2,0],[1,2,3,1]],[[1,1,1,1],[1,2,3,1],[2,2,2,0],[1,2,2,2]],[[1,1,1,1],[1,2,3,1],[3,2,2,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[2,2,2,1],[2,2,2,0]],[[1,1,1,1],[1,2,3,1],[2,2,2,1],[1,3,2,0]],[[1,1,1,1],[1,2,3,1],[2,2,2,1],[1,2,3,0]],[[1,2,1,0],[2,0,4,2],[2,2,1,2],[0,2,2,1]],[[1,2,1,0],[2,0,3,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,2],[2,2,0,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,2],[2,2,0,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,2],[2,2,0,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,2],[2,2,0,3],[1,2,2,1]],[[1,1,1,1],[1,2,4,1],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[2,2,4,0],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[2,2,3,0],[0,3,2,1]],[[1,1,1,1],[1,2,3,1],[2,2,3,0],[0,2,3,1]],[[1,1,1,1],[1,2,3,1],[2,2,3,0],[0,2,2,2]],[[1,1,1,1],[1,2,3,1],[3,2,3,0],[1,2,1,1]],[[1,1,1,1],[1,2,3,1],[2,2,3,0],[2,2,1,1]],[[1,1,1,1],[1,2,3,1],[2,2,3,0],[1,3,1,1]],[[1,1,1,1],[1,2,4,1],[2,2,3,1],[0,2,2,0]],[[1,1,1,1],[1,2,3,1],[2,2,4,1],[0,2,2,0]],[[1,1,1,1],[1,2,3,1],[2,2,3,1],[0,3,2,0]],[[1,1,1,1],[1,2,3,1],[2,2,3,1],[0,2,3,0]],[[1,1,1,1],[1,2,3,1],[3,2,3,1],[1,2,0,1]],[[1,1,1,1],[1,2,3,1],[2,2,3,1],[2,2,0,1]],[[1,1,1,1],[1,2,3,1],[2,2,3,1],[1,3,0,1]],[[1,1,1,1],[1,2,3,1],[3,2,3,1],[1,2,1,0]],[[1,1,1,1],[1,2,3,1],[2,2,3,1],[2,2,1,0]],[[1,1,1,1],[1,2,3,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[2,0,3,2],[3,2,0,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,3],[2,2,0,2],[1,2,2,1]],[[1,2,1,0],[2,0,4,2],[2,2,0,2],[1,2,2,1]],[[1,2,1,0],[3,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,3,1,0],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[2,2,1,0],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,1,0],[2,0,3,2],[2,1,3,1],[1,3,2,0]],[[1,2,1,0],[2,0,3,2],[2,1,3,1],[2,2,2,0]],[[1,2,1,0],[2,0,3,2],[2,1,4,1],[1,2,2,0]],[[1,2,1,0],[2,0,3,2],[3,1,3,1],[1,2,2,0]],[[1,2,1,0],[2,0,3,3],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,1],[3,3,2,0],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[2,4,2,0],[0,2,2,1]],[[1,1,1,1],[1,2,3,1],[2,3,2,0],[0,3,2,1]],[[1,1,1,1],[1,2,3,1],[2,3,2,0],[0,2,3,1]],[[1,1,1,1],[1,2,3,1],[2,3,2,0],[0,2,2,2]],[[1,1,1,1],[1,2,3,1],[3,3,2,0],[1,1,2,1]],[[1,1,1,1],[1,2,3,1],[2,4,2,0],[1,1,2,1]],[[1,1,1,1],[1,2,3,1],[2,3,2,0],[2,1,2,1]],[[1,1,1,1],[1,2,3,1],[3,3,2,1],[0,2,2,0]],[[1,1,1,1],[1,2,3,1],[2,4,2,1],[0,2,2,0]],[[1,1,1,1],[1,2,3,1],[2,3,2,1],[0,3,2,0]],[[1,1,1,1],[1,2,3,1],[2,3,2,1],[0,2,3,0]],[[1,1,1,1],[1,2,3,1],[3,3,2,1],[1,1,2,0]],[[1,1,1,1],[1,2,3,1],[2,4,2,1],[1,1,2,0]],[[1,1,1,1],[1,2,3,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[2,0,4,2],[2,1,3,1],[1,2,2,0]],[[1,2,1,0],[3,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,3,1,0],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[2,2,1,0],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,2,1,0],[2,0,3,2],[2,1,4,1],[1,2,1,1]],[[1,2,1,0],[2,0,3,3],[2,1,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,4,2],[2,1,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,3,2],[2,1,3,0],[1,2,2,2]],[[1,2,1,0],[2,0,3,2],[2,1,3,0],[1,2,3,1]],[[1,2,1,0],[2,0,3,2],[2,1,3,0],[1,3,2,1]],[[1,2,1,0],[2,0,3,2],[2,1,3,0],[2,2,2,1]],[[1,2,1,0],[2,0,3,2],[2,1,4,0],[1,2,2,1]],[[1,2,1,0],[2,0,3,2],[3,1,3,0],[1,2,2,1]],[[1,2,1,0],[2,0,3,3],[2,1,3,0],[1,2,2,1]],[[1,2,1,0],[2,0,4,2],[2,1,3,0],[1,2,2,1]],[[1,2,1,0],[3,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,3,1,0],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[2,2,1,0],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,2,1,0],[2,0,3,2],[2,1,2,3],[1,2,2,0]],[[1,1,1,1],[1,2,4,1],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,2,3,1],[3,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,2,3,1],[2,4,3,0],[0,1,2,1]],[[1,1,1,1],[1,2,3,1],[2,3,4,0],[0,1,2,1]],[[1,1,1,1],[1,2,3,1],[2,3,3,0],[0,1,3,1]],[[1,1,1,1],[1,2,3,1],[2,3,3,0],[0,1,2,2]],[[1,1,1,1],[1,2,4,1],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,2,3,1],[3,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,2,3,1],[2,4,3,0],[0,2,1,1]],[[1,1,1,1],[1,2,3,1],[2,3,4,0],[0,2,1,1]],[[1,1,1,1],[1,2,3,1],[2,3,3,0],[0,3,1,1]],[[1,1,1,1],[1,2,4,1],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[1,2,3,1],[3,3,3,0],[1,0,2,1]],[[1,1,1,1],[1,2,3,1],[2,4,3,0],[1,0,2,1]],[[1,1,1,1],[1,2,3,1],[2,3,4,0],[1,0,2,1]],[[1,1,1,1],[1,2,3,1],[2,3,3,0],[2,0,2,1]],[[1,1,1,1],[1,2,3,1],[2,3,3,0],[1,0,3,1]],[[1,1,1,1],[1,2,3,1],[2,3,3,0],[1,0,2,2]],[[1,1,1,1],[1,2,4,1],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[1,2,3,1],[3,3,3,0],[1,1,1,1]],[[1,1,1,1],[1,2,3,1],[2,4,3,0],[1,1,1,1]],[[1,1,1,1],[1,2,3,1],[2,3,4,0],[1,1,1,1]],[[1,1,1,1],[1,2,3,1],[2,3,3,0],[2,1,1,1]],[[1,1,1,1],[1,2,3,1],[3,3,3,0],[1,2,0,1]],[[1,1,1,1],[1,2,3,1],[2,4,3,0],[1,2,0,1]],[[1,1,1,1],[1,2,3,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[2,0,3,3],[2,1,2,2],[1,2,2,0]],[[1,2,1,0],[2,0,4,2],[2,1,2,2],[1,2,2,0]],[[1,2,1,0],[2,0,3,2],[2,1,2,2],[1,2,1,2]],[[1,2,1,0],[2,0,3,2],[2,1,2,3],[1,2,1,1]],[[1,2,1,0],[2,0,3,3],[2,1,2,2],[1,2,1,1]],[[1,2,1,0],[2,0,4,2],[2,1,2,2],[1,2,1,1]],[[1,2,1,0],[2,0,3,2],[2,1,1,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,2],[2,1,1,2],[1,2,3,1]],[[1,1,1,1],[1,2,4,1],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,2,3,1],[3,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,2,3,1],[2,4,3,1],[0,1,1,1]],[[1,1,1,1],[1,2,3,1],[2,3,4,1],[0,1,1,1]],[[1,1,1,1],[1,2,4,1],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,2,3,1],[3,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,2,3,1],[2,4,3,1],[0,1,2,0]],[[1,1,1,1],[1,2,3,1],[2,3,4,1],[0,1,2,0]],[[1,1,1,1],[1,2,3,1],[2,3,3,1],[0,1,3,0]],[[1,1,1,1],[1,2,4,1],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,2,3,1],[3,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,2,3,1],[2,4,3,1],[0,2,0,1]],[[1,1,1,1],[1,2,3,1],[2,3,4,1],[0,2,0,1]],[[1,1,1,1],[1,2,3,1],[2,3,3,1],[0,3,0,1]],[[1,1,1,1],[1,2,4,1],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,2,3,1],[3,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,2,3,1],[2,4,3,1],[0,2,1,0]],[[1,1,1,1],[1,2,3,1],[2,3,4,1],[0,2,1,0]],[[1,1,1,1],[1,2,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[2,0,3,2],[2,1,1,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,2],[2,1,1,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,2],[2,1,1,3],[1,2,2,1]],[[1,2,1,0],[2,0,3,2],[3,1,1,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,3],[2,1,1,2],[1,2,2,1]],[[1,2,1,0],[2,0,4,2],[2,1,1,2],[1,2,2,1]],[[1,2,1,0],[3,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[1,2,4,1],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[1,2,3,1],[3,3,3,1],[1,0,1,1]],[[1,1,1,1],[1,2,3,1],[2,4,3,1],[1,0,1,1]],[[1,1,1,1],[1,2,3,1],[2,3,4,1],[1,0,1,1]],[[1,1,1,1],[1,2,3,1],[2,3,3,1],[2,0,1,1]],[[1,1,1,1],[1,2,4,1],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[1,2,3,1],[3,3,3,1],[1,0,2,0]],[[1,1,1,1],[1,2,3,1],[2,4,3,1],[1,0,2,0]],[[1,1,1,1],[1,2,3,1],[2,3,4,1],[1,0,2,0]],[[1,1,1,1],[1,2,3,1],[2,3,3,1],[2,0,2,0]],[[1,1,1,1],[1,2,3,1],[2,3,3,1],[1,0,3,0]],[[1,1,1,1],[1,2,4,1],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[1,2,3,1],[3,3,3,1],[1,1,0,1]],[[1,1,1,1],[1,2,3,1],[2,4,3,1],[1,1,0,1]],[[1,1,1,1],[1,2,3,1],[2,3,4,1],[1,1,0,1]],[[1,1,1,1],[1,2,3,1],[2,3,3,1],[2,1,0,1]],[[1,1,1,1],[1,2,4,1],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[1,2,3,1],[3,3,3,1],[1,1,1,0]],[[1,1,1,1],[1,2,3,1],[2,4,3,1],[1,1,1,0]],[[1,1,1,1],[1,2,3,1],[2,3,4,1],[1,1,1,0]],[[1,1,1,1],[1,2,3,1],[2,3,3,1],[2,1,1,0]],[[1,3,1,0],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[2,2,1,0],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,1],[3,3,3,1],[1,2,0,0]],[[1,1,1,1],[1,2,3,1],[2,4,3,1],[1,2,0,0]],[[1,1,1,1],[1,2,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[2,0,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,0,3,2],[1,3,3,1],[2,2,1,0]],[[1,2,1,0],[2,0,3,2],[1,3,4,1],[1,2,1,0]],[[1,2,1,0],[2,0,3,2],[1,4,3,1],[1,2,1,0]],[[1,2,1,0],[2,0,3,3],[1,3,3,1],[1,2,1,0]],[[1,2,1,0],[2,0,4,2],[1,3,3,1],[1,2,1,0]],[[1,2,1,0],[2,0,3,2],[1,3,3,1],[1,3,0,1]],[[1,2,1,0],[2,0,3,2],[1,3,3,1],[2,2,0,1]],[[1,2,1,0],[2,0,3,2],[1,3,4,1],[1,2,0,1]],[[1,2,1,0],[2,0,3,2],[1,4,3,1],[1,2,0,1]],[[1,2,1,0],[2,0,3,3],[1,3,3,1],[1,2,0,1]],[[1,2,1,0],[2,0,4,2],[1,3,3,1],[1,2,0,1]],[[1,2,1,0],[2,0,3,2],[1,3,3,1],[1,1,3,0]],[[1,2,1,0],[2,0,3,2],[1,3,4,1],[1,1,2,0]],[[1,2,1,0],[2,0,3,2],[1,4,3,1],[1,1,2,0]],[[1,2,1,0],[2,0,3,3],[1,3,3,1],[1,1,2,0]],[[1,2,1,0],[2,0,4,2],[1,3,3,1],[1,1,2,0]],[[1,2,1,0],[2,0,3,2],[1,3,4,1],[1,1,1,1]],[[1,2,1,0],[2,0,3,2],[1,4,3,1],[1,1,1,1]],[[1,2,1,0],[2,0,3,3],[1,3,3,1],[1,1,1,1]],[[1,2,1,0],[2,0,4,2],[1,3,3,1],[1,1,1,1]],[[1,2,1,0],[2,0,3,2],[1,3,3,0],[1,3,1,1]],[[1,2,1,0],[2,0,3,2],[1,3,3,0],[2,2,1,1]],[[1,2,1,0],[2,0,3,2],[1,3,4,0],[1,2,1,1]],[[1,2,1,0],[2,0,3,2],[1,4,3,0],[1,2,1,1]],[[1,2,1,0],[2,0,3,3],[1,3,3,0],[1,2,1,1]],[[1,2,1,0],[2,0,4,2],[1,3,3,0],[1,2,1,1]],[[1,2,1,0],[2,0,3,2],[1,3,3,0],[1,1,2,2]],[[1,2,1,0],[2,0,3,2],[1,3,3,0],[1,1,3,1]],[[1,2,1,0],[2,0,3,2],[1,3,4,0],[1,1,2,1]],[[1,2,1,0],[2,0,3,2],[1,4,3,0],[1,1,2,1]],[[1,2,1,0],[2,0,3,3],[1,3,3,0],[1,1,2,1]],[[1,2,1,0],[2,0,4,2],[1,3,3,0],[1,1,2,1]],[[1,2,1,0],[2,0,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,1,0],[2,0,3,3],[1,3,2,2],[1,2,1,0]],[[1,2,1,0],[2,0,4,2],[1,3,2,2],[1,2,1,0]],[[1,2,1,0],[2,0,3,2],[1,3,2,2],[1,2,0,2]],[[1,2,1,0],[2,0,3,2],[1,3,2,3],[1,2,0,1]],[[1,2,1,0],[2,0,3,3],[1,3,2,2],[1,2,0,1]],[[1,2,1,0],[2,0,4,2],[1,3,2,2],[1,2,0,1]],[[1,2,1,0],[2,0,3,2],[1,3,2,3],[1,1,2,0]],[[1,2,1,0],[2,0,3,3],[1,3,2,2],[1,1,2,0]],[[1,2,1,0],[2,0,4,2],[1,3,2,2],[1,1,2,0]],[[1,2,1,0],[2,0,3,2],[1,3,2,2],[1,1,1,2]],[[1,2,1,0],[2,0,3,2],[1,3,2,3],[1,1,1,1]],[[1,2,1,0],[2,0,3,3],[1,3,2,2],[1,1,1,1]],[[1,2,1,0],[2,0,4,2],[1,3,2,2],[1,1,1,1]],[[1,1,1,2],[1,2,3,2],[0,0,3,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,3],[0,0,3,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,0,3,3],[1,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,0,3,2],[1,2,3,1]],[[1,1,1,1],[1,2,3,2],[0,0,3,2],[1,2,2,2]],[[1,1,1,2],[1,2,3,2],[0,2,1,2],[1,2,2,1]],[[1,1,1,1],[1,2,4,2],[0,2,1,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,3],[0,2,1,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,2,1,3],[1,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,2,1,2],[2,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,2,1,2],[1,3,2,1]],[[1,1,1,1],[1,2,3,2],[0,2,1,2],[1,2,3,1]],[[1,1,1,1],[1,2,3,2],[0,2,1,2],[1,2,2,2]],[[1,1,1,2],[1,2,3,2],[0,2,2,2],[1,2,1,1]],[[1,1,1,1],[1,2,4,2],[0,2,2,2],[1,2,1,1]],[[1,1,1,1],[1,2,3,3],[0,2,2,2],[1,2,1,1]],[[1,1,1,1],[1,2,3,2],[0,2,2,3],[1,2,1,1]],[[1,1,1,1],[1,2,3,2],[0,2,2,2],[1,2,1,2]],[[1,1,1,2],[1,2,3,2],[0,2,2,2],[1,2,2,0]],[[1,1,1,1],[1,2,4,2],[0,2,2,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,3],[0,2,2,2],[1,2,2,0]],[[1,1,1,1],[1,2,3,2],[0,2,2,3],[1,2,2,0]],[[1,1,1,2],[1,2,3,2],[0,2,3,0],[1,2,2,1]],[[1,1,1,1],[1,2,4,2],[0,2,3,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,3],[0,2,3,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,2,4,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,2,3,0],[2,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,2,3,0],[1,3,2,1]],[[1,1,1,1],[1,2,3,2],[0,2,3,0],[1,2,3,1]],[[1,1,1,1],[1,2,3,2],[0,2,3,0],[1,2,2,2]],[[1,1,1,2],[1,2,3,2],[0,2,3,1],[1,2,1,1]],[[1,1,1,1],[1,2,4,2],[0,2,3,1],[1,2,1,1]],[[1,1,1,1],[1,2,3,3],[0,2,3,1],[1,2,1,1]],[[1,1,1,1],[1,2,3,2],[0,2,4,1],[1,2,1,1]],[[1,1,1,2],[1,2,3,2],[0,2,3,1],[1,2,2,0]],[[1,1,1,1],[1,2,4,2],[0,2,3,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,3],[0,2,3,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,2],[0,2,4,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,2],[0,2,3,1],[2,2,2,0]],[[1,1,1,1],[1,2,3,2],[0,2,3,1],[1,3,2,0]],[[1,1,1,1],[1,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,1,0],[2,0,3,2],[1,3,2,1],[1,2,3,0]],[[1,2,1,0],[2,0,3,2],[1,3,2,1],[1,3,2,0]],[[1,2,1,0],[2,0,3,2],[1,3,2,1],[2,2,2,0]],[[1,2,1,0],[2,0,3,2],[1,4,2,1],[1,2,2,0]],[[1,2,1,0],[2,0,3,2],[1,3,2,0],[1,2,2,2]],[[1,1,1,2],[1,2,3,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,2,4,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,3],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,4,0,2],[1,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,0,3],[1,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,0,2],[2,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,0,2],[1,3,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,0,2],[1,2,3,1]],[[1,1,1,1],[1,2,3,2],[0,3,0,2],[1,2,2,2]],[[1,1,1,2],[1,2,3,2],[0,3,1,2],[1,1,2,1]],[[1,1,1,1],[1,2,4,2],[0,3,1,2],[1,1,2,1]],[[1,1,1,1],[1,2,3,3],[0,3,1,2],[1,1,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,1,3],[1,1,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,1,2],[1,1,3,1]],[[1,1,1,1],[1,2,3,2],[0,3,1,2],[1,1,2,2]],[[1,1,1,1],[1,2,3,2],[0,4,2,0],[1,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,2,0],[2,2,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,2,0],[1,3,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,2,0],[1,2,3,1]],[[1,1,1,1],[1,2,3,2],[0,3,2,0],[1,2,2,2]],[[1,1,1,1],[1,2,3,2],[0,4,2,1],[1,2,2,0]],[[1,1,1,1],[1,2,3,2],[0,3,2,1],[2,2,2,0]],[[1,1,1,1],[1,2,3,2],[0,3,2,1],[1,3,2,0]],[[1,1,1,1],[1,2,3,2],[0,3,2,1],[1,2,3,0]],[[1,1,1,2],[1,2,3,2],[0,3,2,2],[1,0,2,1]],[[1,1,1,1],[1,2,4,2],[0,3,2,2],[1,0,2,1]],[[1,1,1,1],[1,2,3,3],[0,3,2,2],[1,0,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,2,3],[1,0,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,2,2],[1,0,2,2]],[[1,1,1,2],[1,2,3,2],[0,3,2,2],[1,1,1,1]],[[1,1,1,1],[1,2,4,2],[0,3,2,2],[1,1,1,1]],[[1,1,1,1],[1,2,3,3],[0,3,2,2],[1,1,1,1]],[[1,1,1,1],[1,2,3,2],[0,3,2,3],[1,1,1,1]],[[1,1,1,1],[1,2,3,2],[0,3,2,2],[1,1,1,2]],[[1,1,1,2],[1,2,3,2],[0,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,2,4,2],[0,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,2,3,3],[0,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,2,3,2],[0,3,2,3],[1,1,2,0]],[[1,1,1,2],[1,2,3,2],[0,3,2,2],[1,2,0,1]],[[1,1,1,1],[1,2,4,2],[0,3,2,2],[1,2,0,1]],[[1,1,1,1],[1,2,3,3],[0,3,2,2],[1,2,0,1]],[[1,1,1,1],[1,2,3,2],[0,3,2,3],[1,2,0,1]],[[1,1,1,1],[1,2,3,2],[0,3,2,2],[1,2,0,2]],[[1,1,1,2],[1,2,3,2],[0,3,2,2],[1,2,1,0]],[[1,1,1,1],[1,2,4,2],[0,3,2,2],[1,2,1,0]],[[1,1,1,1],[1,2,3,3],[0,3,2,2],[1,2,1,0]],[[1,1,1,1],[1,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,1,0],[2,0,3,2],[1,3,2,0],[1,2,3,1]],[[1,2,1,0],[2,0,3,2],[1,3,2,0],[1,3,2,1]],[[1,2,1,0],[2,0,3,2],[1,3,2,0],[2,2,2,1]],[[1,2,1,0],[2,0,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,1,2],[1,2,3,2],[0,3,3,0],[1,1,2,1]],[[1,1,1,1],[1,2,4,2],[0,3,3,0],[1,1,2,1]],[[1,1,1,1],[1,2,3,3],[0,3,3,0],[1,1,2,1]],[[1,1,1,1],[1,2,3,2],[0,4,3,0],[1,1,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,4,0],[1,1,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,3,0],[1,1,3,1]],[[1,1,1,1],[1,2,3,2],[0,3,3,0],[1,1,2,2]],[[1,1,1,2],[1,2,3,2],[0,3,3,0],[1,2,1,1]],[[1,1,1,1],[1,2,4,2],[0,3,3,0],[1,2,1,1]],[[1,1,1,1],[1,2,3,3],[0,3,3,0],[1,2,1,1]],[[1,1,1,1],[1,2,3,2],[0,4,3,0],[1,2,1,1]],[[1,1,1,1],[1,2,3,2],[0,3,4,0],[1,2,1,1]],[[1,1,1,1],[1,2,3,2],[0,3,3,0],[2,2,1,1]],[[1,1,1,1],[1,2,3,2],[0,3,3,0],[1,3,1,1]],[[1,1,1,2],[1,2,3,2],[0,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,2,4,2],[0,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,2,3,3],[0,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,2,3,2],[0,3,4,1],[1,0,2,1]],[[1,1,1,2],[1,2,3,2],[0,3,3,1],[1,1,1,1]],[[1,1,1,1],[1,2,4,2],[0,3,3,1],[1,1,1,1]],[[1,1,1,1],[1,2,3,3],[0,3,3,1],[1,1,1,1]],[[1,1,1,1],[1,2,3,2],[0,4,3,1],[1,1,1,1]],[[1,1,1,1],[1,2,3,2],[0,3,4,1],[1,1,1,1]],[[1,1,1,2],[1,2,3,2],[0,3,3,1],[1,1,2,0]],[[1,1,1,1],[1,2,4,2],[0,3,3,1],[1,1,2,0]],[[1,1,1,1],[1,2,3,3],[0,3,3,1],[1,1,2,0]],[[1,1,1,1],[1,2,3,2],[0,4,3,1],[1,1,2,0]],[[1,1,1,1],[1,2,3,2],[0,3,4,1],[1,1,2,0]],[[1,1,1,1],[1,2,3,2],[0,3,3,1],[1,1,3,0]],[[1,1,1,2],[1,2,3,2],[0,3,3,1],[1,2,0,1]],[[1,1,1,1],[1,2,4,2],[0,3,3,1],[1,2,0,1]],[[1,1,1,1],[1,2,3,3],[0,3,3,1],[1,2,0,1]],[[1,1,1,1],[1,2,3,2],[0,4,3,1],[1,2,0,1]],[[1,1,1,1],[1,2,3,2],[0,3,4,1],[1,2,0,1]],[[1,1,1,1],[1,2,3,2],[0,3,3,1],[2,2,0,1]],[[1,1,1,1],[1,2,3,2],[0,3,3,1],[1,3,0,1]],[[1,1,1,2],[1,2,3,2],[0,3,3,1],[1,2,1,0]],[[1,1,1,1],[1,2,4,2],[0,3,3,1],[1,2,1,0]],[[1,1,1,1],[1,2,3,3],[0,3,3,1],[1,2,1,0]],[[1,1,1,1],[1,2,3,2],[0,4,3,1],[1,2,1,0]],[[1,1,1,1],[1,2,3,2],[0,3,4,1],[1,2,1,0]],[[1,1,1,1],[1,2,3,2],[0,3,3,1],[2,2,1,0]],[[1,1,1,1],[1,2,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,0,3,2],[1,3,1,2],[1,1,2,2]],[[1,2,1,0],[2,0,3,2],[1,3,1,2],[1,1,3,1]],[[1,2,1,0],[2,0,3,2],[1,3,1,3],[1,1,2,1]],[[1,2,1,0],[2,0,3,3],[1,3,1,2],[1,1,2,1]],[[1,2,1,0],[2,0,4,2],[1,3,1,2],[1,1,2,1]],[[1,2,1,0],[2,0,3,2],[1,3,0,2],[1,2,2,2]],[[1,1,1,2],[1,2,3,2],[0,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,2,4,2],[0,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,2,3,3],[0,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,1,0],[2,0,3,2],[1,3,0,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,2],[1,3,0,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,2],[1,3,0,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,2],[1,3,0,3],[1,2,2,1]],[[1,2,1,0],[2,0,3,2],[1,4,0,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,3],[1,3,0,2],[1,2,2,1]],[[1,2,1,0],[2,0,4,2],[1,3,0,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,1,0],[2,0,3,2],[1,2,3,1],[1,3,2,0]],[[1,2,1,0],[2,0,3,2],[1,2,3,1],[2,2,2,0]],[[1,2,1,0],[2,0,3,2],[1,2,4,1],[1,2,2,0]],[[1,2,1,0],[2,0,3,3],[1,2,3,1],[1,2,2,0]],[[1,2,1,0],[2,0,4,2],[1,2,3,1],[1,2,2,0]],[[1,2,1,0],[2,0,3,2],[1,2,4,1],[1,2,1,1]],[[1,2,1,0],[2,0,3,3],[1,2,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,4,2],[1,2,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,3,2],[1,2,3,0],[1,2,2,2]],[[1,1,1,2],[1,2,3,2],[1,0,3,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,3],[1,0,3,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,2],[1,0,3,3],[0,2,2,1]],[[1,1,1,1],[1,2,3,2],[1,0,3,2],[0,2,3,1]],[[1,1,1,1],[1,2,3,2],[1,0,3,2],[0,2,2,2]],[[1,2,1,0],[2,0,3,2],[1,2,3,0],[1,2,3,1]],[[1,2,1,0],[2,0,3,2],[1,2,3,0],[1,3,2,1]],[[1,2,1,0],[2,0,3,2],[1,2,3,0],[2,2,2,1]],[[1,2,1,0],[2,0,3,2],[1,2,4,0],[1,2,2,1]],[[1,2,1,0],[2,0,3,3],[1,2,3,0],[1,2,2,1]],[[1,1,1,2],[1,2,3,2],[1,2,1,2],[0,2,2,1]],[[1,1,1,1],[1,2,4,2],[1,2,1,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,3],[1,2,1,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,2],[1,2,1,3],[0,2,2,1]],[[1,1,1,1],[1,2,3,2],[1,2,1,2],[0,3,2,1]],[[1,1,1,1],[1,2,3,2],[1,2,1,2],[0,2,3,1]],[[1,1,1,1],[1,2,3,2],[1,2,1,2],[0,2,2,2]],[[1,1,1,2],[1,2,3,2],[1,2,2,2],[0,2,1,1]],[[1,1,1,1],[1,2,4,2],[1,2,2,2],[0,2,1,1]],[[1,1,1,1],[1,2,3,3],[1,2,2,2],[0,2,1,1]],[[1,1,1,1],[1,2,3,2],[1,2,2,3],[0,2,1,1]],[[1,1,1,1],[1,2,3,2],[1,2,2,2],[0,2,1,2]],[[1,1,1,2],[1,2,3,2],[1,2,2,2],[0,2,2,0]],[[1,1,1,1],[1,2,4,2],[1,2,2,2],[0,2,2,0]],[[1,1,1,1],[1,2,3,3],[1,2,2,2],[0,2,2,0]],[[1,1,1,1],[1,2,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,1,0],[2,0,4,2],[1,2,3,0],[1,2,2,1]],[[1,1,1,2],[1,2,3,2],[1,2,3,0],[0,2,2,1]],[[1,1,1,1],[1,2,4,2],[1,2,3,0],[0,2,2,1]],[[1,1,1,1],[1,2,3,3],[1,2,3,0],[0,2,2,1]],[[1,1,1,1],[1,2,3,2],[1,2,4,0],[0,2,2,1]],[[1,1,1,1],[1,2,3,2],[1,2,3,0],[0,3,2,1]],[[1,1,1,1],[1,2,3,2],[1,2,3,0],[0,2,3,1]],[[1,1,1,1],[1,2,3,2],[1,2,3,0],[0,2,2,2]],[[1,1,1,2],[1,2,3,2],[1,2,3,1],[0,2,1,1]],[[1,1,1,1],[1,2,4,2],[1,2,3,1],[0,2,1,1]],[[1,1,1,1],[1,2,3,3],[1,2,3,1],[0,2,1,1]],[[1,1,1,1],[1,2,3,2],[1,2,4,1],[0,2,1,1]],[[1,1,1,2],[1,2,3,2],[1,2,3,1],[0,2,2,0]],[[1,1,1,1],[1,2,4,2],[1,2,3,1],[0,2,2,0]],[[1,1,1,1],[1,2,3,3],[1,2,3,1],[0,2,2,0]],[[1,1,1,1],[1,2,3,2],[1,2,4,1],[0,2,2,0]],[[1,1,1,1],[1,2,3,2],[1,2,3,1],[0,3,2,0]],[[1,1,1,1],[1,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,1,0],[2,0,3,2],[1,2,2,3],[1,2,2,0]],[[1,2,1,0],[2,0,3,3],[1,2,2,2],[1,2,2,0]],[[1,2,1,0],[2,0,4,2],[1,2,2,2],[1,2,2,0]],[[1,2,1,0],[2,0,3,2],[1,2,2,2],[1,2,1,2]],[[1,2,1,0],[2,0,3,2],[1,2,2,3],[1,2,1,1]],[[1,2,1,0],[2,0,3,3],[1,2,2,2],[1,2,1,1]],[[1,2,1,0],[2,0,4,2],[1,2,2,2],[1,2,1,1]],[[1,2,1,0],[2,0,3,2],[1,2,1,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,2],[1,2,1,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,2],[1,2,1,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,2],[1,2,1,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,2],[1,2,1,3],[1,2,2,1]],[[1,2,1,0],[2,0,3,3],[1,2,1,2],[1,2,2,1]],[[1,2,1,0],[2,0,4,2],[1,2,1,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[2,2,0,0]],[[1,1,1,2],[1,2,3,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,2,4,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,3],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,2],[1,4,0,2],[0,2,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,0,3],[0,2,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,0,2],[0,3,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,0,2],[0,2,3,1]],[[1,1,1,1],[1,2,3,2],[1,3,0,2],[0,2,2,2]],[[1,1,1,2],[1,2,3,2],[1,3,1,2],[0,1,2,1]],[[1,1,1,1],[1,2,4,2],[1,3,1,2],[0,1,2,1]],[[1,1,1,1],[1,2,3,3],[1,3,1,2],[0,1,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,1,3],[0,1,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,1,2],[0,1,3,1]],[[1,1,1,1],[1,2,3,2],[1,3,1,2],[0,1,2,2]],[[1,1,1,2],[1,2,3,2],[1,3,1,2],[1,0,2,1]],[[1,1,1,1],[1,2,4,2],[1,3,1,2],[1,0,2,1]],[[1,1,1,1],[1,2,3,3],[1,3,1,2],[1,0,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,1,3],[1,0,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,1,2],[1,0,3,1]],[[1,1,1,1],[1,2,3,2],[1,3,1,2],[1,0,2,2]],[[1,2,1,0],[2,0,3,1],[2,4,3,2],[1,2,0,0]],[[1,2,1,0],[2,0,3,1],[3,3,3,2],[1,2,0,0]],[[1,2,1,0],[3,0,3,1],[2,3,3,2],[1,2,0,0]],[[1,3,1,0],[2,0,3,1],[2,3,3,2],[1,2,0,0]],[[2,2,1,0],[2,0,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[1,2,3,2],[1,4,2,0],[0,2,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,0],[0,3,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,0],[0,2,3,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,0],[0,2,2,2]],[[1,1,1,1],[1,2,3,2],[1,4,2,1],[0,2,2,0]],[[1,1,1,1],[1,2,3,2],[1,3,2,1],[0,3,2,0]],[[1,1,1,1],[1,2,3,2],[1,3,2,1],[0,2,3,0]],[[1,1,1,2],[1,2,3,2],[1,3,2,2],[0,0,2,1]],[[1,1,1,1],[1,2,4,2],[1,3,2,2],[0,0,2,1]],[[1,1,1,1],[1,2,3,3],[1,3,2,2],[0,0,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,3],[0,0,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,2],[0,0,2,2]],[[1,1,1,2],[1,2,3,2],[1,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,2,4,2],[1,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,2,3,3],[1,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,3],[0,1,1,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,2],[0,1,1,2]],[[1,1,1,2],[1,2,3,2],[1,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,2,4,2],[1,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,2,3,3],[1,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,2,3,2],[1,3,2,3],[0,1,2,0]],[[1,1,1,2],[1,2,3,2],[1,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,2,4,2],[1,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,2,3,3],[1,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,3],[0,2,0,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,2],[0,2,0,2]],[[1,1,1,2],[1,2,3,2],[1,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,2,4,2],[1,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,2,3,3],[1,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,1,1,2],[1,2,3,2],[1,3,2,2],[1,0,1,1]],[[1,1,1,1],[1,2,4,2],[1,3,2,2],[1,0,1,1]],[[1,1,1,1],[1,2,3,3],[1,3,2,2],[1,0,1,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,3],[1,0,1,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,2],[1,0,1,2]],[[1,1,1,2],[1,2,3,2],[1,3,2,2],[1,0,2,0]],[[1,1,1,1],[1,2,4,2],[1,3,2,2],[1,0,2,0]],[[1,1,1,1],[1,2,3,3],[1,3,2,2],[1,0,2,0]],[[1,1,1,1],[1,2,3,2],[1,3,2,3],[1,0,2,0]],[[1,1,1,2],[1,2,3,2],[1,3,2,2],[1,1,0,1]],[[1,1,1,1],[1,2,4,2],[1,3,2,2],[1,1,0,1]],[[1,1,1,1],[1,2,3,3],[1,3,2,2],[1,1,0,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,3],[1,1,0,1]],[[1,1,1,1],[1,2,3,2],[1,3,2,2],[1,1,0,2]],[[1,1,1,2],[1,2,3,2],[1,3,2,2],[1,1,1,0]],[[1,1,1,1],[1,2,4,2],[1,3,2,2],[1,1,1,0]],[[1,1,1,1],[1,2,3,3],[1,3,2,2],[1,1,1,0]],[[1,1,1,1],[1,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,0,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,1,0],[2,0,3,1],[2,3,4,2],[1,1,1,0]],[[1,2,1,0],[2,0,3,1],[2,4,3,2],[1,1,1,0]],[[1,2,1,0],[2,0,3,1],[3,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,0,4,1],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[3,0,3,1],[2,3,3,2],[1,1,1,0]],[[1,3,1,0],[2,0,3,1],[2,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,0,3,1],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[1,1,0,2]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[2,1,0,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,3],[1,1,0,1]],[[1,2,1,0],[2,0,3,1],[2,3,4,2],[1,1,0,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,2],[1,1,0,1]],[[1,2,1,0],[2,0,3,1],[3,3,3,2],[1,1,0,1]],[[1,2,1,0],[2,0,4,1],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[3,0,3,1],[2,3,3,2],[1,1,0,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,2],[1,1,0,1]],[[2,2,1,0],[2,0,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,2],[1,2,3,2],[1,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,2,4,2],[1,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,2,3,3],[1,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,2,3,2],[1,4,3,0],[0,1,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,4,0],[0,1,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,3,0],[0,1,3,1]],[[1,1,1,1],[1,2,3,2],[1,3,3,0],[0,1,2,2]],[[1,1,1,2],[1,2,3,2],[1,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,2,4,2],[1,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,2,3,3],[1,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,2,3,2],[1,4,3,0],[0,2,1,1]],[[1,1,1,1],[1,2,3,2],[1,3,4,0],[0,2,1,1]],[[1,1,1,1],[1,2,3,2],[1,3,3,0],[0,3,1,1]],[[1,1,1,2],[1,2,3,2],[1,3,3,0],[1,0,2,1]],[[1,1,1,1],[1,2,4,2],[1,3,3,0],[1,0,2,1]],[[1,1,1,1],[1,2,3,3],[1,3,3,0],[1,0,2,1]],[[1,1,1,1],[1,2,3,2],[1,4,3,0],[1,0,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,4,0],[1,0,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,3,0],[1,0,3,1]],[[1,1,1,1],[1,2,3,2],[1,3,3,0],[1,0,2,2]],[[1,1,1,2],[1,2,3,2],[1,3,3,0],[1,1,1,1]],[[1,1,1,1],[1,2,4,2],[1,3,3,0],[1,1,1,1]],[[1,1,1,1],[1,2,3,3],[1,3,3,0],[1,1,1,1]],[[1,1,1,1],[1,2,3,2],[1,4,3,0],[1,1,1,1]],[[1,1,1,1],[1,2,3,2],[1,3,4,0],[1,1,1,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[1,0,3,0]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[2,0,2,0]],[[1,2,1,0],[2,0,3,1],[2,3,3,3],[1,0,2,0]],[[1,2,1,0],[2,0,3,1],[2,3,4,2],[1,0,2,0]],[[1,1,1,2],[1,2,3,2],[1,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,2,4,2],[1,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,2,3,3],[1,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,2,3,2],[1,3,4,1],[0,0,2,1]],[[1,1,1,2],[1,2,3,2],[1,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,2,4,2],[1,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,2,3,3],[1,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,2,3,2],[1,4,3,1],[0,1,1,1]],[[1,1,1,1],[1,2,3,2],[1,3,4,1],[0,1,1,1]],[[1,1,1,2],[1,2,3,2],[1,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,2,4,2],[1,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,2,3,3],[1,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,2,3,2],[1,4,3,1],[0,1,2,0]],[[1,1,1,1],[1,2,3,2],[1,3,4,1],[0,1,2,0]],[[1,1,1,1],[1,2,3,2],[1,3,3,1],[0,1,3,0]],[[1,1,1,2],[1,2,3,2],[1,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,2,4,2],[1,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,2,3,3],[1,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,2,3,2],[1,4,3,1],[0,2,0,1]],[[1,1,1,1],[1,2,3,2],[1,3,4,1],[0,2,0,1]],[[1,1,1,1],[1,2,3,2],[1,3,3,1],[0,3,0,1]],[[1,1,1,2],[1,2,3,2],[1,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,2,4,2],[1,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,2,3,3],[1,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,2,3,2],[1,4,3,1],[0,2,1,0]],[[1,1,1,1],[1,2,3,2],[1,3,4,1],[0,2,1,0]],[[1,1,1,1],[1,2,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,1,0],[2,0,3,1],[2,4,3,2],[1,0,2,0]],[[1,2,1,0],[2,0,3,1],[3,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,0,4,1],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[3,0,3,1],[2,3,3,2],[1,0,2,0]],[[1,3,1,0],[2,0,3,1],[2,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,0,3,1],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[1,0,1,2]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[2,0,1,1]],[[1,1,1,2],[1,2,3,2],[1,3,3,1],[1,0,1,1]],[[1,1,1,1],[1,2,4,2],[1,3,3,1],[1,0,1,1]],[[1,1,1,1],[1,2,3,3],[1,3,3,1],[1,0,1,1]],[[1,1,1,1],[1,2,3,2],[1,4,3,1],[1,0,1,1]],[[1,1,1,1],[1,2,3,2],[1,3,4,1],[1,0,1,1]],[[1,1,1,2],[1,2,3,2],[1,3,3,1],[1,0,2,0]],[[1,1,1,1],[1,2,4,2],[1,3,3,1],[1,0,2,0]],[[1,1,1,1],[1,2,3,3],[1,3,3,1],[1,0,2,0]],[[1,1,1,1],[1,2,3,2],[1,4,3,1],[1,0,2,0]],[[1,1,1,1],[1,2,3,2],[1,3,4,1],[1,0,2,0]],[[1,1,1,1],[1,2,3,2],[1,3,3,1],[1,0,3,0]],[[1,1,1,2],[1,2,3,2],[1,3,3,1],[1,1,0,1]],[[1,1,1,1],[1,2,4,2],[1,3,3,1],[1,1,0,1]],[[1,1,1,1],[1,2,3,3],[1,3,3,1],[1,1,0,1]],[[1,1,1,1],[1,2,3,2],[1,4,3,1],[1,1,0,1]],[[1,1,1,1],[1,2,3,2],[1,3,4,1],[1,1,0,1]],[[1,1,1,2],[1,2,3,2],[1,3,3,1],[1,1,1,0]],[[1,1,1,1],[1,2,4,2],[1,3,3,1],[1,1,1,0]],[[1,1,1,1],[1,2,3,3],[1,3,3,1],[1,1,1,0]],[[1,1,1,1],[1,2,3,2],[1,4,3,1],[1,1,1,0]],[[1,1,1,1],[1,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,1,0],[2,0,3,1],[2,3,3,3],[1,0,1,1]],[[1,2,1,0],[2,0,3,1],[2,3,4,2],[1,0,1,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,2],[1,0,1,1]],[[1,2,1,0],[2,0,3,1],[3,3,3,2],[1,0,1,1]],[[1,2,1,0],[2,0,4,1],[2,3,3,2],[1,0,1,1]],[[1,2,1,0],[3,0,3,1],[2,3,3,2],[1,0,1,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,0,3,1],[2,3,3,2],[1,0,1,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,0,3,1],[2,3,3,3],[0,2,1,0]],[[1,2,1,0],[2,0,3,1],[2,3,4,2],[0,2,1,0]],[[1,1,1,2],[1,2,3,2],[1,3,3,2],[0,1,0,1]],[[1,1,1,1],[1,2,4,2],[1,3,3,2],[0,1,0,1]],[[1,1,1,1],[1,2,3,3],[1,3,3,2],[0,1,0,1]],[[1,1,1,1],[1,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,2],[0,2,1,0]],[[1,2,1,0],[2,0,3,1],[3,3,3,2],[0,2,1,0]],[[1,2,1,0],[2,0,4,1],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[3,0,3,1],[2,3,3,2],[0,2,1,0]],[[1,3,1,0],[2,0,3,1],[2,3,3,2],[0,2,1,0]],[[2,2,1,0],[2,0,3,1],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[0,2,0,2]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[0,3,0,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,3],[0,2,0,1]],[[1,2,1,0],[2,0,3,1],[2,3,4,2],[0,2,0,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,2],[0,2,0,1]],[[1,2,1,0],[2,0,3,1],[3,3,3,2],[0,2,0,1]],[[1,2,1,0],[2,0,4,1],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[3,0,3,1],[2,3,3,2],[0,2,0,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,0,3,1],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[0,1,3,0]],[[1,2,1,0],[2,0,3,1],[2,3,3,3],[0,1,2,0]],[[1,2,1,0],[2,0,3,1],[2,3,4,2],[0,1,2,0]],[[1,2,1,0],[2,0,3,1],[2,4,3,2],[0,1,2,0]],[[1,2,1,0],[2,0,3,1],[3,3,3,2],[0,1,2,0]],[[1,2,1,0],[2,0,4,1],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[3,0,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,2],[1,2,3,2],[1,3,3,2],[1,0,0,1]],[[1,1,1,1],[1,2,4,2],[1,3,3,2],[1,0,0,1]],[[1,1,1,1],[1,2,3,3],[1,3,3,2],[1,0,0,1]],[[1,1,1,1],[1,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,2],[0,1,2,0]],[[2,2,1,0],[2,0,3,1],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[0,1,1,2]],[[1,2,1,0],[2,0,3,1],[2,3,3,3],[0,1,1,1]],[[1,2,1,0],[2,0,3,1],[2,3,4,2],[0,1,1,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,2],[0,1,1,1]],[[1,2,1,0],[2,0,3,1],[3,3,3,2],[0,1,1,1]],[[1,2,1,0],[2,0,4,1],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[3,0,3,1],[2,3,3,2],[0,1,1,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,0,3,1],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,2],[0,0,2,2]],[[1,2,1,0],[2,0,3,1],[2,3,3,3],[0,0,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,4,2],[0,0,2,1]],[[1,2,1,0],[2,0,4,1],[2,3,3,2],[0,0,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,1],[1,2,0,1]],[[1,2,1,0],[2,0,3,1],[3,3,3,1],[1,2,0,1]],[[1,2,1,0],[3,0,3,1],[2,3,3,1],[1,2,0,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,1],[1,2,0,1]],[[2,2,1,0],[2,0,3,1],[2,3,3,1],[1,2,0,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[2,0,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,1],[1,1,1,1]],[[1,2,1,0],[2,0,3,1],[3,3,3,1],[1,1,1,1]],[[1,2,1,0],[2,0,4,1],[2,3,3,1],[1,1,1,1]],[[1,2,1,0],[3,0,3,1],[2,3,3,1],[1,1,1,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,1],[1,1,1,1]],[[2,2,1,0],[2,0,3,1],[2,3,3,1],[1,1,1,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,1],[1,0,2,2]],[[1,2,1,0],[2,0,3,1],[2,3,3,1],[1,0,3,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,1],[2,0,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,4,1],[1,0,2,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,1],[1,0,2,1]],[[1,2,1,0],[2,0,3,1],[3,3,3,1],[1,0,2,1]],[[1,2,1,0],[2,0,4,1],[2,3,3,1],[1,0,2,1]],[[1,2,1,0],[3,0,3,1],[2,3,3,1],[1,0,2,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,1],[1,0,2,1]],[[2,2,1,0],[2,0,3,1],[2,3,3,1],[1,0,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,1],[0,3,1,1]],[[1,2,1,0],[2,0,3,1],[2,3,4,1],[0,2,1,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,1],[0,2,1,1]],[[1,2,1,0],[2,0,3,1],[3,3,3,1],[0,2,1,1]],[[1,2,1,0],[2,0,4,1],[2,3,3,1],[0,2,1,1]],[[1,2,1,0],[3,0,3,1],[2,3,3,1],[0,2,1,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,1],[0,2,1,1]],[[2,2,1,0],[2,0,3,1],[2,3,3,1],[0,2,1,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,1],[0,1,2,2]],[[1,2,1,0],[2,0,3,1],[2,3,3,1],[0,1,3,1]],[[1,2,1,0],[2,0,3,1],[2,3,4,1],[0,1,2,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,1],[0,1,2,1]],[[1,2,1,0],[2,0,3,1],[3,3,3,1],[0,1,2,1]],[[1,2,1,0],[2,0,4,1],[2,3,3,1],[0,1,2,1]],[[1,2,1,0],[3,0,3,1],[2,3,3,1],[0,1,2,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,0,3,1],[2,3,3,1],[0,1,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,0],[2,1,2,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,0],[1,1,2,1]],[[1,2,1,0],[2,0,3,1],[3,3,3,0],[1,1,2,1]],[[1,2,1,0],[3,0,3,1],[2,3,3,0],[1,1,2,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,0],[1,1,2,1]],[[2,2,1,0],[2,0,3,1],[2,3,3,0],[1,1,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,0],[0,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,3,3,0],[0,3,2,1]],[[1,2,1,0],[2,0,3,1],[2,4,3,0],[0,2,2,1]],[[1,2,1,0],[2,0,3,1],[3,3,3,0],[0,2,2,1]],[[1,2,1,0],[3,0,3,1],[2,3,3,0],[0,2,2,1]],[[1,3,1,0],[2,0,3,1],[2,3,3,0],[0,2,2,1]],[[2,2,1,0],[2,0,3,1],[2,3,3,0],[0,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,0,3,1],[2,4,2,2],[1,1,2,0]],[[1,2,1,0],[2,0,3,1],[3,3,2,2],[1,1,2,0]],[[1,2,1,0],[3,0,3,1],[2,3,2,2],[1,1,2,0]],[[1,3,1,0],[2,0,3,1],[2,3,2,2],[1,1,2,0]],[[2,2,1,0],[2,0,3,1],[2,3,2,2],[1,1,2,0]],[[1,2,1,0],[2,0,3,1],[2,3,2,2],[1,0,2,2]],[[1,2,1,0],[2,0,3,1],[2,3,2,2],[1,0,3,1]],[[1,2,1,0],[2,0,3,1],[2,3,2,3],[1,0,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,2,2],[0,2,3,0]],[[1,2,1,0],[2,0,3,1],[2,3,2,2],[0,3,2,0]],[[1,2,1,0],[2,0,3,1],[2,4,2,2],[0,2,2,0]],[[1,2,1,0],[2,0,3,1],[3,3,2,2],[0,2,2,0]],[[1,2,1,0],[3,0,3,1],[2,3,2,2],[0,2,2,0]],[[1,3,1,0],[2,0,3,1],[2,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,0,3,1],[2,3,2,2],[0,2,2,0]],[[1,2,1,0],[2,0,3,1],[2,3,2,2],[0,1,2,2]],[[1,2,1,0],[2,0,3,1],[2,3,2,2],[0,1,3,1]],[[1,2,1,0],[2,0,3,1],[2,3,2,3],[0,1,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,2,1],[2,1,2,1]],[[1,2,1,0],[2,0,3,1],[2,4,2,1],[1,1,2,1]],[[1,2,1,0],[2,0,3,1],[3,3,2,1],[1,1,2,1]],[[1,2,1,0],[3,0,3,1],[2,3,2,1],[1,1,2,1]],[[1,3,1,0],[2,0,3,1],[2,3,2,1],[1,1,2,1]],[[2,2,1,0],[2,0,3,1],[2,3,2,1],[1,1,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,2,1],[0,2,2,2]],[[1,2,1,0],[2,0,3,1],[2,3,2,1],[0,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,3,2,1],[0,3,2,1]],[[1,2,1,0],[2,0,3,1],[2,4,2,1],[0,2,2,1]],[[1,2,1,0],[2,0,3,1],[3,3,2,1],[0,2,2,1]],[[1,2,1,0],[3,0,3,1],[2,3,2,1],[0,2,2,1]],[[1,3,1,0],[2,0,3,1],[2,3,2,1],[0,2,2,1]],[[2,2,1,0],[2,0,3,1],[2,3,2,1],[0,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,1,2],[2,1,2,1]],[[1,2,1,0],[2,0,3,1],[2,4,1,2],[1,1,2,1]],[[1,2,1,0],[2,0,3,1],[3,3,1,2],[1,1,2,1]],[[1,2,1,0],[3,0,3,1],[2,3,1,2],[1,1,2,1]],[[1,3,1,0],[2,0,3,1],[2,3,1,2],[1,1,2,1]],[[2,2,1,0],[2,0,3,1],[2,3,1,2],[1,1,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,1,2],[0,2,2,2]],[[1,2,1,0],[2,0,3,1],[2,3,1,2],[0,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,3,1,2],[0,3,2,1]],[[1,2,1,0],[2,0,3,1],[2,3,1,3],[0,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,4,1,2],[0,2,2,1]],[[1,2,1,0],[2,0,3,1],[3,3,1,2],[0,2,2,1]],[[1,2,1,0],[3,0,3,1],[2,3,1,2],[0,2,2,1]],[[1,3,1,0],[2,0,3,1],[2,3,1,2],[0,2,2,1]],[[2,2,1,0],[2,0,3,1],[2,3,1,2],[0,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,3,1],[2,2,3,2],[2,2,1,0]],[[1,2,1,0],[2,0,3,1],[3,2,3,2],[1,2,1,0]],[[1,2,1,0],[3,0,3,1],[2,2,3,2],[1,2,1,0]],[[1,3,1,0],[2,0,3,1],[2,2,3,2],[1,2,1,0]],[[2,2,1,0],[2,0,3,1],[2,2,3,2],[1,2,1,0]],[[1,2,1,0],[2,0,3,1],[2,2,3,2],[1,3,0,1]],[[1,2,1,0],[2,0,3,1],[2,2,3,2],[2,2,0,1]],[[1,2,1,0],[2,0,3,1],[3,2,3,2],[1,2,0,1]],[[1,2,1,0],[3,0,3,1],[2,2,3,2],[1,2,0,1]],[[1,3,1,0],[2,0,3,1],[2,2,3,2],[1,2,0,1]],[[2,2,1,0],[2,0,3,1],[2,2,3,2],[1,2,0,1]],[[1,2,1,0],[2,0,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,1,0],[2,0,3,1],[2,2,3,2],[0,3,2,0]],[[1,2,1,0],[2,0,3,1],[2,2,3,3],[0,2,2,0]],[[1,2,1,0],[2,0,3,1],[2,2,4,2],[0,2,2,0]],[[1,2,1,0],[2,0,4,1],[2,2,3,2],[0,2,2,0]],[[1,2,1,0],[2,0,3,1],[2,2,3,2],[0,2,1,2]],[[1,2,1,0],[2,0,3,1],[2,2,3,3],[0,2,1,1]],[[1,2,1,0],[2,0,3,1],[2,2,4,2],[0,2,1,1]],[[1,2,1,0],[2,0,4,1],[2,2,3,2],[0,2,1,1]],[[1,2,1,0],[2,0,3,1],[2,2,3,1],[1,3,1,1]],[[1,2,1,0],[2,0,3,1],[2,2,3,1],[2,2,1,1]],[[1,2,1,0],[2,0,3,1],[3,2,3,1],[1,2,1,1]],[[1,2,1,0],[3,0,3,1],[2,2,3,1],[1,2,1,1]],[[1,3,1,0],[2,0,3,1],[2,2,3,1],[1,2,1,1]],[[2,2,1,0],[2,0,3,1],[2,2,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,3,1],[2,2,3,1],[0,2,2,2]],[[1,2,1,0],[2,0,3,1],[2,2,3,1],[0,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,2,3,1],[0,3,2,1]],[[1,2,1,0],[2,0,3,1],[2,2,4,1],[0,2,2,1]],[[1,2,1,0],[2,0,4,1],[2,2,3,1],[0,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,2,3,0],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,2,3,0],[1,3,2,1]],[[1,2,1,0],[2,0,3,1],[2,2,3,0],[2,2,2,1]],[[1,2,1,0],[2,0,3,1],[3,2,3,0],[1,2,2,1]],[[1,2,1,0],[3,0,3,1],[2,2,3,0],[1,2,2,1]],[[1,3,1,0],[2,0,3,1],[2,2,3,0],[1,2,2,1]],[[2,2,1,0],[2,0,3,1],[2,2,3,0],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,2,2,2],[1,2,3,0]],[[1,2,1,0],[2,0,3,1],[2,2,2,2],[1,3,2,0]],[[1,2,1,0],[2,0,3,1],[2,2,2,2],[2,2,2,0]],[[1,2,1,0],[2,0,3,1],[3,2,2,2],[1,2,2,0]],[[1,2,1,0],[3,0,3,1],[2,2,2,2],[1,2,2,0]],[[1,3,1,0],[2,0,3,1],[2,2,2,2],[1,2,2,0]],[[2,2,1,0],[2,0,3,1],[2,2,2,2],[1,2,2,0]],[[1,2,1,0],[2,0,3,1],[2,2,2,2],[0,2,2,2]],[[1,2,1,0],[2,0,3,1],[2,2,2,2],[0,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,2,2,2],[0,3,2,1]],[[1,2,1,0],[2,0,3,1],[2,2,2,3],[0,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,2,2,1],[1,2,2,2]],[[1,2,1,0],[2,0,3,1],[2,2,2,1],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,2,2,1],[1,3,2,1]],[[1,2,1,0],[2,0,3,1],[2,2,2,1],[2,2,2,1]],[[1,2,1,0],[2,0,3,1],[3,2,2,1],[1,2,2,1]],[[1,2,1,0],[3,0,3,1],[2,2,2,1],[1,2,2,1]],[[1,3,1,0],[2,0,3,1],[2,2,2,1],[1,2,2,1]],[[2,2,1,0],[2,0,3,1],[2,2,2,1],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,2,1,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,1],[2,2,1,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,2,1,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,1],[2,2,1,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,2,1,3],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[3,2,1,2],[1,2,2,1]],[[1,2,1,0],[3,0,3,1],[2,2,1,2],[1,2,2,1]],[[1,3,1,0],[2,0,3,1],[2,2,1,2],[1,2,2,1]],[[2,2,1,0],[2,0,3,1],[2,2,1,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,1,3,2],[1,2,3,0]],[[1,2,1,0],[2,0,3,1],[2,1,3,2],[1,3,2,0]],[[1,2,1,0],[2,0,3,1],[2,1,3,2],[2,2,2,0]],[[1,2,1,0],[2,0,3,1],[2,1,3,3],[1,2,2,0]],[[1,2,1,0],[2,0,3,1],[2,1,4,2],[1,2,2,0]],[[1,2,1,0],[2,0,3,1],[3,1,3,2],[1,2,2,0]],[[1,2,1,0],[2,0,4,1],[2,1,3,2],[1,2,2,0]],[[1,2,1,0],[3,0,3,1],[2,1,3,2],[1,2,2,0]],[[1,3,1,0],[2,0,3,1],[2,1,3,2],[1,2,2,0]],[[2,2,1,0],[2,0,3,1],[2,1,3,2],[1,2,2,0]],[[1,2,1,0],[2,0,3,1],[2,1,3,2],[1,2,1,2]],[[1,2,1,0],[2,0,3,1],[2,1,3,3],[1,2,1,1]],[[1,2,1,0],[2,0,3,1],[2,1,4,2],[1,2,1,1]],[[1,2,1,0],[2,0,4,1],[2,1,3,2],[1,2,1,1]],[[1,2,1,0],[2,0,3,1],[2,1,3,2],[0,2,2,2]],[[1,2,1,0],[2,0,3,1],[2,1,3,2],[0,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,1,3,3],[0,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,1,3,1],[1,2,2,2]],[[1,2,1,0],[2,0,3,1],[2,1,3,1],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,1,3,1],[1,3,2,1]],[[1,2,1,0],[2,0,3,1],[2,1,3,1],[2,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,1,4,1],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[3,1,3,1],[1,2,2,1]],[[1,2,1,0],[2,0,4,1],[2,1,3,1],[1,2,2,1]],[[1,2,1,0],[3,0,3,1],[2,1,3,1],[1,2,2,1]],[[1,3,1,0],[2,0,3,1],[2,1,3,1],[1,2,2,1]],[[2,2,1,0],[2,0,3,1],[2,1,3,1],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,1,2,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,1],[2,1,2,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,1,2,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,1],[2,1,2,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,1,2,3],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[3,1,2,2],[1,2,2,1]],[[1,2,1,0],[3,0,3,1],[2,1,2,2],[1,2,2,1]],[[1,3,1,0],[2,0,3,1],[2,1,2,2],[1,2,2,1]],[[2,2,1,0],[2,0,3,1],[2,1,2,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[2,0,3,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,1],[2,0,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[2,0,3,3],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,3,1],[1,3,3,2],[2,2,1,0]],[[1,2,1,0],[2,0,3,1],[1,3,3,3],[1,2,1,0]],[[1,2,1,0],[2,0,3,1],[1,3,4,2],[1,2,1,0]],[[1,2,1,0],[2,0,3,1],[1,4,3,2],[1,2,1,0]],[[1,2,1,0],[2,0,4,1],[1,3,3,2],[1,2,1,0]],[[1,2,1,0],[2,0,3,1],[1,3,3,2],[1,2,0,2]],[[1,2,1,0],[2,0,3,1],[1,3,3,2],[1,3,0,1]],[[1,2,1,0],[2,0,3,1],[1,3,3,2],[2,2,0,1]],[[1,2,1,0],[2,0,3,1],[1,3,3,3],[1,2,0,1]],[[1,2,1,0],[2,0,3,1],[1,3,4,2],[1,2,0,1]],[[1,2,1,0],[2,0,3,1],[1,4,3,2],[1,2,0,1]],[[1,2,1,0],[2,0,4,1],[1,3,3,2],[1,2,0,1]],[[1,2,1,0],[2,0,3,1],[1,3,3,2],[1,1,3,0]],[[1,2,1,0],[2,0,3,1],[1,3,3,3],[1,1,2,0]],[[1,2,1,0],[2,0,3,1],[1,3,4,2],[1,1,2,0]],[[1,2,1,0],[2,0,3,1],[1,4,3,2],[1,1,2,0]],[[1,2,1,0],[2,0,4,1],[1,3,3,2],[1,1,2,0]],[[1,2,1,0],[2,0,3,1],[1,3,3,2],[1,1,1,2]],[[1,2,1,0],[2,0,3,1],[1,3,3,3],[1,1,1,1]],[[1,2,1,0],[2,0,3,1],[1,3,4,2],[1,1,1,1]],[[1,2,1,0],[2,0,3,1],[1,4,3,2],[1,1,1,1]],[[1,2,1,0],[2,0,4,1],[1,3,3,2],[1,1,1,1]],[[1,2,1,0],[2,0,3,1],[1,3,3,2],[1,0,2,2]],[[1,2,1,0],[2,0,3,1],[1,3,3,3],[1,0,2,1]],[[1,2,1,0],[2,0,3,1],[1,3,4,2],[1,0,2,1]],[[1,2,1,0],[2,0,3,1],[1,3,3,1],[1,3,1,1]],[[1,2,1,0],[2,0,3,1],[1,3,3,1],[2,2,1,1]],[[1,2,1,0],[2,0,3,1],[1,3,4,1],[1,2,1,1]],[[1,2,1,0],[2,0,3,1],[1,4,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,4,1],[1,3,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,3,1],[1,3,3,1],[1,1,2,2]],[[1,2,1,0],[2,0,3,1],[1,3,3,1],[1,1,3,1]],[[1,2,1,0],[2,0,3,1],[1,3,4,1],[1,1,2,1]],[[1,2,1,0],[2,0,3,1],[1,4,3,1],[1,1,2,1]],[[1,2,1,0],[2,0,4,1],[1,3,3,1],[1,1,2,1]],[[1,2,1,0],[2,0,3,1],[1,3,3,0],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[1,3,3,0],[1,3,2,1]],[[1,2,1,0],[2,0,3,1],[1,3,3,0],[2,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,4,3,0],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,3,2,2],[1,2,3,0]],[[1,2,1,0],[2,0,3,1],[1,3,2,2],[1,3,2,0]],[[1,2,1,0],[2,0,3,1],[1,3,2,2],[2,2,2,0]],[[1,2,1,0],[2,0,3,1],[1,4,2,2],[1,2,2,0]],[[1,2,1,0],[2,0,3,1],[1,3,2,2],[1,1,2,2]],[[1,2,1,0],[2,0,3,1],[1,3,2,2],[1,1,3,1]],[[1,2,1,0],[2,0,3,1],[1,3,2,3],[1,1,2,1]],[[1,2,1,0],[2,0,3,1],[1,3,2,1],[1,2,2,2]],[[1,2,1,0],[2,0,3,1],[1,3,2,1],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[1,3,2,1],[1,3,2,1]],[[1,2,1,0],[2,0,3,1],[1,3,2,1],[2,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,4,2,1],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,3,1,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,1],[1,3,1,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[1,3,1,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,1],[1,3,1,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,3,1,3],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,4,1,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,2,3,2],[1,2,3,0]],[[1,2,1,0],[2,0,3,1],[1,2,3,2],[1,3,2,0]],[[1,2,1,0],[2,0,3,1],[1,2,3,2],[2,2,2,0]],[[1,2,1,0],[2,0,3,1],[1,2,3,3],[1,2,2,0]],[[1,2,1,0],[2,0,3,1],[1,2,4,2],[1,2,2,0]],[[1,2,1,0],[2,0,4,1],[1,2,3,2],[1,2,2,0]],[[1,2,1,0],[2,0,3,1],[1,2,3,2],[1,2,1,2]],[[1,2,1,0],[2,0,3,1],[1,2,3,3],[1,2,1,1]],[[1,2,1,0],[2,0,3,1],[1,2,4,2],[1,2,1,1]],[[1,2,1,0],[2,0,4,1],[1,2,3,2],[1,2,1,1]],[[1,2,1,0],[2,0,3,1],[1,2,3,1],[1,2,2,2]],[[1,2,1,0],[2,0,3,1],[1,2,3,1],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[1,2,3,1],[1,3,2,1]],[[1,2,1,0],[2,0,3,1],[1,2,3,1],[2,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,2,4,1],[1,2,2,1]],[[1,2,1,0],[2,0,4,1],[1,2,3,1],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,2,2,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,1],[1,2,2,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[1,2,2,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,1],[1,2,2,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,2,2,3],[1,2,2,1]],[[1,2,1,0],[2,0,3,1],[1,1,3,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,1],[1,1,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,1],[1,1,3,3],[1,2,2,1]],[[1,2,1,0],[2,0,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,3,0],[2,3,3,2],[2,2,1,0]],[[1,2,1,0],[2,0,3,0],[3,3,3,2],[1,2,1,0]],[[1,2,1,0],[2,0,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,1,0],[2,0,3,0],[2,3,4,2],[1,1,1,1]],[[1,2,1,0],[2,0,3,0],[2,4,3,2],[1,1,1,1]],[[1,2,1,0],[2,0,3,0],[3,3,3,2],[1,1,1,1]],[[1,2,1,0],[3,0,3,0],[2,3,3,2],[1,1,1,1]],[[1,3,1,0],[2,0,3,0],[2,3,3,2],[1,1,1,1]],[[2,2,1,0],[2,0,3,0],[2,3,3,2],[1,1,1,1]],[[1,2,1,0],[2,0,3,0],[2,3,3,2],[1,0,2,2]],[[1,2,1,0],[2,0,3,0],[2,3,3,2],[1,0,3,1]],[[1,2,1,0],[2,0,3,0],[2,3,3,2],[2,0,2,1]],[[1,2,1,0],[2,0,3,0],[2,3,4,2],[1,0,2,1]],[[1,2,1,0],[2,0,3,0],[2,4,3,2],[1,0,2,1]],[[1,2,1,0],[2,0,3,0],[3,3,3,2],[1,0,2,1]],[[1,2,1,0],[3,0,3,0],[2,3,3,2],[1,0,2,1]],[[1,3,1,0],[2,0,3,0],[2,3,3,2],[1,0,2,1]],[[2,2,1,0],[2,0,3,0],[2,3,3,2],[1,0,2,1]],[[1,2,1,0],[2,0,3,0],[2,3,3,2],[0,3,1,1]],[[1,2,1,0],[2,0,3,0],[2,3,4,2],[0,2,1,1]],[[1,2,1,0],[2,0,3,0],[2,4,3,2],[0,2,1,1]],[[1,2,1,0],[2,0,3,0],[3,3,3,2],[0,2,1,1]],[[1,2,1,0],[3,0,3,0],[2,3,3,2],[0,2,1,1]],[[1,3,1,0],[2,0,3,0],[2,3,3,2],[0,2,1,1]],[[2,2,1,0],[2,0,3,0],[2,3,3,2],[0,2,1,1]],[[1,2,1,0],[2,0,3,0],[2,3,3,2],[0,1,2,2]],[[1,2,1,0],[2,0,3,0],[2,3,3,2],[0,1,3,1]],[[1,2,1,0],[2,0,3,0],[2,3,4,2],[0,1,2,1]],[[1,2,1,0],[2,0,3,0],[2,4,3,2],[0,1,2,1]],[[1,2,1,0],[2,0,3,0],[3,3,3,2],[0,1,2,1]],[[1,2,1,0],[3,0,3,0],[2,3,3,2],[0,1,2,1]],[[1,3,1,0],[2,0,3,0],[2,3,3,2],[0,1,2,1]],[[2,2,1,0],[2,0,3,0],[2,3,3,2],[0,1,2,1]],[[1,2,1,0],[2,0,3,0],[2,3,3,1],[1,3,1,1]],[[1,2,1,0],[2,0,3,0],[2,3,3,1],[2,2,1,1]],[[1,2,1,0],[2,0,3,0],[3,3,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,3,0],[2,3,3,0],[1,2,3,1]],[[1,2,1,0],[2,0,3,0],[2,3,3,0],[1,3,2,1]],[[1,2,1,0],[2,0,3,0],[2,3,3,0],[2,2,2,1]],[[1,2,1,0],[2,0,3,0],[3,3,3,0],[1,2,2,1]],[[1,2,1,0],[2,0,3,0],[2,3,2,2],[1,3,2,0]],[[1,2,1,0],[2,0,3,0],[2,3,2,2],[2,2,2,0]],[[1,2,1,0],[2,0,3,0],[3,3,2,2],[1,2,2,0]],[[1,2,1,0],[2,0,3,0],[2,3,2,2],[2,1,2,1]],[[1,2,1,0],[2,0,3,0],[2,4,2,2],[1,1,2,1]],[[1,2,1,0],[2,0,3,0],[3,3,2,2],[1,1,2,1]],[[1,2,1,0],[3,0,3,0],[2,3,2,2],[1,1,2,1]],[[1,3,1,0],[2,0,3,0],[2,3,2,2],[1,1,2,1]],[[2,2,1,0],[2,0,3,0],[2,3,2,2],[1,1,2,1]],[[1,2,1,0],[2,0,3,0],[2,3,2,2],[0,2,2,2]],[[1,2,1,0],[2,0,3,0],[2,3,2,2],[0,2,3,1]],[[1,2,1,0],[2,0,3,0],[2,3,2,2],[0,3,2,1]],[[1,2,1,0],[2,0,3,0],[2,4,2,2],[0,2,2,1]],[[1,2,1,0],[2,0,3,0],[3,3,2,2],[0,2,2,1]],[[1,2,1,0],[3,0,3,0],[2,3,2,2],[0,2,2,1]],[[1,3,1,0],[2,0,3,0],[2,3,2,2],[0,2,2,1]],[[2,2,1,0],[2,0,3,0],[2,3,2,2],[0,2,2,1]],[[1,2,1,0],[2,0,3,0],[2,3,2,1],[1,2,3,1]],[[1,2,1,0],[2,0,3,0],[2,3,2,1],[1,3,2,1]],[[1,2,1,0],[2,0,3,0],[2,3,2,1],[2,2,2,1]],[[1,2,1,0],[2,0,3,0],[3,3,2,1],[1,2,2,1]],[[1,2,1,0],[2,0,3,0],[2,2,3,2],[1,3,1,1]],[[1,2,1,0],[2,0,3,0],[2,2,3,2],[2,2,1,1]],[[1,2,1,0],[2,0,3,0],[3,2,3,2],[1,2,1,1]],[[1,2,1,0],[3,0,3,0],[2,2,3,2],[1,2,1,1]],[[1,3,1,0],[2,0,3,0],[2,2,3,2],[1,2,1,1]],[[2,2,1,0],[2,0,3,0],[2,2,3,2],[1,2,1,1]],[[1,2,1,0],[2,0,3,0],[2,2,3,2],[0,2,2,2]],[[1,2,1,0],[2,0,3,0],[2,2,3,2],[0,2,3,1]],[[1,2,1,0],[2,0,3,0],[2,2,3,2],[0,3,2,1]],[[1,2,1,0],[2,0,3,0],[2,2,4,2],[0,2,2,1]],[[1,2,1,0],[2,0,3,0],[2,2,2,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,0],[2,2,2,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,0],[2,2,2,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,0],[2,2,2,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,0],[3,2,2,2],[1,2,2,1]],[[1,2,1,0],[3,0,3,0],[2,2,2,2],[1,2,2,1]],[[1,3,1,0],[2,0,3,0],[2,2,2,2],[1,2,2,1]],[[2,2,1,0],[2,0,3,0],[2,2,2,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,0],[2,1,3,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,0],[2,1,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,0],[2,1,3,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,0],[2,1,3,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,0],[2,1,4,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,0],[3,1,3,2],[1,2,2,1]],[[1,2,1,0],[3,0,3,0],[2,1,3,2],[1,2,2,1]],[[1,3,1,0],[2,0,3,0],[2,1,3,2],[1,2,2,1]],[[2,2,1,0],[2,0,3,0],[2,1,3,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,0],[1,3,3,2],[1,3,1,1]],[[1,2,1,0],[2,0,3,0],[1,3,3,2],[2,2,1,1]],[[1,2,1,0],[2,0,3,0],[1,3,4,2],[1,2,1,1]],[[1,2,1,0],[2,0,3,0],[1,4,3,2],[1,2,1,1]],[[1,2,1,0],[2,0,3,0],[1,3,3,2],[1,1,2,2]],[[1,2,1,0],[2,0,3,0],[1,3,3,2],[1,1,3,1]],[[1,2,1,0],[2,0,3,0],[1,3,4,2],[1,1,2,1]],[[1,2,1,0],[2,0,3,0],[1,4,3,2],[1,1,2,1]],[[1,2,1,0],[2,0,3,0],[1,3,2,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,0],[1,3,2,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,0],[1,3,2,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,0],[1,3,2,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,0],[1,4,2,2],[1,2,2,1]],[[1,2,1,0],[2,0,3,0],[1,2,3,2],[1,2,2,2]],[[1,2,1,0],[2,0,3,0],[1,2,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,3,0],[1,2,3,2],[1,3,2,1]],[[1,2,1,0],[2,0,3,0],[1,2,3,2],[2,2,2,1]],[[1,2,1,0],[2,0,3,0],[1,2,4,2],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,0,2,2],[2,4,3,2],[1,2,0,0]],[[1,2,1,0],[2,0,2,2],[3,3,3,2],[1,2,0,0]],[[1,2,1,0],[3,0,2,2],[2,3,3,2],[1,2,0,0]],[[1,3,1,0],[2,0,2,2],[2,3,3,2],[1,2,0,0]],[[2,2,1,0],[2,0,2,2],[2,3,3,2],[1,2,0,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,0],[2,0,2,2],[2,3,4,2],[1,1,1,0]],[[1,2,1,0],[2,0,2,2],[2,4,3,2],[1,1,1,0]],[[1,2,1,0],[2,0,2,2],[3,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,0,2,3],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[3,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,3,1,0],[2,0,2,2],[2,3,3,2],[1,1,1,0]],[[2,2,1,0],[2,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[1,1,0,2]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[2,1,0,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,3],[1,1,0,1]],[[1,2,1,0],[2,0,2,2],[2,3,4,2],[1,1,0,1]],[[1,2,1,0],[2,0,2,2],[2,4,3,2],[1,1,0,1]],[[1,2,1,0],[2,0,2,2],[3,3,3,2],[1,1,0,1]],[[1,2,1,0],[2,0,2,3],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[3,0,2,2],[2,3,3,2],[1,1,0,1]],[[1,3,1,0],[2,0,2,2],[2,3,3,2],[1,1,0,1]],[[2,2,1,0],[2,0,2,2],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[1,0,3,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[2,0,2,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,3],[1,0,2,0]],[[1,2,1,0],[2,0,2,2],[2,3,4,2],[1,0,2,0]],[[1,2,1,0],[2,0,2,2],[2,4,3,2],[1,0,2,0]],[[1,2,1,0],[2,0,2,2],[3,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,0,2,3],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[3,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,3,1,0],[2,0,2,2],[2,3,3,2],[1,0,2,0]],[[2,2,1,0],[2,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[1,0,1,2]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[2,0,1,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,3],[1,0,1,1]],[[1,2,1,0],[2,0,2,2],[2,3,4,2],[1,0,1,1]],[[1,2,1,0],[2,0,2,2],[2,4,3,2],[1,0,1,1]],[[1,2,1,0],[2,0,2,2],[3,3,3,2],[1,0,1,1]],[[1,2,1,0],[2,0,2,3],[2,3,3,2],[1,0,1,1]],[[1,2,1,0],[3,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,3,1,0],[2,0,2,2],[2,3,3,2],[1,0,1,1]],[[2,2,1,0],[2,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,0],[2,0,2,2],[2,3,4,2],[0,2,1,0]],[[1,2,1,0],[2,0,2,2],[2,4,3,2],[0,2,1,0]],[[1,2,1,0],[2,0,2,2],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,0,2],[0,2,3,3],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[0,2,3,2],[1,3,2,1]],[[1,1,1,1],[1,3,0,2],[0,2,3,2],[1,2,3,1]],[[1,1,1,1],[1,3,0,2],[0,2,3,2],[1,2,2,2]],[[1,1,1,1],[1,3,0,2],[0,3,3,3],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[0,3,3,2],[1,1,3,1]],[[1,1,1,1],[1,3,0,2],[0,3,3,2],[1,1,2,2]],[[1,1,1,2],[1,3,0,2],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,3],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,0,2],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,0,2],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[1,3,0,2],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,0,2],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,0,2],[1,2,3,1],[1,2,2,2]],[[1,1,1,1],[1,3,0,2],[1,2,3,3],[0,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,2,3,2],[0,2,3,1]],[[1,1,1,1],[1,3,0,2],[1,2,3,2],[0,2,2,2]],[[1,1,1,2],[1,3,0,2],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,0,3],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,0,2],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,0,2],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,0,2],[1,2,3,2],[1,2,1,2]],[[1,1,1,2],[1,3,0,2],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,0,3],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,0,2],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,0,2],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,0,2],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,0,2],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,0,2],[1,2,3,2],[1,2,3,0]],[[1,1,1,2],[1,3,0,2],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,4,0,2],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,3],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[1,3,0,2],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[1,4,0,2],[1,3,2,1],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[1,3,0,2],[1,3,2,1],[1,2,2,2]],[[1,1,1,2],[1,3,0,2],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[1,3,0,3],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[1,3,0,2],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[1,4,0,2],[1,3,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,0,2],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,0,2],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[1,3,0,2],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[1,3,0,2],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[1,4,0,2],[1,3,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[1,4,0,2],[1,3,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,0,2],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,0,2],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,1],[1,3,1,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,3],[0,1,2,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,2],[0,1,3,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,2],[0,1,2,2]],[[1,1,1,2],[1,3,0,2],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,4,0,2],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,0,3],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,0,2],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,0,2],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,2],[1,1,1,2]],[[1,1,1,2],[1,3,0,2],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,4,0,2],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,0,3],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,0,2],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,0,2],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[1,3,0,2],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[1,3,0,2],[1,3,3,2],[1,1,3,0]],[[1,1,1,2],[1,3,0,2],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,4,0,2],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,0,3],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,0,2],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,0,2],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[1,3,0,2],[1,3,3,2],[1,2,0,2]],[[1,1,1,2],[1,3,0,2],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,4,0,2],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,0,3],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,0,2],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,0,2],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[1,3,0,2],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[1,3,0,2],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[1,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,2,3],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[3,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,3,1,0],[2,0,2,2],[2,3,3,2],[0,2,1,0]],[[2,2,1,0],[2,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[0,2,0,2]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[0,3,0,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,3],[0,2,0,1]],[[1,2,1,0],[2,0,2,2],[2,3,4,2],[0,2,0,1]],[[1,2,1,0],[2,0,2,2],[2,4,3,2],[0,2,0,1]],[[1,2,1,0],[2,0,2,2],[3,3,3,2],[0,2,0,1]],[[1,1,1,2],[1,3,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,3],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,0,2],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,0,2],[2,1,2,2],[1,2,2,2]],[[1,1,1,1],[1,3,0,2],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,0,2],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,0,2],[2,1,3,1],[1,2,2,2]],[[1,1,1,2],[1,3,0,2],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,0,3],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,0,2],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,0,2],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,0,2],[2,1,3,2],[1,2,1,2]],[[1,1,1,2],[1,3,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,0,3],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,0,2],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,0,2],[2,1,3,2],[1,2,3,0]],[[1,1,1,2],[1,3,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,3],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[1,3,0,2],[2,2,1,2],[1,2,2,2]],[[1,1,1,1],[1,3,0,2],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[1,3,0,2],[2,2,2,1],[1,2,2,2]],[[1,1,1,2],[1,3,0,2],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[1,3,0,3],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[1,3,0,2],[2,2,2,2],[0,2,2,2]],[[1,1,1,1],[1,3,0,2],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[1,3,0,2],[2,2,2,2],[1,2,3,0]],[[1,1,1,1],[1,3,0,2],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[1,3,0,2],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[1,3,0,2],[2,2,3,1],[0,2,2,2]],[[1,1,1,1],[1,3,0,2],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,0,2],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[1,3,0,2],[2,2,3,1],[1,3,1,1]],[[1,1,1,2],[1,3,0,2],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,0,3],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,0,2],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[1,3,0,2],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[1,3,0,2],[2,2,3,2],[0,2,1,2]],[[1,1,1,2],[1,3,0,2],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,0,3],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[1,3,0,2],[2,2,3,2],[0,2,3,0]],[[1,1,1,1],[1,3,0,2],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,0,2],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[1,3,0,2],[2,2,3,2],[1,3,0,1]],[[1,1,1,1],[1,3,0,2],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,0,2],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[1,3,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,2,3],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[3,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,3,1,0],[2,0,2,2],[2,3,3,2],[0,2,0,1]],[[2,2,1,0],[2,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,0,2],[3,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,0,2],[2,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,0,2],[1,3,2,1]],[[1,1,1,1],[1,3,0,2],[3,3,1,1],[1,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,1,1],[2,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,1,1],[1,3,2,1]],[[1,1,1,2],[1,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,4,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,0,3],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,0,2],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[1,3,0,2],[2,3,1,2],[0,2,2,2]],[[1,1,1,1],[1,4,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,1,2],[2,1,2,1]],[[1,1,1,1],[1,3,0,2],[3,3,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,1,2],[2,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,1,2],[1,3,2,0]],[[1,1,1,1],[1,4,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[1,3,0,2],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[1,3,0,2],[2,3,2,1],[0,2,2,2]],[[1,1,1,1],[1,4,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,2,1],[2,1,2,1]],[[1,1,1,2],[1,3,0,2],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[1,3,0,3],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[1,3,0,2],[2,3,2,2],[0,1,2,2]],[[1,1,1,1],[1,4,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,0,2],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,2,2],[0,2,3,0]],[[1,1,1,2],[1,3,0,2],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[1,3,0,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[1,3,0,2],[2,3,2,2],[1,0,2,2]],[[1,1,1,1],[1,4,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,0,2],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,0,2],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[0,1,3,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,3],[0,1,2,0]],[[1,2,1,0],[2,0,2,2],[2,3,4,2],[0,1,2,0]],[[1,2,1,0],[2,0,2,2],[2,4,3,2],[0,1,2,0]],[[1,2,1,0],[2,0,2,2],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,4,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,0,2],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,0,2],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,1],[0,1,2,2]],[[1,1,1,1],[1,4,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,0,2],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,0,2],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,0,2],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,1],[0,3,1,1]],[[1,1,1,1],[1,4,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,0,2],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,0,2],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,1],[1,0,2,2]],[[1,1,1,1],[1,4,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,0,2],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,0,2],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,0,2],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,1],[2,1,1,1]],[[1,1,1,1],[1,3,0,2],[3,3,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,0,2],[2,4,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[2,0,2,3],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[3,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,3,1,0],[2,0,2,2],[2,3,3,2],[0,1,2,0]],[[2,2,1,0],[2,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[0,1,1,2]],[[1,2,1,0],[2,0,2,2],[2,3,3,3],[0,1,1,1]],[[1,2,1,0],[2,0,2,2],[2,3,4,2],[0,1,1,1]],[[1,2,1,0],[2,0,2,2],[2,4,3,2],[0,1,1,1]],[[1,1,1,2],[1,3,0,2],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,0,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[0,0,2,2]],[[1,1,1,2],[1,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,4,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,0,3],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,0,2],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,0,2],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,0,2],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[0,1,1,2]],[[1,1,1,2],[1,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,4,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,0,3],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,0,2],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,0,2],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[0,1,3,0]],[[1,1,1,2],[1,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,4,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,0,3],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,0,2],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,0,2],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,0,2],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[0,2,0,2]],[[1,1,1,2],[1,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,4,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,0,3],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,0,2],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,0,2],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,0,2],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[1,3,0,2],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,0,2,2],[3,3,3,2],[0,1,1,1]],[[1,2,1,0],[2,0,2,3],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[3,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,3,1,0],[2,0,2,2],[2,3,3,2],[0,1,1,1]],[[2,2,1,0],[2,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,2],[0,0,2,2]],[[1,2,1,0],[2,0,2,2],[2,3,3,3],[0,0,2,1]],[[1,2,1,0],[2,0,2,2],[2,3,4,2],[0,0,2,1]],[[1,2,1,0],[2,0,2,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,2],[1,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,4,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,0,3],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,0,2],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,0,2],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,0,2],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[1,0,1,2]],[[1,1,1,2],[1,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,4,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,0,3],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,0,2],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,0,2],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[1,0,3,0]],[[1,1,1,2],[1,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,4,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,0,3],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,0,2],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,0,2],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,0,2],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[1,1,0,2]],[[1,1,1,2],[1,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,4,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,0,3],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,0,2],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,0,2],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,0,2],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[1,3,0,2],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[2,1,1,0]],[[1,1,1,1],[1,4,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[1,3,0,2],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[1,3,0,2],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[1,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,1],[2,2,1,0]],[[1,2,1,0],[2,0,2,2],[3,3,3,1],[1,2,1,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[2,0,2,2],[2,3,4,1],[1,1,1,1]],[[1,2,1,0],[2,0,2,2],[2,4,3,1],[1,1,1,1]],[[1,2,1,0],[2,0,2,2],[3,3,3,1],[1,1,1,1]],[[1,2,1,0],[3,0,2,2],[2,3,3,1],[1,1,1,1]],[[1,3,1,0],[2,0,2,2],[2,3,3,1],[1,1,1,1]],[[2,2,1,0],[2,0,2,2],[2,3,3,1],[1,1,1,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,0],[2,0,2,2],[2,3,3,1],[1,0,3,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,1],[2,0,2,1]],[[1,2,1,0],[2,0,2,2],[2,3,4,1],[1,0,2,1]],[[1,2,1,0],[2,0,2,2],[2,4,3,1],[1,0,2,1]],[[1,2,1,0],[2,0,2,2],[3,3,3,1],[1,0,2,1]],[[1,2,1,0],[3,0,2,2],[2,3,3,1],[1,0,2,1]],[[1,3,1,0],[2,0,2,2],[2,3,3,1],[1,0,2,1]],[[2,2,1,0],[2,0,2,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,1,0],[1,4,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,1,0],[1,3,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,1,0],[1,3,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,1,0],[1,3,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,1,0],[1,3,3,1],[1,2,2,2]],[[1,1,1,1],[1,3,1,0],[1,4,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,1,0],[1,3,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,1,0],[1,3,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,1,0],[1,3,3,2],[1,2,3,0]],[[1,1,1,1],[1,3,1,0],[3,2,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,1,0],[2,2,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,1,0],[2,2,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,1,0],[2,2,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,1,0],[2,2,3,1],[1,2,2,2]],[[1,1,1,1],[1,3,1,0],[3,2,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,1,0],[2,2,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,1,0],[2,2,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,1,0],[2,2,3,2],[1,2,3,0]],[[1,1,1,1],[1,3,1,0],[3,3,3,1],[0,2,2,1]],[[1,1,1,1],[1,3,1,0],[2,4,3,1],[0,2,2,1]],[[1,1,1,1],[1,3,1,0],[2,3,3,1],[0,3,2,1]],[[1,1,1,1],[1,3,1,0],[2,3,3,1],[0,2,3,1]],[[1,1,1,1],[1,3,1,0],[2,3,3,1],[0,2,2,2]],[[1,1,1,1],[1,3,1,0],[3,3,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,1,0],[2,4,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,1,0],[2,3,3,1],[2,1,2,1]],[[1,1,1,1],[1,3,1,0],[3,3,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,1,0],[2,4,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,1,0],[2,3,3,2],[0,3,2,0]],[[1,1,1,1],[1,3,1,0],[2,3,3,2],[0,2,3,0]],[[1,1,1,1],[1,3,1,0],[3,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,1,0],[2,4,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,1,0],[2,3,3,2],[2,1,2,0]],[[1,2,1,0],[2,0,2,2],[2,3,3,1],[0,3,1,1]],[[1,2,1,0],[2,0,2,2],[2,3,4,1],[0,2,1,1]],[[1,2,1,0],[2,0,2,2],[2,4,3,1],[0,2,1,1]],[[1,2,1,0],[2,0,2,2],[3,3,3,1],[0,2,1,1]],[[1,2,1,0],[3,0,2,2],[2,3,3,1],[0,2,1,1]],[[1,3,1,0],[2,0,2,2],[2,3,3,1],[0,2,1,1]],[[2,2,1,0],[2,0,2,2],[2,3,3,1],[0,2,1,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,1],[0,1,2,2]],[[1,2,1,0],[2,0,2,2],[2,3,3,1],[0,1,3,1]],[[1,2,1,0],[2,0,2,2],[2,3,4,1],[0,1,2,1]],[[1,2,1,0],[2,0,2,2],[2,4,3,1],[0,1,2,1]],[[1,2,1,0],[2,0,2,2],[3,3,3,1],[0,1,2,1]],[[1,2,1,0],[3,0,2,2],[2,3,3,1],[0,1,2,1]],[[1,3,1,0],[2,0,2,2],[2,3,3,1],[0,1,2,1]],[[2,2,1,0],[2,0,2,2],[2,3,3,1],[0,1,2,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,0],[1,3,1,1]],[[1,2,1,0],[2,0,2,2],[2,3,3,0],[2,2,1,1]],[[1,2,1,0],[2,0,2,2],[3,3,3,0],[1,2,1,1]],[[1,1,1,2],[1,3,1,2],[0,2,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,1,3],[0,2,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,2,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,2,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,2,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,1,2],[0,2,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,1,2],[0,2,2,2],[1,2,2,2]],[[1,1,1,1],[1,3,1,2],[0,2,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,2,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,2,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,1,2],[0,2,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,1,2],[0,2,3,1],[1,2,2,2]],[[1,1,1,2],[1,3,1,2],[0,2,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,1,3],[0,2,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,1,2],[0,2,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,1,2],[0,2,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,1,2],[0,2,3,2],[1,2,1,2]],[[1,1,1,2],[1,3,1,2],[0,2,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,1,3],[0,2,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,1,2],[0,2,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,1,2],[0,2,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,1,2],[0,2,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,1,2],[0,2,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,1,2],[0,2,3,2],[1,2,3,0]],[[1,1,1,2],[1,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,4,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,1,3],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,4,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,1,3],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,1,2],[2,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,1,2],[1,3,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,1,2],[1,2,3,1]],[[1,1,1,1],[1,3,1,2],[0,3,1,2],[1,2,2,2]],[[1,1,1,1],[1,4,1,2],[0,3,2,1],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,4,2,1],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,2,1],[2,2,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,2,1],[1,3,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,2,1],[1,2,3,1]],[[1,1,1,1],[1,3,1,2],[0,3,2,1],[1,2,2,2]],[[1,1,1,2],[1,3,1,2],[0,3,2,2],[1,1,2,1]],[[1,1,1,1],[1,3,1,3],[0,3,2,2],[1,1,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,2,3],[1,1,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,2,2],[1,1,3,1]],[[1,1,1,1],[1,3,1,2],[0,3,2,2],[1,1,2,2]],[[1,1,1,1],[1,4,1,2],[0,3,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,1,2],[0,4,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,1,2],[0,3,2,2],[2,2,2,0]],[[1,1,1,1],[1,3,1,2],[0,3,2,2],[1,3,2,0]],[[1,1,1,1],[1,3,1,2],[0,3,2,2],[1,2,3,0]],[[1,1,1,1],[1,4,1,2],[0,3,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,1,2],[0,4,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,4,1],[1,1,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,1],[1,1,3,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,1],[1,1,2,2]],[[1,1,1,1],[1,4,1,2],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,1,2],[0,4,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,1,2],[0,3,4,1],[1,2,1,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,1],[2,2,1,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,1],[1,3,1,1]],[[1,1,1,2],[1,3,1,2],[0,3,3,2],[1,0,2,1]],[[1,1,1,1],[1,3,1,3],[0,3,3,2],[1,0,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,4,2],[1,0,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,3],[1,0,2,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,2],[1,0,2,2]],[[1,1,1,2],[1,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,4,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,1,3],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,1,2],[0,4,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,1,2],[0,3,4,2],[1,1,1,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,3],[1,1,1,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,2],[1,1,1,2]],[[1,1,1,2],[1,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,4,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,1,3],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,1,2],[0,4,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,1,2],[0,3,4,2],[1,1,2,0]],[[1,1,1,1],[1,3,1,2],[0,3,3,3],[1,1,2,0]],[[1,1,1,1],[1,3,1,2],[0,3,3,2],[1,1,3,0]],[[1,1,1,2],[1,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,4,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,1,3],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,1,2],[0,4,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,1,2],[0,3,4,2],[1,2,0,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,3],[1,2,0,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,2],[2,2,0,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,2],[1,3,0,1]],[[1,1,1,1],[1,3,1,2],[0,3,3,2],[1,2,0,2]],[[1,1,1,2],[1,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,4,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,1,3],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,1,2],[0,4,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,1,2],[0,3,4,2],[1,2,1,0]],[[1,1,1,1],[1,3,1,2],[0,3,3,3],[1,2,1,0]],[[1,1,1,1],[1,3,1,2],[0,3,3,2],[2,2,1,0]],[[1,1,1,1],[1,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,0,2,2],[2,4,2,2],[1,1,2,0]],[[1,2,1,0],[2,0,2,2],[3,3,2,2],[1,1,2,0]],[[1,2,1,0],[3,0,2,2],[2,3,2,2],[1,1,2,0]],[[1,3,1,0],[2,0,2,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,2],[1,3,1,2],[1,2,2,2],[0,2,2,1]],[[1,1,1,1],[1,3,1,3],[1,2,2,2],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,2,2,3],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,2,2,2],[0,3,2,1]],[[1,1,1,1],[1,3,1,2],[1,2,2,2],[0,2,3,1]],[[1,1,1,1],[1,3,1,2],[1,2,2,2],[0,2,2,2]],[[1,1,1,1],[1,3,1,2],[1,2,4,1],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,2,3,1],[0,3,2,1]],[[1,1,1,1],[1,3,1,2],[1,2,3,1],[0,2,3,1]],[[1,1,1,1],[1,3,1,2],[1,2,3,1],[0,2,2,2]],[[1,1,1,2],[1,3,1,2],[1,2,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,1,3],[1,2,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,1,2],[1,2,4,2],[0,2,1,1]],[[1,1,1,1],[1,3,1,2],[1,2,3,3],[0,2,1,1]],[[1,1,1,1],[1,3,1,2],[1,2,3,2],[0,2,1,2]],[[1,1,1,2],[1,3,1,2],[1,2,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,1,3],[1,2,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,1,2],[1,2,4,2],[0,2,2,0]],[[1,1,1,1],[1,3,1,2],[1,2,3,3],[0,2,2,0]],[[1,1,1,1],[1,3,1,2],[1,2,3,2],[0,3,2,0]],[[1,1,1,1],[1,3,1,2],[1,2,3,2],[0,2,3,0]],[[2,2,1,0],[2,0,2,2],[2,3,2,2],[1,1,2,0]],[[1,2,1,0],[2,0,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,0],[2,0,2,2],[2,3,2,2],[1,0,3,1]],[[1,2,1,0],[2,0,2,2],[2,3,2,3],[1,0,2,1]],[[1,2,1,0],[2,0,2,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,2],[1,3,1,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,4,1,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,1,3],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,4,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,0,3],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,0,2],[2,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,0,2],[1,3,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,0,2],[1,2,3,1]],[[1,1,1,1],[1,3,1,2],[1,3,0,2],[1,2,2,2]],[[1,1,1,2],[1,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,4,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,1,3],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,4,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,1,3],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,1,2],[0,3,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,1,2],[0,2,3,1]],[[1,1,1,1],[1,3,1,2],[1,3,1,2],[0,2,2,2]],[[1,1,1,1],[1,4,1,2],[1,3,2,1],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,4,2,1],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,2,1],[0,3,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,2,1],[0,2,3,1]],[[1,1,1,1],[1,3,1,2],[1,3,2,1],[0,2,2,2]],[[1,1,1,2],[1,3,1,2],[1,3,2,2],[0,1,2,1]],[[1,1,1,1],[1,3,1,3],[1,3,2,2],[0,1,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,2,3],[0,1,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,2,2],[0,1,3,1]],[[1,1,1,1],[1,3,1,2],[1,3,2,2],[0,1,2,2]],[[1,1,1,1],[1,4,1,2],[1,3,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,1,2],[1,4,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,1,2],[1,3,2,2],[0,3,2,0]],[[1,1,1,1],[1,3,1,2],[1,3,2,2],[0,2,3,0]],[[1,1,1,2],[1,3,1,2],[1,3,2,2],[1,0,2,1]],[[1,1,1,1],[1,3,1,3],[1,3,2,2],[1,0,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,2,3],[1,0,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,2,2],[1,0,3,1]],[[1,1,1,1],[1,3,1,2],[1,3,2,2],[1,0,2,2]],[[1,2,1,0],[2,0,2,2],[2,3,2,2],[0,2,3,0]],[[1,2,1,0],[2,0,2,2],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[1,4,1,2],[1,3,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,1,2],[1,4,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,4,1],[0,1,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,1],[0,1,3,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,1],[0,1,2,2]],[[1,1,1,1],[1,4,1,2],[1,3,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,1,2],[1,4,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,1,2],[1,3,4,1],[0,2,1,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,1],[0,3,1,1]],[[1,1,1,1],[1,4,1,2],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,1,2],[1,4,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,4,1],[1,0,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,1],[1,0,3,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,1],[1,0,2,2]],[[1,2,1,0],[2,0,2,2],[2,4,2,2],[0,2,2,0]],[[1,2,1,0],[2,0,2,2],[3,3,2,2],[0,2,2,0]],[[1,2,1,0],[3,0,2,2],[2,3,2,2],[0,2,2,0]],[[1,3,1,0],[2,0,2,2],[2,3,2,2],[0,2,2,0]],[[2,2,1,0],[2,0,2,2],[2,3,2,2],[0,2,2,0]],[[1,2,1,0],[2,0,2,2],[2,3,2,2],[0,1,2,2]],[[1,2,1,0],[2,0,2,2],[2,3,2,2],[0,1,3,1]],[[1,1,1,2],[1,3,1,2],[1,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,1,3],[1,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,4,2],[0,0,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,2],[0,0,2,2]],[[1,1,1,2],[1,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,4,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,1,3],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,1,2],[1,4,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,1,2],[1,3,4,2],[0,1,1,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,2],[0,1,1,2]],[[1,1,1,2],[1,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,4,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,1,3],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,1,2],[1,4,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,1,2],[1,3,4,2],[0,1,2,0]],[[1,1,1,1],[1,3,1,2],[1,3,3,3],[0,1,2,0]],[[1,1,1,1],[1,3,1,2],[1,3,3,2],[0,1,3,0]],[[1,1,1,2],[1,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,4,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,1,3],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,1,2],[1,4,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,1,2],[1,3,4,2],[0,2,0,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,3],[0,2,0,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,2],[0,3,0,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,2],[0,2,0,2]],[[1,1,1,2],[1,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,4,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,1,3],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,1,2],[1,4,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,1,2],[1,3,4,2],[0,2,1,0]],[[1,1,1,1],[1,3,1,2],[1,3,3,3],[0,2,1,0]],[[1,1,1,1],[1,3,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,0,2,2],[2,3,2,3],[0,1,2,1]],[[1,2,1,0],[2,0,2,3],[2,3,2,2],[0,1,2,1]],[[1,1,1,2],[1,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,4,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,1,3],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,1,2],[1,4,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,1,2],[1,3,4,2],[1,0,1,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,3],[1,0,1,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,2],[1,0,1,2]],[[1,1,1,2],[1,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,4,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,1,3],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,1,2],[1,4,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,1,2],[1,3,4,2],[1,0,2,0]],[[1,1,1,1],[1,3,1,2],[1,3,3,3],[1,0,2,0]],[[1,1,1,1],[1,3,1,2],[1,3,3,2],[1,0,3,0]],[[1,1,1,2],[1,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,4,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,1,3],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,1,2],[1,4,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,1,2],[1,3,4,2],[1,1,0,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,3],[1,1,0,1]],[[1,1,1,1],[1,3,1,2],[1,3,3,2],[1,1,0,2]],[[1,1,1,2],[1,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,4,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,1,3],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,1,2],[1,4,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,1,2],[1,3,4,2],[1,1,1,0]],[[1,1,1,1],[1,3,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[2,0,2,2],[2,3,2,1],[1,3,2,0]],[[1,2,1,0],[2,0,2,2],[2,3,2,1],[2,2,2,0]],[[1,2,1,0],[2,0,2,2],[3,3,2,1],[1,2,2,0]],[[1,2,1,0],[2,0,2,2],[2,3,2,1],[2,1,2,1]],[[1,2,1,0],[2,0,2,2],[2,4,2,1],[1,1,2,1]],[[1,2,1,0],[2,0,2,2],[3,3,2,1],[1,1,2,1]],[[1,2,1,0],[3,0,2,2],[2,3,2,1],[1,1,2,1]],[[1,3,1,0],[2,0,2,2],[2,3,2,1],[1,1,2,1]],[[2,2,1,0],[2,0,2,2],[2,3,2,1],[1,1,2,1]],[[1,2,1,0],[2,0,2,2],[2,3,2,1],[0,2,2,2]],[[1,2,1,0],[2,0,2,2],[2,3,2,1],[0,2,3,1]],[[1,2,1,0],[2,0,2,2],[2,3,2,1],[0,3,2,1]],[[1,2,1,0],[2,0,2,2],[2,4,2,1],[0,2,2,1]],[[1,2,1,0],[2,0,2,2],[3,3,2,1],[0,2,2,1]],[[1,2,1,0],[3,0,2,2],[2,3,2,1],[0,2,2,1]],[[1,3,1,0],[2,0,2,2],[2,3,2,1],[0,2,2,1]],[[2,2,1,0],[2,0,2,2],[2,3,2,1],[0,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,3,2,0],[1,2,3,1]],[[1,2,1,0],[2,0,2,2],[2,3,2,0],[1,3,2,1]],[[1,2,1,0],[2,0,2,2],[2,3,2,0],[2,2,2,1]],[[1,2,1,0],[2,0,2,2],[3,3,2,0],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,3,1,2],[2,1,2,1]],[[1,2,1,0],[2,0,2,2],[2,4,1,2],[1,1,2,1]],[[1,2,1,0],[2,0,2,2],[3,3,1,2],[1,1,2,1]],[[1,2,1,0],[3,0,2,2],[2,3,1,2],[1,1,2,1]],[[1,3,1,0],[2,0,2,2],[2,3,1,2],[1,1,2,1]],[[2,2,1,0],[2,0,2,2],[2,3,1,2],[1,1,2,1]],[[1,2,1,0],[2,0,2,2],[2,3,1,2],[0,2,2,2]],[[1,2,1,0],[2,0,2,2],[2,3,1,2],[0,2,3,1]],[[1,2,1,0],[2,0,2,2],[2,3,1,2],[0,3,2,1]],[[1,2,1,0],[2,0,2,2],[2,3,1,3],[0,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,4,1,2],[0,2,2,1]],[[1,1,1,2],[1,3,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,1,3],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[3,2,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[2,2,0,3],[1,2,2,1]],[[1,1,1,1],[1,3,1,2],[2,2,0,2],[2,2,2,1]],[[1,1,1,1],[1,3,1,2],[2,2,0,2],[1,3,2,1]],[[1,1,1,1],[1,3,1,2],[2,2,0,2],[1,2,3,1]],[[1,1,1,1],[1,3,1,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,0],[2,0,2,2],[3,3,1,2],[0,2,2,1]],[[1,2,1,0],[2,0,2,3],[2,3,1,2],[0,2,2,1]],[[1,2,1,0],[3,0,2,2],[2,3,1,2],[0,2,2,1]],[[1,3,1,0],[2,0,2,2],[2,3,1,2],[0,2,2,1]],[[2,2,1,0],[2,0,2,2],[2,3,1,2],[0,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,2,2],[2,2,3,2],[2,2,1,0]],[[1,2,1,0],[2,0,2,2],[3,2,3,2],[1,2,1,0]],[[1,2,1,0],[3,0,2,2],[2,2,3,2],[1,2,1,0]],[[1,3,1,0],[2,0,2,2],[2,2,3,2],[1,2,1,0]],[[2,2,1,0],[2,0,2,2],[2,2,3,2],[1,2,1,0]],[[1,2,1,0],[2,0,2,2],[2,2,3,2],[1,3,0,1]],[[1,2,1,0],[2,0,2,2],[2,2,3,2],[2,2,0,1]],[[1,2,1,0],[2,0,2,2],[3,2,3,2],[1,2,0,1]],[[1,2,1,0],[3,0,2,2],[2,2,3,2],[1,2,0,1]],[[1,3,1,0],[2,0,2,2],[2,2,3,2],[1,2,0,1]],[[2,2,1,0],[2,0,2,2],[2,2,3,2],[1,2,0,1]],[[1,2,1,0],[2,0,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,0],[2,0,2,2],[2,2,3,2],[0,3,2,0]],[[1,2,1,0],[2,0,2,2],[2,2,3,3],[0,2,2,0]],[[1,1,1,2],[1,3,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,4,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,1,3],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[3,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[2,4,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[2,3,0,3],[0,2,2,1]],[[1,1,1,1],[1,3,1,2],[2,3,0,2],[0,3,2,1]],[[1,1,1,1],[1,3,1,2],[2,3,0,2],[0,2,3,1]],[[1,1,1,1],[1,3,1,2],[2,3,0,2],[0,2,2,2]],[[1,1,1,1],[1,4,1,2],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,1,2],[3,3,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,1,2],[2,4,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,0],[2,0,2,2],[2,2,4,2],[0,2,2,0]],[[1,2,1,0],[2,0,2,3],[2,2,3,2],[0,2,2,0]],[[1,2,1,0],[2,0,2,2],[2,2,3,2],[0,2,1,2]],[[1,2,1,0],[2,0,2,2],[2,2,3,3],[0,2,1,1]],[[1,2,1,0],[2,0,2,2],[2,2,4,2],[0,2,1,1]],[[1,2,1,0],[2,0,2,3],[2,2,3,2],[0,2,1,1]],[[1,2,1,0],[2,0,2,2],[2,2,3,1],[1,3,1,1]],[[1,2,1,0],[2,0,2,2],[2,2,3,1],[2,2,1,1]],[[1,2,1,0],[2,0,2,2],[3,2,3,1],[1,2,1,1]],[[1,2,1,0],[3,0,2,2],[2,2,3,1],[1,2,1,1]],[[1,3,1,0],[2,0,2,2],[2,2,3,1],[1,2,1,1]],[[2,2,1,0],[2,0,2,2],[2,2,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,2,2],[2,2,3,1],[0,2,2,2]],[[1,2,1,0],[2,0,2,2],[2,2,3,1],[0,2,3,1]],[[1,2,1,0],[2,0,2,2],[2,2,3,1],[0,3,2,1]],[[1,2,1,0],[2,0,2,2],[2,2,4,1],[0,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,2,2,2],[1,2,3,0]],[[1,2,1,0],[2,0,2,2],[2,2,2,2],[1,3,2,0]],[[1,2,1,0],[2,0,2,2],[2,2,2,2],[2,2,2,0]],[[1,2,1,0],[2,0,2,2],[3,2,2,2],[1,2,2,0]],[[1,2,1,0],[3,0,2,2],[2,2,2,2],[1,2,2,0]],[[1,3,1,0],[2,0,2,2],[2,2,2,2],[1,2,2,0]],[[2,2,1,0],[2,0,2,2],[2,2,2,2],[1,2,2,0]],[[1,2,1,0],[2,0,2,2],[2,2,2,2],[0,2,2,2]],[[1,2,1,0],[2,0,2,2],[2,2,2,2],[0,2,3,1]],[[1,2,1,0],[2,0,2,2],[2,2,2,2],[0,3,2,1]],[[1,2,1,0],[2,0,2,2],[2,2,2,3],[0,2,2,1]],[[1,2,1,0],[2,0,2,3],[2,2,2,2],[0,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,2,2,1],[1,2,2,2]],[[1,2,1,0],[2,0,2,2],[2,2,2,1],[1,2,3,1]],[[1,2,1,0],[2,0,2,2],[2,2,2,1],[1,3,2,1]],[[1,2,1,0],[2,0,2,2],[2,2,2,1],[2,2,2,1]],[[1,2,1,0],[2,0,2,2],[3,2,2,1],[1,2,2,1]],[[1,2,1,0],[3,0,2,2],[2,2,2,1],[1,2,2,1]],[[1,3,1,0],[2,0,2,2],[2,2,2,1],[1,2,2,1]],[[2,2,1,0],[2,0,2,2],[2,2,2,1],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,2,1,2],[1,2,2,2]],[[1,2,1,0],[2,0,2,2],[2,2,1,2],[1,2,3,1]],[[1,2,1,0],[2,0,2,2],[2,2,1,2],[1,3,2,1]],[[1,2,1,0],[2,0,2,2],[2,2,1,2],[2,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,2,1,3],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[3,2,1,2],[1,2,2,1]],[[1,2,1,0],[2,0,2,3],[2,2,1,2],[1,2,2,1]],[[1,2,1,0],[3,0,2,2],[2,2,1,2],[1,2,2,1]],[[1,3,1,0],[2,0,2,2],[2,2,1,2],[1,2,2,1]],[[2,2,1,0],[2,0,2,2],[2,2,1,2],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,1,3,2],[1,2,3,0]],[[1,2,1,0],[2,0,2,2],[2,1,3,2],[1,3,2,0]],[[1,2,1,0],[2,0,2,2],[2,1,3,2],[2,2,2,0]],[[1,2,1,0],[2,0,2,2],[2,1,3,3],[1,2,2,0]],[[1,2,1,0],[2,0,2,2],[2,1,4,2],[1,2,2,0]],[[1,2,1,0],[2,0,2,2],[3,1,3,2],[1,2,2,0]],[[1,2,1,0],[2,0,2,3],[2,1,3,2],[1,2,2,0]],[[1,2,1,0],[3,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,3,1,0],[2,0,2,2],[2,1,3,2],[1,2,2,0]],[[2,2,1,0],[2,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,2,1,0],[2,0,2,2],[2,1,3,2],[1,2,1,2]],[[1,2,1,0],[2,0,2,2],[2,1,3,3],[1,2,1,1]],[[1,2,1,0],[2,0,2,2],[2,1,4,2],[1,2,1,1]],[[1,2,1,0],[2,0,2,3],[2,1,3,2],[1,2,1,1]],[[1,2,1,0],[2,0,2,2],[2,1,3,2],[0,2,2,2]],[[1,2,1,0],[2,0,2,2],[2,1,3,2],[0,2,3,1]],[[1,2,1,0],[2,0,2,2],[2,1,3,3],[0,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,1,3,1],[1,2,2,2]],[[1,2,1,0],[2,0,2,2],[2,1,3,1],[1,2,3,1]],[[1,2,1,0],[2,0,2,2],[2,1,3,1],[1,3,2,1]],[[1,2,1,0],[2,0,2,2],[2,1,3,1],[2,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,1,4,1],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[3,1,3,1],[1,2,2,1]],[[1,2,1,0],[3,0,2,2],[2,1,3,1],[1,2,2,1]],[[1,3,1,0],[2,0,2,2],[2,1,3,1],[1,2,2,1]],[[2,2,1,0],[2,0,2,2],[2,1,3,1],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,1,2,2],[1,2,2,2]],[[1,2,1,0],[2,0,2,2],[2,1,2,2],[1,2,3,1]],[[1,2,1,0],[2,0,2,2],[2,1,2,2],[1,3,2,1]],[[1,2,1,0],[2,0,2,2],[2,1,2,2],[2,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,1,2,3],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[3,1,2,2],[1,2,2,1]],[[1,2,1,0],[2,0,2,3],[2,1,2,2],[1,2,2,1]],[[1,2,1,0],[3,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,3,1,0],[2,0,2,2],[2,1,2,2],[1,2,2,1]],[[2,2,1,0],[2,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[2,0,3,2],[1,2,2,2]],[[1,2,1,0],[2,0,2,2],[2,0,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,2,2],[2,0,3,3],[1,2,2,1]],[[1,2,1,0],[2,0,2,3],[2,0,3,2],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,2,2],[1,3,3,2],[2,2,1,0]],[[1,2,1,0],[2,0,2,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,0],[2,0,2,2],[1,3,4,2],[1,2,1,0]],[[1,2,1,0],[2,0,2,2],[1,4,3,2],[1,2,1,0]],[[1,2,1,0],[2,0,2,3],[1,3,3,2],[1,2,1,0]],[[1,2,1,0],[2,0,2,2],[1,3,3,2],[1,2,0,2]],[[1,2,1,0],[2,0,2,2],[1,3,3,2],[1,3,0,1]],[[1,2,1,0],[2,0,2,2],[1,3,3,2],[2,2,0,1]],[[1,2,1,0],[2,0,2,2],[1,3,3,3],[1,2,0,1]],[[1,2,1,0],[2,0,2,2],[1,3,4,2],[1,2,0,1]],[[1,2,1,0],[2,0,2,2],[1,4,3,2],[1,2,0,1]],[[1,2,1,0],[2,0,2,3],[1,3,3,2],[1,2,0,1]],[[1,2,1,0],[2,0,2,2],[1,3,3,2],[1,1,3,0]],[[1,2,1,0],[2,0,2,2],[1,3,3,3],[1,1,2,0]],[[1,2,1,0],[2,0,2,2],[1,3,4,2],[1,1,2,0]],[[1,2,1,0],[2,0,2,2],[1,4,3,2],[1,1,2,0]],[[1,2,1,0],[2,0,2,3],[1,3,3,2],[1,1,2,0]],[[1,2,1,0],[2,0,2,2],[1,3,3,2],[1,1,1,2]],[[1,2,1,0],[2,0,2,2],[1,3,3,3],[1,1,1,1]],[[1,2,1,0],[2,0,2,2],[1,3,4,2],[1,1,1,1]],[[1,2,1,0],[2,0,2,2],[1,4,3,2],[1,1,1,1]],[[1,2,1,0],[2,0,2,3],[1,3,3,2],[1,1,1,1]],[[1,2,1,0],[2,0,2,2],[1,3,3,2],[1,0,2,2]],[[1,2,1,0],[2,0,2,2],[1,3,3,3],[1,0,2,1]],[[1,2,1,0],[2,0,2,2],[1,3,4,2],[1,0,2,1]],[[1,2,1,0],[2,0,2,2],[1,3,3,1],[1,3,1,1]],[[1,2,1,0],[2,0,2,2],[1,3,3,1],[2,2,1,1]],[[1,2,1,0],[2,0,2,2],[1,3,4,1],[1,2,1,1]],[[1,2,1,0],[2,0,2,2],[1,4,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,2,2],[1,3,3,1],[1,1,2,2]],[[1,2,1,0],[2,0,2,2],[1,3,3,1],[1,1,3,1]],[[1,2,1,0],[2,0,2,2],[1,3,4,1],[1,1,2,1]],[[1,2,1,0],[2,0,2,2],[1,4,3,1],[1,1,2,1]],[[1,2,1,0],[2,0,2,2],[1,3,2,2],[1,2,3,0]],[[1,2,1,0],[2,0,2,2],[1,3,2,2],[1,3,2,0]],[[1,2,1,0],[2,0,2,2],[1,3,2,2],[2,2,2,0]],[[1,2,1,0],[2,0,2,2],[1,4,2,2],[1,2,2,0]],[[1,2,1,0],[2,0,2,2],[1,3,2,2],[1,1,2,2]],[[1,2,1,0],[2,0,2,2],[1,3,2,2],[1,1,3,1]],[[1,2,1,0],[2,0,2,2],[1,3,2,3],[1,1,2,1]],[[1,2,1,0],[2,0,2,3],[1,3,2,2],[1,1,2,1]],[[1,2,1,0],[2,0,2,2],[1,3,2,1],[1,2,2,2]],[[1,2,1,0],[2,0,2,2],[1,3,2,1],[1,2,3,1]],[[1,2,1,0],[2,0,2,2],[1,3,2,1],[1,3,2,1]],[[1,2,1,0],[2,0,2,2],[1,3,2,1],[2,2,2,1]],[[1,2,1,0],[2,0,2,2],[1,4,2,1],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[1,3,1,2],[1,2,2,2]],[[1,2,1,0],[2,0,2,2],[1,3,1,2],[1,2,3,1]],[[1,2,1,0],[2,0,2,2],[1,3,1,2],[1,3,2,1]],[[1,2,1,0],[2,0,2,2],[1,3,1,2],[2,2,2,1]],[[1,2,1,0],[2,0,2,2],[1,3,1,3],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[1,4,1,2],[1,2,2,1]],[[1,2,1,0],[2,0,2,3],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[0,2,4,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[0,2,3,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[0,2,3,2],[1,2,3,1]],[[1,1,1,1],[1,3,2,0],[0,2,3,2],[1,2,2,2]],[[1,1,1,1],[1,3,2,0],[0,3,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[0,3,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[0,3,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,2,0],[0,3,3,1],[1,2,2,2]],[[1,1,1,1],[1,3,2,0],[0,3,4,2],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[0,3,3,2],[1,1,3,1]],[[1,1,1,1],[1,3,2,0],[0,3,3,2],[1,1,2,2]],[[1,1,1,1],[1,3,2,0],[0,3,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,0],[0,3,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,0],[0,3,3,2],[1,2,3,0]],[[1,1,1,1],[1,3,2,0],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,2,0],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[1,3,2,0],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,2,0],[1,2,3,1],[1,2,2,2]],[[1,1,1,1],[1,3,2,0],[1,2,4,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,2,3,2],[0,2,3,1]],[[1,1,1,1],[1,3,2,0],[1,2,3,2],[0,2,2,2]],[[1,1,1,1],[1,3,2,0],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,2,0],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,2,0],[1,2,3,2],[1,2,1,2]],[[1,1,1,1],[1,3,2,0],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,0],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,2,0],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,2,0],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,0],[1,2,3,2],[1,2,3,0]],[[1,1,1,1],[1,4,2,0],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[1,3,2,0],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[1,4,2,0],[1,3,2,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[1,3,2,0],[1,3,2,1],[1,2,2,2]],[[1,1,1,1],[1,3,2,0],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[1,3,2,0],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[1,4,2,0],[1,3,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,0],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,0],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[1,3,2,0],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,0],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[1,4,2,0],[1,3,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,4,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,0],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,0],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,0],[1,2,3,1]],[[1,1,1,1],[1,4,2,0],[1,3,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[1,4,2,0],[1,3,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,2,0],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,2,0],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,1],[1,3,1,1]],[[1,1,1,1],[1,3,2,0],[1,3,4,2],[0,1,2,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,2],[0,1,3,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,2],[0,1,2,2]],[[1,1,1,1],[1,4,2,0],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,0],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,0],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,2],[1,1,1,2]],[[1,1,1,1],[1,4,2,0],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,0],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,0],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,0],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[1,3,2,0],[1,3,3,2],[1,1,3,0]],[[1,1,1,1],[1,4,2,0],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,0],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,0],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[1,3,2,0],[1,3,3,2],[1,2,0,2]],[[1,1,1,1],[1,4,2,0],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,0],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,0],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,0],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[1,3,2,0],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[1,3,2,0],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,2,2],[1,2,3,2],[1,2,3,0]],[[1,2,1,0],[2,0,2,2],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,0],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,2,0],[2,1,2,2],[1,2,2,2]],[[1,1,1,1],[1,3,2,0],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,2,0],[2,1,3,1],[1,2,2,2]],[[1,1,1,1],[1,3,2,0],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,2,0],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,2,0],[2,1,3,2],[1,2,1,2]],[[1,1,1,1],[1,3,2,0],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,0],[2,1,3,2],[1,2,3,0]],[[1,1,1,1],[1,3,2,0],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[1,3,2,0],[2,2,1,2],[1,2,2,2]],[[1,1,1,1],[1,3,2,0],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[1,3,2,0],[2,2,2,1],[1,2,2,2]],[[1,1,1,1],[1,3,2,0],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[1,3,2,0],[2,2,2,2],[0,2,2,2]],[[1,1,1,1],[1,3,2,0],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,0],[2,2,2,2],[1,2,3,0]],[[1,1,1,1],[1,3,2,0],[3,2,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,0],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,0],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,0],[1,2,3,1]],[[1,1,1,1],[1,3,2,0],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,1],[0,2,2,2]],[[1,1,1,1],[1,3,2,0],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,1],[1,3,1,1]],[[1,1,1,1],[1,3,2,0],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,2],[0,2,1,2]],[[1,1,1,1],[1,3,2,0],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[1,3,2,0],[2,2,3,2],[0,2,3,0]],[[1,1,1,1],[1,3,2,0],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[1,3,2,0],[2,2,3,2],[1,3,0,1]],[[1,1,1,1],[1,3,2,0],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,0],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[1,3,2,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,2,2],[1,2,3,2],[2,2,2,0]],[[1,2,1,0],[2,0,2,2],[1,2,3,3],[1,2,2,0]],[[1,2,1,0],[2,0,2,2],[1,2,4,2],[1,2,2,0]],[[1,2,1,0],[2,0,2,3],[1,2,3,2],[1,2,2,0]],[[1,2,1,0],[2,0,2,2],[1,2,3,2],[1,2,1,2]],[[1,2,1,0],[2,0,2,2],[1,2,3,3],[1,2,1,1]],[[1,2,1,0],[2,0,2,2],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,2,0],[3,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,0,2],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,0,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,0],[3,3,1,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,1,1],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,1,1],[1,3,2,1]],[[1,1,1,1],[1,4,2,0],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[1,3,2,0],[2,3,1,2],[0,2,2,2]],[[1,1,1,1],[1,4,2,0],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,1,2],[2,1,2,1]],[[1,1,1,1],[1,3,2,0],[3,3,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,1,2],[2,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,1,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,0],[3,3,2,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,2,0],[2,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,2,0],[1,3,2,1]],[[1,1,1,1],[1,4,2,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[1,3,2,0],[2,3,2,1],[0,2,2,2]],[[1,1,1,1],[1,4,2,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,2,1],[2,1,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[1,3,2,0],[2,3,2,2],[0,1,2,2]],[[1,1,1,1],[1,4,2,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,0],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,2,2],[0,2,3,0]],[[1,1,1,1],[1,3,2,0],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[1,3,2,0],[2,3,2,2],[1,0,2,2]],[[1,1,1,1],[1,4,2,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,0],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,0],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[2,0,2,3],[1,2,3,2],[1,2,1,1]],[[1,2,1,0],[2,0,2,2],[1,2,3,1],[1,2,2,2]],[[1,2,1,0],[2,0,2,2],[1,2,3,1],[1,2,3,1]],[[1,2,1,0],[2,0,2,2],[1,2,3,1],[1,3,2,1]],[[1,2,1,0],[2,0,2,2],[1,2,3,1],[2,2,2,1]],[[1,2,1,0],[2,0,2,2],[1,2,4,1],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[1,2,2,2],[1,2,2,2]],[[1,2,1,0],[2,0,2,2],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[1,4,2,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[3,3,3,0],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,4,3,0],[0,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,0],[0,3,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,0],[0,2,3,1]],[[1,1,1,1],[1,4,2,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[3,3,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[2,4,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,0],[2,1,2,1]],[[1,1,1,1],[1,4,2,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,2,0],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,2,0],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,1],[0,1,2,2]],[[1,1,1,1],[1,4,2,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,2,0],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,2,0],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,2,0],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,1],[0,3,1,1]],[[1,1,1,1],[1,4,2,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,2,0],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,2,0],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,1],[1,0,2,2]],[[1,1,1,1],[1,4,2,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,2,0],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,2,0],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,2,0],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,1],[2,1,1,1]],[[1,1,1,1],[1,4,2,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,2,0],[3,3,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,2,0],[2,4,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[2,0,2,2],[1,2,2,2],[1,3,2,1]],[[1,2,1,0],[2,0,2,2],[1,2,2,2],[2,2,2,1]],[[1,2,1,0],[2,0,2,2],[1,2,2,3],[1,2,2,1]],[[1,2,1,0],[2,0,2,3],[1,2,2,2],[1,2,2,1]],[[1,2,1,0],[2,0,2,2],[1,1,3,2],[1,2,2,2]],[[1,2,1,0],[2,0,2,2],[1,1,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,2,2],[1,1,3,3],[1,2,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[0,0,2,2]],[[1,1,1,1],[1,4,2,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,0],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,0],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,0],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[0,1,1,2]],[[1,1,1,1],[1,4,2,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,0],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,0],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[0,1,3,0]],[[1,1,1,1],[1,4,2,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,0],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,0],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,0],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[0,2,0,2]],[[1,1,1,1],[1,4,2,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,0],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,0],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,0],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,0],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,0,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,2,1],[2,3,3,2],[2,2,1,0]],[[1,1,1,1],[1,4,2,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,0],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,0],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,0],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[1,0,1,2]],[[1,1,1,1],[1,4,2,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,0],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,0],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[1,0,3,0]],[[1,1,1,1],[1,4,2,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,0],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,0],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,0],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[1,1,0,2]],[[1,1,1,1],[1,4,2,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,0],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,0],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,0],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,0],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[2,0,2,1],[3,3,3,2],[1,2,1,0]],[[1,2,1,0],[2,0,2,1],[2,3,3,2],[1,3,0,1]],[[1,2,1,0],[2,0,2,1],[2,3,3,2],[2,2,0,1]],[[1,2,1,0],[2,0,2,1],[3,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,4,2,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[1,3,2,0],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[1,3,2,0],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[1,3,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[2,0,2,1],[2,3,3,1],[1,3,1,1]],[[1,2,1,0],[2,0,2,1],[2,3,3,1],[2,2,1,1]],[[1,2,1,0],[2,0,2,1],[3,3,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,2,1],[2,3,3,0],[1,2,3,1]],[[1,2,1,0],[2,0,2,1],[2,3,3,0],[1,3,2,1]],[[1,2,1,0],[2,0,2,1],[2,3,3,0],[2,2,2,1]],[[1,2,1,0],[2,0,2,1],[3,3,3,0],[1,2,2,1]],[[1,2,1,0],[2,0,2,1],[2,3,2,2],[1,2,3,0]],[[1,2,1,0],[2,0,2,1],[2,3,2,2],[1,3,2,0]],[[1,2,1,0],[2,0,2,1],[2,3,2,2],[2,2,2,0]],[[1,2,1,0],[2,0,2,1],[3,3,2,2],[1,2,2,0]],[[1,2,1,0],[2,0,2,1],[2,3,2,1],[1,2,2,2]],[[1,2,1,0],[2,0,2,1],[2,3,2,1],[1,2,3,1]],[[1,2,1,0],[2,0,2,1],[2,3,2,1],[1,3,2,1]],[[1,2,1,0],[2,0,2,1],[2,3,2,1],[2,2,2,1]],[[1,2,1,0],[2,0,2,1],[3,3,2,1],[1,2,2,1]],[[1,2,1,0],[2,0,2,1],[2,3,1,2],[1,2,2,2]],[[1,2,1,0],[2,0,2,1],[2,3,1,2],[1,2,3,1]],[[1,2,1,0],[2,0,2,1],[2,3,1,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,1],[0,2,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[0,2,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,2,1],[0,2,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,1],[0,2,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,2,1],[0,2,2,2],[1,2,2,2]],[[1,1,1,1],[1,3,2,1],[0,2,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[0,2,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,2,1],[0,2,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,2,1],[0,2,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,2,1],[0,2,3,1],[1,2,2,2]],[[1,1,1,1],[1,3,2,1],[0,2,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,2,1],[0,2,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,2,1],[0,2,3,2],[1,2,1,2]],[[1,1,1,1],[1,3,2,1],[0,2,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,1],[0,2,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,2,1],[0,2,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,2,1],[0,2,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,1],[0,2,3,2],[1,2,3,0]],[[1,1,1,1],[1,4,2,1],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[0,4,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,1,3],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,1,2],[2,2,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,1,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,1,2],[1,2,3,1]],[[1,1,1,1],[1,3,2,1],[0,3,1,2],[1,2,2,2]],[[1,1,1,1],[1,4,2,1],[0,3,2,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[0,4,2,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,2,1],[2,2,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,2,1],[1,3,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,2,1],[1,2,3,1]],[[1,1,1,1],[1,3,2,1],[0,3,2,1],[1,2,2,2]],[[1,1,1,1],[1,3,2,1],[0,3,2,3],[1,1,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,2,2],[1,1,3,1]],[[1,1,1,1],[1,3,2,1],[0,3,2,2],[1,1,2,2]],[[1,1,1,1],[1,4,2,1],[0,3,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,1],[0,4,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,1],[0,3,2,2],[2,2,2,0]],[[1,1,1,1],[1,3,2,1],[0,3,2,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,1],[0,3,2,2],[1,2,3,0]],[[1,1,1,1],[1,4,2,1],[0,3,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,2,1],[0,4,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,4,1],[1,1,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,1],[1,1,3,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,1],[1,1,2,2]],[[1,1,1,1],[1,4,2,1],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,2,1],[0,4,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,2,1],[0,3,4,1],[1,2,1,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,1],[2,2,1,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,1],[1,3,1,1]],[[1,1,1,1],[1,3,2,1],[0,3,4,2],[1,0,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,3],[1,0,2,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,2],[1,0,2,2]],[[1,1,1,1],[1,4,2,1],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,1],[0,4,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,1],[0,3,4,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,3],[1,1,1,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,2],[1,1,1,2]],[[1,1,1,1],[1,4,2,1],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,1],[0,4,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,1],[0,3,4,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,1],[0,3,3,3],[1,1,2,0]],[[1,1,1,1],[1,3,2,1],[0,3,3,2],[1,1,3,0]],[[1,1,1,1],[1,4,2,1],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[0,4,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[0,3,4,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,3],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,2],[2,2,0,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,2],[1,3,0,1]],[[1,1,1,1],[1,3,2,1],[0,3,3,2],[1,2,0,2]],[[1,1,1,1],[1,4,2,1],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,1],[0,4,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,1],[0,3,4,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,1],[0,3,3,3],[1,2,1,0]],[[1,1,1,1],[1,3,2,1],[0,3,3,2],[2,2,1,0]],[[1,1,1,1],[1,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,2,1],[2,3,1,2],[2,2,2,1]],[[1,2,1,0],[2,0,2,1],[3,3,1,2],[1,2,2,1]],[[1,2,1,0],[2,0,2,0],[2,3,3,2],[1,3,1,1]],[[1,1,1,1],[1,3,2,1],[1,2,2,3],[0,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,2,2,2],[0,3,2,1]],[[1,1,1,1],[1,3,2,1],[1,2,2,2],[0,2,3,1]],[[1,1,1,1],[1,3,2,1],[1,2,2,2],[0,2,2,2]],[[1,1,1,1],[1,3,2,1],[1,2,4,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,2,3,0],[2,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,2,3,0],[1,3,2,1]],[[1,1,1,1],[1,3,2,1],[1,2,3,0],[1,2,3,1]],[[1,1,1,1],[1,3,2,1],[1,2,3,0],[1,2,2,2]],[[1,1,1,1],[1,3,2,1],[1,2,4,1],[0,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,2,3,1],[0,3,2,1]],[[1,1,1,1],[1,3,2,1],[1,2,3,1],[0,2,3,1]],[[1,1,1,1],[1,3,2,1],[1,2,3,1],[0,2,2,2]],[[1,1,1,1],[1,3,2,1],[1,2,4,1],[1,2,2,0]],[[1,1,1,1],[1,3,2,1],[1,2,3,1],[2,2,2,0]],[[1,1,1,1],[1,3,2,1],[1,2,3,1],[1,3,2,0]],[[1,1,1,1],[1,3,2,1],[1,2,3,1],[1,2,3,0]],[[1,1,1,1],[1,3,2,1],[1,2,4,2],[0,2,1,1]],[[1,1,1,1],[1,3,2,1],[1,2,3,3],[0,2,1,1]],[[1,1,1,1],[1,3,2,1],[1,2,3,2],[0,2,1,2]],[[1,1,1,1],[1,3,2,1],[1,2,4,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,1],[1,2,3,3],[0,2,2,0]],[[1,1,1,1],[1,3,2,1],[1,2,3,2],[0,3,2,0]],[[1,1,1,1],[1,3,2,1],[1,2,3,2],[0,2,3,0]],[[1,2,1,0],[2,0,2,0],[2,3,3,2],[2,2,1,1]],[[1,2,1,0],[2,0,2,0],[3,3,3,2],[1,2,1,1]],[[1,2,1,0],[2,0,2,0],[2,3,2,2],[1,2,2,2]],[[1,2,1,0],[2,0,2,0],[2,3,2,2],[1,2,3,1]],[[1,2,1,0],[2,0,2,0],[2,3,2,2],[1,3,2,1]],[[1,2,1,0],[2,0,2,0],[2,3,2,2],[2,2,2,1]],[[1,1,1,1],[1,4,2,1],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,4,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,1,3],[0,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,1,2],[0,3,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,1,2],[0,2,3,1]],[[1,1,1,1],[1,3,2,1],[1,3,1,2],[0,2,2,2]],[[1,1,1,1],[1,4,2,1],[1,3,2,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,4,2,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,2,0],[2,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,2,0],[1,3,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,2,0],[1,2,3,1]],[[1,1,1,1],[1,3,2,1],[1,3,2,0],[1,2,2,2]],[[1,1,1,1],[1,4,2,1],[1,3,2,1],[0,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,4,2,1],[0,2,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,2,1],[0,3,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,2,1],[0,2,3,1]],[[1,1,1,1],[1,3,2,1],[1,3,2,1],[0,2,2,2]],[[1,1,1,1],[1,4,2,1],[1,3,2,1],[1,2,2,0]],[[1,1,1,1],[1,3,2,1],[1,4,2,1],[1,2,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,2,1],[2,2,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,2,1],[1,3,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,2,1],[1,2,3,0]],[[1,1,1,1],[1,3,2,1],[1,3,2,3],[0,1,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,2,2],[0,1,3,1]],[[1,1,1,1],[1,3,2,1],[1,3,2,2],[0,1,2,2]],[[1,1,1,1],[1,4,2,1],[1,3,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,1],[1,4,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,2,2],[0,3,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,2,2],[0,2,3,0]],[[1,1,1,1],[1,3,2,1],[1,3,2,3],[1,0,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,2,2],[1,0,3,1]],[[1,1,1,1],[1,3,2,1],[1,3,2,2],[1,0,2,2]],[[1,2,1,0],[2,0,2,0],[3,3,2,2],[1,2,2,1]],[[1,1,1,1],[1,4,2,1],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,1],[1,4,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,4,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,0],[1,1,3,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,0],[1,1,2,2]],[[1,1,1,1],[1,4,2,1],[1,3,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,2,1],[1,4,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,2,1],[1,3,4,0],[1,2,1,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,0],[2,2,1,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,0],[1,3,1,1]],[[1,1,1,1],[1,4,2,1],[1,3,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,2,1],[1,4,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,4,1],[0,1,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,1],[0,1,3,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,1],[0,1,2,2]],[[1,1,1,1],[1,4,2,1],[1,3,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,2,1],[1,4,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,2,1],[1,3,4,1],[0,2,1,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,1],[0,3,1,1]],[[1,1,1,1],[1,4,2,1],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,2,1],[1,4,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,4,1],[1,0,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,1],[1,0,3,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,1],[1,0,2,2]],[[1,1,1,1],[1,4,2,1],[1,3,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,2,1],[1,4,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,4,1],[1,1,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,3,1],[1,1,3,0]],[[1,1,1,1],[1,4,2,1],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[1,4,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[1,3,4,1],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,1],[2,2,0,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,1],[1,3,0,1]],[[1,1,1,1],[1,4,2,1],[1,3,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,2,1],[1,4,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,2,1],[1,3,4,1],[1,2,1,0]],[[1,1,1,1],[1,3,2,1],[1,3,3,1],[2,2,1,0]],[[1,1,1,1],[1,3,2,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[2,0,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[2,0,1,2],[2,3,3,2],[2,2,1,0]],[[1,2,1,0],[2,0,1,2],[3,3,3,2],[1,2,1,0]],[[1,2,1,0],[2,0,1,2],[2,3,3,2],[1,3,0,1]],[[1,2,1,0],[2,0,1,2],[2,3,3,2],[2,2,0,1]],[[1,2,1,0],[2,0,1,2],[3,3,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[1,3,4,2],[0,0,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,2],[0,0,2,2]],[[1,1,1,1],[1,4,2,1],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,1],[1,4,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,1],[1,3,4,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,2],[0,1,1,2]],[[1,1,1,1],[1,4,2,1],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,1],[1,4,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,4,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,3,3],[0,1,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,3,2],[0,1,3,0]],[[1,1,1,1],[1,4,2,1],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,1],[1,4,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,1],[1,3,4,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,3],[0,2,0,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,2],[0,3,0,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,2],[0,2,0,2]],[[1,1,1,1],[1,4,2,1],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,1],[1,4,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,1],[1,3,4,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,1],[1,3,3,3],[0,2,1,0]],[[1,1,1,1],[1,3,2,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[2,0,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,1,0],[2,0,1,2],[2,3,3,2],[1,0,3,1]],[[1,2,1,0],[2,0,1,2],[2,3,3,3],[1,0,2,1]],[[1,1,1,1],[1,4,2,1],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,1],[1,4,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,1],[1,3,4,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,3],[1,0,1,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,2],[1,0,1,2]],[[1,1,1,1],[1,4,2,1],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,1],[1,4,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,4,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,3,3],[1,0,2,0]],[[1,1,1,1],[1,3,2,1],[1,3,3,2],[1,0,3,0]],[[1,1,1,1],[1,4,2,1],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,1],[1,4,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,1],[1,3,4,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,3],[1,1,0,1]],[[1,1,1,1],[1,3,2,1],[1,3,3,2],[1,1,0,2]],[[1,1,1,1],[1,4,2,1],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,1],[1,4,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,1],[1,3,4,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,1],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[2,0,1,2],[2,3,3,2],[0,1,2,2]],[[1,2,1,0],[2,0,1,2],[2,3,3,2],[0,1,3,1]],[[1,2,1,0],[2,0,1,2],[2,3,3,3],[0,1,2,1]],[[1,2,1,0],[2,0,1,2],[2,3,3,1],[1,3,1,1]],[[1,2,1,0],[2,0,1,2],[2,3,3,1],[2,2,1,1]],[[1,2,1,0],[2,0,1,2],[3,3,3,1],[1,2,1,1]],[[1,2,1,0],[2,0,1,2],[2,3,2,2],[1,2,3,0]],[[1,2,1,0],[2,0,1,2],[2,3,2,2],[1,3,2,0]],[[1,2,1,0],[2,0,1,2],[2,3,2,2],[2,2,2,0]],[[1,2,1,0],[2,0,1,2],[3,3,2,2],[1,2,2,0]],[[1,2,1,0],[2,0,1,2],[2,3,2,1],[1,2,2,2]],[[1,2,1,0],[2,0,1,2],[2,3,2,1],[1,2,3,1]],[[1,2,1,0],[2,0,1,2],[2,3,2,1],[1,3,2,1]],[[1,2,1,0],[2,0,1,2],[2,3,2,1],[2,2,2,1]],[[1,1,1,1],[1,3,2,1],[3,1,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[2,1,4,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[2,1,3,0],[2,2,2,1]],[[1,1,1,1],[1,3,2,1],[2,1,3,0],[1,3,2,1]],[[1,1,1,1],[1,3,2,1],[2,1,3,0],[1,2,3,1]],[[1,1,1,1],[1,3,2,1],[2,1,3,0],[1,2,2,2]],[[1,1,1,1],[1,3,2,1],[3,1,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,2,1],[2,1,4,1],[1,2,2,0]],[[1,1,1,1],[1,3,2,1],[2,1,3,1],[2,2,2,0]],[[1,1,1,1],[1,3,2,1],[2,1,3,1],[1,3,2,0]],[[1,1,1,1],[1,3,2,1],[2,1,3,1],[1,2,3,0]],[[1,2,1,0],[2,0,1,2],[3,3,2,1],[1,2,2,1]],[[1,2,1,0],[2,0,1,2],[2,3,1,2],[1,2,2,2]],[[1,2,1,0],[2,0,1,2],[2,3,1,2],[1,2,3,1]],[[1,2,1,0],[2,0,1,2],[2,3,1,2],[1,3,2,1]],[[1,2,1,0],[2,0,1,2],[2,3,1,2],[2,2,2,1]],[[1,2,1,0],[2,0,1,2],[2,3,1,3],[1,2,2,1]],[[1,2,1,0],[2,0,1,2],[3,3,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[3,2,2,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[2,2,2,0],[2,2,2,1]],[[1,1,1,1],[1,3,2,1],[2,2,2,0],[1,3,2,1]],[[1,1,1,1],[1,3,2,1],[2,2,2,0],[1,2,3,1]],[[1,1,1,1],[1,3,2,1],[2,2,2,0],[1,2,2,2]],[[1,1,1,1],[1,3,2,1],[3,2,2,1],[1,2,2,0]],[[1,1,1,1],[1,3,2,1],[2,2,2,1],[2,2,2,0]],[[1,1,1,1],[1,3,2,1],[2,2,2,1],[1,3,2,0]],[[1,1,1,1],[1,3,2,1],[2,2,2,1],[1,2,3,0]],[[1,1,1,1],[1,3,2,1],[2,2,4,0],[0,2,2,1]],[[1,1,1,1],[1,3,2,1],[2,2,3,0],[0,3,2,1]],[[1,1,1,1],[1,3,2,1],[2,2,3,0],[0,2,3,1]],[[1,1,1,1],[1,3,2,1],[2,2,3,0],[0,2,2,2]],[[1,1,1,1],[1,3,2,1],[3,2,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,2,1],[2,2,3,0],[2,2,1,1]],[[1,1,1,1],[1,3,2,1],[2,2,3,0],[1,3,1,1]],[[1,1,1,1],[1,3,2,1],[2,2,4,1],[0,2,2,0]],[[1,1,1,1],[1,3,2,1],[2,2,3,1],[0,3,2,0]],[[1,1,1,1],[1,3,2,1],[2,2,3,1],[0,2,3,0]],[[1,1,1,1],[1,3,2,1],[3,2,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[2,2,3,1],[2,2,0,1]],[[1,1,1,1],[1,3,2,1],[2,2,3,1],[1,3,0,1]],[[1,1,1,1],[1,3,2,1],[3,2,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,2,1],[2,2,3,1],[2,2,1,0]],[[1,1,1,1],[1,3,2,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[2,0,1,2],[2,2,3,2],[0,2,2,2]],[[1,2,1,0],[2,0,1,2],[2,2,3,2],[0,2,3,1]],[[1,2,1,0],[2,0,1,2],[2,2,3,2],[0,3,2,1]],[[1,2,1,0],[2,0,1,2],[2,2,3,3],[0,2,2,1]],[[1,2,1,0],[2,0,1,2],[2,1,3,2],[1,2,2,2]],[[1,2,1,0],[2,0,1,2],[2,1,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,1,2],[2,1,3,2],[1,3,2,1]],[[1,2,1,0],[2,0,1,2],[2,1,3,2],[2,2,2,1]],[[1,2,1,0],[2,0,1,2],[2,1,3,3],[1,2,2,1]],[[1,2,1,0],[2,0,1,2],[3,1,3,2],[1,2,2,1]],[[1,2,1,0],[2,0,1,2],[1,3,3,2],[1,1,2,2]],[[1,2,1,0],[2,0,1,2],[1,3,3,2],[1,1,3,1]],[[1,2,1,0],[2,0,1,2],[1,3,3,3],[1,1,2,1]],[[1,2,1,0],[2,0,1,2],[1,2,3,2],[1,2,2,2]],[[1,2,1,0],[2,0,1,2],[1,2,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,1,2],[1,2,3,2],[1,3,2,1]],[[1,2,1,0],[2,0,1,2],[1,2,3,2],[2,2,2,1]],[[1,2,1,0],[2,0,1,2],[1,2,3,3],[1,2,2,1]],[[1,2,1,0],[2,0,1,1],[2,3,3,2],[1,2,3,0]],[[1,2,1,0],[2,0,1,1],[2,3,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,1],[3,3,1,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,1],[2,3,1,0],[2,2,2,1]],[[1,1,1,1],[1,3,2,1],[2,3,1,0],[1,3,2,1]],[[1,1,1,1],[1,3,2,1],[3,3,1,1],[1,2,2,0]],[[1,1,1,1],[1,3,2,1],[2,3,1,1],[2,2,2,0]],[[1,1,1,1],[1,3,2,1],[2,3,1,1],[1,3,2,0]],[[1,2,1,0],[2,0,1,1],[2,3,3,2],[2,2,2,0]],[[1,2,1,0],[2,0,1,1],[3,3,3,2],[1,2,2,0]],[[1,2,1,0],[2,0,1,1],[2,3,3,1],[1,2,2,2]],[[1,2,1,0],[2,0,1,1],[2,3,3,1],[1,2,3,1]],[[1,2,1,0],[2,0,1,1],[2,3,3,1],[1,3,2,1]],[[1,2,1,0],[2,0,1,1],[2,3,3,1],[2,2,2,1]],[[1,2,1,0],[2,0,1,1],[3,3,3,1],[1,2,2,1]],[[1,2,1,0],[2,0,1,0],[2,3,3,2],[1,2,2,2]],[[1,1,1,1],[1,4,2,1],[2,3,2,0],[0,2,2,1]],[[1,1,1,1],[1,3,2,1],[3,3,2,0],[0,2,2,1]],[[1,1,1,1],[1,3,2,1],[2,4,2,0],[0,2,2,1]],[[1,1,1,1],[1,3,2,1],[2,3,2,0],[0,3,2,1]],[[1,1,1,1],[1,3,2,1],[2,3,2,0],[0,2,3,1]],[[1,1,1,1],[1,3,2,1],[2,3,2,0],[0,2,2,2]],[[1,1,1,1],[1,4,2,1],[2,3,2,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,1],[3,3,2,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,1],[2,4,2,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,1],[2,3,2,0],[2,1,2,1]],[[1,1,1,1],[1,4,2,1],[2,3,2,1],[0,2,2,0]],[[1,1,1,1],[1,3,2,1],[3,3,2,1],[0,2,2,0]],[[1,1,1,1],[1,3,2,1],[2,4,2,1],[0,2,2,0]],[[1,1,1,1],[1,3,2,1],[2,3,2,1],[0,3,2,0]],[[1,1,1,1],[1,3,2,1],[2,3,2,1],[0,2,3,0]],[[1,1,1,1],[1,4,2,1],[2,3,2,1],[1,1,2,0]],[[1,1,1,1],[1,3,2,1],[3,3,2,1],[1,1,2,0]],[[1,1,1,1],[1,3,2,1],[2,4,2,1],[1,1,2,0]],[[1,1,1,1],[1,3,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[2,0,1,0],[2,3,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,1,0],[2,3,3,2],[1,3,2,1]],[[1,2,1,0],[2,0,1,0],[2,3,3,2],[2,2,2,1]],[[1,2,1,0],[2,0,1,0],[3,3,3,2],[1,2,2,1]],[[1,2,1,0],[2,0,0,2],[2,3,3,2],[1,2,3,0]],[[1,2,1,0],[2,0,0,2],[2,3,3,2],[1,3,2,0]],[[1,2,1,0],[2,0,0,2],[2,3,3,2],[2,2,2,0]],[[1,2,1,0],[2,0,0,2],[3,3,3,2],[1,2,2,0]],[[1,2,1,0],[2,0,0,2],[2,3,3,2],[0,2,2,2]],[[1,2,1,0],[2,0,0,2],[2,3,3,2],[0,2,3,1]],[[1,2,1,0],[2,0,0,2],[2,3,3,2],[0,3,2,1]],[[1,2,1,0],[2,0,0,2],[2,3,3,3],[0,2,2,1]],[[1,2,1,0],[2,0,0,2],[2,3,3,1],[1,2,2,2]],[[1,2,1,0],[2,0,0,2],[2,3,3,1],[1,2,3,1]],[[1,2,1,0],[2,0,0,2],[2,3,3,1],[1,3,2,1]],[[1,2,1,0],[2,0,0,2],[2,3,3,1],[2,2,2,1]],[[1,2,1,0],[2,0,0,2],[3,3,3,1],[1,2,2,1]],[[1,2,1,0],[2,0,0,2],[2,3,2,2],[1,2,2,2]],[[1,2,1,0],[2,0,0,2],[2,3,2,2],[1,2,3,1]],[[1,2,1,0],[2,0,0,2],[2,3,2,2],[1,3,2,1]],[[1,2,1,0],[2,0,0,2],[2,3,2,2],[2,2,2,1]],[[1,2,1,0],[2,0,0,2],[2,3,2,3],[1,2,2,1]],[[1,2,1,0],[2,0,0,2],[3,3,2,2],[1,2,2,1]],[[1,2,1,0],[2,0,0,2],[2,2,3,2],[1,2,2,2]],[[1,2,1,0],[2,0,0,2],[2,2,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,0,2],[2,2,3,2],[1,3,2,1]],[[1,2,1,0],[2,0,0,2],[2,2,3,2],[2,2,2,1]],[[1,2,1,0],[2,0,0,2],[2,2,3,3],[1,2,2,1]],[[1,2,1,0],[2,0,0,2],[3,2,3,2],[1,2,2,1]],[[1,1,1,1],[1,4,2,1],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,2,1],[3,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,2,1],[2,4,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,2,1],[2,3,4,0],[0,1,2,1]],[[1,1,1,1],[1,3,2,1],[2,3,3,0],[0,1,3,1]],[[1,1,1,1],[1,3,2,1],[2,3,3,0],[0,1,2,2]],[[1,1,1,1],[1,4,2,1],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,2,1],[3,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,2,1],[2,4,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,2,1],[2,3,4,0],[0,2,1,1]],[[1,1,1,1],[1,3,2,1],[2,3,3,0],[0,3,1,1]],[[1,1,1,1],[1,4,2,1],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,2,1],[3,3,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,2,1],[2,4,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,2,1],[2,3,4,0],[1,0,2,1]],[[1,1,1,1],[1,3,2,1],[2,3,3,0],[2,0,2,1]],[[1,1,1,1],[1,3,2,1],[2,3,3,0],[1,0,3,1]],[[1,1,1,1],[1,3,2,1],[2,3,3,0],[1,0,2,2]],[[1,1,1,1],[1,4,2,1],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,2,1],[3,3,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,2,1],[2,4,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,2,1],[2,3,4,0],[1,1,1,1]],[[1,1,1,1],[1,3,2,1],[2,3,3,0],[2,1,1,1]],[[1,1,1,1],[1,4,2,1],[2,3,3,0],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[3,3,3,0],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[2,4,3,0],[1,2,0,1]],[[1,1,1,1],[1,3,2,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[2,0,0,2],[1,3,3,2],[1,2,2,2]],[[1,2,1,0],[2,0,0,2],[1,3,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,0,2],[1,3,3,2],[1,3,2,1]],[[1,2,1,0],[2,0,0,2],[1,3,3,2],[2,2,2,1]],[[1,2,1,0],[2,0,0,2],[1,3,3,3],[1,2,2,1]],[[1,2,1,0],[2,0,0,1],[2,3,3,2],[1,2,2,2]],[[1,2,1,0],[2,0,0,1],[2,3,3,2],[1,2,3,1]],[[1,2,1,0],[2,0,0,1],[2,3,3,2],[1,3,2,1]],[[1,1,1,1],[1,4,2,1],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,2,1],[3,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,2,1],[2,4,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,2,1],[2,3,4,1],[0,1,1,1]],[[1,1,1,1],[1,4,2,1],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,2,1],[3,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,2,1],[2,4,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,2,1],[2,3,4,1],[0,1,2,0]],[[1,1,1,1],[1,3,2,1],[2,3,3,1],[0,1,3,0]],[[1,1,1,1],[1,4,2,1],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,2,1],[3,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,2,1],[2,4,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,2,1],[2,3,4,1],[0,2,0,1]],[[1,1,1,1],[1,3,2,1],[2,3,3,1],[0,3,0,1]],[[1,1,1,1],[1,4,2,1],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,2,1],[3,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,2,1],[2,4,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,2,1],[2,3,4,1],[0,2,1,0]],[[1,1,1,1],[1,3,2,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[2,0,0,1],[2,3,3,2],[2,2,2,1]],[[1,2,1,0],[2,0,0,1],[3,3,3,2],[1,2,2,1]],[[1,1,1,1],[1,4,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,2,1],[3,3,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,2,1],[2,4,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,2,1],[2,3,4,1],[1,0,1,1]],[[1,1,1,1],[1,3,2,1],[2,3,3,1],[2,0,1,1]],[[1,1,1,1],[1,4,2,1],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,2,1],[3,3,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,2,1],[2,4,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,2,1],[2,3,4,1],[1,0,2,0]],[[1,1,1,1],[1,3,2,1],[2,3,3,1],[2,0,2,0]],[[1,1,1,1],[1,3,2,1],[2,3,3,1],[1,0,3,0]],[[1,1,1,1],[1,4,2,1],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,2,1],[3,3,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,2,1],[2,4,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,2,1],[2,3,4,1],[1,1,0,1]],[[1,1,1,1],[1,3,2,1],[2,3,3,1],[2,1,0,1]],[[1,1,1,1],[1,4,2,1],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,2,1],[3,3,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,2,1],[2,4,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,2,1],[2,3,4,1],[1,1,1,0]],[[1,1,1,1],[1,3,2,1],[2,3,3,1],[2,1,1,0]],[[1,1,1,1],[1,4,2,1],[2,3,3,1],[1,2,0,0]],[[1,1,1,1],[1,3,2,1],[3,3,3,1],[1,2,0,0]],[[1,1,1,1],[1,3,2,1],[2,4,3,1],[1,2,0,0]],[[1,1,1,1],[1,3,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[1,3,3,3],[2,3,3,1],[1,0,0,0]],[[1,2,1,0],[1,3,4,2],[2,3,3,1],[1,0,0,0]],[[1,2,1,0],[1,4,3,2],[2,3,3,1],[1,0,0,0]],[[1,3,1,0],[1,3,3,2],[2,3,3,1],[1,0,0,0]],[[2,2,1,0],[1,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,2,1,0],[1,3,4,2],[2,3,3,0],[1,0,1,0]],[[1,2,1,0],[1,4,3,2],[2,3,3,0],[1,0,1,0]],[[1,3,1,0],[1,3,3,2],[2,3,3,0],[1,0,1,0]],[[2,2,1,0],[1,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,1,1,2],[1,3,2,2],[0,0,3,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,3],[0,0,3,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,0,3,3],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,0,3,2],[1,2,3,1]],[[1,1,1,1],[1,3,2,2],[0,0,3,2],[1,2,2,2]],[[1,1,1,2],[1,3,2,2],[0,1,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,3],[0,1,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,1,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,1,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,1,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,2],[0,1,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,2,2],[0,1,2,2],[1,2,2,2]],[[1,1,1,1],[1,3,2,2],[0,1,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,1,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,1,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,2,2],[0,1,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,2,2],[0,1,3,1],[1,2,2,2]],[[1,1,1,2],[1,3,2,2],[0,1,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,2,3],[0,1,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,2,2],[0,1,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,2,2],[0,1,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,2,2],[0,1,3,2],[1,2,1,2]],[[1,1,1,2],[1,3,2,2],[0,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,3],[0,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,2],[0,1,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,2],[0,1,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,2,2],[0,1,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,2,2],[0,1,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,2],[0,1,3,2],[1,2,3,0]],[[1,1,1,2],[1,3,2,2],[0,2,2,2],[1,1,2,1]],[[1,1,1,1],[1,3,2,3],[0,2,2,2],[1,1,2,1]],[[1,1,1,1],[1,3,2,2],[0,2,2,3],[1,1,2,1]],[[1,1,1,1],[1,3,2,2],[0,2,2,2],[1,1,3,1]],[[1,1,1,1],[1,3,2,2],[0,2,2,2],[1,1,2,2]],[[1,1,1,1],[1,3,2,2],[0,2,4,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,0],[2,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,0],[1,3,2,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,0],[1,2,3,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,0],[1,2,2,2]],[[1,1,1,1],[1,3,2,2],[0,2,4,1],[1,1,2,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,1],[1,1,3,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,1],[1,1,2,2]],[[1,1,1,1],[1,3,2,2],[0,2,4,1],[1,2,2,0]],[[1,1,1,1],[1,3,2,2],[0,2,3,1],[2,2,2,0]],[[1,1,1,1],[1,3,2,2],[0,2,3,1],[1,3,2,0]],[[1,1,1,1],[1,3,2,2],[0,2,3,1],[1,2,3,0]],[[1,1,1,2],[1,3,2,2],[0,2,3,2],[1,0,2,1]],[[1,1,1,1],[1,3,2,3],[0,2,3,2],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[0,2,4,2],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,3],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,2],[1,0,2,2]],[[1,1,1,2],[1,3,2,2],[0,2,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,3],[0,2,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,2],[0,2,4,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,3],[1,1,1,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,2],[1,1,1,2]],[[1,1,1,2],[1,3,2,2],[0,2,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,3],[0,2,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,2],[0,2,4,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,2],[0,2,3,3],[1,1,2,0]],[[1,1,1,1],[1,3,2,2],[0,2,3,2],[1,1,3,0]],[[1,1,1,2],[1,3,2,2],[0,2,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,3],[0,2,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,2],[0,2,4,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,3],[1,2,0,1]],[[1,1,1,1],[1,3,2,2],[0,2,3,2],[1,2,0,2]],[[1,1,1,2],[1,3,2,2],[0,2,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,3],[0,2,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,2],[0,2,4,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,2],[0,2,3,3],[1,2,1,0]],[[1,1,1,2],[1,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,4,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,3],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,4,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,0,3],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,0,2],[2,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,0,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,0,2],[1,2,3,1]],[[1,1,1,1],[1,3,2,2],[0,3,0,2],[1,2,2,2]],[[1,1,1,1],[1,4,2,2],[0,3,2,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,4,2,0],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,2,0],[2,2,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,2,0],[1,3,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,2,0],[1,2,3,1]],[[1,1,1,1],[1,3,2,2],[0,3,2,0],[1,2,2,2]],[[1,1,1,1],[1,4,2,2],[0,3,2,1],[1,2,2,0]],[[1,1,1,1],[1,3,2,2],[0,4,2,1],[1,2,2,0]],[[1,1,1,1],[1,3,2,2],[0,3,2,1],[2,2,2,0]],[[1,1,1,1],[1,3,2,2],[0,3,2,1],[1,3,2,0]],[[1,1,1,1],[1,3,2,2],[0,3,2,1],[1,2,3,0]],[[1,1,1,2],[1,3,2,2],[0,3,2,2],[0,1,2,1]],[[1,1,1,1],[1,3,2,3],[0,3,2,2],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,2,3],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,2,2],[0,1,3,1]],[[1,1,1,1],[1,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,1,1,1],[1,4,2,2],[0,3,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,2],[0,4,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,4,0],[1,1,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,0],[1,1,3,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,0],[1,1,2,2]],[[1,1,1,1],[1,4,2,2],[0,3,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,2,2],[0,4,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,2,2],[0,3,4,0],[1,2,1,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,0],[2,2,1,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,0],[1,3,1,1]],[[1,1,1,1],[1,3,2,2],[0,3,4,1],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,1],[0,1,3,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,1],[0,1,2,2]],[[1,1,1,1],[1,4,2,2],[0,3,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,2,2],[0,4,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,2,2],[0,3,4,1],[1,1,1,1]],[[1,1,1,1],[1,4,2,2],[0,3,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,2,2],[0,4,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,2,2],[0,3,4,1],[1,1,2,0]],[[1,1,1,1],[1,3,2,2],[0,3,3,1],[1,1,3,0]],[[1,1,1,1],[1,4,2,2],[0,3,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,2,2],[0,4,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,2,2],[0,3,4,1],[1,2,0,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,1],[2,2,0,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,1],[1,3,0,1]],[[1,1,1,1],[1,4,2,2],[0,3,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,2,2],[0,4,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,2,2],[0,3,4,1],[1,2,1,0]],[[1,1,1,1],[1,3,2,2],[0,3,3,1],[2,2,1,0]],[[1,1,1,1],[1,3,2,2],[0,3,3,1],[1,3,1,0]],[[1,1,1,2],[1,3,2,2],[0,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,2,3],[0,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,4,2],[0,0,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,2],[0,0,2,2]],[[1,1,1,2],[1,3,2,2],[0,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,3],[0,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,2],[0,3,4,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,2],[0,1,1,2]],[[1,1,1,2],[1,3,2,2],[0,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,3],[0,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[0,3,4,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[0,3,3,3],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[0,3,3,2],[0,1,3,0]],[[1,1,1,2],[1,3,2,2],[0,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,3],[0,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[0,3,4,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,3],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[0,3,3,2],[0,2,0,2]],[[1,1,1,2],[1,3,2,2],[0,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,3],[0,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,2],[0,3,4,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,1,0],[1,3,3,3],[2,3,2,1],[1,0,1,0]],[[1,2,1,0],[1,3,4,2],[2,3,2,1],[1,0,1,0]],[[1,2,1,0],[1,4,3,2],[2,3,2,1],[1,0,1,0]],[[1,3,1,0],[1,3,3,2],[2,3,2,1],[1,0,1,0]],[[2,2,1,0],[1,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,1,0],[1,3,3,3],[2,3,2,1],[1,0,0,1]],[[1,2,1,0],[1,3,4,2],[2,3,2,1],[1,0,0,1]],[[1,2,1,0],[1,4,3,2],[2,3,2,1],[1,0,0,1]],[[1,3,1,0],[1,3,3,2],[2,3,2,1],[1,0,0,1]],[[2,2,1,0],[1,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,1,2],[1,3,2,2],[1,0,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,3],[1,0,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,0,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,0,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,0,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,2,2],[1,0,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,2,2],[1,0,2,2],[1,2,2,2]],[[1,1,1,1],[1,3,2,2],[1,0,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,0,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,0,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,2,2],[1,0,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,2,2],[1,0,3,1],[1,2,2,2]],[[1,1,1,2],[1,3,2,2],[1,0,3,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,3],[1,0,3,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,0,3,3],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,0,3,2],[0,2,3,1]],[[1,1,1,1],[1,3,2,2],[1,0,3,2],[0,2,2,2]],[[1,1,1,2],[1,3,2,2],[1,0,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,2,3],[1,0,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,2,2],[1,0,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,2,2],[1,0,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,2,2],[1,0,3,2],[1,2,1,2]],[[1,1,1,2],[1,3,2,2],[1,0,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,3],[1,0,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,2],[1,0,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,2,2],[1,0,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,2,2],[1,0,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,2,2],[1,0,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,2,2],[1,0,3,2],[1,2,3,0]],[[1,1,1,2],[1,3,2,2],[1,1,2,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,3],[1,1,2,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,1,2,3],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,1,2,2],[0,3,2,1]],[[1,1,1,1],[1,3,2,2],[1,1,2,2],[0,2,3,1]],[[1,1,1,1],[1,3,2,2],[1,1,2,2],[0,2,2,2]],[[1,1,1,1],[1,3,2,2],[1,1,4,1],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,1,3,1],[0,3,2,1]],[[1,1,1,1],[1,3,2,2],[1,1,3,1],[0,2,3,1]],[[1,1,1,1],[1,3,2,2],[1,1,3,1],[0,2,2,2]],[[1,1,1,2],[1,3,2,2],[1,1,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,2,3],[1,1,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,2,2],[1,1,4,2],[0,2,1,1]],[[1,1,1,1],[1,3,2,2],[1,1,3,3],[0,2,1,1]],[[1,1,1,1],[1,3,2,2],[1,1,3,2],[0,2,1,2]],[[1,1,1,2],[1,3,2,2],[1,1,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,3],[1,1,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,2],[1,1,4,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,2],[1,1,3,3],[0,2,2,0]],[[1,1,1,1],[1,3,2,2],[1,1,3,2],[0,3,2,0]],[[1,1,1,1],[1,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,1,1,2],[1,3,2,2],[1,2,2,2],[0,1,2,1]],[[1,1,1,1],[1,3,2,3],[1,2,2,2],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[1,2,2,3],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[1,2,2,2],[0,1,3,1]],[[1,1,1,1],[1,3,2,2],[1,2,2,2],[0,1,2,2]],[[1,1,1,2],[1,3,2,2],[1,2,2,2],[1,0,2,1]],[[1,1,1,1],[1,3,2,3],[1,2,2,2],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[1,2,2,3],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[1,2,2,2],[1,0,3,1]],[[1,1,1,1],[1,3,2,2],[1,2,2,2],[1,0,2,2]],[[1,1,1,1],[1,3,2,2],[1,2,4,0],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,0],[0,3,2,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,0],[0,2,3,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,0],[0,2,2,2]],[[1,1,1,1],[1,3,2,2],[1,2,4,1],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,1],[0,1,3,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,1],[0,1,2,2]],[[1,1,1,1],[1,3,2,2],[1,2,4,1],[0,2,2,0]],[[1,1,1,1],[1,3,2,2],[1,2,3,1],[0,3,2,0]],[[1,1,1,1],[1,3,2,2],[1,2,3,1],[0,2,3,0]],[[1,1,1,1],[1,3,2,2],[1,2,4,1],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,1],[1,0,3,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,1],[1,0,2,2]],[[1,2,1,0],[1,4,3,2],[2,3,2,0],[1,2,0,0]],[[1,3,1,0],[1,3,3,2],[2,3,2,0],[1,2,0,0]],[[2,2,1,0],[1,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,1,2],[1,3,2,2],[1,2,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,2,3],[1,2,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,2,2],[1,2,4,2],[0,0,2,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,2],[0,0,2,2]],[[1,1,1,2],[1,3,2,2],[1,2,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,3],[1,2,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,2],[1,2,4,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,2],[0,1,1,2]],[[1,1,1,2],[1,3,2,2],[1,2,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,3],[1,2,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[1,2,4,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[1,2,3,3],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[1,2,3,2],[0,1,3,0]],[[1,1,1,2],[1,3,2,2],[1,2,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,3],[1,2,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[1,2,4,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,3],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,2],[0,2,0,2]],[[1,1,1,2],[1,3,2,2],[1,2,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,3],[1,2,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,2],[1,2,4,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,1,1,2],[1,3,2,2],[1,2,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,3],[1,2,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,2],[1,2,4,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,3],[1,0,1,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,2],[1,0,1,2]],[[1,1,1,2],[1,3,2,2],[1,2,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,3],[1,2,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,2],[1,2,4,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,2],[1,2,3,3],[1,0,2,0]],[[1,1,1,1],[1,3,2,2],[1,2,3,2],[1,0,3,0]],[[1,1,1,2],[1,3,2,2],[1,2,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,3],[1,2,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,2],[1,2,4,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,3],[1,1,0,1]],[[1,1,1,1],[1,3,2,2],[1,2,3,2],[1,1,0,2]],[[1,1,1,2],[1,3,2,2],[1,2,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,3],[1,2,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,2],[1,2,4,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[2,3,2,0],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[2,3,2,0],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[2,3,2,0],[1,0,1,1]],[[1,2,1,0],[1,4,3,2],[2,3,2,0],[1,0,1,1]],[[1,3,1,0],[1,3,3,2],[2,3,2,0],[1,0,1,1]],[[2,2,1,0],[1,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,1,2],[1,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,4,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,3],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,4,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,3,0,3],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,3,0,2],[0,3,2,1]],[[1,1,1,1],[1,3,2,2],[1,3,0,2],[0,2,3,1]],[[1,1,1,1],[1,3,2,2],[1,3,0,2],[0,2,2,2]],[[1,2,1,0],[1,4,3,2],[2,3,2,0],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,3,2,0],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,1,1],[1,4,2,2],[1,3,2,0],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,4,2,0],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[1,3,2,0],[0,3,2,1]],[[1,1,1,1],[1,3,2,2],[1,3,2,0],[0,2,3,1]],[[1,1,1,1],[1,3,2,2],[1,3,2,0],[0,2,2,2]],[[1,1,1,1],[1,4,2,2],[1,3,2,1],[0,2,2,0]],[[1,1,1,1],[1,3,2,2],[1,4,2,1],[0,2,2,0]],[[1,1,1,1],[1,3,2,2],[1,3,2,1],[0,3,2,0]],[[1,1,1,1],[1,3,2,2],[1,3,2,1],[0,2,3,0]],[[1,1,1,1],[1,4,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[1,4,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[1,3,4,0],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[1,3,3,0],[0,1,3,1]],[[1,1,1,1],[1,3,2,2],[1,3,3,0],[0,1,2,2]],[[1,1,1,1],[1,4,2,2],[1,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,2,2],[1,4,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,2,2],[1,3,4,0],[0,2,1,1]],[[1,1,1,1],[1,3,2,2],[1,3,3,0],[0,3,1,1]],[[1,1,1,1],[1,4,2,2],[1,3,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[1,4,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[1,3,4,0],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[1,3,3,0],[1,0,3,1]],[[1,1,1,1],[1,3,2,2],[1,3,3,0],[1,0,2,2]],[[1,1,1,1],[1,4,2,2],[1,3,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,2,2],[1,4,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,2,2],[1,3,4,0],[1,1,1,1]],[[1,1,1,1],[1,4,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,2,2],[1,4,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,2,2],[1,3,4,1],[0,1,1,1]],[[1,1,1,1],[1,4,2,2],[1,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[1,4,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[1,3,4,1],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[1,3,3,1],[0,1,3,0]],[[1,1,1,1],[1,4,2,2],[1,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[1,4,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[1,3,4,1],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[1,3,3,1],[0,3,0,1]],[[1,1,1,1],[1,4,2,2],[1,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,2,2],[1,4,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,2,2],[1,3,4,1],[0,2,1,0]],[[1,1,1,1],[1,3,2,2],[1,3,3,1],[0,3,1,0]],[[1,1,1,1],[1,4,2,2],[1,3,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,2,2],[1,4,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,2,2],[1,3,4,1],[1,0,1,1]],[[1,1,1,1],[1,4,2,2],[1,3,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,2,2],[1,4,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,2,2],[1,3,4,1],[1,0,2,0]],[[1,1,1,1],[1,3,2,2],[1,3,3,1],[1,0,3,0]],[[1,1,1,1],[1,4,2,2],[1,3,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,2,2],[1,4,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,2,2],[1,3,4,1],[1,1,0,1]],[[1,1,1,1],[1,4,2,2],[1,3,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,2,2],[1,4,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,2,2],[1,3,4,1],[1,1,1,0]],[[1,2,1,0],[1,3,3,3],[2,3,1,2],[1,0,1,0]],[[1,2,1,0],[1,3,4,2],[2,3,1,2],[1,0,1,0]],[[1,2,1,0],[1,4,3,2],[2,3,1,2],[1,0,1,0]],[[1,3,1,0],[1,3,3,2],[2,3,1,2],[1,0,1,0]],[[2,2,1,0],[1,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,1,0],[1,3,3,2],[2,3,1,3],[1,0,0,1]],[[1,2,1,0],[1,3,3,3],[2,3,1,2],[1,0,0,1]],[[1,2,1,0],[1,3,4,2],[2,3,1,2],[1,0,0,1]],[[1,2,1,0],[1,4,3,2],[2,3,1,2],[1,0,0,1]],[[1,3,1,0],[1,3,3,2],[2,3,1,2],[1,0,0,1]],[[2,2,1,0],[1,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,1,2],[1,3,2,2],[1,3,3,2],[0,0,1,1]],[[1,1,1,1],[1,3,2,3],[1,3,3,2],[0,0,1,1]],[[1,1,1,1],[1,3,2,2],[1,3,4,2],[0,0,1,1]],[[1,1,1,1],[1,3,2,2],[1,3,3,3],[0,0,1,1]],[[1,1,1,1],[1,3,2,2],[1,3,3,2],[0,0,1,2]],[[1,1,1,2],[1,3,2,2],[1,3,3,2],[0,0,2,0]],[[1,1,1,1],[1,3,2,3],[1,3,3,2],[0,0,2,0]],[[1,1,1,1],[1,3,2,2],[1,3,4,2],[0,0,2,0]],[[1,1,1,1],[1,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,1,0],[1,4,3,2],[2,3,1,1],[1,2,0,0]],[[1,3,1,0],[1,3,3,2],[2,3,1,1],[1,2,0,0]],[[2,2,1,0],[1,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,2,1,0],[1,4,3,2],[2,3,1,1],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[2,3,1,1],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[2,3,1,1],[1,1,0,1]],[[1,3,1,0],[1,3,3,2],[2,3,1,1],[1,1,0,1]],[[2,2,1,0],[1,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,2,1,0],[1,4,3,2],[2,3,1,1],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,3,1,1],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,3,1,1],[0,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,3,1,1],[0,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[2,3,1,0],[1,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,3,1,0],[1,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,2,1,0],[1,4,3,2],[2,3,1,0],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[2,3,1,0],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[2,3,1,0],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[2,3,1,0],[0,2,1,1]],[[2,2,1,0],[1,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,1,1,2],[1,3,2,2],[2,0,2,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,3],[2,0,2,2],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[2,0,2,3],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[2,0,2,2],[0,3,2,1]],[[1,1,1,1],[1,3,2,2],[2,0,2,2],[0,2,3,1]],[[1,1,1,1],[1,3,2,2],[2,0,2,2],[0,2,2,2]],[[1,1,1,2],[1,3,2,2],[2,0,2,2],[1,1,2,1]],[[1,1,1,1],[1,3,2,3],[2,0,2,2],[1,1,2,1]],[[1,1,1,1],[1,3,2,2],[2,0,2,3],[1,1,2,1]],[[1,1,1,1],[1,3,2,2],[2,0,2,2],[1,1,3,1]],[[1,1,1,1],[1,3,2,2],[2,0,2,2],[1,1,2,2]],[[1,1,1,1],[1,3,2,2],[2,0,4,1],[0,2,2,1]],[[1,1,1,1],[1,3,2,2],[2,0,3,1],[0,3,2,1]],[[1,1,1,1],[1,3,2,2],[2,0,3,1],[0,2,3,1]],[[1,1,1,1],[1,3,2,2],[2,0,3,1],[0,2,2,2]],[[1,1,1,1],[1,3,2,2],[2,0,4,1],[1,1,2,1]],[[1,1,1,1],[1,3,2,2],[2,0,3,1],[1,1,3,1]],[[1,1,1,1],[1,3,2,2],[2,0,3,1],[1,1,2,2]],[[1,1,1,2],[1,3,2,2],[2,0,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,2,3],[2,0,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,2,2],[2,0,4,2],[0,2,1,1]],[[1,1,1,1],[1,3,2,2],[2,0,3,3],[0,2,1,1]],[[1,1,1,1],[1,3,2,2],[2,0,3,2],[0,2,1,2]],[[1,1,1,2],[1,3,2,2],[2,0,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,3],[2,0,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,2],[2,0,4,2],[0,2,2,0]],[[1,1,1,1],[1,3,2,2],[2,0,3,3],[0,2,2,0]],[[1,1,1,1],[1,3,2,2],[2,0,3,2],[0,3,2,0]],[[1,1,1,1],[1,3,2,2],[2,0,3,2],[0,2,3,0]],[[1,1,1,2],[1,3,2,2],[2,0,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,3],[2,0,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,2],[2,0,4,2],[1,1,1,1]],[[1,1,1,1],[1,3,2,2],[2,0,3,3],[1,1,1,1]],[[1,1,1,1],[1,3,2,2],[2,0,3,2],[1,1,1,2]],[[1,1,1,2],[1,3,2,2],[2,0,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,3],[2,0,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,2],[2,0,4,2],[1,1,2,0]],[[1,1,1,1],[1,3,2,2],[2,0,3,3],[1,1,2,0]],[[1,1,1,1],[1,3,2,2],[2,0,3,2],[1,1,3,0]],[[1,1,1,2],[1,3,2,2],[2,0,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,3],[2,0,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,2],[2,0,4,2],[1,2,0,1]],[[1,1,1,1],[1,3,2,2],[2,0,3,3],[1,2,0,1]],[[1,1,1,1],[1,3,2,2],[2,0,3,2],[1,2,0,2]],[[1,1,1,2],[1,3,2,2],[2,0,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,3],[2,0,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,2],[2,0,4,2],[1,2,1,0]],[[1,1,1,1],[1,3,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,3,0,2],[1,2,0,0]],[[1,3,1,0],[1,3,3,2],[2,3,0,2],[1,2,0,0]],[[2,2,1,0],[1,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,1,1,2],[1,3,2,2],[2,1,2,2],[0,1,2,1]],[[1,1,1,1],[1,3,2,3],[2,1,2,2],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[2,1,2,3],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[2,1,2,2],[0,1,3,1]],[[1,1,1,1],[1,3,2,2],[2,1,2,2],[0,1,2,2]],[[1,1,1,2],[1,3,2,2],[2,1,2,2],[1,0,2,1]],[[1,1,1,1],[1,3,2,3],[2,1,2,2],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[2,1,2,3],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[2,1,2,2],[1,0,3,1]],[[1,1,1,1],[1,3,2,2],[2,1,2,2],[1,0,2,2]],[[1,1,1,1],[1,3,2,2],[2,1,4,1],[0,1,2,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,1],[0,1,3,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,1],[0,1,2,2]],[[1,1,1,1],[1,3,2,2],[2,1,4,1],[1,0,2,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,1],[1,0,3,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,1],[1,0,2,2]],[[1,1,1,2],[1,3,2,2],[2,1,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,2,3],[2,1,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,2,2],[2,1,4,2],[0,0,2,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,2],[0,0,2,2]],[[1,1,1,2],[1,3,2,2],[2,1,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,3],[2,1,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,2],[2,1,4,2],[0,1,1,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,2],[0,1,1,2]],[[1,1,1,2],[1,3,2,2],[2,1,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,3],[2,1,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[2,1,4,2],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[2,1,3,3],[0,1,2,0]],[[1,1,1,1],[1,3,2,2],[2,1,3,2],[0,1,3,0]],[[1,1,1,2],[1,3,2,2],[2,1,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,3],[2,1,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[2,1,4,2],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,3],[0,2,0,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,2],[0,2,0,2]],[[1,1,1,2],[1,3,2,2],[2,1,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,3],[2,1,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,2],[2,1,4,2],[0,2,1,0]],[[1,1,1,1],[1,3,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,3,0,2],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[2,3,0,2],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,1,2],[1,3,2,2],[2,1,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,3],[2,1,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,2],[2,1,4,2],[1,0,1,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,3],[1,0,1,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,2],[1,0,1,2]],[[1,1,1,2],[1,3,2,2],[2,1,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,3],[2,1,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,2],[2,1,4,2],[1,0,2,0]],[[1,1,1,1],[1,3,2,2],[2,1,3,3],[1,0,2,0]],[[1,1,1,1],[1,3,2,2],[2,1,3,2],[1,0,3,0]],[[1,1,1,2],[1,3,2,2],[2,1,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,3],[2,1,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,2],[2,1,4,2],[1,1,0,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,3],[1,1,0,1]],[[1,1,1,1],[1,3,2,2],[2,1,3,2],[1,1,0,2]],[[1,1,1,2],[1,3,2,2],[2,1,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,3],[2,1,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,2],[2,1,4,2],[1,1,1,0]],[[1,1,1,1],[1,3,2,2],[2,1,3,3],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[2,3,0,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,2,1,0],[1,4,3,2],[2,3,0,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,3,0,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,3,0,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,3,0,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[2,3,0,1],[1,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,3,0,1],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,3,0,1],[1,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,3,0,1],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[2,3,0,1],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[2,3,0,1],[0,2,2,0]],[[1,3,1,0],[1,3,3,2],[2,3,0,1],[0,2,2,0]],[[2,2,1,0],[1,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,2,1,0],[1,4,3,2],[2,3,0,0],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[2,3,0,0],[1,2,2,0]],[[2,2,1,0],[1,3,3,2],[2,3,0,0],[1,2,2,0]],[[1,2,1,0],[1,4,3,2],[2,3,0,0],[1,2,1,1]],[[1,3,1,0],[1,3,3,2],[2,3,0,0],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[2,3,0,0],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[2,3,0,0],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[2,3,0,0],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[2,3,0,0],[0,2,2,1]],[[1,3,1,0],[1,3,3,2],[2,3,0,0],[0,2,2,1]],[[2,2,1,0],[1,3,3,2],[2,3,0,0],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[2,2,3,1],[1,1,0,0]],[[1,2,1,0],[1,3,4,2],[2,2,3,1],[1,1,0,0]],[[1,2,1,0],[1,4,3,2],[2,2,3,1],[1,1,0,0]],[[1,3,1,0],[1,3,3,2],[2,2,3,1],[1,1,0,0]],[[2,2,1,0],[1,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,2,1,0],[1,3,3,3],[2,2,3,1],[0,2,0,0]],[[1,2,1,0],[1,3,4,2],[2,2,3,1],[0,2,0,0]],[[1,2,1,0],[1,4,3,2],[2,2,3,1],[0,2,0,0]],[[1,3,1,0],[1,3,3,2],[2,2,3,1],[0,2,0,0]],[[2,2,1,0],[1,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,2,1,0],[1,3,4,2],[2,2,3,0],[1,2,0,0]],[[1,2,1,0],[1,4,3,2],[2,2,3,0],[1,2,0,0]],[[1,3,1,0],[1,3,3,2],[2,2,3,0],[1,2,0,0]],[[2,2,1,0],[1,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,2,1,0],[1,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[2,2,3,0],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[2,2,3,0],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[2,2,3,0],[1,0,2,0]],[[1,2,1,0],[1,4,3,2],[2,2,3,0],[1,0,2,0]],[[1,3,1,0],[1,3,3,2],[2,2,3,0],[1,0,2,0]],[[2,2,1,0],[1,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[2,2,3,0],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,2,3,0],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,2,3,0],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[2,2,3,0],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[2,2,3,0],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[2,2,3,0],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[2,2,2,1],[1,2,0,0]],[[1,2,1,0],[1,3,4,2],[2,2,2,1],[1,2,0,0]],[[1,2,1,0],[1,4,3,2],[2,2,2,1],[1,2,0,0]],[[1,3,1,0],[1,3,3,2],[2,2,2,1],[1,2,0,0]],[[2,2,1,0],[1,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,2,1,0],[1,3,3,3],[2,2,2,1],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[2,2,2,1],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[2,2,2,1],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[2,2,2,1],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,2,1,0],[1,3,3,3],[2,2,2,1],[1,1,0,1]],[[1,2,1,0],[1,3,4,2],[2,2,2,1],[1,1,0,1]],[[1,2,1,0],[1,4,3,2],[2,2,2,1],[1,1,0,1]],[[1,3,1,0],[1,3,3,2],[2,2,2,1],[1,1,0,1]],[[2,2,1,0],[1,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,2,1,0],[1,3,3,3],[2,2,2,1],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[2,2,2,1],[1,0,2,0]],[[1,2,1,0],[1,4,3,2],[2,2,2,1],[1,0,2,0]],[[1,3,1,0],[1,3,3,2],[2,2,2,1],[1,0,2,0]],[[2,2,1,0],[1,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,1,0],[1,3,3,3],[2,2,2,1],[1,0,1,1]],[[1,2,1,0],[1,3,4,2],[2,2,2,1],[1,0,1,1]],[[1,2,1,0],[1,4,3,2],[2,2,2,1],[1,0,1,1]],[[1,3,1,0],[1,3,3,2],[2,2,2,1],[1,0,1,1]],[[2,2,1,0],[1,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,2,1,0],[1,3,3,3],[2,2,2,1],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[2,2,2,1],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,2,2,1],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,2,2,1],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,2,1,0],[1,3,3,3],[2,2,2,1],[0,2,0,1]],[[1,2,1,0],[1,3,4,2],[2,2,2,1],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[2,2,2,1],[0,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,2,2,1],[0,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,2,1,0],[1,3,3,3],[2,2,2,1],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[2,2,2,1],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[2,2,2,1],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[2,2,2,1],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[2,2,2,1],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[2,2,2,1],[0,1,1,1]],[[1,2,1,0],[1,4,3,2],[2,2,2,1],[0,1,1,1]],[[1,3,1,0],[1,3,3,2],[2,2,2,1],[0,1,1,1]],[[2,2,1,0],[1,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[2,2,2,0],[1,2,0,1]],[[1,2,1,0],[1,4,3,2],[2,2,2,0],[1,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,2,2,0],[1,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,2,1,0],[1,3,3,3],[2,2,2,0],[1,1,1,1]],[[1,2,1,0],[1,3,4,2],[2,2,2,0],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[2,2,2,0],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[2,2,2,0],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[2,2,2,0],[1,0,2,1]],[[1,2,1,0],[1,3,4,2],[2,2,2,0],[1,0,2,1]],[[1,2,1,0],[1,4,3,2],[2,2,2,0],[1,0,2,1]],[[1,3,1,0],[1,3,3,2],[2,2,2,0],[1,0,2,1]],[[2,2,1,0],[1,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,1,0],[1,3,3,3],[2,2,2,0],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[2,2,2,0],[0,2,1,1]],[[1,2,1,0],[1,4,3,2],[2,2,2,0],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[2,2,2,0],[0,2,1,1]],[[2,2,1,0],[1,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[2,2,2,0],[0,1,2,1]],[[1,2,1,0],[1,3,4,2],[2,2,2,0],[0,1,2,1]],[[1,2,1,0],[1,4,3,2],[2,2,2,0],[0,1,2,1]],[[1,3,1,0],[1,3,3,2],[2,2,2,0],[0,1,2,1]],[[2,2,1,0],[1,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,2,1,0],[1,3,3,3],[2,2,1,2],[1,2,0,0]],[[1,2,1,0],[1,3,4,2],[2,2,1,2],[1,2,0,0]],[[1,2,1,0],[1,4,3,2],[2,2,1,2],[1,2,0,0]],[[1,3,1,0],[1,3,3,2],[2,2,1,2],[1,2,0,0]],[[2,2,1,0],[1,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,2,1,0],[1,3,3,2],[2,2,1,3],[1,1,1,0]],[[1,2,1,0],[1,3,3,3],[2,2,1,2],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[2,2,1,2],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[2,2,1,2],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[2,2,1,2],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[2,2,1,2],[1,1,0,2]],[[1,2,1,0],[1,3,3,2],[2,2,1,3],[1,1,0,1]],[[1,2,1,0],[1,3,3,3],[2,2,1,2],[1,1,0,1]],[[1,2,1,0],[1,3,4,2],[2,2,1,2],[1,1,0,1]],[[1,2,1,0],[1,4,3,2],[2,2,1,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,2],[2,2,1,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,1,0],[1,3,3,2],[2,2,1,3],[1,0,2,0]],[[1,2,1,0],[1,3,3,3],[2,2,1,2],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[2,2,1,2],[1,0,2,0]],[[1,2,1,0],[1,4,3,2],[2,2,1,2],[1,0,2,0]],[[1,3,1,0],[1,3,3,2],[2,2,1,2],[1,0,2,0]],[[2,2,1,0],[1,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[2,2,1,2],[1,0,1,2]],[[1,2,1,0],[1,3,3,2],[2,2,1,3],[1,0,1,1]],[[1,2,1,0],[1,3,3,3],[2,2,1,2],[1,0,1,1]],[[1,2,1,0],[1,3,4,2],[2,2,1,2],[1,0,1,1]],[[1,2,1,0],[1,4,3,2],[2,2,1,2],[1,0,1,1]],[[1,3,1,0],[1,3,3,2],[2,2,1,2],[1,0,1,1]],[[2,2,1,0],[1,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,1,0],[1,3,3,2],[2,2,1,3],[0,2,1,0]],[[1,2,1,0],[1,3,3,3],[2,2,1,2],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[2,2,1,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,2,1,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,2,1,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[2,2,1,2],[0,2,0,2]],[[1,2,1,0],[1,3,3,2],[2,2,1,3],[0,2,0,1]],[[1,2,1,0],[1,3,3,3],[2,2,1,2],[0,2,0,1]],[[1,2,1,0],[1,3,4,2],[2,2,1,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[2,2,1,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,2,1,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,1,0],[1,3,3,2],[2,2,1,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[2,2,1,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[2,2,1,2],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[2,2,1,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[2,2,1,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[2,2,1,2],[0,1,1,2]],[[1,2,1,0],[1,3,3,2],[2,2,1,3],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[2,2,1,2],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[2,2,1,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,2],[2,2,1,2],[0,1,1,1]],[[1,3,1,0],[1,3,3,2],[2,2,1,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[2,2,1,1],[1,1,2,0]],[[1,2,1,0],[1,3,4,2],[2,2,1,1],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[2,2,1,1],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[2,2,1,1],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,2,1,0],[1,3,3,3],[2,2,1,1],[0,2,2,0]],[[1,2,1,0],[1,3,4,2],[2,2,1,1],[0,2,2,0]],[[1,2,1,0],[1,4,3,2],[2,2,1,1],[0,2,2,0]],[[1,3,1,0],[1,3,3,2],[2,2,1,1],[0,2,2,0]],[[2,2,1,0],[1,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,0],[0,1,4,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[0,1,3,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,0],[0,1,3,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,0],[0,1,3,2],[1,2,2,2]],[[1,1,1,1],[1,3,3,0],[0,2,4,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,0],[0,2,3,2],[1,1,3,1]],[[1,1,1,1],[1,3,3,0],[0,2,3,2],[1,1,2,2]],[[1,1,1,1],[1,3,3,0],[0,3,4,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,0],[0,3,3,2],[0,1,3,1]],[[1,1,1,1],[1,3,3,0],[0,3,3,2],[0,1,2,2]],[[1,1,1,1],[1,3,3,0],[1,1,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,1,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,1,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,0],[1,1,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,0],[1,1,2,2],[1,2,2,2]],[[1,1,1,1],[1,4,3,0],[1,1,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,4,0],[1,1,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,1,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,1,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,1,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,3,0],[1,1,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,3,0],[1,1,3,1],[1,2,2,2]],[[1,1,1,1],[1,3,3,0],[1,1,4,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,1,3,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,0],[1,1,3,2],[0,2,2,2]],[[1,1,1,1],[1,4,3,0],[1,1,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,4,0],[1,1,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,0],[1,1,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,0],[1,1,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,3,0],[1,1,3,2],[1,2,1,2]],[[1,1,1,1],[1,4,3,0],[1,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,0],[1,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,0],[1,1,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,0],[1,1,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,3,0],[1,1,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,3,0],[1,1,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,3,0],[1,1,3,2],[1,2,3,0]],[[1,1,1,1],[1,3,3,0],[1,2,2,3],[1,1,2,1]],[[1,1,1,1],[1,3,3,0],[1,2,2,2],[1,1,3,1]],[[1,1,1,1],[1,3,3,0],[1,2,2,2],[1,1,2,2]],[[1,1,1,1],[1,4,3,0],[1,2,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,4,0],[1,2,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,0],[1,2,4,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,0],[1,2,3,1],[1,1,3,1]],[[1,1,1,1],[1,3,3,0],[1,2,3,1],[1,1,2,2]],[[1,1,1,1],[1,4,3,0],[1,2,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,4,0],[1,2,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,0],[1,2,4,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,0],[1,2,4,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,0],[1,2,3,2],[0,1,3,1]],[[1,1,1,1],[1,3,3,0],[1,2,3,2],[0,1,2,2]],[[1,1,1,1],[1,4,3,0],[1,2,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,0],[1,2,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,0],[1,2,4,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,0],[1,2,3,3],[1,1,1,1]],[[1,1,1,1],[1,3,3,0],[1,2,3,2],[1,1,1,2]],[[1,1,1,1],[1,4,3,0],[1,2,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,0],[1,2,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,0],[1,2,4,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,0],[1,2,3,3],[1,1,2,0]],[[1,1,1,1],[1,3,3,0],[1,2,3,2],[1,1,3,0]],[[1,1,1,1],[1,4,3,0],[1,2,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,4,0],[1,2,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,0],[1,2,4,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,0],[1,2,3,3],[1,2,0,1]],[[1,1,1,1],[1,3,3,0],[1,2,3,2],[1,2,0,2]],[[1,1,1,1],[1,4,3,0],[1,2,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,4,0],[1,2,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,0],[1,2,4,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,0],[1,2,3,3],[1,2,1,0]],[[1,2,1,0],[1,3,3,3],[2,2,1,0],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[2,2,1,0],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[2,2,1,0],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[2,2,1,0],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[2,2,1,0],[0,2,2,1]],[[1,1,1,1],[1,4,3,0],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,4,0],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,4,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,3,0,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,3,0,2],[2,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,3,0,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,0],[1,3,0,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,0],[1,3,0,2],[1,2,2,2]],[[1,1,1,1],[1,4,3,0],[1,3,1,1],[1,2,2,1]],[[1,1,1,1],[1,3,4,0],[1,3,1,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,4,1,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,3,1,1],[2,2,2,1]],[[1,1,1,1],[1,3,3,0],[1,3,1,1],[1,3,2,1]],[[1,1,1,1],[1,3,3,0],[1,3,1,1],[1,2,3,1]],[[1,1,1,1],[1,3,3,0],[1,3,1,1],[1,2,2,2]],[[1,1,1,1],[1,4,3,0],[1,3,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,0],[1,3,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,0],[1,4,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,0],[1,3,1,2],[2,2,2,0]],[[1,1,1,1],[1,3,3,0],[1,3,1,2],[1,3,2,0]],[[1,1,1,1],[1,3,3,0],[1,3,1,2],[1,2,3,0]],[[1,1,1,1],[1,4,3,0],[1,3,2,1],[1,1,2,1]],[[1,1,1,1],[1,3,4,0],[1,3,2,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,0],[1,4,2,1],[1,1,2,1]],[[1,1,1,1],[1,4,3,0],[1,3,2,1],[1,2,1,1]],[[1,1,1,1],[1,3,4,0],[1,3,2,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,0],[1,4,2,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,0],[1,3,2,1],[2,2,1,1]],[[1,1,1,1],[1,3,3,0],[1,3,2,1],[1,3,1,1]],[[1,1,1,1],[1,4,3,0],[1,3,2,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,0],[1,3,2,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,0],[1,4,2,2],[1,1,1,1]],[[1,1,1,1],[1,4,3,0],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,0],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,0],[1,4,2,2],[1,1,2,0]],[[1,1,1,1],[1,4,3,0],[1,3,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,4,0],[1,3,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,0],[1,4,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,0],[1,3,2,2],[2,2,0,1]],[[1,1,1,1],[1,3,3,0],[1,3,2,2],[1,3,0,1]],[[1,1,1,1],[1,4,3,0],[1,3,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,4,0],[1,3,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,0],[1,4,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,0],[1,3,2,2],[2,2,1,0]],[[1,1,1,1],[1,3,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,1,0],[1,3,4,2],[2,2,1,0],[0,2,2,1]],[[1,2,1,0],[1,4,3,2],[2,2,1,0],[0,2,2,1]],[[1,3,1,0],[1,3,3,2],[2,2,1,0],[0,2,2,1]],[[2,2,1,0],[1,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,1,1],[1,4,3,0],[1,3,3,2],[1,2,0,0]],[[1,1,1,1],[1,3,4,0],[1,3,3,2],[1,2,0,0]],[[1,1,1,1],[1,3,3,0],[1,4,3,2],[1,2,0,0]],[[1,2,1,0],[1,3,3,2],[2,2,0,3],[1,1,2,0]],[[1,2,1,0],[1,3,3,3],[2,2,0,2],[1,1,2,0]],[[1,2,1,0],[1,3,4,2],[2,2,0,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[2,2,0,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[2,2,0,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[2,2,0,2],[1,1,1,2]],[[1,2,1,0],[1,3,3,2],[2,2,0,3],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[2,2,0,2],[1,1,1,1]],[[1,2,1,0],[1,3,4,2],[2,2,0,2],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[2,2,0,2],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[2,2,0,2],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[2,2,0,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,2],[2,2,0,2],[1,0,3,1]],[[1,2,1,0],[1,3,3,2],[2,2,0,3],[1,0,2,1]],[[1,2,1,0],[1,3,3,3],[2,2,0,2],[1,0,2,1]],[[1,2,1,0],[1,3,4,2],[2,2,0,2],[1,0,2,1]],[[1,2,1,0],[1,4,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,0],[3,0,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,0,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,0,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,0,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,0],[2,0,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,0],[2,0,2,2],[1,2,2,2]],[[1,1,1,1],[1,4,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,4,0],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[3,0,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,0,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,0,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,0,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,3,0],[2,0,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,3,0],[2,0,3,1],[1,2,2,2]],[[1,1,1,1],[1,4,3,0],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,4,0],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,0],[2,0,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,0],[2,0,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,3,0],[2,0,3,2],[1,2,1,2]],[[1,1,1,1],[1,4,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,0],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,0],[3,0,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,0,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,0,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,0,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,0,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,3,0],[2,0,3,2],[1,2,3,0]],[[1,1,1,1],[1,3,3,0],[2,1,2,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,1,2,2],[0,3,2,1]],[[1,1,1,1],[1,3,3,0],[2,1,2,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,0],[2,1,2,2],[0,2,2,2]],[[1,1,1,1],[1,4,3,0],[2,1,3,1],[0,2,2,1]],[[1,1,1,1],[1,3,4,0],[2,1,3,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,1,4,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,1,3,1],[0,3,2,1]],[[1,1,1,1],[1,3,3,0],[2,1,3,1],[0,2,3,1]],[[1,1,1,1],[1,3,3,0],[2,1,3,1],[0,2,2,2]],[[1,1,1,1],[1,4,3,0],[2,1,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,4,0],[2,1,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,0],[2,1,4,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,0],[2,1,3,3],[0,2,1,1]],[[1,1,1,1],[1,3,3,0],[2,1,3,2],[0,2,1,2]],[[1,1,1,1],[1,4,3,0],[2,1,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,4,0],[2,1,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,1,4,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,1,3,3],[0,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,1,3,2],[0,3,2,0]],[[1,1,1,1],[1,3,3,0],[2,1,3,2],[0,2,3,0]],[[1,3,1,0],[1,3,3,2],[2,2,0,2],[1,0,2,1]],[[2,2,1,0],[1,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,0],[3,2,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,0,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,0,2],[2,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,0,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,0,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,0],[2,2,0,2],[1,2,2,2]],[[1,1,1,1],[1,3,3,0],[3,2,1,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,1,1],[2,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,1,1],[1,3,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,1,1],[1,2,3,1]],[[1,1,1,1],[1,3,3,0],[2,2,1,1],[1,2,2,2]],[[1,1,1,1],[1,3,3,0],[3,2,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,2,1,2],[2,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,2,1,2],[1,3,2,0]],[[1,1,1,1],[1,3,3,0],[2,2,1,2],[1,2,3,0]],[[1,1,1,1],[1,3,3,0],[3,2,2,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,0],[2,2,2,1],[2,2,1,1]],[[1,1,1,1],[1,3,3,0],[2,2,2,1],[1,3,1,1]],[[1,1,1,1],[1,3,3,0],[2,2,2,3],[0,1,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,2,2],[0,1,3,1]],[[1,1,1,1],[1,3,3,0],[2,2,2,2],[0,1,2,2]],[[1,1,1,1],[1,3,3,0],[2,2,2,3],[1,0,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,2,2],[1,0,3,1]],[[1,1,1,1],[1,3,3,0],[2,2,2,2],[1,0,2,2]],[[1,1,1,1],[1,3,3,0],[3,2,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,0],[2,2,2,2],[2,2,0,1]],[[1,1,1,1],[1,3,3,0],[2,2,2,2],[1,3,0,1]],[[1,1,1,1],[1,3,3,0],[3,2,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,0],[2,2,2,2],[2,2,1,0]],[[1,1,1,1],[1,3,3,0],[2,2,2,2],[1,3,1,0]],[[1,2,1,0],[1,3,3,2],[2,2,0,3],[0,2,2,0]],[[1,2,1,0],[1,3,3,3],[2,2,0,2],[0,2,2,0]],[[1,2,1,0],[1,3,4,2],[2,2,0,2],[0,2,2,0]],[[1,2,1,0],[1,4,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,1,1],[1,4,3,0],[2,2,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,4,0],[2,2,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,4,1],[0,1,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,1],[0,1,3,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,1],[0,1,2,2]],[[1,1,1,1],[1,4,3,0],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,4,0],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,0],[2,2,4,1],[0,2,1,1]],[[1,1,1,1],[1,4,3,0],[2,2,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,4,0],[2,2,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,4,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,1],[1,0,3,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,1],[1,0,2,2]],[[1,1,1,1],[1,4,3,0],[2,2,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,4,0],[2,2,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,3,0],[2,2,4,1],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[2,2,0,2],[0,2,2,0]],[[2,2,1,0],[1,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,1,0],[1,3,3,2],[2,2,0,2],[0,2,1,2]],[[1,2,1,0],[1,3,3,2],[2,2,0,3],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[2,2,0,2],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[2,2,0,2],[0,2,1,1]],[[1,2,1,0],[1,4,3,2],[2,2,0,2],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,1,1],[1,4,3,0],[2,2,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,4,0],[2,2,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,4,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,2],[0,0,2,2]],[[1,1,1,1],[1,4,3,0],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,0],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,0],[2,2,4,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,2],[0,1,1,2]],[[1,1,1,1],[1,4,3,0],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,0],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,0],[2,2,4,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,0],[2,2,3,3],[0,1,2,0]],[[1,1,1,1],[1,3,3,0],[2,2,3,2],[0,1,3,0]],[[1,1,1,1],[1,4,3,0],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,0],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,0],[2,2,4,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,3],[0,2,0,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,2],[0,2,0,2]],[[1,1,1,1],[1,4,3,0],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,0],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,0],[2,2,4,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,0],[2,2,3,3],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,1,0],[1,3,3,2],[2,2,0,2],[0,1,2,2]],[[1,2,1,0],[1,3,3,2],[2,2,0,2],[0,1,3,1]],[[1,2,1,0],[1,3,3,2],[2,2,0,3],[0,1,2,1]],[[1,2,1,0],[1,3,3,3],[2,2,0,2],[0,1,2,1]],[[1,2,1,0],[1,3,4,2],[2,2,0,2],[0,1,2,1]],[[1,2,1,0],[1,4,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,1,1],[1,4,3,0],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,0],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,0],[2,2,4,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,3],[1,0,1,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,2],[1,0,1,2]],[[1,1,1,1],[1,4,3,0],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,0],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,0],[2,2,4,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,0],[2,2,3,3],[1,0,2,0]],[[1,1,1,1],[1,3,3,0],[2,2,3,2],[1,0,3,0]],[[1,1,1,1],[1,4,3,0],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,4,0],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,0],[2,2,4,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,3],[1,1,0,1]],[[1,1,1,1],[1,3,3,0],[2,2,3,2],[1,1,0,2]],[[1,1,1,1],[1,4,3,0],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,4,0],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,0],[2,2,4,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,0],[2,2,3,3],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[2,2,0,2],[0,1,2,1]],[[2,2,1,0],[1,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,1,0],[1,4,3,2],[2,2,0,1],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[2,2,0,1],[1,2,2,0]],[[2,2,1,0],[1,3,3,2],[2,2,0,1],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[2,2,0,1],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[2,2,0,1],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[2,2,0,1],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[2,2,0,1],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[2,2,0,1],[0,2,2,1]],[[1,2,1,0],[1,3,4,2],[2,2,0,1],[0,2,2,1]],[[1,2,1,0],[1,4,3,2],[2,2,0,1],[0,2,2,1]],[[1,3,1,0],[1,3,3,2],[2,2,0,1],[0,2,2,1]],[[2,2,1,0],[1,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,2,1,0],[1,4,3,2],[2,2,0,0],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[2,2,0,0],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[2,2,0,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[3,3,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,3,0,1],[2,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,3,0,1],[1,3,2,1]],[[1,1,1,1],[1,4,3,0],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,4,0],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,0],[3,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,4,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,3,0,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,3,0,2],[0,3,2,1]],[[1,1,1,1],[1,3,3,0],[2,3,0,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,0],[2,3,0,2],[0,2,2,2]],[[1,1,1,1],[1,4,3,0],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,4,0],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,0],[3,3,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,0],[2,4,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,0],[2,3,0,2],[2,1,2,1]],[[1,1,1,1],[1,3,3,0],[3,3,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,3,0,2],[2,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,3,0,2],[1,3,2,0]],[[1,1,1,1],[1,4,3,0],[2,3,1,1],[0,2,2,1]],[[1,1,1,1],[1,3,4,0],[2,3,1,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,0],[3,3,1,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,4,1,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,0],[2,3,1,1],[0,3,2,1]],[[1,1,1,1],[1,3,3,0],[2,3,1,1],[0,2,3,1]],[[1,1,1,1],[1,3,3,0],[2,3,1,1],[0,2,2,2]],[[1,1,1,1],[1,4,3,0],[2,3,1,1],[1,1,2,1]],[[1,1,1,1],[1,3,4,0],[2,3,1,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,0],[3,3,1,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,0],[2,4,1,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,0],[2,3,1,1],[2,1,2,1]],[[1,1,1,1],[1,4,3,0],[2,3,1,2],[0,2,2,0]],[[1,1,1,1],[1,3,4,0],[2,3,1,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,0],[3,3,1,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,4,1,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,0],[2,3,1,2],[0,3,2,0]],[[1,1,1,1],[1,3,3,0],[2,3,1,2],[0,2,3,0]],[[1,1,1,1],[1,4,3,0],[2,3,1,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,0],[2,3,1,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,0],[3,3,1,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,0],[2,4,1,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,0],[2,3,1,2],[2,1,2,0]],[[1,1,1,1],[1,4,3,0],[2,3,2,1],[0,1,2,1]],[[1,1,1,1],[1,3,4,0],[2,3,2,1],[0,1,2,1]],[[1,1,1,1],[1,3,3,0],[3,3,2,1],[0,1,2,1]],[[1,1,1,1],[1,3,3,0],[2,4,2,1],[0,1,2,1]],[[1,1,1,1],[1,4,3,0],[2,3,2,1],[0,2,1,1]],[[1,1,1,1],[1,3,4,0],[2,3,2,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,0],[3,3,2,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,0],[2,4,2,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,0],[2,3,2,1],[0,3,1,1]],[[1,1,1,1],[1,4,3,0],[2,3,2,1],[1,0,2,1]],[[1,1,1,1],[1,3,4,0],[2,3,2,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,0],[3,3,2,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,0],[2,4,2,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,0],[2,3,2,1],[2,0,2,1]],[[1,1,1,1],[1,4,3,0],[2,3,2,1],[1,1,1,1]],[[1,1,1,1],[1,3,4,0],[2,3,2,1],[1,1,1,1]],[[1,1,1,1],[1,3,3,0],[3,3,2,1],[1,1,1,1]],[[1,1,1,1],[1,3,3,0],[2,4,2,1],[1,1,1,1]],[[1,1,1,1],[1,3,3,0],[2,3,2,1],[2,1,1,1]],[[1,1,1,1],[1,4,3,0],[2,3,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,0],[3,3,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,0],[2,4,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,0],[2,3,2,1],[2,2,0,1]],[[1,1,1,1],[1,4,3,0],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,0],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,0],[3,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,0],[2,4,2,2],[0,1,1,1]],[[1,1,1,1],[1,4,3,0],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,0],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,0],[3,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,0],[2,4,2,2],[0,1,2,0]],[[1,1,1,1],[1,4,3,0],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,0],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,0],[3,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,0],[2,4,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,0],[2,3,2,2],[0,3,0,1]],[[1,1,1,1],[1,4,3,0],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,0],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,0],[3,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,0],[2,4,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,0],[2,3,2,2],[0,3,1,0]],[[1,1,1,1],[1,4,3,0],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,0],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,0],[3,3,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,0],[2,4,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,0],[2,3,2,2],[2,0,1,1]],[[1,1,1,1],[1,4,3,0],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,0],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,0],[3,3,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,0],[2,4,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,0],[2,3,2,2],[2,0,2,0]],[[1,1,1,1],[1,4,3,0],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,4,0],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,0],[3,3,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,0],[2,4,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,0],[2,3,2,2],[2,1,0,1]],[[1,1,1,1],[1,4,3,0],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,4,0],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,0],[3,3,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,0],[2,4,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,0],[2,3,2,2],[2,1,1,0]],[[1,2,1,0],[1,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,1,0],[1,3,3,3],[2,1,3,2],[1,0,0,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,2],[1,0,0,1]],[[1,2,1,0],[1,4,3,2],[2,1,3,2],[1,0,0,1]],[[1,3,1,0],[1,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,1,1],[1,4,3,0],[2,3,2,2],[1,2,0,0]],[[1,1,1,1],[1,3,4,0],[2,3,2,2],[1,2,0,0]],[[1,1,1,1],[1,3,3,0],[3,3,2,2],[1,2,0,0]],[[1,1,1,1],[1,3,3,0],[2,4,2,2],[1,2,0,0]],[[1,1,1,1],[1,3,3,0],[2,3,2,2],[2,2,0,0]],[[2,2,1,0],[1,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,1,1],[1,4,3,0],[2,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,4,0],[2,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,3,0],[2,3,4,1],[0,0,2,1]],[[1,2,1,0],[1,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,1,0],[1,3,3,3],[2,1,3,2],[0,1,0,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,2],[0,1,0,1]],[[1,2,1,0],[1,4,3,2],[2,1,3,2],[0,1,0,1]],[[1,3,1,0],[1,3,3,2],[2,1,3,2],[0,1,0,1]],[[2,2,1,0],[1,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,1,1],[1,4,3,0],[2,3,3,2],[0,0,1,1]],[[1,1,1,1],[1,3,4,0],[2,3,3,2],[0,0,1,1]],[[1,1,1,1],[1,3,3,0],[2,3,4,2],[0,0,1,1]],[[1,1,1,1],[1,3,3,0],[2,3,3,3],[0,0,1,1]],[[1,1,1,1],[1,3,3,0],[2,3,3,2],[0,0,1,2]],[[1,1,1,1],[1,4,3,0],[2,3,3,2],[0,0,2,0]],[[1,1,1,1],[1,3,4,0],[2,3,3,2],[0,0,2,0]],[[1,1,1,1],[1,3,3,0],[2,3,4,2],[0,0,2,0]],[[1,1,1,1],[1,3,3,0],[2,3,3,3],[0,0,2,0]],[[1,1,1,1],[1,4,3,0],[2,3,3,2],[0,2,0,0]],[[1,1,1,1],[1,3,4,0],[2,3,3,2],[0,2,0,0]],[[1,1,1,1],[1,3,3,0],[3,3,3,2],[0,2,0,0]],[[1,1,1,1],[1,3,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,1,0],[1,3,3,2],[2,1,4,1],[1,1,1,0]],[[1,2,1,0],[1,3,3,3],[2,1,3,1],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[2,1,3,1],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[2,1,3,1],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[2,1,3,1],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[2,1,4,1],[1,1,0,1]],[[1,2,1,0],[1,3,3,3],[2,1,3,1],[1,1,0,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,1],[1,1,0,1]],[[1,2,1,0],[1,4,3,2],[2,1,3,1],[1,1,0,1]],[[1,3,1,0],[1,3,3,2],[2,1,3,1],[1,1,0,1]],[[2,2,1,0],[1,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,1,0],[1,3,3,2],[2,1,3,1],[1,0,3,0]],[[1,2,1,0],[1,3,3,2],[2,1,4,1],[1,0,2,0]],[[1,2,1,0],[1,3,3,3],[2,1,3,1],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[2,1,3,1],[1,0,2,0]],[[1,2,1,0],[1,4,3,2],[2,1,3,1],[1,0,2,0]],[[1,3,1,0],[1,3,3,2],[2,1,3,1],[1,0,2,0]],[[2,2,1,0],[1,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[2,1,4,1],[1,0,1,1]],[[1,2,1,0],[1,3,3,3],[2,1,3,1],[1,0,1,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,1],[1,0,1,1]],[[1,2,1,0],[1,4,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,1,1],[1,4,3,0],[2,3,3,2],[1,1,0,0]],[[1,1,1,1],[1,3,4,0],[2,3,3,2],[1,1,0,0]],[[1,1,1,1],[1,3,3,0],[3,3,3,2],[1,1,0,0]],[[1,1,1,1],[1,3,3,0],[2,4,3,2],[1,1,0,0]],[[1,1,1,1],[1,3,3,0],[2,3,3,2],[2,1,0,0]],[[1,3,1,0],[1,3,3,2],[2,1,3,1],[1,0,1,1]],[[2,2,1,0],[1,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,1,0],[1,3,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,1,0],[1,3,3,3],[2,1,3,1],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[2,1,3,1],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,1,3,1],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,1,3,1],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[2,1,4,1],[0,2,0,1]],[[1,2,1,0],[1,3,3,3],[2,1,3,1],[0,2,0,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,1],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[2,1,3,1],[0,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,1,3,1],[0,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,1,0],[1,3,3,2],[2,1,3,1],[0,1,3,0]],[[1,2,1,0],[1,3,3,2],[2,1,4,1],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[2,1,3,1],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[2,1,3,1],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[2,1,3,1],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[2,1,3,1],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[2,1,4,1],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[2,1,3,1],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,1],[0,1,1,1]],[[1,2,1,0],[1,4,3,2],[2,1,3,1],[0,1,1,1]],[[1,3,1,0],[1,3,3,2],[2,1,3,1],[0,1,1,1]],[[2,2,1,0],[1,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[2,1,4,1],[0,0,2,1]],[[1,2,1,0],[1,3,3,3],[2,1,3,1],[0,0,2,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,1],[0,0,2,1]],[[1,2,1,0],[1,4,3,2],[2,1,3,1],[0,0,2,1]],[[1,3,1,0],[1,3,3,2],[2,1,3,1],[0,0,2,1]],[[2,2,1,0],[1,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,0],[1,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,1,3,0],[1,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,1,3,0],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[0,0,3,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,0,3,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[0,0,3,2],[1,2,2,2]],[[1,1,1,1],[1,3,3,1],[0,1,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,1,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,1,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[0,1,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[0,1,2,2],[1,2,2,2]],[[1,1,1,1],[1,4,3,1],[0,1,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,4,1],[0,1,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,1,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,1,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,1,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[0,1,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[0,1,3,1],[1,2,2,2]],[[1,1,1,1],[1,4,3,1],[0,1,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,4,1],[0,1,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[0,1,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[0,1,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[0,1,3,2],[1,2,1,2]],[[1,1,1,1],[1,4,3,1],[0,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,1],[0,1,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[0,1,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[0,1,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[0,1,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,3,1],[0,1,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,3,1],[0,1,3,2],[1,2,3,0]],[[1,1,1,1],[1,3,3,1],[0,2,2,3],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[0,2,2,2],[1,1,3,1]],[[1,1,1,1],[1,3,3,1],[0,2,2,2],[1,1,2,2]],[[1,1,1,1],[1,4,3,1],[0,2,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,4,1],[0,2,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[0,2,4,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[0,2,3,1],[1,1,3,1]],[[1,1,1,1],[1,3,3,1],[0,2,3,1],[1,1,2,2]],[[1,1,1,1],[1,4,3,1],[0,2,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,4,1],[0,2,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[0,2,4,1],[1,2,1,1]],[[1,1,1,1],[1,4,3,1],[0,2,3,2],[1,0,2,1]],[[1,1,1,1],[1,3,4,1],[0,2,3,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[0,2,4,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[0,2,3,3],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[0,2,3,2],[1,0,2,2]],[[1,1,1,1],[1,4,3,1],[0,2,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,1],[0,2,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[0,2,4,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[0,2,3,3],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[0,2,3,2],[1,1,1,2]],[[1,1,1,1],[1,4,3,1],[0,2,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,1],[0,2,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[0,2,4,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[0,2,3,3],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[0,2,3,2],[1,1,3,0]],[[1,1,1,1],[1,4,3,1],[0,2,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,4,1],[0,2,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[0,2,4,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[0,2,3,3],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[0,2,3,2],[1,2,0,2]],[[1,1,1,1],[1,4,3,1],[0,2,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,4,1],[0,2,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[0,2,4,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,1,0],[1,3,3,2],[2,1,4,0],[1,1,1,1]],[[1,1,1,1],[1,4,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,4,1],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,4,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,0,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,0,2],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,0,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,0,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[0,3,0,2],[1,2,2,2]],[[1,1,1,1],[1,4,3,1],[0,3,1,1],[1,2,2,1]],[[1,1,1,1],[1,3,4,1],[0,3,1,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,4,1,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,1,1],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,1,1],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,1,1],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[0,3,1,1],[1,2,2,2]],[[1,1,1,1],[1,4,3,1],[0,3,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,1],[0,3,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[0,4,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[0,3,1,2],[2,2,2,0]],[[1,1,1,1],[1,3,3,1],[0,3,1,2],[1,3,2,0]],[[1,1,1,1],[1,3,3,1],[0,3,1,2],[1,2,3,0]],[[1,1,1,1],[1,4,3,1],[0,3,2,1],[1,1,2,1]],[[1,1,1,1],[1,3,4,1],[0,3,2,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[0,4,2,1],[1,1,2,1]],[[1,1,1,1],[1,4,3,1],[0,3,2,1],[1,2,1,1]],[[1,1,1,1],[1,3,4,1],[0,3,2,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[0,4,2,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[0,3,2,1],[2,2,1,1]],[[1,1,1,1],[1,3,3,1],[0,3,2,1],[1,3,1,1]],[[1,1,1,1],[1,3,3,1],[0,3,2,3],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,2,2],[0,1,3,1]],[[1,1,1,1],[1,3,3,1],[0,3,2,2],[0,1,2,2]],[[1,1,1,1],[1,4,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,1],[0,3,2,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[0,4,2,2],[1,1,1,1]],[[1,1,1,1],[1,4,3,1],[0,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,1],[0,3,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[0,4,2,2],[1,1,2,0]],[[1,1,1,1],[1,4,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,4,1],[0,3,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[0,4,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[0,3,2,2],[2,2,0,1]],[[1,1,1,1],[1,3,3,1],[0,3,2,2],[1,3,0,1]],[[1,1,1,1],[1,4,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,4,1],[0,3,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[0,4,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[0,3,2,2],[2,2,1,0]],[[1,1,1,1],[1,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,2,1,0],[1,3,3,3],[2,1,3,0],[1,1,1,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,0],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[2,1,3,0],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[2,1,3,0],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[2,1,3,0],[1,0,2,2]],[[1,2,1,0],[1,3,3,2],[2,1,3,0],[1,0,3,1]],[[1,2,1,0],[1,3,3,2],[2,1,4,0],[1,0,2,1]],[[1,1,1,1],[1,4,3,1],[0,3,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,4,1],[0,3,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,4,1],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,3,1],[0,1,3,1]],[[1,1,1,1],[1,3,3,1],[0,3,3,1],[0,1,2,2]],[[1,1,1,1],[1,4,3,1],[0,3,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,4,1],[0,3,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[2,1,3,0],[1,0,2,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,0],[1,0,2,1]],[[1,2,1,0],[1,4,3,2],[2,1,3,0],[1,0,2,1]],[[1,3,1,0],[1,3,3,2],[2,1,3,0],[1,0,2,1]],[[2,2,1,0],[1,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,1,1],[1,4,3,1],[0,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,4,1],[0,3,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,4,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,3,1],[0,3,3,2],[0,0,2,2]],[[1,1,1,1],[1,4,3,1],[0,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,1],[0,3,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[0,3,4,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[0,3,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[0,3,3,2],[0,1,1,2]],[[1,1,1,1],[1,4,3,1],[0,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,1],[0,3,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[0,3,4,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[0,3,3,3],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[0,3,3,2],[0,1,3,0]],[[1,1,1,1],[1,4,3,1],[0,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,1],[0,3,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[0,3,4,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[0,3,3,3],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[0,3,3,2],[0,2,0,2]],[[1,1,1,1],[1,4,3,1],[0,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,1],[0,3,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[0,3,4,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[2,1,4,0],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[2,1,3,0],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,0],[0,2,1,1]],[[1,2,1,0],[1,4,3,2],[2,1,3,0],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[2,1,3,0],[0,2,1,1]],[[2,2,1,0],[1,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,1,0],[1,3,3,2],[2,1,3,0],[0,1,2,2]],[[1,1,1,1],[1,4,3,1],[0,3,3,2],[1,2,0,0]],[[1,1,1,1],[1,3,4,1],[0,3,3,2],[1,2,0,0]],[[1,1,1,1],[1,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,2,1,0],[1,3,3,2],[2,1,3,0],[0,1,3,1]],[[1,2,1,0],[1,3,3,2],[2,1,4,0],[0,1,2,1]],[[1,2,1,0],[1,3,3,3],[2,1,3,0],[0,1,2,1]],[[1,2,1,0],[1,3,4,2],[2,1,3,0],[0,1,2,1]],[[1,2,1,0],[1,4,3,2],[2,1,3,0],[0,1,2,1]],[[1,3,1,0],[1,3,3,2],[2,1,3,0],[0,1,2,1]],[[2,2,1,0],[1,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[1,0,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,0,2,2],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,0,2,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[1,0,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[1,0,2,2],[1,2,2,2]],[[1,1,1,1],[1,4,3,1],[1,0,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,4,1],[1,0,3,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,0,4,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,0,3,1],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,0,3,1],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[1,0,3,1],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[1,0,3,1],[1,2,2,2]],[[1,1,1,1],[1,3,3,1],[1,0,3,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,0,3,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,1],[1,0,3,2],[0,2,2,2]],[[1,1,1,1],[1,4,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,4,1],[1,0,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,0,4,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,0,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,0,3,2],[1,2,1,2]],[[1,1,1,1],[1,4,3,1],[1,0,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,1],[1,0,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,0,4,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,0,3,3],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,0,3,2],[2,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,0,3,2],[1,3,2,0]],[[1,1,1,1],[1,3,3,1],[1,0,3,2],[1,2,3,0]],[[1,1,1,1],[1,3,3,1],[1,1,2,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,1,2,2],[0,3,2,1]],[[1,1,1,1],[1,3,3,1],[1,1,2,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,1],[1,1,2,2],[0,2,2,2]],[[1,1,1,1],[1,4,3,1],[1,1,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,4,1],[1,1,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,1,4,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,1,3,0],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,1,3,0],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[1,1,3,0],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[1,1,3,0],[1,2,2,2]],[[1,1,1,1],[1,4,3,1],[1,1,3,1],[0,2,2,1]],[[1,1,1,1],[1,3,4,1],[1,1,3,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,1,4,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,1,3,1],[0,3,2,1]],[[1,1,1,1],[1,3,3,1],[1,1,3,1],[0,2,3,1]],[[1,1,1,1],[1,3,3,1],[1,1,3,1],[0,2,2,2]],[[1,1,1,1],[1,4,3,1],[1,1,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,4,1],[1,1,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,1,4,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,1,3,1],[2,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,1,3,1],[1,3,2,0]],[[1,1,1,1],[1,3,3,1],[1,1,3,1],[1,2,3,0]],[[1,1,1,1],[1,4,3,1],[1,1,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,4,1],[1,1,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,1,4,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,1,3,3],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,1,3,2],[0,2,1,2]],[[1,1,1,1],[1,4,3,1],[1,1,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,4,1],[1,1,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,1,4,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,1,3,3],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,1,3,2],[0,3,2,0]],[[1,1,1,1],[1,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,1,1,1],[1,3,3,1],[1,2,2,3],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[1,2,2,2],[0,1,3,1]],[[1,1,1,1],[1,3,3,1],[1,2,2,2],[0,1,2,2]],[[1,1,1,1],[1,3,3,1],[1,2,2,3],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[1,2,2,2],[1,0,3,1]],[[1,1,1,1],[1,3,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,2],[2,1,2,3],[1,1,1,0]],[[1,2,1,0],[1,3,3,3],[2,1,2,2],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[2,1,2,2],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[2,1,2,2],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,1,1],[1,4,3,1],[1,2,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,4,1],[1,2,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[1,2,4,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,0],[1,1,3,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,0],[1,1,2,2]],[[1,1,1,1],[1,4,3,1],[1,2,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,4,1],[1,2,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,2,4,0],[1,2,1,1]],[[1,1,1,1],[1,4,3,1],[1,2,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,4,1],[1,2,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[1,2,4,1],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,1],[0,1,3,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,1],[0,1,2,2]],[[1,1,1,1],[1,4,3,1],[1,2,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,4,1],[1,2,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,2,4,1],[0,2,1,1]],[[1,1,1,1],[1,4,3,1],[1,2,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,4,1],[1,2,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[1,2,4,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,1],[1,0,3,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,1],[1,0,2,2]],[[1,1,1,1],[1,4,3,1],[1,2,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,4,1],[1,2,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[1,2,4,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[1,2,3,1],[1,1,3,0]],[[1,1,1,1],[1,4,3,1],[1,2,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,4,1],[1,2,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,2,4,1],[1,2,0,1]],[[1,1,1,1],[1,4,3,1],[1,2,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,4,1],[1,2,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,2,4,1],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[2,1,2,2],[1,1,0,2]],[[1,2,1,0],[1,3,3,2],[2,1,2,3],[1,1,0,1]],[[1,2,1,0],[1,3,3,3],[2,1,2,2],[1,1,0,1]],[[1,2,1,0],[1,3,4,2],[2,1,2,2],[1,1,0,1]],[[1,2,1,0],[1,4,3,2],[2,1,2,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,1,1],[1,4,3,1],[1,2,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,4,1],[1,2,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,1],[1,2,4,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,2],[0,0,2,2]],[[1,1,1,1],[1,4,3,1],[1,2,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,1],[1,2,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[1,2,4,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,2],[0,1,1,2]],[[1,1,1,1],[1,4,3,1],[1,2,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,1],[1,2,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[1,2,4,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[1,2,3,3],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[1,2,3,2],[0,1,3,0]],[[1,1,1,1],[1,4,3,1],[1,2,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,1],[1,2,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,2,4,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,3],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,2],[0,2,0,2]],[[1,1,1,1],[1,4,3,1],[1,2,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,1],[1,2,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,2,4,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,2,3,3],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,1,1],[1,4,3,1],[1,2,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,1],[1,2,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[1,2,4,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,3],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,2],[1,0,1,2]],[[1,1,1,1],[1,4,3,1],[1,2,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,1],[1,2,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[1,2,4,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[1,2,3,3],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[1,2,3,2],[1,0,3,0]],[[1,1,1,1],[1,4,3,1],[1,2,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,4,1],[1,2,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[1,2,4,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,3],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[1,2,3,2],[1,1,0,2]],[[1,1,1,1],[1,4,3,1],[1,2,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,4,1],[1,2,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[1,2,4,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[2,1,2,3],[1,0,2,0]],[[1,2,1,0],[1,3,3,3],[2,1,2,2],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[2,1,2,2],[1,0,2,0]],[[1,2,1,0],[1,4,3,2],[2,1,2,2],[1,0,2,0]],[[1,3,1,0],[1,3,3,2],[2,1,2,2],[1,0,2,0]],[[2,2,1,0],[1,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[2,1,2,2],[1,0,1,2]],[[1,2,1,0],[1,3,3,2],[2,1,2,3],[1,0,1,1]],[[1,2,1,0],[1,3,3,3],[2,1,2,2],[1,0,1,1]],[[1,2,1,0],[1,3,4,2],[2,1,2,2],[1,0,1,1]],[[1,2,1,0],[1,4,3,2],[2,1,2,2],[1,0,1,1]],[[1,3,1,0],[1,3,3,2],[2,1,2,2],[1,0,1,1]],[[2,2,1,0],[1,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,1,1],[1,4,3,1],[1,3,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,4,1],[1,3,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,4,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,0,1],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,0,1],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,0,1],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[1,3,0,1],[1,2,2,2]],[[1,1,1,1],[1,4,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,4,1],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,4,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,0,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,0,2],[0,3,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,0,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,1],[1,3,0,2],[0,2,2,2]],[[1,1,1,1],[1,4,3,1],[1,3,0,2],[1,2,1,1]],[[1,1,1,1],[1,3,4,1],[1,3,0,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,4,0,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,3,0,2],[2,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,3,0,2],[1,3,1,1]],[[1,1,1,1],[1,4,3,1],[1,3,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,1],[1,3,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,4,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,3,0,2],[2,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,3,0,2],[1,3,2,0]],[[1,1,1,1],[1,3,3,1],[1,3,0,2],[1,2,3,0]],[[1,1,1,1],[1,4,3,1],[1,3,1,0],[1,2,2,1]],[[1,1,1,1],[1,3,4,1],[1,3,1,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,4,1,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,1,0],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,1,0],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,1,0],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[1,3,1,0],[1,2,2,2]],[[1,1,1,1],[1,4,3,1],[1,3,1,1],[0,2,2,1]],[[1,1,1,1],[1,3,4,1],[1,3,1,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,4,1,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,1,1],[0,3,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,1,1],[0,2,3,1]],[[1,1,1,1],[1,3,3,1],[1,3,1,1],[0,2,2,2]],[[1,1,1,1],[1,4,3,1],[1,3,1,1],[1,2,2,0]],[[1,1,1,1],[1,3,4,1],[1,3,1,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,4,1,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,3,1,1],[2,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,3,1,1],[1,3,2,0]],[[1,1,1,1],[1,3,3,1],[1,3,1,1],[1,2,3,0]],[[1,1,1,1],[1,4,3,1],[1,3,1,2],[0,2,2,0]],[[1,1,1,1],[1,3,4,1],[1,3,1,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,4,1,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[1,3,1,2],[0,3,2,0]],[[1,1,1,1],[1,3,3,1],[1,3,1,2],[0,2,3,0]],[[1,1,1,1],[1,4,3,1],[1,3,1,2],[1,2,0,1]],[[1,1,1,1],[1,3,4,1],[1,3,1,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,4,1,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,3,1,2],[2,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,3,1,2],[1,3,0,1]],[[1,1,1,1],[1,4,3,1],[1,3,1,2],[1,2,1,0]],[[1,1,1,1],[1,3,4,1],[1,3,1,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,4,1,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,3,1,2],[2,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,3,1,2],[1,3,1,0]],[[1,2,1,0],[1,3,3,2],[2,1,2,3],[0,2,1,0]],[[1,2,1,0],[1,3,3,3],[2,1,2,2],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[2,1,2,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,1,2,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,1,2,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,1,1],[1,4,3,1],[1,3,2,0],[1,1,2,1]],[[1,1,1,1],[1,3,4,1],[1,3,2,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[1,4,2,0],[1,1,2,1]],[[1,1,1,1],[1,4,3,1],[1,3,2,0],[1,2,1,1]],[[1,1,1,1],[1,3,4,1],[1,3,2,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,4,2,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,3,2,0],[2,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,3,2,0],[1,3,1,1]],[[1,1,1,1],[1,4,3,1],[1,3,2,1],[0,1,2,1]],[[1,1,1,1],[1,3,4,1],[1,3,2,1],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[1,4,2,1],[0,1,2,1]],[[1,1,1,1],[1,4,3,1],[1,3,2,1],[0,2,1,1]],[[1,1,1,1],[1,3,4,1],[1,3,2,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,4,2,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[1,3,2,1],[0,3,1,1]],[[1,1,1,1],[1,4,3,1],[1,3,2,1],[1,0,2,1]],[[1,1,1,1],[1,3,4,1],[1,3,2,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[1,4,2,1],[1,0,2,1]],[[1,1,1,1],[1,4,3,1],[1,3,2,1],[1,1,2,0]],[[1,1,1,1],[1,3,4,1],[1,3,2,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[1,4,2,1],[1,1,2,0]],[[1,1,1,1],[1,4,3,1],[1,3,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,4,1],[1,3,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,4,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,3,2,1],[2,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,3,2,1],[1,3,0,1]],[[1,1,1,1],[1,4,3,1],[1,3,2,1],[1,2,1,0]],[[1,1,1,1],[1,3,4,1],[1,3,2,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,4,2,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,3,2,1],[2,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,1,0],[1,3,3,2],[2,1,2,2],[0,2,0,2]],[[1,2,1,0],[1,3,3,2],[2,1,2,3],[0,2,0,1]],[[1,2,1,0],[1,3,3,3],[2,1,2,2],[0,2,0,1]],[[1,2,1,0],[1,3,4,2],[2,1,2,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[2,1,2,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,1,2,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,1,1],[1,4,3,1],[1,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,1],[1,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[1,4,2,2],[0,1,1,1]],[[1,1,1,1],[1,4,3,1],[1,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,1],[1,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[1,4,2,2],[0,1,2,0]],[[1,1,1,1],[1,4,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,1],[1,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,4,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[1,3,2,2],[0,3,0,1]],[[1,1,1,1],[1,4,3,1],[1,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,1],[1,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,4,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,3,2,2],[0,3,1,0]],[[1,1,1,1],[1,4,3,1],[1,3,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,1],[1,3,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[1,4,2,2],[1,0,1,1]],[[1,1,1,1],[1,4,3,1],[1,3,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,1],[1,3,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[1,4,2,2],[1,0,2,0]],[[1,1,1,1],[1,4,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,4,1],[1,3,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[1,4,2,2],[1,1,0,1]],[[1,1,1,1],[1,4,3,1],[1,3,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,4,1],[1,3,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[1,4,2,2],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[2,1,2,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[2,1,2,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[2,1,2,2],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[2,1,2,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[2,1,2,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[2,1,2,2],[0,1,1,2]],[[1,2,1,0],[1,3,3,2],[2,1,2,3],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[2,1,2,2],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[2,1,2,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,2],[2,1,2,2],[0,1,1,1]],[[1,3,1,0],[1,3,3,2],[2,1,2,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[2,1,2,2],[0,0,2,2]],[[1,2,1,0],[1,3,3,2],[2,1,2,3],[0,0,2,1]],[[1,2,1,0],[1,3,3,3],[2,1,2,2],[0,0,2,1]],[[1,2,1,0],[1,3,4,2],[2,1,2,2],[0,0,2,1]],[[1,2,1,0],[1,4,3,2],[2,1,2,2],[0,0,2,1]],[[1,3,1,0],[1,3,3,2],[2,1,2,2],[0,0,2,1]],[[2,2,1,0],[1,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,1,1],[1,4,3,1],[1,3,3,0],[1,1,2,0]],[[1,1,1,1],[1,3,4,1],[1,3,3,0],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[1,4,3,0],[1,1,2,0]],[[1,1,1,1],[1,4,3,1],[1,3,3,0],[1,2,1,0]],[[1,1,1,1],[1,3,4,1],[1,3,3,0],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,4,3,0],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,3,3,0],[2,2,1,0]],[[1,1,1,1],[1,3,3,1],[1,3,3,0],[1,3,1,0]],[[1,2,1,0],[1,3,3,3],[2,1,2,1],[1,2,1,0]],[[1,2,1,0],[1,3,4,2],[2,1,2,1],[1,2,1,0]],[[1,1,1,1],[1,4,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,4,1],[1,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,1,0],[1,4,3,2],[2,1,2,1],[1,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,1,2,1],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,1,0],[1,3,3,3],[2,1,2,1],[1,2,0,1]],[[1,2,1,0],[1,3,4,2],[2,1,2,1],[1,2,0,1]],[[1,2,1,0],[1,4,3,2],[2,1,2,1],[1,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,1,2,1],[1,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,1,1],[1,4,3,1],[1,3,3,1],[1,2,0,0]],[[1,1,1,1],[1,3,4,1],[1,3,3,1],[1,2,0,0]],[[1,1,1,1],[1,3,3,1],[1,4,3,1],[1,2,0,0]],[[1,2,1,0],[1,3,3,3],[2,1,2,0],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[2,1,2,0],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[2,1,2,0],[1,2,1,1]],[[1,3,1,0],[1,3,3,2],[2,1,2,0],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[2,1,1,3],[1,2,1,0]],[[1,2,1,0],[1,3,3,3],[2,1,1,2],[1,2,1,0]],[[1,2,1,0],[1,3,4,2],[2,1,1,2],[1,2,1,0]],[[1,1,1,1],[1,4,3,1],[1,3,3,2],[0,0,1,1]],[[1,1,1,1],[1,3,4,1],[1,3,3,2],[0,0,1,1]],[[1,1,1,1],[1,3,3,1],[1,3,4,2],[0,0,1,1]],[[1,1,1,1],[1,3,3,1],[1,3,3,3],[0,0,1,1]],[[1,1,1,1],[1,3,3,1],[1,3,3,2],[0,0,1,2]],[[1,1,1,1],[1,4,3,1],[1,3,3,2],[0,0,2,0]],[[1,1,1,1],[1,3,4,1],[1,3,3,2],[0,0,2,0]],[[1,1,1,1],[1,3,3,1],[1,3,4,2],[0,0,2,0]],[[1,1,1,1],[1,3,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,1,0],[1,4,3,2],[2,1,1,2],[1,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,1,1,2],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,1,0],[1,3,3,2],[2,1,1,2],[1,2,0,2]],[[1,2,1,0],[1,3,3,2],[2,1,1,3],[1,2,0,1]],[[1,2,1,0],[1,3,3,3],[2,1,1,2],[1,2,0,1]],[[1,2,1,0],[1,3,4,2],[2,1,1,2],[1,2,0,1]],[[1,1,1,1],[1,4,3,1],[1,3,3,2],[0,2,0,0]],[[1,1,1,1],[1,3,4,1],[1,3,3,2],[0,2,0,0]],[[1,1,1,1],[1,3,3,1],[1,4,3,2],[0,2,0,0]],[[1,2,1,0],[1,4,3,2],[2,1,1,2],[1,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,1,1,2],[1,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,2,1,0],[1,3,3,2],[2,1,1,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,2],[2,1,1,2],[1,0,3,1]],[[1,2,1,0],[1,3,3,2],[2,1,1,3],[1,0,2,1]],[[1,2,1,0],[1,3,3,3],[2,1,1,2],[1,0,2,1]],[[1,2,1,0],[1,3,4,2],[2,1,1,2],[1,0,2,1]],[[1,2,1,0],[1,4,3,2],[2,1,1,2],[1,0,2,1]],[[1,3,1,0],[1,3,3,2],[2,1,1,2],[1,0,2,1]],[[2,2,1,0],[1,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,1,0],[1,3,3,2],[2,1,1,2],[0,1,2,2]],[[1,1,1,1],[1,4,3,1],[1,3,3,2],[1,1,0,0]],[[1,1,1,1],[1,3,4,1],[1,3,3,2],[1,1,0,0]],[[1,1,1,1],[1,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,1,0],[1,3,3,2],[2,1,1,2],[0,1,3,1]],[[1,2,1,0],[1,3,3,2],[2,1,1,3],[0,1,2,1]],[[1,2,1,0],[1,3,3,3],[2,1,1,2],[0,1,2,1]],[[1,2,1,0],[1,3,4,2],[2,1,1,2],[0,1,2,1]],[[1,2,1,0],[1,4,3,2],[2,1,1,2],[0,1,2,1]],[[1,3,1,0],[1,3,3,2],[2,1,1,2],[0,1,2,1]],[[2,2,1,0],[1,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,1,0],[1,3,3,3],[2,1,1,1],[1,2,2,0]],[[1,2,1,0],[1,3,4,2],[2,1,1,1],[1,2,2,0]],[[1,2,1,0],[1,4,3,2],[2,1,1,1],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[2,1,1,1],[1,2,2,0]],[[2,2,1,0],[1,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[2,1,1,0],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[2,1,1,0],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[2,1,1,0],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[2,1,1,0],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,2,1,0],[1,3,3,2],[2,1,0,3],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[2,1,0,2],[1,2,2,0]],[[1,2,1,0],[1,3,4,2],[2,1,0,2],[1,2,2,0]],[[1,2,1,0],[1,4,3,2],[2,1,0,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[2,1,0,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,2],[2,1,0,2],[1,2,1,2]],[[1,2,1,0],[1,3,3,2],[2,1,0,3],[1,2,1,1]],[[1,2,1,0],[1,3,3,3],[2,1,0,2],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[2,1,0,2],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[2,1,0,2],[1,2,1,1]],[[1,3,1,0],[1,3,3,2],[2,1,0,2],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[2,1,0,2],[1,1,2,2]],[[1,2,1,0],[1,3,3,2],[2,1,0,2],[1,1,3,1]],[[1,2,1,0],[1,3,3,2],[2,1,0,3],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[2,1,0,2],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[2,1,0,2],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[2,1,0,2],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[2,1,0,2],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,1,0],[1,3,3,2],[2,1,0,2],[0,2,2,2]],[[1,2,1,0],[1,3,3,2],[2,1,0,2],[0,2,3,1]],[[1,2,1,0],[1,3,3,2],[2,1,0,2],[0,3,2,1]],[[1,2,1,0],[1,3,3,2],[2,1,0,3],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[2,1,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,2,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,2,2],[0,3,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,2,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,1],[2,0,2,2],[0,2,2,2]],[[1,1,1,1],[1,3,3,1],[2,0,2,3],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,2,2],[1,1,3,1]],[[1,1,1,1],[1,3,3,1],[2,0,2,2],[1,1,2,2]],[[1,1,1,1],[1,4,3,1],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,4,1],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[3,0,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,4,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,0],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,0],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,0],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,0],[1,2,2,2]],[[1,1,1,1],[1,4,3,1],[2,0,3,1],[0,2,2,1]],[[1,1,1,1],[1,3,4,1],[2,0,3,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,4,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,1],[0,3,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,1],[0,2,3,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,1],[0,2,2,2]],[[1,1,1,1],[1,4,3,1],[2,0,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,4,1],[2,0,3,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,4,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,1],[1,1,3,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,1],[1,1,2,2]],[[1,1,1,1],[1,4,3,1],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,4,1],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[3,0,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,0,4,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,0,3,1],[2,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,0,3,1],[1,3,2,0]],[[1,1,1,1],[1,3,3,1],[2,0,3,1],[1,2,3,0]],[[1,1,1,1],[1,4,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,4,1],[2,0,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,0,4,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,3],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,2],[0,2,1,2]],[[1,1,1,1],[1,4,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,4,1],[2,0,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,0,4,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,0,3,3],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,0,3,2],[0,3,2,0]],[[1,1,1,1],[1,3,3,1],[2,0,3,2],[0,2,3,0]],[[1,1,1,1],[1,4,3,1],[2,0,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,1],[2,0,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,0,4,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,3],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,2],[1,1,1,2]],[[1,1,1,1],[1,4,3,1],[2,0,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,1],[2,0,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,0,4,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,0,3,3],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,0,3,2],[1,1,3,0]],[[1,1,1,1],[1,4,3,1],[2,0,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,4,1],[2,0,3,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,0,4,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,3],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,0,3,2],[1,2,0,2]],[[1,1,1,1],[1,4,3,1],[2,0,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,4,1],[2,0,3,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,0,4,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,0,3,3],[1,2,1,0]],[[1,2,1,0],[1,3,4,2],[2,1,0,2],[0,2,2,1]],[[1,2,1,0],[1,4,3,2],[2,1,0,2],[0,2,2,1]],[[1,3,1,0],[1,3,3,2],[2,1,0,2],[0,2,2,1]],[[2,2,1,0],[1,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[2,1,0,1],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[2,1,0,1],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[2,1,0,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[2,1,0,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,2,3],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,2,2],[0,1,3,1]],[[1,1,1,1],[1,3,3,1],[2,1,2,2],[0,1,2,2]],[[1,1,1,1],[1,3,3,1],[2,1,2,3],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,2,2],[1,0,3,1]],[[1,1,1,1],[1,3,3,1],[2,1,2,2],[1,0,2,2]],[[1,1,1,1],[1,4,3,1],[2,1,3,0],[0,2,2,1]],[[1,1,1,1],[1,3,4,1],[2,1,3,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,4,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,0],[0,3,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,0],[0,2,3,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,0],[0,2,2,2]],[[1,1,1,1],[1,4,3,1],[2,1,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,4,1],[2,1,3,1],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,4,1],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,1],[0,1,3,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,1],[0,1,2,2]],[[1,1,1,1],[1,4,3,1],[2,1,3,1],[0,2,2,0]],[[1,1,1,1],[1,3,4,1],[2,1,3,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,1,4,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,1,3,1],[0,3,2,0]],[[1,1,1,1],[1,3,3,1],[2,1,3,1],[0,2,3,0]],[[1,1,1,1],[1,4,3,1],[2,1,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,4,1],[2,1,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,4,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,1],[1,0,3,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,1],[1,0,2,2]],[[1,1,1,1],[1,4,3,1],[2,1,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,4,1],[2,1,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,4,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,2],[0,0,2,2]],[[1,1,1,1],[1,4,3,1],[2,1,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,1],[2,1,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,1,4,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,2],[0,1,1,2]],[[1,1,1,1],[1,4,3,1],[2,1,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,1],[2,1,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,1,4,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,1,3,3],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,1,3,2],[0,1,3,0]],[[1,1,1,1],[1,4,3,1],[2,1,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,1],[2,1,3,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,1,4,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,3],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,2],[0,2,0,2]],[[1,1,1,1],[1,4,3,1],[2,1,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,1],[2,1,3,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,1,4,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,1,3,3],[0,2,1,0]],[[1,1,1,1],[1,4,3,1],[2,1,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,1],[2,1,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[2,1,4,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,3],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,2],[1,0,1,2]],[[1,1,1,1],[1,4,3,1],[2,1,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,1],[2,1,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,1,4,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,1,3,3],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,1,3,2],[1,0,3,0]],[[1,1,1,1],[1,4,3,1],[2,1,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,4,1],[2,1,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[2,1,4,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,3],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[2,1,3,2],[1,1,0,2]],[[1,1,1,1],[1,4,3,1],[2,1,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,4,1],[2,1,3,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[2,1,4,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[2,1,3,3],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,1,0],[1,3,3,3],[2,0,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[2,0,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[2,0,3,2],[1,0,1,2]],[[1,2,1,0],[1,3,3,2],[2,0,3,3],[1,0,1,1]],[[1,2,1,0],[1,3,3,3],[2,0,3,2],[1,0,1,1]],[[1,2,1,0],[1,3,4,2],[2,0,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[3,2,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,2,0,1],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,2,0,1],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[2,2,0,1],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[2,2,0,1],[1,2,2,2]],[[1,1,1,1],[1,3,3,1],[3,2,0,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,2,0,2],[2,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,2,0,2],[1,3,1,1]],[[1,1,1,1],[1,3,3,1],[3,2,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,2,0,2],[2,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,2,0,2],[1,3,2,0]],[[1,1,1,1],[1,3,3,1],[2,2,0,2],[1,2,3,0]],[[1,1,1,1],[1,3,3,1],[3,2,1,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,2,1,0],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,2,1,0],[1,3,2,1]],[[1,1,1,1],[1,3,3,1],[2,2,1,0],[1,2,3,1]],[[1,1,1,1],[1,3,3,1],[2,2,1,0],[1,2,2,2]],[[1,1,1,1],[1,3,3,1],[3,2,1,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,2,1,1],[2,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,2,1,1],[1,3,2,0]],[[1,1,1,1],[1,3,3,1],[2,2,1,1],[1,2,3,0]],[[1,1,1,1],[1,3,3,1],[3,2,1,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,2,1,2],[2,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,2,1,2],[1,3,0,1]],[[1,1,1,1],[1,3,3,1],[3,2,1,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,2,1,2],[2,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,2,1,2],[1,3,1,0]],[[1,1,1,1],[1,3,3,1],[3,2,2,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,2,2,0],[2,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,2,2,0],[1,3,1,1]],[[1,1,1,1],[1,3,3,1],[3,2,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,2,2,1],[2,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,2,2,1],[1,3,0,1]],[[1,1,1,1],[1,3,3,1],[3,2,2,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,2,2,1],[2,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,1,0],[1,3,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[2,0,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[2,0,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[2,0,3,2],[0,1,1,2]],[[1,2,1,0],[1,3,3,2],[2,0,3,3],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[2,0,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[2,0,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[2,0,3,2],[0,0,2,2]],[[1,2,1,0],[1,3,3,2],[2,0,3,3],[0,0,2,1]],[[1,2,1,0],[1,3,3,3],[2,0,3,2],[0,0,2,1]],[[1,2,1,0],[1,3,4,2],[2,0,3,2],[0,0,2,1]],[[1,1,1,1],[1,4,3,1],[2,2,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,4,1],[2,2,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,2,4,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,2,3,0],[0,1,3,1]],[[1,1,1,1],[1,3,3,1],[2,2,3,0],[0,1,2,2]],[[1,1,1,1],[1,4,3,1],[2,2,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,4,1],[2,2,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,2,4,0],[0,2,1,1]],[[1,1,1,1],[1,4,3,1],[2,2,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,4,1],[2,2,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,2,4,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,2,3,0],[1,0,3,1]],[[1,1,1,1],[1,3,3,1],[2,2,3,0],[1,0,2,2]],[[1,1,1,1],[1,4,3,1],[2,2,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,4,1],[2,2,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,2,4,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[3,2,3,0],[1,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,2,3,0],[2,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,2,3,0],[1,3,1,0]],[[1,1,1,1],[1,4,3,1],[2,2,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,4,1],[2,2,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,2,4,1],[0,1,1,1]],[[1,1,1,1],[1,4,3,1],[2,2,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,4,1],[2,2,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,2,4,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,2,3,1],[0,1,3,0]],[[1,1,1,1],[1,4,3,1],[2,2,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,4,1],[2,2,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,2,4,1],[0,2,0,1]],[[1,1,1,1],[1,4,3,1],[2,2,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,4,1],[2,2,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,2,4,1],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[2,0,4,1],[1,2,1,0]],[[1,2,1,0],[1,3,3,3],[2,0,3,1],[1,2,1,0]],[[1,2,1,0],[1,3,4,2],[2,0,3,1],[1,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,1,1],[1,4,3,1],[2,2,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,4,1],[2,2,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[2,2,4,1],[1,0,1,1]],[[1,1,1,1],[1,4,3,1],[2,2,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,4,1],[2,2,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,2,4,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,2,3,1],[1,0,3,0]],[[1,1,1,1],[1,4,3,1],[2,2,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,4,1],[2,2,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[2,2,4,1],[1,1,0,1]],[[1,1,1,1],[1,4,3,1],[2,2,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,4,1],[2,2,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[2,2,4,1],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[2,0,3,1],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,1,0],[1,3,3,2],[2,0,4,1],[1,2,0,1]],[[1,2,1,0],[1,3,3,3],[2,0,3,1],[1,2,0,1]],[[1,2,1,0],[1,3,4,2],[2,0,3,1],[1,2,0,1]],[[1,2,1,0],[1,4,3,2],[2,0,3,1],[1,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,0,3,1],[1,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,1,0],[1,3,3,2],[2,0,3,1],[1,1,3,0]],[[1,2,1,0],[1,3,3,2],[2,0,4,1],[1,1,2,0]],[[1,2,1,0],[1,3,3,3],[2,0,3,1],[1,1,2,0]],[[1,2,1,0],[1,3,4,2],[2,0,3,1],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[2,0,3,1],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[2,0,3,1],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[2,0,4,1],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[2,0,3,1],[1,1,1,1]],[[1,2,1,0],[1,3,4,2],[2,0,3,1],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[2,0,3,1],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[2,0,3,1],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[2,0,3,1],[0,2,3,0]],[[1,2,1,0],[1,3,3,2],[2,0,3,1],[0,3,2,0]],[[1,2,1,0],[1,3,3,2],[2,0,4,1],[0,2,2,0]],[[1,2,1,0],[1,3,3,3],[2,0,3,1],[0,2,2,0]],[[1,2,1,0],[1,3,4,2],[2,0,3,1],[0,2,2,0]],[[1,2,1,0],[1,4,3,2],[2,0,3,1],[0,2,2,0]],[[1,3,1,0],[1,3,3,2],[2,0,3,1],[0,2,2,0]],[[2,2,1,0],[1,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,1,0],[1,3,3,2],[2,0,4,1],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[2,0,3,1],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[2,0,3,1],[0,2,1,1]],[[1,2,1,0],[1,4,3,2],[2,0,3,1],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[2,0,3,1],[0,2,1,1]],[[2,2,1,0],[1,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,1,0],[1,3,3,2],[2,0,4,0],[1,2,1,1]],[[1,2,1,0],[1,3,3,3],[2,0,3,0],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[2,0,3,0],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[2,0,3,0],[1,2,1,1]],[[1,3,1,0],[1,3,3,2],[2,0,3,0],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[2,0,3,0],[1,1,2,2]],[[1,2,1,0],[1,3,3,2],[2,0,3,0],[1,1,3,1]],[[1,2,1,0],[1,3,3,2],[2,0,4,0],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[2,0,3,0],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[2,0,3,0],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[2,0,3,0],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[2,0,3,0],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,1,0],[1,3,3,2],[2,0,3,0],[0,2,2,2]],[[1,2,1,0],[1,3,3,2],[2,0,3,0],[0,2,3,1]],[[1,2,1,0],[1,3,3,2],[2,0,3,0],[0,3,2,1]],[[1,2,1,0],[1,3,3,2],[2,0,4,0],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[2,0,3,0],[0,2,2,1]],[[1,2,1,0],[1,3,4,2],[2,0,3,0],[0,2,2,1]],[[1,2,1,0],[1,4,3,2],[2,0,3,0],[0,2,2,1]],[[1,3,1,0],[1,3,3,2],[2,0,3,0],[0,2,2,1]],[[2,2,1,0],[1,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,1,0],[1,3,3,2],[2,0,2,3],[1,2,1,0]],[[1,2,1,0],[1,3,3,3],[2,0,2,2],[1,2,1,0]],[[1,2,1,0],[1,3,4,2],[2,0,2,2],[1,2,1,0]],[[1,2,1,0],[1,4,3,2],[2,0,2,2],[1,2,1,0]],[[1,3,1,0],[1,3,3,2],[2,0,2,2],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,1,0],[1,3,3,2],[2,0,2,2],[1,2,0,2]],[[1,2,1,0],[1,3,3,2],[2,0,2,3],[1,2,0,1]],[[1,2,1,0],[1,3,3,3],[2,0,2,2],[1,2,0,1]],[[1,2,1,0],[1,3,4,2],[2,0,2,2],[1,2,0,1]],[[1,2,1,0],[1,4,3,2],[2,0,2,2],[1,2,0,1]],[[1,3,1,0],[1,3,3,2],[2,0,2,2],[1,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[3,3,0,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,3,0,0],[2,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,3,0,0],[1,3,2,1]],[[1,1,1,1],[1,4,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,1,1],[1,3,4,1],[2,3,0,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[3,3,0,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,4,0,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,3,0,1],[0,3,2,1]],[[1,1,1,1],[1,3,3,1],[2,3,0,1],[0,2,3,1]],[[1,1,1,1],[1,3,3,1],[2,3,0,1],[0,2,2,2]],[[1,1,1,1],[1,4,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,1,1],[1,3,4,1],[2,3,0,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[3,3,0,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,4,0,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,3,0,1],[2,1,2,1]],[[1,1,1,1],[1,3,3,1],[3,3,0,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,0,1],[2,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,0,1],[1,3,2,0]],[[1,1,1,1],[1,4,3,1],[2,3,0,2],[0,1,2,1]],[[1,1,1,1],[1,3,4,1],[2,3,0,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[3,3,0,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,4,0,2],[0,1,2,1]],[[1,1,1,1],[1,4,3,1],[2,3,0,2],[0,2,1,1]],[[1,1,1,1],[1,3,4,1],[2,3,0,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[3,3,0,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,4,0,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,3,0,2],[0,3,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,1,1],[1,3,4,1],[2,3,0,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[3,3,0,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,4,0,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,0,2],[0,3,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,0,2],[0,2,3,0]],[[1,1,1,1],[1,4,3,1],[2,3,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,4,1],[2,3,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[3,3,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,4,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,3,0,2],[2,0,2,1]],[[1,1,1,1],[1,4,3,1],[2,3,0,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,1],[2,3,0,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[3,3,0,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,4,0,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,3,0,2],[2,1,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,1],[2,3,0,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[3,3,0,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,4,0,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,1,0],[1,3,3,2],[2,0,2,3],[1,1,2,0]],[[1,1,1,1],[1,4,3,1],[2,3,1,0],[0,2,2,1]],[[1,1,1,1],[1,3,4,1],[2,3,1,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[3,3,1,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,4,1,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,1],[2,3,1,0],[0,3,2,1]],[[1,1,1,1],[1,3,3,1],[2,3,1,0],[0,2,3,1]],[[1,1,1,1],[1,3,3,1],[2,3,1,0],[0,2,2,2]],[[1,1,1,1],[1,4,3,1],[2,3,1,0],[1,1,2,1]],[[1,1,1,1],[1,3,4,1],[2,3,1,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[3,3,1,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,4,1,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,3,1,0],[2,1,2,1]],[[1,1,1,1],[1,4,3,1],[2,3,1,1],[0,2,2,0]],[[1,1,1,1],[1,3,4,1],[2,3,1,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[3,3,1,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,4,1,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,1,1],[0,3,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,1,1],[0,2,3,0]],[[1,1,1,1],[1,4,3,1],[2,3,1,1],[1,1,2,0]],[[1,1,1,1],[1,3,4,1],[2,3,1,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[3,3,1,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,4,1,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,1,1],[2,1,2,0]],[[1,2,1,0],[1,3,3,3],[2,0,2,2],[1,1,2,0]],[[1,2,1,0],[1,3,4,2],[2,0,2,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[2,0,2,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[2,0,2,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[2,0,2,2],[1,1,1,2]],[[1,2,1,0],[1,3,3,2],[2,0,2,3],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[2,0,2,2],[1,1,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,1,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,1],[2,3,1,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[3,3,1,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,4,1,2],[0,1,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,1,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,1],[2,3,1,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[3,3,1,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,4,1,2],[0,1,2,0]],[[1,1,1,1],[1,4,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,1],[2,3,1,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[3,3,1,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,4,1,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,3,1,2],[0,3,0,1]],[[1,1,1,1],[1,4,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,1],[2,3,1,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[3,3,1,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,4,1,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,3,1,2],[0,3,1,0]],[[1,2,1,0],[1,3,4,2],[2,0,2,2],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[2,0,2,2],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[2,0,2,2],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,1,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,1],[2,3,1,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[3,3,1,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[2,4,1,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[2,3,1,2],[2,0,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,1,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,1],[2,3,1,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[3,3,1,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,4,1,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,1,2],[2,0,2,0]],[[1,1,1,1],[1,4,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,1,1],[1,3,4,1],[2,3,1,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[3,3,1,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[2,4,1,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[2,3,1,2],[2,1,0,1]],[[1,1,1,1],[1,4,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,1,1],[1,3,4,1],[2,3,1,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[3,3,1,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[2,4,1,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[2,3,1,2],[2,1,1,0]],[[1,1,1,1],[1,4,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,1,1],[1,3,4,1],[2,3,1,2],[1,2,0,0]],[[1,1,1,1],[1,3,3,1],[3,3,1,2],[1,2,0,0]],[[1,1,1,1],[1,3,3,1],[2,4,1,2],[1,2,0,0]],[[1,1,1,1],[1,3,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,1,0],[1,3,3,2],[2,0,2,3],[0,2,2,0]],[[1,2,1,0],[1,3,3,3],[2,0,2,2],[0,2,2,0]],[[1,2,1,0],[1,3,4,2],[2,0,2,2],[0,2,2,0]],[[1,2,1,0],[1,4,3,2],[2,0,2,2],[0,2,2,0]],[[1,3,1,0],[1,3,3,2],[2,0,2,2],[0,2,2,0]],[[2,2,1,0],[1,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,1,0],[1,3,3,2],[2,0,2,2],[0,2,1,2]],[[1,2,1,0],[1,3,3,2],[2,0,2,3],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[2,0,2,2],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[2,0,2,2],[0,2,1,1]],[[1,2,1,0],[1,4,3,2],[2,0,2,2],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[2,0,2,2],[0,2,1,1]],[[2,2,1,0],[1,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[2,0,2,1],[1,2,2,0]],[[1,2,1,0],[1,3,4,2],[2,0,2,1],[1,2,2,0]],[[1,2,1,0],[1,4,3,2],[2,0,2,1],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,1,1],[1,4,3,1],[2,3,2,0],[0,1,2,1]],[[1,1,1,1],[1,3,4,1],[2,3,2,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[3,3,2,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,1],[2,4,2,0],[0,1,2,1]],[[1,1,1,1],[1,4,3,1],[2,3,2,0],[0,2,1,1]],[[1,1,1,1],[1,3,4,1],[2,3,2,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[3,3,2,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,4,2,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,1],[2,3,2,0],[0,3,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,2,0],[1,0,2,1]],[[1,1,1,1],[1,3,4,1],[2,3,2,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[3,3,2,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,4,2,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,3,2,0],[2,0,2,1]],[[1,1,1,1],[1,4,3,1],[2,3,2,0],[1,1,1,1]],[[1,1,1,1],[1,3,4,1],[2,3,2,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[3,3,2,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,4,2,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,3,2,0],[2,1,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,2,0],[1,2,0,1]],[[1,1,1,1],[1,3,4,1],[2,3,2,0],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[3,3,2,0],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,4,2,0],[1,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,3,2,0],[2,2,0,1]],[[2,2,1,0],[1,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[2,0,2,0],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[2,0,2,0],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[2,0,2,0],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[2,0,2,0],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,1,1],[1,4,3,1],[2,3,2,1],[0,1,1,1]],[[1,1,1,1],[1,3,4,1],[2,3,2,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[3,3,2,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,1],[2,4,2,1],[0,1,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,2,1],[0,1,2,0]],[[1,1,1,1],[1,3,4,1],[2,3,2,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[3,3,2,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,4,2,1],[0,1,2,0]],[[1,1,1,1],[1,4,3,1],[2,3,2,1],[0,2,0,1]],[[1,1,1,1],[1,3,4,1],[2,3,2,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[3,3,2,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,4,2,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,1],[2,3,2,1],[0,3,0,1]],[[1,1,1,1],[1,4,3,1],[2,3,2,1],[0,2,1,0]],[[1,1,1,1],[1,3,4,1],[2,3,2,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[3,3,2,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,4,2,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,3,2,1],[0,3,1,0]],[[1,1,1,1],[1,4,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,1,1],[1,3,4,1],[2,3,2,1],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[3,3,2,1],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[2,4,2,1],[1,0,1,1]],[[1,1,1,1],[1,3,3,1],[2,3,2,1],[2,0,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,2,1],[1,0,2,0]],[[1,1,1,1],[1,3,4,1],[2,3,2,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[3,3,2,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,4,2,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,2,1],[2,0,2,0]],[[1,1,1,1],[1,4,3,1],[2,3,2,1],[1,1,0,1]],[[1,1,1,1],[1,3,4,1],[2,3,2,1],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[3,3,2,1],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[2,4,2,1],[1,1,0,1]],[[1,1,1,1],[1,3,3,1],[2,3,2,1],[2,1,0,1]],[[1,1,1,1],[1,4,3,1],[2,3,2,1],[1,1,1,0]],[[1,1,1,1],[1,3,4,1],[2,3,2,1],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[3,3,2,1],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[2,4,2,1],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,1,0],[1,3,3,2],[2,0,1,3],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[2,0,1,2],[1,2,2,0]],[[1,2,1,0],[1,3,4,2],[2,0,1,2],[1,2,2,0]],[[1,1,1,1],[1,4,3,1],[2,3,2,1],[1,2,0,0]],[[1,1,1,1],[1,3,4,1],[2,3,2,1],[1,2,0,0]],[[1,1,1,1],[1,3,3,1],[3,3,2,1],[1,2,0,0]],[[1,1,1,1],[1,3,3,1],[2,4,2,1],[1,2,0,0]],[[1,1,1,1],[1,3,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,1,0],[1,4,3,2],[2,0,1,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[2,0,1,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,2],[2,0,1,2],[1,2,1,2]],[[1,2,1,0],[1,3,3,2],[2,0,1,3],[1,2,1,1]],[[1,2,1,0],[1,3,3,3],[2,0,1,2],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[2,0,1,2],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[2,0,1,2],[1,2,1,1]],[[1,3,1,0],[1,3,3,2],[2,0,1,2],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[2,0,1,2],[1,1,2,2]],[[1,2,1,0],[1,3,3,2],[2,0,1,2],[1,1,3,1]],[[1,2,1,0],[1,3,3,2],[2,0,1,3],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[2,0,1,2],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[2,0,1,2],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[2,0,1,2],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[2,0,1,2],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,1,0],[1,3,3,2],[2,0,1,2],[0,2,2,2]],[[1,2,1,0],[1,3,3,2],[2,0,1,2],[0,2,3,1]],[[1,2,1,0],[1,3,3,2],[2,0,1,2],[0,3,2,1]],[[1,2,1,0],[1,3,3,2],[2,0,1,3],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[2,0,1,2],[0,2,2,1]],[[1,2,1,0],[1,3,4,2],[2,0,1,2],[0,2,2,1]],[[1,2,1,0],[1,4,3,2],[2,0,1,2],[0,2,2,1]],[[1,3,1,0],[1,3,3,2],[2,0,1,2],[0,2,2,1]],[[2,2,1,0],[1,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[2,0,1,1],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[2,0,1,1],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[2,0,1,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[2,0,1,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,1,0],[1,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,1,0],[1,3,3,3],[1,3,3,2],[0,0,0,1]],[[1,2,1,0],[1,3,4,2],[1,3,3,2],[0,0,0,1]],[[1,2,1,0],[1,4,3,2],[1,3,3,2],[0,0,0,1]],[[1,3,1,0],[1,3,3,2],[1,3,3,2],[0,0,0,1]],[[2,2,1,0],[1,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,1,0],[1,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,1,0],[1,3,3,3],[1,3,3,1],[1,1,0,0]],[[1,2,1,0],[1,3,4,2],[1,3,3,1],[1,1,0,0]],[[1,2,1,0],[1,4,3,2],[1,3,3,1],[1,1,0,0]],[[1,3,1,0],[1,3,3,2],[1,3,3,1],[1,1,0,0]],[[2,2,1,0],[1,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,1,1],[1,4,3,1],[2,3,3,0],[0,0,2,1]],[[1,1,1,1],[1,3,4,1],[2,3,3,0],[0,0,2,1]],[[1,1,1,1],[1,3,3,1],[2,3,4,0],[0,0,2,1]],[[1,1,1,1],[1,4,3,1],[2,3,3,0],[0,1,2,0]],[[1,1,1,1],[1,3,4,1],[2,3,3,0],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[3,3,3,0],[0,1,2,0]],[[1,1,1,1],[1,3,3,1],[2,4,3,0],[0,1,2,0]],[[1,1,1,1],[1,4,3,1],[2,3,3,0],[0,2,1,0]],[[1,1,1,1],[1,3,4,1],[2,3,3,0],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[3,3,3,0],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,4,3,0],[0,2,1,0]],[[1,1,1,1],[1,3,3,1],[2,3,3,0],[0,3,1,0]],[[1,1,1,1],[1,4,3,1],[2,3,3,0],[1,0,2,0]],[[1,1,1,1],[1,3,4,1],[2,3,3,0],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[3,3,3,0],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,4,3,0],[1,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,3,0],[2,0,2,0]],[[1,1,1,1],[1,4,3,1],[2,3,3,0],[1,1,1,0]],[[1,1,1,1],[1,3,4,1],[2,3,3,0],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[3,3,3,0],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[2,4,3,0],[1,1,1,0]],[[1,1,1,1],[1,3,3,1],[2,3,3,0],[2,1,1,0]],[[1,1,1,1],[1,4,3,1],[2,3,3,0],[1,2,0,0]],[[1,1,1,1],[1,3,4,1],[2,3,3,0],[1,2,0,0]],[[1,1,1,1],[1,3,3,1],[3,3,3,0],[1,2,0,0]],[[1,1,1,1],[1,3,3,1],[2,4,3,0],[1,2,0,0]],[[1,1,1,1],[1,3,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,1,0],[1,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,2,1,0],[1,3,3,3],[1,3,3,1],[0,2,0,0]],[[1,2,1,0],[1,3,4,2],[1,3,3,1],[0,2,0,0]],[[1,2,1,0],[1,4,3,2],[1,3,3,1],[0,2,0,0]],[[1,3,1,0],[1,3,3,2],[1,3,3,1],[0,2,0,0]],[[2,2,1,0],[1,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,1,1],[1,4,3,1],[2,3,3,1],[0,0,1,1]],[[1,1,1,1],[1,3,4,1],[2,3,3,1],[0,0,1,1]],[[1,1,1,1],[1,3,3,1],[2,3,4,1],[0,0,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,3,1],[0,0,2,0]],[[1,1,1,1],[1,3,4,1],[2,3,3,1],[0,0,2,0]],[[1,1,1,1],[1,3,3,1],[2,3,4,1],[0,0,2,0]],[[1,1,1,1],[1,4,3,1],[2,3,3,1],[0,2,0,0]],[[1,1,1,1],[1,3,4,1],[2,3,3,1],[0,2,0,0]],[[1,1,1,1],[1,3,3,1],[3,3,3,1],[0,2,0,0]],[[1,1,1,1],[1,3,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,1,0],[1,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,1,0],[1,3,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,3,1],[0,0,2,0]],[[1,2,1,0],[1,4,3,2],[1,3,3,1],[0,0,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,3,1],[0,0,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,4,1],[0,0,1,1]],[[1,2,1,0],[1,3,3,3],[1,3,3,1],[0,0,1,1]],[[1,2,1,0],[1,3,4,2],[1,3,3,1],[0,0,1,1]],[[1,2,1,0],[1,4,3,2],[1,3,3,1],[0,0,1,1]],[[1,3,1,0],[1,3,3,2],[1,3,3,1],[0,0,1,1]],[[2,2,1,0],[1,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,1,1],[1,4,3,1],[2,3,3,1],[1,1,0,0]],[[1,1,1,1],[1,3,4,1],[2,3,3,1],[1,1,0,0]],[[1,1,1,1],[1,3,3,1],[3,3,3,1],[1,1,0,0]],[[1,1,1,1],[1,3,3,1],[2,4,3,1],[1,1,0,0]],[[1,1,1,1],[1,3,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,1,0],[1,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,1,0],[1,3,4,2],[1,3,3,0],[1,2,0,0]],[[1,2,1,0],[1,4,3,2],[1,3,3,0],[1,2,0,0]],[[1,3,1,0],[1,3,3,2],[1,3,3,0],[1,2,0,0]],[[2,2,1,0],[1,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,2,1,0],[1,3,3,2],[1,4,3,0],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[1,3,3,0],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[1,3,3,0],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[1,4,3,0],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,3,0],[1,0,2,0]],[[1,2,1,0],[1,4,3,2],[1,3,3,0],[1,0,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,3,0],[1,0,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,3,0],[0,3,1,0]],[[1,2,1,0],[1,3,3,2],[1,4,3,0],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[1,3,3,0],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[1,3,3,0],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[1,3,3,0],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[1,4,3,0],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,3,0],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[1,3,3,0],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,3,0],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,4,0],[0,0,2,1]],[[1,2,1,0],[1,3,3,3],[1,3,3,0],[0,0,2,1]],[[1,2,1,0],[1,3,4,2],[1,3,3,0],[0,0,2,1]],[[1,2,1,0],[1,4,3,2],[1,3,3,0],[0,0,2,1]],[[1,3,1,0],[1,3,3,2],[1,3,3,0],[0,0,2,1]],[[2,2,1,0],[1,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,2,1,0],[1,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,1,0],[1,3,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,2,2],[0,0,2,0]],[[1,2,1,0],[1,4,3,2],[1,3,2,2],[0,0,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,2,2],[0,0,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,2,2],[0,0,1,2]],[[1,2,1,0],[1,3,3,2],[1,3,2,3],[0,0,1,1]],[[1,2,1,0],[1,3,3,3],[1,3,2,2],[0,0,1,1]],[[1,2,1,0],[1,3,4,2],[1,3,2,2],[0,0,1,1]],[[1,2,1,0],[1,4,3,2],[1,3,2,2],[0,0,1,1]],[[1,3,1,0],[1,3,3,2],[1,3,2,2],[0,0,1,1]],[[2,2,1,0],[1,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,1,0],[1,3,3,2],[1,4,2,1],[1,2,0,0]],[[1,2,1,0],[1,3,3,3],[1,3,2,1],[1,2,0,0]],[[1,2,1,0],[1,3,4,2],[1,3,2,1],[1,2,0,0]],[[1,2,1,0],[1,4,3,2],[1,3,2,1],[1,2,0,0]],[[1,3,1,0],[1,3,3,2],[1,3,2,1],[1,2,0,0]],[[2,2,1,0],[1,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,1,0],[1,3,3,2],[1,4,2,1],[1,1,1,0]],[[1,2,1,0],[1,3,3,3],[1,3,2,1],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[1,3,2,1],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[1,3,2,1],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[1,3,2,1],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[1,4,2,1],[1,1,0,1]],[[1,2,1,0],[1,3,3,3],[1,3,2,1],[1,1,0,1]],[[1,2,1,0],[1,3,4,2],[1,3,2,1],[1,1,0,1]],[[1,2,1,0],[1,4,3,2],[1,3,2,1],[1,1,0,1]],[[1,3,1,0],[1,3,3,2],[1,3,2,1],[1,1,0,1]],[[2,2,1,0],[1,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,1,0],[1,3,3,2],[1,4,2,1],[1,0,2,0]],[[1,2,1,0],[1,3,3,3],[1,3,2,1],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,2,1],[1,0,2,0]],[[1,2,1,0],[1,4,3,2],[1,3,2,1],[1,0,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,2,1],[1,0,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,4,2,1],[1,0,1,1]],[[1,2,1,0],[1,3,3,3],[1,3,2,1],[1,0,1,1]],[[1,2,1,0],[1,3,4,2],[1,3,2,1],[1,0,1,1]],[[1,2,1,0],[1,4,3,2],[1,3,2,1],[1,0,1,1]],[[1,3,1,0],[1,3,3,2],[1,3,2,1],[1,0,1,1]],[[2,2,1,0],[1,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,1,2],[1,3,3,2],[0,0,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[0,0,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[0,0,2,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,0,2,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,0,2,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,2],[0,0,2,2],[1,2,2,2]],[[1,1,1,2],[1,3,3,2],[0,0,3,2],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[0,0,3,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[0,0,3,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,0,3,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,0,3,2],[0,2,2,2]],[[1,1,1,2],[1,3,3,2],[0,0,3,2],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[0,0,3,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[0,0,3,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,0,3,3],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,0,3,2],[1,1,2,2]],[[1,1,1,2],[1,3,3,2],[0,0,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[0,0,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[0,0,3,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,0,3,3],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,0,3,2],[1,2,1,2]],[[1,1,1,2],[1,3,3,2],[0,0,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[0,0,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,3],[0,0,3,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,0,3,3],[1,2,2,0]],[[1,1,1,2],[1,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[0,1,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[0,1,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[0,1,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,1,1,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,1,1,2],[2,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,1,1,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,2],[0,1,1,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,2],[0,1,1,2],[1,2,2,2]],[[1,1,1,2],[1,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,1,1,1],[1,4,3,2],[0,1,2,2],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[0,1,2,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[0,1,2,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,1,2,3],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,1,2,2],[1,2,1,2]],[[1,1,1,2],[1,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,1,1,1],[1,4,3,2],[0,1,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[0,1,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,3],[0,1,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,1,2,3],[1,2,2,0]],[[1,1,1,2],[1,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[0,1,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[0,1,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,1,4,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,1,3,0],[2,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,1,3,0],[1,3,2,1]],[[1,1,1,1],[1,3,3,2],[0,1,3,0],[1,2,3,1]],[[1,1,1,1],[1,3,3,2],[0,1,3,0],[1,2,2,2]],[[1,1,1,2],[1,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,1,1,1],[1,4,3,2],[0,1,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[0,1,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[0,1,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,1,4,1],[1,2,1,1]],[[1,1,1,2],[1,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,1,1,1],[1,4,3,2],[0,1,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[0,1,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,3],[0,1,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,1,4,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,1,3,1],[2,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,1,3,1],[1,3,2,0]],[[1,1,1,1],[1,3,3,2],[0,1,3,1],[1,2,3,0]],[[1,1,1,2],[1,3,3,2],[0,1,3,2],[1,0,2,1]],[[1,1,1,1],[1,3,4,2],[0,1,3,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,3],[0,1,3,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[0,1,3,3],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[0,1,3,2],[1,0,2,2]],[[1,1,1,2],[1,3,3,2],[0,1,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[0,1,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[0,1,3,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,1,3,3],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,1,3,2],[1,1,1,2]],[[1,1,1,2],[1,3,3,2],[0,1,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[0,1,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,3],[0,1,3,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,2,1],[0,3,1,0]],[[1,2,1,0],[1,3,3,2],[1,4,2,1],[0,2,1,0]],[[1,2,1,0],[1,3,3,3],[1,3,2,1],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[1,3,2,1],[0,2,1,0]],[[1,1,1,2],[1,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[0,2,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[0,2,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,0,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,0,2],[2,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,0,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,0,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,2],[0,2,0,2],[1,2,2,2]],[[1,1,1,2],[1,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[0,2,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[0,2,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[0,2,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,1,3],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,1,2],[1,1,3,1]],[[1,1,1,1],[1,3,3,2],[0,2,1,2],[1,1,2,2]],[[1,1,1,2],[1,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,1,1,1],[1,4,3,2],[0,2,2,2],[1,0,2,1]],[[1,1,1,1],[1,3,4,2],[0,2,2,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,3],[0,2,2,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,2,3],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,2,2],[1,0,2,2]],[[1,1,1,2],[1,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[0,2,2,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[0,2,2,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,2,2,3],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,2,2,2],[1,1,1,2]],[[1,1,1,2],[1,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,1,1,1],[1,4,3,2],[0,2,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[0,2,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,3],[0,2,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,2,2,3],[1,1,2,0]],[[1,1,1,2],[1,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,1,1],[1,4,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,4,2],[0,2,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,3],[0,2,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,2,2,3],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,2,2,2],[1,2,0,2]],[[1,1,1,2],[1,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,1,1,1],[1,4,3,2],[0,2,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,4,2],[0,2,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,3],[0,2,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,1,0],[1,4,3,2],[1,3,2,1],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[1,3,2,1],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[1,3,2,1],[0,3,0,1]],[[1,2,1,0],[1,3,3,2],[1,4,2,1],[0,2,0,1]],[[1,2,1,0],[1,3,3,3],[1,3,2,1],[0,2,0,1]],[[1,2,1,0],[1,3,4,2],[1,3,2,1],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[1,3,2,1],[0,2,0,1]],[[1,3,1,0],[1,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,1,2],[1,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[0,2,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[0,2,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,4,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,3,0],[1,1,3,1]],[[1,1,1,1],[1,3,3,2],[0,2,3,0],[1,1,2,2]],[[1,1,1,2],[1,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,1,1,1],[1,4,3,2],[0,2,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[0,2,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[0,2,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,2,4,0],[1,2,1,1]],[[1,1,1,2],[1,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,1,1,1],[1,4,3,2],[0,2,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,4,2],[0,2,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,3],[0,2,3,1],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,4,1],[1,0,2,1]],[[1,1,1,2],[1,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[0,2,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[0,2,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,2,4,1],[1,1,1,1]],[[1,1,1,2],[1,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,1,1,1],[1,4,3,2],[0,2,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[0,2,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,3],[0,2,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,2,4,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,2,3,1],[1,1,3,0]],[[1,1,1,2],[1,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,1,1,1],[1,4,3,2],[0,2,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,4,2],[0,2,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,3],[0,2,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,2,4,1],[1,2,0,1]],[[1,1,1,2],[1,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,1,1,1],[1,4,3,2],[0,2,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,4,2],[0,2,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,3],[0,2,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,2,4,1],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,1,0],[1,3,3,2],[1,4,2,1],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[1,3,2,1],[0,1,2,0]],[[1,1,1,2],[1,3,3,2],[0,2,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,4,2],[0,2,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,3],[0,2,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[0,2,3,2],[0,0,2,2]],[[1,1,1,2],[1,3,3,2],[0,2,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[0,2,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[0,2,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,2,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,2,3,2],[0,1,1,2]],[[1,1,1,2],[1,3,3,2],[0,2,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[0,2,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[0,2,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,2,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,2,1],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[1,3,2,1],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,2,1],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,4,2,1],[0,1,1,1]],[[1,1,1,2],[1,3,3,2],[0,2,3,2],[1,1,0,1]],[[1,1,1,1],[1,4,3,2],[0,2,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,4,2],[0,2,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,3],[0,2,3,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,1,0],[1,3,3,3],[1,3,2,1],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[1,3,2,1],[0,1,1,1]],[[1,2,1,0],[1,4,3,2],[1,3,2,1],[0,1,1,1]],[[1,3,1,0],[1,3,3,2],[1,3,2,1],[0,1,1,1]],[[2,2,1,0],[1,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,2,1,0],[1,3,4,2],[1,3,2,0],[1,2,0,1]],[[1,2,1,0],[1,4,3,2],[1,3,2,0],[1,2,0,1]],[[1,3,1,0],[1,3,3,2],[1,3,2,0],[1,2,0,1]],[[2,2,1,0],[1,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,1,0],[1,3,3,2],[1,4,2,0],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[1,3,2,0],[1,1,1,1]],[[1,2,1,0],[1,3,4,2],[1,3,2,0],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[1,3,2,0],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[1,3,2,0],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[1,4,2,0],[1,0,2,1]],[[1,2,1,0],[1,3,3,3],[1,3,2,0],[1,0,2,1]],[[1,2,1,0],[1,3,4,2],[1,3,2,0],[1,0,2,1]],[[1,2,1,0],[1,4,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,1,2],[1,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[0,3,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[0,3,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,4,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,0,1],[2,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,0,1],[1,3,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,0,1],[1,2,3,1]],[[1,1,1,1],[1,3,3,2],[0,3,0,1],[1,2,2,2]],[[1,1,1,2],[1,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[0,3,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[0,3,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[0,3,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,4,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,0,3],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,0,2],[1,1,3,1]],[[1,1,1,1],[1,3,3,2],[0,3,0,2],[1,1,2,2]],[[1,1,1,2],[1,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,1,1],[1,4,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[0,3,0,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[0,3,0,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,4,0,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,0,3],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,0,2],[2,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,0,2],[1,3,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,0,2],[1,2,1,2]],[[1,1,1,2],[1,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,1,1,1],[1,4,3,2],[0,3,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[0,3,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,3],[0,3,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,4,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,3,0,3],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,3,0,2],[2,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,3,0,2],[1,3,2,0]],[[1,1,1,1],[1,3,3,2],[0,3,0,2],[1,2,3,0]],[[1,1,1,2],[1,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[0,3,1,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[0,3,1,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,4,1,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,0],[2,2,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,0],[1,3,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,0],[1,2,3,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,0],[1,2,2,2]],[[1,1,1,2],[1,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,1,1],[1,4,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[0,3,1,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,3],[0,3,1,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,4,1,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,3,1,1],[2,2,2,0]],[[1,1,1,1],[1,3,3,2],[0,3,1,1],[1,3,2,0]],[[1,1,1,1],[1,3,3,2],[0,3,1,1],[1,2,3,0]],[[1,1,1,2],[1,3,3,2],[0,3,1,2],[0,1,2,1]],[[1,1,1,1],[1,4,3,2],[0,3,1,2],[0,1,2,1]],[[1,1,1,1],[1,3,4,2],[0,3,1,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,3],[0,3,1,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,3],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,2],[0,1,3,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,2],[0,1,2,2]],[[1,1,1,2],[1,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[0,3,1,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[0,3,1,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,4,1,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,3],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,2],[1,1,1,2]],[[1,1,1,2],[1,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,1,1],[1,4,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[0,3,1,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,3],[0,3,1,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,4,1,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,3,1,3],[1,1,2,0]],[[1,1,1,2],[1,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,1,1],[1,4,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,1,1],[1,3,4,2],[0,3,1,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,3],[0,3,1,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,4,1,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,3],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,2],[2,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,2],[1,3,0,1]],[[1,1,1,1],[1,3,3,2],[0,3,1,2],[1,2,0,2]],[[1,1,1,2],[1,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,1,1],[1,4,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,1,1],[1,3,4,2],[0,3,1,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,3],[0,3,1,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,4,1,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,3,1,3],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,3,1,2],[2,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,3,1,2],[1,3,1,0]],[[1,3,1,0],[1,3,3,2],[1,3,2,0],[1,0,2,1]],[[2,2,1,0],[1,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,1,2],[1,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[0,3,2,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[0,3,2,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,4,2,0],[1,1,2,1]],[[1,1,1,2],[1,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,1,1,1],[1,4,3,2],[0,3,2,0],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[0,3,2,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[0,3,2,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,4,2,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,2,0],[2,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,2,0],[1,3,1,1]],[[1,1,1,2],[1,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[0,3,2,1],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[0,3,2,1],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,4,2,1],[1,1,1,1]],[[1,1,1,2],[1,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,1,1],[1,4,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[0,3,2,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,3],[0,3,2,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,4,2,1],[1,1,2,0]],[[1,1,1,2],[1,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,1,1],[1,4,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,4,2],[0,3,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,3],[0,3,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,4,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,3,2,1],[2,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,3,2,1],[1,3,0,1]],[[1,1,1,2],[1,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,1,1,1],[1,4,3,2],[0,3,2,1],[1,2,1,0]],[[1,1,1,1],[1,3,4,2],[0,3,2,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,3],[0,3,2,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,4,2,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,3,2,1],[2,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,3,2,1],[1,3,1,0]],[[1,2,1,0],[1,3,3,2],[1,3,2,0],[0,3,1,1]],[[1,2,1,0],[1,3,3,2],[1,4,2,0],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[1,3,2,0],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[1,3,2,0],[0,2,1,1]],[[1,2,1,0],[1,4,3,2],[1,3,2,0],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[1,3,2,0],[0,2,1,1]],[[2,2,1,0],[1,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,1,0],[1,3,3,2],[1,4,2,0],[0,1,2,1]],[[1,1,1,2],[1,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,1,1,1],[1,4,3,2],[0,3,2,2],[0,0,2,1]],[[1,1,1,1],[1,3,4,2],[0,3,2,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,3],[0,3,2,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,2,3],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,2,2],[0,0,2,2]],[[1,1,1,2],[1,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,4,3,2],[0,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[0,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[0,3,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,2,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,2,2],[0,1,1,2]],[[1,1,1,2],[1,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[0,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[0,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[0,3,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,3,2,3],[0,1,2,0]],[[1,1,1,2],[1,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,4,3,2],[0,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,2],[0,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,3],[0,3,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,3,2,3],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,3,2,2],[0,2,0,2]],[[1,1,1,2],[1,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,4,3,2],[0,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[0,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,3],[0,3,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,1,0],[1,3,3,3],[1,3,2,0],[0,1,2,1]],[[1,2,1,0],[1,3,4,2],[1,3,2,0],[0,1,2,1]],[[1,2,1,0],[1,4,3,2],[1,3,2,0],[0,1,2,1]],[[1,3,1,0],[1,3,3,2],[1,3,2,0],[0,1,2,1]],[[2,2,1,0],[1,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,2,1,0],[1,3,3,2],[1,4,1,2],[1,2,0,0]],[[1,2,1,0],[1,3,3,3],[1,3,1,2],[1,2,0,0]],[[1,2,1,0],[1,3,4,2],[1,3,1,2],[1,2,0,0]],[[1,2,1,0],[1,4,3,2],[1,3,1,2],[1,2,0,0]],[[1,3,1,0],[1,3,3,2],[1,3,1,2],[1,2,0,0]],[[2,2,1,0],[1,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,1,2],[1,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,4,3,2],[0,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,4,2],[0,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,3],[0,3,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,4,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,3,0],[0,1,3,1]],[[1,1,1,1],[1,3,3,2],[0,3,3,0],[0,1,2,2]],[[1,1,1,2],[1,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[0,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[0,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[0,3,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,4,0],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[0,3,3,0],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,4,3,0],[1,1,2,0]],[[1,1,1,1],[1,4,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,1,1],[1,3,4,2],[0,3,3,0],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,4,3,0],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,3,3,0],[2,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,3,3,0],[1,3,1,0]],[[1,2,1,0],[1,3,3,2],[1,3,1,3],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[1,4,1,2],[1,1,1,0]],[[1,2,1,0],[1,3,3,3],[1,3,1,2],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[1,3,1,2],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[1,3,1,2],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[1,3,1,2],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[1,3,1,2],[1,1,0,2]],[[1,1,1,2],[1,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,4,3,2],[0,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,4,2],[0,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,3,3],[0,3,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[0,3,4,1],[0,0,2,1]],[[1,1,1,2],[1,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,4,3,2],[0,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[0,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[0,3,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[0,3,4,1],[0,1,1,1]],[[1,1,1,2],[1,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[0,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[0,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[0,3,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,3,4,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[0,3,3,1],[0,1,3,0]],[[1,1,1,2],[1,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,4,3,2],[0,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,4,2],[0,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,3],[0,3,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[0,3,4,1],[0,2,0,1]],[[1,1,1,2],[1,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,4,3,2],[0,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[0,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,3],[0,3,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[1,3,1,3],[1,1,0,1]],[[1,2,1,0],[1,3,3,2],[1,4,1,2],[1,1,0,1]],[[1,2,1,0],[1,3,3,3],[1,3,1,2],[1,1,0,1]],[[1,2,1,0],[1,3,4,2],[1,3,1,2],[1,1,0,1]],[[1,2,1,0],[1,4,3,2],[1,3,1,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,2],[1,3,1,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,1,2],[1,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,1,1],[1,4,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,1,1],[1,3,4,2],[0,3,3,1],[1,2,0,0]],[[1,1,1,1],[1,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,1,1,1],[1,3,3,2],[0,4,3,1],[1,2,0,0]],[[1,2,1,0],[1,3,3,2],[1,3,1,3],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,4,1,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,3],[1,3,1,2],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,1,2],[1,0,2,0]],[[1,2,1,0],[1,4,3,2],[1,3,1,2],[1,0,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,1,2],[1,0,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,1,2],[1,0,1,2]],[[1,2,1,0],[1,3,3,2],[1,3,1,3],[1,0,1,1]],[[1,2,1,0],[1,3,3,2],[1,4,1,2],[1,0,1,1]],[[1,2,1,0],[1,3,3,3],[1,3,1,2],[1,0,1,1]],[[1,2,1,0],[1,3,4,2],[1,3,1,2],[1,0,1,1]],[[1,2,1,0],[1,4,3,2],[1,3,1,2],[1,0,1,1]],[[1,3,1,0],[1,3,3,2],[1,3,1,2],[1,0,1,1]],[[2,2,1,0],[1,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,1,2],[1,3,3,2],[0,3,3,2],[0,1,0,1]],[[1,1,1,1],[1,4,3,2],[0,3,3,2],[0,1,0,1]],[[1,1,1,1],[1,3,4,2],[0,3,3,2],[0,1,0,1]],[[1,1,1,1],[1,3,3,3],[0,3,3,2],[0,1,0,1]],[[1,1,1,1],[1,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,1,0],[1,3,3,2],[1,3,1,2],[0,3,1,0]],[[1,2,1,0],[1,3,3,2],[1,3,1,3],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[1,4,1,2],[0,2,1,0]],[[1,2,1,0],[1,3,3,3],[1,3,1,2],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[1,3,1,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[1,3,1,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[1,3,1,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[1,3,1,2],[0,2,0,2]],[[1,2,1,0],[1,3,3,2],[1,3,1,2],[0,3,0,1]],[[1,2,1,0],[1,3,3,2],[1,3,1,3],[0,2,0,1]],[[1,2,1,0],[1,3,3,2],[1,4,1,2],[0,2,0,1]],[[1,2,1,0],[1,3,3,3],[1,3,1,2],[0,2,0,1]],[[1,2,1,0],[1,3,4,2],[1,3,1,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[1,3,1,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,2],[1,3,1,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,2,1,0],[1,3,3,2],[1,3,1,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,4,1,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[1,3,1,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,1,2],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[1,3,1,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,1,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,1,2],[0,1,1,2]],[[1,2,1,0],[1,3,3,2],[1,3,1,3],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[1,4,1,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[1,3,1,2],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[1,3,1,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,2],[1,3,1,2],[0,1,1,1]],[[1,3,1,0],[1,3,3,2],[1,3,1,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[1,4,1,1],[1,1,2,0]],[[1,2,1,0],[1,3,3,3],[1,3,1,1],[1,1,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,1,1],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[1,3,1,1],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,1,1],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,1,1],[0,2,3,0]],[[1,2,1,0],[1,3,3,2],[1,3,1,1],[0,3,2,0]],[[1,2,1,0],[1,3,3,2],[1,4,1,1],[0,2,2,0]],[[1,2,1,0],[1,3,3,3],[1,3,1,1],[0,2,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,1,1],[0,2,2,0]],[[1,2,1,0],[1,4,3,2],[1,3,1,1],[0,2,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,1,1],[0,2,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,1,0],[1,3,3,2],[1,4,1,0],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[1,3,1,0],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[1,3,1,0],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[1,3,1,0],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[1,3,1,0],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,2,1,0],[1,3,3,2],[1,3,1,0],[0,2,2,2]],[[1,2,1,0],[1,3,3,2],[1,3,1,0],[0,2,3,1]],[[1,2,1,0],[1,3,3,2],[1,3,1,0],[0,3,2,1]],[[1,2,1,0],[1,3,3,2],[1,4,1,0],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[1,3,1,0],[0,2,2,1]],[[1,2,1,0],[1,3,4,2],[1,3,1,0],[0,2,2,1]],[[1,2,1,0],[1,4,3,2],[1,3,1,0],[0,2,2,1]],[[1,3,1,0],[1,3,3,2],[1,3,1,0],[0,2,2,1]],[[2,2,1,0],[1,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,1,2],[1,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[1,0,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[1,0,1,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,1,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,1,2],[2,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,1,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,1,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,2],[1,0,1,2],[1,2,2,2]],[[1,1,1,2],[1,3,3,2],[1,0,2,2],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[1,0,2,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[1,0,2,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,2,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,2,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,2],[1,0,2,2],[0,2,2,2]],[[1,1,1,2],[1,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,1,1,1],[1,4,3,2],[1,0,2,2],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[1,0,2,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[1,0,2,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,0,2,3],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,0,2,2],[1,2,1,2]],[[1,1,1,2],[1,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,1,1,1],[1,4,3,2],[1,0,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[1,0,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,3],[1,0,2,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,0,2,3],[1,2,2,0]],[[1,1,1,2],[1,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[1,0,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[1,0,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[1,0,3,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,4,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,3,0],[2,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,3,0],[1,3,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,3,0],[1,2,3,1]],[[1,1,1,1],[1,3,3,2],[1,0,3,0],[1,2,2,2]],[[1,1,1,2],[1,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,1,1,1],[1,4,3,2],[1,0,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[1,0,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[1,0,3,1],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,0,4,1],[1,2,1,1]],[[1,1,1,2],[1,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,1,1],[1,4,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[1,0,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,3],[1,0,3,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,0,4,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,0,3,1],[2,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,0,3,1],[1,3,2,0]],[[1,1,1,1],[1,3,3,2],[1,0,3,1],[1,2,3,0]],[[1,1,1,2],[1,3,3,2],[1,0,3,2],[0,1,2,1]],[[1,1,1,1],[1,3,4,2],[1,0,3,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,3],[1,0,3,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,3,3],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,0,3,2],[0,1,2,2]],[[1,1,1,2],[1,3,3,2],[1,0,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[1,0,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[1,0,3,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,0,3,3],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,0,3,2],[0,2,1,2]],[[1,1,1,2],[1,3,3,2],[1,0,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,4,2],[1,0,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,3],[1,0,3,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,1,1,2],[1,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[1,1,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[1,1,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,0,3],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,0,2],[2,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,0,2],[1,3,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,0,2],[1,2,3,1]],[[1,1,1,1],[1,3,3,2],[1,1,0,2],[1,2,2,2]],[[1,1,1,2],[1,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,1,1,1],[1,4,3,2],[1,1,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[1,1,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[1,1,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,1,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,1,2],[0,3,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,1,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,2],[1,1,1,2],[0,2,2,2]],[[1,1,1,2],[1,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[1,1,2,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[1,1,2,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,1,2,3],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,1,2,2],[0,2,1,2]],[[1,1,1,2],[1,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,1,1,1],[1,4,3,2],[1,1,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,4,2],[1,1,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,3],[1,1,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,1,1,2],[1,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,1,1],[1,4,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[1,1,3,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[1,1,3,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,4,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,3,0],[0,3,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,3,0],[0,2,3,1]],[[1,1,1,1],[1,3,3,2],[1,1,3,0],[0,2,2,2]],[[1,1,1,2],[1,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[1,1,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[1,1,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,1,4,1],[0,2,1,1]],[[1,1,1,2],[1,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,1,1,1],[1,4,3,2],[1,1,3,1],[0,2,2,0]],[[1,1,1,1],[1,3,4,2],[1,1,3,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,3],[1,1,3,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,1,4,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,1,3,1],[0,3,2,0]],[[1,1,1,1],[1,3,3,2],[1,1,3,1],[0,2,3,0]],[[1,1,1,2],[1,3,3,2],[1,1,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,4,2],[1,1,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,3],[1,1,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,1,3,2],[0,0,2,2]],[[1,1,1,2],[1,3,3,2],[1,1,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[1,1,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[1,1,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,1,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,1,3,2],[0,1,1,2]],[[1,1,1,2],[1,3,3,2],[1,1,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[1,1,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[1,1,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,4,0,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,3],[1,3,0,2],[1,1,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,0,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[1,3,0,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,0,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,0,2],[1,1,1,2]],[[1,2,1,0],[1,3,3,2],[1,3,0,3],[1,1,1,1]],[[1,1,1,2],[1,3,3,2],[1,1,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,2],[1,1,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,3],[1,1,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,1,3,3],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,1,3,2],[1,0,1,2]],[[1,1,1,2],[1,3,3,2],[1,1,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[1,1,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,3],[1,1,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,4,0,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[1,3,0,2],[1,1,1,1]],[[1,2,1,0],[1,3,4,2],[1,3,0,2],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[1,3,0,2],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[1,3,0,2],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[1,3,0,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,2],[1,3,0,2],[1,0,3,1]],[[1,2,1,0],[1,3,3,2],[1,3,0,3],[1,0,2,1]],[[1,2,1,0],[1,3,3,2],[1,4,0,2],[1,0,2,1]],[[1,2,1,0],[1,3,3,3],[1,3,0,2],[1,0,2,1]],[[1,2,1,0],[1,3,4,2],[1,3,0,2],[1,0,2,1]],[[1,2,1,0],[1,4,3,2],[1,3,0,2],[1,0,2,1]],[[1,3,1,0],[1,3,3,2],[1,3,0,2],[1,0,2,1]],[[2,2,1,0],[1,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,1,0],[1,3,3,2],[1,3,0,2],[0,2,3,0]],[[1,2,1,0],[1,3,3,2],[1,3,0,2],[0,3,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,0,3],[0,2,2,0]],[[1,2,1,0],[1,3,3,2],[1,4,0,2],[0,2,2,0]],[[1,2,1,0],[1,3,3,3],[1,3,0,2],[0,2,2,0]],[[1,2,1,0],[1,3,4,2],[1,3,0,2],[0,2,2,0]],[[1,1,1,2],[1,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,1,1],[1,4,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[1,2,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[1,2,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,0,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,0,2],[0,3,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,0,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,2],[1,2,0,2],[0,2,2,2]],[[1,1,1,2],[1,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,1,1,1],[1,4,3,2],[1,2,1,2],[0,1,2,1]],[[1,1,1,1],[1,3,4,2],[1,2,1,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,3],[1,2,1,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,1,3],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,1,2],[0,1,3,1]],[[1,1,1,1],[1,3,3,2],[1,2,1,2],[0,1,2,2]],[[1,1,1,2],[1,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,1,1,1],[1,4,3,2],[1,2,1,2],[1,0,2,1]],[[1,1,1,1],[1,3,4,2],[1,2,1,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,3],[1,2,1,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,1,3],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,1,2],[1,0,3,1]],[[1,1,1,1],[1,3,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,1,0],[1,4,3,2],[1,3,0,2],[0,2,2,0]],[[1,3,1,0],[1,3,3,2],[1,3,0,2],[0,2,2,0]],[[2,2,1,0],[1,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,1,0],[1,3,3,2],[1,3,0,2],[0,2,1,2]],[[1,2,1,0],[1,3,3,2],[1,3,0,2],[0,3,1,1]],[[1,2,1,0],[1,3,3,2],[1,3,0,3],[0,2,1,1]],[[1,2,1,0],[1,3,3,2],[1,4,0,2],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[1,3,0,2],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[1,3,0,2],[0,2,1,1]],[[1,1,1,2],[1,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,1,1],[1,4,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,1,1],[1,3,4,2],[1,2,2,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,3],[1,2,2,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,2,3],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,2,2],[0,0,2,2]],[[1,1,1,2],[1,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,1,1,1],[1,4,3,2],[1,2,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[1,2,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[1,2,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,2,2,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,2,2,2],[0,1,1,2]],[[1,1,1,2],[1,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[1,2,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[1,2,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[1,2,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[1,2,2,3],[0,1,2,0]],[[1,1,1,2],[1,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,1,1,1],[1,4,3,2],[1,2,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,2],[1,2,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,3],[1,2,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[1,2,2,3],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[1,2,2,2],[0,2,0,2]],[[1,1,1,2],[1,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,1,1],[1,4,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[1,2,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,3],[1,2,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[1,3,0,2],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[1,3,0,2],[0,2,1,1]],[[2,2,1,0],[1,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,1,0],[1,3,3,2],[1,3,0,2],[0,1,2,2]],[[1,2,1,0],[1,3,3,2],[1,3,0,2],[0,1,3,1]],[[1,2,1,0],[1,3,3,2],[1,3,0,3],[0,1,2,1]],[[1,2,1,0],[1,3,3,2],[1,4,0,2],[0,1,2,1]],[[1,2,1,0],[1,3,3,3],[1,3,0,2],[0,1,2,1]],[[1,1,1,2],[1,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,1,1,1],[1,4,3,2],[1,2,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,2],[1,2,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,3],[1,2,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,2,2,3],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,2,2,2],[1,0,1,2]],[[1,1,1,2],[1,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,1,1,1],[1,4,3,2],[1,2,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[1,2,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,3],[1,2,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[1,2,2,3],[1,0,2,0]],[[1,1,1,2],[1,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,1,1,1],[1,4,3,2],[1,2,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,4,2],[1,2,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,3],[1,2,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[1,2,2,3],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[1,2,2,2],[1,1,0,2]],[[1,1,1,2],[1,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,1,1,1],[1,4,3,2],[1,2,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,4,2],[1,2,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,3],[1,2,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[1,3,0,2],[0,1,2,1]],[[1,2,1,0],[1,4,3,2],[1,3,0,2],[0,1,2,1]],[[1,3,1,0],[1,3,3,2],[1,3,0,2],[0,1,2,1]],[[2,2,1,0],[1,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,2,1,0],[1,3,3,2],[1,4,0,1],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[1,3,0,1],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[1,3,0,1],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[1,3,0,1],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[1,3,0,1],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,1,0],[1,3,3,2],[1,3,0,1],[0,2,2,2]],[[1,2,1,0],[1,3,3,2],[1,3,0,1],[0,2,3,1]],[[1,2,1,0],[1,3,3,2],[1,3,0,1],[0,3,2,1]],[[1,2,1,0],[1,3,3,2],[1,4,0,1],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[1,3,0,1],[0,2,2,1]],[[1,2,1,0],[1,3,4,2],[1,3,0,1],[0,2,2,1]],[[1,2,1,0],[1,4,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,1,2],[1,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,1,1],[1,4,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,4,2],[1,2,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,3],[1,2,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,4,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,3,0],[0,1,3,1]],[[1,1,1,1],[1,3,3,2],[1,2,3,0],[0,1,2,2]],[[1,1,1,2],[1,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[1,2,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[1,2,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[1,2,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,2,4,0],[0,2,1,1]],[[1,1,1,2],[1,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,1,1],[1,4,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,4,2],[1,2,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,3],[1,2,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,4,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,3,0],[1,0,3,1]],[[1,1,1,1],[1,3,3,2],[1,2,3,0],[1,0,2,2]],[[1,1,1,2],[1,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[1,2,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[1,2,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,2,4,0],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[1,3,0,1],[0,2,2,1]],[[2,2,1,0],[1,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,1,2],[1,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,1,1],[1,4,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,4,2],[1,2,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,3,3],[1,2,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,2,4,1],[0,0,2,1]],[[1,1,1,2],[1,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,1,1,1],[1,4,3,2],[1,2,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[1,2,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[1,2,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,2,4,1],[0,1,1,1]],[[1,1,1,2],[1,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[1,2,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[1,2,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[1,2,4,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[1,2,3,1],[0,1,3,0]],[[1,1,1,2],[1,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,1,1],[1,4,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,4,2],[1,2,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,3],[1,2,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[1,2,4,1],[0,2,0,1]],[[1,1,1,2],[1,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,1,1,1],[1,4,3,2],[1,2,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[1,2,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,3],[1,2,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,2,4,1],[0,2,1,0]],[[1,1,1,2],[1,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,1,1],[1,4,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,4,2],[1,2,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,3,3],[1,2,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,2,4,1],[1,0,1,1]],[[1,1,1,2],[1,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,1,1,1],[1,4,3,2],[1,2,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[1,2,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,3],[1,2,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[1,2,4,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[1,2,3,1],[1,0,3,0]],[[1,1,1,2],[1,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,1,1],[1,4,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,4,2],[1,2,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,3,3],[1,2,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[1,2,4,1],[1,1,0,1]],[[1,1,1,2],[1,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,1,1,1],[1,4,3,2],[1,2,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,4,2],[1,2,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,3,3],[1,2,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,1,0],[1,3,3,3],[1,2,3,2],[1,0,0,1]],[[1,2,1,0],[1,3,4,2],[1,2,3,2],[1,0,0,1]],[[1,2,1,0],[1,4,3,2],[1,2,3,2],[1,0,0,1]],[[1,3,1,0],[1,3,3,2],[1,2,3,2],[1,0,0,1]],[[2,2,1,0],[1,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,1,2],[1,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,1,1],[1,4,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,1,1],[1,3,4,2],[1,2,3,2],[0,1,0,1]],[[1,1,1,1],[1,3,3,3],[1,2,3,2],[0,1,0,1]],[[1,1,1,1],[1,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,1,0],[1,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,1,0],[1,3,3,3],[1,2,3,2],[0,1,0,1]],[[1,2,1,0],[1,3,4,2],[1,2,3,2],[0,1,0,1]],[[1,2,1,0],[1,4,3,2],[1,2,3,2],[0,1,0,1]],[[1,3,1,0],[1,3,3,2],[1,2,3,2],[0,1,0,1]],[[2,2,1,0],[1,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,1,2],[1,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,1,1],[1,4,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,1,1],[1,3,4,2],[1,2,3,2],[1,0,0,1]],[[1,1,1,1],[1,3,3,3],[1,2,3,2],[1,0,0,1]],[[1,1,1,1],[1,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,1,0],[1,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,1,0],[1,3,3,3],[1,2,3,1],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[1,2,3,1],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[1,2,3,1],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[1,2,3,1],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[1,2,4,1],[1,1,0,1]],[[1,2,1,0],[1,3,3,3],[1,2,3,1],[1,1,0,1]],[[1,2,1,0],[1,3,4,2],[1,2,3,1],[1,1,0,1]],[[1,2,1,0],[1,4,3,2],[1,2,3,1],[1,1,0,1]],[[1,3,1,0],[1,3,3,2],[1,2,3,1],[1,1,0,1]],[[2,2,1,0],[1,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,1,0],[1,3,3,2],[1,2,3,1],[1,0,3,0]],[[1,2,1,0],[1,3,3,2],[1,2,4,1],[1,0,2,0]],[[1,2,1,0],[1,3,3,3],[1,2,3,1],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[1,2,3,1],[1,0,2,0]],[[1,2,1,0],[1,4,3,2],[1,2,3,1],[1,0,2,0]],[[1,3,1,0],[1,3,3,2],[1,2,3,1],[1,0,2,0]],[[2,2,1,0],[1,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,2,4,1],[1,0,1,1]],[[1,2,1,0],[1,3,3,3],[1,2,3,1],[1,0,1,1]],[[1,2,1,0],[1,3,4,2],[1,2,3,1],[1,0,1,1]],[[1,2,1,0],[1,4,3,2],[1,2,3,1],[1,0,1,1]],[[1,3,1,0],[1,3,3,2],[1,2,3,1],[1,0,1,1]],[[2,2,1,0],[1,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,1,2],[1,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[1,3,0,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[1,3,0,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,4,0,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,1],[0,3,2,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,1],[0,2,3,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,1],[0,2,2,2]],[[1,1,1,2],[1,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[1,3,0,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[1,3,0,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,4,0,1],[1,1,2,1]],[[1,1,1,2],[1,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,1,1],[1,3,4,2],[1,3,0,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,3],[1,3,0,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,4,0,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,3],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,2],[0,1,3,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,2],[0,1,2,2]],[[1,1,1,2],[1,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[1,3,0,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[1,3,0,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,4,0,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,3],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,2],[0,3,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,2],[0,2,1,2]],[[1,1,1,2],[1,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,0,2],[0,2,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,0,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,3],[1,3,0,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,4,0,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,0,3],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,0,2],[0,3,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,0,2],[0,2,3,0]],[[1,1,1,2],[1,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,4,2],[1,3,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,3],[1,3,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,4,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,3],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,2],[1,0,3,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,2],[1,0,2,2]],[[1,1,1,2],[1,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[1,3,0,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[1,3,0,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,4,0,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,3],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,0,2],[1,1,1,2]],[[1,1,1,2],[1,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,0,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,3],[1,3,0,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[1,4,0,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,2,4,1],[0,2,1,0]],[[1,1,1,2],[1,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[1,3,1,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[1,3,1,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,4,1,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,0],[0,3,2,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,0],[0,2,3,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,0],[0,2,2,2]],[[1,1,1,2],[1,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,1,0],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[1,3,1,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[1,3,1,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,4,1,0],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,1,0],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,1,0],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,4,1,0],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,1,0],[2,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,1,0],[1,3,2,0]],[[1,1,1,2],[1,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,1,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,3],[1,3,1,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,4,1,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,1,1],[0,3,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,1,1],[0,2,3,0]],[[1,1,1,2],[1,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,1,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,3],[1,3,1,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[1,4,1,1],[1,1,2,0]],[[1,2,1,0],[1,3,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[1,2,3,1],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[1,2,3,1],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[1,2,3,1],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[1,2,4,1],[0,2,0,1]],[[1,2,1,0],[1,3,3,3],[1,2,3,1],[0,2,0,1]],[[1,2,1,0],[1,3,4,2],[1,2,3,1],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,1,2],[1,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,1,1],[1,4,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[1,3,1,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[1,3,1,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,4,1,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,2],[0,1,1,2]],[[1,1,1,2],[1,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,1,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[1,3,1,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[1,4,1,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,1,3],[0,1,2,0]],[[1,1,1,2],[1,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,1,1,1],[1,4,3,2],[1,3,1,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,2],[1,3,1,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,3],[1,3,1,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[1,4,1,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,3],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,2],[0,3,0,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,2],[0,2,0,2]],[[1,1,1,2],[1,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,1,1,1],[1,4,3,2],[1,3,1,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[1,3,1,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,3],[1,3,1,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,4,1,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,3,1,3],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,3,1,2],[0,3,1,0]],[[1,3,1,0],[1,3,3,2],[1,2,3,1],[0,2,0,1]],[[2,2,1,0],[1,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,1,2],[1,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,1,1],[1,4,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,2],[1,3,1,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,3],[1,3,1,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,4,1,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,3],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,2],[1,0,1,2]],[[1,1,1,2],[1,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,1,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,1,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,3],[1,3,1,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[1,4,1,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,1,3],[1,0,2,0]],[[1,1,1,2],[1,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,1,1],[1,4,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,1,1],[1,3,4,2],[1,3,1,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,3],[1,3,1,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[1,4,1,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,3],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[1,3,1,2],[1,1,0,2]],[[1,1,1,2],[1,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,1,1,1],[1,4,3,2],[1,3,1,2],[1,1,1,0]],[[1,1,1,1],[1,3,4,2],[1,3,1,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,3],[1,3,1,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[1,4,1,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[1,3,1,3],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[1,2,3,1],[0,1,3,0]],[[1,2,1,0],[1,3,3,2],[1,2,4,1],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[1,2,3,1],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[1,2,3,1],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[1,2,3,1],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[1,2,3,1],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,1,2],[1,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,1,1],[1,4,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,1,1],[1,3,4,2],[1,3,1,2],[1,2,0,0]],[[1,1,1,1],[1,3,3,3],[1,3,1,2],[1,2,0,0]],[[1,1,1,1],[1,3,3,2],[1,4,1,2],[1,2,0,0]],[[1,2,1,0],[1,3,3,2],[1,2,4,1],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[1,2,3,1],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[1,2,3,1],[0,1,1,1]],[[1,2,1,0],[1,4,3,2],[1,2,3,1],[0,1,1,1]],[[1,3,1,0],[1,3,3,2],[1,2,3,1],[0,1,1,1]],[[2,2,1,0],[1,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[1,2,4,1],[0,0,2,1]],[[1,2,1,0],[1,3,3,3],[1,2,3,1],[0,0,2,1]],[[1,2,1,0],[1,3,4,2],[1,2,3,1],[0,0,2,1]],[[1,2,1,0],[1,4,3,2],[1,2,3,1],[0,0,2,1]],[[1,3,1,0],[1,3,3,2],[1,2,3,1],[0,0,2,1]],[[2,2,1,0],[1,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,1,0],[1,3,3,2],[1,2,4,0],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[1,2,3,0],[1,1,1,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,2,0],[0,1,2,1]],[[1,1,1,1],[1,3,4,2],[1,3,2,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,3],[1,3,2,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[1,4,2,0],[0,1,2,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[1,3,2,0],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[1,3,2,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[1,3,2,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,4,2,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,2,0],[0,3,1,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,1,1],[1,3,4,2],[1,3,2,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,3],[1,3,2,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,4,2,0],[1,0,2,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[1,3,2,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[1,3,2,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,4,2,0],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[1,3,2,0],[1,2,1,0]],[[1,1,1,1],[1,3,4,2],[1,3,2,0],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,4,2,0],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,3,2,0],[2,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,1,0],[1,3,4,2],[1,2,3,0],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[1,2,3,0],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[1,2,3,0],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[1,2,3,0],[1,0,2,2]],[[1,2,1,0],[1,3,3,2],[1,2,3,0],[1,0,3,1]],[[1,2,1,0],[1,3,3,2],[1,2,4,0],[1,0,2,1]],[[1,2,1,0],[1,3,3,3],[1,2,3,0],[1,0,2,1]],[[1,2,1,0],[1,3,4,2],[1,2,3,0],[1,0,2,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,1,1,1],[1,4,3,2],[1,3,2,1],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[1,3,2,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[1,3,2,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[1,4,2,1],[0,1,1,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,2,1],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,2,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[1,3,2,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[1,4,2,1],[0,1,2,0]],[[1,1,1,2],[1,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,1,1],[1,4,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,1,1],[1,3,4,2],[1,3,2,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,3],[1,3,2,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[1,4,2,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[1,3,2,1],[0,3,0,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,1,1,1],[1,4,3,2],[1,3,2,1],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[1,3,2,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,3],[1,3,2,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,4,2,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,3,2,1],[0,3,1,0]],[[1,2,1,0],[1,4,3,2],[1,2,3,0],[1,0,2,1]],[[1,3,1,0],[1,3,3,2],[1,2,3,0],[1,0,2,1]],[[2,2,1,0],[1,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,1,1],[1,4,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,1,1],[1,3,4,2],[1,3,2,1],[1,0,1,1]],[[1,1,1,1],[1,3,3,3],[1,3,2,1],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,4,2,1],[1,0,1,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,2,1],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,2,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,3],[1,3,2,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[1,4,2,1],[1,0,2,0]],[[1,1,1,2],[1,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,1,1,1],[1,4,3,2],[1,3,2,1],[1,1,0,1]],[[1,1,1,1],[1,3,4,2],[1,3,2,1],[1,1,0,1]],[[1,1,1,1],[1,3,3,3],[1,3,2,1],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[1,4,2,1],[1,1,0,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,1,1],[1,4,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,1,1],[1,3,4,2],[1,3,2,1],[1,1,1,0]],[[1,1,1,1],[1,3,3,3],[1,3,2,1],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[1,4,2,1],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[1,2,4,0],[0,2,1,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,1,1,1],[1,4,3,2],[1,3,2,1],[1,2,0,0]],[[1,1,1,1],[1,3,4,2],[1,3,2,1],[1,2,0,0]],[[1,1,1,1],[1,3,3,3],[1,3,2,1],[1,2,0,0]],[[1,1,1,1],[1,3,3,2],[1,4,2,1],[1,2,0,0]],[[1,2,1,0],[1,3,3,3],[1,2,3,0],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[1,2,3,0],[0,2,1,1]],[[1,2,1,0],[1,4,3,2],[1,2,3,0],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[1,2,3,0],[0,2,1,1]],[[2,2,1,0],[1,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,1,0],[1,3,3,2],[1,2,3,0],[0,1,2,2]],[[1,2,1,0],[1,3,3,2],[1,2,3,0],[0,1,3,1]],[[1,2,1,0],[1,3,3,2],[1,2,4,0],[0,1,2,1]],[[1,2,1,0],[1,3,3,3],[1,2,3,0],[0,1,2,1]],[[1,2,1,0],[1,3,4,2],[1,2,3,0],[0,1,2,1]],[[1,2,1,0],[1,4,3,2],[1,2,3,0],[0,1,2,1]],[[1,3,1,0],[1,3,3,2],[1,2,3,0],[0,1,2,1]],[[2,2,1,0],[1,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,1,2],[1,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,1,1,1],[1,4,3,2],[1,3,2,2],[0,0,1,1]],[[1,1,1,1],[1,3,4,2],[1,3,2,2],[0,0,1,1]],[[1,1,1,1],[1,3,3,3],[1,3,2,2],[0,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,2,3],[0,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,2,2],[0,0,1,2]],[[1,1,1,2],[1,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,2,2],[0,0,2,0]],[[1,1,1,1],[1,3,3,3],[1,3,2,2],[0,0,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,1,0],[1,3,3,3],[1,2,2,2],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[1,2,2,2],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[1,2,2,2],[1,1,1,0]],[[1,3,1,0],[1,3,3,2],[1,2,2,2],[1,1,1,0]],[[2,2,1,0],[1,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[1,2,2,2],[1,1,0,2]],[[1,2,1,0],[1,3,3,2],[1,2,2,3],[1,1,0,1]],[[1,2,1,0],[1,3,3,3],[1,2,2,2],[1,1,0,1]],[[1,2,1,0],[1,3,4,2],[1,2,2,2],[1,1,0,1]],[[1,2,1,0],[1,4,3,2],[1,2,2,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,2],[1,2,2,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,1,0],[1,3,3,2],[1,2,2,3],[1,0,2,0]],[[1,2,1,0],[1,3,3,3],[1,2,2,2],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[1,2,2,2],[1,0,2,0]],[[1,2,1,0],[1,4,3,2],[1,2,2,2],[1,0,2,0]],[[1,3,1,0],[1,3,3,2],[1,2,2,2],[1,0,2,0]],[[2,2,1,0],[1,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,2,2,2],[1,0,1,2]],[[1,2,1,0],[1,3,3,2],[1,2,2,3],[1,0,1,1]],[[1,2,1,0],[1,3,3,3],[1,2,2,2],[1,0,1,1]],[[1,2,1,0],[1,3,4,2],[1,2,2,2],[1,0,1,1]],[[1,2,1,0],[1,4,3,2],[1,2,2,2],[1,0,1,1]],[[1,3,1,0],[1,3,3,2],[1,2,2,2],[1,0,1,1]],[[2,2,1,0],[1,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,1,0],[1,3,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,1,0],[1,3,3,3],[1,2,2,2],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[1,2,2,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[1,2,2,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[1,2,2,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[1,2,2,2],[0,2,0,2]],[[1,2,1,0],[1,3,3,2],[1,2,2,3],[0,2,0,1]],[[1,2,1,0],[1,3,3,3],[1,2,2,2],[0,2,0,1]],[[1,2,1,0],[1,3,4,2],[1,2,2,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[1,2,2,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,2],[1,2,2,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,1,0],[1,3,3,2],[1,2,2,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[1,2,2,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[1,2,2,2],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[1,2,2,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[1,2,2,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,2,2,2],[0,1,1,2]],[[1,2,1,0],[1,3,3,2],[1,2,2,3],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[1,2,2,2],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[1,2,2,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,2],[1,2,2,2],[0,1,1,1]],[[1,3,1,0],[1,3,3,2],[1,2,2,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[1,2,2,2],[0,0,2,2]],[[1,2,1,0],[1,3,3,2],[1,2,2,3],[0,0,2,1]],[[1,2,1,0],[1,3,3,3],[1,2,2,2],[0,0,2,1]],[[1,2,1,0],[1,3,4,2],[1,2,2,2],[0,0,2,1]],[[1,2,1,0],[1,4,3,2],[1,2,2,2],[0,0,2,1]],[[1,3,1,0],[1,3,3,2],[1,2,2,2],[0,0,2,1]],[[2,2,1,0],[1,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,1,2],[1,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,1,1],[1,3,4,2],[1,3,3,0],[0,0,2,1]],[[1,1,1,1],[1,3,3,3],[1,3,3,0],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[1,3,4,0],[0,0,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,3,0],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,3,0],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[1,4,3,0],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[1,3,3,0],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,4,3,0],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[1,3,3,0],[0,3,1,0]],[[1,2,1,0],[1,3,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,2],[1,2,1,2],[1,0,3,1]],[[1,2,1,0],[1,3,3,2],[1,2,1,3],[1,0,2,1]],[[1,2,1,0],[1,3,3,3],[1,2,1,2],[1,0,2,1]],[[1,2,1,0],[1,3,4,2],[1,2,1,2],[1,0,2,1]],[[1,1,1,1],[1,4,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,3,0],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[1,4,3,0],[1,0,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,3,0],[1,1,1,0]],[[1,1,1,1],[1,3,4,2],[1,3,3,0],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[1,4,3,0],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[1,2,1,2],[1,0,2,1]],[[1,3,1,0],[1,3,3,2],[1,2,1,2],[1,0,2,1]],[[2,2,1,0],[1,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,1,0],[1,3,3,2],[1,2,1,2],[0,1,2,2]],[[1,2,1,0],[1,3,3,2],[1,2,1,2],[0,1,3,1]],[[1,2,1,0],[1,3,3,2],[1,2,1,3],[0,1,2,1]],[[1,2,1,0],[1,3,3,3],[1,2,1,2],[0,1,2,1]],[[1,2,1,0],[1,3,4,2],[1,2,1,2],[0,1,2,1]],[[1,2,1,0],[1,4,3,2],[1,2,1,2],[0,1,2,1]],[[1,3,1,0],[1,3,3,2],[1,2,1,2],[0,1,2,1]],[[2,2,1,0],[1,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,1,0],[1,3,3,2],[1,2,0,2],[0,2,2,2]],[[1,1,1,2],[1,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,1,1],[1,4,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,1,1],[1,3,4,2],[1,3,3,1],[0,0,1,1]],[[1,1,1,1],[1,3,3,3],[1,3,3,1],[0,0,1,1]],[[1,1,1,1],[1,3,3,2],[1,3,4,1],[0,0,1,1]],[[1,1,1,2],[1,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,1,1,1],[1,4,3,2],[1,3,3,1],[0,0,2,0]],[[1,1,1,1],[1,3,4,2],[1,3,3,1],[0,0,2,0]],[[1,1,1,1],[1,3,3,3],[1,3,3,1],[0,0,2,0]],[[1,1,1,1],[1,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,2,0,2],[0,2,3,1]],[[1,2,1,0],[1,3,3,2],[1,2,0,2],[0,3,2,1]],[[1,2,1,0],[1,3,3,2],[1,2,0,3],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[1,2,0,2],[0,2,2,1]],[[1,2,1,0],[1,3,4,2],[1,2,0,2],[0,2,2,1]],[[1,2,1,0],[1,4,3,2],[1,2,0,2],[0,2,2,1]],[[1,3,1,0],[1,3,3,2],[1,2,0,2],[0,2,2,1]],[[2,2,1,0],[1,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,1,2],[1,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,1,1],[1,4,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,1,1],[1,3,4,2],[1,3,3,1],[0,2,0,0]],[[1,1,1,1],[1,3,3,3],[1,3,3,1],[0,2,0,0]],[[1,1,1,1],[1,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,2,1,0],[1,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,1,0],[1,3,3,3],[1,1,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,4,2],[1,1,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[1,1,3,2],[1,0,1,2]],[[1,2,1,0],[1,3,3,2],[1,1,3,3],[1,0,1,1]],[[1,2,1,0],[1,3,3,3],[1,1,3,2],[1,0,1,1]],[[1,2,1,0],[1,3,4,2],[1,1,3,2],[1,0,1,1]],[[1,1,1,2],[1,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,1,1],[1,4,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,1,1],[1,3,4,2],[1,3,3,1],[1,1,0,0]],[[1,1,1,1],[1,3,3,3],[1,3,3,1],[1,1,0,0]],[[1,1,1,1],[1,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,1,0],[1,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[1,1,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[1,1,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[1,1,3,2],[0,1,1,2]],[[1,2,1,0],[1,3,3,2],[1,1,3,3],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[1,1,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[1,1,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[1,1,3,2],[0,0,2,2]],[[1,2,1,0],[1,3,3,2],[1,1,3,3],[0,0,2,1]],[[1,2,1,0],[1,3,3,3],[1,1,3,2],[0,0,2,1]],[[1,2,1,0],[1,3,4,2],[1,1,3,2],[0,0,2,1]],[[1,2,1,0],[1,3,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,1,0],[1,3,3,2],[1,1,3,1],[0,3,2,0]],[[1,2,1,0],[1,3,3,2],[1,1,4,1],[0,2,2,0]],[[1,2,1,0],[1,3,3,3],[1,1,3,1],[0,2,2,0]],[[1,2,1,0],[1,3,4,2],[1,1,3,1],[0,2,2,0]],[[1,2,1,0],[1,4,3,2],[1,1,3,1],[0,2,2,0]],[[1,3,1,0],[1,3,3,2],[1,1,3,1],[0,2,2,0]],[[2,2,1,0],[1,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,1,0],[1,3,3,2],[1,1,4,1],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[1,1,3,1],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[1,1,3,1],[0,2,1,1]],[[1,2,1,0],[1,4,3,2],[1,1,3,1],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[1,1,3,1],[0,2,1,1]],[[2,2,1,0],[1,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,1,2],[1,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,1,1],[1,4,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,1,1],[1,3,4,2],[1,3,3,2],[0,0,0,1]],[[1,1,1,1],[1,3,3,3],[1,3,3,2],[0,0,0,1]],[[1,1,1,1],[1,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,1,0],[1,3,3,2],[1,1,3,0],[0,2,2,2]],[[1,2,1,0],[1,3,3,2],[1,1,3,0],[0,2,3,1]],[[1,2,1,0],[1,3,3,2],[1,1,3,0],[0,3,2,1]],[[1,2,1,0],[1,3,3,2],[1,1,4,0],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[1,1,3,0],[0,2,2,1]],[[1,2,1,0],[1,3,4,2],[1,1,3,0],[0,2,2,1]],[[1,2,1,0],[1,4,3,2],[1,1,3,0],[0,2,2,1]],[[1,3,1,0],[1,3,3,2],[1,1,3,0],[0,2,2,1]],[[2,2,1,0],[1,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,1,0],[1,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,1,0],[1,3,3,3],[1,1,2,2],[0,2,2,0]],[[1,2,1,0],[1,3,4,2],[1,1,2,2],[0,2,2,0]],[[1,2,1,0],[1,4,3,2],[1,1,2,2],[0,2,2,0]],[[1,3,1,0],[1,3,3,2],[1,1,2,2],[0,2,2,0]],[[2,2,1,0],[1,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,1,0],[1,3,3,2],[1,1,2,2],[0,2,1,2]],[[1,2,1,0],[1,3,3,2],[1,1,2,3],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[1,1,2,2],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[1,1,2,2],[0,2,1,1]],[[1,2,1,0],[1,4,3,2],[1,1,2,2],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[1,1,2,2],[0,2,1,1]],[[2,2,1,0],[1,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,1,0],[1,3,3,2],[1,1,1,2],[0,2,2,2]],[[1,2,1,0],[1,3,3,2],[1,1,1,2],[0,2,3,1]],[[1,2,1,0],[1,3,3,2],[1,1,1,2],[0,3,2,1]],[[1,2,1,0],[1,3,3,2],[1,1,1,3],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[1,1,1,2],[0,2,2,1]],[[1,2,1,0],[1,3,4,2],[1,1,1,2],[0,2,2,1]],[[1,2,1,0],[1,4,3,2],[1,1,1,2],[0,2,2,1]],[[1,3,1,0],[1,3,3,2],[1,1,1,2],[0,2,2,1]],[[2,2,1,0],[1,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,1,0],[1,3,3,2],[1,1,0,2],[1,2,2,2]],[[1,2,1,0],[1,3,3,2],[1,1,0,2],[1,2,3,1]],[[1,2,1,0],[1,3,3,2],[1,1,0,2],[1,3,2,1]],[[1,2,1,0],[1,3,3,2],[1,1,0,2],[2,2,2,1]],[[1,2,1,0],[1,3,3,2],[1,1,0,3],[1,2,2,1]],[[1,2,1,0],[1,3,3,3],[1,1,0,2],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[1,1,0,2],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[1,1,0,2],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[1,1,0,2],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,2,1,0],[1,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,1,0],[1,3,3,3],[1,0,3,2],[0,2,2,0]],[[1,2,1,0],[1,3,4,2],[1,0,3,2],[0,2,2,0]],[[1,2,1,0],[1,3,3,2],[1,0,3,2],[0,2,1,2]],[[1,2,1,0],[1,3,3,2],[1,0,3,3],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[1,0,3,2],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[1,0,3,2],[0,2,1,1]],[[1,2,1,0],[1,3,3,2],[1,0,3,2],[0,1,2,2]],[[1,2,1,0],[1,3,3,2],[1,0,3,3],[0,1,2,1]],[[1,2,1,0],[1,3,3,3],[1,0,3,2],[0,1,2,1]],[[1,2,1,0],[1,3,4,2],[1,0,3,2],[0,1,2,1]],[[1,2,1,0],[1,3,3,2],[1,0,3,1],[1,2,3,0]],[[1,2,1,0],[1,3,3,2],[1,0,3,1],[1,3,2,0]],[[1,2,1,0],[1,3,3,2],[1,0,3,1],[2,2,2,0]],[[1,2,1,0],[1,3,3,2],[1,0,4,1],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[1,0,3,1],[1,2,2,0]],[[1,2,1,0],[1,3,4,2],[1,0,3,1],[1,2,2,0]],[[1,2,1,0],[1,4,3,2],[1,0,3,1],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[1,0,3,1],[1,2,2,0]],[[2,2,1,0],[1,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,1,0],[1,3,3,2],[1,0,4,1],[1,2,1,1]],[[1,2,1,0],[1,3,3,3],[1,0,3,1],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[1,0,3,1],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[1,0,3,1],[1,2,1,1]],[[1,3,1,0],[1,3,3,2],[1,0,3,1],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[1,0,3,0],[1,2,2,2]],[[1,2,1,0],[1,3,3,2],[1,0,3,0],[1,2,3,1]],[[1,2,1,0],[1,3,3,2],[1,0,3,0],[1,3,2,1]],[[1,2,1,0],[1,3,3,2],[1,0,3,0],[2,2,2,1]],[[1,2,1,0],[1,3,3,2],[1,0,4,0],[1,2,2,1]],[[1,2,1,0],[1,3,3,3],[1,0,3,0],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[1,0,3,0],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[1,0,3,0],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[1,0,3,0],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,1,0],[1,3,3,2],[1,0,2,3],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[1,0,2,2],[1,2,2,0]],[[1,2,1,0],[1,3,4,2],[1,0,2,2],[1,2,2,0]],[[1,2,1,0],[1,4,3,2],[1,0,2,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[1,0,2,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,2],[1,0,2,2],[1,2,1,2]],[[1,2,1,0],[1,3,3,2],[1,0,2,3],[1,2,1,1]],[[1,2,1,0],[1,3,3,3],[1,0,2,2],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[1,0,2,2],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[1,0,2,2],[1,2,1,1]],[[1,3,1,0],[1,3,3,2],[1,0,2,2],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[1,0,2,2],[0,2,2,2]],[[1,2,1,0],[1,3,3,2],[1,0,2,2],[0,2,3,1]],[[1,2,1,0],[1,3,3,2],[1,0,2,3],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[1,0,2,2],[0,2,2,1]],[[1,2,1,0],[1,3,4,2],[1,0,2,2],[0,2,2,1]],[[1,2,1,0],[1,3,3,2],[1,0,1,2],[1,2,2,2]],[[1,2,1,0],[1,3,3,2],[1,0,1,2],[1,2,3,1]],[[1,2,1,0],[1,3,3,2],[1,0,1,2],[1,3,2,1]],[[1,2,1,0],[1,3,3,2],[1,0,1,2],[2,2,2,1]],[[1,2,1,0],[1,3,3,2],[1,0,1,3],[1,2,2,1]],[[1,2,1,0],[1,3,3,3],[1,0,1,2],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[1,0,1,2],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[1,0,1,2],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[1,0,1,2],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,1,2],[1,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[2,0,1,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[2,0,1,1],[1,2,2,1]],[[1,1,1,2],[1,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,1,1,1],[1,4,3,2],[2,0,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[2,0,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[2,0,1,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,1,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,1,2],[0,3,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,1,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,2],[2,0,1,2],[0,2,2,2]],[[1,1,1,2],[1,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[2,0,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[2,0,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[2,0,1,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,1,3],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,1,2],[1,1,3,1]],[[1,1,1,1],[1,3,3,2],[2,0,1,2],[1,1,2,2]],[[1,1,1,2],[1,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,1,1],[1,4,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[2,0,1,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[2,0,1,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,1,3],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,1,2],[1,2,1,2]],[[1,1,1,2],[1,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,1,1],[1,4,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[2,0,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,3],[2,0,1,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,0,1,3],[1,2,2,0]],[[1,1,1,2],[1,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[2,0,2,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[2,0,2,0],[1,2,2,1]],[[1,1,1,2],[1,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,1,1],[1,4,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[2,0,2,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,3],[2,0,2,1],[1,2,2,0]],[[1,1,1,2],[1,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[2,0,2,2],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[2,0,2,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[2,0,2,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,2,3],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,2,2],[0,2,1,2]],[[1,1,1,2],[1,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,1,1,1],[1,4,3,2],[2,0,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,4,2],[2,0,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,3],[2,0,2,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,0,2,3],[0,2,2,0]],[[1,1,1,2],[1,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[2,0,2,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[2,0,2,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,2,3],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,2,2],[1,1,1,2]],[[1,1,1,2],[1,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,1,1,1],[1,4,3,2],[2,0,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[2,0,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,3],[2,0,2,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,0,2,3],[1,1,2,0]],[[1,1,1,2],[1,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,1,1],[1,4,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,4,2],[2,0,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,3],[2,0,2,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[2,0,2,3],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[2,0,2,2],[1,2,0,2]],[[1,1,1,2],[1,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,1,1],[1,4,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,4,2],[2,0,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,3],[2,0,2,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[2,0,2,3],[1,2,1,0]],[[1,1,1,2],[1,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,1,1],[1,4,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[2,0,3,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[2,0,3,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,4,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,3,0],[0,3,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,3,0],[0,2,3,1]],[[1,1,1,1],[1,3,3,2],[2,0,3,0],[0,2,2,2]],[[1,1,1,2],[1,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[2,0,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[2,0,3,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,4,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,3,0],[1,1,3,1]],[[1,1,1,1],[1,3,3,2],[2,0,3,0],[1,1,2,2]],[[1,1,1,2],[1,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,1,1],[1,4,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[2,0,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[2,0,3,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,4,0],[1,2,1,1]],[[1,1,1,2],[1,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[2,0,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[2,0,3,1],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,4,1],[0,2,1,1]],[[1,1,1,2],[1,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,1,1,1],[1,4,3,2],[2,0,3,1],[0,2,2,0]],[[1,1,1,1],[1,3,4,2],[2,0,3,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,3],[2,0,3,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,0,4,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,0,3,1],[0,3,2,0]],[[1,1,1,1],[1,3,3,2],[2,0,3,1],[0,2,3,0]],[[1,1,1,2],[1,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[2,0,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[2,0,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[2,0,3,1],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,4,1],[1,1,1,1]],[[1,1,1,2],[1,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,1,1,1],[1,4,3,2],[2,0,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[2,0,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,3],[2,0,3,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,0,4,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,0,3,1],[1,1,3,0]],[[1,1,1,2],[1,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,1,1],[1,4,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,4,2],[2,0,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,3],[2,0,3,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[2,0,4,1],[1,2,0,1]],[[1,1,1,2],[1,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,1,1],[1,4,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,4,2],[2,0,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,3],[2,0,3,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[2,0,4,1],[1,2,1,0]],[[1,1,1,2],[1,3,3,2],[2,0,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,4,2],[2,0,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,3],[2,0,3,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,3,3],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[2,0,3,2],[0,0,2,2]],[[1,1,1,2],[1,3,3,2],[2,0,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[2,0,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[2,0,3,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,3,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,3,2],[0,1,1,2]],[[1,1,1,2],[1,3,3,2],[2,0,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[2,0,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[2,0,3,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,0,3,3],[0,1,2,0]],[[1,1,1,2],[1,3,3,2],[2,0,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,2],[2,0,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,3],[2,0,3,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,3,3],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[2,0,3,2],[1,0,1,2]],[[1,1,1,2],[1,3,3,2],[2,0,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[2,0,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,3],[2,0,3,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,1,0],[1,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,1,0],[1,3,3,3],[0,3,3,2],[0,1,0,1]],[[1,2,1,0],[1,3,4,2],[0,3,3,2],[0,1,0,1]],[[1,2,1,0],[1,4,3,2],[0,3,3,2],[0,1,0,1]],[[1,3,1,0],[1,3,3,2],[0,3,3,2],[0,1,0,1]],[[2,2,1,0],[1,3,3,2],[0,3,3,2],[0,1,0,1]],[[1,2,1,0],[1,3,3,2],[0,4,3,1],[1,2,0,0]],[[1,1,1,2],[1,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[2,1,0,1],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[2,1,0,1],[1,2,2,1]],[[1,1,1,2],[1,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,1,1],[1,4,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[2,1,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[2,1,0,2],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,0,3],[0,2,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,0,2],[0,3,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,0,2],[0,2,3,1]],[[1,1,1,1],[1,3,3,2],[2,1,0,2],[0,2,2,2]],[[1,1,1,2],[1,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[2,1,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[2,1,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[2,1,0,2],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,0,3],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,0,2],[1,1,3,1]],[[1,1,1,1],[1,3,3,2],[2,1,0,2],[1,1,2,2]],[[1,1,1,2],[1,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,1,1,1],[1,4,3,2],[2,1,0,2],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[2,1,0,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[2,1,0,2],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[2,1,0,3],[1,2,1,1]],[[1,1,1,1],[1,3,3,2],[2,1,0,2],[1,2,1,2]],[[1,1,1,2],[1,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,1,1],[1,4,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[2,1,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,3],[2,1,0,2],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,1,0,3],[1,2,2,0]],[[1,1,1,2],[1,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,1,1],[1,3,4,2],[2,1,1,0],[1,2,2,1]],[[1,1,1,1],[1,3,3,3],[2,1,1,0],[1,2,2,1]],[[1,1,1,2],[1,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,1,1,1],[1,4,3,2],[2,1,1,1],[1,2,2,0]],[[1,1,1,1],[1,3,4,2],[2,1,1,1],[1,2,2,0]],[[1,1,1,1],[1,3,3,3],[2,1,1,1],[1,2,2,0]],[[1,1,1,2],[1,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,1,1,1],[1,4,3,2],[2,1,1,2],[0,1,2,1]],[[1,1,1,1],[1,3,4,2],[2,1,1,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,3],[2,1,1,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,1,3],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,1,2],[0,1,3,1]],[[1,1,1,1],[1,3,3,2],[2,1,1,2],[0,1,2,2]],[[1,1,1,2],[1,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,1,1,1],[1,4,3,2],[2,1,1,2],[1,0,2,1]],[[1,1,1,1],[1,3,4,2],[2,1,1,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,3],[2,1,1,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,1,3],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,1,2],[1,0,3,1]],[[1,1,1,1],[1,3,3,2],[2,1,1,2],[1,0,2,2]],[[1,1,1,2],[1,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,1,1],[1,4,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,1,1],[1,3,4,2],[2,1,1,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,3],[2,1,1,2],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[2,1,1,3],[1,2,0,1]],[[1,1,1,1],[1,3,3,2],[2,1,1,2],[1,2,0,2]],[[1,1,1,2],[1,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,1,1],[1,4,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,1,1],[1,3,4,2],[2,1,1,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,3],[2,1,1,2],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[2,1,1,3],[1,2,1,0]],[[1,2,1,0],[1,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,2,1,0],[1,3,4,2],[0,3,3,1],[1,2,0,0]],[[1,2,1,0],[1,4,3,2],[0,3,3,1],[1,2,0,0]],[[1,3,1,0],[1,3,3,2],[0,3,3,1],[1,2,0,0]],[[2,2,1,0],[1,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,1,2],[1,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,1,1],[1,4,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,1,1],[1,3,4,2],[2,1,2,0],[1,2,1,1]],[[1,1,1,1],[1,3,3,3],[2,1,2,0],[1,2,1,1]],[[1,1,1,2],[1,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,1,1],[1,4,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,4,2],[2,1,2,1],[1,2,0,1]],[[1,1,1,1],[1,3,3,3],[2,1,2,1],[1,2,0,1]],[[1,1,1,2],[1,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,1,1,1],[1,4,3,2],[2,1,2,1],[1,2,1,0]],[[1,1,1,1],[1,3,4,2],[2,1,2,1],[1,2,1,0]],[[1,1,1,1],[1,3,3,3],[2,1,2,1],[1,2,1,0]],[[1,1,1,2],[1,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,1,1],[1,4,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,1,1],[1,3,4,2],[2,1,2,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,3],[2,1,2,2],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,2,3],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,2,2],[0,0,2,2]],[[1,1,1,2],[1,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,1,1,1],[1,4,3,2],[2,1,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[2,1,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[2,1,2,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,1,2,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,1,2,2],[0,1,1,2]],[[1,1,1,2],[1,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[2,1,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[2,1,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[2,1,2,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,1,2,3],[0,1,2,0]],[[1,1,1,2],[1,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,1,1],[1,4,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,2],[2,1,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,3],[2,1,2,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[2,1,2,3],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[2,1,2,2],[0,2,0,2]],[[1,1,1,2],[1,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,1,1],[1,4,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[2,1,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,3],[2,1,2,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[2,1,2,3],[0,2,1,0]],[[1,1,1,2],[1,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,1,1],[1,4,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,2],[2,1,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,3],[2,1,2,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[2,1,2,3],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[2,1,2,2],[1,0,1,2]],[[1,1,1,2],[1,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,1,1,1],[1,4,3,2],[2,1,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[2,1,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,3],[2,1,2,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[2,1,2,3],[1,0,2,0]],[[1,1,1,2],[1,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,1,1],[1,4,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,4,2],[2,1,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,3],[2,1,2,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[2,1,2,3],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[2,1,2,2],[1,1,0,2]],[[1,1,1,2],[1,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,1,1],[1,4,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,4,2],[2,1,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,3],[2,1,2,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[2,1,2,3],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,1,0],[1,3,3,3],[0,3,3,1],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[0,3,3,1],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[0,3,3,1],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[0,3,3,1],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,3,4,1],[0,2,0,1]],[[1,2,1,0],[1,3,3,3],[0,3,3,1],[0,2,0,1]],[[1,2,1,0],[1,3,4,2],[0,3,3,1],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[0,3,3,1],[0,2,0,1]],[[1,3,1,0],[1,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,1,1,2],[1,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,1,1],[1,4,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,4,2],[2,1,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,3],[2,1,3,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,4,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,3,0],[0,1,3,1]],[[1,1,1,1],[1,3,3,2],[2,1,3,0],[0,1,2,2]],[[1,1,1,2],[1,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[2,1,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[2,1,3,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[2,1,4,0],[0,2,1,1]],[[1,1,1,2],[1,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,1,1],[1,4,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,4,2],[2,1,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,3],[2,1,3,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,4,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,3,0],[1,0,3,1]],[[1,1,1,1],[1,3,3,2],[2,1,3,0],[1,0,2,2]],[[1,1,1,2],[1,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[2,1,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[2,1,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[2,1,3,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,1,4,0],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,2,1,0],[1,3,3,2],[0,3,3,1],[0,1,3,0]],[[1,1,1,2],[1,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,1,1,1],[1,4,3,2],[2,1,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,4,2],[2,1,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,3,3],[2,1,3,1],[0,0,2,1]],[[1,1,1,1],[1,3,3,2],[2,1,4,1],[0,0,2,1]],[[1,1,1,2],[1,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,1,1,1],[1,4,3,2],[2,1,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[2,1,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[2,1,3,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,1,4,1],[0,1,1,1]],[[1,1,1,2],[1,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[2,1,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[2,1,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[2,1,3,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,1,4,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,1,3,1],[0,1,3,0]],[[1,1,1,2],[1,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,1,1,1],[1,4,3,2],[2,1,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,4,2],[2,1,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,3],[2,1,3,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[2,1,4,1],[0,2,0,1]],[[1,1,1,2],[1,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,1,1,1],[1,4,3,2],[2,1,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[2,1,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,3],[2,1,3,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,3,4,1],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[0,3,3,1],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[0,3,3,1],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[0,3,3,1],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[0,3,3,1],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[0,3,4,1],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[0,3,3,1],[0,1,1,1]],[[1,1,1,2],[1,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,1,1],[1,4,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,4,2],[2,1,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,3,3],[2,1,3,1],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[2,1,4,1],[1,0,1,1]],[[1,1,1,2],[1,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,1,1,1],[1,4,3,2],[2,1,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[2,1,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,3],[2,1,3,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[2,1,4,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[2,1,3,1],[1,0,3,0]],[[1,1,1,2],[1,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,1,1],[1,4,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,4,2],[2,1,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,3,3],[2,1,3,1],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[2,1,4,1],[1,1,0,1]],[[1,1,1,2],[1,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,1,1,1],[1,4,3,2],[2,1,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,4,2],[2,1,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,3,3],[2,1,3,1],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[2,1,4,1],[1,1,1,0]],[[1,2,1,0],[1,3,4,2],[0,3,3,1],[0,1,1,1]],[[1,2,1,0],[1,4,3,2],[0,3,3,1],[0,1,1,1]],[[1,3,1,0],[1,3,3,2],[0,3,3,1],[0,1,1,1]],[[2,2,1,0],[1,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[0,3,4,1],[0,0,2,1]],[[1,2,1,0],[1,3,3,3],[0,3,3,1],[0,0,2,1]],[[1,2,1,0],[1,3,4,2],[0,3,3,1],[0,0,2,1]],[[1,2,1,0],[1,4,3,2],[0,3,3,1],[0,0,2,1]],[[1,3,1,0],[1,3,3,2],[0,3,3,1],[0,0,2,1]],[[2,2,1,0],[1,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,2,1,0],[1,3,3,2],[0,3,3,0],[1,3,1,0]],[[1,2,1,0],[1,3,3,2],[0,3,3,0],[2,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,4,3,0],[1,2,1,0]],[[1,2,1,0],[1,3,4,2],[0,3,3,0],[1,2,1,0]],[[1,2,1,0],[1,4,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,1,2],[1,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,1,1],[1,4,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,1,1],[1,3,4,2],[2,1,3,2],[0,1,0,1]],[[1,1,1,1],[1,3,3,3],[2,1,3,2],[0,1,0,1]],[[1,1,1,1],[1,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,3,1,0],[1,3,3,2],[0,3,3,0],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,4,3,0],[1,1,2,0]],[[1,2,1,0],[1,3,4,2],[0,3,3,0],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[0,3,3,0],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[0,3,3,0],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[0,3,4,0],[0,2,1,1]],[[1,2,1,0],[1,3,3,3],[0,3,3,0],[0,2,1,1]],[[1,2,1,0],[1,3,4,2],[0,3,3,0],[0,2,1,1]],[[1,2,1,0],[1,4,3,2],[0,3,3,0],[0,2,1,1]],[[1,3,1,0],[1,3,3,2],[0,3,3,0],[0,2,1,1]],[[2,2,1,0],[1,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,2,1,0],[1,3,3,2],[0,3,3,0],[0,1,2,2]],[[1,2,1,0],[1,3,3,2],[0,3,3,0],[0,1,3,1]],[[1,1,1,2],[1,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,1,1],[1,4,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,1,1],[1,3,4,2],[2,1,3,2],[1,0,0,1]],[[1,1,1,1],[1,3,3,3],[2,1,3,2],[1,0,0,1]],[[1,1,1,1],[1,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,1,0],[1,3,3,2],[0,3,4,0],[0,1,2,1]],[[1,2,1,0],[1,3,3,3],[0,3,3,0],[0,1,2,1]],[[1,2,1,0],[1,3,4,2],[0,3,3,0],[0,1,2,1]],[[1,2,1,0],[1,4,3,2],[0,3,3,0],[0,1,2,1]],[[1,3,1,0],[1,3,3,2],[0,3,3,0],[0,1,2,1]],[[2,2,1,0],[1,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,2,1,0],[1,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,1,0],[1,3,3,3],[0,3,2,2],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[0,3,2,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,2],[0,3,2,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,2],[0,3,2,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,3,2,2],[0,2,0,2]],[[1,2,1,0],[1,3,3,2],[0,3,2,3],[0,2,0,1]],[[1,2,1,0],[1,3,3,3],[0,3,2,2],[0,2,0,1]],[[1,2,1,0],[1,3,4,2],[0,3,2,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,2],[0,3,2,2],[0,2,0,1]],[[1,1,1,2],[1,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,1,1,1],[1,4,3,2],[2,2,0,1],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[2,2,0,1],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[2,2,0,1],[0,2,2,1]],[[1,1,1,2],[1,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[2,2,0,1],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[2,2,0,1],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[2,2,0,1],[1,1,2,1]],[[1,1,1,2],[1,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,1,1],[1,4,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,1,1],[1,3,4,2],[2,2,0,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,3],[2,2,0,2],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,2,0,3],[0,1,2,1]],[[1,1,1,1],[1,3,3,2],[2,2,0,2],[0,1,3,1]],[[1,1,1,1],[1,3,3,2],[2,2,0,2],[0,1,2,2]],[[1,1,1,2],[1,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[2,2,0,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[2,2,0,2],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[2,2,0,3],[0,2,1,1]],[[1,1,1,1],[1,3,3,2],[2,2,0,2],[0,2,1,2]],[[1,1,1,2],[1,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,1,1],[1,4,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,1,1],[1,3,4,2],[2,2,0,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,3],[2,2,0,2],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,2,0,3],[0,2,2,0]],[[1,1,1,2],[1,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,1,1],[1,4,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,4,2],[2,2,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,3],[2,2,0,2],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[2,2,0,3],[1,0,2,1]],[[1,1,1,1],[1,3,3,2],[2,2,0,2],[1,0,3,1]],[[1,1,1,1],[1,3,3,2],[2,2,0,2],[1,0,2,2]],[[1,1,1,2],[1,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[2,2,0,2],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[2,2,0,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[2,2,0,2],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,2,0,3],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,2,0,2],[1,1,1,2]],[[1,1,1,2],[1,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,1,1,1],[1,4,3,2],[2,2,0,2],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[2,2,0,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,3],[2,2,0,2],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,2,0,3],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[0,3,2,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,1,1,2],[1,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,1,1],[1,4,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,1,1],[1,3,4,2],[2,2,1,0],[0,2,2,1]],[[1,1,1,1],[1,3,3,3],[2,2,1,0],[0,2,2,1]],[[1,1,1,2],[1,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,1,1,1],[1,4,3,2],[2,2,1,0],[1,1,2,1]],[[1,1,1,1],[1,3,4,2],[2,2,1,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,3],[2,2,1,0],[1,1,2,1]],[[1,1,1,1],[1,3,3,2],[3,2,1,0],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,2,1,0],[2,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,2,1,0],[1,3,2,0]],[[1,1,1,2],[1,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,1,1],[1,4,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,1,1],[1,3,4,2],[2,2,1,1],[0,2,2,0]],[[1,1,1,1],[1,3,3,3],[2,2,1,1],[0,2,2,0]],[[1,1,1,2],[1,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,1,1],[1,4,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[2,2,1,1],[1,1,2,0]],[[1,1,1,1],[1,3,3,3],[2,2,1,1],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[0,3,2,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[0,3,2,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[0,3,2,2],[0,1,2,0]],[[1,2,1,0],[1,4,3,2],[0,3,2,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,2],[0,3,2,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[0,3,2,2],[0,1,1,2]],[[1,2,1,0],[1,3,3,2],[0,3,2,3],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[0,3,2,2],[0,1,1,1]],[[1,1,1,2],[1,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,1,1],[1,4,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[2,2,1,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[2,2,1,2],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,2,1,3],[0,1,1,1]],[[1,1,1,1],[1,3,3,2],[2,2,1,2],[0,1,1,2]],[[1,1,1,2],[1,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[2,2,1,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[2,2,1,2],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,2,1,3],[0,1,2,0]],[[1,1,1,2],[1,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,1,1],[1,4,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,1,1],[1,3,4,2],[2,2,1,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,3],[2,2,1,2],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[2,2,1,3],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[2,2,1,2],[0,2,0,2]],[[1,1,1,2],[1,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,1,1],[1,4,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[2,2,1,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,3],[2,2,1,2],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[2,2,1,3],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[0,3,2,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,2],[0,3,2,2],[0,1,1,1]],[[1,3,1,0],[1,3,3,2],[0,3,2,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[0,3,2,2],[0,0,2,2]],[[1,2,1,0],[1,3,3,2],[0,3,2,3],[0,0,2,1]],[[1,2,1,0],[1,3,3,3],[0,3,2,2],[0,0,2,1]],[[1,2,1,0],[1,3,4,2],[0,3,2,2],[0,0,2,1]],[[1,1,1,2],[1,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,1,1],[1,4,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,1,1],[1,3,4,2],[2,2,1,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,3],[2,2,1,2],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[2,2,1,3],[1,0,1,1]],[[1,1,1,1],[1,3,3,2],[2,2,1,2],[1,0,1,2]],[[1,1,1,2],[1,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,1,1],[1,4,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[2,2,1,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,3],[2,2,1,2],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[2,2,1,3],[1,0,2,0]],[[1,1,1,2],[1,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,1,1],[1,4,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,1,1],[1,3,4,2],[2,2,1,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,3],[2,2,1,2],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[2,2,1,3],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[2,2,1,2],[1,1,0,2]],[[1,1,1,2],[1,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,1,1],[1,4,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,1,1],[1,3,4,2],[2,2,1,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,3],[2,2,1,2],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[2,2,1,3],[1,1,1,0]],[[1,2,1,0],[1,4,3,2],[0,3,2,2],[0,0,2,1]],[[1,3,1,0],[1,3,3,2],[0,3,2,2],[0,0,2,1]],[[2,2,1,0],[1,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,1,1,2],[1,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,1,1,1],[1,4,3,2],[2,2,1,2],[1,2,0,0]],[[1,1,1,1],[1,3,4,2],[2,2,1,2],[1,2,0,0]],[[1,1,1,1],[1,3,3,3],[2,2,1,2],[1,2,0,0]],[[1,2,1,0],[1,3,3,2],[0,3,2,1],[1,3,1,0]],[[1,2,1,0],[1,3,3,2],[0,3,2,1],[2,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,4,2,1],[1,2,1,0]],[[1,2,1,0],[1,3,3,3],[0,3,2,1],[1,2,1,0]],[[1,2,1,0],[1,3,4,2],[0,3,2,1],[1,2,1,0]],[[1,2,1,0],[1,4,3,2],[0,3,2,1],[1,2,1,0]],[[1,3,1,0],[1,3,3,2],[0,3,2,1],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,3,2,1],[1,3,0,1]],[[1,2,1,0],[1,3,3,2],[0,3,2,1],[2,2,0,1]],[[1,2,1,0],[1,3,3,2],[0,4,2,1],[1,2,0,1]],[[1,2,1,0],[1,3,3,3],[0,3,2,1],[1,2,0,1]],[[1,2,1,0],[1,3,4,2],[0,3,2,1],[1,2,0,1]],[[1,2,1,0],[1,4,3,2],[0,3,2,1],[1,2,0,1]],[[1,3,1,0],[1,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,1,2],[1,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,1,1],[1,4,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,1,1],[1,3,4,2],[2,2,2,0],[0,1,2,1]],[[1,1,1,1],[1,3,3,3],[2,2,2,0],[0,1,2,1]],[[1,1,1,2],[1,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,1,1,1],[1,4,3,2],[2,2,2,0],[0,2,1,1]],[[1,1,1,1],[1,3,4,2],[2,2,2,0],[0,2,1,1]],[[1,1,1,1],[1,3,3,3],[2,2,2,0],[0,2,1,1]],[[1,1,1,2],[1,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,1,1,1],[1,4,3,2],[2,2,2,0],[1,0,2,1]],[[1,1,1,1],[1,3,4,2],[2,2,2,0],[1,0,2,1]],[[1,1,1,1],[1,3,3,3],[2,2,2,0],[1,0,2,1]],[[1,1,1,2],[1,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,1,1,1],[1,4,3,2],[2,2,2,0],[1,1,1,1]],[[1,1,1,1],[1,3,4,2],[2,2,2,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,3],[2,2,2,0],[1,1,1,1]],[[1,1,1,1],[1,3,3,2],[3,2,2,0],[1,2,1,0]],[[1,1,1,1],[1,3,3,2],[2,2,2,0],[2,2,1,0]],[[1,1,1,1],[1,3,3,2],[2,2,2,0],[1,3,1,0]],[[2,2,1,0],[1,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,1,0],[1,3,3,2],[0,4,2,1],[1,1,2,0]],[[1,2,1,0],[1,3,3,3],[0,3,2,1],[1,1,2,0]],[[1,1,1,2],[1,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,1,1,1],[1,4,3,2],[2,2,2,1],[0,1,1,1]],[[1,1,1,1],[1,3,4,2],[2,2,2,1],[0,1,1,1]],[[1,1,1,1],[1,3,3,3],[2,2,2,1],[0,1,1,1]],[[1,1,1,2],[1,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[2,2,2,1],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[2,2,2,1],[0,1,2,0]],[[1,1,1,1],[1,3,3,3],[2,2,2,1],[0,1,2,0]],[[1,1,1,2],[1,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,1,1,1],[1,4,3,2],[2,2,2,1],[0,2,0,1]],[[1,1,1,1],[1,3,4,2],[2,2,2,1],[0,2,0,1]],[[1,1,1,1],[1,3,3,3],[2,2,2,1],[0,2,0,1]],[[1,1,1,2],[1,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,1,1],[1,4,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[2,2,2,1],[0,2,1,0]],[[1,1,1,1],[1,3,3,3],[2,2,2,1],[0,2,1,0]],[[1,2,1,0],[1,3,4,2],[0,3,2,1],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[0,3,2,1],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[0,3,2,1],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,1,2],[1,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,1,1],[1,4,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,1,1],[1,3,4,2],[2,2,2,1],[1,0,1,1]],[[1,1,1,1],[1,3,3,3],[2,2,2,1],[1,0,1,1]],[[1,1,1,2],[1,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,1,1,1],[1,4,3,2],[2,2,2,1],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[2,2,2,1],[1,0,2,0]],[[1,1,1,1],[1,3,3,3],[2,2,2,1],[1,0,2,0]],[[1,1,1,2],[1,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,1,1],[1,4,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,1,1],[1,3,4,2],[2,2,2,1],[1,1,0,1]],[[1,1,1,1],[1,3,3,3],[2,2,2,1],[1,1,0,1]],[[1,1,1,2],[1,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,1,1,1],[1,4,3,2],[2,2,2,1],[1,1,1,0]],[[1,1,1,1],[1,3,4,2],[2,2,2,1],[1,1,1,0]],[[1,1,1,1],[1,3,3,3],[2,2,2,1],[1,1,1,0]],[[1,2,1,0],[1,3,3,2],[0,4,2,1],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[0,3,2,1],[1,1,1,1]],[[1,2,1,0],[1,3,4,2],[0,3,2,1],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,1,2],[1,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,1,1],[1,4,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,1,1],[1,3,4,2],[2,2,2,1],[1,2,0,0]],[[1,1,1,1],[1,3,3,3],[2,2,2,1],[1,2,0,0]],[[1,3,1,0],[1,3,3,2],[0,3,2,1],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[0,3,2,0],[1,3,1,1]],[[1,2,1,0],[1,3,3,2],[0,3,2,0],[2,2,1,1]],[[1,2,1,0],[1,3,3,2],[0,4,2,0],[1,2,1,1]],[[1,2,1,0],[1,3,3,3],[0,3,2,0],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[0,3,2,0],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[0,3,2,0],[1,2,1,1]],[[1,3,1,0],[1,3,3,2],[0,3,2,0],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[0,4,2,0],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[0,3,2,0],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[0,3,2,0],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[0,3,2,0],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[0,3,2,0],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,2,1,0],[1,3,3,2],[0,3,1,2],[1,3,1,0]],[[1,2,1,0],[1,3,3,2],[0,3,1,2],[2,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,3,1,3],[1,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,4,1,2],[1,2,1,0]],[[1,2,1,0],[1,3,3,3],[0,3,1,2],[1,2,1,0]],[[1,2,1,0],[1,3,4,2],[0,3,1,2],[1,2,1,0]],[[1,2,1,0],[1,4,3,2],[0,3,1,2],[1,2,1,0]],[[1,3,1,0],[1,3,3,2],[0,3,1,2],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,3,1,2],[1,2,0,2]],[[1,2,1,0],[1,3,3,2],[0,3,1,2],[1,3,0,1]],[[1,2,1,0],[1,3,3,2],[0,3,1,2],[2,2,0,1]],[[1,2,1,0],[1,3,3,2],[0,3,1,3],[1,2,0,1]],[[1,2,1,0],[1,3,3,2],[0,4,1,2],[1,2,0,1]],[[1,2,1,0],[1,3,3,3],[0,3,1,2],[1,2,0,1]],[[1,2,1,0],[1,3,4,2],[0,3,1,2],[1,2,0,1]],[[1,2,1,0],[1,4,3,2],[0,3,1,2],[1,2,0,1]],[[1,3,1,0],[1,3,3,2],[0,3,1,2],[1,2,0,1]],[[2,2,1,0],[1,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,2,1,0],[1,3,3,2],[0,3,1,3],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[0,4,1,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,3],[0,3,1,2],[1,1,2,0]],[[1,2,1,0],[1,3,4,2],[0,3,1,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[0,3,1,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[0,3,1,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[0,3,1,2],[1,1,1,2]],[[1,2,1,0],[1,3,3,2],[0,3,1,3],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[0,4,1,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[0,3,1,2],[1,1,1,1]],[[1,2,1,0],[1,3,4,2],[0,3,1,2],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[0,3,1,2],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[0,3,1,2],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[0,3,1,2],[0,1,2,2]],[[1,2,1,0],[1,3,3,2],[0,3,1,2],[0,1,3,1]],[[1,2,1,0],[1,3,3,2],[0,3,1,3],[0,1,2,1]],[[1,2,1,0],[1,3,3,3],[0,3,1,2],[0,1,2,1]],[[1,2,1,0],[1,3,4,2],[0,3,1,2],[0,1,2,1]],[[1,2,1,0],[1,4,3,2],[0,3,1,2],[0,1,2,1]],[[1,3,1,0],[1,3,3,2],[0,3,1,2],[0,1,2,1]],[[2,2,1,0],[1,3,3,2],[0,3,1,2],[0,1,2,1]],[[1,2,1,0],[1,3,3,2],[0,3,1,1],[1,2,3,0]],[[1,2,1,0],[1,3,3,2],[0,3,1,1],[1,3,2,0]],[[1,2,1,0],[1,3,3,2],[0,3,1,1],[2,2,2,0]],[[1,2,1,0],[1,3,3,2],[0,4,1,1],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[0,3,1,1],[1,2,2,0]],[[1,2,1,0],[1,3,4,2],[0,3,1,1],[1,2,2,0]],[[1,2,1,0],[1,4,3,2],[0,3,1,1],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[0,3,1,1],[1,2,2,0]],[[2,2,1,0],[1,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,1,0],[1,3,3,2],[0,3,1,0],[1,2,2,2]],[[1,2,1,0],[1,3,3,2],[0,3,1,0],[1,2,3,1]],[[1,2,1,0],[1,3,3,2],[0,3,1,0],[1,3,2,1]],[[1,2,1,0],[1,3,3,2],[0,3,1,0],[2,2,2,1]],[[1,2,1,0],[1,3,3,2],[0,4,1,0],[1,2,2,1]],[[1,2,1,0],[1,3,3,3],[0,3,1,0],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[0,3,1,0],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[0,3,1,0],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[0,3,1,0],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,1,0],[1,3,3,2],[0,3,0,2],[1,2,3,0]],[[1,2,1,0],[1,3,3,2],[0,3,0,2],[1,3,2,0]],[[1,2,1,0],[1,3,3,2],[0,3,0,2],[2,2,2,0]],[[1,2,1,0],[1,3,3,2],[0,3,0,3],[1,2,2,0]],[[1,2,1,0],[1,3,3,2],[0,4,0,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[0,3,0,2],[1,2,2,0]],[[1,2,1,0],[1,3,4,2],[0,3,0,2],[1,2,2,0]],[[1,2,1,0],[1,4,3,2],[0,3,0,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[0,3,0,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,2],[0,3,0,2],[1,2,1,2]],[[1,2,1,0],[1,3,3,2],[0,3,0,2],[1,3,1,1]],[[1,2,1,0],[1,3,3,2],[0,3,0,2],[2,2,1,1]],[[1,2,1,0],[1,3,3,2],[0,3,0,3],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[0,4,0,2],[1,2,1,1]],[[1,2,1,0],[1,3,3,3],[0,3,0,2],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[0,3,0,2],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,1,2],[1,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,1,1],[1,4,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,1,1],[1,3,4,2],[2,2,3,1],[0,2,0,0]],[[1,1,1,1],[1,3,3,3],[2,2,3,1],[0,2,0,0]],[[1,3,1,0],[1,3,3,2],[0,3,0,2],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[0,3,0,2],[1,1,2,2]],[[1,2,1,0],[1,3,3,2],[0,3,0,2],[1,1,3,1]],[[1,2,1,0],[1,3,3,2],[0,3,0,3],[1,1,2,1]],[[1,2,1,0],[1,3,3,2],[0,4,0,2],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[0,3,0,2],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[0,3,0,2],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[0,3,0,2],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[0,3,0,2],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,1,0],[1,3,3,2],[0,3,0,1],[1,2,2,2]],[[1,2,1,0],[1,3,3,2],[0,3,0,1],[1,2,3,1]],[[1,2,1,0],[1,3,3,2],[0,3,0,1],[1,3,2,1]],[[1,2,1,0],[1,3,3,2],[0,3,0,1],[2,2,2,1]],[[1,2,1,0],[1,3,3,2],[0,4,0,1],[1,2,2,1]],[[1,2,1,0],[1,3,3,3],[0,3,0,1],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[0,3,0,1],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[0,3,0,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[0,3,0,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,1,2],[1,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,1,1,1],[1,4,3,2],[2,2,3,1],[1,1,0,0]],[[1,1,1,1],[1,3,4,2],[2,2,3,1],[1,1,0,0]],[[1,1,1,1],[1,3,3,3],[2,2,3,1],[1,1,0,0]],[[1,2,1,0],[1,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,1,0],[1,3,3,3],[0,2,3,2],[1,1,0,1]],[[1,2,1,0],[1,3,4,2],[0,2,3,2],[1,1,0,1]],[[1,2,1,0],[1,4,3,2],[0,2,3,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,2],[0,2,3,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,2],[0,2,3,2],[1,1,0,1]],[[1,2,1,0],[1,3,3,2],[0,2,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,3],[0,2,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,2],[0,2,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,2],[0,2,3,2],[0,1,1,2]],[[1,2,1,0],[1,3,3,2],[0,2,3,3],[0,1,1,1]],[[1,2,1,0],[1,3,3,3],[0,2,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,4,2],[0,2,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,2],[0,2,3,2],[0,0,2,2]],[[1,2,1,0],[1,3,3,2],[0,2,3,3],[0,0,2,1]],[[1,2,1,0],[1,3,3,3],[0,2,3,2],[0,0,2,1]],[[1,2,1,0],[1,3,4,2],[0,2,3,2],[0,0,2,1]],[[1,2,1,0],[1,3,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,1,0],[1,3,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,1,0],[1,3,4,2],[0,2,3,1],[1,2,1,0]],[[1,2,1,0],[1,4,3,2],[0,2,3,1],[1,2,1,0]],[[1,3,1,0],[1,3,3,2],[0,2,3,1],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,2,4,1],[1,2,0,1]],[[1,2,1,0],[1,3,3,3],[0,2,3,1],[1,2,0,1]],[[1,2,1,0],[1,3,4,2],[0,2,3,1],[1,2,0,1]],[[1,2,1,0],[1,4,3,2],[0,2,3,1],[1,2,0,1]],[[1,3,1,0],[1,3,3,2],[0,2,3,1],[1,2,0,1]],[[2,2,1,0],[1,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,1,0],[1,3,3,2],[0,2,3,1],[1,1,3,0]],[[1,2,1,0],[1,3,3,2],[0,2,4,1],[1,1,2,0]],[[1,2,1,0],[1,3,3,3],[0,2,3,1],[1,1,2,0]],[[1,2,1,0],[1,3,4,2],[0,2,3,1],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[0,2,3,1],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[0,2,3,1],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[0,2,4,1],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[0,2,3,1],[1,1,1,1]],[[1,2,1,0],[1,3,4,2],[0,2,3,1],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[0,2,3,1],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[0,2,3,1],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[0,2,4,1],[1,0,2,1]],[[1,2,1,0],[1,3,3,3],[0,2,3,1],[1,0,2,1]],[[1,2,1,0],[1,3,4,2],[0,2,3,1],[1,0,2,1]],[[1,2,1,0],[1,4,3,2],[0,2,3,1],[1,0,2,1]],[[1,3,1,0],[1,3,3,2],[0,2,3,1],[1,0,2,1]],[[2,2,1,0],[1,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,1,0],[1,3,3,2],[0,2,4,0],[1,2,1,1]],[[1,2,1,0],[1,3,3,3],[0,2,3,0],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[0,2,3,0],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[0,2,3,0],[1,2,1,1]],[[1,3,1,0],[1,3,3,2],[0,2,3,0],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[0,2,3,0],[1,1,2,2]],[[1,2,1,0],[1,3,3,2],[0,2,3,0],[1,1,3,1]],[[1,2,1,0],[1,3,3,2],[0,2,4,0],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[0,2,3,0],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[0,2,3,0],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[0,2,3,0],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[0,2,3,0],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,1,0],[1,3,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,1,0],[1,3,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,1,0],[1,3,4,2],[0,2,2,2],[1,2,1,0]],[[1,2,1,0],[1,4,3,2],[0,2,2,2],[1,2,1,0]],[[1,3,1,0],[1,3,3,2],[0,2,2,2],[1,2,1,0]],[[2,2,1,0],[1,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,1,0],[1,3,3,2],[0,2,2,2],[1,2,0,2]],[[1,2,1,0],[1,3,3,2],[0,2,2,3],[1,2,0,1]],[[1,2,1,0],[1,3,3,3],[0,2,2,2],[1,2,0,1]],[[1,2,1,0],[1,3,4,2],[0,2,2,2],[1,2,0,1]],[[1,2,1,0],[1,4,3,2],[0,2,2,2],[1,2,0,1]],[[1,3,1,0],[1,3,3,2],[0,2,2,2],[1,2,0,1]],[[2,2,1,0],[1,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,1,0],[1,3,3,2],[0,2,2,3],[1,1,2,0]],[[1,2,1,0],[1,3,3,3],[0,2,2,2],[1,1,2,0]],[[1,2,1,0],[1,3,4,2],[0,2,2,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,2],[0,2,2,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,2],[0,2,2,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[0,2,2,2],[1,1,1,2]],[[1,2,1,0],[1,3,3,2],[0,2,2,3],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[0,2,2,2],[1,1,1,1]],[[1,2,1,0],[1,3,4,2],[0,2,2,2],[1,1,1,1]],[[1,2,1,0],[1,4,3,2],[0,2,2,2],[1,1,1,1]],[[1,3,1,0],[1,3,3,2],[0,2,2,2],[1,1,1,1]],[[2,2,1,0],[1,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[0,2,2,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,2],[0,2,2,3],[1,0,2,1]],[[1,2,1,0],[1,3,3,3],[0,2,2,2],[1,0,2,1]],[[1,2,1,0],[1,3,4,2],[0,2,2,2],[1,0,2,1]],[[1,2,1,0],[1,4,3,2],[0,2,2,2],[1,0,2,1]],[[1,3,1,0],[1,3,3,2],[0,2,2,2],[1,0,2,1]],[[2,2,1,0],[1,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,1,0],[1,3,3,2],[0,2,1,2],[1,1,2,2]],[[1,2,1,0],[1,3,3,2],[0,2,1,2],[1,1,3,1]],[[1,2,1,0],[1,3,3,2],[0,2,1,3],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[0,2,1,2],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[0,2,1,2],[1,1,2,1]],[[1,2,1,0],[1,4,3,2],[0,2,1,2],[1,1,2,1]],[[1,3,1,0],[1,3,3,2],[0,2,1,2],[1,1,2,1]],[[2,2,1,0],[1,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,1,0],[1,3,3,2],[0,2,0,2],[1,2,2,2]],[[1,2,1,0],[1,3,3,2],[0,2,0,2],[1,2,3,1]],[[1,2,1,0],[1,3,3,2],[0,2,0,2],[1,3,2,1]],[[1,2,1,0],[1,3,3,2],[0,2,0,2],[2,2,2,1]],[[1,2,1,0],[1,3,3,2],[0,2,0,3],[1,2,2,1]],[[1,2,1,0],[1,3,3,3],[0,2,0,2],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[0,2,0,2],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[0,2,0,2],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[0,2,0,2],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,1,1],[1,3,3,2],[3,3,0,0],[1,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,3,0,0],[2,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,3,0,0],[1,3,2,0]],[[1,2,1,0],[1,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,1,0],[1,3,3,3],[0,1,3,2],[1,1,2,0]],[[1,2,1,0],[1,3,4,2],[0,1,3,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,2],[0,1,3,2],[1,1,1,2]],[[1,2,1,0],[1,3,3,2],[0,1,3,3],[1,1,1,1]],[[1,2,1,0],[1,3,3,3],[0,1,3,2],[1,1,1,1]],[[1,2,1,0],[1,3,4,2],[0,1,3,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,2],[0,1,3,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,2],[0,1,3,3],[1,0,2,1]],[[1,2,1,0],[1,3,3,3],[0,1,3,2],[1,0,2,1]],[[1,2,1,0],[1,3,4,2],[0,1,3,2],[1,0,2,1]],[[1,2,1,0],[1,3,3,2],[0,1,3,1],[1,2,3,0]],[[1,2,1,0],[1,3,3,2],[0,1,3,1],[1,3,2,0]],[[1,2,1,0],[1,3,3,2],[0,1,3,1],[2,2,2,0]],[[1,2,1,0],[1,3,3,2],[0,1,4,1],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[0,1,3,1],[1,2,2,0]],[[1,2,1,0],[1,3,4,2],[0,1,3,1],[1,2,2,0]],[[1,2,1,0],[1,4,3,2],[0,1,3,1],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[0,1,3,1],[1,2,2,0]],[[2,2,1,0],[1,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,1,0],[1,3,3,2],[0,1,4,1],[1,2,1,1]],[[1,2,1,0],[1,3,3,3],[0,1,3,1],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[0,1,3,1],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[0,1,3,1],[1,2,1,1]],[[1,3,1,0],[1,3,3,2],[0,1,3,1],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[0,1,3,0],[1,2,2,2]],[[1,2,1,0],[1,3,3,2],[0,1,3,0],[1,2,3,1]],[[1,2,1,0],[1,3,3,2],[0,1,3,0],[1,3,2,1]],[[1,2,1,0],[1,3,3,2],[0,1,3,0],[2,2,2,1]],[[1,2,1,0],[1,3,3,2],[0,1,4,0],[1,2,2,1]],[[1,2,1,0],[1,3,3,3],[0,1,3,0],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[0,1,3,0],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[0,1,3,0],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[0,1,3,0],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,1,1],[1,4,3,2],[2,3,1,0],[0,2,2,0]],[[1,1,1,1],[1,3,4,2],[2,3,1,0],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[3,3,1,0],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,4,1,0],[0,2,2,0]],[[1,1,1,1],[1,3,3,2],[2,3,1,0],[0,3,2,0]],[[1,1,1,1],[1,4,3,2],[2,3,1,0],[1,1,2,0]],[[1,1,1,1],[1,3,4,2],[2,3,1,0],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[3,3,1,0],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,4,1,0],[1,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,1,0],[1,3,3,2],[0,1,2,3],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[0,1,2,2],[1,2,2,0]],[[1,2,1,0],[1,3,4,2],[0,1,2,2],[1,2,2,0]],[[1,2,1,0],[1,4,3,2],[0,1,2,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,2],[0,1,2,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,2],[0,1,2,2],[1,2,1,2]],[[1,2,1,0],[1,3,3,2],[0,1,2,3],[1,2,1,1]],[[1,2,1,0],[1,3,3,3],[0,1,2,2],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[0,1,2,2],[1,2,1,1]],[[1,2,1,0],[1,4,3,2],[0,1,2,2],[1,2,1,1]],[[1,3,1,0],[1,3,3,2],[0,1,2,2],[1,2,1,1]],[[2,2,1,0],[1,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[0,1,1,2],[1,2,2,2]],[[1,2,1,0],[1,3,3,2],[0,1,1,2],[1,2,3,1]],[[1,2,1,0],[1,3,3,2],[0,1,1,2],[1,3,2,1]],[[1,2,1,0],[1,3,3,2],[0,1,1,2],[2,2,2,1]],[[1,2,1,0],[1,3,3,2],[0,1,1,3],[1,2,2,1]],[[1,2,1,0],[1,3,3,3],[0,1,1,2],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[0,1,1,2],[1,2,2,1]],[[1,2,1,0],[1,4,3,2],[0,1,1,2],[1,2,2,1]],[[1,3,1,0],[1,3,3,2],[0,1,1,2],[1,2,2,1]],[[2,2,1,0],[1,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,1,0],[1,3,3,2],[0,0,3,3],[1,2,2,0]],[[1,2,1,0],[1,3,3,3],[0,0,3,2],[1,2,2,0]],[[1,2,1,0],[1,3,4,2],[0,0,3,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,2],[0,0,3,2],[1,2,1,2]],[[1,2,1,0],[1,3,3,2],[0,0,3,3],[1,2,1,1]],[[1,2,1,0],[1,3,3,3],[0,0,3,2],[1,2,1,1]],[[1,2,1,0],[1,3,4,2],[0,0,3,2],[1,2,1,1]],[[1,2,1,0],[1,3,3,2],[0,0,3,2],[1,1,2,2]],[[1,2,1,0],[1,3,3,2],[0,0,3,3],[1,1,2,1]],[[1,2,1,0],[1,3,3,3],[0,0,3,2],[1,1,2,1]],[[1,2,1,0],[1,3,4,2],[0,0,3,2],[1,1,2,1]],[[1,2,1,0],[1,3,3,2],[0,0,3,2],[0,2,2,2]],[[1,2,1,0],[1,3,3,2],[0,0,3,3],[0,2,2,1]],[[1,2,1,0],[1,3,3,3],[0,0,3,2],[0,2,2,1]],[[1,2,1,0],[1,3,4,2],[0,0,3,2],[0,2,2,1]],[[1,2,1,0],[1,3,3,2],[0,0,2,2],[1,2,2,2]],[[1,2,1,0],[1,3,3,2],[0,0,2,2],[1,2,3,1]],[[1,2,1,0],[1,3,3,2],[0,0,2,3],[1,2,2,1]],[[1,2,1,0],[1,3,3,3],[0,0,2,2],[1,2,2,1]],[[1,2,1,0],[1,3,4,2],[0,0,2,2],[1,2,2,1]],[[1,2,1,0],[1,3,4,1],[2,3,3,2],[1,0,0,0]],[[1,2,1,0],[1,4,3,1],[2,3,3,2],[1,0,0,0]],[[1,3,1,0],[1,3,3,1],[2,3,3,2],[1,0,0,0]],[[2,2,1,0],[1,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,1,1,2],[1,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,1,1],[1,4,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,1,1],[1,3,4,2],[2,3,1,2],[1,0,0,1]],[[1,1,1,1],[1,3,3,3],[2,3,1,2],[1,0,0,1]],[[1,1,1,1],[1,3,3,2],[2,3,1,3],[1,0,0,1]],[[1,1,1,2],[1,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,1,1],[1,4,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,1,1],[1,3,4,2],[2,3,1,2],[1,0,1,0]],[[1,1,1,1],[1,3,3,3],[2,3,1,2],[1,0,1,0]],[[1,2,1,0],[1,3,4,1],[2,3,2,2],[1,0,1,0]],[[1,2,1,0],[1,4,3,1],[2,3,2,2],[1,0,1,0]],[[1,3,1,0],[1,3,3,1],[2,3,2,2],[1,0,1,0]],[[2,2,1,0],[1,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,2,1,0],[1,3,4,1],[2,3,2,2],[1,0,0,1]],[[1,2,1,0],[1,4,3,1],[2,3,2,2],[1,0,0,1]],[[1,3,1,0],[1,3,3,1],[2,3,2,2],[1,0,0,1]],[[2,2,1,0],[1,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,1,1,1],[1,4,3,2],[2,3,2,0],[0,1,2,0]],[[1,1,1,1],[1,3,4,2],[2,3,2,0],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[3,3,2,0],[0,1,2,0]],[[1,1,1,1],[1,3,3,2],[2,4,2,0],[0,1,2,0]],[[1,1,1,1],[1,4,3,2],[2,3,2,0],[0,2,0,1]],[[1,1,1,1],[1,3,4,2],[2,3,2,0],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[3,3,2,0],[0,2,0,1]],[[1,1,1,1],[1,3,3,2],[2,4,2,0],[0,2,0,1]],[[1,1,1,1],[1,4,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,1,1],[1,3,4,2],[2,3,2,0],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[3,3,2,0],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[2,4,2,0],[0,2,1,0]],[[1,1,1,1],[1,3,3,2],[2,3,2,0],[0,3,1,0]],[[1,1,1,1],[1,4,3,2],[2,3,2,0],[1,0,2,0]],[[1,1,1,1],[1,3,4,2],[2,3,2,0],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[3,3,2,0],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[2,4,2,0],[1,0,2,0]],[[1,1,1,1],[1,3,3,2],[2,3,2,0],[2,0,2,0]],[[1,1,1,1],[1,4,3,2],[2,3,2,0],[1,1,0,1]],[[1,1,1,1],[1,3,4,2],[2,3,2,0],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[3,3,2,0],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[2,4,2,0],[1,1,0,1]],[[1,1,1,1],[1,3,3,2],[2,3,2,0],[2,1,0,1]],[[1,1,1,1],[1,4,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,1,1],[1,3,4,2],[2,3,2,0],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[3,3,2,0],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[2,4,2,0],[1,1,1,0]],[[1,1,1,1],[1,3,3,2],[2,3,2,0],[2,1,1,0]],[[1,1,1,1],[1,4,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,1,1],[1,3,4,2],[2,3,2,0],[1,2,0,0]],[[1,1,1,1],[1,3,3,2],[3,3,2,0],[1,2,0,0]],[[1,1,1,1],[1,3,3,2],[2,4,2,0],[1,2,0,0]],[[1,1,1,1],[1,3,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,1,0],[1,4,3,1],[2,3,2,1],[1,0,1,1]],[[1,3,1,0],[1,3,3,1],[2,3,2,1],[1,0,1,1]],[[2,2,1,0],[1,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,2,1,0],[1,4,3,1],[2,3,1,2],[1,2,0,0]],[[1,3,1,0],[1,3,3,1],[2,3,1,2],[1,2,0,0]],[[2,2,1,0],[1,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,2,1,0],[1,4,3,1],[2,3,1,2],[1,1,1,0]],[[1,3,1,0],[1,3,3,1],[2,3,1,2],[1,1,1,0]],[[2,2,1,0],[1,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,2,1,0],[1,4,3,1],[2,3,1,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,1],[2,3,1,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,1,2],[1,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,1,1],[1,4,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,1,1],[1,3,4,2],[2,3,2,1],[1,0,0,1]],[[1,1,1,1],[1,3,3,3],[2,3,2,1],[1,0,0,1]],[[1,1,1,2],[1,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,1,1,1],[1,4,3,2],[2,3,2,1],[1,0,1,0]],[[1,1,1,1],[1,3,4,2],[2,3,2,1],[1,0,1,0]],[[1,1,1,1],[1,3,3,3],[2,3,2,1],[1,0,1,0]],[[1,2,1,0],[1,4,3,1],[2,3,1,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,1],[2,3,1,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,1],[2,3,1,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,1],[2,3,1,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,1],[2,3,1,1],[1,2,0,1]],[[1,3,1,0],[1,3,3,1],[2,3,1,1],[1,2,0,1]],[[2,2,1,0],[1,3,3,1],[2,3,1,1],[1,2,0,1]],[[1,2,1,0],[1,4,3,1],[2,3,1,1],[1,1,1,1]],[[1,3,1,0],[1,3,3,1],[2,3,1,1],[1,1,1,1]],[[2,2,1,0],[1,3,3,1],[2,3,1,1],[1,1,1,1]],[[1,2,1,0],[1,4,3,1],[2,3,1,1],[0,2,1,1]],[[1,3,1,0],[1,3,3,1],[2,3,1,1],[0,2,1,1]],[[2,2,1,0],[1,3,3,1],[2,3,1,1],[0,2,1,1]],[[1,2,1,0],[1,4,3,1],[2,3,0,2],[1,2,1,0]],[[1,3,1,0],[1,3,3,1],[2,3,0,2],[1,2,1,0]],[[2,2,1,0],[1,3,3,1],[2,3,0,2],[1,2,1,0]],[[1,2,1,0],[1,4,3,1],[2,3,0,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,1],[2,3,0,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,1],[2,3,0,2],[0,2,2,0]],[[1,3,1,0],[1,3,3,1],[2,3,0,2],[0,2,2,0]],[[2,2,1,0],[1,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,2,1,0],[1,4,3,1],[2,3,0,1],[1,2,1,1]],[[1,3,1,0],[1,3,3,1],[2,3,0,1],[1,2,1,1]],[[2,2,1,0],[1,3,3,1],[2,3,0,1],[1,2,1,1]],[[1,2,1,0],[1,4,3,1],[2,3,0,1],[1,1,2,1]],[[1,3,1,0],[1,3,3,1],[2,3,0,1],[1,1,2,1]],[[2,2,1,0],[1,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,2,1,0],[1,4,3,1],[2,3,0,1],[0,2,2,1]],[[1,3,1,0],[1,3,3,1],[2,3,0,1],[0,2,2,1]],[[2,2,1,0],[1,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,2,1,0],[1,3,4,1],[2,2,3,2],[1,1,0,0]],[[1,2,1,0],[1,4,3,1],[2,2,3,2],[1,1,0,0]],[[1,3,1,0],[1,3,3,1],[2,2,3,2],[1,1,0,0]],[[2,2,1,0],[1,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,2,1,0],[1,3,4,1],[2,2,3,2],[0,2,0,0]],[[1,2,1,0],[1,4,3,1],[2,2,3,2],[0,2,0,0]],[[1,3,1,0],[1,3,3,1],[2,2,3,2],[0,2,0,0]],[[2,2,1,0],[1,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,2,1,0],[1,3,4,1],[2,2,2,2],[1,2,0,0]],[[1,2,1,0],[1,4,3,1],[2,2,2,2],[1,2,0,0]],[[1,3,1,0],[1,3,3,1],[2,2,2,2],[1,2,0,0]],[[2,2,1,0],[1,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,2,1,0],[1,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,1,0],[1,4,3,1],[2,2,2,2],[1,1,1,0]],[[1,3,1,0],[1,3,3,1],[2,2,2,2],[1,1,1,0]],[[2,2,1,0],[1,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,1,0],[1,3,4,1],[2,2,2,2],[1,1,0,1]],[[1,2,1,0],[1,4,3,1],[2,2,2,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,1],[2,2,2,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,2,1,0],[1,3,4,1],[2,2,2,2],[1,0,2,0]],[[1,2,1,0],[1,4,3,1],[2,2,2,2],[1,0,2,0]],[[1,3,1,0],[1,3,3,1],[2,2,2,2],[1,0,2,0]],[[2,2,1,0],[1,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,1,0],[1,3,4,1],[2,2,2,2],[1,0,1,1]],[[1,2,1,0],[1,4,3,1],[2,2,2,2],[1,0,1,1]],[[1,3,1,0],[1,3,3,1],[2,2,2,2],[1,0,1,1]],[[2,2,1,0],[1,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,1,0],[1,3,4,1],[2,2,2,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,1],[2,2,2,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,1],[2,2,2,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,1,0],[1,3,4,1],[2,2,2,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,1],[2,2,2,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,1],[2,2,2,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,1,0],[1,3,4,1],[2,2,2,2],[0,1,2,0]],[[1,2,1,0],[1,4,3,1],[2,2,2,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,1],[2,2,2,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,1],[2,2,2,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,1],[2,2,2,2],[0,1,1,1]],[[1,3,1,0],[1,3,3,1],[2,2,2,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,1],[2,2,2,1],[1,2,0,1]],[[1,3,1,0],[1,3,3,1],[2,2,2,1],[1,2,0,1]],[[2,2,1,0],[1,3,3,1],[2,2,2,1],[1,2,0,1]],[[1,1,1,1],[1,4,3,2],[2,3,3,0],[0,2,0,0]],[[1,1,1,1],[1,3,4,2],[2,3,3,0],[0,2,0,0]],[[1,1,1,1],[1,3,3,2],[3,3,3,0],[0,2,0,0]],[[1,1,1,1],[1,3,3,2],[2,4,3,0],[0,2,0,0]],[[1,2,1,0],[1,3,4,1],[2,2,2,1],[1,1,1,1]],[[1,2,1,0],[1,4,3,1],[2,2,2,1],[1,1,1,1]],[[1,3,1,0],[1,3,3,1],[2,2,2,1],[1,1,1,1]],[[2,2,1,0],[1,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,2,1,0],[1,3,4,1],[2,2,2,1],[1,0,2,1]],[[1,2,1,0],[1,4,3,1],[2,2,2,1],[1,0,2,1]],[[1,3,1,0],[1,3,3,1],[2,2,2,1],[1,0,2,1]],[[2,2,1,0],[1,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,2,1,0],[1,3,4,1],[2,2,2,1],[0,2,1,1]],[[1,2,1,0],[1,4,3,1],[2,2,2,1],[0,2,1,1]],[[1,3,1,0],[1,3,3,1],[2,2,2,1],[0,2,1,1]],[[2,2,1,0],[1,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,2,1,0],[1,3,4,1],[2,2,2,1],[0,1,2,1]],[[1,2,1,0],[1,4,3,1],[2,2,2,1],[0,1,2,1]],[[1,3,1,0],[1,3,3,1],[2,2,2,1],[0,1,2,1]],[[2,2,1,0],[1,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,1,1,1],[1,4,3,2],[2,3,3,0],[1,1,0,0]],[[1,1,1,1],[1,3,4,2],[2,3,3,0],[1,1,0,0]],[[1,1,1,1],[1,3,3,2],[3,3,3,0],[1,1,0,0]],[[1,1,1,1],[1,3,3,2],[2,4,3,0],[1,1,0,0]],[[1,1,1,1],[1,3,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,1,0],[1,3,4,1],[2,2,1,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,1],[2,2,1,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,1],[2,2,1,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,2,1,0],[1,3,4,1],[2,2,1,2],[0,2,2,0]],[[1,2,1,0],[1,4,3,1],[2,2,1,2],[0,2,2,0]],[[1,3,1,0],[1,3,3,1],[2,2,1,2],[0,2,2,0]],[[2,2,1,0],[1,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,2,1,0],[1,3,4,1],[2,2,1,1],[1,1,2,1]],[[1,2,1,0],[1,4,3,1],[2,2,1,1],[1,1,2,1]],[[1,3,1,0],[1,3,3,1],[2,2,1,1],[1,1,2,1]],[[2,2,1,0],[1,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,2,1,0],[1,3,4,1],[2,2,1,1],[0,2,2,1]],[[1,2,1,0],[1,4,3,1],[2,2,1,1],[0,2,2,1]],[[1,3,1,0],[1,3,3,1],[2,2,1,1],[0,2,2,1]],[[2,2,1,0],[1,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,2,1,0],[1,4,3,1],[2,2,0,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,1],[2,2,0,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,1],[2,2,0,2],[1,2,2,0]],[[1,2,1,0],[1,3,4,1],[2,2,0,2],[1,1,2,1]],[[1,2,1,0],[1,4,3,1],[2,2,0,2],[1,1,2,1]],[[1,3,1,0],[1,3,3,1],[2,2,0,2],[1,1,2,1]],[[2,2,1,0],[1,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,1,0],[1,3,4,1],[2,2,0,2],[0,2,2,1]],[[1,2,1,0],[1,4,3,1],[2,2,0,2],[0,2,2,1]],[[1,3,1,0],[1,3,3,1],[2,2,0,2],[0,2,2,1]],[[2,2,1,0],[1,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,1,0],[1,4,3,1],[2,2,0,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,1],[2,2,0,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,1],[2,2,0,1],[1,2,2,1]],[[1,2,1,0],[1,3,3,1],[2,1,3,3],[1,1,1,0]],[[1,2,1,0],[1,3,3,1],[2,1,4,2],[1,1,1,0]],[[1,2,1,0],[1,3,4,1],[2,1,3,2],[1,1,1,0]],[[1,2,1,0],[1,4,3,1],[2,1,3,2],[1,1,1,0]],[[1,3,1,0],[1,3,3,1],[2,1,3,2],[1,1,1,0]],[[2,2,1,0],[1,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,2,1,0],[1,3,3,1],[2,1,3,2],[1,1,0,2]],[[1,2,1,0],[1,3,3,1],[2,1,3,3],[1,1,0,1]],[[1,2,1,0],[1,3,3,1],[2,1,4,2],[1,1,0,1]],[[1,2,1,0],[1,3,4,1],[2,1,3,2],[1,1,0,1]],[[1,2,1,0],[1,4,3,1],[2,1,3,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,1],[2,1,3,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,2,1,0],[1,3,3,1],[2,1,3,2],[1,0,3,0]],[[1,2,1,0],[1,3,3,1],[2,1,3,3],[1,0,2,0]],[[1,2,1,0],[1,3,3,1],[2,1,4,2],[1,0,2,0]],[[1,2,1,0],[1,3,4,1],[2,1,3,2],[1,0,2,0]],[[1,2,1,0],[1,4,3,1],[2,1,3,2],[1,0,2,0]],[[1,3,1,0],[1,3,3,1],[2,1,3,2],[1,0,2,0]],[[2,2,1,0],[1,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,1],[2,1,3,2],[1,0,1,2]],[[1,2,1,0],[1,3,3,1],[2,1,3,3],[1,0,1,1]],[[1,2,1,0],[1,3,3,1],[2,1,4,2],[1,0,1,1]],[[1,2,1,0],[1,3,4,1],[2,1,3,2],[1,0,1,1]],[[1,2,1,0],[1,4,3,1],[2,1,3,2],[1,0,1,1]],[[1,3,1,0],[1,3,3,1],[2,1,3,2],[1,0,1,1]],[[2,2,1,0],[1,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,2,1,0],[1,3,3,1],[2,1,3,3],[0,2,1,0]],[[1,2,1,0],[1,3,3,1],[2,1,4,2],[0,2,1,0]],[[1,1,1,2],[1,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,1,1],[1,4,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,1,1],[1,3,4,2],[2,3,3,1],[1,0,0,0]],[[1,1,1,1],[1,3,3,3],[2,3,3,1],[1,0,0,0]],[[1,2,1,0],[1,3,4,1],[2,1,3,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,1],[2,1,3,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,1],[2,1,3,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,2,1,0],[1,3,3,1],[2,1,3,2],[0,2,0,2]],[[1,2,1,0],[1,3,3,1],[2,1,3,3],[0,2,0,1]],[[1,2,1,0],[1,3,3,1],[2,1,4,2],[0,2,0,1]],[[1,2,1,0],[1,3,4,1],[2,1,3,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,1],[2,1,3,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,1],[2,1,3,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,2,1,0],[1,3,3,1],[2,1,3,2],[0,1,3,0]],[[1,2,1,0],[1,3,3,1],[2,1,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,1],[2,1,4,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,1],[2,1,3,2],[0,1,2,0]],[[1,2,1,0],[1,4,3,1],[2,1,3,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,1],[2,1,3,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,1],[2,1,3,2],[0,1,1,2]],[[1,2,1,0],[1,3,3,1],[2,1,3,3],[0,1,1,1]],[[1,2,1,0],[1,3,3,1],[2,1,4,2],[0,1,1,1]],[[1,2,1,0],[1,3,4,1],[2,1,3,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,1],[2,1,3,2],[0,1,1,1]],[[1,3,1,0],[1,3,3,1],[2,1,3,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,1],[2,1,3,2],[0,0,2,2]],[[1,2,1,0],[1,3,3,1],[2,1,3,3],[0,0,2,1]],[[1,2,1,0],[1,3,3,1],[2,1,4,2],[0,0,2,1]],[[1,2,1,0],[1,3,4,1],[2,1,3,2],[0,0,2,1]],[[1,2,1,0],[1,4,3,1],[2,1,3,2],[0,0,2,1]],[[1,3,1,0],[1,3,3,1],[2,1,3,2],[0,0,2,1]],[[2,2,1,0],[1,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,2,1,0],[1,3,3,1],[2,1,4,1],[1,1,1,1]],[[1,2,1,0],[1,3,4,1],[2,1,3,1],[1,1,1,1]],[[1,2,1,0],[1,4,3,1],[2,1,3,1],[1,1,1,1]],[[1,3,1,0],[1,3,3,1],[2,1,3,1],[1,1,1,1]],[[2,2,1,0],[1,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,2,1,0],[1,3,3,1],[2,1,3,1],[1,0,2,2]],[[1,2,1,0],[1,3,3,1],[2,1,3,1],[1,0,3,1]],[[1,2,1,0],[1,3,3,1],[2,1,4,1],[1,0,2,1]],[[1,2,1,0],[1,3,4,1],[2,1,3,1],[1,0,2,1]],[[1,2,1,0],[1,4,3,1],[2,1,3,1],[1,0,2,1]],[[1,3,1,0],[1,3,3,1],[2,1,3,1],[1,0,2,1]],[[2,2,1,0],[1,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,2,1,0],[1,3,3,1],[2,1,4,1],[0,2,1,1]],[[1,2,1,0],[1,3,4,1],[2,1,3,1],[0,2,1,1]],[[1,2,1,0],[1,4,3,1],[2,1,3,1],[0,2,1,1]],[[1,3,1,0],[1,3,3,1],[2,1,3,1],[0,2,1,1]],[[2,2,1,0],[1,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,1,0],[1,3,3,1],[2,1,3,1],[0,1,2,2]],[[1,2,1,0],[1,3,3,1],[2,1,3,1],[0,1,3,1]],[[1,2,1,0],[1,3,3,1],[2,1,4,1],[0,1,2,1]],[[1,2,1,0],[1,3,4,1],[2,1,3,1],[0,1,2,1]],[[1,2,1,0],[1,4,3,1],[2,1,3,1],[0,1,2,1]],[[1,3,1,0],[1,3,3,1],[2,1,3,1],[0,1,2,1]],[[2,2,1,0],[1,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,2,1,0],[1,3,4,1],[2,1,2,2],[1,2,1,0]],[[1,2,1,0],[1,4,3,1],[2,1,2,2],[1,2,1,0]],[[1,3,1,0],[1,3,3,1],[2,1,2,2],[1,2,1,0]],[[2,2,1,0],[1,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,1,0],[1,3,4,1],[2,1,2,2],[1,2,0,1]],[[1,2,1,0],[1,4,3,1],[2,1,2,2],[1,2,0,1]],[[1,3,1,0],[1,3,3,1],[2,1,2,2],[1,2,0,1]],[[2,2,1,0],[1,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,1,0],[1,3,3,1],[2,1,2,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,1],[2,1,2,2],[1,0,3,1]],[[1,2,1,0],[1,3,3,1],[2,1,2,3],[1,0,2,1]],[[1,2,1,0],[1,3,3,1],[2,1,2,2],[0,1,2,2]],[[1,2,1,0],[1,3,3,1],[2,1,2,2],[0,1,3,1]],[[1,2,1,0],[1,3,3,1],[2,1,2,3],[0,1,2,1]],[[1,2,1,0],[1,3,4,1],[2,1,2,1],[1,2,1,1]],[[1,2,1,0],[1,4,3,1],[2,1,2,1],[1,2,1,1]],[[1,3,1,0],[1,3,3,1],[2,1,2,1],[1,2,1,1]],[[2,2,1,0],[1,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,2,1,0],[1,3,4,1],[2,1,1,2],[1,2,2,0]],[[1,2,1,0],[1,4,3,1],[2,1,1,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,1],[2,1,1,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,1,0],[1,3,4,1],[2,1,1,1],[1,2,2,1]],[[1,2,1,0],[1,4,3,1],[2,1,1,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,1],[2,1,1,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,2,1,0],[1,3,4,1],[2,1,0,2],[1,2,2,1]],[[1,2,1,0],[1,4,3,1],[2,1,0,2],[1,2,2,1]],[[1,3,1,0],[1,3,3,1],[2,1,0,2],[1,2,2,1]],[[2,2,1,0],[1,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,1,0],[1,3,3,1],[2,0,3,3],[1,2,1,0]],[[1,2,1,0],[1,3,3,1],[2,0,4,2],[1,2,1,0]],[[1,2,1,0],[1,3,4,1],[2,0,3,2],[1,2,1,0]],[[1,2,1,0],[1,4,3,1],[2,0,3,2],[1,2,1,0]],[[1,3,1,0],[1,3,3,1],[2,0,3,2],[1,2,1,0]],[[2,2,1,0],[1,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,2,1,0],[1,3,3,1],[2,0,3,2],[1,2,0,2]],[[1,2,1,0],[1,3,3,1],[2,0,3,3],[1,2,0,1]],[[1,2,1,0],[1,3,3,1],[2,0,4,2],[1,2,0,1]],[[1,2,1,0],[1,3,4,1],[2,0,3,2],[1,2,0,1]],[[1,2,1,0],[1,4,3,1],[2,0,3,2],[1,2,0,1]],[[1,3,1,0],[1,3,3,1],[2,0,3,2],[1,2,0,1]],[[2,2,1,0],[1,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,2,1,0],[1,3,3,1],[2,0,3,2],[1,1,3,0]],[[1,2,1,0],[1,3,3,1],[2,0,3,3],[1,1,2,0]],[[1,2,1,0],[1,3,3,1],[2,0,4,2],[1,1,2,0]],[[1,2,1,0],[1,3,4,1],[2,0,3,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,1],[2,0,3,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,1],[2,0,3,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,1],[2,0,3,2],[1,1,1,2]],[[1,2,1,0],[1,3,3,1],[2,0,3,3],[1,1,1,1]],[[1,2,1,0],[1,3,3,1],[2,0,4,2],[1,1,1,1]],[[1,2,1,0],[1,3,4,1],[2,0,3,2],[1,1,1,1]],[[1,2,1,0],[1,4,3,1],[2,0,3,2],[1,1,1,1]],[[1,3,1,0],[1,3,3,1],[2,0,3,2],[1,1,1,1]],[[2,2,1,0],[1,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,1],[2,0,3,2],[0,2,3,0]],[[1,2,1,0],[1,3,3,1],[2,0,3,2],[0,3,2,0]],[[1,2,1,0],[1,3,3,1],[2,0,3,3],[0,2,2,0]],[[1,2,1,0],[1,3,3,1],[2,0,4,2],[0,2,2,0]],[[1,2,1,0],[1,3,4,1],[2,0,3,2],[0,2,2,0]],[[1,2,1,0],[1,4,3,1],[2,0,3,2],[0,2,2,0]],[[1,3,1,0],[1,3,3,1],[2,0,3,2],[0,2,2,0]],[[2,2,1,0],[1,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,2,1,0],[1,3,3,1],[2,0,3,2],[0,2,1,2]],[[1,2,1,0],[1,3,3,1],[2,0,3,3],[0,2,1,1]],[[1,2,1,0],[1,3,3,1],[2,0,4,2],[0,2,1,1]],[[1,2,1,0],[1,3,4,1],[2,0,3,2],[0,2,1,1]],[[1,2,1,0],[1,4,3,1],[2,0,3,2],[0,2,1,1]],[[1,3,1,0],[1,3,3,1],[2,0,3,2],[0,2,1,1]],[[2,2,1,0],[1,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,2,1,0],[1,3,3,1],[2,0,4,1],[1,2,1,1]],[[1,2,1,0],[1,3,4,1],[2,0,3,1],[1,2,1,1]],[[1,2,1,0],[1,4,3,1],[2,0,3,1],[1,2,1,1]],[[1,3,1,0],[1,3,3,1],[2,0,3,1],[1,2,1,1]],[[2,2,1,0],[1,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,1,0],[1,3,3,1],[2,0,3,1],[1,1,2,2]],[[1,2,1,0],[1,3,3,1],[2,0,3,1],[1,1,3,1]],[[1,2,1,0],[1,3,3,1],[2,0,4,1],[1,1,2,1]],[[1,2,1,0],[1,3,4,1],[2,0,3,1],[1,1,2,1]],[[1,2,1,0],[1,4,3,1],[2,0,3,1],[1,1,2,1]],[[1,3,1,0],[1,3,3,1],[2,0,3,1],[1,1,2,1]],[[2,2,1,0],[1,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,2,1,0],[1,3,3,1],[2,0,3,1],[0,2,2,2]],[[1,2,1,0],[1,3,3,1],[2,0,3,1],[0,2,3,1]],[[1,2,1,0],[1,3,3,1],[2,0,3,1],[0,3,2,1]],[[1,2,1,0],[1,3,3,1],[2,0,4,1],[0,2,2,1]],[[1,2,1,0],[1,3,4,1],[2,0,3,1],[0,2,2,1]],[[1,2,1,0],[1,4,3,1],[2,0,3,1],[0,2,2,1]],[[1,3,1,0],[1,3,3,1],[2,0,3,1],[0,2,2,1]],[[2,2,1,0],[1,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,2,1,0],[1,3,4,1],[2,0,2,2],[1,2,2,0]],[[1,2,1,0],[1,4,3,1],[2,0,2,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,1],[2,0,2,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,1],[2,0,2,2],[1,1,2,2]],[[1,2,1,0],[1,3,3,1],[2,0,2,2],[1,1,3,1]],[[1,2,1,0],[1,3,3,1],[2,0,2,3],[1,1,2,1]],[[1,2,1,0],[1,3,3,1],[2,0,2,2],[0,2,2,2]],[[1,2,1,0],[1,3,3,1],[2,0,2,2],[0,2,3,1]],[[1,2,1,0],[1,3,3,1],[2,0,2,2],[0,3,2,1]],[[1,2,1,0],[1,3,3,1],[2,0,2,3],[0,2,2,1]],[[1,2,1,0],[1,3,4,1],[2,0,2,1],[1,2,2,1]],[[1,2,1,0],[1,4,3,1],[2,0,2,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,1],[2,0,2,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,2,1,0],[1,3,4,1],[2,0,1,2],[1,2,2,1]],[[1,2,1,0],[1,4,3,1],[2,0,1,2],[1,2,2,1]],[[1,3,1,0],[1,3,3,1],[2,0,1,2],[1,2,2,1]],[[2,2,1,0],[1,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,1,0],[1,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,1,0],[1,3,4,1],[1,3,3,2],[1,1,0,0]],[[1,2,1,0],[1,4,3,1],[1,3,3,2],[1,1,0,0]],[[1,3,1,0],[1,3,3,1],[1,3,3,2],[1,1,0,0]],[[2,2,1,0],[1,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,2,1,0],[1,3,3,1],[1,4,3,2],[0,2,0,0]],[[1,2,1,0],[1,3,4,1],[1,3,3,2],[0,2,0,0]],[[1,2,1,0],[1,4,3,1],[1,3,3,2],[0,2,0,0]],[[1,3,1,0],[1,3,3,1],[1,3,3,2],[0,2,0,0]],[[2,2,1,0],[1,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,2,1,0],[1,3,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,1,0],[1,3,3,1],[1,3,4,2],[0,0,2,0]],[[1,2,1,0],[1,3,4,1],[1,3,3,2],[0,0,2,0]],[[1,2,1,0],[1,4,3,1],[1,3,3,2],[0,0,2,0]],[[1,3,1,0],[1,3,3,1],[1,3,3,2],[0,0,2,0]],[[2,2,1,0],[1,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,2,1,0],[1,3,3,1],[1,3,3,2],[0,0,1,2]],[[1,2,1,0],[1,3,3,1],[1,3,3,3],[0,0,1,1]],[[1,2,1,0],[1,3,3,1],[1,3,4,2],[0,0,1,1]],[[1,2,1,0],[1,3,4,1],[1,3,3,2],[0,0,1,1]],[[1,2,1,0],[1,4,3,1],[1,3,3,2],[0,0,1,1]],[[1,3,1,0],[1,3,3,1],[1,3,3,2],[0,0,1,1]],[[2,2,1,0],[1,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,1,1,1],[2,0,1,2],[1,2,3,3],[1,2,2,1]],[[1,1,1,1],[2,0,1,2],[1,2,3,2],[2,2,2,1]],[[1,1,1,1],[2,0,1,2],[1,2,3,2],[1,3,2,1]],[[1,1,1,1],[2,0,1,2],[1,2,3,2],[1,2,3,1]],[[1,1,1,1],[2,0,1,2],[1,2,3,2],[1,2,2,2]],[[1,1,1,1],[2,0,1,2],[1,3,3,3],[1,1,2,1]],[[1,1,1,1],[2,0,1,2],[1,3,3,2],[1,1,3,1]],[[1,1,1,1],[2,0,1,2],[1,3,3,2],[1,1,2,2]],[[1,1,1,1],[2,0,1,2],[3,1,3,2],[1,2,2,1]],[[1,1,1,1],[2,0,1,2],[2,1,3,3],[1,2,2,1]],[[1,1,1,1],[2,0,1,2],[2,1,3,2],[2,2,2,1]],[[1,1,1,1],[2,0,1,2],[2,1,3,2],[1,3,2,1]],[[1,1,1,1],[2,0,1,2],[2,1,3,2],[1,2,3,1]],[[1,1,1,1],[2,0,1,2],[2,1,3,2],[1,2,2,2]],[[1,1,1,1],[2,0,1,2],[2,2,3,3],[0,2,2,1]],[[1,1,1,1],[2,0,1,2],[2,2,3,2],[0,3,2,1]],[[1,1,1,1],[2,0,1,2],[2,2,3,2],[0,2,3,1]],[[1,1,1,1],[2,0,1,2],[2,2,3,2],[0,2,2,2]],[[1,1,1,1],[2,0,1,2],[2,3,3,3],[0,1,2,1]],[[1,1,1,1],[2,0,1,2],[2,3,3,2],[0,1,3,1]],[[1,1,1,1],[2,0,1,2],[2,3,3,2],[0,1,2,2]],[[1,1,1,1],[2,0,1,2],[2,3,3,3],[1,0,2,1]],[[1,1,1,1],[2,0,1,2],[2,3,3,2],[1,0,3,1]],[[1,1,1,1],[2,0,1,2],[2,3,3,2],[1,0,2,2]],[[1,1,1,1],[2,0,2,0],[3,3,3,1],[1,2,2,1]],[[1,1,1,1],[2,0,2,0],[2,3,3,1],[2,2,2,1]],[[1,1,1,1],[2,0,2,0],[2,3,3,1],[1,3,2,1]],[[1,1,1,1],[2,0,2,0],[2,3,3,1],[1,2,3,1]],[[1,1,1,1],[2,0,2,0],[2,3,3,1],[1,2,2,2]],[[1,1,1,1],[2,0,2,0],[3,3,3,2],[1,2,2,0]],[[1,1,1,1],[2,0,2,0],[2,3,3,2],[2,2,2,0]],[[1,1,1,1],[2,0,2,0],[2,3,3,2],[1,3,2,0]],[[1,1,1,1],[2,0,2,0],[2,3,3,2],[1,2,3,0]],[[1,1,1,2],[2,0,2,2],[1,1,3,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,3],[1,1,3,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,1,3,3],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,1,3,2],[1,2,3,1]],[[1,1,1,1],[2,0,2,2],[1,1,3,2],[1,2,2,2]],[[1,1,1,2],[2,0,2,2],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,3],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[2,0,2,2],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[2,0,2,2],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[2,0,2,2],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[2,0,2,2],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[2,0,2,2],[1,2,3,1],[1,2,2,2]],[[1,1,1,2],[2,0,2,2],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[2,0,2,3],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[2,0,2,2],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[2,0,2,2],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[2,0,2,2],[1,2,3,2],[1,2,1,2]],[[1,1,1,2],[2,0,2,2],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,0,2,3],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,0,2,2],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[2,0,2,2],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[2,0,2,2],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[2,0,2,2],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[2,0,2,2],[1,2,3,2],[1,2,3,0]],[[1,1,1,2],[2,0,2,2],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,3],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,0,2,2],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[2,0,2,2],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,0,2,2],[1,3,2,1],[1,2,2,2]],[[1,1,1,2],[2,0,2,2],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[2,0,2,3],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[2,0,2,2],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[2,0,2,2],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,2,2],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,0,2,2],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,0,2,2],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[2,0,2,2],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[2,0,2,2],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,2,2],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,1],[1,3,1,1]],[[1,1,1,2],[2,0,2,2],[1,3,3,2],[1,0,2,1]],[[1,1,1,1],[2,0,2,3],[1,3,3,2],[1,0,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,4,2],[1,0,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,3],[1,0,2,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,2],[1,0,2,2]],[[1,1,1,2],[2,0,2,2],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,0,2,3],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,0,2,2],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[2,0,2,2],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,2],[1,1,1,2]],[[1,1,1,2],[2,0,2,2],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,0,2,3],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,0,2,2],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[2,0,2,2],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[2,0,2,2],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[2,0,2,2],[1,3,3,2],[1,1,3,0]],[[1,1,1,2],[2,0,2,2],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,0,2,3],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,0,2,2],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[2,0,2,2],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,0,2,2],[1,3,3,2],[1,2,0,2]],[[1,1,1,2],[2,0,2,2],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,0,2,3],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,0,2,2],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[2,0,2,2],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[2,0,2,2],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[2,0,2,2],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,0,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,3,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,1,0],[1,3,4,1],[1,3,3,1],[0,0,2,1]],[[1,2,1,0],[1,4,3,1],[1,3,3,1],[0,0,2,1]],[[1,3,1,0],[1,3,3,1],[1,3,3,1],[0,0,2,1]],[[2,2,1,0],[1,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,1,2],[2,0,2,2],[2,0,3,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,3],[2,0,3,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,0,3,3],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,0,3,2],[1,2,3,1]],[[1,1,1,1],[2,0,2,2],[2,0,3,2],[1,2,2,2]],[[2,1,1,1],[2,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,2],[2,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[3,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,3],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[2,0,2,2],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[2,0,2,2],[2,1,2,2],[1,2,2,2]],[[2,1,1,1],[2,0,2,2],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[3,0,2,2],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[2,0,2,2],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[2,0,2,2],[2,1,3,1],[1,2,2,2]],[[1,1,1,2],[2,0,2,2],[2,1,3,2],[0,2,2,1]],[[1,1,1,1],[2,0,2,3],[2,1,3,2],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,1,3,3],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,1,3,2],[0,2,3,1]],[[1,1,1,1],[2,0,2,2],[2,1,3,2],[0,2,2,2]],[[1,1,1,2],[2,0,2,2],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[2,0,2,3],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[2,0,2,2],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[2,0,2,2],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[2,0,2,2],[2,1,3,2],[1,2,1,2]],[[2,1,1,1],[2,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,2],[2,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[3,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,0,2,3],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,0,2,2],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,0,2,2],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[2,0,2,2],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[2,0,2,2],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[2,0,2,2],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[2,0,2,2],[2,1,3,2],[1,2,3,0]],[[2,1,1,1],[2,0,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,2],[2,0,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[3,0,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,3],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[2,0,2,2],[2,2,1,2],[1,2,2,2]],[[2,1,1,1],[2,0,2,2],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[3,0,2,2],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[2,0,2,2],[2,2,2,1],[1,2,2,2]],[[1,1,1,2],[2,0,2,2],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[2,0,2,3],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[2,0,2,2],[2,2,2,2],[0,2,2,2]],[[2,1,1,1],[2,0,2,2],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[3,0,2,2],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,2,2],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,2,2],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[2,0,2,2],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[2,0,2,2],[2,2,2,2],[1,2,3,0]],[[1,1,1,1],[2,0,2,2],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[2,0,2,2],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[2,0,2,2],[2,2,3,1],[0,2,2,2]],[[2,1,1,1],[2,0,2,2],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[3,0,2,2],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,2,2],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,2,2],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[2,0,2,2],[2,2,3,1],[1,3,1,1]],[[1,1,1,2],[2,0,2,2],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[2,0,2,3],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[2,0,2,2],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[2,0,2,2],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[2,0,2,2],[2,2,3,2],[0,2,1,2]],[[1,1,1,2],[2,0,2,2],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[2,0,2,3],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[2,0,2,2],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[2,0,2,2],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[2,0,2,2],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[2,0,2,2],[2,2,3,2],[0,2,3,0]],[[2,1,1,1],[2,0,2,2],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[3,0,2,2],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,0,2,2],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,0,2,2],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[2,0,2,2],[2,2,3,2],[1,3,0,1]],[[2,1,1,1],[2,0,2,2],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[3,0,2,2],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,0,2,2],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,0,2,2],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[2,0,2,2],[2,2,3,2],[1,3,1,0]],[[2,1,1,1],[2,0,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,2],[2,0,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[3,0,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,0,2,3],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[2,0,2,2],[2,3,1,2],[0,2,2,2]],[[2,1,1,1],[2,0,2,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[3,0,2,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,0,2,2],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,0,2,2],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,1,2],[2,1,2,1]],[[2,1,1,1],[2,0,2,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[3,0,2,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[2,0,2,2],[2,3,2,1],[0,2,2,2]],[[2,1,1,1],[2,0,2,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[3,0,2,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,0,2,2],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,0,2,2],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,2,1],[2,1,2,1]],[[1,1,1,2],[2,0,2,2],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[2,0,2,3],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[2,0,2,2],[2,3,2,2],[0,1,2,2]],[[2,1,1,1],[2,0,2,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[3,0,2,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,0,2,2],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,0,2,2],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[2,0,2,2],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[2,0,2,2],[2,3,2,2],[0,2,3,0]],[[1,1,1,2],[2,0,2,2],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[2,0,2,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[2,0,2,2],[2,3,2,2],[1,0,2,2]],[[2,1,1,1],[2,0,2,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[3,0,2,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,0,2,2],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,0,2,2],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[2,0,2,2],[2,3,2,2],[2,1,2,0]],[[2,1,1,1],[2,0,2,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[3,0,2,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,0,2,2],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,0,2,2],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,1],[0,1,2,2]],[[2,1,1,1],[2,0,2,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[3,0,2,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,0,2,2],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,0,2,2],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[2,0,2,2],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,1],[0,3,1,1]],[[2,1,1,1],[2,0,2,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[3,0,2,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,0,2,2],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,0,2,2],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,1],[1,0,2,2]],[[2,1,1,1],[2,0,2,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[3,0,2,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,0,2,2],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,0,2,2],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,0,2,2],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[1,3,3,1],[1,4,2,2],[1,2,0,0]],[[1,2,1,0],[1,3,4,1],[1,3,2,2],[1,2,0,0]],[[1,2,1,0],[1,4,3,1],[1,3,2,2],[1,2,0,0]],[[1,3,1,0],[1,3,3,1],[1,3,2,2],[1,2,0,0]],[[2,2,1,0],[1,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,1,1,2],[2,0,2,2],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,0,2,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[0,0,2,2]],[[2,1,1,1],[2,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,2],[2,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[3,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,0,2,3],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,0,2,2],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,0,2,2],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[2,0,2,2],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[0,1,1,2]],[[2,1,1,1],[2,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,2],[2,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[3,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,0,2,3],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,0,2,2],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,0,2,2],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[2,0,2,2],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[2,0,2,2],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[0,1,3,0]],[[2,1,1,1],[2,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,2],[2,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[3,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,0,2,3],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,0,2,2],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,0,2,2],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[2,0,2,2],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[0,2,0,2]],[[2,1,1,1],[2,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,2],[2,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[3,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,0,2,3],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,0,2,2],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,0,2,2],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[2,0,2,2],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[2,0,2,2],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[1,3,3,1],[1,4,2,2],[1,1,1,0]],[[1,2,1,0],[1,3,4,1],[1,3,2,2],[1,1,1,0]],[[1,2,1,0],[1,4,3,1],[1,3,2,2],[1,1,1,0]],[[1,3,1,0],[1,3,3,1],[1,3,2,2],[1,1,1,0]],[[2,1,1,1],[2,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,2],[2,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[3,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,0,2,3],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,0,2,2],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,0,2,2],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[2,0,2,2],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[1,0,1,2]],[[2,1,1,1],[2,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,2],[2,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[3,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,0,2,3],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,0,2,2],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,0,2,2],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[2,0,2,2],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[2,0,2,2],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[1,0,3,0]],[[2,1,1,1],[2,0,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,2],[2,0,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[3,0,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,0,2,3],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,0,2,2],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,0,2,2],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[2,0,2,2],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[1,1,0,2]],[[2,1,1,1],[2,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,2],[2,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[3,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,0,2,3],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,0,2,2],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,0,2,2],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[2,0,2,2],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[2,0,2,2],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[2,1,1,0]],[[2,2,1,0],[1,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,1,0],[1,3,3,1],[1,4,2,2],[1,1,0,1]],[[1,2,1,0],[1,3,4,1],[1,3,2,2],[1,1,0,1]],[[1,2,1,0],[1,4,3,1],[1,3,2,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,1],[1,3,2,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,1],[1,3,2,2],[1,1,0,1]],[[2,1,1,1],[2,0,2,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[3,0,2,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,0,2,2],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,0,2,2],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[2,0,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[1,3,3,1],[1,4,2,2],[1,0,2,0]],[[1,2,1,0],[1,3,4,1],[1,3,2,2],[1,0,2,0]],[[1,2,1,0],[1,4,3,1],[1,3,2,2],[1,0,2,0]],[[1,3,1,0],[1,3,3,1],[1,3,2,2],[1,0,2,0]],[[2,2,1,0],[1,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,1],[1,4,2,2],[1,0,1,1]],[[1,2,1,0],[1,3,4,1],[1,3,2,2],[1,0,1,1]],[[1,2,1,0],[1,4,3,1],[1,3,2,2],[1,0,1,1]],[[1,3,1,0],[1,3,3,1],[1,3,2,2],[1,0,1,1]],[[2,2,1,0],[1,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,1,0],[1,3,3,1],[1,3,2,2],[0,3,1,0]],[[1,2,1,0],[1,3,3,1],[1,4,2,2],[0,2,1,0]],[[1,2,1,0],[1,3,4,1],[1,3,2,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,1],[1,3,2,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,1],[1,3,2,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,1,0],[1,3,3,1],[1,3,2,2],[0,3,0,1]],[[1,2,1,0],[1,3,3,1],[1,4,2,2],[0,2,0,1]],[[1,1,1,1],[2,0,3,0],[1,2,4,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,0],[1,2,3,2],[2,2,2,1]],[[1,1,1,1],[2,0,3,0],[1,2,3,2],[1,3,2,1]],[[1,1,1,1],[2,0,3,0],[1,2,3,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,0],[1,2,3,2],[1,2,2,2]],[[1,1,1,1],[2,0,3,0],[1,3,4,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,0],[1,3,3,1],[2,2,2,1]],[[1,1,1,1],[2,0,3,0],[1,3,3,1],[1,3,2,1]],[[1,1,1,1],[2,0,3,0],[1,3,3,1],[1,2,3,1]],[[1,1,1,1],[2,0,3,0],[1,3,3,1],[1,2,2,2]],[[1,1,1,1],[2,0,3,0],[1,3,4,2],[1,1,2,1]],[[1,1,1,1],[2,0,3,0],[1,3,3,2],[1,1,3,1]],[[1,1,1,1],[2,0,3,0],[1,3,3,2],[1,1,2,2]],[[1,1,1,1],[2,0,3,0],[1,3,4,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,0],[1,3,3,2],[2,2,2,0]],[[1,1,1,1],[2,0,3,0],[1,3,3,2],[1,3,2,0]],[[1,1,1,1],[2,0,3,0],[1,3,3,2],[1,2,3,0]],[[1,1,1,1],[2,0,3,0],[3,1,3,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,1,4,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,1,3,2],[2,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,1,3,2],[1,3,2,1]],[[1,1,1,1],[2,0,3,0],[2,1,3,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,0],[2,1,3,2],[1,2,2,2]],[[1,1,1,1],[2,0,3,0],[3,2,3,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,2,4,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,2,3,1],[2,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,2,3,1],[1,3,2,1]],[[1,1,1,1],[2,0,3,0],[2,2,3,1],[1,2,3,1]],[[1,1,1,1],[2,0,3,0],[2,2,3,1],[1,2,2,2]],[[1,1,1,1],[2,0,3,0],[2,2,4,2],[0,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,2,3,2],[0,3,2,1]],[[1,1,1,1],[2,0,3,0],[2,2,3,2],[0,2,3,1]],[[1,1,1,1],[2,0,3,0],[2,2,3,2],[0,2,2,2]],[[1,1,1,1],[2,0,3,0],[3,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,0],[2,2,4,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,0],[2,2,3,2],[2,2,2,0]],[[1,1,1,1],[2,0,3,0],[2,2,3,2],[1,3,2,0]],[[1,1,1,1],[2,0,3,0],[2,2,3,2],[1,2,3,0]],[[1,1,1,1],[2,0,3,0],[3,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,0],[2,3,1,2],[1,2,2,2]],[[1,1,1,1],[2,0,3,0],[3,3,2,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,0,3,0],[2,3,2,1],[1,2,2,2]],[[1,1,1,1],[2,0,3,0],[3,3,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,0],[2,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,0,3,0],[2,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,0,3,0],[2,3,2,2],[1,2,3,0]],[[1,1,1,1],[2,0,3,0],[3,3,3,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,0],[2,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,0],[1,3,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,0],[1,2,3,1]],[[1,1,1,1],[2,0,3,0],[2,3,4,1],[0,2,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,1],[0,3,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,1],[0,2,3,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,1],[0,2,2,2]],[[1,1,1,1],[2,0,3,0],[3,3,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,1],[1,3,1,1]],[[1,1,1,1],[2,0,3,0],[2,3,4,2],[0,1,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,2],[0,1,3,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,2],[0,1,2,2]],[[1,1,1,1],[2,0,3,0],[2,3,4,2],[0,2,2,0]],[[1,1,1,1],[2,0,3,0],[2,3,3,2],[0,3,2,0]],[[1,1,1,1],[2,0,3,0],[2,3,3,2],[0,2,3,0]],[[1,1,1,1],[2,0,3,0],[2,3,4,2],[1,0,2,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,2],[1,0,3,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,2],[1,0,2,2]],[[1,1,1,1],[2,0,3,0],[3,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,0,3,0],[2,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,0,3,0],[3,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,0,3,0],[2,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,0,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,3,4,1],[1,3,2,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,1],[1,3,2,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,1],[1,3,2,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,1,1],[2,0,3,1],[1,1,3,3],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[1,1,3,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,1],[1,1,3,2],[1,2,2,2]],[[1,1,1,1],[2,0,3,1],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[2,0,3,1],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[2,0,3,1],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,1],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[2,0,4,1],[1,2,3,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[2,0,3,1],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[2,0,3,1],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[2,0,3,1],[1,2,3,1],[1,2,2,2]],[[1,1,1,1],[2,0,4,1],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[1,2,3,2],[1,2,1,2]],[[1,1,1,1],[2,0,4,1],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,1],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,1],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[2,0,3,1],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[2,0,3,1],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[2,0,3,1],[1,2,3,2],[1,2,3,0]],[[1,1,1,1],[2,0,3,1],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,1],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[2,0,3,1],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,0,3,1],[1,3,2,1],[1,2,2,2]],[[1,1,1,1],[2,0,3,1],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[2,0,3,1],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[2,0,3,1],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,1],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,0,3,1],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,0,3,1],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[2,0,4,1],[1,3,3,1],[1,1,2,1]],[[1,1,1,1],[2,0,3,1],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[2,0,4,1],[1,3,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,1],[1,3,1,1]],[[1,1,1,1],[2,0,3,1],[1,3,4,2],[1,0,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,3],[1,0,2,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,2],[1,0,2,2]],[[1,1,1,1],[2,0,4,1],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,0,3,1],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[2,0,3,1],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,2],[1,1,1,2]],[[1,1,1,1],[2,0,4,1],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,0,3,1],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[2,0,3,1],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[2,0,3,1],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[2,0,3,1],[1,3,3,2],[1,1,3,0]],[[1,1,1,1],[2,0,4,1],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,0,3,1],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[2,0,3,1],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,0,3,1],[1,3,3,2],[1,2,0,2]],[[1,1,1,1],[2,0,4,1],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,0,3,1],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[2,0,3,1],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[2,0,3,1],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[2,0,3,1],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,0,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,3,3,1],[1,4,2,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,1],[1,3,2,2],[0,1,2,0]],[[1,1,1,1],[2,0,3,1],[2,0,3,3],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,0,3,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,1],[2,0,3,2],[1,2,2,2]],[[2,1,1,1],[2,0,3,1],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[3,0,3,1],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[2,0,3,1],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,1],[2,1,2,2],[1,2,2,2]],[[2,1,1,1],[2,0,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[3,0,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,0,4,1],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[2,0,3,1],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[2,0,3,1],[2,1,3,1],[1,2,2,2]],[[1,1,1,1],[2,0,3,1],[2,1,3,3],[0,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,1,3,2],[0,2,3,1]],[[1,1,1,1],[2,0,3,1],[2,1,3,2],[0,2,2,2]],[[1,1,1,1],[2,0,4,1],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,1,3,2],[1,2,1,2]],[[2,1,1,1],[2,0,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[3,0,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,0,4,1],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,1],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[2,0,3,1],[2,1,3,2],[1,2,3,0]],[[2,1,1,1],[2,0,3,1],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[3,0,3,1],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,1],[2,2,1,2],[1,2,2,2]],[[2,1,1,1],[2,0,3,1],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[3,0,3,1],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[2,0,3,1],[2,2,2,1],[1,2,2,2]],[[1,1,1,1],[2,0,3,1],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[2,0,3,1],[2,2,2,2],[0,2,2,2]],[[2,1,1,1],[2,0,3,1],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[3,0,3,1],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,1],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[2,0,3,1],[2,2,2,2],[1,2,3,0]],[[1,1,1,1],[2,0,4,1],[2,2,3,1],[0,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[2,0,3,1],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[2,0,3,1],[2,2,3,1],[0,2,2,2]],[[2,1,1,1],[2,0,3,1],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[3,0,3,1],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,2,3,1],[1,3,1,1]],[[1,1,1,1],[2,0,4,1],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,2,3,2],[0,2,1,2]],[[1,1,1,1],[2,0,4,1],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[2,0,3,1],[2,2,3,2],[0,2,3,0]],[[2,1,1,1],[2,0,3,1],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[3,0,3,1],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,0,3,1],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,0,3,1],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[2,0,3,1],[2,2,3,2],[1,3,0,1]],[[2,1,1,1],[2,0,3,1],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[3,0,3,1],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,0,3,1],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,0,3,1],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[2,0,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[1,4,3,1],[1,3,2,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,1],[1,3,2,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,1],[1,4,2,2],[0,1,1,1]],[[1,2,1,0],[1,3,4,1],[1,3,2,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,1],[1,3,2,2],[0,1,1,1]],[[1,3,1,0],[1,3,3,1],[1,3,2,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,1],[1,3,2,2],[0,1,1,1]],[[2,1,1,1],[2,0,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[3,0,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,0,3,1],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[2,0,3,1],[2,3,1,2],[0,2,2,2]],[[2,1,1,1],[2,0,3,1],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[3,0,3,1],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,0,3,1],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,0,3,1],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,1,2],[2,1,2,1]],[[1,1,1,1],[2,0,3,1],[3,3,2,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,2,0],[2,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,2,0],[1,3,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,2,0],[1,2,3,1]],[[2,1,1,1],[2,0,3,1],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[3,0,3,1],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,0,3,1],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[2,0,3,1],[2,3,2,1],[0,2,2,2]],[[2,1,1,1],[2,0,3,1],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[3,0,3,1],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,0,3,1],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,0,3,1],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,2,1],[2,1,2,1]],[[1,1,1,1],[2,0,3,1],[3,3,2,1],[1,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,2,1],[2,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,2,1],[1,3,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[2,0,3,1],[2,3,2,2],[0,1,2,2]],[[2,1,1,1],[2,0,3,1],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[3,0,3,1],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,0,3,1],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,2,2],[0,2,3,0]],[[1,1,1,1],[2,0,3,1],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[2,0,3,1],[2,3,2,2],[1,0,2,2]],[[2,1,1,1],[2,0,3,1],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[3,0,3,1],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,0,3,1],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,0,3,1],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[1,3,3,1],[1,4,2,1],[1,2,0,1]],[[1,2,1,0],[1,4,3,1],[1,3,2,1],[1,2,0,1]],[[1,3,1,0],[1,3,3,1],[1,3,2,1],[1,2,0,1]],[[2,2,1,0],[1,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,1,1,1],[2,0,3,1],[3,3,3,0],[1,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,0],[2,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,0],[1,3,1,1]],[[2,1,1,1],[2,0,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[3,0,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,0,4,1],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,0,3,1],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,0,3,1],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,1],[0,1,2,2]],[[2,1,1,1],[2,0,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[3,0,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,0,4,1],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,0,3,1],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,1],[0,3,1,1]],[[2,1,1,1],[2,0,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[3,0,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,0,4,1],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,0,3,1],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,0,3,1],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,1],[1,0,2,2]],[[2,1,1,1],[2,0,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[3,0,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,0,4,1],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,0,3,1],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,0,3,1],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,1],[2,1,1,1]],[[1,1,1,1],[2,0,3,1],[3,3,3,1],[1,2,1,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,1],[2,2,1,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,1],[1,3,1,0]],[[1,2,1,0],[1,3,3,1],[1,4,2,1],[1,1,1,1]],[[1,2,1,0],[1,3,4,1],[1,3,2,1],[1,1,1,1]],[[1,2,1,0],[1,4,3,1],[1,3,2,1],[1,1,1,1]],[[1,3,1,0],[1,3,3,1],[1,3,2,1],[1,1,1,1]],[[2,2,1,0],[1,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,1,1],[2,0,4,1],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[0,0,2,2]],[[2,1,1,1],[2,0,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[3,0,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,0,4,1],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,0,3,1],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,0,3,1],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[0,1,1,2]],[[2,1,1,1],[2,0,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[3,0,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,0,4,1],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,0,3,1],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,0,3,1],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[0,1,3,0]],[[2,1,1,1],[2,0,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[3,0,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,0,4,1],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,0,3,1],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,0,3,1],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[2,0,3,1],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[0,2,0,2]],[[2,1,1,1],[2,0,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[3,0,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,0,4,1],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,0,3,1],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,0,3,1],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[2,0,3,1],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[1,3,3,1],[1,4,2,1],[1,0,2,1]],[[1,2,1,0],[1,3,4,1],[1,3,2,1],[1,0,2,1]],[[1,2,1,0],[1,4,3,1],[1,3,2,1],[1,0,2,1]],[[1,3,1,0],[1,3,3,1],[1,3,2,1],[1,0,2,1]],[[2,2,1,0],[1,3,3,1],[1,3,2,1],[1,0,2,1]],[[2,1,1,1],[2,0,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[3,0,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,0,4,1],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,0,3,1],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,0,3,1],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[1,0,1,2]],[[2,1,1,1],[2,0,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[3,0,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,0,4,1],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,0,3,1],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,0,3,1],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[1,0,3,0]],[[2,1,1,1],[2,0,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[3,0,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,0,4,1],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,0,3,1],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,0,3,1],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[2,0,3,1],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[1,1,0,2]],[[2,1,1,1],[2,0,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[3,0,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,0,4,1],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,0,3,1],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,0,3,1],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[2,0,3,1],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[1,3,3,1],[1,3,2,1],[0,3,1,1]],[[1,2,1,0],[1,3,3,1],[1,4,2,1],[0,2,1,1]],[[1,2,1,0],[1,3,4,1],[1,3,2,1],[0,2,1,1]],[[1,2,1,0],[1,4,3,1],[1,3,2,1],[0,2,1,1]],[[1,3,1,0],[1,3,3,1],[1,3,2,1],[0,2,1,1]],[[2,2,1,0],[1,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,2,1,0],[1,3,3,1],[1,4,2,1],[0,1,2,1]],[[2,1,1,1],[2,0,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[3,0,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,0,3,1],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,0,3,1],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[2,0,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[1,3,4,1],[1,3,2,1],[0,1,2,1]],[[1,2,1,0],[1,4,3,1],[1,3,2,1],[0,1,2,1]],[[1,3,1,0],[1,3,3,1],[1,3,2,1],[0,1,2,1]],[[2,2,1,0],[1,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,2,1,0],[1,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,2,1,0],[1,3,4,1],[1,3,1,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,1],[1,3,1,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,1],[1,3,1,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,1],[1,3,1,2],[0,2,3,0]],[[1,2,1,0],[1,3,3,1],[1,3,1,2],[0,3,2,0]],[[1,2,1,0],[1,3,3,1],[1,4,1,2],[0,2,2,0]],[[1,2,1,0],[1,3,4,1],[1,3,1,2],[0,2,2,0]],[[1,1,1,2],[2,0,3,2],[1,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,4,2],[1,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,3],[1,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,2,1,3],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,2,1,2],[2,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,2,1,2],[1,3,2,1]],[[1,1,1,1],[2,0,3,2],[1,2,1,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,2],[1,2,1,2],[1,2,2,2]],[[1,1,1,2],[2,0,3,2],[1,2,2,2],[1,2,1,1]],[[1,1,1,1],[2,0,4,2],[1,2,2,2],[1,2,1,1]],[[1,1,1,1],[2,0,3,3],[1,2,2,2],[1,2,1,1]],[[1,1,1,1],[2,0,3,2],[1,2,2,3],[1,2,1,1]],[[1,1,1,1],[2,0,3,2],[1,2,2,2],[1,2,1,2]],[[1,1,1,2],[2,0,3,2],[1,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,4,2],[1,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,3],[1,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,2],[1,2,2,3],[1,2,2,0]],[[1,1,1,2],[2,0,3,2],[1,2,3,0],[1,2,2,1]],[[1,1,1,1],[2,0,4,2],[1,2,3,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,3],[1,2,3,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,2,4,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,2,3,0],[2,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,2,3,0],[1,3,2,1]],[[1,1,1,1],[2,0,3,2],[1,2,3,0],[1,2,3,1]],[[1,1,1,1],[2,0,3,2],[1,2,3,0],[1,2,2,2]],[[1,1,1,2],[2,0,3,2],[1,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,4,2],[1,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,3,3],[1,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,3,2],[1,2,4,1],[1,2,1,1]],[[1,1,1,2],[2,0,3,2],[1,2,3,1],[1,2,2,0]],[[1,1,1,1],[2,0,4,2],[1,2,3,1],[1,2,2,0]],[[1,1,1,1],[2,0,3,3],[1,2,3,1],[1,2,2,0]],[[1,1,1,1],[2,0,3,2],[1,2,4,1],[1,2,2,0]],[[1,1,1,1],[2,0,3,2],[1,2,3,1],[2,2,2,0]],[[1,1,1,1],[2,0,3,2],[1,2,3,1],[1,3,2,0]],[[1,1,1,1],[2,0,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,1,0],[1,4,3,1],[1,3,1,2],[0,2,2,0]],[[1,3,1,0],[1,3,3,1],[1,3,1,2],[0,2,2,0]],[[2,2,1,0],[1,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,1,1,2],[2,0,3,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,0,4,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,3],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,4,0,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,3,0,3],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,3,0,2],[2,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,3,0,2],[1,3,2,1]],[[1,1,1,1],[2,0,3,2],[1,3,0,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,2],[1,3,0,2],[1,2,2,2]],[[1,1,1,2],[2,0,3,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,0,4,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,0,3,3],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,0,3,2],[1,3,1,3],[1,1,2,1]],[[1,1,1,1],[2,0,3,2],[1,3,1,2],[1,1,3,1]],[[1,1,1,1],[2,0,3,2],[1,3,1,2],[1,1,2,2]],[[1,1,1,1],[2,0,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,3,2,0],[2,2,2,1]],[[1,1,1,1],[2,0,3,2],[1,3,2,0],[1,3,2,1]],[[1,1,1,1],[2,0,3,2],[1,3,2,0],[1,2,3,1]],[[1,1,1,1],[2,0,3,2],[1,3,2,0],[1,2,2,2]],[[1,1,1,1],[2,0,3,2],[1,4,2,1],[1,2,2,0]],[[1,1,1,1],[2,0,3,2],[1,3,2,1],[2,2,2,0]],[[1,1,1,1],[2,0,3,2],[1,3,2,1],[1,3,2,0]],[[1,1,1,1],[2,0,3,2],[1,3,2,1],[1,2,3,0]],[[1,1,1,2],[2,0,3,2],[1,3,2,2],[1,1,1,1]],[[1,1,1,1],[2,0,4,2],[1,3,2,2],[1,1,1,1]],[[1,1,1,1],[2,0,3,3],[1,3,2,2],[1,1,1,1]],[[1,1,1,1],[2,0,3,2],[1,3,2,3],[1,1,1,1]],[[1,1,1,1],[2,0,3,2],[1,3,2,2],[1,1,1,2]],[[1,1,1,2],[2,0,3,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,0,4,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,0,3,3],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,0,3,2],[1,3,2,3],[1,1,2,0]],[[1,1,1,2],[2,0,3,2],[1,3,2,2],[1,2,0,1]],[[1,1,1,1],[2,0,4,2],[1,3,2,2],[1,2,0,1]],[[1,1,1,1],[2,0,3,3],[1,3,2,2],[1,2,0,1]],[[1,1,1,1],[2,0,3,2],[1,3,2,3],[1,2,0,1]],[[1,1,1,1],[2,0,3,2],[1,3,2,2],[1,2,0,2]],[[1,1,1,2],[2,0,3,2],[1,3,2,2],[1,2,1,0]],[[1,1,1,1],[2,0,4,2],[1,3,2,2],[1,2,1,0]],[[1,1,1,1],[2,0,3,3],[1,3,2,2],[1,2,1,0]],[[1,1,1,1],[2,0,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,1,0],[1,3,3,1],[1,4,1,1],[1,1,2,1]],[[1,2,1,0],[1,3,4,1],[1,3,1,1],[1,1,2,1]],[[1,2,1,0],[1,4,3,1],[1,3,1,1],[1,1,2,1]],[[1,3,1,0],[1,3,3,1],[1,3,1,1],[1,1,2,1]],[[2,2,1,0],[1,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,2,1,0],[1,3,3,1],[1,3,1,1],[0,2,2,2]],[[1,1,1,2],[2,0,3,2],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,0,4,2],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,0,3,3],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,0,3,2],[1,4,3,0],[1,1,2,1]],[[1,1,1,1],[2,0,3,2],[1,3,4,0],[1,1,2,1]],[[1,1,1,1],[2,0,3,2],[1,3,3,0],[1,1,3,1]],[[1,1,1,1],[2,0,3,2],[1,3,3,0],[1,1,2,2]],[[1,1,1,2],[2,0,3,2],[1,3,3,0],[1,2,1,1]],[[1,1,1,1],[2,0,4,2],[1,3,3,0],[1,2,1,1]],[[1,1,1,1],[2,0,3,3],[1,3,3,0],[1,2,1,1]],[[1,1,1,1],[2,0,3,2],[1,4,3,0],[1,2,1,1]],[[1,1,1,1],[2,0,3,2],[1,3,4,0],[1,2,1,1]],[[1,1,1,1],[2,0,3,2],[1,3,3,0],[2,2,1,1]],[[1,1,1,1],[2,0,3,2],[1,3,3,0],[1,3,1,1]],[[1,1,1,2],[2,0,3,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,0,4,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,0,3,3],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,0,3,2],[1,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,0,3,2],[1,3,4,1],[1,1,1,1]],[[1,1,1,2],[2,0,3,2],[1,3,3,1],[1,1,2,0]],[[1,1,1,1],[2,0,4,2],[1,3,3,1],[1,1,2,0]],[[1,1,1,1],[2,0,3,3],[1,3,3,1],[1,1,2,0]],[[1,1,1,1],[2,0,3,2],[1,4,3,1],[1,1,2,0]],[[1,1,1,1],[2,0,3,2],[1,3,4,1],[1,1,2,0]],[[1,1,1,1],[2,0,3,2],[1,3,3,1],[1,1,3,0]],[[1,1,1,2],[2,0,3,2],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,0,4,2],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,0,3,3],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,0,3,2],[1,4,3,1],[1,2,0,1]],[[1,1,1,1],[2,0,3,2],[1,3,4,1],[1,2,0,1]],[[1,1,1,1],[2,0,3,2],[1,3,3,1],[2,2,0,1]],[[1,1,1,1],[2,0,3,2],[1,3,3,1],[1,3,0,1]],[[1,1,1,2],[2,0,3,2],[1,3,3,1],[1,2,1,0]],[[1,1,1,1],[2,0,4,2],[1,3,3,1],[1,2,1,0]],[[1,1,1,1],[2,0,3,3],[1,3,3,1],[1,2,1,0]],[[1,1,1,1],[2,0,3,2],[1,4,3,1],[1,2,1,0]],[[1,1,1,1],[2,0,3,2],[1,3,4,1],[1,2,1,0]],[[1,1,1,1],[2,0,3,2],[1,3,3,1],[2,2,1,0]],[[1,1,1,1],[2,0,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[1,3,3,1],[1,3,1,1],[0,2,3,1]],[[1,2,1,0],[1,3,3,1],[1,3,1,1],[0,3,2,1]],[[1,2,1,0],[1,3,3,1],[1,4,1,1],[0,2,2,1]],[[1,2,1,0],[1,3,4,1],[1,3,1,1],[0,2,2,1]],[[1,2,1,0],[1,4,3,1],[1,3,1,1],[0,2,2,1]],[[1,3,1,0],[1,3,3,1],[1,3,1,1],[0,2,2,1]],[[2,2,1,0],[1,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,2,1,0],[1,3,3,1],[1,4,0,2],[1,1,2,1]],[[1,2,1,0],[1,3,4,1],[1,3,0,2],[1,1,2,1]],[[1,2,1,0],[1,4,3,1],[1,3,0,2],[1,1,2,1]],[[1,3,1,0],[1,3,3,1],[1,3,0,2],[1,1,2,1]],[[2,2,1,0],[1,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,1,0],[1,3,3,1],[1,3,0,2],[0,2,2,2]],[[1,2,1,0],[1,3,3,1],[1,3,0,2],[0,2,3,1]],[[1,2,1,0],[1,3,3,1],[1,3,0,2],[0,3,2,1]],[[1,2,1,0],[1,3,3,1],[1,3,0,3],[0,2,2,1]],[[1,2,1,0],[1,3,3,1],[1,4,0,2],[0,2,2,1]],[[1,2,1,0],[1,3,4,1],[1,3,0,2],[0,2,2,1]],[[1,2,1,0],[1,4,3,1],[1,3,0,2],[0,2,2,1]],[[1,3,1,0],[1,3,3,1],[1,3,0,2],[0,2,2,1]],[[2,2,1,0],[1,3,3,1],[1,3,0,2],[0,2,2,1]],[[2,1,1,1],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,2],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[3,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,4,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,3],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[3,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,1,1,3],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,1,1,2],[2,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,1,1,2],[1,3,2,1]],[[1,1,1,1],[2,0,3,2],[2,1,1,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,2],[2,1,1,2],[1,2,2,2]],[[1,1,1,2],[2,0,3,2],[2,1,2,2],[1,2,1,1]],[[1,1,1,1],[2,0,4,2],[2,1,2,2],[1,2,1,1]],[[1,1,1,1],[2,0,3,3],[2,1,2,2],[1,2,1,1]],[[1,1,1,1],[2,0,3,2],[2,1,2,3],[1,2,1,1]],[[1,1,1,1],[2,0,3,2],[2,1,2,2],[1,2,1,2]],[[1,1,1,2],[2,0,3,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,4,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,3],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[2,0,3,2],[2,1,2,3],[1,2,2,0]],[[2,1,1,1],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,2],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[3,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,0,4,2],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,3],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[3,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,1,4,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,1,3,0],[2,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,1,3,0],[1,3,2,1]],[[1,1,1,1],[2,0,3,2],[2,1,3,0],[1,2,3,1]],[[1,1,1,1],[2,0,3,2],[2,1,3,0],[1,2,2,2]],[[1,1,1,2],[2,0,3,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,4,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,3,3],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,0,3,2],[2,1,4,1],[1,2,1,1]],[[2,1,1,1],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,2],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[3,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,0,4,2],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,0,3,3],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,0,3,2],[3,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,0,3,2],[2,1,4,1],[1,2,2,0]],[[1,1,1,1],[2,0,3,2],[2,1,3,1],[2,2,2,0]],[[1,1,1,1],[2,0,3,2],[2,1,3,1],[1,3,2,0]],[[1,1,1,1],[2,0,3,2],[2,1,3,1],[1,2,3,0]],[[2,1,1,1],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,2],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[3,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[2,0,4,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,3],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[3,2,0,2],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,0,3],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,0,2],[2,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,0,2],[1,3,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,0,2],[1,2,3,1]],[[1,1,1,1],[2,0,3,2],[2,2,0,2],[1,2,2,2]],[[1,1,1,2],[2,0,3,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[2,0,4,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[2,0,3,3],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,1,3],[0,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,1,2],[0,3,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,1,2],[0,2,3,1]],[[1,1,1,1],[2,0,3,2],[2,2,1,2],[0,2,2,2]],[[2,1,1,1],[2,0,3,2],[2,2,2,0],[1,2,2,1]],[[1,1,1,1],[3,0,3,2],[2,2,2,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[3,2,2,0],[1,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,2,0],[2,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,2,0],[1,3,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,2,0],[1,2,3,1]],[[1,1,1,1],[2,0,3,2],[2,2,2,0],[1,2,2,2]],[[2,1,1,1],[2,0,3,2],[2,2,2,1],[1,2,2,0]],[[1,1,1,1],[3,0,3,2],[2,2,2,1],[1,2,2,0]],[[1,1,1,1],[2,0,3,2],[3,2,2,1],[1,2,2,0]],[[1,1,1,1],[2,0,3,2],[2,2,2,1],[2,2,2,0]],[[1,1,1,1],[2,0,3,2],[2,2,2,1],[1,3,2,0]],[[1,1,1,1],[2,0,3,2],[2,2,2,1],[1,2,3,0]],[[1,1,1,2],[2,0,3,2],[2,2,2,2],[0,2,1,1]],[[1,1,1,1],[2,0,4,2],[2,2,2,2],[0,2,1,1]],[[1,1,1,1],[2,0,3,3],[2,2,2,2],[0,2,1,1]],[[1,1,1,1],[2,0,3,2],[2,2,2,3],[0,2,1,1]],[[1,1,1,1],[2,0,3,2],[2,2,2,2],[0,2,1,2]],[[1,1,1,2],[2,0,3,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[2,0,4,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[2,0,3,3],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[2,0,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,1,0],[1,3,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,1,0],[1,3,3,1],[1,2,4,2],[1,1,1,0]],[[1,2,1,0],[1,3,4,1],[1,2,3,2],[1,1,1,0]],[[1,2,1,0],[1,4,3,1],[1,2,3,2],[1,1,1,0]],[[1,3,1,0],[1,3,3,1],[1,2,3,2],[1,1,1,0]],[[2,2,1,0],[1,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,2,1,0],[1,3,3,1],[1,2,3,2],[1,1,0,2]],[[1,2,1,0],[1,3,3,1],[1,2,3,3],[1,1,0,1]],[[1,2,1,0],[1,3,3,1],[1,2,4,2],[1,1,0,1]],[[1,2,1,0],[1,3,4,1],[1,2,3,2],[1,1,0,1]],[[1,1,1,2],[2,0,3,2],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[2,0,4,2],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[2,0,3,3],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,4,0],[0,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,3,0],[0,3,2,1]],[[1,1,1,1],[2,0,3,2],[2,2,3,0],[0,2,3,1]],[[1,1,1,1],[2,0,3,2],[2,2,3,0],[0,2,2,2]],[[2,1,1,1],[2,0,3,2],[2,2,3,0],[1,2,1,1]],[[1,1,1,1],[3,0,3,2],[2,2,3,0],[1,2,1,1]],[[1,1,1,1],[2,0,3,2],[3,2,3,0],[1,2,1,1]],[[1,1,1,1],[2,0,3,2],[2,2,3,0],[2,2,1,1]],[[1,1,1,1],[2,0,3,2],[2,2,3,0],[1,3,1,1]],[[1,1,1,2],[2,0,3,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[2,0,4,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[2,0,3,3],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[2,0,3,2],[2,2,4,1],[0,2,1,1]],[[1,1,1,2],[2,0,3,2],[2,2,3,1],[0,2,2,0]],[[1,1,1,1],[2,0,4,2],[2,2,3,1],[0,2,2,0]],[[1,1,1,1],[2,0,3,3],[2,2,3,1],[0,2,2,0]],[[1,1,1,1],[2,0,3,2],[2,2,4,1],[0,2,2,0]],[[1,1,1,1],[2,0,3,2],[2,2,3,1],[0,3,2,0]],[[1,1,1,1],[2,0,3,2],[2,2,3,1],[0,2,3,0]],[[2,1,1,1],[2,0,3,2],[2,2,3,1],[1,2,0,1]],[[1,1,1,1],[3,0,3,2],[2,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,0,3,2],[3,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,0,3,2],[2,2,3,1],[2,2,0,1]],[[1,1,1,1],[2,0,3,2],[2,2,3,1],[1,3,0,1]],[[2,1,1,1],[2,0,3,2],[2,2,3,1],[1,2,1,0]],[[1,1,1,1],[3,0,3,2],[2,2,3,1],[1,2,1,0]],[[1,1,1,1],[2,0,3,2],[3,2,3,1],[1,2,1,0]],[[1,1,1,1],[2,0,3,2],[2,2,3,1],[2,2,1,0]],[[1,1,1,1],[2,0,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[1,4,3,1],[1,2,3,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,1],[1,2,3,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,1,0],[1,3,3,1],[1,2,3,2],[1,0,3,0]],[[1,2,1,0],[1,3,3,1],[1,2,3,3],[1,0,2,0]],[[1,2,1,0],[1,3,3,1],[1,2,4,2],[1,0,2,0]],[[1,2,1,0],[1,3,4,1],[1,2,3,2],[1,0,2,0]],[[1,2,1,0],[1,4,3,1],[1,2,3,2],[1,0,2,0]],[[1,3,1,0],[1,3,3,1],[1,2,3,2],[1,0,2,0]],[[2,2,1,0],[1,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,1],[1,2,3,2],[1,0,1,2]],[[1,2,1,0],[1,3,3,1],[1,2,3,3],[1,0,1,1]],[[1,2,1,0],[1,3,3,1],[1,2,4,2],[1,0,1,1]],[[1,2,1,0],[1,3,4,1],[1,2,3,2],[1,0,1,1]],[[1,2,1,0],[1,4,3,1],[1,2,3,2],[1,0,1,1]],[[1,3,1,0],[1,3,3,1],[1,2,3,2],[1,0,1,1]],[[2,2,1,0],[1,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,2,1,0],[1,3,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,1,0],[1,3,3,1],[1,2,4,2],[0,2,1,0]],[[1,2,1,0],[1,3,4,1],[1,2,3,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,1],[1,2,3,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,1],[1,2,3,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,2,1,0],[1,3,3,1],[1,2,3,2],[0,2,0,2]],[[1,2,1,0],[1,3,3,1],[1,2,3,3],[0,2,0,1]],[[1,2,1,0],[1,3,3,1],[1,2,4,2],[0,2,0,1]],[[1,2,1,0],[1,3,4,1],[1,2,3,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,1],[1,2,3,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,1],[1,2,3,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,1],[1,2,3,2],[0,2,0,1]],[[2,1,1,1],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,2],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[3,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,0,4,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,0,3,3],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,0,3,2],[3,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,4,0,2],[0,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,0,3],[0,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,0,2],[0,3,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,0,2],[0,2,3,1]],[[1,1,1,1],[2,0,3,2],[2,3,0,2],[0,2,2,2]],[[2,1,1,1],[2,0,3,2],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[3,0,3,2],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,0,3,2],[3,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,0,3,2],[2,4,0,2],[1,1,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,0,2],[2,1,2,1]],[[1,1,1,2],[2,0,3,2],[2,3,1,2],[0,1,2,1]],[[1,1,1,1],[2,0,4,2],[2,3,1,2],[0,1,2,1]],[[1,1,1,1],[2,0,3,3],[2,3,1,2],[0,1,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,1,3],[0,1,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,1,2],[0,1,3,1]],[[1,1,1,1],[2,0,3,2],[2,3,1,2],[0,1,2,2]],[[1,1,1,2],[2,0,3,2],[2,3,1,2],[1,0,2,1]],[[1,1,1,1],[2,0,4,2],[2,3,1,2],[1,0,2,1]],[[1,1,1,1],[2,0,3,3],[2,3,1,2],[1,0,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,1,3],[1,0,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,1,2],[1,0,3,1]],[[1,1,1,1],[2,0,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,1],[1,2,3,2],[0,1,3,0]],[[1,2,1,0],[1,3,3,1],[1,2,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,1],[1,2,4,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,1],[1,2,3,2],[0,1,2,0]],[[2,1,1,1],[2,0,3,2],[2,3,2,0],[0,2,2,1]],[[1,1,1,1],[3,0,3,2],[2,3,2,0],[0,2,2,1]],[[1,1,1,1],[2,0,3,2],[3,3,2,0],[0,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,4,2,0],[0,2,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,0],[0,3,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,0],[0,2,3,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,0],[0,2,2,2]],[[2,1,1,1],[2,0,3,2],[2,3,2,0],[1,1,2,1]],[[1,1,1,1],[3,0,3,2],[2,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,0,3,2],[3,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,0,3,2],[2,4,2,0],[1,1,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,0],[2,1,2,1]],[[2,1,1,1],[2,0,3,2],[2,3,2,1],[0,2,2,0]],[[1,1,1,1],[3,0,3,2],[2,3,2,1],[0,2,2,0]],[[1,1,1,1],[2,0,3,2],[3,3,2,1],[0,2,2,0]],[[1,1,1,1],[2,0,3,2],[2,4,2,1],[0,2,2,0]],[[1,1,1,1],[2,0,3,2],[2,3,2,1],[0,3,2,0]],[[1,1,1,1],[2,0,3,2],[2,3,2,1],[0,2,3,0]],[[2,1,1,1],[2,0,3,2],[2,3,2,1],[1,1,2,0]],[[1,1,1,1],[3,0,3,2],[2,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,0,3,2],[3,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,0,3,2],[2,4,2,1],[1,1,2,0]],[[1,1,1,1],[2,0,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[1,4,3,1],[1,2,3,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,1],[1,2,3,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,1],[1,2,3,2],[0,1,1,2]],[[1,2,1,0],[1,3,3,1],[1,2,3,3],[0,1,1,1]],[[1,2,1,0],[1,3,3,1],[1,2,4,2],[0,1,1,1]],[[1,2,1,0],[1,3,4,1],[1,2,3,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,1],[1,2,3,2],[0,1,1,1]],[[1,1,1,2],[2,0,3,2],[2,3,2,2],[0,0,2,1]],[[1,1,1,1],[2,0,4,2],[2,3,2,2],[0,0,2,1]],[[1,1,1,1],[2,0,3,3],[2,3,2,2],[0,0,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,3],[0,0,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,2],[0,0,2,2]],[[1,1,1,2],[2,0,3,2],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[2,0,4,2],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[2,0,3,3],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,3],[0,1,1,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,2],[0,1,1,2]],[[1,1,1,2],[2,0,3,2],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[2,0,4,2],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[2,0,3,3],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[2,0,3,2],[2,3,2,3],[0,1,2,0]],[[1,1,1,2],[2,0,3,2],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[2,0,4,2],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[2,0,3,3],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,3],[0,2,0,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,2],[0,2,0,2]],[[1,1,1,2],[2,0,3,2],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[2,0,4,2],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[2,0,3,3],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[2,0,3,2],[2,3,2,3],[0,2,1,0]],[[1,3,1,0],[1,3,3,1],[1,2,3,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,1],[1,2,3,2],[0,0,2,2]],[[1,2,1,0],[1,3,3,1],[1,2,3,3],[0,0,2,1]],[[1,2,1,0],[1,3,3,1],[1,2,4,2],[0,0,2,1]],[[1,2,1,0],[1,3,4,1],[1,2,3,2],[0,0,2,1]],[[1,2,1,0],[1,4,3,1],[1,2,3,2],[0,0,2,1]],[[1,3,1,0],[1,3,3,1],[1,2,3,2],[0,0,2,1]],[[2,2,1,0],[1,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,1,1,2],[2,0,3,2],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[2,0,4,2],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[2,0,3,3],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,3],[1,0,1,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,2],[1,0,1,2]],[[1,1,1,2],[2,0,3,2],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[2,0,4,2],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[2,0,3,3],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[2,0,3,2],[2,3,2,3],[1,0,2,0]],[[1,1,1,2],[2,0,3,2],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[2,0,4,2],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[2,0,3,3],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,3],[1,1,0,1]],[[1,1,1,1],[2,0,3,2],[2,3,2,2],[1,1,0,2]],[[1,1,1,2],[2,0,3,2],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[2,0,4,2],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[2,0,3,3],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[2,0,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,0],[1,3,3,1],[1,2,4,1],[1,1,1,1]],[[1,2,1,0],[1,3,4,1],[1,2,3,1],[1,1,1,1]],[[1,2,1,0],[1,4,3,1],[1,2,3,1],[1,1,1,1]],[[1,3,1,0],[1,3,3,1],[1,2,3,1],[1,1,1,1]],[[2,2,1,0],[1,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,1,0],[1,3,3,1],[1,2,3,1],[1,0,2,2]],[[1,2,1,0],[1,3,3,1],[1,2,3,1],[1,0,3,1]],[[1,2,1,0],[1,3,3,1],[1,2,4,1],[1,0,2,1]],[[1,2,1,0],[1,3,4,1],[1,2,3,1],[1,0,2,1]],[[1,2,1,0],[1,4,3,1],[1,2,3,1],[1,0,2,1]],[[1,3,1,0],[1,3,3,1],[1,2,3,1],[1,0,2,1]],[[2,2,1,0],[1,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,1,0],[1,3,3,1],[1,2,4,1],[0,2,1,1]],[[1,2,1,0],[1,3,4,1],[1,2,3,1],[0,2,1,1]],[[1,2,1,0],[1,4,3,1],[1,2,3,1],[0,2,1,1]],[[1,3,1,0],[1,3,3,1],[1,2,3,1],[0,2,1,1]],[[2,2,1,0],[1,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,1,0],[1,3,3,1],[1,2,3,1],[0,1,2,2]],[[1,2,1,0],[1,3,3,1],[1,2,3,1],[0,1,3,1]],[[1,2,1,0],[1,3,3,1],[1,2,4,1],[0,1,2,1]],[[1,2,1,0],[1,3,4,1],[1,2,3,1],[0,1,2,1]],[[2,1,1,1],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,2],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[3,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,0,4,2],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,0,3,3],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,0,3,2],[3,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,0,3,2],[2,4,3,0],[0,1,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,4,0],[0,1,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,0],[0,1,3,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,0],[0,1,2,2]],[[2,1,1,1],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,2],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[3,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,0,4,2],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,0,3,3],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,0,3,2],[3,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,0,3,2],[2,4,3,0],[0,2,1,1]],[[1,1,1,1],[2,0,3,2],[2,3,4,0],[0,2,1,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,0],[0,3,1,1]],[[2,1,1,1],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,2],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[3,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,0,4,2],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,0,3,3],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,0,3,2],[3,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,0,3,2],[2,4,3,0],[1,0,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,4,0],[1,0,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,0],[2,0,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,0],[1,0,3,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,0],[1,0,2,2]],[[2,1,1,1],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,2],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[3,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,0,4,2],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,0,3,3],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,0,3,2],[3,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,0,3,2],[2,4,3,0],[1,1,1,1]],[[1,1,1,1],[2,0,3,2],[2,3,4,0],[1,1,1,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,0],[2,1,1,1]],[[2,1,1,1],[2,0,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,1],[3,0,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,1,1],[2,0,3,2],[3,3,3,0],[1,2,0,1]],[[1,1,1,1],[2,0,3,2],[2,4,3,0],[1,2,0,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[1,4,3,1],[1,2,3,1],[0,1,2,1]],[[1,3,1,0],[1,3,3,1],[1,2,3,1],[0,1,2,1]],[[2,2,1,0],[1,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,2,1,0],[1,3,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,1],[1,2,2,2],[1,0,3,1]],[[1,2,1,0],[1,3,3,1],[1,2,2,3],[1,0,2,1]],[[1,1,1,2],[2,0,3,2],[2,3,3,1],[0,0,2,1]],[[1,1,1,1],[2,0,4,2],[2,3,3,1],[0,0,2,1]],[[1,1,1,1],[2,0,3,3],[2,3,3,1],[0,0,2,1]],[[1,1,1,1],[2,0,3,2],[2,3,4,1],[0,0,2,1]],[[2,1,1,1],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,2],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[3,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,0,4,2],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,0,3,3],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,0,3,2],[3,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,0,3,2],[2,4,3,1],[0,1,1,1]],[[1,1,1,1],[2,0,3,2],[2,3,4,1],[0,1,1,1]],[[2,1,1,1],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,2],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[3,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,0,4,2],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,0,3,3],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,0,3,2],[3,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,0,3,2],[2,4,3,1],[0,1,2,0]],[[1,1,1,1],[2,0,3,2],[2,3,4,1],[0,1,2,0]],[[1,1,1,1],[2,0,3,2],[2,3,3,1],[0,1,3,0]],[[2,1,1,1],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,2],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[3,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,0,4,2],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,0,3,3],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,0,3,2],[3,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,0,3,2],[2,4,3,1],[0,2,0,1]],[[1,1,1,1],[2,0,3,2],[2,3,4,1],[0,2,0,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,1],[0,3,0,1]],[[2,1,1,1],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,2],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[3,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,0,4,2],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,0,3,3],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,0,3,2],[3,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,0,3,2],[2,4,3,1],[0,2,1,0]],[[1,1,1,1],[2,0,3,2],[2,3,4,1],[0,2,1,0]],[[1,1,1,1],[2,0,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[1,3,3,1],[1,2,2,2],[0,1,2,2]],[[1,2,1,0],[1,3,3,1],[1,2,2,2],[0,1,3,1]],[[1,2,1,0],[1,3,3,1],[1,2,2,3],[0,1,2,1]],[[2,1,1,1],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,2],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[3,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,0,4,2],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,0,3,3],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,0,3,2],[3,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,0,3,2],[2,4,3,1],[1,0,1,1]],[[1,1,1,1],[2,0,3,2],[2,3,4,1],[1,0,1,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,1],[2,0,1,1]],[[2,1,1,1],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,2],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[3,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,0,4,2],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,0,3,3],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,0,3,2],[3,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,0,3,2],[2,4,3,1],[1,0,2,0]],[[1,1,1,1],[2,0,3,2],[2,3,4,1],[1,0,2,0]],[[1,1,1,1],[2,0,3,2],[2,3,3,1],[2,0,2,0]],[[1,1,1,1],[2,0,3,2],[2,3,3,1],[1,0,3,0]],[[2,1,1,1],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,2],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[3,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,0,4,2],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,0,3,3],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,0,3,2],[3,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,0,3,2],[2,4,3,1],[1,1,0,1]],[[1,1,1,1],[2,0,3,2],[2,3,4,1],[1,1,0,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,1],[2,1,0,1]],[[2,1,1,1],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,2],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[3,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,0,4,2],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,0,3,3],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,0,3,2],[3,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,0,3,2],[2,4,3,1],[1,1,1,0]],[[1,1,1,1],[2,0,3,2],[2,3,4,1],[1,1,1,0]],[[1,1,1,1],[2,0,3,2],[2,3,3,1],[2,1,1,0]],[[2,1,1,1],[2,0,3,2],[2,3,3,1],[1,2,0,0]],[[1,1,1,1],[3,0,3,2],[2,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,0,3,2],[3,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,0,3,2],[2,4,3,1],[1,2,0,0]],[[1,1,1,1],[2,0,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[1,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,1,0],[1,3,3,1],[1,1,3,2],[0,3,2,0]],[[1,2,1,0],[1,3,3,1],[1,1,3,3],[0,2,2,0]],[[1,2,1,0],[1,3,3,1],[1,1,4,2],[0,2,2,0]],[[1,2,1,0],[1,3,4,1],[1,1,3,2],[0,2,2,0]],[[1,2,1,0],[1,4,3,1],[1,1,3,2],[0,2,2,0]],[[1,3,1,0],[1,3,3,1],[1,1,3,2],[0,2,2,0]],[[2,2,1,0],[1,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,2,1,0],[1,3,3,1],[1,1,3,2],[0,2,1,2]],[[1,2,1,0],[1,3,3,1],[1,1,3,3],[0,2,1,1]],[[1,2,1,0],[1,3,3,1],[1,1,4,2],[0,2,1,1]],[[1,2,1,0],[1,3,4,1],[1,1,3,2],[0,2,1,1]],[[1,2,1,0],[1,4,3,1],[1,1,3,2],[0,2,1,1]],[[1,3,1,0],[1,3,3,1],[1,1,3,2],[0,2,1,1]],[[2,2,1,0],[1,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,2,1,0],[1,3,3,1],[1,1,3,1],[0,2,2,2]],[[1,2,1,0],[1,3,3,1],[1,1,3,1],[0,2,3,1]],[[1,1,1,2],[2,0,3,2],[2,3,3,2],[0,1,0,1]],[[1,1,1,1],[2,0,4,2],[2,3,3,2],[0,1,0,1]],[[1,1,1,1],[2,0,3,3],[2,3,3,2],[0,1,0,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,0],[1,3,3,1],[1,1,3,1],[0,3,2,1]],[[1,2,1,0],[1,3,3,1],[1,1,4,1],[0,2,2,1]],[[1,2,1,0],[1,3,4,1],[1,1,3,1],[0,2,2,1]],[[1,2,1,0],[1,4,3,1],[1,1,3,1],[0,2,2,1]],[[1,3,1,0],[1,3,3,1],[1,1,3,1],[0,2,2,1]],[[2,2,1,0],[1,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,2,1,0],[1,3,3,1],[1,1,2,2],[0,2,2,2]],[[1,2,1,0],[1,3,3,1],[1,1,2,2],[0,2,3,1]],[[1,2,1,0],[1,3,3,1],[1,1,2,2],[0,3,2,1]],[[1,2,1,0],[1,3,3,1],[1,1,2,3],[0,2,2,1]],[[1,2,1,0],[1,3,3,1],[1,0,3,2],[1,2,3,0]],[[1,2,1,0],[1,3,3,1],[1,0,3,2],[1,3,2,0]],[[1,2,1,0],[1,3,3,1],[1,0,3,2],[2,2,2,0]],[[1,2,1,0],[1,3,3,1],[1,0,3,3],[1,2,2,0]],[[1,2,1,0],[1,3,3,1],[1,0,4,2],[1,2,2,0]],[[1,2,1,0],[1,3,4,1],[1,0,3,2],[1,2,2,0]],[[1,2,1,0],[1,4,3,1],[1,0,3,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,1],[1,0,3,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,1],[1,0,3,2],[1,2,1,2]],[[1,2,1,0],[1,3,3,1],[1,0,3,3],[1,2,1,1]],[[1,2,1,0],[1,3,3,1],[1,0,4,2],[1,2,1,1]],[[1,2,1,0],[1,3,4,1],[1,0,3,2],[1,2,1,1]],[[1,2,1,0],[1,4,3,1],[1,0,3,2],[1,2,1,1]],[[1,3,1,0],[1,3,3,1],[1,0,3,2],[1,2,1,1]],[[2,2,1,0],[1,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,2,1,0],[1,3,3,1],[1,0,3,2],[0,2,2,2]],[[1,2,1,0],[1,3,3,1],[1,0,3,2],[0,2,3,1]],[[1,2,1,0],[1,3,3,1],[1,0,3,3],[0,2,2,1]],[[1,2,1,0],[1,3,3,1],[1,0,3,1],[1,2,2,2]],[[1,1,1,2],[2,0,3,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[2,0,4,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[2,0,3,3],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[2,0,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,0],[1,3,3,1],[1,0,3,1],[1,2,3,1]],[[1,2,1,0],[1,3,3,1],[1,0,3,1],[1,3,2,1]],[[1,2,1,0],[1,3,3,1],[1,0,3,1],[2,2,2,1]],[[1,2,1,0],[1,3,3,1],[1,0,4,1],[1,2,2,1]],[[1,2,1,0],[1,3,4,1],[1,0,3,1],[1,2,2,1]],[[1,2,1,0],[1,4,3,1],[1,0,3,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,1],[1,0,3,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,2,1,0],[1,3,3,1],[1,0,2,2],[1,2,2,2]],[[1,2,1,0],[1,3,3,1],[1,0,2,2],[1,2,3,1]],[[1,2,1,0],[1,3,3,1],[1,0,2,2],[1,3,2,1]],[[1,2,1,0],[1,3,3,1],[1,0,2,2],[2,2,2,1]],[[1,2,1,0],[1,3,3,1],[1,0,2,3],[1,2,2,1]],[[1,2,1,0],[1,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,2,1,0],[1,3,4,1],[0,3,3,2],[1,2,0,0]],[[1,2,1,0],[1,4,3,1],[0,3,3,2],[1,2,0,0]],[[1,3,1,0],[1,3,3,1],[0,3,3,2],[1,2,0,0]],[[2,2,1,0],[1,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,2,1,0],[1,3,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,1,0],[1,3,3,1],[0,3,4,2],[0,2,1,0]],[[1,2,1,0],[1,3,4,1],[0,3,3,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,1],[0,3,3,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,1],[0,3,3,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,1],[0,3,3,2],[0,2,1,0]],[[1,2,1,0],[1,3,3,1],[0,3,3,2],[0,2,0,2]],[[1,2,1,0],[1,3,3,1],[0,3,3,3],[0,2,0,1]],[[1,2,1,0],[1,3,3,1],[0,3,4,2],[0,2,0,1]],[[1,2,1,0],[1,3,4,1],[0,3,3,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,1],[0,3,3,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,1],[0,3,3,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,1],[0,3,3,2],[0,2,0,1]],[[1,2,1,0],[1,3,3,1],[0,3,3,2],[0,1,3,0]],[[1,2,1,0],[1,3,3,1],[0,3,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,3,1],[0,3,4,2],[0,1,2,0]],[[1,2,1,0],[1,3,4,1],[0,3,3,2],[0,1,2,0]],[[1,2,1,0],[1,4,3,1],[0,3,3,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,1],[0,3,3,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,1],[0,3,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,1],[0,3,3,2],[0,1,1,2]],[[1,2,1,0],[1,3,3,1],[0,3,3,3],[0,1,1,1]],[[1,2,1,0],[1,3,3,1],[0,3,4,2],[0,1,1,1]],[[1,2,1,0],[1,3,4,1],[0,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,1,0,2],[3,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,1,0,2],[2,3,1,3],[1,2,2,1]],[[1,1,1,1],[2,1,0,2],[2,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,1,0,2],[2,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,1,0,2],[2,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,1,0,2],[2,3,1,2],[1,2,2,2]],[[1,1,1,1],[2,1,0,2],[3,3,2,1],[1,2,2,1]],[[1,1,1,1],[2,1,0,2],[2,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,1,0,2],[2,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,1,0,2],[2,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,1,0,2],[2,3,2,1],[1,2,2,2]],[[1,1,1,1],[2,1,0,2],[3,3,2,2],[1,2,2,0]],[[1,1,1,1],[2,1,0,2],[2,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,1,0,2],[2,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,1,0,2],[2,3,2,2],[1,2,3,0]],[[1,1,1,1],[2,1,0,2],[3,3,3,1],[1,2,1,1]],[[1,1,1,1],[2,1,0,2],[2,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,1,0,2],[2,3,3,1],[1,3,1,1]],[[1,1,1,1],[2,1,0,2],[3,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,1,0,2],[2,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,1,0,2],[2,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,1,0,2],[3,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,1,0,2],[2,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,1,0,2],[2,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,4,3,1],[0,3,3,2],[0,1,1,1]],[[1,3,1,0],[1,3,3,1],[0,3,3,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,1],[0,3,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,1],[0,3,3,2],[0,0,2,2]],[[1,2,1,0],[1,3,3,1],[0,3,3,3],[0,0,2,1]],[[1,2,1,0],[1,3,3,1],[0,3,4,2],[0,0,2,1]],[[1,1,1,1],[2,1,1,0],[3,3,3,1],[1,2,2,1]],[[1,1,1,1],[2,1,1,0],[2,3,3,1],[2,2,2,1]],[[1,1,1,1],[2,1,1,0],[2,3,3,1],[1,3,2,1]],[[1,1,1,1],[2,1,1,0],[2,3,3,1],[1,2,3,1]],[[1,1,1,1],[2,1,1,0],[2,3,3,1],[1,2,2,2]],[[1,1,1,1],[2,1,1,0],[3,3,3,2],[1,2,2,0]],[[1,1,1,1],[2,1,1,0],[2,3,3,2],[2,2,2,0]],[[1,1,1,1],[2,1,1,0],[2,3,3,2],[1,3,2,0]],[[1,1,1,1],[2,1,1,0],[2,3,3,2],[1,2,3,0]],[[1,2,1,0],[1,3,4,1],[0,3,3,2],[0,0,2,1]],[[1,2,1,0],[1,4,3,1],[0,3,3,2],[0,0,2,1]],[[1,3,1,0],[1,3,3,1],[0,3,3,2],[0,0,2,1]],[[2,2,1,0],[1,3,3,1],[0,3,3,2],[0,0,2,1]],[[1,2,1,0],[1,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,2,1,0],[1,3,4,1],[0,3,3,1],[0,2,1,1]],[[1,2,1,0],[1,4,3,1],[0,3,3,1],[0,2,1,1]],[[1,3,1,0],[1,3,3,1],[0,3,3,1],[0,2,1,1]],[[2,2,1,0],[1,3,3,1],[0,3,3,1],[0,2,1,1]],[[1,2,1,0],[1,3,3,1],[0,3,3,1],[0,1,2,2]],[[1,2,1,0],[1,3,3,1],[0,3,3,1],[0,1,3,1]],[[1,2,1,0],[1,3,3,1],[0,3,4,1],[0,1,2,1]],[[1,2,1,0],[1,3,4,1],[0,3,3,1],[0,1,2,1]],[[1,2,1,0],[1,4,3,1],[0,3,3,1],[0,1,2,1]],[[1,3,1,0],[1,3,3,1],[0,3,3,1],[0,1,2,1]],[[2,2,1,0],[1,3,3,1],[0,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,1,2,0],[3,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,1,2,0],[2,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,1,2,0],[2,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,1,2,0],[2,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,1,2,0],[2,3,1,2],[1,2,2,2]],[[1,1,1,1],[2,1,2,0],[3,3,2,1],[1,2,2,1]],[[1,1,1,1],[2,1,2,0],[2,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,1,2,0],[2,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,1,2,0],[2,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,1,2,0],[2,3,2,1],[1,2,2,2]],[[1,1,1,1],[2,1,2,0],[3,3,2,2],[1,2,2,0]],[[1,1,1,1],[2,1,2,0],[2,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,1,2,0],[2,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,1,2,0],[2,3,2,2],[1,2,3,0]],[[1,1,1,1],[2,1,2,0],[3,3,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,2,0],[2,3,3,0],[2,2,2,1]],[[1,1,1,1],[2,1,2,0],[2,3,3,0],[1,3,2,1]],[[1,1,1,1],[2,1,2,0],[2,3,3,0],[1,2,3,1]],[[1,1,1,1],[2,1,2,0],[3,3,3,1],[1,2,1,1]],[[1,1,1,1],[2,1,2,0],[2,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,1,2,0],[2,3,3,1],[1,3,1,1]],[[1,1,1,1],[2,1,2,0],[3,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,1,2,0],[2,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,1,2,0],[2,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,1,2,0],[3,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,1,2,0],[2,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,1,2,0],[2,3,3,2],[1,3,1,0]],[[1,1,1,1],[2,1,2,1],[3,3,2,0],[1,2,2,1]],[[1,1,1,1],[2,1,2,1],[2,3,2,0],[2,2,2,1]],[[1,1,1,1],[2,1,2,1],[2,3,2,0],[1,3,2,1]],[[1,1,1,1],[2,1,2,1],[2,3,2,0],[1,2,3,1]],[[1,1,1,1],[2,1,2,1],[3,3,2,1],[1,2,2,0]],[[1,1,1,1],[2,1,2,1],[2,3,2,1],[2,2,2,0]],[[1,1,1,1],[2,1,2,1],[2,3,2,1],[1,3,2,0]],[[1,1,1,1],[2,1,2,1],[3,3,3,0],[1,2,1,1]],[[1,1,1,1],[2,1,2,1],[2,3,3,0],[2,2,1,1]],[[1,1,1,1],[2,1,2,1],[2,3,3,0],[1,3,1,1]],[[1,1,1,1],[2,1,2,1],[3,3,3,1],[1,2,1,0]],[[1,1,1,1],[2,1,2,1],[2,3,3,1],[2,2,1,0]],[[1,1,1,1],[2,1,2,1],[2,3,3,1],[1,3,1,0]],[[1,2,1,0],[1,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,2,1,0],[1,3,3,1],[0,3,2,2],[2,2,1,0]],[[1,2,1,0],[1,3,3,1],[0,4,2,2],[1,2,1,0]],[[1,2,1,0],[1,3,4,1],[0,3,2,2],[1,2,1,0]],[[1,2,1,0],[1,4,3,1],[0,3,2,2],[1,2,1,0]],[[1,3,1,0],[1,3,3,1],[0,3,2,2],[1,2,1,0]],[[2,2,1,0],[1,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,1,0],[1,3,3,1],[0,3,2,2],[1,3,0,1]],[[1,2,1,0],[1,3,3,1],[0,3,2,2],[2,2,0,1]],[[1,2,1,0],[1,3,3,1],[0,4,2,2],[1,2,0,1]],[[1,2,1,0],[1,3,4,1],[0,3,2,2],[1,2,0,1]],[[1,2,1,0],[1,4,3,1],[0,3,2,2],[1,2,0,1]],[[1,3,1,0],[1,3,3,1],[0,3,2,2],[1,2,0,1]],[[2,2,1,0],[1,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,1,0],[1,3,3,1],[0,4,2,2],[1,1,2,0]],[[1,2,1,0],[1,3,4,1],[0,3,2,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,1],[0,3,2,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,1],[0,3,2,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,1],[0,4,2,2],[1,1,1,1]],[[1,2,1,0],[1,3,4,1],[0,3,2,2],[1,1,1,1]],[[1,2,1,0],[1,4,3,1],[0,3,2,2],[1,1,1,1]],[[1,3,1,0],[1,3,3,1],[0,3,2,2],[1,1,1,1]],[[2,2,1,0],[1,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,1],[0,3,2,2],[0,1,2,2]],[[1,2,1,0],[1,3,3,1],[0,3,2,2],[0,1,3,1]],[[1,2,1,0],[1,3,3,1],[0,3,2,3],[0,1,2,1]],[[1,2,1,0],[1,3,3,1],[0,3,2,1],[1,3,1,1]],[[1,2,1,0],[1,3,3,1],[0,3,2,1],[2,2,1,1]],[[1,2,1,0],[1,3,3,1],[0,4,2,1],[1,2,1,1]],[[1,2,1,0],[1,3,4,1],[0,3,2,1],[1,2,1,1]],[[1,2,1,0],[1,4,3,1],[0,3,2,1],[1,2,1,1]],[[1,3,1,0],[1,3,3,1],[0,3,2,1],[1,2,1,1]],[[2,2,1,0],[1,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,2,1,0],[1,3,3,1],[0,4,2,1],[1,1,2,1]],[[1,2,1,0],[1,3,4,1],[0,3,2,1],[1,1,2,1]],[[1,2,1,0],[1,4,3,1],[0,3,2,1],[1,1,2,1]],[[1,3,1,0],[1,3,3,1],[0,3,2,1],[1,1,2,1]],[[2,2,1,0],[1,3,3,1],[0,3,2,1],[1,1,2,1]],[[2,1,1,1],[2,1,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,2],[2,1,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[3,1,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,1,2,3],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,1,2,2],[3,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,1,2,2],[2,0,2,3],[1,2,2,1]],[[1,1,1,1],[2,1,2,2],[2,0,2,2],[2,2,2,1]],[[1,1,1,1],[2,1,2,2],[2,0,2,2],[1,3,2,1]],[[1,1,1,1],[2,1,2,2],[2,0,2,2],[1,2,3,1]],[[1,1,1,1],[2,1,2,2],[2,0,2,2],[1,2,2,2]],[[2,1,1,1],[2,1,2,2],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[3,1,2,2],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,1,2,2],[3,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,1,2,2],[2,0,4,1],[1,2,2,1]],[[1,1,1,1],[2,1,2,2],[2,0,3,1],[2,2,2,1]],[[1,1,1,1],[2,1,2,2],[2,0,3,1],[1,3,2,1]],[[1,1,1,1],[2,1,2,2],[2,0,3,1],[1,2,3,1]],[[1,1,1,1],[2,1,2,2],[2,0,3,1],[1,2,2,2]],[[1,1,1,2],[2,1,2,2],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[2,1,2,3],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[2,1,2,2],[2,0,4,2],[1,2,1,1]],[[1,1,1,1],[2,1,2,2],[2,0,3,3],[1,2,1,1]],[[1,1,1,1],[2,1,2,2],[2,0,3,2],[1,2,1,2]],[[2,1,1,1],[2,1,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,2],[2,1,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[3,1,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,1,2,3],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,1,2,2],[3,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,1,2,2],[2,0,4,2],[1,2,2,0]],[[1,1,1,1],[2,1,2,2],[2,0,3,3],[1,2,2,0]],[[1,1,1,1],[2,1,2,2],[2,0,3,2],[2,2,2,0]],[[1,1,1,1],[2,1,2,2],[2,0,3,2],[1,3,2,0]],[[1,1,1,1],[2,1,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,1,0],[1,3,3,1],[0,3,1,2],[1,2,3,0]],[[1,2,1,0],[1,3,3,1],[0,3,1,2],[1,3,2,0]],[[1,2,1,0],[1,3,3,1],[0,3,1,2],[2,2,2,0]],[[1,2,1,0],[1,3,3,1],[0,4,1,2],[1,2,2,0]],[[1,2,1,0],[1,3,4,1],[0,3,1,2],[1,2,2,0]],[[1,2,1,0],[1,4,3,1],[0,3,1,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,1],[0,3,1,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,1],[0,3,1,1],[1,2,2,2]],[[1,2,1,0],[1,3,3,1],[0,3,1,1],[1,2,3,1]],[[1,2,1,0],[1,3,3,1],[0,3,1,1],[1,3,2,1]],[[1,2,1,0],[1,3,3,1],[0,3,1,1],[2,2,2,1]],[[1,2,1,0],[1,3,3,1],[0,4,1,1],[1,2,2,1]],[[1,2,1,0],[1,3,4,1],[0,3,1,1],[1,2,2,1]],[[1,2,1,0],[1,4,3,1],[0,3,1,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,1],[0,3,1,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,2,1,0],[1,3,3,1],[0,3,0,2],[1,2,2,2]],[[1,2,1,0],[1,3,3,1],[0,3,0,2],[1,2,3,1]],[[1,2,1,0],[1,3,3,1],[0,3,0,2],[1,3,2,1]],[[1,2,1,0],[1,3,3,1],[0,3,0,2],[2,2,2,1]],[[1,2,1,0],[1,3,3,1],[0,3,0,3],[1,2,2,1]],[[1,2,1,0],[1,3,3,1],[0,4,0,2],[1,2,2,1]],[[1,2,1,0],[1,3,4,1],[0,3,0,2],[1,2,2,1]],[[1,2,1,0],[1,4,3,1],[0,3,0,2],[1,2,2,1]],[[1,3,1,0],[1,3,3,1],[0,3,0,2],[1,2,2,1]],[[2,2,1,0],[1,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,1,0],[1,3,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,1,0],[1,3,3,1],[0,2,4,2],[1,2,1,0]],[[1,2,1,0],[1,3,4,1],[0,2,3,2],[1,2,1,0]],[[1,2,1,0],[1,4,3,1],[0,2,3,2],[1,2,1,0]],[[1,3,1,0],[1,3,3,1],[0,2,3,2],[1,2,1,0]],[[2,2,1,0],[1,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,2,1,0],[1,3,3,1],[0,2,3,2],[1,2,0,2]],[[1,2,1,0],[1,3,3,1],[0,2,3,3],[1,2,0,1]],[[1,2,1,0],[1,3,3,1],[0,2,4,2],[1,2,0,1]],[[1,2,1,0],[1,3,4,1],[0,2,3,2],[1,2,0,1]],[[1,2,1,0],[1,4,3,1],[0,2,3,2],[1,2,0,1]],[[1,3,1,0],[1,3,3,1],[0,2,3,2],[1,2,0,1]],[[2,2,1,0],[1,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,2,1,0],[1,3,3,1],[0,2,3,2],[1,1,3,0]],[[1,2,1,0],[1,3,3,1],[0,2,3,3],[1,1,2,0]],[[1,2,1,0],[1,3,3,1],[0,2,4,2],[1,1,2,0]],[[1,2,1,0],[1,3,4,1],[0,2,3,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,1],[0,2,3,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,1],[0,2,3,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,1],[0,2,3,2],[1,1,1,2]],[[1,2,1,0],[1,3,3,1],[0,2,3,3],[1,1,1,1]],[[1,2,1,0],[1,3,3,1],[0,2,4,2],[1,1,1,1]],[[1,2,1,0],[1,3,4,1],[0,2,3,2],[1,1,1,1]],[[1,2,1,0],[1,4,3,1],[0,2,3,2],[1,1,1,1]],[[1,3,1,0],[1,3,3,1],[0,2,3,2],[1,1,1,1]],[[2,2,1,0],[1,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,1],[0,2,3,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,1],[0,2,3,3],[1,0,2,1]],[[1,2,1,0],[1,3,3,1],[0,2,4,2],[1,0,2,1]],[[1,2,1,0],[1,3,4,1],[0,2,3,2],[1,0,2,1]],[[1,2,1,0],[1,4,3,1],[0,2,3,2],[1,0,2,1]],[[1,3,1,0],[1,3,3,1],[0,2,3,2],[1,0,2,1]],[[2,2,1,0],[1,3,3,1],[0,2,3,2],[1,0,2,1]],[[1,2,1,0],[1,3,3,1],[0,2,4,1],[1,2,1,1]],[[1,2,1,0],[1,3,4,1],[0,2,3,1],[1,2,1,1]],[[1,2,1,0],[1,4,3,1],[0,2,3,1],[1,2,1,1]],[[1,3,1,0],[1,3,3,1],[0,2,3,1],[1,2,1,1]],[[2,2,1,0],[1,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,1,0],[1,3,3,1],[0,2,3,1],[1,1,2,2]],[[1,2,1,0],[1,3,3,1],[0,2,3,1],[1,1,3,1]],[[1,2,1,0],[1,3,3,1],[0,2,4,1],[1,1,2,1]],[[1,2,1,0],[1,3,4,1],[0,2,3,1],[1,1,2,1]],[[1,2,1,0],[1,4,3,1],[0,2,3,1],[1,1,2,1]],[[1,3,1,0],[1,3,3,1],[0,2,3,1],[1,1,2,1]],[[2,2,1,0],[1,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,2,1,0],[1,3,3,1],[0,2,2,2],[1,1,2,2]],[[1,2,1,0],[1,3,3,1],[0,2,2,2],[1,1,3,1]],[[1,2,1,0],[1,3,3,1],[0,2,2,3],[1,1,2,1]],[[1,2,1,0],[1,3,3,1],[0,1,3,2],[1,2,3,0]],[[1,2,1,0],[1,3,3,1],[0,1,3,2],[1,3,2,0]],[[1,2,1,0],[1,3,3,1],[0,1,3,2],[2,2,2,0]],[[1,2,1,0],[1,3,3,1],[0,1,3,3],[1,2,2,0]],[[1,2,1,0],[1,3,3,1],[0,1,4,2],[1,2,2,0]],[[1,2,1,0],[1,3,4,1],[0,1,3,2],[1,2,2,0]],[[1,2,1,0],[1,4,3,1],[0,1,3,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,1],[0,1,3,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,1],[0,1,3,2],[1,2,1,2]],[[1,2,1,0],[1,3,3,1],[0,1,3,3],[1,2,1,1]],[[1,2,1,0],[1,3,3,1],[0,1,4,2],[1,2,1,1]],[[1,2,1,0],[1,3,4,1],[0,1,3,2],[1,2,1,1]],[[1,2,1,0],[1,4,3,1],[0,1,3,2],[1,2,1,1]],[[1,3,1,0],[1,3,3,1],[0,1,3,2],[1,2,1,1]],[[2,2,1,0],[1,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,2,1,0],[1,3,3,1],[0,1,3,1],[1,2,2,2]],[[1,2,1,0],[1,3,3,1],[0,1,3,1],[1,2,3,1]],[[1,2,1,0],[1,3,3,1],[0,1,3,1],[1,3,2,1]],[[1,2,1,0],[1,3,3,1],[0,1,3,1],[2,2,2,1]],[[1,2,1,0],[1,3,3,1],[0,1,4,1],[1,2,2,1]],[[1,2,1,0],[1,3,4,1],[0,1,3,1],[1,2,2,1]],[[1,2,1,0],[1,4,3,1],[0,1,3,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,1],[0,1,3,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,2,1,0],[1,3,3,1],[0,1,2,2],[1,2,2,2]],[[1,2,1,0],[1,3,3,1],[0,1,2,2],[1,2,3,1]],[[1,2,1,0],[1,3,3,1],[0,1,2,2],[1,3,2,1]],[[1,2,1,0],[1,3,3,1],[0,1,2,2],[2,2,2,1]],[[1,2,1,0],[1,3,3,1],[0,1,2,3],[1,2,2,1]],[[1,2,1,0],[1,3,3,1],[0,0,3,2],[1,2,2,2]],[[1,2,1,0],[1,3,3,1],[0,0,3,2],[1,2,3,1]],[[1,2,1,0],[1,3,3,1],[0,0,3,3],[1,2,2,1]],[[1,2,1,0],[1,4,3,0],[2,3,3,2],[1,0,1,0]],[[1,3,1,0],[1,3,3,0],[2,3,3,2],[1,0,1,0]],[[2,2,1,0],[1,3,3,0],[2,3,3,2],[1,0,1,0]],[[1,2,1,0],[1,4,3,0],[2,3,3,2],[1,0,0,1]],[[1,3,1,0],[1,3,3,0],[2,3,3,2],[1,0,0,1]],[[2,2,1,0],[1,3,3,0],[2,3,3,2],[1,0,0,1]],[[1,2,1,0],[1,4,3,0],[2,3,3,1],[1,0,1,1]],[[1,3,1,0],[1,3,3,0],[2,3,3,1],[1,0,1,1]],[[2,2,1,0],[1,3,3,0],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,1,3,0],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[2,1,3,0],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[2,1,3,0],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[2,1,4,0],[1,2,3,1],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[2,1,3,0],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[2,1,3,0],[1,2,3,1],[1,2,2,2]],[[1,1,1,1],[2,1,4,0],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[2,1,3,0],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[2,1,3,0],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[2,1,3,0],[1,2,3,2],[1,2,1,2]],[[1,1,1,1],[2,1,4,0],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,0],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,0],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[2,1,3,0],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[2,1,3,0],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[2,1,3,0],[1,2,3,2],[1,2,3,0]],[[1,1,1,1],[2,1,3,0],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,1,3,0],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[2,1,3,0],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,1,3,0],[1,3,2,1],[1,2,2,2]],[[1,1,1,1],[2,1,3,0],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[2,1,3,0],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[2,1,3,0],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,0],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,1,3,0],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,1,3,0],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[2,1,3,0],[1,4,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,0],[2,2,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,0],[1,3,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,0],[1,2,3,1]],[[1,1,1,1],[2,1,4,0],[1,3,3,1],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[2,1,4,0],[1,3,3,1],[1,2,1,1]],[[1,1,1,1],[2,1,3,0],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[2,1,3,0],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,1],[1,3,1,1]],[[1,1,1,1],[2,1,4,0],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,1,3,0],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[2,1,3,0],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,2],[1,1,1,2]],[[1,1,1,1],[2,1,4,0],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,1,3,0],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[2,1,3,0],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[2,1,3,0],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[2,1,3,0],[1,3,3,2],[1,1,3,0]],[[1,1,1,1],[2,1,4,0],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,1,3,0],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[2,1,3,0],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,1,3,0],[1,3,3,2],[1,2,0,2]],[[1,1,1,1],[2,1,4,0],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,1,3,0],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[2,1,3,0],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[2,1,3,0],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[2,1,3,0],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,1,3,0],[1,3,3,2],[1,3,1,0]],[[2,1,1,1],[2,1,3,0],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[3,1,3,0],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[2,1,3,0],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[2,1,3,0],[2,1,2,2],[1,2,2,2]],[[2,1,1,1],[2,1,3,0],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[3,1,3,0],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,1,4,0],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[2,1,3,0],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[2,1,3,0],[2,1,3,1],[1,2,2,2]],[[1,1,1,1],[2,1,4,0],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[2,1,3,0],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[2,1,3,0],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[2,1,3,0],[2,1,3,2],[1,2,1,2]],[[2,1,1,1],[2,1,3,0],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[3,1,3,0],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,1,4,0],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,0],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,0],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,0],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[2,1,3,0],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[2,1,3,0],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[2,1,3,0],[2,1,3,2],[1,2,3,0]],[[2,1,1,1],[2,1,3,0],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[3,1,3,0],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[2,1,3,0],[2,2,1,2],[1,2,2,2]],[[2,1,1,1],[2,1,3,0],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[3,1,3,0],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[2,1,3,0],[2,2,2,1],[1,2,2,2]],[[1,1,1,1],[2,1,3,0],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[2,1,3,0],[2,2,2,2],[0,2,2,2]],[[2,1,1,1],[2,1,3,0],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[3,1,3,0],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,0],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,0],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[2,1,3,0],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[2,1,3,0],[2,2,2,2],[1,2,3,0]],[[2,1,1,1],[2,1,3,0],[2,2,3,0],[1,2,2,1]],[[1,1,1,1],[3,1,3,0],[2,2,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[3,2,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,0],[2,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,0],[1,3,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,0],[1,2,3,1]],[[1,1,1,1],[2,1,4,0],[2,2,3,1],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,1],[0,2,2,2]],[[2,1,1,1],[2,1,3,0],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[3,1,3,0],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,1,3,0],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,1],[1,3,1,1]],[[1,1,1,1],[2,1,4,0],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[2,1,3,0],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,2],[0,2,1,2]],[[1,1,1,1],[2,1,4,0],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[2,1,3,0],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[2,1,3,0],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[2,1,3,0],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[2,1,3,0],[2,2,3,2],[0,2,3,0]],[[2,1,1,1],[2,1,3,0],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[3,1,3,0],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,1,3,0],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[2,1,3,0],[2,2,3,2],[1,3,0,1]],[[2,1,1,1],[2,1,3,0],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[3,1,3,0],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,1,3,0],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,1,3,0],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[2,1,3,0],[2,2,3,2],[1,3,1,0]],[[2,1,1,1],[2,1,3,0],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[3,1,3,0],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[2,1,3,0],[2,3,1,2],[0,2,2,2]],[[2,1,1,1],[2,1,3,0],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[3,1,3,0],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,1,2],[2,1,2,1]],[[2,1,1,1],[2,1,3,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[3,1,3,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[2,1,3,0],[2,3,2,1],[0,2,2,2]],[[2,1,1,1],[2,1,3,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[3,1,3,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,2,1],[2,1,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[2,1,3,0],[2,3,2,2],[0,1,2,2]],[[2,1,1,1],[2,1,3,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[3,1,3,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,1,3,0],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,1,3,0],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[2,1,3,0],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[2,1,3,0],[2,3,2,2],[0,2,3,0]],[[1,1,1,1],[2,1,3,0],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[2,1,3,0],[2,3,2,2],[1,0,2,2]],[[2,1,1,1],[2,1,3,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[3,1,3,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,1,3,0],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,1,3,0],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[2,1,3,0],[2,3,2,2],[2,1,2,0]],[[2,1,1,1],[2,1,3,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,1],[3,1,3,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[3,3,3,0],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,4,3,0],[0,2,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,0],[0,3,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,0],[0,2,3,1]],[[2,1,1,1],[2,1,3,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,1],[3,1,3,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[3,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[2,4,3,0],[1,1,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,0],[2,1,2,1]],[[2,1,1,1],[2,1,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[3,1,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,1,4,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,1,3,0],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,1,3,0],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,1],[0,1,2,2]],[[2,1,1,1],[2,1,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[3,1,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,1,4,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,1,3,0],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,1,3,0],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[2,1,3,0],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,1],[0,3,1,1]],[[2,1,1,1],[2,1,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[3,1,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,1,4,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,1,3,0],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,1,3,0],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,1],[1,0,2,2]],[[2,1,1,1],[2,1,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[3,1,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,1,4,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,1,3,0],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,1,3,0],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,1,3,0],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,1],[2,1,1,1]],[[2,1,1,1],[2,1,3,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,1],[3,1,3,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,1,3,0],[3,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,1,3,0],[2,4,3,1],[1,2,0,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[1,4,3,0],[2,2,3,2],[1,2,0,0]],[[1,3,1,0],[1,3,3,0],[2,2,3,2],[1,2,0,0]],[[2,2,1,0],[1,3,3,0],[2,2,3,2],[1,2,0,0]],[[1,2,1,0],[1,4,3,0],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[2,1,4,0],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[0,0,2,2]],[[2,1,1,1],[2,1,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[3,1,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,1,4,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,1,3,0],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,1,3,0],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[2,1,3,0],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[0,1,1,2]],[[2,1,1,1],[2,1,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[3,1,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,1,4,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,1,3,0],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,1,3,0],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[2,1,3,0],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[2,1,3,0],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[0,1,3,0]],[[2,1,1,1],[2,1,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[3,1,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,1,4,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,1,3,0],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,1,3,0],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[2,1,3,0],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[0,2,0,2]],[[2,1,1,1],[2,1,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[3,1,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,1,4,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,1,3,0],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,1,3,0],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[2,1,3,0],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[2,1,3,0],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[0,3,1,0]],[[1,3,1,0],[1,3,3,0],[2,2,3,2],[1,1,1,0]],[[2,2,1,0],[1,3,3,0],[2,2,3,2],[1,1,1,0]],[[1,2,1,0],[1,4,3,0],[2,2,3,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,0],[2,2,3,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,0],[2,2,3,2],[1,1,0,1]],[[2,1,1,1],[2,1,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[3,1,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,1,4,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,1,3,0],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,1,3,0],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[2,1,3,0],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[1,0,1,2]],[[2,1,1,1],[2,1,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[3,1,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,1,4,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,1,3,0],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,1,3,0],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[2,1,3,0],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[2,1,3,0],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[1,0,3,0]],[[2,1,1,1],[2,1,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[3,1,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,1,4,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,1,3,0],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,1,3,0],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[2,1,3,0],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[1,1,0,2]],[[2,1,1,1],[2,1,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[3,1,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,1,4,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,1,3,0],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,1,3,0],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[2,1,3,0],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[2,1,3,0],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[1,4,3,0],[2,2,3,2],[1,0,2,0]],[[1,3,1,0],[1,3,3,0],[2,2,3,2],[1,0,2,0]],[[2,2,1,0],[1,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,2,1,0],[1,4,3,0],[2,2,3,2],[1,0,1,1]],[[1,3,1,0],[1,3,3,0],[2,2,3,2],[1,0,1,1]],[[2,2,1,0],[1,3,3,0],[2,2,3,2],[1,0,1,1]],[[2,1,1,1],[2,1,3,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[3,1,3,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,1,3,0],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,1,3,0],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[2,1,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[1,4,3,0],[2,2,3,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,0],[2,2,3,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,0],[2,2,3,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,0],[2,2,3,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,0],[2,2,3,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,0],[2,2,3,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,0],[2,2,3,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,0],[2,2,3,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,0],[2,2,3,2],[0,1,2,0]],[[1,2,1,0],[1,4,3,0],[2,2,3,2],[0,1,1,1]],[[1,3,1,0],[1,3,3,0],[2,2,3,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,0],[2,2,3,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,0],[2,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,1,4,1],[1,2,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[1,2,4,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[1,2,3,0],[2,2,2,1]],[[1,1,1,1],[2,1,3,1],[1,2,3,0],[1,3,2,1]],[[1,1,1,1],[2,1,3,1],[1,2,3,0],[1,2,3,1]],[[1,1,1,1],[2,1,3,1],[1,2,3,0],[1,2,2,2]],[[1,1,1,1],[2,1,4,1],[1,2,3,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[1,2,4,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[1,2,3,1],[2,2,2,0]],[[1,1,1,1],[2,1,3,1],[1,2,3,1],[1,3,2,0]],[[1,1,1,1],[2,1,3,1],[1,2,3,1],[1,2,3,0]],[[1,3,1,0],[1,3,3,0],[2,2,3,1],[1,2,0,1]],[[2,2,1,0],[1,3,3,0],[2,2,3,1],[1,2,0,1]],[[1,2,1,0],[1,4,3,0],[2,2,3,1],[1,1,1,1]],[[1,3,1,0],[1,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,1,3,1],[1,4,2,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[1,3,2,0],[2,2,2,1]],[[1,1,1,1],[2,1,3,1],[1,3,2,0],[1,3,2,1]],[[1,1,1,1],[2,1,3,1],[1,3,2,0],[1,2,3,1]],[[1,1,1,1],[2,1,3,1],[1,3,2,0],[1,2,2,2]],[[1,1,1,1],[2,1,3,1],[1,4,2,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[1,3,2,1],[2,2,2,0]],[[1,1,1,1],[2,1,3,1],[1,3,2,1],[1,3,2,0]],[[1,1,1,1],[2,1,3,1],[1,3,2,1],[1,2,3,0]],[[2,2,1,0],[1,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,2,1,0],[1,4,3,0],[2,2,3,1],[1,0,2,1]],[[1,3,1,0],[1,3,3,0],[2,2,3,1],[1,0,2,1]],[[2,2,1,0],[1,3,3,0],[2,2,3,1],[1,0,2,1]],[[1,1,1,1],[2,1,4,1],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,1,3,1],[1,4,3,0],[1,1,2,1]],[[1,1,1,1],[2,1,3,1],[1,3,4,0],[1,1,2,1]],[[1,1,1,1],[2,1,3,1],[1,3,3,0],[1,1,3,1]],[[1,1,1,1],[2,1,3,1],[1,3,3,0],[1,1,2,2]],[[1,1,1,1],[2,1,4,1],[1,3,3,0],[1,2,1,1]],[[1,1,1,1],[2,1,3,1],[1,4,3,0],[1,2,1,1]],[[1,1,1,1],[2,1,3,1],[1,3,4,0],[1,2,1,1]],[[1,1,1,1],[2,1,3,1],[1,3,3,0],[2,2,1,1]],[[1,1,1,1],[2,1,3,1],[1,3,3,0],[1,3,1,1]],[[1,1,1,1],[2,1,4,1],[1,3,3,1],[1,1,2,0]],[[1,1,1,1],[2,1,3,1],[1,4,3,1],[1,1,2,0]],[[1,1,1,1],[2,1,3,1],[1,3,4,1],[1,1,2,0]],[[1,1,1,1],[2,1,3,1],[1,3,3,1],[1,1,3,0]],[[1,1,1,1],[2,1,4,1],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,1,3,1],[1,4,3,1],[1,2,0,1]],[[1,1,1,1],[2,1,3,1],[1,3,4,1],[1,2,0,1]],[[1,1,1,1],[2,1,3,1],[1,3,3,1],[2,2,0,1]],[[1,1,1,1],[2,1,3,1],[1,3,3,1],[1,3,0,1]],[[1,1,1,1],[2,1,4,1],[1,3,3,1],[1,2,1,0]],[[1,1,1,1],[2,1,3,1],[1,4,3,1],[1,2,1,0]],[[1,1,1,1],[2,1,3,1],[1,3,4,1],[1,2,1,0]],[[1,1,1,1],[2,1,3,1],[1,3,3,1],[2,2,1,0]],[[1,1,1,1],[2,1,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[1,4,3,0],[2,2,3,1],[0,2,1,1]],[[1,3,1,0],[1,3,3,0],[2,2,3,1],[0,2,1,1]],[[2,2,1,0],[1,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[1,4,3,0],[2,2,3,1],[0,1,2,1]],[[1,3,1,0],[1,3,3,0],[2,2,3,1],[0,1,2,1]],[[2,2,1,0],[1,3,3,0],[2,2,3,1],[0,1,2,1]],[[1,2,1,0],[1,4,3,0],[2,2,3,0],[1,1,2,1]],[[1,3,1,0],[1,3,3,0],[2,2,3,0],[1,1,2,1]],[[2,2,1,0],[1,3,3,0],[2,2,3,0],[1,1,2,1]],[[1,2,1,0],[1,4,3,0],[2,2,3,0],[0,2,2,1]],[[1,3,1,0],[1,3,3,0],[2,2,3,0],[0,2,2,1]],[[2,2,1,0],[1,3,3,0],[2,2,3,0],[0,2,2,1]],[[1,2,1,0],[1,4,3,0],[2,2,2,2],[1,1,2,0]],[[2,1,1,1],[2,1,3,1],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[3,1,3,1],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[3,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,0,2,3],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,0,2,2],[2,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,0,2,2],[1,3,2,1]],[[1,1,1,1],[2,1,3,1],[2,0,2,2],[1,2,3,1]],[[1,1,1,1],[2,1,3,1],[2,0,2,2],[1,2,2,2]],[[2,1,1,1],[2,1,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[3,1,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,1,4,1],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[3,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,0,4,1],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,0,3,1],[2,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,0,3,1],[1,3,2,1]],[[1,1,1,1],[2,1,3,1],[2,0,3,1],[1,2,3,1]],[[1,1,1,1],[2,1,3,1],[2,0,3,1],[1,2,2,2]],[[1,1,1,1],[2,1,4,1],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[2,1,3,1],[2,0,4,2],[1,2,1,1]],[[1,1,1,1],[2,1,3,1],[2,0,3,3],[1,2,1,1]],[[1,1,1,1],[2,1,3,1],[2,0,3,2],[1,2,1,2]],[[2,1,1,1],[2,1,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[3,1,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,1,4,1],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[3,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,0,4,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,0,3,3],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,0,3,2],[2,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,0,3,2],[1,3,2,0]],[[1,1,1,1],[2,1,3,1],[2,0,3,2],[1,2,3,0]],[[2,1,1,1],[2,1,3,1],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[3,1,3,1],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,4,1],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[3,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,1,4,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,1,3,0],[2,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,1,3,0],[1,3,2,1]],[[1,1,1,1],[2,1,3,1],[2,1,3,0],[1,2,3,1]],[[1,1,1,1],[2,1,3,1],[2,1,3,0],[1,2,2,2]],[[2,1,1,1],[2,1,3,1],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[3,1,3,1],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,1,4,1],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[3,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,1,4,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,1,3,1],[2,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,1,3,1],[1,3,2,0]],[[1,1,1,1],[2,1,3,1],[2,1,3,1],[1,2,3,0]],[[1,3,1,0],[1,3,3,0],[2,2,2,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,0],[2,2,2,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,0],[2,2,2,2],[0,2,2,0]],[[1,3,1,0],[1,3,3,0],[2,2,2,2],[0,2,2,0]],[[2,2,1,0],[1,3,3,0],[2,2,2,2],[0,2,2,0]],[[2,1,1,1],[2,1,3,1],[2,2,2,0],[1,2,2,1]],[[1,1,1,1],[3,1,3,1],[2,2,2,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[3,2,2,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,2,2,0],[2,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,2,2,0],[1,3,2,1]],[[1,1,1,1],[2,1,3,1],[2,2,2,0],[1,2,3,1]],[[1,1,1,1],[2,1,3,1],[2,2,2,0],[1,2,2,2]],[[2,1,1,1],[2,1,3,1],[2,2,2,1],[1,2,2,0]],[[1,1,1,1],[3,1,3,1],[2,2,2,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[3,2,2,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,2,2,1],[2,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,2,2,1],[1,3,2,0]],[[1,1,1,1],[2,1,3,1],[2,2,2,1],[1,2,3,0]],[[1,2,1,0],[1,4,3,0],[2,2,2,1],[1,1,2,1]],[[1,3,1,0],[1,3,3,0],[2,2,2,1],[1,1,2,1]],[[1,1,1,1],[2,1,4,1],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,2,4,0],[0,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,2,3,0],[0,3,2,1]],[[1,1,1,1],[2,1,3,1],[2,2,3,0],[0,2,3,1]],[[1,1,1,1],[2,1,3,1],[2,2,3,0],[0,2,2,2]],[[2,1,1,1],[2,1,3,1],[2,2,3,0],[1,2,1,1]],[[1,1,1,1],[3,1,3,1],[2,2,3,0],[1,2,1,1]],[[1,1,1,1],[2,1,3,1],[3,2,3,0],[1,2,1,1]],[[1,1,1,1],[2,1,3,1],[2,2,3,0],[2,2,1,1]],[[1,1,1,1],[2,1,3,1],[2,2,3,0],[1,3,1,1]],[[1,1,1,1],[2,1,4,1],[2,2,3,1],[0,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,2,4,1],[0,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,2,3,1],[0,3,2,0]],[[1,1,1,1],[2,1,3,1],[2,2,3,1],[0,2,3,0]],[[2,1,1,1],[2,1,3,1],[2,2,3,1],[1,2,0,1]],[[1,1,1,1],[3,1,3,1],[2,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,1,3,1],[3,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,1,3,1],[2,2,3,1],[2,2,0,1]],[[1,1,1,1],[2,1,3,1],[2,2,3,1],[1,3,0,1]],[[2,1,1,1],[2,1,3,1],[2,2,3,1],[1,2,1,0]],[[1,1,1,1],[3,1,3,1],[2,2,3,1],[1,2,1,0]],[[1,1,1,1],[2,1,3,1],[3,2,3,1],[1,2,1,0]],[[1,1,1,1],[2,1,3,1],[2,2,3,1],[2,2,1,0]],[[1,1,1,1],[2,1,3,1],[2,2,3,1],[1,3,1,0]],[[2,2,1,0],[1,3,3,0],[2,2,2,1],[1,1,2,1]],[[1,2,1,0],[1,4,3,0],[2,2,2,1],[0,2,2,1]],[[1,3,1,0],[1,3,3,0],[2,2,2,1],[0,2,2,1]],[[2,2,1,0],[1,3,3,0],[2,2,2,1],[0,2,2,1]],[[1,2,1,0],[1,4,3,0],[2,1,3,2],[1,2,1,0]],[[1,3,1,0],[1,3,3,0],[2,1,3,2],[1,2,1,0]],[[2,2,1,0],[1,3,3,0],[2,1,3,2],[1,2,1,0]],[[1,2,1,0],[1,4,3,0],[2,1,3,2],[1,2,0,1]],[[1,3,1,0],[1,3,3,0],[2,1,3,2],[1,2,0,1]],[[2,2,1,0],[1,3,3,0],[2,1,3,2],[1,2,0,1]],[[1,2,1,0],[1,3,3,0],[2,1,3,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,0],[2,1,3,2],[1,0,3,1]],[[1,2,1,0],[1,3,3,0],[2,1,4,2],[1,0,2,1]],[[1,2,1,0],[1,3,3,0],[2,1,3,2],[0,1,2,2]],[[1,2,1,0],[1,3,3,0],[2,1,3,2],[0,1,3,1]],[[1,2,1,0],[1,3,3,0],[2,1,4,2],[0,1,2,1]],[[1,2,1,0],[1,4,3,0],[2,1,3,1],[1,2,1,1]],[[1,3,1,0],[1,3,3,0],[2,1,3,1],[1,2,1,1]],[[2,2,1,0],[1,3,3,0],[2,1,3,1],[1,2,1,1]],[[1,2,1,0],[1,4,3,0],[2,1,3,0],[1,2,2,1]],[[1,3,1,0],[1,3,3,0],[2,1,3,0],[1,2,2,1]],[[2,2,1,0],[1,3,3,0],[2,1,3,0],[1,2,2,1]],[[2,1,1,1],[2,1,3,1],[2,3,2,0],[0,2,2,1]],[[1,1,1,1],[3,1,3,1],[2,3,2,0],[0,2,2,1]],[[1,1,1,1],[2,1,3,1],[3,3,2,0],[0,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,4,2,0],[0,2,2,1]],[[1,1,1,1],[2,1,3,1],[2,3,2,0],[0,3,2,1]],[[1,1,1,1],[2,1,3,1],[2,3,2,0],[0,2,3,1]],[[1,1,1,1],[2,1,3,1],[2,3,2,0],[0,2,2,2]],[[2,1,1,1],[2,1,3,1],[2,3,2,0],[1,1,2,1]],[[1,1,1,1],[3,1,3,1],[2,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,1,3,1],[3,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,1,3,1],[2,4,2,0],[1,1,2,1]],[[1,1,1,1],[2,1,3,1],[2,3,2,0],[2,1,2,1]],[[2,1,1,1],[2,1,3,1],[2,3,2,1],[0,2,2,0]],[[1,1,1,1],[3,1,3,1],[2,3,2,1],[0,2,2,0]],[[1,1,1,1],[2,1,3,1],[3,3,2,1],[0,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,4,2,1],[0,2,2,0]],[[1,1,1,1],[2,1,3,1],[2,3,2,1],[0,3,2,0]],[[1,1,1,1],[2,1,3,1],[2,3,2,1],[0,2,3,0]],[[2,1,1,1],[2,1,3,1],[2,3,2,1],[1,1,2,0]],[[1,1,1,1],[3,1,3,1],[2,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,1,3,1],[3,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,1,3,1],[2,4,2,1],[1,1,2,0]],[[1,1,1,1],[2,1,3,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[1,4,3,0],[2,1,2,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,0],[2,1,2,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,0],[2,1,2,2],[1,2,2,0]],[[1,2,1,0],[1,4,3,0],[2,1,2,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,0],[2,1,2,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,0],[2,1,2,1],[1,2,2,1]],[[1,2,1,0],[1,4,3,0],[2,0,3,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,0],[2,0,3,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,0],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,0],[2,0,3,2],[1,1,2,2]],[[1,2,1,0],[1,3,3,0],[2,0,3,2],[1,1,3,1]],[[1,2,1,0],[1,3,3,0],[2,0,4,2],[1,1,2,1]],[[1,2,1,0],[1,3,3,0],[2,0,3,2],[0,2,2,2]],[[1,2,1,0],[1,3,3,0],[2,0,3,2],[0,2,3,1]],[[1,2,1,0],[1,3,3,0],[2,0,3,2],[0,3,2,1]],[[1,2,1,0],[1,3,3,0],[2,0,4,2],[0,2,2,1]],[[1,2,1,0],[1,4,3,0],[2,0,3,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,0],[2,0,3,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,0],[2,0,3,1],[1,2,2,1]],[[2,1,1,1],[2,1,3,1],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[3,1,3,1],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,1,4,1],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,1,3,1],[3,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,1,3,1],[2,4,3,0],[0,1,2,1]],[[1,1,1,1],[2,1,3,1],[2,3,4,0],[0,1,2,1]],[[1,1,1,1],[2,1,3,1],[2,3,3,0],[0,1,3,1]],[[1,1,1,1],[2,1,3,1],[2,3,3,0],[0,1,2,2]],[[2,1,1,1],[2,1,3,1],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[3,1,3,1],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,1,4,1],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,1,3,1],[3,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,1,3,1],[2,4,3,0],[0,2,1,1]],[[1,1,1,1],[2,1,3,1],[2,3,4,0],[0,2,1,1]],[[1,1,1,1],[2,1,3,1],[2,3,3,0],[0,3,1,1]],[[2,1,1,1],[2,1,3,1],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[3,1,3,1],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,1,4,1],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,1,3,1],[3,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,1,3,1],[2,4,3,0],[1,0,2,1]],[[1,1,1,1],[2,1,3,1],[2,3,4,0],[1,0,2,1]],[[1,1,1,1],[2,1,3,1],[2,3,3,0],[2,0,2,1]],[[1,1,1,1],[2,1,3,1],[2,3,3,0],[1,0,3,1]],[[1,1,1,1],[2,1,3,1],[2,3,3,0],[1,0,2,2]],[[2,1,1,1],[2,1,3,1],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[3,1,3,1],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,1,4,1],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,1,3,1],[3,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,1,3,1],[2,4,3,0],[1,1,1,1]],[[1,1,1,1],[2,1,3,1],[2,3,4,0],[1,1,1,1]],[[1,1,1,1],[2,1,3,1],[2,3,3,0],[2,1,1,1]],[[2,1,1,1],[2,1,3,1],[2,3,3,0],[1,2,0,1]],[[1,1,1,1],[3,1,3,1],[2,3,3,0],[1,2,0,1]],[[1,1,1,1],[2,1,3,1],[3,3,3,0],[1,2,0,1]],[[1,1,1,1],[2,1,3,1],[2,4,3,0],[1,2,0,1]],[[1,1,1,1],[2,1,3,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,2],[1,2,0,0]],[[1,2,1,0],[1,4,3,0],[1,3,3,2],[1,2,0,0]],[[1,3,1,0],[1,3,3,0],[1,3,3,2],[1,2,0,0]],[[2,2,1,0],[1,3,3,0],[1,3,3,2],[1,2,0,0]],[[2,1,1,1],[2,1,3,1],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[3,1,3,1],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,1,4,1],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,1,3,1],[3,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,1,3,1],[2,4,3,1],[0,1,1,1]],[[1,1,1,1],[2,1,3,1],[2,3,4,1],[0,1,1,1]],[[2,1,1,1],[2,1,3,1],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[3,1,3,1],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,1,4,1],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,1,3,1],[3,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,1,3,1],[2,4,3,1],[0,1,2,0]],[[1,1,1,1],[2,1,3,1],[2,3,4,1],[0,1,2,0]],[[1,1,1,1],[2,1,3,1],[2,3,3,1],[0,1,3,0]],[[2,1,1,1],[2,1,3,1],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[3,1,3,1],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,1,4,1],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,1,3,1],[3,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,1,3,1],[2,4,3,1],[0,2,0,1]],[[1,1,1,1],[2,1,3,1],[2,3,4,1],[0,2,0,1]],[[1,1,1,1],[2,1,3,1],[2,3,3,1],[0,3,0,1]],[[2,1,1,1],[2,1,3,1],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[3,1,3,1],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,1,4,1],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,1,3,1],[3,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,1,3,1],[2,4,3,1],[0,2,1,0]],[[1,1,1,1],[2,1,3,1],[2,3,4,1],[0,2,1,0]],[[1,1,1,1],[2,1,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[1,3,3,0],[1,3,4,2],[1,1,1,0]],[[1,2,1,0],[1,3,3,0],[1,4,3,2],[1,1,1,0]],[[2,1,1,1],[2,1,3,1],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[3,1,3,1],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,1,4,1],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,1,3,1],[3,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,1,3,1],[2,4,3,1],[1,0,1,1]],[[1,1,1,1],[2,1,3,1],[2,3,4,1],[1,0,1,1]],[[1,1,1,1],[2,1,3,1],[2,3,3,1],[2,0,1,1]],[[2,1,1,1],[2,1,3,1],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[3,1,3,1],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,1,4,1],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,1,3,1],[3,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,1,3,1],[2,4,3,1],[1,0,2,0]],[[1,1,1,1],[2,1,3,1],[2,3,4,1],[1,0,2,0]],[[1,1,1,1],[2,1,3,1],[2,3,3,1],[2,0,2,0]],[[1,1,1,1],[2,1,3,1],[2,3,3,1],[1,0,3,0]],[[2,1,1,1],[2,1,3,1],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[3,1,3,1],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,1,4,1],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,1,3,1],[3,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,1,3,1],[2,4,3,1],[1,1,0,1]],[[1,1,1,1],[2,1,3,1],[2,3,4,1],[1,1,0,1]],[[1,1,1,1],[2,1,3,1],[2,3,3,1],[2,1,0,1]],[[2,1,1,1],[2,1,3,1],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[3,1,3,1],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,1,4,1],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,1,3,1],[3,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,1,3,1],[2,4,3,1],[1,1,1,0]],[[1,1,1,1],[2,1,3,1],[2,3,4,1],[1,1,1,0]],[[1,1,1,1],[2,1,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,1,0],[1,4,3,0],[1,3,3,2],[1,1,1,0]],[[1,3,1,0],[1,3,3,0],[1,3,3,2],[1,1,1,0]],[[2,2,1,0],[1,3,3,0],[1,3,3,2],[1,1,1,0]],[[1,2,1,0],[1,3,3,0],[1,3,4,2],[1,1,0,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,2],[1,1,0,1]],[[1,2,1,0],[1,4,3,0],[1,3,3,2],[1,1,0,1]],[[1,3,1,0],[1,3,3,0],[1,3,3,2],[1,1,0,1]],[[2,2,1,0],[1,3,3,0],[1,3,3,2],[1,1,0,1]],[[2,1,1,1],[2,1,3,1],[2,3,3,1],[1,2,0,0]],[[1,1,1,1],[3,1,3,1],[2,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,1,3,1],[3,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,1,3,1],[2,4,3,1],[1,2,0,0]],[[1,1,1,1],[2,1,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[1,3,3,0],[1,3,3,2],[1,0,3,0]],[[1,2,1,0],[1,3,3,0],[1,3,4,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,0],[1,4,3,2],[1,0,2,0]],[[1,2,1,0],[1,4,3,0],[1,3,3,2],[1,0,2,0]],[[1,3,1,0],[1,3,3,0],[1,3,3,2],[1,0,2,0]],[[2,2,1,0],[1,3,3,0],[1,3,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,3,0],[1,3,4,2],[1,0,1,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,2],[1,0,1,1]],[[1,2,1,0],[1,4,3,0],[1,3,3,2],[1,0,1,1]],[[1,3,1,0],[1,3,3,0],[1,3,3,2],[1,0,1,1]],[[2,2,1,0],[1,3,3,0],[1,3,3,2],[1,0,1,1]],[[1,2,1,0],[1,3,3,0],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[1,3,3,0],[1,3,4,2],[0,2,1,0]],[[1,2,1,0],[1,3,3,0],[1,4,3,2],[0,2,1,0]],[[1,2,1,0],[1,4,3,0],[1,3,3,2],[0,2,1,0]],[[1,3,1,0],[1,3,3,0],[1,3,3,2],[0,2,1,0]],[[2,2,1,0],[1,3,3,0],[1,3,3,2],[0,2,1,0]],[[1,2,1,0],[1,3,3,0],[1,3,3,2],[0,3,0,1]],[[1,2,1,0],[1,3,3,0],[1,3,4,2],[0,2,0,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,2],[0,2,0,1]],[[1,2,1,0],[1,4,3,0],[1,3,3,2],[0,2,0,1]],[[1,3,1,0],[1,3,3,0],[1,3,3,2],[0,2,0,1]],[[2,2,1,0],[1,3,3,0],[1,3,3,2],[0,2,0,1]],[[1,2,1,0],[1,3,3,0],[1,3,3,2],[0,1,3,0]],[[1,2,1,0],[1,3,3,0],[1,3,4,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,0],[1,4,3,2],[0,1,2,0]],[[1,2,1,0],[1,4,3,0],[1,3,3,2],[0,1,2,0]],[[1,3,1,0],[1,3,3,0],[1,3,3,2],[0,1,2,0]],[[2,2,1,0],[1,3,3,0],[1,3,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,3,0],[1,3,4,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,2],[0,1,1,1]],[[1,2,1,0],[1,4,3,0],[1,3,3,2],[0,1,1,1]],[[1,3,1,0],[1,3,3,0],[1,3,3,2],[0,1,1,1]],[[2,2,1,0],[1,3,3,0],[1,3,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,1],[1,2,0,1]],[[1,2,1,0],[1,4,3,0],[1,3,3,1],[1,2,0,1]],[[1,3,1,0],[1,3,3,0],[1,3,3,1],[1,2,0,1]],[[2,2,1,0],[1,3,3,0],[1,3,3,1],[1,2,0,1]],[[1,2,1,0],[1,3,3,0],[1,3,4,1],[1,1,1,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,1],[1,1,1,1]],[[1,2,1,0],[1,4,3,0],[1,3,3,1],[1,1,1,1]],[[1,3,1,0],[1,3,3,0],[1,3,3,1],[1,1,1,1]],[[2,2,1,0],[1,3,3,0],[1,3,3,1],[1,1,1,1]],[[1,2,1,0],[1,3,3,0],[1,3,3,1],[1,0,2,2]],[[1,2,1,0],[1,3,3,0],[1,3,3,1],[1,0,3,1]],[[1,2,1,0],[1,3,3,0],[1,3,4,1],[1,0,2,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,1],[1,0,2,1]],[[1,2,1,0],[1,4,3,0],[1,3,3,1],[1,0,2,1]],[[1,3,1,0],[1,3,3,0],[1,3,3,1],[1,0,2,1]],[[2,2,1,0],[1,3,3,0],[1,3,3,1],[1,0,2,1]],[[1,2,1,0],[1,3,3,0],[1,3,3,1],[0,3,1,1]],[[1,2,1,0],[1,3,3,0],[1,3,4,1],[0,2,1,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,1],[0,2,1,1]],[[1,2,1,0],[1,4,3,0],[1,3,3,1],[0,2,1,1]],[[1,3,1,0],[1,3,3,0],[1,3,3,1],[0,2,1,1]],[[2,2,1,0],[1,3,3,0],[1,3,3,1],[0,2,1,1]],[[1,2,1,0],[1,3,3,0],[1,3,3,1],[0,1,2,2]],[[1,2,1,0],[1,3,3,0],[1,3,3,1],[0,1,3,1]],[[1,2,1,0],[1,3,3,0],[1,3,4,1],[0,1,2,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,1],[0,1,2,1]],[[1,2,1,0],[1,4,3,0],[1,3,3,1],[0,1,2,1]],[[1,3,1,0],[1,3,3,0],[1,3,3,1],[0,1,2,1]],[[2,2,1,0],[1,3,3,0],[1,3,3,1],[0,1,2,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,0],[1,1,2,1]],[[1,2,1,0],[1,4,3,0],[1,3,3,0],[1,1,2,1]],[[1,3,1,0],[1,3,3,0],[1,3,3,0],[1,1,2,1]],[[2,2,1,0],[1,3,3,0],[1,3,3,0],[1,1,2,1]],[[1,2,1,0],[1,3,3,0],[1,3,3,0],[0,2,3,1]],[[1,2,1,0],[1,3,3,0],[1,3,3,0],[0,3,2,1]],[[1,2,1,0],[1,3,3,0],[1,4,3,0],[0,2,2,1]],[[1,2,1,0],[1,4,3,0],[1,3,3,0],[0,2,2,1]],[[1,3,1,0],[1,3,3,0],[1,3,3,0],[0,2,2,1]],[[2,2,1,0],[1,3,3,0],[1,3,3,0],[0,2,2,1]],[[1,2,1,0],[1,3,3,0],[1,4,2,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,0],[1,3,2,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,0],[1,3,2,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,0],[1,3,2,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,0],[1,3,2,2],[0,2,3,0]],[[1,2,1,0],[1,3,3,0],[1,3,2,2],[0,3,2,0]],[[1,2,1,0],[1,3,3,0],[1,4,2,2],[0,2,2,0]],[[1,2,1,0],[1,4,3,0],[1,3,2,2],[0,2,2,0]],[[1,3,1,0],[1,3,3,0],[1,3,2,2],[0,2,2,0]],[[2,2,1,0],[1,3,3,0],[1,3,2,2],[0,2,2,0]],[[1,2,1,0],[1,3,3,0],[1,4,2,1],[1,1,2,1]],[[1,2,1,0],[1,4,3,0],[1,3,2,1],[1,1,2,1]],[[1,3,1,0],[1,3,3,0],[1,3,2,1],[1,1,2,1]],[[2,2,1,0],[1,3,3,0],[1,3,2,1],[1,1,2,1]],[[1,2,1,0],[1,3,3,0],[1,3,2,1],[0,2,2,2]],[[1,2,1,0],[1,3,3,0],[1,3,2,1],[0,2,3,1]],[[1,2,1,0],[1,3,3,0],[1,3,2,1],[0,3,2,1]],[[1,2,1,0],[1,3,3,0],[1,4,2,1],[0,2,2,1]],[[1,2,1,0],[1,4,3,0],[1,3,2,1],[0,2,2,1]],[[1,3,1,0],[1,3,3,0],[1,3,2,1],[0,2,2,1]],[[2,2,1,0],[1,3,3,0],[1,3,2,1],[0,2,2,1]],[[1,2,1,0],[1,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,1,0],[1,3,3,0],[1,2,3,2],[1,0,3,1]],[[1,2,1,0],[1,3,3,0],[1,2,4,2],[1,0,2,1]],[[1,2,1,0],[1,3,3,0],[1,2,3,2],[0,2,3,0]],[[1,2,1,0],[1,3,3,0],[1,2,3,2],[0,3,2,0]],[[1,2,1,0],[1,3,3,0],[1,2,4,2],[0,2,2,0]],[[1,2,1,0],[1,3,3,0],[1,2,3,2],[0,1,2,2]],[[1,2,1,0],[1,3,3,0],[1,2,3,2],[0,1,3,1]],[[1,2,1,0],[1,3,3,0],[1,2,4,2],[0,1,2,1]],[[1,2,1,0],[1,3,3,0],[1,2,3,1],[0,2,2,2]],[[1,2,1,0],[1,3,3,0],[1,2,3,1],[0,2,3,1]],[[1,2,1,0],[1,3,3,0],[1,2,3,1],[0,3,2,1]],[[1,2,1,0],[1,3,3,0],[1,2,4,1],[0,2,2,1]],[[1,2,1,0],[1,3,3,0],[1,1,3,2],[0,2,2,2]],[[1,2,1,0],[1,3,3,0],[1,1,3,2],[0,2,3,1]],[[1,2,1,0],[1,3,3,0],[1,1,3,2],[0,3,2,1]],[[1,2,1,0],[1,3,3,0],[1,1,4,2],[0,2,2,1]],[[1,2,1,0],[1,3,3,0],[1,0,3,2],[1,2,2,2]],[[1,2,1,0],[1,3,3,0],[1,0,3,2],[1,2,3,1]],[[1,2,1,0],[1,3,3,0],[1,0,3,2],[1,3,2,1]],[[1,2,1,0],[1,3,3,0],[1,0,3,2],[2,2,2,1]],[[1,2,1,0],[1,3,3,0],[1,0,4,2],[1,2,2,1]],[[1,2,1,0],[1,3,3,0],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,3,3,0],[0,3,3,2],[2,2,1,0]],[[1,2,1,0],[1,3,3,0],[0,3,4,2],[1,2,1,0]],[[1,2,1,0],[1,3,3,0],[0,4,3,2],[1,2,1,0]],[[1,2,1,0],[1,4,3,0],[0,3,3,2],[1,2,1,0]],[[1,3,1,0],[1,3,3,0],[0,3,3,2],[1,2,1,0]],[[2,2,1,0],[1,3,3,0],[0,3,3,2],[1,2,1,0]],[[1,2,1,0],[1,3,3,0],[0,3,3,2],[1,3,0,1]],[[1,2,1,0],[1,3,3,0],[0,3,3,2],[2,2,0,1]],[[1,2,1,0],[1,3,3,0],[0,3,4,2],[1,2,0,1]],[[1,2,1,0],[1,3,3,0],[0,4,3,2],[1,2,0,1]],[[1,2,1,0],[1,4,3,0],[0,3,3,2],[1,2,0,1]],[[1,3,1,0],[1,3,3,0],[0,3,3,2],[1,2,0,1]],[[2,2,1,0],[1,3,3,0],[0,3,3,2],[1,2,0,1]],[[1,2,1,0],[1,3,3,0],[0,3,3,2],[1,1,3,0]],[[1,2,1,0],[1,3,3,0],[0,3,4,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,0],[0,4,3,2],[1,1,2,0]],[[1,2,1,0],[1,4,3,0],[0,3,3,2],[1,1,2,0]],[[1,3,1,0],[1,3,3,0],[0,3,3,2],[1,1,2,0]],[[2,2,1,0],[1,3,3,0],[0,3,3,2],[1,1,2,0]],[[1,2,1,0],[1,3,3,0],[0,3,4,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,0],[0,4,3,2],[1,1,1,1]],[[1,2,1,0],[1,4,3,0],[0,3,3,2],[1,1,1,1]],[[1,3,1,0],[1,3,3,0],[0,3,3,2],[1,1,1,1]],[[2,2,1,0],[1,3,3,0],[0,3,3,2],[1,1,1,1]],[[1,2,1,0],[1,3,3,0],[0,3,3,2],[0,1,2,2]],[[1,2,1,0],[1,3,3,0],[0,3,3,2],[0,1,3,1]],[[1,2,1,0],[1,3,3,0],[0,3,4,2],[0,1,2,1]],[[1,2,1,0],[1,3,3,0],[0,3,3,1],[1,3,1,1]],[[1,2,1,0],[1,3,3,0],[0,3,3,1],[2,2,1,1]],[[1,2,1,0],[1,3,3,0],[0,3,4,1],[1,2,1,1]],[[1,2,1,0],[1,3,3,0],[0,4,3,1],[1,2,1,1]],[[1,2,1,0],[1,4,3,0],[0,3,3,1],[1,2,1,1]],[[1,3,1,0],[1,3,3,0],[0,3,3,1],[1,2,1,1]],[[2,2,1,0],[1,3,3,0],[0,3,3,1],[1,2,1,1]],[[1,2,1,0],[1,3,3,0],[0,3,3,1],[1,1,2,2]],[[1,2,1,0],[1,3,3,0],[0,3,3,1],[1,1,3,1]],[[1,2,1,0],[1,3,3,0],[0,3,4,1],[1,1,2,1]],[[1,2,1,0],[1,3,3,0],[0,4,3,1],[1,1,2,1]],[[1,2,1,0],[1,4,3,0],[0,3,3,1],[1,1,2,1]],[[1,3,1,0],[1,3,3,0],[0,3,3,1],[1,1,2,1]],[[2,2,1,0],[1,3,3,0],[0,3,3,1],[1,1,2,1]],[[1,2,1,0],[1,3,3,0],[0,3,3,0],[1,2,3,1]],[[1,2,1,0],[1,3,3,0],[0,3,3,0],[1,3,2,1]],[[1,2,1,0],[1,3,3,0],[0,3,3,0],[2,2,2,1]],[[1,2,1,0],[1,3,3,0],[0,4,3,0],[1,2,2,1]],[[1,2,1,0],[1,4,3,0],[0,3,3,0],[1,2,2,1]],[[1,3,1,0],[1,3,3,0],[0,3,3,0],[1,2,2,1]],[[2,2,1,0],[1,3,3,0],[0,3,3,0],[1,2,2,1]],[[1,2,1,0],[1,3,3,0],[0,3,2,2],[1,2,3,0]],[[1,2,1,0],[1,3,3,0],[0,3,2,2],[1,3,2,0]],[[1,2,1,0],[1,3,3,0],[0,3,2,2],[2,2,2,0]],[[1,2,1,0],[1,3,3,0],[0,4,2,2],[1,2,2,0]],[[1,2,1,0],[1,4,3,0],[0,3,2,2],[1,2,2,0]],[[1,3,1,0],[1,3,3,0],[0,3,2,2],[1,2,2,0]],[[2,2,1,0],[1,3,3,0],[0,3,2,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,0],[0,3,2,1],[1,2,2,2]],[[1,2,1,0],[1,3,3,0],[0,3,2,1],[1,2,3,1]],[[1,2,1,0],[1,3,3,0],[0,3,2,1],[1,3,2,1]],[[1,2,1,0],[1,3,3,0],[0,3,2,1],[2,2,2,1]],[[1,2,1,0],[1,3,3,0],[0,4,2,1],[1,2,2,1]],[[1,2,1,0],[1,4,3,0],[0,3,2,1],[1,2,2,1]],[[1,3,1,0],[1,3,3,0],[0,3,2,1],[1,2,2,1]],[[2,2,1,0],[1,3,3,0],[0,3,2,1],[1,2,2,1]],[[1,2,1,0],[1,3,3,0],[0,2,3,2],[1,2,3,0]],[[1,2,1,0],[1,3,3,0],[0,2,3,2],[1,3,2,0]],[[1,2,1,0],[1,3,3,0],[0,2,3,2],[2,2,2,0]],[[1,2,1,0],[1,3,3,0],[0,2,4,2],[1,2,2,0]],[[1,2,1,0],[1,3,3,0],[0,2,3,2],[1,1,2,2]],[[1,2,1,0],[1,3,3,0],[0,2,3,2],[1,1,3,1]],[[1,2,1,0],[1,3,3,0],[0,2,4,2],[1,1,2,1]],[[1,2,1,0],[1,3,3,0],[0,2,3,1],[1,2,2,2]],[[1,2,1,0],[1,3,3,0],[0,2,3,1],[1,2,3,1]],[[1,2,1,0],[1,3,3,0],[0,2,3,1],[1,3,2,1]],[[1,2,1,0],[1,3,3,0],[0,2,3,1],[2,2,2,1]],[[1,2,1,0],[1,3,3,0],[0,2,4,1],[1,2,2,1]],[[1,2,1,0],[1,3,3,0],[0,1,3,2],[1,2,2,2]],[[1,2,1,0],[1,3,3,0],[0,1,3,2],[1,2,3,1]],[[1,2,1,0],[1,3,3,0],[0,1,3,2],[1,3,2,1]],[[1,2,1,0],[1,3,3,0],[0,1,3,2],[2,2,2,1]],[[1,2,1,0],[1,3,3,0],[0,1,4,2],[1,2,2,1]],[[1,2,1,0],[1,4,2,2],[2,3,3,1],[1,0,1,0]],[[1,3,1,0],[1,3,2,2],[2,3,3,1],[1,0,1,0]],[[2,2,1,0],[1,3,2,2],[2,3,3,1],[1,0,1,0]],[[1,2,1,0],[1,4,2,2],[2,3,3,1],[1,0,0,1]],[[1,3,1,0],[1,3,2,2],[2,3,3,1],[1,0,0,1]],[[2,2,1,0],[1,3,2,2],[2,3,3,1],[1,0,0,1]],[[2,1,1,1],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,2],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[3,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,1,4,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,3],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,2],[3,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,2],[2,0,1,3],[1,2,2,1]],[[1,1,1,1],[2,1,3,2],[2,0,1,2],[2,2,2,1]],[[1,1,1,1],[2,1,3,2],[2,0,1,2],[1,3,2,1]],[[1,1,1,1],[2,1,3,2],[2,0,1,2],[1,2,3,1]],[[1,1,1,1],[2,1,3,2],[2,0,1,2],[1,2,2,2]],[[1,1,1,2],[2,1,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,1,1],[2,1,4,2],[2,0,2,2],[1,2,1,1]],[[1,1,1,1],[2,1,3,3],[2,0,2,2],[1,2,1,1]],[[1,1,1,1],[2,1,3,2],[2,0,2,3],[1,2,1,1]],[[1,1,1,1],[2,1,3,2],[2,0,2,2],[1,2,1,2]],[[1,1,1,2],[2,1,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,1,1],[2,1,4,2],[2,0,2,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,3],[2,0,2,2],[1,2,2,0]],[[1,1,1,1],[2,1,3,2],[2,0,2,3],[1,2,2,0]],[[2,1,1,1],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,2],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[3,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,4,2],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,3],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,2],[3,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,2],[2,0,4,0],[1,2,2,1]],[[1,1,1,1],[2,1,3,2],[2,0,3,0],[2,2,2,1]],[[1,1,1,1],[2,1,3,2],[2,0,3,0],[1,3,2,1]],[[1,1,1,1],[2,1,3,2],[2,0,3,0],[1,2,3,1]],[[1,1,1,1],[2,1,3,2],[2,0,3,0],[1,2,2,2]],[[1,1,1,2],[2,1,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,1,1],[2,1,4,2],[2,0,3,1],[1,2,1,1]],[[1,1,1,1],[2,1,3,3],[2,0,3,1],[1,2,1,1]],[[1,1,1,1],[2,1,3,2],[2,0,4,1],[1,2,1,1]],[[2,1,1,1],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,2],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[3,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,1,4,2],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,3],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,2],[3,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,2],[2,0,4,1],[1,2,2,0]],[[1,1,1,1],[2,1,3,2],[2,0,3,1],[2,2,2,0]],[[1,1,1,1],[2,1,3,2],[2,0,3,1],[1,3,2,0]],[[1,1,1,1],[2,1,3,2],[2,0,3,1],[1,2,3,0]],[[2,1,1,1],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,2],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[3,1,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,1,4,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,3],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,2],[3,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,1,3,2],[2,1,0,3],[1,2,2,1]],[[1,1,1,1],[2,1,3,2],[2,1,0,2],[2,2,2,1]],[[1,1,1,1],[2,1,3,2],[2,1,0,2],[1,3,2,1]],[[1,1,1,1],[2,1,3,2],[2,1,0,2],[1,2,3,1]],[[1,1,1,1],[2,1,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,0],[1,4,2,2],[2,3,3,0],[1,0,1,1]],[[1,3,1,0],[1,3,2,2],[2,3,3,0],[1,0,1,1]],[[2,2,1,0],[1,3,2,2],[2,3,3,0],[1,0,1,1]],[[1,2,1,0],[1,4,2,2],[2,2,3,1],[1,2,0,0]],[[1,3,1,0],[1,3,2,2],[2,2,3,1],[1,2,0,0]],[[2,2,1,0],[1,3,2,2],[2,2,3,1],[1,2,0,0]],[[1,2,1,0],[1,4,2,2],[2,2,3,1],[1,1,1,0]],[[1,3,1,0],[1,3,2,2],[2,2,3,1],[1,1,1,0]],[[2,2,1,0],[1,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,1,0],[1,4,2,2],[2,2,3,1],[1,1,0,1]],[[1,3,1,0],[1,3,2,2],[2,2,3,1],[1,1,0,1]],[[2,2,1,0],[1,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,1,0],[1,4,2,2],[2,2,3,1],[1,0,2,0]],[[1,3,1,0],[1,3,2,2],[2,2,3,1],[1,0,2,0]],[[2,2,1,0],[1,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,1,0],[1,4,2,2],[2,2,3,1],[1,0,1,1]],[[1,3,1,0],[1,3,2,2],[2,2,3,1],[1,0,1,1]],[[2,2,1,0],[1,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,2,1,0],[1,4,2,2],[2,2,3,1],[0,2,1,0]],[[1,3,1,0],[1,3,2,2],[2,2,3,1],[0,2,1,0]],[[2,2,1,0],[1,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,1,0],[1,4,2,2],[2,2,3,1],[0,2,0,1]],[[1,3,1,0],[1,3,2,2],[2,2,3,1],[0,2,0,1]],[[2,2,1,0],[1,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,2,1,0],[1,4,2,2],[2,2,3,1],[0,1,2,0]],[[1,3,1,0],[1,3,2,2],[2,2,3,1],[0,1,2,0]],[[2,2,1,0],[1,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,1,0],[1,4,2,2],[2,2,3,1],[0,1,1,1]],[[1,3,1,0],[1,3,2,2],[2,2,3,1],[0,1,1,1]],[[2,2,1,0],[1,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,1,0],[1,4,2,2],[2,2,3,0],[1,2,0,1]],[[1,3,1,0],[1,3,2,2],[2,2,3,0],[1,2,0,1]],[[2,2,1,0],[1,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,2,1,0],[1,4,2,2],[2,2,3,0],[1,1,1,1]],[[1,3,1,0],[1,3,2,2],[2,2,3,0],[1,1,1,1]],[[2,2,1,0],[1,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,1,0],[1,4,2,2],[2,2,3,0],[1,0,2,1]],[[1,3,1,0],[1,3,2,2],[2,2,3,0],[1,0,2,1]],[[2,2,1,0],[1,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,2,1,0],[1,4,2,2],[2,2,3,0],[0,2,1,1]],[[1,3,1,0],[1,3,2,2],[2,2,3,0],[0,2,1,1]],[[2,2,1,0],[1,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,1,0],[1,4,2,2],[2,2,3,0],[0,1,2,1]],[[1,3,1,0],[1,3,2,2],[2,2,3,0],[0,1,2,1]],[[2,2,1,0],[1,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,2,1,0],[1,4,2,2],[2,2,2,1],[1,1,2,0]],[[1,3,1,0],[1,3,2,2],[2,2,2,1],[1,1,2,0]],[[2,2,1,0],[1,3,2,2],[2,2,2,1],[1,1,2,0]],[[1,2,1,0],[1,4,2,2],[2,2,2,1],[0,2,2,0]],[[1,3,1,0],[1,3,2,2],[2,2,2,1],[0,2,2,0]],[[2,2,1,0],[1,3,2,2],[2,2,2,1],[0,2,2,0]],[[1,2,1,0],[1,4,2,2],[2,2,2,0],[1,1,2,1]],[[1,3,1,0],[1,3,2,2],[2,2,2,0],[1,1,2,1]],[[2,2,1,0],[1,3,2,2],[2,2,2,0],[1,1,2,1]],[[1,2,1,0],[1,4,2,2],[2,2,2,0],[0,2,2,1]],[[1,3,1,0],[1,3,2,2],[2,2,2,0],[0,2,2,1]],[[2,2,1,0],[1,3,2,2],[2,2,2,0],[0,2,2,1]],[[1,2,1,0],[1,4,2,2],[2,2,0,2],[1,1,2,1]],[[1,3,1,0],[1,3,2,2],[2,2,0,2],[1,1,2,1]],[[2,2,1,0],[1,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,2,1,0],[1,4,2,2],[2,2,0,2],[0,2,2,1]],[[1,3,1,0],[1,3,2,2],[2,2,0,2],[0,2,2,1]],[[2,2,1,0],[1,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,1,0],[1,3,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,1,0],[1,3,2,2],[2,1,4,2],[1,1,1,0]],[[1,2,1,0],[1,3,2,3],[2,1,3,2],[1,1,1,0]],[[1,2,1,0],[1,3,2,2],[2,1,3,2],[1,1,0,2]],[[1,2,1,0],[1,3,2,2],[2,1,3,3],[1,1,0,1]],[[1,2,1,0],[1,3,2,2],[2,1,4,2],[1,1,0,1]],[[1,2,1,0],[1,3,2,3],[2,1,3,2],[1,1,0,1]],[[1,2,1,0],[1,3,2,2],[2,1,3,2],[1,0,3,0]],[[1,2,1,0],[1,3,2,2],[2,1,3,3],[1,0,2,0]],[[1,2,1,0],[1,3,2,2],[2,1,4,2],[1,0,2,0]],[[1,2,1,0],[1,3,2,3],[2,1,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,2,2],[2,1,3,2],[1,0,1,2]],[[1,2,1,0],[1,3,2,2],[2,1,3,3],[1,0,1,1]],[[1,2,1,0],[1,3,2,2],[2,1,4,2],[1,0,1,1]],[[1,2,1,0],[1,3,2,3],[2,1,3,2],[1,0,1,1]],[[1,2,1,0],[1,3,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,1,0],[1,3,2,2],[2,1,4,2],[0,2,1,0]],[[1,2,1,0],[1,3,2,3],[2,1,3,2],[0,2,1,0]],[[1,2,1,0],[1,3,2,2],[2,1,3,2],[0,2,0,2]],[[1,2,1,0],[1,3,2,2],[2,1,3,3],[0,2,0,1]],[[1,2,1,0],[1,3,2,2],[2,1,4,2],[0,2,0,1]],[[1,2,1,0],[1,3,2,3],[2,1,3,2],[0,2,0,1]],[[1,2,1,0],[1,3,2,2],[2,1,3,2],[0,1,3,0]],[[1,2,1,0],[1,3,2,2],[2,1,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,2,2],[2,1,4,2],[0,1,2,0]],[[1,2,1,0],[1,3,2,3],[2,1,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,2,2],[2,1,3,2],[0,1,1,2]],[[1,2,1,0],[1,3,2,2],[2,1,3,3],[0,1,1,1]],[[1,2,1,0],[1,3,2,2],[2,1,4,2],[0,1,1,1]],[[1,2,1,0],[1,3,2,3],[2,1,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,2,2],[2,1,3,2],[0,0,2,2]],[[1,2,1,0],[1,3,2,2],[2,1,3,3],[0,0,2,1]],[[1,2,1,0],[1,3,2,2],[2,1,4,2],[0,0,2,1]],[[1,2,1,0],[1,3,2,3],[2,1,3,2],[0,0,2,1]],[[1,2,1,0],[1,4,2,2],[2,1,3,1],[1,2,1,0]],[[1,3,1,0],[1,3,2,2],[2,1,3,1],[1,2,1,0]],[[2,2,1,0],[1,3,2,2],[2,1,3,1],[1,2,1,0]],[[1,2,1,0],[1,4,2,2],[2,1,3,1],[1,2,0,1]],[[1,3,1,0],[1,3,2,2],[2,1,3,1],[1,2,0,1]],[[2,2,1,0],[1,3,2,2],[2,1,3,1],[1,2,0,1]],[[1,2,1,0],[1,3,2,2],[2,1,3,1],[1,0,2,2]],[[1,2,1,0],[1,3,2,2],[2,1,3,1],[1,0,3,1]],[[1,2,1,0],[1,3,2,2],[2,1,4,1],[1,0,2,1]],[[1,2,1,0],[1,3,2,2],[2,1,3,1],[0,1,2,2]],[[1,2,1,0],[1,3,2,2],[2,1,3,1],[0,1,3,1]],[[1,2,1,0],[1,3,2,2],[2,1,4,1],[0,1,2,1]],[[1,2,1,0],[1,4,2,2],[2,1,3,0],[1,2,1,1]],[[1,3,1,0],[1,3,2,2],[2,1,3,0],[1,2,1,1]],[[2,2,1,0],[1,3,2,2],[2,1,3,0],[1,2,1,1]],[[1,2,1,0],[1,3,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,1,0],[1,3,2,2],[2,1,2,2],[1,0,3,1]],[[1,2,1,0],[1,3,2,2],[2,1,2,3],[1,0,2,1]],[[1,2,1,0],[1,3,2,3],[2,1,2,2],[1,0,2,1]],[[1,2,1,0],[1,3,2,2],[2,1,2,2],[0,1,2,2]],[[1,2,1,0],[1,3,2,2],[2,1,2,2],[0,1,3,1]],[[1,2,1,0],[1,3,2,2],[2,1,2,3],[0,1,2,1]],[[1,2,1,0],[1,3,2,3],[2,1,2,2],[0,1,2,1]],[[1,2,1,0],[1,4,2,2],[2,1,2,1],[1,2,2,0]],[[1,3,1,0],[1,3,2,2],[2,1,2,1],[1,2,2,0]],[[2,2,1,0],[1,3,2,2],[2,1,2,1],[1,2,2,0]],[[1,2,1,0],[1,4,2,2],[2,1,2,0],[1,2,2,1]],[[1,3,1,0],[1,3,2,2],[2,1,2,0],[1,2,2,1]],[[2,2,1,0],[1,3,2,2],[2,1,2,0],[1,2,2,1]],[[1,2,1,0],[1,4,2,2],[2,1,0,2],[1,2,2,1]],[[1,3,1,0],[1,3,2,2],[2,1,0,2],[1,2,2,1]],[[2,2,1,0],[1,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,1,0],[1,3,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,1,0],[1,3,2,2],[2,0,4,2],[1,2,1,0]],[[1,2,1,0],[1,3,2,3],[2,0,3,2],[1,2,1,0]],[[1,2,1,0],[1,3,2,2],[2,0,3,2],[1,2,0,2]],[[1,2,1,0],[1,3,2,2],[2,0,3,3],[1,2,0,1]],[[1,2,1,0],[1,3,2,2],[2,0,4,2],[1,2,0,1]],[[1,2,1,0],[1,3,2,3],[2,0,3,2],[1,2,0,1]],[[1,2,1,0],[1,3,2,2],[2,0,3,2],[1,1,3,0]],[[1,2,1,0],[1,3,2,2],[2,0,3,3],[1,1,2,0]],[[1,2,1,0],[1,3,2,2],[2,0,4,2],[1,1,2,0]],[[1,2,1,0],[1,3,2,3],[2,0,3,2],[1,1,2,0]],[[1,2,1,0],[1,3,2,2],[2,0,3,2],[1,1,1,2]],[[1,2,1,0],[1,3,2,2],[2,0,3,3],[1,1,1,1]],[[1,2,1,0],[1,3,2,2],[2,0,4,2],[1,1,1,1]],[[1,2,1,0],[1,3,2,3],[2,0,3,2],[1,1,1,1]],[[1,2,1,0],[1,3,2,2],[2,0,3,2],[0,2,3,0]],[[1,2,1,0],[1,3,2,2],[2,0,3,2],[0,3,2,0]],[[1,2,1,0],[1,3,2,2],[2,0,3,3],[0,2,2,0]],[[1,2,1,0],[1,3,2,2],[2,0,4,2],[0,2,2,0]],[[1,2,1,0],[1,3,2,3],[2,0,3,2],[0,2,2,0]],[[1,2,1,0],[1,3,2,2],[2,0,3,2],[0,2,1,2]],[[1,2,1,0],[1,3,2,2],[2,0,3,3],[0,2,1,1]],[[1,2,1,0],[1,3,2,2],[2,0,4,2],[0,2,1,1]],[[1,2,1,0],[1,3,2,3],[2,0,3,2],[0,2,1,1]],[[1,2,1,0],[1,4,2,2],[2,0,3,1],[1,2,2,0]],[[1,3,1,0],[1,3,2,2],[2,0,3,1],[1,2,2,0]],[[2,2,1,0],[1,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,1,0],[1,3,2,2],[2,0,3,1],[1,1,2,2]],[[1,2,1,0],[1,3,2,2],[2,0,3,1],[1,1,3,1]],[[1,2,1,0],[1,3,2,2],[2,0,4,1],[1,1,2,1]],[[1,2,1,0],[1,3,2,2],[2,0,3,1],[0,2,2,2]],[[1,2,1,0],[1,3,2,2],[2,0,3,1],[0,2,3,1]],[[1,2,1,0],[1,3,2,2],[2,0,3,1],[0,3,2,1]],[[1,2,1,0],[1,3,2,2],[2,0,4,1],[0,2,2,1]],[[1,2,1,0],[1,4,2,2],[2,0,3,0],[1,2,2,1]],[[1,3,1,0],[1,3,2,2],[2,0,3,0],[1,2,2,1]],[[2,2,1,0],[1,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,1,0],[1,3,2,2],[2,0,2,2],[1,1,2,2]],[[1,2,1,0],[1,3,2,2],[2,0,2,2],[1,1,3,1]],[[1,2,1,0],[1,3,2,2],[2,0,2,3],[1,1,2,1]],[[1,2,1,0],[1,3,2,3],[2,0,2,2],[1,1,2,1]],[[1,2,1,0],[1,3,2,2],[2,0,2,2],[0,2,2,2]],[[1,2,1,0],[1,3,2,2],[2,0,2,2],[0,2,3,1]],[[1,2,1,0],[1,3,2,2],[2,0,2,2],[0,3,2,1]],[[1,2,1,0],[1,3,2,2],[2,0,2,3],[0,2,2,1]],[[1,2,1,0],[1,3,2,3],[2,0,2,2],[0,2,2,1]],[[1,2,1,0],[1,4,2,2],[2,0,1,2],[1,2,2,1]],[[1,3,1,0],[1,3,2,2],[2,0,1,2],[1,2,2,1]],[[2,2,1,0],[1,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,1,0],[1,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,1,0],[1,3,2,2],[1,3,4,2],[0,0,2,0]],[[1,2,1,0],[1,3,2,3],[1,3,3,2],[0,0,2,0]],[[1,2,1,0],[1,3,2,2],[1,3,3,2],[0,0,1,2]],[[1,2,1,0],[1,3,2,2],[1,3,3,3],[0,0,1,1]],[[1,2,1,0],[1,3,2,2],[1,3,4,2],[0,0,1,1]],[[1,2,1,0],[1,3,2,3],[1,3,3,2],[0,0,1,1]],[[1,2,1,0],[1,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,2,1,0],[1,4,2,2],[1,3,3,1],[1,2,0,0]],[[1,3,1,0],[1,3,2,2],[1,3,3,1],[1,2,0,0]],[[2,2,1,0],[1,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,2,1,0],[1,3,2,2],[1,3,4,1],[1,1,1,0]],[[1,2,1,0],[1,3,2,2],[1,4,3,1],[1,1,1,0]],[[1,2,1,0],[1,4,2,2],[1,3,3,1],[1,1,1,0]],[[1,3,1,0],[1,3,2,2],[1,3,3,1],[1,1,1,0]],[[2,2,1,0],[1,3,2,2],[1,3,3,1],[1,1,1,0]],[[1,2,1,0],[1,3,2,2],[1,3,4,1],[1,1,0,1]],[[1,2,1,0],[1,3,2,2],[1,4,3,1],[1,1,0,1]],[[1,2,1,0],[1,4,2,2],[1,3,3,1],[1,1,0,1]],[[1,3,1,0],[1,3,2,2],[1,3,3,1],[1,1,0,1]],[[2,2,1,0],[1,3,2,2],[1,3,3,1],[1,1,0,1]],[[1,2,1,0],[1,3,2,2],[1,3,3,1],[1,0,3,0]],[[1,2,1,0],[1,3,2,2],[1,3,4,1],[1,0,2,0]],[[1,2,1,0],[1,3,2,2],[1,4,3,1],[1,0,2,0]],[[1,2,1,0],[1,4,2,2],[1,3,3,1],[1,0,2,0]],[[1,3,1,0],[1,3,2,2],[1,3,3,1],[1,0,2,0]],[[2,2,1,0],[1,3,2,2],[1,3,3,1],[1,0,2,0]],[[1,2,1,0],[1,3,2,2],[1,3,4,1],[1,0,1,1]],[[1,2,1,0],[1,3,2,2],[1,4,3,1],[1,0,1,1]],[[1,2,1,0],[1,4,2,2],[1,3,3,1],[1,0,1,1]],[[1,3,1,0],[1,3,2,2],[1,3,3,1],[1,0,1,1]],[[2,2,1,0],[1,3,2,2],[1,3,3,1],[1,0,1,1]],[[1,2,1,0],[1,3,2,2],[1,3,3,1],[0,3,1,0]],[[1,2,1,0],[1,3,2,2],[1,3,4,1],[0,2,1,0]],[[1,2,1,0],[1,3,2,2],[1,4,3,1],[0,2,1,0]],[[1,2,1,0],[1,4,2,2],[1,3,3,1],[0,2,1,0]],[[1,3,1,0],[1,3,2,2],[1,3,3,1],[0,2,1,0]],[[2,2,1,0],[1,3,2,2],[1,3,3,1],[0,2,1,0]],[[1,2,1,0],[1,3,2,2],[1,3,3,1],[0,3,0,1]],[[1,2,1,0],[1,3,2,2],[1,3,4,1],[0,2,0,1]],[[1,2,1,0],[1,3,2,2],[1,4,3,1],[0,2,0,1]],[[1,2,1,0],[1,4,2,2],[1,3,3,1],[0,2,0,1]],[[1,3,1,0],[1,3,2,2],[1,3,3,1],[0,2,0,1]],[[2,2,1,0],[1,3,2,2],[1,3,3,1],[0,2,0,1]],[[1,2,1,0],[1,3,2,2],[1,3,3,1],[0,1,3,0]],[[1,2,1,0],[1,3,2,2],[1,3,4,1],[0,1,2,0]],[[1,2,1,0],[1,3,2,2],[1,4,3,1],[0,1,2,0]],[[1,2,1,0],[1,4,2,2],[1,3,3,1],[0,1,2,0]],[[1,3,1,0],[1,3,2,2],[1,3,3,1],[0,1,2,0]],[[2,2,1,0],[1,3,2,2],[1,3,3,1],[0,1,2,0]],[[1,2,1,0],[1,3,2,2],[1,3,4,1],[0,1,1,1]],[[1,2,1,0],[1,3,2,2],[1,4,3,1],[0,1,1,1]],[[1,2,1,0],[1,4,2,2],[1,3,3,1],[0,1,1,1]],[[1,3,1,0],[1,3,2,2],[1,3,3,1],[0,1,1,1]],[[2,2,1,0],[1,3,2,2],[1,3,3,1],[0,1,1,1]],[[1,2,1,0],[1,3,2,2],[1,4,3,0],[1,2,0,1]],[[1,2,1,0],[1,4,2,2],[1,3,3,0],[1,2,0,1]],[[1,3,1,0],[1,3,2,2],[1,3,3,0],[1,2,0,1]],[[2,2,1,0],[1,3,2,2],[1,3,3,0],[1,2,0,1]],[[1,2,1,0],[1,3,2,2],[1,3,4,0],[1,1,1,1]],[[1,2,1,0],[1,3,2,2],[1,4,3,0],[1,1,1,1]],[[1,2,1,0],[1,4,2,2],[1,3,3,0],[1,1,1,1]],[[1,3,1,0],[1,3,2,2],[1,3,3,0],[1,1,1,1]],[[2,2,1,0],[1,3,2,2],[1,3,3,0],[1,1,1,1]],[[1,2,1,0],[1,3,2,2],[1,3,3,0],[1,0,2,2]],[[1,2,1,0],[1,3,2,2],[1,3,3,0],[1,0,3,1]],[[1,2,1,0],[1,3,2,2],[1,3,4,0],[1,0,2,1]],[[1,2,1,0],[1,3,2,2],[1,4,3,0],[1,0,2,1]],[[1,2,1,0],[1,4,2,2],[1,3,3,0],[1,0,2,1]],[[1,3,1,0],[1,3,2,2],[1,3,3,0],[1,0,2,1]],[[2,2,1,0],[1,3,2,2],[1,3,3,0],[1,0,2,1]],[[1,2,1,0],[1,3,2,2],[1,3,3,0],[0,3,1,1]],[[1,2,1,0],[1,3,2,2],[1,3,4,0],[0,2,1,1]],[[1,2,1,0],[1,3,2,2],[1,4,3,0],[0,2,1,1]],[[1,2,1,0],[1,4,2,2],[1,3,3,0],[0,2,1,1]],[[1,3,1,0],[1,3,2,2],[1,3,3,0],[0,2,1,1]],[[2,2,1,0],[1,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,2,1,0],[1,3,2,2],[1,3,3,0],[0,1,2,2]],[[1,2,1,0],[1,3,2,2],[1,3,3,0],[0,1,3,1]],[[1,2,1,0],[1,3,2,2],[1,3,4,0],[0,1,2,1]],[[1,2,1,0],[1,3,2,2],[1,4,3,0],[0,1,2,1]],[[1,2,1,0],[1,4,2,2],[1,3,3,0],[0,1,2,1]],[[1,3,1,0],[1,3,2,2],[1,3,3,0],[0,1,2,1]],[[2,2,1,0],[1,3,2,2],[1,3,3,0],[0,1,2,1]],[[1,2,1,0],[1,3,2,2],[1,4,2,1],[1,1,2,0]],[[1,2,1,0],[1,4,2,2],[1,3,2,1],[1,1,2,0]],[[1,3,1,0],[1,3,2,2],[1,3,2,1],[1,1,2,0]],[[2,2,1,0],[1,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,2,1,0],[1,3,2,2],[1,3,2,1],[0,2,3,0]],[[1,2,1,0],[1,3,2,2],[1,3,2,1],[0,3,2,0]],[[1,2,1,0],[1,3,2,2],[1,4,2,1],[0,2,2,0]],[[1,2,1,0],[1,4,2,2],[1,3,2,1],[0,2,2,0]],[[1,3,1,0],[1,3,2,2],[1,3,2,1],[0,2,2,0]],[[2,2,1,0],[1,3,2,2],[1,3,2,1],[0,2,2,0]],[[1,1,1,1],[2,2,0,0],[3,3,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,0,0],[2,3,3,1],[2,2,2,1]],[[1,1,1,1],[2,2,0,0],[2,3,3,1],[1,3,2,1]],[[1,1,1,1],[2,2,0,0],[2,3,3,1],[1,2,3,1]],[[1,1,1,1],[2,2,0,0],[3,3,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,0],[2,3,3,2],[2,2,2,0]],[[1,1,1,1],[2,2,0,0],[2,3,3,2],[1,3,2,0]],[[1,2,1,0],[1,3,2,2],[1,4,2,0],[1,1,2,1]],[[1,1,1,2],[2,2,0,2],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,3],[1,2,2,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[2,2,0,2],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[2,2,0,2],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[2,2,0,2],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[2,2,0,2],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[2,2,0,2],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[2,2,0,2],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[2,2,0,2],[1,2,3,1],[1,2,2,2]],[[1,1,1,2],[2,2,0,2],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[2,2,0,3],[1,2,3,2],[1,2,1,1]],[[1,1,1,1],[2,2,0,2],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[2,2,0,2],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[2,2,0,2],[1,2,3,2],[1,2,1,2]],[[1,1,1,2],[2,2,0,2],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,3],[1,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[2,2,0,2],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[2,2,0,2],[1,2,3,2],[1,2,3,0]],[[1,1,1,2],[2,2,0,2],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,3],[1,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,2,0,2],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,2,0,2],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,2,0,2],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[2,2,0,2],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,2,0,2],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,2,0,2],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,2,0,2],[1,3,2,1],[1,2,2,2]],[[1,1,1,2],[2,2,0,2],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[2,2,0,3],[1,3,2,2],[1,1,2,1]],[[1,1,1,1],[2,2,0,2],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[2,2,0,2],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[2,2,0,2],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[2,2,0,2],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,2,0,2],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,2,0,2],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[2,2,0,2],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[2,2,0,2],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[2,2,0,2],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[2,2,0,2],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[2,2,0,2],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[2,2,0,2],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[2,2,0,2],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,2,0,2],[1,3,3,1],[1,3,1,1]],[[1,1,1,2],[2,2,0,2],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,2,0,3],[1,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,2,0,2],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[2,2,0,2],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[2,2,0,2],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[2,2,0,2],[1,3,3,2],[1,1,1,2]],[[1,1,1,2],[2,2,0,2],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,2,0,3],[1,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,2,0,2],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[2,2,0,2],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[2,2,0,2],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[2,2,0,2],[1,3,3,2],[1,1,3,0]],[[1,1,1,2],[2,2,0,2],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,2,0,3],[1,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,2,0,2],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[2,2,0,2],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[2,2,0,2],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[2,2,0,2],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,2,0,2],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,2,0,2],[1,3,3,2],[1,2,0,2]],[[1,1,1,2],[2,2,0,2],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,2,0,3],[1,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,2,0,2],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[2,2,0,2],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[2,2,0,2],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[2,2,0,2],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,2,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,4,2,2],[1,3,2,0],[1,1,2,1]],[[1,3,1,0],[1,3,2,2],[1,3,2,0],[1,1,2,1]],[[2,2,1,0],[1,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,2,1,0],[1,3,2,2],[1,3,2,0],[0,2,2,2]],[[1,2,1,0],[1,3,2,2],[1,3,2,0],[0,2,3,1]],[[1,2,1,0],[1,3,2,2],[1,3,2,0],[0,3,2,1]],[[1,2,1,0],[1,3,2,2],[1,4,2,0],[0,2,2,1]],[[1,2,1,0],[1,4,2,2],[1,3,2,0],[0,2,2,1]],[[1,3,1,0],[1,3,2,2],[1,3,2,0],[0,2,2,1]],[[2,1,1,1],[2,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,2],[2,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[3,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,3],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[2,2,0,2],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[2,2,0,2],[2,1,2,2],[1,2,2,2]],[[2,1,1,1],[2,2,0,2],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[3,2,0,2],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[2,2,0,2],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[2,2,0,2],[2,1,3,1],[1,2,2,2]],[[1,1,1,2],[2,2,0,2],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[2,2,0,3],[2,1,3,2],[1,2,1,1]],[[1,1,1,1],[2,2,0,2],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[2,2,0,2],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[2,2,0,2],[2,1,3,2],[1,2,1,2]],[[2,1,1,1],[2,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,2],[2,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[3,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,3],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[2,2,0,2],[2,1,3,2],[1,2,3,0]],[[2,1,1,1],[2,2,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,2],[2,2,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[3,2,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,3],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[2,2,0,2],[2,2,1,2],[1,2,2,2]],[[2,1,1,1],[2,2,0,2],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[3,2,0,2],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[2,2,0,2],[2,2,2,1],[1,2,2,2]],[[1,1,1,2],[2,2,0,2],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[2,2,0,3],[2,2,2,2],[0,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[2,2,0,2],[2,2,2,2],[0,2,2,2]],[[2,1,1,1],[2,2,0,2],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[3,2,0,2],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[2,2,0,2],[2,2,2,2],[1,2,3,0]],[[1,1,1,1],[2,2,0,2],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[2,2,0,2],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[2,2,0,2],[2,2,3,1],[0,2,2,2]],[[2,1,1,1],[2,2,0,2],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[3,2,0,2],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,2,0,2],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,2,0,2],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[2,2,0,2],[2,2,3,1],[1,3,1,1]],[[1,1,1,2],[2,2,0,2],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[2,2,0,3],[2,2,3,2],[0,2,1,1]],[[1,1,1,1],[2,2,0,2],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[2,2,0,2],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[2,2,0,2],[2,2,3,2],[0,2,1,2]],[[1,1,1,2],[2,2,0,2],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[2,2,0,3],[2,2,3,2],[0,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[2,2,0,2],[2,2,3,2],[0,2,3,0]],[[2,1,1,1],[2,2,0,2],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[3,2,0,2],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,2,0,2],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,2,0,2],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[2,2,0,2],[2,2,3,2],[1,3,0,1]],[[2,1,1,1],[2,2,0,2],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[3,2,0,2],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,2,0,2],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,2,0,2],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[2,2,0,2],[2,2,3,2],[1,3,1,0]],[[2,2,1,0],[1,3,2,2],[1,3,2,0],[0,2,2,1]],[[2,1,1,1],[2,2,0,2],[2,3,0,2],[1,2,2,1]],[[1,1,1,1],[3,2,0,2],[2,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[3,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,0,2],[2,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,0,2],[1,3,2,1]],[[2,1,1,1],[2,2,0,2],[2,3,1,1],[1,2,2,1]],[[1,1,1,1],[3,2,0,2],[2,3,1,1],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[3,3,1,1],[1,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,1,1],[2,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,1,1],[1,3,2,1]],[[2,1,1,1],[2,2,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,2],[2,2,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[3,2,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,2,0,3],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,2,0,2],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[2,2,0,2],[2,3,1,2],[0,2,2,2]],[[2,1,1,1],[2,2,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[3,2,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,2,0,2],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,2,0,2],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,1,2],[2,1,2,1]],[[2,1,1,1],[2,2,0,2],[2,3,1,2],[1,2,2,0]],[[1,1,1,1],[3,2,0,2],[2,3,1,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[3,3,1,2],[1,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,1,2],[2,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,1,2],[1,3,2,0]],[[2,1,1,1],[2,2,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[3,2,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,2,0,2],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[2,2,0,2],[2,3,2,1],[0,2,2,2]],[[2,1,1,1],[2,2,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[3,2,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,2,0,2],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,2,0,2],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,2,1],[2,1,2,1]],[[1,1,1,2],[2,2,0,2],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[2,2,0,3],[2,3,2,2],[0,1,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[2,2,0,2],[2,3,2,2],[0,1,2,2]],[[2,1,1,1],[2,2,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[3,2,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,2,0,2],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,2,2],[0,2,3,0]],[[1,1,1,2],[2,2,0,2],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[2,2,0,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[2,2,0,2],[2,3,2,2],[1,0,2,2]],[[2,1,1,1],[2,2,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[3,2,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,2,0,2],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,2,0,2],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,2,2],[2,1,2,0]],[[2,1,1,1],[2,2,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[3,2,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,2,0,2],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,2,0,2],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,1],[0,1,2,2]],[[2,1,1,1],[2,2,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[3,2,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,2,0,2],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,2,0,2],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[2,2,0,2],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,1],[0,3,1,1]],[[2,1,1,1],[2,2,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[3,2,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,2,0,2],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,2,0,2],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,1],[1,0,2,2]],[[2,1,1,1],[2,2,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[3,2,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,2,0,2],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,2,0,2],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,2,0,2],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,1],[2,1,1,1]],[[2,1,1,1],[2,2,0,2],[2,3,3,1],[1,2,0,1]],[[1,1,1,1],[3,2,0,2],[2,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,0,2],[3,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,0,2],[2,4,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[1,3,2,2],[1,4,0,2],[1,1,2,1]],[[1,2,1,0],[1,4,2,2],[1,3,0,2],[1,1,2,1]],[[1,3,1,0],[1,3,2,2],[1,3,0,2],[1,1,2,1]],[[2,2,1,0],[1,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,2,1,0],[1,3,2,2],[1,3,0,2],[0,2,2,2]],[[1,2,1,0],[1,3,2,2],[1,3,0,2],[0,2,3,1]],[[1,2,1,0],[1,3,2,2],[1,3,0,2],[0,3,2,1]],[[1,1,1,2],[2,2,0,2],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,2,0,3],[2,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[0,0,2,2]],[[2,1,1,1],[2,2,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,2],[2,2,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[3,2,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,2,0,3],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,2,0,2],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,2,0,2],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[2,2,0,2],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[0,1,1,2]],[[2,1,1,1],[2,2,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,2],[2,2,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[3,2,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,2,0,3],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,2,0,2],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,2,0,2],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[0,1,3,0]],[[2,1,1,1],[2,2,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,2],[2,2,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[3,2,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,2,0,3],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,2,0,2],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,2,0,2],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[2,2,0,2],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[0,2,0,2]],[[2,1,1,1],[2,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,2],[2,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[3,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,2,0,3],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,2,0,2],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,2,0,2],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[2,2,0,2],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[2,2,0,2],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[1,3,2,2],[1,3,0,3],[0,2,2,1]],[[1,2,1,0],[1,3,2,2],[1,4,0,2],[0,2,2,1]],[[1,2,1,0],[1,3,2,3],[1,3,0,2],[0,2,2,1]],[[1,2,1,0],[1,4,2,2],[1,3,0,2],[0,2,2,1]],[[1,3,1,0],[1,3,2,2],[1,3,0,2],[0,2,2,1]],[[2,2,1,0],[1,3,2,2],[1,3,0,2],[0,2,2,1]],[[2,1,1,1],[2,2,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,2],[2,2,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[3,2,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,2,0,3],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,2,0,2],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,2,0,2],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[2,2,0,2],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[1,0,1,2]],[[2,1,1,1],[2,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,2],[2,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[3,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,2,0,3],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,2,0,2],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,2,0,2],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[1,0,3,0]],[[2,1,1,1],[2,2,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,2],[2,2,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[3,2,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,2,0,3],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,2,0,2],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,2,0,2],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[2,2,0,2],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[1,1,0,2]],[[2,1,1,1],[2,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,2],[2,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[3,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,2,0,3],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,2,0,2],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,2,0,2],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[2,2,0,2],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[2,2,0,2],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[1,3,2,2],[1,2,3,3],[1,1,1,0]],[[2,1,1,1],[2,2,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[3,2,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,2,0,2],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,2,0,2],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[2,2,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[1,3,2,2],[1,2,4,2],[1,1,1,0]],[[1,2,1,0],[1,3,2,3],[1,2,3,2],[1,1,1,0]],[[1,2,1,0],[1,3,2,2],[1,2,3,2],[1,1,0,2]],[[1,2,1,0],[1,3,2,2],[1,2,3,3],[1,1,0,1]],[[1,2,1,0],[1,3,2,2],[1,2,4,2],[1,1,0,1]],[[1,2,1,0],[1,3,2,3],[1,2,3,2],[1,1,0,1]],[[1,2,1,0],[1,3,2,2],[1,2,3,2],[1,0,3,0]],[[1,2,1,0],[1,3,2,2],[1,2,3,3],[1,0,2,0]],[[1,2,1,0],[1,3,2,2],[1,2,4,2],[1,0,2,0]],[[1,2,1,0],[1,3,2,3],[1,2,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,2,2],[1,2,3,2],[1,0,1,2]],[[1,2,1,0],[1,3,2,2],[1,2,3,3],[1,0,1,1]],[[1,2,1,0],[1,3,2,2],[1,2,4,2],[1,0,1,1]],[[1,2,1,0],[1,3,2,3],[1,2,3,2],[1,0,1,1]],[[1,2,1,0],[1,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,1,0],[1,3,2,2],[1,2,4,2],[0,2,1,0]],[[1,2,1,0],[1,3,2,3],[1,2,3,2],[0,2,1,0]],[[1,2,1,0],[1,3,2,2],[1,2,3,2],[0,2,0,2]],[[1,2,1,0],[1,3,2,2],[1,2,3,3],[0,2,0,1]],[[1,2,1,0],[1,3,2,2],[1,2,4,2],[0,2,0,1]],[[1,1,1,1],[2,2,1,0],[1,4,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,1,0],[1,3,3,1],[2,2,2,1]],[[1,1,1,1],[2,2,1,0],[1,3,3,1],[1,3,2,1]],[[1,1,1,1],[2,2,1,0],[1,3,3,1],[1,2,3,1]],[[1,1,1,1],[2,2,1,0],[1,3,3,1],[1,2,2,2]],[[1,1,1,1],[2,2,1,0],[1,4,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,1,0],[1,3,3,2],[2,2,2,0]],[[1,1,1,1],[2,2,1,0],[1,3,3,2],[1,3,2,0]],[[1,1,1,1],[2,2,1,0],[1,3,3,2],[1,2,3,0]],[[2,1,1,1],[2,2,1,0],[2,2,3,1],[1,2,2,1]],[[1,1,1,1],[3,2,1,0],[2,2,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,1,0],[3,2,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,1,0],[2,2,3,1],[2,2,2,1]],[[1,1,1,1],[2,2,1,0],[2,2,3,1],[1,3,2,1]],[[1,1,1,1],[2,2,1,0],[2,2,3,1],[1,2,3,1]],[[1,1,1,1],[2,2,1,0],[2,2,3,1],[1,2,2,2]],[[2,1,1,1],[2,2,1,0],[2,2,3,2],[1,2,2,0]],[[1,1,1,1],[3,2,1,0],[2,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,1,0],[3,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,1,0],[2,2,3,2],[2,2,2,0]],[[1,1,1,1],[2,2,1,0],[2,2,3,2],[1,3,2,0]],[[1,1,1,1],[2,2,1,0],[2,2,3,2],[1,2,3,0]],[[2,1,1,1],[2,2,1,0],[2,3,3,1],[0,2,2,1]],[[1,1,1,1],[3,2,1,0],[2,3,3,1],[0,2,2,1]],[[1,1,1,1],[2,2,1,0],[3,3,3,1],[0,2,2,1]],[[1,1,1,1],[2,2,1,0],[2,4,3,1],[0,2,2,1]],[[1,1,1,1],[2,2,1,0],[2,3,3,1],[0,3,2,1]],[[1,1,1,1],[2,2,1,0],[2,3,3,1],[0,2,3,1]],[[1,1,1,1],[2,2,1,0],[2,3,3,1],[0,2,2,2]],[[2,1,1,1],[2,2,1,0],[2,3,3,1],[1,1,2,1]],[[1,1,1,1],[3,2,1,0],[2,3,3,1],[1,1,2,1]],[[1,1,1,1],[2,2,1,0],[3,3,3,1],[1,1,2,1]],[[1,1,1,1],[2,2,1,0],[2,4,3,1],[1,1,2,1]],[[1,1,1,1],[2,2,1,0],[2,3,3,1],[2,1,2,1]],[[2,1,1,1],[2,2,1,0],[2,3,3,2],[0,2,2,0]],[[1,1,1,1],[3,2,1,0],[2,3,3,2],[0,2,2,0]],[[1,1,1,1],[2,2,1,0],[3,3,3,2],[0,2,2,0]],[[1,1,1,1],[2,2,1,0],[2,4,3,2],[0,2,2,0]],[[1,1,1,1],[2,2,1,0],[2,3,3,2],[0,3,2,0]],[[1,1,1,1],[2,2,1,0],[2,3,3,2],[0,2,3,0]],[[2,1,1,1],[2,2,1,0],[2,3,3,2],[1,1,2,0]],[[1,1,1,1],[3,2,1,0],[2,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,2,1,0],[3,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,2,1,0],[2,4,3,2],[1,1,2,0]],[[1,1,1,1],[2,2,1,0],[2,3,3,2],[2,1,2,0]],[[1,2,1,0],[1,3,2,3],[1,2,3,2],[0,2,0,1]],[[1,2,1,0],[1,3,2,2],[1,2,3,2],[0,1,3,0]],[[1,2,1,0],[1,3,2,2],[1,2,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,2,2],[1,2,4,2],[0,1,2,0]],[[1,2,1,0],[1,3,2,3],[1,2,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,2,2],[1,2,3,2],[0,1,1,2]],[[1,2,1,0],[1,3,2,2],[1,2,3,3],[0,1,1,1]],[[1,2,1,0],[1,3,2,2],[1,2,4,2],[0,1,1,1]],[[1,2,1,0],[1,3,2,3],[1,2,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,2,2],[1,2,3,2],[0,0,2,2]],[[1,2,1,0],[1,3,2,2],[1,2,3,3],[0,0,2,1]],[[1,2,1,0],[1,3,2,2],[1,2,4,2],[0,0,2,1]],[[1,2,1,0],[1,3,2,3],[1,2,3,2],[0,0,2,1]],[[1,2,1,0],[1,3,2,2],[1,2,3,1],[1,0,2,2]],[[1,2,1,0],[1,3,2,2],[1,2,3,1],[1,0,3,1]],[[1,2,1,0],[1,3,2,2],[1,2,4,1],[1,0,2,1]],[[1,2,1,0],[1,3,2,2],[1,2,3,1],[0,2,3,0]],[[1,2,1,0],[1,3,2,2],[1,2,3,1],[0,3,2,0]],[[1,2,1,0],[1,3,2,2],[1,2,4,1],[0,2,2,0]],[[1,2,1,0],[1,3,2,2],[1,2,3,1],[0,1,2,2]],[[1,2,1,0],[1,3,2,2],[1,2,3,1],[0,1,3,1]],[[1,2,1,0],[1,3,2,2],[1,2,4,1],[0,1,2,1]],[[1,2,1,0],[1,3,2,2],[1,2,3,0],[0,2,2,2]],[[1,2,1,0],[1,3,2,2],[1,2,3,0],[0,2,3,1]],[[1,2,1,0],[1,3,2,2],[1,2,3,0],[0,3,2,1]],[[1,2,1,0],[1,3,2,2],[1,2,4,0],[0,2,2,1]],[[1,2,1,0],[1,3,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,1,0],[1,3,2,2],[1,2,2,2],[1,0,3,1]],[[1,2,1,0],[1,3,2,2],[1,2,2,3],[1,0,2,1]],[[1,2,1,0],[1,3,2,3],[1,2,2,2],[1,0,2,1]],[[1,2,1,0],[1,3,2,2],[1,2,2,2],[0,1,2,2]],[[1,2,1,0],[1,3,2,2],[1,2,2,2],[0,1,3,1]],[[1,2,1,0],[1,3,2,2],[1,2,2,3],[0,1,2,1]],[[1,2,1,0],[1,3,2,3],[1,2,2,2],[0,1,2,1]],[[1,1,1,2],[2,2,1,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,1,3],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,1,2],[1,4,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,1,2],[1,3,0,3],[1,2,2,1]],[[1,1,1,1],[2,2,1,2],[1,3,0,2],[2,2,2,1]],[[1,1,1,1],[2,2,1,2],[1,3,0,2],[1,3,2,1]],[[1,1,1,1],[2,2,1,2],[1,3,0,2],[1,2,3,1]],[[1,1,1,1],[2,2,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,1,0],[1,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,1,0],[1,3,2,2],[1,1,3,2],[0,3,2,0]],[[1,2,1,0],[1,3,2,2],[1,1,3,3],[0,2,2,0]],[[1,2,1,0],[1,3,2,2],[1,1,4,2],[0,2,2,0]],[[1,2,1,0],[1,3,2,3],[1,1,3,2],[0,2,2,0]],[[1,2,1,0],[1,3,2,2],[1,1,3,2],[0,2,1,2]],[[1,2,1,0],[1,3,2,2],[1,1,3,3],[0,2,1,1]],[[1,2,1,0],[1,3,2,2],[1,1,4,2],[0,2,1,1]],[[1,2,1,0],[1,3,2,3],[1,1,3,2],[0,2,1,1]],[[1,2,1,0],[1,3,2,2],[1,1,3,1],[0,2,2,2]],[[1,2,1,0],[1,3,2,2],[1,1,3,1],[0,2,3,1]],[[1,2,1,0],[1,3,2,2],[1,1,3,1],[0,3,2,1]],[[1,2,1,0],[1,3,2,2],[1,1,4,1],[0,2,2,1]],[[1,2,1,0],[1,3,2,2],[1,1,2,2],[0,2,2,2]],[[1,2,1,0],[1,3,2,2],[1,1,2,2],[0,2,3,1]],[[1,2,1,0],[1,3,2,2],[1,1,2,2],[0,3,2,1]],[[1,2,1,0],[1,3,2,2],[1,1,2,3],[0,2,2,1]],[[1,2,1,0],[1,3,2,3],[1,1,2,2],[0,2,2,1]],[[1,2,1,0],[1,3,2,2],[1,0,3,2],[1,2,3,0]],[[1,2,1,0],[1,3,2,2],[1,0,3,2],[1,3,2,0]],[[1,2,1,0],[1,3,2,2],[1,0,3,2],[2,2,2,0]],[[1,2,1,0],[1,3,2,2],[1,0,3,3],[1,2,2,0]],[[1,2,1,0],[1,3,2,2],[1,0,4,2],[1,2,2,0]],[[1,2,1,0],[1,3,2,3],[1,0,3,2],[1,2,2,0]],[[1,2,1,0],[1,3,2,2],[1,0,3,2],[1,2,1,2]],[[1,2,1,0],[1,3,2,2],[1,0,3,3],[1,2,1,1]],[[1,2,1,0],[1,3,2,2],[1,0,4,2],[1,2,1,1]],[[1,2,1,0],[1,3,2,3],[1,0,3,2],[1,2,1,1]],[[1,2,1,0],[1,3,2,2],[1,0,3,2],[0,2,2,2]],[[2,1,1,1],[2,2,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,2],[2,2,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[3,2,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,1,3],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,1,2],[3,2,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,1,2],[2,2,0,3],[1,2,2,1]],[[1,1,1,1],[2,2,1,2],[2,2,0,2],[2,2,2,1]],[[1,1,1,1],[2,2,1,2],[2,2,0,2],[1,3,2,1]],[[1,1,1,1],[2,2,1,2],[2,2,0,2],[1,2,3,1]],[[1,1,1,1],[2,2,1,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,0],[1,3,2,2],[1,0,3,2],[0,2,3,1]],[[1,2,1,0],[1,3,2,2],[1,0,3,3],[0,2,2,1]],[[1,2,1,0],[1,3,2,3],[1,0,3,2],[0,2,2,1]],[[1,2,1,0],[1,3,2,2],[1,0,3,1],[1,2,2,2]],[[1,2,1,0],[1,3,2,2],[1,0,3,1],[1,2,3,1]],[[1,2,1,0],[1,3,2,2],[1,0,3,1],[1,3,2,1]],[[1,2,1,0],[1,3,2,2],[1,0,3,1],[2,2,2,1]],[[1,2,1,0],[1,3,2,2],[1,0,4,1],[1,2,2,1]],[[1,2,1,0],[1,3,2,2],[1,0,2,2],[1,2,2,2]],[[1,2,1,0],[1,3,2,2],[1,0,2,2],[1,2,3,1]],[[1,2,1,0],[1,3,2,2],[1,0,2,2],[1,3,2,1]],[[1,2,1,0],[1,3,2,2],[1,0,2,2],[2,2,2,1]],[[1,2,1,0],[1,3,2,2],[1,0,2,3],[1,2,2,1]],[[1,2,1,0],[1,3,2,3],[1,0,2,2],[1,2,2,1]],[[2,1,1,1],[2,2,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,2],[2,2,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[3,2,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,2,1,3],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,2,1,2],[3,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,2,1,2],[2,4,0,2],[0,2,2,1]],[[1,1,1,1],[2,2,1,2],[2,3,0,3],[0,2,2,1]],[[1,1,1,1],[2,2,1,2],[2,3,0,2],[0,3,2,1]],[[1,1,1,1],[2,2,1,2],[2,3,0,2],[0,2,3,1]],[[1,1,1,1],[2,2,1,2],[2,3,0,2],[0,2,2,2]],[[2,1,1,1],[2,2,1,2],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[3,2,1,2],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,2,1,2],[3,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,2,1,2],[2,4,0,2],[1,1,2,1]],[[1,1,1,1],[2,2,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,0],[1,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,1,0],[1,3,2,2],[0,3,4,2],[0,2,1,0]],[[1,2,1,0],[1,3,2,3],[0,3,3,2],[0,2,1,0]],[[1,2,1,0],[1,3,2,2],[0,3,3,2],[0,2,0,2]],[[1,2,1,0],[1,3,2,2],[0,3,3,3],[0,2,0,1]],[[1,2,1,0],[1,3,2,2],[0,3,4,2],[0,2,0,1]],[[1,2,1,0],[1,3,2,3],[0,3,3,2],[0,2,0,1]],[[1,2,1,0],[1,3,2,2],[0,3,3,2],[0,1,3,0]],[[1,2,1,0],[1,3,2,2],[0,3,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,2,2],[0,3,4,2],[0,1,2,0]],[[1,2,1,0],[1,3,2,3],[0,3,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,2,2],[0,3,3,2],[0,1,1,2]],[[1,2,1,0],[1,3,2,2],[0,3,3,3],[0,1,1,1]],[[1,2,1,0],[1,3,2,2],[0,3,4,2],[0,1,1,1]],[[1,2,1,0],[1,3,2,3],[0,3,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,2,2],[0,3,3,2],[0,0,2,2]],[[1,2,1,0],[1,3,2,2],[0,3,3,3],[0,0,2,1]],[[1,2,1,0],[1,3,2,2],[0,3,4,2],[0,0,2,1]],[[1,2,1,0],[1,3,2,3],[0,3,3,2],[0,0,2,1]],[[1,2,1,0],[1,3,2,2],[0,3,3,1],[1,3,1,0]],[[1,2,1,0],[1,3,2,2],[0,3,3,1],[2,2,1,0]],[[1,2,1,0],[1,3,2,2],[0,3,4,1],[1,2,1,0]],[[1,2,1,0],[1,3,2,2],[0,4,3,1],[1,2,1,0]],[[1,2,1,0],[1,4,2,2],[0,3,3,1],[1,2,1,0]],[[1,3,1,0],[1,3,2,2],[0,3,3,1],[1,2,1,0]],[[2,2,1,0],[1,3,2,2],[0,3,3,1],[1,2,1,0]],[[1,2,1,0],[1,3,2,2],[0,3,3,1],[1,3,0,1]],[[1,2,1,0],[1,3,2,2],[0,3,3,1],[2,2,0,1]],[[1,2,1,0],[1,3,2,2],[0,3,4,1],[1,2,0,1]],[[1,2,1,0],[1,3,2,2],[0,4,3,1],[1,2,0,1]],[[1,2,1,0],[1,4,2,2],[0,3,3,1],[1,2,0,1]],[[1,3,1,0],[1,3,2,2],[0,3,3,1],[1,2,0,1]],[[2,2,1,0],[1,3,2,2],[0,3,3,1],[1,2,0,1]],[[1,2,1,0],[1,3,2,2],[0,3,3,1],[1,1,3,0]],[[1,2,1,0],[1,3,2,2],[0,3,4,1],[1,1,2,0]],[[1,2,1,0],[1,3,2,2],[0,4,3,1],[1,1,2,0]],[[1,2,1,0],[1,4,2,2],[0,3,3,1],[1,1,2,0]],[[1,3,1,0],[1,3,2,2],[0,3,3,1],[1,1,2,0]],[[2,2,1,0],[1,3,2,2],[0,3,3,1],[1,1,2,0]],[[1,2,1,0],[1,3,2,2],[0,3,4,1],[1,1,1,1]],[[1,2,1,0],[1,3,2,2],[0,4,3,1],[1,1,1,1]],[[1,2,1,0],[1,4,2,2],[0,3,3,1],[1,1,1,1]],[[1,3,1,0],[1,3,2,2],[0,3,3,1],[1,1,1,1]],[[2,2,1,0],[1,3,2,2],[0,3,3,1],[1,1,1,1]],[[1,2,1,0],[1,3,2,2],[0,3,3,1],[0,1,2,2]],[[1,2,1,0],[1,3,2,2],[0,3,3,1],[0,1,3,1]],[[1,2,1,0],[1,3,2,2],[0,3,4,1],[0,1,2,1]],[[1,2,1,0],[1,3,2,2],[0,3,3,0],[1,3,1,1]],[[1,2,1,0],[1,3,2,2],[0,3,3,0],[2,2,1,1]],[[1,2,1,0],[1,3,2,2],[0,3,4,0],[1,2,1,1]],[[1,2,1,0],[1,3,2,2],[0,4,3,0],[1,2,1,1]],[[1,2,1,0],[1,4,2,2],[0,3,3,0],[1,2,1,1]],[[1,3,1,0],[1,3,2,2],[0,3,3,0],[1,2,1,1]],[[2,2,1,0],[1,3,2,2],[0,3,3,0],[1,2,1,1]],[[1,2,1,0],[1,3,2,2],[0,3,3,0],[1,1,2,2]],[[1,2,1,0],[1,3,2,2],[0,3,3,0],[1,1,3,1]],[[1,2,1,0],[1,3,2,2],[0,3,4,0],[1,1,2,1]],[[1,2,1,0],[1,3,2,2],[0,4,3,0],[1,1,2,1]],[[1,2,1,0],[1,4,2,2],[0,3,3,0],[1,1,2,1]],[[1,3,1,0],[1,3,2,2],[0,3,3,0],[1,1,2,1]],[[2,2,1,0],[1,3,2,2],[0,3,3,0],[1,1,2,1]],[[1,2,1,0],[1,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,2,1,0],[1,3,2,2],[0,3,2,2],[0,1,3,1]],[[1,2,1,0],[1,3,2,2],[0,3,2,3],[0,1,2,1]],[[1,2,1,0],[1,3,2,3],[0,3,2,2],[0,1,2,1]],[[1,2,1,0],[1,3,2,2],[0,3,2,1],[1,2,3,0]],[[1,2,1,0],[1,3,2,2],[0,3,2,1],[1,3,2,0]],[[1,2,1,0],[1,3,2,2],[0,3,2,1],[2,2,2,0]],[[1,2,1,0],[1,3,2,2],[0,4,2,1],[1,2,2,0]],[[1,2,1,0],[1,4,2,2],[0,3,2,1],[1,2,2,0]],[[1,3,1,0],[1,3,2,2],[0,3,2,1],[1,2,2,0]],[[2,2,1,0],[1,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,2,1,0],[1,3,2,2],[0,3,2,0],[1,2,2,2]],[[1,2,1,0],[1,3,2,2],[0,3,2,0],[1,2,3,1]],[[1,2,1,0],[1,3,2,2],[0,3,2,0],[1,3,2,1]],[[1,2,1,0],[1,3,2,2],[0,3,2,0],[2,2,2,1]],[[1,2,1,0],[1,3,2,2],[0,4,2,0],[1,2,2,1]],[[1,2,1,0],[1,4,2,2],[0,3,2,0],[1,2,2,1]],[[1,3,1,0],[1,3,2,2],[0,3,2,0],[1,2,2,1]],[[2,2,1,0],[1,3,2,2],[0,3,2,0],[1,2,2,1]],[[1,2,1,0],[1,3,2,2],[0,3,0,2],[1,2,2,2]],[[1,2,1,0],[1,3,2,2],[0,3,0,2],[1,2,3,1]],[[1,2,1,0],[1,3,2,2],[0,3,0,2],[1,3,2,1]],[[1,2,1,0],[1,3,2,2],[0,3,0,2],[2,2,2,1]],[[1,2,1,0],[1,3,2,2],[0,3,0,3],[1,2,2,1]],[[1,2,1,0],[1,3,2,2],[0,4,0,2],[1,2,2,1]],[[1,2,1,0],[1,3,2,3],[0,3,0,2],[1,2,2,1]],[[1,2,1,0],[1,4,2,2],[0,3,0,2],[1,2,2,1]],[[1,3,1,0],[1,3,2,2],[0,3,0,2],[1,2,2,1]],[[2,2,1,0],[1,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,2,1,0],[1,3,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,1,0],[1,3,2,2],[0,2,4,2],[1,2,1,0]],[[1,2,1,0],[1,3,2,3],[0,2,3,2],[1,2,1,0]],[[1,2,1,0],[1,3,2,2],[0,2,3,2],[1,2,0,2]],[[1,2,1,0],[1,3,2,2],[0,2,3,3],[1,2,0,1]],[[1,2,1,0],[1,3,2,2],[0,2,4,2],[1,2,0,1]],[[1,2,1,0],[1,3,2,3],[0,2,3,2],[1,2,0,1]],[[1,2,1,0],[1,3,2,2],[0,2,3,2],[1,1,3,0]],[[1,2,1,0],[1,3,2,2],[0,2,3,3],[1,1,2,0]],[[1,2,1,0],[1,3,2,2],[0,2,4,2],[1,1,2,0]],[[1,2,1,0],[1,3,2,3],[0,2,3,2],[1,1,2,0]],[[1,2,1,0],[1,3,2,2],[0,2,3,2],[1,1,1,2]],[[1,2,1,0],[1,3,2,2],[0,2,3,3],[1,1,1,1]],[[1,2,1,0],[1,3,2,2],[0,2,4,2],[1,1,1,1]],[[1,2,1,0],[1,3,2,3],[0,2,3,2],[1,1,1,1]],[[1,2,1,0],[1,3,2,2],[0,2,3,2],[1,0,2,2]],[[1,2,1,0],[1,3,2,2],[0,2,3,3],[1,0,2,1]],[[1,2,1,0],[1,3,2,2],[0,2,4,2],[1,0,2,1]],[[1,2,1,0],[1,3,2,3],[0,2,3,2],[1,0,2,1]],[[1,2,1,0],[1,3,2,2],[0,2,3,1],[1,2,3,0]],[[1,2,1,0],[1,3,2,2],[0,2,3,1],[1,3,2,0]],[[1,2,1,0],[1,3,2,2],[0,2,3,1],[2,2,2,0]],[[1,2,1,0],[1,3,2,2],[0,2,4,1],[1,2,2,0]],[[1,2,1,0],[1,3,2,2],[0,2,3,1],[1,1,2,2]],[[1,2,1,0],[1,3,2,2],[0,2,3,1],[1,1,3,1]],[[1,2,1,0],[1,3,2,2],[0,2,4,1],[1,1,2,1]],[[1,2,1,0],[1,3,2,2],[0,2,3,0],[1,2,2,2]],[[1,2,1,0],[1,3,2,2],[0,2,3,0],[1,2,3,1]],[[1,2,1,0],[1,3,2,2],[0,2,3,0],[1,3,2,1]],[[1,2,1,0],[1,3,2,2],[0,2,3,0],[2,2,2,1]],[[1,2,1,0],[1,3,2,2],[0,2,4,0],[1,2,2,1]],[[1,2,1,0],[1,3,2,2],[0,2,2,2],[1,1,2,2]],[[1,2,1,0],[1,3,2,2],[0,2,2,2],[1,1,3,1]],[[1,2,1,0],[1,3,2,2],[0,2,2,3],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[1,2,2,3],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[1,2,2,2],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[1,2,2,2],[1,3,2,1]],[[1,1,1,1],[2,2,2,0],[1,2,2,2],[1,2,3,1]],[[1,1,1,1],[2,2,2,0],[1,2,2,2],[1,2,2,2]],[[1,1,1,1],[2,2,2,0],[1,2,4,1],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[1,2,3,1],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[1,2,3,1],[1,3,2,1]],[[1,1,1,1],[2,2,2,0],[1,2,3,1],[1,2,3,1]],[[1,1,1,1],[2,2,2,0],[1,2,3,1],[1,2,2,2]],[[1,1,1,1],[2,2,2,0],[1,2,4,2],[1,2,1,1]],[[1,1,1,1],[2,2,2,0],[1,2,3,3],[1,2,1,1]],[[1,1,1,1],[2,2,2,0],[1,2,3,2],[1,2,1,2]],[[1,1,1,1],[2,2,2,0],[1,2,4,2],[1,2,2,0]],[[1,1,1,1],[2,2,2,0],[1,2,3,3],[1,2,2,0]],[[1,1,1,1],[2,2,2,0],[1,2,3,2],[2,2,2,0]],[[1,1,1,1],[2,2,2,0],[1,2,3,2],[1,3,2,0]],[[1,1,1,1],[2,2,2,0],[1,2,3,2],[1,2,3,0]],[[1,1,1,1],[2,2,2,0],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,1,3],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,2,2,0],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[2,2,2,0],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,2,2,0],[1,3,2,1],[1,2,2,2]],[[1,1,1,1],[2,2,2,0],[1,3,2,3],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,2,2],[1,1,3,1]],[[1,1,1,1],[2,2,2,0],[1,3,2,2],[1,1,2,2]],[[1,1,1,1],[2,2,2,0],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[2,2,2,0],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,2,2,0],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,2,2,0],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[2,2,2,0],[1,4,3,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,0],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,0],[1,3,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,0],[1,2,3,1]],[[1,1,1,1],[2,2,2,0],[1,4,3,1],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,4,1],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,1],[1,1,3,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,1],[1,1,2,2]],[[1,1,1,1],[2,2,2,0],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[2,2,2,0],[1,3,4,1],[1,2,1,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,1],[1,3,1,1]],[[1,1,1,1],[2,2,2,0],[1,4,3,2],[1,1,1,1]],[[1,1,1,1],[2,2,2,0],[1,3,4,2],[1,1,1,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,3],[1,1,1,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,2],[1,1,1,2]],[[1,1,1,1],[2,2,2,0],[1,4,3,2],[1,1,2,0]],[[1,1,1,1],[2,2,2,0],[1,3,4,2],[1,1,2,0]],[[1,1,1,1],[2,2,2,0],[1,3,3,3],[1,1,2,0]],[[1,1,1,1],[2,2,2,0],[1,3,3,2],[1,1,3,0]],[[1,1,1,1],[2,2,2,0],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[2,2,2,0],[1,3,4,2],[1,2,0,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,3],[1,2,0,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,2,2,0],[1,3,3,2],[1,2,0,2]],[[1,1,1,1],[2,2,2,0],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[2,2,2,0],[1,3,4,2],[1,2,1,0]],[[1,1,1,1],[2,2,2,0],[1,3,3,3],[1,2,1,0]],[[1,1,1,1],[2,2,2,0],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,2,2,0],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,3,2,3],[0,2,2,2],[1,1,2,1]],[[2,1,1,1],[2,2,2,0],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[3,2,2,0],[2,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[3,1,2,2],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,1,2,3],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,1,2,2],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,1,2,2],[1,3,2,1]],[[1,1,1,1],[2,2,2,0],[2,1,2,2],[1,2,3,1]],[[1,1,1,1],[2,2,2,0],[2,1,2,2],[1,2,2,2]],[[2,1,1,1],[2,2,2,0],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[3,2,2,0],[2,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[3,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,1,4,1],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,1,3,1],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,1,3,1],[1,3,2,1]],[[1,1,1,1],[2,2,2,0],[2,1,3,1],[1,2,3,1]],[[1,1,1,1],[2,2,2,0],[2,1,3,1],[1,2,2,2]],[[1,1,1,1],[2,2,2,0],[2,1,4,2],[1,2,1,1]],[[1,1,1,1],[2,2,2,0],[2,1,3,3],[1,2,1,1]],[[1,1,1,1],[2,2,2,0],[2,1,3,2],[1,2,1,2]],[[2,1,1,1],[2,2,2,0],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[3,2,2,0],[2,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,2,0],[3,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,1,4,2],[1,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,1,3,3],[1,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,1,3,2],[2,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,1,3,2],[1,3,2,0]],[[1,1,1,1],[2,2,2,0],[2,1,3,2],[1,2,3,0]],[[2,1,1,1],[2,2,2,0],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[3,2,2,0],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,1,3],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[2,2,2,0],[2,2,1,2],[1,2,2,2]],[[2,1,1,1],[2,2,2,0],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[3,2,2,0],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[2,2,2,0],[2,2,2,1],[1,2,2,2]],[[1,1,1,1],[2,2,2,0],[2,2,2,3],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,2,2],[0,3,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,2,2],[0,2,3,1]],[[1,1,1,1],[2,2,2,0],[2,2,2,2],[0,2,2,2]],[[2,1,1,1],[2,2,2,0],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[3,2,2,0],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,2,2,0],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[2,2,2,0],[2,2,2,2],[1,2,3,0]],[[2,1,1,1],[2,2,2,0],[2,2,3,0],[1,2,2,1]],[[1,1,1,1],[3,2,2,0],[2,2,3,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[3,2,3,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,0],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,0],[1,3,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,0],[1,2,3,1]],[[1,1,1,1],[2,2,2,0],[2,2,4,1],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,1],[0,3,2,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,1],[0,2,3,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,1],[0,2,2,2]],[[2,1,1,1],[2,2,2,0],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[3,2,2,0],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,2,2,0],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,1],[1,3,1,1]],[[1,1,1,1],[2,2,2,0],[2,2,4,2],[0,2,1,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,3],[0,2,1,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,2],[0,2,1,2]],[[1,1,1,1],[2,2,2,0],[2,2,4,2],[0,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,2,3,3],[0,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,2,3,2],[0,3,2,0]],[[1,1,1,1],[2,2,2,0],[2,2,3,2],[0,2,3,0]],[[2,1,1,1],[2,2,2,0],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[3,2,2,0],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,2,2,0],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[2,2,2,0],[2,2,3,2],[1,3,0,1]],[[2,1,1,1],[2,2,2,0],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[3,2,2,0],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,2,2,0],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,2,2,0],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[2,2,2,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[1,3,2,2],[0,1,3,2],[1,2,3,0]],[[1,2,1,0],[1,3,2,2],[0,1,3,2],[1,3,2,0]],[[1,2,1,0],[1,3,2,2],[0,1,3,2],[2,2,2,0]],[[1,2,1,0],[1,3,2,2],[0,1,3,3],[1,2,2,0]],[[1,2,1,0],[1,3,2,2],[0,1,4,2],[1,2,2,0]],[[1,2,1,0],[1,3,2,3],[0,1,3,2],[1,2,2,0]],[[1,2,1,0],[1,3,2,2],[0,1,3,2],[1,2,1,2]],[[1,2,1,0],[1,3,2,2],[0,1,3,3],[1,2,1,1]],[[2,1,1,1],[2,2,2,0],[2,3,0,2],[1,2,2,1]],[[1,1,1,1],[3,2,2,0],[2,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[3,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,0,2],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,0,2],[1,3,2,1]],[[2,1,1,1],[2,2,2,0],[2,3,1,1],[1,2,2,1]],[[1,1,1,1],[3,2,2,0],[2,3,1,1],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[3,3,1,1],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,1,1],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,1,1],[1,3,2,1]],[[2,1,1,1],[2,2,2,0],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[3,2,2,0],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,1,3],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[2,2,2,0],[2,3,1,2],[0,2,2,2]],[[2,1,1,1],[2,2,2,0],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[3,2,2,0],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,1,2],[2,1,2,1]],[[2,1,1,1],[2,2,2,0],[2,3,1,2],[1,2,2,0]],[[1,1,1,1],[3,2,2,0],[2,3,1,2],[1,2,2,0]],[[1,1,1,1],[2,2,2,0],[3,3,1,2],[1,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,1,2],[2,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,1,2],[1,3,2,0]],[[2,1,1,1],[2,2,2,0],[2,3,2,0],[1,2,2,1]],[[1,1,1,1],[3,2,2,0],[2,3,2,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[3,3,2,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,2,0],[2,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,2,0],[1,3,2,1]],[[2,1,1,1],[2,2,2,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[3,2,2,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[2,2,2,0],[2,3,2,1],[0,2,2,2]],[[2,1,1,1],[2,2,2,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[3,2,2,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,2,1],[2,1,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,2,3],[0,1,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,2,2],[0,1,3,1]],[[1,1,1,1],[2,2,2,0],[2,3,2,2],[0,1,2,2]],[[2,1,1,1],[2,2,2,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[3,2,2,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,2,2,0],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,2,2],[0,2,3,0]],[[1,1,1,1],[2,2,2,0],[2,3,2,3],[1,0,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,2,2],[1,0,3,1]],[[1,1,1,1],[2,2,2,0],[2,3,2,2],[1,0,2,2]],[[2,1,1,1],[2,2,2,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[3,2,2,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,2,2,0],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,2,2,0],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[1,3,2,2],[0,1,4,2],[1,2,1,1]],[[1,2,1,0],[1,3,2,3],[0,1,3,2],[1,2,1,1]],[[1,2,1,0],[1,3,2,2],[0,1,3,1],[1,2,2,2]],[[1,2,1,0],[1,3,2,2],[0,1,3,1],[1,2,3,1]],[[1,2,1,0],[1,3,2,2],[0,1,3,1],[1,3,2,1]],[[1,2,1,0],[1,3,2,2],[0,1,3,1],[2,2,2,1]],[[1,2,1,0],[1,3,2,2],[0,1,4,1],[1,2,2,1]],[[1,2,1,0],[1,3,2,2],[0,1,2,2],[1,2,2,2]],[[1,2,1,0],[1,3,2,2],[0,1,2,2],[1,2,3,1]],[[2,1,1,1],[2,2,2,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,1],[3,2,2,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[3,3,3,0],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,4,3,0],[0,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,0],[0,3,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,0],[0,2,3,1]],[[2,1,1,1],[2,2,2,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,1],[3,2,2,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[3,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[2,4,3,0],[1,1,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,0],[2,1,2,1]],[[2,1,1,1],[2,2,2,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[3,2,2,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,2,2,0],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,2,2,0],[2,4,3,1],[0,1,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,4,1],[0,1,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,1],[0,1,3,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,1],[0,1,2,2]],[[2,1,1,1],[2,2,2,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[3,2,2,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,2,2,0],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,2,2,0],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[2,2,2,0],[2,3,4,1],[0,2,1,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,1],[0,3,1,1]],[[2,1,1,1],[2,2,2,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[3,2,2,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,2,2,0],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,2,2,0],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,1],[2,0,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,1],[1,0,3,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,1],[1,0,2,2]],[[2,1,1,1],[2,2,2,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[3,2,2,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,2,2,0],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,2,2,0],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,2,2,0],[2,3,4,1],[1,1,1,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,1],[2,1,1,1]],[[2,1,1,1],[2,2,2,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,1],[3,2,2,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,2,0],[3,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,2,0],[2,4,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[1,3,2,2],[0,1,2,2],[1,3,2,1]],[[1,2,1,0],[1,3,2,2],[0,1,2,2],[2,2,2,1]],[[1,2,1,0],[1,3,2,2],[0,1,2,3],[1,2,2,1]],[[1,2,1,0],[1,3,2,3],[0,1,2,2],[1,2,2,1]],[[1,2,1,0],[1,3,2,2],[0,0,3,2],[1,2,2,2]],[[1,2,1,0],[1,3,2,2],[0,0,3,2],[1,2,3,1]],[[1,2,1,0],[1,3,2,2],[0,0,3,3],[1,2,2,1]],[[1,2,1,0],[1,3,2,3],[0,0,3,2],[1,2,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,4,2],[0,0,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,3],[0,0,2,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[0,0,2,2]],[[2,1,1,1],[2,2,2,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[3,2,2,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,2,2,0],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,2,2,0],[2,4,3,2],[0,1,1,1]],[[1,1,1,1],[2,2,2,0],[2,3,4,2],[0,1,1,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,3],[0,1,1,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[0,1,1,2]],[[2,1,1,1],[2,2,2,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[3,2,2,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,2,2,0],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,2,2,0],[2,4,3,2],[0,1,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,4,2],[0,1,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,3,3],[0,1,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[0,1,3,0]],[[2,1,1,1],[2,2,2,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[3,2,2,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,2,2,0],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,2,2,0],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[2,2,2,0],[2,3,4,2],[0,2,0,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,3],[0,2,0,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[0,3,0,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[0,2,0,2]],[[2,1,1,1],[2,2,2,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[3,2,2,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,2,2,0],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,2,2,0],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[2,2,2,0],[2,3,4,2],[0,2,1,0]],[[1,1,1,1],[2,2,2,0],[2,3,3,3],[0,2,1,0]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[0,3,1,0]],[[2,1,1,1],[2,2,2,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[3,2,2,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,2,2,0],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,2,2,0],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[2,2,2,0],[2,3,4,2],[1,0,1,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,3],[1,0,1,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[2,0,1,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[1,0,1,2]],[[2,1,1,1],[2,2,2,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[3,2,2,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,2,2,0],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,2,2,0],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,4,2],[1,0,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,3,3],[1,0,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[2,0,2,0]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[1,0,3,0]],[[2,1,1,1],[2,2,2,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[3,2,2,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,2,2,0],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,2,2,0],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[2,2,2,0],[2,3,4,2],[1,1,0,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,3],[1,1,0,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[2,1,0,1]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[1,1,0,2]],[[2,1,1,1],[2,2,2,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[3,2,2,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,2,2,0],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,2,2,0],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[2,2,2,0],[2,3,4,2],[1,1,1,0]],[[1,1,1,1],[2,2,2,0],[2,3,3,3],[1,1,1,0]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[2,1,1,0]],[[2,1,1,1],[2,2,2,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[3,2,2,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,2,2,0],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,2,2,0],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[2,2,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[1,4,2,1],[2,3,3,2],[1,0,1,0]],[[1,3,1,0],[1,3,2,1],[2,3,3,2],[1,0,1,0]],[[2,2,1,0],[1,3,2,1],[2,3,3,2],[1,0,1,0]],[[1,2,1,0],[1,4,2,1],[2,3,3,2],[1,0,0,1]],[[1,3,1,0],[1,3,2,1],[2,3,3,2],[1,0,0,1]],[[2,2,1,0],[1,3,2,1],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[2,2,2,1],[1,2,4,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,1],[1,2,3,0],[2,2,2,1]],[[1,1,1,1],[2,2,2,1],[1,2,3,0],[1,3,2,1]],[[1,1,1,1],[2,2,2,1],[1,2,3,0],[1,2,3,1]],[[1,1,1,1],[2,2,2,1],[1,2,3,0],[1,2,2,2]],[[1,1,1,1],[2,2,2,1],[1,2,4,1],[1,2,2,0]],[[1,1,1,1],[2,2,2,1],[1,2,3,1],[2,2,2,0]],[[1,1,1,1],[2,2,2,1],[1,2,3,1],[1,3,2,0]],[[1,1,1,1],[2,2,2,1],[1,2,3,1],[1,2,3,0]],[[1,1,1,1],[2,2,2,1],[1,4,2,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,1],[1,3,2,0],[2,2,2,1]],[[1,1,1,1],[2,2,2,1],[1,3,2,0],[1,3,2,1]],[[1,1,1,1],[2,2,2,1],[1,3,2,0],[1,2,3,1]],[[1,1,1,1],[2,2,2,1],[1,3,2,0],[1,2,2,2]],[[1,1,1,1],[2,2,2,1],[1,4,2,1],[1,2,2,0]],[[1,1,1,1],[2,2,2,1],[1,3,2,1],[2,2,2,0]],[[1,1,1,1],[2,2,2,1],[1,3,2,1],[1,3,2,0]],[[1,1,1,1],[2,2,2,1],[1,3,2,1],[1,2,3,0]],[[1,1,1,1],[2,2,2,1],[1,4,3,0],[1,1,2,1]],[[1,1,1,1],[2,2,2,1],[1,3,4,0],[1,1,2,1]],[[1,1,1,1],[2,2,2,1],[1,3,3,0],[1,1,3,1]],[[1,1,1,1],[2,2,2,1],[1,3,3,0],[1,1,2,2]],[[1,1,1,1],[2,2,2,1],[1,4,3,0],[1,2,1,1]],[[1,1,1,1],[2,2,2,1],[1,3,4,0],[1,2,1,1]],[[1,1,1,1],[2,2,2,1],[1,3,3,0],[2,2,1,1]],[[1,1,1,1],[2,2,2,1],[1,3,3,0],[1,3,1,1]],[[1,1,1,1],[2,2,2,1],[1,4,3,1],[1,1,2,0]],[[1,1,1,1],[2,2,2,1],[1,3,4,1],[1,1,2,0]],[[1,1,1,1],[2,2,2,1],[1,3,3,1],[1,1,3,0]],[[1,1,1,1],[2,2,2,1],[1,4,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,2,1],[1,3,4,1],[1,2,0,1]],[[1,1,1,1],[2,2,2,1],[1,3,3,1],[2,2,0,1]],[[1,1,1,1],[2,2,2,1],[1,3,3,1],[1,3,0,1]],[[1,1,1,1],[2,2,2,1],[1,4,3,1],[1,2,1,0]],[[1,1,1,1],[2,2,2,1],[1,3,4,1],[1,2,1,0]],[[1,1,1,1],[2,2,2,1],[1,3,3,1],[2,2,1,0]],[[1,1,1,1],[2,2,2,1],[1,3,3,1],[1,3,1,0]],[[2,1,1,1],[2,2,2,1],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[3,2,2,1],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,1],[3,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,1],[2,1,4,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,1],[2,1,3,0],[2,2,2,1]],[[1,1,1,1],[2,2,2,1],[2,1,3,0],[1,3,2,1]],[[1,1,1,1],[2,2,2,1],[2,1,3,0],[1,2,3,1]],[[1,1,1,1],[2,2,2,1],[2,1,3,0],[1,2,2,2]],[[2,1,1,1],[2,2,2,1],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[3,2,2,1],[2,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,2,2,1],[3,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,2,2,1],[2,1,4,1],[1,2,2,0]],[[1,1,1,1],[2,2,2,1],[2,1,3,1],[2,2,2,0]],[[1,1,1,1],[2,2,2,1],[2,1,3,1],[1,3,2,0]],[[1,1,1,1],[2,2,2,1],[2,1,3,1],[1,2,3,0]],[[2,1,1,1],[2,2,2,1],[2,2,2,0],[1,2,2,1]],[[1,1,1,1],[3,2,2,1],[2,2,2,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,1],[3,2,2,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,1],[2,2,2,0],[2,2,2,1]],[[1,1,1,1],[2,2,2,1],[2,2,2,0],[1,3,2,1]],[[1,1,1,1],[2,2,2,1],[2,2,2,0],[1,2,3,1]],[[1,1,1,1],[2,2,2,1],[2,2,2,0],[1,2,2,2]],[[2,1,1,1],[2,2,2,1],[2,2,2,1],[1,2,2,0]],[[1,1,1,1],[3,2,2,1],[2,2,2,1],[1,2,2,0]],[[1,1,1,1],[2,2,2,1],[3,2,2,1],[1,2,2,0]],[[1,1,1,1],[2,2,2,1],[2,2,2,1],[2,2,2,0]],[[1,1,1,1],[2,2,2,1],[2,2,2,1],[1,3,2,0]],[[1,1,1,1],[2,2,2,1],[2,2,2,1],[1,2,3,0]],[[1,2,1,0],[1,4,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,2,2,1],[2,2,4,0],[0,2,2,1]],[[1,1,1,1],[2,2,2,1],[2,2,3,0],[0,3,2,1]],[[1,1,1,1],[2,2,2,1],[2,2,3,0],[0,2,3,1]],[[1,1,1,1],[2,2,2,1],[2,2,3,0],[0,2,2,2]],[[2,1,1,1],[2,2,2,1],[2,2,3,0],[1,2,1,1]],[[1,1,1,1],[3,2,2,1],[2,2,3,0],[1,2,1,1]],[[1,1,1,1],[2,2,2,1],[3,2,3,0],[1,2,1,1]],[[1,1,1,1],[2,2,2,1],[2,2,3,0],[2,2,1,1]],[[1,1,1,1],[2,2,2,1],[2,2,3,0],[1,3,1,1]],[[1,1,1,1],[2,2,2,1],[2,2,4,1],[0,2,2,0]],[[1,1,1,1],[2,2,2,1],[2,2,3,1],[0,3,2,0]],[[1,1,1,1],[2,2,2,1],[2,2,3,1],[0,2,3,0]],[[2,1,1,1],[2,2,2,1],[2,2,3,1],[1,2,0,1]],[[1,1,1,1],[3,2,2,1],[2,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,2,1],[3,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,2,1],[2,2,3,1],[2,2,0,1]],[[1,1,1,1],[2,2,2,1],[2,2,3,1],[1,3,0,1]],[[2,1,1,1],[2,2,2,1],[2,2,3,1],[1,2,1,0]],[[1,1,1,1],[3,2,2,1],[2,2,3,1],[1,2,1,0]],[[1,1,1,1],[2,2,2,1],[3,2,3,1],[1,2,1,0]],[[1,1,1,1],[2,2,2,1],[2,2,3,1],[2,2,1,0]],[[1,1,1,1],[2,2,2,1],[2,2,3,1],[1,3,1,0]],[[1,3,1,0],[1,3,2,1],[2,3,3,1],[1,0,1,1]],[[2,2,1,0],[1,3,2,1],[2,3,3,1],[1,0,1,1]],[[2,1,1,1],[2,2,2,1],[2,3,1,0],[1,2,2,1]],[[1,1,1,1],[3,2,2,1],[2,3,1,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,1],[3,3,1,0],[1,2,2,1]],[[1,1,1,1],[2,2,2,1],[2,3,1,0],[2,2,2,1]],[[1,1,1,1],[2,2,2,1],[2,3,1,0],[1,3,2,1]],[[2,1,1,1],[2,2,2,1],[2,3,1,1],[1,2,2,0]],[[1,1,1,1],[3,2,2,1],[2,3,1,1],[1,2,2,0]],[[1,1,1,1],[2,2,2,1],[3,3,1,1],[1,2,2,0]],[[1,1,1,1],[2,2,2,1],[2,3,1,1],[2,2,2,0]],[[1,1,1,1],[2,2,2,1],[2,3,1,1],[1,3,2,0]],[[2,1,1,1],[2,2,2,1],[2,3,2,0],[0,2,2,1]],[[1,1,1,1],[3,2,2,1],[2,3,2,0],[0,2,2,1]],[[1,1,1,1],[2,2,2,1],[3,3,2,0],[0,2,2,1]],[[1,1,1,1],[2,2,2,1],[2,4,2,0],[0,2,2,1]],[[1,1,1,1],[2,2,2,1],[2,3,2,0],[0,3,2,1]],[[1,1,1,1],[2,2,2,1],[2,3,2,0],[0,2,3,1]],[[1,1,1,1],[2,2,2,1],[2,3,2,0],[0,2,2,2]],[[2,1,1,1],[2,2,2,1],[2,3,2,0],[1,1,2,1]],[[1,1,1,1],[3,2,2,1],[2,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,2,2,1],[3,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,2,2,1],[2,4,2,0],[1,1,2,1]],[[1,1,1,1],[2,2,2,1],[2,3,2,0],[2,1,2,1]],[[2,1,1,1],[2,2,2,1],[2,3,2,1],[0,2,2,0]],[[1,1,1,1],[3,2,2,1],[2,3,2,1],[0,2,2,0]],[[1,1,1,1],[2,2,2,1],[3,3,2,1],[0,2,2,0]],[[1,1,1,1],[2,2,2,1],[2,4,2,1],[0,2,2,0]],[[1,1,1,1],[2,2,2,1],[2,3,2,1],[0,3,2,0]],[[1,1,1,1],[2,2,2,1],[2,3,2,1],[0,2,3,0]],[[2,1,1,1],[2,2,2,1],[2,3,2,1],[1,1,2,0]],[[1,1,1,1],[3,2,2,1],[2,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,2,2,1],[3,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,2,2,1],[2,4,2,1],[1,1,2,0]],[[1,1,1,1],[2,2,2,1],[2,3,2,1],[2,1,2,0]],[[2,1,1,1],[2,2,2,1],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[3,2,2,1],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,2,2,1],[3,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,2,2,1],[2,4,3,0],[0,1,2,1]],[[1,1,1,1],[2,2,2,1],[2,3,4,0],[0,1,2,1]],[[1,1,1,1],[2,2,2,1],[2,3,3,0],[0,1,3,1]],[[1,1,1,1],[2,2,2,1],[2,3,3,0],[0,1,2,2]],[[2,1,1,1],[2,2,2,1],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[3,2,2,1],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,2,2,1],[3,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,2,2,1],[2,4,3,0],[0,2,1,1]],[[1,1,1,1],[2,2,2,1],[2,3,4,0],[0,2,1,1]],[[1,1,1,1],[2,2,2,1],[2,3,3,0],[0,3,1,1]],[[2,1,1,1],[2,2,2,1],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[3,2,2,1],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,2,2,1],[3,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,2,2,1],[2,4,3,0],[1,0,2,1]],[[1,1,1,1],[2,2,2,1],[2,3,4,0],[1,0,2,1]],[[1,1,1,1],[2,2,2,1],[2,3,3,0],[2,0,2,1]],[[1,1,1,1],[2,2,2,1],[2,3,3,0],[1,0,3,1]],[[1,1,1,1],[2,2,2,1],[2,3,3,0],[1,0,2,2]],[[2,1,1,1],[2,2,2,1],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[3,2,2,1],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,2,2,1],[3,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,2,2,1],[2,4,3,0],[1,1,1,1]],[[1,1,1,1],[2,2,2,1],[2,3,4,0],[1,1,1,1]],[[1,1,1,1],[2,2,2,1],[2,3,3,0],[2,1,1,1]],[[2,1,1,1],[2,2,2,1],[2,3,3,0],[1,2,0,1]],[[1,1,1,1],[3,2,2,1],[2,3,3,0],[1,2,0,1]],[[1,1,1,1],[2,2,2,1],[3,3,3,0],[1,2,0,1]],[[1,1,1,1],[2,2,2,1],[2,4,3,0],[1,2,0,1]],[[1,1,1,1],[2,2,2,1],[2,3,3,0],[2,2,0,1]],[[2,1,1,1],[2,2,2,1],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[3,2,2,1],[2,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,2,2,1],[3,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,2,2,1],[2,4,3,1],[0,1,1,1]],[[1,1,1,1],[2,2,2,1],[2,3,4,1],[0,1,1,1]],[[2,1,1,1],[2,2,2,1],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[3,2,2,1],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,2,2,1],[3,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,2,2,1],[2,4,3,1],[0,1,2,0]],[[1,1,1,1],[2,2,2,1],[2,3,4,1],[0,1,2,0]],[[1,1,1,1],[2,2,2,1],[2,3,3,1],[0,1,3,0]],[[2,1,1,1],[2,2,2,1],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[3,2,2,1],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,2,2,1],[3,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,2,2,1],[2,4,3,1],[0,2,0,1]],[[1,1,1,1],[2,2,2,1],[2,3,4,1],[0,2,0,1]],[[1,1,1,1],[2,2,2,1],[2,3,3,1],[0,3,0,1]],[[2,1,1,1],[2,2,2,1],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[3,2,2,1],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,2,2,1],[3,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,2,2,1],[2,4,3,1],[0,2,1,0]],[[1,1,1,1],[2,2,2,1],[2,3,4,1],[0,2,1,0]],[[1,1,1,1],[2,2,2,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[1,4,2,1],[2,2,3,2],[1,2,0,0]],[[1,3,1,0],[1,3,2,1],[2,2,3,2],[1,2,0,0]],[[2,1,1,1],[2,2,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[3,2,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,2,2,1],[3,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,2,2,1],[2,4,3,1],[1,0,1,1]],[[1,1,1,1],[2,2,2,1],[2,3,4,1],[1,0,1,1]],[[1,1,1,1],[2,2,2,1],[2,3,3,1],[2,0,1,1]],[[2,1,1,1],[2,2,2,1],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[3,2,2,1],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,2,2,1],[3,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,2,2,1],[2,4,3,1],[1,0,2,0]],[[1,1,1,1],[2,2,2,1],[2,3,4,1],[1,0,2,0]],[[1,1,1,1],[2,2,2,1],[2,3,3,1],[2,0,2,0]],[[1,1,1,1],[2,2,2,1],[2,3,3,1],[1,0,3,0]],[[2,1,1,1],[2,2,2,1],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[3,2,2,1],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,2,2,1],[3,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,2,2,1],[2,4,3,1],[1,1,0,1]],[[1,1,1,1],[2,2,2,1],[2,3,4,1],[1,1,0,1]],[[1,1,1,1],[2,2,2,1],[2,3,3,1],[2,1,0,1]],[[2,1,1,1],[2,2,2,1],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[3,2,2,1],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,2,2,1],[3,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,2,2,1],[2,4,3,1],[1,1,1,0]],[[1,1,1,1],[2,2,2,1],[2,3,4,1],[1,1,1,0]],[[1,1,1,1],[2,2,2,1],[2,3,3,1],[2,1,1,0]],[[2,2,1,0],[1,3,2,1],[2,2,3,2],[1,2,0,0]],[[1,2,1,0],[1,4,2,1],[2,2,3,2],[1,1,1,0]],[[2,1,1,1],[2,2,2,1],[2,3,3,1],[1,2,0,0]],[[1,1,1,1],[3,2,2,1],[2,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,2,2,1],[3,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,2,2,1],[2,4,3,1],[1,2,0,0]],[[1,1,1,1],[2,2,2,1],[2,3,3,1],[2,2,0,0]],[[1,3,1,0],[1,3,2,1],[2,2,3,2],[1,1,1,0]],[[2,2,1,0],[1,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,2,1,0],[1,4,2,1],[2,2,3,2],[1,1,0,1]],[[1,3,1,0],[1,3,2,1],[2,2,3,2],[1,1,0,1]],[[2,2,1,0],[1,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,2,1,0],[1,4,2,1],[2,2,3,2],[1,0,2,0]],[[1,3,1,0],[1,3,2,1],[2,2,3,2],[1,0,2,0]],[[2,2,1,0],[1,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,2,1,0],[1,4,2,1],[2,2,3,2],[1,0,1,1]],[[1,3,1,0],[1,3,2,1],[2,2,3,2],[1,0,1,1]],[[2,2,1,0],[1,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,2,1,0],[1,4,2,1],[2,2,3,2],[0,2,1,0]],[[1,3,1,0],[1,3,2,1],[2,2,3,2],[0,2,1,0]],[[2,2,1,0],[1,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,2,1,0],[1,4,2,1],[2,2,3,2],[0,2,0,1]],[[1,3,1,0],[1,3,2,1],[2,2,3,2],[0,2,0,1]],[[2,2,1,0],[1,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,2,1,0],[1,4,2,1],[2,2,3,2],[0,1,2,0]],[[1,3,1,0],[1,3,2,1],[2,2,3,2],[0,1,2,0]],[[2,2,1,0],[1,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,2,1,0],[1,4,2,1],[2,2,3,2],[0,1,1,1]],[[1,3,1,0],[1,3,2,1],[2,2,3,2],[0,1,1,1]],[[2,2,1,0],[1,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,2,1,0],[1,4,2,1],[2,2,3,1],[1,2,0,1]],[[1,3,1,0],[1,3,2,1],[2,2,3,1],[1,2,0,1]],[[2,2,1,0],[1,3,2,1],[2,2,3,1],[1,2,0,1]],[[1,2,1,0],[1,4,2,1],[2,2,3,1],[1,1,1,1]],[[1,3,1,0],[1,3,2,1],[2,2,3,1],[1,1,1,1]],[[2,2,1,0],[1,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,2,1,0],[1,4,2,1],[2,2,3,1],[1,0,2,1]],[[1,3,1,0],[1,3,2,1],[2,2,3,1],[1,0,2,1]],[[2,2,1,0],[1,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,2,1,0],[1,4,2,1],[2,2,3,1],[0,2,1,1]],[[1,3,1,0],[1,3,2,1],[2,2,3,1],[0,2,1,1]],[[2,2,1,0],[1,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[1,4,2,1],[2,2,3,1],[0,1,2,1]],[[1,3,1,0],[1,3,2,1],[2,2,3,1],[0,1,2,1]],[[2,2,1,0],[1,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,2,1,0],[1,4,2,1],[2,2,3,0],[1,1,2,1]],[[1,3,1,0],[1,3,2,1],[2,2,3,0],[1,1,2,1]],[[2,2,1,0],[1,3,2,1],[2,2,3,0],[1,1,2,1]],[[1,2,1,0],[1,4,2,1],[2,2,3,0],[0,2,2,1]],[[1,3,1,0],[1,3,2,1],[2,2,3,0],[0,2,2,1]],[[2,2,1,0],[1,3,2,1],[2,2,3,0],[0,2,2,1]],[[1,2,1,0],[1,4,2,1],[2,2,2,2],[1,1,2,0]],[[1,3,1,0],[1,3,2,1],[2,2,2,2],[1,1,2,0]],[[2,2,1,0],[1,3,2,1],[2,2,2,2],[1,1,2,0]],[[1,2,1,0],[1,4,2,1],[2,2,2,2],[0,2,2,0]],[[1,3,1,0],[1,3,2,1],[2,2,2,2],[0,2,2,0]],[[2,2,1,0],[1,3,2,1],[2,2,2,2],[0,2,2,0]],[[1,2,1,0],[1,4,2,1],[2,2,2,1],[1,1,2,1]],[[1,3,1,0],[1,3,2,1],[2,2,2,1],[1,1,2,1]],[[2,2,1,0],[1,3,2,1],[2,2,2,1],[1,1,2,1]],[[1,2,1,0],[1,4,2,1],[2,2,2,1],[0,2,2,1]],[[1,3,1,0],[1,3,2,1],[2,2,2,1],[0,2,2,1]],[[2,2,1,0],[1,3,2,1],[2,2,2,1],[0,2,2,1]],[[1,2,1,0],[1,4,2,1],[2,2,1,2],[1,1,2,1]],[[1,3,1,0],[1,3,2,1],[2,2,1,2],[1,1,2,1]],[[2,2,1,0],[1,3,2,1],[2,2,1,2],[1,1,2,1]],[[1,2,1,0],[1,4,2,1],[2,2,1,2],[0,2,2,1]],[[1,3,1,0],[1,3,2,1],[2,2,1,2],[0,2,2,1]],[[2,2,1,0],[1,3,2,1],[2,2,1,2],[0,2,2,1]],[[1,2,1,0],[1,4,2,1],[2,1,3,2],[1,2,1,0]],[[1,3,1,0],[1,3,2,1],[2,1,3,2],[1,2,1,0]],[[2,2,1,0],[1,3,2,1],[2,1,3,2],[1,2,1,0]],[[1,2,1,0],[1,4,2,1],[2,1,3,2],[1,2,0,1]],[[1,3,1,0],[1,3,2,1],[2,1,3,2],[1,2,0,1]],[[2,2,1,0],[1,3,2,1],[2,1,3,2],[1,2,0,1]],[[1,2,1,0],[1,4,2,1],[2,1,3,1],[1,2,1,1]],[[1,3,1,0],[1,3,2,1],[2,1,3,1],[1,2,1,1]],[[2,2,1,0],[1,3,2,1],[2,1,3,1],[1,2,1,1]],[[1,2,1,0],[1,4,2,1],[2,1,3,0],[1,2,2,1]],[[1,3,1,0],[1,3,2,1],[2,1,3,0],[1,2,2,1]],[[2,2,1,0],[1,3,2,1],[2,1,3,0],[1,2,2,1]],[[1,2,1,0],[1,4,2,1],[2,1,2,2],[1,2,2,0]],[[1,3,1,0],[1,3,2,1],[2,1,2,2],[1,2,2,0]],[[2,2,1,0],[1,3,2,1],[2,1,2,2],[1,2,2,0]],[[1,2,1,0],[1,4,2,1],[2,1,2,1],[1,2,2,1]],[[1,3,1,0],[1,3,2,1],[2,1,2,1],[1,2,2,1]],[[2,2,1,0],[1,3,2,1],[2,1,2,1],[1,2,2,1]],[[1,2,1,0],[1,4,2,1],[2,1,1,2],[1,2,2,1]],[[1,3,1,0],[1,3,2,1],[2,1,1,2],[1,2,2,1]],[[2,2,1,0],[1,3,2,1],[2,1,1,2],[1,2,2,1]],[[1,2,1,0],[1,4,2,1],[2,0,3,2],[1,2,2,0]],[[1,3,1,0],[1,3,2,1],[2,0,3,2],[1,2,2,0]],[[2,2,1,0],[1,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[1,4,2,1],[2,0,3,1],[1,2,2,1]],[[1,3,1,0],[1,3,2,1],[2,0,3,1],[1,2,2,1]],[[2,2,1,0],[1,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,2,1,0],[1,4,2,1],[2,0,2,2],[1,2,2,1]],[[1,3,1,0],[1,3,2,1],[2,0,2,2],[1,2,2,1]],[[2,2,1,0],[1,3,2,1],[2,0,2,2],[1,2,2,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,1,0],[1,4,2,1],[1,3,3,2],[1,2,0,0]],[[1,3,1,0],[1,3,2,1],[1,3,3,2],[1,2,0,0]],[[2,2,1,0],[1,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,2,1,0],[1,3,2,1],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[1,3,2,1],[1,3,4,2],[1,1,1,0]],[[1,2,1,0],[1,3,2,1],[1,4,3,2],[1,1,1,0]],[[1,2,1,0],[1,4,2,1],[1,3,3,2],[1,1,1,0]],[[1,3,1,0],[1,3,2,1],[1,3,3,2],[1,1,1,0]],[[2,2,1,0],[1,3,2,1],[1,3,3,2],[1,1,1,0]],[[1,2,1,0],[1,3,2,1],[1,3,3,2],[1,1,0,2]],[[1,2,1,0],[1,3,2,1],[1,3,3,3],[1,1,0,1]],[[1,2,1,0],[1,3,2,1],[1,3,4,2],[1,1,0,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,2],[1,1,0,1]],[[1,2,1,0],[1,4,2,1],[1,3,3,2],[1,1,0,1]],[[1,3,1,0],[1,3,2,1],[1,3,3,2],[1,1,0,1]],[[2,2,1,0],[1,3,2,1],[1,3,3,2],[1,1,0,1]],[[1,2,1,0],[1,3,2,1],[1,3,3,2],[1,0,3,0]],[[1,2,1,0],[1,3,2,1],[1,3,3,3],[1,0,2,0]],[[1,2,1,0],[1,3,2,1],[1,3,4,2],[1,0,2,0]],[[1,2,1,0],[1,3,2,1],[1,4,3,2],[1,0,2,0]],[[1,2,1,0],[1,4,2,1],[1,3,3,2],[1,0,2,0]],[[1,3,1,0],[1,3,2,1],[1,3,3,2],[1,0,2,0]],[[2,2,1,0],[1,3,2,1],[1,3,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,2,1],[1,3,3,2],[1,0,1,2]],[[1,2,1,0],[1,3,2,1],[1,3,3,3],[1,0,1,1]],[[1,2,1,0],[1,3,2,1],[1,3,4,2],[1,0,1,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,2],[1,0,1,1]],[[1,2,1,0],[1,4,2,1],[1,3,3,2],[1,0,1,1]],[[1,3,1,0],[1,3,2,1],[1,3,3,2],[1,0,1,1]],[[2,2,1,0],[1,3,2,1],[1,3,3,2],[1,0,1,1]],[[1,2,1,0],[1,3,2,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[1,3,2,1],[1,3,3,3],[0,2,1,0]],[[1,2,1,0],[1,3,2,1],[1,3,4,2],[0,2,1,0]],[[1,2,1,0],[1,3,2,1],[1,4,3,2],[0,2,1,0]],[[1,2,1,0],[1,4,2,1],[1,3,3,2],[0,2,1,0]],[[1,3,1,0],[1,3,2,1],[1,3,3,2],[0,2,1,0]],[[2,2,1,0],[1,3,2,1],[1,3,3,2],[0,2,1,0]],[[1,2,1,0],[1,3,2,1],[1,3,3,2],[0,2,0,2]],[[1,2,1,0],[1,3,2,1],[1,3,3,2],[0,3,0,1]],[[1,2,1,0],[1,3,2,1],[1,3,3,3],[0,2,0,1]],[[1,2,1,0],[1,3,2,1],[1,3,4,2],[0,2,0,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,2],[0,2,0,1]],[[1,2,1,0],[1,4,2,1],[1,3,3,2],[0,2,0,1]],[[1,3,1,0],[1,3,2,1],[1,3,3,2],[0,2,0,1]],[[2,2,1,0],[1,3,2,1],[1,3,3,2],[0,2,0,1]],[[1,2,1,0],[1,3,2,1],[1,3,3,2],[0,1,3,0]],[[1,2,1,0],[1,3,2,1],[1,3,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,2,1],[1,3,4,2],[0,1,2,0]],[[1,2,1,0],[1,3,2,1],[1,4,3,2],[0,1,2,0]],[[1,2,1,0],[1,4,2,1],[1,3,3,2],[0,1,2,0]],[[1,3,1,0],[1,3,2,1],[1,3,3,2],[0,1,2,0]],[[2,2,1,0],[1,3,2,1],[1,3,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,2,1],[1,3,3,2],[0,1,1,2]],[[1,2,1,0],[1,3,2,1],[1,3,3,3],[0,1,1,1]],[[1,2,1,0],[1,3,2,1],[1,3,4,2],[0,1,1,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,2],[0,1,1,1]],[[1,2,1,0],[1,4,2,1],[1,3,3,2],[0,1,1,1]],[[1,3,1,0],[1,3,2,1],[1,3,3,2],[0,1,1,1]],[[2,2,1,0],[1,3,2,1],[1,3,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,2,1],[1,3,3,2],[0,0,2,2]],[[1,2,1,0],[1,3,2,1],[1,3,3,3],[0,0,2,1]],[[1,2,1,0],[1,3,2,1],[1,3,4,2],[0,0,2,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,1],[1,2,0,1]],[[1,2,1,0],[1,4,2,1],[1,3,3,1],[1,2,0,1]],[[1,3,1,0],[1,3,2,1],[1,3,3,1],[1,2,0,1]],[[2,2,1,0],[1,3,2,1],[1,3,3,1],[1,2,0,1]],[[1,2,1,0],[1,3,2,1],[1,3,4,1],[1,1,1,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,1],[1,1,1,1]],[[1,2,1,0],[1,4,2,1],[1,3,3,1],[1,1,1,1]],[[1,3,1,0],[1,3,2,1],[1,3,3,1],[1,1,1,1]],[[2,2,1,0],[1,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,2,1,0],[1,3,2,1],[1,3,3,1],[1,0,2,2]],[[1,2,1,0],[1,3,2,1],[1,3,3,1],[1,0,3,1]],[[1,2,1,0],[1,3,2,1],[1,3,4,1],[1,0,2,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,1],[1,0,2,1]],[[1,2,1,0],[1,4,2,1],[1,3,3,1],[1,0,2,1]],[[1,3,1,0],[1,3,2,1],[1,3,3,1],[1,0,2,1]],[[2,2,1,0],[1,3,2,1],[1,3,3,1],[1,0,2,1]],[[1,2,1,0],[1,3,2,1],[1,3,3,1],[0,3,1,1]],[[1,2,1,0],[1,3,2,1],[1,3,4,1],[0,2,1,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,1],[0,2,1,1]],[[1,2,1,0],[1,4,2,1],[1,3,3,1],[0,2,1,1]],[[1,3,1,0],[1,3,2,1],[1,3,3,1],[0,2,1,1]],[[2,2,1,0],[1,3,2,1],[1,3,3,1],[0,2,1,1]],[[1,2,1,0],[1,3,2,1],[1,3,3,1],[0,1,2,2]],[[1,2,1,0],[1,3,2,1],[1,3,3,1],[0,1,3,1]],[[1,2,1,0],[1,3,2,1],[1,3,4,1],[0,1,2,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,1],[0,1,2,1]],[[1,2,1,0],[1,4,2,1],[1,3,3,1],[0,1,2,1]],[[1,3,1,0],[1,3,2,1],[1,3,3,1],[0,1,2,1]],[[2,2,1,0],[1,3,2,1],[1,3,3,1],[0,1,2,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,0],[1,1,2,1]],[[1,2,1,0],[1,4,2,1],[1,3,3,0],[1,1,2,1]],[[1,3,1,0],[1,3,2,1],[1,3,3,0],[1,1,2,1]],[[2,2,1,0],[1,3,2,1],[1,3,3,0],[1,1,2,1]],[[1,2,1,0],[1,3,2,1],[1,3,3,0],[0,2,3,1]],[[1,2,1,0],[1,3,2,1],[1,3,3,0],[0,3,2,1]],[[1,2,1,0],[1,3,2,1],[1,4,3,0],[0,2,2,1]],[[1,2,1,0],[1,4,2,1],[1,3,3,0],[0,2,2,1]],[[1,3,1,0],[1,3,2,1],[1,3,3,0],[0,2,2,1]],[[2,2,1,0],[1,3,2,1],[1,3,3,0],[0,2,2,1]],[[1,2,1,0],[1,3,2,1],[1,4,2,2],[1,1,2,0]],[[1,2,1,0],[1,4,2,1],[1,3,2,2],[1,1,2,0]],[[1,3,1,0],[1,3,2,1],[1,3,2,2],[1,1,2,0]],[[2,2,1,0],[1,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,2,1,0],[1,3,2,1],[1,3,2,2],[1,0,2,2]],[[1,2,1,0],[1,3,2,1],[1,3,2,2],[1,0,3,1]],[[1,2,1,0],[1,3,2,1],[1,3,2,3],[1,0,2,1]],[[1,2,1,0],[1,3,2,1],[1,3,2,2],[0,2,3,0]],[[1,2,1,0],[1,3,2,1],[1,3,2,2],[0,3,2,0]],[[1,2,1,0],[1,3,2,1],[1,4,2,2],[0,2,2,0]],[[1,2,1,0],[1,4,2,1],[1,3,2,2],[0,2,2,0]],[[1,3,1,0],[1,3,2,1],[1,3,2,2],[0,2,2,0]],[[2,2,1,0],[1,3,2,1],[1,3,2,2],[0,2,2,0]],[[1,2,1,0],[1,3,2,1],[1,3,2,2],[0,1,2,2]],[[1,2,1,0],[1,3,2,1],[1,3,2,2],[0,1,3,1]],[[1,2,1,0],[1,3,2,1],[1,3,2,3],[0,1,2,1]],[[1,2,1,0],[1,3,2,1],[1,4,2,1],[1,1,2,1]],[[1,2,1,0],[1,4,2,1],[1,3,2,1],[1,1,2,1]],[[1,3,1,0],[1,3,2,1],[1,3,2,1],[1,1,2,1]],[[2,2,1,0],[1,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,2,1,0],[1,3,2,1],[1,3,2,1],[0,2,2,2]],[[1,2,1,0],[1,3,2,1],[1,3,2,1],[0,2,3,1]],[[1,2,1,0],[1,3,2,1],[1,3,2,1],[0,3,2,1]],[[1,2,1,0],[1,3,2,1],[1,4,2,1],[0,2,2,1]],[[1,2,1,0],[1,4,2,1],[1,3,2,1],[0,2,2,1]],[[1,3,1,0],[1,3,2,1],[1,3,2,1],[0,2,2,1]],[[2,2,1,0],[1,3,2,1],[1,3,2,1],[0,2,2,1]],[[1,2,1,0],[1,3,2,1],[1,4,1,2],[1,1,2,1]],[[1,2,1,0],[1,4,2,1],[1,3,1,2],[1,1,2,1]],[[1,3,1,0],[1,3,2,1],[1,3,1,2],[1,1,2,1]],[[2,2,1,0],[1,3,2,1],[1,3,1,2],[1,1,2,1]],[[1,2,1,0],[1,3,2,1],[1,3,1,2],[0,2,2,2]],[[1,2,1,0],[1,3,2,1],[1,3,1,2],[0,2,3,1]],[[1,2,1,0],[1,3,2,1],[1,3,1,2],[0,3,2,1]],[[1,2,1,0],[1,3,2,1],[1,3,1,3],[0,2,2,1]],[[1,2,1,0],[1,3,2,1],[1,4,1,2],[0,2,2,1]],[[1,2,1,0],[1,4,2,1],[1,3,1,2],[0,2,2,1]],[[1,3,1,0],[1,3,2,1],[1,3,1,2],[0,2,2,1]],[[2,2,1,0],[1,3,2,1],[1,3,1,2],[0,2,2,1]],[[1,2,1,0],[1,3,2,1],[1,2,3,2],[0,2,3,0]],[[1,2,1,0],[1,3,2,1],[1,2,3,2],[0,3,2,0]],[[1,2,1,0],[1,3,2,1],[1,2,3,3],[0,2,2,0]],[[1,2,1,0],[1,3,2,1],[1,2,4,2],[0,2,2,0]],[[1,2,1,0],[1,3,2,1],[1,2,3,2],[0,2,1,2]],[[1,2,1,0],[1,3,2,1],[1,2,3,3],[0,2,1,1]],[[1,2,1,0],[1,3,2,1],[1,2,4,2],[0,2,1,1]],[[1,2,1,0],[1,3,2,1],[1,2,3,1],[0,2,2,2]],[[1,2,1,0],[1,3,2,1],[1,2,3,1],[0,2,3,1]],[[1,2,1,0],[1,3,2,1],[1,2,3,1],[0,3,2,1]],[[1,2,1,0],[1,3,2,1],[1,2,4,1],[0,2,2,1]],[[1,2,1,0],[1,3,2,1],[1,2,2,2],[0,2,2,2]],[[1,2,1,0],[1,3,2,1],[1,2,2,2],[0,2,3,1]],[[1,2,1,0],[1,3,2,1],[1,2,2,2],[0,3,2,1]],[[1,2,1,0],[1,3,2,1],[1,2,2,3],[0,2,2,1]],[[1,2,1,0],[1,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,3,2,1],[0,3,3,2],[2,2,1,0]],[[1,2,1,0],[1,3,2,1],[0,3,3,3],[1,2,1,0]],[[1,2,1,0],[1,3,2,1],[0,3,4,2],[1,2,1,0]],[[1,2,1,0],[1,3,2,1],[0,4,3,2],[1,2,1,0]],[[1,2,1,0],[1,4,2,1],[0,3,3,2],[1,2,1,0]],[[1,3,1,0],[1,3,2,1],[0,3,3,2],[1,2,1,0]],[[2,2,1,0],[1,3,2,1],[0,3,3,2],[1,2,1,0]],[[1,2,1,0],[1,3,2,1],[0,3,3,2],[1,2,0,2]],[[1,2,1,0],[1,3,2,1],[0,3,3,2],[1,3,0,1]],[[1,2,1,0],[1,3,2,1],[0,3,3,2],[2,2,0,1]],[[1,2,1,0],[1,3,2,1],[0,3,3,3],[1,2,0,1]],[[1,2,1,0],[1,3,2,1],[0,3,4,2],[1,2,0,1]],[[1,2,1,0],[1,3,2,1],[0,4,3,2],[1,2,0,1]],[[1,2,1,0],[1,4,2,1],[0,3,3,2],[1,2,0,1]],[[1,3,1,0],[1,3,2,1],[0,3,3,2],[1,2,0,1]],[[2,2,1,0],[1,3,2,1],[0,3,3,2],[1,2,0,1]],[[1,2,1,0],[1,3,2,1],[0,3,3,2],[1,1,3,0]],[[1,2,1,0],[1,3,2,1],[0,3,3,3],[1,1,2,0]],[[1,2,1,0],[1,3,2,1],[0,3,4,2],[1,1,2,0]],[[1,2,1,0],[1,3,2,1],[0,4,3,2],[1,1,2,0]],[[1,2,1,0],[1,4,2,1],[0,3,3,2],[1,1,2,0]],[[1,3,1,0],[1,3,2,1],[0,3,3,2],[1,1,2,0]],[[2,2,1,0],[1,3,2,1],[0,3,3,2],[1,1,2,0]],[[1,2,1,0],[1,3,2,1],[0,3,3,2],[1,1,1,2]],[[1,2,1,0],[1,3,2,1],[0,3,3,3],[1,1,1,1]],[[1,2,1,0],[1,3,2,1],[0,3,4,2],[1,1,1,1]],[[1,2,1,0],[1,3,2,1],[0,4,3,2],[1,1,1,1]],[[1,2,1,0],[1,4,2,1],[0,3,3,2],[1,1,1,1]],[[1,3,1,0],[1,3,2,1],[0,3,3,2],[1,1,1,1]],[[2,2,1,0],[1,3,2,1],[0,3,3,2],[1,1,1,1]],[[1,2,1,0],[1,3,2,1],[0,3,3,2],[1,0,2,2]],[[1,2,1,0],[1,3,2,1],[0,3,3,3],[1,0,2,1]],[[1,2,1,0],[1,3,2,1],[0,3,4,2],[1,0,2,1]],[[1,2,1,0],[1,3,2,1],[0,3,3,1],[1,3,1,1]],[[1,2,1,0],[1,3,2,1],[0,3,3,1],[2,2,1,1]],[[1,2,1,0],[1,3,2,1],[0,3,4,1],[1,2,1,1]],[[1,2,1,0],[1,3,2,1],[0,4,3,1],[1,2,1,1]],[[1,2,1,0],[1,4,2,1],[0,3,3,1],[1,2,1,1]],[[1,3,1,0],[1,3,2,1],[0,3,3,1],[1,2,1,1]],[[2,2,1,0],[1,3,2,1],[0,3,3,1],[1,2,1,1]],[[1,2,1,0],[1,3,2,1],[0,3,3,1],[1,1,2,2]],[[1,2,1,0],[1,3,2,1],[0,3,3,1],[1,1,3,1]],[[1,2,1,0],[1,3,2,1],[0,3,4,1],[1,1,2,1]],[[1,2,1,0],[1,3,2,1],[0,4,3,1],[1,1,2,1]],[[1,2,1,0],[1,4,2,1],[0,3,3,1],[1,1,2,1]],[[1,3,1,0],[1,3,2,1],[0,3,3,1],[1,1,2,1]],[[2,2,1,0],[1,3,2,1],[0,3,3,1],[1,1,2,1]],[[1,2,1,0],[1,3,2,1],[0,3,3,0],[1,2,3,1]],[[1,2,1,0],[1,3,2,1],[0,3,3,0],[1,3,2,1]],[[1,2,1,0],[1,3,2,1],[0,3,3,0],[2,2,2,1]],[[1,2,1,0],[1,3,2,1],[0,4,3,0],[1,2,2,1]],[[1,2,1,0],[1,4,2,1],[0,3,3,0],[1,2,2,1]],[[1,3,1,0],[1,3,2,1],[0,3,3,0],[1,2,2,1]],[[2,2,1,0],[1,3,2,1],[0,3,3,0],[1,2,2,1]],[[1,2,1,0],[1,3,2,1],[0,3,2,2],[1,2,3,0]],[[1,2,1,0],[1,3,2,1],[0,3,2,2],[1,3,2,0]],[[1,2,1,0],[1,3,2,1],[0,3,2,2],[2,2,2,0]],[[1,2,1,0],[1,3,2,1],[0,4,2,2],[1,2,2,0]],[[1,2,1,0],[1,4,2,1],[0,3,2,2],[1,2,2,0]],[[1,3,1,0],[1,3,2,1],[0,3,2,2],[1,2,2,0]],[[2,2,1,0],[1,3,2,1],[0,3,2,2],[1,2,2,0]],[[1,2,1,0],[1,3,2,1],[0,3,2,2],[1,1,2,2]],[[1,2,1,0],[1,3,2,1],[0,3,2,2],[1,1,3,1]],[[1,2,1,0],[1,3,2,1],[0,3,2,3],[1,1,2,1]],[[1,2,1,0],[1,3,2,1],[0,3,2,1],[1,2,2,2]],[[1,2,1,0],[1,3,2,1],[0,3,2,1],[1,2,3,1]],[[1,2,1,0],[1,3,2,1],[0,3,2,1],[1,3,2,1]],[[1,2,1,0],[1,3,2,1],[0,3,2,1],[2,2,2,1]],[[1,2,1,0],[1,3,2,1],[0,4,2,1],[1,2,2,1]],[[1,2,1,0],[1,4,2,1],[0,3,2,1],[1,2,2,1]],[[1,3,1,0],[1,3,2,1],[0,3,2,1],[1,2,2,1]],[[2,2,1,0],[1,3,2,1],[0,3,2,1],[1,2,2,1]],[[1,2,1,0],[1,3,2,1],[0,3,1,2],[1,2,2,2]],[[1,2,1,0],[1,3,2,1],[0,3,1,2],[1,2,3,1]],[[1,2,1,0],[1,3,2,1],[0,3,1,2],[1,3,2,1]],[[1,2,1,0],[1,3,2,1],[0,3,1,2],[2,2,2,1]],[[1,2,1,0],[1,3,2,1],[0,3,1,3],[1,2,2,1]],[[1,2,1,0],[1,3,2,1],[0,4,1,2],[1,2,2,1]],[[1,2,1,0],[1,4,2,1],[0,3,1,2],[1,2,2,1]],[[1,3,1,0],[1,3,2,1],[0,3,1,2],[1,2,2,1]],[[2,2,1,0],[1,3,2,1],[0,3,1,2],[1,2,2,1]],[[1,2,1,0],[1,3,2,1],[0,2,3,2],[1,2,3,0]],[[1,2,1,0],[1,3,2,1],[0,2,3,2],[1,3,2,0]],[[1,2,1,0],[1,3,2,1],[0,2,3,2],[2,2,2,0]],[[1,2,1,0],[1,3,2,1],[0,2,3,3],[1,2,2,0]],[[1,2,1,0],[1,3,2,1],[0,2,4,2],[1,2,2,0]],[[1,2,1,0],[1,3,2,1],[0,2,3,2],[1,2,1,2]],[[1,2,1,0],[1,3,2,1],[0,2,3,3],[1,2,1,1]],[[1,2,1,0],[1,3,2,1],[0,2,4,2],[1,2,1,1]],[[1,2,1,0],[1,3,2,1],[0,2,3,1],[1,2,2,2]],[[1,2,1,0],[1,3,2,1],[0,2,3,1],[1,2,3,1]],[[1,2,1,0],[1,3,2,1],[0,2,3,1],[1,3,2,1]],[[1,2,1,0],[1,3,2,1],[0,2,3,1],[2,2,2,1]],[[1,2,1,0],[1,3,2,1],[0,2,4,1],[1,2,2,1]],[[1,2,1,0],[1,3,2,1],[0,2,2,2],[1,2,2,2]],[[1,2,1,0],[1,3,2,1],[0,2,2,2],[1,2,3,1]],[[1,2,1,0],[1,3,2,1],[0,2,2,2],[1,3,2,1]],[[1,2,1,0],[1,3,2,1],[0,2,2,2],[2,2,2,1]],[[1,2,1,0],[1,3,2,1],[0,2,2,3],[1,2,2,1]],[[1,2,1,0],[1,4,2,0],[2,2,3,2],[1,1,1,1]],[[1,3,1,0],[1,3,2,0],[2,2,3,2],[1,1,1,1]],[[2,2,1,0],[1,3,2,0],[2,2,3,2],[1,1,1,1]],[[1,2,1,0],[1,4,2,0],[2,2,3,2],[1,0,2,1]],[[1,3,1,0],[1,3,2,0],[2,2,3,2],[1,0,2,1]],[[2,2,1,0],[1,3,2,0],[2,2,3,2],[1,0,2,1]],[[1,2,1,0],[1,4,2,0],[2,2,3,2],[0,2,1,1]],[[1,3,1,0],[1,3,2,0],[2,2,3,2],[0,2,1,1]],[[2,2,1,0],[1,3,2,0],[2,2,3,2],[0,2,1,1]],[[1,2,1,0],[1,4,2,0],[2,2,3,2],[0,1,2,1]],[[1,3,1,0],[1,3,2,0],[2,2,3,2],[0,1,2,1]],[[2,2,1,0],[1,3,2,0],[2,2,3,2],[0,1,2,1]],[[1,2,1,0],[1,4,2,0],[2,2,2,2],[1,1,2,1]],[[1,3,1,0],[1,3,2,0],[2,2,2,2],[1,1,2,1]],[[2,2,1,0],[1,3,2,0],[2,2,2,2],[1,1,2,1]],[[1,2,1,0],[1,4,2,0],[2,2,2,2],[0,2,2,1]],[[1,3,1,0],[1,3,2,0],[2,2,2,2],[0,2,2,1]],[[2,2,1,0],[1,3,2,0],[2,2,2,2],[0,2,2,1]],[[1,2,1,0],[1,4,2,0],[2,1,3,2],[1,2,1,1]],[[1,3,1,0],[1,3,2,0],[2,1,3,2],[1,2,1,1]],[[2,2,1,0],[1,3,2,0],[2,1,3,2],[1,2,1,1]],[[1,2,1,0],[1,4,2,0],[2,1,2,2],[1,2,2,1]],[[1,3,1,0],[1,3,2,0],[2,1,2,2],[1,2,2,1]],[[2,2,1,0],[1,3,2,0],[2,1,2,2],[1,2,2,1]],[[1,2,1,0],[1,4,2,0],[2,0,3,2],[1,2,2,1]],[[1,3,1,0],[1,3,2,0],[2,0,3,2],[1,2,2,1]],[[2,2,1,0],[1,3,2,0],[2,0,3,2],[1,2,2,1]],[[1,2,1,0],[1,3,2,0],[1,3,4,2],[1,1,1,1]],[[1,2,1,0],[1,3,2,0],[1,4,3,2],[1,1,1,1]],[[1,2,1,0],[1,4,2,0],[1,3,3,2],[1,1,1,1]],[[1,3,1,0],[1,3,2,0],[1,3,3,2],[1,1,1,1]],[[2,2,1,0],[1,3,2,0],[1,3,3,2],[1,1,1,1]],[[1,2,1,0],[1,3,2,0],[1,3,3,2],[1,0,2,2]],[[1,2,1,0],[1,3,2,0],[1,3,3,2],[1,0,3,1]],[[1,2,1,0],[1,3,2,0],[1,3,4,2],[1,0,2,1]],[[1,2,1,0],[1,3,2,0],[1,4,3,2],[1,0,2,1]],[[1,2,1,0],[1,4,2,0],[1,3,3,2],[1,0,2,1]],[[1,3,1,0],[1,3,2,0],[1,3,3,2],[1,0,2,1]],[[2,2,1,0],[1,3,2,0],[1,3,3,2],[1,0,2,1]],[[1,2,1,0],[1,3,2,0],[1,3,3,2],[0,3,1,1]],[[1,2,1,0],[1,3,2,0],[1,3,4,2],[0,2,1,1]],[[1,2,1,0],[1,3,2,0],[1,4,3,2],[0,2,1,1]],[[1,2,1,0],[1,4,2,0],[1,3,3,2],[0,2,1,1]],[[1,3,1,0],[1,3,2,0],[1,3,3,2],[0,2,1,1]],[[2,2,1,0],[1,3,2,0],[1,3,3,2],[0,2,1,1]],[[1,2,1,0],[1,3,2,0],[1,3,3,2],[0,1,2,2]],[[1,2,1,0],[1,3,2,0],[1,3,3,2],[0,1,3,1]],[[1,2,1,0],[1,3,2,0],[1,3,4,2],[0,1,2,1]],[[1,2,1,0],[1,3,2,0],[1,4,3,2],[0,1,2,1]],[[1,2,1,0],[1,4,2,0],[1,3,3,2],[0,1,2,1]],[[1,3,1,0],[1,3,2,0],[1,3,3,2],[0,1,2,1]],[[2,2,1,0],[1,3,2,0],[1,3,3,2],[0,1,2,1]],[[1,2,1,0],[1,3,2,0],[1,4,2,2],[1,1,2,1]],[[1,2,1,0],[1,4,2,0],[1,3,2,2],[1,1,2,1]],[[1,3,1,0],[1,3,2,0],[1,3,2,2],[1,1,2,1]],[[2,2,1,0],[1,3,2,0],[1,3,2,2],[1,1,2,1]],[[1,2,1,0],[1,3,2,0],[1,3,2,2],[0,2,2,2]],[[1,2,1,0],[1,3,2,0],[1,3,2,2],[0,2,3,1]],[[1,2,1,0],[1,3,2,0],[1,3,2,2],[0,3,2,1]],[[1,2,1,0],[1,3,2,0],[1,4,2,2],[0,2,2,1]],[[1,2,1,0],[1,4,2,0],[1,3,2,2],[0,2,2,1]],[[1,3,1,0],[1,3,2,0],[1,3,2,2],[0,2,2,1]],[[2,2,1,0],[1,3,2,0],[1,3,2,2],[0,2,2,1]],[[1,2,1,0],[1,3,2,0],[1,2,3,2],[0,2,2,2]],[[1,2,1,0],[1,3,2,0],[1,2,3,2],[0,2,3,1]],[[1,2,1,0],[1,3,2,0],[1,2,3,2],[0,3,2,1]],[[1,2,1,0],[1,3,2,0],[1,2,4,2],[0,2,2,1]],[[1,2,1,0],[1,3,2,0],[0,3,3,2],[1,3,1,1]],[[1,2,1,0],[1,3,2,0],[0,3,3,2],[2,2,1,1]],[[1,2,1,0],[1,3,2,0],[0,3,4,2],[1,2,1,1]],[[1,2,1,0],[1,3,2,0],[0,4,3,2],[1,2,1,1]],[[1,2,1,0],[1,4,2,0],[0,3,3,2],[1,2,1,1]],[[1,3,1,0],[1,3,2,0],[0,3,3,2],[1,2,1,1]],[[2,2,1,0],[1,3,2,0],[0,3,3,2],[1,2,1,1]],[[1,2,1,0],[1,3,2,0],[0,3,3,2],[1,1,2,2]],[[1,2,1,0],[1,3,2,0],[0,3,3,2],[1,1,3,1]],[[1,2,1,0],[1,3,2,0],[0,3,4,2],[1,1,2,1]],[[1,2,1,0],[1,3,2,0],[0,4,3,2],[1,1,2,1]],[[1,2,1,0],[1,4,2,0],[0,3,3,2],[1,1,2,1]],[[1,3,1,0],[1,3,2,0],[0,3,3,2],[1,1,2,1]],[[2,2,1,0],[1,3,2,0],[0,3,3,2],[1,1,2,1]],[[1,2,1,0],[1,3,2,0],[0,3,2,2],[1,2,2,2]],[[1,2,1,0],[1,3,2,0],[0,3,2,2],[1,2,3,1]],[[1,2,1,0],[1,3,2,0],[0,3,2,2],[1,3,2,1]],[[1,2,1,0],[1,3,2,0],[0,3,2,2],[2,2,2,1]],[[1,2,1,0],[1,3,2,0],[0,4,2,2],[1,2,2,1]],[[1,2,1,0],[1,4,2,0],[0,3,2,2],[1,2,2,1]],[[1,3,1,0],[1,3,2,0],[0,3,2,2],[1,2,2,1]],[[2,2,1,0],[1,3,2,0],[0,3,2,2],[1,2,2,1]],[[1,2,1,0],[1,3,2,0],[0,2,3,2],[1,2,2,2]],[[1,2,1,0],[1,3,2,0],[0,2,3,2],[1,2,3,1]],[[1,2,1,0],[1,3,2,0],[0,2,3,2],[1,3,2,1]],[[1,2,1,0],[1,3,2,0],[0,2,3,2],[2,2,2,1]],[[1,2,1,0],[1,3,2,0],[0,2,4,2],[1,2,2,1]],[[1,2,1,0],[1,4,1,2],[2,3,3,2],[1,0,1,0]],[[1,3,1,0],[1,3,1,2],[2,3,3,2],[1,0,1,0]],[[2,2,1,0],[1,3,1,2],[2,3,3,2],[1,0,1,0]],[[1,2,1,0],[1,4,1,2],[2,3,3,2],[1,0,0,1]],[[1,3,1,0],[1,3,1,2],[2,3,3,2],[1,0,0,1]],[[2,2,1,0],[1,3,1,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[2,2,3,0],[0,2,2,3],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,2,2,2],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,2,2,2],[1,3,2,1]],[[1,1,1,1],[2,2,3,0],[0,2,2,2],[1,2,3,1]],[[1,1,1,1],[2,2,3,0],[0,2,2,2],[1,2,2,2]],[[1,1,1,1],[2,2,4,0],[0,2,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,2,4,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,2,3,1],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,2,3,1],[1,3,2,1]],[[1,1,1,1],[2,2,3,0],[0,2,3,1],[1,2,3,1]],[[1,1,1,1],[2,2,3,0],[0,2,3,1],[1,2,2,2]],[[1,1,1,1],[2,2,4,0],[0,2,3,2],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[0,2,4,2],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[0,2,3,3],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[0,2,3,2],[1,2,1,2]],[[1,1,1,1],[2,2,4,0],[0,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[0,2,4,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[0,2,3,3],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[0,2,3,2],[2,2,2,0]],[[1,1,1,1],[2,2,3,0],[0,2,3,2],[1,3,2,0]],[[1,1,1,1],[2,2,3,0],[0,2,3,2],[1,2,3,0]],[[1,1,1,1],[2,2,3,0],[0,4,1,2],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,1,3],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,2,3,0],[0,3,1,2],[1,2,2,2]],[[1,1,1,1],[2,2,3,0],[0,4,2,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,2,3,0],[0,3,2,1],[1,2,2,2]],[[1,1,1,1],[2,2,3,0],[0,3,2,3],[1,1,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,2,2],[1,1,3,1]],[[1,1,1,1],[2,2,3,0],[0,3,2,2],[1,1,2,2]],[[1,1,1,1],[2,2,3,0],[0,4,2,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[0,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,2,3,0],[0,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,2,3,0],[0,3,2,2],[1,2,3,0]],[[1,1,1,1],[2,2,3,0],[0,4,3,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,0],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,0],[1,3,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,0],[1,2,3,1]],[[1,1,1,1],[2,2,4,0],[0,3,3,1],[1,1,2,1]],[[1,1,1,1],[2,2,3,0],[0,4,3,1],[1,1,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,4,1],[1,1,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,1],[1,1,3,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,1],[1,1,2,2]],[[1,1,1,1],[2,2,4,0],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[0,4,3,1],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[0,3,4,1],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,1],[1,3,1,1]],[[1,1,1,1],[2,2,4,0],[0,3,3,2],[1,0,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,4,2],[1,0,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,3],[1,0,2,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,2],[1,0,2,2]],[[1,1,1,1],[2,2,4,0],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,2,3,0],[0,4,3,2],[1,1,1,1]],[[1,1,1,1],[2,2,3,0],[0,3,4,2],[1,1,1,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,3],[1,1,1,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,2],[1,1,1,2]],[[1,1,1,1],[2,2,4,0],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,2,3,0],[0,4,3,2],[1,1,2,0]],[[1,1,1,1],[2,2,3,0],[0,3,4,2],[1,1,2,0]],[[1,1,1,1],[2,2,3,0],[0,3,3,3],[1,1,2,0]],[[1,1,1,1],[2,2,3,0],[0,3,3,2],[1,1,3,0]],[[1,1,1,1],[2,2,4,0],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,2,3,0],[0,4,3,2],[1,2,0,1]],[[1,1,1,1],[2,2,3,0],[0,3,4,2],[1,2,0,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,3],[1,2,0,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,2,3,0],[0,3,3,2],[1,2,0,2]],[[1,1,1,1],[2,2,4,0],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,2,3,0],[0,4,3,2],[1,2,1,0]],[[1,1,1,1],[2,2,3,0],[0,3,4,2],[1,2,1,0]],[[1,1,1,1],[2,2,3,0],[0,3,3,3],[1,2,1,0]],[[1,1,1,1],[2,2,3,0],[0,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,2,3,0],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,4,1,2],[2,2,3,2],[1,2,0,0]],[[1,3,1,0],[1,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,1,1,1],[2,2,3,0],[1,2,2,3],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,2,2,2],[0,3,2,1]],[[1,1,1,1],[2,2,3,0],[1,2,2,2],[0,2,3,1]],[[1,1,1,1],[2,2,3,0],[1,2,2,2],[0,2,2,2]],[[1,1,1,1],[2,2,4,0],[1,2,3,1],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,2,4,1],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,2,3,1],[0,3,2,1]],[[1,1,1,1],[2,2,3,0],[1,2,3,1],[0,2,3,1]],[[1,1,1,1],[2,2,3,0],[1,2,3,1],[0,2,2,2]],[[1,1,1,1],[2,2,4,0],[1,2,3,2],[0,2,1,1]],[[1,1,1,1],[2,2,3,0],[1,2,4,2],[0,2,1,1]],[[1,1,1,1],[2,2,3,0],[1,2,3,3],[0,2,1,1]],[[1,1,1,1],[2,2,3,0],[1,2,3,2],[0,2,1,2]],[[1,1,1,1],[2,2,4,0],[1,2,3,2],[0,2,2,0]],[[1,1,1,1],[2,2,3,0],[1,2,4,2],[0,2,2,0]],[[1,1,1,1],[2,2,3,0],[1,2,3,3],[0,2,2,0]],[[1,1,1,1],[2,2,3,0],[1,2,3,2],[0,3,2,0]],[[1,1,1,1],[2,2,3,0],[1,2,3,2],[0,2,3,0]],[[2,2,1,0],[1,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,1,1,1],[2,2,3,0],[1,4,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,0,3],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,0,2],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,0,2],[1,3,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,0,2],[1,2,3,1]],[[1,1,1,1],[2,2,3,0],[1,3,0,2],[1,2,2,2]],[[1,1,1,1],[2,2,3,0],[1,4,1,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,1,1],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,1,1],[1,3,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,1,1],[1,2,3,1]],[[1,1,1,1],[2,2,3,0],[1,3,1,1],[1,2,2,2]],[[1,1,1,1],[2,2,3,0],[1,4,1,2],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,1,3],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,1,2],[0,3,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,1,2],[0,2,3,1]],[[1,1,1,1],[2,2,3,0],[1,3,1,2],[0,2,2,2]],[[1,1,1,1],[2,2,3,0],[1,4,1,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[1,3,1,2],[2,2,2,0]],[[1,1,1,1],[2,2,3,0],[1,3,1,2],[1,3,2,0]],[[1,1,1,1],[2,2,3,0],[1,3,1,2],[1,2,3,0]],[[1,1,1,1],[2,2,3,0],[1,4,2,1],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,1],[0,3,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,1],[0,2,3,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,1],[0,2,2,2]],[[1,1,1,1],[2,2,3,0],[1,4,2,1],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,1],[2,2,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,1],[1,3,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,3],[0,1,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,2],[0,1,3,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,2],[0,1,2,2]],[[1,1,1,1],[2,2,3,0],[1,4,2,2],[0,2,2,0]],[[1,1,1,1],[2,2,3,0],[1,3,2,2],[0,3,2,0]],[[1,1,1,1],[2,2,3,0],[1,3,2,2],[0,2,3,0]],[[1,1,1,1],[2,2,3,0],[1,3,2,3],[1,0,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,2],[1,0,3,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,2],[1,0,2,2]],[[1,1,1,1],[2,2,3,0],[1,4,2,2],[1,2,0,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,2],[2,2,0,1]],[[1,1,1,1],[2,2,3,0],[1,3,2,2],[1,3,0,1]],[[1,1,1,1],[2,2,3,0],[1,4,2,2],[1,2,1,0]],[[1,1,1,1],[2,2,3,0],[1,3,2,2],[2,2,1,0]],[[1,1,1,1],[2,2,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,1,0],[1,4,1,2],[2,2,3,2],[1,1,1,0]],[[1,3,1,0],[1,3,1,2],[2,2,3,2],[1,1,1,0]],[[2,2,1,0],[1,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,2,1,0],[1,4,1,2],[2,2,3,2],[1,1,0,1]],[[1,3,1,0],[1,3,1,2],[2,2,3,2],[1,1,0,1]],[[2,2,1,0],[1,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[2,2,3,0],[1,4,3,0],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,0],[0,3,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,0],[0,2,3,1]],[[1,1,1,1],[2,2,4,0],[1,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,2,3,0],[1,4,3,1],[0,1,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,4,1],[0,1,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,1],[0,1,3,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,1],[0,1,2,2]],[[1,1,1,1],[2,2,4,0],[1,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,2,3,0],[1,4,3,1],[0,2,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,4,1],[0,2,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,1],[0,3,1,1]],[[1,1,1,1],[2,2,4,0],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,2,3,0],[1,4,3,1],[1,0,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,4,1],[1,0,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,1],[1,0,3,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,1],[1,0,2,2]],[[1,1,1,1],[2,2,4,0],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,2,3,0],[1,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,4,1],[1,1,1,1]],[[1,2,1,0],[1,4,1,2],[2,2,3,2],[1,0,2,0]],[[1,3,1,0],[1,3,1,2],[2,2,3,2],[1,0,2,0]],[[2,2,1,0],[1,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,2,1,0],[1,4,1,2],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,2,4,0],[1,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,4,2],[0,0,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,3],[0,0,2,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,2],[0,0,2,2]],[[1,1,1,1],[2,2,4,0],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,2,3,0],[1,4,3,2],[0,1,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,4,2],[0,1,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,3],[0,1,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,2],[0,1,1,2]],[[1,1,1,1],[2,2,4,0],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,2,3,0],[1,4,3,2],[0,1,2,0]],[[1,1,1,1],[2,2,3,0],[1,3,4,2],[0,1,2,0]],[[1,1,1,1],[2,2,3,0],[1,3,3,3],[0,1,2,0]],[[1,1,1,1],[2,2,3,0],[1,3,3,2],[0,1,3,0]],[[1,1,1,1],[2,2,4,0],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,2,3,0],[1,4,3,2],[0,2,0,1]],[[1,1,1,1],[2,2,3,0],[1,3,4,2],[0,2,0,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,3],[0,2,0,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,2],[0,3,0,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,2],[0,2,0,2]],[[1,1,1,1],[2,2,4,0],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,2,3,0],[1,4,3,2],[0,2,1,0]],[[1,1,1,1],[2,2,3,0],[1,3,4,2],[0,2,1,0]],[[1,1,1,1],[2,2,3,0],[1,3,3,3],[0,2,1,0]],[[1,1,1,1],[2,2,3,0],[1,3,3,2],[0,3,1,0]],[[1,3,1,0],[1,3,1,2],[2,2,3,2],[1,0,1,1]],[[2,2,1,0],[1,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,2,4,0],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,2,3,0],[1,4,3,2],[1,0,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,4,2],[1,0,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,3],[1,0,1,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,2],[1,0,1,2]],[[1,1,1,1],[2,2,4,0],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,2,3,0],[1,4,3,2],[1,0,2,0]],[[1,1,1,1],[2,2,3,0],[1,3,4,2],[1,0,2,0]],[[1,1,1,1],[2,2,3,0],[1,3,3,3],[1,0,2,0]],[[1,1,1,1],[2,2,3,0],[1,3,3,2],[1,0,3,0]],[[1,1,1,1],[2,2,4,0],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,2,3,0],[1,4,3,2],[1,1,0,1]],[[1,1,1,1],[2,2,3,0],[1,3,4,2],[1,1,0,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,3],[1,1,0,1]],[[1,1,1,1],[2,2,3,0],[1,3,3,2],[1,1,0,2]],[[1,1,1,1],[2,2,4,0],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,2,3,0],[1,4,3,2],[1,1,1,0]],[[1,1,1,1],[2,2,3,0],[1,3,4,2],[1,1,1,0]],[[1,1,1,1],[2,2,3,0],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[1,4,1,2],[2,2,3,2],[0,2,1,0]],[[1,3,1,0],[1,3,1,2],[2,2,3,2],[0,2,1,0]],[[2,2,1,0],[1,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,2,1,0],[1,4,1,2],[2,2,3,2],[0,2,0,1]],[[1,3,1,0],[1,3,1,2],[2,2,3,2],[0,2,0,1]],[[2,2,1,0],[1,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,2,1,0],[1,4,1,2],[2,2,3,2],[0,1,2,0]],[[1,3,1,0],[1,3,1,2],[2,2,3,2],[0,1,2,0]],[[2,2,1,0],[1,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,2,1,0],[1,4,1,2],[2,2,3,2],[0,1,1,1]],[[1,3,1,0],[1,3,1,2],[2,2,3,2],[0,1,1,1]],[[2,2,1,0],[1,3,1,2],[2,2,3,2],[0,1,1,1]],[[2,1,1,1],[2,2,3,0],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[3,2,3,0],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[3,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,0,2,3],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,0,2,2],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,0,2,2],[1,3,2,1]],[[1,1,1,1],[2,2,3,0],[2,0,2,2],[1,2,3,1]],[[1,1,1,1],[2,2,3,0],[2,0,2,2],[1,2,2,2]],[[2,1,1,1],[2,2,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[3,2,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,4,0],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[3,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,0,4,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,0,3,1],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,0,3,1],[1,3,2,1]],[[1,1,1,1],[2,2,3,0],[2,0,3,1],[1,2,3,1]],[[1,1,1,1],[2,2,3,0],[2,0,3,1],[1,2,2,2]],[[1,1,1,1],[2,2,4,0],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[2,0,4,2],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[2,0,3,3],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[2,0,3,2],[1,2,1,2]],[[2,1,1,1],[2,2,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[3,2,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,4,0],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[3,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[2,0,4,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[2,0,3,3],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[2,0,3,2],[2,2,2,0]],[[1,1,1,1],[2,2,3,0],[2,0,3,2],[1,3,2,0]],[[1,1,1,1],[2,2,3,0],[2,0,3,2],[1,2,3,0]],[[1,2,1,0],[1,4,1,2],[2,2,3,1],[1,1,1,1]],[[1,3,1,0],[1,3,1,2],[2,2,3,1],[1,1,1,1]],[[2,2,1,0],[1,3,1,2],[2,2,3,1],[1,1,1,1]],[[1,2,1,0],[1,4,1,2],[2,2,3,1],[1,0,2,1]],[[2,1,1,1],[2,2,3,0],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[3,2,3,0],[2,2,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[3,2,0,2],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,2,0,3],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,2,0,2],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,2,0,2],[1,3,2,1]],[[1,1,1,1],[2,2,3,0],[2,2,0,2],[1,2,3,1]],[[1,1,1,1],[2,2,3,0],[2,2,0,2],[1,2,2,2]],[[2,1,1,1],[2,2,3,0],[2,2,1,1],[1,2,2,1]],[[1,1,1,1],[3,2,3,0],[2,2,1,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[3,2,1,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,2,1,1],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,2,1,1],[1,3,2,1]],[[1,1,1,1],[2,2,3,0],[2,2,1,1],[1,2,3,1]],[[1,1,1,1],[2,2,3,0],[2,2,1,1],[1,2,2,2]],[[2,1,1,1],[2,2,3,0],[2,2,1,2],[1,2,2,0]],[[1,1,1,1],[3,2,3,0],[2,2,1,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[3,2,1,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[2,2,1,2],[2,2,2,0]],[[1,1,1,1],[2,2,3,0],[2,2,1,2],[1,3,2,0]],[[1,1,1,1],[2,2,3,0],[2,2,1,2],[1,2,3,0]],[[2,1,1,1],[2,2,3,0],[2,2,2,1],[1,2,1,1]],[[1,1,1,1],[3,2,3,0],[2,2,2,1],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[3,2,2,1],[1,2,1,1]],[[1,1,1,1],[2,2,3,0],[2,2,2,1],[2,2,1,1]],[[1,1,1,1],[2,2,3,0],[2,2,2,1],[1,3,1,1]],[[2,1,1,1],[2,2,3,0],[2,2,2,2],[1,2,0,1]],[[1,1,1,1],[3,2,3,0],[2,2,2,2],[1,2,0,1]],[[1,1,1,1],[2,2,3,0],[3,2,2,2],[1,2,0,1]],[[1,1,1,1],[2,2,3,0],[2,2,2,2],[2,2,0,1]],[[1,1,1,1],[2,2,3,0],[2,2,2,2],[1,3,0,1]],[[2,1,1,1],[2,2,3,0],[2,2,2,2],[1,2,1,0]],[[1,1,1,1],[3,2,3,0],[2,2,2,2],[1,2,1,0]],[[1,1,1,1],[2,2,3,0],[3,2,2,2],[1,2,1,0]],[[1,1,1,1],[2,2,3,0],[2,2,2,2],[2,2,1,0]],[[1,1,1,1],[2,2,3,0],[2,2,2,2],[1,3,1,0]],[[1,3,1,0],[1,3,1,2],[2,2,3,1],[1,0,2,1]],[[2,2,1,0],[1,3,1,2],[2,2,3,1],[1,0,2,1]],[[1,2,1,0],[1,4,1,2],[2,2,3,1],[0,2,1,1]],[[1,3,1,0],[1,3,1,2],[2,2,3,1],[0,2,1,1]],[[2,2,1,0],[1,3,1,2],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[1,4,1,2],[2,2,3,1],[0,1,2,1]],[[1,3,1,0],[1,3,1,2],[2,2,3,1],[0,1,2,1]],[[2,2,1,0],[1,3,1,2],[2,2,3,1],[0,1,2,1]],[[1,2,1,0],[1,4,1,2],[2,2,2,2],[1,1,2,0]],[[1,3,1,0],[1,3,1,2],[2,2,2,2],[1,1,2,0]],[[2,2,1,0],[1,3,1,2],[2,2,2,2],[1,1,2,0]],[[1,2,1,0],[1,4,1,2],[2,2,2,2],[0,2,2,0]],[[1,3,1,0],[1,3,1,2],[2,2,2,2],[0,2,2,0]],[[2,2,1,0],[1,3,1,2],[2,2,2,2],[0,2,2,0]],[[1,2,1,0],[1,4,1,2],[2,2,2,1],[1,1,2,1]],[[1,3,1,0],[1,3,1,2],[2,2,2,1],[1,1,2,1]],[[2,2,1,0],[1,3,1,2],[2,2,2,1],[1,1,2,1]],[[1,2,1,0],[1,4,1,2],[2,2,2,1],[0,2,2,1]],[[2,1,1,1],[2,2,3,0],[2,3,0,1],[1,2,2,1]],[[1,1,1,1],[3,2,3,0],[2,3,0,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[3,3,0,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,3,0,1],[2,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,3,0,1],[1,3,2,1]],[[2,1,1,1],[2,2,3,0],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[3,2,3,0],[2,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[3,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,4,0,2],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,3,0,3],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,3,0,2],[0,3,2,1]],[[1,1,1,1],[2,2,3,0],[2,3,0,2],[0,2,3,1]],[[1,1,1,1],[2,2,3,0],[2,3,0,2],[0,2,2,2]],[[2,1,1,1],[2,2,3,0],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[3,2,3,0],[2,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,2,3,0],[3,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,2,3,0],[2,4,0,2],[1,1,2,1]],[[1,1,1,1],[2,2,3,0],[2,3,0,2],[2,1,2,1]],[[2,1,1,1],[2,2,3,0],[2,3,0,2],[1,2,2,0]],[[1,1,1,1],[3,2,3,0],[2,3,0,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[3,3,0,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,0],[2,3,0,2],[2,2,2,0]],[[1,1,1,1],[2,2,3,0],[2,3,0,2],[1,3,2,0]],[[2,1,1,1],[2,2,3,0],[2,3,1,1],[0,2,2,1]],[[1,1,1,1],[3,2,3,0],[2,3,1,1],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[3,3,1,1],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,4,1,1],[0,2,2,1]],[[1,1,1,1],[2,2,3,0],[2,3,1,1],[0,3,2,1]],[[1,1,1,1],[2,2,3,0],[2,3,1,1],[0,2,3,1]],[[1,1,1,1],[2,2,3,0],[2,3,1,1],[0,2,2,2]],[[2,1,1,1],[2,2,3,0],[2,3,1,1],[1,1,2,1]],[[1,1,1,1],[3,2,3,0],[2,3,1,1],[1,1,2,1]],[[1,1,1,1],[2,2,3,0],[3,3,1,1],[1,1,2,1]],[[1,1,1,1],[2,2,3,0],[2,4,1,1],[1,1,2,1]],[[1,1,1,1],[2,2,3,0],[2,3,1,1],[2,1,2,1]],[[2,1,1,1],[2,2,3,0],[2,3,1,2],[0,2,2,0]],[[1,1,1,1],[3,2,3,0],[2,3,1,2],[0,2,2,0]],[[1,1,1,1],[2,2,3,0],[3,3,1,2],[0,2,2,0]],[[1,1,1,1],[2,2,3,0],[2,4,1,2],[0,2,2,0]],[[1,1,1,1],[2,2,3,0],[2,3,1,2],[0,3,2,0]],[[1,1,1,1],[2,2,3,0],[2,3,1,2],[0,2,3,0]],[[2,1,1,1],[2,2,3,0],[2,3,1,2],[1,1,2,0]],[[1,1,1,1],[3,2,3,0],[2,3,1,2],[1,1,2,0]],[[1,1,1,1],[2,2,3,0],[3,3,1,2],[1,1,2,0]],[[1,1,1,1],[2,2,3,0],[2,4,1,2],[1,1,2,0]],[[1,1,1,1],[2,2,3,0],[2,3,1,2],[2,1,2,0]],[[1,3,1,0],[1,3,1,2],[2,2,2,1],[0,2,2,1]],[[2,2,1,0],[1,3,1,2],[2,2,2,1],[0,2,2,1]],[[2,1,1,1],[2,2,3,0],[2,3,2,1],[0,1,2,1]],[[1,1,1,1],[3,2,3,0],[2,3,2,1],[0,1,2,1]],[[1,1,1,1],[2,2,3,0],[3,3,2,1],[0,1,2,1]],[[1,1,1,1],[2,2,3,0],[2,4,2,1],[0,1,2,1]],[[2,1,1,1],[2,2,3,0],[2,3,2,1],[0,2,1,1]],[[1,1,1,1],[3,2,3,0],[2,3,2,1],[0,2,1,1]],[[1,1,1,1],[2,2,3,0],[3,3,2,1],[0,2,1,1]],[[1,1,1,1],[2,2,3,0],[2,4,2,1],[0,2,1,1]],[[1,1,1,1],[2,2,3,0],[2,3,2,1],[0,3,1,1]],[[2,1,1,1],[2,2,3,0],[2,3,2,1],[1,0,2,1]],[[1,1,1,1],[3,2,3,0],[2,3,2,1],[1,0,2,1]],[[1,1,1,1],[2,2,3,0],[3,3,2,1],[1,0,2,1]],[[1,1,1,1],[2,2,3,0],[2,4,2,1],[1,0,2,1]],[[1,1,1,1],[2,2,3,0],[2,3,2,1],[2,0,2,1]],[[2,1,1,1],[2,2,3,0],[2,3,2,1],[1,1,1,1]],[[1,1,1,1],[3,2,3,0],[2,3,2,1],[1,1,1,1]],[[1,1,1,1],[2,2,3,0],[3,3,2,1],[1,1,1,1]],[[1,1,1,1],[2,2,3,0],[2,4,2,1],[1,1,1,1]],[[1,1,1,1],[2,2,3,0],[2,3,2,1],[2,1,1,1]],[[2,1,1,1],[2,2,3,0],[2,3,2,1],[1,2,0,1]],[[1,1,1,1],[3,2,3,0],[2,3,2,1],[1,2,0,1]],[[1,1,1,1],[2,2,3,0],[3,3,2,1],[1,2,0,1]],[[1,1,1,1],[2,2,3,0],[2,4,2,1],[1,2,0,1]],[[1,1,1,1],[2,2,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,1,0],[1,4,1,2],[2,2,1,2],[1,1,2,1]],[[1,3,1,0],[1,3,1,2],[2,2,1,2],[1,1,2,1]],[[2,2,1,0],[1,3,1,2],[2,2,1,2],[1,1,2,1]],[[1,2,1,0],[1,4,1,2],[2,2,1,2],[0,2,2,1]],[[1,3,1,0],[1,3,1,2],[2,2,1,2],[0,2,2,1]],[[2,1,1,1],[2,2,3,0],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[3,2,3,0],[2,3,2,2],[0,1,1,1]],[[1,1,1,1],[2,2,3,0],[3,3,2,2],[0,1,1,1]],[[1,1,1,1],[2,2,3,0],[2,4,2,2],[0,1,1,1]],[[2,1,1,1],[2,2,3,0],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[3,2,3,0],[2,3,2,2],[0,1,2,0]],[[1,1,1,1],[2,2,3,0],[3,3,2,2],[0,1,2,0]],[[1,1,1,1],[2,2,3,0],[2,4,2,2],[0,1,2,0]],[[2,1,1,1],[2,2,3,0],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[3,2,3,0],[2,3,2,2],[0,2,0,1]],[[1,1,1,1],[2,2,3,0],[3,3,2,2],[0,2,0,1]],[[1,1,1,1],[2,2,3,0],[2,4,2,2],[0,2,0,1]],[[1,1,1,1],[2,2,3,0],[2,3,2,2],[0,3,0,1]],[[2,1,1,1],[2,2,3,0],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[3,2,3,0],[2,3,2,2],[0,2,1,0]],[[1,1,1,1],[2,2,3,0],[3,3,2,2],[0,2,1,0]],[[1,1,1,1],[2,2,3,0],[2,4,2,2],[0,2,1,0]],[[1,1,1,1],[2,2,3,0],[2,3,2,2],[0,3,1,0]],[[2,2,1,0],[1,3,1,2],[2,2,1,2],[0,2,2,1]],[[2,1,1,1],[2,2,3,0],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[3,2,3,0],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[2,2,3,0],[3,3,2,2],[1,0,1,1]],[[1,1,1,1],[2,2,3,0],[2,4,2,2],[1,0,1,1]],[[1,1,1,1],[2,2,3,0],[2,3,2,2],[2,0,1,1]],[[2,1,1,1],[2,2,3,0],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[3,2,3,0],[2,3,2,2],[1,0,2,0]],[[1,1,1,1],[2,2,3,0],[3,3,2,2],[1,0,2,0]],[[1,1,1,1],[2,2,3,0],[2,4,2,2],[1,0,2,0]],[[1,1,1,1],[2,2,3,0],[2,3,2,2],[2,0,2,0]],[[2,1,1,1],[2,2,3,0],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[3,2,3,0],[2,3,2,2],[1,1,0,1]],[[1,1,1,1],[2,2,3,0],[3,3,2,2],[1,1,0,1]],[[1,1,1,1],[2,2,3,0],[2,4,2,2],[1,1,0,1]],[[1,1,1,1],[2,2,3,0],[2,3,2,2],[2,1,0,1]],[[2,1,1,1],[2,2,3,0],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[3,2,3,0],[2,3,2,2],[1,1,1,0]],[[1,1,1,1],[2,2,3,0],[3,3,2,2],[1,1,1,0]],[[1,1,1,1],[2,2,3,0],[2,4,2,2],[1,1,1,0]],[[1,1,1,1],[2,2,3,0],[2,3,2,2],[2,1,1,0]],[[2,1,1,1],[2,2,3,0],[2,3,2,2],[1,2,0,0]],[[1,1,1,1],[3,2,3,0],[2,3,2,2],[1,2,0,0]],[[1,1,1,1],[2,2,3,0],[3,3,2,2],[1,2,0,0]],[[1,1,1,1],[2,2,3,0],[2,4,2,2],[1,2,0,0]],[[1,1,1,1],[2,2,3,0],[2,3,2,2],[2,2,0,0]],[[1,2,1,0],[1,4,1,2],[2,1,3,2],[1,2,1,0]],[[1,3,1,0],[1,3,1,2],[2,1,3,2],[1,2,1,0]],[[2,2,1,0],[1,3,1,2],[2,1,3,2],[1,2,1,0]],[[1,2,1,0],[1,4,1,2],[2,1,3,2],[1,2,0,1]],[[1,3,1,0],[1,3,1,2],[2,1,3,2],[1,2,0,1]],[[2,2,1,0],[1,3,1,2],[2,1,3,2],[1,2,0,1]],[[1,2,1,0],[1,4,1,2],[2,1,3,1],[1,2,1,1]],[[1,3,1,0],[1,3,1,2],[2,1,3,1],[1,2,1,1]],[[2,2,1,0],[1,3,1,2],[2,1,3,1],[1,2,1,1]],[[1,2,1,0],[1,4,1,2],[2,1,2,2],[1,2,2,0]],[[1,3,1,0],[1,3,1,2],[2,1,2,2],[1,2,2,0]],[[2,2,1,0],[1,3,1,2],[2,1,2,2],[1,2,2,0]],[[1,2,1,0],[1,4,1,2],[2,1,2,1],[1,2,2,1]],[[1,3,1,0],[1,3,1,2],[2,1,2,1],[1,2,2,1]],[[2,2,1,0],[1,3,1,2],[2,1,2,1],[1,2,2,1]],[[1,2,1,0],[1,4,1,2],[2,1,1,2],[1,2,2,1]],[[1,3,1,0],[1,3,1,2],[2,1,1,2],[1,2,2,1]],[[2,2,1,0],[1,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,2,1,0],[1,4,1,2],[2,0,3,2],[1,2,2,0]],[[1,3,1,0],[1,3,1,2],[2,0,3,2],[1,2,2,0]],[[2,2,1,0],[1,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[1,4,1,2],[2,0,3,1],[1,2,2,1]],[[1,3,1,0],[1,3,1,2],[2,0,3,1],[1,2,2,1]],[[2,2,1,0],[1,3,1,2],[2,0,3,1],[1,2,2,1]],[[1,2,1,0],[1,4,1,2],[2,0,2,2],[1,2,2,1]],[[1,3,1,0],[1,3,1,2],[2,0,2,2],[1,2,2,1]],[[2,2,1,0],[1,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,2,1,0],[1,3,1,2],[1,4,3,2],[1,2,0,0]],[[1,2,1,0],[1,4,1,2],[1,3,3,2],[1,2,0,0]],[[1,3,1,0],[1,3,1,2],[1,3,3,2],[1,2,0,0]],[[2,2,1,0],[1,3,1,2],[1,3,3,2],[1,2,0,0]],[[2,1,1,1],[2,2,3,0],[2,3,3,2],[0,2,0,0]],[[1,1,1,1],[3,2,3,0],[2,3,3,2],[0,2,0,0]],[[1,1,1,1],[2,2,3,0],[3,3,3,2],[0,2,0,0]],[[1,1,1,1],[2,2,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,1,0],[1,3,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[1,3,1,2],[1,3,4,2],[1,1,1,0]],[[1,2,1,0],[1,3,1,2],[1,4,3,2],[1,1,1,0]],[[1,2,1,0],[1,3,1,3],[1,3,3,2],[1,1,1,0]],[[1,2,1,0],[1,4,1,2],[1,3,3,2],[1,1,1,0]],[[1,3,1,0],[1,3,1,2],[1,3,3,2],[1,1,1,0]],[[2,2,1,0],[1,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,1,0],[1,3,1,2],[1,3,3,2],[1,1,0,2]],[[1,2,1,0],[1,3,1,2],[1,3,3,3],[1,1,0,1]],[[1,2,1,0],[1,3,1,2],[1,3,4,2],[1,1,0,1]],[[1,2,1,0],[1,3,1,2],[1,4,3,2],[1,1,0,1]],[[1,2,1,0],[1,3,1,3],[1,3,3,2],[1,1,0,1]],[[1,2,1,0],[1,4,1,2],[1,3,3,2],[1,1,0,1]],[[1,3,1,0],[1,3,1,2],[1,3,3,2],[1,1,0,1]],[[2,2,1,0],[1,3,1,2],[1,3,3,2],[1,1,0,1]],[[2,1,1,1],[2,2,3,0],[2,3,3,2],[1,1,0,0]],[[1,1,1,1],[3,2,3,0],[2,3,3,2],[1,1,0,0]],[[1,1,1,1],[2,2,3,0],[3,3,3,2],[1,1,0,0]],[[1,1,1,1],[2,2,3,0],[2,4,3,2],[1,1,0,0]],[[1,1,1,1],[2,2,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,1,0],[1,3,1,2],[1,3,3,2],[1,0,3,0]],[[1,2,1,0],[1,3,1,2],[1,3,3,3],[1,0,2,0]],[[1,2,1,0],[1,3,1,2],[1,3,4,2],[1,0,2,0]],[[1,2,1,0],[1,3,1,2],[1,4,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,1,3],[1,3,3,2],[1,0,2,0]],[[1,2,1,0],[1,4,1,2],[1,3,3,2],[1,0,2,0]],[[1,3,1,0],[1,3,1,2],[1,3,3,2],[1,0,2,0]],[[2,2,1,0],[1,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,2,1,0],[1,3,1,2],[1,3,3,2],[1,0,1,2]],[[1,2,1,0],[1,3,1,2],[1,3,3,3],[1,0,1,1]],[[1,2,1,0],[1,3,1,2],[1,3,4,2],[1,0,1,1]],[[1,2,1,0],[1,3,1,2],[1,4,3,2],[1,0,1,1]],[[1,2,1,0],[1,3,1,3],[1,3,3,2],[1,0,1,1]],[[1,2,1,0],[1,4,1,2],[1,3,3,2],[1,0,1,1]],[[1,3,1,0],[1,3,1,2],[1,3,3,2],[1,0,1,1]],[[2,2,1,0],[1,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,2,1,0],[1,3,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[1,3,1,2],[1,3,3,3],[0,2,1,0]],[[1,2,1,0],[1,3,1,2],[1,3,4,2],[0,2,1,0]],[[1,2,1,0],[1,3,1,2],[1,4,3,2],[0,2,1,0]],[[1,2,1,0],[1,3,1,3],[1,3,3,2],[0,2,1,0]],[[1,2,1,0],[1,4,1,2],[1,3,3,2],[0,2,1,0]],[[1,3,1,0],[1,3,1,2],[1,3,3,2],[0,2,1,0]],[[2,2,1,0],[1,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,1,0],[1,3,1,2],[1,3,3,2],[0,2,0,2]],[[1,2,1,0],[1,3,1,2],[1,3,3,2],[0,3,0,1]],[[1,2,1,0],[1,3,1,2],[1,3,3,3],[0,2,0,1]],[[1,2,1,0],[1,3,1,2],[1,3,4,2],[0,2,0,1]],[[1,2,1,0],[1,3,1,2],[1,4,3,2],[0,2,0,1]],[[1,2,1,0],[1,3,1,3],[1,3,3,2],[0,2,0,1]],[[1,2,1,0],[1,4,1,2],[1,3,3,2],[0,2,0,1]],[[1,3,1,0],[1,3,1,2],[1,3,3,2],[0,2,0,1]],[[2,2,1,0],[1,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,2,1,0],[1,3,1,2],[1,3,3,2],[0,1,3,0]],[[1,2,1,0],[1,3,1,2],[1,3,3,3],[0,1,2,0]],[[1,2,1,0],[1,3,1,2],[1,3,4,2],[0,1,2,0]],[[1,2,1,0],[1,3,1,2],[1,4,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,1,3],[1,3,3,2],[0,1,2,0]],[[1,2,1,0],[1,4,1,2],[1,3,3,2],[0,1,2,0]],[[1,3,1,0],[1,3,1,2],[1,3,3,2],[0,1,2,0]],[[2,2,1,0],[1,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,1,0],[1,3,1,2],[1,3,3,2],[0,1,1,2]],[[1,2,1,0],[1,3,1,2],[1,3,3,3],[0,1,1,1]],[[1,2,1,0],[1,3,1,2],[1,3,4,2],[0,1,1,1]],[[1,2,1,0],[1,3,1,2],[1,4,3,2],[0,1,1,1]],[[1,2,1,0],[1,3,1,3],[1,3,3,2],[0,1,1,1]],[[1,2,1,0],[1,4,1,2],[1,3,3,2],[0,1,1,1]],[[1,3,1,0],[1,3,1,2],[1,3,3,2],[0,1,1,1]],[[2,2,1,0],[1,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,2,4,1],[0,2,3,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[0,2,4,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[0,2,3,0],[2,2,2,1]],[[1,1,1,1],[2,2,3,1],[0,2,3,0],[1,3,2,1]],[[1,1,1,1],[2,2,3,1],[0,2,3,0],[1,2,3,1]],[[1,1,1,1],[2,2,3,1],[0,2,3,0],[1,2,2,2]],[[1,1,1,1],[2,2,4,1],[0,2,3,1],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[0,2,4,1],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[0,2,3,1],[2,2,2,0]],[[1,1,1,1],[2,2,3,1],[0,2,3,1],[1,3,2,0]],[[1,1,1,1],[2,2,3,1],[0,2,3,1],[1,2,3,0]],[[1,2,1,0],[1,3,1,2],[1,3,3,2],[0,0,2,2]],[[1,2,1,0],[1,3,1,2],[1,3,3,3],[0,0,2,1]],[[1,2,1,0],[1,3,1,2],[1,3,4,2],[0,0,2,1]],[[1,2,1,0],[1,3,1,3],[1,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,2,3,1],[0,4,2,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[0,3,2,0],[2,2,2,1]],[[1,1,1,1],[2,2,3,1],[0,3,2,0],[1,3,2,1]],[[1,1,1,1],[2,2,3,1],[0,3,2,0],[1,2,3,1]],[[1,1,1,1],[2,2,3,1],[0,3,2,0],[1,2,2,2]],[[1,1,1,1],[2,2,3,1],[0,4,2,1],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[0,3,2,1],[2,2,2,0]],[[1,1,1,1],[2,2,3,1],[0,3,2,1],[1,3,2,0]],[[1,1,1,1],[2,2,3,1],[0,3,2,1],[1,2,3,0]],[[1,1,1,1],[2,2,4,1],[0,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,2,3,1],[0,4,3,0],[1,1,2,1]],[[1,1,1,1],[2,2,3,1],[0,3,4,0],[1,1,2,1]],[[1,1,1,1],[2,2,3,1],[0,3,3,0],[1,1,3,1]],[[1,1,1,1],[2,2,3,1],[0,3,3,0],[1,1,2,2]],[[1,1,1,1],[2,2,4,1],[0,3,3,0],[1,2,1,1]],[[1,1,1,1],[2,2,3,1],[0,4,3,0],[1,2,1,1]],[[1,1,1,1],[2,2,3,1],[0,3,4,0],[1,2,1,1]],[[1,1,1,1],[2,2,3,1],[0,3,3,0],[2,2,1,1]],[[1,1,1,1],[2,2,3,1],[0,3,3,0],[1,3,1,1]],[[1,1,1,1],[2,2,4,1],[0,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,2,3,1],[0,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,2,3,1],[0,3,4,1],[1,1,1,1]],[[1,1,1,1],[2,2,4,1],[0,3,3,1],[1,1,2,0]],[[1,1,1,1],[2,2,3,1],[0,4,3,1],[1,1,2,0]],[[1,1,1,1],[2,2,3,1],[0,3,4,1],[1,1,2,0]],[[1,1,1,1],[2,2,3,1],[0,3,3,1],[1,1,3,0]],[[1,1,1,1],[2,2,4,1],[0,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[0,4,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[0,3,4,1],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[0,3,3,1],[2,2,0,1]],[[1,1,1,1],[2,2,3,1],[0,3,3,1],[1,3,0,1]],[[1,1,1,1],[2,2,4,1],[0,3,3,1],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[0,4,3,1],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[0,3,4,1],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[0,3,3,1],[2,2,1,0]],[[1,1,1,1],[2,2,3,1],[0,3,3,1],[1,3,1,0]],[[1,2,1,0],[1,3,1,2],[1,3,4,1],[1,1,1,1]],[[1,2,1,0],[1,3,1,2],[1,4,3,1],[1,1,1,1]],[[1,2,1,0],[1,4,1,2],[1,3,3,1],[1,1,1,1]],[[1,3,1,0],[1,3,1,2],[1,3,3,1],[1,1,1,1]],[[2,2,1,0],[1,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,2,1,0],[1,3,1,2],[1,3,3,1],[1,0,2,2]],[[1,2,1,0],[1,3,1,2],[1,3,3,1],[1,0,3,1]],[[1,2,1,0],[1,3,1,2],[1,3,4,1],[1,0,2,1]],[[1,2,1,0],[1,3,1,2],[1,4,3,1],[1,0,2,1]],[[1,2,1,0],[1,4,1,2],[1,3,3,1],[1,0,2,1]],[[1,3,1,0],[1,3,1,2],[1,3,3,1],[1,0,2,1]],[[2,2,1,0],[1,3,1,2],[1,3,3,1],[1,0,2,1]],[[1,2,1,0],[1,3,1,2],[1,3,3,1],[0,3,1,1]],[[1,2,1,0],[1,3,1,2],[1,3,4,1],[0,2,1,1]],[[1,2,1,0],[1,3,1,2],[1,4,3,1],[0,2,1,1]],[[1,2,1,0],[1,4,1,2],[1,3,3,1],[0,2,1,1]],[[1,3,1,0],[1,3,1,2],[1,3,3,1],[0,2,1,1]],[[2,2,1,0],[1,3,1,2],[1,3,3,1],[0,2,1,1]],[[1,2,1,0],[1,3,1,2],[1,3,3,1],[0,1,2,2]],[[1,2,1,0],[1,3,1,2],[1,3,3,1],[0,1,3,1]],[[1,2,1,0],[1,3,1,2],[1,3,4,1],[0,1,2,1]],[[1,2,1,0],[1,3,1,2],[1,4,3,1],[0,1,2,1]],[[1,2,1,0],[1,4,1,2],[1,3,3,1],[0,1,2,1]],[[1,3,1,0],[1,3,1,2],[1,3,3,1],[0,1,2,1]],[[2,2,1,0],[1,3,1,2],[1,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,2,4,1],[1,2,3,0],[0,2,2,1]],[[1,1,1,1],[2,2,3,1],[1,2,4,0],[0,2,2,1]],[[1,1,1,1],[2,2,3,1],[1,2,3,0],[0,3,2,1]],[[1,1,1,1],[2,2,3,1],[1,2,3,0],[0,2,3,1]],[[1,1,1,1],[2,2,3,1],[1,2,3,0],[0,2,2,2]],[[1,1,1,1],[2,2,4,1],[1,2,3,1],[0,2,2,0]],[[1,1,1,1],[2,2,3,1],[1,2,4,1],[0,2,2,0]],[[1,1,1,1],[2,2,3,1],[1,2,3,1],[0,3,2,0]],[[1,1,1,1],[2,2,3,1],[1,2,3,1],[0,2,3,0]],[[1,2,1,0],[1,3,1,2],[1,4,2,2],[1,1,2,0]],[[1,2,1,0],[1,4,1,2],[1,3,2,2],[1,1,2,0]],[[1,3,1,0],[1,3,1,2],[1,3,2,2],[1,1,2,0]],[[2,2,1,0],[1,3,1,2],[1,3,2,2],[1,1,2,0]],[[1,2,1,0],[1,3,1,2],[1,3,2,2],[1,0,2,2]],[[1,2,1,0],[1,3,1,2],[1,3,2,2],[1,0,3,1]],[[1,2,1,0],[1,3,1,2],[1,3,2,3],[1,0,2,1]],[[1,2,1,0],[1,3,1,3],[1,3,2,2],[1,0,2,1]],[[1,2,1,0],[1,3,1,2],[1,3,2,2],[0,2,3,0]],[[1,2,1,0],[1,3,1,2],[1,3,2,2],[0,3,2,0]],[[1,1,1,1],[2,2,3,1],[1,4,0,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,0,1],[2,2,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,0,1],[1,3,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,0,1],[1,2,3,1]],[[1,1,1,1],[2,2,3,1],[1,3,0,1],[1,2,2,2]],[[1,1,1,1],[2,2,3,1],[1,4,0,2],[1,2,1,1]],[[1,1,1,1],[2,2,3,1],[1,3,0,2],[2,2,1,1]],[[1,1,1,1],[2,2,3,1],[1,3,0,2],[1,3,1,1]],[[1,1,1,1],[2,2,3,1],[1,4,0,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,0,2],[2,2,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,0,2],[1,3,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,0,2],[1,2,3,0]],[[1,1,1,1],[2,2,3,1],[1,4,1,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,1,0],[2,2,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,1,0],[1,3,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,1,0],[1,2,3,1]],[[1,1,1,1],[2,2,3,1],[1,3,1,0],[1,2,2,2]],[[1,1,1,1],[2,2,3,1],[1,4,1,1],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,1,1],[2,2,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,1,1],[1,3,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,1,1],[1,2,3,0]],[[1,1,1,1],[2,2,3,1],[1,4,1,2],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[1,3,1,2],[2,2,0,1]],[[1,1,1,1],[2,2,3,1],[1,3,1,2],[1,3,0,1]],[[1,1,1,1],[2,2,3,1],[1,4,1,2],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[1,3,1,2],[2,2,1,0]],[[1,1,1,1],[2,2,3,1],[1,3,1,2],[1,3,1,0]],[[1,2,1,0],[1,3,1,2],[1,4,2,2],[0,2,2,0]],[[1,2,1,0],[1,4,1,2],[1,3,2,2],[0,2,2,0]],[[1,3,1,0],[1,3,1,2],[1,3,2,2],[0,2,2,0]],[[2,2,1,0],[1,3,1,2],[1,3,2,2],[0,2,2,0]],[[1,2,1,0],[1,3,1,2],[1,3,2,2],[0,1,2,2]],[[1,2,1,0],[1,3,1,2],[1,3,2,2],[0,1,3,1]],[[1,1,1,1],[2,2,3,1],[1,4,2,0],[0,2,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,2,0],[0,3,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,2,0],[0,2,3,1]],[[1,1,1,1],[2,2,3,1],[1,3,2,0],[0,2,2,2]],[[1,1,1,1],[2,2,3,1],[1,4,2,0],[1,2,1,1]],[[1,1,1,1],[2,2,3,1],[1,3,2,0],[2,2,1,1]],[[1,1,1,1],[2,2,3,1],[1,3,2,0],[1,3,1,1]],[[1,1,1,1],[2,2,3,1],[1,4,2,1],[0,2,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,2,1],[0,3,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,2,1],[0,2,3,0]],[[1,1,1,1],[2,2,3,1],[1,4,2,1],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[1,3,2,1],[2,2,0,1]],[[1,1,1,1],[2,2,3,1],[1,3,2,1],[1,3,0,1]],[[1,1,1,1],[2,2,3,1],[1,4,2,1],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[1,3,2,1],[2,2,1,0]],[[1,1,1,1],[2,2,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,1,0],[1,3,1,2],[1,3,2,3],[0,1,2,1]],[[1,2,1,0],[1,3,1,3],[1,3,2,2],[0,1,2,1]],[[1,2,1,0],[1,3,1,2],[1,4,2,1],[1,1,2,1]],[[1,2,1,0],[1,4,1,2],[1,3,2,1],[1,1,2,1]],[[1,3,1,0],[1,3,1,2],[1,3,2,1],[1,1,2,1]],[[2,2,1,0],[1,3,1,2],[1,3,2,1],[1,1,2,1]],[[1,2,1,0],[1,3,1,2],[1,3,2,1],[0,2,2,2]],[[1,2,1,0],[1,3,1,2],[1,3,2,1],[0,2,3,1]],[[1,2,1,0],[1,3,1,2],[1,3,2,1],[0,3,2,1]],[[1,2,1,0],[1,3,1,2],[1,4,2,1],[0,2,2,1]],[[1,2,1,0],[1,4,1,2],[1,3,2,1],[0,2,2,1]],[[1,3,1,0],[1,3,1,2],[1,3,2,1],[0,2,2,1]],[[2,2,1,0],[1,3,1,2],[1,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,2,4,1],[1,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,2,3,1],[1,4,3,0],[0,1,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,4,0],[0,1,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,3,0],[0,1,3,1]],[[1,1,1,1],[2,2,3,1],[1,3,3,0],[0,1,2,2]],[[1,1,1,1],[2,2,4,1],[1,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,2,3,1],[1,4,3,0],[0,2,1,1]],[[1,1,1,1],[2,2,3,1],[1,3,4,0],[0,2,1,1]],[[1,1,1,1],[2,2,3,1],[1,3,3,0],[0,3,1,1]],[[1,1,1,1],[2,2,4,1],[1,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,2,3,1],[1,4,3,0],[1,0,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,4,0],[1,0,2,1]],[[1,1,1,1],[2,2,3,1],[1,3,3,0],[1,0,3,1]],[[1,1,1,1],[2,2,3,1],[1,3,3,0],[1,0,2,2]],[[1,1,1,1],[2,2,4,1],[1,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,2,3,1],[1,4,3,0],[1,1,1,1]],[[1,1,1,1],[2,2,3,1],[1,3,4,0],[1,1,1,1]],[[1,1,1,1],[2,2,3,1],[1,4,3,0],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[1,3,3,0],[2,2,1,0]],[[1,1,1,1],[2,2,3,1],[1,3,3,0],[1,3,1,0]],[[1,2,1,0],[1,3,1,2],[1,4,1,2],[1,1,2,1]],[[1,2,1,0],[1,4,1,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,2,4,1],[1,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,2,3,1],[1,4,3,1],[0,1,1,1]],[[1,1,1,1],[2,2,3,1],[1,3,4,1],[0,1,1,1]],[[1,1,1,1],[2,2,4,1],[1,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,2,3,1],[1,4,3,1],[0,1,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,4,1],[0,1,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,3,1],[0,1,3,0]],[[1,1,1,1],[2,2,4,1],[1,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,2,3,1],[1,4,3,1],[0,2,0,1]],[[1,1,1,1],[2,2,3,1],[1,3,4,1],[0,2,0,1]],[[1,1,1,1],[2,2,3,1],[1,3,3,1],[0,3,0,1]],[[1,1,1,1],[2,2,4,1],[1,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[1,4,3,1],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[1,3,4,1],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[1,3,3,1],[0,3,1,0]],[[1,3,1,0],[1,3,1,2],[1,3,1,2],[1,1,2,1]],[[2,2,1,0],[1,3,1,2],[1,3,1,2],[1,1,2,1]],[[1,2,1,0],[1,3,1,2],[1,3,1,2],[0,2,2,2]],[[1,2,1,0],[1,3,1,2],[1,3,1,2],[0,2,3,1]],[[1,2,1,0],[1,3,1,2],[1,3,1,2],[0,3,2,1]],[[1,2,1,0],[1,3,1,2],[1,3,1,3],[0,2,2,1]],[[1,1,1,1],[2,2,4,1],[1,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,2,3,1],[1,4,3,1],[1,0,1,1]],[[1,1,1,1],[2,2,3,1],[1,3,4,1],[1,0,1,1]],[[1,1,1,1],[2,2,4,1],[1,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[1,4,3,1],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,4,1],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[1,3,3,1],[1,0,3,0]],[[1,1,1,1],[2,2,4,1],[1,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,2,3,1],[1,4,3,1],[1,1,0,1]],[[1,1,1,1],[2,2,3,1],[1,3,4,1],[1,1,0,1]],[[1,1,1,1],[2,2,4,1],[1,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,2,3,1],[1,4,3,1],[1,1,1,0]],[[1,1,1,1],[2,2,3,1],[1,3,4,1],[1,1,1,0]],[[1,2,1,0],[1,3,1,2],[1,4,1,2],[0,2,2,1]],[[1,2,1,0],[1,3,1,3],[1,3,1,2],[0,2,2,1]],[[1,2,1,0],[1,4,1,2],[1,3,1,2],[0,2,2,1]],[[1,3,1,0],[1,3,1,2],[1,3,1,2],[0,2,2,1]],[[2,2,1,0],[1,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,2,1,0],[1,3,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,0],[1,3,1,2],[1,2,3,2],[0,3,2,0]],[[1,2,1,0],[1,3,1,2],[1,2,3,3],[0,2,2,0]],[[1,2,1,0],[1,3,1,2],[1,2,4,2],[0,2,2,0]],[[1,2,1,0],[1,3,1,3],[1,2,3,2],[0,2,2,0]],[[1,2,1,0],[1,3,1,2],[1,2,3,2],[0,2,1,2]],[[1,2,1,0],[1,3,1,2],[1,2,3,3],[0,2,1,1]],[[1,2,1,0],[1,3,1,2],[1,2,4,2],[0,2,1,1]],[[1,2,1,0],[1,3,1,3],[1,2,3,2],[0,2,1,1]],[[1,2,1,0],[1,3,1,2],[1,2,3,1],[0,2,2,2]],[[1,2,1,0],[1,3,1,2],[1,2,3,1],[0,2,3,1]],[[1,2,1,0],[1,3,1,2],[1,2,3,1],[0,3,2,1]],[[1,2,1,0],[1,3,1,2],[1,2,4,1],[0,2,2,1]],[[1,2,1,0],[1,3,1,2],[1,2,2,2],[0,2,2,2]],[[1,2,1,0],[1,3,1,2],[1,2,2,2],[0,2,3,1]],[[1,2,1,0],[1,3,1,2],[1,2,2,2],[0,3,2,1]],[[1,2,1,0],[1,3,1,2],[1,2,2,3],[0,2,2,1]],[[1,2,1,0],[1,3,1,3],[1,2,2,2],[0,2,2,1]],[[1,2,1,0],[1,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,3,1,2],[0,3,3,2],[2,2,1,0]],[[1,2,1,0],[1,3,1,2],[0,3,3,3],[1,2,1,0]],[[1,2,1,0],[1,3,1,2],[0,3,4,2],[1,2,1,0]],[[1,2,1,0],[1,3,1,2],[0,4,3,2],[1,2,1,0]],[[1,2,1,0],[1,3,1,3],[0,3,3,2],[1,2,1,0]],[[1,2,1,0],[1,4,1,2],[0,3,3,2],[1,2,1,0]],[[1,3,1,0],[1,3,1,2],[0,3,3,2],[1,2,1,0]],[[2,2,1,0],[1,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,1,0],[1,3,1,2],[0,3,3,2],[1,2,0,2]],[[1,2,1,0],[1,3,1,2],[0,3,3,2],[1,3,0,1]],[[1,2,1,0],[1,3,1,2],[0,3,3,2],[2,2,0,1]],[[1,2,1,0],[1,3,1,2],[0,3,3,3],[1,2,0,1]],[[1,2,1,0],[1,3,1,2],[0,3,4,2],[1,2,0,1]],[[1,2,1,0],[1,3,1,2],[0,4,3,2],[1,2,0,1]],[[1,2,1,0],[1,3,1,3],[0,3,3,2],[1,2,0,1]],[[1,2,1,0],[1,4,1,2],[0,3,3,2],[1,2,0,1]],[[1,3,1,0],[1,3,1,2],[0,3,3,2],[1,2,0,1]],[[2,2,1,0],[1,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,1,0],[1,3,1,2],[0,3,3,2],[1,1,3,0]],[[1,2,1,0],[1,3,1,2],[0,3,3,3],[1,1,2,0]],[[1,2,1,0],[1,3,1,2],[0,3,4,2],[1,1,2,0]],[[1,2,1,0],[1,3,1,2],[0,4,3,2],[1,1,2,0]],[[1,2,1,0],[1,3,1,3],[0,3,3,2],[1,1,2,0]],[[1,2,1,0],[1,4,1,2],[0,3,3,2],[1,1,2,0]],[[1,3,1,0],[1,3,1,2],[0,3,3,2],[1,1,2,0]],[[2,1,1,1],[2,2,3,1],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[3,2,3,1],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,2,4,1],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[3,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,0,4,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,0,3,0],[2,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,0,3,0],[1,3,2,1]],[[1,1,1,1],[2,2,3,1],[2,0,3,0],[1,2,3,1]],[[1,1,1,1],[2,2,3,1],[2,0,3,0],[1,2,2,2]],[[2,1,1,1],[2,2,3,1],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[3,2,3,1],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,2,4,1],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[3,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,0,4,1],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,0,3,1],[2,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,0,3,1],[1,3,2,0]],[[1,1,1,1],[2,2,3,1],[2,0,3,1],[1,2,3,0]],[[2,2,1,0],[1,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,1,0],[1,3,1,2],[0,3,3,2],[1,1,1,2]],[[1,2,1,0],[1,3,1,2],[0,3,3,3],[1,1,1,1]],[[1,2,1,0],[1,3,1,2],[0,3,4,2],[1,1,1,1]],[[1,2,1,0],[1,3,1,2],[0,4,3,2],[1,1,1,1]],[[1,2,1,0],[1,3,1,3],[0,3,3,2],[1,1,1,1]],[[1,2,1,0],[1,4,1,2],[0,3,3,2],[1,1,1,1]],[[1,3,1,0],[1,3,1,2],[0,3,3,2],[1,1,1,1]],[[2,2,1,0],[1,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,1,0],[1,3,1,2],[0,3,3,2],[1,0,2,2]],[[1,2,1,0],[1,3,1,2],[0,3,3,3],[1,0,2,1]],[[1,2,1,0],[1,3,1,2],[0,3,4,2],[1,0,2,1]],[[1,2,1,0],[1,3,1,3],[0,3,3,2],[1,0,2,1]],[[1,2,1,0],[1,3,1,2],[0,3,3,1],[1,3,1,1]],[[1,2,1,0],[1,3,1,2],[0,3,3,1],[2,2,1,1]],[[1,2,1,0],[1,3,1,2],[0,3,4,1],[1,2,1,1]],[[1,2,1,0],[1,3,1,2],[0,4,3,1],[1,2,1,1]],[[1,2,1,0],[1,4,1,2],[0,3,3,1],[1,2,1,1]],[[1,3,1,0],[1,3,1,2],[0,3,3,1],[1,2,1,1]],[[2,2,1,0],[1,3,1,2],[0,3,3,1],[1,2,1,1]],[[1,2,1,0],[1,3,1,2],[0,3,3,1],[1,1,2,2]],[[1,2,1,0],[1,3,1,2],[0,3,3,1],[1,1,3,1]],[[1,2,1,0],[1,3,1,2],[0,3,4,1],[1,1,2,1]],[[1,2,1,0],[1,3,1,2],[0,4,3,1],[1,1,2,1]],[[1,2,1,0],[1,4,1,2],[0,3,3,1],[1,1,2,1]],[[1,3,1,0],[1,3,1,2],[0,3,3,1],[1,1,2,1]],[[2,2,1,0],[1,3,1,2],[0,3,3,1],[1,1,2,1]],[[1,2,1,0],[1,3,1,2],[0,3,2,2],[1,2,3,0]],[[1,2,1,0],[1,3,1,2],[0,3,2,2],[1,3,2,0]],[[1,2,1,0],[1,3,1,2],[0,3,2,2],[2,2,2,0]],[[1,2,1,0],[1,3,1,2],[0,4,2,2],[1,2,2,0]],[[1,2,1,0],[1,4,1,2],[0,3,2,2],[1,2,2,0]],[[1,3,1,0],[1,3,1,2],[0,3,2,2],[1,2,2,0]],[[2,2,1,0],[1,3,1,2],[0,3,2,2],[1,2,2,0]],[[2,1,1,1],[2,2,3,1],[2,2,0,1],[1,2,2,1]],[[1,1,1,1],[3,2,3,1],[2,2,0,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[3,2,0,1],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,2,0,1],[2,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,2,0,1],[1,3,2,1]],[[1,1,1,1],[2,2,3,1],[2,2,0,1],[1,2,3,1]],[[1,1,1,1],[2,2,3,1],[2,2,0,1],[1,2,2,2]],[[2,1,1,1],[2,2,3,1],[2,2,0,2],[1,2,1,1]],[[1,1,1,1],[3,2,3,1],[2,2,0,2],[1,2,1,1]],[[1,1,1,1],[2,2,3,1],[3,2,0,2],[1,2,1,1]],[[1,1,1,1],[2,2,3,1],[2,2,0,2],[2,2,1,1]],[[1,1,1,1],[2,2,3,1],[2,2,0,2],[1,3,1,1]],[[2,1,1,1],[2,2,3,1],[2,2,0,2],[1,2,2,0]],[[1,1,1,1],[3,2,3,1],[2,2,0,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[3,2,0,2],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,2,0,2],[2,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,2,0,2],[1,3,2,0]],[[1,1,1,1],[2,2,3,1],[2,2,0,2],[1,2,3,0]],[[2,1,1,1],[2,2,3,1],[2,2,1,0],[1,2,2,1]],[[1,1,1,1],[3,2,3,1],[2,2,1,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[3,2,1,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,2,1,0],[2,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,2,1,0],[1,3,2,1]],[[1,1,1,1],[2,2,3,1],[2,2,1,0],[1,2,3,1]],[[1,1,1,1],[2,2,3,1],[2,2,1,0],[1,2,2,2]],[[2,1,1,1],[2,2,3,1],[2,2,1,1],[1,2,2,0]],[[1,1,1,1],[3,2,3,1],[2,2,1,1],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[3,2,1,1],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,2,1,1],[2,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,2,1,1],[1,3,2,0]],[[1,1,1,1],[2,2,3,1],[2,2,1,1],[1,2,3,0]],[[2,1,1,1],[2,2,3,1],[2,2,1,2],[1,2,0,1]],[[1,1,1,1],[3,2,3,1],[2,2,1,2],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[3,2,1,2],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[2,2,1,2],[2,2,0,1]],[[1,1,1,1],[2,2,3,1],[2,2,1,2],[1,3,0,1]],[[2,1,1,1],[2,2,3,1],[2,2,1,2],[1,2,1,0]],[[1,1,1,1],[3,2,3,1],[2,2,1,2],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[3,2,1,2],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,2,1,2],[2,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,2,1,2],[1,3,1,0]],[[1,2,1,0],[1,3,1,2],[0,3,2,2],[1,1,2,2]],[[1,2,1,0],[1,3,1,2],[0,3,2,2],[1,1,3,1]],[[1,2,1,0],[1,3,1,2],[0,3,2,3],[1,1,2,1]],[[1,2,1,0],[1,3,1,3],[0,3,2,2],[1,1,2,1]],[[1,2,1,0],[1,3,1,2],[0,3,2,1],[1,2,2,2]],[[1,2,1,0],[1,3,1,2],[0,3,2,1],[1,2,3,1]],[[1,2,1,0],[1,3,1,2],[0,3,2,1],[1,3,2,1]],[[1,2,1,0],[1,3,1,2],[0,3,2,1],[2,2,2,1]],[[2,1,1,1],[2,2,3,1],[2,2,2,0],[1,2,1,1]],[[1,1,1,1],[3,2,3,1],[2,2,2,0],[1,2,1,1]],[[1,1,1,1],[2,2,3,1],[3,2,2,0],[1,2,1,1]],[[1,1,1,1],[2,2,3,1],[2,2,2,0],[2,2,1,1]],[[1,1,1,1],[2,2,3,1],[2,2,2,0],[1,3,1,1]],[[2,1,1,1],[2,2,3,1],[2,2,2,1],[1,2,0,1]],[[1,1,1,1],[3,2,3,1],[2,2,2,1],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[3,2,2,1],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[2,2,2,1],[2,2,0,1]],[[1,1,1,1],[2,2,3,1],[2,2,2,1],[1,3,0,1]],[[2,1,1,1],[2,2,3,1],[2,2,2,1],[1,2,1,0]],[[1,1,1,1],[3,2,3,1],[2,2,2,1],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[3,2,2,1],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,2,2,1],[2,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,1,0],[1,3,1,2],[0,4,2,1],[1,2,2,1]],[[1,2,1,0],[1,4,1,2],[0,3,2,1],[1,2,2,1]],[[1,3,1,0],[1,3,1,2],[0,3,2,1],[1,2,2,1]],[[2,2,1,0],[1,3,1,2],[0,3,2,1],[1,2,2,1]],[[1,2,1,0],[1,3,1,2],[0,3,1,2],[1,2,2,2]],[[1,2,1,0],[1,3,1,2],[0,3,1,2],[1,2,3,1]],[[1,2,1,0],[1,3,1,2],[0,3,1,2],[1,3,2,1]],[[1,2,1,0],[1,3,1,2],[0,3,1,2],[2,2,2,1]],[[1,2,1,0],[1,3,1,2],[0,3,1,3],[1,2,2,1]],[[1,2,1,0],[1,3,1,2],[0,4,1,2],[1,2,2,1]],[[1,2,1,0],[1,3,1,3],[0,3,1,2],[1,2,2,1]],[[1,2,1,0],[1,4,1,2],[0,3,1,2],[1,2,2,1]],[[1,3,1,0],[1,3,1,2],[0,3,1,2],[1,2,2,1]],[[2,2,1,0],[1,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,2,1,0],[1,3,1,2],[0,2,3,2],[1,2,3,0]],[[1,2,1,0],[1,3,1,2],[0,2,3,2],[1,3,2,0]],[[1,2,1,0],[1,3,1,2],[0,2,3,2],[2,2,2,0]],[[1,2,1,0],[1,3,1,2],[0,2,3,3],[1,2,2,0]],[[1,2,1,0],[1,3,1,2],[0,2,4,2],[1,2,2,0]],[[1,2,1,0],[1,3,1,3],[0,2,3,2],[1,2,2,0]],[[1,2,1,0],[1,3,1,2],[0,2,3,2],[1,2,1,2]],[[1,2,1,0],[1,3,1,2],[0,2,3,3],[1,2,1,1]],[[1,2,1,0],[1,3,1,2],[0,2,4,2],[1,2,1,1]],[[2,1,1,1],[2,2,3,1],[2,2,3,0],[1,2,1,0]],[[1,1,1,1],[3,2,3,1],[2,2,3,0],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[3,2,3,0],[1,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,2,3,0],[2,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,2,3,0],[1,3,1,0]],[[1,2,1,0],[1,3,1,3],[0,2,3,2],[1,2,1,1]],[[1,2,1,0],[1,3,1,2],[0,2,3,1],[1,2,2,2]],[[1,2,1,0],[1,3,1,2],[0,2,3,1],[1,2,3,1]],[[1,2,1,0],[1,3,1,2],[0,2,3,1],[1,3,2,1]],[[1,2,1,0],[1,3,1,2],[0,2,3,1],[2,2,2,1]],[[1,2,1,0],[1,3,1,2],[0,2,4,1],[1,2,2,1]],[[1,2,1,0],[1,3,1,2],[0,2,2,2],[1,2,2,2]],[[1,2,1,0],[1,3,1,2],[0,2,2,2],[1,2,3,1]],[[1,2,1,0],[1,3,1,2],[0,2,2,2],[1,3,2,1]],[[1,2,1,0],[1,3,1,2],[0,2,2,2],[2,2,2,1]],[[1,2,1,0],[1,3,1,2],[0,2,2,3],[1,2,2,1]],[[1,2,1,0],[1,3,1,3],[0,2,2,2],[1,2,2,1]],[[1,2,1,0],[1,3,1,1],[1,3,3,2],[0,2,3,0]],[[1,2,1,0],[1,3,1,1],[1,3,3,2],[0,3,2,0]],[[1,2,1,0],[1,3,1,1],[1,4,3,2],[0,2,2,0]],[[1,2,1,0],[1,3,1,1],[1,3,3,1],[0,2,2,2]],[[1,2,1,0],[1,3,1,1],[1,3,3,1],[0,2,3,1]],[[1,2,1,0],[1,3,1,1],[1,3,3,1],[0,3,2,1]],[[1,2,1,0],[1,3,1,1],[1,4,3,1],[0,2,2,1]],[[1,2,1,0],[1,3,1,1],[0,3,3,2],[1,2,3,0]],[[1,2,1,0],[1,3,1,1],[0,3,3,2],[1,3,2,0]],[[1,2,1,0],[1,3,1,1],[0,3,3,2],[2,2,2,0]],[[1,2,1,0],[1,3,1,1],[0,4,3,2],[1,2,2,0]],[[1,2,1,0],[1,3,1,1],[0,3,3,1],[1,2,2,2]],[[1,2,1,0],[1,3,1,1],[0,3,3,1],[1,2,3,1]],[[1,2,1,0],[1,3,1,1],[0,3,3,1],[1,3,2,1]],[[1,2,1,0],[1,3,1,1],[0,3,3,1],[2,2,2,1]],[[1,2,1,0],[1,3,1,1],[0,4,3,1],[1,2,2,1]],[[1,2,1,0],[1,3,1,0],[1,3,3,2],[0,2,2,2]],[[2,1,1,1],[2,2,3,1],[2,3,0,0],[1,2,2,1]],[[1,1,1,1],[3,2,3,1],[2,3,0,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[3,3,0,0],[1,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,3,0,0],[2,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,3,0,0],[1,3,2,1]],[[2,1,1,1],[2,2,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,1,1],[3,2,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,1,1],[2,2,3,1],[3,3,0,1],[0,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,4,0,1],[0,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,3,0,1],[0,3,2,1]],[[1,1,1,1],[2,2,3,1],[2,3,0,1],[0,2,3,1]],[[1,1,1,1],[2,2,3,1],[2,3,0,1],[0,2,2,2]],[[2,1,1,1],[2,2,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,1,1],[3,2,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,1,1],[2,2,3,1],[3,3,0,1],[1,1,2,1]],[[1,1,1,1],[2,2,3,1],[2,4,0,1],[1,1,2,1]],[[1,1,1,1],[2,2,3,1],[2,3,0,1],[2,1,2,1]],[[2,1,1,1],[2,2,3,1],[2,3,0,1],[1,2,2,0]],[[1,1,1,1],[3,2,3,1],[2,3,0,1],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[3,3,0,1],[1,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,3,0,1],[2,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,3,0,1],[1,3,2,0]],[[2,1,1,1],[2,2,3,1],[2,3,0,2],[0,1,2,1]],[[1,1,1,1],[3,2,3,1],[2,3,0,2],[0,1,2,1]],[[1,1,1,1],[2,2,3,1],[3,3,0,2],[0,1,2,1]],[[1,1,1,1],[2,2,3,1],[2,4,0,2],[0,1,2,1]],[[2,1,1,1],[2,2,3,1],[2,3,0,2],[0,2,1,1]],[[1,1,1,1],[3,2,3,1],[2,3,0,2],[0,2,1,1]],[[1,1,1,1],[2,2,3,1],[3,3,0,2],[0,2,1,1]],[[1,1,1,1],[2,2,3,1],[2,4,0,2],[0,2,1,1]],[[1,1,1,1],[2,2,3,1],[2,3,0,2],[0,3,1,1]],[[2,1,1,1],[2,2,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,1,1],[3,2,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,1,1],[2,2,3,1],[3,3,0,2],[0,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,4,0,2],[0,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,3,0,2],[0,3,2,0]],[[1,1,1,1],[2,2,3,1],[2,3,0,2],[0,2,3,0]],[[2,1,1,1],[2,2,3,1],[2,3,0,2],[1,0,2,1]],[[1,1,1,1],[3,2,3,1],[2,3,0,2],[1,0,2,1]],[[1,1,1,1],[2,2,3,1],[3,3,0,2],[1,0,2,1]],[[1,1,1,1],[2,2,3,1],[2,4,0,2],[1,0,2,1]],[[1,1,1,1],[2,2,3,1],[2,3,0,2],[2,0,2,1]],[[2,1,1,1],[2,2,3,1],[2,3,0,2],[1,1,1,1]],[[1,1,1,1],[3,2,3,1],[2,3,0,2],[1,1,1,1]],[[1,1,1,1],[2,2,3,1],[3,3,0,2],[1,1,1,1]],[[1,1,1,1],[2,2,3,1],[2,4,0,2],[1,1,1,1]],[[1,1,1,1],[2,2,3,1],[2,3,0,2],[2,1,1,1]],[[2,1,1,1],[2,2,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,1,1],[3,2,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,1,1],[2,2,3,1],[3,3,0,2],[1,1,2,0]],[[1,1,1,1],[2,2,3,1],[2,4,0,2],[1,1,2,0]],[[1,1,1,1],[2,2,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,1,0],[1,3,1,0],[1,3,3,2],[0,2,3,1]],[[1,2,1,0],[1,3,1,0],[1,3,3,2],[0,3,2,1]],[[1,2,1,0],[1,3,1,0],[1,4,3,2],[0,2,2,1]],[[1,2,1,0],[1,3,1,0],[0,3,3,2],[1,2,2,2]],[[1,2,1,0],[1,3,1,0],[0,3,3,2],[1,2,3,1]],[[1,2,1,0],[1,3,1,0],[0,3,3,2],[1,3,2,1]],[[1,2,1,0],[1,3,1,0],[0,3,3,2],[2,2,2,1]],[[1,2,1,0],[1,3,1,0],[0,4,3,2],[1,2,2,1]],[[2,1,1,1],[2,2,3,1],[2,3,1,0],[0,2,2,1]],[[1,1,1,1],[3,2,3,1],[2,3,1,0],[0,2,2,1]],[[1,1,1,1],[2,2,3,1],[3,3,1,0],[0,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,4,1,0],[0,2,2,1]],[[1,1,1,1],[2,2,3,1],[2,3,1,0],[0,3,2,1]],[[1,1,1,1],[2,2,3,1],[2,3,1,0],[0,2,3,1]],[[1,1,1,1],[2,2,3,1],[2,3,1,0],[0,2,2,2]],[[2,1,1,1],[2,2,3,1],[2,3,1,0],[1,1,2,1]],[[1,1,1,1],[3,2,3,1],[2,3,1,0],[1,1,2,1]],[[1,1,1,1],[2,2,3,1],[3,3,1,0],[1,1,2,1]],[[1,1,1,1],[2,2,3,1],[2,4,1,0],[1,1,2,1]],[[1,1,1,1],[2,2,3,1],[2,3,1,0],[2,1,2,1]],[[2,1,1,1],[2,2,3,1],[2,3,1,1],[0,2,2,0]],[[1,1,1,1],[3,2,3,1],[2,3,1,1],[0,2,2,0]],[[1,1,1,1],[2,2,3,1],[3,3,1,1],[0,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,4,1,1],[0,2,2,0]],[[1,1,1,1],[2,2,3,1],[2,3,1,1],[0,3,2,0]],[[1,1,1,1],[2,2,3,1],[2,3,1,1],[0,2,3,0]],[[2,1,1,1],[2,2,3,1],[2,3,1,1],[1,1,2,0]],[[1,1,1,1],[3,2,3,1],[2,3,1,1],[1,1,2,0]],[[1,1,1,1],[2,2,3,1],[3,3,1,1],[1,1,2,0]],[[1,1,1,1],[2,2,3,1],[2,4,1,1],[1,1,2,0]],[[1,1,1,1],[2,2,3,1],[2,3,1,1],[2,1,2,0]],[[2,1,1,1],[2,2,3,1],[2,3,1,2],[0,1,1,1]],[[1,1,1,1],[3,2,3,1],[2,3,1,2],[0,1,1,1]],[[1,1,1,1],[2,2,3,1],[3,3,1,2],[0,1,1,1]],[[1,1,1,1],[2,2,3,1],[2,4,1,2],[0,1,1,1]],[[2,1,1,1],[2,2,3,1],[2,3,1,2],[0,1,2,0]],[[1,1,1,1],[3,2,3,1],[2,3,1,2],[0,1,2,0]],[[1,1,1,1],[2,2,3,1],[3,3,1,2],[0,1,2,0]],[[1,1,1,1],[2,2,3,1],[2,4,1,2],[0,1,2,0]],[[2,1,1,1],[2,2,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,1,1],[3,2,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,1,1],[2,2,3,1],[3,3,1,2],[0,2,0,1]],[[1,1,1,1],[2,2,3,1],[2,4,1,2],[0,2,0,1]],[[1,1,1,1],[2,2,3,1],[2,3,1,2],[0,3,0,1]],[[2,1,1,1],[2,2,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,1,1],[3,2,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[3,3,1,2],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,4,1,2],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,3,1,2],[0,3,1,0]],[[2,1,1,1],[2,2,3,1],[2,3,1,2],[1,0,1,1]],[[1,1,1,1],[3,2,3,1],[2,3,1,2],[1,0,1,1]],[[1,1,1,1],[2,2,3,1],[3,3,1,2],[1,0,1,1]],[[1,1,1,1],[2,2,3,1],[2,4,1,2],[1,0,1,1]],[[1,1,1,1],[2,2,3,1],[2,3,1,2],[2,0,1,1]],[[2,1,1,1],[2,2,3,1],[2,3,1,2],[1,0,2,0]],[[1,1,1,1],[3,2,3,1],[2,3,1,2],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[3,3,1,2],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[2,4,1,2],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[2,3,1,2],[2,0,2,0]],[[2,1,1,1],[2,2,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,1,1],[3,2,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,2,3,1],[3,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,2,3,1],[2,4,1,2],[1,1,0,1]],[[1,1,1,1],[2,2,3,1],[2,3,1,2],[2,1,0,1]],[[2,1,1,1],[2,2,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,1,1],[3,2,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,1,1],[2,2,3,1],[3,3,1,2],[1,1,1,0]],[[1,1,1,1],[2,2,3,1],[2,4,1,2],[1,1,1,0]],[[1,1,1,1],[2,2,3,1],[2,3,1,2],[2,1,1,0]],[[2,1,1,1],[2,2,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,1,1],[3,2,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,1,1],[2,2,3,1],[3,3,1,2],[1,2,0,0]],[[1,1,1,1],[2,2,3,1],[2,4,1,2],[1,2,0,0]],[[1,1,1,1],[2,2,3,1],[2,3,1,2],[2,2,0,0]],[[2,1,1,1],[2,2,3,1],[2,3,2,0],[0,1,2,1]],[[1,1,1,1],[3,2,3,1],[2,3,2,0],[0,1,2,1]],[[1,1,1,1],[2,2,3,1],[3,3,2,0],[0,1,2,1]],[[1,1,1,1],[2,2,3,1],[2,4,2,0],[0,1,2,1]],[[2,1,1,1],[2,2,3,1],[2,3,2,0],[0,2,1,1]],[[1,1,1,1],[3,2,3,1],[2,3,2,0],[0,2,1,1]],[[1,1,1,1],[2,2,3,1],[3,3,2,0],[0,2,1,1]],[[1,1,1,1],[2,2,3,1],[2,4,2,0],[0,2,1,1]],[[1,1,1,1],[2,2,3,1],[2,3,2,0],[0,3,1,1]],[[2,1,1,1],[2,2,3,1],[2,3,2,0],[1,0,2,1]],[[1,1,1,1],[3,2,3,1],[2,3,2,0],[1,0,2,1]],[[1,1,1,1],[2,2,3,1],[3,3,2,0],[1,0,2,1]],[[1,1,1,1],[2,2,3,1],[2,4,2,0],[1,0,2,1]],[[1,1,1,1],[2,2,3,1],[2,3,2,0],[2,0,2,1]],[[2,1,1,1],[2,2,3,1],[2,3,2,0],[1,1,1,1]],[[1,1,1,1],[3,2,3,1],[2,3,2,0],[1,1,1,1]],[[1,1,1,1],[2,2,3,1],[3,3,2,0],[1,1,1,1]],[[1,1,1,1],[2,2,3,1],[2,4,2,0],[1,1,1,1]],[[1,1,1,1],[2,2,3,1],[2,3,2,0],[2,1,1,1]],[[2,1,1,1],[2,2,3,1],[2,3,2,0],[1,2,0,1]],[[1,1,1,1],[3,2,3,1],[2,3,2,0],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[3,3,2,0],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[2,4,2,0],[1,2,0,1]],[[1,1,1,1],[2,2,3,1],[2,3,2,0],[2,2,0,1]],[[2,1,1,1],[2,2,3,1],[2,3,2,1],[0,1,1,1]],[[1,1,1,1],[3,2,3,1],[2,3,2,1],[0,1,1,1]],[[1,1,1,1],[2,2,3,1],[3,3,2,1],[0,1,1,1]],[[1,1,1,1],[2,2,3,1],[2,4,2,1],[0,1,1,1]],[[2,1,1,1],[2,2,3,1],[2,3,2,1],[0,1,2,0]],[[1,1,1,1],[3,2,3,1],[2,3,2,1],[0,1,2,0]],[[1,1,1,1],[2,2,3,1],[3,3,2,1],[0,1,2,0]],[[1,1,1,1],[2,2,3,1],[2,4,2,1],[0,1,2,0]],[[2,1,1,1],[2,2,3,1],[2,3,2,1],[0,2,0,1]],[[1,1,1,1],[3,2,3,1],[2,3,2,1],[0,2,0,1]],[[1,1,1,1],[2,2,3,1],[3,3,2,1],[0,2,0,1]],[[1,1,1,1],[2,2,3,1],[2,4,2,1],[0,2,0,1]],[[1,1,1,1],[2,2,3,1],[2,3,2,1],[0,3,0,1]],[[2,1,1,1],[2,2,3,1],[2,3,2,1],[0,2,1,0]],[[1,1,1,1],[3,2,3,1],[2,3,2,1],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[3,3,2,1],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,4,2,1],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,3,2,1],[0,3,1,0]],[[2,1,1,1],[2,2,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,1,1],[3,2,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,1,1],[2,2,3,1],[3,3,2,1],[1,0,1,1]],[[1,1,1,1],[2,2,3,1],[2,4,2,1],[1,0,1,1]],[[1,1,1,1],[2,2,3,1],[2,3,2,1],[2,0,1,1]],[[2,1,1,1],[2,2,3,1],[2,3,2,1],[1,0,2,0]],[[1,1,1,1],[3,2,3,1],[2,3,2,1],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[3,3,2,1],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[2,4,2,1],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[2,3,2,1],[2,0,2,0]],[[2,1,1,1],[2,2,3,1],[2,3,2,1],[1,1,0,1]],[[1,1,1,1],[3,2,3,1],[2,3,2,1],[1,1,0,1]],[[1,1,1,1],[2,2,3,1],[3,3,2,1],[1,1,0,1]],[[1,1,1,1],[2,2,3,1],[2,4,2,1],[1,1,0,1]],[[1,1,1,1],[2,2,3,1],[2,3,2,1],[2,1,0,1]],[[2,1,1,1],[2,2,3,1],[2,3,2,1],[1,1,1,0]],[[1,1,1,1],[3,2,3,1],[2,3,2,1],[1,1,1,0]],[[1,1,1,1],[2,2,3,1],[3,3,2,1],[1,1,1,0]],[[1,1,1,1],[2,2,3,1],[2,4,2,1],[1,1,1,0]],[[1,1,1,1],[2,2,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,1,0],[1,3,0,2],[1,3,3,2],[1,0,2,2]],[[1,2,1,0],[1,3,0,2],[1,3,3,2],[1,0,3,1]],[[2,1,1,1],[2,2,3,1],[2,3,2,1],[1,2,0,0]],[[1,1,1,1],[3,2,3,1],[2,3,2,1],[1,2,0,0]],[[1,1,1,1],[2,2,3,1],[3,3,2,1],[1,2,0,0]],[[1,1,1,1],[2,2,3,1],[2,4,2,1],[1,2,0,0]],[[1,1,1,1],[2,2,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,1,0],[1,3,0,2],[1,3,3,3],[1,0,2,1]],[[1,2,1,0],[1,3,0,2],[1,3,3,2],[0,2,3,0]],[[1,2,1,0],[1,3,0,2],[1,3,3,2],[0,3,2,0]],[[1,2,1,0],[1,3,0,2],[1,4,3,2],[0,2,2,0]],[[1,2,1,0],[1,3,0,2],[1,3,3,2],[0,1,2,2]],[[1,2,1,0],[1,3,0,2],[1,3,3,2],[0,1,3,1]],[[1,2,1,0],[1,3,0,2],[1,3,3,3],[0,1,2,1]],[[1,2,1,0],[1,3,0,2],[1,3,3,1],[0,2,2,2]],[[1,2,1,0],[1,3,0,2],[1,3,3,1],[0,2,3,1]],[[1,2,1,0],[1,3,0,2],[1,3,3,1],[0,3,2,1]],[[1,2,1,0],[1,3,0,2],[1,4,3,1],[0,2,2,1]],[[1,2,1,0],[1,3,0,2],[1,3,2,2],[0,2,2,2]],[[1,2,1,0],[1,3,0,2],[1,3,2,2],[0,2,3,1]],[[1,2,1,0],[1,3,0,2],[1,3,2,2],[0,3,2,1]],[[1,2,1,0],[1,3,0,2],[1,3,2,3],[0,2,2,1]],[[1,2,1,0],[1,3,0,2],[1,4,2,2],[0,2,2,1]],[[1,2,1,0],[1,3,0,2],[1,2,3,2],[0,2,2,2]],[[1,2,1,0],[1,3,0,2],[1,2,3,2],[0,2,3,1]],[[1,2,1,0],[1,3,0,2],[1,2,3,2],[0,3,2,1]],[[1,2,1,0],[1,3,0,2],[1,2,3,3],[0,2,2,1]],[[1,2,1,0],[1,3,0,2],[0,3,3,2],[1,2,3,0]],[[1,2,1,0],[1,3,0,2],[0,3,3,2],[1,3,2,0]],[[1,2,1,0],[1,3,0,2],[0,3,3,2],[2,2,2,0]],[[1,2,1,0],[1,3,0,2],[0,4,3,2],[1,2,2,0]],[[1,2,1,0],[1,3,0,2],[0,3,3,2],[1,1,2,2]],[[1,2,1,0],[1,3,0,2],[0,3,3,2],[1,1,3,1]],[[1,2,1,0],[1,3,0,2],[0,3,3,3],[1,1,2,1]],[[1,2,1,0],[1,3,0,2],[0,3,3,1],[1,2,2,2]],[[1,2,1,0],[1,3,0,2],[0,3,3,1],[1,2,3,1]],[[1,2,1,0],[1,3,0,2],[0,3,3,1],[1,3,2,1]],[[1,2,1,0],[1,3,0,2],[0,3,3,1],[2,2,2,1]],[[1,2,1,0],[1,3,0,2],[0,4,3,1],[1,2,2,1]],[[1,2,1,0],[1,3,0,2],[0,3,2,2],[1,2,2,2]],[[1,2,1,0],[1,3,0,2],[0,3,2,2],[1,2,3,1]],[[1,2,1,0],[1,3,0,2],[0,3,2,2],[1,3,2,1]],[[1,2,1,0],[1,3,0,2],[0,3,2,2],[2,2,2,1]],[[1,2,1,0],[1,3,0,2],[0,3,2,3],[1,2,2,1]],[[1,2,1,0],[1,3,0,2],[0,4,2,2],[1,2,2,1]],[[1,2,1,0],[1,3,0,2],[0,2,3,2],[1,2,2,2]],[[1,2,1,0],[1,3,0,2],[0,2,3,2],[1,2,3,1]],[[1,2,1,0],[1,3,0,2],[0,2,3,2],[1,3,2,1]],[[1,2,1,0],[1,3,0,2],[0,2,3,2],[2,2,2,1]],[[1,2,1,0],[1,3,0,2],[0,2,3,3],[1,2,2,1]],[[1,2,1,0],[1,3,0,1],[1,3,3,2],[0,2,2,2]],[[1,2,1,0],[1,3,0,1],[1,3,3,2],[0,2,3,1]],[[1,2,1,0],[1,3,0,1],[1,3,3,2],[0,3,2,1]],[[1,2,1,0],[1,3,0,1],[1,4,3,2],[0,2,2,1]],[[1,2,1,0],[1,3,0,1],[0,3,3,2],[1,2,2,2]],[[1,2,1,0],[1,3,0,1],[0,3,3,2],[1,2,3,1]],[[1,2,1,0],[1,3,0,1],[0,3,3,2],[1,3,2,1]],[[1,2,1,0],[1,3,0,1],[0,3,3,2],[2,2,2,1]],[[1,2,1,0],[1,3,0,1],[0,4,3,2],[1,2,2,1]],[[2,1,1,1],[2,2,3,1],[2,3,3,0],[0,1,2,0]],[[1,1,1,1],[3,2,3,1],[2,3,3,0],[0,1,2,0]],[[1,1,1,1],[2,2,3,1],[3,3,3,0],[0,1,2,0]],[[1,1,1,1],[2,2,3,1],[2,4,3,0],[0,1,2,0]],[[2,1,1,1],[2,2,3,1],[2,3,3,0],[0,2,1,0]],[[1,1,1,1],[3,2,3,1],[2,3,3,0],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[3,3,3,0],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,4,3,0],[0,2,1,0]],[[1,1,1,1],[2,2,3,1],[2,3,3,0],[0,3,1,0]],[[2,1,1,1],[2,2,3,1],[2,3,3,0],[1,0,2,0]],[[1,1,1,1],[3,2,3,1],[2,3,3,0],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[3,3,3,0],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[2,4,3,0],[1,0,2,0]],[[1,1,1,1],[2,2,3,1],[2,3,3,0],[2,0,2,0]],[[2,1,1,1],[2,2,3,1],[2,3,3,0],[1,1,1,0]],[[1,1,1,1],[3,2,3,1],[2,3,3,0],[1,1,1,0]],[[1,1,1,1],[2,2,3,1],[3,3,3,0],[1,1,1,0]],[[1,1,1,1],[2,2,3,1],[2,4,3,0],[1,1,1,0]],[[1,1,1,1],[2,2,3,1],[2,3,3,0],[2,1,1,0]],[[2,1,1,1],[2,2,3,1],[2,3,3,0],[1,2,0,0]],[[1,1,1,1],[3,2,3,1],[2,3,3,0],[1,2,0,0]],[[1,1,1,1],[2,2,3,1],[3,3,3,0],[1,2,0,0]],[[1,1,1,1],[2,2,3,1],[2,4,3,0],[1,2,0,0]],[[1,1,1,1],[2,2,3,1],[2,3,3,0],[2,2,0,0]],[[2,1,1,1],[2,2,3,1],[2,3,3,1],[0,2,0,0]],[[1,1,1,1],[3,2,3,1],[2,3,3,1],[0,2,0,0]],[[1,1,1,1],[2,2,3,1],[3,3,3,1],[0,2,0,0]],[[1,1,1,1],[2,2,3,1],[2,4,3,1],[0,2,0,0]],[[2,1,1,1],[2,2,3,1],[2,3,3,1],[1,1,0,0]],[[1,1,1,1],[3,2,3,1],[2,3,3,1],[1,1,0,0]],[[1,1,1,1],[2,2,3,1],[3,3,3,1],[1,1,0,0]],[[1,1,1,1],[2,2,3,1],[2,4,3,1],[1,1,0,0]],[[1,1,1,1],[2,2,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,1,0],[1,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,1,0],[1,2,3,3],[1,3,3,2],[1,0,0,1]],[[1,2,1,0],[1,2,4,2],[1,3,3,2],[1,0,0,1]],[[1,2,1,0],[1,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,1,0],[1,2,3,3],[1,3,3,2],[0,1,0,1]],[[1,2,1,0],[1,2,4,2],[1,3,3,2],[0,1,0,1]],[[1,2,1,0],[1,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,1,0],[1,2,3,2],[1,4,3,1],[1,1,1,0]],[[1,2,1,0],[1,2,3,3],[1,3,3,1],[1,1,1,0]],[[1,2,1,0],[1,2,4,2],[1,3,3,1],[1,1,1,0]],[[1,2,1,0],[1,2,3,2],[1,3,4,1],[1,1,0,1]],[[1,2,1,0],[1,2,3,2],[1,4,3,1],[1,1,0,1]],[[1,2,1,0],[1,2,3,3],[1,3,3,1],[1,1,0,1]],[[1,2,1,0],[1,2,4,2],[1,3,3,1],[1,1,0,1]],[[1,2,1,0],[1,2,3,2],[1,3,3,1],[1,0,3,0]],[[1,2,1,0],[1,2,3,2],[1,3,4,1],[1,0,2,0]],[[1,2,1,0],[1,2,3,2],[1,4,3,1],[1,0,2,0]],[[1,2,1,0],[1,2,3,3],[1,3,3,1],[1,0,2,0]],[[1,2,1,0],[1,2,4,2],[1,3,3,1],[1,0,2,0]],[[1,2,1,0],[1,2,3,2],[1,3,4,1],[1,0,1,1]],[[1,2,1,0],[1,2,3,2],[1,4,3,1],[1,0,1,1]],[[1,2,1,0],[1,2,3,3],[1,3,3,1],[1,0,1,1]],[[1,2,1,0],[1,2,4,2],[1,3,3,1],[1,0,1,1]],[[1,2,1,0],[1,2,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,1,0],[1,2,3,2],[1,3,4,1],[0,2,1,0]],[[1,2,1,0],[1,2,3,2],[1,4,3,1],[0,2,1,0]],[[1,2,1,0],[1,2,3,3],[1,3,3,1],[0,2,1,0]],[[1,2,1,0],[1,2,4,2],[1,3,3,1],[0,2,1,0]],[[1,2,1,0],[1,2,3,2],[1,3,3,1],[0,3,0,1]],[[1,2,1,0],[1,2,3,2],[1,3,4,1],[0,2,0,1]],[[1,2,1,0],[1,2,3,2],[1,4,3,1],[0,2,0,1]],[[1,2,1,0],[1,2,3,3],[1,3,3,1],[0,2,0,1]],[[1,2,1,0],[1,2,4,2],[1,3,3,1],[0,2,0,1]],[[1,2,1,0],[1,2,3,2],[1,3,3,1],[0,1,3,0]],[[1,2,1,0],[1,2,3,2],[1,3,4,1],[0,1,2,0]],[[1,2,1,0],[1,2,3,2],[1,4,3,1],[0,1,2,0]],[[1,2,1,0],[1,2,3,3],[1,3,3,1],[0,1,2,0]],[[1,2,1,0],[1,2,4,2],[1,3,3,1],[0,1,2,0]],[[1,2,1,0],[1,2,3,2],[1,3,4,1],[0,1,1,1]],[[1,2,1,0],[1,2,3,2],[1,4,3,1],[0,1,1,1]],[[1,2,1,0],[1,2,3,3],[1,3,3,1],[0,1,1,1]],[[1,2,1,0],[1,2,4,2],[1,3,3,1],[0,1,1,1]],[[1,2,1,0],[1,2,3,2],[1,3,4,1],[0,0,2,1]],[[1,2,1,0],[1,2,3,3],[1,3,3,1],[0,0,2,1]],[[1,2,1,0],[1,2,4,2],[1,3,3,1],[0,0,2,1]],[[1,2,1,0],[1,2,3,2],[1,3,4,0],[1,1,1,1]],[[1,2,1,0],[1,2,3,2],[1,4,3,0],[1,1,1,1]],[[1,2,1,0],[1,2,3,3],[1,3,3,0],[1,1,1,1]],[[1,2,1,0],[1,2,4,2],[1,3,3,0],[1,1,1,1]],[[1,2,1,0],[1,2,3,2],[1,3,3,0],[1,0,2,2]],[[1,2,1,0],[1,2,3,2],[1,3,3,0],[1,0,3,1]],[[1,2,1,0],[1,2,3,2],[1,3,4,0],[1,0,2,1]],[[1,2,1,0],[1,2,3,2],[1,4,3,0],[1,0,2,1]],[[1,2,1,0],[1,2,3,3],[1,3,3,0],[1,0,2,1]],[[1,2,1,0],[1,2,4,2],[1,3,3,0],[1,0,2,1]],[[1,2,1,0],[1,2,3,2],[1,3,3,0],[0,3,1,1]],[[1,2,1,0],[1,2,3,2],[1,3,4,0],[0,2,1,1]],[[1,2,1,0],[1,2,3,2],[1,4,3,0],[0,2,1,1]],[[1,2,1,0],[1,2,3,3],[1,3,3,0],[0,2,1,1]],[[1,2,1,0],[1,2,4,2],[1,3,3,0],[0,2,1,1]],[[1,2,1,0],[1,2,3,2],[1,3,3,0],[0,1,2,2]],[[1,2,1,0],[1,2,3,2],[1,3,3,0],[0,1,3,1]],[[1,2,1,0],[1,2,3,2],[1,3,4,0],[0,1,2,1]],[[1,2,1,0],[1,2,3,2],[1,4,3,0],[0,1,2,1]],[[1,2,1,0],[1,2,3,3],[1,3,3,0],[0,1,2,1]],[[1,2,1,0],[1,2,4,2],[1,3,3,0],[0,1,2,1]],[[1,2,1,0],[1,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,1,0],[1,2,3,3],[1,3,2,2],[1,1,1,0]],[[1,2,1,0],[1,2,4,2],[1,3,2,2],[1,1,1,0]],[[1,2,1,0],[1,2,3,2],[1,3,2,2],[1,1,0,2]],[[1,2,1,0],[1,2,3,2],[1,3,2,3],[1,1,0,1]],[[1,2,1,0],[1,2,3,3],[1,3,2,2],[1,1,0,1]],[[1,2,1,0],[1,2,4,2],[1,3,2,2],[1,1,0,1]],[[1,2,1,0],[1,2,3,2],[1,3,2,3],[1,0,2,0]],[[1,2,1,0],[1,2,3,3],[1,3,2,2],[1,0,2,0]],[[1,2,1,0],[1,2,4,2],[1,3,2,2],[1,0,2,0]],[[1,2,1,0],[1,2,3,2],[1,3,2,2],[1,0,1,2]],[[1,2,1,0],[1,2,3,2],[1,3,2,3],[1,0,1,1]],[[1,2,1,0],[1,2,3,3],[1,3,2,2],[1,0,1,1]],[[1,2,1,0],[1,2,4,2],[1,3,2,2],[1,0,1,1]],[[1,2,1,0],[1,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,1,0],[1,2,3,3],[1,3,2,2],[0,2,1,0]],[[1,2,1,0],[1,2,4,2],[1,3,2,2],[0,2,1,0]],[[1,2,1,0],[1,2,3,2],[1,3,2,2],[0,2,0,2]],[[1,2,1,0],[1,2,3,2],[1,3,2,3],[0,2,0,1]],[[1,2,1,0],[1,2,3,3],[1,3,2,2],[0,2,0,1]],[[1,2,1,0],[1,2,4,2],[1,3,2,2],[0,2,0,1]],[[1,2,1,0],[1,2,3,2],[1,3,2,3],[0,1,2,0]],[[1,2,1,0],[1,2,3,3],[1,3,2,2],[0,1,2,0]],[[1,2,1,0],[1,2,4,2],[1,3,2,2],[0,1,2,0]],[[1,2,1,0],[1,2,3,2],[1,3,2,2],[0,1,1,2]],[[1,2,1,0],[1,2,3,2],[1,3,2,3],[0,1,1,1]],[[1,2,1,0],[1,2,3,3],[1,3,2,2],[0,1,1,1]],[[1,2,1,0],[1,2,4,2],[1,3,2,2],[0,1,1,1]],[[1,2,1,0],[1,2,3,2],[1,3,2,2],[0,0,2,2]],[[1,2,1,0],[1,2,3,2],[1,3,2,3],[0,0,2,1]],[[1,2,1,0],[1,2,3,3],[1,3,2,2],[0,0,2,1]],[[1,2,1,0],[1,2,4,2],[1,3,2,2],[0,0,2,1]],[[1,2,1,0],[1,2,3,2],[1,3,2,1],[0,2,3,0]],[[1,2,1,0],[1,2,3,2],[1,3,2,1],[0,3,2,0]],[[1,2,1,0],[1,2,3,2],[1,4,2,1],[0,2,2,0]],[[1,2,1,0],[1,2,3,2],[1,3,2,0],[0,2,2,2]],[[1,2,1,0],[1,2,3,2],[1,3,2,0],[0,2,3,1]],[[1,2,1,0],[1,2,3,2],[1,3,2,0],[0,3,2,1]],[[1,2,1,0],[1,2,3,2],[1,4,2,0],[0,2,2,1]],[[1,2,1,0],[1,2,3,2],[1,3,1,2],[1,0,2,2]],[[1,2,1,0],[1,2,3,2],[1,3,1,2],[1,0,3,1]],[[1,2,1,0],[1,2,3,2],[1,3,1,3],[1,0,2,1]],[[1,2,1,0],[1,2,3,3],[1,3,1,2],[1,0,2,1]],[[1,2,1,0],[1,2,4,2],[1,3,1,2],[1,0,2,1]],[[1,2,1,0],[1,2,3,2],[1,3,1,2],[0,1,2,2]],[[1,2,1,0],[1,2,3,2],[1,3,1,2],[0,1,3,1]],[[1,2,1,0],[1,2,3,2],[1,3,1,3],[0,1,2,1]],[[1,2,1,0],[1,2,3,3],[1,3,1,2],[0,1,2,1]],[[1,2,1,0],[1,2,4,2],[1,3,1,2],[0,1,2,1]],[[1,2,1,0],[1,2,3,2],[1,3,0,2],[0,2,2,2]],[[1,2,1,0],[1,2,3,2],[1,3,0,2],[0,2,3,1]],[[1,2,1,0],[1,2,3,2],[1,3,0,2],[0,3,2,1]],[[1,2,1,0],[1,2,3,2],[1,3,0,3],[0,2,2,1]],[[1,2,1,0],[1,2,3,2],[1,4,0,2],[0,2,2,1]],[[1,2,1,0],[1,2,3,3],[1,3,0,2],[0,2,2,1]],[[1,2,1,0],[1,2,4,2],[1,3,0,2],[0,2,2,1]],[[1,2,1,0],[1,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,1,0],[1,2,3,2],[1,2,3,1],[0,3,2,0]],[[1,2,1,0],[1,2,3,2],[1,2,4,1],[0,2,2,0]],[[1,2,1,0],[1,2,3,3],[1,2,3,1],[0,2,2,0]],[[1,2,1,0],[1,2,4,2],[1,2,3,1],[0,2,2,0]],[[1,2,1,0],[1,2,3,2],[1,2,4,1],[0,2,1,1]],[[1,2,1,0],[1,2,3,3],[1,2,3,1],[0,2,1,1]],[[1,2,1,0],[1,2,4,2],[1,2,3,1],[0,2,1,1]],[[1,2,1,0],[1,2,3,2],[1,2,3,0],[0,2,2,2]],[[1,2,1,0],[1,2,3,2],[1,2,3,0],[0,2,3,1]],[[1,2,1,0],[1,2,3,2],[1,2,3,0],[0,3,2,1]],[[1,2,1,0],[1,2,3,2],[1,2,4,0],[0,2,2,1]],[[1,2,1,0],[1,2,3,3],[1,2,3,0],[0,2,2,1]],[[1,2,1,0],[1,2,4,2],[1,2,3,0],[0,2,2,1]],[[1,2,1,0],[1,2,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,1,0],[1,2,3,3],[1,2,2,2],[0,2,2,0]],[[1,2,1,0],[1,2,4,2],[1,2,2,2],[0,2,2,0]],[[1,2,1,0],[1,2,3,2],[1,2,2,2],[0,2,1,2]],[[1,2,1,0],[1,2,3,2],[1,2,2,3],[0,2,1,1]],[[1,2,1,0],[1,2,3,3],[1,2,2,2],[0,2,1,1]],[[1,2,1,0],[1,2,4,2],[1,2,2,2],[0,2,1,1]],[[1,2,1,0],[1,2,3,2],[1,2,1,2],[0,2,2,2]],[[1,2,1,0],[1,2,3,2],[1,2,1,2],[0,2,3,1]],[[1,2,1,0],[1,2,3,2],[1,2,1,2],[0,3,2,1]],[[1,2,1,0],[1,2,3,2],[1,2,1,3],[0,2,2,1]],[[1,2,1,0],[1,2,3,3],[1,2,1,2],[0,2,2,1]],[[1,2,1,0],[1,2,4,2],[1,2,1,2],[0,2,2,1]],[[1,2,1,0],[1,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,1,0],[1,2,3,3],[0,3,3,2],[1,1,0,1]],[[1,2,1,0],[1,2,4,2],[0,3,3,2],[1,1,0,1]],[[1,2,1,0],[1,2,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,1,0],[1,2,3,2],[0,3,3,1],[2,2,1,0]],[[1,2,1,0],[1,2,3,2],[0,3,4,1],[1,2,1,0]],[[1,2,1,0],[1,2,3,2],[0,4,3,1],[1,2,1,0]],[[1,2,1,0],[1,2,3,3],[0,3,3,1],[1,2,1,0]],[[1,2,1,0],[1,2,4,2],[0,3,3,1],[1,2,1,0]],[[1,2,1,0],[1,2,3,2],[0,3,3,1],[1,3,0,1]],[[1,2,1,0],[1,2,3,2],[0,3,3,1],[2,2,0,1]],[[1,2,1,0],[1,2,3,2],[0,3,4,1],[1,2,0,1]],[[1,2,1,0],[1,2,3,2],[0,4,3,1],[1,2,0,1]],[[1,2,1,0],[1,2,3,3],[0,3,3,1],[1,2,0,1]],[[1,2,1,0],[1,2,4,2],[0,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,2,3,2],[1,4,1,0],[1,2,2,0]],[[1,1,1,1],[2,2,3,2],[1,3,1,0],[2,2,2,0]],[[1,1,1,1],[2,2,3,2],[1,3,1,0],[1,3,2,0]],[[1,2,1,0],[1,2,3,2],[0,3,3,1],[1,1,3,0]],[[1,2,1,0],[1,2,3,2],[0,3,4,1],[1,1,2,0]],[[1,2,1,0],[1,2,3,2],[0,4,3,1],[1,1,2,0]],[[1,2,1,0],[1,2,3,3],[0,3,3,1],[1,1,2,0]],[[1,2,1,0],[1,2,4,2],[0,3,3,1],[1,1,2,0]],[[1,2,1,0],[1,2,3,2],[0,3,4,1],[1,1,1,1]],[[1,2,1,0],[1,2,3,2],[0,4,3,1],[1,1,1,1]],[[1,2,1,0],[1,2,3,3],[0,3,3,1],[1,1,1,1]],[[1,2,1,0],[1,2,4,2],[0,3,3,1],[1,1,1,1]],[[1,2,1,0],[1,2,3,2],[0,3,4,1],[1,0,2,1]],[[1,2,1,0],[1,2,3,3],[0,3,3,1],[1,0,2,1]],[[1,2,1,0],[1,2,4,2],[0,3,3,1],[1,0,2,1]],[[1,2,1,0],[1,2,3,2],[0,3,3,0],[1,3,1,1]],[[1,2,1,0],[1,2,3,2],[0,3,3,0],[2,2,1,1]],[[1,2,1,0],[1,2,3,2],[0,3,4,0],[1,2,1,1]],[[1,2,1,0],[1,2,3,2],[0,4,3,0],[1,2,1,1]],[[1,2,1,0],[1,2,3,3],[0,3,3,0],[1,2,1,1]],[[1,2,1,0],[1,2,4,2],[0,3,3,0],[1,2,1,1]],[[1,2,1,0],[1,2,3,2],[0,3,3,0],[1,1,2,2]],[[1,2,1,0],[1,2,3,2],[0,3,3,0],[1,1,3,1]],[[1,2,1,0],[1,2,3,2],[0,3,4,0],[1,1,2,1]],[[1,2,1,0],[1,2,3,2],[0,4,3,0],[1,1,2,1]],[[1,2,1,0],[1,2,3,3],[0,3,3,0],[1,1,2,1]],[[1,2,1,0],[1,2,4,2],[0,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,2,3,2],[1,4,2,0],[1,2,1,0]],[[1,1,1,1],[2,2,3,2],[1,3,2,0],[2,2,1,0]],[[1,1,1,1],[2,2,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,1,0],[1,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,1,0],[1,2,3,3],[0,3,2,2],[1,2,1,0]],[[1,2,1,0],[1,2,4,2],[0,3,2,2],[1,2,1,0]],[[1,2,1,0],[1,2,3,2],[0,3,2,2],[1,2,0,2]],[[1,2,1,0],[1,2,3,2],[0,3,2,3],[1,2,0,1]],[[1,2,1,0],[1,2,3,3],[0,3,2,2],[1,2,0,1]],[[1,2,1,0],[1,2,4,2],[0,3,2,2],[1,2,0,1]],[[1,2,1,0],[1,2,3,2],[0,3,2,3],[1,1,2,0]],[[1,2,1,0],[1,2,3,3],[0,3,2,2],[1,1,2,0]],[[1,2,1,0],[1,2,4,2],[0,3,2,2],[1,1,2,0]],[[1,2,1,0],[1,2,3,2],[0,3,2,2],[1,1,1,2]],[[1,2,1,0],[1,2,3,2],[0,3,2,3],[1,1,1,1]],[[1,2,1,0],[1,2,3,3],[0,3,2,2],[1,1,1,1]],[[1,2,1,0],[1,2,4,2],[0,3,2,2],[1,1,1,1]],[[1,2,1,0],[1,2,3,2],[0,3,2,2],[1,0,2,2]],[[1,2,1,0],[1,2,3,2],[0,3,2,3],[1,0,2,1]],[[1,2,1,0],[1,2,3,3],[0,3,2,2],[1,0,2,1]],[[1,2,1,0],[1,2,4,2],[0,3,2,2],[1,0,2,1]],[[1,2,1,0],[1,2,3,2],[0,3,2,1],[1,2,3,0]],[[1,2,1,0],[1,2,3,2],[0,3,2,1],[1,3,2,0]],[[1,2,1,0],[1,2,3,2],[0,3,2,1],[2,2,2,0]],[[1,2,1,0],[1,2,3,2],[0,4,2,1],[1,2,2,0]],[[1,2,1,0],[1,2,3,2],[0,3,2,0],[1,2,2,2]],[[1,2,1,0],[1,2,3,2],[0,3,2,0],[1,2,3,1]],[[1,2,1,0],[1,2,3,2],[0,3,2,0],[1,3,2,1]],[[1,2,1,0],[1,2,3,2],[0,3,2,0],[2,2,2,1]],[[1,2,1,0],[1,2,3,2],[0,4,2,0],[1,2,2,1]],[[1,2,1,0],[1,2,3,2],[0,3,1,2],[1,1,2,2]],[[1,2,1,0],[1,2,3,2],[0,3,1,2],[1,1,3,1]],[[1,2,1,0],[1,2,3,2],[0,3,1,3],[1,1,2,1]],[[1,2,1,0],[1,2,3,3],[0,3,1,2],[1,1,2,1]],[[1,2,1,0],[1,2,4,2],[0,3,1,2],[1,1,2,1]],[[1,2,1,0],[1,2,3,2],[0,3,0,2],[1,2,2,2]],[[1,2,1,0],[1,2,3,2],[0,3,0,2],[1,2,3,1]],[[1,2,1,0],[1,2,3,2],[0,3,0,2],[1,3,2,1]],[[1,2,1,0],[1,2,3,2],[0,3,0,2],[2,2,2,1]],[[1,2,1,0],[1,2,3,2],[0,3,0,3],[1,2,2,1]],[[1,2,1,0],[1,2,3,2],[0,4,0,2],[1,2,2,1]],[[1,2,1,0],[1,2,3,3],[0,3,0,2],[1,2,2,1]],[[1,2,1,0],[1,2,4,2],[0,3,0,2],[1,2,2,1]],[[1,2,1,0],[1,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,1,0],[1,2,3,2],[0,2,3,1],[1,3,2,0]],[[1,2,1,0],[1,2,3,2],[0,2,3,1],[2,2,2,0]],[[1,2,1,0],[1,2,3,2],[0,2,4,1],[1,2,2,0]],[[1,2,1,0],[1,2,3,3],[0,2,3,1],[1,2,2,0]],[[1,2,1,0],[1,2,4,2],[0,2,3,1],[1,2,2,0]],[[1,2,1,0],[1,2,3,2],[0,2,4,1],[1,2,1,1]],[[1,2,1,0],[1,2,3,3],[0,2,3,1],[1,2,1,1]],[[1,2,1,0],[1,2,4,2],[0,2,3,1],[1,2,1,1]],[[1,2,1,0],[1,2,3,2],[0,2,3,0],[1,2,2,2]],[[1,2,1,0],[1,2,3,2],[0,2,3,0],[1,2,3,1]],[[1,2,1,0],[1,2,3,2],[0,2,3,0],[1,3,2,1]],[[1,2,1,0],[1,2,3,2],[0,2,3,0],[2,2,2,1]],[[1,2,1,0],[1,2,3,2],[0,2,4,0],[1,2,2,1]],[[1,2,1,0],[1,2,3,3],[0,2,3,0],[1,2,2,1]],[[1,2,1,0],[1,2,4,2],[0,2,3,0],[1,2,2,1]],[[1,2,1,0],[1,2,3,2],[0,2,2,3],[1,2,2,0]],[[1,2,1,0],[1,2,3,3],[0,2,2,2],[1,2,2,0]],[[1,2,1,0],[1,2,4,2],[0,2,2,2],[1,2,2,0]],[[1,2,1,0],[1,2,3,2],[0,2,2,2],[1,2,1,2]],[[1,2,1,0],[1,2,3,2],[0,2,2,3],[1,2,1,1]],[[1,2,1,0],[1,2,3,3],[0,2,2,2],[1,2,1,1]],[[1,2,1,0],[1,2,4,2],[0,2,2,2],[1,2,1,1]],[[1,2,1,0],[1,2,3,2],[0,2,1,2],[1,2,2,2]],[[1,2,1,0],[1,2,3,2],[0,2,1,2],[1,2,3,1]],[[1,2,1,0],[1,2,3,2],[0,2,1,2],[1,3,2,1]],[[1,2,1,0],[1,2,3,2],[0,2,1,2],[2,2,2,1]],[[1,2,1,0],[1,2,3,2],[0,2,1,3],[1,2,2,1]],[[1,2,1,0],[1,2,3,3],[0,2,1,2],[1,2,2,1]],[[1,2,1,0],[1,2,4,2],[0,2,1,2],[1,2,2,1]],[[1,2,1,0],[1,2,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[1,2,3,1],[1,3,4,2],[1,1,1,0]],[[1,2,1,0],[1,2,3,1],[1,4,3,2],[1,1,1,0]],[[1,2,1,0],[1,2,4,1],[1,3,3,2],[1,1,1,0]],[[1,2,1,0],[1,2,3,1],[1,3,3,2],[1,1,0,2]],[[1,2,1,0],[1,2,3,1],[1,3,3,3],[1,1,0,1]],[[1,2,1,0],[1,2,3,1],[1,3,4,2],[1,1,0,1]],[[1,2,1,0],[1,2,3,1],[1,4,3,2],[1,1,0,1]],[[1,2,1,0],[1,2,4,1],[1,3,3,2],[1,1,0,1]],[[1,2,1,0],[1,2,3,1],[1,3,3,2],[1,0,3,0]],[[1,2,1,0],[1,2,3,1],[1,3,3,3],[1,0,2,0]],[[1,2,1,0],[1,2,3,1],[1,3,4,2],[1,0,2,0]],[[1,2,1,0],[1,2,3,1],[1,4,3,2],[1,0,2,0]],[[1,2,1,0],[1,2,4,1],[1,3,3,2],[1,0,2,0]],[[1,2,1,0],[1,2,3,1],[1,3,3,2],[1,0,1,2]],[[1,2,1,0],[1,2,3,1],[1,3,3,3],[1,0,1,1]],[[1,2,1,0],[1,2,3,1],[1,3,4,2],[1,0,1,1]],[[1,2,1,0],[1,2,3,1],[1,4,3,2],[1,0,1,1]],[[1,2,1,0],[1,2,4,1],[1,3,3,2],[1,0,1,1]],[[1,2,1,0],[1,2,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[1,2,3,1],[1,3,3,3],[0,2,1,0]],[[1,2,1,0],[1,2,3,1],[1,3,4,2],[0,2,1,0]],[[1,2,1,0],[1,2,3,1],[1,4,3,2],[0,2,1,0]],[[1,2,1,0],[1,2,4,1],[1,3,3,2],[0,2,1,0]],[[1,2,1,0],[1,2,3,1],[1,3,3,2],[0,2,0,2]],[[1,2,1,0],[1,2,3,1],[1,3,3,2],[0,3,0,1]],[[1,2,1,0],[1,2,3,1],[1,3,3,3],[0,2,0,1]],[[1,2,1,0],[1,2,3,1],[1,3,4,2],[0,2,0,1]],[[1,2,1,0],[1,2,3,1],[1,4,3,2],[0,2,0,1]],[[1,2,1,0],[1,2,4,1],[1,3,3,2],[0,2,0,1]],[[1,2,1,0],[1,2,3,1],[1,3,3,2],[0,1,3,0]],[[1,2,1,0],[1,2,3,1],[1,3,3,3],[0,1,2,0]],[[1,2,1,0],[1,2,3,1],[1,3,4,2],[0,1,2,0]],[[1,2,1,0],[1,2,3,1],[1,4,3,2],[0,1,2,0]],[[1,2,1,0],[1,2,4,1],[1,3,3,2],[0,1,2,0]],[[1,2,1,0],[1,2,3,1],[1,3,3,2],[0,1,1,2]],[[1,2,1,0],[1,2,3,1],[1,3,3,3],[0,1,1,1]],[[1,2,1,0],[1,2,3,1],[1,3,4,2],[0,1,1,1]],[[1,2,1,0],[1,2,3,1],[1,4,3,2],[0,1,1,1]],[[1,2,1,0],[1,2,4,1],[1,3,3,2],[0,1,1,1]],[[1,2,1,0],[1,2,3,1],[1,3,3,2],[0,0,2,2]],[[1,2,1,0],[1,2,3,1],[1,3,3,3],[0,0,2,1]],[[1,2,1,0],[1,2,3,1],[1,3,4,2],[0,0,2,1]],[[1,2,1,0],[1,2,4,1],[1,3,3,2],[0,0,2,1]],[[1,2,1,0],[1,2,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,1,0],[1,2,3,1],[1,4,3,1],[1,1,1,1]],[[1,2,1,0],[1,2,4,1],[1,3,3,1],[1,1,1,1]],[[1,2,1,0],[1,2,3,1],[1,3,3,1],[1,0,2,2]],[[1,2,1,0],[1,2,3,1],[1,3,3,1],[1,0,3,1]],[[1,2,1,0],[1,2,3,1],[1,3,4,1],[1,0,2,1]],[[1,2,1,0],[1,2,3,1],[1,4,3,1],[1,0,2,1]],[[1,2,1,0],[1,2,4,1],[1,3,3,1],[1,0,2,1]],[[1,2,1,0],[1,2,3,1],[1,3,3,1],[0,3,1,1]],[[1,2,1,0],[1,2,3,1],[1,3,4,1],[0,2,1,1]],[[1,2,1,0],[1,2,3,1],[1,4,3,1],[0,2,1,1]],[[1,2,1,0],[1,2,4,1],[1,3,3,1],[0,2,1,1]],[[1,2,1,0],[1,2,3,1],[1,3,3,1],[0,1,2,2]],[[1,2,1,0],[1,2,3,1],[1,3,3,1],[0,1,3,1]],[[1,2,1,0],[1,2,3,1],[1,3,4,1],[0,1,2,1]],[[1,2,1,0],[1,2,3,1],[1,4,3,1],[0,1,2,1]],[[1,2,1,0],[1,2,4,1],[1,3,3,1],[0,1,2,1]],[[1,2,1,0],[1,2,3,1],[1,3,3,0],[0,2,3,1]],[[1,2,1,0],[1,2,3,1],[1,3,3,0],[0,3,2,1]],[[1,2,1,0],[1,2,3,1],[1,4,3,0],[0,2,2,1]],[[1,2,1,0],[1,2,3,1],[1,3,2,2],[1,0,2,2]],[[1,2,1,0],[1,2,3,1],[1,3,2,2],[1,0,3,1]],[[1,2,1,0],[1,2,3,1],[1,3,2,3],[1,0,2,1]],[[1,2,1,0],[1,2,3,1],[1,3,2,2],[0,2,3,0]],[[1,2,1,0],[1,2,3,1],[1,3,2,2],[0,3,2,0]],[[1,2,1,0],[1,2,3,1],[1,4,2,2],[0,2,2,0]],[[1,2,1,0],[1,2,3,1],[1,3,2,2],[0,1,2,2]],[[1,2,1,0],[1,2,3,1],[1,3,2,2],[0,1,3,1]],[[1,2,1,0],[1,2,3,1],[1,3,2,3],[0,1,2,1]],[[1,2,1,0],[1,2,3,1],[1,3,2,1],[0,2,2,2]],[[1,2,1,0],[1,2,3,1],[1,3,2,1],[0,2,3,1]],[[1,2,1,0],[1,2,3,1],[1,3,2,1],[0,3,2,1]],[[1,2,1,0],[1,2,3,1],[1,4,2,1],[0,2,2,1]],[[1,2,1,0],[1,2,3,1],[1,3,1,2],[0,2,2,2]],[[1,2,1,0],[1,2,3,1],[1,3,1,2],[0,2,3,1]],[[1,2,1,0],[1,2,3,1],[1,3,1,2],[0,3,2,1]],[[1,2,1,0],[1,2,3,1],[1,3,1,3],[0,2,2,1]],[[1,2,1,0],[1,2,3,1],[1,4,1,2],[0,2,2,1]],[[1,2,1,0],[1,2,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,1,0],[1,2,3,1],[1,2,3,2],[0,3,2,0]],[[1,2,1,0],[1,2,3,1],[1,2,3,3],[0,2,2,0]],[[1,2,1,0],[1,2,3,1],[1,2,4,2],[0,2,2,0]],[[1,2,1,0],[1,2,4,1],[1,2,3,2],[0,2,2,0]],[[1,2,1,0],[1,2,3,1],[1,2,3,2],[0,2,1,2]],[[1,2,1,0],[1,2,3,1],[1,2,3,3],[0,2,1,1]],[[1,2,1,0],[1,2,3,1],[1,2,4,2],[0,2,1,1]],[[1,2,1,0],[1,2,4,1],[1,2,3,2],[0,2,1,1]],[[1,2,1,0],[1,2,3,1],[1,2,3,1],[0,2,2,2]],[[1,2,1,0],[1,2,3,1],[1,2,3,1],[0,2,3,1]],[[1,2,1,0],[1,2,3,1],[1,2,3,1],[0,3,2,1]],[[1,2,1,0],[1,2,3,1],[1,2,4,1],[0,2,2,1]],[[1,2,1,0],[1,2,4,1],[1,2,3,1],[0,2,2,1]],[[1,2,1,0],[1,2,3,1],[1,2,2,2],[0,2,2,2]],[[1,2,1,0],[1,2,3,1],[1,2,2,2],[0,2,3,1]],[[1,2,1,0],[1,2,3,1],[1,2,2,2],[0,3,2,1]],[[1,2,1,0],[1,2,3,1],[1,2,2,3],[0,2,2,1]],[[1,2,1,0],[1,2,3,1],[1,1,3,2],[0,2,2,2]],[[1,2,1,0],[1,2,3,1],[1,1,3,2],[0,2,3,1]],[[1,2,1,0],[1,2,3,1],[1,1,3,3],[0,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,2,3,1],[0,3,3,2],[2,2,1,0]],[[1,2,1,0],[1,2,3,1],[0,3,3,3],[1,2,1,0]],[[1,2,1,0],[1,2,3,1],[0,3,4,2],[1,2,1,0]],[[1,2,1,0],[1,2,3,1],[0,4,3,2],[1,2,1,0]],[[1,2,1,0],[1,2,4,1],[0,3,3,2],[1,2,1,0]],[[1,2,1,0],[1,2,3,1],[0,3,3,2],[1,2,0,2]],[[1,2,1,0],[1,2,3,1],[0,3,3,2],[1,3,0,1]],[[2,1,1,1],[2,2,3,2],[2,2,1,0],[1,2,2,0]],[[1,1,1,1],[3,2,3,2],[2,2,1,0],[1,2,2,0]],[[1,1,1,1],[2,2,3,2],[3,2,1,0],[1,2,2,0]],[[1,1,1,1],[2,2,3,2],[2,2,1,0],[2,2,2,0]],[[1,1,1,1],[2,2,3,2],[2,2,1,0],[1,3,2,0]],[[1,2,1,0],[1,2,3,1],[0,3,3,2],[2,2,0,1]],[[1,2,1,0],[1,2,3,1],[0,3,3,3],[1,2,0,1]],[[1,2,1,0],[1,2,3,1],[0,3,4,2],[1,2,0,1]],[[1,2,1,0],[1,2,3,1],[0,4,3,2],[1,2,0,1]],[[1,2,1,0],[1,2,4,1],[0,3,3,2],[1,2,0,1]],[[1,2,1,0],[1,2,3,1],[0,3,3,2],[1,1,3,0]],[[1,2,1,0],[1,2,3,1],[0,3,3,3],[1,1,2,0]],[[1,2,1,0],[1,2,3,1],[0,3,4,2],[1,1,2,0]],[[1,2,1,0],[1,2,3,1],[0,4,3,2],[1,1,2,0]],[[1,2,1,0],[1,2,4,1],[0,3,3,2],[1,1,2,0]],[[1,2,1,0],[1,2,3,1],[0,3,3,2],[1,1,1,2]],[[1,2,1,0],[1,2,3,1],[0,3,3,3],[1,1,1,1]],[[1,2,1,0],[1,2,3,1],[0,3,4,2],[1,1,1,1]],[[1,2,1,0],[1,2,3,1],[0,4,3,2],[1,1,1,1]],[[1,2,1,0],[1,2,4,1],[0,3,3,2],[1,1,1,1]],[[1,2,1,0],[1,2,3,1],[0,3,3,2],[1,0,2,2]],[[1,2,1,0],[1,2,3,1],[0,3,3,3],[1,0,2,1]],[[1,2,1,0],[1,2,3,1],[0,3,4,2],[1,0,2,1]],[[1,2,1,0],[1,2,4,1],[0,3,3,2],[1,0,2,1]],[[1,2,1,0],[1,2,3,1],[0,3,3,1],[1,3,1,1]],[[1,2,1,0],[1,2,3,1],[0,3,3,1],[2,2,1,1]],[[1,2,1,0],[1,2,3,1],[0,3,4,1],[1,2,1,1]],[[1,2,1,0],[1,2,3,1],[0,4,3,1],[1,2,1,1]],[[2,1,1,1],[2,2,3,2],[2,2,2,0],[1,2,1,0]],[[1,1,1,1],[3,2,3,2],[2,2,2,0],[1,2,1,0]],[[1,1,1,1],[2,2,3,2],[3,2,2,0],[1,2,1,0]],[[1,1,1,1],[2,2,3,2],[2,2,2,0],[2,2,1,0]],[[1,1,1,1],[2,2,3,2],[2,2,2,0],[1,3,1,0]],[[1,2,1,0],[1,2,4,1],[0,3,3,1],[1,2,1,1]],[[1,2,1,0],[1,2,3,1],[0,3,3,1],[1,1,2,2]],[[1,2,1,0],[1,2,3,1],[0,3,3,1],[1,1,3,1]],[[1,2,1,0],[1,2,3,1],[0,3,4,1],[1,1,2,1]],[[1,2,1,0],[1,2,3,1],[0,4,3,1],[1,1,2,1]],[[1,2,1,0],[1,2,4,1],[0,3,3,1],[1,1,2,1]],[[1,2,1,0],[1,2,3,1],[0,3,3,0],[1,2,3,1]],[[1,2,1,0],[1,2,3,1],[0,3,3,0],[1,3,2,1]],[[1,2,1,0],[1,2,3,1],[0,3,3,0],[2,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,4,3,0],[1,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,3,2,2],[1,2,3,0]],[[1,2,1,0],[1,2,3,1],[0,3,2,2],[1,3,2,0]],[[1,2,1,0],[1,2,3,1],[0,3,2,2],[2,2,2,0]],[[1,2,1,0],[1,2,3,1],[0,4,2,2],[1,2,2,0]],[[1,2,1,0],[1,2,3,1],[0,3,2,2],[1,1,2,2]],[[1,2,1,0],[1,2,3,1],[0,3,2,2],[1,1,3,1]],[[1,2,1,0],[1,2,3,1],[0,3,2,3],[1,1,2,1]],[[1,2,1,0],[1,2,3,1],[0,3,2,1],[1,2,2,2]],[[1,2,1,0],[1,2,3,1],[0,3,2,1],[1,2,3,1]],[[1,2,1,0],[1,2,3,1],[0,3,2,1],[1,3,2,1]],[[1,2,1,0],[1,2,3,1],[0,3,2,1],[2,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,4,2,1],[1,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,3,1,2],[1,2,2,2]],[[1,2,1,0],[1,2,3,1],[0,3,1,2],[1,2,3,1]],[[1,2,1,0],[1,2,3,1],[0,3,1,2],[1,3,2,1]],[[1,2,1,0],[1,2,3,1],[0,3,1,2],[2,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,3,1,3],[1,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,4,1,2],[1,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,2,3,2],[1,2,3,0]],[[1,2,1,0],[1,2,3,1],[0,2,3,2],[1,3,2,0]],[[1,2,1,0],[1,2,3,1],[0,2,3,2],[2,2,2,0]],[[1,2,1,0],[1,2,3,1],[0,2,3,3],[1,2,2,0]],[[1,2,1,0],[1,2,3,1],[0,2,4,2],[1,2,2,0]],[[1,2,1,0],[1,2,4,1],[0,2,3,2],[1,2,2,0]],[[1,2,1,0],[1,2,3,1],[0,2,3,2],[1,2,1,2]],[[1,2,1,0],[1,2,3,1],[0,2,3,3],[1,2,1,1]],[[1,2,1,0],[1,2,3,1],[0,2,4,2],[1,2,1,1]],[[1,2,1,0],[1,2,4,1],[0,2,3,2],[1,2,1,1]],[[1,2,1,0],[1,2,3,1],[0,2,3,1],[1,2,2,2]],[[1,2,1,0],[1,2,3,1],[0,2,3,1],[1,2,3,1]],[[1,2,1,0],[1,2,3,1],[0,2,3,1],[1,3,2,1]],[[1,2,1,0],[1,2,3,1],[0,2,3,1],[2,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,2,4,1],[1,2,2,1]],[[1,2,1,0],[1,2,4,1],[0,2,3,1],[1,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,2,2,2],[1,2,2,2]],[[1,2,1,0],[1,2,3,1],[0,2,2,2],[1,2,3,1]],[[1,2,1,0],[1,2,3,1],[0,2,2,2],[1,3,2,1]],[[1,2,1,0],[1,2,3,1],[0,2,2,2],[2,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,2,2,3],[1,2,2,1]],[[1,2,1,0],[1,2,3,1],[0,1,3,2],[1,2,2,2]],[[1,2,1,0],[1,2,3,1],[0,1,3,2],[1,2,3,1]],[[1,2,1,0],[1,2,3,1],[0,1,3,3],[1,2,2,1]],[[1,2,1,0],[1,2,3,0],[1,3,3,2],[1,0,2,2]],[[1,2,1,0],[1,2,3,0],[1,3,3,2],[1,0,3,1]],[[1,2,1,0],[1,2,3,0],[1,3,4,2],[1,0,2,1]],[[1,2,1,0],[1,2,3,0],[1,4,3,2],[1,0,2,1]],[[1,2,1,0],[1,2,3,0],[1,3,3,2],[0,3,1,1]],[[1,2,1,0],[1,2,3,0],[1,3,4,2],[0,2,1,1]],[[1,2,1,0],[1,2,3,0],[1,4,3,2],[0,2,1,1]],[[1,2,1,0],[1,2,3,0],[1,3,3,2],[0,1,2,2]],[[1,2,1,0],[1,2,3,0],[1,3,3,2],[0,1,3,1]],[[1,2,1,0],[1,2,3,0],[1,3,4,2],[0,1,2,1]],[[1,2,1,0],[1,2,3,0],[1,4,3,2],[0,1,2,1]],[[1,2,1,0],[1,2,3,0],[1,3,2,2],[0,2,2,2]],[[1,2,1,0],[1,2,3,0],[1,3,2,2],[0,2,3,1]],[[1,2,1,0],[1,2,3,0],[1,3,2,2],[0,3,2,1]],[[1,2,1,0],[1,2,3,0],[1,4,2,2],[0,2,2,1]],[[1,2,1,0],[1,2,3,0],[1,2,3,2],[0,2,2,2]],[[1,2,1,0],[1,2,3,0],[1,2,3,2],[0,2,3,1]],[[1,2,1,0],[1,2,3,0],[1,2,3,2],[0,3,2,1]],[[1,2,1,0],[1,2,3,0],[1,2,4,2],[0,2,2,1]],[[1,2,1,0],[1,2,3,0],[0,3,3,2],[1,3,1,1]],[[1,2,1,0],[1,2,3,0],[0,3,3,2],[2,2,1,1]],[[1,2,1,0],[1,2,3,0],[0,3,4,2],[1,2,1,1]],[[1,2,1,0],[1,2,3,0],[0,4,3,2],[1,2,1,1]],[[1,2,1,0],[1,2,3,0],[0,3,3,2],[1,1,2,2]],[[1,2,1,0],[1,2,3,0],[0,3,3,2],[1,1,3,1]],[[1,2,1,0],[1,2,3,0],[0,3,4,2],[1,1,2,1]],[[1,2,1,0],[1,2,3,0],[0,4,3,2],[1,1,2,1]],[[1,2,1,0],[1,2,3,0],[0,3,2,2],[1,2,2,2]],[[1,2,1,0],[1,2,3,0],[0,3,2,2],[1,2,3,1]],[[1,2,1,0],[1,2,3,0],[0,3,2,2],[1,3,2,1]],[[1,2,1,0],[1,2,3,0],[0,3,2,2],[2,2,2,1]],[[1,2,1,0],[1,2,3,0],[0,4,2,2],[1,2,2,1]],[[1,2,1,0],[1,2,3,0],[0,2,3,2],[1,2,2,2]],[[1,2,1,0],[1,2,3,0],[0,2,3,2],[1,2,3,1]],[[1,2,1,0],[1,2,3,0],[0,2,3,2],[1,3,2,1]],[[1,2,1,0],[1,2,3,0],[0,2,3,2],[2,2,2,1]],[[1,2,1,0],[1,2,3,0],[0,2,4,2],[1,2,2,1]],[[2,1,1,1],[2,2,3,2],[2,3,0,0],[1,2,2,0]],[[1,1,1,1],[3,2,3,2],[2,3,0,0],[1,2,2,0]],[[1,1,1,1],[2,2,3,2],[3,3,0,0],[1,2,2,0]],[[1,1,1,1],[2,2,3,2],[2,3,0,0],[2,2,2,0]],[[1,1,1,1],[2,2,3,2],[2,3,0,0],[1,3,2,0]],[[2,1,1,1],[2,2,3,2],[2,3,1,0],[0,2,2,0]],[[1,1,1,1],[3,2,3,2],[2,3,1,0],[0,2,2,0]],[[1,1,1,1],[2,2,3,2],[3,3,1,0],[0,2,2,0]],[[1,1,1,1],[2,2,3,2],[2,4,1,0],[0,2,2,0]],[[1,1,1,1],[2,2,3,2],[2,3,1,0],[0,3,2,0]],[[2,1,1,1],[2,2,3,2],[2,3,1,0],[1,1,2,0]],[[1,1,1,1],[3,2,3,2],[2,3,1,0],[1,1,2,0]],[[1,1,1,1],[2,2,3,2],[3,3,1,0],[1,1,2,0]],[[1,1,1,1],[2,2,3,2],[2,4,1,0],[1,1,2,0]],[[1,1,1,1],[2,2,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,1,0],[1,2,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[1,2,2,2],[1,3,4,2],[1,1,1,0]],[[1,2,1,0],[1,2,2,2],[1,4,3,2],[1,1,1,0]],[[1,2,1,0],[1,2,2,3],[1,3,3,2],[1,1,1,0]],[[1,2,1,0],[1,2,2,2],[1,3,3,2],[1,1,0,2]],[[1,2,1,0],[1,2,2,2],[1,3,3,3],[1,1,0,1]],[[1,2,1,0],[1,2,2,2],[1,3,4,2],[1,1,0,1]],[[1,2,1,0],[1,2,2,2],[1,4,3,2],[1,1,0,1]],[[1,2,1,0],[1,2,2,3],[1,3,3,2],[1,1,0,1]],[[1,2,1,0],[1,2,2,2],[1,3,3,2],[1,0,3,0]],[[1,2,1,0],[1,2,2,2],[1,3,3,3],[1,0,2,0]],[[1,2,1,0],[1,2,2,2],[1,3,4,2],[1,0,2,0]],[[1,2,1,0],[1,2,2,2],[1,4,3,2],[1,0,2,0]],[[1,2,1,0],[1,2,2,3],[1,3,3,2],[1,0,2,0]],[[1,2,1,0],[1,2,2,2],[1,3,3,2],[1,0,1,2]],[[1,2,1,0],[1,2,2,2],[1,3,3,3],[1,0,1,1]],[[1,2,1,0],[1,2,2,2],[1,3,4,2],[1,0,1,1]],[[1,2,1,0],[1,2,2,2],[1,4,3,2],[1,0,1,1]],[[1,2,1,0],[1,2,2,3],[1,3,3,2],[1,0,1,1]],[[2,1,1,1],[2,2,3,2],[2,3,2,0],[0,1,2,0]],[[1,1,1,1],[3,2,3,2],[2,3,2,0],[0,1,2,0]],[[1,1,1,1],[2,2,3,2],[3,3,2,0],[0,1,2,0]],[[1,1,1,1],[2,2,3,2],[2,4,2,0],[0,1,2,0]],[[2,1,1,1],[2,2,3,2],[2,3,2,0],[0,2,0,1]],[[1,1,1,1],[3,2,3,2],[2,3,2,0],[0,2,0,1]],[[1,1,1,1],[2,2,3,2],[3,3,2,0],[0,2,0,1]],[[1,1,1,1],[2,2,3,2],[2,4,2,0],[0,2,0,1]],[[2,1,1,1],[2,2,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,1,1],[3,2,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,1,1],[2,2,3,2],[3,3,2,0],[0,2,1,0]],[[1,1,1,1],[2,2,3,2],[2,4,2,0],[0,2,1,0]],[[1,1,1,1],[2,2,3,2],[2,3,2,0],[0,3,1,0]],[[1,2,1,0],[1,2,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[1,2,2,2],[1,3,3,3],[0,2,1,0]],[[1,2,1,0],[1,2,2,2],[1,3,4,2],[0,2,1,0]],[[1,2,1,0],[1,2,2,2],[1,4,3,2],[0,2,1,0]],[[2,1,1,1],[2,2,3,2],[2,3,2,0],[1,0,2,0]],[[1,1,1,1],[3,2,3,2],[2,3,2,0],[1,0,2,0]],[[1,1,1,1],[2,2,3,2],[3,3,2,0],[1,0,2,0]],[[1,1,1,1],[2,2,3,2],[2,4,2,0],[1,0,2,0]],[[1,1,1,1],[2,2,3,2],[2,3,2,0],[2,0,2,0]],[[2,1,1,1],[2,2,3,2],[2,3,2,0],[1,1,0,1]],[[1,1,1,1],[3,2,3,2],[2,3,2,0],[1,1,0,1]],[[1,1,1,1],[2,2,3,2],[3,3,2,0],[1,1,0,1]],[[1,1,1,1],[2,2,3,2],[2,4,2,0],[1,1,0,1]],[[1,1,1,1],[2,2,3,2],[2,3,2,0],[2,1,0,1]],[[2,1,1,1],[2,2,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,1,1],[3,2,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,1,1],[2,2,3,2],[3,3,2,0],[1,1,1,0]],[[1,1,1,1],[2,2,3,2],[2,4,2,0],[1,1,1,0]],[[1,1,1,1],[2,2,3,2],[2,3,2,0],[2,1,1,0]],[[1,2,1,0],[1,2,2,3],[1,3,3,2],[0,2,1,0]],[[1,2,1,0],[1,2,2,2],[1,3,3,2],[0,2,0,2]],[[1,2,1,0],[1,2,2,2],[1,3,3,2],[0,3,0,1]],[[1,2,1,0],[1,2,2,2],[1,3,3,3],[0,2,0,1]],[[1,2,1,0],[1,2,2,2],[1,3,4,2],[0,2,0,1]],[[2,1,1,1],[2,2,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,1,1],[3,2,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,1,1],[2,2,3,2],[3,3,2,0],[1,2,0,0]],[[1,1,1,1],[2,2,3,2],[2,4,2,0],[1,2,0,0]],[[1,1,1,1],[2,2,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,1,0],[1,2,2,2],[1,4,3,2],[0,2,0,1]],[[1,2,1,0],[1,2,2,3],[1,3,3,2],[0,2,0,1]],[[1,2,1,0],[1,2,2,2],[1,3,3,2],[0,1,3,0]],[[1,2,1,0],[1,2,2,2],[1,3,3,3],[0,1,2,0]],[[1,2,1,0],[1,2,2,2],[1,3,4,2],[0,1,2,0]],[[1,2,1,0],[1,2,2,2],[1,4,3,2],[0,1,2,0]],[[1,2,1,0],[1,2,2,3],[1,3,3,2],[0,1,2,0]],[[1,2,1,0],[1,2,2,2],[1,3,3,2],[0,1,1,2]],[[1,2,1,0],[1,2,2,2],[1,3,3,3],[0,1,1,1]],[[1,2,1,0],[1,2,2,2],[1,3,4,2],[0,1,1,1]],[[1,2,1,0],[1,2,2,2],[1,4,3,2],[0,1,1,1]],[[1,2,1,0],[1,2,2,3],[1,3,3,2],[0,1,1,1]],[[1,2,1,0],[1,2,2,2],[1,3,3,2],[0,0,2,2]],[[1,2,1,0],[1,2,2,2],[1,3,3,3],[0,0,2,1]],[[1,2,1,0],[1,2,2,2],[1,3,4,2],[0,0,2,1]],[[1,2,1,0],[1,2,2,3],[1,3,3,2],[0,0,2,1]],[[1,2,1,0],[1,2,2,2],[1,3,3,1],[1,0,2,2]],[[1,2,1,0],[1,2,2,2],[1,3,3,1],[1,0,3,1]],[[1,2,1,0],[1,2,2,2],[1,3,4,1],[1,0,2,1]],[[1,2,1,0],[1,2,2,2],[1,4,3,1],[1,0,2,1]],[[1,2,1,0],[1,2,2,2],[1,3,3,1],[0,3,1,1]],[[1,2,1,0],[1,2,2,2],[1,3,4,1],[0,2,1,1]],[[1,2,1,0],[1,2,2,2],[1,4,3,1],[0,2,1,1]],[[1,2,1,0],[1,2,2,2],[1,3,3,1],[0,1,2,2]],[[1,2,1,0],[1,2,2,2],[1,3,3,1],[0,1,3,1]],[[1,2,1,0],[1,2,2,2],[1,3,4,1],[0,1,2,1]],[[1,2,1,0],[1,2,2,2],[1,4,3,1],[0,1,2,1]],[[1,2,1,0],[1,2,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,1,0],[1,2,2,2],[1,3,2,2],[1,0,3,1]],[[1,2,1,0],[1,2,2,2],[1,3,2,3],[1,0,2,1]],[[1,2,1,0],[1,2,2,3],[1,3,2,2],[1,0,2,1]],[[1,2,1,0],[1,2,2,2],[1,3,2,2],[0,2,3,0]],[[1,2,1,0],[1,2,2,2],[1,3,2,2],[0,3,2,0]],[[1,2,1,0],[1,2,2,2],[1,4,2,2],[0,2,2,0]],[[1,2,1,0],[1,2,2,2],[1,3,2,2],[0,1,2,2]],[[1,2,1,0],[1,2,2,2],[1,3,2,2],[0,1,3,1]],[[1,2,1,0],[1,2,2,2],[1,3,2,3],[0,1,2,1]],[[1,2,1,0],[1,2,2,3],[1,3,2,2],[0,1,2,1]],[[1,2,1,0],[1,2,2,2],[1,3,2,1],[0,2,2,2]],[[1,2,1,0],[1,2,2,2],[1,3,2,1],[0,2,3,1]],[[1,2,1,0],[1,2,2,2],[1,3,2,1],[0,3,2,1]],[[1,2,1,0],[1,2,2,2],[1,4,2,1],[0,2,2,1]],[[1,2,1,0],[1,2,2,2],[1,3,1,2],[0,2,2,2]],[[1,2,1,0],[1,2,2,2],[1,3,1,2],[0,2,3,1]],[[1,2,1,0],[1,2,2,2],[1,3,1,2],[0,3,2,1]],[[1,2,1,0],[1,2,2,2],[1,3,1,3],[0,2,2,1]],[[1,2,1,0],[1,2,2,2],[1,4,1,2],[0,2,2,1]],[[1,2,1,0],[1,2,2,3],[1,3,1,2],[0,2,2,1]],[[1,2,1,0],[1,2,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,0],[1,2,2,2],[1,2,3,2],[0,3,2,0]],[[1,2,1,0],[1,2,2,2],[1,2,3,3],[0,2,2,0]],[[1,2,1,0],[1,2,2,2],[1,2,4,2],[0,2,2,0]],[[1,2,1,0],[1,2,2,3],[1,2,3,2],[0,2,2,0]],[[1,2,1,0],[1,2,2,2],[1,2,3,2],[0,2,1,2]],[[1,2,1,0],[1,2,2,2],[1,2,3,3],[0,2,1,1]],[[1,2,1,0],[1,2,2,2],[1,2,4,2],[0,2,1,1]],[[1,2,1,0],[1,2,2,3],[1,2,3,2],[0,2,1,1]],[[1,2,1,0],[1,2,2,2],[1,2,3,1],[0,2,2,2]],[[1,2,1,0],[1,2,2,2],[1,2,3,1],[0,2,3,1]],[[1,2,1,0],[1,2,2,2],[1,2,3,1],[0,3,2,1]],[[1,2,1,0],[1,2,2,2],[1,2,4,1],[0,2,2,1]],[[1,2,1,0],[1,2,2,2],[1,2,2,2],[0,2,2,2]],[[1,2,1,0],[1,2,2,2],[1,2,2,2],[0,2,3,1]],[[1,2,1,0],[1,2,2,2],[1,2,2,2],[0,3,2,1]],[[1,2,1,0],[1,2,2,2],[1,2,2,3],[0,2,2,1]],[[1,2,1,0],[1,2,2,3],[1,2,2,2],[0,2,2,1]],[[1,2,1,0],[1,2,2,2],[1,1,3,2],[0,2,2,2]],[[1,2,1,0],[1,2,2,2],[1,1,3,2],[0,2,3,1]],[[1,2,1,0],[1,2,2,2],[1,1,3,3],[0,2,2,1]],[[1,2,1,0],[1,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[1,2,2,2],[0,3,3,2],[2,2,1,0]],[[1,2,1,0],[1,2,2,2],[0,3,3,3],[1,2,1,0]],[[1,2,1,0],[1,2,2,2],[0,3,4,2],[1,2,1,0]],[[1,2,1,0],[1,2,2,2],[0,4,3,2],[1,2,1,0]],[[1,2,1,0],[1,2,2,3],[0,3,3,2],[1,2,1,0]],[[1,2,1,0],[1,2,2,2],[0,3,3,2],[1,2,0,2]],[[1,2,1,0],[1,2,2,2],[0,3,3,2],[1,3,0,1]],[[1,2,1,0],[1,2,2,2],[0,3,3,2],[2,2,0,1]],[[1,2,1,0],[1,2,2,2],[0,3,3,3],[1,2,0,1]],[[1,2,1,0],[1,2,2,2],[0,3,4,2],[1,2,0,1]],[[1,2,1,0],[1,2,2,2],[0,4,3,2],[1,2,0,1]],[[1,2,1,0],[1,2,2,3],[0,3,3,2],[1,2,0,1]],[[1,2,1,0],[1,2,2,2],[0,3,3,2],[1,1,3,0]],[[1,2,1,0],[1,2,2,2],[0,3,3,3],[1,1,2,0]],[[1,2,1,0],[1,2,2,2],[0,3,4,2],[1,1,2,0]],[[1,2,1,0],[1,2,2,2],[0,4,3,2],[1,1,2,0]],[[1,2,1,0],[1,2,2,3],[0,3,3,2],[1,1,2,0]],[[1,2,1,0],[1,2,2,2],[0,3,3,2],[1,1,1,2]],[[1,2,1,0],[1,2,2,2],[0,3,3,3],[1,1,1,1]],[[1,2,1,0],[1,2,2,2],[0,3,4,2],[1,1,1,1]],[[1,2,1,0],[1,2,2,2],[0,4,3,2],[1,1,1,1]],[[1,2,1,0],[1,2,2,3],[0,3,3,2],[1,1,1,1]],[[1,2,1,0],[1,2,2,2],[0,3,3,2],[1,0,2,2]],[[1,2,1,0],[1,2,2,2],[0,3,3,3],[1,0,2,1]],[[1,2,1,0],[1,2,2,2],[0,3,4,2],[1,0,2,1]],[[1,2,1,0],[1,2,2,3],[0,3,3,2],[1,0,2,1]],[[1,2,1,0],[1,2,2,2],[0,3,3,1],[1,3,1,1]],[[1,2,1,0],[1,2,2,2],[0,3,3,1],[2,2,1,1]],[[1,2,1,0],[1,2,2,2],[0,3,4,1],[1,2,1,1]],[[1,2,1,0],[1,2,2,2],[0,4,3,1],[1,2,1,1]],[[1,2,1,0],[1,2,2,2],[0,3,3,1],[1,1,2,2]],[[1,2,1,0],[1,2,2,2],[0,3,3,1],[1,1,3,1]],[[1,2,1,0],[1,2,2,2],[0,3,4,1],[1,1,2,1]],[[1,2,1,0],[1,2,2,2],[0,4,3,1],[1,1,2,1]],[[1,2,1,0],[1,2,2,2],[0,3,2,2],[1,2,3,0]],[[1,2,1,0],[1,2,2,2],[0,3,2,2],[1,3,2,0]],[[1,2,1,0],[1,2,2,2],[0,3,2,2],[2,2,2,0]],[[1,2,1,0],[1,2,2,2],[0,4,2,2],[1,2,2,0]],[[1,2,1,0],[1,2,2,2],[0,3,2,2],[1,1,2,2]],[[1,2,1,0],[1,2,2,2],[0,3,2,2],[1,1,3,1]],[[1,2,1,0],[1,2,2,2],[0,3,2,3],[1,1,2,1]],[[1,2,1,0],[1,2,2,3],[0,3,2,2],[1,1,2,1]],[[1,2,1,0],[1,2,2,2],[0,3,2,1],[1,2,2,2]],[[1,2,1,0],[1,2,2,2],[0,3,2,1],[1,2,3,1]],[[1,2,1,0],[1,2,2,2],[0,3,2,1],[1,3,2,1]],[[1,2,1,0],[1,2,2,2],[0,3,2,1],[2,2,2,1]],[[1,2,1,0],[1,2,2,2],[0,4,2,1],[1,2,2,1]],[[1,2,1,0],[1,2,2,2],[0,3,1,2],[1,2,2,2]],[[1,2,1,0],[1,2,2,2],[0,3,1,2],[1,2,3,1]],[[1,2,1,0],[1,2,2,2],[0,3,1,2],[1,3,2,1]],[[1,2,1,0],[1,2,2,2],[0,3,1,2],[2,2,2,1]],[[1,2,1,0],[1,2,2,2],[0,3,1,3],[1,2,2,1]],[[1,2,1,0],[1,2,2,2],[0,4,1,2],[1,2,2,1]],[[1,2,1,0],[1,2,2,3],[0,3,1,2],[1,2,2,1]],[[1,2,1,0],[1,2,2,2],[0,2,3,2],[1,2,3,0]],[[1,2,1,0],[1,2,2,2],[0,2,3,2],[1,3,2,0]],[[1,2,1,0],[1,2,2,2],[0,2,3,2],[2,2,2,0]],[[1,2,1,0],[1,2,2,2],[0,2,3,3],[1,2,2,0]],[[1,2,1,0],[1,2,2,2],[0,2,4,2],[1,2,2,0]],[[1,2,1,0],[1,2,2,3],[0,2,3,2],[1,2,2,0]],[[1,2,1,0],[1,2,2,2],[0,2,3,2],[1,2,1,2]],[[1,2,1,0],[1,2,2,2],[0,2,3,3],[1,2,1,1]],[[1,2,1,0],[1,2,2,2],[0,2,4,2],[1,2,1,1]],[[1,2,1,0],[1,2,2,3],[0,2,3,2],[1,2,1,1]],[[1,2,1,0],[1,2,2,2],[0,2,3,1],[1,2,2,2]],[[1,2,1,0],[1,2,2,2],[0,2,3,1],[1,2,3,1]],[[1,2,1,0],[1,2,2,2],[0,2,3,1],[1,3,2,1]],[[1,2,1,0],[1,2,2,2],[0,2,3,1],[2,2,2,1]],[[1,2,1,0],[1,2,2,2],[0,2,4,1],[1,2,2,1]],[[1,2,1,0],[1,2,2,2],[0,2,2,2],[1,2,2,2]],[[1,2,1,0],[1,2,2,2],[0,2,2,2],[1,2,3,1]],[[1,2,1,0],[1,2,2,2],[0,2,2,2],[1,3,2,1]],[[1,2,1,0],[1,2,2,2],[0,2,2,2],[2,2,2,1]],[[1,2,1,0],[1,2,2,2],[0,2,2,3],[1,2,2,1]],[[1,2,1,0],[1,2,2,3],[0,2,2,2],[1,2,2,1]],[[1,2,1,0],[1,2,2,2],[0,1,3,2],[1,2,2,2]],[[1,2,1,0],[1,2,2,2],[0,1,3,2],[1,2,3,1]],[[1,2,1,0],[1,2,2,2],[0,1,3,3],[1,2,2,1]],[[1,2,1,0],[1,2,1,2],[1,3,3,2],[0,1,2,2]],[[1,2,1,0],[1,2,1,2],[1,3,3,2],[0,1,3,1]],[[1,2,1,0],[1,2,1,2],[1,3,3,3],[0,1,2,1]],[[1,2,1,0],[1,2,1,2],[1,2,3,2],[0,2,2,2]],[[1,2,1,0],[1,2,1,2],[1,2,3,2],[0,2,3,1]],[[1,2,1,0],[1,2,1,2],[1,2,3,3],[0,2,2,1]],[[1,2,1,0],[1,2,1,2],[0,3,3,2],[1,1,2,2]],[[1,2,1,0],[1,2,1,2],[0,3,3,2],[1,1,3,1]],[[1,2,1,0],[1,2,1,2],[0,3,3,3],[1,1,2,1]],[[1,2,1,0],[1,2,1,2],[0,2,3,2],[1,2,2,2]],[[1,2,1,0],[1,2,1,2],[0,2,3,2],[1,2,3,1]],[[1,2,1,0],[1,2,1,2],[0,2,3,2],[1,3,2,1]],[[1,2,1,0],[1,2,1,2],[0,2,3,3],[1,2,2,1]],[[2,1,1,1],[2,2,3,2],[2,3,3,0],[0,2,0,0]],[[1,1,1,1],[3,2,3,2],[2,3,3,0],[0,2,0,0]],[[1,1,1,1],[2,2,3,2],[3,3,3,0],[0,2,0,0]],[[1,1,1,1],[2,2,3,2],[2,4,3,0],[0,2,0,0]],[[2,1,1,1],[2,2,3,2],[2,3,3,0],[1,1,0,0]],[[1,1,1,1],[3,2,3,2],[2,3,3,0],[1,1,0,0]],[[1,1,1,1],[2,2,3,2],[3,3,3,0],[1,1,0,0]],[[1,1,1,1],[2,2,3,2],[2,4,3,0],[1,1,0,0]],[[1,1,1,1],[2,2,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,1,0],[1,0,0,2],[2,3,3,2],[1,2,2,2]],[[1,2,1,0],[1,0,0,2],[2,3,3,2],[1,2,3,1]],[[1,2,1,0],[1,0,0,2],[2,3,3,2],[1,3,2,1]],[[1,2,1,0],[1,0,0,2],[2,3,3,2],[2,2,2,1]],[[1,2,1,0],[1,0,0,2],[2,3,3,3],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,1,0],[0,3,3,3],[2,3,3,2],[0,0,0,1]],[[1,2,1,0],[0,3,4,2],[2,3,3,2],[0,0,0,1]],[[1,2,1,0],[0,4,3,2],[2,3,3,2],[0,0,0,1]],[[1,3,1,0],[0,3,3,2],[2,3,3,2],[0,0,0,1]],[[2,2,1,0],[0,3,3,2],[2,3,3,2],[0,0,0,1]],[[1,2,1,0],[0,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,1,0],[0,3,3,2],[2,4,3,1],[1,1,0,0]],[[1,2,1,0],[0,3,3,2],[3,3,3,1],[1,1,0,0]],[[1,2,1,0],[0,3,3,3],[2,3,3,1],[1,1,0,0]],[[1,2,1,0],[0,3,4,2],[2,3,3,1],[1,1,0,0]],[[1,2,1,0],[0,4,3,2],[2,3,3,1],[1,1,0,0]],[[1,3,1,0],[0,3,3,2],[2,3,3,1],[1,1,0,0]],[[2,2,1,0],[0,3,3,2],[2,3,3,1],[1,1,0,0]],[[1,2,1,0],[0,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,1,0],[0,3,3,2],[3,3,3,1],[0,2,0,0]],[[1,2,1,0],[0,3,3,3],[2,3,3,1],[0,2,0,0]],[[1,2,1,0],[0,3,4,2],[2,3,3,1],[0,2,0,0]],[[1,2,1,0],[0,4,3,2],[2,3,3,1],[0,2,0,0]],[[1,3,1,0],[0,3,3,2],[2,3,3,1],[0,2,0,0]],[[2,2,1,0],[0,3,3,2],[2,3,3,1],[0,2,0,0]],[[1,2,1,0],[0,3,3,2],[2,3,4,1],[0,0,2,0]],[[1,2,1,0],[0,3,3,3],[2,3,3,1],[0,0,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,3,1],[0,0,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,3,1],[0,0,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,3,1],[0,0,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,3,1],[0,0,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,4,1],[0,0,1,1]],[[1,2,1,0],[0,3,3,3],[2,3,3,1],[0,0,1,1]],[[1,2,1,0],[0,3,4,2],[2,3,3,1],[0,0,1,1]],[[1,2,1,0],[0,4,3,2],[2,3,3,1],[0,0,1,1]],[[1,3,1,0],[0,3,3,2],[2,3,3,1],[0,0,1,1]],[[2,2,1,0],[0,3,3,2],[2,3,3,1],[0,0,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,1,0],[0,3,3,2],[2,4,3,0],[1,2,0,0]],[[1,2,1,0],[0,3,3,2],[3,3,3,0],[1,2,0,0]],[[1,2,1,0],[0,3,4,2],[2,3,3,0],[1,2,0,0]],[[1,2,1,0],[0,4,3,2],[2,3,3,0],[1,2,0,0]],[[1,3,1,0],[0,3,3,2],[2,3,3,0],[1,2,0,0]],[[2,2,1,0],[0,3,3,2],[2,3,3,0],[1,2,0,0]],[[1,2,1,0],[0,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,1,0],[0,3,3,2],[2,4,3,0],[1,1,1,0]],[[1,2,1,0],[0,3,3,2],[3,3,3,0],[1,1,1,0]],[[1,2,1,0],[0,3,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,1,0],[0,4,3,2],[2,3,3,0],[1,1,1,0]],[[1,3,1,0],[0,3,3,2],[2,3,3,0],[1,1,1,0]],[[2,2,1,0],[0,3,3,2],[2,3,3,0],[1,1,1,0]],[[1,2,1,0],[0,3,3,2],[2,3,3,0],[2,0,2,0]],[[1,2,1,0],[0,3,3,2],[2,4,3,0],[1,0,2,0]],[[1,2,1,0],[0,3,3,2],[3,3,3,0],[1,0,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,3,0],[1,0,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,3,0],[1,0,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,3,0],[1,0,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,3,0],[1,0,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,1,0],[0,3,3,2],[2,4,3,0],[0,2,1,0]],[[1,2,1,0],[0,3,3,2],[3,3,3,0],[0,2,1,0]],[[1,2,1,0],[0,3,4,2],[2,3,3,0],[0,2,1,0]],[[1,2,1,0],[0,4,3,2],[2,3,3,0],[0,2,1,0]],[[1,3,1,0],[0,3,3,2],[2,3,3,0],[0,2,1,0]],[[2,2,1,0],[0,3,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,1,0],[0,3,3,2],[2,4,3,0],[0,1,2,0]],[[1,2,1,0],[0,3,3,2],[3,3,3,0],[0,1,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,3,0],[0,1,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,3,0],[0,1,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,3,0],[0,1,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,3,0],[0,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,4,0],[0,0,2,1]],[[1,2,1,0],[0,3,3,3],[2,3,3,0],[0,0,2,1]],[[1,2,1,0],[0,3,4,2],[2,3,3,0],[0,0,2,1]],[[1,2,1,0],[0,4,3,2],[2,3,3,0],[0,0,2,1]],[[1,3,1,0],[0,3,3,2],[2,3,3,0],[0,0,2,1]],[[2,2,1,0],[0,3,3,2],[2,3,3,0],[0,0,2,1]],[[1,2,1,0],[0,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,1,0],[0,3,3,3],[2,3,2,2],[0,0,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,2,2],[0,0,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,2,2],[0,0,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,2,2],[0,0,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,2,2],[0,0,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,2,2],[0,0,1,2]],[[1,2,1,0],[0,3,3,2],[2,3,2,3],[0,0,1,1]],[[1,2,1,0],[0,3,3,3],[2,3,2,2],[0,0,1,1]],[[1,2,1,0],[0,3,4,2],[2,3,2,2],[0,0,1,1]],[[1,2,1,0],[0,4,3,2],[2,3,2,2],[0,0,1,1]],[[1,3,1,0],[0,3,3,2],[2,3,2,2],[0,0,1,1]],[[2,2,1,0],[0,3,3,2],[2,3,2,2],[0,0,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,1,0],[0,3,3,2],[2,4,2,1],[1,2,0,0]],[[1,2,1,0],[0,3,3,2],[3,3,2,1],[1,2,0,0]],[[1,2,1,0],[0,3,3,3],[2,3,2,1],[1,2,0,0]],[[1,2,1,0],[0,3,4,2],[2,3,2,1],[1,2,0,0]],[[1,2,1,0],[0,4,3,2],[2,3,2,1],[1,2,0,0]],[[1,3,1,0],[0,3,3,2],[2,3,2,1],[1,2,0,0]],[[2,2,1,0],[0,3,3,2],[2,3,2,1],[1,2,0,0]],[[1,2,1,0],[0,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,1,0],[0,3,3,2],[2,4,2,1],[1,1,1,0]],[[1,2,1,0],[0,3,3,2],[3,3,2,1],[1,1,1,0]],[[1,2,1,0],[0,3,3,3],[2,3,2,1],[1,1,1,0]],[[1,2,1,0],[0,3,4,2],[2,3,2,1],[1,1,1,0]],[[1,2,1,0],[0,4,3,2],[2,3,2,1],[1,1,1,0]],[[1,3,1,0],[0,3,3,2],[2,3,2,1],[1,1,1,0]],[[2,2,1,0],[0,3,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,1,0],[0,3,3,2],[2,3,2,1],[2,1,0,1]],[[1,2,1,0],[0,3,3,2],[2,4,2,1],[1,1,0,1]],[[1,2,1,0],[0,3,3,2],[3,3,2,1],[1,1,0,1]],[[1,1,1,1],[2,3,0,0],[1,4,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,0],[1,3,3,1],[2,2,2,1]],[[1,1,1,1],[2,3,0,0],[1,3,3,1],[1,3,2,1]],[[1,1,1,1],[2,3,0,0],[1,3,3,1],[1,2,3,1]],[[1,1,1,1],[2,3,0,0],[1,3,3,1],[1,2,2,2]],[[1,1,1,1],[2,3,0,0],[1,4,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,0],[1,3,3,2],[2,2,2,0]],[[1,1,1,1],[2,3,0,0],[1,3,3,2],[1,3,2,0]],[[1,1,1,1],[2,3,0,0],[1,3,3,2],[1,2,3,0]],[[2,1,1,1],[2,3,0,0],[2,2,3,1],[1,2,2,1]],[[1,1,1,1],[3,3,0,0],[2,2,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,0],[3,2,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,0],[2,2,3,1],[2,2,2,1]],[[1,1,1,1],[2,3,0,0],[2,2,3,1],[1,3,2,1]],[[1,1,1,1],[2,3,0,0],[2,2,3,1],[1,2,3,1]],[[1,1,1,1],[2,3,0,0],[2,2,3,1],[1,2,2,2]],[[2,1,1,1],[2,3,0,0],[2,2,3,2],[1,2,2,0]],[[1,1,1,1],[3,3,0,0],[2,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,0],[3,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,0],[2,2,3,2],[2,2,2,0]],[[1,1,1,1],[2,3,0,0],[2,2,3,2],[1,3,2,0]],[[1,1,1,1],[2,3,0,0],[2,2,3,2],[1,2,3,0]],[[1,1,1,1],[3,3,0,0],[2,3,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,0],[3,3,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,0],[2,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,3,0,0],[2,3,2,1],[1,3,2,1]],[[1,1,1,1],[3,3,0,0],[2,3,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,0],[3,3,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,0],[2,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,3,0,0],[2,3,2,2],[1,3,2,0]],[[1,1,1,1],[3,3,0,0],[2,3,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,0,0],[3,3,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,0,0],[2,3,3,0],[2,2,2,1]],[[1,1,1,1],[2,3,0,0],[2,3,3,0],[1,3,2,1]],[[2,1,1,1],[2,3,0,0],[2,3,3,1],[0,2,2,1]],[[1,1,1,1],[3,3,0,0],[2,3,3,1],[0,2,2,1]],[[1,1,1,1],[2,3,0,0],[3,3,3,1],[0,2,2,1]],[[1,1,1,1],[2,3,0,0],[2,4,3,1],[0,2,2,1]],[[1,1,1,1],[2,3,0,0],[2,3,3,1],[0,3,2,1]],[[1,1,1,1],[2,3,0,0],[2,3,3,1],[0,2,3,1]],[[1,1,1,1],[2,3,0,0],[2,3,3,1],[0,2,2,2]],[[2,1,1,1],[2,3,0,0],[2,3,3,1],[1,1,2,1]],[[1,1,1,1],[3,3,0,0],[2,3,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,0,0],[3,3,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,0,0],[2,4,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,0,0],[2,3,3,1],[2,1,2,1]],[[2,1,1,1],[2,3,0,0],[2,3,3,2],[0,2,2,0]],[[1,1,1,1],[3,3,0,0],[2,3,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,0,0],[3,3,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,0,0],[2,4,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,0,0],[2,3,3,2],[0,3,2,0]],[[1,1,1,1],[2,3,0,0],[2,3,3,2],[0,2,3,0]],[[2,1,1,1],[2,3,0,0],[2,3,3,2],[1,1,2,0]],[[1,1,1,1],[3,3,0,0],[2,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,0,0],[3,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,0,0],[2,4,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,0,0],[2,3,3,2],[2,1,2,0]],[[1,2,1,0],[0,3,3,3],[2,3,2,1],[1,1,0,1]],[[1,2,1,0],[0,3,4,2],[2,3,2,1],[1,1,0,1]],[[1,2,1,0],[0,4,3,2],[2,3,2,1],[1,1,0,1]],[[1,3,1,0],[0,3,3,2],[2,3,2,1],[1,1,0,1]],[[2,2,1,0],[0,3,3,2],[2,3,2,1],[1,1,0,1]],[[1,2,1,0],[0,3,3,2],[2,3,2,1],[2,0,2,0]],[[1,2,1,0],[0,3,3,2],[2,4,2,1],[1,0,2,0]],[[1,2,1,0],[0,3,3,2],[3,3,2,1],[1,0,2,0]],[[1,2,1,0],[0,3,3,3],[2,3,2,1],[1,0,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,2,1],[1,0,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,2,1],[1,0,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,2,1],[1,0,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,2,1],[2,0,1,1]],[[1,2,1,0],[0,3,3,2],[2,4,2,1],[1,0,1,1]],[[1,2,1,0],[0,3,3,2],[3,3,2,1],[1,0,1,1]],[[1,2,1,0],[0,3,3,3],[2,3,2,1],[1,0,1,1]],[[1,2,1,0],[0,3,4,2],[2,3,2,1],[1,0,1,1]],[[1,2,1,0],[0,4,3,2],[2,3,2,1],[1,0,1,1]],[[1,3,1,0],[0,3,3,2],[2,3,2,1],[1,0,1,1]],[[2,2,1,0],[0,3,3,2],[2,3,2,1],[1,0,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,1,0],[0,3,3,2],[2,4,2,1],[0,2,1,0]],[[1,2,1,0],[0,3,3,2],[3,3,2,1],[0,2,1,0]],[[1,2,1,0],[0,3,3,3],[2,3,2,1],[0,2,1,0]],[[1,2,1,0],[0,3,4,2],[2,3,2,1],[0,2,1,0]],[[1,2,1,0],[0,4,3,2],[2,3,2,1],[0,2,1,0]],[[1,3,1,0],[0,3,3,2],[2,3,2,1],[0,2,1,0]],[[2,2,1,0],[0,3,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,1,0],[0,3,3,2],[2,3,2,1],[0,3,0,1]],[[1,2,1,0],[0,3,3,2],[2,4,2,1],[0,2,0,1]],[[1,2,1,0],[0,3,3,2],[3,3,2,1],[0,2,0,1]],[[1,2,1,0],[0,3,3,3],[2,3,2,1],[0,2,0,1]],[[1,2,1,0],[0,3,4,2],[2,3,2,1],[0,2,0,1]],[[1,1,1,2],[2,3,0,2],[0,2,2,2],[1,2,2,1]],[[1,1,1,1],[2,3,0,3],[0,2,2,2],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,2,2,3],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,2,2,2],[2,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,2,2,2],[1,3,2,1]],[[1,1,1,1],[2,3,0,2],[0,2,2,2],[1,2,3,1]],[[1,1,1,1],[2,3,0,2],[0,2,2,2],[1,2,2,2]],[[1,1,1,1],[2,3,0,2],[0,2,4,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,2,3,1],[2,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,2,3,1],[1,3,2,1]],[[1,1,1,1],[2,3,0,2],[0,2,3,1],[1,2,3,1]],[[1,1,1,1],[2,3,0,2],[0,2,3,1],[1,2,2,2]],[[1,1,1,2],[2,3,0,2],[0,2,3,2],[1,2,1,1]],[[1,1,1,1],[2,3,0,3],[0,2,3,2],[1,2,1,1]],[[1,1,1,1],[2,3,0,2],[0,2,4,2],[1,2,1,1]],[[1,1,1,1],[2,3,0,2],[0,2,3,3],[1,2,1,1]],[[1,1,1,1],[2,3,0,2],[0,2,3,2],[1,2,1,2]],[[1,1,1,2],[2,3,0,2],[0,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,3],[0,2,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,2],[0,2,4,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,2],[0,2,3,3],[1,2,2,0]],[[1,1,1,1],[2,3,0,2],[0,2,3,2],[2,2,2,0]],[[1,1,1,1],[2,3,0,2],[0,2,3,2],[1,3,2,0]],[[1,1,1,1],[2,3,0,2],[0,2,3,2],[1,2,3,0]],[[2,1,1,1],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,2],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[3,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,4,0,2],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,0,3],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,4,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,1,3],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,3,0,2],[0,3,1,2],[1,2,2,2]],[[2,1,1,1],[2,3,0,2],[0,3,2,1],[1,2,2,1]],[[1,1,1,1],[3,3,0,2],[0,3,2,1],[1,2,2,1]],[[1,1,1,1],[2,4,0,2],[0,3,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,4,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,3,0,2],[0,3,2,1],[1,2,2,2]],[[1,1,1,2],[2,3,0,2],[0,3,2,2],[1,1,2,1]],[[1,1,1,1],[2,3,0,3],[0,3,2,2],[1,1,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,2,3],[1,1,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,2,2],[1,1,3,1]],[[1,1,1,1],[2,3,0,2],[0,3,2,2],[1,1,2,2]],[[2,1,1,1],[2,3,0,2],[0,3,2,2],[1,2,2,0]],[[1,1,1,1],[3,3,0,2],[0,3,2,2],[1,2,2,0]],[[1,1,1,1],[2,4,0,2],[0,3,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,2],[0,4,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,2],[0,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,3,0,2],[0,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,3,0,2],[0,3,2,2],[1,2,3,0]],[[2,1,1,1],[2,3,0,2],[0,3,3,1],[1,1,2,1]],[[1,1,1,1],[3,3,0,2],[0,3,3,1],[1,1,2,1]],[[1,1,1,1],[2,4,0,2],[0,3,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,0,2],[0,4,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,4,1],[1,1,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,1],[1,1,3,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,1],[1,1,2,2]],[[2,1,1,1],[2,3,0,2],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[3,3,0,2],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[2,4,0,2],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,0,2],[0,4,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,0,2],[0,3,4,1],[1,2,1,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,1],[1,3,1,1]],[[1,1,1,2],[2,3,0,2],[0,3,3,2],[1,0,2,1]],[[1,1,1,1],[2,3,0,3],[0,3,3,2],[1,0,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,4,2],[1,0,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,3],[1,0,2,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,2],[1,0,2,2]],[[2,1,1,1],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,1,1,2],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[3,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,4,0,2],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,3,0,3],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,3,0,2],[0,4,3,2],[1,1,1,1]],[[1,1,1,1],[2,3,0,2],[0,3,4,2],[1,1,1,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,3],[1,1,1,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,2],[1,1,1,2]],[[2,1,1,1],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,1,1,2],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[3,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,4,0,2],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,0,3],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,0,2],[0,4,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,0,2],[0,3,4,2],[1,1,2,0]],[[1,1,1,1],[2,3,0,2],[0,3,3,3],[1,1,2,0]],[[1,1,1,1],[2,3,0,2],[0,3,3,2],[1,1,3,0]],[[2,1,1,1],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,1,1,2],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[3,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,4,0,2],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,0,3],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,0,2],[0,4,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,0,2],[0,3,4,2],[1,2,0,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,3],[1,2,0,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,3,0,2],[0,3,3,2],[1,2,0,2]],[[2,1,1,1],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,1,1,2],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[3,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,4,0,2],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,0,3],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,0,2],[0,4,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,0,2],[0,3,4,2],[1,2,1,0]],[[1,1,1,1],[2,3,0,2],[0,3,3,3],[1,2,1,0]],[[1,1,1,1],[2,3,0,2],[0,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,3,0,2],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[0,4,3,2],[2,3,2,1],[0,2,0,1]],[[1,3,1,0],[0,3,3,2],[2,3,2,1],[0,2,0,1]],[[2,2,1,0],[0,3,3,2],[2,3,2,1],[0,2,0,1]],[[1,2,1,0],[0,3,3,2],[2,4,2,1],[0,1,2,0]],[[1,2,1,0],[0,3,3,2],[3,3,2,1],[0,1,2,0]],[[1,1,1,2],[2,3,0,2],[1,2,2,2],[0,2,2,1]],[[1,1,1,1],[2,3,0,3],[1,2,2,2],[0,2,2,1]],[[1,1,1,1],[2,3,0,2],[1,2,2,3],[0,2,2,1]],[[1,1,1,1],[2,3,0,2],[1,2,2,2],[0,3,2,1]],[[1,1,1,1],[2,3,0,2],[1,2,2,2],[0,2,3,1]],[[1,1,1,1],[2,3,0,2],[1,2,2,2],[0,2,2,2]],[[1,1,1,1],[2,3,0,2],[1,2,4,1],[0,2,2,1]],[[1,1,1,1],[2,3,0,2],[1,2,3,1],[0,3,2,1]],[[1,1,1,1],[2,3,0,2],[1,2,3,1],[0,2,3,1]],[[1,1,1,1],[2,3,0,2],[1,2,3,1],[0,2,2,2]],[[1,1,1,2],[2,3,0,2],[1,2,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,0,3],[1,2,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,0,2],[1,2,4,2],[0,2,1,1]],[[1,1,1,1],[2,3,0,2],[1,2,3,3],[0,2,1,1]],[[1,1,1,1],[2,3,0,2],[1,2,3,2],[0,2,1,2]],[[1,1,1,2],[2,3,0,2],[1,2,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,0,3],[1,2,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,0,2],[1,2,4,2],[0,2,2,0]],[[1,1,1,1],[2,3,0,2],[1,2,3,3],[0,2,2,0]],[[1,1,1,1],[2,3,0,2],[1,2,3,2],[0,3,2,0]],[[1,1,1,1],[2,3,0,2],[1,2,3,2],[0,2,3,0]],[[1,2,1,0],[0,3,3,3],[2,3,2,1],[0,1,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,2,1],[0,1,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,2,1],[0,1,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,2,1],[0,1,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,4,2,1],[0,1,1,1]],[[1,2,1,0],[0,3,3,2],[3,3,2,1],[0,1,1,1]],[[1,2,1,0],[0,3,3,3],[2,3,2,1],[0,1,1,1]],[[2,1,1,1],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,1,1,2],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[3,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,4,0,2],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,0,3],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,0,2],[1,4,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,1,3],[0,2,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,1,2],[0,3,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,1,2],[0,2,3,1]],[[1,1,1,1],[2,3,0,2],[1,3,1,2],[0,2,2,2]],[[2,1,1,1],[2,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[3,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,4,0,2],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,0,2],[1,4,1,2],[1,1,2,1]],[[2,1,1,1],[2,3,0,2],[1,3,2,1],[0,2,2,1]],[[1,1,1,1],[3,3,0,2],[1,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,4,0,2],[1,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,3,0,2],[1,4,2,1],[0,2,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,2,1],[0,3,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,2,1],[0,2,3,1]],[[1,1,1,1],[2,3,0,2],[1,3,2,1],[0,2,2,2]],[[2,1,1,1],[2,3,0,2],[1,3,2,1],[1,1,2,1]],[[1,1,1,1],[3,3,0,2],[1,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,4,0,2],[1,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,0,2],[1,4,2,1],[1,1,2,1]],[[1,1,1,2],[2,3,0,2],[1,3,2,2],[0,1,2,1]],[[1,1,1,1],[2,3,0,3],[1,3,2,2],[0,1,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,2,3],[0,1,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,2,2],[0,1,3,1]],[[1,1,1,1],[2,3,0,2],[1,3,2,2],[0,1,2,2]],[[2,1,1,1],[2,3,0,2],[1,3,2,2],[0,2,2,0]],[[1,1,1,1],[3,3,0,2],[1,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,4,0,2],[1,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,0,2],[1,4,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,0,2],[1,3,2,2],[0,3,2,0]],[[1,1,1,1],[2,3,0,2],[1,3,2,2],[0,2,3,0]],[[1,1,1,2],[2,3,0,2],[1,3,2,2],[1,0,2,1]],[[1,1,1,1],[2,3,0,3],[1,3,2,2],[1,0,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,2,3],[1,0,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,2,2],[1,0,3,1]],[[1,1,1,1],[2,3,0,2],[1,3,2,2],[1,0,2,2]],[[2,1,1,1],[2,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[3,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,4,0,2],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,0,2],[1,4,2,2],[1,1,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,2,1],[0,1,1,1]],[[1,2,1,0],[0,4,3,2],[2,3,2,1],[0,1,1,1]],[[1,3,1,0],[0,3,3,2],[2,3,2,1],[0,1,1,1]],[[2,2,1,0],[0,3,3,2],[2,3,2,1],[0,1,1,1]],[[2,1,1,1],[2,3,0,2],[1,3,3,1],[0,1,2,1]],[[1,1,1,1],[3,3,0,2],[1,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,4,0,2],[1,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,0,2],[1,4,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,4,1],[0,1,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,1],[0,1,3,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,1],[0,1,2,2]],[[2,1,1,1],[2,3,0,2],[1,3,3,1],[0,2,1,1]],[[1,1,1,1],[3,3,0,2],[1,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,4,0,2],[1,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,0,2],[1,4,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,0,2],[1,3,4,1],[0,2,1,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,1],[0,3,1,1]],[[2,1,1,1],[2,3,0,2],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[3,3,0,2],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,4,0,2],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,0,2],[1,4,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,4,1],[1,0,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,1],[1,0,3,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,1],[1,0,2,2]],[[2,1,1,1],[2,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[3,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,4,0,2],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,0,2],[1,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,0,2],[1,3,4,1],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,1,0],[0,3,3,2],[2,4,2,0],[1,2,0,1]],[[1,2,1,0],[0,3,3,2],[3,3,2,0],[1,2,0,1]],[[1,2,1,0],[0,3,4,2],[2,3,2,0],[1,2,0,1]],[[1,2,1,0],[0,4,3,2],[2,3,2,0],[1,2,0,1]],[[1,3,1,0],[0,3,3,2],[2,3,2,0],[1,2,0,1]],[[2,2,1,0],[0,3,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,1,2],[2,3,0,2],[1,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,0,3],[1,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,4,2],[0,0,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,3],[0,0,2,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,2],[0,0,2,2]],[[2,1,1,1],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,2],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[3,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,4,0,2],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,0,3],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,0,2],[1,4,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,0,2],[1,3,4,2],[0,1,1,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,3],[0,1,1,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,2],[0,1,1,2]],[[2,1,1,1],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,1,1,2],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[3,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,4,0,2],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,0,3],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,0,2],[1,4,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,0,2],[1,3,4,2],[0,1,2,0]],[[1,1,1,1],[2,3,0,2],[1,3,3,3],[0,1,2,0]],[[1,1,1,1],[2,3,0,2],[1,3,3,2],[0,1,3,0]],[[2,1,1,1],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,1,1,2],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[3,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,4,0,2],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,0,3],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,0,2],[1,4,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,0,2],[1,3,4,2],[0,2,0,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,3],[0,2,0,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,2],[0,3,0,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,2],[0,2,0,2]],[[2,1,1,1],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,1,1,2],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[3,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,4,0,2],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,0,3],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,0,2],[1,4,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,0,2],[1,3,4,2],[0,2,1,0]],[[1,1,1,1],[2,3,0,2],[1,3,3,3],[0,2,1,0]],[[1,1,1,1],[2,3,0,2],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[0,3,3,2],[2,3,2,0],[2,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,4,2,0],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[3,3,2,0],[1,1,1,1]],[[2,1,1,1],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,1,1,2],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[3,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,4,0,2],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,0,3],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,0,2],[1,4,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,0,2],[1,3,4,2],[1,0,1,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,3],[1,0,1,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,2],[1,0,1,2]],[[2,1,1,1],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,1,1,2],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[3,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,4,0,2],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,0,3],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,0,2],[1,4,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,0,2],[1,3,4,2],[1,0,2,0]],[[1,1,1,1],[2,3,0,2],[1,3,3,3],[1,0,2,0]],[[1,1,1,1],[2,3,0,2],[1,3,3,2],[1,0,3,0]],[[2,1,1,1],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,2],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[3,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,4,0,2],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,0,3],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,0,2],[1,4,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,0,2],[1,3,4,2],[1,1,0,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,3],[1,1,0,1]],[[1,1,1,1],[2,3,0,2],[1,3,3,2],[1,1,0,2]],[[2,1,1,1],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,1,1,2],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[3,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,4,0,2],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,0,3],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,0,2],[1,4,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,0,2],[1,3,4,2],[1,1,1,0]],[[1,1,1,1],[2,3,0,2],[1,3,3,3],[1,1,1,0]],[[1,2,1,0],[0,3,3,3],[2,3,2,0],[1,1,1,1]],[[1,2,1,0],[0,3,4,2],[2,3,2,0],[1,1,1,1]],[[1,2,1,0],[0,4,3,2],[2,3,2,0],[1,1,1,1]],[[1,3,1,0],[0,3,3,2],[2,3,2,0],[1,1,1,1]],[[2,2,1,0],[0,3,3,2],[2,3,2,0],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,2,0],[2,0,2,1]],[[1,2,1,0],[0,3,3,2],[2,4,2,0],[1,0,2,1]],[[1,2,1,0],[0,3,3,2],[3,3,2,0],[1,0,2,1]],[[1,2,1,0],[0,3,3,3],[2,3,2,0],[1,0,2,1]],[[1,2,1,0],[0,3,4,2],[2,3,2,0],[1,0,2,1]],[[2,1,1,1],[2,3,0,2],[1,3,3,2],[1,2,0,0]],[[1,1,1,1],[3,3,0,2],[1,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,4,0,2],[1,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,3,0,2],[1,4,3,2],[1,2,0,0]],[[1,2,1,0],[0,4,3,2],[2,3,2,0],[1,0,2,1]],[[1,3,1,0],[0,3,3,2],[2,3,2,0],[1,0,2,1]],[[2,2,1,0],[0,3,3,2],[2,3,2,0],[1,0,2,1]],[[1,2,1,0],[0,3,3,2],[2,3,2,0],[0,3,1,1]],[[1,2,1,0],[0,3,3,2],[2,4,2,0],[0,2,1,1]],[[1,2,1,0],[0,3,3,2],[3,3,2,0],[0,2,1,1]],[[1,2,1,0],[0,3,3,3],[2,3,2,0],[0,2,1,1]],[[1,2,1,0],[0,3,4,2],[2,3,2,0],[0,2,1,1]],[[1,2,1,0],[0,4,3,2],[2,3,2,0],[0,2,1,1]],[[1,3,1,0],[0,3,3,2],[2,3,2,0],[0,2,1,1]],[[2,2,1,0],[0,3,3,2],[2,3,2,0],[0,2,1,1]],[[1,2,1,0],[0,3,3,2],[2,4,2,0],[0,1,2,1]],[[1,2,1,0],[0,3,3,2],[3,3,2,0],[0,1,2,1]],[[1,2,1,0],[0,3,3,3],[2,3,2,0],[0,1,2,1]],[[1,2,1,0],[0,3,4,2],[2,3,2,0],[0,1,2,1]],[[1,2,1,0],[0,4,3,2],[2,3,2,0],[0,1,2,1]],[[1,3,1,0],[0,3,3,2],[2,3,2,0],[0,1,2,1]],[[2,2,1,0],[0,3,3,2],[2,3,2,0],[0,1,2,1]],[[2,1,1,1],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,2],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[3,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,4,0,2],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,3,0,3],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[3,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[2,0,2,3],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[2,0,2,2],[2,2,2,1]],[[1,1,1,1],[2,3,0,2],[2,0,2,2],[1,3,2,1]],[[1,1,1,1],[2,3,0,2],[2,0,2,2],[1,2,3,1]],[[1,1,1,1],[2,3,0,2],[2,0,2,2],[1,2,2,2]],[[2,1,1,1],[2,3,0,2],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[3,3,0,2],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,4,0,2],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[3,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[2,0,4,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[2,0,3,1],[2,2,2,1]],[[1,1,1,1],[2,3,0,2],[2,0,3,1],[1,3,2,1]],[[1,1,1,1],[2,3,0,2],[2,0,3,1],[1,2,3,1]],[[1,1,1,1],[2,3,0,2],[2,0,3,1],[1,2,2,2]],[[1,1,1,2],[2,3,0,2],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[2,3,0,3],[2,0,3,2],[1,2,1,1]],[[1,1,1,1],[2,3,0,2],[2,0,4,2],[1,2,1,1]],[[1,1,1,1],[2,3,0,2],[2,0,3,3],[1,2,1,1]],[[1,1,1,1],[2,3,0,2],[2,0,3,2],[1,2,1,2]],[[2,1,1,1],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,2],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[3,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,4,0,2],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,3],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,2],[3,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,2],[2,0,4,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,2],[2,0,3,3],[1,2,2,0]],[[1,1,1,1],[2,3,0,2],[2,0,3,2],[2,2,2,0]],[[1,1,1,1],[2,3,0,2],[2,0,3,2],[1,3,2,0]],[[1,1,1,1],[2,3,0,2],[2,0,3,2],[1,2,3,0]],[[2,1,1,1],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,2],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[3,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,4,0,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,0,3],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[3,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[2,1,1,3],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[2,1,1,2],[2,2,2,1]],[[1,1,1,1],[2,3,0,2],[2,1,1,2],[1,3,2,1]],[[1,1,1,1],[2,3,0,2],[2,1,1,2],[1,2,3,1]],[[1,1,1,1],[2,3,0,2],[2,1,1,2],[1,2,2,2]],[[2,1,1,1],[2,3,0,2],[2,1,2,1],[1,2,2,1]],[[1,1,1,1],[3,3,0,2],[2,1,2,1],[1,2,2,1]],[[1,1,1,1],[2,4,0,2],[2,1,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[3,1,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,0,2],[2,1,2,1],[2,2,2,1]],[[1,1,1,1],[2,3,0,2],[2,1,2,1],[1,3,2,1]],[[1,1,1,1],[2,3,0,2],[2,1,2,1],[1,2,3,1]],[[1,1,1,1],[2,3,0,2],[2,1,2,1],[1,2,2,2]],[[2,1,1,1],[2,3,0,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[3,3,0,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[2,4,0,2],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,2],[3,1,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,0,2],[2,1,2,2],[2,2,2,0]],[[1,1,1,1],[2,3,0,2],[2,1,2,2],[1,3,2,0]],[[1,1,1,1],[2,3,0,2],[2,1,2,2],[1,2,3,0]],[[2,1,1,1],[2,3,0,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[3,3,0,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,4,0,2],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,0,2],[3,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,0,2],[2,1,3,1],[2,2,1,1]],[[1,1,1,1],[2,3,0,2],[2,1,3,1],[1,3,1,1]],[[2,1,1,1],[2,3,0,2],[2,1,3,2],[1,2,0,1]],[[1,1,1,1],[3,3,0,2],[2,1,3,2],[1,2,0,1]],[[1,1,1,1],[2,4,0,2],[2,1,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,0,2],[3,1,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,0,2],[2,1,3,2],[2,2,0,1]],[[1,1,1,1],[2,3,0,2],[2,1,3,2],[1,3,0,1]],[[2,1,1,1],[2,3,0,2],[2,1,3,2],[1,2,1,0]],[[1,1,1,1],[3,3,0,2],[2,1,3,2],[1,2,1,0]],[[1,1,1,1],[2,4,0,2],[2,1,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,0,2],[3,1,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,0,2],[2,1,3,2],[2,2,1,0]],[[1,1,1,1],[2,3,0,2],[2,1,3,2],[1,3,1,0]],[[2,1,1,1],[2,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[3,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[2,4,0,2],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,0,2],[3,2,1,2],[0,2,2,1]],[[2,1,1,1],[2,3,0,2],[2,2,1,2],[1,1,2,1]],[[1,1,1,1],[3,3,0,2],[2,2,1,2],[1,1,2,1]],[[1,1,1,1],[2,4,0,2],[2,2,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,0,2],[3,2,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,0,2],[2,2,1,2],[2,1,2,1]],[[2,1,1,1],[2,3,0,2],[2,2,2,1],[0,2,2,1]],[[1,1,1,1],[3,3,0,2],[2,2,2,1],[0,2,2,1]],[[1,1,1,1],[2,4,0,2],[2,2,2,1],[0,2,2,1]],[[1,1,1,1],[2,3,0,2],[3,2,2,1],[0,2,2,1]],[[2,1,1,1],[2,3,0,2],[2,2,2,1],[1,1,2,1]],[[1,1,1,1],[3,3,0,2],[2,2,2,1],[1,1,2,1]],[[1,1,1,1],[2,4,0,2],[2,2,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,0,2],[3,2,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,0,2],[2,2,2,1],[2,1,2,1]],[[2,1,1,1],[2,3,0,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[3,3,0,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[2,4,0,2],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,0,2],[3,2,2,2],[0,2,2,0]],[[2,1,1,1],[2,3,0,2],[2,2,2,2],[1,1,2,0]],[[1,1,1,1],[3,3,0,2],[2,2,2,2],[1,1,2,0]],[[1,1,1,1],[2,4,0,2],[2,2,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,0,2],[3,2,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,0,2],[2,2,2,2],[2,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,1,0],[0,3,3,2],[2,4,1,2],[1,2,0,0]],[[1,2,1,0],[0,3,3,2],[3,3,1,2],[1,2,0,0]],[[1,2,1,0],[0,3,3,3],[2,3,1,2],[1,2,0,0]],[[1,2,1,0],[0,3,4,2],[2,3,1,2],[1,2,0,0]],[[1,2,1,0],[0,4,3,2],[2,3,1,2],[1,2,0,0]],[[1,3,1,0],[0,3,3,2],[2,3,1,2],[1,2,0,0]],[[2,2,1,0],[0,3,3,2],[2,3,1,2],[1,2,0,0]],[[2,1,1,1],[2,3,0,2],[2,2,3,1],[0,1,2,1]],[[1,1,1,1],[3,3,0,2],[2,2,3,1],[0,1,2,1]],[[1,1,1,1],[2,4,0,2],[2,2,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,0,2],[3,2,3,1],[0,1,2,1]],[[2,1,1,1],[2,3,0,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[3,3,0,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[2,4,0,2],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,0,2],[3,2,3,1],[0,2,1,1]],[[2,1,1,1],[2,3,0,2],[2,2,3,1],[1,0,2,1]],[[1,1,1,1],[3,3,0,2],[2,2,3,1],[1,0,2,1]],[[1,1,1,1],[2,4,0,2],[2,2,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,0,2],[3,2,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,0,2],[2,2,3,1],[2,0,2,1]],[[2,1,1,1],[2,3,0,2],[2,2,3,1],[1,1,1,1]],[[1,1,1,1],[3,3,0,2],[2,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,4,0,2],[2,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,0,2],[3,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,0,2],[2,2,3,1],[2,1,1,1]],[[2,1,1,1],[2,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[3,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[2,4,0,2],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,0,2],[3,2,3,2],[0,1,1,1]],[[2,1,1,1],[2,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[3,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[2,4,0,2],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,0,2],[3,2,3,2],[0,1,2,0]],[[2,1,1,1],[2,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[3,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[2,4,0,2],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,0,2],[3,2,3,2],[0,2,0,1]],[[2,1,1,1],[2,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[3,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[2,4,0,2],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,0,2],[3,2,3,2],[0,2,1,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,2],[2,1,1,0]],[[2,1,1,1],[2,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[3,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,4,0,2],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,0,2],[3,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,0,2],[2,2,3,2],[2,0,1,1]],[[2,1,1,1],[2,3,0,2],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[3,3,0,2],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,4,0,2],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,0,2],[3,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,0,2],[2,2,3,2],[2,0,2,0]],[[2,1,1,1],[2,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[3,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[2,4,0,2],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,0,2],[3,2,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,0,2],[2,2,3,2],[2,1,0,1]],[[2,1,1,1],[2,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[3,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[2,4,0,2],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,0,2],[3,2,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,0,2],[2,2,3,2],[2,1,1,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,3],[1,1,1,0]],[[1,2,1,0],[0,3,3,2],[2,4,1,2],[1,1,1,0]],[[1,2,1,0],[0,3,3,2],[3,3,1,2],[1,1,1,0]],[[1,2,1,0],[0,3,3,3],[2,3,1,2],[1,1,1,0]],[[1,2,1,0],[0,3,4,2],[2,3,1,2],[1,1,1,0]],[[2,1,1,1],[2,3,0,2],[2,2,3,2],[1,2,0,0]],[[1,1,1,1],[3,3,0,2],[2,2,3,2],[1,2,0,0]],[[1,1,1,1],[2,4,0,2],[2,2,3,2],[1,2,0,0]],[[1,1,1,1],[2,3,0,2],[3,2,3,2],[1,2,0,0]],[[1,1,1,1],[2,3,0,2],[2,2,3,2],[2,2,0,0]],[[1,2,1,0],[0,4,3,2],[2,3,1,2],[1,1,1,0]],[[1,3,1,0],[0,3,3,2],[2,3,1,2],[1,1,1,0]],[[2,2,1,0],[0,3,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,2],[1,1,0,2]],[[1,2,1,0],[0,3,3,2],[2,3,1,2],[2,1,0,1]],[[1,2,1,0],[0,3,3,2],[2,3,1,3],[1,1,0,1]],[[1,2,1,0],[0,3,3,2],[2,4,1,2],[1,1,0,1]],[[1,2,1,0],[0,3,3,2],[3,3,1,2],[1,1,0,1]],[[1,2,1,0],[0,3,3,3],[2,3,1,2],[1,1,0,1]],[[1,2,1,0],[0,3,4,2],[2,3,1,2],[1,1,0,1]],[[1,2,1,0],[0,4,3,2],[2,3,1,2],[1,1,0,1]],[[1,3,1,0],[0,3,3,2],[2,3,1,2],[1,1,0,1]],[[2,2,1,0],[0,3,3,2],[2,3,1,2],[1,1,0,1]],[[1,2,1,0],[0,3,3,2],[2,3,1,2],[2,0,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,3],[1,0,2,0]],[[1,2,1,0],[0,3,3,2],[2,4,1,2],[1,0,2,0]],[[1,2,1,0],[0,3,3,2],[3,3,1,2],[1,0,2,0]],[[1,2,1,0],[0,3,3,3],[2,3,1,2],[1,0,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,1,2],[1,0,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,1,2],[1,0,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,1,2],[1,0,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,1,2],[1,0,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,2],[1,0,1,2]],[[1,2,1,0],[0,3,3,2],[2,3,1,2],[2,0,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,1,3],[1,0,1,1]],[[1,2,1,0],[0,3,3,2],[2,4,1,2],[1,0,1,1]],[[1,2,1,0],[0,3,3,2],[3,3,1,2],[1,0,1,1]],[[1,2,1,0],[0,3,3,3],[2,3,1,2],[1,0,1,1]],[[1,2,1,0],[0,3,4,2],[2,3,1,2],[1,0,1,1]],[[1,2,1,0],[0,4,3,2],[2,3,1,2],[1,0,1,1]],[[1,3,1,0],[0,3,3,2],[2,3,1,2],[1,0,1,1]],[[2,2,1,0],[0,3,3,2],[2,3,1,2],[1,0,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,3],[0,2,1,0]],[[1,2,1,0],[0,3,3,2],[2,4,1,2],[0,2,1,0]],[[1,2,1,0],[0,3,3,2],[3,3,1,2],[0,2,1,0]],[[1,2,1,0],[0,3,3,3],[2,3,1,2],[0,2,1,0]],[[1,2,1,0],[0,3,4,2],[2,3,1,2],[0,2,1,0]],[[1,2,1,0],[0,4,3,2],[2,3,1,2],[0,2,1,0]],[[1,3,1,0],[0,3,3,2],[2,3,1,2],[0,2,1,0]],[[2,2,1,0],[0,3,3,2],[2,3,1,2],[0,2,1,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,2],[0,2,0,2]],[[1,2,1,0],[0,3,3,2],[2,3,1,2],[0,3,0,1]],[[1,2,1,0],[0,3,3,2],[2,3,1,3],[0,2,0,1]],[[1,2,1,0],[0,3,3,2],[2,4,1,2],[0,2,0,1]],[[1,2,1,0],[0,3,3,2],[3,3,1,2],[0,2,0,1]],[[1,2,1,0],[0,3,3,3],[2,3,1,2],[0,2,0,1]],[[1,2,1,0],[0,3,4,2],[2,3,1,2],[0,2,0,1]],[[1,2,1,0],[0,4,3,2],[2,3,1,2],[0,2,0,1]],[[1,3,1,0],[0,3,3,2],[2,3,1,2],[0,2,0,1]],[[2,2,1,0],[0,3,3,2],[2,3,1,2],[0,2,0,1]],[[1,2,1,0],[0,3,3,2],[2,3,1,3],[0,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,4,1,2],[0,1,2,0]],[[1,2,1,0],[0,3,3,2],[3,3,1,2],[0,1,2,0]],[[1,2,1,0],[0,3,3,3],[2,3,1,2],[0,1,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,1,2],[0,1,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,1,2],[0,1,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,1,2],[0,1,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,2],[0,1,1,2]],[[1,2,1,0],[0,3,3,2],[2,3,1,3],[0,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,4,1,2],[0,1,1,1]],[[1,2,1,0],[0,3,3,2],[3,3,1,2],[0,1,1,1]],[[1,2,1,0],[0,3,3,3],[2,3,1,2],[0,1,1,1]],[[1,2,1,0],[0,3,4,2],[2,3,1,2],[0,1,1,1]],[[1,2,1,0],[0,4,3,2],[2,3,1,2],[0,1,1,1]],[[1,3,1,0],[0,3,3,2],[2,3,1,2],[0,1,1,1]],[[2,2,1,0],[0,3,3,2],[2,3,1,2],[0,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,4,1,1],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[3,3,1,1],[1,1,2,0]],[[1,2,1,0],[0,3,3,3],[2,3,1,1],[1,1,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,1,1],[1,1,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,1,1],[1,1,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,1,1],[1,1,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,1,1],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,1],[0,2,3,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,1],[0,3,2,0]],[[1,2,1,0],[0,3,3,2],[2,4,1,1],[0,2,2,0]],[[1,2,1,0],[0,3,3,2],[3,3,1,1],[0,2,2,0]],[[1,2,1,0],[0,3,3,3],[2,3,1,1],[0,2,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,1,1],[0,2,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,1,1],[0,2,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,1,1],[0,2,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,1,1],[0,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,1,0],[2,1,2,1]],[[1,2,1,0],[0,3,3,2],[2,4,1,0],[1,1,2,1]],[[1,2,1,0],[0,3,3,2],[3,3,1,0],[1,1,2,1]],[[1,2,1,0],[0,3,3,3],[2,3,1,0],[1,1,2,1]],[[1,2,1,0],[0,3,4,2],[2,3,1,0],[1,1,2,1]],[[1,2,1,0],[0,4,3,2],[2,3,1,0],[1,1,2,1]],[[1,3,1,0],[0,3,3,2],[2,3,1,0],[1,1,2,1]],[[2,2,1,0],[0,3,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,1,0],[0,3,3,2],[2,3,1,0],[0,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,3,1,0],[0,2,3,1]],[[1,2,1,0],[0,3,3,2],[2,3,1,0],[0,3,2,1]],[[1,2,1,0],[0,3,3,2],[2,4,1,0],[0,2,2,1]],[[1,2,1,0],[0,3,3,2],[3,3,1,0],[0,2,2,1]],[[1,2,1,0],[0,3,3,3],[2,3,1,0],[0,2,2,1]],[[1,2,1,0],[0,3,4,2],[2,3,1,0],[0,2,2,1]],[[1,2,1,0],[0,4,3,2],[2,3,1,0],[0,2,2,1]],[[1,3,1,0],[0,3,3,2],[2,3,1,0],[0,2,2,1]],[[2,1,1,1],[2,3,0,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[3,3,0,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[2,4,0,2],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[2,3,0,2],[3,3,3,2],[1,0,0,1]],[[2,1,1,1],[2,3,0,2],[2,3,3,2],[1,0,1,0]],[[1,1,1,1],[3,3,0,2],[2,3,3,2],[1,0,1,0]],[[1,1,1,1],[2,4,0,2],[2,3,3,2],[1,0,1,0]],[[1,1,1,1],[2,3,0,2],[3,3,3,2],[1,0,1,0]],[[2,2,1,0],[0,3,3,2],[2,3,1,0],[0,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,0,3],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,4,0,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[3,3,0,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,3],[2,3,0,2],[1,1,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,0,2],[1,1,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,0,2],[1,1,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,0,2],[1,1,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[1,1,1,2]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[2,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,3],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,4,0,2],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[3,3,0,2],[1,1,1,1]],[[1,2,1,0],[0,3,3,3],[2,3,0,2],[1,1,1,1]],[[1,2,1,0],[0,3,4,2],[2,3,0,2],[1,1,1,1]],[[1,2,1,0],[0,4,3,2],[2,3,0,2],[1,1,1,1]],[[1,3,1,0],[0,3,3,2],[2,3,0,2],[1,1,1,1]],[[2,2,1,0],[0,3,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[1,0,2,2]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[1,0,3,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[2,0,2,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,3],[1,0,2,1]],[[1,2,1,0],[0,3,3,2],[2,4,0,2],[1,0,2,1]],[[1,2,1,0],[0,3,3,2],[3,3,0,2],[1,0,2,1]],[[1,2,1,0],[0,3,3,3],[2,3,0,2],[1,0,2,1]],[[1,2,1,0],[0,3,4,2],[2,3,0,2],[1,0,2,1]],[[1,2,1,0],[0,4,3,2],[2,3,0,2],[1,0,2,1]],[[1,3,1,0],[0,3,3,2],[2,3,0,2],[1,0,2,1]],[[2,2,1,0],[0,3,3,2],[2,3,0,2],[1,0,2,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[0,2,3,0]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[0,3,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,0,3],[0,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,4,0,2],[0,2,2,0]],[[1,2,1,0],[0,3,3,2],[3,3,0,2],[0,2,2,0]],[[1,2,1,0],[0,3,3,3],[2,3,0,2],[0,2,2,0]],[[1,2,1,0],[0,3,4,2],[2,3,0,2],[0,2,2,0]],[[1,2,1,0],[0,4,3,2],[2,3,0,2],[0,2,2,0]],[[1,3,1,0],[0,3,3,2],[2,3,0,2],[0,2,2,0]],[[2,2,1,0],[0,3,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[0,2,1,2]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[0,3,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,3],[0,2,1,1]],[[1,2,1,0],[0,3,3,2],[2,4,0,2],[0,2,1,1]],[[1,2,1,0],[0,3,3,2],[3,3,0,2],[0,2,1,1]],[[1,2,1,0],[0,3,3,3],[2,3,0,2],[0,2,1,1]],[[1,2,1,0],[0,3,4,2],[2,3,0,2],[0,2,1,1]],[[1,2,1,0],[0,4,3,2],[2,3,0,2],[0,2,1,1]],[[1,3,1,0],[0,3,3,2],[2,3,0,2],[0,2,1,1]],[[2,2,1,0],[0,3,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[0,1,2,2]],[[1,2,1,0],[0,3,3,2],[2,3,0,2],[0,1,3,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,3],[0,1,2,1]],[[1,2,1,0],[0,3,3,2],[2,4,0,2],[0,1,2,1]],[[1,2,1,0],[0,3,3,2],[3,3,0,2],[0,1,2,1]],[[1,2,1,0],[0,3,3,3],[2,3,0,2],[0,1,2,1]],[[1,2,1,0],[0,3,4,2],[2,3,0,2],[0,1,2,1]],[[1,2,1,0],[0,4,3,2],[2,3,0,2],[0,1,2,1]],[[1,3,1,0],[0,3,3,2],[2,3,0,2],[0,1,2,1]],[[2,2,1,0],[0,3,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,1,1],[2,3,1,0],[0,4,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[0,3,3,1],[2,2,2,1]],[[1,1,1,1],[2,3,1,0],[0,3,3,1],[1,3,2,1]],[[1,1,1,1],[2,3,1,0],[0,3,3,1],[1,2,3,1]],[[1,1,1,1],[2,3,1,0],[0,3,3,1],[1,2,2,2]],[[1,1,1,1],[2,3,1,0],[0,4,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,1,0],[0,3,3,2],[2,2,2,0]],[[1,1,1,1],[2,3,1,0],[0,3,3,2],[1,3,2,0]],[[1,1,1,1],[2,3,1,0],[0,3,3,2],[1,2,3,0]],[[1,1,1,1],[2,3,1,0],[1,4,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[1,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,3,1,0],[1,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,3,1,0],[1,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,3,1,0],[1,3,1,2],[1,2,2,2]],[[1,1,1,1],[2,3,1,0],[1,4,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[1,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,3,1,0],[1,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,3,1,0],[1,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,3,1,0],[1,3,2,1],[1,2,2,2]],[[1,1,1,1],[2,3,1,0],[1,4,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,1,0],[1,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,3,1,0],[1,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,3,1,0],[1,3,2,2],[1,2,3,0]],[[1,1,1,1],[2,3,1,0],[1,4,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[1,3,3,0],[2,2,2,1]],[[1,1,1,1],[2,3,1,0],[1,3,3,0],[1,3,2,1]],[[1,1,1,1],[2,3,1,0],[1,3,3,0],[1,2,3,1]],[[1,1,1,1],[2,3,1,0],[1,4,3,1],[0,2,2,1]],[[1,1,1,1],[2,3,1,0],[1,3,3,1],[0,3,2,1]],[[1,1,1,1],[2,3,1,0],[1,3,3,1],[0,2,3,1]],[[1,1,1,1],[2,3,1,0],[1,3,3,1],[0,2,2,2]],[[1,1,1,1],[2,3,1,0],[1,4,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,1,0],[1,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,3,1,0],[1,3,3,1],[1,3,1,1]],[[1,1,1,1],[2,3,1,0],[1,4,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,1,0],[1,3,3,2],[0,3,2,0]],[[1,1,1,1],[2,3,1,0],[1,3,3,2],[0,2,3,0]],[[1,1,1,1],[2,3,1,0],[1,4,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,1,0],[1,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,3,1,0],[1,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,3,1,0],[1,4,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,1,0],[1,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,3,1,0],[1,3,3,2],[1,3,1,0]],[[2,1,1,1],[2,3,1,0],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[3,3,1,0],[2,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[3,2,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,2,1,2],[2,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,2,1,2],[1,3,2,1]],[[1,1,1,1],[2,3,1,0],[2,2,1,2],[1,2,3,1]],[[1,1,1,1],[2,3,1,0],[2,2,1,2],[1,2,2,2]],[[2,1,1,1],[2,3,1,0],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[3,3,1,0],[2,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[3,2,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,2,2,1],[2,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,2,2,1],[1,3,2,1]],[[1,1,1,1],[2,3,1,0],[2,2,2,1],[1,2,3,1]],[[1,1,1,1],[2,3,1,0],[2,2,2,1],[1,2,2,2]],[[2,1,1,1],[2,3,1,0],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[3,3,1,0],[2,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,1,0],[3,2,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,1,0],[2,2,2,2],[2,2,2,0]],[[1,1,1,1],[2,3,1,0],[2,2,2,2],[1,3,2,0]],[[1,1,1,1],[2,3,1,0],[2,2,2,2],[1,2,3,0]],[[2,1,1,1],[2,3,1,0],[2,2,3,0],[1,2,2,1]],[[1,1,1,1],[3,3,1,0],[2,2,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[3,2,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,2,3,0],[2,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,2,3,0],[1,3,2,1]],[[1,1,1,1],[2,3,1,0],[2,2,3,0],[1,2,3,1]],[[2,1,1,1],[2,3,1,0],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[3,3,1,0],[2,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,1,0],[3,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,1,0],[2,2,3,1],[2,2,1,1]],[[1,1,1,1],[2,3,1,0],[2,2,3,1],[1,3,1,1]],[[2,1,1,1],[2,3,1,0],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[3,3,1,0],[2,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,1,0],[3,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,1,0],[2,2,3,2],[2,2,0,1]],[[1,1,1,1],[2,3,1,0],[2,2,3,2],[1,3,0,1]],[[2,1,1,1],[2,3,1,0],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[3,3,1,0],[2,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,1,0],[3,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,1,0],[2,2,3,2],[2,2,1,0]],[[1,1,1,1],[2,3,1,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[0,3,3,2],[2,3,0,1],[1,3,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,0,1],[2,2,2,0]],[[2,1,1,1],[2,3,1,0],[2,3,0,2],[1,2,2,1]],[[1,1,1,1],[3,3,1,0],[2,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[3,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,0,2],[2,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,0,2],[1,3,2,1]],[[2,1,1,1],[2,3,1,0],[2,3,1,1],[1,2,2,1]],[[1,1,1,1],[3,3,1,0],[2,3,1,1],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[3,3,1,1],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,1,1],[2,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,1,1],[1,3,2,1]],[[2,1,1,1],[2,3,1,0],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[3,3,1,0],[2,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,1,0],[3,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,4,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,1,2],[0,3,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,1,2],[0,2,3,1]],[[1,1,1,1],[2,3,1,0],[2,3,1,2],[0,2,2,2]],[[2,1,1,1],[2,3,1,0],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[3,3,1,0],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,1,0],[3,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,1,0],[2,4,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,1,2],[2,1,2,1]],[[2,1,1,1],[2,3,1,0],[2,3,1,2],[1,2,2,0]],[[1,1,1,1],[3,3,1,0],[2,3,1,2],[1,2,2,0]],[[1,1,1,1],[2,3,1,0],[3,3,1,2],[1,2,2,0]],[[1,1,1,1],[2,3,1,0],[2,3,1,2],[2,2,2,0]],[[1,1,1,1],[2,3,1,0],[2,3,1,2],[1,3,2,0]],[[2,1,1,1],[2,3,1,0],[2,3,2,0],[1,2,2,1]],[[1,1,1,1],[3,3,1,0],[2,3,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[3,3,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,2,0],[2,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,2,0],[1,3,2,1]],[[2,1,1,1],[2,3,1,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[3,3,1,0],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,3,1,0],[3,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,4,2,1],[0,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,2,1],[0,3,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,2,1],[0,2,3,1]],[[1,1,1,1],[2,3,1,0],[2,3,2,1],[0,2,2,2]],[[2,1,1,1],[2,3,1,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[3,3,1,0],[2,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,1,0],[3,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,1,0],[2,4,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,2,1],[2,1,2,1]],[[2,1,1,1],[2,3,1,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[3,3,1,0],[2,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,1,0],[3,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,1,0],[2,4,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,1,0],[2,3,2,2],[0,3,2,0]],[[1,1,1,1],[2,3,1,0],[2,3,2,2],[0,2,3,0]],[[2,1,1,1],[2,3,1,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[3,3,1,0],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,1,0],[3,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,1,0],[2,4,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,1,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[0,3,3,2],[3,3,0,1],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,3,0,1],[2,1,2,1]],[[1,2,1,0],[0,3,3,2],[2,4,0,1],[1,1,2,1]],[[1,2,1,0],[0,3,3,2],[3,3,0,1],[1,1,2,1]],[[1,2,1,0],[0,3,3,3],[2,3,0,1],[1,1,2,1]],[[1,2,1,0],[0,3,4,2],[2,3,0,1],[1,1,2,1]],[[1,2,1,0],[0,4,3,2],[2,3,0,1],[1,1,2,1]],[[1,3,1,0],[0,3,3,2],[2,3,0,1],[1,1,2,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,1],[3,3,1,0],[2,3,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,1,0],[3,3,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,4,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,3,0],[0,3,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,3,0],[0,2,3,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,1],[3,3,1,0],[2,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,1,0],[3,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,1,0],[2,4,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,3,0],[2,1,2,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[3,3,1,0],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,1,0],[3,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,1,0],[2,4,3,1],[0,1,2,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[3,3,1,0],[2,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,1,0],[3,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,1,0],[2,4,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,1,0],[2,3,3,1],[0,3,1,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[3,3,1,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,1,0],[3,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,1,0],[2,4,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,1,0],[2,3,3,1],[2,0,2,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[3,3,1,0],[2,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,1,0],[3,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,1,0],[2,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,1,0],[2,3,3,1],[2,1,1,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,1],[3,3,1,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,1,0],[3,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,1,0],[2,4,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,1,0],[2,3,3,1],[2,2,0,1]],[[2,2,1,0],[0,3,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,1],[0,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,3,0,1],[0,2,3,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,1],[0,3,2,1]],[[1,2,1,0],[0,3,3,2],[2,4,0,1],[0,2,2,1]],[[1,2,1,0],[0,3,3,2],[3,3,0,1],[0,2,2,1]],[[1,2,1,0],[0,3,3,3],[2,3,0,1],[0,2,2,1]],[[1,2,1,0],[0,3,4,2],[2,3,0,1],[0,2,2,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[3,3,1,0],[2,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,1,0],[3,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,1,0],[2,4,3,2],[0,1,1,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[3,3,1,0],[2,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,1,0],[3,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,1,0],[2,4,3,2],[0,1,2,0]],[[2,1,1,1],[2,3,1,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[3,3,1,0],[2,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,1,0],[3,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,1,0],[2,4,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,1,0],[2,3,3,2],[0,3,0,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[3,3,1,0],[2,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,1,0],[3,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,1,0],[2,4,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,1,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[0,4,3,2],[2,3,0,1],[0,2,2,1]],[[1,3,1,0],[0,3,3,2],[2,3,0,1],[0,2,2,1]],[[2,2,1,0],[0,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,0],[1,3,2,1]],[[1,2,1,0],[0,3,3,2],[2,3,0,0],[2,2,2,1]],[[1,2,1,0],[0,3,3,2],[3,3,0,0],[1,2,2,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[3,3,1,0],[2,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,1,0],[3,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,1,0],[2,4,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,1,0],[2,3,3,2],[2,0,1,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[3,3,1,0],[2,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,1,0],[3,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,1,0],[2,4,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,1,0],[2,3,3,2],[2,0,2,0]],[[2,1,1,1],[2,3,1,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[3,3,1,0],[2,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,1,0],[3,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,1,0],[2,4,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,1,0],[2,3,3,2],[2,1,0,1]],[[2,1,1,1],[2,3,1,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[3,3,1,0],[2,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,1,0],[3,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,1,0],[2,4,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,1,0],[2,3,3,2],[2,1,1,0]],[[2,1,1,1],[2,3,1,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[3,3,1,0],[2,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,3,1,0],[3,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,3,1,0],[2,4,3,2],[1,2,0,0]],[[1,1,1,1],[2,3,1,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[0,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,1,1,1],[2,3,1,1],[1,4,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,1,1],[1,3,2,0],[2,2,2,1]],[[1,1,1,1],[2,3,1,1],[1,3,2,0],[1,3,2,1]],[[1,1,1,1],[2,3,1,1],[1,3,2,0],[1,2,3,1]],[[1,1,1,1],[2,3,1,1],[1,4,2,1],[1,2,2,0]],[[1,1,1,1],[2,3,1,1],[1,3,2,1],[2,2,2,0]],[[1,1,1,1],[2,3,1,1],[1,3,2,1],[1,3,2,0]],[[1,2,1,0],[0,3,3,3],[2,2,3,2],[1,0,0,1]],[[1,2,1,0],[0,3,4,2],[2,2,3,2],[1,0,0,1]],[[1,2,1,0],[0,4,3,2],[2,2,3,2],[1,0,0,1]],[[1,3,1,0],[0,3,3,2],[2,2,3,2],[1,0,0,1]],[[2,2,1,0],[0,3,3,2],[2,2,3,2],[1,0,0,1]],[[1,1,1,1],[2,3,1,1],[1,4,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,1,1],[1,3,3,0],[2,2,1,1]],[[1,1,1,1],[2,3,1,1],[1,3,3,0],[1,3,1,1]],[[1,1,1,1],[2,3,1,1],[1,4,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,1,1],[1,3,3,1],[2,2,1,0]],[[1,1,1,1],[2,3,1,1],[1,3,3,1],[1,3,1,0]],[[2,1,1,1],[2,3,1,1],[2,2,2,0],[1,2,2,1]],[[1,1,1,1],[3,3,1,1],[2,2,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,1,1],[3,2,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,1,1],[2,2,2,0],[2,2,2,1]],[[1,1,1,1],[2,3,1,1],[2,2,2,0],[1,3,2,1]],[[1,1,1,1],[2,3,1,1],[2,2,2,0],[1,2,3,1]],[[2,1,1,1],[2,3,1,1],[2,2,2,1],[1,2,2,0]],[[1,1,1,1],[3,3,1,1],[2,2,2,1],[1,2,2,0]],[[1,1,1,1],[2,3,1,1],[3,2,2,1],[1,2,2,0]],[[1,1,1,1],[2,3,1,1],[2,2,2,1],[2,2,2,0]],[[1,1,1,1],[2,3,1,1],[2,2,2,1],[1,3,2,0]],[[2,1,1,1],[2,3,1,1],[2,2,3,0],[1,2,1,1]],[[1,1,1,1],[3,3,1,1],[2,2,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,1,1],[3,2,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,1,1],[2,2,3,0],[2,2,1,1]],[[1,1,1,1],[2,3,1,1],[2,2,3,0],[1,3,1,1]],[[2,1,1,1],[2,3,1,1],[2,2,3,1],[1,2,1,0]],[[1,1,1,1],[3,3,1,1],[2,2,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,1,1],[3,2,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,1,1],[2,2,3,1],[2,2,1,0]],[[1,1,1,1],[2,3,1,1],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,1,0],[0,3,3,3],[2,2,3,2],[0,1,0,1]],[[1,2,1,0],[0,3,4,2],[2,2,3,2],[0,1,0,1]],[[1,2,1,0],[0,4,3,2],[2,2,3,2],[0,1,0,1]],[[1,3,1,0],[0,3,3,2],[2,2,3,2],[0,1,0,1]],[[2,2,1,0],[0,3,3,2],[2,2,3,2],[0,1,0,1]],[[2,1,1,1],[2,3,1,1],[2,3,1,0],[1,2,2,1]],[[1,1,1,1],[3,3,1,1],[2,3,1,0],[1,2,2,1]],[[1,1,1,1],[2,3,1,1],[3,3,1,0],[1,2,2,1]],[[1,1,1,1],[2,3,1,1],[2,3,1,0],[2,2,2,1]],[[1,1,1,1],[2,3,1,1],[2,3,1,0],[1,3,2,1]],[[2,1,1,1],[2,3,1,1],[2,3,1,1],[1,2,2,0]],[[1,1,1,1],[3,3,1,1],[2,3,1,1],[1,2,2,0]],[[1,1,1,1],[2,3,1,1],[3,3,1,1],[1,2,2,0]],[[1,1,1,1],[2,3,1,1],[2,3,1,1],[2,2,2,0]],[[1,1,1,1],[2,3,1,1],[2,3,1,1],[1,3,2,0]],[[2,1,1,1],[2,3,1,1],[2,3,2,0],[0,2,2,1]],[[1,1,1,1],[3,3,1,1],[2,3,2,0],[0,2,2,1]],[[1,1,1,1],[2,3,1,1],[3,3,2,0],[0,2,2,1]],[[1,1,1,1],[2,3,1,1],[2,4,2,0],[0,2,2,1]],[[1,1,1,1],[2,3,1,1],[2,3,2,0],[0,3,2,1]],[[1,1,1,1],[2,3,1,1],[2,3,2,0],[0,2,3,1]],[[2,1,1,1],[2,3,1,1],[2,3,2,0],[1,1,2,1]],[[1,1,1,1],[3,3,1,1],[2,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,3,1,1],[3,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,3,1,1],[2,4,2,0],[1,1,2,1]],[[1,1,1,1],[2,3,1,1],[2,3,2,0],[2,1,2,1]],[[2,1,1,1],[2,3,1,1],[2,3,2,1],[0,2,2,0]],[[1,1,1,1],[3,3,1,1],[2,3,2,1],[0,2,2,0]],[[1,1,1,1],[2,3,1,1],[3,3,2,1],[0,2,2,0]],[[1,1,1,1],[2,3,1,1],[2,4,2,1],[0,2,2,0]],[[1,1,1,1],[2,3,1,1],[2,3,2,1],[0,3,2,0]],[[2,1,1,1],[2,3,1,1],[2,3,2,1],[1,1,2,0]],[[1,1,1,1],[3,3,1,1],[2,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,3,1,1],[3,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,3,1,1],[2,4,2,1],[1,1,2,0]],[[1,1,1,1],[2,3,1,1],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,1,0],[0,3,3,3],[2,2,3,1],[1,1,1,0]],[[1,2,1,0],[0,3,4,2],[2,2,3,1],[1,1,1,0]],[[1,2,1,0],[0,4,3,2],[2,2,3,1],[1,1,1,0]],[[1,3,1,0],[0,3,3,2],[2,2,3,1],[1,1,1,0]],[[2,2,1,0],[0,3,3,2],[2,2,3,1],[1,1,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,4,1],[1,1,0,1]],[[1,2,1,0],[0,3,3,3],[2,2,3,1],[1,1,0,1]],[[1,2,1,0],[0,3,4,2],[2,2,3,1],[1,1,0,1]],[[1,2,1,0],[0,4,3,2],[2,2,3,1],[1,1,0,1]],[[1,3,1,0],[0,3,3,2],[2,2,3,1],[1,1,0,1]],[[2,2,1,0],[0,3,3,2],[2,2,3,1],[1,1,0,1]],[[2,1,1,1],[2,3,1,1],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[3,3,1,1],[2,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,1,1],[3,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,1,1],[2,4,3,0],[0,1,2,1]],[[2,1,1,1],[2,3,1,1],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[3,3,1,1],[2,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,1,1],[3,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,1,1],[2,4,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,1,1],[2,3,3,0],[0,3,1,1]],[[2,1,1,1],[2,3,1,1],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[3,3,1,1],[2,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,1,1],[3,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,1,1],[2,4,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,1,1],[2,3,3,0],[2,0,2,1]],[[2,1,1,1],[2,3,1,1],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[3,3,1,1],[2,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,1,1],[3,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,1,1],[2,4,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,1,1],[2,3,3,0],[2,1,1,1]],[[2,1,1,1],[2,3,1,1],[2,3,3,0],[1,2,0,1]],[[1,1,1,1],[3,3,1,1],[2,3,3,0],[1,2,0,1]],[[1,1,1,1],[2,3,1,1],[3,3,3,0],[1,2,0,1]],[[1,1,1,1],[2,3,1,1],[2,4,3,0],[1,2,0,1]],[[1,1,1,1],[2,3,1,1],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[0,3,3,2],[2,2,3,1],[1,0,3,0]],[[1,2,1,0],[0,3,3,2],[2,2,4,1],[1,0,2,0]],[[1,2,1,0],[0,3,3,3],[2,2,3,1],[1,0,2,0]],[[1,2,1,0],[0,3,4,2],[2,2,3,1],[1,0,2,0]],[[1,2,1,0],[0,4,3,2],[2,2,3,1],[1,0,2,0]],[[1,3,1,0],[0,3,3,2],[2,2,3,1],[1,0,2,0]],[[2,2,1,0],[0,3,3,2],[2,2,3,1],[1,0,2,0]],[[2,1,1,1],[2,3,1,1],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[3,3,1,1],[2,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,1,1],[3,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,1,1],[2,4,3,1],[0,1,2,0]],[[2,1,1,1],[2,3,1,1],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[3,3,1,1],[2,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,1,1],[3,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,1,1],[2,4,3,1],[0,2,0,1]],[[2,1,1,1],[2,3,1,1],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[3,3,1,1],[2,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,1,1],[3,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,1,1],[2,4,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,1,1],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,4,1],[1,0,1,1]],[[1,2,1,0],[0,3,3,3],[2,2,3,1],[1,0,1,1]],[[1,2,1,0],[0,3,4,2],[2,2,3,1],[1,0,1,1]],[[1,2,1,0],[0,4,3,2],[2,2,3,1],[1,0,1,1]],[[1,3,1,0],[0,3,3,2],[2,2,3,1],[1,0,1,1]],[[2,2,1,0],[0,3,3,2],[2,2,3,1],[1,0,1,1]],[[2,1,1,1],[2,3,1,1],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[3,3,1,1],[2,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,1,1],[3,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,1,1],[2,4,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,1,1],[2,3,3,1],[2,0,2,0]],[[2,1,1,1],[2,3,1,1],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[3,3,1,1],[2,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,1,1],[3,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,1,1],[2,4,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,1,1],[2,3,3,1],[2,1,0,1]],[[2,1,1,1],[2,3,1,1],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[3,3,1,1],[2,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,1,1],[3,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,1,1],[2,4,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,1,1],[2,3,3,1],[2,1,1,0]],[[2,1,1,1],[2,3,1,1],[2,3,3,1],[1,2,0,0]],[[1,1,1,1],[3,3,1,1],[2,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,3,1,1],[3,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,3,1,1],[2,4,3,1],[1,2,0,0]],[[1,1,1,1],[2,3,1,1],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[0,3,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,1,0],[0,3,3,3],[2,2,3,1],[0,2,1,0]],[[1,2,1,0],[0,3,4,2],[2,2,3,1],[0,2,1,0]],[[1,2,1,0],[0,4,3,2],[2,2,3,1],[0,2,1,0]],[[1,3,1,0],[0,3,3,2],[2,2,3,1],[0,2,1,0]],[[2,2,1,0],[0,3,3,2],[2,2,3,1],[0,2,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,4,1],[0,2,0,1]],[[1,2,1,0],[0,3,3,3],[2,2,3,1],[0,2,0,1]],[[1,2,1,0],[0,3,4,2],[2,2,3,1],[0,2,0,1]],[[1,2,1,0],[0,4,3,2],[2,2,3,1],[0,2,0,1]],[[1,3,1,0],[0,3,3,2],[2,2,3,1],[0,2,0,1]],[[2,2,1,0],[0,3,3,2],[2,2,3,1],[0,2,0,1]],[[1,2,1,0],[0,3,3,2],[2,2,3,1],[0,1,3,0]],[[1,2,1,0],[0,3,3,2],[2,2,4,1],[0,1,2,0]],[[1,2,1,0],[0,3,3,3],[2,2,3,1],[0,1,2,0]],[[1,2,1,0],[0,3,4,2],[2,2,3,1],[0,1,2,0]],[[1,2,1,0],[0,4,3,2],[2,2,3,1],[0,1,2,0]],[[1,3,1,0],[0,3,3,2],[2,2,3,1],[0,1,2,0]],[[2,2,1,0],[0,3,3,2],[2,2,3,1],[0,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,2,4,1],[0,1,1,1]],[[1,2,1,0],[0,3,3,3],[2,2,3,1],[0,1,1,1]],[[1,2,1,0],[0,3,4,2],[2,2,3,1],[0,1,1,1]],[[1,2,1,0],[0,4,3,2],[2,2,3,1],[0,1,1,1]],[[1,3,1,0],[0,3,3,2],[2,2,3,1],[0,1,1,1]],[[2,2,1,0],[0,3,3,2],[2,2,3,1],[0,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,2,4,1],[0,0,2,1]],[[1,2,1,0],[0,3,3,3],[2,2,3,1],[0,0,2,1]],[[1,2,1,0],[0,3,4,2],[2,2,3,1],[0,0,2,1]],[[1,2,1,0],[0,4,3,2],[2,2,3,1],[0,0,2,1]],[[1,3,1,0],[0,3,3,2],[2,2,3,1],[0,0,2,1]],[[2,2,1,0],[0,3,3,2],[2,2,3,1],[0,0,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,3,0],[2,2,1,0]],[[1,2,1,0],[0,3,3,2],[3,2,3,0],[1,2,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,4,0],[1,1,1,1]],[[1,2,1,0],[0,3,3,3],[2,2,3,0],[1,1,1,1]],[[1,2,1,0],[0,3,4,2],[2,2,3,0],[1,1,1,1]],[[1,2,1,0],[0,4,3,2],[2,2,3,0],[1,1,1,1]],[[1,3,1,0],[0,3,3,2],[2,2,3,0],[1,1,1,1]],[[2,2,1,0],[0,3,3,2],[2,2,3,0],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,2,3,0],[1,0,2,2]],[[1,2,1,0],[0,3,3,2],[2,2,3,0],[1,0,3,1]],[[1,2,1,0],[0,3,3,2],[2,2,4,0],[1,0,2,1]],[[1,2,1,0],[0,3,3,3],[2,2,3,0],[1,0,2,1]],[[1,2,1,0],[0,3,4,2],[2,2,3,0],[1,0,2,1]],[[1,2,1,0],[0,4,3,2],[2,2,3,0],[1,0,2,1]],[[1,3,1,0],[0,3,3,2],[2,2,3,0],[1,0,2,1]],[[2,2,1,0],[0,3,3,2],[2,2,3,0],[1,0,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,4,0],[0,2,1,1]],[[1,2,1,0],[0,3,3,3],[2,2,3,0],[0,2,1,1]],[[1,2,1,0],[0,3,4,2],[2,2,3,0],[0,2,1,1]],[[1,2,1,0],[0,4,3,2],[2,2,3,0],[0,2,1,1]],[[1,3,1,0],[0,3,3,2],[2,2,3,0],[0,2,1,1]],[[2,2,1,0],[0,3,3,2],[2,2,3,0],[0,2,1,1]],[[1,2,1,0],[0,3,3,2],[2,2,3,0],[0,1,2,2]],[[1,2,1,0],[0,3,3,2],[2,2,3,0],[0,1,3,1]],[[1,2,1,0],[0,3,3,2],[2,2,4,0],[0,1,2,1]],[[1,2,1,0],[0,3,3,3],[2,2,3,0],[0,1,2,1]],[[2,1,1,1],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,2],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[3,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,4,1,2],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,3],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,2],[0,4,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,2],[0,3,0,3],[1,2,2,1]],[[1,1,1,1],[2,3,1,2],[0,3,0,2],[2,2,2,1]],[[1,1,1,1],[2,3,1,2],[0,3,0,2],[1,3,2,1]],[[1,1,1,1],[2,3,1,2],[0,3,0,2],[1,2,3,1]],[[1,1,1,1],[2,3,1,2],[0,3,0,2],[1,2,2,2]],[[1,2,1,0],[0,3,4,2],[2,2,3,0],[0,1,2,1]],[[1,2,1,0],[0,4,3,2],[2,2,3,0],[0,1,2,1]],[[1,3,1,0],[0,3,3,2],[2,2,3,0],[0,1,2,1]],[[2,2,1,0],[0,3,3,2],[2,2,3,0],[0,1,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,1,0],[0,3,3,3],[2,2,2,2],[1,1,1,0]],[[1,2,1,0],[0,3,4,2],[2,2,2,2],[1,1,1,0]],[[1,2,1,0],[0,4,3,2],[2,2,2,2],[1,1,1,0]],[[1,3,1,0],[0,3,3,2],[2,2,2,2],[1,1,1,0]],[[2,2,1,0],[0,3,3,2],[2,2,2,2],[1,1,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,2,2],[1,1,0,2]],[[1,2,1,0],[0,3,3,2],[2,2,2,3],[1,1,0,1]],[[1,2,1,0],[0,3,3,3],[2,2,2,2],[1,1,0,1]],[[1,2,1,0],[0,3,4,2],[2,2,2,2],[1,1,0,1]],[[1,2,1,0],[0,4,3,2],[2,2,2,2],[1,1,0,1]],[[1,3,1,0],[0,3,3,2],[2,2,2,2],[1,1,0,1]],[[2,2,1,0],[0,3,3,2],[2,2,2,2],[1,1,0,1]],[[1,2,1,0],[0,3,3,2],[2,2,2,3],[1,0,2,0]],[[1,2,1,0],[0,3,3,3],[2,2,2,2],[1,0,2,0]],[[1,2,1,0],[0,3,4,2],[2,2,2,2],[1,0,2,0]],[[1,2,1,0],[0,4,3,2],[2,2,2,2],[1,0,2,0]],[[1,3,1,0],[0,3,3,2],[2,2,2,2],[1,0,2,0]],[[2,2,1,0],[0,3,3,2],[2,2,2,2],[1,0,2,0]],[[1,2,1,0],[0,3,3,2],[2,2,2,2],[1,0,1,2]],[[1,2,1,0],[0,3,3,2],[2,2,2,3],[1,0,1,1]],[[1,2,1,0],[0,3,3,3],[2,2,2,2],[1,0,1,1]],[[1,2,1,0],[0,3,4,2],[2,2,2,2],[1,0,1,1]],[[1,2,1,0],[0,4,3,2],[2,2,2,2],[1,0,1,1]],[[1,3,1,0],[0,3,3,2],[2,2,2,2],[1,0,1,1]],[[2,2,1,0],[0,3,3,2],[2,2,2,2],[1,0,1,1]],[[1,2,1,0],[0,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,1,0],[0,3,3,3],[2,2,2,2],[0,2,1,0]],[[1,2,1,0],[0,3,4,2],[2,2,2,2],[0,2,1,0]],[[1,2,1,0],[0,4,3,2],[2,2,2,2],[0,2,1,0]],[[1,3,1,0],[0,3,3,2],[2,2,2,2],[0,2,1,0]],[[2,2,1,0],[0,3,3,2],[2,2,2,2],[0,2,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,2,2],[0,2,0,2]],[[1,2,1,0],[0,3,3,2],[2,2,2,3],[0,2,0,1]],[[1,2,1,0],[0,3,3,3],[2,2,2,2],[0,2,0,1]],[[1,2,1,0],[0,3,4,2],[2,2,2,2],[0,2,0,1]],[[1,2,1,0],[0,4,3,2],[2,2,2,2],[0,2,0,1]],[[1,3,1,0],[0,3,3,2],[2,2,2,2],[0,2,0,1]],[[2,2,1,0],[0,3,3,2],[2,2,2,2],[0,2,0,1]],[[2,1,1,1],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,2],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[3,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,4,1,2],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,1,3],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,1,2],[1,4,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,1,2],[1,3,0,3],[0,2,2,1]],[[1,1,1,1],[2,3,1,2],[1,3,0,2],[0,3,2,1]],[[1,1,1,1],[2,3,1,2],[1,3,0,2],[0,2,3,1]],[[1,1,1,1],[2,3,1,2],[1,3,0,2],[0,2,2,2]],[[2,1,1,1],[2,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,1,1,1],[3,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,4,1,2],[1,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,1,2],[1,4,0,2],[1,1,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,2,3],[0,1,2,0]],[[1,2,1,0],[0,3,3,3],[2,2,2,2],[0,1,2,0]],[[1,2,1,0],[0,3,4,2],[2,2,2,2],[0,1,2,0]],[[1,2,1,0],[0,4,3,2],[2,2,2,2],[0,1,2,0]],[[1,3,1,0],[0,3,3,2],[2,2,2,2],[0,1,2,0]],[[2,2,1,0],[0,3,3,2],[2,2,2,2],[0,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,2,2,2],[0,1,1,2]],[[1,2,1,0],[0,3,3,2],[2,2,2,3],[0,1,1,1]],[[1,2,1,0],[0,3,3,3],[2,2,2,2],[0,1,1,1]],[[1,2,1,0],[0,3,4,2],[2,2,2,2],[0,1,1,1]],[[1,2,1,0],[0,4,3,2],[2,2,2,2],[0,1,1,1]],[[1,3,1,0],[0,3,3,2],[2,2,2,2],[0,1,1,1]],[[2,2,1,0],[0,3,3,2],[2,2,2,2],[0,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,2,2,2],[0,0,2,2]],[[1,2,1,0],[0,3,3,2],[2,2,2,3],[0,0,2,1]],[[1,2,1,0],[0,3,3,3],[2,2,2,2],[0,0,2,1]],[[1,2,1,0],[0,3,4,2],[2,2,2,2],[0,0,2,1]],[[1,2,1,0],[0,4,3,2],[2,2,2,2],[0,0,2,1]],[[1,3,1,0],[0,3,3,2],[2,2,2,2],[0,0,2,1]],[[2,2,1,0],[0,3,3,2],[2,2,2,2],[0,0,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,2,1],[2,2,1,0]],[[1,2,1,0],[0,3,3,2],[3,2,2,1],[1,2,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,2,1],[1,3,0,1]],[[1,2,1,0],[0,3,3,2],[2,2,2,1],[2,2,0,1]],[[1,2,1,0],[0,3,3,2],[3,2,2,1],[1,2,0,1]],[[1,2,1,0],[0,3,3,2],[2,2,2,0],[1,3,1,1]],[[1,2,1,0],[0,3,3,2],[2,2,2,0],[2,2,1,1]],[[1,2,1,0],[0,3,3,2],[3,2,2,0],[1,2,1,1]],[[1,2,1,0],[0,3,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,1,2],[2,2,1,0]],[[1,2,1,0],[0,3,3,2],[3,2,1,2],[1,2,1,0]],[[1,2,1,0],[0,3,3,2],[2,2,1,2],[1,3,0,1]],[[1,2,1,0],[0,3,3,2],[2,2,1,2],[2,2,0,1]],[[1,2,1,0],[0,3,3,2],[3,2,1,2],[1,2,0,1]],[[1,2,1,0],[0,3,3,2],[2,2,1,2],[1,0,2,2]],[[1,2,1,0],[0,3,3,2],[2,2,1,2],[1,0,3,1]],[[1,2,1,0],[0,3,3,2],[2,2,1,3],[1,0,2,1]],[[1,2,1,0],[0,3,3,3],[2,2,1,2],[1,0,2,1]],[[1,2,1,0],[0,3,4,2],[2,2,1,2],[1,0,2,1]],[[1,2,1,0],[0,4,3,2],[2,2,1,2],[1,0,2,1]],[[1,3,1,0],[0,3,3,2],[2,2,1,2],[1,0,2,1]],[[2,2,1,0],[0,3,3,2],[2,2,1,2],[1,0,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,1,2],[0,1,2,2]],[[1,2,1,0],[0,3,3,2],[2,2,1,2],[0,1,3,1]],[[1,2,1,0],[0,3,3,2],[2,2,1,3],[0,1,2,1]],[[1,2,1,0],[0,3,3,3],[2,2,1,2],[0,1,2,1]],[[1,2,1,0],[0,3,4,2],[2,2,1,2],[0,1,2,1]],[[1,2,1,0],[0,4,3,2],[2,2,1,2],[0,1,2,1]],[[1,3,1,0],[0,3,3,2],[2,2,1,2],[0,1,2,1]],[[2,2,1,0],[0,3,3,2],[2,2,1,2],[0,1,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,1,1],[1,2,3,0]],[[1,2,1,0],[0,3,3,2],[2,2,1,1],[1,3,2,0]],[[1,2,1,0],[0,3,3,2],[2,2,1,1],[2,2,2,0]],[[1,2,1,0],[0,3,3,2],[3,2,1,1],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,2,1,0],[1,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,2,1,0],[1,2,3,1]],[[1,2,1,0],[0,3,3,2],[2,2,1,0],[1,3,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,1,0],[2,2,2,1]],[[1,2,1,0],[0,3,3,2],[3,2,1,0],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,0,2],[1,2,3,0]],[[1,2,1,0],[0,3,3,2],[2,2,0,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,2],[2,2,0,2],[2,2,2,0]],[[1,2,1,0],[0,3,3,2],[3,2,0,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,2,0,2],[1,3,1,1]],[[1,2,1,0],[0,3,3,2],[2,2,0,2],[2,2,1,1]],[[1,2,1,0],[0,3,3,2],[3,2,0,2],[1,2,1,1]],[[1,2,1,0],[0,3,3,2],[2,2,0,2],[0,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,2,0,2],[0,2,3,1]],[[1,2,1,0],[0,3,3,2],[2,2,0,2],[0,3,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,0,3],[0,2,2,1]],[[1,2,1,0],[0,3,3,3],[2,2,0,2],[0,2,2,1]],[[1,2,1,0],[0,3,4,2],[2,2,0,2],[0,2,2,1]],[[1,2,1,0],[0,4,3,2],[2,2,0,2],[0,2,2,1]],[[1,3,1,0],[0,3,3,2],[2,2,0,2],[0,2,2,1]],[[2,2,1,0],[0,3,3,2],[2,2,0,2],[0,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,0,1],[1,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,2,0,1],[1,2,3,1]],[[1,2,1,0],[0,3,3,2],[2,2,0,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,2],[2,2,0,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,2],[3,2,0,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,1,0],[0,3,3,3],[2,1,3,2],[1,0,2,0]],[[1,2,1,0],[0,3,4,2],[2,1,3,2],[1,0,2,0]],[[1,2,1,0],[0,3,3,2],[2,1,3,2],[1,0,1,2]],[[1,2,1,0],[0,3,3,2],[2,1,3,3],[1,0,1,1]],[[1,2,1,0],[0,3,3,3],[2,1,3,2],[1,0,1,1]],[[1,2,1,0],[0,3,4,2],[2,1,3,2],[1,0,1,1]],[[1,2,1,0],[0,3,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,1,0],[0,3,3,3],[2,1,3,2],[0,1,2,0]],[[1,2,1,0],[0,3,4,2],[2,1,3,2],[0,1,2,0]],[[1,2,1,0],[0,3,3,2],[2,1,3,2],[0,1,1,2]],[[1,2,1,0],[0,3,3,2],[2,1,3,3],[0,1,1,1]],[[1,2,1,0],[0,3,3,3],[2,1,3,2],[0,1,1,1]],[[1,2,1,0],[0,3,4,2],[2,1,3,2],[0,1,1,1]],[[1,2,1,0],[0,3,3,2],[2,1,3,2],[0,0,2,2]],[[1,2,1,0],[0,3,3,2],[2,1,3,3],[0,0,2,1]],[[1,2,1,0],[0,3,3,3],[2,1,3,2],[0,0,2,1]],[[1,2,1,0],[0,3,4,2],[2,1,3,2],[0,0,2,1]],[[1,2,1,0],[0,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,1,0],[0,3,3,2],[2,1,3,1],[0,3,2,0]],[[1,2,1,0],[0,3,3,2],[2,1,4,1],[0,2,2,0]],[[1,2,1,0],[0,3,3,3],[2,1,3,1],[0,2,2,0]],[[1,2,1,0],[0,3,4,2],[2,1,3,1],[0,2,2,0]],[[1,2,1,0],[0,4,3,2],[2,1,3,1],[0,2,2,0]],[[1,3,1,0],[0,3,3,2],[2,1,3,1],[0,2,2,0]],[[2,2,1,0],[0,3,3,2],[2,1,3,1],[0,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,1,4,1],[0,2,1,1]],[[1,2,1,0],[0,3,3,3],[2,1,3,1],[0,2,1,1]],[[1,2,1,0],[0,3,4,2],[2,1,3,1],[0,2,1,1]],[[1,2,1,0],[0,4,3,2],[2,1,3,1],[0,2,1,1]],[[1,3,1,0],[0,3,3,2],[2,1,3,1],[0,2,1,1]],[[2,2,1,0],[0,3,3,2],[2,1,3,1],[0,2,1,1]],[[2,1,1,1],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,2],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[3,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,4,1,2],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,3],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,2],[3,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,2],[2,0,1,3],[1,2,2,1]],[[1,1,1,1],[2,3,1,2],[2,0,1,2],[2,2,2,1]],[[1,1,1,1],[2,3,1,2],[2,0,1,2],[1,3,2,1]],[[1,1,1,1],[2,3,1,2],[2,0,1,2],[1,2,3,1]],[[1,1,1,1],[2,3,1,2],[2,0,1,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,1,3,0],[0,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,1,3,0],[0,2,3,1]],[[1,2,1,0],[0,3,3,2],[2,1,3,0],[0,3,2,1]],[[1,2,1,0],[0,3,3,2],[2,1,4,0],[0,2,2,1]],[[1,2,1,0],[0,3,3,3],[2,1,3,0],[0,2,2,1]],[[1,2,1,0],[0,3,4,2],[2,1,3,0],[0,2,2,1]],[[2,1,1,1],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,2],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[3,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,4,1,2],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,3],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,2],[3,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,1,2],[2,1,0,3],[1,2,2,1]],[[1,1,1,1],[2,3,1,2],[2,1,0,2],[2,2,2,1]],[[1,1,1,1],[2,3,1,2],[2,1,0,2],[1,3,2,1]],[[1,1,1,1],[2,3,1,2],[2,1,0,2],[1,2,3,1]],[[1,1,1,1],[2,3,1,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,0],[0,4,3,2],[2,1,3,0],[0,2,2,1]],[[1,3,1,0],[0,3,3,2],[2,1,3,0],[0,2,2,1]],[[2,2,1,0],[0,3,3,2],[2,1,3,0],[0,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,1,0],[0,3,3,3],[2,1,2,2],[0,2,2,0]],[[1,2,1,0],[0,3,4,2],[2,1,2,2],[0,2,2,0]],[[1,2,1,0],[0,4,3,2],[2,1,2,2],[0,2,2,0]],[[1,3,1,0],[0,3,3,2],[2,1,2,2],[0,2,2,0]],[[2,2,1,0],[0,3,3,2],[2,1,2,2],[0,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,1,2,2],[0,2,1,2]],[[1,2,1,0],[0,3,3,2],[2,1,2,3],[0,2,1,1]],[[1,2,1,0],[0,3,3,3],[2,1,2,2],[0,2,1,1]],[[1,2,1,0],[0,3,4,2],[2,1,2,2],[0,2,1,1]],[[1,2,1,0],[0,4,3,2],[2,1,2,2],[0,2,1,1]],[[1,3,1,0],[0,3,3,2],[2,1,2,2],[0,2,1,1]],[[2,2,1,0],[0,3,3,2],[2,1,2,2],[0,2,1,1]],[[1,2,1,0],[0,3,3,2],[2,1,1,2],[0,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,1,1,2],[0,2,3,1]],[[1,2,1,0],[0,3,3,2],[2,1,1,2],[0,3,2,1]],[[1,2,1,0],[0,3,3,2],[2,1,1,3],[0,2,2,1]],[[1,2,1,0],[0,3,3,3],[2,1,1,2],[0,2,2,1]],[[2,1,1,1],[2,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,1,1,1],[3,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,1,1,1],[2,4,1,2],[2,2,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,1,2],[3,2,0,2],[0,2,2,1]],[[2,1,1,1],[2,3,1,2],[2,2,0,2],[1,1,2,1]],[[1,1,1,1],[3,3,1,2],[2,2,0,2],[1,1,2,1]],[[1,1,1,1],[2,4,1,2],[2,2,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,1,2],[3,2,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,1,2],[2,2,0,2],[2,1,2,1]],[[1,2,1,0],[0,3,4,2],[2,1,1,2],[0,2,2,1]],[[1,2,1,0],[0,4,3,2],[2,1,1,2],[0,2,2,1]],[[1,3,1,0],[0,3,3,2],[2,1,1,2],[0,2,2,1]],[[2,2,1,0],[0,3,3,2],[2,1,1,2],[0,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,1,0,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,2],[2,1,0,2],[1,3,2,1]],[[1,2,1,0],[0,3,3,2],[2,1,0,2],[2,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,1,0,3],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[3,1,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,3,3],[2,1,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,4,2],[2,1,0,2],[1,2,2,1]],[[1,2,1,0],[0,4,3,2],[2,1,0,2],[1,2,2,1]],[[1,3,1,0],[0,3,3,2],[2,1,0,2],[1,2,2,1]],[[2,2,1,0],[0,3,3,2],[2,1,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,0,3,3],[0,2,2,0]],[[1,2,1,0],[0,3,3,3],[2,0,3,2],[0,2,2,0]],[[1,2,1,0],[0,3,4,2],[2,0,3,2],[0,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,0,3,2],[0,2,1,2]],[[1,2,1,0],[0,3,3,2],[2,0,3,3],[0,2,1,1]],[[1,2,1,0],[0,3,3,3],[2,0,3,2],[0,2,1,1]],[[1,2,1,0],[0,3,4,2],[2,0,3,2],[0,2,1,1]],[[1,2,1,0],[0,3,3,2],[2,0,3,2],[0,1,2,2]],[[1,2,1,0],[0,3,3,2],[2,0,3,3],[0,1,2,1]],[[1,2,1,0],[0,3,3,3],[2,0,3,2],[0,1,2,1]],[[1,2,1,0],[0,3,4,2],[2,0,3,2],[0,1,2,1]],[[1,2,1,0],[0,3,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,1,0],[0,3,3,2],[2,0,3,1],[1,3,2,0]],[[1,2,1,0],[0,3,3,2],[2,0,3,1],[2,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,0,4,1],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[3,0,3,1],[1,2,2,0]],[[1,2,1,0],[0,3,3,3],[2,0,3,1],[1,2,2,0]],[[1,2,1,0],[0,3,4,2],[2,0,3,1],[1,2,2,0]],[[1,2,1,0],[0,4,3,2],[2,0,3,1],[1,2,2,0]],[[1,3,1,0],[0,3,3,2],[2,0,3,1],[1,2,2,0]],[[2,2,1,0],[0,3,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,0,4,1],[1,2,1,1]],[[1,2,1,0],[0,3,3,3],[2,0,3,1],[1,2,1,1]],[[1,2,1,0],[0,3,4,2],[2,0,3,1],[1,2,1,1]],[[1,2,1,0],[0,4,3,2],[2,0,3,1],[1,2,1,1]],[[1,3,1,0],[0,3,3,2],[2,0,3,1],[1,2,1,1]],[[2,2,1,0],[0,3,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,1,0],[0,3,3,2],[2,0,3,0],[1,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,0,3,0],[1,2,3,1]],[[1,2,1,0],[0,3,3,2],[2,0,3,0],[1,3,2,1]],[[1,2,1,0],[0,3,3,2],[2,0,3,0],[2,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,0,4,0],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[3,0,3,0],[1,2,2,1]],[[1,2,1,0],[0,3,3,3],[2,0,3,0],[1,2,2,1]],[[1,2,1,0],[0,3,4,2],[2,0,3,0],[1,2,2,1]],[[1,2,1,0],[0,4,3,2],[2,0,3,0],[1,2,2,1]],[[1,3,1,0],[0,3,3,2],[2,0,3,0],[1,2,2,1]],[[2,2,1,0],[0,3,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,0,2,3],[1,2,2,0]],[[1,2,1,0],[0,3,3,3],[2,0,2,2],[1,2,2,0]],[[1,2,1,0],[0,3,4,2],[2,0,2,2],[1,2,2,0]],[[1,2,1,0],[0,4,3,2],[2,0,2,2],[1,2,2,0]],[[1,3,1,0],[0,3,3,2],[2,0,2,2],[1,2,2,0]],[[2,2,1,0],[0,3,3,2],[2,0,2,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[2,0,2,2],[1,2,1,2]],[[1,2,1,0],[0,3,3,2],[2,0,2,3],[1,2,1,1]],[[1,2,1,0],[0,3,3,3],[2,0,2,2],[1,2,1,1]],[[1,2,1,0],[0,3,4,2],[2,0,2,2],[1,2,1,1]],[[1,2,1,0],[0,4,3,2],[2,0,2,2],[1,2,1,1]],[[1,3,1,0],[0,3,3,2],[2,0,2,2],[1,2,1,1]],[[2,2,1,0],[0,3,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,1,0],[0,3,3,2],[2,0,2,2],[0,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,0,2,2],[0,2,3,1]],[[1,2,1,0],[0,3,3,2],[2,0,2,3],[0,2,2,1]],[[1,2,1,0],[0,3,3,3],[2,0,2,2],[0,2,2,1]],[[1,2,1,0],[0,3,4,2],[2,0,2,2],[0,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,0,1,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,2],[2,0,1,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,2],[2,0,1,2],[1,3,2,1]],[[1,2,1,0],[0,3,3,2],[2,0,1,2],[2,2,2,1]],[[1,2,1,0],[0,3,3,2],[2,0,1,3],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[3,0,1,2],[1,2,2,1]],[[1,2,1,0],[0,3,3,3],[2,0,1,2],[1,2,2,1]],[[1,2,1,0],[0,3,4,2],[2,0,1,2],[1,2,2,1]],[[1,2,1,0],[0,4,3,2],[2,0,1,2],[1,2,2,1]],[[1,3,1,0],[0,3,3,2],[2,0,1,2],[1,2,2,1]],[[2,2,1,0],[0,3,3,2],[2,0,1,2],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,2,1,0],[0,3,3,3],[1,3,3,1],[1,2,0,0]],[[1,2,1,0],[0,3,4,2],[1,3,3,1],[1,2,0,0]],[[1,2,1,0],[0,4,3,2],[1,3,3,1],[1,2,0,0]],[[1,3,1,0],[0,3,3,2],[1,3,3,1],[1,2,0,0]],[[2,2,1,0],[0,3,3,2],[1,3,3,1],[1,2,0,0]],[[1,2,1,0],[0,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,1,0],[0,3,3,2],[1,3,3,0],[2,2,1,0]],[[1,2,1,0],[0,3,3,2],[1,4,3,0],[1,2,1,0]],[[1,2,1,0],[0,3,4,2],[1,3,3,0],[1,2,1,0]],[[1,2,1,0],[0,4,3,2],[1,3,3,0],[1,2,1,0]],[[1,3,1,0],[0,3,3,2],[1,3,3,0],[1,2,1,0]],[[2,2,1,0],[0,3,3,2],[1,3,3,0],[1,2,1,0]],[[1,2,1,0],[0,3,3,2],[1,4,3,0],[1,1,2,0]],[[1,2,1,0],[0,3,4,2],[1,3,3,0],[1,1,2,0]],[[1,2,1,0],[0,4,3,2],[1,3,3,0],[1,1,2,0]],[[1,3,1,0],[0,3,3,2],[1,3,3,0],[1,1,2,0]],[[2,2,1,0],[0,3,3,2],[1,3,3,0],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,1,0],[0,3,3,2],[1,3,2,1],[2,2,1,0]],[[1,2,1,0],[0,3,3,2],[1,4,2,1],[1,2,1,0]],[[1,2,1,0],[0,3,3,3],[1,3,2,1],[1,2,1,0]],[[1,2,1,0],[0,3,4,2],[1,3,2,1],[1,2,1,0]],[[1,2,1,0],[0,4,3,2],[1,3,2,1],[1,2,1,0]],[[1,3,1,0],[0,3,3,2],[1,3,2,1],[1,2,1,0]],[[2,2,1,0],[0,3,3,2],[1,3,2,1],[1,2,1,0]],[[1,2,1,0],[0,3,3,2],[1,3,2,1],[1,3,0,1]],[[1,2,1,0],[0,3,3,2],[1,3,2,1],[2,2,0,1]],[[1,2,1,0],[0,3,3,2],[1,4,2,1],[1,2,0,1]],[[1,2,1,0],[0,3,3,3],[1,3,2,1],[1,2,0,1]],[[1,2,1,0],[0,3,4,2],[1,3,2,1],[1,2,0,1]],[[1,2,1,0],[0,4,3,2],[1,3,2,1],[1,2,0,1]],[[1,3,1,0],[0,3,3,2],[1,3,2,1],[1,2,0,1]],[[2,2,1,0],[0,3,3,2],[1,3,2,1],[1,2,0,1]],[[1,2,1,0],[0,3,3,2],[1,4,2,1],[1,1,2,0]],[[1,2,1,0],[0,3,3,3],[1,3,2,1],[1,1,2,0]],[[1,2,1,0],[0,3,4,2],[1,3,2,1],[1,1,2,0]],[[1,2,1,0],[0,4,3,2],[1,3,2,1],[1,1,2,0]],[[1,3,1,0],[0,3,3,2],[1,3,2,1],[1,1,2,0]],[[2,2,1,0],[0,3,3,2],[1,3,2,1],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[1,4,2,1],[1,1,1,1]],[[1,2,1,0],[0,3,3,3],[1,3,2,1],[1,1,1,1]],[[1,2,1,0],[0,3,4,2],[1,3,2,1],[1,1,1,1]],[[1,2,1,0],[0,4,3,2],[1,3,2,1],[1,1,1,1]],[[1,3,1,0],[0,3,3,2],[1,3,2,1],[1,1,1,1]],[[2,2,1,0],[0,3,3,2],[1,3,2,1],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[1,3,2,0],[1,3,1,1]],[[1,2,1,0],[0,3,3,2],[1,3,2,0],[2,2,1,1]],[[1,2,1,0],[0,3,3,2],[1,4,2,0],[1,2,1,1]],[[1,2,1,0],[0,3,3,3],[1,3,2,0],[1,2,1,1]],[[1,2,1,0],[0,3,4,2],[1,3,2,0],[1,2,1,1]],[[1,2,1,0],[0,4,3,2],[1,3,2,0],[1,2,1,1]],[[1,3,1,0],[0,3,3,2],[1,3,2,0],[1,2,1,1]],[[2,2,1,0],[0,3,3,2],[1,3,2,0],[1,2,1,1]],[[1,2,1,0],[0,3,3,2],[1,4,2,0],[1,1,2,1]],[[1,2,1,0],[0,3,3,3],[1,3,2,0],[1,1,2,1]],[[1,2,1,0],[0,3,4,2],[1,3,2,0],[1,1,2,1]],[[1,2,1,0],[0,4,3,2],[1,3,2,0],[1,1,2,1]],[[1,3,1,0],[0,3,3,2],[1,3,2,0],[1,1,2,1]],[[2,2,1,0],[0,3,3,2],[1,3,2,0],[1,1,2,1]],[[1,2,1,0],[0,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,1,0],[0,3,3,2],[1,3,1,2],[2,2,1,0]],[[1,2,1,0],[0,3,3,2],[1,3,1,3],[1,2,1,0]],[[1,2,1,0],[0,3,3,2],[1,4,1,2],[1,2,1,0]],[[1,2,1,0],[0,3,3,3],[1,3,1,2],[1,2,1,0]],[[1,2,1,0],[0,3,4,2],[1,3,1,2],[1,2,1,0]],[[1,2,1,0],[0,4,3,2],[1,3,1,2],[1,2,1,0]],[[1,3,1,0],[0,3,3,2],[1,3,1,2],[1,2,1,0]],[[2,2,1,0],[0,3,3,2],[1,3,1,2],[1,2,1,0]],[[1,2,1,0],[0,3,3,2],[1,3,1,2],[1,2,0,2]],[[1,2,1,0],[0,3,3,2],[1,3,1,2],[1,3,0,1]],[[1,2,1,0],[0,3,3,2],[1,3,1,2],[2,2,0,1]],[[1,2,1,0],[0,3,3,2],[1,3,1,3],[1,2,0,1]],[[1,2,1,0],[0,3,3,2],[1,4,1,2],[1,2,0,1]],[[1,2,1,0],[0,3,3,3],[1,3,1,2],[1,2,0,1]],[[1,2,1,0],[0,3,4,2],[1,3,1,2],[1,2,0,1]],[[1,2,1,0],[0,4,3,2],[1,3,1,2],[1,2,0,1]],[[1,3,1,0],[0,3,3,2],[1,3,1,2],[1,2,0,1]],[[2,2,1,0],[0,3,3,2],[1,3,1,2],[1,2,0,1]],[[1,2,1,0],[0,3,3,2],[1,3,1,3],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[1,4,1,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,3],[1,3,1,2],[1,1,2,0]],[[1,2,1,0],[0,3,4,2],[1,3,1,2],[1,1,2,0]],[[1,2,1,0],[0,4,3,2],[1,3,1,2],[1,1,2,0]],[[1,3,1,0],[0,3,3,2],[1,3,1,2],[1,1,2,0]],[[2,2,1,0],[0,3,3,2],[1,3,1,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[1,3,1,2],[1,1,1,2]],[[1,2,1,0],[0,3,3,2],[1,3,1,3],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[1,4,1,2],[1,1,1,1]],[[1,2,1,0],[0,3,3,3],[1,3,1,2],[1,1,1,1]],[[1,2,1,0],[0,3,4,2],[1,3,1,2],[1,1,1,1]],[[1,2,1,0],[0,4,3,2],[1,3,1,2],[1,1,1,1]],[[1,3,1,0],[0,3,3,2],[1,3,1,2],[1,1,1,1]],[[2,2,1,0],[0,3,3,2],[1,3,1,2],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[1,3,1,1],[1,2,3,0]],[[1,2,1,0],[0,3,3,2],[1,3,1,1],[1,3,2,0]],[[1,2,1,0],[0,3,3,2],[1,3,1,1],[2,2,2,0]],[[1,2,1,0],[0,3,3,2],[1,4,1,1],[1,2,2,0]],[[1,2,1,0],[0,3,3,3],[1,3,1,1],[1,2,2,0]],[[1,2,1,0],[0,3,4,2],[1,3,1,1],[1,2,2,0]],[[1,2,1,0],[0,4,3,2],[1,3,1,1],[1,2,2,0]],[[1,3,1,0],[0,3,3,2],[1,3,1,1],[1,2,2,0]],[[2,2,1,0],[0,3,3,2],[1,3,1,1],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[1,3,1,0],[1,2,2,2]],[[1,2,1,0],[0,3,3,2],[1,3,1,0],[1,2,3,1]],[[1,2,1,0],[0,3,3,2],[1,3,1,0],[1,3,2,1]],[[1,2,1,0],[0,3,3,2],[1,3,1,0],[2,2,2,1]],[[1,2,1,0],[0,3,3,2],[1,4,1,0],[1,2,2,1]],[[1,2,1,0],[0,3,3,3],[1,3,1,0],[1,2,2,1]],[[1,2,1,0],[0,3,4,2],[1,3,1,0],[1,2,2,1]],[[1,2,1,0],[0,4,3,2],[1,3,1,0],[1,2,2,1]],[[1,3,1,0],[0,3,3,2],[1,3,1,0],[1,2,2,1]],[[2,2,1,0],[0,3,3,2],[1,3,1,0],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[1,3,0,2],[1,2,3,0]],[[1,2,1,0],[0,3,3,2],[1,3,0,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,2],[1,3,0,2],[2,2,2,0]],[[1,2,1,0],[0,3,3,2],[1,3,0,3],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[1,4,0,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,3],[1,3,0,2],[1,2,2,0]],[[1,2,1,0],[0,3,4,2],[1,3,0,2],[1,2,2,0]],[[1,2,1,0],[0,4,3,2],[1,3,0,2],[1,2,2,0]],[[1,3,1,0],[0,3,3,2],[1,3,0,2],[1,2,2,0]],[[2,2,1,0],[0,3,3,2],[1,3,0,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[1,3,0,2],[1,2,1,2]],[[1,2,1,0],[0,3,3,2],[1,3,0,2],[1,3,1,1]],[[1,2,1,0],[0,3,3,2],[1,3,0,2],[2,2,1,1]],[[1,2,1,0],[0,3,3,2],[1,3,0,3],[1,2,1,1]],[[1,2,1,0],[0,3,3,2],[1,4,0,2],[1,2,1,1]],[[1,2,1,0],[0,3,3,3],[1,3,0,2],[1,2,1,1]],[[1,2,1,0],[0,3,4,2],[1,3,0,2],[1,2,1,1]],[[1,2,1,0],[0,4,3,2],[1,3,0,2],[1,2,1,1]],[[1,3,1,0],[0,3,3,2],[1,3,0,2],[1,2,1,1]],[[2,2,1,0],[0,3,3,2],[1,3,0,2],[1,2,1,1]],[[1,2,1,0],[0,3,3,2],[1,3,0,2],[1,1,2,2]],[[1,2,1,0],[0,3,3,2],[1,3,0,2],[1,1,3,1]],[[1,2,1,0],[0,3,3,2],[1,3,0,3],[1,1,2,1]],[[1,2,1,0],[0,3,3,2],[1,4,0,2],[1,1,2,1]],[[1,2,1,0],[0,3,3,3],[1,3,0,2],[1,1,2,1]],[[1,2,1,0],[0,3,4,2],[1,3,0,2],[1,1,2,1]],[[1,2,1,0],[0,4,3,2],[1,3,0,2],[1,1,2,1]],[[1,3,1,0],[0,3,3,2],[1,3,0,2],[1,1,2,1]],[[2,2,1,0],[0,3,3,2],[1,3,0,2],[1,1,2,1]],[[1,2,1,0],[0,3,3,2],[1,3,0,1],[1,2,2,2]],[[1,2,1,0],[0,3,3,2],[1,3,0,1],[1,2,3,1]],[[1,2,1,0],[0,3,3,2],[1,3,0,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,2],[1,3,0,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,2],[1,4,0,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,3],[1,3,0,1],[1,2,2,1]],[[1,2,1,0],[0,3,4,2],[1,3,0,1],[1,2,2,1]],[[1,2,1,0],[0,4,3,2],[1,3,0,1],[1,2,2,1]],[[1,3,1,0],[0,3,3,2],[1,3,0,1],[1,2,2,1]],[[2,2,1,0],[0,3,3,2],[1,3,0,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,1,0],[0,3,3,3],[1,2,3,2],[1,1,0,1]],[[1,2,1,0],[0,3,4,2],[1,2,3,2],[1,1,0,1]],[[1,2,1,0],[0,3,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,1,0],[0,3,3,3],[1,2,3,1],[1,2,1,0]],[[1,2,1,0],[0,3,4,2],[1,2,3,1],[1,2,1,0]],[[1,2,1,0],[0,4,3,2],[1,2,3,1],[1,2,1,0]],[[1,3,1,0],[0,3,3,2],[1,2,3,1],[1,2,1,0]],[[2,2,1,0],[0,3,3,2],[1,2,3,1],[1,2,1,0]],[[1,2,1,0],[0,3,3,2],[1,2,4,1],[1,2,0,1]],[[1,2,1,0],[0,3,3,3],[1,2,3,1],[1,2,0,1]],[[1,2,1,0],[0,3,4,2],[1,2,3,1],[1,2,0,1]],[[1,2,1,0],[0,4,3,2],[1,2,3,1],[1,2,0,1]],[[1,3,1,0],[0,3,3,2],[1,2,3,1],[1,2,0,1]],[[2,2,1,0],[0,3,3,2],[1,2,3,1],[1,2,0,1]],[[1,2,1,0],[0,3,3,2],[1,2,3,1],[1,1,3,0]],[[1,2,1,0],[0,3,3,2],[1,2,4,1],[1,1,2,0]],[[1,2,1,0],[0,3,3,3],[1,2,3,1],[1,1,2,0]],[[1,2,1,0],[0,3,4,2],[1,2,3,1],[1,1,2,0]],[[1,2,1,0],[0,4,3,2],[1,2,3,1],[1,1,2,0]],[[1,3,1,0],[0,3,3,2],[1,2,3,1],[1,1,2,0]],[[2,2,1,0],[0,3,3,2],[1,2,3,1],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[1,2,4,1],[1,1,1,1]],[[1,2,1,0],[0,3,3,3],[1,2,3,1],[1,1,1,1]],[[1,2,1,0],[0,3,4,2],[1,2,3,1],[1,1,1,1]],[[1,2,1,0],[0,4,3,2],[1,2,3,1],[1,1,1,1]],[[1,3,1,0],[0,3,3,2],[1,2,3,1],[1,1,1,1]],[[2,2,1,0],[0,3,3,2],[1,2,3,1],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[1,2,4,1],[1,0,2,1]],[[1,2,1,0],[0,3,3,3],[1,2,3,1],[1,0,2,1]],[[1,2,1,0],[0,3,4,2],[1,2,3,1],[1,0,2,1]],[[1,2,1,0],[0,3,3,2],[1,2,4,0],[1,2,1,1]],[[1,2,1,0],[0,3,3,3],[1,2,3,0],[1,2,1,1]],[[1,2,1,0],[0,3,4,2],[1,2,3,0],[1,2,1,1]],[[1,2,1,0],[0,4,3,2],[1,2,3,0],[1,2,1,1]],[[1,3,1,0],[0,3,3,2],[1,2,3,0],[1,2,1,1]],[[2,2,1,0],[0,3,3,2],[1,2,3,0],[1,2,1,1]],[[1,2,1,0],[0,3,3,2],[1,2,3,0],[1,1,2,2]],[[1,2,1,0],[0,3,3,2],[1,2,3,0],[1,1,3,1]],[[1,2,1,0],[0,3,3,2],[1,2,4,0],[1,1,2,1]],[[1,2,1,0],[0,3,3,3],[1,2,3,0],[1,1,2,1]],[[1,2,1,0],[0,3,4,2],[1,2,3,0],[1,1,2,1]],[[1,2,1,0],[0,4,3,2],[1,2,3,0],[1,1,2,1]],[[1,3,1,0],[0,3,3,2],[1,2,3,0],[1,1,2,1]],[[2,2,1,0],[0,3,3,2],[1,2,3,0],[1,1,2,1]],[[1,2,1,0],[0,3,3,2],[1,2,2,3],[1,2,1,0]],[[1,2,1,0],[0,3,3,3],[1,2,2,2],[1,2,1,0]],[[1,2,1,0],[0,3,4,2],[1,2,2,2],[1,2,1,0]],[[1,2,1,0],[0,4,3,2],[1,2,2,2],[1,2,1,0]],[[1,3,1,0],[0,3,3,2],[1,2,2,2],[1,2,1,0]],[[2,2,1,0],[0,3,3,2],[1,2,2,2],[1,2,1,0]],[[1,2,1,0],[0,3,3,2],[1,2,2,2],[1,2,0,2]],[[1,2,1,0],[0,3,3,2],[1,2,2,3],[1,2,0,1]],[[1,2,1,0],[0,3,3,3],[1,2,2,2],[1,2,0,1]],[[1,2,1,0],[0,3,4,2],[1,2,2,2],[1,2,0,1]],[[1,2,1,0],[0,4,3,2],[1,2,2,2],[1,2,0,1]],[[1,3,1,0],[0,3,3,2],[1,2,2,2],[1,2,0,1]],[[2,2,1,0],[0,3,3,2],[1,2,2,2],[1,2,0,1]],[[1,2,1,0],[0,3,3,2],[1,2,2,3],[1,1,2,0]],[[1,2,1,0],[0,3,3,3],[1,2,2,2],[1,1,2,0]],[[1,2,1,0],[0,3,4,2],[1,2,2,2],[1,1,2,0]],[[1,2,1,0],[0,4,3,2],[1,2,2,2],[1,1,2,0]],[[1,3,1,0],[0,3,3,2],[1,2,2,2],[1,1,2,0]],[[2,2,1,0],[0,3,3,2],[1,2,2,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[1,2,2,2],[1,1,1,2]],[[1,2,1,0],[0,3,3,2],[1,2,2,3],[1,1,1,1]],[[1,2,1,0],[0,3,3,3],[1,2,2,2],[1,1,1,1]],[[1,2,1,0],[0,3,4,2],[1,2,2,2],[1,1,1,1]],[[1,2,1,0],[0,4,3,2],[1,2,2,2],[1,1,1,1]],[[1,3,1,0],[0,3,3,2],[1,2,2,2],[1,1,1,1]],[[2,2,1,0],[0,3,3,2],[1,2,2,2],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[1,2,2,2],[1,0,2,2]],[[1,2,1,0],[0,3,3,2],[1,2,2,3],[1,0,2,1]],[[1,2,1,0],[0,3,3,3],[1,2,2,2],[1,0,2,1]],[[1,2,1,0],[0,3,4,2],[1,2,2,2],[1,0,2,1]],[[1,2,1,0],[0,3,3,2],[1,2,1,2],[1,1,2,2]],[[1,2,1,0],[0,3,3,2],[1,2,1,2],[1,1,3,1]],[[1,2,1,0],[0,3,3,2],[1,2,1,3],[1,1,2,1]],[[1,2,1,0],[0,3,3,3],[1,2,1,2],[1,1,2,1]],[[1,2,1,0],[0,3,4,2],[1,2,1,2],[1,1,2,1]],[[1,2,1,0],[0,4,3,2],[1,2,1,2],[1,1,2,1]],[[1,3,1,0],[0,3,3,2],[1,2,1,2],[1,1,2,1]],[[2,2,1,0],[0,3,3,2],[1,2,1,2],[1,1,2,1]],[[1,2,1,0],[0,3,3,2],[1,2,0,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,2],[1,2,0,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,2],[1,2,0,2],[1,3,2,1]],[[1,2,1,0],[0,3,3,2],[1,2,0,2],[2,2,2,1]],[[1,2,1,0],[0,3,3,2],[1,2,0,3],[1,2,2,1]],[[1,2,1,0],[0,3,3,3],[1,2,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,4,2],[1,2,0,2],[1,2,2,1]],[[1,2,1,0],[0,4,3,2],[1,2,0,2],[1,2,2,1]],[[1,3,1,0],[0,3,3,2],[1,2,0,2],[1,2,2,1]],[[2,2,1,0],[0,3,3,2],[1,2,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[1,1,3,3],[1,1,2,0]],[[1,2,1,0],[0,3,3,3],[1,1,3,2],[1,1,2,0]],[[1,2,1,0],[0,3,4,2],[1,1,3,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,2],[1,1,3,2],[1,1,1,2]],[[1,2,1,0],[0,3,3,2],[1,1,3,3],[1,1,1,1]],[[1,2,1,0],[0,3,3,3],[1,1,3,2],[1,1,1,1]],[[1,2,1,0],[0,3,4,2],[1,1,3,2],[1,1,1,1]],[[1,2,1,0],[0,3,3,2],[1,1,3,2],[1,0,2,2]],[[1,2,1,0],[0,3,3,2],[1,1,3,3],[1,0,2,1]],[[1,2,1,0],[0,3,3,3],[1,1,3,2],[1,0,2,1]],[[1,2,1,0],[0,3,4,2],[1,1,3,2],[1,0,2,1]],[[1,1,1,1],[2,3,2,0],[0,2,2,3],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,2,2,2],[2,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,2,2,2],[1,3,2,1]],[[1,1,1,1],[2,3,2,0],[0,2,2,2],[1,2,3,1]],[[1,1,1,1],[2,3,2,0],[0,2,2,2],[1,2,2,2]],[[1,1,1,1],[2,3,2,0],[0,2,4,1],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,2,3,1],[2,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,2,3,1],[1,3,2,1]],[[1,1,1,1],[2,3,2,0],[0,2,3,1],[1,2,3,1]],[[1,1,1,1],[2,3,2,0],[0,2,3,1],[1,2,2,2]],[[1,1,1,1],[2,3,2,0],[0,2,4,2],[1,2,1,1]],[[1,1,1,1],[2,3,2,0],[0,2,3,3],[1,2,1,1]],[[1,1,1,1],[2,3,2,0],[0,2,3,2],[1,2,1,2]],[[1,1,1,1],[2,3,2,0],[0,2,4,2],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[0,2,3,3],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[0,2,3,2],[2,2,2,0]],[[1,1,1,1],[2,3,2,0],[0,2,3,2],[1,3,2,0]],[[1,1,1,1],[2,3,2,0],[0,2,3,2],[1,2,3,0]],[[2,1,1,1],[2,3,2,0],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[3,3,2,0],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,4,2,0],[0,3,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,4,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,1,3],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,1,2],[2,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,1,2],[1,3,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,1,2],[1,2,3,1]],[[1,1,1,1],[2,3,2,0],[0,3,1,2],[1,2,2,2]],[[2,1,1,1],[2,3,2,0],[0,3,2,1],[1,2,2,1]],[[1,1,1,1],[3,3,2,0],[0,3,2,1],[1,2,2,1]],[[1,1,1,1],[2,4,2,0],[0,3,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,4,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,2,1],[2,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,2,1],[1,3,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,2,1],[1,2,3,1]],[[1,1,1,1],[2,3,2,0],[0,3,2,1],[1,2,2,2]],[[1,1,1,1],[2,3,2,0],[0,3,2,3],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,2,2],[1,1,3,1]],[[1,1,1,1],[2,3,2,0],[0,3,2,2],[1,1,2,2]],[[2,1,1,1],[2,3,2,0],[0,3,2,2],[1,2,2,0]],[[1,1,1,1],[3,3,2,0],[0,3,2,2],[1,2,2,0]],[[1,1,1,1],[2,4,2,0],[0,3,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[0,4,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[0,3,2,2],[2,2,2,0]],[[1,1,1,1],[2,3,2,0],[0,3,2,2],[1,3,2,0]],[[1,1,1,1],[2,3,2,0],[0,3,2,2],[1,2,3,0]],[[2,1,1,1],[2,3,2,0],[0,3,3,0],[1,2,2,1]],[[1,1,1,1],[3,3,2,0],[0,3,3,0],[1,2,2,1]],[[1,1,1,1],[2,4,2,0],[0,3,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,4,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,0],[2,2,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,0],[1,3,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,0],[1,2,3,1]],[[2,1,1,1],[2,3,2,0],[0,3,3,1],[1,1,2,1]],[[1,1,1,1],[3,3,2,0],[0,3,3,1],[1,1,2,1]],[[1,1,1,1],[2,4,2,0],[0,3,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[0,4,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,4,1],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,1],[1,1,3,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,1],[1,1,2,2]],[[2,1,1,1],[2,3,2,0],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[3,3,2,0],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[2,4,2,0],[0,3,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,2,0],[0,4,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,2,0],[0,3,4,1],[1,2,1,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,1],[2,2,1,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,1],[1,3,1,1]],[[1,1,1,1],[2,3,2,0],[0,3,4,2],[1,0,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,3],[1,0,2,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,2],[1,0,2,2]],[[2,1,1,1],[2,3,2,0],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[3,3,2,0],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,4,2,0],[0,3,3,2],[1,1,1,1]],[[1,1,1,1],[2,3,2,0],[0,4,3,2],[1,1,1,1]],[[1,1,1,1],[2,3,2,0],[0,3,4,2],[1,1,1,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,3],[1,1,1,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,2],[1,1,1,2]],[[2,1,1,1],[2,3,2,0],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[3,3,2,0],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,4,2,0],[0,3,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,2,0],[0,4,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,2,0],[0,3,4,2],[1,1,2,0]],[[1,1,1,1],[2,3,2,0],[0,3,3,3],[1,1,2,0]],[[1,1,1,1],[2,3,2,0],[0,3,3,2],[1,1,3,0]],[[2,1,1,1],[2,3,2,0],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[3,3,2,0],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,4,2,0],[0,3,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,2,0],[0,4,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,2,0],[0,3,4,2],[1,2,0,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,3],[1,2,0,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,2],[2,2,0,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,2],[1,3,0,1]],[[1,1,1,1],[2,3,2,0],[0,3,3,2],[1,2,0,2]],[[2,1,1,1],[2,3,2,0],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[3,3,2,0],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,4,2,0],[0,3,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,2,0],[0,4,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,2,0],[0,3,4,2],[1,2,1,0]],[[1,1,1,1],[2,3,2,0],[0,3,3,3],[1,2,1,0]],[[1,1,1,1],[2,3,2,0],[0,3,3,2],[2,2,1,0]],[[1,1,1,1],[2,3,2,0],[0,3,3,2],[1,3,1,0]],[[1,2,1,0],[0,3,3,2],[1,1,3,1],[1,2,3,0]],[[1,2,1,0],[0,3,3,2],[1,1,3,1],[1,3,2,0]],[[1,2,1,0],[0,3,3,2],[1,1,3,1],[2,2,2,0]],[[1,2,1,0],[0,3,3,2],[1,1,4,1],[1,2,2,0]],[[1,2,1,0],[0,3,3,3],[1,1,3,1],[1,2,2,0]],[[1,2,1,0],[0,3,4,2],[1,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[1,2,2,3],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[1,2,2,2],[0,3,2,1]],[[1,1,1,1],[2,3,2,0],[1,2,2,2],[0,2,3,1]],[[1,1,1,1],[2,3,2,0],[1,2,2,2],[0,2,2,2]],[[1,1,1,1],[2,3,2,0],[1,2,4,1],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[1,2,3,1],[0,3,2,1]],[[1,1,1,1],[2,3,2,0],[1,2,3,1],[0,2,3,1]],[[1,1,1,1],[2,3,2,0],[1,2,3,1],[0,2,2,2]],[[1,1,1,1],[2,3,2,0],[1,2,4,2],[0,2,1,1]],[[1,1,1,1],[2,3,2,0],[1,2,3,3],[0,2,1,1]],[[1,1,1,1],[2,3,2,0],[1,2,3,2],[0,2,1,2]],[[1,1,1,1],[2,3,2,0],[1,2,4,2],[0,2,2,0]],[[1,1,1,1],[2,3,2,0],[1,2,3,3],[0,2,2,0]],[[1,1,1,1],[2,3,2,0],[1,2,3,2],[0,3,2,0]],[[1,1,1,1],[2,3,2,0],[1,2,3,2],[0,2,3,0]],[[1,2,1,0],[0,4,3,2],[1,1,3,1],[1,2,2,0]],[[1,3,1,0],[0,3,3,2],[1,1,3,1],[1,2,2,0]],[[2,2,1,0],[0,3,3,2],[1,1,3,1],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[1,1,4,1],[1,2,1,1]],[[1,2,1,0],[0,3,3,3],[1,1,3,1],[1,2,1,1]],[[1,2,1,0],[0,3,4,2],[1,1,3,1],[1,2,1,1]],[[2,1,1,1],[2,3,2,0],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[3,3,2,0],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,4,2,0],[1,3,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[1,4,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,1,3],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,1,2],[0,3,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,1,2],[0,2,3,1]],[[1,1,1,1],[2,3,2,0],[1,3,1,2],[0,2,2,2]],[[2,1,1,1],[2,3,2,0],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[3,3,2,0],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,4,2,0],[1,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[1,4,1,2],[1,1,2,1]],[[2,1,1,1],[2,3,2,0],[1,3,2,1],[0,2,2,1]],[[1,1,1,1],[3,3,2,0],[1,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,4,2,0],[1,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[1,4,2,1],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,2,1],[0,3,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,2,1],[0,2,3,1]],[[1,1,1,1],[2,3,2,0],[1,3,2,1],[0,2,2,2]],[[2,1,1,1],[2,3,2,0],[1,3,2,1],[1,1,2,1]],[[1,1,1,1],[3,3,2,0],[1,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,4,2,0],[1,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[1,4,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,2,3],[0,1,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,2,2],[0,1,3,1]],[[1,1,1,1],[2,3,2,0],[1,3,2,2],[0,1,2,2]],[[2,1,1,1],[2,3,2,0],[1,3,2,2],[0,2,2,0]],[[1,1,1,1],[3,3,2,0],[1,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,4,2,0],[1,3,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,2,0],[1,4,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,2,0],[1,3,2,2],[0,3,2,0]],[[1,1,1,1],[2,3,2,0],[1,3,2,2],[0,2,3,0]],[[1,1,1,1],[2,3,2,0],[1,3,2,3],[1,0,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,2,2],[1,0,3,1]],[[1,1,1,1],[2,3,2,0],[1,3,2,2],[1,0,2,2]],[[2,1,1,1],[2,3,2,0],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[3,3,2,0],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,4,2,0],[1,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,2,0],[1,4,2,2],[1,1,2,0]],[[1,2,1,0],[0,4,3,2],[1,1,3,1],[1,2,1,1]],[[1,3,1,0],[0,3,3,2],[1,1,3,1],[1,2,1,1]],[[2,2,1,0],[0,3,3,2],[1,1,3,1],[1,2,1,1]],[[1,2,1,0],[0,3,3,2],[1,1,3,0],[1,2,2,2]],[[1,2,1,0],[0,3,3,2],[1,1,3,0],[1,2,3,1]],[[1,2,1,0],[0,3,3,2],[1,1,3,0],[1,3,2,1]],[[1,2,1,0],[0,3,3,2],[1,1,3,0],[2,2,2,1]],[[1,2,1,0],[0,3,3,2],[1,1,4,0],[1,2,2,1]],[[1,2,1,0],[0,3,3,3],[1,1,3,0],[1,2,2,1]],[[2,1,1,1],[2,3,2,0],[1,3,3,0],[0,2,2,1]],[[1,1,1,1],[3,3,2,0],[1,3,3,0],[0,2,2,1]],[[1,1,1,1],[2,4,2,0],[1,3,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[1,4,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,0],[0,3,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,0],[0,2,3,1]],[[2,1,1,1],[2,3,2,0],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[3,3,2,0],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,4,2,0],[1,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[1,4,3,0],[1,1,2,1]],[[2,1,1,1],[2,3,2,0],[1,3,3,1],[0,1,2,1]],[[1,1,1,1],[3,3,2,0],[1,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,4,2,0],[1,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,2,0],[1,4,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,4,1],[0,1,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,1],[0,1,3,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,1],[0,1,2,2]],[[2,1,1,1],[2,3,2,0],[1,3,3,1],[0,2,1,1]],[[1,1,1,1],[3,3,2,0],[1,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,4,2,0],[1,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,2,0],[1,4,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,2,0],[1,3,4,1],[0,2,1,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,1],[0,3,1,1]],[[2,1,1,1],[2,3,2,0],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[3,3,2,0],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,4,2,0],[1,3,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,2,0],[1,4,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,4,1],[1,0,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,1],[1,0,3,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,1],[1,0,2,2]],[[2,1,1,1],[2,3,2,0],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[3,3,2,0],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,4,2,0],[1,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,2,0],[1,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,2,0],[1,3,4,1],[1,1,1,1]],[[2,1,1,1],[2,3,2,0],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[3,3,2,0],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,4,2,0],[1,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,2,0],[1,4,3,1],[1,2,0,1]],[[1,2,1,0],[0,3,4,2],[1,1,3,0],[1,2,2,1]],[[1,2,1,0],[0,4,3,2],[1,1,3,0],[1,2,2,1]],[[1,3,1,0],[0,3,3,2],[1,1,3,0],[1,2,2,1]],[[2,2,1,0],[0,3,3,2],[1,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,4,2],[0,0,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,3],[0,0,2,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,2],[0,0,2,2]],[[2,1,1,1],[2,3,2,0],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[3,3,2,0],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,4,2,0],[1,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,2,0],[1,4,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,2,0],[1,3,4,2],[0,1,1,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,3],[0,1,1,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,2],[0,1,1,2]],[[2,1,1,1],[2,3,2,0],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[3,3,2,0],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,4,2,0],[1,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,2,0],[1,4,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,2,0],[1,3,4,2],[0,1,2,0]],[[1,1,1,1],[2,3,2,0],[1,3,3,3],[0,1,2,0]],[[1,1,1,1],[2,3,2,0],[1,3,3,2],[0,1,3,0]],[[2,1,1,1],[2,3,2,0],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[3,3,2,0],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,4,2,0],[1,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,2,0],[1,4,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,2,0],[1,3,4,2],[0,2,0,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,3],[0,2,0,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,2],[0,3,0,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,2],[0,2,0,2]],[[2,1,1,1],[2,3,2,0],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[3,3,2,0],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,4,2,0],[1,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,2,0],[1,4,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,2,0],[1,3,4,2],[0,2,1,0]],[[1,1,1,1],[2,3,2,0],[1,3,3,3],[0,2,1,0]],[[1,1,1,1],[2,3,2,0],[1,3,3,2],[0,3,1,0]],[[1,2,1,0],[0,3,3,2],[1,1,2,3],[1,2,2,0]],[[1,2,1,0],[0,3,3,3],[1,1,2,2],[1,2,2,0]],[[1,2,1,0],[0,3,4,2],[1,1,2,2],[1,2,2,0]],[[1,2,1,0],[0,4,3,2],[1,1,2,2],[1,2,2,0]],[[2,1,1,1],[2,3,2,0],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[3,3,2,0],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,4,2,0],[1,3,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,2,0],[1,4,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,2,0],[1,3,4,2],[1,0,1,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,3],[1,0,1,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,2],[1,0,1,2]],[[2,1,1,1],[2,3,2,0],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[3,3,2,0],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,4,2,0],[1,3,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,2,0],[1,4,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,2,0],[1,3,4,2],[1,0,2,0]],[[1,1,1,1],[2,3,2,0],[1,3,3,3],[1,0,2,0]],[[1,1,1,1],[2,3,2,0],[1,3,3,2],[1,0,3,0]],[[2,1,1,1],[2,3,2,0],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[3,3,2,0],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,4,2,0],[1,3,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,2,0],[1,4,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,2,0],[1,3,4,2],[1,1,0,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,3],[1,1,0,1]],[[1,1,1,1],[2,3,2,0],[1,3,3,2],[1,1,0,2]],[[2,1,1,1],[2,3,2,0],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[3,3,2,0],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,4,2,0],[1,3,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,2,0],[1,4,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,2,0],[1,3,4,2],[1,1,1,0]],[[1,1,1,1],[2,3,2,0],[1,3,3,3],[1,1,1,0]],[[1,3,1,0],[0,3,3,2],[1,1,2,2],[1,2,2,0]],[[2,2,1,0],[0,3,3,2],[1,1,2,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[1,1,2,2],[1,2,1,2]],[[1,2,1,0],[0,3,3,2],[1,1,2,3],[1,2,1,1]],[[1,2,1,0],[0,3,3,3],[1,1,2,2],[1,2,1,1]],[[1,2,1,0],[0,3,4,2],[1,1,2,2],[1,2,1,1]],[[1,2,1,0],[0,4,3,2],[1,1,2,2],[1,2,1,1]],[[1,3,1,0],[0,3,3,2],[1,1,2,2],[1,2,1,1]],[[2,1,1,1],[2,3,2,0],[1,3,3,2],[1,2,0,0]],[[1,1,1,1],[3,3,2,0],[1,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,4,2,0],[1,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,3,2,0],[1,4,3,2],[1,2,0,0]],[[2,2,1,0],[0,3,3,2],[1,1,2,2],[1,2,1,1]],[[1,2,1,0],[0,3,3,2],[1,1,1,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,2],[1,1,1,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,2],[1,1,1,2],[1,3,2,1]],[[1,2,1,0],[0,3,3,2],[1,1,1,2],[2,2,2,1]],[[1,2,1,0],[0,3,3,2],[1,1,1,3],[1,2,2,1]],[[1,2,1,0],[0,3,3,3],[1,1,1,2],[1,2,2,1]],[[1,2,1,0],[0,3,4,2],[1,1,1,2],[1,2,2,1]],[[1,2,1,0],[0,4,3,2],[1,1,1,2],[1,2,2,1]],[[1,3,1,0],[0,3,3,2],[1,1,1,2],[1,2,2,1]],[[2,2,1,0],[0,3,3,2],[1,1,1,2],[1,2,2,1]],[[1,2,1,0],[0,3,3,2],[1,0,3,3],[1,2,2,0]],[[1,2,1,0],[0,3,3,3],[1,0,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,4,2],[1,0,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,2],[1,0,3,2],[1,2,1,2]],[[1,2,1,0],[0,3,3,2],[1,0,3,3],[1,2,1,1]],[[1,2,1,0],[0,3,3,3],[1,0,3,2],[1,2,1,1]],[[1,2,1,0],[0,3,4,2],[1,0,3,2],[1,2,1,1]],[[1,2,1,0],[0,3,3,2],[1,0,3,2],[1,1,2,2]],[[1,2,1,0],[0,3,3,2],[1,0,3,3],[1,1,2,1]],[[1,2,1,0],[0,3,3,3],[1,0,3,2],[1,1,2,1]],[[1,2,1,0],[0,3,4,2],[1,0,3,2],[1,1,2,1]],[[1,2,1,0],[0,3,3,2],[1,0,2,2],[1,2,2,2]],[[2,1,1,1],[2,3,2,0],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[3,3,2,0],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,4,2,0],[2,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[3,0,2,2],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,0,2,3],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,0,2,2],[2,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,0,2,2],[1,3,2,1]],[[1,1,1,1],[2,3,2,0],[2,0,2,2],[1,2,3,1]],[[1,1,1,1],[2,3,2,0],[2,0,2,2],[1,2,2,2]],[[2,1,1,1],[2,3,2,0],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[3,3,2,0],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,4,2,0],[2,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[3,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,0,4,1],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,0,3,1],[2,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,0,3,1],[1,3,2,1]],[[1,1,1,1],[2,3,2,0],[2,0,3,1],[1,2,3,1]],[[1,1,1,1],[2,3,2,0],[2,0,3,1],[1,2,2,2]],[[1,1,1,1],[2,3,2,0],[2,0,4,2],[1,2,1,1]],[[1,1,1,1],[2,3,2,0],[2,0,3,3],[1,2,1,1]],[[1,1,1,1],[2,3,2,0],[2,0,3,2],[1,2,1,2]],[[2,1,1,1],[2,3,2,0],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[3,3,2,0],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,4,2,0],[2,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[3,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[2,0,4,2],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[2,0,3,3],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[2,0,3,2],[2,2,2,0]],[[1,1,1,1],[2,3,2,0],[2,0,3,2],[1,3,2,0]],[[1,1,1,1],[2,3,2,0],[2,0,3,2],[1,2,3,0]],[[2,1,1,1],[2,3,2,0],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[3,3,2,0],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,4,2,0],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[3,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,1,1,3],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,1,1,2],[2,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,1,1,2],[1,3,2,1]],[[1,1,1,1],[2,3,2,0],[2,1,1,2],[1,2,3,1]],[[1,1,1,1],[2,3,2,0],[2,1,1,2],[1,2,2,2]],[[2,1,1,1],[2,3,2,0],[2,1,2,1],[1,2,2,1]],[[1,1,1,1],[3,3,2,0],[2,1,2,1],[1,2,2,1]],[[1,1,1,1],[2,4,2,0],[2,1,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[3,1,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,1,2,1],[2,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,1,2,1],[1,3,2,1]],[[1,1,1,1],[2,3,2,0],[2,1,2,1],[1,2,3,1]],[[1,1,1,1],[2,3,2,0],[2,1,2,1],[1,2,2,2]],[[2,1,1,1],[2,3,2,0],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[3,3,2,0],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[2,4,2,0],[2,1,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[3,1,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[2,1,2,2],[2,2,2,0]],[[1,1,1,1],[2,3,2,0],[2,1,2,2],[1,3,2,0]],[[1,1,1,1],[2,3,2,0],[2,1,2,2],[1,2,3,0]],[[2,1,1,1],[2,3,2,0],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[3,3,2,0],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,4,2,0],[2,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[3,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,1,3,0],[2,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,1,3,0],[1,3,2,1]],[[1,1,1,1],[2,3,2,0],[2,1,3,0],[1,2,3,1]],[[2,1,1,1],[2,3,2,0],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[3,3,2,0],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,4,2,0],[2,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,2,0],[3,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,2,0],[2,1,3,1],[2,2,1,1]],[[1,1,1,1],[2,3,2,0],[2,1,3,1],[1,3,1,1]],[[2,1,1,1],[2,3,2,0],[2,1,3,2],[1,2,0,1]],[[1,1,1,1],[3,3,2,0],[2,1,3,2],[1,2,0,1]],[[1,1,1,1],[2,4,2,0],[2,1,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,2,0],[3,1,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,2,0],[2,1,3,2],[2,2,0,1]],[[1,1,1,1],[2,3,2,0],[2,1,3,2],[1,3,0,1]],[[2,1,1,1],[2,3,2,0],[2,1,3,2],[1,2,1,0]],[[1,1,1,1],[3,3,2,0],[2,1,3,2],[1,2,1,0]],[[1,1,1,1],[2,4,2,0],[2,1,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,2,0],[3,1,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,2,0],[2,1,3,2],[2,2,1,0]],[[1,1,1,1],[2,3,2,0],[2,1,3,2],[1,3,1,0]],[[1,2,1,0],[0,3,3,2],[1,0,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,2],[1,0,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,3,3],[1,0,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,4,2],[1,0,2,2],[1,2,2,1]],[[2,1,1,1],[2,3,2,0],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[3,3,2,0],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[2,4,2,0],[2,2,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[3,2,1,2],[0,2,2,1]],[[2,1,1,1],[2,3,2,0],[2,2,1,2],[1,1,2,1]],[[1,1,1,1],[3,3,2,0],[2,2,1,2],[1,1,2,1]],[[1,1,1,1],[2,4,2,0],[2,2,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[3,2,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[2,2,1,2],[2,1,2,1]],[[2,1,1,1],[2,3,2,0],[2,2,2,1],[0,2,2,1]],[[1,1,1,1],[3,3,2,0],[2,2,2,1],[0,2,2,1]],[[1,1,1,1],[2,4,2,0],[2,2,2,1],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[3,2,2,1],[0,2,2,1]],[[2,1,1,1],[2,3,2,0],[2,2,2,1],[1,1,2,1]],[[1,1,1,1],[3,3,2,0],[2,2,2,1],[1,1,2,1]],[[1,1,1,1],[2,4,2,0],[2,2,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[3,2,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[2,2,2,1],[2,1,2,1]],[[2,1,1,1],[2,3,2,0],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[3,3,2,0],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[2,4,2,0],[2,2,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,2,0],[3,2,2,2],[0,2,2,0]],[[2,1,1,1],[2,3,2,0],[2,2,2,2],[1,1,2,0]],[[1,1,1,1],[3,3,2,0],[2,2,2,2],[1,1,2,0]],[[1,1,1,1],[2,4,2,0],[2,2,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,2,0],[3,2,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,2,0],[2,2,2,2],[2,1,2,0]],[[2,1,1,1],[2,3,2,0],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[3,3,2,0],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[2,4,2,0],[2,2,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,2,0],[3,2,3,0],[0,2,2,1]],[[2,1,1,1],[2,3,2,0],[2,2,3,0],[1,1,2,1]],[[1,1,1,1],[3,3,2,0],[2,2,3,0],[1,1,2,1]],[[1,1,1,1],[2,4,2,0],[2,2,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[3,2,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,2,0],[2,2,3,0],[2,1,2,1]],[[2,1,1,1],[2,3,2,0],[2,2,3,1],[0,1,2,1]],[[1,1,1,1],[3,3,2,0],[2,2,3,1],[0,1,2,1]],[[1,1,1,1],[2,4,2,0],[2,2,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,2,0],[3,2,3,1],[0,1,2,1]],[[2,1,1,1],[2,3,2,0],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[3,3,2,0],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[2,4,2,0],[2,2,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,2,0],[3,2,3,1],[0,2,1,1]],[[2,1,1,1],[2,3,2,0],[2,2,3,1],[1,0,2,1]],[[1,1,1,1],[3,3,2,0],[2,2,3,1],[1,0,2,1]],[[1,1,1,1],[2,4,2,0],[2,2,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,2,0],[3,2,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,2,0],[2,2,3,1],[2,0,2,1]],[[2,1,1,1],[2,3,2,0],[2,2,3,1],[1,1,1,1]],[[1,1,1,1],[3,3,2,0],[2,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,4,2,0],[2,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,2,0],[3,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,2,0],[2,2,3,1],[2,1,1,1]],[[2,1,1,1],[2,3,2,0],[2,2,3,1],[1,2,0,1]],[[1,1,1,1],[3,3,2,0],[2,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,4,2,0],[2,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,2,0],[3,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,2,0],[2,2,3,1],[2,2,0,1]],[[2,1,1,1],[2,3,2,0],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[3,3,2,0],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[2,4,2,0],[2,2,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,2,0],[3,2,3,2],[0,1,1,1]],[[2,1,1,1],[2,3,2,0],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[3,3,2,0],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[2,4,2,0],[2,2,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,2,0],[3,2,3,2],[0,1,2,0]],[[2,1,1,1],[2,3,2,0],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[3,3,2,0],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[2,4,2,0],[2,2,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,2,0],[3,2,3,2],[0,2,0,1]],[[2,1,1,1],[2,3,2,0],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[3,3,2,0],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[2,4,2,0],[2,2,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,2,0],[3,2,3,2],[0,2,1,0]],[[2,1,1,1],[2,3,2,0],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[3,3,2,0],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,4,2,0],[2,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,2,0],[3,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,2,0],[2,2,3,2],[2,0,1,1]],[[2,1,1,1],[2,3,2,0],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[3,3,2,0],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,4,2,0],[2,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,2,0],[3,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,2,0],[2,2,3,2],[2,0,2,0]],[[2,1,1,1],[2,3,2,0],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[3,3,2,0],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[2,4,2,0],[2,2,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,2,0],[3,2,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,2,0],[2,2,3,2],[2,1,0,1]],[[2,1,1,1],[2,3,2,0],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[3,3,2,0],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[2,4,2,0],[2,2,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,2,0],[3,2,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,2,0],[2,2,3,2],[2,1,1,0]],[[2,1,1,1],[2,3,2,0],[2,2,3,2],[1,2,0,0]],[[1,1,1,1],[3,3,2,0],[2,2,3,2],[1,2,0,0]],[[1,1,1,1],[2,4,2,0],[2,2,3,2],[1,2,0,0]],[[1,1,1,1],[2,3,2,0],[3,2,3,2],[1,2,0,0]],[[1,1,1,1],[2,3,2,0],[2,2,3,2],[2,2,0,0]],[[1,2,1,0],[0,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,1,0],[0,3,3,1],[2,4,3,2],[1,1,0,0]],[[1,2,1,0],[0,3,3,1],[3,3,3,2],[1,1,0,0]],[[1,2,1,0],[0,3,4,1],[2,3,3,2],[1,1,0,0]],[[1,2,1,0],[0,4,3,1],[2,3,3,2],[1,1,0,0]],[[1,3,1,0],[0,3,3,1],[2,3,3,2],[1,1,0,0]],[[2,2,1,0],[0,3,3,1],[2,3,3,2],[1,1,0,0]],[[2,1,1,1],[2,3,2,0],[2,3,0,1],[1,2,2,1]],[[1,1,1,1],[3,3,2,0],[2,3,0,1],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[3,3,0,1],[1,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,3,0,1],[2,2,2,1]],[[1,1,1,1],[2,3,2,0],[2,3,0,1],[1,3,2,1]],[[2,1,1,1],[2,3,2,0],[2,3,0,2],[1,2,2,0]],[[1,1,1,1],[3,3,2,0],[2,3,0,2],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[3,3,0,2],[1,2,2,0]],[[1,1,1,1],[2,3,2,0],[2,3,0,2],[2,2,2,0]],[[1,1,1,1],[2,3,2,0],[2,3,0,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,1,0],[0,3,3,1],[3,3,3,2],[0,2,0,0]],[[1,2,1,0],[0,3,4,1],[2,3,3,2],[0,2,0,0]],[[1,2,1,0],[0,4,3,1],[2,3,3,2],[0,2,0,0]],[[1,3,1,0],[0,3,3,1],[2,3,3,2],[0,2,0,0]],[[2,2,1,0],[0,3,3,1],[2,3,3,2],[0,2,0,0]],[[1,2,1,0],[0,3,3,1],[2,3,3,3],[0,0,2,0]],[[1,2,1,0],[0,3,3,1],[2,3,4,2],[0,0,2,0]],[[1,2,1,0],[0,3,4,1],[2,3,3,2],[0,0,2,0]],[[1,2,1,0],[0,4,3,1],[2,3,3,2],[0,0,2,0]],[[1,3,1,0],[0,3,3,1],[2,3,3,2],[0,0,2,0]],[[2,2,1,0],[0,3,3,1],[2,3,3,2],[0,0,2,0]],[[1,2,1,0],[0,3,3,1],[2,3,3,2],[0,0,1,2]],[[1,2,1,0],[0,3,3,1],[2,3,3,3],[0,0,1,1]],[[2,1,1,1],[2,3,2,0],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[3,3,2,0],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,4,2,0],[2,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,2,0],[3,3,3,1],[1,0,1,1]],[[1,2,1,0],[0,3,3,1],[2,3,4,2],[0,0,1,1]],[[1,2,1,0],[0,3,4,1],[2,3,3,2],[0,0,1,1]],[[1,2,1,0],[0,4,3,1],[2,3,3,2],[0,0,1,1]],[[1,3,1,0],[0,3,3,1],[2,3,3,2],[0,0,1,1]],[[2,2,1,0],[0,3,3,1],[2,3,3,2],[0,0,1,1]],[[1,2,1,0],[0,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,1,0],[0,3,4,1],[2,3,3,1],[0,0,2,1]],[[1,2,1,0],[0,4,3,1],[2,3,3,1],[0,0,2,1]],[[1,3,1,0],[0,3,3,1],[2,3,3,1],[0,0,2,1]],[[2,2,1,0],[0,3,3,1],[2,3,3,1],[0,0,2,1]],[[2,1,1,1],[2,3,2,0],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[3,3,2,0],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[2,4,2,0],[2,3,3,2],[1,0,0,1]],[[1,1,1,1],[2,3,2,0],[3,3,3,2],[1,0,0,1]],[[2,1,1,1],[2,3,2,0],[2,3,3,2],[1,0,1,0]],[[1,1,1,1],[3,3,2,0],[2,3,3,2],[1,0,1,0]],[[1,1,1,1],[2,4,2,0],[2,3,3,2],[1,0,1,0]],[[1,1,1,1],[2,3,2,0],[3,3,3,2],[1,0,1,0]],[[1,2,1,0],[0,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,1,0],[0,3,3,1],[2,4,2,2],[1,2,0,0]],[[1,2,1,0],[0,3,3,1],[3,3,2,2],[1,2,0,0]],[[1,2,1,0],[0,3,4,1],[2,3,2,2],[1,2,0,0]],[[1,2,1,0],[0,4,3,1],[2,3,2,2],[1,2,0,0]],[[1,3,1,0],[0,3,3,1],[2,3,2,2],[1,2,0,0]],[[2,2,1,0],[0,3,3,1],[2,3,2,2],[1,2,0,0]],[[1,2,1,0],[0,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,1,0],[0,3,3,1],[2,4,2,2],[1,1,1,0]],[[1,2,1,0],[0,3,3,1],[3,3,2,2],[1,1,1,0]],[[1,2,1,0],[0,3,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,1,0],[0,4,3,1],[2,3,2,2],[1,1,1,0]],[[1,3,1,0],[0,3,3,1],[2,3,2,2],[1,1,1,0]],[[2,2,1,0],[0,3,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,1,0],[0,3,3,1],[2,3,2,2],[2,1,0,1]],[[1,2,1,0],[0,3,3,1],[2,4,2,2],[1,1,0,1]],[[1,2,1,0],[0,3,3,1],[3,3,2,2],[1,1,0,1]],[[1,2,1,0],[0,3,4,1],[2,3,2,2],[1,1,0,1]],[[1,2,1,0],[0,4,3,1],[2,3,2,2],[1,1,0,1]],[[1,3,1,0],[0,3,3,1],[2,3,2,2],[1,1,0,1]],[[2,2,1,0],[0,3,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,1,0],[0,3,3,1],[2,3,2,2],[2,0,2,0]],[[1,2,1,0],[0,3,3,1],[2,4,2,2],[1,0,2,0]],[[1,2,1,0],[0,3,3,1],[3,3,2,2],[1,0,2,0]],[[1,2,1,0],[0,3,4,1],[2,3,2,2],[1,0,2,0]],[[1,2,1,0],[0,4,3,1],[2,3,2,2],[1,0,2,0]],[[1,3,1,0],[0,3,3,1],[2,3,2,2],[1,0,2,0]],[[2,2,1,0],[0,3,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,1,0],[0,3,3,1],[2,3,2,2],[2,0,1,1]],[[1,2,1,0],[0,3,3,1],[2,4,2,2],[1,0,1,1]],[[1,2,1,0],[0,3,3,1],[3,3,2,2],[1,0,1,1]],[[1,2,1,0],[0,3,4,1],[2,3,2,2],[1,0,1,1]],[[1,2,1,0],[0,4,3,1],[2,3,2,2],[1,0,1,1]],[[1,3,1,0],[0,3,3,1],[2,3,2,2],[1,0,1,1]],[[2,2,1,0],[0,3,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,2,1],[0,2,4,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,1],[0,2,3,0],[2,2,2,1]],[[1,1,1,1],[2,3,2,1],[0,2,3,0],[1,3,2,1]],[[1,1,1,1],[2,3,2,1],[0,2,3,0],[1,2,3,1]],[[1,1,1,1],[2,3,2,1],[0,2,3,0],[1,2,2,2]],[[1,1,1,1],[2,3,2,1],[0,2,4,1],[1,2,2,0]],[[1,1,1,1],[2,3,2,1],[0,2,3,1],[2,2,2,0]],[[1,1,1,1],[2,3,2,1],[0,2,3,1],[1,3,2,0]],[[1,1,1,1],[2,3,2,1],[0,2,3,1],[1,2,3,0]],[[1,2,1,0],[0,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,1,0],[0,3,3,1],[2,4,2,2],[0,2,1,0]],[[1,2,1,0],[0,3,3,1],[3,3,2,2],[0,2,1,0]],[[1,2,1,0],[0,3,4,1],[2,3,2,2],[0,2,1,0]],[[2,1,1,1],[2,3,2,1],[0,3,2,0],[1,2,2,1]],[[1,1,1,1],[3,3,2,1],[0,3,2,0],[1,2,2,1]],[[1,1,1,1],[2,4,2,1],[0,3,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,1],[0,4,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,1],[0,3,2,0],[2,2,2,1]],[[1,1,1,1],[2,3,2,1],[0,3,2,0],[1,3,2,1]],[[1,1,1,1],[2,3,2,1],[0,3,2,0],[1,2,3,1]],[[1,1,1,1],[2,3,2,1],[0,3,2,0],[1,2,2,2]],[[2,1,1,1],[2,3,2,1],[0,3,2,1],[1,2,2,0]],[[1,1,1,1],[3,3,2,1],[0,3,2,1],[1,2,2,0]],[[1,1,1,1],[2,4,2,1],[0,3,2,1],[1,2,2,0]],[[1,1,1,1],[2,3,2,1],[0,4,2,1],[1,2,2,0]],[[1,1,1,1],[2,3,2,1],[0,3,2,1],[2,2,2,0]],[[1,1,1,1],[2,3,2,1],[0,3,2,1],[1,3,2,0]],[[1,1,1,1],[2,3,2,1],[0,3,2,1],[1,2,3,0]],[[1,2,1,0],[0,4,3,1],[2,3,2,2],[0,2,1,0]],[[1,3,1,0],[0,3,3,1],[2,3,2,2],[0,2,1,0]],[[2,2,1,0],[0,3,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,1,0],[0,3,3,1],[2,3,2,2],[0,3,0,1]],[[1,2,1,0],[0,3,3,1],[2,4,2,2],[0,2,0,1]],[[1,2,1,0],[0,3,3,1],[3,3,2,2],[0,2,0,1]],[[1,2,1,0],[0,3,4,1],[2,3,2,2],[0,2,0,1]],[[1,2,1,0],[0,4,3,1],[2,3,2,2],[0,2,0,1]],[[1,3,1,0],[0,3,3,1],[2,3,2,2],[0,2,0,1]],[[2,1,1,1],[2,3,2,1],[0,3,3,0],[1,1,2,1]],[[1,1,1,1],[3,3,2,1],[0,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,4,2,1],[0,3,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,2,1],[0,4,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,2,1],[0,3,4,0],[1,1,2,1]],[[1,1,1,1],[2,3,2,1],[0,3,3,0],[1,1,3,1]],[[1,1,1,1],[2,3,2,1],[0,3,3,0],[1,1,2,2]],[[2,1,1,1],[2,3,2,1],[0,3,3,0],[1,2,1,1]],[[1,1,1,1],[3,3,2,1],[0,3,3,0],[1,2,1,1]],[[1,1,1,1],[2,4,2,1],[0,3,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,2,1],[0,4,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,2,1],[0,3,4,0],[1,2,1,1]],[[1,1,1,1],[2,3,2,1],[0,3,3,0],[2,2,1,1]],[[1,1,1,1],[2,3,2,1],[0,3,3,0],[1,3,1,1]],[[2,1,1,1],[2,3,2,1],[0,3,3,1],[1,1,1,1]],[[1,1,1,1],[3,3,2,1],[0,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,4,2,1],[0,3,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,2,1],[0,4,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,2,1],[0,3,4,1],[1,1,1,1]],[[2,1,1,1],[2,3,2,1],[0,3,3,1],[1,1,2,0]],[[1,1,1,1],[3,3,2,1],[0,3,3,1],[1,1,2,0]],[[1,1,1,1],[2,4,2,1],[0,3,3,1],[1,1,2,0]],[[1,1,1,1],[2,3,2,1],[0,4,3,1],[1,1,2,0]],[[1,1,1,1],[2,3,2,1],[0,3,4,1],[1,1,2,0]],[[1,1,1,1],[2,3,2,1],[0,3,3,1],[1,1,3,0]],[[2,1,1,1],[2,3,2,1],[0,3,3,1],[1,2,0,1]],[[1,1,1,1],[3,3,2,1],[0,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,4,2,1],[0,3,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,2,1],[0,4,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,2,1],[0,3,4,1],[1,2,0,1]],[[1,1,1,1],[2,3,2,1],[0,3,3,1],[2,2,0,1]],[[1,1,1,1],[2,3,2,1],[0,3,3,1],[1,3,0,1]],[[2,1,1,1],[2,3,2,1],[0,3,3,1],[1,2,1,0]],[[1,1,1,1],[3,3,2,1],[0,3,3,1],[1,2,1,0]],[[1,1,1,1],[2,4,2,1],[0,3,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,2,1],[0,4,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,2,1],[0,3,4,1],[1,2,1,0]],[[1,1,1,1],[2,3,2,1],[0,3,3,1],[2,2,1,0]],[[1,1,1,1],[2,3,2,1],[0,3,3,1],[1,3,1,0]],[[2,2,1,0],[0,3,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,1,0],[0,3,3,1],[2,4,2,2],[0,1,2,0]],[[1,2,1,0],[0,3,3,1],[3,3,2,2],[0,1,2,0]],[[1,2,1,0],[0,3,4,1],[2,3,2,2],[0,1,2,0]],[[1,2,1,0],[0,4,3,1],[2,3,2,2],[0,1,2,0]],[[1,3,1,0],[0,3,3,1],[2,3,2,2],[0,1,2,0]],[[2,2,1,0],[0,3,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,1,0],[0,3,3,1],[2,4,2,2],[0,1,1,1]],[[1,2,1,0],[0,3,3,1],[3,3,2,2],[0,1,1,1]],[[1,2,1,0],[0,3,4,1],[2,3,2,2],[0,1,1,1]],[[1,2,1,0],[0,4,3,1],[2,3,2,2],[0,1,1,1]],[[1,3,1,0],[0,3,3,1],[2,3,2,2],[0,1,1,1]],[[2,2,1,0],[0,3,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,1,0],[0,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,2,1,0],[0,3,3,1],[2,4,2,1],[1,2,0,1]],[[1,2,1,0],[0,3,3,1],[3,3,2,1],[1,2,0,1]],[[1,2,1,0],[0,4,3,1],[2,3,2,1],[1,2,0,1]],[[1,3,1,0],[0,3,3,1],[2,3,2,1],[1,2,0,1]],[[2,2,1,0],[0,3,3,1],[2,3,2,1],[1,2,0,1]],[[1,2,1,0],[0,3,3,1],[2,3,2,1],[2,1,1,1]],[[1,2,1,0],[0,3,3,1],[2,4,2,1],[1,1,1,1]],[[1,2,1,0],[0,3,3,1],[3,3,2,1],[1,1,1,1]],[[1,2,1,0],[0,3,4,1],[2,3,2,1],[1,1,1,1]],[[1,2,1,0],[0,4,3,1],[2,3,2,1],[1,1,1,1]],[[1,3,1,0],[0,3,3,1],[2,3,2,1],[1,1,1,1]],[[2,2,1,0],[0,3,3,1],[2,3,2,1],[1,1,1,1]],[[1,1,1,1],[2,3,2,1],[1,2,4,0],[0,2,2,1]],[[1,1,1,1],[2,3,2,1],[1,2,3,0],[0,3,2,1]],[[1,1,1,1],[2,3,2,1],[1,2,3,0],[0,2,3,1]],[[1,1,1,1],[2,3,2,1],[1,2,3,0],[0,2,2,2]],[[1,1,1,1],[2,3,2,1],[1,2,4,1],[0,2,2,0]],[[1,1,1,1],[2,3,2,1],[1,2,3,1],[0,3,2,0]],[[1,1,1,1],[2,3,2,1],[1,2,3,1],[0,2,3,0]],[[1,2,1,0],[0,3,3,1],[2,3,2,1],[2,0,2,1]],[[1,2,1,0],[0,3,3,1],[2,4,2,1],[1,0,2,1]],[[1,2,1,0],[0,3,3,1],[3,3,2,1],[1,0,2,1]],[[1,2,1,0],[0,3,4,1],[2,3,2,1],[1,0,2,1]],[[1,2,1,0],[0,4,3,1],[2,3,2,1],[1,0,2,1]],[[1,3,1,0],[0,3,3,1],[2,3,2,1],[1,0,2,1]],[[2,2,1,0],[0,3,3,1],[2,3,2,1],[1,0,2,1]],[[1,2,1,0],[0,3,3,1],[2,3,2,1],[0,3,1,1]],[[1,2,1,0],[0,3,3,1],[2,4,2,1],[0,2,1,1]],[[1,2,1,0],[0,3,3,1],[3,3,2,1],[0,2,1,1]],[[1,2,1,0],[0,3,4,1],[2,3,2,1],[0,2,1,1]],[[1,2,1,0],[0,4,3,1],[2,3,2,1],[0,2,1,1]],[[1,3,1,0],[0,3,3,1],[2,3,2,1],[0,2,1,1]],[[2,2,1,0],[0,3,3,1],[2,3,2,1],[0,2,1,1]],[[1,2,1,0],[0,3,3,1],[2,4,2,1],[0,1,2,1]],[[1,2,1,0],[0,3,3,1],[3,3,2,1],[0,1,2,1]],[[1,2,1,0],[0,3,4,1],[2,3,2,1],[0,1,2,1]],[[1,2,1,0],[0,4,3,1],[2,3,2,1],[0,1,2,1]],[[1,3,1,0],[0,3,3,1],[2,3,2,1],[0,1,2,1]],[[2,2,1,0],[0,3,3,1],[2,3,2,1],[0,1,2,1]],[[2,1,1,1],[2,3,2,1],[1,3,2,0],[0,2,2,1]],[[1,1,1,1],[3,3,2,1],[1,3,2,0],[0,2,2,1]],[[1,1,1,1],[2,4,2,1],[1,3,2,0],[0,2,2,1]],[[1,1,1,1],[2,3,2,1],[1,4,2,0],[0,2,2,1]],[[1,1,1,1],[2,3,2,1],[1,3,2,0],[0,3,2,1]],[[1,1,1,1],[2,3,2,1],[1,3,2,0],[0,2,3,1]],[[1,1,1,1],[2,3,2,1],[1,3,2,0],[0,2,2,2]],[[2,1,1,1],[2,3,2,1],[1,3,2,0],[1,1,2,1]],[[1,1,1,1],[3,3,2,1],[1,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,4,2,1],[1,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,3,2,1],[1,4,2,0],[1,1,2,1]],[[2,1,1,1],[2,3,2,1],[1,3,2,1],[0,2,2,0]],[[1,1,1,1],[3,3,2,1],[1,3,2,1],[0,2,2,0]],[[1,1,1,1],[2,4,2,1],[1,3,2,1],[0,2,2,0]],[[1,1,1,1],[2,3,2,1],[1,4,2,1],[0,2,2,0]],[[1,1,1,1],[2,3,2,1],[1,3,2,1],[0,3,2,0]],[[1,1,1,1],[2,3,2,1],[1,3,2,1],[0,2,3,0]],[[2,1,1,1],[2,3,2,1],[1,3,2,1],[1,1,2,0]],[[1,1,1,1],[3,3,2,1],[1,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,4,2,1],[1,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,3,2,1],[1,4,2,1],[1,1,2,0]],[[1,2,1,0],[0,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,1,0],[0,3,3,1],[2,4,1,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,1],[3,3,1,2],[1,1,2,0]],[[1,2,1,0],[0,3,4,1],[2,3,1,2],[1,1,2,0]],[[1,2,1,0],[0,4,3,1],[2,3,1,2],[1,1,2,0]],[[1,3,1,0],[0,3,3,1],[2,3,1,2],[1,1,2,0]],[[2,2,1,0],[0,3,3,1],[2,3,1,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,1],[2,3,1,2],[0,2,3,0]],[[1,2,1,0],[0,3,3,1],[2,3,1,2],[0,3,2,0]],[[1,2,1,0],[0,3,3,1],[2,4,1,2],[0,2,2,0]],[[1,2,1,0],[0,3,3,1],[3,3,1,2],[0,2,2,0]],[[1,2,1,0],[0,3,4,1],[2,3,1,2],[0,2,2,0]],[[1,2,1,0],[0,4,3,1],[2,3,1,2],[0,2,2,0]],[[1,3,1,0],[0,3,3,1],[2,3,1,2],[0,2,2,0]],[[2,1,1,1],[2,3,2,1],[1,3,3,0],[0,1,2,1]],[[1,1,1,1],[3,3,2,1],[1,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,4,2,1],[1,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,2,1],[1,4,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,2,1],[1,3,4,0],[0,1,2,1]],[[1,1,1,1],[2,3,2,1],[1,3,3,0],[0,1,3,1]],[[1,1,1,1],[2,3,2,1],[1,3,3,0],[0,1,2,2]],[[2,1,1,1],[2,3,2,1],[1,3,3,0],[0,2,1,1]],[[1,1,1,1],[3,3,2,1],[1,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,4,2,1],[1,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,2,1],[1,4,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,2,1],[1,3,4,0],[0,2,1,1]],[[1,1,1,1],[2,3,2,1],[1,3,3,0],[0,3,1,1]],[[2,1,1,1],[2,3,2,1],[1,3,3,0],[1,0,2,1]],[[1,1,1,1],[3,3,2,1],[1,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,4,2,1],[1,3,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,2,1],[1,4,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,2,1],[1,3,4,0],[1,0,2,1]],[[1,1,1,1],[2,3,2,1],[1,3,3,0],[1,0,3,1]],[[1,1,1,1],[2,3,2,1],[1,3,3,0],[1,0,2,2]],[[2,1,1,1],[2,3,2,1],[1,3,3,0],[1,1,1,1]],[[1,1,1,1],[3,3,2,1],[1,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,4,2,1],[1,3,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,2,1],[1,4,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,2,1],[1,3,4,0],[1,1,1,1]],[[2,1,1,1],[2,3,2,1],[1,3,3,0],[1,2,0,1]],[[1,1,1,1],[3,3,2,1],[1,3,3,0],[1,2,0,1]],[[1,1,1,1],[2,4,2,1],[1,3,3,0],[1,2,0,1]],[[1,1,1,1],[2,3,2,1],[1,4,3,0],[1,2,0,1]],[[2,2,1,0],[0,3,3,1],[2,3,1,2],[0,2,2,0]],[[2,1,1,1],[2,3,2,1],[1,3,3,1],[0,1,1,1]],[[1,1,1,1],[3,3,2,1],[1,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,4,2,1],[1,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,2,1],[1,4,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,2,1],[1,3,4,1],[0,1,1,1]],[[2,1,1,1],[2,3,2,1],[1,3,3,1],[0,1,2,0]],[[1,1,1,1],[3,3,2,1],[1,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,4,2,1],[1,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,2,1],[1,4,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,2,1],[1,3,4,1],[0,1,2,0]],[[1,1,1,1],[2,3,2,1],[1,3,3,1],[0,1,3,0]],[[2,1,1,1],[2,3,2,1],[1,3,3,1],[0,2,0,1]],[[1,1,1,1],[3,3,2,1],[1,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,4,2,1],[1,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,2,1],[1,4,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,2,1],[1,3,4,1],[0,2,0,1]],[[1,1,1,1],[2,3,2,1],[1,3,3,1],[0,3,0,1]],[[2,1,1,1],[2,3,2,1],[1,3,3,1],[0,2,1,0]],[[1,1,1,1],[3,3,2,1],[1,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,4,2,1],[1,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,2,1],[1,4,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,2,1],[1,3,4,1],[0,2,1,0]],[[1,1,1,1],[2,3,2,1],[1,3,3,1],[0,3,1,0]],[[1,2,1,0],[0,3,3,1],[2,3,1,1],[2,1,2,1]],[[1,2,1,0],[0,3,3,1],[2,4,1,1],[1,1,2,1]],[[1,2,1,0],[0,3,3,1],[3,3,1,1],[1,1,2,1]],[[1,2,1,0],[0,3,4,1],[2,3,1,1],[1,1,2,1]],[[1,2,1,0],[0,4,3,1],[2,3,1,1],[1,1,2,1]],[[1,3,1,0],[0,3,3,1],[2,3,1,1],[1,1,2,1]],[[2,1,1,1],[2,3,2,1],[1,3,3,1],[1,0,1,1]],[[1,1,1,1],[3,3,2,1],[1,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,4,2,1],[1,3,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,2,1],[1,4,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,2,1],[1,3,4,1],[1,0,1,1]],[[2,1,1,1],[2,3,2,1],[1,3,3,1],[1,0,2,0]],[[1,1,1,1],[3,3,2,1],[1,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,4,2,1],[1,3,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,2,1],[1,4,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,2,1],[1,3,4,1],[1,0,2,0]],[[1,1,1,1],[2,3,2,1],[1,3,3,1],[1,0,3,0]],[[2,1,1,1],[2,3,2,1],[1,3,3,1],[1,1,0,1]],[[1,1,1,1],[3,3,2,1],[1,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,4,2,1],[1,3,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,2,1],[1,4,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,2,1],[1,3,4,1],[1,1,0,1]],[[2,1,1,1],[2,3,2,1],[1,3,3,1],[1,1,1,0]],[[1,1,1,1],[3,3,2,1],[1,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,4,2,1],[1,3,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,2,1],[1,4,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,2,1],[1,3,4,1],[1,1,1,0]],[[2,2,1,0],[0,3,3,1],[2,3,1,1],[1,1,2,1]],[[1,2,1,0],[0,3,3,1],[2,3,1,1],[0,2,2,2]],[[1,2,1,0],[0,3,3,1],[2,3,1,1],[0,2,3,1]],[[1,2,1,0],[0,3,3,1],[2,3,1,1],[0,3,2,1]],[[1,2,1,0],[0,3,3,1],[2,4,1,1],[0,2,2,1]],[[1,2,1,0],[0,3,3,1],[3,3,1,1],[0,2,2,1]],[[1,2,1,0],[0,3,4,1],[2,3,1,1],[0,2,2,1]],[[2,1,1,1],[2,3,2,1],[1,3,3,1],[1,2,0,0]],[[1,1,1,1],[3,3,2,1],[1,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,4,2,1],[1,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,3,2,1],[1,4,3,1],[1,2,0,0]],[[1,2,1,0],[0,4,3,1],[2,3,1,1],[0,2,2,1]],[[1,3,1,0],[0,3,3,1],[2,3,1,1],[0,2,2,1]],[[2,2,1,0],[0,3,3,1],[2,3,1,1],[0,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,3,0,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,1],[2,3,0,2],[2,2,2,0]],[[1,2,1,0],[0,3,3,1],[3,3,0,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,1],[2,3,0,2],[2,1,2,1]],[[1,2,1,0],[0,3,3,1],[2,4,0,2],[1,1,2,1]],[[1,2,1,0],[0,3,3,1],[3,3,0,2],[1,1,2,1]],[[1,2,1,0],[0,3,4,1],[2,3,0,2],[1,1,2,1]],[[1,2,1,0],[0,4,3,1],[2,3,0,2],[1,1,2,1]],[[1,3,1,0],[0,3,3,1],[2,3,0,2],[1,1,2,1]],[[2,2,1,0],[0,3,3,1],[2,3,0,2],[1,1,2,1]],[[1,2,1,0],[0,3,3,1],[2,3,0,2],[0,2,2,2]],[[1,2,1,0],[0,3,3,1],[2,3,0,2],[0,2,3,1]],[[1,2,1,0],[0,3,3,1],[2,3,0,2],[0,3,2,1]],[[1,2,1,0],[0,3,3,1],[2,3,0,3],[0,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,4,0,2],[0,2,2,1]],[[1,2,1,0],[0,3,3,1],[3,3,0,2],[0,2,2,1]],[[1,2,1,0],[0,3,4,1],[2,3,0,2],[0,2,2,1]],[[1,2,1,0],[0,4,3,1],[2,3,0,2],[0,2,2,1]],[[1,3,1,0],[0,3,3,1],[2,3,0,2],[0,2,2,1]],[[2,2,1,0],[0,3,3,1],[2,3,0,2],[0,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,3,0,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,1],[2,3,0,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,1],[3,3,0,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,1,0],[0,3,3,1],[2,2,4,2],[1,1,1,0]],[[1,2,1,0],[0,3,4,1],[2,2,3,2],[1,1,1,0]],[[1,2,1,0],[0,4,3,1],[2,2,3,2],[1,1,1,0]],[[1,3,1,0],[0,3,3,1],[2,2,3,2],[1,1,1,0]],[[2,2,1,0],[0,3,3,1],[2,2,3,2],[1,1,1,0]],[[1,2,1,0],[0,3,3,1],[2,2,3,2],[1,1,0,2]],[[1,2,1,0],[0,3,3,1],[2,2,3,3],[1,1,0,1]],[[1,2,1,0],[0,3,3,1],[2,2,4,2],[1,1,0,1]],[[1,2,1,0],[0,3,4,1],[2,2,3,2],[1,1,0,1]],[[1,2,1,0],[0,4,3,1],[2,2,3,2],[1,1,0,1]],[[1,3,1,0],[0,3,3,1],[2,2,3,2],[1,1,0,1]],[[2,2,1,0],[0,3,3,1],[2,2,3,2],[1,1,0,1]],[[1,2,1,0],[0,3,3,1],[2,2,3,2],[1,0,3,0]],[[1,2,1,0],[0,3,3,1],[2,2,3,3],[1,0,2,0]],[[1,2,1,0],[0,3,3,1],[2,2,4,2],[1,0,2,0]],[[1,2,1,0],[0,3,4,1],[2,2,3,2],[1,0,2,0]],[[1,2,1,0],[0,4,3,1],[2,2,3,2],[1,0,2,0]],[[1,3,1,0],[0,3,3,1],[2,2,3,2],[1,0,2,0]],[[2,2,1,0],[0,3,3,1],[2,2,3,2],[1,0,2,0]],[[1,2,1,0],[0,3,3,1],[2,2,3,2],[1,0,1,2]],[[1,2,1,0],[0,3,3,1],[2,2,3,3],[1,0,1,1]],[[1,2,1,0],[0,3,3,1],[2,2,4,2],[1,0,1,1]],[[1,2,1,0],[0,3,4,1],[2,2,3,2],[1,0,1,1]],[[1,2,1,0],[0,4,3,1],[2,2,3,2],[1,0,1,1]],[[1,3,1,0],[0,3,3,1],[2,2,3,2],[1,0,1,1]],[[2,2,1,0],[0,3,3,1],[2,2,3,2],[1,0,1,1]],[[1,2,1,0],[0,3,3,1],[2,2,3,3],[0,2,1,0]],[[1,2,1,0],[0,3,3,1],[2,2,4,2],[0,2,1,0]],[[1,2,1,0],[0,3,4,1],[2,2,3,2],[0,2,1,0]],[[1,2,1,0],[0,4,3,1],[2,2,3,2],[0,2,1,0]],[[1,3,1,0],[0,3,3,1],[2,2,3,2],[0,2,1,0]],[[2,2,1,0],[0,3,3,1],[2,2,3,2],[0,2,1,0]],[[1,2,1,0],[0,3,3,1],[2,2,3,2],[0,2,0,2]],[[1,2,1,0],[0,3,3,1],[2,2,3,3],[0,2,0,1]],[[1,2,1,0],[0,3,3,1],[2,2,4,2],[0,2,0,1]],[[1,2,1,0],[0,3,4,1],[2,2,3,2],[0,2,0,1]],[[1,2,1,0],[0,4,3,1],[2,2,3,2],[0,2,0,1]],[[1,3,1,0],[0,3,3,1],[2,2,3,2],[0,2,0,1]],[[2,1,1,1],[2,3,2,1],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[3,3,2,1],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,4,2,1],[2,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,1],[3,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,1],[2,0,4,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,1],[2,0,3,0],[2,2,2,1]],[[1,1,1,1],[2,3,2,1],[2,0,3,0],[1,3,2,1]],[[1,1,1,1],[2,3,2,1],[2,0,3,0],[1,2,3,1]],[[1,1,1,1],[2,3,2,1],[2,0,3,0],[1,2,2,2]],[[2,1,1,1],[2,3,2,1],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[3,3,2,1],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,4,2,1],[2,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,3,2,1],[3,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,3,2,1],[2,0,4,1],[1,2,2,0]],[[1,1,1,1],[2,3,2,1],[2,0,3,1],[2,2,2,0]],[[1,1,1,1],[2,3,2,1],[2,0,3,1],[1,3,2,0]],[[1,1,1,1],[2,3,2,1],[2,0,3,1],[1,2,3,0]],[[2,2,1,0],[0,3,3,1],[2,2,3,2],[0,2,0,1]],[[1,2,1,0],[0,3,3,1],[2,2,3,2],[0,1,3,0]],[[2,1,1,1],[2,3,2,1],[2,1,2,0],[1,2,2,1]],[[1,1,1,1],[3,3,2,1],[2,1,2,0],[1,2,2,1]],[[1,1,1,1],[2,4,2,1],[2,1,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,1],[3,1,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,1],[2,1,2,0],[2,2,2,1]],[[1,1,1,1],[2,3,2,1],[2,1,2,0],[1,3,2,1]],[[1,1,1,1],[2,3,2,1],[2,1,2,0],[1,2,3,1]],[[1,1,1,1],[2,3,2,1],[2,1,2,0],[1,2,2,2]],[[2,1,1,1],[2,3,2,1],[2,1,2,1],[1,2,2,0]],[[1,1,1,1],[3,3,2,1],[2,1,2,1],[1,2,2,0]],[[1,1,1,1],[2,4,2,1],[2,1,2,1],[1,2,2,0]],[[1,1,1,1],[2,3,2,1],[3,1,2,1],[1,2,2,0]],[[1,1,1,1],[2,3,2,1],[2,1,2,1],[2,2,2,0]],[[1,1,1,1],[2,3,2,1],[2,1,2,1],[1,3,2,0]],[[1,1,1,1],[2,3,2,1],[2,1,2,1],[1,2,3,0]],[[1,2,1,0],[0,3,3,1],[2,2,3,3],[0,1,2,0]],[[1,2,1,0],[0,3,3,1],[2,2,4,2],[0,1,2,0]],[[1,2,1,0],[0,3,4,1],[2,2,3,2],[0,1,2,0]],[[1,2,1,0],[0,4,3,1],[2,2,3,2],[0,1,2,0]],[[1,3,1,0],[0,3,3,1],[2,2,3,2],[0,1,2,0]],[[2,2,1,0],[0,3,3,1],[2,2,3,2],[0,1,2,0]],[[1,2,1,0],[0,3,3,1],[2,2,3,2],[0,1,1,2]],[[1,2,1,0],[0,3,3,1],[2,2,3,3],[0,1,1,1]],[[1,2,1,0],[0,3,3,1],[2,2,4,2],[0,1,1,1]],[[2,1,1,1],[2,3,2,1],[2,1,3,0],[1,2,1,1]],[[1,1,1,1],[3,3,2,1],[2,1,3,0],[1,2,1,1]],[[1,1,1,1],[2,4,2,1],[2,1,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,2,1],[3,1,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,2,1],[2,1,3,0],[2,2,1,1]],[[1,1,1,1],[2,3,2,1],[2,1,3,0],[1,3,1,1]],[[2,1,1,1],[2,3,2,1],[2,1,3,1],[1,2,0,1]],[[1,1,1,1],[3,3,2,1],[2,1,3,1],[1,2,0,1]],[[1,1,1,1],[2,4,2,1],[2,1,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,2,1],[3,1,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,2,1],[2,1,3,1],[2,2,0,1]],[[1,1,1,1],[2,3,2,1],[2,1,3,1],[1,3,0,1]],[[2,1,1,1],[2,3,2,1],[2,1,3,1],[1,2,1,0]],[[1,1,1,1],[3,3,2,1],[2,1,3,1],[1,2,1,0]],[[1,1,1,1],[2,4,2,1],[2,1,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,2,1],[3,1,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,2,1],[2,1,3,1],[2,2,1,0]],[[1,1,1,1],[2,3,2,1],[2,1,3,1],[1,3,1,0]],[[1,2,1,0],[0,3,4,1],[2,2,3,2],[0,1,1,1]],[[1,2,1,0],[0,4,3,1],[2,2,3,2],[0,1,1,1]],[[1,3,1,0],[0,3,3,1],[2,2,3,2],[0,1,1,1]],[[2,2,1,0],[0,3,3,1],[2,2,3,2],[0,1,1,1]],[[1,2,1,0],[0,3,3,1],[2,2,3,2],[0,0,2,2]],[[1,2,1,0],[0,3,3,1],[2,2,3,3],[0,0,2,1]],[[1,2,1,0],[0,3,3,1],[2,2,4,2],[0,0,2,1]],[[1,2,1,0],[0,3,4,1],[2,2,3,2],[0,0,2,1]],[[1,2,1,0],[0,4,3,1],[2,2,3,2],[0,0,2,1]],[[1,3,1,0],[0,3,3,1],[2,2,3,2],[0,0,2,1]],[[2,2,1,0],[0,3,3,1],[2,2,3,2],[0,0,2,1]],[[1,2,1,0],[0,3,3,1],[2,2,4,1],[1,1,1,1]],[[1,2,1,0],[0,3,4,1],[2,2,3,1],[1,1,1,1]],[[1,2,1,0],[0,4,3,1],[2,2,3,1],[1,1,1,1]],[[1,3,1,0],[0,3,3,1],[2,2,3,1],[1,1,1,1]],[[2,2,1,0],[0,3,3,1],[2,2,3,1],[1,1,1,1]],[[1,2,1,0],[0,3,3,1],[2,2,3,1],[1,0,2,2]],[[1,2,1,0],[0,3,3,1],[2,2,3,1],[1,0,3,1]],[[1,2,1,0],[0,3,3,1],[2,2,4,1],[1,0,2,1]],[[1,2,1,0],[0,3,4,1],[2,2,3,1],[1,0,2,1]],[[1,2,1,0],[0,4,3,1],[2,2,3,1],[1,0,2,1]],[[1,3,1,0],[0,3,3,1],[2,2,3,1],[1,0,2,1]],[[2,2,1,0],[0,3,3,1],[2,2,3,1],[1,0,2,1]],[[2,1,1,1],[2,3,2,1],[2,2,2,0],[0,2,2,1]],[[1,1,1,1],[3,3,2,1],[2,2,2,0],[0,2,2,1]],[[1,1,1,1],[2,4,2,1],[2,2,2,0],[0,2,2,1]],[[1,1,1,1],[2,3,2,1],[3,2,2,0],[0,2,2,1]],[[2,1,1,1],[2,3,2,1],[2,2,2,0],[1,1,2,1]],[[1,1,1,1],[3,3,2,1],[2,2,2,0],[1,1,2,1]],[[1,1,1,1],[2,4,2,1],[2,2,2,0],[1,1,2,1]],[[1,1,1,1],[2,3,2,1],[3,2,2,0],[1,1,2,1]],[[1,1,1,1],[2,3,2,1],[2,2,2,0],[2,1,2,1]],[[2,1,1,1],[2,3,2,1],[2,2,2,1],[0,2,2,0]],[[1,1,1,1],[3,3,2,1],[2,2,2,1],[0,2,2,0]],[[1,1,1,1],[2,4,2,1],[2,2,2,1],[0,2,2,0]],[[1,1,1,1],[2,3,2,1],[3,2,2,1],[0,2,2,0]],[[2,1,1,1],[2,3,2,1],[2,2,2,1],[1,1,2,0]],[[1,1,1,1],[3,3,2,1],[2,2,2,1],[1,1,2,0]],[[1,1,1,1],[2,4,2,1],[2,2,2,1],[1,1,2,0]],[[1,1,1,1],[2,3,2,1],[3,2,2,1],[1,1,2,0]],[[1,1,1,1],[2,3,2,1],[2,2,2,1],[2,1,2,0]],[[1,2,1,0],[0,3,3,1],[2,2,4,1],[0,2,1,1]],[[1,2,1,0],[0,3,4,1],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[0,4,3,1],[2,2,3,1],[0,2,1,1]],[[1,3,1,0],[0,3,3,1],[2,2,3,1],[0,2,1,1]],[[2,2,1,0],[0,3,3,1],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[0,3,3,1],[2,2,3,1],[0,1,2,2]],[[1,2,1,0],[0,3,3,1],[2,2,3,1],[0,1,3,1]],[[1,2,1,0],[0,3,3,1],[2,2,4,1],[0,1,2,1]],[[1,2,1,0],[0,3,4,1],[2,2,3,1],[0,1,2,1]],[[1,2,1,0],[0,4,3,1],[2,2,3,1],[0,1,2,1]],[[1,3,1,0],[0,3,3,1],[2,2,3,1],[0,1,2,1]],[[2,2,1,0],[0,3,3,1],[2,2,3,1],[0,1,2,1]],[[1,2,1,0],[0,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,1,0],[0,3,3,1],[2,2,2,2],[2,2,1,0]],[[1,2,1,0],[0,3,3,1],[3,2,2,2],[1,2,1,0]],[[1,2,1,0],[0,3,3,1],[2,2,2,2],[1,3,0,1]],[[1,2,1,0],[0,3,3,1],[2,2,2,2],[2,2,0,1]],[[1,2,1,0],[0,3,3,1],[3,2,2,2],[1,2,0,1]],[[1,2,1,0],[0,3,3,1],[2,2,2,2],[1,0,2,2]],[[1,2,1,0],[0,3,3,1],[2,2,2,2],[1,0,3,1]],[[1,2,1,0],[0,3,3,1],[2,2,2,3],[1,0,2,1]],[[2,1,1,1],[2,3,2,1],[2,2,3,0],[0,1,2,1]],[[1,1,1,1],[3,3,2,1],[2,2,3,0],[0,1,2,1]],[[1,1,1,1],[2,4,2,1],[2,2,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,2,1],[3,2,3,0],[0,1,2,1]],[[2,1,1,1],[2,3,2,1],[2,2,3,0],[0,2,1,1]],[[1,1,1,1],[3,3,2,1],[2,2,3,0],[0,2,1,1]],[[1,1,1,1],[2,4,2,1],[2,2,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,2,1],[3,2,3,0],[0,2,1,1]],[[2,1,1,1],[2,3,2,1],[2,2,3,0],[1,0,2,1]],[[1,1,1,1],[3,3,2,1],[2,2,3,0],[1,0,2,1]],[[1,1,1,1],[2,4,2,1],[2,2,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,2,1],[3,2,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,2,1],[2,2,3,0],[2,0,2,1]],[[2,1,1,1],[2,3,2,1],[2,2,3,0],[1,1,1,1]],[[1,1,1,1],[3,3,2,1],[2,2,3,0],[1,1,1,1]],[[1,1,1,1],[2,4,2,1],[2,2,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,2,1],[3,2,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,2,1],[2,2,3,0],[2,1,1,1]],[[2,1,1,1],[2,3,2,1],[2,2,3,0],[1,2,0,1]],[[1,1,1,1],[3,3,2,1],[2,2,3,0],[1,2,0,1]],[[1,1,1,1],[2,4,2,1],[2,2,3,0],[1,2,0,1]],[[1,1,1,1],[2,3,2,1],[3,2,3,0],[1,2,0,1]],[[1,1,1,1],[2,3,2,1],[2,2,3,0],[2,2,0,1]],[[1,2,1,0],[0,3,3,1],[2,2,2,2],[0,1,2,2]],[[1,2,1,0],[0,3,3,1],[2,2,2,2],[0,1,3,1]],[[1,2,1,0],[0,3,3,1],[2,2,2,3],[0,1,2,1]],[[2,1,1,1],[2,3,2,1],[2,2,3,1],[0,1,1,1]],[[1,1,1,1],[3,3,2,1],[2,2,3,1],[0,1,1,1]],[[1,1,1,1],[2,4,2,1],[2,2,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,2,1],[3,2,3,1],[0,1,1,1]],[[2,1,1,1],[2,3,2,1],[2,2,3,1],[0,1,2,0]],[[1,1,1,1],[3,3,2,1],[2,2,3,1],[0,1,2,0]],[[1,1,1,1],[2,4,2,1],[2,2,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,2,1],[3,2,3,1],[0,1,2,0]],[[2,1,1,1],[2,3,2,1],[2,2,3,1],[0,2,0,1]],[[1,1,1,1],[3,3,2,1],[2,2,3,1],[0,2,0,1]],[[1,1,1,1],[2,4,2,1],[2,2,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,2,1],[3,2,3,1],[0,2,0,1]],[[2,1,1,1],[2,3,2,1],[2,2,3,1],[0,2,1,0]],[[1,1,1,1],[3,3,2,1],[2,2,3,1],[0,2,1,0]],[[1,1,1,1],[2,4,2,1],[2,2,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,2,1],[3,2,3,1],[0,2,1,0]],[[1,2,1,0],[0,3,3,1],[2,2,2,1],[1,3,1,1]],[[1,2,1,0],[0,3,3,1],[2,2,2,1],[2,2,1,1]],[[1,2,1,0],[0,3,3,1],[3,2,2,1],[1,2,1,1]],[[2,1,1,1],[2,3,2,1],[2,2,3,1],[1,0,1,1]],[[1,1,1,1],[3,3,2,1],[2,2,3,1],[1,0,1,1]],[[1,1,1,1],[2,4,2,1],[2,2,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,2,1],[3,2,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,2,1],[2,2,3,1],[2,0,1,1]],[[2,1,1,1],[2,3,2,1],[2,2,3,1],[1,0,2,0]],[[1,1,1,1],[3,3,2,1],[2,2,3,1],[1,0,2,0]],[[1,1,1,1],[2,4,2,1],[2,2,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,2,1],[3,2,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,2,1],[2,2,3,1],[2,0,2,0]],[[2,1,1,1],[2,3,2,1],[2,2,3,1],[1,1,0,1]],[[1,1,1,1],[3,3,2,1],[2,2,3,1],[1,1,0,1]],[[1,1,1,1],[2,4,2,1],[2,2,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,2,1],[3,2,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,2,1],[2,2,3,1],[2,1,0,1]],[[2,1,1,1],[2,3,2,1],[2,2,3,1],[1,1,1,0]],[[1,1,1,1],[3,3,2,1],[2,2,3,1],[1,1,1,0]],[[1,1,1,1],[2,4,2,1],[2,2,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,2,1],[3,2,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,2,1],[2,2,3,1],[2,1,1,0]],[[1,2,1,0],[0,3,3,1],[2,2,1,2],[1,2,3,0]],[[1,2,1,0],[0,3,3,1],[2,2,1,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,1],[2,2,1,2],[2,2,2,0]],[[2,1,1,1],[2,3,2,1],[2,2,3,1],[1,2,0,0]],[[1,1,1,1],[3,3,2,1],[2,2,3,1],[1,2,0,0]],[[1,1,1,1],[2,4,2,1],[2,2,3,1],[1,2,0,0]],[[1,1,1,1],[2,3,2,1],[3,2,3,1],[1,2,0,0]],[[1,1,1,1],[2,3,2,1],[2,2,3,1],[2,2,0,0]],[[1,2,1,0],[0,3,3,1],[3,2,1,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,1],[2,2,1,1],[1,2,2,2]],[[1,2,1,0],[0,3,3,1],[2,2,1,1],[1,2,3,1]],[[1,2,1,0],[0,3,3,1],[2,2,1,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,1],[2,2,1,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,1],[3,2,1,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,2,0,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,1],[2,2,0,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,1],[2,2,0,2],[1,3,2,1]],[[1,2,1,0],[0,3,3,1],[2,2,0,2],[2,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,2,0,3],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[3,2,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,1,3,2],[0,2,3,0]],[[1,2,1,0],[0,3,3,1],[2,1,3,2],[0,3,2,0]],[[1,2,1,0],[0,3,3,1],[2,1,3,3],[0,2,2,0]],[[1,2,1,0],[0,3,3,1],[2,1,4,2],[0,2,2,0]],[[1,2,1,0],[0,3,4,1],[2,1,3,2],[0,2,2,0]],[[1,2,1,0],[0,4,3,1],[2,1,3,2],[0,2,2,0]],[[1,3,1,0],[0,3,3,1],[2,1,3,2],[0,2,2,0]],[[2,2,1,0],[0,3,3,1],[2,1,3,2],[0,2,2,0]],[[1,2,1,0],[0,3,3,1],[2,1,3,2],[0,2,1,2]],[[1,2,1,0],[0,3,3,1],[2,1,3,3],[0,2,1,1]],[[1,2,1,0],[0,3,3,1],[2,1,4,2],[0,2,1,1]],[[1,2,1,0],[0,3,4,1],[2,1,3,2],[0,2,1,1]],[[1,2,1,0],[0,4,3,1],[2,1,3,2],[0,2,1,1]],[[1,3,1,0],[0,3,3,1],[2,1,3,2],[0,2,1,1]],[[2,2,1,0],[0,3,3,1],[2,1,3,2],[0,2,1,1]],[[1,2,1,0],[0,3,3,1],[2,1,3,1],[0,2,2,2]],[[1,2,1,0],[0,3,3,1],[2,1,3,1],[0,2,3,1]],[[1,2,1,0],[0,3,3,1],[2,1,3,1],[0,3,2,1]],[[1,2,1,0],[0,3,3,1],[2,1,4,1],[0,2,2,1]],[[1,2,1,0],[0,3,4,1],[2,1,3,1],[0,2,2,1]],[[1,2,1,0],[0,4,3,1],[2,1,3,1],[0,2,2,1]],[[1,3,1,0],[0,3,3,1],[2,1,3,1],[0,2,2,1]],[[2,2,1,0],[0,3,3,1],[2,1,3,1],[0,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,1,2,2],[0,2,2,2]],[[1,2,1,0],[0,3,3,1],[2,1,2,2],[0,2,3,1]],[[1,2,1,0],[0,3,3,1],[2,1,2,2],[0,3,2,1]],[[1,2,1,0],[0,3,3,1],[2,1,2,3],[0,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,3,1],[2,0,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,1],[2,0,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,3,1],[2,0,3,3],[1,2,2,0]],[[1,2,1,0],[0,3,3,1],[2,0,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,1],[3,0,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,4,1],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[0,4,3,1],[2,0,3,2],[1,2,2,0]],[[1,3,1,0],[0,3,3,1],[2,0,3,2],[1,2,2,0]],[[2,2,1,0],[0,3,3,1],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,1],[2,0,3,2],[1,2,1,2]],[[1,2,1,0],[0,3,3,1],[2,0,3,3],[1,2,1,1]],[[1,2,1,0],[0,3,3,1],[2,0,4,2],[1,2,1,1]],[[1,2,1,0],[0,3,4,1],[2,0,3,2],[1,2,1,1]],[[1,2,1,0],[0,4,3,1],[2,0,3,2],[1,2,1,1]],[[1,3,1,0],[0,3,3,1],[2,0,3,2],[1,2,1,1]],[[2,2,1,0],[0,3,3,1],[2,0,3,2],[1,2,1,1]],[[1,2,1,0],[0,3,3,1],[2,0,3,2],[0,2,2,2]],[[1,2,1,0],[0,3,3,1],[2,0,3,2],[0,2,3,1]],[[2,1,1,1],[2,3,2,1],[2,3,0,0],[1,2,2,1]],[[1,1,1,1],[3,3,2,1],[2,3,0,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,1],[3,3,0,0],[1,2,2,1]],[[1,1,1,1],[2,3,2,1],[2,3,0,0],[2,2,2,1]],[[1,1,1,1],[2,3,2,1],[2,3,0,0],[1,3,2,1]],[[2,1,1,1],[2,3,2,1],[2,3,0,1],[1,2,2,0]],[[1,1,1,1],[3,3,2,1],[2,3,0,1],[1,2,2,0]],[[1,1,1,1],[2,3,2,1],[3,3,0,1],[1,2,2,0]],[[1,1,1,1],[2,3,2,1],[2,3,0,1],[2,2,2,0]],[[1,1,1,1],[2,3,2,1],[2,3,0,1],[1,3,2,0]],[[1,2,1,0],[0,3,3,1],[2,0,3,3],[0,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,0,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,3,1],[2,0,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,3,1],[2,0,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,1],[2,0,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,0,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[3,0,3,1],[1,2,2,1]],[[1,2,1,0],[0,3,4,1],[2,0,3,1],[1,2,2,1]],[[1,2,1,0],[0,4,3,1],[2,0,3,1],[1,2,2,1]],[[1,3,1,0],[0,3,3,1],[2,0,3,1],[1,2,2,1]],[[2,2,1,0],[0,3,3,1],[2,0,3,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,0,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,1],[2,0,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,1],[2,0,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,3,1],[2,0,2,2],[2,2,2,1]],[[1,2,1,0],[0,3,3,1],[2,0,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[3,0,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,2,1,0],[0,3,4,1],[1,3,3,2],[1,2,0,0]],[[1,2,1,0],[0,4,3,1],[1,3,3,2],[1,2,0,0]],[[1,3,1,0],[0,3,3,1],[1,3,3,2],[1,2,0,0]],[[2,2,1,0],[0,3,3,1],[1,3,3,2],[1,2,0,0]],[[1,2,1,0],[0,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,1,0],[0,3,3,1],[1,3,2,2],[2,2,1,0]],[[1,2,1,0],[0,3,3,1],[1,4,2,2],[1,2,1,0]],[[1,2,1,0],[0,3,4,1],[1,3,2,2],[1,2,1,0]],[[1,2,1,0],[0,4,3,1],[1,3,2,2],[1,2,1,0]],[[1,3,1,0],[0,3,3,1],[1,3,2,2],[1,2,1,0]],[[2,2,1,0],[0,3,3,1],[1,3,2,2],[1,2,1,0]],[[1,2,1,0],[0,3,3,1],[1,3,2,2],[1,3,0,1]],[[1,2,1,0],[0,3,3,1],[1,3,2,2],[2,2,0,1]],[[1,2,1,0],[0,3,3,1],[1,4,2,2],[1,2,0,1]],[[1,2,1,0],[0,3,4,1],[1,3,2,2],[1,2,0,1]],[[1,2,1,0],[0,4,3,1],[1,3,2,2],[1,2,0,1]],[[1,3,1,0],[0,3,3,1],[1,3,2,2],[1,2,0,1]],[[2,2,1,0],[0,3,3,1],[1,3,2,2],[1,2,0,1]],[[1,2,1,0],[0,3,3,1],[1,4,2,2],[1,1,2,0]],[[1,2,1,0],[0,3,4,1],[1,3,2,2],[1,1,2,0]],[[1,2,1,0],[0,4,3,1],[1,3,2,2],[1,1,2,0]],[[1,3,1,0],[0,3,3,1],[1,3,2,2],[1,1,2,0]],[[2,2,1,0],[0,3,3,1],[1,3,2,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,1],[1,4,2,2],[1,1,1,1]],[[1,2,1,0],[0,3,4,1],[1,3,2,2],[1,1,1,1]],[[1,2,1,0],[0,4,3,1],[1,3,2,2],[1,1,1,1]],[[1,3,1,0],[0,3,3,1],[1,3,2,2],[1,1,1,1]],[[2,2,1,0],[0,3,3,1],[1,3,2,2],[1,1,1,1]],[[1,2,1,0],[0,3,3,1],[1,3,2,1],[1,3,1,1]],[[1,2,1,0],[0,3,3,1],[1,3,2,1],[2,2,1,1]],[[1,2,1,0],[0,3,3,1],[1,4,2,1],[1,2,1,1]],[[1,2,1,0],[0,3,4,1],[1,3,2,1],[1,2,1,1]],[[2,1,1,1],[2,3,2,1],[2,3,3,0],[1,0,1,1]],[[1,1,1,1],[3,3,2,1],[2,3,3,0],[1,0,1,1]],[[1,1,1,1],[2,4,2,1],[2,3,3,0],[1,0,1,1]],[[1,1,1,1],[2,3,2,1],[3,3,3,0],[1,0,1,1]],[[1,2,1,0],[0,4,3,1],[1,3,2,1],[1,2,1,1]],[[1,3,1,0],[0,3,3,1],[1,3,2,1],[1,2,1,1]],[[2,2,1,0],[0,3,3,1],[1,3,2,1],[1,2,1,1]],[[1,2,1,0],[0,3,3,1],[1,4,2,1],[1,1,2,1]],[[1,2,1,0],[0,3,4,1],[1,3,2,1],[1,1,2,1]],[[1,2,1,0],[0,4,3,1],[1,3,2,1],[1,1,2,1]],[[1,3,1,0],[0,3,3,1],[1,3,2,1],[1,1,2,1]],[[2,2,1,0],[0,3,3,1],[1,3,2,1],[1,1,2,1]],[[1,2,1,0],[0,3,3,1],[1,3,1,2],[1,2,3,0]],[[1,2,1,0],[0,3,3,1],[1,3,1,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,1],[1,3,1,2],[2,2,2,0]],[[1,2,1,0],[0,3,3,1],[1,4,1,2],[1,2,2,0]],[[1,2,1,0],[0,3,4,1],[1,3,1,2],[1,2,2,0]],[[1,2,1,0],[0,4,3,1],[1,3,1,2],[1,2,2,0]],[[1,3,1,0],[0,3,3,1],[1,3,1,2],[1,2,2,0]],[[2,2,1,0],[0,3,3,1],[1,3,1,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,1],[1,3,1,1],[1,2,2,2]],[[1,2,1,0],[0,3,3,1],[1,3,1,1],[1,2,3,1]],[[1,2,1,0],[0,3,3,1],[1,3,1,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,1],[1,3,1,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,1],[1,4,1,1],[1,2,2,1]],[[1,2,1,0],[0,3,4,1],[1,3,1,1],[1,2,2,1]],[[1,2,1,0],[0,4,3,1],[1,3,1,1],[1,2,2,1]],[[1,3,1,0],[0,3,3,1],[1,3,1,1],[1,2,2,1]],[[2,2,1,0],[0,3,3,1],[1,3,1,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[1,3,0,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,1],[1,3,0,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,1],[1,3,0,2],[1,3,2,1]],[[1,2,1,0],[0,3,3,1],[1,3,0,2],[2,2,2,1]],[[1,2,1,0],[0,3,3,1],[1,3,0,3],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[1,4,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,4,1],[1,3,0,2],[1,2,2,1]],[[1,2,1,0],[0,4,3,1],[1,3,0,2],[1,2,2,1]],[[1,3,1,0],[0,3,3,1],[1,3,0,2],[1,2,2,1]],[[2,2,1,0],[0,3,3,1],[1,3,0,2],[1,2,2,1]],[[2,1,1,1],[2,3,2,1],[2,3,3,1],[1,0,0,1]],[[1,1,1,1],[3,3,2,1],[2,3,3,1],[1,0,0,1]],[[1,1,1,1],[2,4,2,1],[2,3,3,1],[1,0,0,1]],[[1,1,1,1],[2,3,2,1],[3,3,3,1],[1,0,0,1]],[[2,1,1,1],[2,3,2,1],[2,3,3,1],[1,0,1,0]],[[1,1,1,1],[3,3,2,1],[2,3,3,1],[1,0,1,0]],[[1,1,1,1],[2,4,2,1],[2,3,3,1],[1,0,1,0]],[[1,1,1,1],[2,3,2,1],[3,3,3,1],[1,0,1,0]],[[1,2,1,0],[0,3,3,1],[1,2,3,3],[1,2,1,0]],[[1,2,1,0],[0,3,3,1],[1,2,4,2],[1,2,1,0]],[[1,2,1,0],[0,3,4,1],[1,2,3,2],[1,2,1,0]],[[1,2,1,0],[0,4,3,1],[1,2,3,2],[1,2,1,0]],[[1,3,1,0],[0,3,3,1],[1,2,3,2],[1,2,1,0]],[[2,2,1,0],[0,3,3,1],[1,2,3,2],[1,2,1,0]],[[1,2,1,0],[0,3,3,1],[1,2,3,2],[1,2,0,2]],[[1,2,1,0],[0,3,3,1],[1,2,3,3],[1,2,0,1]],[[1,2,1,0],[0,3,3,1],[1,2,4,2],[1,2,0,1]],[[1,2,1,0],[0,3,4,1],[1,2,3,2],[1,2,0,1]],[[1,2,1,0],[0,4,3,1],[1,2,3,2],[1,2,0,1]],[[1,3,1,0],[0,3,3,1],[1,2,3,2],[1,2,0,1]],[[2,2,1,0],[0,3,3,1],[1,2,3,2],[1,2,0,1]],[[1,2,1,0],[0,3,3,1],[1,2,3,2],[1,1,3,0]],[[1,2,1,0],[0,3,3,1],[1,2,3,3],[1,1,2,0]],[[1,2,1,0],[0,3,3,1],[1,2,4,2],[1,1,2,0]],[[1,2,1,0],[0,3,4,1],[1,2,3,2],[1,1,2,0]],[[1,2,1,0],[0,4,3,1],[1,2,3,2],[1,1,2,0]],[[1,3,1,0],[0,3,3,1],[1,2,3,2],[1,1,2,0]],[[2,2,1,0],[0,3,3,1],[1,2,3,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,1],[1,2,3,2],[1,1,1,2]],[[1,2,1,0],[0,3,3,1],[1,2,3,3],[1,1,1,1]],[[1,2,1,0],[0,3,3,1],[1,2,4,2],[1,1,1,1]],[[1,2,1,0],[0,3,4,1],[1,2,3,2],[1,1,1,1]],[[1,2,1,0],[0,4,3,1],[1,2,3,2],[1,1,1,1]],[[1,3,1,0],[0,3,3,1],[1,2,3,2],[1,1,1,1]],[[2,2,1,0],[0,3,3,1],[1,2,3,2],[1,1,1,1]],[[1,2,1,0],[0,3,3,1],[1,2,3,2],[1,0,2,2]],[[1,2,1,0],[0,3,3,1],[1,2,3,3],[1,0,2,1]],[[1,2,1,0],[0,3,3,1],[1,2,4,2],[1,0,2,1]],[[1,2,1,0],[0,3,4,1],[1,2,3,2],[1,0,2,1]],[[1,2,1,0],[0,3,3,1],[1,2,4,1],[1,2,1,1]],[[1,2,1,0],[0,3,4,1],[1,2,3,1],[1,2,1,1]],[[1,2,1,0],[0,4,3,1],[1,2,3,1],[1,2,1,1]],[[1,3,1,0],[0,3,3,1],[1,2,3,1],[1,2,1,1]],[[2,2,1,0],[0,3,3,1],[1,2,3,1],[1,2,1,1]],[[1,2,1,0],[0,3,3,1],[1,2,3,1],[1,1,2,2]],[[1,2,1,0],[0,3,3,1],[1,2,3,1],[1,1,3,1]],[[1,2,1,0],[0,3,3,1],[1,2,4,1],[1,1,2,1]],[[1,2,1,0],[0,3,4,1],[1,2,3,1],[1,1,2,1]],[[1,2,1,0],[0,4,3,1],[1,2,3,1],[1,1,2,1]],[[1,3,1,0],[0,3,3,1],[1,2,3,1],[1,1,2,1]],[[2,2,1,0],[0,3,3,1],[1,2,3,1],[1,1,2,1]],[[1,2,1,0],[0,3,3,1],[1,2,2,2],[1,1,2,2]],[[1,2,1,0],[0,3,3,1],[1,2,2,2],[1,1,3,1]],[[1,2,1,0],[0,3,3,1],[1,2,2,3],[1,1,2,1]],[[1,2,1,0],[0,3,3,1],[1,1,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,3,1],[1,1,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,1],[1,1,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,3,1],[1,1,3,3],[1,2,2,0]],[[1,2,1,0],[0,3,3,1],[1,1,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,4,1],[1,1,3,2],[1,2,2,0]],[[1,2,1,0],[0,4,3,1],[1,1,3,2],[1,2,2,0]],[[1,3,1,0],[0,3,3,1],[1,1,3,2],[1,2,2,0]],[[2,2,1,0],[0,3,3,1],[1,1,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,1],[1,1,3,2],[1,2,1,2]],[[1,2,1,0],[0,3,3,1],[1,1,3,3],[1,2,1,1]],[[1,2,1,0],[0,3,3,1],[1,1,4,2],[1,2,1,1]],[[1,2,1,0],[0,3,4,1],[1,1,3,2],[1,2,1,1]],[[1,2,1,0],[0,4,3,1],[1,1,3,2],[1,2,1,1]],[[1,3,1,0],[0,3,3,1],[1,1,3,2],[1,2,1,1]],[[2,2,1,0],[0,3,3,1],[1,1,3,2],[1,2,1,1]],[[1,2,1,0],[0,3,3,1],[1,1,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,3,1],[1,1,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,3,1],[1,1,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,1],[1,1,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,1],[1,1,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,4,1],[1,1,3,1],[1,2,2,1]],[[1,2,1,0],[0,4,3,1],[1,1,3,1],[1,2,2,1]],[[1,3,1,0],[0,3,3,1],[1,1,3,1],[1,2,2,1]],[[2,2,1,0],[0,3,3,1],[1,1,3,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[1,1,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,1],[1,1,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,1],[1,1,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,3,1],[1,1,2,2],[2,2,2,1]],[[1,2,1,0],[0,3,3,1],[1,1,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,3,1],[1,0,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,1],[1,0,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,1],[1,0,3,3],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[0,3,3,0],[2,4,3,2],[1,2,0,0]],[[1,2,1,0],[0,3,3,0],[3,3,3,2],[1,2,0,0]],[[1,2,1,0],[0,4,3,0],[2,3,3,2],[1,2,0,0]],[[1,3,1,0],[0,3,3,0],[2,3,3,2],[1,2,0,0]],[[2,2,1,0],[0,3,3,0],[2,3,3,2],[1,2,0,0]],[[1,2,1,0],[0,3,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[0,3,3,0],[2,3,4,2],[1,1,1,0]],[[1,2,1,0],[0,3,3,0],[2,4,3,2],[1,1,1,0]],[[1,2,1,0],[0,3,3,0],[3,3,3,2],[1,1,1,0]],[[1,2,1,0],[0,4,3,0],[2,3,3,2],[1,1,1,0]],[[1,3,1,0],[0,3,3,0],[2,3,3,2],[1,1,1,0]],[[2,2,1,0],[0,3,3,0],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[0,3,3,0],[2,3,3,2],[2,1,0,1]],[[1,2,1,0],[0,3,3,0],[2,3,4,2],[1,1,0,1]],[[1,2,1,0],[0,3,3,0],[2,4,3,2],[1,1,0,1]],[[1,2,1,0],[0,3,3,0],[3,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,4,3,0],[2,3,3,2],[1,1,0,1]],[[1,3,1,0],[0,3,3,0],[2,3,3,2],[1,1,0,1]],[[2,2,1,0],[0,3,3,0],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,3,3,0],[2,3,3,2],[1,0,3,0]],[[1,2,1,0],[0,3,3,0],[2,3,3,2],[2,0,2,0]],[[1,2,1,0],[0,3,3,0],[2,3,4,2],[1,0,2,0]],[[1,2,1,0],[0,3,3,0],[2,4,3,2],[1,0,2,0]],[[1,2,1,0],[0,3,3,0],[3,3,3,2],[1,0,2,0]],[[1,2,1,0],[0,4,3,0],[2,3,3,2],[1,0,2,0]],[[1,3,1,0],[0,3,3,0],[2,3,3,2],[1,0,2,0]],[[2,2,1,0],[0,3,3,0],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[0,3,3,0],[2,3,3,2],[2,0,1,1]],[[1,2,1,0],[0,3,3,0],[2,3,4,2],[1,0,1,1]],[[1,2,1,0],[0,3,3,0],[2,4,3,2],[1,0,1,1]],[[1,2,1,0],[0,3,3,0],[3,3,3,2],[1,0,1,1]],[[1,2,1,0],[0,4,3,0],[2,3,3,2],[1,0,1,1]],[[1,3,1,0],[0,3,3,0],[2,3,3,2],[1,0,1,1]],[[2,2,1,0],[0,3,3,0],[2,3,3,2],[1,0,1,1]],[[1,2,1,0],[0,3,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[0,3,3,0],[2,3,4,2],[0,2,1,0]],[[1,2,1,0],[0,3,3,0],[2,4,3,2],[0,2,1,0]],[[1,2,1,0],[0,3,3,0],[3,3,3,2],[0,2,1,0]],[[1,2,1,0],[0,4,3,0],[2,3,3,2],[0,2,1,0]],[[1,3,1,0],[0,3,3,0],[2,3,3,2],[0,2,1,0]],[[2,2,1,0],[0,3,3,0],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[0,3,3,0],[2,3,3,2],[0,3,0,1]],[[1,2,1,0],[0,3,3,0],[2,3,4,2],[0,2,0,1]],[[1,2,1,0],[0,3,3,0],[2,4,3,2],[0,2,0,1]],[[1,2,1,0],[0,3,3,0],[3,3,3,2],[0,2,0,1]],[[1,2,1,0],[0,4,3,0],[2,3,3,2],[0,2,0,1]],[[1,3,1,0],[0,3,3,0],[2,3,3,2],[0,2,0,1]],[[2,2,1,0],[0,3,3,0],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[0,3,3,0],[2,3,3,2],[0,1,3,0]],[[1,2,1,0],[0,3,3,0],[2,3,4,2],[0,1,2,0]],[[1,2,1,0],[0,3,3,0],[2,4,3,2],[0,1,2,0]],[[1,2,1,0],[0,3,3,0],[3,3,3,2],[0,1,2,0]],[[1,2,1,0],[0,4,3,0],[2,3,3,2],[0,1,2,0]],[[1,3,1,0],[0,3,3,0],[2,3,3,2],[0,1,2,0]],[[2,2,1,0],[0,3,3,0],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[0,3,3,0],[2,3,4,2],[0,1,1,1]],[[1,2,1,0],[0,3,3,0],[2,4,3,2],[0,1,1,1]],[[1,2,1,0],[0,3,3,0],[3,3,3,2],[0,1,1,1]],[[1,2,1,0],[0,4,3,0],[2,3,3,2],[0,1,1,1]],[[1,3,1,0],[0,3,3,0],[2,3,3,2],[0,1,1,1]],[[2,2,1,0],[0,3,3,0],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[0,3,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[0,3,3,0],[2,4,3,1],[1,2,0,1]],[[1,2,1,0],[0,3,3,0],[3,3,3,1],[1,2,0,1]],[[1,2,1,0],[0,4,3,0],[2,3,3,1],[1,2,0,1]],[[1,3,1,0],[0,3,3,0],[2,3,3,1],[1,2,0,1]],[[2,2,1,0],[0,3,3,0],[2,3,3,1],[1,2,0,1]],[[1,1,1,2],[2,3,2,2],[0,0,3,2],[0,2,2,1]],[[1,1,1,1],[2,3,2,3],[0,0,3,2],[0,2,2,1]],[[1,1,1,1],[2,3,2,2],[0,0,3,3],[0,2,2,1]],[[1,1,1,1],[2,3,2,2],[0,0,3,2],[0,2,3,1]],[[1,1,1,1],[2,3,2,2],[0,0,3,2],[0,2,2,2]],[[1,1,1,2],[2,3,2,2],[0,1,2,2],[0,2,2,1]],[[1,1,1,1],[2,3,2,3],[0,1,2,2],[0,2,2,1]],[[1,1,1,1],[2,3,2,2],[0,1,2,3],[0,2,2,1]],[[1,1,1,1],[2,3,2,2],[0,1,2,2],[0,2,3,1]],[[1,1,1,1],[2,3,2,2],[0,1,2,2],[0,2,2,2]],[[1,1,1,1],[2,3,2,2],[0,1,4,1],[0,2,2,1]],[[1,1,1,1],[2,3,2,2],[0,1,3,1],[0,2,3,1]],[[1,1,1,1],[2,3,2,2],[0,1,3,1],[0,2,2,2]],[[1,1,1,2],[2,3,2,2],[0,1,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,2,3],[0,1,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,2,2],[0,1,4,2],[0,2,1,1]],[[1,1,1,1],[2,3,2,2],[0,1,3,3],[0,2,1,1]],[[1,1,1,1],[2,3,2,2],[0,1,3,2],[0,2,1,2]],[[1,1,1,2],[2,3,2,2],[0,1,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,2,3],[0,1,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,2,2],[0,1,4,2],[0,2,2,0]],[[1,1,1,1],[2,3,2,2],[0,1,3,3],[0,2,2,0]],[[1,1,1,1],[2,3,2,2],[0,1,3,2],[0,2,3,0]],[[1,2,1,0],[0,3,3,0],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[0,3,3,0],[2,3,4,1],[1,1,1,1]],[[1,2,1,0],[0,3,3,0],[2,4,3,1],[1,1,1,1]],[[1,2,1,0],[0,3,3,0],[3,3,3,1],[1,1,1,1]],[[1,1,1,2],[2,3,2,2],[0,2,2,2],[0,1,2,1]],[[1,1,1,1],[2,3,2,3],[0,2,2,2],[0,1,2,1]],[[1,1,1,1],[2,3,2,2],[0,2,2,3],[0,1,2,1]],[[1,1,1,1],[2,3,2,2],[0,2,2,2],[0,1,3,1]],[[1,1,1,1],[2,3,2,2],[0,2,2,2],[0,1,2,2]],[[1,2,1,0],[0,4,3,0],[2,3,3,1],[1,1,1,1]],[[1,3,1,0],[0,3,3,0],[2,3,3,1],[1,1,1,1]],[[2,2,1,0],[0,3,3,0],[2,3,3,1],[1,1,1,1]],[[1,2,1,0],[0,3,3,0],[2,3,3,1],[1,0,2,2]],[[1,2,1,0],[0,3,3,0],[2,3,3,1],[1,0,3,1]],[[1,2,1,0],[0,3,3,0],[2,3,3,1],[2,0,2,1]],[[1,2,1,0],[0,3,3,0],[2,3,4,1],[1,0,2,1]],[[1,1,1,1],[2,3,2,2],[0,2,4,1],[0,1,2,1]],[[1,1,1,1],[2,3,2,2],[0,2,3,1],[0,1,3,1]],[[1,1,1,1],[2,3,2,2],[0,2,3,1],[0,1,2,2]],[[1,2,1,0],[0,3,3,0],[2,4,3,1],[1,0,2,1]],[[1,2,1,0],[0,3,3,0],[3,3,3,1],[1,0,2,1]],[[1,2,1,0],[0,4,3,0],[2,3,3,1],[1,0,2,1]],[[1,3,1,0],[0,3,3,0],[2,3,3,1],[1,0,2,1]],[[2,2,1,0],[0,3,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,1,2],[2,3,2,2],[0,2,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,2,3],[0,2,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,2,2],[0,2,4,2],[0,0,2,1]],[[1,1,1,1],[2,3,2,2],[0,2,3,3],[0,0,2,1]],[[1,1,1,1],[2,3,2,2],[0,2,3,2],[0,0,2,2]],[[1,1,1,2],[2,3,2,2],[0,2,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,2,3],[0,2,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,2,2],[0,2,4,2],[0,1,1,1]],[[1,1,1,1],[2,3,2,2],[0,2,3,3],[0,1,1,1]],[[1,1,1,1],[2,3,2,2],[0,2,3,2],[0,1,1,2]],[[1,1,1,2],[2,3,2,2],[0,2,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,2,3],[0,2,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,2,2],[0,2,4,2],[0,1,2,0]],[[1,1,1,1],[2,3,2,2],[0,2,3,3],[0,1,2,0]],[[1,1,1,1],[2,3,2,2],[0,2,3,2],[0,1,3,0]],[[1,1,1,2],[2,3,2,2],[0,2,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,2,3],[0,2,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,2,2],[0,2,4,2],[0,2,0,1]],[[1,1,1,1],[2,3,2,2],[0,2,3,3],[0,2,0,1]],[[1,1,1,1],[2,3,2,2],[0,2,3,2],[0,2,0,2]],[[1,1,1,2],[2,3,2,2],[0,2,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,2,3],[0,2,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,2,2],[0,2,4,2],[0,2,1,0]],[[1,1,1,1],[2,3,2,2],[0,2,3,3],[0,2,1,0]],[[1,1,1,2],[2,3,2,2],[0,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,2,3],[0,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,2,2],[0,2,4,2],[1,0,1,1]],[[1,1,1,1],[2,3,2,2],[0,2,3,3],[1,0,1,1]],[[1,1,1,1],[2,3,2,2],[0,2,3,2],[1,0,1,2]],[[1,1,1,2],[2,3,2,2],[0,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,2,3],[0,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,2,2],[0,2,4,2],[1,0,2,0]],[[1,1,1,1],[2,3,2,2],[0,2,3,3],[1,0,2,0]],[[1,2,1,0],[0,3,3,0],[2,3,3,1],[0,3,1,1]],[[1,2,1,0],[0,3,3,0],[2,3,4,1],[0,2,1,1]],[[1,2,1,0],[0,3,3,0],[2,4,3,1],[0,2,1,1]],[[1,2,1,0],[0,3,3,0],[3,3,3,1],[0,2,1,1]],[[1,2,1,0],[0,4,3,0],[2,3,3,1],[0,2,1,1]],[[1,3,1,0],[0,3,3,0],[2,3,3,1],[0,2,1,1]],[[2,2,1,0],[0,3,3,0],[2,3,3,1],[0,2,1,1]],[[1,2,1,0],[0,3,3,0],[2,3,3,1],[0,1,2,2]],[[1,2,1,0],[0,3,3,0],[2,3,3,1],[0,1,3,1]],[[1,2,1,0],[0,3,3,0],[2,3,4,1],[0,1,2,1]],[[1,2,1,0],[0,3,3,0],[2,4,3,1],[0,1,2,1]],[[1,2,1,0],[0,3,3,0],[3,3,3,1],[0,1,2,1]],[[1,2,1,0],[0,4,3,0],[2,3,3,1],[0,1,2,1]],[[1,3,1,0],[0,3,3,0],[2,3,3,1],[0,1,2,1]],[[2,2,1,0],[0,3,3,0],[2,3,3,1],[0,1,2,1]],[[1,2,1,0],[0,3,3,0],[2,3,3,0],[2,1,2,1]],[[1,2,1,0],[0,3,3,0],[2,4,3,0],[1,1,2,1]],[[1,2,1,0],[0,3,3,0],[3,3,3,0],[1,1,2,1]],[[1,2,1,0],[0,4,3,0],[2,3,3,0],[1,1,2,1]],[[1,3,1,0],[0,3,3,0],[2,3,3,0],[1,1,2,1]],[[2,2,1,0],[0,3,3,0],[2,3,3,0],[1,1,2,1]],[[1,2,1,0],[0,3,3,0],[2,3,3,0],[0,2,3,1]],[[1,2,1,0],[0,3,3,0],[2,3,3,0],[0,3,2,1]],[[1,2,1,0],[0,3,3,0],[2,4,3,0],[0,2,2,1]],[[1,2,1,0],[0,3,3,0],[3,3,3,0],[0,2,2,1]],[[1,2,1,0],[0,4,3,0],[2,3,3,0],[0,2,2,1]],[[1,3,1,0],[0,3,3,0],[2,3,3,0],[0,2,2,1]],[[2,2,1,0],[0,3,3,0],[2,3,3,0],[0,2,2,1]],[[1,2,1,0],[0,3,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[0,3,3,0],[2,4,2,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,0],[3,3,2,2],[1,1,2,0]],[[1,2,1,0],[0,4,3,0],[2,3,2,2],[1,1,2,0]],[[1,3,1,0],[0,3,3,0],[2,3,2,2],[1,1,2,0]],[[2,2,1,0],[0,3,3,0],[2,3,2,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,0],[2,3,2,2],[0,2,3,0]],[[1,2,1,0],[0,3,3,0],[2,3,2,2],[0,3,2,0]],[[1,2,1,0],[0,3,3,0],[2,4,2,2],[0,2,2,0]],[[1,2,1,0],[0,3,3,0],[3,3,2,2],[0,2,2,0]],[[1,2,1,0],[0,4,3,0],[2,3,2,2],[0,2,2,0]],[[1,3,1,0],[0,3,3,0],[2,3,2,2],[0,2,2,0]],[[2,2,1,0],[0,3,3,0],[2,3,2,2],[0,2,2,0]],[[1,2,1,0],[0,3,3,0],[2,3,2,1],[2,1,2,1]],[[1,2,1,0],[0,3,3,0],[2,4,2,1],[1,1,2,1]],[[1,2,1,0],[0,3,3,0],[3,3,2,1],[1,1,2,1]],[[1,2,1,0],[0,4,3,0],[2,3,2,1],[1,1,2,1]],[[1,3,1,0],[0,3,3,0],[2,3,2,1],[1,1,2,1]],[[2,2,1,0],[0,3,3,0],[2,3,2,1],[1,1,2,1]],[[1,2,1,0],[0,3,3,0],[2,3,2,1],[0,2,2,2]],[[1,2,1,0],[0,3,3,0],[2,3,2,1],[0,2,3,1]],[[1,2,1,0],[0,3,3,0],[2,3,2,1],[0,3,2,1]],[[1,2,1,0],[0,3,3,0],[2,4,2,1],[0,2,2,1]],[[1,2,1,0],[0,3,3,0],[3,3,2,1],[0,2,2,1]],[[1,2,1,0],[0,4,3,0],[2,3,2,1],[0,2,2,1]],[[1,3,1,0],[0,3,3,0],[2,3,2,1],[0,2,2,1]],[[2,2,1,0],[0,3,3,0],[2,3,2,1],[0,2,2,1]],[[1,2,1,0],[0,3,3,0],[2,3,2,0],[1,3,2,1]],[[1,2,1,0],[0,3,3,0],[2,3,2,0],[2,2,2,1]],[[1,2,1,0],[0,3,3,0],[3,3,2,0],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[2,3,1,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,0],[2,3,1,2],[2,2,2,0]],[[1,2,1,0],[0,3,3,0],[3,3,1,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,0],[2,3,1,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,0],[2,3,1,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,0],[3,3,1,1],[1,2,2,1]],[[1,1,1,2],[2,3,2,2],[0,3,3,2],[0,0,1,1]],[[1,1,1,1],[2,3,2,3],[0,3,3,2],[0,0,1,1]],[[1,1,1,1],[2,3,2,2],[0,3,4,2],[0,0,1,1]],[[1,1,1,1],[2,3,2,2],[0,3,3,3],[0,0,1,1]],[[1,1,1,1],[2,3,2,2],[0,3,3,2],[0,0,1,2]],[[1,1,1,2],[2,3,2,2],[0,3,3,2],[0,0,2,0]],[[1,1,1,1],[2,3,2,3],[0,3,3,2],[0,0,2,0]],[[1,1,1,1],[2,3,2,2],[0,3,4,2],[0,0,2,0]],[[1,1,1,1],[2,3,2,2],[0,3,3,3],[0,0,2,0]],[[1,2,1,0],[0,3,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[0,3,3,0],[2,2,3,2],[2,2,1,0]],[[1,2,1,0],[0,3,3,0],[3,2,3,2],[1,2,1,0]],[[1,2,1,0],[0,3,3,0],[2,2,3,2],[1,3,0,1]],[[1,2,1,0],[0,3,3,0],[2,2,3,2],[2,2,0,1]],[[1,2,1,0],[0,3,3,0],[3,2,3,2],[1,2,0,1]],[[1,2,1,0],[0,3,3,0],[2,2,3,2],[1,0,2,2]],[[1,2,1,0],[0,3,3,0],[2,2,3,2],[1,0,3,1]],[[1,2,1,0],[0,3,3,0],[2,2,4,2],[1,0,2,1]],[[1,2,1,0],[0,3,3,0],[2,2,3,2],[0,2,3,0]],[[1,2,1,0],[0,3,3,0],[2,2,3,2],[0,3,2,0]],[[1,2,1,0],[0,3,3,0],[2,2,4,2],[0,2,2,0]],[[1,2,1,0],[0,3,3,0],[2,2,3,2],[0,1,2,2]],[[1,2,1,0],[0,3,3,0],[2,2,3,2],[0,1,3,1]],[[1,2,1,0],[0,3,3,0],[2,2,4,2],[0,1,2,1]],[[1,2,1,0],[0,3,3,0],[2,2,3,1],[1,3,1,1]],[[1,2,1,0],[0,3,3,0],[2,2,3,1],[2,2,1,1]],[[1,2,1,0],[0,3,3,0],[3,2,3,1],[1,2,1,1]],[[1,2,1,0],[0,3,3,0],[2,2,3,1],[0,2,2,2]],[[1,2,1,0],[0,3,3,0],[2,2,3,1],[0,2,3,1]],[[1,2,1,0],[0,3,3,0],[2,2,3,1],[0,3,2,1]],[[1,2,1,0],[0,3,3,0],[2,2,4,1],[0,2,2,1]],[[1,2,1,0],[0,3,3,0],[2,2,3,0],[1,2,3,1]],[[1,2,1,0],[0,3,3,0],[2,2,3,0],[1,3,2,1]],[[1,2,1,0],[0,3,3,0],[2,2,3,0],[2,2,2,1]],[[1,2,1,0],[0,3,3,0],[3,2,3,0],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[2,2,2,2],[1,2,3,0]],[[1,2,1,0],[0,3,3,0],[2,2,2,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,0],[2,2,2,2],[2,2,2,0]],[[1,2,1,0],[0,3,3,0],[3,2,2,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,0],[2,2,2,1],[1,2,2,2]],[[1,2,1,0],[0,3,3,0],[2,2,2,1],[1,2,3,1]],[[1,2,1,0],[0,3,3,0],[2,2,2,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,0],[2,2,2,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,0],[3,2,2,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[2,1,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,3,0],[2,1,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,0],[2,1,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,3,0],[2,1,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,0],[3,1,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,0],[2,1,3,2],[0,2,2,2]],[[1,2,1,0],[0,3,3,0],[2,1,3,2],[0,2,3,1]],[[1,2,1,0],[0,3,3,0],[2,1,3,2],[0,3,2,1]],[[1,2,1,0],[0,3,3,0],[2,1,4,2],[0,2,2,1]],[[1,2,1,0],[0,3,3,0],[2,1,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,3,0],[2,1,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,3,0],[2,1,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,0],[2,1,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,0],[2,1,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[3,1,3,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,0],[2,0,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,0],[2,0,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,3,0],[2,0,3,2],[2,2,2,1]],[[1,2,1,0],[0,3,3,0],[2,0,4,2],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[3,0,3,2],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[0,3,3,0],[1,3,3,2],[2,2,1,0]],[[1,2,1,0],[0,3,3,0],[1,3,4,2],[1,2,1,0]],[[1,2,1,0],[0,3,3,0],[1,4,3,2],[1,2,1,0]],[[1,2,1,0],[0,4,3,0],[1,3,3,2],[1,2,1,0]],[[1,3,1,0],[0,3,3,0],[1,3,3,2],[1,2,1,0]],[[2,2,1,0],[0,3,3,0],[1,3,3,2],[1,2,1,0]],[[1,2,1,0],[0,3,3,0],[1,3,3,2],[1,3,0,1]],[[1,2,1,0],[0,3,3,0],[1,3,3,2],[2,2,0,1]],[[1,2,1,0],[0,3,3,0],[1,3,4,2],[1,2,0,1]],[[1,2,1,0],[0,3,3,0],[1,4,3,2],[1,2,0,1]],[[1,2,1,0],[0,4,3,0],[1,3,3,2],[1,2,0,1]],[[1,3,1,0],[0,3,3,0],[1,3,3,2],[1,2,0,1]],[[2,2,1,0],[0,3,3,0],[1,3,3,2],[1,2,0,1]],[[1,2,1,0],[0,3,3,0],[1,3,3,2],[1,1,3,0]],[[1,2,1,0],[0,3,3,0],[1,3,4,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,0],[1,4,3,2],[1,1,2,0]],[[1,2,1,0],[0,4,3,0],[1,3,3,2],[1,1,2,0]],[[1,3,1,0],[0,3,3,0],[1,3,3,2],[1,1,2,0]],[[2,2,1,0],[0,3,3,0],[1,3,3,2],[1,1,2,0]],[[1,2,1,0],[0,3,3,0],[1,3,4,2],[1,1,1,1]],[[1,2,1,0],[0,3,3,0],[1,4,3,2],[1,1,1,1]],[[1,2,1,0],[0,4,3,0],[1,3,3,2],[1,1,1,1]],[[1,3,1,0],[0,3,3,0],[1,3,3,2],[1,1,1,1]],[[2,2,1,0],[0,3,3,0],[1,3,3,2],[1,1,1,1]],[[1,2,1,0],[0,3,3,0],[1,3,3,1],[1,3,1,1]],[[1,2,1,0],[0,3,3,0],[1,3,3,1],[2,2,1,1]],[[1,2,1,0],[0,3,3,0],[1,3,4,1],[1,2,1,1]],[[1,2,1,0],[0,3,3,0],[1,4,3,1],[1,2,1,1]],[[1,2,1,0],[0,4,3,0],[1,3,3,1],[1,2,1,1]],[[1,3,1,0],[0,3,3,0],[1,3,3,1],[1,2,1,1]],[[2,2,1,0],[0,3,3,0],[1,3,3,1],[1,2,1,1]],[[1,2,1,0],[0,3,3,0],[1,3,3,1],[1,1,2,2]],[[1,2,1,0],[0,3,3,0],[1,3,3,1],[1,1,3,1]],[[1,2,1,0],[0,3,3,0],[1,3,4,1],[1,1,2,1]],[[1,2,1,0],[0,3,3,0],[1,4,3,1],[1,1,2,1]],[[1,2,1,0],[0,4,3,0],[1,3,3,1],[1,1,2,1]],[[1,3,1,0],[0,3,3,0],[1,3,3,1],[1,1,2,1]],[[2,2,1,0],[0,3,3,0],[1,3,3,1],[1,1,2,1]],[[1,2,1,0],[0,3,3,0],[1,3,3,0],[1,2,3,1]],[[1,2,1,0],[0,3,3,0],[1,3,3,0],[1,3,2,1]],[[1,2,1,0],[0,3,3,0],[1,3,3,0],[2,2,2,1]],[[1,2,1,0],[0,3,3,0],[1,4,3,0],[1,2,2,1]],[[1,2,1,0],[0,4,3,0],[1,3,3,0],[1,2,2,1]],[[1,3,1,0],[0,3,3,0],[1,3,3,0],[1,2,2,1]],[[2,2,1,0],[0,3,3,0],[1,3,3,0],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[1,3,2,2],[1,2,3,0]],[[1,2,1,0],[0,3,3,0],[1,3,2,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,0],[1,3,2,2],[2,2,2,0]],[[1,2,1,0],[0,3,3,0],[1,4,2,2],[1,2,2,0]],[[1,2,1,0],[0,4,3,0],[1,3,2,2],[1,2,2,0]],[[1,3,1,0],[0,3,3,0],[1,3,2,2],[1,2,2,0]],[[2,2,1,0],[0,3,3,0],[1,3,2,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,0],[1,3,2,1],[1,2,2,2]],[[1,2,1,0],[0,3,3,0],[1,3,2,1],[1,2,3,1]],[[1,2,1,0],[0,3,3,0],[1,3,2,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,0],[1,3,2,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,0],[1,4,2,1],[1,2,2,1]],[[1,2,1,0],[0,4,3,0],[1,3,2,1],[1,2,2,1]],[[1,3,1,0],[0,3,3,0],[1,3,2,1],[1,2,2,1]],[[2,2,1,0],[0,3,3,0],[1,3,2,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[1,2,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,3,0],[1,2,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,0],[1,2,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,3,0],[1,2,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,0],[1,2,3,2],[1,1,2,2]],[[1,2,1,0],[0,3,3,0],[1,2,3,2],[1,1,3,1]],[[1,2,1,0],[0,3,3,0],[1,2,4,2],[1,1,2,1]],[[1,2,1,0],[0,3,3,0],[1,2,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,3,0],[1,2,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,3,0],[1,2,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,0],[1,2,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,3,0],[1,2,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[1,1,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,3,0],[1,1,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,3,0],[1,1,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,3,0],[1,1,3,2],[2,2,2,1]],[[1,2,1,0],[0,3,3,0],[1,1,4,2],[1,2,2,1]],[[1,2,1,0],[0,3,3,0],[0,3,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,3,0],[0,3,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,3,0],[0,3,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,3,0],[0,3,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,3,0],[0,3,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,3,0],[0,3,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,3,0],[0,3,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,1,0],[0,3,2,2],[2,3,4,2],[0,0,2,0]],[[1,2,1,0],[0,3,2,3],[2,3,3,2],[0,0,2,0]],[[1,2,1,0],[0,3,2,2],[2,3,3,2],[0,0,1,2]],[[1,2,1,0],[0,3,2,2],[2,3,3,3],[0,0,1,1]],[[1,2,1,0],[0,3,2,2],[2,3,4,2],[0,0,1,1]],[[1,2,1,0],[0,3,2,3],[2,3,3,2],[0,0,1,1]],[[1,2,1,0],[0,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[0,3,2,2],[2,4,3,1],[1,2,0,0]],[[1,2,1,0],[0,3,2,2],[3,3,3,1],[1,2,0,0]],[[1,2,1,0],[0,4,2,2],[2,3,3,1],[1,2,0,0]],[[1,3,1,0],[0,3,2,2],[2,3,3,1],[1,2,0,0]],[[2,2,1,0],[0,3,2,2],[2,3,3,1],[1,2,0,0]],[[1,2,1,0],[0,3,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,0],[0,3,2,2],[2,3,4,1],[1,1,1,0]],[[1,2,1,0],[0,3,2,2],[2,4,3,1],[1,1,1,0]],[[1,2,1,0],[0,3,2,2],[3,3,3,1],[1,1,1,0]],[[1,2,1,0],[0,4,2,2],[2,3,3,1],[1,1,1,0]],[[1,3,1,0],[0,3,2,2],[2,3,3,1],[1,1,1,0]],[[2,2,1,0],[0,3,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,1,0],[0,3,2,2],[2,3,3,1],[2,1,0,1]],[[1,2,1,0],[0,3,2,2],[2,3,4,1],[1,1,0,1]],[[1,2,1,0],[0,3,2,2],[2,4,3,1],[1,1,0,1]],[[1,2,1,0],[0,3,2,2],[3,3,3,1],[1,1,0,1]],[[1,2,1,0],[0,4,2,2],[2,3,3,1],[1,1,0,1]],[[1,3,1,0],[0,3,2,2],[2,3,3,1],[1,1,0,1]],[[2,2,1,0],[0,3,2,2],[2,3,3,1],[1,1,0,1]],[[1,2,1,0],[0,3,2,2],[2,3,3,1],[1,0,3,0]],[[1,2,1,0],[0,3,2,2],[2,3,3,1],[2,0,2,0]],[[1,2,1,0],[0,3,2,2],[2,3,4,1],[1,0,2,0]],[[1,2,1,0],[0,3,2,2],[2,4,3,1],[1,0,2,0]],[[1,2,1,0],[0,3,2,2],[3,3,3,1],[1,0,2,0]],[[1,2,1,0],[0,4,2,2],[2,3,3,1],[1,0,2,0]],[[1,3,1,0],[0,3,2,2],[2,3,3,1],[1,0,2,0]],[[2,2,1,0],[0,3,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,1,0],[0,3,2,2],[2,3,3,1],[2,0,1,1]],[[1,2,1,0],[0,3,2,2],[2,3,4,1],[1,0,1,1]],[[1,2,1,0],[0,3,2,2],[2,4,3,1],[1,0,1,1]],[[1,2,1,0],[0,3,2,2],[3,3,3,1],[1,0,1,1]],[[1,2,1,0],[0,4,2,2],[2,3,3,1],[1,0,1,1]],[[1,3,1,0],[0,3,2,2],[2,3,3,1],[1,0,1,1]],[[2,2,1,0],[0,3,2,2],[2,3,3,1],[1,0,1,1]],[[1,2,1,0],[0,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[0,3,2,2],[2,3,4,1],[0,2,1,0]],[[1,2,1,0],[0,3,2,2],[2,4,3,1],[0,2,1,0]],[[1,2,1,0],[0,3,2,2],[3,3,3,1],[0,2,1,0]],[[1,2,1,0],[0,4,2,2],[2,3,3,1],[0,2,1,0]],[[1,3,1,0],[0,3,2,2],[2,3,3,1],[0,2,1,0]],[[2,2,1,0],[0,3,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,1,0],[0,3,2,2],[2,3,3,1],[0,3,0,1]],[[1,2,1,0],[0,3,2,2],[2,3,4,1],[0,2,0,1]],[[1,2,1,0],[0,3,2,2],[2,4,3,1],[0,2,0,1]],[[1,2,1,0],[0,3,2,2],[3,3,3,1],[0,2,0,1]],[[1,2,1,0],[0,4,2,2],[2,3,3,1],[0,2,0,1]],[[1,3,1,0],[0,3,2,2],[2,3,3,1],[0,2,0,1]],[[2,2,1,0],[0,3,2,2],[2,3,3,1],[0,2,0,1]],[[1,2,1,0],[0,3,2,2],[2,3,3,1],[0,1,3,0]],[[1,2,1,0],[0,3,2,2],[2,3,4,1],[0,1,2,0]],[[1,2,1,0],[0,3,2,2],[2,4,3,1],[0,1,2,0]],[[1,2,1,0],[0,3,2,2],[3,3,3,1],[0,1,2,0]],[[1,2,1,0],[0,4,2,2],[2,3,3,1],[0,1,2,0]],[[1,3,1,0],[0,3,2,2],[2,3,3,1],[0,1,2,0]],[[2,2,1,0],[0,3,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,1,0],[0,3,2,2],[2,3,4,1],[0,1,1,1]],[[1,2,1,0],[0,3,2,2],[2,4,3,1],[0,1,1,1]],[[1,2,1,0],[0,3,2,2],[3,3,3,1],[0,1,1,1]],[[1,2,1,0],[0,4,2,2],[2,3,3,1],[0,1,1,1]],[[1,3,1,0],[0,3,2,2],[2,3,3,1],[0,1,1,1]],[[2,2,1,0],[0,3,2,2],[2,3,3,1],[0,1,1,1]],[[1,2,1,0],[0,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[0,3,2,2],[2,4,3,0],[1,2,0,1]],[[1,2,1,0],[0,3,2,2],[3,3,3,0],[1,2,0,1]],[[1,2,1,0],[0,4,2,2],[2,3,3,0],[1,2,0,1]],[[1,3,1,0],[0,3,2,2],[2,3,3,0],[1,2,0,1]],[[2,2,1,0],[0,3,2,2],[2,3,3,0],[1,2,0,1]],[[1,2,1,0],[0,3,2,2],[2,3,3,0],[2,1,1,1]],[[1,2,1,0],[0,3,2,2],[2,3,4,0],[1,1,1,1]],[[1,2,1,0],[0,3,2,2],[2,4,3,0],[1,1,1,1]],[[1,2,1,0],[0,3,2,2],[3,3,3,0],[1,1,1,1]],[[1,2,1,0],[0,4,2,2],[2,3,3,0],[1,1,1,1]],[[1,3,1,0],[0,3,2,2],[2,3,3,0],[1,1,1,1]],[[2,2,1,0],[0,3,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,1,0],[0,3,2,2],[2,3,3,0],[1,0,2,2]],[[1,2,1,0],[0,3,2,2],[2,3,3,0],[1,0,3,1]],[[1,2,1,0],[0,3,2,2],[2,3,3,0],[2,0,2,1]],[[1,2,1,0],[0,3,2,2],[2,3,4,0],[1,0,2,1]],[[1,2,1,0],[0,3,2,2],[2,4,3,0],[1,0,2,1]],[[1,2,1,0],[0,3,2,2],[3,3,3,0],[1,0,2,1]],[[1,2,1,0],[0,4,2,2],[2,3,3,0],[1,0,2,1]],[[1,3,1,0],[0,3,2,2],[2,3,3,0],[1,0,2,1]],[[2,2,1,0],[0,3,2,2],[2,3,3,0],[1,0,2,1]],[[1,2,1,0],[0,3,2,2],[2,3,3,0],[0,3,1,1]],[[1,2,1,0],[0,3,2,2],[2,3,4,0],[0,2,1,1]],[[1,2,1,0],[0,3,2,2],[2,4,3,0],[0,2,1,1]],[[1,2,1,0],[0,3,2,2],[3,3,3,0],[0,2,1,1]],[[1,2,1,0],[0,4,2,2],[2,3,3,0],[0,2,1,1]],[[1,3,1,0],[0,3,2,2],[2,3,3,0],[0,2,1,1]],[[2,2,1,0],[0,3,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,1,0],[0,3,2,2],[2,3,3,0],[0,1,2,2]],[[1,2,1,0],[0,3,2,2],[2,3,3,0],[0,1,3,1]],[[1,2,1,0],[0,3,2,2],[2,3,4,0],[0,1,2,1]],[[1,2,1,0],[0,3,2,2],[2,4,3,0],[0,1,2,1]],[[1,2,1,0],[0,3,2,2],[3,3,3,0],[0,1,2,1]],[[1,2,1,0],[0,4,2,2],[2,3,3,0],[0,1,2,1]],[[1,3,1,0],[0,3,2,2],[2,3,3,0],[0,1,2,1]],[[2,2,1,0],[0,3,2,2],[2,3,3,0],[0,1,2,1]],[[1,2,1,0],[0,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[0,3,2,2],[2,4,2,1],[1,1,2,0]],[[1,2,1,0],[0,3,2,2],[3,3,2,1],[1,1,2,0]],[[1,2,1,0],[0,4,2,2],[2,3,2,1],[1,1,2,0]],[[1,3,1,0],[0,3,2,2],[2,3,2,1],[1,1,2,0]],[[2,2,1,0],[0,3,2,2],[2,3,2,1],[1,1,2,0]],[[1,2,1,0],[0,3,2,2],[2,3,2,1],[0,2,3,0]],[[1,2,1,0],[0,3,2,2],[2,3,2,1],[0,3,2,0]],[[1,2,1,0],[0,3,2,2],[2,4,2,1],[0,2,2,0]],[[1,2,1,0],[0,3,2,2],[3,3,2,1],[0,2,2,0]],[[1,2,1,0],[0,4,2,2],[2,3,2,1],[0,2,2,0]],[[1,3,1,0],[0,3,2,2],[2,3,2,1],[0,2,2,0]],[[2,2,1,0],[0,3,2,2],[2,3,2,1],[0,2,2,0]],[[1,2,1,0],[0,3,2,2],[2,3,2,0],[2,1,2,1]],[[1,2,1,0],[0,3,2,2],[2,4,2,0],[1,1,2,1]],[[1,2,1,0],[0,3,2,2],[3,3,2,0],[1,1,2,1]],[[1,2,1,0],[0,4,2,2],[2,3,2,0],[1,1,2,1]],[[1,3,1,0],[0,3,2,2],[2,3,2,0],[1,1,2,1]],[[2,2,1,0],[0,3,2,2],[2,3,2,0],[1,1,2,1]],[[1,2,1,0],[0,3,2,2],[2,3,2,0],[0,2,2,2]],[[1,2,1,0],[0,3,2,2],[2,3,2,0],[0,2,3,1]],[[1,2,1,0],[0,3,2,2],[2,3,2,0],[0,3,2,1]],[[1,2,1,0],[0,3,2,2],[2,4,2,0],[0,2,2,1]],[[1,2,1,0],[0,3,2,2],[3,3,2,0],[0,2,2,1]],[[1,2,1,0],[0,4,2,2],[2,3,2,0],[0,2,2,1]],[[1,3,1,0],[0,3,2,2],[2,3,2,0],[0,2,2,1]],[[2,2,1,0],[0,3,2,2],[2,3,2,0],[0,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,1,0],[0,3,2,2],[2,3,1,1],[2,2,2,0]],[[1,2,1,0],[0,3,2,2],[3,3,1,1],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[2,3,1,0],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[2,3,1,0],[2,2,2,1]],[[1,2,1,0],[0,3,2,2],[3,3,1,0],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,0],[0,3,2,2],[2,4,0,2],[1,1,2,1]],[[1,2,1,0],[0,3,2,2],[3,3,0,2],[1,1,2,1]],[[1,2,1,0],[0,4,2,2],[2,3,0,2],[1,1,2,1]],[[1,3,1,0],[0,3,2,2],[2,3,0,2],[1,1,2,1]],[[2,2,1,0],[0,3,2,2],[2,3,0,2],[1,1,2,1]],[[1,2,1,0],[0,3,2,2],[2,3,0,2],[0,2,2,2]],[[1,2,1,0],[0,3,2,2],[2,3,0,2],[0,2,3,1]],[[1,2,1,0],[0,3,2,2],[2,3,0,2],[0,3,2,1]],[[1,2,1,0],[0,3,2,2],[2,3,0,3],[0,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,4,0,2],[0,2,2,1]],[[1,2,1,0],[0,3,2,2],[3,3,0,2],[0,2,2,1]],[[1,2,1,0],[0,3,2,3],[2,3,0,2],[0,2,2,1]],[[1,2,1,0],[0,4,2,2],[2,3,0,2],[0,2,2,1]],[[1,3,1,0],[0,3,2,2],[2,3,0,2],[0,2,2,1]],[[2,2,1,0],[0,3,2,2],[2,3,0,2],[0,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,1,0],[0,3,2,2],[2,2,4,2],[1,1,1,0]],[[1,2,1,0],[0,3,2,3],[2,2,3,2],[1,1,1,0]],[[1,2,1,0],[0,3,2,2],[2,2,3,2],[1,1,0,2]],[[1,2,1,0],[0,3,2,2],[2,2,3,3],[1,1,0,1]],[[1,2,1,0],[0,3,2,2],[2,2,4,2],[1,1,0,1]],[[1,2,1,0],[0,3,2,3],[2,2,3,2],[1,1,0,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,2],[1,0,3,0]],[[1,2,1,0],[0,3,2,2],[2,2,3,3],[1,0,2,0]],[[1,2,1,0],[0,3,2,2],[2,2,4,2],[1,0,2,0]],[[1,2,1,0],[0,3,2,3],[2,2,3,2],[1,0,2,0]],[[1,2,1,0],[0,3,2,2],[2,2,3,2],[1,0,1,2]],[[1,2,1,0],[0,3,2,2],[2,2,3,3],[1,0,1,1]],[[1,2,1,0],[0,3,2,2],[2,2,4,2],[1,0,1,1]],[[1,2,1,0],[0,3,2,3],[2,2,3,2],[1,0,1,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,1,0],[0,3,2,2],[2,2,4,2],[0,2,1,0]],[[1,2,1,0],[0,3,2,3],[2,2,3,2],[0,2,1,0]],[[1,2,1,0],[0,3,2,2],[2,2,3,2],[0,2,0,2]],[[1,2,1,0],[0,3,2,2],[2,2,3,3],[0,2,0,1]],[[1,2,1,0],[0,3,2,2],[2,2,4,2],[0,2,0,1]],[[1,2,1,0],[0,3,2,3],[2,2,3,2],[0,2,0,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,2],[0,1,3,0]],[[1,2,1,0],[0,3,2,2],[2,2,3,3],[0,1,2,0]],[[1,2,1,0],[0,3,2,2],[2,2,4,2],[0,1,2,0]],[[1,2,1,0],[0,3,2,3],[2,2,3,2],[0,1,2,0]],[[1,2,1,0],[0,3,2,2],[2,2,3,2],[0,1,1,2]],[[1,2,1,0],[0,3,2,2],[2,2,3,3],[0,1,1,1]],[[1,2,1,0],[0,3,2,2],[2,2,4,2],[0,1,1,1]],[[1,2,1,0],[0,3,2,3],[2,2,3,2],[0,1,1,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,2],[0,0,2,2]],[[1,2,1,0],[0,3,2,2],[2,2,3,3],[0,0,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,4,2],[0,0,2,1]],[[1,2,1,0],[0,3,2,3],[2,2,3,2],[0,0,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[0,3,2,2],[2,2,3,1],[2,2,1,0]],[[1,2,1,0],[0,3,2,2],[3,2,3,1],[1,2,1,0]],[[1,2,1,0],[0,3,2,2],[2,2,3,1],[1,3,0,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,1],[2,2,0,1]],[[1,2,1,0],[0,3,2,2],[3,2,3,1],[1,2,0,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,1],[1,0,2,2]],[[1,2,1,0],[0,3,2,2],[2,2,3,1],[1,0,3,1]],[[1,2,1,0],[0,3,2,2],[2,2,4,1],[1,0,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,1],[0,2,3,0]],[[1,2,1,0],[0,3,2,2],[2,2,3,1],[0,3,2,0]],[[1,2,1,0],[0,3,2,2],[2,2,4,1],[0,2,2,0]],[[1,2,1,0],[0,3,2,2],[2,2,3,1],[0,1,2,2]],[[1,2,1,0],[0,3,2,2],[2,2,3,1],[0,1,3,1]],[[1,2,1,0],[0,3,2,2],[2,2,4,1],[0,1,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,0],[1,3,1,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,0],[2,2,1,1]],[[1,2,1,0],[0,3,2,2],[3,2,3,0],[1,2,1,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,0],[0,2,2,2]],[[1,2,1,0],[0,3,2,2],[2,2,3,0],[0,2,3,1]],[[1,2,1,0],[0,3,2,2],[2,2,3,0],[0,3,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,4,0],[0,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,1,0],[0,3,2,2],[2,2,2,2],[1,0,3,1]],[[1,2,1,0],[0,3,2,2],[2,2,2,3],[1,0,2,1]],[[1,2,1,0],[0,3,2,3],[2,2,2,2],[1,0,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,2,2],[0,1,2,2]],[[1,2,1,0],[0,3,2,2],[2,2,2,2],[0,1,3,1]],[[1,2,1,0],[0,3,2,2],[2,2,2,3],[0,1,2,1]],[[1,2,1,0],[0,3,2,3],[2,2,2,2],[0,1,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,1,0],[0,3,2,2],[2,2,2,1],[1,3,2,0]],[[1,2,1,0],[0,3,2,2],[2,2,2,1],[2,2,2,0]],[[1,2,1,0],[0,3,2,2],[3,2,2,1],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[2,2,2,0],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[2,2,2,0],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[2,2,2,0],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,2,0],[2,2,2,1]],[[1,2,1,0],[0,3,2,2],[3,2,2,0],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[2,2,0,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[2,2,0,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,0,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,2,0,3],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[3,2,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,3],[2,2,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,1,0],[0,3,2,2],[2,1,3,2],[0,3,2,0]],[[1,2,1,0],[0,3,2,2],[2,1,3,3],[0,2,2,0]],[[1,2,1,0],[0,3,2,2],[2,1,4,2],[0,2,2,0]],[[1,2,1,0],[0,3,2,3],[2,1,3,2],[0,2,2,0]],[[1,2,1,0],[0,3,2,2],[2,1,3,2],[0,2,1,2]],[[1,2,1,0],[0,3,2,2],[2,1,3,3],[0,2,1,1]],[[1,2,1,0],[0,3,2,2],[2,1,4,2],[0,2,1,1]],[[1,2,1,0],[0,3,2,3],[2,1,3,2],[0,2,1,1]],[[1,2,1,0],[0,3,2,2],[2,1,3,1],[1,2,3,0]],[[1,2,1,0],[0,3,2,2],[2,1,3,1],[1,3,2,0]],[[1,2,1,0],[0,3,2,2],[2,1,3,1],[2,2,2,0]],[[1,2,1,0],[0,3,2,2],[2,1,4,1],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[3,1,3,1],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[2,1,3,1],[0,2,2,2]],[[1,2,1,0],[0,3,2,2],[2,1,3,1],[0,2,3,1]],[[1,2,1,0],[0,3,2,2],[2,1,3,1],[0,3,2,1]],[[1,2,1,0],[0,3,2,2],[2,1,4,1],[0,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,1,3,0],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[2,1,3,0],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[2,1,3,0],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[2,1,3,0],[2,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,1,4,0],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[3,1,3,0],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,1,2,2],[0,2,2,2]],[[1,2,1,0],[0,3,2,2],[2,1,2,2],[0,2,3,1]],[[1,2,1,0],[0,3,2,2],[2,1,2,2],[0,3,2,1]],[[1,2,1,0],[0,3,2,2],[2,1,2,3],[0,2,2,1]],[[1,2,1,0],[0,3,2,3],[2,1,2,2],[0,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,2,2],[2,0,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,2,2],[2,0,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,2,2],[2,0,3,3],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[2,0,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[3,0,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,3],[2,0,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[2,0,3,2],[1,2,1,2]],[[1,2,1,0],[0,3,2,2],[2,0,3,3],[1,2,1,1]],[[1,2,1,0],[0,3,2,2],[2,0,4,2],[1,2,1,1]],[[1,2,1,0],[0,3,2,3],[2,0,3,2],[1,2,1,1]],[[1,2,1,0],[0,3,2,2],[2,0,3,2],[0,2,2,2]],[[1,2,1,0],[0,3,2,2],[2,0,3,2],[0,2,3,1]],[[1,2,1,0],[0,3,2,2],[2,0,3,3],[0,2,2,1]],[[1,2,1,0],[0,3,2,3],[2,0,3,2],[0,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,0,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[2,0,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[2,0,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[2,0,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,0,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[3,0,3,1],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,0,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[2,0,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[2,0,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[2,0,2,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,2],[2,0,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[3,0,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,3],[2,0,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[0,3,2,2],[1,3,3,1],[2,2,1,0]],[[1,2,1,0],[0,3,2,2],[1,3,4,1],[1,2,1,0]],[[1,2,1,0],[0,3,2,2],[1,4,3,1],[1,2,1,0]],[[1,2,1,0],[0,4,2,2],[1,3,3,1],[1,2,1,0]],[[1,3,1,0],[0,3,2,2],[1,3,3,1],[1,2,1,0]],[[2,2,1,0],[0,3,2,2],[1,3,3,1],[1,2,1,0]],[[1,2,1,0],[0,3,2,2],[1,3,3,1],[1,3,0,1]],[[1,2,1,0],[0,3,2,2],[1,3,3,1],[2,2,0,1]],[[1,2,1,0],[0,3,2,2],[1,3,4,1],[1,2,0,1]],[[1,2,1,0],[0,3,2,2],[1,4,3,1],[1,2,0,1]],[[1,2,1,0],[0,4,2,2],[1,3,3,1],[1,2,0,1]],[[1,3,1,0],[0,3,2,2],[1,3,3,1],[1,2,0,1]],[[2,2,1,0],[0,3,2,2],[1,3,3,1],[1,2,0,1]],[[1,2,1,0],[0,3,2,2],[1,3,3,1],[1,1,3,0]],[[1,2,1,0],[0,3,2,2],[1,3,4,1],[1,1,2,0]],[[1,2,1,0],[0,3,2,2],[1,4,3,1],[1,1,2,0]],[[1,2,1,0],[0,4,2,2],[1,3,3,1],[1,1,2,0]],[[1,3,1,0],[0,3,2,2],[1,3,3,1],[1,1,2,0]],[[2,2,1,0],[0,3,2,2],[1,3,3,1],[1,1,2,0]],[[1,2,1,0],[0,3,2,2],[1,3,4,1],[1,1,1,1]],[[1,2,1,0],[0,3,2,2],[1,4,3,1],[1,1,1,1]],[[1,2,1,0],[0,4,2,2],[1,3,3,1],[1,1,1,1]],[[1,3,1,0],[0,3,2,2],[1,3,3,1],[1,1,1,1]],[[2,2,1,0],[0,3,2,2],[1,3,3,1],[1,1,1,1]],[[1,2,1,0],[0,3,2,2],[1,3,3,0],[1,3,1,1]],[[1,2,1,0],[0,3,2,2],[1,3,3,0],[2,2,1,1]],[[1,2,1,0],[0,3,2,2],[1,3,4,0],[1,2,1,1]],[[1,2,1,0],[0,3,2,2],[1,4,3,0],[1,2,1,1]],[[1,2,1,0],[0,4,2,2],[1,3,3,0],[1,2,1,1]],[[1,3,1,0],[0,3,2,2],[1,3,3,0],[1,2,1,1]],[[2,2,1,0],[0,3,2,2],[1,3,3,0],[1,2,1,1]],[[1,2,1,0],[0,3,2,2],[1,3,3,0],[1,1,2,2]],[[1,2,1,0],[0,3,2,2],[1,3,3,0],[1,1,3,1]],[[1,2,1,0],[0,3,2,2],[1,3,4,0],[1,1,2,1]],[[1,2,1,0],[0,3,2,2],[1,4,3,0],[1,1,2,1]],[[1,2,1,0],[0,4,2,2],[1,3,3,0],[1,1,2,1]],[[1,3,1,0],[0,3,2,2],[1,3,3,0],[1,1,2,1]],[[2,2,1,0],[0,3,2,2],[1,3,3,0],[1,1,2,1]],[[1,2,1,0],[0,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,1,0],[0,3,2,2],[1,3,2,1],[1,3,2,0]],[[1,2,1,0],[0,3,2,2],[1,3,2,1],[2,2,2,0]],[[1,2,1,0],[0,3,2,2],[1,4,2,1],[1,2,2,0]],[[1,2,1,0],[0,4,2,2],[1,3,2,1],[1,2,2,0]],[[1,3,1,0],[0,3,2,2],[1,3,2,1],[1,2,2,0]],[[2,2,1,0],[0,3,2,2],[1,3,2,1],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[1,3,2,0],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[1,3,2,0],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[1,3,2,0],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[1,3,2,0],[2,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,4,2,0],[1,2,2,1]],[[1,2,1,0],[0,4,2,2],[1,3,2,0],[1,2,2,1]],[[1,3,1,0],[0,3,2,2],[1,3,2,0],[1,2,2,1]],[[2,2,1,0],[0,3,2,2],[1,3,2,0],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,3,0,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[1,3,0,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[1,3,0,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[1,3,0,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,3,0,3],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,4,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,3],[1,3,0,2],[1,2,2,1]],[[1,2,1,0],[0,4,2,2],[1,3,0,2],[1,2,2,1]],[[1,3,1,0],[0,3,2,2],[1,3,0,2],[1,2,2,1]],[[2,2,1,0],[0,3,2,2],[1,3,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,1,0],[0,3,2,2],[1,2,4,2],[1,2,1,0]],[[1,2,1,0],[0,3,2,3],[1,2,3,2],[1,2,1,0]],[[1,2,1,0],[0,3,2,2],[1,2,3,2],[1,2,0,2]],[[1,2,1,0],[0,3,2,2],[1,2,3,3],[1,2,0,1]],[[1,2,1,0],[0,3,2,2],[1,2,4,2],[1,2,0,1]],[[1,2,1,0],[0,3,2,3],[1,2,3,2],[1,2,0,1]],[[1,2,1,0],[0,3,2,2],[1,2,3,2],[1,1,3,0]],[[1,2,1,0],[0,3,2,2],[1,2,3,3],[1,1,2,0]],[[1,2,1,0],[0,3,2,2],[1,2,4,2],[1,1,2,0]],[[1,2,1,0],[0,3,2,3],[1,2,3,2],[1,1,2,0]],[[1,2,1,0],[0,3,2,2],[1,2,3,2],[1,1,1,2]],[[1,2,1,0],[0,3,2,2],[1,2,3,3],[1,1,1,1]],[[1,2,1,0],[0,3,2,2],[1,2,4,2],[1,1,1,1]],[[1,2,1,0],[0,3,2,3],[1,2,3,2],[1,1,1,1]],[[1,2,1,0],[0,3,2,2],[1,2,3,2],[1,0,2,2]],[[1,2,1,0],[0,3,2,2],[1,2,3,3],[1,0,2,1]],[[1,2,1,0],[0,3,2,2],[1,2,4,2],[1,0,2,1]],[[1,2,1,0],[0,3,2,3],[1,2,3,2],[1,0,2,1]],[[1,2,1,0],[0,3,2,2],[1,2,3,1],[1,2,3,0]],[[1,2,1,0],[0,3,2,2],[1,2,3,1],[1,3,2,0]],[[1,2,1,0],[0,3,2,2],[1,2,3,1],[2,2,2,0]],[[1,2,1,0],[0,3,2,2],[1,2,4,1],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[1,2,3,1],[1,1,2,2]],[[1,2,1,0],[0,3,2,2],[1,2,3,1],[1,1,3,1]],[[1,2,1,0],[0,3,2,2],[1,2,4,1],[1,1,2,1]],[[1,2,1,0],[0,3,2,2],[1,2,3,0],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[1,2,3,0],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[1,2,3,0],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[1,2,3,0],[2,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,2,4,0],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,2,2,2],[1,1,2,2]],[[1,2,1,0],[0,3,2,2],[1,2,2,2],[1,1,3,1]],[[1,2,1,0],[0,3,2,2],[1,2,2,3],[1,1,2,1]],[[1,2,1,0],[0,3,2,3],[1,2,2,2],[1,1,2,1]],[[1,2,1,0],[0,3,2,2],[1,1,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,2,2],[1,1,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,2,2],[1,1,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,2,2],[1,1,3,3],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[1,1,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,3],[1,1,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[1,1,3,2],[1,2,1,2]],[[1,2,1,0],[0,3,2,2],[1,1,3,3],[1,2,1,1]],[[1,2,1,0],[0,3,2,2],[1,1,4,2],[1,2,1,1]],[[1,2,1,0],[0,3,2,3],[1,1,3,2],[1,2,1,1]],[[1,2,1,0],[0,3,2,2],[1,1,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[1,1,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[1,1,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[1,1,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,1,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,1,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[1,1,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[1,1,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[1,1,2,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,1,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,2,3],[1,1,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[1,0,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[1,0,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[1,0,3,3],[1,2,2,1]],[[1,2,1,0],[0,3,2,3],[1,0,3,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,2],[0,3,3,1],[1,2,3,0]],[[1,2,1,0],[0,3,2,2],[0,3,3,1],[1,3,2,0]],[[1,2,1,0],[0,3,2,2],[0,3,4,1],[1,2,2,0]],[[1,2,1,0],[0,3,2,2],[0,3,3,0],[1,2,2,2]],[[1,2,1,0],[0,3,2,2],[0,3,3,0],[1,2,3,1]],[[1,2,1,0],[0,3,2,2],[0,3,3,0],[1,3,2,1]],[[1,2,1,0],[0,3,2,2],[0,3,4,0],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[0,3,2,1],[2,4,3,2],[1,2,0,0]],[[1,2,1,0],[0,3,2,1],[3,3,3,2],[1,2,0,0]],[[1,2,1,0],[0,4,2,1],[2,3,3,2],[1,2,0,0]],[[1,3,1,0],[0,3,2,1],[2,3,3,2],[1,2,0,0]],[[2,2,1,0],[0,3,2,1],[2,3,3,2],[1,2,0,0]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[0,3,2,1],[2,3,3,3],[1,1,1,0]],[[1,2,1,0],[0,3,2,1],[2,3,4,2],[1,1,1,0]],[[1,2,1,0],[0,3,2,1],[2,4,3,2],[1,1,1,0]],[[1,2,1,0],[0,3,2,1],[3,3,3,2],[1,1,1,0]],[[1,2,1,0],[0,4,2,1],[2,3,3,2],[1,1,1,0]],[[1,3,1,0],[0,3,2,1],[2,3,3,2],[1,1,1,0]],[[2,2,1,0],[0,3,2,1],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[1,1,0,2]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[2,1,0,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,3],[1,1,0,1]],[[1,2,1,0],[0,3,2,1],[2,3,4,2],[1,1,0,1]],[[1,2,1,0],[0,3,2,1],[2,4,3,2],[1,1,0,1]],[[1,2,1,0],[0,3,2,1],[3,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,4,2,1],[2,3,3,2],[1,1,0,1]],[[1,3,1,0],[0,3,2,1],[2,3,3,2],[1,1,0,1]],[[2,2,1,0],[0,3,2,1],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[1,0,3,0]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[2,0,2,0]],[[1,2,1,0],[0,3,2,1],[2,3,3,3],[1,0,2,0]],[[1,2,1,0],[0,3,2,1],[2,3,4,2],[1,0,2,0]],[[1,2,1,0],[0,3,2,1],[2,4,3,2],[1,0,2,0]],[[1,2,1,0],[0,3,2,1],[3,3,3,2],[1,0,2,0]],[[1,2,1,0],[0,4,2,1],[2,3,3,2],[1,0,2,0]],[[1,3,1,0],[0,3,2,1],[2,3,3,2],[1,0,2,0]],[[2,2,1,0],[0,3,2,1],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[1,0,1,2]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[2,0,1,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,3],[1,0,1,1]],[[1,2,1,0],[0,3,2,1],[2,3,4,2],[1,0,1,1]],[[1,2,1,0],[0,3,2,1],[2,4,3,2],[1,0,1,1]],[[1,2,1,0],[0,3,2,1],[3,3,3,2],[1,0,1,1]],[[1,2,1,0],[0,4,2,1],[2,3,3,2],[1,0,1,1]],[[1,3,1,0],[0,3,2,1],[2,3,3,2],[1,0,1,1]],[[2,2,1,0],[0,3,2,1],[2,3,3,2],[1,0,1,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[0,3,2,1],[2,3,3,3],[0,2,1,0]],[[1,2,1,0],[0,3,2,1],[2,3,4,2],[0,2,1,0]],[[1,2,1,0],[0,3,2,1],[2,4,3,2],[0,2,1,0]],[[1,2,1,0],[0,3,2,1],[3,3,3,2],[0,2,1,0]],[[1,2,1,0],[0,4,2,1],[2,3,3,2],[0,2,1,0]],[[1,3,1,0],[0,3,2,1],[2,3,3,2],[0,2,1,0]],[[2,2,1,0],[0,3,2,1],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[0,2,0,2]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[0,3,0,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,3],[0,2,0,1]],[[1,2,1,0],[0,3,2,1],[2,3,4,2],[0,2,0,1]],[[1,2,1,0],[0,3,2,1],[2,4,3,2],[0,2,0,1]],[[1,2,1,0],[0,3,2,1],[3,3,3,2],[0,2,0,1]],[[1,2,1,0],[0,4,2,1],[2,3,3,2],[0,2,0,1]],[[1,3,1,0],[0,3,2,1],[2,3,3,2],[0,2,0,1]],[[2,2,1,0],[0,3,2,1],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[0,1,3,0]],[[1,2,1,0],[0,3,2,1],[2,3,3,3],[0,1,2,0]],[[1,2,1,0],[0,3,2,1],[2,3,4,2],[0,1,2,0]],[[1,2,1,0],[0,3,2,1],[2,4,3,2],[0,1,2,0]],[[1,2,1,0],[0,3,2,1],[3,3,3,2],[0,1,2,0]],[[1,2,1,0],[0,4,2,1],[2,3,3,2],[0,1,2,0]],[[1,3,1,0],[0,3,2,1],[2,3,3,2],[0,1,2,0]],[[2,2,1,0],[0,3,2,1],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[0,1,1,2]],[[1,2,1,0],[0,3,2,1],[2,3,3,3],[0,1,1,1]],[[1,2,1,0],[0,3,2,1],[2,3,4,2],[0,1,1,1]],[[1,2,1,0],[0,3,2,1],[2,4,3,2],[0,1,1,1]],[[1,2,1,0],[0,3,2,1],[3,3,3,2],[0,1,1,1]],[[1,2,1,0],[0,4,2,1],[2,3,3,2],[0,1,1,1]],[[1,3,1,0],[0,3,2,1],[2,3,3,2],[0,1,1,1]],[[2,2,1,0],[0,3,2,1],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,2],[0,0,2,2]],[[1,2,1,0],[0,3,2,1],[2,3,3,3],[0,0,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,4,2],[0,0,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[0,3,2,1],[2,4,3,1],[1,2,0,1]],[[1,2,1,0],[0,3,2,1],[3,3,3,1],[1,2,0,1]],[[1,2,1,0],[0,4,2,1],[2,3,3,1],[1,2,0,1]],[[1,3,1,0],[0,3,2,1],[2,3,3,1],[1,2,0,1]],[[2,2,1,0],[0,3,2,1],[2,3,3,1],[1,2,0,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[0,3,2,1],[2,3,4,1],[1,1,1,1]],[[1,2,1,0],[0,3,2,1],[2,4,3,1],[1,1,1,1]],[[1,2,1,0],[0,3,2,1],[3,3,3,1],[1,1,1,1]],[[1,2,1,0],[0,4,2,1],[2,3,3,1],[1,1,1,1]],[[1,3,1,0],[0,3,2,1],[2,3,3,1],[1,1,1,1]],[[2,2,1,0],[0,3,2,1],[2,3,3,1],[1,1,1,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,1],[1,0,2,2]],[[1,2,1,0],[0,3,2,1],[2,3,3,1],[1,0,3,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,1],[2,0,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,4,1],[1,0,2,1]],[[1,2,1,0],[0,3,2,1],[2,4,3,1],[1,0,2,1]],[[1,2,1,0],[0,3,2,1],[3,3,3,1],[1,0,2,1]],[[1,2,1,0],[0,4,2,1],[2,3,3,1],[1,0,2,1]],[[1,3,1,0],[0,3,2,1],[2,3,3,1],[1,0,2,1]],[[2,2,1,0],[0,3,2,1],[2,3,3,1],[1,0,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,1],[0,3,1,1]],[[1,2,1,0],[0,3,2,1],[2,3,4,1],[0,2,1,1]],[[1,2,1,0],[0,3,2,1],[2,4,3,1],[0,2,1,1]],[[1,2,1,0],[0,3,2,1],[3,3,3,1],[0,2,1,1]],[[1,2,1,0],[0,4,2,1],[2,3,3,1],[0,2,1,1]],[[1,3,1,0],[0,3,2,1],[2,3,3,1],[0,2,1,1]],[[2,2,1,0],[0,3,2,1],[2,3,3,1],[0,2,1,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,1],[0,1,2,2]],[[1,2,1,0],[0,3,2,1],[2,3,3,1],[0,1,3,1]],[[1,2,1,0],[0,3,2,1],[2,3,4,1],[0,1,2,1]],[[1,2,1,0],[0,3,2,1],[2,4,3,1],[0,1,2,1]],[[1,2,1,0],[0,3,2,1],[3,3,3,1],[0,1,2,1]],[[1,2,1,0],[0,4,2,1],[2,3,3,1],[0,1,2,1]],[[1,3,1,0],[0,3,2,1],[2,3,3,1],[0,1,2,1]],[[2,2,1,0],[0,3,2,1],[2,3,3,1],[0,1,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,0],[2,1,2,1]],[[1,2,1,0],[0,3,2,1],[2,4,3,0],[1,1,2,1]],[[1,2,1,0],[0,3,2,1],[3,3,3,0],[1,1,2,1]],[[1,2,1,0],[0,4,2,1],[2,3,3,0],[1,1,2,1]],[[1,3,1,0],[0,3,2,1],[2,3,3,0],[1,1,2,1]],[[2,2,1,0],[0,3,2,1],[2,3,3,0],[1,1,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,0],[0,2,3,1]],[[1,2,1,0],[0,3,2,1],[2,3,3,0],[0,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,4,3,0],[0,2,2,1]],[[1,2,1,0],[0,3,2,1],[3,3,3,0],[0,2,2,1]],[[1,2,1,0],[0,4,2,1],[2,3,3,0],[0,2,2,1]],[[1,3,1,0],[0,3,2,1],[2,3,3,0],[0,2,2,1]],[[2,2,1,0],[0,3,2,1],[2,3,3,0],[0,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[0,3,2,1],[2,4,2,2],[1,1,2,0]],[[1,2,1,0],[0,3,2,1],[3,3,2,2],[1,1,2,0]],[[1,2,1,0],[0,4,2,1],[2,3,2,2],[1,1,2,0]],[[1,3,1,0],[0,3,2,1],[2,3,2,2],[1,1,2,0]],[[2,2,1,0],[0,3,2,1],[2,3,2,2],[1,1,2,0]],[[1,2,1,0],[0,3,2,1],[2,3,2,2],[1,0,2,2]],[[1,2,1,0],[0,3,2,1],[2,3,2,2],[1,0,3,1]],[[1,2,1,0],[0,3,2,1],[2,3,2,3],[1,0,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,2,2],[0,2,3,0]],[[1,2,1,0],[0,3,2,1],[2,3,2,2],[0,3,2,0]],[[1,2,1,0],[0,3,2,1],[2,4,2,2],[0,2,2,0]],[[1,2,1,0],[0,3,2,1],[3,3,2,2],[0,2,2,0]],[[1,2,1,0],[0,4,2,1],[2,3,2,2],[0,2,2,0]],[[1,3,1,0],[0,3,2,1],[2,3,2,2],[0,2,2,0]],[[2,2,1,0],[0,3,2,1],[2,3,2,2],[0,2,2,0]],[[1,2,1,0],[0,3,2,1],[2,3,2,2],[0,1,2,2]],[[1,2,1,0],[0,3,2,1],[2,3,2,2],[0,1,3,1]],[[1,2,1,0],[0,3,2,1],[2,3,2,3],[0,1,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,2,1],[2,1,2,1]],[[1,2,1,0],[0,3,2,1],[2,4,2,1],[1,1,2,1]],[[1,2,1,0],[0,3,2,1],[3,3,2,1],[1,1,2,1]],[[1,2,1,0],[0,4,2,1],[2,3,2,1],[1,1,2,1]],[[1,3,1,0],[0,3,2,1],[2,3,2,1],[1,1,2,1]],[[2,2,1,0],[0,3,2,1],[2,3,2,1],[1,1,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,2,1],[0,2,2,2]],[[1,2,1,0],[0,3,2,1],[2,3,2,1],[0,2,3,1]],[[1,2,1,0],[0,3,2,1],[2,3,2,1],[0,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,4,2,1],[0,2,2,1]],[[1,2,1,0],[0,3,2,1],[3,3,2,1],[0,2,2,1]],[[1,2,1,0],[0,4,2,1],[2,3,2,1],[0,2,2,1]],[[1,3,1,0],[0,3,2,1],[2,3,2,1],[0,2,2,1]],[[2,2,1,0],[0,3,2,1],[2,3,2,1],[0,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,2,0],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,2,0],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[3,3,2,0],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,1,2],[1,3,2,0]],[[1,2,1,0],[0,3,2,1],[2,3,1,2],[2,2,2,0]],[[1,2,1,0],[0,3,2,1],[3,3,1,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,1],[2,3,1,2],[2,1,2,1]],[[1,2,1,0],[0,3,2,1],[2,4,1,2],[1,1,2,1]],[[1,2,1,0],[0,3,2,1],[3,3,1,2],[1,1,2,1]],[[1,2,1,0],[0,4,2,1],[2,3,1,2],[1,1,2,1]],[[1,3,1,0],[0,3,2,1],[2,3,1,2],[1,1,2,1]],[[2,2,1,0],[0,3,2,1],[2,3,1,2],[1,1,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,1,2],[0,2,2,2]],[[1,2,1,0],[0,3,2,1],[2,3,1,2],[0,2,3,1]],[[1,2,1,0],[0,3,2,1],[2,3,1,2],[0,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,1,3],[0,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,4,1,2],[0,2,2,1]],[[1,2,1,0],[0,3,2,1],[3,3,1,2],[0,2,2,1]],[[1,2,1,0],[0,4,2,1],[2,3,1,2],[0,2,2,1]],[[1,3,1,0],[0,3,2,1],[2,3,1,2],[0,2,2,1]],[[2,2,1,0],[0,3,2,1],[2,3,1,2],[0,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,1,1],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,1,1],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[3,3,1,1],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,0,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,3,0,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[3,3,0,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[0,3,2,1],[2,2,3,2],[2,2,1,0]],[[1,2,1,0],[0,3,2,1],[3,2,3,2],[1,2,1,0]],[[1,2,1,0],[0,3,2,1],[2,2,3,2],[1,3,0,1]],[[1,2,1,0],[0,3,2,1],[2,2,3,2],[2,2,0,1]],[[1,2,1,0],[0,3,2,1],[3,2,3,2],[1,2,0,1]],[[1,2,1,0],[0,3,2,1],[2,2,3,2],[0,2,3,0]],[[1,2,1,0],[0,3,2,1],[2,2,3,2],[0,3,2,0]],[[1,2,1,0],[0,3,2,1],[2,2,3,3],[0,2,2,0]],[[1,2,1,0],[0,3,2,1],[2,2,4,2],[0,2,2,0]],[[1,2,1,0],[0,3,2,1],[2,2,3,2],[0,2,1,2]],[[1,2,1,0],[0,3,2,1],[2,2,3,3],[0,2,1,1]],[[1,2,1,0],[0,3,2,1],[2,2,4,2],[0,2,1,1]],[[1,2,1,0],[0,3,2,1],[2,2,3,1],[1,3,1,1]],[[1,2,1,0],[0,3,2,1],[2,2,3,1],[2,2,1,1]],[[1,2,1,0],[0,3,2,1],[3,2,3,1],[1,2,1,1]],[[1,2,1,0],[0,3,2,1],[2,2,3,1],[0,2,2,2]],[[1,2,1,0],[0,3,2,1],[2,2,3,1],[0,2,3,1]],[[1,2,1,0],[0,3,2,1],[2,2,3,1],[0,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,2,4,1],[0,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,2,3,0],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[2,2,3,0],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,2,3,0],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[3,2,3,0],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,2,2,2],[1,2,3,0]],[[1,2,1,0],[0,3,2,1],[2,2,2,2],[1,3,2,0]],[[1,2,1,0],[0,3,2,1],[2,2,2,2],[2,2,2,0]],[[1,2,1,0],[0,3,2,1],[3,2,2,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,1],[2,2,2,2],[0,2,2,2]],[[1,2,1,0],[0,3,2,1],[2,2,2,2],[0,2,3,1]],[[1,2,1,0],[0,3,2,1],[2,2,2,2],[0,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,2,2,3],[0,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,2,2,1],[1,2,2,2]],[[1,2,1,0],[0,3,2,1],[2,2,2,1],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[2,2,2,1],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,2,2,1],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[3,2,2,1],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,2,1,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,1],[2,2,1,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[2,2,1,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,2,1,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,2,1,3],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[3,2,1,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,1,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,2,1],[2,1,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,2,1],[2,1,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,2,1],[2,1,3,3],[1,2,2,0]],[[1,2,1,0],[0,3,2,1],[2,1,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,1],[3,1,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,1],[2,1,3,2],[1,2,1,2]],[[1,2,1,0],[0,3,2,1],[2,1,3,3],[1,2,1,1]],[[1,2,1,0],[0,3,2,1],[2,1,4,2],[1,2,1,1]],[[1,2,1,0],[0,3,2,1],[2,1,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,2,1],[2,1,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[2,1,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,1,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,1,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[3,1,3,1],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,1,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,1],[2,1,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[2,1,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[2,1,2,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[2,1,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[3,1,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[0,3,2,1],[1,3,3,2],[2,2,1,0]],[[1,2,1,0],[0,3,2,1],[1,3,3,3],[1,2,1,0]],[[1,2,1,0],[0,3,2,1],[1,3,4,2],[1,2,1,0]],[[1,2,1,0],[0,3,2,1],[1,4,3,2],[1,2,1,0]],[[1,2,1,0],[0,4,2,1],[1,3,3,2],[1,2,1,0]],[[1,3,1,0],[0,3,2,1],[1,3,3,2],[1,2,1,0]],[[2,2,1,0],[0,3,2,1],[1,3,3,2],[1,2,1,0]],[[1,2,1,0],[0,3,2,1],[1,3,3,2],[1,2,0,2]],[[1,2,1,0],[0,3,2,1],[1,3,3,2],[1,3,0,1]],[[1,2,1,0],[0,3,2,1],[1,3,3,2],[2,2,0,1]],[[1,2,1,0],[0,3,2,1],[1,3,3,3],[1,2,0,1]],[[1,2,1,0],[0,3,2,1],[1,3,4,2],[1,2,0,1]],[[1,2,1,0],[0,3,2,1],[1,4,3,2],[1,2,0,1]],[[1,2,1,0],[0,4,2,1],[1,3,3,2],[1,2,0,1]],[[1,3,1,0],[0,3,2,1],[1,3,3,2],[1,2,0,1]],[[2,2,1,0],[0,3,2,1],[1,3,3,2],[1,2,0,1]],[[1,2,1,0],[0,3,2,1],[1,3,3,2],[1,1,3,0]],[[1,2,1,0],[0,3,2,1],[1,3,3,3],[1,1,2,0]],[[1,2,1,0],[0,3,2,1],[1,3,4,2],[1,1,2,0]],[[1,2,1,0],[0,3,2,1],[1,4,3,2],[1,1,2,0]],[[1,2,1,0],[0,4,2,1],[1,3,3,2],[1,1,2,0]],[[1,3,1,0],[0,3,2,1],[1,3,3,2],[1,1,2,0]],[[2,2,1,0],[0,3,2,1],[1,3,3,2],[1,1,2,0]],[[1,2,1,0],[0,3,2,1],[1,3,3,2],[1,1,1,2]],[[1,2,1,0],[0,3,2,1],[1,3,3,3],[1,1,1,1]],[[1,2,1,0],[0,3,2,1],[1,3,4,2],[1,1,1,1]],[[1,2,1,0],[0,3,2,1],[1,4,3,2],[1,1,1,1]],[[1,2,1,0],[0,4,2,1],[1,3,3,2],[1,1,1,1]],[[1,3,1,0],[0,3,2,1],[1,3,3,2],[1,1,1,1]],[[2,2,1,0],[0,3,2,1],[1,3,3,2],[1,1,1,1]],[[1,2,1,0],[0,3,2,1],[1,3,3,2],[1,0,2,2]],[[1,2,1,0],[0,3,2,1],[1,3,3,3],[1,0,2,1]],[[1,2,1,0],[0,3,2,1],[1,3,4,2],[1,0,2,1]],[[1,2,1,0],[0,3,2,1],[1,3,3,1],[1,3,1,1]],[[1,2,1,0],[0,3,2,1],[1,3,3,1],[2,2,1,1]],[[1,2,1,0],[0,3,2,1],[1,3,4,1],[1,2,1,1]],[[1,2,1,0],[0,3,2,1],[1,4,3,1],[1,2,1,1]],[[1,2,1,0],[0,4,2,1],[1,3,3,1],[1,2,1,1]],[[1,3,1,0],[0,3,2,1],[1,3,3,1],[1,2,1,1]],[[2,2,1,0],[0,3,2,1],[1,3,3,1],[1,2,1,1]],[[1,2,1,0],[0,3,2,1],[1,3,3,1],[1,1,2,2]],[[1,2,1,0],[0,3,2,1],[1,3,3,1],[1,1,3,1]],[[1,2,1,0],[0,3,2,1],[1,3,4,1],[1,1,2,1]],[[1,2,1,0],[0,3,2,1],[1,4,3,1],[1,1,2,1]],[[1,2,1,0],[0,4,2,1],[1,3,3,1],[1,1,2,1]],[[1,3,1,0],[0,3,2,1],[1,3,3,1],[1,1,2,1]],[[2,2,1,0],[0,3,2,1],[1,3,3,1],[1,1,2,1]],[[1,2,1,0],[0,3,2,1],[1,3,3,0],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[1,3,3,0],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[1,3,3,0],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[1,4,3,0],[1,2,2,1]],[[1,2,1,0],[0,4,2,1],[1,3,3,0],[1,2,2,1]],[[1,3,1,0],[0,3,2,1],[1,3,3,0],[1,2,2,1]],[[2,2,1,0],[0,3,2,1],[1,3,3,0],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[1,3,2,2],[1,2,3,0]],[[1,2,1,0],[0,3,2,1],[1,3,2,2],[1,3,2,0]],[[1,2,1,0],[0,3,2,1],[1,3,2,2],[2,2,2,0]],[[1,2,1,0],[0,3,2,1],[1,4,2,2],[1,2,2,0]],[[1,2,1,0],[0,4,2,1],[1,3,2,2],[1,2,2,0]],[[1,3,1,0],[0,3,2,1],[1,3,2,2],[1,2,2,0]],[[2,2,1,0],[0,3,2,1],[1,3,2,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,1],[1,3,2,2],[1,1,2,2]],[[1,2,1,0],[0,3,2,1],[1,3,2,2],[1,1,3,1]],[[1,2,1,0],[0,3,2,1],[1,3,2,3],[1,1,2,1]],[[1,2,1,0],[0,3,2,1],[1,3,2,1],[1,2,2,2]],[[1,2,1,0],[0,3,2,1],[1,3,2,1],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[1,3,2,1],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[1,3,2,1],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[1,4,2,1],[1,2,2,1]],[[1,2,1,0],[0,4,2,1],[1,3,2,1],[1,2,2,1]],[[1,3,1,0],[0,3,2,1],[1,3,2,1],[1,2,2,1]],[[2,2,1,0],[0,3,2,1],[1,3,2,1],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[1,3,1,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,1],[1,3,1,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[1,3,1,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[1,3,1,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[1,3,1,3],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[1,4,1,2],[1,2,2,1]],[[1,2,1,0],[0,4,2,1],[1,3,1,2],[1,2,2,1]],[[1,3,1,0],[0,3,2,1],[1,3,1,2],[1,2,2,1]],[[2,2,1,0],[0,3,2,1],[1,3,1,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[1,2,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,2,1],[1,2,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,2,1],[1,2,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,2,1],[1,2,3,3],[1,2,2,0]],[[1,2,1,0],[0,3,2,1],[1,2,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,1],[1,2,3,2],[1,2,1,2]],[[1,2,1,0],[0,3,2,1],[1,2,3,3],[1,2,1,1]],[[1,2,1,0],[0,3,2,1],[1,2,4,2],[1,2,1,1]],[[1,2,1,0],[0,3,2,1],[1,2,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,2,1],[1,2,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[1,2,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[1,2,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[1,2,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[1,2,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,1],[1,2,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[1,2,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[1,2,2,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,1],[1,2,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[0,3,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,2,1],[0,3,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,2,1],[0,3,3,3],[1,2,2,0]],[[1,2,1,0],[0,3,2,1],[0,3,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,2,1],[0,3,3,2],[1,2,1,2]],[[1,2,1,0],[0,3,2,1],[0,3,3,3],[1,2,1,1]],[[1,2,1,0],[0,3,2,1],[0,3,4,2],[1,2,1,1]],[[1,2,1,0],[0,3,2,1],[0,3,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,2,1],[0,3,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[0,3,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[0,3,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,2,1],[0,3,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,1],[0,3,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,1],[0,3,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,1],[0,3,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,1,0],[0,3,2,0],[2,4,3,2],[1,2,0,1]],[[1,2,1,0],[0,3,2,0],[3,3,3,2],[1,2,0,1]],[[1,2,1,0],[0,3,2,0],[2,3,3,2],[2,1,1,1]],[[1,2,1,0],[0,3,2,0],[2,3,4,2],[1,1,1,1]],[[1,2,1,0],[0,3,2,0],[2,4,3,2],[1,1,1,1]],[[1,2,1,0],[0,3,2,0],[3,3,3,2],[1,1,1,1]],[[1,2,1,0],[0,4,2,0],[2,3,3,2],[1,1,1,1]],[[1,3,1,0],[0,3,2,0],[2,3,3,2],[1,1,1,1]],[[2,2,1,0],[0,3,2,0],[2,3,3,2],[1,1,1,1]],[[1,2,1,0],[0,3,2,0],[2,3,3,2],[1,0,2,2]],[[1,2,1,0],[0,3,2,0],[2,3,3,2],[1,0,3,1]],[[1,2,1,0],[0,3,2,0],[2,3,3,2],[2,0,2,1]],[[1,2,1,0],[0,3,2,0],[2,3,4,2],[1,0,2,1]],[[1,2,1,0],[0,3,2,0],[2,4,3,2],[1,0,2,1]],[[1,2,1,0],[0,3,2,0],[3,3,3,2],[1,0,2,1]],[[1,2,1,0],[0,4,2,0],[2,3,3,2],[1,0,2,1]],[[1,3,1,0],[0,3,2,0],[2,3,3,2],[1,0,2,1]],[[2,2,1,0],[0,3,2,0],[2,3,3,2],[1,0,2,1]],[[1,2,1,0],[0,3,2,0],[2,3,3,2],[0,3,1,1]],[[1,2,1,0],[0,3,2,0],[2,3,4,2],[0,2,1,1]],[[1,2,1,0],[0,3,2,0],[2,4,3,2],[0,2,1,1]],[[1,2,1,0],[0,3,2,0],[3,3,3,2],[0,2,1,1]],[[1,2,1,0],[0,4,2,0],[2,3,3,2],[0,2,1,1]],[[1,3,1,0],[0,3,2,0],[2,3,3,2],[0,2,1,1]],[[2,2,1,0],[0,3,2,0],[2,3,3,2],[0,2,1,1]],[[1,2,1,0],[0,3,2,0],[2,3,3,2],[0,1,2,2]],[[1,2,1,0],[0,3,2,0],[2,3,3,2],[0,1,3,1]],[[1,2,1,0],[0,3,2,0],[2,3,4,2],[0,1,2,1]],[[1,2,1,0],[0,3,2,0],[2,4,3,2],[0,1,2,1]],[[1,2,1,0],[0,3,2,0],[3,3,3,2],[0,1,2,1]],[[1,2,1,0],[0,4,2,0],[2,3,3,2],[0,1,2,1]],[[1,3,1,0],[0,3,2,0],[2,3,3,2],[0,1,2,1]],[[2,2,1,0],[0,3,2,0],[2,3,3,2],[0,1,2,1]],[[1,2,1,0],[0,3,2,0],[2,3,2,2],[2,1,2,1]],[[1,2,1,0],[0,3,2,0],[2,4,2,2],[1,1,2,1]],[[1,2,1,0],[0,3,2,0],[3,3,2,2],[1,1,2,1]],[[1,2,1,0],[0,4,2,0],[2,3,2,2],[1,1,2,1]],[[1,3,1,0],[0,3,2,0],[2,3,2,2],[1,1,2,1]],[[2,2,1,0],[0,3,2,0],[2,3,2,2],[1,1,2,1]],[[1,2,1,0],[0,3,2,0],[2,3,2,2],[0,2,2,2]],[[1,2,1,0],[0,3,2,0],[2,3,2,2],[0,2,3,1]],[[1,2,1,0],[0,3,2,0],[2,3,2,2],[0,3,2,1]],[[1,2,1,0],[0,3,2,0],[2,4,2,2],[0,2,2,1]],[[1,2,1,0],[0,3,2,0],[3,3,2,2],[0,2,2,1]],[[1,2,1,0],[0,4,2,0],[2,3,2,2],[0,2,2,1]],[[1,3,1,0],[0,3,2,0],[2,3,2,2],[0,2,2,1]],[[2,2,1,0],[0,3,2,0],[2,3,2,2],[0,2,2,1]],[[1,2,1,0],[0,3,2,0],[2,3,1,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,0],[2,3,1,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,0],[3,3,1,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,0],[2,2,3,2],[1,3,1,1]],[[1,2,1,0],[0,3,2,0],[2,2,3,2],[2,2,1,1]],[[1,2,1,0],[0,3,2,0],[3,2,3,2],[1,2,1,1]],[[1,2,1,0],[0,3,2,0],[2,2,3,2],[0,2,2,2]],[[1,2,1,0],[0,3,2,0],[2,2,3,2],[0,2,3,1]],[[1,2,1,0],[0,3,2,0],[2,2,3,2],[0,3,2,1]],[[1,2,1,0],[0,3,2,0],[2,2,4,2],[0,2,2,1]],[[1,2,1,0],[0,3,2,0],[2,2,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,0],[2,2,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,0],[2,2,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,0],[2,2,2,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,0],[3,2,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,0],[2,1,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,0],[2,1,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,0],[2,1,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,0],[2,1,3,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,0],[2,1,4,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,0],[3,1,3,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,0],[1,3,3,2],[1,3,1,1]],[[1,2,1,0],[0,3,2,0],[1,3,3,2],[2,2,1,1]],[[1,2,1,0],[0,3,2,0],[1,3,4,2],[1,2,1,1]],[[1,2,1,0],[0,3,2,0],[1,4,3,2],[1,2,1,1]],[[1,2,1,0],[0,4,2,0],[1,3,3,2],[1,2,1,1]],[[1,3,1,0],[0,3,2,0],[1,3,3,2],[1,2,1,1]],[[2,2,1,0],[0,3,2,0],[1,3,3,2],[1,2,1,1]],[[1,2,1,0],[0,3,2,0],[1,3,3,2],[1,1,2,2]],[[1,2,1,0],[0,3,2,0],[1,3,3,2],[1,1,3,1]],[[1,2,1,0],[0,3,2,0],[1,3,4,2],[1,1,2,1]],[[1,2,1,0],[0,3,2,0],[1,4,3,2],[1,1,2,1]],[[1,2,1,0],[0,4,2,0],[1,3,3,2],[1,1,2,1]],[[1,3,1,0],[0,3,2,0],[1,3,3,2],[1,1,2,1]],[[2,2,1,0],[0,3,2,0],[1,3,3,2],[1,1,2,1]],[[1,2,1,0],[0,3,2,0],[1,3,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,0],[1,3,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,0],[1,3,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,0],[1,3,2,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,0],[1,4,2,2],[1,2,2,1]],[[1,2,1,0],[0,4,2,0],[1,3,2,2],[1,2,2,1]],[[1,3,1,0],[0,3,2,0],[1,3,2,2],[1,2,2,1]],[[2,2,1,0],[0,3,2,0],[1,3,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,0],[1,2,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,0],[1,2,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,0],[1,2,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,0],[1,2,3,2],[2,2,2,1]],[[1,2,1,0],[0,3,2,0],[1,2,4,2],[1,2,2,1]],[[1,2,1,0],[0,3,2,0],[0,3,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,2,0],[0,3,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,2,0],[0,3,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,2,0],[0,3,4,2],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[0,3,1,2],[2,4,3,2],[1,2,0,0]],[[1,2,1,0],[0,3,1,2],[3,3,3,2],[1,2,0,0]],[[1,2,1,0],[0,4,1,2],[2,3,3,2],[1,2,0,0]],[[1,3,1,0],[0,3,1,2],[2,3,3,2],[1,2,0,0]],[[2,2,1,0],[0,3,1,2],[2,3,3,2],[1,2,0,0]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[0,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,0],[0,3,1,2],[2,3,4,2],[1,1,1,0]],[[1,2,1,0],[0,3,1,2],[2,4,3,2],[1,1,1,0]],[[1,2,1,0],[0,3,1,2],[3,3,3,2],[1,1,1,0]],[[1,2,1,0],[0,3,1,3],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[0,4,1,2],[2,3,3,2],[1,1,1,0]],[[1,3,1,0],[0,3,1,2],[2,3,3,2],[1,1,1,0]],[[2,2,1,0],[0,3,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[1,1,0,2]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[2,1,0,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,3],[1,1,0,1]],[[1,2,1,0],[0,3,1,2],[2,3,4,2],[1,1,0,1]],[[1,2,1,0],[0,3,1,2],[2,4,3,2],[1,1,0,1]],[[1,2,1,0],[0,3,1,2],[3,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,3,1,3],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,4,1,2],[2,3,3,2],[1,1,0,1]],[[1,3,1,0],[0,3,1,2],[2,3,3,2],[1,1,0,1]],[[2,2,1,0],[0,3,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[1,0,3,0]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[2,0,2,0]],[[1,2,1,0],[0,3,1,2],[2,3,3,3],[1,0,2,0]],[[1,2,1,0],[0,3,1,2],[2,3,4,2],[1,0,2,0]],[[1,2,1,0],[0,3,1,2],[2,4,3,2],[1,0,2,0]],[[1,2,1,0],[0,3,1,2],[3,3,3,2],[1,0,2,0]],[[1,2,1,0],[0,3,1,3],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[0,4,1,2],[2,3,3,2],[1,0,2,0]],[[1,3,1,0],[0,3,1,2],[2,3,3,2],[1,0,2,0]],[[2,2,1,0],[0,3,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[1,0,1,2]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[2,0,1,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,3],[1,0,1,1]],[[1,2,1,0],[0,3,1,2],[2,3,4,2],[1,0,1,1]],[[1,2,1,0],[0,3,1,2],[2,4,3,2],[1,0,1,1]],[[1,2,1,0],[0,3,1,2],[3,3,3,2],[1,0,1,1]],[[1,2,1,0],[0,3,1,3],[2,3,3,2],[1,0,1,1]],[[1,2,1,0],[0,4,1,2],[2,3,3,2],[1,0,1,1]],[[1,3,1,0],[0,3,1,2],[2,3,3,2],[1,0,1,1]],[[2,2,1,0],[0,3,1,2],[2,3,3,2],[1,0,1,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[0,3,1,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,0],[0,3,1,2],[2,3,4,2],[0,2,1,0]],[[1,2,1,0],[0,3,1,2],[2,4,3,2],[0,2,1,0]],[[1,2,1,0],[0,3,1,2],[3,3,3,2],[0,2,1,0]],[[1,2,1,0],[0,3,1,3],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[0,4,1,2],[2,3,3,2],[0,2,1,0]],[[1,3,1,0],[0,3,1,2],[2,3,3,2],[0,2,1,0]],[[2,2,1,0],[0,3,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[0,2,0,2]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[0,3,0,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,3],[0,2,0,1]],[[1,2,1,0],[0,3,1,2],[2,3,4,2],[0,2,0,1]],[[1,2,1,0],[0,3,1,2],[2,4,3,2],[0,2,0,1]],[[1,2,1,0],[0,3,1,2],[3,3,3,2],[0,2,0,1]],[[1,2,1,0],[0,3,1,3],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[0,4,1,2],[2,3,3,2],[0,2,0,1]],[[1,3,1,0],[0,3,1,2],[2,3,3,2],[0,2,0,1]],[[2,2,1,0],[0,3,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[0,1,3,0]],[[1,2,1,0],[0,3,1,2],[2,3,3,3],[0,1,2,0]],[[1,2,1,0],[0,3,1,2],[2,3,4,2],[0,1,2,0]],[[1,2,1,0],[0,3,1,2],[2,4,3,2],[0,1,2,0]],[[1,2,1,0],[0,3,1,2],[3,3,3,2],[0,1,2,0]],[[1,2,1,0],[0,3,1,3],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[0,4,1,2],[2,3,3,2],[0,1,2,0]],[[1,3,1,0],[0,3,1,2],[2,3,3,2],[0,1,2,0]],[[2,2,1,0],[0,3,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[0,1,1,2]],[[1,2,1,0],[0,3,1,2],[2,3,3,3],[0,1,1,1]],[[1,2,1,0],[0,3,1,2],[2,3,4,2],[0,1,1,1]],[[1,2,1,0],[0,3,1,2],[2,4,3,2],[0,1,1,1]],[[1,2,1,0],[0,3,1,2],[3,3,3,2],[0,1,1,1]],[[1,2,1,0],[0,3,1,3],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[0,4,1,2],[2,3,3,2],[0,1,1,1]],[[1,3,1,0],[0,3,1,2],[2,3,3,2],[0,1,1,1]],[[2,2,1,0],[0,3,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,2],[0,0,2,2]],[[1,2,1,0],[0,3,1,2],[2,3,3,3],[0,0,2,1]],[[1,2,1,0],[0,3,1,2],[2,3,4,2],[0,0,2,1]],[[1,2,1,0],[0,3,1,3],[2,3,3,2],[0,0,2,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[0,3,1,2],[2,4,3,1],[1,2,0,1]],[[1,2,1,0],[0,3,1,2],[3,3,3,1],[1,2,0,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[0,3,1,2],[2,3,4,1],[1,1,1,1]],[[1,2,1,0],[0,3,1,2],[2,4,3,1],[1,1,1,1]],[[1,2,1,0],[0,3,1,2],[3,3,3,1],[1,1,1,1]],[[1,2,1,0],[0,4,1,2],[2,3,3,1],[1,1,1,1]],[[1,3,1,0],[0,3,1,2],[2,3,3,1],[1,1,1,1]],[[2,2,1,0],[0,3,1,2],[2,3,3,1],[1,1,1,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,0],[0,3,1,2],[2,3,3,1],[1,0,3,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,1],[2,0,2,1]],[[1,2,1,0],[0,3,1,2],[2,3,4,1],[1,0,2,1]],[[1,2,1,0],[0,3,1,2],[2,4,3,1],[1,0,2,1]],[[1,2,1,0],[0,3,1,2],[3,3,3,1],[1,0,2,1]],[[1,2,1,0],[0,4,1,2],[2,3,3,1],[1,0,2,1]],[[1,3,1,0],[0,3,1,2],[2,3,3,1],[1,0,2,1]],[[2,2,1,0],[0,3,1,2],[2,3,3,1],[1,0,2,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,1],[0,3,1,1]],[[1,2,1,0],[0,3,1,2],[2,3,4,1],[0,2,1,1]],[[1,2,1,0],[0,3,1,2],[2,4,3,1],[0,2,1,1]],[[1,2,1,0],[0,3,1,2],[3,3,3,1],[0,2,1,1]],[[1,2,1,0],[0,4,1,2],[2,3,3,1],[0,2,1,1]],[[1,3,1,0],[0,3,1,2],[2,3,3,1],[0,2,1,1]],[[2,2,1,0],[0,3,1,2],[2,3,3,1],[0,2,1,1]],[[1,2,1,0],[0,3,1,2],[2,3,3,1],[0,1,2,2]],[[1,2,1,0],[0,3,1,2],[2,3,3,1],[0,1,3,1]],[[1,2,1,0],[0,3,1,2],[2,3,4,1],[0,1,2,1]],[[1,2,1,0],[0,3,1,2],[2,4,3,1],[0,1,2,1]],[[1,2,1,0],[0,3,1,2],[3,3,3,1],[0,1,2,1]],[[1,2,1,0],[0,4,1,2],[2,3,3,1],[0,1,2,1]],[[1,3,1,0],[0,3,1,2],[2,3,3,1],[0,1,2,1]],[[2,2,1,0],[0,3,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[0,0,3,3],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,0,3,2],[1,2,3,1]],[[1,1,1,1],[2,3,3,0],[0,0,3,2],[1,2,2,2]],[[1,1,1,1],[2,3,3,0],[0,1,2,3],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,1,2,2],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,1,2,2],[1,3,2,1]],[[1,1,1,1],[2,3,3,0],[0,1,2,2],[1,2,3,1]],[[1,1,1,1],[2,3,3,0],[0,1,2,2],[1,2,2,2]],[[2,1,1,1],[2,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,1,1,1],[3,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,4,3,0],[0,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,4,0],[0,1,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,1,4,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,1,3,1],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,1,3,1],[1,3,2,1]],[[1,1,1,1],[2,3,3,0],[0,1,3,1],[1,2,3,1]],[[1,1,1,1],[2,3,3,0],[0,1,3,1],[1,2,2,2]],[[2,1,1,1],[2,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,1,1,1],[3,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,1,1,1],[2,4,3,0],[0,1,3,2],[1,2,1,1]],[[1,1,1,1],[2,3,4,0],[0,1,3,2],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[0,1,4,2],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[0,1,3,3],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[0,1,3,2],[1,2,1,2]],[[2,1,1,1],[2,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,1,1,1],[3,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,4,3,0],[0,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,4,0],[0,1,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[0,1,4,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[0,1,3,3],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[0,1,3,2],[2,2,2,0]],[[1,1,1,1],[2,3,3,0],[0,1,3,2],[1,3,2,0]],[[1,1,1,1],[2,3,3,0],[0,1,3,2],[1,2,3,0]],[[1,1,1,1],[2,3,3,0],[0,2,2,3],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[0,2,2,2],[1,1,3,1]],[[1,1,1,1],[2,3,3,0],[0,2,2,2],[1,1,2,2]],[[2,1,1,1],[2,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,1,1,1],[3,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,1,1,1],[2,4,3,0],[0,2,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,4,0],[0,2,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[0,2,4,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[0,2,3,1],[1,1,3,1]],[[1,1,1,1],[2,3,3,0],[0,2,3,1],[1,1,2,2]],[[2,1,1,1],[2,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,1,1,1],[3,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,4,3,0],[0,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,4,0],[0,2,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[0,2,4,1],[1,2,1,1]],[[1,1,1,1],[2,4,3,0],[0,2,3,2],[1,0,2,1]],[[1,1,1,1],[2,3,4,0],[0,2,3,2],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[0,2,4,2],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[0,2,3,3],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[0,2,3,2],[1,0,2,2]],[[2,1,1,1],[2,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,1,1,1],[3,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,1,1,1],[2,4,3,0],[0,2,3,2],[1,1,1,1]],[[1,1,1,1],[2,3,4,0],[0,2,3,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[0,2,4,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[0,2,3,3],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[0,2,3,2],[1,1,1,2]],[[2,1,1,1],[2,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,1,1,1],[3,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,0],[0,2,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,4,0],[0,2,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[0,2,4,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[0,2,3,3],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[0,2,3,2],[1,1,3,0]],[[2,1,1,1],[2,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,1,1,1],[3,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,4,3,0],[0,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,4,0],[0,2,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[0,2,4,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[0,2,3,3],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[0,2,3,2],[1,2,0,2]],[[2,1,1,1],[2,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,1,1,1],[3,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,4,3,0],[0,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,4,0],[0,2,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[0,2,4,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[0,2,3,3],[1,2,1,0]],[[2,1,1,1],[2,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[3,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,4,3,0],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,4,0],[0,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,4,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,0,3],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,0,2],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,0,2],[1,3,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,0,2],[1,2,3,1]],[[1,1,1,1],[2,3,3,0],[0,3,0,2],[1,2,2,2]],[[2,1,1,1],[2,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,1,1,1],[3,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,1,1,1],[2,4,3,0],[0,3,1,1],[1,2,2,1]],[[1,1,1,1],[2,3,4,0],[0,3,1,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,4,1,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,1,1],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,1,1],[1,3,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,1,1],[1,2,3,1]],[[1,1,1,1],[2,3,3,0],[0,3,1,1],[1,2,2,2]],[[2,1,1,1],[2,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,1,1,1],[3,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,1,1,1],[2,4,3,0],[0,3,1,2],[1,2,2,0]],[[1,1,1,1],[2,3,4,0],[0,3,1,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[0,4,1,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[0,3,1,2],[2,2,2,0]],[[1,1,1,1],[2,3,3,0],[0,3,1,2],[1,3,2,0]],[[1,1,1,1],[2,3,3,0],[0,3,1,2],[1,2,3,0]],[[2,1,1,1],[2,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,1,1,1],[3,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,4,3,0],[0,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,4,0],[0,3,2,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[0,4,2,1],[1,1,2,1]],[[2,1,1,1],[2,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,1,1,1],[3,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,1,1,1],[2,4,3,0],[0,3,2,1],[1,2,1,1]],[[1,1,1,1],[2,3,4,0],[0,3,2,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[0,4,2,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[0,3,2,1],[2,2,1,1]],[[1,1,1,1],[2,3,3,0],[0,3,2,1],[1,3,1,1]],[[1,1,1,1],[2,3,3,0],[0,3,2,3],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,2,2],[0,1,3,1]],[[1,1,1,1],[2,3,3,0],[0,3,2,2],[0,1,2,2]],[[2,1,1,1],[2,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,1,1,1],[3,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,1,1,1],[2,4,3,0],[0,3,2,2],[1,1,1,1]],[[1,1,1,1],[2,3,4,0],[0,3,2,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[0,4,2,2],[1,1,1,1]],[[2,1,1,1],[2,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,1,1,1],[3,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,0],[0,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,4,0],[0,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[0,4,2,2],[1,1,2,0]],[[2,1,1,1],[2,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,1,1,1],[3,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,1,1,1],[2,4,3,0],[0,3,2,2],[1,2,0,1]],[[1,1,1,1],[2,3,4,0],[0,3,2,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[0,4,2,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[0,3,2,2],[2,2,0,1]],[[1,1,1,1],[2,3,3,0],[0,3,2,2],[1,3,0,1]],[[2,1,1,1],[2,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,1,1,1],[3,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,1,1,1],[2,4,3,0],[0,3,2,2],[1,2,1,0]],[[1,1,1,1],[2,3,4,0],[0,3,2,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[0,4,2,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[0,3,2,2],[2,2,1,0]],[[1,1,1,1],[2,3,3,0],[0,3,2,2],[1,3,1,0]],[[1,2,1,0],[0,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[0,3,1,2],[2,4,2,2],[1,1,2,0]],[[1,2,1,0],[0,3,1,2],[3,3,2,2],[1,1,2,0]],[[1,2,1,0],[0,4,1,2],[2,3,2,2],[1,1,2,0]],[[1,3,1,0],[0,3,1,2],[2,3,2,2],[1,1,2,0]],[[2,2,1,0],[0,3,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,0],[0,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,4,0],[0,3,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,4,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,3,1],[0,1,3,1]],[[1,1,1,1],[2,3,3,0],[0,3,3,1],[0,1,2,2]],[[1,1,1,1],[2,4,3,0],[0,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,4,0],[0,3,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[0,3,4,1],[0,2,1,1]],[[1,2,1,0],[0,3,1,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,0],[0,3,1,2],[2,3,2,2],[1,0,3,1]],[[1,2,1,0],[0,3,1,2],[2,3,2,3],[1,0,2,1]],[[1,2,1,0],[0,3,1,3],[2,3,2,2],[1,0,2,1]],[[1,1,1,1],[2,4,3,0],[0,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,4,0],[0,3,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,4,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,3,3],[0,0,2,1]],[[1,1,1,1],[2,3,3,0],[0,3,3,2],[0,0,2,2]],[[1,1,1,1],[2,4,3,0],[0,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,0],[0,3,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[0,3,4,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[0,3,3,3],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[0,3,3,2],[0,1,1,2]],[[1,1,1,1],[2,4,3,0],[0,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,0],[0,3,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[0,3,4,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[0,3,3,3],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[0,3,3,2],[0,1,3,0]],[[1,1,1,1],[2,4,3,0],[0,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,0],[0,3,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[0,3,4,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[0,3,3,3],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[0,3,3,2],[0,2,0,2]],[[1,1,1,1],[2,4,3,0],[0,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,0],[0,3,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,0],[0,3,4,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,0],[0,3,3,3],[0,2,1,0]],[[1,2,1,0],[0,3,1,2],[2,3,2,2],[0,2,3,0]],[[1,2,1,0],[0,3,1,2],[2,3,2,2],[0,3,2,0]],[[1,2,1,0],[0,3,1,2],[2,4,2,2],[0,2,2,0]],[[1,2,1,0],[0,3,1,2],[3,3,2,2],[0,2,2,0]],[[1,2,1,0],[0,4,1,2],[2,3,2,2],[0,2,2,0]],[[1,3,1,0],[0,3,1,2],[2,3,2,2],[0,2,2,0]],[[2,2,1,0],[0,3,1,2],[2,3,2,2],[0,2,2,0]],[[1,2,1,0],[0,3,1,2],[2,3,2,2],[0,1,2,2]],[[1,2,1,0],[0,3,1,2],[2,3,2,2],[0,1,3,1]],[[1,2,1,0],[0,3,1,2],[2,3,2,3],[0,1,2,1]],[[1,2,1,0],[0,3,1,3],[2,3,2,2],[0,1,2,1]],[[2,1,1,1],[2,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,1,1,1],[3,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,4,3,0],[0,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,3,4,0],[0,3,3,2],[1,2,0,0]],[[1,1,1,1],[2,3,3,0],[0,4,3,2],[1,2,0,0]],[[1,2,1,0],[0,3,1,2],[2,3,2,1],[2,1,2,1]],[[1,2,1,0],[0,3,1,2],[2,4,2,1],[1,1,2,1]],[[1,2,1,0],[0,3,1,2],[3,3,2,1],[1,1,2,1]],[[1,2,1,0],[0,4,1,2],[2,3,2,1],[1,1,2,1]],[[1,3,1,0],[0,3,1,2],[2,3,2,1],[1,1,2,1]],[[2,2,1,0],[0,3,1,2],[2,3,2,1],[1,1,2,1]],[[1,2,1,0],[0,3,1,2],[2,3,2,1],[0,2,2,2]],[[1,2,1,0],[0,3,1,2],[2,3,2,1],[0,2,3,1]],[[1,2,1,0],[0,3,1,2],[2,3,2,1],[0,3,2,1]],[[1,2,1,0],[0,3,1,2],[2,4,2,1],[0,2,2,1]],[[1,2,1,0],[0,3,1,2],[3,3,2,1],[0,2,2,1]],[[1,2,1,0],[0,4,1,2],[2,3,2,1],[0,2,2,1]],[[1,3,1,0],[0,3,1,2],[2,3,2,1],[0,2,2,1]],[[2,2,1,0],[0,3,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,0,2,3],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,0,2,2],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,0,2,2],[1,3,2,1]],[[1,1,1,1],[2,3,3,0],[1,0,2,2],[1,2,3,1]],[[1,1,1,1],[2,3,3,0],[1,0,2,2],[1,2,2,2]],[[2,1,1,1],[2,3,3,0],[1,0,3,1],[1,2,2,1]],[[1,1,1,1],[3,3,3,0],[1,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,4,3,0],[1,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,4,0],[1,0,3,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,0,4,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,0,3,1],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,0,3,1],[1,3,2,1]],[[1,1,1,1],[2,3,3,0],[1,0,3,1],[1,2,3,1]],[[1,1,1,1],[2,3,3,0],[1,0,3,1],[1,2,2,2]],[[1,1,1,1],[2,3,3,0],[1,0,3,3],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,0,3,2],[0,2,3,1]],[[1,1,1,1],[2,3,3,0],[1,0,3,2],[0,2,2,2]],[[2,1,1,1],[2,3,3,0],[1,0,3,2],[1,2,1,1]],[[1,1,1,1],[3,3,3,0],[1,0,3,2],[1,2,1,1]],[[1,1,1,1],[2,4,3,0],[1,0,3,2],[1,2,1,1]],[[1,1,1,1],[2,3,4,0],[1,0,3,2],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[1,0,4,2],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[1,0,3,3],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[1,0,3,2],[1,2,1,2]],[[2,1,1,1],[2,3,3,0],[1,0,3,2],[1,2,2,0]],[[1,1,1,1],[3,3,3,0],[1,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,4,3,0],[1,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,4,0],[1,0,3,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[1,0,4,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[1,0,3,3],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[1,0,3,2],[2,2,2,0]],[[1,1,1,1],[2,3,3,0],[1,0,3,2],[1,3,2,0]],[[1,1,1,1],[2,3,3,0],[1,0,3,2],[1,2,3,0]],[[1,1,1,1],[2,3,3,0],[1,1,2,3],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,1,2,2],[0,3,2,1]],[[1,1,1,1],[2,3,3,0],[1,1,2,2],[0,2,3,1]],[[1,1,1,1],[2,3,3,0],[1,1,2,2],[0,2,2,2]],[[2,1,1,1],[2,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,1,1,1],[3,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,1,1,1],[2,4,3,0],[1,1,3,1],[0,2,2,1]],[[1,1,1,1],[2,3,4,0],[1,1,3,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,1,4,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,1,3,1],[0,3,2,1]],[[1,1,1,1],[2,3,3,0],[1,1,3,1],[0,2,3,1]],[[1,1,1,1],[2,3,3,0],[1,1,3,1],[0,2,2,2]],[[2,1,1,1],[2,3,3,0],[1,1,3,2],[0,2,1,1]],[[1,1,1,1],[3,3,3,0],[1,1,3,2],[0,2,1,1]],[[1,1,1,1],[2,4,3,0],[1,1,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,4,0],[1,1,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[1,1,4,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[1,1,3,3],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[1,1,3,2],[0,2,1,2]],[[2,1,1,1],[2,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,1,1,1],[3,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,1,1,1],[2,4,3,0],[1,1,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,0],[1,1,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,0],[1,1,4,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,0],[1,1,3,3],[0,2,2,0]],[[1,1,1,1],[2,3,3,0],[1,1,3,2],[0,3,2,0]],[[1,1,1,1],[2,3,3,0],[1,1,3,2],[0,2,3,0]],[[1,2,1,0],[0,3,1,2],[2,3,1,2],[1,3,2,0]],[[1,2,1,0],[0,3,1,2],[2,3,1,2],[2,2,2,0]],[[1,2,1,0],[0,3,1,2],[3,3,1,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,2],[2,3,1,2],[2,1,2,1]],[[1,2,1,0],[0,3,1,2],[2,4,1,2],[1,1,2,1]],[[1,2,1,0],[0,3,1,2],[3,3,1,2],[1,1,2,1]],[[1,2,1,0],[0,4,1,2],[2,3,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[1,2,2,3],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[1,2,2,2],[0,1,3,1]],[[1,1,1,1],[2,3,3,0],[1,2,2,2],[0,1,2,2]],[[1,1,1,1],[2,3,3,0],[1,2,2,3],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[1,2,2,2],[1,0,3,1]],[[1,1,1,1],[2,3,3,0],[1,2,2,2],[1,0,2,2]],[[1,3,1,0],[0,3,1,2],[2,3,1,2],[1,1,2,1]],[[2,2,1,0],[0,3,1,2],[2,3,1,2],[1,1,2,1]],[[1,2,1,0],[0,3,1,2],[2,3,1,2],[0,2,2,2]],[[1,2,1,0],[0,3,1,2],[2,3,1,2],[0,2,3,1]],[[1,2,1,0],[0,3,1,2],[2,3,1,2],[0,3,2,1]],[[2,1,1,1],[2,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,1,1,1],[3,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,1,1,1],[2,4,3,0],[1,2,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,4,0],[1,2,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[1,2,4,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,1],[0,1,3,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,1],[0,1,2,2]],[[2,1,1,1],[2,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,1,1,1],[3,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,1,1,1],[2,4,3,0],[1,2,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,4,0],[1,2,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[1,2,4,1],[0,2,1,1]],[[2,1,1,1],[2,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,1,1,1],[3,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,1,1,1],[2,4,3,0],[1,2,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,4,0],[1,2,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[1,2,4,1],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,1],[1,0,3,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,1],[1,0,2,2]],[[2,1,1,1],[2,3,3,0],[1,2,3,1],[1,1,1,1]],[[1,1,1,1],[3,3,3,0],[1,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,4,3,0],[1,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,4,0],[1,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[1,2,4,1],[1,1,1,1]],[[1,2,1,0],[0,3,1,2],[2,3,1,3],[0,2,2,1]],[[1,2,1,0],[0,3,1,2],[2,4,1,2],[0,2,2,1]],[[1,2,1,0],[0,3,1,2],[3,3,1,2],[0,2,2,1]],[[1,2,1,0],[0,3,1,3],[2,3,1,2],[0,2,2,1]],[[1,2,1,0],[0,4,1,2],[2,3,1,2],[0,2,2,1]],[[1,3,1,0],[0,3,1,2],[2,3,1,2],[0,2,2,1]],[[2,2,1,0],[0,3,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,1,0],[0,3,1,2],[2,3,1,1],[1,3,2,1]],[[1,2,1,0],[0,3,1,2],[2,3,1,1],[2,2,2,1]],[[2,1,1,1],[2,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,1,1,1],[3,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,1,1,1],[2,4,3,0],[1,2,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,4,0],[1,2,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,0],[1,2,4,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,3],[0,0,2,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,2],[0,0,2,2]],[[2,1,1,1],[2,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,1,1,1],[3,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,1,1,1],[2,4,3,0],[1,2,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,0],[1,2,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[1,2,4,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,3],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,2],[0,1,1,2]],[[2,1,1,1],[2,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,1,1,1],[3,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,1,1,1],[2,4,3,0],[1,2,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,0],[1,2,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[1,2,4,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[1,2,3,3],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[1,2,3,2],[0,1,3,0]],[[2,1,1,1],[2,3,3,0],[1,2,3,2],[0,2,0,1]],[[1,1,1,1],[3,3,3,0],[1,2,3,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,0],[1,2,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,0],[1,2,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[1,2,4,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,3],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,2],[0,2,0,2]],[[2,1,1,1],[2,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,1,1,1],[3,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,0],[1,2,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,0],[1,2,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,0],[1,2,4,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,0],[1,2,3,3],[0,2,1,0]],[[1,2,1,0],[0,3,1,2],[3,3,1,1],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[2,3,0,2],[1,3,2,1]],[[1,2,1,0],[0,3,1,2],[2,3,0,2],[2,2,2,1]],[[1,2,1,0],[0,3,1,2],[3,3,0,2],[1,2,2,1]],[[2,1,1,1],[2,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,1,1,1],[3,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,4,3,0],[1,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,0],[1,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,0],[1,2,4,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,3],[1,0,1,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,2],[1,0,1,2]],[[2,1,1,1],[2,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,1,1,1],[3,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,4,3,0],[1,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,0],[1,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,0],[1,2,4,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,0],[1,2,3,3],[1,0,2,0]],[[1,1,1,1],[2,3,3,0],[1,2,3,2],[1,0,3,0]],[[2,1,1,1],[2,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,1,1,1],[3,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,0],[1,2,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,4,0],[1,2,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[1,2,4,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,3],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[1,2,3,2],[1,1,0,2]],[[2,1,1,1],[2,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,1,1,1],[3,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,0],[1,2,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,4,0],[1,2,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,0],[1,2,4,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,0],[1,2,3,3],[1,1,1,0]],[[1,2,1,0],[0,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[0,3,1,2],[2,2,3,2],[2,2,1,0]],[[1,2,1,0],[0,3,1,2],[3,2,3,2],[1,2,1,0]],[[1,2,1,0],[0,3,1,2],[2,2,3,2],[1,3,0,1]],[[1,2,1,0],[0,3,1,2],[2,2,3,2],[2,2,0,1]],[[1,2,1,0],[0,3,1,2],[3,2,3,2],[1,2,0,1]],[[1,2,1,0],[0,3,1,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,0],[0,3,1,2],[2,2,3,2],[0,3,2,0]],[[1,2,1,0],[0,3,1,2],[2,2,3,3],[0,2,2,0]],[[1,2,1,0],[0,3,1,2],[2,2,4,2],[0,2,2,0]],[[1,2,1,0],[0,3,1,3],[2,2,3,2],[0,2,2,0]],[[1,2,1,0],[0,3,1,2],[2,2,3,2],[0,2,1,2]],[[1,2,1,0],[0,3,1,2],[2,2,3,3],[0,2,1,1]],[[1,2,1,0],[0,3,1,2],[2,2,4,2],[0,2,1,1]],[[1,2,1,0],[0,3,1,3],[2,2,3,2],[0,2,1,1]],[[2,1,1,1],[2,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[3,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,4,3,0],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,4,0],[1,3,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,4,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,3,0,3],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,3,0,2],[0,3,2,1]],[[1,1,1,1],[2,3,3,0],[1,3,0,2],[0,2,3,1]],[[1,1,1,1],[2,3,3,0],[1,3,0,2],[0,2,2,2]],[[2,1,1,1],[2,3,3,0],[1,3,0,2],[1,1,2,1]],[[1,1,1,1],[3,3,3,0],[1,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,4,3,0],[1,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,4,0],[1,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[1,4,0,2],[1,1,2,1]],[[2,1,1,1],[2,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,1,1,1],[3,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,1,1,1],[2,4,3,0],[1,3,1,1],[0,2,2,1]],[[1,1,1,1],[2,3,4,0],[1,3,1,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,4,1,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[1,3,1,1],[0,3,2,1]],[[1,1,1,1],[2,3,3,0],[1,3,1,1],[0,2,3,1]],[[1,1,1,1],[2,3,3,0],[1,3,1,1],[0,2,2,2]],[[2,1,1,1],[2,3,3,0],[1,3,1,1],[1,1,2,1]],[[1,1,1,1],[3,3,3,0],[1,3,1,1],[1,1,2,1]],[[1,1,1,1],[2,4,3,0],[1,3,1,1],[1,1,2,1]],[[1,1,1,1],[2,3,4,0],[1,3,1,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[1,4,1,1],[1,1,2,1]],[[2,1,1,1],[2,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,1,1,1],[3,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,1,1,1],[2,4,3,0],[1,3,1,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,0],[1,3,1,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,0],[1,4,1,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,0],[1,3,1,2],[0,3,2,0]],[[1,1,1,1],[2,3,3,0],[1,3,1,2],[0,2,3,0]],[[2,1,1,1],[2,3,3,0],[1,3,1,2],[1,1,2,0]],[[1,1,1,1],[3,3,3,0],[1,3,1,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,0],[1,3,1,2],[1,1,2,0]],[[1,1,1,1],[2,3,4,0],[1,3,1,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[1,4,1,2],[1,1,2,0]],[[1,2,1,0],[0,3,1,2],[2,2,3,1],[1,3,1,1]],[[1,2,1,0],[0,3,1,2],[2,2,3,1],[2,2,1,1]],[[1,2,1,0],[0,3,1,2],[3,2,3,1],[1,2,1,1]],[[1,2,1,0],[0,3,1,2],[2,2,3,1],[0,2,2,2]],[[1,2,1,0],[0,3,1,2],[2,2,3,1],[0,2,3,1]],[[1,2,1,0],[0,3,1,2],[2,2,3,1],[0,3,2,1]],[[1,2,1,0],[0,3,1,2],[2,2,4,1],[0,2,2,1]],[[2,1,1,1],[2,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,1,1,1],[3,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,1,1,1],[2,4,3,0],[1,3,2,1],[0,1,2,1]],[[1,1,1,1],[2,3,4,0],[1,3,2,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[1,4,2,1],[0,1,2,1]],[[2,1,1,1],[2,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,1,1,1],[3,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,1,1,1],[2,4,3,0],[1,3,2,1],[0,2,1,1]],[[1,1,1,1],[2,3,4,0],[1,3,2,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[1,4,2,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[1,3,2,1],[0,3,1,1]],[[2,1,1,1],[2,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,1,1,1],[3,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,1,1,1],[2,4,3,0],[1,3,2,1],[1,0,2,1]],[[1,1,1,1],[2,3,4,0],[1,3,2,1],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[1,4,2,1],[1,0,2,1]],[[2,1,1,1],[2,3,3,0],[1,3,2,1],[1,1,1,1]],[[1,1,1,1],[3,3,3,0],[1,3,2,1],[1,1,1,1]],[[1,1,1,1],[2,4,3,0],[1,3,2,1],[1,1,1,1]],[[1,1,1,1],[2,3,4,0],[1,3,2,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[1,4,2,1],[1,1,1,1]],[[2,1,1,1],[2,3,3,0],[1,3,2,1],[1,2,0,1]],[[1,1,1,1],[3,3,3,0],[1,3,2,1],[1,2,0,1]],[[1,1,1,1],[2,4,3,0],[1,3,2,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[1,4,2,1],[1,2,0,1]],[[1,2,1,0],[0,3,1,2],[2,2,2,2],[1,2,3,0]],[[1,2,1,0],[0,3,1,2],[2,2,2,2],[1,3,2,0]],[[1,2,1,0],[0,3,1,2],[2,2,2,2],[2,2,2,0]],[[2,1,1,1],[2,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,1,1,1],[3,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,1,1,1],[2,4,3,0],[1,3,2,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,0],[1,3,2,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[1,4,2,2],[0,1,1,1]],[[2,1,1,1],[2,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,1,1,1],[3,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,1,1,1],[2,4,3,0],[1,3,2,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,0],[1,3,2,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[1,4,2,2],[0,1,2,0]],[[2,1,1,1],[2,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,1,1,1],[3,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,0],[1,3,2,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,0],[1,3,2,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[1,4,2,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[1,3,2,2],[0,3,0,1]],[[2,1,1,1],[2,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,1,1,1],[3,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,0],[1,3,2,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,0],[1,3,2,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,0],[1,4,2,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,0],[1,3,2,2],[0,3,1,0]],[[1,2,1,0],[0,3,1,2],[3,2,2,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,2],[2,2,2,2],[0,2,2,2]],[[1,2,1,0],[0,3,1,2],[2,2,2,2],[0,2,3,1]],[[1,2,1,0],[0,3,1,2],[2,2,2,2],[0,3,2,1]],[[1,2,1,0],[0,3,1,2],[2,2,2,3],[0,2,2,1]],[[1,2,1,0],[0,3,1,3],[2,2,2,2],[0,2,2,1]],[[1,2,1,0],[0,3,1,2],[2,2,2,1],[1,2,2,2]],[[1,2,1,0],[0,3,1,2],[2,2,2,1],[1,2,3,1]],[[1,2,1,0],[0,3,1,2],[2,2,2,1],[1,3,2,1]],[[2,1,1,1],[2,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,1,1,1],[3,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,1,1,1],[2,4,3,0],[1,3,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,0],[1,3,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,0],[1,4,2,2],[1,0,1,1]],[[2,1,1,1],[2,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,1,1,1],[3,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,1,1,1],[2,4,3,0],[1,3,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,0],[1,3,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,0],[1,4,2,2],[1,0,2,0]],[[2,1,1,1],[2,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,1,1,1],[3,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,0],[1,3,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,4,0],[1,3,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[1,4,2,2],[1,1,0,1]],[[2,1,1,1],[2,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,1,1,1],[3,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,0],[1,3,2,2],[1,1,1,0]],[[1,1,1,1],[2,3,4,0],[1,3,2,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,0],[1,4,2,2],[1,1,1,0]],[[1,2,1,0],[0,3,1,2],[2,2,2,1],[2,2,2,1]],[[1,2,1,0],[0,3,1,2],[3,2,2,1],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[2,2,1,2],[1,2,2,2]],[[1,2,1,0],[0,3,1,2],[2,2,1,2],[1,2,3,1]],[[1,2,1,0],[0,3,1,2],[2,2,1,2],[1,3,2,1]],[[1,2,1,0],[0,3,1,2],[2,2,1,2],[2,2,2,1]],[[1,2,1,0],[0,3,1,2],[2,2,1,3],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[3,2,1,2],[1,2,2,1]],[[2,1,1,1],[2,3,3,0],[1,3,2,2],[1,2,0,0]],[[1,1,1,1],[3,3,3,0],[1,3,2,2],[1,2,0,0]],[[1,1,1,1],[2,4,3,0],[1,3,2,2],[1,2,0,0]],[[1,1,1,1],[2,3,4,0],[1,3,2,2],[1,2,0,0]],[[1,1,1,1],[2,3,3,0],[1,4,2,2],[1,2,0,0]],[[1,2,1,0],[0,3,1,3],[2,2,1,2],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[2,1,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,1,2],[2,1,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,1,2],[2,1,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,1,2],[2,1,3,3],[1,2,2,0]],[[1,2,1,0],[0,3,1,2],[2,1,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,2],[3,1,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,3],[2,1,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,2],[2,1,3,2],[1,2,1,2]],[[1,2,1,0],[0,3,1,2],[2,1,3,3],[1,2,1,1]],[[1,2,1,0],[0,3,1,2],[2,1,4,2],[1,2,1,1]],[[1,2,1,0],[0,3,1,3],[2,1,3,2],[1,2,1,1]],[[1,2,1,0],[0,3,1,2],[2,1,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,1,2],[2,1,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,1,2],[2,1,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,1,2],[2,1,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,1,2],[2,1,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[3,1,3,1],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[2,1,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,1,2],[2,1,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,1,2],[2,1,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,1,2],[2,1,2,2],[2,2,2,1]],[[1,2,1,0],[0,3,1,2],[2,1,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[3,1,2,2],[1,2,2,1]],[[2,1,1,1],[2,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,1,1,1],[3,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,1,1,1],[2,4,3,0],[1,3,3,1],[0,0,2,1]],[[1,1,1,1],[2,3,4,0],[1,3,3,1],[0,0,2,1]],[[1,1,1,1],[2,3,3,0],[1,3,4,1],[0,0,2,1]],[[1,2,1,0],[0,3,1,3],[2,1,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[0,3,1,2],[1,3,3,2],[2,2,1,0]],[[1,2,1,0],[0,3,1,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,0],[0,3,1,2],[1,3,4,2],[1,2,1,0]],[[1,2,1,0],[0,3,1,2],[1,4,3,2],[1,2,1,0]],[[1,2,1,0],[0,3,1,3],[1,3,3,2],[1,2,1,0]],[[1,2,1,0],[0,4,1,2],[1,3,3,2],[1,2,1,0]],[[1,3,1,0],[0,3,1,2],[1,3,3,2],[1,2,1,0]],[[2,2,1,0],[0,3,1,2],[1,3,3,2],[1,2,1,0]],[[1,2,1,0],[0,3,1,2],[1,3,3,2],[1,2,0,2]],[[1,2,1,0],[0,3,1,2],[1,3,3,2],[1,3,0,1]],[[1,2,1,0],[0,3,1,2],[1,3,3,2],[2,2,0,1]],[[1,2,1,0],[0,3,1,2],[1,3,3,3],[1,2,0,1]],[[1,2,1,0],[0,3,1,2],[1,3,4,2],[1,2,0,1]],[[2,1,1,1],[2,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,1,1,1],[3,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,1,1,1],[2,4,3,0],[1,3,3,2],[0,0,1,1]],[[1,1,1,1],[2,3,4,0],[1,3,3,2],[0,0,1,1]],[[1,1,1,1],[2,3,3,0],[1,3,4,2],[0,0,1,1]],[[1,1,1,1],[2,3,3,0],[1,3,3,3],[0,0,1,1]],[[1,1,1,1],[2,3,3,0],[1,3,3,2],[0,0,1,2]],[[2,1,1,1],[2,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,1,1,1],[3,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,1,1,1],[2,4,3,0],[1,3,3,2],[0,0,2,0]],[[1,1,1,1],[2,3,4,0],[1,3,3,2],[0,0,2,0]],[[1,1,1,1],[2,3,3,0],[1,3,4,2],[0,0,2,0]],[[1,1,1,1],[2,3,3,0],[1,3,3,3],[0,0,2,0]],[[1,2,1,0],[0,3,1,2],[1,4,3,2],[1,2,0,1]],[[1,2,1,0],[0,3,1,3],[1,3,3,2],[1,2,0,1]],[[1,2,1,0],[0,4,1,2],[1,3,3,2],[1,2,0,1]],[[1,3,1,0],[0,3,1,2],[1,3,3,2],[1,2,0,1]],[[2,2,1,0],[0,3,1,2],[1,3,3,2],[1,2,0,1]],[[2,1,1,1],[2,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,1,1,1],[3,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,1,1,1],[2,4,3,0],[1,3,3,2],[0,2,0,0]],[[1,1,1,1],[2,3,4,0],[1,3,3,2],[0,2,0,0]],[[1,1,1,1],[2,3,3,0],[1,4,3,2],[0,2,0,0]],[[1,2,1,0],[0,3,1,2],[1,3,3,2],[1,1,3,0]],[[1,2,1,0],[0,3,1,2],[1,3,3,3],[1,1,2,0]],[[1,2,1,0],[0,3,1,2],[1,3,4,2],[1,1,2,0]],[[1,2,1,0],[0,3,1,2],[1,4,3,2],[1,1,2,0]],[[1,2,1,0],[0,3,1,3],[1,3,3,2],[1,1,2,0]],[[1,2,1,0],[0,4,1,2],[1,3,3,2],[1,1,2,0]],[[1,3,1,0],[0,3,1,2],[1,3,3,2],[1,1,2,0]],[[2,2,1,0],[0,3,1,2],[1,3,3,2],[1,1,2,0]],[[1,2,1,0],[0,3,1,2],[1,3,3,2],[1,1,1,2]],[[1,2,1,0],[0,3,1,2],[1,3,3,3],[1,1,1,1]],[[1,2,1,0],[0,3,1,2],[1,3,4,2],[1,1,1,1]],[[1,2,1,0],[0,3,1,2],[1,4,3,2],[1,1,1,1]],[[1,2,1,0],[0,3,1,3],[1,3,3,2],[1,1,1,1]],[[1,2,1,0],[0,4,1,2],[1,3,3,2],[1,1,1,1]],[[1,3,1,0],[0,3,1,2],[1,3,3,2],[1,1,1,1]],[[2,2,1,0],[0,3,1,2],[1,3,3,2],[1,1,1,1]],[[1,2,1,0],[0,3,1,2],[1,3,3,2],[1,0,2,2]],[[1,2,1,0],[0,3,1,2],[1,3,3,3],[1,0,2,1]],[[1,2,1,0],[0,3,1,2],[1,3,4,2],[1,0,2,1]],[[1,2,1,0],[0,3,1,3],[1,3,3,2],[1,0,2,1]],[[1,2,1,0],[0,3,1,2],[1,3,3,1],[1,3,1,1]],[[1,2,1,0],[0,3,1,2],[1,3,3,1],[2,2,1,1]],[[1,2,1,0],[0,3,1,2],[1,3,4,1],[1,2,1,1]],[[2,1,1,1],[2,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,1,1,1],[3,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,1,1,1],[2,4,3,0],[1,3,3,2],[1,1,0,0]],[[1,1,1,1],[2,3,4,0],[1,3,3,2],[1,1,0,0]],[[1,1,1,1],[2,3,3,0],[1,4,3,2],[1,1,0,0]],[[1,2,1,0],[0,3,1,2],[1,4,3,1],[1,2,1,1]],[[1,2,1,0],[0,4,1,2],[1,3,3,1],[1,2,1,1]],[[1,3,1,0],[0,3,1,2],[1,3,3,1],[1,2,1,1]],[[2,2,1,0],[0,3,1,2],[1,3,3,1],[1,2,1,1]],[[1,2,1,0],[0,3,1,2],[1,3,3,1],[1,1,2,2]],[[1,2,1,0],[0,3,1,2],[1,3,3,1],[1,1,3,1]],[[1,2,1,0],[0,3,1,2],[1,3,4,1],[1,1,2,1]],[[1,2,1,0],[0,3,1,2],[1,4,3,1],[1,1,2,1]],[[1,2,1,0],[0,4,1,2],[1,3,3,1],[1,1,2,1]],[[1,3,1,0],[0,3,1,2],[1,3,3,1],[1,1,2,1]],[[2,2,1,0],[0,3,1,2],[1,3,3,1],[1,1,2,1]],[[1,2,1,0],[0,3,1,2],[1,3,2,2],[1,2,3,0]],[[1,2,1,0],[0,3,1,2],[1,3,2,2],[1,3,2,0]],[[1,2,1,0],[0,3,1,2],[1,3,2,2],[2,2,2,0]],[[1,2,1,0],[0,3,1,2],[1,4,2,2],[1,2,2,0]],[[1,2,1,0],[0,4,1,2],[1,3,2,2],[1,2,2,0]],[[1,3,1,0],[0,3,1,2],[1,3,2,2],[1,2,2,0]],[[2,2,1,0],[0,3,1,2],[1,3,2,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,2],[1,3,2,2],[1,1,2,2]],[[1,2,1,0],[0,3,1,2],[1,3,2,2],[1,1,3,1]],[[1,2,1,0],[0,3,1,2],[1,3,2,3],[1,1,2,1]],[[1,2,1,0],[0,3,1,3],[1,3,2,2],[1,1,2,1]],[[1,2,1,0],[0,3,1,2],[1,3,2,1],[1,2,2,2]],[[1,2,1,0],[0,3,1,2],[1,3,2,1],[1,2,3,1]],[[1,2,1,0],[0,3,1,2],[1,3,2,1],[1,3,2,1]],[[1,2,1,0],[0,3,1,2],[1,3,2,1],[2,2,2,1]],[[1,2,1,0],[0,3,1,2],[1,4,2,1],[1,2,2,1]],[[1,2,1,0],[0,4,1,2],[1,3,2,1],[1,2,2,1]],[[1,3,1,0],[0,3,1,2],[1,3,2,1],[1,2,2,1]],[[2,2,1,0],[0,3,1,2],[1,3,2,1],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[1,3,1,2],[1,2,2,2]],[[1,2,1,0],[0,3,1,2],[1,3,1,2],[1,2,3,1]],[[1,2,1,0],[0,3,1,2],[1,3,1,2],[1,3,2,1]],[[1,2,1,0],[0,3,1,2],[1,3,1,2],[2,2,2,1]],[[1,2,1,0],[0,3,1,2],[1,3,1,3],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[1,4,1,2],[1,2,2,1]],[[1,2,1,0],[0,3,1,3],[1,3,1,2],[1,2,2,1]],[[1,2,1,0],[0,4,1,2],[1,3,1,2],[1,2,2,1]],[[1,3,1,0],[0,3,1,2],[1,3,1,2],[1,2,2,1]],[[2,2,1,0],[0,3,1,2],[1,3,1,2],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[1,2,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,1,2],[1,2,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,1,2],[1,2,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,1,2],[1,2,3,3],[1,2,2,0]],[[1,2,1,0],[0,3,1,2],[1,2,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,3],[1,2,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,2],[1,2,3,2],[1,2,1,2]],[[1,2,1,0],[0,3,1,2],[1,2,3,3],[1,2,1,1]],[[1,2,1,0],[0,3,1,2],[1,2,4,2],[1,2,1,1]],[[1,2,1,0],[0,3,1,3],[1,2,3,2],[1,2,1,1]],[[1,2,1,0],[0,3,1,2],[1,2,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,1,2],[1,2,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,1,2],[1,2,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,1,2],[1,2,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,1,2],[1,2,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[1,2,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,1,2],[1,2,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,1,2],[1,2,2,2],[1,3,2,1]],[[2,1,1,1],[2,3,3,0],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[3,3,3,0],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,4,3,0],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,4,0],[2,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[3,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,1,3],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,1,2],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,1,2],[1,3,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,1,2],[1,2,3,1]],[[1,1,1,1],[2,3,3,0],[2,0,1,2],[1,2,2,2]],[[2,1,1,1],[2,3,3,0],[2,0,2,1],[1,2,2,1]],[[1,1,1,1],[3,3,3,0],[2,0,2,1],[1,2,2,1]],[[1,1,1,1],[2,4,3,0],[2,0,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,4,0],[2,0,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[3,0,2,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,2,1],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,2,1],[1,3,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,2,1],[1,2,3,1]],[[1,1,1,1],[2,3,3,0],[2,0,2,1],[1,2,2,2]],[[1,1,1,1],[2,3,3,0],[2,0,2,3],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,2,2],[0,3,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,2,2],[0,2,3,1]],[[1,1,1,1],[2,3,3,0],[2,0,2,2],[0,2,2,2]],[[1,1,1,1],[2,3,3,0],[2,0,2,3],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,2,2],[1,1,3,1]],[[1,1,1,1],[2,3,3,0],[2,0,2,2],[1,1,2,2]],[[2,1,1,1],[2,3,3,0],[2,0,2,2],[1,2,2,0]],[[1,1,1,1],[3,3,3,0],[2,0,2,2],[1,2,2,0]],[[1,1,1,1],[2,4,3,0],[2,0,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,4,0],[2,0,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[3,0,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[2,0,2,2],[2,2,2,0]],[[1,1,1,1],[2,3,3,0],[2,0,2,2],[1,3,2,0]],[[1,1,1,1],[2,3,3,0],[2,0,2,2],[1,2,3,0]],[[2,1,1,1],[2,3,3,0],[2,0,3,1],[0,2,2,1]],[[1,1,1,1],[3,3,3,0],[2,0,3,1],[0,2,2,1]],[[1,1,1,1],[2,4,3,0],[2,0,3,1],[0,2,2,1]],[[1,1,1,1],[2,3,4,0],[2,0,3,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[3,0,3,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,4,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,1],[0,3,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,1],[0,2,3,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,1],[0,2,2,2]],[[2,1,1,1],[2,3,3,0],[2,0,3,1],[1,1,2,1]],[[1,1,1,1],[3,3,3,0],[2,0,3,1],[1,1,2,1]],[[1,1,1,1],[2,4,3,0],[2,0,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,4,0],[2,0,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[3,0,3,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,4,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,1],[2,1,2,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,1],[1,1,3,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,1],[1,1,2,2]],[[2,1,1,1],[2,3,3,0],[2,0,3,1],[1,2,1,1]],[[1,1,1,1],[3,3,3,0],[2,0,3,1],[1,2,1,1]],[[1,1,1,1],[2,4,3,0],[2,0,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,4,0],[2,0,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[3,0,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[2,0,4,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,1],[2,2,1,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,1],[1,3,1,1]],[[2,1,1,1],[2,3,3,0],[2,0,3,2],[0,2,1,1]],[[1,1,1,1],[3,3,3,0],[2,0,3,2],[0,2,1,1]],[[1,1,1,1],[2,4,3,0],[2,0,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,4,0],[2,0,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[3,0,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[2,0,4,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,3],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[0,2,1,2]],[[2,1,1,1],[2,3,3,0],[2,0,3,2],[0,2,2,0]],[[1,1,1,1],[3,3,3,0],[2,0,3,2],[0,2,2,0]],[[1,1,1,1],[2,4,3,0],[2,0,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,0],[2,0,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,0],[3,0,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,0],[2,0,4,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,0],[2,0,3,3],[0,2,2,0]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[0,3,2,0]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[0,2,3,0]],[[2,1,1,1],[2,3,3,0],[2,0,3,2],[1,1,1,1]],[[1,1,1,1],[3,3,3,0],[2,0,3,2],[1,1,1,1]],[[1,1,1,1],[2,4,3,0],[2,0,3,2],[1,1,1,1]],[[1,1,1,1],[2,3,4,0],[2,0,3,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[3,0,3,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[2,0,4,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,3],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[2,1,1,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[1,1,1,2]],[[2,1,1,1],[2,3,3,0],[2,0,3,2],[1,1,2,0]],[[1,1,1,1],[3,3,3,0],[2,0,3,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,0],[2,0,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,4,0],[2,0,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[3,0,3,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[2,0,4,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[2,0,3,3],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[2,1,2,0]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[1,1,3,0]],[[2,1,1,1],[2,3,3,0],[2,0,3,2],[1,2,0,1]],[[1,1,1,1],[3,3,3,0],[2,0,3,2],[1,2,0,1]],[[1,1,1,1],[2,4,3,0],[2,0,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,4,0],[2,0,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[3,0,3,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[2,0,4,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,3],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[2,2,0,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[1,3,0,1]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[1,2,0,2]],[[2,1,1,1],[2,3,3,0],[2,0,3,2],[1,2,1,0]],[[1,1,1,1],[3,3,3,0],[2,0,3,2],[1,2,1,0]],[[1,1,1,1],[2,4,3,0],[2,0,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,4,0],[2,0,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[3,0,3,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[2,0,4,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[2,0,3,3],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[2,2,1,0]],[[1,1,1,1],[2,3,3,0],[2,0,3,2],[1,3,1,0]],[[1,2,1,0],[0,3,1,2],[1,2,2,2],[2,2,2,1]],[[1,2,1,0],[0,3,1,2],[1,2,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,1,3],[1,2,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[0,3,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,1,2],[0,3,3,2],[1,3,2,0]],[[2,1,1,1],[2,3,3,0],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[3,3,3,0],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,4,3,0],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,4,0],[2,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[3,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,0,3],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,0,2],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,0,2],[1,3,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,0,2],[1,2,3,1]],[[1,1,1,1],[2,3,3,0],[2,1,0,2],[1,2,2,2]],[[2,1,1,1],[2,3,3,0],[2,1,1,1],[1,2,2,1]],[[1,1,1,1],[3,3,3,0],[2,1,1,1],[1,2,2,1]],[[1,1,1,1],[2,4,3,0],[2,1,1,1],[1,2,2,1]],[[1,1,1,1],[2,3,4,0],[2,1,1,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[3,1,1,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,1,1],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,1,1],[1,3,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,1,1],[1,2,3,1]],[[1,1,1,1],[2,3,3,0],[2,1,1,1],[1,2,2,2]],[[2,1,1,1],[2,3,3,0],[2,1,1,2],[1,2,2,0]],[[1,1,1,1],[3,3,3,0],[2,1,1,2],[1,2,2,0]],[[1,1,1,1],[2,4,3,0],[2,1,1,2],[1,2,2,0]],[[1,1,1,1],[2,3,4,0],[2,1,1,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[3,1,1,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[2,1,1,2],[2,2,2,0]],[[1,1,1,1],[2,3,3,0],[2,1,1,2],[1,3,2,0]],[[1,1,1,1],[2,3,3,0],[2,1,1,2],[1,2,3,0]],[[2,1,1,1],[2,3,3,0],[2,1,2,1],[1,2,1,1]],[[1,1,1,1],[3,3,3,0],[2,1,2,1],[1,2,1,1]],[[1,1,1,1],[2,4,3,0],[2,1,2,1],[1,2,1,1]],[[1,1,1,1],[2,3,4,0],[2,1,2,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[3,1,2,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,2,1],[2,2,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,2,1],[1,3,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,2,3],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,2,2],[0,1,3,1]],[[1,1,1,1],[2,3,3,0],[2,1,2,2],[0,1,2,2]],[[1,1,1,1],[2,3,3,0],[2,1,2,3],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,2,2],[1,0,3,1]],[[1,1,1,1],[2,3,3,0],[2,1,2,2],[1,0,2,2]],[[2,1,1,1],[2,3,3,0],[2,1,2,2],[1,2,0,1]],[[1,1,1,1],[3,3,3,0],[2,1,2,2],[1,2,0,1]],[[1,1,1,1],[2,4,3,0],[2,1,2,2],[1,2,0,1]],[[1,1,1,1],[2,3,4,0],[2,1,2,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[3,1,2,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[2,1,2,2],[2,2,0,1]],[[1,1,1,1],[2,3,3,0],[2,1,2,2],[1,3,0,1]],[[2,1,1,1],[2,3,3,0],[2,1,2,2],[1,2,1,0]],[[1,1,1,1],[3,3,3,0],[2,1,2,2],[1,2,1,0]],[[1,1,1,1],[2,4,3,0],[2,1,2,2],[1,2,1,0]],[[1,1,1,1],[2,3,4,0],[2,1,2,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[3,1,2,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[2,1,2,2],[2,2,1,0]],[[1,1,1,1],[2,3,3,0],[2,1,2,2],[1,3,1,0]],[[1,2,1,0],[0,3,1,2],[0,3,3,3],[1,2,2,0]],[[1,2,1,0],[0,3,1,2],[0,3,4,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,3],[0,3,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,2],[0,3,3,2],[1,2,1,2]],[[1,2,1,0],[0,3,1,2],[0,3,3,3],[1,2,1,1]],[[1,2,1,0],[0,3,1,2],[0,3,4,2],[1,2,1,1]],[[1,2,1,0],[0,3,1,3],[0,3,3,2],[1,2,1,1]],[[1,2,1,0],[0,3,1,2],[0,3,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,1,2],[0,3,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,1,2],[0,3,3,1],[1,3,2,1]],[[2,1,1,1],[2,3,3,0],[2,1,3,1],[0,1,2,1]],[[1,1,1,1],[3,3,3,0],[2,1,3,1],[0,1,2,1]],[[1,1,1,1],[2,4,3,0],[2,1,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,4,0],[2,1,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[3,1,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,4,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,1],[0,1,3,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,1],[0,1,2,2]],[[2,1,1,1],[2,3,3,0],[2,1,3,1],[0,2,1,1]],[[1,1,1,1],[3,3,3,0],[2,1,3,1],[0,2,1,1]],[[1,1,1,1],[2,4,3,0],[2,1,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,4,0],[2,1,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[3,1,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,4,1],[0,2,1,1]],[[2,1,1,1],[2,3,3,0],[2,1,3,1],[1,0,2,1]],[[1,1,1,1],[3,3,3,0],[2,1,3,1],[1,0,2,1]],[[1,1,1,1],[2,4,3,0],[2,1,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,4,0],[2,1,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[3,1,3,1],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,4,1],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,1],[2,0,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,1],[1,0,3,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,1],[1,0,2,2]],[[2,1,1,1],[2,3,3,0],[2,1,3,1],[1,1,1,1]],[[1,1,1,1],[3,3,3,0],[2,1,3,1],[1,1,1,1]],[[1,1,1,1],[2,4,3,0],[2,1,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,4,0],[2,1,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[3,1,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,4,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,1],[2,1,1,1]],[[1,2,1,0],[0,3,1,2],[0,3,4,1],[1,2,2,1]],[[1,2,1,0],[0,3,1,2],[0,3,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,1,2],[0,3,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,1,2],[0,3,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,1,2],[0,3,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,1,3],[0,3,2,2],[1,2,2,1]],[[2,1,1,1],[2,3,3,0],[2,1,3,2],[0,0,2,1]],[[1,1,1,1],[3,3,3,0],[2,1,3,2],[0,0,2,1]],[[1,1,1,1],[2,4,3,0],[2,1,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,4,0],[2,1,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,4,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,3],[0,0,2,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,2],[0,0,2,2]],[[2,1,1,1],[2,3,3,0],[2,1,3,2],[0,1,1,1]],[[1,1,1,1],[3,3,3,0],[2,1,3,2],[0,1,1,1]],[[1,1,1,1],[2,4,3,0],[2,1,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,0],[2,1,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[3,1,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,4,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,3],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,2],[0,1,1,2]],[[2,1,1,1],[2,3,3,0],[2,1,3,2],[0,1,2,0]],[[1,1,1,1],[3,3,3,0],[2,1,3,2],[0,1,2,0]],[[1,1,1,1],[2,4,3,0],[2,1,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,0],[2,1,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[3,1,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[2,1,4,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[2,1,3,3],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[2,1,3,2],[0,1,3,0]],[[2,1,1,1],[2,3,3,0],[2,1,3,2],[0,2,0,1]],[[1,1,1,1],[3,3,3,0],[2,1,3,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,0],[2,1,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,0],[2,1,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[3,1,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[2,1,4,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,3],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,2],[0,2,0,2]],[[2,1,1,1],[2,3,3,0],[2,1,3,2],[0,2,1,0]],[[1,1,1,1],[3,3,3,0],[2,1,3,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,0],[2,1,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,0],[2,1,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,0],[3,1,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,0],[2,1,4,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,0],[2,1,3,3],[0,2,1,0]],[[1,2,1,0],[0,3,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,1,0],[0,3,1,1],[2,4,3,2],[1,1,2,0]],[[1,2,1,0],[0,3,1,1],[3,3,3,2],[1,1,2,0]],[[2,1,1,1],[2,3,3,0],[2,1,3,2],[1,0,1,1]],[[1,1,1,1],[3,3,3,0],[2,1,3,2],[1,0,1,1]],[[1,1,1,1],[2,4,3,0],[2,1,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,0],[2,1,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,0],[3,1,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,4,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,3],[1,0,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,2],[2,0,1,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,2],[1,0,1,2]],[[2,1,1,1],[2,3,3,0],[2,1,3,2],[1,0,2,0]],[[1,1,1,1],[3,3,3,0],[2,1,3,2],[1,0,2,0]],[[1,1,1,1],[2,4,3,0],[2,1,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,0],[2,1,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,0],[3,1,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,0],[2,1,4,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,0],[2,1,3,3],[1,0,2,0]],[[1,1,1,1],[2,3,3,0],[2,1,3,2],[2,0,2,0]],[[1,1,1,1],[2,3,3,0],[2,1,3,2],[1,0,3,0]],[[2,1,1,1],[2,3,3,0],[2,1,3,2],[1,1,0,1]],[[1,1,1,1],[3,3,3,0],[2,1,3,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,0],[2,1,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,4,0],[2,1,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[3,1,3,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[2,1,4,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,3],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,2],[2,1,0,1]],[[1,1,1,1],[2,3,3,0],[2,1,3,2],[1,1,0,2]],[[2,1,1,1],[2,3,3,0],[2,1,3,2],[1,1,1,0]],[[1,1,1,1],[3,3,3,0],[2,1,3,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,0],[2,1,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,4,0],[2,1,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,0],[3,1,3,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,0],[2,1,4,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,0],[2,1,3,3],[1,1,1,0]],[[1,1,1,1],[2,3,3,0],[2,1,3,2],[2,1,1,0]],[[1,2,1,0],[0,3,1,1],[2,3,3,2],[0,2,3,0]],[[1,2,1,0],[0,3,1,1],[2,3,3,2],[0,3,2,0]],[[1,2,1,0],[0,3,1,1],[2,4,3,2],[0,2,2,0]],[[1,2,1,0],[0,3,1,1],[3,3,3,2],[0,2,2,0]],[[1,2,1,0],[0,3,1,1],[2,3,3,1],[2,1,2,1]],[[1,2,1,0],[0,3,1,1],[2,4,3,1],[1,1,2,1]],[[1,2,1,0],[0,3,1,1],[3,3,3,1],[1,1,2,1]],[[1,2,1,0],[0,3,1,1],[2,3,3,1],[0,2,2,2]],[[1,2,1,0],[0,3,1,1],[2,3,3,1],[0,2,3,1]],[[1,2,1,0],[0,3,1,1],[2,3,3,1],[0,3,2,1]],[[1,2,1,0],[0,3,1,1],[2,4,3,1],[0,2,2,1]],[[1,2,1,0],[0,3,1,1],[3,3,3,1],[0,2,2,1]],[[1,2,1,0],[0,3,1,1],[2,2,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,1,1],[2,2,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,1,1],[2,2,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,1,1],[3,2,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,1],[2,2,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,1,1],[2,2,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,1,1],[2,2,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,1,1],[2,2,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,1,1],[3,2,3,1],[1,2,2,1]],[[1,2,1,0],[0,3,1,1],[1,3,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,1,1],[1,3,3,2],[1,3,2,0]],[[2,1,1,1],[2,3,3,0],[2,2,0,1],[1,2,2,1]],[[1,1,1,1],[3,3,3,0],[2,2,0,1],[1,2,2,1]],[[1,1,1,1],[2,4,3,0],[2,2,0,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[3,2,0,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,2,0,1],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,2,0,1],[1,3,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,0,2],[0,2,2,1]],[[1,1,1,1],[3,3,3,0],[2,2,0,2],[0,2,2,1]],[[1,1,1,1],[2,4,3,0],[2,2,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,4,0],[2,2,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[3,2,0,2],[0,2,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,0,2],[1,1,2,1]],[[1,1,1,1],[3,3,3,0],[2,2,0,2],[1,1,2,1]],[[1,1,1,1],[2,4,3,0],[2,2,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,4,0],[2,2,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[3,2,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[2,2,0,2],[2,1,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,0,2],[1,2,2,0]],[[1,1,1,1],[3,3,3,0],[2,2,0,2],[1,2,2,0]],[[1,1,1,1],[2,4,3,0],[2,2,0,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[3,2,0,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,0],[2,2,0,2],[2,2,2,0]],[[1,1,1,1],[2,3,3,0],[2,2,0,2],[1,3,2,0]],[[2,1,1,1],[2,3,3,0],[2,2,1,1],[0,2,2,1]],[[1,1,1,1],[3,3,3,0],[2,2,1,1],[0,2,2,1]],[[1,1,1,1],[2,4,3,0],[2,2,1,1],[0,2,2,1]],[[1,1,1,1],[2,3,4,0],[2,2,1,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[3,2,1,1],[0,2,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,1,1],[1,1,2,1]],[[1,1,1,1],[3,3,3,0],[2,2,1,1],[1,1,2,1]],[[1,1,1,1],[2,4,3,0],[2,2,1,1],[1,1,2,1]],[[1,1,1,1],[2,3,4,0],[2,2,1,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[3,2,1,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[2,2,1,1],[2,1,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,1,2],[0,2,2,0]],[[1,1,1,1],[3,3,3,0],[2,2,1,2],[0,2,2,0]],[[1,1,1,1],[2,4,3,0],[2,2,1,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,0],[2,2,1,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,0],[3,2,1,2],[0,2,2,0]],[[2,1,1,1],[2,3,3,0],[2,2,1,2],[1,1,2,0]],[[1,1,1,1],[3,3,3,0],[2,2,1,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,0],[2,2,1,2],[1,1,2,0]],[[1,1,1,1],[2,3,4,0],[2,2,1,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[3,2,1,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[2,2,1,2],[2,1,2,0]],[[1,2,1,0],[0,3,1,1],[1,3,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,1,1],[1,4,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,1,1],[1,3,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,1,1],[1,3,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,1,1],[1,3,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,1,1],[1,3,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,1,1],[1,4,3,1],[1,2,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,1],[0,1,2,1]],[[1,1,1,1],[3,3,3,0],[2,2,2,1],[0,1,2,1]],[[1,1,1,1],[2,4,3,0],[2,2,2,1],[0,1,2,1]],[[1,1,1,1],[2,3,4,0],[2,2,2,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,0],[3,2,2,1],[0,1,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,1],[0,2,1,1]],[[1,1,1,1],[3,3,3,0],[2,2,2,1],[0,2,1,1]],[[1,1,1,1],[2,4,3,0],[2,2,2,1],[0,2,1,1]],[[1,1,1,1],[2,3,4,0],[2,2,2,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[3,2,2,1],[0,2,1,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,1],[1,0,2,1]],[[1,1,1,1],[3,3,3,0],[2,2,2,1],[1,0,2,1]],[[1,1,1,1],[2,4,3,0],[2,2,2,1],[1,0,2,1]],[[1,1,1,1],[2,3,4,0],[2,2,2,1],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[3,2,2,1],[1,0,2,1]],[[1,1,1,1],[2,3,3,0],[2,2,2,1],[2,0,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,1],[1,1,1,1]],[[1,1,1,1],[3,3,3,0],[2,2,2,1],[1,1,1,1]],[[1,1,1,1],[2,4,3,0],[2,2,2,1],[1,1,1,1]],[[1,1,1,1],[2,3,4,0],[2,2,2,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[3,2,2,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[2,2,2,1],[2,1,1,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,1],[1,2,0,1]],[[1,1,1,1],[3,3,3,0],[2,2,2,1],[1,2,0,1]],[[1,1,1,1],[2,4,3,0],[2,2,2,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[3,2,2,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[2,2,2,1],[2,2,0,1]],[[1,2,1,0],[0,3,1,0],[2,3,3,2],[2,1,2,1]],[[1,2,1,0],[0,3,1,0],[2,4,3,2],[1,1,2,1]],[[1,2,1,0],[0,3,1,0],[3,3,3,2],[1,1,2,1]],[[1,2,1,0],[0,3,1,0],[2,3,3,2],[0,2,2,2]],[[1,2,1,0],[0,3,1,0],[2,3,3,2],[0,2,3,1]],[[1,2,1,0],[0,3,1,0],[2,3,3,2],[0,3,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,2],[0,1,1,1]],[[1,1,1,1],[3,3,3,0],[2,2,2,2],[0,1,1,1]],[[1,1,1,1],[2,4,3,0],[2,2,2,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,0],[2,2,2,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,0],[3,2,2,2],[0,1,1,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,2],[0,1,2,0]],[[1,1,1,1],[3,3,3,0],[2,2,2,2],[0,1,2,0]],[[1,1,1,1],[2,4,3,0],[2,2,2,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,0],[2,2,2,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,0],[3,2,2,2],[0,1,2,0]],[[2,1,1,1],[2,3,3,0],[2,2,2,2],[0,2,0,1]],[[1,1,1,1],[3,3,3,0],[2,2,2,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,0],[2,2,2,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,0],[2,2,2,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[3,2,2,2],[0,2,0,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,2],[0,2,1,0]],[[1,1,1,1],[3,3,3,0],[2,2,2,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,0],[2,2,2,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,0],[2,2,2,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,0],[3,2,2,2],[0,2,1,0]],[[1,2,1,0],[0,3,1,0],[2,4,3,2],[0,2,2,1]],[[1,2,1,0],[0,3,1,0],[3,3,3,2],[0,2,2,1]],[[1,2,1,0],[0,3,1,0],[2,2,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,1,0],[2,2,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,1,0],[2,2,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,1,0],[2,2,3,2],[2,2,2,1]],[[1,2,1,0],[0,3,1,0],[3,2,3,2],[1,2,2,1]],[[1,2,1,0],[0,3,1,0],[1,3,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,1,0],[1,3,3,2],[1,2,3,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,2],[1,0,1,1]],[[1,1,1,1],[3,3,3,0],[2,2,2,2],[1,0,1,1]],[[1,1,1,1],[2,4,3,0],[2,2,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,0],[2,2,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,0],[3,2,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,0],[2,2,2,2],[2,0,1,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,2],[1,0,2,0]],[[1,1,1,1],[3,3,3,0],[2,2,2,2],[1,0,2,0]],[[1,1,1,1],[2,4,3,0],[2,2,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,0],[2,2,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,0],[3,2,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,0],[2,2,2,2],[2,0,2,0]],[[2,1,1,1],[2,3,3,0],[2,2,2,2],[1,1,0,1]],[[1,1,1,1],[3,3,3,0],[2,2,2,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,0],[2,2,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,4,0],[2,2,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[3,2,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[2,2,2,2],[2,1,0,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,2],[1,1,1,0]],[[1,1,1,1],[3,3,3,0],[2,2,2,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,0],[2,2,2,2],[1,1,1,0]],[[1,1,1,1],[2,3,4,0],[2,2,2,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,0],[3,2,2,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,0],[2,2,2,2],[2,1,1,0]],[[1,2,1,0],[0,3,1,0],[1,3,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,1,0],[1,3,3,2],[2,2,2,1]],[[1,2,1,0],[0,3,1,0],[1,4,3,2],[1,2,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,2,2],[1,2,0,0]],[[1,1,1,1],[3,3,3,0],[2,2,2,2],[1,2,0,0]],[[1,1,1,1],[2,4,3,0],[2,2,2,2],[1,2,0,0]],[[1,1,1,1],[2,3,4,0],[2,2,2,2],[1,2,0,0]],[[1,1,1,1],[2,3,3,0],[3,2,2,2],[1,2,0,0]],[[1,1,1,1],[2,3,3,0],[2,2,2,2],[2,2,0,0]],[[1,2,1,0],[0,3,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,1,0],[0,3,0,2],[2,4,3,2],[1,1,2,0]],[[1,2,1,0],[0,3,0,2],[3,3,3,2],[1,1,2,0]],[[1,2,1,0],[0,3,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,1,0],[0,3,0,2],[2,3,3,2],[1,0,3,1]],[[1,2,1,0],[0,3,0,2],[2,3,3,3],[1,0,2,1]],[[1,2,1,0],[0,3,0,2],[2,3,3,2],[0,2,3,0]],[[1,2,1,0],[0,3,0,2],[2,3,3,2],[0,3,2,0]],[[1,2,1,0],[0,3,0,2],[2,4,3,2],[0,2,2,0]],[[1,2,1,0],[0,3,0,2],[3,3,3,2],[0,2,2,0]],[[1,2,1,0],[0,3,0,2],[2,3,3,2],[0,1,2,2]],[[1,2,1,0],[0,3,0,2],[2,3,3,2],[0,1,3,1]],[[1,2,1,0],[0,3,0,2],[2,3,3,3],[0,1,2,1]],[[1,2,1,0],[0,3,0,2],[2,3,3,1],[2,1,2,1]],[[1,2,1,0],[0,3,0,2],[2,4,3,1],[1,1,2,1]],[[1,2,1,0],[0,3,0,2],[3,3,3,1],[1,1,2,1]],[[1,2,1,0],[0,3,0,2],[2,3,3,1],[0,2,2,2]],[[1,2,1,0],[0,3,0,2],[2,3,3,1],[0,2,3,1]],[[1,2,1,0],[0,3,0,2],[2,3,3,1],[0,3,2,1]],[[1,2,1,0],[0,3,0,2],[2,4,3,1],[0,2,2,1]],[[1,2,1,0],[0,3,0,2],[3,3,3,1],[0,2,2,1]],[[1,2,1,0],[0,3,0,2],[2,3,2,2],[2,1,2,1]],[[1,2,1,0],[0,3,0,2],[2,4,2,2],[1,1,2,1]],[[1,2,1,0],[0,3,0,2],[3,3,2,2],[1,1,2,1]],[[1,2,1,0],[0,3,0,2],[2,3,2,2],[0,2,2,2]],[[1,2,1,0],[0,3,0,2],[2,3,2,2],[0,2,3,1]],[[1,2,1,0],[0,3,0,2],[2,3,2,2],[0,3,2,1]],[[1,2,1,0],[0,3,0,2],[2,3,2,3],[0,2,2,1]],[[1,2,1,0],[0,3,0,2],[2,4,2,2],[0,2,2,1]],[[1,2,1,0],[0,3,0,2],[3,3,2,2],[0,2,2,1]],[[1,2,1,0],[0,3,0,2],[2,2,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,0,2],[2,2,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,0,2],[2,2,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,0,2],[3,2,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,0,2],[2,2,3,2],[0,2,2,2]],[[1,2,1,0],[0,3,0,2],[2,2,3,2],[0,2,3,1]],[[1,2,1,0],[0,3,0,2],[2,2,3,2],[0,3,2,1]],[[1,2,1,0],[0,3,0,2],[2,2,3,3],[0,2,2,1]],[[1,2,1,0],[0,3,0,2],[2,2,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,0,2],[2,2,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,0,2],[2,2,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,0,2],[2,2,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,0,2],[3,2,3,1],[1,2,2,1]],[[1,2,1,0],[0,3,0,2],[2,2,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,0,2],[2,2,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,0,2],[2,2,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,0,2],[2,2,2,2],[2,2,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,3,2],[0,2,0,0]],[[1,1,1,1],[3,3,3,0],[2,2,3,2],[0,2,0,0]],[[1,1,1,1],[2,4,3,0],[2,2,3,2],[0,2,0,0]],[[1,1,1,1],[2,3,4,0],[2,2,3,2],[0,2,0,0]],[[1,1,1,1],[2,3,3,0],[3,2,3,2],[0,2,0,0]],[[1,2,1,0],[0,3,0,2],[2,2,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,0,2],[3,2,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,0,2],[2,1,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,0,2],[2,1,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,0,2],[2,1,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,0,2],[2,1,3,2],[2,2,2,1]],[[1,2,1,0],[0,3,0,2],[2,1,3,3],[1,2,2,1]],[[1,2,1,0],[0,3,0,2],[3,1,3,2],[1,2,2,1]],[[1,2,1,0],[0,3,0,2],[1,3,3,2],[1,2,3,0]],[[1,2,1,0],[0,3,0,2],[1,3,3,2],[1,3,2,0]],[[1,2,1,0],[0,3,0,2],[1,3,3,2],[2,2,2,0]],[[1,2,1,0],[0,3,0,2],[1,4,3,2],[1,2,2,0]],[[1,2,1,0],[0,3,0,2],[1,3,3,2],[1,1,2,2]],[[1,2,1,0],[0,3,0,2],[1,3,3,2],[1,1,3,1]],[[1,2,1,0],[0,3,0,2],[1,3,3,3],[1,1,2,1]],[[1,2,1,0],[0,3,0,2],[1,3,3,1],[1,2,2,2]],[[1,2,1,0],[0,3,0,2],[1,3,3,1],[1,2,3,1]],[[1,2,1,0],[0,3,0,2],[1,3,3,1],[1,3,2,1]],[[1,2,1,0],[0,3,0,2],[1,3,3,1],[2,2,2,1]],[[1,2,1,0],[0,3,0,2],[1,4,3,1],[1,2,2,1]],[[1,2,1,0],[0,3,0,2],[1,3,2,2],[1,2,2,2]],[[1,2,1,0],[0,3,0,2],[1,3,2,2],[1,2,3,1]],[[1,2,1,0],[0,3,0,2],[1,3,2,2],[1,3,2,1]],[[1,2,1,0],[0,3,0,2],[1,3,2,2],[2,2,2,1]],[[1,2,1,0],[0,3,0,2],[1,3,2,3],[1,2,2,1]],[[1,2,1,0],[0,3,0,2],[1,4,2,2],[1,2,2,1]],[[1,2,1,0],[0,3,0,2],[1,2,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,0,2],[1,2,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,0,2],[1,2,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,0,2],[1,2,3,2],[2,2,2,1]],[[1,2,1,0],[0,3,0,2],[1,2,3,3],[1,2,2,1]],[[2,1,1,1],[2,3,3,0],[2,2,3,2],[1,1,0,0]],[[1,1,1,1],[3,3,3,0],[2,2,3,2],[1,1,0,0]],[[1,1,1,1],[2,4,3,0],[2,2,3,2],[1,1,0,0]],[[1,1,1,1],[2,3,4,0],[2,2,3,2],[1,1,0,0]],[[1,1,1,1],[2,3,3,0],[3,2,3,2],[1,1,0,0]],[[1,1,1,1],[2,3,3,0],[2,2,3,2],[2,1,0,0]],[[1,2,1,0],[0,3,0,2],[0,3,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,0,2],[0,3,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,0,2],[0,3,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,0,2],[0,3,3,3],[1,2,2,1]],[[1,2,1,0],[0,3,0,1],[2,3,3,2],[2,1,2,1]],[[1,2,1,0],[0,3,0,1],[2,4,3,2],[1,1,2,1]],[[1,2,1,0],[0,3,0,1],[3,3,3,2],[1,1,2,1]],[[1,2,1,0],[0,3,0,1],[2,3,3,2],[0,2,2,2]],[[1,2,1,0],[0,3,0,1],[2,3,3,2],[0,2,3,1]],[[1,2,1,0],[0,3,0,1],[2,3,3,2],[0,3,2,1]],[[1,2,1,0],[0,3,0,1],[2,4,3,2],[0,2,2,1]],[[1,2,1,0],[0,3,0,1],[3,3,3,2],[0,2,2,1]],[[1,2,1,0],[0,3,0,1],[2,2,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,0,1],[2,2,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,0,1],[2,2,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,0,1],[2,2,3,2],[2,2,2,1]],[[1,2,1,0],[0,3,0,1],[3,2,3,2],[1,2,2,1]],[[1,2,1,0],[0,3,0,1],[1,3,3,2],[1,2,2,2]],[[1,2,1,0],[0,3,0,1],[1,3,3,2],[1,2,3,1]],[[1,2,1,0],[0,3,0,1],[1,3,3,2],[1,3,2,1]],[[1,2,1,0],[0,3,0,1],[1,3,3,2],[2,2,2,1]],[[1,2,1,0],[0,3,0,1],[1,4,3,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,1,0],[0,2,3,3],[2,3,3,2],[1,0,0,1]],[[1,2,1,0],[0,2,4,2],[2,3,3,2],[1,0,0,1]],[[2,1,1,1],[2,3,3,0],[2,3,0,0],[1,2,2,1]],[[1,1,1,1],[3,3,3,0],[2,3,0,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[3,3,0,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,3,0,0],[2,2,2,1]],[[1,1,1,1],[2,3,3,0],[2,3,0,0],[1,3,2,1]],[[2,1,1,1],[2,3,3,0],[2,3,0,1],[0,2,2,1]],[[1,1,1,1],[3,3,3,0],[2,3,0,1],[0,2,2,1]],[[1,1,1,1],[2,4,3,0],[2,3,0,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,0],[3,3,0,1],[0,2,2,1]],[[2,1,1,1],[2,3,3,0],[2,3,0,1],[1,1,2,1]],[[1,1,1,1],[3,3,3,0],[2,3,0,1],[1,1,2,1]],[[1,1,1,1],[2,4,3,0],[2,3,0,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[3,3,0,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,0],[2,3,0,1],[2,1,2,1]],[[2,1,1,1],[2,3,3,0],[2,3,0,1],[1,2,1,1]],[[1,1,1,1],[3,3,3,0],[2,3,0,1],[1,2,1,1]],[[1,1,1,1],[2,4,3,0],[2,3,0,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[3,3,0,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,0],[2,3,0,1],[2,2,1,1]],[[2,1,1,1],[2,3,3,0],[2,3,0,2],[0,2,2,0]],[[1,1,1,1],[3,3,3,0],[2,3,0,2],[0,2,2,0]],[[1,1,1,1],[2,4,3,0],[2,3,0,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,0],[3,3,0,2],[0,2,2,0]],[[2,1,1,1],[2,3,3,0],[2,3,0,2],[1,1,2,0]],[[1,1,1,1],[3,3,3,0],[2,3,0,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,0],[2,3,0,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[3,3,0,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,0],[2,3,0,2],[2,1,2,0]],[[2,1,1,1],[2,3,3,0],[2,3,0,2],[1,2,1,0]],[[1,1,1,1],[3,3,3,0],[2,3,0,2],[1,2,1,0]],[[1,1,1,1],[2,4,3,0],[2,3,0,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[3,3,0,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,0],[2,3,0,2],[2,2,1,0]],[[2,1,1,1],[2,3,3,0],[2,3,1,1],[0,2,1,1]],[[1,1,1,1],[3,3,3,0],[2,3,1,1],[0,2,1,1]],[[1,1,1,1],[2,4,3,0],[2,3,1,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,0],[3,3,1,1],[0,2,1,1]],[[2,1,1,1],[2,3,3,0],[2,3,1,1],[1,1,1,1]],[[1,1,1,1],[3,3,3,0],[2,3,1,1],[1,1,1,1]],[[1,1,1,1],[2,4,3,0],[2,3,1,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[3,3,1,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,0],[2,3,1,1],[2,1,1,1]],[[2,1,1,1],[2,3,3,0],[2,3,1,1],[1,2,0,1]],[[1,1,1,1],[3,3,3,0],[2,3,1,1],[1,2,0,1]],[[1,1,1,1],[2,4,3,0],[2,3,1,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[3,3,1,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,0],[2,3,1,1],[2,2,0,1]],[[1,2,1,0],[0,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,1,0],[0,2,3,3],[2,3,3,2],[0,1,0,1]],[[1,2,1,0],[0,2,4,2],[2,3,3,2],[0,1,0,1]],[[2,1,1,1],[2,3,3,0],[2,3,1,2],[0,2,0,1]],[[1,1,1,1],[3,3,3,0],[2,3,1,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,0],[2,3,1,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,0],[3,3,1,2],[0,2,0,1]],[[2,1,1,1],[2,3,3,0],[2,3,1,2],[0,2,1,0]],[[1,1,1,1],[3,3,3,0],[2,3,1,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,0],[2,3,1,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,0],[3,3,1,2],[0,2,1,0]],[[2,1,1,1],[2,3,3,0],[2,3,1,2],[1,1,0,1]],[[1,1,1,1],[3,3,3,0],[2,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,0],[2,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[3,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,0],[2,3,1,2],[2,1,0,1]],[[2,1,1,1],[2,3,3,0],[2,3,1,2],[1,1,1,0]],[[1,1,1,1],[3,3,3,0],[2,3,1,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,0],[2,3,1,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,0],[3,3,1,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,0],[2,3,1,2],[2,1,1,0]],[[2,1,1,1],[2,3,3,0],[2,3,1,2],[1,2,0,0]],[[1,1,1,1],[3,3,3,0],[2,3,1,2],[1,2,0,0]],[[1,1,1,1],[2,4,3,0],[2,3,1,2],[1,2,0,0]],[[1,1,1,1],[2,3,3,0],[3,3,1,2],[1,2,0,0]],[[1,1,1,1],[2,3,3,0],[2,3,1,2],[2,2,0,0]],[[1,2,1,0],[0,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,1,0],[0,2,3,2],[2,4,3,1],[1,2,0,0]],[[1,2,1,0],[0,2,3,2],[3,3,3,1],[1,2,0,0]],[[1,2,1,0],[0,2,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,1,0],[0,2,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,1,0],[0,2,3,2],[2,4,3,1],[1,1,1,0]],[[1,2,1,0],[0,2,3,2],[3,3,3,1],[1,1,1,0]],[[1,2,1,0],[0,2,3,3],[2,3,3,1],[1,1,1,0]],[[1,2,1,0],[0,2,4,2],[2,3,3,1],[1,1,1,0]],[[1,2,1,0],[0,2,3,2],[2,3,3,1],[2,1,0,1]],[[1,2,1,0],[0,2,3,2],[2,3,4,1],[1,1,0,1]],[[1,2,1,0],[0,2,3,2],[2,4,3,1],[1,1,0,1]],[[1,2,1,0],[0,2,3,2],[3,3,3,1],[1,1,0,1]],[[1,2,1,0],[0,2,3,3],[2,3,3,1],[1,1,0,1]],[[1,2,1,0],[0,2,4,2],[2,3,3,1],[1,1,0,1]],[[1,2,1,0],[0,2,3,2],[2,3,3,1],[1,0,3,0]],[[1,2,1,0],[0,2,3,2],[2,3,3,1],[2,0,2,0]],[[1,2,1,0],[0,2,3,2],[2,3,4,1],[1,0,2,0]],[[2,1,1,1],[2,3,3,0],[2,3,2,1],[1,0,1,1]],[[1,1,1,1],[3,3,3,0],[2,3,2,1],[1,0,1,1]],[[1,1,1,1],[2,4,3,0],[2,3,2,1],[1,0,1,1]],[[1,1,1,1],[2,3,3,0],[3,3,2,1],[1,0,1,1]],[[1,2,1,0],[0,2,3,2],[2,4,3,1],[1,0,2,0]],[[1,2,1,0],[0,2,3,2],[3,3,3,1],[1,0,2,0]],[[1,2,1,0],[0,2,3,3],[2,3,3,1],[1,0,2,0]],[[1,2,1,0],[0,2,4,2],[2,3,3,1],[1,0,2,0]],[[1,2,1,0],[0,2,3,2],[2,3,3,1],[2,0,1,1]],[[1,2,1,0],[0,2,3,2],[2,3,4,1],[1,0,1,1]],[[1,2,1,0],[0,2,3,2],[2,4,3,1],[1,0,1,1]],[[1,2,1,0],[0,2,3,2],[3,3,3,1],[1,0,1,1]],[[1,2,1,0],[0,2,3,3],[2,3,3,1],[1,0,1,1]],[[1,2,1,0],[0,2,4,2],[2,3,3,1],[1,0,1,1]],[[1,2,1,0],[0,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,1,0],[0,2,3,2],[2,3,4,1],[0,2,1,0]],[[1,2,1,0],[0,2,3,2],[2,4,3,1],[0,2,1,0]],[[1,2,1,0],[0,2,3,2],[3,3,3,1],[0,2,1,0]],[[1,2,1,0],[0,2,3,3],[2,3,3,1],[0,2,1,0]],[[1,2,1,0],[0,2,4,2],[2,3,3,1],[0,2,1,0]],[[1,2,1,0],[0,2,3,2],[2,3,3,1],[0,3,0,1]],[[1,2,1,0],[0,2,3,2],[2,3,4,1],[0,2,0,1]],[[1,2,1,0],[0,2,3,2],[2,4,3,1],[0,2,0,1]],[[1,2,1,0],[0,2,3,2],[3,3,3,1],[0,2,0,1]],[[1,2,1,0],[0,2,3,3],[2,3,3,1],[0,2,0,1]],[[1,2,1,0],[0,2,4,2],[2,3,3,1],[0,2,0,1]],[[1,2,1,0],[0,2,3,2],[2,3,3,1],[0,1,3,0]],[[1,2,1,0],[0,2,3,2],[2,3,4,1],[0,1,2,0]],[[1,2,1,0],[0,2,3,2],[2,4,3,1],[0,1,2,0]],[[1,2,1,0],[0,2,3,2],[3,3,3,1],[0,1,2,0]],[[1,2,1,0],[0,2,3,3],[2,3,3,1],[0,1,2,0]],[[1,2,1,0],[0,2,4,2],[2,3,3,1],[0,1,2,0]],[[1,2,1,0],[0,2,3,2],[2,3,4,1],[0,1,1,1]],[[1,2,1,0],[0,2,3,2],[2,4,3,1],[0,1,1,1]],[[1,2,1,0],[0,2,3,2],[3,3,3,1],[0,1,1,1]],[[1,2,1,0],[0,2,3,3],[2,3,3,1],[0,1,1,1]],[[1,2,1,0],[0,2,4,2],[2,3,3,1],[0,1,1,1]],[[1,2,1,0],[0,2,3,2],[2,3,4,1],[0,0,2,1]],[[1,2,1,0],[0,2,3,3],[2,3,3,1],[0,0,2,1]],[[1,2,1,0],[0,2,4,2],[2,3,3,1],[0,0,2,1]],[[2,1,1,1],[2,3,3,0],[2,3,2,2],[1,0,0,1]],[[1,1,1,1],[3,3,3,0],[2,3,2,2],[1,0,0,1]],[[1,1,1,1],[2,4,3,0],[2,3,2,2],[1,0,0,1]],[[1,1,1,1],[2,3,4,0],[2,3,2,2],[1,0,0,1]],[[1,1,1,1],[2,3,3,0],[3,3,2,2],[1,0,0,1]],[[2,1,1,1],[2,3,3,0],[2,3,2,2],[1,0,1,0]],[[1,1,1,1],[3,3,3,0],[2,3,2,2],[1,0,1,0]],[[1,1,1,1],[2,4,3,0],[2,3,2,2],[1,0,1,0]],[[1,1,1,1],[2,3,4,0],[2,3,2,2],[1,0,1,0]],[[1,1,1,1],[2,3,3,0],[3,3,2,2],[1,0,1,0]],[[1,2,1,0],[0,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,1,0],[0,2,3,2],[2,4,3,0],[1,2,0,1]],[[1,2,1,0],[0,2,3,2],[3,3,3,0],[1,2,0,1]],[[1,2,1,0],[0,2,3,2],[2,3,3,0],[2,1,1,1]],[[1,2,1,0],[0,2,3,2],[2,3,4,0],[1,1,1,1]],[[1,2,1,0],[0,2,3,2],[2,4,3,0],[1,1,1,1]],[[1,2,1,0],[0,2,3,2],[3,3,3,0],[1,1,1,1]],[[1,2,1,0],[0,2,3,3],[2,3,3,0],[1,1,1,1]],[[1,2,1,0],[0,2,4,2],[2,3,3,0],[1,1,1,1]],[[1,2,1,0],[0,2,3,2],[2,3,3,0],[1,0,2,2]],[[1,2,1,0],[0,2,3,2],[2,3,3,0],[1,0,3,1]],[[1,2,1,0],[0,2,3,2],[2,3,3,0],[2,0,2,1]],[[1,2,1,0],[0,2,3,2],[2,3,4,0],[1,0,2,1]],[[1,2,1,0],[0,2,3,2],[2,4,3,0],[1,0,2,1]],[[1,2,1,0],[0,2,3,2],[3,3,3,0],[1,0,2,1]],[[1,2,1,0],[0,2,3,3],[2,3,3,0],[1,0,2,1]],[[1,2,1,0],[0,2,4,2],[2,3,3,0],[1,0,2,1]],[[1,2,1,0],[0,2,3,2],[2,3,3,0],[0,3,1,1]],[[1,2,1,0],[0,2,3,2],[2,3,4,0],[0,2,1,1]],[[1,2,1,0],[0,2,3,2],[2,4,3,0],[0,2,1,1]],[[1,2,1,0],[0,2,3,2],[3,3,3,0],[0,2,1,1]],[[1,2,1,0],[0,2,3,3],[2,3,3,0],[0,2,1,1]],[[1,2,1,0],[0,2,4,2],[2,3,3,0],[0,2,1,1]],[[1,2,1,0],[0,2,3,2],[2,3,3,0],[0,1,2,2]],[[1,2,1,0],[0,2,3,2],[2,3,3,0],[0,1,3,1]],[[1,2,1,0],[0,2,3,2],[2,3,4,0],[0,1,2,1]],[[1,2,1,0],[0,2,3,2],[2,4,3,0],[0,1,2,1]],[[1,2,1,0],[0,2,3,2],[3,3,3,0],[0,1,2,1]],[[1,2,1,0],[0,2,3,3],[2,3,3,0],[0,1,2,1]],[[1,2,1,0],[0,2,4,2],[2,3,3,0],[0,1,2,1]],[[1,2,1,0],[0,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,1,0],[0,2,3,3],[2,3,2,2],[1,1,1,0]],[[1,2,1,0],[0,2,4,2],[2,3,2,2],[1,1,1,0]],[[1,2,1,0],[0,2,3,2],[2,3,2,2],[1,1,0,2]],[[1,2,1,0],[0,2,3,2],[2,3,2,3],[1,1,0,1]],[[1,2,1,0],[0,2,3,3],[2,3,2,2],[1,1,0,1]],[[1,2,1,0],[0,2,4,2],[2,3,2,2],[1,1,0,1]],[[1,2,1,0],[0,2,3,2],[2,3,2,3],[1,0,2,0]],[[1,2,1,0],[0,2,3,3],[2,3,2,2],[1,0,2,0]],[[1,2,1,0],[0,2,4,2],[2,3,2,2],[1,0,2,0]],[[1,2,1,0],[0,2,3,2],[2,3,2,2],[1,0,1,2]],[[1,2,1,0],[0,2,3,2],[2,3,2,3],[1,0,1,1]],[[1,2,1,0],[0,2,3,3],[2,3,2,2],[1,0,1,1]],[[1,2,1,0],[0,2,4,2],[2,3,2,2],[1,0,1,1]],[[1,2,1,0],[0,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,1,0],[0,2,3,3],[2,3,2,2],[0,2,1,0]],[[1,2,1,0],[0,2,4,2],[2,3,2,2],[0,2,1,0]],[[1,2,1,0],[0,2,3,2],[2,3,2,2],[0,2,0,2]],[[1,2,1,0],[0,2,3,2],[2,3,2,3],[0,2,0,1]],[[1,2,1,0],[0,2,3,3],[2,3,2,2],[0,2,0,1]],[[1,2,1,0],[0,2,4,2],[2,3,2,2],[0,2,0,1]],[[1,2,1,0],[0,2,3,2],[2,3,2,3],[0,1,2,0]],[[1,2,1,0],[0,2,3,3],[2,3,2,2],[0,1,2,0]],[[1,2,1,0],[0,2,4,2],[2,3,2,2],[0,1,2,0]],[[1,2,1,0],[0,2,3,2],[2,3,2,2],[0,1,1,2]],[[1,2,1,0],[0,2,3,2],[2,3,2,3],[0,1,1,1]],[[1,2,1,0],[0,2,3,3],[2,3,2,2],[0,1,1,1]],[[1,2,1,0],[0,2,4,2],[2,3,2,2],[0,1,1,1]],[[1,2,1,0],[0,2,3,2],[2,3,2,2],[0,0,2,2]],[[1,2,1,0],[0,2,3,2],[2,3,2,3],[0,0,2,1]],[[1,2,1,0],[0,2,3,3],[2,3,2,2],[0,0,2,1]],[[1,2,1,0],[0,2,4,2],[2,3,2,2],[0,0,2,1]],[[1,2,1,0],[0,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,1,0],[0,2,3,2],[2,4,2,1],[1,1,2,0]],[[1,2,1,0],[0,2,3,2],[3,3,2,1],[1,1,2,0]],[[1,2,1,0],[0,2,3,2],[2,3,2,1],[0,2,3,0]],[[1,2,1,0],[0,2,3,2],[2,3,2,1],[0,3,2,0]],[[1,2,1,0],[0,2,3,2],[2,4,2,1],[0,2,2,0]],[[1,2,1,0],[0,2,3,2],[3,3,2,1],[0,2,2,0]],[[1,2,1,0],[0,2,3,2],[2,3,2,0],[2,1,2,1]],[[1,2,1,0],[0,2,3,2],[2,4,2,0],[1,1,2,1]],[[1,2,1,0],[0,2,3,2],[3,3,2,0],[1,1,2,1]],[[1,2,1,0],[0,2,3,2],[2,3,2,0],[0,2,2,2]],[[1,2,1,0],[0,2,3,2],[2,3,2,0],[0,2,3,1]],[[1,2,1,0],[0,2,3,2],[2,3,2,0],[0,3,2,1]],[[1,2,1,0],[0,2,3,2],[2,4,2,0],[0,2,2,1]],[[1,2,1,0],[0,2,3,2],[3,3,2,0],[0,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,1,0],[0,2,3,2],[2,3,1,2],[1,0,3,1]],[[1,2,1,0],[0,2,3,2],[2,3,1,3],[1,0,2,1]],[[1,2,1,0],[0,2,3,3],[2,3,1,2],[1,0,2,1]],[[1,2,1,0],[0,2,4,2],[2,3,1,2],[1,0,2,1]],[[1,2,1,0],[0,2,3,2],[2,3,1,2],[0,1,2,2]],[[1,2,1,0],[0,2,3,2],[2,3,1,2],[0,1,3,1]],[[1,2,1,0],[0,2,3,2],[2,3,1,3],[0,1,2,1]],[[1,2,1,0],[0,2,3,3],[2,3,1,2],[0,1,2,1]],[[1,2,1,0],[0,2,4,2],[2,3,1,2],[0,1,2,1]],[[1,2,1,0],[0,2,3,2],[2,3,0,2],[2,1,2,1]],[[1,2,1,0],[0,2,3,2],[2,4,0,2],[1,1,2,1]],[[1,2,1,0],[0,2,3,2],[3,3,0,2],[1,1,2,1]],[[1,2,1,0],[0,2,3,2],[2,3,0,2],[0,2,2,2]],[[1,2,1,0],[0,2,3,2],[2,3,0,2],[0,2,3,1]],[[1,2,1,0],[0,2,3,2],[2,3,0,2],[0,3,2,1]],[[1,2,1,0],[0,2,3,2],[2,3,0,3],[0,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,4,0,2],[0,2,2,1]],[[1,2,1,0],[0,2,3,2],[3,3,0,2],[0,2,2,1]],[[1,2,1,0],[0,2,3,3],[2,3,0,2],[0,2,2,1]],[[1,2,1,0],[0,2,4,2],[2,3,0,2],[0,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,1,0],[0,2,3,2],[2,2,3,1],[2,2,1,0]],[[1,2,1,0],[0,2,3,2],[3,2,3,1],[1,2,1,0]],[[1,2,1,0],[0,2,3,2],[2,2,3,1],[1,3,0,1]],[[1,2,1,0],[0,2,3,2],[2,2,3,1],[2,2,0,1]],[[1,2,1,0],[0,2,3,2],[3,2,3,1],[1,2,0,1]],[[1,2,1,0],[0,2,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,1,0],[0,2,3,2],[2,2,3,1],[0,3,2,0]],[[1,2,1,0],[0,2,3,2],[2,2,4,1],[0,2,2,0]],[[1,2,1,0],[0,2,3,3],[2,2,3,1],[0,2,2,0]],[[1,2,1,0],[0,2,4,2],[2,2,3,1],[0,2,2,0]],[[1,2,1,0],[0,2,3,2],[2,2,4,1],[0,2,1,1]],[[1,2,1,0],[0,2,3,3],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[0,2,4,2],[2,2,3,1],[0,2,1,1]],[[1,2,1,0],[0,2,3,2],[2,2,3,0],[1,3,1,1]],[[1,2,1,0],[0,2,3,2],[2,2,3,0],[2,2,1,1]],[[1,2,1,0],[0,2,3,2],[3,2,3,0],[1,2,1,1]],[[1,2,1,0],[0,2,3,2],[2,2,3,0],[0,2,2,2]],[[1,2,1,0],[0,2,3,2],[2,2,3,0],[0,2,3,1]],[[1,2,1,0],[0,2,3,2],[2,2,3,0],[0,3,2,1]],[[1,2,1,0],[0,2,3,2],[2,2,4,0],[0,2,2,1]],[[2,1,1,1],[2,3,3,0],[2,3,3,2],[1,0,0,0]],[[1,1,1,1],[3,3,3,0],[2,3,3,2],[1,0,0,0]],[[1,1,1,1],[2,4,3,0],[2,3,3,2],[1,0,0,0]],[[1,1,1,1],[2,3,4,0],[2,3,3,2],[1,0,0,0]],[[1,1,1,1],[2,3,3,0],[3,3,3,2],[1,0,0,0]],[[1,2,1,0],[0,2,3,3],[2,2,3,0],[0,2,2,1]],[[1,2,1,0],[0,2,4,2],[2,2,3,0],[0,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,1,0],[0,2,3,3],[2,2,2,2],[0,2,2,0]],[[1,2,1,0],[0,2,4,2],[2,2,2,2],[0,2,2,0]],[[1,2,1,0],[0,2,3,2],[2,2,2,2],[0,2,1,2]],[[1,2,1,0],[0,2,3,2],[2,2,2,3],[0,2,1,1]],[[1,2,1,0],[0,2,3,3],[2,2,2,2],[0,2,1,1]],[[1,2,1,0],[0,2,4,2],[2,2,2,2],[0,2,1,1]],[[1,2,1,0],[0,2,3,2],[2,2,2,1],[1,2,3,0]],[[1,2,1,0],[0,2,3,2],[2,2,2,1],[1,3,2,0]],[[1,2,1,0],[0,2,3,2],[2,2,2,1],[2,2,2,0]],[[1,2,1,0],[0,2,3,2],[3,2,2,1],[1,2,2,0]],[[1,2,1,0],[0,2,3,2],[2,2,2,0],[1,2,2,2]],[[1,2,1,0],[0,2,3,2],[2,2,2,0],[1,2,3,1]],[[1,2,1,0],[0,2,3,2],[2,2,2,0],[1,3,2,1]],[[1,2,1,0],[0,2,3,2],[2,2,2,0],[2,2,2,1]],[[1,2,1,0],[0,2,3,2],[3,2,2,0],[1,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,2,1,2],[0,2,2,2]],[[1,2,1,0],[0,2,3,2],[2,2,1,2],[0,2,3,1]],[[1,2,1,0],[0,2,3,2],[2,2,1,2],[0,3,2,1]],[[1,2,1,0],[0,2,3,2],[2,2,1,3],[0,2,2,1]],[[1,2,1,0],[0,2,3,3],[2,2,1,2],[0,2,2,1]],[[1,2,1,0],[0,2,4,2],[2,2,1,2],[0,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,2,0,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,2],[2,2,0,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,2],[2,2,0,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,2],[2,2,0,2],[2,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,2,0,3],[1,2,2,1]],[[1,2,1,0],[0,2,3,2],[3,2,0,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,3],[2,2,0,2],[1,2,2,1]],[[1,2,1,0],[0,2,4,2],[2,2,0,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,1,0],[0,2,3,2],[2,1,3,1],[1,3,2,0]],[[1,2,1,0],[0,2,3,2],[2,1,3,1],[2,2,2,0]],[[1,2,1,0],[0,2,3,2],[2,1,4,1],[1,2,2,0]],[[1,2,1,0],[0,2,3,2],[3,1,3,1],[1,2,2,0]],[[1,2,1,0],[0,2,3,3],[2,1,3,1],[1,2,2,0]],[[1,2,1,0],[0,2,4,2],[2,1,3,1],[1,2,2,0]],[[1,2,1,0],[0,2,3,2],[2,1,4,1],[1,2,1,1]],[[1,2,1,0],[0,2,3,3],[2,1,3,1],[1,2,1,1]],[[1,2,1,0],[0,2,4,2],[2,1,3,1],[1,2,1,1]],[[1,2,1,0],[0,2,3,2],[2,1,3,0],[1,2,2,2]],[[1,2,1,0],[0,2,3,2],[2,1,3,0],[1,2,3,1]],[[1,2,1,0],[0,2,3,2],[2,1,3,0],[1,3,2,1]],[[1,2,1,0],[0,2,3,2],[2,1,3,0],[2,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,1,4,0],[1,2,2,1]],[[1,2,1,0],[0,2,3,2],[3,1,3,0],[1,2,2,1]],[[1,2,1,0],[0,2,3,3],[2,1,3,0],[1,2,2,1]],[[1,2,1,0],[0,2,4,2],[2,1,3,0],[1,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,1,2,3],[1,2,2,0]],[[1,2,1,0],[0,2,3,3],[2,1,2,2],[1,2,2,0]],[[1,2,1,0],[0,2,4,2],[2,1,2,2],[1,2,2,0]],[[1,2,1,0],[0,2,3,2],[2,1,2,2],[1,2,1,2]],[[1,2,1,0],[0,2,3,2],[2,1,2,3],[1,2,1,1]],[[1,2,1,0],[0,2,3,3],[2,1,2,2],[1,2,1,1]],[[1,2,1,0],[0,2,4,2],[2,1,2,2],[1,2,1,1]],[[1,2,1,0],[0,2,3,2],[2,1,1,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,2],[2,1,1,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,2],[2,1,1,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,2],[2,1,1,2],[2,2,2,1]],[[1,2,1,0],[0,2,3,2],[2,1,1,3],[1,2,2,1]],[[1,2,1,0],[0,2,3,2],[3,1,1,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,3],[2,1,1,2],[1,2,2,1]],[[1,2,1,0],[0,2,4,2],[2,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,0,3,3],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,0,3,2],[0,2,3,1]],[[1,1,1,1],[2,3,3,1],[0,0,3,2],[0,2,2,2]],[[2,1,1,1],[2,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[0,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[0,1,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,1,2,3],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,1,2,2],[0,2,3,1]],[[1,1,1,1],[2,3,3,1],[0,1,2,2],[0,2,2,2]],[[2,1,1,1],[2,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[0,1,2,2],[1,2,1,1]],[[1,1,1,1],[2,3,4,1],[0,1,2,2],[1,2,1,1]],[[2,1,1,1],[2,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[0,1,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,4,1],[0,1,2,2],[1,2,2,0]],[[2,1,1,1],[2,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[0,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[0,1,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,1,4,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,1,3,0],[2,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,1,3,0],[1,3,2,1]],[[1,1,1,1],[2,3,3,1],[0,1,3,0],[1,2,3,1]],[[1,1,1,1],[2,3,3,1],[0,1,3,0],[1,2,2,2]],[[1,1,1,1],[2,4,3,1],[0,1,3,1],[0,2,2,1]],[[1,1,1,1],[2,3,4,1],[0,1,3,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,1,4,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,1,3,1],[0,2,3,1]],[[1,1,1,1],[2,3,3,1],[0,1,3,1],[0,2,2,2]],[[2,1,1,1],[2,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[0,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,4,1],[0,1,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,1,4,1],[1,2,1,1]],[[2,1,1,1],[2,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[0,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,3,4,1],[0,1,3,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,1,4,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,1,3,1],[2,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,1,3,1],[1,3,2,0]],[[1,1,1,1],[2,3,3,1],[0,1,3,1],[1,2,3,0]],[[1,1,1,1],[2,4,3,1],[0,1,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[0,1,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,1,4,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,1,3,3],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,1,3,2],[0,2,1,2]],[[1,1,1,1],[2,4,3,1],[0,1,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,1],[0,1,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,1,4,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,1,3,3],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,1,3,2],[0,2,3,0]],[[2,1,1,1],[2,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[0,2,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[0,2,0,2],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[0,2,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,4,1],[0,2,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[0,2,2,3],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[0,2,2,2],[0,1,3,1]],[[1,1,1,1],[2,3,3,1],[0,2,2,2],[0,1,2,2]],[[2,1,1,1],[2,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[0,2,2,2],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[0,2,2,2],[1,1,1,1]],[[2,1,1,1],[2,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[0,2,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,4,1],[0,2,2,2],[1,1,2,0]],[[2,1,1,1],[2,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,1,1,1],[3,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,1,1,1],[2,4,3,1],[0,2,2,2],[1,2,0,1]],[[1,1,1,1],[2,3,4,1],[0,2,2,2],[1,2,0,1]],[[2,1,1,1],[2,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,1,1,1],[3,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[0,2,2,2],[1,2,1,0]],[[1,1,1,1],[2,3,4,1],[0,2,2,2],[1,2,1,0]],[[1,2,1,0],[0,2,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,1,0],[0,2,3,3],[1,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,2,4,2],[1,3,3,2],[1,1,0,1]],[[2,1,1,1],[2,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[0,2,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,4,1],[0,2,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[0,2,4,0],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,0],[1,1,3,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,0],[1,1,2,2]],[[2,1,1,1],[2,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[0,2,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,4,1],[0,2,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,2,4,0],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[0,2,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,4,1],[0,2,3,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[0,2,4,1],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,1],[0,1,3,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,1],[0,1,2,2]],[[2,1,1,1],[2,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[0,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[0,2,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[0,2,4,1],[1,1,1,1]],[[2,1,1,1],[2,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[0,2,3,1],[1,1,2,0]],[[1,1,1,1],[2,3,4,1],[0,2,3,1],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[0,2,4,1],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[0,2,3,1],[1,1,3,0]],[[2,1,1,1],[2,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,1,1,1],[3,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,4,3,1],[0,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,4,1],[0,2,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[0,2,4,1],[1,2,0,1]],[[2,1,1,1],[2,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,1,1,1],[3,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[0,2,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,4,1],[0,2,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,2,4,1],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[0,2,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,4,1],[0,2,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,1],[0,2,4,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,3],[0,0,2,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,2],[0,0,2,2]],[[1,1,1,1],[2,4,3,1],[0,2,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,1],[0,2,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[0,2,4,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,3],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,2],[0,1,1,2]],[[1,1,1,1],[2,4,3,1],[0,2,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[0,2,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[0,2,4,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[0,2,3,3],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[0,2,3,2],[0,1,3,0]],[[1,1,1,1],[2,4,3,1],[0,2,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,1],[0,2,3,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[0,2,4,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,3],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,2],[0,2,0,2]],[[1,1,1,1],[2,4,3,1],[0,2,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[0,2,3,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,2,4,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,2,3,3],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[0,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,1],[0,2,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[0,2,4,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,3],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[0,2,3,2],[1,0,1,2]],[[1,1,1,1],[2,4,3,1],[0,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,1],[0,2,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[0,2,4,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[0,2,3,3],[1,0,2,0]],[[1,2,1,0],[0,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,1,0],[0,2,3,2],[1,3,3,1],[2,2,1,0]],[[1,2,1,0],[0,2,3,2],[1,3,4,1],[1,2,1,0]],[[1,2,1,0],[0,2,3,2],[1,4,3,1],[1,2,1,0]],[[1,2,1,0],[0,2,3,3],[1,3,3,1],[1,2,1,0]],[[1,2,1,0],[0,2,4,2],[1,3,3,1],[1,2,1,0]],[[1,2,1,0],[0,2,3,2],[1,3,3,1],[1,3,0,1]],[[1,2,1,0],[0,2,3,2],[1,3,3,1],[2,2,0,1]],[[1,2,1,0],[0,2,3,2],[1,3,4,1],[1,2,0,1]],[[1,2,1,0],[0,2,3,2],[1,4,3,1],[1,2,0,1]],[[1,2,1,0],[0,2,3,3],[1,3,3,1],[1,2,0,1]],[[1,2,1,0],[0,2,4,2],[1,3,3,1],[1,2,0,1]],[[1,2,1,0],[0,2,3,2],[1,3,3,1],[1,1,3,0]],[[1,2,1,0],[0,2,3,2],[1,3,4,1],[1,1,2,0]],[[1,2,1,0],[0,2,3,2],[1,4,3,1],[1,1,2,0]],[[1,2,1,0],[0,2,3,3],[1,3,3,1],[1,1,2,0]],[[1,2,1,0],[0,2,4,2],[1,3,3,1],[1,1,2,0]],[[1,2,1,0],[0,2,3,2],[1,3,4,1],[1,1,1,1]],[[1,2,1,0],[0,2,3,2],[1,4,3,1],[1,1,1,1]],[[1,2,1,0],[0,2,3,3],[1,3,3,1],[1,1,1,1]],[[1,2,1,0],[0,2,4,2],[1,3,3,1],[1,1,1,1]],[[1,2,1,0],[0,2,3,2],[1,3,4,1],[1,0,2,1]],[[1,2,1,0],[0,2,3,3],[1,3,3,1],[1,0,2,1]],[[1,2,1,0],[0,2,4,2],[1,3,3,1],[1,0,2,1]],[[2,1,1,1],[2,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[0,3,0,1],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[0,3,0,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,4,0,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,3,0,1],[2,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,3,0,1],[1,3,2,1]],[[1,1,1,1],[2,3,3,1],[0,3,0,1],[1,2,3,1]],[[1,1,1,1],[2,3,3,1],[0,3,0,1],[1,2,2,2]],[[2,1,1,1],[2,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[0,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,4,1],[0,3,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[0,4,0,2],[1,1,2,1]],[[2,1,1,1],[2,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[0,3,0,2],[1,2,1,1]],[[1,1,1,1],[2,3,4,1],[0,3,0,2],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,4,0,2],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,3,0,2],[2,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,3,0,2],[1,3,1,1]],[[2,1,1,1],[2,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[0,3,0,2],[1,2,2,0]],[[1,1,1,1],[2,3,4,1],[0,3,0,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,4,0,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,3,0,2],[2,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,3,0,2],[1,3,2,0]],[[1,1,1,1],[2,3,3,1],[0,3,0,2],[1,2,3,0]],[[2,1,1,1],[2,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[0,3,1,0],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[0,3,1,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,4,1,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,3,1,0],[2,2,2,1]],[[1,1,1,1],[2,3,3,1],[0,3,1,0],[1,3,2,1]],[[1,1,1,1],[2,3,3,1],[0,3,1,0],[1,2,3,1]],[[1,1,1,1],[2,3,3,1],[0,3,1,0],[1,2,2,2]],[[2,1,1,1],[2,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[0,3,1,1],[1,2,2,0]],[[1,1,1,1],[2,3,4,1],[0,3,1,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,4,1,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,3,1,1],[2,2,2,0]],[[1,1,1,1],[2,3,3,1],[0,3,1,1],[1,3,2,0]],[[1,1,1,1],[2,3,3,1],[0,3,1,1],[1,2,3,0]],[[2,1,1,1],[2,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[0,3,1,2],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[0,3,1,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[0,4,1,2],[1,1,1,1]],[[2,1,1,1],[2,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[0,3,1,2],[1,1,2,0]],[[1,1,1,1],[2,3,4,1],[0,3,1,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[0,4,1,2],[1,1,2,0]],[[2,1,1,1],[2,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,1,1,1],[3,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,1,1,1],[2,4,3,1],[0,3,1,2],[1,2,0,1]],[[1,1,1,1],[2,3,4,1],[0,3,1,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[0,4,1,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[0,3,1,2],[2,2,0,1]],[[1,1,1,1],[2,3,3,1],[0,3,1,2],[1,3,0,1]],[[2,1,1,1],[2,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,1,1,1],[3,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[0,3,1,2],[1,2,1,0]],[[1,1,1,1],[2,3,4,1],[0,3,1,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,4,1,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,3,1,2],[2,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,3,1,2],[1,3,1,0]],[[1,2,1,0],[0,2,3,2],[1,3,3,0],[1,3,1,1]],[[1,2,1,0],[0,2,3,2],[1,3,3,0],[2,2,1,1]],[[1,2,1,0],[0,2,3,2],[1,3,4,0],[1,2,1,1]],[[1,2,1,0],[0,2,3,2],[1,4,3,0],[1,2,1,1]],[[1,2,1,0],[0,2,3,3],[1,3,3,0],[1,2,1,1]],[[2,1,1,1],[2,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[0,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,3,4,1],[0,3,2,0],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[0,4,2,0],[1,1,2,1]],[[2,1,1,1],[2,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[0,3,2,0],[1,2,1,1]],[[1,1,1,1],[2,3,4,1],[0,3,2,0],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,4,2,0],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,3,2,0],[2,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,3,2,0],[1,3,1,1]],[[2,1,1,1],[2,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[0,3,2,1],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[0,3,2,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[0,4,2,1],[1,1,1,1]],[[2,1,1,1],[2,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[0,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,3,4,1],[0,3,2,1],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[0,4,2,1],[1,1,2,0]],[[2,1,1,1],[2,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,1,1,1],[3,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,1,1,1],[2,4,3,1],[0,3,2,1],[1,2,0,1]],[[1,1,1,1],[2,3,4,1],[0,3,2,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[0,4,2,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[0,3,2,1],[2,2,0,1]],[[1,1,1,1],[2,3,3,1],[0,3,2,1],[1,3,0,1]],[[2,1,1,1],[2,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,1,1,1],[3,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[0,3,2,1],[1,2,1,0]],[[1,1,1,1],[2,3,4,1],[0,3,2,1],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,4,2,1],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,3,2,1],[2,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,3,2,1],[1,3,1,0]],[[1,2,1,0],[0,2,4,2],[1,3,3,0],[1,2,1,1]],[[1,2,1,0],[0,2,3,2],[1,3,3,0],[1,1,2,2]],[[1,2,1,0],[0,2,3,2],[1,3,3,0],[1,1,3,1]],[[1,2,1,0],[0,2,3,2],[1,3,4,0],[1,1,2,1]],[[1,2,1,0],[0,2,3,2],[1,4,3,0],[1,1,2,1]],[[1,2,1,0],[0,2,3,3],[1,3,3,0],[1,1,2,1]],[[1,2,1,0],[0,2,4,2],[1,3,3,0],[1,1,2,1]],[[1,2,1,0],[0,2,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,1,0],[0,2,3,3],[1,3,2,2],[1,2,1,0]],[[1,2,1,0],[0,2,4,2],[1,3,2,2],[1,2,1,0]],[[1,2,1,0],[0,2,3,2],[1,3,2,2],[1,2,0,2]],[[1,2,1,0],[0,2,3,2],[1,3,2,3],[1,2,0,1]],[[1,2,1,0],[0,2,3,3],[1,3,2,2],[1,2,0,1]],[[1,2,1,0],[0,2,4,2],[1,3,2,2],[1,2,0,1]],[[1,2,1,0],[0,2,3,2],[1,3,2,3],[1,1,2,0]],[[1,2,1,0],[0,2,3,3],[1,3,2,2],[1,1,2,0]],[[1,2,1,0],[0,2,4,2],[1,3,2,2],[1,1,2,0]],[[1,2,1,0],[0,2,3,2],[1,3,2,2],[1,1,1,2]],[[1,2,1,0],[0,2,3,2],[1,3,2,3],[1,1,1,1]],[[1,2,1,0],[0,2,3,3],[1,3,2,2],[1,1,1,1]],[[1,2,1,0],[0,2,4,2],[1,3,2,2],[1,1,1,1]],[[1,2,1,0],[0,2,3,2],[1,3,2,2],[1,0,2,2]],[[1,2,1,0],[0,2,3,2],[1,3,2,3],[1,0,2,1]],[[1,2,1,0],[0,2,3,3],[1,3,2,2],[1,0,2,1]],[[1,2,1,0],[0,2,4,2],[1,3,2,2],[1,0,2,1]],[[1,1,1,1],[2,4,3,1],[0,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,4,1],[0,3,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[0,3,4,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[0,3,3,0],[0,1,3,1]],[[1,1,1,1],[2,3,3,1],[0,3,3,0],[0,1,2,2]],[[1,1,1,1],[2,4,3,1],[0,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[0,3,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[0,3,4,0],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[0,3,3,0],[1,1,2,0]],[[1,1,1,1],[2,3,4,1],[0,3,3,0],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[0,4,3,0],[1,1,2,0]],[[2,1,1,1],[2,3,3,1],[0,3,3,0],[1,2,1,0]],[[1,1,1,1],[3,3,3,1],[0,3,3,0],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[0,3,3,0],[1,2,1,0]],[[1,1,1,1],[2,3,4,1],[0,3,3,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,4,3,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,3,3,0],[2,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,3,3,0],[1,3,1,0]],[[1,2,1,0],[0,2,3,2],[1,3,2,1],[1,2,3,0]],[[1,2,1,0],[0,2,3,2],[1,3,2,1],[1,3,2,0]],[[1,2,1,0],[0,2,3,2],[1,3,2,1],[2,2,2,0]],[[1,2,1,0],[0,2,3,2],[1,4,2,1],[1,2,2,0]],[[1,2,1,0],[0,2,3,2],[1,3,2,0],[1,2,2,2]],[[1,2,1,0],[0,2,3,2],[1,3,2,0],[1,2,3,1]],[[1,2,1,0],[0,2,3,2],[1,3,2,0],[1,3,2,1]],[[1,2,1,0],[0,2,3,2],[1,3,2,0],[2,2,2,1]],[[1,2,1,0],[0,2,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[0,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,4,1],[0,3,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[0,3,4,1],[0,1,1,1]],[[1,1,1,1],[2,4,3,1],[0,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[0,3,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[0,3,4,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[0,3,3,1],[0,1,3,0]],[[1,1,1,1],[2,4,3,1],[0,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,4,1],[0,3,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[0,3,4,1],[0,2,0,1]],[[1,1,1,1],[2,4,3,1],[0,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[0,3,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[0,3,4,1],[0,2,1,0]],[[1,2,1,0],[0,2,3,2],[1,3,1,2],[1,1,2,2]],[[1,2,1,0],[0,2,3,2],[1,3,1,2],[1,1,3,1]],[[1,2,1,0],[0,2,3,2],[1,3,1,3],[1,1,2,1]],[[1,2,1,0],[0,2,3,3],[1,3,1,2],[1,1,2,1]],[[1,2,1,0],[0,2,4,2],[1,3,1,2],[1,1,2,1]],[[2,1,1,1],[2,3,3,1],[0,3,3,1],[1,2,0,0]],[[1,1,1,1],[3,3,3,1],[0,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,4,3,1],[0,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,3,4,1],[0,3,3,1],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[0,4,3,1],[1,2,0,0]],[[1,2,1,0],[0,2,3,2],[1,3,0,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,2],[1,3,0,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,2],[1,3,0,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,2],[1,3,0,2],[2,2,2,1]],[[1,2,1,0],[0,2,3,2],[1,3,0,3],[1,2,2,1]],[[1,2,1,0],[0,2,3,2],[1,4,0,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,3],[1,3,0,2],[1,2,2,1]],[[1,2,1,0],[0,2,4,2],[1,3,0,2],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[0,3,3,2],[0,0,1,1]],[[1,1,1,1],[2,3,4,1],[0,3,3,2],[0,0,1,1]],[[1,1,1,1],[2,3,3,1],[0,3,4,2],[0,0,1,1]],[[1,1,1,1],[2,3,3,1],[0,3,3,3],[0,0,1,1]],[[1,1,1,1],[2,3,3,1],[0,3,3,2],[0,0,1,2]],[[1,1,1,1],[2,4,3,1],[0,3,3,2],[0,0,2,0]],[[1,1,1,1],[2,3,4,1],[0,3,3,2],[0,0,2,0]],[[1,1,1,1],[2,3,3,1],[0,3,4,2],[0,0,2,0]],[[1,1,1,1],[2,3,3,1],[0,3,3,3],[0,0,2,0]],[[1,2,1,0],[0,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,1,0],[0,2,3,2],[1,2,3,1],[1,3,2,0]],[[1,2,1,0],[0,2,3,2],[1,2,3,1],[2,2,2,0]],[[1,2,1,0],[0,2,3,2],[1,2,4,1],[1,2,2,0]],[[1,2,1,0],[0,2,3,3],[1,2,3,1],[1,2,2,0]],[[1,2,1,0],[0,2,4,2],[1,2,3,1],[1,2,2,0]],[[1,2,1,0],[0,2,3,2],[1,2,4,1],[1,2,1,1]],[[1,2,1,0],[0,2,3,3],[1,2,3,1],[1,2,1,1]],[[1,2,1,0],[0,2,4,2],[1,2,3,1],[1,2,1,1]],[[1,2,1,0],[0,2,3,2],[1,2,3,0],[1,2,2,2]],[[1,2,1,0],[0,2,3,2],[1,2,3,0],[1,2,3,1]],[[1,2,1,0],[0,2,3,2],[1,2,3,0],[1,3,2,1]],[[1,2,1,0],[0,2,3,2],[1,2,3,0],[2,2,2,1]],[[1,2,1,0],[0,2,3,2],[1,2,4,0],[1,2,2,1]],[[1,2,1,0],[0,2,3,3],[1,2,3,0],[1,2,2,1]],[[1,2,1,0],[0,2,4,2],[1,2,3,0],[1,2,2,1]],[[1,2,1,0],[0,2,3,2],[1,2,2,3],[1,2,2,0]],[[1,2,1,0],[0,2,3,3],[1,2,2,2],[1,2,2,0]],[[1,2,1,0],[0,2,4,2],[1,2,2,2],[1,2,2,0]],[[1,2,1,0],[0,2,3,2],[1,2,2,2],[1,2,1,2]],[[1,2,1,0],[0,2,3,2],[1,2,2,3],[1,2,1,1]],[[1,2,1,0],[0,2,3,3],[1,2,2,2],[1,2,1,1]],[[1,2,1,0],[0,2,4,2],[1,2,2,2],[1,2,1,1]],[[1,2,1,0],[0,2,3,2],[1,2,1,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,2],[1,2,1,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,2],[1,2,1,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,2],[1,2,1,2],[2,2,2,1]],[[1,2,1,0],[0,2,3,2],[1,2,1,3],[1,2,2,1]],[[1,2,1,0],[0,2,3,3],[1,2,1,2],[1,2,2,1]],[[1,2,1,0],[0,2,4,2],[1,2,1,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,1,0],[0,2,3,2],[0,3,3,1],[1,3,2,0]],[[1,2,1,0],[0,2,3,2],[0,3,4,1],[1,2,2,0]],[[1,2,1,0],[0,2,3,3],[0,3,3,1],[1,2,2,0]],[[1,2,1,0],[0,2,4,2],[0,3,3,1],[1,2,2,0]],[[1,2,1,0],[0,2,3,2],[0,3,4,1],[1,2,1,1]],[[1,2,1,0],[0,2,3,3],[0,3,3,1],[1,2,1,1]],[[1,2,1,0],[0,2,4,2],[0,3,3,1],[1,2,1,1]],[[1,2,1,0],[0,2,3,2],[0,3,3,0],[1,2,2,2]],[[1,2,1,0],[0,2,3,2],[0,3,3,0],[1,2,3,1]],[[1,2,1,0],[0,2,3,2],[0,3,3,0],[1,3,2,1]],[[1,2,1,0],[0,2,3,2],[0,3,4,0],[1,2,2,1]],[[1,2,1,0],[0,2,3,3],[0,3,3,0],[1,2,2,1]],[[1,2,1,0],[0,2,4,2],[0,3,3,0],[1,2,2,1]],[[1,2,1,0],[0,2,3,2],[0,3,2,3],[1,2,2,0]],[[1,2,1,0],[0,2,3,3],[0,3,2,2],[1,2,2,0]],[[1,2,1,0],[0,2,4,2],[0,3,2,2],[1,2,2,0]],[[1,2,1,0],[0,2,3,2],[0,3,2,2],[1,2,1,2]],[[1,2,1,0],[0,2,3,2],[0,3,2,3],[1,2,1,1]],[[1,2,1,0],[0,2,3,3],[0,3,2,2],[1,2,1,1]],[[1,2,1,0],[0,2,4,2],[0,3,2,2],[1,2,1,1]],[[1,2,1,0],[0,2,3,2],[0,3,1,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,2],[0,3,1,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,2],[0,3,1,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,2],[0,3,1,3],[1,2,2,1]],[[1,2,1,0],[0,2,3,3],[0,3,1,2],[1,2,2,1]],[[1,2,1,0],[0,2,4,2],[0,3,1,2],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,0,1,2],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[1,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[1,0,1,2],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[1,0,1,2],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,0,2,2],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[1,0,2,2],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[1,0,2,2],[1,2,1,1]],[[1,1,1,1],[2,3,4,1],[1,0,2,2],[1,2,1,1]],[[2,1,1,1],[2,3,3,1],[1,0,2,2],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[1,0,2,2],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[1,0,2,2],[1,2,2,0]],[[1,1,1,1],[2,3,4,1],[1,0,2,2],[1,2,2,0]],[[2,1,1,1],[2,3,3,1],[1,0,3,0],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[1,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[1,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[1,0,3,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[1,0,4,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[1,0,3,0],[2,2,2,1]],[[1,1,1,1],[2,3,3,1],[1,0,3,0],[1,3,2,1]],[[1,1,1,1],[2,3,3,1],[1,0,3,0],[1,2,3,1]],[[1,1,1,1],[2,3,3,1],[1,0,3,0],[1,2,2,2]],[[2,1,1,1],[2,3,3,1],[1,0,3,1],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[1,0,3,1],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[1,0,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,4,1],[1,0,3,1],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[1,0,4,1],[1,2,1,1]],[[2,1,1,1],[2,3,3,1],[1,0,3,1],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[1,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[1,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,3,4,1],[1,0,3,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[1,0,4,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[1,0,3,1],[2,2,2,0]],[[1,1,1,1],[2,3,3,1],[1,0,3,1],[1,3,2,0]],[[1,1,1,1],[2,3,3,1],[1,0,3,1],[1,2,3,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[0,2,3,1],[2,4,3,2],[1,2,0,0]],[[1,2,1,0],[0,2,3,1],[3,3,3,2],[1,2,0,0]],[[2,1,1,1],[2,3,3,1],[1,1,0,2],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[1,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[1,1,0,2],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[1,1,0,2],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,1,1,1],[3,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,1,1,1],[2,4,3,1],[1,1,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,4,1],[1,1,1,2],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,1,1,1],[3,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,1,1,1],[2,4,3,1],[1,1,2,2],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[1,1,2,2],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,1,1,1],[3,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,1,1,1],[2,4,3,1],[1,1,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,1],[1,1,2,2],[0,2,2,0]],[[2,1,1,1],[2,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,1,1,1],[3,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,1,1,1],[2,4,3,1],[1,1,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,4,1],[1,1,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[1,1,4,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[1,1,3,0],[0,3,2,1]],[[1,1,1,1],[2,3,3,1],[1,1,3,0],[0,2,3,1]],[[1,1,1,1],[2,3,3,1],[1,1,3,0],[0,2,2,2]],[[2,1,1,1],[2,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,1,1,1],[3,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,1,1,1],[2,4,3,1],[1,1,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[1,1,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[1,1,4,1],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,1,1,1],[3,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,1,1,1],[2,4,3,1],[1,1,3,1],[0,2,2,0]],[[1,1,1,1],[2,3,4,1],[1,1,3,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[1,1,4,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[1,1,3,1],[0,3,2,0]],[[1,1,1,1],[2,3,3,1],[1,1,3,1],[0,2,3,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,1,0],[0,2,3,1],[2,3,4,2],[1,1,1,0]],[[1,2,1,0],[0,2,3,1],[2,4,3,2],[1,1,1,0]],[[1,2,1,0],[0,2,3,1],[3,3,3,2],[1,1,1,0]],[[1,2,1,0],[0,2,4,1],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[1,1,0,2]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[2,1,0,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,3],[1,1,0,1]],[[1,2,1,0],[0,2,3,1],[2,3,4,2],[1,1,0,1]],[[1,2,1,0],[0,2,3,1],[2,4,3,2],[1,1,0,1]],[[1,2,1,0],[0,2,3,1],[3,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,2,4,1],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[1,0,3,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[2,0,2,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,3],[1,0,2,0]],[[1,2,1,0],[0,2,3,1],[2,3,4,2],[1,0,2,0]],[[1,2,1,0],[0,2,3,1],[2,4,3,2],[1,0,2,0]],[[1,2,1,0],[0,2,3,1],[3,3,3,2],[1,0,2,0]],[[1,2,1,0],[0,2,4,1],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[1,0,1,2]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[2,0,1,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,3],[1,0,1,1]],[[1,2,1,0],[0,2,3,1],[2,3,4,2],[1,0,1,1]],[[1,2,1,0],[0,2,3,1],[2,4,3,2],[1,0,1,1]],[[1,2,1,0],[0,2,3,1],[3,3,3,2],[1,0,1,1]],[[1,2,1,0],[0,2,4,1],[2,3,3,2],[1,0,1,1]],[[2,1,1,1],[2,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,1,1,1],[3,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,1,1,1],[2,4,3,1],[1,2,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,4,1],[1,2,0,2],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,1,1,1],[3,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,1,1,1],[2,4,3,1],[1,2,1,2],[0,1,2,1]],[[1,1,1,1],[2,3,4,1],[1,2,1,2],[0,1,2,1]],[[2,1,1,1],[2,3,3,1],[1,2,1,2],[1,0,2,1]],[[1,1,1,1],[3,3,3,1],[1,2,1,2],[1,0,2,1]],[[1,1,1,1],[2,4,3,1],[1,2,1,2],[1,0,2,1]],[[1,1,1,1],[2,3,4,1],[1,2,1,2],[1,0,2,1]],[[2,1,1,1],[2,3,3,1],[1,2,2,2],[0,0,2,1]],[[1,1,1,1],[3,3,3,1],[1,2,2,2],[0,0,2,1]],[[1,1,1,1],[2,4,3,1],[1,2,2,2],[0,0,2,1]],[[1,1,1,1],[2,3,4,1],[1,2,2,2],[0,0,2,1]],[[2,1,1,1],[2,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,1,1,1],[3,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,1,1,1],[2,4,3,1],[1,2,2,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,1],[1,2,2,2],[0,1,1,1]],[[2,1,1,1],[2,3,3,1],[1,2,2,2],[0,1,2,0]],[[1,1,1,1],[3,3,3,1],[1,2,2,2],[0,1,2,0]],[[1,1,1,1],[2,4,3,1],[1,2,2,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[1,2,2,2],[0,1,2,0]],[[2,1,1,1],[2,3,3,1],[1,2,2,2],[0,2,0,1]],[[1,1,1,1],[3,3,3,1],[1,2,2,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,1],[1,2,2,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,1],[1,2,2,2],[0,2,0,1]],[[2,1,1,1],[2,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[1,2,2,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[1,2,2,2],[0,2,1,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,3],[0,2,1,0]],[[1,2,1,0],[0,2,3,1],[2,3,4,2],[0,2,1,0]],[[2,1,1,1],[2,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,1,1,1],[3,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,1,1,1],[2,4,3,1],[1,2,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,1],[1,2,2,2],[1,0,1,1]],[[2,1,1,1],[2,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,1,1,1],[3,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,1,1,1],[2,4,3,1],[1,2,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,1],[1,2,2,2],[1,0,2,0]],[[2,1,1,1],[2,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,1,1,1],[3,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,1],[1,2,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,4,1],[1,2,2,2],[1,1,0,1]],[[2,1,1,1],[2,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[1,2,2,2],[1,1,1,0]],[[1,1,1,1],[2,3,4,1],[1,2,2,2],[1,1,1,0]],[[1,2,1,0],[0,2,3,1],[2,4,3,2],[0,2,1,0]],[[1,2,1,0],[0,2,3,1],[3,3,3,2],[0,2,1,0]],[[1,2,1,0],[0,2,4,1],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[0,2,0,2]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[0,3,0,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,3],[0,2,0,1]],[[1,2,1,0],[0,2,3,1],[2,3,4,2],[0,2,0,1]],[[1,2,1,0],[0,2,3,1],[2,4,3,2],[0,2,0,1]],[[1,2,1,0],[0,2,3,1],[3,3,3,2],[0,2,0,1]],[[1,2,1,0],[0,2,4,1],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[0,1,3,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,3],[0,1,2,0]],[[1,2,1,0],[0,2,3,1],[2,3,4,2],[0,1,2,0]],[[1,2,1,0],[0,2,3,1],[2,4,3,2],[0,1,2,0]],[[1,2,1,0],[0,2,3,1],[3,3,3,2],[0,1,2,0]],[[1,2,1,0],[0,2,4,1],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[0,1,1,2]],[[2,1,1,1],[2,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,1,1,1],[3,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,1,1,1],[2,4,3,1],[1,2,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,4,1],[1,2,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[1,2,4,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[1,2,3,0],[0,1,3,1]],[[1,1,1,1],[2,3,3,1],[1,2,3,0],[0,1,2,2]],[[2,1,1,1],[2,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,1,1,1],[3,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,1,1,1],[2,4,3,1],[1,2,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[1,2,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[1,2,4,0],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,1,1,1],[3,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,1,1,1],[2,4,3,1],[1,2,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,4,1],[1,2,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[1,2,4,0],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[1,2,3,0],[1,0,3,1]],[[1,1,1,1],[2,3,3,1],[1,2,3,0],[1,0,2,2]],[[2,1,1,1],[2,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[1,2,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[1,2,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[1,2,4,0],[1,1,1,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,3],[0,1,1,1]],[[1,2,1,0],[0,2,3,1],[2,3,4,2],[0,1,1,1]],[[1,2,1,0],[0,2,3,1],[2,4,3,2],[0,1,1,1]],[[1,2,1,0],[0,2,3,1],[3,3,3,2],[0,1,1,1]],[[1,2,1,0],[0,2,4,1],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,2],[0,0,2,2]],[[1,2,1,0],[0,2,3,1],[2,3,3,3],[0,0,2,1]],[[1,2,1,0],[0,2,3,1],[2,3,4,2],[0,0,2,1]],[[1,2,1,0],[0,2,4,1],[2,3,3,2],[0,0,2,1]],[[2,1,1,1],[2,3,3,1],[1,2,3,1],[0,0,2,1]],[[1,1,1,1],[3,3,3,1],[1,2,3,1],[0,0,2,1]],[[1,1,1,1],[2,4,3,1],[1,2,3,1],[0,0,2,1]],[[1,1,1,1],[2,3,4,1],[1,2,3,1],[0,0,2,1]],[[1,1,1,1],[2,3,3,1],[1,2,4,1],[0,0,2,1]],[[2,1,1,1],[2,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,1,1,1],[3,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,1,1,1],[2,4,3,1],[1,2,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,4,1],[1,2,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[1,2,4,1],[0,1,1,1]],[[2,1,1,1],[2,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,1,1,1],[3,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,1,1,1],[2,4,3,1],[1,2,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[1,2,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[1,2,4,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[1,2,3,1],[0,1,3,0]],[[2,1,1,1],[2,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,1,1,1],[3,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,1,1,1],[2,4,3,1],[1,2,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,4,1],[1,2,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[1,2,4,1],[0,2,0,1]],[[2,1,1,1],[2,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[1,2,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[1,2,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[1,2,4,1],[0,2,1,0]],[[1,2,1,0],[0,2,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,1,0],[0,2,3,1],[2,4,3,1],[1,2,0,1]],[[2,1,1,1],[2,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,1,1,1],[3,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,1,1,1],[2,4,3,1],[1,2,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,4,1],[1,2,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[1,2,4,1],[1,0,1,1]],[[2,1,1,1],[2,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,1,1,1],[3,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,1,1,1],[2,4,3,1],[1,2,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,4,1],[1,2,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[1,2,4,1],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[1,2,3,1],[1,0,3,0]],[[2,1,1,1],[2,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,1,1,1],[3,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,1,1,1],[2,4,3,1],[1,2,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,4,1],[1,2,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[1,2,4,1],[1,1,0,1]],[[2,1,1,1],[2,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[1,2,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,4,1],[1,2,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[1,2,4,1],[1,1,1,0]],[[1,2,1,0],[0,2,3,1],[3,3,3,1],[1,2,0,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[0,2,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,1,0],[0,2,3,1],[2,4,3,1],[1,1,1,1]],[[1,2,1,0],[0,2,3,1],[3,3,3,1],[1,1,1,1]],[[1,2,1,0],[0,2,4,1],[2,3,3,1],[1,1,1,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,1],[1,0,2,2]],[[1,2,1,0],[0,2,3,1],[2,3,3,1],[1,0,3,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,1],[2,0,2,1]],[[1,2,1,0],[0,2,3,1],[2,3,4,1],[1,0,2,1]],[[1,2,1,0],[0,2,3,1],[2,4,3,1],[1,0,2,1]],[[1,2,1,0],[0,2,3,1],[3,3,3,1],[1,0,2,1]],[[1,2,1,0],[0,2,4,1],[2,3,3,1],[1,0,2,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,1],[0,3,1,1]],[[1,2,1,0],[0,2,3,1],[2,3,4,1],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[1,2,3,2],[0,1,0,1]],[[1,1,1,1],[3,3,3,1],[1,2,3,2],[0,1,0,1]],[[1,1,1,1],[2,4,3,1],[1,2,3,2],[0,1,0,1]],[[1,1,1,1],[2,3,4,1],[1,2,3,2],[0,1,0,1]],[[1,2,1,0],[0,2,3,1],[2,4,3,1],[0,2,1,1]],[[1,2,1,0],[0,2,3,1],[3,3,3,1],[0,2,1,1]],[[1,2,1,0],[0,2,4,1],[2,3,3,1],[0,2,1,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,1],[0,1,2,2]],[[1,2,1,0],[0,2,3,1],[2,3,3,1],[0,1,3,1]],[[1,2,1,0],[0,2,3,1],[2,3,4,1],[0,1,2,1]],[[1,2,1,0],[0,2,3,1],[2,4,3,1],[0,1,2,1]],[[1,2,1,0],[0,2,3,1],[3,3,3,1],[0,1,2,1]],[[1,2,1,0],[0,2,4,1],[2,3,3,1],[0,1,2,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,0],[2,1,2,1]],[[1,2,1,0],[0,2,3,1],[2,4,3,0],[1,1,2,1]],[[1,2,1,0],[0,2,3,1],[3,3,3,0],[1,1,2,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,0],[0,2,3,1]],[[1,2,1,0],[0,2,3,1],[2,3,3,0],[0,3,2,1]],[[1,2,1,0],[0,2,3,1],[2,4,3,0],[0,2,2,1]],[[1,2,1,0],[0,2,3,1],[3,3,3,0],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,2,3,2],[1,0,0,1]],[[1,1,1,1],[3,3,3,1],[1,2,3,2],[1,0,0,1]],[[1,1,1,1],[2,4,3,1],[1,2,3,2],[1,0,0,1]],[[1,1,1,1],[2,3,4,1],[1,2,3,2],[1,0,0,1]],[[1,2,1,0],[0,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[0,2,3,1],[2,4,2,2],[1,1,2,0]],[[1,2,1,0],[0,2,3,1],[3,3,2,2],[1,1,2,0]],[[1,2,1,0],[0,2,3,1],[2,3,2,2],[1,0,2,2]],[[1,2,1,0],[0,2,3,1],[2,3,2,2],[1,0,3,1]],[[1,2,1,0],[0,2,3,1],[2,3,2,3],[1,0,2,1]],[[1,2,1,0],[0,2,3,1],[2,3,2,2],[0,2,3,0]],[[1,2,1,0],[0,2,3,1],[2,3,2,2],[0,3,2,0]],[[1,2,1,0],[0,2,3,1],[2,4,2,2],[0,2,2,0]],[[1,2,1,0],[0,2,3,1],[3,3,2,2],[0,2,2,0]],[[1,2,1,0],[0,2,3,1],[2,3,2,2],[0,1,2,2]],[[1,2,1,0],[0,2,3,1],[2,3,2,2],[0,1,3,1]],[[1,2,1,0],[0,2,3,1],[2,3,2,3],[0,1,2,1]],[[1,2,1,0],[0,2,3,1],[2,3,2,1],[2,1,2,1]],[[1,2,1,0],[0,2,3,1],[2,4,2,1],[1,1,2,1]],[[1,2,1,0],[0,2,3,1],[3,3,2,1],[1,1,2,1]],[[1,2,1,0],[0,2,3,1],[2,3,2,1],[0,2,2,2]],[[1,2,1,0],[0,2,3,1],[2,3,2,1],[0,2,3,1]],[[1,2,1,0],[0,2,3,1],[2,3,2,1],[0,3,2,1]],[[1,2,1,0],[0,2,3,1],[2,4,2,1],[0,2,2,1]],[[1,2,1,0],[0,2,3,1],[3,3,2,1],[0,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,3,1,2],[2,1,2,1]],[[1,2,1,0],[0,2,3,1],[2,4,1,2],[1,1,2,1]],[[1,2,1,0],[0,2,3,1],[3,3,1,2],[1,1,2,1]],[[1,2,1,0],[0,2,3,1],[2,3,1,2],[0,2,2,2]],[[1,2,1,0],[0,2,3,1],[2,3,1,2],[0,2,3,1]],[[1,2,1,0],[0,2,3,1],[2,3,1,2],[0,3,2,1]],[[1,2,1,0],[0,2,3,1],[2,3,1,3],[0,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,4,1,2],[0,2,2,1]],[[1,2,1,0],[0,2,3,1],[3,3,1,2],[0,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[0,2,3,1],[2,2,3,2],[2,2,1,0]],[[1,2,1,0],[0,2,3,1],[3,2,3,2],[1,2,1,0]],[[1,2,1,0],[0,2,3,1],[2,2,3,2],[1,3,0,1]],[[1,2,1,0],[0,2,3,1],[2,2,3,2],[2,2,0,1]],[[1,2,1,0],[0,2,3,1],[3,2,3,2],[1,2,0,1]],[[2,1,1,1],[2,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,1,1,1],[3,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,1,1,1],[2,4,3,1],[1,3,0,1],[0,2,2,1]],[[1,1,1,1],[2,3,4,1],[1,3,0,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[1,4,0,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[1,3,0,1],[0,3,2,1]],[[1,1,1,1],[2,3,3,1],[1,3,0,1],[0,2,3,1]],[[1,1,1,1],[2,3,3,1],[1,3,0,1],[0,2,2,2]],[[2,1,1,1],[2,3,3,1],[1,3,0,1],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[1,3,0,1],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[1,3,0,1],[1,1,2,1]],[[1,1,1,1],[2,3,4,1],[1,3,0,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[1,4,0,1],[1,1,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,1,1,1],[3,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,1,1,1],[2,4,3,1],[1,3,0,2],[0,1,2,1]],[[1,1,1,1],[2,3,4,1],[1,3,0,2],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[1,4,0,2],[0,1,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,1,1,1],[3,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,1,1,1],[2,4,3,1],[1,3,0,2],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[1,3,0,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[1,4,0,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[1,3,0,2],[0,3,1,1]],[[2,1,1,1],[2,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,0,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,0,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[1,4,0,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[1,3,0,2],[0,3,2,0]],[[1,1,1,1],[2,3,3,1],[1,3,0,2],[0,2,3,0]],[[2,1,1,1],[2,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,1,1,1],[3,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,1,1,1],[2,4,3,1],[1,3,0,2],[1,0,2,1]],[[1,1,1,1],[2,3,4,1],[1,3,0,2],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[1,4,0,2],[1,0,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,0,2],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[1,3,0,2],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[1,3,0,2],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[1,3,0,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[1,4,0,2],[1,1,1,1]],[[2,1,1,1],[2,3,3,1],[1,3,0,2],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,0,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,0,2],[1,1,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,0,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[1,4,0,2],[1,1,2,0]],[[1,2,1,0],[0,2,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,1,0],[0,2,3,1],[2,2,3,2],[0,3,2,0]],[[1,2,1,0],[0,2,3,1],[2,2,3,3],[0,2,2,0]],[[1,2,1,0],[0,2,3,1],[2,2,4,2],[0,2,2,0]],[[2,1,1,1],[2,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,1,1,1],[3,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,1,1,1],[2,4,3,1],[1,3,1,0],[0,2,2,1]],[[1,1,1,1],[2,3,4,1],[1,3,1,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[1,4,1,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[1,3,1,0],[0,3,2,1]],[[1,1,1,1],[2,3,3,1],[1,3,1,0],[0,2,3,1]],[[1,1,1,1],[2,3,3,1],[1,3,1,0],[0,2,2,2]],[[2,1,1,1],[2,3,3,1],[1,3,1,0],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[1,3,1,0],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[1,3,1,0],[1,1,2,1]],[[1,1,1,1],[2,3,4,1],[1,3,1,0],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[1,4,1,0],[1,1,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,1,1],[0,2,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,1,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[1,4,1,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[1,3,1,1],[0,3,2,0]],[[1,1,1,1],[2,3,3,1],[1,3,1,1],[0,2,3,0]],[[2,1,1,1],[2,3,3,1],[1,3,1,1],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,1,1],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,1,1],[1,1,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,1,1],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[1,4,1,1],[1,1,2,0]],[[1,2,1,0],[0,2,4,1],[2,2,3,2],[0,2,2,0]],[[1,2,1,0],[0,2,3,1],[2,2,3,2],[0,2,1,2]],[[1,2,1,0],[0,2,3,1],[2,2,3,3],[0,2,1,1]],[[1,2,1,0],[0,2,3,1],[2,2,4,2],[0,2,1,1]],[[1,2,1,0],[0,2,4,1],[2,2,3,2],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,1,1,1],[3,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,1,1,1],[2,4,3,1],[1,3,1,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,1],[1,3,1,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[1,4,1,2],[0,1,1,1]],[[2,1,1,1],[2,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,1,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,1,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[1,4,1,2],[0,1,2,0]],[[2,1,1,1],[2,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,1,1,1],[3,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,1],[1,3,1,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,1],[1,3,1,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[1,4,1,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[1,3,1,2],[0,3,0,1]],[[2,1,1,1],[2,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[1,3,1,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[1,3,1,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[1,4,1,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[1,3,1,2],[0,3,1,0]],[[1,2,1,0],[0,2,3,1],[2,2,3,1],[1,3,1,1]],[[1,2,1,0],[0,2,3,1],[2,2,3,1],[2,2,1,1]],[[1,2,1,0],[0,2,3,1],[3,2,3,1],[1,2,1,1]],[[1,2,1,0],[0,2,3,1],[2,2,3,1],[0,2,2,2]],[[1,2,1,0],[0,2,3,1],[2,2,3,1],[0,2,3,1]],[[1,2,1,0],[0,2,3,1],[2,2,3,1],[0,3,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,1,1,1],[3,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,1,1,1],[2,4,3,1],[1,3,1,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,1],[1,3,1,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[1,4,1,2],[1,0,1,1]],[[2,1,1,1],[2,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,1,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,1,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[1,4,1,2],[1,0,2,0]],[[2,1,1,1],[2,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,1,1,1],[3,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,1],[1,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,3,4,1],[1,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[1,4,1,2],[1,1,0,1]],[[2,1,1,1],[2,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[1,3,1,2],[1,1,1,0]],[[1,1,1,1],[2,3,4,1],[1,3,1,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[1,4,1,2],[1,1,1,0]],[[1,2,1,0],[0,2,3,1],[2,2,4,1],[0,2,2,1]],[[1,2,1,0],[0,2,4,1],[2,2,3,1],[0,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,2,3,0],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[2,2,3,0],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[2,2,3,0],[2,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,1,2],[1,2,0,0]],[[1,1,1,1],[3,3,3,1],[1,3,1,2],[1,2,0,0]],[[1,1,1,1],[2,4,3,1],[1,3,1,2],[1,2,0,0]],[[1,1,1,1],[2,3,4,1],[1,3,1,2],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[1,4,1,2],[1,2,0,0]],[[1,2,1,0],[0,2,3,1],[3,2,3,0],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,2,2,2],[1,2,3,0]],[[1,2,1,0],[0,2,3,1],[2,2,2,2],[1,3,2,0]],[[1,2,1,0],[0,2,3,1],[2,2,2,2],[2,2,2,0]],[[1,2,1,0],[0,2,3,1],[3,2,2,2],[1,2,2,0]],[[1,2,1,0],[0,2,3,1],[2,2,2,2],[0,2,2,2]],[[1,2,1,0],[0,2,3,1],[2,2,2,2],[0,2,3,1]],[[1,2,1,0],[0,2,3,1],[2,2,2,2],[0,3,2,1]],[[1,2,1,0],[0,2,3,1],[2,2,2,3],[0,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,2,2,1],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[2,2,2,1],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[2,2,2,1],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[2,2,2,1],[2,2,2,1]],[[1,2,1,0],[0,2,3,1],[3,2,2,1],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,2,1,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[2,2,1,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[2,2,1,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[2,2,1,2],[2,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,2,1,3],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,1,1,1],[3,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,1,1,1],[2,4,3,1],[1,3,2,0],[0,1,2,1]],[[1,1,1,1],[2,3,4,1],[1,3,2,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[1,4,2,0],[0,1,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,1,1,1],[3,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,1,1,1],[2,4,3,1],[1,3,2,0],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[1,3,2,0],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[1,4,2,0],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[1,3,2,0],[0,3,1,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,1,1,1],[3,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,1,1,1],[2,4,3,1],[1,3,2,0],[1,0,2,1]],[[1,1,1,1],[2,3,4,1],[1,3,2,0],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[1,4,2,0],[1,0,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[1,3,2,0],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[1,3,2,0],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[1,4,2,0],[1,1,1,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,0],[1,2,0,1]],[[1,1,1,1],[3,3,3,1],[1,3,2,0],[1,2,0,1]],[[1,1,1,1],[2,4,3,1],[1,3,2,0],[1,2,0,1]],[[1,1,1,1],[2,3,4,1],[1,3,2,0],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[1,4,2,0],[1,2,0,1]],[[1,2,1,0],[0,2,3,1],[3,2,1,2],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,1,1,1],[3,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,1,1,1],[2,4,3,1],[1,3,2,1],[0,1,1,1]],[[1,1,1,1],[2,3,4,1],[1,3,2,1],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[1,4,2,1],[0,1,1,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,2,1],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,2,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[1,4,2,1],[0,1,2,0]],[[2,1,1,1],[2,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,1,1,1],[3,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,1,1,1],[2,4,3,1],[1,3,2,1],[0,2,0,1]],[[1,1,1,1],[2,3,4,1],[1,3,2,1],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[1,4,2,1],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[1,3,2,1],[0,3,0,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[1,3,2,1],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[1,3,2,1],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[1,4,2,1],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[1,3,2,1],[0,3,1,0]],[[1,2,1,0],[0,2,3,1],[2,1,3,2],[1,2,3,0]],[[1,2,1,0],[0,2,3,1],[2,1,3,2],[1,3,2,0]],[[1,2,1,0],[0,2,3,1],[2,1,3,2],[2,2,2,0]],[[1,2,1,0],[0,2,3,1],[2,1,3,3],[1,2,2,0]],[[1,2,1,0],[0,2,3,1],[2,1,4,2],[1,2,2,0]],[[1,2,1,0],[0,2,3,1],[3,1,3,2],[1,2,2,0]],[[1,2,1,0],[0,2,4,1],[2,1,3,2],[1,2,2,0]],[[1,2,1,0],[0,2,3,1],[2,1,3,2],[1,2,1,2]],[[2,1,1,1],[2,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,1,1,1],[3,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,1,1,1],[2,4,3,1],[1,3,2,1],[1,0,1,1]],[[1,1,1,1],[2,3,4,1],[1,3,2,1],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[1,4,2,1],[1,0,1,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,2,1],[1,0,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,2,1],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[1,4,2,1],[1,0,2,0]],[[2,1,1,1],[2,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,1,1,1],[3,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,1,1,1],[2,4,3,1],[1,3,2,1],[1,1,0,1]],[[1,1,1,1],[2,3,4,1],[1,3,2,1],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[1,4,2,1],[1,1,0,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[1,3,2,1],[1,1,1,0]],[[1,1,1,1],[2,3,4,1],[1,3,2,1],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[1,4,2,1],[1,1,1,0]],[[1,2,1,0],[0,2,3,1],[2,1,3,3],[1,2,1,1]],[[1,2,1,0],[0,2,3,1],[2,1,4,2],[1,2,1,1]],[[1,2,1,0],[0,2,4,1],[2,1,3,2],[1,2,1,1]],[[1,2,1,0],[0,2,3,1],[2,1,3,2],[0,2,2,2]],[[1,2,1,0],[0,2,3,1],[2,1,3,2],[0,2,3,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,1],[1,2,0,0]],[[1,1,1,1],[3,3,3,1],[1,3,2,1],[1,2,0,0]],[[1,1,1,1],[2,4,3,1],[1,3,2,1],[1,2,0,0]],[[1,1,1,1],[2,3,4,1],[1,3,2,1],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[1,4,2,1],[1,2,0,0]],[[1,2,1,0],[0,2,3,1],[2,1,3,3],[0,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,1,3,1],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[2,1,3,1],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[2,1,3,1],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[2,1,3,1],[2,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,1,4,1],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[3,1,3,1],[1,2,2,1]],[[1,2,1,0],[0,2,4,1],[2,1,3,1],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,1,2,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[2,1,2,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[2,1,2,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[2,1,2,2],[2,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,1,2,3],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[3,1,2,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[2,0,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[2,0,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[2,0,3,3],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,1,1,1],[3,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,1,1,1],[2,4,3,1],[1,3,2,2],[0,0,1,1]],[[1,1,1,1],[2,3,4,1],[1,3,2,2],[0,0,1,1]],[[2,1,1,1],[2,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,2,2],[0,0,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,2,2],[0,0,2,0]],[[1,2,1,0],[0,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[0,2,3,1],[1,3,3,2],[2,2,1,0]],[[1,2,1,0],[0,2,3,1],[1,3,3,3],[1,2,1,0]],[[1,2,1,0],[0,2,3,1],[1,3,4,2],[1,2,1,0]],[[1,2,1,0],[0,2,3,1],[1,4,3,2],[1,2,1,0]],[[1,2,1,0],[0,2,4,1],[1,3,3,2],[1,2,1,0]],[[1,2,1,0],[0,2,3,1],[1,3,3,2],[1,2,0,2]],[[1,2,1,0],[0,2,3,1],[1,3,3,2],[1,3,0,1]],[[1,2,1,0],[0,2,3,1],[1,3,3,2],[2,2,0,1]],[[1,2,1,0],[0,2,3,1],[1,3,3,3],[1,2,0,1]],[[1,2,1,0],[0,2,3,1],[1,3,4,2],[1,2,0,1]],[[1,2,1,0],[0,2,3,1],[1,4,3,2],[1,2,0,1]],[[1,2,1,0],[0,2,4,1],[1,3,3,2],[1,2,0,1]],[[1,2,1,0],[0,2,3,1],[1,3,3,2],[1,1,3,0]],[[1,2,1,0],[0,2,3,1],[1,3,3,3],[1,1,2,0]],[[1,2,1,0],[0,2,3,1],[1,3,4,2],[1,1,2,0]],[[1,2,1,0],[0,2,3,1],[1,4,3,2],[1,1,2,0]],[[1,2,1,0],[0,2,4,1],[1,3,3,2],[1,1,2,0]],[[1,2,1,0],[0,2,3,1],[1,3,3,2],[1,1,1,2]],[[1,2,1,0],[0,2,3,1],[1,3,3,3],[1,1,1,1]],[[1,2,1,0],[0,2,3,1],[1,3,4,2],[1,1,1,1]],[[1,2,1,0],[0,2,3,1],[1,4,3,2],[1,1,1,1]],[[1,2,1,0],[0,2,4,1],[1,3,3,2],[1,1,1,1]],[[1,2,1,0],[0,2,3,1],[1,3,3,2],[1,0,2,2]],[[1,2,1,0],[0,2,3,1],[1,3,3,3],[1,0,2,1]],[[1,2,1,0],[0,2,3,1],[1,3,4,2],[1,0,2,1]],[[1,2,1,0],[0,2,4,1],[1,3,3,2],[1,0,2,1]],[[1,2,1,0],[0,2,3,1],[1,3,3,1],[1,3,1,1]],[[1,2,1,0],[0,2,3,1],[1,3,3,1],[2,2,1,1]],[[1,2,1,0],[0,2,3,1],[1,3,4,1],[1,2,1,1]],[[1,2,1,0],[0,2,3,1],[1,4,3,1],[1,2,1,1]],[[1,2,1,0],[0,2,4,1],[1,3,3,1],[1,2,1,1]],[[1,2,1,0],[0,2,3,1],[1,3,3,1],[1,1,2,2]],[[1,2,1,0],[0,2,3,1],[1,3,3,1],[1,1,3,1]],[[1,2,1,0],[0,2,3,1],[1,3,4,1],[1,1,2,1]],[[1,2,1,0],[0,2,3,1],[1,4,3,1],[1,1,2,1]],[[1,2,1,0],[0,2,4,1],[1,3,3,1],[1,1,2,1]],[[1,2,1,0],[0,2,3,1],[1,3,3,0],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[1,3,3,0],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[1,3,3,0],[2,2,2,1]],[[1,2,1,0],[0,2,3,1],[1,4,3,0],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[1,3,2,2],[1,2,3,0]],[[1,2,1,0],[0,2,3,1],[1,3,2,2],[1,3,2,0]],[[1,2,1,0],[0,2,3,1],[1,3,2,2],[2,2,2,0]],[[1,2,1,0],[0,2,3,1],[1,4,2,2],[1,2,2,0]],[[1,2,1,0],[0,2,3,1],[1,3,2,2],[1,1,2,2]],[[1,2,1,0],[0,2,3,1],[1,3,2,2],[1,1,3,1]],[[1,2,1,0],[0,2,3,1],[1,3,2,3],[1,1,2,1]],[[1,2,1,0],[0,2,3,1],[1,3,2,1],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[1,3,2,1],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[1,3,2,1],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[1,3,2,1],[2,2,2,1]],[[1,2,1,0],[0,2,3,1],[1,4,2,1],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[1,3,1,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[1,3,1,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[1,3,1,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[1,3,1,2],[2,2,2,1]],[[1,2,1,0],[0,2,3,1],[1,3,1,3],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[1,4,1,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[1,2,3,2],[1,2,3,0]],[[1,2,1,0],[0,2,3,1],[1,2,3,2],[1,3,2,0]],[[1,2,1,0],[0,2,3,1],[1,2,3,2],[2,2,2,0]],[[2,1,1,1],[2,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,1,1,1],[3,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,1,1,1],[2,4,3,1],[1,3,3,0],[0,0,2,1]],[[1,1,1,1],[2,3,4,1],[1,3,3,0],[0,0,2,1]],[[1,1,1,1],[2,3,3,1],[1,3,4,0],[0,0,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,3,0],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,3,0],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[1,4,3,0],[0,1,2,0]],[[2,1,1,1],[2,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[1,3,3,0],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[1,3,3,0],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[1,4,3,0],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[1,3,3,0],[0,3,1,0]],[[1,2,1,0],[0,2,3,1],[1,2,3,3],[1,2,2,0]],[[1,2,1,0],[0,2,3,1],[1,2,4,2],[1,2,2,0]],[[1,2,1,0],[0,2,4,1],[1,2,3,2],[1,2,2,0]],[[1,2,1,0],[0,2,3,1],[1,2,3,2],[1,2,1,2]],[[1,2,1,0],[0,2,3,1],[1,2,3,3],[1,2,1,1]],[[1,2,1,0],[0,2,3,1],[1,2,4,2],[1,2,1,1]],[[1,2,1,0],[0,2,4,1],[1,2,3,2],[1,2,1,1]],[[1,2,1,0],[0,2,3,1],[1,2,3,1],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[1,2,3,1],[1,2,3,1]],[[2,1,1,1],[2,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,3,0],[1,0,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,3,0],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[1,4,3,0],[1,0,2,0]],[[2,1,1,1],[2,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[1,3,3,0],[1,1,1,0]],[[1,1,1,1],[2,3,4,1],[1,3,3,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[1,4,3,0],[1,1,1,0]],[[1,2,1,0],[0,2,3,1],[1,2,3,1],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[1,2,3,1],[2,2,2,1]],[[1,2,1,0],[0,2,3,1],[1,2,4,1],[1,2,2,1]],[[1,2,1,0],[0,2,4,1],[1,2,3,1],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[1,2,2,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[1,2,2,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[1,2,2,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[1,2,2,2],[2,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,3,0],[1,2,0,0]],[[1,1,1,1],[3,3,3,1],[1,3,3,0],[1,2,0,0]],[[1,1,1,1],[2,4,3,1],[1,3,3,0],[1,2,0,0]],[[1,1,1,1],[2,3,4,1],[1,3,3,0],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[1,4,3,0],[1,2,0,0]],[[1,2,1,0],[0,2,3,1],[1,2,2,3],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[1,1,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[1,1,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[1,1,3,3],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[0,3,3,2],[1,2,3,0]],[[1,2,1,0],[0,2,3,1],[0,3,3,2],[1,3,2,0]],[[1,2,1,0],[0,2,3,1],[0,3,3,3],[1,2,2,0]],[[1,2,1,0],[0,2,3,1],[0,3,4,2],[1,2,2,0]],[[1,2,1,0],[0,2,4,1],[0,3,3,2],[1,2,2,0]],[[1,2,1,0],[0,2,3,1],[0,3,3,2],[1,2,1,2]],[[1,2,1,0],[0,2,3,1],[0,3,3,3],[1,2,1,1]],[[1,2,1,0],[0,2,3,1],[0,3,4,2],[1,2,1,1]],[[1,2,1,0],[0,2,4,1],[0,3,3,2],[1,2,1,1]],[[1,2,1,0],[0,2,3,1],[0,3,3,1],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[0,3,3,1],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[0,3,3,1],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[0,3,4,1],[1,2,2,1]],[[1,2,1,0],[0,2,4,1],[0,3,3,1],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[0,3,2,2],[1,2,2,2]],[[2,1,1,1],[2,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,1,1,1],[3,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,1,1,1],[2,4,3,1],[1,3,3,1],[0,0,1,1]],[[1,1,1,1],[2,3,4,1],[1,3,3,1],[0,0,1,1]],[[1,1,1,1],[2,3,3,1],[1,3,4,1],[0,0,1,1]],[[2,1,1,1],[2,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,1,1,1],[3,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,1,1,1],[2,4,3,1],[1,3,3,1],[0,0,2,0]],[[1,1,1,1],[2,3,4,1],[1,3,3,1],[0,0,2,0]],[[1,1,1,1],[2,3,3,1],[1,3,4,1],[0,0,2,0]],[[1,2,1,0],[0,2,3,1],[0,3,2,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[0,3,2,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,1],[0,3,2,3],[1,2,2,1]],[[1,2,1,0],[0,2,3,1],[0,2,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,1],[0,2,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,1],[0,2,3,3],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,1,1,1],[3,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,1,1,1],[2,4,3,1],[1,3,3,1],[0,2,0,0]],[[1,1,1,1],[2,3,4,1],[1,3,3,1],[0,2,0,0]],[[1,1,1,1],[2,3,3,1],[1,4,3,1],[0,2,0,0]],[[1,2,1,0],[0,2,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,1,0],[0,2,3,0],[2,3,4,2],[1,1,1,1]],[[1,2,1,0],[0,2,3,0],[2,4,3,2],[1,1,1,1]],[[1,2,1,0],[0,2,3,0],[3,3,3,2],[1,1,1,1]],[[1,2,1,0],[0,2,3,0],[2,3,3,2],[1,0,2,2]],[[1,2,1,0],[0,2,3,0],[2,3,3,2],[1,0,3,1]],[[1,2,1,0],[0,2,3,0],[2,3,3,2],[2,0,2,1]],[[1,2,1,0],[0,2,3,0],[2,3,4,2],[1,0,2,1]],[[1,2,1,0],[0,2,3,0],[2,4,3,2],[1,0,2,1]],[[1,2,1,0],[0,2,3,0],[3,3,3,2],[1,0,2,1]],[[1,2,1,0],[0,2,3,0],[2,3,3,2],[0,3,1,1]],[[1,2,1,0],[0,2,3,0],[2,3,4,2],[0,2,1,1]],[[1,2,1,0],[0,2,3,0],[2,4,3,2],[0,2,1,1]],[[1,2,1,0],[0,2,3,0],[3,3,3,2],[0,2,1,1]],[[1,2,1,0],[0,2,3,0],[2,3,3,2],[0,1,2,2]],[[1,2,1,0],[0,2,3,0],[2,3,3,2],[0,1,3,1]],[[1,2,1,0],[0,2,3,0],[2,3,4,2],[0,1,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,1,1,1],[3,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,1,1,1],[2,4,3,1],[1,3,3,1],[1,1,0,0]],[[1,1,1,1],[2,3,4,1],[1,3,3,1],[1,1,0,0]],[[1,1,1,1],[2,3,3,1],[1,4,3,1],[1,1,0,0]],[[1,2,1,0],[0,2,3,0],[2,4,3,2],[0,1,2,1]],[[1,2,1,0],[0,2,3,0],[3,3,3,2],[0,1,2,1]],[[1,2,1,0],[0,2,3,0],[2,3,2,2],[2,1,2,1]],[[1,2,1,0],[0,2,3,0],[2,4,2,2],[1,1,2,1]],[[1,2,1,0],[0,2,3,0],[3,3,2,2],[1,1,2,1]],[[1,2,1,0],[0,2,3,0],[2,3,2,2],[0,2,2,2]],[[1,2,1,0],[0,2,3,0],[2,3,2,2],[0,2,3,1]],[[1,2,1,0],[0,2,3,0],[2,3,2,2],[0,3,2,1]],[[1,2,1,0],[0,2,3,0],[2,4,2,2],[0,2,2,1]],[[1,2,1,0],[0,2,3,0],[3,3,2,2],[0,2,2,1]],[[1,2,1,0],[0,2,3,0],[2,2,3,2],[1,3,1,1]],[[1,2,1,0],[0,2,3,0],[2,2,3,2],[2,2,1,1]],[[1,2,1,0],[0,2,3,0],[3,2,3,2],[1,2,1,1]],[[1,2,1,0],[0,2,3,0],[2,2,3,2],[0,2,2,2]],[[1,2,1,0],[0,2,3,0],[2,2,3,2],[0,2,3,1]],[[1,2,1,0],[0,2,3,0],[2,2,3,2],[0,3,2,1]],[[1,2,1,0],[0,2,3,0],[2,2,4,2],[0,2,2,1]],[[1,2,1,0],[0,2,3,0],[2,2,2,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,0],[2,2,2,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,0],[2,2,2,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,0],[2,2,2,2],[2,2,2,1]],[[1,2,1,0],[0,2,3,0],[3,2,2,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,0],[2,1,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,0],[2,1,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,0],[2,1,3,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,0],[2,1,3,2],[2,2,2,1]],[[1,2,1,0],[0,2,3,0],[2,1,4,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,0],[3,1,3,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,0],[1,3,3,2],[1,3,1,1]],[[1,2,1,0],[0,2,3,0],[1,3,3,2],[2,2,1,1]],[[1,2,1,0],[0,2,3,0],[1,3,4,2],[1,2,1,1]],[[1,2,1,0],[0,2,3,0],[1,4,3,2],[1,2,1,1]],[[1,2,1,0],[0,2,3,0],[1,3,3,2],[1,1,2,2]],[[1,2,1,0],[0,2,3,0],[1,3,3,2],[1,1,3,1]],[[1,2,1,0],[0,2,3,0],[1,3,4,2],[1,1,2,1]],[[1,2,1,0],[0,2,3,0],[1,4,3,2],[1,1,2,1]],[[1,2,1,0],[0,2,3,0],[1,3,2,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,0],[1,3,2,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,0],[1,3,2,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,0],[1,3,2,2],[2,2,2,1]],[[1,2,1,0],[0,2,3,0],[1,4,2,2],[1,2,2,1]],[[1,2,1,0],[0,2,3,0],[1,2,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,0],[1,2,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,0],[1,2,3,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,0],[1,2,3,2],[2,2,2,1]],[[1,2,1,0],[0,2,3,0],[1,2,4,2],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,1,1,1],[3,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,1,1,1],[2,4,3,1],[1,3,3,2],[0,0,0,1]],[[1,1,1,1],[2,3,4,1],[1,3,3,2],[0,0,0,1]],[[1,2,1,0],[0,2,3,0],[0,3,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,3,0],[0,3,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,3,0],[0,3,3,2],[1,3,2,1]],[[1,2,1,0],[0,2,3,0],[0,3,4,2],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,1,0],[0,2,2,2],[2,4,3,2],[1,2,0,0]],[[1,2,1,0],[0,2,2,2],[3,3,3,2],[1,2,0,0]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,1,0],[0,2,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,1,0],[0,2,2,2],[2,3,4,2],[1,1,1,0]],[[1,2,1,0],[0,2,2,2],[2,4,3,2],[1,1,1,0]],[[1,2,1,0],[0,2,2,2],[3,3,3,2],[1,1,1,0]],[[1,2,1,0],[0,2,2,3],[2,3,3,2],[1,1,1,0]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[1,1,0,2]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[2,1,0,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,3],[1,1,0,1]],[[1,2,1,0],[0,2,2,2],[2,3,4,2],[1,1,0,1]],[[1,2,1,0],[0,2,2,2],[2,4,3,2],[1,1,0,1]],[[1,2,1,0],[0,2,2,2],[3,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,2,2,3],[2,3,3,2],[1,1,0,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[1,0,3,0]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[2,0,2,0]],[[1,2,1,0],[0,2,2,2],[2,3,3,3],[1,0,2,0]],[[1,2,1,0],[0,2,2,2],[2,3,4,2],[1,0,2,0]],[[1,2,1,0],[0,2,2,2],[2,4,3,2],[1,0,2,0]],[[1,2,1,0],[0,2,2,2],[3,3,3,2],[1,0,2,0]],[[1,2,1,0],[0,2,2,3],[2,3,3,2],[1,0,2,0]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[1,0,1,2]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[2,0,1,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,3],[1,0,1,1]],[[1,2,1,0],[0,2,2,2],[2,3,4,2],[1,0,1,1]],[[1,2,1,0],[0,2,2,2],[2,4,3,2],[1,0,1,1]],[[1,2,1,0],[0,2,2,2],[3,3,3,2],[1,0,1,1]],[[1,2,1,0],[0,2,2,3],[2,3,3,2],[1,0,1,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,1,0],[0,2,2,2],[2,3,3,3],[0,2,1,0]],[[1,2,1,0],[0,2,2,2],[2,3,4,2],[0,2,1,0]],[[1,2,1,0],[0,2,2,2],[2,4,3,2],[0,2,1,0]],[[1,2,1,0],[0,2,2,2],[3,3,3,2],[0,2,1,0]],[[1,2,1,0],[0,2,2,3],[2,3,3,2],[0,2,1,0]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[0,2,0,2]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[0,3,0,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,3],[0,2,0,1]],[[1,2,1,0],[0,2,2,2],[2,3,4,2],[0,2,0,1]],[[1,2,1,0],[0,2,2,2],[2,4,3,2],[0,2,0,1]],[[1,2,1,0],[0,2,2,2],[3,3,3,2],[0,2,0,1]],[[1,2,1,0],[0,2,2,3],[2,3,3,2],[0,2,0,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[0,1,3,0]],[[1,2,1,0],[0,2,2,2],[2,3,3,3],[0,1,2,0]],[[1,2,1,0],[0,2,2,2],[2,3,4,2],[0,1,2,0]],[[1,2,1,0],[0,2,2,2],[2,4,3,2],[0,1,2,0]],[[1,2,1,0],[0,2,2,2],[3,3,3,2],[0,1,2,0]],[[1,2,1,0],[0,2,2,3],[2,3,3,2],[0,1,2,0]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[0,1,1,2]],[[1,2,1,0],[0,2,2,2],[2,3,3,3],[0,1,1,1]],[[1,2,1,0],[0,2,2,2],[2,3,4,2],[0,1,1,1]],[[1,2,1,0],[0,2,2,2],[2,4,3,2],[0,1,1,1]],[[1,2,1,0],[0,2,2,2],[3,3,3,2],[0,1,1,1]],[[1,2,1,0],[0,2,2,3],[2,3,3,2],[0,1,1,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,2],[0,0,2,2]],[[1,2,1,0],[0,2,2,2],[2,3,3,3],[0,0,2,1]],[[1,2,1,0],[0,2,2,2],[2,3,4,2],[0,0,2,1]],[[1,2,1,0],[0,2,2,3],[2,3,3,2],[0,0,2,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,1,0],[0,2,2,2],[2,3,4,1],[1,1,1,1]],[[1,2,1,0],[0,2,2,2],[2,4,3,1],[1,1,1,1]],[[1,2,1,0],[0,2,2,2],[3,3,3,1],[1,1,1,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,1],[1,0,2,2]],[[1,2,1,0],[0,2,2,2],[2,3,3,1],[1,0,3,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,1],[2,0,2,1]],[[1,2,1,0],[0,2,2,2],[2,3,4,1],[1,0,2,1]],[[1,2,1,0],[0,2,2,2],[2,4,3,1],[1,0,2,1]],[[1,2,1,0],[0,2,2,2],[3,3,3,1],[1,0,2,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,1],[0,3,1,1]],[[1,2,1,0],[0,2,2,2],[2,3,4,1],[0,2,1,1]],[[1,2,1,0],[0,2,2,2],[2,4,3,1],[0,2,1,1]],[[1,2,1,0],[0,2,2,2],[3,3,3,1],[0,2,1,1]],[[1,2,1,0],[0,2,2,2],[2,3,3,1],[0,1,2,2]],[[1,2,1,0],[0,2,2,2],[2,3,3,1],[0,1,3,1]],[[1,2,1,0],[0,2,2,2],[2,3,4,1],[0,1,2,1]],[[1,2,1,0],[0,2,2,2],[2,4,3,1],[0,1,2,1]],[[1,2,1,0],[0,2,2,2],[3,3,3,1],[0,1,2,1]],[[1,2,1,0],[0,2,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,1,0],[0,2,2,2],[2,4,2,2],[1,1,2,0]],[[1,2,1,0],[0,2,2,2],[3,3,2,2],[1,1,2,0]],[[1,2,1,0],[0,2,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,1,0],[0,2,2,2],[2,3,2,2],[1,0,3,1]],[[1,2,1,0],[0,2,2,2],[2,3,2,3],[1,0,2,1]],[[1,2,1,0],[0,2,2,3],[2,3,2,2],[1,0,2,1]],[[1,2,1,0],[0,2,2,2],[2,3,2,2],[0,2,3,0]],[[1,2,1,0],[0,2,2,2],[2,3,2,2],[0,3,2,0]],[[1,2,1,0],[0,2,2,2],[2,4,2,2],[0,2,2,0]],[[1,2,1,0],[0,2,2,2],[3,3,2,2],[0,2,2,0]],[[1,2,1,0],[0,2,2,2],[2,3,2,2],[0,1,2,2]],[[1,2,1,0],[0,2,2,2],[2,3,2,2],[0,1,3,1]],[[1,2,1,0],[0,2,2,2],[2,3,2,3],[0,1,2,1]],[[1,2,1,0],[0,2,2,3],[2,3,2,2],[0,1,2,1]],[[2,1,1,1],[2,3,3,1],[2,0,1,1],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[2,0,1,1],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[2,0,1,1],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[2,0,1,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[3,0,1,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,1,1],[2,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,1,1],[1,3,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,1,1],[1,2,3,1]],[[1,1,1,1],[2,3,3,1],[2,0,1,1],[1,2,2,2]],[[2,1,1,1],[2,3,3,1],[2,0,1,2],[0,2,2,1]],[[1,1,1,1],[3,3,3,1],[2,0,1,2],[0,2,2,1]],[[1,1,1,1],[2,4,3,1],[2,0,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,4,1],[2,0,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[3,0,1,2],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,0,1,2],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[2,0,1,2],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[2,0,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,4,1],[2,0,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[3,0,1,2],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,1,2],[2,1,2,1]],[[2,1,1,1],[2,3,3,1],[2,0,1,2],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[2,0,1,2],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[2,0,1,2],[1,2,1,1]],[[1,1,1,1],[2,3,4,1],[2,0,1,2],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[3,0,1,2],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,0,1,2],[2,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,0,1,2],[1,3,1,1]],[[2,1,1,1],[2,3,3,1],[2,0,1,2],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[2,0,1,2],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[2,0,1,2],[1,2,2,0]],[[1,1,1,1],[2,3,4,1],[2,0,1,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[3,0,1,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,1,2],[2,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,1,2],[1,3,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,1,2],[1,2,3,0]],[[2,1,1,1],[2,3,3,1],[2,0,2,0],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[2,0,2,0],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[2,0,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[2,0,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[3,0,2,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,2,0],[2,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,2,0],[1,3,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,2,0],[1,2,3,1]],[[1,1,1,1],[2,3,3,1],[2,0,2,0],[1,2,2,2]],[[2,1,1,1],[2,3,3,1],[2,0,2,1],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[2,0,2,1],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[2,0,2,1],[1,2,2,0]],[[1,1,1,1],[2,3,4,1],[2,0,2,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[3,0,2,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,2,1],[2,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,2,1],[1,3,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,2,1],[1,2,3,0]],[[2,1,1,1],[2,3,3,1],[2,0,2,2],[0,2,1,1]],[[1,1,1,1],[3,3,3,1],[2,0,2,2],[0,2,1,1]],[[1,1,1,1],[2,4,3,1],[2,0,2,2],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[2,0,2,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[3,0,2,2],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[2,0,2,2],[0,2,2,0]],[[1,1,1,1],[3,3,3,1],[2,0,2,2],[0,2,2,0]],[[1,1,1,1],[2,4,3,1],[2,0,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,1],[2,0,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[3,0,2,2],[0,2,2,0]],[[2,1,1,1],[2,3,3,1],[2,0,2,2],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[2,0,2,2],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[2,0,2,2],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[2,0,2,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[3,0,2,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[2,0,2,2],[2,1,1,1]],[[2,1,1,1],[2,3,3,1],[2,0,2,2],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[2,0,2,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[2,0,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,4,1],[2,0,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[3,0,2,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,2,2],[2,1,2,0]],[[2,1,1,1],[2,3,3,1],[2,0,2,2],[1,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,0,2,2],[1,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,0,2,2],[1,2,0,1]],[[1,1,1,1],[2,3,4,1],[2,0,2,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,0,2,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,0,2,2],[2,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,0,2,2],[1,3,0,1]],[[2,1,1,1],[2,3,3,1],[2,0,2,2],[1,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,0,2,2],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,0,2,2],[1,2,1,0]],[[1,1,1,1],[2,3,4,1],[2,0,2,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,0,2,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,0,2,2],[2,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,0,2,2],[1,3,1,0]],[[1,2,1,0],[0,2,2,2],[2,3,2,1],[2,1,2,1]],[[1,2,1,0],[0,2,2,2],[2,4,2,1],[1,1,2,1]],[[1,2,1,0],[0,2,2,2],[3,3,2,1],[1,1,2,1]],[[1,2,1,0],[0,2,2,2],[2,3,2,1],[0,2,2,2]],[[1,2,1,0],[0,2,2,2],[2,3,2,1],[0,2,3,1]],[[1,2,1,0],[0,2,2,2],[2,3,2,1],[0,3,2,1]],[[1,2,1,0],[0,2,2,2],[2,4,2,1],[0,2,2,1]],[[1,2,1,0],[0,2,2,2],[3,3,2,1],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,0,3,0],[0,2,2,1]],[[1,1,1,1],[3,3,3,1],[2,0,3,0],[0,2,2,1]],[[1,1,1,1],[2,4,3,1],[2,0,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,4,1],[2,0,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[3,0,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,4,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,3,0],[0,3,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,3,0],[0,2,3,1]],[[1,1,1,1],[2,3,3,1],[2,0,3,0],[0,2,2,2]],[[2,1,1,1],[2,3,3,1],[2,0,3,0],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[2,0,3,0],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[2,0,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,4,1],[2,0,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[3,0,3,0],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,4,0],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,3,0],[2,1,2,1]],[[1,1,1,1],[2,3,3,1],[2,0,3,0],[1,1,3,1]],[[1,1,1,1],[2,3,3,1],[2,0,3,0],[1,1,2,2]],[[2,1,1,1],[2,3,3,1],[2,0,3,0],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[2,0,3,0],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[2,0,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,4,1],[2,0,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[3,0,3,0],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,0,4,0],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,0,3,0],[2,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,0,3,0],[1,3,1,1]],[[2,1,1,1],[2,3,3,1],[2,0,3,1],[0,2,1,1]],[[1,1,1,1],[3,3,3,1],[2,0,3,1],[0,2,1,1]],[[1,1,1,1],[2,4,3,1],[2,0,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[2,0,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[3,0,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,0,4,1],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[2,0,3,1],[0,2,2,0]],[[1,1,1,1],[3,3,3,1],[2,0,3,1],[0,2,2,0]],[[1,1,1,1],[2,4,3,1],[2,0,3,1],[0,2,2,0]],[[1,1,1,1],[2,3,4,1],[2,0,3,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[3,0,3,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,4,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,3,1],[0,3,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,3,1],[0,2,3,0]],[[2,1,1,1],[2,3,3,1],[2,0,3,1],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[2,0,3,1],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[2,0,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[2,0,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[3,0,3,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[2,0,4,1],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[2,0,3,1],[2,1,1,1]],[[2,1,1,1],[2,3,3,1],[2,0,3,1],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[2,0,3,1],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[2,0,3,1],[1,1,2,0]],[[1,1,1,1],[2,3,4,1],[2,0,3,1],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[3,0,3,1],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,4,1],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,3,1],[2,1,2,0]],[[1,1,1,1],[2,3,3,1],[2,0,3,1],[1,1,3,0]],[[2,1,1,1],[2,3,3,1],[2,0,3,1],[1,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,0,3,1],[1,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,0,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,4,1],[2,0,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,0,3,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,0,4,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,0,3,1],[2,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,0,3,1],[1,3,0,1]],[[2,1,1,1],[2,3,3,1],[2,0,3,1],[1,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,0,3,1],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,0,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,4,1],[2,0,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,0,3,1],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,0,4,1],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,0,3,1],[2,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,0,3,1],[1,3,1,0]],[[1,2,1,0],[0,2,2,2],[2,3,1,2],[2,1,2,1]],[[1,2,1,0],[0,2,2,2],[2,4,1,2],[1,1,2,1]],[[1,2,1,0],[0,2,2,2],[3,3,1,2],[1,1,2,1]],[[1,2,1,0],[0,2,2,2],[2,3,1,2],[0,2,2,2]],[[1,2,1,0],[0,2,2,2],[2,3,1,2],[0,2,3,1]],[[1,2,1,0],[0,2,2,2],[2,3,1,2],[0,3,2,1]],[[1,2,1,0],[0,2,2,2],[2,3,1,3],[0,2,2,1]],[[1,2,1,0],[0,2,2,2],[2,4,1,2],[0,2,2,1]],[[1,2,1,0],[0,2,2,2],[3,3,1,2],[0,2,2,1]],[[1,2,1,0],[0,2,2,3],[2,3,1,2],[0,2,2,1]],[[1,2,1,0],[0,2,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,1,0],[0,2,2,2],[2,2,3,2],[2,2,1,0]],[[1,2,1,0],[0,2,2,2],[3,2,3,2],[1,2,1,0]],[[1,2,1,0],[0,2,2,2],[2,2,3,2],[1,3,0,1]],[[1,2,1,0],[0,2,2,2],[2,2,3,2],[2,2,0,1]],[[1,2,1,0],[0,2,2,2],[3,2,3,2],[1,2,0,1]],[[1,2,1,0],[0,2,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,1,0],[0,2,2,2],[2,2,3,2],[0,3,2,0]],[[1,2,1,0],[0,2,2,2],[2,2,3,3],[0,2,2,0]],[[1,2,1,0],[0,2,2,2],[2,2,4,2],[0,2,2,0]],[[1,2,1,0],[0,2,2,3],[2,2,3,2],[0,2,2,0]],[[1,2,1,0],[0,2,2,2],[2,2,3,2],[0,2,1,2]],[[1,2,1,0],[0,2,2,2],[2,2,3,3],[0,2,1,1]],[[1,2,1,0],[0,2,2,2],[2,2,4,2],[0,2,1,1]],[[1,2,1,0],[0,2,2,3],[2,2,3,2],[0,2,1,1]],[[1,2,1,0],[0,2,2,2],[2,2,3,1],[1,3,1,1]],[[1,2,1,0],[0,2,2,2],[2,2,3,1],[2,2,1,1]],[[1,2,1,0],[0,2,2,2],[3,2,3,1],[1,2,1,1]],[[1,2,1,0],[0,2,2,2],[2,2,3,1],[0,2,2,2]],[[2,1,1,1],[2,3,3,1],[2,1,0,1],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[2,1,0,1],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[2,1,0,1],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[2,1,0,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[3,1,0,1],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,0,1],[2,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,0,1],[1,3,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,0,1],[1,2,3,1]],[[1,1,1,1],[2,3,3,1],[2,1,0,1],[1,2,2,2]],[[2,1,1,1],[2,3,3,1],[2,1,0,2],[0,2,2,1]],[[1,1,1,1],[3,3,3,1],[2,1,0,2],[0,2,2,1]],[[1,1,1,1],[2,4,3,1],[2,1,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,4,1],[2,1,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[3,1,0,2],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,0,2],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[2,1,0,2],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[2,1,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,4,1],[2,1,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[3,1,0,2],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,0,2],[2,1,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,0,2],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[2,1,0,2],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[2,1,0,2],[1,2,1,1]],[[1,1,1,1],[2,3,4,1],[2,1,0,2],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[3,1,0,2],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,1,0,2],[2,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,1,0,2],[1,3,1,1]],[[2,1,1,1],[2,3,3,1],[2,1,0,2],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[2,1,0,2],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[2,1,0,2],[1,2,2,0]],[[1,1,1,1],[2,3,4,1],[2,1,0,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[3,1,0,2],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,0,2],[2,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,0,2],[1,3,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,0,2],[1,2,3,0]],[[2,1,1,1],[2,3,3,1],[2,1,1,0],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[2,1,1,0],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[2,1,1,0],[1,2,2,1]],[[1,1,1,1],[2,3,4,1],[2,1,1,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[3,1,1,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,1,0],[2,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,1,0],[1,3,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,1,0],[1,2,3,1]],[[1,1,1,1],[2,3,3,1],[2,1,1,0],[1,2,2,2]],[[2,1,1,1],[2,3,3,1],[2,1,1,1],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[2,1,1,1],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[2,1,1,1],[1,2,2,0]],[[1,1,1,1],[2,3,4,1],[2,1,1,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[3,1,1,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,1,1],[2,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,1,1],[1,3,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,1,1],[1,2,3,0]],[[2,1,1,1],[2,3,3,1],[2,1,1,2],[0,1,2,1]],[[1,1,1,1],[3,3,3,1],[2,1,1,2],[0,1,2,1]],[[1,1,1,1],[2,4,3,1],[2,1,1,2],[0,1,2,1]],[[1,1,1,1],[2,3,4,1],[2,1,1,2],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[3,1,1,2],[0,1,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,1,2],[1,0,2,1]],[[1,1,1,1],[3,3,3,1],[2,1,1,2],[1,0,2,1]],[[1,1,1,1],[2,4,3,1],[2,1,1,2],[1,0,2,1]],[[1,1,1,1],[2,3,4,1],[2,1,1,2],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[3,1,1,2],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,1,2],[2,0,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,1,2],[1,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,1,1,2],[1,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,1,1,2],[1,2,0,1]],[[1,1,1,1],[2,3,4,1],[2,1,1,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,1,1,2],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,1,1,2],[2,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,1,1,2],[1,3,0,1]],[[2,1,1,1],[2,3,3,1],[2,1,1,2],[1,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,1,1,2],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,1,1,2],[1,2,1,0]],[[1,1,1,1],[2,3,4,1],[2,1,1,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,1,1,2],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,1,1,2],[2,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,1,1,2],[1,3,1,0]],[[1,2,1,0],[0,2,2,2],[2,2,3,1],[0,2,3,1]],[[1,2,1,0],[0,2,2,2],[2,2,3,1],[0,3,2,1]],[[1,2,1,0],[0,2,2,2],[2,2,4,1],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,2,0],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[2,1,2,0],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[2,1,2,0],[1,2,1,1]],[[1,1,1,1],[2,3,4,1],[2,1,2,0],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[3,1,2,0],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,1,2,0],[2,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,1,2,0],[1,3,1,1]],[[2,1,1,1],[2,3,3,1],[2,1,2,1],[1,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,1,2,1],[1,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,1,2,1],[1,2,0,1]],[[1,1,1,1],[2,3,4,1],[2,1,2,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,1,2,1],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,1,2,1],[2,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,1,2,1],[1,3,0,1]],[[2,1,1,1],[2,3,3,1],[2,1,2,1],[1,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,1,2,1],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,1,2,1],[1,2,1,0]],[[1,1,1,1],[2,3,4,1],[2,1,2,1],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,1,2,1],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,1,2,1],[2,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,1,2,1],[1,3,1,0]],[[1,2,1,0],[0,2,2,2],[2,2,2,2],[1,2,3,0]],[[1,2,1,0],[0,2,2,2],[2,2,2,2],[1,3,2,0]],[[1,2,1,0],[0,2,2,2],[2,2,2,2],[2,2,2,0]],[[1,2,1,0],[0,2,2,2],[3,2,2,2],[1,2,2,0]],[[1,2,1,0],[0,2,2,2],[2,2,2,2],[0,2,2,2]],[[1,2,1,0],[0,2,2,2],[2,2,2,2],[0,2,3,1]],[[1,2,1,0],[0,2,2,2],[2,2,2,2],[0,3,2,1]],[[1,2,1,0],[0,2,2,2],[2,2,2,3],[0,2,2,1]],[[1,2,1,0],[0,2,2,3],[2,2,2,2],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,2,2],[0,0,2,1]],[[1,1,1,1],[3,3,3,1],[2,1,2,2],[0,0,2,1]],[[1,1,1,1],[2,4,3,1],[2,1,2,2],[0,0,2,1]],[[1,1,1,1],[2,3,4,1],[2,1,2,2],[0,0,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,2,2],[0,1,1,1]],[[1,1,1,1],[3,3,3,1],[2,1,2,2],[0,1,1,1]],[[1,1,1,1],[2,4,3,1],[2,1,2,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,1],[2,1,2,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[3,1,2,2],[0,1,1,1]],[[2,1,1,1],[2,3,3,1],[2,1,2,2],[0,1,2,0]],[[1,1,1,1],[3,3,3,1],[2,1,2,2],[0,1,2,0]],[[1,1,1,1],[2,4,3,1],[2,1,2,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[2,1,2,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[3,1,2,2],[0,1,2,0]],[[2,1,1,1],[2,3,3,1],[2,1,2,2],[0,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,1,2,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,1,2,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,1],[2,1,2,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,1,2,2],[0,2,0,1]],[[2,1,1,1],[2,3,3,1],[2,1,2,2],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,1,2,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,1,2,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[2,1,2,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,1,2,2],[0,2,1,0]],[[1,2,1,0],[0,2,2,2],[2,2,2,1],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[2,2,2,1],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[2,2,2,1],[1,3,2,1]],[[1,2,1,0],[0,2,2,2],[2,2,2,1],[2,2,2,1]],[[1,2,1,0],[0,2,2,2],[3,2,2,1],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[2,2,1,2],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[2,2,1,2],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[2,2,1,2],[1,3,2,1]],[[1,2,1,0],[0,2,2,2],[2,2,1,2],[2,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,2,2],[1,0,1,1]],[[1,1,1,1],[3,3,3,1],[2,1,2,2],[1,0,1,1]],[[1,1,1,1],[2,4,3,1],[2,1,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,1],[2,1,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[3,1,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[2,1,2,2],[2,0,1,1]],[[2,1,1,1],[2,3,3,1],[2,1,2,2],[1,0,2,0]],[[1,1,1,1],[3,3,3,1],[2,1,2,2],[1,0,2,0]],[[1,1,1,1],[2,4,3,1],[2,1,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,1],[2,1,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[3,1,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,2,2],[2,0,2,0]],[[2,1,1,1],[2,3,3,1],[2,1,2,2],[1,1,0,1]],[[1,1,1,1],[3,3,3,1],[2,1,2,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,1],[2,1,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,4,1],[2,1,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[3,1,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[2,1,2,2],[2,1,0,1]],[[2,1,1,1],[2,3,3,1],[2,1,2,2],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[2,1,2,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[2,1,2,2],[1,1,1,0]],[[1,1,1,1],[2,3,4,1],[2,1,2,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[3,1,2,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[2,1,2,2],[2,1,1,0]],[[1,2,1,0],[0,2,2,2],[2,2,1,3],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[3,2,1,2],[1,2,2,1]],[[1,2,1,0],[0,2,2,3],[2,2,1,2],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[2,1,3,2],[1,2,3,0]],[[1,2,1,0],[0,2,2,2],[2,1,3,2],[1,3,2,0]],[[1,2,1,0],[0,2,2,2],[2,1,3,2],[2,2,2,0]],[[1,2,1,0],[0,2,2,2],[2,1,3,3],[1,2,2,0]],[[1,2,1,0],[0,2,2,2],[2,1,4,2],[1,2,2,0]],[[1,2,1,0],[0,2,2,2],[3,1,3,2],[1,2,2,0]],[[1,2,1,0],[0,2,2,3],[2,1,3,2],[1,2,2,0]],[[1,2,1,0],[0,2,2,2],[2,1,3,2],[1,2,1,2]],[[1,2,1,0],[0,2,2,2],[2,1,3,3],[1,2,1,1]],[[1,2,1,0],[0,2,2,2],[2,1,4,2],[1,2,1,1]],[[1,2,1,0],[0,2,2,3],[2,1,3,2],[1,2,1,1]],[[1,2,1,0],[0,2,2,2],[2,1,3,2],[0,2,2,2]],[[1,2,1,0],[0,2,2,2],[2,1,3,2],[0,2,3,1]],[[1,2,1,0],[0,2,2,2],[2,1,3,3],[0,2,2,1]],[[1,2,1,0],[0,2,2,2],[2,1,3,1],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[2,1,3,1],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[2,1,3,1],[1,3,2,1]],[[1,2,1,0],[0,2,2,2],[2,1,3,1],[2,2,2,1]],[[1,2,1,0],[0,2,2,2],[2,1,4,1],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[3,1,3,1],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[2,1,2,2],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[2,1,2,2],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[2,1,2,2],[1,3,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,3,0],[0,1,2,1]],[[1,1,1,1],[3,3,3,1],[2,1,3,0],[0,1,2,1]],[[1,1,1,1],[2,4,3,1],[2,1,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,4,1],[2,1,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[3,1,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,4,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,3,0],[0,1,3,1]],[[1,1,1,1],[2,3,3,1],[2,1,3,0],[0,1,2,2]],[[2,1,1,1],[2,3,3,1],[2,1,3,0],[0,2,1,1]],[[1,1,1,1],[3,3,3,1],[2,1,3,0],[0,2,1,1]],[[1,1,1,1],[2,4,3,1],[2,1,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[2,1,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[3,1,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,1,4,0],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[2,1,3,0],[1,0,2,1]],[[1,1,1,1],[3,3,3,1],[2,1,3,0],[1,0,2,1]],[[1,1,1,1],[2,4,3,1],[2,1,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,4,1],[2,1,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[3,1,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,4,0],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,3,0],[2,0,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,3,0],[1,0,3,1]],[[1,1,1,1],[2,3,3,1],[2,1,3,0],[1,0,2,2]],[[2,1,1,1],[2,3,3,1],[2,1,3,0],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[2,1,3,0],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[2,1,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[2,1,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[3,1,3,0],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[2,1,4,0],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[2,1,3,0],[2,1,1,1]],[[2,1,1,1],[2,3,3,1],[2,1,3,0],[1,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,1,3,0],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,1,3,0],[1,2,1,0]],[[1,1,1,1],[2,3,4,1],[2,1,3,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,1,3,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,1,3,0],[2,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,1,3,0],[1,3,1,0]],[[1,2,1,0],[0,2,2,2],[2,1,2,2],[2,2,2,1]],[[1,2,1,0],[0,2,2,2],[2,1,2,3],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[3,1,2,2],[1,2,2,1]],[[1,2,1,0],[0,2,2,3],[2,1,2,2],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[2,0,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[2,0,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[2,0,3,3],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,3,1],[0,0,2,1]],[[1,1,1,1],[3,3,3,1],[2,1,3,1],[0,0,2,1]],[[1,1,1,1],[2,4,3,1],[2,1,3,1],[0,0,2,1]],[[1,1,1,1],[2,3,4,1],[2,1,3,1],[0,0,2,1]],[[1,1,1,1],[2,3,3,1],[2,1,4,1],[0,0,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,3,1],[0,1,1,1]],[[1,1,1,1],[3,3,3,1],[2,1,3,1],[0,1,1,1]],[[1,1,1,1],[2,4,3,1],[2,1,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,4,1],[2,1,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[3,1,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[2,1,4,1],[0,1,1,1]],[[2,1,1,1],[2,3,3,1],[2,1,3,1],[0,1,2,0]],[[1,1,1,1],[3,3,3,1],[2,1,3,1],[0,1,2,0]],[[1,1,1,1],[2,4,3,1],[2,1,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[2,1,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[3,1,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,4,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,3,1],[0,1,3,0]],[[2,1,1,1],[2,3,3,1],[2,1,3,1],[0,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,1,3,1],[0,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,1,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,4,1],[2,1,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,1,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,1,4,1],[0,2,0,1]],[[2,1,1,1],[2,3,3,1],[2,1,3,1],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,1,3,1],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,1,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[2,1,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,1,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,1,4,1],[0,2,1,0]],[[2,1,1,1],[2,3,3,1],[2,1,3,1],[1,0,1,1]],[[1,1,1,1],[3,3,3,1],[2,1,3,1],[1,0,1,1]],[[1,1,1,1],[2,4,3,1],[2,1,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,4,1],[2,1,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[3,1,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[2,1,4,1],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[2,1,3,1],[2,0,1,1]],[[2,1,1,1],[2,3,3,1],[2,1,3,1],[1,0,2,0]],[[1,1,1,1],[3,3,3,1],[2,1,3,1],[1,0,2,0]],[[1,1,1,1],[2,4,3,1],[2,1,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,4,1],[2,1,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[3,1,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,4,1],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,3,1],[2,0,2,0]],[[1,1,1,1],[2,3,3,1],[2,1,3,1],[1,0,3,0]],[[2,1,1,1],[2,3,3,1],[2,1,3,1],[1,1,0,1]],[[1,1,1,1],[3,3,3,1],[2,1,3,1],[1,1,0,1]],[[1,1,1,1],[2,4,3,1],[2,1,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,4,1],[2,1,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[3,1,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[2,1,4,1],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[2,1,3,1],[2,1,0,1]],[[2,1,1,1],[2,3,3,1],[2,1,3,1],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[2,1,3,1],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[2,1,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,4,1],[2,1,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[3,1,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[2,1,4,1],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[2,1,3,1],[2,1,1,0]],[[1,2,1,0],[0,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,1,0],[0,2,2,2],[1,3,3,2],[2,2,1,0]],[[1,2,1,0],[0,2,2,2],[1,3,3,3],[1,2,1,0]],[[1,2,1,0],[0,2,2,2],[1,3,4,2],[1,2,1,0]],[[1,2,1,0],[0,2,2,2],[1,4,3,2],[1,2,1,0]],[[1,2,1,0],[0,2,2,3],[1,3,3,2],[1,2,1,0]],[[1,2,1,0],[0,2,2,2],[1,3,3,2],[1,2,0,2]],[[1,2,1,0],[0,2,2,2],[1,3,3,2],[1,3,0,1]],[[1,2,1,0],[0,2,2,2],[1,3,3,2],[2,2,0,1]],[[1,2,1,0],[0,2,2,2],[1,3,3,3],[1,2,0,1]],[[1,2,1,0],[0,2,2,2],[1,3,4,2],[1,2,0,1]],[[1,2,1,0],[0,2,2,2],[1,4,3,2],[1,2,0,1]],[[1,2,1,0],[0,2,2,3],[1,3,3,2],[1,2,0,1]],[[1,2,1,0],[0,2,2,2],[1,3,3,2],[1,1,3,0]],[[1,2,1,0],[0,2,2,2],[1,3,3,3],[1,1,2,0]],[[1,2,1,0],[0,2,2,2],[1,3,4,2],[1,1,2,0]],[[1,2,1,0],[0,2,2,2],[1,4,3,2],[1,1,2,0]],[[1,2,1,0],[0,2,2,3],[1,3,3,2],[1,1,2,0]],[[1,2,1,0],[0,2,2,2],[1,3,3,2],[1,1,1,2]],[[1,2,1,0],[0,2,2,2],[1,3,3,3],[1,1,1,1]],[[1,2,1,0],[0,2,2,2],[1,3,4,2],[1,1,1,1]],[[1,2,1,0],[0,2,2,2],[1,4,3,2],[1,1,1,1]],[[1,2,1,0],[0,2,2,3],[1,3,3,2],[1,1,1,1]],[[1,2,1,0],[0,2,2,2],[1,3,3,2],[1,0,2,2]],[[1,2,1,0],[0,2,2,2],[1,3,3,3],[1,0,2,1]],[[1,2,1,0],[0,2,2,2],[1,3,4,2],[1,0,2,1]],[[1,2,1,0],[0,2,2,3],[1,3,3,2],[1,0,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,3,2],[0,1,0,1]],[[1,1,1,1],[3,3,3,1],[2,1,3,2],[0,1,0,1]],[[1,1,1,1],[2,4,3,1],[2,1,3,2],[0,1,0,1]],[[1,1,1,1],[2,3,4,1],[2,1,3,2],[0,1,0,1]],[[1,2,1,0],[0,2,2,2],[1,3,3,1],[1,3,1,1]],[[1,2,1,0],[0,2,2,2],[1,3,3,1],[2,2,1,1]],[[1,2,1,0],[0,2,2,2],[1,3,4,1],[1,2,1,1]],[[1,2,1,0],[0,2,2,2],[1,4,3,1],[1,2,1,1]],[[1,2,1,0],[0,2,2,2],[1,3,3,1],[1,1,2,2]],[[1,2,1,0],[0,2,2,2],[1,3,3,1],[1,1,3,1]],[[1,2,1,0],[0,2,2,2],[1,3,4,1],[1,1,2,1]],[[1,2,1,0],[0,2,2,2],[1,4,3,1],[1,1,2,1]],[[1,2,1,0],[0,2,2,2],[1,3,2,2],[1,2,3,0]],[[1,2,1,0],[0,2,2,2],[1,3,2,2],[1,3,2,0]],[[1,2,1,0],[0,2,2,2],[1,3,2,2],[2,2,2,0]],[[1,2,1,0],[0,2,2,2],[1,4,2,2],[1,2,2,0]],[[1,2,1,0],[0,2,2,2],[1,3,2,2],[1,1,2,2]],[[1,2,1,0],[0,2,2,2],[1,3,2,2],[1,1,3,1]],[[1,2,1,0],[0,2,2,2],[1,3,2,3],[1,1,2,1]],[[1,2,1,0],[0,2,2,3],[1,3,2,2],[1,1,2,1]],[[1,2,1,0],[0,2,2,2],[1,3,2,1],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[1,3,2,1],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[1,3,2,1],[1,3,2,1]],[[1,2,1,0],[0,2,2,2],[1,3,2,1],[2,2,2,1]],[[1,2,1,0],[0,2,2,2],[1,4,2,1],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[1,3,1,2],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[1,3,1,2],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[1,3,1,2],[1,3,2,1]],[[2,1,1,1],[2,3,3,1],[2,1,3,2],[1,0,0,1]],[[1,1,1,1],[3,3,3,1],[2,1,3,2],[1,0,0,1]],[[1,1,1,1],[2,4,3,1],[2,1,3,2],[1,0,0,1]],[[1,1,1,1],[2,3,4,1],[2,1,3,2],[1,0,0,1]],[[1,1,1,1],[2,3,3,1],[3,1,3,2],[1,0,0,1]],[[1,2,1,0],[0,2,2,2],[1,3,1,2],[2,2,2,1]],[[1,2,1,0],[0,2,2,2],[1,3,1,3],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[1,4,1,2],[1,2,2,1]],[[1,2,1,0],[0,2,2,3],[1,3,1,2],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[1,2,3,2],[1,2,3,0]],[[1,2,1,0],[0,2,2,2],[1,2,3,2],[1,3,2,0]],[[1,2,1,0],[0,2,2,2],[1,2,3,2],[2,2,2,0]],[[1,2,1,0],[0,2,2,2],[1,2,3,3],[1,2,2,0]],[[1,2,1,0],[0,2,2,2],[1,2,4,2],[1,2,2,0]],[[1,2,1,0],[0,2,2,3],[1,2,3,2],[1,2,2,0]],[[1,2,1,0],[0,2,2,2],[1,2,3,2],[1,2,1,2]],[[1,2,1,0],[0,2,2,2],[1,2,3,3],[1,2,1,1]],[[1,2,1,0],[0,2,2,2],[1,2,4,2],[1,2,1,1]],[[1,2,1,0],[0,2,2,3],[1,2,3,2],[1,2,1,1]],[[1,2,1,0],[0,2,2,2],[1,2,3,1],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[1,2,3,1],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[1,2,3,1],[1,3,2,1]],[[1,2,1,0],[0,2,2,2],[1,2,3,1],[2,2,2,1]],[[1,2,1,0],[0,2,2,2],[1,2,4,1],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[1,2,2,2],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[1,2,2,2],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[1,2,2,2],[1,3,2,1]],[[1,2,1,0],[0,2,2,2],[1,2,2,2],[2,2,2,1]],[[1,2,1,0],[0,2,2,2],[1,2,2,3],[1,2,2,1]],[[1,2,1,0],[0,2,2,3],[1,2,2,2],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[1,1,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[1,1,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[1,1,3,3],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[0,3,3,2],[1,2,3,0]],[[1,2,1,0],[0,2,2,2],[0,3,3,2],[1,3,2,0]],[[1,2,1,0],[0,2,2,2],[0,3,3,3],[1,2,2,0]],[[1,2,1,0],[0,2,2,2],[0,3,4,2],[1,2,2,0]],[[1,2,1,0],[0,2,2,3],[0,3,3,2],[1,2,2,0]],[[1,2,1,0],[0,2,2,2],[0,3,3,2],[1,2,1,2]],[[1,2,1,0],[0,2,2,2],[0,3,3,3],[1,2,1,1]],[[1,2,1,0],[0,2,2,2],[0,3,4,2],[1,2,1,1]],[[1,2,1,0],[0,2,2,3],[0,3,3,2],[1,2,1,1]],[[1,2,1,0],[0,2,2,2],[0,3,3,1],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[0,3,3,1],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[0,3,3,1],[1,3,2,1]],[[1,2,1,0],[0,2,2,2],[0,3,4,1],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[0,3,2,2],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[0,3,2,2],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[0,3,2,2],[1,3,2,1]],[[1,2,1,0],[0,2,2,2],[0,3,2,3],[1,2,2,1]],[[1,2,1,0],[0,2,2,3],[0,3,2,2],[1,2,2,1]],[[1,2,1,0],[0,2,2,2],[0,2,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,2,2],[0,2,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,2,2],[0,2,3,3],[1,2,2,1]],[[1,2,1,0],[0,2,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,1,0],[0,2,1,2],[2,3,3,2],[1,0,3,1]],[[1,2,1,0],[0,2,1,2],[2,3,3,3],[1,0,2,1]],[[1,2,1,0],[0,2,1,2],[2,3,3,2],[0,1,2,2]],[[1,2,1,0],[0,2,1,2],[2,3,3,2],[0,1,3,1]],[[1,2,1,0],[0,2,1,2],[2,3,3,3],[0,1,2,1]],[[1,2,1,0],[0,2,1,2],[2,2,3,2],[0,2,2,2]],[[1,2,1,0],[0,2,1,2],[2,2,3,2],[0,2,3,1]],[[1,2,1,0],[0,2,1,2],[2,2,3,2],[0,3,2,1]],[[1,2,1,0],[0,2,1,2],[2,2,3,3],[0,2,2,1]],[[1,2,1,0],[0,2,1,2],[2,1,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,1,2],[2,1,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,1,2],[2,1,3,2],[1,3,2,1]],[[1,2,1,0],[0,2,1,2],[2,1,3,2],[2,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,0,0],[1,2,2,1]],[[1,1,1,1],[3,3,3,1],[2,2,0,0],[1,2,2,1]],[[1,1,1,1],[2,4,3,1],[2,2,0,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[3,2,0,0],[1,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,2,0,0],[2,2,2,1]],[[1,1,1,1],[2,3,3,1],[2,2,0,0],[1,3,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,0,1],[0,2,2,1]],[[1,1,1,1],[3,3,3,1],[2,2,0,1],[0,2,2,1]],[[1,1,1,1],[2,4,3,1],[2,2,0,1],[0,2,2,1]],[[1,1,1,1],[2,3,4,1],[2,2,0,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[3,2,0,1],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,0,1],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[2,2,0,1],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[2,2,0,1],[1,1,2,1]],[[1,1,1,1],[2,3,4,1],[2,2,0,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[3,2,0,1],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[2,2,0,1],[2,1,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,0,1],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[2,2,0,1],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[2,2,0,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[3,2,0,1],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,2,0,1],[2,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,2,0,1],[1,3,2,0]],[[2,1,1,1],[2,3,3,1],[2,2,0,2],[0,1,2,1]],[[1,1,1,1],[3,3,3,1],[2,2,0,2],[0,1,2,1]],[[1,1,1,1],[2,4,3,1],[2,2,0,2],[0,1,2,1]],[[1,1,1,1],[2,3,4,1],[2,2,0,2],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[3,2,0,2],[0,1,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,0,2],[0,2,1,1]],[[1,1,1,1],[3,3,3,1],[2,2,0,2],[0,2,1,1]],[[1,1,1,1],[2,4,3,1],[2,2,0,2],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[2,2,0,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[3,2,0,2],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[2,2,0,2],[0,2,2,0]],[[1,1,1,1],[3,3,3,1],[2,2,0,2],[0,2,2,0]],[[1,1,1,1],[2,4,3,1],[2,2,0,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,1],[2,2,0,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[3,2,0,2],[0,2,2,0]],[[2,1,1,1],[2,3,3,1],[2,2,0,2],[1,0,2,1]],[[1,1,1,1],[3,3,3,1],[2,2,0,2],[1,0,2,1]],[[1,1,1,1],[2,4,3,1],[2,2,0,2],[1,0,2,1]],[[1,1,1,1],[2,3,4,1],[2,2,0,2],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[3,2,0,2],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[2,2,0,2],[2,0,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,0,2],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[2,2,0,2],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[2,2,0,2],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[2,2,0,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[3,2,0,2],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[2,2,0,2],[2,1,1,1]],[[2,1,1,1],[2,3,3,1],[2,2,0,2],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[2,2,0,2],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[2,2,0,2],[1,1,2,0]],[[1,1,1,1],[2,3,4,1],[2,2,0,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[3,2,0,2],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[2,2,0,2],[2,1,2,0]],[[1,2,1,0],[0,2,1,2],[2,1,3,3],[1,2,2,1]],[[1,2,1,0],[0,2,1,2],[1,3,3,2],[1,1,2,2]],[[1,2,1,0],[0,2,1,2],[1,3,3,2],[1,1,3,1]],[[1,2,1,0],[0,2,1,2],[1,3,3,3],[1,1,2,1]],[[1,2,1,0],[0,2,1,2],[1,2,3,2],[1,2,2,2]],[[2,1,1,1],[2,3,3,1],[2,2,1,0],[0,2,2,1]],[[1,1,1,1],[3,3,3,1],[2,2,1,0],[0,2,2,1]],[[1,1,1,1],[2,4,3,1],[2,2,1,0],[0,2,2,1]],[[1,1,1,1],[2,3,4,1],[2,2,1,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[3,2,1,0],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,1,0],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[2,2,1,0],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[2,2,1,0],[1,1,2,1]],[[1,1,1,1],[2,3,4,1],[2,2,1,0],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[3,2,1,0],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[2,2,1,0],[2,1,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,1,1],[0,2,2,0]],[[1,1,1,1],[3,3,3,1],[2,2,1,1],[0,2,2,0]],[[1,1,1,1],[2,4,3,1],[2,2,1,1],[0,2,2,0]],[[1,1,1,1],[2,3,4,1],[2,2,1,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[3,2,1,1],[0,2,2,0]],[[2,1,1,1],[2,3,3,1],[2,2,1,1],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[2,2,1,1],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[2,2,1,1],[1,1,2,0]],[[1,1,1,1],[2,3,4,1],[2,2,1,1],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[3,2,1,1],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[2,2,1,1],[2,1,2,0]],[[1,2,1,0],[0,2,1,2],[1,2,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,1,2],[1,2,3,2],[1,3,2,1]],[[1,2,1,0],[0,2,1,2],[1,2,3,2],[2,2,2,1]],[[1,2,1,0],[0,2,1,2],[1,2,3,3],[1,2,2,1]],[[1,2,1,0],[0,2,1,2],[0,3,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,1,2],[0,3,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,1,2],[0,3,3,2],[1,3,2,1]],[[1,2,1,0],[0,2,1,2],[0,3,3,3],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,1,2],[0,1,1,1]],[[1,1,1,1],[3,3,3,1],[2,2,1,2],[0,1,1,1]],[[1,1,1,1],[2,4,3,1],[2,2,1,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,1],[2,2,1,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[3,2,1,2],[0,1,1,1]],[[2,1,1,1],[2,3,3,1],[2,2,1,2],[0,1,2,0]],[[1,1,1,1],[3,3,3,1],[2,2,1,2],[0,1,2,0]],[[1,1,1,1],[2,4,3,1],[2,2,1,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[2,2,1,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[3,2,1,2],[0,1,2,0]],[[2,1,1,1],[2,3,3,1],[2,2,1,2],[0,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,2,1,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,2,1,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,1],[2,2,1,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,2,1,2],[0,2,0,1]],[[2,1,1,1],[2,3,3,1],[2,2,1,2],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,2,1,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,2,1,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[2,2,1,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,2,1,2],[0,2,1,0]],[[1,2,1,0],[0,2,0,2],[2,3,3,2],[0,2,2,2]],[[2,1,1,1],[2,3,3,1],[2,2,1,2],[1,0,1,1]],[[1,1,1,1],[3,3,3,1],[2,2,1,2],[1,0,1,1]],[[1,1,1,1],[2,4,3,1],[2,2,1,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,1],[2,2,1,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[3,2,1,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[2,2,1,2],[2,0,1,1]],[[2,1,1,1],[2,3,3,1],[2,2,1,2],[1,0,2,0]],[[1,1,1,1],[3,3,3,1],[2,2,1,2],[1,0,2,0]],[[1,1,1,1],[2,4,3,1],[2,2,1,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,1],[2,2,1,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[3,2,1,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[2,2,1,2],[2,0,2,0]],[[2,1,1,1],[2,3,3,1],[2,2,1,2],[1,1,0,1]],[[1,1,1,1],[3,3,3,1],[2,2,1,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,1],[2,2,1,2],[1,1,0,1]],[[1,1,1,1],[2,3,4,1],[2,2,1,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[3,2,1,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[2,2,1,2],[2,1,0,1]],[[2,1,1,1],[2,3,3,1],[2,2,1,2],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[2,2,1,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[2,2,1,2],[1,1,1,0]],[[1,1,1,1],[2,3,4,1],[2,2,1,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[3,2,1,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[2,2,1,2],[2,1,1,0]],[[1,2,1,0],[0,2,0,2],[2,3,3,2],[0,2,3,1]],[[1,2,1,0],[0,2,0,2],[2,3,3,2],[0,3,2,1]],[[1,2,1,0],[0,2,0,2],[2,3,3,3],[0,2,2,1]],[[1,2,1,0],[0,2,0,2],[1,3,3,2],[1,2,2,2]],[[1,2,1,0],[0,2,0,2],[1,3,3,2],[1,2,3,1]],[[1,2,1,0],[0,2,0,2],[1,3,3,2],[1,3,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,1,2],[1,2,0,0]],[[1,1,1,1],[3,3,3,1],[2,2,1,2],[1,2,0,0]],[[1,1,1,1],[2,4,3,1],[2,2,1,2],[1,2,0,0]],[[1,1,1,1],[2,3,4,1],[2,2,1,2],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[3,2,1,2],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[2,2,1,2],[2,2,0,0]],[[1,2,1,0],[0,2,0,2],[1,3,3,2],[2,2,2,1]],[[1,2,1,0],[0,2,0,2],[1,3,3,3],[1,2,2,1]],[[1,2,1,0],[0,1,3,2],[2,3,3,1],[0,2,3,0]],[[1,2,1,0],[0,1,3,2],[2,3,3,1],[0,3,2,0]],[[1,2,1,0],[0,1,3,2],[2,3,4,1],[0,2,2,0]],[[2,1,1,1],[2,3,3,1],[2,2,2,0],[0,1,2,1]],[[1,1,1,1],[3,3,3,1],[2,2,2,0],[0,1,2,1]],[[1,1,1,1],[2,4,3,1],[2,2,2,0],[0,1,2,1]],[[1,1,1,1],[2,3,4,1],[2,2,2,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,1],[3,2,2,0],[0,1,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,2,0],[0,2,1,1]],[[1,1,1,1],[3,3,3,1],[2,2,2,0],[0,2,1,1]],[[1,1,1,1],[2,4,3,1],[2,2,2,0],[0,2,1,1]],[[1,1,1,1],[2,3,4,1],[2,2,2,0],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[3,2,2,0],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[2,2,2,0],[1,0,2,1]],[[1,1,1,1],[3,3,3,1],[2,2,2,0],[1,0,2,1]],[[1,1,1,1],[2,4,3,1],[2,2,2,0],[1,0,2,1]],[[1,1,1,1],[2,3,4,1],[2,2,2,0],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[3,2,2,0],[1,0,2,1]],[[1,1,1,1],[2,3,3,1],[2,2,2,0],[2,0,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,2,0],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[2,2,2,0],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[2,2,2,0],[1,1,1,1]],[[1,1,1,1],[2,3,4,1],[2,2,2,0],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[3,2,2,0],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[2,2,2,0],[2,1,1,1]],[[2,1,1,1],[2,3,3,1],[2,2,2,0],[1,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,2,2,0],[1,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,2,2,0],[1,2,0,1]],[[1,1,1,1],[2,3,4,1],[2,2,2,0],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,2,2,0],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,2,2,0],[2,2,0,1]],[[1,2,1,0],[0,1,3,2],[2,3,3,0],[0,2,2,2]],[[1,2,1,0],[0,1,3,2],[2,3,3,0],[0,2,3,1]],[[1,2,1,0],[0,1,3,2],[2,3,3,0],[0,3,2,1]],[[1,2,1,0],[0,1,3,2],[2,3,4,0],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,2,1],[0,1,1,1]],[[1,1,1,1],[3,3,3,1],[2,2,2,1],[0,1,1,1]],[[1,1,1,1],[2,4,3,1],[2,2,2,1],[0,1,1,1]],[[1,1,1,1],[2,3,4,1],[2,2,2,1],[0,1,1,1]],[[1,1,1,1],[2,3,3,1],[3,2,2,1],[0,1,1,1]],[[2,1,1,1],[2,3,3,1],[2,2,2,1],[0,1,2,0]],[[1,1,1,1],[3,3,3,1],[2,2,2,1],[0,1,2,0]],[[1,1,1,1],[2,4,3,1],[2,2,2,1],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[2,2,2,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[3,2,2,1],[0,1,2,0]],[[2,1,1,1],[2,3,3,1],[2,2,2,1],[0,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,2,2,1],[0,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,2,2,1],[0,2,0,1]],[[1,1,1,1],[2,3,4,1],[2,2,2,1],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,2,2,1],[0,2,0,1]],[[2,1,1,1],[2,3,3,1],[2,2,2,1],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,2,2,1],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,2,2,1],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[2,2,2,1],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,2,2,1],[0,2,1,0]],[[2,1,1,1],[2,3,3,1],[2,2,2,1],[1,0,1,1]],[[1,1,1,1],[3,3,3,1],[2,2,2,1],[1,0,1,1]],[[1,1,1,1],[2,4,3,1],[2,2,2,1],[1,0,1,1]],[[1,1,1,1],[2,3,4,1],[2,2,2,1],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[3,2,2,1],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[2,2,2,1],[2,0,1,1]],[[2,1,1,1],[2,3,3,1],[2,2,2,1],[1,0,2,0]],[[1,1,1,1],[3,3,3,1],[2,2,2,1],[1,0,2,0]],[[1,1,1,1],[2,4,3,1],[2,2,2,1],[1,0,2,0]],[[1,1,1,1],[2,3,4,1],[2,2,2,1],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[3,2,2,1],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[2,2,2,1],[2,0,2,0]],[[2,1,1,1],[2,3,3,1],[2,2,2,1],[1,1,0,1]],[[1,1,1,1],[3,3,3,1],[2,2,2,1],[1,1,0,1]],[[1,1,1,1],[2,4,3,1],[2,2,2,1],[1,1,0,1]],[[1,1,1,1],[2,3,4,1],[2,2,2,1],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[3,2,2,1],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[2,2,2,1],[2,1,0,1]],[[2,1,1,1],[2,3,3,1],[2,2,2,1],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[2,2,2,1],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[2,2,2,1],[1,1,1,0]],[[1,1,1,1],[2,3,4,1],[2,2,2,1],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[3,2,2,1],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[2,2,2,1],[2,1,1,0]],[[2,1,1,1],[2,3,3,1],[2,2,2,1],[1,2,0,0]],[[1,1,1,1],[3,3,3,1],[2,2,2,1],[1,2,0,0]],[[1,1,1,1],[2,4,3,1],[2,2,2,1],[1,2,0,0]],[[1,1,1,1],[2,3,4,1],[2,2,2,1],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[3,2,2,1],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[2,2,2,1],[2,2,0,0]],[[1,2,1,0],[0,1,3,2],[1,3,3,1],[1,2,3,0]],[[1,2,1,0],[0,1,3,2],[1,3,3,1],[1,3,2,0]],[[1,2,1,0],[0,1,3,2],[1,3,3,1],[2,2,2,0]],[[1,2,1,0],[0,1,3,2],[1,3,4,1],[1,2,2,0]],[[1,2,1,0],[0,1,3,2],[1,3,3,0],[1,2,2,2]],[[1,2,1,0],[0,1,3,2],[1,3,3,0],[1,2,3,1]],[[1,2,1,0],[0,1,3,2],[1,3,3,0],[1,3,2,1]],[[1,2,1,0],[0,1,3,2],[1,3,3,0],[2,2,2,1]],[[1,2,1,0],[0,1,3,2],[1,3,4,0],[1,2,2,1]],[[1,2,1,0],[0,1,3,1],[2,3,3,2],[0,2,3,0]],[[1,2,1,0],[0,1,3,1],[2,3,3,2],[0,3,2,0]],[[1,2,1,0],[0,1,3,1],[2,3,3,3],[0,2,2,0]],[[1,2,1,0],[0,1,3,1],[2,3,4,2],[0,2,2,0]],[[1,2,1,0],[0,1,3,1],[2,3,3,2],[0,2,1,2]],[[1,2,1,0],[0,1,3,1],[2,3,3,3],[0,2,1,1]],[[1,2,1,0],[0,1,3,1],[2,3,4,2],[0,2,1,1]],[[1,2,1,0],[0,1,3,1],[2,3,3,1],[0,2,2,2]],[[1,2,1,0],[0,1,3,1],[2,3,3,1],[0,2,3,1]],[[1,2,1,0],[0,1,3,1],[2,3,3,1],[0,3,2,1]],[[1,2,1,0],[0,1,3,1],[2,3,4,1],[0,2,2,1]],[[1,2,1,0],[0,1,3,1],[2,3,2,2],[0,2,2,2]],[[1,2,1,0],[0,1,3,1],[2,3,2,2],[0,2,3,1]],[[1,2,1,0],[0,1,3,1],[2,3,2,2],[0,3,2,1]],[[1,2,1,0],[0,1,3,1],[2,3,2,3],[0,2,2,1]],[[1,2,1,0],[0,1,3,1],[1,3,3,2],[1,2,3,0]],[[1,2,1,0],[0,1,3,1],[1,3,3,2],[1,3,2,0]],[[1,2,1,0],[0,1,3,1],[1,3,3,2],[2,2,2,0]],[[1,2,1,0],[0,1,3,1],[1,3,3,3],[1,2,2,0]],[[1,2,1,0],[0,1,3,1],[1,3,4,2],[1,2,2,0]],[[1,2,1,0],[0,1,3,1],[1,3,3,2],[1,2,1,2]],[[1,2,1,0],[0,1,3,1],[1,3,3,3],[1,2,1,1]],[[1,2,1,0],[0,1,3,1],[1,3,4,2],[1,2,1,1]],[[1,2,1,0],[0,1,3,1],[1,3,3,1],[1,2,2,2]],[[1,2,1,0],[0,1,3,1],[1,3,3,1],[1,2,3,1]],[[1,2,1,0],[0,1,3,1],[1,3,3,1],[1,3,2,1]],[[1,2,1,0],[0,1,3,1],[1,3,3,1],[2,2,2,1]],[[1,2,1,0],[0,1,3,1],[1,3,4,1],[1,2,2,1]],[[1,2,1,0],[0,1,3,1],[1,3,2,2],[1,2,2,2]],[[1,2,1,0],[0,1,3,1],[1,3,2,2],[1,2,3,1]],[[1,2,1,0],[0,1,3,1],[1,3,2,2],[1,3,2,1]],[[1,2,1,0],[0,1,3,1],[1,3,2,2],[2,2,2,1]],[[1,2,1,0],[0,1,3,1],[1,3,2,3],[1,2,2,1]],[[1,2,1,0],[0,1,3,0],[2,3,3,2],[0,2,2,2]],[[1,2,1,0],[0,1,3,0],[2,3,3,2],[0,2,3,1]],[[1,2,1,0],[0,1,3,0],[2,3,3,2],[0,3,2,1]],[[1,2,1,0],[0,1,3,0],[2,3,4,2],[0,2,2,1]],[[1,2,1,0],[0,1,3,0],[1,3,3,2],[1,2,2,2]],[[1,2,1,0],[0,1,3,0],[1,3,3,2],[1,2,3,1]],[[1,2,1,0],[0,1,3,0],[1,3,3,2],[1,3,2,1]],[[1,2,1,0],[0,1,3,0],[1,3,3,2],[2,2,2,1]],[[1,2,1,0],[0,1,3,0],[1,3,4,2],[1,2,2,1]],[[1,2,1,0],[0,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,1,0],[0,1,2,2],[2,3,3,2],[0,3,2,0]],[[1,2,1,0],[0,1,2,2],[2,3,3,3],[0,2,2,0]],[[1,2,1,0],[0,1,2,2],[2,3,4,2],[0,2,2,0]],[[1,2,1,0],[0,1,2,2],[2,3,3,2],[0,2,1,2]],[[1,2,1,0],[0,1,2,2],[2,3,3,3],[0,2,1,1]],[[1,2,1,0],[0,1,2,2],[2,3,4,2],[0,2,1,1]],[[1,2,1,0],[0,1,2,2],[2,3,3,1],[0,2,2,2]],[[1,2,1,0],[0,1,2,2],[2,3,3,1],[0,2,3,1]],[[1,2,1,0],[0,1,2,2],[2,3,3,1],[0,3,2,1]],[[1,2,1,0],[0,1,2,2],[2,3,4,1],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,3,0],[0,1,2,0]],[[1,1,1,1],[3,3,3,1],[2,2,3,0],[0,1,2,0]],[[1,1,1,1],[2,4,3,1],[2,2,3,0],[0,1,2,0]],[[1,1,1,1],[2,3,4,1],[2,2,3,0],[0,1,2,0]],[[1,1,1,1],[2,3,3,1],[3,2,3,0],[0,1,2,0]],[[2,1,1,1],[2,3,3,1],[2,2,3,0],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,2,3,0],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,2,3,0],[0,2,1,0]],[[1,1,1,1],[2,3,4,1],[2,2,3,0],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,2,3,0],[0,2,1,0]],[[1,2,1,0],[0,1,2,2],[2,3,2,2],[0,2,2,2]],[[1,2,1,0],[0,1,2,2],[2,3,2,2],[0,2,3,1]],[[1,2,1,0],[0,1,2,2],[2,3,2,2],[0,3,2,1]],[[1,2,1,0],[0,1,2,2],[2,3,2,3],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,3,0],[1,0,2,0]],[[1,1,1,1],[3,3,3,1],[2,2,3,0],[1,0,2,0]],[[1,1,1,1],[2,4,3,1],[2,2,3,0],[1,0,2,0]],[[1,1,1,1],[2,3,4,1],[2,2,3,0],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[3,2,3,0],[1,0,2,0]],[[1,1,1,1],[2,3,3,1],[2,2,3,0],[2,0,2,0]],[[2,1,1,1],[2,3,3,1],[2,2,3,0],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[2,2,3,0],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[2,2,3,0],[1,1,1,0]],[[1,1,1,1],[2,3,4,1],[2,2,3,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[3,2,3,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[2,2,3,0],[2,1,1,0]],[[1,2,1,0],[0,1,2,2],[1,3,3,2],[1,2,3,0]],[[1,2,1,0],[0,1,2,2],[1,3,3,2],[1,3,2,0]],[[1,2,1,0],[0,1,2,2],[1,3,3,2],[2,2,2,0]],[[2,1,1,1],[2,3,3,1],[2,2,3,0],[1,2,0,0]],[[1,1,1,1],[3,3,3,1],[2,2,3,0],[1,2,0,0]],[[1,1,1,1],[2,4,3,1],[2,2,3,0],[1,2,0,0]],[[1,1,1,1],[2,3,4,1],[2,2,3,0],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[3,2,3,0],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[2,2,3,0],[2,2,0,0]],[[1,2,1,0],[0,1,2,2],[1,3,3,3],[1,2,2,0]],[[1,2,1,0],[0,1,2,2],[1,3,4,2],[1,2,2,0]],[[1,2,1,0],[0,1,2,2],[1,3,3,2],[1,2,1,2]],[[1,2,1,0],[0,1,2,2],[1,3,3,3],[1,2,1,1]],[[1,2,1,0],[0,1,2,2],[1,3,4,2],[1,2,1,1]],[[1,2,1,0],[0,1,2,2],[1,3,3,1],[1,2,2,2]],[[1,2,1,0],[0,1,2,2],[1,3,3,1],[1,2,3,1]],[[1,2,1,0],[0,1,2,2],[1,3,3,1],[1,3,2,1]],[[1,2,1,0],[0,1,2,2],[1,3,3,1],[2,2,2,1]],[[1,2,1,0],[0,1,2,2],[1,3,4,1],[1,2,2,1]],[[1,2,1,0],[0,1,2,2],[1,3,2,2],[1,2,2,2]],[[1,2,1,0],[0,1,2,2],[1,3,2,2],[1,2,3,1]],[[1,2,1,0],[0,1,2,2],[1,3,2,2],[1,3,2,1]],[[1,2,1,0],[0,1,2,2],[1,3,2,2],[2,2,2,1]],[[1,2,1,0],[0,1,2,2],[1,3,2,3],[1,2,2,1]],[[1,2,1,0],[0,1,1,2],[2,3,3,2],[0,2,2,2]],[[1,2,1,0],[0,1,1,2],[2,3,3,2],[0,2,3,1]],[[1,2,1,0],[0,1,1,2],[2,3,3,2],[0,3,2,1]],[[1,2,1,0],[0,1,1,2],[2,3,3,3],[0,2,2,1]],[[1,2,1,0],[0,1,1,2],[1,3,3,2],[1,2,2,2]],[[1,2,1,0],[0,1,1,2],[1,3,3,2],[1,2,3,1]],[[1,2,1,0],[0,1,1,2],[1,3,3,2],[1,3,2,1]],[[1,2,1,0],[0,1,1,2],[1,3,3,2],[2,2,2,1]],[[1,2,1,0],[0,1,1,2],[1,3,3,3],[1,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,2,3,1],[0,2,0,0]],[[1,1,1,1],[3,3,3,1],[2,2,3,1],[0,2,0,0]],[[1,1,1,1],[2,4,3,1],[2,2,3,1],[0,2,0,0]],[[1,1,1,1],[2,3,4,1],[2,2,3,1],[0,2,0,0]],[[1,1,1,1],[2,3,3,1],[3,2,3,1],[0,2,0,0]],[[1,2,0,1],[2,3,3,2],[3,3,3,0],[1,0,0,0]],[[1,2,0,1],[2,4,3,2],[2,3,3,0],[1,0,0,0]],[[1,2,0,1],[3,3,3,2],[2,3,3,0],[1,0,0,0]],[[2,2,0,1],[2,3,3,2],[2,3,3,0],[1,0,0,0]],[[2,1,1,1],[2,3,3,1],[2,2,3,1],[1,1,0,0]],[[1,1,1,1],[3,3,3,1],[2,2,3,1],[1,1,0,0]],[[1,1,1,1],[2,4,3,1],[2,2,3,1],[1,1,0,0]],[[1,1,1,1],[2,3,4,1],[2,2,3,1],[1,1,0,0]],[[1,1,1,1],[2,3,3,1],[3,2,3,1],[1,1,0,0]],[[1,1,1,1],[2,3,3,1],[2,2,3,1],[2,1,0,0]],[[1,2,0,1],[2,3,3,2],[3,3,2,0],[1,0,1,0]],[[1,2,0,1],[2,4,3,2],[2,3,2,0],[1,0,1,0]],[[1,2,0,1],[3,3,3,2],[2,3,2,0],[1,0,1,0]],[[2,2,0,1],[2,3,3,2],[2,3,2,0],[1,0,1,0]],[[1,2,0,1],[2,3,3,2],[3,3,2,0],[1,0,0,1]],[[1,2,0,1],[2,4,3,2],[2,3,2,0],[1,0,0,1]],[[1,2,0,1],[3,3,3,2],[2,3,2,0],[1,0,0,1]],[[2,2,0,1],[2,3,3,2],[2,3,2,0],[1,0,0,1]],[[1,2,0,1],[2,3,3,2],[2,3,1,0],[2,2,0,0]],[[1,2,0,1],[2,3,3,2],[3,3,1,0],[1,2,0,0]],[[1,2,0,1],[2,4,3,2],[2,3,1,0],[1,2,0,0]],[[1,2,0,1],[3,3,3,2],[2,3,1,0],[1,2,0,0]],[[2,2,0,1],[2,3,3,2],[2,3,1,0],[1,2,0,0]],[[1,2,0,1],[2,3,3,2],[2,3,1,0],[2,1,1,0]],[[1,2,0,1],[2,3,3,2],[3,3,1,0],[1,1,1,0]],[[1,2,0,1],[2,4,3,2],[2,3,1,0],[1,1,1,0]],[[1,2,0,1],[3,3,3,2],[2,3,1,0],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[2,3,1,0],[1,1,1,0]],[[1,2,0,1],[2,3,3,2],[3,3,1,0],[1,1,0,1]],[[1,2,0,1],[2,4,3,2],[2,3,1,0],[1,1,0,1]],[[1,2,0,1],[3,3,3,2],[2,3,1,0],[1,1,0,1]],[[2,2,0,1],[2,3,3,2],[2,3,1,0],[1,1,0,1]],[[1,2,0,1],[2,3,3,2],[3,3,1,0],[0,2,1,0]],[[1,2,0,1],[2,4,3,2],[2,3,1,0],[0,2,1,0]],[[1,2,0,1],[3,3,3,2],[2,3,1,0],[0,2,1,0]],[[2,2,0,1],[2,3,3,2],[2,3,1,0],[0,2,1,0]],[[1,2,0,1],[2,4,3,2],[2,3,1,0],[0,2,0,1]],[[1,2,0,1],[3,3,3,2],[2,3,1,0],[0,2,0,1]],[[2,2,0,1],[2,3,3,2],[2,3,1,0],[0,2,0,1]],[[1,2,0,1],[2,3,3,2],[2,3,0,0],[2,2,1,0]],[[1,2,0,1],[2,3,3,2],[3,3,0,0],[1,2,1,0]],[[1,2,0,1],[2,4,3,2],[2,3,0,0],[1,2,1,0]],[[1,2,0,1],[3,3,3,2],[2,3,0,0],[1,2,1,0]],[[2,2,0,1],[2,3,3,2],[2,3,0,0],[1,2,1,0]],[[1,2,0,1],[2,3,3,2],[2,3,0,0],[2,1,2,0]],[[1,2,0,1],[2,3,3,2],[3,3,0,0],[1,1,2,0]],[[1,2,0,1],[2,4,3,2],[2,3,0,0],[1,1,2,0]],[[1,2,0,1],[3,3,3,2],[2,3,0,0],[1,1,2,0]],[[2,2,0,1],[2,3,3,2],[2,3,0,0],[1,1,2,0]],[[1,2,0,1],[2,3,3,2],[3,3,0,0],[0,2,2,0]],[[1,2,0,1],[2,4,3,2],[2,3,0,0],[0,2,2,0]],[[1,2,0,1],[3,3,3,2],[2,3,0,0],[0,2,2,0]],[[2,2,0,1],[2,3,3,2],[2,3,0,0],[0,2,2,0]],[[1,2,0,1],[3,3,3,2],[2,2,3,1],[1,0,0,0]],[[1,3,0,1],[2,3,3,2],[2,2,3,1],[1,0,0,0]],[[2,2,0,1],[2,3,3,2],[2,2,3,1],[1,0,0,0]],[[2,1,1,1],[2,3,3,1],[2,3,0,0],[0,2,2,1]],[[1,1,1,1],[3,3,3,1],[2,3,0,0],[0,2,2,1]],[[1,1,1,1],[2,4,3,1],[2,3,0,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,1],[3,3,0,0],[0,2,2,1]],[[2,1,1,1],[2,3,3,1],[2,3,0,0],[1,1,2,1]],[[1,1,1,1],[3,3,3,1],[2,3,0,0],[1,1,2,1]],[[1,1,1,1],[2,4,3,1],[2,3,0,0],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[3,3,0,0],[1,1,2,1]],[[1,1,1,1],[2,3,3,1],[2,3,0,0],[2,1,2,1]],[[2,1,1,1],[2,3,3,1],[2,3,0,0],[1,2,1,1]],[[1,1,1,1],[3,3,3,1],[2,3,0,0],[1,2,1,1]],[[1,1,1,1],[2,4,3,1],[2,3,0,0],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[3,3,0,0],[1,2,1,1]],[[1,1,1,1],[2,3,3,1],[2,3,0,0],[2,2,1,1]],[[2,1,1,1],[2,3,3,1],[2,3,0,0],[1,2,2,0]],[[1,1,1,1],[3,3,3,1],[2,3,0,0],[1,2,2,0]],[[1,1,1,1],[2,4,3,1],[2,3,0,0],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[3,3,0,0],[1,2,2,0]],[[1,1,1,1],[2,3,3,1],[2,3,0,0],[2,2,2,0]],[[2,1,1,1],[2,3,3,1],[2,3,0,1],[0,2,2,0]],[[1,1,1,1],[3,3,3,1],[2,3,0,1],[0,2,2,0]],[[1,1,1,1],[2,4,3,1],[2,3,0,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,1],[3,3,0,1],[0,2,2,0]],[[2,1,1,1],[2,3,3,1],[2,3,0,1],[1,1,2,0]],[[1,1,1,1],[3,3,3,1],[2,3,0,1],[1,1,2,0]],[[1,1,1,1],[2,4,3,1],[2,3,0,1],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[3,3,0,1],[1,1,2,0]],[[1,1,1,1],[2,3,3,1],[2,3,0,1],[2,1,2,0]],[[2,1,1,1],[2,3,3,1],[2,3,0,1],[1,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,3,0,1],[1,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,3,0,1],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,3,0,1],[1,2,1,0]],[[1,1,1,1],[2,3,3,1],[2,3,0,1],[2,2,1,0]],[[1,2,0,1],[2,3,3,2],[3,2,3,0],[1,1,0,0]],[[1,2,0,1],[2,4,3,2],[2,2,3,0],[1,1,0,0]],[[1,2,0,1],[3,3,3,2],[2,2,3,0],[1,1,0,0]],[[2,2,0,1],[2,3,3,2],[2,2,3,0],[1,1,0,0]],[[2,1,1,1],[2,3,3,1],[2,3,0,2],[0,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,3,0,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,3,0,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,3,0,2],[0,2,0,1]],[[2,1,1,1],[2,3,3,1],[2,3,0,2],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,3,0,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,3,0,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,3,0,2],[0,2,1,0]],[[2,1,1,1],[2,3,3,1],[2,3,0,2],[1,1,0,1]],[[1,1,1,1],[3,3,3,1],[2,3,0,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,1],[2,3,0,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[3,3,0,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[2,3,0,2],[2,1,0,1]],[[2,1,1,1],[2,3,3,1],[2,3,0,2],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[2,3,0,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[2,3,0,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[3,3,0,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[2,3,0,2],[2,1,1,0]],[[1,2,0,1],[2,4,3,2],[2,2,3,0],[0,2,0,0]],[[2,1,1,1],[2,3,3,1],[2,3,0,2],[1,2,0,0]],[[1,1,1,1],[3,3,3,1],[2,3,0,2],[1,2,0,0]],[[1,1,1,1],[2,4,3,1],[2,3,0,2],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[3,3,0,2],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[2,3,0,2],[2,2,0,0]],[[1,2,0,1],[3,3,3,2],[2,2,3,0],[0,2,0,0]],[[2,2,0,1],[2,3,3,2],[2,2,3,0],[0,2,0,0]],[[2,1,1,1],[2,3,3,1],[2,3,1,0],[0,2,1,1]],[[1,1,1,1],[3,3,3,1],[2,3,1,0],[0,2,1,1]],[[1,1,1,1],[2,4,3,1],[2,3,1,0],[0,2,1,1]],[[1,1,1,1],[2,3,3,1],[3,3,1,0],[0,2,1,1]],[[2,1,1,1],[2,3,3,1],[2,3,1,0],[1,1,1,1]],[[1,1,1,1],[3,3,3,1],[2,3,1,0],[1,1,1,1]],[[1,1,1,1],[2,4,3,1],[2,3,1,0],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[3,3,1,0],[1,1,1,1]],[[1,1,1,1],[2,3,3,1],[2,3,1,0],[2,1,1,1]],[[2,1,1,1],[2,3,3,1],[2,3,1,0],[1,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,3,1,0],[1,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,3,1,0],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,3,1,0],[1,2,0,1]],[[1,1,1,1],[2,3,3,1],[2,3,1,0],[2,2,0,1]],[[2,1,1,1],[2,3,3,1],[2,3,1,1],[0,2,0,1]],[[1,1,1,1],[3,3,3,1],[2,3,1,1],[0,2,0,1]],[[1,1,1,1],[2,4,3,1],[2,3,1,1],[0,2,0,1]],[[1,1,1,1],[2,3,3,1],[3,3,1,1],[0,2,0,1]],[[2,1,1,1],[2,3,3,1],[2,3,1,1],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,3,1,1],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,3,1,1],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,3,1,1],[0,2,1,0]],[[2,1,1,1],[2,3,3,1],[2,3,1,1],[1,1,0,1]],[[1,1,1,1],[3,3,3,1],[2,3,1,1],[1,1,0,1]],[[1,1,1,1],[2,4,3,1],[2,3,1,1],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[3,3,1,1],[1,1,0,1]],[[1,1,1,1],[2,3,3,1],[2,3,1,1],[2,1,0,1]],[[2,1,1,1],[2,3,3,1],[2,3,1,1],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[2,3,1,1],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[2,3,1,1],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[3,3,1,1],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[2,3,1,1],[2,1,1,0]],[[2,1,1,1],[2,3,3,1],[2,3,1,1],[1,2,0,0]],[[1,1,1,1],[3,3,3,1],[2,3,1,1],[1,2,0,0]],[[1,1,1,1],[2,4,3,1],[2,3,1,1],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[3,3,1,1],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[2,3,1,1],[2,2,0,0]],[[1,2,0,1],[3,3,3,2],[2,2,2,1],[1,0,1,0]],[[1,3,0,1],[2,3,3,2],[2,2,2,1],[1,0,1,0]],[[2,2,0,1],[2,3,3,2],[2,2,2,1],[1,0,1,0]],[[1,2,0,1],[3,3,3,2],[2,2,2,1],[1,0,0,1]],[[1,3,0,1],[2,3,3,2],[2,2,2,1],[1,0,0,1]],[[2,2,0,1],[2,3,3,2],[2,2,2,1],[1,0,0,1]],[[2,1,1,1],[2,3,3,1],[2,3,1,2],[1,0,0,1]],[[1,1,1,1],[3,3,3,1],[2,3,1,2],[1,0,0,1]],[[1,1,1,1],[2,4,3,1],[2,3,1,2],[1,0,0,1]],[[1,1,1,1],[2,3,4,1],[2,3,1,2],[1,0,0,1]],[[1,1,1,1],[2,3,3,1],[3,3,1,2],[1,0,0,1]],[[2,1,1,1],[2,3,3,1],[2,3,1,2],[1,0,1,0]],[[1,1,1,1],[3,3,3,1],[2,3,1,2],[1,0,1,0]],[[1,1,1,1],[2,4,3,1],[2,3,1,2],[1,0,1,0]],[[1,1,1,1],[2,3,4,1],[2,3,1,2],[1,0,1,0]],[[1,1,1,1],[2,3,3,1],[3,3,1,2],[1,0,1,0]],[[1,2,0,1],[2,3,3,2],[2,2,2,0],[2,2,0,0]],[[1,2,0,1],[2,3,3,2],[3,2,2,0],[1,2,0,0]],[[1,2,0,1],[2,4,3,2],[2,2,2,0],[1,2,0,0]],[[1,2,0,1],[3,3,3,2],[2,2,2,0],[1,2,0,0]],[[2,2,0,1],[2,3,3,2],[2,2,2,0],[1,2,0,0]],[[1,2,0,1],[2,3,3,2],[2,2,2,0],[2,1,1,0]],[[1,2,0,1],[2,3,3,2],[3,2,2,0],[1,1,1,0]],[[1,2,0,1],[2,4,3,2],[2,2,2,0],[1,1,1,0]],[[1,2,0,1],[3,3,3,2],[2,2,2,0],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[2,2,2,0],[1,1,1,0]],[[1,2,0,1],[2,3,3,2],[3,2,2,0],[1,1,0,1]],[[1,2,0,1],[2,4,3,2],[2,2,2,0],[1,1,0,1]],[[1,2,0,1],[3,3,3,2],[2,2,2,0],[1,1,0,1]],[[2,2,0,1],[2,3,3,2],[2,2,2,0],[1,1,0,1]],[[1,2,0,1],[2,3,3,2],[3,2,2,0],[1,0,2,0]],[[1,2,0,1],[2,4,3,2],[2,2,2,0],[1,0,2,0]],[[1,2,0,1],[3,3,3,2],[2,2,2,0],[1,0,2,0]],[[2,2,0,1],[2,3,3,2],[2,2,2,0],[1,0,2,0]],[[1,2,0,1],[2,3,3,2],[3,2,2,0],[0,2,1,0]],[[1,2,0,1],[2,4,3,2],[2,2,2,0],[0,2,1,0]],[[1,2,0,1],[3,3,3,2],[2,2,2,0],[0,2,1,0]],[[2,2,0,1],[2,3,3,2],[2,2,2,0],[0,2,1,0]],[[1,2,0,1],[2,4,3,2],[2,2,2,0],[0,2,0,1]],[[1,2,0,1],[3,3,3,2],[2,2,2,0],[0,2,0,1]],[[2,2,0,1],[2,3,3,2],[2,2,2,0],[0,2,0,1]],[[1,2,0,1],[2,4,3,2],[2,2,2,0],[0,1,2,0]],[[1,2,0,1],[3,3,3,2],[2,2,2,0],[0,1,2,0]],[[2,2,0,1],[2,3,3,2],[2,2,2,0],[0,1,2,0]],[[2,1,1,1],[2,3,3,1],[2,3,2,0],[0,2,1,0]],[[1,1,1,1],[3,3,3,1],[2,3,2,0],[0,2,1,0]],[[1,1,1,1],[2,4,3,1],[2,3,2,0],[0,2,1,0]],[[1,1,1,1],[2,3,3,1],[3,3,2,0],[0,2,1,0]],[[2,1,1,1],[2,3,3,1],[2,3,2,0],[1,0,1,1]],[[1,1,1,1],[3,3,3,1],[2,3,2,0],[1,0,1,1]],[[1,1,1,1],[2,4,3,1],[2,3,2,0],[1,0,1,1]],[[1,1,1,1],[2,3,4,1],[2,3,2,0],[1,0,1,1]],[[1,1,1,1],[2,3,3,1],[3,3,2,0],[1,0,1,1]],[[2,1,1,1],[2,3,3,1],[2,3,2,0],[1,1,1,0]],[[1,1,1,1],[3,3,3,1],[2,3,2,0],[1,1,1,0]],[[1,1,1,1],[2,4,3,1],[2,3,2,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[3,3,2,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,1],[2,3,2,0],[2,1,1,0]],[[2,1,1,1],[2,3,3,1],[2,3,2,0],[1,2,0,0]],[[1,1,1,1],[3,3,3,1],[2,3,2,0],[1,2,0,0]],[[1,1,1,1],[2,4,3,1],[2,3,2,0],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[3,3,2,0],[1,2,0,0]],[[1,1,1,1],[2,3,3,1],[2,3,2,0],[2,2,0,0]],[[1,2,0,1],[3,3,3,2],[2,2,1,2],[1,0,1,0]],[[1,3,0,1],[2,3,3,2],[2,2,1,2],[1,0,1,0]],[[2,2,0,1],[2,3,3,2],[2,2,1,2],[1,0,1,0]],[[1,2,0,1],[3,3,3,2],[2,2,1,2],[1,0,0,1]],[[1,3,0,1],[2,3,3,2],[2,2,1,2],[1,0,0,1]],[[2,2,0,1],[2,3,3,2],[2,2,1,2],[1,0,0,1]],[[2,1,1,1],[2,3,3,1],[2,3,2,1],[1,0,0,1]],[[1,1,1,1],[3,3,3,1],[2,3,2,1],[1,0,0,1]],[[1,1,1,1],[2,4,3,1],[2,3,2,1],[1,0,0,1]],[[1,1,1,1],[2,3,4,1],[2,3,2,1],[1,0,0,1]],[[1,1,1,1],[2,3,3,1],[3,3,2,1],[1,0,0,1]],[[2,1,1,1],[2,3,3,1],[2,3,2,1],[1,0,1,0]],[[1,1,1,1],[3,3,3,1],[2,3,2,1],[1,0,1,0]],[[1,1,1,1],[2,4,3,1],[2,3,2,1],[1,0,1,0]],[[1,1,1,1],[2,3,4,1],[2,3,2,1],[1,0,1,0]],[[1,1,1,1],[2,3,3,1],[3,3,2,1],[1,0,1,0]],[[1,2,0,1],[2,3,3,2],[2,2,1,0],[2,1,2,0]],[[1,2,0,1],[2,3,3,2],[3,2,1,0],[1,1,2,0]],[[1,2,0,1],[2,4,3,2],[2,2,1,0],[1,1,2,0]],[[1,2,0,1],[3,3,3,2],[2,2,1,0],[1,1,2,0]],[[2,2,0,1],[2,3,3,2],[2,2,1,0],[1,1,2,0]],[[1,2,0,1],[2,3,3,2],[3,2,1,0],[0,2,2,0]],[[1,2,0,1],[2,4,3,2],[2,2,1,0],[0,2,2,0]],[[1,2,0,1],[3,3,3,2],[2,2,1,0],[0,2,2,0]],[[2,2,0,1],[2,3,3,2],[2,2,1,0],[0,2,2,0]],[[1,2,0,1],[2,3,3,2],[2,2,0,0],[2,2,2,0]],[[1,2,0,1],[2,3,3,2],[3,2,0,0],[1,2,2,0]],[[1,2,0,1],[2,4,3,2],[2,2,0,0],[1,2,2,0]],[[1,2,0,1],[3,3,3,2],[2,2,0,0],[1,2,2,0]],[[2,2,0,1],[2,3,3,2],[2,2,0,0],[1,2,2,0]],[[1,2,0,1],[3,3,3,2],[2,1,3,1],[1,1,0,0]],[[1,3,0,1],[2,3,3,2],[2,1,3,1],[1,1,0,0]],[[2,2,0,1],[2,3,3,2],[2,1,3,1],[1,1,0,0]],[[1,2,0,1],[3,3,3,2],[2,1,3,1],[0,2,0,0]],[[1,3,0,1],[2,3,3,2],[2,1,3,1],[0,2,0,0]],[[2,2,0,1],[2,3,3,2],[2,1,3,1],[0,2,0,0]],[[2,1,1,1],[2,3,3,1],[2,3,3,0],[1,0,1,0]],[[1,1,1,1],[3,3,3,1],[2,3,3,0],[1,0,1,0]],[[1,1,1,1],[2,4,3,1],[2,3,3,0],[1,0,1,0]],[[1,1,1,1],[2,3,4,1],[2,3,3,0],[1,0,1,0]],[[1,1,1,1],[2,3,3,1],[3,3,3,0],[1,0,1,0]],[[2,1,1,1],[2,3,3,1],[2,3,3,1],[1,0,0,0]],[[1,1,1,1],[3,3,3,1],[2,3,3,1],[1,0,0,0]],[[1,1,1,1],[2,4,3,1],[2,3,3,1],[1,0,0,0]],[[1,1,1,1],[2,3,4,1],[2,3,3,1],[1,0,0,0]],[[1,1,1,1],[2,3,3,1],[3,3,3,1],[1,0,0,0]],[[1,2,0,1],[3,3,3,2],[2,1,2,1],[1,2,0,0]],[[1,3,0,1],[2,3,3,2],[2,1,2,1],[1,2,0,0]],[[2,2,0,1],[2,3,3,2],[2,1,2,1],[1,2,0,0]],[[1,2,0,1],[3,3,3,2],[2,1,2,1],[1,1,1,0]],[[1,3,0,1],[2,3,3,2],[2,1,2,1],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[2,1,2,1],[1,1,1,0]],[[1,2,0,1],[3,3,3,2],[2,1,2,1],[1,1,0,1]],[[1,3,0,1],[2,3,3,2],[2,1,2,1],[1,1,0,1]],[[2,2,0,1],[2,3,3,2],[2,1,2,1],[1,1,0,1]],[[1,2,0,1],[3,3,3,2],[2,1,2,1],[1,0,2,0]],[[1,3,0,1],[2,3,3,2],[2,1,2,1],[1,0,2,0]],[[2,2,0,1],[2,3,3,2],[2,1,2,1],[1,0,2,0]],[[1,2,0,1],[3,3,3,2],[2,1,2,1],[1,0,1,1]],[[1,3,0,1],[2,3,3,2],[2,1,2,1],[1,0,1,1]],[[2,2,0,1],[2,3,3,2],[2,1,2,1],[1,0,1,1]],[[1,2,0,1],[3,3,3,2],[2,1,2,1],[0,2,1,0]],[[1,3,0,1],[2,3,3,2],[2,1,2,1],[0,2,1,0]],[[2,2,0,1],[2,3,3,2],[2,1,2,1],[0,2,1,0]],[[1,2,0,1],[3,3,3,2],[2,1,2,1],[0,2,0,1]],[[1,3,0,1],[2,3,3,2],[2,1,2,1],[0,2,0,1]],[[2,2,0,1],[2,3,3,2],[2,1,2,1],[0,2,0,1]],[[1,2,0,1],[3,3,3,2],[2,1,2,1],[0,1,2,0]],[[1,3,0,1],[2,3,3,2],[2,1,2,1],[0,1,2,0]],[[2,2,0,1],[2,3,3,2],[2,1,2,1],[0,1,2,0]],[[1,2,0,1],[3,3,3,2],[2,1,2,1],[0,1,1,1]],[[1,3,0,1],[2,3,3,2],[2,1,2,1],[0,1,1,1]],[[2,2,0,1],[2,3,3,2],[2,1,2,1],[0,1,1,1]],[[1,2,0,1],[2,3,3,2],[2,1,2,0],[2,2,1,0]],[[1,2,0,1],[2,3,3,2],[3,1,2,0],[1,2,1,0]],[[1,2,0,1],[2,4,3,2],[2,1,2,0],[1,2,1,0]],[[1,2,0,1],[3,3,3,2],[2,1,2,0],[1,2,1,0]],[[2,2,0,1],[2,3,3,2],[2,1,2,0],[1,2,1,0]],[[1,2,0,1],[3,3,3,2],[2,1,2,0],[1,1,1,1]],[[1,3,0,1],[2,3,3,2],[2,1,2,0],[1,1,1,1]],[[2,2,0,1],[2,3,3,2],[2,1,2,0],[1,1,1,1]],[[1,2,0,1],[3,3,3,2],[2,1,2,0],[1,0,2,1]],[[1,3,0,1],[2,3,3,2],[2,1,2,0],[1,0,2,1]],[[2,2,0,1],[2,3,3,2],[2,1,2,0],[1,0,2,1]],[[1,2,0,1],[3,3,3,2],[2,1,2,0],[0,2,1,1]],[[1,3,0,1],[2,3,3,2],[2,1,2,0],[0,2,1,1]],[[2,2,0,1],[2,3,3,2],[2,1,2,0],[0,2,1,1]],[[1,2,0,1],[3,3,3,2],[2,1,2,0],[0,1,2,1]],[[1,3,0,1],[2,3,3,2],[2,1,2,0],[0,1,2,1]],[[2,2,0,1],[2,3,3,2],[2,1,2,0],[0,1,2,1]],[[1,2,0,1],[3,3,3,2],[2,1,1,2],[1,2,0,0]],[[1,3,0,1],[2,3,3,2],[2,1,1,2],[1,2,0,0]],[[2,2,0,1],[2,3,3,2],[2,1,1,2],[1,2,0,0]],[[1,2,0,1],[3,3,3,2],[2,1,1,2],[1,1,1,0]],[[1,3,0,1],[2,3,3,2],[2,1,1,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[2,1,1,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,2],[2,1,1,2],[1,1,0,1]],[[1,3,0,1],[2,3,3,2],[2,1,1,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,2],[2,1,1,2],[1,1,0,1]],[[1,2,0,1],[3,3,3,2],[2,1,1,2],[1,0,2,0]],[[1,3,0,1],[2,3,3,2],[2,1,1,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,2],[2,1,1,2],[1,0,2,0]],[[1,2,0,1],[3,3,3,2],[2,1,1,2],[1,0,1,1]],[[1,3,0,1],[2,3,3,2],[2,1,1,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,2],[2,1,1,2],[1,0,1,1]],[[1,2,0,1],[3,3,3,2],[2,1,1,2],[0,2,1,0]],[[1,3,0,1],[2,3,3,2],[2,1,1,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,2],[2,1,1,2],[0,2,1,0]],[[1,2,0,1],[3,3,3,2],[2,1,1,2],[0,2,0,1]],[[1,3,0,1],[2,3,3,2],[2,1,1,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,2],[2,1,1,2],[0,2,0,1]],[[1,2,0,1],[3,3,3,2],[2,1,1,2],[0,1,2,0]],[[1,3,0,1],[2,3,3,2],[2,1,1,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,2],[2,1,1,2],[0,1,2,0]],[[1,2,0,1],[3,3,3,2],[2,1,1,2],[0,1,1,1]],[[1,3,0,1],[2,3,3,2],[2,1,1,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,2],[2,1,1,2],[0,1,1,1]],[[1,2,0,1],[3,3,3,2],[2,1,1,1],[1,1,2,0]],[[1,3,0,1],[2,3,3,2],[2,1,1,1],[1,1,2,0]],[[2,2,0,1],[2,3,3,2],[2,1,1,1],[1,1,2,0]],[[1,2,0,1],[3,3,3,2],[2,1,1,1],[0,2,2,0]],[[1,3,0,1],[2,3,3,2],[2,1,1,1],[0,2,2,0]],[[2,2,0,1],[2,3,3,2],[2,1,1,1],[0,2,2,0]],[[1,2,0,1],[2,3,3,2],[2,1,1,0],[2,2,2,0]],[[1,2,0,1],[2,3,3,2],[3,1,1,0],[1,2,2,0]],[[1,2,0,1],[2,4,3,2],[2,1,1,0],[1,2,2,0]],[[1,2,0,1],[3,3,3,2],[2,1,1,0],[1,2,2,0]],[[2,2,0,1],[2,3,3,2],[2,1,1,0],[1,2,2,0]],[[1,2,0,1],[3,3,3,2],[2,1,1,0],[1,1,2,1]],[[1,3,0,1],[2,3,3,2],[2,1,1,0],[1,1,2,1]],[[2,2,0,1],[2,3,3,2],[2,1,1,0],[1,1,2,1]],[[1,2,0,1],[3,3,3,2],[2,1,1,0],[0,2,2,1]],[[1,3,0,1],[2,3,3,2],[2,1,1,0],[0,2,2,1]],[[2,2,0,1],[2,3,3,2],[2,1,1,0],[0,2,2,1]],[[1,2,0,1],[3,3,3,2],[2,1,0,2],[1,1,2,0]],[[1,3,0,1],[2,3,3,2],[2,1,0,2],[1,1,2,0]],[[2,2,0,1],[2,3,3,2],[2,1,0,2],[1,1,2,0]],[[1,2,0,1],[3,3,3,2],[2,1,0,2],[1,1,1,1]],[[1,3,0,1],[2,3,3,2],[2,1,0,2],[1,1,1,1]],[[2,2,0,1],[2,3,3,2],[2,1,0,2],[1,1,1,1]],[[1,2,0,1],[3,3,3,2],[2,1,0,2],[1,0,2,1]],[[1,3,0,1],[2,3,3,2],[2,1,0,2],[1,0,2,1]],[[2,2,0,1],[2,3,3,2],[2,1,0,2],[1,0,2,1]],[[1,2,0,1],[3,3,3,2],[2,1,0,2],[0,2,2,0]],[[1,3,0,1],[2,3,3,2],[2,1,0,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,2],[2,1,0,2],[0,2,2,0]],[[1,2,0,1],[3,3,3,2],[2,1,0,2],[0,2,1,1]],[[1,3,0,1],[2,3,3,2],[2,1,0,2],[0,2,1,1]],[[2,2,0,1],[2,3,3,2],[2,1,0,2],[0,2,1,1]],[[1,2,0,1],[3,3,3,2],[2,1,0,2],[0,1,2,1]],[[1,3,0,1],[2,3,3,2],[2,1,0,2],[0,1,2,1]],[[2,2,0,1],[2,3,3,2],[2,1,0,2],[0,1,2,1]],[[1,2,0,1],[3,3,3,2],[2,1,0,1],[1,1,2,1]],[[1,3,0,1],[2,3,3,2],[2,1,0,1],[1,1,2,1]],[[2,2,0,1],[2,3,3,2],[2,1,0,1],[1,1,2,1]],[[1,2,0,1],[3,3,3,2],[2,1,0,1],[0,2,2,1]],[[1,3,0,1],[2,3,3,2],[2,1,0,1],[0,2,2,1]],[[2,2,0,1],[2,3,3,2],[2,1,0,1],[0,2,2,1]],[[1,2,0,1],[3,3,3,2],[2,0,3,2],[1,0,0,1]],[[1,3,0,1],[2,3,3,2],[2,0,3,2],[1,0,0,1]],[[2,2,0,1],[2,3,3,2],[2,0,3,2],[1,0,0,1]],[[1,2,0,1],[3,3,3,2],[2,0,3,2],[0,1,0,1]],[[1,3,0,1],[2,3,3,2],[2,0,3,2],[0,1,0,1]],[[2,2,0,1],[2,3,3,2],[2,0,3,2],[0,1,0,1]],[[1,1,1,2],[2,3,3,2],[0,0,2,2],[0,2,2,1]],[[1,1,1,1],[2,3,4,2],[0,0,2,2],[0,2,2,1]],[[1,1,1,1],[2,3,3,3],[0,0,2,2],[0,2,2,1]],[[1,1,1,1],[2,3,3,2],[0,0,2,3],[0,2,2,1]],[[1,1,1,1],[2,3,3,2],[0,0,2,2],[0,2,3,1]],[[1,1,1,1],[2,3,3,2],[0,0,2,2],[0,2,2,2]],[[1,1,1,2],[2,3,3,2],[0,0,3,2],[0,1,2,1]],[[1,1,1,1],[2,3,4,2],[0,0,3,2],[0,1,2,1]],[[1,1,1,1],[2,3,3,3],[0,0,3,2],[0,1,2,1]],[[1,1,1,1],[2,3,3,2],[0,0,3,3],[0,1,2,1]],[[1,1,1,1],[2,3,3,2],[0,0,3,2],[0,1,2,2]],[[1,1,1,2],[2,3,3,2],[0,0,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,4,2],[0,0,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,3],[0,0,3,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,2],[0,0,3,3],[0,2,1,1]],[[1,1,1,1],[2,3,3,2],[0,0,3,2],[0,2,1,2]],[[1,1,1,2],[2,3,3,2],[0,0,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,2],[0,0,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,3],[0,0,3,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,2],[0,0,3,3],[0,2,2,0]],[[1,1,1,2],[2,3,3,2],[0,1,1,2],[0,2,2,1]],[[1,1,1,1],[2,4,3,2],[0,1,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,4,2],[0,1,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,3,3],[0,1,1,2],[0,2,2,1]],[[1,1,1,1],[2,3,3,2],[0,1,1,3],[0,2,2,1]],[[1,1,1,1],[2,3,3,2],[0,1,1,2],[0,2,3,1]],[[1,1,1,1],[2,3,3,2],[0,1,1,2],[0,2,2,2]],[[1,1,1,2],[2,3,3,2],[0,1,2,2],[0,2,1,1]],[[1,1,1,1],[2,4,3,2],[0,1,2,2],[0,2,1,1]],[[1,1,1,1],[2,3,4,2],[0,1,2,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,3],[0,1,2,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,2],[0,1,2,3],[0,2,1,1]],[[1,1,1,1],[2,3,3,2],[0,1,2,2],[0,2,1,2]],[[1,1,1,2],[2,3,3,2],[0,1,2,2],[0,2,2,0]],[[1,1,1,1],[2,4,3,2],[0,1,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,2],[0,1,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,3],[0,1,2,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,2],[0,1,2,3],[0,2,2,0]],[[1,1,1,2],[2,3,3,2],[0,1,3,0],[0,2,2,1]],[[1,1,1,1],[2,4,3,2],[0,1,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,4,2],[0,1,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,3],[0,1,3,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,2],[0,1,4,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,2],[0,1,3,0],[0,2,3,1]],[[1,1,1,1],[2,3,3,2],[0,1,3,0],[0,2,2,2]],[[2,1,1,1],[2,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,1,1,1],[3,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,1,1,1],[2,4,3,2],[0,1,3,0],[1,2,2,0]],[[1,1,1,1],[2,3,4,2],[0,1,3,0],[1,2,2,0]],[[1,1,1,2],[2,3,3,2],[0,1,3,1],[0,2,1,1]],[[1,1,1,1],[2,4,3,2],[0,1,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,4,2],[0,1,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,3],[0,1,3,1],[0,2,1,1]],[[1,1,1,1],[2,3,3,2],[0,1,4,1],[0,2,1,1]],[[1,1,1,2],[2,3,3,2],[0,1,3,1],[0,2,2,0]],[[1,1,1,1],[2,4,3,2],[0,1,3,1],[0,2,2,0]],[[1,1,1,1],[2,3,4,2],[0,1,3,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,3],[0,1,3,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,2],[0,1,4,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,2],[0,1,3,1],[0,2,3,0]],[[1,2,0,1],[3,3,3,2],[2,0,3,1],[1,1,1,0]],[[1,3,0,1],[2,3,3,2],[2,0,3,1],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[2,0,3,1],[1,1,1,0]],[[1,2,0,1],[3,3,3,2],[2,0,3,1],[1,1,0,1]],[[1,1,1,2],[2,3,3,2],[0,1,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,4,2],[0,1,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,3],[0,1,3,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,2],[0,1,3,3],[0,0,2,1]],[[1,1,1,1],[2,3,3,2],[0,1,3,2],[0,0,2,2]],[[1,1,1,2],[2,3,3,2],[0,1,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,2],[0,1,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,3],[0,1,3,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,2],[0,1,3,3],[0,1,1,1]],[[1,1,1,1],[2,3,3,2],[0,1,3,2],[0,1,1,2]],[[1,1,1,2],[2,3,3,2],[0,1,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,2],[0,1,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,3],[0,1,3,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,2],[0,1,3,3],[0,1,2,0]],[[1,3,0,1],[2,3,3,2],[2,0,3,1],[1,1,0,1]],[[2,2,0,1],[2,3,3,2],[2,0,3,1],[1,1,0,1]],[[1,2,0,1],[3,3,3,2],[2,0,3,1],[1,0,2,0]],[[1,3,0,1],[2,3,3,2],[2,0,3,1],[1,0,2,0]],[[2,2,0,1],[2,3,3,2],[2,0,3,1],[1,0,2,0]],[[1,1,1,2],[2,3,3,2],[0,1,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,2],[0,1,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,3],[0,1,3,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,2],[0,1,3,3],[1,0,1,1]],[[1,1,1,1],[2,3,3,2],[0,1,3,2],[1,0,1,2]],[[1,1,1,2],[2,3,3,2],[0,1,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,2],[0,1,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,3],[0,1,3,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,2],[0,1,3,3],[1,0,2,0]],[[1,2,0,1],[3,3,3,2],[2,0,3,1],[1,0,1,1]],[[1,3,0,1],[2,3,3,2],[2,0,3,1],[1,0,1,1]],[[2,2,0,1],[2,3,3,2],[2,0,3,1],[1,0,1,1]],[[1,2,0,1],[3,3,3,2],[2,0,3,1],[0,2,1,0]],[[1,3,0,1],[2,3,3,2],[2,0,3,1],[0,2,1,0]],[[2,2,0,1],[2,3,3,2],[2,0,3,1],[0,2,1,0]],[[1,2,0,1],[3,3,3,2],[2,0,3,1],[0,2,0,1]],[[1,3,0,1],[2,3,3,2],[2,0,3,1],[0,2,0,1]],[[2,2,0,1],[2,3,3,2],[2,0,3,1],[0,2,0,1]],[[1,2,0,1],[3,3,3,2],[2,0,3,1],[0,1,2,0]],[[1,3,0,1],[2,3,3,2],[2,0,3,1],[0,1,2,0]],[[2,2,0,1],[2,3,3,2],[2,0,3,1],[0,1,2,0]],[[1,2,0,1],[3,3,3,2],[2,0,3,1],[0,1,1,1]],[[1,3,0,1],[2,3,3,2],[2,0,3,1],[0,1,1,1]],[[1,1,1,2],[2,3,3,2],[0,2,0,2],[0,2,2,1]],[[1,1,1,1],[2,4,3,2],[0,2,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,4,2],[0,2,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,3,3],[0,2,0,2],[0,2,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,0,3],[0,2,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,0,2],[0,2,3,1]],[[1,1,1,1],[2,3,3,2],[0,2,0,2],[0,2,2,2]],[[1,1,1,2],[2,3,3,2],[0,2,1,2],[0,1,2,1]],[[1,1,1,1],[2,4,3,2],[0,2,1,2],[0,1,2,1]],[[1,1,1,1],[2,3,4,2],[0,2,1,2],[0,1,2,1]],[[1,1,1,1],[2,3,3,3],[0,2,1,2],[0,1,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,1,3],[0,1,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,1,2],[0,1,3,1]],[[1,1,1,1],[2,3,3,2],[0,2,1,2],[0,1,2,2]],[[1,1,1,2],[2,3,3,2],[0,2,1,2],[1,0,2,1]],[[1,1,1,1],[2,4,3,2],[0,2,1,2],[1,0,2,1]],[[1,1,1,1],[2,3,4,2],[0,2,1,2],[1,0,2,1]],[[1,1,1,1],[2,3,3,3],[0,2,1,2],[1,0,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,1,3],[1,0,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,1,2],[1,0,2,2]],[[2,2,0,1],[2,3,3,2],[2,0,3,1],[0,1,1,1]],[[1,2,0,1],[3,3,3,2],[2,0,3,1],[0,0,2,1]],[[1,3,0,1],[2,3,3,2],[2,0,3,1],[0,0,2,1]],[[2,2,0,1],[2,3,3,2],[2,0,3,1],[0,0,2,1]],[[1,1,1,2],[2,3,3,2],[0,2,2,2],[0,0,2,1]],[[1,1,1,1],[2,4,3,2],[0,2,2,2],[0,0,2,1]],[[1,1,1,1],[2,3,4,2],[0,2,2,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,3],[0,2,2,2],[0,0,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,2,3],[0,0,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,2,2],[0,0,2,2]],[[1,1,1,2],[2,3,3,2],[0,2,2,2],[0,1,1,1]],[[1,1,1,1],[2,4,3,2],[0,2,2,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,2],[0,2,2,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,3],[0,2,2,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,2],[0,2,2,3],[0,1,1,1]],[[1,1,1,1],[2,3,3,2],[0,2,2,2],[0,1,1,2]],[[1,1,1,2],[2,3,3,2],[0,2,2,2],[0,1,2,0]],[[1,1,1,1],[2,4,3,2],[0,2,2,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,2],[0,2,2,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,3],[0,2,2,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,2],[0,2,2,3],[0,1,2,0]],[[1,1,1,2],[2,3,3,2],[0,2,2,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,2],[0,2,2,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,2],[0,2,2,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,3],[0,2,2,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,2],[0,2,2,3],[0,2,0,1]],[[1,1,1,1],[2,3,3,2],[0,2,2,2],[0,2,0,2]],[[1,1,1,2],[2,3,3,2],[0,2,2,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,2],[0,2,2,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,2],[0,2,2,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,3],[0,2,2,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,2],[0,2,2,3],[0,2,1,0]],[[1,1,1,2],[2,3,3,2],[0,2,2,2],[1,0,1,1]],[[1,1,1,1],[2,4,3,2],[0,2,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,2],[0,2,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,3],[0,2,2,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,2],[0,2,2,3],[1,0,1,1]],[[1,1,1,1],[2,3,3,2],[0,2,2,2],[1,0,1,2]],[[1,1,1,2],[2,3,3,2],[0,2,2,2],[1,0,2,0]],[[1,1,1,1],[2,4,3,2],[0,2,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,2],[0,2,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,3],[0,2,2,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,2],[0,2,2,3],[1,0,2,0]],[[1,1,1,2],[2,3,3,2],[0,2,2,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,2],[0,2,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,4,2],[0,2,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,3],[0,2,2,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,2],[0,2,2,3],[1,1,0,1]],[[1,1,1,2],[2,3,3,2],[0,2,2,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,2],[0,2,2,2],[1,1,1,0]],[[1,1,1,1],[2,3,4,2],[0,2,2,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,3],[0,2,2,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,2],[2,0,3,0],[1,1,1,1]],[[1,3,0,1],[2,3,3,2],[2,0,3,0],[1,1,1,1]],[[2,2,0,1],[2,3,3,2],[2,0,3,0],[1,1,1,1]],[[1,2,0,1],[3,3,3,2],[2,0,3,0],[1,0,2,1]],[[1,3,0,1],[2,3,3,2],[2,0,3,0],[1,0,2,1]],[[2,2,0,1],[2,3,3,2],[2,0,3,0],[1,0,2,1]],[[1,2,0,1],[3,3,3,2],[2,0,3,0],[0,2,1,1]],[[1,3,0,1],[2,3,3,2],[2,0,3,0],[0,2,1,1]],[[2,2,0,1],[2,3,3,2],[2,0,3,0],[0,2,1,1]],[[1,2,0,1],[3,3,3,2],[2,0,3,0],[0,1,2,1]],[[1,3,0,1],[2,3,3,2],[2,0,3,0],[0,1,2,1]],[[2,2,0,1],[2,3,3,2],[2,0,3,0],[0,1,2,1]],[[1,1,1,2],[2,3,3,2],[0,2,3,0],[0,1,2,1]],[[1,1,1,1],[2,4,3,2],[0,2,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,4,2],[0,2,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,3],[0,2,3,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,4,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,3,0],[0,1,3,1]],[[1,1,1,1],[2,3,3,2],[0,2,3,0],[0,1,2,2]],[[1,1,1,2],[2,3,3,2],[0,2,3,0],[0,2,1,1]],[[1,1,1,1],[2,4,3,2],[0,2,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,4,2],[0,2,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,3,3],[0,2,3,0],[0,2,1,1]],[[1,1,1,1],[2,3,3,2],[0,2,4,0],[0,2,1,1]],[[1,1,1,2],[2,3,3,2],[0,2,3,0],[1,0,2,1]],[[1,1,1,1],[2,4,3,2],[0,2,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,4,2],[0,2,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,3,3],[0,2,3,0],[1,0,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,4,0],[1,0,2,1]],[[2,1,1,1],[2,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,1,1,1],[3,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,1,1,1],[2,4,3,2],[0,2,3,0],[1,1,2,0]],[[1,1,1,1],[2,3,4,2],[0,2,3,0],[1,1,2,0]],[[2,1,1,1],[2,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,1,1,1],[3,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,1,1,1],[2,4,3,2],[0,2,3,0],[1,2,0,1]],[[1,1,1,1],[2,3,4,2],[0,2,3,0],[1,2,0,1]],[[2,1,1,1],[2,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,1,1,1],[3,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,1,1,1],[2,4,3,2],[0,2,3,0],[1,2,1,0]],[[1,1,1,1],[2,3,4,2],[0,2,3,0],[1,2,1,0]],[[1,1,1,2],[2,3,3,2],[0,2,3,1],[0,0,2,1]],[[1,1,1,1],[2,4,3,2],[0,2,3,1],[0,0,2,1]],[[1,1,1,1],[2,3,4,2],[0,2,3,1],[0,0,2,1]],[[1,1,1,1],[2,3,3,3],[0,2,3,1],[0,0,2,1]],[[1,1,1,1],[2,3,3,2],[0,2,4,1],[0,0,2,1]],[[1,1,1,2],[2,3,3,2],[0,2,3,1],[0,1,1,1]],[[1,1,1,1],[2,4,3,2],[0,2,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,4,2],[0,2,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,3,3],[0,2,3,1],[0,1,1,1]],[[1,1,1,1],[2,3,3,2],[0,2,4,1],[0,1,1,1]],[[1,1,1,2],[2,3,3,2],[0,2,3,1],[0,1,2,0]],[[1,1,1,1],[2,4,3,2],[0,2,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,4,2],[0,2,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,3],[0,2,3,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,2],[0,2,4,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,2],[0,2,3,1],[0,1,3,0]],[[1,1,1,2],[2,3,3,2],[0,2,3,1],[0,2,0,1]],[[1,1,1,1],[2,4,3,2],[0,2,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,4,2],[0,2,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,3,3],[0,2,3,1],[0,2,0,1]],[[1,1,1,1],[2,3,3,2],[0,2,4,1],[0,2,0,1]],[[1,1,1,2],[2,3,3,2],[0,2,3,1],[0,2,1,0]],[[1,1,1,1],[2,4,3,2],[0,2,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,4,2],[0,2,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,3,3],[0,2,3,1],[0,2,1,0]],[[1,1,1,1],[2,3,3,2],[0,2,4,1],[0,2,1,0]],[[1,1,1,2],[2,3,3,2],[0,2,3,1],[1,0,1,1]],[[1,1,1,1],[2,4,3,2],[0,2,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,4,2],[0,2,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,3,3],[0,2,3,1],[1,0,1,1]],[[1,1,1,1],[2,3,3,2],[0,2,4,1],[1,0,1,1]],[[1,1,1,2],[2,3,3,2],[0,2,3,1],[1,0,2,0]],[[1,1,1,1],[2,4,3,2],[0,2,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,4,2],[0,2,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,3,3],[0,2,3,1],[1,0,2,0]],[[1,1,1,1],[2,3,3,2],[0,2,4,1],[1,0,2,0]],[[1,1,1,2],[2,3,3,2],[0,2,3,1],[1,1,0,1]],[[1,1,1,1],[2,4,3,2],[0,2,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,4,2],[0,2,3,1],[1,1,0,1]],[[1,1,1,1],[2,3,3,3],[0,2,3,1],[1,1,0,1]],[[1,1,1,2],[2,3,3,2],[0,2,3,1],[1,1,1,0]],[[1,1,1,1],[2,4,3,2],[0,2,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,4,2],[0,2,3,1],[1,1,1,0]],[[1,1,1,1],[2,3,3,3],[0,2,3,1],[1,1,1,0]],[[1,2,0,1],[3,3,3,2],[2,0,2,2],[1,1,1,0]],[[1,3,0,1],[2,3,3,2],[2,0,2,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[2,0,2,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,2],[2,0,2,2],[1,1,0,1]],[[1,3,0,1],[2,3,3,2],[2,0,2,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,2],[2,0,2,2],[1,1,0,1]],[[1,2,0,1],[3,3,3,2],[2,0,2,2],[1,0,2,0]],[[1,3,0,1],[2,3,3,2],[2,0,2,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,2],[2,0,2,2],[1,0,2,0]],[[1,2,0,1],[3,3,3,2],[2,0,2,2],[1,0,1,1]],[[1,1,1,2],[2,3,3,2],[0,2,3,2],[0,1,0,1]],[[1,1,1,1],[2,4,3,2],[0,2,3,2],[0,1,0,1]],[[1,1,1,1],[2,3,4,2],[0,2,3,2],[0,1,0,1]],[[1,1,1,1],[2,3,3,3],[0,2,3,2],[0,1,0,1]],[[1,1,1,1],[2,3,3,2],[0,2,3,3],[0,1,0,1]],[[1,3,0,1],[2,3,3,2],[2,0,2,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,2],[2,0,2,2],[1,0,1,1]],[[1,2,0,1],[3,3,3,2],[2,0,2,2],[0,2,1,0]],[[1,3,0,1],[2,3,3,2],[2,0,2,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,2],[2,0,2,2],[0,2,1,0]],[[1,2,0,1],[3,3,3,2],[2,0,2,2],[0,2,0,1]],[[1,3,0,1],[2,3,3,2],[2,0,2,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,2],[2,0,2,2],[0,2,0,1]],[[1,1,1,2],[2,3,3,2],[0,2,3,2],[1,0,0,1]],[[1,1,1,1],[2,4,3,2],[0,2,3,2],[1,0,0,1]],[[1,1,1,1],[2,3,4,2],[0,2,3,2],[1,0,0,1]],[[1,1,1,1],[2,3,3,3],[0,2,3,2],[1,0,0,1]],[[1,1,1,1],[2,3,3,2],[0,2,3,3],[1,0,0,1]],[[1,2,0,1],[3,3,3,2],[2,0,2,2],[0,1,2,0]],[[1,3,0,1],[2,3,3,2],[2,0,2,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,2],[2,0,2,2],[0,1,2,0]],[[1,2,0,1],[3,3,3,2],[2,0,2,2],[0,1,1,1]],[[1,3,0,1],[2,3,3,2],[2,0,2,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,2],[2,0,2,2],[0,1,1,1]],[[1,2,0,1],[3,3,3,2],[2,0,2,2],[0,0,2,1]],[[1,3,0,1],[2,3,3,2],[2,0,2,2],[0,0,2,1]],[[2,2,0,1],[2,3,3,2],[2,0,2,2],[0,0,2,1]],[[1,2,0,1],[3,3,3,2],[2,0,2,1],[1,2,1,0]],[[1,3,0,1],[2,3,3,2],[2,0,2,1],[1,2,1,0]],[[2,2,0,1],[2,3,3,2],[2,0,2,1],[1,2,1,0]],[[1,2,0,1],[3,3,3,2],[2,0,2,1],[1,2,0,1]],[[1,3,0,1],[2,3,3,2],[2,0,2,1],[1,2,0,1]],[[2,2,0,1],[2,3,3,2],[2,0,2,1],[1,2,0,1]],[[1,2,0,1],[3,3,3,2],[2,0,2,0],[1,2,1,1]],[[1,3,0,1],[2,3,3,2],[2,0,2,0],[1,2,1,1]],[[2,2,0,1],[2,3,3,2],[2,0,2,0],[1,2,1,1]],[[1,2,0,1],[3,3,3,2],[2,0,1,2],[1,2,1,0]],[[1,3,0,1],[2,3,3,2],[2,0,1,2],[1,2,1,0]],[[2,2,0,1],[2,3,3,2],[2,0,1,2],[1,2,1,0]],[[1,2,0,1],[3,3,3,2],[2,0,1,2],[1,2,0,1]],[[1,3,0,1],[2,3,3,2],[2,0,1,2],[1,2,0,1]],[[2,2,0,1],[2,3,3,2],[2,0,1,2],[1,2,0,1]],[[1,1,1,2],[2,3,3,2],[0,3,0,1],[0,2,2,1]],[[1,1,1,1],[2,4,3,2],[0,3,0,1],[0,2,2,1]],[[1,1,1,1],[2,3,4,2],[0,3,0,1],[0,2,2,1]],[[1,1,1,1],[2,3,3,3],[0,3,0,1],[0,2,2,1]],[[1,1,1,2],[2,3,3,2],[0,3,0,2],[0,1,2,1]],[[1,1,1,1],[2,4,3,2],[0,3,0,2],[0,1,2,1]],[[1,1,1,1],[2,3,4,2],[0,3,0,2],[0,1,2,1]],[[1,1,1,1],[2,3,3,3],[0,3,0,2],[0,1,2,1]],[[1,1,1,1],[2,3,3,2],[0,3,0,3],[0,1,2,1]],[[1,1,1,1],[2,3,3,2],[0,3,0,2],[0,1,3,1]],[[1,1,1,1],[2,3,3,2],[0,3,0,2],[0,1,2,2]],[[1,1,1,2],[2,3,3,2],[0,3,0,2],[0,2,1,1]],[[1,1,1,1],[2,4,3,2],[0,3,0,2],[0,2,1,1]],[[1,1,1,1],[2,3,4,2],[0,3,0,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,3],[0,3,0,2],[0,2,1,1]],[[1,1,1,1],[2,3,3,2],[0,3,0,3],[0,2,1,1]],[[1,1,1,1],[2,3,3,2],[0,3,0,2],[0,2,1,2]],[[1,1,1,2],[2,3,3,2],[0,3,0,2],[0,2,2,0]],[[1,1,1,1],[2,4,3,2],[0,3,0,2],[0,2,2,0]],[[1,1,1,1],[2,3,4,2],[0,3,0,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,3],[0,3,0,2],[0,2,2,0]],[[1,1,1,1],[2,3,3,2],[0,3,0,3],[0,2,2,0]],[[1,1,1,2],[2,3,3,2],[0,3,0,2],[1,0,2,1]],[[1,1,1,1],[2,4,3,2],[0,3,0,2],[1,0,2,1]],[[1,1,1,1],[2,3,4,2],[0,3,0,2],[1,0,2,1]],[[1,1,1,1],[2,3,3,3],[0,3,0,2],[1,0,2,1]],[[1,1,1,1],[2,3,3,2],[0,3,0,3],[1,0,2,1]],[[1,1,1,1],[2,3,3,2],[0,3,0,2],[1,0,2,2]],[[1,2,0,1],[3,3,3,2],[2,0,1,2],[1,0,2,1]],[[1,3,0,1],[2,3,3,2],[2,0,1,2],[1,0,2,1]],[[2,2,0,1],[2,3,3,2],[2,0,1,2],[1,0,2,1]],[[1,1,1,2],[2,3,3,2],[0,3,1,0],[0,2,2,1]],[[1,1,1,1],[2,4,3,2],[0,3,1,0],[0,2,2,1]],[[1,1,1,1],[2,3,4,2],[0,3,1,0],[0,2,2,1]],[[1,1,1,1],[2,3,3,3],[0,3,1,0],[0,2,2,1]],[[2,1,1,1],[2,3,3,2],[0,3,1,0],[1,2,2,0]],[[1,1,1,1],[3,3,3,2],[0,3,1,0],[1,2,2,0]],[[1,1,1,1],[2,4,3,2],[0,3,1,0],[1,2,2,0]],[[1,1,1,1],[2,3,4,2],[0,3,1,0],[1,2,2,0]],[[1,1,1,1],[2,3,3,2],[0,4,1,0],[1,2,2,0]],[[1,1,1,1],[2,3,3,2],[0,3,1,0],[2,2,2,0]],[[1,1,1,1],[2,3,3,2],[0,3,1,0],[1,3,2,0]],[[1,1,1,2],[2,3,3,2],[0,3,1,1],[0,2,2,0]],[[1,1,1,1],[2,4,3,2],[0,3,1,1],[0,2,2,0]],[[1,1,1,1],[2,3,4,2],[0,3,1,1],[0,2,2,0]],[[1,1,1,1],[2,3,3,3],[0,3,1,1],[0,2,2,0]],[[1,2,0,1],[3,3,3,2],[2,0,1,2],[0,1,2,1]],[[1,3,0,1],[2,3,3,2],[2,0,1,2],[0,1,2,1]],[[2,2,0,1],[2,3,3,2],[2,0,1,2],[0,1,2,1]],[[1,1,1,2],[2,3,3,2],[0,3,1,2],[0,1,1,1]],[[1,1,1,1],[2,4,3,2],[0,3,1,2],[0,1,1,1]],[[1,1,1,1],[2,3,4,2],[0,3,1,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,3],[0,3,1,2],[0,1,1,1]],[[1,1,1,1],[2,3,3,2],[0,3,1,3],[0,1,1,1]],[[1,1,1,1],[2,3,3,2],[0,3,1,2],[0,1,1,2]],[[1,1,1,2],[2,3,3,2],[0,3,1,2],[0,1,2,0]],[[1,1,1,1],[2,4,3,2],[0,3,1,2],[0,1,2,0]],[[1,1,1,1],[2,3,4,2],[0,3,1,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,3],[0,3,1,2],[0,1,2,0]],[[1,1,1,1],[2,3,3,2],[0,3,1,3],[0,1,2,0]],[[1,1,1,2],[2,3,3,2],[0,3,1,2],[0,2,0,1]],[[1,1,1,1],[2,4,3,2],[0,3,1,2],[0,2,0,1]],[[1,1,1,1],[2,3,4,2],[0,3,1,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,3],[0,3,1,2],[0,2,0,1]],[[1,1,1,1],[2,3,3,2],[0,3,1,3],[0,2,0,1]],[[1,1,1,1],[2,3,3,2],[0,3,1,2],[0,2,0,2]],[[1,1,1,2],[2,3,3,2],[0,3,1,2],[0,2,1,0]],[[1,1,1,1],[2,4,3,2],[0,3,1,2],[0,2,1,0]],[[1,1,1,1],[2,3,4,2],[0,3,1,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,3],[0,3,1,2],[0,2,1,0]],[[1,1,1,1],[2,3,3,2],[0,3,1,3],[0,2,1,0]],[[1,1,1,2],[2,3,3,2],[0,3,1,2],[1,0,1,1]],[[1,1,1,1],[2,4,3,2],[0,3,1,2],[1,0,1,1]],[[1,1,1,1],[2,3,4,2],[0,3,1,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,3],[0,3,1,2],[1,0,1,1]],[[1,1,1,1],[2,3,3,2],[0,3,1,3],[1,0,1,1]],[[1,1,1,1],[2,3,3,2],[0,3,1,2],[1,0,1,2]],[[1,1,1,2],[2,3,3,2],[0,3,1,2],[1,0,2,0]],[[1,1,1,1],[2,4,3,2],[0,3,1,2],[1,0,2,0]],[[1,1,1,1],[2,3,4,2],[0,3,1,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,3],[0,3,1,2],[1,0,2,0]],[[1,1,1,1],[2,3,3,2],[0,3,1,3],[1,0,2,0]],[[1,1,1,2],[2,3,3,2],[0,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,4,3,2],[0,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,3,4,2],[0,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,3],[0,3,1,2],[1,1,0,1]],[[1,1,1,1],[2,3,3,2],[0,3,1,3],[1,1,0,1]],[[1,1,1,2],[2,3,3,2],[0,3,1,2],[1,1,1,0]],[[1,1,1,1],[2,4,3,2],[0,3,1,2],[1,1,1,0]],[[1,1,1,1],[2,3,4,2],[0,3,1,2],[1,1,1,0]],[[1,1,1,1],[2,3,3,3],[0,3,1,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,2],[2,0,1,1],[1,2,2,0]],[[1,3,0,1],[2,3,3,2],[2,0,1,1],[1,2,2,0]],[[2,2,0,1],[2,3,3,2],[2,0,1,1],[1,2,2,0]],[[1,2,0,1],[3,3,3,2],[2,0,1,0],[1,2,2,1]],[[1,3,0,1],[2,3,3,2],[2,0,1,0],[1,2,2,1]],[[2,2,0,1],[2,3,3,2],[2,0,1,0],[1,2,2,1]],[[1,2,0,1],[3,3,3,2],[2,0,0,2],[1,2,2,0]],[[1,3,0,1],[2,3,3,2],[2,0,0,2],[1,2,2,0]],[[2,2,0,1],[2,3,3,2],[2,0,0,2],[1,2,2,0]],[[1,2,0,1],[3,3,3,2],[2,0,0,2],[1,2,1,1]],[[1,3,0,1],[2,3,3,2],[2,0,0,2],[1,2,1,1]],[[2,2,0,1],[2,3,3,2],[2,0,0,2],[1,2,1,1]],[[1,2,0,1],[3,3,3,2],[2,0,0,2],[1,1,2,1]],[[1,3,0,1],[2,3,3,2],[2,0,0,2],[1,1,2,1]],[[2,2,0,1],[2,3,3,2],[2,0,0,2],[1,1,2,1]],[[1,2,0,1],[3,3,3,2],[2,0,0,2],[0,2,2,1]],[[1,3,0,1],[2,3,3,2],[2,0,0,2],[0,2,2,1]],[[2,2,0,1],[2,3,3,2],[2,0,0,2],[0,2,2,1]],[[1,2,0,1],[3,3,3,2],[2,0,0,1],[1,2,2,1]],[[1,3,0,1],[2,3,3,2],[2,0,0,1],[1,2,2,1]],[[2,2,0,1],[2,3,3,2],[2,0,0,1],[1,2,2,1]],[[1,1,1,2],[2,3,3,2],[0,3,2,0],[0,1,2,1]],[[1,1,1,1],[2,4,3,2],[0,3,2,0],[0,1,2,1]],[[1,1,1,1],[2,3,4,2],[0,3,2,0],[0,1,2,1]],[[1,1,1,1],[2,3,3,3],[0,3,2,0],[0,1,2,1]],[[1,1,1,2],[2,3,3,2],[0,3,2,0],[0,2,1,1]],[[1,1,1,1],[2,4,3,2],[0,3,2,0],[0,2,1,1]],[[1,1,1,1],[2,3,4,2],[0,3,2,0],[0,2,1,1]],[[1,1,1,1],[2,3,3,3],[0,3,2,0],[0,2,1,1]],[[1,1,1,2],[2,3,3,2],[0,3,2,0],[1,0,2,1]],[[1,1,1,1],[2,4,3,2],[0,3,2,0],[1,0,2,1]],[[1,1,1,1],[2,3,4,2],[0,3,2,0],[1,0,2,1]],[[1,1,1,1],[2,3,3,3],[0,3,2,0],[1,0,2,1]],[[2,1,1,1],[2,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,1,1,1],[3,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,1,1,1],[2,4,3,2],[0,3,2,0],[1,1,2,0]],[[1,1,1,1],[2,3,4,2],[0,3,2,0],[1,1,2,0]],[[1,1,1,1],[2,3,3,2],[0,4,2,0],[1,1,2,0]],[[2,1,1,1],[2,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,1,1,1],[3,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,1,1,1],[2,4,3,2],[0,3,2,0],[1,2,0,1]],[[1,1,1,1],[2,3,4,2],[0,3,2,0],[1,2,0,1]],[[1,1,1,1],[2,3,3,2],[0,4,2,0],[1,2,0,1]],[[2,1,1,1],[2,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,1,1,1],[3,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,1,1,1],[2,4,3,2],[0,3,2,0],[1,2,1,0]],[[1,1,1,1],[2,3,4,2],[0,3,2,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,2],[0,4,2,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,2],[0,3,2,0],[2,2,1,0]],[[1,1,1,1],[2,3,3,2],[0,3,2,0],[1,3,1,0]],[[1,1,1,2],[2,3,3,2],[0,3,2,1],[0,1,1,1]],[[1,1,1,1],[2,4,3,2],[0,3,2,1],[0,1,1,1]],[[1,1,1,1],[2,3,4,2],[0,3,2,1],[0,1,1,1]],[[1,1,1,1],[2,3,3,3],[0,3,2,1],[0,1,1,1]],[[1,1,1,2],[2,3,3,2],[0,3,2,1],[0,1,2,0]],[[1,1,1,1],[2,4,3,2],[0,3,2,1],[0,1,2,0]],[[1,1,1,1],[2,3,4,2],[0,3,2,1],[0,1,2,0]],[[1,1,1,1],[2,3,3,3],[0,3,2,1],[0,1,2,0]],[[1,1,1,2],[2,3,3,2],[0,3,2,1],[0,2,0,1]],[[1,1,1,1],[2,4,3,2],[0,3,2,1],[0,2,0,1]],[[1,1,1,1],[2,3,4,2],[0,3,2,1],[0,2,0,1]],[[1,1,1,1],[2,3,3,3],[0,3,2,1],[0,2,0,1]],[[1,1,1,2],[2,3,3,2],[0,3,2,1],[0,2,1,0]],[[1,1,1,1],[2,4,3,2],[0,3,2,1],[0,2,1,0]],[[1,1,1,1],[2,3,4,2],[0,3,2,1],[0,2,1,0]],[[1,1,1,1],[2,3,3,3],[0,3,2,1],[0,2,1,0]],[[1,1,1,2],[2,3,3,2],[0,3,2,1],[1,0,1,1]],[[1,1,1,1],[2,4,3,2],[0,3,2,1],[1,0,1,1]],[[1,1,1,1],[2,3,4,2],[0,3,2,1],[1,0,1,1]],[[1,1,1,1],[2,3,3,3],[0,3,2,1],[1,0,1,1]],[[1,1,1,2],[2,3,3,2],[0,3,2,1],[1,0,2,0]],[[1,1,1,1],[2,4,3,2],[0,3,2,1],[1,0,2,0]],[[1,1,1,1],[2,3,4,2],[0,3,2,1],[1,0,2,0]],[[1,1,1,1],[2,3,3,3],[0,3,2,1],[1,0,2,0]],[[1,1,1,2],[2,3,3,2],[0,3,2,1],[1,1,0,1]],[[1,1,1,1],[2,4,3,2],[0,3,2,1],[1,1,0,1]],[[1,1,1,1],[2,3,4,2],[0,3,2,1],[1,1,0,1]],[[1,1,1,1],[2,3,3,3],[0,3,2,1],[1,1,0,1]],[[1,1,1,2],[2,3,3,2],[0,3,2,1],[1,1,1,0]],[[1,1,1,1],[2,4,3,2],[0,3,2,1],[1,1,1,0]],[[1,1,1,1],[2,3,4,2],[0,3,2,1],[1,1,1,0]],[[1,1,1,1],[2,3,3,3],[0,3,2,1],[1,1,1,0]],[[1,2,0,1],[2,4,3,2],[1,3,3,0],[1,1,0,0]],[[1,2,0,1],[3,3,3,2],[1,3,3,0],[1,1,0,0]],[[2,2,0,1],[2,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,1,1,2],[2,3,3,2],[0,3,2,2],[0,0,1,1]],[[1,1,1,1],[2,4,3,2],[0,3,2,2],[0,0,1,1]],[[1,1,1,1],[2,3,4,2],[0,3,2,2],[0,0,1,1]],[[1,1,1,1],[2,3,3,3],[0,3,2,2],[0,0,1,1]],[[1,1,1,1],[2,3,3,2],[0,3,2,3],[0,0,1,1]],[[1,1,1,1],[2,3,3,2],[0,3,2,2],[0,0,1,2]],[[1,1,1,2],[2,3,3,2],[0,3,2,2],[0,0,2,0]],[[1,1,1,1],[2,4,3,2],[0,3,2,2],[0,0,2,0]],[[1,1,1,1],[2,3,4,2],[0,3,2,2],[0,0,2,0]],[[1,1,1,1],[2,3,3,3],[0,3,2,2],[0,0,2,0]],[[1,1,1,1],[2,3,3,2],[0,3,2,3],[0,0,2,0]],[[1,2,0,1],[2,4,3,2],[1,3,3,0],[0,2,0,0]],[[1,2,0,1],[3,3,3,2],[1,3,3,0],[0,2,0,0]],[[2,2,0,1],[2,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,1,1,2],[2,3,3,2],[0,3,3,0],[0,0,2,1]],[[1,1,1,1],[2,4,3,2],[0,3,3,0],[0,0,2,1]],[[1,1,1,1],[2,3,4,2],[0,3,3,0],[0,0,2,1]],[[1,1,1,1],[2,3,3,3],[0,3,3,0],[0,0,2,1]],[[1,1,1,1],[2,3,3,2],[0,3,4,0],[0,0,2,1]],[[1,2,0,1],[2,4,3,2],[1,3,2,0],[1,2,0,0]],[[1,2,0,1],[3,3,3,2],[1,3,2,0],[1,2,0,0]],[[2,2,0,1],[2,3,3,2],[1,3,2,0],[1,2,0,0]],[[2,1,1,1],[2,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,1,1,1],[3,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,1,1,1],[2,4,3,2],[0,3,3,0],[1,2,0,0]],[[1,1,1,1],[2,3,4,2],[0,3,3,0],[1,2,0,0]],[[1,1,1,1],[2,3,3,2],[0,4,3,0],[1,2,0,0]],[[1,2,0,1],[2,4,3,2],[1,3,2,0],[1,1,1,0]],[[1,2,0,1],[3,3,3,2],[1,3,2,0],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,2,0,1],[2,4,3,2],[1,3,2,0],[1,1,0,1]],[[1,2,0,1],[3,3,3,2],[1,3,2,0],[1,1,0,1]],[[2,2,0,1],[2,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,2,0,1],[2,4,3,2],[1,3,2,0],[1,0,2,0]],[[1,2,0,1],[3,3,3,2],[1,3,2,0],[1,0,2,0]],[[2,2,0,1],[2,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,1,1,2],[2,3,3,2],[0,3,3,1],[0,0,1,1]],[[1,1,1,1],[2,4,3,2],[0,3,3,1],[0,0,1,1]],[[1,1,1,1],[2,3,4,2],[0,3,3,1],[0,0,1,1]],[[1,1,1,1],[2,3,3,3],[0,3,3,1],[0,0,1,1]],[[1,1,1,1],[2,3,3,2],[0,3,4,1],[0,0,1,1]],[[1,1,1,2],[2,3,3,2],[0,3,3,1],[0,0,2,0]],[[1,1,1,1],[2,4,3,2],[0,3,3,1],[0,0,2,0]],[[1,1,1,1],[2,3,4,2],[0,3,3,1],[0,0,2,0]],[[1,1,1,1],[2,3,3,3],[0,3,3,1],[0,0,2,0]],[[1,1,1,1],[2,3,3,2],[0,3,4,1],[0,0,2,0]],[[1,2,0,1],[2,4,3,2],[1,3,2,0],[0,2,1,0]],[[1,2,0,1],[3,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,1,1,2],[2,3,3,2],[0,3,3,1],[0,2,0,0]],[[1,1,1,1],[2,4,3,2],[0,3,3,1],[0,2,0,0]],[[1,1,1,1],[2,3,4,2],[0,3,3,1],[0,2,0,0]],[[1,1,1,1],[2,3,3,3],[0,3,3,1],[0,2,0,0]],[[2,2,0,1],[2,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,2,0,1],[2,4,3,2],[1,3,2,0],[0,2,0,1]],[[1,2,0,1],[3,3,3,2],[1,3,2,0],[0,2,0,1]],[[2,2,0,1],[2,3,3,2],[1,3,2,0],[0,2,0,1]],[[1,2,0,1],[2,4,3,2],[1,3,2,0],[0,1,2,0]],[[1,2,0,1],[3,3,3,2],[1,3,2,0],[0,1,2,0]],[[2,2,0,1],[2,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,1,1,2],[2,3,3,2],[0,3,3,1],[1,1,0,0]],[[1,1,1,1],[2,4,3,2],[0,3,3,1],[1,1,0,0]],[[1,1,1,1],[2,3,4,2],[0,3,3,1],[1,1,0,0]],[[1,1,1,1],[2,3,3,3],[0,3,3,1],[1,1,0,0]],[[1,1,1,2],[2,3,3,2],[0,3,3,2],[0,0,0,1]],[[1,1,1,1],[2,4,3,2],[0,3,3,2],[0,0,0,1]],[[1,1,1,1],[2,3,4,2],[0,3,3,2],[0,0,0,1]],[[1,1,1,1],[2,3,3,3],[0,3,3,2],[0,0,0,1]],[[1,1,1,1],[2,3,3,2],[0,3,3,3],[0,0,0,1]],[[1,2,0,1],[2,4,3,2],[1,3,1,0],[1,1,2,0]],[[1,2,0,1],[3,3,3,2],[1,3,1,0],[1,1,2,0]],[[2,2,0,1],[2,3,3,2],[1,3,1,0],[1,1,2,0]],[[1,2,0,1],[2,4,3,2],[1,3,1,0],[0,2,2,0]],[[1,2,0,1],[3,3,3,2],[1,3,1,0],[0,2,2,0]],[[2,2,0,1],[2,3,3,2],[1,3,1,0],[0,2,2,0]],[[2,1,1,1],[2,3,3,2],[1,0,3,0],[1,2,2,0]],[[1,1,1,1],[3,3,3,2],[1,0,3,0],[1,2,2,0]],[[1,1,1,1],[2,4,3,2],[1,0,3,0],[1,2,2,0]],[[1,1,1,1],[2,3,4,2],[1,0,3,0],[1,2,2,0]],[[2,1,1,1],[2,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,1,1,1],[3,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,1,1,1],[2,4,3,2],[1,1,3,0],[0,2,2,0]],[[1,1,1,1],[2,3,4,2],[1,1,3,0],[0,2,2,0]],[[1,2,0,1],[3,3,3,2],[1,0,0,2],[1,2,2,1]],[[1,3,0,1],[2,3,3,2],[1,0,0,2],[1,2,2,1]],[[2,2,0,1],[2,3,3,2],[1,0,0,2],[1,2,2,1]],[[1,2,0,1],[2,3,3,2],[0,3,3,3],[0,0,0,1]],[[1,2,0,1],[2,3,3,3],[0,3,3,2],[0,0,0,1]],[[1,2,0,1],[2,3,4,2],[0,3,3,2],[0,0,0,1]],[[1,2,0,1],[2,4,3,2],[0,3,3,2],[0,0,0,1]],[[1,2,0,2],[2,3,3,2],[0,3,3,2],[0,0,0,1]],[[1,3,0,1],[2,3,3,2],[0,3,3,2],[0,0,0,1]],[[2,2,0,1],[2,3,3,2],[0,3,3,2],[0,0,0,1]],[[2,1,1,1],[2,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,1,1,1],[3,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,1,1,1],[2,4,3,2],[1,2,3,0],[0,1,1,1]],[[1,1,1,1],[2,3,4,2],[1,2,3,0],[0,1,1,1]],[[2,1,1,1],[2,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,1,1,1],[3,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,1,1,1],[2,4,3,2],[1,2,3,0],[0,1,2,0]],[[1,1,1,1],[2,3,4,2],[1,2,3,0],[0,1,2,0]],[[2,1,1,1],[2,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,1,1,1],[3,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,1,1,1],[2,4,3,2],[1,2,3,0],[0,2,0,1]],[[1,1,1,1],[2,3,4,2],[1,2,3,0],[0,2,0,1]],[[2,1,1,1],[2,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,1,1,1],[3,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,1,1,1],[2,4,3,2],[1,2,3,0],[0,2,1,0]],[[1,1,1,1],[2,3,4,2],[1,2,3,0],[0,2,1,0]],[[2,1,1,1],[2,3,3,2],[1,2,3,0],[1,0,1,1]],[[1,1,1,1],[3,3,3,2],[1,2,3,0],[1,0,1,1]],[[1,1,1,1],[2,4,3,2],[1,2,3,0],[1,0,1,1]],[[1,1,1,1],[2,3,4,2],[1,2,3,0],[1,0,1,1]],[[2,1,1,1],[2,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,1,1,1],[3,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,1,1,1],[2,4,3,2],[1,2,3,0],[1,0,2,0]],[[1,1,1,1],[2,3,4,2],[1,2,3,0],[1,0,2,0]],[[2,1,1,1],[2,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,1,1,1],[3,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,1,1,1],[2,4,3,2],[1,2,3,0],[1,1,0,1]],[[1,1,1,1],[2,3,4,2],[1,2,3,0],[1,1,0,1]],[[2,1,1,1],[2,3,3,2],[1,2,3,0],[1,1,1,0]],[[1,1,1,1],[3,3,3,2],[1,2,3,0],[1,1,1,0]],[[1,1,1,1],[2,4,3,2],[1,2,3,0],[1,1,1,0]],[[1,1,1,1],[2,3,4,2],[1,2,3,0],[1,1,1,0]],[[1,2,0,1],[2,3,3,3],[0,3,3,1],[1,1,0,0]],[[1,2,0,1],[2,3,4,2],[0,3,3,1],[1,1,0,0]],[[1,2,0,1],[2,4,3,2],[0,3,3,1],[1,1,0,0]],[[1,2,0,2],[2,3,3,2],[0,3,3,1],[1,1,0,0]],[[1,3,0,1],[2,3,3,2],[0,3,3,1],[1,1,0,0]],[[2,2,0,1],[2,3,3,2],[0,3,3,1],[1,1,0,0]],[[1,2,0,1],[2,3,3,3],[0,3,3,1],[0,2,0,0]],[[1,2,0,1],[2,3,4,2],[0,3,3,1],[0,2,0,0]],[[1,2,0,1],[2,4,3,2],[0,3,3,1],[0,2,0,0]],[[1,2,0,2],[2,3,3,2],[0,3,3,1],[0,2,0,0]],[[1,3,0,1],[2,3,3,2],[0,3,3,1],[0,2,0,0]],[[2,2,0,1],[2,3,3,2],[0,3,3,1],[0,2,0,0]],[[1,2,0,1],[2,3,3,2],[0,3,4,1],[0,0,2,0]],[[1,2,0,1],[2,3,3,3],[0,3,3,1],[0,0,2,0]],[[1,2,0,1],[2,3,4,2],[0,3,3,1],[0,0,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,3,1],[0,0,2,0]],[[1,2,0,2],[2,3,3,2],[0,3,3,1],[0,0,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,3,1],[0,0,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,3,1],[0,0,2,0]],[[1,2,0,1],[2,3,3,2],[0,3,4,1],[0,0,1,1]],[[1,2,0,1],[2,3,3,3],[0,3,3,1],[0,0,1,1]],[[1,2,0,1],[2,3,4,2],[0,3,3,1],[0,0,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,3,1],[0,0,1,1]],[[1,2,0,2],[2,3,3,2],[0,3,3,1],[0,0,1,1]],[[1,3,0,1],[2,3,3,2],[0,3,3,1],[0,0,1,1]],[[2,2,0,1],[2,3,3,2],[0,3,3,1],[0,0,1,1]],[[1,2,0,1],[2,3,4,2],[0,3,3,0],[1,1,1,0]],[[1,2,0,1],[2,4,3,2],[0,3,3,0],[1,1,1,0]],[[1,3,0,1],[2,3,3,2],[0,3,3,0],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[0,3,3,0],[1,1,1,0]],[[1,2,0,1],[2,3,4,2],[0,3,3,0],[1,0,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,3,0],[1,0,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,3,0],[1,0,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,3,0],[1,0,2,0]],[[1,2,0,1],[2,3,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,0,1],[2,4,3,2],[0,3,3,0],[0,2,1,0]],[[1,3,0,1],[2,3,3,2],[0,3,3,0],[0,2,1,0]],[[2,2,0,1],[2,3,3,2],[0,3,3,0],[0,2,1,0]],[[1,2,0,1],[2,3,4,2],[0,3,3,0],[0,1,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,3,0],[0,1,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,3,0],[0,1,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,3,0],[0,1,2,0]],[[1,2,0,1],[2,3,3,2],[0,3,4,0],[0,0,2,1]],[[1,2,0,1],[2,3,3,3],[0,3,3,0],[0,0,2,1]],[[1,2,0,1],[2,3,4,2],[0,3,3,0],[0,0,2,1]],[[1,2,0,1],[2,4,3,2],[0,3,3,0],[0,0,2,1]],[[1,2,0,2],[2,3,3,2],[0,3,3,0],[0,0,2,1]],[[1,3,0,1],[2,3,3,2],[0,3,3,0],[0,0,2,1]],[[2,2,0,1],[2,3,3,2],[0,3,3,0],[0,0,2,1]],[[1,2,0,1],[2,3,3,2],[0,3,2,3],[0,0,2,0]],[[1,2,0,1],[2,3,3,3],[0,3,2,2],[0,0,2,0]],[[1,2,0,1],[2,3,4,2],[0,3,2,2],[0,0,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,2,2],[0,0,2,0]],[[1,2,0,2],[2,3,3,2],[0,3,2,2],[0,0,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,2,2],[0,0,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,2,2],[0,0,2,0]],[[1,2,0,1],[2,3,3,2],[0,3,2,2],[0,0,1,2]],[[1,2,0,1],[2,3,3,2],[0,3,2,3],[0,0,1,1]],[[1,2,0,1],[2,3,3,3],[0,3,2,2],[0,0,1,1]],[[1,2,0,1],[2,3,4,2],[0,3,2,2],[0,0,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,2,2],[0,0,1,1]],[[1,2,0,2],[2,3,3,2],[0,3,2,2],[0,0,1,1]],[[1,3,0,1],[2,3,3,2],[0,3,2,2],[0,0,1,1]],[[2,2,0,1],[2,3,3,2],[0,3,2,2],[0,0,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,2,1],[1,2,0,0]],[[1,3,0,1],[2,3,3,2],[0,3,2,1],[1,2,0,0]],[[2,2,0,1],[2,3,3,2],[0,3,2,1],[1,2,0,0]],[[1,2,0,1],[2,3,3,3],[0,3,2,1],[1,1,1,0]],[[1,2,0,1],[2,3,4,2],[0,3,2,1],[1,1,1,0]],[[1,2,0,1],[2,4,3,2],[0,3,2,1],[1,1,1,0]],[[1,2,0,2],[2,3,3,2],[0,3,2,1],[1,1,1,0]],[[1,3,0,1],[2,3,3,2],[0,3,2,1],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[0,3,2,1],[1,1,1,0]],[[1,2,0,1],[2,3,3,3],[0,3,2,1],[1,1,0,1]],[[1,2,0,1],[2,3,4,2],[0,3,2,1],[1,1,0,1]],[[1,2,0,1],[2,4,3,2],[0,3,2,1],[1,1,0,1]],[[1,2,0,2],[2,3,3,2],[0,3,2,1],[1,1,0,1]],[[1,3,0,1],[2,3,3,2],[0,3,2,1],[1,1,0,1]],[[2,2,0,1],[2,3,3,2],[0,3,2,1],[1,1,0,1]],[[1,2,0,1],[2,3,3,3],[0,3,2,1],[1,0,2,0]],[[1,2,0,1],[2,3,4,2],[0,3,2,1],[1,0,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,2,1],[1,0,2,0]],[[1,2,0,2],[2,3,3,2],[0,3,2,1],[1,0,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,2,1],[1,0,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,2,1],[1,0,2,0]],[[1,2,0,1],[2,3,3,3],[0,3,2,1],[1,0,1,1]],[[1,2,0,1],[2,3,4,2],[0,3,2,1],[1,0,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,2,1],[1,0,1,1]],[[1,2,0,2],[2,3,3,2],[0,3,2,1],[1,0,1,1]],[[1,3,0,1],[2,3,3,2],[0,3,2,1],[1,0,1,1]],[[2,2,0,1],[2,3,3,2],[0,3,2,1],[1,0,1,1]],[[1,2,0,1],[2,3,3,3],[0,3,2,1],[0,2,1,0]],[[1,2,0,1],[2,3,4,2],[0,3,2,1],[0,2,1,0]],[[1,2,0,1],[2,4,3,2],[0,3,2,1],[0,2,1,0]],[[1,2,0,2],[2,3,3,2],[0,3,2,1],[0,2,1,0]],[[1,3,0,1],[2,3,3,2],[0,3,2,1],[0,2,1,0]],[[2,2,0,1],[2,3,3,2],[0,3,2,1],[0,2,1,0]],[[1,2,0,1],[2,3,3,3],[0,3,2,1],[0,2,0,1]],[[1,2,0,1],[2,3,4,2],[0,3,2,1],[0,2,0,1]],[[1,2,0,1],[2,4,3,2],[0,3,2,1],[0,2,0,1]],[[1,2,0,2],[2,3,3,2],[0,3,2,1],[0,2,0,1]],[[1,3,0,1],[2,3,3,2],[0,3,2,1],[0,2,0,1]],[[2,2,0,1],[2,3,3,2],[0,3,2,1],[0,2,0,1]],[[1,2,0,1],[2,3,3,3],[0,3,2,1],[0,1,2,0]],[[1,2,0,1],[2,3,4,2],[0,3,2,1],[0,1,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,2,1],[0,1,2,0]],[[1,2,0,2],[2,3,3,2],[0,3,2,1],[0,1,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,2,1],[0,1,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,2,1],[0,1,2,0]],[[1,2,0,1],[2,3,3,3],[0,3,2,1],[0,1,1,1]],[[1,2,0,1],[2,3,4,2],[0,3,2,1],[0,1,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,2,1],[0,1,1,1]],[[1,2,0,2],[2,3,3,2],[0,3,2,1],[0,1,1,1]],[[1,3,0,1],[2,3,3,2],[0,3,2,1],[0,1,1,1]],[[2,2,0,1],[2,3,3,2],[0,3,2,1],[0,1,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,2,0],[1,2,1,0]],[[1,2,0,1],[3,3,3,2],[0,3,2,0],[1,2,1,0]],[[2,2,0,1],[2,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,2,0,1],[2,3,4,2],[0,3,2,0],[1,1,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,2,0],[1,1,1,1]],[[1,3,0,1],[2,3,3,2],[0,3,2,0],[1,1,1,1]],[[2,2,0,1],[2,3,3,2],[0,3,2,0],[1,1,1,1]],[[1,2,0,1],[2,3,3,3],[0,3,2,0],[1,0,2,1]],[[1,2,0,1],[2,3,4,2],[0,3,2,0],[1,0,2,1]],[[1,2,0,1],[2,4,3,2],[0,3,2,0],[1,0,2,1]],[[1,2,0,2],[2,3,3,2],[0,3,2,0],[1,0,2,1]],[[1,3,0,1],[2,3,3,2],[0,3,2,0],[1,0,2,1]],[[2,2,0,1],[2,3,3,2],[0,3,2,0],[1,0,2,1]],[[1,2,0,1],[2,3,3,3],[0,3,2,0],[0,2,1,1]],[[1,2,0,1],[2,3,4,2],[0,3,2,0],[0,2,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,2,0],[0,2,1,1]],[[1,2,0,2],[2,3,3,2],[0,3,2,0],[0,2,1,1]],[[1,3,0,1],[2,3,3,2],[0,3,2,0],[0,2,1,1]],[[2,2,0,1],[2,3,3,2],[0,3,2,0],[0,2,1,1]],[[1,2,0,1],[2,3,3,3],[0,3,2,0],[0,1,2,1]],[[1,2,0,1],[2,3,4,2],[0,3,2,0],[0,1,2,1]],[[1,2,0,1],[2,4,3,2],[0,3,2,0],[0,1,2,1]],[[1,2,0,2],[2,3,3,2],[0,3,2,0],[0,1,2,1]],[[1,3,0,1],[2,3,3,2],[0,3,2,0],[0,1,2,1]],[[2,2,0,1],[2,3,3,2],[0,3,2,0],[0,1,2,1]],[[2,1,1,1],[2,3,3,2],[1,3,1,0],[0,2,2,0]],[[1,1,1,1],[3,3,3,2],[1,3,1,0],[0,2,2,0]],[[1,1,1,1],[2,4,3,2],[1,3,1,0],[0,2,2,0]],[[1,1,1,1],[2,3,4,2],[1,3,1,0],[0,2,2,0]],[[1,1,1,1],[2,3,3,2],[1,4,1,0],[0,2,2,0]],[[1,1,1,1],[2,3,3,2],[1,3,1,0],[0,3,2,0]],[[2,1,1,1],[2,3,3,2],[1,3,1,0],[1,1,2,0]],[[1,1,1,1],[3,3,3,2],[1,3,1,0],[1,1,2,0]],[[1,1,1,1],[2,4,3,2],[1,3,1,0],[1,1,2,0]],[[1,1,1,1],[2,3,4,2],[1,3,1,0],[1,1,2,0]],[[1,1,1,1],[2,3,3,2],[1,4,1,0],[1,1,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,1,2],[1,2,0,0]],[[1,3,0,1],[2,3,3,2],[0,3,1,2],[1,2,0,0]],[[2,2,0,1],[2,3,3,2],[0,3,1,2],[1,2,0,0]],[[1,2,0,1],[2,3,3,3],[0,3,1,2],[1,1,1,0]],[[1,2,0,1],[2,3,4,2],[0,3,1,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,2],[0,3,1,2],[1,1,1,0]],[[1,2,0,2],[2,3,3,2],[0,3,1,2],[1,1,1,0]],[[1,3,0,1],[2,3,3,2],[0,3,1,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[0,3,1,2],[1,1,1,0]],[[1,2,0,1],[2,3,3,2],[0,3,1,3],[1,1,0,1]],[[1,2,0,1],[2,3,3,3],[0,3,1,2],[1,1,0,1]],[[1,2,0,1],[2,3,4,2],[0,3,1,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,2],[0,3,1,2],[1,1,0,1]],[[1,2,0,2],[2,3,3,2],[0,3,1,2],[1,1,0,1]],[[1,3,0,1],[2,3,3,2],[0,3,1,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,2],[0,3,1,2],[1,1,0,1]],[[1,2,0,1],[2,3,3,2],[0,3,1,3],[1,0,2,0]],[[1,2,0,1],[2,3,3,3],[0,3,1,2],[1,0,2,0]],[[1,2,0,1],[2,3,4,2],[0,3,1,2],[1,0,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,1,2],[1,0,2,0]],[[1,2,0,2],[2,3,3,2],[0,3,1,2],[1,0,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,1,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,1,2],[1,0,2,0]],[[1,2,0,1],[2,3,3,2],[0,3,1,2],[1,0,1,2]],[[1,2,0,1],[2,3,3,2],[0,3,1,3],[1,0,1,1]],[[1,2,0,1],[2,3,3,3],[0,3,1,2],[1,0,1,1]],[[1,2,0,1],[2,3,4,2],[0,3,1,2],[1,0,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,1,2],[1,0,1,1]],[[1,2,0,2],[2,3,3,2],[0,3,1,2],[1,0,1,1]],[[1,3,0,1],[2,3,3,2],[0,3,1,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,2],[0,3,1,2],[1,0,1,1]],[[1,2,0,1],[2,3,3,2],[0,3,1,3],[0,2,1,0]],[[1,2,0,1],[2,3,3,3],[0,3,1,2],[0,2,1,0]],[[1,2,0,1],[2,3,4,2],[0,3,1,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,2],[0,3,1,2],[0,2,1,0]],[[1,2,0,2],[2,3,3,2],[0,3,1,2],[0,2,1,0]],[[1,3,0,1],[2,3,3,2],[0,3,1,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,2],[0,3,1,2],[0,2,1,0]],[[1,2,0,1],[2,3,3,2],[0,3,1,2],[0,2,0,2]],[[1,2,0,1],[2,3,3,2],[0,3,1,3],[0,2,0,1]],[[1,2,0,1],[2,3,3,3],[0,3,1,2],[0,2,0,1]],[[1,2,0,1],[2,3,4,2],[0,3,1,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,2],[0,3,1,2],[0,2,0,1]],[[1,2,0,2],[2,3,3,2],[0,3,1,2],[0,2,0,1]],[[1,3,0,1],[2,3,3,2],[0,3,1,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,2],[0,3,1,2],[0,2,0,1]],[[1,2,0,1],[2,3,3,2],[0,3,1,3],[0,1,2,0]],[[1,2,0,1],[2,3,3,3],[0,3,1,2],[0,1,2,0]],[[1,2,0,1],[2,3,4,2],[0,3,1,2],[0,1,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,1,2],[0,1,2,0]],[[1,2,0,2],[2,3,3,2],[0,3,1,2],[0,1,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,1,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,1,2],[0,1,2,0]],[[1,2,0,1],[2,3,3,2],[0,3,1,2],[0,1,1,2]],[[1,2,0,1],[2,3,3,2],[0,3,1,3],[0,1,1,1]],[[1,2,0,1],[2,3,3,3],[0,3,1,2],[0,1,1,1]],[[1,2,0,1],[2,3,4,2],[0,3,1,2],[0,1,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,1,2],[0,1,1,1]],[[1,2,0,2],[2,3,3,2],[0,3,1,2],[0,1,1,1]],[[1,3,0,1],[2,3,3,2],[0,3,1,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,2],[0,3,1,2],[0,1,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,1,1],[1,1,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,1,1],[1,1,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,1,1],[1,1,2,0]],[[1,2,0,1],[2,3,3,3],[0,3,1,1],[0,2,2,0]],[[1,2,0,1],[2,3,4,2],[0,3,1,1],[0,2,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,1,1],[0,2,2,0]],[[1,2,0,2],[2,3,3,2],[0,3,1,1],[0,2,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,1,1],[0,2,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,1,1],[0,2,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,1,0],[1,2,2,0]],[[1,2,0,1],[3,3,3,2],[0,3,1,0],[1,2,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,1,0],[1,2,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,1,0],[1,1,2,1]],[[1,3,0,1],[2,3,3,2],[0,3,1,0],[1,1,2,1]],[[2,2,0,1],[2,3,3,2],[0,3,1,0],[1,1,2,1]],[[1,2,0,1],[2,3,3,3],[0,3,1,0],[0,2,2,1]],[[1,2,0,1],[2,3,4,2],[0,3,1,0],[0,2,2,1]],[[1,2,0,1],[2,4,3,2],[0,3,1,0],[0,2,2,1]],[[1,2,0,2],[2,3,3,2],[0,3,1,0],[0,2,2,1]],[[1,3,0,1],[2,3,3,2],[0,3,1,0],[0,2,2,1]],[[2,2,0,1],[2,3,3,2],[0,3,1,0],[0,2,2,1]],[[2,1,1,1],[2,3,3,2],[1,3,2,0],[0,1,1,1]],[[1,1,1,1],[3,3,3,2],[1,3,2,0],[0,1,1,1]],[[1,1,1,1],[2,4,3,2],[1,3,2,0],[0,1,1,1]],[[1,1,1,1],[2,3,4,2],[1,3,2,0],[0,1,1,1]],[[2,1,1,1],[2,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,1,1,1],[3,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,1,1,1],[2,4,3,2],[1,3,2,0],[0,1,2,0]],[[1,1,1,1],[2,3,4,2],[1,3,2,0],[0,1,2,0]],[[1,1,1,1],[2,3,3,2],[1,4,2,0],[0,1,2,0]],[[2,1,1,1],[2,3,3,2],[1,3,2,0],[0,2,0,1]],[[1,1,1,1],[3,3,3,2],[1,3,2,0],[0,2,0,1]],[[1,1,1,1],[2,4,3,2],[1,3,2,0],[0,2,0,1]],[[1,1,1,1],[2,3,4,2],[1,3,2,0],[0,2,0,1]],[[1,1,1,1],[2,3,3,2],[1,4,2,0],[0,2,0,1]],[[2,1,1,1],[2,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,1,1,1],[3,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,1,1,1],[2,4,3,2],[1,3,2,0],[0,2,1,0]],[[1,1,1,1],[2,3,4,2],[1,3,2,0],[0,2,1,0]],[[1,1,1,1],[2,3,3,2],[1,4,2,0],[0,2,1,0]],[[1,1,1,1],[2,3,3,2],[1,3,2,0],[0,3,1,0]],[[2,1,1,1],[2,3,3,2],[1,3,2,0],[1,0,1,1]],[[1,1,1,1],[3,3,3,2],[1,3,2,0],[1,0,1,1]],[[1,1,1,1],[2,4,3,2],[1,3,2,0],[1,0,1,1]],[[1,1,1,1],[2,3,4,2],[1,3,2,0],[1,0,1,1]],[[2,1,1,1],[2,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,1,1,1],[3,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,1,1,1],[2,4,3,2],[1,3,2,0],[1,0,2,0]],[[1,1,1,1],[2,3,4,2],[1,3,2,0],[1,0,2,0]],[[1,1,1,1],[2,3,3,2],[1,4,2,0],[1,0,2,0]],[[2,1,1,1],[2,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,1,1,1],[3,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,1,1,1],[2,4,3,2],[1,3,2,0],[1,1,0,1]],[[1,1,1,1],[2,3,4,2],[1,3,2,0],[1,1,0,1]],[[1,1,1,1],[2,3,3,2],[1,4,2,0],[1,1,0,1]],[[2,1,1,1],[2,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,1,1,1],[3,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,1,1,1],[2,4,3,2],[1,3,2,0],[1,1,1,0]],[[1,1,1,1],[2,3,4,2],[1,3,2,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,2],[1,4,2,0],[1,1,1,0]],[[2,1,1,1],[2,3,3,2],[1,3,2,0],[1,2,0,0]],[[1,1,1,1],[3,3,3,2],[1,3,2,0],[1,2,0,0]],[[1,1,1,1],[2,4,3,2],[1,3,2,0],[1,2,0,0]],[[1,1,1,1],[2,3,4,2],[1,3,2,0],[1,2,0,0]],[[1,1,1,1],[2,3,3,2],[1,4,2,0],[1,2,0,0]],[[1,2,0,1],[2,4,3,2],[0,3,0,2],[1,1,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,0,2],[1,1,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,0,2],[1,1,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,0,2],[1,1,1,1]],[[1,3,0,1],[2,3,3,2],[0,3,0,2],[1,1,1,1]],[[2,2,0,1],[2,3,3,2],[0,3,0,2],[1,1,1,1]],[[1,2,0,1],[2,3,3,2],[0,3,0,2],[1,0,2,2]],[[1,2,0,1],[2,3,3,2],[0,3,0,3],[1,0,2,1]],[[1,2,0,1],[2,3,3,3],[0,3,0,2],[1,0,2,1]],[[1,2,0,1],[2,3,4,2],[0,3,0,2],[1,0,2,1]],[[1,2,0,1],[2,4,3,2],[0,3,0,2],[1,0,2,1]],[[1,2,0,2],[2,3,3,2],[0,3,0,2],[1,0,2,1]],[[1,3,0,1],[2,3,3,2],[0,3,0,2],[1,0,2,1]],[[2,2,0,1],[2,3,3,2],[0,3,0,2],[1,0,2,1]],[[1,2,0,1],[2,3,3,2],[0,3,0,3],[0,2,2,0]],[[1,2,0,1],[2,3,3,3],[0,3,0,2],[0,2,2,0]],[[1,2,0,1],[2,3,4,2],[0,3,0,2],[0,2,2,0]],[[1,2,0,1],[2,4,3,2],[0,3,0,2],[0,2,2,0]],[[1,2,0,2],[2,3,3,2],[0,3,0,2],[0,2,2,0]],[[1,3,0,1],[2,3,3,2],[0,3,0,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,2],[0,3,0,2],[0,2,2,0]],[[1,2,0,1],[2,3,3,2],[0,3,0,2],[0,2,1,2]],[[1,2,0,1],[2,3,3,2],[0,3,0,3],[0,2,1,1]],[[1,2,0,1],[2,3,3,3],[0,3,0,2],[0,2,1,1]],[[1,2,0,1],[2,3,4,2],[0,3,0,2],[0,2,1,1]],[[1,2,0,1],[2,4,3,2],[0,3,0,2],[0,2,1,1]],[[1,2,0,2],[2,3,3,2],[0,3,0,2],[0,2,1,1]],[[1,3,0,1],[2,3,3,2],[0,3,0,2],[0,2,1,1]],[[2,2,0,1],[2,3,3,2],[0,3,0,2],[0,2,1,1]],[[1,2,0,1],[2,3,3,2],[0,3,0,2],[0,1,2,2]],[[1,2,0,1],[2,3,3,2],[0,3,0,2],[0,1,3,1]],[[1,2,0,1],[2,3,3,2],[0,3,0,3],[0,1,2,1]],[[1,2,0,1],[2,3,3,3],[0,3,0,2],[0,1,2,1]],[[1,2,0,1],[2,3,4,2],[0,3,0,2],[0,1,2,1]],[[1,2,0,1],[2,4,3,2],[0,3,0,2],[0,1,2,1]],[[1,2,0,2],[2,3,3,2],[0,3,0,2],[0,1,2,1]],[[1,3,0,1],[2,3,3,2],[0,3,0,2],[0,1,2,1]],[[2,2,0,1],[2,3,3,2],[0,3,0,2],[0,1,2,1]],[[1,2,0,1],[2,4,3,2],[0,3,0,1],[1,1,2,1]],[[1,3,0,1],[2,3,3,2],[0,3,0,1],[1,1,2,1]],[[2,2,0,1],[2,3,3,2],[0,3,0,1],[1,1,2,1]],[[1,2,0,1],[2,3,3,3],[0,3,0,1],[0,2,2,1]],[[1,2,0,1],[2,3,4,2],[0,3,0,1],[0,2,2,1]],[[1,2,0,1],[2,4,3,2],[0,3,0,1],[0,2,2,1]],[[1,2,0,2],[2,3,3,2],[0,3,0,1],[0,2,2,1]],[[1,3,0,1],[2,3,3,2],[0,3,0,1],[0,2,2,1]],[[2,2,0,1],[2,3,3,2],[0,3,0,1],[0,2,2,1]],[[1,2,0,1],[2,3,3,2],[0,2,3,3],[1,0,0,1]],[[1,2,0,1],[2,3,3,3],[0,2,3,2],[1,0,0,1]],[[1,2,0,1],[2,3,4,2],[0,2,3,2],[1,0,0,1]],[[1,2,0,1],[2,4,3,2],[0,2,3,2],[1,0,0,1]],[[1,2,0,2],[2,3,3,2],[0,2,3,2],[1,0,0,1]],[[1,3,0,1],[2,3,3,2],[0,2,3,2],[1,0,0,1]],[[2,2,0,1],[2,3,3,2],[0,2,3,2],[1,0,0,1]],[[1,2,0,1],[2,3,3,2],[0,2,3,3],[0,1,0,1]],[[1,2,0,1],[2,3,3,3],[0,2,3,2],[0,1,0,1]],[[1,2,0,1],[2,3,4,2],[0,2,3,2],[0,1,0,1]],[[1,2,0,1],[2,4,3,2],[0,2,3,2],[0,1,0,1]],[[1,2,0,2],[2,3,3,2],[0,2,3,2],[0,1,0,1]],[[1,3,0,1],[2,3,3,2],[0,2,3,2],[0,1,0,1]],[[2,2,0,1],[2,3,3,2],[0,2,3,2],[0,1,0,1]],[[1,2,0,1],[2,3,3,3],[0,2,3,1],[1,1,1,0]],[[1,2,0,1],[2,3,4,2],[0,2,3,1],[1,1,1,0]],[[1,2,0,1],[2,4,3,2],[0,2,3,1],[1,1,1,0]],[[1,2,0,2],[2,3,3,2],[0,2,3,1],[1,1,1,0]],[[1,3,0,1],[2,3,3,2],[0,2,3,1],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[0,2,3,1],[1,1,1,0]],[[1,2,0,1],[2,3,3,3],[0,2,3,1],[1,1,0,1]],[[1,2,0,1],[2,3,4,2],[0,2,3,1],[1,1,0,1]],[[1,2,0,1],[2,4,3,2],[0,2,3,1],[1,1,0,1]],[[1,2,0,2],[2,3,3,2],[0,2,3,1],[1,1,0,1]],[[1,3,0,1],[2,3,3,2],[0,2,3,1],[1,1,0,1]],[[2,2,0,1],[2,3,3,2],[0,2,3,1],[1,1,0,1]],[[1,2,0,1],[2,3,3,2],[0,2,4,1],[1,0,2,0]],[[1,2,0,1],[2,3,3,3],[0,2,3,1],[1,0,2,0]],[[1,2,0,1],[2,3,4,2],[0,2,3,1],[1,0,2,0]],[[1,2,0,1],[2,4,3,2],[0,2,3,1],[1,0,2,0]],[[1,2,0,2],[2,3,3,2],[0,2,3,1],[1,0,2,0]],[[1,3,0,1],[2,3,3,2],[0,2,3,1],[1,0,2,0]],[[2,2,0,1],[2,3,3,2],[0,2,3,1],[1,0,2,0]],[[1,2,0,1],[2,3,3,2],[0,2,4,1],[1,0,1,1]],[[1,2,0,1],[2,3,3,3],[0,2,3,1],[1,0,1,1]],[[1,2,0,1],[2,3,4,2],[0,2,3,1],[1,0,1,1]],[[1,2,0,1],[2,4,3,2],[0,2,3,1],[1,0,1,1]],[[1,2,0,2],[2,3,3,2],[0,2,3,1],[1,0,1,1]],[[1,3,0,1],[2,3,3,2],[0,2,3,1],[1,0,1,1]],[[2,2,0,1],[2,3,3,2],[0,2,3,1],[1,0,1,1]],[[1,2,0,1],[2,3,3,2],[0,2,4,1],[0,2,1,0]],[[1,2,0,1],[2,3,3,3],[0,2,3,1],[0,2,1,0]],[[1,2,0,1],[2,3,4,2],[0,2,3,1],[0,2,1,0]],[[1,2,0,1],[2,4,3,2],[0,2,3,1],[0,2,1,0]],[[1,2,0,2],[2,3,3,2],[0,2,3,1],[0,2,1,0]],[[1,3,0,1],[2,3,3,2],[0,2,3,1],[0,2,1,0]],[[2,2,0,1],[2,3,3,2],[0,2,3,1],[0,2,1,0]],[[1,2,0,1],[2,3,3,2],[0,2,4,1],[0,2,0,1]],[[1,2,0,1],[2,3,3,3],[0,2,3,1],[0,2,0,1]],[[1,2,0,1],[2,3,4,2],[0,2,3,1],[0,2,0,1]],[[1,2,0,1],[2,4,3,2],[0,2,3,1],[0,2,0,1]],[[1,2,0,2],[2,3,3,2],[0,2,3,1],[0,2,0,1]],[[1,3,0,1],[2,3,3,2],[0,2,3,1],[0,2,0,1]],[[2,2,0,1],[2,3,3,2],[0,2,3,1],[0,2,0,1]],[[1,2,0,1],[2,3,3,2],[0,2,3,1],[0,1,3,0]],[[1,2,0,1],[2,3,3,2],[0,2,4,1],[0,1,2,0]],[[1,2,0,1],[2,3,3,3],[0,2,3,1],[0,1,2,0]],[[1,2,0,1],[2,3,4,2],[0,2,3,1],[0,1,2,0]],[[1,2,0,1],[2,4,3,2],[0,2,3,1],[0,1,2,0]],[[1,2,0,2],[2,3,3,2],[0,2,3,1],[0,1,2,0]],[[1,3,0,1],[2,3,3,2],[0,2,3,1],[0,1,2,0]],[[2,2,0,1],[2,3,3,2],[0,2,3,1],[0,1,2,0]],[[1,2,0,1],[2,3,3,2],[0,2,4,1],[0,1,1,1]],[[1,2,0,1],[2,3,3,3],[0,2,3,1],[0,1,1,1]],[[1,2,0,1],[2,3,4,2],[0,2,3,1],[0,1,1,1]],[[1,2,0,1],[2,4,3,2],[0,2,3,1],[0,1,1,1]],[[1,2,0,2],[2,3,3,2],[0,2,3,1],[0,1,1,1]],[[1,3,0,1],[2,3,3,2],[0,2,3,1],[0,1,1,1]],[[2,2,0,1],[2,3,3,2],[0,2,3,1],[0,1,1,1]],[[1,2,0,1],[2,3,3,2],[0,2,4,1],[0,0,2,1]],[[1,2,0,1],[2,3,3,3],[0,2,3,1],[0,0,2,1]],[[1,2,0,1],[2,3,4,2],[0,2,3,1],[0,0,2,1]],[[1,2,0,1],[2,4,3,2],[0,2,3,1],[0,0,2,1]],[[1,2,0,2],[2,3,3,2],[0,2,3,1],[0,0,2,1]],[[1,3,0,1],[2,3,3,2],[0,2,3,1],[0,0,2,1]],[[2,2,0,1],[2,3,3,2],[0,2,3,1],[0,0,2,1]],[[1,2,0,1],[2,3,4,2],[0,2,3,0],[1,1,1,1]],[[1,2,0,1],[2,4,3,2],[0,2,3,0],[1,1,1,1]],[[1,3,0,1],[2,3,3,2],[0,2,3,0],[1,1,1,1]],[[2,2,0,1],[2,3,3,2],[0,2,3,0],[1,1,1,1]],[[1,2,0,1],[2,3,3,2],[0,2,4,0],[1,0,2,1]],[[1,2,0,1],[2,3,3,3],[0,2,3,0],[1,0,2,1]],[[1,2,0,1],[2,3,4,2],[0,2,3,0],[1,0,2,1]],[[1,2,0,1],[2,4,3,2],[0,2,3,0],[1,0,2,1]],[[1,2,0,2],[2,3,3,2],[0,2,3,0],[1,0,2,1]],[[1,3,0,1],[2,3,3,2],[0,2,3,0],[1,0,2,1]],[[2,2,0,1],[2,3,3,2],[0,2,3,0],[1,0,2,1]],[[1,2,0,1],[2,3,3,2],[0,2,4,0],[0,2,1,1]],[[1,2,0,1],[2,3,3,3],[0,2,3,0],[0,2,1,1]],[[1,2,0,1],[2,3,4,2],[0,2,3,0],[0,2,1,1]],[[1,2,0,1],[2,4,3,2],[0,2,3,0],[0,2,1,1]],[[1,2,0,2],[2,3,3,2],[0,2,3,0],[0,2,1,1]],[[1,3,0,1],[2,3,3,2],[0,2,3,0],[0,2,1,1]],[[2,2,0,1],[2,3,3,2],[0,2,3,0],[0,2,1,1]],[[1,2,0,1],[2,3,3,2],[0,2,3,0],[0,1,2,2]],[[1,2,0,1],[2,3,3,2],[0,2,3,0],[0,1,3,1]],[[1,2,0,1],[2,3,3,2],[0,2,4,0],[0,1,2,1]],[[1,2,0,1],[2,3,3,3],[0,2,3,0],[0,1,2,1]],[[1,2,0,1],[2,3,4,2],[0,2,3,0],[0,1,2,1]],[[1,2,0,1],[2,4,3,2],[0,2,3,0],[0,1,2,1]],[[1,2,0,2],[2,3,3,2],[0,2,3,0],[0,1,2,1]],[[1,3,0,1],[2,3,3,2],[0,2,3,0],[0,1,2,1]],[[2,2,0,1],[2,3,3,2],[0,2,3,0],[0,1,2,1]],[[2,1,1,1],[2,3,3,2],[1,3,3,0],[0,0,1,1]],[[1,1,1,1],[3,3,3,2],[1,3,3,0],[0,0,1,1]],[[1,1,1,1],[2,4,3,2],[1,3,3,0],[0,0,1,1]],[[1,1,1,1],[2,3,4,2],[1,3,3,0],[0,0,1,1]],[[2,1,1,1],[2,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,1,1,1],[3,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,1,1,1],[2,4,3,2],[1,3,3,0],[0,0,2,0]],[[1,1,1,1],[2,3,4,2],[1,3,3,0],[0,0,2,0]],[[2,1,1,1],[2,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,1,1,1],[3,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,1,1,1],[2,4,3,2],[1,3,3,0],[0,2,0,0]],[[1,1,1,1],[2,3,4,2],[1,3,3,0],[0,2,0,0]],[[1,1,1,1],[2,3,3,2],[1,4,3,0],[0,2,0,0]],[[1,2,0,1],[2,3,3,3],[0,2,2,2],[1,1,1,0]],[[1,2,0,1],[2,3,4,2],[0,2,2,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,2],[0,2,2,2],[1,1,1,0]],[[1,2,0,2],[2,3,3,2],[0,2,2,2],[1,1,1,0]],[[1,3,0,1],[2,3,3,2],[0,2,2,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,2],[0,2,2,2],[1,1,1,0]],[[1,2,0,1],[2,3,3,2],[0,2,2,3],[1,1,0,1]],[[1,2,0,1],[2,3,3,3],[0,2,2,2],[1,1,0,1]],[[1,2,0,1],[2,3,4,2],[0,2,2,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,2],[0,2,2,2],[1,1,0,1]],[[1,2,0,2],[2,3,3,2],[0,2,2,2],[1,1,0,1]],[[1,3,0,1],[2,3,3,2],[0,2,2,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,2],[0,2,2,2],[1,1,0,1]],[[2,1,1,1],[2,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,1,1,1],[3,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,1,1,1],[2,4,3,2],[1,3,3,0],[1,1,0,0]],[[1,1,1,1],[2,3,4,2],[1,3,3,0],[1,1,0,0]],[[1,1,1,1],[2,3,3,2],[1,4,3,0],[1,1,0,0]],[[1,2,0,1],[2,3,3,2],[0,2,2,3],[1,0,2,0]],[[1,2,0,1],[2,3,3,3],[0,2,2,2],[1,0,2,0]],[[1,2,0,1],[2,3,4,2],[0,2,2,2],[1,0,2,0]],[[1,2,0,1],[2,4,3,2],[0,2,2,2],[1,0,2,0]],[[1,2,0,2],[2,3,3,2],[0,2,2,2],[1,0,2,0]],[[1,3,0,1],[2,3,3,2],[0,2,2,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,2],[0,2,2,2],[1,0,2,0]],[[1,2,0,1],[2,3,3,2],[0,2,2,2],[1,0,1,2]],[[1,2,0,1],[2,3,3,2],[0,2,2,3],[1,0,1,1]],[[1,2,0,1],[2,3,3,3],[0,2,2,2],[1,0,1,1]],[[1,2,0,1],[2,3,4,2],[0,2,2,2],[1,0,1,1]],[[1,2,0,1],[2,4,3,2],[0,2,2,2],[1,0,1,1]],[[1,2,0,2],[2,3,3,2],[0,2,2,2],[1,0,1,1]],[[1,3,0,1],[2,3,3,2],[0,2,2,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,2],[0,2,2,2],[1,0,1,1]],[[1,2,0,1],[2,3,3,2],[0,2,2,3],[0,2,1,0]],[[1,2,0,1],[2,3,3,3],[0,2,2,2],[0,2,1,0]],[[1,2,0,1],[2,3,4,2],[0,2,2,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,2],[0,2,2,2],[0,2,1,0]],[[1,2,0,2],[2,3,3,2],[0,2,2,2],[0,2,1,0]],[[1,3,0,1],[2,3,3,2],[0,2,2,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,2],[0,2,2,2],[0,2,1,0]],[[1,2,0,1],[2,3,3,2],[0,2,2,2],[0,2,0,2]],[[1,2,0,1],[2,3,3,2],[0,2,2,3],[0,2,0,1]],[[1,2,0,1],[2,3,3,3],[0,2,2,2],[0,2,0,1]],[[1,2,0,1],[2,3,4,2],[0,2,2,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,2],[0,2,2,2],[0,2,0,1]],[[1,2,0,2],[2,3,3,2],[0,2,2,2],[0,2,0,1]],[[1,3,0,1],[2,3,3,2],[0,2,2,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,2],[0,2,2,2],[0,2,0,1]],[[1,2,0,1],[2,3,3,2],[0,2,2,3],[0,1,2,0]],[[1,2,0,1],[2,3,3,3],[0,2,2,2],[0,1,2,0]],[[1,2,0,1],[2,3,4,2],[0,2,2,2],[0,1,2,0]],[[1,2,0,1],[2,4,3,2],[0,2,2,2],[0,1,2,0]],[[1,2,0,2],[2,3,3,2],[0,2,2,2],[0,1,2,0]],[[1,3,0,1],[2,3,3,2],[0,2,2,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,2],[0,2,2,2],[0,1,2,0]],[[1,2,0,1],[2,3,3,2],[0,2,2,2],[0,1,1,2]],[[1,2,0,1],[2,3,3,2],[0,2,2,3],[0,1,1,1]],[[1,2,0,1],[2,3,3,3],[0,2,2,2],[0,1,1,1]],[[1,2,0,1],[2,3,4,2],[0,2,2,2],[0,1,1,1]],[[1,2,0,1],[2,4,3,2],[0,2,2,2],[0,1,1,1]],[[1,2,0,2],[2,3,3,2],[0,2,2,2],[0,1,1,1]],[[1,3,0,1],[2,3,3,2],[0,2,2,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,2],[0,2,2,2],[0,1,1,1]],[[1,2,0,1],[2,3,3,2],[0,2,2,2],[0,0,2,2]],[[1,2,0,1],[2,3,3,2],[0,2,2,3],[0,0,2,1]],[[1,2,0,1],[2,3,3,3],[0,2,2,2],[0,0,2,1]],[[1,2,0,1],[2,3,4,2],[0,2,2,2],[0,0,2,1]],[[1,2,0,1],[2,4,3,2],[0,2,2,2],[0,0,2,1]],[[1,2,0,2],[2,3,3,2],[0,2,2,2],[0,0,2,1]],[[1,3,0,1],[2,3,3,2],[0,2,2,2],[0,0,2,1]],[[2,2,0,1],[2,3,3,2],[0,2,2,2],[0,0,2,1]],[[1,2,0,1],[2,3,3,2],[0,2,1,2],[1,0,2,2]],[[1,2,0,1],[2,3,3,2],[0,2,1,3],[1,0,2,1]],[[1,2,0,1],[2,3,3,3],[0,2,1,2],[1,0,2,1]],[[1,2,0,1],[2,3,4,2],[0,2,1,2],[1,0,2,1]],[[1,2,0,1],[2,4,3,2],[0,2,1,2],[1,0,2,1]],[[1,2,0,2],[2,3,3,2],[0,2,1,2],[1,0,2,1]],[[1,3,0,1],[2,3,3,2],[0,2,1,2],[1,0,2,1]],[[2,2,0,1],[2,3,3,2],[0,2,1,2],[1,0,2,1]],[[1,2,0,1],[2,3,3,2],[0,2,1,2],[0,1,2,2]],[[1,2,0,1],[2,3,3,2],[0,2,1,2],[0,1,3,1]],[[1,2,0,1],[2,3,3,2],[0,2,1,3],[0,1,2,1]],[[1,2,0,1],[2,3,3,3],[0,2,1,2],[0,1,2,1]],[[1,2,0,1],[2,3,4,2],[0,2,1,2],[0,1,2,1]],[[1,2,0,1],[2,4,3,2],[0,2,1,2],[0,1,2,1]],[[1,2,0,2],[2,3,3,2],[0,2,1,2],[0,1,2,1]],[[1,3,0,1],[2,3,3,2],[0,2,1,2],[0,1,2,1]],[[2,2,0,1],[2,3,3,2],[0,2,1,2],[0,1,2,1]],[[1,2,0,1],[2,3,3,2],[0,2,0,2],[0,2,2,2]],[[1,2,0,1],[2,3,3,2],[0,2,0,2],[0,2,3,1]],[[1,2,0,1],[2,3,3,2],[0,2,0,3],[0,2,2,1]],[[1,2,0,1],[2,3,3,3],[0,2,0,2],[0,2,2,1]],[[1,2,0,1],[2,3,4,2],[0,2,0,2],[0,2,2,1]],[[1,2,0,1],[2,4,3,2],[0,2,0,2],[0,2,2,1]],[[1,2,0,2],[2,3,3,2],[0,2,0,2],[0,2,2,1]],[[1,3,0,1],[2,3,3,2],[0,2,0,2],[0,2,2,1]],[[2,2,0,1],[2,3,3,2],[0,2,0,2],[0,2,2,1]],[[1,2,0,1],[2,3,3,2],[0,1,3,3],[1,0,2,0]],[[1,2,0,1],[2,3,3,3],[0,1,3,2],[1,0,2,0]],[[1,2,0,1],[2,3,4,2],[0,1,3,2],[1,0,2,0]],[[1,2,0,2],[2,3,3,2],[0,1,3,2],[1,0,2,0]],[[1,2,0,1],[2,3,3,2],[0,1,3,2],[1,0,1,2]],[[1,2,0,1],[2,3,3,2],[0,1,3,3],[1,0,1,1]],[[1,2,0,1],[2,3,3,3],[0,1,3,2],[1,0,1,1]],[[1,2,0,1],[2,3,4,2],[0,1,3,2],[1,0,1,1]],[[1,2,0,2],[2,3,3,2],[0,1,3,2],[1,0,1,1]],[[1,2,0,1],[2,3,3,2],[0,1,3,3],[0,1,2,0]],[[1,2,0,1],[2,3,3,3],[0,1,3,2],[0,1,2,0]],[[1,2,0,1],[2,3,4,2],[0,1,3,2],[0,1,2,0]],[[1,2,0,2],[2,3,3,2],[0,1,3,2],[0,1,2,0]],[[1,2,0,1],[2,3,3,2],[0,1,3,2],[0,1,1,2]],[[1,2,0,1],[2,3,3,2],[0,1,3,3],[0,1,1,1]],[[1,2,0,1],[2,3,3,3],[0,1,3,2],[0,1,1,1]],[[1,2,0,1],[2,3,4,2],[0,1,3,2],[0,1,1,1]],[[1,2,0,2],[2,3,3,2],[0,1,3,2],[0,1,1,1]],[[1,2,0,1],[2,3,3,2],[0,1,3,2],[0,0,2,2]],[[1,2,0,1],[2,3,3,2],[0,1,3,3],[0,0,2,1]],[[1,2,0,1],[2,3,3,3],[0,1,3,2],[0,0,2,1]],[[1,2,0,1],[2,3,4,2],[0,1,3,2],[0,0,2,1]],[[1,2,0,2],[2,3,3,2],[0,1,3,2],[0,0,2,1]],[[1,2,0,1],[2,3,3,2],[0,1,3,1],[0,2,3,0]],[[1,2,0,1],[2,3,3,2],[0,1,4,1],[0,2,2,0]],[[1,2,0,1],[2,3,3,3],[0,1,3,1],[0,2,2,0]],[[1,2,0,1],[2,3,4,2],[0,1,3,1],[0,2,2,0]],[[1,2,0,1],[2,4,3,2],[0,1,3,1],[0,2,2,0]],[[1,2,0,2],[2,3,3,2],[0,1,3,1],[0,2,2,0]],[[1,3,0,1],[2,3,3,2],[0,1,3,1],[0,2,2,0]],[[2,2,0,1],[2,3,3,2],[0,1,3,1],[0,2,2,0]],[[1,2,0,1],[2,3,3,2],[0,1,4,1],[0,2,1,1]],[[1,2,0,1],[2,3,3,3],[0,1,3,1],[0,2,1,1]],[[1,2,0,1],[2,3,4,2],[0,1,3,1],[0,2,1,1]],[[1,2,0,1],[2,4,3,2],[0,1,3,1],[0,2,1,1]],[[1,2,0,2],[2,3,3,2],[0,1,3,1],[0,2,1,1]],[[1,3,0,1],[2,3,3,2],[0,1,3,1],[0,2,1,1]],[[2,2,0,1],[2,3,3,2],[0,1,3,1],[0,2,1,1]],[[1,2,0,1],[2,3,3,2],[0,1,3,0],[0,2,2,2]],[[1,2,0,1],[2,3,3,2],[0,1,3,0],[0,2,3,1]],[[1,2,0,1],[2,3,3,2],[0,1,4,0],[0,2,2,1]],[[1,2,0,1],[2,3,3,3],[0,1,3,0],[0,2,2,1]],[[1,2,0,1],[2,3,4,2],[0,1,3,0],[0,2,2,1]],[[1,2,0,1],[2,4,3,2],[0,1,3,0],[0,2,2,1]],[[1,2,0,2],[2,3,3,2],[0,1,3,0],[0,2,2,1]],[[1,3,0,1],[2,3,3,2],[0,1,3,0],[0,2,2,1]],[[2,2,0,1],[2,3,3,2],[0,1,3,0],[0,2,2,1]],[[1,2,0,1],[2,3,3,2],[0,1,2,3],[0,2,2,0]],[[1,2,0,1],[2,3,3,3],[0,1,2,2],[0,2,2,0]],[[1,2,0,1],[2,3,4,2],[0,1,2,2],[0,2,2,0]],[[1,2,0,1],[2,4,3,2],[0,1,2,2],[0,2,2,0]],[[1,2,0,2],[2,3,3,2],[0,1,2,2],[0,2,2,0]],[[1,3,0,1],[2,3,3,2],[0,1,2,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,2],[0,1,2,2],[0,2,2,0]],[[1,2,0,1],[2,3,3,2],[0,1,2,2],[0,2,1,2]],[[1,2,0,1],[2,3,3,2],[0,1,2,3],[0,2,1,1]],[[1,2,0,1],[2,3,3,3],[0,1,2,2],[0,2,1,1]],[[1,2,0,1],[2,3,4,2],[0,1,2,2],[0,2,1,1]],[[1,2,0,1],[2,4,3,2],[0,1,2,2],[0,2,1,1]],[[1,2,0,2],[2,3,3,2],[0,1,2,2],[0,2,1,1]],[[1,3,0,1],[2,3,3,2],[0,1,2,2],[0,2,1,1]],[[2,2,0,1],[2,3,3,2],[0,1,2,2],[0,2,1,1]],[[1,2,0,1],[2,3,3,2],[0,1,1,2],[0,2,2,2]],[[1,2,0,1],[2,3,3,2],[0,1,1,2],[0,2,3,1]],[[1,2,0,1],[2,3,3,2],[0,1,1,3],[0,2,2,1]],[[1,2,0,1],[2,3,3,3],[0,1,1,2],[0,2,2,1]],[[1,2,0,1],[2,3,4,2],[0,1,1,2],[0,2,2,1]],[[1,2,0,1],[2,4,3,2],[0,1,1,2],[0,2,2,1]],[[1,2,0,2],[2,3,3,2],[0,1,1,2],[0,2,2,1]],[[1,3,0,1],[2,3,3,2],[0,1,1,2],[0,2,2,1]],[[2,2,0,1],[2,3,3,2],[0,1,1,2],[0,2,2,1]],[[1,2,0,1],[2,3,3,2],[0,0,3,3],[0,2,2,0]],[[1,2,0,1],[2,3,3,3],[0,0,3,2],[0,2,2,0]],[[1,2,0,1],[2,3,4,2],[0,0,3,2],[0,2,2,0]],[[1,2,0,2],[2,3,3,2],[0,0,3,2],[0,2,2,0]],[[1,2,0,1],[2,3,3,2],[0,0,3,2],[0,2,1,2]],[[1,2,0,1],[2,3,3,2],[0,0,3,3],[0,2,1,1]],[[1,2,0,1],[2,3,3,3],[0,0,3,2],[0,2,1,1]],[[1,2,0,1],[2,3,4,2],[0,0,3,2],[0,2,1,1]],[[1,2,0,2],[2,3,3,2],[0,0,3,2],[0,2,1,1]],[[1,2,0,1],[2,3,3,2],[0,0,3,2],[0,1,2,2]],[[1,2,0,1],[2,3,3,2],[0,0,3,3],[0,1,2,1]],[[1,2,0,1],[2,3,3,3],[0,0,3,2],[0,1,2,1]],[[1,2,0,1],[2,3,4,2],[0,0,3,2],[0,1,2,1]],[[1,2,0,2],[2,3,3,2],[0,0,3,2],[0,1,2,1]],[[1,2,0,1],[2,3,3,2],[0,0,2,2],[0,2,2,2]],[[1,2,0,1],[2,3,3,2],[0,0,2,2],[0,2,3,1]],[[1,2,0,1],[2,3,3,2],[0,0,2,3],[0,2,2,1]],[[1,2,0,1],[2,3,3,3],[0,0,2,2],[0,2,2,1]],[[1,2,0,1],[2,3,4,2],[0,0,2,2],[0,2,2,1]],[[1,2,0,2],[2,3,3,2],[0,0,2,2],[0,2,2,1]],[[1,2,0,1],[2,3,3,1],[3,3,3,1],[1,0,0,0]],[[1,2,0,1],[2,4,3,1],[2,3,3,1],[1,0,0,0]],[[1,2,0,1],[3,3,3,1],[2,3,3,1],[1,0,0,0]],[[2,2,0,1],[2,3,3,1],[2,3,3,1],[1,0,0,0]],[[1,2,0,1],[2,3,3,1],[3,3,3,0],[1,0,1,0]],[[1,2,0,1],[2,4,3,1],[2,3,3,0],[1,0,1,0]],[[1,2,0,1],[3,3,3,1],[2,3,3,0],[1,0,1,0]],[[2,2,0,1],[2,3,3,1],[2,3,3,0],[1,0,1,0]],[[1,2,0,1],[2,3,3,1],[3,3,2,1],[1,0,1,0]],[[1,2,0,1],[2,4,3,1],[2,3,2,1],[1,0,1,0]],[[1,2,0,1],[3,3,3,1],[2,3,2,1],[1,0,1,0]],[[2,2,0,1],[2,3,3,1],[2,3,2,1],[1,0,1,0]],[[1,2,0,1],[2,3,3,1],[3,3,2,1],[1,0,0,1]],[[1,2,0,1],[2,4,3,1],[2,3,2,1],[1,0,0,1]],[[1,2,0,1],[3,3,3,1],[2,3,2,1],[1,0,0,1]],[[2,2,0,1],[2,3,3,1],[2,3,2,1],[1,0,0,1]],[[1,2,0,1],[2,3,3,1],[2,3,2,0],[2,2,0,0]],[[1,2,0,1],[2,3,3,1],[3,3,2,0],[1,2,0,0]],[[1,2,0,1],[2,4,3,1],[2,3,2,0],[1,2,0,0]],[[1,2,0,1],[3,3,3,1],[2,3,2,0],[1,2,0,0]],[[2,2,0,1],[2,3,3,1],[2,3,2,0],[1,2,0,0]],[[1,2,0,1],[2,3,3,1],[2,3,2,0],[2,1,1,0]],[[1,2,0,1],[2,3,3,1],[3,3,2,0],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[2,3,2,0],[1,1,1,0]],[[1,2,0,1],[3,3,3,1],[2,3,2,0],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[2,3,2,0],[1,1,1,0]],[[1,2,0,1],[2,3,3,1],[3,3,2,0],[1,0,1,1]],[[1,2,0,1],[2,4,3,1],[2,3,2,0],[1,0,1,1]],[[1,2,0,1],[3,3,3,1],[2,3,2,0],[1,0,1,1]],[[2,2,0,1],[2,3,3,1],[2,3,2,0],[1,0,1,1]],[[1,2,0,1],[2,3,3,1],[3,3,2,0],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,3,2,0],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,3,2,0],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,3,2,0],[0,2,1,0]],[[2,1,1,1],[2,3,3,2],[2,0,2,0],[1,2,2,0]],[[1,1,1,1],[3,3,3,2],[2,0,2,0],[1,2,2,0]],[[1,1,1,1],[2,4,3,2],[2,0,2,0],[1,2,2,0]],[[1,1,1,1],[2,3,4,2],[2,0,2,0],[1,2,2,0]],[[1,1,1,1],[2,3,3,2],[3,0,2,0],[1,2,2,0]],[[1,1,1,1],[2,3,3,2],[2,0,2,0],[2,2,2,0]],[[1,1,1,1],[2,3,3,2],[2,0,2,0],[1,3,2,0]],[[1,2,0,1],[2,3,3,1],[3,3,1,2],[1,0,1,0]],[[1,2,0,1],[2,4,3,1],[2,3,1,2],[1,0,1,0]],[[1,2,0,1],[3,3,3,1],[2,3,1,2],[1,0,1,0]],[[2,2,0,1],[2,3,3,1],[2,3,1,2],[1,0,1,0]],[[1,2,0,1],[2,3,3,1],[3,3,1,2],[1,0,0,1]],[[1,2,0,1],[2,4,3,1],[2,3,1,2],[1,0,0,1]],[[1,2,0,1],[3,3,3,1],[2,3,1,2],[1,0,0,1]],[[2,2,0,1],[2,3,3,1],[2,3,1,2],[1,0,0,1]],[[1,2,0,1],[2,3,3,1],[2,3,1,1],[2,2,0,0]],[[1,2,0,1],[2,3,3,1],[3,3,1,1],[1,2,0,0]],[[1,2,0,1],[2,4,3,1],[2,3,1,1],[1,2,0,0]],[[1,2,0,1],[3,3,3,1],[2,3,1,1],[1,2,0,0]],[[2,2,0,1],[2,3,3,1],[2,3,1,1],[1,2,0,0]],[[1,2,0,1],[2,3,3,1],[2,3,1,1],[2,1,1,0]],[[1,2,0,1],[2,3,3,1],[3,3,1,1],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[2,3,1,1],[1,1,1,0]],[[2,1,1,1],[2,3,3,2],[2,0,3,0],[0,2,2,0]],[[1,1,1,1],[3,3,3,2],[2,0,3,0],[0,2,2,0]],[[1,1,1,1],[2,4,3,2],[2,0,3,0],[0,2,2,0]],[[1,1,1,1],[2,3,4,2],[2,0,3,0],[0,2,2,0]],[[1,1,1,1],[2,3,3,2],[3,0,3,0],[0,2,2,0]],[[2,1,1,1],[2,3,3,2],[2,0,3,0],[1,1,2,0]],[[1,1,1,1],[3,3,3,2],[2,0,3,0],[1,1,2,0]],[[1,1,1,1],[2,4,3,2],[2,0,3,0],[1,1,2,0]],[[1,1,1,1],[2,3,4,2],[2,0,3,0],[1,1,2,0]],[[1,1,1,1],[2,3,3,2],[3,0,3,0],[1,1,2,0]],[[1,1,1,1],[2,3,3,2],[2,0,3,0],[2,1,2,0]],[[2,1,1,1],[2,3,3,2],[2,0,3,0],[1,2,0,1]],[[1,1,1,1],[3,3,3,2],[2,0,3,0],[1,2,0,1]],[[1,1,1,1],[2,4,3,2],[2,0,3,0],[1,2,0,1]],[[1,1,1,1],[2,3,4,2],[2,0,3,0],[1,2,0,1]],[[1,1,1,1],[2,3,3,2],[3,0,3,0],[1,2,0,1]],[[1,1,1,1],[2,3,3,2],[2,0,3,0],[2,2,0,1]],[[2,1,1,1],[2,3,3,2],[2,0,3,0],[1,2,1,0]],[[1,1,1,1],[3,3,3,2],[2,0,3,0],[1,2,1,0]],[[1,1,1,1],[2,4,3,2],[2,0,3,0],[1,2,1,0]],[[1,1,1,1],[2,3,4,2],[2,0,3,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,2],[3,0,3,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,2],[2,0,3,0],[2,2,1,0]],[[1,1,1,1],[2,3,3,2],[2,0,3,0],[1,3,1,0]],[[1,2,0,1],[3,3,3,1],[2,3,1,1],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[2,3,1,1],[1,1,1,0]],[[1,2,0,1],[2,3,3,1],[2,3,1,1],[2,1,0,1]],[[1,2,0,1],[2,3,3,1],[3,3,1,1],[1,1,0,1]],[[1,2,0,1],[2,4,3,1],[2,3,1,1],[1,1,0,1]],[[1,2,0,1],[3,3,3,1],[2,3,1,1],[1,1,0,1]],[[2,2,0,1],[2,3,3,1],[2,3,1,1],[1,1,0,1]],[[1,2,0,1],[2,3,3,1],[3,3,1,1],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,3,1,1],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,3,1,1],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,3,1,1],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[3,3,1,1],[0,2,0,1]],[[1,2,0,1],[2,4,3,1],[2,3,1,1],[0,2,0,1]],[[1,2,0,1],[3,3,3,1],[2,3,1,1],[0,2,0,1]],[[2,2,0,1],[2,3,3,1],[2,3,1,1],[0,2,0,1]],[[1,2,0,1],[2,3,3,1],[2,3,1,0],[2,2,0,1]],[[1,2,0,1],[2,3,3,1],[3,3,1,0],[1,2,0,1]],[[1,2,0,1],[2,4,3,1],[2,3,1,0],[1,2,0,1]],[[1,2,0,1],[3,3,3,1],[2,3,1,0],[1,2,0,1]],[[2,2,0,1],[2,3,3,1],[2,3,1,0],[1,2,0,1]],[[1,2,0,1],[2,3,3,1],[2,3,1,0],[2,1,1,1]],[[1,2,0,1],[2,3,3,1],[3,3,1,0],[1,1,1,1]],[[1,2,0,1],[2,4,3,1],[2,3,1,0],[1,1,1,1]],[[1,2,0,1],[3,3,3,1],[2,3,1,0],[1,1,1,1]],[[2,2,0,1],[2,3,3,1],[2,3,1,0],[1,1,1,1]],[[1,2,0,1],[2,3,3,1],[3,3,1,0],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[2,3,1,0],[0,2,1,1]],[[1,2,0,1],[3,3,3,1],[2,3,1,0],[0,2,1,1]],[[2,2,0,1],[2,3,3,1],[2,3,1,0],[0,2,1,1]],[[1,2,0,1],[2,3,3,1],[2,3,0,2],[2,2,0,0]],[[1,2,0,1],[2,3,3,1],[3,3,0,2],[1,2,0,0]],[[1,2,0,1],[2,4,3,1],[2,3,0,2],[1,2,0,0]],[[1,2,0,1],[3,3,3,1],[2,3,0,2],[1,2,0,0]],[[2,2,0,1],[2,3,3,1],[2,3,0,2],[1,2,0,0]],[[1,2,0,1],[2,3,3,1],[2,3,0,2],[2,1,1,0]],[[1,2,0,1],[2,3,3,1],[3,3,0,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[2,3,0,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,1],[2,3,0,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[2,3,0,2],[1,1,1,0]],[[1,2,0,1],[2,3,3,1],[2,3,0,2],[2,1,0,1]],[[1,2,0,1],[2,3,3,1],[3,3,0,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,1],[2,3,0,2],[1,1,0,1]],[[1,2,0,1],[3,3,3,1],[2,3,0,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,1],[2,3,0,2],[1,1,0,1]],[[1,2,0,1],[2,3,3,1],[3,3,0,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,3,0,2],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,3,0,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,3,0,2],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[3,3,0,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,1],[2,3,0,2],[0,2,0,1]],[[1,2,0,1],[3,3,3,1],[2,3,0,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,1],[2,3,0,2],[0,2,0,1]],[[1,2,0,1],[2,3,3,1],[2,3,0,1],[2,2,1,0]],[[1,2,0,1],[2,3,3,1],[3,3,0,1],[1,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,3,0,1],[1,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,3,0,1],[1,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,3,0,1],[1,2,1,0]],[[1,2,0,1],[2,3,3,1],[2,3,0,1],[2,1,2,0]],[[1,2,0,1],[2,3,3,1],[3,3,0,1],[1,1,2,0]],[[1,2,0,1],[2,4,3,1],[2,3,0,1],[1,1,2,0]],[[1,2,0,1],[3,3,3,1],[2,3,0,1],[1,1,2,0]],[[2,2,0,1],[2,3,3,1],[2,3,0,1],[1,1,2,0]],[[1,2,0,1],[2,3,3,1],[3,3,0,1],[0,2,2,0]],[[1,2,0,1],[2,4,3,1],[2,3,0,1],[0,2,2,0]],[[1,2,0,1],[3,3,3,1],[2,3,0,1],[0,2,2,0]],[[2,2,0,1],[2,3,3,1],[2,3,0,1],[0,2,2,0]],[[1,2,0,1],[2,3,3,1],[2,3,0,0],[2,2,2,0]],[[1,2,0,1],[2,3,3,1],[3,3,0,0],[1,2,2,0]],[[1,2,0,1],[2,4,3,1],[2,3,0,0],[1,2,2,0]],[[1,2,0,1],[3,3,3,1],[2,3,0,0],[1,2,2,0]],[[2,2,0,1],[2,3,3,1],[2,3,0,0],[1,2,2,0]],[[1,2,0,1],[2,3,3,1],[2,3,0,0],[2,2,1,1]],[[1,2,0,1],[2,3,3,1],[3,3,0,0],[1,2,1,1]],[[1,2,0,1],[2,4,3,1],[2,3,0,0],[1,2,1,1]],[[1,2,0,1],[3,3,3,1],[2,3,0,0],[1,2,1,1]],[[2,2,0,1],[2,3,3,1],[2,3,0,0],[1,2,1,1]],[[1,2,0,1],[2,3,3,1],[2,3,0,0],[2,1,2,1]],[[1,2,0,1],[2,3,3,1],[3,3,0,0],[1,1,2,1]],[[1,2,0,1],[2,4,3,1],[2,3,0,0],[1,1,2,1]],[[1,2,0,1],[3,3,3,1],[2,3,0,0],[1,1,2,1]],[[2,2,0,1],[2,3,3,1],[2,3,0,0],[1,1,2,1]],[[1,2,0,1],[2,3,3,1],[3,3,0,0],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[2,3,0,0],[0,2,2,1]],[[1,2,0,1],[3,3,3,1],[2,3,0,0],[0,2,2,1]],[[2,2,0,1],[2,3,3,1],[2,3,0,0],[0,2,2,1]],[[1,2,0,1],[2,3,3,1],[2,2,3,1],[2,1,0,0]],[[1,2,0,1],[2,3,3,1],[3,2,3,1],[1,1,0,0]],[[1,2,0,1],[2,4,3,1],[2,2,3,1],[1,1,0,0]],[[1,2,0,1],[3,3,3,1],[2,2,3,1],[1,1,0,0]],[[2,2,0,1],[2,3,3,1],[2,2,3,1],[1,1,0,0]],[[2,1,1,1],[2,3,3,2],[2,1,1,0],[1,2,2,0]],[[1,1,1,1],[3,3,3,2],[2,1,1,0],[1,2,2,0]],[[1,1,1,1],[2,4,3,2],[2,1,1,0],[1,2,2,0]],[[1,1,1,1],[2,3,4,2],[2,1,1,0],[1,2,2,0]],[[1,1,1,1],[2,3,3,2],[3,1,1,0],[1,2,2,0]],[[1,1,1,1],[2,3,3,2],[2,1,1,0],[2,2,2,0]],[[1,1,1,1],[2,3,3,2],[2,1,1,0],[1,3,2,0]],[[1,2,0,1],[2,3,3,1],[3,2,3,1],[0,2,0,0]],[[1,2,0,1],[2,4,3,1],[2,2,3,1],[0,2,0,0]],[[1,2,0,1],[3,3,3,1],[2,2,3,1],[0,2,0,0]],[[2,2,0,1],[2,3,3,1],[2,2,3,1],[0,2,0,0]],[[1,2,0,1],[2,3,3,1],[2,2,3,0],[2,2,0,0]],[[1,2,0,1],[2,3,3,1],[3,2,3,0],[1,2,0,0]],[[1,2,0,1],[2,4,3,1],[2,2,3,0],[1,2,0,0]],[[1,2,0,1],[3,3,3,1],[2,2,3,0],[1,2,0,0]],[[2,2,0,1],[2,3,3,1],[2,2,3,0],[1,2,0,0]],[[1,2,0,1],[2,3,3,1],[2,2,3,0],[2,1,1,0]],[[1,2,0,1],[2,3,3,1],[3,2,3,0],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[2,2,3,0],[1,1,1,0]],[[1,2,0,1],[3,3,3,1],[2,2,3,0],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[2,2,3,0],[1,1,1,0]],[[1,2,0,1],[2,3,3,1],[2,2,3,0],[2,0,2,0]],[[1,2,0,1],[2,3,3,1],[3,2,3,0],[1,0,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,3,0],[1,0,2,0]],[[1,2,0,1],[3,3,3,1],[2,2,3,0],[1,0,2,0]],[[2,2,0,1],[2,3,3,1],[2,2,3,0],[1,0,2,0]],[[2,1,1,1],[2,3,3,2],[2,1,2,0],[1,2,0,1]],[[1,1,1,1],[3,3,3,2],[2,1,2,0],[1,2,0,1]],[[1,1,1,1],[2,4,3,2],[2,1,2,0],[1,2,0,1]],[[1,1,1,1],[2,3,4,2],[2,1,2,0],[1,2,0,1]],[[1,1,1,1],[2,3,3,2],[3,1,2,0],[1,2,0,1]],[[1,1,1,1],[2,3,3,2],[2,1,2,0],[2,2,0,1]],[[2,1,1,1],[2,3,3,2],[2,1,2,0],[1,2,1,0]],[[1,1,1,1],[3,3,3,2],[2,1,2,0],[1,2,1,0]],[[1,1,1,1],[2,4,3,2],[2,1,2,0],[1,2,1,0]],[[1,1,1,1],[2,3,4,2],[2,1,2,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,2],[3,1,2,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,2],[2,1,2,0],[2,2,1,0]],[[1,1,1,1],[2,3,3,2],[2,1,2,0],[1,3,1,0]],[[1,2,0,1],[2,3,3,1],[3,2,3,0],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,2,3,0],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,2,3,0],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,2,3,0],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[3,2,3,0],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,3,0],[0,1,2,0]],[[1,2,0,1],[3,3,3,1],[2,2,3,0],[0,1,2,0]],[[2,2,0,1],[2,3,3,1],[2,2,3,0],[0,1,2,0]],[[1,2,0,1],[2,3,3,1],[2,2,2,1],[2,2,0,0]],[[1,2,0,1],[2,3,3,1],[3,2,2,1],[1,2,0,0]],[[1,2,0,1],[2,4,3,1],[2,2,2,1],[1,2,0,0]],[[1,2,0,1],[3,3,3,1],[2,2,2,1],[1,2,0,0]],[[2,2,0,1],[2,3,3,1],[2,2,2,1],[1,2,0,0]],[[1,2,0,1],[2,3,3,1],[2,2,2,1],[2,1,1,0]],[[1,2,0,1],[2,3,3,1],[3,2,2,1],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[2,2,2,1],[1,1,1,0]],[[1,2,0,1],[3,3,3,1],[2,2,2,1],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[2,2,2,1],[1,1,1,0]],[[1,2,0,1],[2,3,3,1],[2,2,2,1],[2,1,0,1]],[[1,2,0,1],[2,3,3,1],[3,2,2,1],[1,1,0,1]],[[1,2,0,1],[2,4,3,1],[2,2,2,1],[1,1,0,1]],[[1,2,0,1],[3,3,3,1],[2,2,2,1],[1,1,0,1]],[[2,2,0,1],[2,3,3,1],[2,2,2,1],[1,1,0,1]],[[1,2,0,1],[2,3,3,1],[2,2,2,1],[2,0,2,0]],[[1,2,0,1],[2,3,3,1],[3,2,2,1],[1,0,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,2,1],[1,0,2,0]],[[1,2,0,1],[3,3,3,1],[2,2,2,1],[1,0,2,0]],[[2,2,0,1],[2,3,3,1],[2,2,2,1],[1,0,2,0]],[[1,2,0,1],[2,3,3,1],[3,2,2,1],[1,0,1,1]],[[1,2,0,1],[2,4,3,1],[2,2,2,1],[1,0,1,1]],[[1,2,0,1],[3,3,3,1],[2,2,2,1],[1,0,1,1]],[[2,2,0,1],[2,3,3,1],[2,2,2,1],[1,0,1,1]],[[1,2,0,1],[2,3,3,1],[3,2,2,1],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,2,2,1],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,2,2,1],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,2,2,1],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[3,2,2,1],[0,2,0,1]],[[1,2,0,1],[2,4,3,1],[2,2,2,1],[0,2,0,1]],[[1,2,0,1],[3,3,3,1],[2,2,2,1],[0,2,0,1]],[[2,2,0,1],[2,3,3,1],[2,2,2,1],[0,2,0,1]],[[1,2,0,1],[2,3,3,1],[3,2,2,1],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,2,1],[0,1,2,0]],[[1,2,0,1],[3,3,3,1],[2,2,2,1],[0,1,2,0]],[[2,2,0,1],[2,3,3,1],[2,2,2,1],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,2,1],[0,1,1,1]],[[1,2,0,1],[3,3,3,1],[2,2,2,1],[0,1,1,1]],[[2,2,0,1],[2,3,3,1],[2,2,2,1],[0,1,1,1]],[[1,2,0,1],[2,3,3,1],[2,2,2,0],[2,2,0,1]],[[1,2,0,1],[2,3,3,1],[3,2,2,0],[1,2,0,1]],[[1,2,0,1],[2,4,3,1],[2,2,2,0],[1,2,0,1]],[[1,2,0,1],[3,3,3,1],[2,2,2,0],[1,2,0,1]],[[2,2,0,1],[2,3,3,1],[2,2,2,0],[1,2,0,1]],[[2,1,1,1],[2,3,3,2],[2,1,3,0],[0,1,1,1]],[[1,1,1,1],[3,3,3,2],[2,1,3,0],[0,1,1,1]],[[1,1,1,1],[2,4,3,2],[2,1,3,0],[0,1,1,1]],[[1,1,1,1],[2,3,4,2],[2,1,3,0],[0,1,1,1]],[[2,1,1,1],[2,3,3,2],[2,1,3,0],[0,1,2,0]],[[1,1,1,1],[3,3,3,2],[2,1,3,0],[0,1,2,0]],[[1,1,1,1],[2,4,3,2],[2,1,3,0],[0,1,2,0]],[[1,1,1,1],[2,3,4,2],[2,1,3,0],[0,1,2,0]],[[1,1,1,1],[2,3,3,2],[3,1,3,0],[0,1,2,0]],[[2,1,1,1],[2,3,3,2],[2,1,3,0],[0,2,0,1]],[[1,1,1,1],[3,3,3,2],[2,1,3,0],[0,2,0,1]],[[1,1,1,1],[2,4,3,2],[2,1,3,0],[0,2,0,1]],[[1,1,1,1],[2,3,4,2],[2,1,3,0],[0,2,0,1]],[[1,1,1,1],[2,3,3,2],[3,1,3,0],[0,2,0,1]],[[2,1,1,1],[2,3,3,2],[2,1,3,0],[0,2,1,0]],[[1,1,1,1],[3,3,3,2],[2,1,3,0],[0,2,1,0]],[[1,1,1,1],[2,4,3,2],[2,1,3,0],[0,2,1,0]],[[1,1,1,1],[2,3,4,2],[2,1,3,0],[0,2,1,0]],[[1,1,1,1],[2,3,3,2],[3,1,3,0],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[2,2,2,0],[2,1,1,1]],[[1,2,0,1],[2,3,3,1],[3,2,2,0],[1,1,1,1]],[[1,2,0,1],[2,4,3,1],[2,2,2,0],[1,1,1,1]],[[1,2,0,1],[3,3,3,1],[2,2,2,0],[1,1,1,1]],[[2,2,0,1],[2,3,3,1],[2,2,2,0],[1,1,1,1]],[[1,2,0,1],[2,3,3,1],[2,2,2,0],[2,0,2,1]],[[1,2,0,1],[2,3,3,1],[3,2,2,0],[1,0,2,1]],[[1,2,0,1],[2,4,3,1],[2,2,2,0],[1,0,2,1]],[[2,1,1,1],[2,3,3,2],[2,1,3,0],[1,0,1,1]],[[1,1,1,1],[3,3,3,2],[2,1,3,0],[1,0,1,1]],[[1,1,1,1],[2,4,3,2],[2,1,3,0],[1,0,1,1]],[[1,1,1,1],[2,3,4,2],[2,1,3,0],[1,0,1,1]],[[1,1,1,1],[2,3,3,2],[3,1,3,0],[1,0,1,1]],[[2,1,1,1],[2,3,3,2],[2,1,3,0],[1,0,2,0]],[[1,1,1,1],[3,3,3,2],[2,1,3,0],[1,0,2,0]],[[1,1,1,1],[2,4,3,2],[2,1,3,0],[1,0,2,0]],[[1,1,1,1],[2,3,4,2],[2,1,3,0],[1,0,2,0]],[[1,1,1,1],[2,3,3,2],[3,1,3,0],[1,0,2,0]],[[1,1,1,1],[2,3,3,2],[2,1,3,0],[2,0,2,0]],[[2,1,1,1],[2,3,3,2],[2,1,3,0],[1,1,0,1]],[[1,1,1,1],[3,3,3,2],[2,1,3,0],[1,1,0,1]],[[1,1,1,1],[2,4,3,2],[2,1,3,0],[1,1,0,1]],[[1,1,1,1],[2,3,4,2],[2,1,3,0],[1,1,0,1]],[[1,1,1,1],[2,3,3,2],[3,1,3,0],[1,1,0,1]],[[1,1,1,1],[2,3,3,2],[2,1,3,0],[2,1,0,1]],[[2,1,1,1],[2,3,3,2],[2,1,3,0],[1,1,1,0]],[[1,1,1,1],[3,3,3,2],[2,1,3,0],[1,1,1,0]],[[1,1,1,1],[2,4,3,2],[2,1,3,0],[1,1,1,0]],[[1,1,1,1],[2,3,4,2],[2,1,3,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,2],[3,1,3,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,2],[2,1,3,0],[2,1,1,0]],[[1,2,0,1],[3,3,3,1],[2,2,2,0],[1,0,2,1]],[[2,2,0,1],[2,3,3,1],[2,2,2,0],[1,0,2,1]],[[1,2,0,1],[2,3,3,1],[3,2,2,0],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[2,2,2,0],[0,2,1,1]],[[1,2,0,1],[3,3,3,1],[2,2,2,0],[0,2,1,1]],[[2,2,0,1],[2,3,3,1],[2,2,2,0],[0,2,1,1]],[[1,2,0,1],[2,3,3,1],[3,2,2,0],[0,1,2,1]],[[1,2,0,1],[2,4,3,1],[2,2,2,0],[0,1,2,1]],[[1,2,0,1],[3,3,3,1],[2,2,2,0],[0,1,2,1]],[[2,2,0,1],[2,3,3,1],[2,2,2,0],[0,1,2,1]],[[1,2,0,1],[2,3,3,1],[2,2,1,2],[2,2,0,0]],[[1,2,0,1],[2,3,3,1],[3,2,1,2],[1,2,0,0]],[[1,2,0,1],[2,4,3,1],[2,2,1,2],[1,2,0,0]],[[1,2,0,1],[3,3,3,1],[2,2,1,2],[1,2,0,0]],[[2,2,0,1],[2,3,3,1],[2,2,1,2],[1,2,0,0]],[[1,2,0,1],[2,3,3,1],[2,2,1,2],[2,1,1,0]],[[1,2,0,1],[2,3,3,1],[3,2,1,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[2,2,1,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,1],[2,2,1,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[2,2,1,2],[1,1,1,0]],[[1,2,0,1],[2,3,3,1],[2,2,1,2],[2,1,0,1]],[[1,2,0,1],[2,3,3,1],[3,2,1,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,1],[2,2,1,2],[1,1,0,1]],[[1,2,0,1],[3,3,3,1],[2,2,1,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,1],[2,2,1,2],[1,1,0,1]],[[1,2,0,1],[2,3,3,1],[3,2,1,2],[1,0,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,1,2],[1,0,2,0]],[[1,2,0,1],[3,3,3,1],[2,2,1,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,1],[2,2,1,2],[1,0,2,0]],[[1,2,0,1],[2,3,3,1],[3,2,1,2],[1,0,1,1]],[[1,2,0,1],[2,4,3,1],[2,2,1,2],[1,0,1,1]],[[1,2,0,1],[3,3,3,1],[2,2,1,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,1],[2,2,1,2],[1,0,1,1]],[[1,2,0,1],[2,3,3,1],[3,2,1,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,2,1,2],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,2,1,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,2,1,2],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[3,2,1,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,1],[2,2,1,2],[0,2,0,1]],[[1,2,0,1],[3,3,3,1],[2,2,1,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,1],[2,2,1,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,1],[2,2,1,2],[0,1,2,0]],[[1,2,0,1],[3,3,3,1],[2,2,1,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,1],[2,2,1,2],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,1,2],[0,1,1,1]],[[1,2,0,1],[3,3,3,1],[2,2,1,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,1],[2,2,1,2],[0,1,1,1]],[[1,2,0,1],[2,3,3,1],[2,2,1,1],[2,1,2,0]],[[1,2,0,1],[2,3,3,1],[3,2,1,1],[1,1,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,1,1],[1,1,2,0]],[[1,2,0,1],[3,3,3,1],[2,2,1,1],[1,1,2,0]],[[2,2,0,1],[2,3,3,1],[2,2,1,1],[1,1,2,0]],[[1,2,0,1],[2,3,3,1],[3,2,1,1],[0,2,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,1,1],[0,2,2,0]],[[1,2,0,1],[3,3,3,1],[2,2,1,1],[0,2,2,0]],[[2,2,0,1],[2,3,3,1],[2,2,1,1],[0,2,2,0]],[[1,2,0,1],[2,3,3,1],[2,2,1,0],[2,1,2,1]],[[1,2,0,1],[2,3,3,1],[3,2,1,0],[1,1,2,1]],[[1,2,0,1],[2,4,3,1],[2,2,1,0],[1,1,2,1]],[[1,2,0,1],[3,3,3,1],[2,2,1,0],[1,1,2,1]],[[2,2,0,1],[2,3,3,1],[2,2,1,0],[1,1,2,1]],[[1,2,0,1],[2,3,3,1],[3,2,1,0],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[2,2,1,0],[0,2,2,1]],[[1,2,0,1],[3,3,3,1],[2,2,1,0],[0,2,2,1]],[[2,2,0,1],[2,3,3,1],[2,2,1,0],[0,2,2,1]],[[1,2,0,1],[2,3,3,1],[2,2,0,2],[2,1,2,0]],[[1,2,0,1],[2,3,3,1],[3,2,0,2],[1,1,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,0,2],[1,1,2,0]],[[1,2,0,1],[3,3,3,1],[2,2,0,2],[1,1,2,0]],[[2,2,0,1],[2,3,3,1],[2,2,0,2],[1,1,2,0]],[[1,2,0,1],[2,3,3,1],[2,2,0,2],[2,1,1,1]],[[1,2,0,1],[2,3,3,1],[3,2,0,2],[1,1,1,1]],[[1,2,0,1],[2,4,3,1],[2,2,0,2],[1,1,1,1]],[[1,2,0,1],[3,3,3,1],[2,2,0,2],[1,1,1,1]],[[2,2,0,1],[2,3,3,1],[2,2,0,2],[1,1,1,1]],[[1,2,0,1],[2,3,3,1],[3,2,0,2],[1,0,2,1]],[[1,2,0,1],[2,4,3,1],[2,2,0,2],[1,0,2,1]],[[1,2,0,1],[3,3,3,1],[2,2,0,2],[1,0,2,1]],[[2,2,0,1],[2,3,3,1],[2,2,0,2],[1,0,2,1]],[[1,2,0,1],[2,3,3,1],[3,2,0,2],[0,2,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,0,2],[0,2,2,0]],[[1,2,0,1],[3,3,3,1],[2,2,0,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,1],[2,2,0,2],[0,2,2,0]],[[1,2,0,1],[2,3,3,1],[3,2,0,2],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[2,2,0,2],[0,2,1,1]],[[1,2,0,1],[3,3,3,1],[2,2,0,2],[0,2,1,1]],[[2,2,0,1],[2,3,3,1],[2,2,0,2],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[2,2,0,2],[0,1,2,1]],[[1,2,0,1],[3,3,3,1],[2,2,0,2],[0,1,2,1]],[[2,2,0,1],[2,3,3,1],[2,2,0,2],[0,1,2,1]],[[1,2,0,1],[2,3,3,1],[2,2,0,1],[1,3,2,0]],[[1,2,0,1],[2,3,3,1],[2,2,0,1],[2,2,2,0]],[[1,2,0,1],[2,3,3,1],[3,2,0,1],[1,2,2,0]],[[1,2,0,1],[2,4,3,1],[2,2,0,1],[1,2,2,0]],[[1,2,0,1],[3,3,3,1],[2,2,0,1],[1,2,2,0]],[[2,2,0,1],[2,3,3,1],[2,2,0,1],[1,2,2,0]],[[1,2,0,1],[2,3,3,1],[2,2,0,1],[2,1,2,1]],[[1,2,0,1],[2,3,3,1],[3,2,0,1],[1,1,2,1]],[[1,2,0,1],[2,4,3,1],[2,2,0,1],[1,1,2,1]],[[1,2,0,1],[3,3,3,1],[2,2,0,1],[1,1,2,1]],[[2,2,0,1],[2,3,3,1],[2,2,0,1],[1,1,2,1]],[[1,2,0,1],[2,3,3,1],[3,2,0,1],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[2,2,0,1],[0,2,2,1]],[[1,2,0,1],[3,3,3,1],[2,2,0,1],[0,2,2,1]],[[2,2,0,1],[2,3,3,1],[2,2,0,1],[0,2,2,1]],[[1,2,0,1],[2,3,3,1],[2,2,0,0],[1,3,2,1]],[[1,2,0,1],[2,3,3,1],[2,2,0,0],[2,2,2,1]],[[1,2,0,1],[2,3,3,1],[3,2,0,0],[1,2,2,1]],[[1,2,0,1],[2,4,3,1],[2,2,0,0],[1,2,2,1]],[[1,2,0,1],[3,3,3,1],[2,2,0,0],[1,2,2,1]],[[2,2,0,1],[2,3,3,1],[2,2,0,0],[1,2,2,1]],[[1,2,0,1],[2,3,3,1],[2,1,3,1],[2,1,1,0]],[[1,2,0,1],[2,3,3,1],[3,1,3,1],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[2,1,3,1],[1,1,1,0]],[[1,2,0,1],[3,3,3,1],[2,1,3,1],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[2,1,3,1],[1,1,1,0]],[[1,2,0,1],[2,3,3,1],[2,1,3,1],[2,1,0,1]],[[1,2,0,1],[2,3,3,1],[3,1,3,1],[1,1,0,1]],[[1,2,0,1],[2,4,3,1],[2,1,3,1],[1,1,0,1]],[[1,2,0,1],[3,3,3,1],[2,1,3,1],[1,1,0,1]],[[2,2,0,1],[2,3,3,1],[2,1,3,1],[1,1,0,1]],[[1,2,0,1],[2,3,3,1],[2,1,3,1],[2,0,2,0]],[[1,2,0,1],[2,3,3,1],[3,1,3,1],[1,0,2,0]],[[1,2,0,1],[2,4,3,1],[2,1,3,1],[1,0,2,0]],[[1,2,0,1],[3,3,3,1],[2,1,3,1],[1,0,2,0]],[[2,2,0,1],[2,3,3,1],[2,1,3,1],[1,0,2,0]],[[1,2,0,1],[2,3,3,1],[3,1,3,1],[1,0,1,1]],[[1,2,0,1],[2,4,3,1],[2,1,3,1],[1,0,1,1]],[[1,2,0,1],[3,3,3,1],[2,1,3,1],[1,0,1,1]],[[2,2,0,1],[2,3,3,1],[2,1,3,1],[1,0,1,1]],[[1,2,0,1],[2,3,3,1],[3,1,3,1],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,1,3,1],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,1,3,1],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,1,3,1],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[3,1,3,1],[0,2,0,1]],[[1,2,0,1],[2,4,3,1],[2,1,3,1],[0,2,0,1]],[[1,2,0,1],[3,3,3,1],[2,1,3,1],[0,2,0,1]],[[2,2,0,1],[2,3,3,1],[2,1,3,1],[0,2,0,1]],[[1,2,0,1],[2,3,3,1],[3,1,3,1],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[2,1,3,1],[0,1,2,0]],[[1,2,0,1],[3,3,3,1],[2,1,3,1],[0,1,2,0]],[[2,2,0,1],[2,3,3,1],[2,1,3,1],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[2,1,3,1],[0,1,1,1]],[[1,2,0,1],[3,3,3,1],[2,1,3,1],[0,1,1,1]],[[2,2,0,1],[2,3,3,1],[2,1,3,1],[0,1,1,1]],[[1,2,0,1],[2,3,3,1],[2,1,3,0],[1,3,1,0]],[[1,2,0,1],[2,3,3,1],[2,1,3,0],[2,2,1,0]],[[1,2,0,1],[2,3,3,1],[3,1,3,0],[1,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,1,3,0],[1,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,1,3,0],[1,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,1,3,0],[1,2,1,0]],[[1,2,0,1],[2,3,3,1],[2,1,3,0],[2,1,1,1]],[[1,2,0,1],[2,3,3,1],[3,1,3,0],[1,1,1,1]],[[1,2,0,1],[2,4,3,1],[2,1,3,0],[1,1,1,1]],[[1,2,0,1],[3,3,3,1],[2,1,3,0],[1,1,1,1]],[[2,2,0,1],[2,3,3,1],[2,1,3,0],[1,1,1,1]],[[1,2,0,1],[2,3,3,1],[2,1,3,0],[2,0,2,1]],[[1,2,0,1],[2,3,3,1],[3,1,3,0],[1,0,2,1]],[[1,2,0,1],[2,4,3,1],[2,1,3,0],[1,0,2,1]],[[1,2,0,1],[3,3,3,1],[2,1,3,0],[1,0,2,1]],[[2,2,0,1],[2,3,3,1],[2,1,3,0],[1,0,2,1]],[[2,1,1,1],[2,3,3,2],[2,2,0,0],[1,2,2,0]],[[1,1,1,1],[3,3,3,2],[2,2,0,0],[1,2,2,0]],[[1,1,1,1],[2,4,3,2],[2,2,0,0],[1,2,2,0]],[[1,1,1,1],[2,3,3,2],[3,2,0,0],[1,2,2,0]],[[1,1,1,1],[2,3,3,2],[2,2,0,0],[2,2,2,0]],[[1,1,1,1],[2,3,3,2],[2,2,0,0],[1,3,2,0]],[[1,2,0,1],[2,3,3,1],[3,1,3,0],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[2,1,3,0],[0,2,1,1]],[[1,2,0,1],[3,3,3,1],[2,1,3,0],[0,2,1,1]],[[2,2,0,1],[2,3,3,1],[2,1,3,0],[0,2,1,1]],[[1,2,0,1],[2,3,3,1],[3,1,3,0],[0,1,2,1]],[[1,2,0,1],[2,4,3,1],[2,1,3,0],[0,1,2,1]],[[1,2,0,1],[3,3,3,1],[2,1,3,0],[0,1,2,1]],[[2,2,0,1],[2,3,3,1],[2,1,3,0],[0,1,2,1]],[[1,2,0,1],[2,3,3,1],[2,1,2,1],[1,3,1,0]],[[1,2,0,1],[2,3,3,1],[2,1,2,1],[2,2,1,0]],[[1,2,0,1],[2,3,3,1],[3,1,2,1],[1,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,1,2,1],[1,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,1,2,1],[1,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,1,2,1],[1,2,1,0]],[[1,2,0,1],[2,3,3,1],[2,1,2,1],[2,2,0,1]],[[1,2,0,1],[2,3,3,1],[3,1,2,1],[1,2,0,1]],[[1,2,0,1],[2,4,3,1],[2,1,2,1],[1,2,0,1]],[[1,2,0,1],[3,3,3,1],[2,1,2,1],[1,2,0,1]],[[2,2,0,1],[2,3,3,1],[2,1,2,1],[1,2,0,1]],[[1,2,0,1],[2,3,3,1],[2,1,2,0],[1,3,1,1]],[[1,2,0,1],[2,3,3,1],[2,1,2,0],[2,2,1,1]],[[2,1,1,1],[2,3,3,2],[2,2,1,0],[0,2,2,0]],[[1,1,1,1],[3,3,3,2],[2,2,1,0],[0,2,2,0]],[[1,1,1,1],[2,4,3,2],[2,2,1,0],[0,2,2,0]],[[1,1,1,1],[2,3,4,2],[2,2,1,0],[0,2,2,0]],[[1,1,1,1],[2,3,3,2],[3,2,1,0],[0,2,2,0]],[[2,1,1,1],[2,3,3,2],[2,2,1,0],[1,1,2,0]],[[1,1,1,1],[3,3,3,2],[2,2,1,0],[1,1,2,0]],[[1,1,1,1],[2,4,3,2],[2,2,1,0],[1,1,2,0]],[[1,1,1,1],[2,3,4,2],[2,2,1,0],[1,1,2,0]],[[1,1,1,1],[2,3,3,2],[3,2,1,0],[1,1,2,0]],[[1,1,1,1],[2,3,3,2],[2,2,1,0],[2,1,2,0]],[[1,2,0,1],[2,3,3,1],[3,1,2,0],[1,2,1,1]],[[1,2,0,1],[2,4,3,1],[2,1,2,0],[1,2,1,1]],[[1,2,0,1],[3,3,3,1],[2,1,2,0],[1,2,1,1]],[[2,2,0,1],[2,3,3,1],[2,1,2,0],[1,2,1,1]],[[1,2,0,1],[2,3,3,1],[2,1,1,2],[2,2,1,0]],[[1,2,0,1],[2,3,3,1],[3,1,1,2],[1,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,1,1,2],[1,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,1,1,2],[1,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,1,1,2],[1,2,1,0]],[[1,2,0,1],[2,3,3,1],[2,1,1,2],[2,2,0,1]],[[1,2,0,1],[2,3,3,1],[3,1,1,2],[1,2,0,1]],[[1,2,0,1],[2,4,3,1],[2,1,1,2],[1,2,0,1]],[[1,2,0,1],[3,3,3,1],[2,1,1,2],[1,2,0,1]],[[2,2,0,1],[2,3,3,1],[2,1,1,2],[1,2,0,1]],[[1,2,0,1],[2,3,3,1],[2,1,1,1],[1,3,2,0]],[[1,2,0,1],[2,3,3,1],[2,1,1,1],[2,2,2,0]],[[1,2,0,1],[2,3,3,1],[3,1,1,1],[1,2,2,0]],[[1,2,0,1],[2,4,3,1],[2,1,1,1],[1,2,2,0]],[[1,2,0,1],[3,3,3,1],[2,1,1,1],[1,2,2,0]],[[2,2,0,1],[2,3,3,1],[2,1,1,1],[1,2,2,0]],[[1,2,0,1],[2,3,3,1],[2,1,1,0],[1,2,3,1]],[[1,2,0,1],[2,3,3,1],[2,1,1,0],[1,3,2,1]],[[1,2,0,1],[2,3,3,1],[2,1,1,0],[2,2,2,1]],[[1,2,0,1],[2,3,3,1],[3,1,1,0],[1,2,2,1]],[[1,2,0,1],[2,4,3,1],[2,1,1,0],[1,2,2,1]],[[1,2,0,1],[3,3,3,1],[2,1,1,0],[1,2,2,1]],[[2,2,0,1],[2,3,3,1],[2,1,1,0],[1,2,2,1]],[[1,2,0,1],[2,3,3,1],[2,1,0,2],[1,3,2,0]],[[1,2,0,1],[2,3,3,1],[2,1,0,2],[2,2,2,0]],[[1,2,0,1],[2,3,3,1],[3,1,0,2],[1,2,2,0]],[[1,2,0,1],[2,4,3,1],[2,1,0,2],[1,2,2,0]],[[1,2,0,1],[3,3,3,1],[2,1,0,2],[1,2,2,0]],[[2,2,0,1],[2,3,3,1],[2,1,0,2],[1,2,2,0]],[[1,2,0,1],[2,3,3,1],[2,1,0,2],[2,2,1,1]],[[1,2,0,1],[2,3,3,1],[3,1,0,2],[1,2,1,1]],[[1,2,0,1],[2,4,3,1],[2,1,0,2],[1,2,1,1]],[[1,2,0,1],[3,3,3,1],[2,1,0,2],[1,2,1,1]],[[2,2,0,1],[2,3,3,1],[2,1,0,2],[1,2,1,1]],[[1,2,0,1],[2,3,3,1],[2,1,0,1],[1,3,2,1]],[[1,2,0,1],[2,3,3,1],[2,1,0,1],[2,2,2,1]],[[1,2,0,1],[2,3,3,1],[3,1,0,1],[1,2,2,1]],[[1,2,0,1],[2,4,3,1],[2,1,0,1],[1,2,2,1]],[[1,2,0,1],[3,3,3,1],[2,1,0,1],[1,2,2,1]],[[2,2,0,1],[2,3,3,1],[2,1,0,1],[1,2,2,1]],[[1,2,0,1],[3,3,3,1],[2,0,3,2],[1,1,1,0]],[[1,3,0,1],[2,3,3,1],[2,0,3,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[2,0,3,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,1],[2,0,3,2],[1,1,0,1]],[[1,3,0,1],[2,3,3,1],[2,0,3,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,1],[2,0,3,2],[1,1,0,1]],[[1,2,0,1],[3,3,3,1],[2,0,3,2],[1,0,2,0]],[[1,3,0,1],[2,3,3,1],[2,0,3,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,1],[2,0,3,2],[1,0,2,0]],[[1,2,0,1],[3,3,3,1],[2,0,3,2],[1,0,1,1]],[[1,3,0,1],[2,3,3,1],[2,0,3,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,1],[2,0,3,2],[1,0,1,1]],[[1,2,0,1],[3,3,3,1],[2,0,3,2],[0,2,1,0]],[[1,3,0,1],[2,3,3,1],[2,0,3,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,0,3,2],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,0,3,2],[0,2,0,1]],[[1,3,0,1],[2,3,3,1],[2,0,3,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,1],[2,0,3,2],[0,2,0,1]],[[1,2,0,1],[3,3,3,1],[2,0,3,2],[0,1,2,0]],[[1,3,0,1],[2,3,3,1],[2,0,3,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,1],[2,0,3,2],[0,1,2,0]],[[1,2,0,1],[3,3,3,1],[2,0,3,2],[0,1,1,1]],[[1,3,0,1],[2,3,3,1],[2,0,3,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,1],[2,0,3,2],[0,1,1,1]],[[1,2,0,1],[3,3,3,1],[2,0,3,2],[0,0,2,1]],[[1,3,0,1],[2,3,3,1],[2,0,3,2],[0,0,2,1]],[[2,2,0,1],[2,3,3,1],[2,0,3,2],[0,0,2,1]],[[2,1,1,1],[2,3,3,2],[2,2,2,0],[0,1,1,1]],[[1,1,1,1],[3,3,3,2],[2,2,2,0],[0,1,1,1]],[[1,1,1,1],[2,4,3,2],[2,2,2,0],[0,1,1,1]],[[1,1,1,1],[2,3,4,2],[2,2,2,0],[0,1,1,1]],[[2,1,1,1],[2,3,3,2],[2,2,2,0],[0,1,2,0]],[[1,1,1,1],[3,3,3,2],[2,2,2,0],[0,1,2,0]],[[1,1,1,1],[2,4,3,2],[2,2,2,0],[0,1,2,0]],[[1,1,1,1],[2,3,4,2],[2,2,2,0],[0,1,2,0]],[[1,1,1,1],[2,3,3,2],[3,2,2,0],[0,1,2,0]],[[2,1,1,1],[2,3,3,2],[2,2,2,0],[0,2,0,1]],[[1,1,1,1],[3,3,3,2],[2,2,2,0],[0,2,0,1]],[[1,1,1,1],[2,4,3,2],[2,2,2,0],[0,2,0,1]],[[1,1,1,1],[2,3,4,2],[2,2,2,0],[0,2,0,1]],[[1,1,1,1],[2,3,3,2],[3,2,2,0],[0,2,0,1]],[[2,1,1,1],[2,3,3,2],[2,2,2,0],[0,2,1,0]],[[1,1,1,1],[3,3,3,2],[2,2,2,0],[0,2,1,0]],[[1,1,1,1],[2,4,3,2],[2,2,2,0],[0,2,1,0]],[[1,1,1,1],[2,3,4,2],[2,2,2,0],[0,2,1,0]],[[1,1,1,1],[2,3,3,2],[3,2,2,0],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[2,0,3,1],[1,3,1,0]],[[2,1,1,1],[2,3,3,2],[2,2,2,0],[1,0,1,1]],[[1,1,1,1],[3,3,3,2],[2,2,2,0],[1,0,1,1]],[[1,1,1,1],[2,4,3,2],[2,2,2,0],[1,0,1,1]],[[1,1,1,1],[2,3,4,2],[2,2,2,0],[1,0,1,1]],[[1,1,1,1],[2,3,3,2],[3,2,2,0],[1,0,1,1]],[[2,1,1,1],[2,3,3,2],[2,2,2,0],[1,0,2,0]],[[1,1,1,1],[3,3,3,2],[2,2,2,0],[1,0,2,0]],[[1,1,1,1],[2,4,3,2],[2,2,2,0],[1,0,2,0]],[[1,1,1,1],[2,3,4,2],[2,2,2,0],[1,0,2,0]],[[1,1,1,1],[2,3,3,2],[3,2,2,0],[1,0,2,0]],[[1,1,1,1],[2,3,3,2],[2,2,2,0],[2,0,2,0]],[[2,1,1,1],[2,3,3,2],[2,2,2,0],[1,1,0,1]],[[1,1,1,1],[3,3,3,2],[2,2,2,0],[1,1,0,1]],[[1,1,1,1],[2,4,3,2],[2,2,2,0],[1,1,0,1]],[[1,1,1,1],[2,3,4,2],[2,2,2,0],[1,1,0,1]],[[1,1,1,1],[2,3,3,2],[3,2,2,0],[1,1,0,1]],[[1,1,1,1],[2,3,3,2],[2,2,2,0],[2,1,0,1]],[[2,1,1,1],[2,3,3,2],[2,2,2,0],[1,1,1,0]],[[1,1,1,1],[3,3,3,2],[2,2,2,0],[1,1,1,0]],[[1,1,1,1],[2,4,3,2],[2,2,2,0],[1,1,1,0]],[[1,1,1,1],[2,3,4,2],[2,2,2,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,2],[3,2,2,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,2],[2,2,2,0],[2,1,1,0]],[[1,2,0,1],[2,3,3,1],[2,0,3,1],[2,2,1,0]],[[1,2,0,1],[2,3,3,1],[3,0,3,1],[1,2,1,0]],[[1,2,0,1],[2,4,3,1],[2,0,3,1],[1,2,1,0]],[[1,2,0,1],[3,3,3,1],[2,0,3,1],[1,2,1,0]],[[2,2,0,1],[2,3,3,1],[2,0,3,1],[1,2,1,0]],[[1,2,0,1],[2,3,3,1],[2,0,3,1],[2,2,0,1]],[[1,2,0,1],[2,3,3,1],[3,0,3,1],[1,2,0,1]],[[1,2,0,1],[2,4,3,1],[2,0,3,1],[1,2,0,1]],[[2,1,1,1],[2,3,3,2],[2,2,2,0],[1,2,0,0]],[[1,1,1,1],[3,3,3,2],[2,2,2,0],[1,2,0,0]],[[1,1,1,1],[2,4,3,2],[2,2,2,0],[1,2,0,0]],[[1,1,1,1],[2,3,4,2],[2,2,2,0],[1,2,0,0]],[[1,1,1,1],[2,3,3,2],[3,2,2,0],[1,2,0,0]],[[1,1,1,1],[2,3,3,2],[2,2,2,0],[2,2,0,0]],[[1,2,0,1],[3,3,3,1],[2,0,3,1],[1,2,0,1]],[[2,2,0,1],[2,3,3,1],[2,0,3,1],[1,2,0,1]],[[1,2,0,1],[2,3,3,1],[2,0,3,1],[2,1,2,0]],[[1,2,0,1],[2,3,3,1],[3,0,3,1],[1,1,2,0]],[[1,2,0,1],[2,4,3,1],[2,0,3,1],[1,1,2,0]],[[1,2,0,1],[3,3,3,1],[2,0,3,1],[1,1,2,0]],[[2,2,0,1],[2,3,3,1],[2,0,3,1],[1,1,2,0]],[[1,2,0,1],[3,3,3,1],[2,0,3,1],[1,0,2,1]],[[1,3,0,1],[2,3,3,1],[2,0,3,1],[1,0,2,1]],[[2,2,0,1],[2,3,3,1],[2,0,3,1],[1,0,2,1]],[[1,2,0,1],[2,3,3,1],[3,0,3,1],[0,2,2,0]],[[1,2,0,1],[2,4,3,1],[2,0,3,1],[0,2,2,0]],[[1,2,0,1],[3,3,3,1],[2,0,3,1],[0,2,2,0]],[[2,2,0,1],[2,3,3,1],[2,0,3,1],[0,2,2,0]],[[1,2,0,1],[3,3,3,1],[2,0,3,1],[0,1,2,1]],[[1,3,0,1],[2,3,3,1],[2,0,3,1],[0,1,2,1]],[[2,2,0,1],[2,3,3,1],[2,0,3,1],[0,1,2,1]],[[1,2,0,1],[2,3,3,1],[2,0,3,0],[1,3,1,1]],[[1,2,0,1],[2,3,3,1],[2,0,3,0],[2,2,1,1]],[[1,2,0,1],[2,3,3,1],[3,0,3,0],[1,2,1,1]],[[1,2,0,1],[2,4,3,1],[2,0,3,0],[1,2,1,1]],[[1,2,0,1],[3,3,3,1],[2,0,3,0],[1,2,1,1]],[[2,2,0,1],[2,3,3,1],[2,0,3,0],[1,2,1,1]],[[1,2,0,1],[2,3,3,1],[2,0,3,0],[2,1,2,1]],[[1,2,0,1],[2,3,3,1],[3,0,3,0],[1,1,2,1]],[[1,2,0,1],[2,4,3,1],[2,0,3,0],[1,1,2,1]],[[1,2,0,1],[3,3,3,1],[2,0,3,0],[1,1,2,1]],[[2,2,0,1],[2,3,3,1],[2,0,3,0],[1,1,2,1]],[[1,2,0,1],[2,3,3,1],[3,0,3,0],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[2,0,3,0],[0,2,2,1]],[[1,2,0,1],[3,3,3,1],[2,0,3,0],[0,2,2,1]],[[2,2,0,1],[2,3,3,1],[2,0,3,0],[0,2,2,1]],[[1,2,0,1],[2,3,3,1],[2,0,2,1],[1,3,2,0]],[[1,2,0,1],[2,3,3,1],[2,0,2,1],[2,2,2,0]],[[1,2,0,1],[2,3,3,1],[3,0,2,1],[1,2,2,0]],[[1,2,0,1],[2,4,3,1],[2,0,2,1],[1,2,2,0]],[[1,2,0,1],[3,3,3,1],[2,0,2,1],[1,2,2,0]],[[2,2,0,1],[2,3,3,1],[2,0,2,1],[1,2,2,0]],[[1,2,0,1],[2,3,3,1],[2,0,2,0],[1,2,3,1]],[[1,2,0,1],[2,3,3,1],[2,0,2,0],[1,3,2,1]],[[1,2,0,1],[2,3,3,1],[2,0,2,0],[2,2,2,1]],[[1,2,0,1],[2,3,3,1],[3,0,2,0],[1,2,2,1]],[[1,2,0,1],[2,4,3,1],[2,0,2,0],[1,2,2,1]],[[1,2,0,1],[3,3,3,1],[2,0,2,0],[1,2,2,1]],[[2,2,0,1],[2,3,3,1],[2,0,2,0],[1,2,2,1]],[[1,2,0,1],[3,3,3,1],[2,0,0,2],[1,2,2,1]],[[1,3,0,1],[2,3,3,1],[2,0,0,2],[1,2,2,1]],[[2,2,0,1],[2,3,3,1],[2,0,0,2],[1,2,2,1]],[[1,2,0,1],[2,3,3,1],[1,4,3,1],[1,1,0,0]],[[1,2,0,1],[2,4,3,1],[1,3,3,1],[1,1,0,0]],[[1,2,0,1],[3,3,3,1],[1,3,3,1],[1,1,0,0]],[[2,2,0,1],[2,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,2,0,1],[2,3,3,1],[1,4,3,1],[0,2,0,0]],[[1,2,0,1],[2,4,3,1],[1,3,3,1],[0,2,0,0]],[[1,2,0,1],[3,3,3,1],[1,3,3,1],[0,2,0,0]],[[2,2,0,1],[2,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,2,0,1],[2,4,3,1],[1,3,3,1],[0,0,2,0]],[[1,2,0,1],[3,3,3,1],[1,3,3,1],[0,0,2,0]],[[2,2,0,1],[2,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,3,1],[0,0,1,1]],[[1,2,0,1],[3,3,3,1],[1,3,3,1],[0,0,1,1]],[[2,2,0,1],[2,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,2,0,1],[2,3,3,1],[1,4,3,0],[1,2,0,0]],[[1,2,0,1],[2,4,3,1],[1,3,3,0],[1,2,0,0]],[[1,2,0,1],[3,3,3,1],[1,3,3,0],[1,2,0,0]],[[2,2,0,1],[2,3,3,1],[1,3,3,0],[1,2,0,0]],[[1,2,0,1],[2,3,3,1],[1,4,3,0],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[1,3,3,0],[1,1,1,0]],[[1,2,0,1],[3,3,3,1],[1,3,3,0],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,2,0,1],[2,3,3,1],[1,4,3,0],[1,0,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,3,0],[1,0,2,0]],[[1,2,0,1],[3,3,3,1],[1,3,3,0],[1,0,2,0]],[[2,2,0,1],[2,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,2,0,1],[2,3,3,1],[1,3,3,0],[0,3,1,0]],[[1,2,0,1],[2,3,3,1],[1,4,3,0],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[1,3,3,0],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[1,3,3,0],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[1,4,3,0],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,3,0],[0,1,2,0]],[[1,2,0,1],[3,3,3,1],[1,3,3,0],[0,1,2,0]],[[2,2,0,1],[2,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,3,0],[0,0,2,1]],[[1,2,0,1],[3,3,3,1],[1,3,3,0],[0,0,2,1]],[[2,2,0,1],[2,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,2,0,1],[2,3,3,1],[1,4,2,1],[1,2,0,0]],[[1,2,0,1],[2,4,3,1],[1,3,2,1],[1,2,0,0]],[[1,2,0,1],[3,3,3,1],[1,3,2,1],[1,2,0,0]],[[2,2,0,1],[2,3,3,1],[1,3,2,1],[1,2,0,0]],[[1,2,0,1],[2,3,3,1],[1,4,2,1],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[1,3,2,1],[1,1,1,0]],[[1,2,0,1],[3,3,3,1],[1,3,2,1],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,2,0,1],[2,3,3,1],[1,4,2,1],[1,1,0,1]],[[1,2,0,1],[2,4,3,1],[1,3,2,1],[1,1,0,1]],[[1,2,0,1],[3,3,3,1],[1,3,2,1],[1,1,0,1]],[[2,2,0,1],[2,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,2,0,1],[2,3,3,1],[1,4,2,1],[1,0,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,2,1],[1,0,2,0]],[[1,2,0,1],[3,3,3,1],[1,3,2,1],[1,0,2,0]],[[2,2,0,1],[2,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,2,1],[1,0,1,1]],[[1,2,0,1],[3,3,3,1],[1,3,2,1],[1,0,1,1]],[[2,2,0,1],[2,3,3,1],[1,3,2,1],[1,0,1,1]],[[2,1,1,1],[2,3,3,2],[2,2,3,0],[0,2,0,0]],[[1,1,1,1],[3,3,3,2],[2,2,3,0],[0,2,0,0]],[[1,1,1,1],[2,4,3,2],[2,2,3,0],[0,2,0,0]],[[1,1,1,1],[2,3,4,2],[2,2,3,0],[0,2,0,0]],[[1,1,1,1],[2,3,3,2],[3,2,3,0],[0,2,0,0]],[[1,2,0,1],[2,3,3,1],[1,3,2,1],[0,3,1,0]],[[1,2,0,1],[2,3,3,1],[1,4,2,1],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[1,3,2,1],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[1,3,2,1],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[1,4,2,1],[0,2,0,1]],[[1,2,0,1],[2,4,3,1],[1,3,2,1],[0,2,0,1]],[[1,2,0,1],[3,3,3,1],[1,3,2,1],[0,2,0,1]],[[2,2,0,1],[2,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,2,0,1],[2,3,3,1],[1,4,2,1],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,2,1],[0,1,2,0]],[[1,2,0,1],[3,3,3,1],[1,3,2,1],[0,1,2,0]],[[2,2,0,1],[2,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,2,1],[0,1,1,1]],[[1,2,0,1],[3,3,3,1],[1,3,2,1],[0,1,1,1]],[[2,2,0,1],[2,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,2,0,1],[2,3,3,1],[1,4,2,0],[1,2,0,1]],[[1,2,0,1],[2,4,3,1],[1,3,2,0],[1,2,0,1]],[[1,2,0,1],[3,3,3,1],[1,3,2,0],[1,2,0,1]],[[2,2,0,1],[2,3,3,1],[1,3,2,0],[1,2,0,1]],[[2,1,1,1],[2,3,3,2],[2,2,3,0],[1,1,0,0]],[[1,1,1,1],[3,3,3,2],[2,2,3,0],[1,1,0,0]],[[1,1,1,1],[2,4,3,2],[2,2,3,0],[1,1,0,0]],[[1,1,1,1],[2,3,4,2],[2,2,3,0],[1,1,0,0]],[[1,1,1,1],[2,3,3,2],[3,2,3,0],[1,1,0,0]],[[1,1,1,1],[2,3,3,2],[2,2,3,0],[2,1,0,0]],[[1,2,0,1],[2,3,3,1],[1,4,2,0],[1,1,1,1]],[[1,2,0,1],[2,4,3,1],[1,3,2,0],[1,1,1,1]],[[1,2,0,1],[3,3,3,1],[1,3,2,0],[1,1,1,1]],[[2,2,0,1],[2,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,2,0,1],[2,3,3,1],[1,4,2,0],[1,0,2,1]],[[1,2,0,1],[2,4,3,1],[1,3,2,0],[1,0,2,1]],[[1,2,0,1],[3,3,3,1],[1,3,2,0],[1,0,2,1]],[[2,2,0,1],[2,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,2,0,1],[2,3,3,1],[1,3,2,0],[0,3,1,1]],[[1,2,0,1],[2,3,3,1],[1,4,2,0],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[1,3,2,0],[0,2,1,1]],[[1,2,0,1],[3,3,3,1],[1,3,2,0],[0,2,1,1]],[[2,2,0,1],[2,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,2,0,1],[2,3,3,1],[1,4,2,0],[0,1,2,1]],[[1,2,0,1],[2,4,3,1],[1,3,2,0],[0,1,2,1]],[[1,2,0,1],[3,3,3,1],[1,3,2,0],[0,1,2,1]],[[2,2,0,1],[2,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,2,0,1],[2,4,3,1],[1,3,1,2],[1,2,0,0]],[[1,2,0,1],[3,3,3,1],[1,3,1,2],[1,2,0,0]],[[2,2,0,1],[2,3,3,1],[1,3,1,2],[1,2,0,0]],[[1,2,0,1],[2,4,3,1],[1,3,1,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,1],[1,3,1,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[1,3,1,2],[1,1,0,1]],[[1,2,0,1],[3,3,3,1],[1,3,1,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,1],[1,3,1,2],[1,0,2,0]],[[1,2,0,1],[3,3,3,1],[1,3,1,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,1,2],[1,0,1,1]],[[1,2,0,1],[3,3,3,1],[1,3,1,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,2,0,1],[2,4,3,1],[1,3,1,2],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[1,3,1,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[1,3,1,2],[0,2,0,1]],[[1,2,0,1],[3,3,3,1],[1,3,1,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,1],[1,3,1,2],[0,1,2,0]],[[1,2,0,1],[3,3,3,1],[1,3,1,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,1,2],[0,1,1,1]],[[1,2,0,1],[3,3,3,1],[1,3,1,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,2,0,1],[2,3,3,1],[1,4,1,1],[1,1,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,1,1],[1,1,2,0]],[[1,2,0,1],[3,3,3,1],[1,3,1,1],[1,1,2,0]],[[2,2,0,1],[2,3,3,1],[1,3,1,1],[1,1,2,0]],[[1,2,0,1],[2,3,3,1],[1,3,1,1],[0,3,2,0]],[[1,2,0,1],[2,3,3,1],[1,4,1,1],[0,2,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,1,1],[0,2,2,0]],[[1,2,0,1],[3,3,3,1],[1,3,1,1],[0,2,2,0]],[[2,2,0,1],[2,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,2,0,1],[2,3,3,1],[1,4,1,0],[1,1,2,1]],[[1,2,0,1],[2,4,3,1],[1,3,1,0],[1,1,2,1]],[[1,2,0,1],[3,3,3,1],[1,3,1,0],[1,1,2,1]],[[2,2,0,1],[2,3,3,1],[1,3,1,0],[1,1,2,1]],[[1,2,0,1],[2,3,3,1],[1,3,1,0],[0,2,3,1]],[[1,2,0,1],[2,3,3,1],[1,3,1,0],[0,3,2,1]],[[1,2,0,1],[2,3,3,1],[1,4,1,0],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[1,3,1,0],[0,2,2,1]],[[1,2,0,1],[3,3,3,1],[1,3,1,0],[0,2,2,1]],[[2,2,0,1],[2,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[1,3,0,2],[1,1,2,0]],[[1,2,0,1],[3,3,3,1],[1,3,0,2],[1,1,2,0]],[[2,2,0,1],[2,3,3,1],[1,3,0,2],[1,1,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,0,2],[1,1,1,1]],[[1,2,0,1],[3,3,3,1],[1,3,0,2],[1,1,1,1]],[[2,2,0,1],[2,3,3,1],[1,3,0,2],[1,1,1,1]],[[1,2,0,1],[2,4,3,1],[1,3,0,2],[1,0,2,1]],[[1,2,0,1],[3,3,3,1],[1,3,0,2],[1,0,2,1]],[[2,2,0,1],[2,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,2,0,1],[2,4,3,1],[1,3,0,2],[0,2,2,0]],[[1,2,0,1],[3,3,3,1],[1,3,0,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,2,0,1],[2,4,3,1],[1,3,0,2],[0,2,1,1]],[[1,2,0,1],[3,3,3,1],[1,3,0,2],[0,2,1,1]],[[2,2,0,1],[2,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[1,3,0,2],[0,1,2,1]],[[1,2,0,1],[3,3,3,1],[1,3,0,2],[0,1,2,1]],[[2,2,0,1],[2,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,2,0,1],[2,4,3,1],[1,3,0,1],[1,1,2,1]],[[1,2,0,1],[3,3,3,1],[1,3,0,1],[1,1,2,1]],[[2,2,0,1],[2,3,3,1],[1,3,0,1],[1,1,2,1]],[[1,2,0,1],[2,4,3,1],[1,3,0,1],[0,2,2,1]],[[1,2,0,1],[3,3,3,1],[1,3,0,1],[0,2,2,1]],[[2,2,0,1],[2,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[1,2,3,1],[1,1,1,0]],[[1,2,0,1],[3,3,3,1],[1,2,3,1],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[1,2,3,1],[1,1,0,1]],[[1,2,0,1],[3,3,3,1],[1,2,3,1],[1,1,0,1]],[[2,2,0,1],[2,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,2,0,1],[2,4,3,1],[1,2,3,1],[1,0,2,0]],[[1,2,0,1],[3,3,3,1],[1,2,3,1],[1,0,2,0]],[[2,2,0,1],[2,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,2,0,1],[2,4,3,1],[1,2,3,1],[1,0,1,1]],[[1,2,0,1],[3,3,3,1],[1,2,3,1],[1,0,1,1]],[[2,2,0,1],[2,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,2,0,1],[2,4,3,1],[1,2,3,1],[0,2,1,0]],[[1,2,0,1],[3,3,3,1],[1,2,3,1],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[1,2,3,1],[0,2,0,1]],[[1,2,0,1],[3,3,3,1],[1,2,3,1],[0,2,0,1]],[[2,2,0,1],[2,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,2,0,1],[2,4,3,1],[1,2,3,1],[0,1,2,0]],[[1,2,0,1],[3,3,3,1],[1,2,3,1],[0,1,2,0]],[[2,2,0,1],[2,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[1,2,3,1],[0,1,1,1]],[[1,2,0,1],[3,3,3,1],[1,2,3,1],[0,1,1,1]],[[2,2,0,1],[2,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,2,0,1],[2,4,3,1],[1,2,3,0],[1,1,1,1]],[[1,2,0,1],[3,3,3,1],[1,2,3,0],[1,1,1,1]],[[2,2,0,1],[2,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,2,0,1],[2,4,3,1],[1,2,3,0],[1,0,2,1]],[[1,2,0,1],[3,3,3,1],[1,2,3,0],[1,0,2,1]],[[2,2,0,1],[2,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,2,0,1],[2,4,3,1],[1,2,3,0],[0,2,1,1]],[[1,2,0,1],[3,3,3,1],[1,2,3,0],[0,2,1,1]],[[2,2,0,1],[2,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[1,2,3,0],[0,1,2,1]],[[1,2,0,1],[3,3,3,1],[1,2,3,0],[0,1,2,1]],[[2,2,0,1],[2,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,2,0,1],[2,4,3,1],[1,1,3,1],[0,2,2,0]],[[1,2,0,1],[3,3,3,1],[1,1,3,1],[0,2,2,0]],[[2,2,0,1],[2,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,2,0,1],[2,4,3,1],[1,1,3,0],[0,2,2,1]],[[1,2,0,1],[3,3,3,1],[1,1,3,0],[0,2,2,1]],[[2,2,0,1],[2,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[1,0,3,1],[1,2,2,0]],[[1,2,0,1],[3,3,3,1],[1,0,3,1],[1,2,2,0]],[[2,2,0,1],[2,3,3,1],[1,0,3,1],[1,2,2,0]],[[1,2,0,1],[2,4,3,1],[1,0,3,0],[1,2,2,1]],[[1,2,0,1],[3,3,3,1],[1,0,3,0],[1,2,2,1]],[[2,2,0,1],[2,3,3,1],[1,0,3,0],[1,2,2,1]],[[1,2,0,1],[2,3,4,1],[0,3,3,2],[1,1,0,0]],[[1,2,0,1],[2,4,3,1],[0,3,3,2],[1,1,0,0]],[[1,3,0,1],[2,3,3,1],[0,3,3,2],[1,1,0,0]],[[2,2,0,1],[2,3,3,1],[0,3,3,2],[1,1,0,0]],[[1,2,0,1],[2,3,4,1],[0,3,3,2],[0,2,0,0]],[[1,2,0,1],[2,4,3,1],[0,3,3,2],[0,2,0,0]],[[1,3,0,1],[2,3,3,1],[0,3,3,2],[0,2,0,0]],[[2,2,0,1],[2,3,3,1],[0,3,3,2],[0,2,0,0]],[[1,2,0,1],[2,3,3,1],[0,3,3,3],[0,0,2,0]],[[1,2,0,1],[2,3,3,1],[0,3,4,2],[0,0,2,0]],[[1,2,0,1],[2,3,4,1],[0,3,3,2],[0,0,2,0]],[[1,2,0,1],[2,4,3,1],[0,3,3,2],[0,0,2,0]],[[1,3,0,1],[2,3,3,1],[0,3,3,2],[0,0,2,0]],[[2,2,0,1],[2,3,3,1],[0,3,3,2],[0,0,2,0]],[[1,2,0,1],[2,3,3,1],[0,3,3,2],[0,0,1,2]],[[1,2,0,1],[2,3,3,1],[0,3,3,3],[0,0,1,1]],[[1,2,0,1],[2,3,3,1],[0,3,4,2],[0,0,1,1]],[[1,2,0,1],[2,3,4,1],[0,3,3,2],[0,0,1,1]],[[1,2,0,1],[2,4,3,1],[0,3,3,2],[0,0,1,1]],[[1,3,0,1],[2,3,3,1],[0,3,3,2],[0,0,1,1]],[[2,2,0,1],[2,3,3,1],[0,3,3,2],[0,0,1,1]],[[1,2,0,1],[2,3,3,1],[0,4,3,1],[1,2,0,0]],[[1,2,0,1],[2,4,3,1],[0,3,3,1],[1,2,0,0]],[[1,2,0,1],[3,3,3,1],[0,3,3,1],[1,2,0,0]],[[2,2,0,1],[2,3,3,1],[0,3,3,1],[1,2,0,0]],[[1,2,0,1],[2,3,3,1],[0,3,4,1],[0,0,2,1]],[[1,2,0,1],[2,3,4,1],[0,3,3,1],[0,0,2,1]],[[1,2,0,1],[2,4,3,1],[0,3,3,1],[0,0,2,1]],[[1,3,0,1],[2,3,3,1],[0,3,3,1],[0,0,2,1]],[[2,2,0,1],[2,3,3,1],[0,3,3,1],[0,0,2,1]],[[1,2,0,1],[2,3,3,1],[0,3,3,0],[1,3,1,0]],[[1,2,0,1],[2,3,3,1],[0,3,3,0],[2,2,1,0]],[[1,2,0,1],[2,3,3,1],[0,4,3,0],[1,2,1,0]],[[1,2,0,1],[2,4,3,1],[0,3,3,0],[1,2,1,0]],[[1,2,0,1],[3,3,3,1],[0,3,3,0],[1,2,1,0]],[[2,2,0,1],[2,3,3,1],[0,3,3,0],[1,2,1,0]],[[2,1,1,1],[2,3,3,2],[2,3,0,0],[0,2,2,0]],[[1,1,1,1],[3,3,3,2],[2,3,0,0],[0,2,2,0]],[[1,1,1,1],[2,4,3,2],[2,3,0,0],[0,2,2,0]],[[1,1,1,1],[2,3,3,2],[3,3,0,0],[0,2,2,0]],[[2,1,1,1],[2,3,3,2],[2,3,0,0],[1,1,2,0]],[[1,1,1,1],[3,3,3,2],[2,3,0,0],[1,1,2,0]],[[1,1,1,1],[2,4,3,2],[2,3,0,0],[1,1,2,0]],[[1,1,1,1],[2,3,3,2],[3,3,0,0],[1,1,2,0]],[[1,1,1,1],[2,3,3,2],[2,3,0,0],[2,1,2,0]],[[2,1,1,1],[2,3,3,2],[2,3,0,0],[1,2,1,0]],[[1,1,1,1],[3,3,3,2],[2,3,0,0],[1,2,1,0]],[[1,1,1,1],[2,4,3,2],[2,3,0,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,2],[3,3,0,0],[1,2,1,0]],[[1,1,1,1],[2,3,3,2],[2,3,0,0],[2,2,1,0]],[[1,2,0,1],[2,3,3,1],[0,4,3,0],[1,1,2,0]],[[1,2,0,1],[2,4,3,1],[0,3,3,0],[1,1,2,0]],[[1,2,0,1],[3,3,3,1],[0,3,3,0],[1,1,2,0]],[[2,2,0,1],[2,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,2,0,1],[2,3,4,1],[0,3,2,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[0,3,2,2],[1,1,1,0]],[[1,3,0,1],[2,3,3,1],[0,3,2,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[0,3,2,2],[1,1,1,0]],[[1,2,0,1],[2,3,4,1],[0,3,2,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,1],[0,3,2,2],[1,1,0,1]],[[1,3,0,1],[2,3,3,1],[0,3,2,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,1],[0,3,2,2],[1,1,0,1]],[[1,2,0,1],[2,3,4,1],[0,3,2,2],[1,0,2,0]],[[1,2,0,1],[2,4,3,1],[0,3,2,2],[1,0,2,0]],[[1,3,0,1],[2,3,3,1],[0,3,2,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,1],[0,3,2,2],[1,0,2,0]],[[1,2,0,1],[2,3,4,1],[0,3,2,2],[1,0,1,1]],[[1,2,0,1],[2,4,3,1],[0,3,2,2],[1,0,1,1]],[[1,3,0,1],[2,3,3,1],[0,3,2,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,1],[0,3,2,2],[1,0,1,1]],[[1,2,0,1],[2,3,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[0,3,2,2],[0,2,1,0]],[[1,3,0,1],[2,3,3,1],[0,3,2,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[0,3,2,2],[0,2,1,0]],[[1,2,0,1],[2,3,4,1],[0,3,2,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,1],[0,3,2,2],[0,2,0,1]],[[1,3,0,1],[2,3,3,1],[0,3,2,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,1],[0,3,2,2],[0,2,0,1]],[[1,2,0,1],[2,3,4,1],[0,3,2,2],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[0,3,2,2],[0,1,2,0]],[[1,3,0,1],[2,3,3,1],[0,3,2,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,1],[0,3,2,2],[0,1,2,0]],[[1,2,0,1],[2,3,4,1],[0,3,2,2],[0,1,1,1]],[[1,2,0,1],[2,4,3,1],[0,3,2,2],[0,1,1,1]],[[1,3,0,1],[2,3,3,1],[0,3,2,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,1],[0,3,2,2],[0,1,1,1]],[[1,2,0,1],[2,3,3,1],[0,3,2,1],[1,3,1,0]],[[1,2,0,1],[2,3,3,1],[0,3,2,1],[2,2,1,0]],[[1,2,0,1],[2,3,3,1],[0,4,2,1],[1,2,1,0]],[[1,2,0,1],[2,4,3,1],[0,3,2,1],[1,2,1,0]],[[1,2,0,1],[3,3,3,1],[0,3,2,1],[1,2,1,0]],[[2,2,0,1],[2,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,2,0,1],[2,3,3,1],[0,4,2,1],[1,2,0,1]],[[1,2,0,1],[2,4,3,1],[0,3,2,1],[1,2,0,1]],[[1,2,0,1],[3,3,3,1],[0,3,2,1],[1,2,0,1]],[[2,2,0,1],[2,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,2,0,1],[2,3,3,1],[0,4,2,1],[1,1,2,0]],[[1,2,0,1],[2,4,3,1],[0,3,2,1],[1,1,2,0]],[[1,2,0,1],[3,3,3,1],[0,3,2,1],[1,1,2,0]],[[2,2,0,1],[2,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,2,0,1],[2,3,4,1],[0,3,2,1],[1,0,2,1]],[[1,2,0,1],[2,4,3,1],[0,3,2,1],[1,0,2,1]],[[1,3,0,1],[2,3,3,1],[0,3,2,1],[1,0,2,1]],[[2,2,0,1],[2,3,3,1],[0,3,2,1],[1,0,2,1]],[[1,2,0,1],[2,3,4,1],[0,3,2,1],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[0,3,2,1],[0,2,1,1]],[[1,3,0,1],[2,3,3,1],[0,3,2,1],[0,2,1,1]],[[2,2,0,1],[2,3,3,1],[0,3,2,1],[0,2,1,1]],[[1,2,0,1],[2,3,4,1],[0,3,2,1],[0,1,2,1]],[[1,2,0,1],[2,4,3,1],[0,3,2,1],[0,1,2,1]],[[1,3,0,1],[2,3,3,1],[0,3,2,1],[0,1,2,1]],[[2,2,0,1],[2,3,3,1],[0,3,2,1],[0,1,2,1]],[[1,2,0,1],[2,3,3,1],[0,3,2,0],[1,3,1,1]],[[1,2,0,1],[2,3,3,1],[0,3,2,0],[2,2,1,1]],[[1,2,0,1],[2,3,3,1],[0,4,2,0],[1,2,1,1]],[[1,2,0,1],[2,4,3,1],[0,3,2,0],[1,2,1,1]],[[1,2,0,1],[3,3,3,1],[0,3,2,0],[1,2,1,1]],[[2,2,0,1],[2,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,2,0,1],[2,3,3,1],[0,4,2,0],[1,1,2,1]],[[1,2,0,1],[2,4,3,1],[0,3,2,0],[1,1,2,1]],[[1,2,0,1],[3,3,3,1],[0,3,2,0],[1,1,2,1]],[[2,2,0,1],[2,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,2,0,1],[2,4,3,1],[0,3,1,2],[1,2,1,0]],[[1,2,0,1],[3,3,3,1],[0,3,1,2],[1,2,1,0]],[[2,2,0,1],[2,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,2,0,1],[2,4,3,1],[0,3,1,2],[1,2,0,1]],[[1,2,0,1],[3,3,3,1],[0,3,1,2],[1,2,0,1]],[[2,2,0,1],[2,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,2,0,1],[2,3,4,1],[0,3,1,2],[0,2,2,0]],[[1,2,0,1],[2,4,3,1],[0,3,1,2],[0,2,2,0]],[[1,3,0,1],[2,3,3,1],[0,3,1,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,1],[0,3,1,2],[0,2,2,0]],[[2,1,1,1],[2,3,3,2],[2,3,1,0],[0,2,0,1]],[[1,1,1,1],[3,3,3,2],[2,3,1,0],[0,2,0,1]],[[1,1,1,1],[2,4,3,2],[2,3,1,0],[0,2,0,1]],[[1,1,1,1],[2,3,3,2],[3,3,1,0],[0,2,0,1]],[[2,1,1,1],[2,3,3,2],[2,3,1,0],[0,2,1,0]],[[1,1,1,1],[3,3,3,2],[2,3,1,0],[0,2,1,0]],[[1,1,1,1],[2,4,3,2],[2,3,1,0],[0,2,1,0]],[[1,1,1,1],[2,3,3,2],[3,3,1,0],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[0,3,1,1],[1,3,2,0]],[[1,2,0,1],[2,3,3,1],[0,3,1,1],[2,2,2,0]],[[1,2,0,1],[2,3,3,1],[0,4,1,1],[1,2,2,0]],[[1,2,0,1],[2,4,3,1],[0,3,1,1],[1,2,2,0]],[[1,2,0,1],[3,3,3,1],[0,3,1,1],[1,2,2,0]],[[2,2,0,1],[2,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,2,0,1],[2,3,4,1],[0,3,1,1],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[0,3,1,1],[0,2,2,1]],[[2,1,1,1],[2,3,3,2],[2,3,1,0],[1,1,0,1]],[[1,1,1,1],[3,3,3,2],[2,3,1,0],[1,1,0,1]],[[1,1,1,1],[2,4,3,2],[2,3,1,0],[1,1,0,1]],[[1,1,1,1],[2,3,3,2],[3,3,1,0],[1,1,0,1]],[[1,1,1,1],[2,3,3,2],[2,3,1,0],[2,1,0,1]],[[2,1,1,1],[2,3,3,2],[2,3,1,0],[1,1,1,0]],[[1,1,1,1],[3,3,3,2],[2,3,1,0],[1,1,1,0]],[[1,1,1,1],[2,4,3,2],[2,3,1,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,2],[3,3,1,0],[1,1,1,0]],[[1,1,1,1],[2,3,3,2],[2,3,1,0],[2,1,1,0]],[[1,3,0,1],[2,3,3,1],[0,3,1,1],[0,2,2,1]],[[2,2,0,1],[2,3,3,1],[0,3,1,1],[0,2,2,1]],[[1,2,0,1],[2,3,3,1],[0,3,1,0],[1,2,3,1]],[[1,2,0,1],[2,3,3,1],[0,3,1,0],[1,3,2,1]],[[1,2,0,1],[2,3,3,1],[0,3,1,0],[2,2,2,1]],[[1,2,0,1],[2,3,3,1],[0,4,1,0],[1,2,2,1]],[[1,2,0,1],[2,4,3,1],[0,3,1,0],[1,2,2,1]],[[1,2,0,1],[3,3,3,1],[0,3,1,0],[1,2,2,1]],[[2,2,0,1],[2,3,3,1],[0,3,1,0],[1,2,2,1]],[[2,1,1,1],[2,3,3,2],[2,3,1,0],[1,2,0,0]],[[1,1,1,1],[3,3,3,2],[2,3,1,0],[1,2,0,0]],[[1,1,1,1],[2,4,3,2],[2,3,1,0],[1,2,0,0]],[[1,1,1,1],[2,3,3,2],[3,3,1,0],[1,2,0,0]],[[1,1,1,1],[2,3,3,2],[2,3,1,0],[2,2,0,0]],[[1,2,0,1],[2,4,3,1],[0,3,0,2],[1,2,2,0]],[[1,2,0,1],[3,3,3,1],[0,3,0,2],[1,2,2,0]],[[2,2,0,1],[2,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,2,0,1],[2,4,3,1],[0,3,0,2],[1,2,1,1]],[[1,2,0,1],[3,3,3,1],[0,3,0,2],[1,2,1,1]],[[2,2,0,1],[2,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,2,0,1],[2,3,4,1],[0,3,0,2],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[0,3,0,2],[0,2,2,1]],[[1,3,0,1],[2,3,3,1],[0,3,0,2],[0,2,2,1]],[[2,2,0,1],[2,3,3,1],[0,3,0,2],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[0,3,0,1],[1,2,2,1]],[[1,2,0,1],[3,3,3,1],[0,3,0,1],[1,2,2,1]],[[2,2,0,1],[2,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,2,0,1],[2,3,4,1],[0,2,3,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,1],[0,2,3,2],[1,1,1,0]],[[1,3,0,1],[2,3,3,1],[0,2,3,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,1],[0,2,3,2],[1,1,1,0]],[[1,2,0,1],[2,3,4,1],[0,2,3,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,2],[1,1,0,1]],[[1,3,0,1],[2,3,3,1],[0,2,3,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,1],[0,2,3,2],[1,1,0,1]],[[1,2,0,1],[2,3,3,1],[0,2,3,3],[1,0,2,0]],[[1,2,0,1],[2,3,3,1],[0,2,4,2],[1,0,2,0]],[[1,2,0,1],[2,3,4,1],[0,2,3,2],[1,0,2,0]],[[1,2,0,1],[2,4,3,1],[0,2,3,2],[1,0,2,0]],[[1,3,0,1],[2,3,3,1],[0,2,3,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,1],[0,2,3,2],[1,0,2,0]],[[1,2,0,1],[2,3,3,1],[0,2,3,2],[1,0,1,2]],[[1,2,0,1],[2,3,3,1],[0,2,3,3],[1,0,1,1]],[[1,2,0,1],[2,3,3,1],[0,2,4,2],[1,0,1,1]],[[1,2,0,1],[2,3,4,1],[0,2,3,2],[1,0,1,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,2],[1,0,1,1]],[[1,3,0,1],[2,3,3,1],[0,2,3,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,1],[0,2,3,2],[1,0,1,1]],[[1,2,0,1],[2,3,3,1],[0,2,3,3],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[0,2,4,2],[0,2,1,0]],[[1,2,0,1],[2,3,4,1],[0,2,3,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,1],[0,2,3,2],[0,2,1,0]],[[1,3,0,1],[2,3,3,1],[0,2,3,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,1],[0,2,3,2],[0,2,1,0]],[[1,2,0,1],[2,3,3,1],[0,2,3,2],[0,2,0,2]],[[1,2,0,1],[2,3,3,1],[0,2,3,3],[0,2,0,1]],[[1,2,0,1],[2,3,3,1],[0,2,4,2],[0,2,0,1]],[[1,2,0,1],[2,3,4,1],[0,2,3,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,2],[0,2,0,1]],[[1,3,0,1],[2,3,3,1],[0,2,3,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,1],[0,2,3,2],[0,2,0,1]],[[1,2,0,1],[2,3,3,1],[0,2,3,2],[0,1,3,0]],[[1,2,0,1],[2,3,3,1],[0,2,3,3],[0,1,2,0]],[[1,2,0,1],[2,3,3,1],[0,2,4,2],[0,1,2,0]],[[1,2,0,1],[2,3,4,1],[0,2,3,2],[0,1,2,0]],[[1,2,0,1],[2,4,3,1],[0,2,3,2],[0,1,2,0]],[[1,3,0,1],[2,3,3,1],[0,2,3,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,1],[0,2,3,2],[0,1,2,0]],[[1,2,0,1],[2,3,3,1],[0,2,3,2],[0,1,1,2]],[[1,2,0,1],[2,3,3,1],[0,2,3,3],[0,1,1,1]],[[1,2,0,1],[2,3,3,1],[0,2,4,2],[0,1,1,1]],[[1,2,0,1],[2,3,4,1],[0,2,3,2],[0,1,1,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,2],[0,1,1,1]],[[1,3,0,1],[2,3,3,1],[0,2,3,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,1],[0,2,3,2],[0,1,1,1]],[[1,2,0,1],[2,3,3,1],[0,2,3,2],[0,0,2,2]],[[1,2,0,1],[2,3,3,1],[0,2,3,3],[0,0,2,1]],[[1,2,0,1],[2,3,3,1],[0,2,4,2],[0,0,2,1]],[[1,2,0,1],[2,3,4,1],[0,2,3,2],[0,0,2,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,2],[0,0,2,1]],[[1,3,0,1],[2,3,3,1],[0,2,3,2],[0,0,2,1]],[[2,2,0,1],[2,3,3,1],[0,2,3,2],[0,0,2,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,1],[1,2,1,0]],[[1,2,0,1],[3,3,3,1],[0,2,3,1],[1,2,1,0]],[[2,2,0,1],[2,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,2,0,1],[2,4,3,1],[0,2,3,1],[1,2,0,1]],[[1,2,0,1],[3,3,3,1],[0,2,3,1],[1,2,0,1]],[[2,2,0,1],[2,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,1],[1,1,2,0]],[[1,2,0,1],[3,3,3,1],[0,2,3,1],[1,1,2,0]],[[2,2,0,1],[2,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,2,0,1],[2,3,3,1],[0,2,4,1],[1,0,2,1]],[[1,2,0,1],[2,3,4,1],[0,2,3,1],[1,0,2,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,1],[1,0,2,1]],[[1,3,0,1],[2,3,3,1],[0,2,3,1],[1,0,2,1]],[[2,2,0,1],[2,3,3,1],[0,2,3,1],[1,0,2,1]],[[1,2,0,1],[2,3,3,1],[0,2,4,1],[0,2,1,1]],[[1,2,0,1],[2,3,4,1],[0,2,3,1],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,1],[0,2,1,1]],[[1,3,0,1],[2,3,3,1],[0,2,3,1],[0,2,1,1]],[[2,2,0,1],[2,3,3,1],[0,2,3,1],[0,2,1,1]],[[1,2,0,1],[2,3,3,1],[0,2,3,1],[0,1,2,2]],[[1,2,0,1],[2,3,3,1],[0,2,3,1],[0,1,3,1]],[[1,2,0,1],[2,3,3,1],[0,2,4,1],[0,1,2,1]],[[1,2,0,1],[2,3,4,1],[0,2,3,1],[0,1,2,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,1],[0,1,2,1]],[[1,3,0,1],[2,3,3,1],[0,2,3,1],[0,1,2,1]],[[2,2,0,1],[2,3,3,1],[0,2,3,1],[0,1,2,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,0],[1,2,1,1]],[[1,2,0,1],[3,3,3,1],[0,2,3,0],[1,2,1,1]],[[2,2,0,1],[2,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,2,0,1],[2,4,3,1],[0,2,3,0],[1,1,2,1]],[[1,2,0,1],[3,3,3,1],[0,2,3,0],[1,1,2,1]],[[2,2,0,1],[2,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,2,0,1],[2,3,3,1],[0,2,2,2],[0,1,2,2]],[[1,2,0,1],[2,3,3,1],[0,2,2,2],[0,1,3,1]],[[1,2,0,1],[2,3,3,1],[0,2,2,3],[0,1,2,1]],[[1,2,0,1],[2,3,3,1],[0,1,3,2],[0,2,3,0]],[[1,2,0,1],[2,3,3,1],[0,1,3,3],[0,2,2,0]],[[1,2,0,1],[2,3,3,1],[0,1,4,2],[0,2,2,0]],[[1,2,0,1],[2,3,4,1],[0,1,3,2],[0,2,2,0]],[[1,2,0,1],[2,4,3,1],[0,1,3,2],[0,2,2,0]],[[1,3,0,1],[2,3,3,1],[0,1,3,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,1],[0,1,3,2],[0,2,2,0]],[[1,2,0,1],[2,3,3,1],[0,1,3,2],[0,2,1,2]],[[1,2,0,1],[2,3,3,1],[0,1,3,3],[0,2,1,1]],[[1,2,0,1],[2,3,3,1],[0,1,4,2],[0,2,1,1]],[[1,2,0,1],[2,3,4,1],[0,1,3,2],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[0,1,3,2],[0,2,1,1]],[[1,3,0,1],[2,3,3,1],[0,1,3,2],[0,2,1,1]],[[2,2,0,1],[2,3,3,1],[0,1,3,2],[0,2,1,1]],[[1,2,0,1],[2,4,3,1],[0,1,3,1],[1,2,2,0]],[[1,2,0,1],[3,3,3,1],[0,1,3,1],[1,2,2,0]],[[2,2,0,1],[2,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,2,0,1],[2,3,3,1],[0,1,3,1],[0,2,2,2]],[[1,2,0,1],[2,3,3,1],[0,1,3,1],[0,2,3,1]],[[1,2,0,1],[2,3,3,1],[0,1,4,1],[0,2,2,1]],[[1,2,0,1],[2,3,4,1],[0,1,3,1],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[0,1,3,1],[0,2,2,1]],[[1,3,0,1],[2,3,3,1],[0,1,3,1],[0,2,2,1]],[[2,2,0,1],[2,3,3,1],[0,1,3,1],[0,2,2,1]],[[1,2,0,1],[2,4,3,1],[0,1,3,0],[1,2,2,1]],[[1,2,0,1],[3,3,3,1],[0,1,3,0],[1,2,2,1]],[[2,2,0,1],[2,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,2,0,1],[2,3,3,1],[0,1,2,2],[0,2,2,2]],[[1,2,0,1],[2,3,3,1],[0,1,2,2],[0,2,3,1]],[[1,2,0,1],[2,3,3,1],[0,1,2,3],[0,2,2,1]],[[1,2,0,1],[2,3,3,1],[0,0,3,2],[0,2,2,2]],[[1,2,0,1],[2,3,3,1],[0,0,3,2],[0,2,3,1]],[[1,2,0,1],[2,3,3,1],[0,0,3,3],[0,2,2,1]],[[1,2,0,1],[2,3,3,0],[3,3,3,2],[1,0,0,0]],[[1,2,0,1],[2,4,3,0],[2,3,3,2],[1,0,0,0]],[[1,2,0,1],[3,3,3,0],[2,3,3,2],[1,0,0,0]],[[2,2,0,1],[2,3,3,0],[2,3,3,2],[1,0,0,0]],[[1,2,0,1],[2,3,3,0],[3,3,2,2],[1,0,1,0]],[[1,2,0,1],[2,4,3,0],[2,3,2,2],[1,0,1,0]],[[1,2,0,1],[3,3,3,0],[2,3,2,2],[1,0,1,0]],[[2,2,0,1],[2,3,3,0],[2,3,2,2],[1,0,1,0]],[[1,2,0,1],[2,3,3,0],[3,3,2,2],[1,0,0,1]],[[1,2,0,1],[2,4,3,0],[2,3,2,2],[1,0,0,1]],[[1,2,0,1],[3,3,3,0],[2,3,2,2],[1,0,0,1]],[[2,2,0,1],[2,3,3,0],[2,3,2,2],[1,0,0,1]],[[2,1,1,1],[2,3,3,2],[2,3,2,0],[1,0,0,1]],[[1,1,1,1],[3,3,3,2],[2,3,2,0],[1,0,0,1]],[[1,1,1,1],[2,4,3,2],[2,3,2,0],[1,0,0,1]],[[1,1,1,1],[2,3,4,2],[2,3,2,0],[1,0,0,1]],[[1,1,1,1],[2,3,3,2],[3,3,2,0],[1,0,0,1]],[[2,1,1,1],[2,3,3,2],[2,3,2,0],[1,0,1,0]],[[1,1,1,1],[3,3,3,2],[2,3,2,0],[1,0,1,0]],[[1,1,1,1],[2,4,3,2],[2,3,2,0],[1,0,1,0]],[[1,1,1,1],[2,3,4,2],[2,3,2,0],[1,0,1,0]],[[1,1,1,1],[2,3,3,2],[3,3,2,0],[1,0,1,0]],[[1,2,0,1],[2,3,3,0],[3,3,2,1],[1,0,1,1]],[[1,2,0,1],[2,4,3,0],[2,3,2,1],[1,0,1,1]],[[1,2,0,1],[3,3,3,0],[2,3,2,1],[1,0,1,1]],[[2,2,0,1],[2,3,3,0],[2,3,2,1],[1,0,1,1]],[[1,2,0,1],[2,3,3,0],[2,3,1,2],[2,2,0,0]],[[1,2,0,1],[2,3,3,0],[3,3,1,2],[1,2,0,0]],[[1,2,0,1],[2,4,3,0],[2,3,1,2],[1,2,0,0]],[[1,2,0,1],[3,3,3,0],[2,3,1,2],[1,2,0,0]],[[2,2,0,1],[2,3,3,0],[2,3,1,2],[1,2,0,0]],[[1,2,0,1],[2,3,3,0],[2,3,1,2],[2,1,1,0]],[[1,2,0,1],[2,3,3,0],[3,3,1,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,0],[2,3,1,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,0],[2,3,1,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,0],[2,3,1,2],[1,1,1,0]],[[1,2,0,1],[2,3,3,0],[2,3,1,2],[2,1,0,1]],[[1,2,0,1],[2,3,3,0],[3,3,1,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,0],[2,3,1,2],[1,1,0,1]],[[1,2,0,1],[3,3,3,0],[2,3,1,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,0],[2,3,1,2],[1,1,0,1]],[[1,2,0,1],[2,3,3,0],[3,3,1,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,0],[2,3,1,2],[0,2,1,0]],[[1,2,0,1],[3,3,3,0],[2,3,1,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,0],[2,3,1,2],[0,2,1,0]],[[1,2,0,1],[2,3,3,0],[3,3,1,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,0],[2,3,1,2],[0,2,0,1]],[[1,2,0,1],[3,3,3,0],[2,3,1,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,0],[2,3,1,2],[0,2,0,1]],[[1,2,0,1],[2,3,3,0],[2,3,1,1],[2,2,0,1]],[[1,2,0,1],[2,3,3,0],[3,3,1,1],[1,2,0,1]],[[1,2,0,1],[2,4,3,0],[2,3,1,1],[1,2,0,1]],[[1,2,0,1],[3,3,3,0],[2,3,1,1],[1,2,0,1]],[[2,2,0,1],[2,3,3,0],[2,3,1,1],[1,2,0,1]],[[1,2,0,1],[2,3,3,0],[2,3,1,1],[2,1,1,1]],[[1,2,0,1],[2,3,3,0],[3,3,1,1],[1,1,1,1]],[[1,2,0,1],[2,4,3,0],[2,3,1,1],[1,1,1,1]],[[1,2,0,1],[3,3,3,0],[2,3,1,1],[1,1,1,1]],[[2,2,0,1],[2,3,3,0],[2,3,1,1],[1,1,1,1]],[[1,2,0,1],[2,3,3,0],[3,3,1,1],[0,2,1,1]],[[1,2,0,1],[2,4,3,0],[2,3,1,1],[0,2,1,1]],[[1,2,0,1],[3,3,3,0],[2,3,1,1],[0,2,1,1]],[[2,2,0,1],[2,3,3,0],[2,3,1,1],[0,2,1,1]],[[1,2,0,1],[2,3,3,0],[2,3,0,2],[2,2,1,0]],[[1,2,0,1],[2,3,3,0],[3,3,0,2],[1,2,1,0]],[[1,2,0,1],[2,4,3,0],[2,3,0,2],[1,2,1,0]],[[1,2,0,1],[3,3,3,0],[2,3,0,2],[1,2,1,0]],[[2,2,0,1],[2,3,3,0],[2,3,0,2],[1,2,1,0]],[[1,2,0,1],[2,3,3,0],[2,3,0,2],[2,1,2,0]],[[1,2,0,1],[2,3,3,0],[3,3,0,2],[1,1,2,0]],[[1,2,0,1],[2,4,3,0],[2,3,0,2],[1,1,2,0]],[[1,2,0,1],[3,3,3,0],[2,3,0,2],[1,1,2,0]],[[2,2,0,1],[2,3,3,0],[2,3,0,2],[1,1,2,0]],[[1,2,0,1],[2,3,3,0],[3,3,0,2],[0,2,2,0]],[[1,2,0,1],[2,4,3,0],[2,3,0,2],[0,2,2,0]],[[1,2,0,1],[3,3,3,0],[2,3,0,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,0],[2,3,0,2],[0,2,2,0]],[[1,2,0,1],[2,3,3,0],[2,3,0,1],[2,2,1,1]],[[1,2,0,1],[2,3,3,0],[3,3,0,1],[1,2,1,1]],[[1,2,0,1],[2,4,3,0],[2,3,0,1],[1,2,1,1]],[[1,2,0,1],[3,3,3,0],[2,3,0,1],[1,2,1,1]],[[2,2,0,1],[2,3,3,0],[2,3,0,1],[1,2,1,1]],[[1,2,0,1],[2,3,3,0],[2,3,0,1],[2,1,2,1]],[[1,2,0,1],[2,3,3,0],[3,3,0,1],[1,1,2,1]],[[1,2,0,1],[2,4,3,0],[2,3,0,1],[1,1,2,1]],[[1,2,0,1],[3,3,3,0],[2,3,0,1],[1,1,2,1]],[[2,2,0,1],[2,3,3,0],[2,3,0,1],[1,1,2,1]],[[1,2,0,1],[2,3,3,0],[3,3,0,1],[0,2,2,1]],[[1,2,0,1],[2,4,3,0],[2,3,0,1],[0,2,2,1]],[[1,2,0,1],[3,3,3,0],[2,3,0,1],[0,2,2,1]],[[2,2,0,1],[2,3,3,0],[2,3,0,1],[0,2,2,1]],[[1,2,0,1],[2,3,3,0],[2,3,0,0],[1,3,2,1]],[[1,2,0,1],[2,3,3,0],[2,3,0,0],[2,2,2,1]],[[1,2,0,1],[2,3,3,0],[3,3,0,0],[1,2,2,1]],[[1,2,0,1],[3,3,3,0],[2,3,0,0],[1,2,2,1]],[[2,2,0,1],[2,3,3,0],[2,3,0,0],[1,2,2,1]],[[1,2,0,1],[2,3,3,0],[2,2,3,2],[2,1,0,0]],[[1,2,0,1],[2,3,3,0],[3,2,3,2],[1,1,0,0]],[[1,2,0,1],[2,4,3,0],[2,2,3,2],[1,1,0,0]],[[1,2,0,1],[3,3,3,0],[2,2,3,2],[1,1,0,0]],[[2,2,0,1],[2,3,3,0],[2,2,3,2],[1,1,0,0]],[[1,2,0,1],[2,3,3,0],[3,2,3,2],[0,2,0,0]],[[1,2,0,1],[2,4,3,0],[2,2,3,2],[0,2,0,0]],[[1,2,0,1],[3,3,3,0],[2,2,3,2],[0,2,0,0]],[[2,2,0,1],[2,3,3,0],[2,2,3,2],[0,2,0,0]],[[1,2,0,1],[2,3,3,0],[2,2,2,2],[2,2,0,0]],[[1,2,0,1],[2,3,3,0],[3,2,2,2],[1,2,0,0]],[[1,2,0,1],[2,4,3,0],[2,2,2,2],[1,2,0,0]],[[1,2,0,1],[3,3,3,0],[2,2,2,2],[1,2,0,0]],[[2,2,0,1],[2,3,3,0],[2,2,2,2],[1,2,0,0]],[[1,2,0,1],[2,3,3,0],[2,2,2,2],[2,1,1,0]],[[1,2,0,1],[2,3,3,0],[3,2,2,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,0],[2,2,2,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,0],[2,2,2,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,0],[2,2,2,2],[1,1,1,0]],[[1,2,0,1],[2,3,3,0],[2,2,2,2],[2,1,0,1]],[[1,2,0,1],[2,3,3,0],[3,2,2,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,0],[2,2,2,2],[1,1,0,1]],[[1,2,0,1],[3,3,3,0],[2,2,2,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,0],[2,2,2,2],[1,1,0,1]],[[1,2,0,1],[2,3,3,0],[2,2,2,2],[2,0,2,0]],[[1,2,0,1],[2,3,3,0],[3,2,2,2],[1,0,2,0]],[[1,2,0,1],[2,4,3,0],[2,2,2,2],[1,0,2,0]],[[1,2,0,1],[3,3,3,0],[2,2,2,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,0],[2,2,2,2],[1,0,2,0]],[[1,2,0,1],[2,3,3,0],[2,2,2,2],[2,0,1,1]],[[1,2,0,1],[2,3,3,0],[3,2,2,2],[1,0,1,1]],[[1,2,0,1],[2,4,3,0],[2,2,2,2],[1,0,1,1]],[[1,2,0,1],[3,3,3,0],[2,2,2,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,0],[2,2,2,2],[1,0,1,1]],[[1,2,0,1],[2,3,3,0],[3,2,2,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,0],[2,2,2,2],[0,2,1,0]],[[1,2,0,1],[3,3,3,0],[2,2,2,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,0],[2,2,2,2],[0,2,1,0]],[[1,2,0,1],[2,3,3,0],[3,2,2,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,0],[2,2,2,2],[0,2,0,1]],[[1,2,0,1],[3,3,3,0],[2,2,2,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,0],[2,2,2,2],[0,2,0,1]],[[1,2,0,1],[2,3,3,0],[3,2,2,2],[0,1,2,0]],[[1,2,0,1],[2,4,3,0],[2,2,2,2],[0,1,2,0]],[[1,2,0,1],[3,3,3,0],[2,2,2,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,0],[2,2,2,2],[0,1,2,0]],[[1,2,0,1],[2,3,3,0],[3,2,2,2],[0,1,1,1]],[[1,2,0,1],[2,4,3,0],[2,2,2,2],[0,1,1,1]],[[1,2,0,1],[3,3,3,0],[2,2,2,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,0],[2,2,2,2],[0,1,1,1]],[[1,2,0,1],[2,3,3,0],[2,2,2,1],[2,2,0,1]],[[1,2,0,1],[2,3,3,0],[3,2,2,1],[1,2,0,1]],[[1,2,0,1],[2,4,3,0],[2,2,2,1],[1,2,0,1]],[[1,2,0,1],[3,3,3,0],[2,2,2,1],[1,2,0,1]],[[2,2,0,1],[2,3,3,0],[2,2,2,1],[1,2,0,1]],[[1,2,0,1],[2,3,3,0],[2,2,2,1],[2,1,1,1]],[[1,2,0,1],[2,3,3,0],[3,2,2,1],[1,1,1,1]],[[1,2,0,1],[2,4,3,0],[2,2,2,1],[1,1,1,1]],[[1,2,0,1],[3,3,3,0],[2,2,2,1],[1,1,1,1]],[[2,2,0,1],[2,3,3,0],[2,2,2,1],[1,1,1,1]],[[1,2,0,1],[2,3,3,0],[2,2,2,1],[2,0,2,1]],[[1,2,0,1],[2,3,3,0],[3,2,2,1],[1,0,2,1]],[[1,2,0,1],[2,4,3,0],[2,2,2,1],[1,0,2,1]],[[1,2,0,1],[3,3,3,0],[2,2,2,1],[1,0,2,1]],[[2,2,0,1],[2,3,3,0],[2,2,2,1],[1,0,2,1]],[[1,2,0,1],[2,3,3,0],[3,2,2,1],[0,2,1,1]],[[1,2,0,1],[2,4,3,0],[2,2,2,1],[0,2,1,1]],[[1,2,0,1],[3,3,3,0],[2,2,2,1],[0,2,1,1]],[[2,2,0,1],[2,3,3,0],[2,2,2,1],[0,2,1,1]],[[1,2,0,1],[2,3,3,0],[3,2,2,1],[0,1,2,1]],[[1,2,0,1],[2,4,3,0],[2,2,2,1],[0,1,2,1]],[[1,2,0,1],[3,3,3,0],[2,2,2,1],[0,1,2,1]],[[2,2,0,1],[2,3,3,0],[2,2,2,1],[0,1,2,1]],[[1,2,0,1],[2,3,3,0],[2,2,1,2],[2,1,2,0]],[[1,2,0,1],[2,3,3,0],[3,2,1,2],[1,1,2,0]],[[1,2,0,1],[2,4,3,0],[2,2,1,2],[1,1,2,0]],[[1,2,0,1],[3,3,3,0],[2,2,1,2],[1,1,2,0]],[[2,2,0,1],[2,3,3,0],[2,2,1,2],[1,1,2,0]],[[1,2,0,1],[2,3,3,0],[3,2,1,2],[0,2,2,0]],[[1,2,0,1],[2,4,3,0],[2,2,1,2],[0,2,2,0]],[[1,2,0,1],[3,3,3,0],[2,2,1,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,0],[2,2,1,2],[0,2,2,0]],[[1,2,0,1],[2,3,3,0],[2,2,1,1],[2,1,2,1]],[[1,2,0,1],[2,3,3,0],[3,2,1,1],[1,1,2,1]],[[1,2,0,1],[2,4,3,0],[2,2,1,1],[1,1,2,1]],[[1,2,0,1],[3,3,3,0],[2,2,1,1],[1,1,2,1]],[[2,2,0,1],[2,3,3,0],[2,2,1,1],[1,1,2,1]],[[1,2,0,1],[2,3,3,0],[3,2,1,1],[0,2,2,1]],[[1,2,0,1],[2,4,3,0],[2,2,1,1],[0,2,2,1]],[[1,2,0,1],[3,3,3,0],[2,2,1,1],[0,2,2,1]],[[2,2,0,1],[2,3,3,0],[2,2,1,1],[0,2,2,1]],[[1,2,0,1],[2,3,3,0],[2,2,0,2],[1,3,2,0]],[[1,2,0,1],[2,3,3,0],[2,2,0,2],[2,2,2,0]],[[1,2,0,1],[2,3,3,0],[3,2,0,2],[1,2,2,0]],[[1,2,0,1],[2,4,3,0],[2,2,0,2],[1,2,2,0]],[[1,2,0,1],[3,3,3,0],[2,2,0,2],[1,2,2,0]],[[2,2,0,1],[2,3,3,0],[2,2,0,2],[1,2,2,0]],[[1,2,0,1],[2,3,3,0],[2,2,0,2],[2,1,2,1]],[[1,2,0,1],[2,3,3,0],[3,2,0,2],[1,1,2,1]],[[1,2,0,1],[2,4,3,0],[2,2,0,2],[1,1,2,1]],[[1,2,0,1],[3,3,3,0],[2,2,0,2],[1,1,2,1]],[[2,2,0,1],[2,3,3,0],[2,2,0,2],[1,1,2,1]],[[1,2,0,1],[2,3,3,0],[3,2,0,2],[0,2,2,1]],[[1,2,0,1],[2,4,3,0],[2,2,0,2],[0,2,2,1]],[[1,2,0,1],[3,3,3,0],[2,2,0,2],[0,2,2,1]],[[2,2,0,1],[2,3,3,0],[2,2,0,2],[0,2,2,1]],[[1,2,0,1],[2,3,3,0],[2,2,0,1],[1,3,2,1]],[[1,2,0,1],[2,3,3,0],[2,2,0,1],[2,2,2,1]],[[1,2,0,1],[2,3,3,0],[3,2,0,1],[1,2,2,1]],[[1,2,0,1],[2,4,3,0],[2,2,0,1],[1,2,2,1]],[[1,2,0,1],[3,3,3,0],[2,2,0,1],[1,2,2,1]],[[2,2,0,1],[2,3,3,0],[2,2,0,1],[1,2,2,1]],[[1,2,0,1],[2,3,3,0],[2,1,3,2],[2,1,1,0]],[[1,2,0,1],[2,3,3,0],[3,1,3,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,0],[2,1,3,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,0],[2,1,3,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,0],[2,1,3,2],[1,1,1,0]],[[1,2,0,1],[2,3,3,0],[2,1,3,2],[2,1,0,1]],[[1,2,0,1],[2,3,3,0],[3,1,3,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,0],[2,1,3,2],[1,1,0,1]],[[1,2,0,1],[3,3,3,0],[2,1,3,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,0],[2,1,3,2],[1,1,0,1]],[[1,2,0,1],[2,3,3,0],[2,1,3,2],[2,0,2,0]],[[1,2,0,1],[2,3,3,0],[3,1,3,2],[1,0,2,0]],[[1,2,0,1],[2,4,3,0],[2,1,3,2],[1,0,2,0]],[[1,2,0,1],[3,3,3,0],[2,1,3,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,0],[2,1,3,2],[1,0,2,0]],[[1,2,0,1],[2,3,3,0],[2,1,3,2],[2,0,1,1]],[[1,2,0,1],[2,3,3,0],[3,1,3,2],[1,0,1,1]],[[1,2,0,1],[2,4,3,0],[2,1,3,2],[1,0,1,1]],[[1,2,0,1],[3,3,3,0],[2,1,3,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,0],[2,1,3,2],[1,0,1,1]],[[1,2,0,1],[2,3,3,0],[3,1,3,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,0],[2,1,3,2],[0,2,1,0]],[[1,2,0,1],[3,3,3,0],[2,1,3,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,0],[2,1,3,2],[0,2,1,0]],[[1,2,0,1],[2,3,3,0],[3,1,3,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,0],[2,1,3,2],[0,2,0,1]],[[1,2,0,1],[3,3,3,0],[2,1,3,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,0],[2,1,3,2],[0,2,0,1]],[[1,2,0,1],[2,3,3,0],[3,1,3,2],[0,1,2,0]],[[1,2,0,1],[2,4,3,0],[2,1,3,2],[0,1,2,0]],[[1,2,0,1],[3,3,3,0],[2,1,3,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,0],[2,1,3,2],[0,1,2,0]],[[1,2,0,1],[2,3,3,0],[3,1,3,2],[0,1,1,1]],[[1,2,0,1],[2,4,3,0],[2,1,3,2],[0,1,1,1]],[[1,2,0,1],[3,3,3,0],[2,1,3,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,0],[2,1,3,2],[0,1,1,1]],[[1,2,0,1],[2,4,3,0],[2,1,3,2],[0,0,2,1]],[[1,2,0,1],[3,3,3,0],[2,1,3,2],[0,0,2,1]],[[2,2,0,1],[2,3,3,0],[2,1,3,2],[0,0,2,1]],[[1,2,0,1],[2,3,3,0],[2,1,3,1],[2,1,1,1]],[[1,2,0,1],[2,3,3,0],[3,1,3,1],[1,1,1,1]],[[1,2,0,1],[2,4,3,0],[2,1,3,1],[1,1,1,1]],[[1,2,0,1],[3,3,3,0],[2,1,3,1],[1,1,1,1]],[[2,2,0,1],[2,3,3,0],[2,1,3,1],[1,1,1,1]],[[1,2,0,1],[2,3,3,0],[2,1,3,1],[2,0,2,1]],[[1,2,0,1],[2,3,3,0],[3,1,3,1],[1,0,2,1]],[[1,2,0,1],[2,4,3,0],[2,1,3,1],[1,0,2,1]],[[1,2,0,1],[3,3,3,0],[2,1,3,1],[1,0,2,1]],[[2,2,0,1],[2,3,3,0],[2,1,3,1],[1,0,2,1]],[[1,2,0,1],[2,3,3,0],[3,1,3,1],[0,2,1,1]],[[1,2,0,1],[2,4,3,0],[2,1,3,1],[0,2,1,1]],[[1,2,0,1],[3,3,3,0],[2,1,3,1],[0,2,1,1]],[[2,2,0,1],[2,3,3,0],[2,1,3,1],[0,2,1,1]],[[1,2,0,1],[2,3,3,0],[3,1,3,1],[0,1,2,1]],[[1,2,0,1],[2,4,3,0],[2,1,3,1],[0,1,2,1]],[[1,2,0,1],[3,3,3,0],[2,1,3,1],[0,1,2,1]],[[2,2,0,1],[2,3,3,0],[2,1,3,1],[0,1,2,1]],[[1,2,0,1],[2,3,3,0],[2,1,2,2],[1,3,1,0]],[[1,2,0,1],[2,3,3,0],[2,1,2,2],[2,2,1,0]],[[1,2,0,1],[2,3,3,0],[3,1,2,2],[1,2,1,0]],[[1,2,0,1],[2,4,3,0],[2,1,2,2],[1,2,1,0]],[[1,2,0,1],[3,3,3,0],[2,1,2,2],[1,2,1,0]],[[2,2,0,1],[2,3,3,0],[2,1,2,2],[1,2,1,0]],[[1,2,0,1],[2,3,3,0],[2,1,2,2],[1,3,0,1]],[[1,2,0,1],[2,3,3,0],[2,1,2,2],[2,2,0,1]],[[1,2,0,1],[2,3,3,0],[3,1,2,2],[1,2,0,1]],[[1,2,0,1],[2,4,3,0],[2,1,2,2],[1,2,0,1]],[[1,2,0,1],[3,3,3,0],[2,1,2,2],[1,2,0,1]],[[2,2,0,1],[2,3,3,0],[2,1,2,2],[1,2,0,1]],[[1,2,0,1],[2,3,3,0],[2,1,2,1],[1,3,1,1]],[[1,2,0,1],[2,3,3,0],[2,1,2,1],[2,2,1,1]],[[1,2,0,1],[2,3,3,0],[3,1,2,1],[1,2,1,1]],[[1,2,0,1],[2,4,3,0],[2,1,2,1],[1,2,1,1]],[[1,2,0,1],[3,3,3,0],[2,1,2,1],[1,2,1,1]],[[2,2,0,1],[2,3,3,0],[2,1,2,1],[1,2,1,1]],[[1,2,0,1],[2,3,3,0],[2,1,1,2],[1,2,3,0]],[[1,2,0,1],[2,3,3,0],[2,1,1,2],[1,3,2,0]],[[1,2,0,1],[2,3,3,0],[2,1,1,2],[2,2,2,0]],[[1,2,0,1],[2,3,3,0],[3,1,1,2],[1,2,2,0]],[[1,2,0,1],[2,4,3,0],[2,1,1,2],[1,2,2,0]],[[1,2,0,1],[3,3,3,0],[2,1,1,2],[1,2,2,0]],[[2,1,1,1],[2,3,3,2],[2,3,3,0],[1,0,0,0]],[[1,1,1,1],[3,3,3,2],[2,3,3,0],[1,0,0,0]],[[1,1,1,1],[2,4,3,2],[2,3,3,0],[1,0,0,0]],[[1,1,1,1],[2,3,4,2],[2,3,3,0],[1,0,0,0]],[[1,1,1,1],[2,3,3,2],[3,3,3,0],[1,0,0,0]],[[2,2,0,1],[2,3,3,0],[2,1,1,2],[1,2,2,0]],[[1,2,0,1],[2,3,3,0],[2,1,1,1],[1,2,2,2]],[[1,2,0,1],[2,3,3,0],[2,1,1,1],[1,2,3,1]],[[1,2,0,1],[2,3,3,0],[2,1,1,1],[1,3,2,1]],[[1,2,0,1],[2,3,3,0],[2,1,1,1],[2,2,2,1]],[[1,2,0,1],[2,3,3,0],[3,1,1,1],[1,2,2,1]],[[1,2,0,1],[2,4,3,0],[2,1,1,1],[1,2,2,1]],[[1,2,0,1],[3,3,3,0],[2,1,1,1],[1,2,2,1]],[[2,2,0,1],[2,3,3,0],[2,1,1,1],[1,2,2,1]],[[1,2,0,1],[2,3,3,0],[2,1,0,2],[1,2,2,2]],[[1,2,0,1],[2,3,3,0],[2,1,0,2],[1,2,3,1]],[[1,2,0,1],[2,3,3,0],[2,1,0,2],[1,3,2,1]],[[1,2,0,1],[2,3,3,0],[2,1,0,2],[2,2,2,1]],[[1,2,0,1],[2,3,3,0],[3,1,0,2],[1,2,2,1]],[[1,2,0,1],[2,4,3,0],[2,1,0,2],[1,2,2,1]],[[1,2,0,1],[3,3,3,0],[2,1,0,2],[1,2,2,1]],[[2,2,0,1],[2,3,3,0],[2,1,0,2],[1,2,2,1]],[[1,2,0,1],[2,3,3,0],[2,0,3,2],[1,3,1,0]],[[1,2,0,1],[2,3,3,0],[2,0,3,2],[2,2,1,0]],[[1,2,0,1],[2,3,3,0],[3,0,3,2],[1,2,1,0]],[[1,2,0,1],[2,4,3,0],[2,0,3,2],[1,2,1,0]],[[1,2,0,1],[3,3,3,0],[2,0,3,2],[1,2,1,0]],[[2,2,0,1],[2,3,3,0],[2,0,3,2],[1,2,1,0]],[[1,2,0,1],[2,3,3,0],[2,0,3,2],[1,3,0,1]],[[1,2,0,1],[2,3,3,0],[2,0,3,2],[2,2,0,1]],[[1,2,0,1],[2,3,3,0],[3,0,3,2],[1,2,0,1]],[[1,2,0,1],[2,4,3,0],[2,0,3,2],[1,2,0,1]],[[1,2,0,1],[3,3,3,0],[2,0,3,2],[1,2,0,1]],[[2,2,0,1],[2,3,3,0],[2,0,3,2],[1,2,0,1]],[[1,2,0,1],[2,3,3,0],[2,0,3,2],[2,1,2,0]],[[1,2,0,1],[2,3,3,0],[3,0,3,2],[1,1,2,0]],[[1,2,0,1],[2,4,3,0],[2,0,3,2],[1,1,2,0]],[[1,2,0,1],[3,3,3,0],[2,0,3,2],[1,1,2,0]],[[2,2,0,1],[2,3,3,0],[2,0,3,2],[1,1,2,0]],[[1,2,0,1],[2,3,3,0],[2,0,3,2],[2,1,1,1]],[[1,2,0,1],[2,3,3,0],[3,0,3,2],[1,1,1,1]],[[1,2,0,1],[2,4,3,0],[2,0,3,2],[1,1,1,1]],[[1,2,0,1],[3,3,3,0],[2,0,3,2],[1,1,1,1]],[[2,2,0,1],[2,3,3,0],[2,0,3,2],[1,1,1,1]],[[1,2,0,1],[2,3,3,0],[3,0,3,2],[0,2,2,0]],[[1,2,0,1],[2,4,3,0],[2,0,3,2],[0,2,2,0]],[[1,2,0,1],[3,3,3,0],[2,0,3,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,0],[2,0,3,2],[0,2,2,0]],[[1,2,0,1],[2,3,3,0],[3,0,3,2],[0,2,1,1]],[[1,2,0,1],[2,4,3,0],[2,0,3,2],[0,2,1,1]],[[1,2,0,1],[3,3,3,0],[2,0,3,2],[0,2,1,1]],[[2,2,0,1],[2,3,3,0],[2,0,3,2],[0,2,1,1]],[[1,2,0,1],[2,3,3,0],[2,0,3,1],[1,3,1,1]],[[1,2,0,1],[2,3,3,0],[2,0,3,1],[2,2,1,1]],[[1,2,0,1],[2,3,3,0],[3,0,3,1],[1,2,1,1]],[[1,2,0,1],[2,4,3,0],[2,0,3,1],[1,2,1,1]],[[1,2,0,1],[3,3,3,0],[2,0,3,1],[1,2,1,1]],[[2,2,0,1],[2,3,3,0],[2,0,3,1],[1,2,1,1]],[[1,2,0,1],[2,3,3,0],[2,0,3,1],[2,1,2,1]],[[1,2,0,1],[2,3,3,0],[3,0,3,1],[1,1,2,1]],[[1,2,0,1],[2,4,3,0],[2,0,3,1],[1,1,2,1]],[[1,2,0,1],[3,3,3,0],[2,0,3,1],[1,1,2,1]],[[2,2,0,1],[2,3,3,0],[2,0,3,1],[1,1,2,1]],[[1,2,0,1],[2,3,3,0],[3,0,3,1],[0,2,2,1]],[[1,2,0,1],[2,4,3,0],[2,0,3,1],[0,2,2,1]],[[1,2,0,1],[3,3,3,0],[2,0,3,1],[0,2,2,1]],[[2,2,0,1],[2,3,3,0],[2,0,3,1],[0,2,2,1]],[[1,2,0,1],[2,3,3,0],[2,0,2,2],[1,2,3,0]],[[1,2,0,1],[2,3,3,0],[2,0,2,2],[1,3,2,0]],[[1,2,0,1],[2,3,3,0],[2,0,2,2],[2,2,2,0]],[[1,2,0,1],[2,3,3,0],[3,0,2,2],[1,2,2,0]],[[1,2,0,1],[2,4,3,0],[2,0,2,2],[1,2,2,0]],[[1,2,0,1],[3,3,3,0],[2,0,2,2],[1,2,2,0]],[[2,2,0,1],[2,3,3,0],[2,0,2,2],[1,2,2,0]],[[1,2,0,1],[2,3,3,0],[2,0,2,1],[1,2,2,2]],[[1,2,0,1],[2,3,3,0],[2,0,2,1],[1,2,3,1]],[[1,2,0,1],[2,3,3,0],[2,0,2,1],[1,3,2,1]],[[1,2,0,1],[2,3,3,0],[2,0,2,1],[2,2,2,1]],[[1,2,0,1],[2,3,3,0],[3,0,2,1],[1,2,2,1]],[[1,2,0,1],[2,4,3,0],[2,0,2,1],[1,2,2,1]],[[1,2,0,1],[3,3,3,0],[2,0,2,1],[1,2,2,1]],[[2,2,0,1],[2,3,3,0],[2,0,2,1],[1,2,2,1]],[[1,2,0,1],[2,3,3,0],[2,0,1,2],[1,2,2,2]],[[1,2,0,1],[2,3,3,0],[2,0,1,2],[1,2,3,1]],[[1,2,0,1],[2,3,3,0],[2,0,1,2],[1,3,2,1]],[[1,2,0,1],[2,3,3,0],[2,0,1,2],[2,2,2,1]],[[1,2,0,1],[2,3,3,0],[3,0,1,2],[1,2,2,1]],[[1,2,0,1],[2,4,3,0],[2,0,1,2],[1,2,2,1]],[[1,2,0,1],[3,3,3,0],[2,0,1,2],[1,2,2,1]],[[2,2,0,1],[2,3,3,0],[2,0,1,2],[1,2,2,1]],[[1,2,0,1],[2,3,3,0],[1,4,3,2],[1,1,0,0]],[[1,2,0,1],[2,4,3,0],[1,3,3,2],[1,1,0,0]],[[1,2,0,1],[3,3,3,0],[1,3,3,2],[1,1,0,0]],[[2,2,0,1],[2,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,2,0,1],[2,3,3,0],[1,4,3,2],[0,2,0,0]],[[1,2,0,1],[2,4,3,0],[1,3,3,2],[0,2,0,0]],[[1,2,0,1],[3,3,3,0],[1,3,3,2],[0,2,0,0]],[[2,2,0,1],[2,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,2,0,1],[2,4,3,0],[1,3,3,2],[0,0,2,0]],[[1,2,0,1],[3,3,3,0],[1,3,3,2],[0,0,2,0]],[[2,2,0,1],[2,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,2,0,1],[2,4,3,0],[1,3,3,2],[0,0,1,1]],[[1,2,0,1],[3,3,3,0],[1,3,3,2],[0,0,1,1]],[[2,2,0,1],[2,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,2,0,1],[2,4,3,0],[1,3,3,1],[0,0,2,1]],[[1,2,0,1],[3,3,3,0],[1,3,3,1],[0,0,2,1]],[[2,2,0,1],[2,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,2,0,1],[2,3,3,0],[1,4,2,2],[1,2,0,0]],[[1,2,0,1],[2,4,3,0],[1,3,2,2],[1,2,0,0]],[[1,2,0,1],[3,3,3,0],[1,3,2,2],[1,2,0,0]],[[2,2,0,1],[2,3,3,0],[1,3,2,2],[1,2,0,0]],[[1,2,0,1],[2,3,3,0],[1,4,2,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,0],[1,3,2,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,0],[1,3,2,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,2,0,1],[2,3,3,0],[1,4,2,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,0],[1,3,2,2],[1,1,0,1]],[[1,2,0,1],[3,3,3,0],[1,3,2,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,2,0,1],[2,3,3,0],[1,4,2,2],[1,0,2,0]],[[1,2,0,1],[2,4,3,0],[1,3,2,2],[1,0,2,0]],[[1,2,0,1],[3,3,3,0],[1,3,2,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,2,0,1],[2,3,3,0],[1,4,2,2],[1,0,1,1]],[[1,2,0,1],[2,4,3,0],[1,3,2,2],[1,0,1,1]],[[1,2,0,1],[3,3,3,0],[1,3,2,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,2,0,1],[2,3,3,0],[1,3,2,2],[0,3,1,0]],[[1,2,0,1],[2,3,3,0],[1,4,2,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,0],[1,3,2,2],[0,2,1,0]],[[1,2,0,1],[3,3,3,0],[1,3,2,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,2,0,1],[2,3,3,0],[1,3,2,2],[0,3,0,1]],[[1,2,0,1],[2,3,3,0],[1,4,2,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,0],[1,3,2,2],[0,2,0,1]],[[1,2,0,1],[3,3,3,0],[1,3,2,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,2,0,1],[2,3,3,0],[1,4,2,2],[0,1,2,0]],[[1,2,0,1],[2,4,3,0],[1,3,2,2],[0,1,2,0]],[[1,2,0,1],[3,3,3,0],[1,3,2,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,2,0,1],[2,3,3,0],[1,4,2,2],[0,1,1,1]],[[1,2,0,1],[2,4,3,0],[1,3,2,2],[0,1,1,1]],[[1,2,0,1],[3,3,3,0],[1,3,2,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,2,0,1],[2,3,3,0],[1,4,2,1],[1,2,0,1]],[[1,2,0,1],[2,4,3,0],[1,3,2,1],[1,2,0,1]],[[1,2,0,1],[3,3,3,0],[1,3,2,1],[1,2,0,1]],[[2,2,0,1],[2,3,3,0],[1,3,2,1],[1,2,0,1]],[[1,2,0,1],[2,3,3,0],[1,4,2,1],[1,1,1,1]],[[1,2,0,1],[2,4,3,0],[1,3,2,1],[1,1,1,1]],[[1,2,0,1],[3,3,3,0],[1,3,2,1],[1,1,1,1]],[[2,2,0,1],[2,3,3,0],[1,3,2,1],[1,1,1,1]],[[1,2,0,1],[2,3,3,0],[1,4,2,1],[1,0,2,1]],[[1,2,0,1],[2,4,3,0],[1,3,2,1],[1,0,2,1]],[[1,2,0,1],[3,3,3,0],[1,3,2,1],[1,0,2,1]],[[2,2,0,1],[2,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,2,0,1],[2,3,3,0],[1,3,2,1],[0,3,1,1]],[[1,2,0,1],[2,3,3,0],[1,4,2,1],[0,2,1,1]],[[1,2,0,1],[2,4,3,0],[1,3,2,1],[0,2,1,1]],[[1,2,0,1],[3,3,3,0],[1,3,2,1],[0,2,1,1]],[[2,2,0,1],[2,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,2,0,1],[2,3,3,0],[1,4,2,1],[0,1,2,1]],[[1,2,0,1],[2,4,3,0],[1,3,2,1],[0,1,2,1]],[[1,2,0,1],[3,3,3,0],[1,3,2,1],[0,1,2,1]],[[2,2,0,1],[2,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,2,0,1],[2,3,3,0],[1,4,1,2],[1,1,2,0]],[[1,2,0,1],[2,4,3,0],[1,3,1,2],[1,1,2,0]],[[1,2,0,1],[3,3,3,0],[1,3,1,2],[1,1,2,0]],[[2,2,0,1],[2,3,3,0],[1,3,1,2],[1,1,2,0]],[[1,2,0,1],[2,3,3,0],[1,3,1,2],[0,2,3,0]],[[1,2,0,1],[2,3,3,0],[1,3,1,2],[0,3,2,0]],[[1,2,0,1],[2,3,3,0],[1,4,1,2],[0,2,2,0]],[[1,2,0,1],[2,4,3,0],[1,3,1,2],[0,2,2,0]],[[1,2,0,1],[3,3,3,0],[1,3,1,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,2,0,1],[2,3,3,0],[1,4,1,1],[1,1,2,1]],[[1,2,0,1],[2,4,3,0],[1,3,1,1],[1,1,2,1]],[[1,2,0,1],[3,3,3,0],[1,3,1,1],[1,1,2,1]],[[2,2,0,1],[2,3,3,0],[1,3,1,1],[1,1,2,1]],[[1,2,0,1],[2,3,3,0],[1,3,1,1],[0,2,2,2]],[[1,2,0,1],[2,3,3,0],[1,3,1,1],[0,2,3,1]],[[1,2,0,1],[2,3,3,0],[1,3,1,1],[0,3,2,1]],[[1,2,0,1],[2,3,3,0],[1,4,1,1],[0,2,2,1]],[[1,2,0,1],[2,4,3,0],[1,3,1,1],[0,2,2,1]],[[1,2,0,1],[3,3,3,0],[1,3,1,1],[0,2,2,1]],[[2,2,0,1],[2,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,2,0,1],[2,3,3,0],[1,4,0,2],[1,1,2,1]],[[1,2,0,1],[2,4,3,0],[1,3,0,2],[1,1,2,1]],[[1,2,0,1],[3,3,3,0],[1,3,0,2],[1,1,2,1]],[[2,2,0,1],[2,3,3,0],[1,3,0,2],[1,1,2,1]],[[1,2,0,1],[2,3,3,0],[1,3,0,2],[0,2,2,2]],[[1,2,0,1],[2,3,3,0],[1,3,0,2],[0,2,3,1]],[[1,2,0,1],[2,3,3,0],[1,3,0,2],[0,3,2,1]],[[1,2,0,1],[2,3,3,0],[1,4,0,2],[0,2,2,1]],[[1,2,0,1],[2,4,3,0],[1,3,0,2],[0,2,2,1]],[[1,2,0,1],[3,3,3,0],[1,3,0,2],[0,2,2,1]],[[2,2,0,1],[2,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,2,0,1],[2,4,3,0],[1,2,3,2],[1,1,1,0]],[[1,2,0,1],[3,3,3,0],[1,2,3,2],[1,1,1,0]],[[2,2,0,1],[2,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,2,0,1],[2,4,3,0],[1,2,3,2],[1,1,0,1]],[[1,2,0,1],[3,3,3,0],[1,2,3,2],[1,1,0,1]],[[2,2,0,1],[2,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,2,0,1],[2,4,3,0],[1,2,3,2],[1,0,2,0]],[[1,2,0,1],[3,3,3,0],[1,2,3,2],[1,0,2,0]],[[2,2,0,1],[2,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,2,0,1],[2,4,3,0],[1,2,3,2],[1,0,1,1]],[[1,2,0,1],[3,3,3,0],[1,2,3,2],[1,0,1,1]],[[2,2,0,1],[2,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,2,0,1],[2,4,3,0],[1,2,3,2],[0,2,1,0]],[[1,2,0,1],[3,3,3,0],[1,2,3,2],[0,2,1,0]],[[2,2,0,1],[2,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,2,0,1],[2,4,3,0],[1,2,3,2],[0,2,0,1]],[[1,2,0,1],[3,3,3,0],[1,2,3,2],[0,2,0,1]],[[2,2,0,1],[2,3,3,0],[1,2,3,2],[0,2,0,1]],[[1,2,0,1],[2,4,3,0],[1,2,3,2],[0,1,2,0]],[[1,2,0,1],[3,3,3,0],[1,2,3,2],[0,1,2,0]],[[2,2,0,1],[2,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,2,0,1],[2,4,3,0],[1,2,3,2],[0,1,1,1]],[[1,2,0,1],[3,3,3,0],[1,2,3,2],[0,1,1,1]],[[2,2,0,1],[2,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,2,0,1],[2,4,3,0],[1,2,3,2],[0,0,2,1]],[[1,2,0,1],[3,3,3,0],[1,2,3,2],[0,0,2,1]],[[2,2,0,1],[2,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,2,0,1],[2,4,3,0],[1,2,3,1],[1,1,1,1]],[[1,2,0,1],[3,3,3,0],[1,2,3,1],[1,1,1,1]],[[2,2,0,1],[2,3,3,0],[1,2,3,1],[1,1,1,1]],[[1,2,0,1],[2,4,3,0],[1,2,3,1],[1,0,2,1]],[[1,2,0,1],[3,3,3,0],[1,2,3,1],[1,0,2,1]],[[2,2,0,1],[2,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,2,0,1],[2,4,3,0],[1,2,3,1],[0,2,1,1]],[[1,2,0,1],[3,3,3,0],[1,2,3,1],[0,2,1,1]],[[2,2,0,1],[2,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,2,0,1],[2,4,3,0],[1,2,3,1],[0,1,2,1]],[[1,2,0,1],[3,3,3,0],[1,2,3,1],[0,1,2,1]],[[2,2,0,1],[2,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,2,0,1],[2,4,3,0],[1,1,3,2],[0,2,2,0]],[[1,2,0,1],[3,3,3,0],[1,1,3,2],[0,2,2,0]],[[2,2,0,1],[2,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,2,0,1],[2,4,3,0],[1,1,3,2],[0,2,1,1]],[[1,2,0,1],[3,3,3,0],[1,1,3,2],[0,2,1,1]],[[2,2,0,1],[2,3,3,0],[1,1,3,2],[0,2,1,1]],[[1,2,0,1],[2,4,3,0],[1,1,3,1],[0,2,2,1]],[[1,2,0,1],[3,3,3,0],[1,1,3,1],[0,2,2,1]],[[2,2,0,1],[2,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,2,0,1],[2,4,3,0],[1,0,3,2],[1,2,2,0]],[[1,2,0,1],[3,3,3,0],[1,0,3,2],[1,2,2,0]],[[2,2,0,1],[2,3,3,0],[1,0,3,2],[1,2,2,0]],[[1,2,0,1],[2,4,3,0],[1,0,3,2],[1,2,1,1]],[[1,2,0,1],[3,3,3,0],[1,0,3,2],[1,2,1,1]],[[2,2,0,1],[2,3,3,0],[1,0,3,2],[1,2,1,1]],[[1,2,0,1],[2,4,3,0],[1,0,3,1],[1,2,2,1]],[[1,2,0,1],[3,3,3,0],[1,0,3,1],[1,2,2,1]],[[2,2,0,1],[2,3,3,0],[1,0,3,1],[1,2,2,1]],[[1,2,0,1],[2,3,3,0],[0,4,3,2],[1,2,0,0]],[[1,2,0,1],[2,4,3,0],[0,3,3,2],[1,2,0,0]],[[1,2,0,1],[3,3,3,0],[0,3,3,2],[1,2,0,0]],[[2,2,0,1],[2,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,2,0,1],[2,3,3,0],[0,3,2,2],[1,3,1,0]],[[1,2,0,1],[2,3,3,0],[0,3,2,2],[2,2,1,0]],[[1,2,0,1],[2,3,3,0],[0,4,2,2],[1,2,1,0]],[[1,2,0,1],[2,4,3,0],[0,3,2,2],[1,2,1,0]],[[1,2,0,1],[3,3,3,0],[0,3,2,2],[1,2,1,0]],[[2,2,0,1],[2,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,2,0,1],[2,3,3,0],[0,3,2,2],[1,3,0,1]],[[1,2,0,1],[2,3,3,0],[0,3,2,2],[2,2,0,1]],[[1,2,0,1],[2,3,3,0],[0,4,2,2],[1,2,0,1]],[[1,2,0,1],[2,4,3,0],[0,3,2,2],[1,2,0,1]],[[1,2,0,1],[3,3,3,0],[0,3,2,2],[1,2,0,1]],[[2,2,0,1],[2,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,2,0,1],[2,3,3,0],[0,4,2,2],[1,1,2,0]],[[1,2,0,1],[2,4,3,0],[0,3,2,2],[1,1,2,0]],[[1,2,0,1],[3,3,3,0],[0,3,2,2],[1,1,2,0]],[[2,2,0,1],[2,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,2,0,1],[2,3,3,0],[0,4,2,2],[1,1,1,1]],[[1,2,0,1],[2,4,3,0],[0,3,2,2],[1,1,1,1]],[[1,2,0,1],[3,3,3,0],[0,3,2,2],[1,1,1,1]],[[2,2,0,1],[2,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,2,0,1],[2,3,3,0],[0,3,2,1],[1,3,1,1]],[[1,2,0,1],[2,3,3,0],[0,3,2,1],[2,2,1,1]],[[1,2,0,1],[2,3,3,0],[0,4,2,1],[1,2,1,1]],[[1,2,0,1],[2,4,3,0],[0,3,2,1],[1,2,1,1]],[[1,2,0,1],[3,3,3,0],[0,3,2,1],[1,2,1,1]],[[2,2,0,1],[2,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,2,0,1],[2,3,3,0],[0,4,2,1],[1,1,2,1]],[[1,2,0,1],[2,4,3,0],[0,3,2,1],[1,1,2,1]],[[1,2,0,1],[3,3,3,0],[0,3,2,1],[1,1,2,1]],[[2,2,0,1],[2,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,2,0,1],[2,3,3,0],[0,3,1,2],[1,2,3,0]],[[1,2,0,1],[2,3,3,0],[0,3,1,2],[1,3,2,0]],[[1,2,0,1],[2,3,3,0],[0,3,1,2],[2,2,2,0]],[[1,2,0,1],[2,3,3,0],[0,4,1,2],[1,2,2,0]],[[1,2,0,1],[2,4,3,0],[0,3,1,2],[1,2,2,0]],[[1,2,0,1],[3,3,3,0],[0,3,1,2],[1,2,2,0]],[[2,2,0,1],[2,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,2,0,1],[2,3,3,0],[0,3,1,1],[1,2,2,2]],[[1,2,0,1],[2,3,3,0],[0,3,1,1],[1,2,3,1]],[[1,2,0,1],[2,3,3,0],[0,3,1,1],[1,3,2,1]],[[1,2,0,1],[2,3,3,0],[0,3,1,1],[2,2,2,1]],[[1,2,0,1],[2,3,3,0],[0,4,1,1],[1,2,2,1]],[[1,2,0,1],[2,4,3,0],[0,3,1,1],[1,2,2,1]],[[1,2,0,1],[3,3,3,0],[0,3,1,1],[1,2,2,1]],[[2,2,0,1],[2,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,2,0,1],[2,3,3,0],[0,3,0,2],[1,2,2,2]],[[1,2,0,1],[2,3,3,0],[0,3,0,2],[1,2,3,1]],[[1,2,0,1],[2,3,3,0],[0,3,0,2],[1,3,2,1]],[[1,2,0,1],[2,3,3,0],[0,3,0,2],[2,2,2,1]],[[1,2,0,1],[2,3,3,0],[0,4,0,2],[1,2,2,1]],[[1,2,0,1],[2,4,3,0],[0,3,0,2],[1,2,2,1]],[[1,2,0,1],[3,3,3,0],[0,3,0,2],[1,2,2,1]],[[2,2,0,1],[2,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,2,0,1],[2,4,3,0],[0,2,3,2],[1,2,1,0]],[[1,2,0,1],[3,3,3,0],[0,2,3,2],[1,2,1,0]],[[2,2,0,1],[2,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,2,0,1],[2,4,3,0],[0,2,3,2],[1,2,0,1]],[[1,2,0,1],[3,3,3,0],[0,2,3,2],[1,2,0,1]],[[2,2,0,1],[2,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,2,0,1],[2,4,3,0],[0,2,3,2],[1,1,2,0]],[[1,2,0,1],[3,3,3,0],[0,2,3,2],[1,1,2,0]],[[2,2,0,1],[2,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,2,0,1],[2,4,3,0],[0,2,3,2],[1,1,1,1]],[[1,2,0,1],[3,3,3,0],[0,2,3,2],[1,1,1,1]],[[2,2,0,1],[2,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,2,0,1],[2,3,3,0],[0,2,3,2],[0,1,2,2]],[[1,2,0,1],[2,3,3,0],[0,2,3,2],[0,1,3,1]],[[1,2,0,1],[2,3,3,0],[0,2,4,2],[0,1,2,1]],[[1,2,0,1],[2,4,3,0],[0,2,3,1],[1,2,1,1]],[[1,2,0,1],[3,3,3,0],[0,2,3,1],[1,2,1,1]],[[2,2,0,1],[2,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,2,0,1],[2,4,3,0],[0,2,3,1],[1,1,2,1]],[[1,2,0,1],[3,3,3,0],[0,2,3,1],[1,1,2,1]],[[2,2,0,1],[2,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,2,0,1],[2,4,3,0],[0,1,3,2],[1,2,2,0]],[[1,2,0,1],[3,3,3,0],[0,1,3,2],[1,2,2,0]],[[2,2,0,1],[2,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,2,0,1],[2,4,3,0],[0,1,3,2],[1,2,1,1]],[[1,2,0,1],[3,3,3,0],[0,1,3,2],[1,2,1,1]],[[2,2,0,1],[2,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,2,0,1],[2,3,3,0],[0,1,3,2],[0,2,2,2]],[[1,2,0,1],[2,3,3,0],[0,1,3,2],[0,2,3,1]],[[1,2,0,1],[2,3,3,0],[0,1,4,2],[0,2,2,1]],[[1,2,0,1],[2,4,3,0],[0,1,3,1],[1,2,2,1]],[[1,2,0,1],[3,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,0,2,2],[1,3,3,3],[1,2,2,1]],[[1,1,2,0],[0,0,2,2],[1,3,3,2],[1,3,2,1]],[[1,1,2,0],[0,0,2,2],[1,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,0,2,2],[1,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,0,2,2],[2,3,3,3],[0,2,2,1]],[[1,1,2,0],[0,0,2,2],[2,3,3,2],[0,2,3,1]],[[1,1,2,0],[0,0,2,2],[2,3,3,2],[0,2,2,2]],[[1,1,2,0],[0,0,3,2],[0,3,3,3],[1,2,2,1]],[[1,1,2,0],[0,0,3,2],[0,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,0,3,2],[0,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,0,3,2],[1,2,3,3],[1,2,2,1]],[[1,1,2,0],[0,0,3,2],[1,2,3,2],[1,2,3,1]],[[1,1,2,0],[0,0,3,2],[1,2,3,2],[1,2,2,2]],[[1,1,2,0],[0,0,3,3],[1,3,2,2],[1,2,2,1]],[[1,1,2,0],[0,0,3,2],[1,3,2,3],[1,2,2,1]],[[1,1,2,0],[0,0,3,2],[1,3,2,2],[2,2,2,1]],[[1,1,2,0],[0,0,3,2],[1,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,0,3,2],[1,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,0,3,2],[1,3,2,2],[1,2,2,2]],[[1,1,2,0],[0,0,3,2],[1,3,4,1],[1,2,2,1]],[[1,1,2,0],[0,0,3,2],[1,3,3,1],[2,2,2,1]],[[1,1,2,0],[0,0,3,2],[1,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,0,3,2],[1,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,0,3,2],[1,3,3,1],[1,2,2,2]],[[1,1,2,0],[0,0,3,3],[1,3,3,2],[1,2,1,1]],[[1,1,2,0],[0,0,3,2],[1,3,4,2],[1,2,1,1]],[[1,1,2,0],[0,0,3,2],[1,3,3,3],[1,2,1,1]],[[1,1,2,0],[0,0,3,2],[1,3,3,2],[1,2,1,2]],[[1,1,2,0],[0,0,3,3],[1,3,3,2],[1,2,2,0]],[[1,1,2,0],[0,0,3,2],[1,3,4,2],[1,2,2,0]],[[1,1,2,0],[0,0,3,2],[1,3,3,3],[1,2,2,0]],[[1,1,2,0],[0,0,3,2],[1,3,3,2],[2,2,2,0]],[[1,1,2,0],[0,0,3,2],[1,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,0,3,2],[1,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,0,3,2],[2,2,3,3],[0,2,2,1]],[[1,1,2,0],[0,0,3,2],[2,2,3,2],[0,2,3,1]],[[1,1,2,0],[0,0,3,2],[2,2,3,2],[0,2,2,2]],[[1,1,2,0],[0,0,3,3],[2,3,2,2],[0,2,2,1]],[[1,1,2,0],[0,0,3,2],[2,3,2,3],[0,2,2,1]],[[1,1,2,0],[0,0,3,2],[2,3,2,2],[0,3,2,1]],[[1,1,2,0],[0,0,3,2],[2,3,2,2],[0,2,3,1]],[[1,1,2,0],[0,0,3,2],[2,3,2,2],[0,2,2,2]],[[1,1,2,0],[0,0,3,2],[2,3,4,1],[0,2,2,1]],[[1,1,2,0],[0,0,3,2],[2,3,3,1],[0,3,2,1]],[[1,1,2,0],[0,0,3,2],[2,3,3,1],[0,2,3,1]],[[1,1,2,0],[0,0,3,2],[2,3,3,1],[0,2,2,2]],[[1,1,2,0],[0,0,3,3],[2,3,3,2],[0,2,1,1]],[[1,1,2,0],[0,0,3,2],[2,3,4,2],[0,2,1,1]],[[1,1,2,0],[0,0,3,2],[2,3,3,3],[0,2,1,1]],[[1,1,2,0],[0,0,3,2],[2,3,3,2],[0,2,1,2]],[[1,1,2,0],[0,0,3,3],[2,3,3,2],[0,2,2,0]],[[1,1,2,0],[0,0,3,2],[2,3,4,2],[0,2,2,0]],[[1,1,2,0],[0,0,3,2],[2,3,3,3],[0,2,2,0]],[[1,1,2,0],[0,0,3,2],[2,3,3,2],[0,3,2,0]],[[1,1,2,0],[0,0,3,2],[2,3,3,2],[0,2,3,0]],[[2,2,0,1],[2,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,1,1,2],[1,3,3,3],[1,2,2,1]],[[1,1,2,0],[0,1,1,2],[1,3,3,2],[2,2,2,1]],[[1,1,2,0],[0,1,1,2],[1,3,3,2],[1,3,2,1]],[[1,1,2,0],[0,1,1,2],[1,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,1,1,2],[1,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,1,1,2],[2,3,3,3],[0,2,2,1]],[[1,1,2,0],[0,1,1,2],[2,3,3,2],[0,3,2,1]],[[1,1,2,0],[0,1,1,2],[2,3,3,2],[0,2,3,1]],[[1,1,2,0],[0,1,1,2],[2,3,3,2],[0,2,2,2]],[[1,1,2,0],[0,1,2,3],[1,3,2,2],[1,2,2,1]],[[1,1,2,0],[0,1,2,2],[1,3,2,3],[1,2,2,1]],[[1,1,2,0],[0,1,2,2],[1,3,2,2],[2,2,2,1]],[[1,1,2,0],[0,1,2,2],[1,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,1,2,2],[1,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,1,2,2],[1,3,2,2],[1,2,2,2]],[[1,1,2,0],[0,1,2,2],[1,3,4,1],[1,2,2,1]],[[1,1,2,0],[0,1,2,2],[1,3,3,1],[2,2,2,1]],[[1,1,2,0],[0,1,2,2],[1,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,1,2,2],[1,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,1,2,2],[1,3,3,1],[1,2,2,2]],[[1,1,2,0],[0,1,2,3],[1,3,3,2],[1,2,1,1]],[[1,1,2,0],[0,1,2,2],[1,3,4,2],[1,2,1,1]],[[1,1,2,0],[0,1,2,2],[1,3,3,3],[1,2,1,1]],[[1,1,2,0],[0,1,2,2],[1,3,3,2],[1,2,1,2]],[[1,1,2,0],[0,1,2,3],[1,3,3,2],[1,2,2,0]],[[1,1,2,0],[0,1,2,2],[1,3,4,2],[1,2,2,0]],[[1,1,2,0],[0,1,2,2],[1,3,3,3],[1,2,2,0]],[[1,1,2,0],[0,1,2,2],[1,3,3,2],[2,2,2,0]],[[1,1,2,0],[0,1,2,2],[1,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,1,2,2],[1,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,1,2,3],[2,3,2,2],[0,2,2,1]],[[1,1,2,0],[0,1,2,2],[2,3,2,3],[0,2,2,1]],[[1,1,2,0],[0,1,2,2],[2,3,2,2],[0,3,2,1]],[[1,1,2,0],[0,1,2,2],[2,3,2,2],[0,2,3,1]],[[1,1,2,0],[0,1,2,2],[2,3,2,2],[0,2,2,2]],[[1,1,2,0],[0,1,2,2],[2,3,4,1],[0,2,2,1]],[[1,1,2,0],[0,1,2,2],[2,3,3,1],[0,3,2,1]],[[1,1,2,0],[0,1,2,2],[2,3,3,1],[0,2,3,1]],[[1,1,2,0],[0,1,2,2],[2,3,3,1],[0,2,2,2]],[[1,1,2,0],[0,1,2,3],[2,3,3,2],[0,2,1,1]],[[1,1,2,0],[0,1,2,2],[2,3,4,2],[0,2,1,1]],[[1,1,2,0],[0,1,2,2],[2,3,3,3],[0,2,1,1]],[[1,1,2,0],[0,1,2,2],[2,3,3,2],[0,2,1,2]],[[1,1,2,0],[0,1,2,3],[2,3,3,2],[0,2,2,0]],[[1,1,2,0],[0,1,2,2],[2,3,4,2],[0,2,2,0]],[[1,1,2,0],[0,1,2,2],[2,3,3,3],[0,2,2,0]],[[1,1,2,0],[0,1,2,2],[2,3,3,2],[0,3,2,0]],[[1,1,2,0],[0,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,1,2,0],[0,1,3,0],[1,3,4,2],[1,2,2,1]],[[1,1,2,0],[0,1,3,0],[1,3,3,2],[2,2,2,1]],[[1,1,2,0],[0,1,3,0],[1,3,3,2],[1,3,2,1]],[[1,1,2,0],[0,1,3,0],[1,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,1,3,0],[1,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,1,3,0],[2,3,4,2],[0,2,2,1]],[[1,1,2,0],[0,1,3,0],[2,3,3,2],[0,3,2,1]],[[1,1,2,0],[0,1,3,0],[2,3,3,2],[0,2,3,1]],[[1,1,2,0],[0,1,3,0],[2,3,3,2],[0,2,2,2]],[[1,1,2,0],[0,1,3,1],[1,3,2,3],[1,2,2,1]],[[1,1,2,0],[0,1,3,1],[1,3,2,2],[2,2,2,1]],[[1,1,2,0],[0,1,3,1],[1,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,1,3,1],[1,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,1,3,1],[1,3,2,2],[1,2,2,2]],[[1,1,2,0],[0,1,3,1],[1,3,4,1],[1,2,2,1]],[[1,1,2,0],[0,1,3,1],[1,3,3,1],[2,2,2,1]],[[1,1,2,0],[0,1,3,1],[1,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,1,3,1],[1,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,1,3,1],[1,3,3,1],[1,2,2,2]],[[1,1,2,0],[0,1,3,1],[1,3,4,2],[1,2,1,1]],[[1,1,2,0],[0,1,3,1],[1,3,3,3],[1,2,1,1]],[[1,1,2,0],[0,1,3,1],[1,3,3,2],[1,2,1,2]],[[1,1,2,0],[0,1,3,1],[1,3,4,2],[1,2,2,0]],[[1,1,2,0],[0,1,3,1],[1,3,3,3],[1,2,2,0]],[[1,1,2,0],[0,1,3,1],[1,3,3,2],[2,2,2,0]],[[1,1,2,0],[0,1,3,1],[1,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,1,3,1],[1,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,1,3,1],[2,3,2,3],[0,2,2,1]],[[1,1,2,0],[0,1,3,1],[2,3,2,2],[0,3,2,1]],[[1,1,2,0],[0,1,3,1],[2,3,2,2],[0,2,3,1]],[[1,1,2,0],[0,1,3,1],[2,3,2,2],[0,2,2,2]],[[1,1,2,0],[0,1,3,1],[2,3,4,1],[0,2,2,1]],[[1,1,2,0],[0,1,3,1],[2,3,3,1],[0,3,2,1]],[[1,1,2,0],[0,1,3,1],[2,3,3,1],[0,2,3,1]],[[1,1,2,0],[0,1,3,1],[2,3,3,1],[0,2,2,2]],[[1,1,2,0],[0,1,3,1],[2,3,4,2],[0,2,1,1]],[[1,1,2,0],[0,1,3,1],[2,3,3,3],[0,2,1,1]],[[1,1,2,0],[0,1,3,1],[2,3,3,2],[0,2,1,2]],[[1,1,2,0],[0,1,3,1],[2,3,4,2],[0,2,2,0]],[[1,1,2,0],[0,1,3,1],[2,3,3,3],[0,2,2,0]],[[1,1,2,0],[0,1,3,1],[2,3,3,2],[0,3,2,0]],[[1,1,2,0],[0,1,3,1],[2,3,3,2],[0,2,3,0]],[[1,1,2,0],[0,1,3,3],[0,2,3,2],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[0,2,3,3],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[0,2,3,2],[1,2,3,1]],[[1,1,2,0],[0,1,3,2],[0,2,3,2],[1,2,2,2]],[[1,1,2,0],[0,1,3,3],[0,3,2,2],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[0,3,2,3],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[0,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,1,3,2],[0,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,1,3,2],[0,3,2,2],[1,2,2,2]],[[1,1,2,0],[0,1,3,2],[0,3,4,1],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[0,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,1,3,2],[0,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,1,3,2],[0,3,3,1],[1,2,2,2]],[[1,1,2,0],[0,1,3,3],[0,3,3,2],[1,2,1,1]],[[1,1,2,0],[0,1,3,2],[0,3,4,2],[1,2,1,1]],[[1,1,2,0],[0,1,3,2],[0,3,3,3],[1,2,1,1]],[[1,1,2,0],[0,1,3,2],[0,3,3,2],[1,2,1,2]],[[1,1,2,0],[0,1,3,3],[0,3,3,2],[1,2,2,0]],[[1,1,2,0],[0,1,3,2],[0,3,4,2],[1,2,2,0]],[[1,1,2,0],[0,1,3,2],[0,3,3,3],[1,2,2,0]],[[1,1,2,0],[0,1,3,2],[0,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,1,3,2],[0,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,1,3,3],[1,1,3,2],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[1,1,3,3],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[1,1,3,2],[1,2,3,1]],[[1,1,2,0],[0,1,3,2],[1,1,3,2],[1,2,2,2]],[[1,1,2,0],[0,1,3,3],[1,2,2,2],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[1,2,2,3],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[1,2,2,2],[2,2,2,1]],[[1,1,2,0],[0,1,3,2],[1,2,2,2],[1,3,2,1]],[[1,1,2,0],[0,1,3,2],[1,2,2,2],[1,2,3,1]],[[1,1,2,0],[0,1,3,2],[1,2,2,2],[1,2,2,2]],[[1,1,2,0],[0,1,3,2],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[0,1,3,2],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[0,1,3,2],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[0,1,3,2],[1,2,3,1],[1,2,2,2]],[[1,1,2,0],[0,1,3,3],[1,2,3,2],[1,2,1,1]],[[1,1,2,0],[0,1,3,2],[1,2,4,2],[1,2,1,1]],[[1,1,2,0],[0,1,3,2],[1,2,3,3],[1,2,1,1]],[[1,1,2,0],[0,1,3,2],[1,2,3,2],[1,2,1,2]],[[1,1,2,0],[0,1,3,3],[1,2,3,2],[1,2,2,0]],[[1,1,2,0],[0,1,3,2],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[0,1,3,2],[1,2,3,3],[1,2,2,0]],[[1,1,2,0],[0,1,3,2],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[0,1,3,2],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[0,1,3,2],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[0,1,3,3],[1,3,2,2],[1,1,2,1]],[[1,1,2,0],[0,1,3,2],[1,3,2,3],[1,1,2,1]],[[1,1,2,0],[0,1,3,2],[1,3,2,2],[1,1,3,1]],[[1,1,2,0],[0,1,3,2],[1,3,2,2],[1,1,2,2]],[[1,1,2,0],[0,1,3,2],[1,3,4,0],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,0],[2,2,2,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,0],[1,3,2,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,0],[1,2,3,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,0],[1,2,2,2]],[[1,1,2,0],[0,1,3,2],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,1],[1,1,2,2]],[[1,1,2,0],[0,1,3,2],[1,3,4,1],[1,2,2,0]],[[1,1,2,0],[0,1,3,2],[1,3,3,1],[2,2,2,0]],[[1,1,2,0],[0,1,3,2],[1,3,3,1],[1,3,2,0]],[[1,1,2,0],[0,1,3,2],[1,3,3,1],[1,2,3,0]],[[1,1,2,0],[0,1,3,3],[1,3,3,2],[1,0,2,1]],[[1,1,2,0],[0,1,3,2],[1,3,4,2],[1,0,2,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,3],[1,0,2,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,2],[1,0,2,2]],[[1,1,2,0],[0,1,3,3],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[0,1,3,2],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,3],[1,1,1,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,2],[1,1,1,2]],[[1,1,2,0],[0,1,3,3],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[0,1,3,2],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[0,1,3,2],[1,3,3,3],[1,1,2,0]],[[1,1,2,0],[0,1,3,2],[1,3,3,2],[1,1,3,0]],[[1,1,2,0],[0,1,3,3],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[0,1,3,2],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,3],[1,2,0,1]],[[1,1,2,0],[0,1,3,2],[1,3,3,2],[1,2,0,2]],[[1,1,2,0],[0,1,3,3],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[0,1,3,2],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[0,1,3,2],[1,3,3,3],[1,2,1,0]],[[1,1,2,0],[0,1,3,3],[2,0,3,2],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,0,3,3],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,0,3,2],[1,2,3,1]],[[1,1,2,0],[0,1,3,2],[2,0,3,2],[1,2,2,2]],[[1,1,2,0],[0,1,3,3],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,1,2,3],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[0,1,3,2],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[0,1,3,2],[2,1,2,2],[1,2,2,2]],[[1,1,2,0],[0,1,3,2],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[0,1,3,2],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[0,1,3,2],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[0,1,3,3],[2,1,3,2],[0,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,1,3,3],[0,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,1,3,2],[0,2,3,1]],[[1,1,2,0],[0,1,3,2],[2,1,3,2],[0,2,2,2]],[[1,1,2,0],[0,1,3,3],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[0,1,3,2],[2,1,4,2],[1,2,1,1]],[[1,1,2,0],[0,1,3,2],[2,1,3,3],[1,2,1,1]],[[1,1,2,0],[0,1,3,2],[2,1,3,2],[1,2,1,2]],[[1,1,2,0],[0,1,3,3],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,1,3,2],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[0,1,3,2],[2,1,3,3],[1,2,2,0]],[[1,1,2,0],[0,1,3,2],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[0,1,3,2],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[0,1,3,2],[2,1,3,2],[1,2,3,0]],[[1,1,2,0],[0,1,3,3],[2,2,2,2],[0,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,2,2,2],[0,3,2,1]],[[1,1,2,0],[0,1,3,2],[2,2,2,2],[0,2,3,1]],[[1,1,2,0],[0,1,3,2],[2,2,2,2],[0,2,2,2]],[[1,1,2,0],[0,1,3,2],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[0,1,3,2],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[0,1,3,2],[2,2,3,1],[0,2,2,2]],[[1,1,2,0],[0,1,3,3],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[0,1,3,2],[2,2,4,2],[0,2,1,1]],[[1,1,2,0],[0,1,3,2],[2,2,3,3],[0,2,1,1]],[[1,1,2,0],[0,1,3,2],[2,2,3,2],[0,2,1,2]],[[1,1,2,0],[0,1,3,3],[2,2,3,2],[0,2,2,0]],[[1,1,2,0],[0,1,3,2],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[0,1,3,2],[2,2,3,3],[0,2,2,0]],[[1,1,2,0],[0,1,3,2],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[0,1,3,2],[2,2,3,2],[0,2,3,0]],[[1,1,2,0],[0,1,3,3],[2,3,2,2],[0,1,2,1]],[[1,1,2,0],[0,1,3,2],[2,3,2,3],[0,1,2,1]],[[1,1,2,0],[0,1,3,2],[2,3,2,2],[0,1,3,1]],[[1,1,2,0],[0,1,3,2],[2,3,2,2],[0,1,2,2]],[[1,1,2,0],[0,1,3,3],[2,3,2,2],[1,0,2,1]],[[1,1,2,0],[0,1,3,2],[2,3,2,3],[1,0,2,1]],[[1,1,2,0],[0,1,3,2],[2,3,2,2],[1,0,3,1]],[[1,1,2,0],[0,1,3,2],[2,3,2,2],[1,0,2,2]],[[1,1,2,0],[0,1,3,2],[2,3,4,0],[0,2,2,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,0],[0,3,2,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,0],[0,2,3,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,0],[0,2,2,2]],[[1,1,2,0],[0,1,3,2],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,1],[0,1,2,2]],[[1,1,2,0],[0,1,3,2],[2,3,4,1],[0,2,2,0]],[[1,1,2,0],[0,1,3,2],[2,3,3,1],[0,3,2,0]],[[1,1,2,0],[0,1,3,2],[2,3,3,1],[0,2,3,0]],[[1,1,2,0],[0,1,3,2],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,1],[1,0,2,2]],[[1,1,2,0],[0,1,3,3],[2,3,3,2],[0,0,2,1]],[[1,1,2,0],[0,1,3,2],[2,3,4,2],[0,0,2,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,3],[0,0,2,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,2],[0,0,2,2]],[[1,1,2,0],[0,1,3,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,1,3,2],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,3],[0,1,1,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,2],[0,1,1,2]],[[1,1,2,0],[0,1,3,3],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,1,3,2],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[0,1,3,2],[2,3,3,3],[0,1,2,0]],[[1,1,2,0],[0,1,3,2],[2,3,3,2],[0,1,3,0]],[[1,1,2,0],[0,1,3,3],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,1,3,2],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,3],[0,2,0,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,2],[0,2,0,2]],[[1,1,2,0],[0,1,3,3],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,1,3,2],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[0,1,3,2],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[0,1,3,3],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,1,3,2],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,3],[1,0,1,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,2],[1,0,1,2]],[[1,1,2,0],[0,1,3,3],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,1,3,2],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[0,1,3,2],[2,3,3,3],[1,0,2,0]],[[1,1,2,0],[0,1,3,2],[2,3,3,2],[1,0,3,0]],[[1,1,2,0],[0,1,3,3],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,1,3,2],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,3],[1,1,0,1]],[[1,1,2,0],[0,1,3,2],[2,3,3,2],[1,1,0,2]],[[1,1,2,0],[0,1,3,3],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,1,3,2],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[0,1,3,2],[2,3,3,3],[1,1,1,0]],[[1,1,2,0],[0,2,0,2],[1,3,3,3],[1,2,2,1]],[[1,1,2,0],[0,2,0,2],[1,3,3,2],[2,2,2,1]],[[1,1,2,0],[0,2,0,2],[1,3,3,2],[1,3,2,1]],[[1,1,2,0],[0,2,0,2],[1,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,0,2],[1,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,0,2],[2,3,3,3],[0,2,2,1]],[[1,1,2,0],[0,2,0,2],[2,3,3,2],[0,3,2,1]],[[1,1,2,0],[0,2,0,2],[2,3,3,2],[0,2,3,1]],[[1,1,2,0],[0,2,0,2],[2,3,3,2],[0,2,2,2]],[[1,1,2,0],[0,2,1,2],[0,3,3,3],[1,2,2,1]],[[1,1,2,0],[0,2,1,2],[0,3,3,2],[1,3,2,1]],[[1,1,2,0],[0,2,1,2],[0,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,1,2],[0,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,1,2],[1,2,3,3],[1,2,2,1]],[[1,1,2,0],[0,2,1,2],[1,2,3,2],[2,2,2,1]],[[1,1,2,0],[0,2,1,2],[1,2,3,2],[1,3,2,1]],[[1,1,2,0],[0,2,1,2],[1,2,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,1,2],[1,2,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,1,2],[1,3,3,3],[1,1,2,1]],[[1,1,2,0],[0,2,1,2],[1,3,3,2],[1,1,3,1]],[[1,1,2,0],[0,2,1,2],[1,3,3,2],[1,1,2,2]],[[1,1,2,0],[0,2,1,2],[2,1,3,3],[1,2,2,1]],[[1,1,2,0],[0,2,1,2],[2,1,3,2],[2,2,2,1]],[[1,1,2,0],[0,2,1,2],[2,1,3,2],[1,3,2,1]],[[1,1,2,0],[0,2,1,2],[2,1,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,1,2],[2,1,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,1,2],[2,2,3,3],[0,2,2,1]],[[1,1,2,0],[0,2,1,2],[2,2,3,2],[0,3,2,1]],[[1,1,2,0],[0,2,1,2],[2,2,3,2],[0,2,3,1]],[[1,1,2,0],[0,2,1,2],[2,2,3,2],[0,2,2,2]],[[1,1,2,0],[0,2,1,2],[2,3,3,3],[0,1,2,1]],[[1,1,2,0],[0,2,1,2],[2,3,3,2],[0,1,3,1]],[[1,1,2,0],[0,2,1,2],[2,3,3,2],[0,1,2,2]],[[1,1,2,0],[0,2,1,2],[2,3,3,3],[1,0,2,1]],[[1,1,2,0],[0,2,1,2],[2,3,3,2],[1,0,3,1]],[[1,1,2,0],[0,2,1,2],[2,3,3,2],[1,0,2,2]],[[1,1,2,0],[0,2,2,3],[0,2,3,2],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[0,2,3,3],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[0,2,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[0,2,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,2,3],[0,3,2,2],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[0,3,2,3],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[0,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,2,2,2],[0,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[0,3,2,2],[1,2,2,2]],[[1,1,2,0],[0,2,2,2],[0,3,4,1],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[0,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,2,2,2],[0,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[0,3,3,1],[1,2,2,2]],[[1,1,2,0],[0,2,2,3],[0,3,3,2],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[0,3,4,2],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[0,3,3,3],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[0,3,3,2],[1,2,1,2]],[[1,1,2,0],[0,2,2,3],[0,3,3,2],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[0,3,4,2],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[0,3,3,3],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[0,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,2,2,2],[0,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,2,2,3],[1,1,3,2],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,1,3,3],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,1,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[1,1,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,2,3],[1,2,2,2],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,2,2,3],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,2,2,2],[2,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,2,2,2],[1,3,2,1]],[[1,1,2,0],[0,2,2,2],[1,2,2,2],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[1,2,2,2],[1,2,2,2]],[[1,1,2,0],[0,2,2,2],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[0,2,2,2],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[1,2,3,1],[1,2,2,2]],[[1,1,2,0],[0,2,2,3],[1,2,3,2],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[1,2,4,2],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[1,2,3,3],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[1,2,3,2],[1,2,1,2]],[[1,1,2,0],[0,2,2,3],[1,2,3,2],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[1,2,3,3],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[0,2,2,2],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[0,2,2,2],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[0,2,2,3],[1,3,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,4,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,1,3],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,1,2],[2,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,1,2],[1,3,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,1,2],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[1,3,1,2],[1,2,2,2]],[[1,1,2,0],[0,2,2,2],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[0,2,2,3],[1,3,2,2],[1,1,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,2,3],[1,1,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,2,2],[1,1,3,1]],[[1,1,2,0],[0,2,2,2],[1,3,2,2],[1,1,2,2]],[[1,1,2,0],[0,2,2,2],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[0,2,2,2],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[0,2,2,2],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[0,2,2,2],[1,4,3,1],[1,1,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,1],[1,1,2,2]],[[1,1,2,0],[0,2,2,2],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[1,3,4,1],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,1],[1,3,1,1]],[[1,1,2,0],[0,2,2,3],[1,3,3,2],[1,0,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,4,2],[1,0,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,3],[1,0,2,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,2],[1,0,2,2]],[[1,1,2,0],[0,2,2,3],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[0,2,2,2],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[0,2,2,2],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,3],[1,1,1,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,2],[1,1,1,2]],[[1,1,2,0],[0,2,2,3],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[0,2,2,2],[1,4,3,2],[1,1,2,0]],[[1,1,2,0],[0,2,2,2],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[0,2,2,2],[1,3,3,3],[1,1,2,0]],[[1,1,2,0],[0,2,2,2],[1,3,3,2],[1,1,3,0]],[[1,1,2,0],[0,2,2,3],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[0,2,2,2],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[0,2,2,2],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,3],[1,2,0,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[0,2,2,2],[1,3,3,2],[1,2,0,2]],[[1,1,2,0],[0,2,2,3],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[0,2,2,2],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[0,2,2,2],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[0,2,2,2],[1,3,3,3],[1,2,1,0]],[[1,1,2,0],[0,2,2,2],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[0,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,1,2,0],[0,2,2,3],[2,0,3,2],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,0,3,3],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,0,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[2,0,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,2,3],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[3,1,2,2],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,1,2,3],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[0,2,2,2],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[2,1,2,2],[1,2,2,2]],[[1,1,2,0],[0,2,2,2],[3,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[0,2,2,2],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[0,2,2,3],[2,1,3,2],[0,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,1,3,3],[0,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,1,3,2],[0,2,3,1]],[[1,1,2,0],[0,2,2,2],[2,1,3,2],[0,2,2,2]],[[1,1,2,0],[0,2,2,3],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[2,1,4,2],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[2,1,3,3],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[2,1,3,2],[1,2,1,2]],[[1,1,2,0],[0,2,2,3],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[2,1,3,3],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[0,2,2,2],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[0,2,2,2],[2,1,3,2],[1,2,3,0]],[[1,1,2,0],[0,2,2,3],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[3,2,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,1,3],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,1,2],[2,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,1,2],[1,3,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[2,2,1,2],[1,2,2,2]],[[1,1,2,0],[0,2,2,2],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[0,2,2,2],[2,2,2,1],[1,2,2,2]],[[1,1,2,0],[0,2,2,3],[2,2,2,2],[0,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,2,2],[0,3,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,2,2],[0,2,3,1]],[[1,1,2,0],[0,2,2,2],[2,2,2,2],[0,2,2,2]],[[1,1,2,0],[0,2,2,2],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,2,2],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[0,2,2,2],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[0,2,2,2],[2,2,2,2],[1,2,3,0]],[[1,1,2,0],[0,2,2,2],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[0,2,2,2],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[0,2,2,2],[2,2,3,1],[0,2,2,2]],[[1,1,2,0],[0,2,2,2],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,2,2],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[0,2,2,2],[2,2,3,1],[1,3,1,1]],[[1,1,2,0],[0,2,2,3],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[0,2,2,2],[2,2,4,2],[0,2,1,1]],[[1,1,2,0],[0,2,2,2],[2,2,3,3],[0,2,1,1]],[[1,1,2,0],[0,2,2,2],[2,2,3,2],[0,2,1,2]],[[1,1,2,0],[0,2,2,3],[2,2,3,2],[0,2,2,0]],[[1,1,2,0],[0,2,2,2],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[0,2,2,2],[2,2,3,3],[0,2,2,0]],[[1,1,2,0],[0,2,2,2],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[0,2,2,2],[2,2,3,2],[0,2,3,0]],[[1,1,2,0],[0,2,2,2],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[0,2,2,2],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[0,2,2,2],[2,2,3,2],[1,3,0,1]],[[1,1,2,0],[0,2,2,2],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[0,2,2,2],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[0,2,2,2],[2,2,3,2],[1,3,1,0]],[[1,1,2,0],[0,2,2,3],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[0,2,2,2],[3,3,1,2],[0,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,4,1,2],[0,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,1,3],[0,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,1,2],[0,3,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,1,2],[0,2,3,1]],[[1,1,2,0],[0,2,2,2],[2,3,1,2],[0,2,2,2]],[[1,1,2,0],[0,2,2,2],[3,3,1,2],[1,1,2,1]],[[1,1,2,0],[0,2,2,2],[2,4,1,2],[1,1,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,1,2],[2,1,2,1]],[[1,1,2,0],[0,2,2,2],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[0,2,2,2],[2,3,2,1],[0,2,2,2]],[[1,1,2,0],[0,2,2,2],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[0,2,2,2],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,2,1],[2,1,2,1]],[[1,1,2,0],[0,2,2,3],[2,3,2,2],[0,1,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,2,3],[0,1,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,2,2],[0,1,3,1]],[[1,1,2,0],[0,2,2,2],[2,3,2,2],[0,1,2,2]],[[1,1,2,0],[0,2,2,2],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[0,2,2,2],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[0,2,2,2],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[0,2,2,2],[2,3,2,2],[0,2,3,0]],[[1,1,2,0],[0,2,2,3],[2,3,2,2],[1,0,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,2,3],[1,0,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,2,2],[1,0,3,1]],[[1,1,2,0],[0,2,2,2],[2,3,2,2],[1,0,2,2]],[[1,1,2,0],[0,2,2,2],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,2,2,2],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[0,2,2,2],[2,3,2,2],[2,1,2,0]],[[1,1,2,0],[0,2,2,2],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[0,2,2,2],[2,4,3,1],[0,1,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,1],[0,1,2,2]],[[1,1,2,0],[0,2,2,2],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[0,2,2,2],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[0,2,2,2],[2,3,4,1],[0,2,1,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,1],[0,3,1,1]],[[1,1,2,0],[0,2,2,2],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,2,2,2],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,1],[2,0,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,1],[1,0,2,2]],[[1,1,2,0],[0,2,2,2],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,2,2,2],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[0,2,2,2],[2,3,4,1],[1,1,1,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,1],[2,1,1,1]],[[1,1,2,0],[0,2,2,3],[2,3,3,2],[0,0,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,4,2],[0,0,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,3],[0,0,2,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[0,0,2,2]],[[1,1,2,0],[0,2,2,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,2,2,2],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,2,2,2],[2,4,3,2],[0,1,1,1]],[[1,1,2,0],[0,2,2,2],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,3],[0,1,1,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[0,1,1,2]],[[1,1,2,0],[0,2,2,3],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,2,2,2],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,2,2,2],[2,4,3,2],[0,1,2,0]],[[1,1,2,0],[0,2,2,2],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[0,2,2,2],[2,3,3,3],[0,1,2,0]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[0,1,3,0]],[[1,1,2,0],[0,2,2,3],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,2,2,2],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,2,2,2],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[0,2,2,2],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,3],[0,2,0,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[0,3,0,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[0,2,0,2]],[[1,1,2,0],[0,2,2,3],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,2,2,2],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,2,2,2],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[0,2,2,2],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[0,2,2,2],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[0,3,1,0]],[[1,1,2,0],[0,2,2,3],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,2,2,2],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,2,2,2],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[0,2,2,2],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,3],[1,0,1,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[2,0,1,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[1,0,1,2]],[[1,1,2,0],[0,2,2,3],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,2,2,2],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,2,2,2],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[0,2,2,2],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[0,2,2,2],[2,3,3,3],[1,0,2,0]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[2,0,2,0]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[1,0,3,0]],[[1,1,2,0],[0,2,2,3],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,2,2,2],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,2,2,2],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[0,2,2,2],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,3],[1,1,0,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[2,1,0,1]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[1,1,0,2]],[[1,1,2,0],[0,2,2,3],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,2,2,2],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,2,2,2],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[0,2,2,2],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[0,2,2,2],[2,3,3,3],[1,1,1,0]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[2,1,1,0]],[[1,1,2,0],[0,2,2,2],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[0,2,2,2],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[0,2,2,2],[2,3,3,2],[2,2,0,0]],[[1,1,2,0],[0,2,3,0],[0,3,4,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,0],[0,3,3,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,0],[0,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,0],[0,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,3,0],[1,2,4,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,0],[1,2,3,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,0],[1,2,3,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,0],[1,2,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,0],[1,2,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,3,0],[1,4,2,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,0],[1,3,2,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,0],[1,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,0],[1,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,0],[1,3,2,2],[1,2,2,2]],[[1,1,2,0],[0,2,3,0],[1,4,3,2],[1,1,2,1]],[[1,1,2,0],[0,2,3,0],[1,3,4,2],[1,1,2,1]],[[1,1,2,0],[0,2,3,0],[1,3,3,2],[1,1,3,1]],[[1,1,2,0],[0,2,3,0],[1,3,3,2],[1,1,2,2]],[[1,1,2,0],[0,2,3,0],[1,4,3,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,0],[1,3,4,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,0],[1,3,3,2],[2,2,1,1]],[[1,1,2,0],[0,2,3,0],[1,3,3,2],[1,3,1,1]],[[1,1,2,0],[0,2,3,0],[3,1,3,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,0],[2,1,4,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,0],[2,1,3,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,0],[2,1,3,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,0],[2,1,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,0],[2,1,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,3,0],[3,2,2,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,0],[2,2,2,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,0],[2,2,2,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,0],[2,2,2,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,0],[2,2,2,2],[1,2,2,2]],[[1,1,2,0],[0,2,3,0],[2,2,4,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,0],[2,2,3,2],[0,3,2,1]],[[1,1,2,0],[0,2,3,0],[2,2,3,2],[0,2,3,1]],[[1,1,2,0],[0,2,3,0],[2,2,3,2],[0,2,2,2]],[[1,1,2,0],[0,2,3,0],[3,2,3,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,0],[2,2,3,2],[2,2,1,1]],[[1,1,2,0],[0,2,3,0],[2,2,3,2],[1,3,1,1]],[[1,1,2,0],[0,2,3,0],[3,3,2,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,0],[2,4,2,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,0],[2,3,2,2],[0,3,2,1]],[[1,1,2,0],[0,2,3,0],[2,3,2,2],[0,2,3,1]],[[1,1,2,0],[0,2,3,0],[2,3,2,2],[0,2,2,2]],[[1,1,2,0],[0,2,3,0],[3,3,2,2],[1,1,2,1]],[[1,1,2,0],[0,2,3,0],[2,4,2,2],[1,1,2,1]],[[1,1,2,0],[0,2,3,0],[2,3,2,2],[2,1,2,1]],[[1,1,2,0],[0,2,3,0],[3,3,3,2],[0,1,2,1]],[[1,1,2,0],[0,2,3,0],[2,4,3,2],[0,1,2,1]],[[1,1,2,0],[0,2,3,0],[2,3,4,2],[0,1,2,1]],[[1,1,2,0],[0,2,3,0],[2,3,3,2],[0,1,3,1]],[[1,1,2,0],[0,2,3,0],[2,3,3,2],[0,1,2,2]],[[1,1,2,0],[0,2,3,0],[3,3,3,2],[0,2,1,1]],[[1,1,2,0],[0,2,3,0],[2,4,3,2],[0,2,1,1]],[[1,1,2,0],[0,2,3,0],[2,3,4,2],[0,2,1,1]],[[1,1,2,0],[0,2,3,0],[2,3,3,2],[0,3,1,1]],[[1,1,2,0],[0,2,3,0],[3,3,3,2],[1,0,2,1]],[[1,1,2,0],[0,2,3,0],[2,4,3,2],[1,0,2,1]],[[1,1,2,0],[0,2,3,0],[2,3,4,2],[1,0,2,1]],[[1,1,2,0],[0,2,3,0],[2,3,3,2],[2,0,2,1]],[[1,1,2,0],[0,2,3,0],[2,3,3,2],[1,0,3,1]],[[1,1,2,0],[0,2,3,0],[2,3,3,2],[1,0,2,2]],[[1,1,2,0],[0,2,3,0],[3,3,3,2],[1,1,1,1]],[[1,1,2,0],[0,2,3,0],[2,4,3,2],[1,1,1,1]],[[1,1,2,0],[0,2,3,0],[2,3,4,2],[1,1,1,1]],[[1,1,2,0],[0,2,3,0],[2,3,3,2],[2,1,1,1]],[[1,1,2,0],[0,2,3,1],[0,2,3,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[0,2,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[0,2,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,3,1],[0,3,2,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[0,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[0,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[0,3,2,2],[1,2,2,2]],[[1,1,3,0],[0,2,3,1],[0,3,3,1],[1,2,2,1]],[[1,1,2,0],[0,2,4,1],[0,3,3,1],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[0,3,4,1],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[0,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[0,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[0,3,3,1],[1,2,2,2]],[[1,1,3,0],[0,2,3,1],[0,3,3,2],[1,2,1,1]],[[1,1,2,0],[0,2,4,1],[0,3,3,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[0,3,4,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[0,3,3,3],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[0,3,3,2],[1,2,1,2]],[[1,1,3,0],[0,2,3,1],[0,3,3,2],[1,2,2,0]],[[1,1,2,0],[0,2,4,1],[0,3,3,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[0,3,4,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[0,3,3,3],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[0,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,2,3,1],[0,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,2,3,1],[1,1,3,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,1,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[1,1,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,3,1],[1,2,2,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,2,2,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,2,2,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[1,2,2,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[1,2,2,2],[1,2,2,2]],[[1,1,3,0],[0,2,3,1],[1,2,3,1],[1,2,2,1]],[[1,1,2,0],[0,2,4,1],[1,2,3,1],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[1,2,3,1],[1,2,2,2]],[[1,1,3,0],[0,2,3,1],[1,2,3,2],[1,2,1,1]],[[1,1,2,0],[0,2,4,1],[1,2,3,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[1,2,4,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[1,2,3,3],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[1,2,3,2],[1,2,1,2]],[[1,1,3,0],[0,2,3,1],[1,2,3,2],[1,2,2,0]],[[1,1,2,0],[0,2,4,1],[1,2,3,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[1,2,3,3],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[0,2,3,1],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[0,2,3,1],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[0,2,3,1],[1,4,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,1,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,1,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,1,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,1,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[1,3,1,2],[1,2,2,2]],[[1,1,2,0],[0,2,3,1],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[0,2,3,1],[1,3,2,3],[1,1,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,2,2],[1,1,3,1]],[[1,1,2,0],[0,2,3,1],[1,3,2,2],[1,1,2,2]],[[1,1,2,0],[0,2,3,1],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[0,2,3,1],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[0,2,3,1],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[0,2,3,1],[1,4,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,0],[2,2,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,0],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,0],[1,2,3,1]],[[1,1,3,0],[0,2,3,1],[1,3,3,1],[1,1,2,1]],[[1,1,2,0],[0,2,4,1],[1,3,3,1],[1,1,2,1]],[[1,1,2,0],[0,2,3,1],[1,4,3,1],[1,1,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,1],[1,1,2,2]],[[1,1,3,0],[0,2,3,1],[1,3,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,4,1],[1,3,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[1,3,4,1],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,1],[1,3,1,1]],[[1,1,3,0],[0,2,3,1],[1,3,3,2],[1,0,2,1]],[[1,1,2,0],[0,2,4,1],[1,3,3,2],[1,0,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,4,2],[1,0,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,3],[1,0,2,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,2],[1,0,2,2]],[[1,1,3,0],[0,2,3,1],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[0,2,4,1],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[0,2,3,1],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[0,2,3,1],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,3],[1,1,1,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,2],[1,1,1,2]],[[1,1,3,0],[0,2,3,1],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[0,2,4,1],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[0,2,3,1],[1,4,3,2],[1,1,2,0]],[[1,1,2,0],[0,2,3,1],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[0,2,3,1],[1,3,3,3],[1,1,2,0]],[[1,1,2,0],[0,2,3,1],[1,3,3,2],[1,1,3,0]],[[1,1,3,0],[0,2,3,1],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[0,2,4,1],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[0,2,3,1],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[0,2,3,1],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,3],[1,2,0,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[0,2,3,1],[1,3,3,2],[1,2,0,2]],[[1,1,3,0],[0,2,3,1],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[0,2,4,1],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[0,2,3,1],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[0,2,3,1],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[0,2,3,1],[1,3,3,3],[1,2,1,0]],[[1,1,2,0],[0,2,3,1],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[0,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,1,2,0],[0,2,3,1],[2,0,3,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,0,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[2,0,3,2],[1,2,2,2]],[[1,1,2,0],[0,2,3,1],[3,1,2,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,1,2,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[2,1,2,2],[1,2,2,2]],[[1,1,3,0],[0,2,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,2,4,1],[2,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[3,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[0,2,3,1],[2,1,3,3],[0,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,1,3,2],[0,2,3,1]],[[1,1,2,0],[0,2,3,1],[2,1,3,2],[0,2,2,2]],[[1,1,3,0],[0,2,3,1],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[0,2,4,1],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[2,1,4,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[2,1,3,3],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[2,1,3,2],[1,2,1,2]],[[1,1,3,0],[0,2,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,2,4,1],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[2,1,3,3],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[0,2,3,1],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[0,2,3,1],[2,1,3,2],[1,2,3,0]],[[1,1,2,0],[0,2,3,1],[3,2,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,1,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,1,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,1,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[2,2,1,2],[1,2,2,2]],[[1,1,2,0],[0,2,3,1],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[0,2,3,1],[2,2,2,1],[1,2,2,2]],[[1,1,2,0],[0,2,3,1],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,2,2],[0,3,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,2,2],[0,2,3,1]],[[1,1,2,0],[0,2,3,1],[2,2,2,2],[0,2,2,2]],[[1,1,2,0],[0,2,3,1],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,1],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[0,2,3,1],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[0,2,3,1],[2,2,2,2],[1,2,3,0]],[[1,1,2,0],[0,2,3,1],[3,2,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,0],[2,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,0],[1,3,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,0],[1,2,3,1]],[[1,1,3,0],[0,2,3,1],[2,2,3,1],[0,2,2,1]],[[1,1,2,0],[0,2,4,1],[2,2,3,1],[0,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,1],[0,2,2,2]],[[1,1,2,0],[0,2,3,1],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,1],[1,3,1,1]],[[1,1,3,0],[0,2,3,1],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[0,2,4,1],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[0,2,3,1],[2,2,4,2],[0,2,1,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,3],[0,2,1,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,2],[0,2,1,2]],[[1,1,3,0],[0,2,3,1],[2,2,3,2],[0,2,2,0]],[[1,1,2,0],[0,2,4,1],[2,2,3,2],[0,2,2,0]],[[1,1,2,0],[0,2,3,1],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[0,2,3,1],[2,2,3,3],[0,2,2,0]],[[1,1,2,0],[0,2,3,1],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[0,2,3,1],[2,2,3,2],[0,2,3,0]],[[1,1,2,0],[0,2,3,1],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[0,2,3,1],[2,2,3,2],[1,3,0,1]],[[1,1,2,0],[0,2,3,1],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[0,2,3,1],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[0,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,1,2,0],[0,2,3,1],[3,3,1,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,4,1,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,1,3],[0,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,1,2],[0,3,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,1,2],[0,2,3,1]],[[1,1,2,0],[0,2,3,1],[2,3,1,2],[0,2,2,2]],[[1,1,2,0],[0,2,3,1],[3,3,1,2],[1,1,2,1]],[[1,1,2,0],[0,2,3,1],[2,4,1,2],[1,1,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,1,2],[2,1,2,1]],[[1,1,2,0],[0,2,3,1],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[0,2,3,1],[2,3,2,1],[0,2,2,2]],[[1,1,2,0],[0,2,3,1],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[0,2,3,1],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,2,1],[2,1,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,2,3],[0,1,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,2,2],[0,1,3,1]],[[1,1,2,0],[0,2,3,1],[2,3,2,2],[0,1,2,2]],[[1,1,2,0],[0,2,3,1],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[0,2,3,1],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[0,2,3,1],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[0,2,3,1],[2,3,2,2],[0,2,3,0]],[[1,1,2,0],[0,2,3,1],[2,3,2,3],[1,0,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,2,2],[1,0,3,1]],[[1,1,2,0],[0,2,3,1],[2,3,2,2],[1,0,2,2]],[[1,1,2,0],[0,2,3,1],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,2,3,1],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[0,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,1,2,0],[0,2,3,1],[3,3,3,0],[0,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,4,3,0],[0,2,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,0],[0,3,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,0],[0,2,3,1]],[[1,1,2,0],[0,2,3,1],[3,3,3,0],[1,1,2,1]],[[1,1,2,0],[0,2,3,1],[2,4,3,0],[1,1,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,0],[2,1,2,1]],[[1,1,3,0],[0,2,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[0,2,4,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[0,2,3,1],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[0,2,3,1],[2,4,3,1],[0,1,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,1],[0,1,2,2]],[[1,1,3,0],[0,2,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[0,2,4,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[0,2,3,1],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[0,2,3,1],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[0,2,3,1],[2,3,4,1],[0,2,1,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,1],[0,3,1,1]],[[1,1,3,0],[0,2,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,2,4,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,2,3,1],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,2,3,1],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,1],[2,0,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,1],[1,0,2,2]],[[1,1,3,0],[0,2,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,2,4,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,2,3,1],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,2,3,1],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[0,2,3,1],[2,3,4,1],[1,1,1,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,1],[2,1,1,1]],[[1,1,2,0],[0,2,3,1],[3,3,3,1],[1,2,0,1]],[[1,1,2,0],[0,2,3,1],[2,4,3,1],[1,2,0,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,1],[2,2,0,1]],[[1,1,3,0],[0,2,3,1],[2,3,3,2],[0,0,2,1]],[[1,1,2,0],[0,2,4,1],[2,3,3,2],[0,0,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,4,2],[0,0,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,3],[0,0,2,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[0,0,2,2]],[[1,1,3,0],[0,2,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,2,4,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,2,3,1],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,2,3,1],[2,4,3,2],[0,1,1,1]],[[1,1,2,0],[0,2,3,1],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,3],[0,1,1,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[0,1,1,2]],[[1,1,3,0],[0,2,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,2,4,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,2,3,1],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,2,3,1],[2,4,3,2],[0,1,2,0]],[[1,1,2,0],[0,2,3,1],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[0,2,3,1],[2,3,3,3],[0,1,2,0]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[0,1,3,0]],[[1,1,3,0],[0,2,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,2,4,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,2,3,1],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,2,3,1],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[0,2,3,1],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,3],[0,2,0,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[0,3,0,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[0,2,0,2]],[[1,1,3,0],[0,2,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,2,4,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,2,3,1],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,2,3,1],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[0,2,3,1],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[0,2,3,1],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,1,3,0],[0,2,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,2,4,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,2,3,1],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,2,3,1],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[0,2,3,1],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,3],[1,0,1,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[2,0,1,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[1,0,1,2]],[[1,1,3,0],[0,2,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,2,4,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,2,3,1],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,2,3,1],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[0,2,3,1],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[0,2,3,1],[2,3,3,3],[1,0,2,0]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[2,0,2,0]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[1,0,3,0]],[[1,1,3,0],[0,2,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,2,4,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,2,3,1],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,2,3,1],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[0,2,3,1],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,3],[1,1,0,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[2,1,0,1]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[1,1,0,2]],[[1,1,3,0],[0,2,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,2,4,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,2,3,1],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,2,3,1],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[0,2,3,1],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[0,2,3,1],[2,3,3,3],[1,1,1,0]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[2,1,1,0]],[[1,1,2,0],[0,2,3,1],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[0,2,3,1],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[0,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,1,3,0],[0,2,3,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,4,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,3],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[0,3,1,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[0,3,1,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,2],[0,3,1,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,2],[0,3,1,2],[1,2,2,2]],[[1,1,3,0],[0,2,3,2],[0,3,2,2],[1,2,1,1]],[[1,1,2,0],[0,2,4,2],[0,3,2,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,3],[0,3,2,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[0,3,2,3],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[0,3,2,2],[1,2,1,2]],[[1,1,3,0],[0,2,3,2],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,4,2],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,3],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[0,3,2,3],[1,2,2,0]],[[1,1,3,0],[0,2,3,2],[0,3,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,4,2],[0,3,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,3],[0,3,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[0,3,4,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[0,3,3,0],[1,3,2,1]],[[1,1,2,0],[0,2,3,2],[0,3,3,0],[1,2,3,1]],[[1,1,2,0],[0,2,3,2],[0,3,3,0],[1,2,2,2]],[[1,1,3,0],[0,2,3,2],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,4,2],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,3,3],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[0,3,4,1],[1,2,1,1]],[[1,1,3,0],[0,2,3,2],[0,3,3,1],[1,2,2,0]],[[1,1,2,0],[0,2,4,2],[0,3,3,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,3],[0,3,3,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[0,3,4,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[0,3,3,1],[1,3,2,0]],[[1,1,2,0],[0,2,3,2],[0,3,3,1],[1,2,3,0]],[[1,1,2,0],[0,2,3,3],[1,0,3,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,0,3,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,0,3,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,2],[1,0,3,2],[1,2,2,2]],[[1,1,3,0],[0,2,3,2],[1,2,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,4,2],[1,2,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,3],[1,2,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,2,1,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,2,1,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,2,1,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,2],[1,2,1,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,2],[1,2,1,2],[1,2,2,2]],[[1,1,3,0],[0,2,3,2],[1,2,2,2],[1,2,1,1]],[[1,1,2,0],[0,2,4,2],[1,2,2,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,3],[1,2,2,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[1,2,2,3],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[1,2,2,2],[1,2,1,2]],[[1,1,3,0],[0,2,3,2],[1,2,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,4,2],[1,2,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,3],[1,2,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[1,2,2,3],[1,2,2,0]],[[1,1,3,0],[0,2,3,2],[1,2,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,4,2],[1,2,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,3],[1,2,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,2,4,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,2,3,0],[2,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,2,3,0],[1,3,2,1]],[[1,1,2,0],[0,2,3,2],[1,2,3,0],[1,2,3,1]],[[1,1,2,0],[0,2,3,2],[1,2,3,0],[1,2,2,2]],[[1,1,3,0],[0,2,3,2],[1,2,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,4,2],[1,2,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,3,3],[1,2,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[1,2,4,1],[1,2,1,1]],[[1,1,3,0],[0,2,3,2],[1,2,3,1],[1,2,2,0]],[[1,1,2,0],[0,2,4,2],[1,2,3,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,3],[1,2,3,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[1,2,4,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[1,2,3,1],[2,2,2,0]],[[1,1,2,0],[0,2,3,2],[1,2,3,1],[1,3,2,0]],[[1,1,2,0],[0,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,1,3,0],[0,2,3,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[0,2,4,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,3],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,4,0,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,0,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,0,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,0,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,0,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,2],[1,3,0,2],[1,2,2,2]],[[1,1,3,0],[0,2,3,2],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[0,2,4,2],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[0,2,3,3],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,1,3],[1,1,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,1,2],[1,1,3,1]],[[1,1,2,0],[0,2,3,2],[1,3,1,2],[1,1,2,2]],[[1,1,2,0],[0,2,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,2,0],[2,2,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,2,0],[1,3,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,2,0],[1,2,3,1]],[[1,1,2,0],[0,2,3,2],[1,3,2,0],[1,2,2,2]],[[1,1,2,0],[0,2,3,2],[1,4,2,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[1,3,2,1],[2,2,2,0]],[[1,1,2,0],[0,2,3,2],[1,3,2,1],[1,3,2,0]],[[1,1,2,0],[0,2,3,2],[1,3,2,1],[1,2,3,0]],[[1,1,3,0],[0,2,3,2],[1,3,2,2],[1,0,2,1]],[[1,1,2,0],[0,2,4,2],[1,3,2,2],[1,0,2,1]],[[1,1,2,0],[0,2,3,3],[1,3,2,2],[1,0,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,2,3],[1,0,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,2,2],[1,0,2,2]],[[1,1,3,0],[0,2,3,2],[1,3,2,2],[1,1,1,1]],[[1,1,2,0],[0,2,4,2],[1,3,2,2],[1,1,1,1]],[[1,1,2,0],[0,2,3,3],[1,3,2,2],[1,1,1,1]],[[1,1,2,0],[0,2,3,2],[1,3,2,3],[1,1,1,1]],[[1,1,2,0],[0,2,3,2],[1,3,2,2],[1,1,1,2]],[[1,1,3,0],[0,2,3,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,2,4,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,2,3,3],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,2,3,2],[1,3,2,3],[1,1,2,0]],[[1,1,3,0],[0,2,3,2],[1,3,2,2],[1,2,0,1]],[[1,1,2,0],[0,2,4,2],[1,3,2,2],[1,2,0,1]],[[1,1,2,0],[0,2,3,3],[1,3,2,2],[1,2,0,1]],[[1,1,2,0],[0,2,3,2],[1,3,2,3],[1,2,0,1]],[[1,1,2,0],[0,2,3,2],[1,3,2,2],[1,2,0,2]],[[1,1,3,0],[0,2,3,2],[1,3,2,2],[1,2,1,0]],[[1,1,2,0],[0,2,4,2],[1,3,2,2],[1,2,1,0]],[[1,1,2,0],[0,2,3,3],[1,3,2,2],[1,2,1,0]],[[1,1,2,0],[0,2,3,2],[1,3,2,3],[1,2,1,0]],[[1,1,3,0],[0,2,3,2],[1,3,3,0],[1,1,2,1]],[[1,1,2,0],[0,2,4,2],[1,3,3,0],[1,1,2,1]],[[1,1,2,0],[0,2,3,3],[1,3,3,0],[1,1,2,1]],[[1,1,2,0],[0,2,3,2],[1,4,3,0],[1,1,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,4,0],[1,1,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,3,0],[1,1,3,1]],[[1,1,2,0],[0,2,3,2],[1,3,3,0],[1,1,2,2]],[[1,1,3,0],[0,2,3,2],[1,3,3,0],[1,2,1,1]],[[1,1,2,0],[0,2,4,2],[1,3,3,0],[1,2,1,1]],[[1,1,2,0],[0,2,3,3],[1,3,3,0],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[1,4,3,0],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[1,3,4,0],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[1,3,3,0],[2,2,1,1]],[[1,1,2,0],[0,2,3,2],[1,3,3,0],[1,3,1,1]],[[1,1,3,0],[0,2,3,2],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,2,4,2],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,2,3,3],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,2,3,2],[1,3,4,1],[1,0,2,1]],[[1,1,3,0],[0,2,3,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,2,4,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,2,3,3],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,2,3,2],[1,4,3,1],[1,1,1,1]],[[1,1,2,0],[0,2,3,2],[1,3,4,1],[1,1,1,1]],[[1,1,3,0],[0,2,3,2],[1,3,3,1],[1,1,2,0]],[[1,1,2,0],[0,2,4,2],[1,3,3,1],[1,1,2,0]],[[1,1,2,0],[0,2,3,3],[1,3,3,1],[1,1,2,0]],[[1,1,2,0],[0,2,3,2],[1,4,3,1],[1,1,2,0]],[[1,1,2,0],[0,2,3,2],[1,3,4,1],[1,1,2,0]],[[1,1,2,0],[0,2,3,2],[1,3,3,1],[1,1,3,0]],[[1,1,3,0],[0,2,3,2],[1,3,3,1],[1,2,0,1]],[[1,1,2,0],[0,2,4,2],[1,3,3,1],[1,2,0,1]],[[1,1,2,0],[0,2,3,3],[1,3,3,1],[1,2,0,1]],[[1,1,2,0],[0,2,3,2],[1,4,3,1],[1,2,0,1]],[[1,1,2,0],[0,2,3,2],[1,3,4,1],[1,2,0,1]],[[1,1,2,0],[0,2,3,2],[1,3,3,1],[2,2,0,1]],[[1,1,2,0],[0,2,3,2],[1,3,3,1],[1,3,0,1]],[[1,1,3,0],[0,2,3,2],[1,3,3,1],[1,2,1,0]],[[1,1,2,0],[0,2,4,2],[1,3,3,1],[1,2,1,0]],[[1,1,2,0],[0,2,3,3],[1,3,3,1],[1,2,1,0]],[[1,1,2,0],[0,2,3,2],[1,4,3,1],[1,2,1,0]],[[1,1,2,0],[0,2,3,2],[1,3,4,1],[1,2,1,0]],[[1,1,2,0],[0,2,3,2],[1,3,3,1],[2,2,1,0]],[[1,1,2,0],[0,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,1,3,0],[0,2,3,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,2,4,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,2,3,3],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,2,3,2],[1,3,3,3],[1,1,0,1]],[[1,1,2,0],[0,2,3,3],[2,0,3,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,0,3,3],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,0,3,2],[0,2,3,1]],[[1,1,2,0],[0,2,3,2],[2,0,3,2],[0,2,2,2]],[[1,1,3,0],[0,2,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,4,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,3],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[3,1,1,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,1,1,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,1,1,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,1,1,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,2],[2,1,1,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,2],[2,1,1,2],[1,2,2,2]],[[1,1,3,0],[0,2,3,2],[2,1,2,2],[1,2,1,1]],[[1,1,2,0],[0,2,4,2],[2,1,2,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,3],[2,1,2,2],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[2,1,2,3],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[2,1,2,2],[1,2,1,2]],[[1,1,3,0],[0,2,3,2],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,4,2],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,3],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[2,1,2,3],[1,2,2,0]],[[1,1,3,0],[0,2,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,4,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,3],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[3,1,3,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,1,4,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,1,3,0],[2,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,1,3,0],[1,3,2,1]],[[1,1,2,0],[0,2,3,2],[2,1,3,0],[1,2,3,1]],[[1,1,2,0],[0,2,3,2],[2,1,3,0],[1,2,2,2]],[[1,1,3,0],[0,2,3,2],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,4,2],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,3,3],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[2,1,4,1],[1,2,1,1]],[[1,1,3,0],[0,2,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,0],[0,2,4,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,3],[2,1,3,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[3,1,3,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[2,1,4,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[2,1,3,1],[2,2,2,0]],[[1,1,2,0],[0,2,3,2],[2,1,3,1],[1,3,2,0]],[[1,1,2,0],[0,2,3,2],[2,1,3,1],[1,2,3,0]],[[1,1,3,0],[0,2,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[0,2,4,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,3],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[3,2,0,2],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,0,3],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,0,2],[2,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,0,2],[1,3,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,0,2],[1,2,3,1]],[[1,1,2,0],[0,2,3,2],[2,2,0,2],[1,2,2,2]],[[1,1,3,0],[0,2,3,2],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[0,2,4,2],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,3],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,1,3],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,1,2],[0,3,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,1,2],[0,2,3,1]],[[1,1,2,0],[0,2,3,2],[2,2,1,2],[0,2,2,2]],[[1,1,2,0],[0,2,3,2],[3,2,2,0],[1,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,2,0],[2,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,2,0],[1,3,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,2,0],[1,2,3,1]],[[1,1,2,0],[0,2,3,2],[2,2,2,0],[1,2,2,2]],[[1,1,2,0],[0,2,3,2],[3,2,2,1],[1,2,2,0]],[[1,1,2,0],[0,2,3,2],[2,2,2,1],[2,2,2,0]],[[1,1,2,0],[0,2,3,2],[2,2,2,1],[1,3,2,0]],[[1,1,2,0],[0,2,3,2],[2,2,2,1],[1,2,3,0]],[[1,1,3,0],[0,2,3,2],[2,2,2,2],[0,2,1,1]],[[1,1,2,0],[0,2,4,2],[2,2,2,2],[0,2,1,1]],[[1,1,2,0],[0,2,3,3],[2,2,2,2],[0,2,1,1]],[[1,1,2,0],[0,2,3,2],[2,2,2,3],[0,2,1,1]],[[1,1,2,0],[0,2,3,2],[2,2,2,2],[0,2,1,2]],[[1,1,3,0],[0,2,3,2],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[0,2,4,2],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[0,2,3,3],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[0,2,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,0,1],[3,3,2,2],[2,0,0,2],[1,2,2,1]],[[1,3,0,1],[2,3,2,2],[2,0,0,2],[1,2,2,1]],[[1,1,3,0],[0,2,3,2],[2,2,3,0],[0,2,2,1]],[[1,1,2,0],[0,2,4,2],[2,2,3,0],[0,2,2,1]],[[1,1,2,0],[0,2,3,3],[2,2,3,0],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,4,0],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,3,0],[0,3,2,1]],[[1,1,2,0],[0,2,3,2],[2,2,3,0],[0,2,3,1]],[[1,1,2,0],[0,2,3,2],[2,2,3,0],[0,2,2,2]],[[1,1,2,0],[0,2,3,2],[3,2,3,0],[1,2,1,1]],[[1,1,2,0],[0,2,3,2],[2,2,3,0],[2,2,1,1]],[[1,1,2,0],[0,2,3,2],[2,2,3,0],[1,3,1,1]],[[1,1,3,0],[0,2,3,2],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[0,2,4,2],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[0,2,3,3],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[0,2,3,2],[2,2,4,1],[0,2,1,1]],[[1,1,3,0],[0,2,3,2],[2,2,3,1],[0,2,2,0]],[[1,1,2,0],[0,2,4,2],[2,2,3,1],[0,2,2,0]],[[1,1,2,0],[0,2,3,3],[2,2,3,1],[0,2,2,0]],[[1,1,2,0],[0,2,3,2],[2,2,4,1],[0,2,2,0]],[[1,1,2,0],[0,2,3,2],[2,2,3,1],[0,3,2,0]],[[1,1,2,0],[0,2,3,2],[2,2,3,1],[0,2,3,0]],[[1,1,2,0],[0,2,3,2],[3,2,3,1],[1,2,0,1]],[[1,1,2,0],[0,2,3,2],[2,2,3,1],[2,2,0,1]],[[1,1,2,0],[0,2,3,2],[2,2,3,1],[1,3,0,1]],[[1,1,2,0],[0,2,3,2],[3,2,3,1],[1,2,1,0]],[[1,1,2,0],[0,2,3,2],[2,2,3,1],[2,2,1,0]],[[1,1,2,0],[0,2,3,2],[2,2,3,1],[1,3,1,0]],[[2,2,0,1],[2,3,2,2],[2,0,0,2],[1,2,2,1]],[[1,1,3,0],[0,2,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,2,4,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,3],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[3,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,4,0,2],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,0,3],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,0,2],[0,3,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,0,2],[0,2,3,1]],[[1,1,2,0],[0,2,3,2],[2,3,0,2],[0,2,2,2]],[[1,1,2,0],[0,2,3,2],[3,3,0,2],[1,1,2,1]],[[1,1,2,0],[0,2,3,2],[2,4,0,2],[1,1,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,0,2],[2,1,2,1]],[[1,1,3,0],[0,2,3,2],[2,3,1,2],[0,1,2,1]],[[1,1,2,0],[0,2,4,2],[2,3,1,2],[0,1,2,1]],[[1,1,2,0],[0,2,3,3],[2,3,1,2],[0,1,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,1,3],[0,1,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,1,2],[0,1,3,1]],[[1,1,2,0],[0,2,3,2],[2,3,1,2],[0,1,2,2]],[[1,1,3,0],[0,2,3,2],[2,3,1,2],[1,0,2,1]],[[1,1,2,0],[0,2,4,2],[2,3,1,2],[1,0,2,1]],[[1,1,2,0],[0,2,3,3],[2,3,1,2],[1,0,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,1,3],[1,0,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,1,2],[1,0,3,1]],[[1,1,2,0],[0,2,3,2],[2,3,1,2],[1,0,2,2]],[[1,1,2,0],[0,2,3,2],[3,3,2,0],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,4,2,0],[0,2,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,0],[0,3,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,0],[0,2,3,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,0],[0,2,2,2]],[[1,1,2,0],[0,2,3,2],[3,3,2,0],[1,1,2,1]],[[1,1,2,0],[0,2,3,2],[2,4,2,0],[1,1,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,0],[2,1,2,1]],[[1,1,2,0],[0,2,3,2],[3,3,2,1],[0,2,2,0]],[[1,1,2,0],[0,2,3,2],[2,4,2,1],[0,2,2,0]],[[1,1,2,0],[0,2,3,2],[2,3,2,1],[0,3,2,0]],[[1,1,2,0],[0,2,3,2],[2,3,2,1],[0,2,3,0]],[[1,1,2,0],[0,2,3,2],[3,3,2,1],[1,1,2,0]],[[1,1,2,0],[0,2,3,2],[2,4,2,1],[1,1,2,0]],[[1,1,2,0],[0,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,1,3,0],[0,2,3,2],[2,3,2,2],[0,0,2,1]],[[1,1,2,0],[0,2,4,2],[2,3,2,2],[0,0,2,1]],[[1,1,2,0],[0,2,3,3],[2,3,2,2],[0,0,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,3],[0,0,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,2],[0,0,2,2]],[[1,1,3,0],[0,2,3,2],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[0,2,4,2],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[0,2,3,3],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,3],[0,1,1,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,2],[0,1,1,2]],[[1,1,3,0],[0,2,3,2],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[0,2,4,2],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[0,2,3,3],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[0,2,3,2],[2,3,2,3],[0,1,2,0]],[[1,1,3,0],[0,2,3,2],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[0,2,4,2],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[0,2,3,3],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,3],[0,2,0,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,2],[0,2,0,2]],[[1,1,3,0],[0,2,3,2],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[0,2,4,2],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[0,2,3,3],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[0,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,1,3,0],[0,2,3,2],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[0,2,4,2],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[0,2,3,3],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,3],[1,0,1,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,2],[1,0,1,2]],[[1,1,3,0],[0,2,3,2],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[0,2,4,2],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[0,2,3,3],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[0,2,3,2],[2,3,2,3],[1,0,2,0]],[[1,1,3,0],[0,2,3,2],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[0,2,4,2],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[0,2,3,3],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,3],[1,1,0,1]],[[1,1,2,0],[0,2,3,2],[2,3,2,2],[1,1,0,2]],[[1,1,3,0],[0,2,3,2],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[0,2,4,2],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[0,2,3,3],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[0,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,1,3,0],[0,2,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[0,2,4,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[0,2,3,3],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[0,2,3,2],[3,3,3,0],[0,1,2,1]],[[1,1,2,0],[0,2,3,2],[2,4,3,0],[0,1,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,4,0],[0,1,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,0],[0,1,3,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,0],[0,1,2,2]],[[1,1,3,0],[0,2,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[0,2,4,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[0,2,3,3],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[0,2,3,2],[3,3,3,0],[0,2,1,1]],[[1,1,2,0],[0,2,3,2],[2,4,3,0],[0,2,1,1]],[[1,1,2,0],[0,2,3,2],[2,3,4,0],[0,2,1,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,0],[0,3,1,1]],[[1,1,3,0],[0,2,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[0,2,4,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[0,2,3,3],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[0,2,3,2],[3,3,3,0],[1,0,2,1]],[[1,1,2,0],[0,2,3,2],[2,4,3,0],[1,0,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,4,0],[1,0,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,0],[2,0,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,0],[1,0,3,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,0],[1,0,2,2]],[[1,1,3,0],[0,2,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[0,2,4,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[0,2,3,3],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[0,2,3,2],[3,3,3,0],[1,1,1,1]],[[1,1,2,0],[0,2,3,2],[2,4,3,0],[1,1,1,1]],[[1,1,2,0],[0,2,3,2],[2,3,4,0],[1,1,1,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,0],[2,1,1,1]],[[1,1,2,0],[0,2,3,2],[3,3,3,0],[1,2,0,1]],[[1,1,2,0],[0,2,3,2],[2,4,3,0],[1,2,0,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,1,3,0],[0,2,3,2],[2,3,3,1],[0,0,2,1]],[[1,1,2,0],[0,2,4,2],[2,3,3,1],[0,0,2,1]],[[1,1,2,0],[0,2,3,3],[2,3,3,1],[0,0,2,1]],[[1,1,2,0],[0,2,3,2],[2,3,4,1],[0,0,2,1]],[[1,1,3,0],[0,2,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,0],[0,2,4,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,0],[0,2,3,3],[2,3,3,1],[0,1,1,1]],[[1,1,2,0],[0,2,3,2],[3,3,3,1],[0,1,1,1]],[[1,1,2,0],[0,2,3,2],[2,4,3,1],[0,1,1,1]],[[1,1,2,0],[0,2,3,2],[2,3,4,1],[0,1,1,1]],[[1,1,3,0],[0,2,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[0,2,4,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[0,2,3,3],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[0,2,3,2],[3,3,3,1],[0,1,2,0]],[[1,1,2,0],[0,2,3,2],[2,4,3,1],[0,1,2,0]],[[1,1,2,0],[0,2,3,2],[2,3,4,1],[0,1,2,0]],[[1,1,2,0],[0,2,3,2],[2,3,3,1],[0,1,3,0]],[[1,1,3,0],[0,2,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[0,2,4,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[0,2,3,3],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[0,2,3,2],[3,3,3,1],[0,2,0,1]],[[1,1,2,0],[0,2,3,2],[2,4,3,1],[0,2,0,1]],[[1,1,2,0],[0,2,3,2],[2,3,4,1],[0,2,0,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,1],[0,3,0,1]],[[1,1,3,0],[0,2,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[0,2,4,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[0,2,3,3],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[0,2,3,2],[3,3,3,1],[0,2,1,0]],[[1,1,2,0],[0,2,3,2],[2,4,3,1],[0,2,1,0]],[[1,1,2,0],[0,2,3,2],[2,3,4,1],[0,2,1,0]],[[1,1,2,0],[0,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,1,3,0],[0,2,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[0,2,4,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[0,2,3,3],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[0,2,3,2],[3,3,3,1],[1,0,1,1]],[[1,1,2,0],[0,2,3,2],[2,4,3,1],[1,0,1,1]],[[1,1,2,0],[0,2,3,2],[2,3,4,1],[1,0,1,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,1],[2,0,1,1]],[[1,1,3,0],[0,2,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[0,2,4,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[0,2,3,3],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[0,2,3,2],[3,3,3,1],[1,0,2,0]],[[1,1,2,0],[0,2,3,2],[2,4,3,1],[1,0,2,0]],[[1,1,2,0],[0,2,3,2],[2,3,4,1],[1,0,2,0]],[[1,1,2,0],[0,2,3,2],[2,3,3,1],[2,0,2,0]],[[1,1,2,0],[0,2,3,2],[2,3,3,1],[1,0,3,0]],[[1,1,3,0],[0,2,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[0,2,4,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[0,2,3,3],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[0,2,3,2],[3,3,3,1],[1,1,0,1]],[[1,1,2,0],[0,2,3,2],[2,4,3,1],[1,1,0,1]],[[1,1,2,0],[0,2,3,2],[2,3,4,1],[1,1,0,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,1],[2,1,0,1]],[[1,1,3,0],[0,2,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[0,2,4,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[0,2,3,3],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[0,2,3,2],[3,3,3,1],[1,1,1,0]],[[1,1,2,0],[0,2,3,2],[2,4,3,1],[1,1,1,0]],[[1,1,2,0],[0,2,3,2],[2,3,4,1],[1,1,1,0]],[[1,1,2,0],[0,2,3,2],[2,3,3,1],[2,1,1,0]],[[1,1,2,0],[0,2,3,2],[3,3,3,1],[1,2,0,0]],[[1,1,2,0],[0,2,3,2],[2,4,3,1],[1,2,0,0]],[[1,1,2,0],[0,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,1,3,0],[0,2,3,2],[2,3,3,2],[0,1,0,1]],[[1,1,2,0],[0,2,4,2],[2,3,3,2],[0,1,0,1]],[[1,1,2,0],[0,2,3,3],[2,3,3,2],[0,1,0,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,1,3,0],[0,2,3,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[0,2,4,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[0,2,3,3],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[0,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,1,2,0],[0,3,0,0],[2,4,3,2],[1,2,2,1]],[[1,1,2,0],[0,3,0,0],[2,3,3,2],[2,2,2,1]],[[1,1,2,0],[0,3,0,0],[2,3,3,2],[1,3,2,1]],[[1,1,2,0],[0,3,0,0],[2,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,0,0],[2,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,0,1],[1,4,3,2],[1,2,2,1]],[[1,1,2,0],[0,3,0,1],[1,3,3,2],[2,2,2,1]],[[1,1,2,0],[0,3,0,1],[1,3,3,2],[1,3,2,1]],[[1,1,2,0],[0,3,0,1],[1,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,0,1],[1,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,0,1],[2,4,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,0,1],[2,3,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,0,1],[2,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,0,1],[2,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,0,1],[2,3,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,0,1],[2,4,3,2],[0,2,2,1]],[[1,1,2,0],[0,3,0,1],[2,3,3,2],[0,3,2,1]],[[1,1,2,0],[0,3,0,1],[2,3,3,2],[0,2,3,1]],[[1,1,2,0],[0,3,0,1],[2,3,3,2],[0,2,2,2]],[[1,1,2,0],[0,3,0,1],[2,4,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,0,1],[2,3,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,0,1],[2,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,0,1],[2,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,0,2],[0,3,3,3],[1,2,2,1]],[[1,1,2,0],[0,3,0,2],[0,3,3,2],[1,3,2,1]],[[1,1,2,0],[0,3,0,2],[0,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,0,2],[0,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,0,2],[1,2,3,3],[1,2,2,1]],[[1,1,2,0],[0,3,0,2],[1,2,3,2],[2,2,2,1]],[[1,1,2,0],[0,3,0,2],[1,2,3,2],[1,3,2,1]],[[1,1,2,0],[0,3,0,2],[1,2,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,0,2],[1,2,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,0,2],[1,4,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,0,2],[1,3,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,0,2],[1,3,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,0,2],[1,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,0,2],[1,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,0,2],[1,3,2,2],[1,2,2,2]],[[1,1,2,0],[0,3,0,2],[1,4,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,0,2],[1,3,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,0,2],[1,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,0,2],[1,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,0,2],[1,3,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,0,2],[1,3,3,3],[1,1,2,1]],[[1,1,2,0],[0,3,0,2],[1,3,3,2],[1,1,3,1]],[[1,1,2,0],[0,3,0,2],[1,3,3,2],[1,1,2,2]],[[1,1,2,0],[0,3,0,2],[1,4,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,0,2],[1,3,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,0,2],[1,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,0,2],[1,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,0,2],[2,1,3,3],[1,2,2,1]],[[1,1,2,0],[0,3,0,2],[2,1,3,2],[2,2,2,1]],[[1,1,2,0],[0,3,0,2],[2,1,3,2],[1,3,2,1]],[[1,1,2,0],[0,3,0,2],[2,1,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,0,2],[2,1,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,0,2],[2,2,3,3],[0,2,2,1]],[[1,1,2,0],[0,3,0,2],[2,2,3,2],[0,3,2,1]],[[1,1,2,0],[0,3,0,2],[2,2,3,2],[0,2,3,1]],[[1,1,2,0],[0,3,0,2],[2,2,3,2],[0,2,2,2]],[[1,1,2,0],[0,3,0,2],[2,4,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,1,3],[1,2,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,1,2],[2,2,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,1,2],[1,3,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,1,2],[1,2,3,1]],[[1,1,2,0],[0,3,0,2],[2,3,1,2],[1,2,2,2]],[[1,1,2,0],[0,3,0,2],[2,4,2,1],[1,2,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,2,1],[2,2,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,2,1],[1,3,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,2,1],[1,2,3,1]],[[1,1,2,0],[0,3,0,2],[2,3,2,1],[1,2,2,2]],[[1,1,2,0],[0,3,0,2],[2,4,2,2],[0,2,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,2,3],[0,2,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,2,2],[0,3,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,2,2],[0,2,3,1]],[[1,1,2,0],[0,3,0,2],[2,3,2,2],[0,2,2,2]],[[1,1,2,0],[0,3,0,2],[2,4,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,0,2],[2,3,2,2],[2,2,2,0]],[[1,1,2,0],[0,3,0,2],[2,3,2,2],[1,3,2,0]],[[1,1,2,0],[0,3,0,2],[2,3,2,2],[1,2,3,0]],[[1,1,2,0],[0,3,0,2],[2,4,3,1],[0,2,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,1],[0,3,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,1],[0,2,3,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,1],[0,2,2,2]],[[1,1,2,0],[0,3,0,2],[2,4,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,1],[2,2,1,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,1],[1,3,1,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,3],[0,1,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,2],[0,1,3,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,2],[0,1,2,2]],[[1,1,2,0],[0,3,0,2],[2,4,3,2],[0,2,2,0]],[[1,1,2,0],[0,3,0,2],[2,3,3,2],[0,3,2,0]],[[1,1,2,0],[0,3,0,2],[2,3,3,2],[0,2,3,0]],[[1,1,2,0],[0,3,0,2],[2,3,3,3],[1,0,2,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,2],[1,0,3,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,2],[1,0,2,2]],[[1,1,2,0],[0,3,0,2],[2,4,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,2],[2,2,0,1]],[[1,1,2,0],[0,3,0,2],[2,3,3,2],[1,3,0,1]],[[1,1,2,0],[0,3,0,2],[2,4,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,0,2],[2,3,3,2],[2,2,1,0]],[[1,1,2,0],[0,3,0,2],[2,3,3,2],[1,3,1,0]],[[1,1,2,0],[0,3,1,0],[1,4,3,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,0],[1,3,3,2],[2,2,2,1]],[[1,1,2,0],[0,3,1,0],[1,3,3,2],[1,3,2,1]],[[1,1,2,0],[0,3,1,0],[1,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,1,0],[1,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,1,0],[2,4,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,0],[2,3,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,1,0],[2,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,1,0],[2,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,1,0],[2,3,2,2],[1,2,2,2]],[[1,1,2,0],[0,3,1,0],[2,4,3,2],[0,2,2,1]],[[1,1,2,0],[0,3,1,0],[2,3,3,2],[0,3,2,1]],[[1,1,2,0],[0,3,1,0],[2,3,3,2],[0,2,3,1]],[[1,1,2,0],[0,3,1,0],[2,3,3,2],[0,2,2,2]],[[1,1,2,0],[0,3,1,0],[2,4,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,1,0],[2,3,3,2],[2,2,1,1]],[[1,1,2,0],[0,3,1,0],[2,3,3,2],[1,3,1,1]],[[1,1,2,0],[0,3,1,1],[1,4,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,1,1],[1,3,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,1,1],[1,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,1,1],[1,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,1,1],[1,3,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,1,1],[1,4,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,1],[1,3,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,1,1],[1,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,1,1],[1,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,1,1],[2,4,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,1],[2,3,1,2],[2,2,2,1]],[[1,1,2,0],[0,3,1,1],[2,3,1,2],[1,3,2,1]],[[1,1,2,0],[0,3,1,1],[2,3,1,2],[1,2,3,1]],[[1,1,2,0],[0,3,1,1],[2,3,1,2],[1,2,2,2]],[[1,1,2,0],[0,3,1,1],[2,4,2,1],[1,2,2,1]],[[1,1,2,0],[0,3,1,1],[2,3,2,1],[2,2,2,1]],[[1,1,2,0],[0,3,1,1],[2,3,2,1],[1,3,2,1]],[[1,1,2,0],[0,3,1,1],[2,3,2,1],[1,2,3,1]],[[1,1,2,0],[0,3,1,1],[2,3,2,1],[1,2,2,2]],[[1,1,2,0],[0,3,1,1],[2,4,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,1],[2,3,2,2],[2,2,2,0]],[[1,1,2,0],[0,3,1,1],[2,3,2,2],[1,3,2,0]],[[1,1,2,0],[0,3,1,1],[2,3,2,2],[1,2,3,0]],[[1,1,2,0],[0,3,1,1],[2,4,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,1,1],[2,3,3,0],[2,2,2,1]],[[1,1,2,0],[0,3,1,1],[2,3,3,0],[1,3,2,1]],[[1,1,2,0],[0,3,1,1],[2,3,3,0],[1,2,3,1]],[[1,1,2,0],[0,3,1,1],[2,4,3,1],[0,2,2,1]],[[1,1,2,0],[0,3,1,1],[2,3,3,1],[0,3,2,1]],[[1,1,2,0],[0,3,1,1],[2,3,3,1],[0,2,3,1]],[[1,1,2,0],[0,3,1,1],[2,3,3,1],[0,2,2,2]],[[1,1,2,0],[0,3,1,1],[2,4,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,1,1],[2,3,3,1],[2,2,1,1]],[[1,1,2,0],[0,3,1,1],[2,3,3,1],[1,3,1,1]],[[1,1,2,0],[0,3,1,1],[2,4,3,2],[0,2,2,0]],[[1,1,2,0],[0,3,1,1],[2,3,3,2],[0,3,2,0]],[[1,1,2,0],[0,3,1,1],[2,3,3,2],[0,2,3,0]],[[1,1,2,0],[0,3,1,1],[2,4,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,1,1],[2,3,3,2],[2,2,0,1]],[[1,1,2,0],[0,3,1,1],[2,3,3,2],[1,3,0,1]],[[1,1,2,0],[0,3,1,1],[2,4,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,1,1],[2,3,3,2],[2,2,1,0]],[[1,1,2,0],[0,3,1,1],[2,3,3,2],[1,3,1,0]],[[1,1,2,0],[0,3,1,3],[0,3,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[0,3,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[0,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,1,2],[0,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,1,2],[0,3,2,2],[1,2,2,2]],[[1,1,2,0],[0,3,1,2],[0,3,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[0,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,1,2],[0,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,1,2],[0,3,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,1,3],[0,3,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[0,3,4,2],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[0,3,3,3],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[0,3,3,2],[1,2,1,2]],[[1,1,2,0],[0,3,1,3],[0,3,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[0,3,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[0,3,3,3],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[0,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,1,2],[0,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,1,3],[1,2,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,2,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,2,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,2,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,1,2],[1,2,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,1,2],[1,2,2,2],[1,2,2,2]],[[1,1,2,0],[0,3,1,2],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,1,2],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,1,2],[1,2,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,1,3],[1,2,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[1,2,4,2],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[1,2,3,3],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[1,2,3,2],[1,2,1,2]],[[1,1,2,0],[0,3,1,3],[1,2,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[1,2,3,3],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,1,2],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,1,2],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[0,4,1,2],[1,3,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,3],[1,3,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,4,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,1,3],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,1,2],[2,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,1,2],[1,3,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,1,2],[1,2,3,1]],[[1,1,2,0],[0,3,1,2],[1,3,1,2],[1,2,2,2]],[[1,1,2,0],[0,4,1,2],[1,3,2,1],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[0,3,1,2],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[0,3,1,3],[1,3,2,2],[1,1,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,2,3],[1,1,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,2,2],[1,1,3,1]],[[1,1,2,0],[0,3,1,2],[1,3,2,2],[1,1,2,2]],[[1,1,2,0],[0,4,1,2],[1,3,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[0,3,1,2],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[0,3,1,2],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[0,4,1,2],[1,3,3,1],[1,1,2,1]],[[1,1,2,0],[0,3,1,2],[1,4,3,1],[1,1,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,1],[1,1,2,2]],[[1,1,2,0],[0,4,1,2],[1,3,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[1,3,4,1],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,1],[1,3,1,1]],[[1,1,2,0],[0,3,1,3],[1,3,3,2],[1,0,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,4,2],[1,0,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,3],[1,0,2,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,2],[1,0,2,2]],[[1,1,2,0],[0,4,1,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,1,3],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,1,2],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,1,2],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,3],[1,1,1,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,2],[1,1,1,2]],[[1,1,2,0],[0,4,1,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,1,3],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,1,2],[1,4,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,1,2],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[0,3,1,2],[1,3,3,3],[1,1,2,0]],[[1,1,2,0],[0,3,1,2],[1,3,3,2],[1,1,3,0]],[[1,1,2,0],[0,4,1,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,1,3],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,1,2],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,1,2],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,3],[1,2,0,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[0,3,1,2],[1,3,3,2],[1,2,0,2]],[[1,1,2,0],[0,4,1,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,1,3],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,1,2],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,1,2],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[0,3,1,2],[1,3,3,3],[1,2,1,0]],[[1,1,2,0],[0,3,1,2],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[0,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,1,2,0],[0,3,1,3],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[3,1,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,1,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,1,2],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,1,2],[2,1,2,2],[1,2,2,2]],[[1,1,2,0],[0,3,1,2],[3,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,1,2],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,1,2],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,1,3],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,1,4,2],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,1,3,3],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,1,3,2],[1,2,1,2]],[[1,1,2,0],[0,3,1,3],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,1,3,3],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,1,2],[2,1,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,1,3],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[3,2,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,1,3],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,1,2],[2,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,1,2],[1,3,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[0,3,1,2],[2,2,1,2],[1,2,2,2]],[[1,1,2,0],[0,3,1,2],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[0,3,1,2],[2,2,2,1],[1,2,2,2]],[[1,1,2,0],[0,3,1,3],[2,2,2,2],[0,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,2,2],[0,3,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,2,2],[0,2,3,1]],[[1,1,2,0],[0,3,1,2],[2,2,2,2],[0,2,2,2]],[[1,1,2,0],[0,3,1,2],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[0,3,1,2],[2,2,2,2],[1,2,3,0]],[[1,1,2,0],[0,3,1,2],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[0,3,1,2],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[0,3,1,2],[2,2,3,1],[0,2,2,2]],[[1,1,2,0],[0,3,1,2],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,2,3,1],[1,3,1,1]],[[1,1,2,0],[0,3,1,3],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,2,4,2],[0,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,2,3,3],[0,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,2,3,2],[0,2,1,2]],[[1,1,2,0],[0,3,1,3],[2,2,3,2],[0,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,2,3,3],[0,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[0,3,1,2],[2,2,3,2],[0,2,3,0]],[[1,1,2,0],[0,3,1,2],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,1,2],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[0,3,1,2],[2,2,3,2],[1,3,0,1]],[[1,1,2,0],[0,3,1,2],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,1,2],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[0,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,1,2,0],[0,4,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[0,3,1,3],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[0,3,1,2],[3,3,1,2],[0,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,4,1,2],[0,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,1,3],[0,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,1,2],[0,3,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,1,2],[0,2,3,1]],[[1,1,2,0],[0,3,1,2],[2,3,1,2],[0,2,2,2]],[[1,1,2,0],[0,4,1,2],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[0,3,1,2],[3,3,1,2],[1,1,2,1]],[[1,1,2,0],[0,3,1,2],[2,4,1,2],[1,1,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,1,2],[2,1,2,1]],[[1,1,2,0],[0,3,1,2],[2,4,2,0],[1,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,0],[2,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,0],[1,3,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,0],[1,2,3,1]],[[1,1,2,0],[0,4,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[0,3,1,2],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,1],[0,2,2,2]],[[1,1,2,0],[0,4,1,2],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[0,3,1,2],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[0,3,1,2],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,1],[2,1,2,1]],[[1,1,2,0],[0,3,1,2],[2,4,2,1],[1,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,2,1],[2,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,2,1],[1,3,2,0]],[[1,1,2,0],[0,3,1,3],[2,3,2,2],[0,1,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,3],[0,1,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,2],[0,1,3,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,2],[0,1,2,2]],[[1,1,2,0],[0,4,1,2],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,1,2],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,2,2],[0,2,3,0]],[[1,1,2,0],[0,3,1,3],[2,3,2,2],[1,0,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,3],[1,0,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,2],[1,0,3,1]],[[1,1,2,0],[0,3,1,2],[2,3,2,2],[1,0,2,2]],[[1,1,2,0],[0,4,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,1,2],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,1,2],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,3,2,2],[0,3,3,3],[0,0,2,0]],[[1,2,0,1],[2,3,2,2],[0,3,4,2],[0,0,2,0]],[[1,2,0,1],[2,3,2,3],[0,3,3,2],[0,0,2,0]],[[1,2,0,2],[2,3,2,2],[0,3,3,2],[0,0,2,0]],[[1,2,0,1],[2,3,2,2],[0,3,3,2],[0,0,1,2]],[[1,1,2,0],[0,3,1,2],[2,4,3,0],[1,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,0],[2,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,0],[1,3,1,1]],[[1,1,2,0],[0,4,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[0,3,1,2],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[0,3,1,2],[2,4,3,1],[0,1,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,1],[0,1,2,2]],[[1,1,2,0],[0,4,1,2],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,1,2],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,4,1],[0,2,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,1],[0,3,1,1]],[[1,1,2,0],[0,4,1,2],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,1,2],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,1,2],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,1],[2,0,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,1],[1,0,2,2]],[[1,1,2,0],[0,4,1,2],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,1,2],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,1,2],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,4,1],[1,1,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,1],[2,1,1,1]],[[1,1,2,0],[0,3,1,2],[2,4,3,1],[1,2,1,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,1],[2,2,1,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,3,2,2],[0,3,3,3],[0,0,1,1]],[[1,2,0,1],[2,3,2,2],[0,3,4,2],[0,0,1,1]],[[1,2,0,1],[2,3,2,3],[0,3,3,2],[0,0,1,1]],[[1,2,0,2],[2,3,2,2],[0,3,3,2],[0,0,1,1]],[[1,1,2,0],[0,3,1,3],[2,3,3,2],[0,0,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,4,2],[0,0,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,3],[0,0,2,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[0,0,2,2]],[[1,1,2,0],[0,4,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,1,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,1,2],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,1,2],[2,4,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,3],[0,1,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[0,1,1,2]],[[1,1,2,0],[0,4,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,1,3],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,1,2],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,1,2],[2,4,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,3],[0,1,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[0,1,3,0]],[[1,1,2,0],[0,4,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,1,3],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,1,2],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,1,2],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,1,2],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,3],[0,2,0,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[0,3,0,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[0,2,0,2]],[[1,1,2,0],[0,4,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,1,3],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,1,2],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,1,2],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,1,2],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,1,2,0],[0,4,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,1,3],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,1,2],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,1,2],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,3],[1,0,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[2,0,1,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[1,0,1,2]],[[1,1,2,0],[0,4,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,1,3],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,1,2],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,1,2],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,3],[1,0,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[2,0,2,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[1,0,3,0]],[[1,1,2,0],[0,4,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,1,3],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,1,2],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,1,2],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,1,2],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,3],[1,1,0,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[2,1,0,1]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[1,1,0,2]],[[1,1,2,0],[0,4,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,1,3],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,1,2],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,1,2],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,1,2],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,1,2,0],[0,4,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[0,3,1,2],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[0,3,1,2],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[0,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[2,4,2,2],[0,3,3,1],[1,1,1,0]],[[1,3,0,1],[2,3,2,2],[0,3,3,1],[1,1,1,0]],[[2,2,0,1],[2,3,2,2],[0,3,3,1],[1,1,1,0]],[[1,2,0,1],[2,4,2,2],[0,3,3,1],[1,1,0,1]],[[1,3,0,1],[2,3,2,2],[0,3,3,1],[1,1,0,1]],[[2,2,0,1],[2,3,2,2],[0,3,3,1],[1,1,0,1]],[[1,2,0,1],[2,4,2,2],[0,3,3,1],[1,0,2,0]],[[1,3,0,1],[2,3,2,2],[0,3,3,1],[1,0,2,0]],[[2,2,0,1],[2,3,2,2],[0,3,3,1],[1,0,2,0]],[[1,2,0,1],[2,4,2,2],[0,3,3,1],[1,0,1,1]],[[1,3,0,1],[2,3,2,2],[0,3,3,1],[1,0,1,1]],[[2,2,0,1],[2,3,2,2],[0,3,3,1],[1,0,1,1]],[[1,1,2,0],[0,3,2,0],[0,3,4,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,0],[0,3,3,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,0],[0,3,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,0],[0,3,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,2,0],[1,2,4,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,0],[1,2,3,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,0],[1,2,3,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,0],[1,2,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,0],[1,2,3,2],[1,2,2,2]],[[1,1,2,0],[0,4,2,0],[1,3,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,0],[1,4,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,0],[1,3,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,0],[1,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,0],[1,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,0],[1,3,2,2],[1,2,2,2]],[[1,1,2,0],[0,4,2,0],[1,3,3,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,0],[1,4,3,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,0],[1,3,4,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,0],[1,3,3,2],[1,1,3,1]],[[1,1,2,0],[0,3,2,0],[1,3,3,2],[1,1,2,2]],[[1,1,2,0],[0,4,2,0],[1,3,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,2,0],[1,4,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,2,0],[1,3,4,2],[1,2,1,1]],[[1,1,2,0],[0,3,2,0],[1,3,3,2],[2,2,1,1]],[[1,1,2,0],[0,3,2,0],[1,3,3,2],[1,3,1,1]],[[1,1,2,0],[0,3,2,0],[3,1,3,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,0],[2,1,4,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,0],[2,1,3,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,0],[2,1,3,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,0],[2,1,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,0],[2,1,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,2,0],[3,2,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,0],[2,2,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,0],[2,2,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,0],[2,2,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,0],[2,2,2,2],[1,2,2,2]],[[1,1,2,0],[0,3,2,0],[2,2,4,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,0],[2,2,3,2],[0,3,2,1]],[[1,1,2,0],[0,3,2,0],[2,2,3,2],[0,2,3,1]],[[1,1,2,0],[0,3,2,0],[2,2,3,2],[0,2,2,2]],[[1,1,2,0],[0,3,2,0],[3,2,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,2,0],[2,2,3,2],[2,2,1,1]],[[1,1,2,0],[0,3,2,0],[2,2,3,2],[1,3,1,1]],[[1,1,2,0],[0,4,2,0],[2,3,2,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,0],[3,3,2,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,0],[2,4,2,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,0],[2,3,2,2],[0,3,2,1]],[[1,1,2,0],[0,3,2,0],[2,3,2,2],[0,2,3,1]],[[1,1,2,0],[0,3,2,0],[2,3,2,2],[0,2,2,2]],[[1,1,2,0],[0,4,2,0],[2,3,2,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,0],[3,3,2,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,0],[2,4,2,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,0],[2,3,2,2],[2,1,2,1]],[[1,1,2,0],[0,4,2,0],[2,3,3,2],[0,1,2,1]],[[1,1,2,0],[0,3,2,0],[3,3,3,2],[0,1,2,1]],[[1,1,2,0],[0,3,2,0],[2,4,3,2],[0,1,2,1]],[[1,1,2,0],[0,3,2,0],[2,3,4,2],[0,1,2,1]],[[1,1,2,0],[0,3,2,0],[2,3,3,2],[0,1,3,1]],[[1,1,2,0],[0,3,2,0],[2,3,3,2],[0,1,2,2]],[[1,1,2,0],[0,4,2,0],[2,3,3,2],[0,2,1,1]],[[1,1,2,0],[0,3,2,0],[3,3,3,2],[0,2,1,1]],[[1,1,2,0],[0,3,2,0],[2,4,3,2],[0,2,1,1]],[[1,1,2,0],[0,3,2,0],[2,3,4,2],[0,2,1,1]],[[1,1,2,0],[0,3,2,0],[2,3,3,2],[0,3,1,1]],[[1,1,2,0],[0,4,2,0],[2,3,3,2],[1,0,2,1]],[[1,1,2,0],[0,3,2,0],[3,3,3,2],[1,0,2,1]],[[1,1,2,0],[0,3,2,0],[2,4,3,2],[1,0,2,1]],[[1,1,2,0],[0,3,2,0],[2,3,4,2],[1,0,2,1]],[[1,1,2,0],[0,3,2,0],[2,3,3,2],[2,0,2,1]],[[1,1,2,0],[0,3,2,0],[2,3,3,2],[1,0,3,1]],[[1,1,2,0],[0,3,2,0],[2,3,3,2],[1,0,2,2]],[[1,1,2,0],[0,4,2,0],[2,3,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,2,0],[3,3,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,2,0],[2,4,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,2,0],[2,3,4,2],[1,1,1,1]],[[1,1,2,0],[0,3,2,0],[2,3,3,2],[2,1,1,1]],[[1,2,0,1],[2,4,2,2],[0,3,3,1],[0,2,1,0]],[[1,3,0,1],[2,3,2,2],[0,3,3,1],[0,2,1,0]],[[2,2,0,1],[2,3,2,2],[0,3,3,1],[0,2,1,0]],[[1,2,0,1],[2,4,2,2],[0,3,3,1],[0,2,0,1]],[[1,3,0,1],[2,3,2,2],[0,3,3,1],[0,2,0,1]],[[2,2,0,1],[2,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,1,2,0],[0,3,2,1],[0,3,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[0,3,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[0,3,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,1],[0,3,2,2],[1,2,2,2]],[[1,1,2,0],[0,3,2,1],[0,3,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[0,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[0,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,2,1],[0,3,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,2,1],[0,3,4,2],[1,2,1,1]],[[1,1,2,0],[0,3,2,1],[0,3,3,3],[1,2,1,1]],[[1,1,2,0],[0,3,2,1],[0,3,3,2],[1,2,1,2]],[[1,1,2,0],[0,3,2,1],[0,3,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,1],[0,3,3,3],[1,2,2,0]],[[1,1,2,0],[0,3,2,1],[0,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,2,1],[0,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,2,1],[1,2,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,2,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,2,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[1,2,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,1],[1,2,2,2],[1,2,2,2]],[[1,1,2,0],[0,3,2,1],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,2,1],[1,2,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,2,1],[1,2,4,2],[1,2,1,1]],[[1,1,2,0],[0,3,2,1],[1,2,3,3],[1,2,1,1]],[[1,1,2,0],[0,3,2,1],[1,2,3,2],[1,2,1,2]],[[1,1,2,0],[0,3,2,1],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,1],[1,2,3,3],[1,2,2,0]],[[1,1,2,0],[0,3,2,1],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,2,1],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,2,1],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[0,4,2,1],[1,3,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,4,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,1,3],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,1,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,1,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,1,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,1],[1,3,1,2],[1,2,2,2]],[[1,1,2,0],[0,4,2,1],[1,3,2,1],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[0,3,2,1],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[0,3,2,1],[1,3,2,3],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,2,2],[1,1,3,1]],[[1,1,2,0],[0,3,2,1],[1,3,2,2],[1,1,2,2]],[[1,1,2,0],[0,4,2,1],[1,3,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,1],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,1],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[0,3,2,1],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[0,3,2,1],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[0,4,2,1],[1,3,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,4,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,0],[2,2,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,0],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,0],[1,2,3,1]],[[1,1,2,0],[0,4,2,1],[1,3,3,1],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[1,4,3,1],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,1],[1,1,2,2]],[[1,1,2,0],[0,4,2,1],[1,3,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,2,1],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,2,1],[1,3,4,1],[1,2,1,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,1],[1,3,1,1]],[[1,1,2,0],[0,3,2,1],[1,3,4,2],[1,0,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,3],[1,0,2,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,2],[1,0,2,2]],[[1,1,2,0],[0,4,2,1],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,2,1],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,2,1],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,3],[1,1,1,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,2],[1,1,1,2]],[[1,1,2,0],[0,4,2,1],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,2,1],[1,4,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,2,1],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[0,3,2,1],[1,3,3,3],[1,1,2,0]],[[1,1,2,0],[0,3,2,1],[1,3,3,2],[1,1,3,0]],[[1,1,2,0],[0,4,2,1],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,2,1],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,2,1],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,3],[1,2,0,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[0,3,2,1],[1,3,3,2],[1,2,0,2]],[[1,1,2,0],[0,4,2,1],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,2,1],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,2,1],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[0,3,2,1],[1,3,3,3],[1,2,1,0]],[[1,1,2,0],[0,3,2,1],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[0,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,4,2,2],[0,3,3,1],[0,1,2,0]],[[1,3,0,1],[2,3,2,2],[0,3,3,1],[0,1,2,0]],[[2,2,0,1],[2,3,2,2],[0,3,3,1],[0,1,2,0]],[[1,2,0,1],[2,4,2,2],[0,3,3,1],[0,1,1,1]],[[1,1,2,0],[0,3,2,1],[3,1,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,1,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,1],[2,1,2,2],[1,2,2,2]],[[1,1,2,0],[0,3,2,1],[3,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,2,1],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,2,1],[2,1,4,2],[1,2,1,1]],[[1,1,2,0],[0,3,2,1],[2,1,3,3],[1,2,1,1]],[[1,1,2,0],[0,3,2,1],[2,1,3,2],[1,2,1,2]],[[1,1,2,0],[0,3,2,1],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,1],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,1],[2,1,3,3],[1,2,2,0]],[[1,1,2,0],[0,3,2,1],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,2,1],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,2,1],[2,1,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,2,1],[3,2,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,1,3],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,1,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,1,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,1],[2,2,1,2],[1,2,2,2]],[[1,1,2,0],[0,3,2,1],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[0,3,2,1],[2,2,2,1],[1,2,2,2]],[[1,1,2,0],[0,3,2,1],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,2,2],[0,3,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,2,2],[0,2,3,1]],[[1,1,2,0],[0,3,2,1],[2,2,2,2],[0,2,2,2]],[[1,1,2,0],[0,3,2,1],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,1],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[0,3,2,1],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[0,3,2,1],[2,2,2,2],[1,2,3,0]],[[1,1,2,0],[0,3,2,1],[3,2,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,0],[2,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,0],[1,3,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,0],[1,2,3,1]],[[1,1,2,0],[0,3,2,1],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,1],[0,2,2,2]],[[1,1,2,0],[0,3,2,1],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,1],[1,3,1,1]],[[1,1,2,0],[0,3,2,1],[2,2,4,2],[0,2,1,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,3],[0,2,1,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,2],[0,2,1,2]],[[1,1,2,0],[0,3,2,1],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[0,3,2,1],[2,2,3,3],[0,2,2,0]],[[1,1,2,0],[0,3,2,1],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[0,3,2,1],[2,2,3,2],[0,2,3,0]],[[1,1,2,0],[0,3,2,1],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[0,3,2,1],[2,2,3,2],[1,3,0,1]],[[1,1,2,0],[0,3,2,1],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,2,1],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[0,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,3,0,1],[2,3,2,2],[0,3,3,1],[0,1,1,1]],[[2,2,0,1],[2,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,1,2,0],[0,4,2,1],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[3,3,1,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,4,1,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,1,3],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,1,2],[0,3,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,1,2],[0,2,3,1]],[[1,1,2,0],[0,3,2,1],[2,3,1,2],[0,2,2,2]],[[1,1,2,0],[0,4,2,1],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[3,3,1,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[2,4,1,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,1,2],[2,1,2,1]],[[1,1,2,0],[0,4,2,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[0,3,2,1],[2,3,2,1],[0,2,2,2]],[[1,1,2,0],[0,4,2,1],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,2,1],[2,1,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,2,3],[0,1,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,2,2],[0,1,3,1]],[[1,1,2,0],[0,3,2,1],[2,3,2,2],[0,1,2,2]],[[1,1,2,0],[0,4,2,1],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,2,1],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,2,1],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,2,1],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[0,3,2,1],[2,3,2,2],[0,2,3,0]],[[1,1,2,0],[0,3,2,1],[2,3,2,3],[1,0,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,2,2],[1,0,3,1]],[[1,1,2,0],[0,3,2,1],[2,3,2,2],[1,0,2,2]],[[1,1,2,0],[0,4,2,1],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,2,1],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,2,1],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,1,2,0],[0,4,2,1],[2,3,3,0],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[3,3,3,0],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,4,3,0],[0,2,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,0],[0,3,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,0],[0,2,3,1]],[[1,1,2,0],[0,4,2,1],[2,3,3,0],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[3,3,3,0],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[2,4,3,0],[1,1,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,0],[2,1,2,1]],[[1,1,2,0],[0,4,2,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[0,3,2,1],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[0,3,2,1],[2,4,3,1],[0,1,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,1],[0,1,2,2]],[[1,1,2,0],[0,4,2,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,2,1],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,2,1],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,2,1],[2,3,4,1],[0,2,1,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,1],[0,3,1,1]],[[1,1,2,0],[0,4,2,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,2,1],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,2,1],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,1],[2,0,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,1],[1,0,2,2]],[[1,1,2,0],[0,4,2,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,2,1],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,2,1],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,2,1],[2,3,4,1],[1,1,1,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,1],[2,1,1,1]],[[1,1,2,0],[0,4,2,1],[2,3,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,2,1],[3,3,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,2,1],[2,4,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,4,2,2],[0,3,3,0],[1,1,1,1]],[[1,3,0,1],[2,3,2,2],[0,3,3,0],[1,1,1,1]],[[2,2,0,1],[2,3,2,2],[0,3,3,0],[1,1,1,1]],[[1,2,0,1],[2,4,2,2],[0,3,3,0],[1,0,2,1]],[[1,3,0,1],[2,3,2,2],[0,3,3,0],[1,0,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,4,2],[0,0,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,3],[0,0,2,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[0,0,2,2]],[[1,1,2,0],[0,4,2,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,2,1],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,2,1],[2,4,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,2,1],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,3],[0,1,1,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[0,1,1,2]],[[1,1,2,0],[0,4,2,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,2,1],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,2,1],[2,4,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,2,1],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[0,3,2,1],[2,3,3,3],[0,1,2,0]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[0,1,3,0]],[[1,1,2,0],[0,4,2,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,2,1],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,2,1],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,2,1],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,3],[0,2,0,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[0,3,0,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[0,2,0,2]],[[1,1,2,0],[0,4,2,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,2,1],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,2,1],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,2,1],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[0,3,2,1],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[0,3,1,0]],[[2,2,0,1],[2,3,2,2],[0,3,3,0],[1,0,2,1]],[[1,2,0,1],[2,4,2,2],[0,3,3,0],[0,2,1,1]],[[1,3,0,1],[2,3,2,2],[0,3,3,0],[0,2,1,1]],[[2,2,0,1],[2,3,2,2],[0,3,3,0],[0,2,1,1]],[[1,2,0,1],[2,4,2,2],[0,3,3,0],[0,1,2,1]],[[1,1,2,0],[0,4,2,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,2,1],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,2,1],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,2,1],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,3],[1,0,1,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[2,0,1,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[1,0,1,2]],[[1,1,2,0],[0,4,2,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,2,1],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,2,1],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,2,1],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[0,3,2,1],[2,3,3,3],[1,0,2,0]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[2,0,2,0]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[1,0,3,0]],[[1,1,2,0],[0,4,2,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,2,1],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,2,1],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,2,1],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,3],[1,1,0,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[2,1,0,1]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[1,1,0,2]],[[1,1,2,0],[0,4,2,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,2,1],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,2,1],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,2,1],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[0,3,2,1],[2,3,3,3],[1,1,1,0]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,3,0,1],[2,3,2,2],[0,3,3,0],[0,1,2,1]],[[2,2,0,1],[2,3,2,2],[0,3,3,0],[0,1,2,1]],[[1,1,2,0],[0,4,2,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[0,3,2,1],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[0,3,2,1],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[0,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[2,4,2,2],[0,3,2,1],[0,2,2,0]],[[1,3,0,1],[2,3,2,2],[0,3,2,1],[0,2,2,0]],[[2,2,0,1],[2,3,2,2],[0,3,2,1],[0,2,2,0]],[[1,1,2,0],[0,3,2,2],[0,3,4,0],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[0,3,3,0],[1,3,2,1]],[[1,1,2,0],[0,3,2,2],[0,3,3,0],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[0,3,3,0],[1,2,2,2]],[[1,1,2,0],[0,3,2,2],[0,3,4,1],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[0,3,3,1],[1,3,2,0]],[[1,1,2,0],[0,3,2,2],[0,3,3,1],[1,2,3,0]],[[1,2,0,1],[2,4,2,2],[0,3,2,0],[0,2,2,1]],[[1,3,0,1],[2,3,2,2],[0,3,2,0],[0,2,2,1]],[[2,2,0,1],[2,3,2,2],[0,3,2,0],[0,2,2,1]],[[1,1,2,0],[0,3,2,3],[1,0,3,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,0,3,3],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,0,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[1,0,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,2,3],[1,1,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,1,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,1,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,1,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,2],[1,1,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[1,1,2,2],[1,2,2,2]],[[1,1,2,0],[0,3,2,2],[1,1,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,1,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,1,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,2,2],[1,1,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[1,1,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,2,3],[1,1,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,2,2],[1,1,4,2],[1,2,1,1]],[[1,1,2,0],[0,3,2,2],[1,1,3,3],[1,2,1,1]],[[1,1,2,0],[0,3,2,2],[1,1,3,2],[1,2,1,2]],[[1,1,2,0],[0,3,2,3],[1,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[1,1,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[1,1,3,3],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[1,1,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,2,2],[1,1,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,2,2],[1,1,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,2,3],[1,2,2,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[1,2,2,3],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[1,2,2,2],[1,1,3,1]],[[1,1,2,0],[0,3,2,2],[1,2,2,2],[1,1,2,2]],[[1,1,2,0],[0,3,2,2],[1,2,4,0],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,0],[2,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,0],[1,3,2,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,0],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,0],[1,2,2,2]],[[1,1,2,0],[0,3,2,2],[1,2,4,1],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,1],[1,1,3,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,1],[1,1,2,2]],[[1,1,2,0],[0,3,2,2],[1,2,4,1],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[1,2,3,1],[2,2,2,0]],[[1,1,2,0],[0,3,2,2],[1,2,3,1],[1,3,2,0]],[[1,1,2,0],[0,3,2,2],[1,2,3,1],[1,2,3,0]],[[1,1,2,0],[0,3,2,3],[1,2,3,2],[1,0,2,1]],[[1,1,2,0],[0,3,2,2],[1,2,4,2],[1,0,2,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,3],[1,0,2,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,2],[1,0,2,2]],[[1,1,2,0],[0,3,2,3],[1,2,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,2,2],[1,2,4,2],[1,1,1,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,3],[1,1,1,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,2],[1,1,1,2]],[[1,1,2,0],[0,3,2,3],[1,2,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,2,2],[1,2,4,2],[1,1,2,0]],[[1,1,2,0],[0,3,2,2],[1,2,3,3],[1,1,2,0]],[[1,1,2,0],[0,3,2,2],[1,2,3,2],[1,1,3,0]],[[1,1,2,0],[0,3,2,3],[1,2,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,2,2],[1,2,4,2],[1,2,0,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,3],[1,2,0,1]],[[1,1,2,0],[0,3,2,2],[1,2,3,2],[1,2,0,2]],[[1,1,2,0],[0,3,2,3],[1,2,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,2,2],[1,2,4,2],[1,2,1,0]],[[1,1,2,0],[0,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,1,2,0],[0,4,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,3],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,4,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,3,0,3],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,3,0,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,3,0,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,2],[1,3,0,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[1,3,0,2],[1,2,2,2]],[[1,1,2,0],[0,4,2,2],[1,3,2,0],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,4,2,0],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,3,2,0],[2,2,2,1]],[[1,1,2,0],[0,3,2,2],[1,3,2,0],[1,3,2,1]],[[1,1,2,0],[0,3,2,2],[1,3,2,0],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[1,3,2,0],[1,2,2,2]],[[1,1,2,0],[0,4,2,2],[1,3,2,1],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[1,4,2,1],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[1,3,2,1],[2,2,2,0]],[[1,1,2,0],[0,3,2,2],[1,3,2,1],[1,3,2,0]],[[1,1,2,0],[0,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,0,1],[2,4,2,2],[0,3,0,2],[0,2,2,1]],[[1,3,0,1],[2,3,2,2],[0,3,0,2],[0,2,2,1]],[[2,2,0,1],[2,3,2,2],[0,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,4,2,2],[1,3,3,0],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[1,4,3,0],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[1,3,4,0],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[1,3,3,0],[1,1,3,1]],[[1,1,2,0],[0,3,2,2],[1,3,3,0],[1,1,2,2]],[[1,1,2,0],[0,4,2,2],[1,3,3,0],[1,2,1,1]],[[1,1,2,0],[0,3,2,2],[1,4,3,0],[1,2,1,1]],[[1,1,2,0],[0,3,2,2],[1,3,4,0],[1,2,1,1]],[[1,1,2,0],[0,3,2,2],[1,3,3,0],[2,2,1,1]],[[1,1,2,0],[0,3,2,2],[1,3,3,0],[1,3,1,1]],[[1,1,2,0],[0,4,2,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,2,2],[1,4,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,2,2],[1,3,4,1],[1,1,1,1]],[[1,1,2,0],[0,4,2,2],[1,3,3,1],[1,1,2,0]],[[1,1,2,0],[0,3,2,2],[1,4,3,1],[1,1,2,0]],[[1,1,2,0],[0,3,2,2],[1,3,4,1],[1,1,2,0]],[[1,1,2,0],[0,3,2,2],[1,3,3,1],[1,1,3,0]],[[1,1,2,0],[0,4,2,2],[1,3,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,2,2],[1,4,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,2,2],[1,3,4,1],[1,2,0,1]],[[1,1,2,0],[0,3,2,2],[1,3,3,1],[2,2,0,1]],[[1,1,2,0],[0,3,2,2],[1,3,3,1],[1,3,0,1]],[[1,1,2,0],[0,4,2,2],[1,3,3,1],[1,2,1,0]],[[1,1,2,0],[0,3,2,2],[1,4,3,1],[1,2,1,0]],[[1,1,2,0],[0,3,2,2],[1,3,4,1],[1,2,1,0]],[[1,1,2,0],[0,3,2,2],[1,3,3,1],[2,2,1,0]],[[1,1,2,0],[0,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,3,2,2],[0,2,3,3],[1,0,2,0]],[[1,2,0,1],[2,3,2,2],[0,2,4,2],[1,0,2,0]],[[1,2,0,1],[2,3,2,3],[0,2,3,2],[1,0,2,0]],[[1,2,0,2],[2,3,2,2],[0,2,3,2],[1,0,2,0]],[[1,2,0,1],[2,3,2,2],[0,2,3,2],[1,0,1,2]],[[1,2,0,1],[2,3,2,2],[0,2,3,3],[1,0,1,1]],[[1,2,0,1],[2,3,2,2],[0,2,4,2],[1,0,1,1]],[[1,2,0,1],[2,3,2,3],[0,2,3,2],[1,0,1,1]],[[1,2,0,2],[2,3,2,2],[0,2,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,2,3],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[3,0,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,0,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,0,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,0,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,2],[2,0,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[2,0,2,2],[1,2,2,2]],[[1,1,2,0],[0,3,2,2],[3,0,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,0,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,0,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,0,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,2,2],[2,0,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[2,0,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,2,3],[2,0,3,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,0,3,3],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,0,3,2],[0,2,3,1]],[[1,1,2,0],[0,3,2,2],[2,0,3,2],[0,2,2,2]],[[1,1,2,0],[0,3,2,3],[2,0,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,2,2],[2,0,4,2],[1,2,1,1]],[[1,1,2,0],[0,3,2,2],[2,0,3,3],[1,2,1,1]],[[1,1,2,0],[0,3,2,2],[2,0,3,2],[1,2,1,2]],[[1,1,2,0],[0,3,2,3],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[3,0,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,0,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,0,3,3],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,0,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,0,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,2,2],[2,0,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,2,3],[2,1,2,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,1,2,3],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,1,2,2],[0,3,2,1]],[[1,1,2,0],[0,3,2,2],[2,1,2,2],[0,2,3,1]],[[1,1,2,0],[0,3,2,2],[2,1,2,2],[0,2,2,2]],[[1,1,2,0],[0,3,2,2],[3,1,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,1,4,0],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,1,3,0],[2,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,1,3,0],[1,3,2,1]],[[1,1,2,0],[0,3,2,2],[2,1,3,0],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[2,1,3,0],[1,2,2,2]],[[1,1,2,0],[0,3,2,2],[2,1,4,1],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,1,3,1],[0,3,2,1]],[[1,1,2,0],[0,3,2,2],[2,1,3,1],[0,2,3,1]],[[1,1,2,0],[0,3,2,2],[2,1,3,1],[0,2,2,2]],[[1,1,2,0],[0,3,2,2],[3,1,3,1],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,1,4,1],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,1,3,1],[2,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,1,3,1],[1,3,2,0]],[[1,1,2,0],[0,3,2,2],[2,1,3,1],[1,2,3,0]],[[1,1,2,0],[0,3,2,3],[2,1,3,2],[0,2,1,1]],[[1,1,2,0],[0,3,2,2],[2,1,4,2],[0,2,1,1]],[[1,1,2,0],[0,3,2,2],[2,1,3,3],[0,2,1,1]],[[1,1,2,0],[0,3,2,2],[2,1,3,2],[0,2,1,2]],[[1,1,2,0],[0,3,2,3],[2,1,3,2],[0,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,1,4,2],[0,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,1,3,3],[0,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,1,3,2],[0,3,2,0]],[[1,1,2,0],[0,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,0,1],[2,3,2,2],[0,2,3,3],[0,2,1,0]],[[1,2,0,1],[2,3,2,2],[0,2,4,2],[0,2,1,0]],[[1,2,0,1],[2,3,2,3],[0,2,3,2],[0,2,1,0]],[[1,2,0,2],[2,3,2,2],[0,2,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,2,3],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[3,2,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,0,3],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,0,2],[2,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,0,2],[1,3,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,0,2],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[2,2,0,2],[1,2,2,2]],[[1,1,2,0],[0,3,2,2],[3,2,2,0],[1,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,2,0],[2,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,2,0],[1,3,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,2,0],[1,2,3,1]],[[1,1,2,0],[0,3,2,2],[2,2,2,0],[1,2,2,2]],[[1,1,2,0],[0,3,2,2],[3,2,2,1],[1,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,2,2,1],[2,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,2,2,1],[1,3,2,0]],[[1,1,2,0],[0,3,2,2],[2,2,2,1],[1,2,3,0]],[[1,1,2,0],[0,3,2,3],[2,2,2,2],[0,1,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,2,3],[0,1,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,2,2],[0,1,3,1]],[[1,1,2,0],[0,3,2,2],[2,2,2,2],[0,1,2,2]],[[1,1,2,0],[0,3,2,3],[2,2,2,2],[1,0,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,2,3],[1,0,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,2,2],[1,0,3,1]],[[1,1,2,0],[0,3,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,0,1],[2,3,2,2],[0,2,3,2],[0,2,0,2]],[[1,2,0,1],[2,3,2,2],[0,2,3,3],[0,2,0,1]],[[1,2,0,1],[2,3,2,2],[0,2,4,2],[0,2,0,1]],[[1,2,0,1],[2,3,2,3],[0,2,3,2],[0,2,0,1]],[[1,2,0,2],[2,3,2,2],[0,2,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,2,2],[2,2,4,0],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,0],[0,3,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,0],[0,2,3,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,0],[0,2,2,2]],[[1,1,2,0],[0,3,2,2],[3,2,3,0],[1,2,1,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,0],[2,2,1,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,0],[1,3,1,1]],[[1,1,2,0],[0,3,2,2],[2,2,4,1],[0,1,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,1],[0,1,3,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,1],[0,1,2,2]],[[1,1,2,0],[0,3,2,2],[2,2,4,1],[0,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,2,3,1],[0,3,2,0]],[[1,1,2,0],[0,3,2,2],[2,2,3,1],[0,2,3,0]],[[1,1,2,0],[0,3,2,2],[2,2,4,1],[1,0,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,1],[1,0,3,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,1],[1,0,2,2]],[[1,1,2,0],[0,3,2,2],[3,2,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,1],[2,2,0,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,1],[1,3,0,1]],[[1,1,2,0],[0,3,2,2],[3,2,3,1],[1,2,1,0]],[[1,1,2,0],[0,3,2,2],[2,2,3,1],[2,2,1,0]],[[1,1,2,0],[0,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[2,3,2,2],[0,2,3,2],[0,1,3,0]],[[1,2,0,1],[2,3,2,2],[0,2,3,3],[0,1,2,0]],[[1,1,2,0],[0,3,2,3],[2,2,3,2],[0,0,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,4,2],[0,0,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,3],[0,0,2,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,2],[0,0,2,2]],[[1,1,2,0],[0,3,2,3],[2,2,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,2,2],[2,2,4,2],[0,1,1,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,3],[0,1,1,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,2],[0,1,1,2]],[[1,1,2,0],[0,3,2,3],[2,2,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,2,2],[2,2,4,2],[0,1,2,0]],[[1,1,2,0],[0,3,2,2],[2,2,3,3],[0,1,2,0]],[[1,1,2,0],[0,3,2,2],[2,2,3,2],[0,1,3,0]],[[1,1,2,0],[0,3,2,3],[2,2,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,2,2],[2,2,4,2],[0,2,0,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,3],[0,2,0,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,2],[0,2,0,2]],[[1,1,2,0],[0,3,2,3],[2,2,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,2,2],[2,2,4,2],[0,2,1,0]],[[1,1,2,0],[0,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,0,1],[2,3,2,2],[0,2,4,2],[0,1,2,0]],[[1,2,0,1],[2,3,2,3],[0,2,3,2],[0,1,2,0]],[[1,2,0,2],[2,3,2,2],[0,2,3,2],[0,1,2,0]],[[1,2,0,1],[2,3,2,2],[0,2,3,2],[0,1,1,2]],[[1,2,0,1],[2,3,2,2],[0,2,3,3],[0,1,1,1]],[[1,2,0,1],[2,3,2,2],[0,2,4,2],[0,1,1,1]],[[1,1,2,0],[0,3,2,3],[2,2,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,2,2],[2,2,4,2],[1,0,1,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,3],[1,0,1,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,2],[1,0,1,2]],[[1,1,2,0],[0,3,2,3],[2,2,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,2,2],[2,2,4,2],[1,0,2,0]],[[1,1,2,0],[0,3,2,2],[2,2,3,3],[1,0,2,0]],[[1,1,2,0],[0,3,2,2],[2,2,3,2],[1,0,3,0]],[[1,1,2,0],[0,3,2,3],[2,2,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,2,2],[2,2,4,2],[1,1,0,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,3],[1,1,0,1]],[[1,1,2,0],[0,3,2,2],[2,2,3,2],[1,1,0,2]],[[1,1,2,0],[0,3,2,3],[2,2,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,2,2],[2,2,4,2],[1,1,1,0]],[[1,1,2,0],[0,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,2,0,1],[2,3,2,3],[0,2,3,2],[0,1,1,1]],[[1,2,0,2],[2,3,2,2],[0,2,3,2],[0,1,1,1]],[[1,2,0,1],[2,3,2,2],[0,2,3,2],[0,0,2,2]],[[1,2,0,1],[2,3,2,2],[0,2,3,3],[0,0,2,1]],[[1,2,0,1],[2,3,2,2],[0,2,4,2],[0,0,2,1]],[[1,2,0,1],[2,3,2,3],[0,2,3,2],[0,0,2,1]],[[1,2,0,2],[2,3,2,2],[0,2,3,2],[0,0,2,1]],[[1,2,0,1],[2,3,2,2],[0,2,3,1],[0,1,2,2]],[[1,2,0,1],[2,3,2,2],[0,2,3,1],[0,1,3,1]],[[1,2,0,1],[2,3,2,2],[0,2,4,1],[0,1,2,1]],[[1,1,2,0],[0,4,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,3],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[3,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,4,0,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,0,3],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,0,2],[0,3,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,0,2],[0,2,3,1]],[[1,1,2,0],[0,3,2,2],[2,3,0,2],[0,2,2,2]],[[1,1,2,0],[0,4,2,2],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[3,3,0,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[2,4,0,2],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,0,2],[2,1,2,1]],[[1,2,0,1],[2,3,2,2],[0,2,2,2],[0,1,2,2]],[[1,1,2,0],[0,4,2,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[3,3,2,0],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,4,2,0],[0,2,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,2,0],[0,3,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,2,0],[0,2,3,1]],[[1,1,2,0],[0,3,2,2],[2,3,2,0],[0,2,2,2]],[[1,1,2,0],[0,4,2,2],[2,3,2,0],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[3,3,2,0],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[2,4,2,0],[1,1,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,2,0],[2,1,2,1]],[[1,1,2,0],[0,4,2,2],[2,3,2,1],[0,2,2,0]],[[1,1,2,0],[0,3,2,2],[3,3,2,1],[0,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,4,2,1],[0,2,2,0]],[[1,1,2,0],[0,3,2,2],[2,3,2,1],[0,3,2,0]],[[1,1,2,0],[0,3,2,2],[2,3,2,1],[0,2,3,0]],[[1,1,2,0],[0,4,2,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,0],[0,3,2,2],[3,3,2,1],[1,1,2,0]],[[1,1,2,0],[0,3,2,2],[2,4,2,1],[1,1,2,0]],[[1,1,2,0],[0,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[2,3,2,2],[0,2,2,2],[0,1,3,1]],[[1,2,0,1],[2,3,2,2],[0,2,2,3],[0,1,2,1]],[[1,2,0,1],[2,3,2,3],[0,2,2,2],[0,1,2,1]],[[1,2,0,2],[2,3,2,2],[0,2,2,2],[0,1,2,1]],[[1,2,0,1],[2,3,2,2],[0,1,3,2],[0,2,3,0]],[[1,2,0,1],[2,3,2,2],[0,1,3,3],[0,2,2,0]],[[1,2,0,1],[2,3,2,2],[0,1,4,2],[0,2,2,0]],[[1,2,0,1],[2,3,2,3],[0,1,3,2],[0,2,2,0]],[[1,2,0,2],[2,3,2,2],[0,1,3,2],[0,2,2,0]],[[1,2,0,1],[2,3,2,2],[0,1,3,2],[0,2,1,2]],[[1,2,0,1],[2,3,2,2],[0,1,3,3],[0,2,1,1]],[[1,2,0,1],[2,3,2,2],[0,1,4,2],[0,2,1,1]],[[1,2,0,1],[2,3,2,3],[0,1,3,2],[0,2,1,1]],[[1,2,0,2],[2,3,2,2],[0,1,3,2],[0,2,1,1]],[[1,2,0,1],[2,3,2,2],[0,1,3,1],[0,2,2,2]],[[1,1,2,0],[0,4,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[0,3,2,2],[3,3,3,0],[0,1,2,1]],[[1,1,2,0],[0,3,2,2],[2,4,3,0],[0,1,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,4,0],[0,1,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,0],[0,1,3,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,0],[0,1,2,2]],[[1,1,2,0],[0,4,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[0,3,2,2],[3,3,3,0],[0,2,1,1]],[[1,1,2,0],[0,3,2,2],[2,4,3,0],[0,2,1,1]],[[1,1,2,0],[0,3,2,2],[2,3,4,0],[0,2,1,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,0],[0,3,1,1]],[[1,1,2,0],[0,4,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[0,3,2,2],[3,3,3,0],[1,0,2,1]],[[1,1,2,0],[0,3,2,2],[2,4,3,0],[1,0,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,4,0],[1,0,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,0],[2,0,2,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,0],[1,0,3,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,0],[1,0,2,2]],[[1,1,2,0],[0,4,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[0,3,2,2],[3,3,3,0],[1,1,1,1]],[[1,1,2,0],[0,3,2,2],[2,4,3,0],[1,1,1,1]],[[1,1,2,0],[0,3,2,2],[2,3,4,0],[1,1,1,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,0],[2,1,1,1]],[[1,1,2,0],[0,4,2,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,0],[0,3,2,2],[3,3,3,0],[1,2,0,1]],[[1,1,2,0],[0,3,2,2],[2,4,3,0],[1,2,0,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[2,3,2,2],[0,1,3,1],[0,2,3,1]],[[1,2,0,1],[2,3,2,2],[0,1,4,1],[0,2,2,1]],[[1,1,2,0],[0,4,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,0],[0,3,2,2],[3,3,3,1],[0,1,1,1]],[[1,1,2,0],[0,3,2,2],[2,4,3,1],[0,1,1,1]],[[1,1,2,0],[0,3,2,2],[2,3,4,1],[0,1,1,1]],[[1,1,2,0],[0,4,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[0,3,2,2],[3,3,3,1],[0,1,2,0]],[[1,1,2,0],[0,3,2,2],[2,4,3,1],[0,1,2,0]],[[1,1,2,0],[0,3,2,2],[2,3,4,1],[0,1,2,0]],[[1,1,2,0],[0,3,2,2],[2,3,3,1],[0,1,3,0]],[[1,1,2,0],[0,4,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[0,3,2,2],[3,3,3,1],[0,2,0,1]],[[1,1,2,0],[0,3,2,2],[2,4,3,1],[0,2,0,1]],[[1,1,2,0],[0,3,2,2],[2,3,4,1],[0,2,0,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,1],[0,3,0,1]],[[1,1,2,0],[0,4,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[0,3,2,2],[3,3,3,1],[0,2,1,0]],[[1,1,2,0],[0,3,2,2],[2,4,3,1],[0,2,1,0]],[[1,1,2,0],[0,3,2,2],[2,3,4,1],[0,2,1,0]],[[1,1,2,0],[0,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[2,3,2,2],[0,1,2,2],[0,2,2,2]],[[1,2,0,1],[2,3,2,2],[0,1,2,2],[0,2,3,1]],[[1,2,0,1],[2,3,2,2],[0,1,2,3],[0,2,2,1]],[[1,2,0,1],[2,3,2,3],[0,1,2,2],[0,2,2,1]],[[1,2,0,2],[2,3,2,2],[0,1,2,2],[0,2,2,1]],[[1,1,2,0],[0,4,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[0,3,2,2],[3,3,3,1],[1,0,1,1]],[[1,1,2,0],[0,3,2,2],[2,4,3,1],[1,0,1,1]],[[1,1,2,0],[0,3,2,2],[2,3,4,1],[1,0,1,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,1],[2,0,1,1]],[[1,1,2,0],[0,4,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[0,3,2,2],[3,3,3,1],[1,0,2,0]],[[1,1,2,0],[0,3,2,2],[2,4,3,1],[1,0,2,0]],[[1,1,2,0],[0,3,2,2],[2,3,4,1],[1,0,2,0]],[[1,1,2,0],[0,3,2,2],[2,3,3,1],[2,0,2,0]],[[1,1,2,0],[0,3,2,2],[2,3,3,1],[1,0,3,0]],[[1,1,2,0],[0,4,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[0,3,2,2],[3,3,3,1],[1,1,0,1]],[[1,1,2,0],[0,3,2,2],[2,4,3,1],[1,1,0,1]],[[1,1,2,0],[0,3,2,2],[2,3,4,1],[1,1,0,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,1],[2,1,0,1]],[[1,1,2,0],[0,4,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[0,3,2,2],[3,3,3,1],[1,1,1,0]],[[1,1,2,0],[0,3,2,2],[2,4,3,1],[1,1,1,0]],[[1,1,2,0],[0,3,2,2],[2,3,4,1],[1,1,1,0]],[[1,1,2,0],[0,3,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[2,3,2,2],[0,0,3,2],[0,2,2,2]],[[1,2,0,1],[2,3,2,2],[0,0,3,2],[0,2,3,1]],[[1,2,0,1],[2,3,2,2],[0,0,3,3],[0,2,2,1]],[[1,1,2,0],[0,4,2,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,0],[0,3,2,2],[3,3,3,1],[1,2,0,0]],[[1,1,2,0],[0,3,2,2],[2,4,3,1],[1,2,0,0]],[[1,1,2,0],[0,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[2,3,2,3],[0,0,3,2],[0,2,2,1]],[[1,2,0,2],[2,3,2,2],[0,0,3,2],[0,2,2,1]],[[1,1,2,0],[0,3,2,3],[2,3,3,2],[0,0,1,1]],[[1,1,2,0],[0,3,2,2],[2,3,4,2],[0,0,1,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,3],[0,0,1,1]],[[1,1,2,0],[0,3,2,2],[2,3,3,2],[0,0,1,2]],[[1,1,2,0],[0,3,2,3],[2,3,3,2],[0,0,2,0]],[[1,1,2,0],[0,3,2,2],[2,3,4,2],[0,0,2,0]],[[1,1,2,0],[0,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,0,1],[2,3,2,1],[3,3,3,1],[1,0,1,0]],[[1,2,0,1],[2,4,2,1],[2,3,3,1],[1,0,1,0]],[[1,2,0,1],[3,3,2,1],[2,3,3,1],[1,0,1,0]],[[2,2,0,1],[2,3,2,1],[2,3,3,1],[1,0,1,0]],[[1,2,0,1],[2,3,2,1],[3,3,3,1],[1,0,0,1]],[[1,2,0,1],[2,4,2,1],[2,3,3,1],[1,0,0,1]],[[1,2,0,1],[3,3,2,1],[2,3,3,1],[1,0,0,1]],[[2,2,0,1],[2,3,2,1],[2,3,3,1],[1,0,0,1]],[[1,2,0,1],[2,3,2,1],[3,3,3,0],[1,0,1,1]],[[1,2,0,1],[2,4,2,1],[2,3,3,0],[1,0,1,1]],[[1,2,0,1],[3,3,2,1],[2,3,3,0],[1,0,1,1]],[[2,2,0,1],[2,3,2,1],[2,3,3,0],[1,0,1,1]],[[1,1,2,0],[0,3,3,0],[0,3,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[0,3,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,3,0],[0,3,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,3,0],[0,3,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,3,0],[0,3,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,0],[0,3,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,3,0],[0,3,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,3,0],[1,1,4,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[1,1,3,2],[2,2,2,1]],[[1,1,2,0],[0,3,3,0],[1,1,3,2],[1,3,2,1]],[[1,1,2,0],[0,3,3,0],[1,1,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,0],[1,1,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,3,0],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,3,0],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,3,0],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,3,0],[1,2,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,3,0],[1,2,4,2],[1,1,2,1]],[[1,1,2,0],[0,3,3,0],[1,2,3,2],[1,1,3,1]],[[1,1,2,0],[0,3,3,0],[1,2,3,2],[1,1,2,2]],[[1,1,2,0],[0,3,3,0],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,0],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,3,0],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,3,0],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[0,4,3,0],[1,3,2,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[0,3,3,0],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[0,3,3,0],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[0,3,3,0],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[0,4,3,0],[1,3,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,0],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,0],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[0,3,3,0],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[0,3,3,0],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[0,4,3,0],[1,3,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[1,4,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[1,3,3,0],[2,2,2,1]],[[1,1,2,0],[0,3,3,0],[1,3,3,0],[1,3,2,1]],[[1,1,2,0],[0,3,3,0],[1,3,3,0],[1,2,3,1]],[[1,1,2,0],[0,4,3,0],[1,3,3,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,0],[1,4,3,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,0],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,0],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[0,3,3,0],[1,3,3,1],[1,1,2,2]],[[1,1,2,0],[0,4,3,0],[1,3,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,0],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,0],[1,3,4,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,0],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[0,3,3,0],[1,3,3,1],[1,3,1,1]],[[1,1,2,0],[0,4,3,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,0],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,0],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[0,4,3,0],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,0],[1,4,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,0],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,0],[1,3,3,2],[1,1,3,0]],[[1,1,2,0],[0,4,3,0],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,0],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,0],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,0],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[0,3,3,0],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[0,4,3,0],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,0],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,0],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,0],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[0,3,3,0],[1,3,3,2],[1,3,1,0]],[[1,1,2,0],[0,3,3,0],[3,0,3,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,0,4,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,0,3,2],[2,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,0,3,2],[1,3,2,1]],[[1,1,2,0],[0,3,3,0],[2,0,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,0],[2,0,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,3,0],[3,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,3,0],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,3,0],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,3,0],[2,1,4,2],[0,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,1,3,2],[0,3,2,1]],[[1,1,2,0],[0,3,3,0],[2,1,3,2],[0,2,3,1]],[[1,1,2,0],[0,3,3,0],[2,1,3,2],[0,2,2,2]],[[1,1,2,0],[0,3,3,0],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,0],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,0],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,3,0],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,3,0],[2,1,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,3,0],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[0,3,3,0],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[0,3,3,0],[2,2,2,1],[1,2,2,2]],[[1,1,2,0],[0,3,3,0],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,0],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[0,3,3,0],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[0,3,3,0],[2,2,2,2],[1,2,3,0]],[[1,1,2,0],[0,3,3,0],[3,2,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,0],[2,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,0],[1,3,2,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,0],[1,2,3,1]],[[1,1,2,0],[0,3,3,0],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,1],[0,2,2,2]],[[1,1,2,0],[0,3,3,0],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,1],[1,3,1,1]],[[1,1,2,0],[0,3,3,0],[2,2,4,2],[0,1,2,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,2],[0,1,3,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,2],[0,1,2,2]],[[1,1,2,0],[0,3,3,0],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,0],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[0,3,3,0],[2,2,3,2],[0,2,3,0]],[[1,1,2,0],[0,3,3,0],[2,2,4,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,2],[1,0,3,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,2],[1,0,2,2]],[[1,1,2,0],[0,3,3,0],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[0,3,3,0],[2,2,3,2],[1,3,0,1]],[[1,1,2,0],[0,3,3,0],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,0],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[0,3,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[2,3,2,1],[2,3,0,1],[1,3,2,0]],[[1,1,2,0],[0,4,3,0],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,0],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[0,3,3,0],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[0,3,3,0],[2,3,2,1],[0,2,2,2]],[[1,1,2,0],[0,4,3,0],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,0],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,0],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,0],[2,3,2,1],[2,1,2,1]],[[1,1,2,0],[0,4,3,0],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,0],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,0],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,0],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[0,3,3,0],[2,3,2,2],[0,2,3,0]],[[1,1,2,0],[0,4,3,0],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,0],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,0],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,3,2,1],[2,3,0,1],[2,2,2,0]],[[1,2,0,1],[2,3,2,1],[3,3,0,1],[1,2,2,0]],[[1,2,0,1],[3,3,2,1],[2,3,0,1],[1,2,2,0]],[[2,2,0,1],[2,3,2,1],[2,3,0,1],[1,2,2,0]],[[1,2,0,1],[2,3,2,1],[2,3,0,0],[1,3,2,1]],[[1,2,0,1],[2,3,2,1],[2,3,0,0],[2,2,2,1]],[[1,2,0,1],[2,3,2,1],[3,3,0,0],[1,2,2,1]],[[1,1,2,0],[0,4,3,0],[2,3,3,0],[0,2,2,1]],[[1,1,2,0],[0,3,3,0],[3,3,3,0],[0,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,4,3,0],[0,2,2,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,0],[0,3,2,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,0],[0,2,3,1]],[[1,1,2,0],[0,4,3,0],[2,3,3,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,0],[3,3,3,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,0],[2,4,3,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,0],[2,1,2,1]],[[1,1,2,0],[0,4,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[0,3,3,0],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[0,3,3,0],[2,4,3,1],[0,1,2,1]],[[1,1,2,0],[0,3,3,0],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,1],[0,1,2,2]],[[1,1,2,0],[0,4,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,3,0],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,3,0],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,3,0],[2,3,4,1],[0,2,1,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,1],[0,3,1,1]],[[1,1,2,0],[0,4,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,3,0],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,3,0],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,3,0],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,1],[2,0,2,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,1],[1,0,2,2]],[[1,1,2,0],[0,4,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,0],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,0],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,0],[2,3,4,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,1],[2,1,1,1]],[[1,1,2,0],[0,4,3,0],[2,3,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,0],[3,3,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,0],[2,4,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[3,3,2,1],[2,3,0,0],[1,2,2,1]],[[2,2,0,1],[2,3,2,1],[2,3,0,0],[1,2,2,1]],[[1,1,2,0],[0,4,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,0],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,0],[2,4,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,0],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[0,4,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,0],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,0],[2,4,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,0],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,0],[2,3,3,2],[0,1,3,0]],[[1,1,2,0],[0,4,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,0],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,0],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,0],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,2],[0,3,0,1]],[[1,1,2,0],[0,4,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,0],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,0],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,0],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,0],[2,3,3,2],[0,3,1,0]],[[1,1,2,0],[0,4,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,0],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,0],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,0],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,2],[2,0,1,1]],[[1,1,2,0],[0,4,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,0],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,0],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,0],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,0],[2,3,3,2],[2,0,2,0]],[[1,1,2,0],[0,3,3,0],[2,3,3,2],[1,0,3,0]],[[1,1,2,0],[0,4,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,0],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,0],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,0],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,0],[2,3,3,2],[2,1,0,1]],[[1,1,2,0],[0,4,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,0],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,0],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,0],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,0],[2,3,3,2],[2,1,1,0]],[[1,1,2,0],[0,4,3,0],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[0,3,3,0],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[0,3,3,0],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[0,3,3,0],[2,3,3,2],[2,2,0,0]],[[1,1,2,0],[0,3,3,1],[1,0,3,3],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,0,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,1],[1,0,3,2],[1,2,2,2]],[[1,1,2,0],[0,3,3,1],[1,1,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,1,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,1,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,3,1],[1,1,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,1],[1,1,2,2],[1,2,2,2]],[[1,1,3,0],[0,3,3,1],[1,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,4,3,1],[1,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,4,1],[1,1,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,1,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,1,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,1,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,3,1],[1,1,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,3,1],[1,1,3,1],[1,2,2,2]],[[1,1,3,0],[0,3,3,1],[1,1,3,2],[1,2,1,1]],[[1,1,2,0],[0,4,3,1],[1,1,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,4,1],[1,1,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,1],[1,1,4,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,1],[1,1,3,3],[1,2,1,1]],[[1,1,2,0],[0,3,3,1],[1,1,3,2],[1,2,1,2]],[[1,1,3,0],[0,3,3,1],[1,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,4,3,1],[1,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,4,1],[1,1,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,1],[1,1,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,1],[1,1,3,3],[1,2,2,0]],[[1,1,2,0],[0,3,3,1],[1,1,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,3,1],[1,1,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,3,1],[1,1,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,3,1],[1,2,2,3],[1,1,2,1]],[[1,1,2,0],[0,3,3,1],[1,2,2,2],[1,1,3,1]],[[1,1,2,0],[0,3,3,1],[1,2,2,2],[1,1,2,2]],[[1,1,3,0],[0,3,3,1],[1,2,3,1],[1,1,2,1]],[[1,1,2,0],[0,4,3,1],[1,2,3,1],[1,1,2,1]],[[1,1,2,0],[0,3,4,1],[1,2,3,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,1],[1,2,4,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,1],[1,2,3,1],[1,1,3,1]],[[1,1,2,0],[0,3,3,1],[1,2,3,1],[1,1,2,2]],[[1,1,3,0],[0,3,3,1],[1,2,3,1],[1,2,1,1]],[[1,1,2,0],[0,4,3,1],[1,2,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,4,1],[1,2,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,1],[1,2,4,1],[1,2,1,1]],[[1,1,3,0],[0,3,3,1],[1,2,3,2],[1,0,2,1]],[[1,1,2,0],[0,3,4,1],[1,2,3,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,1],[1,2,4,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,1],[1,2,3,3],[1,0,2,1]],[[1,1,2,0],[0,3,3,1],[1,2,3,2],[1,0,2,2]],[[1,1,3,0],[0,3,3,1],[1,2,3,2],[1,1,1,1]],[[1,1,2,0],[0,4,3,1],[1,2,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,4,1],[1,2,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,1],[1,2,4,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,1],[1,2,3,3],[1,1,1,1]],[[1,1,2,0],[0,3,3,1],[1,2,3,2],[1,1,1,2]],[[1,1,3,0],[0,3,3,1],[1,2,3,2],[1,1,2,0]],[[1,1,2,0],[0,4,3,1],[1,2,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,4,1],[1,2,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,1],[1,2,4,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,1],[1,2,3,3],[1,1,2,0]],[[1,1,2,0],[0,3,3,1],[1,2,3,2],[1,1,3,0]],[[1,1,3,0],[0,3,3,1],[1,2,3,2],[1,2,0,1]],[[1,1,2,0],[0,4,3,1],[1,2,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,4,1],[1,2,3,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,1],[1,2,4,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,1],[1,2,3,3],[1,2,0,1]],[[1,1,2,0],[0,3,3,1],[1,2,3,2],[1,2,0,2]],[[1,1,3,0],[0,3,3,1],[1,2,3,2],[1,2,1,0]],[[1,1,2,0],[0,4,3,1],[1,2,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,4,1],[1,2,3,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,1],[1,2,4,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,1],[1,2,3,3],[1,2,1,0]],[[1,1,3,0],[0,3,3,1],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[0,4,3,1],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,4,1],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,4,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,3,0,3],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,3,0,2],[2,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,3,0,2],[1,3,2,1]],[[1,1,2,0],[0,3,3,1],[1,3,0,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,1],[1,3,0,2],[1,2,2,2]],[[1,1,3,0],[0,3,3,1],[1,3,1,1],[1,2,2,1]],[[1,1,2,0],[0,4,3,1],[1,3,1,1],[1,2,2,1]],[[1,1,2,0],[0,3,4,1],[1,3,1,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,4,1,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,3,1,1],[2,2,2,1]],[[1,1,2,0],[0,3,3,1],[1,3,1,1],[1,3,2,1]],[[1,1,2,0],[0,3,3,1],[1,3,1,1],[1,2,3,1]],[[1,1,2,0],[0,3,3,1],[1,3,1,1],[1,2,2,2]],[[1,1,3,0],[0,3,3,1],[1,3,1,2],[1,2,2,0]],[[1,1,2,0],[0,4,3,1],[1,3,1,2],[1,2,2,0]],[[1,1,2,0],[0,3,4,1],[1,3,1,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,1],[1,4,1,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,1],[1,3,1,2],[2,2,2,0]],[[1,1,2,0],[0,3,3,1],[1,3,1,2],[1,3,2,0]],[[1,1,2,0],[0,3,3,1],[1,3,1,2],[1,2,3,0]],[[1,1,3,0],[0,3,3,1],[1,3,2,1],[1,1,2,1]],[[1,1,2,0],[0,4,3,1],[1,3,2,1],[1,1,2,1]],[[1,1,2,0],[0,3,4,1],[1,3,2,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,1],[1,4,2,1],[1,1,2,1]],[[1,1,3,0],[0,3,3,1],[1,3,2,1],[1,2,1,1]],[[1,1,2,0],[0,4,3,1],[1,3,2,1],[1,2,1,1]],[[1,1,2,0],[0,3,4,1],[1,3,2,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,1],[1,4,2,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,1],[1,3,2,1],[2,2,1,1]],[[1,1,2,0],[0,3,3,1],[1,3,2,1],[1,3,1,1]],[[1,1,3,0],[0,3,3,1],[1,3,2,2],[1,1,1,1]],[[1,1,2,0],[0,4,3,1],[1,3,2,2],[1,1,1,1]],[[1,1,2,0],[0,3,4,1],[1,3,2,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,1],[1,4,2,2],[1,1,1,1]],[[1,1,3,0],[0,3,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,4,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,4,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,1],[1,4,2,2],[1,1,2,0]],[[1,1,3,0],[0,3,3,1],[1,3,2,2],[1,2,0,1]],[[1,1,2,0],[0,4,3,1],[1,3,2,2],[1,2,0,1]],[[1,1,2,0],[0,3,4,1],[1,3,2,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,1],[1,4,2,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,1],[1,3,2,2],[2,2,0,1]],[[1,1,2,0],[0,3,3,1],[1,3,2,2],[1,3,0,1]],[[1,1,3,0],[0,3,3,1],[1,3,2,2],[1,2,1,0]],[[1,1,2,0],[0,4,3,1],[1,3,2,2],[1,2,1,0]],[[1,1,2,0],[0,3,4,1],[1,3,2,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,1],[1,4,2,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,1],[1,3,2,2],[2,2,1,0]],[[1,1,2,0],[0,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,0,1],[2,3,2,1],[2,2,3,1],[2,2,0,0]],[[1,2,0,1],[2,3,2,1],[3,2,3,1],[1,2,0,0]],[[1,2,0,1],[2,4,2,1],[2,2,3,1],[1,2,0,0]],[[1,2,0,1],[3,3,2,1],[2,2,3,1],[1,2,0,0]],[[2,2,0,1],[2,3,2,1],[2,2,3,1],[1,2,0,0]],[[1,2,0,1],[2,3,2,1],[2,2,3,1],[2,1,1,0]],[[1,2,0,1],[2,3,2,1],[3,2,3,1],[1,1,1,0]],[[1,2,0,1],[2,4,2,1],[2,2,3,1],[1,1,1,0]],[[1,2,0,1],[3,3,2,1],[2,2,3,1],[1,1,1,0]],[[2,2,0,1],[2,3,2,1],[2,2,3,1],[1,1,1,0]],[[1,2,0,1],[2,3,2,1],[2,2,3,1],[2,1,0,1]],[[1,1,3,0],[0,3,3,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,0],[0,4,3,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,0],[0,3,4,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,0],[0,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,2,0,1],[2,3,2,1],[3,2,3,1],[1,1,0,1]],[[1,2,0,1],[2,4,2,1],[2,2,3,1],[1,1,0,1]],[[1,2,0,1],[3,3,2,1],[2,2,3,1],[1,1,0,1]],[[2,2,0,1],[2,3,2,1],[2,2,3,1],[1,1,0,1]],[[1,2,0,1],[2,3,2,1],[2,2,3,1],[2,0,2,0]],[[1,2,0,1],[2,3,2,1],[3,2,3,1],[1,0,2,0]],[[1,2,0,1],[2,4,2,1],[2,2,3,1],[1,0,2,0]],[[1,2,0,1],[3,3,2,1],[2,2,3,1],[1,0,2,0]],[[2,2,0,1],[2,3,2,1],[2,2,3,1],[1,0,2,0]],[[1,2,0,1],[2,3,2,1],[3,2,3,1],[1,0,1,1]],[[1,2,0,1],[2,4,2,1],[2,2,3,1],[1,0,1,1]],[[1,2,0,1],[3,3,2,1],[2,2,3,1],[1,0,1,1]],[[2,2,0,1],[2,3,2,1],[2,2,3,1],[1,0,1,1]],[[1,1,2,0],[0,3,3,1],[3,0,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,0,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,0,2,2],[2,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,0,2,2],[1,3,2,1]],[[1,1,2,0],[0,3,3,1],[2,0,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,1],[2,0,2,2],[1,2,2,2]],[[1,1,3,0],[0,3,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[0,4,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,4,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[3,0,3,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,0,4,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,0,3,1],[2,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,0,3,1],[1,3,2,1]],[[1,1,2,0],[0,3,3,1],[2,0,3,1],[1,2,3,1]],[[1,1,2,0],[0,3,3,1],[2,0,3,1],[1,2,2,2]],[[1,1,2,0],[0,3,3,1],[2,0,3,3],[0,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,0,3,2],[0,2,3,1]],[[1,1,2,0],[0,3,3,1],[2,0,3,2],[0,2,2,2]],[[1,1,3,0],[0,3,3,1],[2,0,3,2],[1,2,1,1]],[[1,1,2,0],[0,4,3,1],[2,0,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,4,1],[2,0,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,1],[2,0,4,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,1],[2,0,3,3],[1,2,1,1]],[[1,1,2,0],[0,3,3,1],[2,0,3,2],[1,2,1,2]],[[1,1,3,0],[0,3,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[0,4,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,4,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,1],[3,0,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,0,4,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,0,3,3],[1,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,0,3,2],[2,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,0,3,2],[1,3,2,0]],[[1,1,2,0],[0,3,3,1],[2,0,3,2],[1,2,3,0]],[[1,1,2,0],[0,3,3,1],[2,1,2,3],[0,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,1,2,2],[0,3,2,1]],[[1,1,2,0],[0,3,3,1],[2,1,2,2],[0,2,3,1]],[[1,1,2,0],[0,3,3,1],[2,1,2,2],[0,2,2,2]],[[1,1,3,0],[0,3,3,1],[2,1,3,1],[0,2,2,1]],[[1,1,2,0],[0,4,3,1],[2,1,3,1],[0,2,2,1]],[[1,1,2,0],[0,3,4,1],[2,1,3,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,1,4,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,1,3,1],[0,3,2,1]],[[1,1,2,0],[0,3,3,1],[2,1,3,1],[0,2,3,1]],[[1,1,2,0],[0,3,3,1],[2,1,3,1],[0,2,2,2]],[[1,1,3,0],[0,3,3,1],[2,1,3,2],[0,2,1,1]],[[1,1,2,0],[0,4,3,1],[2,1,3,2],[0,2,1,1]],[[1,1,2,0],[0,3,4,1],[2,1,3,2],[0,2,1,1]],[[1,1,2,0],[0,3,3,1],[2,1,4,2],[0,2,1,1]],[[1,1,2,0],[0,3,3,1],[2,1,3,3],[0,2,1,1]],[[1,1,2,0],[0,3,3,1],[2,1,3,2],[0,2,1,2]],[[1,1,3,0],[0,3,3,1],[2,1,3,2],[0,2,2,0]],[[1,1,2,0],[0,4,3,1],[2,1,3,2],[0,2,2,0]],[[1,1,2,0],[0,3,4,1],[2,1,3,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,1,4,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,1,3,3],[0,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,1,3,2],[0,3,2,0]],[[1,1,2,0],[0,3,3,1],[2,1,3,2],[0,2,3,0]],[[1,2,0,1],[2,3,2,1],[3,2,3,1],[0,2,1,0]],[[1,2,0,1],[2,4,2,1],[2,2,3,1],[0,2,1,0]],[[1,2,0,1],[3,3,2,1],[2,2,3,1],[0,2,1,0]],[[2,2,0,1],[2,3,2,1],[2,2,3,1],[0,2,1,0]],[[1,2,0,1],[2,3,2,1],[3,2,3,1],[0,2,0,1]],[[1,2,0,1],[2,4,2,1],[2,2,3,1],[0,2,0,1]],[[1,2,0,1],[3,3,2,1],[2,2,3,1],[0,2,0,1]],[[2,2,0,1],[2,3,2,1],[2,2,3,1],[0,2,0,1]],[[1,1,2,0],[0,3,3,1],[3,2,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,0,3],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,0,2],[2,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,0,2],[1,3,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,0,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,1],[2,2,0,2],[1,2,2,2]],[[1,1,2,0],[0,3,3,1],[3,2,1,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,1,1],[2,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,1,1],[1,3,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,1,1],[1,2,3,1]],[[1,1,2,0],[0,3,3,1],[2,2,1,1],[1,2,2,2]],[[1,1,2,0],[0,3,3,1],[3,2,1,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,2,1,2],[2,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,2,1,2],[1,3,2,0]],[[1,1,2,0],[0,3,3,1],[2,2,1,2],[1,2,3,0]],[[1,1,2,0],[0,3,3,1],[3,2,2,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,1],[2,2,2,1],[2,2,1,1]],[[1,1,2,0],[0,3,3,1],[2,2,2,1],[1,3,1,1]],[[1,1,2,0],[0,3,3,1],[2,2,2,3],[0,1,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,2,2],[0,1,3,1]],[[1,1,2,0],[0,3,3,1],[2,2,2,2],[0,1,2,2]],[[1,1,2,0],[0,3,3,1],[2,2,2,3],[1,0,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,2,2],[1,0,3,1]],[[1,1,2,0],[0,3,3,1],[2,2,2,2],[1,0,2,2]],[[1,1,2,0],[0,3,3,1],[3,2,2,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,1],[2,2,2,2],[2,2,0,1]],[[1,1,2,0],[0,3,3,1],[2,2,2,2],[1,3,0,1]],[[1,1,2,0],[0,3,3,1],[3,2,2,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,1],[2,2,2,2],[2,2,1,0]],[[1,1,2,0],[0,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,0,1],[2,3,2,1],[3,2,3,1],[0,1,2,0]],[[1,2,0,1],[2,4,2,1],[2,2,3,1],[0,1,2,0]],[[1,2,0,1],[3,3,2,1],[2,2,3,1],[0,1,2,0]],[[1,1,3,0],[0,3,3,1],[2,2,3,1],[0,1,2,1]],[[1,1,2,0],[0,4,3,1],[2,2,3,1],[0,1,2,1]],[[1,1,2,0],[0,3,4,1],[2,2,3,1],[0,1,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,4,1],[0,1,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,1],[0,1,3,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,1],[0,1,2,2]],[[1,1,3,0],[0,3,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[0,4,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,4,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,3,1],[2,2,4,1],[0,2,1,1]],[[1,1,3,0],[0,3,3,1],[2,2,3,1],[1,0,2,1]],[[1,1,2,0],[0,4,3,1],[2,2,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,4,1],[2,2,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,4,1],[1,0,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,1],[1,0,3,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,1],[1,0,2,2]],[[1,1,3,0],[0,3,3,1],[2,2,3,1],[1,1,1,1]],[[1,1,2,0],[0,4,3,1],[2,2,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,4,1],[2,2,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,1],[2,2,4,1],[1,1,1,1]],[[2,2,0,1],[2,3,2,1],[2,2,3,1],[0,1,2,0]],[[1,2,0,1],[2,4,2,1],[2,2,3,1],[0,1,1,1]],[[1,2,0,1],[3,3,2,1],[2,2,3,1],[0,1,1,1]],[[2,2,0,1],[2,3,2,1],[2,2,3,1],[0,1,1,1]],[[1,1,3,0],[0,3,3,1],[2,2,3,2],[0,0,2,1]],[[1,1,2,0],[0,4,3,1],[2,2,3,2],[0,0,2,1]],[[1,1,2,0],[0,3,4,1],[2,2,3,2],[0,0,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,4,2],[0,0,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,3],[0,0,2,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,2],[0,0,2,2]],[[1,1,3,0],[0,3,3,1],[2,2,3,2],[0,1,1,1]],[[1,1,2,0],[0,4,3,1],[2,2,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,4,1],[2,2,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,1],[2,2,4,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,3],[0,1,1,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,2],[0,1,1,2]],[[1,1,3,0],[0,3,3,1],[2,2,3,2],[0,1,2,0]],[[1,1,2,0],[0,4,3,1],[2,2,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,4,1],[2,2,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,1],[2,2,4,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,1],[2,2,3,3],[0,1,2,0]],[[1,1,2,0],[0,3,3,1],[2,2,3,2],[0,1,3,0]],[[1,1,3,0],[0,3,3,1],[2,2,3,2],[0,2,0,1]],[[1,1,2,0],[0,4,3,1],[2,2,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,4,1],[2,2,3,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,1],[2,2,4,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,3],[0,2,0,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,2],[0,2,0,2]],[[1,1,3,0],[0,3,3,1],[2,2,3,2],[0,2,1,0]],[[1,1,2,0],[0,4,3,1],[2,2,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,4,1],[2,2,3,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,1],[2,2,4,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,1],[2,2,3,3],[0,2,1,0]],[[1,2,0,1],[2,3,2,1],[2,2,3,0],[2,2,0,1]],[[1,2,0,1],[2,3,2,1],[3,2,3,0],[1,2,0,1]],[[1,2,0,1],[2,4,2,1],[2,2,3,0],[1,2,0,1]],[[1,2,0,1],[3,3,2,1],[2,2,3,0],[1,2,0,1]],[[2,2,0,1],[2,3,2,1],[2,2,3,0],[1,2,0,1]],[[1,1,3,0],[0,3,3,1],[2,2,3,2],[1,0,1,1]],[[1,1,2,0],[0,4,3,1],[2,2,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,4,1],[2,2,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,1],[2,2,4,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,3],[1,0,1,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,2],[1,0,1,2]],[[1,1,3,0],[0,3,3,1],[2,2,3,2],[1,0,2,0]],[[1,1,2,0],[0,4,3,1],[2,2,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,4,1],[2,2,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,1],[2,2,4,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,1],[2,2,3,3],[1,0,2,0]],[[1,1,2,0],[0,3,3,1],[2,2,3,2],[1,0,3,0]],[[1,1,3,0],[0,3,3,1],[2,2,3,2],[1,1,0,1]],[[1,1,2,0],[0,4,3,1],[2,2,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,4,1],[2,2,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,1],[2,2,4,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,3],[1,1,0,1]],[[1,1,2,0],[0,3,3,1],[2,2,3,2],[1,1,0,2]],[[1,1,3,0],[0,3,3,1],[2,2,3,2],[1,1,1,0]],[[1,1,2,0],[0,4,3,1],[2,2,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,4,1],[2,2,3,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,1],[2,2,4,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,0,1],[2,3,2,1],[2,2,3,0],[2,1,1,1]],[[1,2,0,1],[2,3,2,1],[3,2,3,0],[1,1,1,1]],[[1,2,0,1],[2,4,2,1],[2,2,3,0],[1,1,1,1]],[[1,2,0,1],[3,3,2,1],[2,2,3,0],[1,1,1,1]],[[2,2,0,1],[2,3,2,1],[2,2,3,0],[1,1,1,1]],[[1,2,0,1],[2,3,2,1],[2,2,3,0],[2,0,2,1]],[[1,2,0,1],[2,3,2,1],[3,2,3,0],[1,0,2,1]],[[1,2,0,1],[2,4,2,1],[2,2,3,0],[1,0,2,1]],[[1,2,0,1],[3,3,2,1],[2,2,3,0],[1,0,2,1]],[[2,2,0,1],[2,3,2,1],[2,2,3,0],[1,0,2,1]],[[1,2,0,1],[2,3,2,1],[3,2,3,0],[0,2,1,1]],[[1,2,0,1],[2,4,2,1],[2,2,3,0],[0,2,1,1]],[[1,2,0,1],[3,3,2,1],[2,2,3,0],[0,2,1,1]],[[2,2,0,1],[2,3,2,1],[2,2,3,0],[0,2,1,1]],[[1,2,0,1],[2,3,2,1],[3,2,3,0],[0,1,2,1]],[[1,2,0,1],[2,4,2,1],[2,2,3,0],[0,1,2,1]],[[1,2,0,1],[3,3,2,1],[2,2,3,0],[0,1,2,1]],[[2,2,0,1],[2,3,2,1],[2,2,3,0],[0,1,2,1]],[[1,1,2,0],[0,3,3,1],[3,3,0,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,3,0,1],[2,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,3,0,1],[1,3,2,1]],[[1,1,3,0],[0,3,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,4,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,3,4,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,3,3,1],[3,3,0,2],[0,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,4,0,2],[0,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,3,0,3],[0,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,3,0,2],[0,3,2,1]],[[1,1,2,0],[0,3,3,1],[2,3,0,2],[0,2,3,1]],[[1,1,2,0],[0,3,3,1],[2,3,0,2],[0,2,2,2]],[[1,1,3,0],[0,3,3,1],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[0,4,3,1],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[0,3,4,1],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[0,3,3,1],[3,3,0,2],[1,1,2,1]],[[1,1,2,0],[0,3,3,1],[2,4,0,2],[1,1,2,1]],[[1,1,2,0],[0,3,3,1],[2,3,0,2],[2,1,2,1]],[[1,1,2,0],[0,3,3,1],[3,3,0,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,3,0,2],[2,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,3,0,2],[1,3,2,0]],[[1,1,3,0],[0,3,3,1],[2,3,1,1],[0,2,2,1]],[[1,1,2,0],[0,4,3,1],[2,3,1,1],[0,2,2,1]],[[1,1,2,0],[0,3,4,1],[2,3,1,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,1],[3,3,1,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,4,1,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,1],[2,3,1,1],[0,3,2,1]],[[1,1,2,0],[0,3,3,1],[2,3,1,1],[0,2,3,1]],[[1,1,2,0],[0,3,3,1],[2,3,1,1],[0,2,2,2]],[[1,1,3,0],[0,3,3,1],[2,3,1,1],[1,1,2,1]],[[1,1,2,0],[0,4,3,1],[2,3,1,1],[1,1,2,1]],[[1,1,2,0],[0,3,4,1],[2,3,1,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,1],[3,3,1,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,1],[2,4,1,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,1],[2,3,1,1],[2,1,2,1]],[[1,1,3,0],[0,3,3,1],[2,3,1,2],[0,2,2,0]],[[1,1,2,0],[0,4,3,1],[2,3,1,2],[0,2,2,0]],[[1,1,2,0],[0,3,4,1],[2,3,1,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,1],[3,3,1,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,4,1,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,1],[2,3,1,2],[0,3,2,0]],[[1,1,2,0],[0,3,3,1],[2,3,1,2],[0,2,3,0]],[[1,1,3,0],[0,3,3,1],[2,3,1,2],[1,1,2,0]],[[1,1,2,0],[0,4,3,1],[2,3,1,2],[1,1,2,0]],[[1,1,2,0],[0,3,4,1],[2,3,1,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,1],[3,3,1,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,1],[2,4,1,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,1,3,0],[0,3,3,1],[2,3,2,1],[0,1,2,1]],[[1,1,2,0],[0,4,3,1],[2,3,2,1],[0,1,2,1]],[[1,1,2,0],[0,3,4,1],[2,3,2,1],[0,1,2,1]],[[1,1,2,0],[0,3,3,1],[3,3,2,1],[0,1,2,1]],[[1,1,2,0],[0,3,3,1],[2,4,2,1],[0,1,2,1]],[[1,1,3,0],[0,3,3,1],[2,3,2,1],[0,2,1,1]],[[1,1,2,0],[0,4,3,1],[2,3,2,1],[0,2,1,1]],[[1,1,2,0],[0,3,4,1],[2,3,2,1],[0,2,1,1]],[[1,1,2,0],[0,3,3,1],[3,3,2,1],[0,2,1,1]],[[1,1,2,0],[0,3,3,1],[2,4,2,1],[0,2,1,1]],[[1,1,2,0],[0,3,3,1],[2,3,2,1],[0,3,1,1]],[[1,1,3,0],[0,3,3,1],[2,3,2,1],[1,0,2,1]],[[1,1,2,0],[0,4,3,1],[2,3,2,1],[1,0,2,1]],[[1,1,2,0],[0,3,4,1],[2,3,2,1],[1,0,2,1]],[[1,1,2,0],[0,3,3,1],[3,3,2,1],[1,0,2,1]],[[1,1,2,0],[0,3,3,1],[2,4,2,1],[1,0,2,1]],[[1,1,2,0],[0,3,3,1],[2,3,2,1],[2,0,2,1]],[[1,1,3,0],[0,3,3,1],[2,3,2,1],[1,1,1,1]],[[1,1,2,0],[0,4,3,1],[2,3,2,1],[1,1,1,1]],[[1,1,2,0],[0,3,4,1],[2,3,2,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,1],[3,3,2,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,1],[2,4,2,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,1],[2,3,2,1],[2,1,1,1]],[[1,1,2,0],[0,4,3,1],[2,3,2,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,1],[3,3,2,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,1],[2,4,2,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,2,0,1],[2,3,2,1],[2,2,2,1],[2,1,2,0]],[[1,2,0,1],[2,3,2,1],[3,2,2,1],[1,1,2,0]],[[1,2,0,1],[2,4,2,1],[2,2,2,1],[1,1,2,0]],[[1,2,0,1],[3,3,2,1],[2,2,2,1],[1,1,2,0]],[[2,2,0,1],[2,3,2,1],[2,2,2,1],[1,1,2,0]],[[1,1,3,0],[0,3,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[0,4,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[0,3,4,1],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,1],[3,3,2,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,1],[2,4,2,2],[0,1,1,1]],[[1,1,3,0],[0,3,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[0,4,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[0,3,4,1],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,1],[3,3,2,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,1],[2,4,2,2],[0,1,2,0]],[[1,1,3,0],[0,3,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[0,4,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[0,3,4,1],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,1],[3,3,2,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,1],[2,4,2,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,1],[2,3,2,2],[0,3,0,1]],[[1,1,3,0],[0,3,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[0,4,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[0,3,4,1],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,1],[3,3,2,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,1],[2,4,2,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,0,1],[2,3,2,1],[3,2,2,1],[0,2,2,0]],[[1,2,0,1],[2,4,2,1],[2,2,2,1],[0,2,2,0]],[[1,2,0,1],[3,3,2,1],[2,2,2,1],[0,2,2,0]],[[2,2,0,1],[2,3,2,1],[2,2,2,1],[0,2,2,0]],[[1,1,3,0],[0,3,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[0,4,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[0,3,4,1],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,1],[3,3,2,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,1],[2,4,2,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,1],[2,3,2,2],[2,0,1,1]],[[1,1,3,0],[0,3,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[0,4,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[0,3,4,1],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,1],[3,3,2,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,1],[2,4,2,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,1],[2,3,2,2],[2,0,2,0]],[[1,1,3,0],[0,3,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[0,4,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[0,3,4,1],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,1],[3,3,2,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,1],[2,4,2,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,1],[2,3,2,2],[2,1,0,1]],[[1,1,3,0],[0,3,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[0,4,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[0,3,4,1],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,1],[3,3,2,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,1],[2,4,2,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,0,1],[2,3,2,1],[2,2,2,0],[2,1,2,1]],[[1,2,0,1],[2,3,2,1],[3,2,2,0],[1,1,2,1]],[[1,2,0,1],[2,4,2,1],[2,2,2,0],[1,1,2,1]],[[1,1,3,0],[0,3,3,1],[2,3,2,2],[1,2,0,0]],[[1,1,2,0],[0,4,3,1],[2,3,2,2],[1,2,0,0]],[[1,1,2,0],[0,3,4,1],[2,3,2,2],[1,2,0,0]],[[1,1,2,0],[0,3,3,1],[3,3,2,2],[1,2,0,0]],[[1,1,2,0],[0,3,3,1],[2,4,2,2],[1,2,0,0]],[[1,1,2,0],[0,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,0,1],[3,3,2,1],[2,2,2,0],[1,1,2,1]],[[2,2,0,1],[2,3,2,1],[2,2,2,0],[1,1,2,1]],[[1,2,0,1],[2,3,2,1],[3,2,2,0],[0,2,2,1]],[[1,2,0,1],[2,4,2,1],[2,2,2,0],[0,2,2,1]],[[1,2,0,1],[3,3,2,1],[2,2,2,0],[0,2,2,1]],[[2,2,0,1],[2,3,2,1],[2,2,2,0],[0,2,2,1]],[[1,1,3,0],[0,3,3,1],[2,3,3,1],[0,0,2,1]],[[1,1,2,0],[0,4,3,1],[2,3,3,1],[0,0,2,1]],[[1,1,2,0],[0,3,4,1],[2,3,3,1],[0,0,2,1]],[[1,1,2,0],[0,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,0,1],[2,3,2,1],[2,1,3,1],[1,3,1,0]],[[1,2,0,1],[2,3,2,1],[2,1,3,1],[2,2,1,0]],[[1,2,0,1],[2,3,2,1],[3,1,3,1],[1,2,1,0]],[[1,2,0,1],[2,4,2,1],[2,1,3,1],[1,2,1,0]],[[1,2,0,1],[3,3,2,1],[2,1,3,1],[1,2,1,0]],[[2,2,0,1],[2,3,2,1],[2,1,3,1],[1,2,1,0]],[[1,2,0,1],[2,3,2,1],[2,1,3,1],[2,2,0,1]],[[1,2,0,1],[2,3,2,1],[3,1,3,1],[1,2,0,1]],[[1,2,0,1],[2,4,2,1],[2,1,3,1],[1,2,0,1]],[[1,2,0,1],[3,3,2,1],[2,1,3,1],[1,2,0,1]],[[2,2,0,1],[2,3,2,1],[2,1,3,1],[1,2,0,1]],[[1,2,0,1],[2,3,2,1],[2,1,3,0],[1,3,1,1]],[[1,2,0,1],[2,3,2,1],[2,1,3,0],[2,2,1,1]],[[1,2,0,1],[2,3,2,1],[3,1,3,0],[1,2,1,1]],[[1,2,0,1],[2,4,2,1],[2,1,3,0],[1,2,1,1]],[[1,2,0,1],[3,3,2,1],[2,1,3,0],[1,2,1,1]],[[1,1,3,0],[0,3,3,1],[2,3,3,2],[0,0,1,1]],[[1,1,2,0],[0,4,3,1],[2,3,3,2],[0,0,1,1]],[[1,1,2,0],[0,3,4,1],[2,3,3,2],[0,0,1,1]],[[1,1,2,0],[0,3,3,1],[2,3,4,2],[0,0,1,1]],[[1,1,2,0],[0,3,3,1],[2,3,3,3],[0,0,1,1]],[[1,1,2,0],[0,3,3,1],[2,3,3,2],[0,0,1,2]],[[1,1,3,0],[0,3,3,1],[2,3,3,2],[0,0,2,0]],[[1,1,2,0],[0,4,3,1],[2,3,3,2],[0,0,2,0]],[[1,1,2,0],[0,3,4,1],[2,3,3,2],[0,0,2,0]],[[1,1,2,0],[0,3,3,1],[2,3,4,2],[0,0,2,0]],[[1,1,2,0],[0,3,3,1],[2,3,3,3],[0,0,2,0]],[[2,2,0,1],[2,3,2,1],[2,1,3,0],[1,2,1,1]],[[1,1,3,0],[0,3,3,1],[2,3,3,2],[0,2,0,0]],[[1,1,2,0],[0,4,3,1],[2,3,3,2],[0,2,0,0]],[[1,1,2,0],[0,3,4,1],[2,3,3,2],[0,2,0,0]],[[1,1,2,0],[0,3,3,1],[3,3,3,2],[0,2,0,0]],[[1,1,2,0],[0,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,0,1],[2,3,2,1],[2,1,2,1],[1,3,2,0]],[[1,2,0,1],[2,3,2,1],[2,1,2,1],[2,2,2,0]],[[1,2,0,1],[2,3,2,1],[3,1,2,1],[1,2,2,0]],[[1,2,0,1],[2,4,2,1],[2,1,2,1],[1,2,2,0]],[[1,2,0,1],[3,3,2,1],[2,1,2,1],[1,2,2,0]],[[2,2,0,1],[2,3,2,1],[2,1,2,1],[1,2,2,0]],[[1,2,0,1],[2,3,2,1],[2,1,2,0],[1,2,3,1]],[[1,2,0,1],[2,3,2,1],[2,1,2,0],[1,3,2,1]],[[1,2,0,1],[2,3,2,1],[2,1,2,0],[2,2,2,1]],[[1,2,0,1],[2,3,2,1],[3,1,2,0],[1,2,2,1]],[[1,2,0,1],[2,4,2,1],[2,1,2,0],[1,2,2,1]],[[1,2,0,1],[3,3,2,1],[2,1,2,0],[1,2,2,1]],[[2,2,0,1],[2,3,2,1],[2,1,2,0],[1,2,2,1]],[[1,1,3,0],[0,3,3,1],[2,3,3,2],[1,1,0,0]],[[1,1,2,0],[0,4,3,1],[2,3,3,2],[1,1,0,0]],[[1,1,2,0],[0,3,4,1],[2,3,3,2],[1,1,0,0]],[[1,1,2,0],[0,3,3,1],[3,3,3,2],[1,1,0,0]],[[1,1,2,0],[0,3,3,1],[2,4,3,2],[1,1,0,0]],[[1,1,2,0],[0,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,0,1],[2,3,2,1],[2,0,3,1],[1,3,2,0]],[[1,2,0,1],[2,3,2,1],[2,0,3,1],[2,2,2,0]],[[1,2,0,1],[2,3,2,1],[3,0,3,1],[1,2,2,0]],[[1,2,0,1],[2,4,2,1],[2,0,3,1],[1,2,2,0]],[[1,2,0,1],[3,3,2,1],[2,0,3,1],[1,2,2,0]],[[2,2,0,1],[2,3,2,1],[2,0,3,1],[1,2,2,0]],[[1,2,0,1],[2,3,2,1],[2,0,3,0],[1,2,3,1]],[[1,2,0,1],[2,3,2,1],[2,0,3,0],[1,3,2,1]],[[1,2,0,1],[2,3,2,1],[2,0,3,0],[2,2,2,1]],[[1,2,0,1],[2,3,2,1],[3,0,3,0],[1,2,2,1]],[[1,2,0,1],[2,4,2,1],[2,0,3,0],[1,2,2,1]],[[1,2,0,1],[3,3,2,1],[2,0,3,0],[1,2,2,1]],[[2,2,0,1],[2,3,2,1],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,3],[0,0,3,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[0,0,3,3],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[0,0,3,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[0,0,3,2],[1,2,2,2]],[[1,1,3,0],[0,3,3,2],[1,0,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,4,2],[1,0,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,3],[1,0,2,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,0,2,3],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,0,2,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[1,0,2,2],[1,2,2,2]],[[1,1,3,0],[0,3,3,2],[1,0,3,2],[1,1,2,1]],[[1,1,2,0],[0,3,4,2],[1,0,3,2],[1,1,2,1]],[[1,1,2,0],[0,3,3,3],[1,0,3,2],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[1,0,3,3],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[1,0,3,2],[1,1,2,2]],[[1,1,3,0],[0,3,3,2],[1,0,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,4,2],[1,0,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,3],[1,0,3,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,0,3,3],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,0,3,2],[1,2,1,2]],[[1,1,3,0],[0,3,3,2],[1,0,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,4,2],[1,0,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,3],[1,0,3,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,0,3,3],[1,2,2,0]],[[1,1,3,0],[0,3,3,2],[1,1,1,2],[1,2,2,1]],[[1,1,2,0],[0,4,3,2],[1,1,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,4,2],[1,1,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,3],[1,1,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,1,1,3],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,1,1,2],[2,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,1,1,2],[1,3,2,1]],[[1,1,2,0],[0,3,3,2],[1,1,1,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[1,1,1,2],[1,2,2,2]],[[1,1,3,0],[0,3,3,2],[1,1,2,2],[1,2,1,1]],[[1,1,2,0],[0,4,3,2],[1,1,2,2],[1,2,1,1]],[[1,1,2,0],[0,3,4,2],[1,1,2,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,3],[1,1,2,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,1,2,3],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,1,2,2],[1,2,1,2]],[[1,1,3,0],[0,3,3,2],[1,1,2,2],[1,2,2,0]],[[1,1,2,0],[0,4,3,2],[1,1,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,4,2],[1,1,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,3],[1,1,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,1,2,3],[1,2,2,0]],[[1,1,3,0],[0,3,3,2],[1,1,3,0],[1,2,2,1]],[[1,1,2,0],[0,4,3,2],[1,1,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,4,2],[1,1,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,3],[1,1,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,1,4,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,1,3,0],[2,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,1,3,0],[1,3,2,1]],[[1,1,2,0],[0,3,3,2],[1,1,3,0],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[1,1,3,0],[1,2,2,2]],[[1,1,3,0],[0,3,3,2],[1,1,3,1],[1,2,1,1]],[[1,1,2,0],[0,4,3,2],[1,1,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,4,2],[1,1,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,3],[1,1,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,1,4,1],[1,2,1,1]],[[1,1,3,0],[0,3,3,2],[1,1,3,1],[1,2,2,0]],[[1,1,2,0],[0,4,3,2],[1,1,3,1],[1,2,2,0]],[[1,1,2,0],[0,3,4,2],[1,1,3,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,3],[1,1,3,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,1,4,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,1,3,1],[2,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,1,3,1],[1,3,2,0]],[[1,1,2,0],[0,3,3,2],[1,1,3,1],[1,2,3,0]],[[1,1,3,0],[0,3,3,2],[1,1,3,2],[1,0,2,1]],[[1,1,2,0],[0,3,4,2],[1,1,3,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,3],[1,1,3,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[1,1,3,3],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[1,1,3,2],[1,0,2,2]],[[1,1,3,0],[0,3,3,2],[1,1,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,4,2],[1,1,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,3],[1,1,3,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[1,1,3,3],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[1,1,3,2],[1,1,1,2]],[[1,1,3,0],[0,3,3,2],[1,1,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,4,2],[1,1,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,3],[1,1,3,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[1,1,3,3],[1,1,2,0]],[[1,2,0,1],[2,3,2,1],[1,4,3,1],[1,2,0,0]],[[1,2,0,1],[2,4,2,1],[1,3,3,1],[1,2,0,0]],[[1,2,0,1],[3,3,2,1],[1,3,3,1],[1,2,0,0]],[[2,2,0,1],[2,3,2,1],[1,3,3,1],[1,2,0,0]],[[1,1,3,0],[0,3,3,2],[1,2,0,2],[1,2,2,1]],[[1,1,2,0],[0,4,3,2],[1,2,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,4,2],[1,2,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,3],[1,2,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,2,0,3],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,2,0,2],[2,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,2,0,2],[1,3,2,1]],[[1,1,2,0],[0,3,3,2],[1,2,0,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[1,2,0,2],[1,2,2,2]],[[1,1,3,0],[0,3,3,2],[1,2,1,2],[1,1,2,1]],[[1,1,2,0],[0,4,3,2],[1,2,1,2],[1,1,2,1]],[[1,1,2,0],[0,3,4,2],[1,2,1,2],[1,1,2,1]],[[1,1,2,0],[0,3,3,3],[1,2,1,2],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[1,2,1,3],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[1,2,1,2],[1,1,3,1]],[[1,1,2,0],[0,3,3,2],[1,2,1,2],[1,1,2,2]],[[1,1,3,0],[0,3,3,2],[1,2,2,2],[1,0,2,1]],[[1,1,2,0],[0,3,4,2],[1,2,2,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,3],[1,2,2,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[1,2,2,3],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[1,2,2,2],[1,0,2,2]],[[1,1,3,0],[0,3,3,2],[1,2,2,2],[1,1,1,1]],[[1,1,2,0],[0,4,3,2],[1,2,2,2],[1,1,1,1]],[[1,1,2,0],[0,3,4,2],[1,2,2,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,3],[1,2,2,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[1,2,2,3],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[1,2,2,2],[1,1,1,2]],[[1,1,3,0],[0,3,3,2],[1,2,2,2],[1,1,2,0]],[[1,1,2,0],[0,4,3,2],[1,2,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,4,2],[1,2,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,3],[1,2,2,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[1,2,2,3],[1,1,2,0]],[[1,1,3,0],[0,3,3,2],[1,2,2,2],[1,2,0,1]],[[1,1,2,0],[0,4,3,2],[1,2,2,2],[1,2,0,1]],[[1,1,2,0],[0,3,4,2],[1,2,2,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,3],[1,2,2,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[1,2,2,3],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[1,2,2,2],[1,2,0,2]],[[1,1,3,0],[0,3,3,2],[1,2,2,2],[1,2,1,0]],[[1,1,2,0],[0,4,3,2],[1,2,2,2],[1,2,1,0]],[[1,1,2,0],[0,3,4,2],[1,2,2,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,3],[1,2,2,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,2,2,3],[1,2,1,0]],[[1,1,3,0],[0,3,3,2],[1,2,3,0],[1,1,2,1]],[[1,1,2,0],[0,4,3,2],[1,2,3,0],[1,1,2,1]],[[1,1,2,0],[0,3,4,2],[1,2,3,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,3],[1,2,3,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[1,2,4,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[1,2,3,0],[1,1,3,1]],[[1,1,2,0],[0,3,3,2],[1,2,3,0],[1,1,2,2]],[[1,1,3,0],[0,3,3,2],[1,2,3,0],[1,2,1,1]],[[1,1,2,0],[0,4,3,2],[1,2,3,0],[1,2,1,1]],[[1,1,2,0],[0,3,4,2],[1,2,3,0],[1,2,1,1]],[[1,1,2,0],[0,3,3,3],[1,2,3,0],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,2,4,0],[1,2,1,1]],[[1,1,3,0],[0,3,3,2],[1,2,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,4,2],[1,2,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,3,3],[1,2,3,1],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[1,2,4,1],[1,0,2,1]],[[1,1,3,0],[0,3,3,2],[1,2,3,1],[1,1,1,1]],[[1,1,2,0],[0,4,3,2],[1,2,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,4,2],[1,2,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,3],[1,2,3,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[1,2,4,1],[1,1,1,1]],[[1,1,3,0],[0,3,3,2],[1,2,3,1],[1,1,2,0]],[[1,1,2,0],[0,4,3,2],[1,2,3,1],[1,1,2,0]],[[1,1,2,0],[0,3,4,2],[1,2,3,1],[1,1,2,0]],[[1,1,2,0],[0,3,3,3],[1,2,3,1],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[1,2,4,1],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[1,2,3,1],[1,1,3,0]],[[1,1,3,0],[0,3,3,2],[1,2,3,1],[1,2,0,1]],[[1,1,2,0],[0,4,3,2],[1,2,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,4,2],[1,2,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,3],[1,2,3,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[1,2,4,1],[1,2,0,1]],[[1,1,3,0],[0,3,3,2],[1,2,3,1],[1,2,1,0]],[[1,1,2,0],[0,4,3,2],[1,2,3,1],[1,2,1,0]],[[1,1,2,0],[0,3,4,2],[1,2,3,1],[1,2,1,0]],[[1,1,2,0],[0,3,3,3],[1,2,3,1],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,0,1],[2,3,2,1],[1,4,3,1],[1,1,1,0]],[[1,2,0,1],[2,4,2,1],[1,3,3,1],[1,1,1,0]],[[1,2,0,1],[3,3,2,1],[1,3,3,1],[1,1,1,0]],[[2,2,0,1],[2,3,2,1],[1,3,3,1],[1,1,1,0]],[[1,2,0,1],[2,3,2,1],[1,4,3,1],[1,1,0,1]],[[1,2,0,1],[2,4,2,1],[1,3,3,1],[1,1,0,1]],[[1,2,0,1],[3,3,2,1],[1,3,3,1],[1,1,0,1]],[[2,2,0,1],[2,3,2,1],[1,3,3,1],[1,1,0,1]],[[1,1,3,0],[0,3,3,2],[1,2,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,4,2],[1,2,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,3],[1,2,3,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,0,1],[2,3,2,1],[1,4,3,1],[1,0,2,0]],[[1,2,0,1],[2,4,2,1],[1,3,3,1],[1,0,2,0]],[[1,2,0,1],[3,3,2,1],[1,3,3,1],[1,0,2,0]],[[2,2,0,1],[2,3,2,1],[1,3,3,1],[1,0,2,0]],[[1,2,0,1],[2,4,2,1],[1,3,3,1],[1,0,1,1]],[[1,2,0,1],[3,3,2,1],[1,3,3,1],[1,0,1,1]],[[2,2,0,1],[2,3,2,1],[1,3,3,1],[1,0,1,1]],[[1,2,0,1],[2,3,2,1],[1,3,3,1],[0,3,1,0]],[[1,2,0,1],[2,3,2,1],[1,4,3,1],[0,2,1,0]],[[1,2,0,1],[2,4,2,1],[1,3,3,1],[0,2,1,0]],[[1,2,0,1],[3,3,2,1],[1,3,3,1],[0,2,1,0]],[[2,2,0,1],[2,3,2,1],[1,3,3,1],[0,2,1,0]],[[1,2,0,1],[2,3,2,1],[1,4,3,1],[0,2,0,1]],[[1,2,0,1],[2,4,2,1],[1,3,3,1],[0,2,0,1]],[[1,2,0,1],[3,3,2,1],[1,3,3,1],[0,2,0,1]],[[1,1,3,0],[0,3,3,2],[1,3,0,1],[1,2,2,1]],[[1,1,2,0],[0,4,3,2],[1,3,0,1],[1,2,2,1]],[[1,1,2,0],[0,3,4,2],[1,3,0,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,3],[1,3,0,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,4,0,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,3,0,1],[2,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,3,0,1],[1,3,2,1]],[[1,1,2,0],[0,3,3,2],[1,3,0,1],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[1,3,0,1],[1,2,2,2]],[[1,1,3,0],[0,3,3,2],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[0,4,3,2],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[0,3,4,2],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[0,3,3,3],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[1,4,0,2],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[1,3,0,3],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[1,3,0,2],[1,1,3,1]],[[1,1,2,0],[0,3,3,2],[1,3,0,2],[1,1,2,2]],[[1,1,3,0],[0,3,3,2],[1,3,0,2],[1,2,1,1]],[[1,1,2,0],[0,4,3,2],[1,3,0,2],[1,2,1,1]],[[1,1,2,0],[0,3,4,2],[1,3,0,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,3],[1,3,0,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,4,0,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,3,0,3],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,3,0,2],[2,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,3,0,2],[1,3,1,1]],[[1,1,2,0],[0,3,3,2],[1,3,0,2],[1,2,1,2]],[[1,1,3,0],[0,3,3,2],[1,3,0,2],[1,2,2,0]],[[1,1,2,0],[0,4,3,2],[1,3,0,2],[1,2,2,0]],[[1,1,2,0],[0,3,4,2],[1,3,0,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,3],[1,3,0,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,4,0,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,3,0,3],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,3,0,2],[2,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,3,0,2],[1,3,2,0]],[[1,1,2,0],[0,3,3,2],[1,3,0,2],[1,2,3,0]],[[1,1,3,0],[0,3,3,2],[1,3,1,0],[1,2,2,1]],[[1,1,2,0],[0,4,3,2],[1,3,1,0],[1,2,2,1]],[[1,1,2,0],[0,3,4,2],[1,3,1,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,3],[1,3,1,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,4,1,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,3,1,0],[2,2,2,1]],[[1,1,2,0],[0,3,3,2],[1,3,1,0],[1,3,2,1]],[[1,1,2,0],[0,3,3,2],[1,3,1,0],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[1,3,1,0],[1,2,2,2]],[[1,1,3,0],[0,3,3,2],[1,3,1,1],[1,2,2,0]],[[1,1,2,0],[0,4,3,2],[1,3,1,1],[1,2,2,0]],[[1,1,2,0],[0,3,4,2],[1,3,1,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,3],[1,3,1,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,4,1,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,3,1,1],[2,2,2,0]],[[1,1,2,0],[0,3,3,2],[1,3,1,1],[1,3,2,0]],[[1,1,2,0],[0,3,3,2],[1,3,1,1],[1,2,3,0]],[[1,1,3,0],[0,3,3,2],[1,3,1,2],[1,1,1,1]],[[1,1,2,0],[0,4,3,2],[1,3,1,2],[1,1,1,1]],[[1,1,2,0],[0,3,4,2],[1,3,1,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,3],[1,3,1,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[1,4,1,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[1,3,1,3],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[1,3,1,2],[1,1,1,2]],[[1,1,3,0],[0,3,3,2],[1,3,1,2],[1,1,2,0]],[[1,1,2,0],[0,4,3,2],[1,3,1,2],[1,1,2,0]],[[1,1,2,0],[0,3,4,2],[1,3,1,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,3],[1,3,1,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[1,4,1,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[1,3,1,3],[1,1,2,0]],[[1,1,3,0],[0,3,3,2],[1,3,1,2],[1,2,0,1]],[[1,1,2,0],[0,4,3,2],[1,3,1,2],[1,2,0,1]],[[1,1,2,0],[0,3,4,2],[1,3,1,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,3],[1,3,1,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[1,4,1,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[1,3,1,3],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[1,3,1,2],[2,2,0,1]],[[1,1,2,0],[0,3,3,2],[1,3,1,2],[1,3,0,1]],[[1,1,2,0],[0,3,3,2],[1,3,1,2],[1,2,0,2]],[[1,1,3,0],[0,3,3,2],[1,3,1,2],[1,2,1,0]],[[1,1,2,0],[0,4,3,2],[1,3,1,2],[1,2,1,0]],[[1,1,2,0],[0,3,4,2],[1,3,1,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,3],[1,3,1,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,4,1,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,3,1,3],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,3,1,2],[2,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,3,1,2],[1,3,1,0]],[[2,2,0,1],[2,3,2,1],[1,3,3,1],[0,2,0,1]],[[1,2,0,1],[2,3,2,1],[1,4,3,1],[0,1,2,0]],[[1,1,3,0],[0,3,3,2],[1,3,2,0],[1,1,2,1]],[[1,1,2,0],[0,4,3,2],[1,3,2,0],[1,1,2,1]],[[1,1,2,0],[0,3,4,2],[1,3,2,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,3],[1,3,2,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[1,4,2,0],[1,1,2,1]],[[1,1,3,0],[0,3,3,2],[1,3,2,0],[1,2,1,1]],[[1,1,2,0],[0,4,3,2],[1,3,2,0],[1,2,1,1]],[[1,1,2,0],[0,3,4,2],[1,3,2,0],[1,2,1,1]],[[1,1,2,0],[0,3,3,3],[1,3,2,0],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,4,2,0],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,3,2,0],[2,2,1,1]],[[1,1,2,0],[0,3,3,2],[1,3,2,0],[1,3,1,1]],[[1,1,3,0],[0,3,3,2],[1,3,2,1],[1,1,1,1]],[[1,1,2,0],[0,4,3,2],[1,3,2,1],[1,1,1,1]],[[1,1,2,0],[0,3,4,2],[1,3,2,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,3],[1,3,2,1],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[1,4,2,1],[1,1,1,1]],[[1,1,3,0],[0,3,3,2],[1,3,2,1],[1,1,2,0]],[[1,1,2,0],[0,4,3,2],[1,3,2,1],[1,1,2,0]],[[1,1,2,0],[0,3,4,2],[1,3,2,1],[1,1,2,0]],[[1,1,2,0],[0,3,3,3],[1,3,2,1],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[1,4,2,1],[1,1,2,0]],[[1,1,3,0],[0,3,3,2],[1,3,2,1],[1,2,0,1]],[[1,1,2,0],[0,4,3,2],[1,3,2,1],[1,2,0,1]],[[1,1,2,0],[0,3,4,2],[1,3,2,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,3],[1,3,2,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[1,4,2,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[1,3,2,1],[2,2,0,1]],[[1,1,2,0],[0,3,3,2],[1,3,2,1],[1,3,0,1]],[[1,1,3,0],[0,3,3,2],[1,3,2,1],[1,2,1,0]],[[1,1,2,0],[0,4,3,2],[1,3,2,1],[1,2,1,0]],[[1,1,2,0],[0,3,4,2],[1,3,2,1],[1,2,1,0]],[[1,1,2,0],[0,3,3,3],[1,3,2,1],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,4,2,1],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,3,2,1],[2,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,0,1],[2,4,2,1],[1,3,3,1],[0,1,2,0]],[[1,2,0,1],[3,3,2,1],[1,3,3,1],[0,1,2,0]],[[2,2,0,1],[2,3,2,1],[1,3,3,1],[0,1,2,0]],[[1,2,0,1],[2,4,2,1],[1,3,3,1],[0,1,1,1]],[[1,2,0,1],[3,3,2,1],[1,3,3,1],[0,1,1,1]],[[2,2,0,1],[2,3,2,1],[1,3,3,1],[0,1,1,1]],[[1,2,0,1],[2,3,2,1],[1,4,3,0],[1,2,0,1]],[[1,2,0,1],[2,4,2,1],[1,3,3,0],[1,2,0,1]],[[1,2,0,1],[3,3,2,1],[1,3,3,0],[1,2,0,1]],[[2,2,0,1],[2,3,2,1],[1,3,3,0],[1,2,0,1]],[[1,2,0,1],[2,3,2,1],[1,4,3,0],[1,1,1,1]],[[1,2,0,1],[2,4,2,1],[1,3,3,0],[1,1,1,1]],[[1,2,0,1],[3,3,2,1],[1,3,3,0],[1,1,1,1]],[[2,2,0,1],[2,3,2,1],[1,3,3,0],[1,1,1,1]],[[1,2,0,1],[2,3,2,1],[1,4,3,0],[1,0,2,1]],[[1,2,0,1],[2,4,2,1],[1,3,3,0],[1,0,2,1]],[[1,2,0,1],[3,3,2,1],[1,3,3,0],[1,0,2,1]],[[2,2,0,1],[2,3,2,1],[1,3,3,0],[1,0,2,1]],[[1,2,0,1],[2,3,2,1],[1,3,3,0],[0,3,1,1]],[[1,2,0,1],[2,3,2,1],[1,4,3,0],[0,2,1,1]],[[1,2,0,1],[2,4,2,1],[1,3,3,0],[0,2,1,1]],[[1,2,0,1],[3,3,2,1],[1,3,3,0],[0,2,1,1]],[[2,2,0,1],[2,3,2,1],[1,3,3,0],[0,2,1,1]],[[1,2,0,1],[2,3,2,1],[1,4,3,0],[0,1,2,1]],[[1,2,0,1],[2,4,2,1],[1,3,3,0],[0,1,2,1]],[[1,2,0,1],[3,3,2,1],[1,3,3,0],[0,1,2,1]],[[2,2,0,1],[2,3,2,1],[1,3,3,0],[0,1,2,1]],[[1,1,3,0],[0,3,3,2],[1,3,3,0],[1,1,2,0]],[[1,1,2,0],[0,4,3,2],[1,3,3,0],[1,1,2,0]],[[1,1,2,0],[0,3,4,2],[1,3,3,0],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[1,4,3,0],[1,1,2,0]],[[1,1,3,0],[0,3,3,2],[1,3,3,0],[1,2,1,0]],[[1,1,2,0],[0,4,3,2],[1,3,3,0],[1,2,1,0]],[[1,1,2,0],[0,3,4,2],[1,3,3,0],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,4,3,0],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,3,3,0],[2,2,1,0]],[[1,1,2,0],[0,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,1,3,0],[0,3,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,2,0],[0,4,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,2,0],[0,3,4,2],[1,3,3,1],[1,2,0,0]],[[1,1,2,0],[0,3,3,3],[1,3,3,1],[1,2,0,0]],[[1,1,2,0],[0,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,2,0,1],[2,3,2,1],[1,4,2,1],[1,1,2,0]],[[1,2,0,1],[2,4,2,1],[1,3,2,1],[1,1,2,0]],[[1,2,0,1],[3,3,2,1],[1,3,2,1],[1,1,2,0]],[[2,2,0,1],[2,3,2,1],[1,3,2,1],[1,1,2,0]],[[1,2,0,1],[2,3,2,1],[1,3,2,1],[0,3,2,0]],[[1,2,0,1],[2,3,2,1],[1,4,2,1],[0,2,2,0]],[[1,2,0,1],[2,4,2,1],[1,3,2,1],[0,2,2,0]],[[1,2,0,1],[3,3,2,1],[1,3,2,1],[0,2,2,0]],[[2,2,0,1],[2,3,2,1],[1,3,2,1],[0,2,2,0]],[[1,2,0,1],[2,3,2,1],[1,4,2,0],[1,1,2,1]],[[1,2,0,1],[2,4,2,1],[1,3,2,0],[1,1,2,1]],[[1,2,0,1],[3,3,2,1],[1,3,2,0],[1,1,2,1]],[[2,2,0,1],[2,3,2,1],[1,3,2,0],[1,1,2,1]],[[1,2,0,1],[2,3,2,1],[1,3,2,0],[0,2,3,1]],[[1,2,0,1],[2,3,2,1],[1,3,2,0],[0,3,2,1]],[[1,2,0,1],[2,3,2,1],[1,4,2,0],[0,2,2,1]],[[1,2,0,1],[2,4,2,1],[1,3,2,0],[0,2,2,1]],[[1,2,0,1],[3,3,2,1],[1,3,2,0],[0,2,2,1]],[[2,2,0,1],[2,3,2,1],[1,3,2,0],[0,2,2,1]],[[1,2,0,1],[2,4,2,1],[0,3,3,2],[1,1,1,0]],[[1,1,3,0],[0,3,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[0,4,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,4,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,3],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[3,0,1,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,1,3],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,1,2],[2,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,1,2],[1,3,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,1,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[2,0,1,2],[1,2,2,2]],[[1,1,3,0],[0,3,3,2],[2,0,2,2],[0,2,2,1]],[[1,1,2,0],[0,3,4,2],[2,0,2,2],[0,2,2,1]],[[1,1,2,0],[0,3,3,3],[2,0,2,2],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,2,3],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,2,2],[0,2,3,1]],[[1,1,2,0],[0,3,3,2],[2,0,2,2],[0,2,2,2]],[[1,1,3,0],[0,3,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,0],[0,4,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,0],[0,3,4,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,3],[2,0,2,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,0,2,3],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,0,2,2],[1,2,1,2]],[[1,1,3,0],[0,3,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[0,4,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,4,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,3],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,0,2,3],[1,2,2,0]],[[1,1,3,0],[0,3,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[0,4,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,4,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,3],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[3,0,3,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,4,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,3,0],[2,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,3,0],[1,3,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,3,0],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[2,0,3,0],[1,2,2,2]],[[1,1,3,0],[0,3,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[0,4,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,4,2],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,3],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,0,4,1],[1,2,1,1]],[[1,1,3,0],[0,3,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,0],[0,4,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,0],[0,3,4,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,3],[2,0,3,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[3,0,3,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,0,4,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,0,3,1],[2,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,0,3,1],[1,3,2,0]],[[1,1,2,0],[0,3,3,2],[2,0,3,1],[1,2,3,0]],[[1,1,3,0],[0,3,3,2],[2,0,3,2],[0,1,2,1]],[[1,1,2,0],[0,3,4,2],[2,0,3,2],[0,1,2,1]],[[1,1,2,0],[0,3,3,3],[2,0,3,2],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,3,3],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,0,3,2],[0,1,2,2]],[[1,1,3,0],[0,3,3,2],[2,0,3,2],[0,2,1,1]],[[1,1,2,0],[0,3,4,2],[2,0,3,2],[0,2,1,1]],[[1,1,2,0],[0,3,3,3],[2,0,3,2],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,0,3,3],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,0,3,2],[0,2,1,2]],[[1,1,3,0],[0,3,3,2],[2,0,3,2],[0,2,2,0]],[[1,1,2,0],[0,3,4,2],[2,0,3,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,3],[2,0,3,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,0,3,3],[0,2,2,0]],[[1,3,0,1],[2,3,2,1],[0,3,3,2],[1,1,1,0]],[[2,2,0,1],[2,3,2,1],[0,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,2],[1,1,0,1]],[[1,3,0,1],[2,3,2,1],[0,3,3,2],[1,1,0,1]],[[2,2,0,1],[2,3,2,1],[0,3,3,2],[1,1,0,1]],[[1,1,3,0],[0,3,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[0,4,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,4,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,3],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[3,1,0,2],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,0,3],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,0,2],[2,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,0,2],[1,3,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,0,2],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[2,1,0,2],[1,2,2,2]],[[1,1,3,0],[0,3,3,2],[2,1,1,2],[0,2,2,1]],[[1,1,2,0],[0,4,3,2],[2,1,1,2],[0,2,2,1]],[[1,1,2,0],[0,3,4,2],[2,1,1,2],[0,2,2,1]],[[1,1,2,0],[0,3,3,3],[2,1,1,2],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,1,3],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,1,2],[0,3,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,1,2],[0,2,3,1]],[[1,1,2,0],[0,3,3,2],[2,1,1,2],[0,2,2,2]],[[1,1,3,0],[0,3,3,2],[2,1,2,2],[0,2,1,1]],[[1,1,2,0],[0,4,3,2],[2,1,2,2],[0,2,1,1]],[[1,1,2,0],[0,3,4,2],[2,1,2,2],[0,2,1,1]],[[1,1,2,0],[0,3,3,3],[2,1,2,2],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,1,2,3],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,1,2,2],[0,2,1,2]],[[1,1,3,0],[0,3,3,2],[2,1,2,2],[0,2,2,0]],[[1,1,2,0],[0,4,3,2],[2,1,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,4,2],[2,1,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,3],[2,1,2,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,2],[1,0,2,0]],[[1,3,0,1],[2,3,2,1],[0,3,3,2],[1,0,2,0]],[[2,2,0,1],[2,3,2,1],[0,3,3,2],[1,0,2,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,2],[1,0,1,1]],[[1,3,0,1],[2,3,2,1],[0,3,3,2],[1,0,1,1]],[[2,2,0,1],[2,3,2,1],[0,3,3,2],[1,0,1,1]],[[1,1,3,0],[0,3,3,2],[2,1,3,0],[0,2,2,1]],[[1,1,2,0],[0,4,3,2],[2,1,3,0],[0,2,2,1]],[[1,1,2,0],[0,3,4,2],[2,1,3,0],[0,2,2,1]],[[1,1,2,0],[0,3,3,3],[2,1,3,0],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,4,0],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,3,0],[0,3,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,3,0],[0,2,3,1]],[[1,1,2,0],[0,3,3,2],[2,1,3,0],[0,2,2,2]],[[1,1,3,0],[0,3,3,2],[2,1,3,1],[0,2,1,1]],[[1,1,2,0],[0,4,3,2],[2,1,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,4,2],[2,1,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,3,3],[2,1,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,1,4,1],[0,2,1,1]],[[1,1,3,0],[0,3,3,2],[2,1,3,1],[0,2,2,0]],[[1,1,2,0],[0,4,3,2],[2,1,3,1],[0,2,2,0]],[[1,1,2,0],[0,3,4,2],[2,1,3,1],[0,2,2,0]],[[1,1,2,0],[0,3,3,3],[2,1,3,1],[0,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,1,4,1],[0,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,1,3,1],[0,3,2,0]],[[1,1,2,0],[0,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,2],[0,2,1,0]],[[1,3,0,1],[2,3,2,1],[0,3,3,2],[0,2,1,0]],[[2,2,0,1],[2,3,2,1],[0,3,3,2],[0,2,1,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,2],[0,2,0,1]],[[1,3,0,1],[2,3,2,1],[0,3,3,2],[0,2,0,1]],[[2,2,0,1],[2,3,2,1],[0,3,3,2],[0,2,0,1]],[[1,1,3,0],[0,3,3,2],[2,1,3,2],[0,0,2,1]],[[1,1,2,0],[0,3,4,2],[2,1,3,2],[0,0,2,1]],[[1,1,2,0],[0,3,3,3],[2,1,3,2],[0,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,3,3],[0,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,1,3,2],[0,0,2,2]],[[1,1,3,0],[0,3,3,2],[2,1,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,4,2],[2,1,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,3],[2,1,3,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,1,3,3],[0,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,1,3,2],[0,1,1,2]],[[1,1,3,0],[0,3,3,2],[2,1,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,4,2],[2,1,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,3],[2,1,3,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,2],[0,1,2,0]],[[1,3,0,1],[2,3,2,1],[0,3,3,2],[0,1,2,0]],[[2,2,0,1],[2,3,2,1],[0,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,2],[0,1,1,1]],[[1,3,0,1],[2,3,2,1],[0,3,3,2],[0,1,1,1]],[[2,2,0,1],[2,3,2,1],[0,3,3,2],[0,1,1,1]],[[1,1,3,0],[0,3,3,2],[2,1,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,4,2],[2,1,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,3],[2,1,3,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,1,3,3],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,1,3,2],[1,0,1,2]],[[1,1,3,0],[0,3,3,2],[2,1,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,4,2],[2,1,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,3],[2,1,3,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,0,1],[2,3,2,1],[0,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,3,2,1],[0,3,3,1],[2,2,1,0]],[[1,2,0,1],[2,3,2,1],[0,4,3,1],[1,2,1,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,1],[1,2,1,0]],[[1,2,0,1],[3,3,2,1],[0,3,3,1],[1,2,1,0]],[[2,2,0,1],[2,3,2,1],[0,3,3,1],[1,2,1,0]],[[1,2,0,1],[2,3,2,1],[0,4,3,1],[1,2,0,1]],[[1,2,0,1],[2,4,2,1],[0,3,3,1],[1,2,0,1]],[[1,2,0,1],[3,3,2,1],[0,3,3,1],[1,2,0,1]],[[2,2,0,1],[2,3,2,1],[0,3,3,1],[1,2,0,1]],[[1,2,0,1],[2,3,2,1],[0,4,3,1],[1,1,2,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,1],[1,1,2,0]],[[1,2,0,1],[3,3,2,1],[0,3,3,1],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[3,2,0,1],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,0,1],[2,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,0,1],[1,3,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,0,1],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[2,2,0,1],[1,2,2,2]],[[1,1,3,0],[0,3,3,2],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[0,4,3,2],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[0,3,4,2],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[0,3,3,3],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,0,3],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,0,2],[0,3,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,0,2],[0,2,3,1]],[[1,1,2,0],[0,3,3,2],[2,2,0,2],[0,2,2,2]],[[1,1,2,0],[0,3,3,2],[3,2,0,2],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,0,2],[2,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,0,2],[1,3,1,1]],[[1,1,2,0],[0,3,3,2],[3,2,0,2],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,0,2],[2,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,0,2],[1,3,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,0,2],[1,2,3,0]],[[1,1,2,0],[0,3,3,2],[3,2,1,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,0],[2,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,0],[1,3,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,0],[1,2,3,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,0],[1,2,2,2]],[[1,1,2,0],[0,3,3,2],[3,2,1,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,1,1],[2,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,1,1],[1,3,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,1,1],[1,2,3,0]],[[1,1,3,0],[0,3,3,2],[2,2,1,2],[0,1,2,1]],[[1,1,2,0],[0,4,3,2],[2,2,1,2],[0,1,2,1]],[[1,1,2,0],[0,3,4,2],[2,2,1,2],[0,1,2,1]],[[1,1,2,0],[0,3,3,3],[2,2,1,2],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,3],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,2],[0,1,3,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,2],[0,1,2,2]],[[1,1,3,0],[0,3,3,2],[2,2,1,2],[1,0,2,1]],[[1,1,2,0],[0,4,3,2],[2,2,1,2],[1,0,2,1]],[[1,1,2,0],[0,3,4,2],[2,2,1,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,3],[2,2,1,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,3],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,2],[1,0,3,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,2],[1,0,2,2]],[[1,1,2,0],[0,3,3,2],[3,2,1,2],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,2],[2,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,1,2],[1,3,0,1]],[[1,1,2,0],[0,3,3,2],[3,2,1,2],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,2,1,2],[2,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,2,1,2],[1,3,1,0]],[[2,2,0,1],[2,3,2,1],[0,3,3,1],[1,1,2,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,1],[1,0,2,1]],[[1,3,0,1],[2,3,2,1],[0,3,3,1],[1,0,2,1]],[[2,2,0,1],[2,3,2,1],[0,3,3,1],[1,0,2,1]],[[1,2,0,1],[2,4,2,1],[0,3,3,1],[0,2,1,1]],[[1,3,0,1],[2,3,2,1],[0,3,3,1],[0,2,1,1]],[[2,2,0,1],[2,3,2,1],[0,3,3,1],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[3,2,2,0],[1,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,0],[2,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,0],[1,3,1,1]],[[1,1,2,0],[0,3,3,2],[3,2,2,1],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,1],[2,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,1],[1,3,0,1]],[[1,1,2,0],[0,3,3,2],[3,2,2,1],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,2,2,1],[2,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,1],[0,1,2,1]],[[1,3,0,1],[2,3,2,1],[0,3,3,1],[0,1,2,1]],[[2,2,0,1],[2,3,2,1],[0,3,3,1],[0,1,2,1]],[[1,1,3,0],[0,3,3,2],[2,2,2,2],[0,0,2,1]],[[1,1,2,0],[0,4,3,2],[2,2,2,2],[0,0,2,1]],[[1,1,2,0],[0,3,4,2],[2,2,2,2],[0,0,2,1]],[[1,1,2,0],[0,3,3,3],[2,2,2,2],[0,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,3],[0,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,2],[0,0,2,2]],[[1,1,3,0],[0,3,3,2],[2,2,2,2],[0,1,1,1]],[[1,1,2,0],[0,4,3,2],[2,2,2,2],[0,1,1,1]],[[1,1,2,0],[0,3,4,2],[2,2,2,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,3],[2,2,2,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,3],[0,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,2],[0,1,1,2]],[[1,1,3,0],[0,3,3,2],[2,2,2,2],[0,1,2,0]],[[1,1,2,0],[0,4,3,2],[2,2,2,2],[0,1,2,0]],[[1,1,2,0],[0,3,4,2],[2,2,2,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,3],[2,2,2,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,2,3],[0,1,2,0]],[[1,1,3,0],[0,3,3,2],[2,2,2,2],[0,2,0,1]],[[1,1,2,0],[0,4,3,2],[2,2,2,2],[0,2,0,1]],[[1,1,2,0],[0,3,4,2],[2,2,2,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,3],[2,2,2,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,3],[0,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,2],[0,2,0,2]],[[1,1,3,0],[0,3,3,2],[2,2,2,2],[0,2,1,0]],[[1,1,2,0],[0,4,3,2],[2,2,2,2],[0,2,1,0]],[[1,1,2,0],[0,3,4,2],[2,2,2,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,3],[2,2,2,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,0,1],[2,3,2,1],[0,3,3,0],[1,3,1,1]],[[1,2,0,1],[2,3,2,1],[0,3,3,0],[2,2,1,1]],[[1,2,0,1],[2,3,2,1],[0,4,3,0],[1,2,1,1]],[[1,1,3,0],[0,3,3,2],[2,2,2,2],[1,0,1,1]],[[1,1,2,0],[0,4,3,2],[2,2,2,2],[1,0,1,1]],[[1,1,2,0],[0,3,4,2],[2,2,2,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,3],[2,2,2,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,3],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,2],[1,0,1,2]],[[1,1,3,0],[0,3,3,2],[2,2,2,2],[1,0,2,0]],[[1,1,2,0],[0,4,3,2],[2,2,2,2],[1,0,2,0]],[[1,1,2,0],[0,3,4,2],[2,2,2,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,3],[2,2,2,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,2,3],[1,0,2,0]],[[1,1,3,0],[0,3,3,2],[2,2,2,2],[1,1,0,1]],[[1,1,2,0],[0,4,3,2],[2,2,2,2],[1,1,0,1]],[[1,1,2,0],[0,3,4,2],[2,2,2,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,3],[2,2,2,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,3],[1,1,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,2,2],[1,1,0,2]],[[1,1,3,0],[0,3,3,2],[2,2,2,2],[1,1,1,0]],[[1,1,2,0],[0,4,3,2],[2,2,2,2],[1,1,1,0]],[[1,1,2,0],[0,3,4,2],[2,2,2,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,3],[2,2,2,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,0,1],[2,4,2,1],[0,3,3,0],[1,2,1,1]],[[1,2,0,1],[3,3,2,1],[0,3,3,0],[1,2,1,1]],[[2,2,0,1],[2,3,2,1],[0,3,3,0],[1,2,1,1]],[[1,2,0,1],[2,3,2,1],[0,4,3,0],[1,1,2,1]],[[1,2,0,1],[2,4,2,1],[0,3,3,0],[1,1,2,1]],[[1,2,0,1],[3,3,2,1],[0,3,3,0],[1,1,2,1]],[[2,2,0,1],[2,3,2,1],[0,3,3,0],[1,1,2,1]],[[1,2,0,1],[2,4,2,1],[0,3,2,2],[0,2,2,0]],[[1,3,0,1],[2,3,2,1],[0,3,2,2],[0,2,2,0]],[[2,2,0,1],[2,3,2,1],[0,3,2,2],[0,2,2,0]],[[1,2,0,1],[2,3,2,1],[0,3,2,1],[1,3,2,0]],[[1,2,0,1],[2,3,2,1],[0,3,2,1],[2,2,2,0]],[[1,1,3,0],[0,3,3,2],[2,2,3,0],[0,1,2,1]],[[1,1,2,0],[0,4,3,2],[2,2,3,0],[0,1,2,1]],[[1,1,2,0],[0,3,4,2],[2,2,3,0],[0,1,2,1]],[[1,1,2,0],[0,3,3,3],[2,2,3,0],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,4,0],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,3,0],[0,1,3,1]],[[1,1,2,0],[0,3,3,2],[2,2,3,0],[0,1,2,2]],[[1,1,3,0],[0,3,3,2],[2,2,3,0],[0,2,1,1]],[[1,1,2,0],[0,4,3,2],[2,2,3,0],[0,2,1,1]],[[1,1,2,0],[0,3,4,2],[2,2,3,0],[0,2,1,1]],[[1,1,2,0],[0,3,3,3],[2,2,3,0],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,4,0],[0,2,1,1]],[[1,1,3,0],[0,3,3,2],[2,2,3,0],[1,0,2,1]],[[1,1,2,0],[0,4,3,2],[2,2,3,0],[1,0,2,1]],[[1,1,2,0],[0,3,4,2],[2,2,3,0],[1,0,2,1]],[[1,1,2,0],[0,3,3,3],[2,2,3,0],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,4,0],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,3,0],[1,0,3,1]],[[1,1,2,0],[0,3,3,2],[2,2,3,0],[1,0,2,2]],[[1,1,3,0],[0,3,3,2],[2,2,3,0],[1,1,1,1]],[[1,1,2,0],[0,4,3,2],[2,2,3,0],[1,1,1,1]],[[1,1,2,0],[0,3,4,2],[2,2,3,0],[1,1,1,1]],[[1,1,2,0],[0,3,3,3],[2,2,3,0],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,4,0],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[3,2,3,0],[1,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,2,3,0],[2,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,0,1],[2,3,2,1],[0,4,2,1],[1,2,2,0]],[[1,2,0,1],[2,4,2,1],[0,3,2,1],[1,2,2,0]],[[1,2,0,1],[3,3,2,1],[0,3,2,1],[1,2,2,0]],[[2,2,0,1],[2,3,2,1],[0,3,2,1],[1,2,2,0]],[[1,2,0,1],[2,4,2,1],[0,3,2,1],[0,2,2,1]],[[1,3,0,1],[2,3,2,1],[0,3,2,1],[0,2,2,1]],[[2,2,0,1],[2,3,2,1],[0,3,2,1],[0,2,2,1]],[[1,2,0,1],[2,3,2,1],[0,3,2,0],[1,2,3,1]],[[1,2,0,1],[2,3,2,1],[0,3,2,0],[1,3,2,1]],[[1,2,0,1],[2,3,2,1],[0,3,2,0],[2,2,2,1]],[[1,1,3,0],[0,3,3,2],[2,2,3,1],[0,0,2,1]],[[1,1,2,0],[0,4,3,2],[2,2,3,1],[0,0,2,1]],[[1,1,2,0],[0,3,4,2],[2,2,3,1],[0,0,2,1]],[[1,1,2,0],[0,3,3,3],[2,2,3,1],[0,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,2,4,1],[0,0,2,1]],[[1,1,3,0],[0,3,3,2],[2,2,3,1],[0,1,1,1]],[[1,1,2,0],[0,4,3,2],[2,2,3,1],[0,1,1,1]],[[1,1,2,0],[0,3,4,2],[2,2,3,1],[0,1,1,1]],[[1,1,2,0],[0,3,3,3],[2,2,3,1],[0,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,4,1],[0,1,1,1]],[[1,1,3,0],[0,3,3,2],[2,2,3,1],[0,1,2,0]],[[1,1,2,0],[0,4,3,2],[2,2,3,1],[0,1,2,0]],[[1,1,2,0],[0,3,4,2],[2,2,3,1],[0,1,2,0]],[[1,1,2,0],[0,3,3,3],[2,2,3,1],[0,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,4,1],[0,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,3,1],[0,1,3,0]],[[1,1,3,0],[0,3,3,2],[2,2,3,1],[0,2,0,1]],[[1,1,2,0],[0,4,3,2],[2,2,3,1],[0,2,0,1]],[[1,1,2,0],[0,3,4,2],[2,2,3,1],[0,2,0,1]],[[1,1,2,0],[0,3,3,3],[2,2,3,1],[0,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,4,1],[0,2,0,1]],[[1,1,3,0],[0,3,3,2],[2,2,3,1],[0,2,1,0]],[[1,1,2,0],[0,4,3,2],[2,2,3,1],[0,2,1,0]],[[1,1,2,0],[0,3,4,2],[2,2,3,1],[0,2,1,0]],[[1,1,2,0],[0,3,3,3],[2,2,3,1],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,0,1],[2,3,2,1],[0,4,2,0],[1,2,2,1]],[[1,2,0,1],[2,4,2,1],[0,3,2,0],[1,2,2,1]],[[1,2,0,1],[3,3,2,1],[0,3,2,0],[1,2,2,1]],[[2,2,0,1],[2,3,2,1],[0,3,2,0],[1,2,2,1]],[[1,1,3,0],[0,3,3,2],[2,2,3,1],[1,0,1,1]],[[1,1,2,0],[0,4,3,2],[2,2,3,1],[1,0,1,1]],[[1,1,2,0],[0,3,4,2],[2,2,3,1],[1,0,1,1]],[[1,1,2,0],[0,3,3,3],[2,2,3,1],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,2,4,1],[1,0,1,1]],[[1,1,3,0],[0,3,3,2],[2,2,3,1],[1,0,2,0]],[[1,1,2,0],[0,4,3,2],[2,2,3,1],[1,0,2,0]],[[1,1,2,0],[0,3,4,2],[2,2,3,1],[1,0,2,0]],[[1,1,2,0],[0,3,3,3],[2,2,3,1],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,4,1],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,2,3,1],[1,0,3,0]],[[1,1,3,0],[0,3,3,2],[2,2,3,1],[1,1,0,1]],[[1,1,2,0],[0,4,3,2],[2,2,3,1],[1,1,0,1]],[[1,1,2,0],[0,3,4,2],[2,2,3,1],[1,1,0,1]],[[1,1,2,0],[0,3,3,3],[2,2,3,1],[1,1,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,4,1],[1,1,0,1]],[[1,1,3,0],[0,3,3,2],[2,2,3,1],[1,1,1,0]],[[1,1,2,0],[0,4,3,2],[2,2,3,1],[1,1,1,0]],[[1,1,2,0],[0,3,4,2],[2,2,3,1],[1,1,1,0]],[[1,1,2,0],[0,3,3,3],[2,2,3,1],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,0,1],[2,4,2,1],[0,3,1,2],[0,2,2,1]],[[1,3,0,1],[2,3,2,1],[0,3,1,2],[0,2,2,1]],[[2,2,0,1],[2,3,2,1],[0,3,1,2],[0,2,2,1]],[[1,1,3,0],[0,3,3,2],[2,2,3,2],[0,1,0,1]],[[1,1,2,0],[0,4,3,2],[2,2,3,2],[0,1,0,1]],[[1,1,2,0],[0,3,4,2],[2,2,3,2],[0,1,0,1]],[[1,1,2,0],[0,3,3,3],[2,2,3,2],[0,1,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,0,1],[2,3,2,0],[3,3,3,2],[1,0,1,0]],[[1,2,0,1],[2,4,2,0],[2,3,3,2],[1,0,1,0]],[[1,2,0,1],[3,3,2,0],[2,3,3,2],[1,0,1,0]],[[2,2,0,1],[2,3,2,0],[2,3,3,2],[1,0,1,0]],[[1,1,3,0],[0,3,3,2],[2,2,3,2],[1,0,0,1]],[[1,1,2,0],[0,4,3,2],[2,2,3,2],[1,0,0,1]],[[1,1,2,0],[0,3,4,2],[2,2,3,2],[1,0,0,1]],[[1,1,2,0],[0,3,3,3],[2,2,3,2],[1,0,0,1]],[[1,1,2,0],[0,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,0,1],[2,3,2,0],[3,3,3,2],[1,0,0,1]],[[1,2,0,1],[2,4,2,0],[2,3,3,2],[1,0,0,1]],[[1,2,0,1],[3,3,2,0],[2,3,3,2],[1,0,0,1]],[[2,2,0,1],[2,3,2,0],[2,3,3,2],[1,0,0,1]],[[1,2,0,1],[2,3,2,0],[3,3,3,1],[1,0,1,1]],[[1,2,0,1],[2,4,2,0],[2,3,3,1],[1,0,1,1]],[[1,2,0,1],[3,3,2,0],[2,3,3,1],[1,0,1,1]],[[2,2,0,1],[2,3,2,0],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[3,3,0,0],[1,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,0],[2,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,0],[1,3,2,1]],[[1,1,3,0],[0,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,2,0],[0,4,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,2,0],[0,3,4,2],[2,3,0,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,3],[2,3,0,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[3,3,0,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,4,0,1],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,1],[0,3,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,1],[0,2,3,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,1],[0,2,2,2]],[[1,1,3,0],[0,3,3,2],[2,3,0,1],[1,1,2,1]],[[1,1,2,0],[0,4,3,2],[2,3,0,1],[1,1,2,1]],[[1,1,2,0],[0,3,4,2],[2,3,0,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,3],[2,3,0,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[3,3,0,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,4,0,1],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,1],[2,1,2,1]],[[1,1,2,0],[0,3,3,2],[3,3,0,1],[1,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,0,1],[2,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,0,1],[1,3,2,0]],[[1,1,3,0],[0,3,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,0],[0,4,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,0],[0,3,4,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,0],[0,3,3,3],[2,3,0,2],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[3,3,0,2],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,4,0,2],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,3],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[0,1,3,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[0,1,2,2]],[[1,1,3,0],[0,3,3,2],[2,3,0,2],[0,2,1,1]],[[1,1,2,0],[0,4,3,2],[2,3,0,2],[0,2,1,1]],[[1,1,2,0],[0,3,4,2],[2,3,0,2],[0,2,1,1]],[[1,1,2,0],[0,3,3,3],[2,3,0,2],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[3,3,0,2],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,4,0,2],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,3],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[0,3,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[0,2,1,2]],[[1,1,3,0],[0,3,3,2],[2,3,0,2],[0,2,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,0,2],[0,2,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,0,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,3],[2,3,0,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,2],[3,3,0,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,4,0,2],[0,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,0,3],[0,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[0,3,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[0,2,3,0]],[[1,1,3,0],[0,3,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,2,0],[0,4,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,2,0],[0,3,4,2],[2,3,0,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,3],[2,3,0,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[3,3,0,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,4,0,2],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,3],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[2,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[1,0,3,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[1,0,2,2]],[[1,1,3,0],[0,3,3,2],[2,3,0,2],[1,1,1,1]],[[1,1,2,0],[0,4,3,2],[2,3,0,2],[1,1,1,1]],[[1,1,2,0],[0,3,4,2],[2,3,0,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,3],[2,3,0,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[3,3,0,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,4,0,2],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,3],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[2,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[1,1,1,2]],[[1,1,3,0],[0,3,3,2],[2,3,0,2],[1,1,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,0,2],[1,1,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,0,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,3],[2,3,0,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[3,3,0,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,4,0,2],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,0,3],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,1,3,0],[0,3,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,2,0],[0,4,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,2,0],[0,3,4,2],[2,3,1,0],[0,2,2,1]],[[1,1,2,0],[0,3,3,3],[2,3,1,0],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[3,3,1,0],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,4,1,0],[0,2,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,0],[0,3,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,0],[0,2,3,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,0],[0,2,2,2]],[[1,1,3,0],[0,3,3,2],[2,3,1,0],[1,1,2,1]],[[1,1,2,0],[0,4,3,2],[2,3,1,0],[1,1,2,1]],[[1,1,2,0],[0,3,4,2],[2,3,1,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,3],[2,3,1,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[3,3,1,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,4,1,0],[1,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,0],[2,1,2,1]],[[1,1,3,0],[0,3,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,1,1],[0,2,2,0]],[[1,1,2,0],[0,3,3,3],[2,3,1,1],[0,2,2,0]],[[1,1,2,0],[0,3,3,2],[3,3,1,1],[0,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,4,1,1],[0,2,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,1,1],[0,3,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,1,1],[0,2,3,0]],[[1,1,3,0],[0,3,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,0],[0,3,3,3],[2,3,1,1],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[3,3,1,1],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,4,1,1],[1,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,1,3,0],[0,3,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,2,0],[0,4,3,2],[2,3,1,2],[0,1,1,1]],[[1,1,2,0],[0,3,4,2],[2,3,1,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,3],[2,3,1,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,2],[3,3,1,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,4,1,2],[0,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,3],[0,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,2],[0,1,1,2]],[[1,1,3,0],[0,3,3,2],[2,3,1,2],[0,1,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,1,2],[0,1,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,1,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,3],[2,3,1,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,2],[3,3,1,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,4,1,2],[0,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,1,3],[0,1,2,0]],[[1,1,3,0],[0,3,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,0],[0,4,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,0],[0,3,4,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,3],[2,3,1,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,2],[3,3,1,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,4,1,2],[0,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,3],[0,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,2],[0,3,0,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,2],[0,2,0,2]],[[1,1,3,0],[0,3,3,2],[2,3,1,2],[0,2,1,0]],[[1,1,2,0],[0,4,3,2],[2,3,1,2],[0,2,1,0]],[[1,1,2,0],[0,3,4,2],[2,3,1,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,3],[2,3,1,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[3,3,1,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,4,1,2],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,3,1,3],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,1,3,0],[0,3,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,0],[0,4,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,0],[0,3,4,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,3],[2,3,1,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[3,3,1,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,4,1,2],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,3],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,2],[2,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,2],[1,0,1,2]],[[1,1,3,0],[0,3,3,2],[2,3,1,2],[1,0,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,1,2],[1,0,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,1,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,3],[2,3,1,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[3,3,1,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,4,1,2],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,1,3],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,1,2],[2,0,2,0]],[[1,1,3,0],[0,3,3,2],[2,3,1,2],[1,1,0,1]],[[1,1,2,0],[0,4,3,2],[2,3,1,2],[1,1,0,1]],[[1,1,2,0],[0,3,4,2],[2,3,1,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,3],[2,3,1,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,2],[3,3,1,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,2],[2,4,1,2],[1,1,0,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,3],[1,1,0,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,2],[2,1,0,1]],[[1,1,2,0],[0,3,3,2],[2,3,1,2],[1,1,0,2]],[[1,1,3,0],[0,3,3,2],[2,3,1,2],[1,1,1,0]],[[1,1,2,0],[0,4,3,2],[2,3,1,2],[1,1,1,0]],[[1,1,2,0],[0,3,4,2],[2,3,1,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,3],[2,3,1,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[3,3,1,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[2,4,1,2],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[2,3,1,3],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,1,3,0],[0,3,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,0],[0,4,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,0],[0,3,4,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,0],[0,3,3,3],[2,3,1,2],[1,2,0,0]],[[1,1,2,0],[0,3,3,2],[3,3,1,2],[1,2,0,0]],[[1,1,2,0],[0,3,3,2],[2,4,1,2],[1,2,0,0]],[[1,1,2,0],[0,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,0,1],[2,3,2,0],[2,3,0,2],[1,3,2,0]],[[1,2,0,1],[2,3,2,0],[2,3,0,2],[2,2,2,0]],[[1,2,0,1],[2,3,2,0],[3,3,0,2],[1,2,2,0]],[[1,2,0,1],[3,3,2,0],[2,3,0,2],[1,2,2,0]],[[2,2,0,1],[2,3,2,0],[2,3,0,2],[1,2,2,0]],[[1,2,0,1],[2,3,2,0],[2,3,0,1],[1,3,2,1]],[[1,1,3,0],[0,3,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,0],[0,4,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,0],[0,3,4,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,0],[0,3,3,3],[2,3,2,0],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[3,3,2,0],[0,1,2,1]],[[1,1,2,0],[0,3,3,2],[2,4,2,0],[0,1,2,1]],[[1,1,3,0],[0,3,3,2],[2,3,2,0],[0,2,1,1]],[[1,1,2,0],[0,4,3,2],[2,3,2,0],[0,2,1,1]],[[1,1,2,0],[0,3,4,2],[2,3,2,0],[0,2,1,1]],[[1,1,2,0],[0,3,3,3],[2,3,2,0],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[3,3,2,0],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,4,2,0],[0,2,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,2,0],[0,3,1,1]],[[1,1,3,0],[0,3,3,2],[2,3,2,0],[1,0,2,1]],[[1,1,2,0],[0,4,3,2],[2,3,2,0],[1,0,2,1]],[[1,1,2,0],[0,3,4,2],[2,3,2,0],[1,0,2,1]],[[1,1,2,0],[0,3,3,3],[2,3,2,0],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[3,3,2,0],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,4,2,0],[1,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,2,0],[2,0,2,1]],[[1,1,3,0],[0,3,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,2,0],[0,4,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,2,0],[0,3,4,2],[2,3,2,0],[1,1,1,1]],[[1,1,2,0],[0,3,3,3],[2,3,2,0],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[3,3,2,0],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,4,2,0],[1,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,2,0],[2,1,1,1]],[[1,1,3,0],[0,3,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,2,0],[0,4,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,2,0],[0,3,4,2],[2,3,2,0],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[3,3,2,0],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,4,2,0],[1,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,0,1],[2,3,2,0],[2,3,0,1],[2,2,2,1]],[[1,2,0,1],[2,3,2,0],[3,3,0,1],[1,2,2,1]],[[1,2,0,1],[3,3,2,0],[2,3,0,1],[1,2,2,1]],[[2,2,0,1],[2,3,2,0],[2,3,0,1],[1,2,2,1]],[[1,1,3,0],[0,3,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,2,0],[0,4,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,2,0],[0,3,4,2],[2,3,2,1],[0,1,1,1]],[[1,1,2,0],[0,3,3,3],[2,3,2,1],[0,1,1,1]],[[1,1,2,0],[0,3,3,2],[3,3,2,1],[0,1,1,1]],[[1,1,2,0],[0,3,3,2],[2,4,2,1],[0,1,1,1]],[[1,1,3,0],[0,3,3,2],[2,3,2,1],[0,1,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,2,1],[0,1,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,2,1],[0,1,2,0]],[[1,1,2,0],[0,3,3,3],[2,3,2,1],[0,1,2,0]],[[1,1,2,0],[0,3,3,2],[3,3,2,1],[0,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,4,2,1],[0,1,2,0]],[[1,1,3,0],[0,3,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,0],[0,4,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,0],[0,3,4,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,0],[0,3,3,3],[2,3,2,1],[0,2,0,1]],[[1,1,2,0],[0,3,3,2],[3,3,2,1],[0,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,4,2,1],[0,2,0,1]],[[1,1,2,0],[0,3,3,2],[2,3,2,1],[0,3,0,1]],[[1,1,3,0],[0,3,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,2,0],[0,4,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,2,0],[0,3,4,2],[2,3,2,1],[0,2,1,0]],[[1,1,2,0],[0,3,3,3],[2,3,2,1],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[3,3,2,1],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,4,2,1],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,0,1],[2,3,2,0],[2,2,3,2],[2,2,0,0]],[[1,2,0,1],[2,3,2,0],[3,2,3,2],[1,2,0,0]],[[1,2,0,1],[2,4,2,0],[2,2,3,2],[1,2,0,0]],[[1,1,3,0],[0,3,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,2,0],[0,4,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,2,0],[0,3,4,2],[2,3,2,1],[1,0,1,1]],[[1,1,2,0],[0,3,3,3],[2,3,2,1],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[3,3,2,1],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,4,2,1],[1,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,2,1],[2,0,1,1]],[[1,1,3,0],[0,3,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,2,1],[1,0,2,0]],[[1,1,2,0],[0,3,3,3],[2,3,2,1],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[3,3,2,1],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,4,2,1],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,2,1],[2,0,2,0]],[[1,1,3,0],[0,3,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,2,0],[0,4,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,2,0],[0,3,4,2],[2,3,2,1],[1,1,0,1]],[[1,1,2,0],[0,3,3,3],[2,3,2,1],[1,1,0,1]],[[1,1,2,0],[0,3,3,2],[3,3,2,1],[1,1,0,1]],[[1,1,2,0],[0,3,3,2],[2,4,2,1],[1,1,0,1]],[[1,1,2,0],[0,3,3,2],[2,3,2,1],[2,1,0,1]],[[1,1,3,0],[0,3,3,2],[2,3,2,1],[1,1,1,0]],[[1,1,2,0],[0,4,3,2],[2,3,2,1],[1,1,1,0]],[[1,1,2,0],[0,3,4,2],[2,3,2,1],[1,1,1,0]],[[1,1,2,0],[0,3,3,3],[2,3,2,1],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[3,3,2,1],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[2,4,2,1],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,0,1],[3,3,2,0],[2,2,3,2],[1,2,0,0]],[[2,2,0,1],[2,3,2,0],[2,2,3,2],[1,2,0,0]],[[1,1,3,0],[0,3,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,2,0],[0,4,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,2,0],[0,3,4,2],[2,3,2,1],[1,2,0,0]],[[1,1,2,0],[0,3,3,3],[2,3,2,1],[1,2,0,0]],[[1,1,2,0],[0,3,3,2],[3,3,2,1],[1,2,0,0]],[[1,1,2,0],[0,3,3,2],[2,4,2,1],[1,2,0,0]],[[1,1,2,0],[0,3,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,0,1],[2,3,2,0],[2,2,3,2],[2,1,1,0]],[[1,2,0,1],[2,3,2,0],[3,2,3,2],[1,1,1,0]],[[1,2,0,1],[2,4,2,0],[2,2,3,2],[1,1,1,0]],[[1,2,0,1],[3,3,2,0],[2,2,3,2],[1,1,1,0]],[[2,2,0,1],[2,3,2,0],[2,2,3,2],[1,1,1,0]],[[1,2,0,1],[2,3,2,0],[2,2,3,2],[2,1,0,1]],[[1,2,0,1],[2,3,2,0],[3,2,3,2],[1,1,0,1]],[[1,2,0,1],[2,4,2,0],[2,2,3,2],[1,1,0,1]],[[1,2,0,1],[3,3,2,0],[2,2,3,2],[1,1,0,1]],[[2,2,0,1],[2,3,2,0],[2,2,3,2],[1,1,0,1]],[[1,2,0,1],[2,3,2,0],[2,2,3,2],[2,0,2,0]],[[1,2,0,1],[2,3,2,0],[3,2,3,2],[1,0,2,0]],[[1,2,0,1],[2,4,2,0],[2,2,3,2],[1,0,2,0]],[[1,2,0,1],[3,3,2,0],[2,2,3,2],[1,0,2,0]],[[2,2,0,1],[2,3,2,0],[2,2,3,2],[1,0,2,0]],[[1,2,0,1],[2,3,2,0],[2,2,3,2],[2,0,1,1]],[[1,2,0,1],[2,3,2,0],[3,2,3,2],[1,0,1,1]],[[1,1,3,0],[0,3,3,2],[2,3,2,2],[0,0,1,1]],[[1,1,2,0],[0,4,3,2],[2,3,2,2],[0,0,1,1]],[[1,1,2,0],[0,3,4,2],[2,3,2,2],[0,0,1,1]],[[1,1,2,0],[0,3,3,3],[2,3,2,2],[0,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,2,3],[0,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,2,2],[0,0,1,2]],[[1,1,3,0],[0,3,3,2],[2,3,2,2],[0,0,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,2,2],[0,0,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,2,2],[0,0,2,0]],[[1,1,2,0],[0,3,3,3],[2,3,2,2],[0,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,0,1],[2,4,2,0],[2,2,3,2],[1,0,1,1]],[[1,2,0,1],[3,3,2,0],[2,2,3,2],[1,0,1,1]],[[2,2,0,1],[2,3,2,0],[2,2,3,2],[1,0,1,1]],[[1,2,0,1],[2,3,2,0],[3,2,3,2],[0,2,1,0]],[[1,2,0,1],[2,4,2,0],[2,2,3,2],[0,2,1,0]],[[1,2,0,1],[3,3,2,0],[2,2,3,2],[0,2,1,0]],[[2,2,0,1],[2,3,2,0],[2,2,3,2],[0,2,1,0]],[[1,2,0,1],[2,3,2,0],[3,2,3,2],[0,2,0,1]],[[1,2,0,1],[2,4,2,0],[2,2,3,2],[0,2,0,1]],[[1,2,0,1],[3,3,2,0],[2,2,3,2],[0,2,0,1]],[[2,2,0,1],[2,3,2,0],[2,2,3,2],[0,2,0,1]],[[1,2,0,1],[2,3,2,0],[3,2,3,2],[0,1,2,0]],[[1,2,0,1],[2,4,2,0],[2,2,3,2],[0,1,2,0]],[[1,2,0,1],[3,3,2,0],[2,2,3,2],[0,1,2,0]],[[2,2,0,1],[2,3,2,0],[2,2,3,2],[0,1,2,0]],[[1,2,0,1],[2,3,2,0],[3,2,3,2],[0,1,1,1]],[[1,2,0,1],[2,4,2,0],[2,2,3,2],[0,1,1,1]],[[1,2,0,1],[3,3,2,0],[2,2,3,2],[0,1,1,1]],[[2,2,0,1],[2,3,2,0],[2,2,3,2],[0,1,1,1]],[[1,2,0,1],[2,3,2,0],[2,2,3,1],[2,2,0,1]],[[1,2,0,1],[2,3,2,0],[3,2,3,1],[1,2,0,1]],[[1,2,0,1],[2,4,2,0],[2,2,3,1],[1,2,0,1]],[[1,2,0,1],[3,3,2,0],[2,2,3,1],[1,2,0,1]],[[2,2,0,1],[2,3,2,0],[2,2,3,1],[1,2,0,1]],[[1,2,0,1],[2,3,2,0],[2,2,3,1],[2,1,1,1]],[[1,2,0,1],[2,3,2,0],[3,2,3,1],[1,1,1,1]],[[1,2,0,1],[2,4,2,0],[2,2,3,1],[1,1,1,1]],[[1,2,0,1],[3,3,2,0],[2,2,3,1],[1,1,1,1]],[[2,2,0,1],[2,3,2,0],[2,2,3,1],[1,1,1,1]],[[1,2,0,1],[2,3,2,0],[2,2,3,1],[2,0,2,1]],[[1,2,0,1],[2,3,2,0],[3,2,3,1],[1,0,2,1]],[[1,2,0,1],[2,4,2,0],[2,2,3,1],[1,0,2,1]],[[1,2,0,1],[3,3,2,0],[2,2,3,1],[1,0,2,1]],[[2,2,0,1],[2,3,2,0],[2,2,3,1],[1,0,2,1]],[[1,2,0,1],[2,3,2,0],[3,2,3,1],[0,2,1,1]],[[1,2,0,1],[2,4,2,0],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[3,3,2,0],[2,2,3,1],[0,2,1,1]],[[2,2,0,1],[2,3,2,0],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[2,3,2,0],[3,2,3,1],[0,1,2,1]],[[1,2,0,1],[2,4,2,0],[2,2,3,1],[0,1,2,1]],[[1,2,0,1],[3,3,2,0],[2,2,3,1],[0,1,2,1]],[[2,2,0,1],[2,3,2,0],[2,2,3,1],[0,1,2,1]],[[1,2,0,1],[2,3,2,0],[2,2,3,0],[2,1,2,1]],[[1,2,0,1],[2,3,2,0],[3,2,3,0],[1,1,2,1]],[[1,2,0,1],[2,4,2,0],[2,2,3,0],[1,1,2,1]],[[1,2,0,1],[3,3,2,0],[2,2,3,0],[1,1,2,1]],[[2,2,0,1],[2,3,2,0],[2,2,3,0],[1,1,2,1]],[[1,2,0,1],[2,3,2,0],[3,2,3,0],[0,2,2,1]],[[1,2,0,1],[2,4,2,0],[2,2,3,0],[0,2,2,1]],[[1,2,0,1],[3,3,2,0],[2,2,3,0],[0,2,2,1]],[[2,2,0,1],[2,3,2,0],[2,2,3,0],[0,2,2,1]],[[1,2,0,1],[2,3,2,0],[2,2,2,2],[2,1,2,0]],[[1,2,0,1],[2,3,2,0],[3,2,2,2],[1,1,2,0]],[[1,2,0,1],[2,4,2,0],[2,2,2,2],[1,1,2,0]],[[1,2,0,1],[3,3,2,0],[2,2,2,2],[1,1,2,0]],[[2,2,0,1],[2,3,2,0],[2,2,2,2],[1,1,2,0]],[[1,2,0,1],[2,3,2,0],[3,2,2,2],[0,2,2,0]],[[1,2,0,1],[2,4,2,0],[2,2,2,2],[0,2,2,0]],[[1,2,0,1],[3,3,2,0],[2,2,2,2],[0,2,2,0]],[[2,2,0,1],[2,3,2,0],[2,2,2,2],[0,2,2,0]],[[1,1,3,0],[0,3,3,2],[2,3,3,0],[0,0,2,1]],[[1,1,2,0],[0,4,3,2],[2,3,3,0],[0,0,2,1]],[[1,1,2,0],[0,3,4,2],[2,3,3,0],[0,0,2,1]],[[1,1,2,0],[0,3,3,3],[2,3,3,0],[0,0,2,1]],[[1,1,2,0],[0,3,3,2],[2,3,4,0],[0,0,2,1]],[[1,1,3,0],[0,3,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,3,0],[0,1,2,0]],[[1,1,2,0],[0,3,3,2],[3,3,3,0],[0,1,2,0]],[[1,1,2,0],[0,3,3,2],[2,4,3,0],[0,1,2,0]],[[1,1,3,0],[0,3,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,2,0],[0,4,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,2,0],[0,3,4,2],[2,3,3,0],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[3,3,3,0],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,4,3,0],[0,2,1,0]],[[1,1,2,0],[0,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,0,1],[2,3,2,0],[2,2,2,1],[2,1,2,1]],[[1,2,0,1],[2,3,2,0],[3,2,2,1],[1,1,2,1]],[[1,2,0,1],[2,4,2,0],[2,2,2,1],[1,1,2,1]],[[1,2,0,1],[3,3,2,0],[2,2,2,1],[1,1,2,1]],[[2,2,0,1],[2,3,2,0],[2,2,2,1],[1,1,2,1]],[[1,2,0,1],[2,3,2,0],[3,2,2,1],[0,2,2,1]],[[1,2,0,1],[2,4,2,0],[2,2,2,1],[0,2,2,1]],[[1,2,0,1],[3,3,2,0],[2,2,2,1],[0,2,2,1]],[[2,2,0,1],[2,3,2,0],[2,2,2,1],[0,2,2,1]],[[1,1,3,0],[0,3,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,3,0],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[3,3,3,0],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,4,3,0],[1,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,3,0],[2,0,2,0]],[[1,1,3,0],[0,3,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,2,0],[0,4,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,2,0],[0,3,4,2],[2,3,3,0],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[3,3,3,0],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[2,4,3,0],[1,1,1,0]],[[1,1,2,0],[0,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,0,1],[2,3,2,0],[2,2,1,2],[2,1,2,1]],[[1,2,0,1],[2,3,2,0],[3,2,1,2],[1,1,2,1]],[[1,1,3,0],[0,3,3,2],[2,3,3,0],[1,2,0,0]],[[1,1,2,0],[0,4,3,2],[2,3,3,0],[1,2,0,0]],[[1,1,2,0],[0,3,4,2],[2,3,3,0],[1,2,0,0]],[[1,1,2,0],[0,3,3,2],[3,3,3,0],[1,2,0,0]],[[1,1,2,0],[0,3,3,2],[2,4,3,0],[1,2,0,0]],[[1,1,2,0],[0,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,0,1],[2,4,2,0],[2,2,1,2],[1,1,2,1]],[[1,2,0,1],[3,3,2,0],[2,2,1,2],[1,1,2,1]],[[2,2,0,1],[2,3,2,0],[2,2,1,2],[1,1,2,1]],[[1,2,0,1],[2,3,2,0],[3,2,1,2],[0,2,2,1]],[[1,2,0,1],[2,4,2,0],[2,2,1,2],[0,2,2,1]],[[1,2,0,1],[3,3,2,0],[2,2,1,2],[0,2,2,1]],[[2,2,0,1],[2,3,2,0],[2,2,1,2],[0,2,2,1]],[[1,2,0,1],[2,3,2,0],[2,1,3,2],[1,3,1,0]],[[1,2,0,1],[2,3,2,0],[2,1,3,2],[2,2,1,0]],[[1,2,0,1],[2,3,2,0],[3,1,3,2],[1,2,1,0]],[[1,2,0,1],[2,4,2,0],[2,1,3,2],[1,2,1,0]],[[1,2,0,1],[3,3,2,0],[2,1,3,2],[1,2,1,0]],[[2,2,0,1],[2,3,2,0],[2,1,3,2],[1,2,1,0]],[[1,1,3,0],[0,3,3,2],[2,3,3,1],[0,0,1,1]],[[1,1,2,0],[0,4,3,2],[2,3,3,1],[0,0,1,1]],[[1,1,2,0],[0,3,4,2],[2,3,3,1],[0,0,1,1]],[[1,1,2,0],[0,3,3,3],[2,3,3,1],[0,0,1,1]],[[1,1,2,0],[0,3,3,2],[2,3,4,1],[0,0,1,1]],[[1,1,3,0],[0,3,3,2],[2,3,3,1],[0,0,2,0]],[[1,1,2,0],[0,4,3,2],[2,3,3,1],[0,0,2,0]],[[1,1,2,0],[0,3,4,2],[2,3,3,1],[0,0,2,0]],[[1,1,2,0],[0,3,3,3],[2,3,3,1],[0,0,2,0]],[[1,1,2,0],[0,3,3,2],[2,3,4,1],[0,0,2,0]],[[1,2,0,1],[2,3,2,0],[2,1,3,2],[1,3,0,1]],[[1,2,0,1],[2,3,2,0],[2,1,3,2],[2,2,0,1]],[[1,2,0,1],[2,3,2,0],[3,1,3,2],[1,2,0,1]],[[1,2,0,1],[2,4,2,0],[2,1,3,2],[1,2,0,1]],[[1,2,0,1],[3,3,2,0],[2,1,3,2],[1,2,0,1]],[[2,2,0,1],[2,3,2,0],[2,1,3,2],[1,2,0,1]],[[1,1,3,0],[0,3,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,2,0],[0,4,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,2,0],[0,3,4,2],[2,3,3,1],[0,2,0,0]],[[1,1,2,0],[0,3,3,3],[2,3,3,1],[0,2,0,0]],[[1,1,2,0],[0,3,3,2],[3,3,3,1],[0,2,0,0]],[[1,1,2,0],[0,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,0,1],[2,3,2,0],[2,1,3,1],[1,3,1,1]],[[1,2,0,1],[2,3,2,0],[2,1,3,1],[2,2,1,1]],[[1,2,0,1],[2,3,2,0],[3,1,3,1],[1,2,1,1]],[[1,2,0,1],[2,4,2,0],[2,1,3,1],[1,2,1,1]],[[1,2,0,1],[3,3,2,0],[2,1,3,1],[1,2,1,1]],[[2,2,0,1],[2,3,2,0],[2,1,3,1],[1,2,1,1]],[[1,2,0,1],[2,3,2,0],[2,1,3,0],[1,2,3,1]],[[1,2,0,1],[2,3,2,0],[2,1,3,0],[1,3,2,1]],[[1,2,0,1],[2,3,2,0],[2,1,3,0],[2,2,2,1]],[[1,2,0,1],[2,3,2,0],[3,1,3,0],[1,2,2,1]],[[1,2,0,1],[2,4,2,0],[2,1,3,0],[1,2,2,1]],[[1,2,0,1],[3,3,2,0],[2,1,3,0],[1,2,2,1]],[[2,2,0,1],[2,3,2,0],[2,1,3,0],[1,2,2,1]],[[1,2,0,1],[2,3,2,0],[2,1,2,2],[1,2,3,0]],[[1,2,0,1],[2,3,2,0],[2,1,2,2],[1,3,2,0]],[[1,2,0,1],[2,3,2,0],[2,1,2,2],[2,2,2,0]],[[1,2,0,1],[2,3,2,0],[3,1,2,2],[1,2,2,0]],[[1,2,0,1],[2,4,2,0],[2,1,2,2],[1,2,2,0]],[[1,2,0,1],[3,3,2,0],[2,1,2,2],[1,2,2,0]],[[2,2,0,1],[2,3,2,0],[2,1,2,2],[1,2,2,0]],[[1,2,0,1],[2,3,2,0],[2,1,2,1],[1,2,2,2]],[[1,2,0,1],[2,3,2,0],[2,1,2,1],[1,2,3,1]],[[1,2,0,1],[2,3,2,0],[2,1,2,1],[1,3,2,1]],[[1,1,3,0],[0,3,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,2,0],[0,4,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,2,0],[0,3,4,2],[2,3,3,1],[1,1,0,0]],[[1,1,2,0],[0,3,3,3],[2,3,3,1],[1,1,0,0]],[[1,1,2,0],[0,3,3,2],[3,3,3,1],[1,1,0,0]],[[1,1,2,0],[0,3,3,2],[2,4,3,1],[1,1,0,0]],[[1,1,2,0],[0,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,0,1],[2,3,2,0],[2,1,2,1],[2,2,2,1]],[[1,2,0,1],[2,3,2,0],[3,1,2,1],[1,2,2,1]],[[1,2,0,1],[2,4,2,0],[2,1,2,1],[1,2,2,1]],[[1,2,0,1],[3,3,2,0],[2,1,2,1],[1,2,2,1]],[[2,2,0,1],[2,3,2,0],[2,1,2,1],[1,2,2,1]],[[1,2,0,1],[2,3,2,0],[2,1,1,2],[1,2,2,2]],[[1,2,0,1],[2,3,2,0],[2,1,1,2],[1,2,3,1]],[[1,2,0,1],[2,3,2,0],[2,1,1,2],[1,3,2,1]],[[1,2,0,1],[2,3,2,0],[2,1,1,2],[2,2,2,1]],[[1,2,0,1],[2,3,2,0],[3,1,1,2],[1,2,2,1]],[[1,2,0,1],[2,4,2,0],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[3,3,2,0],[2,1,1,2],[1,2,2,1]],[[2,2,0,1],[2,3,2,0],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[2,3,2,0],[2,0,3,2],[1,2,3,0]],[[1,2,0,1],[2,3,2,0],[2,0,3,2],[1,3,2,0]],[[1,2,0,1],[2,3,2,0],[2,0,3,2],[2,2,2,0]],[[1,2,0,1],[2,3,2,0],[2,0,4,2],[1,2,2,0]],[[1,2,0,1],[2,3,2,0],[3,0,3,2],[1,2,2,0]],[[1,2,0,1],[2,4,2,0],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[3,3,2,0],[2,0,3,2],[1,2,2,0]],[[2,2,0,1],[2,3,2,0],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[2,3,2,0],[2,0,3,1],[1,2,2,2]],[[1,2,0,1],[2,3,2,0],[2,0,3,1],[1,2,3,1]],[[1,2,0,1],[2,3,2,0],[2,0,3,1],[1,3,2,1]],[[1,2,0,1],[2,3,2,0],[2,0,3,1],[2,2,2,1]],[[1,2,0,1],[2,3,2,0],[2,0,4,1],[1,2,2,1]],[[1,2,0,1],[2,3,2,0],[3,0,3,1],[1,2,2,1]],[[1,2,0,1],[2,4,2,0],[2,0,3,1],[1,2,2,1]],[[1,2,0,1],[3,3,2,0],[2,0,3,1],[1,2,2,1]],[[2,2,0,1],[2,3,2,0],[2,0,3,1],[1,2,2,1]],[[1,2,0,1],[2,3,2,0],[2,0,2,2],[1,2,2,2]],[[1,2,0,1],[2,3,2,0],[2,0,2,2],[1,2,3,1]],[[1,2,0,1],[2,3,2,0],[2,0,2,2],[1,3,2,1]],[[1,2,0,1],[2,3,2,0],[2,0,2,2],[2,2,2,1]],[[1,2,0,1],[2,3,2,0],[3,0,2,2],[1,2,2,1]],[[1,2,0,1],[2,4,2,0],[2,0,2,2],[1,2,2,1]],[[1,2,0,1],[3,3,2,0],[2,0,2,2],[1,2,2,1]],[[2,2,0,1],[2,3,2,0],[2,0,2,2],[1,2,2,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,2],[1,2,0,0]],[[1,2,0,1],[2,4,2,0],[1,3,3,2],[1,2,0,0]],[[1,2,0,1],[3,3,2,0],[1,3,3,2],[1,2,0,0]],[[2,2,0,1],[2,3,2,0],[1,3,3,2],[1,2,0,0]],[[1,1,3,0],[0,3,3,2],[2,3,3,2],[0,0,0,1]],[[1,1,2,0],[0,4,3,2],[2,3,3,2],[0,0,0,1]],[[1,1,2,0],[0,3,4,2],[2,3,3,2],[0,0,0,1]],[[1,1,2,0],[0,3,3,3],[2,3,3,2],[0,0,0,1]],[[1,1,2,0],[0,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,0,1],[2,3,2,0],[1,3,4,2],[1,1,1,0]],[[1,2,0,1],[2,3,2,0],[1,4,3,2],[1,1,1,0]],[[1,2,0,1],[2,4,2,0],[1,3,3,2],[1,1,1,0]],[[1,2,0,1],[3,3,2,0],[1,3,3,2],[1,1,1,0]],[[2,2,0,1],[2,3,2,0],[1,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,3,2,0],[1,3,4,2],[1,1,0,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,2],[1,1,0,1]],[[1,2,0,1],[2,4,2,0],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[3,3,2,0],[1,3,3,2],[1,1,0,1]],[[2,2,0,1],[2,3,2,0],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[2,3,2,0],[1,3,3,2],[1,0,3,0]],[[1,2,0,1],[2,3,2,0],[1,3,4,2],[1,0,2,0]],[[1,2,0,1],[2,3,2,0],[1,4,3,2],[1,0,2,0]],[[1,2,0,1],[2,4,2,0],[1,3,3,2],[1,0,2,0]],[[1,2,0,1],[3,3,2,0],[1,3,3,2],[1,0,2,0]],[[2,2,0,1],[2,3,2,0],[1,3,3,2],[1,0,2,0]],[[1,2,0,1],[2,3,2,0],[1,3,4,2],[1,0,1,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,2],[1,0,1,1]],[[1,2,0,1],[2,4,2,0],[1,3,3,2],[1,0,1,1]],[[1,2,0,1],[3,3,2,0],[1,3,3,2],[1,0,1,1]],[[2,2,0,1],[2,3,2,0],[1,3,3,2],[1,0,1,1]],[[1,2,0,1],[2,3,2,0],[1,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,3,2,0],[1,3,4,2],[0,2,1,0]],[[1,2,0,1],[2,3,2,0],[1,4,3,2],[0,2,1,0]],[[1,2,0,1],[2,4,2,0],[1,3,3,2],[0,2,1,0]],[[1,2,0,1],[3,3,2,0],[1,3,3,2],[0,2,1,0]],[[2,2,0,1],[2,3,2,0],[1,3,3,2],[0,2,1,0]],[[1,2,0,1],[2,3,2,0],[1,3,3,2],[0,3,0,1]],[[1,2,0,1],[2,3,2,0],[1,3,4,2],[0,2,0,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,2],[0,2,0,1]],[[1,2,0,1],[2,4,2,0],[1,3,3,2],[0,2,0,1]],[[1,2,0,1],[3,3,2,0],[1,3,3,2],[0,2,0,1]],[[2,2,0,1],[2,3,2,0],[1,3,3,2],[0,2,0,1]],[[1,2,0,1],[2,3,2,0],[1,3,3,2],[0,1,3,0]],[[1,2,0,1],[2,3,2,0],[1,3,4,2],[0,1,2,0]],[[1,2,0,1],[2,3,2,0],[1,4,3,2],[0,1,2,0]],[[1,2,0,1],[2,4,2,0],[1,3,3,2],[0,1,2,0]],[[1,2,0,1],[3,3,2,0],[1,3,3,2],[0,1,2,0]],[[2,2,0,1],[2,3,2,0],[1,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,3,2,0],[1,3,4,2],[0,1,1,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,2],[0,1,1,1]],[[1,2,0,1],[2,4,2,0],[1,3,3,2],[0,1,1,1]],[[1,2,0,1],[3,3,2,0],[1,3,3,2],[0,1,1,1]],[[2,2,0,1],[2,3,2,0],[1,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,1],[1,2,0,1]],[[1,2,0,1],[2,4,2,0],[1,3,3,1],[1,2,0,1]],[[1,2,0,1],[3,3,2,0],[1,3,3,1],[1,2,0,1]],[[2,2,0,1],[2,3,2,0],[1,3,3,1],[1,2,0,1]],[[1,2,0,1],[2,3,2,0],[1,3,4,1],[1,1,1,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,1],[1,1,1,1]],[[1,2,0,1],[2,4,2,0],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[3,3,2,0],[1,3,3,1],[1,1,1,1]],[[2,2,0,1],[2,3,2,0],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[2,3,2,0],[1,3,3,1],[1,0,2,2]],[[1,2,0,1],[2,3,2,0],[1,3,3,1],[1,0,3,1]],[[1,2,0,1],[2,3,2,0],[1,3,4,1],[1,0,2,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,1],[1,0,2,1]],[[1,2,0,1],[2,4,2,0],[1,3,3,1],[1,0,2,1]],[[1,2,0,1],[3,3,2,0],[1,3,3,1],[1,0,2,1]],[[2,2,0,1],[2,3,2,0],[1,3,3,1],[1,0,2,1]],[[1,2,0,1],[2,3,2,0],[1,3,3,1],[0,3,1,1]],[[1,2,0,1],[2,3,2,0],[1,3,4,1],[0,2,1,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,1],[0,2,1,1]],[[1,2,0,1],[2,4,2,0],[1,3,3,1],[0,2,1,1]],[[1,2,0,1],[3,3,2,0],[1,3,3,1],[0,2,1,1]],[[2,2,0,1],[2,3,2,0],[1,3,3,1],[0,2,1,1]],[[1,2,0,1],[2,3,2,0],[1,3,3,1],[0,1,2,2]],[[1,2,0,1],[2,3,2,0],[1,3,3,1],[0,1,3,1]],[[1,2,0,1],[2,3,2,0],[1,3,4,1],[0,1,2,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,1],[0,1,2,1]],[[1,2,0,1],[2,4,2,0],[1,3,3,1],[0,1,2,1]],[[1,2,0,1],[3,3,2,0],[1,3,3,1],[0,1,2,1]],[[2,2,0,1],[2,3,2,0],[1,3,3,1],[0,1,2,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,0],[1,1,2,1]],[[1,2,0,1],[2,4,2,0],[1,3,3,0],[1,1,2,1]],[[1,2,0,1],[3,3,2,0],[1,3,3,0],[1,1,2,1]],[[2,2,0,1],[2,3,2,0],[1,3,3,0],[1,1,2,1]],[[1,2,0,1],[2,3,2,0],[1,3,3,0],[0,2,3,1]],[[1,2,0,1],[2,3,2,0],[1,3,3,0],[0,3,2,1]],[[1,2,0,1],[2,3,2,0],[1,4,3,0],[0,2,2,1]],[[1,2,0,1],[2,4,2,0],[1,3,3,0],[0,2,2,1]],[[1,2,0,1],[3,3,2,0],[1,3,3,0],[0,2,2,1]],[[2,2,0,1],[2,3,2,0],[1,3,3,0],[0,2,2,1]],[[1,2,0,1],[2,3,2,0],[1,4,2,2],[1,1,2,0]],[[1,2,0,1],[2,4,2,0],[1,3,2,2],[1,1,2,0]],[[1,2,0,1],[3,3,2,0],[1,3,2,2],[1,1,2,0]],[[2,2,0,1],[2,3,2,0],[1,3,2,2],[1,1,2,0]],[[1,2,0,1],[2,3,2,0],[1,3,2,2],[0,2,3,0]],[[1,2,0,1],[2,3,2,0],[1,3,2,2],[0,3,2,0]],[[1,2,0,1],[2,3,2,0],[1,4,2,2],[0,2,2,0]],[[1,2,0,1],[2,4,2,0],[1,3,2,2],[0,2,2,0]],[[1,2,0,1],[3,3,2,0],[1,3,2,2],[0,2,2,0]],[[2,2,0,1],[2,3,2,0],[1,3,2,2],[0,2,2,0]],[[1,2,0,1],[2,3,2,0],[1,4,2,1],[1,1,2,1]],[[1,2,0,1],[2,4,2,0],[1,3,2,1],[1,1,2,1]],[[1,2,0,1],[3,3,2,0],[1,3,2,1],[1,1,2,1]],[[2,2,0,1],[2,3,2,0],[1,3,2,1],[1,1,2,1]],[[1,2,0,1],[2,3,2,0],[1,3,2,1],[0,2,2,2]],[[1,2,0,1],[2,3,2,0],[1,3,2,1],[0,2,3,1]],[[1,2,0,1],[2,3,2,0],[1,3,2,1],[0,3,2,1]],[[1,2,0,1],[2,3,2,0],[1,4,2,1],[0,2,2,1]],[[1,2,0,1],[2,4,2,0],[1,3,2,1],[0,2,2,1]],[[1,2,0,1],[3,3,2,0],[1,3,2,1],[0,2,2,1]],[[2,2,0,1],[2,3,2,0],[1,3,2,1],[0,2,2,1]],[[1,2,0,1],[2,3,2,0],[1,4,1,2],[1,1,2,1]],[[1,2,0,1],[2,4,2,0],[1,3,1,2],[1,1,2,1]],[[1,2,0,1],[3,3,2,0],[1,3,1,2],[1,1,2,1]],[[2,2,0,1],[2,3,2,0],[1,3,1,2],[1,1,2,1]],[[1,2,0,1],[2,3,2,0],[1,3,1,2],[0,2,2,2]],[[1,2,0,1],[2,3,2,0],[1,3,1,2],[0,2,3,1]],[[1,2,0,1],[2,3,2,0],[1,3,1,2],[0,3,2,1]],[[1,2,0,1],[2,3,2,0],[1,4,1,2],[0,2,2,1]],[[1,2,0,1],[2,4,2,0],[1,3,1,2],[0,2,2,1]],[[1,2,0,1],[3,3,2,0],[1,3,1,2],[0,2,2,1]],[[2,2,0,1],[2,3,2,0],[1,3,1,2],[0,2,2,1]],[[1,2,0,1],[2,3,2,0],[1,2,3,2],[0,2,3,0]],[[1,2,0,1],[2,3,2,0],[1,2,3,2],[0,3,2,0]],[[1,2,0,1],[2,3,2,0],[1,2,4,2],[0,2,2,0]],[[1,2,0,1],[2,3,2,0],[1,2,3,1],[0,2,2,2]],[[1,2,0,1],[2,3,2,0],[1,2,3,1],[0,2,3,1]],[[1,2,0,1],[2,3,2,0],[1,2,3,1],[0,3,2,1]],[[1,2,0,1],[2,3,2,0],[1,2,4,1],[0,2,2,1]],[[1,2,0,1],[2,3,2,0],[0,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,3,2,0],[0,3,3,2],[2,2,1,0]],[[1,2,0,1],[2,3,2,0],[0,3,4,2],[1,2,1,0]],[[1,2,0,1],[2,3,2,0],[0,4,3,2],[1,2,1,0]],[[1,2,0,1],[2,4,2,0],[0,3,3,2],[1,2,1,0]],[[1,2,0,1],[3,3,2,0],[0,3,3,2],[1,2,1,0]],[[2,2,0,1],[2,3,2,0],[0,3,3,2],[1,2,1,0]],[[1,2,0,1],[2,3,2,0],[0,3,3,2],[1,3,0,1]],[[1,2,0,1],[2,3,2,0],[0,3,3,2],[2,2,0,1]],[[1,2,0,1],[2,3,2,0],[0,3,4,2],[1,2,0,1]],[[1,2,0,1],[2,3,2,0],[0,4,3,2],[1,2,0,1]],[[1,2,0,1],[2,4,2,0],[0,3,3,2],[1,2,0,1]],[[1,2,0,1],[3,3,2,0],[0,3,3,2],[1,2,0,1]],[[2,2,0,1],[2,3,2,0],[0,3,3,2],[1,2,0,1]],[[1,2,0,1],[2,3,2,0],[0,3,3,2],[1,1,3,0]],[[1,2,0,1],[2,3,2,0],[0,3,4,2],[1,1,2,0]],[[1,2,0,1],[2,3,2,0],[0,4,3,2],[1,1,2,0]],[[1,2,0,1],[2,4,2,0],[0,3,3,2],[1,1,2,0]],[[1,2,0,1],[3,3,2,0],[0,3,3,2],[1,1,2,0]],[[2,2,0,1],[2,3,2,0],[0,3,3,2],[1,1,2,0]],[[1,2,0,1],[2,3,2,0],[0,3,4,2],[1,1,1,1]],[[1,2,0,1],[2,3,2,0],[0,4,3,2],[1,1,1,1]],[[1,2,0,1],[2,4,2,0],[0,3,3,2],[1,1,1,1]],[[1,2,0,1],[3,3,2,0],[0,3,3,2],[1,1,1,1]],[[2,2,0,1],[2,3,2,0],[0,3,3,2],[1,1,1,1]],[[1,2,0,1],[2,3,2,0],[0,3,3,1],[1,3,1,1]],[[1,2,0,1],[2,3,2,0],[0,3,3,1],[2,2,1,1]],[[1,2,0,1],[2,3,2,0],[0,3,4,1],[1,2,1,1]],[[1,2,0,1],[2,3,2,0],[0,4,3,1],[1,2,1,1]],[[1,2,0,1],[2,4,2,0],[0,3,3,1],[1,2,1,1]],[[1,2,0,1],[3,3,2,0],[0,3,3,1],[1,2,1,1]],[[2,2,0,1],[2,3,2,0],[0,3,3,1],[1,2,1,1]],[[1,2,0,1],[2,3,2,0],[0,3,3,1],[1,1,2,2]],[[1,2,0,1],[2,3,2,0],[0,3,3,1],[1,1,3,1]],[[1,2,0,1],[2,3,2,0],[0,3,4,1],[1,1,2,1]],[[1,2,0,1],[2,3,2,0],[0,4,3,1],[1,1,2,1]],[[1,2,0,1],[2,4,2,0],[0,3,3,1],[1,1,2,1]],[[1,2,0,1],[3,3,2,0],[0,3,3,1],[1,1,2,1]],[[2,2,0,1],[2,3,2,0],[0,3,3,1],[1,1,2,1]],[[1,2,0,1],[2,3,2,0],[0,3,3,0],[1,2,3,1]],[[1,2,0,1],[2,3,2,0],[0,3,3,0],[1,3,2,1]],[[1,2,0,1],[2,3,2,0],[0,3,3,0],[2,2,2,1]],[[1,2,0,1],[2,3,2,0],[0,4,3,0],[1,2,2,1]],[[1,2,0,1],[2,4,2,0],[0,3,3,0],[1,2,2,1]],[[1,2,0,1],[3,3,2,0],[0,3,3,0],[1,2,2,1]],[[2,2,0,1],[2,3,2,0],[0,3,3,0],[1,2,2,1]],[[1,2,0,1],[2,3,2,0],[0,3,2,2],[1,2,3,0]],[[1,2,0,1],[2,3,2,0],[0,3,2,2],[1,3,2,0]],[[1,2,0,1],[2,3,2,0],[0,3,2,2],[2,2,2,0]],[[1,2,0,1],[2,3,2,0],[0,4,2,2],[1,2,2,0]],[[1,2,0,1],[2,4,2,0],[0,3,2,2],[1,2,2,0]],[[1,2,0,1],[3,3,2,0],[0,3,2,2],[1,2,2,0]],[[2,2,0,1],[2,3,2,0],[0,3,2,2],[1,2,2,0]],[[1,2,0,1],[2,3,2,0],[0,3,2,1],[1,2,2,2]],[[1,2,0,1],[2,3,2,0],[0,3,2,1],[1,2,3,1]],[[1,2,0,1],[2,3,2,0],[0,3,2,1],[1,3,2,1]],[[1,2,0,1],[2,3,2,0],[0,3,2,1],[2,2,2,1]],[[1,2,0,1],[2,3,2,0],[0,4,2,1],[1,2,2,1]],[[1,2,0,1],[2,4,2,0],[0,3,2,1],[1,2,2,1]],[[1,2,0,1],[3,3,2,0],[0,3,2,1],[1,2,2,1]],[[2,2,0,1],[2,3,2,0],[0,3,2,1],[1,2,2,1]],[[1,2,0,1],[2,3,2,0],[0,3,1,2],[1,2,2,2]],[[1,2,0,1],[2,3,2,0],[0,3,1,2],[1,2,3,1]],[[1,2,0,1],[2,3,2,0],[0,3,1,2],[1,3,2,1]],[[1,2,0,1],[2,3,2,0],[0,3,1,2],[2,2,2,1]],[[1,2,0,1],[2,3,2,0],[0,4,1,2],[1,2,2,1]],[[1,2,0,1],[2,4,2,0],[0,3,1,2],[1,2,2,1]],[[1,2,0,1],[3,3,2,0],[0,3,1,2],[1,2,2,1]],[[2,2,0,1],[2,3,2,0],[0,3,1,2],[1,2,2,1]],[[1,2,0,1],[2,3,2,0],[0,2,3,2],[1,2,3,0]],[[1,2,0,1],[2,3,2,0],[0,2,3,2],[1,3,2,0]],[[1,2,0,1],[2,3,2,0],[0,2,3,2],[2,2,2,0]],[[1,2,0,1],[2,3,2,0],[0,2,4,2],[1,2,2,0]],[[1,2,0,1],[2,3,2,0],[0,2,3,1],[1,2,2,2]],[[1,2,0,1],[2,3,2,0],[0,2,3,1],[1,2,3,1]],[[1,2,0,1],[2,3,2,0],[0,2,3,1],[1,3,2,1]],[[1,2,0,1],[2,3,2,0],[0,2,3,1],[2,2,2,1]],[[1,2,0,1],[2,3,2,0],[0,2,4,1],[1,2,2,1]],[[1,1,2,0],[1,1,3,3],[0,1,3,2],[1,2,2,1]],[[1,1,2,0],[1,1,3,2],[0,1,3,3],[1,2,2,1]],[[1,1,2,0],[1,1,3,2],[0,1,3,2],[1,2,3,1]],[[1,1,2,0],[1,1,3,2],[0,1,3,2],[1,2,2,2]],[[1,1,2,0],[1,1,3,3],[0,2,2,2],[1,2,2,1]],[[1,1,2,0],[1,1,3,2],[0,2,2,3],[1,2,2,1]],[[1,1,2,0],[1,1,3,2],[0,2,2,2],[1,3,2,1]],[[1,1,2,0],[1,1,3,2],[0,2,2,2],[1,2,3,1]],[[1,1,2,0],[1,1,3,2],[0,2,2,2],[1,2,2,2]],[[1,1,2,0],[1,1,3,2],[0,2,4,1],[1,2,2,1]],[[1,1,2,0],[1,1,3,2],[0,2,3,1],[1,3,2,1]],[[1,1,2,0],[1,1,3,2],[0,2,3,1],[1,2,3,1]],[[1,1,2,0],[1,1,3,2],[0,2,3,1],[1,2,2,2]],[[1,1,2,0],[1,1,3,3],[0,2,3,2],[1,2,1,1]],[[1,1,2,0],[1,1,3,2],[0,2,4,2],[1,2,1,1]],[[1,1,2,0],[1,1,3,2],[0,2,3,3],[1,2,1,1]],[[1,1,2,0],[1,1,3,2],[0,2,3,2],[1,2,1,2]],[[1,1,2,0],[1,1,3,3],[0,2,3,2],[1,2,2,0]],[[1,1,2,0],[1,1,3,2],[0,2,4,2],[1,2,2,0]],[[1,1,2,0],[1,1,3,2],[0,2,3,3],[1,2,2,0]],[[1,1,2,0],[1,1,3,2],[0,2,3,2],[1,3,2,0]],[[1,1,2,0],[1,1,3,2],[0,2,3,2],[1,2,3,0]],[[1,1,2,0],[1,1,3,3],[0,3,2,2],[1,1,2,1]],[[1,1,2,0],[1,1,3,2],[0,3,2,3],[1,1,2,1]],[[1,1,2,0],[1,1,3,2],[0,3,2,2],[1,1,3,1]],[[1,1,2,0],[1,1,3,2],[0,3,2,2],[1,1,2,2]],[[1,1,2,0],[1,1,3,2],[0,3,4,1],[1,1,2,1]],[[1,1,2,0],[1,1,3,2],[0,3,3,1],[1,1,3,1]],[[1,1,2,0],[1,1,3,2],[0,3,3,1],[1,1,2,2]],[[1,1,2,0],[1,1,3,3],[0,3,3,2],[1,0,2,1]],[[1,1,2,0],[1,1,3,2],[0,3,4,2],[1,0,2,1]],[[1,1,2,0],[1,1,3,2],[0,3,3,3],[1,0,2,1]],[[1,1,2,0],[1,1,3,2],[0,3,3,2],[1,0,2,2]],[[1,1,2,0],[1,1,3,3],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,1,3,2],[0,3,4,2],[1,1,1,1]],[[1,1,2,0],[1,1,3,2],[0,3,3,3],[1,1,1,1]],[[1,1,2,0],[1,1,3,2],[0,3,3,2],[1,1,1,2]],[[1,1,2,0],[1,1,3,3],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,1,3,2],[0,3,4,2],[1,1,2,0]],[[1,1,2,0],[1,1,3,2],[0,3,3,3],[1,1,2,0]],[[1,1,2,0],[1,1,3,2],[0,3,3,2],[1,1,3,0]],[[1,1,2,0],[1,1,3,3],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,1,3,2],[0,3,4,2],[1,2,0,1]],[[1,1,2,0],[1,1,3,2],[0,3,3,3],[1,2,0,1]],[[1,1,2,0],[1,1,3,2],[0,3,3,2],[1,2,0,2]],[[1,1,2,0],[1,1,3,3],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[1,1,3,2],[0,3,4,2],[1,2,1,0]],[[1,1,2,0],[1,1,3,2],[0,3,3,3],[1,2,1,0]],[[1,1,2,0],[1,1,3,3],[1,1,3,2],[0,2,2,1]],[[1,1,2,0],[1,1,3,2],[1,1,3,3],[0,2,2,1]],[[1,1,2,0],[1,1,3,2],[1,1,3,2],[0,2,3,1]],[[1,1,2,0],[1,1,3,2],[1,1,3,2],[0,2,2,2]],[[1,1,2,0],[1,1,3,3],[1,2,2,2],[0,2,2,1]],[[1,1,2,0],[1,1,3,2],[1,2,2,3],[0,2,2,1]],[[1,1,2,0],[1,1,3,2],[1,2,2,2],[0,2,3,1]],[[1,1,2,0],[1,1,3,2],[1,2,2,2],[0,2,2,2]],[[1,1,2,0],[1,1,3,2],[1,2,4,1],[0,2,2,1]],[[1,1,2,0],[1,1,3,2],[1,2,3,1],[0,2,3,1]],[[1,1,2,0],[1,1,3,2],[1,2,3,1],[0,2,2,2]],[[1,1,2,0],[1,1,3,3],[1,2,3,2],[0,2,1,1]],[[1,1,2,0],[1,1,3,2],[1,2,4,2],[0,2,1,1]],[[1,1,2,0],[1,1,3,2],[1,2,3,3],[0,2,1,1]],[[1,1,2,0],[1,1,3,2],[1,2,3,2],[0,2,1,2]],[[1,1,2,0],[1,1,3,3],[1,2,3,2],[0,2,2,0]],[[1,1,2,0],[1,1,3,2],[1,2,4,2],[0,2,2,0]],[[1,1,2,0],[1,1,3,2],[1,2,3,3],[0,2,2,0]],[[1,1,2,0],[1,1,3,2],[1,2,3,2],[0,2,3,0]],[[1,1,2,0],[1,1,3,3],[1,3,2,2],[0,1,2,1]],[[1,1,2,0],[1,1,3,2],[1,3,2,3],[0,1,2,1]],[[1,1,2,0],[1,1,3,2],[1,3,2,2],[0,1,3,1]],[[1,1,2,0],[1,1,3,2],[1,3,2,2],[0,1,2,2]],[[1,1,2,0],[1,1,3,2],[1,3,4,1],[0,1,2,1]],[[1,1,2,0],[1,1,3,2],[1,3,3,1],[0,1,3,1]],[[1,1,2,0],[1,1,3,2],[1,3,3,1],[0,1,2,2]],[[1,1,2,0],[1,1,3,3],[1,3,3,2],[0,0,2,1]],[[1,1,2,0],[1,1,3,2],[1,3,4,2],[0,0,2,1]],[[1,1,2,0],[1,1,3,2],[1,3,3,3],[0,0,2,1]],[[1,1,2,0],[1,1,3,2],[1,3,3,2],[0,0,2,2]],[[1,1,2,0],[1,1,3,3],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,1,3,2],[1,3,4,2],[0,1,1,1]],[[1,1,2,0],[1,1,3,2],[1,3,3,3],[0,1,1,1]],[[1,1,2,0],[1,1,3,2],[1,3,3,2],[0,1,1,2]],[[1,1,2,0],[1,1,3,3],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,1,3,2],[1,3,4,2],[0,1,2,0]],[[1,1,2,0],[1,1,3,2],[1,3,3,3],[0,1,2,0]],[[1,1,2,0],[1,1,3,2],[1,3,3,2],[0,1,3,0]],[[1,1,2,0],[1,1,3,3],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,1,3,2],[1,3,4,2],[0,2,0,1]],[[1,1,2,0],[1,1,3,2],[1,3,3,3],[0,2,0,1]],[[1,1,2,0],[1,1,3,2],[1,3,3,2],[0,2,0,2]],[[1,1,2,0],[1,1,3,3],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,1,3,2],[1,3,4,2],[0,2,1,0]],[[1,1,2,0],[1,1,3,2],[1,3,3,3],[0,2,1,0]],[[1,1,2,0],[1,1,3,3],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,1,3,2],[1,3,4,2],[1,0,1,1]],[[1,1,2,0],[1,1,3,2],[1,3,3,3],[1,0,1,1]],[[1,1,2,0],[1,1,3,2],[1,3,3,2],[1,0,1,2]],[[1,1,2,0],[1,1,3,3],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,1,3,2],[1,3,4,2],[1,0,2,0]],[[1,1,2,0],[1,1,3,2],[1,3,3,3],[1,0,2,0]],[[1,1,2,0],[1,2,1,2],[0,2,3,3],[1,2,2,1]],[[1,1,2,0],[1,2,1,2],[0,2,3,2],[1,3,2,1]],[[1,1,2,0],[1,2,1,2],[0,2,3,2],[1,2,3,1]],[[1,1,2,0],[1,2,1,2],[0,2,3,2],[1,2,2,2]],[[1,1,2,0],[1,2,1,2],[0,3,3,3],[1,1,2,1]],[[1,1,2,0],[1,2,1,2],[0,3,3,2],[1,1,3,1]],[[1,1,2,0],[1,2,1,2],[0,3,3,2],[1,1,2,2]],[[1,1,2,0],[1,2,1,2],[1,2,3,3],[0,2,2,1]],[[1,1,2,0],[1,2,1,2],[1,2,3,2],[0,2,3,1]],[[1,1,2,0],[1,2,1,2],[1,2,3,2],[0,2,2,2]],[[1,1,2,0],[1,2,1,2],[1,3,3,3],[0,1,2,1]],[[1,1,2,0],[1,2,1,2],[1,3,3,2],[0,1,3,1]],[[1,1,2,0],[1,2,1,2],[1,3,3,2],[0,1,2,2]],[[1,1,2,0],[1,2,2,3],[0,1,3,2],[1,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,1,3,3],[1,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,1,3,2],[1,2,3,1]],[[1,1,2,0],[1,2,2,2],[0,1,3,2],[1,2,2,2]],[[1,1,2,0],[1,2,2,3],[0,2,2,2],[1,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,2,2,3],[1,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,2,2,2],[2,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,2,2,2],[1,3,2,1]],[[1,1,2,0],[1,2,2,2],[0,2,2,2],[1,2,3,1]],[[1,1,2,0],[1,2,2,2],[0,2,2,2],[1,2,2,2]],[[1,1,2,0],[1,2,2,2],[0,2,4,1],[1,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,2,3,1],[2,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,2,3,1],[1,3,2,1]],[[1,1,2,0],[1,2,2,2],[0,2,3,1],[1,2,3,1]],[[1,1,2,0],[1,2,2,2],[0,2,3,1],[1,2,2,2]],[[1,1,2,0],[1,2,2,3],[0,2,3,2],[1,2,1,1]],[[1,1,2,0],[1,2,2,2],[0,2,4,2],[1,2,1,1]],[[1,1,2,0],[1,2,2,2],[0,2,3,3],[1,2,1,1]],[[1,1,2,0],[1,2,2,2],[0,2,3,2],[1,2,1,2]],[[1,1,2,0],[1,2,2,3],[0,2,3,2],[1,2,2,0]],[[1,1,2,0],[1,2,2,2],[0,2,4,2],[1,2,2,0]],[[1,1,2,0],[1,2,2,2],[0,2,3,3],[1,2,2,0]],[[1,1,2,0],[1,2,2,2],[0,2,3,2],[2,2,2,0]],[[1,1,2,0],[1,2,2,2],[0,2,3,2],[1,3,2,0]],[[1,1,2,0],[1,2,2,2],[0,2,3,2],[1,2,3,0]],[[1,1,2,0],[1,2,2,3],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,4,1,2],[1,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,1,3],[1,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,1,2],[2,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,1,2],[1,3,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,1,2],[1,2,3,1]],[[1,1,2,0],[1,2,2,2],[0,3,1,2],[1,2,2,2]],[[1,1,2,0],[1,2,2,2],[0,4,2,1],[1,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,2,1],[2,2,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,2,1],[1,3,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,2,1],[1,2,3,1]],[[1,1,2,0],[1,2,2,2],[0,3,2,1],[1,2,2,2]],[[1,1,2,0],[1,2,2,3],[0,3,2,2],[1,1,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,2,3],[1,1,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,2,2],[1,1,3,1]],[[1,1,2,0],[1,2,2,2],[0,3,2,2],[1,1,2,2]],[[1,1,2,0],[1,2,2,2],[0,4,2,2],[1,2,2,0]],[[1,1,2,0],[1,2,2,2],[0,3,2,2],[2,2,2,0]],[[1,1,2,0],[1,2,2,2],[0,3,2,2],[1,3,2,0]],[[1,1,2,0],[1,2,2,2],[0,3,2,2],[1,2,3,0]],[[1,1,2,0],[1,2,2,2],[0,4,3,1],[1,1,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,4,1],[1,1,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,1],[1,1,3,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,1],[1,1,2,2]],[[1,1,2,0],[1,2,2,2],[0,4,3,1],[1,2,1,1]],[[1,1,2,0],[1,2,2,2],[0,3,4,1],[1,2,1,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,1],[2,2,1,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,1],[1,3,1,1]],[[1,1,2,0],[1,2,2,3],[0,3,3,2],[1,0,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,4,2],[1,0,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,3],[1,0,2,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,2],[1,0,2,2]],[[1,1,2,0],[1,2,2,3],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,2,2,2],[0,4,3,2],[1,1,1,1]],[[1,1,2,0],[1,2,2,2],[0,3,4,2],[1,1,1,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,3],[1,1,1,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,2],[1,1,1,2]],[[1,1,2,0],[1,2,2,3],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,2,2,2],[0,4,3,2],[1,1,2,0]],[[1,1,2,0],[1,2,2,2],[0,3,4,2],[1,1,2,0]],[[1,1,2,0],[1,2,2,2],[0,3,3,3],[1,1,2,0]],[[1,1,2,0],[1,2,2,2],[0,3,3,2],[1,1,3,0]],[[1,1,2,0],[1,2,2,3],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,2,2,2],[0,4,3,2],[1,2,0,1]],[[1,1,2,0],[1,2,2,2],[0,3,4,2],[1,2,0,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,3],[1,2,0,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,2],[2,2,0,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,2],[1,3,0,1]],[[1,1,2,0],[1,2,2,2],[0,3,3,2],[1,2,0,2]],[[1,1,2,0],[1,2,2,3],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[1,2,2,2],[0,4,3,2],[1,2,1,0]],[[1,1,2,0],[1,2,2,2],[0,3,4,2],[1,2,1,0]],[[1,1,2,0],[1,2,2,2],[0,3,3,3],[1,2,1,0]],[[1,1,2,0],[1,2,2,2],[0,3,3,2],[2,2,1,0]],[[1,1,2,0],[1,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,1,2,0],[1,2,2,3],[1,1,3,2],[0,2,2,1]],[[1,1,2,0],[1,2,2,2],[1,1,3,3],[0,2,2,1]],[[1,1,2,0],[1,2,2,2],[1,1,3,2],[0,2,3,1]],[[1,1,2,0],[1,2,2,2],[1,1,3,2],[0,2,2,2]],[[1,1,2,0],[1,2,2,3],[1,2,2,2],[0,2,2,1]],[[1,1,2,0],[1,2,2,2],[1,2,2,3],[0,2,2,1]],[[1,1,2,0],[1,2,2,2],[1,2,2,2],[0,3,2,1]],[[1,1,2,0],[1,2,2,2],[1,2,2,2],[0,2,3,1]],[[1,1,2,0],[1,2,2,2],[1,2,2,2],[0,2,2,2]],[[1,1,2,0],[1,2,2,2],[1,2,4,1],[0,2,2,1]],[[1,1,2,0],[1,2,2,2],[1,2,3,1],[0,3,2,1]],[[1,1,2,0],[1,2,2,2],[1,2,3,1],[0,2,3,1]],[[1,1,2,0],[1,2,2,2],[1,2,3,1],[0,2,2,2]],[[1,1,2,0],[1,2,2,3],[1,2,3,2],[0,2,1,1]],[[1,1,2,0],[1,2,2,2],[1,2,4,2],[0,2,1,1]],[[1,1,2,0],[1,2,2,2],[1,2,3,3],[0,2,1,1]],[[1,1,2,0],[1,2,2,2],[1,2,3,2],[0,2,1,2]],[[1,1,2,0],[1,2,2,3],[1,2,3,2],[0,2,2,0]],[[1,1,2,0],[1,2,2,2],[1,2,4,2],[0,2,2,0]],[[1,1,2,0],[1,2,2,2],[1,2,3,3],[0,2,2,0]],[[1,1,2,0],[1,2,2,2],[1,2,3,2],[0,3,2,0]],[[1,1,2,0],[1,2,2,2],[1,2,3,2],[0,2,3,0]],[[1,1,2,0],[1,2,2,3],[1,3,1,2],[0,2,2,1]],[[1,1,2,0],[1,2,2,2],[1,4,1,2],[0,2,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,1,3],[0,2,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,1,2],[0,3,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,1,2],[0,2,3,1]],[[1,1,2,0],[1,2,2,2],[1,3,1,2],[0,2,2,2]],[[1,1,2,0],[1,2,2,2],[1,4,2,1],[0,2,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,2,1],[0,3,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,2,1],[0,2,3,1]],[[1,1,2,0],[1,2,2,2],[1,3,2,1],[0,2,2,2]],[[1,1,2,0],[1,2,2,3],[1,3,2,2],[0,1,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,2,3],[0,1,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,2,2],[0,1,3,1]],[[1,1,2,0],[1,2,2,2],[1,3,2,2],[0,1,2,2]],[[1,1,2,0],[1,2,2,2],[1,4,2,2],[0,2,2,0]],[[1,1,2,0],[1,2,2,2],[1,3,2,2],[0,3,2,0]],[[1,1,2,0],[1,2,2,2],[1,3,2,2],[0,2,3,0]],[[1,1,2,0],[1,2,2,3],[1,3,2,2],[1,0,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,2,3],[1,0,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,2,2],[1,0,3,1]],[[1,1,2,0],[1,2,2,2],[1,3,2,2],[1,0,2,2]],[[1,1,2,0],[1,2,2,2],[1,4,3,1],[0,1,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,4,1],[0,1,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,1],[0,1,3,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,1],[0,1,2,2]],[[1,1,2,0],[1,2,2,2],[1,4,3,1],[0,2,1,1]],[[1,1,2,0],[1,2,2,2],[1,3,4,1],[0,2,1,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,1],[0,3,1,1]],[[1,1,2,0],[1,2,2,2],[1,4,3,1],[1,0,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,4,1],[1,0,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,1],[1,0,3,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,1],[1,0,2,2]],[[1,1,2,0],[1,2,2,3],[1,3,3,2],[0,0,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,4,2],[0,0,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,3],[0,0,2,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,2],[0,0,2,2]],[[1,1,2,0],[1,2,2,3],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,2,2,2],[1,4,3,2],[0,1,1,1]],[[1,1,2,0],[1,2,2,2],[1,3,4,2],[0,1,1,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,3],[0,1,1,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,2],[0,1,1,2]],[[1,1,2,0],[1,2,2,3],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,2,2,2],[1,4,3,2],[0,1,2,0]],[[1,1,2,0],[1,2,2,2],[1,3,4,2],[0,1,2,0]],[[1,1,2,0],[1,2,2,2],[1,3,3,3],[0,1,2,0]],[[1,1,2,0],[1,2,2,2],[1,3,3,2],[0,1,3,0]],[[1,1,2,0],[1,2,2,3],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,2,2,2],[1,4,3,2],[0,2,0,1]],[[1,1,2,0],[1,2,2,2],[1,3,4,2],[0,2,0,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,3],[0,2,0,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,2],[0,3,0,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,2],[0,2,0,2]],[[1,1,2,0],[1,2,2,3],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,2,2,2],[1,4,3,2],[0,2,1,0]],[[1,1,2,0],[1,2,2,2],[1,3,4,2],[0,2,1,0]],[[1,1,2,0],[1,2,2,2],[1,3,3,3],[0,2,1,0]],[[1,1,2,0],[1,2,2,2],[1,3,3,2],[0,3,1,0]],[[1,1,2,0],[1,2,2,3],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,2,2,2],[1,4,3,2],[1,0,1,1]],[[1,1,2,0],[1,2,2,2],[1,3,4,2],[1,0,1,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,3],[1,0,1,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,2],[1,0,1,2]],[[1,1,2,0],[1,2,2,3],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,2,2,2],[1,4,3,2],[1,0,2,0]],[[1,1,2,0],[1,2,2,2],[1,3,4,2],[1,0,2,0]],[[1,1,2,0],[1,2,2,2],[1,3,3,3],[1,0,2,0]],[[1,1,2,0],[1,2,2,2],[1,3,3,2],[1,0,3,0]],[[1,1,2,0],[1,2,2,3],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,2,2,2],[1,4,3,2],[1,1,0,1]],[[1,1,2,0],[1,2,2,2],[1,3,4,2],[1,1,0,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,3],[1,1,0,1]],[[1,1,2,0],[1,2,2,2],[1,3,3,2],[1,1,0,2]],[[1,1,2,0],[1,2,2,3],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,2,2,2],[1,4,3,2],[1,1,1,0]],[[1,1,2,0],[1,2,2,2],[1,3,4,2],[1,1,1,0]],[[1,1,2,0],[1,2,2,2],[1,3,3,3],[1,1,1,0]],[[1,1,2,0],[1,2,3,0],[0,2,4,2],[1,2,2,1]],[[1,1,2,0],[1,2,3,0],[0,2,3,2],[2,2,2,1]],[[1,1,2,0],[1,2,3,0],[0,2,3,2],[1,3,2,1]],[[1,1,2,0],[1,2,3,0],[0,2,3,2],[1,2,3,1]],[[1,1,2,0],[1,2,3,0],[0,2,3,2],[1,2,2,2]],[[1,1,2,0],[1,2,3,0],[0,4,2,2],[1,2,2,1]],[[1,1,2,0],[1,2,3,0],[0,3,2,2],[2,2,2,1]],[[1,1,2,0],[1,2,3,0],[0,3,2,2],[1,3,2,1]],[[1,1,2,0],[1,2,3,0],[0,3,2,2],[1,2,3,1]],[[1,1,2,0],[1,2,3,0],[0,3,2,2],[1,2,2,2]],[[1,1,2,0],[1,2,3,0],[0,4,3,2],[1,1,2,1]],[[1,1,2,0],[1,2,3,0],[0,3,4,2],[1,1,2,1]],[[1,1,2,0],[1,2,3,0],[0,3,3,2],[1,1,3,1]],[[1,1,2,0],[1,2,3,0],[0,3,3,2],[1,1,2,2]],[[1,1,2,0],[1,2,3,0],[0,4,3,2],[1,2,1,1]],[[1,1,2,0],[1,2,3,0],[0,3,4,2],[1,2,1,1]],[[1,1,2,0],[1,2,3,0],[0,3,3,2],[2,2,1,1]],[[1,1,2,0],[1,2,3,0],[0,3,3,2],[1,3,1,1]],[[1,1,2,0],[1,2,3,0],[1,2,4,2],[0,2,2,1]],[[1,1,2,0],[1,2,3,0],[1,2,3,2],[0,3,2,1]],[[1,1,2,0],[1,2,3,0],[1,2,3,2],[0,2,3,1]],[[1,1,2,0],[1,2,3,0],[1,2,3,2],[0,2,2,2]],[[1,1,2,0],[1,2,3,0],[1,4,2,2],[0,2,2,1]],[[1,1,2,0],[1,2,3,0],[1,3,2,2],[0,3,2,1]],[[1,1,2,0],[1,2,3,0],[1,3,2,2],[0,2,3,1]],[[1,1,2,0],[1,2,3,0],[1,3,2,2],[0,2,2,2]],[[1,1,2,0],[1,2,3,0],[1,4,3,2],[0,1,2,1]],[[1,1,2,0],[1,2,3,0],[1,3,4,2],[0,1,2,1]],[[1,1,2,0],[1,2,3,0],[1,3,3,2],[0,1,3,1]],[[1,1,2,0],[1,2,3,0],[1,3,3,2],[0,1,2,2]],[[1,1,2,0],[1,2,3,0],[1,4,3,2],[0,2,1,1]],[[1,1,2,0],[1,2,3,0],[1,3,4,2],[0,2,1,1]],[[1,1,2,0],[1,2,3,0],[1,3,3,2],[0,3,1,1]],[[1,1,2,0],[1,2,3,0],[1,4,3,2],[1,0,2,1]],[[1,1,2,0],[1,2,3,0],[1,3,4,2],[1,0,2,1]],[[1,1,2,0],[1,2,3,0],[1,3,3,2],[1,0,3,1]],[[1,1,2,0],[1,2,3,0],[1,3,3,2],[1,0,2,2]],[[1,1,2,0],[1,2,3,1],[0,1,3,3],[1,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,1,3,2],[1,2,3,1]],[[1,1,2,0],[1,2,3,1],[0,1,3,2],[1,2,2,2]],[[1,1,2,0],[1,2,3,1],[0,2,2,3],[1,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,2,2,2],[2,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,2,2,2],[1,3,2,1]],[[1,1,2,0],[1,2,3,1],[0,2,2,2],[1,2,3,1]],[[1,1,2,0],[1,2,3,1],[0,2,2,2],[1,2,2,2]],[[1,1,3,0],[1,2,3,1],[0,2,3,1],[1,2,2,1]],[[1,1,2,0],[1,2,4,1],[0,2,3,1],[1,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,2,4,1],[1,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,2,3,1],[2,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,2,3,1],[1,3,2,1]],[[1,1,2,0],[1,2,3,1],[0,2,3,1],[1,2,3,1]],[[1,1,2,0],[1,2,3,1],[0,2,3,1],[1,2,2,2]],[[1,1,3,0],[1,2,3,1],[0,2,3,2],[1,2,1,1]],[[1,1,2,0],[1,2,4,1],[0,2,3,2],[1,2,1,1]],[[1,1,2,0],[1,2,3,1],[0,2,4,2],[1,2,1,1]],[[1,1,2,0],[1,2,3,1],[0,2,3,3],[1,2,1,1]],[[1,1,2,0],[1,2,3,1],[0,2,3,2],[1,2,1,2]],[[1,1,3,0],[1,2,3,1],[0,2,3,2],[1,2,2,0]],[[1,1,2,0],[1,2,4,1],[0,2,3,2],[1,2,2,0]],[[1,1,2,0],[1,2,3,1],[0,2,4,2],[1,2,2,0]],[[1,1,2,0],[1,2,3,1],[0,2,3,3],[1,2,2,0]],[[1,1,2,0],[1,2,3,1],[0,2,3,2],[2,2,2,0]],[[1,1,2,0],[1,2,3,1],[0,2,3,2],[1,3,2,0]],[[1,1,2,0],[1,2,3,1],[0,2,3,2],[1,2,3,0]],[[1,1,2,0],[1,2,3,1],[0,4,1,2],[1,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,1,3],[1,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,1,2],[2,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,1,2],[1,3,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,1,2],[1,2,3,1]],[[1,1,2,0],[1,2,3,1],[0,3,1,2],[1,2,2,2]],[[1,1,2,0],[1,2,3,1],[0,4,2,1],[1,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,2,1],[2,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,2,1],[1,3,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,2,1],[1,2,3,1]],[[1,1,2,0],[1,2,3,1],[0,3,2,1],[1,2,2,2]],[[1,1,2,0],[1,2,3,1],[0,3,2,3],[1,1,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,2,2],[1,1,3,1]],[[1,1,2,0],[1,2,3,1],[0,3,2,2],[1,1,2,2]],[[1,1,2,0],[1,2,3,1],[0,4,2,2],[1,2,2,0]],[[1,1,2,0],[1,2,3,1],[0,3,2,2],[2,2,2,0]],[[1,1,2,0],[1,2,3,1],[0,3,2,2],[1,3,2,0]],[[1,1,2,0],[1,2,3,1],[0,3,2,2],[1,2,3,0]],[[1,1,2,0],[1,2,3,1],[0,4,3,0],[1,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,0],[2,2,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,0],[1,3,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,0],[1,2,3,1]],[[1,1,3,0],[1,2,3,1],[0,3,3,1],[1,1,2,1]],[[1,1,2,0],[1,2,4,1],[0,3,3,1],[1,1,2,1]],[[1,1,2,0],[1,2,3,1],[0,4,3,1],[1,1,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,4,1],[1,1,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,1],[1,1,3,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,1],[1,1,2,2]],[[1,1,3,0],[1,2,3,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[1,2,4,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[1,2,3,1],[0,4,3,1],[1,2,1,1]],[[1,1,2,0],[1,2,3,1],[0,3,4,1],[1,2,1,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,1],[2,2,1,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,1],[1,3,1,1]],[[1,1,3,0],[1,2,3,1],[0,3,3,2],[1,0,2,1]],[[1,1,2,0],[1,2,4,1],[0,3,3,2],[1,0,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,4,2],[1,0,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,3],[1,0,2,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,2],[1,0,2,2]],[[1,1,3,0],[1,2,3,1],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,2,4,1],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,2,3,1],[0,4,3,2],[1,1,1,1]],[[1,1,2,0],[1,2,3,1],[0,3,4,2],[1,1,1,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,3],[1,1,1,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,2],[1,1,1,2]],[[1,1,3,0],[1,2,3,1],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,2,4,1],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,2,3,1],[0,4,3,2],[1,1,2,0]],[[1,1,2,0],[1,2,3,1],[0,3,4,2],[1,1,2,0]],[[1,1,2,0],[1,2,3,1],[0,3,3,3],[1,1,2,0]],[[1,1,2,0],[1,2,3,1],[0,3,3,2],[1,1,3,0]],[[1,1,3,0],[1,2,3,1],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,2,4,1],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,2,3,1],[0,4,3,2],[1,2,0,1]],[[1,1,2,0],[1,2,3,1],[0,3,4,2],[1,2,0,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,3],[1,2,0,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,2],[2,2,0,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,2],[1,3,0,1]],[[1,1,2,0],[1,2,3,1],[0,3,3,2],[1,2,0,2]],[[1,1,3,0],[1,2,3,1],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[1,2,4,1],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[1,2,3,1],[0,4,3,2],[1,2,1,0]],[[1,1,2,0],[1,2,3,1],[0,3,4,2],[1,2,1,0]],[[1,1,2,0],[1,2,3,1],[0,3,3,3],[1,2,1,0]],[[1,1,2,0],[1,2,3,1],[0,3,3,2],[2,2,1,0]],[[1,1,2,0],[1,2,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,4,1,2],[0,3,3,2],[1,1,1,0]],[[1,3,0,1],[2,3,1,2],[0,3,3,2],[1,1,1,0]],[[2,2,0,1],[2,3,1,2],[0,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,4,1,2],[0,3,3,2],[1,1,0,1]],[[1,3,0,1],[2,3,1,2],[0,3,3,2],[1,1,0,1]],[[2,2,0,1],[2,3,1,2],[0,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,2,3,1],[1,1,3,3],[0,2,2,1]],[[1,1,2,0],[1,2,3,1],[1,1,3,2],[0,2,3,1]],[[1,1,2,0],[1,2,3,1],[1,1,3,2],[0,2,2,2]],[[1,1,2,0],[1,2,3,1],[1,2,2,3],[0,2,2,1]],[[1,1,2,0],[1,2,3,1],[1,2,2,2],[0,3,2,1]],[[1,1,2,0],[1,2,3,1],[1,2,2,2],[0,2,3,1]],[[1,1,2,0],[1,2,3,1],[1,2,2,2],[0,2,2,2]],[[1,1,3,0],[1,2,3,1],[1,2,3,1],[0,2,2,1]],[[1,1,2,0],[1,2,4,1],[1,2,3,1],[0,2,2,1]],[[1,1,2,0],[1,2,3,1],[1,2,4,1],[0,2,2,1]],[[1,1,2,0],[1,2,3,1],[1,2,3,1],[0,3,2,1]],[[1,1,2,0],[1,2,3,1],[1,2,3,1],[0,2,3,1]],[[1,1,2,0],[1,2,3,1],[1,2,3,1],[0,2,2,2]],[[1,1,3,0],[1,2,3,1],[1,2,3,2],[0,2,1,1]],[[1,1,2,0],[1,2,4,1],[1,2,3,2],[0,2,1,1]],[[1,1,2,0],[1,2,3,1],[1,2,4,2],[0,2,1,1]],[[1,1,2,0],[1,2,3,1],[1,2,3,3],[0,2,1,1]],[[1,1,2,0],[1,2,3,1],[1,2,3,2],[0,2,1,2]],[[1,1,3,0],[1,2,3,1],[1,2,3,2],[0,2,2,0]],[[1,1,2,0],[1,2,4,1],[1,2,3,2],[0,2,2,0]],[[1,1,2,0],[1,2,3,1],[1,2,4,2],[0,2,2,0]],[[1,1,2,0],[1,2,3,1],[1,2,3,3],[0,2,2,0]],[[1,1,2,0],[1,2,3,1],[1,2,3,2],[0,3,2,0]],[[1,1,2,0],[1,2,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,0,1],[2,4,1,2],[0,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,2,3,1],[1,4,1,2],[0,2,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,1,3],[0,2,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,1,2],[0,3,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,1,2],[0,2,3,1]],[[1,1,2,0],[1,2,3,1],[1,3,1,2],[0,2,2,2]],[[1,1,2,0],[1,2,3,1],[1,4,2,1],[0,2,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,2,1],[0,3,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,2,1],[0,2,3,1]],[[1,1,2,0],[1,2,3,1],[1,3,2,1],[0,2,2,2]],[[1,1,2,0],[1,2,3,1],[1,3,2,3],[0,1,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,2,2],[0,1,3,1]],[[1,1,2,0],[1,2,3,1],[1,3,2,2],[0,1,2,2]],[[1,1,2,0],[1,2,3,1],[1,4,2,2],[0,2,2,0]],[[1,1,2,0],[1,2,3,1],[1,3,2,2],[0,3,2,0]],[[1,1,2,0],[1,2,3,1],[1,3,2,2],[0,2,3,0]],[[1,1,2,0],[1,2,3,1],[1,3,2,3],[1,0,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,2,2],[1,0,3,1]],[[1,1,2,0],[1,2,3,1],[1,3,2,2],[1,0,2,2]],[[1,3,0,1],[2,3,1,2],[0,3,3,2],[1,0,2,0]],[[2,2,0,1],[2,3,1,2],[0,3,3,2],[1,0,2,0]],[[1,2,0,1],[2,4,1,2],[0,3,3,2],[1,0,1,1]],[[1,3,0,1],[2,3,1,2],[0,3,3,2],[1,0,1,1]],[[2,2,0,1],[2,3,1,2],[0,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,2,3,1],[1,4,3,0],[0,2,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,0],[0,3,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,0],[0,2,3,1]],[[1,1,3,0],[1,2,3,1],[1,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,2,4,1],[1,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,2,3,1],[1,4,3,1],[0,1,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,4,1],[0,1,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,1],[0,1,3,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,1],[0,1,2,2]],[[1,1,3,0],[1,2,3,1],[1,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,2,4,1],[1,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,2,3,1],[1,4,3,1],[0,2,1,1]],[[1,1,2,0],[1,2,3,1],[1,3,4,1],[0,2,1,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,1],[0,3,1,1]],[[1,1,3,0],[1,2,3,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,2,4,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,2,3,1],[1,4,3,1],[1,0,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,4,1],[1,0,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,1],[1,0,3,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,1],[1,0,2,2]],[[1,1,3,0],[1,2,3,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,2,4,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,2,3,1],[1,4,3,1],[1,1,1,1]],[[1,1,2,0],[1,2,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,0,1],[2,4,1,2],[0,3,3,2],[0,2,1,0]],[[1,3,0,1],[2,3,1,2],[0,3,3,2],[0,2,1,0]],[[2,2,0,1],[2,3,1,2],[0,3,3,2],[0,2,1,0]],[[1,1,3,0],[1,2,3,1],[1,3,3,2],[0,0,2,1]],[[1,1,2,0],[1,2,4,1],[1,3,3,2],[0,0,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,4,2],[0,0,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,3],[0,0,2,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,2],[0,0,2,2]],[[1,1,3,0],[1,2,3,1],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,2,4,1],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,2,3,1],[1,4,3,2],[0,1,1,1]],[[1,1,2,0],[1,2,3,1],[1,3,4,2],[0,1,1,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,3],[0,1,1,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,2],[0,1,1,2]],[[1,1,3,0],[1,2,3,1],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,2,4,1],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,2,3,1],[1,4,3,2],[0,1,2,0]],[[1,1,2,0],[1,2,3,1],[1,3,4,2],[0,1,2,0]],[[1,1,2,0],[1,2,3,1],[1,3,3,3],[0,1,2,0]],[[1,1,2,0],[1,2,3,1],[1,3,3,2],[0,1,3,0]],[[1,1,3,0],[1,2,3,1],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,2,4,1],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,2,3,1],[1,4,3,2],[0,2,0,1]],[[1,1,2,0],[1,2,3,1],[1,3,4,2],[0,2,0,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,3],[0,2,0,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,2],[0,3,0,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,2],[0,2,0,2]],[[1,1,3,0],[1,2,3,1],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,2,4,1],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,2,3,1],[1,4,3,2],[0,2,1,0]],[[1,1,2,0],[1,2,3,1],[1,3,4,2],[0,2,1,0]],[[1,1,2,0],[1,2,3,1],[1,3,3,3],[0,2,1,0]],[[1,1,2,0],[1,2,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,4,1,2],[0,3,3,2],[0,2,0,1]],[[1,3,0,1],[2,3,1,2],[0,3,3,2],[0,2,0,1]],[[2,2,0,1],[2,3,1,2],[0,3,3,2],[0,2,0,1]],[[1,2,0,1],[2,4,1,2],[0,3,3,2],[0,1,2,0]],[[1,3,0,1],[2,3,1,2],[0,3,3,2],[0,1,2,0]],[[1,1,3,0],[1,2,3,1],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,2,4,1],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,2,3,1],[1,4,3,2],[1,0,1,1]],[[1,1,2,0],[1,2,3,1],[1,3,4,2],[1,0,1,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,3],[1,0,1,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,2],[1,0,1,2]],[[1,1,3,0],[1,2,3,1],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,2,4,1],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,2,3,1],[1,4,3,2],[1,0,2,0]],[[1,1,2,0],[1,2,3,1],[1,3,4,2],[1,0,2,0]],[[1,1,2,0],[1,2,3,1],[1,3,3,3],[1,0,2,0]],[[1,1,2,0],[1,2,3,1],[1,3,3,2],[1,0,3,0]],[[1,1,3,0],[1,2,3,1],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,2,4,1],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,2,3,1],[1,4,3,2],[1,1,0,1]],[[1,1,2,0],[1,2,3,1],[1,3,4,2],[1,1,0,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,3],[1,1,0,1]],[[1,1,2,0],[1,2,3,1],[1,3,3,2],[1,1,0,2]],[[1,1,3,0],[1,2,3,1],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,2,4,1],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,2,3,1],[1,4,3,2],[1,1,1,0]],[[1,1,2,0],[1,2,3,1],[1,3,4,2],[1,1,1,0]],[[1,1,2,0],[1,2,3,1],[1,3,3,3],[1,1,1,0]],[[2,2,0,1],[2,3,1,2],[0,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,4,1,2],[0,3,3,2],[0,1,1,1]],[[1,3,0,1],[2,3,1,2],[0,3,3,2],[0,1,1,1]],[[2,2,0,1],[2,3,1,2],[0,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,4,1,2],[0,3,3,1],[1,0,2,1]],[[1,3,0,1],[2,3,1,2],[0,3,3,1],[1,0,2,1]],[[2,2,0,1],[2,3,1,2],[0,3,3,1],[1,0,2,1]],[[1,2,0,1],[2,4,1,2],[0,3,3,1],[0,2,1,1]],[[1,3,0,1],[2,3,1,2],[0,3,3,1],[0,2,1,1]],[[2,2,0,1],[2,3,1,2],[0,3,3,1],[0,2,1,1]],[[1,2,0,1],[2,4,1,2],[0,3,3,1],[0,1,2,1]],[[1,3,0,1],[2,3,1,2],[0,3,3,1],[0,1,2,1]],[[2,2,0,1],[2,3,1,2],[0,3,3,1],[0,1,2,1]],[[1,2,0,1],[2,4,1,2],[0,3,2,2],[0,2,2,0]],[[1,3,0,1],[2,3,1,2],[0,3,2,2],[0,2,2,0]],[[2,2,0,1],[2,3,1,2],[0,3,2,2],[0,2,2,0]],[[1,2,0,1],[2,4,1,2],[0,3,2,1],[0,2,2,1]],[[1,3,0,1],[2,3,1,2],[0,3,2,1],[0,2,2,1]],[[2,2,0,1],[2,3,1,2],[0,3,2,1],[0,2,2,1]],[[1,2,0,1],[2,4,1,2],[0,3,1,2],[0,2,2,1]],[[1,3,0,1],[2,3,1,2],[0,3,1,2],[0,2,2,1]],[[2,2,0,1],[2,3,1,2],[0,3,1,2],[0,2,2,1]],[[1,2,0,1],[2,3,1,1],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[2,3,1,1],[2,4,3,1],[1,2,0,0]],[[1,2,0,1],[2,3,1,1],[3,3,3,1],[1,2,0,0]],[[1,2,0,1],[3,3,1,1],[2,3,3,1],[1,2,0,0]],[[2,2,0,1],[2,3,1,1],[2,3,3,1],[1,2,0,0]],[[1,2,0,1],[2,3,1,1],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[2,3,1,1],[2,4,3,1],[1,1,1,0]],[[1,2,0,1],[2,3,1,1],[3,3,3,1],[1,1,1,0]],[[1,2,0,1],[3,3,1,1],[2,3,3,1],[1,1,1,0]],[[2,2,0,1],[2,3,1,1],[2,3,3,1],[1,1,1,0]],[[1,2,0,1],[2,3,1,1],[2,3,3,1],[2,1,0,1]],[[1,2,0,1],[2,3,1,1],[2,4,3,1],[1,1,0,1]],[[1,2,0,1],[2,3,1,1],[3,3,3,1],[1,1,0,1]],[[1,2,0,1],[3,3,1,1],[2,3,3,1],[1,1,0,1]],[[2,2,0,1],[2,3,1,1],[2,3,3,1],[1,1,0,1]],[[1,2,0,1],[2,3,1,1],[2,3,3,1],[2,0,2,0]],[[1,2,0,1],[2,3,1,1],[2,4,3,1],[1,0,2,0]],[[1,2,0,1],[2,3,1,1],[3,3,3,1],[1,0,2,0]],[[1,2,0,1],[3,3,1,1],[2,3,3,1],[1,0,2,0]],[[2,2,0,1],[2,3,1,1],[2,3,3,1],[1,0,2,0]],[[1,2,0,1],[2,3,1,1],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[2,3,1,1],[2,4,3,1],[0,2,1,0]],[[1,2,0,1],[2,3,1,1],[3,3,3,1],[0,2,1,0]],[[1,2,0,1],[3,3,1,1],[2,3,3,1],[0,2,1,0]],[[2,2,0,1],[2,3,1,1],[2,3,3,1],[0,2,1,0]],[[1,2,0,1],[2,3,1,1],[2,4,3,1],[0,2,0,1]],[[1,2,0,1],[2,3,1,1],[3,3,3,1],[0,2,0,1]],[[1,2,0,1],[3,3,1,1],[2,3,3,1],[0,2,0,1]],[[2,2,0,1],[2,3,1,1],[2,3,3,1],[0,2,0,1]],[[1,2,0,1],[2,3,1,1],[2,4,3,1],[0,1,2,0]],[[1,2,0,1],[2,3,1,1],[3,3,3,1],[0,1,2,0]],[[1,2,0,1],[3,3,1,1],[2,3,3,1],[0,1,2,0]],[[2,2,0,1],[2,3,1,1],[2,3,3,1],[0,1,2,0]],[[1,2,0,1],[2,3,1,1],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[2,3,1,1],[2,4,3,0],[1,2,0,1]],[[1,2,0,1],[2,3,1,1],[3,3,3,0],[1,2,0,1]],[[1,2,0,1],[3,3,1,1],[2,3,3,0],[1,2,0,1]],[[2,2,0,1],[2,3,1,1],[2,3,3,0],[1,2,0,1]],[[1,2,0,1],[2,3,1,1],[2,3,3,0],[2,1,1,1]],[[1,2,0,1],[2,3,1,1],[2,4,3,0],[1,1,1,1]],[[1,2,0,1],[2,3,1,1],[3,3,3,0],[1,1,1,1]],[[1,2,0,1],[3,3,1,1],[2,3,3,0],[1,1,1,1]],[[2,2,0,1],[2,3,1,1],[2,3,3,0],[1,1,1,1]],[[1,2,0,1],[2,3,1,1],[2,3,3,0],[2,0,2,1]],[[1,2,0,1],[2,3,1,1],[2,4,3,0],[1,0,2,1]],[[1,2,0,1],[2,3,1,1],[3,3,3,0],[1,0,2,1]],[[1,2,0,1],[3,3,1,1],[2,3,3,0],[1,0,2,1]],[[2,2,0,1],[2,3,1,1],[2,3,3,0],[1,0,2,1]],[[1,2,0,1],[2,3,1,1],[2,3,3,0],[0,3,1,1]],[[1,2,0,1],[2,3,1,1],[2,4,3,0],[0,2,1,1]],[[1,2,0,1],[2,3,1,1],[3,3,3,0],[0,2,1,1]],[[1,2,0,1],[3,3,1,1],[2,3,3,0],[0,2,1,1]],[[2,2,0,1],[2,3,1,1],[2,3,3,0],[0,2,1,1]],[[1,2,0,1],[2,3,1,1],[2,4,3,0],[0,1,2,1]],[[1,2,0,1],[2,3,1,1],[3,3,3,0],[0,1,2,1]],[[1,2,0,1],[3,3,1,1],[2,3,3,0],[0,1,2,1]],[[2,2,0,1],[2,3,1,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[1,2,3,3],[0,0,3,2],[1,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,0,3,3],[1,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,0,3,2],[1,2,3,1]],[[1,1,2,0],[1,2,3,2],[0,0,3,2],[1,2,2,2]],[[1,1,3,0],[1,2,3,2],[0,2,1,2],[1,2,2,1]],[[1,1,2,0],[1,2,4,2],[0,2,1,2],[1,2,2,1]],[[1,1,2,0],[1,2,3,3],[0,2,1,2],[1,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,2,1,3],[1,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,2,1,2],[2,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,2,1,2],[1,3,2,1]],[[1,1,2,0],[1,2,3,2],[0,2,1,2],[1,2,3,1]],[[1,1,2,0],[1,2,3,2],[0,2,1,2],[1,2,2,2]],[[1,1,3,0],[1,2,3,2],[0,2,2,2],[1,2,1,1]],[[1,1,2,0],[1,2,4,2],[0,2,2,2],[1,2,1,1]],[[1,1,2,0],[1,2,3,3],[0,2,2,2],[1,2,1,1]],[[1,1,2,0],[1,2,3,2],[0,2,2,3],[1,2,1,1]],[[1,1,2,0],[1,2,3,2],[0,2,2,2],[1,2,1,2]],[[1,1,3,0],[1,2,3,2],[0,2,2,2],[1,2,2,0]],[[1,1,2,0],[1,2,4,2],[0,2,2,2],[1,2,2,0]],[[1,1,2,0],[1,2,3,3],[0,2,2,2],[1,2,2,0]],[[1,1,2,0],[1,2,3,2],[0,2,2,3],[1,2,2,0]],[[1,1,3,0],[1,2,3,2],[0,2,3,0],[1,2,2,1]],[[1,1,2,0],[1,2,4,2],[0,2,3,0],[1,2,2,1]],[[1,1,2,0],[1,2,3,3],[0,2,3,0],[1,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,2,4,0],[1,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,2,3,0],[2,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,2,3,0],[1,3,2,1]],[[1,1,2,0],[1,2,3,2],[0,2,3,0],[1,2,3,1]],[[1,1,2,0],[1,2,3,2],[0,2,3,0],[1,2,2,2]],[[1,1,3,0],[1,2,3,2],[0,2,3,1],[1,2,1,1]],[[1,1,2,0],[1,2,4,2],[0,2,3,1],[1,2,1,1]],[[1,1,2,0],[1,2,3,3],[0,2,3,1],[1,2,1,1]],[[1,1,2,0],[1,2,3,2],[0,2,4,1],[1,2,1,1]],[[1,1,3,0],[1,2,3,2],[0,2,3,1],[1,2,2,0]],[[1,1,2,0],[1,2,4,2],[0,2,3,1],[1,2,2,0]],[[1,1,2,0],[1,2,3,3],[0,2,3,1],[1,2,2,0]],[[1,1,2,0],[1,2,3,2],[0,2,4,1],[1,2,2,0]],[[1,1,2,0],[1,2,3,2],[0,2,3,1],[2,2,2,0]],[[1,1,2,0],[1,2,3,2],[0,2,3,1],[1,3,2,0]],[[1,1,2,0],[1,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,0,1],[2,3,1,1],[2,3,2,1],[2,1,2,0]],[[1,1,3,0],[1,2,3,2],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,2,4,2],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,2,3,3],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,4,0,2],[1,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,0,3],[1,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,0,2],[2,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,0,2],[1,3,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,0,2],[1,2,3,1]],[[1,1,2,0],[1,2,3,2],[0,3,0,2],[1,2,2,2]],[[1,1,3,0],[1,2,3,2],[0,3,1,2],[1,1,2,1]],[[1,1,2,0],[1,2,4,2],[0,3,1,2],[1,1,2,1]],[[1,1,2,0],[1,2,3,3],[0,3,1,2],[1,1,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,1,3],[1,1,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,1,2],[1,1,3,1]],[[1,1,2,0],[1,2,3,2],[0,3,1,2],[1,1,2,2]],[[1,1,2,0],[1,2,3,2],[0,4,2,0],[1,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,2,0],[2,2,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,2,0],[1,3,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,2,0],[1,2,3,1]],[[1,1,2,0],[1,2,3,2],[0,3,2,0],[1,2,2,2]],[[1,1,2,0],[1,2,3,2],[0,4,2,1],[1,2,2,0]],[[1,1,2,0],[1,2,3,2],[0,3,2,1],[2,2,2,0]],[[1,1,2,0],[1,2,3,2],[0,3,2,1],[1,3,2,0]],[[1,1,2,0],[1,2,3,2],[0,3,2,1],[1,2,3,0]],[[1,1,3,0],[1,2,3,2],[0,3,2,2],[1,0,2,1]],[[1,1,2,0],[1,2,4,2],[0,3,2,2],[1,0,2,1]],[[1,1,2,0],[1,2,3,3],[0,3,2,2],[1,0,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,2,3],[1,0,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,2,2],[1,0,2,2]],[[1,1,3,0],[1,2,3,2],[0,3,2,2],[1,1,1,1]],[[1,1,2,0],[1,2,4,2],[0,3,2,2],[1,1,1,1]],[[1,1,2,0],[1,2,3,3],[0,3,2,2],[1,1,1,1]],[[1,1,2,0],[1,2,3,2],[0,3,2,3],[1,1,1,1]],[[1,1,2,0],[1,2,3,2],[0,3,2,2],[1,1,1,2]],[[1,1,3,0],[1,2,3,2],[0,3,2,2],[1,1,2,0]],[[1,1,2,0],[1,2,4,2],[0,3,2,2],[1,1,2,0]],[[1,1,2,0],[1,2,3,3],[0,3,2,2],[1,1,2,0]],[[1,1,2,0],[1,2,3,2],[0,3,2,3],[1,1,2,0]],[[1,1,3,0],[1,2,3,2],[0,3,2,2],[1,2,0,1]],[[1,1,2,0],[1,2,4,2],[0,3,2,2],[1,2,0,1]],[[1,1,2,0],[1,2,3,3],[0,3,2,2],[1,2,0,1]],[[1,1,2,0],[1,2,3,2],[0,3,2,3],[1,2,0,1]],[[1,1,2,0],[1,2,3,2],[0,3,2,2],[1,2,0,2]],[[1,1,3,0],[1,2,3,2],[0,3,2,2],[1,2,1,0]],[[1,1,2,0],[1,2,4,2],[0,3,2,2],[1,2,1,0]],[[1,1,2,0],[1,2,3,3],[0,3,2,2],[1,2,1,0]],[[1,1,2,0],[1,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,0,1],[2,3,1,1],[2,4,2,1],[1,1,2,0]],[[1,2,0,1],[2,3,1,1],[3,3,2,1],[1,1,2,0]],[[1,2,0,1],[3,3,1,1],[2,3,2,1],[1,1,2,0]],[[2,2,0,1],[2,3,1,1],[2,3,2,1],[1,1,2,0]],[[1,1,3,0],[1,2,3,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,0],[1,2,4,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,0],[1,2,3,3],[0,3,3,0],[1,1,2,1]],[[1,1,2,0],[1,2,3,2],[0,4,3,0],[1,1,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,4,0],[1,1,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,3,0],[1,1,3,1]],[[1,1,2,0],[1,2,3,2],[0,3,3,0],[1,1,2,2]],[[1,1,3,0],[1,2,3,2],[0,3,3,0],[1,2,1,1]],[[1,1,2,0],[1,2,4,2],[0,3,3,0],[1,2,1,1]],[[1,1,2,0],[1,2,3,3],[0,3,3,0],[1,2,1,1]],[[1,1,2,0],[1,2,3,2],[0,4,3,0],[1,2,1,1]],[[1,1,2,0],[1,2,3,2],[0,3,4,0],[1,2,1,1]],[[1,1,2,0],[1,2,3,2],[0,3,3,0],[2,2,1,1]],[[1,1,2,0],[1,2,3,2],[0,3,3,0],[1,3,1,1]],[[1,1,3,0],[1,2,3,2],[0,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,2,4,2],[0,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,2,3,3],[0,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,2,3,2],[0,3,4,1],[1,0,2,1]],[[1,1,3,0],[1,2,3,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,2,4,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,2,3,3],[0,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,2,3,2],[0,4,3,1],[1,1,1,1]],[[1,1,2,0],[1,2,3,2],[0,3,4,1],[1,1,1,1]],[[1,1,3,0],[1,2,3,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,0],[1,2,4,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,0],[1,2,3,3],[0,3,3,1],[1,1,2,0]],[[1,1,2,0],[1,2,3,2],[0,4,3,1],[1,1,2,0]],[[1,1,2,0],[1,2,3,2],[0,3,4,1],[1,1,2,0]],[[1,1,2,0],[1,2,3,2],[0,3,3,1],[1,1,3,0]],[[1,1,3,0],[1,2,3,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,0],[1,2,4,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,0],[1,2,3,3],[0,3,3,1],[1,2,0,1]],[[1,1,2,0],[1,2,3,2],[0,4,3,1],[1,2,0,1]],[[1,1,2,0],[1,2,3,2],[0,3,4,1],[1,2,0,1]],[[1,1,2,0],[1,2,3,2],[0,3,3,1],[2,2,0,1]],[[1,1,2,0],[1,2,3,2],[0,3,3,1],[1,3,0,1]],[[1,1,3,0],[1,2,3,2],[0,3,3,1],[1,2,1,0]],[[1,1,2,0],[1,2,4,2],[0,3,3,1],[1,2,1,0]],[[1,1,2,0],[1,2,3,3],[0,3,3,1],[1,2,1,0]],[[1,1,2,0],[1,2,3,2],[0,4,3,1],[1,2,1,0]],[[1,1,2,0],[1,2,3,2],[0,3,4,1],[1,2,1,0]],[[1,1,2,0],[1,2,3,2],[0,3,3,1],[2,2,1,0]],[[1,1,2,0],[1,2,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,3,1,1],[2,3,2,1],[0,3,2,0]],[[1,2,0,1],[2,3,1,1],[2,4,2,1],[0,2,2,0]],[[1,2,0,1],[2,3,1,1],[3,3,2,1],[0,2,2,0]],[[1,2,0,1],[3,3,1,1],[2,3,2,1],[0,2,2,0]],[[2,2,0,1],[2,3,1,1],[2,3,2,1],[0,2,2,0]],[[1,1,3,0],[1,2,3,2],[0,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,2,4,2],[0,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,2,3,3],[0,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,0,1],[2,3,1,1],[2,3,2,0],[2,1,2,1]],[[1,2,0,1],[2,3,1,1],[2,4,2,0],[1,1,2,1]],[[1,2,0,1],[2,3,1,1],[3,3,2,0],[1,1,2,1]],[[1,2,0,1],[3,3,1,1],[2,3,2,0],[1,1,2,1]],[[2,2,0,1],[2,3,1,1],[2,3,2,0],[1,1,2,1]],[[1,2,0,1],[2,3,1,1],[2,3,2,0],[0,2,3,1]],[[1,2,0,1],[2,3,1,1],[2,3,2,0],[0,3,2,1]],[[1,2,0,1],[2,3,1,1],[2,4,2,0],[0,2,2,1]],[[1,2,0,1],[2,3,1,1],[3,3,2,0],[0,2,2,1]],[[1,2,0,1],[3,3,1,1],[2,3,2,0],[0,2,2,1]],[[2,2,0,1],[2,3,1,1],[2,3,2,0],[0,2,2,1]],[[1,1,2,0],[1,2,3,3],[1,0,3,2],[0,2,2,1]],[[1,1,2,0],[1,2,3,2],[1,0,3,3],[0,2,2,1]],[[1,1,2,0],[1,2,3,2],[1,0,3,2],[0,2,3,1]],[[1,1,2,0],[1,2,3,2],[1,0,3,2],[0,2,2,2]],[[1,2,0,1],[2,3,1,1],[2,3,1,1],[1,3,2,0]],[[1,2,0,1],[2,3,1,1],[2,3,1,1],[2,2,2,0]],[[1,1,3,0],[1,2,3,2],[1,2,1,2],[0,2,2,1]],[[1,1,2,0],[1,2,4,2],[1,2,1,2],[0,2,2,1]],[[1,1,2,0],[1,2,3,3],[1,2,1,2],[0,2,2,1]],[[1,1,2,0],[1,2,3,2],[1,2,1,3],[0,2,2,1]],[[1,1,2,0],[1,2,3,2],[1,2,1,2],[0,3,2,1]],[[1,1,2,0],[1,2,3,2],[1,2,1,2],[0,2,3,1]],[[1,1,2,0],[1,2,3,2],[1,2,1,2],[0,2,2,2]],[[1,1,3,0],[1,2,3,2],[1,2,2,2],[0,2,1,1]],[[1,1,2,0],[1,2,4,2],[1,2,2,2],[0,2,1,1]],[[1,1,2,0],[1,2,3,3],[1,2,2,2],[0,2,1,1]],[[1,1,2,0],[1,2,3,2],[1,2,2,3],[0,2,1,1]],[[1,1,2,0],[1,2,3,2],[1,2,2,2],[0,2,1,2]],[[1,1,3,0],[1,2,3,2],[1,2,2,2],[0,2,2,0]],[[1,1,2,0],[1,2,4,2],[1,2,2,2],[0,2,2,0]],[[1,1,2,0],[1,2,3,3],[1,2,2,2],[0,2,2,0]],[[1,1,2,0],[1,2,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,0,1],[2,3,1,1],[3,3,1,1],[1,2,2,0]],[[1,2,0,1],[3,3,1,1],[2,3,1,1],[1,2,2,0]],[[2,2,0,1],[2,3,1,1],[2,3,1,1],[1,2,2,0]],[[1,2,0,1],[2,3,1,1],[2,3,1,0],[1,3,2,1]],[[1,2,0,1],[2,3,1,1],[2,3,1,0],[2,2,2,1]],[[1,2,0,1],[2,3,1,1],[3,3,1,0],[1,2,2,1]],[[1,2,0,1],[3,3,1,1],[2,3,1,0],[1,2,2,1]],[[2,2,0,1],[2,3,1,1],[2,3,1,0],[1,2,2,1]],[[1,1,3,0],[1,2,3,2],[1,2,3,0],[0,2,2,1]],[[1,1,2,0],[1,2,4,2],[1,2,3,0],[0,2,2,1]],[[1,1,2,0],[1,2,3,3],[1,2,3,0],[0,2,2,1]],[[1,1,2,0],[1,2,3,2],[1,2,4,0],[0,2,2,1]],[[1,1,2,0],[1,2,3,2],[1,2,3,0],[0,3,2,1]],[[1,1,2,0],[1,2,3,2],[1,2,3,0],[0,2,3,1]],[[1,1,2,0],[1,2,3,2],[1,2,3,0],[0,2,2,2]],[[1,1,3,0],[1,2,3,2],[1,2,3,1],[0,2,1,1]],[[1,1,2,0],[1,2,4,2],[1,2,3,1],[0,2,1,1]],[[1,1,2,0],[1,2,3,3],[1,2,3,1],[0,2,1,1]],[[1,1,2,0],[1,2,3,2],[1,2,4,1],[0,2,1,1]],[[1,1,3,0],[1,2,3,2],[1,2,3,1],[0,2,2,0]],[[1,1,2,0],[1,2,4,2],[1,2,3,1],[0,2,2,0]],[[1,1,2,0],[1,2,3,3],[1,2,3,1],[0,2,2,0]],[[1,1,2,0],[1,2,3,2],[1,2,4,1],[0,2,2,0]],[[1,1,2,0],[1,2,3,2],[1,2,3,1],[0,3,2,0]],[[1,1,2,0],[1,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,0,1],[2,3,1,1],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[2,3,1,1],[2,2,3,1],[2,2,1,0]],[[1,2,0,1],[2,3,1,1],[3,2,3,1],[1,2,1,0]],[[1,2,0,1],[3,3,1,1],[2,2,3,1],[1,2,1,0]],[[2,2,0,1],[2,3,1,1],[2,2,3,1],[1,2,1,0]],[[1,2,0,1],[2,3,1,1],[2,2,3,0],[1,3,1,1]],[[1,2,0,1],[2,3,1,1],[2,2,3,0],[2,2,1,1]],[[1,2,0,1],[2,3,1,1],[3,2,3,0],[1,2,1,1]],[[1,1,3,0],[1,2,3,2],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,2,4,2],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,2,3,3],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,2,3,2],[1,4,0,2],[0,2,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,0,3],[0,2,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,0,2],[0,3,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,0,2],[0,2,3,1]],[[1,1,2,0],[1,2,3,2],[1,3,0,2],[0,2,2,2]],[[1,1,3,0],[1,2,3,2],[1,3,1,2],[0,1,2,1]],[[1,1,2,0],[1,2,4,2],[1,3,1,2],[0,1,2,1]],[[1,1,2,0],[1,2,3,3],[1,3,1,2],[0,1,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,1,3],[0,1,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,1,2],[0,1,3,1]],[[1,1,2,0],[1,2,3,2],[1,3,1,2],[0,1,2,2]],[[1,1,3,0],[1,2,3,2],[1,3,1,2],[1,0,2,1]],[[1,1,2,0],[1,2,4,2],[1,3,1,2],[1,0,2,1]],[[1,1,2,0],[1,2,3,3],[1,3,1,2],[1,0,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,1,3],[1,0,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,1,2],[1,0,3,1]],[[1,1,2,0],[1,2,3,2],[1,3,1,2],[1,0,2,2]],[[1,2,0,1],[3,3,1,1],[2,2,3,0],[1,2,1,1]],[[2,2,0,1],[2,3,1,1],[2,2,3,0],[1,2,1,1]],[[1,1,2,0],[1,2,3,2],[1,4,2,0],[0,2,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,0],[0,3,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,0],[0,2,3,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,0],[0,2,2,2]],[[1,1,2,0],[1,2,3,2],[1,4,2,1],[0,2,2,0]],[[1,1,2,0],[1,2,3,2],[1,3,2,1],[0,3,2,0]],[[1,1,2,0],[1,2,3,2],[1,3,2,1],[0,2,3,0]],[[1,1,3,0],[1,2,3,2],[1,3,2,2],[0,0,2,1]],[[1,1,2,0],[1,2,4,2],[1,3,2,2],[0,0,2,1]],[[1,1,2,0],[1,2,3,3],[1,3,2,2],[0,0,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,3],[0,0,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,2],[0,0,2,2]],[[1,1,3,0],[1,2,3,2],[1,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,2,4,2],[1,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,2,3,3],[1,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,3],[0,1,1,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,2],[0,1,1,2]],[[1,1,3,0],[1,2,3,2],[1,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,2,4,2],[1,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,2,3,3],[1,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,2,3,2],[1,3,2,3],[0,1,2,0]],[[1,1,3,0],[1,2,3,2],[1,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,2,4,2],[1,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,2,3,3],[1,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,3],[0,2,0,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,2],[0,2,0,2]],[[1,1,3,0],[1,2,3,2],[1,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,2,4,2],[1,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,2,3,3],[1,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,0,1],[2,3,1,1],[2,2,2,1],[1,3,2,0]],[[1,2,0,1],[2,3,1,1],[2,2,2,1],[2,2,2,0]],[[1,2,0,1],[2,3,1,1],[3,2,2,1],[1,2,2,0]],[[1,2,0,1],[3,3,1,1],[2,2,2,1],[1,2,2,0]],[[2,2,0,1],[2,3,1,1],[2,2,2,1],[1,2,2,0]],[[1,2,0,1],[2,3,1,1],[2,2,2,0],[1,2,3,1]],[[1,2,0,1],[2,3,1,1],[2,2,2,0],[1,3,2,1]],[[1,1,3,0],[1,2,3,2],[1,3,2,2],[1,0,1,1]],[[1,1,2,0],[1,2,4,2],[1,3,2,2],[1,0,1,1]],[[1,1,2,0],[1,2,3,3],[1,3,2,2],[1,0,1,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,3],[1,0,1,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,2],[1,0,1,2]],[[1,1,3,0],[1,2,3,2],[1,3,2,2],[1,0,2,0]],[[1,1,2,0],[1,2,4,2],[1,3,2,2],[1,0,2,0]],[[1,1,2,0],[1,2,3,3],[1,3,2,2],[1,0,2,0]],[[1,1,2,0],[1,2,3,2],[1,3,2,3],[1,0,2,0]],[[1,1,3,0],[1,2,3,2],[1,3,2,2],[1,1,0,1]],[[1,1,2,0],[1,2,4,2],[1,3,2,2],[1,1,0,1]],[[1,1,2,0],[1,2,3,3],[1,3,2,2],[1,1,0,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,3],[1,1,0,1]],[[1,1,2,0],[1,2,3,2],[1,3,2,2],[1,1,0,2]],[[1,1,3,0],[1,2,3,2],[1,3,2,2],[1,1,1,0]],[[1,1,2,0],[1,2,4,2],[1,3,2,2],[1,1,1,0]],[[1,1,2,0],[1,2,3,3],[1,3,2,2],[1,1,1,0]],[[1,1,2,0],[1,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,0,1],[2,3,1,1],[2,2,2,0],[2,2,2,1]],[[1,2,0,1],[2,3,1,1],[3,2,2,0],[1,2,2,1]],[[1,2,0,1],[3,3,1,1],[2,2,2,0],[1,2,2,1]],[[2,2,0,1],[2,3,1,1],[2,2,2,0],[1,2,2,1]],[[1,2,0,1],[2,3,1,1],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,3,1,1],[1,3,3,1],[2,2,1,0]],[[1,1,3,0],[1,2,3,2],[1,3,3,0],[0,1,2,1]],[[1,1,2,0],[1,2,4,2],[1,3,3,0],[0,1,2,1]],[[1,1,2,0],[1,2,3,3],[1,3,3,0],[0,1,2,1]],[[1,1,2,0],[1,2,3,2],[1,4,3,0],[0,1,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,4,0],[0,1,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,3,0],[0,1,3,1]],[[1,1,2,0],[1,2,3,2],[1,3,3,0],[0,1,2,2]],[[1,1,3,0],[1,2,3,2],[1,3,3,0],[0,2,1,1]],[[1,1,2,0],[1,2,4,2],[1,3,3,0],[0,2,1,1]],[[1,1,2,0],[1,2,3,3],[1,3,3,0],[0,2,1,1]],[[1,1,2,0],[1,2,3,2],[1,4,3,0],[0,2,1,1]],[[1,1,2,0],[1,2,3,2],[1,3,4,0],[0,2,1,1]],[[1,1,2,0],[1,2,3,2],[1,3,3,0],[0,3,1,1]],[[1,1,3,0],[1,2,3,2],[1,3,3,0],[1,0,2,1]],[[1,1,2,0],[1,2,4,2],[1,3,3,0],[1,0,2,1]],[[1,1,2,0],[1,2,3,3],[1,3,3,0],[1,0,2,1]],[[1,1,2,0],[1,2,3,2],[1,4,3,0],[1,0,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,4,0],[1,0,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,3,0],[1,0,3,1]],[[1,1,2,0],[1,2,3,2],[1,3,3,0],[1,0,2,2]],[[1,1,3,0],[1,2,3,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,0],[1,2,4,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,0],[1,2,3,3],[1,3,3,0],[1,1,1,1]],[[1,1,2,0],[1,2,3,2],[1,4,3,0],[1,1,1,1]],[[1,1,2,0],[1,2,3,2],[1,3,4,0],[1,1,1,1]],[[1,2,0,1],[2,3,1,1],[1,4,3,1],[1,2,1,0]],[[1,1,3,0],[1,2,3,2],[1,3,3,1],[0,0,2,1]],[[1,1,2,0],[1,2,4,2],[1,3,3,1],[0,0,2,1]],[[1,1,2,0],[1,2,3,3],[1,3,3,1],[0,0,2,1]],[[1,1,2,0],[1,2,3,2],[1,3,4,1],[0,0,2,1]],[[1,1,3,0],[1,2,3,2],[1,3,3,1],[0,1,1,1]],[[1,1,2,0],[1,2,4,2],[1,3,3,1],[0,1,1,1]],[[1,1,2,0],[1,2,3,3],[1,3,3,1],[0,1,1,1]],[[1,1,2,0],[1,2,3,2],[1,4,3,1],[0,1,1,1]],[[1,1,2,0],[1,2,3,2],[1,3,4,1],[0,1,1,1]],[[1,1,3,0],[1,2,3,2],[1,3,3,1],[0,1,2,0]],[[1,1,2,0],[1,2,4,2],[1,3,3,1],[0,1,2,0]],[[1,1,2,0],[1,2,3,3],[1,3,3,1],[0,1,2,0]],[[1,1,2,0],[1,2,3,2],[1,4,3,1],[0,1,2,0]],[[1,1,2,0],[1,2,3,2],[1,3,4,1],[0,1,2,0]],[[1,1,2,0],[1,2,3,2],[1,3,3,1],[0,1,3,0]],[[1,1,3,0],[1,2,3,2],[1,3,3,1],[0,2,0,1]],[[1,1,2,0],[1,2,4,2],[1,3,3,1],[0,2,0,1]],[[1,1,2,0],[1,2,3,3],[1,3,3,1],[0,2,0,1]],[[1,1,2,0],[1,2,3,2],[1,4,3,1],[0,2,0,1]],[[1,1,2,0],[1,2,3,2],[1,3,4,1],[0,2,0,1]],[[1,1,2,0],[1,2,3,2],[1,3,3,1],[0,3,0,1]],[[1,1,3,0],[1,2,3,2],[1,3,3,1],[0,2,1,0]],[[1,1,2,0],[1,2,4,2],[1,3,3,1],[0,2,1,0]],[[1,1,2,0],[1,2,3,3],[1,3,3,1],[0,2,1,0]],[[1,1,2,0],[1,2,3,2],[1,4,3,1],[0,2,1,0]],[[1,1,2,0],[1,2,3,2],[1,3,4,1],[0,2,1,0]],[[1,1,2,0],[1,2,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,0,1],[2,3,1,1],[1,3,3,0],[1,3,1,1]],[[1,2,0,1],[2,3,1,1],[1,3,3,0],[2,2,1,1]],[[1,2,0,1],[2,3,1,1],[1,4,3,0],[1,2,1,1]],[[1,1,3,0],[1,2,3,2],[1,3,3,1],[1,0,1,1]],[[1,1,2,0],[1,2,4,2],[1,3,3,1],[1,0,1,1]],[[1,1,2,0],[1,2,3,3],[1,3,3,1],[1,0,1,1]],[[1,1,2,0],[1,2,3,2],[1,4,3,1],[1,0,1,1]],[[1,1,2,0],[1,2,3,2],[1,3,4,1],[1,0,1,1]],[[1,1,3,0],[1,2,3,2],[1,3,3,1],[1,0,2,0]],[[1,1,2,0],[1,2,4,2],[1,3,3,1],[1,0,2,0]],[[1,1,2,0],[1,2,3,3],[1,3,3,1],[1,0,2,0]],[[1,1,2,0],[1,2,3,2],[1,4,3,1],[1,0,2,0]],[[1,1,2,0],[1,2,3,2],[1,3,4,1],[1,0,2,0]],[[1,1,2,0],[1,2,3,2],[1,3,3,1],[1,0,3,0]],[[1,1,3,0],[1,2,3,2],[1,3,3,1],[1,1,0,1]],[[1,1,2,0],[1,2,4,2],[1,3,3,1],[1,1,0,1]],[[1,1,2,0],[1,2,3,3],[1,3,3,1],[1,1,0,1]],[[1,1,2,0],[1,2,3,2],[1,4,3,1],[1,1,0,1]],[[1,1,2,0],[1,2,3,2],[1,3,4,1],[1,1,0,1]],[[1,1,3,0],[1,2,3,2],[1,3,3,1],[1,1,1,0]],[[1,1,2,0],[1,2,4,2],[1,3,3,1],[1,1,1,0]],[[1,1,2,0],[1,2,3,3],[1,3,3,1],[1,1,1,0]],[[1,1,2,0],[1,2,3,2],[1,4,3,1],[1,1,1,0]],[[1,1,2,0],[1,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,0,1],[2,3,1,1],[1,3,2,1],[1,3,2,0]],[[1,2,0,1],[2,3,1,1],[1,3,2,1],[2,2,2,0]],[[1,2,0,1],[2,3,1,1],[1,4,2,1],[1,2,2,0]],[[1,2,0,1],[2,3,1,1],[1,3,2,0],[1,2,3,1]],[[1,2,0,1],[2,3,1,1],[1,3,2,0],[1,3,2,1]],[[1,2,0,1],[2,3,1,1],[1,3,2,0],[2,2,2,1]],[[1,2,0,1],[2,3,1,1],[1,4,2,0],[1,2,2,1]],[[1,1,3,0],[1,2,3,2],[1,3,3,2],[0,1,0,1]],[[1,1,2,0],[1,2,4,2],[1,3,3,2],[0,1,0,1]],[[1,1,2,0],[1,2,3,3],[1,3,3,2],[0,1,0,1]],[[1,1,2,0],[1,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,0,1],[2,3,1,0],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[2,3,1,0],[2,4,3,2],[1,2,0,0]],[[1,2,0,1],[2,3,1,0],[3,3,3,2],[1,2,0,0]],[[1,2,0,1],[3,3,1,0],[2,3,3,2],[1,2,0,0]],[[2,2,0,1],[2,3,1,0],[2,3,3,2],[1,2,0,0]],[[1,2,0,1],[2,3,1,0],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[2,3,1,0],[2,4,3,2],[1,1,1,0]],[[1,2,0,1],[2,3,1,0],[3,3,3,2],[1,1,1,0]],[[1,2,0,1],[3,3,1,0],[2,3,3,2],[1,1,1,0]],[[2,2,0,1],[2,3,1,0],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,3,1,0],[2,3,3,2],[2,1,0,1]],[[1,2,0,1],[2,3,1,0],[2,4,3,2],[1,1,0,1]],[[1,2,0,1],[2,3,1,0],[3,3,3,2],[1,1,0,1]],[[1,2,0,1],[3,3,1,0],[2,3,3,2],[1,1,0,1]],[[2,2,0,1],[2,3,1,0],[2,3,3,2],[1,1,0,1]],[[1,1,3,0],[1,2,3,2],[1,3,3,2],[1,0,0,1]],[[1,1,2,0],[1,2,4,2],[1,3,3,2],[1,0,0,1]],[[1,1,2,0],[1,2,3,3],[1,3,3,2],[1,0,0,1]],[[1,1,2,0],[1,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,0,1],[2,3,1,0],[2,3,3,2],[2,0,2,0]],[[1,2,0,1],[2,3,1,0],[2,4,3,2],[1,0,2,0]],[[1,2,0,1],[2,3,1,0],[3,3,3,2],[1,0,2,0]],[[1,2,0,1],[3,3,1,0],[2,3,3,2],[1,0,2,0]],[[2,2,0,1],[2,3,1,0],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[2,3,1,0],[2,3,3,2],[2,0,1,1]],[[1,2,0,1],[2,3,1,0],[2,4,3,2],[1,0,1,1]],[[1,2,0,1],[2,3,1,0],[3,3,3,2],[1,0,1,1]],[[1,2,0,1],[3,3,1,0],[2,3,3,2],[1,0,1,1]],[[2,2,0,1],[2,3,1,0],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[2,3,1,0],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,3,1,0],[2,4,3,2],[0,2,1,0]],[[1,2,0,1],[2,3,1,0],[3,3,3,2],[0,2,1,0]],[[1,2,0,1],[3,3,1,0],[2,3,3,2],[0,2,1,0]],[[2,2,0,1],[2,3,1,0],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[2,3,1,0],[2,3,3,2],[0,3,0,1]],[[1,2,0,1],[2,3,1,0],[2,4,3,2],[0,2,0,1]],[[1,2,0,1],[2,3,1,0],[3,3,3,2],[0,2,0,1]],[[1,2,0,1],[3,3,1,0],[2,3,3,2],[0,2,0,1]],[[2,2,0,1],[2,3,1,0],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[2,3,1,0],[2,4,3,2],[0,1,2,0]],[[1,2,0,1],[2,3,1,0],[3,3,3,2],[0,1,2,0]],[[1,2,0,1],[3,3,1,0],[2,3,3,2],[0,1,2,0]],[[2,2,0,1],[2,3,1,0],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,3,1,0],[2,4,3,2],[0,1,1,1]],[[1,2,0,1],[2,3,1,0],[3,3,3,2],[0,1,1,1]],[[1,2,0,1],[3,3,1,0],[2,3,3,2],[0,1,1,1]],[[2,2,0,1],[2,3,1,0],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,3,1,0],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,3,1,0],[2,4,3,1],[1,2,0,1]],[[1,2,0,1],[2,3,1,0],[3,3,3,1],[1,2,0,1]],[[1,2,0,1],[3,3,1,0],[2,3,3,1],[1,2,0,1]],[[2,2,0,1],[2,3,1,0],[2,3,3,1],[1,2,0,1]],[[1,2,0,1],[2,3,1,0],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[2,3,1,0],[2,4,3,1],[1,1,1,1]],[[1,2,0,1],[2,3,1,0],[3,3,3,1],[1,1,1,1]],[[1,2,0,1],[3,3,1,0],[2,3,3,1],[1,1,1,1]],[[2,2,0,1],[2,3,1,0],[2,3,3,1],[1,1,1,1]],[[1,2,0,1],[2,3,1,0],[2,3,3,1],[2,0,2,1]],[[1,2,0,1],[2,3,1,0],[2,4,3,1],[1,0,2,1]],[[1,2,0,1],[2,3,1,0],[3,3,3,1],[1,0,2,1]],[[1,2,0,1],[3,3,1,0],[2,3,3,1],[1,0,2,1]],[[2,2,0,1],[2,3,1,0],[2,3,3,1],[1,0,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,3,1],[0,3,1,1]],[[1,2,0,1],[2,3,1,0],[2,4,3,1],[0,2,1,1]],[[1,2,0,1],[2,3,1,0],[3,3,3,1],[0,2,1,1]],[[1,2,0,1],[3,3,1,0],[2,3,3,1],[0,2,1,1]],[[2,2,0,1],[2,3,1,0],[2,3,3,1],[0,2,1,1]],[[1,2,0,1],[2,3,1,0],[2,4,3,1],[0,1,2,1]],[[1,2,0,1],[2,3,1,0],[3,3,3,1],[0,1,2,1]],[[1,2,0,1],[3,3,1,0],[2,3,3,1],[0,1,2,1]],[[2,2,0,1],[2,3,1,0],[2,3,3,1],[0,1,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,3,0],[2,1,2,1]],[[1,2,0,1],[2,3,1,0],[2,4,3,0],[1,1,2,1]],[[1,2,0,1],[2,3,1,0],[3,3,3,0],[1,1,2,1]],[[1,2,0,1],[3,3,1,0],[2,3,3,0],[1,1,2,1]],[[2,2,0,1],[2,3,1,0],[2,3,3,0],[1,1,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,3,0],[0,2,3,1]],[[1,2,0,1],[2,3,1,0],[2,3,3,0],[0,3,2,1]],[[1,2,0,1],[2,3,1,0],[2,4,3,0],[0,2,2,1]],[[1,2,0,1],[2,3,1,0],[3,3,3,0],[0,2,2,1]],[[1,2,0,1],[3,3,1,0],[2,3,3,0],[0,2,2,1]],[[2,2,0,1],[2,3,1,0],[2,3,3,0],[0,2,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,3,1,0],[2,4,2,2],[1,1,2,0]],[[1,2,0,1],[2,3,1,0],[3,3,2,2],[1,1,2,0]],[[1,2,0,1],[3,3,1,0],[2,3,2,2],[1,1,2,0]],[[2,2,0,1],[2,3,1,0],[2,3,2,2],[1,1,2,0]],[[1,2,0,1],[2,3,1,0],[2,3,2,2],[0,2,3,0]],[[1,2,0,1],[2,3,1,0],[2,3,2,2],[0,3,2,0]],[[1,2,0,1],[2,3,1,0],[2,4,2,2],[0,2,2,0]],[[1,2,0,1],[2,3,1,0],[3,3,2,2],[0,2,2,0]],[[1,2,0,1],[3,3,1,0],[2,3,2,2],[0,2,2,0]],[[2,2,0,1],[2,3,1,0],[2,3,2,2],[0,2,2,0]],[[1,2,0,1],[2,3,1,0],[2,3,2,1],[2,1,2,1]],[[1,2,0,1],[2,3,1,0],[2,4,2,1],[1,1,2,1]],[[1,2,0,1],[2,3,1,0],[3,3,2,1],[1,1,2,1]],[[1,2,0,1],[3,3,1,0],[2,3,2,1],[1,1,2,1]],[[2,2,0,1],[2,3,1,0],[2,3,2,1],[1,1,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,2,1],[0,2,2,2]],[[1,2,0,1],[2,3,1,0],[2,3,2,1],[0,2,3,1]],[[1,2,0,1],[2,3,1,0],[2,3,2,1],[0,3,2,1]],[[1,2,0,1],[2,3,1,0],[2,4,2,1],[0,2,2,1]],[[1,2,0,1],[2,3,1,0],[3,3,2,1],[0,2,2,1]],[[1,2,0,1],[3,3,1,0],[2,3,2,1],[0,2,2,1]],[[2,2,0,1],[2,3,1,0],[2,3,2,1],[0,2,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,2,0],[1,3,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,2,0],[2,2,2,1]],[[1,2,0,1],[2,3,1,0],[3,3,2,0],[1,2,2,1]],[[1,2,0,1],[3,3,1,0],[2,3,2,0],[1,2,2,1]],[[2,2,0,1],[2,3,1,0],[2,3,2,0],[1,2,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,1,2],[1,3,2,0]],[[1,2,0,1],[2,3,1,0],[2,3,1,2],[2,2,2,0]],[[1,2,0,1],[2,3,1,0],[3,3,1,2],[1,2,2,0]],[[1,2,0,1],[3,3,1,0],[2,3,1,2],[1,2,2,0]],[[2,2,0,1],[2,3,1,0],[2,3,1,2],[1,2,2,0]],[[1,2,0,1],[2,3,1,0],[2,3,1,2],[2,1,2,1]],[[1,2,0,1],[2,3,1,0],[2,4,1,2],[1,1,2,1]],[[1,2,0,1],[2,3,1,0],[3,3,1,2],[1,1,2,1]],[[1,2,0,1],[3,3,1,0],[2,3,1,2],[1,1,2,1]],[[2,2,0,1],[2,3,1,0],[2,3,1,2],[1,1,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,1,2],[0,2,2,2]],[[1,2,0,1],[2,3,1,0],[2,3,1,2],[0,2,3,1]],[[1,2,0,1],[2,3,1,0],[2,3,1,2],[0,3,2,1]],[[1,2,0,1],[2,3,1,0],[2,4,1,2],[0,2,2,1]],[[1,2,0,1],[2,3,1,0],[3,3,1,2],[0,2,2,1]],[[1,2,0,1],[3,3,1,0],[2,3,1,2],[0,2,2,1]],[[2,2,0,1],[2,3,1,0],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,1,1],[1,3,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,1,1],[2,2,2,1]],[[1,2,0,1],[2,3,1,0],[3,3,1,1],[1,2,2,1]],[[1,2,0,1],[3,3,1,0],[2,3,1,1],[1,2,2,1]],[[2,2,0,1],[2,3,1,0],[2,3,1,1],[1,2,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,0,2],[1,3,2,1]],[[1,2,0,1],[2,3,1,0],[2,3,0,2],[2,2,2,1]],[[1,2,0,1],[2,3,1,0],[3,3,0,2],[1,2,2,1]],[[1,2,0,1],[3,3,1,0],[2,3,0,2],[1,2,2,1]],[[2,2,0,1],[2,3,1,0],[2,3,0,2],[1,2,2,1]],[[1,2,0,1],[2,3,1,0],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[2,3,1,0],[2,2,3,2],[2,2,1,0]],[[1,2,0,1],[2,3,1,0],[3,2,3,2],[1,2,1,0]],[[1,2,0,1],[3,3,1,0],[2,2,3,2],[1,2,1,0]],[[2,2,0,1],[2,3,1,0],[2,2,3,2],[1,2,1,0]],[[1,2,0,1],[2,3,1,0],[2,2,3,2],[1,3,0,1]],[[1,2,0,1],[2,3,1,0],[2,2,3,2],[2,2,0,1]],[[1,2,0,1],[2,3,1,0],[3,2,3,2],[1,2,0,1]],[[1,2,0,1],[3,3,1,0],[2,2,3,2],[1,2,0,1]],[[2,2,0,1],[2,3,1,0],[2,2,3,2],[1,2,0,1]],[[1,2,0,1],[2,3,1,0],[2,2,3,1],[1,3,1,1]],[[1,2,0,1],[2,3,1,0],[2,2,3,1],[2,2,1,1]],[[1,2,0,1],[2,3,1,0],[3,2,3,1],[1,2,1,1]],[[1,2,0,1],[3,3,1,0],[2,2,3,1],[1,2,1,1]],[[2,2,0,1],[2,3,1,0],[2,2,3,1],[1,2,1,1]],[[1,2,0,1],[2,3,1,0],[2,2,3,0],[1,2,3,1]],[[1,2,0,1],[2,3,1,0],[2,2,3,0],[1,3,2,1]],[[1,2,0,1],[2,3,1,0],[2,2,3,0],[2,2,2,1]],[[1,2,0,1],[2,3,1,0],[3,2,3,0],[1,2,2,1]],[[1,2,0,1],[3,3,1,0],[2,2,3,0],[1,2,2,1]],[[2,2,0,1],[2,3,1,0],[2,2,3,0],[1,2,2,1]],[[1,2,0,1],[2,3,1,0],[2,2,2,2],[1,2,3,0]],[[1,2,0,1],[2,3,1,0],[2,2,2,2],[1,3,2,0]],[[1,2,0,1],[2,3,1,0],[2,2,2,2],[2,2,2,0]],[[1,2,0,1],[2,3,1,0],[3,2,2,2],[1,2,2,0]],[[1,2,0,1],[3,3,1,0],[2,2,2,2],[1,2,2,0]],[[2,2,0,1],[2,3,1,0],[2,2,2,2],[1,2,2,0]],[[1,2,0,1],[2,3,1,0],[2,2,2,1],[1,2,2,2]],[[1,2,0,1],[2,3,1,0],[2,2,2,1],[1,2,3,1]],[[1,2,0,1],[2,3,1,0],[2,2,2,1],[1,3,2,1]],[[1,2,0,1],[2,3,1,0],[2,2,2,1],[2,2,2,1]],[[1,2,0,1],[2,3,1,0],[3,2,2,1],[1,2,2,1]],[[1,2,0,1],[3,3,1,0],[2,2,2,1],[1,2,2,1]],[[2,2,0,1],[2,3,1,0],[2,2,2,1],[1,2,2,1]],[[1,2,0,1],[2,3,1,0],[2,2,1,2],[1,2,2,2]],[[1,2,0,1],[2,3,1,0],[2,2,1,2],[1,2,3,1]],[[1,2,0,1],[2,3,1,0],[2,2,1,2],[1,3,2,1]],[[1,2,0,1],[2,3,1,0],[2,2,1,2],[2,2,2,1]],[[1,2,0,1],[2,3,1,0],[3,2,1,2],[1,2,2,1]],[[1,2,0,1],[3,3,1,0],[2,2,1,2],[1,2,2,1]],[[2,2,0,1],[2,3,1,0],[2,2,1,2],[1,2,2,1]],[[1,2,0,1],[2,3,1,0],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,3,1,0],[1,3,3,2],[2,2,1,0]],[[1,2,0,1],[2,3,1,0],[1,4,3,2],[1,2,1,0]],[[1,2,0,1],[2,3,1,0],[1,3,3,2],[1,3,0,1]],[[1,2,0,1],[2,3,1,0],[1,3,3,2],[2,2,0,1]],[[1,2,0,1],[2,3,1,0],[1,4,3,2],[1,2,0,1]],[[1,2,0,1],[2,3,1,0],[1,3,3,2],[0,2,3,0]],[[1,2,0,1],[2,3,1,0],[1,3,3,2],[0,3,2,0]],[[1,2,0,1],[2,3,1,0],[1,4,3,2],[0,2,2,0]],[[1,2,0,1],[2,3,1,0],[1,3,3,1],[1,3,1,1]],[[1,2,0,1],[2,3,1,0],[1,3,3,1],[2,2,1,1]],[[1,2,0,1],[2,3,1,0],[1,4,3,1],[1,2,1,1]],[[1,2,0,1],[2,3,1,0],[1,3,3,1],[0,2,2,2]],[[1,2,0,1],[2,3,1,0],[1,3,3,1],[0,2,3,1]],[[1,2,0,1],[2,3,1,0],[1,3,3,1],[0,3,2,1]],[[1,2,0,1],[2,3,1,0],[1,4,3,1],[0,2,2,1]],[[1,2,0,1],[2,3,1,0],[1,3,3,0],[1,2,3,1]],[[1,2,0,1],[2,3,1,0],[1,3,3,0],[1,3,2,1]],[[1,2,0,1],[2,3,1,0],[1,3,3,0],[2,2,2,1]],[[1,2,0,1],[2,3,1,0],[1,4,3,0],[1,2,2,1]],[[1,2,0,1],[2,3,1,0],[1,3,2,2],[1,2,3,0]],[[1,2,0,1],[2,3,1,0],[1,3,2,2],[1,3,2,0]],[[1,2,0,1],[2,3,1,0],[1,3,2,2],[2,2,2,0]],[[1,2,0,1],[2,3,1,0],[1,4,2,2],[1,2,2,0]],[[1,2,0,1],[2,3,1,0],[1,3,2,1],[1,2,2,2]],[[1,2,0,1],[2,3,1,0],[1,3,2,1],[1,2,3,1]],[[1,2,0,1],[2,3,1,0],[1,3,2,1],[1,3,2,1]],[[1,2,0,1],[2,3,1,0],[1,3,2,1],[2,2,2,1]],[[1,2,0,1],[2,3,1,0],[1,4,2,1],[1,2,2,1]],[[1,2,0,1],[2,3,1,0],[1,3,1,2],[1,2,2,2]],[[1,2,0,1],[2,3,1,0],[1,3,1,2],[1,2,3,1]],[[1,2,0,1],[2,3,1,0],[1,3,1,2],[1,3,2,1]],[[1,2,0,1],[2,3,1,0],[1,3,1,2],[2,2,2,1]],[[1,2,0,1],[2,3,1,0],[1,4,1,2],[1,2,2,1]],[[1,2,0,1],[2,3,1,0],[0,3,3,2],[1,2,3,0]],[[1,2,0,1],[2,3,1,0],[0,3,3,2],[1,3,2,0]],[[1,2,0,1],[2,3,1,0],[0,3,3,2],[2,2,2,0]],[[1,2,0,1],[2,3,1,0],[0,4,3,2],[1,2,2,0]],[[1,2,0,1],[2,3,1,0],[0,3,3,1],[1,2,2,2]],[[1,2,0,1],[2,3,1,0],[0,3,3,1],[1,2,3,1]],[[1,2,0,1],[2,3,1,0],[0,3,3,1],[1,3,2,1]],[[1,2,0,1],[2,3,1,0],[0,3,3,1],[2,2,2,1]],[[1,2,0,1],[2,3,1,0],[0,4,3,1],[1,2,2,1]],[[1,2,0,1],[2,3,0,0],[2,3,3,2],[2,1,2,0]],[[1,2,0,1],[2,3,0,0],[2,4,3,2],[1,1,2,0]],[[1,2,0,1],[2,3,0,0],[3,3,3,2],[1,1,2,0]],[[1,2,0,1],[3,3,0,0],[2,3,3,2],[1,1,2,0]],[[2,2,0,1],[2,3,0,0],[2,3,3,2],[1,1,2,0]],[[1,2,0,1],[2,3,0,0],[2,3,3,2],[0,2,3,0]],[[1,2,0,1],[2,3,0,0],[2,3,3,2],[0,3,2,0]],[[1,2,0,1],[2,3,0,0],[2,4,3,2],[0,2,2,0]],[[1,2,0,1],[2,3,0,0],[3,3,3,2],[0,2,2,0]],[[1,2,0,1],[3,3,0,0],[2,3,3,2],[0,2,2,0]],[[2,2,0,1],[2,3,0,0],[2,3,3,2],[0,2,2,0]],[[1,2,0,1],[2,3,0,0],[2,3,3,1],[2,1,2,1]],[[1,2,0,1],[2,3,0,0],[2,4,3,1],[1,1,2,1]],[[1,2,0,1],[2,3,0,0],[3,3,3,1],[1,1,2,1]],[[1,2,0,1],[3,3,0,0],[2,3,3,1],[1,1,2,1]],[[2,2,0,1],[2,3,0,0],[2,3,3,1],[1,1,2,1]],[[1,2,0,1],[2,3,0,0],[2,3,3,1],[0,2,2,2]],[[1,2,0,1],[2,3,0,0],[2,3,3,1],[0,2,3,1]],[[1,2,0,1],[2,3,0,0],[2,3,3,1],[0,3,2,1]],[[1,2,0,1],[2,3,0,0],[2,4,3,1],[0,2,2,1]],[[1,2,0,1],[2,3,0,0],[3,3,3,1],[0,2,2,1]],[[1,2,0,1],[3,3,0,0],[2,3,3,1],[0,2,2,1]],[[2,2,0,1],[2,3,0,0],[2,3,3,1],[0,2,2,1]],[[1,2,0,1],[2,3,0,0],[2,3,3,0],[1,3,2,1]],[[1,2,0,1],[2,3,0,0],[2,3,3,0],[2,2,2,1]],[[1,2,0,1],[2,3,0,0],[3,3,3,0],[1,2,2,1]],[[1,2,0,1],[3,3,0,0],[2,3,3,0],[1,2,2,1]],[[2,2,0,1],[2,3,0,0],[2,3,3,0],[1,2,2,1]],[[1,2,0,1],[2,3,0,0],[2,3,2,2],[1,3,2,0]],[[1,2,0,1],[2,3,0,0],[2,3,2,2],[2,2,2,0]],[[1,2,0,1],[2,3,0,0],[3,3,2,2],[1,2,2,0]],[[1,2,0,1],[3,3,0,0],[2,3,2,2],[1,2,2,0]],[[2,2,0,1],[2,3,0,0],[2,3,2,2],[1,2,2,0]],[[1,2,0,1],[2,3,0,0],[2,3,2,1],[1,3,2,1]],[[1,2,0,1],[2,3,0,0],[2,3,2,1],[2,2,2,1]],[[1,2,0,1],[2,3,0,0],[3,3,2,1],[1,2,2,1]],[[1,2,0,1],[3,3,0,0],[2,3,2,1],[1,2,2,1]],[[2,2,0,1],[2,3,0,0],[2,3,2,1],[1,2,2,1]],[[1,2,0,1],[2,3,0,0],[2,2,3,2],[1,2,3,0]],[[1,2,0,1],[2,3,0,0],[2,2,3,2],[1,3,2,0]],[[1,2,0,1],[2,3,0,0],[2,2,3,2],[2,2,2,0]],[[1,2,0,1],[2,3,0,0],[3,2,3,2],[1,2,2,0]],[[1,2,0,1],[3,3,0,0],[2,2,3,2],[1,2,2,0]],[[2,2,0,1],[2,3,0,0],[2,2,3,2],[1,2,2,0]],[[1,2,0,1],[2,3,0,0],[2,2,3,1],[1,2,2,2]],[[1,2,0,1],[2,3,0,0],[2,2,3,1],[1,2,3,1]],[[1,2,0,1],[2,3,0,0],[2,2,3,1],[1,3,2,1]],[[1,2,0,1],[2,3,0,0],[2,2,3,1],[2,2,2,1]],[[1,2,0,1],[2,3,0,0],[3,2,3,1],[1,2,2,1]],[[1,2,0,1],[3,3,0,0],[2,2,3,1],[1,2,2,1]],[[2,2,0,1],[2,3,0,0],[2,2,3,1],[1,2,2,1]],[[1,2,0,1],[2,3,0,0],[1,3,3,2],[1,2,3,0]],[[1,2,0,1],[2,3,0,0],[1,3,3,2],[1,3,2,0]],[[1,2,0,1],[2,3,0,0],[1,3,3,2],[2,2,2,0]],[[1,2,0,1],[2,3,0,0],[1,4,3,2],[1,2,2,0]],[[1,2,0,1],[2,3,0,0],[1,3,3,1],[1,2,2,2]],[[1,2,0,1],[2,3,0,0],[1,3,3,1],[1,2,3,1]],[[1,2,0,1],[2,3,0,0],[1,3,3,1],[1,3,2,1]],[[1,2,0,1],[2,3,0,0],[1,3,3,1],[2,2,2,1]],[[1,2,0,1],[2,3,0,0],[1,4,3,1],[1,2,2,1]],[[1,2,0,1],[2,2,3,2],[3,3,3,1],[1,0,0,0]],[[1,2,0,1],[3,2,3,2],[2,3,3,1],[1,0,0,0]],[[1,3,0,1],[2,2,3,2],[2,3,3,1],[1,0,0,0]],[[2,2,0,1],[2,2,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,2,0],[1,3,0,0],[1,4,3,2],[1,2,2,1]],[[1,1,2,0],[1,3,0,0],[1,3,3,2],[2,2,2,1]],[[1,1,2,0],[1,3,0,0],[1,3,3,2],[1,3,2,1]],[[1,1,2,0],[1,3,0,0],[1,3,3,2],[1,2,3,1]],[[1,1,2,0],[1,3,0,0],[1,3,3,2],[1,2,2,2]],[[1,1,2,0],[1,3,0,0],[3,2,3,2],[1,2,2,1]],[[1,1,2,0],[1,3,0,0],[2,2,3,2],[2,2,2,1]],[[1,1,2,0],[1,3,0,0],[2,2,3,2],[1,3,2,1]],[[1,1,2,0],[1,3,0,0],[2,2,3,2],[1,2,3,1]],[[1,1,2,0],[1,3,0,0],[2,2,3,2],[1,2,2,2]],[[1,1,2,0],[1,3,0,0],[3,3,3,2],[0,2,2,1]],[[1,1,2,0],[1,3,0,0],[2,4,3,2],[0,2,2,1]],[[1,1,2,0],[1,3,0,0],[2,3,3,2],[0,3,2,1]],[[1,1,2,0],[1,3,0,0],[2,3,3,2],[0,2,3,1]],[[1,1,2,0],[1,3,0,0],[2,3,3,2],[0,2,2,2]],[[1,1,2,0],[1,3,0,0],[3,3,3,2],[1,1,2,1]],[[1,1,2,0],[1,3,0,0],[2,4,3,2],[1,1,2,1]],[[1,1,2,0],[1,3,0,0],[2,3,3,2],[2,1,2,1]],[[1,1,2,0],[1,3,0,1],[1,4,3,1],[1,2,2,1]],[[1,1,2,0],[1,3,0,1],[1,3,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,0,1],[1,3,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,0,1],[1,3,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,0,1],[1,3,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,0,1],[1,4,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,0,1],[1,3,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,0,1],[1,3,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,0,1],[1,3,3,2],[1,2,3,0]],[[1,1,2,0],[1,3,0,1],[3,2,3,1],[1,2,2,1]],[[1,1,2,0],[1,3,0,1],[2,2,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,0,1],[2,2,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,0,1],[2,2,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,0,1],[2,2,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,0,1],[3,2,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,0,1],[2,2,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,0,1],[2,2,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,0,1],[2,2,3,2],[1,2,3,0]],[[1,1,2,0],[1,3,0,1],[3,3,3,1],[0,2,2,1]],[[1,1,2,0],[1,3,0,1],[2,4,3,1],[0,2,2,1]],[[1,1,2,0],[1,3,0,1],[2,3,3,1],[0,3,2,1]],[[1,1,2,0],[1,3,0,1],[2,3,3,1],[0,2,3,1]],[[1,1,2,0],[1,3,0,1],[2,3,3,1],[0,2,2,2]],[[1,1,2,0],[1,3,0,1],[3,3,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,0,1],[2,4,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,0,1],[2,3,3,1],[2,1,2,1]],[[1,1,2,0],[1,3,0,1],[3,3,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,0,1],[2,4,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,0,1],[2,3,3,2],[0,3,2,0]],[[1,1,2,0],[1,3,0,1],[2,3,3,2],[0,2,3,0]],[[1,1,2,0],[1,3,0,1],[3,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,0,1],[2,4,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,0,1],[2,3,3,2],[2,1,2,0]],[[1,1,2,0],[1,3,0,2],[0,2,3,3],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[0,2,3,2],[1,3,2,1]],[[1,1,2,0],[1,3,0,2],[0,2,3,2],[1,2,3,1]],[[1,1,2,0],[1,3,0,2],[0,2,3,2],[1,2,2,2]],[[1,1,2,0],[1,3,0,2],[0,3,3,3],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[0,3,3,2],[1,1,3,1]],[[1,1,2,0],[1,3,0,2],[0,3,3,2],[1,1,2,2]],[[1,1,2,0],[1,3,0,3],[1,2,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,2,2,3],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,2,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,2,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,0,2],[1,2,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,0,2],[1,2,2,2],[1,2,2,2]],[[1,1,2,0],[1,3,0,2],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,0,2],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,0,2],[1,2,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,0,2],[1,2,3,3],[0,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,2,3,2],[0,2,3,1]],[[1,1,2,0],[1,3,0,2],[1,2,3,2],[0,2,2,2]],[[1,1,2,0],[1,3,0,3],[1,2,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,0,2],[1,2,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,0,2],[1,2,3,3],[1,2,1,1]],[[1,1,2,0],[1,3,0,2],[1,2,3,2],[1,2,1,2]],[[1,1,2,0],[1,3,0,3],[1,2,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,0,2],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[1,3,0,2],[1,2,3,3],[1,2,2,0]],[[1,1,2,0],[1,3,0,2],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,0,2],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,0,2],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[1,4,0,2],[1,3,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,0,3],[1,3,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,4,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,1,3],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,1,2],[2,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,1,2],[1,3,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,1,2],[1,2,3,1]],[[1,1,2,0],[1,3,0,2],[1,3,1,2],[1,2,2,2]],[[1,1,2,0],[1,4,0,2],[1,3,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[1,3,0,2],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[1,3,0,3],[1,3,2,2],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,2,3],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,2,2],[1,1,3,1]],[[1,1,2,0],[1,3,0,2],[1,3,2,2],[1,1,2,2]],[[1,1,2,0],[1,4,0,2],[1,3,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,0,2],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,0,2],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[1,3,0,2],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[1,3,0,2],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[1,4,0,2],[1,3,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[1,4,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,1],[1,1,2,2]],[[1,1,2,0],[1,4,0,2],[1,3,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,0,2],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,0,2],[1,3,4,1],[1,2,1,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,1],[1,3,1,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,3],[0,1,2,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,2],[0,1,3,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,2],[0,1,2,2]],[[1,1,2,0],[1,4,0,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,0,3],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,0,2],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,0,2],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,3],[1,1,1,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,2],[1,1,1,2]],[[1,1,2,0],[1,4,0,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,0,3],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,0,2],[1,4,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,0,2],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[1,3,0,2],[1,3,3,3],[1,1,2,0]],[[1,1,2,0],[1,3,0,2],[1,3,3,2],[1,1,3,0]],[[1,1,2,0],[1,4,0,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,0,3],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,0,2],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,0,2],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,3],[1,2,0,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[1,3,0,2],[1,3,3,2],[1,2,0,2]],[[1,1,2,0],[1,4,0,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,0,3],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,0,2],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,0,2],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[1,3,0,2],[1,3,3,3],[1,2,1,0]],[[1,1,2,0],[1,3,0,2],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[1,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,1,2,0],[1,3,0,3],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[3,1,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,1,2,3],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,0,2],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,0,2],[2,1,2,2],[1,2,2,2]],[[1,1,2,0],[1,3,0,2],[3,1,3,1],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,0,2],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,0,2],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,0,3],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,0,2],[2,1,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,0,2],[2,1,3,3],[1,2,1,1]],[[1,1,2,0],[1,3,0,2],[2,1,3,2],[1,2,1,2]],[[1,1,2,0],[1,3,0,3],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,0,2],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,1,3,3],[1,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,0,2],[2,1,3,2],[1,2,3,0]],[[1,1,2,0],[1,3,0,3],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[3,2,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,1,3],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,1,2],[2,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,1,2],[1,3,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[1,3,0,2],[2,2,1,2],[1,2,2,2]],[[1,1,2,0],[1,3,0,2],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[1,3,0,2],[2,2,2,1],[1,2,2,2]],[[1,1,2,0],[1,3,0,3],[2,2,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,2,2],[0,3,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,2,2],[0,2,3,1]],[[1,1,2,0],[1,3,0,2],[2,2,2,2],[0,2,2,2]],[[1,1,2,0],[1,3,0,2],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[1,3,0,2],[2,2,2,2],[1,2,3,0]],[[1,1,2,0],[1,3,0,2],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[1,3,0,2],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[1,3,0,2],[2,2,3,1],[0,2,2,2]],[[1,1,2,0],[1,3,0,2],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,0,2],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[1,3,0,2],[2,2,3,1],[1,3,1,1]],[[1,1,2,0],[1,3,0,3],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,0,2],[2,2,4,2],[0,2,1,1]],[[1,1,2,0],[1,3,0,2],[2,2,3,3],[0,2,1,1]],[[1,1,2,0],[1,3,0,2],[2,2,3,2],[0,2,1,2]],[[1,1,2,0],[1,3,0,3],[2,2,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,2,3,3],[0,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[1,3,0,2],[2,2,3,2],[0,2,3,0]],[[1,1,2,0],[1,3,0,2],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,0,2],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[1,3,0,2],[2,2,3,2],[1,3,0,1]],[[1,1,2,0],[1,3,0,2],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,0,2],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[1,3,0,2],[2,2,3,2],[1,3,1,0]],[[1,1,2,0],[1,3,0,2],[3,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,0,2],[2,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,0,2],[1,3,2,1]],[[1,1,2,0],[1,3,0,2],[3,3,1,1],[1,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,1,1],[2,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,1,1],[1,3,2,1]],[[1,1,2,0],[1,4,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,0,3],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,0,2],[3,3,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,4,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,1,3],[0,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,1,2],[0,3,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,1,2],[0,2,3,1]],[[1,1,2,0],[1,3,0,2],[2,3,1,2],[0,2,2,2]],[[1,1,2,0],[1,4,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[3,3,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[2,4,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,1,2],[2,1,2,1]],[[1,1,2,0],[1,3,0,2],[3,3,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,1,2],[2,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,1,2],[1,3,2,0]],[[1,1,2,0],[1,4,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,0,2],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[1,3,0,2],[2,3,2,1],[0,2,2,2]],[[1,1,2,0],[1,4,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,2,1],[2,1,2,1]],[[1,1,2,0],[1,3,0,3],[2,3,2,2],[0,1,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,2,3],[0,1,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,2,2],[0,1,3,1]],[[1,1,2,0],[1,3,0,2],[2,3,2,2],[0,1,2,2]],[[1,1,2,0],[1,4,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,0,2],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,2,2],[0,2,3,0]],[[1,1,2,0],[1,3,0,3],[2,3,2,2],[1,0,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,2,3],[1,0,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,2,2],[1,0,3,1]],[[1,1,2,0],[1,3,0,2],[2,3,2,2],[1,0,2,2]],[[1,1,2,0],[1,4,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,0,2],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,0,2],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,2,2],[2,1,2,0]],[[1,1,2,0],[1,4,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,0,2],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,0,2],[2,4,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,1],[0,1,2,2]],[[1,1,2,0],[1,4,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,0,2],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,0,2],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,0,2],[2,3,4,1],[0,2,1,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,1],[0,3,1,1]],[[1,1,2,0],[1,4,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,0,2],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,0,2],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,1],[2,0,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,1],[1,0,2,2]],[[1,1,2,0],[1,4,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,0,2],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,0,2],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,0,2],[2,3,4,1],[1,1,1,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,1],[2,1,1,1]],[[1,1,2,0],[1,3,0,2],[3,3,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,0,2],[2,4,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,3,3,0],[1,0,1,0]],[[1,2,0,1],[3,2,3,2],[2,3,3,0],[1,0,1,0]],[[1,3,0,1],[2,2,3,2],[2,3,3,0],[1,0,1,0]],[[2,2,0,1],[2,2,3,2],[2,3,3,0],[1,0,1,0]],[[1,1,2,0],[1,3,0,3],[2,3,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,4,2],[0,0,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[0,0,2,2]],[[1,1,2,0],[1,4,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,0,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,0,2],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,0,2],[2,4,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,0,2],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[0,1,1,2]],[[1,1,2,0],[1,4,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,0,3],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,0,2],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,0,2],[2,4,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,3,3],[0,1,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[0,1,3,0]],[[1,1,2,0],[1,4,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,0,3],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,0,2],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,0,2],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,0,2],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,3],[0,2,0,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[0,3,0,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[0,2,0,2]],[[1,1,2,0],[1,4,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,0,3],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,0,2],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,0,2],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,0,2],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[1,3,0,2],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[0,3,1,0]],[[1,1,2,0],[1,4,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,0,3],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,0,2],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,0,2],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,0,2],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,3],[1,0,1,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[2,0,1,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[1,0,1,2]],[[1,1,2,0],[1,4,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,0,3],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,0,2],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,0,2],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,3,3],[1,0,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[2,0,2,0]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[1,0,3,0]],[[1,1,2,0],[1,4,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,0,3],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,0,2],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,0,2],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,0,2],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,3],[1,1,0,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[2,1,0,1]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[1,1,0,2]],[[1,1,2,0],[1,4,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,0,3],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,0,2],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,0,2],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,0,2],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[1,3,0,2],[2,3,3,3],[1,1,1,0]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[2,1,1,0]],[[1,1,2,0],[1,4,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[1,3,0,2],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[1,3,0,2],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[1,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,1,2,0],[1,3,1,0],[1,2,4,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,0],[1,2,3,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,0],[1,2,3,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,0],[1,2,3,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,0],[1,2,3,2],[1,2,2,2]],[[1,1,2,0],[1,4,1,0],[1,3,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,0],[1,4,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,0],[1,3,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,0],[1,3,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,0],[1,3,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,0],[1,3,2,2],[1,2,2,2]],[[1,1,2,0],[1,4,1,0],[1,3,3,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,0],[1,4,3,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,0],[1,3,4,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,0],[1,3,3,2],[1,1,3,1]],[[1,1,2,0],[1,3,1,0],[1,3,3,2],[1,1,2,2]],[[1,1,2,0],[1,4,1,0],[1,3,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,1,0],[1,4,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,1,0],[1,3,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,1,0],[1,3,3,2],[2,2,1,1]],[[1,1,2,0],[1,3,1,0],[1,3,3,2],[1,3,1,1]],[[1,1,2,0],[1,3,1,0],[3,1,3,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,0],[2,1,4,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,0],[2,1,3,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,0],[2,1,3,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,0],[2,1,3,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,0],[2,1,3,2],[1,2,2,2]],[[1,1,2,0],[1,3,1,0],[3,2,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,0],[2,2,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,0],[2,2,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,0],[2,2,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,0],[2,2,2,2],[1,2,2,2]],[[1,1,2,0],[1,3,1,0],[2,2,4,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,0],[2,2,3,2],[0,3,2,1]],[[1,1,2,0],[1,3,1,0],[2,2,3,2],[0,2,3,1]],[[1,1,2,0],[1,3,1,0],[2,2,3,2],[0,2,2,2]],[[1,1,2,0],[1,3,1,0],[3,2,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,1,0],[2,2,3,2],[2,2,1,1]],[[1,1,2,0],[1,3,1,0],[2,2,3,2],[1,3,1,1]],[[1,1,2,0],[1,3,1,0],[3,3,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,0],[2,3,1,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,0],[2,3,1,2],[1,3,2,1]],[[1,1,2,0],[1,4,1,0],[2,3,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,0],[3,3,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,0],[2,4,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,0],[2,3,2,2],[0,3,2,1]],[[1,1,2,0],[1,3,1,0],[2,3,2,2],[0,2,3,1]],[[1,1,2,0],[1,3,1,0],[2,3,2,2],[0,2,2,2]],[[1,1,2,0],[1,4,1,0],[2,3,2,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,0],[3,3,2,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,0],[2,4,2,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,0],[2,3,2,2],[2,1,2,1]],[[1,1,2,0],[1,4,1,0],[2,3,3,2],[0,1,2,1]],[[1,1,2,0],[1,3,1,0],[3,3,3,2],[0,1,2,1]],[[1,1,2,0],[1,3,1,0],[2,4,3,2],[0,1,2,1]],[[1,1,2,0],[1,3,1,0],[2,3,4,2],[0,1,2,1]],[[1,1,2,0],[1,3,1,0],[2,3,3,2],[0,1,3,1]],[[1,1,2,0],[1,3,1,0],[2,3,3,2],[0,1,2,2]],[[1,1,2,0],[1,4,1,0],[2,3,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,1,0],[3,3,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,1,0],[2,4,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,1,0],[2,3,4,2],[0,2,1,1]],[[1,1,2,0],[1,3,1,0],[2,3,3,2],[0,3,1,1]],[[1,1,2,0],[1,4,1,0],[2,3,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,1,0],[3,3,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,1,0],[2,4,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,1,0],[2,3,4,2],[1,0,2,1]],[[1,1,2,0],[1,3,1,0],[2,3,3,2],[2,0,2,1]],[[1,1,2,0],[1,3,1,0],[2,3,3,2],[1,0,3,1]],[[1,1,2,0],[1,3,1,0],[2,3,3,2],[1,0,2,2]],[[1,1,2,0],[1,4,1,0],[2,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,1,0],[3,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,1,0],[2,4,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,1,0],[2,3,4,2],[1,1,1,1]],[[1,1,2,0],[1,3,1,0],[2,3,3,2],[2,1,1,1]],[[1,1,2,0],[1,3,1,0],[3,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,1,0],[2,4,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,1,0],[2,3,3,2],[2,2,0,1]],[[1,1,2,0],[1,3,1,1],[1,2,2,3],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,2,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,2,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,1],[1,2,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,1],[1,2,2,2],[1,2,2,2]],[[1,1,2,0],[1,3,1,1],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,1,1],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,1,1],[1,2,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,1,1],[1,2,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,1,1],[1,2,3,3],[1,2,1,1]],[[1,1,2,0],[1,3,1,1],[1,2,3,2],[1,2,1,2]],[[1,1,2,0],[1,3,1,1],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[1,3,1,1],[1,2,3,3],[1,2,2,0]],[[1,1,2,0],[1,3,1,1],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,1,1],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,1,1],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[1,4,1,1],[1,3,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,4,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,1,3],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,1,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,1,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,1,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,1],[1,3,1,2],[1,2,2,2]],[[1,1,2,0],[1,4,1,1],[1,3,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[1,3,1,1],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[1,3,1,1],[1,3,2,3],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,2,2],[1,1,3,1]],[[1,1,2,0],[1,3,1,1],[1,3,2,2],[1,1,2,2]],[[1,1,2,0],[1,4,1,1],[1,3,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,1,1],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,1,1],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[1,3,1,1],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[1,3,1,1],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[1,4,1,1],[1,3,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,4,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,0],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,0],[1,3,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,0],[1,2,3,1]],[[1,1,2,0],[1,4,1,1],[1,3,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[1,4,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,1],[1,1,2,2]],[[1,1,2,0],[1,4,1,1],[1,3,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,1,1],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,1,1],[1,3,4,1],[1,2,1,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,1],[1,3,1,1]],[[1,1,2,0],[1,4,1,1],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,1,1],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,1,1],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,3],[1,1,1,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,2],[1,1,1,2]],[[1,1,2,0],[1,4,1,1],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,1,1],[1,4,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,1,1],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[1,3,1,1],[1,3,3,3],[1,1,2,0]],[[1,1,2,0],[1,3,1,1],[1,3,3,2],[1,1,3,0]],[[1,1,2,0],[1,4,1,1],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,1,1],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,1,1],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,3],[1,2,0,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[1,3,1,1],[1,3,3,2],[1,2,0,2]],[[1,1,2,0],[1,4,1,1],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,1,1],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,1,1],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[1,3,1,1],[1,3,3,3],[1,2,1,0]],[[1,1,2,0],[1,3,1,1],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[1,3,1,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[3,3,2,1],[1,0,1,0]],[[1,2,0,1],[3,2,3,2],[2,3,2,1],[1,0,1,0]],[[1,3,0,1],[2,2,3,2],[2,3,2,1],[1,0,1,0]],[[2,2,0,1],[2,2,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,0,1],[2,2,3,2],[3,3,2,1],[1,0,0,1]],[[1,2,0,1],[3,2,3,2],[2,3,2,1],[1,0,0,1]],[[1,3,0,1],[2,2,3,2],[2,3,2,1],[1,0,0,1]],[[2,2,0,1],[2,2,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,2,0],[1,3,1,1],[3,1,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,1,2,3],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,1],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,1],[2,1,2,2],[1,2,2,2]],[[1,1,2,0],[1,3,1,1],[3,1,3,1],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,1,1],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,1,1],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,1,1],[2,1,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,1,1],[2,1,3,3],[1,2,1,1]],[[1,1,2,0],[1,3,1,1],[2,1,3,2],[1,2,1,2]],[[1,1,2,0],[1,3,1,1],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,1,3,3],[1,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,1,1],[2,1,3,2],[1,2,3,0]],[[1,1,2,0],[1,3,1,1],[3,2,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,1,3],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,1,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,1,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,1],[2,2,1,2],[1,2,2,2]],[[1,1,2,0],[1,3,1,1],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[1,3,1,1],[2,2,2,1],[1,2,2,2]],[[1,1,2,0],[1,3,1,1],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,2,2],[0,3,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,2,2],[0,2,3,1]],[[1,1,2,0],[1,3,1,1],[2,2,2,2],[0,2,2,2]],[[1,1,2,0],[1,3,1,1],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[1,3,1,1],[2,2,2,2],[1,2,3,0]],[[1,1,2,0],[1,3,1,1],[3,2,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,0],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,0],[1,3,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,0],[1,2,3,1]],[[1,1,2,0],[1,3,1,1],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,1],[0,2,2,2]],[[1,1,2,0],[1,3,1,1],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,1],[1,3,1,1]],[[1,1,2,0],[1,3,1,1],[2,2,4,2],[0,2,1,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,3],[0,2,1,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,2],[0,2,1,2]],[[1,1,2,0],[1,3,1,1],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,2,3,3],[0,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[1,3,1,1],[2,2,3,2],[0,2,3,0]],[[1,1,2,0],[1,3,1,1],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[1,3,1,1],[2,2,3,2],[1,3,0,1]],[[1,1,2,0],[1,3,1,1],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,1,1],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[1,3,1,1],[2,2,3,2],[1,3,1,0]],[[1,1,2,0],[1,3,1,1],[3,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,0,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,0,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,1],[3,3,1,1],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,1,1],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,1,1],[1,3,2,1]],[[1,1,2,0],[1,4,1,1],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[3,3,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,4,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,1,3],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,1,2],[0,3,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,1,2],[0,2,3,1]],[[1,1,2,0],[1,3,1,1],[2,3,1,2],[0,2,2,2]],[[1,1,2,0],[1,4,1,1],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[3,3,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[2,4,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,1,2],[2,1,2,1]],[[1,1,2,0],[1,3,1,1],[3,3,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,1,2],[2,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,1,2],[1,3,2,0]],[[1,1,2,0],[1,3,1,1],[3,3,2,0],[1,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,2,0],[2,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,2,0],[1,3,2,1]],[[1,1,2,0],[1,4,1,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[1,3,1,1],[2,3,2,1],[0,2,2,2]],[[1,1,2,0],[1,4,1,1],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,2,1],[2,1,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,2,3],[0,1,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,2,2],[0,1,3,1]],[[1,1,2,0],[1,3,1,1],[2,3,2,2],[0,1,2,2]],[[1,1,2,0],[1,4,1,1],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,1,1],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,2,2],[0,2,3,0]],[[1,1,2,0],[1,3,1,1],[2,3,2,3],[1,0,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,2,2],[1,0,3,1]],[[1,1,2,0],[1,3,1,1],[2,3,2,2],[1,0,2,2]],[[1,1,2,0],[1,4,1,1],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,1,1],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,1,1],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,2,2],[2,1,2,0]],[[1,1,2,0],[1,4,1,1],[2,3,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[3,3,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,4,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,0],[0,3,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,0],[0,2,3,1]],[[1,1,2,0],[1,4,1,1],[2,3,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[3,3,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[2,4,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,0],[2,1,2,1]],[[1,1,2,0],[1,4,1,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,1,1],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,1,1],[2,4,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,1],[0,1,2,2]],[[1,1,2,0],[1,4,1,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,1,1],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,1,1],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,1,1],[2,3,4,1],[0,2,1,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,1],[0,3,1,1]],[[1,1,2,0],[1,4,1,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,1,1],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,1,1],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,1],[2,0,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,1],[1,0,2,2]],[[1,1,2,0],[1,4,1,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,1,1],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,1,1],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,1,1],[2,3,4,1],[1,1,1,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,1],[2,1,1,1]],[[1,1,2,0],[1,4,1,1],[2,3,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,1,1],[3,3,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,1,1],[2,4,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,1],[2,2,0,1]],[[1,1,2,0],[1,3,1,1],[2,3,4,2],[0,0,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[0,0,2,2]],[[1,1,2,0],[1,4,1,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,1,1],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,1,1],[2,4,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,1,1],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[0,1,1,2]],[[1,1,2,0],[1,4,1,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,1,1],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,1,1],[2,4,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,3,3],[0,1,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[0,1,3,0]],[[1,1,2,0],[1,4,1,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,1,1],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,1,1],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,1,1],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,3],[0,2,0,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[0,3,0,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[0,2,0,2]],[[1,1,2,0],[1,4,1,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,1,1],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,1,1],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,1,1],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[1,3,1,1],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[0,3,1,0]],[[1,1,2,0],[1,4,1,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,1,1],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,1,1],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,1,1],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,3],[1,0,1,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[2,0,1,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[1,0,1,2]],[[1,1,2,0],[1,4,1,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,1,1],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,1,1],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,3,3],[1,0,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[2,0,2,0]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[1,0,3,0]],[[1,1,2,0],[1,4,1,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,1,1],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,1,1],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,1,1],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,3],[1,1,0,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[2,1,0,1]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[1,1,0,2]],[[1,1,2,0],[1,4,1,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,1,1],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,1,1],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,1,1],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[1,3,1,1],[2,3,3,3],[1,1,1,0]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[2,1,1,0]],[[1,1,2,0],[1,4,1,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[1,3,1,1],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[1,3,1,1],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[1,3,1,1],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[2,2,3,2],[3,3,2,0],[1,0,1,1]],[[1,2,0,1],[3,2,3,2],[2,3,2,0],[1,0,1,1]],[[1,3,0,1],[2,2,3,2],[2,3,2,0],[1,0,1,1]],[[2,2,0,1],[2,2,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,2,0],[1,3,1,3],[0,2,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,2,2,3],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,2,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,2,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,2],[0,2,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,2],[0,2,2,2],[1,2,2,2]],[[1,1,2,0],[1,3,1,2],[0,2,4,1],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,2,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,2,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,1,2],[0,2,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,1,2],[0,2,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,1,3],[0,2,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,1,2],[0,2,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,1,2],[0,2,3,3],[1,2,1,1]],[[1,1,2,0],[1,3,1,2],[0,2,3,2],[1,2,1,2]],[[1,1,2,0],[1,3,1,3],[0,2,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[0,2,4,2],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[0,2,3,3],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[0,2,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,1,2],[0,2,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,1,2],[0,2,3,2],[1,2,3,0]],[[1,1,2,0],[1,4,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,3],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,4,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,1,3],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,1,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,1,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,1,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,2],[0,3,1,2],[1,2,2,2]],[[1,1,2,0],[1,4,1,2],[0,3,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,4,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,2,1],[2,2,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,2,1],[1,3,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,2,1],[1,2,3,1]],[[1,1,2,0],[1,3,1,2],[0,3,2,1],[1,2,2,2]],[[1,1,2,0],[1,3,1,3],[0,3,2,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,2,3],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,2,2],[1,1,3,1]],[[1,1,2,0],[1,3,1,2],[0,3,2,2],[1,1,2,2]],[[1,1,2,0],[1,4,1,2],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[0,4,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[0,3,2,2],[2,2,2,0]],[[1,1,2,0],[1,3,1,2],[0,3,2,2],[1,3,2,0]],[[1,1,2,0],[1,3,1,2],[0,3,2,2],[1,2,3,0]],[[1,1,2,0],[1,4,1,2],[0,3,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[0,4,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,4,1],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,1],[1,1,3,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,1],[1,1,2,2]],[[1,1,2,0],[1,4,1,2],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,1,2],[0,4,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,1,2],[0,3,4,1],[1,2,1,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,1],[2,2,1,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,1],[1,3,1,1]],[[1,1,2,0],[1,3,1,3],[0,3,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,4,2],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,3],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,2],[1,0,2,2]],[[1,1,2,0],[1,4,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,1,3],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,1,2],[0,4,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,1,2],[0,3,4,2],[1,1,1,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,3],[1,1,1,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,2],[1,1,1,2]],[[1,1,2,0],[1,4,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,1,3],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,1,2],[0,4,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,1,2],[0,3,4,2],[1,1,2,0]],[[1,1,2,0],[1,3,1,2],[0,3,3,3],[1,1,2,0]],[[1,1,2,0],[1,3,1,2],[0,3,3,2],[1,1,3,0]],[[1,1,2,0],[1,4,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,1,3],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,1,2],[0,4,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,1,2],[0,3,4,2],[1,2,0,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,3],[1,2,0,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,2],[2,2,0,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,2],[1,3,0,1]],[[1,1,2,0],[1,3,1,2],[0,3,3,2],[1,2,0,2]],[[1,1,2,0],[1,4,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,1,3],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,1,2],[0,4,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,1,2],[0,3,4,2],[1,2,1,0]],[[1,1,2,0],[1,3,1,2],[0,3,3,3],[1,2,1,0]],[[1,1,2,0],[1,3,1,2],[0,3,3,2],[2,2,1,0]],[[1,1,2,0],[1,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,1,2,0],[1,3,1,3],[1,2,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,2,2,3],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,2,2,2],[0,3,2,1]],[[1,1,2,0],[1,3,1,2],[1,2,2,2],[0,2,3,1]],[[1,1,2,0],[1,3,1,2],[1,2,2,2],[0,2,2,2]],[[1,1,2,0],[1,3,1,2],[1,2,4,0],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,2,3,0],[2,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,2,3,0],[1,3,2,1]],[[1,1,2,0],[1,3,1,2],[1,2,3,0],[1,2,3,1]],[[1,1,2,0],[1,3,1,2],[1,2,3,0],[1,2,2,2]],[[1,1,2,0],[1,3,1,2],[1,2,4,1],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,2,3,1],[0,3,2,1]],[[1,1,2,0],[1,3,1,2],[1,2,3,1],[0,2,3,1]],[[1,1,2,0],[1,3,1,2],[1,2,3,1],[0,2,2,2]],[[1,1,2,0],[1,3,1,2],[1,2,4,1],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[1,2,3,1],[2,2,2,0]],[[1,1,2,0],[1,3,1,2],[1,2,3,1],[1,3,2,0]],[[1,1,2,0],[1,3,1,2],[1,2,3,1],[1,2,3,0]],[[1,1,2,0],[1,3,1,3],[1,2,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,1,2],[1,2,4,2],[0,2,1,1]],[[1,1,2,0],[1,3,1,2],[1,2,3,3],[0,2,1,1]],[[1,1,2,0],[1,3,1,2],[1,2,3,2],[0,2,1,2]],[[1,1,2,0],[1,3,1,3],[1,2,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,1,2],[1,2,4,2],[0,2,2,0]],[[1,1,2,0],[1,3,1,2],[1,2,3,3],[0,2,2,0]],[[1,1,2,0],[1,3,1,2],[1,2,3,2],[0,3,2,0]],[[1,1,2,0],[1,3,1,2],[1,2,3,2],[0,2,3,0]],[[1,1,2,0],[1,4,1,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,3],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,4,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,0,3],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,0,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,0,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,0,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,2],[1,3,0,2],[1,2,2,2]],[[1,1,2,0],[1,4,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,3],[1,3,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,4,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,1,3],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,1,2],[0,3,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,1,2],[0,2,3,1]],[[1,1,2,0],[1,3,1,2],[1,3,1,2],[0,2,2,2]],[[1,1,2,0],[1,4,1,2],[1,3,2,0],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,4,2,0],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,0],[2,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,0],[1,3,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,0],[1,2,3,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,0],[1,2,2,2]],[[1,1,2,0],[1,4,1,2],[1,3,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,4,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,1],[0,3,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,1],[0,2,3,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,1],[0,2,2,2]],[[1,1,2,0],[1,4,1,2],[1,3,2,1],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[1,4,2,1],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,2,1],[2,2,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,2,1],[1,3,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,2,1],[1,2,3,0]],[[1,1,2,0],[1,3,1,3],[1,3,2,2],[0,1,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,3],[0,1,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,2],[0,1,3,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,2],[0,1,2,2]],[[1,1,2,0],[1,4,1,2],[1,3,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,1,2],[1,4,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,2,2],[0,3,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,2,2],[0,2,3,0]],[[1,1,2,0],[1,3,1,3],[1,3,2,2],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,3],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,2],[1,0,3,1]],[[1,1,2,0],[1,3,1,2],[1,3,2,2],[1,0,2,2]],[[1,2,0,1],[2,2,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,0,1],[3,2,3,2],[2,3,1,2],[1,0,1,0]],[[1,3,0,1],[2,2,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,2,0],[1,4,1,2],[1,3,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[1,4,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,4,0],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,0],[1,1,3,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,0],[1,1,2,2]],[[1,1,2,0],[1,4,1,2],[1,3,3,0],[1,2,1,1]],[[1,1,2,0],[1,3,1,2],[1,4,3,0],[1,2,1,1]],[[1,1,2,0],[1,3,1,2],[1,3,4,0],[1,2,1,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,0],[2,2,1,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,0],[1,3,1,1]],[[1,1,2,0],[1,4,1,2],[1,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,1,2],[1,4,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,4,1],[0,1,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,1],[0,1,3,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,1],[0,1,2,2]],[[1,1,2,0],[1,4,1,2],[1,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,1,2],[1,4,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,1,2],[1,3,4,1],[0,2,1,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,1],[0,3,1,1]],[[1,1,2,0],[1,4,1,2],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[1,4,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,4,1],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,1],[1,0,3,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,1],[1,0,2,2]],[[1,1,2,0],[1,4,1,2],[1,3,3,1],[1,1,2,0]],[[1,1,2,0],[1,3,1,2],[1,4,3,1],[1,1,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,4,1],[1,1,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,3,1],[1,1,3,0]],[[1,1,2,0],[1,4,1,2],[1,3,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,1,2],[1,4,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,1,2],[1,3,4,1],[1,2,0,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,1],[2,2,0,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,1],[1,3,0,1]],[[1,1,2,0],[1,4,1,2],[1,3,3,1],[1,2,1,0]],[[1,1,2,0],[1,3,1,2],[1,4,3,1],[1,2,1,0]],[[1,1,2,0],[1,3,1,2],[1,3,4,1],[1,2,1,0]],[[1,1,2,0],[1,3,1,2],[1,3,3,1],[2,2,1,0]],[[1,1,2,0],[1,3,1,2],[1,3,3,1],[1,3,1,0]],[[2,2,0,1],[2,2,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,0,1],[2,2,3,2],[3,3,1,2],[1,0,0,1]],[[1,2,0,1],[3,2,3,2],[2,3,1,2],[1,0,0,1]],[[1,3,0,1],[2,2,3,2],[2,3,1,2],[1,0,0,1]],[[2,2,0,1],[2,2,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,2,0],[1,3,1,3],[1,3,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,4,2],[0,0,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,2],[0,0,2,2]],[[1,1,2,0],[1,4,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,1,3],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,1,2],[1,4,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,1,2],[1,3,4,2],[0,1,1,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,2],[0,1,1,2]],[[1,1,2,0],[1,4,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,1,3],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,1,2],[1,4,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,4,2],[0,1,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,3,3],[0,1,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,3,2],[0,1,3,0]],[[1,1,2,0],[1,4,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,1,3],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,1,2],[1,4,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,1,2],[1,3,4,2],[0,2,0,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,3],[0,2,0,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,2],[0,3,0,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,2],[0,2,0,2]],[[1,1,2,0],[1,4,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,1,3],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,1,2],[1,4,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,1,2],[1,3,4,2],[0,2,1,0]],[[1,1,2,0],[1,3,1,2],[1,3,3,3],[0,2,1,0]],[[1,1,2,0],[1,3,1,2],[1,3,3,2],[0,3,1,0]],[[1,1,2,0],[1,4,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,1,3],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,1,2],[1,4,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,1,2],[1,3,4,2],[1,0,1,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,3],[1,0,1,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,2],[1,0,1,2]],[[1,1,2,0],[1,4,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,1,3],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,1,2],[1,4,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,4,2],[1,0,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,3,3],[1,0,2,0]],[[1,1,2,0],[1,3,1,2],[1,3,3,2],[1,0,3,0]],[[1,1,2,0],[1,4,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,1,3],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,1,2],[1,4,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,1,2],[1,3,4,2],[1,1,0,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,3],[1,1,0,1]],[[1,1,2,0],[1,3,1,2],[1,3,3,2],[1,1,0,2]],[[1,1,2,0],[1,4,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,1,3],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,1,2],[1,4,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,1,2],[1,3,4,2],[1,1,1,0]],[[1,1,2,0],[1,3,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,0,1],[2,2,3,2],[2,3,1,1],[2,2,0,0]],[[1,2,0,1],[2,2,3,2],[3,3,1,1],[1,2,0,0]],[[1,2,0,1],[3,2,3,2],[2,3,1,1],[1,2,0,0]],[[1,3,0,1],[2,2,3,2],[2,3,1,1],[1,2,0,0]],[[2,2,0,1],[2,2,3,2],[2,3,1,1],[1,2,0,0]],[[1,1,2,0],[1,3,1,2],[3,1,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,1,4,0],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,1,3,0],[2,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,1,3,0],[1,3,2,1]],[[1,1,2,0],[1,3,1,2],[2,1,3,0],[1,2,3,1]],[[1,1,2,0],[1,3,1,2],[2,1,3,0],[1,2,2,2]],[[1,1,2,0],[1,3,1,2],[3,1,3,1],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[2,1,4,1],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[2,1,3,1],[2,2,2,0]],[[1,1,2,0],[1,3,1,2],[2,1,3,1],[1,3,2,0]],[[1,1,2,0],[1,3,1,2],[2,1,3,1],[1,2,3,0]],[[1,2,0,1],[2,2,3,2],[2,3,1,1],[2,1,1,0]],[[1,2,0,1],[2,2,3,2],[3,3,1,1],[1,1,1,0]],[[1,1,2,0],[1,3,1,3],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[3,2,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,2,0,3],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,2,0,2],[2,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,2,0,2],[1,3,2,1]],[[1,1,2,0],[1,3,1,2],[2,2,0,2],[1,2,3,1]],[[1,1,2,0],[1,3,1,2],[2,2,0,2],[1,2,2,2]],[[1,1,2,0],[1,3,1,2],[3,2,2,0],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,2,2,0],[2,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,2,2,0],[1,3,2,1]],[[1,1,2,0],[1,3,1,2],[2,2,2,0],[1,2,3,1]],[[1,1,2,0],[1,3,1,2],[2,2,2,0],[1,2,2,2]],[[1,1,2,0],[1,3,1,2],[3,2,2,1],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[2,2,2,1],[2,2,2,0]],[[1,1,2,0],[1,3,1,2],[2,2,2,1],[1,3,2,0]],[[1,1,2,0],[1,3,1,2],[2,2,2,1],[1,2,3,0]],[[1,2,0,1],[3,2,3,2],[2,3,1,1],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[2,3,1,1],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[2,3,1,1],[1,1,1,0]],[[1,2,0,1],[2,2,3,2],[2,3,1,1],[2,1,0,1]],[[1,2,0,1],[2,2,3,2],[3,3,1,1],[1,1,0,1]],[[1,2,0,1],[3,2,3,2],[2,3,1,1],[1,1,0,1]],[[1,3,0,1],[2,2,3,2],[2,3,1,1],[1,1,0,1]],[[1,1,2,0],[1,3,1,2],[2,2,4,0],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,2,3,0],[0,3,2,1]],[[1,1,2,0],[1,3,1,2],[2,2,3,0],[0,2,3,1]],[[1,1,2,0],[1,3,1,2],[2,2,3,0],[0,2,2,2]],[[1,1,2,0],[1,3,1,2],[3,2,3,0],[1,2,1,1]],[[1,1,2,0],[1,3,1,2],[2,2,3,0],[2,2,1,1]],[[1,1,2,0],[1,3,1,2],[2,2,3,0],[1,3,1,1]],[[1,1,2,0],[1,3,1,2],[2,2,4,1],[0,2,2,0]],[[1,1,2,0],[1,3,1,2],[2,2,3,1],[0,3,2,0]],[[1,1,2,0],[1,3,1,2],[2,2,3,1],[0,2,3,0]],[[1,1,2,0],[1,3,1,2],[3,2,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,1,2],[2,2,3,1],[2,2,0,1]],[[1,1,2,0],[1,3,1,2],[2,2,3,1],[1,3,0,1]],[[1,1,2,0],[1,3,1,2],[3,2,3,1],[1,2,1,0]],[[1,1,2,0],[1,3,1,2],[2,2,3,1],[2,2,1,0]],[[1,1,2,0],[1,3,1,2],[2,2,3,1],[1,3,1,0]],[[2,2,0,1],[2,2,3,2],[2,3,1,1],[1,1,0,1]],[[1,2,0,1],[2,2,3,2],[3,3,1,1],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,3,1,1],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,3,1,1],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,3,1,1],[0,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,3,1,1],[0,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,3,1,1],[0,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,3,1,1],[0,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,3,1,1],[0,2,0,1]],[[1,2,0,1],[2,2,3,2],[2,3,1,0],[2,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,3,1,0],[1,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,3,1,0],[1,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,3,1,0],[1,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,3,1,0],[1,2,0,1]],[[1,1,2,0],[1,4,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,3],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[3,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,4,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,0,3],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,0,2],[0,3,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,0,2],[0,2,3,1]],[[1,1,2,0],[1,3,1,2],[2,3,0,2],[0,2,2,2]],[[1,1,2,0],[1,4,1,2],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[3,3,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[2,4,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,0,2],[2,1,2,1]],[[1,1,2,0],[1,3,1,2],[3,3,1,0],[1,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,1,0],[2,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,1,0],[1,3,2,1]],[[1,1,2,0],[1,3,1,2],[3,3,1,1],[1,2,2,0]],[[1,1,2,0],[1,3,1,2],[2,3,1,1],[2,2,2,0]],[[1,1,2,0],[1,3,1,2],[2,3,1,1],[1,3,2,0]],[[1,2,0,1],[2,2,3,2],[2,3,1,0],[2,1,1,1]],[[1,2,0,1],[2,2,3,2],[3,3,1,0],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,3,1,0],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[2,3,1,0],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[2,3,1,0],[1,1,1,1]],[[1,1,2,0],[1,4,1,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[3,3,2,0],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,4,2,0],[0,2,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,2,0],[0,3,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,2,0],[0,2,3,1]],[[1,1,2,0],[1,3,1,2],[2,3,2,0],[0,2,2,2]],[[1,1,2,0],[1,4,1,2],[2,3,2,0],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[3,3,2,0],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[2,4,2,0],[1,1,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,2,0],[2,1,2,1]],[[1,1,2,0],[1,4,1,2],[2,3,2,1],[0,2,2,0]],[[1,1,2,0],[1,3,1,2],[3,3,2,1],[0,2,2,0]],[[1,1,2,0],[1,3,1,2],[2,4,2,1],[0,2,2,0]],[[1,1,2,0],[1,3,1,2],[2,3,2,1],[0,3,2,0]],[[1,1,2,0],[1,3,1,2],[2,3,2,1],[0,2,3,0]],[[1,1,2,0],[1,4,1,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,0],[1,3,1,2],[3,3,2,1],[1,1,2,0]],[[1,1,2,0],[1,3,1,2],[2,4,2,1],[1,1,2,0]],[[1,1,2,0],[1,3,1,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[2,2,3,2],[3,3,1,0],[0,2,1,1]],[[1,2,0,1],[3,2,3,2],[2,3,1,0],[0,2,1,1]],[[1,3,0,1],[2,2,3,2],[2,3,1,0],[0,2,1,1]],[[2,2,0,1],[2,2,3,2],[2,3,1,0],[0,2,1,1]],[[1,2,0,1],[2,2,3,2],[2,3,0,2],[2,2,0,0]],[[1,2,0,1],[2,2,3,2],[3,3,0,2],[1,2,0,0]],[[1,2,0,1],[3,2,3,2],[2,3,0,2],[1,2,0,0]],[[1,3,0,1],[2,2,3,2],[2,3,0,2],[1,2,0,0]],[[2,2,0,1],[2,2,3,2],[2,3,0,2],[1,2,0,0]],[[1,2,0,1],[2,2,3,2],[2,3,0,2],[2,1,1,0]],[[1,1,2,0],[1,4,1,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,1,2],[3,3,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,1,2],[2,4,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,4,0],[0,1,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,3,0],[0,1,3,1]],[[1,1,2,0],[1,3,1,2],[2,3,3,0],[0,1,2,2]],[[1,1,2,0],[1,4,1,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,1,2],[3,3,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,1,2],[2,4,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,1,2],[2,3,4,0],[0,2,1,1]],[[1,1,2,0],[1,3,1,2],[2,3,3,0],[0,3,1,1]],[[1,1,2,0],[1,4,1,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[3,3,3,0],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[2,4,3,0],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,4,0],[1,0,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,3,0],[2,0,2,1]],[[1,1,2,0],[1,3,1,2],[2,3,3,0],[1,0,3,1]],[[1,1,2,0],[1,3,1,2],[2,3,3,0],[1,0,2,2]],[[1,1,2,0],[1,4,1,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[1,3,1,2],[3,3,3,0],[1,1,1,1]],[[1,1,2,0],[1,3,1,2],[2,4,3,0],[1,1,1,1]],[[1,1,2,0],[1,3,1,2],[2,3,4,0],[1,1,1,1]],[[1,1,2,0],[1,3,1,2],[2,3,3,0],[2,1,1,1]],[[1,1,2,0],[1,4,1,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,0],[1,3,1,2],[3,3,3,0],[1,2,0,1]],[[1,1,2,0],[1,3,1,2],[2,4,3,0],[1,2,0,1]],[[1,1,2,0],[1,3,1,2],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,3,0,2],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[2,3,0,2],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[2,3,0,2],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,0,1],[2,2,3,2],[2,3,0,2],[2,1,0,1]],[[1,2,0,1],[2,2,3,2],[3,3,0,2],[1,1,0,1]],[[1,2,0,1],[3,2,3,2],[2,3,0,2],[1,1,0,1]],[[1,3,0,1],[2,2,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,2,0],[1,4,1,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,1,2],[3,3,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,1,2],[2,4,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,1,2],[2,3,4,1],[0,1,1,1]],[[1,1,2,0],[1,4,1,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,1,2],[3,3,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,1,2],[2,4,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,1,2],[2,3,4,1],[0,1,2,0]],[[1,1,2,0],[1,3,1,2],[2,3,3,1],[0,1,3,0]],[[1,1,2,0],[1,4,1,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,1,2],[3,3,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,1,2],[2,4,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,1,2],[2,3,4,1],[0,2,0,1]],[[1,1,2,0],[1,3,1,2],[2,3,3,1],[0,3,0,1]],[[1,1,2,0],[1,4,1,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,1,2],[3,3,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,1,2],[2,4,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,1,2],[2,3,4,1],[0,2,1,0]],[[1,1,2,0],[1,3,1,2],[2,3,3,1],[0,3,1,0]],[[2,2,0,1],[2,2,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,2,0],[1,4,1,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[1,3,1,2],[3,3,3,1],[1,0,1,1]],[[1,1,2,0],[1,3,1,2],[2,4,3,1],[1,0,1,1]],[[1,1,2,0],[1,3,1,2],[2,3,4,1],[1,0,1,1]],[[1,1,2,0],[1,3,1,2],[2,3,3,1],[2,0,1,1]],[[1,1,2,0],[1,4,1,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[1,3,1,2],[3,3,3,1],[1,0,2,0]],[[1,1,2,0],[1,3,1,2],[2,4,3,1],[1,0,2,0]],[[1,1,2,0],[1,3,1,2],[2,3,4,1],[1,0,2,0]],[[1,1,2,0],[1,3,1,2],[2,3,3,1],[2,0,2,0]],[[1,1,2,0],[1,3,1,2],[2,3,3,1],[1,0,3,0]],[[1,1,2,0],[1,4,1,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,1,2],[3,3,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,1,2],[2,4,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,1,2],[2,3,4,1],[1,1,0,1]],[[1,1,2,0],[1,3,1,2],[2,3,3,1],[2,1,0,1]],[[1,1,2,0],[1,4,1,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[1,3,1,2],[3,3,3,1],[1,1,1,0]],[[1,1,2,0],[1,3,1,2],[2,4,3,1],[1,1,1,0]],[[1,1,2,0],[1,3,1,2],[2,3,4,1],[1,1,1,0]],[[1,1,2,0],[1,3,1,2],[2,3,3,1],[2,1,1,0]],[[1,1,2,0],[1,4,1,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,0],[1,3,1,2],[3,3,3,1],[1,2,0,0]],[[1,1,2,0],[1,3,1,2],[2,4,3,1],[1,2,0,0]],[[1,1,2,0],[1,3,1,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[2,2,3,2],[3,3,0,2],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,3,0,2],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,3,0,2],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,3,0,2],[0,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,3,0,2],[0,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,3,0,2],[0,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,3,0,2],[0,2,0,1]],[[1,2,0,1],[2,2,3,2],[2,3,0,1],[2,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,3,0,1],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,3,0,1],[1,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,3,0,1],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,3,0,1],[1,2,1,0]],[[1,2,0,1],[2,2,3,2],[2,3,0,1],[2,1,2,0]],[[1,2,0,1],[2,2,3,2],[3,3,0,1],[1,1,2,0]],[[1,2,0,1],[3,2,3,2],[2,3,0,1],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[2,3,0,1],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[2,3,0,1],[1,1,2,0]],[[1,2,0,1],[2,2,3,2],[3,3,0,1],[0,2,2,0]],[[1,2,0,1],[3,2,3,2],[2,3,0,1],[0,2,2,0]],[[1,3,0,1],[2,2,3,2],[2,3,0,1],[0,2,2,0]],[[2,2,0,1],[2,2,3,2],[2,3,0,1],[0,2,2,0]],[[1,2,0,1],[2,2,3,2],[2,3,0,0],[2,2,1,1]],[[1,2,0,1],[2,2,3,2],[3,3,0,0],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[2,3,0,0],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[2,3,0,0],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[2,3,0,0],[1,2,1,1]],[[1,2,0,1],[2,2,3,2],[2,3,0,0],[2,1,2,1]],[[1,2,0,1],[2,2,3,2],[3,3,0,0],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[2,3,0,0],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[2,3,0,0],[1,1,2,1]],[[2,2,0,1],[2,2,3,2],[2,3,0,0],[1,1,2,1]],[[1,2,0,1],[2,2,3,2],[3,3,0,0],[0,2,2,1]],[[1,2,0,1],[3,2,3,2],[2,3,0,0],[0,2,2,1]],[[1,3,0,1],[2,2,3,2],[2,3,0,0],[0,2,2,1]],[[2,2,0,1],[2,2,3,2],[2,3,0,0],[0,2,2,1]],[[1,2,0,1],[2,2,3,2],[2,2,3,1],[2,1,0,0]],[[1,2,0,1],[2,2,3,2],[3,2,3,1],[1,1,0,0]],[[1,2,0,1],[3,2,3,2],[2,2,3,1],[1,1,0,0]],[[1,3,0,1],[2,2,3,2],[2,2,3,1],[1,1,0,0]],[[2,2,0,1],[2,2,3,2],[2,2,3,1],[1,1,0,0]],[[1,2,0,1],[2,2,3,2],[3,2,3,1],[0,2,0,0]],[[1,1,2,0],[1,3,2,0],[0,2,4,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,0],[0,2,3,2],[2,2,2,1]],[[1,1,2,0],[1,3,2,0],[0,2,3,2],[1,3,2,1]],[[1,1,2,0],[1,3,2,0],[0,2,3,2],[1,2,3,1]],[[1,1,2,0],[1,3,2,0],[0,2,3,2],[1,2,2,2]],[[1,1,2,0],[1,4,2,0],[0,3,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,0],[0,4,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,0],[0,3,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,2,0],[0,3,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,2,0],[0,3,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,2,0],[0,3,2,2],[1,2,2,2]],[[1,1,2,0],[1,4,2,0],[0,3,3,2],[1,1,2,1]],[[1,1,2,0],[1,3,2,0],[0,4,3,2],[1,1,2,1]],[[1,1,2,0],[1,3,2,0],[0,3,4,2],[1,1,2,1]],[[1,1,2,0],[1,3,2,0],[0,3,3,2],[1,1,3,1]],[[1,1,2,0],[1,3,2,0],[0,3,3,2],[1,1,2,2]],[[1,1,2,0],[1,4,2,0],[0,3,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,2,0],[0,4,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,2,0],[0,3,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,2,0],[0,3,3,2],[2,2,1,1]],[[1,1,2,0],[1,3,2,0],[0,3,3,2],[1,3,1,1]],[[1,1,2,0],[1,3,2,0],[1,2,4,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,0],[1,2,3,2],[0,3,2,1]],[[1,1,2,0],[1,3,2,0],[1,2,3,2],[0,2,3,1]],[[1,1,2,0],[1,3,2,0],[1,2,3,2],[0,2,2,2]],[[1,1,2,0],[1,4,2,0],[1,3,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,0],[1,4,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,0],[1,3,2,2],[0,3,2,1]],[[1,1,2,0],[1,3,2,0],[1,3,2,2],[0,2,3,1]],[[1,1,2,0],[1,3,2,0],[1,3,2,2],[0,2,2,2]],[[1,1,2,0],[1,4,2,0],[1,3,3,2],[0,1,2,1]],[[1,1,2,0],[1,3,2,0],[1,4,3,2],[0,1,2,1]],[[1,1,2,0],[1,3,2,0],[1,3,4,2],[0,1,2,1]],[[1,1,2,0],[1,3,2,0],[1,3,3,2],[0,1,3,1]],[[1,1,2,0],[1,3,2,0],[1,3,3,2],[0,1,2,2]],[[1,1,2,0],[1,4,2,0],[1,3,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,0],[1,4,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,0],[1,3,4,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,0],[1,3,3,2],[0,3,1,1]],[[1,1,2,0],[1,4,2,0],[1,3,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,0],[1,4,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,0],[1,3,4,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,0],[1,3,3,2],[1,0,3,1]],[[1,1,2,0],[1,3,2,0],[1,3,3,2],[1,0,2,2]],[[1,2,0,1],[3,2,3,2],[2,2,3,1],[0,2,0,0]],[[1,3,0,1],[2,2,3,2],[2,2,3,1],[0,2,0,0]],[[2,2,0,1],[2,2,3,2],[2,2,3,1],[0,2,0,0]],[[1,2,0,1],[2,2,3,2],[2,2,3,0],[2,2,0,0]],[[1,2,0,1],[2,2,3,2],[3,2,3,0],[1,2,0,0]],[[1,2,0,1],[3,2,3,2],[2,2,3,0],[1,2,0,0]],[[1,3,0,1],[2,2,3,2],[2,2,3,0],[1,2,0,0]],[[2,2,0,1],[2,2,3,2],[2,2,3,0],[1,2,0,0]],[[1,2,0,1],[2,2,3,2],[2,2,3,0],[2,1,1,0]],[[1,2,0,1],[2,2,3,2],[3,2,3,0],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[2,2,3,0],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[2,2,3,0],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,2,0],[1,3,2,1],[0,2,2,3],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,2,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,2,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,2,1],[0,2,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,2,1],[0,2,2,2],[1,2,2,2]],[[1,1,2,0],[1,3,2,1],[0,2,4,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,2,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,2,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,2,1],[0,2,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,2,1],[0,2,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,2,1],[0,2,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,2,1],[0,2,3,3],[1,2,1,1]],[[1,1,2,0],[1,3,2,1],[0,2,3,2],[1,2,1,2]],[[1,1,2,0],[1,3,2,1],[0,2,4,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,1],[0,2,3,3],[1,2,2,0]],[[1,1,2,0],[1,3,2,1],[0,2,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,2,1],[0,2,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,2,1],[0,2,3,2],[1,2,3,0]],[[1,1,2,0],[1,4,2,1],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,4,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,1,3],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,1,2],[2,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,1,2],[1,3,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,1,2],[1,2,3,1]],[[1,1,2,0],[1,3,2,1],[0,3,1,2],[1,2,2,2]],[[1,1,2,0],[1,4,2,1],[0,3,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,4,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,2,1],[2,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,2,1],[1,3,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,2,1],[1,2,3,1]],[[1,1,2,0],[1,3,2,1],[0,3,2,1],[1,2,2,2]],[[1,1,2,0],[1,3,2,1],[0,3,2,3],[1,1,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,2,2],[1,1,3,1]],[[1,1,2,0],[1,3,2,1],[0,3,2,2],[1,1,2,2]],[[1,1,2,0],[1,4,2,1],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,1],[0,4,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,1],[0,3,2,2],[2,2,2,0]],[[1,1,2,0],[1,3,2,1],[0,3,2,2],[1,3,2,0]],[[1,1,2,0],[1,3,2,1],[0,3,2,2],[1,2,3,0]],[[1,1,2,0],[1,4,2,1],[0,3,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,4,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,0],[2,2,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,0],[1,3,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,0],[1,2,3,1]],[[1,1,2,0],[1,4,2,1],[0,3,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,2,1],[0,4,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,4,1],[1,1,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,1],[1,1,3,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,1],[1,1,2,2]],[[1,1,2,0],[1,4,2,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,2,1],[0,4,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,2,1],[0,3,4,1],[1,2,1,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,1],[2,2,1,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,1],[1,3,1,1]],[[1,1,2,0],[1,3,2,1],[0,3,4,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,3],[1,0,2,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,2],[1,0,2,2]],[[1,1,2,0],[1,4,2,1],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,2,1],[0,4,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,2,1],[0,3,4,2],[1,1,1,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,3],[1,1,1,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,2],[1,1,1,2]],[[1,1,2,0],[1,4,2,1],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,1],[0,4,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,1],[0,3,4,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,1],[0,3,3,3],[1,1,2,0]],[[1,1,2,0],[1,3,2,1],[0,3,3,2],[1,1,3,0]],[[1,1,2,0],[1,4,2,1],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,1],[0,4,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,1],[0,3,4,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,3],[1,2,0,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,2],[2,2,0,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,2],[1,3,0,1]],[[1,1,2,0],[1,3,2,1],[0,3,3,2],[1,2,0,2]],[[1,1,2,0],[1,4,2,1],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,1],[0,4,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,1],[0,3,4,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,1],[0,3,3,3],[1,2,1,0]],[[1,1,2,0],[1,3,2,1],[0,3,3,2],[2,2,1,0]],[[1,1,2,0],[1,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[2,2,3,0],[2,0,2,0]],[[1,2,0,1],[2,2,3,2],[3,2,3,0],[1,0,2,0]],[[1,2,0,1],[3,2,3,2],[2,2,3,0],[1,0,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,3,0],[1,0,2,0]],[[2,2,0,1],[2,2,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,2,0],[1,3,2,1],[1,2,2,3],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,2,2,2],[0,3,2,1]],[[1,1,2,0],[1,3,2,1],[1,2,2,2],[0,2,3,1]],[[1,1,2,0],[1,3,2,1],[1,2,2,2],[0,2,2,2]],[[1,1,2,0],[1,3,2,1],[1,2,4,1],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,2,3,1],[0,3,2,1]],[[1,1,2,0],[1,3,2,1],[1,2,3,1],[0,2,3,1]],[[1,1,2,0],[1,3,2,1],[1,2,3,1],[0,2,2,2]],[[1,1,2,0],[1,3,2,1],[1,2,4,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,1],[1,2,3,3],[0,2,1,1]],[[1,1,2,0],[1,3,2,1],[1,2,3,2],[0,2,1,2]],[[1,1,2,0],[1,3,2,1],[1,2,4,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,1],[1,2,3,3],[0,2,2,0]],[[1,1,2,0],[1,3,2,1],[1,2,3,2],[0,3,2,0]],[[1,1,2,0],[1,3,2,1],[1,2,3,2],[0,2,3,0]],[[1,1,2,0],[1,4,2,1],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,4,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,0,3],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,0,2],[2,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,0,2],[1,3,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,0,2],[1,2,3,1]],[[1,1,2,0],[1,3,2,1],[1,3,0,2],[1,2,2,2]],[[1,1,2,0],[1,4,2,1],[1,3,1,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,4,1,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,1,1],[2,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,1,1],[1,3,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,1,1],[1,2,3,1]],[[1,1,2,0],[1,3,2,1],[1,3,1,1],[1,2,2,2]],[[1,1,2,0],[1,4,2,1],[1,3,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,4,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,1,3],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,1,2],[0,3,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,1,2],[0,2,3,1]],[[1,1,2,0],[1,3,2,1],[1,3,1,2],[0,2,2,2]],[[1,1,2,0],[1,4,2,1],[1,3,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,1],[1,4,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,1,2],[2,2,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,1,2],[1,3,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,1,2],[1,2,3,0]],[[1,1,2,0],[1,4,2,1],[1,3,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,4,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,1],[0,3,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,1],[0,2,3,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,1],[0,2,2,2]],[[1,1,2,0],[1,4,2,1],[1,3,2,1],[1,2,1,1]],[[1,1,2,0],[1,3,2,1],[1,4,2,1],[1,2,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,1],[2,2,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,1],[1,3,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,3],[0,1,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,2],[0,1,3,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,2],[0,1,2,2]],[[1,1,2,0],[1,4,2,1],[1,3,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,1],[1,4,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,2,2],[0,3,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,2,2],[0,2,3,0]],[[1,1,2,0],[1,3,2,1],[1,3,2,3],[1,0,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,2],[1,0,3,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,2],[1,0,2,2]],[[1,1,2,0],[1,4,2,1],[1,3,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,1],[1,4,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,2],[2,2,0,1]],[[1,1,2,0],[1,3,2,1],[1,3,2,2],[1,3,0,1]],[[1,1,2,0],[1,4,2,1],[1,3,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,1],[1,4,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,1],[1,3,2,2],[2,2,1,0]],[[1,1,2,0],[1,3,2,1],[1,3,2,2],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[3,2,3,0],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,2,3,0],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,2,3,0],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,2,0],[1,4,2,1],[1,3,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,4,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,0],[0,3,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,0],[0,2,3,1]],[[1,1,2,0],[1,4,2,1],[1,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,2,1],[1,4,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,4,1],[0,1,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,1],[0,1,3,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,1],[0,1,2,2]],[[1,1,2,0],[1,4,2,1],[1,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,2,1],[1,4,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,4,1],[0,2,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,1],[0,3,1,1]],[[1,1,2,0],[1,4,2,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,2,1],[1,4,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,4,1],[1,0,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,1],[1,0,3,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,1],[1,0,2,2]],[[1,1,2,0],[1,4,2,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,2,1],[1,4,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,4,1],[1,1,1,1]],[[1,2,0,1],[2,2,3,2],[3,2,3,0],[0,1,2,0]],[[1,2,0,1],[3,2,3,2],[2,2,3,0],[0,1,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,3,0],[0,1,2,0]],[[2,2,0,1],[2,2,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,4,2],[0,0,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,2],[0,0,2,2]],[[1,1,2,0],[1,4,2,1],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,1],[1,4,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,4,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,2],[0,1,1,2]],[[1,1,2,0],[1,4,2,1],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,1],[1,4,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,4,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,3,3],[0,1,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,3,2],[0,1,3,0]],[[1,1,2,0],[1,4,2,1],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,1],[1,4,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,1],[1,3,4,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,3],[0,2,0,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,2],[0,3,0,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,2],[0,2,0,2]],[[1,1,2,0],[1,4,2,1],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,1],[1,4,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,1],[1,3,4,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,1],[1,3,3,3],[0,2,1,0]],[[1,1,2,0],[1,3,2,1],[1,3,3,2],[0,3,1,0]],[[1,1,2,0],[1,4,2,1],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,1],[1,4,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,4,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,3],[1,0,1,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,2],[1,0,1,2]],[[1,1,2,0],[1,4,2,1],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,1],[1,4,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,4,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,3,3],[1,0,2,0]],[[1,1,2,0],[1,3,2,1],[1,3,3,2],[1,0,3,0]],[[1,1,2,0],[1,4,2,1],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,1],[1,4,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,1],[1,3,4,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,3],[1,1,0,1]],[[1,1,2,0],[1,3,2,1],[1,3,3,2],[1,1,0,2]],[[1,1,2,0],[1,4,2,1],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,1],[1,4,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,1],[1,3,4,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,1],[1,3,3,3],[1,1,1,0]],[[1,1,2,0],[1,3,2,1],[3,2,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,2,0,3],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,2,0,2],[2,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,2,0,2],[1,3,2,1]],[[1,1,2,0],[1,3,2,1],[2,2,0,2],[1,2,3,1]],[[1,1,2,0],[1,3,2,1],[2,2,0,2],[1,2,2,2]],[[1,1,2,0],[1,3,2,1],[3,2,1,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,2,1,1],[2,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,2,1,1],[1,3,2,1]],[[1,1,2,0],[1,3,2,1],[2,2,1,1],[1,2,3,1]],[[1,1,2,0],[1,3,2,1],[2,2,1,1],[1,2,2,2]],[[1,1,2,0],[1,3,2,1],[3,2,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,1],[2,2,1,2],[2,2,2,0]],[[1,1,2,0],[1,3,2,1],[2,2,1,2],[1,3,2,0]],[[1,1,2,0],[1,3,2,1],[2,2,1,2],[1,2,3,0]],[[1,1,2,0],[1,3,2,1],[3,2,2,1],[1,2,1,1]],[[1,1,2,0],[1,3,2,1],[2,2,2,1],[2,2,1,1]],[[1,1,2,0],[1,3,2,1],[2,2,2,1],[1,3,1,1]],[[1,1,2,0],[1,3,2,1],[3,2,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,1],[2,2,2,2],[2,2,0,1]],[[1,1,2,0],[1,3,2,1],[2,2,2,2],[1,3,0,1]],[[1,1,2,0],[1,3,2,1],[3,2,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,1],[2,2,2,2],[2,2,1,0]],[[1,1,2,0],[1,3,2,1],[2,2,2,2],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[2,2,2,1],[2,2,0,0]],[[1,2,0,1],[2,2,3,2],[3,2,2,1],[1,2,0,0]],[[1,2,0,1],[3,2,3,2],[2,2,2,1],[1,2,0,0]],[[1,3,0,1],[2,2,3,2],[2,2,2,1],[1,2,0,0]],[[2,2,0,1],[2,2,3,2],[2,2,2,1],[1,2,0,0]],[[1,2,0,1],[2,2,3,2],[2,2,2,1],[2,1,1,0]],[[1,2,0,1],[2,2,3,2],[3,2,2,1],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[2,2,2,1],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[2,2,2,1],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[2,2,2,1],[1,1,1,0]],[[1,2,0,1],[2,2,3,2],[2,2,2,1],[2,1,0,1]],[[1,2,0,1],[2,2,3,2],[3,2,2,1],[1,1,0,1]],[[1,2,0,1],[3,2,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,2,0],[1,3,2,1],[3,3,0,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,3,0,1],[2,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,3,0,1],[1,3,2,1]],[[1,1,2,0],[1,4,2,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[3,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,4,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,3,0,3],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,3,0,2],[0,3,2,1]],[[1,1,2,0],[1,3,2,1],[2,3,0,2],[0,2,3,1]],[[1,1,2,0],[1,3,2,1],[2,3,0,2],[0,2,2,2]],[[1,1,2,0],[1,4,2,1],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,2,1],[3,3,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,2,1],[2,4,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,2,1],[2,3,0,2],[2,1,2,1]],[[1,1,2,0],[1,3,2,1],[3,3,0,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,1],[2,3,0,2],[2,2,2,0]],[[1,1,2,0],[1,3,2,1],[2,3,0,2],[1,3,2,0]],[[1,1,2,0],[1,4,2,1],[2,3,1,1],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[3,3,1,1],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,4,1,1],[0,2,2,1]],[[1,1,2,0],[1,3,2,1],[2,3,1,1],[0,3,2,1]],[[1,1,2,0],[1,3,2,1],[2,3,1,1],[0,2,3,1]],[[1,1,2,0],[1,3,2,1],[2,3,1,1],[0,2,2,2]],[[1,1,2,0],[1,4,2,1],[2,3,1,1],[1,1,2,1]],[[1,1,2,0],[1,3,2,1],[3,3,1,1],[1,1,2,1]],[[1,1,2,0],[1,3,2,1],[2,4,1,1],[1,1,2,1]],[[1,1,2,0],[1,3,2,1],[2,3,1,1],[2,1,2,1]],[[1,1,2,0],[1,4,2,1],[2,3,1,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,1],[3,3,1,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,1],[2,4,1,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,1],[2,3,1,2],[0,3,2,0]],[[1,1,2,0],[1,3,2,1],[2,3,1,2],[0,2,3,0]],[[1,1,2,0],[1,4,2,1],[2,3,1,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,1],[3,3,1,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,1],[2,4,1,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,1],[2,3,1,2],[2,1,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,2,1],[1,1,0,1]],[[2,2,0,1],[2,2,3,2],[2,2,2,1],[1,1,0,1]],[[1,2,0,1],[2,2,3,2],[2,2,2,1],[2,0,2,0]],[[1,1,2,0],[1,4,2,1],[2,3,2,1],[0,1,2,1]],[[1,1,2,0],[1,3,2,1],[3,3,2,1],[0,1,2,1]],[[1,1,2,0],[1,3,2,1],[2,4,2,1],[0,1,2,1]],[[1,1,2,0],[1,4,2,1],[2,3,2,1],[0,2,1,1]],[[1,1,2,0],[1,3,2,1],[3,3,2,1],[0,2,1,1]],[[1,1,2,0],[1,3,2,1],[2,4,2,1],[0,2,1,1]],[[1,1,2,0],[1,3,2,1],[2,3,2,1],[0,3,1,1]],[[1,1,2,0],[1,4,2,1],[2,3,2,1],[1,0,2,1]],[[1,1,2,0],[1,3,2,1],[3,3,2,1],[1,0,2,1]],[[1,1,2,0],[1,3,2,1],[2,4,2,1],[1,0,2,1]],[[1,1,2,0],[1,3,2,1],[2,3,2,1],[2,0,2,1]],[[1,1,2,0],[1,4,2,1],[2,3,2,1],[1,1,1,1]],[[1,1,2,0],[1,3,2,1],[3,3,2,1],[1,1,1,1]],[[1,1,2,0],[1,3,2,1],[2,4,2,1],[1,1,1,1]],[[1,1,2,0],[1,3,2,1],[2,3,2,1],[2,1,1,1]],[[1,1,2,0],[1,4,2,1],[2,3,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,2,1],[3,3,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,2,1],[2,4,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,2,1],[2,3,2,1],[2,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,2,2,1],[1,0,2,0]],[[1,2,0,1],[3,2,3,2],[2,2,2,1],[1,0,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,2,1],[1,0,2,0]],[[2,2,0,1],[2,2,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,0,1],[2,2,3,2],[2,2,2,1],[2,0,1,1]],[[1,2,0,1],[2,2,3,2],[3,2,2,1],[1,0,1,1]],[[1,2,0,1],[3,2,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,0],[1,4,2,1],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,1],[3,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,1],[2,4,2,2],[0,1,1,1]],[[1,1,2,0],[1,4,2,1],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,1],[3,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,1],[2,4,2,2],[0,1,2,0]],[[1,1,2,0],[1,4,2,1],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,1],[3,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,1],[2,4,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,1],[2,3,2,2],[0,3,0,1]],[[1,1,2,0],[1,4,2,1],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,1],[3,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,1],[2,4,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,1],[2,3,2,2],[0,3,1,0]],[[1,3,0,1],[2,2,3,2],[2,2,2,1],[1,0,1,1]],[[2,2,0,1],[2,2,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,0],[1,4,2,1],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,1],[3,3,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,1],[2,4,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,1],[2,3,2,2],[2,0,1,1]],[[1,1,2,0],[1,4,2,1],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,1],[3,3,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,1],[2,4,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,1],[2,3,2,2],[2,0,2,0]],[[1,1,2,0],[1,4,2,1],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,1],[3,3,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,1],[2,4,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,1],[2,3,2,2],[2,1,0,1]],[[1,1,2,0],[1,4,2,1],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,1],[3,3,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,1],[2,4,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,1],[2,3,2,2],[2,1,1,0]],[[1,2,0,1],[2,2,3,2],[3,2,2,1],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,2,2,1],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,2,2,1],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,2,0],[1,4,2,1],[2,3,2,2],[1,2,0,0]],[[1,1,2,0],[1,3,2,1],[3,3,2,2],[1,2,0,0]],[[1,1,2,0],[1,3,2,1],[2,4,2,2],[1,2,0,0]],[[1,1,2,0],[1,3,2,1],[2,3,2,2],[2,2,0,0]],[[1,2,0,1],[2,2,3,2],[3,2,2,1],[0,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,2,2,1],[0,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,2,2,1],[0,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,2,2,1],[0,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,2,2,1],[0,1,2,0]],[[1,2,0,1],[3,2,3,2],[2,2,2,1],[0,1,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,2,1],[0,1,2,0]],[[2,2,0,1],[2,2,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,0,1],[2,2,3,2],[3,2,2,1],[0,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,2,2,1],[0,1,1,1]],[[1,3,0,1],[2,2,3,2],[2,2,2,1],[0,1,1,1]],[[2,2,0,1],[2,2,3,2],[2,2,2,1],[0,1,1,1]],[[1,2,0,1],[2,2,3,2],[2,2,2,0],[2,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,2,2,0],[1,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,2,2,0],[1,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,2,2,0],[1,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,2,2,0],[1,2,0,1]],[[1,2,0,1],[2,2,3,2],[2,2,2,0],[2,1,1,1]],[[1,2,0,1],[2,2,3,2],[3,2,2,0],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,2,2,0],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[2,2,2,0],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,0,1],[2,2,3,2],[2,2,2,0],[2,0,2,1]],[[1,2,0,1],[2,2,3,2],[3,2,2,0],[1,0,2,1]],[[1,2,0,1],[3,2,3,2],[2,2,2,0],[1,0,2,1]],[[1,3,0,1],[2,2,3,2],[2,2,2,0],[1,0,2,1]],[[2,2,0,1],[2,2,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,0,1],[2,2,3,2],[3,2,2,0],[0,2,1,1]],[[1,2,0,1],[3,2,3,2],[2,2,2,0],[0,2,1,1]],[[1,3,0,1],[2,2,3,2],[2,2,2,0],[0,2,1,1]],[[2,2,0,1],[2,2,3,2],[2,2,2,0],[0,2,1,1]],[[1,2,0,1],[2,2,3,2],[3,2,2,0],[0,1,2,1]],[[1,2,0,1],[3,2,3,2],[2,2,2,0],[0,1,2,1]],[[1,3,0,1],[2,2,3,2],[2,2,2,0],[0,1,2,1]],[[2,2,0,1],[2,2,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,2,0],[1,4,2,1],[2,3,3,2],[0,2,0,0]],[[1,1,2,0],[1,3,2,1],[3,3,3,2],[0,2,0,0]],[[1,1,2,0],[1,3,2,1],[2,4,3,2],[0,2,0,0]],[[1,2,0,1],[2,2,3,2],[2,2,1,2],[2,2,0,0]],[[1,2,0,1],[2,2,3,2],[3,2,1,2],[1,2,0,0]],[[1,2,0,1],[3,2,3,2],[2,2,1,2],[1,2,0,0]],[[1,3,0,1],[2,2,3,2],[2,2,1,2],[1,2,0,0]],[[2,2,0,1],[2,2,3,2],[2,2,1,2],[1,2,0,0]],[[1,2,0,1],[2,2,3,2],[2,2,1,2],[2,1,1,0]],[[1,2,0,1],[2,2,3,2],[3,2,1,2],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[2,2,1,2],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[2,2,1,2],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,0,1],[2,2,3,2],[2,2,1,2],[2,1,0,1]],[[1,2,0,1],[2,2,3,2],[3,2,1,2],[1,1,0,1]],[[1,2,0,1],[3,2,3,2],[2,2,1,2],[1,1,0,1]],[[1,3,0,1],[2,2,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,0],[1,4,2,1],[2,3,3,2],[1,1,0,0]],[[1,1,2,0],[1,3,2,1],[3,3,3,2],[1,1,0,0]],[[1,1,2,0],[1,3,2,1],[2,4,3,2],[1,1,0,0]],[[1,1,2,0],[1,3,2,1],[2,3,3,2],[2,1,0,0]],[[2,2,0,1],[2,2,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,0,1],[2,2,3,2],[2,2,1,2],[2,0,2,0]],[[1,2,0,1],[2,2,3,2],[3,2,1,2],[1,0,2,0]],[[1,2,0,1],[3,2,3,2],[2,2,1,2],[1,0,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,1,2],[1,0,2,0]],[[2,2,0,1],[2,2,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,0,1],[2,2,3,2],[2,2,1,2],[2,0,1,1]],[[1,2,0,1],[2,2,3,2],[3,2,1,2],[1,0,1,1]],[[1,2,0,1],[3,2,3,2],[2,2,1,2],[1,0,1,1]],[[1,3,0,1],[2,2,3,2],[2,2,1,2],[1,0,1,1]],[[2,2,0,1],[2,2,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,0,1],[2,2,3,2],[3,2,1,2],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,2,1,2],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,2,1,2],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,2,1,2],[0,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,2,1,2],[0,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,2,1,2],[0,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,2,1,2],[0,1,2,0]],[[1,2,0,1],[3,2,3,2],[2,2,1,2],[0,1,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,1,2],[0,1,2,0]],[[2,2,0,1],[2,2,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,0,1],[2,2,3,2],[3,2,1,2],[0,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,2,1,2],[0,1,1,1]],[[1,3,0,1],[2,2,3,2],[2,2,1,2],[0,1,1,1]],[[2,2,0,1],[2,2,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,0,1],[2,2,3,2],[2,2,1,1],[2,1,2,0]],[[1,2,0,1],[2,2,3,2],[3,2,1,1],[1,1,2,0]],[[1,2,0,1],[3,2,3,2],[2,2,1,1],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,1,1],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,2,0],[1,3,2,3],[0,0,3,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,0,3,3],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,0,3,2],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[0,0,3,2],[1,2,2,2]],[[1,1,2,0],[1,3,2,3],[0,1,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,1,2,3],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,1,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,1,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,2,2],[0,1,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[0,1,2,2],[1,2,2,2]],[[1,1,2,0],[1,3,2,2],[0,1,4,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,1,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,1,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,2,2],[0,1,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[0,1,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,2,3],[0,1,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[0,1,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[0,1,3,3],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[0,1,3,2],[1,2,1,2]],[[1,1,2,0],[1,3,2,3],[0,1,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[0,1,4,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[0,1,3,3],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[0,1,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,2,2],[0,1,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,2,2],[0,1,3,2],[1,2,3,0]],[[1,1,2,0],[1,3,2,3],[0,2,2,2],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[0,2,2,3],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[0,2,2,2],[1,1,3,1]],[[1,1,2,0],[1,3,2,2],[0,2,2,2],[1,1,2,2]],[[1,1,2,0],[1,3,2,2],[0,2,4,0],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,0],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,0],[1,3,2,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,0],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,0],[1,2,2,2]],[[1,1,2,0],[1,3,2,2],[0,2,4,1],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,1],[1,1,3,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,1],[1,1,2,2]],[[1,1,2,0],[1,3,2,2],[0,2,4,1],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[0,2,3,1],[2,2,2,0]],[[1,1,2,0],[1,3,2,2],[0,2,3,1],[1,3,2,0]],[[1,1,2,0],[1,3,2,2],[0,2,3,1],[1,2,3,0]],[[1,1,2,0],[1,3,2,3],[0,2,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[0,2,4,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,3],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,2],[1,0,2,2]],[[1,1,2,0],[1,3,2,3],[0,2,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[0,2,4,2],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,3],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,2],[1,1,1,2]],[[1,1,2,0],[1,3,2,3],[0,2,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[0,2,4,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[0,2,3,3],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[0,2,3,2],[1,1,3,0]],[[1,1,2,0],[1,3,2,3],[0,2,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[0,2,4,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,3],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[0,2,3,2],[1,2,0,2]],[[1,1,2,0],[1,3,2,3],[0,2,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[0,2,4,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,2,1,1],[0,2,2,0]],[[1,2,0,1],[3,2,3,2],[2,2,1,1],[0,2,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,1,1],[0,2,2,0]],[[2,2,0,1],[2,2,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,2,0],[1,4,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,3],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,4,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,0,3],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,0,2],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,0,2],[1,3,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,0,2],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[0,3,0,2],[1,2,2,2]],[[1,1,2,0],[1,4,2,2],[0,3,2,0],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,4,2,0],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,2,0],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,2,0],[1,3,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,2,0],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[0,3,2,0],[1,2,2,2]],[[1,1,2,0],[1,4,2,2],[0,3,2,1],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[0,4,2,1],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[0,3,2,1],[2,2,2,0]],[[1,1,2,0],[1,3,2,2],[0,3,2,1],[1,3,2,0]],[[1,1,2,0],[1,3,2,2],[0,3,2,1],[1,2,3,0]],[[1,1,2,0],[1,3,2,3],[0,3,2,2],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,2,3],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,2,2],[0,1,3,1]],[[1,1,2,0],[1,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,1,2,0],[1,4,2,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[0,4,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,4,0],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,0],[1,1,3,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,0],[1,1,2,2]],[[1,1,2,0],[1,4,2,2],[0,3,3,0],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[0,4,3,0],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[0,3,4,0],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,0],[2,2,1,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,0],[1,3,1,1]],[[1,1,2,0],[1,3,2,2],[0,3,4,1],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,1],[0,1,3,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,1],[0,1,2,2]],[[1,1,2,0],[1,4,2,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[0,4,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[0,3,4,1],[1,1,1,1]],[[1,1,2,0],[1,4,2,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[0,4,3,1],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[0,3,4,1],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[0,3,3,1],[1,1,3,0]],[[1,1,2,0],[1,4,2,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[0,4,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[0,3,4,1],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,1],[2,2,0,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,1],[1,3,0,1]],[[1,1,2,0],[1,4,2,2],[0,3,3,1],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[0,4,3,1],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[0,3,4,1],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[0,3,3,1],[2,2,1,0]],[[1,1,2,0],[1,3,2,2],[0,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[2,2,1,0],[2,1,2,1]],[[1,2,0,1],[2,2,3,2],[3,2,1,0],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[2,2,1,0],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[2,2,1,0],[1,1,2,1]],[[2,2,0,1],[2,2,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,0,1],[2,2,3,2],[3,2,1,0],[0,2,2,1]],[[1,2,0,1],[3,2,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,2,0],[1,3,2,3],[0,3,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,4,2],[0,0,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,2],[0,0,2,2]],[[1,1,2,0],[1,3,2,3],[0,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[0,3,4,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,2],[0,1,1,2]],[[1,1,2,0],[1,3,2,3],[0,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[0,3,4,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[0,3,3,3],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[0,3,3,2],[0,1,3,0]],[[1,1,2,0],[1,3,2,3],[0,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[0,3,4,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,3],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[0,3,3,2],[0,2,0,2]],[[1,1,2,0],[1,3,2,3],[0,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[0,3,4,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,2,1,0],[0,2,2,1]],[[2,2,0,1],[2,2,3,2],[2,2,1,0],[0,2,2,1]],[[1,2,0,1],[2,2,3,2],[2,2,0,2],[2,1,2,0]],[[1,2,0,1],[2,2,3,2],[3,2,0,2],[1,1,2,0]],[[1,2,0,1],[3,2,3,2],[2,2,0,2],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,0,2],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,0,1],[2,2,3,2],[2,2,0,2],[2,1,1,1]],[[1,2,0,1],[2,2,3,2],[3,2,0,2],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,2,0,2],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[2,2,0,2],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,0,1],[2,2,3,2],[2,2,0,2],[2,0,2,1]],[[1,2,0,1],[2,2,3,2],[3,2,0,2],[1,0,2,1]],[[1,2,0,1],[3,2,3,2],[2,2,0,2],[1,0,2,1]],[[1,3,0,1],[2,2,3,2],[2,2,0,2],[1,0,2,1]],[[2,2,0,1],[2,2,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,3],[1,0,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,0,2,3],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,0,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,0,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,2,2],[1,0,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[1,0,2,2],[1,2,2,2]],[[1,1,2,0],[1,3,2,2],[1,0,4,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,0,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,0,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,2,2],[1,0,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[1,0,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,2,3],[1,0,3,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,0,3,3],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,0,3,2],[0,2,3,1]],[[1,1,2,0],[1,3,2,2],[1,0,3,2],[0,2,2,2]],[[1,1,2,0],[1,3,2,3],[1,0,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,0,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,0,3,3],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,0,3,2],[1,2,1,2]],[[1,1,2,0],[1,3,2,3],[1,0,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,0,4,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,0,3,3],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,0,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,0,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,2,2],[1,0,3,2],[1,2,3,0]],[[1,1,2,0],[1,3,2,3],[1,1,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,1,2,3],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,1,2,2],[0,3,2,1]],[[1,1,2,0],[1,3,2,2],[1,1,2,2],[0,2,3,1]],[[1,1,2,0],[1,3,2,2],[1,1,2,2],[0,2,2,2]],[[1,1,2,0],[1,3,2,2],[1,1,4,1],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,1,3,1],[0,3,2,1]],[[1,1,2,0],[1,3,2,2],[1,1,3,1],[0,2,3,1]],[[1,1,2,0],[1,3,2,2],[1,1,3,1],[0,2,2,2]],[[1,1,2,0],[1,3,2,3],[1,1,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,1,4,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,1,3,3],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,1,3,2],[0,2,1,2]],[[1,1,2,0],[1,3,2,3],[1,1,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,1,4,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,1,3,3],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,1,3,2],[0,3,2,0]],[[1,1,2,0],[1,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,0,1],[2,2,3,2],[3,2,0,2],[0,2,2,0]],[[1,2,0,1],[3,2,3,2],[2,2,0,2],[0,2,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,0,2],[0,2,2,0]],[[2,2,0,1],[2,2,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,0,1],[2,2,3,2],[3,2,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,3],[1,2,2,2],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,2,3],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,2,2],[0,1,3,1]],[[1,1,2,0],[1,3,2,2],[1,2,2,2],[0,1,2,2]],[[1,1,2,0],[1,3,2,3],[1,2,2,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,2,3],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,2,2],[1,0,3,1]],[[1,1,2,0],[1,3,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,0,1],[3,2,3,2],[2,2,0,2],[0,2,1,1]],[[1,3,0,1],[2,2,3,2],[2,2,0,2],[0,2,1,1]],[[2,2,0,1],[2,2,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,0,1],[2,2,3,2],[3,2,0,2],[0,1,2,1]],[[1,2,0,1],[3,2,3,2],[2,2,0,2],[0,1,2,1]],[[1,3,0,1],[2,2,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,4,0],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,0],[0,3,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,0],[0,2,3,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,0],[0,2,2,2]],[[1,1,2,0],[1,3,2,2],[1,2,4,1],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,1],[0,1,3,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,1],[0,1,2,2]],[[1,1,2,0],[1,3,2,2],[1,2,4,1],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,2,3,1],[0,3,2,0]],[[1,1,2,0],[1,3,2,2],[1,2,3,1],[0,2,3,0]],[[1,1,2,0],[1,3,2,2],[1,2,4,1],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,1],[1,0,3,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,1],[1,0,2,2]],[[2,2,0,1],[2,2,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,0],[1,3,2,3],[1,2,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,4,2],[0,0,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,2],[0,0,2,2]],[[1,1,2,0],[1,3,2,3],[1,2,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[1,2,4,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,2],[0,1,1,2]],[[1,1,2,0],[1,3,2,3],[1,2,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[1,2,4,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[1,2,3,3],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[1,2,3,2],[0,1,3,0]],[[1,1,2,0],[1,3,2,3],[1,2,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,2,4,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,3],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,2],[0,2,0,2]],[[1,1,2,0],[1,3,2,3],[1,2,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,2,4,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,0,1],[2,2,3,2],[2,2,0,1],[1,3,2,0]],[[1,2,0,1],[2,2,3,2],[2,2,0,1],[2,2,2,0]],[[1,1,2,0],[1,3,2,3],[1,2,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[1,2,4,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,3],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,2],[1,0,1,2]],[[1,1,2,0],[1,3,2,3],[1,2,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[1,2,4,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[1,2,3,3],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[1,2,3,2],[1,0,3,0]],[[1,1,2,0],[1,3,2,3],[1,2,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[1,2,4,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,3],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[1,2,3,2],[1,1,0,2]],[[1,1,2,0],[1,3,2,3],[1,2,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[1,2,4,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,0,1],[2,2,3,2],[3,2,0,1],[1,2,2,0]],[[1,2,0,1],[3,2,3,2],[2,2,0,1],[1,2,2,0]],[[1,3,0,1],[2,2,3,2],[2,2,0,1],[1,2,2,0]],[[2,2,0,1],[2,2,3,2],[2,2,0,1],[1,2,2,0]],[[1,2,0,1],[2,2,3,2],[2,2,0,1],[2,1,2,1]],[[1,2,0,1],[2,2,3,2],[3,2,0,1],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[2,2,0,1],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[2,2,0,1],[1,1,2,1]],[[2,2,0,1],[2,2,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,0,1],[2,2,3,2],[3,2,0,1],[0,2,2,1]],[[1,2,0,1],[3,2,3,2],[2,2,0,1],[0,2,2,1]],[[1,3,0,1],[2,2,3,2],[2,2,0,1],[0,2,2,1]],[[2,2,0,1],[2,2,3,2],[2,2,0,1],[0,2,2,1]],[[1,2,0,1],[2,2,3,2],[2,2,0,0],[1,3,2,1]],[[1,2,0,1],[2,2,3,2],[2,2,0,0],[2,2,2,1]],[[1,2,0,1],[2,2,3,2],[3,2,0,0],[1,2,2,1]],[[1,2,0,1],[3,2,3,2],[2,2,0,0],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[2,2,0,0],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[2,2,0,0],[1,2,2,1]],[[1,1,2,0],[1,4,2,2],[1,3,0,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,4,0,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,0,1],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,0,1],[1,3,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,0,1],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[1,3,0,1],[1,2,2,2]],[[1,1,2,0],[1,4,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,3],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,4,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,0,3],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,0,2],[0,3,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,0,2],[0,2,3,1]],[[1,1,2,0],[1,3,2,2],[1,3,0,2],[0,2,2,2]],[[1,1,2,0],[1,4,2,2],[1,3,0,2],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,4,0,2],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,0,2],[2,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,0,2],[1,3,1,1]],[[1,1,2,0],[1,4,2,2],[1,3,0,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,4,0,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,0,2],[2,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,0,2],[1,3,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,0,2],[1,2,3,0]],[[1,1,2,0],[1,4,2,2],[1,3,1,0],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,4,1,0],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,1,0],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,1,0],[1,3,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,1,0],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[1,3,1,0],[1,2,2,2]],[[1,1,2,0],[1,4,2,2],[1,3,1,1],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,4,1,1],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,1,1],[2,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,1,1],[1,3,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,1,1],[1,2,3,0]],[[1,1,2,0],[1,4,2,2],[1,3,1,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,4,1,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,3,1,2],[2,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,3,1,2],[1,3,0,1]],[[1,1,2,0],[1,4,2,2],[1,3,1,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,4,1,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,3,1,2],[2,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,3,1,2],[1,3,1,0]],[[1,1,2,0],[1,4,2,2],[1,3,2,0],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,4,2,0],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,2,0],[0,3,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,2,0],[0,2,3,1]],[[1,1,2,0],[1,3,2,2],[1,3,2,0],[0,2,2,2]],[[1,1,2,0],[1,4,2,2],[1,3,2,0],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,4,2,0],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,2,0],[2,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,2,0],[1,3,1,1]],[[1,1,2,0],[1,4,2,2],[1,3,2,1],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,4,2,1],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,2,1],[0,3,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,2,1],[0,2,3,0]],[[1,1,2,0],[1,4,2,2],[1,3,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,4,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,3,2,1],[2,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,3,2,1],[1,3,0,1]],[[1,1,2,0],[1,4,2,2],[1,3,2,1],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,4,2,1],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,3,2,1],[2,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,3,2,1],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[3,1,3,2],[1,0,0,1]],[[1,2,0,1],[3,2,3,2],[2,1,3,2],[1,0,0,1]],[[1,3,0,1],[2,2,3,2],[2,1,3,2],[1,0,0,1]],[[2,2,0,1],[2,2,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,0,1],[3,2,3,2],[2,1,3,2],[0,1,0,1]],[[1,3,0,1],[2,2,3,2],[2,1,3,2],[0,1,0,1]],[[2,2,0,1],[2,2,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,2,0],[1,4,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[1,4,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,4,0],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,3,0],[0,1,3,1]],[[1,1,2,0],[1,3,2,2],[1,3,3,0],[0,1,2,2]],[[1,1,2,0],[1,4,2,2],[1,3,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,4,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,4,0],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,3,0],[0,3,1,1]],[[1,1,2,0],[1,4,2,2],[1,3,3,0],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[1,4,3,0],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,4,0],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[1,3,3,0],[1,0,3,1]],[[1,1,2,0],[1,3,2,2],[1,3,3,0],[1,0,2,2]],[[1,1,2,0],[1,4,2,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[1,4,3,0],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,4,0],[1,1,1,1]],[[1,1,2,0],[1,4,2,2],[1,3,3,0],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,4,3,0],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,3,3,0],[2,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,3,3,0],[1,3,1,0]],[[1,1,2,0],[1,4,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[1,4,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,4,1],[0,1,1,1]],[[1,1,2,0],[1,4,2,2],[1,3,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[1,4,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,4,1],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,3,1],[0,1,3,0]],[[1,1,2,0],[1,4,2,2],[1,3,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,4,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,3,4,1],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[1,3,3,1],[0,3,0,1]],[[1,1,2,0],[1,4,2,2],[1,3,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,4,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,3,4,1],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[1,3,3,1],[0,3,1,0]],[[1,1,2,0],[1,4,2,2],[1,3,3,1],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[1,4,3,1],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,4,1],[1,0,1,1]],[[1,1,2,0],[1,4,2,2],[1,3,3,1],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[1,4,3,1],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,4,1],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,3,1],[1,0,3,0]],[[1,1,2,0],[1,4,2,2],[1,3,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[1,4,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[1,3,4,1],[1,1,0,1]],[[1,1,2,0],[1,4,2,2],[1,3,3,1],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[1,4,3,1],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[1,3,4,1],[1,1,1,0]],[[1,2,0,1],[2,2,3,2],[2,1,3,1],[2,1,1,0]],[[1,2,0,1],[2,2,3,2],[3,1,3,1],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[2,1,3,1],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[2,1,3,1],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,0,1],[2,2,3,2],[2,1,3,1],[2,1,0,1]],[[1,2,0,1],[2,2,3,2],[3,1,3,1],[1,1,0,1]],[[1,2,0,1],[3,2,3,2],[2,1,3,1],[1,1,0,1]],[[1,3,0,1],[2,2,3,2],[2,1,3,1],[1,1,0,1]],[[2,2,0,1],[2,2,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,2,3],[1,3,3,2],[0,0,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,4,2],[0,0,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,3,3],[0,0,1,1]],[[1,1,2,0],[1,3,2,2],[1,3,3,2],[0,0,1,2]],[[1,1,2,0],[1,3,2,3],[1,3,3,2],[0,0,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,4,2],[0,0,2,0]],[[1,1,2,0],[1,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,0,1],[2,2,3,2],[2,1,3,1],[2,0,2,0]],[[1,2,0,1],[2,2,3,2],[3,1,3,1],[1,0,2,0]],[[1,2,0,1],[3,2,3,2],[2,1,3,1],[1,0,2,0]],[[1,3,0,1],[2,2,3,2],[2,1,3,1],[1,0,2,0]],[[2,2,0,1],[2,2,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,0,1],[2,2,3,2],[2,1,3,1],[2,0,1,1]],[[1,2,0,1],[2,2,3,2],[3,1,3,1],[1,0,1,1]],[[1,2,0,1],[3,2,3,2],[2,1,3,1],[1,0,1,1]],[[1,3,0,1],[2,2,3,2],[2,1,3,1],[1,0,1,1]],[[2,2,0,1],[2,2,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,0,1],[2,2,3,2],[3,1,3,1],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,1,3,1],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,1,3,1],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,1,3,1],[0,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,1,3,1],[0,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,1,3,1],[0,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,1,3,1],[0,1,2,0]],[[1,2,0,1],[3,2,3,2],[2,1,3,1],[0,1,2,0]],[[1,3,0,1],[2,2,3,2],[2,1,3,1],[0,1,2,0]],[[2,2,0,1],[2,2,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,0,1],[2,2,3,2],[3,1,3,1],[0,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,1,3,1],[0,1,1,1]],[[1,3,0,1],[2,2,3,2],[2,1,3,1],[0,1,1,1]],[[2,2,0,1],[2,2,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,1,3,1],[0,0,2,1]],[[1,3,0,1],[2,2,3,2],[2,1,3,1],[0,0,2,1]],[[2,2,0,1],[2,2,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,0,1],[2,2,3,2],[2,1,3,0],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[2,1,3,0],[2,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,1,3,0],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,1,3,0],[1,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,1,3,0],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,1,3,0],[1,2,1,0]],[[1,2,0,1],[2,2,3,2],[2,1,3,0],[2,1,1,1]],[[1,2,0,1],[2,2,3,2],[3,1,3,0],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,1,3,0],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[2,1,3,0],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,0,1],[2,2,3,2],[2,1,3,0],[2,0,2,1]],[[1,2,0,1],[2,2,3,2],[3,1,3,0],[1,0,2,1]],[[1,2,0,1],[3,2,3,2],[2,1,3,0],[1,0,2,1]],[[1,3,0,1],[2,2,3,2],[2,1,3,0],[1,0,2,1]],[[2,2,0,1],[2,2,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,0,1],[2,2,3,2],[3,1,3,0],[0,2,1,1]],[[1,2,0,1],[3,2,3,2],[2,1,3,0],[0,2,1,1]],[[1,3,0,1],[2,2,3,2],[2,1,3,0],[0,2,1,1]],[[2,2,0,1],[2,2,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,0,1],[2,2,3,2],[3,1,3,0],[0,1,2,1]],[[1,2,0,1],[3,2,3,2],[2,1,3,0],[0,1,2,1]],[[1,3,0,1],[2,2,3,2],[2,1,3,0],[0,1,2,1]],[[2,2,0,1],[2,2,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,2,3],[2,0,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,0,2,3],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,0,2,2],[0,3,2,1]],[[1,1,2,0],[1,3,2,2],[2,0,2,2],[0,2,3,1]],[[1,1,2,0],[1,3,2,2],[2,0,2,2],[0,2,2,2]],[[1,1,2,0],[1,3,2,3],[2,0,2,2],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,0,2,3],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,0,2,2],[1,1,3,1]],[[1,1,2,0],[1,3,2,2],[2,0,2,2],[1,1,2,2]],[[1,1,2,0],[1,3,2,2],[2,0,4,1],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,0,3,1],[0,3,2,1]],[[1,1,2,0],[1,3,2,2],[2,0,3,1],[0,2,3,1]],[[1,1,2,0],[1,3,2,2],[2,0,3,1],[0,2,2,2]],[[1,1,2,0],[1,3,2,2],[2,0,4,1],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,0,3,1],[1,1,3,1]],[[1,1,2,0],[1,3,2,2],[2,0,3,1],[1,1,2,2]],[[1,1,2,0],[1,3,2,3],[2,0,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[2,0,4,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[2,0,3,3],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[2,0,3,2],[0,2,1,2]],[[1,1,2,0],[1,3,2,3],[2,0,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,0,4,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,0,3,3],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,0,3,2],[0,3,2,0]],[[1,1,2,0],[1,3,2,2],[2,0,3,2],[0,2,3,0]],[[1,1,2,0],[1,3,2,3],[2,0,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,0,4,2],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,0,3,3],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,0,3,2],[1,1,1,2]],[[1,1,2,0],[1,3,2,3],[2,0,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,0,4,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,0,3,3],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,0,3,2],[1,1,3,0]],[[1,1,2,0],[1,3,2,3],[2,0,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,0,4,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,0,3,3],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,0,3,2],[1,2,0,2]],[[1,1,2,0],[1,3,2,3],[2,0,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,0,4,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,0,3,3],[1,2,1,0]],[[1,1,2,0],[1,3,2,3],[2,1,2,2],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,1,2,3],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,1,2,2],[0,1,3,1]],[[1,1,2,0],[1,3,2,2],[2,1,2,2],[0,1,2,2]],[[1,1,2,0],[1,3,2,3],[2,1,2,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[2,1,2,3],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[2,1,2,2],[1,0,3,1]],[[1,1,2,0],[1,3,2,2],[2,1,2,2],[1,0,2,2]],[[1,1,2,0],[1,3,2,2],[2,1,4,1],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,1],[0,1,3,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,1],[0,1,2,2]],[[1,1,2,0],[1,3,2,2],[2,1,4,1],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,1],[1,0,3,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,1],[1,0,2,2]],[[1,2,0,1],[2,2,3,2],[2,1,2,2],[2,1,1,0]],[[1,2,0,1],[2,2,3,2],[3,1,2,2],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[2,1,2,2],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[2,1,2,2],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,0,1],[2,2,3,2],[2,1,2,2],[2,1,0,1]],[[1,1,2,0],[1,3,2,3],[2,1,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,2,2],[2,1,4,2],[0,0,2,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,2],[0,0,2,2]],[[1,1,2,0],[1,3,2,3],[2,1,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,1,4,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,2],[0,1,1,2]],[[1,1,2,0],[1,3,2,3],[2,1,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,1,4,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,1,3,3],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,1,3,2],[0,1,3,0]],[[1,1,2,0],[1,3,2,3],[2,1,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,1,4,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,3],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,2],[0,2,0,2]],[[1,1,2,0],[1,3,2,3],[2,1,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,1,4,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,1,2,2],[1,1,0,1]],[[1,2,0,1],[3,2,3,2],[2,1,2,2],[1,1,0,1]],[[1,3,0,1],[2,2,3,2],[2,1,2,2],[1,1,0,1]],[[2,2,0,1],[2,2,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,3],[2,1,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[2,1,4,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,3],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,2],[1,0,1,2]],[[1,1,2,0],[1,3,2,3],[2,1,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[2,1,4,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[2,1,3,3],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[2,1,3,2],[1,0,3,0]],[[1,1,2,0],[1,3,2,3],[2,1,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[2,1,4,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,3],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[2,1,3,2],[1,1,0,2]],[[1,1,2,0],[1,3,2,3],[2,1,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[2,1,4,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,0,1],[2,2,3,2],[2,1,2,2],[2,0,2,0]],[[1,2,0,1],[2,2,3,2],[3,1,2,2],[1,0,2,0]],[[1,2,0,1],[3,2,3,2],[2,1,2,2],[1,0,2,0]],[[1,3,0,1],[2,2,3,2],[2,1,2,2],[1,0,2,0]],[[2,2,0,1],[2,2,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,0,1],[2,2,3,2],[2,1,2,2],[2,0,1,1]],[[1,2,0,1],[2,2,3,2],[3,1,2,2],[1,0,1,1]],[[1,2,0,1],[3,2,3,2],[2,1,2,2],[1,0,1,1]],[[1,3,0,1],[2,2,3,2],[2,1,2,2],[1,0,1,1]],[[2,2,0,1],[2,2,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,0,1],[2,2,3,2],[3,1,2,2],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,1,2,2],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[3,2,0,1],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,2,0,1],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,2,0,1],[1,3,2,1]],[[1,1,2,0],[1,3,2,2],[2,2,0,1],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[2,2,0,1],[1,2,2,2]],[[1,1,2,0],[1,3,2,2],[3,2,0,2],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[2,2,0,2],[2,2,1,1]],[[1,1,2,0],[1,3,2,2],[2,2,0,2],[1,3,1,1]],[[1,1,2,0],[1,3,2,2],[3,2,0,2],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,2,0,2],[2,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,2,0,2],[1,3,2,0]],[[1,1,2,0],[1,3,2,2],[2,2,0,2],[1,2,3,0]],[[1,1,2,0],[1,3,2,2],[3,2,1,0],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,2,1,0],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,2,1,0],[1,3,2,1]],[[1,1,2,0],[1,3,2,2],[2,2,1,0],[1,2,3,1]],[[1,1,2,0],[1,3,2,2],[2,2,1,0],[1,2,2,2]],[[1,1,2,0],[1,3,2,2],[3,2,1,1],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,2,1,1],[2,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,2,1,1],[1,3,2,0]],[[1,1,2,0],[1,3,2,2],[2,2,1,1],[1,2,3,0]],[[1,1,2,0],[1,3,2,2],[3,2,1,2],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,2,1,2],[2,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,2,1,2],[1,3,0,1]],[[1,1,2,0],[1,3,2,2],[3,2,1,2],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,2,1,2],[2,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,2,1,2],[1,3,1,0]],[[2,2,0,1],[2,2,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,1,2,2],[0,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,1,2,2],[0,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,1,2,2],[0,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[3,2,2,0],[1,2,1,1]],[[1,1,2,0],[1,3,2,2],[2,2,2,0],[2,2,1,1]],[[1,1,2,0],[1,3,2,2],[2,2,2,0],[1,3,1,1]],[[1,1,2,0],[1,3,2,2],[3,2,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,2,2,1],[2,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,2,2,1],[1,3,0,1]],[[1,1,2,0],[1,3,2,2],[3,2,2,1],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,2,2,1],[2,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,2,2,1],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[3,1,2,2],[0,1,2,0]],[[1,2,0,1],[3,2,3,2],[2,1,2,2],[0,1,2,0]],[[1,3,0,1],[2,2,3,2],[2,1,2,2],[0,1,2,0]],[[2,2,0,1],[2,2,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,0,1],[2,2,3,2],[3,1,2,2],[0,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,1,2,2],[0,1,1,1]],[[1,3,0,1],[2,2,3,2],[2,1,2,2],[0,1,1,1]],[[2,2,0,1],[2,2,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,1,2,2],[0,0,2,1]],[[1,3,0,1],[2,2,3,2],[2,1,2,2],[0,0,2,1]],[[2,2,0,1],[2,2,3,2],[2,1,2,2],[0,0,2,1]],[[1,2,0,1],[2,2,3,2],[2,1,2,1],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[2,1,2,1],[2,2,1,0]],[[1,1,2,0],[1,3,2,2],[3,2,3,0],[1,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,2,3,0],[2,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,2,3,0],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[3,1,2,1],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,1,2,1],[1,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,1,2,1],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,0,1],[2,2,3,2],[2,1,2,1],[1,3,0,1]],[[1,2,0,1],[2,2,3,2],[2,1,2,1],[2,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,1,2,1],[1,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,1,2,1],[1,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,1,2,1],[1,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,1,2,1],[1,2,0,1]],[[1,2,0,1],[2,2,3,2],[2,1,2,0],[1,3,1,1]],[[1,2,0,1],[2,2,3,2],[2,1,2,0],[2,2,1,1]],[[1,2,0,1],[2,2,3,2],[3,1,2,0],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[2,1,2,0],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[2,1,2,0],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[2,1,2,0],[1,2,1,1]],[[1,2,0,1],[2,2,3,2],[2,1,1,2],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[2,1,1,2],[2,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,1,1,2],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,1,1,2],[1,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,1,1,2],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,0,1],[2,2,3,2],[2,1,1,2],[1,3,0,1]],[[1,2,0,1],[2,2,3,2],[2,1,1,2],[2,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,1,1,2],[1,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,1,1,2],[1,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,1,1,2],[1,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,1,1,2],[1,2,0,1]],[[1,2,0,1],[2,2,3,2],[2,1,1,2],[2,0,2,1]],[[1,2,0,1],[2,2,3,2],[3,1,1,2],[1,0,2,1]],[[1,2,0,1],[3,2,3,2],[2,1,1,2],[1,0,2,1]],[[1,3,0,1],[2,2,3,2],[2,1,1,2],[1,0,2,1]],[[2,2,0,1],[2,2,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,0,1],[2,2,3,2],[3,1,1,2],[0,1,2,1]],[[1,2,0,1],[3,2,3,2],[2,1,1,2],[0,1,2,1]],[[1,3,0,1],[2,2,3,2],[2,1,1,2],[0,1,2,1]],[[2,2,0,1],[2,2,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,0,1],[2,2,3,2],[2,1,1,1],[1,2,3,0]],[[1,2,0,1],[2,2,3,2],[2,1,1,1],[1,3,2,0]],[[1,2,0,1],[2,2,3,2],[2,1,1,1],[2,2,2,0]],[[1,2,0,1],[2,2,3,2],[3,1,1,1],[1,2,2,0]],[[1,2,0,1],[3,2,3,2],[2,1,1,1],[1,2,2,0]],[[1,3,0,1],[2,2,3,2],[2,1,1,1],[1,2,2,0]],[[2,2,0,1],[2,2,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,0,1],[2,2,3,2],[2,1,1,0],[1,2,2,2]],[[1,2,0,1],[2,2,3,2],[2,1,1,0],[1,2,3,1]],[[1,2,0,1],[2,2,3,2],[2,1,1,0],[1,3,2,1]],[[1,2,0,1],[2,2,3,2],[2,1,1,0],[2,2,2,1]],[[1,2,0,1],[2,2,3,2],[3,1,1,0],[1,2,2,1]],[[1,2,0,1],[3,2,3,2],[2,1,1,0],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[2,1,1,0],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[3,3,0,0],[1,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,3,0,0],[2,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,3,0,0],[1,3,2,1]],[[1,1,2,0],[1,4,2,2],[2,3,0,1],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[3,3,0,1],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,4,0,1],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,3,0,1],[0,3,2,1]],[[1,1,2,0],[1,3,2,2],[2,3,0,1],[0,2,3,1]],[[1,1,2,0],[1,3,2,2],[2,3,0,1],[0,2,2,2]],[[1,1,2,0],[1,4,2,2],[2,3,0,1],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[3,3,0,1],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,4,0,1],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,3,0,1],[2,1,2,1]],[[1,1,2,0],[1,3,2,2],[3,3,0,1],[1,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,3,0,1],[2,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,3,0,1],[1,3,2,0]],[[1,1,2,0],[1,4,2,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[3,3,0,2],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,4,0,2],[0,1,2,1]],[[1,1,2,0],[1,4,2,2],[2,3,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[3,3,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[2,4,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[2,3,0,2],[0,3,1,1]],[[1,1,2,0],[1,4,2,2],[2,3,0,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[3,3,0,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,4,0,2],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,3,0,2],[0,3,2,0]],[[1,1,2,0],[1,3,2,2],[2,3,0,2],[0,2,3,0]],[[1,1,2,0],[1,4,2,2],[2,3,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[3,3,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[2,4,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[2,3,0,2],[2,0,2,1]],[[1,1,2,0],[1,4,2,2],[2,3,0,2],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[3,3,0,2],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,4,0,2],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,3,0,2],[2,1,1,1]],[[1,1,2,0],[1,4,2,2],[2,3,0,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[3,3,0,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,4,0,2],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,3,0,2],[2,1,2,0]],[[1,2,0,1],[2,2,3,2],[2,1,0,2],[1,2,3,0]],[[1,2,0,1],[2,2,3,2],[2,1,0,2],[1,3,2,0]],[[1,2,0,1],[2,2,3,2],[2,1,0,2],[2,2,2,0]],[[1,2,0,1],[2,2,3,2],[3,1,0,2],[1,2,2,0]],[[1,2,0,1],[3,2,3,2],[2,1,0,2],[1,2,2,0]],[[1,3,0,1],[2,2,3,2],[2,1,0,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,2,0],[1,4,2,2],[2,3,1,0],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[3,3,1,0],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,4,1,0],[0,2,2,1]],[[1,1,2,0],[1,3,2,2],[2,3,1,0],[0,3,2,1]],[[1,1,2,0],[1,3,2,2],[2,3,1,0],[0,2,3,1]],[[1,1,2,0],[1,3,2,2],[2,3,1,0],[0,2,2,2]],[[1,1,2,0],[1,4,2,2],[2,3,1,0],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[3,3,1,0],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,4,1,0],[1,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,3,1,0],[2,1,2,1]],[[1,1,2,0],[1,4,2,2],[2,3,1,1],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[3,3,1,1],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,4,1,1],[0,2,2,0]],[[1,1,2,0],[1,3,2,2],[2,3,1,1],[0,3,2,0]],[[1,1,2,0],[1,3,2,2],[2,3,1,1],[0,2,3,0]],[[1,1,2,0],[1,4,2,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[3,3,1,1],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,4,1,1],[1,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,3,1,1],[2,1,2,0]],[[1,2,0,1],[2,2,3,2],[2,1,0,2],[1,3,1,1]],[[1,2,0,1],[2,2,3,2],[2,1,0,2],[2,2,1,1]],[[1,2,0,1],[2,2,3,2],[3,1,0,2],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[2,1,0,2],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[2,1,0,2],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,0,1],[2,2,3,2],[2,1,0,2],[2,1,2,1]],[[1,1,2,0],[1,4,2,2],[2,3,1,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[3,3,1,2],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,4,1,2],[0,1,1,1]],[[1,1,2,0],[1,4,2,2],[2,3,1,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[3,3,1,2],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,4,1,2],[0,1,2,0]],[[1,1,2,0],[1,4,2,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[3,3,1,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,4,1,2],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,3,1,2],[0,3,0,1]],[[1,1,2,0],[1,4,2,2],[2,3,1,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[3,3,1,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,4,1,2],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,3,1,2],[0,3,1,0]],[[1,2,0,1],[2,2,3,2],[3,1,0,2],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[2,1,0,2],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[2,1,0,2],[1,1,2,1]],[[2,2,0,1],[2,2,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,0,1],[2,2,3,2],[3,1,0,2],[0,2,2,1]],[[1,2,0,1],[3,2,3,2],[2,1,0,2],[0,2,2,1]],[[1,3,0,1],[2,2,3,2],[2,1,0,2],[0,2,2,1]],[[2,2,0,1],[2,2,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,0],[1,4,2,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[3,3,1,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[2,4,1,2],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[2,3,1,2],[2,0,1,1]],[[1,1,2,0],[1,4,2,2],[2,3,1,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[3,3,1,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[2,4,1,2],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[2,3,1,2],[2,0,2,0]],[[1,1,2,0],[1,4,2,2],[2,3,1,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[3,3,1,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[2,4,1,2],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[2,3,1,2],[2,1,0,1]],[[1,1,2,0],[1,4,2,2],[2,3,1,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[3,3,1,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[2,4,1,2],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[2,3,1,2],[2,1,1,0]],[[1,2,0,1],[2,2,3,2],[2,1,0,1],[1,2,2,2]],[[1,2,0,1],[2,2,3,2],[2,1,0,1],[1,2,3,1]],[[1,2,0,1],[2,2,3,2],[2,1,0,1],[1,3,2,1]],[[1,2,0,1],[2,2,3,2],[2,1,0,1],[2,2,2,1]],[[1,1,2,0],[1,4,2,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,0],[1,3,2,2],[3,3,1,2],[1,2,0,0]],[[1,1,2,0],[1,3,2,2],[2,4,1,2],[1,2,0,0]],[[1,1,2,0],[1,3,2,2],[2,3,1,2],[2,2,0,0]],[[1,2,0,1],[2,2,3,2],[3,1,0,1],[1,2,2,1]],[[1,2,0,1],[3,2,3,2],[2,1,0,1],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[2,1,0,1],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,2,0],[1,4,2,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[3,3,2,0],[0,1,2,1]],[[1,1,2,0],[1,3,2,2],[2,4,2,0],[0,1,2,1]],[[1,1,2,0],[1,4,2,2],[2,3,2,0],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[3,3,2,0],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[2,4,2,0],[0,2,1,1]],[[1,1,2,0],[1,3,2,2],[2,3,2,0],[0,3,1,1]],[[1,1,2,0],[1,4,2,2],[2,3,2,0],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[3,3,2,0],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[2,4,2,0],[1,0,2,1]],[[1,1,2,0],[1,3,2,2],[2,3,2,0],[2,0,2,1]],[[1,1,2,0],[1,4,2,2],[2,3,2,0],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[3,3,2,0],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,4,2,0],[1,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,3,2,0],[2,1,1,1]],[[1,1,2,0],[1,4,2,2],[2,3,2,0],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[3,3,2,0],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,4,2,0],[1,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,3,2,0],[2,2,0,1]],[[1,1,2,0],[1,4,2,2],[2,3,2,1],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[3,3,2,1],[0,1,1,1]],[[1,1,2,0],[1,3,2,2],[2,4,2,1],[0,1,1,1]],[[1,1,2,0],[1,4,2,2],[2,3,2,1],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[3,3,2,1],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,4,2,1],[0,1,2,0]],[[1,1,2,0],[1,4,2,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[3,3,2,1],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,4,2,1],[0,2,0,1]],[[1,1,2,0],[1,3,2,2],[2,3,2,1],[0,3,0,1]],[[1,1,2,0],[1,4,2,2],[2,3,2,1],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[3,3,2,1],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,4,2,1],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,3,2,1],[0,3,1,0]],[[1,1,2,0],[1,4,2,2],[2,3,2,1],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[3,3,2,1],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[2,4,2,1],[1,0,1,1]],[[1,1,2,0],[1,3,2,2],[2,3,2,1],[2,0,1,1]],[[1,1,2,0],[1,4,2,2],[2,3,2,1],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[3,3,2,1],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[2,4,2,1],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[2,3,2,1],[2,0,2,0]],[[1,1,2,0],[1,4,2,2],[2,3,2,1],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[3,3,2,1],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[2,4,2,1],[1,1,0,1]],[[1,1,2,0],[1,3,2,2],[2,3,2,1],[2,1,0,1]],[[1,1,2,0],[1,4,2,2],[2,3,2,1],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[3,3,2,1],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[2,4,2,1],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[2,3,2,1],[2,1,1,0]],[[1,1,2,0],[1,4,2,2],[2,3,2,1],[1,2,0,0]],[[1,1,2,0],[1,3,2,2],[3,3,2,1],[1,2,0,0]],[[1,1,2,0],[1,3,2,2],[2,4,2,1],[1,2,0,0]],[[1,1,2,0],[1,3,2,2],[2,3,2,1],[2,2,0,0]],[[1,2,0,1],[2,2,3,2],[2,0,3,1],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[2,0,3,1],[2,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,0,3,1],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,0,3,1],[1,2,1,0]],[[1,3,0,1],[2,2,3,2],[2,0,3,1],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,0,1],[2,2,3,2],[2,0,3,1],[1,3,0,1]],[[1,2,0,1],[2,2,3,2],[2,0,3,1],[2,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,0,3,1],[1,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,0,3,1],[1,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,0,3,1],[1,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,0,1],[2,2,3,2],[2,0,3,1],[2,1,2,0]],[[1,2,0,1],[2,2,3,2],[3,0,3,1],[1,1,2,0]],[[1,2,0,1],[3,2,3,2],[2,0,3,1],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[2,0,3,1],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,0,1],[2,2,3,2],[2,0,3,1],[2,1,1,1]],[[1,2,0,1],[2,2,3,2],[3,0,3,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,0,3,1],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[2,0,3,1],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,0,1],[2,2,3,2],[3,0,3,1],[0,2,2,0]],[[1,2,0,1],[3,2,3,2],[2,0,3,1],[0,2,2,0]],[[1,3,0,1],[2,2,3,2],[2,0,3,1],[0,2,2,0]],[[2,2,0,1],[2,2,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,0,1],[2,2,3,2],[3,0,3,1],[0,2,1,1]],[[1,2,0,1],[3,2,3,2],[2,0,3,1],[0,2,1,1]],[[1,3,0,1],[2,2,3,2],[2,0,3,1],[0,2,1,1]],[[2,2,0,1],[2,2,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,0,1],[2,2,3,2],[2,0,3,0],[1,3,1,1]],[[1,2,0,1],[2,2,3,2],[2,0,3,0],[2,2,1,1]],[[1,2,0,1],[2,2,3,2],[3,0,3,0],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[2,0,3,0],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[2,0,3,0],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,0,1],[2,2,3,2],[2,0,3,0],[2,1,2,1]],[[1,2,0,1],[2,2,3,2],[3,0,3,0],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[2,0,3,0],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[2,0,3,0],[1,1,2,1]],[[2,2,0,1],[2,2,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,0,1],[2,2,3,2],[3,0,3,0],[0,2,2,1]],[[1,2,0,1],[3,2,3,2],[2,0,3,0],[0,2,2,1]],[[1,3,0,1],[2,2,3,2],[2,0,3,0],[0,2,2,1]],[[2,2,0,1],[2,2,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,2,0],[1,4,2,2],[2,3,3,0],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[3,3,3,0],[0,1,2,0]],[[1,1,2,0],[1,3,2,2],[2,4,3,0],[0,1,2,0]],[[1,1,2,0],[1,4,2,2],[2,3,3,0],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[3,3,3,0],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,4,3,0],[0,2,1,0]],[[1,1,2,0],[1,3,2,2],[2,3,3,0],[0,3,1,0]],[[1,1,2,0],[1,4,2,2],[2,3,3,0],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[3,3,3,0],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[2,4,3,0],[1,0,2,0]],[[1,1,2,0],[1,3,2,2],[2,3,3,0],[2,0,2,0]],[[1,1,2,0],[1,4,2,2],[2,3,3,0],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[3,3,3,0],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[2,4,3,0],[1,1,1,0]],[[1,1,2,0],[1,3,2,2],[2,3,3,0],[2,1,1,0]],[[1,2,0,1],[2,2,3,2],[2,0,2,2],[1,3,1,0]],[[1,2,0,1],[2,2,3,2],[2,0,2,2],[2,2,1,0]],[[1,2,0,1],[2,2,3,2],[3,0,2,2],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,2,0],[1,4,2,2],[2,3,3,0],[1,2,0,0]],[[1,1,2,0],[1,3,2,2],[3,3,3,0],[1,2,0,0]],[[1,1,2,0],[1,3,2,2],[2,4,3,0],[1,2,0,0]],[[1,1,2,0],[1,3,2,2],[2,3,3,0],[2,2,0,0]],[[1,3,0,1],[2,2,3,2],[2,0,2,2],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,0,1],[2,2,3,2],[2,0,2,2],[1,3,0,1]],[[1,2,0,1],[2,2,3,2],[2,0,2,2],[2,2,0,1]],[[1,2,0,1],[2,2,3,2],[3,0,2,2],[1,2,0,1]],[[1,2,0,1],[3,2,3,2],[2,0,2,2],[1,2,0,1]],[[1,3,0,1],[2,2,3,2],[2,0,2,2],[1,2,0,1]],[[2,2,0,1],[2,2,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,0,1],[2,2,3,2],[2,0,2,2],[2,1,2,0]],[[1,2,0,1],[2,2,3,2],[3,0,2,2],[1,1,2,0]],[[1,2,0,1],[3,2,3,2],[2,0,2,2],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[2,0,2,2],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,0,1],[2,2,3,2],[2,0,2,2],[2,1,1,1]],[[1,2,0,1],[2,2,3,2],[3,0,2,2],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[2,0,2,2],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[2,0,2,2],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,2,0],[1,4,2,2],[2,3,3,1],[0,2,0,0]],[[1,1,2,0],[1,3,2,2],[3,3,3,1],[0,2,0,0]],[[1,1,2,0],[1,3,2,2],[2,4,3,1],[0,2,0,0]],[[1,2,0,1],[2,2,3,2],[3,0,2,2],[0,2,2,0]],[[1,2,0,1],[3,2,3,2],[2,0,2,2],[0,2,2,0]],[[1,3,0,1],[2,2,3,2],[2,0,2,2],[0,2,2,0]],[[2,2,0,1],[2,2,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,0,1],[2,2,3,2],[3,0,2,2],[0,2,1,1]],[[1,2,0,1],[3,2,3,2],[2,0,2,2],[0,2,1,1]],[[1,3,0,1],[2,2,3,2],[2,0,2,2],[0,2,1,1]],[[2,2,0,1],[2,2,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,0,1],[2,2,3,2],[2,0,2,1],[1,2,3,0]],[[1,2,0,1],[2,2,3,2],[2,0,2,1],[1,3,2,0]],[[1,2,0,1],[2,2,3,2],[2,0,2,1],[2,2,2,0]],[[1,2,0,1],[2,2,3,2],[3,0,2,1],[1,2,2,0]],[[1,2,0,1],[3,2,3,2],[2,0,2,1],[1,2,2,0]],[[1,3,0,1],[2,2,3,2],[2,0,2,1],[1,2,2,0]],[[2,2,0,1],[2,2,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,2,0],[1,4,2,2],[2,3,3,1],[1,1,0,0]],[[1,1,2,0],[1,3,2,2],[3,3,3,1],[1,1,0,0]],[[1,1,2,0],[1,3,2,2],[2,4,3,1],[1,1,0,0]],[[1,1,2,0],[1,3,2,2],[2,3,3,1],[2,1,0,0]],[[1,2,0,1],[2,2,3,2],[2,0,2,0],[1,2,2,2]],[[1,2,0,1],[2,2,3,2],[2,0,2,0],[1,2,3,1]],[[1,2,0,1],[2,2,3,2],[2,0,2,0],[1,3,2,1]],[[1,2,0,1],[2,2,3,2],[2,0,2,0],[2,2,2,1]],[[1,2,0,1],[2,2,3,2],[3,0,2,0],[1,2,2,1]],[[1,2,0,1],[3,2,3,2],[2,0,2,0],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[2,0,2,0],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,0,1],[2,2,3,2],[2,0,1,2],[1,2,3,0]],[[1,2,0,1],[2,2,3,2],[2,0,1,2],[1,3,2,0]],[[1,2,0,1],[2,2,3,2],[2,0,1,2],[2,2,2,0]],[[1,2,0,1],[2,2,3,2],[3,0,1,2],[1,2,2,0]],[[1,2,0,1],[3,2,3,2],[2,0,1,2],[1,2,2,0]],[[1,3,0,1],[2,2,3,2],[2,0,1,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,0,1],[2,2,3,2],[2,0,1,2],[1,3,1,1]],[[1,2,0,1],[2,2,3,2],[2,0,1,2],[2,2,1,1]],[[1,2,0,1],[2,2,3,2],[3,0,1,2],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[2,0,1,2],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[2,0,1,2],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,0,1],[2,2,3,2],[2,0,1,2],[2,1,2,1]],[[1,2,0,1],[2,2,3,2],[3,0,1,2],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[2,0,1,2],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[2,0,1,2],[1,1,2,1]],[[2,2,0,1],[2,2,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,0,1],[2,2,3,2],[3,0,1,2],[0,2,2,1]],[[1,2,0,1],[3,2,3,2],[2,0,1,2],[0,2,2,1]],[[1,3,0,1],[2,2,3,2],[2,0,1,2],[0,2,2,1]],[[2,2,0,1],[2,2,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,0,1],[2,2,3,2],[2,0,1,1],[1,2,2,2]],[[1,2,0,1],[2,2,3,2],[2,0,1,1],[1,2,3,1]],[[1,2,0,1],[2,2,3,2],[2,0,1,1],[1,3,2,1]],[[1,2,0,1],[2,2,3,2],[2,0,1,1],[2,2,2,1]],[[1,2,0,1],[2,2,3,2],[3,0,1,1],[1,2,2,1]],[[1,2,0,1],[3,2,3,2],[2,0,1,1],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[2,0,1,1],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,0,1],[3,2,3,2],[1,3,3,2],[0,0,0,1]],[[1,3,0,1],[2,2,3,2],[1,3,3,2],[0,0,0,1]],[[2,2,0,1],[2,2,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,0,1],[3,2,3,2],[1,3,3,1],[1,1,0,0]],[[1,3,0,1],[2,2,3,2],[1,3,3,1],[1,1,0,0]],[[2,2,0,1],[2,2,3,2],[1,3,3,1],[1,1,0,0]],[[1,2,0,1],[3,2,3,2],[1,3,3,1],[0,2,0,0]],[[1,3,0,1],[2,2,3,2],[1,3,3,1],[0,2,0,0]],[[2,2,0,1],[2,2,3,2],[1,3,3,1],[0,2,0,0]],[[1,2,0,1],[3,2,3,2],[1,3,3,1],[0,0,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,3,1],[0,0,2,0]],[[2,2,0,1],[2,2,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,0,1],[3,2,3,2],[1,3,3,1],[0,0,1,1]],[[1,3,0,1],[2,2,3,2],[1,3,3,1],[0,0,1,1]],[[2,2,0,1],[2,2,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,0,1],[3,2,3,2],[1,3,3,0],[1,2,0,0]],[[1,3,0,1],[2,2,3,2],[1,3,3,0],[1,2,0,0]],[[2,2,0,1],[2,2,3,2],[1,3,3,0],[1,2,0,0]],[[1,2,0,1],[3,2,3,2],[1,3,3,0],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[1,3,3,0],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[1,3,3,0],[1,0,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,3,0],[1,0,2,0]],[[2,2,0,1],[2,2,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,0,1],[3,2,3,2],[1,3,3,0],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[1,3,3,0],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,2,0],[1,3,3,0],[0,1,4,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,0],[0,1,3,2],[2,2,2,1]],[[1,1,2,0],[1,3,3,0],[0,1,3,2],[1,3,2,1]],[[1,1,2,0],[1,3,3,0],[0,1,3,2],[1,2,3,1]],[[1,1,2,0],[1,3,3,0],[0,1,3,2],[1,2,2,2]],[[1,1,2,0],[1,3,3,0],[0,2,4,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,0],[0,2,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,3,0],[0,2,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,3,0],[0,2,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,3,0],[0,2,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,3,0],[0,2,4,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,0],[0,2,3,2],[1,1,3,1]],[[1,1,2,0],[1,3,3,0],[0,2,3,2],[1,1,2,2]],[[1,1,2,0],[1,3,3,0],[0,2,4,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,0],[0,2,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,3,0],[0,2,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,3,0],[0,2,3,2],[1,2,3,0]],[[1,1,2,0],[1,4,3,0],[0,3,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,0],[0,4,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,0],[0,3,2,1],[2,2,2,1]],[[1,1,2,0],[1,3,3,0],[0,3,2,1],[1,3,2,1]],[[1,1,2,0],[1,3,3,0],[0,3,2,1],[1,2,3,1]],[[1,1,2,0],[1,3,3,0],[0,3,2,1],[1,2,2,2]],[[1,1,2,0],[1,4,3,0],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,0],[0,4,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,0],[0,3,2,2],[2,2,2,0]],[[1,1,2,0],[1,3,3,0],[0,3,2,2],[1,3,2,0]],[[1,1,2,0],[1,3,3,0],[0,3,2,2],[1,2,3,0]],[[1,1,2,0],[1,4,3,0],[0,3,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,0],[0,4,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,0],[0,3,3,0],[2,2,2,1]],[[1,1,2,0],[1,3,3,0],[0,3,3,0],[1,3,2,1]],[[1,1,2,0],[1,3,3,0],[0,3,3,0],[1,2,3,1]],[[1,1,2,0],[1,4,3,0],[0,3,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,0],[0,4,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,0],[0,3,4,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,0],[0,3,3,1],[1,1,3,1]],[[1,1,2,0],[1,3,3,0],[0,3,3,1],[1,1,2,2]],[[1,1,2,0],[1,4,3,0],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,0],[0,4,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,0],[0,3,4,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,0],[0,3,3,1],[2,2,1,1]],[[1,1,2,0],[1,3,3,0],[0,3,3,1],[1,3,1,1]],[[1,1,2,0],[1,3,3,0],[0,3,4,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,0],[0,3,3,2],[0,1,3,1]],[[1,1,2,0],[1,3,3,0],[0,3,3,2],[0,1,2,2]],[[1,1,2,0],[1,4,3,0],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,0],[0,4,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,0],[0,3,4,2],[1,1,1,1]],[[1,1,2,0],[1,4,3,0],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,0],[0,4,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,0],[0,3,4,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,0],[0,3,3,2],[1,1,3,0]],[[1,1,2,0],[1,4,3,0],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,0],[0,4,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,0],[0,3,4,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,0],[0,3,3,2],[2,2,0,1]],[[1,1,2,0],[1,3,3,0],[0,3,3,2],[1,3,0,1]],[[1,1,2,0],[1,4,3,0],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,0],[0,4,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,0],[0,3,4,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,0],[0,3,3,2],[2,2,1,0]],[[1,1,2,0],[1,3,3,0],[0,3,3,2],[1,3,1,0]],[[1,2,0,1],[3,2,3,2],[1,3,3,0],[0,1,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,3,0],[0,1,2,0]],[[2,2,0,1],[2,2,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,0,1],[3,2,3,2],[1,3,3,0],[0,0,2,1]],[[1,3,0,1],[2,2,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,2,0],[1,3,3,0],[1,0,4,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,0],[1,0,3,2],[2,2,2,1]],[[1,1,2,0],[1,3,3,0],[1,0,3,2],[1,3,2,1]],[[1,1,2,0],[1,3,3,0],[1,0,3,2],[1,2,3,1]],[[1,1,2,0],[1,3,3,0],[1,0,3,2],[1,2,2,2]],[[1,1,2,0],[1,3,3,0],[1,1,4,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,0],[1,1,3,2],[0,3,2,1]],[[1,1,2,0],[1,3,3,0],[1,1,3,2],[0,2,3,1]],[[1,1,2,0],[1,3,3,0],[1,1,3,2],[0,2,2,2]],[[1,1,2,0],[1,3,3,0],[1,2,4,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,0],[1,2,3,1],[0,3,2,1]],[[1,1,2,0],[1,3,3,0],[1,2,3,1],[0,2,3,1]],[[1,1,2,0],[1,3,3,0],[1,2,3,1],[0,2,2,2]],[[1,1,2,0],[1,3,3,0],[1,2,4,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,0],[1,2,3,2],[0,1,3,1]],[[1,1,2,0],[1,3,3,0],[1,2,3,2],[0,1,2,2]],[[1,1,2,0],[1,3,3,0],[1,2,4,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,0],[1,2,3,2],[0,3,2,0]],[[1,1,2,0],[1,3,3,0],[1,2,3,2],[0,2,3,0]],[[1,1,2,0],[1,3,3,0],[1,2,4,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,0],[1,2,3,2],[1,0,3,1]],[[1,1,2,0],[1,3,3,0],[1,2,3,2],[1,0,2,2]],[[2,2,0,1],[2,2,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,2,0],[1,4,3,0],[1,3,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,0],[1,4,2,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,0],[1,3,2,1],[0,3,2,1]],[[1,1,2,0],[1,3,3,0],[1,3,2,1],[0,2,3,1]],[[1,1,2,0],[1,3,3,0],[1,3,2,1],[0,2,2,2]],[[1,1,2,0],[1,4,3,0],[1,3,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,0],[1,4,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,0],[1,3,2,2],[0,3,2,0]],[[1,1,2,0],[1,3,3,0],[1,3,2,2],[0,2,3,0]],[[1,1,2,0],[1,4,3,0],[1,3,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,0],[1,4,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,0],[1,3,3,0],[0,3,2,1]],[[1,1,2,0],[1,3,3,0],[1,3,3,0],[0,2,3,1]],[[1,1,2,0],[1,4,3,0],[1,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,3,0],[1,4,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,3,0],[1,3,4,1],[0,1,2,1]],[[1,1,2,0],[1,3,3,0],[1,3,3,1],[0,1,3,1]],[[1,1,2,0],[1,3,3,0],[1,3,3,1],[0,1,2,2]],[[1,1,2,0],[1,4,3,0],[1,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,0],[1,4,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,0],[1,3,4,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,0],[1,3,3,1],[0,3,1,1]],[[1,1,2,0],[1,4,3,0],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,3,0],[1,4,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,3,0],[1,3,4,1],[1,0,2,1]],[[1,1,2,0],[1,3,3,0],[1,3,3,1],[1,0,3,1]],[[1,1,2,0],[1,3,3,0],[1,3,3,1],[1,0,2,2]],[[1,1,2,0],[1,4,3,0],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,3,0],[1,4,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,3,0],[1,3,4,1],[1,1,1,1]],[[1,1,2,0],[1,4,3,0],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,0],[1,4,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,0],[1,3,4,2],[0,1,1,1]],[[1,1,2,0],[1,4,3,0],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,0],[1,4,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,0],[1,3,4,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,0],[1,3,3,2],[0,1,3,0]],[[1,1,2,0],[1,4,3,0],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,0],[1,4,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,0],[1,3,4,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,0],[1,3,3,2],[0,3,0,1]],[[1,1,2,0],[1,4,3,0],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,0],[1,4,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,0],[1,3,4,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,0],[1,3,3,2],[0,3,1,0]],[[1,1,2,0],[1,4,3,0],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,0],[1,4,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,0],[1,3,4,2],[1,0,1,1]],[[1,1,2,0],[1,4,3,0],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,0],[1,4,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,0],[1,3,4,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,0],[1,3,3,2],[1,0,3,0]],[[1,1,2,0],[1,4,3,0],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,0],[1,4,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,0],[1,3,4,2],[1,1,0,1]],[[1,1,2,0],[1,4,3,0],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,0],[1,4,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,0],[1,3,4,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,0],[2,0,4,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,0],[2,0,3,2],[0,3,2,1]],[[1,1,2,0],[1,3,3,0],[2,0,3,2],[0,2,3,1]],[[1,1,2,0],[1,3,3,0],[2,0,3,2],[0,2,2,2]],[[1,1,2,0],[1,3,3,0],[2,0,4,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,0],[2,0,3,2],[1,1,3,1]],[[1,1,2,0],[1,3,3,0],[2,0,3,2],[1,1,2,2]],[[1,1,2,0],[1,3,3,0],[2,1,4,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,0],[2,1,3,2],[0,1,3,1]],[[1,1,2,0],[1,3,3,0],[2,1,3,2],[0,1,2,2]],[[1,1,2,0],[1,3,3,0],[2,1,4,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,0],[2,1,3,2],[1,0,3,1]],[[1,1,2,0],[1,3,3,0],[2,1,3,2],[1,0,2,2]],[[1,2,0,1],[3,2,3,2],[1,3,2,2],[0,0,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,2,2],[0,0,2,0]],[[2,2,0,1],[2,2,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,0,1],[3,2,3,2],[1,3,2,2],[0,0,1,1]],[[1,3,0,1],[2,2,3,2],[1,3,2,2],[0,0,1,1]],[[2,2,0,1],[2,2,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,0,1],[3,2,3,2],[1,3,2,1],[1,2,0,0]],[[1,3,0,1],[2,2,3,2],[1,3,2,1],[1,2,0,0]],[[2,2,0,1],[2,2,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,0,1],[3,2,3,2],[1,3,2,1],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[1,3,2,1],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[1,3,2,1],[1,1,0,1]],[[1,3,0,1],[2,2,3,2],[1,3,2,1],[1,1,0,1]],[[2,2,0,1],[2,2,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,0,1],[3,2,3,2],[1,3,2,1],[1,0,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,2,1],[1,0,2,0]],[[2,2,0,1],[2,2,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,0,1],[3,2,3,2],[1,3,2,1],[1,0,1,1]],[[1,3,0,1],[2,2,3,2],[1,3,2,1],[1,0,1,1]],[[2,2,0,1],[2,2,3,2],[1,3,2,1],[1,0,1,1]],[[1,2,0,1],[3,2,3,2],[1,3,2,1],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[1,3,2,1],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[1,3,2,1],[0,2,0,1]],[[1,3,0,1],[2,2,3,2],[1,3,2,1],[0,2,0,1]],[[2,2,0,1],[2,2,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,0,1],[3,2,3,2],[1,3,2,1],[0,1,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,2,1],[0,1,2,0]],[[2,2,0,1],[2,2,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,0,1],[3,2,3,2],[1,3,2,1],[0,1,1,1]],[[1,3,0,1],[2,2,3,2],[1,3,2,1],[0,1,1,1]],[[2,2,0,1],[2,2,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,0,1],[3,2,3,2],[1,3,2,0],[1,2,0,1]],[[1,3,0,1],[2,2,3,2],[1,3,2,0],[1,2,0,1]],[[2,2,0,1],[2,2,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,0,1],[3,2,3,2],[1,3,2,0],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[1,3,2,0],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[1,3,2,0],[1,0,2,1]],[[1,3,0,1],[2,2,3,2],[1,3,2,0],[1,0,2,1]],[[2,2,0,1],[2,2,3,2],[1,3,2,0],[1,0,2,1]],[[1,2,0,1],[3,2,3,2],[1,3,2,0],[0,2,1,1]],[[1,3,0,1],[2,2,3,2],[1,3,2,0],[0,2,1,1]],[[2,2,0,1],[2,2,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,0,1],[3,2,3,2],[1,3,2,0],[0,1,2,1]],[[1,3,0,1],[2,2,3,2],[1,3,2,0],[0,1,2,1]],[[2,2,0,1],[2,2,3,2],[1,3,2,0],[0,1,2,1]],[[1,2,0,1],[3,2,3,2],[1,3,1,2],[1,2,0,0]],[[1,3,0,1],[2,2,3,2],[1,3,1,2],[1,2,0,0]],[[2,2,0,1],[2,2,3,2],[1,3,1,2],[1,2,0,0]],[[1,2,0,1],[3,2,3,2],[1,3,1,2],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[1,3,1,2],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[1,3,1,2],[1,1,0,1]],[[1,3,0,1],[2,2,3,2],[1,3,1,2],[1,1,0,1]],[[2,2,0,1],[2,2,3,2],[1,3,1,2],[1,1,0,1]],[[1,2,0,1],[3,2,3,2],[1,3,1,2],[1,0,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,1,2],[1,0,2,0]],[[2,2,0,1],[2,2,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,0,1],[3,2,3,2],[1,3,1,2],[1,0,1,1]],[[1,3,0,1],[2,2,3,2],[1,3,1,2],[1,0,1,1]],[[2,2,0,1],[2,2,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,0,1],[3,2,3,2],[1,3,1,2],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[1,3,1,2],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[1,3,1,2],[0,2,0,1]],[[1,3,0,1],[2,2,3,2],[1,3,1,2],[0,2,0,1]],[[2,2,0,1],[2,2,3,2],[1,3,1,2],[0,2,0,1]],[[1,2,0,1],[3,2,3,2],[1,3,1,2],[0,1,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,1],[0,0,3,3],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,0,3,2],[1,2,3,1]],[[1,1,2,0],[1,3,3,1],[0,0,3,2],[1,2,2,2]],[[1,1,2,0],[1,3,3,1],[0,1,2,3],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,1,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,1,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,3,1],[0,1,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,3,1],[0,1,2,2],[1,2,2,2]],[[1,1,3,0],[1,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,1,2,0],[1,4,3,1],[0,1,3,1],[1,2,2,1]],[[1,1,2,0],[1,3,4,1],[0,1,3,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,1,4,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,1,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,1,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,3,1],[0,1,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,3,1],[0,1,3,1],[1,2,2,2]],[[1,1,3,0],[1,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,1,2,0],[1,4,3,1],[0,1,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,4,1],[0,1,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,1],[0,1,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,1],[0,1,3,3],[1,2,1,1]],[[1,1,2,0],[1,3,3,1],[0,1,3,2],[1,2,1,2]],[[1,1,3,0],[1,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,1,2,0],[1,4,3,1],[0,1,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,4,1],[0,1,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,1],[0,1,4,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,1],[0,1,3,3],[1,2,2,0]],[[1,1,2,0],[1,3,3,1],[0,1,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,3,1],[0,1,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,3,1],[0,1,3,2],[1,2,3,0]],[[1,1,2,0],[1,3,3,1],[0,2,2,3],[1,1,2,1]],[[1,1,2,0],[1,3,3,1],[0,2,2,2],[1,1,3,1]],[[1,1,2,0],[1,3,3,1],[0,2,2,2],[1,1,2,2]],[[1,1,3,0],[1,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,1,2,0],[1,4,3,1],[0,2,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,4,1],[0,2,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,1],[0,2,4,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,1],[0,2,3,1],[1,1,3,1]],[[1,1,2,0],[1,3,3,1],[0,2,3,1],[1,1,2,2]],[[1,1,3,0],[1,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,1,2,0],[1,4,3,1],[0,2,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,4,1],[0,2,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,1],[0,2,4,1],[1,2,1,1]],[[1,1,3,0],[1,3,3,1],[0,2,3,2],[1,0,2,1]],[[1,1,2,0],[1,4,3,1],[0,2,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,4,1],[0,2,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,1],[0,2,4,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,1],[0,2,3,3],[1,0,2,1]],[[1,1,2,0],[1,3,3,1],[0,2,3,2],[1,0,2,2]],[[1,1,3,0],[1,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,1,2,0],[1,4,3,1],[0,2,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,4,1],[0,2,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,1],[0,2,4,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,1],[0,2,3,3],[1,1,1,1]],[[1,1,2,0],[1,3,3,1],[0,2,3,2],[1,1,1,2]],[[1,1,3,0],[1,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,1,2,0],[1,4,3,1],[0,2,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,4,1],[0,2,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,1],[0,2,4,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,1],[0,2,3,3],[1,1,2,0]],[[1,1,2,0],[1,3,3,1],[0,2,3,2],[1,1,3,0]],[[1,1,3,0],[1,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,1,2,0],[1,4,3,1],[0,2,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,4,1],[0,2,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,1],[0,2,4,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,1],[0,2,3,3],[1,2,0,1]],[[1,1,2,0],[1,3,3,1],[0,2,3,2],[1,2,0,2]],[[1,1,3,0],[1,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,1,2,0],[1,4,3,1],[0,2,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,4,1],[0,2,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,1],[0,2,4,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,1],[0,2,3,3],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,0,1],[3,2,3,2],[1,3,1,2],[0,1,1,1]],[[1,3,0,1],[2,2,3,2],[1,3,1,2],[0,1,1,1]],[[2,2,0,1],[2,2,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,3,0],[1,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,4,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,4,1],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,4,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,0,3],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,0,2],[2,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,0,2],[1,3,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,0,2],[1,2,3,1]],[[1,1,2,0],[1,3,3,1],[0,3,0,2],[1,2,2,2]],[[1,1,3,0],[1,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,1,2,0],[1,4,3,1],[0,3,1,1],[1,2,2,1]],[[1,1,2,0],[1,3,4,1],[0,3,1,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,4,1,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,1,1],[2,2,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,1,1],[1,3,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,1,1],[1,2,3,1]],[[1,1,2,0],[1,3,3,1],[0,3,1,1],[1,2,2,2]],[[1,1,3,0],[1,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,1,2,0],[1,4,3,1],[0,3,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,4,1],[0,3,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,1],[0,4,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,1],[0,3,1,2],[2,2,2,0]],[[1,1,2,0],[1,3,3,1],[0,3,1,2],[1,3,2,0]],[[1,1,2,0],[1,3,3,1],[0,3,1,2],[1,2,3,0]],[[1,1,3,0],[1,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,1,2,0],[1,4,3,1],[0,3,2,1],[1,1,2,1]],[[1,1,2,0],[1,3,4,1],[0,3,2,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,1],[0,4,2,1],[1,1,2,1]],[[1,1,3,0],[1,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,1,2,0],[1,4,3,1],[0,3,2,1],[1,2,1,1]],[[1,1,2,0],[1,3,4,1],[0,3,2,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,1],[0,4,2,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,1],[0,3,2,1],[2,2,1,1]],[[1,1,2,0],[1,3,3,1],[0,3,2,1],[1,3,1,1]],[[1,1,2,0],[1,3,3,1],[0,3,2,3],[0,1,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,2,2],[0,1,3,1]],[[1,1,2,0],[1,3,3,1],[0,3,2,2],[0,1,2,2]],[[1,1,3,0],[1,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,2,0],[1,4,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,2,0],[1,3,4,1],[0,3,2,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,1],[0,4,2,2],[1,1,1,1]],[[1,1,3,0],[1,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,1,2,0],[1,4,3,1],[0,3,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,4,1],[0,3,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,1],[0,4,2,2],[1,1,2,0]],[[1,1,3,0],[1,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,2,0],[1,4,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,4,1],[0,3,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,1],[0,4,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,1],[0,3,2,2],[2,2,0,1]],[[1,1,2,0],[1,3,3,1],[0,3,2,2],[1,3,0,1]],[[1,1,3,0],[1,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,2,0],[1,4,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,4,1],[0,3,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,1],[0,4,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,1],[0,3,2,2],[2,2,1,0]],[[1,1,2,0],[1,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,2,0,1],[3,2,3,2],[1,3,1,1],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,1,1],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,3,0],[1,3,3,1],[0,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,4,3,1],[0,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,4,1],[0,3,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,4,1],[0,1,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,3,1],[0,1,3,1]],[[1,1,2,0],[1,3,3,1],[0,3,3,1],[0,1,2,2]],[[1,1,3,0],[1,3,3,1],[0,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,4,3,1],[0,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,4,1],[0,3,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,2,0,1],[3,2,3,2],[1,3,1,1],[0,2,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,1,1],[0,2,2,0]],[[2,2,0,1],[2,2,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,3,0],[1,3,3,1],[0,3,3,2],[0,0,2,1]],[[1,1,2,0],[1,4,3,1],[0,3,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,4,1],[0,3,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,4,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,3,1],[0,3,3,2],[0,0,2,2]],[[1,1,3,0],[1,3,3,1],[0,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,4,3,1],[0,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,1],[0,3,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,1],[0,3,4,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,1],[0,3,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,3,1],[0,3,3,2],[0,1,1,2]],[[1,1,3,0],[1,3,3,1],[0,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,4,3,1],[0,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,1],[0,3,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,1],[0,3,4,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,1],[0,3,3,3],[0,1,2,0]],[[1,1,2,0],[1,3,3,1],[0,3,3,2],[0,1,3,0]],[[1,1,3,0],[1,3,3,1],[0,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,4,3,1],[0,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,4,1],[0,3,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,1],[0,3,4,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,1],[0,3,3,3],[0,2,0,1]],[[1,1,2,0],[1,3,3,1],[0,3,3,2],[0,2,0,2]],[[1,1,3,0],[1,3,3,1],[0,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,4,3,1],[0,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,4,1],[0,3,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,1],[0,3,4,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[1,3,1,0],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[1,3,1,0],[1,1,2,1]],[[2,2,0,1],[2,2,3,2],[1,3,1,0],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[1,3,1,0],[0,2,2,1]],[[1,3,0,1],[2,2,3,2],[1,3,1,0],[0,2,2,1]],[[2,2,0,1],[2,2,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,3,0],[1,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,1,2,0],[1,4,3,1],[0,3,3,2],[1,2,0,0]],[[1,1,2,0],[1,3,4,1],[0,3,3,2],[1,2,0,0]],[[1,1,2,0],[1,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,2,0,1],[3,2,3,2],[1,3,0,2],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,0,2],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,0,1],[3,2,3,2],[1,3,0,2],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[1,3,0,2],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[1,3,0,2],[1,0,2,1]],[[1,3,0,1],[2,2,3,2],[1,3,0,2],[1,0,2,1]],[[2,2,0,1],[2,2,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,1],[1,0,2,3],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,0,2,2],[2,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,0,2,2],[1,3,2,1]],[[1,1,2,0],[1,3,3,1],[1,0,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,3,1],[1,0,2,2],[1,2,2,2]],[[1,1,3,0],[1,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,1,2,0],[1,4,3,1],[1,0,3,1],[1,2,2,1]],[[1,1,2,0],[1,3,4,1],[1,0,3,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,0,4,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,0,3,1],[2,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,0,3,1],[1,3,2,1]],[[1,1,2,0],[1,3,3,1],[1,0,3,1],[1,2,3,1]],[[1,1,2,0],[1,3,3,1],[1,0,3,1],[1,2,2,2]],[[1,1,2,0],[1,3,3,1],[1,0,3,3],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,0,3,2],[0,2,3,1]],[[1,1,2,0],[1,3,3,1],[1,0,3,2],[0,2,2,2]],[[1,1,3,0],[1,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,2,0],[1,4,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,4,1],[1,0,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,1],[1,0,4,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,1],[1,0,3,3],[1,2,1,1]],[[1,1,2,0],[1,3,3,1],[1,0,3,2],[1,2,1,2]],[[1,1,3,0],[1,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,1,2,0],[1,4,3,1],[1,0,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,4,1],[1,0,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,1],[1,0,4,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,1],[1,0,3,3],[1,2,2,0]],[[1,1,2,0],[1,3,3,1],[1,0,3,2],[2,2,2,0]],[[1,1,2,0],[1,3,3,1],[1,0,3,2],[1,3,2,0]],[[1,1,2,0],[1,3,3,1],[1,0,3,2],[1,2,3,0]],[[1,1,2,0],[1,3,3,1],[1,1,2,3],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,1,2,2],[0,3,2,1]],[[1,1,2,0],[1,3,3,1],[1,1,2,2],[0,2,3,1]],[[1,1,2,0],[1,3,3,1],[1,1,2,2],[0,2,2,2]],[[1,1,3,0],[1,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,1,2,0],[1,4,3,1],[1,1,3,1],[0,2,2,1]],[[1,1,2,0],[1,3,4,1],[1,1,3,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,1,4,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,1,3,1],[0,3,2,1]],[[1,1,2,0],[1,3,3,1],[1,1,3,1],[0,2,3,1]],[[1,1,2,0],[1,3,3,1],[1,1,3,1],[0,2,2,2]],[[1,1,3,0],[1,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,1,2,0],[1,4,3,1],[1,1,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,4,1],[1,1,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[1,1,4,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[1,1,3,3],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[1,1,3,2],[0,2,1,2]],[[1,1,3,0],[1,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,1,2,0],[1,4,3,1],[1,1,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,4,1],[1,1,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,1],[1,1,4,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,1],[1,1,3,3],[0,2,2,0]],[[1,1,2,0],[1,3,3,1],[1,1,3,2],[0,3,2,0]],[[1,1,2,0],[1,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,0,1],[3,2,3,2],[1,3,0,2],[0,2,2,0]],[[1,3,0,1],[2,2,3,2],[1,3,0,2],[0,2,2,0]],[[2,2,0,1],[2,2,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,0,1],[3,2,3,2],[1,3,0,2],[0,2,1,1]],[[1,3,0,1],[2,2,3,2],[1,3,0,2],[0,2,1,1]],[[2,2,0,1],[2,2,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[1,2,2,3],[0,1,2,1]],[[1,1,2,0],[1,3,3,1],[1,2,2,2],[0,1,3,1]],[[1,1,2,0],[1,3,3,1],[1,2,2,2],[0,1,2,2]],[[1,1,2,0],[1,3,3,1],[1,2,2,3],[1,0,2,1]],[[1,1,2,0],[1,3,3,1],[1,2,2,2],[1,0,3,1]],[[1,1,2,0],[1,3,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,0,1],[3,2,3,2],[1,3,0,2],[0,1,2,1]],[[1,3,0,1],[2,2,3,2],[1,3,0,2],[0,1,2,1]],[[2,2,0,1],[2,2,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,3,0],[1,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,1,2,0],[1,4,3,1],[1,2,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,4,1],[1,2,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,3,1],[1,2,4,1],[0,1,2,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,1],[0,1,3,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,1],[0,1,2,2]],[[1,1,3,0],[1,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,1,2,0],[1,4,3,1],[1,2,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,4,1],[1,2,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[1,2,4,1],[0,2,1,1]],[[1,1,3,0],[1,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,1,2,0],[1,4,3,1],[1,2,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,4,1],[1,2,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,3,1],[1,2,4,1],[1,0,2,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,1],[1,0,3,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,1],[1,0,2,2]],[[1,1,3,0],[1,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,1,2,0],[1,4,3,1],[1,2,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,4,1],[1,2,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,3,1],[1,2,4,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[1,3,0,1],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,3,0],[1,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,1,2,0],[1,4,3,1],[1,2,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,4,1],[1,2,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,1],[1,2,4,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,2],[0,0,2,2]],[[1,1,3,0],[1,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,1,2,0],[1,4,3,1],[1,2,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,1],[1,2,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,1],[1,2,4,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,2],[0,1,1,2]],[[1,1,3,0],[1,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,1,2,0],[1,4,3,1],[1,2,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,1],[1,2,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,1],[1,2,4,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,1],[1,2,3,3],[0,1,2,0]],[[1,1,2,0],[1,3,3,1],[1,2,3,2],[0,1,3,0]],[[1,1,3,0],[1,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,1,2,0],[1,4,3,1],[1,2,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,4,1],[1,2,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,1],[1,2,4,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,3],[0,2,0,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,2],[0,2,0,2]],[[1,1,3,0],[1,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,1,2,0],[1,4,3,1],[1,2,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,4,1],[1,2,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,1],[1,2,4,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,1],[1,2,3,3],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[1,3,0,1],[0,2,2,1]],[[1,3,0,1],[2,2,3,2],[1,3,0,1],[0,2,2,1]],[[2,2,0,1],[2,2,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,3,0],[1,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,1,2,0],[1,4,3,1],[1,2,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,4,1],[1,2,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,1],[1,2,4,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,3],[1,0,1,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,2],[1,0,1,2]],[[1,1,3,0],[1,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,1,2,0],[1,4,3,1],[1,2,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,4,1],[1,2,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,1],[1,2,4,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,1],[1,2,3,3],[1,0,2,0]],[[1,1,2,0],[1,3,3,1],[1,2,3,2],[1,0,3,0]],[[1,1,3,0],[1,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,1,2,0],[1,4,3,1],[1,2,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,4,1],[1,2,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,1],[1,2,4,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,3],[1,1,0,1]],[[1,1,2,0],[1,3,3,1],[1,2,3,2],[1,1,0,2]],[[1,1,3,0],[1,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,1,2,0],[1,4,3,1],[1,2,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,4,1],[1,2,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,1],[1,2,4,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[1,2,3,2],[1,0,0,1]],[[1,3,0,1],[2,2,3,2],[1,2,3,2],[1,0,0,1]],[[2,2,0,1],[2,2,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,0,1],[3,2,3,2],[1,2,3,2],[0,1,0,1]],[[1,3,0,1],[2,2,3,2],[1,2,3,2],[0,1,0,1]],[[2,2,0,1],[2,2,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,3,0],[1,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,4,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,4,1],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,4,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,3,0,3],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,3,0,2],[0,3,2,1]],[[1,1,2,0],[1,3,3,1],[1,3,0,2],[0,2,3,1]],[[1,1,2,0],[1,3,3,1],[1,3,0,2],[0,2,2,2]],[[1,1,3,0],[1,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[1,4,3,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,4,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,1],[1,4,0,2],[1,1,2,1]],[[1,1,3,0],[1,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,1,2,0],[1,4,3,1],[1,3,1,1],[0,2,2,1]],[[1,1,2,0],[1,3,4,1],[1,3,1,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,4,1,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[1,3,1,1],[0,3,2,1]],[[1,1,2,0],[1,3,3,1],[1,3,1,1],[0,2,3,1]],[[1,1,2,0],[1,3,3,1],[1,3,1,1],[0,2,2,2]],[[1,1,3,0],[1,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,1,2,0],[1,4,3,1],[1,3,1,1],[1,1,2,1]],[[1,1,2,0],[1,3,4,1],[1,3,1,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,1],[1,4,1,1],[1,1,2,1]],[[1,1,3,0],[1,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,1,2,0],[1,4,3,1],[1,3,1,2],[0,2,2,0]],[[1,1,2,0],[1,3,4,1],[1,3,1,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,1],[1,4,1,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,1],[1,3,1,2],[0,3,2,0]],[[1,1,2,0],[1,3,3,1],[1,3,1,2],[0,2,3,0]],[[1,1,3,0],[1,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,1,2,0],[1,4,3,1],[1,3,1,2],[1,1,2,0]],[[1,1,2,0],[1,3,4,1],[1,3,1,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,1,3,0],[1,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,1,2,0],[1,4,3,1],[1,3,2,1],[0,1,2,1]],[[1,1,2,0],[1,3,4,1],[1,3,2,1],[0,1,2,1]],[[1,1,2,0],[1,3,3,1],[1,4,2,1],[0,1,2,1]],[[1,1,3,0],[1,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,1,2,0],[1,4,3,1],[1,3,2,1],[0,2,1,1]],[[1,1,2,0],[1,3,4,1],[1,3,2,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[1,4,2,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[1,3,2,1],[0,3,1,1]],[[1,1,3,0],[1,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,1,2,0],[1,4,3,1],[1,3,2,1],[1,0,2,1]],[[1,1,2,0],[1,3,4,1],[1,3,2,1],[1,0,2,1]],[[1,1,2,0],[1,3,3,1],[1,4,2,1],[1,0,2,1]],[[1,1,3,0],[1,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,2,0],[1,4,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,2,0],[1,3,4,1],[1,3,2,1],[1,1,1,1]],[[1,1,2,0],[1,3,3,1],[1,4,2,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[1,2,3,1],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[1,2,3,1],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[1,2,3,1],[1,1,0,1]],[[1,3,0,1],[2,2,3,2],[1,2,3,1],[1,1,0,1]],[[2,2,0,1],[2,2,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,3,0],[1,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,4,3,1],[1,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,1],[1,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,1],[1,4,2,2],[0,1,1,1]],[[1,1,3,0],[1,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,4,3,1],[1,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,1],[1,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,1],[1,4,2,2],[0,1,2,0]],[[1,1,3,0],[1,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,4,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,4,1],[1,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,1],[1,4,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,1],[1,3,2,2],[0,3,0,1]],[[1,1,3,0],[1,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,4,3,1],[1,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,4,1],[1,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,1],[1,4,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,1],[1,3,2,2],[0,3,1,0]],[[1,2,0,1],[3,2,3,2],[1,2,3,1],[1,0,2,0]],[[1,3,0,1],[2,2,3,2],[1,2,3,1],[1,0,2,0]],[[2,2,0,1],[2,2,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,0,1],[3,2,3,2],[1,2,3,1],[1,0,1,1]],[[1,3,0,1],[2,2,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,3,0],[1,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,1,2,0],[1,4,3,1],[1,3,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,4,1],[1,3,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,1],[1,4,2,2],[1,0,1,1]],[[1,1,3,0],[1,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,1,2,0],[1,4,3,1],[1,3,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,4,1],[1,3,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,1],[1,4,2,2],[1,0,2,0]],[[1,1,3,0],[1,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,2,0],[1,4,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,4,1],[1,3,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,1],[1,4,2,2],[1,1,0,1]],[[1,1,3,0],[1,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,1,2,0],[1,4,3,1],[1,3,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,4,1],[1,3,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,1],[1,4,2,2],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,3,0],[1,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,1,2,0],[1,4,3,1],[1,3,2,2],[1,2,0,0]],[[1,1,2,0],[1,3,4,1],[1,3,2,2],[1,2,0,0]],[[1,1,2,0],[1,3,3,1],[1,4,2,2],[1,2,0,0]],[[1,2,0,1],[3,2,3,2],[1,2,3,1],[0,2,1,0]],[[1,3,0,1],[2,2,3,2],[1,2,3,1],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[1,2,3,1],[0,2,0,1]],[[1,3,0,1],[2,2,3,2],[1,2,3,1],[0,2,0,1]],[[2,2,0,1],[2,2,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,0,1],[3,2,3,2],[1,2,3,1],[0,1,2,0]],[[1,3,0,1],[2,2,3,2],[1,2,3,1],[0,1,2,0]],[[2,2,0,1],[2,2,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,0,1],[3,2,3,2],[1,2,3,1],[0,1,1,1]],[[1,3,0,1],[2,2,3,2],[1,2,3,1],[0,1,1,1]],[[2,2,0,1],[2,2,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,0,1],[3,2,3,2],[1,2,3,1],[0,0,2,1]],[[1,3,0,1],[2,2,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,3,0],[1,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,2,0],[1,4,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,2,0],[1,3,4,1],[1,3,3,1],[0,0,2,1]],[[1,1,2,0],[1,3,3,1],[1,3,4,1],[0,0,2,1]],[[2,2,0,1],[2,2,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,0,1],[3,2,3,2],[1,2,3,0],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[1,2,3,0],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[1,2,3,0],[1,0,2,1]],[[1,3,0,1],[2,2,3,2],[1,2,3,0],[1,0,2,1]],[[2,2,0,1],[2,2,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,0,1],[3,2,3,2],[1,2,3,0],[0,2,1,1]],[[1,3,0,1],[2,2,3,2],[1,2,3,0],[0,2,1,1]],[[2,2,0,1],[2,2,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,0,1],[3,2,3,2],[1,2,3,0],[0,1,2,1]],[[1,3,0,1],[2,2,3,2],[1,2,3,0],[0,1,2,1]],[[2,2,0,1],[2,2,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,3,0],[1,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,1,2,0],[1,4,3,1],[1,3,3,2],[0,0,1,1]],[[1,1,2,0],[1,3,4,1],[1,3,3,2],[0,0,1,1]],[[1,1,2,0],[1,3,3,1],[1,3,4,2],[0,0,1,1]],[[1,1,2,0],[1,3,3,1],[1,3,3,3],[0,0,1,1]],[[1,1,2,0],[1,3,3,1],[1,3,3,2],[0,0,1,2]],[[1,1,3,0],[1,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,1,2,0],[1,4,3,1],[1,3,3,2],[0,0,2,0]],[[1,1,2,0],[1,3,4,1],[1,3,3,2],[0,0,2,0]],[[1,1,2,0],[1,3,3,1],[1,3,4,2],[0,0,2,0]],[[1,1,2,0],[1,3,3,1],[1,3,3,3],[0,0,2,0]],[[1,1,3,0],[1,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,1,2,0],[1,4,3,1],[1,3,3,2],[0,2,0,0]],[[1,1,2,0],[1,3,4,1],[1,3,3,2],[0,2,0,0]],[[1,1,2,0],[1,3,3,1],[1,4,3,2],[0,2,0,0]],[[1,2,0,1],[3,2,3,2],[1,2,2,2],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[1,2,2,2],[1,1,1,0]],[[2,2,0,1],[2,2,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,0,1],[3,2,3,2],[1,2,2,2],[1,1,0,1]],[[1,3,0,1],[2,2,3,2],[1,2,2,2],[1,1,0,1]],[[2,2,0,1],[2,2,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,0,1],[3,2,3,2],[1,2,2,2],[1,0,2,0]],[[1,3,0,1],[2,2,3,2],[1,2,2,2],[1,0,2,0]],[[2,2,0,1],[2,2,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,0,1],[3,2,3,2],[1,2,2,2],[1,0,1,1]],[[1,3,0,1],[2,2,3,2],[1,2,2,2],[1,0,1,1]],[[2,2,0,1],[2,2,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,0,1],[3,2,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,3,0],[1,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,1,2,0],[1,4,3,1],[1,3,3,2],[1,1,0,0]],[[1,1,2,0],[1,3,4,1],[1,3,3,2],[1,1,0,0]],[[1,1,2,0],[1,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,3,0,1],[2,2,3,2],[1,2,2,2],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[1,2,2,2],[0,2,0,1]],[[1,3,0,1],[2,2,3,2],[1,2,2,2],[0,2,0,1]],[[2,2,0,1],[2,2,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,0,1],[3,2,3,2],[1,2,2,2],[0,1,2,0]],[[1,3,0,1],[2,2,3,2],[1,2,2,2],[0,1,2,0]],[[2,2,0,1],[2,2,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,0,1],[3,2,3,2],[1,2,2,2],[0,1,1,1]],[[1,3,0,1],[2,2,3,2],[1,2,2,2],[0,1,1,1]],[[2,2,0,1],[2,2,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,0,1],[3,2,3,2],[1,2,2,2],[0,0,2,1]],[[1,3,0,1],[2,2,3,2],[1,2,2,2],[0,0,2,1]],[[2,2,0,1],[2,2,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,0,1],[3,2,3,2],[1,2,1,2],[1,0,2,1]],[[1,3,0,1],[2,2,3,2],[1,2,1,2],[1,0,2,1]],[[2,2,0,1],[2,2,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,0,1],[3,2,3,2],[1,2,1,2],[0,1,2,1]],[[1,3,0,1],[2,2,3,2],[1,2,1,2],[0,1,2,1]],[[2,2,0,1],[2,2,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,0,1],[3,2,3,2],[1,2,0,2],[0,2,2,1]],[[1,3,0,1],[2,2,3,2],[1,2,0,2],[0,2,2,1]],[[2,2,0,1],[2,2,3,2],[1,2,0,2],[0,2,2,1]],[[1,2,0,1],[3,2,3,2],[1,1,3,1],[0,2,2,0]],[[1,3,0,1],[2,2,3,2],[1,1,3,1],[0,2,2,0]],[[2,2,0,1],[2,2,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,0,1],[3,2,3,2],[1,1,3,1],[0,2,1,1]],[[1,3,0,1],[2,2,3,2],[1,1,3,1],[0,2,1,1]],[[2,2,0,1],[2,2,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,0,1],[3,2,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,3,0],[1,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[1,4,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,4,1],[2,0,1,2],[1,2,2,1]],[[1,1,3,0],[1,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,1,2,0],[1,4,3,1],[2,0,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,4,1],[2,0,2,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,1],[2,0,2,3],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[2,0,2,2],[0,3,2,1]],[[1,1,2,0],[1,3,3,1],[2,0,2,2],[0,2,3,1]],[[1,1,2,0],[1,3,3,1],[2,0,2,2],[0,2,2,2]],[[1,1,2,0],[1,3,3,1],[2,0,2,3],[1,1,2,1]],[[1,1,2,0],[1,3,3,1],[2,0,2,2],[1,1,3,1]],[[1,1,2,0],[1,3,3,1],[2,0,2,2],[1,1,2,2]],[[1,1,3,0],[1,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[1,4,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,4,1],[2,0,2,2],[1,2,2,0]],[[1,1,3,0],[1,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,1,2,0],[1,4,3,1],[2,0,3,1],[0,2,2,1]],[[1,1,2,0],[1,3,4,1],[2,0,3,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[2,0,4,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,1],[2,0,3,1],[0,3,2,1]],[[1,1,2,0],[1,3,3,1],[2,0,3,1],[0,2,3,1]],[[1,1,2,0],[1,3,3,1],[2,0,3,1],[0,2,2,2]],[[1,1,3,0],[1,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,1,2,0],[1,4,3,1],[2,0,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,4,1],[2,0,3,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,1],[2,0,4,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,1],[2,0,3,1],[1,1,3,1]],[[1,1,2,0],[1,3,3,1],[2,0,3,1],[1,1,2,2]],[[1,1,3,0],[1,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[1,4,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,4,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,1],[2,0,4,1],[1,2,1,1]],[[1,1,3,0],[1,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,2,0],[1,4,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,4,1],[2,0,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[2,0,4,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[2,0,3,3],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[2,0,3,2],[0,2,1,2]],[[1,1,3,0],[1,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,2,0],[1,4,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,4,1],[2,0,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,1],[2,0,4,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,1],[2,0,3,3],[0,2,2,0]],[[1,1,2,0],[1,3,3,1],[2,0,3,2],[0,3,2,0]],[[1,1,2,0],[1,3,3,1],[2,0,3,2],[0,2,3,0]],[[1,1,3,0],[1,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,1,2,0],[1,4,3,1],[2,0,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,4,1],[2,0,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,1],[2,0,4,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,1],[2,0,3,3],[1,1,1,1]],[[1,1,2,0],[1,3,3,1],[2,0,3,2],[1,1,1,2]],[[1,1,3,0],[1,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,1,2,0],[1,4,3,1],[2,0,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,4,1],[2,0,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,1],[2,0,4,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,1],[2,0,3,3],[1,1,2,0]],[[1,1,2,0],[1,3,3,1],[2,0,3,2],[1,1,3,0]],[[1,1,3,0],[1,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,1,2,0],[1,4,3,1],[2,0,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,4,1],[2,0,3,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,1],[2,0,4,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,1],[2,0,3,3],[1,2,0,1]],[[1,1,2,0],[1,3,3,1],[2,0,3,2],[1,2,0,2]],[[1,1,3,0],[1,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,1,2,0],[1,4,3,1],[2,0,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,4,1],[2,0,3,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,1],[2,0,4,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,1],[2,0,3,3],[1,2,1,0]],[[1,3,0,1],[2,2,3,2],[1,1,3,0],[0,2,2,1]],[[2,2,0,1],[2,2,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,3,0],[1,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[1,4,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,4,1],[2,1,0,2],[1,2,2,1]],[[1,1,3,0],[1,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,1,2,0],[1,4,3,1],[2,1,1,1],[1,2,2,1]],[[1,1,2,0],[1,3,4,1],[2,1,1,1],[1,2,2,1]],[[1,1,3,0],[1,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,1,2,0],[1,4,3,1],[2,1,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,4,1],[2,1,1,2],[1,2,2,0]],[[1,1,3,0],[1,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,1,2,0],[1,4,3,1],[2,1,2,1],[1,2,1,1]],[[1,1,2,0],[1,3,4,1],[2,1,2,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,1],[2,1,2,3],[0,1,2,1]],[[1,1,2,0],[1,3,3,1],[2,1,2,2],[0,1,3,1]],[[1,1,2,0],[1,3,3,1],[2,1,2,2],[0,1,2,2]],[[1,1,2,0],[1,3,3,1],[2,1,2,3],[1,0,2,1]],[[1,1,2,0],[1,3,3,1],[2,1,2,2],[1,0,3,1]],[[1,1,2,0],[1,3,3,1],[2,1,2,2],[1,0,2,2]],[[1,1,3,0],[1,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,1,2,0],[1,4,3,1],[2,1,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,4,1],[2,1,2,2],[1,2,0,1]],[[1,1,3,0],[1,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,1,2,0],[1,4,3,1],[2,1,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,4,1],[2,1,2,2],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[1,1,2,2],[0,2,2,0]],[[1,3,0,1],[2,2,3,2],[1,1,2,2],[0,2,2,0]],[[2,2,0,1],[2,2,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,0,1],[3,2,3,2],[1,1,2,2],[0,2,1,1]],[[1,3,0,1],[2,2,3,2],[1,1,2,2],[0,2,1,1]],[[2,2,0,1],[2,2,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,3,0],[1,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,1,2,0],[1,4,3,1],[2,1,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,4,1],[2,1,3,1],[0,1,2,1]],[[1,1,2,0],[1,3,3,1],[2,1,4,1],[0,1,2,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,1],[0,1,3,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,1],[0,1,2,2]],[[1,1,3,0],[1,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,1,2,0],[1,4,3,1],[2,1,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,4,1],[2,1,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,1],[2,1,4,1],[0,2,1,1]],[[1,1,3,0],[1,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,1,2,0],[1,4,3,1],[2,1,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,4,1],[2,1,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,3,1],[2,1,4,1],[1,0,2,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,1],[1,0,3,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,1],[1,0,2,2]],[[1,1,3,0],[1,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,1,2,0],[1,4,3,1],[2,1,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,4,1],[2,1,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,3,1],[2,1,4,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[1,1,1,2],[0,2,2,1]],[[1,3,0,1],[2,2,3,2],[1,1,1,2],[0,2,2,1]],[[2,2,0,1],[2,2,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,0,1],[3,2,3,2],[1,1,0,2],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[1,1,0,2],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,3,0],[1,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,1,2,0],[1,4,3,1],[2,1,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,4,1],[2,1,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,1],[2,1,4,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,2],[0,0,2,2]],[[1,1,3,0],[1,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,1,2,0],[1,4,3,1],[2,1,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,1],[2,1,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,1],[2,1,4,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,2],[0,1,1,2]],[[1,1,3,0],[1,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,1,2,0],[1,4,3,1],[2,1,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,1],[2,1,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,1],[2,1,4,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,1],[2,1,3,3],[0,1,2,0]],[[1,1,2,0],[1,3,3,1],[2,1,3,2],[0,1,3,0]],[[1,1,3,0],[1,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,1,2,0],[1,4,3,1],[2,1,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,4,1],[2,1,3,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,1],[2,1,4,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,3],[0,2,0,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,2],[0,2,0,2]],[[1,1,3,0],[1,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,1,2,0],[1,4,3,1],[2,1,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,4,1],[2,1,3,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,1],[2,1,4,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,1],[2,1,3,3],[0,2,1,0]],[[1,2,0,1],[3,2,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,3,0],[1,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,1,2,0],[1,4,3,1],[2,1,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,4,1],[2,1,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,1],[2,1,4,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,3],[1,0,1,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,2],[1,0,1,2]],[[1,1,3,0],[1,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,1,2,0],[1,4,3,1],[2,1,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,4,1],[2,1,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,1],[2,1,4,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,1],[2,1,3,3],[1,0,2,0]],[[1,1,2,0],[1,3,3,1],[2,1,3,2],[1,0,3,0]],[[1,1,3,0],[1,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,1,2,0],[1,4,3,1],[2,1,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,4,1],[2,1,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,1],[2,1,4,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,3],[1,1,0,1]],[[1,1,2,0],[1,3,3,1],[2,1,3,2],[1,1,0,2]],[[1,1,3,0],[1,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,1,2,0],[1,4,3,1],[2,1,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,4,1],[2,1,3,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,1],[2,1,4,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,1],[2,1,3,3],[1,1,1,0]],[[1,3,0,1],[2,2,3,2],[1,0,3,1],[1,2,2,0]],[[2,2,0,1],[2,2,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,0,1],[3,2,3,2],[1,0,3,1],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[1,0,3,1],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[1,0,3,0],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[1,0,3,0],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,0,1],[3,2,3,2],[1,0,2,2],[1,2,2,0]],[[1,3,0,1],[2,2,3,2],[1,0,2,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,0,1],[3,2,3,2],[1,0,2,2],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[1,0,2,2],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[1,0,1,2],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[1,0,1,2],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,3,0],[1,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[1,4,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,4,1],[2,2,0,2],[0,2,2,1]],[[1,1,3,0],[1,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,1,2,0],[1,4,3,1],[2,2,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,4,1],[2,2,0,2],[1,1,2,1]],[[1,1,3,0],[1,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,1,2,0],[1,4,3,1],[2,2,1,1],[0,2,2,1]],[[1,1,2,0],[1,3,4,1],[2,2,1,1],[0,2,2,1]],[[1,1,3,0],[1,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,1,2,0],[1,4,3,1],[2,2,1,1],[1,1,2,1]],[[1,1,2,0],[1,3,4,1],[2,2,1,1],[1,1,2,1]],[[1,1,3,0],[1,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,1,2,0],[1,4,3,1],[2,2,1,2],[0,2,2,0]],[[1,1,2,0],[1,3,4,1],[2,2,1,2],[0,2,2,0]],[[1,1,3,0],[1,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,1,2,0],[1,4,3,1],[2,2,1,2],[1,1,2,0]],[[1,1,2,0],[1,3,4,1],[2,2,1,2],[1,1,2,0]],[[1,1,3,0],[1,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,1,2,0],[1,4,3,1],[2,2,2,1],[0,1,2,1]],[[1,1,2,0],[1,3,4,1],[2,2,2,1],[0,1,2,1]],[[1,1,3,0],[1,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,1,2,0],[1,4,3,1],[2,2,2,1],[0,2,1,1]],[[1,1,2,0],[1,3,4,1],[2,2,2,1],[0,2,1,1]],[[1,1,3,0],[1,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,1,2,0],[1,4,3,1],[2,2,2,1],[1,0,2,1]],[[1,1,2,0],[1,3,4,1],[2,2,2,1],[1,0,2,1]],[[1,1,3,0],[1,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,1,2,0],[1,4,3,1],[2,2,2,1],[1,1,1,1]],[[1,1,2,0],[1,3,4,1],[2,2,2,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[0,3,3,1],[1,2,0,0]],[[1,3,0,1],[2,2,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,3,0],[1,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,1,2,0],[1,4,3,1],[2,2,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,1],[2,2,2,2],[0,1,1,1]],[[1,1,3,0],[1,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,1,2,0],[1,4,3,1],[2,2,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,1],[2,2,2,2],[0,1,2,0]],[[1,1,3,0],[1,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,1,2,0],[1,4,3,1],[2,2,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,4,1],[2,2,2,2],[0,2,0,1]],[[1,1,3,0],[1,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,1,2,0],[1,4,3,1],[2,2,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,4,1],[2,2,2,2],[0,2,1,0]],[[2,2,0,1],[2,2,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,3,0],[1,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,1,2,0],[1,4,3,1],[2,2,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,4,1],[2,2,2,2],[1,0,1,1]],[[1,1,3,0],[1,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,1,2,0],[1,4,3,1],[2,2,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,4,1],[2,2,2,2],[1,0,2,0]],[[1,1,3,0],[1,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,2,0],[1,4,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,4,1],[2,2,2,2],[1,1,0,1]],[[1,1,3,0],[1,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,1,2,0],[1,4,3,1],[2,2,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,1,3,0],[1,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,1,2,0],[1,4,3,1],[2,2,2,2],[1,2,0,0]],[[1,1,2,0],[1,3,4,1],[2,2,2,2],[1,2,0,0]],[[1,2,0,1],[3,2,3,2],[0,3,3,0],[1,2,1,0]],[[1,3,0,1],[2,2,3,2],[0,3,3,0],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[0,3,3,0],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[0,3,3,0],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,3,0],[1,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,2,0],[1,4,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,2,0],[1,3,4,1],[2,2,3,2],[0,2,0,0]],[[1,2,0,1],[3,2,3,2],[0,3,2,1],[1,2,1,0]],[[1,3,0,1],[2,2,3,2],[0,3,2,1],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[0,3,2,1],[1,2,0,1]],[[1,3,0,1],[2,2,3,2],[0,3,2,1],[1,2,0,1]],[[2,2,0,1],[2,2,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,3,0],[1,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,2,0],[1,4,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,2,0],[1,3,4,1],[2,2,3,2],[1,1,0,0]],[[1,2,0,1],[3,2,3,2],[0,3,2,1],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[0,3,2,1],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,0,1],[3,2,3,2],[0,3,2,1],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[0,3,2,1],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[0,3,2,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[0,3,2,0],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[0,3,2,0],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[0,3,2,0],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[0,3,2,0],[1,1,2,1]],[[2,2,0,1],[2,2,3,2],[0,3,2,0],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[0,3,1,2],[1,2,1,0]],[[1,3,0,1],[2,2,3,2],[0,3,1,2],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[0,3,1,2],[1,2,0,1]],[[1,3,0,1],[2,2,3,2],[0,3,1,2],[1,2,0,1]],[[2,2,0,1],[2,2,3,2],[0,3,1,2],[1,2,0,1]],[[1,2,0,1],[3,2,3,2],[0,3,1,2],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[0,3,1,2],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,0,1],[3,2,3,2],[0,3,1,2],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[0,3,1,2],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[0,3,1,1],[1,2,2,0]],[[1,3,0,1],[2,2,3,2],[0,3,1,1],[1,2,2,0]],[[2,2,0,1],[2,2,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,0,1],[3,2,3,2],[0,3,1,0],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[0,3,1,0],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,0,1],[3,2,3,2],[0,3,0,2],[1,2,2,0]],[[1,3,0,1],[2,2,3,2],[0,3,0,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,0,1],[3,2,3,2],[0,3,0,2],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[0,3,0,2],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[0,3,0,2],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[0,3,0,2],[1,1,2,1]],[[2,2,0,1],[2,2,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[0,3,0,1],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[0,3,0,1],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[0,3,0,1],[1,2,2,1]],[[1,2,0,1],[3,2,3,2],[0,2,3,1],[1,2,1,0]],[[1,3,0,1],[2,2,3,2],[0,2,3,1],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[0,2,3,1],[1,2,0,1]],[[1,3,0,1],[2,2,3,2],[0,2,3,1],[1,2,0,1]],[[2,2,0,1],[2,2,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,0,1],[3,2,3,2],[0,2,3,1],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[0,2,3,1],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,0,1],[3,2,3,2],[0,2,3,1],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[0,2,3,1],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,2],[0,2,3,0],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[0,2,3,0],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[0,2,3,0],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[0,2,3,0],[1,1,2,1]],[[2,2,0,1],[2,2,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[0,2,2,2],[1,2,1,0]],[[1,3,0,1],[2,2,3,2],[0,2,2,2],[1,2,1,0]],[[2,2,0,1],[2,2,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,0,1],[3,2,3,2],[0,2,2,2],[1,2,0,1]],[[1,3,0,1],[2,2,3,2],[0,2,2,2],[1,2,0,1]],[[2,2,0,1],[2,2,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,0,1],[3,2,3,2],[0,2,2,2],[1,1,2,0]],[[1,3,0,1],[2,2,3,2],[0,2,2,2],[1,1,2,0]],[[2,2,0,1],[2,2,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,0,1],[3,2,3,2],[0,2,2,2],[1,1,1,1]],[[1,3,0,1],[2,2,3,2],[0,2,2,2],[1,1,1,1]],[[2,2,0,1],[2,2,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,3,0],[1,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,1,2,0],[1,4,3,1],[2,3,2,2],[1,0,0,1]],[[1,1,2,0],[1,3,4,1],[2,3,2,2],[1,0,0,1]],[[1,1,3,0],[1,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,1,2,0],[1,4,3,1],[2,3,2,2],[1,0,1,0]],[[1,1,2,0],[1,3,4,1],[2,3,2,2],[1,0,1,0]],[[1,2,0,1],[3,2,3,2],[0,2,1,2],[1,1,2,1]],[[1,3,0,1],[2,2,3,2],[0,2,1,2],[1,1,2,1]],[[2,2,0,1],[2,2,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,0,1],[3,2,3,2],[0,2,0,2],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[0,2,0,2],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[0,2,0,2],[1,2,2,1]],[[1,2,0,1],[3,2,3,2],[0,1,3,1],[1,2,2,0]],[[1,3,0,1],[2,2,3,2],[0,1,3,1],[1,2,2,0]],[[2,2,0,1],[2,2,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,0,1],[3,2,3,2],[0,1,3,1],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[0,1,3,1],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[0,1,3,0],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[0,1,3,0],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,0,1],[3,2,3,2],[0,1,2,2],[1,2,2,0]],[[1,3,0,1],[2,2,3,2],[0,1,2,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,0,1],[3,2,3,2],[0,1,2,2],[1,2,1,1]],[[1,3,0,1],[2,2,3,2],[0,1,2,2],[1,2,1,1]],[[2,2,0,1],[2,2,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,0,1],[3,2,3,2],[0,1,1,2],[1,2,2,1]],[[1,3,0,1],[2,2,3,2],[0,1,1,2],[1,2,2,1]],[[2,2,0,1],[2,2,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,0,1],[2,2,3,1],[3,3,3,2],[1,0,0,0]],[[1,2,0,1],[3,2,3,1],[2,3,3,2],[1,0,0,0]],[[1,3,0,1],[2,2,3,1],[2,3,3,2],[1,0,0,0]],[[2,2,0,1],[2,2,3,1],[2,3,3,2],[1,0,0,0]],[[1,2,0,1],[2,2,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,0,1],[2,2,3,1],[2,4,3,1],[1,1,0,0]],[[1,2,0,1],[2,2,3,1],[3,3,3,1],[1,1,0,0]],[[1,2,0,1],[3,2,3,1],[2,3,3,1],[1,1,0,0]],[[2,2,0,1],[2,2,3,1],[2,3,3,1],[1,1,0,0]],[[1,2,0,1],[2,2,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,0,1],[2,2,3,1],[3,3,3,1],[0,2,0,0]],[[1,2,0,1],[3,2,3,1],[2,3,3,1],[0,2,0,0]],[[2,2,0,1],[2,2,3,1],[2,3,3,1],[0,2,0,0]],[[1,2,0,1],[2,2,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,0,1],[2,2,3,1],[2,4,3,0],[1,2,0,0]],[[1,2,0,1],[2,2,3,1],[3,3,3,0],[1,2,0,0]],[[1,2,0,1],[3,2,3,1],[2,3,3,0],[1,2,0,0]],[[2,2,0,1],[2,2,3,1],[2,3,3,0],[1,2,0,0]],[[1,2,0,1],[2,2,3,1],[2,3,3,0],[2,1,1,0]],[[1,2,0,1],[2,2,3,1],[2,4,3,0],[1,1,1,0]],[[1,2,0,1],[2,2,3,1],[3,3,3,0],[1,1,1,0]],[[1,2,0,1],[3,2,3,1],[2,3,3,0],[1,1,1,0]],[[2,2,0,1],[2,2,3,1],[2,3,3,0],[1,1,1,0]],[[1,2,0,1],[2,2,3,1],[2,3,3,0],[2,0,2,0]],[[1,2,0,1],[2,2,3,1],[2,4,3,0],[1,0,2,0]],[[1,2,0,1],[2,2,3,1],[3,3,3,0],[1,0,2,0]],[[1,2,0,1],[3,2,3,1],[2,3,3,0],[1,0,2,0]],[[2,2,0,1],[2,2,3,1],[2,3,3,0],[1,0,2,0]],[[1,2,0,1],[2,2,3,1],[2,3,3,0],[0,3,1,0]],[[1,2,0,1],[2,2,3,1],[2,4,3,0],[0,2,1,0]],[[1,2,0,1],[2,2,3,1],[3,3,3,0],[0,2,1,0]],[[1,2,0,1],[3,2,3,1],[2,3,3,0],[0,2,1,0]],[[2,2,0,1],[2,2,3,1],[2,3,3,0],[0,2,1,0]],[[1,2,0,1],[2,2,3,1],[2,4,3,0],[0,1,2,0]],[[1,2,0,1],[2,2,3,1],[3,3,3,0],[0,1,2,0]],[[1,2,0,1],[3,2,3,1],[2,3,3,0],[0,1,2,0]],[[2,2,0,1],[2,2,3,1],[2,3,3,0],[0,1,2,0]],[[1,2,0,1],[2,2,3,1],[3,3,2,2],[1,0,1,0]],[[1,2,0,1],[3,2,3,1],[2,3,2,2],[1,0,1,0]],[[1,3,0,1],[2,2,3,1],[2,3,2,2],[1,0,1,0]],[[2,2,0,1],[2,2,3,1],[2,3,2,2],[1,0,1,0]],[[1,2,0,1],[2,2,3,1],[3,3,2,2],[1,0,0,1]],[[1,2,0,1],[3,2,3,1],[2,3,2,2],[1,0,0,1]],[[1,3,0,1],[2,2,3,1],[2,3,2,2],[1,0,0,1]],[[2,2,0,1],[2,2,3,1],[2,3,2,2],[1,0,0,1]],[[1,1,3,0],[1,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,1,2,0],[1,4,3,1],[2,3,3,2],[1,0,0,0]],[[1,1,2,0],[1,3,4,1],[2,3,3,2],[1,0,0,0]],[[1,2,0,1],[2,2,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,0,1],[2,2,3,1],[2,4,2,1],[1,2,0,0]],[[1,2,0,1],[2,2,3,1],[3,3,2,1],[1,2,0,0]],[[1,2,0,1],[3,2,3,1],[2,3,2,1],[1,2,0,0]],[[2,2,0,1],[2,2,3,1],[2,3,2,1],[1,2,0,0]],[[1,2,0,1],[2,2,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,0,1],[2,2,3,1],[2,4,2,1],[1,1,1,0]],[[1,2,0,1],[2,2,3,1],[3,3,2,1],[1,1,1,0]],[[1,2,0,1],[3,2,3,1],[2,3,2,1],[1,1,1,0]],[[2,2,0,1],[2,2,3,1],[2,3,2,1],[1,1,1,0]],[[1,2,0,1],[2,2,3,1],[2,3,2,1],[2,1,0,1]],[[1,2,0,1],[2,2,3,1],[2,4,2,1],[1,1,0,1]],[[1,2,0,1],[2,2,3,1],[3,3,2,1],[1,1,0,1]],[[1,2,0,1],[3,2,3,1],[2,3,2,1],[1,1,0,1]],[[2,2,0,1],[2,2,3,1],[2,3,2,1],[1,1,0,1]],[[1,2,0,1],[2,2,3,1],[2,3,2,1],[2,0,2,0]],[[1,2,0,1],[2,2,3,1],[2,4,2,1],[1,0,2,0]],[[1,2,0,1],[2,2,3,1],[3,3,2,1],[1,0,2,0]],[[1,2,0,1],[3,2,3,1],[2,3,2,1],[1,0,2,0]],[[2,2,0,1],[2,2,3,1],[2,3,2,1],[1,0,2,0]],[[1,2,0,1],[2,2,3,1],[2,3,2,1],[0,3,1,0]],[[1,2,0,1],[2,2,3,1],[2,4,2,1],[0,2,1,0]],[[1,2,0,1],[2,2,3,1],[3,3,2,1],[0,2,1,0]],[[1,2,0,1],[3,2,3,1],[2,3,2,1],[0,2,1,0]],[[2,2,0,1],[2,2,3,1],[2,3,2,1],[0,2,1,0]],[[1,2,0,1],[2,2,3,1],[2,4,2,1],[0,2,0,1]],[[1,2,0,1],[2,2,3,1],[3,3,2,1],[0,2,0,1]],[[1,2,0,1],[3,2,3,1],[2,3,2,1],[0,2,0,1]],[[2,2,0,1],[2,2,3,1],[2,3,2,1],[0,2,0,1]],[[1,2,0,1],[2,2,3,1],[2,4,2,1],[0,1,2,0]],[[1,2,0,1],[2,2,3,1],[3,3,2,1],[0,1,2,0]],[[1,2,0,1],[3,2,3,1],[2,3,2,1],[0,1,2,0]],[[2,2,0,1],[2,2,3,1],[2,3,2,1],[0,1,2,0]],[[1,2,0,1],[2,2,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,0,1],[2,2,3,1],[2,4,2,0],[1,2,0,1]],[[1,2,0,1],[2,2,3,1],[3,3,2,0],[1,2,0,1]],[[1,2,0,1],[3,2,3,1],[2,3,2,0],[1,2,0,1]],[[2,2,0,1],[2,2,3,1],[2,3,2,0],[1,2,0,1]],[[1,2,0,1],[2,2,3,1],[2,3,2,0],[2,1,1,1]],[[1,2,0,1],[2,2,3,1],[2,4,2,0],[1,1,1,1]],[[1,2,0,1],[2,2,3,1],[3,3,2,0],[1,1,1,1]],[[1,2,0,1],[3,2,3,1],[2,3,2,0],[1,1,1,1]],[[2,2,0,1],[2,2,3,1],[2,3,2,0],[1,1,1,1]],[[1,2,0,1],[2,2,3,1],[2,3,2,0],[2,0,2,1]],[[1,2,0,1],[2,2,3,1],[2,4,2,0],[1,0,2,1]],[[1,2,0,1],[2,2,3,1],[3,3,2,0],[1,0,2,1]],[[1,2,0,1],[3,2,3,1],[2,3,2,0],[1,0,2,1]],[[2,2,0,1],[2,2,3,1],[2,3,2,0],[1,0,2,1]],[[1,2,0,1],[2,2,3,1],[2,3,2,0],[0,3,1,1]],[[1,2,0,1],[2,2,3,1],[2,4,2,0],[0,2,1,1]],[[1,2,0,1],[2,2,3,1],[3,3,2,0],[0,2,1,1]],[[1,2,0,1],[3,2,3,1],[2,3,2,0],[0,2,1,1]],[[2,2,0,1],[2,2,3,1],[2,3,2,0],[0,2,1,1]],[[1,2,0,1],[2,2,3,1],[2,4,2,0],[0,1,2,1]],[[1,2,0,1],[2,2,3,1],[3,3,2,0],[0,1,2,1]],[[1,2,0,1],[3,2,3,1],[2,3,2,0],[0,1,2,1]],[[2,2,0,1],[2,2,3,1],[2,3,2,0],[0,1,2,1]],[[1,1,3,0],[1,3,3,2],[0,0,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[0,0,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[0,0,2,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,0,2,3],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,0,2,2],[1,2,3,1]],[[1,1,2,0],[1,3,3,2],[0,0,2,2],[1,2,2,2]],[[1,1,3,0],[1,3,3,2],[0,0,3,2],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[0,0,3,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[0,0,3,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,0,3,3],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,0,3,2],[0,2,2,2]],[[1,1,3,0],[1,3,3,2],[0,0,3,2],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[0,0,3,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[0,0,3,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,0,3,3],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,0,3,2],[1,1,2,2]],[[1,1,3,0],[1,3,3,2],[0,0,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[0,0,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[0,0,3,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,0,3,3],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,0,3,2],[1,2,1,2]],[[1,1,3,0],[1,3,3,2],[0,0,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,4,2],[0,0,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,3],[0,0,3,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,0,3,3],[1,2,2,0]],[[1,1,3,0],[1,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[0,1,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[0,1,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[0,1,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,1,1,3],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,1,1,2],[2,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,1,1,2],[1,3,2,1]],[[1,1,2,0],[1,3,3,2],[0,1,1,2],[1,2,3,1]],[[1,1,2,0],[1,3,3,2],[0,1,1,2],[1,2,2,2]],[[1,1,3,0],[1,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,1,2,0],[1,4,3,2],[0,1,2,2],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[0,1,2,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[0,1,2,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,1,2,3],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,1,2,2],[1,2,1,2]],[[1,1,3,0],[1,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,1,2,0],[1,4,3,2],[0,1,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,4,2],[0,1,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,3],[0,1,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,1,2,3],[1,2,2,0]],[[1,1,3,0],[1,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[0,1,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[0,1,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[0,1,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,1,4,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,1,3,0],[2,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,1,3,0],[1,3,2,1]],[[1,1,2,0],[1,3,3,2],[0,1,3,0],[1,2,3,1]],[[1,1,2,0],[1,3,3,2],[0,1,3,0],[1,2,2,2]],[[1,1,3,0],[1,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,1,2,0],[1,4,3,2],[0,1,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[0,1,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[0,1,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,1,4,1],[1,2,1,1]],[[1,1,3,0],[1,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,1,2,0],[1,4,3,2],[0,1,3,1],[1,2,2,0]],[[1,1,2,0],[1,3,4,2],[0,1,3,1],[1,2,2,0]],[[1,1,2,0],[1,3,3,3],[0,1,3,1],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,1,4,1],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,1,3,1],[2,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,1,3,1],[1,3,2,0]],[[1,1,2,0],[1,3,3,2],[0,1,3,1],[1,2,3,0]],[[1,1,3,0],[1,3,3,2],[0,1,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,4,2],[0,1,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,3],[0,1,3,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[0,1,3,3],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[0,1,3,2],[1,0,2,2]],[[1,1,3,0],[1,3,3,2],[0,1,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[0,1,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[0,1,3,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,1,3,3],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,1,3,2],[1,1,1,2]],[[1,1,3,0],[1,3,3,2],[0,1,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[0,1,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,3],[0,1,3,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,1,3,0],[1,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[0,2,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[0,2,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[0,2,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,0,3],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,0,2],[2,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,0,2],[1,3,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,0,2],[1,2,3,1]],[[1,1,2,0],[1,3,3,2],[0,2,0,2],[1,2,2,2]],[[1,1,3,0],[1,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,1,2,0],[1,4,3,2],[0,2,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[0,2,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[0,2,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,1,3],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,1,2],[1,1,3,1]],[[1,1,2,0],[1,3,3,2],[0,2,1,2],[1,1,2,2]],[[1,1,3,0],[1,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,1,2,0],[1,4,3,2],[0,2,2,2],[1,0,2,1]],[[1,1,2,0],[1,3,4,2],[0,2,2,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,3],[0,2,2,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,2,3],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,2,2],[1,0,2,2]],[[1,1,3,0],[1,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[0,2,2,2],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[0,2,2,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[0,2,2,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,2,2,3],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,2,2,2],[1,1,1,2]],[[1,1,3,0],[1,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,1,2,0],[1,4,3,2],[0,2,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[0,2,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,3],[0,2,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,2,2,3],[1,1,2,0]],[[1,1,3,0],[1,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,2,0],[1,4,3,2],[0,2,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,4,2],[0,2,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,3],[0,2,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,2,2,3],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,2,2,2],[1,2,0,2]],[[1,1,3,0],[1,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,1,2,0],[1,4,3,2],[0,2,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,4,2],[0,2,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,3],[0,2,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,2,2,3],[1,2,1,0]],[[1,1,3,0],[1,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,2,0],[1,4,3,2],[0,2,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[0,2,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[0,2,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,4,0],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,3,0],[1,1,3,1]],[[1,1,2,0],[1,3,3,2],[0,2,3,0],[1,1,2,2]],[[1,1,3,0],[1,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,1,2,0],[1,4,3,2],[0,2,3,0],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[0,2,3,0],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[0,2,3,0],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,2,4,0],[1,2,1,1]],[[1,1,3,0],[1,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,1,2,0],[1,4,3,2],[0,2,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,4,2],[0,2,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,3,3],[0,2,3,1],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,4,1],[1,0,2,1]],[[1,1,3,0],[1,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[0,2,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[0,2,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[0,2,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,2,4,1],[1,1,1,1]],[[1,1,3,0],[1,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,1,2,0],[1,4,3,2],[0,2,3,1],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[0,2,3,1],[1,1,2,0]],[[1,1,2,0],[1,3,3,3],[0,2,3,1],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,2,4,1],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,2,3,1],[1,1,3,0]],[[1,1,3,0],[1,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,1,2,0],[1,4,3,2],[0,2,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,4,2],[0,2,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,3,3],[0,2,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,2,4,1],[1,2,0,1]],[[1,1,3,0],[1,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,1,2,0],[1,4,3,2],[0,2,3,1],[1,2,1,0]],[[1,1,2,0],[1,3,4,2],[0,2,3,1],[1,2,1,0]],[[1,1,2,0],[1,3,3,3],[0,2,3,1],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,0,1],[2,2,3,1],[2,3,1,1],[2,1,2,0]],[[1,2,0,1],[2,2,3,1],[2,4,1,1],[1,1,2,0]],[[1,2,0,1],[2,2,3,1],[3,3,1,1],[1,1,2,0]],[[1,2,0,1],[3,2,3,1],[2,3,1,1],[1,1,2,0]],[[2,2,0,1],[2,2,3,1],[2,3,1,1],[1,1,2,0]],[[1,1,3,0],[1,3,3,2],[0,2,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,4,2],[0,2,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,3],[0,2,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[0,2,3,2],[0,0,2,2]],[[1,1,3,0],[1,3,3,2],[0,2,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[0,2,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[0,2,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,2,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,2,3,2],[0,1,1,2]],[[1,1,3,0],[1,3,3,2],[0,2,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[0,2,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[0,2,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,2,3,3],[0,1,2,0]],[[1,1,3,0],[1,3,3,2],[0,2,3,2],[1,1,0,1]],[[1,1,2,0],[1,4,3,2],[0,2,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,4,2],[0,2,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,3],[0,2,3,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,0,1],[2,2,3,1],[2,3,1,1],[0,3,2,0]],[[1,2,0,1],[2,2,3,1],[2,4,1,1],[0,2,2,0]],[[1,2,0,1],[2,2,3,1],[3,3,1,1],[0,2,2,0]],[[1,2,0,1],[3,2,3,1],[2,3,1,1],[0,2,2,0]],[[2,2,0,1],[2,2,3,1],[2,3,1,1],[0,2,2,0]],[[1,2,0,1],[2,2,3,1],[2,3,1,0],[2,1,2,1]],[[1,2,0,1],[2,2,3,1],[2,4,1,0],[1,1,2,1]],[[1,2,0,1],[2,2,3,1],[3,3,1,0],[1,1,2,1]],[[1,2,0,1],[3,2,3,1],[2,3,1,0],[1,1,2,1]],[[2,2,0,1],[2,2,3,1],[2,3,1,0],[1,1,2,1]],[[1,2,0,1],[2,2,3,1],[2,3,1,0],[0,2,3,1]],[[1,2,0,1],[2,2,3,1],[2,3,1,0],[0,3,2,1]],[[1,2,0,1],[2,2,3,1],[2,4,1,0],[0,2,2,1]],[[1,2,0,1],[2,2,3,1],[3,3,1,0],[0,2,2,1]],[[1,2,0,1],[3,2,3,1],[2,3,1,0],[0,2,2,1]],[[2,2,0,1],[2,2,3,1],[2,3,1,0],[0,2,2,1]],[[1,1,3,0],[1,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[0,3,0,1],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[0,3,0,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[0,3,0,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,4,0,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,0,1],[2,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,0,1],[1,3,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,0,1],[1,2,3,1]],[[1,1,2,0],[1,3,3,2],[0,3,0,1],[1,2,2,2]],[[1,1,3,0],[1,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,1,2,0],[1,4,3,2],[0,3,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[0,3,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[0,3,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,4,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,0,3],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,0,2],[1,1,3,1]],[[1,1,2,0],[1,3,3,2],[0,3,0,2],[1,1,2,2]],[[1,1,3,0],[1,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,2,0],[1,4,3,2],[0,3,0,2],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[0,3,0,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[0,3,0,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,4,0,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,0,3],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,0,2],[2,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,0,2],[1,3,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,0,2],[1,2,1,2]],[[1,1,3,0],[1,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,1,2,0],[1,4,3,2],[0,3,0,2],[1,2,2,0]],[[1,1,2,0],[1,3,4,2],[0,3,0,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,3],[0,3,0,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,4,0,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,3,0,3],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,3,0,2],[2,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,3,0,2],[1,3,2,0]],[[1,1,2,0],[1,3,3,2],[0,3,0,2],[1,2,3,0]],[[1,1,3,0],[1,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[0,3,1,0],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[0,3,1,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[0,3,1,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,4,1,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,0],[2,2,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,0],[1,3,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,0],[1,2,3,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,0],[1,2,2,2]],[[1,1,3,0],[1,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,2,0],[1,4,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,2,0],[1,3,4,2],[0,3,1,1],[1,2,2,0]],[[1,1,2,0],[1,3,3,3],[0,3,1,1],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,4,1,1],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,3,1,1],[2,2,2,0]],[[1,1,2,0],[1,3,3,2],[0,3,1,1],[1,3,2,0]],[[1,1,2,0],[1,3,3,2],[0,3,1,1],[1,2,3,0]],[[1,1,3,0],[1,3,3,2],[0,3,1,2],[0,1,2,1]],[[1,1,2,0],[1,4,3,2],[0,3,1,2],[0,1,2,1]],[[1,1,2,0],[1,3,4,2],[0,3,1,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,3],[0,3,1,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,3],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,2],[0,1,3,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,2],[0,1,2,2]],[[1,1,3,0],[1,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[0,3,1,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[0,3,1,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,4,1,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,3],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,2],[1,1,1,2]],[[1,1,3,0],[1,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,2,0],[1,4,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[0,3,1,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,3],[0,3,1,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,4,1,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,3,1,3],[1,1,2,0]],[[1,1,3,0],[1,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,2,0],[1,4,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,2,0],[1,3,4,2],[0,3,1,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,3],[0,3,1,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,4,1,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,3],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,2],[2,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,2],[1,3,0,1]],[[1,1,2,0],[1,3,3,2],[0,3,1,2],[1,2,0,2]],[[1,1,3,0],[1,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,2,0],[1,4,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,2,0],[1,3,4,2],[0,3,1,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,3],[0,3,1,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,4,1,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,3,1,3],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,3,1,2],[2,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,3,1,2],[1,3,1,0]],[[1,1,3,0],[1,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,0],[1,4,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[0,3,2,0],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,4,2,0],[1,1,2,1]],[[1,1,3,0],[1,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,1,2,0],[1,4,3,2],[0,3,2,0],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[0,3,2,0],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[0,3,2,0],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,4,2,0],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,2,0],[2,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,2,0],[1,3,1,1]],[[1,1,3,0],[1,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[0,3,2,1],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[0,3,2,1],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[0,3,2,1],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,4,2,1],[1,1,1,1]],[[1,1,3,0],[1,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,2,0],[1,4,3,2],[0,3,2,1],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[0,3,2,1],[1,1,2,0]],[[1,1,2,0],[1,3,3,3],[0,3,2,1],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,4,2,1],[1,1,2,0]],[[1,1,3,0],[1,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,2,0],[1,4,3,2],[0,3,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,4,2],[0,3,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,3,3],[0,3,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,4,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,3,2,1],[2,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,3,2,1],[1,3,0,1]],[[1,1,3,0],[1,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,1,2,0],[1,4,3,2],[0,3,2,1],[1,2,1,0]],[[1,1,2,0],[1,3,4,2],[0,3,2,1],[1,2,1,0]],[[1,1,2,0],[1,3,3,3],[0,3,2,1],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,4,2,1],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,3,2,1],[2,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,3,2,1],[1,3,1,0]],[[1,2,0,1],[2,2,3,1],[2,3,0,1],[1,3,2,0]],[[1,2,0,1],[2,2,3,1],[2,3,0,1],[2,2,2,0]],[[1,2,0,1],[2,2,3,1],[3,3,0,1],[1,2,2,0]],[[1,1,3,0],[1,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,1,2,0],[1,4,3,2],[0,3,2,2],[0,0,2,1]],[[1,1,2,0],[1,3,4,2],[0,3,2,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,3],[0,3,2,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,2,3],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,2,2],[0,0,2,2]],[[1,1,3,0],[1,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,4,3,2],[0,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[0,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[0,3,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,2,3],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,2,2],[0,1,1,2]],[[1,1,3,0],[1,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[0,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[0,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[0,3,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,3,2,3],[0,1,2,0]],[[1,1,3,0],[1,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,4,3,2],[0,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,4,2],[0,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,3],[0,3,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,3,2,3],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,3,2,2],[0,2,0,2]],[[1,1,3,0],[1,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[0,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[0,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,3],[0,3,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,0,1],[3,2,3,1],[2,3,0,1],[1,2,2,0]],[[2,2,0,1],[2,2,3,1],[2,3,0,1],[1,2,2,0]],[[1,2,0,1],[2,2,3,1],[2,3,0,0],[1,3,2,1]],[[1,2,0,1],[2,2,3,1],[2,3,0,0],[2,2,2,1]],[[1,2,0,1],[2,2,3,1],[3,3,0,0],[1,2,2,1]],[[1,2,0,1],[3,2,3,1],[2,3,0,0],[1,2,2,1]],[[2,2,0,1],[2,2,3,1],[2,3,0,0],[1,2,2,1]],[[1,2,0,1],[2,2,3,1],[2,2,3,2],[2,1,0,0]],[[1,2,0,1],[2,2,3,1],[3,2,3,2],[1,1,0,0]],[[1,2,0,1],[3,2,3,1],[2,2,3,2],[1,1,0,0]],[[1,3,0,1],[2,2,3,1],[2,2,3,2],[1,1,0,0]],[[2,2,0,1],[2,2,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,3,0],[1,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,1,2,0],[1,4,3,2],[0,3,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,4,2],[0,3,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,3],[0,3,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,4,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,3,0],[0,1,3,1]],[[1,1,2,0],[1,3,3,2],[0,3,3,0],[0,1,2,2]],[[1,1,3,0],[1,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,1,2,0],[1,4,3,2],[0,3,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[0,3,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[0,3,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,4,0],[0,2,1,1]],[[1,1,3,0],[1,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,2,0],[1,4,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[0,3,3,0],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,4,3,0],[1,1,2,0]],[[1,1,3,0],[1,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,2,0],[1,4,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,2,0],[1,3,4,2],[0,3,3,0],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,4,3,0],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,3,3,0],[2,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,3,3,0],[1,3,1,0]],[[1,2,0,1],[2,2,3,1],[3,2,3,2],[0,2,0,0]],[[1,2,0,1],[3,2,3,1],[2,2,3,2],[0,2,0,0]],[[1,3,0,1],[2,2,3,1],[2,2,3,2],[0,2,0,0]],[[2,2,0,1],[2,2,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,3,0],[1,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,1,2,0],[1,4,3,2],[0,3,3,1],[0,0,2,1]],[[1,1,2,0],[1,3,4,2],[0,3,3,1],[0,0,2,1]],[[1,1,2,0],[1,3,3,3],[0,3,3,1],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[0,3,4,1],[0,0,2,1]],[[1,1,3,0],[1,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,1,2,0],[1,4,3,2],[0,3,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[0,3,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[0,3,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[0,3,4,1],[0,1,1,1]],[[1,1,3,0],[1,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[0,3,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[0,3,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[0,3,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,3,4,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[0,3,3,1],[0,1,3,0]],[[1,1,3,0],[1,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,1,2,0],[1,4,3,2],[0,3,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,4,2],[0,3,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,3,3],[0,3,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[0,3,4,1],[0,2,0,1]],[[1,1,3,0],[1,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[0,3,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[0,3,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,3,3],[0,3,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,1,3,0],[1,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,2,0],[1,4,3,2],[0,3,3,1],[1,2,0,0]],[[1,1,2,0],[1,3,4,2],[0,3,3,1],[1,2,0,0]],[[1,1,2,0],[1,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,1,2,0],[1,3,3,2],[0,4,3,1],[1,2,0,0]],[[1,2,0,1],[2,2,3,1],[2,2,3,0],[1,3,1,0]],[[1,2,0,1],[2,2,3,1],[2,2,3,0],[2,2,1,0]],[[1,1,3,0],[1,3,3,2],[0,3,3,2],[0,1,0,1]],[[1,1,2,0],[1,4,3,2],[0,3,3,2],[0,1,0,1]],[[1,1,2,0],[1,3,4,2],[0,3,3,2],[0,1,0,1]],[[1,1,2,0],[1,3,3,3],[0,3,3,2],[0,1,0,1]],[[1,1,2,0],[1,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,0,1],[2,2,3,1],[3,2,3,0],[1,2,1,0]],[[1,2,0,1],[3,2,3,1],[2,2,3,0],[1,2,1,0]],[[2,2,0,1],[2,2,3,1],[2,2,3,0],[1,2,1,0]],[[1,2,0,1],[2,2,3,1],[2,2,2,2],[2,2,0,0]],[[1,2,0,1],[2,2,3,1],[3,2,2,2],[1,2,0,0]],[[1,2,0,1],[3,2,3,1],[2,2,2,2],[1,2,0,0]],[[1,3,0,1],[2,2,3,1],[2,2,2,2],[1,2,0,0]],[[2,2,0,1],[2,2,3,1],[2,2,2,2],[1,2,0,0]],[[1,2,0,1],[2,2,3,1],[2,2,2,2],[2,1,1,0]],[[1,2,0,1],[2,2,3,1],[3,2,2,2],[1,1,1,0]],[[1,2,0,1],[3,2,3,1],[2,2,2,2],[1,1,1,0]],[[1,3,0,1],[2,2,3,1],[2,2,2,2],[1,1,1,0]],[[2,2,0,1],[2,2,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,0,1],[2,2,3,1],[2,2,2,2],[2,1,0,1]],[[1,2,0,1],[2,2,3,1],[3,2,2,2],[1,1,0,1]],[[1,2,0,1],[3,2,3,1],[2,2,2,2],[1,1,0,1]],[[1,3,0,1],[2,2,3,1],[2,2,2,2],[1,1,0,1]],[[2,2,0,1],[2,2,3,1],[2,2,2,2],[1,1,0,1]],[[1,2,0,1],[2,2,3,1],[2,2,2,2],[2,0,2,0]],[[1,2,0,1],[2,2,3,1],[3,2,2,2],[1,0,2,0]],[[1,2,0,1],[3,2,3,1],[2,2,2,2],[1,0,2,0]],[[1,3,0,1],[2,2,3,1],[2,2,2,2],[1,0,2,0]],[[2,2,0,1],[2,2,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,0,1],[2,2,3,1],[2,2,2,2],[2,0,1,1]],[[1,2,0,1],[2,2,3,1],[3,2,2,2],[1,0,1,1]],[[1,2,0,1],[3,2,3,1],[2,2,2,2],[1,0,1,1]],[[1,3,0,1],[2,2,3,1],[2,2,2,2],[1,0,1,1]],[[2,2,0,1],[2,2,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,0,1],[2,2,3,1],[3,2,2,2],[0,2,1,0]],[[1,2,0,1],[3,2,3,1],[2,2,2,2],[0,2,1,0]],[[1,3,0,1],[2,2,3,1],[2,2,2,2],[0,2,1,0]],[[2,2,0,1],[2,2,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,0,1],[2,2,3,1],[3,2,2,2],[0,2,0,1]],[[1,2,0,1],[3,2,3,1],[2,2,2,2],[0,2,0,1]],[[1,3,0,1],[2,2,3,1],[2,2,2,2],[0,2,0,1]],[[2,2,0,1],[2,2,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,0,1],[2,2,3,1],[3,2,2,2],[0,1,2,0]],[[1,2,0,1],[3,2,3,1],[2,2,2,2],[0,1,2,0]],[[1,3,0,1],[2,2,3,1],[2,2,2,2],[0,1,2,0]],[[2,2,0,1],[2,2,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,0,1],[2,2,3,1],[3,2,2,2],[0,1,1,1]],[[1,2,0,1],[3,2,3,1],[2,2,2,2],[0,1,1,1]],[[1,3,0,1],[2,2,3,1],[2,2,2,2],[0,1,1,1]],[[2,2,0,1],[2,2,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,0,1],[2,2,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,0,1],[2,2,3,1],[2,2,2,1],[2,2,1,0]],[[1,2,0,1],[2,2,3,1],[3,2,2,1],[1,2,1,0]],[[1,2,0,1],[3,2,3,1],[2,2,2,1],[1,2,1,0]],[[2,2,0,1],[2,2,3,1],[2,2,2,1],[1,2,1,0]],[[1,2,0,1],[2,2,3,1],[2,2,2,1],[2,1,1,1]],[[1,2,0,1],[2,2,3,1],[3,2,2,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,1],[2,2,2,1],[1,1,1,1]],[[1,3,0,1],[2,2,3,1],[2,2,2,1],[1,1,1,1]],[[2,2,0,1],[2,2,3,1],[2,2,2,1],[1,1,1,1]],[[1,2,0,1],[2,2,3,1],[2,2,2,1],[2,0,2,1]],[[1,2,0,1],[2,2,3,1],[3,2,2,1],[1,0,2,1]],[[1,2,0,1],[3,2,3,1],[2,2,2,1],[1,0,2,1]],[[1,1,3,0],[1,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[1,0,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[1,0,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[1,0,1,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,1,3],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,1,2],[2,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,1,2],[1,3,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,1,2],[1,2,3,1]],[[1,1,2,0],[1,3,3,2],[1,0,1,2],[1,2,2,2]],[[1,1,3,0],[1,3,3,2],[1,0,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[1,0,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[1,0,2,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,2,3],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,2,2],[0,2,3,1]],[[1,1,2,0],[1,3,3,2],[1,0,2,2],[0,2,2,2]],[[1,1,3,0],[1,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,1,2,0],[1,4,3,2],[1,0,2,2],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[1,0,2,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[1,0,2,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,0,2,3],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,0,2,2],[1,2,1,2]],[[1,1,3,0],[1,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,1,2,0],[1,4,3,2],[1,0,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,4,2],[1,0,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,3],[1,0,2,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,0,2,3],[1,2,2,0]],[[1,1,3,0],[1,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[1,0,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[1,0,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[1,0,3,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,4,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,3,0],[2,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,3,0],[1,3,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,3,0],[1,2,3,1]],[[1,1,2,0],[1,3,3,2],[1,0,3,0],[1,2,2,2]],[[1,1,3,0],[1,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,1,2,0],[1,4,3,2],[1,0,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[1,0,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[1,0,3,1],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,0,4,1],[1,2,1,1]],[[1,1,3,0],[1,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,2,0],[1,4,3,2],[1,0,3,1],[1,2,2,0]],[[1,1,2,0],[1,3,4,2],[1,0,3,1],[1,2,2,0]],[[1,1,2,0],[1,3,3,3],[1,0,3,1],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,0,4,1],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,0,3,1],[2,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,0,3,1],[1,3,2,0]],[[1,1,2,0],[1,3,3,2],[1,0,3,1],[1,2,3,0]],[[1,1,3,0],[1,3,3,2],[1,0,3,2],[0,1,2,1]],[[1,1,2,0],[1,3,4,2],[1,0,3,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,3],[1,0,3,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,3,3],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,0,3,2],[0,1,2,2]],[[1,1,3,0],[1,3,3,2],[1,0,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[1,0,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[1,0,3,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,0,3,3],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,0,3,2],[0,2,1,2]],[[1,1,3,0],[1,3,3,2],[1,0,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,4,2],[1,0,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,3],[1,0,3,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,3,0,1],[2,2,3,1],[2,2,2,1],[1,0,2,1]],[[2,2,0,1],[2,2,3,1],[2,2,2,1],[1,0,2,1]],[[1,2,0,1],[2,2,3,1],[3,2,2,1],[0,2,1,1]],[[1,2,0,1],[3,2,3,1],[2,2,2,1],[0,2,1,1]],[[1,3,0,1],[2,2,3,1],[2,2,2,1],[0,2,1,1]],[[2,2,0,1],[2,2,3,1],[2,2,2,1],[0,2,1,1]],[[1,1,3,0],[1,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[1,1,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[1,1,0,2],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,0,3],[1,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,0,2],[2,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,0,2],[1,3,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,0,2],[1,2,3,1]],[[1,1,2,0],[1,3,3,2],[1,1,0,2],[1,2,2,2]],[[1,1,3,0],[1,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,1,2,0],[1,4,3,2],[1,1,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[1,1,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[1,1,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,1,3],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,1,2],[0,3,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,1,2],[0,2,3,1]],[[1,1,2,0],[1,3,3,2],[1,1,1,2],[0,2,2,2]],[[1,1,3,0],[1,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,2,0],[1,4,3,2],[1,1,2,2],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[1,1,2,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[1,1,2,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,1,2,3],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,1,2,2],[0,2,1,2]],[[1,1,3,0],[1,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,1,2,0],[1,4,3,2],[1,1,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,4,2],[1,1,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,3],[1,1,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,0,1],[2,2,3,1],[3,2,2,1],[0,1,2,1]],[[1,2,0,1],[3,2,3,1],[2,2,2,1],[0,1,2,1]],[[1,3,0,1],[2,2,3,1],[2,2,2,1],[0,1,2,1]],[[2,2,0,1],[2,2,3,1],[2,2,2,1],[0,1,2,1]],[[1,1,3,0],[1,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,2,0],[1,4,3,2],[1,1,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[1,1,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[1,1,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,4,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,3,0],[0,3,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,3,0],[0,2,3,1]],[[1,1,2,0],[1,3,3,2],[1,1,3,0],[0,2,2,2]],[[1,1,3,0],[1,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,2,0],[1,4,3,2],[1,1,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[1,1,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[1,1,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,1,4,1],[0,2,1,1]],[[1,1,3,0],[1,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,1,2,0],[1,4,3,2],[1,1,3,1],[0,2,2,0]],[[1,1,2,0],[1,3,4,2],[1,1,3,1],[0,2,2,0]],[[1,1,2,0],[1,3,3,3],[1,1,3,1],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,1,4,1],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,1,3,1],[0,3,2,0]],[[1,1,2,0],[1,3,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,0,1],[2,2,3,1],[2,2,2,0],[1,3,1,1]],[[1,2,0,1],[2,2,3,1],[2,2,2,0],[2,2,1,1]],[[1,2,0,1],[2,2,3,1],[3,2,2,0],[1,2,1,1]],[[1,2,0,1],[3,2,3,1],[2,2,2,0],[1,2,1,1]],[[2,2,0,1],[2,2,3,1],[2,2,2,0],[1,2,1,1]],[[1,1,3,0],[1,3,3,2],[1,1,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,4,2],[1,1,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,3],[1,1,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,1,3,2],[0,0,2,2]],[[1,1,3,0],[1,3,3,2],[1,1,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[1,1,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[1,1,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,1,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,1,3,2],[0,1,1,2]],[[1,1,3,0],[1,3,3,2],[1,1,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[1,1,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[1,1,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,1,3,0],[1,3,3,2],[1,1,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,4,2],[1,1,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,3],[1,1,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,1,3,3],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,1,3,2],[1,0,1,2]],[[1,1,3,0],[1,3,3,2],[1,1,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[1,1,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,3],[1,1,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,0,1],[2,2,3,1],[2,2,1,2],[2,1,2,0]],[[1,2,0,1],[2,2,3,1],[3,2,1,2],[1,1,2,0]],[[1,2,0,1],[3,2,3,1],[2,2,1,2],[1,1,2,0]],[[1,3,0,1],[2,2,3,1],[2,2,1,2],[1,1,2,0]],[[2,2,0,1],[2,2,3,1],[2,2,1,2],[1,1,2,0]],[[1,2,0,1],[2,2,3,1],[3,2,1,2],[0,2,2,0]],[[1,2,0,1],[3,2,3,1],[2,2,1,2],[0,2,2,0]],[[1,3,0,1],[2,2,3,1],[2,2,1,2],[0,2,2,0]],[[2,2,0,1],[2,2,3,1],[2,2,1,2],[0,2,2,0]],[[1,2,0,1],[2,2,3,1],[2,2,1,1],[1,3,2,0]],[[1,2,0,1],[2,2,3,1],[2,2,1,1],[2,2,2,0]],[[1,2,0,1],[2,2,3,1],[3,2,1,1],[1,2,2,0]],[[1,2,0,1],[3,2,3,1],[2,2,1,1],[1,2,2,0]],[[2,2,0,1],[2,2,3,1],[2,2,1,1],[1,2,2,0]],[[1,2,0,1],[2,2,3,1],[2,2,1,1],[2,1,2,1]],[[1,2,0,1],[2,2,3,1],[3,2,1,1],[1,1,2,1]],[[1,2,0,1],[3,2,3,1],[2,2,1,1],[1,1,2,1]],[[1,3,0,1],[2,2,3,1],[2,2,1,1],[1,1,2,1]],[[2,2,0,1],[2,2,3,1],[2,2,1,1],[1,1,2,1]],[[1,1,3,0],[1,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,2,0],[1,4,3,2],[1,2,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[1,2,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[1,2,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,0,3],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,0,2],[0,3,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,0,2],[0,2,3,1]],[[1,1,2,0],[1,3,3,2],[1,2,0,2],[0,2,2,2]],[[1,1,3,0],[1,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,1,2,0],[1,4,3,2],[1,2,1,2],[0,1,2,1]],[[1,1,2,0],[1,3,4,2],[1,2,1,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,3],[1,2,1,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,1,3],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,1,2],[0,1,3,1]],[[1,1,2,0],[1,3,3,2],[1,2,1,2],[0,1,2,2]],[[1,1,3,0],[1,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,1,2,0],[1,4,3,2],[1,2,1,2],[1,0,2,1]],[[1,1,2,0],[1,3,4,2],[1,2,1,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,3],[1,2,1,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,1,3],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,1,2],[1,0,3,1]],[[1,1,2,0],[1,3,3,2],[1,2,1,2],[1,0,2,2]],[[1,2,0,1],[2,2,3,1],[3,2,1,1],[0,2,2,1]],[[1,2,0,1],[3,2,3,1],[2,2,1,1],[0,2,2,1]],[[1,3,0,1],[2,2,3,1],[2,2,1,1],[0,2,2,1]],[[2,2,0,1],[2,2,3,1],[2,2,1,1],[0,2,2,1]],[[1,2,0,1],[2,2,3,1],[2,2,1,0],[1,2,3,1]],[[1,2,0,1],[2,2,3,1],[2,2,1,0],[1,3,2,1]],[[1,2,0,1],[2,2,3,1],[2,2,1,0],[2,2,2,1]],[[1,2,0,1],[2,2,3,1],[3,2,1,0],[1,2,2,1]],[[1,2,0,1],[3,2,3,1],[2,2,1,0],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,2,0],[1,4,3,2],[1,2,2,2],[0,0,2,1]],[[1,1,2,0],[1,3,4,2],[1,2,2,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,3],[1,2,2,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,2,3],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,2,2],[0,0,2,2]],[[1,1,3,0],[1,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,1,2,0],[1,4,3,2],[1,2,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[1,2,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[1,2,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,2,2,3],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,2,2,2],[0,1,1,2]],[[1,1,3,0],[1,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[1,2,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[1,2,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[1,2,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[1,2,2,3],[0,1,2,0]],[[1,1,3,0],[1,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,1,2,0],[1,4,3,2],[1,2,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,4,2],[1,2,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,3],[1,2,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[1,2,2,3],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[1,2,2,2],[0,2,0,2]],[[1,1,3,0],[1,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[1,2,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[1,2,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,3],[1,2,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[1,2,2,3],[0,2,1,0]],[[2,2,0,1],[2,2,3,1],[2,2,1,0],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,1,2,0],[1,4,3,2],[1,2,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,4,2],[1,2,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,3],[1,2,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,2,2,3],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,2,2,2],[1,0,1,2]],[[1,1,3,0],[1,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,1,2,0],[1,4,3,2],[1,2,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[1,2,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,3],[1,2,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[1,2,2,3],[1,0,2,0]],[[1,1,3,0],[1,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,1,2,0],[1,4,3,2],[1,2,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,4,2],[1,2,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,3],[1,2,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[1,2,2,3],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[1,2,2,2],[1,1,0,2]],[[1,1,3,0],[1,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,1,2,0],[1,4,3,2],[1,2,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,4,2],[1,2,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,3],[1,2,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,0,1],[2,2,3,1],[2,2,0,2],[2,1,2,1]],[[1,2,0,1],[2,2,3,1],[3,2,0,2],[1,1,2,1]],[[1,2,0,1],[3,2,3,1],[2,2,0,2],[1,1,2,1]],[[1,3,0,1],[2,2,3,1],[2,2,0,2],[1,1,2,1]],[[2,2,0,1],[2,2,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,0,1],[2,2,3,1],[3,2,0,2],[0,2,2,1]],[[1,2,0,1],[3,2,3,1],[2,2,0,2],[0,2,2,1]],[[1,3,0,1],[2,2,3,1],[2,2,0,2],[0,2,2,1]],[[2,2,0,1],[2,2,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,3,0],[1,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,2,0],[1,4,3,2],[1,2,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,4,2],[1,2,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,3],[1,2,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,4,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,3,0],[0,1,3,1]],[[1,1,2,0],[1,3,3,2],[1,2,3,0],[0,1,2,2]],[[1,1,3,0],[1,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,1,2,0],[1,4,3,2],[1,2,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[1,2,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[1,2,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,2,4,0],[0,2,1,1]],[[1,1,3,0],[1,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,2,0],[1,4,3,2],[1,2,3,0],[1,0,2,1]],[[1,1,2,0],[1,3,4,2],[1,2,3,0],[1,0,2,1]],[[1,1,2,0],[1,3,3,3],[1,2,3,0],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,4,0],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,3,0],[1,0,3,1]],[[1,1,2,0],[1,3,3,2],[1,2,3,0],[1,0,2,2]],[[1,1,3,0],[1,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[1,2,3,0],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[1,2,3,0],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,2,4,0],[1,1,1,1]],[[1,2,0,1],[2,2,3,1],[2,1,3,2],[2,1,1,0]],[[1,2,0,1],[2,2,3,1],[3,1,3,2],[1,1,1,0]],[[1,2,0,1],[3,2,3,1],[2,1,3,2],[1,1,1,0]],[[1,1,3,0],[1,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,2,0],[1,4,3,2],[1,2,3,1],[0,0,2,1]],[[1,1,2,0],[1,3,4,2],[1,2,3,1],[0,0,2,1]],[[1,1,2,0],[1,3,3,3],[1,2,3,1],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,2,4,1],[0,0,2,1]],[[1,1,3,0],[1,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,1,2,0],[1,4,3,2],[1,2,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[1,2,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[1,2,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,2,4,1],[0,1,1,1]],[[1,1,3,0],[1,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[1,2,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[1,2,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[1,2,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[1,2,4,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[1,2,3,1],[0,1,3,0]],[[1,1,3,0],[1,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,2,0],[1,4,3,2],[1,2,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,4,2],[1,2,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,3,3],[1,2,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[1,2,4,1],[0,2,0,1]],[[1,1,3,0],[1,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[1,2,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[1,2,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,3,3],[1,2,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[1,2,4,1],[0,2,1,0]],[[1,3,0,1],[2,2,3,1],[2,1,3,2],[1,1,1,0]],[[2,2,0,1],[2,2,3,1],[2,1,3,2],[1,1,1,0]],[[1,2,0,1],[2,2,3,1],[2,1,3,2],[2,1,0,1]],[[1,2,0,1],[2,2,3,1],[3,1,3,2],[1,1,0,1]],[[1,2,0,1],[3,2,3,1],[2,1,3,2],[1,1,0,1]],[[1,3,0,1],[2,2,3,1],[2,1,3,2],[1,1,0,1]],[[2,2,0,1],[2,2,3,1],[2,1,3,2],[1,1,0,1]],[[1,1,3,0],[1,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,2,0],[1,4,3,2],[1,2,3,1],[1,0,1,1]],[[1,1,2,0],[1,3,4,2],[1,2,3,1],[1,0,1,1]],[[1,1,2,0],[1,3,3,3],[1,2,3,1],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,2,4,1],[1,0,1,1]],[[1,1,3,0],[1,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,1,2,0],[1,4,3,2],[1,2,3,1],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[1,2,3,1],[1,0,2,0]],[[1,1,2,0],[1,3,3,3],[1,2,3,1],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[1,2,4,1],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[1,2,3,1],[1,0,3,0]],[[1,1,3,0],[1,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,2,0],[1,4,3,2],[1,2,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,4,2],[1,2,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,3,3],[1,2,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[1,2,4,1],[1,1,0,1]],[[1,1,3,0],[1,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,1,2,0],[1,4,3,2],[1,2,3,1],[1,1,1,0]],[[1,1,2,0],[1,3,4,2],[1,2,3,1],[1,1,1,0]],[[1,1,2,0],[1,3,3,3],[1,2,3,1],[1,1,1,0]],[[1,1,2,0],[1,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,0,1],[2,2,3,1],[2,1,3,2],[2,0,2,0]],[[1,2,0,1],[2,2,3,1],[3,1,3,2],[1,0,2,0]],[[1,2,0,1],[3,2,3,1],[2,1,3,2],[1,0,2,0]],[[1,3,0,1],[2,2,3,1],[2,1,3,2],[1,0,2,0]],[[2,2,0,1],[2,2,3,1],[2,1,3,2],[1,0,2,0]],[[1,2,0,1],[2,2,3,1],[2,1,3,2],[2,0,1,1]],[[1,2,0,1],[2,2,3,1],[3,1,3,2],[1,0,1,1]],[[1,2,0,1],[3,2,3,1],[2,1,3,2],[1,0,1,1]],[[1,3,0,1],[2,2,3,1],[2,1,3,2],[1,0,1,1]],[[2,2,0,1],[2,2,3,1],[2,1,3,2],[1,0,1,1]],[[1,2,0,1],[2,2,3,1],[3,1,3,2],[0,2,1,0]],[[1,2,0,1],[3,2,3,1],[2,1,3,2],[0,2,1,0]],[[1,3,0,1],[2,2,3,1],[2,1,3,2],[0,2,1,0]],[[2,2,0,1],[2,2,3,1],[2,1,3,2],[0,2,1,0]],[[1,2,0,1],[2,2,3,1],[3,1,3,2],[0,2,0,1]],[[1,2,0,1],[3,2,3,1],[2,1,3,2],[0,2,0,1]],[[1,3,0,1],[2,2,3,1],[2,1,3,2],[0,2,0,1]],[[1,1,3,0],[1,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,2,0],[1,4,3,2],[1,2,3,2],[0,1,0,1]],[[1,1,2,0],[1,3,4,2],[1,2,3,2],[0,1,0,1]],[[1,1,2,0],[1,3,3,3],[1,2,3,2],[0,1,0,1]],[[1,1,2,0],[1,3,3,2],[1,2,3,3],[0,1,0,1]],[[2,2,0,1],[2,2,3,1],[2,1,3,2],[0,2,0,1]],[[1,2,0,1],[2,2,3,1],[3,1,3,2],[0,1,2,0]],[[1,2,0,1],[3,2,3,1],[2,1,3,2],[0,1,2,0]],[[1,3,0,1],[2,2,3,1],[2,1,3,2],[0,1,2,0]],[[2,2,0,1],[2,2,3,1],[2,1,3,2],[0,1,2,0]],[[1,2,0,1],[2,2,3,1],[3,1,3,2],[0,1,1,1]],[[1,2,0,1],[3,2,3,1],[2,1,3,2],[0,1,1,1]],[[1,3,0,1],[2,2,3,1],[2,1,3,2],[0,1,1,1]],[[2,2,0,1],[2,2,3,1],[2,1,3,2],[0,1,1,1]],[[1,2,0,1],[3,2,3,1],[2,1,3,2],[0,0,2,1]],[[1,3,0,1],[2,2,3,1],[2,1,3,2],[0,0,2,1]],[[2,2,0,1],[2,2,3,1],[2,1,3,2],[0,0,2,1]],[[1,2,0,1],[2,2,3,1],[2,1,3,1],[2,1,1,1]],[[1,2,0,1],[2,2,3,1],[3,1,3,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,1],[2,1,3,1],[1,1,1,1]],[[1,3,0,1],[2,2,3,1],[2,1,3,1],[1,1,1,1]],[[2,2,0,1],[2,2,3,1],[2,1,3,1],[1,1,1,1]],[[1,1,3,0],[1,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,2,0],[1,4,3,2],[1,2,3,2],[1,0,0,1]],[[1,1,2,0],[1,3,4,2],[1,2,3,2],[1,0,0,1]],[[1,1,2,0],[1,3,3,3],[1,2,3,2],[1,0,0,1]],[[1,1,2,0],[1,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,0,1],[2,2,3,1],[2,1,3,1],[2,0,2,1]],[[1,2,0,1],[2,2,3,1],[3,1,3,1],[1,0,2,1]],[[1,2,0,1],[3,2,3,1],[2,1,3,1],[1,0,2,1]],[[1,3,0,1],[2,2,3,1],[2,1,3,1],[1,0,2,1]],[[2,2,0,1],[2,2,3,1],[2,1,3,1],[1,0,2,1]],[[1,2,0,1],[2,2,3,1],[3,1,3,1],[0,2,1,1]],[[1,2,0,1],[3,2,3,1],[2,1,3,1],[0,2,1,1]],[[1,3,0,1],[2,2,3,1],[2,1,3,1],[0,2,1,1]],[[2,2,0,1],[2,2,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,0,1],[2,2,3,1],[3,1,3,1],[0,1,2,1]],[[1,2,0,1],[3,2,3,1],[2,1,3,1],[0,1,2,1]],[[1,3,0,1],[2,2,3,1],[2,1,3,1],[0,1,2,1]],[[2,2,0,1],[2,2,3,1],[2,1,3,1],[0,1,2,1]],[[1,2,0,1],[2,2,3,1],[2,1,2,2],[1,3,1,0]],[[1,2,0,1],[2,2,3,1],[2,1,2,2],[2,2,1,0]],[[1,2,0,1],[2,2,3,1],[3,1,2,2],[1,2,1,0]],[[1,2,0,1],[3,2,3,1],[2,1,2,2],[1,2,1,0]],[[1,3,0,1],[2,2,3,1],[2,1,2,2],[1,2,1,0]],[[2,2,0,1],[2,2,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,0,1],[2,2,3,1],[2,1,2,2],[1,3,0,1]],[[1,2,0,1],[2,2,3,1],[2,1,2,2],[2,2,0,1]],[[1,2,0,1],[2,2,3,1],[3,1,2,2],[1,2,0,1]],[[1,2,0,1],[3,2,3,1],[2,1,2,2],[1,2,0,1]],[[1,3,0,1],[2,2,3,1],[2,1,2,2],[1,2,0,1]],[[2,2,0,1],[2,2,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,0,1],[2,2,3,1],[2,1,2,1],[1,3,1,1]],[[1,2,0,1],[2,2,3,1],[2,1,2,1],[2,2,1,1]],[[1,2,0,1],[2,2,3,1],[3,1,2,1],[1,2,1,1]],[[1,2,0,1],[3,2,3,1],[2,1,2,1],[1,2,1,1]],[[1,3,0,1],[2,2,3,1],[2,1,2,1],[1,2,1,1]],[[2,2,0,1],[2,2,3,1],[2,1,2,1],[1,2,1,1]],[[1,2,0,1],[2,2,3,1],[2,1,1,2],[1,2,3,0]],[[1,2,0,1],[2,2,3,1],[2,1,1,2],[1,3,2,0]],[[1,2,0,1],[2,2,3,1],[2,1,1,2],[2,2,2,0]],[[1,2,0,1],[2,2,3,1],[3,1,1,2],[1,2,2,0]],[[1,1,3,0],[1,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,2,0],[1,4,3,2],[1,3,0,1],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[1,3,0,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[1,3,0,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,4,0,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,1],[0,3,2,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,1],[0,2,3,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,1],[0,2,2,2]],[[1,1,3,0],[1,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,2,0],[1,4,3,2],[1,3,0,1],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[1,3,0,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[1,3,0,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,4,0,1],[1,1,2,1]],[[1,1,3,0],[1,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,2,0],[1,4,3,2],[1,3,0,2],[0,1,2,1]],[[1,1,2,0],[1,3,4,2],[1,3,0,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,3],[1,3,0,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,4,0,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,3],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,2],[0,1,3,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,2],[0,1,2,2]],[[1,1,3,0],[1,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,2,0],[1,4,3,2],[1,3,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[1,3,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[1,3,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,4,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,3],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,2],[0,3,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,2],[0,2,1,2]],[[1,1,3,0],[1,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,0,2],[0,2,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,0,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,3],[1,3,0,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,4,0,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,3,0,3],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,3,0,2],[0,3,2,0]],[[1,1,2,0],[1,3,3,2],[1,3,0,2],[0,2,3,0]],[[1,1,3,0],[1,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,2,0],[1,4,3,2],[1,3,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,4,2],[1,3,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,3],[1,3,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,4,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,3],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,2],[1,0,3,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,2],[1,0,2,2]],[[1,1,3,0],[1,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[1,3,0,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,4,0,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,3],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,0,2],[1,1,1,2]],[[1,1,3,0],[1,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,3],[1,3,0,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[1,4,0,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,0,1],[3,2,3,1],[2,1,1,2],[1,2,2,0]],[[1,3,0,1],[2,2,3,1],[2,1,1,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,0,1],[2,2,3,1],[2,1,1,1],[1,2,2,2]],[[1,2,0,1],[2,2,3,1],[2,1,1,1],[1,2,3,1]],[[1,2,0,1],[2,2,3,1],[2,1,1,1],[1,3,2,1]],[[1,2,0,1],[2,2,3,1],[2,1,1,1],[2,2,2,1]],[[1,2,0,1],[2,2,3,1],[3,1,1,1],[1,2,2,1]],[[1,2,0,1],[3,2,3,1],[2,1,1,1],[1,2,2,1]],[[1,3,0,1],[2,2,3,1],[2,1,1,1],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,2,0],[1,4,3,2],[1,3,1,0],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[1,3,1,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[1,3,1,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,4,1,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,0],[0,3,2,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,0],[0,2,3,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,0],[0,2,2,2]],[[1,1,3,0],[1,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,1,2,0],[1,4,3,2],[1,3,1,0],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[1,3,1,0],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[1,3,1,0],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,4,1,0],[1,1,2,1]],[[1,1,3,0],[1,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,1,1],[0,2,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,1,1],[0,2,2,0]],[[1,1,2,0],[1,3,3,3],[1,3,1,1],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,4,1,1],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[1,3,1,1],[0,3,2,0]],[[1,1,2,0],[1,3,3,2],[1,3,1,1],[0,2,3,0]],[[1,1,3,0],[1,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,1,1],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,1,1],[1,1,2,0]],[[1,1,2,0],[1,3,3,3],[1,3,1,1],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[1,4,1,1],[1,1,2,0]],[[2,2,0,1],[2,2,3,1],[2,1,1,1],[1,2,2,1]],[[1,2,0,1],[2,2,3,1],[2,1,0,2],[1,2,2,2]],[[1,2,0,1],[2,2,3,1],[2,1,0,2],[1,2,3,1]],[[1,2,0,1],[2,2,3,1],[2,1,0,2],[1,3,2,1]],[[1,2,0,1],[2,2,3,1],[2,1,0,2],[2,2,2,1]],[[1,2,0,1],[2,2,3,1],[2,1,0,3],[1,2,2,1]],[[1,2,0,1],[2,2,3,1],[3,1,0,2],[1,2,2,1]],[[1,2,0,1],[3,2,3,1],[2,1,0,2],[1,2,2,1]],[[1,3,0,1],[2,2,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,2,0],[1,4,3,2],[1,3,1,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[1,3,1,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[1,3,1,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,4,1,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,3],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,2],[0,1,1,2]],[[1,1,3,0],[1,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,1,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,1,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[1,3,1,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[1,4,1,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[1,3,1,3],[0,1,2,0]],[[1,1,3,0],[1,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,1,2,0],[1,4,3,2],[1,3,1,2],[0,2,0,1]],[[1,1,2,0],[1,3,4,2],[1,3,1,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,3],[1,3,1,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[1,4,1,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,3],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,2],[0,3,0,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,2],[0,2,0,2]],[[1,1,3,0],[1,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[1,3,1,2],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[1,3,1,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,3],[1,3,1,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[1,4,1,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[1,3,1,3],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[1,3,1,2],[0,3,1,0]],[[2,2,0,1],[2,2,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,2,0],[1,4,3,2],[1,3,1,2],[1,0,1,1]],[[1,1,2,0],[1,3,4,2],[1,3,1,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,3],[1,3,1,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,4,1,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,3],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,2],[1,0,1,2]],[[1,1,3,0],[1,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,1,2],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,1,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,3],[1,3,1,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[1,4,1,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[1,3,1,3],[1,0,2,0]],[[1,1,3,0],[1,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,2,0],[1,4,3,2],[1,3,1,2],[1,1,0,1]],[[1,1,2,0],[1,3,4,2],[1,3,1,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,3],[1,3,1,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[1,4,1,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,3],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[1,3,1,2],[1,1,0,2]],[[1,1,3,0],[1,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,1,2,0],[1,4,3,2],[1,3,1,2],[1,1,1,0]],[[1,1,2,0],[1,3,4,2],[1,3,1,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,3],[1,3,1,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,2],[1,4,1,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,2],[1,3,1,3],[1,1,1,0]],[[1,1,3,0],[1,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,2,0],[1,4,3,2],[1,3,1,2],[1,2,0,0]],[[1,1,2,0],[1,3,4,2],[1,3,1,2],[1,2,0,0]],[[1,1,2,0],[1,3,3,3],[1,3,1,2],[1,2,0,0]],[[1,1,2,0],[1,3,3,2],[1,4,1,2],[1,2,0,0]],[[1,2,0,1],[2,2,3,1],[2,0,3,2],[1,3,1,0]],[[1,2,0,1],[2,2,3,1],[2,0,3,2],[2,2,1,0]],[[1,2,0,1],[2,2,3,1],[3,0,3,2],[1,2,1,0]],[[1,2,0,1],[3,2,3,1],[2,0,3,2],[1,2,1,0]],[[1,3,0,1],[2,2,3,1],[2,0,3,2],[1,2,1,0]],[[2,2,0,1],[2,2,3,1],[2,0,3,2],[1,2,1,0]],[[1,2,0,1],[2,2,3,1],[2,0,3,2],[1,3,0,1]],[[1,2,0,1],[2,2,3,1],[2,0,3,2],[2,2,0,1]],[[1,2,0,1],[2,2,3,1],[3,0,3,2],[1,2,0,1]],[[1,2,0,1],[3,2,3,1],[2,0,3,2],[1,2,0,1]],[[1,3,0,1],[2,2,3,1],[2,0,3,2],[1,2,0,1]],[[2,2,0,1],[2,2,3,1],[2,0,3,2],[1,2,0,1]],[[1,2,0,1],[2,2,3,1],[2,0,3,2],[2,1,2,0]],[[1,2,0,1],[2,2,3,1],[3,0,3,2],[1,1,2,0]],[[1,2,0,1],[3,2,3,1],[2,0,3,2],[1,1,2,0]],[[1,3,0,1],[2,2,3,1],[2,0,3,2],[1,1,2,0]],[[2,2,0,1],[2,2,3,1],[2,0,3,2],[1,1,2,0]],[[1,2,0,1],[2,2,3,1],[2,0,3,2],[2,1,1,1]],[[1,2,0,1],[2,2,3,1],[3,0,3,2],[1,1,1,1]],[[1,1,3,0],[1,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,1,2,0],[1,4,3,2],[1,3,2,0],[0,1,2,1]],[[1,1,2,0],[1,3,4,2],[1,3,2,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,3],[1,3,2,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[1,4,2,0],[0,1,2,1]],[[1,1,3,0],[1,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,1,2,0],[1,4,3,2],[1,3,2,0],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[1,3,2,0],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[1,3,2,0],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,4,2,0],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,2,0],[0,3,1,1]],[[1,1,3,0],[1,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,2,0],[1,4,3,2],[1,3,2,0],[1,0,2,1]],[[1,1,2,0],[1,3,4,2],[1,3,2,0],[1,0,2,1]],[[1,1,2,0],[1,3,3,3],[1,3,2,0],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,4,2,0],[1,0,2,1]],[[1,1,3,0],[1,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[1,3,2,0],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,4,2,0],[1,1,1,1]],[[1,1,3,0],[1,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,0],[1,4,3,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,0],[1,3,4,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,2,0,1],[3,2,3,1],[2,0,3,2],[1,1,1,1]],[[1,3,0,1],[2,2,3,1],[2,0,3,2],[1,1,1,1]],[[2,2,0,1],[2,2,3,1],[2,0,3,2],[1,1,1,1]],[[1,2,0,1],[2,2,3,1],[3,0,3,2],[0,2,2,0]],[[1,2,0,1],[3,2,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,3,0],[1,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,1,2,0],[1,4,3,2],[1,3,2,1],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[1,3,2,1],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[1,3,2,1],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[1,4,2,1],[0,1,1,1]],[[1,1,3,0],[1,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,2,1],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,2,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[1,3,2,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[1,4,2,1],[0,1,2,0]],[[1,1,3,0],[1,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,2,0],[1,4,3,2],[1,3,2,1],[0,2,0,1]],[[1,1,2,0],[1,3,4,2],[1,3,2,1],[0,2,0,1]],[[1,1,2,0],[1,3,3,3],[1,3,2,1],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[1,4,2,1],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[1,3,2,1],[0,3,0,1]],[[1,1,3,0],[1,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[1,3,2,1],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[1,3,2,1],[0,2,1,0]],[[1,1,2,0],[1,3,3,3],[1,3,2,1],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[1,4,2,1],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[1,3,2,1],[0,3,1,0]],[[1,3,0,1],[2,2,3,1],[2,0,3,2],[0,2,2,0]],[[2,2,0,1],[2,2,3,1],[2,0,3,2],[0,2,2,0]],[[1,2,0,1],[2,2,3,1],[3,0,3,2],[0,2,1,1]],[[1,2,0,1],[3,2,3,1],[2,0,3,2],[0,2,1,1]],[[1,3,0,1],[2,2,3,1],[2,0,3,2],[0,2,1,1]],[[2,2,0,1],[2,2,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,3,0],[1,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,2,0],[1,4,3,2],[1,3,2,1],[1,0,1,1]],[[1,1,2,0],[1,3,4,2],[1,3,2,1],[1,0,1,1]],[[1,1,2,0],[1,3,3,3],[1,3,2,1],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,4,2,1],[1,0,1,1]],[[1,1,3,0],[1,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,2,1],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,2,1],[1,0,2,0]],[[1,1,2,0],[1,3,3,3],[1,3,2,1],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[1,4,2,1],[1,0,2,0]],[[1,1,3,0],[1,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,1,2,0],[1,4,3,2],[1,3,2,1],[1,1,0,1]],[[1,1,2,0],[1,3,4,2],[1,3,2,1],[1,1,0,1]],[[1,1,2,0],[1,3,3,3],[1,3,2,1],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[1,4,2,1],[1,1,0,1]],[[1,1,3,0],[1,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,2,0],[1,4,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,2,0],[1,3,4,2],[1,3,2,1],[1,1,1,0]],[[1,1,2,0],[1,3,3,3],[1,3,2,1],[1,1,1,0]],[[1,1,2,0],[1,3,3,2],[1,4,2,1],[1,1,1,0]],[[1,1,3,0],[1,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,1,2,0],[1,4,3,2],[1,3,2,1],[1,2,0,0]],[[1,1,2,0],[1,3,4,2],[1,3,2,1],[1,2,0,0]],[[1,1,2,0],[1,3,3,3],[1,3,2,1],[1,2,0,0]],[[1,1,2,0],[1,3,3,2],[1,4,2,1],[1,2,0,0]],[[1,2,0,1],[2,2,3,1],[2,0,3,1],[1,3,1,1]],[[1,2,0,1],[2,2,3,1],[2,0,3,1],[2,2,1,1]],[[1,2,0,1],[2,2,3,1],[3,0,3,1],[1,2,1,1]],[[1,2,0,1],[3,2,3,1],[2,0,3,1],[1,2,1,1]],[[1,3,0,1],[2,2,3,1],[2,0,3,1],[1,2,1,1]],[[2,2,0,1],[2,2,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,0,1],[2,2,3,1],[2,0,3,1],[2,1,2,1]],[[1,2,0,1],[2,2,3,1],[3,0,3,1],[1,1,2,1]],[[1,2,0,1],[3,2,3,1],[2,0,3,1],[1,1,2,1]],[[1,3,0,1],[2,2,3,1],[2,0,3,1],[1,1,2,1]],[[2,2,0,1],[2,2,3,1],[2,0,3,1],[1,1,2,1]],[[1,2,0,1],[2,2,3,1],[3,0,3,1],[0,2,2,1]],[[1,2,0,1],[3,2,3,1],[2,0,3,1],[0,2,2,1]],[[1,3,0,1],[2,2,3,1],[2,0,3,1],[0,2,2,1]],[[2,2,0,1],[2,2,3,1],[2,0,3,1],[0,2,2,1]],[[1,1,3,0],[1,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,1,2,0],[1,4,3,2],[1,3,2,2],[0,0,1,1]],[[1,1,2,0],[1,3,4,2],[1,3,2,2],[0,0,1,1]],[[1,1,2,0],[1,3,3,3],[1,3,2,2],[0,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,2,3],[0,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,2,2],[0,0,1,2]],[[1,1,3,0],[1,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,2,2],[0,0,2,0]],[[1,1,2,0],[1,3,3,3],[1,3,2,2],[0,0,2,0]],[[1,1,2,0],[1,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,0,1],[2,2,3,1],[2,0,2,2],[1,2,3,0]],[[1,2,0,1],[2,2,3,1],[2,0,2,2],[1,3,2,0]],[[1,2,0,1],[2,2,3,1],[2,0,2,2],[2,2,2,0]],[[1,2,0,1],[2,2,3,1],[3,0,2,2],[1,2,2,0]],[[1,2,0,1],[3,2,3,1],[2,0,2,2],[1,2,2,0]],[[1,3,0,1],[2,2,3,1],[2,0,2,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,0,1],[2,2,3,1],[2,0,2,1],[1,2,2,2]],[[1,2,0,1],[2,2,3,1],[2,0,2,1],[1,2,3,1]],[[1,2,0,1],[2,2,3,1],[2,0,2,1],[1,3,2,1]],[[1,2,0,1],[2,2,3,1],[2,0,2,1],[2,2,2,1]],[[1,2,0,1],[2,2,3,1],[3,0,2,1],[1,2,2,1]],[[1,2,0,1],[3,2,3,1],[2,0,2,1],[1,2,2,1]],[[1,3,0,1],[2,2,3,1],[2,0,2,1],[1,2,2,1]],[[2,2,0,1],[2,2,3,1],[2,0,2,1],[1,2,2,1]],[[1,2,0,1],[2,2,3,1],[2,0,1,2],[1,2,2,2]],[[1,2,0,1],[2,2,3,1],[2,0,1,2],[1,2,3,1]],[[1,2,0,1],[2,2,3,1],[2,0,1,2],[1,3,2,1]],[[1,2,0,1],[2,2,3,1],[2,0,1,2],[2,2,2,1]],[[1,2,0,1],[2,2,3,1],[2,0,1,3],[1,2,2,1]],[[1,2,0,1],[2,2,3,1],[3,0,1,2],[1,2,2,1]],[[1,2,0,1],[3,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,3,0,1],[2,2,3,1],[2,0,1,2],[1,2,2,1]],[[2,2,0,1],[2,2,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,0,1],[3,2,3,1],[1,3,3,2],[1,1,0,0]],[[1,3,0,1],[2,2,3,1],[1,3,3,2],[1,1,0,0]],[[2,2,0,1],[2,2,3,1],[1,3,3,2],[1,1,0,0]],[[1,2,0,1],[3,2,3,1],[1,3,3,2],[0,2,0,0]],[[1,3,0,1],[2,2,3,1],[1,3,3,2],[0,2,0,0]],[[2,2,0,1],[2,2,3,1],[1,3,3,2],[0,2,0,0]],[[1,1,3,0],[1,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,2,0],[1,4,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,2,0],[1,3,4,2],[1,3,3,0],[0,0,2,1]],[[1,1,2,0],[1,3,3,3],[1,3,3,0],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[1,3,4,0],[0,0,2,1]],[[1,1,3,0],[1,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,3,0],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,3,0],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[1,4,3,0],[0,1,2,0]],[[1,1,3,0],[1,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[1,3,3,0],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[1,4,3,0],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[1,3,3,0],[0,3,1,0]],[[1,2,0,1],[3,2,3,1],[1,3,3,2],[0,0,2,0]],[[1,3,0,1],[2,2,3,1],[1,3,3,2],[0,0,2,0]],[[2,2,0,1],[2,2,3,1],[1,3,3,2],[0,0,2,0]],[[1,2,0,1],[3,2,3,1],[1,3,3,2],[0,0,1,1]],[[1,3,0,1],[2,2,3,1],[1,3,3,2],[0,0,1,1]],[[2,2,0,1],[2,2,3,1],[1,3,3,2],[0,0,1,1]],[[1,1,3,0],[1,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,3,0],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[1,4,3,0],[1,0,2,0]],[[1,1,3,0],[1,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,1,2,0],[1,4,3,2],[1,3,3,0],[1,1,1,0]],[[1,1,2,0],[1,3,4,2],[1,3,3,0],[1,1,1,0]],[[1,1,2,0],[1,3,3,2],[1,4,3,0],[1,1,1,0]],[[1,1,3,0],[1,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,2,0],[1,4,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,2,0],[1,3,4,2],[1,3,3,0],[1,2,0,0]],[[1,1,2,0],[1,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,0,1],[3,2,3,1],[1,3,3,1],[0,0,2,1]],[[1,3,0,1],[2,2,3,1],[1,3,3,1],[0,0,2,1]],[[2,2,0,1],[2,2,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,3,0],[1,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,2,0],[1,4,3,2],[1,3,3,1],[0,0,1,1]],[[1,1,2,0],[1,3,4,2],[1,3,3,1],[0,0,1,1]],[[1,1,2,0],[1,3,3,3],[1,3,3,1],[0,0,1,1]],[[1,1,2,0],[1,3,3,2],[1,3,4,1],[0,0,1,1]],[[1,1,3,0],[1,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,1,2,0],[1,4,3,2],[1,3,3,1],[0,0,2,0]],[[1,1,2,0],[1,3,4,2],[1,3,3,1],[0,0,2,0]],[[1,1,2,0],[1,3,3,3],[1,3,3,1],[0,0,2,0]],[[1,1,2,0],[1,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,0,1],[2,2,3,1],[1,3,3,0],[1,3,1,0]],[[1,2,0,1],[2,2,3,1],[1,3,3,0],[2,2,1,0]],[[1,1,3,0],[1,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,2,0],[1,4,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,2,0],[1,3,4,2],[1,3,3,1],[0,2,0,0]],[[1,1,2,0],[1,3,3,3],[1,3,3,1],[0,2,0,0]],[[1,1,2,0],[1,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,2,0,1],[2,2,3,1],[1,4,3,0],[1,2,1,0]],[[1,2,0,1],[3,2,3,1],[1,3,2,2],[1,2,0,0]],[[1,3,0,1],[2,2,3,1],[1,3,2,2],[1,2,0,0]],[[2,2,0,1],[2,2,3,1],[1,3,2,2],[1,2,0,0]],[[1,2,0,1],[3,2,3,1],[1,3,2,2],[1,1,1,0]],[[1,3,0,1],[2,2,3,1],[1,3,2,2],[1,1,1,0]],[[2,2,0,1],[2,2,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,0,1],[3,2,3,1],[1,3,2,2],[1,1,0,1]],[[1,3,0,1],[2,2,3,1],[1,3,2,2],[1,1,0,1]],[[2,2,0,1],[2,2,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,3,0],[1,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,2,0],[1,4,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,2,0],[1,3,4,2],[1,3,3,1],[1,1,0,0]],[[1,1,2,0],[1,3,3,3],[1,3,3,1],[1,1,0,0]],[[1,1,2,0],[1,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,0,1],[3,2,3,1],[1,3,2,2],[1,0,2,0]],[[1,3,0,1],[2,2,3,1],[1,3,2,2],[1,0,2,0]],[[2,2,0,1],[2,2,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,0,1],[3,2,3,1],[1,3,2,2],[1,0,1,1]],[[1,3,0,1],[2,2,3,1],[1,3,2,2],[1,0,1,1]],[[2,2,0,1],[2,2,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,0,1],[3,2,3,1],[1,3,2,2],[0,2,1,0]],[[1,3,0,1],[2,2,3,1],[1,3,2,2],[0,2,1,0]],[[2,2,0,1],[2,2,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,0,1],[3,2,3,1],[1,3,2,2],[0,2,0,1]],[[1,3,0,1],[2,2,3,1],[1,3,2,2],[0,2,0,1]],[[2,2,0,1],[2,2,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,0,1],[3,2,3,1],[1,3,2,2],[0,1,2,0]],[[1,3,0,1],[2,2,3,1],[1,3,2,2],[0,1,2,0]],[[2,2,0,1],[2,2,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,0,1],[3,2,3,1],[1,3,2,2],[0,1,1,1]],[[1,3,0,1],[2,2,3,1],[1,3,2,2],[0,1,1,1]],[[2,2,0,1],[2,2,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,0,1],[2,2,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,0,1],[2,2,3,1],[1,3,2,1],[2,2,1,0]],[[1,2,0,1],[2,2,3,1],[1,4,2,1],[1,2,1,0]],[[1,2,0,1],[3,2,3,1],[1,3,2,1],[1,1,1,1]],[[1,3,0,1],[2,2,3,1],[1,3,2,1],[1,1,1,1]],[[2,2,0,1],[2,2,3,1],[1,3,2,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,1],[1,3,2,1],[1,0,2,1]],[[1,3,0,1],[2,2,3,1],[1,3,2,1],[1,0,2,1]],[[2,2,0,1],[2,2,3,1],[1,3,2,1],[1,0,2,1]],[[1,1,3,0],[1,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,2,0],[1,4,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,2,0],[1,3,4,2],[1,3,3,2],[0,0,0,1]],[[1,1,2,0],[1,3,3,3],[1,3,3,2],[0,0,0,1]],[[1,1,2,0],[1,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,0,1],[3,2,3,1],[1,3,2,1],[0,2,1,1]],[[1,3,0,1],[2,2,3,1],[1,3,2,1],[0,2,1,1]],[[2,2,0,1],[2,2,3,1],[1,3,2,1],[0,2,1,1]],[[1,2,0,1],[3,2,3,1],[1,3,2,1],[0,1,2,1]],[[1,3,0,1],[2,2,3,1],[1,3,2,1],[0,1,2,1]],[[2,2,0,1],[2,2,3,1],[1,3,2,1],[0,1,2,1]],[[1,2,0,1],[2,2,3,1],[1,3,2,0],[1,3,1,1]],[[1,2,0,1],[2,2,3,1],[1,3,2,0],[2,2,1,1]],[[1,2,0,1],[2,2,3,1],[1,4,2,0],[1,2,1,1]],[[1,2,0,1],[3,2,3,1],[1,3,1,2],[1,1,2,0]],[[1,3,0,1],[2,2,3,1],[1,3,1,2],[1,1,2,0]],[[2,2,0,1],[2,2,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,0,1],[3,2,3,1],[1,3,1,2],[0,2,2,0]],[[1,3,0,1],[2,2,3,1],[1,3,1,2],[0,2,2,0]],[[2,2,0,1],[2,2,3,1],[1,3,1,2],[0,2,2,0]],[[1,2,0,1],[2,2,3,1],[1,3,1,1],[1,3,2,0]],[[1,2,0,1],[2,2,3,1],[1,3,1,1],[2,2,2,0]],[[1,2,0,1],[2,2,3,1],[1,4,1,1],[1,2,2,0]],[[1,2,0,1],[3,2,3,1],[1,3,1,1],[1,1,2,1]],[[1,3,0,1],[2,2,3,1],[1,3,1,1],[1,1,2,1]],[[2,2,0,1],[2,2,3,1],[1,3,1,1],[1,1,2,1]],[[1,2,0,1],[3,2,3,1],[1,3,1,1],[0,2,2,1]],[[1,3,0,1],[2,2,3,1],[1,3,1,1],[0,2,2,1]],[[2,2,0,1],[2,2,3,1],[1,3,1,1],[0,2,2,1]],[[1,2,0,1],[2,2,3,1],[1,3,1,0],[1,2,3,1]],[[1,2,0,1],[2,2,3,1],[1,3,1,0],[1,3,2,1]],[[1,2,0,1],[2,2,3,1],[1,3,1,0],[2,2,2,1]],[[1,2,0,1],[2,2,3,1],[1,4,1,0],[1,2,2,1]],[[1,2,0,1],[3,2,3,1],[1,3,0,2],[1,1,2,1]],[[1,3,0,1],[2,2,3,1],[1,3,0,2],[1,1,2,1]],[[2,2,0,1],[2,2,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,0,1],[3,2,3,1],[1,3,0,2],[0,2,2,1]],[[1,3,0,1],[2,2,3,1],[1,3,0,2],[0,2,2,1]],[[2,2,0,1],[2,2,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,0,1],[3,2,3,1],[1,2,3,2],[1,1,1,0]],[[1,3,0,1],[2,2,3,1],[1,2,3,2],[1,1,1,0]],[[2,2,0,1],[2,2,3,1],[1,2,3,2],[1,1,1,0]],[[1,2,0,1],[3,2,3,1],[1,2,3,2],[1,1,0,1]],[[1,3,0,1],[2,2,3,1],[1,2,3,2],[1,1,0,1]],[[2,2,0,1],[2,2,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,0,1],[3,2,3,1],[1,2,3,2],[1,0,2,0]],[[1,3,0,1],[2,2,3,1],[1,2,3,2],[1,0,2,0]],[[2,2,0,1],[2,2,3,1],[1,2,3,2],[1,0,2,0]],[[1,2,0,1],[3,2,3,1],[1,2,3,2],[1,0,1,1]],[[1,3,0,1],[2,2,3,1],[1,2,3,2],[1,0,1,1]],[[2,2,0,1],[2,2,3,1],[1,2,3,2],[1,0,1,1]],[[1,2,0,1],[3,2,3,1],[1,2,3,2],[0,2,1,0]],[[1,3,0,1],[2,2,3,1],[1,2,3,2],[0,2,1,0]],[[2,2,0,1],[2,2,3,1],[1,2,3,2],[0,2,1,0]],[[1,2,0,1],[3,2,3,1],[1,2,3,2],[0,2,0,1]],[[1,3,0,1],[2,2,3,1],[1,2,3,2],[0,2,0,1]],[[2,2,0,1],[2,2,3,1],[1,2,3,2],[0,2,0,1]],[[1,2,0,1],[3,2,3,1],[1,2,3,2],[0,1,2,0]],[[1,3,0,1],[2,2,3,1],[1,2,3,2],[0,1,2,0]],[[2,2,0,1],[2,2,3,1],[1,2,3,2],[0,1,2,0]],[[1,2,0,1],[3,2,3,1],[1,2,3,2],[0,1,1,1]],[[1,3,0,1],[2,2,3,1],[1,2,3,2],[0,1,1,1]],[[2,2,0,1],[2,2,3,1],[1,2,3,2],[0,1,1,1]],[[1,2,0,1],[3,2,3,1],[1,2,3,2],[0,0,2,1]],[[1,3,0,1],[2,2,3,1],[1,2,3,2],[0,0,2,1]],[[2,2,0,1],[2,2,3,1],[1,2,3,2],[0,0,2,1]],[[1,2,0,1],[3,2,3,1],[1,2,3,1],[1,1,1,1]],[[1,3,0,1],[2,2,3,1],[1,2,3,1],[1,1,1,1]],[[2,2,0,1],[2,2,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,1],[1,2,3,1],[1,0,2,1]],[[1,3,0,1],[2,2,3,1],[1,2,3,1],[1,0,2,1]],[[2,2,0,1],[2,2,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,0,1],[3,2,3,1],[1,2,3,1],[0,2,1,1]],[[1,3,0,1],[2,2,3,1],[1,2,3,1],[0,2,1,1]],[[2,2,0,1],[2,2,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,0,1],[3,2,3,1],[1,2,3,1],[0,1,2,1]],[[1,3,0,1],[2,2,3,1],[1,2,3,1],[0,1,2,1]],[[2,2,0,1],[2,2,3,1],[1,2,3,1],[0,1,2,1]],[[1,2,0,1],[3,2,3,1],[1,1,3,2],[0,2,2,0]],[[1,3,0,1],[2,2,3,1],[1,1,3,2],[0,2,2,0]],[[2,2,0,1],[2,2,3,1],[1,1,3,2],[0,2,2,0]],[[1,2,0,1],[3,2,3,1],[1,1,3,2],[0,2,1,1]],[[1,3,0,1],[2,2,3,1],[1,1,3,2],[0,2,1,1]],[[2,2,0,1],[2,2,3,1],[1,1,3,2],[0,2,1,1]],[[1,2,0,1],[3,2,3,1],[1,1,3,1],[0,2,2,1]],[[1,3,0,1],[2,2,3,1],[1,1,3,1],[0,2,2,1]],[[2,2,0,1],[2,2,3,1],[1,1,3,1],[0,2,2,1]],[[1,2,0,1],[3,2,3,1],[1,0,3,2],[1,2,2,0]],[[1,3,0,1],[2,2,3,1],[1,0,3,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,1],[1,0,3,2],[1,2,2,0]],[[1,2,0,1],[3,2,3,1],[1,0,3,2],[1,2,1,1]],[[1,3,0,1],[2,2,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,3,0],[1,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[2,0,1,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[2,0,1,1],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,1,2,0],[1,4,3,2],[2,0,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[2,0,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[2,0,1,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,1,3],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,1,2],[0,3,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,1,2],[0,2,3,1]],[[1,1,2,0],[1,3,3,2],[2,0,1,2],[0,2,2,2]],[[1,1,3,0],[1,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,1,2,0],[1,4,3,2],[2,0,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[2,0,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[2,0,1,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,1,3],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,1,2],[1,1,3,1]],[[1,1,2,0],[1,3,3,2],[2,0,1,2],[1,1,2,2]],[[1,1,3,0],[1,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,0],[1,4,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[2,0,1,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,1,3],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,1,2],[1,2,1,2]],[[1,1,3,0],[1,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,0],[1,4,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,4,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,3],[2,0,1,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[2,0,1,3],[1,2,2,0]],[[1,1,3,0],[1,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[2,0,2,0],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[2,0,2,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[2,0,2,0],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,2,0],[1,4,3,2],[2,0,2,1],[1,2,2,0]],[[1,1,2,0],[1,3,4,2],[2,0,2,1],[1,2,2,0]],[[1,1,2,0],[1,3,3,3],[2,0,2,1],[1,2,2,0]],[[1,1,3,0],[1,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,1,2,0],[1,4,3,2],[2,0,2,2],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[2,0,2,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[2,0,2,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,2,3],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,2,2],[0,2,1,2]],[[1,1,3,0],[1,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,1,2,0],[1,4,3,2],[2,0,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,4,2],[2,0,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,3],[2,0,2,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[2,0,2,3],[0,2,2,0]],[[1,1,3,0],[1,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[2,0,2,2],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[2,0,2,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[2,0,2,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,2,3],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,2,2],[1,1,1,2]],[[1,1,3,0],[1,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,1,2,0],[1,4,3,2],[2,0,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[2,0,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,3],[2,0,2,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[2,0,2,3],[1,1,2,0]],[[1,1,3,0],[1,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,2,0],[1,4,3,2],[2,0,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,4,2],[2,0,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,3],[2,0,2,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[2,0,2,3],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[2,0,2,2],[1,2,0,2]],[[1,1,3,0],[1,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,2,0],[1,4,3,2],[2,0,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,4,2],[2,0,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,3],[2,0,2,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[2,0,2,3],[1,2,1,0]],[[2,2,0,1],[2,2,3,1],[1,0,3,2],[1,2,1,1]],[[1,2,0,1],[3,2,3,1],[1,0,3,1],[1,2,2,1]],[[1,3,0,1],[2,2,3,1],[1,0,3,1],[1,2,2,1]],[[2,2,0,1],[2,2,3,1],[1,0,3,1],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,2,0],[1,4,3,2],[2,0,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[2,0,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[2,0,3,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,4,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,3,0],[0,3,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,3,0],[0,2,3,1]],[[1,1,2,0],[1,3,3,2],[2,0,3,0],[0,2,2,2]],[[1,1,3,0],[1,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,2,0],[1,4,3,2],[2,0,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[2,0,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[2,0,3,0],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,4,0],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,3,0],[1,1,3,1]],[[1,1,2,0],[1,3,3,2],[2,0,3,0],[1,1,2,2]],[[1,1,3,0],[1,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,0],[1,4,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[2,0,3,0],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,4,0],[1,2,1,1]],[[1,1,3,0],[1,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,2,0],[1,4,3,2],[2,0,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[2,0,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[2,0,3,1],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,4,1],[0,2,1,1]],[[1,1,3,0],[1,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,1,2,0],[1,4,3,2],[2,0,3,1],[0,2,2,0]],[[1,1,2,0],[1,3,4,2],[2,0,3,1],[0,2,2,0]],[[1,1,2,0],[1,3,3,3],[2,0,3,1],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[2,0,4,1],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[2,0,3,1],[0,3,2,0]],[[1,1,2,0],[1,3,3,2],[2,0,3,1],[0,2,3,0]],[[1,1,3,0],[1,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[2,0,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[2,0,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[2,0,3,1],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,4,1],[1,1,1,1]],[[1,1,3,0],[1,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,1,2,0],[1,4,3,2],[2,0,3,1],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[2,0,3,1],[1,1,2,0]],[[1,1,2,0],[1,3,3,3],[2,0,3,1],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[2,0,4,1],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[2,0,3,1],[1,1,3,0]],[[1,1,3,0],[1,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,2,0],[1,4,3,2],[2,0,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,4,2],[2,0,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,3,3],[2,0,3,1],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[2,0,4,1],[1,2,0,1]],[[1,1,3,0],[1,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,2,0],[1,4,3,2],[2,0,3,1],[1,2,1,0]],[[1,1,2,0],[1,3,4,2],[2,0,3,1],[1,2,1,0]],[[1,1,2,0],[1,3,3,3],[2,0,3,1],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[2,0,4,1],[1,2,1,0]],[[1,1,3,0],[1,3,3,2],[2,0,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,4,2],[2,0,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,3],[2,0,3,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,3,3],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[2,0,3,2],[0,0,2,2]],[[1,1,3,0],[1,3,3,2],[2,0,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[2,0,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[2,0,3,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,3,3],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,3,2],[0,1,1,2]],[[1,1,3,0],[1,3,3,2],[2,0,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[2,0,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[2,0,3,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,0,1],[3,2,3,1],[0,3,3,2],[1,2,0,0]],[[1,3,0,1],[2,2,3,1],[0,3,3,2],[1,2,0,0]],[[2,2,0,1],[2,2,3,1],[0,3,3,2],[1,2,0,0]],[[1,1,3,0],[1,3,3,2],[2,0,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,4,2],[2,0,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,3],[2,0,3,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,3,3],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[2,0,3,2],[1,0,1,2]],[[1,1,3,0],[1,3,3,2],[2,0,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[2,0,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,3],[2,0,3,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,1,3,0],[1,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[2,1,0,1],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[2,1,0,1],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[2,1,0,1],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,0],[1,4,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[2,1,0,2],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,0,3],[0,2,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,0,2],[0,3,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,0,2],[0,2,3,1]],[[1,1,2,0],[1,3,3,2],[2,1,0,2],[0,2,2,2]],[[1,1,3,0],[1,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,1,2,0],[1,4,3,2],[2,1,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[2,1,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[2,1,0,2],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,0,3],[1,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,0,2],[1,1,3,1]],[[1,1,2,0],[1,3,3,2],[2,1,0,2],[1,1,2,2]],[[1,1,3,0],[1,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,1,2,0],[1,4,3,2],[2,1,0,2],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[2,1,0,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[2,1,0,2],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[2,1,0,3],[1,2,1,1]],[[1,1,2,0],[1,3,3,2],[2,1,0,2],[1,2,1,2]],[[1,1,3,0],[1,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,2,0],[1,4,3,2],[2,1,0,2],[1,2,2,0]],[[1,1,2,0],[1,3,4,2],[2,1,0,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,3],[2,1,0,2],[1,2,2,0]],[[1,1,2,0],[1,3,3,2],[2,1,0,3],[1,2,2,0]],[[1,1,3,0],[1,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,2,0],[1,4,3,2],[2,1,1,0],[1,2,2,1]],[[1,1,2,0],[1,3,4,2],[2,1,1,0],[1,2,2,1]],[[1,1,2,0],[1,3,3,3],[2,1,1,0],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,1,2,0],[1,4,3,2],[2,1,1,1],[1,2,2,0]],[[1,1,2,0],[1,3,4,2],[2,1,1,1],[1,2,2,0]],[[1,1,2,0],[1,3,3,3],[2,1,1,1],[1,2,2,0]],[[1,1,3,0],[1,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,1,2,0],[1,4,3,2],[2,1,1,2],[0,1,2,1]],[[1,1,2,0],[1,3,4,2],[2,1,1,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,3],[2,1,1,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,1,3],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,1,2],[0,1,3,1]],[[1,1,2,0],[1,3,3,2],[2,1,1,2],[0,1,2,2]],[[1,1,3,0],[1,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,1,2,0],[1,4,3,2],[2,1,1,2],[1,0,2,1]],[[1,1,2,0],[1,3,4,2],[2,1,1,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,3],[2,1,1,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,1,3],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,1,2],[1,0,3,1]],[[1,1,2,0],[1,3,3,2],[2,1,1,2],[1,0,2,2]],[[1,1,3,0],[1,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,2,0],[1,4,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,2,0],[1,3,4,2],[2,1,1,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,3],[2,1,1,2],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[2,1,1,3],[1,2,0,1]],[[1,1,2,0],[1,3,3,2],[2,1,1,2],[1,2,0,2]],[[1,1,3,0],[1,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,2,0],[1,4,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,2,0],[1,3,4,2],[2,1,1,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,3],[2,1,1,2],[1,2,1,0]],[[1,1,2,0],[1,3,3,2],[2,1,1,3],[1,2,1,0]],[[1,1,3,0],[1,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,2,0],[1,4,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,2,0],[1,3,4,2],[2,1,2,0],[1,2,1,1]],[[1,1,2,0],[1,3,3,3],[2,1,2,0],[1,2,1,1]],[[1,1,3,0],[1,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,0],[1,4,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,4,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,0],[1,3,3,3],[2,1,2,1],[1,2,0,1]],[[1,1,3,0],[1,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,1,2,0],[1,4,3,2],[2,1,2,1],[1,2,1,0]],[[1,1,2,0],[1,3,4,2],[2,1,2,1],[1,2,1,0]],[[1,1,2,0],[1,3,3,3],[2,1,2,1],[1,2,1,0]],[[1,2,0,1],[3,2,3,1],[0,3,2,2],[1,2,1,0]],[[1,3,0,1],[2,2,3,1],[0,3,2,2],[1,2,1,0]],[[2,2,0,1],[2,2,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,3,0],[1,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,2,0],[1,4,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,2,0],[1,3,4,2],[2,1,2,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,3],[2,1,2,2],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,2,3],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,2,2],[0,0,2,2]],[[1,1,3,0],[1,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,1,2,0],[1,4,3,2],[2,1,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[2,1,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[2,1,2,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,1,2,3],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,1,2,2],[0,1,1,2]],[[1,1,3,0],[1,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[2,1,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[2,1,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[2,1,2,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[2,1,2,3],[0,1,2,0]],[[1,1,3,0],[1,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,2,0],[1,4,3,2],[2,1,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,4,2],[2,1,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,3],[2,1,2,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[2,1,2,3],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[2,1,2,2],[0,2,0,2]],[[1,1,3,0],[1,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[2,1,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[2,1,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,3],[2,1,2,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[2,1,2,3],[0,2,1,0]],[[1,2,0,1],[3,2,3,1],[0,3,2,2],[1,2,0,1]],[[1,3,0,1],[2,2,3,1],[0,3,2,2],[1,2,0,1]],[[2,2,0,1],[2,2,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,3,0],[1,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,2,0],[1,4,3,2],[2,1,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,4,2],[2,1,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,3],[2,1,2,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[2,1,2,3],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[2,1,2,2],[1,0,1,2]],[[1,1,3,0],[1,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,1,2,0],[1,4,3,2],[2,1,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[2,1,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,3],[2,1,2,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[2,1,2,3],[1,0,2,0]],[[1,1,3,0],[1,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,2,0],[1,4,3,2],[2,1,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,4,2],[2,1,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,3],[2,1,2,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[2,1,2,3],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[2,1,2,2],[1,1,0,2]],[[1,1,3,0],[1,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,2,0],[1,4,3,2],[2,1,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,4,2],[2,1,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,3],[2,1,2,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,2],[2,1,2,3],[1,1,1,0]],[[1,2,0,1],[3,2,3,1],[0,3,2,2],[1,1,2,0]],[[1,3,0,1],[2,2,3,1],[0,3,2,2],[1,1,2,0]],[[2,2,0,1],[2,2,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,0,1],[3,2,3,1],[0,3,2,2],[1,1,1,1]],[[1,3,0,1],[2,2,3,1],[0,3,2,2],[1,1,1,1]],[[2,2,0,1],[2,2,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,0,1],[3,2,3,1],[0,3,2,1],[1,2,1,1]],[[1,3,0,1],[2,2,3,1],[0,3,2,1],[1,2,1,1]],[[2,2,0,1],[2,2,3,1],[0,3,2,1],[1,2,1,1]],[[1,2,0,1],[3,2,3,1],[0,3,2,1],[1,1,2,1]],[[1,3,0,1],[2,2,3,1],[0,3,2,1],[1,1,2,1]],[[2,2,0,1],[2,2,3,1],[0,3,2,1],[1,1,2,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,2,0],[1,4,3,2],[2,1,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,4,2],[2,1,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,3],[2,1,3,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,4,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,3,0],[0,1,3,1]],[[1,1,2,0],[1,3,3,2],[2,1,3,0],[0,1,2,2]],[[1,1,3,0],[1,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,0],[1,4,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[2,1,3,0],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[2,1,4,0],[0,2,1,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,2,0],[1,4,3,2],[2,1,3,0],[1,0,2,1]],[[1,1,2,0],[1,3,4,2],[2,1,3,0],[1,0,2,1]],[[1,1,2,0],[1,3,3,3],[2,1,3,0],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,4,0],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,3,0],[1,0,3,1]],[[1,1,2,0],[1,3,3,2],[2,1,3,0],[1,0,2,2]],[[1,1,3,0],[1,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[2,1,3,0],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[2,1,3,0],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[2,1,3,0],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,1,4,0],[1,1,1,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,1,2,0],[1,4,3,2],[2,1,3,0],[1,2,1,0]],[[1,1,2,0],[1,3,4,2],[2,1,3,0],[1,2,1,0]],[[1,2,0,1],[3,2,3,1],[0,3,1,2],[1,2,2,0]],[[1,3,0,1],[2,2,3,1],[0,3,1,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,1],[0,3,1,2],[1,2,2,0]],[[1,2,0,1],[3,2,3,1],[0,3,1,1],[1,2,2,1]],[[1,3,0,1],[2,2,3,1],[0,3,1,1],[1,2,2,1]],[[2,2,0,1],[2,2,3,1],[0,3,1,1],[1,2,2,1]],[[1,2,0,1],[3,2,3,1],[0,3,0,2],[1,2,2,1]],[[1,3,0,1],[2,2,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,1,2,0],[1,4,3,2],[2,1,3,1],[0,0,2,1]],[[1,1,2,0],[1,3,4,2],[2,1,3,1],[0,0,2,1]],[[1,1,2,0],[1,3,3,3],[2,1,3,1],[0,0,2,1]],[[1,1,2,0],[1,3,3,2],[2,1,4,1],[0,0,2,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,1,2,0],[1,4,3,2],[2,1,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[2,1,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[2,1,3,1],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,1,4,1],[0,1,1,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[2,1,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[2,1,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[2,1,3,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[2,1,4,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[2,1,3,1],[0,1,3,0]],[[1,1,3,0],[1,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,1,2,0],[1,4,3,2],[2,1,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,4,2],[2,1,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,3,3],[2,1,3,1],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[2,1,4,1],[0,2,0,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[2,1,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[2,1,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,3,3],[2,1,3,1],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[2,1,4,1],[0,2,1,0]],[[2,2,0,1],[2,2,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,2,0],[1,4,3,2],[2,1,3,1],[1,0,1,1]],[[1,1,2,0],[1,3,4,2],[2,1,3,1],[1,0,1,1]],[[1,1,2,0],[1,3,3,3],[2,1,3,1],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[2,1,4,1],[1,0,1,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,1,2,0],[1,4,3,2],[2,1,3,1],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[2,1,3,1],[1,0,2,0]],[[1,1,2,0],[1,3,3,3],[2,1,3,1],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[2,1,4,1],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[2,1,3,1],[1,0,3,0]],[[1,1,3,0],[1,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,2,0],[1,4,3,2],[2,1,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,4,2],[2,1,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,3,3],[2,1,3,1],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[2,1,4,1],[1,1,0,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,1,2,0],[1,4,3,2],[2,1,3,1],[1,1,1,0]],[[1,1,2,0],[1,3,4,2],[2,1,3,1],[1,1,1,0]],[[1,1,2,0],[1,3,3,3],[2,1,3,1],[1,1,1,0]],[[1,1,2,0],[1,3,3,2],[2,1,4,1],[1,1,1,0]],[[1,2,0,1],[3,2,3,1],[0,2,3,2],[1,2,1,0]],[[1,3,0,1],[2,2,3,1],[0,2,3,2],[1,2,1,0]],[[2,2,0,1],[2,2,3,1],[0,2,3,2],[1,2,1,0]],[[1,2,0,1],[3,2,3,1],[0,2,3,2],[1,2,0,1]],[[1,3,0,1],[2,2,3,1],[0,2,3,2],[1,2,0,1]],[[2,2,0,1],[2,2,3,1],[0,2,3,2],[1,2,0,1]],[[1,2,0,1],[3,2,3,1],[0,2,3,2],[1,1,2,0]],[[1,3,0,1],[2,2,3,1],[0,2,3,2],[1,1,2,0]],[[2,2,0,1],[2,2,3,1],[0,2,3,2],[1,1,2,0]],[[1,2,0,1],[3,2,3,1],[0,2,3,2],[1,1,1,1]],[[1,3,0,1],[2,2,3,1],[0,2,3,2],[1,1,1,1]],[[2,2,0,1],[2,2,3,1],[0,2,3,2],[1,1,1,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,2,0],[1,4,3,2],[2,1,3,2],[0,1,0,1]],[[1,1,2,0],[1,3,4,2],[2,1,3,2],[0,1,0,1]],[[1,1,2,0],[1,3,3,3],[2,1,3,2],[0,1,0,1]],[[1,1,2,0],[1,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,0,1],[3,2,3,1],[0,2,3,1],[1,2,1,1]],[[1,3,0,1],[2,2,3,1],[0,2,3,1],[1,2,1,1]],[[2,2,0,1],[2,2,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,0,1],[3,2,3,1],[0,2,3,1],[1,1,2,1]],[[1,3,0,1],[2,2,3,1],[0,2,3,1],[1,1,2,1]],[[2,2,0,1],[2,2,3,1],[0,2,3,1],[1,1,2,1]],[[1,2,0,1],[3,2,3,1],[0,1,3,2],[1,2,2,0]],[[1,3,0,1],[2,2,3,1],[0,1,3,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,1],[0,1,3,2],[1,2,2,0]],[[1,2,0,1],[3,2,3,1],[0,1,3,2],[1,2,1,1]],[[1,3,0,1],[2,2,3,1],[0,1,3,2],[1,2,1,1]],[[2,2,0,1],[2,2,3,1],[0,1,3,2],[1,2,1,1]],[[1,2,0,1],[3,2,3,1],[0,1,3,1],[1,2,2,1]],[[1,3,0,1],[2,2,3,1],[0,1,3,1],[1,2,2,1]],[[2,2,0,1],[2,2,3,1],[0,1,3,1],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,2,0],[1,4,3,2],[2,1,3,2],[1,0,0,1]],[[1,1,2,0],[1,3,4,2],[2,1,3,2],[1,0,0,1]],[[1,1,2,0],[1,3,3,3],[2,1,3,2],[1,0,0,1]],[[1,1,2,0],[1,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,0,1],[2,2,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,0,1],[2,2,3,0],[2,4,3,2],[1,1,0,0]],[[1,2,0,1],[2,2,3,0],[3,3,3,2],[1,1,0,0]],[[1,2,0,1],[3,2,3,0],[2,3,3,2],[1,1,0,0]],[[2,2,0,1],[2,2,3,0],[2,3,3,2],[1,1,0,0]],[[1,2,0,1],[2,2,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,0,1],[2,2,3,0],[3,3,3,2],[0,2,0,0]],[[1,2,0,1],[3,2,3,0],[2,3,3,2],[0,2,0,0]],[[2,2,0,1],[2,2,3,0],[2,3,3,2],[0,2,0,0]],[[1,1,3,0],[1,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,1,2,0],[1,4,3,2],[2,2,0,1],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[2,2,0,1],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[2,2,0,1],[0,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,1,2,0],[1,4,3,2],[2,2,0,1],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[2,2,0,1],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[2,2,0,1],[1,1,2,1]],[[1,1,3,0],[1,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,0],[1,4,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,0],[1,3,4,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,3],[2,2,0,2],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,2,0,3],[0,1,2,1]],[[1,1,2,0],[1,3,3,2],[2,2,0,2],[0,1,3,1]],[[1,1,2,0],[1,3,3,2],[2,2,0,2],[0,1,2,2]],[[1,1,3,0],[1,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,2,0],[1,4,3,2],[2,2,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[2,2,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[2,2,0,2],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[2,2,0,3],[0,2,1,1]],[[1,1,2,0],[1,3,3,2],[2,2,0,2],[0,2,1,2]],[[1,1,3,0],[1,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,2,0],[1,4,3,2],[2,2,0,2],[0,2,2,0]],[[1,1,2,0],[1,3,4,2],[2,2,0,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,3],[2,2,0,2],[0,2,2,0]],[[1,1,2,0],[1,3,3,2],[2,2,0,3],[0,2,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,0],[1,4,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,4,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,3],[2,2,0,2],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[2,2,0,3],[1,0,2,1]],[[1,1,2,0],[1,3,3,2],[2,2,0,2],[1,0,3,1]],[[1,1,2,0],[1,3,3,2],[2,2,0,2],[1,0,2,2]],[[1,1,3,0],[1,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[2,2,0,2],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[2,2,0,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[2,2,0,2],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,2,0,3],[1,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,2,0,2],[1,1,1,2]],[[1,1,3,0],[1,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,1,2,0],[1,4,3,2],[2,2,0,2],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[2,2,0,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,3],[2,2,0,2],[1,1,2,0]],[[1,1,2,0],[1,3,3,2],[2,2,0,3],[1,1,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,2,0],[1,4,3,2],[2,2,1,0],[0,2,2,1]],[[1,1,2,0],[1,3,4,2],[2,2,1,0],[0,2,2,1]],[[1,1,2,0],[1,3,3,3],[2,2,1,0],[0,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,1,2,0],[1,4,3,2],[2,2,1,0],[1,1,2,1]],[[1,1,2,0],[1,3,4,2],[2,2,1,0],[1,1,2,1]],[[1,1,2,0],[1,3,3,3],[2,2,1,0],[1,1,2,1]],[[1,1,3,0],[1,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,2,0],[1,4,3,2],[2,2,1,1],[0,2,2,0]],[[1,1,2,0],[1,3,4,2],[2,2,1,1],[0,2,2,0]],[[1,1,2,0],[1,3,3,3],[2,2,1,1],[0,2,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,2,0],[1,4,3,2],[2,2,1,1],[1,1,2,0]],[[1,1,2,0],[1,3,4,2],[2,2,1,1],[1,1,2,0]],[[1,1,2,0],[1,3,3,3],[2,2,1,1],[1,1,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,0],[1,4,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[2,2,1,2],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,2,1,3],[0,1,1,1]],[[1,1,2,0],[1,3,3,2],[2,2,1,2],[0,1,1,2]],[[1,1,3,0],[1,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[2,2,1,2],[0,1,2,0]],[[1,1,2,0],[1,3,3,2],[2,2,1,3],[0,1,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,0],[1,4,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,0],[1,3,4,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,3],[2,2,1,2],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[2,2,1,3],[0,2,0,1]],[[1,1,2,0],[1,3,3,2],[2,2,1,2],[0,2,0,2]],[[1,1,3,0],[1,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,3],[2,2,1,2],[0,2,1,0]],[[1,1,2,0],[1,3,3,2],[2,2,1,3],[0,2,1,0]],[[1,1,3,0],[1,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,0],[1,4,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,0],[1,3,4,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,3],[2,2,1,2],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[2,2,1,3],[1,0,1,1]],[[1,1,2,0],[1,3,3,2],[2,2,1,2],[1,0,1,2]],[[1,1,3,0],[1,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,0],[1,4,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,3],[2,2,1,2],[1,0,2,0]],[[1,1,2,0],[1,3,3,2],[2,2,1,3],[1,0,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,0],[1,4,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,0],[1,3,4,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,3],[2,2,1,2],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[2,2,1,3],[1,1,0,1]],[[1,1,2,0],[1,3,3,2],[2,2,1,2],[1,1,0,2]],[[1,1,3,0],[1,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,0],[1,4,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,0],[1,3,4,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,3],[2,2,1,2],[1,1,1,0]],[[1,1,2,0],[1,3,3,2],[2,2,1,3],[1,1,1,0]],[[1,1,3,0],[1,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,1,2,0],[1,4,3,2],[2,2,1,2],[1,2,0,0]],[[1,1,2,0],[1,3,4,2],[2,2,1,2],[1,2,0,0]],[[1,1,2,0],[1,3,3,3],[2,2,1,2],[1,2,0,0]],[[1,2,0,1],[2,2,3,0],[2,3,2,2],[2,2,0,0]],[[1,2,0,1],[2,2,3,0],[2,4,2,2],[1,2,0,0]],[[1,2,0,1],[2,2,3,0],[3,3,2,2],[1,2,0,0]],[[1,2,0,1],[3,2,3,0],[2,3,2,2],[1,2,0,0]],[[2,2,0,1],[2,2,3,0],[2,3,2,2],[1,2,0,0]],[[1,2,0,1],[2,2,3,0],[2,3,2,2],[2,1,1,0]],[[1,2,0,1],[2,2,3,0],[2,4,2,2],[1,1,1,0]],[[1,2,0,1],[2,2,3,0],[3,3,2,2],[1,1,1,0]],[[1,2,0,1],[3,2,3,0],[2,3,2,2],[1,1,1,0]],[[2,2,0,1],[2,2,3,0],[2,3,2,2],[1,1,1,0]],[[1,1,3,0],[1,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,2,0],[1,4,3,2],[2,2,2,0],[0,1,2,1]],[[1,1,2,0],[1,3,4,2],[2,2,2,0],[0,1,2,1]],[[1,1,2,0],[1,3,3,3],[2,2,2,0],[0,1,2,1]],[[1,1,3,0],[1,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,1,2,0],[1,4,3,2],[2,2,2,0],[0,2,1,1]],[[1,1,2,0],[1,3,4,2],[2,2,2,0],[0,2,1,1]],[[1,1,2,0],[1,3,3,3],[2,2,2,0],[0,2,1,1]],[[1,1,3,0],[1,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,1,2,0],[1,4,3,2],[2,2,2,0],[1,0,2,1]],[[1,1,2,0],[1,3,4,2],[2,2,2,0],[1,0,2,1]],[[1,1,2,0],[1,3,3,3],[2,2,2,0],[1,0,2,1]],[[1,1,3,0],[1,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,1,2,0],[1,4,3,2],[2,2,2,0],[1,1,1,1]],[[1,1,2,0],[1,3,4,2],[2,2,2,0],[1,1,1,1]],[[1,1,2,0],[1,3,3,3],[2,2,2,0],[1,1,1,1]],[[1,1,3,0],[1,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,1,2,0],[1,4,3,2],[2,2,2,0],[1,2,0,1]],[[1,1,2,0],[1,3,4,2],[2,2,2,0],[1,2,0,1]],[[1,2,0,1],[2,2,3,0],[2,3,2,2],[2,1,0,1]],[[1,2,0,1],[2,2,3,0],[2,4,2,2],[1,1,0,1]],[[1,2,0,1],[2,2,3,0],[3,3,2,2],[1,1,0,1]],[[1,2,0,1],[3,2,3,0],[2,3,2,2],[1,1,0,1]],[[2,2,0,1],[2,2,3,0],[2,3,2,2],[1,1,0,1]],[[1,1,3,0],[1,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,1,2,0],[1,4,3,2],[2,2,2,1],[0,1,1,1]],[[1,1,2,0],[1,3,4,2],[2,2,2,1],[0,1,1,1]],[[1,1,2,0],[1,3,3,3],[2,2,2,1],[0,1,1,1]],[[1,1,3,0],[1,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[2,2,2,1],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[2,2,2,1],[0,1,2,0]],[[1,1,2,0],[1,3,3,3],[2,2,2,1],[0,1,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,1,2,0],[1,4,3,2],[2,2,2,1],[0,2,0,1]],[[1,1,2,0],[1,3,4,2],[2,2,2,1],[0,2,0,1]],[[1,1,2,0],[1,3,3,3],[2,2,2,1],[0,2,0,1]],[[1,1,3,0],[1,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[2,2,2,1],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[2,2,2,1],[0,2,1,0]],[[1,1,2,0],[1,3,3,3],[2,2,2,1],[0,2,1,0]],[[1,2,0,1],[2,2,3,0],[2,3,2,2],[2,0,2,0]],[[1,2,0,1],[2,2,3,0],[2,4,2,2],[1,0,2,0]],[[1,2,0,1],[2,2,3,0],[3,3,2,2],[1,0,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,0],[1,4,3,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,0],[1,3,4,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,0],[1,3,3,3],[2,2,2,1],[1,0,1,1]],[[1,1,3,0],[1,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,1,2,0],[1,4,3,2],[2,2,2,1],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[2,2,2,1],[1,0,2,0]],[[1,1,2,0],[1,3,3,3],[2,2,2,1],[1,0,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,2,0],[1,4,3,2],[2,2,2,1],[1,1,0,1]],[[1,1,2,0],[1,3,4,2],[2,2,2,1],[1,1,0,1]],[[1,1,2,0],[1,3,3,3],[2,2,2,1],[1,1,0,1]],[[1,1,3,0],[1,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,1,2,0],[1,4,3,2],[2,2,2,1],[1,1,1,0]],[[1,1,2,0],[1,3,4,2],[2,2,2,1],[1,1,1,0]],[[1,1,2,0],[1,3,3,3],[2,2,2,1],[1,1,1,0]],[[1,2,0,1],[3,2,3,0],[2,3,2,2],[1,0,2,0]],[[2,2,0,1],[2,2,3,0],[2,3,2,2],[1,0,2,0]],[[1,2,0,1],[2,2,3,0],[2,3,2,2],[2,0,1,1]],[[1,2,0,1],[2,2,3,0],[2,4,2,2],[1,0,1,1]],[[1,1,3,0],[1,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,2,0],[1,4,3,2],[2,2,2,1],[1,2,0,0]],[[1,1,2,0],[1,3,4,2],[2,2,2,1],[1,2,0,0]],[[1,1,2,0],[1,3,3,3],[2,2,2,1],[1,2,0,0]],[[1,2,0,1],[2,2,3,0],[3,3,2,2],[1,0,1,1]],[[1,2,0,1],[3,2,3,0],[2,3,2,2],[1,0,1,1]],[[2,2,0,1],[2,2,3,0],[2,3,2,2],[1,0,1,1]],[[1,2,0,1],[2,2,3,0],[2,3,2,2],[0,3,1,0]],[[1,2,0,1],[2,2,3,0],[2,4,2,2],[0,2,1,0]],[[1,2,0,1],[2,2,3,0],[3,3,2,2],[0,2,1,0]],[[1,2,0,1],[3,2,3,0],[2,3,2,2],[0,2,1,0]],[[2,2,0,1],[2,2,3,0],[2,3,2,2],[0,2,1,0]],[[1,2,0,1],[2,2,3,0],[2,3,2,2],[0,3,0,1]],[[1,2,0,1],[2,2,3,0],[2,4,2,2],[0,2,0,1]],[[1,2,0,1],[2,2,3,0],[3,3,2,2],[0,2,0,1]],[[1,2,0,1],[3,2,3,0],[2,3,2,2],[0,2,0,1]],[[2,2,0,1],[2,2,3,0],[2,3,2,2],[0,2,0,1]],[[1,2,0,1],[2,2,3,0],[2,4,2,2],[0,1,2,0]],[[1,2,0,1],[2,2,3,0],[3,3,2,2],[0,1,2,0]],[[1,2,0,1],[3,2,3,0],[2,3,2,2],[0,1,2,0]],[[2,2,0,1],[2,2,3,0],[2,3,2,2],[0,1,2,0]],[[1,2,0,1],[2,2,3,0],[2,4,2,2],[0,1,1,1]],[[1,2,0,1],[2,2,3,0],[3,3,2,2],[0,1,1,1]],[[1,2,0,1],[3,2,3,0],[2,3,2,2],[0,1,1,1]],[[2,2,0,1],[2,2,3,0],[2,3,2,2],[0,1,1,1]],[[1,2,0,1],[2,2,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,0,1],[2,2,3,0],[2,4,2,1],[1,2,0,1]],[[1,2,0,1],[2,2,3,0],[3,3,2,1],[1,2,0,1]],[[1,2,0,1],[3,2,3,0],[2,3,2,1],[1,2,0,1]],[[2,2,0,1],[2,2,3,0],[2,3,2,1],[1,2,0,1]],[[1,2,0,1],[2,2,3,0],[2,3,2,1],[2,1,1,1]],[[1,2,0,1],[2,2,3,0],[2,4,2,1],[1,1,1,1]],[[1,2,0,1],[2,2,3,0],[3,3,2,1],[1,1,1,1]],[[1,2,0,1],[3,2,3,0],[2,3,2,1],[1,1,1,1]],[[2,2,0,1],[2,2,3,0],[2,3,2,1],[1,1,1,1]],[[1,2,0,1],[2,2,3,0],[2,3,2,1],[2,0,2,1]],[[1,2,0,1],[2,2,3,0],[2,4,2,1],[1,0,2,1]],[[1,2,0,1],[2,2,3,0],[3,3,2,1],[1,0,2,1]],[[1,2,0,1],[3,2,3,0],[2,3,2,1],[1,0,2,1]],[[2,2,0,1],[2,2,3,0],[2,3,2,1],[1,0,2,1]],[[1,2,0,1],[2,2,3,0],[2,3,2,1],[0,3,1,1]],[[1,2,0,1],[2,2,3,0],[2,4,2,1],[0,2,1,1]],[[1,2,0,1],[2,2,3,0],[3,3,2,1],[0,2,1,1]],[[1,2,0,1],[3,2,3,0],[2,3,2,1],[0,2,1,1]],[[2,2,0,1],[2,2,3,0],[2,3,2,1],[0,2,1,1]],[[1,2,0,1],[2,2,3,0],[2,4,2,1],[0,1,2,1]],[[1,2,0,1],[2,2,3,0],[3,3,2,1],[0,1,2,1]],[[1,2,0,1],[3,2,3,0],[2,3,2,1],[0,1,2,1]],[[2,2,0,1],[2,2,3,0],[2,3,2,1],[0,1,2,1]],[[1,2,0,1],[2,2,3,0],[2,3,1,2],[2,1,2,0]],[[1,2,0,1],[2,2,3,0],[2,4,1,2],[1,1,2,0]],[[1,2,0,1],[2,2,3,0],[3,3,1,2],[1,1,2,0]],[[1,2,0,1],[3,2,3,0],[2,3,1,2],[1,1,2,0]],[[2,2,0,1],[2,2,3,0],[2,3,1,2],[1,1,2,0]],[[1,2,0,1],[2,2,3,0],[2,3,1,2],[0,2,3,0]],[[1,2,0,1],[2,2,3,0],[2,3,1,2],[0,3,2,0]],[[1,2,0,1],[2,2,3,0],[2,4,1,2],[0,2,2,0]],[[1,2,0,1],[2,2,3,0],[3,3,1,2],[0,2,2,0]],[[1,2,0,1],[3,2,3,0],[2,3,1,2],[0,2,2,0]],[[2,2,0,1],[2,2,3,0],[2,3,1,2],[0,2,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,2,0],[1,4,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,2,0],[1,3,4,2],[2,2,3,0],[0,1,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,2,0],[1,4,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,2,0],[1,3,4,2],[2,2,3,0],[0,2,1,0]],[[1,2,0,1],[2,2,3,0],[2,3,1,1],[2,1,2,1]],[[1,2,0,1],[2,2,3,0],[2,4,1,1],[1,1,2,1]],[[1,2,0,1],[2,2,3,0],[3,3,1,1],[1,1,2,1]],[[1,2,0,1],[3,2,3,0],[2,3,1,1],[1,1,2,1]],[[2,2,0,1],[2,2,3,0],[2,3,1,1],[1,1,2,1]],[[1,2,0,1],[2,2,3,0],[2,3,1,1],[0,2,2,2]],[[1,2,0,1],[2,2,3,0],[2,3,1,1],[0,2,3,1]],[[1,1,3,0],[1,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,2,0],[1,4,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,2,0],[1,3,4,2],[2,2,3,0],[1,0,2,0]],[[1,1,3,0],[1,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,2,0],[1,4,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,2,0],[1,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,0,1],[2,2,3,0],[2,3,1,1],[0,3,2,1]],[[1,2,0,1],[2,2,3,0],[2,4,1,1],[0,2,2,1]],[[1,2,0,1],[2,2,3,0],[3,3,1,1],[0,2,2,1]],[[1,2,0,1],[3,2,3,0],[2,3,1,1],[0,2,2,1]],[[2,2,0,1],[2,2,3,0],[2,3,1,1],[0,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,1,2,0],[1,4,3,2],[2,2,3,0],[1,2,0,0]],[[1,1,2,0],[1,3,4,2],[2,2,3,0],[1,2,0,0]],[[1,2,0,1],[2,2,3,0],[2,3,0,2],[1,3,2,0]],[[1,2,0,1],[2,2,3,0],[2,3,0,2],[2,2,2,0]],[[1,2,0,1],[2,2,3,0],[3,3,0,2],[1,2,2,0]],[[1,2,0,1],[3,2,3,0],[2,3,0,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,0],[2,3,0,2],[1,2,2,0]],[[1,2,0,1],[2,2,3,0],[2,3,0,2],[2,1,2,1]],[[1,2,0,1],[2,2,3,0],[2,4,0,2],[1,1,2,1]],[[1,2,0,1],[2,2,3,0],[3,3,0,2],[1,1,2,1]],[[1,2,0,1],[3,2,3,0],[2,3,0,2],[1,1,2,1]],[[2,2,0,1],[2,2,3,0],[2,3,0,2],[1,1,2,1]],[[1,2,0,1],[2,2,3,0],[2,3,0,2],[0,2,2,2]],[[1,2,0,1],[2,2,3,0],[2,3,0,2],[0,2,3,1]],[[1,2,0,1],[2,2,3,0],[2,3,0,2],[0,3,2,1]],[[1,2,0,1],[2,2,3,0],[2,4,0,2],[0,2,2,1]],[[1,2,0,1],[2,2,3,0],[3,3,0,2],[0,2,2,1]],[[1,2,0,1],[3,2,3,0],[2,3,0,2],[0,2,2,1]],[[2,2,0,1],[2,2,3,0],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[2,2,3,0],[2,3,0,1],[1,3,2,1]],[[1,2,0,1],[2,2,3,0],[2,3,0,1],[2,2,2,1]],[[1,2,0,1],[2,2,3,0],[3,3,0,1],[1,2,2,1]],[[1,2,0,1],[3,2,3,0],[2,3,0,1],[1,2,2,1]],[[2,2,0,1],[2,2,3,0],[2,3,0,1],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,2,0],[1,4,3,2],[2,2,3,1],[0,2,0,0]],[[1,1,2,0],[1,3,4,2],[2,2,3,1],[0,2,0,0]],[[1,1,2,0],[1,3,3,3],[2,2,3,1],[0,2,0,0]],[[1,1,3,0],[1,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,1,2,0],[1,4,3,2],[2,2,3,1],[1,1,0,0]],[[1,1,2,0],[1,3,4,2],[2,2,3,1],[1,1,0,0]],[[1,1,2,0],[1,3,3,3],[2,2,3,1],[1,1,0,0]],[[1,2,0,1],[2,2,3,0],[2,2,2,2],[1,3,1,0]],[[1,2,0,1],[2,2,3,0],[2,2,2,2],[2,2,1,0]],[[1,2,0,1],[2,2,3,0],[3,2,2,2],[1,2,1,0]],[[1,2,0,1],[3,2,3,0],[2,2,2,2],[1,2,1,0]],[[2,2,0,1],[2,2,3,0],[2,2,2,2],[1,2,1,0]],[[1,2,0,1],[2,2,3,0],[2,2,2,2],[1,3,0,1]],[[1,2,0,1],[2,2,3,0],[2,2,2,2],[2,2,0,1]],[[1,2,0,1],[2,2,3,0],[3,2,2,2],[1,2,0,1]],[[1,2,0,1],[3,2,3,0],[2,2,2,2],[1,2,0,1]],[[2,2,0,1],[2,2,3,0],[2,2,2,2],[1,2,0,1]],[[1,2,0,1],[2,2,3,0],[2,2,2,1],[1,3,1,1]],[[1,2,0,1],[2,2,3,0],[2,2,2,1],[2,2,1,1]],[[1,2,0,1],[2,2,3,0],[3,2,2,1],[1,2,1,1]],[[1,2,0,1],[3,2,3,0],[2,2,2,1],[1,2,1,1]],[[2,2,0,1],[2,2,3,0],[2,2,2,1],[1,2,1,1]],[[1,2,0,1],[2,2,3,0],[2,2,1,2],[1,2,3,0]],[[1,2,0,1],[2,2,3,0],[2,2,1,2],[1,3,2,0]],[[1,2,0,1],[2,2,3,0],[2,2,1,2],[2,2,2,0]],[[1,2,0,1],[2,2,3,0],[3,2,1,2],[1,2,2,0]],[[1,2,0,1],[3,2,3,0],[2,2,1,2],[1,2,2,0]],[[2,2,0,1],[2,2,3,0],[2,2,1,2],[1,2,2,0]],[[1,2,0,1],[2,2,3,0],[2,2,1,1],[1,2,2,2]],[[1,2,0,1],[2,2,3,0],[2,2,1,1],[1,2,3,1]],[[1,2,0,1],[2,2,3,0],[2,2,1,1],[1,3,2,1]],[[1,2,0,1],[2,2,3,0],[2,2,1,1],[2,2,2,1]],[[1,2,0,1],[2,2,3,0],[3,2,1,1],[1,2,2,1]],[[1,2,0,1],[3,2,3,0],[2,2,1,1],[1,2,2,1]],[[2,2,0,1],[2,2,3,0],[2,2,1,1],[1,2,2,1]],[[1,2,0,1],[2,2,3,0],[2,2,0,2],[1,2,2,2]],[[1,2,0,1],[2,2,3,0],[2,2,0,2],[1,2,3,1]],[[1,2,0,1],[2,2,3,0],[2,2,0,2],[1,3,2,1]],[[1,2,0,1],[2,2,3,0],[2,2,0,2],[2,2,2,1]],[[1,2,0,1],[2,2,3,0],[3,2,0,2],[1,2,2,1]],[[1,2,0,1],[3,2,3,0],[2,2,0,2],[1,2,2,1]],[[2,2,0,1],[2,2,3,0],[2,2,0,2],[1,2,2,1]],[[1,2,0,1],[2,2,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,0,1],[2,2,3,0],[1,3,2,2],[2,2,1,0]],[[1,2,0,1],[2,2,3,0],[1,4,2,2],[1,2,1,0]],[[1,2,0,1],[2,2,3,0],[1,3,2,2],[1,3,0,1]],[[1,2,0,1],[2,2,3,0],[1,3,2,2],[2,2,0,1]],[[1,2,0,1],[2,2,3,0],[1,4,2,2],[1,2,0,1]],[[1,2,0,1],[2,2,3,0],[1,3,2,1],[1,3,1,1]],[[1,2,0,1],[2,2,3,0],[1,3,2,1],[2,2,1,1]],[[1,2,0,1],[2,2,3,0],[1,4,2,1],[1,2,1,1]],[[1,2,0,1],[2,2,3,0],[1,3,1,2],[1,2,3,0]],[[1,2,0,1],[2,2,3,0],[1,3,1,2],[1,3,2,0]],[[1,2,0,1],[2,2,3,0],[1,3,1,2],[2,2,2,0]],[[1,2,0,1],[2,2,3,0],[1,4,1,2],[1,2,2,0]],[[1,2,0,1],[2,2,3,0],[1,3,1,1],[1,2,2,2]],[[1,2,0,1],[2,2,3,0],[1,3,1,1],[1,2,3,1]],[[1,2,0,1],[2,2,3,0],[1,3,1,1],[1,3,2,1]],[[1,2,0,1],[2,2,3,0],[1,3,1,1],[2,2,2,1]],[[1,2,0,1],[2,2,3,0],[1,4,1,1],[1,2,2,1]],[[1,2,0,1],[2,2,3,0],[1,3,0,2],[1,2,2,2]],[[1,2,0,1],[2,2,3,0],[1,3,0,2],[1,2,3,1]],[[1,2,0,1],[2,2,3,0],[1,3,0,2],[1,3,2,1]],[[1,2,0,1],[2,2,3,0],[1,3,0,2],[2,2,2,1]],[[1,2,0,1],[2,2,3,0],[1,4,0,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,2],[3,3,3,1],[1,0,1,0]],[[1,2,0,1],[3,2,2,2],[2,3,3,1],[1,0,1,0]],[[1,3,0,1],[2,2,2,2],[2,3,3,1],[1,0,1,0]],[[2,2,0,1],[2,2,2,2],[2,3,3,1],[1,0,1,0]],[[1,2,0,1],[2,2,2,2],[3,3,3,1],[1,0,0,1]],[[1,2,0,1],[3,2,2,2],[2,3,3,1],[1,0,0,1]],[[1,3,0,1],[2,2,2,2],[2,3,3,1],[1,0,0,1]],[[2,2,0,1],[2,2,2,2],[2,3,3,1],[1,0,0,1]],[[1,2,0,1],[2,2,2,2],[3,3,3,0],[1,0,1,1]],[[1,2,0,1],[3,2,2,2],[2,3,3,0],[1,0,1,1]],[[1,3,0,1],[2,2,2,2],[2,3,3,0],[1,0,1,1]],[[2,2,0,1],[2,2,2,2],[2,3,3,0],[1,0,1,1]],[[1,1,3,0],[1,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,2,0],[1,4,3,2],[2,3,1,2],[1,0,0,1]],[[1,1,2,0],[1,3,4,2],[2,3,1,2],[1,0,0,1]],[[1,1,2,0],[1,3,3,3],[2,3,1,2],[1,0,0,1]],[[1,1,2,0],[1,3,3,2],[2,3,1,3],[1,0,0,1]],[[1,1,3,0],[1,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,2,0],[1,4,3,2],[2,3,1,2],[1,0,1,0]],[[1,1,2,0],[1,3,4,2],[2,3,1,2],[1,0,1,0]],[[1,1,2,0],[1,3,3,3],[2,3,1,2],[1,0,1,0]],[[1,2,0,1],[2,2,2,2],[2,2,3,1],[2,2,0,0]],[[1,2,0,1],[2,2,2,2],[3,2,3,1],[1,2,0,0]],[[1,2,0,1],[3,2,2,2],[2,2,3,1],[1,2,0,0]],[[1,3,0,1],[2,2,2,2],[2,2,3,1],[1,2,0,0]],[[2,2,0,1],[2,2,2,2],[2,2,3,1],[1,2,0,0]],[[1,2,0,1],[2,2,2,2],[2,2,3,1],[2,1,1,0]],[[1,2,0,1],[2,2,2,2],[3,2,3,1],[1,1,1,0]],[[1,2,0,1],[3,2,2,2],[2,2,3,1],[1,1,1,0]],[[1,3,0,1],[2,2,2,2],[2,2,3,1],[1,1,1,0]],[[2,2,0,1],[2,2,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,0,1],[2,2,2,2],[2,2,3,1],[2,1,0,1]],[[1,2,0,1],[2,2,2,2],[3,2,3,1],[1,1,0,1]],[[1,2,0,1],[3,2,2,2],[2,2,3,1],[1,1,0,1]],[[1,3,0,1],[2,2,2,2],[2,2,3,1],[1,1,0,1]],[[2,2,0,1],[2,2,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,0,1],[2,2,2,2],[2,2,3,1],[2,0,2,0]],[[1,2,0,1],[2,2,2,2],[3,2,3,1],[1,0,2,0]],[[1,2,0,1],[3,2,2,2],[2,2,3,1],[1,0,2,0]],[[1,3,0,1],[2,2,2,2],[2,2,3,1],[1,0,2,0]],[[2,2,0,1],[2,2,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,0,1],[2,2,2,2],[2,2,3,1],[2,0,1,1]],[[1,2,0,1],[2,2,2,2],[3,2,3,1],[1,0,1,1]],[[1,2,0,1],[3,2,2,2],[2,2,3,1],[1,0,1,1]],[[1,3,0,1],[2,2,2,2],[2,2,3,1],[1,0,1,1]],[[2,2,0,1],[2,2,2,2],[2,2,3,1],[1,0,1,1]],[[1,2,0,1],[2,2,2,2],[3,2,3,1],[0,2,1,0]],[[1,2,0,1],[3,2,2,2],[2,2,3,1],[0,2,1,0]],[[1,3,0,1],[2,2,2,2],[2,2,3,1],[0,2,1,0]],[[2,2,0,1],[2,2,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,0,1],[2,2,2,2],[3,2,3,1],[0,2,0,1]],[[1,2,0,1],[3,2,2,2],[2,2,3,1],[0,2,0,1]],[[1,3,0,1],[2,2,2,2],[2,2,3,1],[0,2,0,1]],[[2,2,0,1],[2,2,2,2],[2,2,3,1],[0,2,0,1]],[[1,1,3,0],[1,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,2,0],[1,4,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,2,0],[1,3,4,2],[2,3,2,0],[1,0,1,1]],[[1,2,0,1],[2,2,2,2],[3,2,3,1],[0,1,2,0]],[[1,2,0,1],[3,2,2,2],[2,2,3,1],[0,1,2,0]],[[1,3,0,1],[2,2,2,2],[2,2,3,1],[0,1,2,0]],[[2,2,0,1],[2,2,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,0,1],[2,2,2,2],[3,2,3,1],[0,1,1,1]],[[1,2,0,1],[3,2,2,2],[2,2,3,1],[0,1,1,1]],[[1,3,0,1],[2,2,2,2],[2,2,3,1],[0,1,1,1]],[[2,2,0,1],[2,2,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,0,1],[2,2,2,2],[2,2,3,0],[2,2,0,1]],[[1,2,0,1],[2,2,2,2],[3,2,3,0],[1,2,0,1]],[[1,2,0,1],[3,2,2,2],[2,2,3,0],[1,2,0,1]],[[1,3,0,1],[2,2,2,2],[2,2,3,0],[1,2,0,1]],[[2,2,0,1],[2,2,2,2],[2,2,3,0],[1,2,0,1]],[[1,2,0,1],[2,2,2,2],[2,2,3,0],[2,1,1,1]],[[1,2,0,1],[2,2,2,2],[3,2,3,0],[1,1,1,1]],[[1,2,0,1],[3,2,2,2],[2,2,3,0],[1,1,1,1]],[[1,3,0,1],[2,2,2,2],[2,2,3,0],[1,1,1,1]],[[2,2,0,1],[2,2,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,0,1],[2,2,2,2],[2,2,3,0],[2,0,2,1]],[[1,2,0,1],[2,2,2,2],[3,2,3,0],[1,0,2,1]],[[1,2,0,1],[3,2,2,2],[2,2,3,0],[1,0,2,1]],[[1,3,0,1],[2,2,2,2],[2,2,3,0],[1,0,2,1]],[[2,2,0,1],[2,2,2,2],[2,2,3,0],[1,0,2,1]],[[1,2,0,1],[2,2,2,2],[3,2,3,0],[0,2,1,1]],[[1,2,0,1],[3,2,2,2],[2,2,3,0],[0,2,1,1]],[[1,3,0,1],[2,2,2,2],[2,2,3,0],[0,2,1,1]],[[2,2,0,1],[2,2,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,0,1],[2,2,2,2],[3,2,3,0],[0,1,2,1]],[[1,2,0,1],[3,2,2,2],[2,2,3,0],[0,1,2,1]],[[1,3,0,1],[2,2,2,2],[2,2,3,0],[0,1,2,1]],[[2,2,0,1],[2,2,2,2],[2,2,3,0],[0,1,2,1]],[[1,1,3,0],[1,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,2,0],[1,4,3,2],[2,3,2,1],[1,0,0,1]],[[1,1,2,0],[1,3,4,2],[2,3,2,1],[1,0,0,1]],[[1,1,2,0],[1,3,3,3],[2,3,2,1],[1,0,0,1]],[[1,1,3,0],[1,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,1,2,0],[1,4,3,2],[2,3,2,1],[1,0,1,0]],[[1,1,2,0],[1,3,4,2],[2,3,2,1],[1,0,1,0]],[[1,1,2,0],[1,3,3,3],[2,3,2,1],[1,0,1,0]],[[1,2,0,1],[2,2,2,2],[2,2,2,1],[2,1,2,0]],[[1,2,0,1],[2,2,2,2],[3,2,2,1],[1,1,2,0]],[[1,2,0,1],[3,2,2,2],[2,2,2,1],[1,1,2,0]],[[1,3,0,1],[2,2,2,2],[2,2,2,1],[1,1,2,0]],[[2,2,0,1],[2,2,2,2],[2,2,2,1],[1,1,2,0]],[[1,2,0,1],[2,2,2,2],[3,2,2,1],[0,2,2,0]],[[1,2,0,1],[3,2,2,2],[2,2,2,1],[0,2,2,0]],[[1,3,0,1],[2,2,2,2],[2,2,2,1],[0,2,2,0]],[[2,2,0,1],[2,2,2,2],[2,2,2,1],[0,2,2,0]],[[1,2,0,1],[2,2,2,2],[2,2,2,0],[2,1,2,1]],[[1,2,0,1],[2,2,2,2],[3,2,2,0],[1,1,2,1]],[[1,2,0,1],[3,2,2,2],[2,2,2,0],[1,1,2,1]],[[1,3,0,1],[2,2,2,2],[2,2,2,0],[1,1,2,1]],[[2,2,0,1],[2,2,2,2],[2,2,2,0],[1,1,2,1]],[[1,2,0,1],[2,2,2,2],[3,2,2,0],[0,2,2,1]],[[1,2,0,1],[3,2,2,2],[2,2,2,0],[0,2,2,1]],[[1,3,0,1],[2,2,2,2],[2,2,2,0],[0,2,2,1]],[[2,2,0,1],[2,2,2,2],[2,2,2,0],[0,2,2,1]],[[1,2,0,1],[2,2,2,2],[2,2,0,2],[2,1,2,1]],[[1,2,0,1],[2,2,2,2],[3,2,0,2],[1,1,2,1]],[[1,2,0,1],[3,2,2,2],[2,2,0,2],[1,1,2,1]],[[1,3,0,1],[2,2,2,2],[2,2,0,2],[1,1,2,1]],[[2,2,0,1],[2,2,2,2],[2,2,0,2],[1,1,2,1]],[[1,2,0,1],[2,2,2,2],[3,2,0,2],[0,2,2,1]],[[1,2,0,1],[3,2,2,2],[2,2,0,2],[0,2,2,1]],[[1,3,0,1],[2,2,2,2],[2,2,0,2],[0,2,2,1]],[[2,2,0,1],[2,2,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,0,1],[2,2,2,2],[2,1,3,1],[1,3,1,0]],[[1,2,0,1],[2,2,2,2],[2,1,3,1],[2,2,1,0]],[[1,2,0,1],[2,2,2,2],[3,1,3,1],[1,2,1,0]],[[1,2,0,1],[3,2,2,2],[2,1,3,1],[1,2,1,0]],[[1,3,0,1],[2,2,2,2],[2,1,3,1],[1,2,1,0]],[[2,2,0,1],[2,2,2,2],[2,1,3,1],[1,2,1,0]],[[1,2,0,1],[2,2,2,2],[2,1,3,1],[1,3,0,1]],[[1,2,0,1],[2,2,2,2],[2,1,3,1],[2,2,0,1]],[[1,2,0,1],[2,2,2,2],[3,1,3,1],[1,2,0,1]],[[1,2,0,1],[3,2,2,2],[2,1,3,1],[1,2,0,1]],[[1,3,0,1],[2,2,2,2],[2,1,3,1],[1,2,0,1]],[[2,2,0,1],[2,2,2,2],[2,1,3,1],[1,2,0,1]],[[1,2,0,1],[2,2,2,2],[2,1,3,0],[1,3,1,1]],[[1,2,0,1],[2,2,2,2],[2,1,3,0],[2,2,1,1]],[[1,2,0,1],[2,2,2,2],[3,1,3,0],[1,2,1,1]],[[1,2,0,1],[3,2,2,2],[2,1,3,0],[1,2,1,1]],[[1,3,0,1],[2,2,2,2],[2,1,3,0],[1,2,1,1]],[[2,2,0,1],[2,2,2,2],[2,1,3,0],[1,2,1,1]],[[1,2,0,1],[2,2,2,2],[2,1,2,1],[1,2,3,0]],[[1,2,0,1],[2,2,2,2],[2,1,2,1],[1,3,2,0]],[[1,2,0,1],[2,2,2,2],[2,1,2,1],[2,2,2,0]],[[1,2,0,1],[2,2,2,2],[3,1,2,1],[1,2,2,0]],[[1,2,0,1],[3,2,2,2],[2,1,2,1],[1,2,2,0]],[[1,3,0,1],[2,2,2,2],[2,1,2,1],[1,2,2,0]],[[2,2,0,1],[2,2,2,2],[2,1,2,1],[1,2,2,0]],[[1,2,0,1],[2,2,2,2],[2,1,2,0],[1,2,2,2]],[[1,2,0,1],[2,2,2,2],[2,1,2,0],[1,2,3,1]],[[1,2,0,1],[2,2,2,2],[2,1,2,0],[1,3,2,1]],[[1,2,0,1],[2,2,2,2],[2,1,2,0],[2,2,2,1]],[[1,2,0,1],[2,2,2,2],[3,1,2,0],[1,2,2,1]],[[1,2,0,1],[3,2,2,2],[2,1,2,0],[1,2,2,1]],[[1,3,0,1],[2,2,2,2],[2,1,2,0],[1,2,2,1]],[[2,2,0,1],[2,2,2,2],[2,1,2,0],[1,2,2,1]],[[1,2,0,1],[2,2,2,2],[2,1,0,2],[1,2,2,2]],[[1,2,0,1],[2,2,2,2],[2,1,0,2],[1,2,3,1]],[[1,2,0,1],[2,2,2,2],[2,1,0,2],[1,3,2,1]],[[1,2,0,1],[2,2,2,2],[2,1,0,2],[2,2,2,1]],[[1,2,0,1],[2,2,2,2],[2,1,0,3],[1,2,2,1]],[[1,2,0,1],[2,2,2,2],[3,1,0,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,3],[2,1,0,2],[1,2,2,1]],[[1,2,0,1],[3,2,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,0,2],[2,2,2,2],[2,1,0,2],[1,2,2,1]],[[1,3,0,1],[2,2,2,2],[2,1,0,2],[1,2,2,1]],[[2,2,0,1],[2,2,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,2],[2,0,3,1],[1,2,3,0]],[[1,2,0,1],[2,2,2,2],[2,0,3,1],[1,3,2,0]],[[1,2,0,1],[2,2,2,2],[2,0,3,1],[2,2,2,0]],[[1,2,0,1],[2,2,2,2],[2,0,4,1],[1,2,2,0]],[[1,2,0,1],[2,2,2,2],[3,0,3,1],[1,2,2,0]],[[1,2,0,1],[3,2,2,2],[2,0,3,1],[1,2,2,0]],[[1,3,0,1],[2,2,2,2],[2,0,3,1],[1,2,2,0]],[[2,2,0,1],[2,2,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,0,1],[2,2,2,2],[2,0,3,0],[1,2,2,2]],[[1,2,0,1],[2,2,2,2],[2,0,3,0],[1,2,3,1]],[[1,2,0,1],[2,2,2,2],[2,0,3,0],[1,3,2,1]],[[1,2,0,1],[2,2,2,2],[2,0,3,0],[2,2,2,1]],[[1,2,0,1],[2,2,2,2],[2,0,4,0],[1,2,2,1]],[[1,2,0,1],[2,2,2,2],[3,0,3,0],[1,2,2,1]],[[1,2,0,1],[3,2,2,2],[2,0,3,0],[1,2,2,1]],[[1,3,0,1],[2,2,2,2],[2,0,3,0],[1,2,2,1]],[[2,2,0,1],[2,2,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,0,1],[2,2,2,2],[2,0,1,2],[1,2,2,2]],[[1,2,0,1],[2,2,2,2],[2,0,1,2],[1,2,3,1]],[[1,2,0,1],[2,2,2,2],[2,0,1,2],[1,3,2,1]],[[1,2,0,1],[2,2,2,2],[2,0,1,2],[2,2,2,1]],[[1,2,0,1],[2,2,2,2],[2,0,1,3],[1,2,2,1]],[[1,2,0,1],[2,2,2,2],[3,0,1,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,3],[2,0,1,2],[1,2,2,1]],[[1,2,0,1],[3,2,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,0,2],[2,2,2,2],[2,0,1,2],[1,2,2,1]],[[1,3,0,1],[2,2,2,2],[2,0,1,2],[1,2,2,1]],[[2,2,0,1],[2,2,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,3,0],[1,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,1,2,0],[1,4,3,2],[2,3,3,0],[1,0,1,0]],[[1,1,2,0],[1,3,4,2],[2,3,3,0],[1,0,1,0]],[[1,2,0,1],[3,2,2,2],[1,3,3,1],[1,2,0,0]],[[1,3,0,1],[2,2,2,2],[1,3,3,1],[1,2,0,0]],[[2,2,0,1],[2,2,2,2],[1,3,3,1],[1,2,0,0]],[[1,2,0,1],[3,2,2,2],[1,3,3,1],[1,1,1,0]],[[1,3,0,1],[2,2,2,2],[1,3,3,1],[1,1,1,0]],[[2,2,0,1],[2,2,2,2],[1,3,3,1],[1,1,1,0]],[[1,2,0,1],[3,2,2,2],[1,3,3,1],[1,1,0,1]],[[1,3,0,1],[2,2,2,2],[1,3,3,1],[1,1,0,1]],[[2,2,0,1],[2,2,2,2],[1,3,3,1],[1,1,0,1]],[[1,2,0,1],[3,2,2,2],[1,3,3,1],[1,0,2,0]],[[1,3,0,1],[2,2,2,2],[1,3,3,1],[1,0,2,0]],[[2,2,0,1],[2,2,2,2],[1,3,3,1],[1,0,2,0]],[[1,2,0,1],[3,2,2,2],[1,3,3,1],[1,0,1,1]],[[1,3,0,1],[2,2,2,2],[1,3,3,1],[1,0,1,1]],[[2,2,0,1],[2,2,2,2],[1,3,3,1],[1,0,1,1]],[[1,2,0,1],[3,2,2,2],[1,3,3,1],[0,2,1,0]],[[1,3,0,1],[2,2,2,2],[1,3,3,1],[0,2,1,0]],[[2,2,0,1],[2,2,2,2],[1,3,3,1],[0,2,1,0]],[[1,2,0,1],[3,2,2,2],[1,3,3,1],[0,2,0,1]],[[1,3,0,1],[2,2,2,2],[1,3,3,1],[0,2,0,1]],[[2,2,0,1],[2,2,2,2],[1,3,3,1],[0,2,0,1]],[[1,2,0,1],[3,2,2,2],[1,3,3,1],[0,1,2,0]],[[1,3,0,1],[2,2,2,2],[1,3,3,1],[0,1,2,0]],[[2,2,0,1],[2,2,2,2],[1,3,3,1],[0,1,2,0]],[[1,2,0,1],[3,2,2,2],[1,3,3,1],[0,1,1,1]],[[1,3,0,1],[2,2,2,2],[1,3,3,1],[0,1,1,1]],[[2,2,0,1],[2,2,2,2],[1,3,3,1],[0,1,1,1]],[[1,2,0,1],[3,2,2,2],[1,3,3,0],[1,2,0,1]],[[1,3,0,1],[2,2,2,2],[1,3,3,0],[1,2,0,1]],[[2,2,0,1],[2,2,2,2],[1,3,3,0],[1,2,0,1]],[[1,2,0,1],[3,2,2,2],[1,3,3,0],[1,1,1,1]],[[1,3,0,1],[2,2,2,2],[1,3,3,0],[1,1,1,1]],[[2,2,0,1],[2,2,2,2],[1,3,3,0],[1,1,1,1]],[[1,2,0,1],[3,2,2,2],[1,3,3,0],[1,0,2,1]],[[1,3,0,1],[2,2,2,2],[1,3,3,0],[1,0,2,1]],[[2,2,0,1],[2,2,2,2],[1,3,3,0],[1,0,2,1]],[[1,2,0,1],[3,2,2,2],[1,3,3,0],[0,2,1,1]],[[1,3,0,1],[2,2,2,2],[1,3,3,0],[0,2,1,1]],[[2,2,0,1],[2,2,2,2],[1,3,3,0],[0,2,1,1]],[[1,2,0,1],[3,2,2,2],[1,3,3,0],[0,1,2,1]],[[1,3,0,1],[2,2,2,2],[1,3,3,0],[0,1,2,1]],[[2,2,0,1],[2,2,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,3,0],[1,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,2,0],[1,4,3,2],[2,3,3,1],[1,0,0,0]],[[1,1,2,0],[1,3,4,2],[2,3,3,1],[1,0,0,0]],[[1,1,2,0],[1,3,3,3],[2,3,3,1],[1,0,0,0]],[[1,2,0,1],[3,2,2,2],[1,3,2,1],[1,1,2,0]],[[1,3,0,1],[2,2,2,2],[1,3,2,1],[1,1,2,0]],[[2,2,0,1],[2,2,2,2],[1,3,2,1],[1,1,2,0]],[[1,2,0,1],[3,2,2,2],[1,3,2,1],[0,2,2,0]],[[1,3,0,1],[2,2,2,2],[1,3,2,1],[0,2,2,0]],[[2,2,0,1],[2,2,2,2],[1,3,2,1],[0,2,2,0]],[[1,2,0,1],[3,2,2,2],[1,3,2,0],[1,1,2,1]],[[1,3,0,1],[2,2,2,2],[1,3,2,0],[1,1,2,1]],[[2,2,0,1],[2,2,2,2],[1,3,2,0],[1,1,2,1]],[[1,2,0,1],[3,2,2,2],[1,3,2,0],[0,2,2,1]],[[1,3,0,1],[2,2,2,2],[1,3,2,0],[0,2,2,1]],[[2,2,0,1],[2,2,2,2],[1,3,2,0],[0,2,2,1]],[[1,2,0,1],[3,2,2,2],[1,3,0,2],[1,1,2,1]],[[1,3,0,1],[2,2,2,2],[1,3,0,2],[1,1,2,1]],[[2,2,0,1],[2,2,2,2],[1,3,0,2],[1,1,2,1]],[[1,2,0,1],[3,2,2,2],[1,3,0,2],[0,2,2,1]],[[1,3,0,1],[2,2,2,2],[1,3,0,2],[0,2,2,1]],[[2,2,0,1],[2,2,2,2],[1,3,0,2],[0,2,2,1]],[[1,2,0,1],[3,2,2,2],[0,3,3,1],[1,2,1,0]],[[1,3,0,1],[2,2,2,2],[0,3,3,1],[1,2,1,0]],[[2,2,0,1],[2,2,2,2],[0,3,3,1],[1,2,1,0]],[[1,2,0,1],[3,2,2,2],[0,3,3,1],[1,2,0,1]],[[1,3,0,1],[2,2,2,2],[0,3,3,1],[1,2,0,1]],[[2,2,0,1],[2,2,2,2],[0,3,3,1],[1,2,0,1]],[[1,2,0,1],[3,2,2,2],[0,3,3,1],[1,1,2,0]],[[1,3,0,1],[2,2,2,2],[0,3,3,1],[1,1,2,0]],[[2,2,0,1],[2,2,2,2],[0,3,3,1],[1,1,2,0]],[[1,2,0,1],[3,2,2,2],[0,3,3,1],[1,1,1,1]],[[1,3,0,1],[2,2,2,2],[0,3,3,1],[1,1,1,1]],[[2,2,0,1],[2,2,2,2],[0,3,3,1],[1,1,1,1]],[[1,2,0,1],[3,2,2,2],[0,3,3,0],[1,2,1,1]],[[1,3,0,1],[2,2,2,2],[0,3,3,0],[1,2,1,1]],[[2,2,0,1],[2,2,2,2],[0,3,3,0],[1,2,1,1]],[[1,2,0,1],[3,2,2,2],[0,3,3,0],[1,1,2,1]],[[1,3,0,1],[2,2,2,2],[0,3,3,0],[1,1,2,1]],[[2,2,0,1],[2,2,2,2],[0,3,3,0],[1,1,2,1]],[[1,2,0,1],[3,2,2,2],[0,3,2,1],[1,2,2,0]],[[1,3,0,1],[2,2,2,2],[0,3,2,1],[1,2,2,0]],[[2,2,0,1],[2,2,2,2],[0,3,2,1],[1,2,2,0]],[[1,2,0,1],[3,2,2,2],[0,3,2,0],[1,2,2,1]],[[1,3,0,1],[2,2,2,2],[0,3,2,0],[1,2,2,1]],[[2,2,0,1],[2,2,2,2],[0,3,2,0],[1,2,2,1]],[[1,2,0,1],[3,2,2,2],[0,3,0,2],[1,2,2,1]],[[1,3,0,1],[2,2,2,2],[0,3,0,2],[1,2,2,1]],[[2,2,0,1],[2,2,2,2],[0,3,0,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,1],[3,3,3,2],[1,0,1,0]],[[1,2,0,1],[3,2,2,1],[2,3,3,2],[1,0,1,0]],[[1,3,0,1],[2,2,2,1],[2,3,3,2],[1,0,1,0]],[[2,2,0,1],[2,2,2,1],[2,3,3,2],[1,0,1,0]],[[1,2,0,1],[2,2,2,1],[3,3,3,2],[1,0,0,1]],[[1,2,0,1],[3,2,2,1],[2,3,3,2],[1,0,0,1]],[[1,3,0,1],[2,2,2,1],[2,3,3,2],[1,0,0,1]],[[2,2,0,1],[2,2,2,1],[2,3,3,2],[1,0,0,1]],[[1,2,0,1],[2,2,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[2,2,2,1],[2,4,3,1],[1,2,0,0]],[[1,2,0,1],[2,2,2,1],[3,3,3,1],[1,2,0,0]],[[1,2,0,1],[3,2,2,1],[2,3,3,1],[1,2,0,0]],[[2,2,0,1],[2,2,2,1],[2,3,3,1],[1,2,0,0]],[[1,2,0,1],[2,2,2,1],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[2,2,2,1],[2,4,3,1],[1,1,1,0]],[[1,2,0,1],[2,2,2,1],[3,3,3,1],[1,1,1,0]],[[1,2,0,1],[3,2,2,1],[2,3,3,1],[1,1,1,0]],[[2,2,0,1],[2,2,2,1],[2,3,3,1],[1,1,1,0]],[[1,2,0,1],[2,2,2,1],[2,3,3,1],[2,1,0,1]],[[1,2,0,1],[2,2,2,1],[2,4,3,1],[1,1,0,1]],[[1,2,0,1],[2,2,2,1],[3,3,3,1],[1,1,0,1]],[[1,2,0,1],[3,2,2,1],[2,3,3,1],[1,1,0,1]],[[2,2,0,1],[2,2,2,1],[2,3,3,1],[1,1,0,1]],[[1,2,0,1],[2,2,2,1],[2,3,3,1],[2,0,2,0]],[[1,2,0,1],[2,2,2,1],[2,4,3,1],[1,0,2,0]],[[1,2,0,1],[2,2,2,1],[3,3,3,1],[1,0,2,0]],[[1,2,0,1],[3,2,2,1],[2,3,3,1],[1,0,2,0]],[[2,2,0,1],[2,2,2,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[2,0,1,2],[1,2,3,3],[1,2,2,1]],[[1,1,2,0],[2,0,1,2],[1,2,3,2],[2,2,2,1]],[[1,1,2,0],[2,0,1,2],[1,2,3,2],[1,3,2,1]],[[1,1,2,0],[2,0,1,2],[1,2,3,2],[1,2,3,1]],[[1,1,2,0],[2,0,1,2],[1,2,3,2],[1,2,2,2]],[[1,1,2,0],[2,0,1,2],[1,3,3,3],[1,1,2,1]],[[1,1,2,0],[2,0,1,2],[1,3,3,2],[1,1,3,1]],[[1,1,2,0],[2,0,1,2],[1,3,3,2],[1,1,2,2]],[[1,1,2,0],[2,0,1,2],[3,1,3,2],[1,2,2,1]],[[1,1,2,0],[2,0,1,2],[2,1,3,3],[1,2,2,1]],[[1,1,2,0],[2,0,1,2],[2,1,3,2],[2,2,2,1]],[[1,1,2,0],[2,0,1,2],[2,1,3,2],[1,3,2,1]],[[1,1,2,0],[2,0,1,2],[2,1,3,2],[1,2,3,1]],[[1,1,2,0],[2,0,1,2],[2,1,3,2],[1,2,2,2]],[[1,1,2,0],[2,0,1,2],[2,2,3,3],[0,2,2,1]],[[1,1,2,0],[2,0,1,2],[2,2,3,2],[0,3,2,1]],[[1,1,2,0],[2,0,1,2],[2,2,3,2],[0,2,3,1]],[[1,1,2,0],[2,0,1,2],[2,2,3,2],[0,2,2,2]],[[1,1,2,0],[2,0,1,2],[2,3,3,3],[0,1,2,1]],[[1,1,2,0],[2,0,1,2],[2,3,3,2],[0,1,3,1]],[[1,1,2,0],[2,0,1,2],[2,3,3,2],[0,1,2,2]],[[1,1,2,0],[2,0,1,2],[2,3,3,3],[1,0,2,1]],[[1,1,2,0],[2,0,1,2],[2,3,3,2],[1,0,3,1]],[[1,1,2,0],[2,0,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,0,1],[2,2,2,1],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[2,2,2,1],[2,4,3,1],[0,2,1,0]],[[1,2,0,1],[2,2,2,1],[3,3,3,1],[0,2,1,0]],[[1,2,0,1],[3,2,2,1],[2,3,3,1],[0,2,1,0]],[[2,2,0,1],[2,2,2,1],[2,3,3,1],[0,2,1,0]],[[1,2,0,1],[2,2,2,1],[2,4,3,1],[0,2,0,1]],[[1,2,0,1],[2,2,2,1],[3,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,0,2,3],[1,1,3,2],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,1,3,3],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,1,3,2],[1,2,3,1]],[[1,1,2,0],[2,0,2,2],[1,1,3,2],[1,2,2,2]],[[1,1,2,0],[2,0,2,3],[1,2,2,2],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,2,2,3],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,2,2,2],[2,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,2,2,2],[1,3,2,1]],[[1,1,2,0],[2,0,2,2],[1,2,2,2],[1,2,3,1]],[[1,1,2,0],[2,0,2,2],[1,2,2,2],[1,2,2,2]],[[1,1,2,0],[2,0,2,2],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[2,0,2,2],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[2,0,2,2],[1,2,3,1],[1,2,2,2]],[[1,1,2,0],[2,0,2,3],[1,2,3,2],[1,2,1,1]],[[1,1,2,0],[2,0,2,2],[1,2,4,2],[1,2,1,1]],[[1,1,2,0],[2,0,2,2],[1,2,3,3],[1,2,1,1]],[[1,1,2,0],[2,0,2,2],[1,2,3,2],[1,2,1,2]],[[1,1,2,0],[2,0,2,3],[1,2,3,2],[1,2,2,0]],[[1,1,2,0],[2,0,2,2],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[2,0,2,2],[1,2,3,3],[1,2,2,0]],[[1,1,2,0],[2,0,2,2],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[2,0,2,2],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[2,0,2,2],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[2,0,2,3],[1,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,4,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,1,3],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,1,2],[2,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,1,2],[1,3,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,1,2],[1,2,3,1]],[[1,1,2,0],[2,0,2,2],[1,3,1,2],[1,2,2,2]],[[1,1,2,0],[2,0,2,2],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[2,0,2,2],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[2,0,2,3],[1,3,2,2],[1,1,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,2,3],[1,1,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,2,2],[1,1,3,1]],[[1,1,2,0],[2,0,2,2],[1,3,2,2],[1,1,2,2]],[[1,1,2,0],[2,0,2,2],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,2,2],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[2,0,2,2],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[2,0,2,2],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[2,0,2,2],[1,4,3,1],[1,1,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,1],[1,1,2,2]],[[1,1,2,0],[2,0,2,2],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,2,2],[1,3,4,1],[1,2,1,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,1],[1,3,1,1]],[[1,1,2,0],[2,0,2,3],[1,3,3,2],[1,0,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,4,2],[1,0,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,3],[1,0,2,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,2],[1,0,2,2]],[[1,1,2,0],[2,0,2,3],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,0,2,2],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[2,0,2,2],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,3],[1,1,1,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,2],[1,1,1,2]],[[1,1,2,0],[2,0,2,3],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[2,0,2,2],[1,4,3,2],[1,1,2,0]],[[1,1,2,0],[2,0,2,2],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[2,0,2,2],[1,3,3,3],[1,1,2,0]],[[1,1,2,0],[2,0,2,2],[1,3,3,2],[1,1,3,0]],[[1,1,2,0],[2,0,2,3],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,0,2,2],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[2,0,2,2],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,3],[1,2,0,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[2,0,2,2],[1,3,3,2],[1,2,0,2]],[[1,1,2,0],[2,0,2,3],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[2,0,2,2],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[2,0,2,2],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[2,0,2,2],[1,3,3,3],[1,2,1,0]],[[1,1,2,0],[2,0,2,2],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[2,0,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[3,2,2,1],[2,3,3,1],[0,2,0,1]],[[2,2,0,1],[2,2,2,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,0,2,3],[2,0,3,2],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,0,3,3],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,0,3,2],[1,2,3,1]],[[1,1,2,0],[2,0,2,2],[2,0,3,2],[1,2,2,2]],[[2,1,2,0],[2,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[3,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,0,2,3],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[3,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,1,2,3],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[2,0,2,2],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[2,0,2,2],[2,1,2,2],[1,2,2,2]],[[2,1,2,0],[2,0,2,2],[2,1,3,1],[1,2,2,1]],[[1,1,2,0],[3,0,2,2],[2,1,3,1],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[3,1,3,1],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[2,0,2,2],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[2,0,2,2],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[2,0,2,3],[2,1,3,2],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,1,3,3],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,1,3,2],[0,2,3,1]],[[1,1,2,0],[2,0,2,2],[2,1,3,2],[0,2,2,2]],[[1,1,2,0],[2,0,2,3],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[2,0,2,2],[2,1,4,2],[1,2,1,1]],[[1,1,2,0],[2,0,2,2],[2,1,3,3],[1,2,1,1]],[[1,1,2,0],[2,0,2,2],[2,1,3,2],[1,2,1,2]],[[2,1,2,0],[2,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[3,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,0,2,3],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,0,2,2],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,0,2,2],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[2,0,2,2],[2,1,3,3],[1,2,2,0]],[[1,1,2,0],[2,0,2,2],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[2,0,2,2],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[2,0,2,2],[2,1,3,2],[1,2,3,0]],[[2,1,2,0],[2,0,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[3,0,2,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,2,3],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[3,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,1,3],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,1,2],[2,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,1,2],[1,3,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[2,0,2,2],[2,2,1,2],[1,2,2,2]],[[2,1,2,0],[2,0,2,2],[2,2,2,1],[1,2,2,1]],[[1,1,2,0],[3,0,2,2],[2,2,2,1],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[2,0,2,2],[2,2,2,1],[1,2,2,2]],[[1,1,2,0],[2,0,2,3],[2,2,2,2],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,2,2],[0,3,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,2,2],[0,2,3,1]],[[1,1,2,0],[2,0,2,2],[2,2,2,2],[0,2,2,2]],[[2,1,2,0],[2,0,2,2],[2,2,2,2],[1,2,2,0]],[[1,1,2,0],[3,0,2,2],[2,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,2,2],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,2,2],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[2,0,2,2],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[2,0,2,2],[2,2,2,2],[1,2,3,0]],[[1,1,2,0],[2,0,2,2],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[2,0,2,2],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[2,0,2,2],[2,2,3,1],[0,2,2,2]],[[2,1,2,0],[2,0,2,2],[2,2,3,1],[1,2,1,1]],[[1,1,2,0],[3,0,2,2],[2,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,2,2],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,2,2],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[2,0,2,2],[2,2,3,1],[1,3,1,1]],[[1,1,2,0],[2,0,2,3],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[2,0,2,2],[2,2,4,2],[0,2,1,1]],[[1,1,2,0],[2,0,2,2],[2,2,3,3],[0,2,1,1]],[[1,1,2,0],[2,0,2,2],[2,2,3,2],[0,2,1,2]],[[1,1,2,0],[2,0,2,3],[2,2,3,2],[0,2,2,0]],[[1,1,2,0],[2,0,2,2],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[2,0,2,2],[2,2,3,3],[0,2,2,0]],[[1,1,2,0],[2,0,2,2],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[2,0,2,2],[2,2,3,2],[0,2,3,0]],[[2,1,2,0],[2,0,2,2],[2,2,3,2],[1,2,0,1]],[[1,1,2,0],[3,0,2,2],[2,2,3,2],[1,2,0,1]],[[1,1,2,0],[2,0,2,2],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[2,0,2,2],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[2,0,2,2],[2,2,3,2],[1,3,0,1]],[[2,1,2,0],[2,0,2,2],[2,2,3,2],[1,2,1,0]],[[1,1,2,0],[3,0,2,2],[2,2,3,2],[1,2,1,0]],[[1,1,2,0],[2,0,2,2],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[2,0,2,2],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[2,0,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[2,2,2,1],[2,4,3,1],[0,1,2,0]],[[1,2,0,1],[2,2,2,1],[3,3,3,1],[0,1,2,0]],[[1,2,0,1],[3,2,2,1],[2,3,3,1],[0,1,2,0]],[[2,2,0,1],[2,2,2,1],[2,3,3,1],[0,1,2,0]],[[2,1,2,0],[2,0,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[3,0,2,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,0,2,3],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[3,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,4,1,2],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,1,3],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,1,2],[0,3,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,1,2],[0,2,3,1]],[[1,1,2,0],[2,0,2,2],[2,3,1,2],[0,2,2,2]],[[2,1,2,0],[2,0,2,2],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[3,0,2,2],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,0,2,2],[3,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,0,2,2],[2,4,1,2],[1,1,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,1,2],[2,1,2,1]],[[2,1,2,0],[2,0,2,2],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[3,0,2,2],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[2,0,2,2],[2,3,2,1],[0,2,2,2]],[[2,1,2,0],[2,0,2,2],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[3,0,2,2],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,0,2,2],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,0,2,2],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,2,1],[2,1,2,1]],[[1,1,2,0],[2,0,2,3],[2,3,2,2],[0,1,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,2,3],[0,1,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,2,2],[0,1,3,1]],[[1,1,2,0],[2,0,2,2],[2,3,2,2],[0,1,2,2]],[[2,1,2,0],[2,0,2,2],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[3,0,2,2],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,0,2,2],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,0,2,2],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[2,0,2,2],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[2,0,2,2],[2,3,2,2],[0,2,3,0]],[[1,1,2,0],[2,0,2,3],[2,3,2,2],[1,0,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,2,3],[1,0,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,2,2],[1,0,3,1]],[[1,1,2,0],[2,0,2,2],[2,3,2,2],[1,0,2,2]],[[2,1,2,0],[2,0,2,2],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[3,0,2,2],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,0,2,2],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,0,2,2],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[2,0,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,2,2,1],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[2,2,2,1],[2,4,3,0],[1,2,0,1]],[[1,2,0,1],[2,2,2,1],[3,3,3,0],[1,2,0,1]],[[1,2,0,1],[3,2,2,1],[2,3,3,0],[1,2,0,1]],[[2,2,0,1],[2,2,2,1],[2,3,3,0],[1,2,0,1]],[[2,1,2,0],[2,0,2,2],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[3,0,2,2],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,0,2,2],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,0,2,2],[2,4,3,1],[0,1,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,1],[0,1,2,2]],[[2,1,2,0],[2,0,2,2],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[3,0,2,2],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,0,2,2],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,0,2,2],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[2,0,2,2],[2,3,4,1],[0,2,1,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,1],[0,3,1,1]],[[2,1,2,0],[2,0,2,2],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[3,0,2,2],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,0,2,2],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,0,2,2],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,1],[2,0,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,1],[1,0,2,2]],[[2,1,2,0],[2,0,2,2],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[3,0,2,2],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,0,2,2],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,0,2,2],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[2,0,2,2],[2,3,4,1],[1,1,1,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[2,2,2,1],[2,3,3,0],[2,1,1,1]],[[1,2,0,1],[2,2,2,1],[2,4,3,0],[1,1,1,1]],[[1,2,0,1],[2,2,2,1],[3,3,3,0],[1,1,1,1]],[[1,2,0,1],[3,2,2,1],[2,3,3,0],[1,1,1,1]],[[2,2,0,1],[2,2,2,1],[2,3,3,0],[1,1,1,1]],[[1,2,0,1],[2,2,2,1],[2,3,3,0],[2,0,2,1]],[[1,2,0,1],[2,2,2,1],[2,4,3,0],[1,0,2,1]],[[1,1,2,0],[2,0,2,3],[2,3,3,2],[0,0,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,4,2],[0,0,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,3],[0,0,2,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[0,0,2,2]],[[2,1,2,0],[2,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[3,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,0,2,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,0,2,2],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,0,2,2],[2,4,3,2],[0,1,1,1]],[[1,1,2,0],[2,0,2,2],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,3],[0,1,1,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[0,1,1,2]],[[2,1,2,0],[2,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[3,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,0,2,3],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,0,2,2],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,0,2,2],[2,4,3,2],[0,1,2,0]],[[1,1,2,0],[2,0,2,2],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[2,0,2,2],[2,3,3,3],[0,1,2,0]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[0,1,3,0]],[[2,1,2,0],[2,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[3,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,0,2,3],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,0,2,2],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,0,2,2],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[2,0,2,2],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,3],[0,2,0,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[0,3,0,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[0,2,0,2]],[[2,1,2,0],[2,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[3,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,0,2,3],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,0,2,2],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,0,2,2],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[2,0,2,2],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[2,0,2,2],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,2,2,1],[3,3,3,0],[1,0,2,1]],[[1,2,0,1],[3,2,2,1],[2,3,3,0],[1,0,2,1]],[[2,2,0,1],[2,2,2,1],[2,3,3,0],[1,0,2,1]],[[1,2,0,1],[2,2,2,1],[2,3,3,0],[0,3,1,1]],[[2,1,2,0],[2,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[3,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,0,2,3],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,0,2,2],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,0,2,2],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[2,0,2,2],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,3],[1,0,1,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[2,0,1,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[1,0,1,2]],[[2,1,2,0],[2,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[3,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,0,2,3],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,0,2,2],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,0,2,2],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[2,0,2,2],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[2,0,2,2],[2,3,3,3],[1,0,2,0]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[2,0,2,0]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[1,0,3,0]],[[2,1,2,0],[2,0,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[3,0,2,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,0,2,3],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,0,2,2],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,0,2,2],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[2,0,2,2],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,3],[1,1,0,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[2,1,0,1]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[1,1,0,2]],[[2,1,2,0],[2,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[3,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,0,2,3],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,0,2,2],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,0,2,2],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[2,0,2,2],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[2,0,2,2],[2,3,3,3],[1,1,1,0]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[2,2,2,1],[2,4,3,0],[0,2,1,1]],[[1,2,0,1],[2,2,2,1],[3,3,3,0],[0,2,1,1]],[[1,2,0,1],[3,2,2,1],[2,3,3,0],[0,2,1,1]],[[2,2,0,1],[2,2,2,1],[2,3,3,0],[0,2,1,1]],[[1,2,0,1],[2,2,2,1],[2,4,3,0],[0,1,2,1]],[[1,2,0,1],[2,2,2,1],[3,3,3,0],[0,1,2,1]],[[1,2,0,1],[3,2,2,1],[2,3,3,0],[0,1,2,1]],[[2,2,0,1],[2,2,2,1],[2,3,3,0],[0,1,2,1]],[[2,1,2,0],[2,0,2,2],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[3,0,2,2],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,0,2,2],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,0,2,2],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[2,0,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[2,2,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[2,2,2,1],[2,4,2,1],[1,1,2,0]],[[1,1,2,0],[2,0,3,0],[1,2,4,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,0],[1,2,3,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,0],[1,2,3,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,0],[1,2,3,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,0],[1,2,3,2],[1,2,2,2]],[[1,1,2,0],[2,0,3,0],[1,4,2,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,0],[1,3,2,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,0],[1,3,2,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,0],[1,3,2,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,0],[1,3,2,2],[1,2,2,2]],[[1,1,2,0],[2,0,3,0],[1,4,3,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,0],[1,3,4,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,0],[1,3,3,2],[1,1,3,1]],[[1,1,2,0],[2,0,3,0],[1,3,3,2],[1,1,2,2]],[[1,1,2,0],[2,0,3,0],[1,4,3,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,0],[1,3,4,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,0],[1,3,3,2],[2,2,1,1]],[[1,1,2,0],[2,0,3,0],[1,3,3,2],[1,3,1,1]],[[2,1,2,0],[2,0,3,0],[2,1,3,2],[1,2,2,1]],[[1,1,2,0],[3,0,3,0],[2,1,3,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,0],[3,1,3,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,0],[2,1,4,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,0],[2,1,3,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,0],[2,1,3,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,0],[2,1,3,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,0],[2,1,3,2],[1,2,2,2]],[[2,1,2,0],[2,0,3,0],[2,2,2,2],[1,2,2,1]],[[1,1,2,0],[3,0,3,0],[2,2,2,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,0],[3,2,2,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,0],[2,2,2,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,0],[2,2,2,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,0],[2,2,2,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,0],[2,2,2,2],[1,2,2,2]],[[1,1,2,0],[2,0,3,0],[2,2,4,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,0],[2,2,3,2],[0,3,2,1]],[[1,1,2,0],[2,0,3,0],[2,2,3,2],[0,2,3,1]],[[1,1,2,0],[2,0,3,0],[2,2,3,2],[0,2,2,2]],[[2,1,2,0],[2,0,3,0],[2,2,3,2],[1,2,1,1]],[[1,1,2,0],[3,0,3,0],[2,2,3,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,0],[3,2,3,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,0],[2,2,3,2],[2,2,1,1]],[[1,1,2,0],[2,0,3,0],[2,2,3,2],[1,3,1,1]],[[2,1,2,0],[2,0,3,0],[2,3,2,2],[0,2,2,1]],[[1,1,2,0],[3,0,3,0],[2,3,2,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,0],[3,3,2,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,0],[2,4,2,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,0],[2,3,2,2],[0,3,2,1]],[[1,1,2,0],[2,0,3,0],[2,3,2,2],[0,2,3,1]],[[1,1,2,0],[2,0,3,0],[2,3,2,2],[0,2,2,2]],[[2,1,2,0],[2,0,3,0],[2,3,2,2],[1,1,2,1]],[[1,1,2,0],[3,0,3,0],[2,3,2,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,0],[3,3,2,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,0],[2,4,2,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,0],[2,3,2,2],[2,1,2,1]],[[2,1,2,0],[2,0,3,0],[2,3,3,2],[0,1,2,1]],[[1,1,2,0],[3,0,3,0],[2,3,3,2],[0,1,2,1]],[[1,1,2,0],[2,0,3,0],[3,3,3,2],[0,1,2,1]],[[1,1,2,0],[2,0,3,0],[2,4,3,2],[0,1,2,1]],[[1,1,2,0],[2,0,3,0],[2,3,4,2],[0,1,2,1]],[[1,1,2,0],[2,0,3,0],[2,3,3,2],[0,1,3,1]],[[1,1,2,0],[2,0,3,0],[2,3,3,2],[0,1,2,2]],[[2,1,2,0],[2,0,3,0],[2,3,3,2],[0,2,1,1]],[[1,1,2,0],[3,0,3,0],[2,3,3,2],[0,2,1,1]],[[1,1,2,0],[2,0,3,0],[3,3,3,2],[0,2,1,1]],[[1,1,2,0],[2,0,3,0],[2,4,3,2],[0,2,1,1]],[[1,1,2,0],[2,0,3,0],[2,3,4,2],[0,2,1,1]],[[1,1,2,0],[2,0,3,0],[2,3,3,2],[0,3,1,1]],[[2,1,2,0],[2,0,3,0],[2,3,3,2],[1,0,2,1]],[[1,1,2,0],[3,0,3,0],[2,3,3,2],[1,0,2,1]],[[1,1,2,0],[2,0,3,0],[3,3,3,2],[1,0,2,1]],[[1,1,2,0],[2,0,3,0],[2,4,3,2],[1,0,2,1]],[[1,1,2,0],[2,0,3,0],[2,3,4,2],[1,0,2,1]],[[1,1,2,0],[2,0,3,0],[2,3,3,2],[2,0,2,1]],[[1,1,2,0],[2,0,3,0],[2,3,3,2],[1,0,3,1]],[[1,1,2,0],[2,0,3,0],[2,3,3,2],[1,0,2,2]],[[2,1,2,0],[2,0,3,0],[2,3,3,2],[1,1,1,1]],[[1,1,2,0],[3,0,3,0],[2,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,0,3,0],[3,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,0,3,0],[2,4,3,2],[1,1,1,1]],[[1,1,2,0],[2,0,3,0],[2,3,4,2],[1,1,1,1]],[[1,1,2,0],[2,0,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,0,1],[2,2,2,1],[3,3,2,1],[1,1,2,0]],[[1,2,0,1],[3,2,2,1],[2,3,2,1],[1,1,2,0]],[[2,2,0,1],[2,2,2,1],[2,3,2,1],[1,1,2,0]],[[1,1,2,0],[2,0,3,1],[1,1,3,3],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,1,3,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,1],[1,1,3,2],[1,2,2,2]],[[1,1,2,0],[2,0,3,1],[1,2,2,3],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,2,2,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,2,2,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,1],[1,2,2,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,1],[1,2,2,2],[1,2,2,2]],[[1,1,3,0],[2,0,3,1],[1,2,3,1],[1,2,2,1]],[[1,1,2,0],[2,0,4,1],[1,2,3,1],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[2,0,3,1],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[2,0,3,1],[1,2,3,1],[1,2,2,2]],[[1,1,3,0],[2,0,3,1],[1,2,3,2],[1,2,1,1]],[[1,1,2,0],[2,0,4,1],[1,2,3,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,1],[1,2,4,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,1],[1,2,3,3],[1,2,1,1]],[[1,1,2,0],[2,0,3,1],[1,2,3,2],[1,2,1,2]],[[1,1,3,0],[2,0,3,1],[1,2,3,2],[1,2,2,0]],[[1,1,2,0],[2,0,4,1],[1,2,3,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,1],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,1],[1,2,3,3],[1,2,2,0]],[[1,1,2,0],[2,0,3,1],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[2,0,3,1],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[2,0,3,1],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[2,0,3,1],[1,4,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,1,3],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,1,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,1,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,1,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,1],[1,3,1,2],[1,2,2,2]],[[1,1,2,0],[2,0,3,1],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[2,0,3,1],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[2,0,3,1],[1,3,2,3],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,2,2],[1,1,3,1]],[[1,1,2,0],[2,0,3,1],[1,3,2,2],[1,1,2,2]],[[1,1,2,0],[2,0,3,1],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,1],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[2,0,3,1],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[2,0,3,1],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[2,0,3,1],[1,4,3,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,0],[2,2,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,0],[1,3,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,0],[1,2,3,1]],[[1,1,3,0],[2,0,3,1],[1,3,3,1],[1,1,2,1]],[[1,1,2,0],[2,0,4,1],[1,3,3,1],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[1,4,3,1],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,1],[1,1,2,2]],[[1,1,3,0],[2,0,3,1],[1,3,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,4,1],[1,3,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,3,1],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,3,1],[1,3,4,1],[1,2,1,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,1],[1,3,1,1]],[[1,1,2,0],[2,0,3,1],[1,3,4,2],[1,0,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,3],[1,0,2,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,2],[1,0,2,2]],[[1,1,3,0],[2,0,3,1],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,0,4,1],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,0,3,1],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[2,0,3,1],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,3],[1,1,1,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,2],[1,1,1,2]],[[1,1,3,0],[2,0,3,1],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[2,0,4,1],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[2,0,3,1],[1,4,3,2],[1,1,2,0]],[[1,1,2,0],[2,0,3,1],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[2,0,3,1],[1,3,3,3],[1,1,2,0]],[[1,1,2,0],[2,0,3,1],[1,3,3,2],[1,1,3,0]],[[1,1,3,0],[2,0,3,1],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,0,4,1],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,0,3,1],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[2,0,3,1],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,3],[1,2,0,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[2,0,3,1],[1,3,3,2],[1,2,0,2]],[[1,1,3,0],[2,0,3,1],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[2,0,4,1],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[2,0,3,1],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[2,0,3,1],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[2,0,3,1],[1,3,3,3],[1,2,1,0]],[[1,1,2,0],[2,0,3,1],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[2,0,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,2,2,1],[2,3,2,1],[0,3,2,0]],[[1,2,0,1],[2,2,2,1],[2,4,2,1],[0,2,2,0]],[[1,2,0,1],[2,2,2,1],[3,3,2,1],[0,2,2,0]],[[1,2,0,1],[3,2,2,1],[2,3,2,1],[0,2,2,0]],[[2,2,0,1],[2,2,2,1],[2,3,2,1],[0,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,0,3,3],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,0,3,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,1],[2,0,3,2],[1,2,2,2]],[[2,1,2,0],[2,0,3,1],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[3,0,3,1],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[3,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,1,2,3],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,1],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,1],[2,1,2,2],[1,2,2,2]],[[2,1,2,0],[2,0,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,3,0],[2,0,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,2,0],[3,0,3,1],[2,1,3,1],[1,2,2,1]],[[1,1,2,0],[2,0,4,1],[2,1,3,1],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[3,1,3,1],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[2,0,3,1],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[2,0,3,1],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[2,0,3,1],[2,1,3,3],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,1,3,2],[0,2,3,1]],[[1,1,2,0],[2,0,3,1],[2,1,3,2],[0,2,2,2]],[[1,1,3,0],[2,0,3,1],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[2,0,4,1],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,1],[2,1,4,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,1],[2,1,3,3],[1,2,1,1]],[[1,1,2,0],[2,0,3,1],[2,1,3,2],[1,2,1,2]],[[2,1,2,0],[2,0,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,3,0],[2,0,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[3,0,3,1],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,0,4,1],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,1],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,1,3,3],[1,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[2,0,3,1],[2,1,3,2],[1,2,3,0]],[[2,1,2,0],[2,0,3,1],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[3,0,3,1],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[3,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,1,3],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,1,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,1,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,1],[2,2,1,2],[1,2,2,2]],[[2,1,2,0],[2,0,3,1],[2,2,2,1],[1,2,2,1]],[[1,1,2,0],[3,0,3,1],[2,2,2,1],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[2,0,3,1],[2,2,2,1],[1,2,2,2]],[[1,1,2,0],[2,0,3,1],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,2,2],[0,3,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,2,2],[0,2,3,1]],[[1,1,2,0],[2,0,3,1],[2,2,2,2],[0,2,2,2]],[[2,1,2,0],[2,0,3,1],[2,2,2,2],[1,2,2,0]],[[1,1,2,0],[3,0,3,1],[2,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,1],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[2,0,3,1],[2,2,2,2],[1,2,3,0]],[[2,1,2,0],[2,0,3,1],[2,2,3,0],[1,2,2,1]],[[1,1,2,0],[3,0,3,1],[2,2,3,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[3,2,3,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,0],[2,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,0],[1,3,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,0],[1,2,3,1]],[[1,1,3,0],[2,0,3,1],[2,2,3,1],[0,2,2,1]],[[1,1,2,0],[2,0,4,1],[2,2,3,1],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,1],[0,2,2,2]],[[2,1,2,0],[2,0,3,1],[2,2,3,1],[1,2,1,1]],[[1,1,2,0],[3,0,3,1],[2,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,3,1],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,1],[1,3,1,1]],[[1,1,3,0],[2,0,3,1],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[2,0,4,1],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[2,0,3,1],[2,2,4,2],[0,2,1,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,3],[0,2,1,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,2],[0,2,1,2]],[[1,1,3,0],[2,0,3,1],[2,2,3,2],[0,2,2,0]],[[1,1,2,0],[2,0,4,1],[2,2,3,2],[0,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,2,3,3],[0,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[2,0,3,1],[2,2,3,2],[0,2,3,0]],[[2,1,2,0],[2,0,3,1],[2,2,3,2],[1,2,0,1]],[[1,1,2,0],[3,0,3,1],[2,2,3,2],[1,2,0,1]],[[1,1,2,0],[2,0,3,1],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[2,0,3,1],[2,2,3,2],[1,3,0,1]],[[2,1,2,0],[2,0,3,1],[2,2,3,2],[1,2,1,0]],[[1,1,2,0],[3,0,3,1],[2,2,3,2],[1,2,1,0]],[[1,1,2,0],[2,0,3,1],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[2,0,3,1],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[2,0,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[2,2,2,1],[2,3,2,0],[2,1,2,1]],[[1,2,0,1],[2,2,2,1],[2,4,2,0],[1,1,2,1]],[[1,2,0,1],[2,2,2,1],[3,3,2,0],[1,1,2,1]],[[1,2,0,1],[3,2,2,1],[2,3,2,0],[1,1,2,1]],[[2,2,0,1],[2,2,2,1],[2,3,2,0],[1,1,2,1]],[[1,2,0,1],[2,2,2,1],[2,3,2,0],[0,2,3,1]],[[2,1,2,0],[2,0,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[3,0,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[3,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,4,1,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,1,3],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,1,2],[0,3,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,1,2],[0,2,3,1]],[[1,1,2,0],[2,0,3,1],[2,3,1,2],[0,2,2,2]],[[2,1,2,0],[2,0,3,1],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[3,0,3,1],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[3,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[2,4,1,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,1,2],[2,1,2,1]],[[2,1,2,0],[2,0,3,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[3,0,3,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[2,0,3,1],[2,3,2,1],[0,2,2,2]],[[2,1,2,0],[2,0,3,1],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[3,0,3,1],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,2,1],[2,1,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,2,3],[0,1,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,2,2],[0,1,3,1]],[[1,1,2,0],[2,0,3,1],[2,3,2,2],[0,1,2,2]],[[2,1,2,0],[2,0,3,1],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[3,0,3,1],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,0,3,1],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[2,0,3,1],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[2,0,3,1],[2,3,2,2],[0,2,3,0]],[[1,1,2,0],[2,0,3,1],[2,3,2,3],[1,0,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,2,2],[1,0,3,1]],[[1,1,2,0],[2,0,3,1],[2,3,2,2],[1,0,2,2]],[[2,1,2,0],[2,0,3,1],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[3,0,3,1],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,0,3,1],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,0,3,1],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[2,0,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,2,2,1],[2,3,2,0],[0,3,2,1]],[[1,2,0,1],[2,2,2,1],[2,4,2,0],[0,2,2,1]],[[1,2,0,1],[2,2,2,1],[3,3,2,0],[0,2,2,1]],[[1,2,0,1],[3,2,2,1],[2,3,2,0],[0,2,2,1]],[[2,2,0,1],[2,2,2,1],[2,3,2,0],[0,2,2,1]],[[2,1,2,0],[2,0,3,1],[2,3,3,0],[0,2,2,1]],[[1,1,2,0],[3,0,3,1],[2,3,3,0],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[3,3,3,0],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,4,3,0],[0,2,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,0],[0,3,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,0],[0,2,3,1]],[[2,1,2,0],[2,0,3,1],[2,3,3,0],[1,1,2,1]],[[1,1,2,0],[3,0,3,1],[2,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[3,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[2,4,3,0],[1,1,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,0],[2,1,2,1]],[[2,1,2,0],[2,0,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,3,0],[2,0,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[3,0,3,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,0,4,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,0,3,1],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,0,3,1],[2,4,3,1],[0,1,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,1],[0,1,2,2]],[[2,1,2,0],[2,0,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,3,0],[2,0,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[3,0,3,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,0,4,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,0,3,1],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,0,3,1],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[2,0,3,1],[2,3,4,1],[0,2,1,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,1],[0,3,1,1]],[[2,1,2,0],[2,0,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,3,0],[2,0,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[3,0,3,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,0,4,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,0,3,1],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,0,3,1],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,1],[2,0,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,1],[1,0,2,2]],[[2,1,2,0],[2,0,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,3,0],[2,0,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[3,0,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,0,4,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,0,3,1],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,0,3,1],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[2,0,3,1],[2,3,4,1],[1,1,1,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,1],[2,1,1,1]],[[2,1,2,0],[2,0,3,1],[2,3,3,1],[1,2,0,1]],[[1,1,2,0],[3,0,3,1],[2,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,0,3,1],[3,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,0,3,1],[2,4,3,1],[1,2,0,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,1],[2,2,0,1]],[[1,1,3,0],[2,0,3,1],[2,3,3,2],[0,0,2,1]],[[1,1,2,0],[2,0,4,1],[2,3,3,2],[0,0,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,4,2],[0,0,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,3],[0,0,2,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[0,0,2,2]],[[2,1,2,0],[2,0,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,3,0],[2,0,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[3,0,3,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,0,4,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,0,3,1],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,0,3,1],[2,4,3,2],[0,1,1,1]],[[1,1,2,0],[2,0,3,1],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,3],[0,1,1,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[0,1,1,2]],[[2,1,2,0],[2,0,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,3,0],[2,0,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[3,0,3,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,0,4,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,0,3,1],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,0,3,1],[2,4,3,2],[0,1,2,0]],[[1,1,2,0],[2,0,3,1],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[2,0,3,1],[2,3,3,3],[0,1,2,0]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[0,1,3,0]],[[2,1,2,0],[2,0,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,3,0],[2,0,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[3,0,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,0,4,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,0,3,1],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,0,3,1],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[2,0,3,1],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,3],[0,2,0,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[0,3,0,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[0,2,0,2]],[[2,1,2,0],[2,0,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,3,0],[2,0,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[3,0,3,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,0,4,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,0,3,1],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,0,3,1],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[2,0,3,1],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[2,0,3,1],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,2,2,1],[2,3,1,1],[1,3,2,0]],[[2,1,2,0],[2,0,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,3,0],[2,0,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[3,0,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,0,4,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,0,3,1],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,0,3,1],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[2,0,3,1],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,3],[1,0,1,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[2,0,1,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[1,0,1,2]],[[2,1,2,0],[2,0,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,3,0],[2,0,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[3,0,3,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,0,4,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,0,3,1],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,0,3,1],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[2,0,3,1],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[2,0,3,1],[2,3,3,3],[1,0,2,0]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[2,0,2,0]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[1,0,3,0]],[[2,1,2,0],[2,0,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,3,0],[2,0,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[3,0,3,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,0,4,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,0,3,1],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,0,3,1],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[2,0,3,1],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,3],[1,1,0,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[2,1,0,1]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[1,1,0,2]],[[2,1,2,0],[2,0,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,3,0],[2,0,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[3,0,3,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,0,4,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,0,3,1],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,0,3,1],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[2,0,3,1],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[2,0,3,1],[2,3,3,3],[1,1,1,0]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[2,2,2,1],[2,3,1,1],[2,2,2,0]],[[1,2,0,1],[2,2,2,1],[3,3,1,1],[1,2,2,0]],[[1,2,0,1],[3,2,2,1],[2,3,1,1],[1,2,2,0]],[[2,2,0,1],[2,2,2,1],[2,3,1,1],[1,2,2,0]],[[1,2,0,1],[2,2,2,1],[2,3,1,0],[1,3,2,1]],[[1,2,0,1],[2,2,2,1],[2,3,1,0],[2,2,2,1]],[[1,2,0,1],[2,2,2,1],[3,3,1,0],[1,2,2,1]],[[1,2,0,1],[3,2,2,1],[2,3,1,0],[1,2,2,1]],[[2,2,0,1],[2,2,2,1],[2,3,1,0],[1,2,2,1]],[[2,1,2,0],[2,0,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[3,0,3,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,0,3,1],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,0,3,1],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[2,0,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[2,2,2,1],[2,2,3,2],[2,2,0,0]],[[1,2,0,1],[2,2,2,1],[3,2,3,2],[1,2,0,0]],[[1,2,0,1],[3,2,2,1],[2,2,3,2],[1,2,0,0]],[[1,3,0,1],[2,2,2,1],[2,2,3,2],[1,2,0,0]],[[2,2,0,1],[2,2,2,1],[2,2,3,2],[1,2,0,0]],[[1,2,0,1],[2,2,2,1],[2,2,3,2],[2,1,1,0]],[[1,2,0,1],[2,2,2,1],[3,2,3,2],[1,1,1,0]],[[1,2,0,1],[3,2,2,1],[2,2,3,2],[1,1,1,0]],[[1,3,0,1],[2,2,2,1],[2,2,3,2],[1,1,1,0]],[[2,2,0,1],[2,2,2,1],[2,2,3,2],[1,1,1,0]],[[1,2,0,1],[2,2,2,1],[2,2,3,2],[2,1,0,1]],[[1,2,0,1],[2,2,2,1],[3,2,3,2],[1,1,0,1]],[[1,1,3,0],[2,0,3,2],[1,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,4,2],[1,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,3],[1,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,2,1,3],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,2,1,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,2,1,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,2],[1,2,1,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,2],[1,2,1,2],[1,2,2,2]],[[1,1,3,0],[2,0,3,2],[1,2,2,2],[1,2,1,1]],[[1,1,2,0],[2,0,4,2],[1,2,2,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,3],[1,2,2,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,2],[1,2,2,3],[1,2,1,1]],[[1,1,2,0],[2,0,3,2],[1,2,2,2],[1,2,1,2]],[[1,1,3,0],[2,0,3,2],[1,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,4,2],[1,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,3],[1,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,2],[1,2,2,3],[1,2,2,0]],[[1,1,3,0],[2,0,3,2],[1,2,3,0],[1,2,2,1]],[[1,1,2,0],[2,0,4,2],[1,2,3,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,3],[1,2,3,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,2,4,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,2,3,0],[2,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,2,3,0],[1,3,2,1]],[[1,1,2,0],[2,0,3,2],[1,2,3,0],[1,2,3,1]],[[1,1,2,0],[2,0,3,2],[1,2,3,0],[1,2,2,2]],[[1,1,3,0],[2,0,3,2],[1,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,4,2],[1,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,3,3],[1,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,3,2],[1,2,4,1],[1,2,1,1]],[[1,1,3,0],[2,0,3,2],[1,2,3,1],[1,2,2,0]],[[1,1,2,0],[2,0,4,2],[1,2,3,1],[1,2,2,0]],[[1,1,2,0],[2,0,3,3],[1,2,3,1],[1,2,2,0]],[[1,1,2,0],[2,0,3,2],[1,2,4,1],[1,2,2,0]],[[1,1,2,0],[2,0,3,2],[1,2,3,1],[2,2,2,0]],[[1,1,2,0],[2,0,3,2],[1,2,3,1],[1,3,2,0]],[[1,1,2,0],[2,0,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,0,1],[3,2,2,1],[2,2,3,2],[1,1,0,1]],[[1,3,0,1],[2,2,2,1],[2,2,3,2],[1,1,0,1]],[[2,2,0,1],[2,2,2,1],[2,2,3,2],[1,1,0,1]],[[1,2,0,1],[2,2,2,1],[2,2,3,2],[2,0,2,0]],[[1,1,3,0],[2,0,3,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,0,4,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,3],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,4,0,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,3,0,3],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,3,0,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,3,0,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,2],[1,3,0,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,2],[1,3,0,2],[1,2,2,2]],[[1,1,3,0],[2,0,3,2],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,0,4,2],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,3],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,2],[1,3,1,3],[1,1,2,1]],[[1,1,2,0],[2,0,3,2],[1,3,1,2],[1,1,3,1]],[[1,1,2,0],[2,0,3,2],[1,3,1,2],[1,1,2,2]],[[1,1,2,0],[2,0,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,3,2,0],[2,2,2,1]],[[1,1,2,0],[2,0,3,2],[1,3,2,0],[1,3,2,1]],[[1,1,2,0],[2,0,3,2],[1,3,2,0],[1,2,3,1]],[[1,1,2,0],[2,0,3,2],[1,3,2,0],[1,2,2,2]],[[1,1,2,0],[2,0,3,2],[1,4,2,1],[1,2,2,0]],[[1,1,2,0],[2,0,3,2],[1,3,2,1],[2,2,2,0]],[[1,1,2,0],[2,0,3,2],[1,3,2,1],[1,3,2,0]],[[1,1,2,0],[2,0,3,2],[1,3,2,1],[1,2,3,0]],[[1,1,3,0],[2,0,3,2],[1,3,2,2],[1,1,1,1]],[[1,1,2,0],[2,0,4,2],[1,3,2,2],[1,1,1,1]],[[1,1,2,0],[2,0,3,3],[1,3,2,2],[1,1,1,1]],[[1,1,2,0],[2,0,3,2],[1,3,2,3],[1,1,1,1]],[[1,1,2,0],[2,0,3,2],[1,3,2,2],[1,1,1,2]],[[1,1,3,0],[2,0,3,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,0,4,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,0,3,3],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,0,3,2],[1,3,2,3],[1,1,2,0]],[[1,1,3,0],[2,0,3,2],[1,3,2,2],[1,2,0,1]],[[1,1,2,0],[2,0,4,2],[1,3,2,2],[1,2,0,1]],[[1,1,2,0],[2,0,3,3],[1,3,2,2],[1,2,0,1]],[[1,1,2,0],[2,0,3,2],[1,3,2,3],[1,2,0,1]],[[1,1,2,0],[2,0,3,2],[1,3,2,2],[1,2,0,2]],[[1,1,3,0],[2,0,3,2],[1,3,2,2],[1,2,1,0]],[[1,1,2,0],[2,0,4,2],[1,3,2,2],[1,2,1,0]],[[1,1,2,0],[2,0,3,3],[1,3,2,2],[1,2,1,0]],[[1,1,2,0],[2,0,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,0,1],[2,2,2,1],[3,2,3,2],[1,0,2,0]],[[1,2,0,1],[3,2,2,1],[2,2,3,2],[1,0,2,0]],[[1,3,0,1],[2,2,2,1],[2,2,3,2],[1,0,2,0]],[[2,2,0,1],[2,2,2,1],[2,2,3,2],[1,0,2,0]],[[1,2,0,1],[2,2,2,1],[2,2,3,2],[2,0,1,1]],[[1,2,0,1],[2,2,2,1],[3,2,3,2],[1,0,1,1]],[[1,2,0,1],[3,2,2,1],[2,2,3,2],[1,0,1,1]],[[1,3,0,1],[2,2,2,1],[2,2,3,2],[1,0,1,1]],[[2,2,0,1],[2,2,2,1],[2,2,3,2],[1,0,1,1]],[[1,1,3,0],[2,0,3,2],[1,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,0,4,2],[1,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,0,3,3],[1,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,0,3,2],[1,4,3,0],[1,1,2,1]],[[1,1,2,0],[2,0,3,2],[1,3,4,0],[1,1,2,1]],[[1,1,2,0],[2,0,3,2],[1,3,3,0],[1,1,3,1]],[[1,1,2,0],[2,0,3,2],[1,3,3,0],[1,1,2,2]],[[1,1,3,0],[2,0,3,2],[1,3,3,0],[1,2,1,1]],[[1,1,2,0],[2,0,4,2],[1,3,3,0],[1,2,1,1]],[[1,1,2,0],[2,0,3,3],[1,3,3,0],[1,2,1,1]],[[1,1,2,0],[2,0,3,2],[1,4,3,0],[1,2,1,1]],[[1,1,2,0],[2,0,3,2],[1,3,4,0],[1,2,1,1]],[[1,1,2,0],[2,0,3,2],[1,3,3,0],[2,2,1,1]],[[1,1,2,0],[2,0,3,2],[1,3,3,0],[1,3,1,1]],[[1,1,3,0],[2,0,3,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,0,4,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,0,3,3],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,0,3,2],[1,4,3,1],[1,1,1,1]],[[1,1,2,0],[2,0,3,2],[1,3,4,1],[1,1,1,1]],[[1,1,3,0],[2,0,3,2],[1,3,3,1],[1,1,2,0]],[[1,1,2,0],[2,0,4,2],[1,3,3,1],[1,1,2,0]],[[1,1,2,0],[2,0,3,3],[1,3,3,1],[1,1,2,0]],[[1,1,2,0],[2,0,3,2],[1,4,3,1],[1,1,2,0]],[[1,1,2,0],[2,0,3,2],[1,3,4,1],[1,1,2,0]],[[1,1,2,0],[2,0,3,2],[1,3,3,1],[1,1,3,0]],[[1,1,3,0],[2,0,3,2],[1,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,0,4,2],[1,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,0,3,3],[1,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,0,3,2],[1,4,3,1],[1,2,0,1]],[[1,1,2,0],[2,0,3,2],[1,3,4,1],[1,2,0,1]],[[1,1,2,0],[2,0,3,2],[1,3,3,1],[2,2,0,1]],[[1,1,2,0],[2,0,3,2],[1,3,3,1],[1,3,0,1]],[[1,1,3,0],[2,0,3,2],[1,3,3,1],[1,2,1,0]],[[1,1,2,0],[2,0,4,2],[1,3,3,1],[1,2,1,0]],[[1,1,2,0],[2,0,3,3],[1,3,3,1],[1,2,1,0]],[[1,1,2,0],[2,0,3,2],[1,4,3,1],[1,2,1,0]],[[1,1,2,0],[2,0,3,2],[1,3,4,1],[1,2,1,0]],[[1,1,2,0],[2,0,3,2],[1,3,3,1],[2,2,1,0]],[[1,1,2,0],[2,0,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,2,2,1],[3,2,3,2],[0,2,1,0]],[[1,2,0,1],[3,2,2,1],[2,2,3,2],[0,2,1,0]],[[1,3,0,1],[2,2,2,1],[2,2,3,2],[0,2,1,0]],[[2,2,0,1],[2,2,2,1],[2,2,3,2],[0,2,1,0]],[[1,2,0,1],[2,2,2,1],[3,2,3,2],[0,2,0,1]],[[1,2,0,1],[3,2,2,1],[2,2,3,2],[0,2,0,1]],[[1,3,0,1],[2,2,2,1],[2,2,3,2],[0,2,0,1]],[[2,2,0,1],[2,2,2,1],[2,2,3,2],[0,2,0,1]],[[1,2,0,1],[2,2,2,1],[3,2,3,2],[0,1,2,0]],[[1,2,0,1],[3,2,2,1],[2,2,3,2],[0,1,2,0]],[[1,3,0,1],[2,2,2,1],[2,2,3,2],[0,1,2,0]],[[2,2,0,1],[2,2,2,1],[2,2,3,2],[0,1,2,0]],[[1,2,0,1],[2,2,2,1],[3,2,3,2],[0,1,1,1]],[[1,2,0,1],[3,2,2,1],[2,2,3,2],[0,1,1,1]],[[1,3,0,1],[2,2,2,1],[2,2,3,2],[0,1,1,1]],[[2,2,0,1],[2,2,2,1],[2,2,3,2],[0,1,1,1]],[[2,1,2,0],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,3,0],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[3,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,4,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,3],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[3,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,1,1,3],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,1,1,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,1,1,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,2],[2,1,1,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,2],[2,1,1,2],[1,2,2,2]],[[1,1,3,0],[2,0,3,2],[2,1,2,2],[1,2,1,1]],[[1,1,2,0],[2,0,4,2],[2,1,2,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,3],[2,1,2,2],[1,2,1,1]],[[1,1,2,0],[2,0,3,2],[2,1,2,3],[1,2,1,1]],[[1,1,2,0],[2,0,3,2],[2,1,2,2],[1,2,1,2]],[[1,1,3,0],[2,0,3,2],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,4,2],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,3],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[2,0,3,2],[2,1,2,3],[1,2,2,0]],[[2,1,2,0],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,3,0],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[3,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[2,0,4,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,3],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[3,1,3,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,1,4,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,1,3,0],[2,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,1,3,0],[1,3,2,1]],[[1,1,2,0],[2,0,3,2],[2,1,3,0],[1,2,3,1]],[[1,1,2,0],[2,0,3,2],[2,1,3,0],[1,2,2,2]],[[1,1,3,0],[2,0,3,2],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,4,2],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,3,3],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[2,0,3,2],[2,1,4,1],[1,2,1,1]],[[2,1,2,0],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,3,0],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,0],[3,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,0],[2,0,4,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,0],[2,0,3,3],[2,1,3,1],[1,2,2,0]],[[1,1,2,0],[2,0,3,2],[3,1,3,1],[1,2,2,0]],[[1,1,2,0],[2,0,3,2],[2,1,4,1],[1,2,2,0]],[[1,1,2,0],[2,0,3,2],[2,1,3,1],[2,2,2,0]],[[1,1,2,0],[2,0,3,2],[2,1,3,1],[1,3,2,0]],[[1,1,2,0],[2,0,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,0,1],[2,2,2,1],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[2,2,2,1],[2,2,3,1],[2,2,1,0]],[[1,2,0,1],[2,2,2,1],[3,2,3,1],[1,2,1,0]],[[1,2,0,1],[3,2,2,1],[2,2,3,1],[1,2,1,0]],[[2,2,0,1],[2,2,2,1],[2,2,3,1],[1,2,1,0]],[[1,2,0,1],[2,2,2,1],[2,2,3,1],[2,1,1,1]],[[2,1,2,0],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,3,0],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[3,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[2,0,4,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,3],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[3,2,0,2],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,0,3],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,0,2],[2,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,0,2],[1,3,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,0,2],[1,2,3,1]],[[1,1,2,0],[2,0,3,2],[2,2,0,2],[1,2,2,2]],[[1,1,3,0],[2,0,3,2],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[2,0,4,2],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,3],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,1,3],[0,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,1,2],[0,3,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,1,2],[0,2,3,1]],[[1,1,2,0],[2,0,3,2],[2,2,1,2],[0,2,2,2]],[[2,1,2,0],[2,0,3,2],[2,2,2,0],[1,2,2,1]],[[1,1,2,0],[3,0,3,2],[2,2,2,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[3,2,2,0],[1,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,2,0],[2,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,2,0],[1,3,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,2,0],[1,2,3,1]],[[1,1,2,0],[2,0,3,2],[2,2,2,0],[1,2,2,2]],[[2,1,2,0],[2,0,3,2],[2,2,2,1],[1,2,2,0]],[[1,1,2,0],[3,0,3,2],[2,2,2,1],[1,2,2,0]],[[1,1,2,0],[2,0,3,2],[3,2,2,1],[1,2,2,0]],[[1,1,2,0],[2,0,3,2],[2,2,2,1],[2,2,2,0]],[[1,1,2,0],[2,0,3,2],[2,2,2,1],[1,3,2,0]],[[1,1,2,0],[2,0,3,2],[2,2,2,1],[1,2,3,0]],[[1,1,3,0],[2,0,3,2],[2,2,2,2],[0,2,1,1]],[[1,1,2,0],[2,0,4,2],[2,2,2,2],[0,2,1,1]],[[1,1,2,0],[2,0,3,3],[2,2,2,2],[0,2,1,1]],[[1,1,2,0],[2,0,3,2],[2,2,2,3],[0,2,1,1]],[[1,1,2,0],[2,0,3,2],[2,2,2,2],[0,2,1,2]],[[1,1,3,0],[2,0,3,2],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[2,0,4,2],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[2,0,3,3],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[2,0,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,0,1],[2,2,2,1],[3,2,3,1],[1,1,1,1]],[[1,2,0,1],[3,2,2,1],[2,2,3,1],[1,1,1,1]],[[1,3,0,1],[2,2,2,1],[2,2,3,1],[1,1,1,1]],[[2,2,0,1],[2,2,2,1],[2,2,3,1],[1,1,1,1]],[[1,2,0,1],[2,2,2,1],[2,2,3,1],[2,0,2,1]],[[1,2,0,1],[2,2,2,1],[3,2,3,1],[1,0,2,1]],[[1,2,0,1],[3,2,2,1],[2,2,3,1],[1,0,2,1]],[[1,3,0,1],[2,2,2,1],[2,2,3,1],[1,0,2,1]],[[2,2,0,1],[2,2,2,1],[2,2,3,1],[1,0,2,1]],[[1,1,3,0],[2,0,3,2],[2,2,3,0],[0,2,2,1]],[[1,1,2,0],[2,0,4,2],[2,2,3,0],[0,2,2,1]],[[1,1,2,0],[2,0,3,3],[2,2,3,0],[0,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,4,0],[0,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,3,0],[0,3,2,1]],[[1,1,2,0],[2,0,3,2],[2,2,3,0],[0,2,3,1]],[[1,1,2,0],[2,0,3,2],[2,2,3,0],[0,2,2,2]],[[2,1,2,0],[2,0,3,2],[2,2,3,0],[1,2,1,1]],[[1,1,2,0],[3,0,3,2],[2,2,3,0],[1,2,1,1]],[[1,1,2,0],[2,0,3,2],[3,2,3,0],[1,2,1,1]],[[1,1,2,0],[2,0,3,2],[2,2,3,0],[2,2,1,1]],[[1,1,2,0],[2,0,3,2],[2,2,3,0],[1,3,1,1]],[[1,1,3,0],[2,0,3,2],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[2,0,4,2],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[2,0,3,3],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[2,0,3,2],[2,2,4,1],[0,2,1,1]],[[1,1,3,0],[2,0,3,2],[2,2,3,1],[0,2,2,0]],[[1,1,2,0],[2,0,4,2],[2,2,3,1],[0,2,2,0]],[[1,1,2,0],[2,0,3,3],[2,2,3,1],[0,2,2,0]],[[1,1,2,0],[2,0,3,2],[2,2,4,1],[0,2,2,0]],[[1,1,2,0],[2,0,3,2],[2,2,3,1],[0,3,2,0]],[[1,1,2,0],[2,0,3,2],[2,2,3,1],[0,2,3,0]],[[2,1,2,0],[2,0,3,2],[2,2,3,1],[1,2,0,1]],[[1,1,2,0],[3,0,3,2],[2,2,3,1],[1,2,0,1]],[[1,1,2,0],[2,0,3,2],[3,2,3,1],[1,2,0,1]],[[1,1,2,0],[2,0,3,2],[2,2,3,1],[2,2,0,1]],[[1,1,2,0],[2,0,3,2],[2,2,3,1],[1,3,0,1]],[[2,1,2,0],[2,0,3,2],[2,2,3,1],[1,2,1,0]],[[1,1,2,0],[3,0,3,2],[2,2,3,1],[1,2,1,0]],[[1,1,2,0],[2,0,3,2],[3,2,3,1],[1,2,1,0]],[[1,1,2,0],[2,0,3,2],[2,2,3,1],[2,2,1,0]],[[1,1,2,0],[2,0,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[2,2,2,1],[3,2,3,1],[0,2,1,1]],[[1,2,0,1],[3,2,2,1],[2,2,3,1],[0,2,1,1]],[[1,3,0,1],[2,2,2,1],[2,2,3,1],[0,2,1,1]],[[2,2,0,1],[2,2,2,1],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[2,2,2,1],[3,2,3,1],[0,1,2,1]],[[1,2,0,1],[3,2,2,1],[2,2,3,1],[0,1,2,1]],[[1,3,0,1],[2,2,2,1],[2,2,3,1],[0,1,2,1]],[[2,2,0,1],[2,2,2,1],[2,2,3,1],[0,1,2,1]],[[1,2,0,1],[2,2,2,1],[2,2,3,0],[1,3,1,1]],[[1,2,0,1],[2,2,2,1],[2,2,3,0],[2,2,1,1]],[[1,2,0,1],[2,2,2,1],[3,2,3,0],[1,2,1,1]],[[1,2,0,1],[3,2,2,1],[2,2,3,0],[1,2,1,1]],[[2,2,0,1],[2,2,2,1],[2,2,3,0],[1,2,1,1]],[[1,2,0,1],[2,2,2,1],[2,2,2,2],[2,1,2,0]],[[1,2,0,1],[2,2,2,1],[3,2,2,2],[1,1,2,0]],[[1,2,0,1],[3,2,2,1],[2,2,2,2],[1,1,2,0]],[[1,3,0,1],[2,2,2,1],[2,2,2,2],[1,1,2,0]],[[2,2,0,1],[2,2,2,1],[2,2,2,2],[1,1,2,0]],[[1,2,0,1],[2,2,2,1],[3,2,2,2],[0,2,2,0]],[[1,2,0,1],[3,2,2,1],[2,2,2,2],[0,2,2,0]],[[1,3,0,1],[2,2,2,1],[2,2,2,2],[0,2,2,0]],[[2,1,2,0],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,3,0],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[3,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,0,4,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,3],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,2],[3,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,4,0,2],[0,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,0,3],[0,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,0,2],[0,3,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,0,2],[0,2,3,1]],[[1,1,2,0],[2,0,3,2],[2,3,0,2],[0,2,2,2]],[[2,1,2,0],[2,0,3,2],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[3,0,3,2],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,2],[3,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,2],[2,4,0,2],[1,1,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,0,2],[2,1,2,1]],[[1,1,3,0],[2,0,3,2],[2,3,1,2],[0,1,2,1]],[[1,1,2,0],[2,0,4,2],[2,3,1,2],[0,1,2,1]],[[1,1,2,0],[2,0,3,3],[2,3,1,2],[0,1,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,1,3],[0,1,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,1,2],[0,1,3,1]],[[1,1,2,0],[2,0,3,2],[2,3,1,2],[0,1,2,2]],[[1,1,3,0],[2,0,3,2],[2,3,1,2],[1,0,2,1]],[[1,1,2,0],[2,0,4,2],[2,3,1,2],[1,0,2,1]],[[1,1,2,0],[2,0,3,3],[2,3,1,2],[1,0,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,1,3],[1,0,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,1,2],[1,0,3,1]],[[1,1,2,0],[2,0,3,2],[2,3,1,2],[1,0,2,2]],[[2,2,0,1],[2,2,2,1],[2,2,2,2],[0,2,2,0]],[[1,2,0,1],[2,2,2,1],[2,2,2,1],[1,3,2,0]],[[1,2,0,1],[2,2,2,1],[2,2,2,1],[2,2,2,0]],[[1,2,0,1],[2,2,2,1],[3,2,2,1],[1,2,2,0]],[[2,1,2,0],[2,0,3,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,0],[3,0,3,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,0],[2,0,3,2],[3,3,2,0],[0,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,4,2,0],[0,2,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,0],[0,3,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,0],[0,2,3,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,0],[0,2,2,2]],[[2,1,2,0],[2,0,3,2],[2,3,2,0],[1,1,2,1]],[[1,1,2,0],[3,0,3,2],[2,3,2,0],[1,1,2,1]],[[1,1,2,0],[2,0,3,2],[3,3,2,0],[1,1,2,1]],[[1,1,2,0],[2,0,3,2],[2,4,2,0],[1,1,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,0],[2,1,2,1]],[[2,1,2,0],[2,0,3,2],[2,3,2,1],[0,2,2,0]],[[1,1,2,0],[3,0,3,2],[2,3,2,1],[0,2,2,0]],[[1,1,2,0],[2,0,3,2],[3,3,2,1],[0,2,2,0]],[[1,1,2,0],[2,0,3,2],[2,4,2,1],[0,2,2,0]],[[1,1,2,0],[2,0,3,2],[2,3,2,1],[0,3,2,0]],[[1,1,2,0],[2,0,3,2],[2,3,2,1],[0,2,3,0]],[[2,1,2,0],[2,0,3,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,0],[3,0,3,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,0],[2,0,3,2],[3,3,2,1],[1,1,2,0]],[[1,1,2,0],[2,0,3,2],[2,4,2,1],[1,1,2,0]],[[1,1,2,0],[2,0,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[3,2,2,1],[2,2,2,1],[1,2,2,0]],[[2,2,0,1],[2,2,2,1],[2,2,2,1],[1,2,2,0]],[[1,2,0,1],[2,2,2,1],[2,2,2,1],[2,1,2,1]],[[1,2,0,1],[2,2,2,1],[3,2,2,1],[1,1,2,1]],[[1,2,0,1],[3,2,2,1],[2,2,2,1],[1,1,2,1]],[[1,3,0,1],[2,2,2,1],[2,2,2,1],[1,1,2,1]],[[2,2,0,1],[2,2,2,1],[2,2,2,1],[1,1,2,1]],[[1,2,0,1],[2,2,2,1],[3,2,2,1],[0,2,2,1]],[[1,1,3,0],[2,0,3,2],[2,3,2,2],[0,0,2,1]],[[1,1,2,0],[2,0,4,2],[2,3,2,2],[0,0,2,1]],[[1,1,2,0],[2,0,3,3],[2,3,2,2],[0,0,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,3],[0,0,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,2],[0,0,2,2]],[[1,1,3,0],[2,0,3,2],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[2,0,4,2],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[2,0,3,3],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,3],[0,1,1,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,2],[0,1,1,2]],[[1,1,3,0],[2,0,3,2],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[2,0,4,2],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[2,0,3,3],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[2,0,3,2],[2,3,2,3],[0,1,2,0]],[[1,1,3,0],[2,0,3,2],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[2,0,4,2],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[2,0,3,3],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,3],[0,2,0,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,2],[0,2,0,2]],[[1,1,3,0],[2,0,3,2],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[2,0,4,2],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[2,0,3,3],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[2,0,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,0,1],[3,2,2,1],[2,2,2,1],[0,2,2,1]],[[1,3,0,1],[2,2,2,1],[2,2,2,1],[0,2,2,1]],[[2,2,0,1],[2,2,2,1],[2,2,2,1],[0,2,2,1]],[[1,2,0,1],[2,2,2,1],[2,2,2,0],[1,2,3,1]],[[1,2,0,1],[2,2,2,1],[2,2,2,0],[1,3,2,1]],[[1,2,0,1],[2,2,2,1],[2,2,2,0],[2,2,2,1]],[[1,2,0,1],[2,2,2,1],[3,2,2,0],[1,2,2,1]],[[1,2,0,1],[3,2,2,1],[2,2,2,0],[1,2,2,1]],[[2,2,0,1],[2,2,2,1],[2,2,2,0],[1,2,2,1]],[[1,1,3,0],[2,0,3,2],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[2,0,4,2],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[2,0,3,3],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,3],[1,0,1,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,2],[1,0,1,2]],[[1,1,3,0],[2,0,3,2],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[2,0,4,2],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[2,0,3,3],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[2,0,3,2],[2,3,2,3],[1,0,2,0]],[[1,1,3,0],[2,0,3,2],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[2,0,4,2],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[2,0,3,3],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,3],[1,1,0,1]],[[1,1,2,0],[2,0,3,2],[2,3,2,2],[1,1,0,2]],[[1,1,3,0],[2,0,3,2],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[2,0,4,2],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[2,0,3,3],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[2,0,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,0,1],[2,2,2,1],[2,2,1,2],[2,1,2,1]],[[1,2,0,1],[2,2,2,1],[3,2,1,2],[1,1,2,1]],[[1,2,0,1],[3,2,2,1],[2,2,1,2],[1,1,2,1]],[[1,3,0,1],[2,2,2,1],[2,2,1,2],[1,1,2,1]],[[2,2,0,1],[2,2,2,1],[2,2,1,2],[1,1,2,1]],[[1,2,0,1],[2,2,2,1],[3,2,1,2],[0,2,2,1]],[[1,2,0,1],[3,2,2,1],[2,2,1,2],[0,2,2,1]],[[1,3,0,1],[2,2,2,1],[2,2,1,2],[0,2,2,1]],[[2,2,0,1],[2,2,2,1],[2,2,1,2],[0,2,2,1]],[[1,2,0,1],[2,2,2,1],[2,1,3,2],[1,3,1,0]],[[1,2,0,1],[2,2,2,1],[2,1,3,2],[2,2,1,0]],[[1,2,0,1],[2,2,2,1],[3,1,3,2],[1,2,1,0]],[[1,2,0,1],[3,2,2,1],[2,1,3,2],[1,2,1,0]],[[1,3,0,1],[2,2,2,1],[2,1,3,2],[1,2,1,0]],[[2,1,2,0],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,3,0],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[3,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[2,0,4,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[2,0,3,3],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[2,0,3,2],[3,3,3,0],[0,1,2,1]],[[1,1,2,0],[2,0,3,2],[2,4,3,0],[0,1,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,4,0],[0,1,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,0],[0,1,3,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,0],[0,1,2,2]],[[2,1,2,0],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,3,0],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[3,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[2,0,4,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[2,0,3,3],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[2,0,3,2],[3,3,3,0],[0,2,1,1]],[[1,1,2,0],[2,0,3,2],[2,4,3,0],[0,2,1,1]],[[1,1,2,0],[2,0,3,2],[2,3,4,0],[0,2,1,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,0],[0,3,1,1]],[[2,1,2,0],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,3,0],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[3,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[2,0,4,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[2,0,3,3],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[2,0,3,2],[3,3,3,0],[1,0,2,1]],[[1,1,2,0],[2,0,3,2],[2,4,3,0],[1,0,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,4,0],[1,0,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,0],[2,0,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,0],[1,0,3,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,0],[1,0,2,2]],[[2,1,2,0],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,3,0],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[3,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[2,0,4,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[2,0,3,3],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[2,0,3,2],[3,3,3,0],[1,1,1,1]],[[1,1,2,0],[2,0,3,2],[2,4,3,0],[1,1,1,1]],[[1,1,2,0],[2,0,3,2],[2,3,4,0],[1,1,1,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,0],[2,1,1,1]],[[2,1,2,0],[2,0,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,0],[3,0,3,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,0],[2,0,3,2],[3,3,3,0],[1,2,0,1]],[[1,1,2,0],[2,0,3,2],[2,4,3,0],[1,2,0,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,0],[2,2,0,1]],[[2,2,0,1],[2,2,2,1],[2,1,3,2],[1,2,1,0]],[[1,2,0,1],[2,2,2,1],[2,1,3,2],[1,3,0,1]],[[1,2,0,1],[2,2,2,1],[2,1,3,2],[2,2,0,1]],[[1,2,0,1],[2,2,2,1],[3,1,3,2],[1,2,0,1]],[[1,2,0,1],[3,2,2,1],[2,1,3,2],[1,2,0,1]],[[1,3,0,1],[2,2,2,1],[2,1,3,2],[1,2,0,1]],[[2,2,0,1],[2,2,2,1],[2,1,3,2],[1,2,0,1]],[[1,1,3,0],[2,0,3,2],[2,3,3,1],[0,0,2,1]],[[1,1,2,0],[2,0,4,2],[2,3,3,1],[0,0,2,1]],[[1,1,2,0],[2,0,3,3],[2,3,3,1],[0,0,2,1]],[[1,1,2,0],[2,0,3,2],[2,3,4,1],[0,0,2,1]],[[2,1,2,0],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,3,0],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,0],[3,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,0],[2,0,4,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,0],[2,0,3,3],[2,3,3,1],[0,1,1,1]],[[1,1,2,0],[2,0,3,2],[3,3,3,1],[0,1,1,1]],[[1,1,2,0],[2,0,3,2],[2,4,3,1],[0,1,1,1]],[[1,1,2,0],[2,0,3,2],[2,3,4,1],[0,1,1,1]],[[2,1,2,0],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,3,0],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[3,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[2,0,4,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[2,0,3,3],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[2,0,3,2],[3,3,3,1],[0,1,2,0]],[[1,1,2,0],[2,0,3,2],[2,4,3,1],[0,1,2,0]],[[1,1,2,0],[2,0,3,2],[2,3,4,1],[0,1,2,0]],[[1,1,2,0],[2,0,3,2],[2,3,3,1],[0,1,3,0]],[[2,1,2,0],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,3,0],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[3,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,0,4,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,0,3,3],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,0,3,2],[3,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,0,3,2],[2,4,3,1],[0,2,0,1]],[[1,1,2,0],[2,0,3,2],[2,3,4,1],[0,2,0,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,1],[0,3,0,1]],[[2,1,2,0],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,3,0],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[3,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[2,0,4,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[2,0,3,3],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[2,0,3,2],[3,3,3,1],[0,2,1,0]],[[1,1,2,0],[2,0,3,2],[2,4,3,1],[0,2,1,0]],[[1,1,2,0],[2,0,3,2],[2,3,4,1],[0,2,1,0]],[[1,1,2,0],[2,0,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[2,2,2,1],[2,1,3,1],[1,3,1,1]],[[1,2,0,1],[2,2,2,1],[2,1,3,1],[2,2,1,1]],[[1,2,0,1],[2,2,2,1],[3,1,3,1],[1,2,1,1]],[[1,2,0,1],[3,2,2,1],[2,1,3,1],[1,2,1,1]],[[1,3,0,1],[2,2,2,1],[2,1,3,1],[1,2,1,1]],[[2,2,0,1],[2,2,2,1],[2,1,3,1],[1,2,1,1]],[[2,1,2,0],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,3,0],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[3,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[2,0,4,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[2,0,3,3],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[2,0,3,2],[3,3,3,1],[1,0,1,1]],[[1,1,2,0],[2,0,3,2],[2,4,3,1],[1,0,1,1]],[[1,1,2,0],[2,0,3,2],[2,3,4,1],[1,0,1,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,1],[2,0,1,1]],[[2,1,2,0],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,3,0],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[3,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[2,0,4,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[2,0,3,3],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[2,0,3,2],[3,3,3,1],[1,0,2,0]],[[1,1,2,0],[2,0,3,2],[2,4,3,1],[1,0,2,0]],[[1,1,2,0],[2,0,3,2],[2,3,4,1],[1,0,2,0]],[[1,1,2,0],[2,0,3,2],[2,3,3,1],[2,0,2,0]],[[1,1,2,0],[2,0,3,2],[2,3,3,1],[1,0,3,0]],[[2,1,2,0],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,3,0],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[3,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[2,0,4,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[2,0,3,3],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[2,0,3,2],[3,3,3,1],[1,1,0,1]],[[1,1,2,0],[2,0,3,2],[2,4,3,1],[1,1,0,1]],[[1,1,2,0],[2,0,3,2],[2,3,4,1],[1,1,0,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,1],[2,1,0,1]],[[2,1,2,0],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,3,0],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[3,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[2,0,4,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[2,0,3,3],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[2,0,3,2],[3,3,3,1],[1,1,1,0]],[[1,1,2,0],[2,0,3,2],[2,4,3,1],[1,1,1,0]],[[1,1,2,0],[2,0,3,2],[2,3,4,1],[1,1,1,0]],[[1,1,2,0],[2,0,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[2,2,2,1],[2,1,2,2],[1,2,3,0]],[[1,2,0,1],[2,2,2,1],[2,1,2,2],[1,3,2,0]],[[1,2,0,1],[2,2,2,1],[2,1,2,2],[2,2,2,0]],[[2,1,2,0],[2,0,3,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,0],[3,0,3,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,0],[2,0,3,2],[3,3,3,1],[1,2,0,0]],[[1,1,2,0],[2,0,3,2],[2,4,3,1],[1,2,0,0]],[[1,1,2,0],[2,0,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[2,2,2,1],[3,1,2,2],[1,2,2,0]],[[1,2,0,1],[3,2,2,1],[2,1,2,2],[1,2,2,0]],[[1,3,0,1],[2,2,2,1],[2,1,2,2],[1,2,2,0]],[[2,2,0,1],[2,2,2,1],[2,1,2,2],[1,2,2,0]],[[1,2,0,1],[2,2,2,1],[2,1,2,1],[1,2,2,2]],[[1,2,0,1],[2,2,2,1],[2,1,2,1],[1,2,3,1]],[[1,2,0,1],[2,2,2,1],[2,1,2,1],[1,3,2,1]],[[1,2,0,1],[2,2,2,1],[2,1,2,1],[2,2,2,1]],[[1,2,0,1],[2,2,2,1],[3,1,2,1],[1,2,2,1]],[[1,2,0,1],[3,2,2,1],[2,1,2,1],[1,2,2,1]],[[1,3,0,1],[2,2,2,1],[2,1,2,1],[1,2,2,1]],[[2,2,0,1],[2,2,2,1],[2,1,2,1],[1,2,2,1]],[[1,2,0,1],[2,2,2,1],[2,1,1,2],[1,2,2,2]],[[1,2,0,1],[2,2,2,1],[2,1,1,2],[1,2,3,1]],[[1,2,0,1],[2,2,2,1],[2,1,1,2],[1,3,2,1]],[[1,2,0,1],[2,2,2,1],[2,1,1,2],[2,2,2,1]],[[1,2,0,1],[2,2,2,1],[2,1,1,3],[1,2,2,1]],[[1,2,0,1],[2,2,2,1],[3,1,1,2],[1,2,2,1]],[[1,2,0,1],[3,2,2,1],[2,1,1,2],[1,2,2,1]],[[1,3,0,1],[2,2,2,1],[2,1,1,2],[1,2,2,1]],[[2,2,0,1],[2,2,2,1],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,1],[2,0,3,2],[1,2,3,0]],[[1,2,0,1],[2,2,2,1],[2,0,3,2],[1,3,2,0]],[[1,1,3,0],[2,0,3,2],[2,3,3,2],[0,1,0,1]],[[1,1,2,0],[2,0,4,2],[2,3,3,2],[0,1,0,1]],[[1,1,2,0],[2,0,3,3],[2,3,3,2],[0,1,0,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,0,1],[2,2,2,1],[2,0,3,2],[2,2,2,0]],[[1,2,0,1],[2,2,2,1],[2,0,3,3],[1,2,2,0]],[[1,2,0,1],[2,2,2,1],[2,0,4,2],[1,2,2,0]],[[1,2,0,1],[2,2,2,1],[3,0,3,2],[1,2,2,0]],[[1,2,0,1],[3,2,2,1],[2,0,3,2],[1,2,2,0]],[[1,3,0,1],[2,2,2,1],[2,0,3,2],[1,2,2,0]],[[2,2,0,1],[2,2,2,1],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[2,2,2,1],[2,0,3,2],[1,2,1,2]],[[1,2,0,1],[2,2,2,1],[2,0,3,3],[1,2,1,1]],[[1,2,0,1],[2,2,2,1],[2,0,4,2],[1,2,1,1]],[[1,2,0,1],[2,2,2,1],[2,0,3,1],[1,2,2,2]],[[1,2,0,1],[2,2,2,1],[2,0,3,1],[1,2,3,1]],[[1,2,0,1],[2,2,2,1],[2,0,3,1],[1,3,2,1]],[[1,2,0,1],[2,2,2,1],[2,0,3,1],[2,2,2,1]],[[1,2,0,1],[2,2,2,1],[2,0,4,1],[1,2,2,1]],[[1,2,0,1],[2,2,2,1],[3,0,3,1],[1,2,2,1]],[[1,2,0,1],[3,2,2,1],[2,0,3,1],[1,2,2,1]],[[1,3,0,1],[2,2,2,1],[2,0,3,1],[1,2,2,1]],[[2,2,0,1],[2,2,2,1],[2,0,3,1],[1,2,2,1]],[[1,2,0,1],[2,2,2,1],[2,0,2,2],[1,2,2,2]],[[1,2,0,1],[2,2,2,1],[2,0,2,2],[1,2,3,1]],[[1,2,0,1],[2,2,2,1],[2,0,2,2],[1,3,2,1]],[[1,2,0,1],[2,2,2,1],[2,0,2,2],[2,2,2,1]],[[1,2,0,1],[2,2,2,1],[2,0,2,3],[1,2,2,1]],[[1,2,0,1],[2,2,2,1],[3,0,2,2],[1,2,2,1]],[[1,2,0,1],[3,2,2,1],[2,0,2,2],[1,2,2,1]],[[1,3,0,1],[2,2,2,1],[2,0,2,2],[1,2,2,1]],[[2,2,0,1],[2,2,2,1],[2,0,2,2],[1,2,2,1]],[[1,1,3,0],[2,0,3,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[2,0,4,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[2,0,3,3],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[2,0,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,0,1],[3,2,2,1],[1,3,3,2],[1,2,0,0]],[[1,3,0,1],[2,2,2,1],[1,3,3,2],[1,2,0,0]],[[2,2,0,1],[2,2,2,1],[1,3,3,2],[1,2,0,0]],[[1,2,0,1],[3,2,2,1],[1,3,3,2],[1,1,1,0]],[[1,3,0,1],[2,2,2,1],[1,3,3,2],[1,1,1,0]],[[2,2,0,1],[2,2,2,1],[1,3,3,2],[1,1,1,0]],[[1,2,0,1],[3,2,2,1],[1,3,3,2],[1,1,0,1]],[[1,3,0,1],[2,2,2,1],[1,3,3,2],[1,1,0,1]],[[2,2,0,1],[2,2,2,1],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[3,2,2,1],[1,3,3,2],[1,0,2,0]],[[1,3,0,1],[2,2,2,1],[1,3,3,2],[1,0,2,0]],[[2,2,0,1],[2,2,2,1],[1,3,3,2],[1,0,2,0]],[[1,2,0,1],[3,2,2,1],[1,3,3,2],[1,0,1,1]],[[1,3,0,1],[2,2,2,1],[1,3,3,2],[1,0,1,1]],[[2,2,0,1],[2,2,2,1],[1,3,3,2],[1,0,1,1]],[[1,2,0,1],[3,2,2,1],[1,3,3,2],[0,2,1,0]],[[1,3,0,1],[2,2,2,1],[1,3,3,2],[0,2,1,0]],[[2,2,0,1],[2,2,2,1],[1,3,3,2],[0,2,1,0]],[[1,2,0,1],[3,2,2,1],[1,3,3,2],[0,2,0,1]],[[1,3,0,1],[2,2,2,1],[1,3,3,2],[0,2,0,1]],[[2,2,0,1],[2,2,2,1],[1,3,3,2],[0,2,0,1]],[[1,2,0,1],[3,2,2,1],[1,3,3,2],[0,1,2,0]],[[1,3,0,1],[2,2,2,1],[1,3,3,2],[0,1,2,0]],[[2,2,0,1],[2,2,2,1],[1,3,3,2],[0,1,2,0]],[[1,2,0,1],[3,2,2,1],[1,3,3,2],[0,1,1,1]],[[1,3,0,1],[2,2,2,1],[1,3,3,2],[0,1,1,1]],[[2,2,0,1],[2,2,2,1],[1,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,2,2,1],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,2,2,1],[1,3,3,1],[2,2,1,0]],[[1,2,0,1],[2,2,2,1],[1,4,3,1],[1,2,1,0]],[[1,2,0,1],[3,2,2,1],[1,3,3,1],[1,1,1,1]],[[1,3,0,1],[2,2,2,1],[1,3,3,1],[1,1,1,1]],[[2,2,0,1],[2,2,2,1],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[3,2,2,1],[1,3,3,1],[1,0,2,1]],[[1,3,0,1],[2,2,2,1],[1,3,3,1],[1,0,2,1]],[[2,2,0,1],[2,2,2,1],[1,3,3,1],[1,0,2,1]],[[1,2,0,1],[3,2,2,1],[1,3,3,1],[0,2,1,1]],[[1,3,0,1],[2,2,2,1],[1,3,3,1],[0,2,1,1]],[[2,2,0,1],[2,2,2,1],[1,3,3,1],[0,2,1,1]],[[1,2,0,1],[3,2,2,1],[1,3,3,1],[0,1,2,1]],[[1,3,0,1],[2,2,2,1],[1,3,3,1],[0,1,2,1]],[[2,2,0,1],[2,2,2,1],[1,3,3,1],[0,1,2,1]],[[1,2,0,1],[2,2,2,1],[1,3,3,0],[1,3,1,1]],[[1,2,0,1],[2,2,2,1],[1,3,3,0],[2,2,1,1]],[[1,2,0,1],[2,2,2,1],[1,4,3,0],[1,2,1,1]],[[1,1,2,0],[2,1,0,0],[3,3,3,2],[1,2,2,1]],[[1,1,2,0],[2,1,0,0],[2,3,3,2],[2,2,2,1]],[[1,1,2,0],[2,1,0,0],[2,3,3,2],[1,3,2,1]],[[1,1,2,0],[2,1,0,0],[2,3,3,2],[1,2,3,1]],[[1,1,2,0],[2,1,0,0],[2,3,3,2],[1,2,2,2]],[[1,1,2,0],[2,1,0,1],[3,3,3,1],[1,2,2,1]],[[1,1,2,0],[2,1,0,1],[2,3,3,1],[2,2,2,1]],[[1,1,2,0],[2,1,0,1],[2,3,3,1],[1,3,2,1]],[[1,1,2,0],[2,1,0,1],[2,3,3,1],[1,2,3,1]],[[1,1,2,0],[2,1,0,1],[2,3,3,1],[1,2,2,2]],[[1,1,2,0],[2,1,0,1],[3,3,3,2],[1,2,2,0]],[[1,1,2,0],[2,1,0,1],[2,3,3,2],[2,2,2,0]],[[1,1,2,0],[2,1,0,1],[2,3,3,2],[1,3,2,0]],[[1,1,2,0],[2,1,0,1],[2,3,3,2],[1,2,3,0]],[[1,1,2,0],[2,1,0,2],[3,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,1,0,2],[2,3,1,3],[1,2,2,1]],[[1,1,2,0],[2,1,0,2],[2,3,1,2],[2,2,2,1]],[[1,1,2,0],[2,1,0,2],[2,3,1,2],[1,3,2,1]],[[1,1,2,0],[2,1,0,2],[2,3,1,2],[1,2,3,1]],[[1,1,2,0],[2,1,0,2],[2,3,1,2],[1,2,2,2]],[[1,1,2,0],[2,1,0,2],[3,3,2,1],[1,2,2,1]],[[1,1,2,0],[2,1,0,2],[2,3,2,1],[2,2,2,1]],[[1,1,2,0],[2,1,0,2],[2,3,2,1],[1,3,2,1]],[[1,1,2,0],[2,1,0,2],[2,3,2,1],[1,2,3,1]],[[1,1,2,0],[2,1,0,2],[2,3,2,1],[1,2,2,2]],[[1,1,2,0],[2,1,0,2],[3,3,2,2],[1,2,2,0]],[[1,1,2,0],[2,1,0,2],[2,3,2,2],[2,2,2,0]],[[1,1,2,0],[2,1,0,2],[2,3,2,2],[1,3,2,0]],[[1,1,2,0],[2,1,0,2],[2,3,2,2],[1,2,3,0]],[[1,1,2,0],[2,1,0,2],[3,3,3,1],[1,2,1,1]],[[1,1,2,0],[2,1,0,2],[2,3,3,1],[2,2,1,1]],[[1,1,2,0],[2,1,0,2],[2,3,3,1],[1,3,1,1]],[[1,1,2,0],[2,1,0,2],[3,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,1,0,2],[2,3,3,2],[2,2,0,1]],[[1,1,2,0],[2,1,0,2],[2,3,3,2],[1,3,0,1]],[[1,1,2,0],[2,1,0,2],[3,3,3,2],[1,2,1,0]],[[1,1,2,0],[2,1,0,2],[2,3,3,2],[2,2,1,0]],[[1,1,2,0],[2,1,0,2],[2,3,3,2],[1,3,1,0]],[[1,2,0,1],[3,2,2,1],[1,3,2,2],[1,1,2,0]],[[1,3,0,1],[2,2,2,1],[1,3,2,2],[1,1,2,0]],[[2,2,0,1],[2,2,2,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,1,1,0],[3,3,2,2],[1,2,2,1]],[[1,1,2,0],[2,1,1,0],[2,3,2,2],[2,2,2,1]],[[1,1,2,0],[2,1,1,0],[2,3,2,2],[1,3,2,1]],[[1,1,2,0],[2,1,1,0],[2,3,2,2],[1,2,3,1]],[[1,1,2,0],[2,1,1,0],[2,3,2,2],[1,2,2,2]],[[1,1,2,0],[2,1,1,0],[3,3,3,2],[1,2,1,1]],[[1,1,2,0],[2,1,1,0],[2,3,3,2],[2,2,1,1]],[[1,1,2,0],[2,1,1,0],[2,3,3,2],[1,3,1,1]],[[1,1,2,0],[2,1,1,1],[3,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,1,1,1],[2,3,1,2],[2,2,2,1]],[[1,1,2,0],[2,1,1,1],[2,3,1,2],[1,3,2,1]],[[1,1,2,0],[2,1,1,1],[2,3,1,2],[1,2,3,1]],[[1,1,2,0],[2,1,1,1],[2,3,1,2],[1,2,2,2]],[[1,1,2,0],[2,1,1,1],[3,3,2,1],[1,2,2,1]],[[1,1,2,0],[2,1,1,1],[2,3,2,1],[2,2,2,1]],[[1,1,2,0],[2,1,1,1],[2,3,2,1],[1,3,2,1]],[[1,1,2,0],[2,1,1,1],[2,3,2,1],[1,2,3,1]],[[1,1,2,0],[2,1,1,1],[2,3,2,1],[1,2,2,2]],[[1,1,2,0],[2,1,1,1],[3,3,2,2],[1,2,2,0]],[[1,1,2,0],[2,1,1,1],[2,3,2,2],[2,2,2,0]],[[1,1,2,0],[2,1,1,1],[2,3,2,2],[1,3,2,0]],[[1,1,2,0],[2,1,1,1],[2,3,2,2],[1,2,3,0]],[[1,1,2,0],[2,1,1,1],[3,3,3,0],[1,2,2,1]],[[1,1,2,0],[2,1,1,1],[2,3,3,0],[2,2,2,1]],[[1,1,2,0],[2,1,1,1],[2,3,3,0],[1,3,2,1]],[[1,1,2,0],[2,1,1,1],[2,3,3,0],[1,2,3,1]],[[1,1,2,0],[2,1,1,1],[3,3,3,1],[1,2,1,1]],[[1,1,2,0],[2,1,1,1],[2,3,3,1],[2,2,1,1]],[[1,1,2,0],[2,1,1,1],[2,3,3,1],[1,3,1,1]],[[1,1,2,0],[2,1,1,1],[3,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,1,1,1],[2,3,3,2],[2,2,0,1]],[[1,1,2,0],[2,1,1,1],[2,3,3,2],[1,3,0,1]],[[1,1,2,0],[2,1,1,1],[3,3,3,2],[1,2,1,0]],[[1,1,2,0],[2,1,1,1],[2,3,3,2],[2,2,1,0]],[[1,1,2,0],[2,1,1,1],[2,3,3,2],[1,3,1,0]],[[1,2,0,1],[3,2,2,1],[1,3,2,2],[0,2,2,0]],[[1,3,0,1],[2,2,2,1],[1,3,2,2],[0,2,2,0]],[[2,2,0,1],[2,2,2,1],[1,3,2,2],[0,2,2,0]],[[1,2,0,1],[2,2,2,1],[1,3,2,1],[1,3,2,0]],[[1,2,0,1],[2,2,2,1],[1,3,2,1],[2,2,2,0]],[[1,2,0,1],[2,2,2,1],[1,4,2,1],[1,2,2,0]],[[1,1,2,0],[2,1,1,2],[3,3,2,0],[1,2,2,1]],[[1,1,2,0],[2,1,1,2],[2,3,2,0],[2,2,2,1]],[[1,1,2,0],[2,1,1,2],[2,3,2,0],[1,3,2,1]],[[1,1,2,0],[2,1,1,2],[2,3,2,0],[1,2,3,1]],[[1,1,2,0],[2,1,1,2],[3,3,2,1],[1,2,2,0]],[[1,1,2,0],[2,1,1,2],[2,3,2,1],[2,2,2,0]],[[1,1,2,0],[2,1,1,2],[2,3,2,1],[1,3,2,0]],[[1,2,0,1],[3,2,2,1],[1,3,2,1],[1,1,2,1]],[[1,3,0,1],[2,2,2,1],[1,3,2,1],[1,1,2,1]],[[2,2,0,1],[2,2,2,1],[1,3,2,1],[1,1,2,1]],[[1,2,0,1],[3,2,2,1],[1,3,2,1],[0,2,2,1]],[[1,3,0,1],[2,2,2,1],[1,3,2,1],[0,2,2,1]],[[2,2,0,1],[2,2,2,1],[1,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,1,1,2],[3,3,3,0],[1,2,1,1]],[[1,1,2,0],[2,1,1,2],[2,3,3,0],[2,2,1,1]],[[1,1,2,0],[2,1,1,2],[2,3,3,0],[1,3,1,1]],[[1,1,2,0],[2,1,1,2],[3,3,3,1],[1,2,1,0]],[[1,1,2,0],[2,1,1,2],[2,3,3,1],[2,2,1,0]],[[1,1,2,0],[2,1,1,2],[2,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,2,2,1],[1,3,2,0],[1,2,3,1]],[[1,2,0,1],[2,2,2,1],[1,3,2,0],[1,3,2,1]],[[1,2,0,1],[2,2,2,1],[1,3,2,0],[2,2,2,1]],[[1,2,0,1],[2,2,2,1],[1,4,2,0],[1,2,2,1]],[[1,2,0,1],[3,2,2,1],[1,3,1,2],[1,1,2,1]],[[1,3,0,1],[2,2,2,1],[1,3,1,2],[1,1,2,1]],[[2,2,0,1],[2,2,2,1],[1,3,1,2],[1,1,2,1]],[[1,2,0,1],[3,2,2,1],[1,3,1,2],[0,2,2,1]],[[1,3,0,1],[2,2,2,1],[1,3,1,2],[0,2,2,1]],[[2,2,0,1],[2,2,2,1],[1,3,1,2],[0,2,2,1]],[[1,2,0,1],[3,2,2,1],[0,3,3,2],[1,2,1,0]],[[1,3,0,1],[2,2,2,1],[0,3,3,2],[1,2,1,0]],[[2,2,0,1],[2,2,2,1],[0,3,3,2],[1,2,1,0]],[[1,2,0,1],[3,2,2,1],[0,3,3,2],[1,2,0,1]],[[1,3,0,1],[2,2,2,1],[0,3,3,2],[1,2,0,1]],[[2,2,0,1],[2,2,2,1],[0,3,3,2],[1,2,0,1]],[[1,2,0,1],[3,2,2,1],[0,3,3,2],[1,1,2,0]],[[1,3,0,1],[2,2,2,1],[0,3,3,2],[1,1,2,0]],[[2,2,0,1],[2,2,2,1],[0,3,3,2],[1,1,2,0]],[[1,2,0,1],[3,2,2,1],[0,3,3,2],[1,1,1,1]],[[1,3,0,1],[2,2,2,1],[0,3,3,2],[1,1,1,1]],[[2,2,0,1],[2,2,2,1],[0,3,3,2],[1,1,1,1]],[[1,2,0,1],[3,2,2,1],[0,3,3,1],[1,2,1,1]],[[1,3,0,1],[2,2,2,1],[0,3,3,1],[1,2,1,1]],[[2,2,0,1],[2,2,2,1],[0,3,3,1],[1,2,1,1]],[[1,2,0,1],[3,2,2,1],[0,3,3,1],[1,1,2,1]],[[1,3,0,1],[2,2,2,1],[0,3,3,1],[1,1,2,1]],[[2,2,0,1],[2,2,2,1],[0,3,3,1],[1,1,2,1]],[[1,2,0,1],[3,2,2,1],[0,3,2,2],[1,2,2,0]],[[1,3,0,1],[2,2,2,1],[0,3,2,2],[1,2,2,0]],[[2,2,0,1],[2,2,2,1],[0,3,2,2],[1,2,2,0]],[[1,2,0,1],[3,2,2,1],[0,3,2,1],[1,2,2,1]],[[1,3,0,1],[2,2,2,1],[0,3,2,1],[1,2,2,1]],[[2,2,0,1],[2,2,2,1],[0,3,2,1],[1,2,2,1]],[[1,2,0,1],[3,2,2,1],[0,3,1,2],[1,2,2,1]],[[1,3,0,1],[2,2,2,1],[0,3,1,2],[1,2,2,1]],[[2,2,0,1],[2,2,2,1],[0,3,1,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[2,2,2,0],[2,4,3,2],[1,2,0,0]],[[1,2,0,1],[2,2,2,0],[3,3,3,2],[1,2,0,0]],[[1,2,0,1],[3,2,2,0],[2,3,3,2],[1,2,0,0]],[[2,2,0,1],[2,2,2,0],[2,3,3,2],[1,2,0,0]],[[2,1,2,0],[2,1,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[3,1,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,1,2,3],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,1,2,2],[3,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,1,2,2],[2,0,2,3],[1,2,2,1]],[[1,1,2,0],[2,1,2,2],[2,0,2,2],[2,2,2,1]],[[1,1,2,0],[2,1,2,2],[2,0,2,2],[1,3,2,1]],[[1,1,2,0],[2,1,2,2],[2,0,2,2],[1,2,3,1]],[[1,1,2,0],[2,1,2,2],[2,0,2,2],[1,2,2,2]],[[2,1,2,0],[2,1,2,2],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[3,1,2,2],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,1,2,2],[3,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,1,2,2],[2,0,4,1],[1,2,2,1]],[[1,1,2,0],[2,1,2,2],[2,0,3,1],[2,2,2,1]],[[1,1,2,0],[2,1,2,2],[2,0,3,1],[1,3,2,1]],[[1,1,2,0],[2,1,2,2],[2,0,3,1],[1,2,3,1]],[[1,1,2,0],[2,1,2,2],[2,0,3,1],[1,2,2,2]],[[1,1,2,0],[2,1,2,3],[2,0,3,2],[1,2,1,1]],[[1,1,2,0],[2,1,2,2],[2,0,4,2],[1,2,1,1]],[[1,1,2,0],[2,1,2,2],[2,0,3,3],[1,2,1,1]],[[1,1,2,0],[2,1,2,2],[2,0,3,2],[1,2,1,2]],[[2,1,2,0],[2,1,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[3,1,2,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,1,2,3],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,1,2,2],[3,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,1,2,2],[2,0,4,2],[1,2,2,0]],[[1,1,2,0],[2,1,2,2],[2,0,3,3],[1,2,2,0]],[[1,1,2,0],[2,1,2,2],[2,0,3,2],[2,2,2,0]],[[1,1,2,0],[2,1,2,2],[2,0,3,2],[1,3,2,0]],[[1,1,2,0],[2,1,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,0,1],[2,2,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[2,2,2,0],[2,3,4,2],[1,1,1,0]],[[1,2,0,1],[2,2,2,0],[2,4,3,2],[1,1,1,0]],[[1,2,0,1],[2,2,2,0],[3,3,3,2],[1,1,1,0]],[[1,2,0,1],[3,2,2,0],[2,3,3,2],[1,1,1,0]],[[2,2,0,1],[2,2,2,0],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,2,2,0],[2,3,3,2],[2,1,0,1]],[[1,2,0,1],[2,2,2,0],[2,3,4,2],[1,1,0,1]],[[1,2,0,1],[2,2,2,0],[2,4,3,2],[1,1,0,1]],[[1,2,0,1],[2,2,2,0],[3,3,3,2],[1,1,0,1]],[[1,2,0,1],[3,2,2,0],[2,3,3,2],[1,1,0,1]],[[2,2,0,1],[2,2,2,0],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,2],[1,0,3,0]],[[1,2,0,1],[2,2,2,0],[2,3,3,2],[2,0,2,0]],[[1,2,0,1],[2,2,2,0],[2,3,4,2],[1,0,2,0]],[[1,2,0,1],[2,2,2,0],[2,4,3,2],[1,0,2,0]],[[1,2,0,1],[2,2,2,0],[3,3,3,2],[1,0,2,0]],[[1,2,0,1],[3,2,2,0],[2,3,3,2],[1,0,2,0]],[[2,2,0,1],[2,2,2,0],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[2,2,2,0],[2,3,3,2],[2,0,1,1]],[[1,2,0,1],[2,2,2,0],[2,3,4,2],[1,0,1,1]],[[1,2,0,1],[2,2,2,0],[2,4,3,2],[1,0,1,1]],[[1,2,0,1],[2,2,2,0],[3,3,3,2],[1,0,1,1]],[[1,2,0,1],[3,2,2,0],[2,3,3,2],[1,0,1,1]],[[2,2,0,1],[2,2,2,0],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,2,2,0],[2,3,4,2],[0,2,1,0]],[[1,2,0,1],[2,2,2,0],[2,4,3,2],[0,2,1,0]],[[1,2,0,1],[2,2,2,0],[3,3,3,2],[0,2,1,0]],[[1,2,0,1],[3,2,2,0],[2,3,3,2],[0,2,1,0]],[[2,2,0,1],[2,2,2,0],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[2,2,2,0],[2,3,3,2],[0,3,0,1]],[[1,2,0,1],[2,2,2,0],[2,3,4,2],[0,2,0,1]],[[1,2,0,1],[2,2,2,0],[2,4,3,2],[0,2,0,1]],[[1,2,0,1],[2,2,2,0],[3,3,3,2],[0,2,0,1]],[[1,2,0,1],[3,2,2,0],[2,3,3,2],[0,2,0,1]],[[2,2,0,1],[2,2,2,0],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,2],[0,1,3,0]],[[1,2,0,1],[2,2,2,0],[2,3,4,2],[0,1,2,0]],[[1,2,0,1],[2,2,2,0],[2,4,3,2],[0,1,2,0]],[[1,2,0,1],[2,2,2,0],[3,3,3,2],[0,1,2,0]],[[1,2,0,1],[3,2,2,0],[2,3,3,2],[0,1,2,0]],[[2,2,0,1],[2,2,2,0],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,2,2,0],[2,3,4,2],[0,1,1,1]],[[1,2,0,1],[2,2,2,0],[2,4,3,2],[0,1,1,1]],[[1,2,0,1],[2,2,2,0],[3,3,3,2],[0,1,1,1]],[[1,2,0,1],[3,2,2,0],[2,3,3,2],[0,1,1,1]],[[2,2,0,1],[2,2,2,0],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,2,2,0],[2,4,3,1],[1,2,0,1]],[[1,2,0,1],[2,2,2,0],[3,3,3,1],[1,2,0,1]],[[1,2,0,1],[3,2,2,0],[2,3,3,1],[1,2,0,1]],[[2,2,0,1],[2,2,2,0],[2,3,3,1],[1,2,0,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[2,2,2,0],[2,3,4,1],[1,1,1,1]],[[1,2,0,1],[2,2,2,0],[2,4,3,1],[1,1,1,1]],[[1,2,0,1],[2,2,2,0],[3,3,3,1],[1,1,1,1]],[[1,2,0,1],[3,2,2,0],[2,3,3,1],[1,1,1,1]],[[2,2,0,1],[2,2,2,0],[2,3,3,1],[1,1,1,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,1],[1,0,2,2]],[[1,2,0,1],[2,2,2,0],[2,3,3,1],[1,0,3,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,1],[2,0,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,4,1],[1,0,2,1]],[[1,2,0,1],[2,2,2,0],[2,4,3,1],[1,0,2,1]],[[1,2,0,1],[2,2,2,0],[3,3,3,1],[1,0,2,1]],[[1,2,0,1],[3,2,2,0],[2,3,3,1],[1,0,2,1]],[[2,2,0,1],[2,2,2,0],[2,3,3,1],[1,0,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,1],[0,3,1,1]],[[1,2,0,1],[2,2,2,0],[2,3,4,1],[0,2,1,1]],[[1,2,0,1],[2,2,2,0],[2,4,3,1],[0,2,1,1]],[[1,2,0,1],[2,2,2,0],[3,3,3,1],[0,2,1,1]],[[1,2,0,1],[3,2,2,0],[2,3,3,1],[0,2,1,1]],[[2,2,0,1],[2,2,2,0],[2,3,3,1],[0,2,1,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,1],[0,1,2,2]],[[1,2,0,1],[2,2,2,0],[2,3,3,1],[0,1,3,1]],[[1,2,0,1],[2,2,2,0],[2,3,4,1],[0,1,2,1]],[[1,2,0,1],[2,2,2,0],[2,4,3,1],[0,1,2,1]],[[1,2,0,1],[2,2,2,0],[3,3,3,1],[0,1,2,1]],[[1,2,0,1],[3,2,2,0],[2,3,3,1],[0,1,2,1]],[[2,2,0,1],[2,2,2,0],[2,3,3,1],[0,1,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,0],[2,1,2,1]],[[1,2,0,1],[2,2,2,0],[2,4,3,0],[1,1,2,1]],[[1,2,0,1],[2,2,2,0],[3,3,3,0],[1,1,2,1]],[[1,2,0,1],[3,2,2,0],[2,3,3,0],[1,1,2,1]],[[2,2,0,1],[2,2,2,0],[2,3,3,0],[1,1,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,0],[0,2,3,1]],[[1,2,0,1],[2,2,2,0],[2,3,3,0],[0,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,4,3,0],[0,2,2,1]],[[1,2,0,1],[2,2,2,0],[3,3,3,0],[0,2,2,1]],[[1,2,0,1],[3,2,2,0],[2,3,3,0],[0,2,2,1]],[[2,2,0,1],[2,2,2,0],[2,3,3,0],[0,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,2,2,0],[2,4,2,2],[1,1,2,0]],[[1,2,0,1],[2,2,2,0],[3,3,2,2],[1,1,2,0]],[[1,2,0,1],[3,2,2,0],[2,3,2,2],[1,1,2,0]],[[2,2,0,1],[2,2,2,0],[2,3,2,2],[1,1,2,0]],[[1,2,0,1],[2,2,2,0],[2,3,2,2],[0,2,3,0]],[[1,2,0,1],[2,2,2,0],[2,3,2,2],[0,3,2,0]],[[1,2,0,1],[2,2,2,0],[2,4,2,2],[0,2,2,0]],[[1,2,0,1],[2,2,2,0],[3,3,2,2],[0,2,2,0]],[[1,2,0,1],[3,2,2,0],[2,3,2,2],[0,2,2,0]],[[2,2,0,1],[2,2,2,0],[2,3,2,2],[0,2,2,0]],[[1,2,0,1],[2,2,2,0],[2,3,2,1],[2,1,2,1]],[[1,2,0,1],[2,2,2,0],[2,4,2,1],[1,1,2,1]],[[1,2,0,1],[2,2,2,0],[3,3,2,1],[1,1,2,1]],[[1,2,0,1],[3,2,2,0],[2,3,2,1],[1,1,2,1]],[[2,2,0,1],[2,2,2,0],[2,3,2,1],[1,1,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,2,1],[0,2,2,2]],[[1,2,0,1],[2,2,2,0],[2,3,2,1],[0,2,3,1]],[[1,2,0,1],[2,2,2,0],[2,3,2,1],[0,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,4,2,1],[0,2,2,1]],[[1,2,0,1],[2,2,2,0],[3,3,2,1],[0,2,2,1]],[[1,2,0,1],[3,2,2,0],[2,3,2,1],[0,2,2,1]],[[2,2,0,1],[2,2,2,0],[2,3,2,1],[0,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,2,0],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,2,0],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[3,3,2,0],[1,2,2,1]],[[1,2,0,1],[3,2,2,0],[2,3,2,0],[1,2,2,1]],[[2,2,0,1],[2,2,2,0],[2,3,2,0],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,1,2],[1,3,2,0]],[[1,2,0,1],[2,2,2,0],[2,3,1,2],[2,2,2,0]],[[1,2,0,1],[2,2,2,0],[3,3,1,2],[1,2,2,0]],[[1,2,0,1],[3,2,2,0],[2,3,1,2],[1,2,2,0]],[[2,2,0,1],[2,2,2,0],[2,3,1,2],[1,2,2,0]],[[1,2,0,1],[2,2,2,0],[2,3,1,2],[2,1,2,1]],[[1,2,0,1],[2,2,2,0],[2,4,1,2],[1,1,2,1]],[[1,2,0,1],[2,2,2,0],[3,3,1,2],[1,1,2,1]],[[1,2,0,1],[3,2,2,0],[2,3,1,2],[1,1,2,1]],[[2,2,0,1],[2,2,2,0],[2,3,1,2],[1,1,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,1,2],[0,2,2,2]],[[1,2,0,1],[2,2,2,0],[2,3,1,2],[0,2,3,1]],[[1,2,0,1],[2,2,2,0],[2,3,1,2],[0,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,4,1,2],[0,2,2,1]],[[1,2,0,1],[2,2,2,0],[3,3,1,2],[0,2,2,1]],[[1,2,0,1],[3,2,2,0],[2,3,1,2],[0,2,2,1]],[[2,2,0,1],[2,2,2,0],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,1,1],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,1,1],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[3,3,1,1],[1,2,2,1]],[[1,2,0,1],[3,2,2,0],[2,3,1,1],[1,2,2,1]],[[2,2,0,1],[2,2,2,0],[2,3,1,1],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,0,2],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,3,0,2],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[3,3,0,2],[1,2,2,1]],[[1,2,0,1],[3,2,2,0],[2,3,0,2],[1,2,2,1]],[[2,2,0,1],[2,2,2,0],[2,3,0,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[2,2,2,0],[2,2,3,2],[2,2,1,0]],[[1,2,0,1],[2,2,2,0],[3,2,3,2],[1,2,1,0]],[[1,2,0,1],[3,2,2,0],[2,2,3,2],[1,2,1,0]],[[2,2,0,1],[2,2,2,0],[2,2,3,2],[1,2,1,0]],[[1,2,0,1],[2,2,2,0],[2,2,3,2],[1,3,0,1]],[[1,2,0,1],[2,2,2,0],[2,2,3,2],[2,2,0,1]],[[1,2,0,1],[2,2,2,0],[3,2,3,2],[1,2,0,1]],[[1,2,0,1],[3,2,2,0],[2,2,3,2],[1,2,0,1]],[[2,2,0,1],[2,2,2,0],[2,2,3,2],[1,2,0,1]],[[1,2,0,1],[2,2,2,0],[2,2,3,2],[0,2,3,0]],[[1,2,0,1],[2,2,2,0],[2,2,3,2],[0,3,2,0]],[[1,2,0,1],[2,2,2,0],[2,2,4,2],[0,2,2,0]],[[2,1,2,0],[2,1,3,0],[2,0,3,2],[1,2,2,1]],[[1,1,2,0],[3,1,3,0],[2,0,3,2],[1,2,2,1]],[[1,1,2,0],[2,1,3,0],[3,0,3,2],[1,2,2,1]],[[1,1,2,0],[2,1,3,0],[2,0,4,2],[1,2,2,1]],[[1,1,2,0],[2,1,3,0],[2,0,3,2],[2,2,2,1]],[[1,1,2,0],[2,1,3,0],[2,0,3,2],[1,3,2,1]],[[1,1,2,0],[2,1,3,0],[2,0,3,2],[1,2,3,1]],[[1,1,2,0],[2,1,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,0,1],[2,2,2,0],[2,2,3,1],[1,3,1,1]],[[1,2,0,1],[2,2,2,0],[2,2,3,1],[2,2,1,1]],[[1,2,0,1],[2,2,2,0],[3,2,3,1],[1,2,1,1]],[[1,2,0,1],[3,2,2,0],[2,2,3,1],[1,2,1,1]],[[2,2,0,1],[2,2,2,0],[2,2,3,1],[1,2,1,1]],[[1,2,0,1],[2,2,2,0],[2,2,3,1],[0,2,2,2]],[[1,2,0,1],[2,2,2,0],[2,2,3,1],[0,2,3,1]],[[1,2,0,1],[2,2,2,0],[2,2,3,1],[0,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,2,4,1],[0,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,2,3,0],[1,2,3,1]],[[1,2,0,1],[2,2,2,0],[2,2,3,0],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,2,3,0],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[3,2,3,0],[1,2,2,1]],[[1,2,0,1],[3,2,2,0],[2,2,3,0],[1,2,2,1]],[[2,2,0,1],[2,2,2,0],[2,2,3,0],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,2,2,2],[1,2,3,0]],[[1,2,0,1],[2,2,2,0],[2,2,2,2],[1,3,2,0]],[[1,2,0,1],[2,2,2,0],[2,2,2,2],[2,2,2,0]],[[1,2,0,1],[2,2,2,0],[3,2,2,2],[1,2,2,0]],[[1,2,0,1],[3,2,2,0],[2,2,2,2],[1,2,2,0]],[[2,2,0,1],[2,2,2,0],[2,2,2,2],[1,2,2,0]],[[1,2,0,1],[2,2,2,0],[2,2,2,1],[1,2,2,2]],[[1,2,0,1],[2,2,2,0],[2,2,2,1],[1,2,3,1]],[[1,2,0,1],[2,2,2,0],[2,2,2,1],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,2,2,1],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[3,2,2,1],[1,2,2,1]],[[1,2,0,1],[3,2,2,0],[2,2,2,1],[1,2,2,1]],[[2,2,0,1],[2,2,2,0],[2,2,2,1],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,2,1,2],[1,2,2,2]],[[1,2,0,1],[2,2,2,0],[2,2,1,2],[1,2,3,1]],[[1,2,0,1],[2,2,2,0],[2,2,1,2],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,2,1,2],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[3,2,1,2],[1,2,2,1]],[[1,2,0,1],[3,2,2,0],[2,2,1,2],[1,2,2,1]],[[2,2,0,1],[2,2,2,0],[2,2,1,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,1,3,2],[1,2,3,0]],[[1,2,0,1],[2,2,2,0],[2,1,3,2],[1,3,2,0]],[[1,2,0,1],[2,2,2,0],[2,1,3,2],[2,2,2,0]],[[1,2,0,1],[2,2,2,0],[2,1,4,2],[1,2,2,0]],[[1,2,0,1],[2,2,2,0],[3,1,3,2],[1,2,2,0]],[[1,2,0,1],[3,2,2,0],[2,1,3,2],[1,2,2,0]],[[2,2,0,1],[2,2,2,0],[2,1,3,2],[1,2,2,0]],[[1,2,0,1],[2,2,2,0],[2,1,3,1],[1,2,2,2]],[[1,2,0,1],[2,2,2,0],[2,1,3,1],[1,2,3,1]],[[1,2,0,1],[2,2,2,0],[2,1,3,1],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,1,3,1],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,1,4,1],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[3,1,3,1],[1,2,2,1]],[[1,2,0,1],[3,2,2,0],[2,1,3,1],[1,2,2,1]],[[2,2,0,1],[2,2,2,0],[2,1,3,1],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,0,3,2],[1,2,2,2]],[[1,2,0,1],[2,2,2,0],[2,0,3,2],[1,2,3,1]],[[1,2,0,1],[2,2,2,0],[2,0,3,2],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[2,0,3,2],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[2,0,4,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[3,0,3,2],[1,2,2,1]],[[1,2,0,1],[3,2,2,0],[2,0,3,2],[1,2,2,1]],[[2,2,0,1],[2,2,2,0],[2,0,3,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,2,2,0],[1,3,3,2],[2,2,1,0]],[[1,2,0,1],[2,2,2,0],[1,3,4,2],[1,2,1,0]],[[1,2,0,1],[2,2,2,0],[1,4,3,2],[1,2,1,0]],[[1,2,0,1],[2,2,2,0],[1,3,3,2],[1,3,0,1]],[[1,2,0,1],[2,2,2,0],[1,3,3,2],[2,2,0,1]],[[1,2,0,1],[2,2,2,0],[1,3,4,2],[1,2,0,1]],[[1,2,0,1],[2,2,2,0],[1,4,3,2],[1,2,0,1]],[[1,2,0,1],[2,2,2,0],[1,3,3,2],[1,1,3,0]],[[1,2,0,1],[2,2,2,0],[1,3,4,2],[1,1,2,0]],[[1,2,0,1],[2,2,2,0],[1,4,3,2],[1,1,2,0]],[[1,2,0,1],[2,2,2,0],[1,3,3,1],[1,3,1,1]],[[1,2,0,1],[2,2,2,0],[1,3,3,1],[2,2,1,1]],[[1,2,0,1],[2,2,2,0],[1,3,4,1],[1,2,1,1]],[[2,1,2,0],[2,1,3,1],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[3,1,3,1],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,1,3,1],[3,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,1,3,1],[2,0,2,3],[1,2,2,1]],[[1,1,2,0],[2,1,3,1],[2,0,2,2],[2,2,2,1]],[[1,1,2,0],[2,1,3,1],[2,0,2,2],[1,3,2,1]],[[1,1,2,0],[2,1,3,1],[2,0,2,2],[1,2,3,1]],[[1,1,2,0],[2,1,3,1],[2,0,2,2],[1,2,2,2]],[[2,1,2,0],[2,1,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,3,0],[2,1,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[3,1,3,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,1,4,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,1,3,1],[3,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,1,3,1],[2,0,4,1],[1,2,2,1]],[[1,1,2,0],[2,1,3,1],[2,0,3,1],[2,2,2,1]],[[1,1,2,0],[2,1,3,1],[2,0,3,1],[1,3,2,1]],[[1,1,2,0],[2,1,3,1],[2,0,3,1],[1,2,3,1]],[[1,1,2,0],[2,1,3,1],[2,0,3,1],[1,2,2,2]],[[1,1,3,0],[2,1,3,1],[2,0,3,2],[1,2,1,1]],[[1,1,2,0],[2,1,4,1],[2,0,3,2],[1,2,1,1]],[[1,1,2,0],[2,1,3,1],[2,0,4,2],[1,2,1,1]],[[1,1,2,0],[2,1,3,1],[2,0,3,3],[1,2,1,1]],[[1,1,2,0],[2,1,3,1],[2,0,3,2],[1,2,1,2]],[[2,1,2,0],[2,1,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,3,0],[2,1,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[3,1,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,1,4,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,1,3,1],[3,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,1,3,1],[2,0,4,2],[1,2,2,0]],[[1,1,2,0],[2,1,3,1],[2,0,3,3],[1,2,2,0]],[[1,1,2,0],[2,1,3,1],[2,0,3,2],[2,2,2,0]],[[1,1,2,0],[2,1,3,1],[2,0,3,2],[1,3,2,0]],[[1,1,2,0],[2,1,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,0,1],[2,2,2,0],[1,4,3,1],[1,2,1,1]],[[1,2,0,1],[2,2,2,0],[1,3,3,1],[1,1,2,2]],[[1,2,0,1],[2,2,2,0],[1,3,3,1],[1,1,3,1]],[[1,2,0,1],[2,2,2,0],[1,3,4,1],[1,1,2,1]],[[1,2,0,1],[2,2,2,0],[1,4,3,1],[1,1,2,1]],[[1,2,0,1],[2,2,2,0],[1,3,3,0],[1,2,3,1]],[[1,2,0,1],[2,2,2,0],[1,3,3,0],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[1,3,3,0],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[1,4,3,0],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[1,3,2,2],[1,2,3,0]],[[1,2,0,1],[2,2,2,0],[1,3,2,2],[1,3,2,0]],[[1,2,0,1],[2,2,2,0],[1,3,2,2],[2,2,2,0]],[[1,2,0,1],[2,2,2,0],[1,4,2,2],[1,2,2,0]],[[1,2,0,1],[2,2,2,0],[1,3,2,1],[1,2,2,2]],[[1,2,0,1],[2,2,2,0],[1,3,2,1],[1,2,3,1]],[[1,2,0,1],[2,2,2,0],[1,3,2,1],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[1,3,2,1],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[1,4,2,1],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[1,3,1,2],[1,2,2,2]],[[1,2,0,1],[2,2,2,0],[1,3,1,2],[1,2,3,1]],[[1,2,0,1],[2,2,2,0],[1,3,1,2],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[1,3,1,2],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[1,4,1,2],[1,2,2,1]],[[1,2,0,1],[2,2,2,0],[1,2,3,2],[1,2,3,0]],[[1,2,0,1],[2,2,2,0],[1,2,3,2],[1,3,2,0]],[[1,2,0,1],[2,2,2,0],[1,2,3,2],[2,2,2,0]],[[1,2,0,1],[2,2,2,0],[1,2,4,2],[1,2,2,0]],[[1,2,0,1],[2,2,2,0],[1,2,3,1],[1,2,2,2]],[[1,2,0,1],[2,2,2,0],[1,2,3,1],[1,2,3,1]],[[1,2,0,1],[2,2,2,0],[1,2,3,1],[1,3,2,1]],[[1,2,0,1],[2,2,2,0],[1,2,3,1],[2,2,2,1]],[[1,2,0,1],[2,2,2,0],[1,2,4,1],[1,2,2,1]],[[1,2,0,1],[2,2,1,2],[3,3,3,2],[1,0,1,0]],[[1,2,0,1],[3,2,1,2],[2,3,3,2],[1,0,1,0]],[[1,3,0,1],[2,2,1,2],[2,3,3,2],[1,0,1,0]],[[2,2,0,1],[2,2,1,2],[2,3,3,2],[1,0,1,0]],[[1,2,0,1],[2,2,1,2],[3,3,3,2],[1,0,0,1]],[[1,2,0,1],[3,2,1,2],[2,3,3,2],[1,0,0,1]],[[1,3,0,1],[2,2,1,2],[2,3,3,2],[1,0,0,1]],[[2,2,0,1],[2,2,1,2],[2,3,3,2],[1,0,0,1]],[[1,2,0,1],[2,2,1,2],[2,2,3,2],[2,2,0,0]],[[1,2,0,1],[2,2,1,2],[3,2,3,2],[1,2,0,0]],[[1,2,0,1],[3,2,1,2],[2,2,3,2],[1,2,0,0]],[[1,3,0,1],[2,2,1,2],[2,2,3,2],[1,2,0,0]],[[2,2,0,1],[2,2,1,2],[2,2,3,2],[1,2,0,0]],[[1,2,0,1],[2,2,1,2],[2,2,3,2],[2,1,1,0]],[[1,2,0,1],[2,2,1,2],[3,2,3,2],[1,1,1,0]],[[1,2,0,1],[3,2,1,2],[2,2,3,2],[1,1,1,0]],[[1,3,0,1],[2,2,1,2],[2,2,3,2],[1,1,1,0]],[[2,2,0,1],[2,2,1,2],[2,2,3,2],[1,1,1,0]],[[1,2,0,1],[2,2,1,2],[2,2,3,2],[2,1,0,1]],[[1,2,0,1],[2,2,1,2],[3,2,3,2],[1,1,0,1]],[[1,2,0,1],[3,2,1,2],[2,2,3,2],[1,1,0,1]],[[1,3,0,1],[2,2,1,2],[2,2,3,2],[1,1,0,1]],[[2,2,0,1],[2,2,1,2],[2,2,3,2],[1,1,0,1]],[[1,2,0,1],[2,2,1,2],[2,2,3,2],[2,0,2,0]],[[1,2,0,1],[2,2,1,2],[3,2,3,2],[1,0,2,0]],[[1,2,0,1],[3,2,1,2],[2,2,3,2],[1,0,2,0]],[[1,3,0,1],[2,2,1,2],[2,2,3,2],[1,0,2,0]],[[2,2,0,1],[2,2,1,2],[2,2,3,2],[1,0,2,0]],[[1,2,0,1],[2,2,1,2],[2,2,3,2],[2,0,1,1]],[[1,2,0,1],[2,2,1,2],[3,2,3,2],[1,0,1,1]],[[1,2,0,1],[3,2,1,2],[2,2,3,2],[1,0,1,1]],[[1,3,0,1],[2,2,1,2],[2,2,3,2],[1,0,1,1]],[[2,2,0,1],[2,2,1,2],[2,2,3,2],[1,0,1,1]],[[1,2,0,1],[2,2,1,2],[3,2,3,2],[0,2,1,0]],[[1,2,0,1],[3,2,1,2],[2,2,3,2],[0,2,1,0]],[[1,3,0,1],[2,2,1,2],[2,2,3,2],[0,2,1,0]],[[2,2,0,1],[2,2,1,2],[2,2,3,2],[0,2,1,0]],[[1,2,0,1],[2,2,1,2],[3,2,3,2],[0,2,0,1]],[[1,2,0,1],[3,2,1,2],[2,2,3,2],[0,2,0,1]],[[1,3,0,1],[2,2,1,2],[2,2,3,2],[0,2,0,1]],[[2,2,0,1],[2,2,1,2],[2,2,3,2],[0,2,0,1]],[[1,2,0,1],[2,2,1,2],[3,2,3,2],[0,1,2,0]],[[1,2,0,1],[3,2,1,2],[2,2,3,2],[0,1,2,0]],[[1,3,0,1],[2,2,1,2],[2,2,3,2],[0,1,2,0]],[[2,2,0,1],[2,2,1,2],[2,2,3,2],[0,1,2,0]],[[1,2,0,1],[2,2,1,2],[3,2,3,2],[0,1,1,1]],[[1,2,0,1],[3,2,1,2],[2,2,3,2],[0,1,1,1]],[[1,3,0,1],[2,2,1,2],[2,2,3,2],[0,1,1,1]],[[2,2,0,1],[2,2,1,2],[2,2,3,2],[0,1,1,1]],[[1,2,0,1],[2,2,1,2],[2,2,3,1],[2,1,1,1]],[[1,2,0,1],[2,2,1,2],[3,2,3,1],[1,1,1,1]],[[1,2,0,1],[3,2,1,2],[2,2,3,1],[1,1,1,1]],[[1,3,0,1],[2,2,1,2],[2,2,3,1],[1,1,1,1]],[[2,2,0,1],[2,2,1,2],[2,2,3,1],[1,1,1,1]],[[1,2,0,1],[2,2,1,2],[2,2,3,1],[2,0,2,1]],[[1,2,0,1],[2,2,1,2],[3,2,3,1],[1,0,2,1]],[[1,2,0,1],[3,2,1,2],[2,2,3,1],[1,0,2,1]],[[1,3,0,1],[2,2,1,2],[2,2,3,1],[1,0,2,1]],[[2,2,0,1],[2,2,1,2],[2,2,3,1],[1,0,2,1]],[[1,2,0,1],[2,2,1,2],[3,2,3,1],[0,2,1,1]],[[1,2,0,1],[3,2,1,2],[2,2,3,1],[0,2,1,1]],[[1,3,0,1],[2,2,1,2],[2,2,3,1],[0,2,1,1]],[[2,2,0,1],[2,2,1,2],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[2,2,1,2],[3,2,3,1],[0,1,2,1]],[[1,2,0,1],[3,2,1,2],[2,2,3,1],[0,1,2,1]],[[1,3,0,1],[2,2,1,2],[2,2,3,1],[0,1,2,1]],[[2,2,0,1],[2,2,1,2],[2,2,3,1],[0,1,2,1]],[[1,2,0,1],[2,2,1,2],[2,2,2,2],[2,1,2,0]],[[1,2,0,1],[2,2,1,2],[3,2,2,2],[1,1,2,0]],[[1,2,0,1],[3,2,1,2],[2,2,2,2],[1,1,2,0]],[[1,3,0,1],[2,2,1,2],[2,2,2,2],[1,1,2,0]],[[2,2,0,1],[2,2,1,2],[2,2,2,2],[1,1,2,0]],[[1,2,0,1],[2,2,1,2],[3,2,2,2],[0,2,2,0]],[[1,2,0,1],[3,2,1,2],[2,2,2,2],[0,2,2,0]],[[1,3,0,1],[2,2,1,2],[2,2,2,2],[0,2,2,0]],[[2,2,0,1],[2,2,1,2],[2,2,2,2],[0,2,2,0]],[[1,2,0,1],[2,2,1,2],[2,2,2,1],[2,1,2,1]],[[1,2,0,1],[2,2,1,2],[3,2,2,1],[1,1,2,1]],[[1,2,0,1],[3,2,1,2],[2,2,2,1],[1,1,2,1]],[[1,3,0,1],[2,2,1,2],[2,2,2,1],[1,1,2,1]],[[2,2,0,1],[2,2,1,2],[2,2,2,1],[1,1,2,1]],[[1,2,0,1],[2,2,1,2],[3,2,2,1],[0,2,2,1]],[[1,2,0,1],[3,2,1,2],[2,2,2,1],[0,2,2,1]],[[1,3,0,1],[2,2,1,2],[2,2,2,1],[0,2,2,1]],[[2,2,0,1],[2,2,1,2],[2,2,2,1],[0,2,2,1]],[[1,2,0,1],[2,2,1,2],[2,2,1,2],[2,1,2,1]],[[1,2,0,1],[2,2,1,2],[3,2,1,2],[1,1,2,1]],[[1,2,0,1],[3,2,1,2],[2,2,1,2],[1,1,2,1]],[[1,3,0,1],[2,2,1,2],[2,2,1,2],[1,1,2,1]],[[2,2,0,1],[2,2,1,2],[2,2,1,2],[1,1,2,1]],[[1,2,0,1],[2,2,1,2],[3,2,1,2],[0,2,2,1]],[[1,2,0,1],[3,2,1,2],[2,2,1,2],[0,2,2,1]],[[1,3,0,1],[2,2,1,2],[2,2,1,2],[0,2,2,1]],[[2,2,0,1],[2,2,1,2],[2,2,1,2],[0,2,2,1]],[[1,2,0,1],[2,2,1,2],[2,1,3,2],[1,3,1,0]],[[1,2,0,1],[2,2,1,2],[2,1,3,2],[2,2,1,0]],[[1,2,0,1],[2,2,1,2],[3,1,3,2],[1,2,1,0]],[[1,2,0,1],[3,2,1,2],[2,1,3,2],[1,2,1,0]],[[1,3,0,1],[2,2,1,2],[2,1,3,2],[1,2,1,0]],[[2,2,0,1],[2,2,1,2],[2,1,3,2],[1,2,1,0]],[[1,2,0,1],[2,2,1,2],[2,1,3,2],[1,3,0,1]],[[1,2,0,1],[2,2,1,2],[2,1,3,2],[2,2,0,1]],[[1,2,0,1],[2,2,1,2],[3,1,3,2],[1,2,0,1]],[[1,2,0,1],[3,2,1,2],[2,1,3,2],[1,2,0,1]],[[1,3,0,1],[2,2,1,2],[2,1,3,2],[1,2,0,1]],[[2,2,0,1],[2,2,1,2],[2,1,3,2],[1,2,0,1]],[[1,2,0,1],[2,2,1,2],[2,1,3,1],[1,3,1,1]],[[1,2,0,1],[2,2,1,2],[2,1,3,1],[2,2,1,1]],[[1,2,0,1],[2,2,1,2],[3,1,3,1],[1,2,1,1]],[[1,2,0,1],[3,2,1,2],[2,1,3,1],[1,2,1,1]],[[1,3,0,1],[2,2,1,2],[2,1,3,1],[1,2,1,1]],[[2,2,0,1],[2,2,1,2],[2,1,3,1],[1,2,1,1]],[[1,2,0,1],[2,2,1,2],[2,1,2,2],[1,2,3,0]],[[1,2,0,1],[2,2,1,2],[2,1,2,2],[1,3,2,0]],[[1,2,0,1],[2,2,1,2],[2,1,2,2],[2,2,2,0]],[[1,2,0,1],[2,2,1,2],[3,1,2,2],[1,2,2,0]],[[1,2,0,1],[3,2,1,2],[2,1,2,2],[1,2,2,0]],[[1,3,0,1],[2,2,1,2],[2,1,2,2],[1,2,2,0]],[[2,2,0,1],[2,2,1,2],[2,1,2,2],[1,2,2,0]],[[1,2,0,1],[2,2,1,2],[2,1,2,1],[1,2,2,2]],[[1,2,0,1],[2,2,1,2],[2,1,2,1],[1,2,3,1]],[[1,2,0,1],[2,2,1,2],[2,1,2,1],[1,3,2,1]],[[1,2,0,1],[2,2,1,2],[2,1,2,1],[2,2,2,1]],[[1,2,0,1],[2,2,1,2],[3,1,2,1],[1,2,2,1]],[[1,2,0,1],[3,2,1,2],[2,1,2,1],[1,2,2,1]],[[1,3,0,1],[2,2,1,2],[2,1,2,1],[1,2,2,1]],[[2,2,0,1],[2,2,1,2],[2,1,2,1],[1,2,2,1]],[[1,2,0,1],[2,2,1,2],[2,1,1,2],[1,2,2,2]],[[1,2,0,1],[2,2,1,2],[2,1,1,2],[1,2,3,1]],[[1,2,0,1],[2,2,1,2],[2,1,1,2],[1,3,2,1]],[[1,2,0,1],[2,2,1,2],[2,1,1,2],[2,2,2,1]],[[1,2,0,1],[2,2,1,2],[2,1,1,3],[1,2,2,1]],[[1,2,0,1],[2,2,1,2],[3,1,1,2],[1,2,2,1]],[[1,2,0,1],[2,2,1,3],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[3,2,1,2],[2,1,1,2],[1,2,2,1]],[[1,2,0,2],[2,2,1,2],[2,1,1,2],[1,2,2,1]],[[1,3,0,1],[2,2,1,2],[2,1,1,2],[1,2,2,1]],[[2,2,0,1],[2,2,1,2],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[2,2,1,2],[2,0,3,2],[1,2,3,0]],[[1,2,0,1],[2,2,1,2],[2,0,3,2],[1,3,2,0]],[[1,2,0,1],[2,2,1,2],[2,0,3,2],[2,2,2,0]],[[1,2,0,1],[2,2,1,2],[2,0,3,3],[1,2,2,0]],[[1,2,0,1],[2,2,1,2],[2,0,4,2],[1,2,2,0]],[[1,2,0,1],[2,2,1,2],[3,0,3,2],[1,2,2,0]],[[1,2,0,1],[2,2,1,3],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[3,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,0,2],[2,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,3,0,1],[2,2,1,2],[2,0,3,2],[1,2,2,0]],[[2,2,0,1],[2,2,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[2,2,1,2],[2,0,3,2],[1,2,1,2]],[[1,2,0,1],[2,2,1,2],[2,0,3,3],[1,2,1,1]],[[1,2,0,1],[2,2,1,2],[2,0,4,2],[1,2,1,1]],[[1,2,0,1],[2,2,1,3],[2,0,3,2],[1,2,1,1]],[[1,2,0,2],[2,2,1,2],[2,0,3,2],[1,2,1,1]],[[1,2,0,1],[2,2,1,2],[2,0,3,1],[1,2,2,2]],[[1,2,0,1],[2,2,1,2],[2,0,3,1],[1,2,3,1]],[[2,1,2,0],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,3,0],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[3,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,1,4,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,1,3,3],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,1,3,2],[3,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,1,3,2],[2,0,1,3],[1,2,2,1]],[[1,1,2,0],[2,1,3,2],[2,0,1,2],[2,2,2,1]],[[1,1,2,0],[2,1,3,2],[2,0,1,2],[1,3,2,1]],[[1,1,2,0],[2,1,3,2],[2,0,1,2],[1,2,3,1]],[[1,1,2,0],[2,1,3,2],[2,0,1,2],[1,2,2,2]],[[1,1,3,0],[2,1,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,0],[2,1,4,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,0],[2,1,3,3],[2,0,2,2],[1,2,1,1]],[[1,1,2,0],[2,1,3,2],[2,0,2,3],[1,2,1,1]],[[1,1,2,0],[2,1,3,2],[2,0,2,2],[1,2,1,2]],[[1,1,3,0],[2,1,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[2,1,4,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[2,1,3,3],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[2,1,3,2],[2,0,2,3],[1,2,2,0]],[[2,1,2,0],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,3,0],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[3,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[2,1,4,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[2,1,3,3],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[2,1,3,2],[3,0,3,0],[1,2,2,1]],[[1,1,2,0],[2,1,3,2],[2,0,4,0],[1,2,2,1]],[[1,1,2,0],[2,1,3,2],[2,0,3,0],[2,2,2,1]],[[1,1,2,0],[2,1,3,2],[2,0,3,0],[1,3,2,1]],[[1,1,2,0],[2,1,3,2],[2,0,3,0],[1,2,3,1]],[[1,1,2,0],[2,1,3,2],[2,0,3,0],[1,2,2,2]],[[1,1,3,0],[2,1,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[2,1,4,2],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[2,1,3,3],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[2,1,3,2],[2,0,4,1],[1,2,1,1]],[[2,1,2,0],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,3,0],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,0],[3,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,0],[2,1,4,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,0],[2,1,3,3],[2,0,3,1],[1,2,2,0]],[[1,1,2,0],[2,1,3,2],[3,0,3,1],[1,2,2,0]],[[1,1,2,0],[2,1,3,2],[2,0,4,1],[1,2,2,0]],[[1,1,2,0],[2,1,3,2],[2,0,3,1],[2,2,2,0]],[[1,1,2,0],[2,1,3,2],[2,0,3,1],[1,3,2,0]],[[1,1,2,0],[2,1,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,0,1],[2,2,1,2],[2,0,3,1],[1,3,2,1]],[[1,2,0,1],[2,2,1,2],[2,0,3,1],[2,2,2,1]],[[1,2,0,1],[2,2,1,2],[2,0,4,1],[1,2,2,1]],[[1,2,0,1],[2,2,1,2],[3,0,3,1],[1,2,2,1]],[[1,2,0,1],[3,2,1,2],[2,0,3,1],[1,2,2,1]],[[1,3,0,1],[2,2,1,2],[2,0,3,1],[1,2,2,1]],[[2,2,0,1],[2,2,1,2],[2,0,3,1],[1,2,2,1]],[[1,2,0,1],[2,2,1,2],[2,0,2,2],[1,2,2,2]],[[1,2,0,1],[2,2,1,2],[2,0,2,2],[1,2,3,1]],[[1,2,0,1],[2,2,1,2],[2,0,2,2],[1,3,2,1]],[[1,2,0,1],[2,2,1,2],[2,0,2,2],[2,2,2,1]],[[1,2,0,1],[2,2,1,2],[2,0,2,3],[1,2,2,1]],[[2,1,2,0],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,3,0],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[3,1,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,1,4,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,1,3,3],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,1,3,2],[3,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,1,3,2],[2,1,0,3],[1,2,2,1]],[[1,1,2,0],[2,1,3,2],[2,1,0,2],[2,2,2,1]],[[1,1,2,0],[2,1,3,2],[2,1,0,2],[1,3,2,1]],[[1,1,2,0],[2,1,3,2],[2,1,0,2],[1,2,3,1]],[[1,1,2,0],[2,1,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,0,1],[2,2,1,2],[3,0,2,2],[1,2,2,1]],[[1,2,0,1],[2,2,1,3],[2,0,2,2],[1,2,2,1]],[[1,2,0,1],[3,2,1,2],[2,0,2,2],[1,2,2,1]],[[1,2,0,2],[2,2,1,2],[2,0,2,2],[1,2,2,1]],[[1,3,0,1],[2,2,1,2],[2,0,2,2],[1,2,2,1]],[[2,2,0,1],[2,2,1,2],[2,0,2,2],[1,2,2,1]],[[1,2,0,1],[3,2,1,2],[1,3,3,2],[1,2,0,0]],[[1,3,0,1],[2,2,1,2],[1,3,3,2],[1,2,0,0]],[[2,2,0,1],[2,2,1,2],[1,3,3,2],[1,2,0,0]],[[1,2,0,1],[3,2,1,2],[1,3,3,2],[1,1,1,0]],[[1,3,0,1],[2,2,1,2],[1,3,3,2],[1,1,1,0]],[[2,2,0,1],[2,2,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,0,1],[3,2,1,2],[1,3,3,2],[1,1,0,1]],[[1,3,0,1],[2,2,1,2],[1,3,3,2],[1,1,0,1]],[[2,2,0,1],[2,2,1,2],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[3,2,1,2],[1,3,3,2],[1,0,2,0]],[[1,3,0,1],[2,2,1,2],[1,3,3,2],[1,0,2,0]],[[2,2,0,1],[2,2,1,2],[1,3,3,2],[1,0,2,0]],[[1,2,0,1],[3,2,1,2],[1,3,3,2],[1,0,1,1]],[[1,3,0,1],[2,2,1,2],[1,3,3,2],[1,0,1,1]],[[2,2,0,1],[2,2,1,2],[1,3,3,2],[1,0,1,1]],[[1,2,0,1],[3,2,1,2],[1,3,3,2],[0,2,1,0]],[[1,3,0,1],[2,2,1,2],[1,3,3,2],[0,2,1,0]],[[2,2,0,1],[2,2,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,0,1],[3,2,1,2],[1,3,3,2],[0,2,0,1]],[[1,3,0,1],[2,2,1,2],[1,3,3,2],[0,2,0,1]],[[2,2,0,1],[2,2,1,2],[1,3,3,2],[0,2,0,1]],[[1,2,0,1],[3,2,1,2],[1,3,3,2],[0,1,2,0]],[[1,3,0,1],[2,2,1,2],[1,3,3,2],[0,1,2,0]],[[2,2,0,1],[2,2,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,0,1],[3,2,1,2],[1,3,3,2],[0,1,1,1]],[[1,3,0,1],[2,2,1,2],[1,3,3,2],[0,1,1,1]],[[2,2,0,1],[2,2,1,2],[1,3,3,2],[0,1,1,1]],[[1,2,0,1],[3,2,1,2],[1,3,3,1],[1,1,1,1]],[[1,3,0,1],[2,2,1,2],[1,3,3,1],[1,1,1,1]],[[2,2,0,1],[2,2,1,2],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[3,2,1,2],[1,3,3,1],[1,0,2,1]],[[1,3,0,1],[2,2,1,2],[1,3,3,1],[1,0,2,1]],[[2,2,0,1],[2,2,1,2],[1,3,3,1],[1,0,2,1]],[[1,2,0,1],[3,2,1,2],[1,3,3,1],[0,2,1,1]],[[1,3,0,1],[2,2,1,2],[1,3,3,1],[0,2,1,1]],[[2,2,0,1],[2,2,1,2],[1,3,3,1],[0,2,1,1]],[[1,2,0,1],[3,2,1,2],[1,3,3,1],[0,1,2,1]],[[1,3,0,1],[2,2,1,2],[1,3,3,1],[0,1,2,1]],[[2,2,0,1],[2,2,1,2],[1,3,3,1],[0,1,2,1]],[[1,2,0,1],[3,2,1,2],[1,3,2,2],[1,1,2,0]],[[1,3,0,1],[2,2,1,2],[1,3,2,2],[1,1,2,0]],[[2,2,0,1],[2,2,1,2],[1,3,2,2],[1,1,2,0]],[[1,2,0,1],[3,2,1,2],[1,3,2,2],[0,2,2,0]],[[1,3,0,1],[2,2,1,2],[1,3,2,2],[0,2,2,0]],[[2,2,0,1],[2,2,1,2],[1,3,2,2],[0,2,2,0]],[[1,2,0,1],[3,2,1,2],[1,3,2,1],[1,1,2,1]],[[1,3,0,1],[2,2,1,2],[1,3,2,1],[1,1,2,1]],[[2,2,0,1],[2,2,1,2],[1,3,2,1],[1,1,2,1]],[[1,2,0,1],[3,2,1,2],[1,3,2,1],[0,2,2,1]],[[1,3,0,1],[2,2,1,2],[1,3,2,1],[0,2,2,1]],[[2,2,0,1],[2,2,1,2],[1,3,2,1],[0,2,2,1]],[[1,2,0,1],[3,2,1,2],[1,3,1,2],[1,1,2,1]],[[1,3,0,1],[2,2,1,2],[1,3,1,2],[1,1,2,1]],[[2,2,0,1],[2,2,1,2],[1,3,1,2],[1,1,2,1]],[[1,2,0,1],[3,2,1,2],[1,3,1,2],[0,2,2,1]],[[1,3,0,1],[2,2,1,2],[1,3,1,2],[0,2,2,1]],[[2,2,0,1],[2,2,1,2],[1,3,1,2],[0,2,2,1]],[[1,2,0,1],[3,2,1,2],[0,3,3,2],[1,2,1,0]],[[1,3,0,1],[2,2,1,2],[0,3,3,2],[1,2,1,0]],[[2,2,0,1],[2,2,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,0,1],[3,2,1,2],[0,3,3,2],[1,2,0,1]],[[1,3,0,1],[2,2,1,2],[0,3,3,2],[1,2,0,1]],[[2,2,0,1],[2,2,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,0,1],[3,2,1,2],[0,3,3,2],[1,1,2,0]],[[1,3,0,1],[2,2,1,2],[0,3,3,2],[1,1,2,0]],[[2,2,0,1],[2,2,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,0,1],[3,2,1,2],[0,3,3,2],[1,1,1,1]],[[1,3,0,1],[2,2,1,2],[0,3,3,2],[1,1,1,1]],[[2,2,0,1],[2,2,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,0,1],[3,2,1,2],[0,3,3,1],[1,2,1,1]],[[1,3,0,1],[2,2,1,2],[0,3,3,1],[1,2,1,1]],[[2,2,0,1],[2,2,1,2],[0,3,3,1],[1,2,1,1]],[[1,2,0,1],[3,2,1,2],[0,3,3,1],[1,1,2,1]],[[1,3,0,1],[2,2,1,2],[0,3,3,1],[1,1,2,1]],[[2,2,0,1],[2,2,1,2],[0,3,3,1],[1,1,2,1]],[[1,2,0,1],[3,2,1,2],[0,3,2,2],[1,2,2,0]],[[1,3,0,1],[2,2,1,2],[0,3,2,2],[1,2,2,0]],[[2,2,0,1],[2,2,1,2],[0,3,2,2],[1,2,2,0]],[[1,2,0,1],[3,2,1,2],[0,3,2,1],[1,2,2,1]],[[1,3,0,1],[2,2,1,2],[0,3,2,1],[1,2,2,1]],[[2,2,0,1],[2,2,1,2],[0,3,2,1],[1,2,2,1]],[[1,2,0,1],[3,2,1,2],[0,3,1,2],[1,2,2,1]],[[1,3,0,1],[2,2,1,2],[0,3,1,2],[1,2,2,1]],[[2,2,0,1],[2,2,1,2],[0,3,1,2],[1,2,2,1]],[[1,2,0,1],[2,2,1,0],[2,3,3,2],[2,1,2,0]],[[1,2,0,1],[2,2,1,0],[2,4,3,2],[1,1,2,0]],[[1,2,0,1],[2,2,1,0],[3,3,3,2],[1,1,2,0]],[[1,2,0,1],[3,2,1,0],[2,3,3,2],[1,1,2,0]],[[2,2,0,1],[2,2,1,0],[2,3,3,2],[1,1,2,0]],[[1,2,0,1],[2,2,1,0],[2,3,3,2],[0,2,3,0]],[[1,2,0,1],[2,2,1,0],[2,3,3,2],[0,3,2,0]],[[1,2,0,1],[2,2,1,0],[2,4,3,2],[0,2,2,0]],[[1,2,0,1],[2,2,1,0],[3,3,3,2],[0,2,2,0]],[[1,2,0,1],[3,2,1,0],[2,3,3,2],[0,2,2,0]],[[2,2,0,1],[2,2,1,0],[2,3,3,2],[0,2,2,0]],[[1,2,0,1],[2,2,1,0],[2,3,3,1],[2,1,2,1]],[[1,2,0,1],[2,2,1,0],[2,4,3,1],[1,1,2,1]],[[1,2,0,1],[2,2,1,0],[3,3,3,1],[1,1,2,1]],[[1,2,0,1],[3,2,1,0],[2,3,3,1],[1,1,2,1]],[[2,2,0,1],[2,2,1,0],[2,3,3,1],[1,1,2,1]],[[1,2,0,1],[2,2,1,0],[2,3,3,1],[0,2,2,2]],[[1,2,0,1],[2,2,1,0],[2,3,3,1],[0,2,3,1]],[[1,2,0,1],[2,2,1,0],[2,3,3,1],[0,3,2,1]],[[1,2,0,1],[2,2,1,0],[2,4,3,1],[0,2,2,1]],[[1,2,0,1],[2,2,1,0],[3,3,3,1],[0,2,2,1]],[[1,2,0,1],[3,2,1,0],[2,3,3,1],[0,2,2,1]],[[2,2,0,1],[2,2,1,0],[2,3,3,1],[0,2,2,1]],[[1,2,0,1],[2,2,1,0],[2,2,3,2],[1,2,3,0]],[[1,2,0,1],[2,2,1,0],[2,2,3,2],[1,3,2,0]],[[1,2,0,1],[2,2,1,0],[2,2,3,2],[2,2,2,0]],[[1,2,0,1],[2,2,1,0],[3,2,3,2],[1,2,2,0]],[[1,2,0,1],[3,2,1,0],[2,2,3,2],[1,2,2,0]],[[2,2,0,1],[2,2,1,0],[2,2,3,2],[1,2,2,0]],[[1,2,0,1],[2,2,1,0],[2,2,3,1],[1,2,2,2]],[[1,2,0,1],[2,2,1,0],[2,2,3,1],[1,2,3,1]],[[1,2,0,1],[2,2,1,0],[2,2,3,1],[1,3,2,1]],[[1,2,0,1],[2,2,1,0],[2,2,3,1],[2,2,2,1]],[[1,2,0,1],[2,2,1,0],[3,2,3,1],[1,2,2,1]],[[1,2,0,1],[3,2,1,0],[2,2,3,1],[1,2,2,1]],[[2,2,0,1],[2,2,1,0],[2,2,3,1],[1,2,2,1]],[[1,2,0,1],[2,2,1,0],[1,3,3,2],[1,2,3,0]],[[1,2,0,1],[2,2,1,0],[1,3,3,2],[1,3,2,0]],[[1,2,0,1],[2,2,1,0],[1,3,3,2],[2,2,2,0]],[[1,2,0,1],[2,2,1,0],[1,4,3,2],[1,2,2,0]],[[1,2,0,1],[2,2,1,0],[1,3,3,1],[1,2,2,2]],[[1,2,0,1],[2,2,1,0],[1,3,3,1],[1,2,3,1]],[[1,2,0,1],[2,2,1,0],[1,3,3,1],[1,3,2,1]],[[1,2,0,1],[2,2,1,0],[1,3,3,1],[2,2,2,1]],[[1,2,0,1],[2,2,1,0],[1,4,3,1],[1,2,2,1]],[[1,2,0,1],[2,2,0,2],[2,0,3,2],[1,2,2,2]],[[1,2,0,1],[2,2,0,2],[2,0,3,2],[1,2,3,1]],[[1,2,0,1],[2,2,0,2],[2,0,3,2],[1,3,2,1]],[[1,2,0,1],[2,2,0,2],[2,0,3,2],[2,2,2,1]],[[1,2,0,1],[2,2,0,2],[2,0,3,3],[1,2,2,1]],[[1,2,0,1],[2,2,0,2],[3,0,3,2],[1,2,2,1]],[[1,2,0,1],[3,2,0,2],[2,0,3,2],[1,2,2,1]],[[2,2,0,1],[2,2,0,2],[2,0,3,2],[1,2,2,1]],[[1,2,0,1],[2,2,0,0],[2,3,3,2],[1,3,2,0]],[[1,2,0,1],[2,2,0,0],[2,3,3,2],[2,2,2,0]],[[1,2,0,1],[2,2,0,0],[3,3,3,2],[1,2,2,0]],[[1,2,0,1],[2,2,0,0],[2,3,3,1],[1,2,3,1]],[[1,2,0,1],[2,2,0,0],[2,3,3,1],[1,3,2,1]],[[1,2,0,1],[2,2,0,0],[2,3,3,1],[2,2,2,1]],[[1,2,0,1],[2,2,0,0],[3,3,3,1],[1,2,2,1]],[[1,2,0,1],[2,1,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,0,1],[2,1,3,2],[2,4,3,1],[1,1,0,0]],[[1,2,0,1],[2,1,3,2],[3,3,3,1],[1,1,0,0]],[[1,2,0,1],[3,1,3,2],[2,3,3,1],[1,1,0,0]],[[1,3,0,1],[2,1,3,2],[2,3,3,1],[1,1,0,0]],[[2,2,0,1],[2,1,3,2],[2,3,3,1],[1,1,0,0]],[[1,2,0,1],[2,1,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,0,1],[2,1,3,2],[3,3,3,1],[0,2,0,0]],[[1,2,0,1],[3,1,3,2],[2,3,3,1],[0,2,0,0]],[[1,3,0,1],[2,1,3,2],[2,3,3,1],[0,2,0,0]],[[2,2,0,1],[2,1,3,2],[2,3,3,1],[0,2,0,0]],[[1,2,0,1],[2,1,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,0,1],[2,1,3,2],[2,4,3,0],[1,2,0,0]],[[1,2,0,1],[2,1,3,2],[3,3,3,0],[1,2,0,0]],[[1,2,0,1],[3,1,3,2],[2,3,3,0],[1,2,0,0]],[[1,3,0,1],[2,1,3,2],[2,3,3,0],[1,2,0,0]],[[2,2,0,1],[2,1,3,2],[2,3,3,0],[1,2,0,0]],[[1,2,0,1],[2,1,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,0,1],[2,1,3,2],[2,4,3,0],[1,1,1,0]],[[1,2,0,1],[2,1,3,2],[3,3,3,0],[1,1,1,0]],[[1,2,0,1],[3,1,3,2],[2,3,3,0],[1,1,1,0]],[[1,3,0,1],[2,1,3,2],[2,3,3,0],[1,1,1,0]],[[2,2,0,1],[2,1,3,2],[2,3,3,0],[1,1,1,0]],[[1,2,0,1],[2,1,3,2],[2,3,3,0],[2,0,2,0]],[[1,2,0,1],[2,1,3,2],[2,4,3,0],[1,0,2,0]],[[1,2,0,1],[2,1,3,2],[3,3,3,0],[1,0,2,0]],[[1,2,0,1],[3,1,3,2],[2,3,3,0],[1,0,2,0]],[[1,3,0,1],[2,1,3,2],[2,3,3,0],[1,0,2,0]],[[2,2,0,1],[2,1,3,2],[2,3,3,0],[1,0,2,0]],[[1,2,0,1],[2,1,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,0,1],[2,1,3,2],[2,4,3,0],[0,2,1,0]],[[1,2,0,1],[2,1,3,2],[3,3,3,0],[0,2,1,0]],[[1,2,0,1],[3,1,3,2],[2,3,3,0],[0,2,1,0]],[[1,3,0,1],[2,1,3,2],[2,3,3,0],[0,2,1,0]],[[2,2,0,1],[2,1,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,0,1],[2,1,3,2],[2,4,3,0],[0,1,2,0]],[[1,2,0,1],[2,1,3,2],[3,3,3,0],[0,1,2,0]],[[1,2,0,1],[3,1,3,2],[2,3,3,0],[0,1,2,0]],[[1,3,0,1],[2,1,3,2],[2,3,3,0],[0,1,2,0]],[[2,2,0,1],[2,1,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,2,0],[2,2,0,0],[1,4,3,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,0],[1,3,3,2],[2,2,2,1]],[[1,1,2,0],[2,2,0,0],[1,3,3,2],[1,3,2,1]],[[1,1,2,0],[2,2,0,0],[1,3,3,2],[1,2,3,1]],[[1,1,2,0],[2,2,0,0],[1,3,3,2],[1,2,2,2]],[[2,1,2,0],[2,2,0,0],[2,2,3,2],[1,2,2,1]],[[1,1,2,0],[3,2,0,0],[2,2,3,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,0],[3,2,3,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,0],[2,2,3,2],[2,2,2,1]],[[1,1,2,0],[2,2,0,0],[2,2,3,2],[1,3,2,1]],[[1,1,2,0],[2,2,0,0],[2,2,3,2],[1,2,3,1]],[[1,1,2,0],[2,2,0,0],[2,2,3,2],[1,2,2,2]],[[2,1,2,0],[2,2,0,0],[2,3,3,2],[0,2,2,1]],[[1,1,2,0],[3,2,0,0],[2,3,3,2],[0,2,2,1]],[[1,1,2,0],[2,2,0,0],[3,3,3,2],[0,2,2,1]],[[1,1,2,0],[2,2,0,0],[2,4,3,2],[0,2,2,1]],[[1,1,2,0],[2,2,0,0],[2,3,3,2],[0,3,2,1]],[[1,1,2,0],[2,2,0,0],[2,3,3,2],[0,2,3,1]],[[1,1,2,0],[2,2,0,0],[2,3,3,2],[0,2,2,2]],[[2,1,2,0],[2,2,0,0],[2,3,3,2],[1,1,2,1]],[[1,1,2,0],[3,2,0,0],[2,3,3,2],[1,1,2,1]],[[1,1,2,0],[2,2,0,0],[3,3,3,2],[1,1,2,1]],[[1,1,2,0],[2,2,0,0],[2,4,3,2],[1,1,2,1]],[[1,1,2,0],[2,2,0,0],[2,3,3,2],[2,1,2,1]],[[1,1,2,0],[2,2,0,1],[1,4,3,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,1],[1,3,3,1],[2,2,2,1]],[[1,1,2,0],[2,2,0,1],[1,3,3,1],[1,3,2,1]],[[1,1,2,0],[2,2,0,1],[1,3,3,1],[1,2,3,1]],[[1,1,2,0],[2,2,0,1],[1,3,3,1],[1,2,2,2]],[[1,1,2,0],[2,2,0,1],[1,4,3,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,1],[1,3,3,2],[2,2,2,0]],[[1,1,2,0],[2,2,0,1],[1,3,3,2],[1,3,2,0]],[[1,1,2,0],[2,2,0,1],[1,3,3,2],[1,2,3,0]],[[2,1,2,0],[2,2,0,1],[2,2,3,1],[1,2,2,1]],[[1,1,2,0],[3,2,0,1],[2,2,3,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,1],[3,2,3,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,1],[2,2,3,1],[2,2,2,1]],[[1,1,2,0],[2,2,0,1],[2,2,3,1],[1,3,2,1]],[[1,1,2,0],[2,2,0,1],[2,2,3,1],[1,2,3,1]],[[1,1,2,0],[2,2,0,1],[2,2,3,1],[1,2,2,2]],[[2,1,2,0],[2,2,0,1],[2,2,3,2],[1,2,2,0]],[[1,1,2,0],[3,2,0,1],[2,2,3,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,1],[3,2,3,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,1],[2,2,3,2],[2,2,2,0]],[[1,1,2,0],[2,2,0,1],[2,2,3,2],[1,3,2,0]],[[1,1,2,0],[2,2,0,1],[2,2,3,2],[1,2,3,0]],[[2,1,2,0],[2,2,0,1],[2,3,3,1],[0,2,2,1]],[[1,1,2,0],[3,2,0,1],[2,3,3,1],[0,2,2,1]],[[1,1,2,0],[2,2,0,1],[3,3,3,1],[0,2,2,1]],[[1,1,2,0],[2,2,0,1],[2,4,3,1],[0,2,2,1]],[[1,1,2,0],[2,2,0,1],[2,3,3,1],[0,3,2,1]],[[1,1,2,0],[2,2,0,1],[2,3,3,1],[0,2,3,1]],[[1,1,2,0],[2,2,0,1],[2,3,3,1],[0,2,2,2]],[[2,1,2,0],[2,2,0,1],[2,3,3,1],[1,1,2,1]],[[1,1,2,0],[3,2,0,1],[2,3,3,1],[1,1,2,1]],[[1,1,2,0],[2,2,0,1],[3,3,3,1],[1,1,2,1]],[[1,1,2,0],[2,2,0,1],[2,4,3,1],[1,1,2,1]],[[1,1,2,0],[2,2,0,1],[2,3,3,1],[2,1,2,1]],[[2,1,2,0],[2,2,0,1],[2,3,3,2],[0,2,2,0]],[[1,1,2,0],[3,2,0,1],[2,3,3,2],[0,2,2,0]],[[1,1,2,0],[2,2,0,1],[3,3,3,2],[0,2,2,0]],[[1,1,2,0],[2,2,0,1],[2,4,3,2],[0,2,2,0]],[[1,1,2,0],[2,2,0,1],[2,3,3,2],[0,3,2,0]],[[1,1,2,0],[2,2,0,1],[2,3,3,2],[0,2,3,0]],[[2,1,2,0],[2,2,0,1],[2,3,3,2],[1,1,2,0]],[[1,1,2,0],[3,2,0,1],[2,3,3,2],[1,1,2,0]],[[1,1,2,0],[2,2,0,1],[3,3,3,2],[1,1,2,0]],[[1,1,2,0],[2,2,0,1],[2,4,3,2],[1,1,2,0]],[[1,1,2,0],[2,2,0,1],[2,3,3,2],[2,1,2,0]],[[1,1,2,0],[2,2,0,3],[1,2,2,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[1,2,2,3],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[1,2,2,2],[2,2,2,1]],[[1,1,2,0],[2,2,0,2],[1,2,2,2],[1,3,2,1]],[[1,1,2,0],[2,2,0,2],[1,2,2,2],[1,2,3,1]],[[1,1,2,0],[2,2,0,2],[1,2,2,2],[1,2,2,2]],[[1,1,2,0],[2,2,0,2],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[2,2,0,2],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[2,2,0,2],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[2,2,0,2],[1,2,3,1],[1,2,2,2]],[[1,1,2,0],[2,2,0,3],[1,2,3,2],[1,2,1,1]],[[1,1,2,0],[2,2,0,2],[1,2,4,2],[1,2,1,1]],[[1,1,2,0],[2,2,0,2],[1,2,3,3],[1,2,1,1]],[[1,1,2,0],[2,2,0,2],[1,2,3,2],[1,2,1,2]],[[1,1,2,0],[2,2,0,3],[1,2,3,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[1,2,3,3],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[2,2,0,2],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[2,2,0,2],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[2,2,0,3],[1,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[1,4,1,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[1,3,1,3],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[1,3,1,2],[2,2,2,1]],[[1,1,2,0],[2,2,0,2],[1,3,1,2],[1,3,2,1]],[[1,1,2,0],[2,2,0,2],[1,3,1,2],[1,2,3,1]],[[1,1,2,0],[2,2,0,2],[1,3,1,2],[1,2,2,2]],[[1,1,2,0],[2,2,0,2],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[2,2,0,2],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[2,2,0,2],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[2,2,0,2],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[2,2,0,3],[1,3,2,2],[1,1,2,1]],[[1,1,2,0],[2,2,0,2],[1,3,2,3],[1,1,2,1]],[[1,1,2,0],[2,2,0,2],[1,3,2,2],[1,1,3,1]],[[1,1,2,0],[2,2,0,2],[1,3,2,2],[1,1,2,2]],[[1,1,2,0],[2,2,0,2],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[2,2,0,2],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[2,2,0,2],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[2,2,0,2],[1,4,3,1],[1,1,2,1]],[[1,1,2,0],[2,2,0,2],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[2,2,0,2],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[2,2,0,2],[1,3,3,1],[1,1,2,2]],[[1,1,2,0],[2,2,0,2],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[2,2,0,2],[1,3,4,1],[1,2,1,1]],[[1,1,2,0],[2,2,0,2],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[2,2,0,2],[1,3,3,1],[1,3,1,1]],[[1,1,2,0],[2,2,0,3],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,2,0,2],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[2,2,0,2],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[2,2,0,2],[1,3,3,3],[1,1,1,1]],[[1,1,2,0],[2,2,0,2],[1,3,3,2],[1,1,1,2]],[[1,1,2,0],[2,2,0,3],[1,3,3,2],[1,1,2,0]],[[1,1,2,0],[2,2,0,2],[1,4,3,2],[1,1,2,0]],[[1,1,2,0],[2,2,0,2],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[2,2,0,2],[1,3,3,3],[1,1,2,0]],[[1,1,2,0],[2,2,0,2],[1,3,3,2],[1,1,3,0]],[[1,1,2,0],[2,2,0,3],[1,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,2,0,2],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[2,2,0,2],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[2,2,0,2],[1,3,3,3],[1,2,0,1]],[[1,1,2,0],[2,2,0,2],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[2,2,0,2],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[2,2,0,2],[1,3,3,2],[1,2,0,2]],[[1,1,2,0],[2,2,0,3],[1,3,3,2],[1,2,1,0]],[[1,1,2,0],[2,2,0,2],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[2,2,0,2],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[2,2,0,2],[1,3,3,3],[1,2,1,0]],[[1,1,2,0],[2,2,0,2],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[2,2,0,2],[1,3,3,2],[1,3,1,0]],[[2,1,2,0],[2,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[3,2,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,3],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[3,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,1,2,3],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[2,2,0,2],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[2,2,0,2],[2,1,2,2],[1,2,2,2]],[[2,1,2,0],[2,2,0,2],[2,1,3,1],[1,2,2,1]],[[1,1,2,0],[3,2,0,2],[2,1,3,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[3,1,3,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[2,2,0,2],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[2,2,0,2],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[2,2,0,3],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[2,2,0,2],[2,1,4,2],[1,2,1,1]],[[1,1,2,0],[2,2,0,2],[2,1,3,3],[1,2,1,1]],[[1,1,2,0],[2,2,0,2],[2,1,3,2],[1,2,1,2]],[[2,1,2,0],[2,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[3,2,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,3],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,1,3,3],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[2,2,0,2],[2,1,3,2],[1,2,3,0]],[[2,1,2,0],[2,2,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[3,2,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,3],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[3,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,1,3],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,1,2],[2,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,1,2],[1,3,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[2,2,0,2],[2,2,1,2],[1,2,2,2]],[[2,1,2,0],[2,2,0,2],[2,2,2,1],[1,2,2,1]],[[1,1,2,0],[3,2,0,2],[2,2,2,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[2,2,0,2],[2,2,2,1],[1,2,2,2]],[[1,1,2,0],[2,2,0,3],[2,2,2,2],[0,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,2,2],[0,3,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,2,2],[0,2,3,1]],[[1,1,2,0],[2,2,0,2],[2,2,2,2],[0,2,2,2]],[[2,1,2,0],[2,2,0,2],[2,2,2,2],[1,2,2,0]],[[1,1,2,0],[3,2,0,2],[2,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[2,2,0,2],[2,2,2,2],[1,2,3,0]],[[1,1,2,0],[2,2,0,2],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[2,2,0,2],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[2,2,0,2],[2,2,3,1],[0,2,2,2]],[[2,1,2,0],[2,2,0,2],[2,2,3,1],[1,2,1,1]],[[1,1,2,0],[3,2,0,2],[2,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,2,0,2],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,2,0,2],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[2,2,0,2],[2,2,3,1],[1,3,1,1]],[[1,1,2,0],[2,2,0,3],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[2,2,0,2],[2,2,4,2],[0,2,1,1]],[[1,1,2,0],[2,2,0,2],[2,2,3,3],[0,2,1,1]],[[1,1,2,0],[2,2,0,2],[2,2,3,2],[0,2,1,2]],[[1,1,2,0],[2,2,0,3],[2,2,3,2],[0,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,2,3,3],[0,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[2,2,0,2],[2,2,3,2],[0,2,3,0]],[[2,1,2,0],[2,2,0,2],[2,2,3,2],[1,2,0,1]],[[1,1,2,0],[3,2,0,2],[2,2,3,2],[1,2,0,1]],[[1,1,2,0],[2,2,0,2],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[2,2,0,2],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[2,2,0,2],[2,2,3,2],[1,3,0,1]],[[2,1,2,0],[2,2,0,2],[2,2,3,2],[1,2,1,0]],[[1,1,2,0],[3,2,0,2],[2,2,3,2],[1,2,1,0]],[[1,1,2,0],[2,2,0,2],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[2,2,0,2],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[2,2,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[2,1,3,2],[2,3,2,1],[2,2,0,0]],[[2,1,2,0],[2,2,0,2],[2,3,0,2],[1,2,2,1]],[[1,1,2,0],[3,2,0,2],[2,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[3,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,0,2],[2,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,0,2],[1,3,2,1]],[[2,1,2,0],[2,2,0,2],[2,3,1,1],[1,2,2,1]],[[1,1,2,0],[3,2,0,2],[2,3,1,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[3,3,1,1],[1,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,1,1],[2,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,1,1],[1,3,2,1]],[[2,1,2,0],[2,2,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[3,2,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,2,0,3],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,2,0,2],[3,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,4,1,2],[0,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,1,3],[0,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,1,2],[0,3,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,1,2],[0,2,3,1]],[[1,1,2,0],[2,2,0,2],[2,3,1,2],[0,2,2,2]],[[2,1,2,0],[2,2,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[3,2,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,2,0,2],[3,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,2,0,2],[2,4,1,2],[1,1,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,1,2],[2,1,2,1]],[[2,1,2,0],[2,2,0,2],[2,3,1,2],[1,2,2,0]],[[1,1,2,0],[3,2,0,2],[2,3,1,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[3,3,1,2],[1,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,1,2],[2,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,1,2],[1,3,2,0]],[[2,1,2,0],[2,2,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[3,2,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,2,0,2],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[2,2,0,2],[2,3,2,1],[0,2,2,2]],[[2,1,2,0],[2,2,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[3,2,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,2,0,2],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,2,0,2],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,2,1],[2,1,2,1]],[[1,1,2,0],[2,2,0,3],[2,3,2,2],[0,1,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,2,3],[0,1,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,2,2],[0,1,3,1]],[[1,1,2,0],[2,2,0,2],[2,3,2,2],[0,1,2,2]],[[2,1,2,0],[2,2,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[3,2,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,2,0,2],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,2,2],[0,2,3,0]],[[1,1,2,0],[2,2,0,3],[2,3,2,2],[1,0,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,2,3],[1,0,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,2,2],[1,0,3,1]],[[1,1,2,0],[2,2,0,2],[2,3,2,2],[1,0,2,2]],[[2,1,2,0],[2,2,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[3,2,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,2,0,2],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,2,0,2],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,1,3,2],[2,4,2,1],[1,2,0,0]],[[1,2,0,1],[2,1,3,2],[3,3,2,1],[1,2,0,0]],[[1,2,0,1],[3,1,3,2],[2,3,2,1],[1,2,0,0]],[[1,3,0,1],[2,1,3,2],[2,3,2,1],[1,2,0,0]],[[2,2,0,1],[2,1,3,2],[2,3,2,1],[1,2,0,0]],[[2,1,2,0],[2,2,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[3,2,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,2,0,2],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,2,0,2],[2,4,3,1],[0,1,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,1],[0,1,2,2]],[[2,1,2,0],[2,2,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[3,2,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,2,0,2],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,2,0,2],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[2,2,0,2],[2,3,4,1],[0,2,1,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,1],[0,3,1,1]],[[2,1,2,0],[2,2,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[3,2,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,2,0,2],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,2,0,2],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,1],[2,0,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,1],[1,0,2,2]],[[2,1,2,0],[2,2,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[3,2,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,2,0,2],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,2,0,2],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[2,2,0,2],[2,3,4,1],[1,1,1,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,1],[2,1,1,1]],[[2,1,2,0],[2,2,0,2],[2,3,3,1],[1,2,0,1]],[[1,1,2,0],[3,2,0,2],[2,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,2,0,2],[3,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,2,0,2],[2,4,3,1],[1,2,0,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,1,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,0,1],[2,1,3,2],[2,4,2,1],[1,1,1,0]],[[1,1,2,0],[2,2,0,3],[2,3,3,2],[0,0,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,4,2],[0,0,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,3],[0,0,2,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[0,0,2,2]],[[2,1,2,0],[2,2,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[3,2,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,2,0,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,2,0,2],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,2,0,2],[2,4,3,2],[0,1,1,1]],[[1,1,2,0],[2,2,0,2],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,3],[0,1,1,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[0,1,1,2]],[[2,1,2,0],[2,2,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[3,2,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,2,0,3],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,2,0,2],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,2,0,2],[2,4,3,2],[0,1,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,3,3],[0,1,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[0,1,3,0]],[[2,1,2,0],[2,2,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[3,2,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,2,0,3],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,2,0,2],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,2,0,2],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[2,2,0,2],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,3],[0,2,0,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[0,3,0,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[0,2,0,2]],[[2,1,2,0],[2,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[3,2,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,2,0,3],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,2,0,2],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,2,0,2],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[2,2,0,2],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[2,2,0,2],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,1,3,2],[3,3,2,1],[1,1,1,0]],[[1,2,0,1],[3,1,3,2],[2,3,2,1],[1,1,1,0]],[[1,3,0,1],[2,1,3,2],[2,3,2,1],[1,1,1,0]],[[2,2,0,1],[2,1,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,0,1],[2,1,3,2],[2,3,2,1],[2,1,0,1]],[[1,2,0,1],[2,1,3,2],[2,4,2,1],[1,1,0,1]],[[1,2,0,1],[2,1,3,2],[3,3,2,1],[1,1,0,1]],[[1,2,0,1],[3,1,3,2],[2,3,2,1],[1,1,0,1]],[[1,3,0,1],[2,1,3,2],[2,3,2,1],[1,1,0,1]],[[2,2,0,1],[2,1,3,2],[2,3,2,1],[1,1,0,1]],[[2,1,2,0],[2,2,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[3,2,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,2,0,3],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,2,0,2],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,2,0,2],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[2,2,0,2],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,3],[1,0,1,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[2,0,1,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[1,0,1,2]],[[2,1,2,0],[2,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[3,2,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,2,0,3],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,2,0,2],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,2,0,2],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,3,3],[1,0,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[2,0,2,0]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[1,0,3,0]],[[2,1,2,0],[2,2,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[3,2,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,2,0,3],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,2,0,2],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,2,0,2],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[2,2,0,2],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,3],[1,1,0,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[2,1,0,1]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[1,1,0,2]],[[2,1,2,0],[2,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[3,2,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,2,0,3],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,2,0,2],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,2,0,2],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[2,2,0,2],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[2,2,0,2],[2,3,3,3],[1,1,1,0]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[2,1,3,2],[2,3,2,1],[2,0,2,0]],[[1,2,0,1],[2,1,3,2],[2,4,2,1],[1,0,2,0]],[[1,2,0,1],[2,1,3,2],[3,3,2,1],[1,0,2,0]],[[1,2,0,1],[3,1,3,2],[2,3,2,1],[1,0,2,0]],[[2,1,2,0],[2,2,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[3,2,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,2,0,2],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,2,0,2],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[2,2,0,2],[2,3,3,2],[2,2,0,0]],[[1,3,0,1],[2,1,3,2],[2,3,2,1],[1,0,2,0]],[[2,2,0,1],[2,1,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,0,1],[2,1,3,2],[2,3,2,1],[2,0,1,1]],[[1,2,0,1],[2,1,3,2],[2,4,2,1],[1,0,1,1]],[[1,2,0,1],[2,1,3,2],[3,3,2,1],[1,0,1,1]],[[1,2,0,1],[3,1,3,2],[2,3,2,1],[1,0,1,1]],[[1,3,0,1],[2,1,3,2],[2,3,2,1],[1,0,1,1]],[[2,2,0,1],[2,1,3,2],[2,3,2,1],[1,0,1,1]],[[1,2,0,1],[2,1,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,0,1],[2,1,3,2],[2,4,2,1],[0,2,1,0]],[[1,2,0,1],[2,1,3,2],[3,3,2,1],[0,2,1,0]],[[1,2,0,1],[3,1,3,2],[2,3,2,1],[0,2,1,0]],[[1,3,0,1],[2,1,3,2],[2,3,2,1],[0,2,1,0]],[[2,2,0,1],[2,1,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,0,1],[2,1,3,2],[2,3,2,1],[0,3,0,1]],[[1,2,0,1],[2,1,3,2],[2,4,2,1],[0,2,0,1]],[[1,2,0,1],[2,1,3,2],[3,3,2,1],[0,2,0,1]],[[1,2,0,1],[3,1,3,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,0],[2,2,1,0],[1,2,4,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,0],[1,2,3,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,0],[1,2,3,2],[1,3,2,1]],[[1,1,2,0],[2,2,1,0],[1,2,3,2],[1,2,3,1]],[[1,1,2,0],[2,2,1,0],[1,2,3,2],[1,2,2,2]],[[1,1,2,0],[2,2,1,0],[1,4,2,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,0],[1,3,2,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,0],[1,3,2,2],[1,3,2,1]],[[1,1,2,0],[2,2,1,0],[1,3,2,2],[1,2,3,1]],[[1,1,2,0],[2,2,1,0],[1,3,2,2],[1,2,2,2]],[[1,1,2,0],[2,2,1,0],[1,4,3,2],[1,1,2,1]],[[1,1,2,0],[2,2,1,0],[1,3,4,2],[1,1,2,1]],[[1,1,2,0],[2,2,1,0],[1,3,3,2],[1,1,3,1]],[[1,1,2,0],[2,2,1,0],[1,3,3,2],[1,1,2,2]],[[1,1,2,0],[2,2,1,0],[1,4,3,2],[1,2,1,1]],[[1,1,2,0],[2,2,1,0],[1,3,4,2],[1,2,1,1]],[[1,1,2,0],[2,2,1,0],[1,3,3,2],[2,2,1,1]],[[1,1,2,0],[2,2,1,0],[1,3,3,2],[1,3,1,1]],[[2,1,2,0],[2,2,1,0],[2,1,3,2],[1,2,2,1]],[[1,1,2,0],[3,2,1,0],[2,1,3,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,0],[3,1,3,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,0],[2,1,4,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,0],[2,1,3,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,0],[2,1,3,2],[1,3,2,1]],[[1,1,2,0],[2,2,1,0],[2,1,3,2],[1,2,3,1]],[[1,1,2,0],[2,2,1,0],[2,1,3,2],[1,2,2,2]],[[2,1,2,0],[2,2,1,0],[2,2,2,2],[1,2,2,1]],[[1,1,2,0],[3,2,1,0],[2,2,2,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,0],[3,2,2,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,0],[2,2,2,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,0],[2,2,2,2],[1,3,2,1]],[[1,1,2,0],[2,2,1,0],[2,2,2,2],[1,2,3,1]],[[1,1,2,0],[2,2,1,0],[2,2,2,2],[1,2,2,2]],[[1,1,2,0],[2,2,1,0],[2,2,4,2],[0,2,2,1]],[[1,1,2,0],[2,2,1,0],[2,2,3,2],[0,3,2,1]],[[1,1,2,0],[2,2,1,0],[2,2,3,2],[0,2,3,1]],[[1,1,2,0],[2,2,1,0],[2,2,3,2],[0,2,2,2]],[[2,1,2,0],[2,2,1,0],[2,2,3,2],[1,2,1,1]],[[1,1,2,0],[3,2,1,0],[2,2,3,2],[1,2,1,1]],[[1,1,2,0],[2,2,1,0],[3,2,3,2],[1,2,1,1]],[[1,1,2,0],[2,2,1,0],[2,2,3,2],[2,2,1,1]],[[1,1,2,0],[2,2,1,0],[2,2,3,2],[1,3,1,1]],[[2,1,2,0],[2,2,1,0],[2,3,1,2],[1,2,2,1]],[[1,1,2,0],[3,2,1,0],[2,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,0],[3,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,0],[2,3,1,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,0],[2,3,1,2],[1,3,2,1]],[[2,1,2,0],[2,2,1,0],[2,3,2,2],[0,2,2,1]],[[1,1,2,0],[3,2,1,0],[2,3,2,2],[0,2,2,1]],[[1,1,2,0],[2,2,1,0],[3,3,2,2],[0,2,2,1]],[[1,1,2,0],[2,2,1,0],[2,4,2,2],[0,2,2,1]],[[1,1,2,0],[2,2,1,0],[2,3,2,2],[0,3,2,1]],[[1,1,2,0],[2,2,1,0],[2,3,2,2],[0,2,3,1]],[[1,1,2,0],[2,2,1,0],[2,3,2,2],[0,2,2,2]],[[2,1,2,0],[2,2,1,0],[2,3,2,2],[1,1,2,1]],[[1,1,2,0],[3,2,1,0],[2,3,2,2],[1,1,2,1]],[[1,1,2,0],[2,2,1,0],[3,3,2,2],[1,1,2,1]],[[1,1,2,0],[2,2,1,0],[2,4,2,2],[1,1,2,1]],[[1,1,2,0],[2,2,1,0],[2,3,2,2],[2,1,2,1]],[[2,1,2,0],[2,2,1,0],[2,3,3,2],[0,1,2,1]],[[1,1,2,0],[3,2,1,0],[2,3,3,2],[0,1,2,1]],[[1,1,2,0],[2,2,1,0],[3,3,3,2],[0,1,2,1]],[[1,1,2,0],[2,2,1,0],[2,4,3,2],[0,1,2,1]],[[1,1,2,0],[2,2,1,0],[2,3,4,2],[0,1,2,1]],[[1,1,2,0],[2,2,1,0],[2,3,3,2],[0,1,3,1]],[[1,1,2,0],[2,2,1,0],[2,3,3,2],[0,1,2,2]],[[2,1,2,0],[2,2,1,0],[2,3,3,2],[0,2,1,1]],[[1,1,2,0],[3,2,1,0],[2,3,3,2],[0,2,1,1]],[[1,1,2,0],[2,2,1,0],[3,3,3,2],[0,2,1,1]],[[1,1,2,0],[2,2,1,0],[2,4,3,2],[0,2,1,1]],[[1,1,2,0],[2,2,1,0],[2,3,4,2],[0,2,1,1]],[[1,1,2,0],[2,2,1,0],[2,3,3,2],[0,3,1,1]],[[2,1,2,0],[2,2,1,0],[2,3,3,2],[1,0,2,1]],[[1,1,2,0],[3,2,1,0],[2,3,3,2],[1,0,2,1]],[[1,1,2,0],[2,2,1,0],[3,3,3,2],[1,0,2,1]],[[1,1,2,0],[2,2,1,0],[2,4,3,2],[1,0,2,1]],[[1,1,2,0],[2,2,1,0],[2,3,4,2],[1,0,2,1]],[[1,1,2,0],[2,2,1,0],[2,3,3,2],[2,0,2,1]],[[1,1,2,0],[2,2,1,0],[2,3,3,2],[1,0,3,1]],[[1,1,2,0],[2,2,1,0],[2,3,3,2],[1,0,2,2]],[[2,1,2,0],[2,2,1,0],[2,3,3,2],[1,1,1,1]],[[1,1,2,0],[3,2,1,0],[2,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,2,1,0],[3,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,2,1,0],[2,4,3,2],[1,1,1,1]],[[1,1,2,0],[2,2,1,0],[2,3,4,2],[1,1,1,1]],[[1,1,2,0],[2,2,1,0],[2,3,3,2],[2,1,1,1]],[[2,1,2,0],[2,2,1,0],[2,3,3,2],[1,2,0,1]],[[1,1,2,0],[3,2,1,0],[2,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,2,1,0],[3,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,2,1,0],[2,4,3,2],[1,2,0,1]],[[1,1,2,0],[2,2,1,0],[2,3,3,2],[2,2,0,1]],[[1,3,0,1],[2,1,3,2],[2,3,2,1],[0,2,0,1]],[[2,2,0,1],[2,1,3,2],[2,3,2,1],[0,2,0,1]],[[1,2,0,1],[2,1,3,2],[2,4,2,1],[0,1,2,0]],[[1,2,0,1],[2,1,3,2],[3,3,2,1],[0,1,2,0]],[[1,1,2,0],[2,2,1,1],[1,2,2,3],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[1,2,2,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[1,2,2,2],[1,3,2,1]],[[1,1,2,0],[2,2,1,1],[1,2,2,2],[1,2,3,1]],[[1,1,2,0],[2,2,1,1],[1,2,2,2],[1,2,2,2]],[[1,1,2,0],[2,2,1,1],[1,2,4,1],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[1,2,3,1],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[1,2,3,1],[1,3,2,1]],[[1,1,2,0],[2,2,1,1],[1,2,3,1],[1,2,3,1]],[[1,1,2,0],[2,2,1,1],[1,2,3,1],[1,2,2,2]],[[1,1,2,0],[2,2,1,1],[1,2,4,2],[1,2,1,1]],[[1,1,2,0],[2,2,1,1],[1,2,3,3],[1,2,1,1]],[[1,1,2,0],[2,2,1,1],[1,2,3,2],[1,2,1,2]],[[1,1,2,0],[2,2,1,1],[1,2,4,2],[1,2,2,0]],[[1,1,2,0],[2,2,1,1],[1,2,3,3],[1,2,2,0]],[[1,1,2,0],[2,2,1,1],[1,2,3,2],[2,2,2,0]],[[1,1,2,0],[2,2,1,1],[1,2,3,2],[1,3,2,0]],[[1,1,2,0],[2,2,1,1],[1,2,3,2],[1,2,3,0]],[[1,1,2,0],[2,2,1,1],[1,4,1,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,1,3],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,1,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,1,2],[1,3,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,1,2],[1,2,3,1]],[[1,1,2,0],[2,2,1,1],[1,3,1,2],[1,2,2,2]],[[1,1,2,0],[2,2,1,1],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[2,2,1,1],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[2,2,1,1],[1,3,2,3],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,2,2],[1,1,3,1]],[[1,1,2,0],[2,2,1,1],[1,3,2,2],[1,1,2,2]],[[1,1,2,0],[2,2,1,1],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[2,2,1,1],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[2,2,1,1],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[2,2,1,1],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[2,2,1,1],[1,4,3,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,0],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,0],[1,3,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,0],[1,2,3,1]],[[1,1,2,0],[2,2,1,1],[1,4,3,1],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,4,1],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,1],[1,1,3,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,1],[1,1,2,2]],[[1,1,2,0],[2,2,1,1],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[2,2,1,1],[1,3,4,1],[1,2,1,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,1],[1,3,1,1]],[[1,1,2,0],[2,2,1,1],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[2,2,1,1],[1,3,4,2],[1,1,1,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,3],[1,1,1,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,2],[1,1,1,2]],[[1,1,2,0],[2,2,1,1],[1,4,3,2],[1,1,2,0]],[[1,1,2,0],[2,2,1,1],[1,3,4,2],[1,1,2,0]],[[1,1,2,0],[2,2,1,1],[1,3,3,3],[1,1,2,0]],[[1,1,2,0],[2,2,1,1],[1,3,3,2],[1,1,3,0]],[[1,1,2,0],[2,2,1,1],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[2,2,1,1],[1,3,4,2],[1,2,0,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,3],[1,2,0,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[2,2,1,1],[1,3,3,2],[1,2,0,2]],[[1,1,2,0],[2,2,1,1],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[2,2,1,1],[1,3,4,2],[1,2,1,0]],[[1,1,2,0],[2,2,1,1],[1,3,3,3],[1,2,1,0]],[[1,1,2,0],[2,2,1,1],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[2,2,1,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[3,1,3,2],[2,3,2,1],[0,1,2,0]],[[1,3,0,1],[2,1,3,2],[2,3,2,1],[0,1,2,0]],[[2,2,0,1],[2,1,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,0,1],[2,1,3,2],[2,4,2,1],[0,1,1,1]],[[1,2,0,1],[2,1,3,2],[3,3,2,1],[0,1,1,1]],[[1,2,0,1],[3,1,3,2],[2,3,2,1],[0,1,1,1]],[[1,3,0,1],[2,1,3,2],[2,3,2,1],[0,1,1,1]],[[2,1,2,0],[2,2,1,1],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[3,2,1,1],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[3,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,1,2,3],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[2,2,1,1],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[2,2,1,1],[2,1,2,2],[1,2,2,2]],[[2,1,2,0],[2,2,1,1],[2,1,3,1],[1,2,2,1]],[[1,1,2,0],[3,2,1,1],[2,1,3,1],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[3,1,3,1],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,1,4,1],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,1,3,1],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,1,3,1],[1,3,2,1]],[[1,1,2,0],[2,2,1,1],[2,1,3,1],[1,2,3,1]],[[1,1,2,0],[2,2,1,1],[2,1,3,1],[1,2,2,2]],[[1,1,2,0],[2,2,1,1],[2,1,4,2],[1,2,1,1]],[[1,1,2,0],[2,2,1,1],[2,1,3,3],[1,2,1,1]],[[1,1,2,0],[2,2,1,1],[2,1,3,2],[1,2,1,2]],[[2,1,2,0],[2,2,1,1],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[3,2,1,1],[2,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,2,1,1],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,1,4,2],[1,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,1,3,3],[1,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,1,3,2],[2,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,1,3,2],[1,3,2,0]],[[1,1,2,0],[2,2,1,1],[2,1,3,2],[1,2,3,0]],[[2,1,2,0],[2,2,1,1],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[3,2,1,1],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[3,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,1,3],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,1,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,1,2],[1,3,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[2,2,1,1],[2,2,1,2],[1,2,2,2]],[[2,1,2,0],[2,2,1,1],[2,2,2,1],[1,2,2,1]],[[1,1,2,0],[3,2,1,1],[2,2,2,1],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[2,2,1,1],[2,2,2,1],[1,2,2,2]],[[1,1,2,0],[2,2,1,1],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,2,2],[0,3,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,2,2],[0,2,3,1]],[[1,1,2,0],[2,2,1,1],[2,2,2,2],[0,2,2,2]],[[2,1,2,0],[2,2,1,1],[2,2,2,2],[1,2,2,0]],[[1,1,2,0],[3,2,1,1],[2,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,2,1,1],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[2,2,1,1],[2,2,2,2],[1,2,3,0]],[[2,1,2,0],[2,2,1,1],[2,2,3,0],[1,2,2,1]],[[1,1,2,0],[3,2,1,1],[2,2,3,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[3,2,3,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,0],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,0],[1,3,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,0],[1,2,3,1]],[[1,1,2,0],[2,2,1,1],[2,2,4,1],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,1],[0,3,2,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,1],[0,2,3,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,1],[0,2,2,2]],[[2,1,2,0],[2,2,1,1],[2,2,3,1],[1,2,1,1]],[[1,1,2,0],[3,2,1,1],[2,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,2,1,1],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,1],[1,3,1,1]],[[1,1,2,0],[2,2,1,1],[2,2,4,2],[0,2,1,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,3],[0,2,1,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,2],[0,2,1,2]],[[1,1,2,0],[2,2,1,1],[2,2,4,2],[0,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,2,3,3],[0,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,2,3,2],[0,3,2,0]],[[1,1,2,0],[2,2,1,1],[2,2,3,2],[0,2,3,0]],[[2,1,2,0],[2,2,1,1],[2,2,3,2],[1,2,0,1]],[[1,1,2,0],[3,2,1,1],[2,2,3,2],[1,2,0,1]],[[1,1,2,0],[2,2,1,1],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[2,2,1,1],[2,2,3,2],[1,3,0,1]],[[2,1,2,0],[2,2,1,1],[2,2,3,2],[1,2,1,0]],[[1,1,2,0],[3,2,1,1],[2,2,3,2],[1,2,1,0]],[[1,1,2,0],[2,2,1,1],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[2,2,1,1],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[2,2,1,1],[2,2,3,2],[1,3,1,0]],[[2,2,0,1],[2,1,3,2],[2,3,2,1],[0,1,1,1]],[[1,2,0,1],[2,1,3,2],[2,3,2,0],[2,2,0,1]],[[2,1,2,0],[2,2,1,1],[2,3,0,2],[1,2,2,1]],[[1,1,2,0],[3,2,1,1],[2,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[3,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,0,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,0,2],[1,3,2,1]],[[2,1,2,0],[2,2,1,1],[2,3,1,1],[1,2,2,1]],[[1,1,2,0],[3,2,1,1],[2,3,1,1],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[3,3,1,1],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,1,1],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,1,1],[1,3,2,1]],[[2,1,2,0],[2,2,1,1],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[3,2,1,1],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[3,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,4,1,2],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,1,3],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,1,2],[0,3,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,1,2],[0,2,3,1]],[[1,1,2,0],[2,2,1,1],[2,3,1,2],[0,2,2,2]],[[2,1,2,0],[2,2,1,1],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[3,2,1,1],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[3,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[2,4,1,2],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,1,2],[2,1,2,1]],[[2,1,2,0],[2,2,1,1],[2,3,1,2],[1,2,2,0]],[[1,1,2,0],[3,2,1,1],[2,3,1,2],[1,2,2,0]],[[1,1,2,0],[2,2,1,1],[3,3,1,2],[1,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,1,2],[2,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,1,2],[1,3,2,0]],[[2,1,2,0],[2,2,1,1],[2,3,2,0],[1,2,2,1]],[[1,1,2,0],[3,2,1,1],[2,3,2,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[3,3,2,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,2,0],[2,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,2,0],[1,3,2,1]],[[2,1,2,0],[2,2,1,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[3,2,1,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[2,2,1,1],[2,3,2,1],[0,2,2,2]],[[2,1,2,0],[2,2,1,1],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[3,2,1,1],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,2,1],[2,1,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,2,3],[0,1,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,2,2],[0,1,3,1]],[[1,1,2,0],[2,2,1,1],[2,3,2,2],[0,1,2,2]],[[2,1,2,0],[2,2,1,1],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[3,2,1,1],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,2,1,1],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,2,2],[0,2,3,0]],[[1,1,2,0],[2,2,1,1],[2,3,2,3],[1,0,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,2,2],[1,0,3,1]],[[1,1,2,0],[2,2,1,1],[2,3,2,2],[1,0,2,2]],[[2,1,2,0],[2,2,1,1],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[3,2,1,1],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,2,1,1],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,2,1,1],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,1,3,2],[2,4,2,0],[1,2,0,1]],[[1,2,0,1],[2,1,3,2],[3,3,2,0],[1,2,0,1]],[[1,2,0,1],[3,1,3,2],[2,3,2,0],[1,2,0,1]],[[1,3,0,1],[2,1,3,2],[2,3,2,0],[1,2,0,1]],[[2,2,0,1],[2,1,3,2],[2,3,2,0],[1,2,0,1]],[[2,1,2,0],[2,2,1,1],[2,3,3,0],[0,2,2,1]],[[1,1,2,0],[3,2,1,1],[2,3,3,0],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[3,3,3,0],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,4,3,0],[0,2,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,0],[0,3,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,0],[0,2,3,1]],[[2,1,2,0],[2,2,1,1],[2,3,3,0],[1,1,2,1]],[[1,1,2,0],[3,2,1,1],[2,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[3,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[2,4,3,0],[1,1,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,0],[2,1,2,1]],[[2,1,2,0],[2,2,1,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[3,2,1,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,2,1,1],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,2,1,1],[2,4,3,1],[0,1,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,4,1],[0,1,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,1],[0,1,3,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,1],[0,1,2,2]],[[2,1,2,0],[2,2,1,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[3,2,1,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,2,1,1],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,2,1,1],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[2,2,1,1],[2,3,4,1],[0,2,1,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,1],[0,3,1,1]],[[2,1,2,0],[2,2,1,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[3,2,1,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,2,1,1],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,2,1,1],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,4,1],[1,0,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,1],[2,0,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,1],[1,0,3,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,1],[1,0,2,2]],[[2,1,2,0],[2,2,1,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[3,2,1,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,2,1,1],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,2,1,1],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[2,2,1,1],[2,3,4,1],[1,1,1,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,1],[2,1,1,1]],[[2,1,2,0],[2,2,1,1],[2,3,3,1],[1,2,0,1]],[[1,1,2,0],[3,2,1,1],[2,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,2,1,1],[3,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,2,1,1],[2,4,3,1],[1,2,0,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,1,3,2],[2,3,2,0],[2,1,1,1]],[[1,2,0,1],[2,1,3,2],[2,4,2,0],[1,1,1,1]],[[1,2,0,1],[2,1,3,2],[3,3,2,0],[1,1,1,1]],[[1,2,0,1],[3,1,3,2],[2,3,2,0],[1,1,1,1]],[[1,3,0,1],[2,1,3,2],[2,3,2,0],[1,1,1,1]],[[2,2,0,1],[2,1,3,2],[2,3,2,0],[1,1,1,1]],[[1,2,0,1],[2,1,3,2],[2,3,2,0],[2,0,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,4,2],[0,0,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,3],[0,0,2,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[0,0,2,2]],[[2,1,2,0],[2,2,1,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[3,2,1,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,2,1,1],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,2,1,1],[2,4,3,2],[0,1,1,1]],[[1,1,2,0],[2,2,1,1],[2,3,4,2],[0,1,1,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,3],[0,1,1,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[0,1,1,2]],[[2,1,2,0],[2,2,1,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[3,2,1,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,2,1,1],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,2,1,1],[2,4,3,2],[0,1,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,4,2],[0,1,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,3,3],[0,1,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[0,1,3,0]],[[2,1,2,0],[2,2,1,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[3,2,1,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,2,1,1],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,2,1,1],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[2,2,1,1],[2,3,4,2],[0,2,0,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,3],[0,2,0,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[0,3,0,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[0,2,0,2]],[[2,1,2,0],[2,2,1,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[3,2,1,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,2,1,1],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,2,1,1],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[2,2,1,1],[2,3,4,2],[0,2,1,0]],[[1,1,2,0],[2,2,1,1],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,1,3,2],[2,4,2,0],[1,0,2,1]],[[1,2,0,1],[2,1,3,2],[3,3,2,0],[1,0,2,1]],[[1,2,0,1],[3,1,3,2],[2,3,2,0],[1,0,2,1]],[[1,3,0,1],[2,1,3,2],[2,3,2,0],[1,0,2,1]],[[2,2,0,1],[2,1,3,2],[2,3,2,0],[1,0,2,1]],[[2,1,2,0],[2,2,1,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[3,2,1,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,2,1,1],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,2,1,1],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[2,2,1,1],[2,3,4,2],[1,0,1,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,3],[1,0,1,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[2,0,1,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[1,0,1,2]],[[2,1,2,0],[2,2,1,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[3,2,1,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,2,1,1],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,2,1,1],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,4,2],[1,0,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,3,3],[1,0,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[2,0,2,0]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[1,0,3,0]],[[2,1,2,0],[2,2,1,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[3,2,1,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,2,1,1],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,2,1,1],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[2,2,1,1],[2,3,4,2],[1,1,0,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,3],[1,1,0,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[2,1,0,1]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[1,1,0,2]],[[2,1,2,0],[2,2,1,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[3,2,1,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,2,1,1],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,2,1,1],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[2,2,1,1],[2,3,4,2],[1,1,1,0]],[[1,1,2,0],[2,2,1,1],[2,3,3,3],[1,1,1,0]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[2,1,3,2],[2,3,2,0],[0,3,1,1]],[[1,2,0,1],[2,1,3,2],[2,4,2,0],[0,2,1,1]],[[1,2,0,1],[2,1,3,2],[3,3,2,0],[0,2,1,1]],[[1,2,0,1],[3,1,3,2],[2,3,2,0],[0,2,1,1]],[[1,3,0,1],[2,1,3,2],[2,3,2,0],[0,2,1,1]],[[2,1,2,0],[2,2,1,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[3,2,1,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,2,1,1],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,2,1,1],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[2,2,1,1],[2,3,3,2],[2,2,0,0]],[[2,2,0,1],[2,1,3,2],[2,3,2,0],[0,2,1,1]],[[1,2,0,1],[2,1,3,2],[2,4,2,0],[0,1,2,1]],[[1,2,0,1],[2,1,3,2],[3,3,2,0],[0,1,2,1]],[[1,2,0,1],[3,1,3,2],[2,3,2,0],[0,1,2,1]],[[1,3,0,1],[2,1,3,2],[2,3,2,0],[0,1,2,1]],[[2,2,0,1],[2,1,3,2],[2,3,2,0],[0,1,2,1]],[[1,2,0,1],[2,1,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,0,1],[2,1,3,2],[2,4,1,2],[1,2,0,0]],[[1,2,0,1],[2,1,3,2],[3,3,1,2],[1,2,0,0]],[[1,2,0,1],[3,1,3,2],[2,3,1,2],[1,2,0,0]],[[1,3,0,1],[2,1,3,2],[2,3,1,2],[1,2,0,0]],[[2,2,0,1],[2,1,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,0],[2,2,1,2],[1,2,4,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[1,2,3,0],[2,2,2,1]],[[1,1,2,0],[2,2,1,2],[1,2,3,0],[1,3,2,1]],[[1,1,2,0],[2,2,1,2],[1,2,3,0],[1,2,3,1]],[[1,1,2,0],[2,2,1,2],[1,2,3,0],[1,2,2,2]],[[1,1,2,0],[2,2,1,2],[1,2,4,1],[1,2,2,0]],[[1,1,2,0],[2,2,1,2],[1,2,3,1],[2,2,2,0]],[[1,1,2,0],[2,2,1,2],[1,2,3,1],[1,3,2,0]],[[1,1,2,0],[2,2,1,2],[1,2,3,1],[1,2,3,0]],[[1,2,0,1],[2,1,3,2],[2,3,1,2],[2,1,1,0]],[[1,1,2,0],[2,2,1,3],[1,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[1,4,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[1,3,0,3],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[1,3,0,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,2],[1,3,0,2],[1,3,2,1]],[[1,1,2,0],[2,2,1,2],[1,3,0,2],[1,2,3,1]],[[1,1,2,0],[2,2,1,2],[1,3,0,2],[1,2,2,2]],[[1,1,2,0],[2,2,1,2],[1,4,2,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[1,3,2,0],[2,2,2,1]],[[1,1,2,0],[2,2,1,2],[1,3,2,0],[1,3,2,1]],[[1,1,2,0],[2,2,1,2],[1,3,2,0],[1,2,3,1]],[[1,1,2,0],[2,2,1,2],[1,3,2,0],[1,2,2,2]],[[1,1,2,0],[2,2,1,2],[1,4,2,1],[1,2,2,0]],[[1,1,2,0],[2,2,1,2],[1,3,2,1],[2,2,2,0]],[[1,1,2,0],[2,2,1,2],[1,3,2,1],[1,3,2,0]],[[1,1,2,0],[2,2,1,2],[1,3,2,1],[1,2,3,0]],[[1,2,0,1],[2,1,3,2],[2,4,1,2],[1,1,1,0]],[[1,2,0,1],[2,1,3,2],[3,3,1,2],[1,1,1,0]],[[1,2,0,1],[3,1,3,2],[2,3,1,2],[1,1,1,0]],[[1,3,0,1],[2,1,3,2],[2,3,1,2],[1,1,1,0]],[[2,2,0,1],[2,1,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,0,1],[2,1,3,2],[2,3,1,2],[2,1,0,1]],[[1,2,0,1],[2,1,3,2],[2,4,1,2],[1,1,0,1]],[[1,1,2,0],[2,2,1,2],[1,4,3,0],[1,1,2,1]],[[1,1,2,0],[2,2,1,2],[1,3,4,0],[1,1,2,1]],[[1,1,2,0],[2,2,1,2],[1,3,3,0],[1,1,3,1]],[[1,1,2,0],[2,2,1,2],[1,3,3,0],[1,1,2,2]],[[1,1,2,0],[2,2,1,2],[1,4,3,0],[1,2,1,1]],[[1,1,2,0],[2,2,1,2],[1,3,4,0],[1,2,1,1]],[[1,1,2,0],[2,2,1,2],[1,3,3,0],[2,2,1,1]],[[1,1,2,0],[2,2,1,2],[1,3,3,0],[1,3,1,1]],[[1,1,2,0],[2,2,1,2],[1,4,3,1],[1,1,2,0]],[[1,1,2,0],[2,2,1,2],[1,3,4,1],[1,1,2,0]],[[1,1,2,0],[2,2,1,2],[1,3,3,1],[1,1,3,0]],[[1,1,2,0],[2,2,1,2],[1,4,3,1],[1,2,0,1]],[[1,1,2,0],[2,2,1,2],[1,3,4,1],[1,2,0,1]],[[1,1,2,0],[2,2,1,2],[1,3,3,1],[2,2,0,1]],[[1,1,2,0],[2,2,1,2],[1,3,3,1],[1,3,0,1]],[[1,1,2,0],[2,2,1,2],[1,4,3,1],[1,2,1,0]],[[1,1,2,0],[2,2,1,2],[1,3,4,1],[1,2,1,0]],[[1,1,2,0],[2,2,1,2],[1,3,3,1],[2,2,1,0]],[[1,1,2,0],[2,2,1,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,1,3,2],[3,3,1,2],[1,1,0,1]],[[1,2,0,1],[3,1,3,2],[2,3,1,2],[1,1,0,1]],[[1,3,0,1],[2,1,3,2],[2,3,1,2],[1,1,0,1]],[[2,2,0,1],[2,1,3,2],[2,3,1,2],[1,1,0,1]],[[1,2,0,1],[2,1,3,2],[2,3,1,2],[2,0,2,0]],[[1,2,0,1],[2,1,3,2],[2,4,1,2],[1,0,2,0]],[[1,2,0,1],[2,1,3,2],[3,3,1,2],[1,0,2,0]],[[1,2,0,1],[3,1,3,2],[2,3,1,2],[1,0,2,0]],[[1,3,0,1],[2,1,3,2],[2,3,1,2],[1,0,2,0]],[[2,2,0,1],[2,1,3,2],[2,3,1,2],[1,0,2,0]],[[1,2,0,1],[2,1,3,2],[2,3,1,2],[2,0,1,1]],[[1,2,0,1],[2,1,3,2],[2,4,1,2],[1,0,1,1]],[[1,2,0,1],[2,1,3,2],[3,3,1,2],[1,0,1,1]],[[1,2,0,1],[3,1,3,2],[2,3,1,2],[1,0,1,1]],[[1,3,0,1],[2,1,3,2],[2,3,1,2],[1,0,1,1]],[[2,2,0,1],[2,1,3,2],[2,3,1,2],[1,0,1,1]],[[2,1,2,0],[2,2,1,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[3,2,1,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[3,1,3,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,1,4,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,1,3,0],[2,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,1,3,0],[1,3,2,1]],[[1,1,2,0],[2,2,1,2],[2,1,3,0],[1,2,3,1]],[[1,1,2,0],[2,2,1,2],[2,1,3,0],[1,2,2,2]],[[2,1,2,0],[2,2,1,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,0],[3,2,1,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,0],[2,2,1,2],[3,1,3,1],[1,2,2,0]],[[1,1,2,0],[2,2,1,2],[2,1,4,1],[1,2,2,0]],[[1,1,2,0],[2,2,1,2],[2,1,3,1],[2,2,2,0]],[[1,1,2,0],[2,2,1,2],[2,1,3,1],[1,3,2,0]],[[1,1,2,0],[2,2,1,2],[2,1,3,1],[1,2,3,0]],[[1,2,0,1],[2,1,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,0,1],[2,1,3,2],[2,4,1,2],[0,2,1,0]],[[1,2,0,1],[2,1,3,2],[3,3,1,2],[0,2,1,0]],[[1,2,0,1],[3,1,3,2],[2,3,1,2],[0,2,1,0]],[[1,3,0,1],[2,1,3,2],[2,3,1,2],[0,2,1,0]],[[2,2,0,1],[2,1,3,2],[2,3,1,2],[0,2,1,0]],[[2,1,2,0],[2,2,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[3,2,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,3],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[3,2,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,2,0,3],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,2,0,2],[2,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,2,0,2],[1,3,2,1]],[[1,1,2,0],[2,2,1,2],[2,2,0,2],[1,2,3,1]],[[1,1,2,0],[2,2,1,2],[2,2,0,2],[1,2,2,2]],[[2,1,2,0],[2,2,1,2],[2,2,2,0],[1,2,2,1]],[[1,1,2,0],[3,2,1,2],[2,2,2,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[3,2,2,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,2,2,0],[2,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,2,2,0],[1,3,2,1]],[[1,1,2,0],[2,2,1,2],[2,2,2,0],[1,2,3,1]],[[1,1,2,0],[2,2,1,2],[2,2,2,0],[1,2,2,2]],[[2,1,2,0],[2,2,1,2],[2,2,2,1],[1,2,2,0]],[[1,1,2,0],[3,2,1,2],[2,2,2,1],[1,2,2,0]],[[1,1,2,0],[2,2,1,2],[3,2,2,1],[1,2,2,0]],[[1,1,2,0],[2,2,1,2],[2,2,2,1],[2,2,2,0]],[[1,1,2,0],[2,2,1,2],[2,2,2,1],[1,3,2,0]],[[1,1,2,0],[2,2,1,2],[2,2,2,1],[1,2,3,0]],[[1,2,0,1],[2,1,3,2],[2,3,1,2],[0,3,0,1]],[[1,2,0,1],[2,1,3,2],[2,4,1,2],[0,2,0,1]],[[1,2,0,1],[2,1,3,2],[3,3,1,2],[0,2,0,1]],[[1,2,0,1],[3,1,3,2],[2,3,1,2],[0,2,0,1]],[[1,3,0,1],[2,1,3,2],[2,3,1,2],[0,2,0,1]],[[2,2,0,1],[2,1,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,0],[2,2,1,2],[2,2,4,0],[0,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,2,3,0],[0,3,2,1]],[[1,1,2,0],[2,2,1,2],[2,2,3,0],[0,2,3,1]],[[1,1,2,0],[2,2,1,2],[2,2,3,0],[0,2,2,2]],[[2,1,2,0],[2,2,1,2],[2,2,3,0],[1,2,1,1]],[[1,1,2,0],[3,2,1,2],[2,2,3,0],[1,2,1,1]],[[1,1,2,0],[2,2,1,2],[3,2,3,0],[1,2,1,1]],[[1,1,2,0],[2,2,1,2],[2,2,3,0],[2,2,1,1]],[[1,1,2,0],[2,2,1,2],[2,2,3,0],[1,3,1,1]],[[1,1,2,0],[2,2,1,2],[2,2,4,1],[0,2,2,0]],[[1,1,2,0],[2,2,1,2],[2,2,3,1],[0,3,2,0]],[[1,1,2,0],[2,2,1,2],[2,2,3,1],[0,2,3,0]],[[2,1,2,0],[2,2,1,2],[2,2,3,1],[1,2,0,1]],[[1,1,2,0],[3,2,1,2],[2,2,3,1],[1,2,0,1]],[[1,1,2,0],[2,2,1,2],[3,2,3,1],[1,2,0,1]],[[1,1,2,0],[2,2,1,2],[2,2,3,1],[2,2,0,1]],[[1,1,2,0],[2,2,1,2],[2,2,3,1],[1,3,0,1]],[[2,1,2,0],[2,2,1,2],[2,2,3,1],[1,2,1,0]],[[1,1,2,0],[3,2,1,2],[2,2,3,1],[1,2,1,0]],[[1,1,2,0],[2,2,1,2],[3,2,3,1],[1,2,1,0]],[[1,1,2,0],[2,2,1,2],[2,2,3,1],[2,2,1,0]],[[1,1,2,0],[2,2,1,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[2,1,3,2],[2,4,1,2],[0,1,2,0]],[[1,2,0,1],[2,1,3,2],[3,3,1,2],[0,1,2,0]],[[1,2,0,1],[3,1,3,2],[2,3,1,2],[0,1,2,0]],[[1,3,0,1],[2,1,3,2],[2,3,1,2],[0,1,2,0]],[[2,2,0,1],[2,1,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,0,1],[2,1,3,2],[2,4,1,2],[0,1,1,1]],[[1,2,0,1],[2,1,3,2],[3,3,1,2],[0,1,1,1]],[[1,2,0,1],[3,1,3,2],[2,3,1,2],[0,1,1,1]],[[1,3,0,1],[2,1,3,2],[2,3,1,2],[0,1,1,1]],[[2,2,0,1],[2,1,3,2],[2,3,1,2],[0,1,1,1]],[[1,2,0,1],[2,1,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,0,1],[2,1,3,2],[2,4,1,1],[1,1,2,0]],[[1,2,0,1],[2,1,3,2],[3,3,1,1],[1,1,2,0]],[[1,2,0,1],[3,1,3,2],[2,3,1,1],[1,1,2,0]],[[1,3,0,1],[2,1,3,2],[2,3,1,1],[1,1,2,0]],[[2,2,0,1],[2,1,3,2],[2,3,1,1],[1,1,2,0]],[[2,1,2,0],[2,2,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[3,2,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,2,1,3],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,2,1,2],[3,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,4,0,2],[0,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,0,3],[0,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,0,2],[0,3,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,0,2],[0,2,3,1]],[[1,1,2,0],[2,2,1,2],[2,3,0,2],[0,2,2,2]],[[2,1,2,0],[2,2,1,2],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[3,2,1,2],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,2,1,2],[3,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,2,1,2],[2,4,0,2],[1,1,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,0,2],[2,1,2,1]],[[2,1,2,0],[2,2,1,2],[2,3,1,0],[1,2,2,1]],[[1,1,2,0],[3,2,1,2],[2,3,1,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[3,3,1,0],[1,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,1,0],[2,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,1,0],[1,3,2,1]],[[2,1,2,0],[2,2,1,2],[2,3,1,1],[1,2,2,0]],[[1,1,2,0],[3,2,1,2],[2,3,1,1],[1,2,2,0]],[[1,1,2,0],[2,2,1,2],[3,3,1,1],[1,2,2,0]],[[1,1,2,0],[2,2,1,2],[2,3,1,1],[2,2,2,0]],[[1,1,2,0],[2,2,1,2],[2,3,1,1],[1,3,2,0]],[[1,2,0,1],[2,1,3,2],[2,3,1,1],[0,2,3,0]],[[1,2,0,1],[2,1,3,2],[2,3,1,1],[0,3,2,0]],[[1,2,0,1],[2,1,3,2],[2,4,1,1],[0,2,2,0]],[[1,2,0,1],[2,1,3,2],[3,3,1,1],[0,2,2,0]],[[1,2,0,1],[3,1,3,2],[2,3,1,1],[0,2,2,0]],[[1,3,0,1],[2,1,3,2],[2,3,1,1],[0,2,2,0]],[[2,1,2,0],[2,2,1,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,0],[3,2,1,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,0],[2,2,1,2],[3,3,2,0],[0,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,4,2,0],[0,2,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,2,0],[0,3,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,2,0],[0,2,3,1]],[[1,1,2,0],[2,2,1,2],[2,3,2,0],[0,2,2,2]],[[2,1,2,0],[2,2,1,2],[2,3,2,0],[1,1,2,1]],[[1,1,2,0],[3,2,1,2],[2,3,2,0],[1,1,2,1]],[[1,1,2,0],[2,2,1,2],[3,3,2,0],[1,1,2,1]],[[1,1,2,0],[2,2,1,2],[2,4,2,0],[1,1,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,2,0],[2,1,2,1]],[[2,1,2,0],[2,2,1,2],[2,3,2,1],[0,2,2,0]],[[1,1,2,0],[3,2,1,2],[2,3,2,1],[0,2,2,0]],[[1,1,2,0],[2,2,1,2],[3,3,2,1],[0,2,2,0]],[[1,1,2,0],[2,2,1,2],[2,4,2,1],[0,2,2,0]],[[1,1,2,0],[2,2,1,2],[2,3,2,1],[0,3,2,0]],[[1,1,2,0],[2,2,1,2],[2,3,2,1],[0,2,3,0]],[[2,1,2,0],[2,2,1,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,0],[3,2,1,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,0],[2,2,1,2],[3,3,2,1],[1,1,2,0]],[[1,1,2,0],[2,2,1,2],[2,4,2,1],[1,1,2,0]],[[1,1,2,0],[2,2,1,2],[2,3,2,1],[2,1,2,0]],[[2,2,0,1],[2,1,3,2],[2,3,1,1],[0,2,2,0]],[[1,2,0,1],[2,1,3,2],[2,3,1,0],[2,1,2,1]],[[1,2,0,1],[2,1,3,2],[2,4,1,0],[1,1,2,1]],[[1,2,0,1],[2,1,3,2],[3,3,1,0],[1,1,2,1]],[[1,2,0,1],[3,1,3,2],[2,3,1,0],[1,1,2,1]],[[1,3,0,1],[2,1,3,2],[2,3,1,0],[1,1,2,1]],[[2,2,0,1],[2,1,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,0,1],[2,1,3,2],[2,3,1,0],[0,2,2,2]],[[1,2,0,1],[2,1,3,2],[2,3,1,0],[0,2,3,1]],[[1,2,0,1],[2,1,3,2],[2,3,1,0],[0,3,2,1]],[[1,2,0,1],[2,1,3,2],[2,4,1,0],[0,2,2,1]],[[1,2,0,1],[2,1,3,2],[3,3,1,0],[0,2,2,1]],[[1,2,0,1],[3,1,3,2],[2,3,1,0],[0,2,2,1]],[[1,3,0,1],[2,1,3,2],[2,3,1,0],[0,2,2,1]],[[2,2,0,1],[2,1,3,2],[2,3,1,0],[0,2,2,1]],[[2,1,2,0],[2,2,1,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[3,2,1,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[2,2,1,2],[3,3,3,0],[0,1,2,1]],[[1,1,2,0],[2,2,1,2],[2,4,3,0],[0,1,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,4,0],[0,1,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,3,0],[0,1,3,1]],[[1,1,2,0],[2,2,1,2],[2,3,3,0],[0,1,2,2]],[[2,1,2,0],[2,2,1,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[3,2,1,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[2,2,1,2],[3,3,3,0],[0,2,1,1]],[[1,1,2,0],[2,2,1,2],[2,4,3,0],[0,2,1,1]],[[1,1,2,0],[2,2,1,2],[2,3,4,0],[0,2,1,1]],[[1,1,2,0],[2,2,1,2],[2,3,3,0],[0,3,1,1]],[[2,1,2,0],[2,2,1,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[3,2,1,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[2,2,1,2],[3,3,3,0],[1,0,2,1]],[[1,1,2,0],[2,2,1,2],[2,4,3,0],[1,0,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,4,0],[1,0,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,3,0],[2,0,2,1]],[[1,1,2,0],[2,2,1,2],[2,3,3,0],[1,0,3,1]],[[1,1,2,0],[2,2,1,2],[2,3,3,0],[1,0,2,2]],[[2,1,2,0],[2,2,1,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[3,2,1,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[2,2,1,2],[3,3,3,0],[1,1,1,1]],[[1,1,2,0],[2,2,1,2],[2,4,3,0],[1,1,1,1]],[[1,1,2,0],[2,2,1,2],[2,3,4,0],[1,1,1,1]],[[1,1,2,0],[2,2,1,2],[2,3,3,0],[2,1,1,1]],[[2,1,2,0],[2,2,1,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,0],[3,2,1,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,0],[2,2,1,2],[3,3,3,0],[1,2,0,1]],[[1,1,2,0],[2,2,1,2],[2,4,3,0],[1,2,0,1]],[[1,1,2,0],[2,2,1,2],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[2,1,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,0,1],[2,1,3,2],[2,4,0,2],[1,1,2,0]],[[1,2,0,1],[2,1,3,2],[3,3,0,2],[1,1,2,0]],[[1,2,0,1],[3,1,3,2],[2,3,0,2],[1,1,2,0]],[[1,3,0,1],[2,1,3,2],[2,3,0,2],[1,1,2,0]],[[2,2,0,1],[2,1,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,0,1],[2,1,3,2],[2,3,0,2],[2,1,1,1]],[[2,1,2,0],[2,2,1,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,0],[3,2,1,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,0],[2,2,1,2],[3,3,3,1],[0,1,1,1]],[[1,1,2,0],[2,2,1,2],[2,4,3,1],[0,1,1,1]],[[1,1,2,0],[2,2,1,2],[2,3,4,1],[0,1,1,1]],[[2,1,2,0],[2,2,1,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[3,2,1,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[2,2,1,2],[3,3,3,1],[0,1,2,0]],[[1,1,2,0],[2,2,1,2],[2,4,3,1],[0,1,2,0]],[[1,1,2,0],[2,2,1,2],[2,3,4,1],[0,1,2,0]],[[1,1,2,0],[2,2,1,2],[2,3,3,1],[0,1,3,0]],[[2,1,2,0],[2,2,1,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[3,2,1,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,2,1,2],[3,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,2,1,2],[2,4,3,1],[0,2,0,1]],[[1,1,2,0],[2,2,1,2],[2,3,4,1],[0,2,0,1]],[[1,1,2,0],[2,2,1,2],[2,3,3,1],[0,3,0,1]],[[2,1,2,0],[2,2,1,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[3,2,1,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[2,2,1,2],[3,3,3,1],[0,2,1,0]],[[1,1,2,0],[2,2,1,2],[2,4,3,1],[0,2,1,0]],[[1,1,2,0],[2,2,1,2],[2,3,4,1],[0,2,1,0]],[[1,1,2,0],[2,2,1,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[2,1,3,2],[2,4,0,2],[1,1,1,1]],[[1,2,0,1],[2,1,3,2],[3,3,0,2],[1,1,1,1]],[[1,2,0,1],[3,1,3,2],[2,3,0,2],[1,1,1,1]],[[1,3,0,1],[2,1,3,2],[2,3,0,2],[1,1,1,1]],[[2,2,0,1],[2,1,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,0,1],[2,1,3,2],[2,3,0,2],[2,0,2,1]],[[1,2,0,1],[2,1,3,2],[2,4,0,2],[1,0,2,1]],[[1,2,0,1],[2,1,3,2],[3,3,0,2],[1,0,2,1]],[[2,1,2,0],[2,2,1,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[3,2,1,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[2,2,1,2],[3,3,3,1],[1,0,1,1]],[[1,1,2,0],[2,2,1,2],[2,4,3,1],[1,0,1,1]],[[1,1,2,0],[2,2,1,2],[2,3,4,1],[1,0,1,1]],[[1,1,2,0],[2,2,1,2],[2,3,3,1],[2,0,1,1]],[[2,1,2,0],[2,2,1,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[3,2,1,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[2,2,1,2],[3,3,3,1],[1,0,2,0]],[[1,1,2,0],[2,2,1,2],[2,4,3,1],[1,0,2,0]],[[1,1,2,0],[2,2,1,2],[2,3,4,1],[1,0,2,0]],[[1,1,2,0],[2,2,1,2],[2,3,3,1],[2,0,2,0]],[[1,1,2,0],[2,2,1,2],[2,3,3,1],[1,0,3,0]],[[2,1,2,0],[2,2,1,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[3,2,1,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[2,2,1,2],[3,3,3,1],[1,1,0,1]],[[1,1,2,0],[2,2,1,2],[2,4,3,1],[1,1,0,1]],[[1,1,2,0],[2,2,1,2],[2,3,4,1],[1,1,0,1]],[[1,1,2,0],[2,2,1,2],[2,3,3,1],[2,1,0,1]],[[2,1,2,0],[2,2,1,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[3,2,1,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[2,2,1,2],[3,3,3,1],[1,1,1,0]],[[1,1,2,0],[2,2,1,2],[2,4,3,1],[1,1,1,0]],[[1,1,2,0],[2,2,1,2],[2,3,4,1],[1,1,1,0]],[[1,1,2,0],[2,2,1,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[3,1,3,2],[2,3,0,2],[1,0,2,1]],[[1,3,0,1],[2,1,3,2],[2,3,0,2],[1,0,2,1]],[[2,2,0,1],[2,1,3,2],[2,3,0,2],[1,0,2,1]],[[2,1,2,0],[2,2,1,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,0],[3,2,1,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,0],[2,2,1,2],[3,3,3,1],[1,2,0,0]],[[1,1,2,0],[2,2,1,2],[2,4,3,1],[1,2,0,0]],[[1,1,2,0],[2,2,1,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[2,1,3,2],[2,3,0,2],[0,2,3,0]],[[1,2,0,1],[2,1,3,2],[2,3,0,2],[0,3,2,0]],[[1,2,0,1],[2,1,3,2],[2,4,0,2],[0,2,2,0]],[[1,2,0,1],[2,1,3,2],[3,3,0,2],[0,2,2,0]],[[1,2,0,1],[3,1,3,2],[2,3,0,2],[0,2,2,0]],[[1,3,0,1],[2,1,3,2],[2,3,0,2],[0,2,2,0]],[[2,2,0,1],[2,1,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,0,1],[2,1,3,2],[2,3,0,2],[0,3,1,1]],[[1,2,0,1],[2,1,3,2],[2,4,0,2],[0,2,1,1]],[[1,2,0,1],[2,1,3,2],[3,3,0,2],[0,2,1,1]],[[1,2,0,1],[3,1,3,2],[2,3,0,2],[0,2,1,1]],[[1,3,0,1],[2,1,3,2],[2,3,0,2],[0,2,1,1]],[[2,2,0,1],[2,1,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,0,1],[2,1,3,2],[2,4,0,2],[0,1,2,1]],[[1,2,0,1],[2,1,3,2],[3,3,0,2],[0,1,2,1]],[[1,2,0,1],[3,1,3,2],[2,3,0,2],[0,1,2,1]],[[1,3,0,1],[2,1,3,2],[2,3,0,2],[0,1,2,1]],[[2,2,0,1],[2,1,3,2],[2,3,0,2],[0,1,2,1]],[[1,2,0,1],[2,1,3,2],[2,3,0,1],[1,3,2,0]],[[1,2,0,1],[2,1,3,2],[2,3,0,1],[2,2,2,0]],[[1,2,0,1],[2,1,3,2],[3,3,0,1],[1,2,2,0]],[[1,2,0,1],[3,1,3,2],[2,3,0,1],[1,2,2,0]],[[1,3,0,1],[2,1,3,2],[2,3,0,1],[1,2,2,0]],[[2,2,0,1],[2,1,3,2],[2,3,0,1],[1,2,2,0]],[[1,2,0,1],[2,1,3,2],[2,3,0,1],[2,1,2,1]],[[1,2,0,1],[2,1,3,2],[2,4,0,1],[1,1,2,1]],[[1,2,0,1],[2,1,3,2],[3,3,0,1],[1,1,2,1]],[[1,2,0,1],[3,1,3,2],[2,3,0,1],[1,1,2,1]],[[1,3,0,1],[2,1,3,2],[2,3,0,1],[1,1,2,1]],[[2,2,0,1],[2,1,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,0,1],[2,1,3,2],[2,3,0,1],[0,2,2,2]],[[1,2,0,1],[2,1,3,2],[2,3,0,1],[0,2,3,1]],[[1,2,0,1],[2,1,3,2],[2,3,0,1],[0,3,2,1]],[[1,2,0,1],[2,1,3,2],[2,4,0,1],[0,2,2,1]],[[1,2,0,1],[2,1,3,2],[3,3,0,1],[0,2,2,1]],[[1,2,0,1],[3,1,3,2],[2,3,0,1],[0,2,2,1]],[[1,3,0,1],[2,1,3,2],[2,3,0,1],[0,2,2,1]],[[2,2,0,1],[2,1,3,2],[2,3,0,1],[0,2,2,1]],[[1,2,0,1],[2,1,3,2],[2,3,0,0],[1,3,2,1]],[[1,2,0,1],[2,1,3,2],[2,3,0,0],[2,2,2,1]],[[1,2,0,1],[2,1,3,2],[3,3,0,0],[1,2,2,1]],[[1,2,0,1],[3,1,3,2],[2,3,0,0],[1,2,2,1]],[[1,3,0,1],[2,1,3,2],[2,3,0,0],[1,2,2,1]],[[2,2,0,1],[2,1,3,2],[2,3,0,0],[1,2,2,1]],[[1,2,0,1],[2,1,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,0,1],[2,1,3,2],[2,2,3,0],[2,2,1,0]],[[1,2,0,1],[2,1,3,2],[3,2,3,0],[1,2,1,0]],[[1,2,0,1],[3,1,3,2],[2,2,3,0],[1,2,1,0]],[[1,3,0,1],[2,1,3,2],[2,2,3,0],[1,2,1,0]],[[2,2,0,1],[2,1,3,2],[2,2,3,0],[1,2,1,0]],[[1,2,0,1],[2,1,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,0,1],[2,1,3,2],[2,2,2,1],[2,2,1,0]],[[1,2,0,1],[2,1,3,2],[3,2,2,1],[1,2,1,0]],[[1,2,0,1],[3,1,3,2],[2,2,2,1],[1,2,1,0]],[[1,3,0,1],[2,1,3,2],[2,2,2,1],[1,2,1,0]],[[2,2,0,1],[2,1,3,2],[2,2,2,1],[1,2,1,0]],[[1,2,0,1],[2,1,3,2],[2,2,2,1],[1,3,0,1]],[[1,2,0,1],[2,1,3,2],[2,2,2,1],[2,2,0,1]],[[1,2,0,1],[2,1,3,2],[3,2,2,1],[1,2,0,1]],[[1,2,0,1],[3,1,3,2],[2,2,2,1],[1,2,0,1]],[[1,3,0,1],[2,1,3,2],[2,2,2,1],[1,2,0,1]],[[2,2,0,1],[2,1,3,2],[2,2,2,1],[1,2,0,1]],[[1,2,0,1],[2,1,3,2],[2,2,2,0],[1,3,1,1]],[[1,2,0,1],[2,1,3,2],[2,2,2,0],[2,2,1,1]],[[1,2,0,1],[2,1,3,2],[3,2,2,0],[1,2,1,1]],[[1,2,0,1],[3,1,3,2],[2,2,2,0],[1,2,1,1]],[[1,3,0,1],[2,1,3,2],[2,2,2,0],[1,2,1,1]],[[2,2,0,1],[2,1,3,2],[2,2,2,0],[1,2,1,1]],[[1,2,0,1],[2,1,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,0,1],[2,1,3,2],[2,2,1,2],[2,2,1,0]],[[1,2,0,1],[2,1,3,2],[3,2,1,2],[1,2,1,0]],[[1,2,0,1],[3,1,3,2],[2,2,1,2],[1,2,1,0]],[[1,3,0,1],[2,1,3,2],[2,2,1,2],[1,2,1,0]],[[2,2,0,1],[2,1,3,2],[2,2,1,2],[1,2,1,0]],[[1,2,0,1],[2,1,3,2],[2,2,1,2],[1,3,0,1]],[[1,2,0,1],[2,1,3,2],[2,2,1,2],[2,2,0,1]],[[1,2,0,1],[2,1,3,2],[3,2,1,2],[1,2,0,1]],[[1,2,0,1],[3,1,3,2],[2,2,1,2],[1,2,0,1]],[[1,3,0,1],[2,1,3,2],[2,2,1,2],[1,2,0,1]],[[2,2,0,1],[2,1,3,2],[2,2,1,2],[1,2,0,1]],[[1,2,0,1],[2,1,3,2],[2,2,1,1],[1,2,3,0]],[[1,2,0,1],[2,1,3,2],[2,2,1,1],[1,3,2,0]],[[1,1,2,0],[2,2,2,1],[1,4,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,2,1],[1,3,0,3],[1,2,2,1]],[[1,1,2,0],[2,2,2,1],[1,3,0,2],[2,2,2,1]],[[1,1,2,0],[2,2,2,1],[1,3,0,2],[1,3,2,1]],[[1,1,2,0],[2,2,2,1],[1,3,0,2],[1,2,3,1]],[[1,1,2,0],[2,2,2,1],[1,3,0,2],[1,2,2,2]],[[1,1,2,0],[2,2,2,1],[1,4,1,1],[1,2,2,1]],[[1,1,2,0],[2,2,2,1],[1,3,1,1],[2,2,2,1]],[[1,1,2,0],[2,2,2,1],[1,3,1,1],[1,3,2,1]],[[1,1,2,0],[2,2,2,1],[1,3,1,1],[1,2,3,1]],[[1,1,2,0],[2,2,2,1],[1,3,1,1],[1,2,2,2]],[[1,1,2,0],[2,2,2,1],[1,4,1,2],[1,2,2,0]],[[1,1,2,0],[2,2,2,1],[1,3,1,2],[2,2,2,0]],[[1,1,2,0],[2,2,2,1],[1,3,1,2],[1,3,2,0]],[[1,1,2,0],[2,2,2,1],[1,3,1,2],[1,2,3,0]],[[1,1,2,0],[2,2,2,1],[1,4,2,1],[1,2,1,1]],[[1,1,2,0],[2,2,2,1],[1,3,2,1],[2,2,1,1]],[[1,1,2,0],[2,2,2,1],[1,3,2,1],[1,3,1,1]],[[1,1,2,0],[2,2,2,1],[1,4,2,2],[1,2,0,1]],[[1,1,2,0],[2,2,2,1],[1,3,2,2],[2,2,0,1]],[[1,1,2,0],[2,2,2,1],[1,3,2,2],[1,3,0,1]],[[1,1,2,0],[2,2,2,1],[1,4,2,2],[1,2,1,0]],[[1,1,2,0],[2,2,2,1],[1,3,2,2],[2,2,1,0]],[[1,1,2,0],[2,2,2,1],[1,3,2,2],[1,3,1,0]],[[1,2,0,1],[2,1,3,2],[2,2,1,1],[2,2,2,0]],[[1,2,0,1],[2,1,3,2],[3,2,1,1],[1,2,2,0]],[[1,2,0,1],[3,1,3,2],[2,2,1,1],[1,2,2,0]],[[1,3,0,1],[2,1,3,2],[2,2,1,1],[1,2,2,0]],[[2,2,0,1],[2,1,3,2],[2,2,1,1],[1,2,2,0]],[[1,2,0,1],[2,1,3,2],[2,2,1,0],[1,2,2,2]],[[1,2,0,1],[2,1,3,2],[2,2,1,0],[1,2,3,1]],[[1,2,0,1],[2,1,3,2],[2,2,1,0],[1,3,2,1]],[[1,2,0,1],[2,1,3,2],[2,2,1,0],[2,2,2,1]],[[1,2,0,1],[2,1,3,2],[3,2,1,0],[1,2,2,1]],[[1,2,0,1],[3,1,3,2],[2,2,1,0],[1,2,2,1]],[[1,3,0,1],[2,1,3,2],[2,2,1,0],[1,2,2,1]],[[2,2,0,1],[2,1,3,2],[2,2,1,0],[1,2,2,1]],[[1,2,0,1],[2,1,3,2],[2,2,0,2],[1,2,3,0]],[[1,2,0,1],[2,1,3,2],[2,2,0,2],[1,3,2,0]],[[1,2,0,1],[2,1,3,2],[2,2,0,2],[2,2,2,0]],[[1,2,0,1],[2,1,3,2],[3,2,0,2],[1,2,2,0]],[[1,2,0,1],[3,1,3,2],[2,2,0,2],[1,2,2,0]],[[1,3,0,1],[2,1,3,2],[2,2,0,2],[1,2,2,0]],[[2,2,0,1],[2,1,3,2],[2,2,0,2],[1,2,2,0]],[[1,2,0,1],[2,1,3,2],[2,2,0,2],[1,3,1,1]],[[1,2,0,1],[2,1,3,2],[2,2,0,2],[2,2,1,1]],[[1,2,0,1],[2,1,3,2],[3,2,0,2],[1,2,1,1]],[[1,2,0,1],[3,1,3,2],[2,2,0,2],[1,2,1,1]],[[1,3,0,1],[2,1,3,2],[2,2,0,2],[1,2,1,1]],[[2,2,0,1],[2,1,3,2],[2,2,0,2],[1,2,1,1]],[[1,2,0,1],[2,1,3,2],[2,2,0,1],[1,2,2,2]],[[1,2,0,1],[2,1,3,2],[2,2,0,1],[1,2,3,1]],[[1,2,0,1],[2,1,3,2],[2,2,0,1],[1,3,2,1]],[[1,2,0,1],[2,1,3,2],[2,2,0,1],[2,2,2,1]],[[1,2,0,1],[2,1,3,2],[3,2,0,1],[1,2,2,1]],[[1,2,0,1],[3,1,3,2],[2,2,0,1],[1,2,2,1]],[[1,3,0,1],[2,1,3,2],[2,2,0,1],[1,2,2,1]],[[2,1,2,0],[2,2,2,1],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[3,2,2,1],[2,2,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,2,1],[3,2,0,2],[1,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,2,0,3],[1,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,2,0,2],[2,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,2,0,2],[1,3,2,1]],[[1,1,2,0],[2,2,2,1],[2,2,0,2],[1,2,3,1]],[[1,1,2,0],[2,2,2,1],[2,2,0,2],[1,2,2,2]],[[2,1,2,0],[2,2,2,1],[2,2,1,1],[1,2,2,1]],[[1,1,2,0],[3,2,2,1],[2,2,1,1],[1,2,2,1]],[[1,1,2,0],[2,2,2,1],[3,2,1,1],[1,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,2,1,1],[2,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,2,1,1],[1,3,2,1]],[[1,1,2,0],[2,2,2,1],[2,2,1,1],[1,2,3,1]],[[1,1,2,0],[2,2,2,1],[2,2,1,1],[1,2,2,2]],[[2,1,2,0],[2,2,2,1],[2,2,1,2],[1,2,2,0]],[[1,1,2,0],[3,2,2,1],[2,2,1,2],[1,2,2,0]],[[1,1,2,0],[2,2,2,1],[3,2,1,2],[1,2,2,0]],[[1,1,2,0],[2,2,2,1],[2,2,1,2],[2,2,2,0]],[[1,1,2,0],[2,2,2,1],[2,2,1,2],[1,3,2,0]],[[1,1,2,0],[2,2,2,1],[2,2,1,2],[1,2,3,0]],[[2,1,2,0],[2,2,2,1],[2,2,2,1],[1,2,1,1]],[[1,1,2,0],[3,2,2,1],[2,2,2,1],[1,2,1,1]],[[1,1,2,0],[2,2,2,1],[3,2,2,1],[1,2,1,1]],[[1,1,2,0],[2,2,2,1],[2,2,2,1],[2,2,1,1]],[[1,1,2,0],[2,2,2,1],[2,2,2,1],[1,3,1,1]],[[2,1,2,0],[2,2,2,1],[2,2,2,2],[1,2,0,1]],[[1,1,2,0],[3,2,2,1],[2,2,2,2],[1,2,0,1]],[[1,1,2,0],[2,2,2,1],[3,2,2,2],[1,2,0,1]],[[1,1,2,0],[2,2,2,1],[2,2,2,2],[2,2,0,1]],[[1,1,2,0],[2,2,2,1],[2,2,2,2],[1,3,0,1]],[[2,1,2,0],[2,2,2,1],[2,2,2,2],[1,2,1,0]],[[1,1,2,0],[3,2,2,1],[2,2,2,2],[1,2,1,0]],[[1,1,2,0],[2,2,2,1],[3,2,2,2],[1,2,1,0]],[[1,1,2,0],[2,2,2,1],[2,2,2,2],[2,2,1,0]],[[1,1,2,0],[2,2,2,1],[2,2,2,2],[1,3,1,0]],[[2,2,0,1],[2,1,3,2],[2,2,0,1],[1,2,2,1]],[[2,1,2,0],[2,2,2,1],[2,3,0,1],[1,2,2,1]],[[1,1,2,0],[3,2,2,1],[2,3,0,1],[1,2,2,1]],[[1,1,2,0],[2,2,2,1],[3,3,0,1],[1,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,3,0,1],[2,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,3,0,1],[1,3,2,1]],[[2,1,2,0],[2,2,2,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[3,2,2,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,2,2,1],[3,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,4,0,2],[0,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,3,0,3],[0,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,3,0,2],[0,3,2,1]],[[1,1,2,0],[2,2,2,1],[2,3,0,2],[0,2,3,1]],[[1,1,2,0],[2,2,2,1],[2,3,0,2],[0,2,2,2]],[[2,1,2,0],[2,2,2,1],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[3,2,2,1],[2,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,2,2,1],[3,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,2,2,1],[2,4,0,2],[1,1,2,1]],[[1,1,2,0],[2,2,2,1],[2,3,0,2],[2,1,2,1]],[[2,1,2,0],[2,2,2,1],[2,3,0,2],[1,2,2,0]],[[1,1,2,0],[3,2,2,1],[2,3,0,2],[1,2,2,0]],[[1,1,2,0],[2,2,2,1],[3,3,0,2],[1,2,2,0]],[[1,1,2,0],[2,2,2,1],[2,3,0,2],[2,2,2,0]],[[1,1,2,0],[2,2,2,1],[2,3,0,2],[1,3,2,0]],[[2,1,2,0],[2,2,2,1],[2,3,1,1],[0,2,2,1]],[[1,1,2,0],[3,2,2,1],[2,3,1,1],[0,2,2,1]],[[1,1,2,0],[2,2,2,1],[3,3,1,1],[0,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,4,1,1],[0,2,2,1]],[[1,1,2,0],[2,2,2,1],[2,3,1,1],[0,3,2,1]],[[1,1,2,0],[2,2,2,1],[2,3,1,1],[0,2,3,1]],[[1,1,2,0],[2,2,2,1],[2,3,1,1],[0,2,2,2]],[[2,1,2,0],[2,2,2,1],[2,3,1,1],[1,1,2,1]],[[1,1,2,0],[3,2,2,1],[2,3,1,1],[1,1,2,1]],[[1,1,2,0],[2,2,2,1],[3,3,1,1],[1,1,2,1]],[[1,1,2,0],[2,2,2,1],[2,4,1,1],[1,1,2,1]],[[1,1,2,0],[2,2,2,1],[2,3,1,1],[2,1,2,1]],[[2,1,2,0],[2,2,2,1],[2,3,1,2],[0,2,2,0]],[[1,1,2,0],[3,2,2,1],[2,3,1,2],[0,2,2,0]],[[1,1,2,0],[2,2,2,1],[3,3,1,2],[0,2,2,0]],[[1,1,2,0],[2,2,2,1],[2,4,1,2],[0,2,2,0]],[[1,1,2,0],[2,2,2,1],[2,3,1,2],[0,3,2,0]],[[1,1,2,0],[2,2,2,1],[2,3,1,2],[0,2,3,0]],[[2,1,2,0],[2,2,2,1],[2,3,1,2],[1,1,2,0]],[[1,1,2,0],[3,2,2,1],[2,3,1,2],[1,1,2,0]],[[1,1,2,0],[2,2,2,1],[3,3,1,2],[1,1,2,0]],[[1,1,2,0],[2,2,2,1],[2,4,1,2],[1,1,2,0]],[[1,1,2,0],[2,2,2,1],[2,3,1,2],[2,1,2,0]],[[1,2,0,1],[2,1,3,2],[2,1,0,2],[1,2,2,2]],[[1,2,0,1],[2,1,3,2],[2,1,0,2],[1,2,3,1]],[[1,2,0,1],[2,1,3,2],[2,1,0,2],[1,3,2,1]],[[1,2,0,1],[2,1,3,2],[2,1,0,2],[2,2,2,1]],[[1,2,0,1],[2,1,3,2],[2,1,0,3],[1,2,2,1]],[[1,2,0,1],[2,1,3,2],[3,1,0,2],[1,2,2,1]],[[2,1,2,0],[2,2,2,1],[2,3,2,1],[0,1,2,1]],[[1,1,2,0],[3,2,2,1],[2,3,2,1],[0,1,2,1]],[[1,1,2,0],[2,2,2,1],[3,3,2,1],[0,1,2,1]],[[1,1,2,0],[2,2,2,1],[2,4,2,1],[0,1,2,1]],[[2,1,2,0],[2,2,2,1],[2,3,2,1],[0,2,1,1]],[[1,1,2,0],[3,2,2,1],[2,3,2,1],[0,2,1,1]],[[1,1,2,0],[2,2,2,1],[3,3,2,1],[0,2,1,1]],[[1,1,2,0],[2,2,2,1],[2,4,2,1],[0,2,1,1]],[[1,1,2,0],[2,2,2,1],[2,3,2,1],[0,3,1,1]],[[2,1,2,0],[2,2,2,1],[2,3,2,1],[1,0,2,1]],[[1,1,2,0],[3,2,2,1],[2,3,2,1],[1,0,2,1]],[[1,1,2,0],[2,2,2,1],[3,3,2,1],[1,0,2,1]],[[1,1,2,0],[2,2,2,1],[2,4,2,1],[1,0,2,1]],[[1,1,2,0],[2,2,2,1],[2,3,2,1],[2,0,2,1]],[[2,1,2,0],[2,2,2,1],[2,3,2,1],[1,1,1,1]],[[1,1,2,0],[3,2,2,1],[2,3,2,1],[1,1,1,1]],[[1,1,2,0],[2,2,2,1],[3,3,2,1],[1,1,1,1]],[[1,1,2,0],[2,2,2,1],[2,4,2,1],[1,1,1,1]],[[1,1,2,0],[2,2,2,1],[2,3,2,1],[2,1,1,1]],[[2,1,2,0],[2,2,2,1],[2,3,2,1],[1,2,0,1]],[[1,1,2,0],[3,2,2,1],[2,3,2,1],[1,2,0,1]],[[1,1,2,0],[2,2,2,1],[3,3,2,1],[1,2,0,1]],[[1,1,2,0],[2,2,2,1],[2,4,2,1],[1,2,0,1]],[[1,1,2,0],[2,2,2,1],[2,3,2,1],[2,2,0,1]],[[1,2,0,1],[2,1,3,3],[2,1,0,2],[1,2,2,1]],[[1,2,0,1],[2,1,4,2],[2,1,0,2],[1,2,2,1]],[[1,2,0,1],[3,1,3,2],[2,1,0,2],[1,2,2,1]],[[1,2,0,2],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[1,3,0,1],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[2,2,0,1],[2,1,3,2],[2,1,0,2],[1,2,2,1]],[[2,1,2,0],[2,2,2,1],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[3,2,2,1],[2,3,2,2],[0,1,1,1]],[[1,1,2,0],[2,2,2,1],[3,3,2,2],[0,1,1,1]],[[1,1,2,0],[2,2,2,1],[2,4,2,2],[0,1,1,1]],[[2,1,2,0],[2,2,2,1],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[3,2,2,1],[2,3,2,2],[0,1,2,0]],[[1,1,2,0],[2,2,2,1],[3,3,2,2],[0,1,2,0]],[[1,1,2,0],[2,2,2,1],[2,4,2,2],[0,1,2,0]],[[2,1,2,0],[2,2,2,1],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[3,2,2,1],[2,3,2,2],[0,2,0,1]],[[1,1,2,0],[2,2,2,1],[3,3,2,2],[0,2,0,1]],[[1,1,2,0],[2,2,2,1],[2,4,2,2],[0,2,0,1]],[[1,1,2,0],[2,2,2,1],[2,3,2,2],[0,3,0,1]],[[2,1,2,0],[2,2,2,1],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[3,2,2,1],[2,3,2,2],[0,2,1,0]],[[1,1,2,0],[2,2,2,1],[3,3,2,2],[0,2,1,0]],[[1,1,2,0],[2,2,2,1],[2,4,2,2],[0,2,1,0]],[[1,1,2,0],[2,2,2,1],[2,3,2,2],[0,3,1,0]],[[2,1,2,0],[2,2,2,1],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[3,2,2,1],[2,3,2,2],[1,0,1,1]],[[1,1,2,0],[2,2,2,1],[3,3,2,2],[1,0,1,1]],[[1,1,2,0],[2,2,2,1],[2,4,2,2],[1,0,1,1]],[[1,1,2,0],[2,2,2,1],[2,3,2,2],[2,0,1,1]],[[2,1,2,0],[2,2,2,1],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[3,2,2,1],[2,3,2,2],[1,0,2,0]],[[1,1,2,0],[2,2,2,1],[3,3,2,2],[1,0,2,0]],[[1,1,2,0],[2,2,2,1],[2,4,2,2],[1,0,2,0]],[[1,1,2,0],[2,2,2,1],[2,3,2,2],[2,0,2,0]],[[2,1,2,0],[2,2,2,1],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[3,2,2,1],[2,3,2,2],[1,1,0,1]],[[1,1,2,0],[2,2,2,1],[3,3,2,2],[1,1,0,1]],[[1,1,2,0],[2,2,2,1],[2,4,2,2],[1,1,0,1]],[[1,1,2,0],[2,2,2,1],[2,3,2,2],[2,1,0,1]],[[2,1,2,0],[2,2,2,1],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[3,2,2,1],[2,3,2,2],[1,1,1,0]],[[1,1,2,0],[2,2,2,1],[3,3,2,2],[1,1,1,0]],[[1,1,2,0],[2,2,2,1],[2,4,2,2],[1,1,1,0]],[[1,1,2,0],[2,2,2,1],[2,3,2,2],[2,1,1,0]],[[2,1,2,0],[2,2,2,1],[2,3,2,2],[1,2,0,0]],[[1,1,2,0],[3,2,2,1],[2,3,2,2],[1,2,0,0]],[[1,1,2,0],[2,2,2,1],[3,3,2,2],[1,2,0,0]],[[1,1,2,0],[2,2,2,1],[2,4,2,2],[1,2,0,0]],[[1,1,2,0],[2,2,2,1],[2,3,2,2],[2,2,0,0]],[[1,2,0,1],[2,1,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,0,1],[2,1,3,2],[2,0,3,1],[1,3,2,0]],[[1,2,0,1],[2,1,3,2],[2,0,3,1],[2,2,2,0]],[[1,2,0,1],[2,1,3,2],[2,0,4,1],[1,2,2,0]],[[1,2,0,1],[2,1,3,2],[3,0,3,1],[1,2,2,0]],[[1,2,0,1],[2,1,3,3],[2,0,3,1],[1,2,2,0]],[[1,2,0,1],[2,1,4,2],[2,0,3,1],[1,2,2,0]],[[1,2,0,1],[3,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,0,2],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,3,0,1],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[2,2,0,1],[2,1,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,0,1],[2,1,3,2],[2,0,4,1],[1,2,1,1]],[[1,2,0,1],[2,1,3,3],[2,0,3,1],[1,2,1,1]],[[1,2,0,1],[2,1,4,2],[2,0,3,1],[1,2,1,1]],[[1,2,0,2],[2,1,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,0,1],[2,1,3,2],[2,0,3,0],[1,2,2,2]],[[1,2,0,1],[2,1,3,2],[2,0,3,0],[1,2,3,1]],[[1,2,0,1],[2,1,3,2],[2,0,3,0],[1,3,2,1]],[[1,2,0,1],[2,1,3,2],[2,0,3,0],[2,2,2,1]],[[1,2,0,1],[2,1,3,2],[2,0,4,0],[1,2,2,1]],[[1,2,0,1],[2,1,3,2],[3,0,3,0],[1,2,2,1]],[[1,2,0,1],[2,1,3,3],[2,0,3,0],[1,2,2,1]],[[1,2,0,1],[2,1,4,2],[2,0,3,0],[1,2,2,1]],[[1,2,0,1],[3,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,0,2],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,3,0,1],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[2,2,0,1],[2,1,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,0,1],[2,1,3,2],[2,0,2,3],[1,2,2,0]],[[1,2,0,1],[2,1,3,3],[2,0,2,2],[1,2,2,0]],[[1,2,0,1],[2,1,4,2],[2,0,2,2],[1,2,2,0]],[[1,2,0,2],[2,1,3,2],[2,0,2,2],[1,2,2,0]],[[1,2,0,1],[2,1,3,2],[2,0,2,2],[1,2,1,2]],[[1,2,0,1],[2,1,3,2],[2,0,2,3],[1,2,1,1]],[[1,2,0,1],[2,1,3,3],[2,0,2,2],[1,2,1,1]],[[1,2,0,1],[2,1,4,2],[2,0,2,2],[1,2,1,1]],[[1,2,0,2],[2,1,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,0,1],[2,1,3,2],[2,0,1,2],[1,2,2,2]],[[1,2,0,1],[2,1,3,2],[2,0,1,2],[1,2,3,1]],[[1,2,0,1],[2,1,3,2],[2,0,1,2],[1,3,2,1]],[[1,2,0,1],[2,1,3,2],[2,0,1,2],[2,2,2,1]],[[1,2,0,1],[2,1,3,2],[2,0,1,3],[1,2,2,1]],[[1,2,0,1],[2,1,3,2],[3,0,1,2],[1,2,2,1]],[[1,2,0,1],[2,1,3,3],[2,0,1,2],[1,2,2,1]],[[1,2,0,1],[2,1,4,2],[2,0,1,2],[1,2,2,1]],[[1,2,0,1],[3,1,3,2],[2,0,1,2],[1,2,2,1]],[[2,1,2,0],[2,2,2,1],[2,3,3,2],[0,2,0,0]],[[1,1,2,0],[3,2,2,1],[2,3,3,2],[0,2,0,0]],[[1,1,2,0],[2,2,2,1],[3,3,3,2],[0,2,0,0]],[[1,1,2,0],[2,2,2,1],[2,4,3,2],[0,2,0,0]],[[1,2,0,2],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[1,3,0,1],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[2,2,0,1],[2,1,3,2],[2,0,1,2],[1,2,2,1]],[[2,1,2,0],[2,2,2,1],[2,3,3,2],[1,1,0,0]],[[1,1,2,0],[3,2,2,1],[2,3,3,2],[1,1,0,0]],[[1,1,2,0],[2,2,2,1],[3,3,3,2],[1,1,0,0]],[[1,1,2,0],[2,2,2,1],[2,4,3,2],[1,1,0,0]],[[1,1,2,0],[2,2,2,1],[2,3,3,2],[2,1,0,0]],[[1,2,0,1],[2,1,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,0,1],[2,1,3,2],[1,3,3,0],[2,2,1,0]],[[1,2,0,1],[2,1,3,2],[1,4,3,0],[1,2,1,0]],[[1,2,0,1],[2,1,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,0,1],[2,1,3,2],[1,3,2,1],[2,2,1,0]],[[1,2,0,1],[2,1,3,2],[1,4,2,1],[1,2,1,0]],[[1,2,0,1],[2,1,3,2],[1,3,2,1],[1,3,0,1]],[[1,2,0,1],[2,1,3,2],[1,3,2,1],[2,2,0,1]],[[1,2,0,1],[2,1,3,2],[1,4,2,1],[1,2,0,1]],[[1,2,0,1],[2,1,3,2],[1,3,2,0],[1,3,1,1]],[[1,2,0,1],[2,1,3,2],[1,3,2,0],[2,2,1,1]],[[1,2,0,1],[2,1,3,2],[1,4,2,0],[1,2,1,1]],[[1,2,0,1],[2,1,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,0,1],[2,1,3,2],[1,3,1,2],[2,2,1,0]],[[1,2,0,1],[2,1,3,2],[1,4,1,2],[1,2,1,0]],[[1,2,0,1],[2,1,3,2],[1,3,1,2],[1,3,0,1]],[[1,2,0,1],[2,1,3,2],[1,3,1,2],[2,2,0,1]],[[1,2,0,1],[2,1,3,2],[1,4,1,2],[1,2,0,1]],[[1,2,0,1],[2,1,3,2],[1,3,1,1],[1,2,3,0]],[[1,2,0,1],[2,1,3,2],[1,3,1,1],[1,3,2,0]],[[1,2,0,1],[2,1,3,2],[1,3,1,1],[2,2,2,0]],[[1,2,0,1],[2,1,3,2],[1,4,1,1],[1,2,2,0]],[[1,2,0,1],[2,1,3,2],[1,3,1,0],[1,2,2,2]],[[1,2,0,1],[2,1,3,2],[1,3,1,0],[1,2,3,1]],[[1,2,0,1],[2,1,3,2],[1,3,1,0],[1,3,2,1]],[[1,2,0,1],[2,1,3,2],[1,3,1,0],[2,2,2,1]],[[1,2,0,1],[2,1,3,2],[1,4,1,0],[1,2,2,1]],[[1,2,0,1],[2,1,3,2],[1,3,0,2],[1,2,3,0]],[[1,2,0,1],[2,1,3,2],[1,3,0,2],[1,3,2,0]],[[1,2,0,1],[2,1,3,2],[1,3,0,2],[2,2,2,0]],[[1,2,0,1],[2,1,3,2],[1,4,0,2],[1,2,2,0]],[[1,2,0,1],[2,1,3,2],[1,3,0,2],[1,3,1,1]],[[1,2,0,1],[2,1,3,2],[1,3,0,2],[2,2,1,1]],[[1,2,0,1],[2,1,3,2],[1,4,0,2],[1,2,1,1]],[[1,2,0,1],[2,1,3,2],[1,3,0,1],[1,2,2,2]],[[1,2,0,1],[2,1,3,2],[1,3,0,1],[1,2,3,1]],[[1,2,0,1],[2,1,3,2],[1,3,0,1],[1,3,2,1]],[[1,2,0,1],[2,1,3,2],[1,3,0,1],[2,2,2,1]],[[1,2,0,1],[2,1,3,2],[1,4,0,1],[1,2,2,1]],[[1,1,2,0],[2,2,2,2],[1,4,0,1],[1,2,2,1]],[[1,1,2,0],[2,2,2,2],[1,3,0,1],[2,2,2,1]],[[1,1,2,0],[2,2,2,2],[1,3,0,1],[1,3,2,1]],[[1,1,2,0],[2,2,2,2],[1,3,0,1],[1,2,3,1]],[[1,1,2,0],[2,2,2,2],[1,3,0,1],[1,2,2,2]],[[1,1,2,0],[2,2,2,2],[1,4,0,2],[1,2,1,1]],[[1,1,2,0],[2,2,2,2],[1,3,0,2],[2,2,1,1]],[[1,1,2,0],[2,2,2,2],[1,3,0,2],[1,3,1,1]],[[1,1,2,0],[2,2,2,2],[1,4,0,2],[1,2,2,0]],[[1,1,2,0],[2,2,2,2],[1,3,0,2],[2,2,2,0]],[[1,1,2,0],[2,2,2,2],[1,3,0,2],[1,3,2,0]],[[1,1,2,0],[2,2,2,2],[1,3,0,2],[1,2,3,0]],[[1,1,2,0],[2,2,2,2],[1,4,1,0],[1,2,2,1]],[[1,1,2,0],[2,2,2,2],[1,3,1,0],[2,2,2,1]],[[1,1,2,0],[2,2,2,2],[1,3,1,0],[1,3,2,1]],[[1,1,2,0],[2,2,2,2],[1,3,1,0],[1,2,3,1]],[[1,1,2,0],[2,2,2,2],[1,3,1,0],[1,2,2,2]],[[1,1,2,0],[2,2,2,2],[1,4,1,1],[1,2,2,0]],[[1,1,2,0],[2,2,2,2],[1,3,1,1],[2,2,2,0]],[[1,1,2,0],[2,2,2,2],[1,3,1,1],[1,3,2,0]],[[1,1,2,0],[2,2,2,2],[1,3,1,1],[1,2,3,0]],[[1,1,2,0],[2,2,2,2],[1,4,1,2],[1,2,0,1]],[[1,1,2,0],[2,2,2,2],[1,3,1,2],[2,2,0,1]],[[1,1,2,0],[2,2,2,2],[1,3,1,2],[1,3,0,1]],[[1,1,2,0],[2,2,2,2],[1,4,1,2],[1,2,1,0]],[[1,1,2,0],[2,2,2,2],[1,3,1,2],[2,2,1,0]],[[1,1,2,0],[2,2,2,2],[1,3,1,2],[1,3,1,0]],[[1,1,2,0],[2,2,2,2],[1,4,2,0],[1,2,1,1]],[[1,1,2,0],[2,2,2,2],[1,3,2,0],[2,2,1,1]],[[1,1,2,0],[2,2,2,2],[1,3,2,0],[1,3,1,1]],[[1,1,2,0],[2,2,2,2],[1,4,2,1],[1,2,0,1]],[[1,1,2,0],[2,2,2,2],[1,3,2,1],[2,2,0,1]],[[1,1,2,0],[2,2,2,2],[1,3,2,1],[1,3,0,1]],[[1,1,2,0],[2,2,2,2],[1,4,2,1],[1,2,1,0]],[[1,1,2,0],[2,2,2,2],[1,3,2,1],[2,2,1,0]],[[1,1,2,0],[2,2,2,2],[1,3,2,1],[1,3,1,0]],[[1,2,0,1],[2,1,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,0,1],[2,1,3,1],[2,4,3,2],[1,1,0,0]],[[1,2,0,1],[2,1,3,1],[3,3,3,2],[1,1,0,0]],[[1,2,0,1],[3,1,3,1],[2,3,3,2],[1,1,0,0]],[[1,3,0,1],[2,1,3,1],[2,3,3,2],[1,1,0,0]],[[2,2,0,1],[2,1,3,1],[2,3,3,2],[1,1,0,0]],[[1,1,2,0],[2,2,2,2],[1,4,3,0],[1,2,1,0]],[[1,1,2,0],[2,2,2,2],[1,3,3,0],[2,2,1,0]],[[1,1,2,0],[2,2,2,2],[1,3,3,0],[1,3,1,0]],[[1,2,0,1],[2,1,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,0,1],[2,1,3,1],[3,3,3,2],[0,2,0,0]],[[1,2,0,1],[3,1,3,1],[2,3,3,2],[0,2,0,0]],[[1,3,0,1],[2,1,3,1],[2,3,3,2],[0,2,0,0]],[[2,2,0,1],[2,1,3,1],[2,3,3,2],[0,2,0,0]],[[1,2,0,1],[2,1,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,0,1],[2,1,3,1],[2,4,2,2],[1,2,0,0]],[[1,2,0,1],[2,1,3,1],[3,3,2,2],[1,2,0,0]],[[1,2,0,1],[3,1,3,1],[2,3,2,2],[1,2,0,0]],[[1,3,0,1],[2,1,3,1],[2,3,2,2],[1,2,0,0]],[[2,2,0,1],[2,1,3,1],[2,3,2,2],[1,2,0,0]],[[1,2,0,1],[2,1,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,0,1],[2,1,3,1],[2,4,2,2],[1,1,1,0]],[[1,2,0,1],[2,1,3,1],[3,3,2,2],[1,1,1,0]],[[1,2,0,1],[3,1,3,1],[2,3,2,2],[1,1,1,0]],[[1,3,0,1],[2,1,3,1],[2,3,2,2],[1,1,1,0]],[[2,2,0,1],[2,1,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,0,1],[2,1,3,1],[2,3,2,2],[2,1,0,1]],[[1,2,0,1],[2,1,3,1],[2,4,2,2],[1,1,0,1]],[[1,2,0,1],[2,1,3,1],[3,3,2,2],[1,1,0,1]],[[1,2,0,1],[3,1,3,1],[2,3,2,2],[1,1,0,1]],[[1,3,0,1],[2,1,3,1],[2,3,2,2],[1,1,0,1]],[[2,2,0,1],[2,1,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,0,1],[2,1,3,1],[2,3,2,2],[2,0,2,0]],[[1,2,0,1],[2,1,3,1],[2,4,2,2],[1,0,2,0]],[[1,2,0,1],[2,1,3,1],[3,3,2,2],[1,0,2,0]],[[1,2,0,1],[3,1,3,1],[2,3,2,2],[1,0,2,0]],[[1,3,0,1],[2,1,3,1],[2,3,2,2],[1,0,2,0]],[[2,2,0,1],[2,1,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,0,1],[2,1,3,1],[2,3,2,2],[2,0,1,1]],[[1,2,0,1],[2,1,3,1],[2,4,2,2],[1,0,1,1]],[[2,1,2,0],[2,2,2,2],[2,2,0,1],[1,2,2,1]],[[1,1,2,0],[3,2,2,2],[2,2,0,1],[1,2,2,1]],[[1,1,2,0],[2,2,2,2],[3,2,0,1],[1,2,2,1]],[[1,1,2,0],[2,2,2,2],[2,2,0,1],[2,2,2,1]],[[1,1,2,0],[2,2,2,2],[2,2,0,1],[1,3,2,1]],[[1,1,2,0],[2,2,2,2],[2,2,0,1],[1,2,3,1]],[[1,1,2,0],[2,2,2,2],[2,2,0,1],[1,2,2,2]],[[2,1,2,0],[2,2,2,2],[2,2,0,2],[1,2,1,1]],[[1,1,2,0],[3,2,2,2],[2,2,0,2],[1,2,1,1]],[[1,1,2,0],[2,2,2,2],[3,2,0,2],[1,2,1,1]],[[1,1,2,0],[2,2,2,2],[2,2,0,2],[2,2,1,1]],[[1,1,2,0],[2,2,2,2],[2,2,0,2],[1,3,1,1]],[[2,1,2,0],[2,2,2,2],[2,2,0,2],[1,2,2,0]],[[1,1,2,0],[3,2,2,2],[2,2,0,2],[1,2,2,0]],[[1,1,2,0],[2,2,2,2],[3,2,0,2],[1,2,2,0]],[[1,1,2,0],[2,2,2,2],[2,2,0,2],[2,2,2,0]],[[1,1,2,0],[2,2,2,2],[2,2,0,2],[1,3,2,0]],[[1,1,2,0],[2,2,2,2],[2,2,0,2],[1,2,3,0]],[[2,1,2,0],[2,2,2,2],[2,2,1,0],[1,2,2,1]],[[1,1,2,0],[3,2,2,2],[2,2,1,0],[1,2,2,1]],[[1,1,2,0],[2,2,2,2],[3,2,1,0],[1,2,2,1]],[[1,1,2,0],[2,2,2,2],[2,2,1,0],[2,2,2,1]],[[1,1,2,0],[2,2,2,2],[2,2,1,0],[1,3,2,1]],[[1,1,2,0],[2,2,2,2],[2,2,1,0],[1,2,3,1]],[[1,1,2,0],[2,2,2,2],[2,2,1,0],[1,2,2,2]],[[2,1,2,0],[2,2,2,2],[2,2,1,1],[1,2,2,0]],[[1,1,2,0],[3,2,2,2],[2,2,1,1],[1,2,2,0]],[[1,1,2,0],[2,2,2,2],[3,2,1,1],[1,2,2,0]],[[1,1,2,0],[2,2,2,2],[2,2,1,1],[2,2,2,0]],[[1,1,2,0],[2,2,2,2],[2,2,1,1],[1,3,2,0]],[[1,1,2,0],[2,2,2,2],[2,2,1,1],[1,2,3,0]],[[2,1,2,0],[2,2,2,2],[2,2,1,2],[1,2,0,1]],[[1,1,2,0],[3,2,2,2],[2,2,1,2],[1,2,0,1]],[[1,1,2,0],[2,2,2,2],[3,2,1,2],[1,2,0,1]],[[1,1,2,0],[2,2,2,2],[2,2,1,2],[2,2,0,1]],[[1,1,2,0],[2,2,2,2],[2,2,1,2],[1,3,0,1]],[[2,1,2,0],[2,2,2,2],[2,2,1,2],[1,2,1,0]],[[1,1,2,0],[3,2,2,2],[2,2,1,2],[1,2,1,0]],[[1,1,2,0],[2,2,2,2],[3,2,1,2],[1,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,2,1,2],[2,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,2,1,2],[1,3,1,0]],[[1,2,0,1],[2,1,3,1],[3,3,2,2],[1,0,1,1]],[[1,2,0,1],[3,1,3,1],[2,3,2,2],[1,0,1,1]],[[1,3,0,1],[2,1,3,1],[2,3,2,2],[1,0,1,1]],[[2,2,0,1],[2,1,3,1],[2,3,2,2],[1,0,1,1]],[[2,1,2,0],[2,2,2,2],[2,2,2,0],[1,2,1,1]],[[1,1,2,0],[3,2,2,2],[2,2,2,0],[1,2,1,1]],[[1,1,2,0],[2,2,2,2],[3,2,2,0],[1,2,1,1]],[[1,1,2,0],[2,2,2,2],[2,2,2,0],[2,2,1,1]],[[1,1,2,0],[2,2,2,2],[2,2,2,0],[1,3,1,1]],[[2,1,2,0],[2,2,2,2],[2,2,2,1],[1,2,0,1]],[[1,1,2,0],[3,2,2,2],[2,2,2,1],[1,2,0,1]],[[1,1,2,0],[2,2,2,2],[3,2,2,1],[1,2,0,1]],[[1,1,2,0],[2,2,2,2],[2,2,2,1],[2,2,0,1]],[[1,1,2,0],[2,2,2,2],[2,2,2,1],[1,3,0,1]],[[2,1,2,0],[2,2,2,2],[2,2,2,1],[1,2,1,0]],[[1,1,2,0],[3,2,2,2],[2,2,2,1],[1,2,1,0]],[[1,1,2,0],[2,2,2,2],[3,2,2,1],[1,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,2,2,1],[2,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,2,2,1],[1,3,1,0]],[[1,2,0,1],[2,1,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,0,1],[2,1,3,1],[2,4,2,2],[0,2,1,0]],[[1,2,0,1],[2,1,3,1],[3,3,2,2],[0,2,1,0]],[[1,2,0,1],[3,1,3,1],[2,3,2,2],[0,2,1,0]],[[1,3,0,1],[2,1,3,1],[2,3,2,2],[0,2,1,0]],[[2,2,0,1],[2,1,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,0,1],[2,1,3,1],[2,3,2,2],[0,3,0,1]],[[1,2,0,1],[2,1,3,1],[2,4,2,2],[0,2,0,1]],[[1,2,0,1],[2,1,3,1],[3,3,2,2],[0,2,0,1]],[[1,2,0,1],[3,1,3,1],[2,3,2,2],[0,2,0,1]],[[1,3,0,1],[2,1,3,1],[2,3,2,2],[0,2,0,1]],[[2,2,0,1],[2,1,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,0,1],[2,1,3,1],[2,4,2,2],[0,1,2,0]],[[1,2,0,1],[2,1,3,1],[3,3,2,2],[0,1,2,0]],[[1,2,0,1],[3,1,3,1],[2,3,2,2],[0,1,2,0]],[[1,3,0,1],[2,1,3,1],[2,3,2,2],[0,1,2,0]],[[2,1,2,0],[2,2,2,2],[2,2,3,0],[1,2,1,0]],[[1,1,2,0],[3,2,2,2],[2,2,3,0],[1,2,1,0]],[[1,1,2,0],[2,2,2,2],[3,2,3,0],[1,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,2,3,0],[2,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,2,3,0],[1,3,1,0]],[[2,2,0,1],[2,1,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,0,1],[2,1,3,1],[2,4,2,2],[0,1,1,1]],[[1,2,0,1],[2,1,3,1],[3,3,2,2],[0,1,1,1]],[[1,2,0,1],[3,1,3,1],[2,3,2,2],[0,1,1,1]],[[1,3,0,1],[2,1,3,1],[2,3,2,2],[0,1,1,1]],[[2,2,0,1],[2,1,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,0,1],[2,1,3,1],[2,3,2,1],[2,2,0,1]],[[1,2,0,1],[2,1,3,1],[2,4,2,1],[1,2,0,1]],[[1,2,0,1],[2,1,3,1],[3,3,2,1],[1,2,0,1]],[[1,2,0,1],[3,1,3,1],[2,3,2,1],[1,2,0,1]],[[2,2,0,1],[2,1,3,1],[2,3,2,1],[1,2,0,1]],[[1,2,0,1],[2,1,3,1],[2,3,2,1],[2,1,1,1]],[[1,2,0,1],[2,1,3,1],[2,4,2,1],[1,1,1,1]],[[1,2,0,1],[2,1,3,1],[3,3,2,1],[1,1,1,1]],[[1,2,0,1],[3,1,3,1],[2,3,2,1],[1,1,1,1]],[[1,3,0,1],[2,1,3,1],[2,3,2,1],[1,1,1,1]],[[2,2,0,1],[2,1,3,1],[2,3,2,1],[1,1,1,1]],[[1,2,0,1],[2,1,3,1],[2,3,2,1],[2,0,2,1]],[[1,2,0,1],[2,1,3,1],[2,4,2,1],[1,0,2,1]],[[1,2,0,1],[2,1,3,1],[3,3,2,1],[1,0,2,1]],[[1,2,0,1],[3,1,3,1],[2,3,2,1],[1,0,2,1]],[[1,3,0,1],[2,1,3,1],[2,3,2,1],[1,0,2,1]],[[2,2,0,1],[2,1,3,1],[2,3,2,1],[1,0,2,1]],[[1,2,0,1],[2,1,3,1],[2,3,2,1],[0,3,1,1]],[[1,2,0,1],[2,1,3,1],[2,4,2,1],[0,2,1,1]],[[1,2,0,1],[2,1,3,1],[3,3,2,1],[0,2,1,1]],[[1,2,0,1],[3,1,3,1],[2,3,2,1],[0,2,1,1]],[[1,3,0,1],[2,1,3,1],[2,3,2,1],[0,2,1,1]],[[2,2,0,1],[2,1,3,1],[2,3,2,1],[0,2,1,1]],[[1,2,0,1],[2,1,3,1],[2,4,2,1],[0,1,2,1]],[[1,2,0,1],[2,1,3,1],[3,3,2,1],[0,1,2,1]],[[1,2,0,1],[3,1,3,1],[2,3,2,1],[0,1,2,1]],[[1,3,0,1],[2,1,3,1],[2,3,2,1],[0,1,2,1]],[[2,2,0,1],[2,1,3,1],[2,3,2,1],[0,1,2,1]],[[1,2,0,1],[2,1,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,0,1],[2,1,3,1],[2,4,1,2],[1,1,2,0]],[[1,2,0,1],[2,1,3,1],[3,3,1,2],[1,1,2,0]],[[1,2,0,1],[3,1,3,1],[2,3,1,2],[1,1,2,0]],[[1,3,0,1],[2,1,3,1],[2,3,1,2],[1,1,2,0]],[[2,2,0,1],[2,1,3,1],[2,3,1,2],[1,1,2,0]],[[1,2,0,1],[2,1,3,1],[2,3,1,2],[0,2,3,0]],[[2,1,2,0],[2,2,2,2],[2,3,0,0],[1,2,2,1]],[[1,1,2,0],[3,2,2,2],[2,3,0,0],[1,2,2,1]],[[1,1,2,0],[2,2,2,2],[3,3,0,0],[1,2,2,1]],[[1,1,2,0],[2,2,2,2],[2,3,0,0],[2,2,2,1]],[[1,1,2,0],[2,2,2,2],[2,3,0,0],[1,3,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,0,1],[0,2,2,1]],[[1,1,2,0],[3,2,2,2],[2,3,0,1],[0,2,2,1]],[[1,1,2,0],[2,2,2,2],[3,3,0,1],[0,2,2,1]],[[1,1,2,0],[2,2,2,2],[2,4,0,1],[0,2,2,1]],[[1,1,2,0],[2,2,2,2],[2,3,0,1],[0,3,2,1]],[[1,1,2,0],[2,2,2,2],[2,3,0,1],[0,2,3,1]],[[1,1,2,0],[2,2,2,2],[2,3,0,1],[0,2,2,2]],[[2,1,2,0],[2,2,2,2],[2,3,0,1],[1,1,2,1]],[[1,1,2,0],[3,2,2,2],[2,3,0,1],[1,1,2,1]],[[1,1,2,0],[2,2,2,2],[3,3,0,1],[1,1,2,1]],[[1,1,2,0],[2,2,2,2],[2,4,0,1],[1,1,2,1]],[[1,1,2,0],[2,2,2,2],[2,3,0,1],[2,1,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,0,1],[1,2,2,0]],[[1,1,2,0],[3,2,2,2],[2,3,0,1],[1,2,2,0]],[[1,1,2,0],[2,2,2,2],[3,3,0,1],[1,2,2,0]],[[1,1,2,0],[2,2,2,2],[2,3,0,1],[2,2,2,0]],[[1,1,2,0],[2,2,2,2],[2,3,0,1],[1,3,2,0]],[[2,1,2,0],[2,2,2,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,0],[3,2,2,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,0],[2,2,2,2],[3,3,0,2],[0,1,2,1]],[[1,1,2,0],[2,2,2,2],[2,4,0,2],[0,1,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,0,2],[0,2,1,1]],[[1,1,2,0],[3,2,2,2],[2,3,0,2],[0,2,1,1]],[[1,1,2,0],[2,2,2,2],[3,3,0,2],[0,2,1,1]],[[1,1,2,0],[2,2,2,2],[2,4,0,2],[0,2,1,1]],[[1,1,2,0],[2,2,2,2],[2,3,0,2],[0,3,1,1]],[[2,1,2,0],[2,2,2,2],[2,3,0,2],[0,2,2,0]],[[1,1,2,0],[3,2,2,2],[2,3,0,2],[0,2,2,0]],[[1,1,2,0],[2,2,2,2],[3,3,0,2],[0,2,2,0]],[[1,1,2,0],[2,2,2,2],[2,4,0,2],[0,2,2,0]],[[1,1,2,0],[2,2,2,2],[2,3,0,2],[0,3,2,0]],[[1,1,2,0],[2,2,2,2],[2,3,0,2],[0,2,3,0]],[[2,1,2,0],[2,2,2,2],[2,3,0,2],[1,0,2,1]],[[1,1,2,0],[3,2,2,2],[2,3,0,2],[1,0,2,1]],[[1,1,2,0],[2,2,2,2],[3,3,0,2],[1,0,2,1]],[[1,1,2,0],[2,2,2,2],[2,4,0,2],[1,0,2,1]],[[1,1,2,0],[2,2,2,2],[2,3,0,2],[2,0,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,0,2],[1,1,1,1]],[[1,1,2,0],[3,2,2,2],[2,3,0,2],[1,1,1,1]],[[1,1,2,0],[2,2,2,2],[3,3,0,2],[1,1,1,1]],[[1,1,2,0],[2,2,2,2],[2,4,0,2],[1,1,1,1]],[[1,1,2,0],[2,2,2,2],[2,3,0,2],[2,1,1,1]],[[2,1,2,0],[2,2,2,2],[2,3,0,2],[1,1,2,0]],[[1,1,2,0],[3,2,2,2],[2,3,0,2],[1,1,2,0]],[[1,1,2,0],[2,2,2,2],[3,3,0,2],[1,1,2,0]],[[1,1,2,0],[2,2,2,2],[2,4,0,2],[1,1,2,0]],[[1,1,2,0],[2,2,2,2],[2,3,0,2],[2,1,2,0]],[[1,2,0,1],[2,1,3,1],[2,3,1,2],[0,3,2,0]],[[1,2,0,1],[2,1,3,1],[2,4,1,2],[0,2,2,0]],[[1,2,0,1],[2,1,3,1],[3,3,1,2],[0,2,2,0]],[[1,2,0,1],[3,1,3,1],[2,3,1,2],[0,2,2,0]],[[1,3,0,1],[2,1,3,1],[2,3,1,2],[0,2,2,0]],[[2,2,0,1],[2,1,3,1],[2,3,1,2],[0,2,2,0]],[[2,1,2,0],[2,2,2,2],[2,3,1,0],[0,2,2,1]],[[1,1,2,0],[3,2,2,2],[2,3,1,0],[0,2,2,1]],[[1,1,2,0],[2,2,2,2],[3,3,1,0],[0,2,2,1]],[[1,1,2,0],[2,2,2,2],[2,4,1,0],[0,2,2,1]],[[1,1,2,0],[2,2,2,2],[2,3,1,0],[0,3,2,1]],[[1,1,2,0],[2,2,2,2],[2,3,1,0],[0,2,3,1]],[[1,1,2,0],[2,2,2,2],[2,3,1,0],[0,2,2,2]],[[2,1,2,0],[2,2,2,2],[2,3,1,0],[1,1,2,1]],[[1,1,2,0],[3,2,2,2],[2,3,1,0],[1,1,2,1]],[[1,1,2,0],[2,2,2,2],[3,3,1,0],[1,1,2,1]],[[1,1,2,0],[2,2,2,2],[2,4,1,0],[1,1,2,1]],[[1,1,2,0],[2,2,2,2],[2,3,1,0],[2,1,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,1,1],[0,2,2,0]],[[1,1,2,0],[3,2,2,2],[2,3,1,1],[0,2,2,0]],[[1,1,2,0],[2,2,2,2],[3,3,1,1],[0,2,2,0]],[[1,1,2,0],[2,2,2,2],[2,4,1,1],[0,2,2,0]],[[1,1,2,0],[2,2,2,2],[2,3,1,1],[0,3,2,0]],[[1,1,2,0],[2,2,2,2],[2,3,1,1],[0,2,3,0]],[[2,1,2,0],[2,2,2,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,0],[3,2,2,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,0],[2,2,2,2],[3,3,1,1],[1,1,2,0]],[[1,1,2,0],[2,2,2,2],[2,4,1,1],[1,1,2,0]],[[1,1,2,0],[2,2,2,2],[2,3,1,1],[2,1,2,0]],[[1,2,0,1],[2,1,3,1],[2,3,1,1],[2,1,2,1]],[[1,2,0,1],[2,1,3,1],[2,4,1,1],[1,1,2,1]],[[1,2,0,1],[2,1,3,1],[3,3,1,1],[1,1,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,1,2],[0,1,1,1]],[[1,1,2,0],[3,2,2,2],[2,3,1,2],[0,1,1,1]],[[1,1,2,0],[2,2,2,2],[3,3,1,2],[0,1,1,1]],[[1,1,2,0],[2,2,2,2],[2,4,1,2],[0,1,1,1]],[[2,1,2,0],[2,2,2,2],[2,3,1,2],[0,1,2,0]],[[1,1,2,0],[3,2,2,2],[2,3,1,2],[0,1,2,0]],[[1,1,2,0],[2,2,2,2],[3,3,1,2],[0,1,2,0]],[[1,1,2,0],[2,2,2,2],[2,4,1,2],[0,1,2,0]],[[2,1,2,0],[2,2,2,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,0],[3,2,2,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,0],[2,2,2,2],[3,3,1,2],[0,2,0,1]],[[1,1,2,0],[2,2,2,2],[2,4,1,2],[0,2,0,1]],[[1,1,2,0],[2,2,2,2],[2,3,1,2],[0,3,0,1]],[[2,1,2,0],[2,2,2,2],[2,3,1,2],[0,2,1,0]],[[1,1,2,0],[3,2,2,2],[2,3,1,2],[0,2,1,0]],[[1,1,2,0],[2,2,2,2],[3,3,1,2],[0,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,4,1,2],[0,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,3,1,2],[0,3,1,0]],[[1,2,0,1],[3,1,3,1],[2,3,1,1],[1,1,2,1]],[[1,3,0,1],[2,1,3,1],[2,3,1,1],[1,1,2,1]],[[2,2,0,1],[2,1,3,1],[2,3,1,1],[1,1,2,1]],[[1,2,0,1],[2,1,3,1],[2,3,1,1],[0,2,2,2]],[[1,2,0,1],[2,1,3,1],[2,3,1,1],[0,2,3,1]],[[1,2,0,1],[2,1,3,1],[2,3,1,1],[0,3,2,1]],[[1,2,0,1],[2,1,3,1],[2,4,1,1],[0,2,2,1]],[[1,2,0,1],[2,1,3,1],[3,3,1,1],[0,2,2,1]],[[1,2,0,1],[3,1,3,1],[2,3,1,1],[0,2,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,0],[3,2,2,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,0],[2,2,2,2],[3,3,1,2],[1,0,1,1]],[[1,1,2,0],[2,2,2,2],[2,4,1,2],[1,0,1,1]],[[1,1,2,0],[2,2,2,2],[2,3,1,2],[2,0,1,1]],[[2,1,2,0],[2,2,2,2],[2,3,1,2],[1,0,2,0]],[[1,1,2,0],[3,2,2,2],[2,3,1,2],[1,0,2,0]],[[1,1,2,0],[2,2,2,2],[3,3,1,2],[1,0,2,0]],[[1,1,2,0],[2,2,2,2],[2,4,1,2],[1,0,2,0]],[[1,1,2,0],[2,2,2,2],[2,3,1,2],[2,0,2,0]],[[2,1,2,0],[2,2,2,2],[2,3,1,2],[1,1,0,1]],[[1,1,2,0],[3,2,2,2],[2,3,1,2],[1,1,0,1]],[[1,1,2,0],[2,2,2,2],[3,3,1,2],[1,1,0,1]],[[1,1,2,0],[2,2,2,2],[2,4,1,2],[1,1,0,1]],[[1,1,2,0],[2,2,2,2],[2,3,1,2],[2,1,0,1]],[[2,1,2,0],[2,2,2,2],[2,3,1,2],[1,1,1,0]],[[1,1,2,0],[3,2,2,2],[2,3,1,2],[1,1,1,0]],[[1,1,2,0],[2,2,2,2],[3,3,1,2],[1,1,1,0]],[[1,1,2,0],[2,2,2,2],[2,4,1,2],[1,1,1,0]],[[1,1,2,0],[2,2,2,2],[2,3,1,2],[2,1,1,0]],[[1,3,0,1],[2,1,3,1],[2,3,1,1],[0,2,2,1]],[[2,2,0,1],[2,1,3,1],[2,3,1,1],[0,2,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,0],[3,2,2,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,0],[2,2,2,2],[3,3,1,2],[1,2,0,0]],[[1,1,2,0],[2,2,2,2],[2,4,1,2],[1,2,0,0]],[[1,1,2,0],[2,2,2,2],[2,3,1,2],[2,2,0,0]],[[1,2,0,1],[2,1,3,1],[2,3,0,2],[1,3,2,0]],[[1,2,0,1],[2,1,3,1],[2,3,0,2],[2,2,2,0]],[[1,2,0,1],[2,1,3,1],[3,3,0,2],[1,2,2,0]],[[1,2,0,1],[3,1,3,1],[2,3,0,2],[1,2,2,0]],[[2,2,0,1],[2,1,3,1],[2,3,0,2],[1,2,2,0]],[[1,2,0,1],[2,1,3,1],[2,3,0,2],[2,1,2,1]],[[1,2,0,1],[2,1,3,1],[2,4,0,2],[1,1,2,1]],[[1,2,0,1],[2,1,3,1],[3,3,0,2],[1,1,2,1]],[[1,2,0,1],[3,1,3,1],[2,3,0,2],[1,1,2,1]],[[1,3,0,1],[2,1,3,1],[2,3,0,2],[1,1,2,1]],[[2,2,0,1],[2,1,3,1],[2,3,0,2],[1,1,2,1]],[[1,2,0,1],[2,1,3,1],[2,3,0,2],[0,2,2,2]],[[1,2,0,1],[2,1,3,1],[2,3,0,2],[0,2,3,1]],[[1,2,0,1],[2,1,3,1],[2,3,0,2],[0,3,2,1]],[[1,2,0,1],[2,1,3,1],[2,3,0,3],[0,2,2,1]],[[1,2,0,1],[2,1,3,1],[2,4,0,2],[0,2,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,0],[3,2,2,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,0],[2,2,2,2],[3,3,2,0],[0,1,2,1]],[[1,1,2,0],[2,2,2,2],[2,4,2,0],[0,1,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,2,0],[0,2,1,1]],[[1,1,2,0],[3,2,2,2],[2,3,2,0],[0,2,1,1]],[[1,1,2,0],[2,2,2,2],[3,3,2,0],[0,2,1,1]],[[1,1,2,0],[2,2,2,2],[2,4,2,0],[0,2,1,1]],[[1,1,2,0],[2,2,2,2],[2,3,2,0],[0,3,1,1]],[[2,1,2,0],[2,2,2,2],[2,3,2,0],[1,0,2,1]],[[1,1,2,0],[3,2,2,2],[2,3,2,0],[1,0,2,1]],[[1,1,2,0],[2,2,2,2],[3,3,2,0],[1,0,2,1]],[[1,1,2,0],[2,2,2,2],[2,4,2,0],[1,0,2,1]],[[1,1,2,0],[2,2,2,2],[2,3,2,0],[2,0,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,2,0],[1,1,1,1]],[[1,1,2,0],[3,2,2,2],[2,3,2,0],[1,1,1,1]],[[1,1,2,0],[2,2,2,2],[3,3,2,0],[1,1,1,1]],[[1,1,2,0],[2,2,2,2],[2,4,2,0],[1,1,1,1]],[[1,1,2,0],[2,2,2,2],[2,3,2,0],[2,1,1,1]],[[2,1,2,0],[2,2,2,2],[2,3,2,0],[1,2,0,1]],[[1,1,2,0],[3,2,2,2],[2,3,2,0],[1,2,0,1]],[[1,1,2,0],[2,2,2,2],[3,3,2,0],[1,2,0,1]],[[1,1,2,0],[2,2,2,2],[2,4,2,0],[1,2,0,1]],[[1,1,2,0],[2,2,2,2],[2,3,2,0],[2,2,0,1]],[[1,2,0,1],[2,1,3,1],[3,3,0,2],[0,2,2,1]],[[1,2,0,1],[3,1,3,1],[2,3,0,2],[0,2,2,1]],[[1,3,0,1],[2,1,3,1],[2,3,0,2],[0,2,2,1]],[[2,2,0,1],[2,1,3,1],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[2,1,3,1],[2,3,0,1],[1,3,2,1]],[[1,2,0,1],[2,1,3,1],[2,3,0,1],[2,2,2,1]],[[1,2,0,1],[2,1,3,1],[3,3,0,1],[1,2,2,1]],[[1,2,0,1],[3,1,3,1],[2,3,0,1],[1,2,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,2,1],[0,1,1,1]],[[1,1,2,0],[3,2,2,2],[2,3,2,1],[0,1,1,1]],[[1,1,2,0],[2,2,2,2],[3,3,2,1],[0,1,1,1]],[[1,1,2,0],[2,2,2,2],[2,4,2,1],[0,1,1,1]],[[2,1,2,0],[2,2,2,2],[2,3,2,1],[0,1,2,0]],[[1,1,2,0],[3,2,2,2],[2,3,2,1],[0,1,2,0]],[[1,1,2,0],[2,2,2,2],[3,3,2,1],[0,1,2,0]],[[1,1,2,0],[2,2,2,2],[2,4,2,1],[0,1,2,0]],[[2,1,2,0],[2,2,2,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,0],[3,2,2,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,0],[2,2,2,2],[3,3,2,1],[0,2,0,1]],[[1,1,2,0],[2,2,2,2],[2,4,2,1],[0,2,0,1]],[[1,1,2,0],[2,2,2,2],[2,3,2,1],[0,3,0,1]],[[2,1,2,0],[2,2,2,2],[2,3,2,1],[0,2,1,0]],[[1,1,2,0],[3,2,2,2],[2,3,2,1],[0,2,1,0]],[[1,1,2,0],[2,2,2,2],[3,3,2,1],[0,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,4,2,1],[0,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,3,2,1],[0,3,1,0]],[[2,2,0,1],[2,1,3,1],[2,3,0,1],[1,2,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,2,1],[1,0,1,1]],[[1,1,2,0],[3,2,2,2],[2,3,2,1],[1,0,1,1]],[[1,1,2,0],[2,2,2,2],[3,3,2,1],[1,0,1,1]],[[1,1,2,0],[2,2,2,2],[2,4,2,1],[1,0,1,1]],[[1,1,2,0],[2,2,2,2],[2,3,2,1],[2,0,1,1]],[[2,1,2,0],[2,2,2,2],[2,3,2,1],[1,0,2,0]],[[1,1,2,0],[3,2,2,2],[2,3,2,1],[1,0,2,0]],[[1,1,2,0],[2,2,2,2],[3,3,2,1],[1,0,2,0]],[[1,1,2,0],[2,2,2,2],[2,4,2,1],[1,0,2,0]],[[1,1,2,0],[2,2,2,2],[2,3,2,1],[2,0,2,0]],[[2,1,2,0],[2,2,2,2],[2,3,2,1],[1,1,0,1]],[[1,1,2,0],[3,2,2,2],[2,3,2,1],[1,1,0,1]],[[1,1,2,0],[2,2,2,2],[3,3,2,1],[1,1,0,1]],[[1,1,2,0],[2,2,2,2],[2,4,2,1],[1,1,0,1]],[[1,1,2,0],[2,2,2,2],[2,3,2,1],[2,1,0,1]],[[2,1,2,0],[2,2,2,2],[2,3,2,1],[1,1,1,0]],[[1,1,2,0],[3,2,2,2],[2,3,2,1],[1,1,1,0]],[[1,1,2,0],[2,2,2,2],[3,3,2,1],[1,1,1,0]],[[1,1,2,0],[2,2,2,2],[2,4,2,1],[1,1,1,0]],[[1,1,2,0],[2,2,2,2],[2,3,2,1],[2,1,1,0]],[[2,1,2,0],[2,2,2,2],[2,3,2,1],[1,2,0,0]],[[1,1,2,0],[3,2,2,2],[2,3,2,1],[1,2,0,0]],[[1,1,2,0],[2,2,2,2],[3,3,2,1],[1,2,0,0]],[[1,1,2,0],[2,2,2,2],[2,4,2,1],[1,2,0,0]],[[1,1,2,0],[2,2,2,2],[2,3,2,1],[2,2,0,0]],[[1,2,0,1],[2,1,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,0,1],[2,1,3,1],[2,2,2,2],[2,2,1,0]],[[1,2,0,1],[2,1,3,1],[3,2,2,2],[1,2,1,0]],[[1,2,0,1],[3,1,3,1],[2,2,2,2],[1,2,1,0]],[[1,3,0,1],[2,1,3,1],[2,2,2,2],[1,2,1,0]],[[2,2,0,1],[2,1,3,1],[2,2,2,2],[1,2,1,0]],[[1,2,0,1],[2,1,3,1],[2,2,2,2],[1,3,0,1]],[[1,2,0,1],[2,1,3,1],[2,2,2,2],[2,2,0,1]],[[1,2,0,1],[2,1,3,1],[3,2,2,2],[1,2,0,1]],[[1,2,0,1],[3,1,3,1],[2,2,2,2],[1,2,0,1]],[[1,3,0,1],[2,1,3,1],[2,2,2,2],[1,2,0,1]],[[2,2,0,1],[2,1,3,1],[2,2,2,2],[1,2,0,1]],[[1,2,0,1],[2,1,3,1],[2,2,2,1],[1,3,1,1]],[[1,2,0,1],[2,1,3,1],[2,2,2,1],[2,2,1,1]],[[1,2,0,1],[2,1,3,1],[3,2,2,1],[1,2,1,1]],[[1,2,0,1],[3,1,3,1],[2,2,2,1],[1,2,1,1]],[[1,3,0,1],[2,1,3,1],[2,2,2,1],[1,2,1,1]],[[2,2,0,1],[2,1,3,1],[2,2,2,1],[1,2,1,1]],[[1,2,0,1],[2,1,3,1],[2,2,1,2],[1,2,3,0]],[[1,2,0,1],[2,1,3,1],[2,2,1,2],[1,3,2,0]],[[1,2,0,1],[2,1,3,1],[2,2,1,2],[2,2,2,0]],[[1,2,0,1],[2,1,3,1],[3,2,1,2],[1,2,2,0]],[[1,2,0,1],[3,1,3,1],[2,2,1,2],[1,2,2,0]],[[1,3,0,1],[2,1,3,1],[2,2,1,2],[1,2,2,0]],[[2,2,0,1],[2,1,3,1],[2,2,1,2],[1,2,2,0]],[[1,2,0,1],[2,1,3,1],[2,2,1,1],[1,2,2,2]],[[1,2,0,1],[2,1,3,1],[2,2,1,1],[1,2,3,1]],[[1,2,0,1],[2,1,3,1],[2,2,1,1],[1,3,2,1]],[[1,2,0,1],[2,1,3,1],[2,2,1,1],[2,2,2,1]],[[1,2,0,1],[2,1,3,1],[3,2,1,1],[1,2,2,1]],[[1,2,0,1],[3,1,3,1],[2,2,1,1],[1,2,2,1]],[[1,3,0,1],[2,1,3,1],[2,2,1,1],[1,2,2,1]],[[2,2,0,1],[2,1,3,1],[2,2,1,1],[1,2,2,1]],[[1,2,0,1],[2,1,3,1],[2,2,0,2],[1,2,2,2]],[[1,2,0,1],[2,1,3,1],[2,2,0,2],[1,2,3,1]],[[1,2,0,1],[2,1,3,1],[2,2,0,2],[1,3,2,1]],[[1,2,0,1],[2,1,3,1],[2,2,0,2],[2,2,2,1]],[[1,2,0,1],[2,1,3,1],[2,2,0,3],[1,2,2,1]],[[1,2,0,1],[2,1,3,1],[3,2,0,2],[1,2,2,1]],[[1,2,0,1],[3,1,3,1],[2,2,0,2],[1,2,2,1]],[[1,3,0,1],[2,1,3,1],[2,2,0,2],[1,2,2,1]],[[2,2,0,1],[2,1,3,1],[2,2,0,2],[1,2,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,3,0],[0,1,2,0]],[[1,1,2,0],[3,2,2,2],[2,3,3,0],[0,1,2,0]],[[1,1,2,0],[2,2,2,2],[3,3,3,0],[0,1,2,0]],[[1,1,2,0],[2,2,2,2],[2,4,3,0],[0,1,2,0]],[[2,1,2,0],[2,2,2,2],[2,3,3,0],[0,2,1,0]],[[1,1,2,0],[3,2,2,2],[2,3,3,0],[0,2,1,0]],[[1,1,2,0],[2,2,2,2],[3,3,3,0],[0,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,4,3,0],[0,2,1,0]],[[1,1,2,0],[2,2,2,2],[2,3,3,0],[0,3,1,0]],[[2,1,2,0],[2,2,2,2],[2,3,3,0],[1,0,2,0]],[[1,1,2,0],[3,2,2,2],[2,3,3,0],[1,0,2,0]],[[1,1,2,0],[2,2,2,2],[3,3,3,0],[1,0,2,0]],[[1,1,2,0],[2,2,2,2],[2,4,3,0],[1,0,2,0]],[[1,1,2,0],[2,2,2,2],[2,3,3,0],[2,0,2,0]],[[2,1,2,0],[2,2,2,2],[2,3,3,0],[1,1,1,0]],[[1,1,2,0],[3,2,2,2],[2,3,3,0],[1,1,1,0]],[[1,1,2,0],[2,2,2,2],[3,3,3,0],[1,1,1,0]],[[1,1,2,0],[2,2,2,2],[2,4,3,0],[1,1,1,0]],[[1,1,2,0],[2,2,2,2],[2,3,3,0],[2,1,1,0]],[[2,1,2,0],[2,2,2,2],[2,3,3,0],[1,2,0,0]],[[1,1,2,0],[3,2,2,2],[2,3,3,0],[1,2,0,0]],[[1,1,2,0],[2,2,2,2],[3,3,3,0],[1,2,0,0]],[[1,1,2,0],[2,2,2,2],[2,4,3,0],[1,2,0,0]],[[1,1,2,0],[2,2,2,2],[2,3,3,0],[2,2,0,0]],[[1,2,0,1],[2,1,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,0,1],[2,1,3,1],[2,0,3,2],[1,3,2,0]],[[1,2,0,1],[2,1,3,1],[2,0,3,2],[2,2,2,0]],[[1,2,0,1],[2,1,3,1],[2,0,3,3],[1,2,2,0]],[[1,2,0,1],[2,1,3,1],[2,0,4,2],[1,2,2,0]],[[1,2,0,1],[2,1,3,1],[3,0,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,4,1],[2,0,3,2],[1,2,2,0]],[[2,1,2,0],[2,2,2,2],[2,3,3,1],[0,2,0,0]],[[1,1,2,0],[3,2,2,2],[2,3,3,1],[0,2,0,0]],[[1,1,2,0],[2,2,2,2],[3,3,3,1],[0,2,0,0]],[[1,1,2,0],[2,2,2,2],[2,4,3,1],[0,2,0,0]],[[1,2,0,1],[3,1,3,1],[2,0,3,2],[1,2,2,0]],[[1,3,0,1],[2,1,3,1],[2,0,3,2],[1,2,2,0]],[[2,2,0,1],[2,1,3,1],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,3,1],[2,0,3,2],[1,2,1,2]],[[1,2,0,1],[2,1,3,1],[2,0,3,3],[1,2,1,1]],[[1,2,0,1],[2,1,3,1],[2,0,4,2],[1,2,1,1]],[[1,2,0,1],[2,1,4,1],[2,0,3,2],[1,2,1,1]],[[1,2,0,1],[2,1,3,1],[2,0,3,1],[1,2,2,2]],[[1,2,0,1],[2,1,3,1],[2,0,3,1],[1,2,3,1]],[[1,2,0,1],[2,1,3,1],[2,0,3,1],[1,3,2,1]],[[1,2,0,1],[2,1,3,1],[2,0,3,1],[2,2,2,1]],[[1,2,0,1],[2,1,3,1],[2,0,4,1],[1,2,2,1]],[[1,2,0,1],[2,1,3,1],[3,0,3,1],[1,2,2,1]],[[1,2,0,1],[2,1,4,1],[2,0,3,1],[1,2,2,1]],[[1,2,0,1],[3,1,3,1],[2,0,3,1],[1,2,2,1]],[[1,3,0,1],[2,1,3,1],[2,0,3,1],[1,2,2,1]],[[2,2,0,1],[2,1,3,1],[2,0,3,1],[1,2,2,1]],[[1,2,0,1],[2,1,3,1],[2,0,2,2],[1,2,2,2]],[[1,2,0,1],[2,1,3,1],[2,0,2,2],[1,2,3,1]],[[1,2,0,1],[2,1,3,1],[2,0,2,2],[1,3,2,1]],[[1,2,0,1],[2,1,3,1],[2,0,2,2],[2,2,2,1]],[[1,2,0,1],[2,1,3,1],[2,0,2,3],[1,2,2,1]],[[1,2,0,1],[2,1,3,1],[3,0,2,2],[1,2,2,1]],[[1,2,0,1],[3,1,3,1],[2,0,2,2],[1,2,2,1]],[[1,3,0,1],[2,1,3,1],[2,0,2,2],[1,2,2,1]],[[2,2,0,1],[2,1,3,1],[2,0,2,2],[1,2,2,1]],[[2,1,2,0],[2,2,2,2],[2,3,3,1],[1,1,0,0]],[[1,1,2,0],[3,2,2,2],[2,3,3,1],[1,1,0,0]],[[1,1,2,0],[2,2,2,2],[3,3,3,1],[1,1,0,0]],[[1,1,2,0],[2,2,2,2],[2,4,3,1],[1,1,0,0]],[[1,1,2,0],[2,2,2,2],[2,3,3,1],[2,1,0,0]],[[1,2,0,1],[2,1,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,0,1],[2,1,3,1],[1,3,2,2],[2,2,1,0]],[[1,2,0,1],[2,1,3,1],[1,4,2,2],[1,2,1,0]],[[1,2,0,1],[2,1,3,1],[1,3,2,2],[1,3,0,1]],[[1,2,0,1],[2,1,3,1],[1,3,2,2],[2,2,0,1]],[[1,2,0,1],[2,1,3,1],[1,4,2,2],[1,2,0,1]],[[1,2,0,1],[2,1,3,1],[1,3,2,1],[1,3,1,1]],[[1,2,0,1],[2,1,3,1],[1,3,2,1],[2,2,1,1]],[[1,2,0,1],[2,1,3,1],[1,4,2,1],[1,2,1,1]],[[1,2,0,1],[2,1,3,1],[1,3,1,2],[1,2,3,0]],[[1,2,0,1],[2,1,3,1],[1,3,1,2],[1,3,2,0]],[[1,2,0,1],[2,1,3,1],[1,3,1,2],[2,2,2,0]],[[1,2,0,1],[2,1,3,1],[1,4,1,2],[1,2,2,0]],[[1,2,0,1],[2,1,3,1],[1,3,1,1],[1,2,2,2]],[[1,2,0,1],[2,1,3,1],[1,3,1,1],[1,2,3,1]],[[1,2,0,1],[2,1,3,1],[1,3,1,1],[1,3,2,1]],[[1,2,0,1],[2,1,3,1],[1,3,1,1],[2,2,2,1]],[[1,2,0,1],[2,1,3,1],[1,4,1,1],[1,2,2,1]],[[1,2,0,1],[2,1,3,1],[1,3,0,2],[1,2,2,2]],[[1,2,0,1],[2,1,3,1],[1,3,0,2],[1,2,3,1]],[[1,2,0,1],[2,1,3,1],[1,3,0,2],[1,3,2,1]],[[1,2,0,1],[2,1,3,1],[1,3,0,2],[2,2,2,1]],[[1,2,0,1],[2,1,3,1],[1,3,0,3],[1,2,2,1]],[[1,2,0,1],[2,1,3,1],[1,4,0,2],[1,2,2,1]],[[1,2,0,1],[2,1,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,0,1],[2,1,3,0],[2,0,3,2],[1,2,3,1]],[[1,2,0,1],[2,1,3,0],[2,0,3,2],[1,3,2,1]],[[1,2,0,1],[2,1,3,0],[2,0,3,2],[2,2,2,1]],[[1,2,0,1],[2,1,3,0],[2,0,4,2],[1,2,2,1]],[[1,2,0,1],[2,1,3,0],[3,0,3,2],[1,2,2,1]],[[1,2,0,1],[3,1,3,0],[2,0,3,2],[1,2,2,1]],[[2,2,0,1],[2,1,3,0],[2,0,3,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[2,1,2,2],[2,4,3,1],[1,2,0,0]],[[1,2,0,1],[2,1,2,2],[3,3,3,1],[1,2,0,0]],[[1,2,0,1],[3,1,2,2],[2,3,3,1],[1,2,0,0]],[[1,3,0,1],[2,1,2,2],[2,3,3,1],[1,2,0,0]],[[2,2,0,1],[2,1,2,2],[2,3,3,1],[1,2,0,0]],[[1,2,0,1],[2,1,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[2,1,2,2],[2,3,4,1],[1,1,1,0]],[[1,2,0,1],[2,1,2,2],[2,4,3,1],[1,1,1,0]],[[1,2,0,1],[2,1,2,2],[3,3,3,1],[1,1,1,0]],[[1,2,0,1],[3,1,2,2],[2,3,3,1],[1,1,1,0]],[[1,3,0,1],[2,1,2,2],[2,3,3,1],[1,1,1,0]],[[2,2,0,1],[2,1,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,0,1],[2,1,2,2],[2,3,3,1],[2,1,0,1]],[[1,2,0,1],[2,1,2,2],[2,3,4,1],[1,1,0,1]],[[1,2,0,1],[2,1,2,2],[2,4,3,1],[1,1,0,1]],[[1,2,0,1],[2,1,2,2],[3,3,3,1],[1,1,0,1]],[[1,2,0,1],[3,1,2,2],[2,3,3,1],[1,1,0,1]],[[1,3,0,1],[2,1,2,2],[2,3,3,1],[1,1,0,1]],[[2,2,0,1],[2,1,2,2],[2,3,3,1],[1,1,0,1]],[[1,2,0,1],[2,1,2,2],[2,3,3,1],[1,0,3,0]],[[1,2,0,1],[2,1,2,2],[2,3,3,1],[2,0,2,0]],[[1,2,0,1],[2,1,2,2],[2,3,4,1],[1,0,2,0]],[[1,2,0,1],[2,1,2,2],[2,4,3,1],[1,0,2,0]],[[1,2,0,1],[2,1,2,2],[3,3,3,1],[1,0,2,0]],[[1,2,0,1],[3,1,2,2],[2,3,3,1],[1,0,2,0]],[[1,3,0,1],[2,1,2,2],[2,3,3,1],[1,0,2,0]],[[2,2,0,1],[2,1,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,0,1],[2,1,2,2],[2,3,3,1],[2,0,1,1]],[[1,2,0,1],[2,1,2,2],[2,3,4,1],[1,0,1,1]],[[1,2,0,1],[2,1,2,2],[2,4,3,1],[1,0,1,1]],[[1,2,0,1],[2,1,2,2],[3,3,3,1],[1,0,1,1]],[[1,2,0,1],[3,1,2,2],[2,3,3,1],[1,0,1,1]],[[1,3,0,1],[2,1,2,2],[2,3,3,1],[1,0,1,1]],[[2,2,0,1],[2,1,2,2],[2,3,3,1],[1,0,1,1]],[[1,2,0,1],[2,1,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[2,1,2,2],[2,3,4,1],[0,2,1,0]],[[1,2,0,1],[2,1,2,2],[2,4,3,1],[0,2,1,0]],[[1,2,0,1],[2,1,2,2],[3,3,3,1],[0,2,1,0]],[[1,2,0,1],[3,1,2,2],[2,3,3,1],[0,2,1,0]],[[1,3,0,1],[2,1,2,2],[2,3,3,1],[0,2,1,0]],[[2,2,0,1],[2,1,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,0,1],[2,1,2,2],[2,3,3,1],[0,3,0,1]],[[1,2,0,1],[2,1,2,2],[2,3,4,1],[0,2,0,1]],[[1,2,0,1],[2,1,2,2],[2,4,3,1],[0,2,0,1]],[[1,2,0,1],[2,1,2,2],[3,3,3,1],[0,2,0,1]],[[1,2,0,1],[3,1,2,2],[2,3,3,1],[0,2,0,1]],[[1,3,0,1],[2,1,2,2],[2,3,3,1],[0,2,0,1]],[[2,2,0,1],[2,1,2,2],[2,3,3,1],[0,2,0,1]],[[1,2,0,1],[2,1,2,2],[2,3,3,1],[0,1,3,0]],[[1,2,0,1],[2,1,2,2],[2,3,4,1],[0,1,2,0]],[[1,2,0,1],[2,1,2,2],[2,4,3,1],[0,1,2,0]],[[1,2,0,1],[2,1,2,2],[3,3,3,1],[0,1,2,0]],[[1,2,0,1],[3,1,2,2],[2,3,3,1],[0,1,2,0]],[[1,3,0,1],[2,1,2,2],[2,3,3,1],[0,1,2,0]],[[2,2,0,1],[2,1,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,0,1],[2,1,2,2],[2,3,4,1],[0,1,1,1]],[[1,2,0,1],[2,1,2,2],[2,4,3,1],[0,1,1,1]],[[1,2,0,1],[2,1,2,2],[3,3,3,1],[0,1,1,1]],[[1,2,0,1],[3,1,2,2],[2,3,3,1],[0,1,1,1]],[[1,3,0,1],[2,1,2,2],[2,3,3,1],[0,1,1,1]],[[2,2,0,1],[2,1,2,2],[2,3,3,1],[0,1,1,1]],[[1,2,0,1],[2,1,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[2,1,2,2],[2,4,3,0],[1,2,0,1]],[[1,2,0,1],[2,1,2,2],[3,3,3,0],[1,2,0,1]],[[1,2,0,1],[3,1,2,2],[2,3,3,0],[1,2,0,1]],[[1,3,0,1],[2,1,2,2],[2,3,3,0],[1,2,0,1]],[[2,2,0,1],[2,1,2,2],[2,3,3,0],[1,2,0,1]],[[1,2,0,1],[2,1,2,2],[2,3,3,0],[2,1,1,1]],[[1,2,0,1],[2,1,2,2],[2,3,4,0],[1,1,1,1]],[[1,2,0,1],[2,1,2,2],[2,4,3,0],[1,1,1,1]],[[1,2,0,1],[2,1,2,2],[3,3,3,0],[1,1,1,1]],[[1,2,0,1],[3,1,2,2],[2,3,3,0],[1,1,1,1]],[[1,3,0,1],[2,1,2,2],[2,3,3,0],[1,1,1,1]],[[2,2,0,1],[2,1,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,0,1],[2,1,2,2],[2,3,3,0],[1,0,2,2]],[[1,2,0,1],[2,1,2,2],[2,3,3,0],[1,0,3,1]],[[1,2,0,1],[2,1,2,2],[2,3,3,0],[2,0,2,1]],[[1,2,0,1],[2,1,2,2],[2,3,4,0],[1,0,2,1]],[[1,2,0,1],[2,1,2,2],[2,4,3,0],[1,0,2,1]],[[1,2,0,1],[2,1,2,2],[3,3,3,0],[1,0,2,1]],[[1,2,0,1],[3,1,2,2],[2,3,3,0],[1,0,2,1]],[[1,3,0,1],[2,1,2,2],[2,3,3,0],[1,0,2,1]],[[2,2,0,1],[2,1,2,2],[2,3,3,0],[1,0,2,1]],[[1,2,0,1],[2,1,2,2],[2,3,3,0],[0,3,1,1]],[[1,2,0,1],[2,1,2,2],[2,3,4,0],[0,2,1,1]],[[1,2,0,1],[2,1,2,2],[2,4,3,0],[0,2,1,1]],[[1,2,0,1],[2,1,2,2],[3,3,3,0],[0,2,1,1]],[[1,2,0,1],[3,1,2,2],[2,3,3,0],[0,2,1,1]],[[1,3,0,1],[2,1,2,2],[2,3,3,0],[0,2,1,1]],[[2,2,0,1],[2,1,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,0,1],[2,1,2,2],[2,3,3,0],[0,1,2,2]],[[1,2,0,1],[2,1,2,2],[2,3,3,0],[0,1,3,1]],[[1,2,0,1],[2,1,2,2],[2,3,4,0],[0,1,2,1]],[[1,2,0,1],[2,1,2,2],[2,4,3,0],[0,1,2,1]],[[1,2,0,1],[2,1,2,2],[3,3,3,0],[0,1,2,1]],[[1,2,0,1],[3,1,2,2],[2,3,3,0],[0,1,2,1]],[[1,3,0,1],[2,1,2,2],[2,3,3,0],[0,1,2,1]],[[2,2,0,1],[2,1,2,2],[2,3,3,0],[0,1,2,1]],[[1,2,0,1],[2,1,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[2,1,2,2],[2,4,2,1],[1,1,2,0]],[[1,2,0,1],[2,1,2,2],[3,3,2,1],[1,1,2,0]],[[1,2,0,1],[3,1,2,2],[2,3,2,1],[1,1,2,0]],[[1,3,0,1],[2,1,2,2],[2,3,2,1],[1,1,2,0]],[[2,2,0,1],[2,1,2,2],[2,3,2,1],[1,1,2,0]],[[1,2,0,1],[2,1,2,2],[2,3,2,1],[0,2,3,0]],[[1,2,0,1],[2,1,2,2],[2,3,2,1],[0,3,2,0]],[[1,2,0,1],[2,1,2,2],[2,4,2,1],[0,2,2,0]],[[1,2,0,1],[2,1,2,2],[3,3,2,1],[0,2,2,0]],[[1,2,0,1],[3,1,2,2],[2,3,2,1],[0,2,2,0]],[[1,3,0,1],[2,1,2,2],[2,3,2,1],[0,2,2,0]],[[2,2,0,1],[2,1,2,2],[2,3,2,1],[0,2,2,0]],[[1,2,0,1],[2,1,2,2],[2,3,2,0],[2,1,2,1]],[[1,2,0,1],[2,1,2,2],[2,4,2,0],[1,1,2,1]],[[1,2,0,1],[2,1,2,2],[3,3,2,0],[1,1,2,1]],[[1,2,0,1],[3,1,2,2],[2,3,2,0],[1,1,2,1]],[[1,3,0,1],[2,1,2,2],[2,3,2,0],[1,1,2,1]],[[2,2,0,1],[2,1,2,2],[2,3,2,0],[1,1,2,1]],[[1,2,0,1],[2,1,2,2],[2,3,2,0],[0,2,2,2]],[[1,2,0,1],[2,1,2,2],[2,3,2,0],[0,2,3,1]],[[1,2,0,1],[2,1,2,2],[2,3,2,0],[0,3,2,1]],[[1,2,0,1],[2,1,2,2],[2,4,2,0],[0,2,2,1]],[[1,2,0,1],[2,1,2,2],[3,3,2,0],[0,2,2,1]],[[1,2,0,1],[3,1,2,2],[2,3,2,0],[0,2,2,1]],[[1,3,0,1],[2,1,2,2],[2,3,2,0],[0,2,2,1]],[[2,2,0,1],[2,1,2,2],[2,3,2,0],[0,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,0,1],[2,1,2,2],[2,3,1,1],[2,2,2,0]],[[1,2,0,1],[2,1,2,2],[3,3,1,1],[1,2,2,0]],[[1,2,0,1],[3,1,2,2],[2,3,1,1],[1,2,2,0]],[[2,2,0,1],[2,1,2,2],[2,3,1,1],[1,2,2,0]],[[1,2,0,1],[2,1,2,2],[2,3,1,0],[1,3,2,1]],[[1,2,0,1],[2,1,2,2],[2,3,1,0],[2,2,2,1]],[[1,2,0,1],[2,1,2,2],[3,3,1,0],[1,2,2,1]],[[1,2,0,1],[3,1,2,2],[2,3,1,0],[1,2,2,1]],[[2,2,0,1],[2,1,2,2],[2,3,1,0],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,3,0,2],[2,1,2,1]],[[1,2,0,1],[2,1,2,2],[2,4,0,2],[1,1,2,1]],[[1,2,0,1],[2,1,2,2],[3,3,0,2],[1,1,2,1]],[[1,2,0,1],[3,1,2,2],[2,3,0,2],[1,1,2,1]],[[1,3,0,1],[2,1,2,2],[2,3,0,2],[1,1,2,1]],[[2,2,0,1],[2,1,2,2],[2,3,0,2],[1,1,2,1]],[[1,2,0,1],[2,1,2,2],[2,3,0,2],[0,2,2,2]],[[1,2,0,1],[2,1,2,2],[2,3,0,2],[0,2,3,1]],[[1,2,0,1],[2,1,2,2],[2,3,0,2],[0,3,2,1]],[[1,2,0,1],[2,1,2,2],[2,3,0,3],[0,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,4,0,2],[0,2,2,1]],[[1,2,0,1],[2,1,2,2],[3,3,0,2],[0,2,2,1]],[[1,2,0,1],[2,1,2,3],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[3,1,2,2],[2,3,0,2],[0,2,2,1]],[[1,2,0,2],[2,1,2,2],[2,3,0,2],[0,2,2,1]],[[1,3,0,1],[2,1,2,2],[2,3,0,2],[0,2,2,1]],[[2,2,0,1],[2,1,2,2],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[2,1,2,2],[2,2,3,1],[2,2,1,0]],[[1,2,0,1],[2,1,2,2],[3,2,3,1],[1,2,1,0]],[[1,2,0,1],[3,1,2,2],[2,2,3,1],[1,2,1,0]],[[1,3,0,1],[2,1,2,2],[2,2,3,1],[1,2,1,0]],[[2,2,0,1],[2,1,2,2],[2,2,3,1],[1,2,1,0]],[[1,2,0,1],[2,1,2,2],[2,2,3,1],[1,3,0,1]],[[1,2,0,1],[2,1,2,2],[2,2,3,1],[2,2,0,1]],[[1,2,0,1],[2,1,2,2],[3,2,3,1],[1,2,0,1]],[[1,2,0,1],[3,1,2,2],[2,2,3,1],[1,2,0,1]],[[1,3,0,1],[2,1,2,2],[2,2,3,1],[1,2,0,1]],[[2,2,0,1],[2,1,2,2],[2,2,3,1],[1,2,0,1]],[[1,2,0,1],[2,1,2,2],[2,2,3,1],[0,2,3,0]],[[1,2,0,1],[2,1,2,2],[2,2,3,1],[0,3,2,0]],[[1,2,0,1],[2,1,2,2],[2,2,4,1],[0,2,2,0]],[[1,2,0,1],[2,1,2,2],[2,2,3,0],[1,3,1,1]],[[1,2,0,1],[2,1,2,2],[2,2,3,0],[2,2,1,1]],[[1,2,0,1],[2,1,2,2],[3,2,3,0],[1,2,1,1]],[[1,2,0,1],[3,1,2,2],[2,2,3,0],[1,2,1,1]],[[1,3,0,1],[2,1,2,2],[2,2,3,0],[1,2,1,1]],[[2,2,0,1],[2,1,2,2],[2,2,3,0],[1,2,1,1]],[[1,2,0,1],[2,1,2,2],[2,2,3,0],[0,2,2,2]],[[1,2,0,1],[2,1,2,2],[2,2,3,0],[0,2,3,1]],[[1,2,0,1],[2,1,2,2],[2,2,3,0],[0,3,2,1]],[[1,2,0,1],[2,1,2,2],[2,2,4,0],[0,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,0,1],[2,1,2,2],[2,2,2,1],[1,3,2,0]],[[1,2,0,1],[2,1,2,2],[2,2,2,1],[2,2,2,0]],[[1,2,0,1],[2,1,2,2],[3,2,2,1],[1,2,2,0]],[[1,2,0,1],[3,1,2,2],[2,2,2,1],[1,2,2,0]],[[1,3,0,1],[2,1,2,2],[2,2,2,1],[1,2,2,0]],[[2,2,0,1],[2,1,2,2],[2,2,2,1],[1,2,2,0]],[[1,2,0,1],[2,1,2,2],[2,2,2,0],[1,2,2,2]],[[1,2,0,1],[2,1,2,2],[2,2,2,0],[1,2,3,1]],[[1,2,0,1],[2,1,2,2],[2,2,2,0],[1,3,2,1]],[[1,2,0,1],[2,1,2,2],[2,2,2,0],[2,2,2,1]],[[1,2,0,1],[2,1,2,2],[3,2,2,0],[1,2,2,1]],[[1,2,0,1],[3,1,2,2],[2,2,2,0],[1,2,2,1]],[[1,3,0,1],[2,1,2,2],[2,2,2,0],[1,2,2,1]],[[2,2,0,1],[2,1,2,2],[2,2,2,0],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,2,0,2],[1,2,2,2]],[[1,2,0,1],[2,1,2,2],[2,2,0,2],[1,2,3,1]],[[1,2,0,1],[2,1,2,2],[2,2,0,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,2],[2,2,0,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,2,0,3],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[3,2,0,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,3],[2,2,0,2],[1,2,2,1]],[[1,2,0,1],[3,1,2,2],[2,2,0,2],[1,2,2,1]],[[1,2,0,2],[2,1,2,2],[2,2,0,2],[1,2,2,1]],[[1,3,0,1],[2,1,2,2],[2,2,0,2],[1,2,2,1]],[[2,2,0,1],[2,1,2,2],[2,2,0,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,1,3,1],[1,2,3,0]],[[1,2,0,1],[2,1,2,2],[2,1,3,1],[1,3,2,0]],[[1,2,0,1],[2,1,2,2],[2,1,3,1],[2,2,2,0]],[[1,2,0,1],[2,1,2,2],[2,1,4,1],[1,2,2,0]],[[1,2,0,1],[2,1,2,2],[3,1,3,1],[1,2,2,0]],[[1,2,0,1],[3,1,2,2],[2,1,3,1],[1,2,2,0]],[[1,3,0,1],[2,1,2,2],[2,1,3,1],[1,2,2,0]],[[2,2,0,1],[2,1,2,2],[2,1,3,1],[1,2,2,0]],[[1,2,0,1],[2,1,2,2],[2,1,3,0],[1,2,2,2]],[[1,2,0,1],[2,1,2,2],[2,1,3,0],[1,2,3,1]],[[1,2,0,1],[2,1,2,2],[2,1,3,0],[1,3,2,1]],[[1,2,0,1],[2,1,2,2],[2,1,3,0],[2,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,1,4,0],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[3,1,3,0],[1,2,2,1]],[[1,2,0,1],[3,1,2,2],[2,1,3,0],[1,2,2,1]],[[1,3,0,1],[2,1,2,2],[2,1,3,0],[1,2,2,1]],[[2,2,0,1],[2,1,2,2],[2,1,3,0],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,0,1],[2,1,2,2],[2,0,3,2],[1,3,2,0]],[[1,2,0,1],[2,1,2,2],[2,0,3,2],[2,2,2,0]],[[1,2,0,1],[2,1,2,2],[2,0,3,3],[1,2,2,0]],[[1,2,0,1],[2,1,2,2],[2,0,4,2],[1,2,2,0]],[[1,2,0,1],[2,1,2,2],[3,0,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,2,3],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[3,1,2,2],[2,0,3,2],[1,2,2,0]],[[1,2,0,2],[2,1,2,2],[2,0,3,2],[1,2,2,0]],[[1,3,0,1],[2,1,2,2],[2,0,3,2],[1,2,2,0]],[[2,2,0,1],[2,1,2,2],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,2,2],[2,0,3,2],[1,2,1,2]],[[1,2,0,1],[2,1,2,2],[2,0,3,3],[1,2,1,1]],[[1,2,0,1],[2,1,2,2],[2,0,4,2],[1,2,1,1]],[[1,2,0,1],[2,1,2,3],[2,0,3,2],[1,2,1,1]],[[1,2,0,2],[2,1,2,2],[2,0,3,2],[1,2,1,1]],[[1,2,0,1],[2,1,2,2],[2,0,3,1],[1,2,2,2]],[[1,2,0,1],[2,1,2,2],[2,0,3,1],[1,2,3,1]],[[1,2,0,1],[2,1,2,2],[2,0,3,1],[1,3,2,1]],[[1,2,0,1],[2,1,2,2],[2,0,3,1],[2,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,0,4,1],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[3,0,3,1],[1,2,2,1]],[[1,2,0,1],[3,1,2,2],[2,0,3,1],[1,2,2,1]],[[1,3,0,1],[2,1,2,2],[2,0,3,1],[1,2,2,1]],[[2,2,0,1],[2,1,2,2],[2,0,3,1],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,0,2,2],[1,2,2,2]],[[1,2,0,1],[2,1,2,2],[2,0,2,2],[1,2,3,1]],[[1,2,0,1],[2,1,2,2],[2,0,2,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,2],[2,0,2,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,2],[2,0,2,3],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[3,0,2,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,3],[2,0,2,2],[1,2,2,1]],[[1,2,0,1],[3,1,2,2],[2,0,2,2],[1,2,2,1]],[[1,2,0,2],[2,1,2,2],[2,0,2,2],[1,2,2,1]],[[1,3,0,1],[2,1,2,2],[2,0,2,2],[1,2,2,1]],[[2,2,0,1],[2,1,2,2],[2,0,2,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,1,2,2],[1,3,3,1],[2,2,1,0]],[[1,2,0,1],[2,1,2,2],[1,3,4,1],[1,2,1,0]],[[1,2,0,1],[2,1,2,2],[1,4,3,1],[1,2,1,0]],[[1,2,0,1],[2,1,2,2],[1,3,3,1],[1,3,0,1]],[[1,2,0,1],[2,1,2,2],[1,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,1,2,2],[1,3,4,1],[1,2,0,1]],[[1,2,0,1],[2,1,2,2],[1,4,3,1],[1,2,0,1]],[[1,2,0,1],[2,1,2,2],[1,3,3,1],[1,1,3,0]],[[1,2,0,1],[2,1,2,2],[1,3,4,1],[1,1,2,0]],[[1,2,0,1],[2,1,2,2],[1,4,3,1],[1,1,2,0]],[[1,2,0,1],[2,1,2,2],[1,3,3,0],[1,3,1,1]],[[1,2,0,1],[2,1,2,2],[1,3,3,0],[2,2,1,1]],[[1,2,0,1],[2,1,2,2],[1,3,4,0],[1,2,1,1]],[[1,2,0,1],[2,1,2,2],[1,4,3,0],[1,2,1,1]],[[1,2,0,1],[2,1,2,2],[1,3,3,0],[1,1,2,2]],[[1,2,0,1],[2,1,2,2],[1,3,3,0],[1,1,3,1]],[[1,2,0,1],[2,1,2,2],[1,3,4,0],[1,1,2,1]],[[1,2,0,1],[2,1,2,2],[1,4,3,0],[1,1,2,1]],[[1,2,0,1],[2,1,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,0,1],[2,1,2,2],[1,3,2,1],[1,3,2,0]],[[1,2,0,1],[2,1,2,2],[1,3,2,1],[2,2,2,0]],[[1,2,0,1],[2,1,2,2],[1,4,2,1],[1,2,2,0]],[[1,2,0,1],[2,1,2,2],[1,3,2,0],[1,2,2,2]],[[1,2,0,1],[2,1,2,2],[1,3,2,0],[1,2,3,1]],[[1,2,0,1],[2,1,2,2],[1,3,2,0],[1,3,2,1]],[[1,2,0,1],[2,1,2,2],[1,3,2,0],[2,2,2,1]],[[1,2,0,1],[2,1,2,2],[1,4,2,0],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[1,3,0,2],[1,2,2,2]],[[1,2,0,1],[2,1,2,2],[1,3,0,2],[1,2,3,1]],[[1,2,0,1],[2,1,2,2],[1,3,0,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,2],[1,3,0,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,2],[1,3,0,3],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[1,4,0,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,3],[1,3,0,2],[1,2,2,1]],[[1,2,0,2],[2,1,2,2],[1,3,0,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,2],[1,2,3,1],[1,2,3,0]],[[1,2,0,1],[2,1,2,2],[1,2,3,1],[1,3,2,0]],[[1,2,0,1],[2,1,2,2],[1,2,3,1],[2,2,2,0]],[[1,2,0,1],[2,1,2,2],[1,2,4,1],[1,2,2,0]],[[1,2,0,1],[2,1,2,2],[1,2,3,0],[1,2,2,2]],[[1,2,0,1],[2,1,2,2],[1,2,3,0],[1,2,3,1]],[[1,2,0,1],[2,1,2,2],[1,2,3,0],[1,3,2,1]],[[1,2,0,1],[2,1,2,2],[1,2,3,0],[2,2,2,1]],[[1,2,0,1],[2,1,2,2],[1,2,4,0],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[2,1,2,1],[2,4,3,2],[1,2,0,0]],[[1,2,0,1],[2,1,2,1],[3,3,3,2],[1,2,0,0]],[[1,2,0,1],[3,1,2,1],[2,3,3,2],[1,2,0,0]],[[1,3,0,1],[2,1,2,1],[2,3,3,2],[1,2,0,0]],[[2,2,0,1],[2,1,2,1],[2,3,3,2],[1,2,0,0]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[2,1,2,1],[2,3,3,3],[1,1,1,0]],[[1,2,0,1],[2,1,2,1],[2,3,4,2],[1,1,1,0]],[[1,2,0,1],[2,1,2,1],[2,4,3,2],[1,1,1,0]],[[1,2,0,1],[2,1,2,1],[3,3,3,2],[1,1,1,0]],[[1,2,0,1],[3,1,2,1],[2,3,3,2],[1,1,1,0]],[[1,3,0,1],[2,1,2,1],[2,3,3,2],[1,1,1,0]],[[2,2,0,1],[2,1,2,1],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[1,1,0,2]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[2,1,0,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,3],[1,1,0,1]],[[1,2,0,1],[2,1,2,1],[2,3,4,2],[1,1,0,1]],[[1,2,0,1],[2,1,2,1],[2,4,3,2],[1,1,0,1]],[[1,2,0,1],[2,1,2,1],[3,3,3,2],[1,1,0,1]],[[1,2,0,1],[3,1,2,1],[2,3,3,2],[1,1,0,1]],[[1,3,0,1],[2,1,2,1],[2,3,3,2],[1,1,0,1]],[[2,2,0,1],[2,1,2,1],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[1,0,3,0]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[2,0,2,0]],[[1,2,0,1],[2,1,2,1],[2,3,3,3],[1,0,2,0]],[[1,2,0,1],[2,1,2,1],[2,3,4,2],[1,0,2,0]],[[1,2,0,1],[2,1,2,1],[2,4,3,2],[1,0,2,0]],[[1,2,0,1],[2,1,2,1],[3,3,3,2],[1,0,2,0]],[[1,2,0,1],[3,1,2,1],[2,3,3,2],[1,0,2,0]],[[1,3,0,1],[2,1,2,1],[2,3,3,2],[1,0,2,0]],[[2,2,0,1],[2,1,2,1],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[1,0,1,2]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[2,0,1,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,3],[1,0,1,1]],[[1,2,0,1],[2,1,2,1],[2,3,4,2],[1,0,1,1]],[[1,2,0,1],[2,1,2,1],[2,4,3,2],[1,0,1,1]],[[1,2,0,1],[2,1,2,1],[3,3,3,2],[1,0,1,1]],[[1,2,0,1],[3,1,2,1],[2,3,3,2],[1,0,1,1]],[[1,3,0,1],[2,1,2,1],[2,3,3,2],[1,0,1,1]],[[2,2,0,1],[2,1,2,1],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,1,2,1],[2,3,3,3],[0,2,1,0]],[[1,2,0,1],[2,1,2,1],[2,3,4,2],[0,2,1,0]],[[1,2,0,1],[2,1,2,1],[2,4,3,2],[0,2,1,0]],[[1,2,0,1],[2,1,2,1],[3,3,3,2],[0,2,1,0]],[[1,2,0,1],[3,1,2,1],[2,3,3,2],[0,2,1,0]],[[1,3,0,1],[2,1,2,1],[2,3,3,2],[0,2,1,0]],[[2,2,0,1],[2,1,2,1],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[0,2,0,2]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[0,3,0,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,3],[0,2,0,1]],[[1,2,0,1],[2,1,2,1],[2,3,4,2],[0,2,0,1]],[[1,2,0,1],[2,1,2,1],[2,4,3,2],[0,2,0,1]],[[1,2,0,1],[2,1,2,1],[3,3,3,2],[0,2,0,1]],[[1,2,0,1],[3,1,2,1],[2,3,3,2],[0,2,0,1]],[[1,3,0,1],[2,1,2,1],[2,3,3,2],[0,2,0,1]],[[2,2,0,1],[2,1,2,1],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[0,1,3,0]],[[1,2,0,1],[2,1,2,1],[2,3,3,3],[0,1,2,0]],[[1,2,0,1],[2,1,2,1],[2,3,4,2],[0,1,2,0]],[[1,2,0,1],[2,1,2,1],[2,4,3,2],[0,1,2,0]],[[1,2,0,1],[2,1,2,1],[3,3,3,2],[0,1,2,0]],[[1,2,0,1],[3,1,2,1],[2,3,3,2],[0,1,2,0]],[[1,3,0,1],[2,1,2,1],[2,3,3,2],[0,1,2,0]],[[2,2,0,1],[2,1,2,1],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[0,1,1,2]],[[1,2,0,1],[2,1,2,1],[2,3,3,3],[0,1,1,1]],[[1,2,0,1],[2,1,2,1],[2,3,4,2],[0,1,1,1]],[[1,2,0,1],[2,1,2,1],[2,4,3,2],[0,1,1,1]],[[1,2,0,1],[2,1,2,1],[3,3,3,2],[0,1,1,1]],[[1,2,0,1],[3,1,2,1],[2,3,3,2],[0,1,1,1]],[[1,3,0,1],[2,1,2,1],[2,3,3,2],[0,1,1,1]],[[2,2,0,1],[2,1,2,1],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,2],[0,0,2,2]],[[1,2,0,1],[2,1,2,1],[2,3,3,3],[0,0,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,4,2],[0,0,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,1,2,1],[2,4,3,1],[1,2,0,1]],[[1,2,0,1],[2,1,2,1],[3,3,3,1],[1,2,0,1]],[[1,2,0,1],[3,1,2,1],[2,3,3,1],[1,2,0,1]],[[2,2,0,1],[2,1,2,1],[2,3,3,1],[1,2,0,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[2,1,2,1],[2,3,4,1],[1,1,1,1]],[[1,2,0,1],[2,1,2,1],[2,4,3,1],[1,1,1,1]],[[1,2,0,1],[2,1,2,1],[3,3,3,1],[1,1,1,1]],[[1,2,0,1],[3,1,2,1],[2,3,3,1],[1,1,1,1]],[[1,3,0,1],[2,1,2,1],[2,3,3,1],[1,1,1,1]],[[2,2,0,1],[2,1,2,1],[2,3,3,1],[1,1,1,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,1],[1,0,2,2]],[[1,2,0,1],[2,1,2,1],[2,3,3,1],[1,0,3,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,1],[2,0,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,4,1],[1,0,2,1]],[[1,2,0,1],[2,1,2,1],[2,4,3,1],[1,0,2,1]],[[1,2,0,1],[2,1,2,1],[3,3,3,1],[1,0,2,1]],[[1,2,0,1],[3,1,2,1],[2,3,3,1],[1,0,2,1]],[[1,3,0,1],[2,1,2,1],[2,3,3,1],[1,0,2,1]],[[2,2,0,1],[2,1,2,1],[2,3,3,1],[1,0,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,1],[0,3,1,1]],[[1,2,0,1],[2,1,2,1],[2,3,4,1],[0,2,1,1]],[[1,2,0,1],[2,1,2,1],[2,4,3,1],[0,2,1,1]],[[1,2,0,1],[2,1,2,1],[3,3,3,1],[0,2,1,1]],[[1,2,0,1],[3,1,2,1],[2,3,3,1],[0,2,1,1]],[[1,3,0,1],[2,1,2,1],[2,3,3,1],[0,2,1,1]],[[2,2,0,1],[2,1,2,1],[2,3,3,1],[0,2,1,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,1],[0,1,2,2]],[[1,2,0,1],[2,1,2,1],[2,3,3,1],[0,1,3,1]],[[1,2,0,1],[2,1,2,1],[2,3,4,1],[0,1,2,1]],[[1,2,0,1],[2,1,2,1],[2,4,3,1],[0,1,2,1]],[[1,2,0,1],[2,1,2,1],[3,3,3,1],[0,1,2,1]],[[1,2,0,1],[3,1,2,1],[2,3,3,1],[0,1,2,1]],[[1,3,0,1],[2,1,2,1],[2,3,3,1],[0,1,2,1]],[[2,2,0,1],[2,1,2,1],[2,3,3,1],[0,1,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,0],[2,1,2,1]],[[1,2,0,1],[2,1,2,1],[2,4,3,0],[1,1,2,1]],[[1,2,0,1],[2,1,2,1],[3,3,3,0],[1,1,2,1]],[[1,2,0,1],[3,1,2,1],[2,3,3,0],[1,1,2,1]],[[2,2,0,1],[2,1,2,1],[2,3,3,0],[1,1,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,0],[0,2,3,1]],[[1,2,0,1],[2,1,2,1],[2,3,3,0],[0,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,4,3,0],[0,2,2,1]],[[1,2,0,1],[2,1,2,1],[3,3,3,0],[0,2,2,1]],[[1,2,0,1],[3,1,2,1],[2,3,3,0],[0,2,2,1]],[[2,2,0,1],[2,1,2,1],[2,3,3,0],[0,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,1,2,1],[2,4,2,2],[1,1,2,0]],[[1,2,0,1],[2,1,2,1],[3,3,2,2],[1,1,2,0]],[[1,2,0,1],[3,1,2,1],[2,3,2,2],[1,1,2,0]],[[1,3,0,1],[2,1,2,1],[2,3,2,2],[1,1,2,0]],[[2,2,0,1],[2,1,2,1],[2,3,2,2],[1,1,2,0]],[[1,2,0,1],[2,1,2,1],[2,3,2,2],[1,0,2,2]],[[1,2,0,1],[2,1,2,1],[2,3,2,2],[1,0,3,1]],[[1,2,0,1],[2,1,2,1],[2,3,2,3],[1,0,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,2,2],[0,2,3,0]],[[1,2,0,1],[2,1,2,1],[2,3,2,2],[0,3,2,0]],[[1,2,0,1],[2,1,2,1],[2,4,2,2],[0,2,2,0]],[[1,2,0,1],[2,1,2,1],[3,3,2,2],[0,2,2,0]],[[1,2,0,1],[3,1,2,1],[2,3,2,2],[0,2,2,0]],[[1,3,0,1],[2,1,2,1],[2,3,2,2],[0,2,2,0]],[[2,2,0,1],[2,1,2,1],[2,3,2,2],[0,2,2,0]],[[1,2,0,1],[2,1,2,1],[2,3,2,2],[0,1,2,2]],[[1,2,0,1],[2,1,2,1],[2,3,2,2],[0,1,3,1]],[[1,2,0,1],[2,1,2,1],[2,3,2,3],[0,1,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,2,1],[2,1,2,1]],[[1,2,0,1],[2,1,2,1],[2,4,2,1],[1,1,2,1]],[[1,2,0,1],[2,1,2,1],[3,3,2,1],[1,1,2,1]],[[1,2,0,1],[3,1,2,1],[2,3,2,1],[1,1,2,1]],[[1,3,0,1],[2,1,2,1],[2,3,2,1],[1,1,2,1]],[[2,2,0,1],[2,1,2,1],[2,3,2,1],[1,1,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,2,1],[0,2,2,2]],[[1,2,0,1],[2,1,2,1],[2,3,2,1],[0,2,3,1]],[[1,2,0,1],[2,1,2,1],[2,3,2,1],[0,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,4,2,1],[0,2,2,1]],[[1,2,0,1],[2,1,2,1],[3,3,2,1],[0,2,2,1]],[[1,2,0,1],[3,1,2,1],[2,3,2,1],[0,2,2,1]],[[1,3,0,1],[2,1,2,1],[2,3,2,1],[0,2,2,1]],[[2,2,0,1],[2,1,2,1],[2,3,2,1],[0,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,1,2],[1,3,2,0]],[[1,2,0,1],[2,1,2,1],[2,3,1,2],[2,2,2,0]],[[1,2,0,1],[2,1,2,1],[3,3,1,2],[1,2,2,0]],[[1,2,0,1],[3,1,2,1],[2,3,1,2],[1,2,2,0]],[[2,2,0,1],[2,1,2,1],[2,3,1,2],[1,2,2,0]],[[1,2,0,1],[2,1,2,1],[2,3,1,2],[2,1,2,1]],[[1,2,0,1],[2,1,2,1],[2,4,1,2],[1,1,2,1]],[[1,2,0,1],[2,1,2,1],[3,3,1,2],[1,1,2,1]],[[1,2,0,1],[3,1,2,1],[2,3,1,2],[1,1,2,1]],[[1,3,0,1],[2,1,2,1],[2,3,1,2],[1,1,2,1]],[[2,2,0,1],[2,1,2,1],[2,3,1,2],[1,1,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,1,2],[0,2,2,2]],[[1,2,0,1],[2,1,2,1],[2,3,1,2],[0,2,3,1]],[[1,2,0,1],[2,1,2,1],[2,3,1,2],[0,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,1,3],[0,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,4,1,2],[0,2,2,1]],[[1,2,0,1],[2,1,2,1],[3,3,1,2],[0,2,2,1]],[[1,2,0,1],[3,1,2,1],[2,3,1,2],[0,2,2,1]],[[1,3,0,1],[2,1,2,1],[2,3,1,2],[0,2,2,1]],[[2,2,0,1],[2,1,2,1],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,1,1],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,1,1],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[3,3,1,1],[1,2,2,1]],[[1,2,0,1],[3,1,2,1],[2,3,1,1],[1,2,2,1]],[[2,2,0,1],[2,1,2,1],[2,3,1,1],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,0,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,3,0,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[3,3,0,2],[1,2,2,1]],[[1,2,0,1],[3,1,2,1],[2,3,0,2],[1,2,2,1]],[[2,2,0,1],[2,1,2,1],[2,3,0,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[2,1,2,1],[2,2,3,2],[2,2,1,0]],[[1,2,0,1],[2,1,2,1],[3,2,3,2],[1,2,1,0]],[[1,2,0,1],[3,1,2,1],[2,2,3,2],[1,2,1,0]],[[1,3,0,1],[2,1,2,1],[2,2,3,2],[1,2,1,0]],[[2,2,0,1],[2,1,2,1],[2,2,3,2],[1,2,1,0]],[[1,2,0,1],[2,1,2,1],[2,2,3,2],[1,3,0,1]],[[1,2,0,1],[2,1,2,1],[2,2,3,2],[2,2,0,1]],[[1,2,0,1],[2,1,2,1],[3,2,3,2],[1,2,0,1]],[[1,2,0,1],[3,1,2,1],[2,2,3,2],[1,2,0,1]],[[1,3,0,1],[2,1,2,1],[2,2,3,2],[1,2,0,1]],[[2,2,0,1],[2,1,2,1],[2,2,3,2],[1,2,0,1]],[[1,2,0,1],[2,1,2,1],[2,2,3,2],[0,2,3,0]],[[1,2,0,1],[2,1,2,1],[2,2,3,2],[0,3,2,0]],[[1,2,0,1],[2,1,2,1],[2,2,3,3],[0,2,2,0]],[[1,2,0,1],[2,1,2,1],[2,2,4,2],[0,2,2,0]],[[1,2,0,1],[2,1,2,1],[2,2,3,2],[0,2,1,2]],[[1,2,0,1],[2,1,2,1],[2,2,3,3],[0,2,1,1]],[[1,2,0,1],[2,1,2,1],[2,2,4,2],[0,2,1,1]],[[1,2,0,1],[2,1,2,1],[2,2,3,1],[1,3,1,1]],[[1,2,0,1],[2,1,2,1],[2,2,3,1],[2,2,1,1]],[[1,2,0,1],[2,1,2,1],[3,2,3,1],[1,2,1,1]],[[1,2,0,1],[3,1,2,1],[2,2,3,1],[1,2,1,1]],[[1,3,0,1],[2,1,2,1],[2,2,3,1],[1,2,1,1]],[[2,2,0,1],[2,1,2,1],[2,2,3,1],[1,2,1,1]],[[1,2,0,1],[2,1,2,1],[2,2,3,1],[0,2,2,2]],[[1,2,0,1],[2,1,2,1],[2,2,3,1],[0,2,3,1]],[[1,2,0,1],[2,1,2,1],[2,2,3,1],[0,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,2,4,1],[0,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,2,3,0],[1,2,3,1]],[[1,2,0,1],[2,1,2,1],[2,2,3,0],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,2,3,0],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[3,2,3,0],[1,2,2,1]],[[1,2,0,1],[3,1,2,1],[2,2,3,0],[1,2,2,1]],[[2,2,0,1],[2,1,2,1],[2,2,3,0],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,2,2,2],[1,2,3,0]],[[1,2,0,1],[2,1,2,1],[2,2,2,2],[1,3,2,0]],[[1,2,0,1],[2,1,2,1],[2,2,2,2],[2,2,2,0]],[[1,2,0,1],[2,1,2,1],[3,2,2,2],[1,2,2,0]],[[1,2,0,1],[3,1,2,1],[2,2,2,2],[1,2,2,0]],[[1,3,0,1],[2,1,2,1],[2,2,2,2],[1,2,2,0]],[[2,2,0,1],[2,1,2,1],[2,2,2,2],[1,2,2,0]],[[1,2,0,1],[2,1,2,1],[2,2,2,2],[0,2,2,2]],[[1,2,0,1],[2,1,2,1],[2,2,2,2],[0,2,3,1]],[[1,2,0,1],[2,1,2,1],[2,2,2,2],[0,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,2,2,3],[0,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,2,2,1],[1,2,2,2]],[[1,2,0,1],[2,1,2,1],[2,2,2,1],[1,2,3,1]],[[1,2,0,1],[2,1,2,1],[2,2,2,1],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,2,2,1],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[3,2,2,1],[1,2,2,1]],[[1,2,0,1],[3,1,2,1],[2,2,2,1],[1,2,2,1]],[[1,3,0,1],[2,1,2,1],[2,2,2,1],[1,2,2,1]],[[2,2,0,1],[2,1,2,1],[2,2,2,1],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,2,1,2],[1,2,2,2]],[[1,2,0,1],[2,1,2,1],[2,2,1,2],[1,2,3,1]],[[1,2,0,1],[2,1,2,1],[2,2,1,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,2,1,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,2,1,3],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[3,2,1,2],[1,2,2,1]],[[1,2,0,1],[3,1,2,1],[2,2,1,2],[1,2,2,1]],[[1,3,0,1],[2,1,2,1],[2,2,1,2],[1,2,2,1]],[[2,2,0,1],[2,1,2,1],[2,2,1,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,1,3,2],[1,2,3,0]],[[1,2,0,1],[2,1,2,1],[2,1,3,2],[1,3,2,0]],[[1,2,0,1],[2,1,2,1],[2,1,3,2],[2,2,2,0]],[[1,2,0,1],[2,1,2,1],[2,1,3,3],[1,2,2,0]],[[1,2,0,1],[2,1,2,1],[2,1,4,2],[1,2,2,0]],[[1,2,0,1],[2,1,2,1],[3,1,3,2],[1,2,2,0]],[[1,2,0,1],[3,1,2,1],[2,1,3,2],[1,2,2,0]],[[1,3,0,1],[2,1,2,1],[2,1,3,2],[1,2,2,0]],[[2,2,0,1],[2,1,2,1],[2,1,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,2,1],[2,1,3,2],[1,2,1,2]],[[1,2,0,1],[2,1,2,1],[2,1,3,3],[1,2,1,1]],[[1,2,0,1],[2,1,2,1],[2,1,4,2],[1,2,1,1]],[[1,2,0,1],[2,1,2,1],[2,1,3,1],[1,2,2,2]],[[1,2,0,1],[2,1,2,1],[2,1,3,1],[1,2,3,1]],[[1,2,0,1],[2,1,2,1],[2,1,3,1],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,1,3,1],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,1,4,1],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[3,1,3,1],[1,2,2,1]],[[1,2,0,1],[3,1,2,1],[2,1,3,1],[1,2,2,1]],[[1,3,0,1],[2,1,2,1],[2,1,3,1],[1,2,2,1]],[[2,2,0,1],[2,1,2,1],[2,1,3,1],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,1,2,2],[1,2,2,2]],[[1,2,0,1],[2,1,2,1],[2,1,2,2],[1,2,3,1]],[[1,2,0,1],[2,1,2,1],[2,1,2,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[2,1,2,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[2,1,2,3],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[3,1,2,2],[1,2,2,1]],[[1,2,0,1],[3,1,2,1],[2,1,2,2],[1,2,2,1]],[[1,3,0,1],[2,1,2,1],[2,1,2,2],[1,2,2,1]],[[2,2,0,1],[2,1,2,1],[2,1,2,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,1,2,1],[1,3,3,2],[2,2,1,0]],[[1,2,0,1],[2,1,2,1],[1,3,3,3],[1,2,1,0]],[[1,2,0,1],[2,1,2,1],[1,3,4,2],[1,2,1,0]],[[1,2,0,1],[2,1,2,1],[1,4,3,2],[1,2,1,0]],[[1,2,0,1],[2,1,2,1],[1,3,3,2],[1,2,0,2]],[[1,2,0,1],[2,1,2,1],[1,3,3,2],[1,3,0,1]],[[1,2,0,1],[2,1,2,1],[1,3,3,2],[2,2,0,1]],[[1,2,0,1],[2,1,2,1],[1,3,3,3],[1,2,0,1]],[[1,2,0,1],[2,1,2,1],[1,3,4,2],[1,2,0,1]],[[1,2,0,1],[2,1,2,1],[1,4,3,2],[1,2,0,1]],[[1,2,0,1],[2,1,2,1],[1,3,3,2],[1,1,3,0]],[[1,2,0,1],[2,1,2,1],[1,3,3,3],[1,1,2,0]],[[1,2,0,1],[2,1,2,1],[1,3,4,2],[1,1,2,0]],[[1,2,0,1],[2,1,2,1],[1,4,3,2],[1,1,2,0]],[[1,2,0,1],[2,1,2,1],[1,3,3,2],[1,1,1,2]],[[1,2,0,1],[2,1,2,1],[1,3,3,3],[1,1,1,1]],[[1,2,0,1],[2,1,2,1],[1,3,4,2],[1,1,1,1]],[[1,2,0,1],[2,1,2,1],[1,4,3,2],[1,1,1,1]],[[1,2,0,1],[2,1,2,1],[1,3,3,1],[1,3,1,1]],[[1,2,0,1],[2,1,2,1],[1,3,3,1],[2,2,1,1]],[[1,2,0,1],[2,1,2,1],[1,3,4,1],[1,2,1,1]],[[1,2,0,1],[2,1,2,1],[1,4,3,1],[1,2,1,1]],[[1,2,0,1],[2,1,2,1],[1,3,3,1],[1,1,2,2]],[[1,2,0,1],[2,1,2,1],[1,3,3,1],[1,1,3,1]],[[1,2,0,1],[2,1,2,1],[1,3,4,1],[1,1,2,1]],[[1,2,0,1],[2,1,2,1],[1,4,3,1],[1,1,2,1]],[[1,2,0,1],[2,1,2,1],[1,3,3,0],[1,2,3,1]],[[1,2,0,1],[2,1,2,1],[1,3,3,0],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[1,3,3,0],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[1,4,3,0],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[1,3,2,2],[1,2,3,0]],[[1,2,0,1],[2,1,2,1],[1,3,2,2],[1,3,2,0]],[[1,2,0,1],[2,1,2,1],[1,3,2,2],[2,2,2,0]],[[1,2,0,1],[2,1,2,1],[1,4,2,2],[1,2,2,0]],[[1,2,0,1],[2,1,2,1],[1,3,2,2],[1,1,2,2]],[[1,2,0,1],[2,1,2,1],[1,3,2,2],[1,1,3,1]],[[1,2,0,1],[2,1,2,1],[1,3,2,3],[1,1,2,1]],[[1,2,0,1],[2,1,2,1],[1,3,2,1],[1,2,2,2]],[[1,2,0,1],[2,1,2,1],[1,3,2,1],[1,2,3,1]],[[1,2,0,1],[2,1,2,1],[1,3,2,1],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[1,3,2,1],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[1,4,2,1],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[1,3,1,2],[1,2,2,2]],[[1,2,0,1],[2,1,2,1],[1,3,1,2],[1,2,3,1]],[[1,2,0,1],[2,1,2,1],[1,3,1,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[1,3,1,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[1,3,1,3],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[1,4,1,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[1,2,3,2],[1,2,3,0]],[[1,2,0,1],[2,1,2,1],[1,2,3,2],[1,3,2,0]],[[1,2,0,1],[2,1,2,1],[1,2,3,2],[2,2,2,0]],[[1,2,0,1],[2,1,2,1],[1,2,3,3],[1,2,2,0]],[[1,2,0,1],[2,1,2,1],[1,2,4,2],[1,2,2,0]],[[1,2,0,1],[2,1,2,1],[1,2,3,2],[1,2,1,2]],[[1,2,0,1],[2,1,2,1],[1,2,3,3],[1,2,1,1]],[[1,2,0,1],[2,1,2,1],[1,2,4,2],[1,2,1,1]],[[1,2,0,1],[2,1,2,1],[1,2,3,1],[1,2,2,2]],[[1,2,0,1],[2,1,2,1],[1,2,3,1],[1,2,3,1]],[[1,2,0,1],[2,1,2,1],[1,2,3,1],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[1,2,3,1],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[1,2,4,1],[1,2,2,1]],[[1,2,0,1],[2,1,2,1],[1,2,2,2],[1,2,2,2]],[[1,2,0,1],[2,1,2,1],[1,2,2,2],[1,2,3,1]],[[1,2,0,1],[2,1,2,1],[1,2,2,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,1],[1,2,2,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,1],[1,2,2,3],[1,2,2,1]],[[1,2,0,1],[2,1,2,0],[2,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,1,2,0],[2,3,3,2],[2,2,1,0]],[[1,2,0,1],[2,1,2,0],[3,3,3,2],[1,2,1,0]],[[1,2,0,1],[2,1,2,0],[2,3,3,2],[2,1,1,1]],[[1,2,0,1],[2,1,2,0],[2,3,4,2],[1,1,1,1]],[[1,2,0,1],[2,1,2,0],[2,4,3,2],[1,1,1,1]],[[1,2,0,1],[2,1,2,0],[3,3,3,2],[1,1,1,1]],[[1,2,0,1],[3,1,2,0],[2,3,3,2],[1,1,1,1]],[[2,2,0,1],[2,1,2,0],[2,3,3,2],[1,1,1,1]],[[1,2,0,1],[2,1,2,0],[2,3,3,2],[1,0,2,2]],[[1,2,0,1],[2,1,2,0],[2,3,3,2],[1,0,3,1]],[[1,2,0,1],[2,1,2,0],[2,3,3,2],[2,0,2,1]],[[1,2,0,1],[2,1,2,0],[2,3,4,2],[1,0,2,1]],[[1,2,0,1],[2,1,2,0],[2,4,3,2],[1,0,2,1]],[[1,2,0,1],[2,1,2,0],[3,3,3,2],[1,0,2,1]],[[1,2,0,1],[3,1,2,0],[2,3,3,2],[1,0,2,1]],[[2,2,0,1],[2,1,2,0],[2,3,3,2],[1,0,2,1]],[[1,2,0,1],[2,1,2,0],[2,3,3,2],[0,3,1,1]],[[1,2,0,1],[2,1,2,0],[2,3,4,2],[0,2,1,1]],[[1,2,0,1],[2,1,2,0],[2,4,3,2],[0,2,1,1]],[[1,2,0,1],[2,1,2,0],[3,3,3,2],[0,2,1,1]],[[1,2,0,1],[3,1,2,0],[2,3,3,2],[0,2,1,1]],[[2,2,0,1],[2,1,2,0],[2,3,3,2],[0,2,1,1]],[[1,2,0,1],[2,1,2,0],[2,3,3,2],[0,1,2,2]],[[1,2,0,1],[2,1,2,0],[2,3,3,2],[0,1,3,1]],[[1,2,0,1],[2,1,2,0],[2,3,4,2],[0,1,2,1]],[[1,2,0,1],[2,1,2,0],[2,4,3,2],[0,1,2,1]],[[1,2,0,1],[2,1,2,0],[3,3,3,2],[0,1,2,1]],[[1,2,0,1],[3,1,2,0],[2,3,3,2],[0,1,2,1]],[[2,2,0,1],[2,1,2,0],[2,3,3,2],[0,1,2,1]],[[1,2,0,1],[2,1,2,0],[2,3,3,1],[1,3,1,1]],[[1,2,0,1],[2,1,2,0],[2,3,3,1],[2,2,1,1]],[[1,2,0,1],[2,1,2,0],[3,3,3,1],[1,2,1,1]],[[1,2,0,1],[2,1,2,0],[2,3,3,0],[1,2,3,1]],[[1,2,0,1],[2,1,2,0],[2,3,3,0],[1,3,2,1]],[[1,2,0,1],[2,1,2,0],[2,3,3,0],[2,2,2,1]],[[1,2,0,1],[2,1,2,0],[3,3,3,0],[1,2,2,1]],[[1,2,0,1],[2,1,2,0],[2,3,2,2],[1,3,2,0]],[[1,2,0,1],[2,1,2,0],[2,3,2,2],[2,2,2,0]],[[1,2,0,1],[2,1,2,0],[3,3,2,2],[1,2,2,0]],[[1,2,0,1],[2,1,2,0],[2,3,2,2],[2,1,2,1]],[[1,2,0,1],[2,1,2,0],[2,4,2,2],[1,1,2,1]],[[1,2,0,1],[2,1,2,0],[3,3,2,2],[1,1,2,1]],[[1,2,0,1],[3,1,2,0],[2,3,2,2],[1,1,2,1]],[[2,2,0,1],[2,1,2,0],[2,3,2,2],[1,1,2,1]],[[1,2,0,1],[2,1,2,0],[2,3,2,2],[0,2,2,2]],[[1,2,0,1],[2,1,2,0],[2,3,2,2],[0,2,3,1]],[[1,2,0,1],[2,1,2,0],[2,3,2,2],[0,3,2,1]],[[1,2,0,1],[2,1,2,0],[2,4,2,2],[0,2,2,1]],[[1,2,0,1],[2,1,2,0],[3,3,2,2],[0,2,2,1]],[[1,2,0,1],[3,1,2,0],[2,3,2,2],[0,2,2,1]],[[2,2,0,1],[2,1,2,0],[2,3,2,2],[0,2,2,1]],[[1,2,0,1],[2,1,2,0],[2,3,2,1],[1,2,3,1]],[[1,2,0,1],[2,1,2,0],[2,3,2,1],[1,3,2,1]],[[1,2,0,1],[2,1,2,0],[2,3,2,1],[2,2,2,1]],[[1,2,0,1],[2,1,2,0],[3,3,2,1],[1,2,2,1]],[[1,2,0,1],[2,1,2,0],[2,2,3,2],[1,3,1,1]],[[1,2,0,1],[2,1,2,0],[2,2,3,2],[2,2,1,1]],[[1,2,0,1],[2,1,2,0],[3,2,3,2],[1,2,1,1]],[[1,2,0,1],[3,1,2,0],[2,2,3,2],[1,2,1,1]],[[2,2,0,1],[2,1,2,0],[2,2,3,2],[1,2,1,1]],[[1,2,0,1],[2,1,2,0],[2,2,3,2],[0,2,2,2]],[[1,2,0,1],[2,1,2,0],[2,2,3,2],[0,2,3,1]],[[1,2,0,1],[2,1,2,0],[2,2,3,2],[0,3,2,1]],[[1,2,0,1],[2,1,2,0],[2,2,4,2],[0,2,2,1]],[[1,2,0,1],[2,1,2,0],[2,2,2,2],[1,2,2,2]],[[1,2,0,1],[2,1,2,0],[2,2,2,2],[1,2,3,1]],[[1,2,0,1],[2,1,2,0],[2,2,2,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,0],[2,2,2,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,0],[3,2,2,2],[1,2,2,1]],[[1,2,0,1],[3,1,2,0],[2,2,2,2],[1,2,2,1]],[[2,2,0,1],[2,1,2,0],[2,2,2,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,0],[2,1,3,2],[1,2,2,2]],[[1,2,0,1],[2,1,2,0],[2,1,3,2],[1,2,3,1]],[[1,2,0,1],[2,1,2,0],[2,1,3,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,0],[2,1,3,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,0],[2,1,4,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,0],[3,1,3,2],[1,2,2,1]],[[1,2,0,1],[3,1,2,0],[2,1,3,2],[1,2,2,1]],[[2,2,0,1],[2,1,2,0],[2,1,3,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,0],[1,3,3,2],[1,3,1,1]],[[1,2,0,1],[2,1,2,0],[1,3,3,2],[2,2,1,1]],[[1,2,0,1],[2,1,2,0],[1,3,4,2],[1,2,1,1]],[[1,2,0,1],[2,1,2,0],[1,4,3,2],[1,2,1,1]],[[1,2,0,1],[2,1,2,0],[1,3,3,2],[1,1,2,2]],[[1,2,0,1],[2,1,2,0],[1,3,3,2],[1,1,3,1]],[[1,2,0,1],[2,1,2,0],[1,3,4,2],[1,1,2,1]],[[1,2,0,1],[2,1,2,0],[1,4,3,2],[1,1,2,1]],[[1,2,0,1],[2,1,2,0],[1,3,2,2],[1,2,2,2]],[[1,2,0,1],[2,1,2,0],[1,3,2,2],[1,2,3,1]],[[1,2,0,1],[2,1,2,0],[1,3,2,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,0],[1,3,2,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,0],[1,4,2,2],[1,2,2,1]],[[1,2,0,1],[2,1,2,0],[1,2,3,2],[1,2,2,2]],[[1,2,0,1],[2,1,2,0],[1,2,3,2],[1,2,3,1]],[[1,2,0,1],[2,1,2,0],[1,2,3,2],[1,3,2,1]],[[1,2,0,1],[2,1,2,0],[1,2,3,2],[2,2,2,1]],[[1,2,0,1],[2,1,2,0],[1,2,4,2],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[2,1,1,2],[2,4,3,2],[1,2,0,0]],[[1,2,0,1],[2,1,1,2],[3,3,3,2],[1,2,0,0]],[[1,2,0,1],[3,1,1,2],[2,3,3,2],[1,2,0,0]],[[1,3,0,1],[2,1,1,2],[2,3,3,2],[1,2,0,0]],[[2,2,0,1],[2,1,1,2],[2,3,3,2],[1,2,0,0]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[2,1,1,2],[2,3,3,3],[1,1,1,0]],[[1,2,0,1],[2,1,1,2],[2,3,4,2],[1,1,1,0]],[[1,2,0,1],[2,1,1,2],[2,4,3,2],[1,1,1,0]],[[1,2,0,1],[2,1,1,2],[3,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,1,1,3],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[3,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,0,2],[2,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,3,0,1],[2,1,1,2],[2,3,3,2],[1,1,1,0]],[[2,2,0,1],[2,1,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[1,1,0,2]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[2,1,0,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,3],[1,1,0,1]],[[1,2,0,1],[2,1,1,2],[2,3,4,2],[1,1,0,1]],[[1,2,0,1],[2,1,1,2],[2,4,3,2],[1,1,0,1]],[[1,2,0,1],[2,1,1,2],[3,3,3,2],[1,1,0,1]],[[1,2,0,1],[2,1,1,3],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[3,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,0,2],[2,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,3,0,1],[2,1,1,2],[2,3,3,2],[1,1,0,1]],[[2,2,0,1],[2,1,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[1,0,3,0]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[2,0,2,0]],[[1,2,0,1],[2,1,1,2],[2,3,3,3],[1,0,2,0]],[[1,2,0,1],[2,1,1,2],[2,3,4,2],[1,0,2,0]],[[1,2,0,1],[2,1,1,2],[2,4,3,2],[1,0,2,0]],[[1,2,0,1],[2,1,1,2],[3,3,3,2],[1,0,2,0]],[[1,2,0,1],[2,1,1,3],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[3,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,0,2],[2,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,3,0,1],[2,1,1,2],[2,3,3,2],[1,0,2,0]],[[2,2,0,1],[2,1,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[1,0,1,2]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[2,0,1,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,3],[1,0,1,1]],[[1,2,0,1],[2,1,1,2],[2,3,4,2],[1,0,1,1]],[[1,2,0,1],[2,1,1,2],[2,4,3,2],[1,0,1,1]],[[1,2,0,1],[2,1,1,2],[3,3,3,2],[1,0,1,1]],[[1,2,0,1],[2,1,1,3],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[3,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,2,0,2],[2,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,3,0,1],[2,1,1,2],[2,3,3,2],[1,0,1,1]],[[2,2,0,1],[2,1,1,2],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,1,1,2],[2,3,3,3],[0,2,1,0]],[[1,2,0,1],[2,1,1,2],[2,3,4,2],[0,2,1,0]],[[1,2,0,1],[2,1,1,2],[2,4,3,2],[0,2,1,0]],[[1,2,0,1],[2,1,1,2],[3,3,3,2],[0,2,1,0]],[[1,2,0,1],[2,1,1,3],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[3,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,0,2],[2,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,3,0,1],[2,1,1,2],[2,3,3,2],[0,2,1,0]],[[2,2,0,1],[2,1,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[0,2,0,2]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[0,3,0,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,3],[0,2,0,1]],[[1,2,0,1],[2,1,1,2],[2,3,4,2],[0,2,0,1]],[[1,2,0,1],[2,1,1,2],[2,4,3,2],[0,2,0,1]],[[1,2,0,1],[2,1,1,2],[3,3,3,2],[0,2,0,1]],[[1,2,0,1],[2,1,1,3],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[3,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,0,2],[2,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,3,0,1],[2,1,1,2],[2,3,3,2],[0,2,0,1]],[[2,2,0,1],[2,1,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[0,1,3,0]],[[1,2,0,1],[2,1,1,2],[2,3,3,3],[0,1,2,0]],[[1,2,0,1],[2,1,1,2],[2,3,4,2],[0,1,2,0]],[[1,2,0,1],[2,1,1,2],[2,4,3,2],[0,1,2,0]],[[1,2,0,1],[2,1,1,2],[3,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,1,1,3],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[3,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,0,2],[2,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,3,0,1],[2,1,1,2],[2,3,3,2],[0,1,2,0]],[[2,2,0,1],[2,1,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[0,1,1,2]],[[1,2,0,1],[2,1,1,2],[2,3,3,3],[0,1,1,1]],[[1,2,0,1],[2,1,1,2],[2,3,4,2],[0,1,1,1]],[[1,2,0,1],[2,1,1,2],[2,4,3,2],[0,1,1,1]],[[1,2,0,1],[2,1,1,2],[3,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,1,1,3],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[3,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,0,2],[2,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,3,0,1],[2,1,1,2],[2,3,3,2],[0,1,1,1]],[[2,2,0,1],[2,1,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,2],[0,0,2,2]],[[1,2,0,1],[2,1,1,2],[2,3,3,3],[0,0,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,4,2],[0,0,2,1]],[[1,2,0,1],[2,1,1,3],[2,3,3,2],[0,0,2,1]],[[1,2,0,2],[2,1,1,2],[2,3,3,2],[0,0,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,1,1,2],[2,4,3,1],[1,2,0,1]],[[1,2,0,1],[2,1,1,2],[3,3,3,1],[1,2,0,1]],[[1,2,0,1],[3,1,1,2],[2,3,3,1],[1,2,0,1]],[[2,2,0,1],[2,1,1,2],[2,3,3,1],[1,2,0,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[2,1,1,2],[2,3,4,1],[1,1,1,1]],[[1,2,0,1],[2,1,1,2],[2,4,3,1],[1,1,1,1]],[[1,2,0,1],[2,1,1,2],[3,3,3,1],[1,1,1,1]],[[1,2,0,1],[3,1,1,2],[2,3,3,1],[1,1,1,1]],[[1,3,0,1],[2,1,1,2],[2,3,3,1],[1,1,1,1]],[[2,2,0,1],[2,1,1,2],[2,3,3,1],[1,1,1,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,1],[1,0,2,2]],[[1,2,0,1],[2,1,1,2],[2,3,3,1],[1,0,3,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,1],[2,0,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,4,1],[1,0,2,1]],[[1,2,0,1],[2,1,1,2],[2,4,3,1],[1,0,2,1]],[[1,2,0,1],[2,1,1,2],[3,3,3,1],[1,0,2,1]],[[1,2,0,1],[3,1,1,2],[2,3,3,1],[1,0,2,1]],[[1,3,0,1],[2,1,1,2],[2,3,3,1],[1,0,2,1]],[[2,2,0,1],[2,1,1,2],[2,3,3,1],[1,0,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,1],[0,3,1,1]],[[1,2,0,1],[2,1,1,2],[2,3,4,1],[0,2,1,1]],[[1,2,0,1],[2,1,1,2],[2,4,3,1],[0,2,1,1]],[[1,2,0,1],[2,1,1,2],[3,3,3,1],[0,2,1,1]],[[1,2,0,1],[3,1,1,2],[2,3,3,1],[0,2,1,1]],[[1,3,0,1],[2,1,1,2],[2,3,3,1],[0,2,1,1]],[[2,2,0,1],[2,1,1,2],[2,3,3,1],[0,2,1,1]],[[1,2,0,1],[2,1,1,2],[2,3,3,1],[0,1,2,2]],[[1,2,0,1],[2,1,1,2],[2,3,3,1],[0,1,3,1]],[[1,2,0,1],[2,1,1,2],[2,3,4,1],[0,1,2,1]],[[1,2,0,1],[2,1,1,2],[2,4,3,1],[0,1,2,1]],[[1,2,0,1],[2,1,1,2],[3,3,3,1],[0,1,2,1]],[[1,2,0,1],[3,1,1,2],[2,3,3,1],[0,1,2,1]],[[1,3,0,1],[2,1,1,2],[2,3,3,1],[0,1,2,1]],[[2,2,0,1],[2,1,1,2],[2,3,3,1],[0,1,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,1,1,2],[2,4,2,2],[1,1,2,0]],[[1,2,0,1],[2,1,1,2],[3,3,2,2],[1,1,2,0]],[[1,2,0,1],[3,1,1,2],[2,3,2,2],[1,1,2,0]],[[1,3,0,1],[2,1,1,2],[2,3,2,2],[1,1,2,0]],[[2,2,0,1],[2,1,1,2],[2,3,2,2],[1,1,2,0]],[[1,2,0,1],[2,1,1,2],[2,3,2,2],[1,0,2,2]],[[1,2,0,1],[2,1,1,2],[2,3,2,2],[1,0,3,1]],[[1,2,0,1],[2,1,1,2],[2,3,2,3],[1,0,2,1]],[[1,2,0,1],[2,1,1,3],[2,3,2,2],[1,0,2,1]],[[1,2,0,2],[2,1,1,2],[2,3,2,2],[1,0,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,2,2],[0,2,3,0]],[[1,2,0,1],[2,1,1,2],[2,3,2,2],[0,3,2,0]],[[1,2,0,1],[2,1,1,2],[2,4,2,2],[0,2,2,0]],[[1,2,0,1],[2,1,1,2],[3,3,2,2],[0,2,2,0]],[[1,2,0,1],[3,1,1,2],[2,3,2,2],[0,2,2,0]],[[1,3,0,1],[2,1,1,2],[2,3,2,2],[0,2,2,0]],[[2,2,0,1],[2,1,1,2],[2,3,2,2],[0,2,2,0]],[[1,2,0,1],[2,1,1,2],[2,3,2,2],[0,1,2,2]],[[1,2,0,1],[2,1,1,2],[2,3,2,2],[0,1,3,1]],[[1,2,0,1],[2,1,1,2],[2,3,2,3],[0,1,2,1]],[[1,2,0,1],[2,1,1,3],[2,3,2,2],[0,1,2,1]],[[1,2,0,2],[2,1,1,2],[2,3,2,2],[0,1,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,2,1],[2,1,2,1]],[[1,2,0,1],[2,1,1,2],[2,4,2,1],[1,1,2,1]],[[1,2,0,1],[2,1,1,2],[3,3,2,1],[1,1,2,1]],[[1,2,0,1],[3,1,1,2],[2,3,2,1],[1,1,2,1]],[[1,3,0,1],[2,1,1,2],[2,3,2,1],[1,1,2,1]],[[2,2,0,1],[2,1,1,2],[2,3,2,1],[1,1,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,2,1],[0,2,2,2]],[[1,2,0,1],[2,1,1,2],[2,3,2,1],[0,2,3,1]],[[1,2,0,1],[2,1,1,2],[2,3,2,1],[0,3,2,1]],[[1,2,0,1],[2,1,1,2],[2,4,2,1],[0,2,2,1]],[[1,2,0,1],[2,1,1,2],[3,3,2,1],[0,2,2,1]],[[1,2,0,1],[3,1,1,2],[2,3,2,1],[0,2,2,1]],[[1,3,0,1],[2,1,1,2],[2,3,2,1],[0,2,2,1]],[[2,2,0,1],[2,1,1,2],[2,3,2,1],[0,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,1,2],[1,3,2,0]],[[1,2,0,1],[2,1,1,2],[2,3,1,2],[2,2,2,0]],[[1,2,0,1],[2,1,1,2],[3,3,1,2],[1,2,2,0]],[[1,2,0,1],[3,1,1,2],[2,3,1,2],[1,2,2,0]],[[2,2,0,1],[2,1,1,2],[2,3,1,2],[1,2,2,0]],[[1,2,0,1],[2,1,1,2],[2,3,1,2],[2,1,2,1]],[[1,2,0,1],[2,1,1,2],[2,4,1,2],[1,1,2,1]],[[1,2,0,1],[2,1,1,2],[3,3,1,2],[1,1,2,1]],[[1,2,0,1],[3,1,1,2],[2,3,1,2],[1,1,2,1]],[[1,3,0,1],[2,1,1,2],[2,3,1,2],[1,1,2,1]],[[2,2,0,1],[2,1,1,2],[2,3,1,2],[1,1,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,1,2],[0,2,2,2]],[[1,2,0,1],[2,1,1,2],[2,3,1,2],[0,2,3,1]],[[1,2,0,1],[2,1,1,2],[2,3,1,2],[0,3,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,1,3],[0,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,4,1,2],[0,2,2,1]],[[1,2,0,1],[2,1,1,2],[3,3,1,2],[0,2,2,1]],[[1,2,0,1],[2,1,1,3],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[3,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,0,2],[2,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,3,0,1],[2,1,1,2],[2,3,1,2],[0,2,2,1]],[[2,2,0,1],[2,1,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,1,1],[1,3,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,1,1],[2,2,2,1]],[[1,2,0,1],[2,1,1,2],[3,3,1,1],[1,2,2,1]],[[1,2,0,1],[3,1,1,2],[2,3,1,1],[1,2,2,1]],[[2,2,0,1],[2,1,1,2],[2,3,1,1],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,0,2],[1,3,2,1]],[[1,2,0,1],[2,1,1,2],[2,3,0,2],[2,2,2,1]],[[1,2,0,1],[2,1,1,2],[3,3,0,2],[1,2,2,1]],[[1,2,0,1],[3,1,1,2],[2,3,0,2],[1,2,2,1]],[[2,2,0,1],[2,1,1,2],[2,3,0,2],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[2,1,1,2],[2,2,3,2],[2,2,1,0]],[[1,2,0,1],[2,1,1,2],[3,2,3,2],[1,2,1,0]],[[1,2,0,1],[3,1,1,2],[2,2,3,2],[1,2,1,0]],[[1,3,0,1],[2,1,1,2],[2,2,3,2],[1,2,1,0]],[[2,2,0,1],[2,1,1,2],[2,2,3,2],[1,2,1,0]],[[1,2,0,1],[2,1,1,2],[2,2,3,2],[1,3,0,1]],[[1,2,0,1],[2,1,1,2],[2,2,3,2],[2,2,0,1]],[[1,2,0,1],[2,1,1,2],[3,2,3,2],[1,2,0,1]],[[1,2,0,1],[3,1,1,2],[2,2,3,2],[1,2,0,1]],[[1,3,0,1],[2,1,1,2],[2,2,3,2],[1,2,0,1]],[[2,2,0,1],[2,1,1,2],[2,2,3,2],[1,2,0,1]],[[1,2,0,1],[2,1,1,2],[2,2,3,2],[0,2,3,0]],[[1,2,0,1],[2,1,1,2],[2,2,3,2],[0,3,2,0]],[[1,2,0,1],[2,1,1,2],[2,2,3,3],[0,2,2,0]],[[1,2,0,1],[2,1,1,2],[2,2,4,2],[0,2,2,0]],[[1,2,0,1],[2,1,1,3],[2,2,3,2],[0,2,2,0]],[[1,2,0,2],[2,1,1,2],[2,2,3,2],[0,2,2,0]],[[1,2,0,1],[2,1,1,2],[2,2,3,2],[0,2,1,2]],[[1,2,0,1],[2,1,1,2],[2,2,3,3],[0,2,1,1]],[[1,2,0,1],[2,1,1,2],[2,2,4,2],[0,2,1,1]],[[1,2,0,1],[2,1,1,3],[2,2,3,2],[0,2,1,1]],[[1,2,0,2],[2,1,1,2],[2,2,3,2],[0,2,1,1]],[[1,2,0,1],[2,1,1,2],[2,2,3,1],[1,3,1,1]],[[1,2,0,1],[2,1,1,2],[2,2,3,1],[2,2,1,1]],[[1,2,0,1],[2,1,1,2],[3,2,3,1],[1,2,1,1]],[[1,2,0,1],[3,1,1,2],[2,2,3,1],[1,2,1,1]],[[1,3,0,1],[2,1,1,2],[2,2,3,1],[1,2,1,1]],[[2,2,0,1],[2,1,1,2],[2,2,3,1],[1,2,1,1]],[[1,2,0,1],[2,1,1,2],[2,2,3,1],[0,2,2,2]],[[1,2,0,1],[2,1,1,2],[2,2,3,1],[0,2,3,1]],[[1,2,0,1],[2,1,1,2],[2,2,3,1],[0,3,2,1]],[[1,2,0,1],[2,1,1,2],[2,2,4,1],[0,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,2,2,2],[1,2,3,0]],[[1,2,0,1],[2,1,1,2],[2,2,2,2],[1,3,2,0]],[[1,2,0,1],[2,1,1,2],[2,2,2,2],[2,2,2,0]],[[1,2,0,1],[2,1,1,2],[3,2,2,2],[1,2,2,0]],[[1,2,0,1],[3,1,1,2],[2,2,2,2],[1,2,2,0]],[[1,3,0,1],[2,1,1,2],[2,2,2,2],[1,2,2,0]],[[2,2,0,1],[2,1,1,2],[2,2,2,2],[1,2,2,0]],[[1,2,0,1],[2,1,1,2],[2,2,2,2],[0,2,2,2]],[[1,2,0,1],[2,1,1,2],[2,2,2,2],[0,2,3,1]],[[1,2,0,1],[2,1,1,2],[2,2,2,2],[0,3,2,1]],[[1,2,0,1],[2,1,1,2],[2,2,2,3],[0,2,2,1]],[[1,2,0,1],[2,1,1,3],[2,2,2,2],[0,2,2,1]],[[1,2,0,2],[2,1,1,2],[2,2,2,2],[0,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,2,2,1],[1,2,2,2]],[[1,2,0,1],[2,1,1,2],[2,2,2,1],[1,2,3,1]],[[1,2,0,1],[2,1,1,2],[2,2,2,1],[1,3,2,1]],[[1,2,0,1],[2,1,1,2],[2,2,2,1],[2,2,2,1]],[[1,2,0,1],[2,1,1,2],[3,2,2,1],[1,2,2,1]],[[1,2,0,1],[3,1,1,2],[2,2,2,1],[1,2,2,1]],[[1,3,0,1],[2,1,1,2],[2,2,2,1],[1,2,2,1]],[[2,2,0,1],[2,1,1,2],[2,2,2,1],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,2,1,2],[1,2,2,2]],[[1,2,0,1],[2,1,1,2],[2,2,1,2],[1,2,3,1]],[[1,2,0,1],[2,1,1,2],[2,2,1,2],[1,3,2,1]],[[1,2,0,1],[2,1,1,2],[2,2,1,2],[2,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,2,1,3],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[3,2,1,2],[1,2,2,1]],[[1,2,0,1],[2,1,1,3],[2,2,1,2],[1,2,2,1]],[[1,2,0,1],[3,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,0,2],[2,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,3,0,1],[2,1,1,2],[2,2,1,2],[1,2,2,1]],[[2,2,0,1],[2,1,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,1,3,2],[1,2,3,0]],[[1,2,0,1],[2,1,1,2],[2,1,3,2],[1,3,2,0]],[[1,2,0,1],[2,1,1,2],[2,1,3,2],[2,2,2,0]],[[1,2,0,1],[2,1,1,2],[2,1,3,3],[1,2,2,0]],[[1,2,0,1],[2,1,1,2],[2,1,4,2],[1,2,2,0]],[[1,2,0,1],[2,1,1,2],[3,1,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,1,3],[2,1,3,2],[1,2,2,0]],[[1,2,0,1],[3,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,0,2],[2,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,3,0,1],[2,1,1,2],[2,1,3,2],[1,2,2,0]],[[2,2,0,1],[2,1,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,1,2],[2,1,3,2],[1,2,1,2]],[[1,2,0,1],[2,1,1,2],[2,1,3,3],[1,2,1,1]],[[1,2,0,1],[2,1,1,2],[2,1,4,2],[1,2,1,1]],[[1,2,0,1],[2,1,1,3],[2,1,3,2],[1,2,1,1]],[[1,2,0,2],[2,1,1,2],[2,1,3,2],[1,2,1,1]],[[1,2,0,1],[2,1,1,2],[2,1,3,1],[1,2,2,2]],[[1,2,0,1],[2,1,1,2],[2,1,3,1],[1,2,3,1]],[[1,2,0,1],[2,1,1,2],[2,1,3,1],[1,3,2,1]],[[1,2,0,1],[2,1,1,2],[2,1,3,1],[2,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,1,4,1],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[3,1,3,1],[1,2,2,1]],[[1,2,0,1],[3,1,1,2],[2,1,3,1],[1,2,2,1]],[[1,3,0,1],[2,1,1,2],[2,1,3,1],[1,2,2,1]],[[2,2,0,1],[2,1,1,2],[2,1,3,1],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,1,2,2],[1,2,2,2]],[[1,2,0,1],[2,1,1,2],[2,1,2,2],[1,2,3,1]],[[1,2,0,1],[2,1,1,2],[2,1,2,2],[1,3,2,1]],[[1,2,0,1],[2,1,1,2],[2,1,2,2],[2,2,2,1]],[[1,2,0,1],[2,1,1,2],[2,1,2,3],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[3,1,2,2],[1,2,2,1]],[[1,2,0,1],[2,1,1,3],[2,1,2,2],[1,2,2,1]],[[1,2,0,1],[3,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,0,2],[2,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,3,0,1],[2,1,1,2],[2,1,2,2],[1,2,2,1]],[[2,2,0,1],[2,1,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,1,1,2],[1,3,3,2],[2,2,1,0]],[[1,2,0,1],[2,1,1,2],[1,3,3,3],[1,2,1,0]],[[1,2,0,1],[2,1,1,2],[1,3,4,2],[1,2,1,0]],[[1,2,0,1],[2,1,1,2],[1,4,3,2],[1,2,1,0]],[[1,2,0,1],[2,1,1,3],[1,3,3,2],[1,2,1,0]],[[1,2,0,2],[2,1,1,2],[1,3,3,2],[1,2,1,0]],[[1,2,0,1],[2,1,1,2],[1,3,3,2],[1,2,0,2]],[[1,2,0,1],[2,1,1,2],[1,3,3,2],[1,3,0,1]],[[1,2,0,1],[2,1,1,2],[1,3,3,2],[2,2,0,1]],[[1,2,0,1],[2,1,1,2],[1,3,3,3],[1,2,0,1]],[[1,2,0,1],[2,1,1,2],[1,3,4,2],[1,2,0,1]],[[1,2,0,1],[2,1,1,2],[1,4,3,2],[1,2,0,1]],[[1,2,0,1],[2,1,1,3],[1,3,3,2],[1,2,0,1]],[[1,2,0,2],[2,1,1,2],[1,3,3,2],[1,2,0,1]],[[1,2,0,1],[2,1,1,2],[1,3,3,2],[1,1,3,0]],[[1,2,0,1],[2,1,1,2],[1,3,3,3],[1,1,2,0]],[[1,2,0,1],[2,1,1,2],[1,3,4,2],[1,1,2,0]],[[1,2,0,1],[2,1,1,2],[1,4,3,2],[1,1,2,0]],[[1,2,0,1],[2,1,1,3],[1,3,3,2],[1,1,2,0]],[[1,2,0,2],[2,1,1,2],[1,3,3,2],[1,1,2,0]],[[1,2,0,1],[2,1,1,2],[1,3,3,2],[1,1,1,2]],[[1,2,0,1],[2,1,1,2],[1,3,3,3],[1,1,1,1]],[[1,2,0,1],[2,1,1,2],[1,3,4,2],[1,1,1,1]],[[1,2,0,1],[2,1,1,2],[1,4,3,2],[1,1,1,1]],[[1,2,0,1],[2,1,1,3],[1,3,3,2],[1,1,1,1]],[[1,2,0,2],[2,1,1,2],[1,3,3,2],[1,1,1,1]],[[1,2,0,1],[2,1,1,2],[1,3,3,1],[1,3,1,1]],[[1,2,0,1],[2,1,1,2],[1,3,3,1],[2,2,1,1]],[[1,2,0,1],[2,1,1,2],[1,3,4,1],[1,2,1,1]],[[1,2,0,1],[2,1,1,2],[1,4,3,1],[1,2,1,1]],[[1,2,0,1],[2,1,1,2],[1,3,3,1],[1,1,2,2]],[[1,2,0,1],[2,1,1,2],[1,3,3,1],[1,1,3,1]],[[1,2,0,1],[2,1,1,2],[1,3,4,1],[1,1,2,1]],[[1,2,0,1],[2,1,1,2],[1,4,3,1],[1,1,2,1]],[[1,2,0,1],[2,1,1,2],[1,3,2,2],[1,2,3,0]],[[1,2,0,1],[2,1,1,2],[1,3,2,2],[1,3,2,0]],[[1,2,0,1],[2,1,1,2],[1,3,2,2],[2,2,2,0]],[[1,2,0,1],[2,1,1,2],[1,4,2,2],[1,2,2,0]],[[1,2,0,1],[2,1,1,2],[1,3,2,2],[1,1,2,2]],[[1,2,0,1],[2,1,1,2],[1,3,2,2],[1,1,3,1]],[[1,2,0,1],[2,1,1,2],[1,3,2,3],[1,1,2,1]],[[1,2,0,1],[2,1,1,3],[1,3,2,2],[1,1,2,1]],[[1,2,0,2],[2,1,1,2],[1,3,2,2],[1,1,2,1]],[[1,2,0,1],[2,1,1,2],[1,3,2,1],[1,2,2,2]],[[1,2,0,1],[2,1,1,2],[1,3,2,1],[1,2,3,1]],[[1,2,0,1],[2,1,1,2],[1,3,2,1],[1,3,2,1]],[[1,2,0,1],[2,1,1,2],[1,3,2,1],[2,2,2,1]],[[1,2,0,1],[2,1,1,2],[1,4,2,1],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[1,3,1,2],[1,2,2,2]],[[1,2,0,1],[2,1,1,2],[1,3,1,2],[1,2,3,1]],[[1,2,0,1],[2,1,1,2],[1,3,1,2],[1,3,2,1]],[[1,2,0,1],[2,1,1,2],[1,3,1,2],[2,2,2,1]],[[1,2,0,1],[2,1,1,2],[1,3,1,3],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[1,4,1,2],[1,2,2,1]],[[1,2,0,1],[2,1,1,3],[1,3,1,2],[1,2,2,1]],[[1,2,0,2],[2,1,1,2],[1,3,1,2],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[1,2,3,2],[1,2,3,0]],[[1,2,0,1],[2,1,1,2],[1,2,3,2],[1,3,2,0]],[[1,2,0,1],[2,1,1,2],[1,2,3,2],[2,2,2,0]],[[1,2,0,1],[2,1,1,2],[1,2,3,3],[1,2,2,0]],[[1,2,0,1],[2,1,1,2],[1,2,4,2],[1,2,2,0]],[[1,2,0,1],[2,1,1,3],[1,2,3,2],[1,2,2,0]],[[1,2,0,2],[2,1,1,2],[1,2,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,1,2],[1,2,3,2],[1,2,1,2]],[[1,2,0,1],[2,1,1,2],[1,2,3,3],[1,2,1,1]],[[1,2,0,1],[2,1,1,2],[1,2,4,2],[1,2,1,1]],[[1,2,0,1],[2,1,1,3],[1,2,3,2],[1,2,1,1]],[[1,2,0,2],[2,1,1,2],[1,2,3,2],[1,2,1,1]],[[1,2,0,1],[2,1,1,2],[1,2,3,1],[1,2,2,2]],[[1,2,0,1],[2,1,1,2],[1,2,3,1],[1,2,3,1]],[[1,2,0,1],[2,1,1,2],[1,2,3,1],[1,3,2,1]],[[1,2,0,1],[2,1,1,2],[1,2,3,1],[2,2,2,1]],[[1,2,0,1],[2,1,1,2],[1,2,4,1],[1,2,2,1]],[[1,2,0,1],[2,1,1,2],[1,2,2,2],[1,2,2,2]],[[1,2,0,1],[2,1,1,2],[1,2,2,2],[1,2,3,1]],[[1,2,0,1],[2,1,1,2],[1,2,2,2],[1,3,2,1]],[[1,2,0,1],[2,1,1,2],[1,2,2,2],[2,2,2,1]],[[1,2,0,1],[2,1,1,2],[1,2,2,3],[1,2,2,1]],[[1,2,0,1],[2,1,1,3],[1,2,2,2],[1,2,2,1]],[[1,2,0,2],[2,1,1,2],[1,2,2,2],[1,2,2,1]],[[1,2,0,1],[2,1,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,0,1],[2,1,1,1],[2,4,3,2],[1,1,2,0]],[[1,2,0,1],[2,1,1,1],[3,3,3,2],[1,1,2,0]],[[1,2,0,1],[3,1,1,1],[2,3,3,2],[1,1,2,0]],[[2,2,0,1],[2,1,1,1],[2,3,3,2],[1,1,2,0]],[[1,2,0,1],[2,1,1,1],[2,3,3,2],[0,2,3,0]],[[1,2,0,1],[2,1,1,1],[2,3,3,2],[0,3,2,0]],[[1,2,0,1],[2,1,1,1],[2,4,3,2],[0,2,2,0]],[[1,2,0,1],[2,1,1,1],[3,3,3,2],[0,2,2,0]],[[1,2,0,1],[3,1,1,1],[2,3,3,2],[0,2,2,0]],[[2,2,0,1],[2,1,1,1],[2,3,3,2],[0,2,2,0]],[[1,2,0,1],[2,1,1,1],[2,3,3,1],[2,1,2,1]],[[1,2,0,1],[2,1,1,1],[2,4,3,1],[1,1,2,1]],[[1,2,0,1],[2,1,1,1],[3,3,3,1],[1,1,2,1]],[[1,2,0,1],[3,1,1,1],[2,3,3,1],[1,1,2,1]],[[2,2,0,1],[2,1,1,1],[2,3,3,1],[1,1,2,1]],[[1,2,0,1],[2,1,1,1],[2,3,3,1],[0,2,2,2]],[[1,2,0,1],[2,1,1,1],[2,3,3,1],[0,2,3,1]],[[1,2,0,1],[2,1,1,1],[2,3,3,1],[0,3,2,1]],[[1,2,0,1],[2,1,1,1],[2,4,3,1],[0,2,2,1]],[[1,2,0,1],[2,1,1,1],[3,3,3,1],[0,2,2,1]],[[1,2,0,1],[3,1,1,1],[2,3,3,1],[0,2,2,1]],[[2,2,0,1],[2,1,1,1],[2,3,3,1],[0,2,2,1]],[[1,2,0,1],[2,1,1,1],[2,2,3,2],[1,2,3,0]],[[1,2,0,1],[2,1,1,1],[2,2,3,2],[1,3,2,0]],[[1,2,0,1],[2,1,1,1],[2,2,3,2],[2,2,2,0]],[[1,2,0,1],[2,1,1,1],[3,2,3,2],[1,2,2,0]],[[1,2,0,1],[3,1,1,1],[2,2,3,2],[1,2,2,0]],[[2,2,0,1],[2,1,1,1],[2,2,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,1,1],[2,2,3,1],[1,2,2,2]],[[1,2,0,1],[2,1,1,1],[2,2,3,1],[1,2,3,1]],[[1,2,0,1],[2,1,1,1],[2,2,3,1],[1,3,2,1]],[[1,2,0,1],[2,1,1,1],[2,2,3,1],[2,2,2,1]],[[1,2,0,1],[2,1,1,1],[3,2,3,1],[1,2,2,1]],[[1,2,0,1],[3,1,1,1],[2,2,3,1],[1,2,2,1]],[[2,2,0,1],[2,1,1,1],[2,2,3,1],[1,2,2,1]],[[1,2,0,1],[2,1,1,1],[1,3,3,2],[1,2,3,0]],[[1,2,0,1],[2,1,1,1],[1,3,3,2],[1,3,2,0]],[[1,2,0,1],[2,1,1,1],[1,3,3,2],[2,2,2,0]],[[1,2,0,1],[2,1,1,1],[1,4,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,1,1],[1,3,3,1],[1,2,2,2]],[[1,2,0,1],[2,1,1,1],[1,3,3,1],[1,2,3,1]],[[1,2,0,1],[2,1,1,1],[1,3,3,1],[1,3,2,1]],[[1,2,0,1],[2,1,1,1],[1,3,3,1],[2,2,2,1]],[[1,2,0,1],[2,1,1,1],[1,4,3,1],[1,2,2,1]],[[1,2,0,1],[2,1,1,0],[2,3,3,2],[1,3,2,0]],[[1,2,0,1],[2,1,1,0],[2,3,3,2],[2,2,2,0]],[[1,2,0,1],[2,1,1,0],[3,3,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,1,0],[2,3,3,2],[2,1,2,1]],[[1,2,0,1],[2,1,1,0],[2,4,3,2],[1,1,2,1]],[[1,2,0,1],[2,1,1,0],[3,3,3,2],[1,1,2,1]],[[1,2,0,1],[3,1,1,0],[2,3,3,2],[1,1,2,1]],[[2,2,0,1],[2,1,1,0],[2,3,3,2],[1,1,2,1]],[[1,2,0,1],[2,1,1,0],[2,3,3,2],[0,2,2,2]],[[1,2,0,1],[2,1,1,0],[2,3,3,2],[0,2,3,1]],[[1,2,0,1],[2,1,1,0],[2,3,3,2],[0,3,2,1]],[[1,2,0,1],[2,1,1,0],[2,4,3,2],[0,2,2,1]],[[1,2,0,1],[2,1,1,0],[3,3,3,2],[0,2,2,1]],[[1,2,0,1],[3,1,1,0],[2,3,3,2],[0,2,2,1]],[[2,2,0,1],[2,1,1,0],[2,3,3,2],[0,2,2,1]],[[1,2,0,1],[2,1,1,0],[2,3,3,1],[1,2,3,1]],[[1,2,0,1],[2,1,1,0],[2,3,3,1],[1,3,2,1]],[[1,2,0,1],[2,1,1,0],[2,3,3,1],[2,2,2,1]],[[1,2,0,1],[2,1,1,0],[3,3,3,1],[1,2,2,1]],[[1,2,0,1],[2,1,1,0],[2,2,3,2],[1,2,2,2]],[[1,2,0,1],[2,1,1,0],[2,2,3,2],[1,2,3,1]],[[1,2,0,1],[2,1,1,0],[2,2,3,2],[1,3,2,1]],[[1,2,0,1],[2,1,1,0],[2,2,3,2],[2,2,2,1]],[[1,2,0,1],[2,1,1,0],[3,2,3,2],[1,2,2,1]],[[1,2,0,1],[3,1,1,0],[2,2,3,2],[1,2,2,1]],[[2,2,0,1],[2,1,1,0],[2,2,3,2],[1,2,2,1]],[[1,2,0,1],[2,1,1,0],[1,3,3,2],[1,2,2,2]],[[1,2,0,1],[2,1,1,0],[1,3,3,2],[1,2,3,1]],[[1,2,0,1],[2,1,1,0],[1,3,3,2],[1,3,2,1]],[[1,2,0,1],[2,1,1,0],[1,3,3,2],[2,2,2,1]],[[1,2,0,1],[2,1,1,0],[1,4,3,2],[1,2,2,1]],[[1,2,0,1],[2,1,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,0,1],[2,1,0,2],[2,4,3,2],[1,1,2,0]],[[1,2,0,1],[2,1,0,2],[3,3,3,2],[1,1,2,0]],[[1,2,0,1],[3,1,0,2],[2,3,3,2],[1,1,2,0]],[[2,2,0,1],[2,1,0,2],[2,3,3,2],[1,1,2,0]],[[1,2,0,1],[2,1,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,0,1],[2,1,0,2],[2,3,3,2],[1,0,3,1]],[[1,2,0,1],[2,1,0,2],[2,3,3,3],[1,0,2,1]],[[1,2,0,1],[2,1,0,2],[2,3,3,2],[0,2,3,0]],[[1,2,0,1],[2,1,0,2],[2,3,3,2],[0,3,2,0]],[[1,2,0,1],[2,1,0,2],[2,4,3,2],[0,2,2,0]],[[1,2,0,1],[2,1,0,2],[3,3,3,2],[0,2,2,0]],[[1,2,0,1],[3,1,0,2],[2,3,3,2],[0,2,2,0]],[[2,2,0,1],[2,1,0,2],[2,3,3,2],[0,2,2,0]],[[1,2,0,1],[2,1,0,2],[2,3,3,2],[0,1,2,2]],[[1,2,0,1],[2,1,0,2],[2,3,3,2],[0,1,3,1]],[[1,2,0,1],[2,1,0,2],[2,3,3,3],[0,1,2,1]],[[1,2,0,1],[2,1,0,2],[2,3,3,1],[2,1,2,1]],[[1,2,0,1],[2,1,0,2],[2,4,3,1],[1,1,2,1]],[[1,2,0,1],[2,1,0,2],[3,3,3,1],[1,1,2,1]],[[1,2,0,1],[3,1,0,2],[2,3,3,1],[1,1,2,1]],[[2,2,0,1],[2,1,0,2],[2,3,3,1],[1,1,2,1]],[[1,2,0,1],[2,1,0,2],[2,3,3,1],[0,2,2,2]],[[1,2,0,1],[2,1,0,2],[2,3,3,1],[0,2,3,1]],[[1,2,0,1],[2,1,0,2],[2,3,3,1],[0,3,2,1]],[[1,2,0,1],[2,1,0,2],[2,4,3,1],[0,2,2,1]],[[1,2,0,1],[2,1,0,2],[3,3,3,1],[0,2,2,1]],[[1,2,0,1],[3,1,0,2],[2,3,3,1],[0,2,2,1]],[[2,2,0,1],[2,1,0,2],[2,3,3,1],[0,2,2,1]],[[1,2,0,1],[2,1,0,2],[2,3,2,2],[2,1,2,1]],[[1,2,0,1],[2,1,0,2],[2,4,2,2],[1,1,2,1]],[[1,2,0,1],[2,1,0,2],[3,3,2,2],[1,1,2,1]],[[1,2,0,1],[3,1,0,2],[2,3,2,2],[1,1,2,1]],[[2,2,0,1],[2,1,0,2],[2,3,2,2],[1,1,2,1]],[[1,2,0,1],[2,1,0,2],[2,3,2,2],[0,2,2,2]],[[1,2,0,1],[2,1,0,2],[2,3,2,2],[0,2,3,1]],[[1,2,0,1],[2,1,0,2],[2,3,2,2],[0,3,2,1]],[[1,2,0,1],[2,1,0,2],[2,3,2,3],[0,2,2,1]],[[1,2,0,1],[2,1,0,2],[2,4,2,2],[0,2,2,1]],[[1,2,0,1],[2,1,0,2],[3,3,2,2],[0,2,2,1]],[[1,2,0,1],[3,1,0,2],[2,3,2,2],[0,2,2,1]],[[2,2,0,1],[2,1,0,2],[2,3,2,2],[0,2,2,1]],[[1,2,0,1],[2,1,0,2],[2,2,3,2],[1,2,3,0]],[[1,2,0,1],[2,1,0,2],[2,2,3,2],[1,3,2,0]],[[1,2,0,1],[2,1,0,2],[2,2,3,2],[2,2,2,0]],[[1,2,0,1],[2,1,0,2],[3,2,3,2],[1,2,2,0]],[[1,2,0,1],[3,1,0,2],[2,2,3,2],[1,2,2,0]],[[2,2,0,1],[2,1,0,2],[2,2,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,0,2],[2,2,3,2],[0,2,2,2]],[[1,2,0,1],[2,1,0,2],[2,2,3,2],[0,2,3,1]],[[1,2,0,1],[2,1,0,2],[2,2,3,2],[0,3,2,1]],[[1,2,0,1],[2,1,0,2],[2,2,3,3],[0,2,2,1]],[[1,2,0,1],[2,1,0,2],[2,2,3,1],[1,2,2,2]],[[1,2,0,1],[2,1,0,2],[2,2,3,1],[1,2,3,1]],[[1,2,0,1],[2,1,0,2],[2,2,3,1],[1,3,2,1]],[[1,2,0,1],[2,1,0,2],[2,2,3,1],[2,2,2,1]],[[1,2,0,1],[2,1,0,2],[3,2,3,1],[1,2,2,1]],[[1,2,0,1],[3,1,0,2],[2,2,3,1],[1,2,2,1]],[[2,2,0,1],[2,1,0,2],[2,2,3,1],[1,2,2,1]],[[1,2,0,1],[2,1,0,2],[2,2,2,2],[1,2,2,2]],[[1,2,0,1],[2,1,0,2],[2,2,2,2],[1,2,3,1]],[[1,2,0,1],[2,1,0,2],[2,2,2,2],[1,3,2,1]],[[1,2,0,1],[2,1,0,2],[2,2,2,2],[2,2,2,1]],[[1,2,0,1],[2,1,0,2],[2,2,2,3],[1,2,2,1]],[[1,2,0,1],[2,1,0,2],[3,2,2,2],[1,2,2,1]],[[1,2,0,1],[3,1,0,2],[2,2,2,2],[1,2,2,1]],[[2,2,0,1],[2,1,0,2],[2,2,2,2],[1,2,2,1]],[[1,2,0,1],[2,1,0,2],[2,1,3,2],[1,2,2,2]],[[1,2,0,1],[2,1,0,2],[2,1,3,2],[1,2,3,1]],[[1,2,0,1],[2,1,0,2],[2,1,3,2],[1,3,2,1]],[[1,2,0,1],[2,1,0,2],[2,1,3,2],[2,2,2,1]],[[1,2,0,1],[2,1,0,2],[2,1,3,3],[1,2,2,1]],[[1,2,0,1],[2,1,0,2],[3,1,3,2],[1,2,2,1]],[[1,2,0,1],[3,1,0,2],[2,1,3,2],[1,2,2,1]],[[2,2,0,1],[2,1,0,2],[2,1,3,2],[1,2,2,1]],[[1,2,0,1],[2,1,0,2],[1,3,3,2],[1,2,3,0]],[[1,2,0,1],[2,1,0,2],[1,3,3,2],[1,3,2,0]],[[1,2,0,1],[2,1,0,2],[1,3,3,2],[2,2,2,0]],[[1,2,0,1],[2,1,0,2],[1,4,3,2],[1,2,2,0]],[[1,2,0,1],[2,1,0,2],[1,3,3,2],[1,1,2,2]],[[1,2,0,1],[2,1,0,2],[1,3,3,2],[1,1,3,1]],[[1,2,0,1],[2,1,0,2],[1,3,3,3],[1,1,2,1]],[[1,2,0,1],[2,1,0,2],[1,3,3,1],[1,2,2,2]],[[1,2,0,1],[2,1,0,2],[1,3,3,1],[1,2,3,1]],[[1,2,0,1],[2,1,0,2],[1,3,3,1],[1,3,2,1]],[[1,2,0,1],[2,1,0,2],[1,3,3,1],[2,2,2,1]],[[1,2,0,1],[2,1,0,2],[1,4,3,1],[1,2,2,1]],[[1,2,0,1],[2,1,0,2],[1,3,2,2],[1,2,2,2]],[[1,2,0,1],[2,1,0,2],[1,3,2,2],[1,2,3,1]],[[1,2,0,1],[2,1,0,2],[1,3,2,2],[1,3,2,1]],[[1,2,0,1],[2,1,0,2],[1,3,2,2],[2,2,2,1]],[[1,2,0,1],[2,1,0,2],[1,3,2,3],[1,2,2,1]],[[1,2,0,1],[2,1,0,2],[1,4,2,2],[1,2,2,1]],[[1,2,0,1],[2,1,0,2],[1,2,3,2],[1,2,2,2]],[[1,2,0,1],[2,1,0,2],[1,2,3,2],[1,2,3,1]],[[1,2,0,1],[2,1,0,2],[1,2,3,2],[1,3,2,1]],[[1,2,0,1],[2,1,0,2],[1,2,3,2],[2,2,2,1]],[[1,2,0,1],[2,1,0,2],[1,2,3,3],[1,2,2,1]],[[1,2,0,1],[2,1,0,1],[2,3,3,2],[2,1,2,1]],[[1,2,0,1],[2,1,0,1],[2,4,3,2],[1,1,2,1]],[[1,2,0,1],[2,1,0,1],[3,3,3,2],[1,1,2,1]],[[1,2,0,1],[3,1,0,1],[2,3,3,2],[1,1,2,1]],[[2,2,0,1],[2,1,0,1],[2,3,3,2],[1,1,2,1]],[[1,2,0,1],[2,1,0,1],[2,3,3,2],[0,2,2,2]],[[1,2,0,1],[2,1,0,1],[2,3,3,2],[0,2,3,1]],[[1,2,0,1],[2,1,0,1],[2,3,3,2],[0,3,2,1]],[[1,2,0,1],[2,1,0,1],[2,4,3,2],[0,2,2,1]],[[1,2,0,1],[2,1,0,1],[3,3,3,2],[0,2,2,1]],[[1,2,0,1],[3,1,0,1],[2,3,3,2],[0,2,2,1]],[[2,2,0,1],[2,1,0,1],[2,3,3,2],[0,2,2,1]],[[1,2,0,1],[2,1,0,1],[2,2,3,2],[1,2,2,2]],[[1,2,0,1],[2,1,0,1],[2,2,3,2],[1,2,3,1]],[[1,2,0,1],[2,1,0,1],[2,2,3,2],[1,3,2,1]],[[1,2,0,1],[2,1,0,1],[2,2,3,2],[2,2,2,1]],[[1,2,0,1],[2,1,0,1],[3,2,3,2],[1,2,2,1]],[[1,2,0,1],[3,1,0,1],[2,2,3,2],[1,2,2,1]],[[2,2,0,1],[2,1,0,1],[2,2,3,2],[1,2,2,1]],[[1,2,0,1],[2,1,0,1],[1,3,3,2],[1,2,2,2]],[[1,2,0,1],[2,1,0,1],[1,3,3,2],[1,2,3,1]],[[1,2,0,1],[2,1,0,1],[1,3,3,2],[1,3,2,1]],[[1,2,0,1],[2,1,0,1],[1,3,3,2],[2,2,2,1]],[[1,2,0,1],[2,1,0,1],[1,4,3,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,0,1],[2,0,3,3],[2,3,3,2],[1,0,0,1]],[[1,2,0,1],[2,0,4,2],[2,3,3,2],[1,0,0,1]],[[1,2,0,2],[2,0,3,2],[2,3,3,2],[1,0,0,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,0,1],[2,0,3,3],[2,3,3,2],[0,1,0,1]],[[1,2,0,1],[2,0,4,2],[2,3,3,2],[0,1,0,1]],[[1,2,0,2],[2,0,3,2],[2,3,3,2],[0,1,0,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[2,0,3,2],[2,4,3,1],[1,2,0,0]],[[1,2,0,1],[2,0,3,2],[3,3,3,1],[1,2,0,0]],[[1,2,0,1],[3,0,3,2],[2,3,3,1],[1,2,0,0]],[[1,3,0,1],[2,0,3,2],[2,3,3,1],[1,2,0,0]],[[2,2,0,1],[2,0,3,2],[2,3,3,1],[1,2,0,0]],[[1,2,0,1],[2,0,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[2,0,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,0,1],[2,0,3,2],[2,4,3,1],[1,1,1,0]],[[1,2,0,1],[2,0,3,2],[3,3,3,1],[1,1,1,0]],[[1,2,0,1],[2,0,3,3],[2,3,3,1],[1,1,1,0]],[[1,2,0,1],[2,0,4,2],[2,3,3,1],[1,1,1,0]],[[1,2,0,1],[3,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,2,0,2],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,3,0,1],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[2,2,0,1],[2,0,3,2],[2,3,3,1],[1,1,1,0]],[[1,2,0,1],[2,0,3,2],[2,3,3,1],[2,1,0,1]],[[1,2,0,1],[2,0,3,2],[2,3,4,1],[1,1,0,1]],[[1,2,0,1],[2,0,3,2],[2,4,3,1],[1,1,0,1]],[[1,2,0,1],[2,0,3,2],[3,3,3,1],[1,1,0,1]],[[1,2,0,1],[2,0,3,3],[2,3,3,1],[1,1,0,1]],[[1,2,0,1],[2,0,4,2],[2,3,3,1],[1,1,0,1]],[[1,2,0,1],[3,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,2,0,2],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,3,0,1],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[2,2,0,1],[2,0,3,2],[2,3,3,1],[1,1,0,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,1],[1,0,3,0]],[[1,2,0,1],[2,0,3,2],[2,3,3,1],[2,0,2,0]],[[1,2,0,1],[2,0,3,2],[2,3,4,1],[1,0,2,0]],[[1,2,0,1],[2,0,3,2],[2,4,3,1],[1,0,2,0]],[[1,2,0,1],[2,0,3,2],[3,3,3,1],[1,0,2,0]],[[1,2,0,1],[2,0,3,3],[2,3,3,1],[1,0,2,0]],[[1,2,0,1],[2,0,4,2],[2,3,3,1],[1,0,2,0]],[[1,2,0,1],[3,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,2,0,2],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,3,0,1],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[2,2,0,1],[2,0,3,2],[2,3,3,1],[1,0,2,0]],[[1,2,0,1],[2,0,3,2],[2,3,3,1],[2,0,1,1]],[[1,2,0,1],[2,0,3,2],[2,3,4,1],[1,0,1,1]],[[1,2,0,1],[2,0,3,2],[2,4,3,1],[1,0,1,1]],[[1,2,0,1],[2,0,3,2],[3,3,3,1],[1,0,1,1]],[[1,2,0,1],[2,0,3,3],[2,3,3,1],[1,0,1,1]],[[1,2,0,1],[2,0,4,2],[2,3,3,1],[1,0,1,1]],[[1,2,0,1],[3,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,2,0,2],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,3,0,1],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[2,2,0,1],[2,0,3,2],[2,3,3,1],[1,0,1,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[2,0,3,2],[2,3,4,1],[0,2,1,0]],[[1,2,0,1],[2,0,3,2],[2,4,3,1],[0,2,1,0]],[[1,2,0,1],[2,0,3,2],[3,3,3,1],[0,2,1,0]],[[1,2,0,1],[2,0,3,3],[2,3,3,1],[0,2,1,0]],[[1,2,0,1],[2,0,4,2],[2,3,3,1],[0,2,1,0]],[[1,2,0,1],[3,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,2,0,2],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,3,0,1],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[2,2,0,1],[2,0,3,2],[2,3,3,1],[0,2,1,0]],[[1,2,0,1],[2,0,3,2],[2,3,3,1],[0,3,0,1]],[[1,2,0,1],[2,0,3,2],[2,3,4,1],[0,2,0,1]],[[1,2,0,1],[2,0,3,2],[2,4,3,1],[0,2,0,1]],[[1,2,0,1],[2,0,3,2],[3,3,3,1],[0,2,0,1]],[[1,2,0,1],[2,0,3,3],[2,3,3,1],[0,2,0,1]],[[1,2,0,1],[2,0,4,2],[2,3,3,1],[0,2,0,1]],[[1,2,0,1],[3,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,2,0,2],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,3,0,1],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[2,2,0,1],[2,0,3,2],[2,3,3,1],[0,2,0,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,1],[0,1,3,0]],[[1,2,0,1],[2,0,3,2],[2,3,4,1],[0,1,2,0]],[[1,2,0,1],[2,0,3,2],[2,4,3,1],[0,1,2,0]],[[1,2,0,1],[2,0,3,2],[3,3,3,1],[0,1,2,0]],[[1,2,0,1],[2,0,3,3],[2,3,3,1],[0,1,2,0]],[[1,2,0,1],[2,0,4,2],[2,3,3,1],[0,1,2,0]],[[1,2,0,1],[3,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,2,0,2],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,3,0,1],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[2,2,0,1],[2,0,3,2],[2,3,3,1],[0,1,2,0]],[[1,2,0,1],[2,0,3,2],[2,3,4,1],[0,1,1,1]],[[1,2,0,1],[2,0,3,2],[2,4,3,1],[0,1,1,1]],[[1,2,0,1],[2,0,3,2],[3,3,3,1],[0,1,1,1]],[[1,2,0,1],[2,0,3,3],[2,3,3,1],[0,1,1,1]],[[1,2,0,1],[2,0,4,2],[2,3,3,1],[0,1,1,1]],[[1,2,0,1],[3,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,2,0,2],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,3,0,1],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[2,2,0,1],[2,0,3,2],[2,3,3,1],[0,1,1,1]],[[1,2,0,1],[2,0,3,2],[2,3,4,1],[0,0,2,1]],[[1,2,0,1],[2,0,3,3],[2,3,3,1],[0,0,2,1]],[[1,2,0,1],[2,0,4,2],[2,3,3,1],[0,0,2,1]],[[1,2,0,2],[2,0,3,2],[2,3,3,1],[0,0,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[2,0,3,2],[2,4,3,0],[1,2,0,1]],[[1,2,0,1],[2,0,3,2],[3,3,3,0],[1,2,0,1]],[[1,2,0,1],[3,0,3,2],[2,3,3,0],[1,2,0,1]],[[1,3,0,1],[2,0,3,2],[2,3,3,0],[1,2,0,1]],[[2,2,0,1],[2,0,3,2],[2,3,3,0],[1,2,0,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,0],[2,1,1,1]],[[1,2,0,1],[2,0,3,2],[2,3,4,0],[1,1,1,1]],[[1,2,0,1],[2,0,3,2],[2,4,3,0],[1,1,1,1]],[[1,2,0,1],[2,0,3,2],[3,3,3,0],[1,1,1,1]],[[1,2,0,1],[2,0,3,3],[2,3,3,0],[1,1,1,1]],[[1,2,0,1],[2,0,4,2],[2,3,3,0],[1,1,1,1]],[[1,2,0,1],[3,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,2,0,2],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,3,0,1],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[2,2,0,1],[2,0,3,2],[2,3,3,0],[1,1,1,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,0],[1,0,2,2]],[[1,2,0,1],[2,0,3,2],[2,3,3,0],[1,0,3,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,0],[2,0,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,4,0],[1,0,2,1]],[[1,2,0,1],[2,0,3,2],[2,4,3,0],[1,0,2,1]],[[1,2,0,1],[2,0,3,2],[3,3,3,0],[1,0,2,1]],[[1,2,0,1],[2,0,3,3],[2,3,3,0],[1,0,2,1]],[[1,2,0,1],[2,0,4,2],[2,3,3,0],[1,0,2,1]],[[1,2,0,1],[3,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,2,0,2],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,3,0,1],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[2,2,0,1],[2,0,3,2],[2,3,3,0],[1,0,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,0],[0,3,1,1]],[[1,2,0,1],[2,0,3,2],[2,3,4,0],[0,2,1,1]],[[1,2,0,1],[2,0,3,2],[2,4,3,0],[0,2,1,1]],[[1,2,0,1],[2,0,3,2],[3,3,3,0],[0,2,1,1]],[[1,2,0,1],[2,0,3,3],[2,3,3,0],[0,2,1,1]],[[1,2,0,1],[2,0,4,2],[2,3,3,0],[0,2,1,1]],[[1,2,0,1],[3,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,2,0,2],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,3,0,1],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[2,2,0,1],[2,0,3,2],[2,3,3,0],[0,2,1,1]],[[1,2,0,1],[2,0,3,2],[2,3,3,0],[0,1,2,2]],[[1,2,0,1],[2,0,3,2],[2,3,3,0],[0,1,3,1]],[[1,2,0,1],[2,0,3,2],[2,3,4,0],[0,1,2,1]],[[1,2,0,1],[2,0,3,2],[2,4,3,0],[0,1,2,1]],[[1,2,0,1],[2,0,3,2],[3,3,3,0],[0,1,2,1]],[[1,2,0,1],[2,0,3,3],[2,3,3,0],[0,1,2,1]],[[1,2,0,1],[2,0,4,2],[2,3,3,0],[0,1,2,1]],[[1,2,0,1],[3,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,2,0,2],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,3,0,1],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[2,2,0,1],[2,0,3,2],[2,3,3,0],[0,1,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,0,1],[2,0,3,3],[2,3,2,2],[1,1,1,0]],[[1,2,0,1],[2,0,4,2],[2,3,2,2],[1,1,1,0]],[[1,2,0,2],[2,0,3,2],[2,3,2,2],[1,1,1,0]],[[1,2,0,1],[2,0,3,2],[2,3,2,2],[1,1,0,2]],[[1,2,0,1],[2,0,3,2],[2,3,2,3],[1,1,0,1]],[[1,2,0,1],[2,0,3,3],[2,3,2,2],[1,1,0,1]],[[1,2,0,1],[2,0,4,2],[2,3,2,2],[1,1,0,1]],[[1,2,0,2],[2,0,3,2],[2,3,2,2],[1,1,0,1]],[[1,2,0,1],[2,0,3,2],[2,3,2,3],[1,0,2,0]],[[1,2,0,1],[2,0,3,3],[2,3,2,2],[1,0,2,0]],[[1,2,0,1],[2,0,4,2],[2,3,2,2],[1,0,2,0]],[[1,2,0,2],[2,0,3,2],[2,3,2,2],[1,0,2,0]],[[1,2,0,1],[2,0,3,2],[2,3,2,2],[1,0,1,2]],[[1,2,0,1],[2,0,3,2],[2,3,2,3],[1,0,1,1]],[[1,2,0,1],[2,0,3,3],[2,3,2,2],[1,0,1,1]],[[1,2,0,1],[2,0,4,2],[2,3,2,2],[1,0,1,1]],[[1,2,0,2],[2,0,3,2],[2,3,2,2],[1,0,1,1]],[[1,2,0,1],[2,0,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,0,1],[2,0,3,3],[2,3,2,2],[0,2,1,0]],[[1,2,0,1],[2,0,4,2],[2,3,2,2],[0,2,1,0]],[[1,2,0,2],[2,0,3,2],[2,3,2,2],[0,2,1,0]],[[1,2,0,1],[2,0,3,2],[2,3,2,2],[0,2,0,2]],[[1,2,0,1],[2,0,3,2],[2,3,2,3],[0,2,0,1]],[[1,2,0,1],[2,0,3,3],[2,3,2,2],[0,2,0,1]],[[1,2,0,1],[2,0,4,2],[2,3,2,2],[0,2,0,1]],[[1,2,0,2],[2,0,3,2],[2,3,2,2],[0,2,0,1]],[[1,2,0,1],[2,0,3,2],[2,3,2,3],[0,1,2,0]],[[1,2,0,1],[2,0,3,3],[2,3,2,2],[0,1,2,0]],[[1,2,0,1],[2,0,4,2],[2,3,2,2],[0,1,2,0]],[[1,2,0,2],[2,0,3,2],[2,3,2,2],[0,1,2,0]],[[1,2,0,1],[2,0,3,2],[2,3,2,2],[0,1,1,2]],[[1,2,0,1],[2,0,3,2],[2,3,2,3],[0,1,1,1]],[[1,2,0,1],[2,0,3,3],[2,3,2,2],[0,1,1,1]],[[1,2,0,1],[2,0,4,2],[2,3,2,2],[0,1,1,1]],[[1,2,0,2],[2,0,3,2],[2,3,2,2],[0,1,1,1]],[[1,2,0,1],[2,0,3,2],[2,3,2,2],[0,0,2,2]],[[1,2,0,1],[2,0,3,2],[2,3,2,3],[0,0,2,1]],[[1,2,0,1],[2,0,3,3],[2,3,2,2],[0,0,2,1]],[[1,2,0,1],[2,0,4,2],[2,3,2,2],[0,0,2,1]],[[1,2,0,2],[2,0,3,2],[2,3,2,2],[0,0,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[2,0,3,2],[2,4,2,1],[1,1,2,0]],[[1,2,0,1],[2,0,3,2],[3,3,2,1],[1,1,2,0]],[[1,2,0,1],[3,0,3,2],[2,3,2,1],[1,1,2,0]],[[1,3,0,1],[2,0,3,2],[2,3,2,1],[1,1,2,0]],[[2,2,0,1],[2,0,3,2],[2,3,2,1],[1,1,2,0]],[[1,2,0,1],[2,0,3,2],[2,3,2,1],[0,2,3,0]],[[1,2,0,1],[2,0,3,2],[2,3,2,1],[0,3,2,0]],[[1,2,0,1],[2,0,3,2],[2,4,2,1],[0,2,2,0]],[[1,2,0,1],[2,0,3,2],[3,3,2,1],[0,2,2,0]],[[1,2,0,1],[3,0,3,2],[2,3,2,1],[0,2,2,0]],[[1,3,0,1],[2,0,3,2],[2,3,2,1],[0,2,2,0]],[[2,2,0,1],[2,0,3,2],[2,3,2,1],[0,2,2,0]],[[1,2,0,1],[2,0,3,2],[2,3,2,0],[2,1,2,1]],[[1,2,0,1],[2,0,3,2],[2,4,2,0],[1,1,2,1]],[[1,2,0,1],[2,0,3,2],[3,3,2,0],[1,1,2,1]],[[1,2,0,1],[3,0,3,2],[2,3,2,0],[1,1,2,1]],[[1,3,0,1],[2,0,3,2],[2,3,2,0],[1,1,2,1]],[[2,2,0,1],[2,0,3,2],[2,3,2,0],[1,1,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,2,0],[0,2,2,2]],[[1,2,0,1],[2,0,3,2],[2,3,2,0],[0,2,3,1]],[[1,2,0,1],[2,0,3,2],[2,3,2,0],[0,3,2,1]],[[1,2,0,1],[2,0,3,2],[2,4,2,0],[0,2,2,1]],[[1,2,0,1],[2,0,3,2],[3,3,2,0],[0,2,2,1]],[[1,2,0,1],[3,0,3,2],[2,3,2,0],[0,2,2,1]],[[1,3,0,1],[2,0,3,2],[2,3,2,0],[0,2,2,1]],[[2,2,0,1],[2,0,3,2],[2,3,2,0],[0,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,0,1],[2,0,3,2],[2,3,1,2],[1,0,3,1]],[[1,2,0,1],[2,0,3,2],[2,3,1,3],[1,0,2,1]],[[1,2,0,1],[2,0,3,3],[2,3,1,2],[1,0,2,1]],[[1,2,0,1],[2,0,4,2],[2,3,1,2],[1,0,2,1]],[[1,2,0,2],[2,0,3,2],[2,3,1,2],[1,0,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,1,2],[0,1,2,2]],[[1,2,0,1],[2,0,3,2],[2,3,1,2],[0,1,3,1]],[[1,2,0,1],[2,0,3,2],[2,3,1,3],[0,1,2,1]],[[1,2,0,1],[2,0,3,3],[2,3,1,2],[0,1,2,1]],[[1,2,0,1],[2,0,4,2],[2,3,1,2],[0,1,2,1]],[[1,2,0,2],[2,0,3,2],[2,3,1,2],[0,1,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,0,2],[2,1,2,1]],[[1,2,0,1],[2,0,3,2],[2,4,0,2],[1,1,2,1]],[[1,2,0,1],[2,0,3,2],[3,3,0,2],[1,1,2,1]],[[1,2,0,1],[3,0,3,2],[2,3,0,2],[1,1,2,1]],[[1,3,0,1],[2,0,3,2],[2,3,0,2],[1,1,2,1]],[[2,2,0,1],[2,0,3,2],[2,3,0,2],[1,1,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,0,2],[0,2,2,2]],[[1,2,0,1],[2,0,3,2],[2,3,0,2],[0,2,3,1]],[[1,2,0,1],[2,0,3,2],[2,3,0,2],[0,3,2,1]],[[1,2,0,1],[2,0,3,2],[2,3,0,3],[0,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,4,0,2],[0,2,2,1]],[[1,2,0,1],[2,0,3,2],[3,3,0,2],[0,2,2,1]],[[1,2,0,1],[2,0,3,3],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[2,0,4,2],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[3,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,2,0,2],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,3,0,1],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[2,2,0,1],[2,0,3,2],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[2,0,3,2],[2,2,3,1],[2,2,1,0]],[[1,2,0,1],[2,0,3,2],[3,2,3,1],[1,2,1,0]],[[1,2,0,1],[3,0,3,2],[2,2,3,1],[1,2,1,0]],[[1,3,0,1],[2,0,3,2],[2,2,3,1],[1,2,1,0]],[[2,2,0,1],[2,0,3,2],[2,2,3,1],[1,2,1,0]],[[1,2,0,1],[2,0,3,2],[2,2,3,1],[1,3,0,1]],[[1,2,0,1],[2,0,3,2],[2,2,3,1],[2,2,0,1]],[[1,2,0,1],[2,0,3,2],[3,2,3,1],[1,2,0,1]],[[1,2,0,1],[3,0,3,2],[2,2,3,1],[1,2,0,1]],[[1,3,0,1],[2,0,3,2],[2,2,3,1],[1,2,0,1]],[[2,2,0,1],[2,0,3,2],[2,2,3,1],[1,2,0,1]],[[1,2,0,1],[2,0,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,0,1],[2,0,3,2],[2,2,3,1],[0,3,2,0]],[[1,2,0,1],[2,0,3,2],[2,2,4,1],[0,2,2,0]],[[1,2,0,1],[2,0,3,3],[2,2,3,1],[0,2,2,0]],[[1,2,0,1],[2,0,4,2],[2,2,3,1],[0,2,2,0]],[[1,2,0,2],[2,0,3,2],[2,2,3,1],[0,2,2,0]],[[1,2,0,1],[2,0,3,2],[2,2,4,1],[0,2,1,1]],[[1,2,0,1],[2,0,3,3],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[2,0,4,2],[2,2,3,1],[0,2,1,1]],[[1,2,0,2],[2,0,3,2],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[2,0,3,2],[2,2,3,0],[1,3,1,1]],[[1,2,0,1],[2,0,3,2],[2,2,3,0],[2,2,1,1]],[[1,2,0,1],[2,0,3,2],[3,2,3,0],[1,2,1,1]],[[1,2,0,1],[3,0,3,2],[2,2,3,0],[1,2,1,1]],[[1,3,0,1],[2,0,3,2],[2,2,3,0],[1,2,1,1]],[[2,2,0,1],[2,0,3,2],[2,2,3,0],[1,2,1,1]],[[1,2,0,1],[2,0,3,2],[2,2,3,0],[0,2,2,2]],[[1,2,0,1],[2,0,3,2],[2,2,3,0],[0,2,3,1]],[[1,2,0,1],[2,0,3,2],[2,2,3,0],[0,3,2,1]],[[1,2,0,1],[2,0,3,2],[2,2,4,0],[0,2,2,1]],[[1,2,0,1],[2,0,3,3],[2,2,3,0],[0,2,2,1]],[[1,2,0,1],[2,0,4,2],[2,2,3,0],[0,2,2,1]],[[1,2,0,2],[2,0,3,2],[2,2,3,0],[0,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,0,1],[2,0,3,3],[2,2,2,2],[0,2,2,0]],[[1,2,0,1],[2,0,4,2],[2,2,2,2],[0,2,2,0]],[[1,2,0,2],[2,0,3,2],[2,2,2,2],[0,2,2,0]],[[1,2,0,1],[2,0,3,2],[2,2,2,2],[0,2,1,2]],[[1,2,0,1],[2,0,3,2],[2,2,2,3],[0,2,1,1]],[[1,2,0,1],[2,0,3,3],[2,2,2,2],[0,2,1,1]],[[1,2,0,1],[2,0,4,2],[2,2,2,2],[0,2,1,1]],[[1,2,0,2],[2,0,3,2],[2,2,2,2],[0,2,1,1]],[[1,2,0,1],[2,0,3,2],[2,2,2,1],[1,2,3,0]],[[1,2,0,1],[2,0,3,2],[2,2,2,1],[1,3,2,0]],[[1,2,0,1],[2,0,3,2],[2,2,2,1],[2,2,2,0]],[[1,2,0,1],[2,0,3,2],[3,2,2,1],[1,2,2,0]],[[1,2,0,1],[3,0,3,2],[2,2,2,1],[1,2,2,0]],[[1,3,0,1],[2,0,3,2],[2,2,2,1],[1,2,2,0]],[[2,2,0,1],[2,0,3,2],[2,2,2,1],[1,2,2,0]],[[1,2,0,1],[2,0,3,2],[2,2,2,0],[1,2,2,2]],[[1,2,0,1],[2,0,3,2],[2,2,2,0],[1,2,3,1]],[[1,2,0,1],[2,0,3,2],[2,2,2,0],[1,3,2,1]],[[1,2,0,1],[2,0,3,2],[2,2,2,0],[2,2,2,1]],[[1,2,0,1],[2,0,3,2],[3,2,2,0],[1,2,2,1]],[[1,2,0,1],[3,0,3,2],[2,2,2,0],[1,2,2,1]],[[1,3,0,1],[2,0,3,2],[2,2,2,0],[1,2,2,1]],[[2,2,0,1],[2,0,3,2],[2,2,2,0],[1,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,2,1,2],[0,2,2,2]],[[1,2,0,1],[2,0,3,2],[2,2,1,2],[0,2,3,1]],[[1,2,0,1],[2,0,3,2],[2,2,1,2],[0,3,2,1]],[[1,2,0,1],[2,0,3,2],[2,2,1,3],[0,2,2,1]],[[1,2,0,1],[2,0,3,3],[2,2,1,2],[0,2,2,1]],[[1,2,0,1],[2,0,4,2],[2,2,1,2],[0,2,2,1]],[[1,2,0,2],[2,0,3,2],[2,2,1,2],[0,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,2,0,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,2],[2,2,0,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,2],[2,2,0,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,2],[2,2,0,2],[2,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,2,0,3],[1,2,2,1]],[[1,2,0,1],[2,0,3,2],[3,2,0,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,3],[2,2,0,2],[1,2,2,1]],[[1,2,0,1],[2,0,4,2],[2,2,0,2],[1,2,2,1]],[[1,2,0,1],[3,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,2,0,2],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,3,0,1],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[2,2,0,1],[2,0,3,2],[2,2,0,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,0,1],[2,0,3,2],[2,1,3,1],[1,3,2,0]],[[1,2,0,1],[2,0,3,2],[2,1,3,1],[2,2,2,0]],[[1,2,0,1],[2,0,3,2],[2,1,4,1],[1,2,2,0]],[[1,2,0,1],[2,0,3,2],[3,1,3,1],[1,2,2,0]],[[1,2,0,1],[2,0,3,3],[2,1,3,1],[1,2,2,0]],[[1,2,0,1],[2,0,4,2],[2,1,3,1],[1,2,2,0]],[[1,2,0,1],[3,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,2,0,2],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,3,0,1],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[2,2,0,1],[2,0,3,2],[2,1,3,1],[1,2,2,0]],[[1,2,0,1],[2,0,3,2],[2,1,4,1],[1,2,1,1]],[[1,2,0,1],[2,0,3,3],[2,1,3,1],[1,2,1,1]],[[1,2,0,1],[2,0,4,2],[2,1,3,1],[1,2,1,1]],[[1,2,0,2],[2,0,3,2],[2,1,3,1],[1,2,1,1]],[[1,2,0,1],[2,0,3,2],[2,1,3,0],[1,2,2,2]],[[1,2,0,1],[2,0,3,2],[2,1,3,0],[1,2,3,1]],[[1,2,0,1],[2,0,3,2],[2,1,3,0],[1,3,2,1]],[[1,2,0,1],[2,0,3,2],[2,1,3,0],[2,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,1,4,0],[1,2,2,1]],[[1,2,0,1],[2,0,3,2],[3,1,3,0],[1,2,2,1]],[[1,2,0,1],[2,0,3,3],[2,1,3,0],[1,2,2,1]],[[1,2,0,1],[2,0,4,2],[2,1,3,0],[1,2,2,1]],[[1,2,0,1],[3,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,2,0,2],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,3,0,1],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[2,2,0,1],[2,0,3,2],[2,1,3,0],[1,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,1,2,3],[1,2,2,0]],[[1,2,0,1],[2,0,3,3],[2,1,2,2],[1,2,2,0]],[[1,2,0,1],[2,0,4,2],[2,1,2,2],[1,2,2,0]],[[1,2,0,2],[2,0,3,2],[2,1,2,2],[1,2,2,0]],[[1,2,0,1],[2,0,3,2],[2,1,2,2],[1,2,1,2]],[[1,2,0,1],[2,0,3,2],[2,1,2,3],[1,2,1,1]],[[1,2,0,1],[2,0,3,3],[2,1,2,2],[1,2,1,1]],[[1,2,0,1],[2,0,4,2],[2,1,2,2],[1,2,1,1]],[[1,2,0,2],[2,0,3,2],[2,1,2,2],[1,2,1,1]],[[1,2,0,1],[2,0,3,2],[2,1,1,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,2],[2,1,1,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,2],[2,1,1,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,2],[2,1,1,2],[2,2,2,1]],[[1,2,0,1],[2,0,3,2],[2,1,1,3],[1,2,2,1]],[[1,2,0,1],[2,0,3,2],[3,1,1,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,3],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[2,0,4,2],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[3,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,2,0,2],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,3,0,1],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[2,2,0,1],[2,0,3,2],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,0,3,2],[1,3,3,1],[2,2,1,0]],[[1,2,0,1],[2,0,3,2],[1,3,4,1],[1,2,1,0]],[[1,2,0,1],[2,0,3,2],[1,4,3,1],[1,2,1,0]],[[1,2,0,1],[2,0,3,3],[1,3,3,1],[1,2,1,0]],[[1,2,0,1],[2,0,4,2],[1,3,3,1],[1,2,1,0]],[[1,2,0,2],[2,0,3,2],[1,3,3,1],[1,2,1,0]],[[1,2,0,1],[2,0,3,2],[1,3,3,1],[1,3,0,1]],[[1,2,0,1],[2,0,3,2],[1,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,0,3,2],[1,3,4,1],[1,2,0,1]],[[1,2,0,1],[2,0,3,2],[1,4,3,1],[1,2,0,1]],[[1,2,0,1],[2,0,3,3],[1,3,3,1],[1,2,0,1]],[[1,2,0,1],[2,0,4,2],[1,3,3,1],[1,2,0,1]],[[1,2,0,2],[2,0,3,2],[1,3,3,1],[1,2,0,1]],[[1,2,0,1],[2,0,3,2],[1,3,3,1],[1,1,3,0]],[[1,2,0,1],[2,0,3,2],[1,3,4,1],[1,1,2,0]],[[1,2,0,1],[2,0,3,2],[1,4,3,1],[1,1,2,0]],[[1,2,0,1],[2,0,3,3],[1,3,3,1],[1,1,2,0]],[[1,2,0,1],[2,0,4,2],[1,3,3,1],[1,1,2,0]],[[1,2,0,2],[2,0,3,2],[1,3,3,1],[1,1,2,0]],[[1,2,0,1],[2,0,3,2],[1,3,4,1],[1,1,1,1]],[[1,2,0,1],[2,0,3,2],[1,4,3,1],[1,1,1,1]],[[1,2,0,1],[2,0,3,3],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[2,0,4,2],[1,3,3,1],[1,1,1,1]],[[1,2,0,2],[2,0,3,2],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[2,0,3,2],[1,3,3,0],[1,3,1,1]],[[1,2,0,1],[2,0,3,2],[1,3,3,0],[2,2,1,1]],[[1,2,0,1],[2,0,3,2],[1,3,4,0],[1,2,1,1]],[[1,2,0,1],[2,0,3,2],[1,4,3,0],[1,2,1,1]],[[1,2,0,1],[2,0,3,3],[1,3,3,0],[1,2,1,1]],[[1,2,0,1],[2,0,4,2],[1,3,3,0],[1,2,1,1]],[[1,2,0,2],[2,0,3,2],[1,3,3,0],[1,2,1,1]],[[1,2,0,1],[2,0,3,2],[1,3,3,0],[1,1,2,2]],[[1,2,0,1],[2,0,3,2],[1,3,3,0],[1,1,3,1]],[[1,2,0,1],[2,0,3,2],[1,3,4,0],[1,1,2,1]],[[1,2,0,1],[2,0,3,2],[1,4,3,0],[1,1,2,1]],[[1,2,0,1],[2,0,3,3],[1,3,3,0],[1,1,2,1]],[[1,2,0,1],[2,0,4,2],[1,3,3,0],[1,1,2,1]],[[1,2,0,2],[2,0,3,2],[1,3,3,0],[1,1,2,1]],[[1,2,0,1],[2,0,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,0,1],[2,0,3,3],[1,3,2,2],[1,2,1,0]],[[1,2,0,1],[2,0,4,2],[1,3,2,2],[1,2,1,0]],[[1,2,0,2],[2,0,3,2],[1,3,2,2],[1,2,1,0]],[[1,2,0,1],[2,0,3,2],[1,3,2,2],[1,2,0,2]],[[1,2,0,1],[2,0,3,2],[1,3,2,3],[1,2,0,1]],[[1,2,0,1],[2,0,3,3],[1,3,2,2],[1,2,0,1]],[[1,2,0,1],[2,0,4,2],[1,3,2,2],[1,2,0,1]],[[1,2,0,2],[2,0,3,2],[1,3,2,2],[1,2,0,1]],[[1,2,0,1],[2,0,3,2],[1,3,2,3],[1,1,2,0]],[[1,2,0,1],[2,0,3,3],[1,3,2,2],[1,1,2,0]],[[1,2,0,1],[2,0,4,2],[1,3,2,2],[1,1,2,0]],[[1,2,0,2],[2,0,3,2],[1,3,2,2],[1,1,2,0]],[[1,2,0,1],[2,0,3,2],[1,3,2,2],[1,1,1,2]],[[1,2,0,1],[2,0,3,2],[1,3,2,3],[1,1,1,1]],[[1,2,0,1],[2,0,3,3],[1,3,2,2],[1,1,1,1]],[[1,2,0,1],[2,0,4,2],[1,3,2,2],[1,1,1,1]],[[1,2,0,2],[2,0,3,2],[1,3,2,2],[1,1,1,1]],[[1,1,2,0],[2,3,0,0],[0,4,3,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,0],[0,3,3,2],[2,2,2,1]],[[1,1,2,0],[2,3,0,0],[0,3,3,2],[1,3,2,1]],[[1,1,2,0],[2,3,0,0],[0,3,3,2],[1,2,3,1]],[[1,1,2,0],[2,3,0,0],[0,3,3,2],[1,2,2,2]],[[1,1,2,0],[2,3,0,0],[1,4,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,0],[1,3,2,2],[2,2,2,1]],[[1,1,2,0],[2,3,0,0],[1,3,2,2],[1,3,2,1]],[[1,1,2,0],[2,3,0,0],[1,3,2,2],[1,2,3,1]],[[1,1,2,0],[2,3,0,0],[1,3,2,2],[1,2,2,2]],[[1,1,2,0],[2,3,0,0],[1,4,3,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,0],[1,3,3,2],[0,3,2,1]],[[1,1,2,0],[2,3,0,0],[1,3,3,2],[0,2,3,1]],[[1,1,2,0],[2,3,0,0],[1,3,3,2],[0,2,2,2]],[[1,1,2,0],[2,3,0,0],[1,4,3,2],[1,2,1,1]],[[1,1,2,0],[2,3,0,0],[1,3,3,2],[2,2,1,1]],[[1,1,2,0],[2,3,0,0],[1,3,3,2],[1,3,1,1]],[[2,1,2,0],[2,3,0,0],[2,2,2,2],[1,2,2,1]],[[1,1,2,0],[3,3,0,0],[2,2,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,0],[3,2,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,0],[2,2,2,2],[2,2,2,1]],[[1,1,2,0],[2,3,0,0],[2,2,2,2],[1,3,2,1]],[[1,1,2,0],[2,3,0,0],[2,2,2,2],[1,2,3,1]],[[1,1,2,0],[2,3,0,0],[2,2,2,2],[1,2,2,2]],[[2,1,2,0],[2,3,0,0],[2,2,3,2],[1,2,1,1]],[[1,1,2,0],[3,3,0,0],[2,2,3,2],[1,2,1,1]],[[1,1,2,0],[2,3,0,0],[3,2,3,2],[1,2,1,1]],[[1,1,2,0],[2,3,0,0],[2,2,3,2],[2,2,1,1]],[[1,1,2,0],[2,3,0,0],[2,2,3,2],[1,3,1,1]],[[2,1,2,0],[2,3,0,0],[2,3,1,2],[1,2,2,1]],[[1,1,2,0],[3,3,0,0],[2,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,0],[3,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,0],[2,3,1,2],[2,2,2,1]],[[1,1,2,0],[2,3,0,0],[2,3,1,2],[1,3,2,1]],[[2,1,2,0],[2,3,0,0],[2,3,2,2],[0,2,2,1]],[[1,1,2,0],[3,3,0,0],[2,3,2,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,0],[3,3,2,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,0],[2,4,2,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,0],[2,3,2,2],[0,3,2,1]],[[1,1,2,0],[2,3,0,0],[2,3,2,2],[0,2,3,1]],[[1,1,2,0],[2,3,0,0],[2,3,2,2],[0,2,2,2]],[[2,1,2,0],[2,3,0,0],[2,3,2,2],[1,1,2,1]],[[1,1,2,0],[3,3,0,0],[2,3,2,2],[1,1,2,1]],[[1,1,2,0],[2,3,0,0],[3,3,2,2],[1,1,2,1]],[[1,1,2,0],[2,3,0,0],[2,4,2,2],[1,1,2,1]],[[1,1,2,0],[2,3,0,0],[2,3,2,2],[2,1,2,1]],[[2,1,2,0],[2,3,0,0],[2,3,3,2],[0,1,2,1]],[[1,1,2,0],[3,3,0,0],[2,3,3,2],[0,1,2,1]],[[1,1,2,0],[2,3,0,0],[3,3,3,2],[0,1,2,1]],[[1,1,2,0],[2,3,0,0],[2,4,3,2],[0,1,2,1]],[[2,1,2,0],[2,3,0,0],[2,3,3,2],[0,2,1,1]],[[1,1,2,0],[3,3,0,0],[2,3,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,0,0],[3,3,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,0,0],[2,4,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,0,0],[2,3,3,2],[0,3,1,1]],[[2,1,2,0],[2,3,0,0],[2,3,3,2],[1,0,2,1]],[[1,1,2,0],[3,3,0,0],[2,3,3,2],[1,0,2,1]],[[1,1,2,0],[2,3,0,0],[3,3,3,2],[1,0,2,1]],[[1,1,2,0],[2,3,0,0],[2,4,3,2],[1,0,2,1]],[[1,1,2,0],[2,3,0,0],[2,3,3,2],[2,0,2,1]],[[2,1,2,0],[2,3,0,0],[2,3,3,2],[1,1,1,1]],[[1,1,2,0],[3,3,0,0],[2,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,0,0],[3,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,0,0],[2,4,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,0,0],[2,3,3,2],[2,1,1,1]],[[2,1,2,0],[2,3,0,0],[2,3,3,2],[1,2,0,1]],[[1,1,2,0],[3,3,0,0],[2,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,0],[3,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,0],[2,4,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,0],[2,3,3,2],[2,2,0,1]],[[1,2,0,1],[2,0,3,2],[1,3,2,1],[1,2,3,0]],[[1,2,0,1],[2,0,3,2],[1,3,2,1],[1,3,2,0]],[[1,2,0,1],[2,0,3,2],[1,3,2,1],[2,2,2,0]],[[1,2,0,1],[2,0,3,2],[1,4,2,1],[1,2,2,0]],[[1,2,0,1],[2,0,3,2],[1,3,2,0],[1,2,2,2]],[[1,2,0,1],[2,0,3,2],[1,3,2,0],[1,2,3,1]],[[1,2,0,1],[2,0,3,2],[1,3,2,0],[1,3,2,1]],[[1,2,0,1],[2,0,3,2],[1,3,2,0],[2,2,2,1]],[[1,1,2,0],[2,3,0,1],[0,4,3,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[0,3,3,1],[2,2,2,1]],[[1,1,2,0],[2,3,0,1],[0,3,3,1],[1,3,2,1]],[[1,1,2,0],[2,3,0,1],[0,3,3,1],[1,2,3,1]],[[1,1,2,0],[2,3,0,1],[0,3,3,1],[1,2,2,2]],[[1,1,2,0],[2,3,0,1],[0,4,3,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,1],[0,3,3,2],[2,2,2,0]],[[1,1,2,0],[2,3,0,1],[0,3,3,2],[1,3,2,0]],[[1,1,2,0],[2,3,0,1],[0,3,3,2],[1,2,3,0]],[[1,1,2,0],[2,3,0,1],[1,4,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[1,3,1,2],[2,2,2,1]],[[1,1,2,0],[2,3,0,1],[1,3,1,2],[1,3,2,1]],[[1,1,2,0],[2,3,0,1],[1,3,1,2],[1,2,3,1]],[[1,1,2,0],[2,3,0,1],[1,3,1,2],[1,2,2,2]],[[1,1,2,0],[2,3,0,1],[1,4,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[1,3,2,1],[2,2,2,1]],[[1,1,2,0],[2,3,0,1],[1,3,2,1],[1,3,2,1]],[[1,1,2,0],[2,3,0,1],[1,3,2,1],[1,2,3,1]],[[1,1,2,0],[2,3,0,1],[1,3,2,1],[1,2,2,2]],[[1,1,2,0],[2,3,0,1],[1,4,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,1],[1,3,2,2],[2,2,2,0]],[[1,1,2,0],[2,3,0,1],[1,3,2,2],[1,3,2,0]],[[1,1,2,0],[2,3,0,1],[1,3,2,2],[1,2,3,0]],[[1,1,2,0],[2,3,0,1],[1,4,3,0],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[1,3,3,0],[2,2,2,1]],[[1,1,2,0],[2,3,0,1],[1,3,3,0],[1,3,2,1]],[[1,1,2,0],[2,3,0,1],[1,3,3,0],[1,2,3,1]],[[1,1,2,0],[2,3,0,1],[1,4,3,1],[0,2,2,1]],[[1,1,2,0],[2,3,0,1],[1,3,3,1],[0,3,2,1]],[[1,1,2,0],[2,3,0,1],[1,3,3,1],[0,2,3,1]],[[1,1,2,0],[2,3,0,1],[1,3,3,1],[0,2,2,2]],[[1,1,2,0],[2,3,0,1],[1,4,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,0,1],[1,3,3,1],[2,2,1,1]],[[1,1,2,0],[2,3,0,1],[1,3,3,1],[1,3,1,1]],[[1,1,2,0],[2,3,0,1],[1,4,3,2],[0,2,2,0]],[[1,1,2,0],[2,3,0,1],[1,3,3,2],[0,3,2,0]],[[1,1,2,0],[2,3,0,1],[1,3,3,2],[0,2,3,0]],[[1,1,2,0],[2,3,0,1],[1,4,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,1],[1,3,3,2],[2,2,0,1]],[[1,1,2,0],[2,3,0,1],[1,3,3,2],[1,3,0,1]],[[1,1,2,0],[2,3,0,1],[1,4,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,0,1],[1,3,3,2],[2,2,1,0]],[[1,1,2,0],[2,3,0,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,0,3,2],[1,4,2,0],[1,2,2,1]],[[2,1,2,0],[2,3,0,1],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[3,3,0,1],[2,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[3,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,2,1,2],[2,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,2,1,2],[1,3,2,1]],[[1,1,2,0],[2,3,0,1],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[2,3,0,1],[2,2,1,2],[1,2,2,2]],[[2,1,2,0],[2,3,0,1],[2,2,2,1],[1,2,2,1]],[[1,1,2,0],[3,3,0,1],[2,2,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[3,2,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,2,2,1],[2,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,2,2,1],[1,3,2,1]],[[1,1,2,0],[2,3,0,1],[2,2,2,1],[1,2,3,1]],[[1,1,2,0],[2,3,0,1],[2,2,2,1],[1,2,2,2]],[[2,1,2,0],[2,3,0,1],[2,2,2,2],[1,2,2,0]],[[1,1,2,0],[3,3,0,1],[2,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,1],[3,2,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,1],[2,2,2,2],[2,2,2,0]],[[1,1,2,0],[2,3,0,1],[2,2,2,2],[1,3,2,0]],[[1,1,2,0],[2,3,0,1],[2,2,2,2],[1,2,3,0]],[[2,1,2,0],[2,3,0,1],[2,2,3,0],[1,2,2,1]],[[1,1,2,0],[3,3,0,1],[2,2,3,0],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[3,2,3,0],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,2,3,0],[2,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,2,3,0],[1,3,2,1]],[[1,1,2,0],[2,3,0,1],[2,2,3,0],[1,2,3,1]],[[2,1,2,0],[2,3,0,1],[2,2,3,1],[1,2,1,1]],[[1,1,2,0],[3,3,0,1],[2,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,0,1],[3,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,0,1],[2,2,3,1],[2,2,1,1]],[[1,1,2,0],[2,3,0,1],[2,2,3,1],[1,3,1,1]],[[2,1,2,0],[2,3,0,1],[2,2,3,2],[1,2,0,1]],[[1,1,2,0],[3,3,0,1],[2,2,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,1],[3,2,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,1],[2,2,3,2],[2,2,0,1]],[[1,1,2,0],[2,3,0,1],[2,2,3,2],[1,3,0,1]],[[2,1,2,0],[2,3,0,1],[2,2,3,2],[1,2,1,0]],[[1,1,2,0],[3,3,0,1],[2,2,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,0,1],[3,2,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,0,1],[2,2,3,2],[2,2,1,0]],[[1,1,2,0],[2,3,0,1],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[2,0,3,2],[1,3,1,2],[1,1,2,2]],[[1,2,0,1],[2,0,3,2],[1,3,1,2],[1,1,3,1]],[[2,1,2,0],[2,3,0,1],[2,3,0,2],[1,2,2,1]],[[1,1,2,0],[3,3,0,1],[2,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[3,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,0,2],[2,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,0,2],[1,3,2,1]],[[2,1,2,0],[2,3,0,1],[2,3,1,1],[1,2,2,1]],[[1,1,2,0],[3,3,0,1],[2,3,1,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[3,3,1,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,1,1],[2,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,1,1],[1,3,2,1]],[[2,1,2,0],[2,3,0,1],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[3,3,0,1],[2,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,1],[3,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,4,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,1,2],[0,3,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,1,2],[0,2,3,1]],[[1,1,2,0],[2,3,0,1],[2,3,1,2],[0,2,2,2]],[[2,1,2,0],[2,3,0,1],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[3,3,0,1],[2,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,0,1],[3,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,0,1],[2,4,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,1,2],[2,1,2,1]],[[2,1,2,0],[2,3,0,1],[2,3,1,2],[1,2,2,0]],[[1,1,2,0],[3,3,0,1],[2,3,1,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,1],[3,3,1,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,1],[2,3,1,2],[2,2,2,0]],[[1,1,2,0],[2,3,0,1],[2,3,1,2],[1,3,2,0]],[[2,1,2,0],[2,3,0,1],[2,3,2,0],[1,2,2,1]],[[1,1,2,0],[3,3,0,1],[2,3,2,0],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[3,3,2,0],[1,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,2,0],[2,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,2,0],[1,3,2,1]],[[2,1,2,0],[2,3,0,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[3,3,0,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,3,0,1],[3,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,4,2,1],[0,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,2,1],[0,3,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,2,1],[0,2,3,1]],[[1,1,2,0],[2,3,0,1],[2,3,2,1],[0,2,2,2]],[[2,1,2,0],[2,3,0,1],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[3,3,0,1],[2,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,0,1],[3,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,0,1],[2,4,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,2,1],[2,1,2,1]],[[2,1,2,0],[2,3,0,1],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[3,3,0,1],[2,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,0,1],[3,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,0,1],[2,4,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,0,1],[2,3,2,2],[0,3,2,0]],[[1,1,2,0],[2,3,0,1],[2,3,2,2],[0,2,3,0]],[[2,1,2,0],[2,3,0,1],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[3,3,0,1],[2,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,0,1],[3,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,0,1],[2,4,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,0,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,0,3,2],[1,3,1,3],[1,1,2,1]],[[1,2,0,1],[2,0,3,3],[1,3,1,2],[1,1,2,1]],[[1,2,0,1],[2,0,4,2],[1,3,1,2],[1,1,2,1]],[[1,2,0,2],[2,0,3,2],[1,3,1,2],[1,1,2,1]],[[1,2,0,1],[2,0,3,2],[1,3,0,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,2],[1,3,0,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,2],[1,3,0,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,2],[1,3,0,2],[2,2,2,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,0],[0,2,2,1]],[[1,1,2,0],[3,3,0,1],[2,3,3,0],[0,2,2,1]],[[1,1,2,0],[2,3,0,1],[3,3,3,0],[0,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,4,3,0],[0,2,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,3,0],[0,3,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,3,0],[0,2,3,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,0],[1,1,2,1]],[[1,1,2,0],[3,3,0,1],[2,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,3,0,1],[3,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,3,0,1],[2,4,3,0],[1,1,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,3,0],[2,1,2,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[3,3,0,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,3,0,1],[3,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,3,0,1],[2,4,3,1],[0,1,2,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[3,3,0,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,0,1],[3,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,0,1],[2,4,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,0,1],[2,3,3,1],[0,3,1,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[3,3,0,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,0,1],[3,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,0,1],[2,4,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,0,1],[2,3,3,1],[2,0,2,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[3,3,0,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,0,1],[3,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,0,1],[2,4,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,0,1],[2,3,3,1],[2,1,1,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,1],[1,2,0,1]],[[1,1,2,0],[3,3,0,1],[2,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,0,1],[3,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,0,1],[2,4,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,0,1],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,0,3,2],[1,3,0,3],[1,2,2,1]],[[1,2,0,1],[2,0,3,2],[1,4,0,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,3],[1,3,0,2],[1,2,2,1]],[[1,2,0,1],[2,0,4,2],[1,3,0,2],[1,2,2,1]],[[1,2,0,2],[2,0,3,2],[1,3,0,2],[1,2,2,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[3,3,0,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,0,1],[3,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,0,1],[2,4,3,2],[0,1,1,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[3,3,0,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,0,1],[3,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,0,1],[2,4,3,2],[0,1,2,0]],[[2,1,2,0],[2,3,0,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[3,3,0,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,0,1],[3,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,0,1],[2,4,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,0,1],[2,3,3,2],[0,3,0,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[3,3,0,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,0,1],[3,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,0,1],[2,4,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,0,1],[2,3,3,2],[0,3,1,0]],[[2,1,2,0],[2,3,0,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[3,3,0,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,0,1],[3,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,0,1],[2,4,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,0,1],[2,3,3,2],[2,0,1,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[3,3,0,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,0,1],[3,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,0,1],[2,4,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,0,1],[2,3,3,2],[2,0,2,0]],[[2,1,2,0],[2,3,0,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[3,3,0,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,0,1],[3,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,0,1],[2,4,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,0,1],[2,3,3,2],[2,1,0,1]],[[2,1,2,0],[2,3,0,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[3,3,0,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,0,1],[3,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,0,1],[2,4,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,0,1],[2,3,3,2],[2,1,1,0]],[[2,1,2,0],[2,3,0,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[3,3,0,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,3,0,1],[3,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,3,0,1],[2,4,3,2],[1,2,0,0]],[[1,1,2,0],[2,3,0,1],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[2,0,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,0,1],[2,0,3,2],[1,2,3,1],[1,3,2,0]],[[1,2,0,1],[2,0,3,2],[1,2,3,1],[2,2,2,0]],[[1,2,0,1],[2,0,3,2],[1,2,4,1],[1,2,2,0]],[[1,2,0,1],[2,0,3,3],[1,2,3,1],[1,2,2,0]],[[1,2,0,1],[2,0,4,2],[1,2,3,1],[1,2,2,0]],[[1,2,0,2],[2,0,3,2],[1,2,3,1],[1,2,2,0]],[[1,2,0,1],[2,0,3,2],[1,2,4,1],[1,2,1,1]],[[1,2,0,1],[2,0,3,3],[1,2,3,1],[1,2,1,1]],[[1,2,0,1],[2,0,4,2],[1,2,3,1],[1,2,1,1]],[[1,2,0,2],[2,0,3,2],[1,2,3,1],[1,2,1,1]],[[1,2,0,1],[2,0,3,2],[1,2,3,0],[1,2,2,2]],[[1,2,0,1],[2,0,3,2],[1,2,3,0],[1,2,3,1]],[[1,2,0,1],[2,0,3,2],[1,2,3,0],[1,3,2,1]],[[1,1,2,0],[2,3,0,3],[0,2,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,2,2,3],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,2,2,2],[2,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,2,2,2],[1,3,2,1]],[[1,1,2,0],[2,3,0,2],[0,2,2,2],[1,2,3,1]],[[1,1,2,0],[2,3,0,2],[0,2,2,2],[1,2,2,2]],[[1,1,2,0],[2,3,0,2],[0,2,4,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,2,3,1],[2,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,2,3,1],[1,3,2,1]],[[1,1,2,0],[2,3,0,2],[0,2,3,1],[1,2,3,1]],[[1,1,2,0],[2,3,0,2],[0,2,3,1],[1,2,2,2]],[[1,1,2,0],[2,3,0,3],[0,2,3,2],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[0,2,4,2],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[0,2,3,3],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[0,2,3,2],[1,2,1,2]],[[1,1,2,0],[2,3,0,3],[0,2,3,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[0,2,4,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[0,2,3,3],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[0,2,3,2],[2,2,2,0]],[[1,1,2,0],[2,3,0,2],[0,2,3,2],[1,3,2,0]],[[1,1,2,0],[2,3,0,2],[0,2,3,2],[1,2,3,0]],[[2,1,2,0],[2,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[3,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,4,0,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,3],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,4,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,1,3],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,1,2],[2,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,1,2],[1,3,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,1,2],[1,2,3,1]],[[1,1,2,0],[2,3,0,2],[0,3,1,2],[1,2,2,2]],[[2,1,2,0],[2,3,0,2],[0,3,2,1],[1,2,2,1]],[[1,1,2,0],[3,3,0,2],[0,3,2,1],[1,2,2,1]],[[1,1,2,0],[2,4,0,2],[0,3,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,4,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,2,1],[2,2,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,2,1],[1,3,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,2,1],[1,2,3,1]],[[1,1,2,0],[2,3,0,2],[0,3,2,1],[1,2,2,2]],[[1,1,2,0],[2,3,0,3],[0,3,2,2],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,2,3],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,2,2],[1,1,3,1]],[[1,1,2,0],[2,3,0,2],[0,3,2,2],[1,1,2,2]],[[2,1,2,0],[2,3,0,2],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[3,3,0,2],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[2,4,0,2],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[0,4,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[0,3,2,2],[2,2,2,0]],[[1,1,2,0],[2,3,0,2],[0,3,2,2],[1,3,2,0]],[[1,1,2,0],[2,3,0,2],[0,3,2,2],[1,2,3,0]],[[2,1,2,0],[2,3,0,2],[0,3,3,1],[1,1,2,1]],[[1,1,2,0],[3,3,0,2],[0,3,3,1],[1,1,2,1]],[[1,1,2,0],[2,4,0,2],[0,3,3,1],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[0,4,3,1],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,4,1],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,1],[1,1,3,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,1],[1,1,2,2]],[[2,1,2,0],[2,3,0,2],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[3,3,0,2],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[2,4,0,2],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[0,4,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[0,3,4,1],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,1],[2,2,1,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,1],[1,3,1,1]],[[1,1,2,0],[2,3,0,3],[0,3,3,2],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,4,2],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,3],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,2],[1,0,2,2]],[[2,1,2,0],[2,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[3,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,4,0,2],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,0,3],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[0,4,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[0,3,4,2],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,3],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,2],[1,1,1,2]],[[2,1,2,0],[2,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[3,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[2,4,0,2],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[2,3,0,3],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[2,3,0,2],[0,4,3,2],[1,1,2,0]],[[1,1,2,0],[2,3,0,2],[0,3,4,2],[1,1,2,0]],[[1,1,2,0],[2,3,0,2],[0,3,3,3],[1,1,2,0]],[[1,1,2,0],[2,3,0,2],[0,3,3,2],[1,1,3,0]],[[2,1,2,0],[2,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[3,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,4,0,2],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,3],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,2],[0,4,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,2],[0,3,4,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,3],[1,2,0,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,2],[2,2,0,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,2],[1,3,0,1]],[[1,1,2,0],[2,3,0,2],[0,3,3,2],[1,2,0,2]],[[2,1,2,0],[2,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[3,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[2,4,0,2],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,0,3],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,0,2],[0,4,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,0,2],[0,3,4,2],[1,2,1,0]],[[1,1,2,0],[2,3,0,2],[0,3,3,3],[1,2,1,0]],[[1,1,2,0],[2,3,0,2],[0,3,3,2],[2,2,1,0]],[[1,1,2,0],[2,3,0,2],[0,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,0,3,2],[1,2,3,0],[2,2,2,1]],[[1,2,0,1],[2,0,3,2],[1,2,4,0],[1,2,2,1]],[[1,2,0,1],[2,0,3,3],[1,2,3,0],[1,2,2,1]],[[1,2,0,1],[2,0,4,2],[1,2,3,0],[1,2,2,1]],[[1,2,0,2],[2,0,3,2],[1,2,3,0],[1,2,2,1]],[[1,1,2,0],[2,3,0,3],[1,2,2,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[1,2,2,3],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[1,2,2,2],[0,3,2,1]],[[1,1,2,0],[2,3,0,2],[1,2,2,2],[0,2,3,1]],[[1,1,2,0],[2,3,0,2],[1,2,2,2],[0,2,2,2]],[[1,1,2,0],[2,3,0,2],[1,2,4,1],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[1,2,3,1],[0,3,2,1]],[[1,1,2,0],[2,3,0,2],[1,2,3,1],[0,2,3,1]],[[1,1,2,0],[2,3,0,2],[1,2,3,1],[0,2,2,2]],[[1,1,2,0],[2,3,0,3],[1,2,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,0,2],[1,2,4,2],[0,2,1,1]],[[1,1,2,0],[2,3,0,2],[1,2,3,3],[0,2,1,1]],[[1,1,2,0],[2,3,0,2],[1,2,3,2],[0,2,1,2]],[[1,1,2,0],[2,3,0,3],[1,2,3,2],[0,2,2,0]],[[1,1,2,0],[2,3,0,2],[1,2,4,2],[0,2,2,0]],[[1,1,2,0],[2,3,0,2],[1,2,3,3],[0,2,2,0]],[[1,1,2,0],[2,3,0,2],[1,2,3,2],[0,3,2,0]],[[1,1,2,0],[2,3,0,2],[1,2,3,2],[0,2,3,0]],[[1,2,0,1],[2,0,3,2],[1,2,2,3],[1,2,2,0]],[[1,2,0,1],[2,0,3,3],[1,2,2,2],[1,2,2,0]],[[1,2,0,1],[2,0,4,2],[1,2,2,2],[1,2,2,0]],[[1,2,0,2],[2,0,3,2],[1,2,2,2],[1,2,2,0]],[[1,2,0,1],[2,0,3,2],[1,2,2,2],[1,2,1,2]],[[2,1,2,0],[2,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,1,2,0],[3,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,4,0,2],[1,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,3],[1,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[1,4,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,1,3],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,1,2],[0,3,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,1,2],[0,2,3,1]],[[1,1,2,0],[2,3,0,2],[1,3,1,2],[0,2,2,2]],[[2,1,2,0],[2,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[3,3,0,2],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,4,0,2],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[1,4,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[1,4,2,0],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,0],[2,2,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,0],[1,3,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,0],[1,2,3,1]],[[2,1,2,0],[2,3,0,2],[1,3,2,1],[0,2,2,1]],[[1,1,2,0],[3,3,0,2],[1,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,4,0,2],[1,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[1,4,2,1],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,1],[0,3,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,1],[0,2,3,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,1],[0,2,2,2]],[[2,1,2,0],[2,3,0,2],[1,3,2,1],[1,1,2,1]],[[1,1,2,0],[3,3,0,2],[1,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,4,0,2],[1,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[1,4,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[1,4,2,1],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[1,3,2,1],[2,2,2,0]],[[1,1,2,0],[2,3,0,2],[1,3,2,1],[1,3,2,0]],[[1,1,2,0],[2,3,0,3],[1,3,2,2],[0,1,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,3],[0,1,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,2],[0,1,3,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,2],[0,1,2,2]],[[2,1,2,0],[2,3,0,2],[1,3,2,2],[0,2,2,0]],[[1,1,2,0],[3,3,0,2],[1,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,4,0,2],[1,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,0,2],[1,4,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,0,2],[1,3,2,2],[0,3,2,0]],[[1,1,2,0],[2,3,0,2],[1,3,2,2],[0,2,3,0]],[[1,1,2,0],[2,3,0,3],[1,3,2,2],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,3],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,2],[1,0,3,1]],[[1,1,2,0],[2,3,0,2],[1,3,2,2],[1,0,2,2]],[[2,1,2,0],[2,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[3,3,0,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,4,0,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,0,2],[1,4,2,2],[1,1,2,0]],[[1,2,0,1],[2,0,3,2],[1,2,2,3],[1,2,1,1]],[[1,2,0,1],[2,0,3,3],[1,2,2,2],[1,2,1,1]],[[1,2,0,1],[2,0,4,2],[1,2,2,2],[1,2,1,1]],[[1,2,0,2],[2,0,3,2],[1,2,2,2],[1,2,1,1]],[[1,2,0,1],[2,0,3,2],[1,2,1,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,2],[1,2,1,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,2],[1,2,1,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,2],[1,2,1,2],[2,2,2,1]],[[1,2,0,1],[2,0,3,2],[1,2,1,3],[1,2,2,1]],[[1,2,0,1],[2,0,3,3],[1,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[1,4,3,0],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,0],[2,2,1,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,0],[1,3,1,1]],[[2,1,2,0],[2,3,0,2],[1,3,3,1],[0,1,2,1]],[[1,1,2,0],[3,3,0,2],[1,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,4,0,2],[1,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,3,0,2],[1,4,3,1],[0,1,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,4,1],[0,1,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,1],[0,1,3,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,1],[0,1,2,2]],[[2,1,2,0],[2,3,0,2],[1,3,3,1],[0,2,1,1]],[[1,1,2,0],[3,3,0,2],[1,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,4,0,2],[1,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,0,2],[1,4,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,0,2],[1,3,4,1],[0,2,1,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,1],[0,3,1,1]],[[2,1,2,0],[2,3,0,2],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[3,3,0,2],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,4,0,2],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[1,4,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,4,1],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,1],[1,0,3,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,1],[1,0,2,2]],[[2,1,2,0],[2,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[3,3,0,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,4,0,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[1,4,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[1,3,4,1],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[1,4,3,1],[1,2,1,0]],[[1,1,2,0],[2,3,0,2],[1,3,3,1],[2,2,1,0]],[[1,1,2,0],[2,3,0,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,0,4,2],[1,2,1,2],[1,2,2,1]],[[1,2,0,2],[2,0,3,2],[1,2,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,3],[1,3,3,2],[0,0,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,4,2],[0,0,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,3],[0,0,2,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,2],[0,0,2,2]],[[2,1,2,0],[2,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[3,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,4,0,2],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,0,3],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,0,2],[1,4,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,0,2],[1,3,4,2],[0,1,1,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,3],[0,1,1,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,2],[0,1,1,2]],[[2,1,2,0],[2,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[3,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,4,0,2],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,0,3],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,0,2],[1,4,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,0,2],[1,3,4,2],[0,1,2,0]],[[1,1,2,0],[2,3,0,2],[1,3,3,3],[0,1,2,0]],[[1,1,2,0],[2,3,0,2],[1,3,3,2],[0,1,3,0]],[[2,1,2,0],[2,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[3,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,4,0,2],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,0,3],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,0,2],[1,4,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,0,2],[1,3,4,2],[0,2,0,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,3],[0,2,0,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,2],[0,3,0,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,2],[0,2,0,2]],[[2,1,2,0],[2,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[3,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,4,0,2],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,0,3],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,0,2],[1,4,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,0,2],[1,3,4,2],[0,2,1,0]],[[1,1,2,0],[2,3,0,2],[1,3,3,3],[0,2,1,0]],[[1,1,2,0],[2,3,0,2],[1,3,3,2],[0,3,1,0]],[[2,1,2,0],[2,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[3,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,4,0,2],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,0,3],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,0,2],[1,4,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,0,2],[1,3,4,2],[1,0,1,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,3],[1,0,1,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,2],[1,0,1,2]],[[2,1,2,0],[2,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[3,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,4,0,2],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,0,3],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,0,2],[1,4,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,0,2],[1,3,4,2],[1,0,2,0]],[[1,1,2,0],[2,3,0,2],[1,3,3,3],[1,0,2,0]],[[1,1,2,0],[2,3,0,2],[1,3,3,2],[1,0,3,0]],[[2,1,2,0],[2,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[3,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,4,0,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,0,3],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,0,2],[1,4,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,0,2],[1,3,4,2],[1,1,0,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,3],[1,1,0,1]],[[1,1,2,0],[2,3,0,2],[1,3,3,2],[1,1,0,2]],[[2,1,2,0],[2,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[3,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,4,0,2],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,0,3],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,0,2],[1,4,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,0,2],[1,3,4,2],[1,1,1,0]],[[1,1,2,0],[2,3,0,2],[1,3,3,3],[1,1,1,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[2,2,0,0]],[[2,1,2,0],[2,3,0,2],[1,3,3,2],[1,2,0,0]],[[1,1,2,0],[3,3,0,2],[1,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,4,0,2],[1,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,3,0,2],[1,4,3,2],[1,2,0,0]],[[1,2,0,1],[2,0,3,1],[2,4,3,2],[1,2,0,0]],[[1,2,0,1],[2,0,3,1],[3,3,3,2],[1,2,0,0]],[[1,2,0,1],[3,0,3,1],[2,3,3,2],[1,2,0,0]],[[1,3,0,1],[2,0,3,1],[2,3,3,2],[1,2,0,0]],[[2,2,0,1],[2,0,3,1],[2,3,3,2],[1,2,0,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,0,1],[2,0,3,1],[2,3,4,2],[1,1,1,0]],[[1,2,0,1],[2,0,3,1],[2,4,3,2],[1,1,1,0]],[[1,2,0,1],[2,0,3,1],[3,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,0,4,1],[2,3,3,2],[1,1,1,0]],[[2,1,2,0],[2,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[3,3,0,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,4,0,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,3],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[3,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,0,2,3],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,0,2,2],[2,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,0,2,2],[1,3,2,1]],[[1,1,2,0],[2,3,0,2],[2,0,2,2],[1,2,3,1]],[[1,1,2,0],[2,3,0,2],[2,0,2,2],[1,2,2,2]],[[2,1,2,0],[2,3,0,2],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[3,3,0,2],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,4,0,2],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[3,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,0,4,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,0,3,1],[2,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,0,3,1],[1,3,2,1]],[[1,1,2,0],[2,3,0,2],[2,0,3,1],[1,2,3,1]],[[1,1,2,0],[2,3,0,2],[2,0,3,1],[1,2,2,2]],[[1,1,2,0],[2,3,0,3],[2,0,3,2],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[2,0,4,2],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[2,0,3,3],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[2,0,3,2],[1,2,1,2]],[[2,1,2,0],[2,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[3,3,0,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,4,0,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,3],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[3,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,0,4,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,0,3,3],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,0,3,2],[2,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,0,3,2],[1,3,2,0]],[[1,1,2,0],[2,3,0,2],[2,0,3,2],[1,2,3,0]],[[2,1,2,0],[2,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[3,3,0,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,4,0,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,3],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[3,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,1,1,3],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,1,1,2],[2,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,1,1,2],[1,3,2,1]],[[1,1,2,0],[2,3,0,2],[2,1,1,2],[1,2,3,1]],[[1,1,2,0],[2,3,0,2],[2,1,1,2],[1,2,2,2]],[[2,1,2,0],[2,3,0,2],[2,1,2,1],[1,2,2,1]],[[1,1,2,0],[3,3,0,2],[2,1,2,1],[1,2,2,1]],[[1,1,2,0],[2,4,0,2],[2,1,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[3,1,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,1,2,1],[2,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,1,2,1],[1,3,2,1]],[[1,1,2,0],[2,3,0,2],[2,1,2,1],[1,2,3,1]],[[1,1,2,0],[2,3,0,2],[2,1,2,1],[1,2,2,2]],[[2,1,2,0],[2,3,0,2],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[3,3,0,2],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[2,4,0,2],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[3,1,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,1,2,2],[2,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,1,2,2],[1,3,2,0]],[[1,1,2,0],[2,3,0,2],[2,1,2,2],[1,2,3,0]],[[2,1,2,0],[2,3,0,2],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[3,3,0,2],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[2,4,0,2],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[3,1,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[2,1,3,1],[2,2,1,1]],[[1,1,2,0],[2,3,0,2],[2,1,3,1],[1,3,1,1]],[[2,1,2,0],[2,3,0,2],[2,1,3,2],[1,2,0,1]],[[1,1,2,0],[3,3,0,2],[2,1,3,2],[1,2,0,1]],[[1,1,2,0],[2,4,0,2],[2,1,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,2],[3,1,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,0,2],[2,1,3,2],[2,2,0,1]],[[1,1,2,0],[2,3,0,2],[2,1,3,2],[1,3,0,1]],[[2,1,2,0],[2,3,0,2],[2,1,3,2],[1,2,1,0]],[[1,1,2,0],[3,3,0,2],[2,1,3,2],[1,2,1,0]],[[1,1,2,0],[2,4,0,2],[2,1,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,0,2],[3,1,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,0,2],[2,1,3,2],[2,2,1,0]],[[1,1,2,0],[2,3,0,2],[2,1,3,2],[1,3,1,0]],[[1,2,0,1],[3,0,3,1],[2,3,3,2],[1,1,1,0]],[[1,3,0,1],[2,0,3,1],[2,3,3,2],[1,1,1,0]],[[2,2,0,1],[2,0,3,1],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[1,1,0,2]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[2,1,0,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,3],[1,1,0,1]],[[1,2,0,1],[2,0,3,1],[2,3,4,2],[1,1,0,1]],[[1,2,0,1],[2,0,3,1],[2,4,3,2],[1,1,0,1]],[[1,2,0,1],[2,0,3,1],[3,3,3,2],[1,1,0,1]],[[1,2,0,1],[2,0,4,1],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[3,0,3,1],[2,3,3,2],[1,1,0,1]],[[2,1,2,0],[2,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[3,3,0,2],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[2,4,0,2],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[3,2,1,2],[0,2,2,1]],[[2,1,2,0],[2,3,0,2],[2,2,1,2],[1,1,2,1]],[[1,1,2,0],[3,3,0,2],[2,2,1,2],[1,1,2,1]],[[1,1,2,0],[2,4,0,2],[2,2,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[3,2,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[2,2,1,2],[2,1,2,1]],[[2,1,2,0],[2,3,0,2],[2,2,2,0],[1,2,2,1]],[[1,1,2,0],[3,3,0,2],[2,2,2,0],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[3,2,2,0],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,2,2,0],[2,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,2,2,0],[1,3,2,1]],[[1,1,2,0],[2,3,0,2],[2,2,2,0],[1,2,3,1]],[[2,1,2,0],[2,3,0,2],[2,2,2,1],[0,2,2,1]],[[1,1,2,0],[3,3,0,2],[2,2,2,1],[0,2,2,1]],[[1,1,2,0],[2,4,0,2],[2,2,2,1],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[3,2,2,1],[0,2,2,1]],[[2,1,2,0],[2,3,0,2],[2,2,2,1],[1,1,2,1]],[[1,1,2,0],[3,3,0,2],[2,2,2,1],[1,1,2,1]],[[1,1,2,0],[2,4,0,2],[2,2,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[3,2,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[2,2,2,1],[2,1,2,1]],[[2,1,2,0],[2,3,0,2],[2,2,2,1],[1,2,2,0]],[[1,1,2,0],[3,3,0,2],[2,2,2,1],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[3,2,2,1],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,2,2,1],[2,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,2,2,1],[1,3,2,0]],[[2,1,2,0],[2,3,0,2],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[3,3,0,2],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[2,4,0,2],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,0,2],[3,2,2,2],[0,2,2,0]],[[2,1,2,0],[2,3,0,2],[2,2,2,2],[1,1,2,0]],[[1,1,2,0],[3,3,0,2],[2,2,2,2],[1,1,2,0]],[[1,1,2,0],[2,4,0,2],[2,2,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,0,2],[3,2,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,0,2],[2,2,2,2],[2,1,2,0]],[[1,3,0,1],[2,0,3,1],[2,3,3,2],[1,1,0,1]],[[2,2,0,1],[2,0,3,1],[2,3,3,2],[1,1,0,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,0],[1,2,1,1]],[[1,1,2,0],[3,3,0,2],[2,2,3,0],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[3,2,3,0],[1,2,1,1]],[[1,1,2,0],[2,3,0,2],[2,2,3,0],[2,2,1,1]],[[1,1,2,0],[2,3,0,2],[2,2,3,0],[1,3,1,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,1],[0,1,2,1]],[[1,1,2,0],[3,3,0,2],[2,2,3,1],[0,1,2,1]],[[1,1,2,0],[2,4,0,2],[2,2,3,1],[0,1,2,1]],[[1,1,2,0],[2,3,0,2],[3,2,3,1],[0,1,2,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[3,3,0,2],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[2,4,0,2],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,0,2],[3,2,3,1],[0,2,1,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,1],[1,0,2,1]],[[1,1,2,0],[3,3,0,2],[2,2,3,1],[1,0,2,1]],[[1,1,2,0],[2,4,0,2],[2,2,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[3,2,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[2,2,3,1],[2,0,2,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,1],[1,1,1,1]],[[1,1,2,0],[3,3,0,2],[2,2,3,1],[1,1,1,1]],[[1,1,2,0],[2,4,0,2],[2,2,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[3,2,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[2,2,3,1],[2,1,1,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,1],[1,2,1,0]],[[1,1,2,0],[3,3,0,2],[2,2,3,1],[1,2,1,0]],[[1,1,2,0],[2,3,0,2],[3,2,3,1],[1,2,1,0]],[[1,1,2,0],[2,3,0,2],[2,2,3,1],[2,2,1,0]],[[1,1,2,0],[2,3,0,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[1,0,3,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[2,0,2,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,3],[1,0,2,0]],[[1,2,0,1],[2,0,3,1],[2,3,4,2],[1,0,2,0]],[[1,2,0,1],[2,0,3,1],[2,4,3,2],[1,0,2,0]],[[1,2,0,1],[2,0,3,1],[3,3,3,2],[1,0,2,0]],[[2,1,2,0],[2,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,1,2,0],[3,3,0,2],[2,2,3,2],[0,1,1,1]],[[1,1,2,0],[2,4,0,2],[2,2,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,0,2],[3,2,3,2],[0,1,1,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,1,2,0],[3,3,0,2],[2,2,3,2],[0,1,2,0]],[[1,1,2,0],[2,4,0,2],[2,2,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,0,2],[3,2,3,2],[0,1,2,0]],[[2,1,2,0],[2,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,1,2,0],[3,3,0,2],[2,2,3,2],[0,2,0,1]],[[1,1,2,0],[2,4,0,2],[2,2,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,0,2],[3,2,3,2],[0,2,0,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,1,2,0],[3,3,0,2],[2,2,3,2],[0,2,1,0]],[[1,1,2,0],[2,4,0,2],[2,2,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,0,2],[3,2,3,2],[0,2,1,0]],[[1,2,0,1],[2,0,4,1],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[3,0,3,1],[2,3,3,2],[1,0,2,0]],[[1,3,0,1],[2,0,3,1],[2,3,3,2],[1,0,2,0]],[[2,2,0,1],[2,0,3,1],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[1,0,1,2]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[2,0,1,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,3],[1,0,1,1]],[[1,2,0,1],[2,0,3,1],[2,3,4,2],[1,0,1,1]],[[1,2,0,1],[2,0,3,1],[2,4,3,2],[1,0,1,1]],[[1,2,0,1],[2,0,3,1],[3,3,3,2],[1,0,1,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,1,2,0],[3,3,0,2],[2,2,3,2],[1,0,1,1]],[[1,1,2,0],[2,4,0,2],[2,2,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,0,2],[3,2,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,0,2],[2,2,3,2],[2,0,1,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,2],[1,0,2,0]],[[1,1,2,0],[3,3,0,2],[2,2,3,2],[1,0,2,0]],[[1,1,2,0],[2,4,0,2],[2,2,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,0,2],[3,2,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,0,2],[2,2,3,2],[2,0,2,0]],[[2,1,2,0],[2,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,1,2,0],[3,3,0,2],[2,2,3,2],[1,1,0,1]],[[1,1,2,0],[2,4,0,2],[2,2,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,0,2],[3,2,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,0,2],[2,2,3,2],[2,1,0,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,1,2,0],[3,3,0,2],[2,2,3,2],[1,1,1,0]],[[1,1,2,0],[2,4,0,2],[2,2,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,0,2],[3,2,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,0,2],[2,2,3,2],[2,1,1,0]],[[1,2,0,1],[2,0,4,1],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[3,0,3,1],[2,3,3,2],[1,0,1,1]],[[1,3,0,1],[2,0,3,1],[2,3,3,2],[1,0,1,1]],[[2,2,0,1],[2,0,3,1],[2,3,3,2],[1,0,1,1]],[[2,1,2,0],[2,3,0,2],[2,2,3,2],[1,2,0,0]],[[1,1,2,0],[3,3,0,2],[2,2,3,2],[1,2,0,0]],[[1,1,2,0],[2,4,0,2],[2,2,3,2],[1,2,0,0]],[[1,1,2,0],[2,3,0,2],[3,2,3,2],[1,2,0,0]],[[1,1,2,0],[2,3,0,2],[2,2,3,2],[2,2,0,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,3],[0,2,1,0]],[[1,2,0,1],[2,0,3,1],[2,3,4,2],[0,2,1,0]],[[1,2,0,1],[2,0,3,1],[2,4,3,2],[0,2,1,0]],[[1,2,0,1],[2,0,3,1],[3,3,3,2],[0,2,1,0]],[[1,2,0,1],[2,0,4,1],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[3,0,3,1],[2,3,3,2],[0,2,1,0]],[[1,3,0,1],[2,0,3,1],[2,3,3,2],[0,2,1,0]],[[2,2,0,1],[2,0,3,1],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[0,2,0,2]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[0,3,0,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,3],[0,2,0,1]],[[2,1,2,0],[2,3,0,2],[2,3,1,0],[1,2,2,1]],[[1,1,2,0],[3,3,0,2],[2,3,1,0],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[3,3,1,0],[1,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,3,1,0],[2,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,3,1,0],[1,3,2,1]],[[2,1,2,0],[2,3,0,2],[2,3,1,1],[1,2,2,0]],[[1,1,2,0],[3,3,0,2],[2,3,1,1],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[3,3,1,1],[1,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,3,1,1],[2,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,3,1,1],[1,3,2,0]],[[1,2,0,1],[2,0,3,1],[2,3,4,2],[0,2,0,1]],[[1,2,0,1],[2,0,3,1],[2,4,3,2],[0,2,0,1]],[[1,2,0,1],[2,0,3,1],[3,3,3,2],[0,2,0,1]],[[1,2,0,1],[2,0,4,1],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[3,0,3,1],[2,3,3,2],[0,2,0,1]],[[1,3,0,1],[2,0,3,1],[2,3,3,2],[0,2,0,1]],[[2,2,0,1],[2,0,3,1],[2,3,3,2],[0,2,0,1]],[[2,1,2,0],[2,3,0,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,0],[3,3,0,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[3,3,2,0],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,4,2,0],[0,2,2,1]],[[1,1,2,0],[2,3,0,2],[2,3,2,0],[0,3,2,1]],[[1,1,2,0],[2,3,0,2],[2,3,2,0],[0,2,3,1]],[[2,1,2,0],[2,3,0,2],[2,3,2,0],[1,1,2,1]],[[1,1,2,0],[3,3,0,2],[2,3,2,0],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[3,3,2,0],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[2,4,2,0],[1,1,2,1]],[[1,1,2,0],[2,3,0,2],[2,3,2,0],[2,1,2,1]],[[2,1,2,0],[2,3,0,2],[2,3,2,1],[0,2,2,0]],[[1,1,2,0],[3,3,0,2],[2,3,2,1],[0,2,2,0]],[[1,1,2,0],[2,3,0,2],[3,3,2,1],[0,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,4,2,1],[0,2,2,0]],[[1,1,2,0],[2,3,0,2],[2,3,2,1],[0,3,2,0]],[[2,1,2,0],[2,3,0,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,0],[3,3,0,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,0],[2,3,0,2],[3,3,2,1],[1,1,2,0]],[[1,1,2,0],[2,3,0,2],[2,4,2,1],[1,1,2,0]],[[1,1,2,0],[2,3,0,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[0,1,3,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,3],[0,1,2,0]],[[1,2,0,1],[2,0,3,1],[2,3,4,2],[0,1,2,0]],[[1,2,0,1],[2,0,3,1],[2,4,3,2],[0,1,2,0]],[[1,2,0,1],[2,0,3,1],[3,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,0,4,1],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[3,0,3,1],[2,3,3,2],[0,1,2,0]],[[1,3,0,1],[2,0,3,1],[2,3,3,2],[0,1,2,0]],[[2,2,0,1],[2,0,3,1],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[0,1,1,2]],[[1,2,0,1],[2,0,3,1],[2,3,3,3],[0,1,1,1]],[[1,2,0,1],[2,0,3,1],[2,3,4,2],[0,1,1,1]],[[1,2,0,1],[2,0,3,1],[2,4,3,2],[0,1,1,1]],[[1,2,0,1],[2,0,3,1],[3,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,0,4,1],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[3,0,3,1],[2,3,3,2],[0,1,1,1]],[[1,3,0,1],[2,0,3,1],[2,3,3,2],[0,1,1,1]],[[2,2,0,1],[2,0,3,1],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,2],[0,0,2,2]],[[1,2,0,1],[2,0,3,1],[2,3,3,3],[0,0,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,4,2],[0,0,2,1]],[[1,2,0,1],[2,0,4,1],[2,3,3,2],[0,0,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[2,0,3,1],[2,4,3,1],[1,2,0,1]],[[1,2,0,1],[2,0,3,1],[3,3,3,1],[1,2,0,1]],[[1,2,0,1],[3,0,3,1],[2,3,3,1],[1,2,0,1]],[[2,2,0,1],[2,0,3,1],[2,3,3,1],[1,2,0,1]],[[2,1,2,0],[2,3,0,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[3,3,0,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,0],[2,3,0,2],[3,3,3,0],[0,1,2,1]],[[1,1,2,0],[2,3,0,2],[2,4,3,0],[0,1,2,1]],[[2,1,2,0],[2,3,0,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[3,3,0,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,0],[2,3,0,2],[3,3,3,0],[0,2,1,1]],[[1,1,2,0],[2,3,0,2],[2,4,3,0],[0,2,1,1]],[[1,1,2,0],[2,3,0,2],[2,3,3,0],[0,3,1,1]],[[2,1,2,0],[2,3,0,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[3,3,0,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[3,3,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[2,4,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,0,2],[2,3,3,0],[2,0,2,1]],[[2,1,2,0],[2,3,0,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[3,3,0,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[3,3,3,0],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[2,4,3,0],[1,1,1,1]],[[1,1,2,0],[2,3,0,2],[2,3,3,0],[2,1,1,1]],[[2,1,2,0],[2,3,0,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,0],[3,3,0,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,0],[2,3,0,2],[3,3,3,0],[1,2,0,1]],[[1,1,2,0],[2,3,0,2],[2,4,3,0],[1,2,0,1]],[[1,1,2,0],[2,3,0,2],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[2,0,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,0,1],[2,0,3,1],[2,4,3,1],[1,1,1,1]],[[2,1,2,0],[2,3,0,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[3,3,0,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,0],[2,3,0,2],[3,3,3,1],[0,1,2,0]],[[1,1,2,0],[2,3,0,2],[2,4,3,1],[0,1,2,0]],[[2,1,2,0],[2,3,0,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[3,3,0,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,3,0,2],[3,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,3,0,2],[2,4,3,1],[0,2,0,1]],[[2,1,2,0],[2,3,0,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[3,3,0,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,0],[2,3,0,2],[3,3,3,1],[0,2,1,0]],[[1,1,2,0],[2,3,0,2],[2,4,3,1],[0,2,1,0]],[[1,1,2,0],[2,3,0,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[2,0,3,1],[3,3,3,1],[1,1,1,1]],[[1,2,0,1],[2,0,4,1],[2,3,3,1],[1,1,1,1]],[[1,2,0,1],[3,0,3,1],[2,3,3,1],[1,1,1,1]],[[1,3,0,1],[2,0,3,1],[2,3,3,1],[1,1,1,1]],[[2,2,0,1],[2,0,3,1],[2,3,3,1],[1,1,1,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,1],[1,0,2,2]],[[1,2,0,1],[2,0,3,1],[2,3,3,1],[1,0,3,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,1],[2,0,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,4,1],[1,0,2,1]],[[2,1,2,0],[2,3,0,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[3,3,0,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,0,2],[3,3,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,0,2],[2,4,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,0,2],[2,3,3,1],[2,0,2,0]],[[2,1,2,0],[2,3,0,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[3,3,0,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,0],[2,3,0,2],[3,3,3,1],[1,1,0,1]],[[1,1,2,0],[2,3,0,2],[2,4,3,1],[1,1,0,1]],[[1,1,2,0],[2,3,0,2],[2,3,3,1],[2,1,0,1]],[[2,1,2,0],[2,3,0,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[3,3,0,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,0],[2,3,0,2],[3,3,3,1],[1,1,1,0]],[[1,1,2,0],[2,3,0,2],[2,4,3,1],[1,1,1,0]],[[1,1,2,0],[2,3,0,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[2,0,3,1],[2,4,3,1],[1,0,2,1]],[[1,2,0,1],[2,0,3,1],[3,3,3,1],[1,0,2,1]],[[1,2,0,1],[2,0,4,1],[2,3,3,1],[1,0,2,1]],[[1,2,0,1],[3,0,3,1],[2,3,3,1],[1,0,2,1]],[[1,3,0,1],[2,0,3,1],[2,3,3,1],[1,0,2,1]],[[2,2,0,1],[2,0,3,1],[2,3,3,1],[1,0,2,1]],[[2,1,2,0],[2,3,0,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,0],[3,3,0,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,0],[2,3,0,2],[3,3,3,1],[1,2,0,0]],[[1,1,2,0],[2,3,0,2],[2,4,3,1],[1,2,0,0]],[[1,1,2,0],[2,3,0,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[2,0,3,1],[2,3,3,1],[0,3,1,1]],[[1,2,0,1],[2,0,3,1],[2,3,4,1],[0,2,1,1]],[[1,2,0,1],[2,0,3,1],[2,4,3,1],[0,2,1,1]],[[1,2,0,1],[2,0,3,1],[3,3,3,1],[0,2,1,1]],[[1,2,0,1],[2,0,4,1],[2,3,3,1],[0,2,1,1]],[[1,2,0,1],[3,0,3,1],[2,3,3,1],[0,2,1,1]],[[1,3,0,1],[2,0,3,1],[2,3,3,1],[0,2,1,1]],[[2,2,0,1],[2,0,3,1],[2,3,3,1],[0,2,1,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,1],[0,1,2,2]],[[1,2,0,1],[2,0,3,1],[2,3,3,1],[0,1,3,1]],[[1,2,0,1],[2,0,3,1],[2,3,4,1],[0,1,2,1]],[[1,2,0,1],[2,0,3,1],[2,4,3,1],[0,1,2,1]],[[1,2,0,1],[2,0,3,1],[3,3,3,1],[0,1,2,1]],[[1,2,0,1],[2,0,4,1],[2,3,3,1],[0,1,2,1]],[[1,2,0,1],[3,0,3,1],[2,3,3,1],[0,1,2,1]],[[1,3,0,1],[2,0,3,1],[2,3,3,1],[0,1,2,1]],[[2,2,0,1],[2,0,3,1],[2,3,3,1],[0,1,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,0],[2,1,2,1]],[[1,2,0,1],[2,0,3,1],[2,4,3,0],[1,1,2,1]],[[1,2,0,1],[2,0,3,1],[3,3,3,0],[1,1,2,1]],[[1,2,0,1],[3,0,3,1],[2,3,3,0],[1,1,2,1]],[[2,2,0,1],[2,0,3,1],[2,3,3,0],[1,1,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,0],[0,2,3,1]],[[1,2,0,1],[2,0,3,1],[2,3,3,0],[0,3,2,1]],[[1,2,0,1],[2,0,3,1],[2,4,3,0],[0,2,2,1]],[[1,2,0,1],[2,0,3,1],[3,3,3,0],[0,2,2,1]],[[1,2,0,1],[3,0,3,1],[2,3,3,0],[0,2,2,1]],[[2,2,0,1],[2,0,3,1],[2,3,3,0],[0,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,0,3,1],[2,4,2,2],[1,1,2,0]],[[1,2,0,1],[2,0,3,1],[3,3,2,2],[1,1,2,0]],[[1,2,0,1],[3,0,3,1],[2,3,2,2],[1,1,2,0]],[[1,3,0,1],[2,0,3,1],[2,3,2,2],[1,1,2,0]],[[2,2,0,1],[2,0,3,1],[2,3,2,2],[1,1,2,0]],[[2,1,2,0],[2,3,0,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[3,3,0,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[2,4,0,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[2,3,0,2],[3,3,3,2],[1,0,0,1]],[[2,1,2,0],[2,3,0,2],[2,3,3,2],[1,0,1,0]],[[1,1,2,0],[3,3,0,2],[2,3,3,2],[1,0,1,0]],[[1,1,2,0],[2,4,0,2],[2,3,3,2],[1,0,1,0]],[[1,1,2,0],[2,3,0,2],[3,3,3,2],[1,0,1,0]],[[1,2,0,1],[2,0,3,1],[2,3,2,2],[1,0,2,2]],[[1,2,0,1],[2,0,3,1],[2,3,2,2],[1,0,3,1]],[[1,2,0,1],[2,0,3,1],[2,3,2,3],[1,0,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,2,2],[0,2,3,0]],[[1,2,0,1],[2,0,3,1],[2,3,2,2],[0,3,2,0]],[[1,2,0,1],[2,0,3,1],[2,4,2,2],[0,2,2,0]],[[1,2,0,1],[2,0,3,1],[3,3,2,2],[0,2,2,0]],[[1,2,0,1],[3,0,3,1],[2,3,2,2],[0,2,2,0]],[[1,3,0,1],[2,0,3,1],[2,3,2,2],[0,2,2,0]],[[2,2,0,1],[2,0,3,1],[2,3,2,2],[0,2,2,0]],[[1,2,0,1],[2,0,3,1],[2,3,2,2],[0,1,2,2]],[[1,2,0,1],[2,0,3,1],[2,3,2,2],[0,1,3,1]],[[1,2,0,1],[2,0,3,1],[2,3,2,3],[0,1,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,2,1],[2,1,2,1]],[[1,2,0,1],[2,0,3,1],[2,4,2,1],[1,1,2,1]],[[1,2,0,1],[2,0,3,1],[3,3,2,1],[1,1,2,1]],[[1,2,0,1],[3,0,3,1],[2,3,2,1],[1,1,2,1]],[[1,3,0,1],[2,0,3,1],[2,3,2,1],[1,1,2,1]],[[2,2,0,1],[2,0,3,1],[2,3,2,1],[1,1,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,2,1],[0,2,2,2]],[[1,2,0,1],[2,0,3,1],[2,3,2,1],[0,2,3,1]],[[1,2,0,1],[2,0,3,1],[2,3,2,1],[0,3,2,1]],[[1,2,0,1],[2,0,3,1],[2,4,2,1],[0,2,2,1]],[[1,2,0,1],[2,0,3,1],[3,3,2,1],[0,2,2,1]],[[1,2,0,1],[3,0,3,1],[2,3,2,1],[0,2,2,1]],[[1,3,0,1],[2,0,3,1],[2,3,2,1],[0,2,2,1]],[[2,2,0,1],[2,0,3,1],[2,3,2,1],[0,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,1,2],[2,1,2,1]],[[1,2,0,1],[2,0,3,1],[2,4,1,2],[1,1,2,1]],[[1,2,0,1],[2,0,3,1],[3,3,1,2],[1,1,2,1]],[[1,2,0,1],[3,0,3,1],[2,3,1,2],[1,1,2,1]],[[1,3,0,1],[2,0,3,1],[2,3,1,2],[1,1,2,1]],[[2,2,0,1],[2,0,3,1],[2,3,1,2],[1,1,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,1,2],[0,2,2,2]],[[1,2,0,1],[2,0,3,1],[2,3,1,2],[0,2,3,1]],[[1,2,0,1],[2,0,3,1],[2,3,1,2],[0,3,2,1]],[[1,2,0,1],[2,0,3,1],[2,3,1,3],[0,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,4,1,2],[0,2,2,1]],[[1,2,0,1],[2,0,3,1],[3,3,1,2],[0,2,2,1]],[[1,2,0,1],[3,0,3,1],[2,3,1,2],[0,2,2,1]],[[1,3,0,1],[2,0,3,1],[2,3,1,2],[0,2,2,1]],[[2,2,0,1],[2,0,3,1],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[2,0,3,1],[2,2,3,2],[2,2,1,0]],[[1,2,0,1],[2,0,3,1],[3,2,3,2],[1,2,1,0]],[[1,2,0,1],[3,0,3,1],[2,2,3,2],[1,2,1,0]],[[1,3,0,1],[2,0,3,1],[2,2,3,2],[1,2,1,0]],[[2,2,0,1],[2,0,3,1],[2,2,3,2],[1,2,1,0]],[[1,2,0,1],[2,0,3,1],[2,2,3,2],[1,3,0,1]],[[1,1,2,0],[2,3,1,0],[0,2,4,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,0],[0,2,3,2],[2,2,2,1]],[[1,1,2,0],[2,3,1,0],[0,2,3,2],[1,3,2,1]],[[1,1,2,0],[2,3,1,0],[0,2,3,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,0],[0,2,3,2],[1,2,2,2]],[[2,1,2,0],[2,3,1,0],[0,3,2,2],[1,2,2,1]],[[1,1,2,0],[3,3,1,0],[0,3,2,2],[1,2,2,1]],[[1,1,2,0],[2,4,1,0],[0,3,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,0],[0,4,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,0],[0,3,2,2],[2,2,2,1]],[[1,1,2,0],[2,3,1,0],[0,3,2,2],[1,3,2,1]],[[1,1,2,0],[2,3,1,0],[0,3,2,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,0],[0,3,2,2],[1,2,2,2]],[[2,1,2,0],[2,3,1,0],[0,3,3,2],[1,1,2,1]],[[1,1,2,0],[3,3,1,0],[0,3,3,2],[1,1,2,1]],[[1,1,2,0],[2,4,1,0],[0,3,3,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,0],[0,4,3,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,0],[0,3,4,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,0],[0,3,3,2],[1,1,3,1]],[[1,1,2,0],[2,3,1,0],[0,3,3,2],[1,1,2,2]],[[2,1,2,0],[2,3,1,0],[0,3,3,2],[1,2,1,1]],[[1,1,2,0],[3,3,1,0],[0,3,3,2],[1,2,1,1]],[[1,1,2,0],[2,4,1,0],[0,3,3,2],[1,2,1,1]],[[1,1,2,0],[2,3,1,0],[0,4,3,2],[1,2,1,1]],[[1,1,2,0],[2,3,1,0],[0,3,4,2],[1,2,1,1]],[[1,1,2,0],[2,3,1,0],[0,3,3,2],[2,2,1,1]],[[1,1,2,0],[2,3,1,0],[0,3,3,2],[1,3,1,1]],[[1,1,2,0],[2,3,1,0],[1,2,4,2],[0,2,2,1]],[[1,1,2,0],[2,3,1,0],[1,2,3,2],[0,3,2,1]],[[1,1,2,0],[2,3,1,0],[1,2,3,2],[0,2,3,1]],[[1,1,2,0],[2,3,1,0],[1,2,3,2],[0,2,2,2]],[[2,1,2,0],[2,3,1,0],[1,3,2,2],[0,2,2,1]],[[1,1,2,0],[3,3,1,0],[1,3,2,2],[0,2,2,1]],[[1,1,2,0],[2,4,1,0],[1,3,2,2],[0,2,2,1]],[[1,1,2,0],[2,3,1,0],[1,4,2,2],[0,2,2,1]],[[1,1,2,0],[2,3,1,0],[1,3,2,2],[0,3,2,1]],[[1,1,2,0],[2,3,1,0],[1,3,2,2],[0,2,3,1]],[[1,1,2,0],[2,3,1,0],[1,3,2,2],[0,2,2,2]],[[2,1,2,0],[2,3,1,0],[1,3,2,2],[1,1,2,1]],[[1,1,2,0],[3,3,1,0],[1,3,2,2],[1,1,2,1]],[[1,1,2,0],[2,4,1,0],[1,3,2,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,0],[1,4,2,2],[1,1,2,1]],[[2,1,2,0],[2,3,1,0],[1,3,3,2],[0,1,2,1]],[[1,1,2,0],[3,3,1,0],[1,3,3,2],[0,1,2,1]],[[1,1,2,0],[2,4,1,0],[1,3,3,2],[0,1,2,1]],[[1,1,2,0],[2,3,1,0],[1,4,3,2],[0,1,2,1]],[[1,1,2,0],[2,3,1,0],[1,3,4,2],[0,1,2,1]],[[1,1,2,0],[2,3,1,0],[1,3,3,2],[0,1,3,1]],[[1,1,2,0],[2,3,1,0],[1,3,3,2],[0,1,2,2]],[[2,1,2,0],[2,3,1,0],[1,3,3,2],[0,2,1,1]],[[1,1,2,0],[3,3,1,0],[1,3,3,2],[0,2,1,1]],[[1,1,2,0],[2,4,1,0],[1,3,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,1,0],[1,4,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,1,0],[1,3,4,2],[0,2,1,1]],[[1,1,2,0],[2,3,1,0],[1,3,3,2],[0,3,1,1]],[[2,1,2,0],[2,3,1,0],[1,3,3,2],[1,0,2,1]],[[1,1,2,0],[3,3,1,0],[1,3,3,2],[1,0,2,1]],[[1,1,2,0],[2,4,1,0],[1,3,3,2],[1,0,2,1]],[[1,1,2,0],[2,3,1,0],[1,4,3,2],[1,0,2,1]],[[1,1,2,0],[2,3,1,0],[1,3,4,2],[1,0,2,1]],[[1,1,2,0],[2,3,1,0],[1,3,3,2],[1,0,3,1]],[[1,1,2,0],[2,3,1,0],[1,3,3,2],[1,0,2,2]],[[2,1,2,0],[2,3,1,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[3,3,1,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,4,1,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,1,0],[1,4,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,1,0],[1,3,4,2],[1,1,1,1]],[[1,2,0,1],[2,0,3,1],[2,2,3,2],[2,2,0,1]],[[1,2,0,1],[2,0,3,1],[3,2,3,2],[1,2,0,1]],[[1,2,0,1],[3,0,3,1],[2,2,3,2],[1,2,0,1]],[[1,3,0,1],[2,0,3,1],[2,2,3,2],[1,2,0,1]],[[2,2,0,1],[2,0,3,1],[2,2,3,2],[1,2,0,1]],[[2,1,2,0],[2,3,1,0],[2,0,3,2],[1,2,2,1]],[[1,1,2,0],[3,3,1,0],[2,0,3,2],[1,2,2,1]],[[1,1,2,0],[2,4,1,0],[2,0,3,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,0],[3,0,3,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,0],[2,0,4,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,0],[2,0,3,2],[2,2,2,1]],[[1,1,2,0],[2,3,1,0],[2,0,3,2],[1,3,2,1]],[[1,1,2,0],[2,3,1,0],[2,0,3,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,0],[2,0,3,2],[1,2,2,2]],[[2,1,2,0],[2,3,1,0],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[3,3,1,0],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,4,1,0],[2,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,0],[3,1,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,0],[2,1,2,2],[2,2,2,1]],[[1,1,2,0],[2,3,1,0],[2,1,2,2],[1,3,2,1]],[[1,1,2,0],[2,3,1,0],[2,1,2,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,0],[2,1,2,2],[1,2,2,2]],[[2,1,2,0],[2,3,1,0],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[3,3,1,0],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[2,4,1,0],[2,1,3,2],[1,2,1,1]],[[1,1,2,0],[2,3,1,0],[3,1,3,2],[1,2,1,1]],[[1,1,2,0],[2,3,1,0],[2,1,3,2],[2,2,1,1]],[[1,1,2,0],[2,3,1,0],[2,1,3,2],[1,3,1,1]],[[2,1,2,0],[2,3,1,0],[2,2,2,2],[0,2,2,1]],[[1,1,2,0],[3,3,1,0],[2,2,2,2],[0,2,2,1]],[[1,1,2,0],[2,4,1,0],[2,2,2,2],[0,2,2,1]],[[1,1,2,0],[2,3,1,0],[3,2,2,2],[0,2,2,1]],[[2,1,2,0],[2,3,1,0],[2,2,2,2],[1,1,2,1]],[[1,1,2,0],[3,3,1,0],[2,2,2,2],[1,1,2,1]],[[1,1,2,0],[2,4,1,0],[2,2,2,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,0],[3,2,2,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,0],[2,2,2,2],[2,1,2,1]],[[2,1,2,0],[2,3,1,0],[2,2,3,2],[0,1,2,1]],[[1,1,2,0],[3,3,1,0],[2,2,3,2],[0,1,2,1]],[[1,1,2,0],[2,4,1,0],[2,2,3,2],[0,1,2,1]],[[1,1,2,0],[2,3,1,0],[3,2,3,2],[0,1,2,1]],[[2,1,2,0],[2,3,1,0],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[3,3,1,0],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[2,4,1,0],[2,2,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,1,0],[3,2,3,2],[0,2,1,1]],[[2,1,2,0],[2,3,1,0],[2,2,3,2],[1,0,2,1]],[[1,1,2,0],[3,3,1,0],[2,2,3,2],[1,0,2,1]],[[1,1,2,0],[2,4,1,0],[2,2,3,2],[1,0,2,1]],[[1,1,2,0],[2,3,1,0],[3,2,3,2],[1,0,2,1]],[[1,1,2,0],[2,3,1,0],[2,2,3,2],[2,0,2,1]],[[2,1,2,0],[2,3,1,0],[2,2,3,2],[1,1,1,1]],[[1,1,2,0],[3,3,1,0],[2,2,3,2],[1,1,1,1]],[[1,1,2,0],[2,4,1,0],[2,2,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,1,0],[3,2,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,1,0],[2,2,3,2],[2,1,1,1]],[[1,2,0,1],[2,0,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,0,1],[2,0,3,1],[2,2,3,2],[0,3,2,0]],[[1,2,0,1],[2,0,3,1],[2,2,3,3],[0,2,2,0]],[[1,2,0,1],[2,0,3,1],[2,2,4,2],[0,2,2,0]],[[1,2,0,1],[2,0,4,1],[2,2,3,2],[0,2,2,0]],[[1,2,0,1],[2,0,3,1],[2,2,3,2],[0,2,1,2]],[[1,2,0,1],[2,0,3,1],[2,2,3,3],[0,2,1,1]],[[1,2,0,1],[2,0,3,1],[2,2,4,2],[0,2,1,1]],[[1,2,0,1],[2,0,4,1],[2,2,3,2],[0,2,1,1]],[[1,2,0,1],[2,0,3,1],[2,2,3,1],[1,3,1,1]],[[1,2,0,1],[2,0,3,1],[2,2,3,1],[2,2,1,1]],[[1,2,0,1],[2,0,3,1],[3,2,3,1],[1,2,1,1]],[[1,2,0,1],[3,0,3,1],[2,2,3,1],[1,2,1,1]],[[1,3,0,1],[2,0,3,1],[2,2,3,1],[1,2,1,1]],[[2,2,0,1],[2,0,3,1],[2,2,3,1],[1,2,1,1]],[[1,2,0,1],[2,0,3,1],[2,2,3,1],[0,2,2,2]],[[1,2,0,1],[2,0,3,1],[2,2,3,1],[0,2,3,1]],[[1,2,0,1],[2,0,3,1],[2,2,3,1],[0,3,2,1]],[[1,2,0,1],[2,0,3,1],[2,2,4,1],[0,2,2,1]],[[1,2,0,1],[2,0,4,1],[2,2,3,1],[0,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,2,3,0],[1,2,3,1]],[[1,2,0,1],[2,0,3,1],[2,2,3,0],[1,3,2,1]],[[1,2,0,1],[2,0,3,1],[2,2,3,0],[2,2,2,1]],[[1,2,0,1],[2,0,3,1],[3,2,3,0],[1,2,2,1]],[[1,2,0,1],[3,0,3,1],[2,2,3,0],[1,2,2,1]],[[2,2,0,1],[2,0,3,1],[2,2,3,0],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,2,2,2],[1,2,3,0]],[[1,2,0,1],[2,0,3,1],[2,2,2,2],[1,3,2,0]],[[1,2,0,1],[2,0,3,1],[2,2,2,2],[2,2,2,0]],[[1,2,0,1],[2,0,3,1],[3,2,2,2],[1,2,2,0]],[[1,2,0,1],[3,0,3,1],[2,2,2,2],[1,2,2,0]],[[1,3,0,1],[2,0,3,1],[2,2,2,2],[1,2,2,0]],[[2,2,0,1],[2,0,3,1],[2,2,2,2],[1,2,2,0]],[[1,2,0,1],[2,0,3,1],[2,2,2,2],[0,2,2,2]],[[1,2,0,1],[2,0,3,1],[2,2,2,2],[0,2,3,1]],[[1,2,0,1],[2,0,3,1],[2,2,2,2],[0,3,2,1]],[[1,2,0,1],[2,0,3,1],[2,2,2,3],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,2,2,3],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,2,2,2],[2,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,2,2,2],[1,3,2,1]],[[1,1,2,0],[2,3,1,1],[0,2,2,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,1],[0,2,2,2],[1,2,2,2]],[[1,1,2,0],[2,3,1,1],[0,2,4,1],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,2,3,1],[2,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,2,3,1],[1,3,2,1]],[[1,1,2,0],[2,3,1,1],[0,2,3,1],[1,2,3,1]],[[1,1,2,0],[2,3,1,1],[0,2,3,1],[1,2,2,2]],[[1,1,2,0],[2,3,1,1],[0,2,4,2],[1,2,1,1]],[[1,1,2,0],[2,3,1,1],[0,2,3,3],[1,2,1,1]],[[1,1,2,0],[2,3,1,1],[0,2,3,2],[1,2,1,2]],[[1,1,2,0],[2,3,1,1],[0,2,4,2],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[0,2,3,3],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[0,2,3,2],[2,2,2,0]],[[1,1,2,0],[2,3,1,1],[0,2,3,2],[1,3,2,0]],[[1,1,2,0],[2,3,1,1],[0,2,3,2],[1,2,3,0]],[[2,1,2,0],[2,3,1,1],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[3,3,1,1],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,4,1,1],[0,3,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,4,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,1,3],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,1,2],[2,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,1,2],[1,3,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,1,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,1],[0,3,1,2],[1,2,2,2]],[[2,1,2,0],[2,3,1,1],[0,3,2,1],[1,2,2,1]],[[1,1,2,0],[3,3,1,1],[0,3,2,1],[1,2,2,1]],[[1,1,2,0],[2,4,1,1],[0,3,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,4,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,2,1],[2,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,2,1],[1,3,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,2,1],[1,2,3,1]],[[1,1,2,0],[2,3,1,1],[0,3,2,1],[1,2,2,2]],[[1,1,2,0],[2,3,1,1],[0,3,2,3],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,2,2],[1,1,3,1]],[[1,1,2,0],[2,3,1,1],[0,3,2,2],[1,1,2,2]],[[2,1,2,0],[2,3,1,1],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[3,3,1,1],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[2,4,1,1],[0,3,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[0,4,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[0,3,2,2],[2,2,2,0]],[[1,1,2,0],[2,3,1,1],[0,3,2,2],[1,3,2,0]],[[1,1,2,0],[2,3,1,1],[0,3,2,2],[1,2,3,0]],[[2,1,2,0],[2,3,1,1],[0,3,3,0],[1,2,2,1]],[[1,1,2,0],[3,3,1,1],[0,3,3,0],[1,2,2,1]],[[1,1,2,0],[2,4,1,1],[0,3,3,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,4,3,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,0],[2,2,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,0],[1,3,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,0],[1,2,3,1]],[[2,1,2,0],[2,3,1,1],[0,3,3,1],[1,1,2,1]],[[1,1,2,0],[3,3,1,1],[0,3,3,1],[1,1,2,1]],[[1,1,2,0],[2,4,1,1],[0,3,3,1],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[0,4,3,1],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,4,1],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,1],[1,1,3,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,1],[1,1,2,2]],[[2,1,2,0],[2,3,1,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[3,3,1,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[2,4,1,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,1,1],[0,4,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,1,1],[0,3,4,1],[1,2,1,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,1],[2,2,1,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,1],[1,3,1,1]],[[1,1,2,0],[2,3,1,1],[0,3,4,2],[1,0,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,3],[1,0,2,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,2],[1,0,2,2]],[[2,1,2,0],[2,3,1,1],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[3,3,1,1],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,4,1,1],[0,3,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,1,1],[0,4,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,1,1],[0,3,4,2],[1,1,1,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,3],[1,1,1,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,2],[1,1,1,2]],[[2,1,2,0],[2,3,1,1],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[3,3,1,1],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[2,4,1,1],[0,3,3,2],[1,1,2,0]],[[1,1,2,0],[2,3,1,1],[0,4,3,2],[1,1,2,0]],[[1,1,2,0],[2,3,1,1],[0,3,4,2],[1,1,2,0]],[[1,1,2,0],[2,3,1,1],[0,3,3,3],[1,1,2,0]],[[1,1,2,0],[2,3,1,1],[0,3,3,2],[1,1,3,0]],[[2,1,2,0],[2,3,1,1],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[3,3,1,1],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,4,1,1],[0,3,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,1,1],[0,4,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,1,1],[0,3,4,2],[1,2,0,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,3],[1,2,0,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,2],[2,2,0,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,2],[1,3,0,1]],[[1,1,2,0],[2,3,1,1],[0,3,3,2],[1,2,0,2]],[[2,1,2,0],[2,3,1,1],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[3,3,1,1],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[2,4,1,1],[0,3,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,1,1],[0,4,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,1,1],[0,3,4,2],[1,2,1,0]],[[1,1,2,0],[2,3,1,1],[0,3,3,3],[1,2,1,0]],[[1,1,2,0],[2,3,1,1],[0,3,3,2],[2,2,1,0]],[[1,1,2,0],[2,3,1,1],[0,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,0,3,1],[2,2,2,1],[1,2,2,2]],[[1,2,0,1],[2,0,3,1],[2,2,2,1],[1,2,3,1]],[[1,2,0,1],[2,0,3,1],[2,2,2,1],[1,3,2,1]],[[1,2,0,1],[2,0,3,1],[2,2,2,1],[2,2,2,1]],[[1,2,0,1],[2,0,3,1],[3,2,2,1],[1,2,2,1]],[[1,2,0,1],[3,0,3,1],[2,2,2,1],[1,2,2,1]],[[1,3,0,1],[2,0,3,1],[2,2,2,1],[1,2,2,1]],[[2,2,0,1],[2,0,3,1],[2,2,2,1],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,2,1,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,1],[2,2,1,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,1],[1,2,2,3],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[1,2,2,2],[0,3,2,1]],[[1,1,2,0],[2,3,1,1],[1,2,2,2],[0,2,3,1]],[[1,1,2,0],[2,3,1,1],[1,2,2,2],[0,2,2,2]],[[1,1,2,0],[2,3,1,1],[1,2,4,1],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[1,2,3,1],[0,3,2,1]],[[1,1,2,0],[2,3,1,1],[1,2,3,1],[0,2,3,1]],[[1,1,2,0],[2,3,1,1],[1,2,3,1],[0,2,2,2]],[[1,1,2,0],[2,3,1,1],[1,2,4,2],[0,2,1,1]],[[1,1,2,0],[2,3,1,1],[1,2,3,3],[0,2,1,1]],[[1,1,2,0],[2,3,1,1],[1,2,3,2],[0,2,1,2]],[[1,1,2,0],[2,3,1,1],[1,2,4,2],[0,2,2,0]],[[1,1,2,0],[2,3,1,1],[1,2,3,3],[0,2,2,0]],[[1,1,2,0],[2,3,1,1],[1,2,3,2],[0,3,2,0]],[[1,1,2,0],[2,3,1,1],[1,2,3,2],[0,2,3,0]],[[1,2,0,1],[2,0,3,1],[2,2,1,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,1],[2,2,1,2],[2,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,2,1,3],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[3,2,1,2],[1,2,2,1]],[[1,2,0,1],[3,0,3,1],[2,2,1,2],[1,2,2,1]],[[1,3,0,1],[2,0,3,1],[2,2,1,2],[1,2,2,1]],[[2,1,2,0],[2,3,1,1],[1,3,1,2],[0,2,2,1]],[[1,1,2,0],[3,3,1,1],[1,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,4,1,1],[1,3,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[1,4,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,1,3],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,1,2],[0,3,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,1,2],[0,2,3,1]],[[1,1,2,0],[2,3,1,1],[1,3,1,2],[0,2,2,2]],[[2,1,2,0],[2,3,1,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[3,3,1,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,4,1,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[1,4,1,2],[1,1,2,1]],[[2,1,2,0],[2,3,1,1],[1,3,2,1],[0,2,2,1]],[[1,1,2,0],[3,3,1,1],[1,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,4,1,1],[1,3,2,1],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[1,4,2,1],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,2,1],[0,3,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,2,1],[0,2,3,1]],[[1,1,2,0],[2,3,1,1],[1,3,2,1],[0,2,2,2]],[[2,1,2,0],[2,3,1,1],[1,3,2,1],[1,1,2,1]],[[1,1,2,0],[3,3,1,1],[1,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,4,1,1],[1,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[1,4,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,2,3],[0,1,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,2,2],[0,1,3,1]],[[1,1,2,0],[2,3,1,1],[1,3,2,2],[0,1,2,2]],[[2,1,2,0],[2,3,1,1],[1,3,2,2],[0,2,2,0]],[[1,1,2,0],[3,3,1,1],[1,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,4,1,1],[1,3,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,1,1],[1,4,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,1,1],[1,3,2,2],[0,3,2,0]],[[1,1,2,0],[2,3,1,1],[1,3,2,2],[0,2,3,0]],[[1,1,2,0],[2,3,1,1],[1,3,2,3],[1,0,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,2,2],[1,0,3,1]],[[1,1,2,0],[2,3,1,1],[1,3,2,2],[1,0,2,2]],[[2,1,2,0],[2,3,1,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[3,3,1,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,4,1,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,1,1],[1,4,2,2],[1,1,2,0]],[[2,2,0,1],[2,0,3,1],[2,2,1,2],[1,2,2,1]],[[2,1,2,0],[2,3,1,1],[1,3,3,0],[0,2,2,1]],[[1,1,2,0],[3,3,1,1],[1,3,3,0],[0,2,2,1]],[[1,1,2,0],[2,4,1,1],[1,3,3,0],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[1,4,3,0],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,0],[0,3,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,0],[0,2,3,1]],[[2,1,2,0],[2,3,1,1],[1,3,3,0],[1,1,2,1]],[[1,1,2,0],[3,3,1,1],[1,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,4,1,1],[1,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[1,4,3,0],[1,1,2,1]],[[2,1,2,0],[2,3,1,1],[1,3,3,1],[0,1,2,1]],[[1,1,2,0],[3,3,1,1],[1,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,4,1,1],[1,3,3,1],[0,1,2,1]],[[1,1,2,0],[2,3,1,1],[1,4,3,1],[0,1,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,4,1],[0,1,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,1],[0,1,3,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,1],[0,1,2,2]],[[2,1,2,0],[2,3,1,1],[1,3,3,1],[0,2,1,1]],[[1,1,2,0],[3,3,1,1],[1,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,4,1,1],[1,3,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,1,1],[1,4,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,1,1],[1,3,4,1],[0,2,1,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,1],[0,3,1,1]],[[2,1,2,0],[2,3,1,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[3,3,1,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,4,1,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,1,1],[1,4,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,4,1],[1,0,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,1],[1,0,3,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,1],[1,0,2,2]],[[2,1,2,0],[2,3,1,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[3,3,1,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,4,1,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,1,1],[1,4,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,1,1],[1,3,4,1],[1,1,1,1]],[[2,1,2,0],[2,3,1,1],[1,3,3,1],[1,2,0,1]],[[1,1,2,0],[3,3,1,1],[1,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,4,1,1],[1,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,1,1],[1,4,3,1],[1,2,0,1]],[[1,2,0,1],[2,0,3,1],[2,1,3,2],[1,2,3,0]],[[1,2,0,1],[2,0,3,1],[2,1,3,2],[1,3,2,0]],[[1,2,0,1],[2,0,3,1],[2,1,3,2],[2,2,2,0]],[[1,2,0,1],[2,0,3,1],[2,1,3,3],[1,2,2,0]],[[1,2,0,1],[2,0,3,1],[2,1,4,2],[1,2,2,0]],[[1,2,0,1],[2,0,3,1],[3,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[1,3,4,2],[0,0,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,3],[0,0,2,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,2],[0,0,2,2]],[[2,1,2,0],[2,3,1,1],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[3,3,1,1],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,4,1,1],[1,3,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,1,1],[1,4,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,1,1],[1,3,4,2],[0,1,1,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,3],[0,1,1,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,2],[0,1,1,2]],[[2,1,2,0],[2,3,1,1],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[3,3,1,1],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,4,1,1],[1,3,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,1,1],[1,4,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,1,1],[1,3,4,2],[0,1,2,0]],[[1,1,2,0],[2,3,1,1],[1,3,3,3],[0,1,2,0]],[[1,1,2,0],[2,3,1,1],[1,3,3,2],[0,1,3,0]],[[2,1,2,0],[2,3,1,1],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[3,3,1,1],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,4,1,1],[1,3,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,1,1],[1,4,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,1,1],[1,3,4,2],[0,2,0,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,3],[0,2,0,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,2],[0,3,0,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,2],[0,2,0,2]],[[2,1,2,0],[2,3,1,1],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[3,3,1,1],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,4,1,1],[1,3,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,1,1],[1,4,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,1,1],[1,3,4,2],[0,2,1,0]],[[1,1,2,0],[2,3,1,1],[1,3,3,3],[0,2,1,0]],[[1,1,2,0],[2,3,1,1],[1,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,0,4,1],[2,1,3,2],[1,2,2,0]],[[1,2,0,1],[3,0,3,1],[2,1,3,2],[1,2,2,0]],[[1,3,0,1],[2,0,3,1],[2,1,3,2],[1,2,2,0]],[[2,2,0,1],[2,0,3,1],[2,1,3,2],[1,2,2,0]],[[1,2,0,1],[2,0,3,1],[2,1,3,2],[1,2,1,2]],[[1,2,0,1],[2,0,3,1],[2,1,3,3],[1,2,1,1]],[[1,2,0,1],[2,0,3,1],[2,1,4,2],[1,2,1,1]],[[1,2,0,1],[2,0,4,1],[2,1,3,2],[1,2,1,1]],[[1,2,0,1],[2,0,3,1],[2,1,3,2],[0,2,2,2]],[[2,1,2,0],[2,3,1,1],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[3,3,1,1],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,4,1,1],[1,3,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,1,1],[1,4,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,1,1],[1,3,4,2],[1,0,1,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,3],[1,0,1,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,2],[1,0,1,2]],[[2,1,2,0],[2,3,1,1],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[3,3,1,1],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,4,1,1],[1,3,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,1,1],[1,4,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,1,1],[1,3,4,2],[1,0,2,0]],[[1,1,2,0],[2,3,1,1],[1,3,3,3],[1,0,2,0]],[[1,1,2,0],[2,3,1,1],[1,3,3,2],[1,0,3,0]],[[2,1,2,0],[2,3,1,1],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[3,3,1,1],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,4,1,1],[1,3,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,1,1],[1,4,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,1,1],[1,3,4,2],[1,1,0,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,3],[1,1,0,1]],[[1,1,2,0],[2,3,1,1],[1,3,3,2],[1,1,0,2]],[[2,1,2,0],[2,3,1,1],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[3,3,1,1],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,4,1,1],[1,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,1,1],[1,4,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,1,1],[1,3,4,2],[1,1,1,0]],[[1,1,2,0],[2,3,1,1],[1,3,3,3],[1,1,1,0]],[[1,2,0,1],[2,0,3,1],[2,1,3,2],[0,2,3,1]],[[1,2,0,1],[2,0,3,1],[2,1,3,3],[0,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,1,3,1],[1,2,2,2]],[[1,2,0,1],[2,0,3,1],[2,1,3,1],[1,2,3,1]],[[1,2,0,1],[2,0,3,1],[2,1,3,1],[1,3,2,1]],[[1,2,0,1],[2,0,3,1],[2,1,3,1],[2,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,1,4,1],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[3,1,3,1],[1,2,2,1]],[[2,1,2,0],[2,3,1,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,0],[3,3,1,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,4,1,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,3,1,1],[1,4,3,2],[1,2,0,0]],[[1,2,0,1],[2,0,4,1],[2,1,3,1],[1,2,2,1]],[[1,2,0,1],[3,0,3,1],[2,1,3,1],[1,2,2,1]],[[1,3,0,1],[2,0,3,1],[2,1,3,1],[1,2,2,1]],[[2,2,0,1],[2,0,3,1],[2,1,3,1],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,1,2,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,1],[2,1,2,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,1],[2,1,2,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,1],[2,1,2,2],[2,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,1,2,3],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[3,1,2,2],[1,2,2,1]],[[1,2,0,1],[3,0,3,1],[2,1,2,2],[1,2,2,1]],[[1,3,0,1],[2,0,3,1],[2,1,2,2],[1,2,2,1]],[[2,2,0,1],[2,0,3,1],[2,1,2,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[2,0,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,1],[2,0,3,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,1],[2,0,3,3],[1,2,2,1]],[[2,1,2,0],[2,3,1,1],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[3,3,1,1],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,4,1,1],[2,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[3,0,2,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,0,2,3],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,0,2,2],[2,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,0,2,2],[1,3,2,1]],[[1,1,2,0],[2,3,1,1],[2,0,2,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,1],[2,0,2,2],[1,2,2,2]],[[2,1,2,0],[2,3,1,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[3,3,1,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,4,1,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[3,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,0,4,1],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,0,3,1],[2,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,0,3,1],[1,3,2,1]],[[1,1,2,0],[2,3,1,1],[2,0,3,1],[1,2,3,1]],[[1,1,2,0],[2,3,1,1],[2,0,3,1],[1,2,2,2]],[[1,1,2,0],[2,3,1,1],[2,0,4,2],[1,2,1,1]],[[1,1,2,0],[2,3,1,1],[2,0,3,3],[1,2,1,1]],[[1,1,2,0],[2,3,1,1],[2,0,3,2],[1,2,1,2]],[[2,1,2,0],[2,3,1,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[3,3,1,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,4,1,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[3,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[2,0,4,2],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[2,0,3,3],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[2,0,3,2],[2,2,2,0]],[[1,1,2,0],[2,3,1,1],[2,0,3,2],[1,3,2,0]],[[1,1,2,0],[2,3,1,1],[2,0,3,2],[1,2,3,0]],[[2,1,2,0],[2,3,1,1],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[3,3,1,1],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,4,1,1],[2,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[3,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,1,1,3],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,1,1,2],[2,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,1,1,2],[1,3,2,1]],[[1,1,2,0],[2,3,1,1],[2,1,1,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,1],[2,1,1,2],[1,2,2,2]],[[2,1,2,0],[2,3,1,1],[2,1,2,1],[1,2,2,1]],[[1,1,2,0],[3,3,1,1],[2,1,2,1],[1,2,2,1]],[[1,1,2,0],[2,4,1,1],[2,1,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[3,1,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,1,2,1],[2,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,1,2,1],[1,3,2,1]],[[1,1,2,0],[2,3,1,1],[2,1,2,1],[1,2,3,1]],[[1,1,2,0],[2,3,1,1],[2,1,2,1],[1,2,2,2]],[[2,1,2,0],[2,3,1,1],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[3,3,1,1],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[2,4,1,1],[2,1,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[3,1,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[2,1,2,2],[2,2,2,0]],[[1,1,2,0],[2,3,1,1],[2,1,2,2],[1,3,2,0]],[[1,1,2,0],[2,3,1,1],[2,1,2,2],[1,2,3,0]],[[2,1,2,0],[2,3,1,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[3,3,1,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[2,4,1,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[3,1,3,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,1,3,0],[2,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,1,3,0],[1,3,2,1]],[[1,1,2,0],[2,3,1,1],[2,1,3,0],[1,2,3,1]],[[2,1,2,0],[2,3,1,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[3,3,1,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[2,4,1,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,1,1],[3,1,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,1,1],[2,1,3,1],[2,2,1,1]],[[1,1,2,0],[2,3,1,1],[2,1,3,1],[1,3,1,1]],[[2,1,2,0],[2,3,1,1],[2,1,3,2],[1,2,0,1]],[[1,1,2,0],[3,3,1,1],[2,1,3,2],[1,2,0,1]],[[1,1,2,0],[2,4,1,1],[2,1,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,1,1],[3,1,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,1,1],[2,1,3,2],[2,2,0,1]],[[1,1,2,0],[2,3,1,1],[2,1,3,2],[1,3,0,1]],[[2,1,2,0],[2,3,1,1],[2,1,3,2],[1,2,1,0]],[[1,1,2,0],[3,3,1,1],[2,1,3,2],[1,2,1,0]],[[1,1,2,0],[2,4,1,1],[2,1,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,1,1],[3,1,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,1,1],[2,1,3,2],[2,2,1,0]],[[1,1,2,0],[2,3,1,1],[2,1,3,2],[1,3,1,0]],[[1,2,0,1],[2,0,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,0,3,1],[1,3,3,2],[2,2,1,0]],[[1,2,0,1],[2,0,3,1],[1,3,3,3],[1,2,1,0]],[[1,2,0,1],[2,0,3,1],[1,3,4,2],[1,2,1,0]],[[1,2,0,1],[2,0,3,1],[1,4,3,2],[1,2,1,0]],[[1,2,0,1],[2,0,4,1],[1,3,3,2],[1,2,1,0]],[[1,2,0,1],[2,0,3,1],[1,3,3,2],[1,2,0,2]],[[1,2,0,1],[2,0,3,1],[1,3,3,2],[1,3,0,1]],[[2,1,2,0],[2,3,1,1],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[3,3,1,1],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[2,4,1,1],[2,2,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[3,2,1,2],[0,2,2,1]],[[2,1,2,0],[2,3,1,1],[2,2,1,2],[1,1,2,1]],[[1,1,2,0],[3,3,1,1],[2,2,1,2],[1,1,2,1]],[[1,1,2,0],[2,4,1,1],[2,2,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[3,2,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[2,2,1,2],[2,1,2,1]],[[2,1,2,0],[2,3,1,1],[2,2,2,1],[0,2,2,1]],[[1,1,2,0],[3,3,1,1],[2,2,2,1],[0,2,2,1]],[[1,1,2,0],[2,4,1,1],[2,2,2,1],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[3,2,2,1],[0,2,2,1]],[[2,1,2,0],[2,3,1,1],[2,2,2,1],[1,1,2,1]],[[1,1,2,0],[3,3,1,1],[2,2,2,1],[1,1,2,1]],[[1,1,2,0],[2,4,1,1],[2,2,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[3,2,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[2,2,2,1],[2,1,2,1]],[[2,1,2,0],[2,3,1,1],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[3,3,1,1],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[2,4,1,1],[2,2,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,1,1],[3,2,2,2],[0,2,2,0]],[[2,1,2,0],[2,3,1,1],[2,2,2,2],[1,1,2,0]],[[1,1,2,0],[3,3,1,1],[2,2,2,2],[1,1,2,0]],[[1,1,2,0],[2,4,1,1],[2,2,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,1,1],[3,2,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,1,1],[2,2,2,2],[2,1,2,0]],[[1,2,0,1],[2,0,3,1],[1,3,3,2],[2,2,0,1]],[[1,2,0,1],[2,0,3,1],[1,3,3,3],[1,2,0,1]],[[1,2,0,1],[2,0,3,1],[1,3,4,2],[1,2,0,1]],[[1,2,0,1],[2,0,3,1],[1,4,3,2],[1,2,0,1]],[[1,2,0,1],[2,0,4,1],[1,3,3,2],[1,2,0,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,0],[0,2,2,1]],[[1,1,2,0],[3,3,1,1],[2,2,3,0],[0,2,2,1]],[[1,1,2,0],[2,4,1,1],[2,2,3,0],[0,2,2,1]],[[1,1,2,0],[2,3,1,1],[3,2,3,0],[0,2,2,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,0],[1,1,2,1]],[[1,1,2,0],[3,3,1,1],[2,2,3,0],[1,1,2,1]],[[1,1,2,0],[2,4,1,1],[2,2,3,0],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[3,2,3,0],[1,1,2,1]],[[1,1,2,0],[2,3,1,1],[2,2,3,0],[2,1,2,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,1],[0,1,2,1]],[[1,1,2,0],[3,3,1,1],[2,2,3,1],[0,1,2,1]],[[1,1,2,0],[2,4,1,1],[2,2,3,1],[0,1,2,1]],[[1,1,2,0],[2,3,1,1],[3,2,3,1],[0,1,2,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[3,3,1,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[2,4,1,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,1,1],[3,2,3,1],[0,2,1,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,1],[1,0,2,1]],[[1,1,2,0],[3,3,1,1],[2,2,3,1],[1,0,2,1]],[[1,1,2,0],[2,4,1,1],[2,2,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,1,1],[3,2,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,1,1],[2,2,3,1],[2,0,2,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,1],[1,1,1,1]],[[1,1,2,0],[3,3,1,1],[2,2,3,1],[1,1,1,1]],[[1,1,2,0],[2,4,1,1],[2,2,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,1,1],[3,2,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,1,1],[2,2,3,1],[2,1,1,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,1],[1,2,0,1]],[[1,1,2,0],[3,3,1,1],[2,2,3,1],[1,2,0,1]],[[1,1,2,0],[2,4,1,1],[2,2,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,1,1],[3,2,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,1,1],[2,2,3,1],[2,2,0,1]],[[1,2,0,1],[2,0,3,1],[1,3,3,2],[1,1,3,0]],[[1,2,0,1],[2,0,3,1],[1,3,3,3],[1,1,2,0]],[[1,2,0,1],[2,0,3,1],[1,3,4,2],[1,1,2,0]],[[1,2,0,1],[2,0,3,1],[1,4,3,2],[1,1,2,0]],[[1,2,0,1],[2,0,4,1],[1,3,3,2],[1,1,2,0]],[[1,2,0,1],[2,0,3,1],[1,3,3,2],[1,1,1,2]],[[1,2,0,1],[2,0,3,1],[1,3,3,3],[1,1,1,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,2],[0,1,1,1]],[[1,1,2,0],[3,3,1,1],[2,2,3,2],[0,1,1,1]],[[1,1,2,0],[2,4,1,1],[2,2,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,1,1],[3,2,3,2],[0,1,1,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,2],[0,1,2,0]],[[1,1,2,0],[3,3,1,1],[2,2,3,2],[0,1,2,0]],[[1,1,2,0],[2,4,1,1],[2,2,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,1,1],[3,2,3,2],[0,1,2,0]],[[2,1,2,0],[2,3,1,1],[2,2,3,2],[0,2,0,1]],[[1,1,2,0],[3,3,1,1],[2,2,3,2],[0,2,0,1]],[[1,1,2,0],[2,4,1,1],[2,2,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,1,1],[3,2,3,2],[0,2,0,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,2],[0,2,1,0]],[[1,1,2,0],[3,3,1,1],[2,2,3,2],[0,2,1,0]],[[1,1,2,0],[2,4,1,1],[2,2,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,1,1],[3,2,3,2],[0,2,1,0]],[[1,2,0,1],[2,0,3,1],[1,3,4,2],[1,1,1,1]],[[1,2,0,1],[2,0,3,1],[1,4,3,2],[1,1,1,1]],[[1,2,0,1],[2,0,4,1],[1,3,3,2],[1,1,1,1]],[[1,2,0,1],[2,0,3,1],[1,3,3,2],[1,0,2,2]],[[1,2,0,1],[2,0,3,1],[1,3,3,3],[1,0,2,1]],[[1,2,0,1],[2,0,3,1],[1,3,4,2],[1,0,2,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,2],[1,0,1,1]],[[1,1,2,0],[3,3,1,1],[2,2,3,2],[1,0,1,1]],[[1,1,2,0],[2,4,1,1],[2,2,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,1,1],[3,2,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,1,1],[2,2,3,2],[2,0,1,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,2],[1,0,2,0]],[[1,1,2,0],[3,3,1,1],[2,2,3,2],[1,0,2,0]],[[1,1,2,0],[2,4,1,1],[2,2,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,1,1],[3,2,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,1,1],[2,2,3,2],[2,0,2,0]],[[2,1,2,0],[2,3,1,1],[2,2,3,2],[1,1,0,1]],[[1,1,2,0],[3,3,1,1],[2,2,3,2],[1,1,0,1]],[[1,1,2,0],[2,4,1,1],[2,2,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,1,1],[3,2,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,1,1],[2,2,3,2],[2,1,0,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,2],[1,1,1,0]],[[1,1,2,0],[3,3,1,1],[2,2,3,2],[1,1,1,0]],[[1,1,2,0],[2,4,1,1],[2,2,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,1,1],[3,2,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,1,1],[2,2,3,2],[2,1,1,0]],[[1,2,0,1],[2,0,3,1],[1,3,3,1],[1,3,1,1]],[[2,1,2,0],[2,3,1,1],[2,2,3,2],[1,2,0,0]],[[1,1,2,0],[3,3,1,1],[2,2,3,2],[1,2,0,0]],[[1,1,2,0],[2,4,1,1],[2,2,3,2],[1,2,0,0]],[[1,1,2,0],[2,3,1,1],[3,2,3,2],[1,2,0,0]],[[1,1,2,0],[2,3,1,1],[2,2,3,2],[2,2,0,0]],[[1,2,0,1],[2,0,3,1],[1,3,3,1],[2,2,1,1]],[[1,2,0,1],[2,0,3,1],[1,3,4,1],[1,2,1,1]],[[1,2,0,1],[2,0,3,1],[1,4,3,1],[1,2,1,1]],[[1,2,0,1],[2,0,4,1],[1,3,3,1],[1,2,1,1]],[[1,2,0,1],[2,0,3,1],[1,3,3,1],[1,1,2,2]],[[1,2,0,1],[2,0,3,1],[1,3,3,1],[1,1,3,1]],[[1,2,0,1],[2,0,3,1],[1,3,4,1],[1,1,2,1]],[[1,2,0,1],[2,0,3,1],[1,4,3,1],[1,1,2,1]],[[1,2,0,1],[2,0,4,1],[1,3,3,1],[1,1,2,1]],[[1,2,0,1],[2,0,3,1],[1,3,3,0],[1,2,3,1]],[[1,2,0,1],[2,0,3,1],[1,3,3,0],[1,3,2,1]],[[1,2,0,1],[2,0,3,1],[1,3,3,0],[2,2,2,1]],[[1,2,0,1],[2,0,3,1],[1,4,3,0],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[1,3,2,2],[1,2,3,0]],[[1,2,0,1],[2,0,3,1],[1,3,2,2],[1,3,2,0]],[[1,2,0,1],[2,0,3,1],[1,3,2,2],[2,2,2,0]],[[1,2,0,1],[2,0,3,1],[1,4,2,2],[1,2,2,0]],[[1,2,0,1],[2,0,3,1],[1,3,2,2],[1,1,2,2]],[[1,2,0,1],[2,0,3,1],[1,3,2,2],[1,1,3,1]],[[1,2,0,1],[2,0,3,1],[1,3,2,3],[1,1,2,1]],[[1,2,0,1],[2,0,3,1],[1,3,2,1],[1,2,2,2]],[[1,2,0,1],[2,0,3,1],[1,3,2,1],[1,2,3,1]],[[2,1,2,0],[2,3,1,1],[2,3,0,1],[1,2,2,1]],[[1,1,2,0],[3,3,1,1],[2,3,0,1],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[3,3,0,1],[1,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,3,0,1],[2,2,2,1]],[[1,1,2,0],[2,3,1,1],[2,3,0,1],[1,3,2,1]],[[2,1,2,0],[2,3,1,1],[2,3,0,2],[1,2,2,0]],[[1,1,2,0],[3,3,1,1],[2,3,0,2],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[3,3,0,2],[1,2,2,0]],[[1,1,2,0],[2,3,1,1],[2,3,0,2],[2,2,2,0]],[[1,1,2,0],[2,3,1,1],[2,3,0,2],[1,3,2,0]],[[1,2,0,1],[2,0,3,1],[1,3,2,1],[1,3,2,1]],[[1,2,0,1],[2,0,3,1],[1,3,2,1],[2,2,2,1]],[[1,2,0,1],[2,0,3,1],[1,4,2,1],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[1,3,1,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,1],[1,3,1,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,1],[1,3,1,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,1],[1,3,1,2],[2,2,2,1]],[[1,2,0,1],[2,0,3,1],[1,3,1,3],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[1,4,1,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[1,2,3,2],[1,2,3,0]],[[1,2,0,1],[2,0,3,1],[1,2,3,2],[1,3,2,0]],[[1,2,0,1],[2,0,3,1],[1,2,3,2],[2,2,2,0]],[[1,2,0,1],[2,0,3,1],[1,2,3,3],[1,2,2,0]],[[1,2,0,1],[2,0,3,1],[1,2,4,2],[1,2,2,0]],[[1,2,0,1],[2,0,4,1],[1,2,3,2],[1,2,2,0]],[[1,2,0,1],[2,0,3,1],[1,2,3,2],[1,2,1,2]],[[1,2,0,1],[2,0,3,1],[1,2,3,3],[1,2,1,1]],[[1,2,0,1],[2,0,3,1],[1,2,4,2],[1,2,1,1]],[[1,2,0,1],[2,0,4,1],[1,2,3,2],[1,2,1,1]],[[1,2,0,1],[2,0,3,1],[1,2,3,1],[1,2,2,2]],[[1,2,0,1],[2,0,3,1],[1,2,3,1],[1,2,3,1]],[[1,2,0,1],[2,0,3,1],[1,2,3,1],[1,3,2,1]],[[1,2,0,1],[2,0,3,1],[1,2,3,1],[2,2,2,1]],[[1,2,0,1],[2,0,3,1],[1,2,4,1],[1,2,2,1]],[[1,2,0,1],[2,0,4,1],[1,2,3,1],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[1,2,2,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,1],[1,2,2,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,1],[1,2,2,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,1],[1,2,2,2],[2,2,2,1]],[[1,2,0,1],[2,0,3,1],[1,2,2,3],[1,2,2,1]],[[1,2,0,1],[2,0,3,1],[1,1,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,1],[1,1,3,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,1],[1,1,3,3],[1,2,2,1]],[[1,2,0,1],[2,0,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,0,1],[2,0,3,0],[2,3,4,2],[1,1,1,1]],[[1,2,0,1],[2,0,3,0],[2,4,3,2],[1,1,1,1]],[[1,2,0,1],[2,0,3,0],[3,3,3,2],[1,1,1,1]],[[1,2,0,1],[3,0,3,0],[2,3,3,2],[1,1,1,1]],[[2,2,0,1],[2,0,3,0],[2,3,3,2],[1,1,1,1]],[[1,2,0,1],[2,0,3,0],[2,3,3,2],[1,0,2,2]],[[1,2,0,1],[2,0,3,0],[2,3,3,2],[1,0,3,1]],[[1,2,0,1],[2,0,3,0],[2,3,3,2],[2,0,2,1]],[[1,2,0,1],[2,0,3,0],[2,3,4,2],[1,0,2,1]],[[1,2,0,1],[2,0,3,0],[2,4,3,2],[1,0,2,1]],[[1,2,0,1],[2,0,3,0],[3,3,3,2],[1,0,2,1]],[[1,2,0,1],[3,0,3,0],[2,3,3,2],[1,0,2,1]],[[2,2,0,1],[2,0,3,0],[2,3,3,2],[1,0,2,1]],[[2,1,2,0],[2,3,1,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[3,3,1,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[2,4,1,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,0],[2,3,1,1],[3,3,3,1],[1,0,1,1]],[[1,2,0,1],[2,0,3,0],[2,3,3,2],[0,3,1,1]],[[1,2,0,1],[2,0,3,0],[2,3,4,2],[0,2,1,1]],[[1,2,0,1],[2,0,3,0],[2,4,3,2],[0,2,1,1]],[[1,2,0,1],[2,0,3,0],[3,3,3,2],[0,2,1,1]],[[1,2,0,1],[3,0,3,0],[2,3,3,2],[0,2,1,1]],[[2,2,0,1],[2,0,3,0],[2,3,3,2],[0,2,1,1]],[[1,2,0,1],[2,0,3,0],[2,3,3,2],[0,1,2,2]],[[1,2,0,1],[2,0,3,0],[2,3,3,2],[0,1,3,1]],[[1,2,0,1],[2,0,3,0],[2,3,4,2],[0,1,2,1]],[[1,2,0,1],[2,0,3,0],[2,4,3,2],[0,1,2,1]],[[1,2,0,1],[2,0,3,0],[3,3,3,2],[0,1,2,1]],[[1,2,0,1],[3,0,3,0],[2,3,3,2],[0,1,2,1]],[[2,2,0,1],[2,0,3,0],[2,3,3,2],[0,1,2,1]],[[1,2,0,1],[2,0,3,0],[2,3,2,2],[2,1,2,1]],[[1,2,0,1],[2,0,3,0],[2,4,2,2],[1,1,2,1]],[[1,2,0,1],[2,0,3,0],[3,3,2,2],[1,1,2,1]],[[1,2,0,1],[3,0,3,0],[2,3,2,2],[1,1,2,1]],[[2,2,0,1],[2,0,3,0],[2,3,2,2],[1,1,2,1]],[[1,2,0,1],[2,0,3,0],[2,3,2,2],[0,2,2,2]],[[1,2,0,1],[2,0,3,0],[2,3,2,2],[0,2,3,1]],[[1,2,0,1],[2,0,3,0],[2,3,2,2],[0,3,2,1]],[[1,2,0,1],[2,0,3,0],[2,4,2,2],[0,2,2,1]],[[1,2,0,1],[2,0,3,0],[3,3,2,2],[0,2,2,1]],[[1,2,0,1],[3,0,3,0],[2,3,2,2],[0,2,2,1]],[[2,2,0,1],[2,0,3,0],[2,3,2,2],[0,2,2,1]],[[1,2,0,1],[2,0,3,0],[2,2,3,2],[1,3,1,1]],[[1,2,0,1],[2,0,3,0],[2,2,3,2],[2,2,1,1]],[[1,2,0,1],[2,0,3,0],[3,2,3,2],[1,2,1,1]],[[1,2,0,1],[3,0,3,0],[2,2,3,2],[1,2,1,1]],[[2,2,0,1],[2,0,3,0],[2,2,3,2],[1,2,1,1]],[[1,2,0,1],[2,0,3,0],[2,2,3,2],[0,2,2,2]],[[1,2,0,1],[2,0,3,0],[2,2,3,2],[0,2,3,1]],[[1,2,0,1],[2,0,3,0],[2,2,3,2],[0,3,2,1]],[[1,2,0,1],[2,0,3,0],[2,2,4,2],[0,2,2,1]],[[1,2,0,1],[2,0,3,0],[2,2,2,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,0],[2,2,2,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,0],[2,2,2,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,0],[2,2,2,2],[2,2,2,1]],[[1,2,0,1],[2,0,3,0],[3,2,2,2],[1,2,2,1]],[[1,2,0,1],[3,0,3,0],[2,2,2,2],[1,2,2,1]],[[2,2,0,1],[2,0,3,0],[2,2,2,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,0],[2,1,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,0],[2,1,3,2],[1,2,3,1]],[[2,1,2,0],[2,3,1,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[3,3,1,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[2,4,1,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,0],[2,3,1,1],[3,3,3,2],[1,0,0,1]],[[2,1,2,0],[2,3,1,1],[2,3,3,2],[1,0,1,0]],[[1,1,2,0],[3,3,1,1],[2,3,3,2],[1,0,1,0]],[[1,1,2,0],[2,4,1,1],[2,3,3,2],[1,0,1,0]],[[1,1,2,0],[2,3,1,1],[3,3,3,2],[1,0,1,0]],[[1,2,0,1],[2,0,3,0],[2,1,3,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,0],[2,1,3,2],[2,2,2,1]],[[1,2,0,1],[2,0,3,0],[2,1,4,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,0],[3,1,3,2],[1,2,2,1]],[[1,2,0,1],[3,0,3,0],[2,1,3,2],[1,2,2,1]],[[2,2,0,1],[2,0,3,0],[2,1,3,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,0],[1,3,3,2],[1,3,1,1]],[[1,2,0,1],[2,0,3,0],[1,3,3,2],[2,2,1,1]],[[1,2,0,1],[2,0,3,0],[1,3,4,2],[1,2,1,1]],[[1,2,0,1],[2,0,3,0],[1,4,3,2],[1,2,1,1]],[[1,2,0,1],[2,0,3,0],[1,3,3,2],[1,1,2,2]],[[1,2,0,1],[2,0,3,0],[1,3,3,2],[1,1,3,1]],[[1,2,0,1],[2,0,3,0],[1,3,4,2],[1,1,2,1]],[[1,2,0,1],[2,0,3,0],[1,4,3,2],[1,1,2,1]],[[1,2,0,1],[2,0,3,0],[1,3,2,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,0],[1,3,2,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,0],[1,3,2,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,0],[1,3,2,2],[2,2,2,1]],[[1,2,0,1],[2,0,3,0],[1,4,2,2],[1,2,2,1]],[[1,2,0,1],[2,0,3,0],[1,2,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,3,0],[1,2,3,2],[1,2,3,1]],[[1,2,0,1],[2,0,3,0],[1,2,3,2],[1,3,2,1]],[[1,2,0,1],[2,0,3,0],[1,2,3,2],[2,2,2,1]],[[1,2,0,1],[2,0,3,0],[1,2,4,2],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[2,0,2,2],[2,4,3,2],[1,2,0,0]],[[1,2,0,1],[2,0,2,2],[3,3,3,2],[1,2,0,0]],[[1,2,0,1],[3,0,2,2],[2,3,3,2],[1,2,0,0]],[[1,3,0,1],[2,0,2,2],[2,3,3,2],[1,2,0,0]],[[2,2,0,1],[2,0,2,2],[2,3,3,2],[1,2,0,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,0,1],[2,0,2,2],[2,3,4,2],[1,1,1,0]],[[1,2,0,1],[2,0,2,2],[2,4,3,2],[1,1,1,0]],[[1,2,0,1],[2,0,2,2],[3,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,0,2,3],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[3,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,1,2],[0,2,4,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[0,2,3,0],[2,2,2,1]],[[1,1,2,0],[2,3,1,2],[0,2,3,0],[1,3,2,1]],[[1,1,2,0],[2,3,1,2],[0,2,3,0],[1,2,3,1]],[[1,1,2,0],[2,3,1,2],[0,2,3,0],[1,2,2,2]],[[1,1,2,0],[2,3,1,2],[0,2,4,1],[1,2,2,0]],[[1,1,2,0],[2,3,1,2],[0,2,3,1],[2,2,2,0]],[[1,1,2,0],[2,3,1,2],[0,2,3,1],[1,3,2,0]],[[1,1,2,0],[2,3,1,2],[0,2,3,1],[1,2,3,0]],[[1,2,0,2],[2,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,3,0,1],[2,0,2,2],[2,3,3,2],[1,1,1,0]],[[2,2,0,1],[2,0,2,2],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[1,1,0,2]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[2,1,0,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,3],[1,1,0,1]],[[1,2,0,1],[2,0,2,2],[2,3,4,2],[1,1,0,1]],[[2,1,2,0],[2,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[3,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,4,1,2],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,3],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[0,4,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[0,3,0,3],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[0,3,0,2],[2,2,2,1]],[[1,1,2,0],[2,3,1,2],[0,3,0,2],[1,3,2,1]],[[1,1,2,0],[2,3,1,2],[0,3,0,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,2],[0,3,0,2],[1,2,2,2]],[[2,1,2,0],[2,3,1,2],[0,3,2,0],[1,2,2,1]],[[1,1,2,0],[3,3,1,2],[0,3,2,0],[1,2,2,1]],[[1,1,2,0],[2,4,1,2],[0,3,2,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[0,4,2,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[0,3,2,0],[2,2,2,1]],[[1,1,2,0],[2,3,1,2],[0,3,2,0],[1,3,2,1]],[[1,1,2,0],[2,3,1,2],[0,3,2,0],[1,2,3,1]],[[1,1,2,0],[2,3,1,2],[0,3,2,0],[1,2,2,2]],[[2,1,2,0],[2,3,1,2],[0,3,2,1],[1,2,2,0]],[[1,1,2,0],[3,3,1,2],[0,3,2,1],[1,2,2,0]],[[1,1,2,0],[2,4,1,2],[0,3,2,1],[1,2,2,0]],[[1,1,2,0],[2,3,1,2],[0,4,2,1],[1,2,2,0]],[[1,1,2,0],[2,3,1,2],[0,3,2,1],[2,2,2,0]],[[1,1,2,0],[2,3,1,2],[0,3,2,1],[1,3,2,0]],[[1,1,2,0],[2,3,1,2],[0,3,2,1],[1,2,3,0]],[[1,2,0,1],[2,0,2,2],[2,4,3,2],[1,1,0,1]],[[1,2,0,1],[2,0,2,2],[3,3,3,2],[1,1,0,1]],[[1,2,0,1],[2,0,2,3],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[3,0,2,2],[2,3,3,2],[1,1,0,1]],[[1,2,0,2],[2,0,2,2],[2,3,3,2],[1,1,0,1]],[[1,3,0,1],[2,0,2,2],[2,3,3,2],[1,1,0,1]],[[2,2,0,1],[2,0,2,2],[2,3,3,2],[1,1,0,1]],[[2,1,2,0],[2,3,1,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,0],[3,3,1,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,4,1,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,0],[2,3,1,2],[0,4,3,0],[1,1,2,1]],[[1,1,2,0],[2,3,1,2],[0,3,4,0],[1,1,2,1]],[[1,1,2,0],[2,3,1,2],[0,3,3,0],[1,1,3,1]],[[1,1,2,0],[2,3,1,2],[0,3,3,0],[1,1,2,2]],[[2,1,2,0],[2,3,1,2],[0,3,3,0],[1,2,1,1]],[[1,1,2,0],[3,3,1,2],[0,3,3,0],[1,2,1,1]],[[1,1,2,0],[2,4,1,2],[0,3,3,0],[1,2,1,1]],[[1,1,2,0],[2,3,1,2],[0,4,3,0],[1,2,1,1]],[[1,1,2,0],[2,3,1,2],[0,3,4,0],[1,2,1,1]],[[1,1,2,0],[2,3,1,2],[0,3,3,0],[2,2,1,1]],[[1,1,2,0],[2,3,1,2],[0,3,3,0],[1,3,1,1]],[[2,1,2,0],[2,3,1,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,0],[3,3,1,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,4,1,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,1,2],[0,4,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,1,2],[0,3,4,1],[1,1,1,1]],[[2,1,2,0],[2,3,1,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,0],[3,3,1,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,0],[2,4,1,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,0],[2,3,1,2],[0,4,3,1],[1,1,2,0]],[[1,1,2,0],[2,3,1,2],[0,3,4,1],[1,1,2,0]],[[1,1,2,0],[2,3,1,2],[0,3,3,1],[1,1,3,0]],[[2,1,2,0],[2,3,1,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,0],[3,3,1,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,4,1,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,1,2],[0,4,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,1,2],[0,3,4,1],[1,2,0,1]],[[1,1,2,0],[2,3,1,2],[0,3,3,1],[2,2,0,1]],[[1,1,2,0],[2,3,1,2],[0,3,3,1],[1,3,0,1]],[[2,1,2,0],[2,3,1,2],[0,3,3,1],[1,2,1,0]],[[1,1,2,0],[3,3,1,2],[0,3,3,1],[1,2,1,0]],[[1,1,2,0],[2,4,1,2],[0,3,3,1],[1,2,1,0]],[[1,1,2,0],[2,3,1,2],[0,4,3,1],[1,2,1,0]],[[1,1,2,0],[2,3,1,2],[0,3,4,1],[1,2,1,0]],[[1,1,2,0],[2,3,1,2],[0,3,3,1],[2,2,1,0]],[[1,1,2,0],[2,3,1,2],[0,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[1,0,3,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[2,0,2,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,3],[1,0,2,0]],[[1,2,0,1],[2,0,2,2],[2,3,4,2],[1,0,2,0]],[[1,2,0,1],[2,0,2,2],[2,4,3,2],[1,0,2,0]],[[1,2,0,1],[2,0,2,2],[3,3,3,2],[1,0,2,0]],[[1,2,0,1],[2,0,2,3],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[3,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,2,0,2],[2,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,3,0,1],[2,0,2,2],[2,3,3,2],[1,0,2,0]],[[2,2,0,1],[2,0,2,2],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[1,0,1,2]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[2,0,1,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,3],[1,0,1,1]],[[1,2,0,1],[2,0,2,2],[2,3,4,2],[1,0,1,1]],[[1,2,0,1],[2,0,2,2],[2,4,3,2],[1,0,1,1]],[[1,2,0,1],[2,0,2,2],[3,3,3,2],[1,0,1,1]],[[1,2,0,1],[2,0,2,3],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[3,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,2,0,2],[2,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,3,0,1],[2,0,2,2],[2,3,3,2],[1,0,1,1]],[[2,2,0,1],[2,0,2,2],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,3],[0,2,1,0]],[[1,1,2,0],[2,3,1,2],[1,2,4,0],[0,2,2,1]],[[1,1,2,0],[2,3,1,2],[1,2,3,0],[0,3,2,1]],[[1,1,2,0],[2,3,1,2],[1,2,3,0],[0,2,3,1]],[[1,1,2,0],[2,3,1,2],[1,2,3,0],[0,2,2,2]],[[1,1,2,0],[2,3,1,2],[1,2,4,1],[0,2,2,0]],[[1,1,2,0],[2,3,1,2],[1,2,3,1],[0,3,2,0]],[[1,1,2,0],[2,3,1,2],[1,2,3,1],[0,2,3,0]],[[1,2,0,1],[2,0,2,2],[2,3,4,2],[0,2,1,0]],[[1,2,0,1],[2,0,2,2],[2,4,3,2],[0,2,1,0]],[[1,2,0,1],[2,0,2,2],[3,3,3,2],[0,2,1,0]],[[1,2,0,1],[2,0,2,3],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[3,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,2,0,2],[2,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,3,0,1],[2,0,2,2],[2,3,3,2],[0,2,1,0]],[[2,2,0,1],[2,0,2,2],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[0,2,0,2]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[0,3,0,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,3],[0,2,0,1]],[[1,2,0,1],[2,0,2,2],[2,3,4,2],[0,2,0,1]],[[1,2,0,1],[2,0,2,2],[2,4,3,2],[0,2,0,1]],[[1,2,0,1],[2,0,2,2],[3,3,3,2],[0,2,0,1]],[[1,2,0,1],[2,0,2,3],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[3,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,2,0,2],[2,0,2,2],[2,3,3,2],[0,2,0,1]],[[1,3,0,1],[2,0,2,2],[2,3,3,2],[0,2,0,1]],[[2,2,0,1],[2,0,2,2],[2,3,3,2],[0,2,0,1]],[[2,1,2,0],[2,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[3,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,4,1,2],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,1,3],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,1,2],[1,4,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,1,2],[1,3,0,3],[0,2,2,1]],[[1,1,2,0],[2,3,1,2],[1,3,0,2],[0,3,2,1]],[[1,1,2,0],[2,3,1,2],[1,3,0,2],[0,2,3,1]],[[1,1,2,0],[2,3,1,2],[1,3,0,2],[0,2,2,2]],[[2,1,2,0],[2,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[3,3,1,2],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,4,1,2],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,2],[1,4,0,2],[1,1,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[0,1,3,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,3],[0,1,2,0]],[[1,2,0,1],[2,0,2,2],[2,3,4,2],[0,1,2,0]],[[1,2,0,1],[2,0,2,2],[2,4,3,2],[0,1,2,0]],[[1,2,0,1],[2,0,2,2],[3,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,0,2,3],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[3,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,2,0,2],[2,0,2,2],[2,3,3,2],[0,1,2,0]],[[2,1,2,0],[2,3,1,2],[1,3,2,0],[0,2,2,1]],[[1,1,2,0],[3,3,1,2],[1,3,2,0],[0,2,2,1]],[[1,1,2,0],[2,4,1,2],[1,3,2,0],[0,2,2,1]],[[1,1,2,0],[2,3,1,2],[1,4,2,0],[0,2,2,1]],[[1,1,2,0],[2,3,1,2],[1,3,2,0],[0,3,2,1]],[[1,1,2,0],[2,3,1,2],[1,3,2,0],[0,2,3,1]],[[1,1,2,0],[2,3,1,2],[1,3,2,0],[0,2,2,2]],[[2,1,2,0],[2,3,1,2],[1,3,2,0],[1,1,2,1]],[[1,1,2,0],[3,3,1,2],[1,3,2,0],[1,1,2,1]],[[1,1,2,0],[2,4,1,2],[1,3,2,0],[1,1,2,1]],[[1,1,2,0],[2,3,1,2],[1,4,2,0],[1,1,2,1]],[[2,1,2,0],[2,3,1,2],[1,3,2,1],[0,2,2,0]],[[1,1,2,0],[3,3,1,2],[1,3,2,1],[0,2,2,0]],[[1,1,2,0],[2,4,1,2],[1,3,2,1],[0,2,2,0]],[[1,1,2,0],[2,3,1,2],[1,4,2,1],[0,2,2,0]],[[1,1,2,0],[2,3,1,2],[1,3,2,1],[0,3,2,0]],[[1,1,2,0],[2,3,1,2],[1,3,2,1],[0,2,3,0]],[[2,1,2,0],[2,3,1,2],[1,3,2,1],[1,1,2,0]],[[1,1,2,0],[3,3,1,2],[1,3,2,1],[1,1,2,0]],[[1,1,2,0],[2,4,1,2],[1,3,2,1],[1,1,2,0]],[[1,1,2,0],[2,3,1,2],[1,4,2,1],[1,1,2,0]],[[1,3,0,1],[2,0,2,2],[2,3,3,2],[0,1,2,0]],[[2,2,0,1],[2,0,2,2],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[0,1,1,2]],[[1,2,0,1],[2,0,2,2],[2,3,3,3],[0,1,1,1]],[[1,2,0,1],[2,0,2,2],[2,3,4,2],[0,1,1,1]],[[1,2,0,1],[2,0,2,2],[2,4,3,2],[0,1,1,1]],[[1,2,0,1],[2,0,2,2],[3,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,0,2,3],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[3,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,2,0,2],[2,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,3,0,1],[2,0,2,2],[2,3,3,2],[0,1,1,1]],[[2,2,0,1],[2,0,2,2],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,2],[0,0,2,2]],[[1,2,0,1],[2,0,2,2],[2,3,3,3],[0,0,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,4,2],[0,0,2,1]],[[1,2,0,1],[2,0,2,3],[2,3,3,2],[0,0,2,1]],[[1,2,0,2],[2,0,2,2],[2,3,3,2],[0,0,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,1],[2,2,1,0]],[[1,2,0,1],[2,0,2,2],[3,3,3,1],[1,2,1,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[2,0,2,2],[2,3,4,1],[1,1,1,1]],[[2,1,2,0],[2,3,1,2],[1,3,3,0],[0,1,2,1]],[[1,1,2,0],[3,3,1,2],[1,3,3,0],[0,1,2,1]],[[1,1,2,0],[2,4,1,2],[1,3,3,0],[0,1,2,1]],[[1,1,2,0],[2,3,1,2],[1,4,3,0],[0,1,2,1]],[[1,1,2,0],[2,3,1,2],[1,3,4,0],[0,1,2,1]],[[1,1,2,0],[2,3,1,2],[1,3,3,0],[0,1,3,1]],[[1,1,2,0],[2,3,1,2],[1,3,3,0],[0,1,2,2]],[[2,1,2,0],[2,3,1,2],[1,3,3,0],[0,2,1,1]],[[1,1,2,0],[3,3,1,2],[1,3,3,0],[0,2,1,1]],[[1,1,2,0],[2,4,1,2],[1,3,3,0],[0,2,1,1]],[[1,1,2,0],[2,3,1,2],[1,4,3,0],[0,2,1,1]],[[1,1,2,0],[2,3,1,2],[1,3,4,0],[0,2,1,1]],[[1,1,2,0],[2,3,1,2],[1,3,3,0],[0,3,1,1]],[[2,1,2,0],[2,3,1,2],[1,3,3,0],[1,0,2,1]],[[1,1,2,0],[3,3,1,2],[1,3,3,0],[1,0,2,1]],[[1,1,2,0],[2,4,1,2],[1,3,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,1,2],[1,4,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,1,2],[1,3,4,0],[1,0,2,1]],[[1,1,2,0],[2,3,1,2],[1,3,3,0],[1,0,3,1]],[[1,1,2,0],[2,3,1,2],[1,3,3,0],[1,0,2,2]],[[2,1,2,0],[2,3,1,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,0],[3,3,1,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,0],[2,4,1,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,0],[2,3,1,2],[1,4,3,0],[1,1,1,1]],[[1,1,2,0],[2,3,1,2],[1,3,4,0],[1,1,1,1]],[[2,1,2,0],[2,3,1,2],[1,3,3,0],[1,2,0,1]],[[1,1,2,0],[3,3,1,2],[1,3,3,0],[1,2,0,1]],[[1,1,2,0],[2,4,1,2],[1,3,3,0],[1,2,0,1]],[[1,1,2,0],[2,3,1,2],[1,4,3,0],[1,2,0,1]],[[1,2,0,1],[2,0,2,2],[2,4,3,1],[1,1,1,1]],[[1,2,0,1],[2,0,2,2],[3,3,3,1],[1,1,1,1]],[[1,2,0,1],[3,0,2,2],[2,3,3,1],[1,1,1,1]],[[1,3,0,1],[2,0,2,2],[2,3,3,1],[1,1,1,1]],[[2,2,0,1],[2,0,2,2],[2,3,3,1],[1,1,1,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,1],[1,0,2,2]],[[1,2,0,1],[2,0,2,2],[2,3,3,1],[1,0,3,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,1],[2,0,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,4,1],[1,0,2,1]],[[2,1,2,0],[2,3,1,2],[1,3,3,1],[0,1,1,1]],[[1,1,2,0],[3,3,1,2],[1,3,3,1],[0,1,1,1]],[[1,1,2,0],[2,4,1,2],[1,3,3,1],[0,1,1,1]],[[1,1,2,0],[2,3,1,2],[1,4,3,1],[0,1,1,1]],[[1,1,2,0],[2,3,1,2],[1,3,4,1],[0,1,1,1]],[[2,1,2,0],[2,3,1,2],[1,3,3,1],[0,1,2,0]],[[1,1,2,0],[3,3,1,2],[1,3,3,1],[0,1,2,0]],[[1,1,2,0],[2,4,1,2],[1,3,3,1],[0,1,2,0]],[[1,1,2,0],[2,3,1,2],[1,4,3,1],[0,1,2,0]],[[1,1,2,0],[2,3,1,2],[1,3,4,1],[0,1,2,0]],[[1,1,2,0],[2,3,1,2],[1,3,3,1],[0,1,3,0]],[[2,1,2,0],[2,3,1,2],[1,3,3,1],[0,2,0,1]],[[1,1,2,0],[3,3,1,2],[1,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,4,1,2],[1,3,3,1],[0,2,0,1]],[[1,1,2,0],[2,3,1,2],[1,4,3,1],[0,2,0,1]],[[1,1,2,0],[2,3,1,2],[1,3,4,1],[0,2,0,1]],[[1,1,2,0],[2,3,1,2],[1,3,3,1],[0,3,0,1]],[[2,1,2,0],[2,3,1,2],[1,3,3,1],[0,2,1,0]],[[1,1,2,0],[3,3,1,2],[1,3,3,1],[0,2,1,0]],[[1,1,2,0],[2,4,1,2],[1,3,3,1],[0,2,1,0]],[[1,1,2,0],[2,3,1,2],[1,4,3,1],[0,2,1,0]],[[1,1,2,0],[2,3,1,2],[1,3,4,1],[0,2,1,0]],[[1,1,2,0],[2,3,1,2],[1,3,3,1],[0,3,1,0]],[[1,2,0,1],[2,0,2,2],[2,4,3,1],[1,0,2,1]],[[1,2,0,1],[2,0,2,2],[3,3,3,1],[1,0,2,1]],[[1,2,0,1],[3,0,2,2],[2,3,3,1],[1,0,2,1]],[[1,3,0,1],[2,0,2,2],[2,3,3,1],[1,0,2,1]],[[2,2,0,1],[2,0,2,2],[2,3,3,1],[1,0,2,1]],[[2,1,2,0],[2,3,1,2],[1,3,3,1],[1,0,1,1]],[[1,1,2,0],[3,3,1,2],[1,3,3,1],[1,0,1,1]],[[1,1,2,0],[2,4,1,2],[1,3,3,1],[1,0,1,1]],[[1,1,2,0],[2,3,1,2],[1,4,3,1],[1,0,1,1]],[[1,1,2,0],[2,3,1,2],[1,3,4,1],[1,0,1,1]],[[2,1,2,0],[2,3,1,2],[1,3,3,1],[1,0,2,0]],[[1,1,2,0],[3,3,1,2],[1,3,3,1],[1,0,2,0]],[[1,1,2,0],[2,4,1,2],[1,3,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,1,2],[1,4,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,1,2],[1,3,4,1],[1,0,2,0]],[[1,1,2,0],[2,3,1,2],[1,3,3,1],[1,0,3,0]],[[2,1,2,0],[2,3,1,2],[1,3,3,1],[1,1,0,1]],[[1,1,2,0],[3,3,1,2],[1,3,3,1],[1,1,0,1]],[[1,1,2,0],[2,4,1,2],[1,3,3,1],[1,1,0,1]],[[1,1,2,0],[2,3,1,2],[1,4,3,1],[1,1,0,1]],[[1,1,2,0],[2,3,1,2],[1,3,4,1],[1,1,0,1]],[[2,1,2,0],[2,3,1,2],[1,3,3,1],[1,1,1,0]],[[1,1,2,0],[3,3,1,2],[1,3,3,1],[1,1,1,0]],[[1,1,2,0],[2,4,1,2],[1,3,3,1],[1,1,1,0]],[[1,1,2,0],[2,3,1,2],[1,4,3,1],[1,1,1,0]],[[1,1,2,0],[2,3,1,2],[1,3,4,1],[1,1,1,0]],[[1,2,0,1],[2,0,2,2],[2,3,3,1],[0,3,1,1]],[[2,1,2,0],[2,3,1,2],[1,3,3,1],[1,2,0,0]],[[1,1,2,0],[3,3,1,2],[1,3,3,1],[1,2,0,0]],[[1,1,2,0],[2,4,1,2],[1,3,3,1],[1,2,0,0]],[[1,1,2,0],[2,3,1,2],[1,4,3,1],[1,2,0,0]],[[1,2,0,1],[2,0,2,2],[2,3,4,1],[0,2,1,1]],[[1,2,0,1],[2,0,2,2],[2,4,3,1],[0,2,1,1]],[[1,2,0,1],[2,0,2,2],[3,3,3,1],[0,2,1,1]],[[1,2,0,1],[3,0,2,2],[2,3,3,1],[0,2,1,1]],[[1,3,0,1],[2,0,2,2],[2,3,3,1],[0,2,1,1]],[[2,2,0,1],[2,0,2,2],[2,3,3,1],[0,2,1,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,1],[0,1,2,2]],[[1,2,0,1],[2,0,2,2],[2,3,3,1],[0,1,3,1]],[[1,2,0,1],[2,0,2,2],[2,3,4,1],[0,1,2,1]],[[1,2,0,1],[2,0,2,2],[2,4,3,1],[0,1,2,1]],[[1,2,0,1],[2,0,2,2],[3,3,3,1],[0,1,2,1]],[[1,2,0,1],[3,0,2,2],[2,3,3,1],[0,1,2,1]],[[1,3,0,1],[2,0,2,2],[2,3,3,1],[0,1,2,1]],[[2,2,0,1],[2,0,2,2],[2,3,3,1],[0,1,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,0],[1,3,1,1]],[[1,2,0,1],[2,0,2,2],[2,3,3,0],[2,2,1,1]],[[1,2,0,1],[2,0,2,2],[3,3,3,0],[1,2,1,1]],[[1,2,0,1],[2,0,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[2,0,2,2],[2,4,2,2],[1,1,2,0]],[[1,2,0,1],[2,0,2,2],[3,3,2,2],[1,1,2,0]],[[1,2,0,1],[3,0,2,2],[2,3,2,2],[1,1,2,0]],[[1,3,0,1],[2,0,2,2],[2,3,2,2],[1,1,2,0]],[[2,2,0,1],[2,0,2,2],[2,3,2,2],[1,1,2,0]],[[1,2,0,1],[2,0,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,0,1],[2,0,2,2],[2,3,2,2],[1,0,3,1]],[[1,2,0,1],[2,0,2,2],[2,3,2,3],[1,0,2,1]],[[1,2,0,1],[2,0,2,3],[2,3,2,2],[1,0,2,1]],[[1,2,0,2],[2,0,2,2],[2,3,2,2],[1,0,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,2,2],[0,2,3,0]],[[1,2,0,1],[2,0,2,2],[2,3,2,2],[0,3,2,0]],[[1,2,0,1],[2,0,2,2],[2,4,2,2],[0,2,2,0]],[[1,2,0,1],[2,0,2,2],[3,3,2,2],[0,2,2,0]],[[1,2,0,1],[3,0,2,2],[2,3,2,2],[0,2,2,0]],[[1,3,0,1],[2,0,2,2],[2,3,2,2],[0,2,2,0]],[[2,2,0,1],[2,0,2,2],[2,3,2,2],[0,2,2,0]],[[1,2,0,1],[2,0,2,2],[2,3,2,2],[0,1,2,2]],[[1,2,0,1],[2,0,2,2],[2,3,2,2],[0,1,3,1]],[[1,2,0,1],[2,0,2,2],[2,3,2,3],[0,1,2,1]],[[1,2,0,1],[2,0,2,3],[2,3,2,2],[0,1,2,1]],[[1,2,0,2],[2,0,2,2],[2,3,2,2],[0,1,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,2,1],[1,3,2,0]],[[1,2,0,1],[2,0,2,2],[2,3,2,1],[2,2,2,0]],[[1,2,0,1],[2,0,2,2],[3,3,2,1],[1,2,2,0]],[[1,2,0,1],[2,0,2,2],[2,3,2,1],[2,1,2,1]],[[1,2,0,1],[2,0,2,2],[2,4,2,1],[1,1,2,1]],[[1,2,0,1],[2,0,2,2],[3,3,2,1],[1,1,2,1]],[[1,2,0,1],[3,0,2,2],[2,3,2,1],[1,1,2,1]],[[1,3,0,1],[2,0,2,2],[2,3,2,1],[1,1,2,1]],[[2,2,0,1],[2,0,2,2],[2,3,2,1],[1,1,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,2,1],[0,2,2,2]],[[1,2,0,1],[2,0,2,2],[2,3,2,1],[0,2,3,1]],[[1,2,0,1],[2,0,2,2],[2,3,2,1],[0,3,2,1]],[[1,2,0,1],[2,0,2,2],[2,4,2,1],[0,2,2,1]],[[1,2,0,1],[2,0,2,2],[3,3,2,1],[0,2,2,1]],[[1,2,0,1],[3,0,2,2],[2,3,2,1],[0,2,2,1]],[[1,3,0,1],[2,0,2,2],[2,3,2,1],[0,2,2,1]],[[2,2,0,1],[2,0,2,2],[2,3,2,1],[0,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,2,0],[1,2,3,1]],[[1,2,0,1],[2,0,2,2],[2,3,2,0],[1,3,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,2,0],[2,2,2,1]],[[1,2,0,1],[2,0,2,2],[3,3,2,0],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,1,2],[2,1,2,1]],[[1,2,0,1],[2,0,2,2],[2,4,1,2],[1,1,2,1]],[[1,2,0,1],[2,0,2,2],[3,3,1,2],[1,1,2,1]],[[1,2,0,1],[3,0,2,2],[2,3,1,2],[1,1,2,1]],[[1,3,0,1],[2,0,2,2],[2,3,1,2],[1,1,2,1]],[[2,2,0,1],[2,0,2,2],[2,3,1,2],[1,1,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,1,2],[0,2,2,2]],[[1,2,0,1],[2,0,2,2],[2,3,1,2],[0,2,3,1]],[[1,2,0,1],[2,0,2,2],[2,3,1,2],[0,3,2,1]],[[1,2,0,1],[2,0,2,2],[2,3,1,3],[0,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,4,1,2],[0,2,2,1]],[[1,2,0,1],[2,0,2,2],[3,3,1,2],[0,2,2,1]],[[1,2,0,1],[2,0,2,3],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[3,0,2,2],[2,3,1,2],[0,2,2,1]],[[1,2,0,2],[2,0,2,2],[2,3,1,2],[0,2,2,1]],[[1,3,0,1],[2,0,2,2],[2,3,1,2],[0,2,2,1]],[[2,2,0,1],[2,0,2,2],[2,3,1,2],[0,2,2,1]],[[2,1,2,0],[2,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[3,3,1,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,4,1,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,3],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[3,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,0,1,3],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,0,1,2],[2,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,0,1,2],[1,3,2,1]],[[1,1,2,0],[2,3,1,2],[2,0,1,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,2],[2,0,1,2],[1,2,2,2]],[[2,1,2,0],[2,3,1,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[3,3,1,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[2,4,1,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[3,0,3,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,0,4,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,0,3,0],[2,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,0,3,0],[1,3,2,1]],[[1,1,2,0],[2,3,1,2],[2,0,3,0],[1,2,3,1]],[[1,1,2,0],[2,3,1,2],[2,0,3,0],[1,2,2,2]],[[2,1,2,0],[2,3,1,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,0],[3,3,1,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,0],[2,4,1,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,0],[2,3,1,2],[3,0,3,1],[1,2,2,0]],[[1,1,2,0],[2,3,1,2],[2,0,4,1],[1,2,2,0]],[[1,1,2,0],[2,3,1,2],[2,0,3,1],[2,2,2,0]],[[1,1,2,0],[2,3,1,2],[2,0,3,1],[1,3,2,0]],[[1,1,2,0],[2,3,1,2],[2,0,3,1],[1,2,3,0]],[[1,2,0,1],[2,0,2,2],[2,2,3,2],[1,3,1,0]],[[2,1,2,0],[2,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[3,3,1,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,4,1,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,3],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[3,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,1,0,3],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,1,0,2],[2,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,1,0,2],[1,3,2,1]],[[1,1,2,0],[2,3,1,2],[2,1,0,2],[1,2,3,1]],[[1,1,2,0],[2,3,1,2],[2,1,0,2],[1,2,2,2]],[[2,1,2,0],[2,3,1,2],[2,1,2,0],[1,2,2,1]],[[1,1,2,0],[3,3,1,2],[2,1,2,0],[1,2,2,1]],[[1,1,2,0],[2,4,1,2],[2,1,2,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[3,1,2,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,1,2,0],[2,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,1,2,0],[1,3,2,1]],[[1,1,2,0],[2,3,1,2],[2,1,2,0],[1,2,3,1]],[[1,1,2,0],[2,3,1,2],[2,1,2,0],[1,2,2,2]],[[2,1,2,0],[2,3,1,2],[2,1,2,1],[1,2,2,0]],[[1,1,2,0],[3,3,1,2],[2,1,2,1],[1,2,2,0]],[[1,1,2,0],[2,4,1,2],[2,1,2,1],[1,2,2,0]],[[1,1,2,0],[2,3,1,2],[3,1,2,1],[1,2,2,0]],[[1,1,2,0],[2,3,1,2],[2,1,2,1],[2,2,2,0]],[[1,1,2,0],[2,3,1,2],[2,1,2,1],[1,3,2,0]],[[1,1,2,0],[2,3,1,2],[2,1,2,1],[1,2,3,0]],[[1,2,0,1],[2,0,2,2],[2,2,3,2],[2,2,1,0]],[[1,2,0,1],[2,0,2,2],[3,2,3,2],[1,2,1,0]],[[1,2,0,1],[3,0,2,2],[2,2,3,2],[1,2,1,0]],[[1,3,0,1],[2,0,2,2],[2,2,3,2],[1,2,1,0]],[[2,2,0,1],[2,0,2,2],[2,2,3,2],[1,2,1,0]],[[1,2,0,1],[2,0,2,2],[2,2,3,2],[1,3,0,1]],[[1,2,0,1],[2,0,2,2],[2,2,3,2],[2,2,0,1]],[[1,2,0,1],[2,0,2,2],[3,2,3,2],[1,2,0,1]],[[1,2,0,1],[3,0,2,2],[2,2,3,2],[1,2,0,1]],[[1,3,0,1],[2,0,2,2],[2,2,3,2],[1,2,0,1]],[[2,1,2,0],[2,3,1,2],[2,1,3,0],[1,2,1,1]],[[1,1,2,0],[3,3,1,2],[2,1,3,0],[1,2,1,1]],[[1,1,2,0],[2,4,1,2],[2,1,3,0],[1,2,1,1]],[[1,1,2,0],[2,3,1,2],[3,1,3,0],[1,2,1,1]],[[1,1,2,0],[2,3,1,2],[2,1,3,0],[2,2,1,1]],[[1,1,2,0],[2,3,1,2],[2,1,3,0],[1,3,1,1]],[[2,1,2,0],[2,3,1,2],[2,1,3,1],[1,2,0,1]],[[1,1,2,0],[3,3,1,2],[2,1,3,1],[1,2,0,1]],[[1,1,2,0],[2,4,1,2],[2,1,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,1,2],[3,1,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,1,2],[2,1,3,1],[2,2,0,1]],[[1,1,2,0],[2,3,1,2],[2,1,3,1],[1,3,0,1]],[[2,1,2,0],[2,3,1,2],[2,1,3,1],[1,2,1,0]],[[1,1,2,0],[3,3,1,2],[2,1,3,1],[1,2,1,0]],[[1,1,2,0],[2,4,1,2],[2,1,3,1],[1,2,1,0]],[[1,1,2,0],[2,3,1,2],[3,1,3,1],[1,2,1,0]],[[1,1,2,0],[2,3,1,2],[2,1,3,1],[2,2,1,0]],[[1,1,2,0],[2,3,1,2],[2,1,3,1],[1,3,1,0]],[[2,2,0,1],[2,0,2,2],[2,2,3,2],[1,2,0,1]],[[1,2,0,1],[2,0,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,0,1],[2,0,2,2],[2,2,3,2],[0,3,2,0]],[[1,2,0,1],[2,0,2,2],[2,2,3,3],[0,2,2,0]],[[1,2,0,1],[2,0,2,2],[2,2,4,2],[0,2,2,0]],[[1,2,0,1],[2,0,2,3],[2,2,3,2],[0,2,2,0]],[[1,2,0,2],[2,0,2,2],[2,2,3,2],[0,2,2,0]],[[1,2,0,1],[2,0,2,2],[2,2,3,2],[0,2,1,2]],[[1,2,0,1],[2,0,2,2],[2,2,3,3],[0,2,1,1]],[[1,2,0,1],[2,0,2,2],[2,2,4,2],[0,2,1,1]],[[1,2,0,1],[2,0,2,3],[2,2,3,2],[0,2,1,1]],[[1,2,0,2],[2,0,2,2],[2,2,3,2],[0,2,1,1]],[[1,2,0,1],[2,0,2,2],[2,2,3,1],[1,3,1,1]],[[1,2,0,1],[2,0,2,2],[2,2,3,1],[2,2,1,1]],[[1,2,0,1],[2,0,2,2],[3,2,3,1],[1,2,1,1]],[[1,2,0,1],[3,0,2,2],[2,2,3,1],[1,2,1,1]],[[1,3,0,1],[2,0,2,2],[2,2,3,1],[1,2,1,1]],[[2,2,0,1],[2,0,2,2],[2,2,3,1],[1,2,1,1]],[[1,2,0,1],[2,0,2,2],[2,2,3,1],[0,2,2,2]],[[1,2,0,1],[2,0,2,2],[2,2,3,1],[0,2,3,1]],[[1,2,0,1],[2,0,2,2],[2,2,3,1],[0,3,2,1]],[[1,2,0,1],[2,0,2,2],[2,2,4,1],[0,2,2,1]],[[2,1,2,0],[2,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[3,3,1,2],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[2,4,1,2],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,1,2],[3,2,0,2],[0,2,2,1]],[[2,1,2,0],[2,3,1,2],[2,2,0,2],[1,1,2,1]],[[1,1,2,0],[3,3,1,2],[2,2,0,2],[1,1,2,1]],[[1,1,2,0],[2,4,1,2],[2,2,0,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,2],[3,2,0,2],[1,1,2,1]],[[1,1,2,0],[2,3,1,2],[2,2,0,2],[2,1,2,1]],[[1,2,0,1],[2,0,2,2],[2,2,2,2],[1,2,3,0]],[[2,1,2,0],[2,3,1,2],[2,2,2,0],[0,2,2,1]],[[1,1,2,0],[3,3,1,2],[2,2,2,0],[0,2,2,1]],[[1,1,2,0],[2,4,1,2],[2,2,2,0],[0,2,2,1]],[[1,1,2,0],[2,3,1,2],[3,2,2,0],[0,2,2,1]],[[2,1,2,0],[2,3,1,2],[2,2,2,0],[1,1,2,1]],[[1,1,2,0],[3,3,1,2],[2,2,2,0],[1,1,2,1]],[[1,1,2,0],[2,4,1,2],[2,2,2,0],[1,1,2,1]],[[1,1,2,0],[2,3,1,2],[3,2,2,0],[1,1,2,1]],[[1,1,2,0],[2,3,1,2],[2,2,2,0],[2,1,2,1]],[[2,1,2,0],[2,3,1,2],[2,2,2,1],[0,2,2,0]],[[1,1,2,0],[3,3,1,2],[2,2,2,1],[0,2,2,0]],[[1,1,2,0],[2,4,1,2],[2,2,2,1],[0,2,2,0]],[[1,1,2,0],[2,3,1,2],[3,2,2,1],[0,2,2,0]],[[2,1,2,0],[2,3,1,2],[2,2,2,1],[1,1,2,0]],[[1,1,2,0],[3,3,1,2],[2,2,2,1],[1,1,2,0]],[[1,1,2,0],[2,4,1,2],[2,2,2,1],[1,1,2,0]],[[1,1,2,0],[2,3,1,2],[3,2,2,1],[1,1,2,0]],[[1,1,2,0],[2,3,1,2],[2,2,2,1],[2,1,2,0]],[[1,2,0,1],[2,0,2,2],[2,2,2,2],[1,3,2,0]],[[1,2,0,1],[2,0,2,2],[2,2,2,2],[2,2,2,0]],[[1,2,0,1],[2,0,2,2],[3,2,2,2],[1,2,2,0]],[[1,2,0,1],[3,0,2,2],[2,2,2,2],[1,2,2,0]],[[1,3,0,1],[2,0,2,2],[2,2,2,2],[1,2,2,0]],[[2,2,0,1],[2,0,2,2],[2,2,2,2],[1,2,2,0]],[[1,2,0,1],[2,0,2,2],[2,2,2,2],[0,2,2,2]],[[1,2,0,1],[2,0,2,2],[2,2,2,2],[0,2,3,1]],[[1,2,0,1],[2,0,2,2],[2,2,2,2],[0,3,2,1]],[[1,2,0,1],[2,0,2,2],[2,2,2,3],[0,2,2,1]],[[1,2,0,1],[2,0,2,3],[2,2,2,2],[0,2,2,1]],[[1,2,0,2],[2,0,2,2],[2,2,2,2],[0,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,2,2,1],[1,2,2,2]],[[1,2,0,1],[2,0,2,2],[2,2,2,1],[1,2,3,1]],[[1,2,0,1],[2,0,2,2],[2,2,2,1],[1,3,2,1]],[[1,2,0,1],[2,0,2,2],[2,2,2,1],[2,2,2,1]],[[1,2,0,1],[2,0,2,2],[3,2,2,1],[1,2,2,1]],[[1,2,0,1],[3,0,2,2],[2,2,2,1],[1,2,2,1]],[[1,3,0,1],[2,0,2,2],[2,2,2,1],[1,2,2,1]],[[2,2,0,1],[2,0,2,2],[2,2,2,1],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,2,1,2],[1,2,2,2]],[[1,2,0,1],[2,0,2,2],[2,2,1,2],[1,2,3,1]],[[1,2,0,1],[2,0,2,2],[2,2,1,2],[1,3,2,1]],[[1,2,0,1],[2,0,2,2],[2,2,1,2],[2,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,2,1,3],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[3,2,1,2],[1,2,2,1]],[[1,2,0,1],[2,0,2,3],[2,2,1,2],[1,2,2,1]],[[1,2,0,1],[3,0,2,2],[2,2,1,2],[1,2,2,1]],[[1,2,0,2],[2,0,2,2],[2,2,1,2],[1,2,2,1]],[[1,3,0,1],[2,0,2,2],[2,2,1,2],[1,2,2,1]],[[2,2,0,1],[2,0,2,2],[2,2,1,2],[1,2,2,1]],[[2,1,2,0],[2,3,1,2],[2,2,3,0],[0,1,2,1]],[[1,1,2,0],[3,3,1,2],[2,2,3,0],[0,1,2,1]],[[1,1,2,0],[2,4,1,2],[2,2,3,0],[0,1,2,1]],[[1,1,2,0],[2,3,1,2],[3,2,3,0],[0,1,2,1]],[[2,1,2,0],[2,3,1,2],[2,2,3,0],[0,2,1,1]],[[1,1,2,0],[3,3,1,2],[2,2,3,0],[0,2,1,1]],[[1,1,2,0],[2,4,1,2],[2,2,3,0],[0,2,1,1]],[[1,1,2,0],[2,3,1,2],[3,2,3,0],[0,2,1,1]],[[2,1,2,0],[2,3,1,2],[2,2,3,0],[1,0,2,1]],[[1,1,2,0],[3,3,1,2],[2,2,3,0],[1,0,2,1]],[[1,1,2,0],[2,4,1,2],[2,2,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,1,2],[3,2,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,1,2],[2,2,3,0],[2,0,2,1]],[[2,1,2,0],[2,3,1,2],[2,2,3,0],[1,1,1,1]],[[1,1,2,0],[3,3,1,2],[2,2,3,0],[1,1,1,1]],[[1,1,2,0],[2,4,1,2],[2,2,3,0],[1,1,1,1]],[[1,1,2,0],[2,3,1,2],[3,2,3,0],[1,1,1,1]],[[1,1,2,0],[2,3,1,2],[2,2,3,0],[2,1,1,1]],[[2,1,2,0],[2,3,1,2],[2,2,3,0],[1,2,0,1]],[[1,1,2,0],[3,3,1,2],[2,2,3,0],[1,2,0,1]],[[1,1,2,0],[2,4,1,2],[2,2,3,0],[1,2,0,1]],[[1,1,2,0],[2,3,1,2],[3,2,3,0],[1,2,0,1]],[[1,1,2,0],[2,3,1,2],[2,2,3,0],[2,2,0,1]],[[1,2,0,1],[2,0,2,2],[2,1,3,2],[1,2,3,0]],[[1,2,0,1],[2,0,2,2],[2,1,3,2],[1,3,2,0]],[[1,2,0,1],[2,0,2,2],[2,1,3,2],[2,2,2,0]],[[1,2,0,1],[2,0,2,2],[2,1,3,3],[1,2,2,0]],[[1,2,0,1],[2,0,2,2],[2,1,4,2],[1,2,2,0]],[[2,1,2,0],[2,3,1,2],[2,2,3,1],[0,1,1,1]],[[1,1,2,0],[3,3,1,2],[2,2,3,1],[0,1,1,1]],[[1,1,2,0],[2,4,1,2],[2,2,3,1],[0,1,1,1]],[[1,1,2,0],[2,3,1,2],[3,2,3,1],[0,1,1,1]],[[2,1,2,0],[2,3,1,2],[2,2,3,1],[0,1,2,0]],[[1,1,2,0],[3,3,1,2],[2,2,3,1],[0,1,2,0]],[[1,1,2,0],[2,4,1,2],[2,2,3,1],[0,1,2,0]],[[1,1,2,0],[2,3,1,2],[3,2,3,1],[0,1,2,0]],[[2,1,2,0],[2,3,1,2],[2,2,3,1],[0,2,0,1]],[[1,1,2,0],[3,3,1,2],[2,2,3,1],[0,2,0,1]],[[1,1,2,0],[2,4,1,2],[2,2,3,1],[0,2,0,1]],[[1,1,2,0],[2,3,1,2],[3,2,3,1],[0,2,0,1]],[[2,1,2,0],[2,3,1,2],[2,2,3,1],[0,2,1,0]],[[1,1,2,0],[3,3,1,2],[2,2,3,1],[0,2,1,0]],[[1,1,2,0],[2,4,1,2],[2,2,3,1],[0,2,1,0]],[[1,1,2,0],[2,3,1,2],[3,2,3,1],[0,2,1,0]],[[1,2,0,1],[2,0,2,2],[3,1,3,2],[1,2,2,0]],[[1,2,0,1],[2,0,2,3],[2,1,3,2],[1,2,2,0]],[[1,2,0,1],[3,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,2,0,2],[2,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,3,0,1],[2,0,2,2],[2,1,3,2],[1,2,2,0]],[[2,2,0,1],[2,0,2,2],[2,1,3,2],[1,2,2,0]],[[1,2,0,1],[2,0,2,2],[2,1,3,2],[1,2,1,2]],[[1,2,0,1],[2,0,2,2],[2,1,3,3],[1,2,1,1]],[[2,1,2,0],[2,3,1,2],[2,2,3,1],[1,0,1,1]],[[1,1,2,0],[3,3,1,2],[2,2,3,1],[1,0,1,1]],[[1,1,2,0],[2,4,1,2],[2,2,3,1],[1,0,1,1]],[[1,1,2,0],[2,3,1,2],[3,2,3,1],[1,0,1,1]],[[1,1,2,0],[2,3,1,2],[2,2,3,1],[2,0,1,1]],[[2,1,2,0],[2,3,1,2],[2,2,3,1],[1,0,2,0]],[[1,1,2,0],[3,3,1,2],[2,2,3,1],[1,0,2,0]],[[1,1,2,0],[2,4,1,2],[2,2,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,1,2],[3,2,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,1,2],[2,2,3,1],[2,0,2,0]],[[2,1,2,0],[2,3,1,2],[2,2,3,1],[1,1,0,1]],[[1,1,2,0],[3,3,1,2],[2,2,3,1],[1,1,0,1]],[[1,1,2,0],[2,4,1,2],[2,2,3,1],[1,1,0,1]],[[1,1,2,0],[2,3,1,2],[3,2,3,1],[1,1,0,1]],[[1,1,2,0],[2,3,1,2],[2,2,3,1],[2,1,0,1]],[[2,1,2,0],[2,3,1,2],[2,2,3,1],[1,1,1,0]],[[1,1,2,0],[3,3,1,2],[2,2,3,1],[1,1,1,0]],[[1,1,2,0],[2,4,1,2],[2,2,3,1],[1,1,1,0]],[[1,1,2,0],[2,3,1,2],[3,2,3,1],[1,1,1,0]],[[1,1,2,0],[2,3,1,2],[2,2,3,1],[2,1,1,0]],[[1,2,0,1],[2,0,2,2],[2,1,4,2],[1,2,1,1]],[[1,2,0,1],[2,0,2,3],[2,1,3,2],[1,2,1,1]],[[1,2,0,2],[2,0,2,2],[2,1,3,2],[1,2,1,1]],[[1,2,0,1],[2,0,2,2],[2,1,3,2],[0,2,2,2]],[[1,2,0,1],[2,0,2,2],[2,1,3,2],[0,2,3,1]],[[2,1,2,0],[2,3,1,2],[2,2,3,1],[1,2,0,0]],[[1,1,2,0],[3,3,1,2],[2,2,3,1],[1,2,0,0]],[[1,1,2,0],[2,4,1,2],[2,2,3,1],[1,2,0,0]],[[1,1,2,0],[2,3,1,2],[3,2,3,1],[1,2,0,0]],[[1,1,2,0],[2,3,1,2],[2,2,3,1],[2,2,0,0]],[[1,2,0,1],[2,0,2,2],[2,1,3,3],[0,2,2,1]],[[1,2,0,1],[2,0,2,3],[2,1,3,2],[0,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,1,3,1],[1,2,2,2]],[[1,2,0,1],[2,0,2,2],[2,1,3,1],[1,2,3,1]],[[1,2,0,1],[2,0,2,2],[2,1,3,1],[1,3,2,1]],[[1,2,0,1],[2,0,2,2],[2,1,3,1],[2,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,1,4,1],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[3,1,3,1],[1,2,2,1]],[[1,2,0,1],[3,0,2,2],[2,1,3,1],[1,2,2,1]],[[1,3,0,1],[2,0,2,2],[2,1,3,1],[1,2,2,1]],[[2,2,0,1],[2,0,2,2],[2,1,3,1],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,1,2,2],[1,2,2,2]],[[1,2,0,1],[2,0,2,2],[2,1,2,2],[1,2,3,1]],[[1,2,0,1],[2,0,2,2],[2,1,2,2],[1,3,2,1]],[[1,2,0,1],[2,0,2,2],[2,1,2,2],[2,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,1,2,3],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[3,1,2,2],[1,2,2,1]],[[1,2,0,1],[2,0,2,3],[2,1,2,2],[1,2,2,1]],[[1,2,0,1],[3,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,2,0,2],[2,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,3,0,1],[2,0,2,2],[2,1,2,2],[1,2,2,1]],[[2,2,0,1],[2,0,2,2],[2,1,2,2],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[2,0,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,2,2],[2,0,3,2],[1,2,3,1]],[[1,2,0,1],[2,0,2,2],[2,0,3,3],[1,2,2,1]],[[1,2,0,1],[2,0,2,3],[2,0,3,2],[1,2,2,1]],[[1,2,0,2],[2,0,2,2],[2,0,3,2],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,0,2,2],[1,3,3,2],[2,2,1,0]],[[1,2,0,1],[2,0,2,2],[1,3,3,3],[1,2,1,0]],[[1,2,0,1],[2,0,2,2],[1,3,4,2],[1,2,1,0]],[[1,2,0,1],[2,0,2,2],[1,4,3,2],[1,2,1,0]],[[1,2,0,1],[2,0,2,3],[1,3,3,2],[1,2,1,0]],[[1,2,0,2],[2,0,2,2],[1,3,3,2],[1,2,1,0]],[[1,2,0,1],[2,0,2,2],[1,3,3,2],[1,2,0,2]],[[1,2,0,1],[2,0,2,2],[1,3,3,2],[1,3,0,1]],[[1,2,0,1],[2,0,2,2],[1,3,3,2],[2,2,0,1]],[[1,2,0,1],[2,0,2,2],[1,3,3,3],[1,2,0,1]],[[1,2,0,1],[2,0,2,2],[1,3,4,2],[1,2,0,1]],[[1,2,0,1],[2,0,2,2],[1,4,3,2],[1,2,0,1]],[[1,2,0,1],[2,0,2,3],[1,3,3,2],[1,2,0,1]],[[1,2,0,2],[2,0,2,2],[1,3,3,2],[1,2,0,1]],[[1,2,0,1],[2,0,2,2],[1,3,3,2],[1,1,3,0]],[[1,2,0,1],[2,0,2,2],[1,3,3,3],[1,1,2,0]],[[1,2,0,1],[2,0,2,2],[1,3,4,2],[1,1,2,0]],[[1,2,0,1],[2,0,2,2],[1,4,3,2],[1,1,2,0]],[[1,2,0,1],[2,0,2,3],[1,3,3,2],[1,1,2,0]],[[1,2,0,2],[2,0,2,2],[1,3,3,2],[1,1,2,0]],[[1,2,0,1],[2,0,2,2],[1,3,3,2],[1,1,1,2]],[[1,2,0,1],[2,0,2,2],[1,3,3,3],[1,1,1,1]],[[1,2,0,1],[2,0,2,2],[1,3,4,2],[1,1,1,1]],[[1,2,0,1],[2,0,2,2],[1,4,3,2],[1,1,1,1]],[[1,2,0,1],[2,0,2,3],[1,3,3,2],[1,1,1,1]],[[1,2,0,2],[2,0,2,2],[1,3,3,2],[1,1,1,1]],[[1,2,0,1],[2,0,2,2],[1,3,3,2],[1,0,2,2]],[[1,2,0,1],[2,0,2,2],[1,3,3,3],[1,0,2,1]],[[1,2,0,1],[2,0,2,2],[1,3,4,2],[1,0,2,1]],[[1,2,0,1],[2,0,2,3],[1,3,3,2],[1,0,2,1]],[[1,2,0,1],[2,0,2,2],[1,3,3,1],[1,3,1,1]],[[1,2,0,1],[2,0,2,2],[1,3,3,1],[2,2,1,1]],[[1,2,0,1],[2,0,2,2],[1,3,4,1],[1,2,1,1]],[[1,2,0,1],[2,0,2,2],[1,4,3,1],[1,2,1,1]],[[1,2,0,1],[2,0,2,2],[1,3,3,1],[1,1,2,2]],[[1,2,0,1],[2,0,2,2],[1,3,3,1],[1,1,3,1]],[[1,2,0,1],[2,0,2,2],[1,3,4,1],[1,1,2,1]],[[1,2,0,1],[2,0,2,2],[1,4,3,1],[1,1,2,1]],[[1,2,0,1],[2,0,2,2],[1,3,2,2],[1,2,3,0]],[[1,2,0,1],[2,0,2,2],[1,3,2,2],[1,3,2,0]],[[1,2,0,1],[2,0,2,2],[1,3,2,2],[2,2,2,0]],[[1,2,0,1],[2,0,2,2],[1,4,2,2],[1,2,2,0]],[[1,2,0,1],[2,0,2,2],[1,3,2,2],[1,1,2,2]],[[1,2,0,1],[2,0,2,2],[1,3,2,2],[1,1,3,1]],[[1,2,0,1],[2,0,2,2],[1,3,2,3],[1,1,2,1]],[[1,2,0,1],[2,0,2,3],[1,3,2,2],[1,1,2,1]],[[1,2,0,2],[2,0,2,2],[1,3,2,2],[1,1,2,1]],[[1,2,0,1],[2,0,2,2],[1,3,2,1],[1,2,2,2]],[[1,2,0,1],[2,0,2,2],[1,3,2,1],[1,2,3,1]],[[1,2,0,1],[2,0,2,2],[1,3,2,1],[1,3,2,1]],[[1,2,0,1],[2,0,2,2],[1,3,2,1],[2,2,2,1]],[[1,2,0,1],[2,0,2,2],[1,4,2,1],[1,2,2,1]],[[2,1,2,0],[2,3,1,2],[2,3,0,0],[1,2,2,1]],[[1,1,2,0],[3,3,1,2],[2,3,0,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[3,3,0,0],[1,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,3,0,0],[2,2,2,1]],[[1,1,2,0],[2,3,1,2],[2,3,0,0],[1,3,2,1]],[[2,1,2,0],[2,3,1,2],[2,3,0,1],[1,2,2,0]],[[1,1,2,0],[3,3,1,2],[2,3,0,1],[1,2,2,0]],[[1,1,2,0],[2,3,1,2],[3,3,0,1],[1,2,2,0]],[[1,1,2,0],[2,3,1,2],[2,3,0,1],[2,2,2,0]],[[1,1,2,0],[2,3,1,2],[2,3,0,1],[1,3,2,0]],[[1,2,0,1],[2,0,2,2],[1,3,1,2],[1,2,2,2]],[[1,2,0,1],[2,0,2,2],[1,3,1,2],[1,2,3,1]],[[1,2,0,1],[2,0,2,2],[1,3,1,2],[1,3,2,1]],[[1,2,0,1],[2,0,2,2],[1,3,1,2],[2,2,2,1]],[[1,2,0,1],[2,0,2,2],[1,3,1,3],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[1,4,1,2],[1,2,2,1]],[[1,2,0,1],[2,0,2,3],[1,3,1,2],[1,2,2,1]],[[1,2,0,2],[2,0,2,2],[1,3,1,2],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[1,2,3,2],[1,2,3,0]],[[1,2,0,1],[2,0,2,2],[1,2,3,2],[1,3,2,0]],[[1,2,0,1],[2,0,2,2],[1,2,3,2],[2,2,2,0]],[[1,2,0,1],[2,0,2,2],[1,2,3,3],[1,2,2,0]],[[1,2,0,1],[2,0,2,2],[1,2,4,2],[1,2,2,0]],[[1,2,0,1],[2,0,2,3],[1,2,3,2],[1,2,2,0]],[[1,2,0,2],[2,0,2,2],[1,2,3,2],[1,2,2,0]],[[1,2,0,1],[2,0,2,2],[1,2,3,2],[1,2,1,2]],[[1,2,0,1],[2,0,2,2],[1,2,3,3],[1,2,1,1]],[[1,2,0,1],[2,0,2,2],[1,2,4,2],[1,2,1,1]],[[1,2,0,1],[2,0,2,3],[1,2,3,2],[1,2,1,1]],[[1,2,0,2],[2,0,2,2],[1,2,3,2],[1,2,1,1]],[[1,2,0,1],[2,0,2,2],[1,2,3,1],[1,2,2,2]],[[1,2,0,1],[2,0,2,2],[1,2,3,1],[1,2,3,1]],[[1,2,0,1],[2,0,2,2],[1,2,3,1],[1,3,2,1]],[[1,2,0,1],[2,0,2,2],[1,2,3,1],[2,2,2,1]],[[1,2,0,1],[2,0,2,2],[1,2,4,1],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[1,2,2,2],[1,2,2,2]],[[1,2,0,1],[2,0,2,2],[1,2,2,2],[1,2,3,1]],[[1,2,0,1],[2,0,2,2],[1,2,2,2],[1,3,2,1]],[[1,2,0,1],[2,0,2,2],[1,2,2,2],[2,2,2,1]],[[1,2,0,1],[2,0,2,2],[1,2,2,3],[1,2,2,1]],[[1,2,0,1],[2,0,2,3],[1,2,2,2],[1,2,2,1]],[[1,2,0,2],[2,0,2,2],[1,2,2,2],[1,2,2,1]],[[1,2,0,1],[2,0,2,2],[1,1,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,2,2],[1,1,3,2],[1,2,3,1]],[[1,2,0,1],[2,0,2,2],[1,1,3,3],[1,2,2,1]],[[1,2,0,1],[2,0,2,3],[1,1,3,2],[1,2,2,1]],[[1,2,0,1],[2,0,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,0,2,1],[2,3,3,2],[2,2,1,0]],[[1,2,0,1],[2,0,2,1],[3,3,3,2],[1,2,1,0]],[[1,2,0,1],[2,0,2,1],[2,3,3,2],[1,3,0,1]],[[1,2,0,1],[2,0,2,1],[2,3,3,2],[2,2,0,1]],[[1,2,0,1],[2,0,2,1],[3,3,3,2],[1,2,0,1]],[[1,2,0,1],[2,0,2,1],[2,3,3,1],[1,3,1,1]],[[1,2,0,1],[2,0,2,1],[2,3,3,1],[2,2,1,1]],[[1,2,0,1],[2,0,2,1],[3,3,3,1],[1,2,1,1]],[[1,2,0,1],[2,0,2,1],[2,3,3,0],[1,2,3,1]],[[1,2,0,1],[2,0,2,1],[2,3,3,0],[1,3,2,1]],[[1,2,0,1],[2,0,2,1],[2,3,3,0],[2,2,2,1]],[[1,2,0,1],[2,0,2,1],[3,3,3,0],[1,2,2,1]],[[1,2,0,1],[2,0,2,1],[2,3,2,2],[1,2,3,0]],[[1,2,0,1],[2,0,2,1],[2,3,2,2],[1,3,2,0]],[[1,2,0,1],[2,0,2,1],[2,3,2,2],[2,2,2,0]],[[1,2,0,1],[2,0,2,1],[3,3,2,2],[1,2,2,0]],[[1,2,0,1],[2,0,2,1],[2,3,2,1],[1,2,2,2]],[[1,2,0,1],[2,0,2,1],[2,3,2,1],[1,2,3,1]],[[1,2,0,1],[2,0,2,1],[2,3,2,1],[1,3,2,1]],[[1,2,0,1],[2,0,2,1],[2,3,2,1],[2,2,2,1]],[[1,2,0,1],[2,0,2,1],[3,3,2,1],[1,2,2,1]],[[1,2,0,1],[2,0,2,1],[2,3,1,2],[1,2,2,2]],[[1,2,0,1],[2,0,2,1],[2,3,1,2],[1,2,3,1]],[[1,2,0,1],[2,0,2,1],[2,3,1,2],[1,3,2,1]],[[1,2,0,1],[2,0,2,1],[2,3,1,2],[2,2,2,1]],[[1,2,0,1],[2,0,2,1],[3,3,1,2],[1,2,2,1]],[[1,2,0,1],[2,0,2,0],[2,3,3,2],[1,3,1,1]],[[1,2,0,1],[2,0,2,0],[2,3,3,2],[2,2,1,1]],[[1,2,0,1],[2,0,2,0],[3,3,3,2],[1,2,1,1]],[[1,2,0,1],[2,0,2,0],[2,3,2,2],[1,2,2,2]],[[1,2,0,1],[2,0,2,0],[2,3,2,2],[1,2,3,1]],[[1,2,0,1],[2,0,2,0],[2,3,2,2],[1,3,2,1]],[[1,2,0,1],[2,0,2,0],[2,3,2,2],[2,2,2,1]],[[1,2,0,1],[2,0,2,0],[3,3,2,2],[1,2,2,1]],[[1,2,0,1],[2,0,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,0,1],[2,0,1,2],[2,3,3,2],[2,2,1,0]],[[1,2,0,1],[2,0,1,2],[3,3,3,2],[1,2,1,0]],[[1,2,0,1],[2,0,1,2],[2,3,3,2],[1,3,0,1]],[[1,2,0,1],[2,0,1,2],[2,3,3,2],[2,2,0,1]],[[1,2,0,1],[2,0,1,2],[3,3,3,2],[1,2,0,1]],[[1,2,0,1],[2,0,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,0,1],[2,0,1,2],[2,3,3,2],[1,0,3,1]],[[1,2,0,1],[2,0,1,2],[2,3,3,3],[1,0,2,1]],[[1,2,0,1],[2,0,1,2],[2,3,3,2],[0,1,2,2]],[[1,2,0,1],[2,0,1,2],[2,3,3,2],[0,1,3,1]],[[1,2,0,1],[2,0,1,2],[2,3,3,3],[0,1,2,1]],[[1,2,0,1],[2,0,1,2],[2,3,3,1],[1,3,1,1]],[[1,2,0,1],[2,0,1,2],[2,3,3,1],[2,2,1,1]],[[1,2,0,1],[2,0,1,2],[3,3,3,1],[1,2,1,1]],[[1,2,0,1],[2,0,1,2],[2,3,2,2],[1,2,3,0]],[[1,2,0,1],[2,0,1,2],[2,3,2,2],[1,3,2,0]],[[1,2,0,1],[2,0,1,2],[2,3,2,2],[2,2,2,0]],[[1,2,0,1],[2,0,1,2],[3,3,2,2],[1,2,2,0]],[[1,2,0,1],[2,0,1,2],[2,3,2,1],[1,2,2,2]],[[1,2,0,1],[2,0,1,2],[2,3,2,1],[1,2,3,1]],[[1,2,0,1],[2,0,1,2],[2,3,2,1],[1,3,2,1]],[[1,2,0,1],[2,0,1,2],[2,3,2,1],[2,2,2,1]],[[1,2,0,1],[2,0,1,2],[3,3,2,1],[1,2,2,1]],[[1,2,0,1],[2,0,1,2],[2,3,1,2],[1,2,2,2]],[[1,2,0,1],[2,0,1,2],[2,3,1,2],[1,2,3,1]],[[1,2,0,1],[2,0,1,2],[2,3,1,2],[1,3,2,1]],[[1,2,0,1],[2,0,1,2],[2,3,1,2],[2,2,2,1]],[[1,2,0,1],[2,0,1,2],[2,3,1,3],[1,2,2,1]],[[1,2,0,1],[2,0,1,2],[3,3,1,2],[1,2,2,1]],[[2,1,2,0],[2,3,1,2],[2,3,3,0],[1,0,1,1]],[[1,1,2,0],[3,3,1,2],[2,3,3,0],[1,0,1,1]],[[1,1,2,0],[2,4,1,2],[2,3,3,0],[1,0,1,1]],[[1,1,2,0],[2,3,1,2],[3,3,3,0],[1,0,1,1]],[[1,2,0,1],[2,0,1,2],[2,2,3,2],[0,2,2,2]],[[1,2,0,1],[2,0,1,2],[2,2,3,2],[0,2,3,1]],[[1,2,0,1],[2,0,1,2],[2,2,3,2],[0,3,2,1]],[[1,2,0,1],[2,0,1,2],[2,2,3,3],[0,2,2,1]],[[1,2,0,1],[2,0,1,2],[2,1,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,1,2],[2,1,3,2],[1,2,3,1]],[[1,2,0,1],[2,0,1,2],[2,1,3,2],[1,3,2,1]],[[1,2,0,1],[2,0,1,2],[2,1,3,2],[2,2,2,1]],[[1,2,0,1],[2,0,1,2],[2,1,3,3],[1,2,2,1]],[[1,2,0,1],[2,0,1,2],[3,1,3,2],[1,2,2,1]],[[1,2,0,1],[2,0,1,2],[1,3,3,2],[1,1,2,2]],[[1,2,0,1],[2,0,1,2],[1,3,3,2],[1,1,3,1]],[[1,2,0,1],[2,0,1,2],[1,3,3,3],[1,1,2,1]],[[1,2,0,1],[2,0,1,2],[1,2,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,1,2],[1,2,3,2],[1,2,3,1]],[[1,2,0,1],[2,0,1,2],[1,2,3,2],[1,3,2,1]],[[1,2,0,1],[2,0,1,2],[1,2,3,2],[2,2,2,1]],[[1,2,0,1],[2,0,1,2],[1,2,3,3],[1,2,2,1]],[[1,2,0,1],[2,0,1,1],[2,3,3,2],[1,2,3,0]],[[1,2,0,1],[2,0,1,1],[2,3,3,2],[1,3,2,0]],[[1,2,0,1],[2,0,1,1],[2,3,3,2],[2,2,2,0]],[[1,2,0,1],[2,0,1,1],[3,3,3,2],[1,2,2,0]],[[1,2,0,1],[2,0,1,1],[2,3,3,1],[1,2,2,2]],[[1,2,0,1],[2,0,1,1],[2,3,3,1],[1,2,3,1]],[[1,2,0,1],[2,0,1,1],[2,3,3,1],[1,3,2,1]],[[1,2,0,1],[2,0,1,1],[2,3,3,1],[2,2,2,1]],[[1,2,0,1],[2,0,1,1],[3,3,3,1],[1,2,2,1]],[[1,2,0,1],[2,0,1,0],[2,3,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,1,0],[2,3,3,2],[1,2,3,1]],[[1,2,0,1],[2,0,1,0],[2,3,3,2],[1,3,2,1]],[[1,2,0,1],[2,0,1,0],[2,3,3,2],[2,2,2,1]],[[1,2,0,1],[2,0,1,0],[3,3,3,2],[1,2,2,1]],[[1,2,0,1],[2,0,0,2],[2,3,3,2],[1,2,3,0]],[[1,2,0,1],[2,0,0,2],[2,3,3,2],[1,3,2,0]],[[1,2,0,1],[2,0,0,2],[2,3,3,2],[2,2,2,0]],[[1,2,0,1],[2,0,0,2],[3,3,3,2],[1,2,2,0]],[[1,2,0,1],[2,0,0,2],[2,3,3,2],[0,2,2,2]],[[1,2,0,1],[2,0,0,2],[2,3,3,2],[0,2,3,1]],[[2,1,2,0],[2,3,1,2],[2,3,3,1],[1,0,0,1]],[[1,1,2,0],[3,3,1,2],[2,3,3,1],[1,0,0,1]],[[1,1,2,0],[2,4,1,2],[2,3,3,1],[1,0,0,1]],[[1,1,2,0],[2,3,1,2],[3,3,3,1],[1,0,0,1]],[[2,1,2,0],[2,3,1,2],[2,3,3,1],[1,0,1,0]],[[1,1,2,0],[3,3,1,2],[2,3,3,1],[1,0,1,0]],[[1,1,2,0],[2,4,1,2],[2,3,3,1],[1,0,1,0]],[[1,1,2,0],[2,3,1,2],[3,3,3,1],[1,0,1,0]],[[1,2,0,1],[2,0,0,2],[2,3,3,2],[0,3,2,1]],[[1,2,0,1],[2,0,0,2],[2,3,3,3],[0,2,2,1]],[[1,2,0,1],[2,0,0,2],[2,3,3,1],[1,2,2,2]],[[1,2,0,1],[2,0,0,2],[2,3,3,1],[1,2,3,1]],[[1,2,0,1],[2,0,0,2],[2,3,3,1],[1,3,2,1]],[[1,2,0,1],[2,0,0,2],[2,3,3,1],[2,2,2,1]],[[1,2,0,1],[2,0,0,2],[3,3,3,1],[1,2,2,1]],[[1,2,0,1],[2,0,0,2],[2,3,2,2],[1,2,2,2]],[[1,2,0,1],[2,0,0,2],[2,3,2,2],[1,2,3,1]],[[1,2,0,1],[2,0,0,2],[2,3,2,2],[1,3,2,1]],[[1,2,0,1],[2,0,0,2],[2,3,2,2],[2,2,2,1]],[[1,2,0,1],[2,0,0,2],[2,3,2,3],[1,2,2,1]],[[1,2,0,1],[2,0,0,2],[3,3,2,2],[1,2,2,1]],[[1,2,0,1],[2,0,0,2],[2,2,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,0,2],[2,2,3,2],[1,2,3,1]],[[1,2,0,1],[2,0,0,2],[2,2,3,2],[1,3,2,1]],[[1,2,0,1],[2,0,0,2],[2,2,3,2],[2,2,2,1]],[[1,2,0,1],[2,0,0,2],[2,2,3,3],[1,2,2,1]],[[1,2,0,1],[2,0,0,2],[3,2,3,2],[1,2,2,1]],[[1,2,0,1],[2,0,0,2],[1,3,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,0,2],[1,3,3,2],[1,2,3,1]],[[1,2,0,1],[2,0,0,2],[1,3,3,2],[1,3,2,1]],[[1,2,0,1],[2,0,0,2],[1,3,3,2],[2,2,2,1]],[[1,2,0,1],[2,0,0,2],[1,3,3,3],[1,2,2,1]],[[1,2,0,1],[2,0,0,1],[2,3,3,2],[1,2,2,2]],[[1,2,0,1],[2,0,0,1],[2,3,3,2],[1,2,3,1]],[[1,2,0,1],[2,0,0,1],[2,3,3,2],[1,3,2,1]],[[1,2,0,1],[2,0,0,1],[2,3,3,2],[2,2,2,1]],[[1,2,0,1],[2,0,0,1],[3,3,3,2],[1,2,2,1]],[[1,2,0,1],[1,3,3,3],[2,3,3,1],[1,0,0,0]],[[1,2,0,1],[1,3,4,2],[2,3,3,1],[1,0,0,0]],[[1,2,0,1],[1,4,3,2],[2,3,3,1],[1,0,0,0]],[[1,2,0,2],[1,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,3,0,1],[1,3,3,2],[2,3,3,1],[1,0,0,0]],[[2,2,0,1],[1,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,2,0,1],[1,3,4,2],[2,3,3,0],[1,0,1,0]],[[1,2,0,1],[1,4,3,2],[2,3,3,0],[1,0,1,0]],[[1,3,0,1],[1,3,3,2],[2,3,3,0],[1,0,1,0]],[[2,2,0,1],[1,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,2,0,1],[1,3,3,3],[2,3,2,1],[1,0,1,0]],[[1,2,0,1],[1,3,4,2],[2,3,2,1],[1,0,1,0]],[[1,2,0,1],[1,4,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,0,2],[1,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,3,0,1],[1,3,3,2],[2,3,2,1],[1,0,1,0]],[[2,2,0,1],[1,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,0,1],[1,3,3,3],[2,3,2,1],[1,0,0,1]],[[1,2,0,1],[1,3,4,2],[2,3,2,1],[1,0,0,1]],[[1,2,0,1],[1,4,3,2],[2,3,2,1],[1,0,0,1]],[[1,2,0,2],[1,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,3,0,1],[1,3,3,2],[2,3,2,1],[1,0,0,1]],[[2,2,0,1],[1,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,2,0,1],[1,3,4,2],[2,3,2,0],[1,0,1,1]],[[1,2,0,1],[1,4,3,2],[2,3,2,0],[1,0,1,1]],[[1,3,0,1],[1,3,3,2],[2,3,2,0],[1,0,1,1]],[[2,2,0,1],[1,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,2,0,1],[1,3,3,3],[2,3,1,2],[1,0,1,0]],[[1,2,0,1],[1,3,4,2],[2,3,1,2],[1,0,1,0]],[[1,2,0,1],[1,4,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,0,2],[1,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,3,0,1],[1,3,3,2],[2,3,1,2],[1,0,1,0]],[[2,2,0,1],[1,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,0,1],[1,3,3,2],[2,3,1,3],[1,0,0,1]],[[1,2,0,1],[1,3,3,3],[2,3,1,2],[1,0,0,1]],[[1,2,0,1],[1,3,4,2],[2,3,1,2],[1,0,0,1]],[[1,2,0,1],[1,4,3,2],[2,3,1,2],[1,0,0,1]],[[1,2,0,2],[1,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,3,0,1],[1,3,3,2],[2,3,1,2],[1,0,0,1]],[[2,2,0,1],[1,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,2,0,1],[1,4,3,2],[2,3,1,1],[1,2,0,0]],[[1,3,0,1],[1,3,3,2],[2,3,1,1],[1,2,0,0]],[[2,2,0,1],[1,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,2,0,1],[1,4,3,2],[2,3,1,1],[1,1,1,0]],[[1,3,0,1],[1,3,3,2],[2,3,1,1],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[2,3,1,1],[1,1,0,1]],[[1,3,0,1],[1,3,3,2],[2,3,1,1],[1,1,0,1]],[[2,2,0,1],[1,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,2,0,1],[1,4,3,2],[2,3,1,1],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,3,1,1],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,3,1,1],[0,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,3,1,1],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,2,0,1],[1,4,3,2],[2,3,1,0],[1,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,3,1,0],[1,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,2,0,1],[1,4,3,2],[2,3,1,0],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[2,3,1,0],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[2,3,1,0],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[2,3,1,0],[0,2,1,1]],[[2,2,0,1],[1,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[2,3,0,2],[1,2,0,0]],[[1,3,0,1],[1,3,3,2],[2,3,0,2],[1,2,0,0]],[[2,2,0,1],[1,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,2,0,1],[1,4,3,2],[2,3,0,2],[1,1,1,0]],[[1,3,0,1],[1,3,3,2],[2,3,0,2],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[2,3,0,2],[1,1,0,1]],[[1,3,0,1],[1,3,3,2],[2,3,0,2],[1,1,0,1]],[[2,2,0,1],[1,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,2,0,1],[1,4,3,2],[2,3,0,2],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,3,0,2],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,3,0,2],[0,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,3,0,2],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,3,0,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,1],[0,1,3,1],[1,2,2,1]],[[1,1,2,0],[3,3,2,1],[0,1,3,1],[1,2,2,1]],[[1,1,2,0],[2,4,2,1],[0,1,3,1],[1,2,2,1]],[[2,1,2,0],[2,3,2,1],[0,1,3,2],[1,2,1,1]],[[1,1,2,0],[3,3,2,1],[0,1,3,2],[1,2,1,1]],[[1,1,2,0],[2,4,2,1],[0,1,3,2],[1,2,1,1]],[[2,1,2,0],[2,3,2,1],[0,1,3,2],[1,2,2,0]],[[1,1,2,0],[3,3,2,1],[0,1,3,2],[1,2,2,0]],[[1,1,2,0],[2,4,2,1],[0,1,3,2],[1,2,2,0]],[[2,1,2,0],[2,3,2,1],[0,2,3,1],[1,1,2,1]],[[1,1,2,0],[3,3,2,1],[0,2,3,1],[1,1,2,1]],[[1,1,2,0],[2,4,2,1],[0,2,3,1],[1,1,2,1]],[[2,1,2,0],[2,3,2,1],[0,2,3,1],[1,2,1,1]],[[1,1,2,0],[3,3,2,1],[0,2,3,1],[1,2,1,1]],[[1,1,2,0],[2,4,2,1],[0,2,3,1],[1,2,1,1]],[[2,1,2,0],[2,3,2,1],[0,2,3,2],[1,1,1,1]],[[1,1,2,0],[3,3,2,1],[0,2,3,2],[1,1,1,1]],[[1,1,2,0],[2,4,2,1],[0,2,3,2],[1,1,1,1]],[[2,1,2,0],[2,3,2,1],[0,2,3,2],[1,1,2,0]],[[1,1,2,0],[3,3,2,1],[0,2,3,2],[1,1,2,0]],[[1,1,2,0],[2,4,2,1],[0,2,3,2],[1,1,2,0]],[[2,1,2,0],[2,3,2,1],[0,2,3,2],[1,2,0,1]],[[1,1,2,0],[3,3,2,1],[0,2,3,2],[1,2,0,1]],[[1,1,2,0],[2,4,2,1],[0,2,3,2],[1,2,0,1]],[[2,1,2,0],[2,3,2,1],[0,2,3,2],[1,2,1,0]],[[1,1,2,0],[3,3,2,1],[0,2,3,2],[1,2,1,0]],[[1,1,2,0],[2,4,2,1],[0,2,3,2],[1,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,3,0,1],[1,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,3,0,1],[1,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,3,0,1],[1,2,1,0]],[[2,1,2,0],[2,3,2,1],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[3,3,2,1],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,4,2,1],[0,3,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[0,4,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[0,3,0,3],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[0,3,0,2],[2,2,2,1]],[[1,1,2,0],[2,3,2,1],[0,3,0,2],[1,3,2,1]],[[1,1,2,0],[2,3,2,1],[0,3,0,2],[1,2,3,1]],[[1,1,2,0],[2,3,2,1],[0,3,0,2],[1,2,2,2]],[[2,1,2,0],[2,3,2,1],[0,3,1,1],[1,2,2,1]],[[1,1,2,0],[3,3,2,1],[0,3,1,1],[1,2,2,1]],[[1,1,2,0],[2,4,2,1],[0,3,1,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[0,4,1,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[0,3,1,1],[2,2,2,1]],[[1,1,2,0],[2,3,2,1],[0,3,1,1],[1,3,2,1]],[[1,1,2,0],[2,3,2,1],[0,3,1,1],[1,2,3,1]],[[1,1,2,0],[2,3,2,1],[0,3,1,1],[1,2,2,2]],[[2,1,2,0],[2,3,2,1],[0,3,1,2],[1,2,2,0]],[[1,1,2,0],[3,3,2,1],[0,3,1,2],[1,2,2,0]],[[1,1,2,0],[2,4,2,1],[0,3,1,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,1],[0,4,1,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,1],[0,3,1,2],[2,2,2,0]],[[1,1,2,0],[2,3,2,1],[0,3,1,2],[1,3,2,0]],[[1,1,2,0],[2,3,2,1],[0,3,1,2],[1,2,3,0]],[[2,1,2,0],[2,3,2,1],[0,3,2,1],[1,1,2,1]],[[1,1,2,0],[3,3,2,1],[0,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,4,2,1],[0,3,2,1],[1,1,2,1]],[[1,1,2,0],[2,3,2,1],[0,4,2,1],[1,1,2,1]],[[2,1,2,0],[2,3,2,1],[0,3,2,1],[1,2,1,1]],[[1,1,2,0],[3,3,2,1],[0,3,2,1],[1,2,1,1]],[[1,1,2,0],[2,4,2,1],[0,3,2,1],[1,2,1,1]],[[1,1,2,0],[2,3,2,1],[0,4,2,1],[1,2,1,1]],[[1,1,2,0],[2,3,2,1],[0,3,2,1],[2,2,1,1]],[[1,1,2,0],[2,3,2,1],[0,3,2,1],[1,3,1,1]],[[2,1,2,0],[2,3,2,1],[0,3,2,2],[1,1,1,1]],[[1,1,2,0],[3,3,2,1],[0,3,2,2],[1,1,1,1]],[[1,1,2,0],[2,4,2,1],[0,3,2,2],[1,1,1,1]],[[1,1,2,0],[2,3,2,1],[0,4,2,2],[1,1,1,1]],[[2,1,2,0],[2,3,2,1],[0,3,2,2],[1,1,2,0]],[[1,1,2,0],[3,3,2,1],[0,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,4,2,1],[0,3,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,1],[0,4,2,2],[1,1,2,0]],[[2,1,2,0],[2,3,2,1],[0,3,2,2],[1,2,0,1]],[[1,1,2,0],[3,3,2,1],[0,3,2,2],[1,2,0,1]],[[1,1,2,0],[2,4,2,1],[0,3,2,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,1],[0,4,2,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,1],[0,3,2,2],[2,2,0,1]],[[1,1,2,0],[2,3,2,1],[0,3,2,2],[1,3,0,1]],[[2,1,2,0],[2,3,2,1],[0,3,2,2],[1,2,1,0]],[[1,1,2,0],[3,3,2,1],[0,3,2,2],[1,2,1,0]],[[1,1,2,0],[2,4,2,1],[0,3,2,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,1],[0,4,2,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,1],[0,3,2,2],[2,2,1,0]],[[1,1,2,0],[2,3,2,1],[0,3,2,2],[1,3,1,0]],[[1,2,0,1],[1,4,3,2],[2,3,0,1],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[2,3,0,1],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,2,0,1],[1,4,3,2],[2,3,0,1],[0,2,2,0]],[[1,3,0,1],[1,3,3,2],[2,3,0,1],[0,2,2,0]],[[2,2,0,1],[1,3,3,2],[2,3,0,1],[0,2,2,0]],[[2,1,2,0],[2,3,2,1],[0,3,3,2],[1,2,0,0]],[[1,1,2,0],[3,3,2,1],[0,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,4,2,1],[0,3,3,2],[1,2,0,0]],[[1,1,2,0],[2,3,2,1],[0,4,3,2],[1,2,0,0]],[[1,2,0,1],[1,4,3,2],[2,3,0,0],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[2,3,0,0],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[2,3,0,0],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[2,3,0,0],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[2,3,0,0],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[2,3,0,0],[0,2,2,1]],[[1,3,0,1],[1,3,3,2],[2,3,0,0],[0,2,2,1]],[[2,2,0,1],[1,3,3,2],[2,3,0,0],[0,2,2,1]],[[2,1,2,0],[2,3,2,1],[1,0,3,1],[1,2,2,1]],[[1,1,2,0],[3,3,2,1],[1,0,3,1],[1,2,2,1]],[[1,1,2,0],[2,4,2,1],[1,0,3,1],[1,2,2,1]],[[2,1,2,0],[2,3,2,1],[1,0,3,2],[1,2,1,1]],[[1,1,2,0],[3,3,2,1],[1,0,3,2],[1,2,1,1]],[[1,1,2,0],[2,4,2,1],[1,0,3,2],[1,2,1,1]],[[2,1,2,0],[2,3,2,1],[1,0,3,2],[1,2,2,0]],[[1,1,2,0],[3,3,2,1],[1,0,3,2],[1,2,2,0]],[[1,1,2,0],[2,4,2,1],[1,0,3,2],[1,2,2,0]],[[2,1,2,0],[2,3,2,1],[1,1,3,1],[0,2,2,1]],[[1,1,2,0],[3,3,2,1],[1,1,3,1],[0,2,2,1]],[[1,1,2,0],[2,4,2,1],[1,1,3,1],[0,2,2,1]],[[2,1,2,0],[2,3,2,1],[1,1,3,2],[0,2,1,1]],[[1,1,2,0],[3,3,2,1],[1,1,3,2],[0,2,1,1]],[[1,1,2,0],[2,4,2,1],[1,1,3,2],[0,2,1,1]],[[2,1,2,0],[2,3,2,1],[1,1,3,2],[0,2,2,0]],[[1,1,2,0],[3,3,2,1],[1,1,3,2],[0,2,2,0]],[[1,1,2,0],[2,4,2,1],[1,1,3,2],[0,2,2,0]],[[2,1,2,0],[2,3,2,1],[1,2,3,1],[0,1,2,1]],[[1,1,2,0],[3,3,2,1],[1,2,3,1],[0,1,2,1]],[[1,1,2,0],[2,4,2,1],[1,2,3,1],[0,1,2,1]],[[2,1,2,0],[2,3,2,1],[1,2,3,1],[0,2,1,1]],[[1,1,2,0],[3,3,2,1],[1,2,3,1],[0,2,1,1]],[[1,1,2,0],[2,4,2,1],[1,2,3,1],[0,2,1,1]],[[2,1,2,0],[2,3,2,1],[1,2,3,1],[1,0,2,1]],[[1,1,2,0],[3,3,2,1],[1,2,3,1],[1,0,2,1]],[[1,1,2,0],[2,4,2,1],[1,2,3,1],[1,0,2,1]],[[2,1,2,0],[2,3,2,1],[1,2,3,1],[1,1,1,1]],[[1,1,2,0],[3,3,2,1],[1,2,3,1],[1,1,1,1]],[[1,1,2,0],[2,4,2,1],[1,2,3,1],[1,1,1,1]],[[2,1,2,0],[2,3,2,1],[1,2,3,2],[0,0,2,1]],[[1,1,2,0],[3,3,2,1],[1,2,3,2],[0,0,2,1]],[[1,1,2,0],[2,4,2,1],[1,2,3,2],[0,0,2,1]],[[2,1,2,0],[2,3,2,1],[1,2,3,2],[0,1,1,1]],[[1,1,2,0],[3,3,2,1],[1,2,3,2],[0,1,1,1]],[[1,1,2,0],[2,4,2,1],[1,2,3,2],[0,1,1,1]],[[2,1,2,0],[2,3,2,1],[1,2,3,2],[0,1,2,0]],[[1,1,2,0],[3,3,2,1],[1,2,3,2],[0,1,2,0]],[[1,1,2,0],[2,4,2,1],[1,2,3,2],[0,1,2,0]],[[2,1,2,0],[2,3,2,1],[1,2,3,2],[0,2,0,1]],[[1,1,2,0],[3,3,2,1],[1,2,3,2],[0,2,0,1]],[[1,1,2,0],[2,4,2,1],[1,2,3,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,1],[1,2,3,2],[0,2,1,0]],[[1,1,2,0],[3,3,2,1],[1,2,3,2],[0,2,1,0]],[[1,1,2,0],[2,4,2,1],[1,2,3,2],[0,2,1,0]],[[2,1,2,0],[2,3,2,1],[1,2,3,2],[1,0,1,1]],[[1,1,2,0],[3,3,2,1],[1,2,3,2],[1,0,1,1]],[[1,1,2,0],[2,4,2,1],[1,2,3,2],[1,0,1,1]],[[2,1,2,0],[2,3,2,1],[1,2,3,2],[1,0,2,0]],[[1,1,2,0],[3,3,2,1],[1,2,3,2],[1,0,2,0]],[[1,1,2,0],[2,4,2,1],[1,2,3,2],[1,0,2,0]],[[2,1,2,0],[2,3,2,1],[1,2,3,2],[1,1,0,1]],[[1,1,2,0],[3,3,2,1],[1,2,3,2],[1,1,0,1]],[[1,1,2,0],[2,4,2,1],[1,2,3,2],[1,1,0,1]],[[2,1,2,0],[2,3,2,1],[1,2,3,2],[1,1,1,0]],[[1,1,2,0],[3,3,2,1],[1,2,3,2],[1,1,1,0]],[[1,1,2,0],[2,4,2,1],[1,2,3,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,3],[2,2,3,1],[1,1,0,0]],[[1,2,0,1],[1,3,4,2],[2,2,3,1],[1,1,0,0]],[[1,2,0,1],[1,4,3,2],[2,2,3,1],[1,1,0,0]],[[1,2,0,2],[1,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,3,0,1],[1,3,3,2],[2,2,3,1],[1,1,0,0]],[[2,2,0,1],[1,3,3,2],[2,2,3,1],[1,1,0,0]],[[2,1,2,0],[2,3,2,1],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[3,3,2,1],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,4,2,1],[1,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,2,1],[1,4,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,2,1],[1,3,0,3],[0,2,2,1]],[[1,1,2,0],[2,3,2,1],[1,3,0,2],[0,3,2,1]],[[1,1,2,0],[2,3,2,1],[1,3,0,2],[0,2,3,1]],[[1,1,2,0],[2,3,2,1],[1,3,0,2],[0,2,2,2]],[[2,1,2,0],[2,3,2,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[3,3,2,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,4,2,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,3,2,1],[1,4,0,2],[1,1,2,1]],[[2,1,2,0],[2,3,2,1],[1,3,1,1],[0,2,2,1]],[[1,1,2,0],[3,3,2,1],[1,3,1,1],[0,2,2,1]],[[1,1,2,0],[2,4,2,1],[1,3,1,1],[0,2,2,1]],[[1,1,2,0],[2,3,2,1],[1,4,1,1],[0,2,2,1]],[[1,1,2,0],[2,3,2,1],[1,3,1,1],[0,3,2,1]],[[1,1,2,0],[2,3,2,1],[1,3,1,1],[0,2,3,1]],[[1,1,2,0],[2,3,2,1],[1,3,1,1],[0,2,2,2]],[[2,1,2,0],[2,3,2,1],[1,3,1,1],[1,1,2,1]],[[1,1,2,0],[3,3,2,1],[1,3,1,1],[1,1,2,1]],[[1,1,2,0],[2,4,2,1],[1,3,1,1],[1,1,2,1]],[[1,1,2,0],[2,3,2,1],[1,4,1,1],[1,1,2,1]],[[2,1,2,0],[2,3,2,1],[1,3,1,2],[0,2,2,0]],[[1,1,2,0],[3,3,2,1],[1,3,1,2],[0,2,2,0]],[[1,1,2,0],[2,4,2,1],[1,3,1,2],[0,2,2,0]],[[1,1,2,0],[2,3,2,1],[1,4,1,2],[0,2,2,0]],[[1,1,2,0],[2,3,2,1],[1,3,1,2],[0,3,2,0]],[[1,1,2,0],[2,3,2,1],[1,3,1,2],[0,2,3,0]],[[2,1,2,0],[2,3,2,1],[1,3,1,2],[1,1,2,0]],[[1,1,2,0],[3,3,2,1],[1,3,1,2],[1,1,2,0]],[[1,1,2,0],[2,4,2,1],[1,3,1,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,1],[1,4,1,2],[1,1,2,0]],[[2,1,2,0],[2,3,2,1],[1,3,2,1],[0,1,2,1]],[[1,1,2,0],[3,3,2,1],[1,3,2,1],[0,1,2,1]],[[1,1,2,0],[2,4,2,1],[1,3,2,1],[0,1,2,1]],[[1,1,2,0],[2,3,2,1],[1,4,2,1],[0,1,2,1]],[[2,1,2,0],[2,3,2,1],[1,3,2,1],[0,2,1,1]],[[1,1,2,0],[3,3,2,1],[1,3,2,1],[0,2,1,1]],[[1,1,2,0],[2,4,2,1],[1,3,2,1],[0,2,1,1]],[[1,1,2,0],[2,3,2,1],[1,4,2,1],[0,2,1,1]],[[1,1,2,0],[2,3,2,1],[1,3,2,1],[0,3,1,1]],[[2,1,2,0],[2,3,2,1],[1,3,2,1],[1,0,2,1]],[[1,1,2,0],[3,3,2,1],[1,3,2,1],[1,0,2,1]],[[1,1,2,0],[2,4,2,1],[1,3,2,1],[1,0,2,1]],[[1,1,2,0],[2,3,2,1],[1,4,2,1],[1,0,2,1]],[[2,1,2,0],[2,3,2,1],[1,3,2,1],[1,1,1,1]],[[1,1,2,0],[3,3,2,1],[1,3,2,1],[1,1,1,1]],[[1,1,2,0],[2,4,2,1],[1,3,2,1],[1,1,1,1]],[[1,1,2,0],[2,3,2,1],[1,4,2,1],[1,1,1,1]],[[2,1,2,0],[2,3,2,1],[1,3,2,1],[1,2,0,1]],[[1,1,2,0],[3,3,2,1],[1,3,2,1],[1,2,0,1]],[[1,1,2,0],[2,4,2,1],[1,3,2,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,1],[1,4,2,1],[1,2,0,1]],[[1,2,0,1],[1,3,3,3],[2,2,3,1],[0,2,0,0]],[[1,2,0,1],[1,3,4,2],[2,2,3,1],[0,2,0,0]],[[1,2,0,1],[1,4,3,2],[2,2,3,1],[0,2,0,0]],[[1,2,0,2],[1,3,3,2],[2,2,3,1],[0,2,0,0]],[[2,1,2,0],[2,3,2,1],[1,3,2,2],[0,1,1,1]],[[1,1,2,0],[3,3,2,1],[1,3,2,2],[0,1,1,1]],[[1,1,2,0],[2,4,2,1],[1,3,2,2],[0,1,1,1]],[[1,1,2,0],[2,3,2,1],[1,4,2,2],[0,1,1,1]],[[2,1,2,0],[2,3,2,1],[1,3,2,2],[0,1,2,0]],[[1,1,2,0],[3,3,2,1],[1,3,2,2],[0,1,2,0]],[[1,1,2,0],[2,4,2,1],[1,3,2,2],[0,1,2,0]],[[1,1,2,0],[2,3,2,1],[1,4,2,2],[0,1,2,0]],[[2,1,2,0],[2,3,2,1],[1,3,2,2],[0,2,0,1]],[[1,1,2,0],[3,3,2,1],[1,3,2,2],[0,2,0,1]],[[1,1,2,0],[2,4,2,1],[1,3,2,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,1],[1,4,2,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,1],[1,3,2,2],[0,3,0,1]],[[2,1,2,0],[2,3,2,1],[1,3,2,2],[0,2,1,0]],[[1,1,2,0],[3,3,2,1],[1,3,2,2],[0,2,1,0]],[[1,1,2,0],[2,4,2,1],[1,3,2,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,1],[1,4,2,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,1],[1,3,2,2],[0,3,1,0]],[[1,3,0,1],[1,3,3,2],[2,2,3,1],[0,2,0,0]],[[2,2,0,1],[1,3,3,2],[2,2,3,1],[0,2,0,0]],[[2,1,2,0],[2,3,2,1],[1,3,2,2],[1,0,1,1]],[[1,1,2,0],[3,3,2,1],[1,3,2,2],[1,0,1,1]],[[1,1,2,0],[2,4,2,1],[1,3,2,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,1],[1,4,2,2],[1,0,1,1]],[[2,1,2,0],[2,3,2,1],[1,3,2,2],[1,0,2,0]],[[1,1,2,0],[3,3,2,1],[1,3,2,2],[1,0,2,0]],[[1,1,2,0],[2,4,2,1],[1,3,2,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,1],[1,4,2,2],[1,0,2,0]],[[2,1,2,0],[2,3,2,1],[1,3,2,2],[1,1,0,1]],[[1,1,2,0],[3,3,2,1],[1,3,2,2],[1,1,0,1]],[[1,1,2,0],[2,4,2,1],[1,3,2,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,1],[1,4,2,2],[1,1,0,1]],[[2,1,2,0],[2,3,2,1],[1,3,2,2],[1,1,1,0]],[[1,1,2,0],[3,3,2,1],[1,3,2,2],[1,1,1,0]],[[1,1,2,0],[2,4,2,1],[1,3,2,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,1],[1,4,2,2],[1,1,1,0]],[[2,1,2,0],[2,3,2,1],[1,3,2,2],[1,2,0,0]],[[1,1,2,0],[3,3,2,1],[1,3,2,2],[1,2,0,0]],[[1,1,2,0],[2,4,2,1],[1,3,2,2],[1,2,0,0]],[[1,1,2,0],[2,3,2,1],[1,4,2,2],[1,2,0,0]],[[1,2,0,1],[1,3,4,2],[2,2,3,0],[1,2,0,0]],[[1,2,0,1],[1,4,3,2],[2,2,3,0],[1,2,0,0]],[[1,3,0,1],[1,3,3,2],[2,2,3,0],[1,2,0,0]],[[2,2,0,1],[1,3,3,2],[2,2,3,0],[1,2,0,0]],[[2,1,2,0],[2,3,2,1],[1,3,3,1],[0,0,2,1]],[[1,1,2,0],[3,3,2,1],[1,3,3,1],[0,0,2,1]],[[1,1,2,0],[2,4,2,1],[1,3,3,1],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[2,2,3,0],[1,1,1,0]],[[1,3,0,1],[1,3,3,2],[2,2,3,0],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,0,1],[1,3,4,2],[2,2,3,0],[1,0,2,0]],[[1,2,0,1],[1,4,3,2],[2,2,3,0],[1,0,2,0]],[[1,3,0,1],[1,3,3,2],[2,2,3,0],[1,0,2,0]],[[2,2,0,1],[1,3,3,2],[2,2,3,0],[1,0,2,0]],[[2,1,2,0],[2,3,2,1],[1,3,3,2],[0,0,1,1]],[[1,1,2,0],[3,3,2,1],[1,3,3,2],[0,0,1,1]],[[1,1,2,0],[2,4,2,1],[1,3,3,2],[0,0,1,1]],[[2,1,2,0],[2,3,2,1],[1,3,3,2],[0,0,2,0]],[[1,1,2,0],[3,3,2,1],[1,3,3,2],[0,0,2,0]],[[1,1,2,0],[2,4,2,1],[1,3,3,2],[0,0,2,0]],[[1,2,0,1],[1,3,4,2],[2,2,3,0],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,2,3,0],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,2,3,0],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,2,3,0],[0,2,1,0]],[[2,1,2,0],[2,3,2,1],[1,3,3,2],[0,2,0,0]],[[1,1,2,0],[3,3,2,1],[1,3,3,2],[0,2,0,0]],[[1,1,2,0],[2,4,2,1],[1,3,3,2],[0,2,0,0]],[[1,1,2,0],[2,3,2,1],[1,4,3,2],[0,2,0,0]],[[1,2,0,1],[1,3,4,2],[2,2,3,0],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[2,2,3,0],[0,1,2,0]],[[1,3,0,1],[1,3,3,2],[2,2,3,0],[0,1,2,0]],[[2,2,0,1],[1,3,3,2],[2,2,3,0],[0,1,2,0]],[[2,1,2,0],[2,3,2,1],[1,3,3,2],[1,1,0,0]],[[1,1,2,0],[3,3,2,1],[1,3,3,2],[1,1,0,0]],[[1,1,2,0],[2,4,2,1],[1,3,3,2],[1,1,0,0]],[[1,1,2,0],[2,3,2,1],[1,4,3,2],[1,1,0,0]],[[2,1,2,0],[2,3,2,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[3,3,2,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,4,2,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[3,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,0,1,3],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,0,1,2],[2,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,0,1,2],[1,3,2,1]],[[1,1,2,0],[2,3,2,1],[2,0,1,2],[1,2,3,1]],[[1,1,2,0],[2,3,2,1],[2,0,1,2],[1,2,2,2]],[[2,1,2,0],[2,3,2,1],[2,0,2,1],[1,2,2,1]],[[1,1,2,0],[3,3,2,1],[2,0,2,1],[1,2,2,1]],[[1,1,2,0],[2,4,2,1],[2,0,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[3,0,2,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,0,2,1],[2,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,0,2,1],[1,3,2,1]],[[1,1,2,0],[2,3,2,1],[2,0,2,1],[1,2,3,1]],[[1,1,2,0],[2,3,2,1],[2,0,2,1],[1,2,2,2]],[[2,1,2,0],[2,3,2,1],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[3,3,2,1],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[2,4,2,1],[2,0,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,1],[3,0,2,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,1],[2,0,2,2],[2,2,2,0]],[[1,1,2,0],[2,3,2,1],[2,0,2,2],[1,3,2,0]],[[1,1,2,0],[2,3,2,1],[2,0,2,2],[1,2,3,0]],[[2,1,2,0],[2,3,2,1],[2,0,3,1],[0,2,2,1]],[[1,1,2,0],[3,3,2,1],[2,0,3,1],[0,2,2,1]],[[1,1,2,0],[2,4,2,1],[2,0,3,1],[0,2,2,1]],[[1,1,2,0],[2,3,2,1],[3,0,3,1],[0,2,2,1]],[[2,1,2,0],[2,3,2,1],[2,0,3,1],[1,1,2,1]],[[1,1,2,0],[3,3,2,1],[2,0,3,1],[1,1,2,1]],[[1,1,2,0],[2,4,2,1],[2,0,3,1],[1,1,2,1]],[[1,1,2,0],[2,3,2,1],[3,0,3,1],[1,1,2,1]],[[1,1,2,0],[2,3,2,1],[2,0,3,1],[2,1,2,1]],[[2,1,2,0],[2,3,2,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[3,3,2,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[2,4,2,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,2,1],[3,0,3,1],[1,2,1,1]],[[1,1,2,0],[2,3,2,1],[2,0,3,1],[2,2,1,1]],[[1,1,2,0],[2,3,2,1],[2,0,3,1],[1,3,1,1]],[[2,1,2,0],[2,3,2,1],[2,0,3,2],[0,2,1,1]],[[1,1,2,0],[3,3,2,1],[2,0,3,2],[0,2,1,1]],[[1,1,2,0],[2,4,2,1],[2,0,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,2,1],[3,0,3,2],[0,2,1,1]],[[2,1,2,0],[2,3,2,1],[2,0,3,2],[0,2,2,0]],[[1,1,2,0],[3,3,2,1],[2,0,3,2],[0,2,2,0]],[[1,1,2,0],[2,4,2,1],[2,0,3,2],[0,2,2,0]],[[1,1,2,0],[2,3,2,1],[3,0,3,2],[0,2,2,0]],[[2,1,2,0],[2,3,2,1],[2,0,3,2],[1,1,1,1]],[[1,1,2,0],[3,3,2,1],[2,0,3,2],[1,1,1,1]],[[1,1,2,0],[2,4,2,1],[2,0,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,2,1],[3,0,3,2],[1,1,1,1]],[[1,1,2,0],[2,3,2,1],[2,0,3,2],[2,1,1,1]],[[2,1,2,0],[2,3,2,1],[2,0,3,2],[1,1,2,0]],[[1,1,2,0],[3,3,2,1],[2,0,3,2],[1,1,2,0]],[[1,1,2,0],[2,4,2,1],[2,0,3,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,1],[3,0,3,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,1],[2,0,3,2],[2,1,2,0]],[[2,1,2,0],[2,3,2,1],[2,0,3,2],[1,2,0,1]],[[1,1,2,0],[3,3,2,1],[2,0,3,2],[1,2,0,1]],[[1,1,2,0],[2,4,2,1],[2,0,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,1],[3,0,3,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,1],[2,0,3,2],[2,2,0,1]],[[1,1,2,0],[2,3,2,1],[2,0,3,2],[1,3,0,1]],[[2,1,2,0],[2,3,2,1],[2,0,3,2],[1,2,1,0]],[[1,1,2,0],[3,3,2,1],[2,0,3,2],[1,2,1,0]],[[1,1,2,0],[2,4,2,1],[2,0,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,1],[3,0,3,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,1],[2,0,3,2],[2,2,1,0]],[[1,1,2,0],[2,3,2,1],[2,0,3,2],[1,3,1,0]],[[1,2,0,1],[1,3,3,3],[2,2,2,1],[1,2,0,0]],[[1,2,0,1],[1,3,4,2],[2,2,2,1],[1,2,0,0]],[[1,2,0,1],[1,4,3,2],[2,2,2,1],[1,2,0,0]],[[1,2,0,2],[1,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,3,0,1],[1,3,3,2],[2,2,2,1],[1,2,0,0]],[[2,2,0,1],[1,3,3,2],[2,2,2,1],[1,2,0,0]],[[2,1,2,0],[2,3,2,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[3,3,2,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,4,2,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[3,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,1,0,3],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,1,0,2],[2,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,1,0,2],[1,3,2,1]],[[1,1,2,0],[2,3,2,1],[2,1,0,2],[1,2,3,1]],[[1,1,2,0],[2,3,2,1],[2,1,0,2],[1,2,2,2]],[[2,1,2,0],[2,3,2,1],[2,1,1,1],[1,2,2,1]],[[1,1,2,0],[3,3,2,1],[2,1,1,1],[1,2,2,1]],[[1,1,2,0],[2,4,2,1],[2,1,1,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[3,1,1,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,1,1,1],[2,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,1,1,1],[1,3,2,1]],[[1,1,2,0],[2,3,2,1],[2,1,1,1],[1,2,3,1]],[[1,1,2,0],[2,3,2,1],[2,1,1,1],[1,2,2,2]],[[2,1,2,0],[2,3,2,1],[2,1,1,2],[1,2,2,0]],[[1,1,2,0],[3,3,2,1],[2,1,1,2],[1,2,2,0]],[[1,1,2,0],[2,4,2,1],[2,1,1,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,1],[3,1,1,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,1],[2,1,1,2],[2,2,2,0]],[[1,1,2,0],[2,3,2,1],[2,1,1,2],[1,3,2,0]],[[1,1,2,0],[2,3,2,1],[2,1,1,2],[1,2,3,0]],[[2,1,2,0],[2,3,2,1],[2,1,2,1],[1,2,1,1]],[[1,1,2,0],[3,3,2,1],[2,1,2,1],[1,2,1,1]],[[1,1,2,0],[2,4,2,1],[2,1,2,1],[1,2,1,1]],[[1,1,2,0],[2,3,2,1],[3,1,2,1],[1,2,1,1]],[[1,1,2,0],[2,3,2,1],[2,1,2,1],[2,2,1,1]],[[1,1,2,0],[2,3,2,1],[2,1,2,1],[1,3,1,1]],[[2,1,2,0],[2,3,2,1],[2,1,2,2],[1,2,0,1]],[[1,1,2,0],[3,3,2,1],[2,1,2,2],[1,2,0,1]],[[1,1,2,0],[2,4,2,1],[2,1,2,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,1],[3,1,2,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,1],[2,1,2,2],[2,2,0,1]],[[1,1,2,0],[2,3,2,1],[2,1,2,2],[1,3,0,1]],[[2,1,2,0],[2,3,2,1],[2,1,2,2],[1,2,1,0]],[[1,1,2,0],[3,3,2,1],[2,1,2,2],[1,2,1,0]],[[1,1,2,0],[2,4,2,1],[2,1,2,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,1],[3,1,2,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,1],[2,1,2,2],[2,2,1,0]],[[1,1,2,0],[2,3,2,1],[2,1,2,2],[1,3,1,0]],[[2,1,2,0],[2,3,2,1],[2,1,3,1],[0,1,2,1]],[[1,1,2,0],[3,3,2,1],[2,1,3,1],[0,1,2,1]],[[1,1,2,0],[2,4,2,1],[2,1,3,1],[0,1,2,1]],[[1,1,2,0],[2,3,2,1],[3,1,3,1],[0,1,2,1]],[[2,1,2,0],[2,3,2,1],[2,1,3,1],[0,2,1,1]],[[1,1,2,0],[3,3,2,1],[2,1,3,1],[0,2,1,1]],[[1,1,2,0],[2,4,2,1],[2,1,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,2,1],[3,1,3,1],[0,2,1,1]],[[2,1,2,0],[2,3,2,1],[2,1,3,1],[1,0,2,1]],[[1,1,2,0],[3,3,2,1],[2,1,3,1],[1,0,2,1]],[[1,1,2,0],[2,4,2,1],[2,1,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,2,1],[3,1,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,2,1],[2,1,3,1],[2,0,2,1]],[[2,1,2,0],[2,3,2,1],[2,1,3,1],[1,1,1,1]],[[1,1,2,0],[3,3,2,1],[2,1,3,1],[1,1,1,1]],[[1,1,2,0],[2,4,2,1],[2,1,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,2,1],[3,1,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,2,1],[2,1,3,1],[2,1,1,1]],[[1,2,0,1],[1,3,3,3],[2,2,2,1],[1,1,1,0]],[[1,2,0,1],[1,3,4,2],[2,2,2,1],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[2,2,2,1],[1,1,1,0]],[[1,2,0,2],[1,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,3,0,1],[1,3,3,2],[2,2,2,1],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[2,2,2,1],[1,1,1,0]],[[2,1,2,0],[2,3,2,1],[2,1,3,2],[0,0,2,1]],[[1,1,2,0],[3,3,2,1],[2,1,3,2],[0,0,2,1]],[[1,1,2,0],[2,4,2,1],[2,1,3,2],[0,0,2,1]],[[2,1,2,0],[2,3,2,1],[2,1,3,2],[0,1,1,1]],[[1,1,2,0],[3,3,2,1],[2,1,3,2],[0,1,1,1]],[[1,1,2,0],[2,4,2,1],[2,1,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,2,1],[3,1,3,2],[0,1,1,1]],[[2,1,2,0],[2,3,2,1],[2,1,3,2],[0,1,2,0]],[[1,1,2,0],[3,3,2,1],[2,1,3,2],[0,1,2,0]],[[1,1,2,0],[2,4,2,1],[2,1,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,2,1],[3,1,3,2],[0,1,2,0]],[[2,1,2,0],[2,3,2,1],[2,1,3,2],[0,2,0,1]],[[1,1,2,0],[3,3,2,1],[2,1,3,2],[0,2,0,1]],[[1,1,2,0],[2,4,2,1],[2,1,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,1],[3,1,3,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,1],[2,1,3,2],[0,2,1,0]],[[1,1,2,0],[3,3,2,1],[2,1,3,2],[0,2,1,0]],[[1,1,2,0],[2,4,2,1],[2,1,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,1],[3,1,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,3],[2,2,2,1],[1,1,0,1]],[[1,2,0,1],[1,3,4,2],[2,2,2,1],[1,1,0,1]],[[1,2,0,1],[1,4,3,2],[2,2,2,1],[1,1,0,1]],[[1,2,0,2],[1,3,3,2],[2,2,2,1],[1,1,0,1]],[[2,1,2,0],[2,3,2,1],[2,1,3,2],[1,0,1,1]],[[1,1,2,0],[3,3,2,1],[2,1,3,2],[1,0,1,1]],[[1,1,2,0],[2,4,2,1],[2,1,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,1],[3,1,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,1],[2,1,3,2],[2,0,1,1]],[[2,1,2,0],[2,3,2,1],[2,1,3,2],[1,0,2,0]],[[1,1,2,0],[3,3,2,1],[2,1,3,2],[1,0,2,0]],[[1,1,2,0],[2,4,2,1],[2,1,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,1],[3,1,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,1],[2,1,3,2],[2,0,2,0]],[[2,1,2,0],[2,3,2,1],[2,1,3,2],[1,1,0,1]],[[1,1,2,0],[3,3,2,1],[2,1,3,2],[1,1,0,1]],[[1,1,2,0],[2,4,2,1],[2,1,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,1],[3,1,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,1],[2,1,3,2],[2,1,0,1]],[[2,1,2,0],[2,3,2,1],[2,1,3,2],[1,1,1,0]],[[1,1,2,0],[3,3,2,1],[2,1,3,2],[1,1,1,0]],[[1,1,2,0],[2,4,2,1],[2,1,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,1],[3,1,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,1],[2,1,3,2],[2,1,1,0]],[[1,3,0,1],[1,3,3,2],[2,2,2,1],[1,1,0,1]],[[2,2,0,1],[1,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,2,0,1],[1,3,3,3],[2,2,2,1],[1,0,2,0]],[[1,2,0,1],[1,3,4,2],[2,2,2,1],[1,0,2,0]],[[1,2,0,1],[1,4,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,0,2],[1,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,3,0,1],[1,3,3,2],[2,2,2,1],[1,0,2,0]],[[2,2,0,1],[1,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,0,1],[1,3,3,3],[2,2,2,1],[1,0,1,1]],[[1,2,0,1],[1,3,4,2],[2,2,2,1],[1,0,1,1]],[[1,2,0,1],[1,4,3,2],[2,2,2,1],[1,0,1,1]],[[1,2,0,2],[1,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,3,0,1],[1,3,3,2],[2,2,2,1],[1,0,1,1]],[[2,2,0,1],[1,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,2,0,1],[1,3,3,3],[2,2,2,1],[0,2,1,0]],[[2,1,2,0],[2,3,2,1],[2,2,0,1],[1,2,2,1]],[[1,1,2,0],[3,3,2,1],[2,2,0,1],[1,2,2,1]],[[1,1,2,0],[2,4,2,1],[2,2,0,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[3,2,0,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,2,0,1],[2,2,2,1]],[[1,1,2,0],[2,3,2,1],[2,2,0,1],[1,3,2,1]],[[2,1,2,0],[2,3,2,1],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[3,3,2,1],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[2,4,2,1],[2,2,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,2,1],[3,2,0,2],[0,2,2,1]],[[2,1,2,0],[2,3,2,1],[2,2,0,2],[1,1,2,1]],[[1,1,2,0],[3,3,2,1],[2,2,0,2],[1,1,2,1]],[[1,1,2,0],[2,4,2,1],[2,2,0,2],[1,1,2,1]],[[1,1,2,0],[2,3,2,1],[3,2,0,2],[1,1,2,1]],[[1,1,2,0],[2,3,2,1],[2,2,0,2],[2,1,2,1]],[[2,1,2,0],[2,3,2,1],[2,2,0,2],[1,2,2,0]],[[1,1,2,0],[3,3,2,1],[2,2,0,2],[1,2,2,0]],[[1,1,2,0],[2,4,2,1],[2,2,0,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,1],[3,2,0,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,1],[2,2,0,2],[2,2,2,0]],[[1,1,2,0],[2,3,2,1],[2,2,0,2],[1,3,2,0]],[[2,1,2,0],[2,3,2,1],[2,2,1,1],[0,2,2,1]],[[1,1,2,0],[3,3,2,1],[2,2,1,1],[0,2,2,1]],[[1,1,2,0],[2,4,2,1],[2,2,1,1],[0,2,2,1]],[[1,1,2,0],[2,3,2,1],[3,2,1,1],[0,2,2,1]],[[2,1,2,0],[2,3,2,1],[2,2,1,1],[1,1,2,1]],[[1,1,2,0],[3,3,2,1],[2,2,1,1],[1,1,2,1]],[[1,1,2,0],[2,4,2,1],[2,2,1,1],[1,1,2,1]],[[1,1,2,0],[2,3,2,1],[3,2,1,1],[1,1,2,1]],[[1,1,2,0],[2,3,2,1],[2,2,1,1],[2,1,2,1]],[[2,1,2,0],[2,3,2,1],[2,2,1,2],[0,2,2,0]],[[1,1,2,0],[3,3,2,1],[2,2,1,2],[0,2,2,0]],[[1,1,2,0],[2,4,2,1],[2,2,1,2],[0,2,2,0]],[[1,1,2,0],[2,3,2,1],[3,2,1,2],[0,2,2,0]],[[2,1,2,0],[2,3,2,1],[2,2,1,2],[1,1,2,0]],[[1,1,2,0],[3,3,2,1],[2,2,1,2],[1,1,2,0]],[[1,1,2,0],[2,4,2,1],[2,2,1,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,1],[3,2,1,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,1],[2,2,1,2],[2,1,2,0]],[[1,2,0,1],[1,3,4,2],[2,2,2,1],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,2,2,1],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,2,2,1],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,3],[2,2,2,1],[0,2,0,1]],[[1,2,0,1],[1,3,4,2],[2,2,2,1],[0,2,0,1]],[[1,2,0,1],[1,4,3,2],[2,2,2,1],[0,2,0,1]],[[1,2,0,2],[1,3,3,2],[2,2,2,1],[0,2,0,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,1],[0,1,2,1]],[[1,1,2,0],[3,3,2,1],[2,2,2,1],[0,1,2,1]],[[1,1,2,0],[2,4,2,1],[2,2,2,1],[0,1,2,1]],[[1,1,2,0],[2,3,2,1],[3,2,2,1],[0,1,2,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,1],[0,2,1,1]],[[1,1,2,0],[3,3,2,1],[2,2,2,1],[0,2,1,1]],[[1,1,2,0],[2,4,2,1],[2,2,2,1],[0,2,1,1]],[[1,1,2,0],[2,3,2,1],[3,2,2,1],[0,2,1,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,1],[1,0,2,1]],[[1,1,2,0],[3,3,2,1],[2,2,2,1],[1,0,2,1]],[[1,1,2,0],[2,4,2,1],[2,2,2,1],[1,0,2,1]],[[1,1,2,0],[2,3,2,1],[3,2,2,1],[1,0,2,1]],[[1,1,2,0],[2,3,2,1],[2,2,2,1],[2,0,2,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,1],[1,1,1,1]],[[1,1,2,0],[3,3,2,1],[2,2,2,1],[1,1,1,1]],[[1,1,2,0],[2,4,2,1],[2,2,2,1],[1,1,1,1]],[[1,1,2,0],[2,3,2,1],[3,2,2,1],[1,1,1,1]],[[1,1,2,0],[2,3,2,1],[2,2,2,1],[2,1,1,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,1],[1,2,0,1]],[[1,1,2,0],[3,3,2,1],[2,2,2,1],[1,2,0,1]],[[1,1,2,0],[2,4,2,1],[2,2,2,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,1],[3,2,2,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,1],[2,2,2,1],[2,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,2,2,1],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,2,2,1],[0,2,0,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,2],[0,1,1,1]],[[1,1,2,0],[3,3,2,1],[2,2,2,2],[0,1,1,1]],[[1,1,2,0],[2,4,2,1],[2,2,2,2],[0,1,1,1]],[[1,1,2,0],[2,3,2,1],[3,2,2,2],[0,1,1,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,2],[0,1,2,0]],[[1,1,2,0],[3,3,2,1],[2,2,2,2],[0,1,2,0]],[[1,1,2,0],[2,4,2,1],[2,2,2,2],[0,1,2,0]],[[1,1,2,0],[2,3,2,1],[3,2,2,2],[0,1,2,0]],[[2,1,2,0],[2,3,2,1],[2,2,2,2],[0,2,0,1]],[[1,1,2,0],[3,3,2,1],[2,2,2,2],[0,2,0,1]],[[1,1,2,0],[2,4,2,1],[2,2,2,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,1],[3,2,2,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,2],[0,2,1,0]],[[1,1,2,0],[3,3,2,1],[2,2,2,2],[0,2,1,0]],[[1,1,2,0],[2,4,2,1],[2,2,2,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,1],[3,2,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,3],[2,2,2,1],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[2,2,2,1],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,3,0,1],[1,3,3,2],[2,2,2,1],[0,1,2,0]],[[2,2,0,1],[1,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[2,2,2,1],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[2,2,2,1],[0,1,1,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,2],[1,0,1,1]],[[1,1,2,0],[3,3,2,1],[2,2,2,2],[1,0,1,1]],[[1,1,2,0],[2,4,2,1],[2,2,2,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,1],[3,2,2,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,1],[2,2,2,2],[2,0,1,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,2],[1,0,2,0]],[[1,1,2,0],[3,3,2,1],[2,2,2,2],[1,0,2,0]],[[1,1,2,0],[2,4,2,1],[2,2,2,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,1],[3,2,2,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,1],[2,2,2,2],[2,0,2,0]],[[2,1,2,0],[2,3,2,1],[2,2,2,2],[1,1,0,1]],[[1,1,2,0],[3,3,2,1],[2,2,2,2],[1,1,0,1]],[[1,1,2,0],[2,4,2,1],[2,2,2,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,1],[3,2,2,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,1],[2,2,2,2],[2,1,0,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,2],[1,1,1,0]],[[1,1,2,0],[3,3,2,1],[2,2,2,2],[1,1,1,0]],[[1,1,2,0],[2,4,2,1],[2,2,2,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,1],[3,2,2,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,1],[2,2,2,2],[2,1,1,0]],[[1,2,0,1],[1,4,3,2],[2,2,2,1],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,3,0,1],[1,3,3,2],[2,2,2,1],[0,1,1,1]],[[2,2,0,1],[1,3,3,2],[2,2,2,1],[0,1,1,1]],[[2,1,2,0],[2,3,2,1],[2,2,2,2],[1,2,0,0]],[[1,1,2,0],[3,3,2,1],[2,2,2,2],[1,2,0,0]],[[1,1,2,0],[2,4,2,1],[2,2,2,2],[1,2,0,0]],[[1,1,2,0],[2,3,2,1],[3,2,2,2],[1,2,0,0]],[[1,1,2,0],[2,3,2,1],[2,2,2,2],[2,2,0,0]],[[1,2,0,1],[1,3,4,2],[2,2,2,0],[1,2,0,1]],[[1,2,0,1],[1,4,3,2],[2,2,2,0],[1,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,2,2,0],[1,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,2,0,1],[1,3,3,3],[2,2,2,0],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[2,2,2,0],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[2,2,2,0],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[2,2,2,0],[1,0,2,1]],[[1,2,0,1],[1,3,4,2],[2,2,2,0],[1,0,2,1]],[[1,2,0,1],[1,4,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,0,2],[1,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,3,0,1],[1,3,3,2],[2,2,2,0],[1,0,2,1]],[[2,2,0,1],[1,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,0,1],[1,3,3,3],[2,2,2,0],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[2,2,2,0],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[2,2,2,0],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[2,2,2,0],[0,2,1,1]],[[2,2,0,1],[1,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[2,2,2,0],[0,1,2,1]],[[1,2,0,1],[1,3,4,2],[2,2,2,0],[0,1,2,1]],[[1,2,0,1],[1,4,3,2],[2,2,2,0],[0,1,2,1]],[[1,2,0,2],[1,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,3,0,1],[1,3,3,2],[2,2,2,0],[0,1,2,1]],[[2,2,0,1],[1,3,3,2],[2,2,2,0],[0,1,2,1]],[[2,1,2,0],[2,3,2,1],[2,2,3,2],[0,2,0,0]],[[1,1,2,0],[3,3,2,1],[2,2,3,2],[0,2,0,0]],[[1,1,2,0],[2,4,2,1],[2,2,3,2],[0,2,0,0]],[[1,1,2,0],[2,3,2,1],[3,2,3,2],[0,2,0,0]],[[1,2,0,1],[1,3,3,3],[2,2,1,2],[1,2,0,0]],[[1,2,0,1],[1,3,4,2],[2,2,1,2],[1,2,0,0]],[[1,2,0,1],[1,4,3,2],[2,2,1,2],[1,2,0,0]],[[1,2,0,2],[1,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,3,0,1],[1,3,3,2],[2,2,1,2],[1,2,0,0]],[[2,2,0,1],[1,3,3,2],[2,2,1,2],[1,2,0,0]],[[2,1,2,0],[2,3,2,1],[2,2,3,2],[1,1,0,0]],[[1,1,2,0],[3,3,2,1],[2,2,3,2],[1,1,0,0]],[[1,1,2,0],[2,4,2,1],[2,2,3,2],[1,1,0,0]],[[1,1,2,0],[2,3,2,1],[3,2,3,2],[1,1,0,0]],[[1,1,2,0],[2,3,2,1],[2,2,3,2],[2,1,0,0]],[[1,2,0,1],[1,3,3,2],[2,2,1,3],[1,1,1,0]],[[1,2,0,1],[1,3,3,3],[2,2,1,2],[1,1,1,0]],[[1,2,0,1],[1,3,4,2],[2,2,1,2],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,0,2],[1,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,3,0,1],[1,3,3,2],[2,2,1,2],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,2],[2,2,1,2],[1,1,0,2]],[[1,2,0,1],[1,3,3,2],[2,2,1,3],[1,1,0,1]],[[1,2,0,1],[1,3,3,3],[2,2,1,2],[1,1,0,1]],[[1,2,0,1],[1,3,4,2],[2,2,1,2],[1,1,0,1]],[[1,2,0,1],[1,4,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,0,2],[1,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,3,0,1],[1,3,3,2],[2,2,1,2],[1,1,0,1]],[[2,2,0,1],[1,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,0,1],[1,3,3,2],[2,2,1,3],[1,0,2,0]],[[1,2,0,1],[1,3,3,3],[2,2,1,2],[1,0,2,0]],[[1,2,0,1],[1,3,4,2],[2,2,1,2],[1,0,2,0]],[[1,2,0,1],[1,4,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,0,2],[1,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,3,0,1],[1,3,3,2],[2,2,1,2],[1,0,2,0]],[[2,2,0,1],[1,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[2,2,1,2],[1,0,1,2]],[[1,2,0,1],[1,3,3,2],[2,2,1,3],[1,0,1,1]],[[1,2,0,1],[1,3,3,3],[2,2,1,2],[1,0,1,1]],[[1,2,0,1],[1,3,4,2],[2,2,1,2],[1,0,1,1]],[[1,2,0,1],[1,4,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,0,2],[1,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,3,0,1],[1,3,3,2],[2,2,1,2],[1,0,1,1]],[[2,2,0,1],[1,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,0,1],[1,3,3,2],[2,2,1,3],[0,2,1,0]],[[2,1,2,0],[2,3,2,1],[2,3,0,1],[0,2,2,1]],[[1,1,2,0],[3,3,2,1],[2,3,0,1],[0,2,2,1]],[[1,1,2,0],[2,4,2,1],[2,3,0,1],[0,2,2,1]],[[1,1,2,0],[2,3,2,1],[3,3,0,1],[0,2,2,1]],[[2,1,2,0],[2,3,2,1],[2,3,0,1],[1,1,2,1]],[[1,1,2,0],[3,3,2,1],[2,3,0,1],[1,1,2,1]],[[1,1,2,0],[2,4,2,1],[2,3,0,1],[1,1,2,1]],[[1,1,2,0],[2,3,2,1],[3,3,0,1],[1,1,2,1]],[[1,1,2,0],[2,3,2,1],[2,3,0,1],[2,1,2,1]],[[2,1,2,0],[2,3,2,1],[2,3,0,1],[1,2,1,1]],[[1,1,2,0],[3,3,2,1],[2,3,0,1],[1,2,1,1]],[[1,1,2,0],[2,4,2,1],[2,3,0,1],[1,2,1,1]],[[1,1,2,0],[2,3,2,1],[3,3,0,1],[1,2,1,1]],[[1,1,2,0],[2,3,2,1],[2,3,0,1],[2,2,1,1]],[[2,1,2,0],[2,3,2,1],[2,3,0,2],[0,2,2,0]],[[1,1,2,0],[3,3,2,1],[2,3,0,2],[0,2,2,0]],[[1,1,2,0],[2,4,2,1],[2,3,0,2],[0,2,2,0]],[[1,1,2,0],[2,3,2,1],[3,3,0,2],[0,2,2,0]],[[2,1,2,0],[2,3,2,1],[2,3,0,2],[1,1,2,0]],[[1,1,2,0],[3,3,2,1],[2,3,0,2],[1,1,2,0]],[[1,1,2,0],[2,4,2,1],[2,3,0,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,1],[3,3,0,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,1],[2,3,0,2],[2,1,2,0]],[[2,1,2,0],[2,3,2,1],[2,3,0,2],[1,2,1,0]],[[1,1,2,0],[3,3,2,1],[2,3,0,2],[1,2,1,0]],[[1,1,2,0],[2,4,2,1],[2,3,0,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,1],[3,3,0,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,1],[2,3,0,2],[2,2,1,0]],[[1,2,0,1],[1,3,3,3],[2,2,1,2],[0,2,1,0]],[[1,2,0,1],[1,3,4,2],[2,2,1,2],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,2,1,2],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[2,2,1,2],[0,2,0,2]],[[1,2,0,1],[1,3,3,2],[2,2,1,3],[0,2,0,1]],[[1,2,0,1],[1,3,3,3],[2,2,1,2],[0,2,0,1]],[[1,2,0,1],[1,3,4,2],[2,2,1,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,1],[2,3,1,1],[0,2,1,1]],[[1,1,2,0],[3,3,2,1],[2,3,1,1],[0,2,1,1]],[[1,1,2,0],[2,4,2,1],[2,3,1,1],[0,2,1,1]],[[1,1,2,0],[2,3,2,1],[3,3,1,1],[0,2,1,1]],[[2,1,2,0],[2,3,2,1],[2,3,1,1],[1,1,1,1]],[[1,1,2,0],[3,3,2,1],[2,3,1,1],[1,1,1,1]],[[1,1,2,0],[2,4,2,1],[2,3,1,1],[1,1,1,1]],[[1,1,2,0],[2,3,2,1],[3,3,1,1],[1,1,1,1]],[[1,1,2,0],[2,3,2,1],[2,3,1,1],[2,1,1,1]],[[2,1,2,0],[2,3,2,1],[2,3,1,1],[1,2,0,1]],[[1,1,2,0],[3,3,2,1],[2,3,1,1],[1,2,0,1]],[[1,1,2,0],[2,4,2,1],[2,3,1,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,1],[3,3,1,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,1],[2,3,1,1],[2,2,0,1]],[[1,2,0,1],[1,4,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,0,2],[1,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,2,1,2],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,2,1,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,1],[2,3,1,2],[0,2,0,1]],[[1,1,2,0],[3,3,2,1],[2,3,1,2],[0,2,0,1]],[[1,1,2,0],[2,4,2,1],[2,3,1,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,1],[3,3,1,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,1],[2,3,1,2],[0,2,1,0]],[[1,1,2,0],[3,3,2,1],[2,3,1,2],[0,2,1,0]],[[1,1,2,0],[2,4,2,1],[2,3,1,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,1],[3,3,1,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[2,2,1,3],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[2,2,1,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[2,2,1,2],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[2,2,1,2],[0,1,2,0]],[[2,1,2,0],[2,3,2,1],[2,3,1,2],[1,1,0,1]],[[1,1,2,0],[3,3,2,1],[2,3,1,2],[1,1,0,1]],[[1,1,2,0],[2,4,2,1],[2,3,1,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,1],[3,3,1,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,1],[2,3,1,2],[2,1,0,1]],[[2,1,2,0],[2,3,2,1],[2,3,1,2],[1,1,1,0]],[[1,1,2,0],[3,3,2,1],[2,3,1,2],[1,1,1,0]],[[1,1,2,0],[2,4,2,1],[2,3,1,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,1],[3,3,1,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,1],[2,3,1,2],[2,1,1,0]],[[1,3,0,1],[1,3,3,2],[2,2,1,2],[0,1,2,0]],[[2,2,0,1],[1,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[2,2,1,2],[0,1,1,2]],[[1,2,0,1],[1,3,3,2],[2,2,1,3],[0,1,1,1]],[[1,2,0,1],[1,3,3,3],[2,2,1,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[2,2,1,2],[0,1,1,1]],[[2,1,2,0],[2,3,2,1],[2,3,1,2],[1,2,0,0]],[[1,1,2,0],[3,3,2,1],[2,3,1,2],[1,2,0,0]],[[1,1,2,0],[2,4,2,1],[2,3,1,2],[1,2,0,0]],[[1,1,2,0],[2,3,2,1],[3,3,1,2],[1,2,0,0]],[[1,1,2,0],[2,3,2,1],[2,3,1,2],[2,2,0,0]],[[1,2,0,1],[1,4,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,3,0,1],[1,3,3,2],[2,2,1,2],[0,1,1,1]],[[2,2,0,1],[1,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,3],[2,2,1,1],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[2,2,1,1],[1,1,2,0]],[[1,2,0,1],[1,4,3,2],[2,2,1,1],[1,1,2,0]],[[1,2,0,2],[1,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[2,2,1,1],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,2,0,1],[1,3,3,3],[2,2,1,1],[0,2,2,0]],[[1,2,0,1],[1,3,4,2],[2,2,1,1],[0,2,2,0]],[[1,2,0,1],[1,4,3,2],[2,2,1,1],[0,2,2,0]],[[1,2,0,2],[1,3,3,2],[2,2,1,1],[0,2,2,0]],[[2,1,2,0],[2,3,2,1],[2,3,2,1],[1,0,1,1]],[[1,1,2,0],[3,3,2,1],[2,3,2,1],[1,0,1,1]],[[1,1,2,0],[2,4,2,1],[2,3,2,1],[1,0,1,1]],[[1,1,2,0],[2,3,2,1],[3,3,2,1],[1,0,1,1]],[[1,3,0,1],[1,3,3,2],[2,2,1,1],[0,2,2,0]],[[2,2,0,1],[1,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,2,0,1],[1,3,3,3],[2,2,1,0],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[2,2,1,0],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[2,2,1,0],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[2,2,1,0],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[2,2,1,0],[0,2,2,1]],[[1,2,0,1],[1,4,3,2],[2,2,1,0],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,3,0,1],[1,3,3,2],[2,2,1,0],[0,2,2,1]],[[2,2,0,1],[1,3,3,2],[2,2,1,0],[0,2,2,1]],[[2,1,2,0],[2,3,2,1],[2,3,2,2],[1,0,0,1]],[[1,1,2,0],[3,3,2,1],[2,3,2,2],[1,0,0,1]],[[1,1,2,0],[2,4,2,1],[2,3,2,2],[1,0,0,1]],[[1,1,2,0],[2,3,2,1],[3,3,2,2],[1,0,0,1]],[[2,1,2,0],[2,3,2,1],[2,3,2,2],[1,0,1,0]],[[1,1,2,0],[3,3,2,1],[2,3,2,2],[1,0,1,0]],[[1,1,2,0],[2,4,2,1],[2,3,2,2],[1,0,1,0]],[[1,1,2,0],[2,3,2,1],[3,3,2,2],[1,0,1,0]],[[1,2,0,1],[1,3,3,2],[2,2,0,3],[1,1,2,0]],[[1,2,0,1],[1,3,3,3],[2,2,0,2],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[2,2,0,2],[1,1,2,0]],[[1,2,0,1],[1,4,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,0,2],[1,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[2,2,0,2],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[2,2,0,2],[1,1,1,2]],[[1,2,0,1],[1,3,3,2],[2,2,0,3],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[2,2,0,2],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[2,2,0,2],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[2,2,0,2],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[2,2,0,2],[1,0,2,2]],[[1,2,0,1],[1,3,3,2],[2,2,0,2],[1,0,3,1]],[[1,2,0,1],[1,3,3,2],[2,2,0,3],[1,0,2,1]],[[1,2,0,1],[1,3,3,3],[2,2,0,2],[1,0,2,1]],[[1,2,0,1],[1,3,4,2],[2,2,0,2],[1,0,2,1]],[[1,2,0,1],[1,4,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,0,2],[1,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,3,0,1],[1,3,3,2],[2,2,0,2],[1,0,2,1]],[[2,2,0,1],[1,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,0,1],[1,3,3,2],[2,2,0,3],[0,2,2,0]],[[1,2,0,1],[1,3,3,3],[2,2,0,2],[0,2,2,0]],[[1,2,0,1],[1,3,4,2],[2,2,0,2],[0,2,2,0]],[[1,2,0,1],[1,4,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,0,2],[1,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,3,0,1],[1,3,3,2],[2,2,0,2],[0,2,2,0]],[[2,2,0,1],[1,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,2],[2,2,0,2],[0,2,1,2]],[[1,2,0,1],[1,3,3,2],[2,2,0,3],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[2,2,0,2],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[2,2,0,2],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[2,2,0,2],[0,2,1,1]],[[2,2,0,1],[1,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,0,1],[1,3,3,2],[2,2,0,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,2],[2,2,0,2],[0,1,3,1]],[[1,2,0,1],[1,3,3,2],[2,2,0,3],[0,1,2,1]],[[1,2,0,1],[1,3,3,3],[2,2,0,2],[0,1,2,1]],[[1,2,0,1],[1,3,4,2],[2,2,0,2],[0,1,2,1]],[[1,2,0,1],[1,4,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,0,2],[1,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,3,0,1],[1,3,3,2],[2,2,0,2],[0,1,2,1]],[[2,2,0,1],[1,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,0,1],[1,4,3,2],[2,2,0,1],[1,2,2,0]],[[1,3,0,1],[1,3,3,2],[2,2,0,1],[1,2,2,0]],[[2,2,0,1],[1,3,3,2],[2,2,0,1],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[2,2,0,1],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[2,2,0,1],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[2,2,0,1],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[2,2,0,1],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[2,2,0,1],[0,2,2,1]],[[1,2,0,1],[1,4,3,2],[2,2,0,1],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,3,0,1],[1,3,3,2],[2,2,0,1],[0,2,2,1]],[[2,2,0,1],[1,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,2,0,1],[1,4,3,2],[2,2,0,0],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[2,2,0,0],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[2,2,0,0],[1,2,2,1]],[[1,2,0,1],[1,3,3,2],[2,1,3,3],[1,0,0,1]],[[1,2,0,1],[1,3,3,3],[2,1,3,2],[1,0,0,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,2],[1,0,0,1]],[[1,2,0,1],[1,4,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,0,2],[1,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,3,0,1],[1,3,3,2],[2,1,3,2],[1,0,0,1]],[[2,2,0,1],[1,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,0,1],[1,3,3,2],[2,1,3,3],[0,1,0,1]],[[1,2,0,1],[1,3,3,3],[2,1,3,2],[0,1,0,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,2],[0,1,0,1]],[[1,2,0,1],[1,4,3,2],[2,1,3,2],[0,1,0,1]],[[1,2,0,2],[1,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,3,0,1],[1,3,3,2],[2,1,3,2],[0,1,0,1]],[[2,2,0,1],[1,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,2,0,1],[1,3,3,2],[2,1,4,1],[1,1,1,0]],[[1,2,0,1],[1,3,3,3],[2,1,3,1],[1,1,1,0]],[[1,2,0,1],[1,3,4,2],[2,1,3,1],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,0,2],[1,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,3,0,1],[1,3,3,2],[2,1,3,1],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,0,1],[1,3,3,2],[2,1,4,1],[1,1,0,1]],[[1,2,0,1],[1,3,3,3],[2,1,3,1],[1,1,0,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,1],[1,1,0,1]],[[1,2,0,1],[1,4,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,0,2],[1,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,3,0,1],[1,3,3,2],[2,1,3,1],[1,1,0,1]],[[2,2,0,1],[1,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,0,1],[1,3,3,2],[2,1,3,1],[1,0,3,0]],[[1,2,0,1],[1,3,3,2],[2,1,4,1],[1,0,2,0]],[[1,2,0,1],[1,3,3,3],[2,1,3,1],[1,0,2,0]],[[2,1,2,0],[2,3,2,1],[2,3,3,2],[1,0,0,0]],[[1,1,2,0],[3,3,2,1],[2,3,3,2],[1,0,0,0]],[[1,1,2,0],[2,4,2,1],[2,3,3,2],[1,0,0,0]],[[1,1,2,0],[2,3,2,1],[3,3,3,2],[1,0,0,0]],[[1,2,0,1],[1,3,4,2],[2,1,3,1],[1,0,2,0]],[[1,2,0,1],[1,4,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,0,2],[1,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,3,0,1],[1,3,3,2],[2,1,3,1],[1,0,2,0]],[[2,2,0,1],[1,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[2,1,4,1],[1,0,1,1]],[[1,2,0,1],[1,3,3,3],[2,1,3,1],[1,0,1,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,1],[1,0,1,1]],[[1,2,0,1],[1,4,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,0,2],[1,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,3,0,1],[1,3,3,2],[2,1,3,1],[1,0,1,1]],[[2,2,0,1],[1,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,0,1],[1,3,3,2],[2,1,4,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,3],[2,1,3,1],[0,2,1,0]],[[1,2,0,1],[1,3,4,2],[2,1,3,1],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,1,3,1],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[2,1,4,1],[0,2,0,1]],[[1,2,0,1],[1,3,3,3],[2,1,3,1],[0,2,0,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,1],[0,2,0,1]],[[1,2,0,1],[1,4,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,0,2],[1,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,1,3,1],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,0,1],[1,3,3,2],[2,1,3,1],[0,1,3,0]],[[1,2,0,1],[1,3,3,2],[2,1,4,1],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[2,1,3,1],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[2,1,3,1],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,3,0,1],[1,3,3,2],[2,1,3,1],[0,1,2,0]],[[2,2,0,1],[1,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[2,1,4,1],[0,1,1,1]],[[1,2,0,1],[1,3,3,3],[2,1,3,1],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,1],[0,1,1,1]],[[1,2,0,1],[1,4,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,3,0,1],[1,3,3,2],[2,1,3,1],[0,1,1,1]],[[2,2,0,1],[1,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[2,1,4,1],[0,0,2,1]],[[1,2,0,1],[1,3,3,3],[2,1,3,1],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,1],[0,0,2,1]],[[1,2,0,1],[1,4,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,0,2],[1,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,3,0,1],[1,3,3,2],[2,1,3,1],[0,0,2,1]],[[2,2,0,1],[1,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,0],[1,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,1,3,0],[1,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,1,3,0],[1,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,2,0,1],[1,3,3,2],[2,1,4,0],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[2,1,3,0],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,0],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[2,1,3,0],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[2,1,3,0],[1,0,2,2]],[[1,2,0,1],[1,3,3,2],[2,1,3,0],[1,0,3,1]],[[1,2,0,1],[1,3,3,2],[2,1,4,0],[1,0,2,1]],[[1,2,0,1],[1,3,3,3],[2,1,3,0],[1,0,2,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,0],[1,0,2,1]],[[1,2,0,1],[1,4,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,0,2],[1,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,3,0,1],[1,3,3,2],[2,1,3,0],[1,0,2,1]],[[2,2,0,1],[1,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,0,1],[1,3,3,2],[2,1,4,0],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[2,1,3,0],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,0],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,0],[2,3,2,3],[0,0,3,2],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,0,3,3],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,0,3,2],[0,2,3,1]],[[1,1,2,0],[2,3,2,2],[0,0,3,2],[0,2,2,2]],[[2,1,2,0],[2,3,2,2],[0,1,1,2],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[0,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[0,1,1,2],[1,2,2,1]],[[1,1,2,0],[2,3,2,3],[0,1,2,2],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,1,2,3],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,1,2,2],[0,2,3,1]],[[1,1,2,0],[2,3,2,2],[0,1,2,2],[0,2,2,2]],[[2,1,2,0],[2,3,2,2],[0,1,2,2],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[0,1,2,2],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[0,1,2,2],[1,2,1,1]],[[2,1,2,0],[2,3,2,2],[0,1,2,2],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[0,1,2,2],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[0,1,2,2],[1,2,2,0]],[[2,1,2,0],[2,3,2,2],[0,1,3,0],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[0,1,3,0],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[0,1,3,0],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,1,4,1],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,1,3,1],[0,2,3,1]],[[1,1,2,0],[2,3,2,2],[0,1,3,1],[0,2,2,2]],[[2,1,2,0],[2,3,2,2],[0,1,3,1],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[0,1,3,1],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[0,1,3,1],[1,2,1,1]],[[2,1,2,0],[2,3,2,2],[0,1,3,1],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[0,1,3,1],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[0,1,3,1],[1,2,2,0]],[[1,1,2,0],[2,3,2,3],[0,1,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[0,1,4,2],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[0,1,3,3],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[0,1,3,2],[0,2,1,2]],[[1,1,2,0],[2,3,2,3],[0,1,3,2],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[0,1,4,2],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[0,1,3,3],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[0,1,3,2],[0,2,3,0]],[[2,2,0,1],[1,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,0,1],[1,3,3,2],[2,1,3,0],[0,1,2,2]],[[1,2,0,1],[1,3,3,2],[2,1,3,0],[0,1,3,1]],[[1,2,0,1],[1,3,3,2],[2,1,4,0],[0,1,2,1]],[[1,2,0,1],[1,3,3,3],[2,1,3,0],[0,1,2,1]],[[1,2,0,1],[1,3,4,2],[2,1,3,0],[0,1,2,1]],[[1,2,0,1],[1,4,3,2],[2,1,3,0],[0,1,2,1]],[[1,2,0,2],[1,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,3,0,1],[1,3,3,2],[2,1,3,0],[0,1,2,1]],[[2,2,0,1],[1,3,3,2],[2,1,3,0],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[0,2,0,2],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[0,2,0,2],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[0,2,0,2],[1,2,2,1]],[[2,1,2,0],[2,3,2,2],[0,2,1,2],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[0,2,1,2],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[0,2,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,2,3],[0,2,2,2],[0,1,2,1]],[[1,1,2,0],[2,3,2,2],[0,2,2,3],[0,1,2,1]],[[1,1,2,0],[2,3,2,2],[0,2,2,2],[0,1,3,1]],[[1,1,2,0],[2,3,2,2],[0,2,2,2],[0,1,2,2]],[[2,1,2,0],[2,3,2,2],[0,2,2,2],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[0,2,2,2],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[0,2,2,2],[1,1,1,1]],[[2,1,2,0],[2,3,2,2],[0,2,2,2],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[0,2,2,2],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[0,2,2,2],[1,1,2,0]],[[2,1,2,0],[2,3,2,2],[0,2,2,2],[1,2,0,1]],[[1,1,2,0],[3,3,2,2],[0,2,2,2],[1,2,0,1]],[[1,1,2,0],[2,4,2,2],[0,2,2,2],[1,2,0,1]],[[2,1,2,0],[2,3,2,2],[0,2,2,2],[1,2,1,0]],[[1,1,2,0],[3,3,2,2],[0,2,2,2],[1,2,1,0]],[[1,1,2,0],[2,4,2,2],[0,2,2,2],[1,2,1,0]],[[2,1,2,0],[2,3,2,2],[0,2,3,0],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[0,2,3,0],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[0,2,3,0],[1,1,2,1]],[[2,1,2,0],[2,3,2,2],[0,2,3,0],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[0,2,3,0],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[0,2,3,0],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[0,2,4,1],[0,1,2,1]],[[1,1,2,0],[2,3,2,2],[0,2,3,1],[0,1,3,1]],[[1,1,2,0],[2,3,2,2],[0,2,3,1],[0,1,2,2]],[[2,1,2,0],[2,3,2,2],[0,2,3,1],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[0,2,3,1],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[0,2,3,1],[1,1,1,1]],[[2,1,2,0],[2,3,2,2],[0,2,3,1],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[0,2,3,1],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[0,2,3,1],[1,1,2,0]],[[2,1,2,0],[2,3,2,2],[0,2,3,1],[1,2,0,1]],[[1,1,2,0],[3,3,2,2],[0,2,3,1],[1,2,0,1]],[[1,1,2,0],[2,4,2,2],[0,2,3,1],[1,2,0,1]],[[2,1,2,0],[2,3,2,2],[0,2,3,1],[1,2,1,0]],[[1,1,2,0],[3,3,2,2],[0,2,3,1],[1,2,1,0]],[[1,1,2,0],[2,4,2,2],[0,2,3,1],[1,2,1,0]],[[1,1,2,0],[2,3,2,3],[0,2,3,2],[0,0,2,1]],[[1,1,2,0],[2,3,2,2],[0,2,4,2],[0,0,2,1]],[[1,1,2,0],[2,3,2,2],[0,2,3,3],[0,0,2,1]],[[1,1,2,0],[2,3,2,2],[0,2,3,2],[0,0,2,2]],[[1,1,2,0],[2,3,2,3],[0,2,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,2,2],[0,2,4,2],[0,1,1,1]],[[1,1,2,0],[2,3,2,2],[0,2,3,3],[0,1,1,1]],[[1,1,2,0],[2,3,2,2],[0,2,3,2],[0,1,1,2]],[[1,1,2,0],[2,3,2,3],[0,2,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,2,2],[0,2,4,2],[0,1,2,0]],[[1,1,2,0],[2,3,2,2],[0,2,3,3],[0,1,2,0]],[[1,1,2,0],[2,3,2,2],[0,2,3,2],[0,1,3,0]],[[1,1,2,0],[2,3,2,3],[0,2,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[0,2,4,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[0,2,3,3],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[0,2,3,2],[0,2,0,2]],[[1,1,2,0],[2,3,2,3],[0,2,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[0,2,4,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[0,2,3,3],[0,2,1,0]],[[1,1,2,0],[2,3,2,3],[0,2,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[0,2,4,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[0,2,3,3],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[0,2,3,2],[1,0,1,2]],[[1,1,2,0],[2,3,2,3],[0,2,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[0,2,4,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[0,2,3,3],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[2,1,2,3],[1,1,1,0]],[[1,2,0,1],[1,3,3,3],[2,1,2,2],[1,1,1,0]],[[1,2,0,1],[1,3,4,2],[2,1,2,2],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,0,2],[1,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,3,0,1],[1,3,3,2],[2,1,2,2],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,2],[2,1,2,2],[1,1,0,2]],[[1,2,0,1],[1,3,3,2],[2,1,2,3],[1,1,0,1]],[[1,2,0,1],[1,3,3,3],[2,1,2,2],[1,1,0,1]],[[1,2,0,1],[1,3,4,2],[2,1,2,2],[1,1,0,1]],[[1,2,0,1],[1,4,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,0,2],[1,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,3,0,1],[1,3,3,2],[2,1,2,2],[1,1,0,1]],[[2,2,0,1],[1,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,0,1],[1,3,3,2],[2,1,2,3],[1,0,2,0]],[[1,2,0,1],[1,3,3,3],[2,1,2,2],[1,0,2,0]],[[2,1,2,0],[2,3,2,2],[0,3,0,1],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[0,3,0,1],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[0,3,0,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,4,0,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,3,0,1],[2,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,3,0,1],[1,3,2,1]],[[1,1,2,0],[2,3,2,2],[0,3,0,1],[1,2,3,1]],[[1,1,2,0],[2,3,2,2],[0,3,0,1],[1,2,2,2]],[[2,1,2,0],[2,3,2,2],[0,3,0,2],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[0,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[0,3,0,2],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[0,4,0,2],[1,1,2,1]],[[2,1,2,0],[2,3,2,2],[0,3,0,2],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[0,3,0,2],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[0,3,0,2],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[0,4,0,2],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[0,3,0,2],[2,2,1,1]],[[1,1,2,0],[2,3,2,2],[0,3,0,2],[1,3,1,1]],[[2,1,2,0],[2,3,2,2],[0,3,0,2],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[0,3,0,2],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[0,3,0,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[0,4,0,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[0,3,0,2],[2,2,2,0]],[[1,1,2,0],[2,3,2,2],[0,3,0,2],[1,3,2,0]],[[1,1,2,0],[2,3,2,2],[0,3,0,2],[1,2,3,0]],[[2,1,2,0],[2,3,2,2],[0,3,1,0],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[0,3,1,0],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[0,3,1,0],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,4,1,0],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,3,1,0],[2,2,2,1]],[[1,1,2,0],[2,3,2,2],[0,3,1,0],[1,3,2,1]],[[1,1,2,0],[2,3,2,2],[0,3,1,0],[1,2,3,1]],[[1,1,2,0],[2,3,2,2],[0,3,1,0],[1,2,2,2]],[[2,1,2,0],[2,3,2,2],[0,3,1,1],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[0,3,1,1],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[0,3,1,1],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[0,4,1,1],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[0,3,1,1],[2,2,2,0]],[[1,1,2,0],[2,3,2,2],[0,3,1,1],[1,3,2,0]],[[1,1,2,0],[2,3,2,2],[0,3,1,1],[1,2,3,0]],[[2,1,2,0],[2,3,2,2],[0,3,1,2],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[0,3,1,2],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[0,3,1,2],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[0,4,1,2],[1,1,1,1]],[[2,1,2,0],[2,3,2,2],[0,3,1,2],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[0,3,1,2],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[0,3,1,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[0,4,1,2],[1,1,2,0]],[[2,1,2,0],[2,3,2,2],[0,3,1,2],[1,2,0,1]],[[1,1,2,0],[3,3,2,2],[0,3,1,2],[1,2,0,1]],[[1,1,2,0],[2,4,2,2],[0,3,1,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[0,4,1,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[0,3,1,2],[2,2,0,1]],[[1,1,2,0],[2,3,2,2],[0,3,1,2],[1,3,0,1]],[[2,1,2,0],[2,3,2,2],[0,3,1,2],[1,2,1,0]],[[1,1,2,0],[3,3,2,2],[0,3,1,2],[1,2,1,0]],[[1,1,2,0],[2,4,2,2],[0,3,1,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[0,4,1,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[0,3,1,2],[2,2,1,0]],[[1,1,2,0],[2,3,2,2],[0,3,1,2],[1,3,1,0]],[[1,2,0,1],[1,3,4,2],[2,1,2,2],[1,0,2,0]],[[1,2,0,1],[1,4,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,0,2],[1,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,3,0,1],[1,3,3,2],[2,1,2,2],[1,0,2,0]],[[2,2,0,1],[1,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[2,1,2,2],[1,0,1,2]],[[1,2,0,1],[1,3,3,2],[2,1,2,3],[1,0,1,1]],[[1,2,0,1],[1,3,3,3],[2,1,2,2],[1,0,1,1]],[[1,2,0,1],[1,3,4,2],[2,1,2,2],[1,0,1,1]],[[1,2,0,1],[1,4,3,2],[2,1,2,2],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[0,4,2,0],[1,1,2,1]],[[2,1,2,0],[2,3,2,2],[0,3,2,0],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[0,3,2,0],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[0,3,2,0],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[0,4,2,0],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[0,3,2,0],[2,2,1,1]],[[1,1,2,0],[2,3,2,2],[0,3,2,0],[1,3,1,1]],[[2,1,2,0],[2,3,2,2],[0,3,2,1],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[0,3,2,1],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[0,3,2,1],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[0,4,2,1],[1,1,1,1]],[[2,1,2,0],[2,3,2,2],[0,3,2,1],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[0,3,2,1],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[0,3,2,1],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[0,4,2,1],[1,1,2,0]],[[2,1,2,0],[2,3,2,2],[0,3,2,1],[1,2,0,1]],[[1,1,2,0],[3,3,2,2],[0,3,2,1],[1,2,0,1]],[[1,1,2,0],[2,4,2,2],[0,3,2,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[0,4,2,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[0,3,2,1],[2,2,0,1]],[[1,1,2,0],[2,3,2,2],[0,3,2,1],[1,3,0,1]],[[2,1,2,0],[2,3,2,2],[0,3,2,1],[1,2,1,0]],[[1,1,2,0],[3,3,2,2],[0,3,2,1],[1,2,1,0]],[[1,1,2,0],[2,4,2,2],[0,3,2,1],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[0,4,2,1],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[0,3,2,1],[2,2,1,0]],[[1,1,2,0],[2,3,2,2],[0,3,2,1],[1,3,1,0]],[[1,2,0,2],[1,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,3,0,1],[1,3,3,2],[2,1,2,2],[1,0,1,1]],[[2,2,0,1],[1,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,0,1],[1,3,3,2],[2,1,2,3],[0,2,1,0]],[[1,2,0,1],[1,3,3,3],[2,1,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,4,2],[2,1,2,2],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,1,2,2],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[2,1,2,2],[0,2,0,2]],[[1,2,0,1],[1,3,3,2],[2,1,2,3],[0,2,0,1]],[[1,2,0,1],[1,3,3,3],[2,1,2,2],[0,2,0,1]],[[1,2,0,1],[1,3,4,2],[2,1,2,2],[0,2,0,1]],[[1,2,0,1],[1,4,3,2],[2,1,2,2],[0,2,0,1]],[[1,2,0,2],[1,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,1,2,2],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,2,0,1],[1,3,3,2],[2,1,2,3],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[0,3,3,0],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[0,3,3,0],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[0,3,3,0],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[0,4,3,0],[1,1,2,0]],[[2,1,2,0],[2,3,2,2],[0,3,3,0],[1,2,1,0]],[[1,1,2,0],[3,3,2,2],[0,3,3,0],[1,2,1,0]],[[1,1,2,0],[2,4,2,2],[0,3,3,0],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[0,4,3,0],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[0,3,3,0],[2,2,1,0]],[[1,1,2,0],[2,3,2,2],[0,3,3,0],[1,3,1,0]],[[1,2,0,1],[1,3,3,3],[2,1,2,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[2,1,2,2],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,3,0,1],[1,3,3,2],[2,1,2,2],[0,1,2,0]],[[2,2,0,1],[1,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[2,1,2,2],[0,1,1,2]],[[1,2,0,1],[1,3,3,2],[2,1,2,3],[0,1,1,1]],[[1,2,0,1],[1,3,3,3],[2,1,2,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[2,1,2,2],[0,1,1,1]],[[1,2,0,1],[1,4,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,3,0,1],[1,3,3,2],[2,1,2,2],[0,1,1,1]],[[2,2,0,1],[1,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[2,1,2,2],[0,0,2,2]],[[1,2,0,1],[1,3,3,2],[2,1,2,3],[0,0,2,1]],[[1,2,0,1],[1,3,3,3],[2,1,2,2],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[2,1,2,2],[0,0,2,1]],[[1,2,0,1],[1,4,3,2],[2,1,2,2],[0,0,2,1]],[[2,1,2,0],[2,3,2,2],[0,3,3,1],[1,2,0,0]],[[1,1,2,0],[3,3,2,2],[0,3,3,1],[1,2,0,0]],[[1,1,2,0],[2,4,2,2],[0,3,3,1],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[0,4,3,1],[1,2,0,0]],[[1,2,0,2],[1,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,3,0,1],[1,3,3,2],[2,1,2,2],[0,0,2,1]],[[2,2,0,1],[1,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,2,0,1],[1,3,3,3],[2,1,2,1],[1,2,1,0]],[[1,2,0,1],[1,3,4,2],[2,1,2,1],[1,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,0,2],[1,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,1,2,1],[1,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,0,1],[1,3,3,3],[2,1,2,1],[1,2,0,1]],[[1,2,0,1],[1,3,4,2],[2,1,2,1],[1,2,0,1]],[[1,2,0,1],[1,4,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,3],[0,3,3,2],[0,0,1,1]],[[1,1,2,0],[2,3,2,2],[0,3,4,2],[0,0,1,1]],[[1,1,2,0],[2,3,2,2],[0,3,3,3],[0,0,1,1]],[[1,1,2,0],[2,3,2,2],[0,3,3,2],[0,0,1,2]],[[1,1,2,0],[2,3,2,3],[0,3,3,2],[0,0,2,0]],[[1,1,2,0],[2,3,2,2],[0,3,4,2],[0,0,2,0]],[[1,1,2,0],[2,3,2,2],[0,3,3,3],[0,0,2,0]],[[1,2,0,2],[1,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,1,2,1],[1,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,2,0,1],[1,3,3,3],[2,1,2,0],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[2,1,2,0],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[2,1,2,0],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[2,1,2,0],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[2,1,1,3],[1,2,1,0]],[[1,2,0,1],[1,3,3,3],[2,1,1,2],[1,2,1,0]],[[1,2,0,1],[1,3,4,2],[2,1,1,2],[1,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,0,2],[1,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,1,1,2],[1,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,0,1],[1,3,3,2],[2,1,1,2],[1,2,0,2]],[[1,2,0,1],[1,3,3,2],[2,1,1,3],[1,2,0,1]],[[1,2,0,1],[1,3,3,3],[2,1,1,2],[1,2,0,1]],[[1,2,0,1],[1,3,4,2],[2,1,1,2],[1,2,0,1]],[[1,2,0,1],[1,4,3,2],[2,1,1,2],[1,2,0,1]],[[1,2,0,2],[1,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,1,1,2],[1,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,2,0,1],[1,3,3,2],[2,1,1,2],[1,0,2,2]],[[1,2,0,1],[1,3,3,2],[2,1,1,2],[1,0,3,1]],[[1,2,0,1],[1,3,3,2],[2,1,1,3],[1,0,2,1]],[[1,2,0,1],[1,3,3,3],[2,1,1,2],[1,0,2,1]],[[1,2,0,1],[1,3,4,2],[2,1,1,2],[1,0,2,1]],[[1,2,0,1],[1,4,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,0,2],[1,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,3,0,1],[1,3,3,2],[2,1,1,2],[1,0,2,1]],[[2,2,0,1],[1,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,0,1],[1,3,3,2],[2,1,1,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,2],[2,1,1,2],[0,1,3,1]],[[1,2,0,1],[1,3,3,2],[2,1,1,3],[0,1,2,1]],[[1,2,0,1],[1,3,3,3],[2,1,1,2],[0,1,2,1]],[[1,2,0,1],[1,3,4,2],[2,1,1,2],[0,1,2,1]],[[1,2,0,1],[1,4,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,0,2],[1,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,3,0,1],[1,3,3,2],[2,1,1,2],[0,1,2,1]],[[2,2,0,1],[1,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,0,1],[1,3,3,3],[2,1,1,1],[1,2,2,0]],[[1,2,0,1],[1,3,4,2],[2,1,1,1],[1,2,2,0]],[[1,2,0,1],[1,4,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,0,2],[1,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,3,0,1],[1,3,3,2],[2,1,1,1],[1,2,2,0]],[[2,2,0,1],[1,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[2,1,1,0],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[2,1,1,0],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[2,1,1,0],[1,2,2,1]],[[2,1,2,0],[2,3,2,2],[1,0,1,2],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[1,0,1,2],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[1,0,1,2],[1,2,2,1]],[[2,1,2,0],[2,3,2,2],[1,0,2,2],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[1,0,2,2],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[1,0,2,2],[1,2,1,1]],[[2,1,2,0],[2,3,2,2],[1,0,2,2],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[1,0,2,2],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[1,0,2,2],[1,2,2,0]],[[2,1,2,0],[2,3,2,2],[1,0,3,0],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[1,0,3,0],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[1,0,3,0],[1,2,2,1]],[[2,1,2,0],[2,3,2,2],[1,0,3,1],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[1,0,3,1],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[1,0,3,1],[1,2,1,1]],[[2,1,2,0],[2,3,2,2],[1,0,3,1],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[1,0,3,1],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[1,0,3,1],[1,2,2,0]],[[1,2,0,2],[1,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[2,1,1,0],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[2,1,1,0],[1,2,2,1]],[[2,1,2,0],[2,3,2,2],[1,1,0,2],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[1,1,0,2],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[1,1,0,2],[1,2,2,1]],[[2,1,2,0],[2,3,2,2],[1,1,1,2],[0,2,2,1]],[[1,1,2,0],[3,3,2,2],[1,1,1,2],[0,2,2,1]],[[1,1,2,0],[2,4,2,2],[1,1,1,2],[0,2,2,1]],[[2,1,2,0],[2,3,2,2],[1,1,2,2],[0,2,1,1]],[[1,1,2,0],[3,3,2,2],[1,1,2,2],[0,2,1,1]],[[1,1,2,0],[2,4,2,2],[1,1,2,2],[0,2,1,1]],[[2,1,2,0],[2,3,2,2],[1,1,2,2],[0,2,2,0]],[[1,1,2,0],[3,3,2,2],[1,1,2,2],[0,2,2,0]],[[1,1,2,0],[2,4,2,2],[1,1,2,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,2],[2,1,0,3],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[2,1,0,2],[1,2,2,0]],[[1,2,0,1],[1,3,4,2],[2,1,0,2],[1,2,2,0]],[[1,2,0,1],[1,4,3,2],[2,1,0,2],[1,2,2,0]],[[2,1,2,0],[2,3,2,2],[1,1,3,0],[0,2,2,1]],[[1,1,2,0],[3,3,2,2],[1,1,3,0],[0,2,2,1]],[[1,1,2,0],[2,4,2,2],[1,1,3,0],[0,2,2,1]],[[2,1,2,0],[2,3,2,2],[1,1,3,1],[0,2,1,1]],[[1,1,2,0],[3,3,2,2],[1,1,3,1],[0,2,1,1]],[[1,1,2,0],[2,4,2,2],[1,1,3,1],[0,2,1,1]],[[2,1,2,0],[2,3,2,2],[1,1,3,1],[0,2,2,0]],[[1,1,2,0],[3,3,2,2],[1,1,3,1],[0,2,2,0]],[[1,1,2,0],[2,4,2,2],[1,1,3,1],[0,2,2,0]],[[1,2,0,2],[1,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,3,0,1],[1,3,3,2],[2,1,0,2],[1,2,2,0]],[[2,2,0,1],[1,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,2],[2,1,0,2],[1,2,1,2]],[[1,2,0,1],[1,3,3,2],[2,1,0,3],[1,2,1,1]],[[1,2,0,1],[1,3,3,3],[2,1,0,2],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[2,1,0,2],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[2,1,0,2],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[2,1,0,2],[1,1,2,2]],[[1,2,0,1],[1,3,3,2],[2,1,0,2],[1,1,3,1]],[[1,2,0,1],[1,3,3,2],[2,1,0,3],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[2,1,0,2],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[2,1,0,2],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[2,1,0,2],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,0,1],[1,3,3,2],[2,1,0,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,2],[2,1,0,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,2],[2,1,0,2],[0,3,2,1]],[[1,2,0,1],[1,3,3,2],[2,1,0,3],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[2,1,0,2],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[2,1,0,2],[0,2,2,1]],[[1,2,0,1],[1,4,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,3,0,1],[1,3,3,2],[2,1,0,2],[0,2,2,1]],[[2,2,0,1],[1,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[2,1,0,1],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[2,1,0,1],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[2,1,0,1],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[2,1,0,1],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[2,1,0,1],[1,2,2,1]],[[2,1,2,0],[2,3,2,2],[1,2,0,2],[0,2,2,1]],[[1,1,2,0],[3,3,2,2],[1,2,0,2],[0,2,2,1]],[[1,1,2,0],[2,4,2,2],[1,2,0,2],[0,2,2,1]],[[2,1,2,0],[2,3,2,2],[1,2,1,2],[0,1,2,1]],[[1,1,2,0],[3,3,2,2],[1,2,1,2],[0,1,2,1]],[[1,1,2,0],[2,4,2,2],[1,2,1,2],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[1,2,1,2],[1,0,2,1]],[[1,1,2,0],[3,3,2,2],[1,2,1,2],[1,0,2,1]],[[1,1,2,0],[2,4,2,2],[1,2,1,2],[1,0,2,1]],[[2,1,2,0],[2,3,2,2],[1,2,2,2],[0,0,2,1]],[[1,1,2,0],[3,3,2,2],[1,2,2,2],[0,0,2,1]],[[1,1,2,0],[2,4,2,2],[1,2,2,2],[0,0,2,1]],[[2,1,2,0],[2,3,2,2],[1,2,2,2],[0,1,1,1]],[[1,1,2,0],[3,3,2,2],[1,2,2,2],[0,1,1,1]],[[1,1,2,0],[2,4,2,2],[1,2,2,2],[0,1,1,1]],[[2,1,2,0],[2,3,2,2],[1,2,2,2],[0,1,2,0]],[[1,1,2,0],[3,3,2,2],[1,2,2,2],[0,1,2,0]],[[1,1,2,0],[2,4,2,2],[1,2,2,2],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[1,2,2,2],[0,2,0,1]],[[1,1,2,0],[3,3,2,2],[1,2,2,2],[0,2,0,1]],[[1,1,2,0],[2,4,2,2],[1,2,2,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,2],[1,2,2,2],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[1,2,2,2],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[1,2,2,2],[0,2,1,0]],[[2,1,2,0],[2,3,2,2],[1,2,2,2],[1,0,1,1]],[[1,1,2,0],[3,3,2,2],[1,2,2,2],[1,0,1,1]],[[1,1,2,0],[2,4,2,2],[1,2,2,2],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[1,2,2,2],[1,0,2,0]],[[1,1,2,0],[3,3,2,2],[1,2,2,2],[1,0,2,0]],[[1,1,2,0],[2,4,2,2],[1,2,2,2],[1,0,2,0]],[[2,1,2,0],[2,3,2,2],[1,2,2,2],[1,1,0,1]],[[1,1,2,0],[3,3,2,2],[1,2,2,2],[1,1,0,1]],[[1,1,2,0],[2,4,2,2],[1,2,2,2],[1,1,0,1]],[[2,1,2,0],[2,3,2,2],[1,2,2,2],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[1,2,2,2],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[1,2,2,2],[1,1,1,0]],[[2,1,2,0],[2,3,2,2],[1,2,3,0],[0,1,2,1]],[[1,1,2,0],[3,3,2,2],[1,2,3,0],[0,1,2,1]],[[1,1,2,0],[2,4,2,2],[1,2,3,0],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[1,2,3,0],[0,2,1,1]],[[1,1,2,0],[3,3,2,2],[1,2,3,0],[0,2,1,1]],[[1,1,2,0],[2,4,2,2],[1,2,3,0],[0,2,1,1]],[[2,1,2,0],[2,3,2,2],[1,2,3,0],[1,0,2,1]],[[1,1,2,0],[3,3,2,2],[1,2,3,0],[1,0,2,1]],[[1,1,2,0],[2,4,2,2],[1,2,3,0],[1,0,2,1]],[[2,1,2,0],[2,3,2,2],[1,2,3,0],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[1,2,3,0],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[1,2,3,0],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[2,0,3,3],[1,0,2,0]],[[1,2,0,1],[1,3,3,3],[2,0,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,4,2],[2,0,3,2],[1,0,2,0]],[[1,2,0,2],[1,3,3,2],[2,0,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[2,0,3,2],[1,0,1,2]],[[1,2,0,1],[1,3,3,2],[2,0,3,3],[1,0,1,1]],[[1,2,0,1],[1,3,3,3],[2,0,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,4,2],[2,0,3,2],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[1,2,3,1],[0,0,2,1]],[[1,1,2,0],[3,3,2,2],[1,2,3,1],[0,0,2,1]],[[1,1,2,0],[2,4,2,2],[1,2,3,1],[0,0,2,1]],[[2,1,2,0],[2,3,2,2],[1,2,3,1],[0,1,1,1]],[[1,1,2,0],[3,3,2,2],[1,2,3,1],[0,1,1,1]],[[1,1,2,0],[2,4,2,2],[1,2,3,1],[0,1,1,1]],[[2,1,2,0],[2,3,2,2],[1,2,3,1],[0,1,2,0]],[[1,1,2,0],[3,3,2,2],[1,2,3,1],[0,1,2,0]],[[1,1,2,0],[2,4,2,2],[1,2,3,1],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[1,2,3,1],[0,2,0,1]],[[1,1,2,0],[3,3,2,2],[1,2,3,1],[0,2,0,1]],[[1,1,2,0],[2,4,2,2],[1,2,3,1],[0,2,0,1]],[[2,1,2,0],[2,3,2,2],[1,2,3,1],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[1,2,3,1],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[1,2,3,1],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[2,0,3,2],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[1,2,3,1],[1,0,1,1]],[[1,1,2,0],[3,3,2,2],[1,2,3,1],[1,0,1,1]],[[1,1,2,0],[2,4,2,2],[1,2,3,1],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[1,2,3,1],[1,0,2,0]],[[1,1,2,0],[3,3,2,2],[1,2,3,1],[1,0,2,0]],[[1,1,2,0],[2,4,2,2],[1,2,3,1],[1,0,2,0]],[[2,1,2,0],[2,3,2,2],[1,2,3,1],[1,1,0,1]],[[1,1,2,0],[3,3,2,2],[1,2,3,1],[1,1,0,1]],[[1,1,2,0],[2,4,2,2],[1,2,3,1],[1,1,0,1]],[[2,1,2,0],[2,3,2,2],[1,2,3,1],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[1,2,3,1],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[1,2,3,1],[1,1,1,0]],[[1,2,0,1],[1,3,3,2],[2,0,3,3],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[2,0,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[2,0,3,2],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[2,0,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[2,0,3,2],[0,1,1,2]],[[1,2,0,1],[1,3,3,2],[2,0,3,3],[0,1,1,1]],[[2,1,2,0],[2,3,2,2],[1,2,3,2],[0,1,0,1]],[[1,1,2,0],[3,3,2,2],[1,2,3,2],[0,1,0,1]],[[1,1,2,0],[2,4,2,2],[1,2,3,2],[0,1,0,1]],[[1,2,0,1],[1,3,3,3],[2,0,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[2,0,3,2],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[2,0,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[2,0,3,2],[0,0,2,2]],[[1,2,0,1],[1,3,3,2],[2,0,3,3],[0,0,2,1]],[[1,2,0,1],[1,3,3,3],[2,0,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[2,0,3,2],[0,0,2,1]],[[1,2,0,2],[1,3,3,2],[2,0,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,3,2],[2,0,4,1],[1,2,1,0]],[[1,2,0,1],[1,3,3,3],[2,0,3,1],[1,2,1,0]],[[1,2,0,1],[1,3,4,2],[2,0,3,1],[1,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,0,2],[1,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,0,3,1],[1,2,1,0]],[[2,1,2,0],[2,3,2,2],[1,2,3,2],[1,0,0,1]],[[1,1,2,0],[3,3,2,2],[1,2,3,2],[1,0,0,1]],[[1,1,2,0],[2,4,2,2],[1,2,3,2],[1,0,0,1]],[[2,2,0,1],[1,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,0,1],[1,3,3,2],[2,0,4,1],[1,2,0,1]],[[1,2,0,1],[1,3,3,3],[2,0,3,1],[1,2,0,1]],[[1,2,0,1],[1,3,4,2],[2,0,3,1],[1,2,0,1]],[[1,2,0,1],[1,4,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,0,2],[1,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,0,3,1],[1,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,0,1],[1,3,3,2],[2,0,3,1],[1,1,3,0]],[[1,2,0,1],[1,3,3,2],[2,0,4,1],[1,1,2,0]],[[1,2,0,1],[1,3,3,3],[2,0,3,1],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[2,0,3,1],[1,1,2,0]],[[1,2,0,1],[1,4,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,0,2],[1,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[2,0,3,1],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[2,0,4,1],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[2,0,3,1],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[2,0,3,1],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[2,0,3,1],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[2,0,3,1],[0,2,3,0]],[[1,2,0,1],[1,3,3,2],[2,0,3,1],[0,3,2,0]],[[1,2,0,1],[1,3,3,2],[2,0,4,1],[0,2,2,0]],[[1,2,0,1],[1,3,3,3],[2,0,3,1],[0,2,2,0]],[[1,2,0,1],[1,3,4,2],[2,0,3,1],[0,2,2,0]],[[1,2,0,1],[1,4,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,0,2],[1,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,3,0,1],[1,3,3,2],[2,0,3,1],[0,2,2,0]],[[2,2,0,1],[1,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,0,1],[1,3,3,2],[2,0,4,1],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[2,0,3,1],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[2,0,3,1],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[2,0,3,1],[0,2,1,1]],[[2,2,0,1],[1,3,3,2],[2,0,3,1],[0,2,1,1]],[[2,1,2,0],[2,3,2,2],[1,3,0,1],[0,2,2,1]],[[1,1,2,0],[3,3,2,2],[1,3,0,1],[0,2,2,1]],[[1,1,2,0],[2,4,2,2],[1,3,0,1],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[1,4,0,1],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[1,3,0,1],[0,3,2,1]],[[1,1,2,0],[2,3,2,2],[1,3,0,1],[0,2,3,1]],[[1,1,2,0],[2,3,2,2],[1,3,0,1],[0,2,2,2]],[[2,1,2,0],[2,3,2,2],[1,3,0,1],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[1,3,0,1],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[1,3,0,1],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[1,4,0,1],[1,1,2,1]],[[2,1,2,0],[2,3,2,2],[1,3,0,2],[0,1,2,1]],[[1,1,2,0],[3,3,2,2],[1,3,0,2],[0,1,2,1]],[[1,1,2,0],[2,4,2,2],[1,3,0,2],[0,1,2,1]],[[1,1,2,0],[2,3,2,2],[1,4,0,2],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[1,3,0,2],[0,2,1,1]],[[1,1,2,0],[3,3,2,2],[1,3,0,2],[0,2,1,1]],[[1,1,2,0],[2,4,2,2],[1,3,0,2],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[1,4,0,2],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[1,3,0,2],[0,3,1,1]],[[2,1,2,0],[2,3,2,2],[1,3,0,2],[0,2,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,0,2],[0,2,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,0,2],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[1,4,0,2],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[1,3,0,2],[0,3,2,0]],[[1,1,2,0],[2,3,2,2],[1,3,0,2],[0,2,3,0]],[[2,1,2,0],[2,3,2,2],[1,3,0,2],[1,0,2,1]],[[1,1,2,0],[3,3,2,2],[1,3,0,2],[1,0,2,1]],[[1,1,2,0],[2,4,2,2],[1,3,0,2],[1,0,2,1]],[[1,1,2,0],[2,3,2,2],[1,4,0,2],[1,0,2,1]],[[2,1,2,0],[2,3,2,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[1,4,0,2],[1,1,1,1]],[[2,1,2,0],[2,3,2,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[1,4,0,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[2,0,4,0],[1,2,1,1]],[[1,2,0,1],[1,3,3,3],[2,0,3,0],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[2,0,3,0],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[2,0,3,0],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[2,0,3,0],[1,1,2,2]],[[1,2,0,1],[1,3,3,2],[2,0,3,0],[1,1,3,1]],[[2,1,2,0],[2,3,2,2],[1,3,1,0],[0,2,2,1]],[[1,1,2,0],[3,3,2,2],[1,3,1,0],[0,2,2,1]],[[1,1,2,0],[2,4,2,2],[1,3,1,0],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[1,4,1,0],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[1,3,1,0],[0,3,2,1]],[[1,1,2,0],[2,3,2,2],[1,3,1,0],[0,2,3,1]],[[1,1,2,0],[2,3,2,2],[1,3,1,0],[0,2,2,2]],[[2,1,2,0],[2,3,2,2],[1,3,1,0],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[1,3,1,0],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[1,3,1,0],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[1,4,1,0],[1,1,2,1]],[[2,1,2,0],[2,3,2,2],[1,3,1,1],[0,2,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,1,1],[0,2,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,1,1],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[1,4,1,1],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[1,3,1,1],[0,3,2,0]],[[1,1,2,0],[2,3,2,2],[1,3,1,1],[0,2,3,0]],[[2,1,2,0],[2,3,2,2],[1,3,1,1],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,1,1],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,1,1],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[1,4,1,1],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[2,0,4,0],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[2,0,3,0],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[2,0,3,0],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[2,0,3,0],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,0,1],[1,3,3,2],[2,0,3,0],[0,2,2,2]],[[2,1,2,0],[2,3,2,2],[1,3,1,2],[0,1,1,1]],[[1,1,2,0],[3,3,2,2],[1,3,1,2],[0,1,1,1]],[[1,1,2,0],[2,4,2,2],[1,3,1,2],[0,1,1,1]],[[1,1,2,0],[2,3,2,2],[1,4,1,2],[0,1,1,1]],[[2,1,2,0],[2,3,2,2],[1,3,1,2],[0,1,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,1,2],[0,1,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,1,2],[0,1,2,0]],[[1,1,2,0],[2,3,2,2],[1,4,1,2],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[1,3,1,2],[0,2,0,1]],[[1,1,2,0],[3,3,2,2],[1,3,1,2],[0,2,0,1]],[[1,1,2,0],[2,4,2,2],[1,3,1,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[1,4,1,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[1,3,1,2],[0,3,0,1]],[[2,1,2,0],[2,3,2,2],[1,3,1,2],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[1,3,1,2],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[1,3,1,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[1,4,1,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[1,3,1,2],[0,3,1,0]],[[1,2,0,1],[1,3,3,2],[2,0,3,0],[0,2,3,1]],[[1,2,0,1],[1,3,3,2],[2,0,3,0],[0,3,2,1]],[[1,2,0,1],[1,3,3,2],[2,0,4,0],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[2,0,3,0],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[2,0,3,0],[0,2,2,1]],[[1,2,0,1],[1,4,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,3,0,1],[1,3,3,2],[2,0,3,0],[0,2,2,1]],[[2,2,0,1],[1,3,3,2],[2,0,3,0],[0,2,2,1]],[[2,1,2,0],[2,3,2,2],[1,3,1,2],[1,0,1,1]],[[1,1,2,0],[3,3,2,2],[1,3,1,2],[1,0,1,1]],[[1,1,2,0],[2,4,2,2],[1,3,1,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[1,4,1,2],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[1,3,1,2],[1,0,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,1,2],[1,0,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,1,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[1,4,1,2],[1,0,2,0]],[[2,1,2,0],[2,3,2,2],[1,3,1,2],[1,1,0,1]],[[1,1,2,0],[3,3,2,2],[1,3,1,2],[1,1,0,1]],[[1,1,2,0],[2,4,2,2],[1,3,1,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[1,4,1,2],[1,1,0,1]],[[2,1,2,0],[2,3,2,2],[1,3,1,2],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[1,3,1,2],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[1,3,1,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[1,4,1,2],[1,1,1,0]],[[2,1,2,0],[2,3,2,2],[1,3,1,2],[1,2,0,0]],[[1,1,2,0],[3,3,2,2],[1,3,1,2],[1,2,0,0]],[[1,1,2,0],[2,4,2,2],[1,3,1,2],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[1,4,1,2],[1,2,0,0]],[[1,2,0,1],[1,3,3,2],[2,0,2,3],[1,2,1,0]],[[1,2,0,1],[1,3,3,3],[2,0,2,2],[1,2,1,0]],[[1,2,0,1],[1,3,4,2],[2,0,2,2],[1,2,1,0]],[[1,2,0,1],[1,4,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,0,2],[1,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,3,0,1],[1,3,3,2],[2,0,2,2],[1,2,1,0]],[[2,2,0,1],[1,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,0,1],[1,3,3,2],[2,0,2,2],[1,2,0,2]],[[1,2,0,1],[1,3,3,2],[2,0,2,3],[1,2,0,1]],[[1,2,0,1],[1,3,3,3],[2,0,2,2],[1,2,0,1]],[[1,2,0,1],[1,3,4,2],[2,0,2,2],[1,2,0,1]],[[1,2,0,1],[1,4,3,2],[2,0,2,2],[1,2,0,1]],[[2,1,2,0],[2,3,2,2],[1,3,2,0],[0,1,2,1]],[[1,1,2,0],[3,3,2,2],[1,3,2,0],[0,1,2,1]],[[1,1,2,0],[2,4,2,2],[1,3,2,0],[0,1,2,1]],[[1,1,2,0],[2,3,2,2],[1,4,2,0],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[1,3,2,0],[0,2,1,1]],[[1,1,2,0],[3,3,2,2],[1,3,2,0],[0,2,1,1]],[[1,1,2,0],[2,4,2,2],[1,3,2,0],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[1,4,2,0],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[1,3,2,0],[0,3,1,1]],[[2,1,2,0],[2,3,2,2],[1,3,2,0],[1,0,2,1]],[[1,1,2,0],[3,3,2,2],[1,3,2,0],[1,0,2,1]],[[1,1,2,0],[2,4,2,2],[1,3,2,0],[1,0,2,1]],[[1,1,2,0],[2,3,2,2],[1,4,2,0],[1,0,2,1]],[[2,1,2,0],[2,3,2,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[1,4,2,0],[1,1,1,1]],[[2,1,2,0],[2,3,2,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,0],[3,3,2,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,0],[2,4,2,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[1,4,2,0],[1,2,0,1]],[[1,2,0,2],[1,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,3,0,1],[1,3,3,2],[2,0,2,2],[1,2,0,1]],[[2,2,0,1],[1,3,3,2],[2,0,2,2],[1,2,0,1]],[[2,1,2,0],[2,3,2,2],[1,3,2,1],[0,1,1,1]],[[1,1,2,0],[3,3,2,2],[1,3,2,1],[0,1,1,1]],[[1,1,2,0],[2,4,2,2],[1,3,2,1],[0,1,1,1]],[[1,1,2,0],[2,3,2,2],[1,4,2,1],[0,1,1,1]],[[2,1,2,0],[2,3,2,2],[1,3,2,1],[0,1,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,2,1],[0,1,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,2,1],[0,1,2,0]],[[1,1,2,0],[2,3,2,2],[1,4,2,1],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[1,3,2,1],[0,2,0,1]],[[1,1,2,0],[3,3,2,2],[1,3,2,1],[0,2,0,1]],[[1,1,2,0],[2,4,2,2],[1,3,2,1],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[1,4,2,1],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[1,3,2,1],[0,3,0,1]],[[2,1,2,0],[2,3,2,2],[1,3,2,1],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[1,3,2,1],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[1,3,2,1],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[1,4,2,1],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[1,3,2,1],[0,3,1,0]],[[1,2,0,1],[1,3,3,2],[2,0,2,3],[1,1,2,0]],[[1,2,0,1],[1,3,3,3],[2,0,2,2],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[2,0,2,2],[1,1,2,0]],[[2,1,2,0],[2,3,2,2],[1,3,2,1],[1,0,1,1]],[[1,1,2,0],[3,3,2,2],[1,3,2,1],[1,0,1,1]],[[1,1,2,0],[2,4,2,2],[1,3,2,1],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[1,4,2,1],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[1,3,2,1],[1,0,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,2,1],[1,0,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,2,1],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[1,4,2,1],[1,0,2,0]],[[2,1,2,0],[2,3,2,2],[1,3,2,1],[1,1,0,1]],[[1,1,2,0],[3,3,2,2],[1,3,2,1],[1,1,0,1]],[[1,1,2,0],[2,4,2,2],[1,3,2,1],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[1,4,2,1],[1,1,0,1]],[[2,1,2,0],[2,3,2,2],[1,3,2,1],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[1,3,2,1],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[1,3,2,1],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[1,4,2,1],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,0,2],[1,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[2,0,2,2],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[2,0,2,2],[1,1,2,0]],[[2,1,2,0],[2,3,2,2],[1,3,2,1],[1,2,0,0]],[[1,1,2,0],[3,3,2,2],[1,3,2,1],[1,2,0,0]],[[1,1,2,0],[2,4,2,2],[1,3,2,1],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[1,4,2,1],[1,2,0,0]],[[1,2,0,1],[1,3,3,2],[2,0,2,2],[1,1,1,2]],[[1,2,0,1],[1,3,3,2],[2,0,2,3],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[2,0,2,2],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[2,0,2,2],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[2,0,2,2],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[2,0,2,3],[0,2,2,0]],[[1,2,0,1],[1,3,3,3],[2,0,2,2],[0,2,2,0]],[[1,2,0,1],[1,3,4,2],[2,0,2,2],[0,2,2,0]],[[2,1,2,0],[2,3,2,2],[1,3,2,2],[0,0,1,1]],[[1,1,2,0],[3,3,2,2],[1,3,2,2],[0,0,1,1]],[[1,1,2,0],[2,4,2,2],[1,3,2,2],[0,0,1,1]],[[2,1,2,0],[2,3,2,2],[1,3,2,2],[0,0,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,2,2],[0,0,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,2,2],[0,0,2,0]],[[1,2,0,1],[1,4,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,0,2],[1,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,3,0,1],[1,3,3,2],[2,0,2,2],[0,2,2,0]],[[2,2,0,1],[1,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,2],[2,0,2,2],[0,2,1,2]],[[1,2,0,1],[1,3,3,2],[2,0,2,3],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[2,0,2,2],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[2,0,2,2],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[2,0,2,2],[0,2,1,1]],[[2,2,0,1],[1,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[2,0,2,1],[1,2,2,0]],[[1,2,0,1],[1,3,4,2],[2,0,2,1],[1,2,2,0]],[[1,2,0,1],[1,4,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,0,2],[1,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,3,0,1],[1,3,3,2],[2,0,2,1],[1,2,2,0]],[[2,2,0,1],[1,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[2,0,2,0],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[2,0,2,0],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[2,0,2,0],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,0,1],[1,3,3,2],[2,0,1,3],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[2,0,1,2],[1,2,2,0]],[[1,2,0,1],[1,3,4,2],[2,0,1,2],[1,2,2,0]],[[1,2,0,1],[1,4,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,0,2],[1,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,3,0,1],[1,3,3,2],[2,0,1,2],[1,2,2,0]],[[2,2,0,1],[1,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,2],[2,0,1,2],[1,2,1,2]],[[1,2,0,1],[1,3,3,2],[2,0,1,3],[1,2,1,1]],[[1,2,0,1],[1,3,3,3],[2,0,1,2],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[2,0,1,2],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[2,0,1,2],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[2,0,1,2],[1,1,2,2]],[[1,2,0,1],[1,3,3,2],[2,0,1,2],[1,1,3,1]],[[1,2,0,1],[1,3,3,2],[2,0,1,3],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[2,0,1,2],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[2,0,1,2],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[2,0,1,2],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,0,1],[1,3,3,2],[2,0,1,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,2],[2,0,1,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,2],[2,0,1,2],[0,3,2,1]],[[1,2,0,1],[1,3,3,2],[2,0,1,3],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[2,0,1,2],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[2,0,1,2],[0,2,2,1]],[[1,2,0,1],[1,4,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,3,0,1],[1,3,3,2],[2,0,1,2],[0,2,2,1]],[[2,2,0,1],[1,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[2,0,1,1],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[2,0,1,1],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[2,0,1,1],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[2,0,1,1],[1,2,2,1]],[[2,1,2,0],[2,3,2,2],[1,3,3,0],[0,0,2,1]],[[1,1,2,0],[3,3,2,2],[1,3,3,0],[0,0,2,1]],[[1,1,2,0],[2,4,2,2],[1,3,3,0],[0,0,2,1]],[[2,1,2,0],[2,3,2,2],[1,3,3,0],[0,1,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,3,0],[0,1,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,3,0],[0,1,2,0]],[[1,1,2,0],[2,3,2,2],[1,4,3,0],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[1,3,3,0],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[1,3,3,0],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[1,3,3,0],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[1,4,3,0],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[1,3,3,0],[0,3,1,0]],[[2,1,2,0],[2,3,2,2],[1,3,3,0],[1,0,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,3,0],[1,0,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,3,0],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[1,4,3,0],[1,0,2,0]],[[2,1,2,0],[2,3,2,2],[1,3,3,0],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[1,3,3,0],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[1,3,3,0],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[1,4,3,0],[1,1,1,0]],[[2,1,2,0],[2,3,2,2],[1,3,3,0],[1,2,0,0]],[[1,1,2,0],[3,3,2,2],[1,3,3,0],[1,2,0,0]],[[1,1,2,0],[2,4,2,2],[1,3,3,0],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[1,4,3,0],[1,2,0,0]],[[2,1,2,0],[2,3,2,2],[1,3,3,1],[0,0,1,1]],[[1,1,2,0],[3,3,2,2],[1,3,3,1],[0,0,1,1]],[[1,1,2,0],[2,4,2,2],[1,3,3,1],[0,0,1,1]],[[2,1,2,0],[2,3,2,2],[1,3,3,1],[0,0,2,0]],[[1,1,2,0],[3,3,2,2],[1,3,3,1],[0,0,2,0]],[[1,1,2,0],[2,4,2,2],[1,3,3,1],[0,0,2,0]],[[1,2,0,1],[1,3,3,2],[1,3,3,3],[0,0,0,1]],[[1,2,0,1],[1,3,3,3],[1,3,3,2],[0,0,0,1]],[[1,2,0,1],[1,3,4,2],[1,3,3,2],[0,0,0,1]],[[1,2,0,1],[1,4,3,2],[1,3,3,2],[0,0,0,1]],[[2,1,2,0],[2,3,2,2],[1,3,3,1],[0,2,0,0]],[[1,1,2,0],[3,3,2,2],[1,3,3,1],[0,2,0,0]],[[1,1,2,0],[2,4,2,2],[1,3,3,1],[0,2,0,0]],[[1,1,2,0],[2,3,2,2],[1,4,3,1],[0,2,0,0]],[[1,2,0,2],[1,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,3,0,1],[1,3,3,2],[1,3,3,2],[0,0,0,1]],[[2,2,0,1],[1,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,0,1],[1,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,0,1],[1,3,3,3],[1,3,3,1],[1,1,0,0]],[[2,1,2,0],[2,3,2,2],[1,3,3,1],[1,1,0,0]],[[1,1,2,0],[3,3,2,2],[1,3,3,1],[1,1,0,0]],[[1,1,2,0],[2,4,2,2],[1,3,3,1],[1,1,0,0]],[[1,1,2,0],[2,3,2,2],[1,4,3,1],[1,1,0,0]],[[1,2,0,1],[1,3,4,2],[1,3,3,1],[1,1,0,0]],[[1,2,0,1],[1,4,3,2],[1,3,3,1],[1,1,0,0]],[[1,2,0,2],[1,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,3,0,1],[1,3,3,2],[1,3,3,1],[1,1,0,0]],[[2,2,0,1],[1,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,2,0,1],[1,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,2,0,1],[1,3,3,3],[1,3,3,1],[0,2,0,0]],[[1,2,0,1],[1,3,4,2],[1,3,3,1],[0,2,0,0]],[[1,2,0,1],[1,4,3,2],[1,3,3,1],[0,2,0,0]],[[1,2,0,2],[1,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,3,0,1],[1,3,3,2],[1,3,3,1],[0,2,0,0]],[[2,2,0,1],[1,3,3,2],[1,3,3,1],[0,2,0,0]],[[2,1,2,0],[2,3,2,2],[1,3,3,2],[0,0,0,1]],[[1,1,2,0],[3,3,2,2],[1,3,3,2],[0,0,0,1]],[[1,1,2,0],[2,4,2,2],[1,3,3,2],[0,0,0,1]],[[1,2,0,1],[1,3,3,2],[1,3,4,1],[0,0,2,0]],[[1,2,0,1],[1,3,3,3],[1,3,3,1],[0,0,2,0]],[[1,2,0,1],[1,3,4,2],[1,3,3,1],[0,0,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,0,2],[1,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,3,1],[0,0,2,0]],[[2,2,0,1],[1,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,0,1],[1,3,3,2],[1,3,4,1],[0,0,1,1]],[[1,2,0,1],[1,3,3,3],[1,3,3,1],[0,0,1,1]],[[1,2,0,1],[1,3,4,2],[1,3,3,1],[0,0,1,1]],[[1,2,0,1],[1,4,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,0,2],[1,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,3,0,1],[1,3,3,2],[1,3,3,1],[0,0,1,1]],[[2,2,0,1],[1,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,0,1],[1,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,0,1],[1,3,4,2],[1,3,3,0],[1,2,0,0]],[[1,2,0,1],[1,4,3,2],[1,3,3,0],[1,2,0,0]],[[1,3,0,1],[1,3,3,2],[1,3,3,0],[1,2,0,0]],[[2,2,0,1],[1,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,2,0,1],[1,3,3,2],[1,4,3,0],[1,1,1,0]],[[1,2,0,1],[1,3,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[1,3,3,0],[1,1,1,0]],[[1,3,0,1],[1,3,3,2],[1,3,3,0],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,0,1],[1,3,3,2],[1,4,3,0],[1,0,2,0]],[[1,2,0,1],[1,3,4,2],[1,3,3,0],[1,0,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,3,0],[1,0,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,3,0],[1,0,2,0]],[[2,2,0,1],[1,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[1,3,3,0],[0,3,1,0]],[[1,2,0,1],[1,3,3,2],[1,4,3,0],[0,2,1,0]],[[1,2,0,1],[1,3,4,2],[1,3,3,0],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[1,3,3,0],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[1,3,3,0],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[1,4,3,0],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[1,3,3,0],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,3,0],[0,1,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,3,0],[0,1,2,0]],[[2,2,0,1],[1,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[1,3,4,0],[0,0,2,1]],[[1,2,0,1],[1,3,3,3],[1,3,3,0],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[1,3,3,0],[0,0,2,1]],[[1,2,0,1],[1,4,3,2],[1,3,3,0],[0,0,2,1]],[[1,2,0,2],[1,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,3,0,1],[1,3,3,2],[1,3,3,0],[0,0,2,1]],[[2,2,0,1],[1,3,3,2],[1,3,3,0],[0,0,2,1]],[[2,1,2,0],[2,3,2,2],[2,0,1,1],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[2,0,1,1],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[2,0,1,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[3,0,1,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[2,0,1,1],[2,2,2,1]],[[1,1,2,0],[2,3,2,2],[2,0,1,1],[1,3,2,1]],[[1,1,2,0],[2,3,2,2],[2,0,1,1],[1,2,3,1]],[[1,1,2,0],[2,3,2,2],[2,0,1,1],[1,2,2,2]],[[2,1,2,0],[2,3,2,2],[2,0,1,2],[0,2,2,1]],[[1,1,2,0],[3,3,2,2],[2,0,1,2],[0,2,2,1]],[[1,1,2,0],[2,4,2,2],[2,0,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[3,0,1,2],[0,2,2,1]],[[2,1,2,0],[2,3,2,2],[2,0,1,2],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[2,0,1,2],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[2,0,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[3,0,1,2],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[2,0,1,2],[2,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[3,0,1,2],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[2,0,1,2],[2,2,1,1]],[[1,1,2,0],[2,3,2,2],[2,0,1,2],[1,3,1,1]],[[2,1,2,0],[2,3,2,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[3,0,1,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[2,0,1,2],[2,2,2,0]],[[1,1,2,0],[2,3,2,2],[2,0,1,2],[1,3,2,0]],[[1,1,2,0],[2,3,2,2],[2,0,1,2],[1,2,3,0]],[[2,1,2,0],[2,3,2,2],[2,0,2,0],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[2,0,2,0],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[2,0,2,0],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[3,0,2,0],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[2,0,2,0],[2,2,2,1]],[[1,1,2,0],[2,3,2,2],[2,0,2,0],[1,3,2,1]],[[1,1,2,0],[2,3,2,2],[2,0,2,0],[1,2,3,1]],[[1,1,2,0],[2,3,2,2],[2,0,2,0],[1,2,2,2]],[[2,1,2,0],[2,3,2,2],[2,0,2,1],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[2,0,2,1],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[2,0,2,1],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[3,0,2,1],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[2,0,2,1],[2,2,2,0]],[[1,1,2,0],[2,3,2,2],[2,0,2,1],[1,3,2,0]],[[1,1,2,0],[2,3,2,2],[2,0,2,1],[1,2,3,0]],[[2,1,2,0],[2,3,2,2],[2,0,2,2],[0,2,1,1]],[[1,1,2,0],[3,3,2,2],[2,0,2,2],[0,2,1,1]],[[1,1,2,0],[2,4,2,2],[2,0,2,2],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[3,0,2,2],[0,2,1,1]],[[2,1,2,0],[2,3,2,2],[2,0,2,2],[0,2,2,0]],[[1,1,2,0],[3,3,2,2],[2,0,2,2],[0,2,2,0]],[[1,1,2,0],[2,4,2,2],[2,0,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[3,0,2,2],[0,2,2,0]],[[2,1,2,0],[2,3,2,2],[2,0,2,2],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[2,0,2,2],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[2,0,2,2],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[3,0,2,2],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[2,0,2,2],[2,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,0,2,2],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[2,0,2,2],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[2,0,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[3,0,2,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[2,0,2,2],[2,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,0,2,2],[1,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,0,2,2],[1,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,0,2,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,0,2,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[2,0,2,2],[2,2,0,1]],[[1,1,2,0],[2,3,2,2],[2,0,2,2],[1,3,0,1]],[[2,1,2,0],[2,3,2,2],[2,0,2,2],[1,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,0,2,2],[1,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,0,2,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,0,2,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[2,0,2,2],[2,2,1,0]],[[1,1,2,0],[2,3,2,2],[2,0,2,2],[1,3,1,0]],[[2,1,2,0],[2,3,2,2],[2,0,3,0],[0,2,2,1]],[[1,1,2,0],[3,3,2,2],[2,0,3,0],[0,2,2,1]],[[1,1,2,0],[2,4,2,2],[2,0,3,0],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[3,0,3,0],[0,2,2,1]],[[2,1,2,0],[2,3,2,2],[2,0,3,0],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[2,0,3,0],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[2,0,3,0],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[3,0,3,0],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[2,0,3,0],[2,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[3,0,3,0],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[2,0,3,0],[2,2,1,1]],[[1,1,2,0],[2,3,2,2],[2,0,3,0],[1,3,1,1]],[[2,1,2,0],[2,3,2,2],[2,0,3,1],[0,2,1,1]],[[1,1,2,0],[3,3,2,2],[2,0,3,1],[0,2,1,1]],[[1,1,2,0],[2,4,2,2],[2,0,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[3,0,3,1],[0,2,1,1]],[[2,1,2,0],[2,3,2,2],[2,0,3,1],[0,2,2,0]],[[1,1,2,0],[3,3,2,2],[2,0,3,1],[0,2,2,0]],[[1,1,2,0],[2,4,2,2],[2,0,3,1],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[3,0,3,1],[0,2,2,0]],[[2,1,2,0],[2,3,2,2],[2,0,3,1],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[2,0,3,1],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[2,0,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[3,0,3,1],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[2,0,3,1],[2,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,0,3,1],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[2,0,3,1],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[2,0,3,1],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[3,0,3,1],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[2,0,3,1],[2,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,0,3,1],[1,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,0,3,1],[1,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,0,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,0,3,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[2,0,3,1],[2,2,0,1]],[[1,1,2,0],[2,3,2,2],[2,0,3,1],[1,3,0,1]],[[2,1,2,0],[2,3,2,2],[2,0,3,1],[1,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,0,3,1],[1,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,0,3,1],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,0,3,1],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[2,0,3,1],[2,2,1,0]],[[1,1,2,0],[2,3,2,2],[2,0,3,1],[1,3,1,0]],[[1,2,0,1],[1,3,3,2],[1,3,2,3],[0,0,2,0]],[[1,2,0,1],[1,3,3,3],[1,3,2,2],[0,0,2,0]],[[1,2,0,1],[1,3,4,2],[1,3,2,2],[0,0,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,0,2],[1,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,2,2],[0,0,2,0]],[[2,2,0,1],[1,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,0,1],[1,3,3,2],[1,3,2,2],[0,0,1,2]],[[1,2,0,1],[1,3,3,2],[1,3,2,3],[0,0,1,1]],[[1,2,0,1],[1,3,3,3],[1,3,2,2],[0,0,1,1]],[[1,2,0,1],[1,3,4,2],[1,3,2,2],[0,0,1,1]],[[1,2,0,1],[1,4,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,0,2],[1,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,3,0,1],[1,3,3,2],[1,3,2,2],[0,0,1,1]],[[2,2,0,1],[1,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,0,1],[1,3,3,2],[1,4,2,1],[1,2,0,0]],[[1,2,0,1],[1,3,3,3],[1,3,2,1],[1,2,0,0]],[[1,2,0,1],[1,3,4,2],[1,3,2,1],[1,2,0,0]],[[1,2,0,1],[1,4,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,0,2],[1,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,3,0,1],[1,3,3,2],[1,3,2,1],[1,2,0,0]],[[2,2,0,1],[1,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,0,1],[1,3,3,2],[1,4,2,1],[1,1,1,0]],[[1,2,0,1],[1,3,3,3],[1,3,2,1],[1,1,1,0]],[[1,2,0,1],[1,3,4,2],[1,3,2,1],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,0,2],[1,3,3,2],[1,3,2,1],[1,1,1,0]],[[2,1,2,0],[2,3,2,2],[2,1,0,1],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[2,1,0,1],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[2,1,0,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[3,1,0,1],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[2,1,0,1],[2,2,2,1]],[[1,1,2,0],[2,3,2,2],[2,1,0,1],[1,3,2,1]],[[1,1,2,0],[2,3,2,2],[2,1,0,1],[1,2,3,1]],[[1,1,2,0],[2,3,2,2],[2,1,0,1],[1,2,2,2]],[[2,1,2,0],[2,3,2,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,0],[3,3,2,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,0],[2,4,2,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[3,1,0,2],[0,2,2,1]],[[2,1,2,0],[2,3,2,2],[2,1,0,2],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[2,1,0,2],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[2,1,0,2],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[3,1,0,2],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[2,1,0,2],[2,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,1,0,2],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[2,1,0,2],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[2,1,0,2],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[3,1,0,2],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[2,1,0,2],[2,2,1,1]],[[1,1,2,0],[2,3,2,2],[2,1,0,2],[1,3,1,1]],[[2,1,2,0],[2,3,2,2],[2,1,0,2],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[2,1,0,2],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[2,1,0,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[3,1,0,2],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[2,1,0,2],[2,2,2,0]],[[1,1,2,0],[2,3,2,2],[2,1,0,2],[1,3,2,0]],[[1,1,2,0],[2,3,2,2],[2,1,0,2],[1,2,3,0]],[[2,1,2,0],[2,3,2,2],[2,1,1,0],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[2,1,1,0],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[2,1,1,0],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[3,1,1,0],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[2,1,1,0],[2,2,2,1]],[[1,1,2,0],[2,3,2,2],[2,1,1,0],[1,3,2,1]],[[1,1,2,0],[2,3,2,2],[2,1,1,0],[1,2,3,1]],[[1,1,2,0],[2,3,2,2],[2,1,1,0],[1,2,2,2]],[[2,1,2,0],[2,3,2,2],[2,1,1,1],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[2,1,1,1],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[2,1,1,1],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[3,1,1,1],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[2,1,1,1],[2,2,2,0]],[[1,1,2,0],[2,3,2,2],[2,1,1,1],[1,3,2,0]],[[1,1,2,0],[2,3,2,2],[2,1,1,1],[1,2,3,0]],[[2,1,2,0],[2,3,2,2],[2,1,1,2],[0,1,2,1]],[[1,1,2,0],[3,3,2,2],[2,1,1,2],[0,1,2,1]],[[1,1,2,0],[2,4,2,2],[2,1,1,2],[0,1,2,1]],[[1,1,2,0],[2,3,2,2],[3,1,1,2],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,1,1,2],[1,0,2,1]],[[1,1,2,0],[3,3,2,2],[2,1,1,2],[1,0,2,1]],[[1,1,2,0],[2,4,2,2],[2,1,1,2],[1,0,2,1]],[[1,1,2,0],[2,3,2,2],[3,1,1,2],[1,0,2,1]],[[1,1,2,0],[2,3,2,2],[2,1,1,2],[2,0,2,1]],[[2,1,2,0],[2,3,2,2],[2,1,1,2],[1,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,1,1,2],[1,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,1,1,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,1,1,2],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[2,1,1,2],[2,2,0,1]],[[1,1,2,0],[2,3,2,2],[2,1,1,2],[1,3,0,1]],[[2,1,2,0],[2,3,2,2],[2,1,1,2],[1,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,1,1,2],[1,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,1,1,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,1,1,2],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[2,1,1,2],[2,2,1,0]],[[1,1,2,0],[2,3,2,2],[2,1,1,2],[1,3,1,0]],[[1,3,0,1],[1,3,3,2],[1,3,2,1],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,0,1],[1,3,3,2],[1,4,2,1],[1,1,0,1]],[[1,2,0,1],[1,3,3,3],[1,3,2,1],[1,1,0,1]],[[1,2,0,1],[1,3,4,2],[1,3,2,1],[1,1,0,1]],[[1,2,0,1],[1,4,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,0,2],[1,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,3,0,1],[1,3,3,2],[1,3,2,1],[1,1,0,1]],[[2,2,0,1],[1,3,3,2],[1,3,2,1],[1,1,0,1]],[[2,1,2,0],[2,3,2,2],[2,1,2,0],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[2,1,2,0],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[2,1,2,0],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[3,1,2,0],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[2,1,2,0],[2,2,1,1]],[[1,1,2,0],[2,3,2,2],[2,1,2,0],[1,3,1,1]],[[2,1,2,0],[2,3,2,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,1,2,1],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[2,1,2,1],[2,2,0,1]],[[1,1,2,0],[2,3,2,2],[2,1,2,1],[1,3,0,1]],[[2,1,2,0],[2,3,2,2],[2,1,2,1],[1,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,1,2,1],[1,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,1,2,1],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,1,2,1],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[2,1,2,1],[2,2,1,0]],[[1,1,2,0],[2,3,2,2],[2,1,2,1],[1,3,1,0]],[[1,2,0,1],[1,3,3,2],[1,4,2,1],[1,0,2,0]],[[1,2,0,1],[1,3,3,3],[1,3,2,1],[1,0,2,0]],[[2,1,2,0],[2,3,2,2],[2,1,2,2],[0,0,2,1]],[[1,1,2,0],[3,3,2,2],[2,1,2,2],[0,0,2,1]],[[1,1,2,0],[2,4,2,2],[2,1,2,2],[0,0,2,1]],[[2,1,2,0],[2,3,2,2],[2,1,2,2],[0,1,1,1]],[[1,1,2,0],[3,3,2,2],[2,1,2,2],[0,1,1,1]],[[1,1,2,0],[2,4,2,2],[2,1,2,2],[0,1,1,1]],[[1,1,2,0],[2,3,2,2],[3,1,2,2],[0,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,1,2,2],[0,1,2,0]],[[1,1,2,0],[3,3,2,2],[2,1,2,2],[0,1,2,0]],[[1,1,2,0],[2,4,2,2],[2,1,2,2],[0,1,2,0]],[[1,1,2,0],[2,3,2,2],[3,1,2,2],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,1,2,2],[0,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,1,2,2],[0,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,1,2,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,1,2,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,2],[2,1,2,2],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,1,2,2],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,1,2,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,1,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,4,2],[1,3,2,1],[1,0,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,0,2],[1,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,2,1],[1,0,2,0]],[[2,2,0,1],[1,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[1,4,2,1],[1,0,1,1]],[[1,2,0,1],[1,3,3,3],[1,3,2,1],[1,0,1,1]],[[1,2,0,1],[1,3,4,2],[1,3,2,1],[1,0,1,1]],[[1,2,0,1],[1,4,3,2],[1,3,2,1],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[2,1,2,2],[1,0,1,1]],[[1,1,2,0],[3,3,2,2],[2,1,2,2],[1,0,1,1]],[[1,1,2,0],[2,4,2,2],[2,1,2,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[3,1,2,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[2,1,2,2],[2,0,1,1]],[[2,1,2,0],[2,3,2,2],[2,1,2,2],[1,0,2,0]],[[1,1,2,0],[3,3,2,2],[2,1,2,2],[1,0,2,0]],[[1,1,2,0],[2,4,2,2],[2,1,2,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[3,1,2,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[2,1,2,2],[2,0,2,0]],[[2,1,2,0],[2,3,2,2],[2,1,2,2],[1,1,0,1]],[[1,1,2,0],[3,3,2,2],[2,1,2,2],[1,1,0,1]],[[1,1,2,0],[2,4,2,2],[2,1,2,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[3,1,2,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[2,1,2,2],[2,1,0,1]],[[2,1,2,0],[2,3,2,2],[2,1,2,2],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[2,1,2,2],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[2,1,2,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[3,1,2,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[2,1,2,2],[2,1,1,0]],[[1,2,0,2],[1,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,3,0,1],[1,3,3,2],[1,3,2,1],[1,0,1,1]],[[2,2,0,1],[1,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,2,0,1],[1,3,3,2],[1,3,2,1],[0,3,1,0]],[[1,2,0,1],[1,3,3,2],[1,4,2,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,3],[1,3,2,1],[0,2,1,0]],[[1,2,0,1],[1,3,4,2],[1,3,2,1],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[1,3,2,1],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[1,3,2,1],[0,3,0,1]],[[1,2,0,1],[1,3,3,2],[1,4,2,1],[0,2,0,1]],[[1,2,0,1],[1,3,3,3],[1,3,2,1],[0,2,0,1]],[[1,2,0,1],[1,3,4,2],[1,3,2,1],[0,2,0,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,0],[0,1,2,1]],[[1,1,2,0],[3,3,2,2],[2,1,3,0],[0,1,2,1]],[[1,1,2,0],[2,4,2,2],[2,1,3,0],[0,1,2,1]],[[1,1,2,0],[2,3,2,2],[3,1,3,0],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,0],[3,3,2,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,0],[2,4,2,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[3,1,3,0],[0,2,1,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,0],[1,0,2,1]],[[1,1,2,0],[3,3,2,2],[2,1,3,0],[1,0,2,1]],[[1,1,2,0],[2,4,2,2],[2,1,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,2,2],[3,1,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,2,2],[2,1,3,0],[2,0,2,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,0],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[2,1,3,0],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[2,1,3,0],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[3,1,3,0],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[2,1,3,0],[2,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,0],[1,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,1,3,0],[1,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,1,3,0],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,1,3,0],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[2,1,3,0],[2,2,1,0]],[[1,1,2,0],[2,3,2,2],[2,1,3,0],[1,3,1,0]],[[1,2,0,1],[1,4,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,0,2],[1,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,3,0,1],[1,3,3,2],[1,3,2,1],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[1,3,2,1],[0,2,0,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,1],[0,0,2,1]],[[1,1,2,0],[3,3,2,2],[2,1,3,1],[0,0,2,1]],[[1,1,2,0],[2,4,2,2],[2,1,3,1],[0,0,2,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,1],[0,1,1,1]],[[1,1,2,0],[3,3,2,2],[2,1,3,1],[0,1,1,1]],[[1,1,2,0],[2,4,2,2],[2,1,3,1],[0,1,1,1]],[[1,1,2,0],[2,3,2,2],[3,1,3,1],[0,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,1],[0,1,2,0]],[[1,1,2,0],[3,3,2,2],[2,1,3,1],[0,1,2,0]],[[1,1,2,0],[2,4,2,2],[2,1,3,1],[0,1,2,0]],[[1,1,2,0],[2,3,2,2],[3,1,3,1],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,1,3,1],[0,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,1,3,1],[0,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,1,3,1],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,1,3,1],[0,2,0,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,1],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,1,3,1],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,1,3,1],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,1,3,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[1,4,2,1],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[1,3,2,1],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[1,3,2,1],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,2,1],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,1,3,1],[1,0,1,1]],[[1,1,2,0],[3,3,2,2],[2,1,3,1],[1,0,1,1]],[[1,1,2,0],[2,4,2,2],[2,1,3,1],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[3,1,3,1],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[2,1,3,1],[2,0,1,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,1],[1,0,2,0]],[[1,1,2,0],[3,3,2,2],[2,1,3,1],[1,0,2,0]],[[1,1,2,0],[2,4,2,2],[2,1,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[3,1,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[2,1,3,1],[2,0,2,0]],[[2,1,2,0],[2,3,2,2],[2,1,3,1],[1,1,0,1]],[[1,1,2,0],[3,3,2,2],[2,1,3,1],[1,1,0,1]],[[1,1,2,0],[2,4,2,2],[2,1,3,1],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[3,1,3,1],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[2,1,3,1],[2,1,0,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,1],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[2,1,3,1],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[2,1,3,1],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[3,1,3,1],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[2,1,3,1],[2,1,1,0]],[[2,2,0,1],[1,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[1,4,2,1],[0,1,1,1]],[[1,2,0,1],[1,3,3,3],[1,3,2,1],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[1,3,2,1],[0,1,1,1]],[[1,2,0,1],[1,4,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,3,0,1],[1,3,3,2],[1,3,2,1],[0,1,1,1]],[[2,2,0,1],[1,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,2,0,1],[1,3,4,2],[1,3,2,0],[1,2,0,1]],[[1,2,0,1],[1,4,3,2],[1,3,2,0],[1,2,0,1]],[[1,3,0,1],[1,3,3,2],[1,3,2,0],[1,2,0,1]],[[2,2,0,1],[1,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,0,1],[1,3,3,2],[1,4,2,0],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[1,3,2,0],[1,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,2],[0,1,0,1]],[[1,1,2,0],[3,3,2,2],[2,1,3,2],[0,1,0,1]],[[1,1,2,0],[2,4,2,2],[2,1,3,2],[0,1,0,1]],[[1,2,0,1],[1,3,4,2],[1,3,2,0],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[1,3,2,0],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[1,4,2,0],[1,0,2,1]],[[1,2,0,1],[1,3,3,3],[1,3,2,0],[1,0,2,1]],[[1,2,0,1],[1,3,4,2],[1,3,2,0],[1,0,2,1]],[[1,2,0,1],[1,4,3,2],[1,3,2,0],[1,0,2,1]],[[1,2,0,2],[1,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,3,0,1],[1,3,3,2],[1,3,2,0],[1,0,2,1]],[[2,2,0,1],[1,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,2,0,1],[1,3,3,2],[1,3,2,0],[0,3,1,1]],[[1,2,0,1],[1,3,3,2],[1,4,2,0],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[1,3,2,0],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[1,3,2,0],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[1,3,2,0],[0,2,1,1]],[[2,2,0,1],[1,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,0,1],[1,3,3,2],[1,4,2,0],[0,1,2,1]],[[1,2,0,1],[1,3,3,3],[1,3,2,0],[0,1,2,1]],[[1,2,0,1],[1,3,4,2],[1,3,2,0],[0,1,2,1]],[[1,2,0,1],[1,4,3,2],[1,3,2,0],[0,1,2,1]],[[1,2,0,2],[1,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,3,0,1],[1,3,3,2],[1,3,2,0],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,1,3,2],[1,0,0,1]],[[1,1,2,0],[3,3,2,2],[2,1,3,2],[1,0,0,1]],[[1,1,2,0],[2,4,2,2],[2,1,3,2],[1,0,0,1]],[[1,1,2,0],[2,3,2,2],[3,1,3,2],[1,0,0,1]],[[2,2,0,1],[1,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,2,0,1],[1,3,3,2],[1,4,1,2],[1,2,0,0]],[[1,2,0,1],[1,3,3,3],[1,3,1,2],[1,2,0,0]],[[1,2,0,1],[1,3,4,2],[1,3,1,2],[1,2,0,0]],[[1,2,0,1],[1,4,3,2],[1,3,1,2],[1,2,0,0]],[[1,2,0,2],[1,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,3,0,1],[1,3,3,2],[1,3,1,2],[1,2,0,0]],[[2,2,0,1],[1,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,2,0,1],[1,3,3,2],[1,3,1,3],[1,1,1,0]],[[1,2,0,1],[1,3,3,2],[1,4,1,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,3],[1,3,1,2],[1,1,1,0]],[[1,2,0,1],[1,3,4,2],[1,3,1,2],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,0,2],[1,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,3,0,1],[1,3,3,2],[1,3,1,2],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,2],[1,3,1,2],[1,1,0,2]],[[1,2,0,1],[1,3,3,2],[1,3,1,3],[1,1,0,1]],[[1,2,0,1],[1,3,3,2],[1,4,1,2],[1,1,0,1]],[[1,2,0,1],[1,3,3,3],[1,3,1,2],[1,1,0,1]],[[1,2,0,1],[1,3,4,2],[1,3,1,2],[1,1,0,1]],[[1,2,0,1],[1,4,3,2],[1,3,1,2],[1,1,0,1]],[[1,2,0,2],[1,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,3,0,1],[1,3,3,2],[1,3,1,2],[1,1,0,1]],[[2,2,0,1],[1,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,2,0,1],[1,3,3,2],[1,3,1,3],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[1,4,1,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,3],[1,3,1,2],[1,0,2,0]],[[1,2,0,1],[1,3,4,2],[1,3,1,2],[1,0,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,0,2],[1,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,1,2],[1,0,2,0]],[[2,2,0,1],[1,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[1,3,1,2],[1,0,1,2]],[[1,2,0,1],[1,3,3,2],[1,3,1,3],[1,0,1,1]],[[1,2,0,1],[1,3,3,2],[1,4,1,2],[1,0,1,1]],[[1,2,0,1],[1,3,3,3],[1,3,1,2],[1,0,1,1]],[[1,2,0,1],[1,3,4,2],[1,3,1,2],[1,0,1,1]],[[1,2,0,1],[1,4,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,0,2],[1,3,3,2],[1,3,1,2],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,0,0],[1,2,2,1]],[[1,1,2,0],[3,3,2,2],[2,2,0,0],[1,2,2,1]],[[1,1,2,0],[2,4,2,2],[2,2,0,0],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[3,2,0,0],[1,2,2,1]],[[1,1,2,0],[2,3,2,2],[2,2,0,0],[2,2,2,1]],[[1,1,2,0],[2,3,2,2],[2,2,0,0],[1,3,2,1]],[[2,1,2,0],[2,3,2,2],[2,2,0,1],[0,2,2,1]],[[1,1,2,0],[3,3,2,2],[2,2,0,1],[0,2,2,1]],[[1,1,2,0],[2,4,2,2],[2,2,0,1],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[3,2,0,1],[0,2,2,1]],[[2,1,2,0],[2,3,2,2],[2,2,0,1],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[2,2,0,1],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[2,2,0,1],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[3,2,0,1],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[2,2,0,1],[2,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,2,0,1],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[2,2,0,1],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[2,2,0,1],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[3,2,0,1],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[2,2,0,1],[2,2,2,0]],[[1,1,2,0],[2,3,2,2],[2,2,0,1],[1,3,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,0],[3,3,2,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,0],[2,4,2,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,0],[2,3,2,2],[3,2,0,2],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,2,0,2],[0,2,1,1]],[[1,1,2,0],[3,3,2,2],[2,2,0,2],[0,2,1,1]],[[1,1,2,0],[2,4,2,2],[2,2,0,2],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[3,2,0,2],[0,2,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,0,2],[0,2,2,0]],[[1,1,2,0],[3,3,2,2],[2,2,0,2],[0,2,2,0]],[[1,1,2,0],[2,4,2,2],[2,2,0,2],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[3,2,0,2],[0,2,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,0],[3,3,2,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,0],[2,4,2,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,0],[2,3,2,2],[3,2,0,2],[1,0,2,1]],[[1,1,2,0],[2,3,2,2],[2,2,0,2],[2,0,2,1]],[[2,1,2,0],[2,3,2,2],[2,2,0,2],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[2,2,0,2],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[2,2,0,2],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[3,2,0,2],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[2,2,0,2],[2,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,0,2],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[2,2,0,2],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[2,2,0,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[3,2,0,2],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[2,2,0,2],[2,1,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,1,2],[1,0,1,1]],[[2,2,0,1],[1,3,3,2],[1,3,1,2],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,1,0],[0,2,2,1]],[[1,1,2,0],[3,3,2,2],[2,2,1,0],[0,2,2,1]],[[1,1,2,0],[2,4,2,2],[2,2,1,0],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[3,2,1,0],[0,2,2,1]],[[2,1,2,0],[2,3,2,2],[2,2,1,0],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[2,2,1,0],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[2,2,1,0],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[3,2,1,0],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[2,2,1,0],[2,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,2,1,1],[0,2,2,0]],[[1,1,2,0],[3,3,2,2],[2,2,1,1],[0,2,2,0]],[[1,1,2,0],[2,4,2,2],[2,2,1,1],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[3,2,1,1],[0,2,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,1,1],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[2,2,1,1],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[2,2,1,1],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[3,2,1,1],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[2,2,1,1],[2,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,0],[3,3,2,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,0],[2,4,2,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,0],[2,3,2,2],[3,2,1,2],[0,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,0],[3,3,2,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,0],[2,4,2,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,0],[2,3,2,2],[3,2,1,2],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,2,1,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,2,1,2],[0,2,1,0]],[[2,1,2,0],[2,3,2,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,0],[3,3,2,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,0],[2,4,2,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[3,2,1,2],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[2,2,1,2],[2,0,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,0],[3,3,2,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,0],[2,4,2,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[3,2,1,2],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[2,2,1,2],[2,0,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,0],[3,3,2,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,0],[2,4,2,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[3,2,1,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[2,2,1,2],[2,1,0,1]],[[2,1,2,0],[2,3,2,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[3,2,1,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[2,2,1,2],[2,1,1,0]],[[1,2,0,1],[1,3,3,2],[1,3,1,2],[0,3,1,0]],[[1,2,0,1],[1,3,3,2],[1,3,1,3],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[1,4,1,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,3],[1,3,1,2],[0,2,1,0]],[[1,2,0,1],[1,3,4,2],[1,3,1,2],[0,2,1,0]],[[2,1,2,0],[2,3,2,2],[2,2,1,2],[1,2,0,0]],[[1,1,2,0],[3,3,2,2],[2,2,1,2],[1,2,0,0]],[[1,1,2,0],[2,4,2,2],[2,2,1,2],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[3,2,1,2],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[2,2,1,2],[2,2,0,0]],[[1,2,0,1],[1,4,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[1,3,1,2],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[1,3,1,2],[0,2,0,2]],[[1,2,0,1],[1,3,3,2],[1,3,1,2],[0,3,0,1]],[[1,2,0,1],[1,3,3,2],[1,3,1,3],[0,2,0,1]],[[1,2,0,1],[1,3,3,2],[1,4,1,2],[0,2,0,1]],[[1,2,0,1],[1,3,3,3],[1,3,1,2],[0,2,0,1]],[[1,2,0,1],[1,3,4,2],[1,3,1,2],[0,2,0,1]],[[1,2,0,1],[1,4,3,2],[1,3,1,2],[0,2,0,1]],[[1,2,0,2],[1,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,3,0,1],[1,3,3,2],[1,3,1,2],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[1,3,1,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,2],[2,2,2,0],[0,1,2,1]],[[1,1,2,0],[3,3,2,2],[2,2,2,0],[0,1,2,1]],[[1,1,2,0],[2,4,2,2],[2,2,2,0],[0,1,2,1]],[[1,1,2,0],[2,3,2,2],[3,2,2,0],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,2,2,0],[0,2,1,1]],[[1,1,2,0],[3,3,2,2],[2,2,2,0],[0,2,1,1]],[[1,1,2,0],[2,4,2,2],[2,2,2,0],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[3,2,2,0],[0,2,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,2,0],[1,0,2,1]],[[1,1,2,0],[3,3,2,2],[2,2,2,0],[1,0,2,1]],[[1,1,2,0],[2,4,2,2],[2,2,2,0],[1,0,2,1]],[[1,1,2,0],[2,3,2,2],[3,2,2,0],[1,0,2,1]],[[1,1,2,0],[2,3,2,2],[2,2,2,0],[2,0,2,1]],[[2,1,2,0],[2,3,2,2],[2,2,2,0],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[2,2,2,0],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[2,2,2,0],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[3,2,2,0],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[2,2,2,0],[2,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,2,0],[1,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,2,2,0],[1,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,2,2,0],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,2,2,0],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[2,2,2,0],[2,2,0,1]],[[1,2,0,1],[1,3,3,2],[1,3,1,3],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[1,4,1,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[1,3,1,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[1,3,1,2],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,1,2],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,2,1],[0,1,1,1]],[[1,1,2,0],[3,3,2,2],[2,2,2,1],[0,1,1,1]],[[1,1,2,0],[2,4,2,2],[2,2,2,1],[0,1,1,1]],[[1,1,2,0],[2,3,2,2],[3,2,2,1],[0,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,2,1],[0,1,2,0]],[[1,1,2,0],[3,3,2,2],[2,2,2,1],[0,1,2,0]],[[1,1,2,0],[2,4,2,2],[2,2,2,1],[0,1,2,0]],[[1,1,2,0],[2,3,2,2],[3,2,2,1],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,2,1],[0,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,2,2,1],[0,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,2,2,1],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,2,2,1],[0,2,0,1]],[[2,1,2,0],[2,3,2,2],[2,2,2,1],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,2,2,1],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,2,2,1],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,2,2,1],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[1,3,1,2],[0,1,1,2]],[[1,2,0,1],[1,3,3,2],[1,3,1,3],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[1,4,1,2],[0,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,0],[3,3,2,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,0],[2,4,2,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[3,2,2,1],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[2,2,2,1],[2,0,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,2,1],[1,0,2,0]],[[1,1,2,0],[3,3,2,2],[2,2,2,1],[1,0,2,0]],[[1,1,2,0],[2,4,2,2],[2,2,2,1],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[3,2,2,1],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[2,2,2,1],[2,0,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,2,1],[1,1,0,1]],[[1,1,2,0],[3,3,2,2],[2,2,2,1],[1,1,0,1]],[[1,1,2,0],[2,4,2,2],[2,2,2,1],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[3,2,2,1],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[2,2,2,1],[2,1,0,1]],[[2,1,2,0],[2,3,2,2],[2,2,2,1],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[2,2,2,1],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[2,2,2,1],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[3,2,2,1],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[2,2,2,1],[2,1,1,0]],[[1,2,0,1],[1,3,3,3],[1,3,1,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[1,3,1,2],[0,1,1,1]],[[1,2,0,1],[1,4,3,2],[1,3,1,2],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,3,0,1],[1,3,3,2],[1,3,1,2],[0,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,2,1],[1,2,0,0]],[[1,1,2,0],[3,3,2,2],[2,2,2,1],[1,2,0,0]],[[1,1,2,0],[2,4,2,2],[2,2,2,1],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[3,2,2,1],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[2,2,2,1],[2,2,0,0]],[[2,2,0,1],[1,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[1,4,1,1],[1,1,2,0]],[[1,2,0,1],[1,3,3,3],[1,3,1,1],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[1,3,1,1],[1,1,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,1,1],[1,1,2,0]],[[1,2,0,2],[1,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,1,1],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[1,3,1,1],[0,2,3,0]],[[1,2,0,1],[1,3,3,2],[1,3,1,1],[0,3,2,0]],[[1,2,0,1],[1,3,3,2],[1,4,1,1],[0,2,2,0]],[[1,2,0,1],[1,3,3,3],[1,3,1,1],[0,2,2,0]],[[1,2,0,1],[1,3,4,2],[1,3,1,1],[0,2,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,0,2],[1,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,1,1],[0,2,2,0]],[[2,2,0,1],[1,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,0,1],[1,3,3,2],[1,4,1,0],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[1,3,1,0],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[1,3,1,0],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[1,3,1,0],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[1,3,1,0],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,2,0,1],[1,3,3,2],[1,3,1,0],[0,2,2,2]],[[1,2,0,1],[1,3,3,2],[1,3,1,0],[0,2,3,1]],[[1,2,0,1],[1,3,3,2],[1,3,1,0],[0,3,2,1]],[[1,2,0,1],[1,3,3,2],[1,4,1,0],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[1,3,1,0],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[1,3,1,0],[0,2,2,1]],[[1,2,0,1],[1,4,3,2],[1,3,1,0],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,3,0,1],[1,3,3,2],[1,3,1,0],[0,2,2,1]],[[2,2,0,1],[1,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,2,0,1],[1,3,3,2],[1,3,0,3],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[1,4,0,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,3],[1,3,0,2],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[1,3,0,2],[1,1,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,0,2],[1,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,3,0],[0,1,2,0]],[[1,1,2,0],[3,3,2,2],[2,2,3,0],[0,1,2,0]],[[1,1,2,0],[2,4,2,2],[2,2,3,0],[0,1,2,0]],[[1,1,2,0],[2,3,2,2],[3,2,3,0],[0,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,3,0],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,2,3,0],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,2,3,0],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,2,3,0],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[1,3,0,2],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[1,3,0,2],[1,1,1,2]],[[1,2,0,1],[1,3,3,2],[1,3,0,3],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[1,4,0,2],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[1,3,0,2],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[1,3,0,2],[1,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,2,3,0],[1,0,2,0]],[[1,1,2,0],[3,3,2,2],[2,2,3,0],[1,0,2,0]],[[1,1,2,0],[2,4,2,2],[2,2,3,0],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[3,2,3,0],[1,0,2,0]],[[1,1,2,0],[2,3,2,2],[2,2,3,0],[2,0,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,3,0],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[2,2,3,0],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[2,2,3,0],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[3,2,3,0],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[2,2,3,0],[2,1,1,0]],[[1,2,0,1],[1,4,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[1,3,0,2],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[1,3,0,2],[1,0,2,2]],[[2,1,2,0],[2,3,2,2],[2,2,3,0],[1,2,0,0]],[[1,1,2,0],[3,3,2,2],[2,2,3,0],[1,2,0,0]],[[1,1,2,0],[2,4,2,2],[2,2,3,0],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[3,2,3,0],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[2,2,3,0],[2,2,0,0]],[[1,2,0,1],[1,3,3,2],[1,3,0,2],[1,0,3,1]],[[1,2,0,1],[1,3,3,2],[1,3,0,3],[1,0,2,1]],[[1,2,0,1],[1,3,3,2],[1,4,0,2],[1,0,2,1]],[[1,2,0,1],[1,3,3,3],[1,3,0,2],[1,0,2,1]],[[1,2,0,1],[1,3,4,2],[1,3,0,2],[1,0,2,1]],[[1,2,0,1],[1,4,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,0,2],[1,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,3,0,1],[1,3,3,2],[1,3,0,2],[1,0,2,1]],[[2,2,0,1],[1,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,0,1],[1,3,3,2],[1,3,0,2],[0,2,3,0]],[[1,2,0,1],[1,3,3,2],[1,3,0,2],[0,3,2,0]],[[1,2,0,1],[1,3,3,2],[1,3,0,3],[0,2,2,0]],[[1,2,0,1],[1,3,3,2],[1,4,0,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,3],[1,3,0,2],[0,2,2,0]],[[1,2,0,1],[1,3,4,2],[1,3,0,2],[0,2,2,0]],[[1,2,0,1],[1,4,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,0,2],[1,3,3,2],[1,3,0,2],[0,2,2,0]],[[2,1,2,0],[2,3,2,2],[2,2,3,1],[0,2,0,0]],[[1,1,2,0],[3,3,2,2],[2,2,3,1],[0,2,0,0]],[[1,1,2,0],[2,4,2,2],[2,2,3,1],[0,2,0,0]],[[1,1,2,0],[2,3,2,2],[3,2,3,1],[0,2,0,0]],[[1,3,0,1],[1,3,3,2],[1,3,0,2],[0,2,2,0]],[[2,2,0,1],[1,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,2],[1,3,0,2],[0,2,1,2]],[[1,2,0,1],[1,3,3,2],[1,3,0,2],[0,3,1,1]],[[1,2,0,1],[1,3,3,2],[1,3,0,3],[0,2,1,1]],[[1,2,0,1],[1,3,3,2],[1,4,0,2],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[1,3,0,2],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[1,3,0,2],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[1,3,0,2],[0,2,1,1]],[[2,2,0,1],[1,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,0,1],[1,3,3,2],[1,3,0,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,2],[1,3,0,2],[0,1,3,1]],[[1,2,0,1],[1,3,3,2],[1,3,0,3],[0,1,2,1]],[[1,2,0,1],[1,3,3,2],[1,4,0,2],[0,1,2,1]],[[1,2,0,1],[1,3,3,3],[1,3,0,2],[0,1,2,1]],[[1,2,0,1],[1,3,4,2],[1,3,0,2],[0,1,2,1]],[[1,2,0,1],[1,4,3,2],[1,3,0,2],[0,1,2,1]],[[1,2,0,2],[1,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,3,0,1],[1,3,3,2],[1,3,0,2],[0,1,2,1]],[[2,2,0,1],[1,3,3,2],[1,3,0,2],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,2,3,1],[1,1,0,0]],[[1,1,2,0],[3,3,2,2],[2,2,3,1],[1,1,0,0]],[[1,1,2,0],[2,4,2,2],[2,2,3,1],[1,1,0,0]],[[1,1,2,0],[2,3,2,2],[3,2,3,1],[1,1,0,0]],[[1,1,2,0],[2,3,2,2],[2,2,3,1],[2,1,0,0]],[[1,2,0,1],[1,3,3,2],[1,4,0,1],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[1,3,0,1],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[1,3,0,1],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[1,3,0,1],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,0,1],[1,3,3,2],[1,3,0,1],[0,2,2,2]],[[1,2,0,1],[1,3,3,2],[1,3,0,1],[0,2,3,1]],[[1,2,0,1],[1,3,3,2],[1,3,0,1],[0,3,2,1]],[[1,2,0,1],[1,3,3,2],[1,4,0,1],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[1,3,0,1],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[1,3,0,1],[0,2,2,1]],[[1,2,0,1],[1,4,3,2],[1,3,0,1],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,3,0,1],[1,3,3,2],[1,3,0,1],[0,2,2,1]],[[2,2,0,1],[1,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,2,0,1],[1,3,3,2],[1,2,3,3],[1,0,0,1]],[[1,2,0,1],[1,3,3,3],[1,2,3,2],[1,0,0,1]],[[1,2,0,1],[1,3,4,2],[1,2,3,2],[1,0,0,1]],[[1,2,0,1],[1,4,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,0,2],[1,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,3,0,1],[1,3,3,2],[1,2,3,2],[1,0,0,1]],[[2,2,0,1],[1,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,0,1],[1,3,3,2],[1,2,3,3],[0,1,0,1]],[[1,2,0,1],[1,3,3,3],[1,2,3,2],[0,1,0,1]],[[1,2,0,1],[1,3,4,2],[1,2,3,2],[0,1,0,1]],[[1,2,0,1],[1,4,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,0,2],[1,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,3,0,1],[1,3,3,2],[1,2,3,2],[0,1,0,1]],[[2,2,0,1],[1,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,0,1],[1,3,3,2],[1,2,4,1],[1,1,1,0]],[[1,2,0,1],[1,3,3,3],[1,2,3,1],[1,1,1,0]],[[1,2,0,1],[1,3,4,2],[1,2,3,1],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,0,2],[1,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,3,0,1],[1,3,3,2],[1,2,3,1],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,0,1],[1,3,3,2],[1,2,4,1],[1,1,0,1]],[[1,2,0,1],[1,3,3,3],[1,2,3,1],[1,1,0,1]],[[1,2,0,1],[1,3,4,2],[1,2,3,1],[1,1,0,1]],[[1,2,0,1],[1,4,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,0,2],[1,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,3,0,1],[1,3,3,2],[1,2,3,1],[1,1,0,1]],[[2,2,0,1],[1,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,0,1],[1,3,3,2],[1,2,3,1],[1,0,3,0]],[[1,2,0,1],[1,3,3,2],[1,2,4,1],[1,0,2,0]],[[1,2,0,1],[1,3,3,3],[1,2,3,1],[1,0,2,0]],[[1,2,0,1],[1,3,4,2],[1,2,3,1],[1,0,2,0]],[[1,2,0,1],[1,4,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,0,2],[1,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,3,0,1],[1,3,3,2],[1,2,3,1],[1,0,2,0]],[[2,2,0,1],[1,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[1,2,4,1],[1,0,1,1]],[[1,2,0,1],[1,3,3,3],[1,2,3,1],[1,0,1,1]],[[1,2,0,1],[1,3,4,2],[1,2,3,1],[1,0,1,1]],[[1,2,0,1],[1,4,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,0,2],[1,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,3,0,1],[1,3,3,2],[1,2,3,1],[1,0,1,1]],[[2,2,0,1],[1,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,0,1],[1,3,3,2],[1,2,4,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,3],[1,2,3,1],[0,2,1,0]],[[1,2,0,1],[1,3,4,2],[1,2,3,1],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[1,2,3,1],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[1,2,4,1],[0,2,0,1]],[[1,2,0,1],[1,3,3,3],[1,2,3,1],[0,2,0,1]],[[1,2,0,1],[1,3,4,2],[1,2,3,1],[0,2,0,1]],[[1,2,0,1],[1,4,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,0,2],[1,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,3,0,1],[1,3,3,2],[1,2,3,1],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,0,1],[1,3,3,2],[1,2,3,1],[0,1,3,0]],[[1,2,0,1],[1,3,3,2],[1,2,4,1],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[1,2,3,1],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[1,2,3,1],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,3,0,1],[1,3,3,2],[1,2,3,1],[0,1,2,0]],[[2,2,0,1],[1,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[1,2,4,1],[0,1,1,1]],[[1,2,0,1],[1,3,3,3],[1,2,3,1],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[1,2,3,1],[0,1,1,1]],[[1,2,0,1],[1,4,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,3,0,1],[1,3,3,2],[1,2,3,1],[0,1,1,1]],[[2,2,0,1],[1,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[1,2,4,1],[0,0,2,1]],[[1,2,0,1],[1,3,3,3],[1,2,3,1],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[1,2,3,1],[0,0,2,1]],[[1,2,0,1],[1,4,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,0,2],[1,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,3,0,1],[1,3,3,2],[1,2,3,1],[0,0,2,1]],[[2,2,0,1],[1,3,3,2],[1,2,3,1],[0,0,2,1]],[[2,1,2,0],[2,3,2,2],[2,3,0,0],[0,2,2,1]],[[1,1,2,0],[3,3,2,2],[2,3,0,0],[0,2,2,1]],[[1,1,2,0],[2,4,2,2],[2,3,0,0],[0,2,2,1]],[[1,1,2,0],[2,3,2,2],[3,3,0,0],[0,2,2,1]],[[2,1,2,0],[2,3,2,2],[2,3,0,0],[1,1,2,1]],[[1,1,2,0],[3,3,2,2],[2,3,0,0],[1,1,2,1]],[[1,1,2,0],[2,4,2,2],[2,3,0,0],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[3,3,0,0],[1,1,2,1]],[[1,1,2,0],[2,3,2,2],[2,3,0,0],[2,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,3,0,0],[1,2,1,1]],[[1,1,2,0],[3,3,2,2],[2,3,0,0],[1,2,1,1]],[[1,1,2,0],[2,4,2,2],[2,3,0,0],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[3,3,0,0],[1,2,1,1]],[[1,1,2,0],[2,3,2,2],[2,3,0,0],[2,2,1,1]],[[2,1,2,0],[2,3,2,2],[2,3,0,0],[1,2,2,0]],[[1,1,2,0],[3,3,2,2],[2,3,0,0],[1,2,2,0]],[[1,1,2,0],[2,4,2,2],[2,3,0,0],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[3,3,0,0],[1,2,2,0]],[[1,1,2,0],[2,3,2,2],[2,3,0,0],[2,2,2,0]],[[2,1,2,0],[2,3,2,2],[2,3,0,1],[0,2,2,0]],[[1,1,2,0],[3,3,2,2],[2,3,0,1],[0,2,2,0]],[[1,1,2,0],[2,4,2,2],[2,3,0,1],[0,2,2,0]],[[1,1,2,0],[2,3,2,2],[3,3,0,1],[0,2,2,0]],[[2,1,2,0],[2,3,2,2],[2,3,0,1],[1,1,2,0]],[[1,1,2,0],[3,3,2,2],[2,3,0,1],[1,1,2,0]],[[1,1,2,0],[2,4,2,2],[2,3,0,1],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[3,3,0,1],[1,1,2,0]],[[1,1,2,0],[2,3,2,2],[2,3,0,1],[2,1,2,0]],[[2,1,2,0],[2,3,2,2],[2,3,0,1],[1,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,3,0,1],[1,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,3,0,1],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,3,0,1],[1,2,1,0]],[[1,1,2,0],[2,3,2,2],[2,3,0,1],[2,2,1,0]],[[1,2,0,1],[1,3,3,2],[1,2,4,0],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[1,2,3,0],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[1,2,3,0],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[1,2,3,0],[1,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,3,0,2],[0,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,3,0,2],[0,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,3,0,2],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,3,0,2],[0,2,0,1]],[[2,1,2,0],[2,3,2,2],[2,3,0,2],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,3,0,2],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,3,0,2],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,3,0,2],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[1,2,3,0],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[1,2,3,0],[1,0,2,2]],[[1,2,0,1],[1,3,3,2],[1,2,3,0],[1,0,3,1]],[[1,2,0,1],[1,3,3,2],[1,2,4,0],[1,0,2,1]],[[1,2,0,1],[1,3,3,3],[1,2,3,0],[1,0,2,1]],[[1,2,0,1],[1,3,4,2],[1,2,3,0],[1,0,2,1]],[[1,2,0,1],[1,4,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,0,2],[1,3,3,2],[1,2,3,0],[1,0,2,1]],[[2,1,2,0],[2,3,2,2],[2,3,0,2],[1,1,0,1]],[[1,1,2,0],[3,3,2,2],[2,3,0,2],[1,1,0,1]],[[1,1,2,0],[2,4,2,2],[2,3,0,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[3,3,0,2],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[2,3,0,2],[2,1,0,1]],[[2,1,2,0],[2,3,2,2],[2,3,0,2],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[2,3,0,2],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[2,3,0,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[3,3,0,2],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[2,3,0,2],[2,1,1,0]],[[1,3,0,1],[1,3,3,2],[1,2,3,0],[1,0,2,1]],[[2,2,0,1],[1,3,3,2],[1,2,3,0],[1,0,2,1]],[[2,1,2,0],[2,3,2,2],[2,3,0,2],[1,2,0,0]],[[1,1,2,0],[3,3,2,2],[2,3,0,2],[1,2,0,0]],[[1,1,2,0],[2,4,2,2],[2,3,0,2],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[3,3,0,2],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[2,3,0,2],[2,2,0,0]],[[1,2,0,1],[1,3,3,2],[1,2,4,0],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[1,2,3,0],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[1,2,3,0],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[1,2,3,0],[0,2,1,1]],[[2,2,0,1],[1,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,0,1],[1,3,3,2],[1,2,3,0],[0,1,2,2]],[[1,2,0,1],[1,3,3,2],[1,2,3,0],[0,1,3,1]],[[1,2,0,1],[1,3,3,2],[1,2,4,0],[0,1,2,1]],[[1,2,0,1],[1,3,3,3],[1,2,3,0],[0,1,2,1]],[[1,2,0,1],[1,3,4,2],[1,2,3,0],[0,1,2,1]],[[1,2,0,1],[1,4,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,0,2],[1,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,3,0,1],[1,3,3,2],[1,2,3,0],[0,1,2,1]],[[2,2,0,1],[1,3,3,2],[1,2,3,0],[0,1,2,1]],[[2,1,2,0],[2,3,2,2],[2,3,1,0],[0,2,1,1]],[[1,1,2,0],[3,3,2,2],[2,3,1,0],[0,2,1,1]],[[1,1,2,0],[2,4,2,2],[2,3,1,0],[0,2,1,1]],[[1,1,2,0],[2,3,2,2],[3,3,1,0],[0,2,1,1]],[[2,1,2,0],[2,3,2,2],[2,3,1,0],[1,1,1,1]],[[1,1,2,0],[3,3,2,2],[2,3,1,0],[1,1,1,1]],[[1,1,2,0],[2,4,2,2],[2,3,1,0],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[3,3,1,0],[1,1,1,1]],[[1,1,2,0],[2,3,2,2],[2,3,1,0],[2,1,1,1]],[[2,1,2,0],[2,3,2,2],[2,3,1,0],[1,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,3,1,0],[1,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,3,1,0],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,3,1,0],[1,2,0,1]],[[1,1,2,0],[2,3,2,2],[2,3,1,0],[2,2,0,1]],[[2,1,2,0],[2,3,2,2],[2,3,1,1],[0,2,0,1]],[[1,1,2,0],[3,3,2,2],[2,3,1,1],[0,2,0,1]],[[1,1,2,0],[2,4,2,2],[2,3,1,1],[0,2,0,1]],[[1,1,2,0],[2,3,2,2],[3,3,1,1],[0,2,0,1]],[[2,1,2,0],[2,3,2,2],[2,3,1,1],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,3,1,1],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,3,1,1],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,3,1,1],[0,2,1,0]],[[2,1,2,0],[2,3,2,2],[2,3,1,1],[1,1,0,1]],[[1,1,2,0],[3,3,2,2],[2,3,1,1],[1,1,0,1]],[[1,1,2,0],[2,4,2,2],[2,3,1,1],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[3,3,1,1],[1,1,0,1]],[[1,1,2,0],[2,3,2,2],[2,3,1,1],[2,1,0,1]],[[2,1,2,0],[2,3,2,2],[2,3,1,1],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[2,3,1,1],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[2,3,1,1],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[3,3,1,1],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[2,3,1,1],[2,1,1,0]],[[2,1,2,0],[2,3,2,2],[2,3,1,1],[1,2,0,0]],[[1,1,2,0],[3,3,2,2],[2,3,1,1],[1,2,0,0]],[[1,1,2,0],[2,4,2,2],[2,3,1,1],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[3,3,1,1],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[2,3,1,1],[2,2,0,0]],[[1,2,0,1],[1,3,3,2],[1,2,2,3],[1,1,1,0]],[[1,2,0,1],[1,3,3,3],[1,2,2,2],[1,1,1,0]],[[1,2,0,1],[1,3,4,2],[1,2,2,2],[1,1,1,0]],[[1,2,0,1],[1,4,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,0,2],[1,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,3,0,1],[1,3,3,2],[1,2,2,2],[1,1,1,0]],[[2,2,0,1],[1,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,2],[1,2,2,2],[1,1,0,2]],[[1,2,0,1],[1,3,3,2],[1,2,2,3],[1,1,0,1]],[[1,2,0,1],[1,3,3,3],[1,2,2,2],[1,1,0,1]],[[1,2,0,1],[1,3,4,2],[1,2,2,2],[1,1,0,1]],[[1,2,0,1],[1,4,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,0,2],[1,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,3,0,1],[1,3,3,2],[1,2,2,2],[1,1,0,1]],[[2,2,0,1],[1,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,0,1],[1,3,3,2],[1,2,2,3],[1,0,2,0]],[[1,2,0,1],[1,3,3,3],[1,2,2,2],[1,0,2,0]],[[1,2,0,1],[1,3,4,2],[1,2,2,2],[1,0,2,0]],[[1,2,0,1],[1,4,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,0,2],[1,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,3,0,1],[1,3,3,2],[1,2,2,2],[1,0,2,0]],[[2,2,0,1],[1,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[1,2,2,2],[1,0,1,2]],[[1,2,0,1],[1,3,3,2],[1,2,2,3],[1,0,1,1]],[[1,2,0,1],[1,3,3,3],[1,2,2,2],[1,0,1,1]],[[1,2,0,1],[1,3,4,2],[1,2,2,2],[1,0,1,1]],[[1,2,0,1],[1,4,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,0,2],[1,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,3,0,1],[1,3,3,2],[1,2,2,2],[1,0,1,1]],[[2,2,0,1],[1,3,3,2],[1,2,2,2],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[2,3,1,2],[1,0,0,1]],[[1,1,2,0],[3,3,2,2],[2,3,1,2],[1,0,0,1]],[[1,1,2,0],[2,4,2,2],[2,3,1,2],[1,0,0,1]],[[1,1,2,0],[2,3,2,2],[3,3,1,2],[1,0,0,1]],[[2,1,2,0],[2,3,2,2],[2,3,1,2],[1,0,1,0]],[[1,1,2,0],[3,3,2,2],[2,3,1,2],[1,0,1,0]],[[1,1,2,0],[2,4,2,2],[2,3,1,2],[1,0,1,0]],[[1,1,2,0],[2,3,2,2],[3,3,1,2],[1,0,1,0]],[[1,2,0,1],[1,3,3,2],[1,2,2,3],[0,2,1,0]],[[1,2,0,1],[1,3,3,3],[1,2,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,4,2],[1,2,2,2],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[1,2,2,2],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[1,2,2,2],[0,2,0,2]],[[1,2,0,1],[1,3,3,2],[1,2,2,3],[0,2,0,1]],[[1,2,0,1],[1,3,3,3],[1,2,2,2],[0,2,0,1]],[[1,2,0,1],[1,3,4,2],[1,2,2,2],[0,2,0,1]],[[1,2,0,1],[1,4,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,0,2],[1,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,3,0,1],[1,3,3,2],[1,2,2,2],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,0,1],[1,3,3,2],[1,2,2,3],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[1,2,2,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[1,2,2,2],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,3,0,1],[1,3,3,2],[1,2,2,2],[0,1,2,0]],[[2,2,0,1],[1,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[1,2,2,2],[0,1,1,2]],[[1,2,0,1],[1,3,3,2],[1,2,2,3],[0,1,1,1]],[[1,2,0,1],[1,3,3,3],[1,2,2,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[1,2,2,2],[0,1,1,1]],[[1,2,0,1],[1,4,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,3,0,1],[1,3,3,2],[1,2,2,2],[0,1,1,1]],[[2,2,0,1],[1,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[1,2,2,2],[0,0,2,2]],[[1,2,0,1],[1,3,3,2],[1,2,2,3],[0,0,2,1]],[[1,2,0,1],[1,3,3,3],[1,2,2,2],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[1,2,2,2],[0,0,2,1]],[[1,2,0,1],[1,4,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,0,2],[1,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,3,0,1],[1,3,3,2],[1,2,2,2],[0,0,2,1]],[[2,2,0,1],[1,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,0,1],[1,3,3,2],[1,2,1,2],[1,0,2,2]],[[2,1,2,0],[2,3,2,2],[2,3,2,0],[0,2,1,0]],[[1,1,2,0],[3,3,2,2],[2,3,2,0],[0,2,1,0]],[[1,1,2,0],[2,4,2,2],[2,3,2,0],[0,2,1,0]],[[1,1,2,0],[2,3,2,2],[3,3,2,0],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[1,2,1,2],[1,0,3,1]],[[1,2,0,1],[1,3,3,2],[1,2,1,3],[1,0,2,1]],[[1,2,0,1],[1,3,3,3],[1,2,1,2],[1,0,2,1]],[[1,2,0,1],[1,3,4,2],[1,2,1,2],[1,0,2,1]],[[1,2,0,1],[1,4,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,0,2],[1,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,3,0,1],[1,3,3,2],[1,2,1,2],[1,0,2,1]],[[2,2,0,1],[1,3,3,2],[1,2,1,2],[1,0,2,1]],[[2,1,2,0],[2,3,2,2],[2,3,2,0],[1,0,1,1]],[[1,1,2,0],[3,3,2,2],[2,3,2,0],[1,0,1,1]],[[1,1,2,0],[2,4,2,2],[2,3,2,0],[1,0,1,1]],[[1,1,2,0],[2,3,2,2],[3,3,2,0],[1,0,1,1]],[[2,1,2,0],[2,3,2,2],[2,3,2,0],[1,1,1,0]],[[1,1,2,0],[3,3,2,2],[2,3,2,0],[1,1,1,0]],[[1,1,2,0],[2,4,2,2],[2,3,2,0],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[3,3,2,0],[1,1,1,0]],[[1,1,2,0],[2,3,2,2],[2,3,2,0],[2,1,1,0]],[[2,1,2,0],[2,3,2,2],[2,3,2,0],[1,2,0,0]],[[1,1,2,0],[3,3,2,2],[2,3,2,0],[1,2,0,0]],[[1,1,2,0],[2,4,2,2],[2,3,2,0],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[3,3,2,0],[1,2,0,0]],[[1,1,2,0],[2,3,2,2],[2,3,2,0],[2,2,0,0]],[[1,2,0,1],[1,3,3,2],[1,2,1,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,2],[1,2,1,2],[0,1,3,1]],[[1,2,0,1],[1,3,3,2],[1,2,1,3],[0,1,2,1]],[[1,2,0,1],[1,3,3,3],[1,2,1,2],[0,1,2,1]],[[1,2,0,1],[1,3,4,2],[1,2,1,2],[0,1,2,1]],[[1,2,0,1],[1,4,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,0,2],[1,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,3,0,1],[1,3,3,2],[1,2,1,2],[0,1,2,1]],[[2,2,0,1],[1,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,0,1],[1,3,3,2],[1,2,0,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,2],[1,2,0,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,2],[1,2,0,2],[0,3,2,1]],[[1,2,0,1],[1,3,3,2],[1,2,0,3],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[1,2,0,2],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[1,2,0,2],[0,2,2,1]],[[1,2,0,1],[1,4,3,2],[1,2,0,2],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,3,0,1],[1,3,3,2],[1,2,0,2],[0,2,2,1]],[[2,2,0,1],[1,3,3,2],[1,2,0,2],[0,2,2,1]],[[2,1,2,0],[2,3,2,2],[2,3,2,1],[1,0,0,1]],[[1,1,2,0],[3,3,2,2],[2,3,2,1],[1,0,0,1]],[[1,1,2,0],[2,4,2,2],[2,3,2,1],[1,0,0,1]],[[1,1,2,0],[2,3,2,2],[3,3,2,1],[1,0,0,1]],[[2,1,2,0],[2,3,2,2],[2,3,2,1],[1,0,1,0]],[[1,1,2,0],[3,3,2,2],[2,3,2,1],[1,0,1,0]],[[1,1,2,0],[2,4,2,2],[2,3,2,1],[1,0,1,0]],[[1,1,2,0],[2,3,2,2],[3,3,2,1],[1,0,1,0]],[[1,2,0,1],[1,3,3,2],[1,1,3,3],[1,0,2,0]],[[1,2,0,1],[1,3,3,3],[1,1,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,4,2],[1,1,3,2],[1,0,2,0]],[[1,2,0,2],[1,3,3,2],[1,1,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,2],[1,1,3,2],[1,0,1,2]],[[1,2,0,1],[1,3,3,2],[1,1,3,3],[1,0,1,1]],[[1,2,0,1],[1,3,3,3],[1,1,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,4,2],[1,1,3,2],[1,0,1,1]],[[1,2,0,2],[1,3,3,2],[1,1,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,3,2],[1,1,3,3],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[1,1,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[1,1,3,2],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[1,1,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[1,1,3,2],[0,1,1,2]],[[1,2,0,1],[1,3,3,2],[1,1,3,3],[0,1,1,1]],[[1,2,0,1],[1,3,3,3],[1,1,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[1,1,3,2],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[1,1,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[1,1,3,2],[0,0,2,2]],[[1,2,0,1],[1,3,3,2],[1,1,3,3],[0,0,2,1]],[[1,2,0,1],[1,3,3,3],[1,1,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[1,1,3,2],[0,0,2,1]],[[1,2,0,2],[1,3,3,2],[1,1,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,3,2],[1,1,3,1],[0,2,3,0]],[[1,2,0,1],[1,3,3,2],[1,1,3,1],[0,3,2,0]],[[1,2,0,1],[1,3,3,2],[1,1,4,1],[0,2,2,0]],[[1,2,0,1],[1,3,3,3],[1,1,3,1],[0,2,2,0]],[[1,2,0,1],[1,3,4,2],[1,1,3,1],[0,2,2,0]],[[1,2,0,1],[1,4,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,0,2],[1,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,3,0,1],[1,3,3,2],[1,1,3,1],[0,2,2,0]],[[2,2,0,1],[1,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,0,1],[1,3,3,2],[1,1,4,1],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[1,1,3,1],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[1,1,3,1],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[1,1,3,1],[0,2,1,1]],[[2,2,0,1],[1,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,0,1],[1,3,3,2],[1,1,3,0],[0,2,2,2]],[[1,2,0,1],[1,3,3,2],[1,1,3,0],[0,2,3,1]],[[1,2,0,1],[1,3,3,2],[1,1,3,0],[0,3,2,1]],[[1,2,0,1],[1,3,3,2],[1,1,4,0],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[1,1,3,0],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[1,1,3,0],[0,2,2,1]],[[1,2,0,1],[1,4,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,3,0,1],[1,3,3,2],[1,1,3,0],[0,2,2,1]],[[2,2,0,1],[1,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,0,1],[1,3,3,2],[1,1,2,3],[0,2,2,0]],[[1,2,0,1],[1,3,3,3],[1,1,2,2],[0,2,2,0]],[[1,2,0,1],[1,3,4,2],[1,1,2,2],[0,2,2,0]],[[1,2,0,1],[1,4,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,0,2],[1,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,3,0,1],[1,3,3,2],[1,1,2,2],[0,2,2,0]],[[2,2,0,1],[1,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,2],[1,1,2,2],[0,2,1,2]],[[1,2,0,1],[1,3,3,2],[1,1,2,3],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[1,1,2,2],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[1,1,2,2],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[1,1,2,2],[0,2,1,1]],[[2,2,0,1],[1,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,0,1],[1,3,3,2],[1,1,1,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,2],[1,1,1,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,2],[1,1,1,2],[0,3,2,1]],[[1,2,0,1],[1,3,3,2],[1,1,1,3],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[1,1,1,2],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[1,1,1,2],[0,2,2,1]],[[1,2,0,1],[1,4,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,3,0,1],[1,3,3,2],[1,1,1,2],[0,2,2,1]],[[2,2,0,1],[1,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,0,1],[1,3,3,2],[1,1,0,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,2],[1,1,0,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,2],[1,1,0,2],[1,3,2,1]],[[1,2,0,1],[1,3,3,2],[1,1,0,2],[2,2,2,1]],[[1,2,0,1],[1,3,3,2],[1,1,0,3],[1,2,2,1]],[[1,2,0,1],[1,3,3,3],[1,1,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[1,1,0,2],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[1,1,0,2],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[1,1,0,2],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,3,2],[1,0,3,3],[0,2,2,0]],[[1,2,0,1],[1,3,3,3],[1,0,3,2],[0,2,2,0]],[[1,2,0,1],[1,3,4,2],[1,0,3,2],[0,2,2,0]],[[1,2,0,2],[1,3,3,2],[1,0,3,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,2],[1,0,3,2],[0,2,1,2]],[[1,2,0,1],[1,3,3,2],[1,0,3,3],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[1,0,3,2],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[1,0,3,2],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[1,0,3,2],[0,2,1,1]],[[1,2,0,1],[1,3,3,2],[1,0,3,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,2],[1,0,3,3],[0,1,2,1]],[[1,2,0,1],[1,3,3,3],[1,0,3,2],[0,1,2,1]],[[1,2,0,1],[1,3,4,2],[1,0,3,2],[0,1,2,1]],[[1,2,0,2],[1,3,3,2],[1,0,3,2],[0,1,2,1]],[[1,2,0,1],[1,3,3,2],[1,0,3,1],[1,2,3,0]],[[1,2,0,1],[1,3,3,2],[1,0,3,1],[1,3,2,0]],[[1,2,0,1],[1,3,3,2],[1,0,3,1],[2,2,2,0]],[[1,2,0,1],[1,3,3,2],[1,0,4,1],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[1,0,3,1],[1,2,2,0]],[[1,2,0,1],[1,3,4,2],[1,0,3,1],[1,2,2,0]],[[1,2,0,1],[1,4,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,0,2],[1,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,3,0,1],[1,3,3,2],[1,0,3,1],[1,2,2,0]],[[2,2,0,1],[1,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,0,1],[1,3,3,2],[1,0,4,1],[1,2,1,1]],[[2,1,2,0],[2,3,2,2],[2,3,3,0],[1,0,1,0]],[[1,1,2,0],[3,3,2,2],[2,3,3,0],[1,0,1,0]],[[1,1,2,0],[2,4,2,2],[2,3,3,0],[1,0,1,0]],[[1,1,2,0],[2,3,2,2],[3,3,3,0],[1,0,1,0]],[[1,2,0,1],[1,3,3,3],[1,0,3,1],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[1,0,3,1],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[1,0,3,1],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[1,0,3,0],[1,2,2,2]],[[1,2,0,1],[1,3,3,2],[1,0,3,0],[1,2,3,1]],[[1,2,0,1],[1,3,3,2],[1,0,3,0],[1,3,2,1]],[[1,2,0,1],[1,3,3,2],[1,0,3,0],[2,2,2,1]],[[1,2,0,1],[1,3,3,2],[1,0,4,0],[1,2,2,1]],[[1,2,0,1],[1,3,3,3],[1,0,3,0],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[1,0,3,0],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[1,0,3,0],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,0,1],[1,3,3,2],[1,0,2,3],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[1,0,2,2],[1,2,2,0]],[[1,2,0,1],[1,3,4,2],[1,0,2,2],[1,2,2,0]],[[1,2,0,1],[1,4,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,0,2],[1,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,3,0,1],[1,3,3,2],[1,0,2,2],[1,2,2,0]],[[2,2,0,1],[1,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,2],[1,0,2,2],[1,2,1,2]],[[1,2,0,1],[1,3,3,2],[1,0,2,3],[1,2,1,1]],[[1,2,0,1],[1,3,3,3],[1,0,2,2],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[1,0,2,2],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[1,0,2,2],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[1,0,2,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,2],[1,0,2,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,2],[1,0,2,3],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[1,0,2,2],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[1,0,2,2],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[1,0,2,2],[0,2,2,1]],[[1,2,0,1],[1,3,3,2],[1,0,1,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,2],[1,0,1,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,2],[1,0,1,2],[1,3,2,1]],[[1,2,0,1],[1,3,3,2],[1,0,1,2],[2,2,2,1]],[[1,2,0,1],[1,3,3,2],[1,0,1,3],[1,2,2,1]],[[1,2,0,1],[1,3,3,3],[1,0,1,2],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[1,0,1,2],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[1,0,1,2],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[1,0,1,2],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,3,3,3],[0,1,0,1]],[[1,2,0,1],[1,3,3,3],[0,3,3,2],[0,1,0,1]],[[1,2,0,1],[1,3,4,2],[0,3,3,2],[0,1,0,1]],[[1,2,0,1],[1,4,3,2],[0,3,3,2],[0,1,0,1]],[[1,2,0,2],[1,3,3,2],[0,3,3,2],[0,1,0,1]],[[1,3,0,1],[1,3,3,2],[0,3,3,2],[0,1,0,1]],[[2,2,0,1],[1,3,3,2],[0,3,3,2],[0,1,0,1]],[[2,1,2,0],[2,3,2,2],[2,3,3,1],[1,0,0,0]],[[1,1,2,0],[3,3,2,2],[2,3,3,1],[1,0,0,0]],[[1,1,2,0],[2,4,2,2],[2,3,3,1],[1,0,0,0]],[[1,1,2,0],[2,3,2,2],[3,3,3,1],[1,0,0,0]],[[1,2,0,1],[1,3,3,2],[0,4,3,1],[1,2,0,0]],[[1,2,0,1],[1,3,3,3],[0,3,3,1],[1,2,0,0]],[[1,2,0,1],[1,3,4,2],[0,3,3,1],[1,2,0,0]],[[1,2,0,1],[1,4,3,2],[0,3,3,1],[1,2,0,0]],[[1,2,0,2],[1,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,3,0,1],[1,3,3,2],[0,3,3,1],[1,2,0,0]],[[2,2,0,1],[1,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,2,0,1],[1,3,3,2],[0,3,4,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,3],[0,3,3,1],[0,2,1,0]],[[1,2,0,1],[1,3,4,2],[0,3,3,1],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[0,3,3,1],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[0,3,3,1],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[0,3,3,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[0,3,4,1],[0,2,0,1]],[[1,2,0,1],[1,3,3,3],[0,3,3,1],[0,2,0,1]],[[1,2,0,1],[1,3,4,2],[0,3,3,1],[0,2,0,1]],[[1,2,0,1],[1,4,3,2],[0,3,3,1],[0,2,0,1]],[[1,2,0,2],[1,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,3,0,1],[1,3,3,2],[0,3,3,1],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[0,3,3,1],[0,2,0,1]],[[1,2,0,1],[1,3,3,2],[0,3,3,1],[0,1,3,0]],[[1,2,0,1],[1,3,3,2],[0,3,4,1],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[0,3,3,1],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[0,3,3,1],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[0,3,3,1],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,3,0,1],[1,3,3,2],[0,3,3,1],[0,1,2,0]],[[2,2,0,1],[1,3,3,2],[0,3,3,1],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[0,3,4,1],[0,1,1,1]],[[1,2,0,1],[1,3,3,3],[0,3,3,1],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[0,3,3,1],[0,1,1,1]],[[1,2,0,1],[1,4,3,2],[0,3,3,1],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,3,0,1],[1,3,3,2],[0,3,3,1],[0,1,1,1]],[[2,2,0,1],[1,3,3,2],[0,3,3,1],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[0,3,4,1],[0,0,2,1]],[[1,2,0,1],[1,3,3,3],[0,3,3,1],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[0,3,3,1],[0,0,2,1]],[[1,2,0,1],[1,4,3,2],[0,3,3,1],[0,0,2,1]],[[1,2,0,2],[1,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,3,0,1],[1,3,3,2],[0,3,3,1],[0,0,2,1]],[[2,2,0,1],[1,3,3,2],[0,3,3,1],[0,0,2,1]],[[1,2,0,1],[1,3,3,2],[0,3,3,0],[1,3,1,0]],[[1,2,0,1],[1,3,3,2],[0,3,3,0],[2,2,1,0]],[[1,2,0,1],[1,3,3,2],[0,4,3,0],[1,2,1,0]],[[1,2,0,1],[1,3,4,2],[0,3,3,0],[1,2,1,0]],[[1,2,0,1],[1,4,3,2],[0,3,3,0],[1,2,1,0]],[[1,3,0,1],[1,3,3,2],[0,3,3,0],[1,2,1,0]],[[2,2,0,1],[1,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,0,1],[1,3,3,2],[0,4,3,0],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[0,3,3,0],[1,1,2,0]],[[1,2,0,1],[1,4,3,2],[0,3,3,0],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[0,3,3,0],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[0,3,4,0],[0,2,1,1]],[[1,2,0,1],[1,3,3,3],[0,3,3,0],[0,2,1,1]],[[1,2,0,1],[1,3,4,2],[0,3,3,0],[0,2,1,1]],[[1,2,0,1],[1,4,3,2],[0,3,3,0],[0,2,1,1]],[[1,2,0,2],[1,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,3,0,1],[1,3,3,2],[0,3,3,0],[0,2,1,1]],[[2,2,0,1],[1,3,3,2],[0,3,3,0],[0,2,1,1]],[[1,2,0,1],[1,3,3,2],[0,3,3,0],[0,1,2,2]],[[1,2,0,1],[1,3,3,2],[0,3,3,0],[0,1,3,1]],[[1,2,0,1],[1,3,3,2],[0,3,4,0],[0,1,2,1]],[[1,2,0,1],[1,3,3,3],[0,3,3,0],[0,1,2,1]],[[1,2,0,1],[1,3,4,2],[0,3,3,0],[0,1,2,1]],[[1,2,0,1],[1,4,3,2],[0,3,3,0],[0,1,2,1]],[[1,2,0,2],[1,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,3,0,1],[1,3,3,2],[0,3,3,0],[0,1,2,1]],[[2,2,0,1],[1,3,3,2],[0,3,3,0],[0,1,2,1]],[[1,2,0,1],[1,3,3,2],[0,3,2,3],[0,2,1,0]],[[1,2,0,1],[1,3,3,3],[0,3,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,4,2],[0,3,2,2],[0,2,1,0]],[[1,2,0,1],[1,4,3,2],[0,3,2,2],[0,2,1,0]],[[1,2,0,2],[1,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,3,0,1],[1,3,3,2],[0,3,2,2],[0,2,1,0]],[[2,2,0,1],[1,3,3,2],[0,3,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,2],[0,3,2,2],[0,2,0,2]],[[1,2,0,1],[1,3,3,2],[0,3,2,3],[0,2,0,1]],[[1,2,0,1],[1,3,3,3],[0,3,2,2],[0,2,0,1]],[[1,2,0,1],[1,3,4,2],[0,3,2,2],[0,2,0,1]],[[1,2,0,1],[1,4,3,2],[0,3,2,2],[0,2,0,1]],[[1,2,0,2],[1,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,3,0,1],[1,3,3,2],[0,3,2,2],[0,2,0,1]],[[2,2,0,1],[1,3,3,2],[0,3,2,2],[0,2,0,1]],[[1,2,0,1],[1,3,3,2],[0,3,2,3],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[0,3,2,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[0,3,2,2],[0,1,2,0]],[[1,2,0,1],[1,4,3,2],[0,3,2,2],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,3,0,1],[1,3,3,2],[0,3,2,2],[0,1,2,0]],[[2,2,0,1],[1,3,3,2],[0,3,2,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[0,3,2,2],[0,1,1,2]],[[1,2,0,1],[1,3,3,2],[0,3,2,3],[0,1,1,1]],[[1,2,0,1],[1,3,3,3],[0,3,2,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[0,3,2,2],[0,1,1,1]],[[1,2,0,1],[1,4,3,2],[0,3,2,2],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,3,0,1],[1,3,3,2],[0,3,2,2],[0,1,1,1]],[[2,2,0,1],[1,3,3,2],[0,3,2,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[0,3,2,2],[0,0,2,2]],[[1,2,0,1],[1,3,3,2],[0,3,2,3],[0,0,2,1]],[[1,2,0,1],[1,3,3,3],[0,3,2,2],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[0,3,2,2],[0,0,2,1]],[[1,2,0,1],[1,4,3,2],[0,3,2,2],[0,0,2,1]],[[1,2,0,2],[1,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,3,0,1],[1,3,3,2],[0,3,2,2],[0,0,2,1]],[[2,2,0,1],[1,3,3,2],[0,3,2,2],[0,0,2,1]],[[1,2,0,1],[1,3,3,2],[0,3,2,1],[1,3,1,0]],[[1,2,0,1],[1,3,3,2],[0,3,2,1],[2,2,1,0]],[[1,2,0,1],[1,3,3,2],[0,4,2,1],[1,2,1,0]],[[1,2,0,1],[1,3,3,3],[0,3,2,1],[1,2,1,0]],[[1,2,0,1],[1,3,4,2],[0,3,2,1],[1,2,1,0]],[[1,2,0,1],[1,4,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,0,2],[1,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,3,0,1],[1,3,3,2],[0,3,2,1],[1,2,1,0]],[[2,2,0,1],[1,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,0,1],[1,3,3,2],[0,3,2,1],[1,3,0,1]],[[1,2,0,1],[1,3,3,2],[0,3,2,1],[2,2,0,1]],[[1,2,0,1],[1,3,3,2],[0,4,2,1],[1,2,0,1]],[[1,2,0,1],[1,3,3,3],[0,3,2,1],[1,2,0,1]],[[1,2,0,1],[1,3,4,2],[0,3,2,1],[1,2,0,1]],[[1,2,0,1],[1,4,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,0,2],[1,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,3,0,1],[1,3,3,2],[0,3,2,1],[1,2,0,1]],[[2,2,0,1],[1,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,0,1],[1,3,3,2],[0,4,2,1],[1,1,2,0]],[[1,2,0,1],[1,3,3,3],[0,3,2,1],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[0,3,2,1],[1,1,2,0]],[[1,2,0,1],[1,4,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,0,2],[1,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[0,3,2,1],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[0,4,2,1],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[0,3,2,1],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[0,3,2,1],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[0,3,2,1],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[0,3,2,1],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[0,3,2,0],[1,3,1,1]],[[1,2,0,1],[1,3,3,2],[0,3,2,0],[2,2,1,1]],[[1,2,0,1],[1,3,3,2],[0,4,2,0],[1,2,1,1]],[[1,2,0,1],[1,3,3,3],[0,3,2,0],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[0,3,2,0],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[0,3,2,0],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[0,4,2,0],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[0,3,2,0],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[0,3,2,0],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[0,3,2,0],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[0,3,2,0],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,0],[2,3,3,0],[0,1,4,2],[0,2,2,1]],[[1,1,2,0],[2,3,3,0],[0,1,3,2],[0,2,3,1]],[[1,1,2,0],[2,3,3,0],[0,1,3,2],[0,2,2,2]],[[1,1,2,0],[2,3,3,0],[0,2,4,2],[0,1,2,1]],[[1,1,2,0],[2,3,3,0],[0,2,3,2],[0,1,3,1]],[[1,1,2,0],[2,3,3,0],[0,2,3,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,2],[0,3,1,2],[1,3,1,0]],[[1,2,0,1],[1,3,3,2],[0,3,1,2],[2,2,1,0]],[[1,2,0,1],[1,3,3,2],[0,3,1,3],[1,2,1,0]],[[1,2,0,1],[1,3,3,2],[0,4,1,2],[1,2,1,0]],[[1,2,0,1],[1,3,3,3],[0,3,1,2],[1,2,1,0]],[[1,2,0,1],[1,3,4,2],[0,3,1,2],[1,2,1,0]],[[1,2,0,1],[1,4,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,0,2],[1,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,3,0,1],[1,3,3,2],[0,3,1,2],[1,2,1,0]],[[2,2,0,1],[1,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,0,1],[1,3,3,2],[0,3,1,2],[1,2,0,2]],[[1,2,0,1],[1,3,3,2],[0,3,1,2],[1,3,0,1]],[[1,2,0,1],[1,3,3,2],[0,3,1,2],[2,2,0,1]],[[1,2,0,1],[1,3,3,2],[0,3,1,3],[1,2,0,1]],[[1,2,0,1],[1,3,3,2],[0,4,1,2],[1,2,0,1]],[[1,2,0,1],[1,3,3,3],[0,3,1,2],[1,2,0,1]],[[1,2,0,1],[1,3,4,2],[0,3,1,2],[1,2,0,1]],[[1,2,0,1],[1,4,3,2],[0,3,1,2],[1,2,0,1]],[[1,2,0,2],[1,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,3,0,1],[1,3,3,2],[0,3,1,2],[1,2,0,1]],[[2,2,0,1],[1,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,2,0,1],[1,3,3,2],[0,3,1,3],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[0,4,1,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,3],[0,3,1,2],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[0,3,1,2],[1,1,2,0]],[[1,2,0,1],[1,4,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,0,2],[1,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[0,3,1,2],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[0,3,1,2],[1,1,1,2]],[[1,2,0,1],[1,3,3,2],[0,3,1,3],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[0,4,1,2],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[0,3,1,2],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[0,3,1,2],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[0,3,1,2],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[0,3,1,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,2],[0,3,1,2],[0,1,3,1]],[[1,2,0,1],[1,3,3,2],[0,3,1,3],[0,1,2,1]],[[1,2,0,1],[1,3,3,3],[0,3,1,2],[0,1,2,1]],[[1,2,0,1],[1,3,4,2],[0,3,1,2],[0,1,2,1]],[[1,2,0,1],[1,4,3,2],[0,3,1,2],[0,1,2,1]],[[1,2,0,2],[1,3,3,2],[0,3,1,2],[0,1,2,1]],[[1,3,0,1],[1,3,3,2],[0,3,1,2],[0,1,2,1]],[[2,2,0,1],[1,3,3,2],[0,3,1,2],[0,1,2,1]],[[1,2,0,1],[1,3,3,2],[0,3,1,1],[1,2,3,0]],[[1,2,0,1],[1,3,3,2],[0,3,1,1],[1,3,2,0]],[[1,2,0,1],[1,3,3,2],[0,3,1,1],[2,2,2,0]],[[1,2,0,1],[1,3,3,2],[0,4,1,1],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[0,3,1,1],[1,2,2,0]],[[1,2,0,1],[1,3,4,2],[0,3,1,1],[1,2,2,0]],[[1,2,0,1],[1,4,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,0,2],[1,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,3,0,1],[1,3,3,2],[0,3,1,1],[1,2,2,0]],[[2,2,0,1],[1,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,0,1],[1,3,3,2],[0,3,1,0],[1,2,2,2]],[[1,2,0,1],[1,3,3,2],[0,3,1,0],[1,2,3,1]],[[1,2,0,1],[1,3,3,2],[0,3,1,0],[1,3,2,1]],[[1,2,0,1],[1,3,3,2],[0,3,1,0],[2,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,4,1,0],[1,2,2,1]],[[1,2,0,1],[1,3,3,3],[0,3,1,0],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[0,3,1,0],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[0,3,1,0],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,3,0,2],[1,2,3,0]],[[1,2,0,1],[1,3,3,2],[0,3,0,2],[1,3,2,0]],[[1,2,0,1],[1,3,3,2],[0,3,0,2],[2,2,2,0]],[[1,2,0,1],[1,3,3,2],[0,3,0,3],[1,2,2,0]],[[1,2,0,1],[1,3,3,2],[0,4,0,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[0,3,0,2],[1,2,2,0]],[[1,2,0,1],[1,3,4,2],[0,3,0,2],[1,2,2,0]],[[1,2,0,1],[1,4,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,0,2],[1,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,3,0,1],[1,3,3,2],[0,3,0,2],[1,2,2,0]],[[2,2,0,1],[1,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,2],[0,3,0,2],[1,2,1,2]],[[1,2,0,1],[1,3,3,2],[0,3,0,2],[1,3,1,1]],[[1,2,0,1],[1,3,3,2],[0,3,0,2],[2,2,1,1]],[[1,2,0,1],[1,3,3,2],[0,3,0,3],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[0,4,0,2],[1,2,1,1]],[[1,2,0,1],[1,3,3,3],[0,3,0,2],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[0,3,0,2],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[0,3,0,2],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[0,3,0,2],[1,1,2,2]],[[1,2,0,1],[1,3,3,2],[0,3,0,2],[1,1,3,1]],[[1,2,0,1],[1,3,3,2],[0,3,0,3],[1,1,2,1]],[[1,2,0,1],[1,3,3,2],[0,4,0,2],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[0,3,0,2],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[0,3,0,2],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[0,3,0,2],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,0,1],[1,3,3,2],[0,3,0,1],[1,2,2,2]],[[1,2,0,1],[1,3,3,2],[0,3,0,1],[1,2,3,1]],[[1,2,0,1],[1,3,3,2],[0,3,0,1],[1,3,2,1]],[[1,2,0,1],[1,3,3,2],[0,3,0,1],[2,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,4,0,1],[1,2,2,1]],[[1,2,0,1],[1,3,3,3],[0,3,0,1],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[0,3,0,1],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[0,3,0,1],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[0,3,0,1],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,2,3,3],[1,1,0,1]],[[1,2,0,1],[1,3,3,3],[0,2,3,2],[1,1,0,1]],[[1,2,0,1],[1,3,4,2],[0,2,3,2],[1,1,0,1]],[[1,2,0,1],[1,4,3,2],[0,2,3,2],[1,1,0,1]],[[1,2,0,2],[1,3,3,2],[0,2,3,2],[1,1,0,1]],[[1,3,0,1],[1,3,3,2],[0,2,3,2],[1,1,0,1]],[[2,2,0,1],[1,3,3,2],[0,2,3,2],[1,1,0,1]],[[1,2,0,1],[1,3,3,2],[0,2,3,3],[0,1,2,0]],[[1,2,0,1],[1,3,3,3],[0,2,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,2],[0,2,3,2],[0,1,2,0]],[[1,2,0,2],[1,3,3,2],[0,2,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,2],[0,2,3,2],[0,1,1,2]],[[1,2,0,1],[1,3,3,2],[0,2,3,3],[0,1,1,1]],[[1,2,0,1],[1,3,3,3],[0,2,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,2],[0,2,3,2],[0,1,1,1]],[[1,2,0,2],[1,3,3,2],[0,2,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,2],[0,2,3,2],[0,0,2,2]],[[1,2,0,1],[1,3,3,2],[0,2,3,3],[0,0,2,1]],[[1,2,0,1],[1,3,3,3],[0,2,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,4,2],[0,2,3,2],[0,0,2,1]],[[1,2,0,2],[1,3,3,2],[0,2,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,3,2],[0,2,4,1],[1,2,1,0]],[[1,2,0,1],[1,3,3,3],[0,2,3,1],[1,2,1,0]],[[1,2,0,1],[1,3,4,2],[0,2,3,1],[1,2,1,0]],[[1,2,0,1],[1,4,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,0,2],[1,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,3,0,1],[1,3,3,2],[0,2,3,1],[1,2,1,0]],[[2,2,0,1],[1,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,0,1],[1,3,3,2],[0,2,4,1],[1,2,0,1]],[[1,2,0,1],[1,3,3,3],[0,2,3,1],[1,2,0,1]],[[1,2,0,1],[1,3,4,2],[0,2,3,1],[1,2,0,1]],[[1,2,0,1],[1,4,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,0,2],[1,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,3,0,1],[1,3,3,2],[0,2,3,1],[1,2,0,1]],[[2,2,0,1],[1,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,0,1],[1,3,3,2],[0,2,3,1],[1,1,3,0]],[[1,2,0,1],[1,3,3,2],[0,2,4,1],[1,1,2,0]],[[1,2,0,1],[1,3,3,3],[0,2,3,1],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[0,2,3,1],[1,1,2,0]],[[1,2,0,1],[1,4,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,0,2],[1,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[0,2,3,1],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[0,2,4,1],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[0,2,3,1],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[0,2,3,1],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[0,2,3,1],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[0,2,4,1],[1,0,2,1]],[[1,2,0,1],[1,3,3,3],[0,2,3,1],[1,0,2,1]],[[1,2,0,1],[1,3,4,2],[0,2,3,1],[1,0,2,1]],[[1,2,0,1],[1,4,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,0,2],[1,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,3,0,1],[1,3,3,2],[0,2,3,1],[1,0,2,1]],[[2,2,0,1],[1,3,3,2],[0,2,3,1],[1,0,2,1]],[[1,2,0,1],[1,3,3,2],[0,2,4,0],[1,2,1,1]],[[1,2,0,1],[1,3,3,3],[0,2,3,0],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[0,2,3,0],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[0,2,3,0],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[0,2,3,0],[1,1,2,2]],[[1,2,0,1],[1,3,3,2],[0,2,3,0],[1,1,3,1]],[[1,2,0,1],[1,3,3,2],[0,2,4,0],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[0,2,3,0],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[0,2,3,0],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[0,2,3,0],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,0,1],[1,3,3,2],[0,2,2,3],[1,2,1,0]],[[1,2,0,1],[1,3,3,3],[0,2,2,2],[1,2,1,0]],[[1,2,0,1],[1,3,4,2],[0,2,2,2],[1,2,1,0]],[[1,2,0,1],[1,4,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,0,2],[1,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,3,0,1],[1,3,3,2],[0,2,2,2],[1,2,1,0]],[[2,2,0,1],[1,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,0,1],[1,3,3,2],[0,2,2,2],[1,2,0,2]],[[1,2,0,1],[1,3,3,2],[0,2,2,3],[1,2,0,1]],[[1,2,0,1],[1,3,3,3],[0,2,2,2],[1,2,0,1]],[[1,2,0,1],[1,3,4,2],[0,2,2,2],[1,2,0,1]],[[1,2,0,1],[1,4,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,0,2],[1,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,3,0,1],[1,3,3,2],[0,2,2,2],[1,2,0,1]],[[2,2,0,1],[1,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,0,1],[1,3,3,2],[0,2,2,3],[1,1,2,0]],[[1,2,0,1],[1,3,3,3],[0,2,2,2],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[0,2,2,2],[1,1,2,0]],[[1,2,0,1],[1,4,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,0,2],[1,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,3,0,1],[1,3,3,2],[0,2,2,2],[1,1,2,0]],[[2,2,0,1],[1,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[0,2,2,2],[1,1,1,2]],[[1,2,0,1],[1,3,3,2],[0,2,2,3],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[0,2,2,2],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[0,2,2,2],[1,1,1,1]],[[1,2,0,1],[1,4,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,3,0,1],[1,3,3,2],[0,2,2,2],[1,1,1,1]],[[2,2,0,1],[1,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[0,2,2,2],[1,0,2,2]],[[1,2,0,1],[1,3,3,2],[0,2,2,3],[1,0,2,1]],[[1,2,0,1],[1,3,3,3],[0,2,2,2],[1,0,2,1]],[[1,2,0,1],[1,3,4,2],[0,2,2,2],[1,0,2,1]],[[1,2,0,1],[1,4,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,0,2],[1,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,3,0,1],[1,3,3,2],[0,2,2,2],[1,0,2,1]],[[2,2,0,1],[1,3,3,2],[0,2,2,2],[1,0,2,1]],[[1,2,0,1],[1,3,3,2],[0,2,1,2],[1,1,2,2]],[[1,2,0,1],[1,3,3,2],[0,2,1,2],[1,1,3,1]],[[1,2,0,1],[1,3,3,2],[0,2,1,3],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[0,2,1,2],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[0,2,1,2],[1,1,2,1]],[[1,2,0,1],[1,4,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,3,0,1],[1,3,3,2],[0,2,1,2],[1,1,2,1]],[[2,2,0,1],[1,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,0,1],[1,3,3,2],[0,2,0,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,2],[0,2,0,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,2],[0,2,0,2],[1,3,2,1]],[[1,2,0,1],[1,3,3,2],[0,2,0,2],[2,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,2,0,3],[1,2,2,1]],[[1,2,0,1],[1,3,3,3],[0,2,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[0,2,0,2],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[0,2,0,2],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[0,2,0,2],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,1,3,3],[1,1,2,0]],[[1,2,0,1],[1,3,3,3],[0,1,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,4,2],[0,1,3,2],[1,1,2,0]],[[1,2,0,2],[1,3,3,2],[0,1,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,2],[0,1,3,2],[1,1,1,2]],[[2,1,2,0],[2,3,3,0],[2,3,0,0],[1,2,2,1]],[[1,1,2,0],[3,3,3,0],[2,3,0,0],[1,2,2,1]],[[1,1,2,0],[2,3,3,0],[3,3,0,0],[1,2,2,1]],[[1,1,2,0],[2,3,3,0],[2,3,0,0],[2,2,2,1]],[[1,1,2,0],[2,3,3,0],[2,3,0,0],[1,3,2,1]],[[1,2,0,1],[1,3,3,2],[0,1,3,3],[1,1,1,1]],[[1,2,0,1],[1,3,3,3],[0,1,3,2],[1,1,1,1]],[[1,2,0,1],[1,3,4,2],[0,1,3,2],[1,1,1,1]],[[1,2,0,2],[1,3,3,2],[0,1,3,2],[1,1,1,1]],[[1,2,0,1],[1,3,3,2],[0,1,3,2],[1,0,2,2]],[[1,2,0,1],[1,3,3,2],[0,1,3,3],[1,0,2,1]],[[1,2,0,1],[1,3,3,3],[0,1,3,2],[1,0,2,1]],[[1,2,0,1],[1,3,4,2],[0,1,3,2],[1,0,2,1]],[[1,2,0,2],[1,3,3,2],[0,1,3,2],[1,0,2,1]],[[1,2,0,1],[1,3,3,2],[0,1,3,1],[1,2,3,0]],[[1,2,0,1],[1,3,3,2],[0,1,3,1],[1,3,2,0]],[[1,2,0,1],[1,3,3,2],[0,1,3,1],[2,2,2,0]],[[1,2,0,1],[1,3,3,2],[0,1,4,1],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[0,1,3,1],[1,2,2,0]],[[1,2,0,1],[1,3,4,2],[0,1,3,1],[1,2,2,0]],[[1,2,0,1],[1,4,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,0,2],[1,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,3,0,1],[1,3,3,2],[0,1,3,1],[1,2,2,0]],[[2,2,0,1],[1,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,0,1],[1,3,3,2],[0,1,4,1],[1,2,1,1]],[[1,2,0,1],[1,3,3,3],[0,1,3,1],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[0,1,3,1],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[0,1,3,1],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[0,1,3,0],[1,2,2,2]],[[1,2,0,1],[1,3,3,2],[0,1,3,0],[1,2,3,1]],[[1,2,0,1],[1,3,3,2],[0,1,3,0],[1,3,2,1]],[[1,2,0,1],[1,3,3,2],[0,1,3,0],[2,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,1,4,0],[1,2,2,1]],[[1,2,0,1],[1,3,3,3],[0,1,3,0],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[0,1,3,0],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[0,1,3,0],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,1,2,3],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[0,1,2,2],[1,2,2,0]],[[1,2,0,1],[1,3,4,2],[0,1,2,2],[1,2,2,0]],[[1,2,0,1],[1,4,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,0,2],[1,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,3,0,1],[1,3,3,2],[0,1,2,2],[1,2,2,0]],[[2,2,0,1],[1,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,2],[0,1,2,2],[1,2,1,2]],[[1,2,0,1],[1,3,3,2],[0,1,2,3],[1,2,1,1]],[[1,2,0,1],[1,3,3,3],[0,1,2,2],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[0,1,2,2],[1,2,1,1]],[[1,2,0,1],[1,4,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,3,0,1],[1,3,3,2],[0,1,2,2],[1,2,1,1]],[[2,2,0,1],[1,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[0,1,1,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,2],[0,1,1,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,2],[0,1,1,2],[1,3,2,1]],[[1,2,0,1],[1,3,3,2],[0,1,1,2],[2,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,1,1,3],[1,2,2,1]],[[1,2,0,1],[1,3,3,3],[0,1,1,2],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[0,1,1,2],[1,2,2,1]],[[1,2,0,1],[1,4,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,3,0,1],[1,3,3,2],[0,1,1,2],[1,2,2,1]],[[2,2,0,1],[1,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,0,3,3],[1,2,2,0]],[[1,2,0,1],[1,3,3,3],[0,0,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,4,2],[0,0,3,2],[1,2,2,0]],[[1,2,0,2],[1,3,3,2],[0,0,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,2],[0,0,3,2],[1,2,1,2]],[[1,2,0,1],[1,3,3,2],[0,0,3,3],[1,2,1,1]],[[1,2,0,1],[1,3,3,3],[0,0,3,2],[1,2,1,1]],[[1,2,0,1],[1,3,4,2],[0,0,3,2],[1,2,1,1]],[[1,2,0,2],[1,3,3,2],[0,0,3,2],[1,2,1,1]],[[1,2,0,1],[1,3,3,2],[0,0,3,2],[1,1,2,2]],[[1,2,0,1],[1,3,3,2],[0,0,3,3],[1,1,2,1]],[[1,2,0,1],[1,3,3,3],[0,0,3,2],[1,1,2,1]],[[1,2,0,1],[1,3,4,2],[0,0,3,2],[1,1,2,1]],[[1,2,0,2],[1,3,3,2],[0,0,3,2],[1,1,2,1]],[[1,2,0,1],[1,3,3,2],[0,0,3,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,2],[0,0,3,3],[0,2,2,1]],[[1,2,0,1],[1,3,3,3],[0,0,3,2],[0,2,2,1]],[[1,2,0,1],[1,3,4,2],[0,0,3,2],[0,2,2,1]],[[1,2,0,2],[1,3,3,2],[0,0,3,2],[0,2,2,1]],[[1,2,0,1],[1,3,3,2],[0,0,2,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,2],[0,0,2,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,2],[0,0,2,3],[1,2,2,1]],[[1,2,0,1],[1,3,3,3],[0,0,2,2],[1,2,2,1]],[[1,2,0,1],[1,3,4,2],[0,0,2,2],[1,2,2,1]],[[1,2,0,2],[1,3,3,2],[0,0,2,2],[1,2,2,1]],[[1,2,0,1],[1,3,4,1],[2,3,3,2],[1,0,0,0]],[[1,2,0,1],[1,4,3,1],[2,3,3,2],[1,0,0,0]],[[1,3,0,1],[1,3,3,1],[2,3,3,2],[1,0,0,0]],[[2,2,0,1],[1,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,2,0,1],[1,3,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,0,1],[1,3,3,1],[2,4,3,1],[1,1,0,0]],[[1,2,0,1],[1,3,3,1],[3,3,3,1],[1,1,0,0]],[[1,2,0,1],[1,4,3,1],[2,3,3,1],[1,1,0,0]],[[1,2,0,1],[1,3,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,0,1],[1,3,3,1],[3,3,3,1],[0,2,0,0]],[[1,2,0,1],[1,4,3,1],[2,3,3,1],[0,2,0,0]],[[1,2,0,1],[1,3,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,0,1],[1,3,3,1],[2,4,3,0],[1,2,0,0]],[[1,2,0,1],[1,3,3,1],[3,3,3,0],[1,2,0,0]],[[1,2,0,1],[1,4,3,1],[2,3,3,0],[1,2,0,0]],[[1,2,0,1],[1,3,3,1],[2,3,3,0],[2,1,1,0]],[[1,2,0,1],[1,3,3,1],[2,4,3,0],[1,1,1,0]],[[1,2,0,1],[1,3,3,1],[3,3,3,0],[1,1,1,0]],[[1,2,0,1],[1,4,3,1],[2,3,3,0],[1,1,1,0]],[[1,2,0,1],[1,3,3,1],[2,3,3,0],[2,0,2,0]],[[1,2,0,1],[1,3,3,1],[2,4,3,0],[1,0,2,0]],[[1,2,0,1],[1,3,3,1],[3,3,3,0],[1,0,2,0]],[[1,2,0,1],[1,4,3,1],[2,3,3,0],[1,0,2,0]],[[1,2,0,1],[1,3,3,1],[2,3,3,0],[0,3,1,0]],[[1,2,0,1],[1,3,3,1],[2,4,3,0],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[3,3,3,0],[0,2,1,0]],[[1,2,0,1],[1,4,3,1],[2,3,3,0],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[2,4,3,0],[0,1,2,0]],[[1,2,0,1],[1,3,3,1],[3,3,3,0],[0,1,2,0]],[[1,2,0,1],[1,4,3,1],[2,3,3,0],[0,1,2,0]],[[1,2,0,1],[1,3,4,1],[2,3,2,2],[1,0,1,0]],[[1,2,0,1],[1,4,3,1],[2,3,2,2],[1,0,1,0]],[[1,3,0,1],[1,3,3,1],[2,3,2,2],[1,0,1,0]],[[2,2,0,1],[1,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,2,0,1],[1,3,4,1],[2,3,2,2],[1,0,0,1]],[[1,2,0,1],[1,4,3,1],[2,3,2,2],[1,0,0,1]],[[1,3,0,1],[1,3,3,1],[2,3,2,2],[1,0,0,1]],[[2,2,0,1],[1,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,2,0,1],[1,3,3,1],[2,3,2,1],[2,2,0,0]],[[1,2,0,1],[1,3,3,1],[2,4,2,1],[1,2,0,0]],[[1,2,0,1],[1,3,3,1],[3,3,2,1],[1,2,0,0]],[[1,2,0,1],[1,4,3,1],[2,3,2,1],[1,2,0,0]],[[1,2,0,1],[1,3,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,0,1],[1,3,3,1],[2,4,2,1],[1,1,1,0]],[[1,2,0,1],[1,3,3,1],[3,3,2,1],[1,1,1,0]],[[1,2,0,1],[1,4,3,1],[2,3,2,1],[1,1,1,0]],[[1,2,0,1],[1,3,3,1],[2,3,2,1],[2,1,0,1]],[[1,2,0,1],[1,3,3,1],[2,4,2,1],[1,1,0,1]],[[1,2,0,1],[1,3,3,1],[3,3,2,1],[1,1,0,1]],[[1,2,0,1],[1,4,3,1],[2,3,2,1],[1,1,0,1]],[[1,1,2,0],[2,3,3,1],[0,0,3,3],[0,2,2,1]],[[1,1,2,0],[2,3,3,1],[0,0,3,2],[0,2,3,1]],[[1,1,2,0],[2,3,3,1],[0,0,3,2],[0,2,2,2]],[[1,1,2,0],[2,3,3,1],[0,1,2,3],[0,2,2,1]],[[1,1,2,0],[2,3,3,1],[0,1,2,2],[0,2,3,1]],[[1,1,2,0],[2,3,3,1],[0,1,2,2],[0,2,2,2]],[[1,1,3,0],[2,3,3,1],[0,1,3,1],[0,2,2,1]],[[1,1,2,0],[2,4,3,1],[0,1,3,1],[0,2,2,1]],[[1,1,2,0],[2,3,4,1],[0,1,3,1],[0,2,2,1]],[[1,1,2,0],[2,3,3,1],[0,1,4,1],[0,2,2,1]],[[1,1,2,0],[2,3,3,1],[0,1,3,1],[0,2,3,1]],[[1,1,2,0],[2,3,3,1],[0,1,3,1],[0,2,2,2]],[[1,1,3,0],[2,3,3,1],[0,1,3,2],[0,2,1,1]],[[1,1,2,0],[2,4,3,1],[0,1,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,4,1],[0,1,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,3,1],[0,1,4,2],[0,2,1,1]],[[1,1,2,0],[2,3,3,1],[0,1,3,3],[0,2,1,1]],[[1,1,2,0],[2,3,3,1],[0,1,3,2],[0,2,1,2]],[[1,1,3,0],[2,3,3,1],[0,1,3,2],[0,2,2,0]],[[1,1,2,0],[2,4,3,1],[0,1,3,2],[0,2,2,0]],[[1,1,2,0],[2,3,4,1],[0,1,3,2],[0,2,2,0]],[[1,1,2,0],[2,3,3,1],[0,1,4,2],[0,2,2,0]],[[1,1,2,0],[2,3,3,1],[0,1,3,3],[0,2,2,0]],[[1,1,2,0],[2,3,3,1],[0,1,3,2],[0,2,3,0]],[[1,2,0,1],[1,3,3,1],[2,3,2,1],[2,0,2,0]],[[1,2,0,1],[1,3,3,1],[2,4,2,1],[1,0,2,0]],[[1,2,0,1],[1,3,3,1],[3,3,2,1],[1,0,2,0]],[[1,2,0,1],[1,4,3,1],[2,3,2,1],[1,0,2,0]],[[1,1,2,0],[2,3,3,1],[0,2,2,3],[0,1,2,1]],[[1,1,2,0],[2,3,3,1],[0,2,2,2],[0,1,3,1]],[[1,1,2,0],[2,3,3,1],[0,2,2,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,1],[2,3,2,1],[0,3,1,0]],[[1,1,3,0],[2,3,3,1],[0,2,3,1],[0,1,2,1]],[[1,1,2,0],[2,4,3,1],[0,2,3,1],[0,1,2,1]],[[1,1,2,0],[2,3,4,1],[0,2,3,1],[0,1,2,1]],[[1,1,2,0],[2,3,3,1],[0,2,4,1],[0,1,2,1]],[[1,1,2,0],[2,3,3,1],[0,2,3,1],[0,1,3,1]],[[1,1,2,0],[2,3,3,1],[0,2,3,1],[0,1,2,2]],[[1,1,3,0],[2,3,3,1],[0,2,3,1],[0,2,1,1]],[[1,1,2,0],[2,4,3,1],[0,2,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,4,1],[0,2,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,3,1],[0,2,4,1],[0,2,1,1]],[[1,1,3,0],[2,3,3,1],[0,2,3,1],[1,0,2,1]],[[1,1,2,0],[2,4,3,1],[0,2,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,4,1],[0,2,3,1],[1,0,2,1]],[[1,1,2,0],[2,3,3,1],[0,2,4,1],[1,0,2,1]],[[1,2,0,1],[1,3,3,1],[2,4,2,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[3,3,2,1],[0,2,1,0]],[[1,2,0,1],[1,4,3,1],[2,3,2,1],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[2,4,2,1],[0,2,0,1]],[[1,2,0,1],[1,3,3,1],[3,3,2,1],[0,2,0,1]],[[1,2,0,1],[1,4,3,1],[2,3,2,1],[0,2,0,1]],[[1,1,3,0],[2,3,3,1],[0,2,3,2],[0,0,2,1]],[[1,1,2,0],[2,4,3,1],[0,2,3,2],[0,0,2,1]],[[1,1,2,0],[2,3,4,1],[0,2,3,2],[0,0,2,1]],[[1,1,2,0],[2,3,3,1],[0,2,4,2],[0,0,2,1]],[[1,1,2,0],[2,3,3,1],[0,2,3,3],[0,0,2,1]],[[1,1,2,0],[2,3,3,1],[0,2,3,2],[0,0,2,2]],[[1,1,3,0],[2,3,3,1],[0,2,3,2],[0,1,1,1]],[[1,1,2,0],[2,4,3,1],[0,2,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,4,1],[0,2,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,3,1],[0,2,4,2],[0,1,1,1]],[[1,1,2,0],[2,3,3,1],[0,2,3,3],[0,1,1,1]],[[1,1,2,0],[2,3,3,1],[0,2,3,2],[0,1,1,2]],[[1,1,3,0],[2,3,3,1],[0,2,3,2],[0,1,2,0]],[[1,1,2,0],[2,4,3,1],[0,2,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,4,1],[0,2,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,3,1],[0,2,4,2],[0,1,2,0]],[[1,1,2,0],[2,3,3,1],[0,2,3,3],[0,1,2,0]],[[1,1,2,0],[2,3,3,1],[0,2,3,2],[0,1,3,0]],[[1,1,3,0],[2,3,3,1],[0,2,3,2],[0,2,0,1]],[[1,1,2,0],[2,4,3,1],[0,2,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,4,1],[0,2,3,2],[0,2,0,1]],[[1,1,2,0],[2,3,3,1],[0,2,4,2],[0,2,0,1]],[[1,1,2,0],[2,3,3,1],[0,2,3,3],[0,2,0,1]],[[1,1,2,0],[2,3,3,1],[0,2,3,2],[0,2,0,2]],[[1,1,3,0],[2,3,3,1],[0,2,3,2],[0,2,1,0]],[[1,1,2,0],[2,4,3,1],[0,2,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,4,1],[0,2,3,2],[0,2,1,0]],[[1,1,2,0],[2,3,3,1],[0,2,4,2],[0,2,1,0]],[[1,1,2,0],[2,3,3,1],[0,2,3,3],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[2,4,2,1],[0,1,2,0]],[[1,2,0,1],[1,3,3,1],[3,3,2,1],[0,1,2,0]],[[1,2,0,1],[1,4,3,1],[2,3,2,1],[0,1,2,0]],[[1,1,3,0],[2,3,3,1],[0,2,3,2],[1,0,1,1]],[[1,1,2,0],[2,4,3,1],[0,2,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,4,1],[0,2,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,3,1],[0,2,4,2],[1,0,1,1]],[[1,1,2,0],[2,3,3,1],[0,2,3,3],[1,0,1,1]],[[1,1,2,0],[2,3,3,1],[0,2,3,2],[1,0,1,2]],[[1,1,3,0],[2,3,3,1],[0,2,3,2],[1,0,2,0]],[[1,1,2,0],[2,4,3,1],[0,2,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,4,1],[0,2,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,3,1],[0,2,4,2],[1,0,2,0]],[[1,1,2,0],[2,3,3,1],[0,2,3,3],[1,0,2,0]],[[1,1,3,0],[2,3,3,1],[0,2,3,2],[1,1,0,1]],[[1,1,2,0],[2,4,3,1],[0,2,3,2],[1,1,0,1]],[[1,1,2,0],[2,3,4,1],[0,2,3,2],[1,1,0,1]],[[1,1,3,0],[2,3,3,1],[0,2,3,2],[1,1,1,0]],[[1,1,2,0],[2,4,3,1],[0,2,3,2],[1,1,1,0]],[[1,1,2,0],[2,3,4,1],[0,2,3,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,0,1],[1,3,3,1],[2,4,2,0],[1,2,0,1]],[[1,2,0,1],[1,3,3,1],[3,3,2,0],[1,2,0,1]],[[1,2,0,1],[1,4,3,1],[2,3,2,0],[1,2,0,1]],[[1,2,0,1],[1,3,3,1],[2,3,2,0],[2,1,1,1]],[[1,2,0,1],[1,3,3,1],[2,4,2,0],[1,1,1,1]],[[1,2,0,1],[1,3,3,1],[3,3,2,0],[1,1,1,1]],[[1,2,0,1],[1,4,3,1],[2,3,2,0],[1,1,1,1]],[[1,2,0,1],[1,3,3,1],[2,3,2,0],[2,0,2,1]],[[1,2,0,1],[1,3,3,1],[2,4,2,0],[1,0,2,1]],[[1,2,0,1],[1,3,3,1],[3,3,2,0],[1,0,2,1]],[[1,2,0,1],[1,4,3,1],[2,3,2,0],[1,0,2,1]],[[1,2,0,1],[1,3,3,1],[2,3,2,0],[0,3,1,1]],[[1,2,0,1],[1,3,3,1],[2,4,2,0],[0,2,1,1]],[[1,2,0,1],[1,3,3,1],[3,3,2,0],[0,2,1,1]],[[1,2,0,1],[1,4,3,1],[2,3,2,0],[0,2,1,1]],[[1,2,0,1],[1,3,3,1],[2,4,2,0],[0,1,2,1]],[[1,2,0,1],[1,3,3,1],[3,3,2,0],[0,1,2,1]],[[1,2,0,1],[1,4,3,1],[2,3,2,0],[0,1,2,1]],[[1,1,3,0],[2,3,3,1],[0,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,4,3,1],[0,3,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,4,1],[0,3,0,2],[0,2,2,1]],[[1,1,3,0],[2,3,3,1],[0,3,1,1],[0,2,2,1]],[[1,1,2,0],[2,4,3,1],[0,3,1,1],[0,2,2,1]],[[1,1,2,0],[2,3,4,1],[0,3,1,1],[0,2,2,1]],[[1,1,3,0],[2,3,3,1],[0,3,1,2],[0,2,2,0]],[[1,1,2,0],[2,4,3,1],[0,3,1,2],[0,2,2,0]],[[1,1,2,0],[2,3,4,1],[0,3,1,2],[0,2,2,0]],[[1,1,3,0],[2,3,3,1],[0,3,2,1],[0,1,2,1]],[[1,1,2,0],[2,4,3,1],[0,3,2,1],[0,1,2,1]],[[1,1,2,0],[2,3,4,1],[0,3,2,1],[0,1,2,1]],[[1,1,3,0],[2,3,3,1],[0,3,2,1],[0,2,1,1]],[[1,1,2,0],[2,4,3,1],[0,3,2,1],[0,2,1,1]],[[1,1,2,0],[2,3,4,1],[0,3,2,1],[0,2,1,1]],[[1,1,3,0],[2,3,3,1],[0,3,2,1],[1,0,2,1]],[[1,1,2,0],[2,4,3,1],[0,3,2,1],[1,0,2,1]],[[1,1,2,0],[2,3,4,1],[0,3,2,1],[1,0,2,1]],[[1,2,0,1],[1,3,3,1],[2,3,1,1],[2,1,2,0]],[[1,1,3,0],[2,3,3,1],[0,3,2,2],[0,1,1,1]],[[1,1,2,0],[2,4,3,1],[0,3,2,2],[0,1,1,1]],[[1,1,2,0],[2,3,4,1],[0,3,2,2],[0,1,1,1]],[[1,1,3,0],[2,3,3,1],[0,3,2,2],[0,1,2,0]],[[1,1,2,0],[2,4,3,1],[0,3,2,2],[0,1,2,0]],[[1,1,2,0],[2,3,4,1],[0,3,2,2],[0,1,2,0]],[[1,1,3,0],[2,3,3,1],[0,3,2,2],[0,2,0,1]],[[1,1,2,0],[2,4,3,1],[0,3,2,2],[0,2,0,1]],[[1,1,2,0],[2,3,4,1],[0,3,2,2],[0,2,0,1]],[[1,1,3,0],[2,3,3,1],[0,3,2,2],[0,2,1,0]],[[1,1,2,0],[2,4,3,1],[0,3,2,2],[0,2,1,0]],[[1,1,2,0],[2,3,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[2,4,1,1],[1,1,2,0]],[[1,2,0,1],[1,3,3,1],[3,3,1,1],[1,1,2,0]],[[1,2,0,1],[1,4,3,1],[2,3,1,1],[1,1,2,0]],[[1,1,3,0],[2,3,3,1],[0,3,2,2],[1,0,1,1]],[[1,1,2,0],[2,4,3,1],[0,3,2,2],[1,0,1,1]],[[1,1,2,0],[2,3,4,1],[0,3,2,2],[1,0,1,1]],[[1,1,3,0],[2,3,3,1],[0,3,2,2],[1,0,2,0]],[[1,1,2,0],[2,4,3,1],[0,3,2,2],[1,0,2,0]],[[1,1,2,0],[2,3,4,1],[0,3,2,2],[1,0,2,0]],[[1,1,3,0],[2,3,3,1],[0,3,2,2],[1,1,0,1]],[[1,1,2,0],[2,4,3,1],[0,3,2,2],[1,1,0,1]],[[1,1,2,0],[2,3,4,1],[0,3,2,2],[1,1,0,1]],[[1,1,3,0],[2,3,3,1],[0,3,2,2],[1,1,1,0]],[[1,1,2,0],[2,4,3,1],[0,3,2,2],[1,1,1,0]],[[1,1,2,0],[2,3,4,1],[0,3,2,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,1],[2,3,1,1],[0,3,2,0]],[[1,2,0,1],[1,3,3,1],[2,4,1,1],[0,2,2,0]],[[1,2,0,1],[1,3,3,1],[3,3,1,1],[0,2,2,0]],[[1,2,0,1],[1,4,3,1],[2,3,1,1],[0,2,2,0]],[[1,2,0,1],[1,3,3,1],[2,3,1,0],[2,1,2,1]],[[1,2,0,1],[1,3,3,1],[2,4,1,0],[1,1,2,1]],[[1,2,0,1],[1,3,3,1],[3,3,1,0],[1,1,2,1]],[[1,2,0,1],[1,4,3,1],[2,3,1,0],[1,1,2,1]],[[1,2,0,1],[1,3,3,1],[2,3,1,0],[0,2,3,1]],[[1,2,0,1],[1,3,3,1],[2,3,1,0],[0,3,2,1]],[[1,2,0,1],[1,3,3,1],[2,4,1,0],[0,2,2,1]],[[1,2,0,1],[1,3,3,1],[3,3,1,0],[0,2,2,1]],[[1,2,0,1],[1,4,3,1],[2,3,1,0],[0,2,2,1]],[[1,1,3,0],[2,3,3,1],[0,3,3,1],[0,0,2,1]],[[1,1,2,0],[2,4,3,1],[0,3,3,1],[0,0,2,1]],[[1,1,2,0],[2,3,4,1],[0,3,3,1],[0,0,2,1]],[[1,1,2,0],[2,3,3,1],[0,3,4,1],[0,0,2,1]],[[1,2,0,1],[1,3,3,1],[2,3,0,1],[1,3,2,0]],[[1,2,0,1],[1,3,3,1],[2,3,0,1],[2,2,2,0]],[[1,2,0,1],[1,3,3,1],[3,3,0,1],[1,2,2,0]],[[1,2,0,1],[1,3,3,1],[2,3,0,0],[1,3,2,1]],[[1,2,0,1],[1,3,3,1],[2,3,0,0],[2,2,2,1]],[[1,2,0,1],[1,3,3,1],[3,3,0,0],[1,2,2,1]],[[1,2,0,1],[1,3,4,1],[2,2,3,2],[1,1,0,0]],[[1,2,0,1],[1,4,3,1],[2,2,3,2],[1,1,0,0]],[[1,3,0,1],[1,3,3,1],[2,2,3,2],[1,1,0,0]],[[2,2,0,1],[1,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,3,0],[2,3,3,1],[0,3,3,2],[0,0,1,1]],[[1,1,2,0],[2,4,3,1],[0,3,3,2],[0,0,1,1]],[[1,1,2,0],[2,3,4,1],[0,3,3,2],[0,0,1,1]],[[1,1,2,0],[2,3,3,1],[0,3,4,2],[0,0,1,1]],[[1,1,2,0],[2,3,3,1],[0,3,3,3],[0,0,1,1]],[[1,1,2,0],[2,3,3,1],[0,3,3,2],[0,0,1,2]],[[1,1,3,0],[2,3,3,1],[0,3,3,2],[0,0,2,0]],[[1,1,2,0],[2,4,3,1],[0,3,3,2],[0,0,2,0]],[[1,1,2,0],[2,3,4,1],[0,3,3,2],[0,0,2,0]],[[1,1,2,0],[2,3,3,1],[0,3,4,2],[0,0,2,0]],[[1,1,2,0],[2,3,3,1],[0,3,3,3],[0,0,2,0]],[[1,1,3,0],[2,3,3,1],[0,3,3,2],[0,2,0,0]],[[1,1,2,0],[2,4,3,1],[0,3,3,2],[0,2,0,0]],[[1,1,2,0],[2,3,4,1],[0,3,3,2],[0,2,0,0]],[[1,2,0,1],[1,3,4,1],[2,2,3,2],[0,2,0,0]],[[1,2,0,1],[1,4,3,1],[2,2,3,2],[0,2,0,0]],[[1,3,0,1],[1,3,3,1],[2,2,3,2],[0,2,0,0]],[[2,2,0,1],[1,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,3,0],[2,3,3,1],[0,3,3,2],[1,1,0,0]],[[1,1,2,0],[2,4,3,1],[0,3,3,2],[1,1,0,0]],[[1,1,2,0],[2,3,4,1],[0,3,3,2],[1,1,0,0]],[[1,2,0,1],[1,3,3,1],[2,2,3,0],[1,3,1,0]],[[1,2,0,1],[1,3,3,1],[2,2,3,0],[2,2,1,0]],[[1,2,0,1],[1,3,3,1],[3,2,3,0],[1,2,1,0]],[[1,2,0,1],[1,3,4,1],[2,2,2,2],[1,2,0,0]],[[1,2,0,1],[1,4,3,1],[2,2,2,2],[1,2,0,0]],[[1,3,0,1],[1,3,3,1],[2,2,2,2],[1,2,0,0]],[[2,2,0,1],[1,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,2,0,1],[1,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,0,1],[1,4,3,1],[2,2,2,2],[1,1,1,0]],[[1,3,0,1],[1,3,3,1],[2,2,2,2],[1,1,1,0]],[[2,2,0,1],[1,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,0,1],[1,3,4,1],[2,2,2,2],[1,1,0,1]],[[1,2,0,1],[1,4,3,1],[2,2,2,2],[1,1,0,1]],[[1,3,0,1],[1,3,3,1],[2,2,2,2],[1,1,0,1]],[[2,2,0,1],[1,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,2,0,1],[1,3,4,1],[2,2,2,2],[1,0,2,0]],[[1,2,0,1],[1,4,3,1],[2,2,2,2],[1,0,2,0]],[[1,3,0,1],[1,3,3,1],[2,2,2,2],[1,0,2,0]],[[2,2,0,1],[1,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,0,1],[1,3,4,1],[2,2,2,2],[1,0,1,1]],[[1,2,0,1],[1,4,3,1],[2,2,2,2],[1,0,1,1]],[[1,3,0,1],[1,3,3,1],[2,2,2,2],[1,0,1,1]],[[2,2,0,1],[1,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,0,1],[1,3,4,1],[2,2,2,2],[0,2,1,0]],[[1,2,0,1],[1,4,3,1],[2,2,2,2],[0,2,1,0]],[[1,3,0,1],[1,3,3,1],[2,2,2,2],[0,2,1,0]],[[2,2,0,1],[1,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,4,1],[2,2,2,2],[0,2,0,1]],[[1,2,0,1],[1,4,3,1],[2,2,2,2],[0,2,0,1]],[[1,3,0,1],[1,3,3,1],[2,2,2,2],[0,2,0,1]],[[2,2,0,1],[1,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,0,1],[1,3,4,1],[2,2,2,2],[0,1,2,0]],[[1,2,0,1],[1,4,3,1],[2,2,2,2],[0,1,2,0]],[[1,3,0,1],[1,3,3,1],[2,2,2,2],[0,1,2,0]],[[2,2,0,1],[1,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,1],[2,2,2,2],[0,1,1,1]],[[1,2,0,1],[1,4,3,1],[2,2,2,2],[0,1,1,1]],[[1,3,0,1],[1,3,3,1],[2,2,2,2],[0,1,1,1]],[[2,2,0,1],[1,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,0,1],[1,3,3,1],[2,2,2,1],[2,2,1,0]],[[1,2,0,1],[1,3,3,1],[3,2,2,1],[1,2,1,0]],[[1,2,0,1],[1,3,4,1],[2,2,2,1],[1,1,1,1]],[[1,2,0,1],[1,4,3,1],[2,2,2,1],[1,1,1,1]],[[1,3,0,1],[1,3,3,1],[2,2,2,1],[1,1,1,1]],[[2,2,0,1],[1,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,2,0,1],[1,3,4,1],[2,2,2,1],[1,0,2,1]],[[1,2,0,1],[1,4,3,1],[2,2,2,1],[1,0,2,1]],[[1,3,0,1],[1,3,3,1],[2,2,2,1],[1,0,2,1]],[[2,2,0,1],[1,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,2,0,1],[1,3,4,1],[2,2,2,1],[0,2,1,1]],[[1,2,0,1],[1,4,3,1],[2,2,2,1],[0,2,1,1]],[[1,3,0,1],[1,3,3,1],[2,2,2,1],[0,2,1,1]],[[2,2,0,1],[1,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,2,0,1],[1,3,4,1],[2,2,2,1],[0,1,2,1]],[[1,2,0,1],[1,4,3,1],[2,2,2,1],[0,1,2,1]],[[1,3,0,1],[1,3,3,1],[2,2,2,1],[0,1,2,1]],[[2,2,0,1],[1,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,2,0,1],[1,3,3,1],[2,2,2,0],[1,3,1,1]],[[1,2,0,1],[1,3,3,1],[2,2,2,0],[2,2,1,1]],[[1,2,0,1],[1,3,3,1],[3,2,2,0],[1,2,1,1]],[[1,2,0,1],[1,3,4,1],[2,2,1,2],[1,1,2,0]],[[1,2,0,1],[1,4,3,1],[2,2,1,2],[1,1,2,0]],[[1,3,0,1],[1,3,3,1],[2,2,1,2],[1,1,2,0]],[[2,2,0,1],[1,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,2,0,1],[1,3,4,1],[2,2,1,2],[0,2,2,0]],[[1,2,0,1],[1,4,3,1],[2,2,1,2],[0,2,2,0]],[[1,3,0,1],[1,3,3,1],[2,2,1,2],[0,2,2,0]],[[2,2,0,1],[1,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,1],[2,2,1,1],[1,3,2,0]],[[1,2,0,1],[1,3,3,1],[2,2,1,1],[2,2,2,0]],[[1,2,0,1],[1,3,3,1],[3,2,1,1],[1,2,2,0]],[[1,2,0,1],[1,3,4,1],[2,2,1,1],[1,1,2,1]],[[1,2,0,1],[1,4,3,1],[2,2,1,1],[1,1,2,1]],[[1,3,0,1],[1,3,3,1],[2,2,1,1],[1,1,2,1]],[[2,2,0,1],[1,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,2,0,1],[1,3,4,1],[2,2,1,1],[0,2,2,1]],[[1,2,0,1],[1,4,3,1],[2,2,1,1],[0,2,2,1]],[[1,3,0,1],[1,3,3,1],[2,2,1,1],[0,2,2,1]],[[2,2,0,1],[1,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,2,0,1],[1,3,3,1],[2,2,1,0],[1,2,3,1]],[[1,2,0,1],[1,3,3,1],[2,2,1,0],[1,3,2,1]],[[1,2,0,1],[1,3,3,1],[2,2,1,0],[2,2,2,1]],[[1,2,0,1],[1,3,3,1],[3,2,1,0],[1,2,2,1]],[[1,2,0,1],[1,3,4,1],[2,2,0,2],[1,1,2,1]],[[1,2,0,1],[1,4,3,1],[2,2,0,2],[1,1,2,1]],[[1,3,0,1],[1,3,3,1],[2,2,0,2],[1,1,2,1]],[[2,2,0,1],[1,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,0,1],[1,3,4,1],[2,2,0,2],[0,2,2,1]],[[1,2,0,1],[1,4,3,1],[2,2,0,2],[0,2,2,1]],[[1,3,0,1],[1,3,3,1],[2,2,0,2],[0,2,2,1]],[[2,2,0,1],[1,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,0,1],[1,3,3,1],[2,1,3,3],[1,1,1,0]],[[1,2,0,1],[1,3,3,1],[2,1,4,2],[1,1,1,0]],[[1,2,0,1],[1,3,4,1],[2,1,3,2],[1,1,1,0]],[[1,2,0,1],[1,4,3,1],[2,1,3,2],[1,1,1,0]],[[1,3,0,1],[1,3,3,1],[2,1,3,2],[1,1,1,0]],[[2,2,0,1],[1,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,1],[2,1,3,2],[1,1,0,2]],[[1,2,0,1],[1,3,3,1],[2,1,3,3],[1,1,0,1]],[[1,2,0,1],[1,3,3,1],[2,1,4,2],[1,1,0,1]],[[1,2,0,1],[1,3,4,1],[2,1,3,2],[1,1,0,1]],[[1,2,0,1],[1,4,3,1],[2,1,3,2],[1,1,0,1]],[[1,3,0,1],[1,3,3,1],[2,1,3,2],[1,1,0,1]],[[2,2,0,1],[1,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,2,0,1],[1,3,3,1],[2,1,3,2],[1,0,3,0]],[[1,2,0,1],[1,3,3,1],[2,1,3,3],[1,0,2,0]],[[1,2,0,1],[1,3,3,1],[2,1,4,2],[1,0,2,0]],[[1,2,0,1],[1,3,4,1],[2,1,3,2],[1,0,2,0]],[[1,2,0,1],[1,4,3,1],[2,1,3,2],[1,0,2,0]],[[1,3,0,1],[1,3,3,1],[2,1,3,2],[1,0,2,0]],[[2,2,0,1],[1,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,1],[2,1,3,2],[1,0,1,2]],[[1,2,0,1],[1,3,3,1],[2,1,3,3],[1,0,1,1]],[[1,2,0,1],[1,3,3,1],[2,1,4,2],[1,0,1,1]],[[1,2,0,1],[1,3,4,1],[2,1,3,2],[1,0,1,1]],[[1,2,0,1],[1,4,3,1],[2,1,3,2],[1,0,1,1]],[[1,3,0,1],[1,3,3,1],[2,1,3,2],[1,0,1,1]],[[2,2,0,1],[1,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,3,1],[2,1,3,3],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[2,1,4,2],[0,2,1,0]],[[1,2,0,1],[1,3,4,1],[2,1,3,2],[0,2,1,0]],[[1,2,0,1],[1,4,3,1],[2,1,3,2],[0,2,1,0]],[[1,3,0,1],[1,3,3,1],[2,1,3,2],[0,2,1,0]],[[2,2,0,1],[1,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[2,1,3,2],[0,2,0,2]],[[1,2,0,1],[1,3,3,1],[2,1,3,3],[0,2,0,1]],[[1,2,0,1],[1,3,3,1],[2,1,4,2],[0,2,0,1]],[[1,2,0,1],[1,3,4,1],[2,1,3,2],[0,2,0,1]],[[1,2,0,1],[1,4,3,1],[2,1,3,2],[0,2,0,1]],[[1,3,0,1],[1,3,3,1],[2,1,3,2],[0,2,0,1]],[[2,2,0,1],[1,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,2,0,1],[1,3,3,1],[2,1,3,2],[0,1,3,0]],[[1,2,0,1],[1,3,3,1],[2,1,3,3],[0,1,2,0]],[[1,2,0,1],[1,3,3,1],[2,1,4,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,1],[2,1,3,2],[0,1,2,0]],[[1,2,0,1],[1,4,3,1],[2,1,3,2],[0,1,2,0]],[[1,3,0,1],[1,3,3,1],[2,1,3,2],[0,1,2,0]],[[2,2,0,1],[1,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,1],[2,1,3,2],[0,1,1,2]],[[1,2,0,1],[1,3,3,1],[2,1,3,3],[0,1,1,1]],[[1,2,0,1],[1,3,3,1],[2,1,4,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,1],[2,1,3,2],[0,1,1,1]],[[1,2,0,1],[1,4,3,1],[2,1,3,2],[0,1,1,1]],[[1,3,0,1],[1,3,3,1],[2,1,3,2],[0,1,1,1]],[[2,2,0,1],[1,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,1],[2,1,3,2],[0,0,2,2]],[[1,2,0,1],[1,3,3,1],[2,1,3,3],[0,0,2,1]],[[1,2,0,1],[1,3,3,1],[2,1,4,2],[0,0,2,1]],[[1,2,0,1],[1,3,4,1],[2,1,3,2],[0,0,2,1]],[[1,2,0,1],[1,4,3,1],[2,1,3,2],[0,0,2,1]],[[1,3,0,1],[1,3,3,1],[2,1,3,2],[0,0,2,1]],[[2,2,0,1],[1,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,3,1],[2,1,4,1],[1,1,1,1]],[[1,2,0,1],[1,3,4,1],[2,1,3,1],[1,1,1,1]],[[1,2,0,1],[1,4,3,1],[2,1,3,1],[1,1,1,1]],[[1,3,0,1],[1,3,3,1],[2,1,3,1],[1,1,1,1]],[[2,2,0,1],[1,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,2,0,1],[1,3,3,1],[2,1,3,1],[1,0,2,2]],[[1,2,0,1],[1,3,3,1],[2,1,3,1],[1,0,3,1]],[[1,2,0,1],[1,3,3,1],[2,1,4,1],[1,0,2,1]],[[1,2,0,1],[1,3,4,1],[2,1,3,1],[1,0,2,1]],[[1,2,0,1],[1,4,3,1],[2,1,3,1],[1,0,2,1]],[[1,3,0,1],[1,3,3,1],[2,1,3,1],[1,0,2,1]],[[2,2,0,1],[1,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,2,0,1],[1,3,3,1],[2,1,4,1],[0,2,1,1]],[[1,2,0,1],[1,3,4,1],[2,1,3,1],[0,2,1,1]],[[1,2,0,1],[1,4,3,1],[2,1,3,1],[0,2,1,1]],[[1,3,0,1],[1,3,3,1],[2,1,3,1],[0,2,1,1]],[[2,2,0,1],[1,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,0,1],[1,3,3,1],[2,1,3,1],[0,1,2,2]],[[1,2,0,1],[1,3,3,1],[2,1,3,1],[0,1,3,1]],[[1,2,0,1],[1,3,3,1],[2,1,4,1],[0,1,2,1]],[[1,2,0,1],[1,3,4,1],[2,1,3,1],[0,1,2,1]],[[1,2,0,1],[1,4,3,1],[2,1,3,1],[0,1,2,1]],[[1,3,0,1],[1,3,3,1],[2,1,3,1],[0,1,2,1]],[[2,2,0,1],[1,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,2,0,1],[1,3,4,1],[2,1,2,2],[1,2,1,0]],[[1,2,0,1],[1,4,3,1],[2,1,2,2],[1,2,1,0]],[[1,3,0,1],[1,3,3,1],[2,1,2,2],[1,2,1,0]],[[2,2,0,1],[1,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,0,1],[1,3,4,1],[2,1,2,2],[1,2,0,1]],[[1,2,0,1],[1,4,3,1],[2,1,2,2],[1,2,0,1]],[[1,3,0,1],[1,3,3,1],[2,1,2,2],[1,2,0,1]],[[2,2,0,1],[1,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,0,1],[1,3,3,1],[2,1,2,2],[1,0,2,2]],[[1,2,0,1],[1,3,3,1],[2,1,2,2],[1,0,3,1]],[[1,2,0,1],[1,3,3,1],[2,1,2,3],[1,0,2,1]],[[1,2,0,1],[1,3,3,1],[2,1,2,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,1],[2,1,2,2],[0,1,3,1]],[[1,2,0,1],[1,3,3,1],[2,1,2,3],[0,1,2,1]],[[1,2,0,1],[1,3,4,1],[2,1,2,1],[1,2,1,1]],[[1,2,0,1],[1,4,3,1],[2,1,2,1],[1,2,1,1]],[[1,3,0,1],[1,3,3,1],[2,1,2,1],[1,2,1,1]],[[2,2,0,1],[1,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,2,0,1],[1,3,4,1],[2,1,1,2],[1,2,2,0]],[[1,2,0,1],[1,4,3,1],[2,1,1,2],[1,2,2,0]],[[1,3,0,1],[1,3,3,1],[2,1,1,2],[1,2,2,0]],[[2,2,0,1],[1,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,0,1],[1,3,4,1],[2,1,1,1],[1,2,2,1]],[[1,2,0,1],[1,4,3,1],[2,1,1,1],[1,2,2,1]],[[1,3,0,1],[1,3,3,1],[2,1,1,1],[1,2,2,1]],[[2,2,0,1],[1,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,2,0,1],[1,3,4,1],[2,1,0,2],[1,2,2,1]],[[1,2,0,1],[1,4,3,1],[2,1,0,2],[1,2,2,1]],[[1,3,0,1],[1,3,3,1],[2,1,0,2],[1,2,2,1]],[[2,2,0,1],[1,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,3,1],[2,0,3,3],[1,2,1,0]],[[1,2,0,1],[1,3,3,1],[2,0,4,2],[1,2,1,0]],[[1,2,0,1],[1,3,4,1],[2,0,3,2],[1,2,1,0]],[[1,2,0,1],[1,4,3,1],[2,0,3,2],[1,2,1,0]],[[1,3,0,1],[1,3,3,1],[2,0,3,2],[1,2,1,0]],[[2,2,0,1],[1,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,2,0,1],[1,3,3,1],[2,0,3,2],[1,2,0,2]],[[1,2,0,1],[1,3,3,1],[2,0,3,3],[1,2,0,1]],[[1,2,0,1],[1,3,3,1],[2,0,4,2],[1,2,0,1]],[[1,2,0,1],[1,3,4,1],[2,0,3,2],[1,2,0,1]],[[1,2,0,1],[1,4,3,1],[2,0,3,2],[1,2,0,1]],[[1,3,0,1],[1,3,3,1],[2,0,3,2],[1,2,0,1]],[[2,2,0,1],[1,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,2,0,1],[1,3,3,1],[2,0,3,2],[1,1,3,0]],[[1,2,0,1],[1,3,3,1],[2,0,3,3],[1,1,2,0]],[[1,2,0,1],[1,3,3,1],[2,0,4,2],[1,1,2,0]],[[1,2,0,1],[1,3,4,1],[2,0,3,2],[1,1,2,0]],[[1,2,0,1],[1,4,3,1],[2,0,3,2],[1,1,2,0]],[[1,3,0,1],[1,3,3,1],[2,0,3,2],[1,1,2,0]],[[2,2,0,1],[1,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,1],[2,0,3,2],[1,1,1,2]],[[1,2,0,1],[1,3,3,1],[2,0,3,3],[1,1,1,1]],[[1,2,0,1],[1,3,3,1],[2,0,4,2],[1,1,1,1]],[[1,2,0,1],[1,3,4,1],[2,0,3,2],[1,1,1,1]],[[1,2,0,1],[1,4,3,1],[2,0,3,2],[1,1,1,1]],[[1,3,0,1],[1,3,3,1],[2,0,3,2],[1,1,1,1]],[[2,2,0,1],[1,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,2,0,1],[1,3,3,1],[2,0,3,2],[0,2,3,0]],[[1,2,0,1],[1,3,3,1],[2,0,3,2],[0,3,2,0]],[[1,2,0,1],[1,3,3,1],[2,0,3,3],[0,2,2,0]],[[1,2,0,1],[1,3,3,1],[2,0,4,2],[0,2,2,0]],[[1,2,0,1],[1,3,4,1],[2,0,3,2],[0,2,2,0]],[[1,2,0,1],[1,4,3,1],[2,0,3,2],[0,2,2,0]],[[1,3,0,1],[1,3,3,1],[2,0,3,2],[0,2,2,0]],[[2,2,0,1],[1,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,1],[2,0,3,2],[0,2,1,2]],[[1,2,0,1],[1,3,3,1],[2,0,3,3],[0,2,1,1]],[[1,2,0,1],[1,3,3,1],[2,0,4,2],[0,2,1,1]],[[1,2,0,1],[1,3,4,1],[2,0,3,2],[0,2,1,1]],[[1,2,0,1],[1,4,3,1],[2,0,3,2],[0,2,1,1]],[[1,3,0,1],[1,3,3,1],[2,0,3,2],[0,2,1,1]],[[2,2,0,1],[1,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,2,0,1],[1,3,3,1],[2,0,4,1],[1,2,1,1]],[[1,2,0,1],[1,3,4,1],[2,0,3,1],[1,2,1,1]],[[1,2,0,1],[1,4,3,1],[2,0,3,1],[1,2,1,1]],[[1,3,0,1],[1,3,3,1],[2,0,3,1],[1,2,1,1]],[[2,2,0,1],[1,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,0,1],[1,3,3,1],[2,0,3,1],[1,1,2,2]],[[1,2,0,1],[1,3,3,1],[2,0,3,1],[1,1,3,1]],[[1,2,0,1],[1,3,3,1],[2,0,4,1],[1,1,2,1]],[[1,2,0,1],[1,3,4,1],[2,0,3,1],[1,1,2,1]],[[1,2,0,1],[1,4,3,1],[2,0,3,1],[1,1,2,1]],[[1,3,0,1],[1,3,3,1],[2,0,3,1],[1,1,2,1]],[[2,2,0,1],[1,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,2,0,1],[1,3,3,1],[2,0,3,1],[0,2,2,2]],[[1,2,0,1],[1,3,3,1],[2,0,3,1],[0,2,3,1]],[[1,2,0,1],[1,3,3,1],[2,0,3,1],[0,3,2,1]],[[1,2,0,1],[1,3,3,1],[2,0,4,1],[0,2,2,1]],[[1,2,0,1],[1,3,4,1],[2,0,3,1],[0,2,2,1]],[[1,2,0,1],[1,4,3,1],[2,0,3,1],[0,2,2,1]],[[1,3,0,1],[1,3,3,1],[2,0,3,1],[0,2,2,1]],[[2,2,0,1],[1,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,2,0,1],[1,3,4,1],[2,0,2,2],[1,2,2,0]],[[1,2,0,1],[1,4,3,1],[2,0,2,2],[1,2,2,0]],[[1,3,0,1],[1,3,3,1],[2,0,2,2],[1,2,2,0]],[[2,2,0,1],[1,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,1],[2,0,2,2],[1,1,2,2]],[[1,2,0,1],[1,3,3,1],[2,0,2,2],[1,1,3,1]],[[1,2,0,1],[1,3,3,1],[2,0,2,3],[1,1,2,1]],[[1,2,0,1],[1,3,3,1],[2,0,2,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,1],[2,0,2,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,1],[2,0,2,2],[0,3,2,1]],[[1,2,0,1],[1,3,3,1],[2,0,2,3],[0,2,2,1]],[[1,2,0,1],[1,3,4,1],[2,0,2,1],[1,2,2,1]],[[1,2,0,1],[1,4,3,1],[2,0,2,1],[1,2,2,1]],[[1,3,0,1],[1,3,3,1],[2,0,2,1],[1,2,2,1]],[[2,2,0,1],[1,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,2,0,1],[1,3,4,1],[2,0,1,2],[1,2,2,1]],[[1,2,0,1],[1,4,3,1],[2,0,1,2],[1,2,2,1]],[[1,3,0,1],[1,3,3,1],[2,0,1,2],[1,2,2,1]],[[2,2,0,1],[1,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,0,1],[1,3,4,1],[1,3,3,2],[1,1,0,0]],[[1,2,0,1],[1,4,3,1],[1,3,3,2],[1,1,0,0]],[[1,3,0,1],[1,3,3,1],[1,3,3,2],[1,1,0,0]],[[2,2,0,1],[1,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,2,0,1],[1,3,3,1],[1,4,3,2],[0,2,0,0]],[[1,2,0,1],[1,3,4,1],[1,3,3,2],[0,2,0,0]],[[1,2,0,1],[1,4,3,1],[1,3,3,2],[0,2,0,0]],[[1,3,0,1],[1,3,3,1],[1,3,3,2],[0,2,0,0]],[[2,2,0,1],[1,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,2,0,1],[1,3,3,1],[1,3,3,3],[0,0,2,0]],[[1,2,0,1],[1,3,3,1],[1,3,4,2],[0,0,2,0]],[[1,2,0,1],[1,3,4,1],[1,3,3,2],[0,0,2,0]],[[1,2,0,1],[1,4,3,1],[1,3,3,2],[0,0,2,0]],[[1,3,0,1],[1,3,3,1],[1,3,3,2],[0,0,2,0]],[[2,2,0,1],[1,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,2,0,1],[1,3,3,1],[1,3,3,2],[0,0,1,2]],[[1,2,0,1],[1,3,3,1],[1,3,3,3],[0,0,1,1]],[[1,2,0,1],[1,3,3,1],[1,3,4,2],[0,0,1,1]],[[1,2,0,1],[1,3,4,1],[1,3,3,2],[0,0,1,1]],[[1,2,0,1],[1,4,3,1],[1,3,3,2],[0,0,1,1]],[[1,3,0,1],[1,3,3,1],[1,3,3,2],[0,0,1,1]],[[2,2,0,1],[1,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,2,0,1],[1,3,3,1],[1,3,4,1],[0,0,2,1]],[[1,2,0,1],[1,3,4,1],[1,3,3,1],[0,0,2,1]],[[1,2,0,1],[1,4,3,1],[1,3,3,1],[0,0,2,1]],[[1,3,0,1],[1,3,3,1],[1,3,3,1],[0,0,2,1]],[[2,2,0,1],[1,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,0,1],[1,3,3,1],[1,3,3,0],[1,3,1,0]],[[1,2,0,1],[1,3,3,1],[1,3,3,0],[2,2,1,0]],[[1,2,0,1],[1,3,3,1],[1,4,3,0],[1,2,1,0]],[[1,2,0,1],[1,4,3,1],[1,3,3,0],[1,2,1,0]],[[1,2,0,1],[1,3,3,1],[1,4,2,2],[1,2,0,0]],[[1,2,0,1],[1,3,4,1],[1,3,2,2],[1,2,0,0]],[[1,2,0,1],[1,4,3,1],[1,3,2,2],[1,2,0,0]],[[1,3,0,1],[1,3,3,1],[1,3,2,2],[1,2,0,0]],[[2,2,0,1],[1,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,2,0,1],[1,3,3,1],[1,4,2,2],[1,1,1,0]],[[1,2,0,1],[1,3,4,1],[1,3,2,2],[1,1,1,0]],[[1,2,0,1],[1,4,3,1],[1,3,2,2],[1,1,1,0]],[[1,3,0,1],[1,3,3,1],[1,3,2,2],[1,1,1,0]],[[2,2,0,1],[1,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,1],[1,4,2,2],[1,1,0,1]],[[1,2,0,1],[1,3,4,1],[1,3,2,2],[1,1,0,1]],[[1,2,0,1],[1,4,3,1],[1,3,2,2],[1,1,0,1]],[[1,3,0,1],[1,3,3,1],[1,3,2,2],[1,1,0,1]],[[2,2,0,1],[1,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,0,1],[1,3,3,1],[1,4,2,2],[1,0,2,0]],[[1,2,0,1],[1,3,4,1],[1,3,2,2],[1,0,2,0]],[[1,2,0,1],[1,4,3,1],[1,3,2,2],[1,0,2,0]],[[1,3,0,1],[1,3,3,1],[1,3,2,2],[1,0,2,0]],[[2,2,0,1],[1,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,1],[1,4,2,2],[1,0,1,1]],[[1,2,0,1],[1,3,4,1],[1,3,2,2],[1,0,1,1]],[[1,2,0,1],[1,4,3,1],[1,3,2,2],[1,0,1,1]],[[1,3,0,1],[1,3,3,1],[1,3,2,2],[1,0,1,1]],[[2,2,0,1],[1,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,0,1],[1,3,3,1],[1,3,2,2],[0,3,1,0]],[[1,2,0,1],[1,3,3,1],[1,4,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,4,1],[1,3,2,2],[0,2,1,0]],[[1,2,0,1],[1,4,3,1],[1,3,2,2],[0,2,1,0]],[[1,3,0,1],[1,3,3,1],[1,3,2,2],[0,2,1,0]],[[2,2,0,1],[1,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[1,3,2,2],[0,3,0,1]],[[1,2,0,1],[1,3,3,1],[1,4,2,2],[0,2,0,1]],[[1,2,0,1],[1,3,4,1],[1,3,2,2],[0,2,0,1]],[[1,2,0,1],[1,4,3,1],[1,3,2,2],[0,2,0,1]],[[1,3,0,1],[1,3,3,1],[1,3,2,2],[0,2,0,1]],[[2,2,0,1],[1,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,0,1],[1,3,3,1],[1,4,2,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,1],[1,3,2,2],[0,1,2,0]],[[1,2,0,1],[1,4,3,1],[1,3,2,2],[0,1,2,0]],[[1,3,0,1],[1,3,3,1],[1,3,2,2],[0,1,2,0]],[[2,2,0,1],[1,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,1],[1,4,2,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,1],[1,3,2,2],[0,1,1,1]],[[1,2,0,1],[1,4,3,1],[1,3,2,2],[0,1,1,1]],[[1,3,0,1],[1,3,3,1],[1,3,2,2],[0,1,1,1]],[[2,2,0,1],[1,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,0,1],[1,3,3,1],[1,3,2,1],[2,2,1,0]],[[1,2,0,1],[1,3,3,1],[1,4,2,1],[1,2,1,0]],[[1,2,0,1],[1,4,3,1],[1,3,2,1],[1,2,1,0]],[[1,2,0,1],[1,3,3,1],[1,4,2,1],[1,1,1,1]],[[1,2,0,1],[1,3,4,1],[1,3,2,1],[1,1,1,1]],[[1,2,0,1],[1,4,3,1],[1,3,2,1],[1,1,1,1]],[[1,3,0,1],[1,3,3,1],[1,3,2,1],[1,1,1,1]],[[2,2,0,1],[1,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,2,0,1],[1,3,3,1],[1,4,2,1],[1,0,2,1]],[[1,2,0,1],[1,3,4,1],[1,3,2,1],[1,0,2,1]],[[1,2,0,1],[1,4,3,1],[1,3,2,1],[1,0,2,1]],[[1,3,0,1],[1,3,3,1],[1,3,2,1],[1,0,2,1]],[[2,2,0,1],[1,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,2,0,1],[1,3,3,1],[1,3,2,1],[0,3,1,1]],[[1,2,0,1],[1,3,3,1],[1,4,2,1],[0,2,1,1]],[[1,2,0,1],[1,3,4,1],[1,3,2,1],[0,2,1,1]],[[1,2,0,1],[1,4,3,1],[1,3,2,1],[0,2,1,1]],[[1,3,0,1],[1,3,3,1],[1,3,2,1],[0,2,1,1]],[[2,2,0,1],[1,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,2,0,1],[1,3,3,1],[1,4,2,1],[0,1,2,1]],[[1,2,0,1],[1,3,4,1],[1,3,2,1],[0,1,2,1]],[[1,2,0,1],[1,4,3,1],[1,3,2,1],[0,1,2,1]],[[1,3,0,1],[1,3,3,1],[1,3,2,1],[0,1,2,1]],[[2,2,0,1],[1,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,2,0,1],[1,3,3,1],[1,3,2,0],[1,3,1,1]],[[1,2,0,1],[1,3,3,1],[1,3,2,0],[2,2,1,1]],[[1,2,0,1],[1,3,3,1],[1,4,2,0],[1,2,1,1]],[[1,2,0,1],[1,4,3,1],[1,3,2,0],[1,2,1,1]],[[1,2,0,1],[1,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,2,0,1],[1,3,4,1],[1,3,1,2],[1,1,2,0]],[[1,2,0,1],[1,4,3,1],[1,3,1,2],[1,1,2,0]],[[1,3,0,1],[1,3,3,1],[1,3,1,2],[1,1,2,0]],[[2,2,0,1],[1,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,1],[1,3,1,2],[0,2,3,0]],[[1,2,0,1],[1,3,3,1],[1,3,1,2],[0,3,2,0]],[[1,2,0,1],[1,3,3,1],[1,4,1,2],[0,2,2,0]],[[1,2,0,1],[1,3,4,1],[1,3,1,2],[0,2,2,0]],[[1,2,0,1],[1,4,3,1],[1,3,1,2],[0,2,2,0]],[[1,3,0,1],[1,3,3,1],[1,3,1,2],[0,2,2,0]],[[2,2,0,1],[1,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,1],[1,3,1,1],[1,3,2,0]],[[1,2,0,1],[1,3,3,1],[1,3,1,1],[2,2,2,0]],[[1,2,0,1],[1,3,3,1],[1,4,1,1],[1,2,2,0]],[[1,2,0,1],[1,4,3,1],[1,3,1,1],[1,2,2,0]],[[1,2,0,1],[1,3,3,1],[1,4,1,1],[1,1,2,1]],[[1,2,0,1],[1,3,4,1],[1,3,1,1],[1,1,2,1]],[[1,2,0,1],[1,4,3,1],[1,3,1,1],[1,1,2,1]],[[1,3,0,1],[1,3,3,1],[1,3,1,1],[1,1,2,1]],[[2,2,0,1],[1,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,2,0,1],[1,3,3,1],[1,3,1,1],[0,2,2,2]],[[1,2,0,1],[1,3,3,1],[1,3,1,1],[0,2,3,1]],[[1,2,0,1],[1,3,3,1],[1,3,1,1],[0,3,2,1]],[[1,2,0,1],[1,3,3,1],[1,4,1,1],[0,2,2,1]],[[1,2,0,1],[1,3,4,1],[1,3,1,1],[0,2,2,1]],[[1,2,0,1],[1,4,3,1],[1,3,1,1],[0,2,2,1]],[[1,3,0,1],[1,3,3,1],[1,3,1,1],[0,2,2,1]],[[2,2,0,1],[1,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,3,1,0],[1,2,3,1]],[[1,2,0,1],[1,3,3,1],[1,3,1,0],[1,3,2,1]],[[1,2,0,1],[1,3,3,1],[1,3,1,0],[2,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,4,1,0],[1,2,2,1]],[[1,2,0,1],[1,4,3,1],[1,3,1,0],[1,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,4,0,2],[1,1,2,1]],[[1,2,0,1],[1,3,4,1],[1,3,0,2],[1,1,2,1]],[[1,2,0,1],[1,4,3,1],[1,3,0,2],[1,1,2,1]],[[1,3,0,1],[1,3,3,1],[1,3,0,2],[1,1,2,1]],[[2,2,0,1],[1,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,0,1],[1,3,3,1],[1,3,0,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,1],[1,3,0,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,1],[1,3,0,2],[0,3,2,1]],[[1,2,0,1],[1,3,3,1],[1,3,0,3],[0,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,4,0,2],[0,2,2,1]],[[1,2,0,1],[1,3,4,1],[1,3,0,2],[0,2,2,1]],[[1,2,0,1],[1,4,3,1],[1,3,0,2],[0,2,2,1]],[[1,3,0,1],[1,3,3,1],[1,3,0,2],[0,2,2,1]],[[2,2,0,1],[1,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,2,3,3],[1,1,1,0]],[[1,2,0,1],[1,3,3,1],[1,2,4,2],[1,1,1,0]],[[1,2,0,1],[1,3,4,1],[1,2,3,2],[1,1,1,0]],[[1,2,0,1],[1,4,3,1],[1,2,3,2],[1,1,1,0]],[[1,3,0,1],[1,3,3,1],[1,2,3,2],[1,1,1,0]],[[2,2,0,1],[1,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,1],[1,2,3,2],[1,1,0,2]],[[1,2,0,1],[1,3,3,1],[1,2,3,3],[1,1,0,1]],[[1,2,0,1],[1,3,3,1],[1,2,4,2],[1,1,0,1]],[[1,2,0,1],[1,3,4,1],[1,2,3,2],[1,1,0,1]],[[1,2,0,1],[1,4,3,1],[1,2,3,2],[1,1,0,1]],[[1,3,0,1],[1,3,3,1],[1,2,3,2],[1,1,0,1]],[[2,2,0,1],[1,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,0,1],[1,3,3,1],[1,2,3,2],[1,0,3,0]],[[1,2,0,1],[1,3,3,1],[1,2,3,3],[1,0,2,0]],[[1,2,0,1],[1,3,3,1],[1,2,4,2],[1,0,2,0]],[[1,2,0,1],[1,3,4,1],[1,2,3,2],[1,0,2,0]],[[1,2,0,1],[1,4,3,1],[1,2,3,2],[1,0,2,0]],[[1,3,0,1],[1,3,3,1],[1,2,3,2],[1,0,2,0]],[[2,2,0,1],[1,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,1],[1,2,3,2],[1,0,1,2]],[[1,2,0,1],[1,3,3,1],[1,2,3,3],[1,0,1,1]],[[1,2,0,1],[1,3,3,1],[1,2,4,2],[1,0,1,1]],[[1,2,0,1],[1,3,4,1],[1,2,3,2],[1,0,1,1]],[[1,2,0,1],[1,4,3,1],[1,2,3,2],[1,0,1,1]],[[1,3,0,1],[1,3,3,1],[1,2,3,2],[1,0,1,1]],[[2,2,0,1],[1,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,3,1],[1,2,3,3],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[1,2,4,2],[0,2,1,0]],[[1,2,0,1],[1,3,4,1],[1,2,3,2],[0,2,1,0]],[[1,2,0,1],[1,4,3,1],[1,2,3,2],[0,2,1,0]],[[1,3,0,1],[1,3,3,1],[1,2,3,2],[0,2,1,0]],[[2,2,0,1],[1,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[1,2,3,2],[0,2,0,2]],[[1,2,0,1],[1,3,3,1],[1,2,3,3],[0,2,0,1]],[[1,2,0,1],[1,3,3,1],[1,2,4,2],[0,2,0,1]],[[1,2,0,1],[1,3,4,1],[1,2,3,2],[0,2,0,1]],[[1,2,0,1],[1,4,3,1],[1,2,3,2],[0,2,0,1]],[[1,3,0,1],[1,3,3,1],[1,2,3,2],[0,2,0,1]],[[2,2,0,1],[1,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,2,0,1],[1,3,3,1],[1,2,3,2],[0,1,3,0]],[[1,2,0,1],[1,3,3,1],[1,2,3,3],[0,1,2,0]],[[1,2,0,1],[1,3,3,1],[1,2,4,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,1],[1,2,3,2],[0,1,2,0]],[[1,2,0,1],[1,4,3,1],[1,2,3,2],[0,1,2,0]],[[1,3,0,1],[1,3,3,1],[1,2,3,2],[0,1,2,0]],[[2,2,0,1],[1,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,1],[1,2,3,2],[0,1,1,2]],[[1,2,0,1],[1,3,3,1],[1,2,3,3],[0,1,1,1]],[[1,2,0,1],[1,3,3,1],[1,2,4,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,1],[1,2,3,2],[0,1,1,1]],[[1,2,0,1],[1,4,3,1],[1,2,3,2],[0,1,1,1]],[[1,3,0,1],[1,3,3,1],[1,2,3,2],[0,1,1,1]],[[2,2,0,1],[1,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,1],[1,2,3,2],[0,0,2,2]],[[1,2,0,1],[1,3,3,1],[1,2,3,3],[0,0,2,1]],[[1,2,0,1],[1,3,3,1],[1,2,4,2],[0,0,2,1]],[[1,2,0,1],[1,3,4,1],[1,2,3,2],[0,0,2,1]],[[1,2,0,1],[1,4,3,1],[1,2,3,2],[0,0,2,1]],[[1,3,0,1],[1,3,3,1],[1,2,3,2],[0,0,2,1]],[[2,2,0,1],[1,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,3,1],[1,2,4,1],[1,1,1,1]],[[1,2,0,1],[1,3,4,1],[1,2,3,1],[1,1,1,1]],[[1,2,0,1],[1,4,3,1],[1,2,3,1],[1,1,1,1]],[[1,3,0,1],[1,3,3,1],[1,2,3,1],[1,1,1,1]],[[2,2,0,1],[1,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,0,1],[1,3,3,1],[1,2,3,1],[1,0,2,2]],[[1,2,0,1],[1,3,3,1],[1,2,3,1],[1,0,3,1]],[[1,2,0,1],[1,3,3,1],[1,2,4,1],[1,0,2,1]],[[1,2,0,1],[1,3,4,1],[1,2,3,1],[1,0,2,1]],[[1,2,0,1],[1,4,3,1],[1,2,3,1],[1,0,2,1]],[[1,3,0,1],[1,3,3,1],[1,2,3,1],[1,0,2,1]],[[2,2,0,1],[1,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,0,1],[1,3,3,1],[1,2,4,1],[0,2,1,1]],[[1,2,0,1],[1,3,4,1],[1,2,3,1],[0,2,1,1]],[[1,2,0,1],[1,4,3,1],[1,2,3,1],[0,2,1,1]],[[1,3,0,1],[1,3,3,1],[1,2,3,1],[0,2,1,1]],[[2,2,0,1],[1,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,0,1],[1,3,3,1],[1,2,3,1],[0,1,2,2]],[[1,2,0,1],[1,3,3,1],[1,2,3,1],[0,1,3,1]],[[1,2,0,1],[1,3,3,1],[1,2,4,1],[0,1,2,1]],[[1,2,0,1],[1,3,4,1],[1,2,3,1],[0,1,2,1]],[[1,2,0,1],[1,4,3,1],[1,2,3,1],[0,1,2,1]],[[1,3,0,1],[1,3,3,1],[1,2,3,1],[0,1,2,1]],[[2,2,0,1],[1,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,2,0,1],[1,3,3,1],[1,2,2,2],[1,0,2,2]],[[1,2,0,1],[1,3,3,1],[1,2,2,2],[1,0,3,1]],[[1,2,0,1],[1,3,3,1],[1,2,2,3],[1,0,2,1]],[[1,2,0,1],[1,3,3,1],[1,2,2,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,1],[1,2,2,2],[0,1,3,1]],[[1,2,0,1],[1,3,3,1],[1,2,2,3],[0,1,2,1]],[[1,2,0,1],[1,3,3,1],[1,1,3,2],[0,2,3,0]],[[1,2,0,1],[1,3,3,1],[1,1,3,2],[0,3,2,0]],[[1,2,0,1],[1,3,3,1],[1,1,3,3],[0,2,2,0]],[[1,2,0,1],[1,3,3,1],[1,1,4,2],[0,2,2,0]],[[1,2,0,1],[1,3,4,1],[1,1,3,2],[0,2,2,0]],[[1,2,0,1],[1,4,3,1],[1,1,3,2],[0,2,2,0]],[[1,3,0,1],[1,3,3,1],[1,1,3,2],[0,2,2,0]],[[2,2,0,1],[1,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,1],[1,1,3,2],[0,2,1,2]],[[1,2,0,1],[1,3,3,1],[1,1,3,3],[0,2,1,1]],[[1,2,0,1],[1,3,3,1],[1,1,4,2],[0,2,1,1]],[[1,2,0,1],[1,3,4,1],[1,1,3,2],[0,2,1,1]],[[1,2,0,1],[1,4,3,1],[1,1,3,2],[0,2,1,1]],[[1,3,0,1],[1,3,3,1],[1,1,3,2],[0,2,1,1]],[[2,2,0,1],[1,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,2,0,1],[1,3,3,1],[1,1,3,1],[0,2,2,2]],[[1,2,0,1],[1,3,3,1],[1,1,3,1],[0,2,3,1]],[[1,2,0,1],[1,3,3,1],[1,1,3,1],[0,3,2,1]],[[1,2,0,1],[1,3,3,1],[1,1,4,1],[0,2,2,1]],[[1,2,0,1],[1,3,4,1],[1,1,3,1],[0,2,2,1]],[[1,2,0,1],[1,4,3,1],[1,1,3,1],[0,2,2,1]],[[1,3,0,1],[1,3,3,1],[1,1,3,1],[0,2,2,1]],[[2,2,0,1],[1,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,1,2,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,1],[1,1,2,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,1],[1,1,2,2],[0,3,2,1]],[[1,2,0,1],[1,3,3,1],[1,1,2,3],[0,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,0,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,3,1],[1,0,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,3,1],[1,0,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,3,1],[1,0,3,3],[1,2,2,0]],[[1,2,0,1],[1,3,3,1],[1,0,4,2],[1,2,2,0]],[[1,2,0,1],[1,3,4,1],[1,0,3,2],[1,2,2,0]],[[1,2,0,1],[1,4,3,1],[1,0,3,2],[1,2,2,0]],[[1,3,0,1],[1,3,3,1],[1,0,3,2],[1,2,2,0]],[[2,2,0,1],[1,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,1],[1,0,3,2],[1,2,1,2]],[[1,2,0,1],[1,3,3,1],[1,0,3,3],[1,2,1,1]],[[1,2,0,1],[1,3,3,1],[1,0,4,2],[1,2,1,1]],[[1,2,0,1],[1,3,4,1],[1,0,3,2],[1,2,1,1]],[[1,2,0,1],[1,4,3,1],[1,0,3,2],[1,2,1,1]],[[1,3,0,1],[1,3,3,1],[1,0,3,2],[1,2,1,1]],[[2,2,0,1],[1,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,2,0,1],[1,3,3,1],[1,0,3,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,1],[1,0,3,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,1],[1,0,3,3],[0,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,0,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,3,1],[1,0,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,3,1],[1,0,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,3,1],[1,0,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,0,4,1],[1,2,2,1]],[[1,2,0,1],[1,3,4,1],[1,0,3,1],[1,2,2,1]],[[1,2,0,1],[1,4,3,1],[1,0,3,1],[1,2,2,1]],[[1,3,0,1],[1,3,3,1],[1,0,3,1],[1,2,2,1]],[[2,2,0,1],[1,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,0,2,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,1],[1,0,2,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,1],[1,0,2,2],[1,3,2,1]],[[1,2,0,1],[1,3,3,1],[1,0,2,2],[2,2,2,1]],[[1,2,0,1],[1,3,3,1],[1,0,2,3],[1,2,2,1]],[[1,2,0,1],[1,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,2,0,1],[1,3,4,1],[0,3,3,2],[1,2,0,0]],[[1,2,0,1],[1,4,3,1],[0,3,3,2],[1,2,0,0]],[[1,3,0,1],[1,3,3,1],[0,3,3,2],[1,2,0,0]],[[2,2,0,1],[1,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,2,0,1],[1,3,3,1],[0,3,3,3],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[0,3,4,2],[0,2,1,0]],[[1,2,0,1],[1,3,4,1],[0,3,3,2],[0,2,1,0]],[[1,2,0,1],[1,4,3,1],[0,3,3,2],[0,2,1,0]],[[1,3,0,1],[1,3,3,1],[0,3,3,2],[0,2,1,0]],[[2,2,0,1],[1,3,3,1],[0,3,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,1],[0,3,3,2],[0,2,0,2]],[[1,2,0,1],[1,3,3,1],[0,3,3,3],[0,2,0,1]],[[1,2,0,1],[1,3,3,1],[0,3,4,2],[0,2,0,1]],[[1,2,0,1],[1,3,4,1],[0,3,3,2],[0,2,0,1]],[[1,2,0,1],[1,4,3,1],[0,3,3,2],[0,2,0,1]],[[1,3,0,1],[1,3,3,1],[0,3,3,2],[0,2,0,1]],[[2,2,0,1],[1,3,3,1],[0,3,3,2],[0,2,0,1]],[[1,2,0,1],[1,3,3,1],[0,3,3,2],[0,1,3,0]],[[1,2,0,1],[1,3,3,1],[0,3,3,3],[0,1,2,0]],[[1,2,0,1],[1,3,3,1],[0,3,4,2],[0,1,2,0]],[[1,2,0,1],[1,3,4,1],[0,3,3,2],[0,1,2,0]],[[1,2,0,1],[1,4,3,1],[0,3,3,2],[0,1,2,0]],[[1,3,0,1],[1,3,3,1],[0,3,3,2],[0,1,2,0]],[[2,2,0,1],[1,3,3,1],[0,3,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,1],[0,3,3,2],[0,1,1,2]],[[1,2,0,1],[1,3,3,1],[0,3,3,3],[0,1,1,1]],[[1,2,0,1],[1,3,3,1],[0,3,4,2],[0,1,1,1]],[[1,2,0,1],[1,3,4,1],[0,3,3,2],[0,1,1,1]],[[1,2,0,1],[1,4,3,1],[0,3,3,2],[0,1,1,1]],[[1,3,0,1],[1,3,3,1],[0,3,3,2],[0,1,1,1]],[[2,2,0,1],[1,3,3,1],[0,3,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,1],[0,3,3,2],[0,0,2,2]],[[1,2,0,1],[1,3,3,1],[0,3,3,3],[0,0,2,1]],[[1,2,0,1],[1,3,3,1],[0,3,4,2],[0,0,2,1]],[[1,2,0,1],[1,3,4,1],[0,3,3,2],[0,0,2,1]],[[1,2,0,1],[1,4,3,1],[0,3,3,2],[0,0,2,1]],[[1,3,0,1],[1,3,3,1],[0,3,3,2],[0,0,2,1]],[[2,2,0,1],[1,3,3,1],[0,3,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,3,1],[0,3,4,1],[0,2,1,1]],[[1,2,0,1],[1,3,4,1],[0,3,3,1],[0,2,1,1]],[[1,2,0,1],[1,4,3,1],[0,3,3,1],[0,2,1,1]],[[1,3,0,1],[1,3,3,1],[0,3,3,1],[0,2,1,1]],[[2,2,0,1],[1,3,3,1],[0,3,3,1],[0,2,1,1]],[[1,2,0,1],[1,3,3,1],[0,3,3,1],[0,1,2,2]],[[1,2,0,1],[1,3,3,1],[0,3,3,1],[0,1,3,1]],[[1,2,0,1],[1,3,3,1],[0,3,4,1],[0,1,2,1]],[[1,2,0,1],[1,3,4,1],[0,3,3,1],[0,1,2,1]],[[1,2,0,1],[1,4,3,1],[0,3,3,1],[0,1,2,1]],[[1,3,0,1],[1,3,3,1],[0,3,3,1],[0,1,2,1]],[[2,2,0,1],[1,3,3,1],[0,3,3,1],[0,1,2,1]],[[1,2,0,1],[1,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,2,0,1],[1,3,3,1],[0,3,2,2],[2,2,1,0]],[[1,2,0,1],[1,3,3,1],[0,4,2,2],[1,2,1,0]],[[1,2,0,1],[1,3,4,1],[0,3,2,2],[1,2,1,0]],[[1,2,0,1],[1,4,3,1],[0,3,2,2],[1,2,1,0]],[[1,3,0,1],[1,3,3,1],[0,3,2,2],[1,2,1,0]],[[2,2,0,1],[1,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,0,1],[1,3,3,1],[0,3,2,2],[1,3,0,1]],[[1,2,0,1],[1,3,3,1],[0,3,2,2],[2,2,0,1]],[[1,2,0,1],[1,3,3,1],[0,4,2,2],[1,2,0,1]],[[1,2,0,1],[1,3,4,1],[0,3,2,2],[1,2,0,1]],[[1,2,0,1],[1,4,3,1],[0,3,2,2],[1,2,0,1]],[[1,3,0,1],[1,3,3,1],[0,3,2,2],[1,2,0,1]],[[2,2,0,1],[1,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,0,1],[1,3,3,1],[0,4,2,2],[1,1,2,0]],[[1,2,0,1],[1,3,4,1],[0,3,2,2],[1,1,2,0]],[[1,2,0,1],[1,4,3,1],[0,3,2,2],[1,1,2,0]],[[1,3,0,1],[1,3,3,1],[0,3,2,2],[1,1,2,0]],[[2,2,0,1],[1,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,1],[0,4,2,2],[1,1,1,1]],[[1,2,0,1],[1,3,4,1],[0,3,2,2],[1,1,1,1]],[[1,2,0,1],[1,4,3,1],[0,3,2,2],[1,1,1,1]],[[1,3,0,1],[1,3,3,1],[0,3,2,2],[1,1,1,1]],[[2,2,0,1],[1,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,0,1],[1,3,3,1],[0,3,2,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,1],[0,3,2,2],[0,1,3,1]],[[1,2,0,1],[1,3,3,1],[0,3,2,3],[0,1,2,1]],[[1,2,0,1],[1,3,3,1],[0,3,2,1],[1,3,1,1]],[[1,2,0,1],[1,3,3,1],[0,3,2,1],[2,2,1,1]],[[1,2,0,1],[1,3,3,1],[0,4,2,1],[1,2,1,1]],[[1,2,0,1],[1,3,4,1],[0,3,2,1],[1,2,1,1]],[[1,2,0,1],[1,4,3,1],[0,3,2,1],[1,2,1,1]],[[1,3,0,1],[1,3,3,1],[0,3,2,1],[1,2,1,1]],[[2,2,0,1],[1,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,2,0,1],[1,3,3,1],[0,4,2,1],[1,1,2,1]],[[1,2,0,1],[1,3,4,1],[0,3,2,1],[1,1,2,1]],[[1,2,0,1],[1,4,3,1],[0,3,2,1],[1,1,2,1]],[[1,3,0,1],[1,3,3,1],[0,3,2,1],[1,1,2,1]],[[2,2,0,1],[1,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,2,0,1],[1,3,3,1],[0,3,1,2],[1,2,3,0]],[[1,2,0,1],[1,3,3,1],[0,3,1,2],[1,3,2,0]],[[1,2,0,1],[1,3,3,1],[0,3,1,2],[2,2,2,0]],[[1,2,0,1],[1,3,3,1],[0,4,1,2],[1,2,2,0]],[[1,2,0,1],[1,3,4,1],[0,3,1,2],[1,2,2,0]],[[1,2,0,1],[1,4,3,1],[0,3,1,2],[1,2,2,0]],[[1,3,0,1],[1,3,3,1],[0,3,1,2],[1,2,2,0]],[[2,2,0,1],[1,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,1],[0,3,1,1],[1,2,2,2]],[[1,2,0,1],[1,3,3,1],[0,3,1,1],[1,2,3,1]],[[1,2,0,1],[1,3,3,1],[0,3,1,1],[1,3,2,1]],[[1,2,0,1],[1,3,3,1],[0,3,1,1],[2,2,2,1]],[[1,2,0,1],[1,3,3,1],[0,4,1,1],[1,2,2,1]],[[1,2,0,1],[1,3,4,1],[0,3,1,1],[1,2,2,1]],[[1,2,0,1],[1,4,3,1],[0,3,1,1],[1,2,2,1]],[[1,3,0,1],[1,3,3,1],[0,3,1,1],[1,2,2,1]],[[2,2,0,1],[1,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,2,0,1],[1,3,3,1],[0,3,0,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,1],[0,3,0,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,1],[0,3,0,2],[1,3,2,1]],[[1,2,0,1],[1,3,3,1],[0,3,0,2],[2,2,2,1]],[[1,2,0,1],[1,3,3,1],[0,3,0,3],[1,2,2,1]],[[1,2,0,1],[1,3,3,1],[0,4,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,4,1],[0,3,0,2],[1,2,2,1]],[[1,2,0,1],[1,4,3,1],[0,3,0,2],[1,2,2,1]],[[1,3,0,1],[1,3,3,1],[0,3,0,2],[1,2,2,1]],[[2,2,0,1],[1,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,3,1],[0,2,3,3],[1,2,1,0]],[[1,2,0,1],[1,3,3,1],[0,2,4,2],[1,2,1,0]],[[1,2,0,1],[1,3,4,1],[0,2,3,2],[1,2,1,0]],[[1,2,0,1],[1,4,3,1],[0,2,3,2],[1,2,1,0]],[[1,3,0,1],[1,3,3,1],[0,2,3,2],[1,2,1,0]],[[2,2,0,1],[1,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,2,0,1],[1,3,3,1],[0,2,3,2],[1,2,0,2]],[[1,2,0,1],[1,3,3,1],[0,2,3,3],[1,2,0,1]],[[1,2,0,1],[1,3,3,1],[0,2,4,2],[1,2,0,1]],[[1,2,0,1],[1,3,4,1],[0,2,3,2],[1,2,0,1]],[[1,2,0,1],[1,4,3,1],[0,2,3,2],[1,2,0,1]],[[1,3,0,1],[1,3,3,1],[0,2,3,2],[1,2,0,1]],[[2,2,0,1],[1,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,2,0,1],[1,3,3,1],[0,2,3,2],[1,1,3,0]],[[1,2,0,1],[1,3,3,1],[0,2,3,3],[1,1,2,0]],[[1,2,0,1],[1,3,3,1],[0,2,4,2],[1,1,2,0]],[[1,2,0,1],[1,3,4,1],[0,2,3,2],[1,1,2,0]],[[1,2,0,1],[1,4,3,1],[0,2,3,2],[1,1,2,0]],[[1,3,0,1],[1,3,3,1],[0,2,3,2],[1,1,2,0]],[[2,2,0,1],[1,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,1],[0,2,3,2],[1,1,1,2]],[[1,2,0,1],[1,3,3,1],[0,2,3,3],[1,1,1,1]],[[1,2,0,1],[1,3,3,1],[0,2,4,2],[1,1,1,1]],[[1,2,0,1],[1,3,4,1],[0,2,3,2],[1,1,1,1]],[[1,2,0,1],[1,4,3,1],[0,2,3,2],[1,1,1,1]],[[1,3,0,1],[1,3,3,1],[0,2,3,2],[1,1,1,1]],[[2,2,0,1],[1,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,2,0,1],[1,3,3,1],[0,2,3,2],[1,0,2,2]],[[1,2,0,1],[1,3,3,1],[0,2,3,3],[1,0,2,1]],[[1,2,0,1],[1,3,3,1],[0,2,4,2],[1,0,2,1]],[[1,2,0,1],[1,3,4,1],[0,2,3,2],[1,0,2,1]],[[1,2,0,1],[1,4,3,1],[0,2,3,2],[1,0,2,1]],[[1,3,0,1],[1,3,3,1],[0,2,3,2],[1,0,2,1]],[[2,2,0,1],[1,3,3,1],[0,2,3,2],[1,0,2,1]],[[1,2,0,1],[1,3,3,1],[0,2,4,1],[1,2,1,1]],[[1,2,0,1],[1,3,4,1],[0,2,3,1],[1,2,1,1]],[[1,2,0,1],[1,4,3,1],[0,2,3,1],[1,2,1,1]],[[1,3,0,1],[1,3,3,1],[0,2,3,1],[1,2,1,1]],[[2,2,0,1],[1,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,0,1],[1,3,3,1],[0,2,3,1],[1,1,2,2]],[[1,2,0,1],[1,3,3,1],[0,2,3,1],[1,1,3,1]],[[1,2,0,1],[1,3,3,1],[0,2,4,1],[1,1,2,1]],[[1,2,0,1],[1,3,4,1],[0,2,3,1],[1,1,2,1]],[[1,2,0,1],[1,4,3,1],[0,2,3,1],[1,1,2,1]],[[1,3,0,1],[1,3,3,1],[0,2,3,1],[1,1,2,1]],[[2,2,0,1],[1,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,2,0,1],[1,3,3,1],[0,2,2,2],[1,1,2,2]],[[1,2,0,1],[1,3,3,1],[0,2,2,2],[1,1,3,1]],[[1,2,0,1],[1,3,3,1],[0,2,2,3],[1,1,2,1]],[[1,2,0,1],[1,3,3,1],[0,1,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,3,1],[0,1,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,3,1],[0,1,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,3,1],[0,1,3,3],[1,2,2,0]],[[1,2,0,1],[1,3,3,1],[0,1,4,2],[1,2,2,0]],[[1,2,0,1],[1,3,4,1],[0,1,3,2],[1,2,2,0]],[[1,2,0,1],[1,4,3,1],[0,1,3,2],[1,2,2,0]],[[1,3,0,1],[1,3,3,1],[0,1,3,2],[1,2,2,0]],[[2,2,0,1],[1,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,1],[0,1,3,2],[1,2,1,2]],[[1,2,0,1],[1,3,3,1],[0,1,3,3],[1,2,1,1]],[[1,2,0,1],[1,3,3,1],[0,1,4,2],[1,2,1,1]],[[1,2,0,1],[1,3,4,1],[0,1,3,2],[1,2,1,1]],[[1,2,0,1],[1,4,3,1],[0,1,3,2],[1,2,1,1]],[[1,3,0,1],[1,3,3,1],[0,1,3,2],[1,2,1,1]],[[2,2,0,1],[1,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,2,0,1],[1,3,3,1],[0,1,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,3,1],[0,1,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,3,1],[0,1,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,3,1],[0,1,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,3,1],[0,1,4,1],[1,2,2,1]],[[1,2,0,1],[1,3,4,1],[0,1,3,1],[1,2,2,1]],[[1,2,0,1],[1,4,3,1],[0,1,3,1],[1,2,2,1]],[[1,3,0,1],[1,3,3,1],[0,1,3,1],[1,2,2,1]],[[2,2,0,1],[1,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,2,0,1],[1,3,3,1],[0,1,2,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,1],[0,1,2,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,1],[0,1,2,2],[1,3,2,1]],[[1,2,0,1],[1,3,3,1],[0,1,2,2],[2,2,2,1]],[[1,2,0,1],[1,3,3,1],[0,1,2,3],[1,2,2,1]],[[1,2,0,1],[1,3,3,1],[0,0,3,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,1],[0,0,3,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,1],[0,0,3,3],[1,2,2,1]],[[1,2,0,1],[1,3,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,0,1],[1,3,3,0],[2,4,3,2],[1,1,0,0]],[[1,2,0,1],[1,3,3,0],[3,3,3,2],[1,1,0,0]],[[1,2,0,1],[1,4,3,0],[2,3,3,2],[1,1,0,0]],[[1,2,0,1],[1,3,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,0,1],[1,3,3,0],[3,3,3,2],[0,2,0,0]],[[1,2,0,1],[1,4,3,0],[2,3,3,2],[0,2,0,0]],[[1,2,0,1],[1,3,3,0],[2,3,2,2],[2,2,0,0]],[[1,2,0,1],[1,3,3,0],[2,4,2,2],[1,2,0,0]],[[1,2,0,1],[1,3,3,0],[3,3,2,2],[1,2,0,0]],[[1,2,0,1],[1,4,3,0],[2,3,2,2],[1,2,0,0]],[[1,2,0,1],[1,3,3,0],[2,3,2,2],[2,1,1,0]],[[1,2,0,1],[1,3,3,0],[2,4,2,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,0],[3,3,2,2],[1,1,1,0]],[[1,2,0,1],[1,4,3,0],[2,3,2,2],[1,1,1,0]],[[1,2,0,1],[1,3,3,0],[2,3,2,2],[2,1,0,1]],[[1,2,0,1],[1,3,3,0],[2,4,2,2],[1,1,0,1]],[[1,2,0,1],[1,3,3,0],[3,3,2,2],[1,1,0,1]],[[1,2,0,1],[1,4,3,0],[2,3,2,2],[1,1,0,1]],[[1,2,0,1],[1,3,3,0],[2,3,2,2],[2,0,2,0]],[[1,2,0,1],[1,3,3,0],[2,4,2,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,0],[3,3,2,2],[1,0,2,0]],[[1,2,0,1],[1,4,3,0],[2,3,2,2],[1,0,2,0]],[[1,2,0,1],[1,3,3,0],[2,3,2,2],[2,0,1,1]],[[1,2,0,1],[1,3,3,0],[2,4,2,2],[1,0,1,1]],[[1,2,0,1],[1,3,3,0],[3,3,2,2],[1,0,1,1]],[[1,2,0,1],[1,4,3,0],[2,3,2,2],[1,0,1,1]],[[1,2,0,1],[1,3,3,0],[2,3,2,2],[0,3,1,0]],[[1,2,0,1],[1,3,3,0],[2,4,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,0],[3,3,2,2],[0,2,1,0]],[[1,2,0,1],[1,4,3,0],[2,3,2,2],[0,2,1,0]],[[1,2,0,1],[1,3,3,0],[2,3,2,2],[0,3,0,1]],[[1,2,0,1],[1,3,3,0],[2,4,2,2],[0,2,0,1]],[[1,2,0,1],[1,3,3,0],[3,3,2,2],[0,2,0,1]],[[1,2,0,1],[1,4,3,0],[2,3,2,2],[0,2,0,1]],[[1,2,0,1],[1,3,3,0],[2,4,2,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,0],[3,3,2,2],[0,1,2,0]],[[1,2,0,1],[1,4,3,0],[2,3,2,2],[0,1,2,0]],[[1,2,0,1],[1,3,3,0],[2,4,2,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,0],[3,3,2,2],[0,1,1,1]],[[1,2,0,1],[1,4,3,0],[2,3,2,2],[0,1,1,1]],[[1,2,0,1],[1,3,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,0,1],[1,3,3,0],[2,4,2,1],[1,2,0,1]],[[1,2,0,1],[1,3,3,0],[3,3,2,1],[1,2,0,1]],[[1,2,0,1],[1,4,3,0],[2,3,2,1],[1,2,0,1]],[[1,2,0,1],[1,3,3,0],[2,3,2,1],[2,1,1,1]],[[1,2,0,1],[1,3,3,0],[2,4,2,1],[1,1,1,1]],[[1,2,0,1],[1,3,3,0],[3,3,2,1],[1,1,1,1]],[[1,2,0,1],[1,4,3,0],[2,3,2,1],[1,1,1,1]],[[1,2,0,1],[1,3,3,0],[2,3,2,1],[2,0,2,1]],[[1,2,0,1],[1,3,3,0],[2,4,2,1],[1,0,2,1]],[[1,2,0,1],[1,3,3,0],[3,3,2,1],[1,0,2,1]],[[1,2,0,1],[1,4,3,0],[2,3,2,1],[1,0,2,1]],[[1,2,0,1],[1,3,3,0],[2,3,2,1],[0,3,1,1]],[[1,2,0,1],[1,3,3,0],[2,4,2,1],[0,2,1,1]],[[1,2,0,1],[1,3,3,0],[3,3,2,1],[0,2,1,1]],[[1,2,0,1],[1,4,3,0],[2,3,2,1],[0,2,1,1]],[[1,2,0,1],[1,3,3,0],[2,4,2,1],[0,1,2,1]],[[1,2,0,1],[1,3,3,0],[3,3,2,1],[0,1,2,1]],[[1,2,0,1],[1,4,3,0],[2,3,2,1],[0,1,2,1]],[[1,2,0,1],[1,3,3,0],[2,3,1,2],[2,1,2,0]],[[1,2,0,1],[1,3,3,0],[2,4,1,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,0],[3,3,1,2],[1,1,2,0]],[[1,2,0,1],[1,4,3,0],[2,3,1,2],[1,1,2,0]],[[1,2,0,1],[1,3,3,0],[2,3,1,2],[0,2,3,0]],[[1,2,0,1],[1,3,3,0],[2,3,1,2],[0,3,2,0]],[[1,2,0,1],[1,3,3,0],[2,4,1,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,0],[3,3,1,2],[0,2,2,0]],[[1,2,0,1],[1,4,3,0],[2,3,1,2],[0,2,2,0]],[[1,2,0,1],[1,3,3,0],[2,3,1,1],[2,1,2,1]],[[1,2,0,1],[1,3,3,0],[2,4,1,1],[1,1,2,1]],[[1,2,0,1],[1,3,3,0],[3,3,1,1],[1,1,2,1]],[[1,2,0,1],[1,4,3,0],[2,3,1,1],[1,1,2,1]],[[1,2,0,1],[1,3,3,0],[2,3,1,1],[0,2,2,2]],[[1,2,0,1],[1,3,3,0],[2,3,1,1],[0,2,3,1]],[[1,2,0,1],[1,3,3,0],[2,3,1,1],[0,3,2,1]],[[1,2,0,1],[1,3,3,0],[2,4,1,1],[0,2,2,1]],[[1,2,0,1],[1,3,3,0],[3,3,1,1],[0,2,2,1]],[[1,2,0,1],[1,4,3,0],[2,3,1,1],[0,2,2,1]],[[1,2,0,1],[1,3,3,0],[2,3,0,2],[1,3,2,0]],[[1,2,0,1],[1,3,3,0],[2,3,0,2],[2,2,2,0]],[[1,2,0,1],[1,3,3,0],[3,3,0,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,0],[2,3,0,2],[2,1,2,1]],[[1,2,0,1],[1,3,3,0],[2,4,0,2],[1,1,2,1]],[[1,2,0,1],[1,3,3,0],[3,3,0,2],[1,1,2,1]],[[1,2,0,1],[1,4,3,0],[2,3,0,2],[1,1,2,1]],[[1,2,0,1],[1,3,3,0],[2,3,0,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,0],[2,3,0,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,0],[2,3,0,2],[0,3,2,1]],[[1,2,0,1],[1,3,3,0],[2,4,0,2],[0,2,2,1]],[[1,2,0,1],[1,3,3,0],[3,3,0,2],[0,2,2,1]],[[1,2,0,1],[1,4,3,0],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[1,3,3,0],[2,3,0,1],[1,3,2,1]],[[1,2,0,1],[1,3,3,0],[2,3,0,1],[2,2,2,1]],[[1,2,0,1],[1,3,3,0],[3,3,0,1],[1,2,2,1]],[[1,2,0,1],[1,3,3,0],[2,2,2,2],[1,3,1,0]],[[1,2,0,1],[1,3,3,0],[2,2,2,2],[2,2,1,0]],[[1,2,0,1],[1,3,3,0],[3,2,2,2],[1,2,1,0]],[[1,2,0,1],[1,3,3,0],[2,2,2,2],[1,3,0,1]],[[1,2,0,1],[1,3,3,0],[2,2,2,2],[2,2,0,1]],[[1,2,0,1],[1,3,3,0],[3,2,2,2],[1,2,0,1]],[[1,2,0,1],[1,3,3,0],[2,2,2,1],[1,3,1,1]],[[1,2,0,1],[1,3,3,0],[2,2,2,1],[2,2,1,1]],[[1,2,0,1],[1,3,3,0],[3,2,2,1],[1,2,1,1]],[[1,2,0,1],[1,3,3,0],[2,2,1,2],[1,2,3,0]],[[1,2,0,1],[1,3,3,0],[2,2,1,2],[1,3,2,0]],[[1,2,0,1],[1,3,3,0],[2,2,1,2],[2,2,2,0]],[[1,2,0,1],[1,3,3,0],[3,2,1,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,0],[2,2,1,1],[1,2,2,2]],[[1,2,0,1],[1,3,3,0],[2,2,1,1],[1,2,3,1]],[[1,2,0,1],[1,3,3,0],[2,2,1,1],[1,3,2,1]],[[1,2,0,1],[1,3,3,0],[2,2,1,1],[2,2,2,1]],[[1,2,0,1],[1,3,3,0],[3,2,1,1],[1,2,2,1]],[[1,2,0,1],[1,3,3,0],[2,2,0,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,0],[2,2,0,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,0],[2,2,0,2],[1,3,2,1]],[[1,2,0,1],[1,3,3,0],[2,2,0,2],[2,2,2,1]],[[1,2,0,1],[1,3,3,0],[3,2,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,3,0],[2,1,3,2],[1,0,2,2]],[[1,2,0,1],[1,3,3,0],[2,1,3,2],[1,0,3,1]],[[1,2,0,1],[1,3,3,0],[2,1,4,2],[1,0,2,1]],[[1,2,0,1],[1,3,3,0],[2,1,3,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,0],[2,1,3,2],[0,1,3,1]],[[1,2,0,1],[1,3,3,0],[2,1,4,2],[0,1,2,1]],[[1,2,0,1],[1,3,3,0],[2,0,3,2],[1,1,2,2]],[[1,2,0,1],[1,3,3,0],[2,0,3,2],[1,1,3,1]],[[1,2,0,1],[1,3,3,0],[2,0,4,2],[1,1,2,1]],[[1,2,0,1],[1,3,3,0],[2,0,3,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,0],[2,0,3,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,0],[2,0,3,2],[0,3,2,1]],[[1,2,0,1],[1,3,3,0],[2,0,4,2],[0,2,2,1]],[[1,2,0,1],[1,3,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,0,1],[1,3,3,0],[1,3,2,2],[2,2,1,0]],[[1,2,0,1],[1,3,3,0],[1,4,2,2],[1,2,1,0]],[[1,2,0,1],[1,4,3,0],[1,3,2,2],[1,2,1,0]],[[1,2,0,1],[1,3,3,0],[1,3,2,2],[1,3,0,1]],[[1,2,0,1],[1,3,3,0],[1,3,2,2],[2,2,0,1]],[[1,2,0,1],[1,3,3,0],[1,4,2,2],[1,2,0,1]],[[1,2,0,1],[1,4,3,0],[1,3,2,2],[1,2,0,1]],[[1,2,0,1],[1,3,3,0],[1,3,2,1],[1,3,1,1]],[[1,2,0,1],[1,3,3,0],[1,3,2,1],[2,2,1,1]],[[1,2,0,1],[1,3,3,0],[1,4,2,1],[1,2,1,1]],[[1,2,0,1],[1,4,3,0],[1,3,2,1],[1,2,1,1]],[[1,2,0,1],[1,3,3,0],[1,3,1,2],[1,2,3,0]],[[1,2,0,1],[1,3,3,0],[1,3,1,2],[1,3,2,0]],[[1,2,0,1],[1,3,3,0],[1,3,1,2],[2,2,2,0]],[[1,2,0,1],[1,3,3,0],[1,4,1,2],[1,2,2,0]],[[1,2,0,1],[1,4,3,0],[1,3,1,2],[1,2,2,0]],[[1,2,0,1],[1,3,3,0],[1,3,1,1],[1,2,2,2]],[[1,2,0,1],[1,3,3,0],[1,3,1,1],[1,2,3,1]],[[1,2,0,1],[1,3,3,0],[1,3,1,1],[1,3,2,1]],[[1,2,0,1],[1,3,3,0],[1,3,1,1],[2,2,2,1]],[[1,2,0,1],[1,3,3,0],[1,4,1,1],[1,2,2,1]],[[1,2,0,1],[1,4,3,0],[1,3,1,1],[1,2,2,1]],[[1,2,0,1],[1,3,3,0],[1,3,0,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,0],[1,3,0,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,0],[1,3,0,2],[1,3,2,1]],[[1,2,0,1],[1,3,3,0],[1,3,0,2],[2,2,2,1]],[[1,2,0,1],[1,3,3,0],[1,4,0,2],[1,2,2,1]],[[1,2,0,1],[1,4,3,0],[1,3,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,2,0,1],[1,3,3,0],[1,2,3,2],[1,0,3,1]],[[1,2,0,1],[1,3,3,0],[1,2,4,2],[1,0,2,1]],[[1,2,0,1],[1,3,3,0],[1,2,3,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,0],[1,2,3,2],[0,1,3,1]],[[1,2,0,1],[1,3,3,0],[1,2,4,2],[0,1,2,1]],[[1,2,0,1],[1,3,3,0],[1,1,3,2],[0,2,2,2]],[[1,2,0,1],[1,3,3,0],[1,1,3,2],[0,2,3,1]],[[1,2,0,1],[1,3,3,0],[1,1,3,2],[0,3,2,1]],[[1,2,0,1],[1,3,3,0],[1,1,4,2],[0,2,2,1]],[[1,2,0,1],[1,3,3,0],[1,0,3,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,0],[1,0,3,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,0],[1,0,3,2],[1,3,2,1]],[[1,2,0,1],[1,3,3,0],[1,0,3,2],[2,2,2,1]],[[1,2,0,1],[1,3,3,0],[1,0,4,2],[1,2,2,1]],[[1,2,0,1],[1,3,3,0],[0,3,3,2],[0,1,2,2]],[[1,2,0,1],[1,3,3,0],[0,3,3,2],[0,1,3,1]],[[1,2,0,1],[1,3,3,0],[0,3,4,2],[0,1,2,1]],[[1,2,0,1],[1,3,3,0],[0,2,3,2],[1,1,2,2]],[[1,2,0,1],[1,3,3,0],[0,2,3,2],[1,1,3,1]],[[1,2,0,1],[1,3,3,0],[0,2,4,2],[1,1,2,1]],[[1,2,0,1],[1,3,3,0],[0,1,3,2],[1,2,2,2]],[[1,2,0,1],[1,3,3,0],[0,1,3,2],[1,2,3,1]],[[1,2,0,1],[1,3,3,0],[0,1,3,2],[1,3,2,1]],[[1,2,0,1],[1,3,3,0],[0,1,3,2],[2,2,2,1]],[[1,2,0,1],[1,3,3,0],[0,1,4,2],[1,2,2,1]],[[1,2,0,1],[1,4,2,2],[2,3,3,1],[1,0,1,0]],[[1,3,0,1],[1,3,2,2],[2,3,3,1],[1,0,1,0]],[[2,2,0,1],[1,3,2,2],[2,3,3,1],[1,0,1,0]],[[1,2,0,1],[1,4,2,2],[2,3,3,1],[1,0,0,1]],[[1,3,0,1],[1,3,2,2],[2,3,3,1],[1,0,0,1]],[[2,2,0,1],[1,3,2,2],[2,3,3,1],[1,0,0,1]],[[1,2,0,1],[1,4,2,2],[2,3,3,0],[1,0,1,1]],[[1,3,0,1],[1,3,2,2],[2,3,3,0],[1,0,1,1]],[[2,2,0,1],[1,3,2,2],[2,3,3,0],[1,0,1,1]],[[1,2,0,1],[1,4,2,2],[2,2,3,1],[1,2,0,0]],[[1,3,0,1],[1,3,2,2],[2,2,3,1],[1,2,0,0]],[[2,2,0,1],[1,3,2,2],[2,2,3,1],[1,2,0,0]],[[1,2,0,1],[1,4,2,2],[2,2,3,1],[1,1,1,0]],[[1,3,0,1],[1,3,2,2],[2,2,3,1],[1,1,1,0]],[[2,2,0,1],[1,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,0,1],[1,4,2,2],[2,2,3,1],[1,1,0,1]],[[1,3,0,1],[1,3,2,2],[2,2,3,1],[1,1,0,1]],[[2,2,0,1],[1,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,0,1],[1,4,2,2],[2,2,3,1],[1,0,2,0]],[[1,3,0,1],[1,3,2,2],[2,2,3,1],[1,0,2,0]],[[2,2,0,1],[1,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,0,1],[1,4,2,2],[2,2,3,1],[1,0,1,1]],[[1,3,0,1],[1,3,2,2],[2,2,3,1],[1,0,1,1]],[[2,2,0,1],[1,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,2,0,1],[1,4,2,2],[2,2,3,1],[0,2,1,0]],[[1,3,0,1],[1,3,2,2],[2,2,3,1],[0,2,1,0]],[[2,2,0,1],[1,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,0,1],[1,4,2,2],[2,2,3,1],[0,2,0,1]],[[1,3,0,1],[1,3,2,2],[2,2,3,1],[0,2,0,1]],[[2,2,0,1],[1,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,2,0,1],[1,4,2,2],[2,2,3,1],[0,1,2,0]],[[1,3,0,1],[1,3,2,2],[2,2,3,1],[0,1,2,0]],[[2,2,0,1],[1,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,0,1],[1,4,2,2],[2,2,3,1],[0,1,1,1]],[[1,3,0,1],[1,3,2,2],[2,2,3,1],[0,1,1,1]],[[2,2,0,1],[1,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,0,1],[1,4,2,2],[2,2,3,0],[1,2,0,1]],[[1,3,0,1],[1,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,1,3,0],[2,3,3,2],[0,0,2,2],[0,2,2,1]],[[1,1,2,0],[2,3,4,2],[0,0,2,2],[0,2,2,1]],[[1,1,2,0],[2,3,3,3],[0,0,2,2],[0,2,2,1]],[[1,1,2,0],[2,3,3,2],[0,0,2,3],[0,2,2,1]],[[1,1,2,0],[2,3,3,2],[0,0,2,2],[0,2,3,1]],[[1,1,2,0],[2,3,3,2],[0,0,2,2],[0,2,2,2]],[[1,1,3,0],[2,3,3,2],[0,0,3,2],[0,1,2,1]],[[1,1,2,0],[2,3,4,2],[0,0,3,2],[0,1,2,1]],[[1,1,2,0],[2,3,3,3],[0,0,3,2],[0,1,2,1]],[[1,1,2,0],[2,3,3,2],[0,0,3,3],[0,1,2,1]],[[1,1,2,0],[2,3,3,2],[0,0,3,2],[0,1,2,2]],[[1,1,3,0],[2,3,3,2],[0,0,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,4,2],[0,0,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,3,3],[0,0,3,2],[0,2,1,1]],[[1,1,2,0],[2,3,3,2],[0,0,3,3],[0,2,1,1]],[[1,1,2,0],[2,3,3,2],[0,0,3,2],[0,2,1,2]],[[1,1,3,0],[2,3,3,2],[0,0,3,2],[0,2,2,0]],[[1,1,2,0],[2,3,4,2],[0,0,3,2],[0,2,2,0]],[[1,1,2,0],[2,3,3,3],[0,0,3,2],[0,2,2,0]],[[1,1,2,0],[2,3,3,2],[0,0,3,3],[0,2,2,0]],[[2,2,0,1],[1,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,2,0,1],[1,4,2,2],[2,2,3,0],[1,1,1,1]],[[1,3,0,1],[1,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,1,3,0],[2,3,3,2],[0,1,1,2],[0,2,2,1]],[[1,1,2,0],[2,4,3,2],[0,1,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,4,2],[0,1,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,3,3],[0,1,1,2],[0,2,2,1]],[[1,1,2,0],[2,3,3,2],[0,1,1,3],[0,2,2,1]],[[1,1,2,0],[2,3,3,2],[0,1,1,2],[0,2,3,1]],[[1,1,2,0],[2,3,3,2],[0,1,1,2],[0,2,2,2]],[[1,1,3,0],[2,3,3,2],[0,1,2,2],[0,2,1,1]],[[1,1,2,0],[2,4,3,2],[0,1,2,2],[0,2,1,1]],[[1,1,2,0],[2,3,4,2],[0,1,2,2],[0,2,1,1]],[[1,1,2,0],[2,3,3,3],[0,1,2,2],[0,2,1,1]],[[1,1,2,0],[2,3,3,2],[0,1,2,3],[0,2,1,1]],[[1,1,2,0],[2,3,3,2],[0,1,2,2],[0,2,1,2]],[[1,1,3,0],[2,3,3,2],[0,1,2,2],[0,2,2,0]],[[1,1,2,0],[2,4,3,2],[0,1,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,4,2],[0,1,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,3,3],[0,1,2,2],[0,2,2,0]],[[1,1,2,0],[2,3,3,2],[0,1,2,3],[0,2,2,0]],[[2,2,0,1],[1,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,0,1],[1,4,2,2],[2,2,3,0],[1,0,2,1]],[[1,3,0,1],[1,3,2,2],[2,2,3,0],[1,0,2,1]],[[2,2,0,1],[1,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,1,3,0],[2,3,3,2],[0,1,3,0],[0,2,2,1]],[[1,1,2,0],[2,4,3,2],[0,1,3,0],[0,2,2,1]],[[1,1,2,0],[2,3,4,2],[0,1,3,0],[0,2,2,1]],[[1,1,2,0],[2,3,3,3],[0,1,3,0],[0,2,2,1]],[[1,1,2,0],[2,3,3,2],[0,1,4,0],[0,2,2,1]],[[1,1,2,0],[2,3,3,2],[0,1,3,0],[0,2,3,1]],[[1,1,2,0],[2,3,3,2],[0,1,3,0],[0,2,2,2]],[[1,1,3,0],[2,3,3,2],[0,1,3,1],[0,2,1,1]],[[1,1,2,0],[2,4,3,2],[0,1,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,4,2],[0,1,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,3,3],[0,1,3,1],[0,2,1,1]],[[1,1,2,0],[2,3,3,2],[0,1,4,1],[0,2,1,1]],[[1,1,3,0],[2,3,3,2],[0,1,3,1],[0,2,2,0]],[[1,1,2,0],[2,4,3,2],[0,1,3,1],[0,2,2,0]],[[1,1,2,0],[2,3,4,2],[0,1,3,1],[0,2,2,0]],[[1,1,2,0],[2,3,3,3],[0,1,3,1],[0,2,2,0]],[[1,1,2,0],[2,3,3,2],[0,1,4,1],[0,2,2,0]],[[1,1,2,0],[2,3,3,2],[0,1,3,1],[0,2,3,0]],[[1,2,0,1],[1,4,2,2],[2,2,3,0],[0,2,1,1]],[[1,3,0,1],[1,3,2,2],[2,2,3,0],[0,2,1,1]],[[2,2,0,1],[1,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,0,1],[1,4,2,2],[2,2,3,0],[0,1,2,1]],[[1,3,0,1],[1,3,2,2],[2,2,3,0],[0,1,2,1]],[[2,2,0,1],[1,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,1,3,0],[2,3,3,2],[0,1,3,2],[0,0,2,1]],[[1,1,2,0],[2,3,4,2],[0,1,3,2],[0,0,2,1]],[[1,1,2,0],[2,3,3,3],[0,1,3,2],[0,0,2,1]],[[1,1,2,0],[2,3,3,2],[0,1,3,3],[0,0,2,1]],[[1,1,2,0],[2,3,3,2],[0,1,3,2],[0,0,2,2]],[[1,1,3,0],[2,3,3,2],[0,1,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,4,2],[0,1,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,3,3],[0,1,3,2],[0,1,1,1]],[[1,1,2,0],[2,3,3,2],[0,1,3,3],[0,1,1,1]],[[1,1,2,0],[2,3,3,2],[0,1,3,2],[0,1,1,2]],[[1,1,3,0],[2,3,3,2],[0,1,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,4,2],[0,1,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,3,3],[0,1,3,2],[0,1,2,0]],[[1,1,2,0],[2,3,3,2],[0,1,3,3],[0,1,2,0]],[[1,1,3,0],[2,3,3,2],[0,1,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,4,2],[0,1,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,3,3],[0,1,3,2],[1,0,1,1]],[[1,1,2,0],[2,3,3,2],[0,1,3,3],[1,0,1,1]],[[1,1,2,0],[2,3,3,2],[0,1,3,2],[1,0,1,2]],[[1,1,3,0],[2,3,3,2],[0,1,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,4,2],[0,1,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,3,3],[0,1,3,2],[1,0,2,0]],[[1,1,2,0],[2,3,3,2],[0,1,3,3],[1,0,2,0]],[[1,2,0,1],[1,4,2,2],[2,2,2,1],[1,1,2,0]],[[1,3,0,1],[1,3,2,2],[2,2,2,1],[1,1,2,0]],[[2,2,0,1],[1,3,2,2],[2,2,2,1],[1,1,2,0]],[[1,2,0,1],[1,4,2,2],[2,2,2,1],[0,2,2,0]],[[1,3,0,1],[1,3,2,2],[2,2,2,1],[0,2,2,0]],[[2,2,0,1],[1,3,2,2],[2,2,2,1],[0,2,2,0]],[[1,2,0,1],[1,4,2,2],[2,2,2,0],[1,1,2,1]],[[1,3,0,1],[1,3,2,2],[2,2,2,0],[1,1,2,1]],[[2,2,0,1],[1,3,2,2],[2,2,2,0],[1,1,2,1]],[[1,2,0,1],[1,4,2,2],[2,2,2,0],[0,2,2,1]],[[1,3,0,1],[1,3,2,2],[2,2,2,0],[0,2,2,1]],[[2,2,0,1],[1,3,2,2],[2,2,2,0],[0,2,2,1]],[[1,1,3,0],[2,3,3,2],[0,2,0,2],[0,2,2,1]],[[1,1,2,0],[2,4,3,2],[0,2,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,4,2],[0,2,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,3,3],[0,2,0,2],[0,2,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,0,3],[0,2,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,0,2],[0,2,3,1]],[[1,1,2,0],[2,3,3,2],[0,2,0,2],[0,2,2,2]],[[1,1,3,0],[2,3,3,2],[0,2,1,2],[0,1,2,1]],[[1,1,2,0],[2,4,3,2],[0,2,1,2],[0,1,2,1]],[[1,1,2,0],[2,3,4,2],[0,2,1,2],[0,1,2,1]],[[1,1,2,0],[2,3,3,3],[0,2,1,2],[0,1,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,1,3],[0,1,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,1,2],[0,1,3,1]],[[1,1,2,0],[2,3,3,2],[0,2,1,2],[0,1,2,2]],[[1,1,3,0],[2,3,3,2],[0,2,1,2],[1,0,2,1]],[[1,1,2,0],[2,4,3,2],[0,2,1,2],[1,0,2,1]],[[1,1,2,0],[2,3,4,2],[0,2,1,2],[1,0,2,1]],[[1,1,2,0],[2,3,3,3],[0,2,1,2],[1,0,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,1,3],[1,0,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,1,2],[1,0,2,2]],[[1,1,3,0],[2,3,3,2],[0,2,2,2],[0,0,2,1]],[[1,1,2,0],[2,4,3,2],[0,2,2,2],[0,0,2,1]],[[1,1,2,0],[2,3,4,2],[0,2,2,2],[0,0,2,1]],[[1,1,2,0],[2,3,3,3],[0,2,2,2],[0,0,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,2,3],[0,0,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,2,2],[0,0,2,2]],[[1,1,3,0],[2,3,3,2],[0,2,2,2],[0,1,1,1]],[[1,1,2,0],[2,4,3,2],[0,2,2,2],[0,1,1,1]],[[1,1,2,0],[2,3,4,2],[0,2,2,2],[0,1,1,1]],[[1,1,2,0],[2,3,3,3],[0,2,2,2],[0,1,1,1]],[[1,1,2,0],[2,3,3,2],[0,2,2,3],[0,1,1,1]],[[1,1,2,0],[2,3,3,2],[0,2,2,2],[0,1,1,2]],[[1,1,3,0],[2,3,3,2],[0,2,2,2],[0,1,2,0]],[[1,1,2,0],[2,4,3,2],[0,2,2,2],[0,1,2,0]],[[1,1,2,0],[2,3,4,2],[0,2,2,2],[0,1,2,0]],[[1,1,2,0],[2,3,3,3],[0,2,2,2],[0,1,2,0]],[[1,1,2,0],[2,3,3,2],[0,2,2,3],[0,1,2,0]],[[1,1,3,0],[2,3,3,2],[0,2,2,2],[0,2,0,1]],[[1,1,2,0],[2,4,3,2],[0,2,2,2],[0,2,0,1]],[[1,1,2,0],[2,3,4,2],[0,2,2,2],[0,2,0,1]],[[1,1,2,0],[2,3,3,3],[0,2,2,2],[0,2,0,1]],[[1,1,2,0],[2,3,3,2],[0,2,2,3],[0,2,0,1]],[[1,1,2,0],[2,3,3,2],[0,2,2,2],[0,2,0,2]],[[1,1,3,0],[2,3,3,2],[0,2,2,2],[0,2,1,0]],[[1,1,2,0],[2,4,3,2],[0,2,2,2],[0,2,1,0]],[[1,1,2,0],[2,3,4,2],[0,2,2,2],[0,2,1,0]],[[1,1,2,0],[2,3,3,3],[0,2,2,2],[0,2,1,0]],[[1,1,2,0],[2,3,3,2],[0,2,2,3],[0,2,1,0]],[[1,2,0,1],[1,4,2,2],[2,2,0,2],[1,1,2,1]],[[1,3,0,1],[1,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,1,3,0],[2,3,3,2],[0,2,2,2],[1,0,1,1]],[[1,1,2,0],[2,4,3,2],[0,2,2,2],[1,0,1,1]],[[1,1,2,0],[2,3,4,2],[0,2,2,2],[1,0,1,1]],[[1,1,2,0],[2,3,3,3],[0,2,2,2],[1,0,1,1]],[[1,1,2,0],[2,3,3,2],[0,2,2,3],[1,0,1,1]],[[1,1,2,0],[2,3,3,2],[0,2,2,2],[1,0,1,2]],[[1,1,3,0],[2,3,3,2],[0,2,2,2],[1,0,2,0]],[[1,1,2,0],[2,4,3,2],[0,2,2,2],[1,0,2,0]],[[1,1,2,0],[2,3,4,2],[0,2,2,2],[1,0,2,0]],[[1,1,2,0],[2,3,3,3],[0,2,2,2],[1,0,2,0]],[[1,1,2,0],[2,3,3,2],[0,2,2,3],[1,0,2,0]],[[1,1,3,0],[2,3,3,2],[0,2,2,2],[1,1,0,1]],[[1,1,2,0],[2,4,3,2],[0,2,2,2],[1,1,0,1]],[[1,1,2,0],[2,3,4,2],[0,2,2,2],[1,1,0,1]],[[1,1,2,0],[2,3,3,3],[0,2,2,2],[1,1,0,1]],[[1,1,2,0],[2,3,3,2],[0,2,2,3],[1,1,0,1]],[[1,1,3,0],[2,3,3,2],[0,2,2,2],[1,1,1,0]],[[1,1,2,0],[2,4,3,2],[0,2,2,2],[1,1,1,0]],[[1,1,2,0],[2,3,4,2],[0,2,2,2],[1,1,1,0]],[[1,1,2,0],[2,3,3,3],[0,2,2,2],[1,1,1,0]],[[2,2,0,1],[1,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,2,0,1],[1,4,2,2],[2,2,0,2],[0,2,2,1]],[[1,3,0,1],[1,3,2,2],[2,2,0,2],[0,2,2,1]],[[2,2,0,1],[1,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,0,1],[1,3,2,2],[2,1,3,3],[1,1,1,0]],[[1,2,0,1],[1,3,2,2],[2,1,4,2],[1,1,1,0]],[[1,2,0,1],[1,3,2,3],[2,1,3,2],[1,1,1,0]],[[1,2,0,2],[1,3,2,2],[2,1,3,2],[1,1,1,0]],[[1,2,0,1],[1,3,2,2],[2,1,3,2],[1,1,0,2]],[[1,2,0,1],[1,3,2,2],[2,1,3,3],[1,1,0,1]],[[1,1,3,0],[2,3,3,2],[0,2,3,0],[0,1,2,1]],[[1,1,2,0],[2,4,3,2],[0,2,3,0],[0,1,2,1]],[[1,1,2,0],[2,3,4,2],[0,2,3,0],[0,1,2,1]],[[1,1,2,0],[2,3,3,3],[0,2,3,0],[0,1,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,4,0],[0,1,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,3,0],[0,1,3,1]],[[1,1,2,0],[2,3,3,2],[0,2,3,0],[0,1,2,2]],[[1,1,3,0],[2,3,3,2],[0,2,3,0],[0,2,1,1]],[[1,1,2,0],[2,4,3,2],[0,2,3,0],[0,2,1,1]],[[1,1,2,0],[2,3,4,2],[0,2,3,0],[0,2,1,1]],[[1,1,2,0],[2,3,3,3],[0,2,3,0],[0,2,1,1]],[[1,1,2,0],[2,3,3,2],[0,2,4,0],[0,2,1,1]],[[1,1,3,0],[2,3,3,2],[0,2,3,0],[1,0,2,1]],[[1,1,2,0],[2,4,3,2],[0,2,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,4,2],[0,2,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,3,3],[0,2,3,0],[1,0,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,4,0],[1,0,2,1]],[[1,1,3,0],[2,3,3,2],[0,2,3,0],[1,1,1,1]],[[1,1,2,0],[2,4,3,2],[0,2,3,0],[1,1,1,1]],[[1,1,2,0],[2,3,4,2],[0,2,3,0],[1,1,1,1]],[[1,2,0,1],[1,3,2,2],[2,1,4,2],[1,1,0,1]],[[1,2,0,1],[1,3,2,3],[2,1,3,2],[1,1,0,1]],[[1,2,0,2],[1,3,2,2],[2,1,3,2],[1,1,0,1]],[[1,2,0,1],[1,3,2,2],[2,1,3,2],[1,0,3,0]],[[1,2,0,1],[1,3,2,2],[2,1,3,3],[1,0,2,0]],[[1,1,3,0],[2,3,3,2],[0,2,3,1],[0,0,2,1]],[[1,1,2,0],[2,4,3,2],[0,2,3,1],[0,0,2,1]],[[1,1,2,0],[2,3,4,2],[0,2,3,1],[0,0,2,1]],[[1,1,2,0],[2,3,3,3],[0,2,3,1],[0,0,2,1]],[[1,1,2,0],[2,3,3,2],[0,2,4,1],[0,0,2,1]],[[1,1,3,0],[2,3,3,2],[0,2,3,1],[0,1,1,1]],[[1,1,2,0],[2,4,3,2],[0,2,3,1],[0,1,1,1]],[[1,1,2,0],[2,3,4,2],[0,2,3,1],[0,1,1,1]],[[1,1,2,0],[2,3,3,3],[0,2,3,1],[0,1,1,1]],[[1,1,2,0],[2,3,3,2],[0,2,4,1],[0,1,1,1]],[[1,1,3,0],[2,3,3,2],[0,2,3,1],[0,1,2,0]],[[1,1,2,0],[2,4,3,2],[0,2,3,1],[0,1,2,0]],[[1,1,2,0],[2,3,4,2],[0,2,3,1],[0,1,2,0]],[[1,1,2,0],[2,3,3,3],[0,2,3,1],[0,1,2,0]],[[1,1,2,0],[2,3,3,2],[0,2,4,1],[0,1,2,0]],[[1,1,2,0],[2,3,3,2],[0,2,3,1],[0,1,3,0]],[[1,1,3,0],[2,3,3,2],[0,2,3,1],[0,2,0,1]],[[1,1,2,0],[2,4,3,2],[0,2,3,1],[0,2,0,1]],[[1,1,2,0],[2,3,4,2],[0,2,3,1],[0,2,0,1]],[[1,1,2,0],[2,3,3,3],[0,2,3,1],[0,2,0,1]],[[1,1,2,0],[2,3,3,2],[0,2,4,1],[0,2,0,1]],[[1,1,3,0],[2,3,3,2],[0,2,3,1],[0,2,1,0]],[[1,1,2,0],[2,4,3,2],[0,2,3,1],[0,2,1,0]],[[1,1,2,0],[2,3,4,2],[0,2,3,1],[0,2,1,0]],[[1,1,2,0],[2,3,3,3],[0,2,3,1],[0,2,1,0]],[[1,1,2,0],[2,3,3,2],[0,2,4,1],[0,2,1,0]],[[1,2,0,1],[1,3,2,2],[2,1,4,2],[1,0,2,0]],[[1,2,0,1],[1,3,2,3],[2,1,3,2],[1,0,2,0]],[[1,2,0,2],[1,3,2,2],[2,1,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,2,2],[2,1,3,2],[1,0,1,2]],[[1,2,0,1],[1,3,2,2],[2,1,3,3],[1,0,1,1]],[[1,2,0,1],[1,3,2,2],[2,1,4,2],[1,0,1,1]],[[1,2,0,1],[1,3,2,3],[2,1,3,2],[1,0,1,1]],[[1,1,3,0],[2,3,3,2],[0,2,3,1],[1,0,1,1]],[[1,1,2,0],[2,4,3,2],[0,2,3,1],[1,0,1,1]],[[1,1,2,0],[2,3,4,2],[0,2,3,1],[1,0,1,1]],[[1,1,2,0],[2,3,3,3],[0,2,3,1],[1,0,1,1]],[[1,1,2,0],[2,3,3,2],[0,2,4,1],[1,0,1,1]],[[1,1,3,0],[2,3,3,2],[0,2,3,1],[1,0,2,0]],[[1,1,2,0],[2,4,3,2],[0,2,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,4,2],[0,2,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,3,3],[0,2,3,1],[1,0,2,0]],[[1,1,2,0],[2,3,3,2],[0,2,4,1],[1,0,2,0]],[[1,1,3,0],[2,3,3,2],[0,2,3,1],[1,1,0,1]],[[1,1,2,0],[2,4,3,2],[0,2,3,1],[1,1,0,1]],[[1,1,2,0],[2,3,4,2],[0,2,3,1],[1,1,0,1]],[[1,1,2,0],[2,3,3,3],[0,2,3,1],[1,1,0,1]],[[1,1,3,0],[2,3,3,2],[0,2,3,1],[1,1,1,0]],[[1,1,2,0],[2,4,3,2],[0,2,3,1],[1,1,1,0]],[[1,1,2,0],[2,3,4,2],[0,2,3,1],[1,1,1,0]],[[1,1,2,0],[2,3,3,3],[0,2,3,1],[1,1,1,0]],[[1,2,0,2],[1,3,2,2],[2,1,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,2,2],[2,1,3,3],[0,2,1,0]],[[1,2,0,1],[1,3,2,2],[2,1,4,2],[0,2,1,0]],[[1,2,0,1],[1,3,2,3],[2,1,3,2],[0,2,1,0]],[[1,2,0,2],[1,3,2,2],[2,1,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,2,2],[2,1,3,2],[0,2,0,2]],[[1,2,0,1],[1,3,2,2],[2,1,3,3],[0,2,0,1]],[[1,2,0,1],[1,3,2,2],[2,1,4,2],[0,2,0,1]],[[1,2,0,1],[1,3,2,3],[2,1,3,2],[0,2,0,1]],[[1,2,0,2],[1,3,2,2],[2,1,3,2],[0,2,0,1]],[[1,2,0,1],[1,3,2,2],[2,1,3,2],[0,1,3,0]],[[1,2,0,1],[1,3,2,2],[2,1,3,3],[0,1,2,0]],[[1,2,0,1],[1,3,2,2],[2,1,4,2],[0,1,2,0]],[[1,2,0,1],[1,3,2,3],[2,1,3,2],[0,1,2,0]],[[1,2,0,2],[1,3,2,2],[2,1,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,2,2],[2,1,3,2],[0,1,1,2]],[[1,2,0,1],[1,3,2,2],[2,1,3,3],[0,1,1,1]],[[1,2,0,1],[1,3,2,2],[2,1,4,2],[0,1,1,1]],[[1,2,0,1],[1,3,2,3],[2,1,3,2],[0,1,1,1]],[[1,2,0,2],[1,3,2,2],[2,1,3,2],[0,1,1,1]],[[1,1,3,0],[2,3,3,2],[0,2,3,2],[0,1,0,1]],[[1,1,2,0],[2,4,3,2],[0,2,3,2],[0,1,0,1]],[[1,1,2,0],[2,3,4,2],[0,2,3,2],[0,1,0,1]],[[1,1,2,0],[2,3,3,3],[0,2,3,2],[0,1,0,1]],[[1,1,2,0],[2,3,3,2],[0,2,3,3],[0,1,0,1]],[[1,2,0,1],[1,3,2,2],[2,1,3,2],[0,0,2,2]],[[1,2,0,1],[1,3,2,2],[2,1,3,3],[0,0,2,1]],[[1,2,0,1],[1,3,2,2],[2,1,4,2],[0,0,2,1]],[[1,2,0,1],[1,3,2,3],[2,1,3,2],[0,0,2,1]],[[1,2,0,2],[1,3,2,2],[2,1,3,2],[0,0,2,1]],[[1,2,0,1],[1,4,2,2],[2,1,3,1],[1,2,1,0]],[[1,3,0,1],[1,3,2,2],[2,1,3,1],[1,2,1,0]],[[2,2,0,1],[1,3,2,2],[2,1,3,1],[1,2,1,0]],[[1,2,0,1],[1,4,2,2],[2,1,3,1],[1,2,0,1]],[[1,3,0,1],[1,3,2,2],[2,1,3,1],[1,2,0,1]],[[2,2,0,1],[1,3,2,2],[2,1,3,1],[1,2,0,1]],[[1,2,0,1],[1,3,2,2],[2,1,3,1],[1,0,2,2]],[[1,2,0,1],[1,3,2,2],[2,1,3,1],[1,0,3,1]],[[1,2,0,1],[1,3,2,2],[2,1,4,1],[1,0,2,1]],[[1,1,3,0],[2,3,3,2],[0,2,3,2],[1,0,0,1]],[[1,1,2,0],[2,4,3,2],[0,2,3,2],[1,0,0,1]],[[1,1,2,0],[2,3,4,2],[0,2,3,2],[1,0,0,1]],[[1,1,2,0],[2,3,3,3],[0,2,3,2],[1,0,0,1]],[[1,1,2,0],[2,3,3,2],[0,2,3,3],[1,0,0,1]],[[1,2,0,1],[1,3,2,2],[2,1,3,1],[0,1,2,2]],[[1,2,0,1],[1,3,2,2],[2,1,3,1],[0,1,3,1]],[[1,2,0,1],[1,3,2,2],[2,1,4,1],[0,1,2,1]],[[1,2,0,1],[1,4,2,2],[2,1,3,0],[1,2,1,1]],[[1,3,0,1],[1,3,2,2],[2,1,3,0],[1,2,1,1]],[[2,2,0,1],[1,3,2,2],[2,1,3,0],[1,2,1,1]],[[1,2,0,1],[1,3,2,2],[2,1,2,2],[1,0,2,2]],[[1,2,0,1],[1,3,2,2],[2,1,2,2],[1,0,3,1]],[[1,2,0,1],[1,3,2,2],[2,1,2,3],[1,0,2,1]],[[1,2,0,1],[1,3,2,3],[2,1,2,2],[1,0,2,1]],[[1,2,0,2],[1,3,2,2],[2,1,2,2],[1,0,2,1]],[[1,2,0,1],[1,3,2,2],[2,1,2,2],[0,1,2,2]],[[1,2,0,1],[1,3,2,2],[2,1,2,2],[0,1,3,1]],[[1,2,0,1],[1,3,2,2],[2,1,2,3],[0,1,2,1]],[[1,2,0,1],[1,3,2,3],[2,1,2,2],[0,1,2,1]],[[1,2,0,2],[1,3,2,2],[2,1,2,2],[0,1,2,1]],[[1,2,0,1],[1,4,2,2],[2,1,2,1],[1,2,2,0]],[[1,3,0,1],[1,3,2,2],[2,1,2,1],[1,2,2,0]],[[2,2,0,1],[1,3,2,2],[2,1,2,1],[1,2,2,0]],[[1,2,0,1],[1,4,2,2],[2,1,2,0],[1,2,2,1]],[[1,3,0,1],[1,3,2,2],[2,1,2,0],[1,2,2,1]],[[2,2,0,1],[1,3,2,2],[2,1,2,0],[1,2,2,1]],[[1,2,0,1],[1,4,2,2],[2,1,0,2],[1,2,2,1]],[[1,3,0,1],[1,3,2,2],[2,1,0,2],[1,2,2,1]],[[2,2,0,1],[1,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,2,2],[2,0,3,3],[1,2,1,0]],[[1,2,0,1],[1,3,2,2],[2,0,4,2],[1,2,1,0]],[[1,2,0,1],[1,3,2,3],[2,0,3,2],[1,2,1,0]],[[1,2,0,2],[1,3,2,2],[2,0,3,2],[1,2,1,0]],[[1,2,0,1],[1,3,2,2],[2,0,3,2],[1,2,0,2]],[[1,2,0,1],[1,3,2,2],[2,0,3,3],[1,2,0,1]],[[1,2,0,1],[1,3,2,2],[2,0,4,2],[1,2,0,1]],[[1,2,0,1],[1,3,2,3],[2,0,3,2],[1,2,0,1]],[[1,2,0,2],[1,3,2,2],[2,0,3,2],[1,2,0,1]],[[2,1,2,0],[2,3,3,2],[0,3,0,0],[1,2,2,1]],[[1,1,2,0],[3,3,3,2],[0,3,0,0],[1,2,2,1]],[[1,1,2,0],[2,4,3,2],[0,3,0,0],[1,2,2,1]],[[1,1,3,0],[2,3,3,2],[0,3,0,1],[0,2,2,1]],[[1,1,2,0],[2,4,3,2],[0,3,0,1],[0,2,2,1]],[[1,1,2,0],[2,3,4,2],[0,3,0,1],[0,2,2,1]],[[1,1,2,0],[2,3,3,3],[0,3,0,1],[0,2,2,1]],[[2,1,2,0],[2,3,3,2],[0,3,0,1],[1,2,2,0]],[[1,1,2,0],[3,3,3,2],[0,3,0,1],[1,2,2,0]],[[1,1,2,0],[2,4,3,2],[0,3,0,1],[1,2,2,0]],[[1,1,3,0],[2,3,3,2],[0,3,0,2],[0,1,2,1]],[[1,1,2,0],[2,4,3,2],[0,3,0,2],[0,1,2,1]],[[1,1,2,0],[2,3,4,2],[0,3,0,2],[0,1,2,1]],[[1,1,2,0],[2,3,3,3],[0,3,0,2],[0,1,2,1]],[[1,1,2,0],[2,3,3,2],[0,3,0,3],[0,1,2,1]],[[1,1,2,0],[2,3,3,2],[0,3,0,2],[0,1,3,1]],[[1,1,2,0],[2,3,3,2],[0,3,0,2],[0,1,2,2]],[[1,1,3,0],[2,3,3,2],[0,3,0,2],[0,2,1,1]],[[1,1,2,0],[2,4,3,2],[0,3,0,2],[0,2,1,1]],[[1,1,2,0],[2,3,4,2],[0,3,0,2],[0,2,1,1]],[[1,1,2,0],[2,3,3,3],[0,3,0,2],[0,2,1,1]],[[1,1,2,0],[2,3,3,2],[0,3,0,3],[0,2,1,1]],[[1,1,2,0],[2,3,3,2],[0,3,0,2],[0,2,1,2]],[[1,1,3,0],[2,3,3,2],[0,3,0,2],[0,2,2,0]],[[1,1,2,0],[2,4,3,2],[0,3,0,2],[0,2,2,0]],[[1,1,2,0],[2,3,4,2],[0,3,0,2],[0,2,2,0]],[[1,1,2,0],[2,3,3,3],[0,3,0,2],[0,2,2,0]],[[1,1,2,0],[2,3,3,2],[0,3,0,3],[0,2,2,0]],[[1,1,3,0],[2,3,3,2],[0,3,0,2],[1,0,2,1]],[[1,1,2,0],[2,4,3,2],[0,3,0,2],[1,0,2,1]],[[1,1,2,0],[2,3,4,2],[0,3,0,2],[1,0,2,1]],[[1,1,2,0],[2,3,3,3],[0,3,0,2],[1,0,2,1]],[[1,1,2,0],[2,3,3,2],[0,3,0,3],[1,0,2,1]],[[1,1,2,0],[2,3,3,2],[0,3,0,2],[1,0,2,2]],[[2,1,2,0],[2,3,3,2],[0,3,0,2],[1,2,0,1]],[[1,1,2,0],[3,3,3,2],[0,3,0,2],[1,2,0,1]],[[1,1,2,0],[2,4,3,2],[0,3,0,2],[1,2,0,1]],[[2,1,2,0],[2,3,3,2],[0,3,0,2],[1,2,1,0]],[[1,1,2,0],[3,3,3,2],[0,3,0,2],[1,2,1,0]],[[1,1,2,0],[2,4,3,2],[0,3,0,2],[1,2,1,0]],[[1,2,0,1],[1,3,2,2],[2,0,3,2],[1,1,3,0]],[[1,2,0,1],[1,3,2,2],[2,0,3,3],[1,1,2,0]],[[1,2,0,1],[1,3,2,2],[2,0,4,2],[1,1,2,0]],[[1,2,0,1],[1,3,2,3],[2,0,3,2],[1,1,2,0]],[[1,2,0,2],[1,3,2,2],[2,0,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,2,2],[2,0,3,2],[1,1,1,2]],[[1,2,0,1],[1,3,2,2],[2,0,3,3],[1,1,1,1]],[[1,2,0,1],[1,3,2,2],[2,0,4,2],[1,1,1,1]],[[1,2,0,1],[1,3,2,3],[2,0,3,2],[1,1,1,1]],[[1,1,3,0],[2,3,3,2],[0,3,1,0],[0,2,2,1]],[[1,1,2,0],[2,4,3,2],[0,3,1,0],[0,2,2,1]],[[1,1,2,0],[2,3,4,2],[0,3,1,0],[0,2,2,1]],[[1,1,2,0],[2,3,3,3],[0,3,1,0],[0,2,2,1]],[[2,1,2,0],[2,3,3,2],[0,3,1,0],[1,2,1,1]],[[1,1,2,0],[3,3,3,2],[0,3,1,0],[1,2,1,1]],[[1,1,2,0],[2,4,3,2],[0,3,1,0],[1,2,1,1]],[[1,1,3,0],[2,3,3,2],[0,3,1,1],[0,2,2,0]],[[1,1,2,0],[2,4,3,2],[0,3,1,1],[0,2,2,0]],[[1,1,2,0],[2,3,4,2],[0,3,1,1],[0,2,2,0]],[[1,1,2,0],[2,3,3,3],[0,3,1,1],[0,2,2,0]],[[2,1,2,0],[2,3,3,2],[0,3,1,1],[1,2,0,1]],[[1,1,2,0],[3,3,3,2],[0,3,1,1],[1,2,0,1]],[[1,1,2,0],[2,4,3,2],[0,3,1,1],[1,2,0,1]],[[2,1,2,0],[2,3,3,2],[0,3,1,1],[1,2,1,0]],[[1,1,2,0],[3,3,3,2],[0,3,1,1],[1,2,1,0]],[[1,1,2,0],[2,4,3,2],[0,3,1,1],[1,2,1,0]],[[1,2,0,2],[1,3,2,2],[2,0,3,2],[1,1,1,1]],[[1,2,0,1],[1,3,2,2],[2,0,3,2],[0,2,3,0]],[[1,2,0,1],[1,3,2,2],[2,0,3,2],[0,3,2,0]],[[1,2,0,1],[1,3,2,2],[2,0,3,3],[0,2,2,0]],[[1,1,3,0],[2,3,3,2],[0,3,1,2],[0,1,1,1]],[[1,1,2,0],[2,4,3,2],[0,3,1,2],[0,1,1,1]],[[1,1,2,0],[2,3,4,2],[0,3,1,2],[0,1,1,1]],[[1,1,2,0],[2,3,3,3],[0,3,1,2],[0,1,1,1]],[[1,1,2,0],[2,3,3,2],[0,3,1,3],[0,1,1,1]],[[1,1,2,0],[2,3,3,2],[0,3,1,2],[0,1,1,2]],[[1,1,3,0],[2,3,3,2],[0,3,1,2],[0,1,2,0]],[[1,1,2,0],[2,4,3,2],[0,3,1,2],[0,1,2,0]],[[1,1,2,0],[2,3,4,2],[0,3,1,2],[0,1,2,0]],[[1,1,2,0],[2,3,3,3],[0,3,1,2],[0,1,2,0]],[[1,1,2,0],[2,3,3,2],[0,3,1,3],[0,1,2,0]],[[1,1,3,0],[2,3,3,2],[0,3,1,2],[0,2,0,1]],[[1,1,2,0],[2,4,3,2],[0,3,1,2],[0,2,0,1]],[[1,1,2,0],[2,3,4,2],[0,3,1,2],[0,2,0,1]],[[1,1,2,0],[2,3,3,3],[0,3,1,2],[0,2,0,1]],[[1,1,2,0],[2,3,3,2],[0,3,1,3],[0,2,0,1]],[[1,1,2,0],[2,3,3,2],[0,3,1,2],[0,2,0,2]],[[1,1,3,0],[2,3,3,2],[0,3,1,2],[0,2,1,0]],[[1,1,2,0],[2,4,3,2],[0,3,1,2],[0,2,1,0]],[[1,1,2,0],[2,3,4,2],[0,3,1,2],[0,2,1,0]],[[1,1,2,0],[2,3,3,3],[0,3,1,2],[0,2,1,0]],[[1,1,2,0],[2,3,3,2],[0,3,1,3],[0,2,1,0]],[[1,2,0,1],[1,3,2,2],[2,0,4,2],[0,2,2,0]],[[1,2,0,1],[1,3,2,3],[2,0,3,2],[0,2,2,0]],[[1,2,0,2],[1,3,2,2],[2,0,3,2],[0,2,2,0]],[[1,2,0,1],[1,3,2,2],[2,0,3,2],[0,2,1,2]],[[1,2,0,1],[1,3,2,2],[2,0,3,3],[0,2,1,1]],[[1,2,0,1],[1,3,2,2],[2,0,4,2],[0,2,1,1]],[[1,2,0,1],[1,3,2,3],[2,0,3,2],[0,2,1,1]],[[1,1,3,0],[2,3,3,2],[0,3,1,2],[1,0,1,1]],[[1,1,2,0],[2,4,3,2],[0,3,1,2],[1,0,1,1]],[[1,1,2,0],[2,3,4,2],[0,3,1,2],[1,0,1,1]],[[1,1,2,0],[2,3,3,3],[0,3,1,2],[1,0,1,1]],[[1,1,2,0],[2,3,3,2],[0,3,1,3],[1,0,1,1]],[[1,1,2,0],[2,3,3,2],[0,3,1,2],[1,0,1,2]],[[1,1,3,0],[2,3,3,2],[0,3,1,2],[1,0,2,0]],[[1,1,2,0],[2,4,3,2],[0,3,1,2],[1,0,2,0]],[[1,1,2,0],[2,3,4,2],[0,3,1,2],[1,0,2,0]],[[1,1,2,0],[2,3,3,3],[0,3,1,2],[1,0,2,0]],[[1,1,2,0],[2,3,3,2],[0,3,1,3],[1,0,2,0]],[[1,1,3,0],[2,3,3,2],[0,3,1,2],[1,1,0,1]],[[1,1,2,0],[2,4,3,2],[0,3,1,2],[1,1,0,1]],[[1,1,2,0],[2,3,4,2],[0,3,1,2],[1,1,0,1]],[[1,1,2,0],[2,3,3,3],[0,3,1,2],[1,1,0,1]],[[1,1,2,0],[2,3,3,2],[0,3,1,3],[1,1,0,1]],[[1,1,3,0],[2,3,3,2],[0,3,1,2],[1,1,1,0]],[[1,1,2,0],[2,4,3,2],[0,3,1,2],[1,1,1,0]],[[1,1,2,0],[2,3,4,2],[0,3,1,2],[1,1,1,0]],[[1,1,2,0],[2,3,3,3],[0,3,1,2],[1,1,1,0]],[[1,2,0,2],[1,3,2,2],[2,0,3,2],[0,2,1,1]],[[1,2,0,1],[1,4,2,2],[2,0,3,1],[1,2,2,0]],[[1,3,0,1],[1,3,2,2],[2,0,3,1],[1,2,2,0]],[[2,2,0,1],[1,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,0,1],[1,3,2,2],[2,0,3,1],[1,1,2,2]],[[1,2,0,1],[1,3,2,2],[2,0,3,1],[1,1,3,1]],[[1,2,0,1],[1,3,2,2],[2,0,4,1],[1,1,2,1]],[[1,2,0,1],[1,3,2,2],[2,0,3,1],[0,2,2,2]],[[1,2,0,1],[1,3,2,2],[2,0,3,1],[0,2,3,1]],[[1,2,0,1],[1,3,2,2],[2,0,3,1],[0,3,2,1]],[[1,2,0,1],[1,3,2,2],[2,0,4,1],[0,2,2,1]],[[1,2,0,1],[1,4,2,2],[2,0,3,0],[1,2,2,1]],[[1,3,0,1],[1,3,2,2],[2,0,3,0],[1,2,2,1]],[[2,2,0,1],[1,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,0,1],[1,3,2,2],[2,0,2,2],[1,1,2,2]],[[1,2,0,1],[1,3,2,2],[2,0,2,2],[1,1,3,1]],[[1,2,0,1],[1,3,2,2],[2,0,2,3],[1,1,2,1]],[[1,2,0,1],[1,3,2,3],[2,0,2,2],[1,1,2,1]],[[1,2,0,2],[1,3,2,2],[2,0,2,2],[1,1,2,1]],[[1,2,0,1],[1,3,2,2],[2,0,2,2],[0,2,2,2]],[[1,2,0,1],[1,3,2,2],[2,0,2,2],[0,2,3,1]],[[1,2,0,1],[1,3,2,2],[2,0,2,2],[0,3,2,1]],[[1,2,0,1],[1,3,2,2],[2,0,2,3],[0,2,2,1]],[[1,2,0,1],[1,3,2,3],[2,0,2,2],[0,2,2,1]],[[1,1,3,0],[2,3,3,2],[0,3,2,0],[0,1,2,1]],[[1,1,2,0],[2,4,3,2],[0,3,2,0],[0,1,2,1]],[[1,1,2,0],[2,3,4,2],[0,3,2,0],[0,1,2,1]],[[1,1,2,0],[2,3,3,3],[0,3,2,0],[0,1,2,1]],[[1,1,3,0],[2,3,3,2],[0,3,2,0],[0,2,1,1]],[[1,1,2,0],[2,4,3,2],[0,3,2,0],[0,2,1,1]],[[1,1,2,0],[2,3,4,2],[0,3,2,0],[0,2,1,1]],[[1,1,2,0],[2,3,3,3],[0,3,2,0],[0,2,1,1]],[[1,1,3,0],[2,3,3,2],[0,3,2,0],[1,0,2,1]],[[1,1,2,0],[2,4,3,2],[0,3,2,0],[1,0,2,1]],[[1,1,2,0],[2,3,4,2],[0,3,2,0],[1,0,2,1]],[[1,1,2,0],[2,3,3,3],[0,3,2,0],[1,0,2,1]],[[1,1,3,0],[2,3,3,2],[0,3,2,0],[1,1,1,1]],[[1,1,2,0],[2,4,3,2],[0,3,2,0],[1,1,1,1]],[[1,1,2,0],[2,3,4,2],[0,3,2,0],[1,1,1,1]],[[1,2,0,2],[1,3,2,2],[2,0,2,2],[0,2,2,1]],[[1,2,0,1],[1,4,2,2],[2,0,1,2],[1,2,2,1]],[[1,3,0,1],[1,3,2,2],[2,0,1,2],[1,2,2,1]],[[2,2,0,1],[1,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,3,0],[2,3,3,2],[0,3,2,1],[0,1,1,1]],[[1,1,2,0],[2,4,3,2],[0,3,2,1],[0,1,1,1]],[[1,1,2,0],[2,3,4,2],[0,3,2,1],[0,1,1,1]],[[1,1,2,0],[2,3,3,3],[0,3,2,1],[0,1,1,1]],[[1,1,3,0],[2,3,3,2],[0,3,2,1],[0,1,2,0]],[[1,1,2,0],[2,4,3,2],[0,3,2,1],[0,1,2,0]],[[1,1,2,0],[2,3,4,2],[0,3,2,1],[0,1,2,0]],[[1,1,2,0],[2,3,3,3],[0,3,2,1],[0,1,2,0]],[[1,1,3,0],[2,3,3,2],[0,3,2,1],[0,2,0,1]],[[1,1,2,0],[2,4,3,2],[0,3,2,1],[0,2,0,1]],[[1,1,2,0],[2,3,4,2],[0,3,2,1],[0,2,0,1]],[[1,1,2,0],[2,3,3,3],[0,3,2,1],[0,2,0,1]],[[1,1,3,0],[2,3,3,2],[0,3,2,1],[0,2,1,0]],[[1,1,2,0],[2,4,3,2],[0,3,2,1],[0,2,1,0]],[[1,1,2,0],[2,3,4,2],[0,3,2,1],[0,2,1,0]],[[1,1,2,0],[2,3,3,3],[0,3,2,1],[0,2,1,0]],[[1,1,3,0],[2,3,3,2],[0,3,2,1],[1,0,1,1]],[[1,1,2,0],[2,4,3,2],[0,3,2,1],[1,0,1,1]],[[1,1,2,0],[2,3,4,2],[0,3,2,1],[1,0,1,1]],[[1,1,2,0],[2,3,3,3],[0,3,2,1],[1,0,1,1]],[[1,1,3,0],[2,3,3,2],[0,3,2,1],[1,0,2,0]],[[1,1,2,0],[2,4,3,2],[0,3,2,1],[1,0,2,0]],[[1,1,2,0],[2,3,4,2],[0,3,2,1],[1,0,2,0]],[[1,1,2,0],[2,3,3,3],[0,3,2,1],[1,0,2,0]],[[1,1,3,0],[2,3,3,2],[0,3,2,1],[1,1,0,1]],[[1,1,2,0],[2,4,3,2],[0,3,2,1],[1,1,0,1]],[[1,1,2,0],[2,3,4,2],[0,3,2,1],[1,1,0,1]],[[1,1,2,0],[2,3,3,3],[0,3,2,1],[1,1,0,1]],[[1,1,3,0],[2,3,3,2],[0,3,2,1],[1,1,1,0]],[[1,1,2,0],[2,4,3,2],[0,3,2,1],[1,1,1,0]],[[1,1,2,0],[2,3,4,2],[0,3,2,1],[1,1,1,0]],[[1,1,2,0],[2,3,3,3],[0,3,2,1],[1,1,1,0]],[[1,1,3,0],[2,3,3,2],[0,3,2,2],[0,0,1,1]],[[1,1,2,0],[2,4,3,2],[0,3,2,2],[0,0,1,1]],[[1,1,2,0],[2,3,4,2],[0,3,2,2],[0,0,1,1]],[[1,1,2,0],[2,3,3,3],[0,3,2,2],[0,0,1,1]],[[1,1,2,0],[2,3,3,2],[0,3,2,3],[0,0,1,1]],[[1,1,2,0],[2,3,3,2],[0,3,2,2],[0,0,1,2]],[[1,1,3,0],[2,3,3,2],[0,3,2,2],[0,0,2,0]],[[1,1,2,0],[2,4,3,2],[0,3,2,2],[0,0,2,0]],[[1,1,2,0],[2,3,4,2],[0,3,2,2],[0,0,2,0]],[[1,1,2,0],[2,3,3,3],[0,3,2,2],[0,0,2,0]],[[1,1,2,0],[2,3,3,2],[0,3,2,3],[0,0,2,0]],[[1,2,0,1],[1,3,2,2],[1,3,3,3],[0,0,2,0]],[[1,2,0,1],[1,3,2,2],[1,3,4,2],[0,0,2,0]],[[1,2,0,1],[1,3,2,3],[1,3,3,2],[0,0,2,0]],[[1,2,0,2],[1,3,2,2],[1,3,3,2],[0,0,2,0]],[[1,2,0,1],[1,3,2,2],[1,3,3,2],[0,0,1,2]],[[1,2,0,1],[1,3,2,2],[1,3,3,3],[0,0,1,1]],[[1,2,0,1],[1,3,2,2],[1,3,4,2],[0,0,1,1]],[[1,2,0,1],[1,3,2,3],[1,3,3,2],[0,0,1,1]],[[1,2,0,2],[1,3,2,2],[1,3,3,2],[0,0,1,1]],[[1,2,0,1],[1,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,2,0,1],[1,4,2,2],[1,3,3,1],[1,2,0,0]],[[1,3,0,1],[1,3,2,2],[1,3,3,1],[1,2,0,0]],[[2,2,0,1],[1,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,2,0,1],[1,3,2,2],[1,3,4,1],[1,1,1,0]],[[1,2,0,1],[1,3,2,2],[1,4,3,1],[1,1,1,0]],[[1,2,0,1],[1,4,2,2],[1,3,3,1],[1,1,1,0]],[[1,3,0,1],[1,3,2,2],[1,3,3,1],[1,1,1,0]],[[2,2,0,1],[1,3,2,2],[1,3,3,1],[1,1,1,0]],[[1,2,0,1],[1,3,2,2],[1,3,4,1],[1,1,0,1]],[[1,2,0,1],[1,3,2,2],[1,4,3,1],[1,1,0,1]],[[1,2,0,1],[1,4,2,2],[1,3,3,1],[1,1,0,1]],[[1,3,0,1],[1,3,2,2],[1,3,3,1],[1,1,0,1]],[[2,2,0,1],[1,3,2,2],[1,3,3,1],[1,1,0,1]],[[1,2,0,1],[1,3,2,2],[1,3,3,1],[1,0,3,0]],[[1,2,0,1],[1,3,2,2],[1,3,4,1],[1,0,2,0]],[[1,2,0,1],[1,3,2,2],[1,4,3,1],[1,0,2,0]],[[1,2,0,1],[1,4,2,2],[1,3,3,1],[1,0,2,0]],[[1,3,0,1],[1,3,2,2],[1,3,3,1],[1,0,2,0]],[[2,2,0,1],[1,3,2,2],[1,3,3,1],[1,0,2,0]],[[1,2,0,1],[1,3,2,2],[1,3,4,1],[1,0,1,1]],[[1,2,0,1],[1,3,2,2],[1,4,3,1],[1,0,1,1]],[[1,2,0,1],[1,4,2,2],[1,3,3,1],[1,0,1,1]],[[1,3,0,1],[1,3,2,2],[1,3,3,1],[1,0,1,1]],[[2,2,0,1],[1,3,2,2],[1,3,3,1],[1,0,1,1]],[[1,2,0,1],[1,3,2,2],[1,3,3,1],[0,3,1,0]],[[1,1,3,0],[2,3,3,2],[0,3,3,0],[0,0,2,1]],[[1,1,2,0],[2,4,3,2],[0,3,3,0],[0,0,2,1]],[[1,1,2,0],[2,3,4,2],[0,3,3,0],[0,0,2,1]],[[1,1,2,0],[2,3,3,3],[0,3,3,0],[0,0,2,1]],[[1,1,2,0],[2,3,3,2],[0,3,4,0],[0,0,2,1]],[[1,1,3,0],[2,3,3,2],[0,3,3,0],[0,1,2,0]],[[1,1,2,0],[2,4,3,2],[0,3,3,0],[0,1,2,0]],[[1,1,2,0],[2,3,4,2],[0,3,3,0],[0,1,2,0]],[[1,1,3,0],[2,3,3,2],[0,3,3,0],[0,2,1,0]],[[1,1,2,0],[2,4,3,2],[0,3,3,0],[0,2,1,0]],[[1,1,2,0],[2,3,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,0,1],[1,3,2,2],[1,3,4,1],[0,2,1,0]],[[1,2,0,1],[1,3,2,2],[1,4,3,1],[0,2,1,0]],[[1,2,0,1],[1,4,2,2],[1,3,3,1],[0,2,1,0]],[[1,3,0,1],[1,3,2,2],[1,3,3,1],[0,2,1,0]],[[2,2,0,1],[1,3,2,2],[1,3,3,1],[0,2,1,0]],[[1,2,0,1],[1,3,2,2],[1,3,3,1],[0,3,0,1]],[[1,2,0,1],[1,3,2,2],[1,3,4,1],[0,2,0,1]],[[1,1,3,0],[2,3,3,2],[0,3,3,0],[1,0,2,0]],[[1,1,2,0],[2,4,3,2],[0,3,3,0],[1,0,2,0]],[[1,1,2,0],[2,3,4,2],[0,3,3,0],[1,0,2,0]],[[1,1,3,0],[2,3,3,2],[0,3,3,0],[1,1,1,0]],[[1,1,2,0],[2,4,3,2],[0,3,3,0],[1,1,1,0]],[[1,1,2,0],[2,3,4,2],[0,3,3,0],[1,1,1,0]],[[1,2,0,1],[1,3,2,2],[1,4,3,1],[0,2,0,1]],[[1,2,0,1],[1,4,2,2],[1,3,3,1],[0,2,0,1]],[[1,3,0,1],[1,3,2,2],[1,3,3,1],[0,2,0,1]],[[2,2,0,1],[1,3,2,2],[1,3,3,1],[0,2,0,1]],[[1,2,0,1],[1,3,2,2],[1,3,3,1],[0,1,3,0]],[[1,2,0,1],[1,3,2,2],[1,3,4,1],[0,1,2,0]],[[1,2,0,1],[1,3,2,2],[1,4,3,1],[0,1,2,0]],[[1,2,0,1],[1,4,2,2],[1,3,3,1],[0,1,2,0]],[[1,3,0,1],[1,3,2,2],[1,3,3,1],[0,1,2,0]],[[2,2,0,1],[1,3,2,2],[1,3,3,1],[0,1,2,0]],[[1,2,0,1],[1,3,2,2],[1,3,4,1],[0,1,1,1]],[[1,2,0,1],[1,3,2,2],[1,4,3,1],[0,1,1,1]],[[1,2,0,1],[1,4,2,2],[1,3,3,1],[0,1,1,1]],[[1,3,0,1],[1,3,2,2],[1,3,3,1],[0,1,1,1]],[[2,2,0,1],[1,3,2,2],[1,3,3,1],[0,1,1,1]],[[1,2,0,1],[1,3,2,2],[1,4,3,0],[1,2,0,1]],[[1,2,0,1],[1,4,2,2],[1,3,3,0],[1,2,0,1]],[[1,3,0,1],[1,3,2,2],[1,3,3,0],[1,2,0,1]],[[2,2,0,1],[1,3,2,2],[1,3,3,0],[1,2,0,1]],[[1,1,3,0],[2,3,3,2],[0,3,3,1],[0,0,1,1]],[[1,1,2,0],[2,4,3,2],[0,3,3,1],[0,0,1,1]],[[1,1,2,0],[2,3,4,2],[0,3,3,1],[0,0,1,1]],[[1,1,2,0],[2,3,3,3],[0,3,3,1],[0,0,1,1]],[[1,1,2,0],[2,3,3,2],[0,3,4,1],[0,0,1,1]],[[1,1,3,0],[2,3,3,2],[0,3,3,1],[0,0,2,0]],[[1,1,2,0],[2,4,3,2],[0,3,3,1],[0,0,2,0]],[[1,1,2,0],[2,3,4,2],[0,3,3,1],[0,0,2,0]],[[1,1,2,0],[2,3,3,3],[0,3,3,1],[0,0,2,0]],[[1,1,2,0],[2,3,3,2],[0,3,4,1],[0,0,2,0]],[[1,2,0,1],[1,3,2,2],[1,3,4,0],[1,1,1,1]],[[1,2,0,1],[1,3,2,2],[1,4,3,0],[1,1,1,1]],[[1,2,0,1],[1,4,2,2],[1,3,3,0],[1,1,1,1]],[[1,3,0,1],[1,3,2,2],[1,3,3,0],[1,1,1,1]],[[2,2,0,1],[1,3,2,2],[1,3,3,0],[1,1,1,1]],[[1,2,0,1],[1,3,2,2],[1,3,3,0],[1,0,2,2]],[[1,2,0,1],[1,3,2,2],[1,3,3,0],[1,0,3,1]],[[1,1,3,0],[2,3,3,2],[0,3,3,1],[0,2,0,0]],[[1,1,2,0],[2,4,3,2],[0,3,3,1],[0,2,0,0]],[[1,1,2,0],[2,3,4,2],[0,3,3,1],[0,2,0,0]],[[1,1,2,0],[2,3,3,3],[0,3,3,1],[0,2,0,0]],[[1,2,0,1],[1,3,2,2],[1,3,4,0],[1,0,2,1]],[[1,2,0,1],[1,3,2,2],[1,4,3,0],[1,0,2,1]],[[1,2,0,1],[1,4,2,2],[1,3,3,0],[1,0,2,1]],[[1,3,0,1],[1,3,2,2],[1,3,3,0],[1,0,2,1]],[[2,2,0,1],[1,3,2,2],[1,3,3,0],[1,0,2,1]],[[1,2,0,1],[1,3,2,2],[1,3,3,0],[0,3,1,1]],[[1,2,0,1],[1,3,2,2],[1,3,4,0],[0,2,1,1]],[[1,2,0,1],[1,3,2,2],[1,4,3,0],[0,2,1,1]],[[1,2,0,1],[1,4,2,2],[1,3,3,0],[0,2,1,1]],[[1,3,0,1],[1,3,2,2],[1,3,3,0],[0,2,1,1]],[[2,2,0,1],[1,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,2,0,1],[1,3,2,2],[1,3,3,0],[0,1,2,2]],[[1,2,0,1],[1,3,2,2],[1,3,3,0],[0,1,3,1]],[[1,2,0,1],[1,3,2,2],[1,3,4,0],[0,1,2,1]],[[1,2,0,1],[1,3,2,2],[1,4,3,0],[0,1,2,1]],[[1,1,3,0],[2,3,3,2],[0,3,3,1],[1,1,0,0]],[[1,1,2,0],[2,4,3,2],[0,3,3,1],[1,1,0,0]],[[1,1,2,0],[2,3,4,2],[0,3,3,1],[1,1,0,0]],[[1,1,2,0],[2,3,3,3],[0,3,3,1],[1,1,0,0]],[[1,2,0,1],[1,4,2,2],[1,3,3,0],[0,1,2,1]],[[1,3,0,1],[1,3,2,2],[1,3,3,0],[0,1,2,1]],[[2,2,0,1],[1,3,2,2],[1,3,3,0],[0,1,2,1]],[[1,2,0,1],[1,3,2,2],[1,4,2,1],[1,1,2,0]],[[1,2,0,1],[1,4,2,2],[1,3,2,1],[1,1,2,0]],[[1,3,0,1],[1,3,2,2],[1,3,2,1],[1,1,2,0]],[[2,2,0,1],[1,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,2,0,1],[1,3,2,2],[1,3,2,1],[0,2,3,0]],[[1,2,0,1],[1,3,2,2],[1,3,2,1],[0,3,2,0]],[[1,2,0,1],[1,3,2,2],[1,4,2,1],[0,2,2,0]],[[1,2,0,1],[1,4,2,2],[1,3,2,1],[0,2,2,0]],[[1,3,0,1],[1,3,2,2],[1,3,2,1],[0,2,2,0]],[[2,2,0,1],[1,3,2,2],[1,3,2,1],[0,2,2,0]],[[1,2,0,1],[1,3,2,2],[1,4,2,0],[1,1,2,1]],[[1,2,0,1],[1,4,2,2],[1,3,2,0],[1,1,2,1]],[[1,3,0,1],[1,3,2,2],[1,3,2,0],[1,1,2,1]],[[2,2,0,1],[1,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,2,0,1],[1,3,2,2],[1,3,2,0],[0,2,2,2]],[[1,2,0,1],[1,3,2,2],[1,3,2,0],[0,2,3,1]],[[1,2,0,1],[1,3,2,2],[1,3,2,0],[0,3,2,1]],[[1,2,0,1],[1,3,2,2],[1,4,2,0],[0,2,2,1]],[[1,2,0,1],[1,4,2,2],[1,3,2,0],[0,2,2,1]],[[1,3,0,1],[1,3,2,2],[1,3,2,0],[0,2,2,1]],[[2,2,0,1],[1,3,2,2],[1,3,2,0],[0,2,2,1]],[[1,1,3,0],[2,3,3,2],[0,3,3,2],[0,0,0,1]],[[1,1,2,0],[2,4,3,2],[0,3,3,2],[0,0,0,1]],[[1,1,2,0],[2,3,4,2],[0,3,3,2],[0,0,0,1]],[[1,1,2,0],[2,3,3,3],[0,3,3,2],[0,0,0,1]],[[1,1,2,0],[2,3,3,2],[0,3,3,3],[0,0,0,1]],[[1,2,0,1],[1,3,2,2],[1,4,0,2],[1,1,2,1]],[[1,2,0,1],[1,4,2,2],[1,3,0,2],[1,1,2,1]],[[1,3,0,1],[1,3,2,2],[1,3,0,2],[1,1,2,1]],[[2,2,0,1],[1,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,2,0,1],[1,3,2,2],[1,3,0,2],[0,2,2,2]],[[1,2,0,1],[1,3,2,2],[1,3,0,2],[0,2,3,1]],[[1,2,0,1],[1,3,2,2],[1,3,0,2],[0,3,2,1]],[[1,2,0,1],[1,3,2,2],[1,3,0,3],[0,2,2,1]],[[1,2,0,1],[1,3,2,2],[1,4,0,2],[0,2,2,1]],[[1,2,0,1],[1,3,2,3],[1,3,0,2],[0,2,2,1]],[[1,2,0,1],[1,4,2,2],[1,3,0,2],[0,2,2,1]],[[1,2,0,2],[1,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,3,0,1],[1,3,2,2],[1,3,0,2],[0,2,2,1]],[[2,2,0,1],[1,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,2,0,1],[1,3,2,2],[1,2,3,3],[1,1,1,0]],[[1,2,0,1],[1,3,2,2],[1,2,4,2],[1,1,1,0]],[[1,2,0,1],[1,3,2,3],[1,2,3,2],[1,1,1,0]],[[1,2,0,2],[1,3,2,2],[1,2,3,2],[1,1,1,0]],[[1,2,0,1],[1,3,2,2],[1,2,3,2],[1,1,0,2]],[[1,2,0,1],[1,3,2,2],[1,2,3,3],[1,1,0,1]],[[1,2,0,1],[1,3,2,2],[1,2,4,2],[1,1,0,1]],[[1,2,0,1],[1,3,2,3],[1,2,3,2],[1,1,0,1]],[[1,2,0,2],[1,3,2,2],[1,2,3,2],[1,1,0,1]],[[1,2,0,1],[1,3,2,2],[1,2,3,2],[1,0,3,0]],[[1,2,0,1],[1,3,2,2],[1,2,3,3],[1,0,2,0]],[[1,2,0,1],[1,3,2,2],[1,2,4,2],[1,0,2,0]],[[1,2,0,1],[1,3,2,3],[1,2,3,2],[1,0,2,0]],[[1,2,0,2],[1,3,2,2],[1,2,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,2,2],[1,2,3,2],[1,0,1,2]],[[1,2,0,1],[1,3,2,2],[1,2,3,3],[1,0,1,1]],[[1,2,0,1],[1,3,2,2],[1,2,4,2],[1,0,1,1]],[[1,2,0,1],[1,3,2,3],[1,2,3,2],[1,0,1,1]],[[1,2,0,2],[1,3,2,2],[1,2,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,2,2],[1,2,3,3],[0,2,1,0]],[[1,2,0,1],[1,3,2,2],[1,2,4,2],[0,2,1,0]],[[1,2,0,1],[1,3,2,3],[1,2,3,2],[0,2,1,0]],[[1,2,0,2],[1,3,2,2],[1,2,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,2,2],[1,2,3,2],[0,2,0,2]],[[1,2,0,1],[1,3,2,2],[1,2,3,3],[0,2,0,1]],[[1,2,0,1],[1,3,2,2],[1,2,4,2],[0,2,0,1]],[[1,2,0,1],[1,3,2,3],[1,2,3,2],[0,2,0,1]],[[1,2,0,2],[1,3,2,2],[1,2,3,2],[0,2,0,1]],[[1,2,0,1],[1,3,2,2],[1,2,3,2],[0,1,3,0]],[[1,2,0,1],[1,3,2,2],[1,2,3,3],[0,1,2,0]],[[1,2,0,1],[1,3,2,2],[1,2,4,2],[0,1,2,0]],[[1,2,0,1],[1,3,2,3],[1,2,3,2],[0,1,2,0]],[[1,2,0,2],[1,3,2,2],[1,2,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,2,2],[1,2,3,2],[0,1,1,2]],[[1,2,0,1],[1,3,2,2],[1,2,3,3],[0,1,1,1]],[[1,2,0,1],[1,3,2,2],[1,2,4,2],[0,1,1,1]],[[1,2,0,1],[1,3,2,3],[1,2,3,2],[0,1,1,1]],[[1,2,0,2],[1,3,2,2],[1,2,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,2,2],[1,2,3,2],[0,0,2,2]],[[1,2,0,1],[1,3,2,2],[1,2,3,3],[0,0,2,1]],[[1,2,0,1],[1,3,2,2],[1,2,4,2],[0,0,2,1]],[[1,2,0,1],[1,3,2,3],[1,2,3,2],[0,0,2,1]],[[1,2,0,2],[1,3,2,2],[1,2,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,2,2],[1,2,3,1],[1,0,2,2]],[[1,2,0,1],[1,3,2,2],[1,2,3,1],[1,0,3,1]],[[1,2,0,1],[1,3,2,2],[1,2,4,1],[1,0,2,1]],[[1,2,0,1],[1,3,2,2],[1,2,3,1],[0,2,3,0]],[[1,2,0,1],[1,3,2,2],[1,2,3,1],[0,3,2,0]],[[1,2,0,1],[1,3,2,2],[1,2,4,1],[0,2,2,0]],[[1,2,0,1],[1,3,2,2],[1,2,3,1],[0,1,2,2]],[[1,2,0,1],[1,3,2,2],[1,2,3,1],[0,1,3,1]],[[1,2,0,1],[1,3,2,2],[1,2,4,1],[0,1,2,1]],[[1,2,0,1],[1,3,2,2],[1,2,3,0],[0,2,2,2]],[[1,2,0,1],[1,3,2,2],[1,2,3,0],[0,2,3,1]],[[1,2,0,1],[1,3,2,2],[1,2,3,0],[0,3,2,1]],[[1,2,0,1],[1,3,2,2],[1,2,4,0],[0,2,2,1]],[[1,2,0,1],[1,3,2,2],[1,2,2,2],[1,0,2,2]],[[1,2,0,1],[1,3,2,2],[1,2,2,2],[1,0,3,1]],[[1,2,0,1],[1,3,2,2],[1,2,2,3],[1,0,2,1]],[[1,2,0,1],[1,3,2,3],[1,2,2,2],[1,0,2,1]],[[1,2,0,2],[1,3,2,2],[1,2,2,2],[1,0,2,1]],[[1,2,0,1],[1,3,2,2],[1,2,2,2],[0,1,2,2]],[[1,2,0,1],[1,3,2,2],[1,2,2,2],[0,1,3,1]],[[1,2,0,1],[1,3,2,2],[1,2,2,3],[0,1,2,1]],[[1,2,0,1],[1,3,2,3],[1,2,2,2],[0,1,2,1]],[[1,2,0,2],[1,3,2,2],[1,2,2,2],[0,1,2,1]],[[1,2,0,1],[1,3,2,2],[1,1,3,2],[0,2,3,0]],[[1,2,0,1],[1,3,2,2],[1,1,3,2],[0,3,2,0]],[[1,2,0,1],[1,3,2,2],[1,1,3,3],[0,2,2,0]],[[1,2,0,1],[1,3,2,2],[1,1,4,2],[0,2,2,0]],[[1,2,0,1],[1,3,2,3],[1,1,3,2],[0,2,2,0]],[[1,2,0,2],[1,3,2,2],[1,1,3,2],[0,2,2,0]],[[1,2,0,1],[1,3,2,2],[1,1,3,2],[0,2,1,2]],[[1,2,0,1],[1,3,2,2],[1,1,3,3],[0,2,1,1]],[[1,2,0,1],[1,3,2,2],[1,1,4,2],[0,2,1,1]],[[1,2,0,1],[1,3,2,3],[1,1,3,2],[0,2,1,1]],[[1,2,0,2],[1,3,2,2],[1,1,3,2],[0,2,1,1]],[[1,2,0,1],[1,3,2,2],[1,1,3,1],[0,2,2,2]],[[1,2,0,1],[1,3,2,2],[1,1,3,1],[0,2,3,1]],[[1,2,0,1],[1,3,2,2],[1,1,3,1],[0,3,2,1]],[[1,2,0,1],[1,3,2,2],[1,1,4,1],[0,2,2,1]],[[1,2,0,1],[1,3,2,2],[1,1,2,2],[0,2,2,2]],[[1,2,0,1],[1,3,2,2],[1,1,2,2],[0,2,3,1]],[[1,2,0,1],[1,3,2,2],[1,1,2,2],[0,3,2,1]],[[1,2,0,1],[1,3,2,2],[1,1,2,3],[0,2,2,1]],[[1,2,0,1],[1,3,2,3],[1,1,2,2],[0,2,2,1]],[[1,2,0,2],[1,3,2,2],[1,1,2,2],[0,2,2,1]],[[1,2,0,1],[1,3,2,2],[1,0,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,2,2],[1,0,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,2,2],[1,0,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,2,2],[1,0,3,3],[1,2,2,0]],[[1,2,0,1],[1,3,2,2],[1,0,4,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,3],[1,0,3,2],[1,2,2,0]],[[1,2,0,2],[1,3,2,2],[1,0,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,2],[1,0,3,2],[1,2,1,2]],[[1,2,0,1],[1,3,2,2],[1,0,3,3],[1,2,1,1]],[[1,2,0,1],[1,3,2,2],[1,0,4,2],[1,2,1,1]],[[1,2,0,1],[1,3,2,3],[1,0,3,2],[1,2,1,1]],[[1,2,0,2],[1,3,2,2],[1,0,3,2],[1,2,1,1]],[[1,2,0,1],[1,3,2,2],[1,0,3,2],[0,2,2,2]],[[1,2,0,1],[1,3,2,2],[1,0,3,2],[0,2,3,1]],[[1,2,0,1],[1,3,2,2],[1,0,3,3],[0,2,2,1]],[[1,2,0,1],[1,3,2,3],[1,0,3,2],[0,2,2,1]],[[1,2,0,2],[1,3,2,2],[1,0,3,2],[0,2,2,1]],[[1,2,0,1],[1,3,2,2],[1,0,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,2,2],[1,0,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,2,2],[1,0,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,2,2],[1,0,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,2,2],[1,0,4,1],[1,2,2,1]],[[1,2,0,1],[1,3,2,2],[1,0,2,2],[1,2,2,2]],[[1,2,0,1],[1,3,2,2],[1,0,2,2],[1,2,3,1]],[[1,2,0,1],[1,3,2,2],[1,0,2,2],[1,3,2,1]],[[1,2,0,1],[1,3,2,2],[1,0,2,2],[2,2,2,1]],[[1,2,0,1],[1,3,2,2],[1,0,2,3],[1,2,2,1]],[[1,2,0,1],[1,3,2,3],[1,0,2,2],[1,2,2,1]],[[1,2,0,2],[1,3,2,2],[1,0,2,2],[1,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,3,3,3],[0,2,1,0]],[[1,2,0,1],[1,3,2,2],[0,3,4,2],[0,2,1,0]],[[1,2,0,1],[1,3,2,3],[0,3,3,2],[0,2,1,0]],[[1,2,0,2],[1,3,2,2],[0,3,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,2,2],[0,3,3,2],[0,2,0,2]],[[1,2,0,1],[1,3,2,2],[0,3,3,3],[0,2,0,1]],[[1,2,0,1],[1,3,2,2],[0,3,4,2],[0,2,0,1]],[[1,2,0,1],[1,3,2,3],[0,3,3,2],[0,2,0,1]],[[1,2,0,2],[1,3,2,2],[0,3,3,2],[0,2,0,1]],[[1,2,0,1],[1,3,2,2],[0,3,3,2],[0,1,3,0]],[[1,2,0,1],[1,3,2,2],[0,3,3,3],[0,1,2,0]],[[1,2,0,1],[1,3,2,2],[0,3,4,2],[0,1,2,0]],[[1,2,0,1],[1,3,2,3],[0,3,3,2],[0,1,2,0]],[[1,2,0,2],[1,3,2,2],[0,3,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,2,2],[0,3,3,2],[0,1,1,2]],[[1,2,0,1],[1,3,2,2],[0,3,3,3],[0,1,1,1]],[[1,2,0,1],[1,3,2,2],[0,3,4,2],[0,1,1,1]],[[1,2,0,1],[1,3,2,3],[0,3,3,2],[0,1,1,1]],[[1,2,0,2],[1,3,2,2],[0,3,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,2,2],[0,3,3,2],[0,0,2,2]],[[1,2,0,1],[1,3,2,2],[0,3,3,3],[0,0,2,1]],[[1,2,0,1],[1,3,2,2],[0,3,4,2],[0,0,2,1]],[[1,2,0,1],[1,3,2,3],[0,3,3,2],[0,0,2,1]],[[1,2,0,2],[1,3,2,2],[0,3,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,2,2],[0,3,3,1],[1,3,1,0]],[[1,2,0,1],[1,3,2,2],[0,3,3,1],[2,2,1,0]],[[1,2,0,1],[1,3,2,2],[0,3,4,1],[1,2,1,0]],[[1,2,0,1],[1,3,2,2],[0,4,3,1],[1,2,1,0]],[[1,2,0,1],[1,4,2,2],[0,3,3,1],[1,2,1,0]],[[1,3,0,1],[1,3,2,2],[0,3,3,1],[1,2,1,0]],[[2,2,0,1],[1,3,2,2],[0,3,3,1],[1,2,1,0]],[[1,2,0,1],[1,3,2,2],[0,3,3,1],[1,3,0,1]],[[1,2,0,1],[1,3,2,2],[0,3,3,1],[2,2,0,1]],[[1,2,0,1],[1,3,2,2],[0,3,4,1],[1,2,0,1]],[[1,2,0,1],[1,3,2,2],[0,4,3,1],[1,2,0,1]],[[1,2,0,1],[1,4,2,2],[0,3,3,1],[1,2,0,1]],[[1,3,0,1],[1,3,2,2],[0,3,3,1],[1,2,0,1]],[[2,2,0,1],[1,3,2,2],[0,3,3,1],[1,2,0,1]],[[1,2,0,1],[1,3,2,2],[0,3,3,1],[1,1,3,0]],[[1,2,0,1],[1,3,2,2],[0,3,4,1],[1,1,2,0]],[[1,2,0,1],[1,3,2,2],[0,4,3,1],[1,1,2,0]],[[1,2,0,1],[1,4,2,2],[0,3,3,1],[1,1,2,0]],[[1,3,0,1],[1,3,2,2],[0,3,3,1],[1,1,2,0]],[[2,2,0,1],[1,3,2,2],[0,3,3,1],[1,1,2,0]],[[1,2,0,1],[1,3,2,2],[0,3,4,1],[1,1,1,1]],[[1,2,0,1],[1,3,2,2],[0,4,3,1],[1,1,1,1]],[[1,2,0,1],[1,4,2,2],[0,3,3,1],[1,1,1,1]],[[1,3,0,1],[1,3,2,2],[0,3,3,1],[1,1,1,1]],[[2,2,0,1],[1,3,2,2],[0,3,3,1],[1,1,1,1]],[[1,2,0,1],[1,3,2,2],[0,3,3,1],[0,1,2,2]],[[1,2,0,1],[1,3,2,2],[0,3,3,1],[0,1,3,1]],[[1,2,0,1],[1,3,2,2],[0,3,4,1],[0,1,2,1]],[[1,2,0,1],[1,3,2,2],[0,3,3,0],[1,3,1,1]],[[1,2,0,1],[1,3,2,2],[0,3,3,0],[2,2,1,1]],[[1,2,0,1],[1,3,2,2],[0,3,4,0],[1,2,1,1]],[[1,2,0,1],[1,3,2,2],[0,4,3,0],[1,2,1,1]],[[1,2,0,1],[1,4,2,2],[0,3,3,0],[1,2,1,1]],[[1,3,0,1],[1,3,2,2],[0,3,3,0],[1,2,1,1]],[[2,2,0,1],[1,3,2,2],[0,3,3,0],[1,2,1,1]],[[1,2,0,1],[1,3,2,2],[0,3,3,0],[1,1,2,2]],[[1,2,0,1],[1,3,2,2],[0,3,3,0],[1,1,3,1]],[[1,2,0,1],[1,3,2,2],[0,3,4,0],[1,1,2,1]],[[1,2,0,1],[1,3,2,2],[0,4,3,0],[1,1,2,1]],[[1,2,0,1],[1,4,2,2],[0,3,3,0],[1,1,2,1]],[[1,3,0,1],[1,3,2,2],[0,3,3,0],[1,1,2,1]],[[2,2,0,1],[1,3,2,2],[0,3,3,0],[1,1,2,1]],[[1,2,0,1],[1,3,2,2],[0,3,2,2],[0,1,2,2]],[[1,2,0,1],[1,3,2,2],[0,3,2,2],[0,1,3,1]],[[1,2,0,1],[1,3,2,2],[0,3,2,3],[0,1,2,1]],[[1,2,0,1],[1,3,2,3],[0,3,2,2],[0,1,2,1]],[[1,2,0,2],[1,3,2,2],[0,3,2,2],[0,1,2,1]],[[1,2,0,1],[1,3,2,2],[0,3,2,1],[1,2,3,0]],[[1,2,0,1],[1,3,2,2],[0,3,2,1],[1,3,2,0]],[[1,2,0,1],[1,3,2,2],[0,3,2,1],[2,2,2,0]],[[1,2,0,1],[1,3,2,2],[0,4,2,1],[1,2,2,0]],[[1,2,0,1],[1,4,2,2],[0,3,2,1],[1,2,2,0]],[[1,3,0,1],[1,3,2,2],[0,3,2,1],[1,2,2,0]],[[2,2,0,1],[1,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,2,0,1],[1,3,2,2],[0,3,2,0],[1,2,2,2]],[[1,2,0,1],[1,3,2,2],[0,3,2,0],[1,2,3,1]],[[1,2,0,1],[1,3,2,2],[0,3,2,0],[1,3,2,1]],[[1,2,0,1],[1,3,2,2],[0,3,2,0],[2,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,4,2,0],[1,2,2,1]],[[1,2,0,1],[1,4,2,2],[0,3,2,0],[1,2,2,1]],[[1,3,0,1],[1,3,2,2],[0,3,2,0],[1,2,2,1]],[[2,2,0,1],[1,3,2,2],[0,3,2,0],[1,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,3,0,2],[1,2,2,2]],[[1,2,0,1],[1,3,2,2],[0,3,0,2],[1,2,3,1]],[[1,2,0,1],[1,3,2,2],[0,3,0,2],[1,3,2,1]],[[1,2,0,1],[1,3,2,2],[0,3,0,2],[2,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,3,0,3],[1,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,4,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,2,3],[0,3,0,2],[1,2,2,1]],[[1,2,0,1],[1,4,2,2],[0,3,0,2],[1,2,2,1]],[[1,2,0,2],[1,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,3,0,1],[1,3,2,2],[0,3,0,2],[1,2,2,1]],[[2,2,0,1],[1,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,2,3,3],[1,2,1,0]],[[1,2,0,1],[1,3,2,2],[0,2,4,2],[1,2,1,0]],[[1,2,0,1],[1,3,2,3],[0,2,3,2],[1,2,1,0]],[[1,2,0,2],[1,3,2,2],[0,2,3,2],[1,2,1,0]],[[1,2,0,1],[1,3,2,2],[0,2,3,2],[1,2,0,2]],[[1,2,0,1],[1,3,2,2],[0,2,3,3],[1,2,0,1]],[[1,2,0,1],[1,3,2,2],[0,2,4,2],[1,2,0,1]],[[1,2,0,1],[1,3,2,3],[0,2,3,2],[1,2,0,1]],[[1,2,0,2],[1,3,2,2],[0,2,3,2],[1,2,0,1]],[[1,2,0,1],[1,3,2,2],[0,2,3,2],[1,1,3,0]],[[1,2,0,1],[1,3,2,2],[0,2,3,3],[1,1,2,0]],[[1,2,0,1],[1,3,2,2],[0,2,4,2],[1,1,2,0]],[[1,2,0,1],[1,3,2,3],[0,2,3,2],[1,1,2,0]],[[1,2,0,2],[1,3,2,2],[0,2,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,2,2],[0,2,3,2],[1,1,1,2]],[[1,2,0,1],[1,3,2,2],[0,2,3,3],[1,1,1,1]],[[1,2,0,1],[1,3,2,2],[0,2,4,2],[1,1,1,1]],[[1,2,0,1],[1,3,2,3],[0,2,3,2],[1,1,1,1]],[[1,2,0,2],[1,3,2,2],[0,2,3,2],[1,1,1,1]],[[1,2,0,1],[1,3,2,2],[0,2,3,2],[1,0,2,2]],[[1,2,0,1],[1,3,2,2],[0,2,3,3],[1,0,2,1]],[[1,2,0,1],[1,3,2,2],[0,2,4,2],[1,0,2,1]],[[1,2,0,1],[1,3,2,3],[0,2,3,2],[1,0,2,1]],[[1,2,0,2],[1,3,2,2],[0,2,3,2],[1,0,2,1]],[[1,2,0,1],[1,3,2,2],[0,2,3,1],[1,2,3,0]],[[1,2,0,1],[1,3,2,2],[0,2,3,1],[1,3,2,0]],[[1,2,0,1],[1,3,2,2],[0,2,3,1],[2,2,2,0]],[[1,2,0,1],[1,3,2,2],[0,2,4,1],[1,2,2,0]],[[1,2,0,1],[1,3,2,2],[0,2,3,1],[1,1,2,2]],[[1,2,0,1],[1,3,2,2],[0,2,3,1],[1,1,3,1]],[[1,2,0,1],[1,3,2,2],[0,2,4,1],[1,1,2,1]],[[1,2,0,1],[1,3,2,2],[0,2,3,0],[1,2,2,2]],[[1,2,0,1],[1,3,2,2],[0,2,3,0],[1,2,3,1]],[[1,2,0,1],[1,3,2,2],[0,2,3,0],[1,3,2,1]],[[1,2,0,1],[1,3,2,2],[0,2,3,0],[2,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,2,4,0],[1,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,2,2,2],[1,1,2,2]],[[1,2,0,1],[1,3,2,2],[0,2,2,2],[1,1,3,1]],[[1,2,0,1],[1,3,2,2],[0,2,2,3],[1,1,2,1]],[[1,2,0,1],[1,3,2,3],[0,2,2,2],[1,1,2,1]],[[1,2,0,2],[1,3,2,2],[0,2,2,2],[1,1,2,1]],[[1,2,0,1],[1,3,2,2],[0,1,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,2,2],[0,1,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,2,2],[0,1,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,2,2],[0,1,3,3],[1,2,2,0]],[[1,2,0,1],[1,3,2,2],[0,1,4,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,3],[0,1,3,2],[1,2,2,0]],[[1,2,0,2],[1,3,2,2],[0,1,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,2],[0,1,3,2],[1,2,1,2]],[[1,2,0,1],[1,3,2,2],[0,1,3,3],[1,2,1,1]],[[1,2,0,1],[1,3,2,2],[0,1,4,2],[1,2,1,1]],[[1,2,0,1],[1,3,2,3],[0,1,3,2],[1,2,1,1]],[[1,2,0,2],[1,3,2,2],[0,1,3,2],[1,2,1,1]],[[1,2,0,1],[1,3,2,2],[0,1,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,2,2],[0,1,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,2,2],[0,1,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,2,2],[0,1,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,1,4,1],[1,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,1,2,2],[1,2,2,2]],[[1,2,0,1],[1,3,2,2],[0,1,2,2],[1,2,3,1]],[[1,2,0,1],[1,3,2,2],[0,1,2,2],[1,3,2,1]],[[1,2,0,1],[1,3,2,2],[0,1,2,2],[2,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,1,2,3],[1,2,2,1]],[[1,2,0,1],[1,3,2,3],[0,1,2,2],[1,2,2,1]],[[1,2,0,2],[1,3,2,2],[0,1,2,2],[1,2,2,1]],[[1,2,0,1],[1,3,2,2],[0,0,3,2],[1,2,2,2]],[[1,2,0,1],[1,3,2,2],[0,0,3,2],[1,2,3,1]],[[1,2,0,1],[1,3,2,2],[0,0,3,3],[1,2,2,1]],[[1,2,0,1],[1,3,2,3],[0,0,3,2],[1,2,2,1]],[[1,2,0,2],[1,3,2,2],[0,0,3,2],[1,2,2,1]],[[1,2,0,1],[1,4,2,1],[2,3,3,2],[1,0,1,0]],[[1,3,0,1],[1,3,2,1],[2,3,3,2],[1,0,1,0]],[[2,2,0,1],[1,3,2,1],[2,3,3,2],[1,0,1,0]],[[1,2,0,1],[1,4,2,1],[2,3,3,2],[1,0,0,1]],[[1,3,0,1],[1,3,2,1],[2,3,3,2],[1,0,0,1]],[[2,2,0,1],[1,3,2,1],[2,3,3,2],[1,0,0,1]],[[1,2,0,1],[1,3,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[1,3,2,1],[2,4,3,1],[1,2,0,0]],[[1,2,0,1],[1,3,2,1],[3,3,3,1],[1,2,0,0]],[[1,2,0,1],[1,4,2,1],[2,3,3,1],[1,2,0,0]],[[1,2,0,1],[1,3,2,1],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[1,3,2,1],[2,4,3,1],[1,1,1,0]],[[1,2,0,1],[1,3,2,1],[3,3,3,1],[1,1,1,0]],[[1,2,0,1],[1,4,2,1],[2,3,3,1],[1,1,1,0]],[[1,2,0,1],[1,3,2,1],[2,3,3,1],[2,1,0,1]],[[1,2,0,1],[1,3,2,1],[2,4,3,1],[1,1,0,1]],[[1,2,0,1],[1,3,2,1],[3,3,3,1],[1,1,0,1]],[[1,2,0,1],[1,4,2,1],[2,3,3,1],[1,1,0,1]],[[1,2,0,1],[1,3,2,1],[2,3,3,1],[2,0,2,0]],[[1,2,0,1],[1,3,2,1],[2,4,3,1],[1,0,2,0]],[[1,2,0,1],[1,3,2,1],[3,3,3,1],[1,0,2,0]],[[1,2,0,1],[1,4,2,1],[2,3,3,1],[1,0,2,0]],[[1,2,0,1],[1,3,2,1],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[1,3,2,1],[2,4,3,1],[0,2,1,0]],[[1,2,0,1],[1,3,2,1],[3,3,3,1],[0,2,1,0]],[[1,2,0,1],[1,4,2,1],[2,3,3,1],[0,2,1,0]],[[1,2,0,1],[1,3,2,1],[2,4,3,1],[0,2,0,1]],[[1,2,0,1],[1,3,2,1],[3,3,3,1],[0,2,0,1]],[[1,2,0,1],[1,4,2,1],[2,3,3,1],[0,2,0,1]],[[1,2,0,1],[1,3,2,1],[2,4,3,1],[0,1,2,0]],[[1,2,0,1],[1,3,2,1],[3,3,3,1],[0,1,2,0]],[[1,2,0,1],[1,4,2,1],[2,3,3,1],[0,1,2,0]],[[1,2,0,1],[1,3,2,1],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[1,3,2,1],[2,4,3,0],[1,2,0,1]],[[1,2,0,1],[1,3,2,1],[3,3,3,0],[1,2,0,1]],[[1,2,0,1],[1,4,2,1],[2,3,3,0],[1,2,0,1]],[[1,2,0,1],[1,3,2,1],[2,3,3,0],[2,1,1,1]],[[1,2,0,1],[1,3,2,1],[2,4,3,0],[1,1,1,1]],[[1,2,0,1],[1,3,2,1],[3,3,3,0],[1,1,1,1]],[[1,2,0,1],[1,4,2,1],[2,3,3,0],[1,1,1,1]],[[1,2,0,1],[1,3,2,1],[2,3,3,0],[2,0,2,1]],[[1,2,0,1],[1,3,2,1],[2,4,3,0],[1,0,2,1]],[[1,2,0,1],[1,3,2,1],[3,3,3,0],[1,0,2,1]],[[1,2,0,1],[1,4,2,1],[2,3,3,0],[1,0,2,1]],[[1,2,0,1],[1,3,2,1],[2,3,3,0],[0,3,1,1]],[[1,2,0,1],[1,3,2,1],[2,4,3,0],[0,2,1,1]],[[1,2,0,1],[1,3,2,1],[3,3,3,0],[0,2,1,1]],[[1,2,0,1],[1,4,2,1],[2,3,3,0],[0,2,1,1]],[[1,2,0,1],[1,3,2,1],[2,4,3,0],[0,1,2,1]],[[1,2,0,1],[1,3,2,1],[3,3,3,0],[0,1,2,1]],[[1,2,0,1],[1,4,2,1],[2,3,3,0],[0,1,2,1]],[[1,2,0,1],[1,3,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[1,3,2,1],[2,4,2,1],[1,1,2,0]],[[1,2,0,1],[1,3,2,1],[3,3,2,1],[1,1,2,0]],[[1,2,0,1],[1,4,2,1],[2,3,2,1],[1,1,2,0]],[[1,2,0,1],[1,3,2,1],[2,3,2,1],[0,3,2,0]],[[1,2,0,1],[1,3,2,1],[2,4,2,1],[0,2,2,0]],[[1,2,0,1],[1,3,2,1],[3,3,2,1],[0,2,2,0]],[[1,2,0,1],[1,4,2,1],[2,3,2,1],[0,2,2,0]],[[1,2,0,1],[1,3,2,1],[2,3,2,0],[2,1,2,1]],[[1,2,0,1],[1,3,2,1],[2,4,2,0],[1,1,2,1]],[[1,2,0,1],[1,3,2,1],[3,3,2,0],[1,1,2,1]],[[1,2,0,1],[1,4,2,1],[2,3,2,0],[1,1,2,1]],[[1,2,0,1],[1,3,2,1],[2,3,2,0],[0,2,3,1]],[[1,2,0,1],[1,3,2,1],[2,3,2,0],[0,3,2,1]],[[1,2,0,1],[1,3,2,1],[2,4,2,0],[0,2,2,1]],[[1,2,0,1],[1,3,2,1],[3,3,2,0],[0,2,2,1]],[[1,2,0,1],[1,4,2,1],[2,3,2,0],[0,2,2,1]],[[1,2,0,1],[1,3,2,1],[2,3,1,1],[1,3,2,0]],[[1,2,0,1],[1,3,2,1],[2,3,1,1],[2,2,2,0]],[[1,2,0,1],[1,3,2,1],[3,3,1,1],[1,2,2,0]],[[1,2,0,1],[1,3,2,1],[2,3,1,0],[1,3,2,1]],[[1,2,0,1],[1,3,2,1],[2,3,1,0],[2,2,2,1]],[[1,2,0,1],[1,3,2,1],[3,3,1,0],[1,2,2,1]],[[1,2,0,1],[1,4,2,1],[2,2,3,2],[1,2,0,0]],[[1,3,0,1],[1,3,2,1],[2,2,3,2],[1,2,0,0]],[[2,2,0,1],[1,3,2,1],[2,2,3,2],[1,2,0,0]],[[1,2,0,1],[1,4,2,1],[2,2,3,2],[1,1,1,0]],[[1,3,0,1],[1,3,2,1],[2,2,3,2],[1,1,1,0]],[[2,2,0,1],[1,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,2,0,1],[1,4,2,1],[2,2,3,2],[1,1,0,1]],[[1,3,0,1],[1,3,2,1],[2,2,3,2],[1,1,0,1]],[[2,2,0,1],[1,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,2,0,1],[1,4,2,1],[2,2,3,2],[1,0,2,0]],[[1,3,0,1],[1,3,2,1],[2,2,3,2],[1,0,2,0]],[[2,2,0,1],[1,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,2,0,1],[1,4,2,1],[2,2,3,2],[1,0,1,1]],[[1,3,0,1],[1,3,2,1],[2,2,3,2],[1,0,1,1]],[[2,2,0,1],[1,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,2,0,1],[1,4,2,1],[2,2,3,2],[0,2,1,0]],[[1,3,0,1],[1,3,2,1],[2,2,3,2],[0,2,1,0]],[[2,2,0,1],[1,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,2,0,1],[1,4,2,1],[2,2,3,2],[0,2,0,1]],[[1,3,0,1],[1,3,2,1],[2,2,3,2],[0,2,0,1]],[[2,2,0,1],[1,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,2,0,1],[1,4,2,1],[2,2,3,2],[0,1,2,0]],[[1,3,0,1],[1,3,2,1],[2,2,3,2],[0,1,2,0]],[[2,2,0,1],[1,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,2,0,1],[1,4,2,1],[2,2,3,2],[0,1,1,1]],[[1,3,0,1],[1,3,2,1],[2,2,3,2],[0,1,1,1]],[[2,2,0,1],[1,3,2,1],[2,2,3,2],[0,1,1,1]],[[2,1,2,0],[2,3,3,2],[1,3,0,0],[0,2,2,1]],[[1,1,2,0],[3,3,3,2],[1,3,0,0],[0,2,2,1]],[[1,1,2,0],[2,4,3,2],[1,3,0,0],[0,2,2,1]],[[2,1,2,0],[2,3,3,2],[1,3,0,0],[1,1,2,1]],[[1,1,2,0],[3,3,3,2],[1,3,0,0],[1,1,2,1]],[[1,1,2,0],[2,4,3,2],[1,3,0,0],[1,1,2,1]],[[2,1,2,0],[2,3,3,2],[1,3,0,1],[0,2,2,0]],[[1,1,2,0],[3,3,3,2],[1,3,0,1],[0,2,2,0]],[[1,1,2,0],[2,4,3,2],[1,3,0,1],[0,2,2,0]],[[2,1,2,0],[2,3,3,2],[1,3,0,1],[1,1,2,0]],[[1,1,2,0],[3,3,3,2],[1,3,0,1],[1,1,2,0]],[[1,1,2,0],[2,4,3,2],[1,3,0,1],[1,1,2,0]],[[1,2,0,1],[1,3,2,1],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[1,3,2,1],[2,2,3,1],[2,2,1,0]],[[1,2,0,1],[1,3,2,1],[3,2,3,1],[1,2,1,0]],[[1,2,0,1],[1,4,2,1],[2,2,3,1],[1,1,1,1]],[[1,3,0,1],[1,3,2,1],[2,2,3,1],[1,1,1,1]],[[2,2,0,1],[1,3,2,1],[2,2,3,1],[1,1,1,1]],[[2,1,2,0],[2,3,3,2],[1,3,0,2],[0,1,1,1]],[[1,1,2,0],[3,3,3,2],[1,3,0,2],[0,1,1,1]],[[1,1,2,0],[2,4,3,2],[1,3,0,2],[0,1,1,1]],[[2,1,2,0],[2,3,3,2],[1,3,0,2],[0,1,2,0]],[[1,1,2,0],[3,3,3,2],[1,3,0,2],[0,1,2,0]],[[1,1,2,0],[2,4,3,2],[1,3,0,2],[0,1,2,0]],[[2,1,2,0],[2,3,3,2],[1,3,0,2],[0,2,0,1]],[[1,1,2,0],[3,3,3,2],[1,3,0,2],[0,2,0,1]],[[1,1,2,0],[2,4,3,2],[1,3,0,2],[0,2,0,1]],[[2,1,2,0],[2,3,3,2],[1,3,0,2],[0,2,1,0]],[[1,1,2,0],[3,3,3,2],[1,3,0,2],[0,2,1,0]],[[1,1,2,0],[2,4,3,2],[1,3,0,2],[0,2,1,0]],[[1,2,0,1],[1,4,2,1],[2,2,3,1],[1,0,2,1]],[[1,3,0,1],[1,3,2,1],[2,2,3,1],[1,0,2,1]],[[2,2,0,1],[1,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,2,0,1],[1,4,2,1],[2,2,3,1],[0,2,1,1]],[[2,1,2,0],[2,3,3,2],[1,3,0,2],[1,0,1,1]],[[1,1,2,0],[3,3,3,2],[1,3,0,2],[1,0,1,1]],[[1,1,2,0],[2,4,3,2],[1,3,0,2],[1,0,1,1]],[[2,1,2,0],[2,3,3,2],[1,3,0,2],[1,0,2,0]],[[1,1,2,0],[3,3,3,2],[1,3,0,2],[1,0,2,0]],[[1,1,2,0],[2,4,3,2],[1,3,0,2],[1,0,2,0]],[[2,1,2,0],[2,3,3,2],[1,3,0,2],[1,1,0,1]],[[1,1,2,0],[3,3,3,2],[1,3,0,2],[1,1,0,1]],[[1,1,2,0],[2,4,3,2],[1,3,0,2],[1,1,0,1]],[[2,1,2,0],[2,3,3,2],[1,3,0,2],[1,1,1,0]],[[1,1,2,0],[3,3,3,2],[1,3,0,2],[1,1,1,0]],[[1,1,2,0],[2,4,3,2],[1,3,0,2],[1,1,1,0]],[[1,3,0,1],[1,3,2,1],[2,2,3,1],[0,2,1,1]],[[2,2,0,1],[1,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[1,4,2,1],[2,2,3,1],[0,1,2,1]],[[1,3,0,1],[1,3,2,1],[2,2,3,1],[0,1,2,1]],[[2,2,0,1],[1,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,2,0,1],[1,3,2,1],[2,2,3,0],[1,3,1,1]],[[2,1,2,0],[2,3,3,2],[1,3,0,2],[1,2,0,0]],[[1,1,2,0],[3,3,3,2],[1,3,0,2],[1,2,0,0]],[[1,1,2,0],[2,4,3,2],[1,3,0,2],[1,2,0,0]],[[1,2,0,1],[1,3,2,1],[2,2,3,0],[2,2,1,1]],[[1,2,0,1],[1,3,2,1],[3,2,3,0],[1,2,1,1]],[[1,2,0,1],[1,4,2,1],[2,2,2,2],[1,1,2,0]],[[1,3,0,1],[1,3,2,1],[2,2,2,2],[1,1,2,0]],[[2,2,0,1],[1,3,2,1],[2,2,2,2],[1,1,2,0]],[[1,2,0,1],[1,4,2,1],[2,2,2,2],[0,2,2,0]],[[1,3,0,1],[1,3,2,1],[2,2,2,2],[0,2,2,0]],[[2,2,0,1],[1,3,2,1],[2,2,2,2],[0,2,2,0]],[[1,2,0,1],[1,3,2,1],[2,2,2,1],[1,3,2,0]],[[2,1,2,0],[2,3,3,2],[1,3,1,0],[0,1,2,1]],[[1,1,2,0],[3,3,3,2],[1,3,1,0],[0,1,2,1]],[[1,1,2,0],[2,4,3,2],[1,3,1,0],[0,1,2,1]],[[2,1,2,0],[2,3,3,2],[1,3,1,0],[0,2,1,1]],[[1,1,2,0],[3,3,3,2],[1,3,1,0],[0,2,1,1]],[[1,1,2,0],[2,4,3,2],[1,3,1,0],[0,2,1,1]],[[2,1,2,0],[2,3,3,2],[1,3,1,0],[1,0,2,1]],[[1,1,2,0],[3,3,3,2],[1,3,1,0],[1,0,2,1]],[[1,1,2,0],[2,4,3,2],[1,3,1,0],[1,0,2,1]],[[2,1,2,0],[2,3,3,2],[1,3,1,0],[1,1,1,1]],[[1,1,2,0],[3,3,3,2],[1,3,1,0],[1,1,1,1]],[[1,1,2,0],[2,4,3,2],[1,3,1,0],[1,1,1,1]],[[2,1,2,0],[2,3,3,2],[1,3,1,0],[1,2,0,1]],[[1,1,2,0],[3,3,3,2],[1,3,1,0],[1,2,0,1]],[[1,1,2,0],[2,4,3,2],[1,3,1,0],[1,2,0,1]],[[1,2,0,1],[1,3,2,1],[2,2,2,1],[2,2,2,0]],[[1,2,0,1],[1,3,2,1],[3,2,2,1],[1,2,2,0]],[[1,2,0,1],[1,4,2,1],[2,2,2,1],[1,1,2,1]],[[1,3,0,1],[1,3,2,1],[2,2,2,1],[1,1,2,1]],[[2,2,0,1],[1,3,2,1],[2,2,2,1],[1,1,2,1]],[[1,2,0,1],[1,4,2,1],[2,2,2,1],[0,2,2,1]],[[1,3,0,1],[1,3,2,1],[2,2,2,1],[0,2,2,1]],[[2,2,0,1],[1,3,2,1],[2,2,2,1],[0,2,2,1]],[[1,2,0,1],[1,3,2,1],[2,2,2,0],[1,2,3,1]],[[1,2,0,1],[1,3,2,1],[2,2,2,0],[1,3,2,1]],[[1,2,0,1],[1,3,2,1],[2,2,2,0],[2,2,2,1]],[[2,1,2,0],[2,3,3,2],[1,3,1,1],[0,1,1,1]],[[1,1,2,0],[3,3,3,2],[1,3,1,1],[0,1,1,1]],[[1,1,2,0],[2,4,3,2],[1,3,1,1],[0,1,1,1]],[[2,1,2,0],[2,3,3,2],[1,3,1,1],[0,1,2,0]],[[1,1,2,0],[3,3,3,2],[1,3,1,1],[0,1,2,0]],[[1,1,2,0],[2,4,3,2],[1,3,1,1],[0,1,2,0]],[[2,1,2,0],[2,3,3,2],[1,3,1,1],[0,2,0,1]],[[1,1,2,0],[3,3,3,2],[1,3,1,1],[0,2,0,1]],[[1,1,2,0],[2,4,3,2],[1,3,1,1],[0,2,0,1]],[[2,1,2,0],[2,3,3,2],[1,3,1,1],[0,2,1,0]],[[1,1,2,0],[3,3,3,2],[1,3,1,1],[0,2,1,0]],[[1,1,2,0],[2,4,3,2],[1,3,1,1],[0,2,1,0]],[[1,2,0,1],[1,3,2,1],[3,2,2,0],[1,2,2,1]],[[2,1,2,0],[2,3,3,2],[1,3,1,1],[1,0,1,1]],[[1,1,2,0],[3,3,3,2],[1,3,1,1],[1,0,1,1]],[[1,1,2,0],[2,4,3,2],[1,3,1,1],[1,0,1,1]],[[2,1,2,0],[2,3,3,2],[1,3,1,1],[1,0,2,0]],[[1,1,2,0],[3,3,3,2],[1,3,1,1],[1,0,2,0]],[[1,1,2,0],[2,4,3,2],[1,3,1,1],[1,0,2,0]],[[2,1,2,0],[2,3,3,2],[1,3,1,1],[1,1,0,1]],[[1,1,2,0],[3,3,3,2],[1,3,1,1],[1,1,0,1]],[[1,1,2,0],[2,4,3,2],[1,3,1,1],[1,1,0,1]],[[2,1,2,0],[2,3,3,2],[1,3,1,1],[1,1,1,0]],[[1,1,2,0],[3,3,3,2],[1,3,1,1],[1,1,1,0]],[[1,1,2,0],[2,4,3,2],[1,3,1,1],[1,1,1,0]],[[1,2,0,1],[1,4,2,1],[2,2,1,2],[1,1,2,1]],[[1,3,0,1],[1,3,2,1],[2,2,1,2],[1,1,2,1]],[[2,2,0,1],[1,3,2,1],[2,2,1,2],[1,1,2,1]],[[1,2,0,1],[1,4,2,1],[2,2,1,2],[0,2,2,1]],[[1,3,0,1],[1,3,2,1],[2,2,1,2],[0,2,2,1]],[[2,2,0,1],[1,3,2,1],[2,2,1,2],[0,2,2,1]],[[2,1,2,0],[2,3,3,2],[1,3,1,1],[1,2,0,0]],[[1,1,2,0],[3,3,3,2],[1,3,1,1],[1,2,0,0]],[[1,1,2,0],[2,4,3,2],[1,3,1,1],[1,2,0,0]],[[1,2,0,1],[1,4,2,1],[2,1,3,2],[1,2,1,0]],[[1,3,0,1],[1,3,2,1],[2,1,3,2],[1,2,1,0]],[[2,2,0,1],[1,3,2,1],[2,1,3,2],[1,2,1,0]],[[1,2,0,1],[1,4,2,1],[2,1,3,2],[1,2,0,1]],[[1,3,0,1],[1,3,2,1],[2,1,3,2],[1,2,0,1]],[[2,2,0,1],[1,3,2,1],[2,1,3,2],[1,2,0,1]],[[1,2,0,1],[1,4,2,1],[2,1,3,1],[1,2,1,1]],[[1,3,0,1],[1,3,2,1],[2,1,3,1],[1,2,1,1]],[[2,2,0,1],[1,3,2,1],[2,1,3,1],[1,2,1,1]],[[1,2,0,1],[1,4,2,1],[2,1,2,2],[1,2,2,0]],[[1,3,0,1],[1,3,2,1],[2,1,2,2],[1,2,2,0]],[[2,2,0,1],[1,3,2,1],[2,1,2,2],[1,2,2,0]],[[1,2,0,1],[1,4,2,1],[2,1,2,1],[1,2,2,1]],[[1,3,0,1],[1,3,2,1],[2,1,2,1],[1,2,2,1]],[[2,2,0,1],[1,3,2,1],[2,1,2,1],[1,2,2,1]],[[1,2,0,1],[1,4,2,1],[2,1,1,2],[1,2,2,1]],[[1,3,0,1],[1,3,2,1],[2,1,1,2],[1,2,2,1]],[[2,2,0,1],[1,3,2,1],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[1,4,2,1],[2,0,3,2],[1,2,2,0]],[[1,3,0,1],[1,3,2,1],[2,0,3,2],[1,2,2,0]],[[2,2,0,1],[1,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[1,4,2,1],[2,0,3,1],[1,2,2,1]],[[1,3,0,1],[1,3,2,1],[2,0,3,1],[1,2,2,1]],[[2,2,0,1],[1,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,2,0,1],[1,4,2,1],[2,0,2,2],[1,2,2,1]],[[1,3,0,1],[1,3,2,1],[2,0,2,2],[1,2,2,1]],[[2,2,0,1],[1,3,2,1],[2,0,2,2],[1,2,2,1]],[[1,2,0,1],[1,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,0,1],[1,4,2,1],[1,3,3,2],[1,2,0,0]],[[1,3,0,1],[1,3,2,1],[1,3,3,2],[1,2,0,0]],[[2,2,0,1],[1,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,2,0,1],[1,3,2,1],[1,3,3,3],[1,1,1,0]],[[1,2,0,1],[1,3,2,1],[1,3,4,2],[1,1,1,0]],[[1,2,0,1],[1,3,2,1],[1,4,3,2],[1,1,1,0]],[[1,2,0,1],[1,4,2,1],[1,3,3,2],[1,1,1,0]],[[1,3,0,1],[1,3,2,1],[1,3,3,2],[1,1,1,0]],[[2,2,0,1],[1,3,2,1],[1,3,3,2],[1,1,1,0]],[[1,2,0,1],[1,3,2,1],[1,3,3,2],[1,1,0,2]],[[1,2,0,1],[1,3,2,1],[1,3,3,3],[1,1,0,1]],[[1,2,0,1],[1,3,2,1],[1,3,4,2],[1,1,0,1]],[[1,2,0,1],[1,3,2,1],[1,4,3,2],[1,1,0,1]],[[1,2,0,1],[1,4,2,1],[1,3,3,2],[1,1,0,1]],[[1,3,0,1],[1,3,2,1],[1,3,3,2],[1,1,0,1]],[[2,2,0,1],[1,3,2,1],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,2],[1,0,3,0]],[[1,2,0,1],[1,3,2,1],[1,3,3,3],[1,0,2,0]],[[1,2,0,1],[1,3,2,1],[1,3,4,2],[1,0,2,0]],[[1,2,0,1],[1,3,2,1],[1,4,3,2],[1,0,2,0]],[[1,2,0,1],[1,4,2,1],[1,3,3,2],[1,0,2,0]],[[1,3,0,1],[1,3,2,1],[1,3,3,2],[1,0,2,0]],[[2,2,0,1],[1,3,2,1],[1,3,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,2,1],[1,3,3,2],[1,0,1,2]],[[1,2,0,1],[1,3,2,1],[1,3,3,3],[1,0,1,1]],[[1,2,0,1],[1,3,2,1],[1,3,4,2],[1,0,1,1]],[[1,2,0,1],[1,3,2,1],[1,4,3,2],[1,0,1,1]],[[1,2,0,1],[1,4,2,1],[1,3,3,2],[1,0,1,1]],[[1,3,0,1],[1,3,2,1],[1,3,3,2],[1,0,1,1]],[[2,2,0,1],[1,3,2,1],[1,3,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,2],[0,3,1,0]],[[1,2,0,1],[1,3,2,1],[1,3,3,3],[0,2,1,0]],[[1,2,0,1],[1,3,2,1],[1,3,4,2],[0,2,1,0]],[[1,2,0,1],[1,3,2,1],[1,4,3,2],[0,2,1,0]],[[1,2,0,1],[1,4,2,1],[1,3,3,2],[0,2,1,0]],[[1,3,0,1],[1,3,2,1],[1,3,3,2],[0,2,1,0]],[[2,2,0,1],[1,3,2,1],[1,3,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,2,1],[1,3,3,2],[0,2,0,2]],[[1,2,0,1],[1,3,2,1],[1,3,3,2],[0,3,0,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,3],[0,2,0,1]],[[1,2,0,1],[1,3,2,1],[1,3,4,2],[0,2,0,1]],[[1,2,0,1],[1,3,2,1],[1,4,3,2],[0,2,0,1]],[[1,2,0,1],[1,4,2,1],[1,3,3,2],[0,2,0,1]],[[1,3,0,1],[1,3,2,1],[1,3,3,2],[0,2,0,1]],[[2,2,0,1],[1,3,2,1],[1,3,3,2],[0,2,0,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,2],[0,1,3,0]],[[1,2,0,1],[1,3,2,1],[1,3,3,3],[0,1,2,0]],[[1,2,0,1],[1,3,2,1],[1,3,4,2],[0,1,2,0]],[[1,2,0,1],[1,3,2,1],[1,4,3,2],[0,1,2,0]],[[1,2,0,1],[1,4,2,1],[1,3,3,2],[0,1,2,0]],[[1,3,0,1],[1,3,2,1],[1,3,3,2],[0,1,2,0]],[[2,2,0,1],[1,3,2,1],[1,3,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,2,1],[1,3,3,2],[0,1,1,2]],[[1,2,0,1],[1,3,2,1],[1,3,3,3],[0,1,1,1]],[[1,2,0,1],[1,3,2,1],[1,3,4,2],[0,1,1,1]],[[1,2,0,1],[1,3,2,1],[1,4,3,2],[0,1,1,1]],[[1,2,0,1],[1,4,2,1],[1,3,3,2],[0,1,1,1]],[[1,3,0,1],[1,3,2,1],[1,3,3,2],[0,1,1,1]],[[2,2,0,1],[1,3,2,1],[1,3,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,2],[0,0,2,2]],[[1,2,0,1],[1,3,2,1],[1,3,3,3],[0,0,2,1]],[[1,2,0,1],[1,3,2,1],[1,3,4,2],[0,0,2,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[1,3,2,1],[1,3,3,1],[2,2,1,0]],[[2,1,2,0],[2,3,3,2],[1,3,2,1],[0,2,0,0]],[[1,1,2,0],[3,3,3,2],[1,3,2,1],[0,2,0,0]],[[1,1,2,0],[2,4,3,2],[1,3,2,1],[0,2,0,0]],[[1,2,0,1],[1,3,2,1],[1,4,3,1],[1,2,1,0]],[[1,2,0,1],[1,4,2,1],[1,3,3,1],[1,2,1,0]],[[1,2,0,1],[1,3,2,1],[1,3,4,1],[1,1,1,1]],[[1,2,0,1],[1,3,2,1],[1,4,3,1],[1,1,1,1]],[[1,2,0,1],[1,4,2,1],[1,3,3,1],[1,1,1,1]],[[1,3,0,1],[1,3,2,1],[1,3,3,1],[1,1,1,1]],[[2,2,0,1],[1,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,1],[1,0,2,2]],[[1,2,0,1],[1,3,2,1],[1,3,3,1],[1,0,3,1]],[[1,2,0,1],[1,3,2,1],[1,3,4,1],[1,0,2,1]],[[1,2,0,1],[1,3,2,1],[1,4,3,1],[1,0,2,1]],[[1,2,0,1],[1,4,2,1],[1,3,3,1],[1,0,2,1]],[[1,3,0,1],[1,3,2,1],[1,3,3,1],[1,0,2,1]],[[2,2,0,1],[1,3,2,1],[1,3,3,1],[1,0,2,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,1],[0,3,1,1]],[[1,2,0,1],[1,3,2,1],[1,3,4,1],[0,2,1,1]],[[1,2,0,1],[1,3,2,1],[1,4,3,1],[0,2,1,1]],[[1,2,0,1],[1,4,2,1],[1,3,3,1],[0,2,1,1]],[[1,3,0,1],[1,3,2,1],[1,3,3,1],[0,2,1,1]],[[2,1,2,0],[2,3,3,2],[1,3,2,1],[1,1,0,0]],[[1,1,2,0],[3,3,3,2],[1,3,2,1],[1,1,0,0]],[[1,1,2,0],[2,4,3,2],[1,3,2,1],[1,1,0,0]],[[2,2,0,1],[1,3,2,1],[1,3,3,1],[0,2,1,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,1],[0,1,2,2]],[[1,2,0,1],[1,3,2,1],[1,3,3,1],[0,1,3,1]],[[1,2,0,1],[1,3,2,1],[1,3,4,1],[0,1,2,1]],[[1,2,0,1],[1,3,2,1],[1,4,3,1],[0,1,2,1]],[[1,2,0,1],[1,4,2,1],[1,3,3,1],[0,1,2,1]],[[1,3,0,1],[1,3,2,1],[1,3,3,1],[0,1,2,1]],[[2,2,0,1],[1,3,2,1],[1,3,3,1],[0,1,2,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,0],[1,3,1,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,0],[2,2,1,1]],[[1,2,0,1],[1,3,2,1],[1,4,3,0],[1,2,1,1]],[[1,2,0,1],[1,4,2,1],[1,3,3,0],[1,2,1,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,0],[0,2,3,1]],[[1,2,0,1],[1,3,2,1],[1,3,3,0],[0,3,2,1]],[[1,2,0,1],[1,3,2,1],[1,4,3,0],[0,2,2,1]],[[1,2,0,1],[1,4,2,1],[1,3,3,0],[0,2,2,1]],[[1,2,0,1],[1,3,2,1],[1,4,2,2],[1,1,2,0]],[[1,2,0,1],[1,4,2,1],[1,3,2,2],[1,1,2,0]],[[1,3,0,1],[1,3,2,1],[1,3,2,2],[1,1,2,0]],[[2,2,0,1],[1,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,2,0,1],[1,3,2,1],[1,3,2,2],[1,0,2,2]],[[1,2,0,1],[1,3,2,1],[1,3,2,2],[1,0,3,1]],[[1,2,0,1],[1,3,2,1],[1,3,2,3],[1,0,2,1]],[[1,2,0,1],[1,3,2,1],[1,3,2,2],[0,2,3,0]],[[1,2,0,1],[1,3,2,1],[1,3,2,2],[0,3,2,0]],[[1,2,0,1],[1,3,2,1],[1,4,2,2],[0,2,2,0]],[[1,2,0,1],[1,4,2,1],[1,3,2,2],[0,2,2,0]],[[1,3,0,1],[1,3,2,1],[1,3,2,2],[0,2,2,0]],[[2,2,0,1],[1,3,2,1],[1,3,2,2],[0,2,2,0]],[[1,2,0,1],[1,3,2,1],[1,3,2,2],[0,1,2,2]],[[1,2,0,1],[1,3,2,1],[1,3,2,2],[0,1,3,1]],[[1,2,0,1],[1,3,2,1],[1,3,2,3],[0,1,2,1]],[[1,2,0,1],[1,3,2,1],[1,3,2,1],[1,3,2,0]],[[1,2,0,1],[1,3,2,1],[1,3,2,1],[2,2,2,0]],[[1,2,0,1],[1,3,2,1],[1,4,2,1],[1,2,2,0]],[[1,2,0,1],[1,4,2,1],[1,3,2,1],[1,2,2,0]],[[1,2,0,1],[1,3,2,1],[1,4,2,1],[1,1,2,1]],[[1,2,0,1],[1,4,2,1],[1,3,2,1],[1,1,2,1]],[[1,3,0,1],[1,3,2,1],[1,3,2,1],[1,1,2,1]],[[2,2,0,1],[1,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,2,0,1],[1,3,2,1],[1,3,2,1],[0,2,2,2]],[[1,2,0,1],[1,3,2,1],[1,3,2,1],[0,2,3,1]],[[1,2,0,1],[1,3,2,1],[1,3,2,1],[0,3,2,1]],[[1,2,0,1],[1,3,2,1],[1,4,2,1],[0,2,2,1]],[[1,2,0,1],[1,4,2,1],[1,3,2,1],[0,2,2,1]],[[1,3,0,1],[1,3,2,1],[1,3,2,1],[0,2,2,1]],[[2,2,0,1],[1,3,2,1],[1,3,2,1],[0,2,2,1]],[[1,2,0,1],[1,3,2,1],[1,3,2,0],[1,2,3,1]],[[1,2,0,1],[1,3,2,1],[1,3,2,0],[1,3,2,1]],[[1,2,0,1],[1,3,2,1],[1,3,2,0],[2,2,2,1]],[[1,2,0,1],[1,3,2,1],[1,4,2,0],[1,2,2,1]],[[1,2,0,1],[1,4,2,1],[1,3,2,0],[1,2,2,1]],[[1,2,0,1],[1,3,2,1],[1,4,1,2],[1,1,2,1]],[[1,2,0,1],[1,4,2,1],[1,3,1,2],[1,1,2,1]],[[1,3,0,1],[1,3,2,1],[1,3,1,2],[1,1,2,1]],[[2,2,0,1],[1,3,2,1],[1,3,1,2],[1,1,2,1]],[[1,2,0,1],[1,3,2,1],[1,3,1,2],[0,2,2,2]],[[1,2,0,1],[1,3,2,1],[1,3,1,2],[0,2,3,1]],[[1,2,0,1],[1,3,2,1],[1,3,1,2],[0,3,2,1]],[[1,2,0,1],[1,3,2,1],[1,3,1,3],[0,2,2,1]],[[1,2,0,1],[1,3,2,1],[1,4,1,2],[0,2,2,1]],[[1,2,0,1],[1,4,2,1],[1,3,1,2],[0,2,2,1]],[[1,3,0,1],[1,3,2,1],[1,3,1,2],[0,2,2,1]],[[2,2,0,1],[1,3,2,1],[1,3,1,2],[0,2,2,1]],[[1,2,0,1],[1,3,2,1],[1,2,3,2],[0,2,3,0]],[[1,2,0,1],[1,3,2,1],[1,2,3,2],[0,3,2,0]],[[1,2,0,1],[1,3,2,1],[1,2,3,3],[0,2,2,0]],[[1,2,0,1],[1,3,2,1],[1,2,4,2],[0,2,2,0]],[[1,2,0,1],[1,3,2,1],[1,2,3,2],[0,2,1,2]],[[1,2,0,1],[1,3,2,1],[1,2,3,3],[0,2,1,1]],[[1,2,0,1],[1,3,2,1],[1,2,4,2],[0,2,1,1]],[[1,2,0,1],[1,3,2,1],[1,2,3,1],[0,2,2,2]],[[1,2,0,1],[1,3,2,1],[1,2,3,1],[0,2,3,1]],[[1,2,0,1],[1,3,2,1],[1,2,3,1],[0,3,2,1]],[[1,2,0,1],[1,3,2,1],[1,2,4,1],[0,2,2,1]],[[1,2,0,1],[1,3,2,1],[1,2,2,2],[0,2,2,2]],[[1,2,0,1],[1,3,2,1],[1,2,2,2],[0,2,3,1]],[[1,2,0,1],[1,3,2,1],[1,2,2,2],[0,3,2,1]],[[1,2,0,1],[1,3,2,1],[1,2,2,3],[0,2,2,1]],[[1,2,0,1],[1,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,2,0,1],[1,3,2,1],[0,3,3,2],[2,2,1,0]],[[1,2,0,1],[1,3,2,1],[0,3,3,3],[1,2,1,0]],[[1,2,0,1],[1,3,2,1],[0,3,4,2],[1,2,1,0]],[[1,2,0,1],[1,3,2,1],[0,4,3,2],[1,2,1,0]],[[1,2,0,1],[1,4,2,1],[0,3,3,2],[1,2,1,0]],[[1,3,0,1],[1,3,2,1],[0,3,3,2],[1,2,1,0]],[[2,2,0,1],[1,3,2,1],[0,3,3,2],[1,2,1,0]],[[1,2,0,1],[1,3,2,1],[0,3,3,2],[1,2,0,2]],[[1,2,0,1],[1,3,2,1],[0,3,3,2],[1,3,0,1]],[[1,2,0,1],[1,3,2,1],[0,3,3,2],[2,2,0,1]],[[1,2,0,1],[1,3,2,1],[0,3,3,3],[1,2,0,1]],[[1,2,0,1],[1,3,2,1],[0,3,4,2],[1,2,0,1]],[[1,2,0,1],[1,3,2,1],[0,4,3,2],[1,2,0,1]],[[1,2,0,1],[1,4,2,1],[0,3,3,2],[1,2,0,1]],[[1,3,0,1],[1,3,2,1],[0,3,3,2],[1,2,0,1]],[[2,2,0,1],[1,3,2,1],[0,3,3,2],[1,2,0,1]],[[1,2,0,1],[1,3,2,1],[0,3,3,2],[1,1,3,0]],[[1,2,0,1],[1,3,2,1],[0,3,3,3],[1,1,2,0]],[[1,2,0,1],[1,3,2,1],[0,3,4,2],[1,1,2,0]],[[1,2,0,1],[1,3,2,1],[0,4,3,2],[1,1,2,0]],[[1,2,0,1],[1,4,2,1],[0,3,3,2],[1,1,2,0]],[[1,3,0,1],[1,3,2,1],[0,3,3,2],[1,1,2,0]],[[2,2,0,1],[1,3,2,1],[0,3,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,2,1],[0,3,3,2],[1,1,1,2]],[[1,2,0,1],[1,3,2,1],[0,3,3,3],[1,1,1,1]],[[1,2,0,1],[1,3,2,1],[0,3,4,2],[1,1,1,1]],[[1,2,0,1],[1,3,2,1],[0,4,3,2],[1,1,1,1]],[[1,2,0,1],[1,4,2,1],[0,3,3,2],[1,1,1,1]],[[1,3,0,1],[1,3,2,1],[0,3,3,2],[1,1,1,1]],[[2,2,0,1],[1,3,2,1],[0,3,3,2],[1,1,1,1]],[[1,2,0,1],[1,3,2,1],[0,3,3,2],[1,0,2,2]],[[1,2,0,1],[1,3,2,1],[0,3,3,3],[1,0,2,1]],[[1,2,0,1],[1,3,2,1],[0,3,4,2],[1,0,2,1]],[[1,2,0,1],[1,3,2,1],[0,3,3,1],[1,3,1,1]],[[1,2,0,1],[1,3,2,1],[0,3,3,1],[2,2,1,1]],[[1,2,0,1],[1,3,2,1],[0,3,4,1],[1,2,1,1]],[[1,2,0,1],[1,3,2,1],[0,4,3,1],[1,2,1,1]],[[1,2,0,1],[1,4,2,1],[0,3,3,1],[1,2,1,1]],[[1,3,0,1],[1,3,2,1],[0,3,3,1],[1,2,1,1]],[[2,2,0,1],[1,3,2,1],[0,3,3,1],[1,2,1,1]],[[1,2,0,1],[1,3,2,1],[0,3,3,1],[1,1,2,2]],[[1,2,0,1],[1,3,2,1],[0,3,3,1],[1,1,3,1]],[[1,2,0,1],[1,3,2,1],[0,3,4,1],[1,1,2,1]],[[1,2,0,1],[1,3,2,1],[0,4,3,1],[1,1,2,1]],[[1,2,0,1],[1,4,2,1],[0,3,3,1],[1,1,2,1]],[[1,3,0,1],[1,3,2,1],[0,3,3,1],[1,1,2,1]],[[2,2,0,1],[1,3,2,1],[0,3,3,1],[1,1,2,1]],[[1,2,0,1],[1,3,2,1],[0,3,3,0],[1,2,3,1]],[[1,2,0,1],[1,3,2,1],[0,3,3,0],[1,3,2,1]],[[1,2,0,1],[1,3,2,1],[0,3,3,0],[2,2,2,1]],[[1,2,0,1],[1,3,2,1],[0,4,3,0],[1,2,2,1]],[[1,2,0,1],[1,4,2,1],[0,3,3,0],[1,2,2,1]],[[1,2,0,1],[1,3,2,1],[0,3,2,2],[1,2,3,0]],[[1,2,0,1],[1,3,2,1],[0,3,2,2],[1,3,2,0]],[[1,2,0,1],[1,3,2,1],[0,3,2,2],[2,2,2,0]],[[1,2,0,1],[1,3,2,1],[0,4,2,2],[1,2,2,0]],[[1,2,0,1],[1,4,2,1],[0,3,2,2],[1,2,2,0]],[[1,3,0,1],[1,3,2,1],[0,3,2,2],[1,2,2,0]],[[2,2,0,1],[1,3,2,1],[0,3,2,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,1],[0,3,2,2],[1,1,2,2]],[[1,2,0,1],[1,3,2,1],[0,3,2,2],[1,1,3,1]],[[1,2,0,1],[1,3,2,1],[0,3,2,3],[1,1,2,1]],[[1,2,0,1],[1,3,2,1],[0,3,2,1],[1,2,2,2]],[[1,2,0,1],[1,3,2,1],[0,3,2,1],[1,2,3,1]],[[1,2,0,1],[1,3,2,1],[0,3,2,1],[1,3,2,1]],[[1,2,0,1],[1,3,2,1],[0,3,2,1],[2,2,2,1]],[[1,2,0,1],[1,3,2,1],[0,4,2,1],[1,2,2,1]],[[1,2,0,1],[1,4,2,1],[0,3,2,1],[1,2,2,1]],[[1,3,0,1],[1,3,2,1],[0,3,2,1],[1,2,2,1]],[[2,2,0,1],[1,3,2,1],[0,3,2,1],[1,2,2,1]],[[1,2,0,1],[1,3,2,1],[0,3,1,2],[1,2,2,2]],[[1,2,0,1],[1,3,2,1],[0,3,1,2],[1,2,3,1]],[[1,2,0,1],[1,3,2,1],[0,3,1,2],[1,3,2,1]],[[1,2,0,1],[1,3,2,1],[0,3,1,2],[2,2,2,1]],[[1,2,0,1],[1,3,2,1],[0,3,1,3],[1,2,2,1]],[[1,2,0,1],[1,3,2,1],[0,4,1,2],[1,2,2,1]],[[1,2,0,1],[1,4,2,1],[0,3,1,2],[1,2,2,1]],[[1,3,0,1],[1,3,2,1],[0,3,1,2],[1,2,2,1]],[[2,2,0,1],[1,3,2,1],[0,3,1,2],[1,2,2,1]],[[1,2,0,1],[1,3,2,1],[0,2,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,2,1],[0,2,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,2,1],[0,2,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,2,1],[0,2,3,3],[1,2,2,0]],[[1,2,0,1],[1,3,2,1],[0,2,4,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,1],[0,2,3,2],[1,2,1,2]],[[1,2,0,1],[1,3,2,1],[0,2,3,3],[1,2,1,1]],[[1,2,0,1],[1,3,2,1],[0,2,4,2],[1,2,1,1]],[[1,2,0,1],[1,3,2,1],[0,2,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,2,1],[0,2,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,2,1],[0,2,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,2,1],[0,2,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,2,1],[0,2,4,1],[1,2,2,1]],[[1,2,0,1],[1,3,2,1],[0,2,2,2],[1,2,2,2]],[[1,2,0,1],[1,3,2,1],[0,2,2,2],[1,2,3,1]],[[1,2,0,1],[1,3,2,1],[0,2,2,2],[1,3,2,1]],[[1,2,0,1],[1,3,2,1],[0,2,2,2],[2,2,2,1]],[[1,2,0,1],[1,3,2,1],[0,2,2,3],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[1,3,2,0],[2,4,3,2],[1,2,0,0]],[[1,2,0,1],[1,3,2,0],[3,3,3,2],[1,2,0,0]],[[1,2,0,1],[1,4,2,0],[2,3,3,2],[1,2,0,0]],[[1,2,0,1],[1,3,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[1,3,2,0],[2,3,4,2],[1,1,1,0]],[[1,2,0,1],[1,3,2,0],[2,4,3,2],[1,1,1,0]],[[1,2,0,1],[1,3,2,0],[3,3,3,2],[1,1,1,0]],[[1,2,0,1],[1,4,2,0],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[1,3,2,0],[2,3,3,2],[2,1,0,1]],[[1,2,0,1],[1,3,2,0],[2,3,4,2],[1,1,0,1]],[[1,2,0,1],[1,3,2,0],[2,4,3,2],[1,1,0,1]],[[1,2,0,1],[1,3,2,0],[3,3,3,2],[1,1,0,1]],[[1,2,0,1],[1,4,2,0],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,2],[1,0,3,0]],[[1,2,0,1],[1,3,2,0],[2,3,3,2],[2,0,2,0]],[[1,2,0,1],[1,3,2,0],[2,3,4,2],[1,0,2,0]],[[1,2,0,1],[1,3,2,0],[2,4,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,2,0],[3,3,3,2],[1,0,2,0]],[[1,2,0,1],[1,4,2,0],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,2,0],[2,3,3,2],[2,0,1,1]],[[1,2,0,1],[1,3,2,0],[2,3,4,2],[1,0,1,1]],[[1,2,0,1],[1,3,2,0],[2,4,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,2,0],[3,3,3,2],[1,0,1,1]],[[1,2,0,1],[1,4,2,0],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[1,3,2,0],[2,3,4,2],[0,2,1,0]],[[1,2,0,1],[1,3,2,0],[2,4,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,2,0],[3,3,3,2],[0,2,1,0]],[[1,2,0,1],[1,4,2,0],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,2,0],[2,3,3,2],[0,3,0,1]],[[1,2,0,1],[1,3,2,0],[2,3,4,2],[0,2,0,1]],[[1,2,0,1],[1,3,2,0],[2,4,3,2],[0,2,0,1]],[[1,2,0,1],[1,3,2,0],[3,3,3,2],[0,2,0,1]],[[1,2,0,1],[1,4,2,0],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,2],[0,1,3,0]],[[1,2,0,1],[1,3,2,0],[2,3,4,2],[0,1,2,0]],[[1,2,0,1],[1,3,2,0],[2,4,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,2,0],[3,3,3,2],[0,1,2,0]],[[1,2,0,1],[1,4,2,0],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,2,0],[2,3,4,2],[0,1,1,1]],[[1,2,0,1],[1,3,2,0],[2,4,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,2,0],[3,3,3,2],[0,1,1,1]],[[1,2,0,1],[1,4,2,0],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[1,3,2,0],[2,4,3,1],[1,2,0,1]],[[1,2,0,1],[1,3,2,0],[3,3,3,1],[1,2,0,1]],[[1,2,0,1],[1,4,2,0],[2,3,3,1],[1,2,0,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[1,3,2,0],[2,3,4,1],[1,1,1,1]],[[1,2,0,1],[1,3,2,0],[2,4,3,1],[1,1,1,1]],[[1,2,0,1],[1,3,2,0],[3,3,3,1],[1,1,1,1]],[[1,2,0,1],[1,4,2,0],[2,3,3,1],[1,1,1,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,1],[1,0,2,2]],[[1,2,0,1],[1,3,2,0],[2,3,3,1],[1,0,3,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,1],[2,0,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,4,1],[1,0,2,1]],[[1,2,0,1],[1,3,2,0],[2,4,3,1],[1,0,2,1]],[[1,2,0,1],[1,3,2,0],[3,3,3,1],[1,0,2,1]],[[1,2,0,1],[1,4,2,0],[2,3,3,1],[1,0,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,1],[0,3,1,1]],[[1,2,0,1],[1,3,2,0],[2,3,4,1],[0,2,1,1]],[[1,2,0,1],[1,3,2,0],[2,4,3,1],[0,2,1,1]],[[1,2,0,1],[1,3,2,0],[3,3,3,1],[0,2,1,1]],[[1,2,0,1],[1,4,2,0],[2,3,3,1],[0,2,1,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,1],[0,1,2,2]],[[1,2,0,1],[1,3,2,0],[2,3,3,1],[0,1,3,1]],[[1,2,0,1],[1,3,2,0],[2,3,4,1],[0,1,2,1]],[[1,2,0,1],[1,3,2,0],[2,4,3,1],[0,1,2,1]],[[1,2,0,1],[1,3,2,0],[3,3,3,1],[0,1,2,1]],[[1,2,0,1],[1,4,2,0],[2,3,3,1],[0,1,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,0],[2,1,2,1]],[[1,2,0,1],[1,3,2,0],[2,4,3,0],[1,1,2,1]],[[1,2,0,1],[1,3,2,0],[3,3,3,0],[1,1,2,1]],[[1,2,0,1],[1,4,2,0],[2,3,3,0],[1,1,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,0],[0,2,3,1]],[[1,2,0,1],[1,3,2,0],[2,3,3,0],[0,3,2,1]],[[1,2,0,1],[1,3,2,0],[2,4,3,0],[0,2,2,1]],[[1,2,0,1],[1,3,2,0],[3,3,3,0],[0,2,2,1]],[[1,2,0,1],[1,4,2,0],[2,3,3,0],[0,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[1,3,2,0],[2,4,2,2],[1,1,2,0]],[[1,2,0,1],[1,3,2,0],[3,3,2,2],[1,1,2,0]],[[1,2,0,1],[1,4,2,0],[2,3,2,2],[1,1,2,0]],[[1,2,0,1],[1,3,2,0],[2,3,2,2],[0,2,3,0]],[[1,2,0,1],[1,3,2,0],[2,3,2,2],[0,3,2,0]],[[1,2,0,1],[1,3,2,0],[2,4,2,2],[0,2,2,0]],[[1,2,0,1],[1,3,2,0],[3,3,2,2],[0,2,2,0]],[[1,2,0,1],[1,4,2,0],[2,3,2,2],[0,2,2,0]],[[1,2,0,1],[1,3,2,0],[2,3,2,1],[2,1,2,1]],[[1,2,0,1],[1,3,2,0],[2,4,2,1],[1,1,2,1]],[[1,2,0,1],[1,3,2,0],[3,3,2,1],[1,1,2,1]],[[1,2,0,1],[1,4,2,0],[2,3,2,1],[1,1,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,2,1],[0,2,2,2]],[[1,2,0,1],[1,3,2,0],[2,3,2,1],[0,2,3,1]],[[1,2,0,1],[1,3,2,0],[2,3,2,1],[0,3,2,1]],[[1,2,0,1],[1,3,2,0],[2,4,2,1],[0,2,2,1]],[[1,2,0,1],[1,3,2,0],[3,3,2,1],[0,2,2,1]],[[1,2,0,1],[1,4,2,0],[2,3,2,1],[0,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,2,0],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,2,0],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[3,3,2,0],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,1,2],[1,3,2,0]],[[1,2,0,1],[1,3,2,0],[2,3,1,2],[2,2,2,0]],[[1,2,0,1],[1,3,2,0],[3,3,1,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,0],[2,3,1,2],[2,1,2,1]],[[1,2,0,1],[1,3,2,0],[2,4,1,2],[1,1,2,1]],[[1,2,0,1],[1,3,2,0],[3,3,1,2],[1,1,2,1]],[[1,2,0,1],[1,4,2,0],[2,3,1,2],[1,1,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,1,2],[0,2,2,2]],[[1,2,0,1],[1,3,2,0],[2,3,1,2],[0,2,3,1]],[[1,2,0,1],[1,3,2,0],[2,3,1,2],[0,3,2,1]],[[1,2,0,1],[1,3,2,0],[2,4,1,2],[0,2,2,1]],[[1,2,0,1],[1,3,2,0],[3,3,1,2],[0,2,2,1]],[[1,2,0,1],[1,4,2,0],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,1,1],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,1,1],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[3,3,1,1],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,0,2],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[2,3,0,2],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[3,3,0,2],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[1,3,2,0],[2,2,3,2],[2,2,1,0]],[[1,2,0,1],[1,3,2,0],[3,2,3,2],[1,2,1,0]],[[1,2,0,1],[1,3,2,0],[2,2,3,2],[1,3,0,1]],[[1,2,0,1],[1,3,2,0],[2,2,3,2],[2,2,0,1]],[[1,2,0,1],[1,3,2,0],[3,2,3,2],[1,2,0,1]],[[1,2,0,1],[1,3,2,0],[2,2,3,2],[0,2,3,0]],[[1,2,0,1],[1,3,2,0],[2,2,3,2],[0,3,2,0]],[[1,2,0,1],[1,3,2,0],[2,2,4,2],[0,2,2,0]],[[1,2,0,1],[1,3,2,0],[2,2,3,1],[1,3,1,1]],[[1,2,0,1],[1,3,2,0],[2,2,3,1],[2,2,1,1]],[[1,2,0,1],[1,3,2,0],[3,2,3,1],[1,2,1,1]],[[1,2,0,1],[1,3,2,0],[2,2,3,1],[0,2,2,2]],[[1,2,0,1],[1,3,2,0],[2,2,3,1],[0,2,3,1]],[[1,2,0,1],[1,3,2,0],[2,2,3,1],[0,3,2,1]],[[1,2,0,1],[1,3,2,0],[2,2,4,1],[0,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,2,3,0],[1,2,3,1]],[[1,2,0,1],[1,3,2,0],[2,2,3,0],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[2,2,3,0],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[3,2,3,0],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,2,2,2],[1,2,3,0]],[[1,2,0,1],[1,3,2,0],[2,2,2,2],[1,3,2,0]],[[1,2,0,1],[1,3,2,0],[2,2,2,2],[2,2,2,0]],[[1,2,0,1],[1,3,2,0],[3,2,2,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,0],[2,2,2,1],[1,2,2,2]],[[1,2,0,1],[1,3,2,0],[2,2,2,1],[1,2,3,1]],[[1,2,0,1],[1,3,2,0],[2,2,2,1],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[2,2,2,1],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[3,2,2,1],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,2,1,2],[1,2,2,2]],[[1,2,0,1],[1,3,2,0],[2,2,1,2],[1,2,3,1]],[[1,2,0,1],[1,3,2,0],[2,2,1,2],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[2,2,1,2],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[3,2,1,2],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,1,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,2,0],[2,1,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,2,0],[2,1,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,2,0],[2,1,4,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,0],[3,1,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,0],[2,1,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,2,0],[2,1,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,2,0],[2,1,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[2,1,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[2,1,4,1],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[3,1,3,1],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[1,3,2,0],[1,3,3,2],[2,2,1,0]],[[1,2,0,1],[1,3,2,0],[1,3,4,2],[1,2,1,0]],[[1,2,0,1],[1,3,2,0],[1,4,3,2],[1,2,1,0]],[[1,2,0,1],[1,4,2,0],[1,3,3,2],[1,2,1,0]],[[1,2,0,1],[1,3,2,0],[1,3,3,2],[1,3,0,1]],[[1,2,0,1],[1,3,2,0],[1,3,3,2],[2,2,0,1]],[[1,2,0,1],[1,3,2,0],[1,3,4,2],[1,2,0,1]],[[1,2,0,1],[1,3,2,0],[1,4,3,2],[1,2,0,1]],[[1,2,0,1],[1,4,2,0],[1,3,3,2],[1,2,0,1]],[[1,2,0,1],[1,3,2,0],[1,3,3,2],[1,1,3,0]],[[1,2,0,1],[1,3,2,0],[1,3,4,2],[1,1,2,0]],[[1,2,0,1],[1,3,2,0],[1,4,3,2],[1,1,2,0]],[[1,2,0,1],[1,4,2,0],[1,3,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,2,0],[1,3,3,2],[1,0,2,2]],[[1,2,0,1],[1,3,2,0],[1,3,3,2],[1,0,3,1]],[[1,2,0,1],[1,3,2,0],[1,3,4,2],[1,0,2,1]],[[1,2,0,1],[1,3,2,0],[1,4,3,2],[1,0,2,1]],[[1,2,0,1],[1,4,2,0],[1,3,3,2],[1,0,2,1]],[[1,2,0,1],[1,3,2,0],[1,3,3,2],[0,3,1,1]],[[1,2,0,1],[1,3,2,0],[1,3,4,2],[0,2,1,1]],[[1,2,0,1],[1,3,2,0],[1,4,3,2],[0,2,1,1]],[[1,2,0,1],[1,4,2,0],[1,3,3,2],[0,2,1,1]],[[1,2,0,1],[1,3,2,0],[1,3,3,2],[0,1,2,2]],[[1,2,0,1],[1,3,2,0],[1,3,3,2],[0,1,3,1]],[[1,2,0,1],[1,3,2,0],[1,3,4,2],[0,1,2,1]],[[1,2,0,1],[1,3,2,0],[1,4,3,2],[0,1,2,1]],[[1,2,0,1],[1,4,2,0],[1,3,3,2],[0,1,2,1]],[[1,2,0,1],[1,3,2,0],[1,3,3,1],[1,3,1,1]],[[1,2,0,1],[1,3,2,0],[1,3,3,1],[2,2,1,1]],[[1,2,0,1],[1,3,2,0],[1,3,4,1],[1,2,1,1]],[[1,2,0,1],[1,3,2,0],[1,4,3,1],[1,2,1,1]],[[1,2,0,1],[1,4,2,0],[1,3,3,1],[1,2,1,1]],[[1,2,0,1],[1,3,2,0],[1,3,3,1],[1,1,2,2]],[[1,2,0,1],[1,3,2,0],[1,3,3,1],[1,1,3,1]],[[1,2,0,1],[1,3,2,0],[1,3,4,1],[1,1,2,1]],[[1,2,0,1],[1,3,2,0],[1,4,3,1],[1,1,2,1]],[[1,2,0,1],[1,4,2,0],[1,3,3,1],[1,1,2,1]],[[1,2,0,1],[1,3,2,0],[1,3,3,0],[1,2,3,1]],[[1,2,0,1],[1,3,2,0],[1,3,3,0],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[1,3,3,0],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[1,4,3,0],[1,2,2,1]],[[1,2,0,1],[1,4,2,0],[1,3,3,0],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[1,3,2,2],[1,2,3,0]],[[1,2,0,1],[1,3,2,0],[1,3,2,2],[1,3,2,0]],[[1,2,0,1],[1,3,2,0],[1,3,2,2],[2,2,2,0]],[[1,2,0,1],[1,3,2,0],[1,4,2,2],[1,2,2,0]],[[1,2,0,1],[1,4,2,0],[1,3,2,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,0],[1,3,2,2],[0,2,2,2]],[[1,2,0,1],[1,3,2,0],[1,3,2,2],[0,2,3,1]],[[1,2,0,1],[1,3,2,0],[1,3,2,2],[0,3,2,1]],[[1,2,0,1],[1,3,2,0],[1,4,2,2],[0,2,2,1]],[[1,2,0,1],[1,4,2,0],[1,3,2,2],[0,2,2,1]],[[1,2,0,1],[1,3,2,0],[1,3,2,1],[1,2,2,2]],[[1,2,0,1],[1,3,2,0],[1,3,2,1],[1,2,3,1]],[[1,2,0,1],[1,3,2,0],[1,3,2,1],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[1,3,2,1],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[1,4,2,1],[1,2,2,1]],[[1,2,0,1],[1,4,2,0],[1,3,2,1],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[1,3,1,2],[1,2,2,2]],[[1,2,0,1],[1,3,2,0],[1,3,1,2],[1,2,3,1]],[[1,2,0,1],[1,3,2,0],[1,3,1,2],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[1,3,1,2],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[1,4,1,2],[1,2,2,1]],[[1,2,0,1],[1,4,2,0],[1,3,1,2],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[1,2,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,2,0],[1,2,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,2,0],[1,2,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,2,0],[1,2,4,2],[1,2,2,0]],[[1,2,0,1],[1,3,2,0],[1,2,3,2],[0,2,2,2]],[[1,2,0,1],[1,3,2,0],[1,2,3,2],[0,2,3,1]],[[1,2,0,1],[1,3,2,0],[1,2,3,2],[0,3,2,1]],[[1,2,0,1],[1,3,2,0],[1,2,4,2],[0,2,2,1]],[[1,2,0,1],[1,3,2,0],[1,2,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,2,0],[1,2,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,2,0],[1,2,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[1,2,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[1,2,4,1],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[0,3,3,2],[1,3,1,1]],[[1,2,0,1],[1,3,2,0],[0,3,3,2],[2,2,1,1]],[[1,2,0,1],[1,3,2,0],[0,3,4,2],[1,2,1,1]],[[1,2,0,1],[1,3,2,0],[0,4,3,2],[1,2,1,1]],[[1,2,0,1],[1,4,2,0],[0,3,3,2],[1,2,1,1]],[[1,2,0,1],[1,3,2,0],[0,3,3,2],[1,1,2,2]],[[1,2,0,1],[1,3,2,0],[0,3,3,2],[1,1,3,1]],[[1,2,0,1],[1,3,2,0],[0,3,4,2],[1,1,2,1]],[[1,2,0,1],[1,3,2,0],[0,4,3,2],[1,1,2,1]],[[1,2,0,1],[1,4,2,0],[0,3,3,2],[1,1,2,1]],[[1,2,0,1],[1,3,2,0],[0,3,2,2],[1,2,2,2]],[[1,2,0,1],[1,3,2,0],[0,3,2,2],[1,2,3,1]],[[1,2,0,1],[1,3,2,0],[0,3,2,2],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[0,3,2,2],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[0,4,2,2],[1,2,2,1]],[[1,2,0,1],[1,4,2,0],[0,3,2,2],[1,2,2,1]],[[1,2,0,1],[1,3,2,0],[0,2,3,2],[1,2,2,2]],[[1,2,0,1],[1,3,2,0],[0,2,3,2],[1,2,3,1]],[[1,2,0,1],[1,3,2,0],[0,2,3,2],[1,3,2,1]],[[1,2,0,1],[1,3,2,0],[0,2,3,2],[2,2,2,1]],[[1,2,0,1],[1,3,2,0],[0,2,4,2],[1,2,2,1]],[[1,2,0,1],[1,4,1,2],[2,3,3,2],[1,0,1,0]],[[1,3,0,1],[1,3,1,2],[2,3,3,2],[1,0,1,0]],[[2,2,0,1],[1,3,1,2],[2,3,3,2],[1,0,1,0]],[[1,2,0,1],[1,4,1,2],[2,3,3,2],[1,0,0,1]],[[1,3,0,1],[1,3,1,2],[2,3,3,2],[1,0,0,1]],[[2,2,0,1],[1,3,1,2],[2,3,3,2],[1,0,0,1]],[[1,2,0,1],[1,4,1,2],[2,2,3,2],[1,2,0,0]],[[1,3,0,1],[1,3,1,2],[2,2,3,2],[1,2,0,0]],[[2,2,0,1],[1,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,2,0,1],[1,4,1,2],[2,2,3,2],[1,1,1,0]],[[1,3,0,1],[1,3,1,2],[2,2,3,2],[1,1,1,0]],[[2,2,0,1],[1,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,2,0,1],[1,4,1,2],[2,2,3,2],[1,1,0,1]],[[1,3,0,1],[1,3,1,2],[2,2,3,2],[1,1,0,1]],[[2,2,0,1],[1,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,2,0,1],[1,4,1,2],[2,2,3,2],[1,0,2,0]],[[1,3,0,1],[1,3,1,2],[2,2,3,2],[1,0,2,0]],[[2,2,0,1],[1,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,2,0,1],[1,4,1,2],[2,2,3,2],[1,0,1,1]],[[1,3,0,1],[1,3,1,2],[2,2,3,2],[1,0,1,1]],[[2,2,0,1],[1,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,2,0,1],[1,4,1,2],[2,2,3,2],[0,2,1,0]],[[1,3,0,1],[1,3,1,2],[2,2,3,2],[0,2,1,0]],[[2,2,0,1],[1,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,2,0,1],[1,4,1,2],[2,2,3,2],[0,2,0,1]],[[1,3,0,1],[1,3,1,2],[2,2,3,2],[0,2,0,1]],[[2,2,0,1],[1,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,2,0,1],[1,4,1,2],[2,2,3,2],[0,1,2,0]],[[1,3,0,1],[1,3,1,2],[2,2,3,2],[0,1,2,0]],[[2,2,0,1],[1,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,2,0,1],[1,4,1,2],[2,2,3,2],[0,1,1,1]],[[1,3,0,1],[1,3,1,2],[2,2,3,2],[0,1,1,1]],[[2,2,0,1],[1,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,2,0,1],[1,4,1,2],[2,2,3,1],[1,1,1,1]],[[1,3,0,1],[1,3,1,2],[2,2,3,1],[1,1,1,1]],[[2,2,0,1],[1,3,1,2],[2,2,3,1],[1,1,1,1]],[[1,2,0,1],[1,4,1,2],[2,2,3,1],[1,0,2,1]],[[1,3,0,1],[1,3,1,2],[2,2,3,1],[1,0,2,1]],[[2,2,0,1],[1,3,1,2],[2,2,3,1],[1,0,2,1]],[[1,2,0,1],[1,4,1,2],[2,2,3,1],[0,2,1,1]],[[1,3,0,1],[1,3,1,2],[2,2,3,1],[0,2,1,1]],[[2,2,0,1],[1,3,1,2],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[1,4,1,2],[2,2,3,1],[0,1,2,1]],[[1,3,0,1],[1,3,1,2],[2,2,3,1],[0,1,2,1]],[[2,2,0,1],[1,3,1,2],[2,2,3,1],[0,1,2,1]],[[1,2,0,1],[1,4,1,2],[2,2,2,2],[1,1,2,0]],[[1,3,0,1],[1,3,1,2],[2,2,2,2],[1,1,2,0]],[[2,2,0,1],[1,3,1,2],[2,2,2,2],[1,1,2,0]],[[1,2,0,1],[1,4,1,2],[2,2,2,2],[0,2,2,0]],[[1,3,0,1],[1,3,1,2],[2,2,2,2],[0,2,2,0]],[[2,2,0,1],[1,3,1,2],[2,2,2,2],[0,2,2,0]],[[1,2,0,1],[1,4,1,2],[2,2,2,1],[1,1,2,1]],[[1,3,0,1],[1,3,1,2],[2,2,2,1],[1,1,2,1]],[[2,2,0,1],[1,3,1,2],[2,2,2,1],[1,1,2,1]],[[1,2,0,1],[1,4,1,2],[2,2,2,1],[0,2,2,1]],[[1,3,0,1],[1,3,1,2],[2,2,2,1],[0,2,2,1]],[[2,2,0,1],[1,3,1,2],[2,2,2,1],[0,2,2,1]],[[1,2,0,1],[1,4,1,2],[2,2,1,2],[1,1,2,1]],[[1,3,0,1],[1,3,1,2],[2,2,1,2],[1,1,2,1]],[[2,2,0,1],[1,3,1,2],[2,2,1,2],[1,1,2,1]],[[1,2,0,1],[1,4,1,2],[2,2,1,2],[0,2,2,1]],[[1,3,0,1],[1,3,1,2],[2,2,1,2],[0,2,2,1]],[[2,2,0,1],[1,3,1,2],[2,2,1,2],[0,2,2,1]],[[1,2,0,1],[1,4,1,2],[2,1,3,2],[1,2,1,0]],[[1,3,0,1],[1,3,1,2],[2,1,3,2],[1,2,1,0]],[[2,2,0,1],[1,3,1,2],[2,1,3,2],[1,2,1,0]],[[1,2,0,1],[1,4,1,2],[2,1,3,2],[1,2,0,1]],[[1,3,0,1],[1,3,1,2],[2,1,3,2],[1,2,0,1]],[[2,2,0,1],[1,3,1,2],[2,1,3,2],[1,2,0,1]],[[1,2,0,1],[1,4,1,2],[2,1,3,1],[1,2,1,1]],[[1,3,0,1],[1,3,1,2],[2,1,3,1],[1,2,1,1]],[[2,2,0,1],[1,3,1,2],[2,1,3,1],[1,2,1,1]],[[1,2,0,1],[1,4,1,2],[2,1,2,2],[1,2,2,0]],[[1,3,0,1],[1,3,1,2],[2,1,2,2],[1,2,2,0]],[[2,2,0,1],[1,3,1,2],[2,1,2,2],[1,2,2,0]],[[1,2,0,1],[1,4,1,2],[2,1,2,1],[1,2,2,1]],[[1,3,0,1],[1,3,1,2],[2,1,2,1],[1,2,2,1]],[[2,2,0,1],[1,3,1,2],[2,1,2,1],[1,2,2,1]],[[1,2,0,1],[1,4,1,2],[2,1,1,2],[1,2,2,1]],[[1,3,0,1],[1,3,1,2],[2,1,1,2],[1,2,2,1]],[[2,2,0,1],[1,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[1,4,1,2],[2,0,3,2],[1,2,2,0]],[[1,3,0,1],[1,3,1,2],[2,0,3,2],[1,2,2,0]],[[2,2,0,1],[1,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[1,4,1,2],[2,0,3,1],[1,2,2,1]],[[1,3,0,1],[1,3,1,2],[2,0,3,1],[1,2,2,1]],[[2,2,0,1],[1,3,1,2],[2,0,3,1],[1,2,2,1]],[[1,2,0,1],[1,4,1,2],[2,0,2,2],[1,2,2,1]],[[1,3,0,1],[1,3,1,2],[2,0,2,2],[1,2,2,1]],[[2,2,0,1],[1,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,2,0,1],[1,3,1,2],[1,4,3,2],[1,2,0,0]],[[1,2,0,1],[1,4,1,2],[1,3,3,2],[1,2,0,0]],[[1,3,0,1],[1,3,1,2],[1,3,3,2],[1,2,0,0]],[[2,2,0,1],[1,3,1,2],[1,3,3,2],[1,2,0,0]],[[2,1,2,0],[2,3,3,2],[2,1,0,0],[1,2,2,1]],[[1,1,2,0],[3,3,3,2],[2,1,0,0],[1,2,2,1]],[[1,1,2,0],[2,4,3,2],[2,1,0,0],[1,2,2,1]],[[1,1,2,0],[2,3,3,2],[3,1,0,0],[1,2,2,1]],[[1,1,2,0],[2,3,3,2],[2,1,0,0],[2,2,2,1]],[[1,1,2,0],[2,3,3,2],[2,1,0,0],[1,3,2,1]],[[2,1,2,0],[2,3,3,2],[2,1,0,1],[1,2,2,0]],[[1,1,2,0],[3,3,3,2],[2,1,0,1],[1,2,2,0]],[[1,1,2,0],[2,4,3,2],[2,1,0,1],[1,2,2,0]],[[1,1,2,0],[2,3,3,2],[3,1,0,1],[1,2,2,0]],[[1,1,2,0],[2,3,3,2],[2,1,0,1],[2,2,2,0]],[[1,1,2,0],[2,3,3,2],[2,1,0,1],[1,3,2,0]],[[2,1,2,0],[2,3,3,2],[2,1,0,2],[1,2,0,1]],[[1,1,2,0],[3,3,3,2],[2,1,0,2],[1,2,0,1]],[[1,1,2,0],[2,4,3,2],[2,1,0,2],[1,2,0,1]],[[1,1,2,0],[2,3,3,2],[3,1,0,2],[1,2,0,1]],[[1,1,2,0],[2,3,3,2],[2,1,0,2],[2,2,0,1]],[[2,1,2,0],[2,3,3,2],[2,1,0,2],[1,2,1,0]],[[1,1,2,0],[3,3,3,2],[2,1,0,2],[1,2,1,0]],[[1,1,2,0],[2,4,3,2],[2,1,0,2],[1,2,1,0]],[[1,1,2,0],[2,3,3,2],[3,1,0,2],[1,2,1,0]],[[1,1,2,0],[2,3,3,2],[2,1,0,2],[2,2,1,0]],[[2,1,2,0],[2,3,3,2],[2,1,1,0],[1,2,1,1]],[[1,1,2,0],[3,3,3,2],[2,1,1,0],[1,2,1,1]],[[1,1,2,0],[2,4,3,2],[2,1,1,0],[1,2,1,1]],[[1,1,2,0],[2,3,3,2],[3,1,1,0],[1,2,1,1]],[[1,1,2,0],[2,3,3,2],[2,1,1,0],[2,2,1,1]],[[2,1,2,0],[2,3,3,2],[2,1,1,1],[1,2,0,1]],[[1,1,2,0],[3,3,3,2],[2,1,1,1],[1,2,0,1]],[[1,1,2,0],[2,4,3,2],[2,1,1,1],[1,2,0,1]],[[1,1,2,0],[2,3,3,2],[3,1,1,1],[1,2,0,1]],[[1,1,2,0],[2,3,3,2],[2,1,1,1],[2,2,0,1]],[[2,1,2,0],[2,3,3,2],[2,1,1,1],[1,2,1,0]],[[1,1,2,0],[3,3,3,2],[2,1,1,1],[1,2,1,0]],[[1,1,2,0],[2,4,3,2],[2,1,1,1],[1,2,1,0]],[[1,1,2,0],[2,3,3,2],[3,1,1,1],[1,2,1,0]],[[1,1,2,0],[2,3,3,2],[2,1,1,1],[2,2,1,0]],[[1,2,0,1],[1,3,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,0,1],[1,3,1,2],[1,3,4,2],[1,1,1,0]],[[1,2,0,1],[1,3,1,2],[1,4,3,2],[1,1,1,0]],[[1,2,0,1],[1,3,1,3],[1,3,3,2],[1,1,1,0]],[[1,2,0,1],[1,4,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,0,2],[1,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,3,0,1],[1,3,1,2],[1,3,3,2],[1,1,1,0]],[[2,2,0,1],[1,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,0,1],[1,3,1,2],[1,3,3,2],[1,1,0,2]],[[1,2,0,1],[1,3,1,2],[1,3,3,3],[1,1,0,1]],[[1,2,0,1],[1,3,1,2],[1,3,4,2],[1,1,0,1]],[[1,2,0,1],[1,3,1,2],[1,4,3,2],[1,1,0,1]],[[1,2,0,1],[1,3,1,3],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[1,4,1,2],[1,3,3,2],[1,1,0,1]],[[1,2,0,2],[1,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,3,0,1],[1,3,1,2],[1,3,3,2],[1,1,0,1]],[[2,2,0,1],[1,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[1,3,1,2],[1,3,3,2],[1,0,3,0]],[[1,2,0,1],[1,3,1,2],[1,3,3,3],[1,0,2,0]],[[1,2,0,1],[1,3,1,2],[1,3,4,2],[1,0,2,0]],[[1,2,0,1],[1,3,1,2],[1,4,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,1,3],[1,3,3,2],[1,0,2,0]],[[1,2,0,1],[1,4,1,2],[1,3,3,2],[1,0,2,0]],[[1,2,0,2],[1,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,3,0,1],[1,3,1,2],[1,3,3,2],[1,0,2,0]],[[2,2,0,1],[1,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,2,0,1],[1,3,1,2],[1,3,3,2],[1,0,1,2]],[[1,2,0,1],[1,3,1,2],[1,3,3,3],[1,0,1,1]],[[1,2,0,1],[1,3,1,2],[1,3,4,2],[1,0,1,1]],[[1,2,0,1],[1,3,1,2],[1,4,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,1,3],[1,3,3,2],[1,0,1,1]],[[1,2,0,1],[1,4,1,2],[1,3,3,2],[1,0,1,1]],[[1,2,0,2],[1,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,3,0,1],[1,3,1,2],[1,3,3,2],[1,0,1,1]],[[2,2,0,1],[1,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,2,0,1],[1,3,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,0,1],[1,3,1,2],[1,3,3,3],[0,2,1,0]],[[1,2,0,1],[1,3,1,2],[1,3,4,2],[0,2,1,0]],[[1,2,0,1],[1,3,1,2],[1,4,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,1,3],[1,3,3,2],[0,2,1,0]],[[1,2,0,1],[1,4,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,0,2],[1,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,3,0,1],[1,3,1,2],[1,3,3,2],[0,2,1,0]],[[2,2,0,1],[1,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,0,1],[1,3,1,2],[1,3,3,2],[0,2,0,2]],[[1,2,0,1],[1,3,1,2],[1,3,3,2],[0,3,0,1]],[[1,2,0,1],[1,3,1,2],[1,3,3,3],[0,2,0,1]],[[1,2,0,1],[1,3,1,2],[1,3,4,2],[0,2,0,1]],[[1,2,0,1],[1,3,1,2],[1,4,3,2],[0,2,0,1]],[[1,2,0,1],[1,3,1,3],[1,3,3,2],[0,2,0,1]],[[1,2,0,1],[1,4,1,2],[1,3,3,2],[0,2,0,1]],[[1,2,0,2],[1,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,3,0,1],[1,3,1,2],[1,3,3,2],[0,2,0,1]],[[2,2,0,1],[1,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,2,0,1],[1,3,1,2],[1,3,3,2],[0,1,3,0]],[[1,2,0,1],[1,3,1,2],[1,3,3,3],[0,1,2,0]],[[1,2,0,1],[1,3,1,2],[1,3,4,2],[0,1,2,0]],[[1,2,0,1],[1,3,1,2],[1,4,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,1,3],[1,3,3,2],[0,1,2,0]],[[1,2,0,1],[1,4,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,0,2],[1,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,3,0,1],[1,3,1,2],[1,3,3,2],[0,1,2,0]],[[2,2,0,1],[1,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,0,1],[1,3,1,2],[1,3,3,2],[0,1,1,2]],[[1,2,0,1],[1,3,1,2],[1,3,3,3],[0,1,1,1]],[[1,2,0,1],[1,3,1,2],[1,3,4,2],[0,1,1,1]],[[1,2,0,1],[1,3,1,2],[1,4,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,1,3],[1,3,3,2],[0,1,1,1]],[[1,2,0,1],[1,4,1,2],[1,3,3,2],[0,1,1,1]],[[1,2,0,2],[1,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,3,0,1],[1,3,1,2],[1,3,3,2],[0,1,1,1]],[[2,2,0,1],[1,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,2,0,1],[1,3,1,2],[1,3,3,2],[0,0,2,2]],[[1,2,0,1],[1,3,1,2],[1,3,3,3],[0,0,2,1]],[[1,2,0,1],[1,3,1,2],[1,3,4,2],[0,0,2,1]],[[1,2,0,1],[1,3,1,3],[1,3,3,2],[0,0,2,1]],[[1,2,0,2],[1,3,1,2],[1,3,3,2],[0,0,2,1]],[[1,2,0,1],[1,3,1,2],[1,3,4,1],[1,1,1,1]],[[1,2,0,1],[1,3,1,2],[1,4,3,1],[1,1,1,1]],[[1,2,0,1],[1,4,1,2],[1,3,3,1],[1,1,1,1]],[[1,3,0,1],[1,3,1,2],[1,3,3,1],[1,1,1,1]],[[2,2,0,1],[1,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[1,3,1,2],[1,3,3,1],[1,0,2,2]],[[1,2,0,1],[1,3,1,2],[1,3,3,1],[1,0,3,1]],[[1,2,0,1],[1,3,1,2],[1,3,4,1],[1,0,2,1]],[[1,2,0,1],[1,3,1,2],[1,4,3,1],[1,0,2,1]],[[1,2,0,1],[1,4,1,2],[1,3,3,1],[1,0,2,1]],[[1,3,0,1],[1,3,1,2],[1,3,3,1],[1,0,2,1]],[[2,2,0,1],[1,3,1,2],[1,3,3,1],[1,0,2,1]],[[1,2,0,1],[1,3,1,2],[1,3,3,1],[0,3,1,1]],[[1,2,0,1],[1,3,1,2],[1,3,4,1],[0,2,1,1]],[[1,2,0,1],[1,3,1,2],[1,4,3,1],[0,2,1,1]],[[1,2,0,1],[1,4,1,2],[1,3,3,1],[0,2,1,1]],[[1,3,0,1],[1,3,1,2],[1,3,3,1],[0,2,1,1]],[[2,2,0,1],[1,3,1,2],[1,3,3,1],[0,2,1,1]],[[1,2,0,1],[1,3,1,2],[1,3,3,1],[0,1,2,2]],[[1,2,0,1],[1,3,1,2],[1,3,3,1],[0,1,3,1]],[[1,2,0,1],[1,3,1,2],[1,3,4,1],[0,1,2,1]],[[1,2,0,1],[1,3,1,2],[1,4,3,1],[0,1,2,1]],[[1,2,0,1],[1,4,1,2],[1,3,3,1],[0,1,2,1]],[[1,3,0,1],[1,3,1,2],[1,3,3,1],[0,1,2,1]],[[2,2,0,1],[1,3,1,2],[1,3,3,1],[0,1,2,1]],[[1,2,0,1],[1,3,1,2],[1,4,2,2],[1,1,2,0]],[[1,2,0,1],[1,4,1,2],[1,3,2,2],[1,1,2,0]],[[1,3,0,1],[1,3,1,2],[1,3,2,2],[1,1,2,0]],[[2,2,0,1],[1,3,1,2],[1,3,2,2],[1,1,2,0]],[[1,2,0,1],[1,3,1,2],[1,3,2,2],[1,0,2,2]],[[1,2,0,1],[1,3,1,2],[1,3,2,2],[1,0,3,1]],[[1,2,0,1],[1,3,1,2],[1,3,2,3],[1,0,2,1]],[[1,2,0,1],[1,3,1,3],[1,3,2,2],[1,0,2,1]],[[1,2,0,2],[1,3,1,2],[1,3,2,2],[1,0,2,1]],[[1,2,0,1],[1,3,1,2],[1,3,2,2],[0,2,3,0]],[[1,2,0,1],[1,3,1,2],[1,3,2,2],[0,3,2,0]],[[1,2,0,1],[1,3,1,2],[1,4,2,2],[0,2,2,0]],[[1,2,0,1],[1,4,1,2],[1,3,2,2],[0,2,2,0]],[[1,3,0,1],[1,3,1,2],[1,3,2,2],[0,2,2,0]],[[2,2,0,1],[1,3,1,2],[1,3,2,2],[0,2,2,0]],[[1,2,0,1],[1,3,1,2],[1,3,2,2],[0,1,2,2]],[[1,2,0,1],[1,3,1,2],[1,3,2,2],[0,1,3,1]],[[1,2,0,1],[1,3,1,2],[1,3,2,3],[0,1,2,1]],[[1,2,0,1],[1,3,1,3],[1,3,2,2],[0,1,2,1]],[[1,2,0,2],[1,3,1,2],[1,3,2,2],[0,1,2,1]],[[1,2,0,1],[1,3,1,2],[1,4,2,1],[1,1,2,1]],[[1,2,0,1],[1,4,1,2],[1,3,2,1],[1,1,2,1]],[[1,3,0,1],[1,3,1,2],[1,3,2,1],[1,1,2,1]],[[2,2,0,1],[1,3,1,2],[1,3,2,1],[1,1,2,1]],[[1,2,0,1],[1,3,1,2],[1,3,2,1],[0,2,2,2]],[[1,2,0,1],[1,3,1,2],[1,3,2,1],[0,2,3,1]],[[1,2,0,1],[1,3,1,2],[1,3,2,1],[0,3,2,1]],[[1,2,0,1],[1,3,1,2],[1,4,2,1],[0,2,2,1]],[[1,2,0,1],[1,4,1,2],[1,3,2,1],[0,2,2,1]],[[1,3,0,1],[1,3,1,2],[1,3,2,1],[0,2,2,1]],[[2,2,0,1],[1,3,1,2],[1,3,2,1],[0,2,2,1]],[[1,2,0,1],[1,3,1,2],[1,4,1,2],[1,1,2,1]],[[1,2,0,1],[1,4,1,2],[1,3,1,2],[1,1,2,1]],[[1,3,0,1],[1,3,1,2],[1,3,1,2],[1,1,2,1]],[[2,2,0,1],[1,3,1,2],[1,3,1,2],[1,1,2,1]],[[1,2,0,1],[1,3,1,2],[1,3,1,2],[0,2,2,2]],[[1,2,0,1],[1,3,1,2],[1,3,1,2],[0,2,3,1]],[[1,2,0,1],[1,3,1,2],[1,3,1,2],[0,3,2,1]],[[1,2,0,1],[1,3,1,2],[1,3,1,3],[0,2,2,1]],[[1,2,0,1],[1,3,1,2],[1,4,1,2],[0,2,2,1]],[[1,2,0,1],[1,3,1,3],[1,3,1,2],[0,2,2,1]],[[1,2,0,1],[1,4,1,2],[1,3,1,2],[0,2,2,1]],[[1,2,0,2],[1,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,3,0,1],[1,3,1,2],[1,3,1,2],[0,2,2,1]],[[2,2,0,1],[1,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,2,0,1],[1,3,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,0,1],[1,3,1,2],[1,2,3,2],[0,3,2,0]],[[1,2,0,1],[1,3,1,2],[1,2,3,3],[0,2,2,0]],[[1,2,0,1],[1,3,1,2],[1,2,4,2],[0,2,2,0]],[[1,2,0,1],[1,3,1,3],[1,2,3,2],[0,2,2,0]],[[1,2,0,2],[1,3,1,2],[1,2,3,2],[0,2,2,0]],[[1,2,0,1],[1,3,1,2],[1,2,3,2],[0,2,1,2]],[[1,2,0,1],[1,3,1,2],[1,2,3,3],[0,2,1,1]],[[1,2,0,1],[1,3,1,2],[1,2,4,2],[0,2,1,1]],[[1,2,0,1],[1,3,1,3],[1,2,3,2],[0,2,1,1]],[[1,2,0,2],[1,3,1,2],[1,2,3,2],[0,2,1,1]],[[1,2,0,1],[1,3,1,2],[1,2,3,1],[0,2,2,2]],[[1,2,0,1],[1,3,1,2],[1,2,3,1],[0,2,3,1]],[[1,2,0,1],[1,3,1,2],[1,2,3,1],[0,3,2,1]],[[1,2,0,1],[1,3,1,2],[1,2,4,1],[0,2,2,1]],[[1,2,0,1],[1,3,1,2],[1,2,2,2],[0,2,2,2]],[[1,2,0,1],[1,3,1,2],[1,2,2,2],[0,2,3,1]],[[1,2,0,1],[1,3,1,2],[1,2,2,2],[0,3,2,1]],[[1,2,0,1],[1,3,1,2],[1,2,2,3],[0,2,2,1]],[[1,2,0,1],[1,3,1,3],[1,2,2,2],[0,2,2,1]],[[1,2,0,2],[1,3,1,2],[1,2,2,2],[0,2,2,1]],[[1,2,0,1],[1,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,0,1],[1,3,1,2],[0,3,3,2],[2,2,1,0]],[[1,2,0,1],[1,3,1,2],[0,3,3,3],[1,2,1,0]],[[1,2,0,1],[1,3,1,2],[0,3,4,2],[1,2,1,0]],[[1,2,0,1],[1,3,1,2],[0,4,3,2],[1,2,1,0]],[[1,2,0,1],[1,3,1,3],[0,3,3,2],[1,2,1,0]],[[1,2,0,1],[1,4,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,0,2],[1,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,3,0,1],[1,3,1,2],[0,3,3,2],[1,2,1,0]],[[2,2,0,1],[1,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,0,1],[1,3,1,2],[0,3,3,2],[1,2,0,2]],[[1,2,0,1],[1,3,1,2],[0,3,3,2],[1,3,0,1]],[[1,2,0,1],[1,3,1,2],[0,3,3,2],[2,2,0,1]],[[1,2,0,1],[1,3,1,2],[0,3,3,3],[1,2,0,1]],[[1,2,0,1],[1,3,1,2],[0,3,4,2],[1,2,0,1]],[[1,2,0,1],[1,3,1,2],[0,4,3,2],[1,2,0,1]],[[1,2,0,1],[1,3,1,3],[0,3,3,2],[1,2,0,1]],[[1,2,0,1],[1,4,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,0,2],[1,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,3,0,1],[1,3,1,2],[0,3,3,2],[1,2,0,1]],[[2,2,0,1],[1,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,0,1],[1,3,1,2],[0,3,3,2],[1,1,3,0]],[[1,2,0,1],[1,3,1,2],[0,3,3,3],[1,1,2,0]],[[1,2,0,1],[1,3,1,2],[0,3,4,2],[1,1,2,0]],[[1,2,0,1],[1,3,1,2],[0,4,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,1,3],[0,3,3,2],[1,1,2,0]],[[1,2,0,1],[1,4,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,0,2],[1,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,3,0,1],[1,3,1,2],[0,3,3,2],[1,1,2,0]],[[2,2,0,1],[1,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,1,2],[0,3,3,2],[1,1,1,2]],[[1,2,0,1],[1,3,1,2],[0,3,3,3],[1,1,1,1]],[[1,2,0,1],[1,3,1,2],[0,3,4,2],[1,1,1,1]],[[1,2,0,1],[1,3,1,2],[0,4,3,2],[1,1,1,1]],[[1,2,0,1],[1,3,1,3],[0,3,3,2],[1,1,1,1]],[[1,2,0,1],[1,4,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,0,2],[1,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,3,0,1],[1,3,1,2],[0,3,3,2],[1,1,1,1]],[[2,2,0,1],[1,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,0,1],[1,3,1,2],[0,3,3,2],[1,0,2,2]],[[1,2,0,1],[1,3,1,2],[0,3,3,3],[1,0,2,1]],[[1,2,0,1],[1,3,1,2],[0,3,4,2],[1,0,2,1]],[[1,2,0,1],[1,3,1,3],[0,3,3,2],[1,0,2,1]],[[1,2,0,2],[1,3,1,2],[0,3,3,2],[1,0,2,1]],[[1,2,0,1],[1,3,1,2],[0,3,3,1],[1,3,1,1]],[[1,2,0,1],[1,3,1,2],[0,3,3,1],[2,2,1,1]],[[1,2,0,1],[1,3,1,2],[0,3,4,1],[1,2,1,1]],[[1,2,0,1],[1,3,1,2],[0,4,3,1],[1,2,1,1]],[[1,2,0,1],[1,4,1,2],[0,3,3,1],[1,2,1,1]],[[1,3,0,1],[1,3,1,2],[0,3,3,1],[1,2,1,1]],[[2,2,0,1],[1,3,1,2],[0,3,3,1],[1,2,1,1]],[[1,2,0,1],[1,3,1,2],[0,3,3,1],[1,1,2,2]],[[1,2,0,1],[1,3,1,2],[0,3,3,1],[1,1,3,1]],[[1,2,0,1],[1,3,1,2],[0,3,4,1],[1,1,2,1]],[[1,2,0,1],[1,3,1,2],[0,4,3,1],[1,1,2,1]],[[1,2,0,1],[1,4,1,2],[0,3,3,1],[1,1,2,1]],[[1,3,0,1],[1,3,1,2],[0,3,3,1],[1,1,2,1]],[[2,2,0,1],[1,3,1,2],[0,3,3,1],[1,1,2,1]],[[1,2,0,1],[1,3,1,2],[0,3,2,2],[1,2,3,0]],[[1,2,0,1],[1,3,1,2],[0,3,2,2],[1,3,2,0]],[[1,2,0,1],[1,3,1,2],[0,3,2,2],[2,2,2,0]],[[1,2,0,1],[1,3,1,2],[0,4,2,2],[1,2,2,0]],[[1,2,0,1],[1,4,1,2],[0,3,2,2],[1,2,2,0]],[[1,3,0,1],[1,3,1,2],[0,3,2,2],[1,2,2,0]],[[2,2,0,1],[1,3,1,2],[0,3,2,2],[1,2,2,0]],[[1,2,0,1],[1,3,1,2],[0,3,2,2],[1,1,2,2]],[[1,2,0,1],[1,3,1,2],[0,3,2,2],[1,1,3,1]],[[1,2,0,1],[1,3,1,2],[0,3,2,3],[1,1,2,1]],[[1,2,0,1],[1,3,1,3],[0,3,2,2],[1,1,2,1]],[[1,2,0,2],[1,3,1,2],[0,3,2,2],[1,1,2,1]],[[1,2,0,1],[1,3,1,2],[0,3,2,1],[1,2,2,2]],[[1,2,0,1],[1,3,1,2],[0,3,2,1],[1,2,3,1]],[[1,2,0,1],[1,3,1,2],[0,3,2,1],[1,3,2,1]],[[1,2,0,1],[1,3,1,2],[0,3,2,1],[2,2,2,1]],[[1,2,0,1],[1,3,1,2],[0,4,2,1],[1,2,2,1]],[[1,2,0,1],[1,4,1,2],[0,3,2,1],[1,2,2,1]],[[1,3,0,1],[1,3,1,2],[0,3,2,1],[1,2,2,1]],[[2,2,0,1],[1,3,1,2],[0,3,2,1],[1,2,2,1]],[[1,2,0,1],[1,3,1,2],[0,3,1,2],[1,2,2,2]],[[1,2,0,1],[1,3,1,2],[0,3,1,2],[1,2,3,1]],[[1,2,0,1],[1,3,1,2],[0,3,1,2],[1,3,2,1]],[[1,2,0,1],[1,3,1,2],[0,3,1,2],[2,2,2,1]],[[1,2,0,1],[1,3,1,2],[0,3,1,3],[1,2,2,1]],[[1,2,0,1],[1,3,1,2],[0,4,1,2],[1,2,2,1]],[[1,2,0,1],[1,3,1,3],[0,3,1,2],[1,2,2,1]],[[1,2,0,1],[1,4,1,2],[0,3,1,2],[1,2,2,1]],[[1,2,0,2],[1,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,3,0,1],[1,3,1,2],[0,3,1,2],[1,2,2,1]],[[2,2,0,1],[1,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,2,0,1],[1,3,1,2],[0,2,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,1,2],[0,2,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,1,2],[0,2,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,1,2],[0,2,3,3],[1,2,2,0]],[[1,2,0,1],[1,3,1,2],[0,2,4,2],[1,2,2,0]],[[1,2,0,1],[1,3,1,3],[0,2,3,2],[1,2,2,0]],[[1,2,0,2],[1,3,1,2],[0,2,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,1,2],[0,2,3,2],[1,2,1,2]],[[1,2,0,1],[1,3,1,2],[0,2,3,3],[1,2,1,1]],[[1,2,0,1],[1,3,1,2],[0,2,4,2],[1,2,1,1]],[[1,2,0,1],[1,3,1,3],[0,2,3,2],[1,2,1,1]],[[1,2,0,2],[1,3,1,2],[0,2,3,2],[1,2,1,1]],[[1,2,0,1],[1,3,1,2],[0,2,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,1,2],[0,2,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,1,2],[0,2,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,1,2],[0,2,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,1,2],[0,2,4,1],[1,2,2,1]],[[1,2,0,1],[1,3,1,2],[0,2,2,2],[1,2,2,2]],[[1,2,0,1],[1,3,1,2],[0,2,2,2],[1,2,3,1]],[[1,2,0,1],[1,3,1,2],[0,2,2,2],[1,3,2,1]],[[1,2,0,1],[1,3,1,2],[0,2,2,2],[2,2,2,1]],[[1,2,0,1],[1,3,1,2],[0,2,2,3],[1,2,2,1]],[[1,2,0,1],[1,3,1,3],[0,2,2,2],[1,2,2,1]],[[1,2,0,2],[1,3,1,2],[0,2,2,2],[1,2,2,1]],[[1,2,0,1],[1,3,1,1],[1,3,3,2],[0,2,3,0]],[[1,2,0,1],[1,3,1,1],[1,3,3,2],[0,3,2,0]],[[1,2,0,1],[1,3,1,1],[1,4,3,2],[0,2,2,0]],[[1,2,0,1],[1,3,1,1],[1,3,3,1],[0,2,2,2]],[[1,2,0,1],[1,3,1,1],[1,3,3,1],[0,2,3,1]],[[1,2,0,1],[1,3,1,1],[1,3,3,1],[0,3,2,1]],[[1,2,0,1],[1,3,1,1],[1,4,3,1],[0,2,2,1]],[[1,2,0,1],[1,3,1,1],[0,3,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,1,1],[0,3,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,1,1],[0,3,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,1,1],[0,4,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,1,1],[0,3,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,1,1],[0,3,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,1,1],[0,3,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,1,1],[0,3,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,1,1],[0,4,3,1],[1,2,2,1]],[[1,2,0,1],[1,3,1,0],[2,3,3,2],[2,1,2,0]],[[1,2,0,1],[1,3,1,0],[2,4,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,1,0],[3,3,3,2],[1,1,2,0]],[[1,2,0,1],[1,3,1,0],[2,3,3,2],[0,2,3,0]],[[1,2,0,1],[1,3,1,0],[2,3,3,2],[0,3,2,0]],[[1,2,0,1],[1,3,1,0],[2,4,3,2],[0,2,2,0]],[[1,2,0,1],[1,3,1,0],[3,3,3,2],[0,2,2,0]],[[1,2,0,1],[1,3,1,0],[2,3,3,1],[2,1,2,1]],[[1,2,0,1],[1,3,1,0],[2,4,3,1],[1,1,2,1]],[[1,2,0,1],[1,3,1,0],[3,3,3,1],[1,1,2,1]],[[1,2,0,1],[1,3,1,0],[2,3,3,1],[0,2,2,2]],[[1,2,0,1],[1,3,1,0],[2,3,3,1],[0,2,3,1]],[[1,2,0,1],[1,3,1,0],[2,3,3,1],[0,3,2,1]],[[1,2,0,1],[1,3,1,0],[2,4,3,1],[0,2,2,1]],[[1,2,0,1],[1,3,1,0],[3,3,3,1],[0,2,2,1]],[[1,2,0,1],[1,3,1,0],[2,2,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,1,0],[2,2,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,1,0],[2,2,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,1,0],[3,2,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,1,0],[2,2,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,1,0],[2,2,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,1,0],[2,2,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,1,0],[2,2,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,1,0],[3,2,3,1],[1,2,2,1]],[[1,2,0,1],[1,3,1,0],[1,3,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,1,0],[1,3,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,1,0],[1,3,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,1,0],[1,4,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,1,0],[1,3,3,2],[0,2,2,2]],[[1,2,0,1],[1,3,1,0],[1,3,3,2],[0,2,3,1]],[[1,2,0,1],[1,3,1,0],[1,3,3,2],[0,3,2,1]],[[1,2,0,1],[1,3,1,0],[1,4,3,2],[0,2,2,1]],[[1,2,0,1],[1,3,1,0],[1,3,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,1,0],[1,3,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,1,0],[1,3,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,1,0],[1,3,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,1,0],[1,4,3,1],[1,2,2,1]],[[1,2,0,1],[1,3,1,0],[0,3,3,2],[1,2,2,2]],[[1,2,0,1],[1,3,1,0],[0,3,3,2],[1,2,3,1]],[[1,2,0,1],[1,3,1,0],[0,3,3,2],[1,3,2,1]],[[1,2,0,1],[1,3,1,0],[0,3,3,2],[2,2,2,1]],[[1,2,0,1],[1,3,1,0],[0,4,3,2],[1,2,2,1]],[[2,1,2,0],[2,3,3,2],[2,2,0,0],[0,2,2,1]],[[1,1,2,0],[3,3,3,2],[2,2,0,0],[0,2,2,1]],[[1,1,2,0],[2,4,3,2],[2,2,0,0],[0,2,2,1]],[[1,1,2,0],[2,3,3,2],[3,2,0,0],[0,2,2,1]],[[2,1,2,0],[2,3,3,2],[2,2,0,0],[1,1,2,1]],[[1,1,2,0],[3,3,3,2],[2,2,0,0],[1,1,2,1]],[[1,1,2,0],[2,4,3,2],[2,2,0,0],[1,1,2,1]],[[1,1,2,0],[2,3,3,2],[3,2,0,0],[1,1,2,1]],[[1,1,2,0],[2,3,3,2],[2,2,0,0],[2,1,2,1]],[[2,1,2,0],[2,3,3,2],[2,2,0,1],[0,2,2,0]],[[1,1,2,0],[3,3,3,2],[2,2,0,1],[0,2,2,0]],[[1,1,2,0],[2,4,3,2],[2,2,0,1],[0,2,2,0]],[[1,1,2,0],[2,3,3,2],[3,2,0,1],[0,2,2,0]],[[2,1,2,0],[2,3,3,2],[2,2,0,1],[1,1,2,0]],[[1,1,2,0],[3,3,3,2],[2,2,0,1],[1,1,2,0]],[[1,1,2,0],[2,4,3,2],[2,2,0,1],[1,1,2,0]],[[1,1,2,0],[2,3,3,2],[3,2,0,1],[1,1,2,0]],[[1,1,2,0],[2,3,3,2],[2,2,0,1],[2,1,2,0]],[[1,2,0,1],[1,3,0,2],[1,3,3,2],[1,0,2,2]],[[1,2,0,1],[1,3,0,2],[1,3,3,2],[1,0,3,1]],[[1,2,0,1],[1,3,0,2],[1,3,3,3],[1,0,2,1]],[[2,1,2,0],[2,3,3,2],[2,2,0,2],[0,1,1,1]],[[1,1,2,0],[3,3,3,2],[2,2,0,2],[0,1,1,1]],[[1,1,2,0],[2,4,3,2],[2,2,0,2],[0,1,1,1]],[[2,1,2,0],[2,3,3,2],[2,2,0,2],[0,1,2,0]],[[1,1,2,0],[3,3,3,2],[2,2,0,2],[0,1,2,0]],[[1,1,2,0],[2,4,3,2],[2,2,0,2],[0,1,2,0]],[[2,1,2,0],[2,3,3,2],[2,2,0,2],[0,2,0,1]],[[1,1,2,0],[3,3,3,2],[2,2,0,2],[0,2,0,1]],[[1,1,2,0],[2,4,3,2],[2,2,0,2],[0,2,0,1]],[[1,1,2,0],[2,3,3,2],[3,2,0,2],[0,2,0,1]],[[2,1,2,0],[2,3,3,2],[2,2,0,2],[0,2,1,0]],[[1,1,2,0],[3,3,3,2],[2,2,0,2],[0,2,1,0]],[[1,1,2,0],[2,4,3,2],[2,2,0,2],[0,2,1,0]],[[1,1,2,0],[2,3,3,2],[3,2,0,2],[0,2,1,0]],[[1,2,0,1],[1,3,0,2],[1,3,3,2],[0,2,3,0]],[[1,2,0,1],[1,3,0,2],[1,3,3,2],[0,3,2,0]],[[1,2,0,1],[1,3,0,2],[1,4,3,2],[0,2,2,0]],[[1,2,0,1],[1,3,0,2],[1,3,3,2],[0,1,2,2]],[[1,2,0,1],[1,3,0,2],[1,3,3,2],[0,1,3,1]],[[1,2,0,1],[1,3,0,2],[1,3,3,3],[0,1,2,1]],[[2,1,2,0],[2,3,3,2],[2,2,0,2],[1,0,1,1]],[[1,1,2,0],[3,3,3,2],[2,2,0,2],[1,0,1,1]],[[1,1,2,0],[2,4,3,2],[2,2,0,2],[1,0,1,1]],[[1,1,2,0],[2,3,3,2],[3,2,0,2],[1,0,1,1]],[[2,1,2,0],[2,3,3,2],[2,2,0,2],[1,0,2,0]],[[1,1,2,0],[3,3,3,2],[2,2,0,2],[1,0,2,0]],[[1,1,2,0],[2,4,3,2],[2,2,0,2],[1,0,2,0]],[[1,1,2,0],[2,3,3,2],[3,2,0,2],[1,0,2,0]],[[2,1,2,0],[2,3,3,2],[2,2,0,2],[1,1,0,1]],[[1,1,2,0],[3,3,3,2],[2,2,0,2],[1,1,0,1]],[[1,1,2,0],[2,4,3,2],[2,2,0,2],[1,1,0,1]],[[1,1,2,0],[2,3,3,2],[3,2,0,2],[1,1,0,1]],[[1,1,2,0],[2,3,3,2],[2,2,0,2],[2,1,0,1]],[[2,1,2,0],[2,3,3,2],[2,2,0,2],[1,1,1,0]],[[1,1,2,0],[3,3,3,2],[2,2,0,2],[1,1,1,0]],[[1,1,2,0],[2,4,3,2],[2,2,0,2],[1,1,1,0]],[[1,1,2,0],[2,3,3,2],[3,2,0,2],[1,1,1,0]],[[1,1,2,0],[2,3,3,2],[2,2,0,2],[2,1,1,0]],[[1,2,0,1],[1,3,0,2],[1,3,3,1],[0,2,2,2]],[[1,2,0,1],[1,3,0,2],[1,3,3,1],[0,2,3,1]],[[1,2,0,1],[1,3,0,2],[1,3,3,1],[0,3,2,1]],[[1,2,0,1],[1,3,0,2],[1,4,3,1],[0,2,2,1]],[[2,1,2,0],[2,3,3,2],[2,2,0,2],[1,2,0,0]],[[1,1,2,0],[3,3,3,2],[2,2,0,2],[1,2,0,0]],[[1,1,2,0],[2,4,3,2],[2,2,0,2],[1,2,0,0]],[[1,1,2,0],[2,3,3,2],[3,2,0,2],[1,2,0,0]],[[1,1,2,0],[2,3,3,2],[2,2,0,2],[2,2,0,0]],[[1,2,0,1],[1,3,0,2],[1,3,2,2],[0,2,2,2]],[[1,2,0,1],[1,3,0,2],[1,3,2,2],[0,2,3,1]],[[1,2,0,1],[1,3,0,2],[1,3,2,2],[0,3,2,1]],[[1,2,0,1],[1,3,0,2],[1,3,2,3],[0,2,2,1]],[[1,2,0,1],[1,3,0,2],[1,4,2,2],[0,2,2,1]],[[1,2,0,1],[1,3,0,2],[1,2,3,2],[0,2,2,2]],[[1,2,0,1],[1,3,0,2],[1,2,3,2],[0,2,3,1]],[[1,2,0,1],[1,3,0,2],[1,2,3,2],[0,3,2,1]],[[1,2,0,1],[1,3,0,2],[1,2,3,3],[0,2,2,1]],[[1,2,0,1],[1,3,0,2],[0,3,3,2],[1,2,3,0]],[[1,2,0,1],[1,3,0,2],[0,3,3,2],[1,3,2,0]],[[1,2,0,1],[1,3,0,2],[0,3,3,2],[2,2,2,0]],[[1,2,0,1],[1,3,0,2],[0,4,3,2],[1,2,2,0]],[[1,2,0,1],[1,3,0,2],[0,3,3,2],[1,1,2,2]],[[1,2,0,1],[1,3,0,2],[0,3,3,2],[1,1,3,1]],[[1,2,0,1],[1,3,0,2],[0,3,3,3],[1,1,2,1]],[[1,2,0,1],[1,3,0,2],[0,3,3,1],[1,2,2,2]],[[1,2,0,1],[1,3,0,2],[0,3,3,1],[1,2,3,1]],[[1,2,0,1],[1,3,0,2],[0,3,3,1],[1,3,2,1]],[[1,2,0,1],[1,3,0,2],[0,3,3,1],[2,2,2,1]],[[1,2,0,1],[1,3,0,2],[0,4,3,1],[1,2,2,1]],[[1,2,0,1],[1,3,0,2],[0,3,2,2],[1,2,2,2]],[[2,1,2,0],[2,3,3,2],[2,2,1,0],[0,1,2,1]],[[1,1,2,0],[3,3,3,2],[2,2,1,0],[0,1,2,1]],[[1,1,2,0],[2,4,3,2],[2,2,1,0],[0,1,2,1]],[[2,1,2,0],[2,3,3,2],[2,2,1,0],[0,2,1,1]],[[1,1,2,0],[3,3,3,2],[2,2,1,0],[0,2,1,1]],[[1,1,2,0],[2,4,3,2],[2,2,1,0],[0,2,1,1]],[[1,1,2,0],[2,3,3,2],[3,2,1,0],[0,2,1,1]],[[2,1,2,0],[2,3,3,2],[2,2,1,0],[1,0,2,1]],[[1,1,2,0],[3,3,3,2],[2,2,1,0],[1,0,2,1]],[[1,1,2,0],[2,4,3,2],[2,2,1,0],[1,0,2,1]],[[1,1,2,0],[2,3,3,2],[3,2,1,0],[1,0,2,1]],[[2,1,2,0],[2,3,3,2],[2,2,1,0],[1,1,1,1]],[[1,1,2,0],[3,3,3,2],[2,2,1,0],[1,1,1,1]],[[1,1,2,0],[2,4,3,2],[2,2,1,0],[1,1,1,1]],[[1,1,2,0],[2,3,3,2],[3,2,1,0],[1,1,1,1]],[[1,1,2,0],[2,3,3,2],[2,2,1,0],[2,1,1,1]],[[2,1,2,0],[2,3,3,2],[2,2,1,0],[1,2,0,1]],[[1,1,2,0],[3,3,3,2],[2,2,1,0],[1,2,0,1]],[[1,1,2,0],[2,4,3,2],[2,2,1,0],[1,2,0,1]],[[1,1,2,0],[2,3,3,2],[3,2,1,0],[1,2,0,1]],[[1,1,2,0],[2,3,3,2],[2,2,1,0],[2,2,0,1]],[[1,2,0,1],[1,3,0,2],[0,3,2,2],[1,2,3,1]],[[1,2,0,1],[1,3,0,2],[0,3,2,2],[1,3,2,1]],[[1,2,0,1],[1,3,0,2],[0,3,2,2],[2,2,2,1]],[[1,2,0,1],[1,3,0,2],[0,3,2,3],[1,2,2,1]],[[1,2,0,1],[1,3,0,2],[0,4,2,2],[1,2,2,1]],[[1,2,0,1],[1,3,0,2],[0,2,3,2],[1,2,2,2]],[[1,2,0,1],[1,3,0,2],[0,2,3,2],[1,2,3,1]],[[1,2,0,1],[1,3,0,2],[0,2,3,2],[1,3,2,1]],[[1,2,0,1],[1,3,0,2],[0,2,3,2],[2,2,2,1]],[[1,2,0,1],[1,3,0,2],[0,2,3,3],[1,2,2,1]],[[2,1,2,0],[2,3,3,2],[2,2,1,1],[0,1,1,1]],[[1,1,2,0],[3,3,3,2],[2,2,1,1],[0,1,1,1]],[[1,1,2,0],[2,4,3,2],[2,2,1,1],[0,1,1,1]],[[2,1,2,0],[2,3,3,2],[2,2,1,1],[0,1,2,0]],[[1,1,2,0],[3,3,3,2],[2,2,1,1],[0,1,2,0]],[[1,1,2,0],[2,4,3,2],[2,2,1,1],[0,1,2,0]],[[2,1,2,0],[2,3,3,2],[2,2,1,1],[0,2,0,1]],[[1,1,2,0],[3,3,3,2],[2,2,1,1],[0,2,0,1]],[[1,1,2,0],[2,4,3,2],[2,2,1,1],[0,2,0,1]],[[1,1,2,0],[2,3,3,2],[3,2,1,1],[0,2,0,1]],[[2,1,2,0],[2,3,3,2],[2,2,1,1],[0,2,1,0]],[[1,1,2,0],[3,3,3,2],[2,2,1,1],[0,2,1,0]],[[1,1,2,0],[2,4,3,2],[2,2,1,1],[0,2,1,0]],[[1,1,2,0],[2,3,3,2],[3,2,1,1],[0,2,1,0]],[[2,1,2,0],[2,3,3,2],[2,2,1,1],[1,0,1,1]],[[1,1,2,0],[3,3,3,2],[2,2,1,1],[1,0,1,1]],[[1,1,2,0],[2,4,3,2],[2,2,1,1],[1,0,1,1]],[[1,1,2,0],[2,3,3,2],[3,2,1,1],[1,0,1,1]],[[2,1,2,0],[2,3,3,2],[2,2,1,1],[1,0,2,0]],[[1,1,2,0],[3,3,3,2],[2,2,1,1],[1,0,2,0]],[[1,1,2,0],[2,4,3,2],[2,2,1,1],[1,0,2,0]],[[1,1,2,0],[2,3,3,2],[3,2,1,1],[1,0,2,0]],[[2,1,2,0],[2,3,3,2],[2,2,1,1],[1,1,0,1]],[[1,1,2,0],[3,3,3,2],[2,2,1,1],[1,1,0,1]],[[1,1,2,0],[2,4,3,2],[2,2,1,1],[1,1,0,1]],[[1,1,2,0],[2,3,3,2],[3,2,1,1],[1,1,0,1]],[[1,1,2,0],[2,3,3,2],[2,2,1,1],[2,1,0,1]],[[2,1,2,0],[2,3,3,2],[2,2,1,1],[1,1,1,0]],[[1,1,2,0],[3,3,3,2],[2,2,1,1],[1,1,1,0]],[[1,1,2,0],[2,4,3,2],[2,2,1,1],[1,1,1,0]],[[1,1,2,0],[2,3,3,2],[3,2,1,1],[1,1,1,0]],[[1,1,2,0],[2,3,3,2],[2,2,1,1],[2,1,1,0]],[[2,1,2,0],[2,3,3,2],[2,2,1,1],[1,2,0,0]],[[1,1,2,0],[3,3,3,2],[2,2,1,1],[1,2,0,0]],[[1,1,2,0],[2,4,3,2],[2,2,1,1],[1,2,0,0]],[[1,1,2,0],[2,3,3,2],[3,2,1,1],[1,2,0,0]],[[1,1,2,0],[2,3,3,2],[2,2,1,1],[2,2,0,0]],[[1,2,0,1],[1,3,0,1],[1,3,3,2],[0,2,2,2]],[[1,2,0,1],[1,3,0,1],[1,3,3,2],[0,2,3,1]],[[1,2,0,1],[1,3,0,1],[1,3,3,2],[0,3,2,1]],[[1,2,0,1],[1,3,0,1],[1,4,3,2],[0,2,2,1]],[[1,2,0,1],[1,3,0,1],[0,3,3,2],[1,2,2,2]],[[1,2,0,1],[1,3,0,1],[0,3,3,2],[1,2,3,1]],[[1,2,0,1],[1,3,0,1],[0,3,3,2],[1,3,2,1]],[[1,2,0,1],[1,3,0,1],[0,3,3,2],[2,2,2,1]],[[1,2,0,1],[1,3,0,1],[0,4,3,2],[1,2,2,1]],[[2,1,2,0],[2,3,3,2],[2,2,2,1],[0,2,0,0]],[[1,1,2,0],[3,3,3,2],[2,2,2,1],[0,2,0,0]],[[1,1,2,0],[2,4,3,2],[2,2,2,1],[0,2,0,0]],[[2,1,2,0],[2,3,3,2],[2,2,2,1],[1,1,0,0]],[[1,1,2,0],[3,3,3,2],[2,2,2,1],[1,1,0,0]],[[1,1,2,0],[2,4,3,2],[2,2,2,1],[1,1,0,0]],[[1,1,2,0],[2,3,3,2],[3,2,2,1],[1,1,0,0]],[[1,2,0,1],[1,2,3,2],[1,3,3,3],[1,0,0,1]],[[1,2,0,1],[1,2,3,3],[1,3,3,2],[1,0,0,1]],[[1,2,0,1],[1,2,4,2],[1,3,3,2],[1,0,0,1]],[[1,2,0,2],[1,2,3,2],[1,3,3,2],[1,0,0,1]],[[1,2,0,1],[1,2,3,2],[1,3,3,3],[0,1,0,1]],[[1,2,0,1],[1,2,3,3],[1,3,3,2],[0,1,0,1]],[[1,2,0,1],[1,2,4,2],[1,3,3,2],[0,1,0,1]],[[1,2,0,2],[1,2,3,2],[1,3,3,2],[0,1,0,1]],[[1,2,0,1],[1,2,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,0,1],[1,2,3,2],[1,4,3,1],[1,1,1,0]],[[1,2,0,1],[1,2,3,3],[1,3,3,1],[1,1,1,0]],[[1,2,0,1],[1,2,4,2],[1,3,3,1],[1,1,1,0]],[[1,2,0,2],[1,2,3,2],[1,3,3,1],[1,1,1,0]],[[1,2,0,1],[1,2,3,2],[1,3,4,1],[1,1,0,1]],[[1,2,0,1],[1,2,3,2],[1,4,3,1],[1,1,0,1]],[[1,2,0,1],[1,2,3,3],[1,3,3,1],[1,1,0,1]],[[1,2,0,1],[1,2,4,2],[1,3,3,1],[1,1,0,1]],[[1,2,0,2],[1,2,3,2],[1,3,3,1],[1,1,0,1]],[[1,2,0,1],[1,2,3,2],[1,3,3,1],[1,0,3,0]],[[1,2,0,1],[1,2,3,2],[1,3,4,1],[1,0,2,0]],[[1,2,0,1],[1,2,3,2],[1,4,3,1],[1,0,2,0]],[[1,2,0,1],[1,2,3,3],[1,3,3,1],[1,0,2,0]],[[1,2,0,1],[1,2,4,2],[1,3,3,1],[1,0,2,0]],[[1,2,0,2],[1,2,3,2],[1,3,3,1],[1,0,2,0]],[[1,2,0,1],[1,2,3,2],[1,3,4,1],[1,0,1,1]],[[1,2,0,1],[1,2,3,2],[1,4,3,1],[1,0,1,1]],[[1,2,0,1],[1,2,3,3],[1,3,3,1],[1,0,1,1]],[[1,2,0,1],[1,2,4,2],[1,3,3,1],[1,0,1,1]],[[1,2,0,2],[1,2,3,2],[1,3,3,1],[1,0,1,1]],[[1,2,0,1],[1,2,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,0,1],[1,2,3,2],[1,3,4,1],[0,2,1,0]],[[1,2,0,1],[1,2,3,2],[1,4,3,1],[0,2,1,0]],[[1,2,0,1],[1,2,3,3],[1,3,3,1],[0,2,1,0]],[[1,2,0,1],[1,2,4,2],[1,3,3,1],[0,2,1,0]],[[1,2,0,2],[1,2,3,2],[1,3,3,1],[0,2,1,0]],[[1,2,0,1],[1,2,3,2],[1,3,3,1],[0,3,0,1]],[[1,2,0,1],[1,2,3,2],[1,3,4,1],[0,2,0,1]],[[1,2,0,1],[1,2,3,2],[1,4,3,1],[0,2,0,1]],[[1,2,0,1],[1,2,3,3],[1,3,3,1],[0,2,0,1]],[[1,2,0,1],[1,2,4,2],[1,3,3,1],[0,2,0,1]],[[1,2,0,2],[1,2,3,2],[1,3,3,1],[0,2,0,1]],[[1,2,0,1],[1,2,3,2],[1,3,3,1],[0,1,3,0]],[[1,2,0,1],[1,2,3,2],[1,3,4,1],[0,1,2,0]],[[1,2,0,1],[1,2,3,2],[1,4,3,1],[0,1,2,0]],[[1,2,0,1],[1,2,3,3],[1,3,3,1],[0,1,2,0]],[[1,2,0,1],[1,2,4,2],[1,3,3,1],[0,1,2,0]],[[1,2,0,2],[1,2,3,2],[1,3,3,1],[0,1,2,0]],[[1,2,0,1],[1,2,3,2],[1,3,4,1],[0,1,1,1]],[[1,2,0,1],[1,2,3,2],[1,4,3,1],[0,1,1,1]],[[1,2,0,1],[1,2,3,3],[1,3,3,1],[0,1,1,1]],[[1,2,0,1],[1,2,4,2],[1,3,3,1],[0,1,1,1]],[[1,2,0,2],[1,2,3,2],[1,3,3,1],[0,1,1,1]],[[1,2,0,1],[1,2,3,2],[1,3,4,1],[0,0,2,1]],[[1,2,0,1],[1,2,3,3],[1,3,3,1],[0,0,2,1]],[[1,2,0,1],[1,2,4,2],[1,3,3,1],[0,0,2,1]],[[1,2,0,2],[1,2,3,2],[1,3,3,1],[0,0,2,1]],[[1,2,0,1],[1,2,3,2],[1,3,4,0],[1,1,1,1]],[[1,2,0,1],[1,2,3,2],[1,4,3,0],[1,1,1,1]],[[1,2,0,1],[1,2,3,3],[1,3,3,0],[1,1,1,1]],[[1,2,0,1],[1,2,4,2],[1,3,3,0],[1,1,1,1]],[[1,2,0,2],[1,2,3,2],[1,3,3,0],[1,1,1,1]],[[1,2,0,1],[1,2,3,2],[1,3,3,0],[1,0,2,2]],[[1,2,0,1],[1,2,3,2],[1,3,3,0],[1,0,3,1]],[[1,2,0,1],[1,2,3,2],[1,3,4,0],[1,0,2,1]],[[1,2,0,1],[1,2,3,2],[1,4,3,0],[1,0,2,1]],[[1,2,0,1],[1,2,3,3],[1,3,3,0],[1,0,2,1]],[[1,2,0,1],[1,2,4,2],[1,3,3,0],[1,0,2,1]],[[1,2,0,2],[1,2,3,2],[1,3,3,0],[1,0,2,1]],[[1,2,0,1],[1,2,3,2],[1,3,3,0],[0,3,1,1]],[[1,2,0,1],[1,2,3,2],[1,3,4,0],[0,2,1,1]],[[1,2,0,1],[1,2,3,2],[1,4,3,0],[0,2,1,1]],[[1,2,0,1],[1,2,3,3],[1,3,3,0],[0,2,1,1]],[[1,2,0,1],[1,2,4,2],[1,3,3,0],[0,2,1,1]],[[1,2,0,2],[1,2,3,2],[1,3,3,0],[0,2,1,1]],[[1,2,0,1],[1,2,3,2],[1,3,3,0],[0,1,2,2]],[[1,2,0,1],[1,2,3,2],[1,3,3,0],[0,1,3,1]],[[1,2,0,1],[1,2,3,2],[1,3,4,0],[0,1,2,1]],[[1,2,0,1],[1,2,3,2],[1,4,3,0],[0,1,2,1]],[[1,2,0,1],[1,2,3,3],[1,3,3,0],[0,1,2,1]],[[1,2,0,1],[1,2,4,2],[1,3,3,0],[0,1,2,1]],[[1,2,0,2],[1,2,3,2],[1,3,3,0],[0,1,2,1]],[[1,2,0,1],[1,2,3,2],[1,3,2,3],[1,1,1,0]],[[1,2,0,1],[1,2,3,3],[1,3,2,2],[1,1,1,0]],[[1,2,0,1],[1,2,4,2],[1,3,2,2],[1,1,1,0]],[[1,2,0,2],[1,2,3,2],[1,3,2,2],[1,1,1,0]],[[1,2,0,1],[1,2,3,2],[1,3,2,2],[1,1,0,2]],[[1,2,0,1],[1,2,3,2],[1,3,2,3],[1,1,0,1]],[[1,2,0,1],[1,2,3,3],[1,3,2,2],[1,1,0,1]],[[1,2,0,1],[1,2,4,2],[1,3,2,2],[1,1,0,1]],[[1,2,0,2],[1,2,3,2],[1,3,2,2],[1,1,0,1]],[[1,2,0,1],[1,2,3,2],[1,3,2,3],[1,0,2,0]],[[1,2,0,1],[1,2,3,3],[1,3,2,2],[1,0,2,0]],[[1,2,0,1],[1,2,4,2],[1,3,2,2],[1,0,2,0]],[[1,2,0,2],[1,2,3,2],[1,3,2,2],[1,0,2,0]],[[1,2,0,1],[1,2,3,2],[1,3,2,2],[1,0,1,2]],[[1,2,0,1],[1,2,3,2],[1,3,2,3],[1,0,1,1]],[[1,2,0,1],[1,2,3,3],[1,3,2,2],[1,0,1,1]],[[1,2,0,1],[1,2,4,2],[1,3,2,2],[1,0,1,1]],[[1,2,0,2],[1,2,3,2],[1,3,2,2],[1,0,1,1]],[[1,2,0,1],[1,2,3,2],[1,3,2,3],[0,2,1,0]],[[1,2,0,1],[1,2,3,3],[1,3,2,2],[0,2,1,0]],[[1,2,0,1],[1,2,4,2],[1,3,2,2],[0,2,1,0]],[[1,2,0,2],[1,2,3,2],[1,3,2,2],[0,2,1,0]],[[1,2,0,1],[1,2,3,2],[1,3,2,2],[0,2,0,2]],[[1,2,0,1],[1,2,3,2],[1,3,2,3],[0,2,0,1]],[[1,2,0,1],[1,2,3,3],[1,3,2,2],[0,2,0,1]],[[1,2,0,1],[1,2,4,2],[1,3,2,2],[0,2,0,1]],[[1,2,0,2],[1,2,3,2],[1,3,2,2],[0,2,0,1]],[[1,2,0,1],[1,2,3,2],[1,3,2,3],[0,1,2,0]],[[1,2,0,1],[1,2,3,3],[1,3,2,2],[0,1,2,0]],[[1,2,0,1],[1,2,4,2],[1,3,2,2],[0,1,2,0]],[[1,2,0,2],[1,2,3,2],[1,3,2,2],[0,1,2,0]],[[1,2,0,1],[1,2,3,2],[1,3,2,2],[0,1,1,2]],[[1,2,0,1],[1,2,3,2],[1,3,2,3],[0,1,1,1]],[[1,2,0,1],[1,2,3,3],[1,3,2,2],[0,1,1,1]],[[1,2,0,1],[1,2,4,2],[1,3,2,2],[0,1,1,1]],[[1,2,0,2],[1,2,3,2],[1,3,2,2],[0,1,1,1]],[[1,2,0,1],[1,2,3,2],[1,3,2,2],[0,0,2,2]],[[1,2,0,1],[1,2,3,2],[1,3,2,3],[0,0,2,1]],[[1,2,0,1],[1,2,3,3],[1,3,2,2],[0,0,2,1]],[[1,2,0,1],[1,2,4,2],[1,3,2,2],[0,0,2,1]],[[1,2,0,2],[1,2,3,2],[1,3,2,2],[0,0,2,1]],[[1,2,0,1],[1,2,3,2],[1,3,2,1],[0,2,3,0]],[[1,2,0,1],[1,2,3,2],[1,3,2,1],[0,3,2,0]],[[1,2,0,1],[1,2,3,2],[1,4,2,1],[0,2,2,0]],[[1,2,0,1],[1,2,3,2],[1,3,2,0],[0,2,2,2]],[[1,2,0,1],[1,2,3,2],[1,3,2,0],[0,2,3,1]],[[1,2,0,1],[1,2,3,2],[1,3,2,0],[0,3,2,1]],[[1,2,0,1],[1,2,3,2],[1,4,2,0],[0,2,2,1]],[[1,2,0,1],[1,2,3,2],[1,3,1,2],[1,0,2,2]],[[1,2,0,1],[1,2,3,2],[1,3,1,2],[1,0,3,1]],[[1,2,0,1],[1,2,3,2],[1,3,1,3],[1,0,2,1]],[[1,2,0,1],[1,2,3,3],[1,3,1,2],[1,0,2,1]],[[1,2,0,1],[1,2,4,2],[1,3,1,2],[1,0,2,1]],[[1,2,0,2],[1,2,3,2],[1,3,1,2],[1,0,2,1]],[[1,2,0,1],[1,2,3,2],[1,3,1,2],[0,1,2,2]],[[1,2,0,1],[1,2,3,2],[1,3,1,2],[0,1,3,1]],[[1,2,0,1],[1,2,3,2],[1,3,1,3],[0,1,2,1]],[[1,2,0,1],[1,2,3,3],[1,3,1,2],[0,1,2,1]],[[1,2,0,1],[1,2,4,2],[1,3,1,2],[0,1,2,1]],[[1,2,0,2],[1,2,3,2],[1,3,1,2],[0,1,2,1]],[[1,2,0,1],[1,2,3,2],[1,3,0,2],[0,2,2,2]],[[1,2,0,1],[1,2,3,2],[1,3,0,2],[0,2,3,1]],[[1,2,0,1],[1,2,3,2],[1,3,0,2],[0,3,2,1]],[[1,2,0,1],[1,2,3,2],[1,3,0,3],[0,2,2,1]],[[1,2,0,1],[1,2,3,2],[1,4,0,2],[0,2,2,1]],[[1,2,0,1],[1,2,3,3],[1,3,0,2],[0,2,2,1]],[[1,2,0,1],[1,2,4,2],[1,3,0,2],[0,2,2,1]],[[1,2,0,2],[1,2,3,2],[1,3,0,2],[0,2,2,1]],[[1,2,0,1],[1,2,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,0,1],[1,2,3,2],[1,2,3,1],[0,3,2,0]],[[1,2,0,1],[1,2,3,2],[1,2,4,1],[0,2,2,0]],[[1,2,0,1],[1,2,3,3],[1,2,3,1],[0,2,2,0]],[[1,2,0,1],[1,2,4,2],[1,2,3,1],[0,2,2,0]],[[1,2,0,2],[1,2,3,2],[1,2,3,1],[0,2,2,0]],[[1,2,0,1],[1,2,3,2],[1,2,4,1],[0,2,1,1]],[[1,2,0,1],[1,2,3,3],[1,2,3,1],[0,2,1,1]],[[1,2,0,1],[1,2,4,2],[1,2,3,1],[0,2,1,1]],[[1,2,0,2],[1,2,3,2],[1,2,3,1],[0,2,1,1]],[[1,2,0,1],[1,2,3,2],[1,2,3,0],[0,2,2,2]],[[1,2,0,1],[1,2,3,2],[1,2,3,0],[0,2,3,1]],[[1,2,0,1],[1,2,3,2],[1,2,3,0],[0,3,2,1]],[[1,2,0,1],[1,2,3,2],[1,2,4,0],[0,2,2,1]],[[1,2,0,1],[1,2,3,3],[1,2,3,0],[0,2,2,1]],[[1,2,0,1],[1,2,4,2],[1,2,3,0],[0,2,2,1]],[[1,2,0,2],[1,2,3,2],[1,2,3,0],[0,2,2,1]],[[1,2,0,1],[1,2,3,2],[1,2,2,3],[0,2,2,0]],[[1,2,0,1],[1,2,3,3],[1,2,2,2],[0,2,2,0]],[[1,2,0,1],[1,2,4,2],[1,2,2,2],[0,2,2,0]],[[1,2,0,2],[1,2,3,2],[1,2,2,2],[0,2,2,0]],[[1,2,0,1],[1,2,3,2],[1,2,2,2],[0,2,1,2]],[[1,2,0,1],[1,2,3,2],[1,2,2,3],[0,2,1,1]],[[1,2,0,1],[1,2,3,3],[1,2,2,2],[0,2,1,1]],[[1,2,0,1],[1,2,4,2],[1,2,2,2],[0,2,1,1]],[[1,2,0,2],[1,2,3,2],[1,2,2,2],[0,2,1,1]],[[1,2,0,1],[1,2,3,2],[1,2,1,2],[0,2,2,2]],[[1,2,0,1],[1,2,3,2],[1,2,1,2],[0,2,3,1]],[[1,2,0,1],[1,2,3,2],[1,2,1,2],[0,3,2,1]],[[1,2,0,1],[1,2,3,2],[1,2,1,3],[0,2,2,1]],[[1,2,0,1],[1,2,3,3],[1,2,1,2],[0,2,2,1]],[[1,2,0,1],[1,2,4,2],[1,2,1,2],[0,2,2,1]],[[1,2,0,2],[1,2,3,2],[1,2,1,2],[0,2,2,1]],[[1,2,0,1],[1,2,3,2],[0,3,3,3],[1,1,0,1]],[[1,2,0,1],[1,2,3,3],[0,3,3,2],[1,1,0,1]],[[1,2,0,1],[1,2,4,2],[0,3,3,2],[1,1,0,1]],[[1,2,0,2],[1,2,3,2],[0,3,3,2],[1,1,0,1]],[[1,2,0,1],[1,2,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,0,1],[1,2,3,2],[0,3,3,1],[2,2,1,0]],[[1,2,0,1],[1,2,3,2],[0,3,4,1],[1,2,1,0]],[[1,2,0,1],[1,2,3,2],[0,4,3,1],[1,2,1,0]],[[1,2,0,1],[1,2,3,3],[0,3,3,1],[1,2,1,0]],[[1,2,0,1],[1,2,4,2],[0,3,3,1],[1,2,1,0]],[[1,2,0,2],[1,2,3,2],[0,3,3,1],[1,2,1,0]],[[1,2,0,1],[1,2,3,2],[0,3,3,1],[1,3,0,1]],[[1,2,0,1],[1,2,3,2],[0,3,3,1],[2,2,0,1]],[[1,2,0,1],[1,2,3,2],[0,3,4,1],[1,2,0,1]],[[1,2,0,1],[1,2,3,2],[0,4,3,1],[1,2,0,1]],[[1,2,0,1],[1,2,3,3],[0,3,3,1],[1,2,0,1]],[[1,2,0,1],[1,2,4,2],[0,3,3,1],[1,2,0,1]],[[1,2,0,2],[1,2,3,2],[0,3,3,1],[1,2,0,1]],[[1,2,0,1],[1,2,3,2],[0,3,3,1],[1,1,3,0]],[[1,2,0,1],[1,2,3,2],[0,3,4,1],[1,1,2,0]],[[1,2,0,1],[1,2,3,2],[0,4,3,1],[1,1,2,0]],[[1,2,0,1],[1,2,3,3],[0,3,3,1],[1,1,2,0]],[[1,2,0,1],[1,2,4,2],[0,3,3,1],[1,1,2,0]],[[1,2,0,2],[1,2,3,2],[0,3,3,1],[1,1,2,0]],[[1,2,0,1],[1,2,3,2],[0,3,4,1],[1,1,1,1]],[[1,2,0,1],[1,2,3,2],[0,4,3,1],[1,1,1,1]],[[1,2,0,1],[1,2,3,3],[0,3,3,1],[1,1,1,1]],[[1,2,0,1],[1,2,4,2],[0,3,3,1],[1,1,1,1]],[[1,2,0,2],[1,2,3,2],[0,3,3,1],[1,1,1,1]],[[1,2,0,1],[1,2,3,2],[0,3,4,1],[1,0,2,1]],[[1,2,0,1],[1,2,3,3],[0,3,3,1],[1,0,2,1]],[[1,2,0,1],[1,2,4,2],[0,3,3,1],[1,0,2,1]],[[1,2,0,2],[1,2,3,2],[0,3,3,1],[1,0,2,1]],[[1,2,0,1],[1,2,3,2],[0,3,3,0],[1,3,1,1]],[[1,2,0,1],[1,2,3,2],[0,3,3,0],[2,2,1,1]],[[1,2,0,1],[1,2,3,2],[0,3,4,0],[1,2,1,1]],[[1,2,0,1],[1,2,3,2],[0,4,3,0],[1,2,1,1]],[[1,2,0,1],[1,2,3,3],[0,3,3,0],[1,2,1,1]],[[1,2,0,1],[1,2,4,2],[0,3,3,0],[1,2,1,1]],[[1,2,0,2],[1,2,3,2],[0,3,3,0],[1,2,1,1]],[[1,2,0,1],[1,2,3,2],[0,3,3,0],[1,1,2,2]],[[1,2,0,1],[1,2,3,2],[0,3,3,0],[1,1,3,1]],[[1,2,0,1],[1,2,3,2],[0,3,4,0],[1,1,2,1]],[[1,2,0,1],[1,2,3,2],[0,4,3,0],[1,1,2,1]],[[1,2,0,1],[1,2,3,3],[0,3,3,0],[1,1,2,1]],[[1,2,0,1],[1,2,4,2],[0,3,3,0],[1,1,2,1]],[[1,2,0,2],[1,2,3,2],[0,3,3,0],[1,1,2,1]],[[1,2,0,1],[1,2,3,2],[0,3,2,3],[1,2,1,0]],[[1,2,0,1],[1,2,3,3],[0,3,2,2],[1,2,1,0]],[[1,2,0,1],[1,2,4,2],[0,3,2,2],[1,2,1,0]],[[1,2,0,2],[1,2,3,2],[0,3,2,2],[1,2,1,0]],[[1,2,0,1],[1,2,3,2],[0,3,2,2],[1,2,0,2]],[[1,2,0,1],[1,2,3,2],[0,3,2,3],[1,2,0,1]],[[1,2,0,1],[1,2,3,3],[0,3,2,2],[1,2,0,1]],[[1,2,0,1],[1,2,4,2],[0,3,2,2],[1,2,0,1]],[[1,2,0,2],[1,2,3,2],[0,3,2,2],[1,2,0,1]],[[1,2,0,1],[1,2,3,2],[0,3,2,3],[1,1,2,0]],[[1,2,0,1],[1,2,3,3],[0,3,2,2],[1,1,2,0]],[[1,2,0,1],[1,2,4,2],[0,3,2,2],[1,1,2,0]],[[1,2,0,2],[1,2,3,2],[0,3,2,2],[1,1,2,0]],[[1,2,0,1],[1,2,3,2],[0,3,2,2],[1,1,1,2]],[[1,2,0,1],[1,2,3,2],[0,3,2,3],[1,1,1,1]],[[1,2,0,1],[1,2,3,3],[0,3,2,2],[1,1,1,1]],[[1,2,0,1],[1,2,4,2],[0,3,2,2],[1,1,1,1]],[[1,2,0,2],[1,2,3,2],[0,3,2,2],[1,1,1,1]],[[1,2,0,1],[1,2,3,2],[0,3,2,2],[1,0,2,2]],[[1,2,0,1],[1,2,3,2],[0,3,2,3],[1,0,2,1]],[[1,2,0,1],[1,2,3,3],[0,3,2,2],[1,0,2,1]],[[1,2,0,1],[1,2,4,2],[0,3,2,2],[1,0,2,1]],[[1,2,0,2],[1,2,3,2],[0,3,2,2],[1,0,2,1]],[[1,2,0,1],[1,2,3,2],[0,3,2,1],[1,2,3,0]],[[1,2,0,1],[1,2,3,2],[0,3,2,1],[1,3,2,0]],[[1,2,0,1],[1,2,3,2],[0,3,2,1],[2,2,2,0]],[[1,2,0,1],[1,2,3,2],[0,4,2,1],[1,2,2,0]],[[1,2,0,1],[1,2,3,2],[0,3,2,0],[1,2,2,2]],[[1,2,0,1],[1,2,3,2],[0,3,2,0],[1,2,3,1]],[[1,2,0,1],[1,2,3,2],[0,3,2,0],[1,3,2,1]],[[1,2,0,1],[1,2,3,2],[0,3,2,0],[2,2,2,1]],[[1,2,0,1],[1,2,3,2],[0,4,2,0],[1,2,2,1]],[[1,2,0,1],[1,2,3,2],[0,3,1,2],[1,1,2,2]],[[1,2,0,1],[1,2,3,2],[0,3,1,2],[1,1,3,1]],[[1,2,0,1],[1,2,3,2],[0,3,1,3],[1,1,2,1]],[[1,2,0,1],[1,2,3,3],[0,3,1,2],[1,1,2,1]],[[1,2,0,1],[1,2,4,2],[0,3,1,2],[1,1,2,1]],[[1,2,0,2],[1,2,3,2],[0,3,1,2],[1,1,2,1]],[[1,2,0,1],[1,2,3,2],[0,3,0,2],[1,2,2,2]],[[1,2,0,1],[1,2,3,2],[0,3,0,2],[1,2,3,1]],[[1,2,0,1],[1,2,3,2],[0,3,0,2],[1,3,2,1]],[[1,2,0,1],[1,2,3,2],[0,3,0,2],[2,2,2,1]],[[1,2,0,1],[1,2,3,2],[0,3,0,3],[1,2,2,1]],[[1,2,0,1],[1,2,3,2],[0,4,0,2],[1,2,2,1]],[[1,2,0,1],[1,2,3,3],[0,3,0,2],[1,2,2,1]],[[1,2,0,1],[1,2,4,2],[0,3,0,2],[1,2,2,1]],[[1,2,0,2],[1,2,3,2],[0,3,0,2],[1,2,2,1]],[[1,2,0,1],[1,2,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,0,1],[1,2,3,2],[0,2,3,1],[1,3,2,0]],[[1,2,0,1],[1,2,3,2],[0,2,3,1],[2,2,2,0]],[[1,2,0,1],[1,2,3,2],[0,2,4,1],[1,2,2,0]],[[1,2,0,1],[1,2,3,3],[0,2,3,1],[1,2,2,0]],[[1,2,0,1],[1,2,4,2],[0,2,3,1],[1,2,2,0]],[[1,2,0,2],[1,2,3,2],[0,2,3,1],[1,2,2,0]],[[1,2,0,1],[1,2,3,2],[0,2,4,1],[1,2,1,1]],[[1,2,0,1],[1,2,3,3],[0,2,3,1],[1,2,1,1]],[[1,2,0,1],[1,2,4,2],[0,2,3,1],[1,2,1,1]],[[1,2,0,2],[1,2,3,2],[0,2,3,1],[1,2,1,1]],[[1,2,0,1],[1,2,3,2],[0,2,3,0],[1,2,2,2]],[[1,2,0,1],[1,2,3,2],[0,2,3,0],[1,2,3,1]],[[1,2,0,1],[1,2,3,2],[0,2,3,0],[1,3,2,1]],[[1,2,0,1],[1,2,3,2],[0,2,3,0],[2,2,2,1]],[[1,2,0,1],[1,2,3,2],[0,2,4,0],[1,2,2,1]],[[1,2,0,1],[1,2,3,3],[0,2,3,0],[1,2,2,1]],[[1,2,0,1],[1,2,4,2],[0,2,3,0],[1,2,2,1]],[[1,2,0,2],[1,2,3,2],[0,2,3,0],[1,2,2,1]],[[1,2,0,1],[1,2,3,2],[0,2,2,3],[1,2,2,0]],[[1,2,0,1],[1,2,3,3],[0,2,2,2],[1,2,2,0]],[[1,2,0,1],[1,2,4,2],[0,2,2,2],[1,2,2,0]],[[1,2,0,2],[1,2,3,2],[0,2,2,2],[1,2,2,0]],[[1,2,0,1],[1,2,3,2],[0,2,2,2],[1,2,1,2]],[[1,2,0,1],[1,2,3,2],[0,2,2,3],[1,2,1,1]],[[1,2,0,1],[1,2,3,3],[0,2,2,2],[1,2,1,1]],[[1,2,0,1],[1,2,4,2],[0,2,2,2],[1,2,1,1]],[[1,2,0,2],[1,2,3,2],[0,2,2,2],[1,2,1,1]],[[1,2,0,1],[1,2,3,2],[0,2,1,2],[1,2,2,2]],[[1,2,0,1],[1,2,3,2],[0,2,1,2],[1,2,3,1]],[[1,2,0,1],[1,2,3,2],[0,2,1,2],[1,3,2,1]],[[1,2,0,1],[1,2,3,2],[0,2,1,2],[2,2,2,1]],[[1,2,0,1],[1,2,3,2],[0,2,1,3],[1,2,2,1]],[[1,2,0,1],[1,2,3,3],[0,2,1,2],[1,2,2,1]],[[1,2,0,1],[1,2,4,2],[0,2,1,2],[1,2,2,1]],[[1,2,0,2],[1,2,3,2],[0,2,1,2],[1,2,2,1]],[[2,1,2,0],[2,3,3,2],[2,3,0,0],[0,2,1,1]],[[1,1,2,0],[3,3,3,2],[2,3,0,0],[0,2,1,1]],[[1,1,2,0],[2,4,3,2],[2,3,0,0],[0,2,1,1]],[[1,1,2,0],[2,3,3,2],[3,3,0,0],[0,2,1,1]],[[2,1,2,0],[2,3,3,2],[2,3,0,0],[1,1,1,1]],[[1,1,2,0],[3,3,3,2],[2,3,0,0],[1,1,1,1]],[[1,1,2,0],[2,4,3,2],[2,3,0,0],[1,1,1,1]],[[1,1,2,0],[2,3,3,2],[3,3,0,0],[1,1,1,1]],[[1,1,2,0],[2,3,3,2],[2,3,0,0],[2,1,1,1]],[[2,1,2,0],[2,3,3,2],[2,3,0,0],[1,2,0,1]],[[1,1,2,0],[3,3,3,2],[2,3,0,0],[1,2,0,1]],[[1,1,2,0],[2,4,3,2],[2,3,0,0],[1,2,0,1]],[[1,1,2,0],[2,3,3,2],[3,3,0,0],[1,2,0,1]],[[1,1,2,0],[2,3,3,2],[2,3,0,0],[2,2,0,1]],[[2,1,2,0],[2,3,3,2],[2,3,0,1],[0,2,0,1]],[[1,1,2,0],[3,3,3,2],[2,3,0,1],[0,2,0,1]],[[1,1,2,0],[2,4,3,2],[2,3,0,1],[0,2,0,1]],[[1,1,2,0],[2,3,3,2],[3,3,0,1],[0,2,0,1]],[[2,1,2,0],[2,3,3,2],[2,3,0,1],[0,2,1,0]],[[1,1,2,0],[3,3,3,2],[2,3,0,1],[0,2,1,0]],[[1,1,2,0],[2,4,3,2],[2,3,0,1],[0,2,1,0]],[[1,1,2,0],[2,3,3,2],[3,3,0,1],[0,2,1,0]],[[2,1,2,0],[2,3,3,2],[2,3,0,1],[1,1,0,1]],[[1,1,2,0],[3,3,3,2],[2,3,0,1],[1,1,0,1]],[[1,1,2,0],[2,4,3,2],[2,3,0,1],[1,1,0,1]],[[1,1,2,0],[2,3,3,2],[3,3,0,1],[1,1,0,1]],[[1,1,2,0],[2,3,3,2],[2,3,0,1],[2,1,0,1]],[[2,1,2,0],[2,3,3,2],[2,3,0,1],[1,1,1,0]],[[1,1,2,0],[3,3,3,2],[2,3,0,1],[1,1,1,0]],[[1,1,2,0],[2,4,3,2],[2,3,0,1],[1,1,1,0]],[[1,1,2,0],[2,3,3,2],[3,3,0,1],[1,1,1,0]],[[1,1,2,0],[2,3,3,2],[2,3,0,1],[2,1,1,0]],[[2,1,2,0],[2,3,3,2],[2,3,0,1],[1,2,0,0]],[[1,1,2,0],[3,3,3,2],[2,3,0,1],[1,2,0,0]],[[1,1,2,0],[2,4,3,2],[2,3,0,1],[1,2,0,0]],[[1,1,2,0],[2,3,3,2],[3,3,0,1],[1,2,0,0]],[[1,1,2,0],[2,3,3,2],[2,3,0,1],[2,2,0,0]],[[2,1,2,0],[2,3,3,2],[2,3,0,2],[1,0,0,1]],[[1,1,2,0],[3,3,3,2],[2,3,0,2],[1,0,0,1]],[[1,1,2,0],[2,4,3,2],[2,3,0,2],[1,0,0,1]],[[1,1,2,0],[2,3,3,2],[3,3,0,2],[1,0,0,1]],[[2,1,2,0],[2,3,3,2],[2,3,0,2],[1,0,1,0]],[[1,1,2,0],[3,3,3,2],[2,3,0,2],[1,0,1,0]],[[1,1,2,0],[2,4,3,2],[2,3,0,2],[1,0,1,0]],[[1,1,2,0],[2,3,3,2],[3,3,0,2],[1,0,1,0]],[[1,2,0,1],[1,2,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,0,1],[1,2,3,1],[1,3,4,2],[1,1,1,0]],[[1,2,0,1],[1,2,3,1],[1,4,3,2],[1,1,1,0]],[[1,2,0,1],[1,2,4,1],[1,3,3,2],[1,1,1,0]],[[1,2,0,1],[1,2,3,1],[1,3,3,2],[1,1,0,2]],[[1,2,0,1],[1,2,3,1],[1,3,3,3],[1,1,0,1]],[[1,2,0,1],[1,2,3,1],[1,3,4,2],[1,1,0,1]],[[1,2,0,1],[1,2,3,1],[1,4,3,2],[1,1,0,1]],[[1,2,0,1],[1,2,4,1],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[1,2,3,1],[1,3,3,2],[1,0,3,0]],[[1,2,0,1],[1,2,3,1],[1,3,3,3],[1,0,2,0]],[[1,2,0,1],[1,2,3,1],[1,3,4,2],[1,0,2,0]],[[1,2,0,1],[1,2,3,1],[1,4,3,2],[1,0,2,0]],[[1,2,0,1],[1,2,4,1],[1,3,3,2],[1,0,2,0]],[[1,2,0,1],[1,2,3,1],[1,3,3,2],[1,0,1,2]],[[1,2,0,1],[1,2,3,1],[1,3,3,3],[1,0,1,1]],[[1,2,0,1],[1,2,3,1],[1,3,4,2],[1,0,1,1]],[[1,2,0,1],[1,2,3,1],[1,4,3,2],[1,0,1,1]],[[1,2,0,1],[1,2,4,1],[1,3,3,2],[1,0,1,1]],[[1,2,0,1],[1,2,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,0,1],[1,2,3,1],[1,3,3,3],[0,2,1,0]],[[1,2,0,1],[1,2,3,1],[1,3,4,2],[0,2,1,0]],[[1,2,0,1],[1,2,3,1],[1,4,3,2],[0,2,1,0]],[[1,2,0,1],[1,2,4,1],[1,3,3,2],[0,2,1,0]],[[1,2,0,1],[1,2,3,1],[1,3,3,2],[0,2,0,2]],[[1,2,0,1],[1,2,3,1],[1,3,3,2],[0,3,0,1]],[[1,2,0,1],[1,2,3,1],[1,3,3,3],[0,2,0,1]],[[1,2,0,1],[1,2,3,1],[1,3,4,2],[0,2,0,1]],[[1,2,0,1],[1,2,3,1],[1,4,3,2],[0,2,0,1]],[[1,2,0,1],[1,2,4,1],[1,3,3,2],[0,2,0,1]],[[1,2,0,1],[1,2,3,1],[1,3,3,2],[0,1,3,0]],[[1,2,0,1],[1,2,3,1],[1,3,3,3],[0,1,2,0]],[[1,2,0,1],[1,2,3,1],[1,3,4,2],[0,1,2,0]],[[1,2,0,1],[1,2,3,1],[1,4,3,2],[0,1,2,0]],[[1,2,0,1],[1,2,4,1],[1,3,3,2],[0,1,2,0]],[[1,2,0,1],[1,2,3,1],[1,3,3,2],[0,1,1,2]],[[1,2,0,1],[1,2,3,1],[1,3,3,3],[0,1,1,1]],[[1,2,0,1],[1,2,3,1],[1,3,4,2],[0,1,1,1]],[[1,2,0,1],[1,2,3,1],[1,4,3,2],[0,1,1,1]],[[1,2,0,1],[1,2,4,1],[1,3,3,2],[0,1,1,1]],[[1,2,0,1],[1,2,3,1],[1,3,3,2],[0,0,2,2]],[[1,2,0,1],[1,2,3,1],[1,3,3,3],[0,0,2,1]],[[1,2,0,1],[1,2,3,1],[1,3,4,2],[0,0,2,1]],[[1,2,0,1],[1,2,4,1],[1,3,3,2],[0,0,2,1]],[[1,2,0,1],[1,2,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,0,1],[1,2,3,1],[1,4,3,1],[1,1,1,1]],[[1,2,0,1],[1,2,4,1],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[1,2,3,1],[1,3,3,1],[1,0,2,2]],[[1,2,0,1],[1,2,3,1],[1,3,3,1],[1,0,3,1]],[[1,2,0,1],[1,2,3,1],[1,3,4,1],[1,0,2,1]],[[1,2,0,1],[1,2,3,1],[1,4,3,1],[1,0,2,1]],[[1,2,0,1],[1,2,4,1],[1,3,3,1],[1,0,2,1]],[[1,2,0,1],[1,2,3,1],[1,3,3,1],[0,3,1,1]],[[2,1,2,0],[2,3,3,2],[2,3,1,0],[1,0,1,1]],[[1,1,2,0],[3,3,3,2],[2,3,1,0],[1,0,1,1]],[[1,1,2,0],[2,4,3,2],[2,3,1,0],[1,0,1,1]],[[1,1,2,0],[2,3,3,2],[3,3,1,0],[1,0,1,1]],[[1,2,0,1],[1,2,3,1],[1,3,4,1],[0,2,1,1]],[[1,2,0,1],[1,2,3,1],[1,4,3,1],[0,2,1,1]],[[1,2,0,1],[1,2,4,1],[1,3,3,1],[0,2,1,1]],[[1,2,0,1],[1,2,3,1],[1,3,3,1],[0,1,2,2]],[[1,2,0,1],[1,2,3,1],[1,3,3,1],[0,1,3,1]],[[1,2,0,1],[1,2,3,1],[1,3,4,1],[0,1,2,1]],[[1,2,0,1],[1,2,3,1],[1,4,3,1],[0,1,2,1]],[[1,2,0,1],[1,2,4,1],[1,3,3,1],[0,1,2,1]],[[1,2,0,1],[1,2,3,1],[1,3,3,0],[0,2,3,1]],[[1,2,0,1],[1,2,3,1],[1,3,3,0],[0,3,2,1]],[[1,2,0,1],[1,2,3,1],[1,4,3,0],[0,2,2,1]],[[1,2,0,1],[1,2,3,1],[1,3,2,2],[1,0,2,2]],[[1,2,0,1],[1,2,3,1],[1,3,2,2],[1,0,3,1]],[[1,2,0,1],[1,2,3,1],[1,3,2,3],[1,0,2,1]],[[1,2,0,1],[1,2,3,1],[1,3,2,2],[0,2,3,0]],[[1,2,0,1],[1,2,3,1],[1,3,2,2],[0,3,2,0]],[[1,2,0,1],[1,2,3,1],[1,4,2,2],[0,2,2,0]],[[1,2,0,1],[1,2,3,1],[1,3,2,2],[0,1,2,2]],[[1,2,0,1],[1,2,3,1],[1,3,2,2],[0,1,3,1]],[[1,2,0,1],[1,2,3,1],[1,3,2,3],[0,1,2,1]],[[1,2,0,1],[1,2,3,1],[1,3,2,1],[0,2,2,2]],[[1,2,0,1],[1,2,3,1],[1,3,2,1],[0,2,3,1]],[[1,2,0,1],[1,2,3,1],[1,3,2,1],[0,3,2,1]],[[1,2,0,1],[1,2,3,1],[1,4,2,1],[0,2,2,1]],[[1,2,0,1],[1,2,3,1],[1,3,1,2],[0,2,2,2]],[[1,2,0,1],[1,2,3,1],[1,3,1,2],[0,2,3,1]],[[1,2,0,1],[1,2,3,1],[1,3,1,2],[0,3,2,1]],[[1,2,0,1],[1,2,3,1],[1,3,1,3],[0,2,2,1]],[[1,2,0,1],[1,2,3,1],[1,4,1,2],[0,2,2,1]],[[2,1,2,0],[2,3,3,2],[2,3,1,1],[1,0,0,1]],[[1,1,2,0],[3,3,3,2],[2,3,1,1],[1,0,0,1]],[[1,1,2,0],[2,4,3,2],[2,3,1,1],[1,0,0,1]],[[1,1,2,0],[2,3,3,2],[3,3,1,1],[1,0,0,1]],[[2,1,2,0],[2,3,3,2],[2,3,1,1],[1,0,1,0]],[[1,1,2,0],[3,3,3,2],[2,3,1,1],[1,0,1,0]],[[1,1,2,0],[2,4,3,2],[2,3,1,1],[1,0,1,0]],[[1,1,2,0],[2,3,3,2],[3,3,1,1],[1,0,1,0]],[[1,2,0,1],[1,2,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,0,1],[1,2,3,1],[1,2,3,2],[0,3,2,0]],[[1,2,0,1],[1,2,3,1],[1,2,3,3],[0,2,2,0]],[[1,2,0,1],[1,2,3,1],[1,2,4,2],[0,2,2,0]],[[1,2,0,1],[1,2,4,1],[1,2,3,2],[0,2,2,0]],[[1,2,0,1],[1,2,3,1],[1,2,3,2],[0,2,1,2]],[[1,2,0,1],[1,2,3,1],[1,2,3,3],[0,2,1,1]],[[1,2,0,1],[1,2,3,1],[1,2,4,2],[0,2,1,1]],[[1,2,0,1],[1,2,4,1],[1,2,3,2],[0,2,1,1]],[[1,2,0,1],[1,2,3,1],[1,2,3,1],[0,2,2,2]],[[1,2,0,1],[1,2,3,1],[1,2,3,1],[0,2,3,1]],[[1,2,0,1],[1,2,3,1],[1,2,3,1],[0,3,2,1]],[[1,2,0,1],[1,2,3,1],[1,2,4,1],[0,2,2,1]],[[1,2,0,1],[1,2,4,1],[1,2,3,1],[0,2,2,1]],[[1,2,0,1],[1,2,3,1],[1,2,2,2],[0,2,2,2]],[[1,2,0,1],[1,2,3,1],[1,2,2,2],[0,2,3,1]],[[1,2,0,1],[1,2,3,1],[1,2,2,2],[0,3,2,1]],[[1,2,0,1],[1,2,3,1],[1,2,2,3],[0,2,2,1]],[[1,2,0,1],[1,2,3,1],[1,1,3,2],[0,2,2,2]],[[1,2,0,1],[1,2,3,1],[1,1,3,2],[0,2,3,1]],[[1,2,0,1],[1,2,3,1],[1,1,3,3],[0,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,0,1],[1,2,3,1],[0,3,3,2],[2,2,1,0]],[[1,2,0,1],[1,2,3,1],[0,3,3,3],[1,2,1,0]],[[1,2,0,1],[1,2,3,1],[0,3,4,2],[1,2,1,0]],[[1,2,0,1],[1,2,3,1],[0,4,3,2],[1,2,1,0]],[[1,2,0,1],[1,2,4,1],[0,3,3,2],[1,2,1,0]],[[1,2,0,1],[1,2,3,1],[0,3,3,2],[1,2,0,2]],[[1,2,0,1],[1,2,3,1],[0,3,3,2],[1,3,0,1]],[[1,2,0,1],[1,2,3,1],[0,3,3,2],[2,2,0,1]],[[1,2,0,1],[1,2,3,1],[0,3,3,3],[1,2,0,1]],[[1,2,0,1],[1,2,3,1],[0,3,4,2],[1,2,0,1]],[[1,2,0,1],[1,2,3,1],[0,4,3,2],[1,2,0,1]],[[1,2,0,1],[1,2,4,1],[0,3,3,2],[1,2,0,1]],[[1,2,0,1],[1,2,3,1],[0,3,3,2],[1,1,3,0]],[[1,2,0,1],[1,2,3,1],[0,3,3,3],[1,1,2,0]],[[1,2,0,1],[1,2,3,1],[0,3,4,2],[1,1,2,0]],[[1,2,0,1],[1,2,3,1],[0,4,3,2],[1,1,2,0]],[[1,2,0,1],[1,2,4,1],[0,3,3,2],[1,1,2,0]],[[1,2,0,1],[1,2,3,1],[0,3,3,2],[1,1,1,2]],[[1,2,0,1],[1,2,3,1],[0,3,3,3],[1,1,1,1]],[[1,2,0,1],[1,2,3,1],[0,3,4,2],[1,1,1,1]],[[1,2,0,1],[1,2,3,1],[0,4,3,2],[1,1,1,1]],[[1,2,0,1],[1,2,4,1],[0,3,3,2],[1,1,1,1]],[[1,2,0,1],[1,2,3,1],[0,3,3,2],[1,0,2,2]],[[1,2,0,1],[1,2,3,1],[0,3,3,3],[1,0,2,1]],[[1,2,0,1],[1,2,3,1],[0,3,4,2],[1,0,2,1]],[[1,2,0,1],[1,2,4,1],[0,3,3,2],[1,0,2,1]],[[1,2,0,1],[1,2,3,1],[0,3,3,1],[1,3,1,1]],[[1,2,0,1],[1,2,3,1],[0,3,3,1],[2,2,1,1]],[[1,2,0,1],[1,2,3,1],[0,3,4,1],[1,2,1,1]],[[1,2,0,1],[1,2,3,1],[0,4,3,1],[1,2,1,1]],[[1,2,0,1],[1,2,4,1],[0,3,3,1],[1,2,1,1]],[[1,2,0,1],[1,2,3,1],[0,3,3,1],[1,1,2,2]],[[1,2,0,1],[1,2,3,1],[0,3,3,1],[1,1,3,1]],[[1,2,0,1],[1,2,3,1],[0,3,4,1],[1,1,2,1]],[[1,2,0,1],[1,2,3,1],[0,4,3,1],[1,1,2,1]],[[1,2,0,1],[1,2,4,1],[0,3,3,1],[1,1,2,1]],[[1,2,0,1],[1,2,3,1],[0,3,3,0],[1,2,3,1]],[[1,2,0,1],[1,2,3,1],[0,3,3,0],[1,3,2,1]],[[1,2,0,1],[1,2,3,1],[0,3,3,0],[2,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,4,3,0],[1,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,3,2,2],[1,2,3,0]],[[1,2,0,1],[1,2,3,1],[0,3,2,2],[1,3,2,0]],[[1,2,0,1],[1,2,3,1],[0,3,2,2],[2,2,2,0]],[[1,2,0,1],[1,2,3,1],[0,4,2,2],[1,2,2,0]],[[1,2,0,1],[1,2,3,1],[0,3,2,2],[1,1,2,2]],[[1,2,0,1],[1,2,3,1],[0,3,2,2],[1,1,3,1]],[[1,2,0,1],[1,2,3,1],[0,3,2,3],[1,1,2,1]],[[1,2,0,1],[1,2,3,1],[0,3,2,1],[1,2,2,2]],[[1,2,0,1],[1,2,3,1],[0,3,2,1],[1,2,3,1]],[[1,2,0,1],[1,2,3,1],[0,3,2,1],[1,3,2,1]],[[1,2,0,1],[1,2,3,1],[0,3,2,1],[2,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,4,2,1],[1,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,3,1,2],[1,2,2,2]],[[1,2,0,1],[1,2,3,1],[0,3,1,2],[1,2,3,1]],[[1,2,0,1],[1,2,3,1],[0,3,1,2],[1,3,2,1]],[[1,2,0,1],[1,2,3,1],[0,3,1,2],[2,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,3,1,3],[1,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,4,1,2],[1,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,2,3,2],[1,2,3,0]],[[1,2,0,1],[1,2,3,1],[0,2,3,2],[1,3,2,0]],[[1,2,0,1],[1,2,3,1],[0,2,3,2],[2,2,2,0]],[[1,2,0,1],[1,2,3,1],[0,2,3,3],[1,2,2,0]],[[1,2,0,1],[1,2,3,1],[0,2,4,2],[1,2,2,0]],[[1,2,0,1],[1,2,4,1],[0,2,3,2],[1,2,2,0]],[[1,2,0,1],[1,2,3,1],[0,2,3,2],[1,2,1,2]],[[1,2,0,1],[1,2,3,1],[0,2,3,3],[1,2,1,1]],[[1,2,0,1],[1,2,3,1],[0,2,4,2],[1,2,1,1]],[[1,2,0,1],[1,2,4,1],[0,2,3,2],[1,2,1,1]],[[1,2,0,1],[1,2,3,1],[0,2,3,1],[1,2,2,2]],[[1,2,0,1],[1,2,3,1],[0,2,3,1],[1,2,3,1]],[[1,2,0,1],[1,2,3,1],[0,2,3,1],[1,3,2,1]],[[1,2,0,1],[1,2,3,1],[0,2,3,1],[2,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,2,4,1],[1,2,2,1]],[[1,2,0,1],[1,2,4,1],[0,2,3,1],[1,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,2,2,2],[1,2,2,2]],[[1,2,0,1],[1,2,3,1],[0,2,2,2],[1,2,3,1]],[[1,2,0,1],[1,2,3,1],[0,2,2,2],[1,3,2,1]],[[1,2,0,1],[1,2,3,1],[0,2,2,2],[2,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,2,2,3],[1,2,2,1]],[[1,2,0,1],[1,2,3,1],[0,1,3,2],[1,2,2,2]],[[1,2,0,1],[1,2,3,1],[0,1,3,2],[1,2,3,1]],[[1,2,0,1],[1,2,3,1],[0,1,3,3],[1,2,2,1]],[[1,2,0,1],[1,2,3,0],[1,3,3,2],[1,0,2,2]],[[1,2,0,1],[1,2,3,0],[1,3,3,2],[1,0,3,1]],[[1,2,0,1],[1,2,3,0],[1,3,4,2],[1,0,2,1]],[[1,2,0,1],[1,2,3,0],[1,4,3,2],[1,0,2,1]],[[1,2,0,1],[1,2,3,0],[1,3,3,2],[0,3,1,1]],[[1,2,0,1],[1,2,3,0],[1,3,4,2],[0,2,1,1]],[[1,2,0,1],[1,2,3,0],[1,4,3,2],[0,2,1,1]],[[1,2,0,1],[1,2,3,0],[1,3,3,2],[0,1,2,2]],[[1,2,0,1],[1,2,3,0],[1,3,3,2],[0,1,3,1]],[[1,2,0,1],[1,2,3,0],[1,3,4,2],[0,1,2,1]],[[1,2,0,1],[1,2,3,0],[1,4,3,2],[0,1,2,1]],[[1,2,0,1],[1,2,3,0],[1,3,2,2],[0,2,2,2]],[[1,2,0,1],[1,2,3,0],[1,3,2,2],[0,2,3,1]],[[1,2,0,1],[1,2,3,0],[1,3,2,2],[0,3,2,1]],[[1,2,0,1],[1,2,3,0],[1,4,2,2],[0,2,2,1]],[[1,2,0,1],[1,2,3,0],[1,2,3,2],[0,2,2,2]],[[1,2,0,1],[1,2,3,0],[1,2,3,2],[0,2,3,1]],[[1,2,0,1],[1,2,3,0],[1,2,3,2],[0,3,2,1]],[[1,2,0,1],[1,2,3,0],[1,2,4,2],[0,2,2,1]],[[1,2,0,1],[1,2,3,0],[0,3,3,2],[1,3,1,1]],[[1,2,0,1],[1,2,3,0],[0,3,3,2],[2,2,1,1]],[[1,2,0,1],[1,2,3,0],[0,3,4,2],[1,2,1,1]],[[1,2,0,1],[1,2,3,0],[0,4,3,2],[1,2,1,1]],[[1,2,0,1],[1,2,3,0],[0,3,3,2],[1,1,2,2]],[[1,2,0,1],[1,2,3,0],[0,3,3,2],[1,1,3,1]],[[1,2,0,1],[1,2,3,0],[0,3,4,2],[1,1,2,1]],[[1,2,0,1],[1,2,3,0],[0,4,3,2],[1,1,2,1]],[[1,2,0,1],[1,2,3,0],[0,3,2,2],[1,2,2,2]],[[1,2,0,1],[1,2,3,0],[0,3,2,2],[1,2,3,1]],[[1,2,0,1],[1,2,3,0],[0,3,2,2],[1,3,2,1]],[[1,2,0,1],[1,2,3,0],[0,3,2,2],[2,2,2,1]],[[1,2,0,1],[1,2,3,0],[0,4,2,2],[1,2,2,1]],[[1,2,0,1],[1,2,3,0],[0,2,3,2],[1,2,2,2]],[[1,2,0,1],[1,2,3,0],[0,2,3,2],[1,2,3,1]],[[1,2,0,1],[1,2,3,0],[0,2,3,2],[1,3,2,1]],[[1,2,0,1],[1,2,3,0],[0,2,3,2],[2,2,2,1]],[[1,2,0,1],[1,2,3,0],[0,2,4,2],[1,2,2,1]],[[2,1,2,0],[2,3,3,2],[2,3,2,1],[1,0,0,0]],[[1,1,2,0],[3,3,3,2],[2,3,2,1],[1,0,0,0]],[[1,1,2,0],[2,4,3,2],[2,3,2,1],[1,0,0,0]],[[1,1,2,0],[2,3,3,2],[3,3,2,1],[1,0,0,0]],[[1,2,0,1],[1,2,2,2],[1,3,3,3],[1,1,1,0]],[[1,2,0,1],[1,2,2,2],[1,3,4,2],[1,1,1,0]],[[1,2,0,1],[1,2,2,2],[1,4,3,2],[1,1,1,0]],[[1,2,0,1],[1,2,2,3],[1,3,3,2],[1,1,1,0]],[[1,2,0,2],[1,2,2,2],[1,3,3,2],[1,1,1,0]],[[1,2,0,1],[1,2,2,2],[1,3,3,2],[1,1,0,2]],[[1,2,0,1],[1,2,2,2],[1,3,3,3],[1,1,0,1]],[[1,2,0,1],[1,2,2,2],[1,3,4,2],[1,1,0,1]],[[1,2,0,1],[1,2,2,2],[1,4,3,2],[1,1,0,1]],[[1,2,0,1],[1,2,2,3],[1,3,3,2],[1,1,0,1]],[[1,2,0,2],[1,2,2,2],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[1,2,2,2],[1,3,3,2],[1,0,3,0]],[[1,2,0,1],[1,2,2,2],[1,3,3,3],[1,0,2,0]],[[1,2,0,1],[1,2,2,2],[1,3,4,2],[1,0,2,0]],[[1,2,0,1],[1,2,2,2],[1,4,3,2],[1,0,2,0]],[[1,2,0,1],[1,2,2,3],[1,3,3,2],[1,0,2,0]],[[1,2,0,2],[1,2,2,2],[1,3,3,2],[1,0,2,0]],[[1,2,0,1],[1,2,2,2],[1,3,3,2],[1,0,1,2]],[[1,2,0,1],[1,2,2,2],[1,3,3,3],[1,0,1,1]],[[1,2,0,1],[1,2,2,2],[1,3,4,2],[1,0,1,1]],[[1,2,0,1],[1,2,2,2],[1,4,3,2],[1,0,1,1]],[[1,2,0,1],[1,2,2,3],[1,3,3,2],[1,0,1,1]],[[1,2,0,2],[1,2,2,2],[1,3,3,2],[1,0,1,1]],[[1,2,0,1],[1,2,2,2],[1,3,3,2],[0,3,1,0]],[[1,2,0,1],[1,2,2,2],[1,3,3,3],[0,2,1,0]],[[1,2,0,1],[1,2,2,2],[1,3,4,2],[0,2,1,0]],[[1,2,0,1],[1,2,2,2],[1,4,3,2],[0,2,1,0]],[[1,2,0,1],[1,2,2,3],[1,3,3,2],[0,2,1,0]],[[1,2,0,2],[1,2,2,2],[1,3,3,2],[0,2,1,0]],[[1,2,0,1],[1,2,2,2],[1,3,3,2],[0,2,0,2]],[[1,2,0,1],[1,2,2,2],[1,3,3,2],[0,3,0,1]],[[1,2,0,1],[1,2,2,2],[1,3,3,3],[0,2,0,1]],[[1,2,0,1],[1,2,2,2],[1,3,4,2],[0,2,0,1]],[[1,2,0,1],[1,2,2,2],[1,4,3,2],[0,2,0,1]],[[1,2,0,1],[1,2,2,3],[1,3,3,2],[0,2,0,1]],[[1,2,0,2],[1,2,2,2],[1,3,3,2],[0,2,0,1]],[[1,2,0,1],[1,2,2,2],[1,3,3,2],[0,1,3,0]],[[1,2,0,1],[1,2,2,2],[1,3,3,3],[0,1,2,0]],[[1,2,0,1],[1,2,2,2],[1,3,4,2],[0,1,2,0]],[[1,2,0,1],[1,2,2,2],[1,4,3,2],[0,1,2,0]],[[1,2,0,1],[1,2,2,3],[1,3,3,2],[0,1,2,0]],[[1,2,0,2],[1,2,2,2],[1,3,3,2],[0,1,2,0]],[[1,2,0,1],[1,2,2,2],[1,3,3,2],[0,1,1,2]],[[1,2,0,1],[1,2,2,2],[1,3,3,3],[0,1,1,1]],[[1,2,0,1],[1,2,2,2],[1,3,4,2],[0,1,1,1]],[[1,2,0,1],[1,2,2,2],[1,4,3,2],[0,1,1,1]],[[1,2,0,1],[1,2,2,3],[1,3,3,2],[0,1,1,1]],[[1,2,0,2],[1,2,2,2],[1,3,3,2],[0,1,1,1]],[[1,2,0,1],[1,2,2,2],[1,3,3,2],[0,0,2,2]],[[1,2,0,1],[1,2,2,2],[1,3,3,3],[0,0,2,1]],[[1,2,0,1],[1,2,2,2],[1,3,4,2],[0,0,2,1]],[[1,2,0,1],[1,2,2,3],[1,3,3,2],[0,0,2,1]],[[1,2,0,2],[1,2,2,2],[1,3,3,2],[0,0,2,1]],[[1,2,0,1],[1,2,2,2],[1,3,3,1],[1,0,2,2]],[[1,2,0,1],[1,2,2,2],[1,3,3,1],[1,0,3,1]],[[1,2,0,1],[1,2,2,2],[1,3,4,1],[1,0,2,1]],[[1,2,0,1],[1,2,2,2],[1,4,3,1],[1,0,2,1]],[[1,2,0,1],[1,2,2,2],[1,3,3,1],[0,3,1,1]],[[1,2,0,1],[1,2,2,2],[1,3,4,1],[0,2,1,1]],[[1,2,0,1],[1,2,2,2],[1,4,3,1],[0,2,1,1]],[[1,2,0,1],[1,2,2,2],[1,3,3,1],[0,1,2,2]],[[1,2,0,1],[1,2,2,2],[1,3,3,1],[0,1,3,1]],[[1,2,0,1],[1,2,2,2],[1,3,4,1],[0,1,2,1]],[[1,2,0,1],[1,2,2,2],[1,4,3,1],[0,1,2,1]],[[1,2,0,1],[1,2,2,2],[1,3,2,2],[1,0,2,2]],[[1,2,0,1],[1,2,2,2],[1,3,2,2],[1,0,3,1]],[[1,2,0,1],[1,2,2,2],[1,3,2,3],[1,0,2,1]],[[1,2,0,1],[1,2,2,3],[1,3,2,2],[1,0,2,1]],[[1,2,0,2],[1,2,2,2],[1,3,2,2],[1,0,2,1]],[[1,2,0,1],[1,2,2,2],[1,3,2,2],[0,2,3,0]],[[1,2,0,1],[1,2,2,2],[1,3,2,2],[0,3,2,0]],[[1,2,0,1],[1,2,2,2],[1,4,2,2],[0,2,2,0]],[[1,2,0,1],[1,2,2,2],[1,3,2,2],[0,1,2,2]],[[1,2,0,1],[1,2,2,2],[1,3,2,2],[0,1,3,1]],[[1,2,0,1],[1,2,2,2],[1,3,2,3],[0,1,2,1]],[[1,2,0,1],[1,2,2,3],[1,3,2,2],[0,1,2,1]],[[1,2,0,2],[1,2,2,2],[1,3,2,2],[0,1,2,1]],[[1,2,0,1],[1,2,2,2],[1,3,2,1],[0,2,2,2]],[[1,2,0,1],[1,2,2,2],[1,3,2,1],[0,2,3,1]],[[1,2,0,1],[1,2,2,2],[1,3,2,1],[0,3,2,1]],[[1,2,0,1],[1,2,2,2],[1,4,2,1],[0,2,2,1]],[[1,2,0,1],[1,2,2,2],[1,3,1,2],[0,2,2,2]],[[1,2,0,1],[1,2,2,2],[1,3,1,2],[0,2,3,1]],[[1,2,0,1],[1,2,2,2],[1,3,1,2],[0,3,2,1]],[[1,2,0,1],[1,2,2,2],[1,3,1,3],[0,2,2,1]],[[1,2,0,1],[1,2,2,2],[1,4,1,2],[0,2,2,1]],[[1,2,0,1],[1,2,2,3],[1,3,1,2],[0,2,2,1]],[[1,2,0,2],[1,2,2,2],[1,3,1,2],[0,2,2,1]],[[1,2,0,1],[1,2,2,2],[1,2,3,2],[0,2,3,0]],[[1,2,0,1],[1,2,2,2],[1,2,3,2],[0,3,2,0]],[[1,2,0,1],[1,2,2,2],[1,2,3,3],[0,2,2,0]],[[1,2,0,1],[1,2,2,2],[1,2,4,2],[0,2,2,0]],[[1,2,0,1],[1,2,2,3],[1,2,3,2],[0,2,2,0]],[[1,2,0,2],[1,2,2,2],[1,2,3,2],[0,2,2,0]],[[1,2,0,1],[1,2,2,2],[1,2,3,2],[0,2,1,2]],[[1,2,0,1],[1,2,2,2],[1,2,3,3],[0,2,1,1]],[[1,2,0,1],[1,2,2,2],[1,2,4,2],[0,2,1,1]],[[1,2,0,1],[1,2,2,3],[1,2,3,2],[0,2,1,1]],[[1,2,0,2],[1,2,2,2],[1,2,3,2],[0,2,1,1]],[[1,2,0,1],[1,2,2,2],[1,2,3,1],[0,2,2,2]],[[1,2,0,1],[1,2,2,2],[1,2,3,1],[0,2,3,1]],[[1,2,0,1],[1,2,2,2],[1,2,3,1],[0,3,2,1]],[[1,2,0,1],[1,2,2,2],[1,2,4,1],[0,2,2,1]],[[1,2,0,1],[1,2,2,2],[1,2,2,2],[0,2,2,2]],[[1,2,0,1],[1,2,2,2],[1,2,2,2],[0,2,3,1]],[[1,2,0,1],[1,2,2,2],[1,2,2,2],[0,3,2,1]],[[1,2,0,1],[1,2,2,2],[1,2,2,3],[0,2,2,1]],[[1,2,0,1],[1,2,2,3],[1,2,2,2],[0,2,2,1]],[[1,2,0,2],[1,2,2,2],[1,2,2,2],[0,2,2,1]],[[1,2,0,1],[1,2,2,2],[1,1,3,2],[0,2,2,2]],[[1,2,0,1],[1,2,2,2],[1,1,3,2],[0,2,3,1]],[[1,2,0,1],[1,2,2,2],[1,1,3,3],[0,2,2,1]],[[1,2,0,1],[1,2,2,3],[1,1,3,2],[0,2,2,1]],[[1,2,0,1],[1,2,2,2],[0,3,3,2],[1,3,1,0]],[[1,2,0,1],[1,2,2,2],[0,3,3,2],[2,2,1,0]],[[1,2,0,1],[1,2,2,2],[0,3,3,3],[1,2,1,0]],[[1,2,0,1],[1,2,2,2],[0,3,4,2],[1,2,1,0]],[[1,2,0,1],[1,2,2,2],[0,4,3,2],[1,2,1,0]],[[1,2,0,1],[1,2,2,3],[0,3,3,2],[1,2,1,0]],[[1,2,0,2],[1,2,2,2],[0,3,3,2],[1,2,1,0]],[[1,2,0,1],[1,2,2,2],[0,3,3,2],[1,2,0,2]],[[1,2,0,1],[1,2,2,2],[0,3,3,2],[1,3,0,1]],[[1,2,0,1],[1,2,2,2],[0,3,3,2],[2,2,0,1]],[[1,2,0,1],[1,2,2,2],[0,3,3,3],[1,2,0,1]],[[1,2,0,1],[1,2,2,2],[0,3,4,2],[1,2,0,1]],[[1,2,0,1],[1,2,2,2],[0,4,3,2],[1,2,0,1]],[[1,2,0,1],[1,2,2,3],[0,3,3,2],[1,2,0,1]],[[1,2,0,2],[1,2,2,2],[0,3,3,2],[1,2,0,1]],[[1,2,0,1],[1,2,2,2],[0,3,3,2],[1,1,3,0]],[[1,2,0,1],[1,2,2,2],[0,3,3,3],[1,1,2,0]],[[1,2,0,1],[1,2,2,2],[0,3,4,2],[1,1,2,0]],[[1,2,0,1],[1,2,2,2],[0,4,3,2],[1,1,2,0]],[[1,2,0,1],[1,2,2,3],[0,3,3,2],[1,1,2,0]],[[1,2,0,2],[1,2,2,2],[0,3,3,2],[1,1,2,0]],[[1,2,0,1],[1,2,2,2],[0,3,3,2],[1,1,1,2]],[[1,2,0,1],[1,2,2,2],[0,3,3,3],[1,1,1,1]],[[1,2,0,1],[1,2,2,2],[0,3,4,2],[1,1,1,1]],[[1,2,0,1],[1,2,2,2],[0,4,3,2],[1,1,1,1]],[[1,2,0,1],[1,2,2,3],[0,3,3,2],[1,1,1,1]],[[1,2,0,2],[1,2,2,2],[0,3,3,2],[1,1,1,1]],[[1,2,0,1],[1,2,2,2],[0,3,3,2],[1,0,2,2]],[[1,2,0,1],[1,2,2,2],[0,3,3,3],[1,0,2,1]],[[1,2,0,1],[1,2,2,2],[0,3,4,2],[1,0,2,1]],[[1,2,0,1],[1,2,2,3],[0,3,3,2],[1,0,2,1]],[[1,2,0,2],[1,2,2,2],[0,3,3,2],[1,0,2,1]],[[1,2,0,1],[1,2,2,2],[0,3,3,1],[1,3,1,1]],[[1,2,0,1],[1,2,2,2],[0,3,3,1],[2,2,1,1]],[[1,2,0,1],[1,2,2,2],[0,3,4,1],[1,2,1,1]],[[1,2,0,1],[1,2,2,2],[0,4,3,1],[1,2,1,1]],[[1,2,0,1],[1,2,2,2],[0,3,3,1],[1,1,2,2]],[[1,2,0,1],[1,2,2,2],[0,3,3,1],[1,1,3,1]],[[1,2,0,1],[1,2,2,2],[0,3,4,1],[1,1,2,1]],[[1,2,0,1],[1,2,2,2],[0,4,3,1],[1,1,2,1]],[[1,2,0,1],[1,2,2,2],[0,3,2,2],[1,2,3,0]],[[1,2,0,1],[1,2,2,2],[0,3,2,2],[1,3,2,0]],[[1,2,0,1],[1,2,2,2],[0,3,2,2],[2,2,2,0]],[[1,2,0,1],[1,2,2,2],[0,4,2,2],[1,2,2,0]],[[1,2,0,1],[1,2,2,2],[0,3,2,2],[1,1,2,2]],[[1,2,0,1],[1,2,2,2],[0,3,2,2],[1,1,3,1]],[[1,2,0,1],[1,2,2,2],[0,3,2,3],[1,1,2,1]],[[1,2,0,1],[1,2,2,3],[0,3,2,2],[1,1,2,1]],[[1,2,0,2],[1,2,2,2],[0,3,2,2],[1,1,2,1]],[[1,2,0,1],[1,2,2,2],[0,3,2,1],[1,2,2,2]],[[1,2,0,1],[1,2,2,2],[0,3,2,1],[1,2,3,1]],[[1,2,0,1],[1,2,2,2],[0,3,2,1],[1,3,2,1]],[[1,2,0,1],[1,2,2,2],[0,3,2,1],[2,2,2,1]],[[1,2,0,1],[1,2,2,2],[0,4,2,1],[1,2,2,1]],[[1,2,0,1],[1,2,2,2],[0,3,1,2],[1,2,2,2]],[[1,2,0,1],[1,2,2,2],[0,3,1,2],[1,2,3,1]],[[1,2,0,1],[1,2,2,2],[0,3,1,2],[1,3,2,1]],[[1,2,0,1],[1,2,2,2],[0,3,1,2],[2,2,2,1]],[[1,2,0,1],[1,2,2,2],[0,3,1,3],[1,2,2,1]],[[1,2,0,1],[1,2,2,2],[0,4,1,2],[1,2,2,1]],[[1,2,0,1],[1,2,2,3],[0,3,1,2],[1,2,2,1]],[[1,2,0,2],[1,2,2,2],[0,3,1,2],[1,2,2,1]],[[1,2,0,1],[1,2,2,2],[0,2,3,2],[1,2,3,0]],[[1,2,0,1],[1,2,2,2],[0,2,3,2],[1,3,2,0]],[[1,2,0,1],[1,2,2,2],[0,2,3,2],[2,2,2,0]],[[1,2,0,1],[1,2,2,2],[0,2,3,3],[1,2,2,0]],[[1,2,0,1],[1,2,2,2],[0,2,4,2],[1,2,2,0]],[[1,2,0,1],[1,2,2,3],[0,2,3,2],[1,2,2,0]],[[1,2,0,2],[1,2,2,2],[0,2,3,2],[1,2,2,0]],[[1,2,0,1],[1,2,2,2],[0,2,3,2],[1,2,1,2]],[[1,2,0,1],[1,2,2,2],[0,2,3,3],[1,2,1,1]],[[1,2,0,1],[1,2,2,2],[0,2,4,2],[1,2,1,1]],[[1,2,0,1],[1,2,2,3],[0,2,3,2],[1,2,1,1]],[[1,2,0,2],[1,2,2,2],[0,2,3,2],[1,2,1,1]],[[1,2,0,1],[1,2,2,2],[0,2,3,1],[1,2,2,2]],[[1,2,0,1],[1,2,2,2],[0,2,3,1],[1,2,3,1]],[[1,2,0,1],[1,2,2,2],[0,2,3,1],[1,3,2,1]],[[1,2,0,1],[1,2,2,2],[0,2,3,1],[2,2,2,1]],[[1,2,0,1],[1,2,2,2],[0,2,4,1],[1,2,2,1]],[[1,2,0,1],[1,2,2,2],[0,2,2,2],[1,2,2,2]],[[1,2,0,1],[1,2,2,2],[0,2,2,2],[1,2,3,1]],[[1,2,0,1],[1,2,2,2],[0,2,2,2],[1,3,2,1]],[[1,2,0,1],[1,2,2,2],[0,2,2,2],[2,2,2,1]],[[1,2,0,1],[1,2,2,2],[0,2,2,3],[1,2,2,1]],[[1,2,0,1],[1,2,2,3],[0,2,2,2],[1,2,2,1]],[[1,2,0,2],[1,2,2,2],[0,2,2,2],[1,2,2,1]],[[1,2,0,1],[1,2,2,2],[0,1,3,2],[1,2,2,2]],[[1,2,0,1],[1,2,2,2],[0,1,3,2],[1,2,3,1]],[[1,2,0,1],[1,2,2,2],[0,1,3,3],[1,2,2,1]],[[1,2,0,1],[1,2,2,3],[0,1,3,2],[1,2,2,1]],[[1,2,0,1],[1,2,1,2],[1,3,3,2],[0,1,2,2]],[[1,2,0,1],[1,2,1,2],[1,3,3,2],[0,1,3,1]],[[1,2,0,1],[1,2,1,2],[1,3,3,3],[0,1,2,1]],[[1,2,0,1],[1,2,1,2],[1,2,3,2],[0,2,2,2]],[[1,2,0,1],[1,2,1,2],[1,2,3,2],[0,2,3,1]],[[1,2,0,1],[1,2,1,2],[1,2,3,3],[0,2,2,1]],[[1,2,0,1],[1,2,1,2],[0,3,3,2],[1,1,2,2]],[[1,2,0,1],[1,2,1,2],[0,3,3,2],[1,1,3,1]],[[1,2,0,1],[1,2,1,2],[0,3,3,3],[1,1,2,1]],[[1,2,0,1],[1,2,1,2],[0,2,3,2],[1,2,2,2]],[[1,2,0,1],[1,2,1,2],[0,2,3,2],[1,2,3,1]],[[1,2,0,1],[1,2,1,2],[0,2,3,2],[1,3,2,1]],[[1,2,0,1],[1,2,1,2],[0,2,3,3],[1,2,2,1]],[[1,2,0,1],[1,0,0,2],[2,3,3,2],[1,2,2,2]],[[1,2,0,1],[1,0,0,2],[2,3,3,2],[1,2,3,1]],[[1,2,0,1],[1,0,0,2],[2,3,3,2],[1,3,2,1]],[[1,2,0,1],[1,0,0,2],[2,3,3,2],[2,2,2,1]],[[1,2,0,1],[1,0,0,2],[2,3,3,3],[1,2,2,1]],[[1,2,0,1],[0,3,3,2],[2,3,3,3],[0,0,0,1]],[[1,2,0,1],[0,3,3,3],[2,3,3,2],[0,0,0,1]],[[1,2,0,1],[0,3,4,2],[2,3,3,2],[0,0,0,1]],[[1,2,0,1],[0,4,3,2],[2,3,3,2],[0,0,0,1]],[[1,2,0,2],[0,3,3,2],[2,3,3,2],[0,0,0,1]],[[1,3,0,1],[0,3,3,2],[2,3,3,2],[0,0,0,1]],[[2,2,0,1],[0,3,3,2],[2,3,3,2],[0,0,0,1]],[[1,2,0,1],[0,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,0,1],[0,3,3,2],[2,4,3,1],[1,1,0,0]],[[1,2,0,1],[0,3,3,2],[3,3,3,1],[1,1,0,0]],[[1,2,0,1],[0,3,3,3],[2,3,3,1],[1,1,0,0]],[[1,2,0,1],[0,3,4,2],[2,3,3,1],[1,1,0,0]],[[1,2,0,1],[0,4,3,2],[2,3,3,1],[1,1,0,0]],[[1,2,0,2],[0,3,3,2],[2,3,3,1],[1,1,0,0]],[[1,3,0,1],[0,3,3,2],[2,3,3,1],[1,1,0,0]],[[2,2,0,1],[0,3,3,2],[2,3,3,1],[1,1,0,0]],[[1,2,0,1],[0,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,0,1],[0,3,3,2],[3,3,3,1],[0,2,0,0]],[[1,2,0,1],[0,3,3,3],[2,3,3,1],[0,2,0,0]],[[1,2,0,1],[0,3,4,2],[2,3,3,1],[0,2,0,0]],[[1,2,0,1],[0,4,3,2],[2,3,3,1],[0,2,0,0]],[[1,2,0,2],[0,3,3,2],[2,3,3,1],[0,2,0,0]],[[1,3,0,1],[0,3,3,2],[2,3,3,1],[0,2,0,0]],[[2,2,0,1],[0,3,3,2],[2,3,3,1],[0,2,0,0]],[[1,2,0,1],[0,3,3,2],[2,3,4,1],[0,0,2,0]],[[1,2,0,1],[0,3,3,3],[2,3,3,1],[0,0,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,3,1],[0,0,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,3,1],[0,0,2,0]],[[1,2,0,2],[0,3,3,2],[2,3,3,1],[0,0,2,0]],[[1,3,0,1],[0,3,3,2],[2,3,3,1],[0,0,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,3,1],[0,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,4,1],[0,0,1,1]],[[1,2,0,1],[0,3,3,3],[2,3,3,1],[0,0,1,1]],[[1,2,0,1],[0,3,4,2],[2,3,3,1],[0,0,1,1]],[[1,2,0,1],[0,4,3,2],[2,3,3,1],[0,0,1,1]],[[1,2,0,2],[0,3,3,2],[2,3,3,1],[0,0,1,1]],[[1,3,0,1],[0,3,3,2],[2,3,3,1],[0,0,1,1]],[[2,2,0,1],[0,3,3,2],[2,3,3,1],[0,0,1,1]],[[1,2,0,1],[0,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,0,1],[0,3,3,2],[2,4,3,0],[1,2,0,0]],[[1,2,0,1],[0,3,3,2],[3,3,3,0],[1,2,0,0]],[[1,2,0,1],[0,3,4,2],[2,3,3,0],[1,2,0,0]],[[1,2,0,1],[0,4,3,2],[2,3,3,0],[1,2,0,0]],[[1,3,0,1],[0,3,3,2],[2,3,3,0],[1,2,0,0]],[[2,2,0,1],[0,3,3,2],[2,3,3,0],[1,2,0,0]],[[1,2,0,1],[0,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,4,3,0],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[3,3,3,0],[1,1,1,0]],[[1,2,0,1],[0,3,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,0,1],[0,4,3,2],[2,3,3,0],[1,1,1,0]],[[1,3,0,1],[0,3,3,2],[2,3,3,0],[1,1,1,0]],[[2,2,0,1],[0,3,3,2],[2,3,3,0],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,3,3,0],[2,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,4,3,0],[1,0,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,3,0],[1,0,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,3,0],[1,0,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,3,0],[1,0,2,0]],[[1,3,0,1],[0,3,3,2],[2,3,3,0],[1,0,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,3,0],[1,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,0,1],[0,3,3,2],[2,4,3,0],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[3,3,3,0],[0,2,1,0]],[[1,2,0,1],[0,3,4,2],[2,3,3,0],[0,2,1,0]],[[1,2,0,1],[0,4,3,2],[2,3,3,0],[0,2,1,0]],[[1,3,0,1],[0,3,3,2],[2,3,3,0],[0,2,1,0]],[[2,2,0,1],[0,3,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[2,4,3,0],[0,1,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,3,0],[0,1,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,3,0],[0,1,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,3,0],[0,1,2,0]],[[1,3,0,1],[0,3,3,2],[2,3,3,0],[0,1,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,3,0],[0,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,4,0],[0,0,2,1]],[[1,2,0,1],[0,3,3,3],[2,3,3,0],[0,0,2,1]],[[1,2,0,1],[0,3,4,2],[2,3,3,0],[0,0,2,1]],[[1,2,0,1],[0,4,3,2],[2,3,3,0],[0,0,2,1]],[[1,2,0,2],[0,3,3,2],[2,3,3,0],[0,0,2,1]],[[1,3,0,1],[0,3,3,2],[2,3,3,0],[0,0,2,1]],[[2,2,0,1],[0,3,3,2],[2,3,3,0],[0,0,2,1]],[[1,2,0,1],[0,3,3,2],[2,3,2,3],[0,0,2,0]],[[1,2,0,1],[0,3,3,3],[2,3,2,2],[0,0,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,2,2],[0,0,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,2,2],[0,0,2,0]],[[1,2,0,2],[0,3,3,2],[2,3,2,2],[0,0,2,0]],[[1,3,0,1],[0,3,3,2],[2,3,2,2],[0,0,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,2,2],[0,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,2,2],[0,0,1,2]],[[1,2,0,1],[0,3,3,2],[2,3,2,3],[0,0,1,1]],[[1,2,0,1],[0,3,3,3],[2,3,2,2],[0,0,1,1]],[[1,2,0,1],[0,3,4,2],[2,3,2,2],[0,0,1,1]],[[1,2,0,1],[0,4,3,2],[2,3,2,2],[0,0,1,1]],[[1,2,0,2],[0,3,3,2],[2,3,2,2],[0,0,1,1]],[[1,3,0,1],[0,3,3,2],[2,3,2,2],[0,0,1,1]],[[2,2,0,1],[0,3,3,2],[2,3,2,2],[0,0,1,1]],[[1,2,0,1],[0,3,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,0,1],[0,3,3,2],[2,4,2,1],[1,2,0,0]],[[1,2,0,1],[0,3,3,2],[3,3,2,1],[1,2,0,0]],[[1,2,0,1],[0,3,3,3],[2,3,2,1],[1,2,0,0]],[[1,2,0,1],[0,3,4,2],[2,3,2,1],[1,2,0,0]],[[1,2,0,1],[0,4,3,2],[2,3,2,1],[1,2,0,0]],[[1,2,0,2],[0,3,3,2],[2,3,2,1],[1,2,0,0]],[[1,3,0,1],[0,3,3,2],[2,3,2,1],[1,2,0,0]],[[2,2,0,1],[0,3,3,2],[2,3,2,1],[1,2,0,0]],[[1,2,0,1],[0,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,4,2,1],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[3,3,2,1],[1,1,1,0]],[[1,2,0,1],[0,3,3,3],[2,3,2,1],[1,1,1,0]],[[1,2,0,1],[0,3,4,2],[2,3,2,1],[1,1,1,0]],[[1,2,0,1],[0,4,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,0,2],[0,3,3,2],[2,3,2,1],[1,1,1,0]],[[1,3,0,1],[0,3,3,2],[2,3,2,1],[1,1,1,0]],[[2,2,0,1],[0,3,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,3,2,1],[2,1,0,1]],[[1,2,0,1],[0,3,3,2],[2,4,2,1],[1,1,0,1]],[[1,2,0,1],[0,3,3,2],[3,3,2,1],[1,1,0,1]],[[1,2,0,1],[0,3,3,3],[2,3,2,1],[1,1,0,1]],[[1,2,0,1],[0,3,4,2],[2,3,2,1],[1,1,0,1]],[[1,2,0,1],[0,4,3,2],[2,3,2,1],[1,1,0,1]],[[1,2,0,2],[0,3,3,2],[2,3,2,1],[1,1,0,1]],[[1,3,0,1],[0,3,3,2],[2,3,2,1],[1,1,0,1]],[[2,2,0,1],[0,3,3,2],[2,3,2,1],[1,1,0,1]],[[1,2,0,1],[0,3,3,2],[2,3,2,1],[2,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,4,2,1],[1,0,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,2,1],[1,0,2,0]],[[1,2,0,1],[0,3,3,3],[2,3,2,1],[1,0,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,2,1],[1,0,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,0,2],[0,3,3,2],[2,3,2,1],[1,0,2,0]],[[1,3,0,1],[0,3,3,2],[2,3,2,1],[1,0,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,2,1],[2,0,1,1]],[[1,2,0,1],[0,3,3,2],[2,4,2,1],[1,0,1,1]],[[1,2,0,1],[0,3,3,2],[3,3,2,1],[1,0,1,1]],[[1,2,0,1],[0,3,3,3],[2,3,2,1],[1,0,1,1]],[[1,2,0,1],[0,3,4,2],[2,3,2,1],[1,0,1,1]],[[1,2,0,1],[0,4,3,2],[2,3,2,1],[1,0,1,1]],[[1,2,0,2],[0,3,3,2],[2,3,2,1],[1,0,1,1]],[[1,3,0,1],[0,3,3,2],[2,3,2,1],[1,0,1,1]],[[2,2,0,1],[0,3,3,2],[2,3,2,1],[1,0,1,1]],[[1,2,0,1],[0,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,0,1],[0,3,3,2],[2,4,2,1],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[3,3,2,1],[0,2,1,0]],[[1,2,0,1],[0,3,3,3],[2,3,2,1],[0,2,1,0]],[[1,2,0,1],[0,3,4,2],[2,3,2,1],[0,2,1,0]],[[1,2,0,1],[0,4,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,0,2],[0,3,3,2],[2,3,2,1],[0,2,1,0]],[[1,3,0,1],[0,3,3,2],[2,3,2,1],[0,2,1,0]],[[2,2,0,1],[0,3,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[2,3,2,1],[0,3,0,1]],[[1,2,0,1],[0,3,3,2],[2,4,2,1],[0,2,0,1]],[[1,2,0,1],[0,3,3,2],[3,3,2,1],[0,2,0,1]],[[1,2,0,1],[0,3,3,3],[2,3,2,1],[0,2,0,1]],[[1,2,0,1],[0,3,4,2],[2,3,2,1],[0,2,0,1]],[[1,2,0,1],[0,4,3,2],[2,3,2,1],[0,2,0,1]],[[1,2,0,2],[0,3,3,2],[2,3,2,1],[0,2,0,1]],[[1,3,0,1],[0,3,3,2],[2,3,2,1],[0,2,0,1]],[[2,2,0,1],[0,3,3,2],[2,3,2,1],[0,2,0,1]],[[1,2,0,1],[0,3,3,2],[2,4,2,1],[0,1,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,2,1],[0,1,2,0]],[[1,2,0,1],[0,3,3,3],[2,3,2,1],[0,1,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,2,1],[0,1,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,0,2],[0,3,3,2],[2,3,2,1],[0,1,2,0]],[[1,3,0,1],[0,3,3,2],[2,3,2,1],[0,1,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,4,2,1],[0,1,1,1]],[[1,2,0,1],[0,3,3,2],[3,3,2,1],[0,1,1,1]],[[1,2,0,1],[0,3,3,3],[2,3,2,1],[0,1,1,1]],[[1,2,0,1],[0,3,4,2],[2,3,2,1],[0,1,1,1]],[[1,2,0,1],[0,4,3,2],[2,3,2,1],[0,1,1,1]],[[1,2,0,2],[0,3,3,2],[2,3,2,1],[0,1,1,1]],[[1,3,0,1],[0,3,3,2],[2,3,2,1],[0,1,1,1]],[[2,2,0,1],[0,3,3,2],[2,3,2,1],[0,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,0,1],[0,3,3,2],[2,4,2,0],[1,2,0,1]],[[1,2,0,1],[0,3,3,2],[3,3,2,0],[1,2,0,1]],[[1,2,0,1],[0,3,4,2],[2,3,2,0],[1,2,0,1]],[[1,2,0,1],[0,4,3,2],[2,3,2,0],[1,2,0,1]],[[1,3,0,1],[0,3,3,2],[2,3,2,0],[1,2,0,1]],[[2,2,0,1],[0,3,3,2],[2,3,2,0],[1,2,0,1]],[[1,2,0,1],[0,3,3,2],[2,3,2,0],[2,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,4,2,0],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[3,3,2,0],[1,1,1,1]],[[1,2,0,1],[0,3,3,3],[2,3,2,0],[1,1,1,1]],[[1,2,0,1],[0,3,4,2],[2,3,2,0],[1,1,1,1]],[[1,2,0,1],[0,4,3,2],[2,3,2,0],[1,1,1,1]],[[1,2,0,2],[0,3,3,2],[2,3,2,0],[1,1,1,1]],[[1,3,0,1],[0,3,3,2],[2,3,2,0],[1,1,1,1]],[[2,2,0,1],[0,3,3,2],[2,3,2,0],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,3,2,0],[2,0,2,1]],[[1,2,0,1],[0,3,3,2],[2,4,2,0],[1,0,2,1]],[[1,2,0,1],[0,3,3,2],[3,3,2,0],[1,0,2,1]],[[1,2,0,1],[0,3,3,3],[2,3,2,0],[1,0,2,1]],[[1,2,0,1],[0,3,4,2],[2,3,2,0],[1,0,2,1]],[[1,2,0,1],[0,4,3,2],[2,3,2,0],[1,0,2,1]],[[1,2,0,2],[0,3,3,2],[2,3,2,0],[1,0,2,1]],[[1,3,0,1],[0,3,3,2],[2,3,2,0],[1,0,2,1]],[[2,2,0,1],[0,3,3,2],[2,3,2,0],[1,0,2,1]],[[1,2,0,1],[0,3,3,2],[2,3,2,0],[0,3,1,1]],[[1,2,0,1],[0,3,3,2],[2,4,2,0],[0,2,1,1]],[[1,2,0,1],[0,3,3,2],[3,3,2,0],[0,2,1,1]],[[1,2,0,1],[0,3,3,3],[2,3,2,0],[0,2,1,1]],[[1,2,0,1],[0,3,4,2],[2,3,2,0],[0,2,1,1]],[[1,2,0,1],[0,4,3,2],[2,3,2,0],[0,2,1,1]],[[1,2,0,2],[0,3,3,2],[2,3,2,0],[0,2,1,1]],[[1,3,0,1],[0,3,3,2],[2,3,2,0],[0,2,1,1]],[[2,2,0,1],[0,3,3,2],[2,3,2,0],[0,2,1,1]],[[1,2,0,1],[0,3,3,2],[2,4,2,0],[0,1,2,1]],[[1,2,0,1],[0,3,3,2],[3,3,2,0],[0,1,2,1]],[[1,2,0,1],[0,3,3,3],[2,3,2,0],[0,1,2,1]],[[1,2,0,1],[0,3,4,2],[2,3,2,0],[0,1,2,1]],[[1,2,0,1],[0,4,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,2],[0,0,3,2],[0,2,3,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,3],[0,2,3,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[0,2,3,3],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[0,2,3,2],[1,2,3,1]],[[1,1,2,1],[0,0,3,2],[0,2,3,2],[1,2,2,2]],[[1,1,2,2],[0,0,3,2],[0,3,2,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,3],[0,3,2,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[0,3,2,3],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[0,3,2,2],[1,3,2,1]],[[1,1,2,1],[0,0,3,2],[0,3,2,2],[1,2,3,1]],[[1,1,2,1],[0,0,3,2],[0,3,2,2],[1,2,2,2]],[[1,1,2,1],[0,0,3,2],[0,3,4,1],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[0,3,3,1],[1,3,2,1]],[[1,1,2,1],[0,0,3,2],[0,3,3,1],[1,2,3,1]],[[1,1,2,1],[0,0,3,2],[0,3,3,1],[1,2,2,2]],[[1,1,2,2],[0,0,3,2],[0,3,3,2],[1,2,1,1]],[[1,1,2,1],[0,0,3,3],[0,3,3,2],[1,2,1,1]],[[1,1,2,1],[0,0,3,2],[0,3,4,2],[1,2,1,1]],[[1,1,2,1],[0,0,3,2],[0,3,3,3],[1,2,1,1]],[[1,1,2,1],[0,0,3,2],[0,3,3,2],[1,2,1,2]],[[1,1,2,2],[0,0,3,2],[0,3,3,2],[1,2,2,0]],[[1,1,2,1],[0,0,3,3],[0,3,3,2],[1,2,2,0]],[[1,1,2,1],[0,0,3,2],[0,3,4,2],[1,2,2,0]],[[1,1,2,1],[0,0,3,2],[0,3,3,3],[1,2,2,0]],[[1,1,2,1],[0,0,3,2],[0,3,3,2],[1,3,2,0]],[[1,1,2,1],[0,0,3,2],[0,3,3,2],[1,2,3,0]],[[1,1,2,2],[0,0,3,2],[1,1,3,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,3],[1,1,3,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[1,1,3,3],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[1,1,3,2],[1,2,3,1]],[[1,1,2,1],[0,0,3,2],[1,1,3,2],[1,2,2,2]],[[1,1,2,2],[0,0,3,2],[1,2,2,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,3],[1,2,2,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[0,0,3,2],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[0,0,3,2],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[0,0,3,2],[1,2,2,2],[1,2,2,2]],[[1,1,2,1],[0,0,3,2],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[0,0,3,2],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[0,0,3,2],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[0,0,3,2],[1,2,3,1],[1,2,2,2]],[[1,1,2,2],[0,0,3,2],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[0,0,3,3],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[0,0,3,2],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[0,0,3,2],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[0,0,3,2],[1,2,3,2],[1,2,1,2]],[[1,1,2,2],[0,0,3,2],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[0,0,3,3],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[0,0,3,2],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[0,0,3,2],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[0,0,3,2],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[0,0,3,2],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[0,0,3,2],[1,2,3,2],[1,2,3,0]],[[1,1,2,2],[0,0,3,2],[1,3,2,2],[1,1,2,1]],[[1,1,2,1],[0,0,3,3],[1,3,2,2],[1,1,2,1]],[[1,1,2,1],[0,0,3,2],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[0,0,3,2],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[0,0,3,2],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[0,0,3,2],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[0,0,3,2],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[0,0,3,2],[1,3,3,1],[1,1,2,2]],[[1,1,2,2],[0,0,3,2],[1,3,3,2],[1,0,2,1]],[[1,1,2,1],[0,0,3,3],[1,3,3,2],[1,0,2,1]],[[1,1,2,1],[0,0,3,2],[1,3,4,2],[1,0,2,1]],[[1,1,2,1],[0,0,3,2],[1,3,3,3],[1,0,2,1]],[[1,1,2,1],[0,0,3,2],[1,3,3,2],[1,0,2,2]],[[1,1,2,2],[0,0,3,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[0,0,3,3],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[0,0,3,2],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[0,0,3,2],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[0,0,3,2],[1,3,3,2],[1,1,1,2]],[[1,1,2,2],[0,0,3,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[0,0,3,3],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[0,0,3,2],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[0,0,3,2],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[0,0,3,2],[1,3,3,2],[1,1,3,0]],[[1,1,2,2],[0,0,3,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[0,0,3,3],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[0,0,3,2],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[0,0,3,2],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[0,0,3,2],[1,3,3,2],[1,2,0,2]],[[1,1,2,2],[0,0,3,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[0,0,3,3],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[0,0,3,2],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[0,0,3,2],[1,3,3,3],[1,2,1,0]],[[1,2,0,2],[0,3,3,2],[2,3,2,0],[0,1,2,1]],[[1,3,0,1],[0,3,3,2],[2,3,2,0],[0,1,2,1]],[[2,2,0,1],[0,3,3,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,2],[0,0,3,2],[2,0,3,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,3],[2,0,3,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,0,3,3],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,0,3,2],[1,2,3,1]],[[1,1,2,1],[0,0,3,2],[2,0,3,2],[1,2,2,2]],[[1,1,2,2],[0,0,3,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,3],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[0,0,3,2],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[0,0,3,2],[2,1,2,2],[1,2,2,2]],[[1,1,2,1],[0,0,3,2],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[0,0,3,2],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[0,0,3,2],[2,1,3,1],[1,2,2,2]],[[1,1,2,2],[0,0,3,2],[2,1,3,2],[0,2,2,1]],[[1,1,2,1],[0,0,3,3],[2,1,3,2],[0,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,1,3,3],[0,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,1,3,2],[0,2,3,1]],[[1,1,2,1],[0,0,3,2],[2,1,3,2],[0,2,2,2]],[[1,1,2,2],[0,0,3,2],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,0,3,3],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,0,3,2],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[0,0,3,2],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[0,0,3,2],[2,1,3,2],[1,2,1,2]],[[1,1,2,2],[0,0,3,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,0,3,3],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,0,3,2],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[0,0,3,2],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[0,0,3,2],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[0,0,3,2],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[0,0,3,2],[2,1,3,2],[1,2,3,0]],[[1,1,2,2],[0,0,3,2],[2,2,2,2],[0,2,2,1]],[[1,1,2,1],[0,0,3,3],[2,2,2,2],[0,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[0,0,3,2],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[0,0,3,2],[2,2,2,2],[0,2,2,2]],[[1,1,2,1],[0,0,3,2],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[0,0,3,2],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[0,0,3,2],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[0,0,3,2],[2,2,3,1],[0,2,2,2]],[[1,1,2,2],[0,0,3,2],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[0,0,3,3],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[0,0,3,2],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[0,0,3,2],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[0,0,3,2],[2,2,3,2],[0,2,1,2]],[[1,1,2,2],[0,0,3,2],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[0,0,3,3],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[0,0,3,2],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[0,0,3,2],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[0,0,3,2],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[0,0,3,2],[2,2,3,2],[0,2,3,0]],[[1,1,2,2],[0,0,3,2],[2,3,2,2],[0,1,2,1]],[[1,1,2,1],[0,0,3,3],[2,3,2,2],[0,1,2,1]],[[1,1,2,1],[0,0,3,2],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[0,0,3,2],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[0,0,3,2],[2,3,2,2],[0,1,2,2]],[[1,1,2,2],[0,0,3,2],[2,3,2,2],[1,0,2,1]],[[1,1,2,1],[0,0,3,3],[2,3,2,2],[1,0,2,1]],[[1,1,2,1],[0,0,3,2],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[0,0,3,2],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[0,0,3,2],[2,3,2,2],[1,0,2,2]],[[1,1,2,1],[0,0,3,2],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,1],[0,1,2,2]],[[1,1,2,1],[0,0,3,2],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,1],[1,0,2,2]],[[1,2,0,1],[0,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,0,1],[0,3,3,2],[2,4,1,2],[1,2,0,0]],[[1,1,2,2],[0,0,3,2],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[0,0,3,3],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[0,0,3,2],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,2],[0,0,2,2]],[[1,1,2,2],[0,0,3,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,0,3,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,0,3,2],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,2],[0,1,1,2]],[[1,1,2,2],[0,0,3,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,0,3,3],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,0,3,2],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[0,0,3,2],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[0,0,3,2],[2,3,3,2],[0,1,3,0]],[[1,1,2,2],[0,0,3,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,0,3,3],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,0,3,2],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,2],[0,2,0,2]],[[1,1,2,2],[0,0,3,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,0,3,3],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,0,3,2],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[0,0,3,2],[2,3,3,3],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[3,3,1,2],[1,2,0,0]],[[1,2,0,1],[0,3,3,3],[2,3,1,2],[1,2,0,0]],[[1,2,0,1],[0,3,4,2],[2,3,1,2],[1,2,0,0]],[[1,2,0,1],[0,4,3,2],[2,3,1,2],[1,2,0,0]],[[1,2,0,2],[0,3,3,2],[2,3,1,2],[1,2,0,0]],[[1,3,0,1],[0,3,3,2],[2,3,1,2],[1,2,0,0]],[[2,2,0,1],[0,3,3,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,2],[0,0,3,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,0,3,3],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,0,3,2],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,2],[1,0,1,2]],[[1,1,2,2],[0,0,3,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,0,3,3],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,0,3,2],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[0,0,3,2],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[0,0,3,2],[2,3,3,2],[1,0,3,0]],[[1,1,2,2],[0,0,3,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,0,3,3],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,0,3,2],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[0,0,3,2],[2,3,3,2],[1,1,0,2]],[[1,1,2,2],[0,0,3,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,0,3,3],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,0,3,2],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[0,0,3,2],[2,3,3,3],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,3],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,4,1,2],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[3,3,1,2],[1,1,1,0]],[[1,2,0,1],[0,3,3,3],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[0,1,0,2],[1,3,3,3],[1,2,2,1]],[[1,1,2,1],[0,1,0,2],[1,3,3,2],[2,2,2,1]],[[1,1,2,1],[0,1,0,2],[1,3,3,2],[1,3,2,1]],[[1,1,2,1],[0,1,0,2],[1,3,3,2],[1,2,3,1]],[[1,1,2,1],[0,1,0,2],[1,3,3,2],[1,2,2,2]],[[1,1,2,1],[0,1,0,2],[2,3,3,3],[0,2,2,1]],[[1,1,2,1],[0,1,0,2],[2,3,3,2],[0,3,2,1]],[[1,1,2,1],[0,1,0,2],[2,3,3,2],[0,2,3,1]],[[1,1,2,1],[0,1,0,2],[2,3,3,2],[0,2,2,2]],[[1,1,2,2],[0,1,1,2],[1,3,2,2],[1,2,2,1]],[[1,1,2,1],[0,1,1,3],[1,3,2,2],[1,2,2,1]],[[1,1,2,1],[0,1,1,2],[1,3,2,3],[1,2,2,1]],[[1,1,2,1],[0,1,1,2],[1,3,2,2],[2,2,2,1]],[[1,1,2,1],[0,1,1,2],[1,3,2,2],[1,3,2,1]],[[1,1,2,1],[0,1,1,2],[1,3,2,2],[1,2,3,1]],[[1,1,2,1],[0,1,1,2],[1,3,2,2],[1,2,2,2]],[[1,1,2,1],[0,1,1,2],[1,3,4,1],[1,2,2,1]],[[1,1,2,1],[0,1,1,2],[1,3,3,1],[2,2,2,1]],[[1,1,2,1],[0,1,1,2],[1,3,3,1],[1,3,2,1]],[[1,1,2,1],[0,1,1,2],[1,3,3,1],[1,2,3,1]],[[1,1,2,1],[0,1,1,2],[1,3,3,1],[1,2,2,2]],[[1,1,2,2],[0,1,1,2],[1,3,3,2],[1,2,1,1]],[[1,1,2,1],[0,1,1,3],[1,3,3,2],[1,2,1,1]],[[1,1,2,1],[0,1,1,2],[1,3,4,2],[1,2,1,1]],[[1,1,2,1],[0,1,1,2],[1,3,3,3],[1,2,1,1]],[[1,1,2,1],[0,1,1,2],[1,3,3,2],[1,2,1,2]],[[1,1,2,2],[0,1,1,2],[1,3,3,2],[1,2,2,0]],[[1,1,2,1],[0,1,1,3],[1,3,3,2],[1,2,2,0]],[[1,1,2,1],[0,1,1,2],[1,3,4,2],[1,2,2,0]],[[1,1,2,1],[0,1,1,2],[1,3,3,3],[1,2,2,0]],[[1,1,2,1],[0,1,1,2],[1,3,3,2],[2,2,2,0]],[[1,1,2,1],[0,1,1,2],[1,3,3,2],[1,3,2,0]],[[1,1,2,1],[0,1,1,2],[1,3,3,2],[1,2,3,0]],[[1,1,2,2],[0,1,1,2],[2,3,2,2],[0,2,2,1]],[[1,1,2,1],[0,1,1,3],[2,3,2,2],[0,2,2,1]],[[1,1,2,1],[0,1,1,2],[2,3,2,3],[0,2,2,1]],[[1,1,2,1],[0,1,1,2],[2,3,2,2],[0,3,2,1]],[[1,1,2,1],[0,1,1,2],[2,3,2,2],[0,2,3,1]],[[1,1,2,1],[0,1,1,2],[2,3,2,2],[0,2,2,2]],[[1,1,2,1],[0,1,1,2],[2,3,4,1],[0,2,2,1]],[[1,1,2,1],[0,1,1,2],[2,3,3,1],[0,3,2,1]],[[1,1,2,1],[0,1,1,2],[2,3,3,1],[0,2,3,1]],[[1,1,2,1],[0,1,1,2],[2,3,3,1],[0,2,2,2]],[[1,1,2,2],[0,1,1,2],[2,3,3,2],[0,2,1,1]],[[1,1,2,1],[0,1,1,3],[2,3,3,2],[0,2,1,1]],[[1,1,2,1],[0,1,1,2],[2,3,4,2],[0,2,1,1]],[[1,1,2,1],[0,1,1,2],[2,3,3,3],[0,2,1,1]],[[1,1,2,1],[0,1,1,2],[2,3,3,2],[0,2,1,2]],[[1,1,2,2],[0,1,1,2],[2,3,3,2],[0,2,2,0]],[[1,1,2,1],[0,1,1,3],[2,3,3,2],[0,2,2,0]],[[1,1,2,1],[0,1,1,2],[2,3,4,2],[0,2,2,0]],[[1,1,2,1],[0,1,1,2],[2,3,3,3],[0,2,2,0]],[[1,1,2,1],[0,1,1,2],[2,3,3,2],[0,3,2,0]],[[1,1,2,1],[0,1,1,2],[2,3,3,2],[0,2,3,0]],[[1,2,0,1],[0,3,4,2],[2,3,1,2],[1,1,1,0]],[[1,2,0,1],[0,4,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,0,2],[0,3,3,2],[2,3,1,2],[1,1,1,0]],[[1,3,0,1],[0,3,3,2],[2,3,1,2],[1,1,1,0]],[[2,2,0,1],[0,3,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,2],[1,1,0,2]],[[1,2,0,1],[0,3,3,2],[2,3,1,2],[2,1,0,1]],[[1,2,0,1],[0,3,3,2],[2,3,1,3],[1,1,0,1]],[[1,2,0,1],[0,3,3,2],[2,4,1,2],[1,1,0,1]],[[1,2,0,1],[0,3,3,2],[3,3,1,2],[1,1,0,1]],[[1,2,0,1],[0,3,3,3],[2,3,1,2],[1,1,0,1]],[[1,2,0,1],[0,3,4,2],[2,3,1,2],[1,1,0,1]],[[1,2,0,1],[0,4,3,2],[2,3,1,2],[1,1,0,1]],[[1,2,0,2],[0,3,3,2],[2,3,1,2],[1,1,0,1]],[[1,3,0,1],[0,3,3,2],[2,3,1,2],[1,1,0,1]],[[2,2,0,1],[0,3,3,2],[2,3,1,2],[1,1,0,1]],[[1,2,0,1],[0,3,3,2],[2,3,1,2],[2,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,3],[1,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,4,1,2],[1,0,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,1,2],[1,0,2,0]],[[1,2,0,1],[0,3,3,3],[2,3,1,2],[1,0,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,1,2],[1,0,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,1,2],[1,0,2,0]],[[1,2,0,2],[0,3,3,2],[2,3,1,2],[1,0,2,0]],[[1,3,0,1],[0,3,3,2],[2,3,1,2],[1,0,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,1,2],[1,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,2],[1,0,1,2]],[[1,2,0,1],[0,3,3,2],[2,3,1,2],[2,0,1,1]],[[1,2,0,1],[0,3,3,2],[2,3,1,3],[1,0,1,1]],[[1,2,0,1],[0,3,3,2],[2,4,1,2],[1,0,1,1]],[[1,2,0,1],[0,3,3,2],[3,3,1,2],[1,0,1,1]],[[1,2,0,1],[0,3,3,3],[2,3,1,2],[1,0,1,1]],[[1,2,0,1],[0,3,4,2],[2,3,1,2],[1,0,1,1]],[[1,2,0,1],[0,4,3,2],[2,3,1,2],[1,0,1,1]],[[1,2,0,2],[0,3,3,2],[2,3,1,2],[1,0,1,1]],[[1,3,0,1],[0,3,3,2],[2,3,1,2],[1,0,1,1]],[[2,2,0,1],[0,3,3,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[0,1,3,0],[1,3,2,3],[1,2,2,1]],[[1,1,2,1],[0,1,3,0],[1,3,2,2],[2,2,2,1]],[[1,1,2,1],[0,1,3,0],[1,3,2,2],[1,3,2,1]],[[1,1,2,1],[0,1,3,0],[1,3,2,2],[1,2,3,1]],[[1,1,2,1],[0,1,3,0],[1,3,2,2],[1,2,2,2]],[[1,1,2,1],[0,1,3,0],[1,3,4,1],[1,2,2,1]],[[1,1,2,1],[0,1,3,0],[1,3,3,1],[2,2,2,1]],[[1,1,2,1],[0,1,3,0],[1,3,3,1],[1,3,2,1]],[[1,1,2,1],[0,1,3,0],[1,3,3,1],[1,2,3,1]],[[1,1,2,1],[0,1,3,0],[1,3,3,1],[1,2,2,2]],[[1,1,2,1],[0,1,3,0],[1,3,4,2],[1,2,1,1]],[[1,1,2,1],[0,1,3,0],[1,3,3,3],[1,2,1,1]],[[1,1,2,1],[0,1,3,0],[1,3,3,2],[1,2,1,2]],[[1,1,2,1],[0,1,3,0],[1,3,4,2],[1,2,2,0]],[[1,1,2,1],[0,1,3,0],[1,3,3,3],[1,2,2,0]],[[1,1,2,1],[0,1,3,0],[1,3,3,2],[2,2,2,0]],[[1,1,2,1],[0,1,3,0],[1,3,3,2],[1,3,2,0]],[[1,1,2,1],[0,1,3,0],[1,3,3,2],[1,2,3,0]],[[1,1,2,1],[0,1,3,0],[2,3,2,3],[0,2,2,1]],[[1,1,2,1],[0,1,3,0],[2,3,2,2],[0,3,2,1]],[[1,1,2,1],[0,1,3,0],[2,3,2,2],[0,2,3,1]],[[1,1,2,1],[0,1,3,0],[2,3,2,2],[0,2,2,2]],[[1,1,2,1],[0,1,3,0],[2,3,4,1],[0,2,2,1]],[[1,1,2,1],[0,1,3,0],[2,3,3,1],[0,3,2,1]],[[1,1,2,1],[0,1,3,0],[2,3,3,1],[0,2,3,1]],[[1,1,2,1],[0,1,3,0],[2,3,3,1],[0,2,2,2]],[[1,1,2,1],[0,1,3,0],[2,3,4,2],[0,2,1,1]],[[1,1,2,1],[0,1,3,0],[2,3,3,3],[0,2,1,1]],[[1,1,2,1],[0,1,3,0],[2,3,3,2],[0,2,1,2]],[[1,1,2,1],[0,1,3,0],[2,3,4,2],[0,2,2,0]],[[1,1,2,1],[0,1,3,0],[2,3,3,3],[0,2,2,0]],[[1,1,2,1],[0,1,3,0],[2,3,3,2],[0,3,2,0]],[[1,1,2,1],[0,1,3,0],[2,3,3,2],[0,2,3,0]],[[1,1,2,1],[0,1,3,1],[1,3,4,0],[1,2,2,1]],[[1,1,2,1],[0,1,3,1],[1,3,3,0],[2,2,2,1]],[[1,1,2,1],[0,1,3,1],[1,3,3,0],[1,3,2,1]],[[1,1,2,1],[0,1,3,1],[1,3,3,0],[1,2,3,1]],[[1,1,2,1],[0,1,3,1],[1,3,3,0],[1,2,2,2]],[[1,1,2,1],[0,1,3,1],[1,3,4,1],[1,2,2,0]],[[1,1,2,1],[0,1,3,1],[1,3,3,1],[2,2,2,0]],[[1,1,2,1],[0,1,3,1],[1,3,3,1],[1,3,2,0]],[[1,1,2,1],[0,1,3,1],[1,3,3,1],[1,2,3,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,1,2,1],[0,1,3,1],[2,3,4,0],[0,2,2,1]],[[1,1,2,1],[0,1,3,1],[2,3,3,0],[0,3,2,1]],[[1,1,2,1],[0,1,3,1],[2,3,3,0],[0,2,3,1]],[[1,1,2,1],[0,1,3,1],[2,3,3,0],[0,2,2,2]],[[1,1,2,1],[0,1,3,1],[2,3,4,1],[0,2,2,0]],[[1,1,2,1],[0,1,3,1],[2,3,3,1],[0,3,2,0]],[[1,1,2,1],[0,1,3,1],[2,3,3,1],[0,2,3,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,3],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[2,4,1,2],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[3,3,1,2],[0,2,1,0]],[[1,2,0,1],[0,3,3,3],[2,3,1,2],[0,2,1,0]],[[1,2,0,1],[0,3,4,2],[2,3,1,2],[0,2,1,0]],[[1,2,0,1],[0,4,3,2],[2,3,1,2],[0,2,1,0]],[[1,2,0,2],[0,3,3,2],[2,3,1,2],[0,2,1,0]],[[1,3,0,1],[0,3,3,2],[2,3,1,2],[0,2,1,0]],[[2,2,0,1],[0,3,3,2],[2,3,1,2],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,2],[0,2,0,2]],[[1,2,0,1],[0,3,3,2],[2,3,1,2],[0,3,0,1]],[[1,2,0,1],[0,3,3,2],[2,3,1,3],[0,2,0,1]],[[1,2,0,1],[0,3,3,2],[2,4,1,2],[0,2,0,1]],[[1,2,0,1],[0,3,3,2],[3,3,1,2],[0,2,0,1]],[[1,2,0,1],[0,3,3,3],[2,3,1,2],[0,2,0,1]],[[1,2,0,1],[0,3,4,2],[2,3,1,2],[0,2,0,1]],[[1,2,0,1],[0,4,3,2],[2,3,1,2],[0,2,0,1]],[[1,2,0,2],[0,3,3,2],[2,3,1,2],[0,2,0,1]],[[1,3,0,1],[0,3,3,2],[2,3,1,2],[0,2,0,1]],[[2,2,0,1],[0,3,3,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,2],[0,1,3,2],[1,0,3,2],[1,2,2,1]],[[1,1,2,1],[0,1,3,3],[1,0,3,2],[1,2,2,1]],[[1,1,2,1],[0,1,3,2],[1,0,3,3],[1,2,2,1]],[[1,1,2,1],[0,1,3,2],[1,0,3,2],[1,2,3,1]],[[1,1,2,1],[0,1,3,2],[1,0,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,2],[2,3,1,3],[0,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,4,1,2],[0,1,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,1,2],[0,1,2,0]],[[1,2,0,1],[0,3,3,3],[2,3,1,2],[0,1,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,1,2],[0,1,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,0,2],[0,3,3,2],[2,3,1,2],[0,1,2,0]],[[1,3,0,1],[0,3,3,2],[2,3,1,2],[0,1,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,2],[0,1,1,2]],[[1,2,0,1],[0,3,3,2],[2,3,1,3],[0,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,4,1,2],[0,1,1,1]],[[1,2,0,1],[0,3,3,2],[3,3,1,2],[0,1,1,1]],[[1,2,0,1],[0,3,3,3],[2,3,1,2],[0,1,1,1]],[[1,2,0,1],[0,3,4,2],[2,3,1,2],[0,1,1,1]],[[1,2,0,1],[0,4,3,2],[2,3,1,2],[0,1,1,1]],[[1,2,0,2],[0,3,3,2],[2,3,1,2],[0,1,1,1]],[[1,3,0,1],[0,3,3,2],[2,3,1,2],[0,1,1,1]],[[2,2,0,1],[0,3,3,2],[2,3,1,2],[0,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,4,1,1],[1,1,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,1,1],[1,1,2,0]],[[1,2,0,1],[0,3,3,3],[2,3,1,1],[1,1,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,1,1],[1,1,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,1,1],[1,1,2,0]],[[1,2,0,2],[0,3,3,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,2],[0,1,3,2],[2,0,3,2],[0,2,2,1]],[[1,1,2,1],[0,1,3,3],[2,0,3,2],[0,2,2,1]],[[1,1,2,1],[0,1,3,2],[2,0,3,3],[0,2,2,1]],[[1,1,2,1],[0,1,3,2],[2,0,3,2],[0,2,3,1]],[[1,1,2,1],[0,1,3,2],[2,0,3,2],[0,2,2,2]],[[1,3,0,1],[0,3,3,2],[2,3,1,1],[1,1,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,1,1],[1,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,1],[0,2,3,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,1],[0,3,2,0]],[[1,2,0,1],[0,3,3,2],[2,4,1,1],[0,2,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,1,1],[0,2,2,0]],[[1,2,0,1],[0,3,3,3],[2,3,1,1],[0,2,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,1,1],[0,2,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,1,1],[0,2,2,0]],[[1,2,0,2],[0,3,3,2],[2,3,1,1],[0,2,2,0]],[[1,3,0,1],[0,3,3,2],[2,3,1,1],[0,2,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,1,1],[0,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,1,0],[2,1,2,1]],[[1,2,0,1],[0,3,3,2],[2,4,1,0],[1,1,2,1]],[[1,2,0,1],[0,3,3,2],[3,3,1,0],[1,1,2,1]],[[1,2,0,1],[0,3,3,3],[2,3,1,0],[1,1,2,1]],[[1,2,0,1],[0,3,4,2],[2,3,1,0],[1,1,2,1]],[[1,2,0,1],[0,4,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,0,2],[0,3,3,2],[2,3,1,0],[1,1,2,1]],[[1,3,0,1],[0,3,3,2],[2,3,1,0],[1,1,2,1]],[[2,2,0,1],[0,3,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,0,1],[0,3,3,2],[2,3,1,0],[0,2,2,2]],[[1,2,0,1],[0,3,3,2],[2,3,1,0],[0,2,3,1]],[[1,2,0,1],[0,3,3,2],[2,3,1,0],[0,3,2,1]],[[1,2,0,1],[0,3,3,2],[2,4,1,0],[0,2,2,1]],[[1,2,0,1],[0,3,3,2],[3,3,1,0],[0,2,2,1]],[[1,2,0,1],[0,3,3,3],[2,3,1,0],[0,2,2,1]],[[1,2,0,1],[0,3,4,2],[2,3,1,0],[0,2,2,1]],[[1,2,0,1],[0,4,3,2],[2,3,1,0],[0,2,2,1]],[[1,2,0,2],[0,3,3,2],[2,3,1,0],[0,2,2,1]],[[1,3,0,1],[0,3,3,2],[2,3,1,0],[0,2,2,1]],[[2,2,0,1],[0,3,3,2],[2,3,1,0],[0,2,2,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,0,3],[1,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,4,0,2],[1,1,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,0,2],[1,1,2,0]],[[1,2,0,1],[0,3,3,3],[2,3,0,2],[1,1,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,0,2],[1,1,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,0,2],[0,3,3,2],[2,3,0,2],[1,1,2,0]],[[1,3,0,1],[0,3,3,2],[2,3,0,2],[1,1,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[1,1,1,2]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[2,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,3],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,4,0,2],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[3,3,0,2],[1,1,1,1]],[[1,2,0,1],[0,3,3,3],[2,3,0,2],[1,1,1,1]],[[1,2,0,1],[0,3,4,2],[2,3,0,2],[1,1,1,1]],[[1,2,0,1],[0,4,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,0,2],[0,3,3,2],[2,3,0,2],[1,1,1,1]],[[1,3,0,1],[0,3,3,2],[2,3,0,2],[1,1,1,1]],[[2,2,0,1],[0,3,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[1,0,2,2]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[1,0,3,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[2,0,2,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,3],[1,0,2,1]],[[1,2,0,1],[0,3,3,2],[2,4,0,2],[1,0,2,1]],[[1,2,0,1],[0,3,3,2],[3,3,0,2],[1,0,2,1]],[[1,2,0,1],[0,3,3,3],[2,3,0,2],[1,0,2,1]],[[1,2,0,1],[0,3,4,2],[2,3,0,2],[1,0,2,1]],[[1,2,0,1],[0,4,3,2],[2,3,0,2],[1,0,2,1]],[[1,2,0,2],[0,3,3,2],[2,3,0,2],[1,0,2,1]],[[1,3,0,1],[0,3,3,2],[2,3,0,2],[1,0,2,1]],[[2,2,0,1],[0,3,3,2],[2,3,0,2],[1,0,2,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[0,2,3,0]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[0,3,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,0,3],[0,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,4,0,2],[0,2,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,0,2],[0,2,2,0]],[[1,2,0,1],[0,3,3,3],[2,3,0,2],[0,2,2,0]],[[1,2,0,1],[0,3,4,2],[2,3,0,2],[0,2,2,0]],[[1,2,0,1],[0,4,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,0,2],[0,3,3,2],[2,3,0,2],[0,2,2,0]],[[1,3,0,1],[0,3,3,2],[2,3,0,2],[0,2,2,0]],[[2,2,0,1],[0,3,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[0,2,1,2]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[0,3,1,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,3],[0,2,1,1]],[[1,2,0,1],[0,3,3,2],[2,4,0,2],[0,2,1,1]],[[1,2,0,1],[0,3,3,2],[3,3,0,2],[0,2,1,1]],[[1,2,0,1],[0,3,3,3],[2,3,0,2],[0,2,1,1]],[[1,2,0,1],[0,3,4,2],[2,3,0,2],[0,2,1,1]],[[1,2,0,1],[0,4,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,0,2],[0,3,3,2],[2,3,0,2],[0,2,1,1]],[[1,3,0,1],[0,3,3,2],[2,3,0,2],[0,2,1,1]],[[2,2,0,1],[0,3,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[0,1,2,2]],[[1,2,0,1],[0,3,3,2],[2,3,0,2],[0,1,3,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,3],[0,1,2,1]],[[1,1,2,1],[0,2,0,2],[0,3,3,3],[1,2,2,1]],[[1,1,2,1],[0,2,0,2],[0,3,3,2],[1,3,2,1]],[[1,1,2,1],[0,2,0,2],[0,3,3,2],[1,2,3,1]],[[1,1,2,1],[0,2,0,2],[0,3,3,2],[1,2,2,2]],[[1,1,2,1],[0,2,0,2],[1,2,3,3],[1,2,2,1]],[[1,1,2,1],[0,2,0,2],[1,2,3,2],[2,2,2,1]],[[1,1,2,1],[0,2,0,2],[1,2,3,2],[1,3,2,1]],[[1,1,2,1],[0,2,0,2],[1,2,3,2],[1,2,3,1]],[[1,1,2,1],[0,2,0,2],[1,2,3,2],[1,2,2,2]],[[1,1,2,1],[0,2,0,2],[1,3,3,3],[1,1,2,1]],[[1,1,2,1],[0,2,0,2],[1,3,3,2],[1,1,3,1]],[[1,1,2,1],[0,2,0,2],[1,3,3,2],[1,1,2,2]],[[1,1,2,1],[0,2,0,2],[2,1,3,3],[1,2,2,1]],[[1,1,2,1],[0,2,0,2],[2,1,3,2],[2,2,2,1]],[[1,1,2,1],[0,2,0,2],[2,1,3,2],[1,3,2,1]],[[1,1,2,1],[0,2,0,2],[2,1,3,2],[1,2,3,1]],[[1,1,2,1],[0,2,0,2],[2,1,3,2],[1,2,2,2]],[[1,1,2,1],[0,2,0,2],[2,2,3,3],[0,2,2,1]],[[1,1,2,1],[0,2,0,2],[2,2,3,2],[0,3,2,1]],[[1,1,2,1],[0,2,0,2],[2,2,3,2],[0,2,3,1]],[[1,1,2,1],[0,2,0,2],[2,2,3,2],[0,2,2,2]],[[1,1,2,1],[0,2,0,2],[2,3,3,3],[0,1,2,1]],[[1,1,2,1],[0,2,0,2],[2,3,3,2],[0,1,3,1]],[[1,1,2,1],[0,2,0,2],[2,3,3,2],[0,1,2,2]],[[1,1,2,1],[0,2,0,2],[2,3,3,3],[1,0,2,1]],[[1,1,2,1],[0,2,0,2],[2,3,3,2],[1,0,3,1]],[[1,1,2,1],[0,2,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,0,1],[0,3,3,2],[2,4,0,2],[0,1,2,1]],[[1,2,0,1],[0,3,3,2],[3,3,0,2],[0,1,2,1]],[[1,2,0,1],[0,3,3,3],[2,3,0,2],[0,1,2,1]],[[1,2,0,1],[0,3,4,2],[2,3,0,2],[0,1,2,1]],[[1,2,0,1],[0,4,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,2],[0,2,1,2],[0,2,3,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,3],[0,2,3,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[0,2,3,3],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[0,2,3,2],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[0,2,3,2],[1,2,2,2]],[[1,1,3,1],[0,2,1,2],[0,3,2,2],[1,2,2,1]],[[1,1,2,2],[0,2,1,2],[0,3,2,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,3],[0,3,2,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[0,3,2,3],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[0,3,2,2],[1,3,2,1]],[[1,1,2,1],[0,2,1,2],[0,3,2,2],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[0,3,2,2],[1,2,2,2]],[[1,1,2,1],[0,2,1,2],[0,3,4,1],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[0,3,3,1],[1,3,2,1]],[[1,1,2,1],[0,2,1,2],[0,3,3,1],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[0,3,3,1],[1,2,2,2]],[[1,1,3,1],[0,2,1,2],[0,3,3,2],[1,2,1,1]],[[1,1,2,2],[0,2,1,2],[0,3,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,1,3],[0,3,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[0,3,4,2],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[0,3,3,3],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[0,3,3,2],[1,2,1,2]],[[1,1,3,1],[0,2,1,2],[0,3,3,2],[1,2,2,0]],[[1,1,2,2],[0,2,1,2],[0,3,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,3],[0,3,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[0,3,4,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[0,3,3,3],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[0,3,3,2],[1,3,2,0]],[[1,1,2,1],[0,2,1,2],[0,3,3,2],[1,2,3,0]],[[1,1,2,2],[0,2,1,2],[1,1,3,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,3],[1,1,3,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,1,3,3],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,1,3,2],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[1,1,3,2],[1,2,2,2]],[[1,1,3,1],[0,2,1,2],[1,2,2,2],[1,2,2,1]],[[1,1,2,2],[0,2,1,2],[1,2,2,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,3],[1,2,2,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[0,2,1,2],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[1,2,2,2],[1,2,2,2]],[[1,1,2,1],[0,2,1,2],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[0,2,1,2],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[1,2,3,1],[1,2,2,2]],[[1,1,3,1],[0,2,1,2],[1,2,3,2],[1,2,1,1]],[[1,1,2,2],[0,2,1,2],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,1,3],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[1,2,3,2],[1,2,1,2]],[[1,1,3,1],[0,2,1,2],[1,2,3,2],[1,2,2,0]],[[1,1,2,2],[0,2,1,2],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,3],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[0,2,1,2],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[0,2,1,2],[1,2,3,2],[1,2,3,0]],[[1,1,3,1],[0,2,1,2],[1,3,1,2],[1,2,2,1]],[[1,1,2,2],[0,2,1,2],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,3],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,1,3],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[0,2,1,2],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[1,3,2,1],[1,2,2,2]],[[1,1,3,1],[0,2,1,2],[1,3,2,2],[1,1,2,1]],[[1,1,2,2],[0,2,1,2],[1,3,2,2],[1,1,2,1]],[[1,1,2,1],[0,2,1,3],[1,3,2,2],[1,1,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[0,2,1,2],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[0,2,1,2],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[0,2,1,2],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[0,2,1,2],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[0,2,1,2],[1,4,3,1],[1,1,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,1],[1,1,2,2]],[[1,1,2,1],[0,2,1,2],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[1,3,4,1],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,1],[1,3,1,1]],[[1,1,3,1],[0,2,1,2],[1,3,3,2],[1,0,2,1]],[[1,1,2,2],[0,2,1,2],[1,3,3,2],[1,0,2,1]],[[1,1,2,1],[0,2,1,3],[1,3,3,2],[1,0,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,4,2],[1,0,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,3],[1,0,2,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,2],[1,0,2,2]],[[1,1,3,1],[0,2,1,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,2],[0,2,1,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[0,2,1,3],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[0,2,1,2],[1,4,3,2],[1,1,1,1]],[[1,1,2,1],[0,2,1,2],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,2],[1,1,1,2]],[[1,1,3,1],[0,2,1,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,2],[0,2,1,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[0,2,1,3],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[0,2,1,2],[1,4,3,2],[1,1,2,0]],[[1,1,2,1],[0,2,1,2],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[0,2,1,2],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[0,2,1,2],[1,3,3,2],[1,1,3,0]],[[1,1,3,1],[0,2,1,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,2],[0,2,1,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[0,2,1,3],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[0,2,1,2],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[0,2,1,2],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[0,2,1,2],[1,3,3,2],[1,2,0,2]],[[1,1,3,1],[0,2,1,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,2],[0,2,1,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[0,2,1,3],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[0,2,1,2],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[0,2,1,2],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[0,2,1,2],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[0,2,1,2],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[0,2,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,0,2],[0,3,3,2],[2,3,0,2],[0,1,2,1]],[[1,3,0,1],[0,3,3,2],[2,3,0,2],[0,1,2,1]],[[2,2,0,1],[0,3,3,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,2],[0,2,1,2],[2,0,3,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,3],[2,0,3,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,0,3,3],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,0,3,2],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[2,0,3,2],[1,2,2,2]],[[1,1,3,1],[0,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,2],[0,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,3],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[3,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[0,2,1,2],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[2,1,2,2],[1,2,2,2]],[[1,1,2,1],[0,2,1,2],[3,1,3,1],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[0,2,1,2],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[2,1,3,1],[1,2,2,2]],[[1,1,2,2],[0,2,1,2],[2,1,3,2],[0,2,2,1]],[[1,1,2,1],[0,2,1,3],[2,1,3,2],[0,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,1,3,3],[0,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,1,3,2],[0,2,3,1]],[[1,1,2,1],[0,2,1,2],[2,1,3,2],[0,2,2,2]],[[1,1,3,1],[0,2,1,2],[2,1,3,2],[1,2,1,1]],[[1,1,2,2],[0,2,1,2],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,1,3],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[2,1,3,2],[1,2,1,2]],[[1,1,3,1],[0,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,2],[0,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,3],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[3,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[0,2,1,2],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[0,2,1,2],[2,1,3,2],[1,2,3,0]],[[1,1,3,1],[0,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,2],[0,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,3],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,1,3],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[2,2,1,2],[1,2,2,2]],[[1,1,2,1],[0,2,1,2],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[0,2,1,2],[2,2,2,1],[1,2,2,2]],[[1,1,3,1],[0,2,1,2],[2,2,2,2],[0,2,2,1]],[[1,1,2,2],[0,2,1,2],[2,2,2,2],[0,2,2,1]],[[1,1,2,1],[0,2,1,3],[2,2,2,2],[0,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[0,2,1,2],[2,2,2,2],[0,2,2,2]],[[1,1,2,1],[0,2,1,2],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,1,2],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[0,2,1,2],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[0,2,1,2],[2,2,2,2],[1,2,3,0]],[[1,1,2,1],[0,2,1,2],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[0,2,1,2],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[0,2,1,2],[2,2,3,1],[0,2,2,2]],[[1,1,2,1],[0,2,1,2],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,1,2],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[0,2,1,2],[2,2,3,1],[1,3,1,1]],[[1,1,3,1],[0,2,1,2],[2,2,3,2],[0,2,1,1]],[[1,1,2,2],[0,2,1,2],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[0,2,1,3],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[0,2,1,2],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[0,2,1,2],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[0,2,1,2],[2,2,3,2],[0,2,1,2]],[[1,1,3,1],[0,2,1,2],[2,2,3,2],[0,2,2,0]],[[1,1,2,2],[0,2,1,2],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[0,2,1,3],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[0,2,1,2],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[0,2,1,2],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[0,2,1,2],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[0,2,1,2],[2,2,3,2],[0,2,3,0]],[[1,1,2,1],[0,2,1,2],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[0,2,1,2],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[0,2,1,2],[2,2,3,2],[1,3,0,1]],[[1,1,2,1],[0,2,1,2],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[0,2,1,2],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[0,2,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[0,3,3,2],[2,3,0,1],[1,3,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,0,1],[2,2,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,0,1],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,3,0,1],[2,1,2,1]],[[1,2,0,1],[0,3,3,2],[2,4,0,1],[1,1,2,1]],[[1,1,3,1],[0,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,2],[0,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[0,2,1,3],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[0,2,1,2],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,1,3],[0,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[0,2,1,2],[2,3,1,2],[0,2,2,2]],[[1,1,2,1],[0,2,1,2],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[0,2,1,2],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,1,2],[2,1,2,1]],[[1,1,2,1],[0,2,1,2],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[0,2,1,2],[2,3,2,1],[0,2,2,2]],[[1,1,2,1],[0,2,1,2],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[0,2,1,2],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,2,1],[2,1,2,1]],[[1,1,3,1],[0,2,1,2],[2,3,2,2],[0,1,2,1]],[[1,1,2,2],[0,2,1,2],[2,3,2,2],[0,1,2,1]],[[1,1,2,1],[0,2,1,3],[2,3,2,2],[0,1,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[0,2,1,2],[2,3,2,2],[0,1,2,2]],[[1,1,2,1],[0,2,1,2],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[0,2,1,2],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[0,2,1,2],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[0,2,1,2],[2,3,2,2],[0,2,3,0]],[[1,1,3,1],[0,2,1,2],[2,3,2,2],[1,0,2,1]],[[1,1,2,2],[0,2,1,2],[2,3,2,2],[1,0,2,1]],[[1,1,2,1],[0,2,1,3],[2,3,2,2],[1,0,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[0,2,1,2],[2,3,2,2],[1,0,2,2]],[[1,1,2,1],[0,2,1,2],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,2,1,2],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[0,2,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[0,3,3,2],[3,3,0,1],[1,1,2,1]],[[1,2,0,1],[0,3,3,3],[2,3,0,1],[1,1,2,1]],[[1,2,0,1],[0,3,4,2],[2,3,0,1],[1,1,2,1]],[[1,2,0,1],[0,4,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,0,2],[0,3,3,2],[2,3,0,1],[1,1,2,1]],[[1,3,0,1],[0,3,3,2],[2,3,0,1],[1,1,2,1]],[[2,2,0,1],[0,3,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,1],[0,2,2,2]],[[1,2,0,1],[0,3,3,2],[2,3,0,1],[0,2,3,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,1],[0,3,2,1]],[[1,1,2,1],[0,2,1,2],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[0,2,1,2],[2,4,3,1],[0,1,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,1],[0,1,2,2]],[[1,1,2,1],[0,2,1,2],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[0,2,1,2],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[0,2,1,2],[2,3,4,1],[0,2,1,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,1],[0,3,1,1]],[[1,1,2,1],[0,2,1,2],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[0,2,1,2],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,1],[2,0,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,1],[1,0,2,2]],[[1,1,2,1],[0,2,1,2],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,2,1,2],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[0,2,1,2],[2,3,4,1],[1,1,1,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,4,0,1],[0,2,2,1]],[[1,2,0,1],[0,3,3,2],[3,3,0,1],[0,2,2,1]],[[1,2,0,1],[0,3,3,3],[2,3,0,1],[0,2,2,1]],[[1,2,0,1],[0,3,4,2],[2,3,0,1],[0,2,2,1]],[[1,2,0,1],[0,4,3,2],[2,3,0,1],[0,2,2,1]],[[1,2,0,2],[0,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,3,0,1],[0,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,1,3,1],[0,2,1,2],[2,3,3,2],[0,0,2,1]],[[1,1,2,2],[0,2,1,2],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[0,2,1,3],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[0,0,2,2]],[[1,1,3,1],[0,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,2],[0,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,2,1,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,2,1,2],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,2,1,2],[2,4,3,2],[0,1,1,1]],[[1,1,2,1],[0,2,1,2],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[0,1,1,2]],[[1,1,3,1],[0,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,2],[0,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,2,1,3],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,2,1,2],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,2,1,2],[2,4,3,2],[0,1,2,0]],[[1,1,2,1],[0,2,1,2],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[0,2,1,2],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[0,1,3,0]],[[1,1,3,1],[0,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,2],[0,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,2,1,3],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,2,1,2],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,2,1,2],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[0,2,1,2],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[0,3,0,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[0,2,0,2]],[[1,1,3,1],[0,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,2],[0,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,2,1,3],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,2,1,2],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,2,1,2],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[0,2,1,2],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[0,2,1,2],[2,3,3,3],[0,2,1,0]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[0,3,1,0]],[[2,2,0,1],[0,3,3,2],[2,3,0,1],[0,2,2,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,0],[1,3,2,1]],[[1,2,0,1],[0,3,3,2],[2,3,0,0],[2,2,2,1]],[[1,2,0,1],[0,3,3,2],[3,3,0,0],[1,2,2,1]],[[1,1,3,1],[0,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,2],[0,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,2,1,3],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,2,1,2],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,2,1,2],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[0,2,1,2],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[2,0,1,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[1,0,1,2]],[[1,1,3,1],[0,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,2],[0,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,2,1,3],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,2,1,2],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,2,1,2],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[0,2,1,2],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[0,2,1,2],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[1,0,3,0]],[[1,1,3,1],[0,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,2],[0,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,2,1,3],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,2,1,2],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,2,1,2],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[0,2,1,2],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[1,1,0,2]],[[1,1,3,1],[0,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,2],[0,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,2,1,3],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,2,1,2],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,2,1,2],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[0,2,1,2],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[0,2,1,2],[2,3,3,3],[1,1,1,0]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[2,1,1,0]],[[1,1,2,1],[0,2,1,2],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,2,1,2],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[0,2,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[0,3,3,2],[2,2,3,3],[1,0,0,1]],[[1,2,0,1],[0,3,3,3],[2,2,3,2],[1,0,0,1]],[[1,2,0,1],[0,3,4,2],[2,2,3,2],[1,0,0,1]],[[1,2,0,1],[0,4,3,2],[2,2,3,2],[1,0,0,1]],[[1,2,0,2],[0,3,3,2],[2,2,3,2],[1,0,0,1]],[[1,3,0,1],[0,3,3,2],[2,2,3,2],[1,0,0,1]],[[2,2,0,1],[0,3,3,2],[2,2,3,2],[1,0,0,1]],[[1,1,3,1],[0,2,2,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,2],[0,2,2,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,3],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[0,3,1,3],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[0,3,1,2],[1,3,2,1]],[[1,1,2,1],[0,2,2,2],[0,3,1,2],[1,2,3,1]],[[1,1,2,1],[0,2,2,2],[0,3,1,2],[1,2,2,2]],[[1,1,3,1],[0,2,2,2],[0,3,2,2],[1,2,1,1]],[[1,1,2,2],[0,2,2,2],[0,3,2,2],[1,2,1,1]],[[1,1,2,1],[0,2,2,3],[0,3,2,2],[1,2,1,1]],[[1,1,2,1],[0,2,2,2],[0,3,2,3],[1,2,1,1]],[[1,1,2,1],[0,2,2,2],[0,3,2,2],[1,2,1,2]],[[1,1,3,1],[0,2,2,2],[0,3,2,2],[1,2,2,0]],[[1,1,2,2],[0,2,2,2],[0,3,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,2,3],[0,3,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,2,2],[0,3,2,3],[1,2,2,0]],[[1,1,3,1],[0,2,2,2],[0,3,3,0],[1,2,2,1]],[[1,1,2,2],[0,2,2,2],[0,3,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,2,3],[0,3,3,0],[1,2,2,1]],[[1,1,3,1],[0,2,2,2],[0,3,3,1],[1,2,1,1]],[[1,1,2,2],[0,2,2,2],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,2,3],[0,3,3,1],[1,2,1,1]],[[1,1,3,1],[0,2,2,2],[0,3,3,1],[1,2,2,0]],[[1,1,2,2],[0,2,2,2],[0,3,3,1],[1,2,2,0]],[[1,1,2,1],[0,2,2,3],[0,3,3,1],[1,2,2,0]],[[1,1,3,1],[0,2,2,2],[1,2,1,2],[1,2,2,1]],[[1,1,2,2],[0,2,2,2],[1,2,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,3],[1,2,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[1,2,1,3],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[1,2,1,2],[2,2,2,1]],[[1,1,2,1],[0,2,2,2],[1,2,1,2],[1,3,2,1]],[[1,1,2,1],[0,2,2,2],[1,2,1,2],[1,2,3,1]],[[1,1,2,1],[0,2,2,2],[1,2,1,2],[1,2,2,2]],[[1,1,3,1],[0,2,2,2],[1,2,2,2],[1,2,1,1]],[[1,1,2,2],[0,2,2,2],[1,2,2,2],[1,2,1,1]],[[1,1,2,1],[0,2,2,3],[1,2,2,2],[1,2,1,1]],[[1,1,2,1],[0,2,2,2],[1,2,2,3],[1,2,1,1]],[[1,1,2,1],[0,2,2,2],[1,2,2,2],[1,2,1,2]],[[1,1,3,1],[0,2,2,2],[1,2,2,2],[1,2,2,0]],[[1,1,2,2],[0,2,2,2],[1,2,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,2,3],[1,2,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,2,2],[1,2,2,3],[1,2,2,0]],[[1,1,3,1],[0,2,2,2],[1,2,3,0],[1,2,2,1]],[[1,1,2,2],[0,2,2,2],[1,2,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,2,3],[1,2,3,0],[1,2,2,1]],[[1,1,3,1],[0,2,2,2],[1,2,3,1],[1,2,1,1]],[[1,1,2,2],[0,2,2,2],[1,2,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,2,3],[1,2,3,1],[1,2,1,1]],[[1,1,3,1],[0,2,2,2],[1,2,3,1],[1,2,2,0]],[[1,1,2,2],[0,2,2,2],[1,2,3,1],[1,2,2,0]],[[1,1,2,1],[0,2,2,3],[1,2,3,1],[1,2,2,0]],[[1,1,3,1],[0,2,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,2],[0,2,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,3],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[1,4,0,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[1,3,0,3],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[1,3,0,2],[2,2,2,1]],[[1,1,2,1],[0,2,2,2],[1,3,0,2],[1,3,2,1]],[[1,1,2,1],[0,2,2,2],[1,3,0,2],[1,2,3,1]],[[1,1,2,1],[0,2,2,2],[1,3,0,2],[1,2,2,2]],[[1,1,3,1],[0,2,2,2],[1,3,1,2],[1,1,2,1]],[[1,1,2,2],[0,2,2,2],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[0,2,2,3],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[0,2,2,2],[1,3,1,3],[1,1,2,1]],[[1,1,2,1],[0,2,2,2],[1,3,1,2],[1,1,3,1]],[[1,1,2,1],[0,2,2,2],[1,3,1,2],[1,1,2,2]],[[1,1,3,1],[0,2,2,2],[1,3,2,2],[1,0,2,1]],[[1,1,2,2],[0,2,2,2],[1,3,2,2],[1,0,2,1]],[[1,1,2,1],[0,2,2,3],[1,3,2,2],[1,0,2,1]],[[1,1,2,1],[0,2,2,2],[1,3,2,3],[1,0,2,1]],[[1,1,2,1],[0,2,2,2],[1,3,2,2],[1,0,2,2]],[[1,1,3,1],[0,2,2,2],[1,3,2,2],[1,1,1,1]],[[1,1,2,2],[0,2,2,2],[1,3,2,2],[1,1,1,1]],[[1,1,2,1],[0,2,2,3],[1,3,2,2],[1,1,1,1]],[[1,1,2,1],[0,2,2,2],[1,3,2,3],[1,1,1,1]],[[1,1,2,1],[0,2,2,2],[1,3,2,2],[1,1,1,2]],[[1,1,3,1],[0,2,2,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,2],[0,2,2,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,2,2,3],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,2,2,2],[1,3,2,3],[1,1,2,0]],[[1,1,3,1],[0,2,2,2],[1,3,2,2],[1,2,0,1]],[[1,1,2,2],[0,2,2,2],[1,3,2,2],[1,2,0,1]],[[1,1,2,1],[0,2,2,3],[1,3,2,2],[1,2,0,1]],[[1,1,2,1],[0,2,2,2],[1,3,2,3],[1,2,0,1]],[[1,1,2,1],[0,2,2,2],[1,3,2,2],[1,2,0,2]],[[1,1,3,1],[0,2,2,2],[1,3,2,2],[1,2,1,0]],[[1,1,2,2],[0,2,2,2],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[0,2,2,3],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[0,2,2,2],[1,3,2,3],[1,2,1,0]],[[1,1,3,1],[0,2,2,2],[1,3,3,0],[1,1,2,1]],[[1,1,2,2],[0,2,2,2],[1,3,3,0],[1,1,2,1]],[[1,1,2,1],[0,2,2,3],[1,3,3,0],[1,1,2,1]],[[1,1,3,1],[0,2,2,2],[1,3,3,0],[1,2,1,1]],[[1,1,2,2],[0,2,2,2],[1,3,3,0],[1,2,1,1]],[[1,1,2,1],[0,2,2,3],[1,3,3,0],[1,2,1,1]],[[1,1,3,1],[0,2,2,2],[1,3,3,1],[1,0,2,1]],[[1,1,2,2],[0,2,2,2],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[0,2,2,3],[1,3,3,1],[1,0,2,1]],[[1,1,3,1],[0,2,2,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,2],[0,2,2,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,2,2,3],[1,3,3,1],[1,1,1,1]],[[1,1,3,1],[0,2,2,2],[1,3,3,1],[1,1,2,0]],[[1,1,2,2],[0,2,2,2],[1,3,3,1],[1,1,2,0]],[[1,1,2,1],[0,2,2,3],[1,3,3,1],[1,1,2,0]],[[1,1,3,1],[0,2,2,2],[1,3,3,1],[1,2,0,1]],[[1,1,2,2],[0,2,2,2],[1,3,3,1],[1,2,0,1]],[[1,1,2,1],[0,2,2,3],[1,3,3,1],[1,2,0,1]],[[1,1,3,1],[0,2,2,2],[1,3,3,1],[1,2,1,0]],[[1,1,2,2],[0,2,2,2],[1,3,3,1],[1,2,1,0]],[[1,1,2,1],[0,2,2,3],[1,3,3,1],[1,2,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,3,3],[0,1,0,1]],[[1,2,0,1],[0,3,3,3],[2,2,3,2],[0,1,0,1]],[[1,2,0,1],[0,3,4,2],[2,2,3,2],[0,1,0,1]],[[1,2,0,1],[0,4,3,2],[2,2,3,2],[0,1,0,1]],[[1,2,0,2],[0,3,3,2],[2,2,3,2],[0,1,0,1]],[[1,1,3,1],[0,2,2,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,2],[0,2,2,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,2,2,3],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,2,2,2],[1,3,3,3],[1,1,0,1]],[[1,3,0,1],[0,3,3,2],[2,2,3,2],[0,1,0,1]],[[2,2,0,1],[0,3,3,2],[2,2,3,2],[0,1,0,1]],[[1,1,3,1],[0,2,2,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,2],[0,2,2,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,3],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[3,1,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[2,1,1,3],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[2,1,1,2],[2,2,2,1]],[[1,1,2,1],[0,2,2,2],[2,1,1,2],[1,3,2,1]],[[1,1,2,1],[0,2,2,2],[2,1,1,2],[1,2,3,1]],[[1,1,2,1],[0,2,2,2],[2,1,1,2],[1,2,2,2]],[[1,1,3,1],[0,2,2,2],[2,1,2,2],[1,2,1,1]],[[1,1,2,2],[0,2,2,2],[2,1,2,2],[1,2,1,1]],[[1,1,2,1],[0,2,2,3],[2,1,2,2],[1,2,1,1]],[[1,1,2,1],[0,2,2,2],[2,1,2,3],[1,2,1,1]],[[1,1,2,1],[0,2,2,2],[2,1,2,2],[1,2,1,2]],[[1,1,3,1],[0,2,2,2],[2,1,2,2],[1,2,2,0]],[[1,1,2,2],[0,2,2,2],[2,1,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,2,3],[2,1,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,2,2],[2,1,2,3],[1,2,2,0]],[[1,1,3,1],[0,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,2],[0,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,2,3],[2,1,3,0],[1,2,2,1]],[[1,1,3,1],[0,2,2,2],[2,1,3,1],[1,2,1,1]],[[1,1,2,2],[0,2,2,2],[2,1,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,2,3],[2,1,3,1],[1,2,1,1]],[[1,1,3,1],[0,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,2],[0,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,1],[0,2,2,3],[2,1,3,1],[1,2,2,0]],[[1,1,3,1],[0,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,2],[0,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,3],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[3,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[2,2,0,3],[1,2,2,1]],[[1,1,2,1],[0,2,2,2],[2,2,0,2],[2,2,2,1]],[[1,1,2,1],[0,2,2,2],[2,2,0,2],[1,3,2,1]],[[1,1,2,1],[0,2,2,2],[2,2,0,2],[1,2,3,1]],[[1,1,2,1],[0,2,2,2],[2,2,0,2],[1,2,2,2]],[[1,1,3,1],[0,2,2,2],[2,2,1,2],[0,2,2,1]],[[1,1,2,2],[0,2,2,2],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[0,2,2,3],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[0,2,2,2],[2,2,1,3],[0,2,2,1]],[[1,1,2,1],[0,2,2,2],[2,2,1,2],[0,3,2,1]],[[1,1,2,1],[0,2,2,2],[2,2,1,2],[0,2,3,1]],[[1,1,2,1],[0,2,2,2],[2,2,1,2],[0,2,2,2]],[[1,1,3,1],[0,2,2,2],[2,2,2,2],[0,2,1,1]],[[1,1,2,2],[0,2,2,2],[2,2,2,2],[0,2,1,1]],[[1,1,2,1],[0,2,2,3],[2,2,2,2],[0,2,1,1]],[[1,1,2,1],[0,2,2,2],[2,2,2,3],[0,2,1,1]],[[1,1,2,1],[0,2,2,2],[2,2,2,2],[0,2,1,2]],[[1,1,3,1],[0,2,2,2],[2,2,2,2],[0,2,2,0]],[[1,1,2,2],[0,2,2,2],[2,2,2,2],[0,2,2,0]],[[1,1,2,1],[0,2,2,3],[2,2,2,2],[0,2,2,0]],[[1,1,2,1],[0,2,2,2],[2,2,2,3],[0,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,2,4,1],[1,1,1,0]],[[1,2,0,1],[0,3,3,3],[2,2,3,1],[1,1,1,0]],[[1,2,0,1],[0,3,4,2],[2,2,3,1],[1,1,1,0]],[[1,2,0,1],[0,4,3,2],[2,2,3,1],[1,1,1,0]],[[1,2,0,2],[0,3,3,2],[2,2,3,1],[1,1,1,0]],[[1,3,0,1],[0,3,3,2],[2,2,3,1],[1,1,1,0]],[[2,2,0,1],[0,3,3,2],[2,2,3,1],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,4,1],[1,1,0,1]],[[1,2,0,1],[0,3,3,3],[2,2,3,1],[1,1,0,1]],[[1,1,3,1],[0,2,2,2],[2,2,3,0],[0,2,2,1]],[[1,1,2,2],[0,2,2,2],[2,2,3,0],[0,2,2,1]],[[1,1,2,1],[0,2,2,3],[2,2,3,0],[0,2,2,1]],[[1,1,3,1],[0,2,2,2],[2,2,3,1],[0,2,1,1]],[[1,1,2,2],[0,2,2,2],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[0,2,2,3],[2,2,3,1],[0,2,1,1]],[[1,1,3,1],[0,2,2,2],[2,2,3,1],[0,2,2,0]],[[1,1,2,2],[0,2,2,2],[2,2,3,1],[0,2,2,0]],[[1,1,2,1],[0,2,2,3],[2,2,3,1],[0,2,2,0]],[[1,2,0,1],[0,3,4,2],[2,2,3,1],[1,1,0,1]],[[1,2,0,1],[0,4,3,2],[2,2,3,1],[1,1,0,1]],[[1,2,0,2],[0,3,3,2],[2,2,3,1],[1,1,0,1]],[[1,3,0,1],[0,3,3,2],[2,2,3,1],[1,1,0,1]],[[2,2,0,1],[0,3,3,2],[2,2,3,1],[1,1,0,1]],[[1,2,0,1],[0,3,3,2],[2,2,3,1],[1,0,3,0]],[[1,2,0,1],[0,3,3,2],[2,2,4,1],[1,0,2,0]],[[1,2,0,1],[0,3,3,3],[2,2,3,1],[1,0,2,0]],[[1,2,0,1],[0,3,4,2],[2,2,3,1],[1,0,2,0]],[[1,2,0,1],[0,4,3,2],[2,2,3,1],[1,0,2,0]],[[1,2,0,2],[0,3,3,2],[2,2,3,1],[1,0,2,0]],[[1,3,0,1],[0,3,3,2],[2,2,3,1],[1,0,2,0]],[[2,2,0,1],[0,3,3,2],[2,2,3,1],[1,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,2,4,1],[1,0,1,1]],[[1,2,0,1],[0,3,3,3],[2,2,3,1],[1,0,1,1]],[[1,2,0,1],[0,3,4,2],[2,2,3,1],[1,0,1,1]],[[1,2,0,1],[0,4,3,2],[2,2,3,1],[1,0,1,1]],[[1,2,0,2],[0,3,3,2],[2,2,3,1],[1,0,1,1]],[[1,3,0,1],[0,3,3,2],[2,2,3,1],[1,0,1,1]],[[2,2,0,1],[0,3,3,2],[2,2,3,1],[1,0,1,1]],[[1,1,3,1],[0,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,2],[0,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,2,2,3],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,2,2,2],[3,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,2,2,2],[2,4,0,2],[0,2,2,1]],[[1,1,2,1],[0,2,2,2],[2,3,0,3],[0,2,2,1]],[[1,1,2,1],[0,2,2,2],[2,3,0,2],[0,3,2,1]],[[1,1,2,1],[0,2,2,2],[2,3,0,2],[0,2,3,1]],[[1,1,2,1],[0,2,2,2],[2,3,0,2],[0,2,2,2]],[[1,1,2,1],[0,2,2,2],[3,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,2,2,2],[2,4,0,2],[1,1,2,1]],[[1,1,2,1],[0,2,2,2],[2,3,0,2],[2,1,2,1]],[[1,1,3,1],[0,2,2,2],[2,3,1,2],[0,1,2,1]],[[1,1,2,2],[0,2,2,2],[2,3,1,2],[0,1,2,1]],[[1,1,2,1],[0,2,2,3],[2,3,1,2],[0,1,2,1]],[[1,1,2,1],[0,2,2,2],[2,3,1,3],[0,1,2,1]],[[1,1,2,1],[0,2,2,2],[2,3,1,2],[0,1,3,1]],[[1,1,2,1],[0,2,2,2],[2,3,1,2],[0,1,2,2]],[[1,1,3,1],[0,2,2,2],[2,3,1,2],[1,0,2,1]],[[1,1,2,2],[0,2,2,2],[2,3,1,2],[1,0,2,1]],[[1,1,2,1],[0,2,2,3],[2,3,1,2],[1,0,2,1]],[[1,1,2,1],[0,2,2,2],[2,3,1,3],[1,0,2,1]],[[1,1,2,1],[0,2,2,2],[2,3,1,2],[1,0,3,1]],[[1,1,2,1],[0,2,2,2],[2,3,1,2],[1,0,2,2]],[[1,2,0,1],[0,3,3,2],[2,2,4,1],[0,2,1,0]],[[1,2,0,1],[0,3,3,3],[2,2,3,1],[0,2,1,0]],[[1,2,0,1],[0,3,4,2],[2,2,3,1],[0,2,1,0]],[[1,2,0,1],[0,4,3,2],[2,2,3,1],[0,2,1,0]],[[1,2,0,2],[0,3,3,2],[2,2,3,1],[0,2,1,0]],[[1,3,0,1],[0,3,3,2],[2,2,3,1],[0,2,1,0]],[[2,2,0,1],[0,3,3,2],[2,2,3,1],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,4,1],[0,2,0,1]],[[1,2,0,1],[0,3,3,3],[2,2,3,1],[0,2,0,1]],[[1,2,0,1],[0,3,4,2],[2,2,3,1],[0,2,0,1]],[[1,2,0,1],[0,4,3,2],[2,2,3,1],[0,2,0,1]],[[1,2,0,2],[0,3,3,2],[2,2,3,1],[0,2,0,1]],[[1,3,0,1],[0,3,3,2],[2,2,3,1],[0,2,0,1]],[[2,2,0,1],[0,3,3,2],[2,2,3,1],[0,2,0,1]],[[1,1,3,1],[0,2,2,2],[2,3,2,2],[0,0,2,1]],[[1,1,2,2],[0,2,2,2],[2,3,2,2],[0,0,2,1]],[[1,1,2,1],[0,2,2,3],[2,3,2,2],[0,0,2,1]],[[1,1,2,1],[0,2,2,2],[2,3,2,3],[0,0,2,1]],[[1,1,2,1],[0,2,2,2],[2,3,2,2],[0,0,2,2]],[[1,1,3,1],[0,2,2,2],[2,3,2,2],[0,1,1,1]],[[1,1,2,2],[0,2,2,2],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[0,2,2,3],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[0,2,2,2],[2,3,2,3],[0,1,1,1]],[[1,1,2,1],[0,2,2,2],[2,3,2,2],[0,1,1,2]],[[1,1,3,1],[0,2,2,2],[2,3,2,2],[0,1,2,0]],[[1,1,2,2],[0,2,2,2],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[0,2,2,3],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[0,2,2,2],[2,3,2,3],[0,1,2,0]],[[1,1,3,1],[0,2,2,2],[2,3,2,2],[0,2,0,1]],[[1,1,2,2],[0,2,2,2],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[0,2,2,3],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[0,2,2,2],[2,3,2,3],[0,2,0,1]],[[1,1,2,1],[0,2,2,2],[2,3,2,2],[0,2,0,2]],[[1,1,3,1],[0,2,2,2],[2,3,2,2],[0,2,1,0]],[[1,1,2,2],[0,2,2,2],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[0,2,2,3],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[0,2,2,2],[2,3,2,3],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,3,1],[0,1,3,0]],[[1,2,0,1],[0,3,3,2],[2,2,4,1],[0,1,2,0]],[[1,1,3,1],[0,2,2,2],[2,3,2,2],[1,0,1,1]],[[1,1,2,2],[0,2,2,2],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[0,2,2,3],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[0,2,2,2],[2,3,2,3],[1,0,1,1]],[[1,1,2,1],[0,2,2,2],[2,3,2,2],[1,0,1,2]],[[1,1,3,1],[0,2,2,2],[2,3,2,2],[1,0,2,0]],[[1,1,2,2],[0,2,2,2],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[0,2,2,3],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[0,2,2,2],[2,3,2,3],[1,0,2,0]],[[1,1,3,1],[0,2,2,2],[2,3,2,2],[1,1,0,1]],[[1,1,2,2],[0,2,2,2],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[0,2,2,3],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[0,2,2,2],[2,3,2,3],[1,1,0,1]],[[1,1,2,1],[0,2,2,2],[2,3,2,2],[1,1,0,2]],[[1,1,3,1],[0,2,2,2],[2,3,2,2],[1,1,1,0]],[[1,1,2,2],[0,2,2,2],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[0,2,2,3],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[0,2,2,2],[2,3,2,3],[1,1,1,0]],[[1,2,0,1],[0,3,3,3],[2,2,3,1],[0,1,2,0]],[[1,2,0,1],[0,3,4,2],[2,2,3,1],[0,1,2,0]],[[1,2,0,1],[0,4,3,2],[2,2,3,1],[0,1,2,0]],[[1,2,0,2],[0,3,3,2],[2,2,3,1],[0,1,2,0]],[[1,3,0,1],[0,3,3,2],[2,2,3,1],[0,1,2,0]],[[2,2,0,1],[0,3,3,2],[2,2,3,1],[0,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,2,4,1],[0,1,1,1]],[[1,2,0,1],[0,3,3,3],[2,2,3,1],[0,1,1,1]],[[1,2,0,1],[0,3,4,2],[2,2,3,1],[0,1,1,1]],[[1,2,0,1],[0,4,3,2],[2,2,3,1],[0,1,1,1]],[[1,2,0,2],[0,3,3,2],[2,2,3,1],[0,1,1,1]],[[1,3,0,1],[0,3,3,2],[2,2,3,1],[0,1,1,1]],[[2,2,0,1],[0,3,3,2],[2,2,3,1],[0,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,2,4,1],[0,0,2,1]],[[1,2,0,1],[0,3,3,3],[2,2,3,1],[0,0,2,1]],[[1,2,0,1],[0,3,4,2],[2,2,3,1],[0,0,2,1]],[[1,2,0,1],[0,4,3,2],[2,2,3,1],[0,0,2,1]],[[1,2,0,2],[0,3,3,2],[2,2,3,1],[0,0,2,1]],[[1,3,0,1],[0,3,3,2],[2,2,3,1],[0,0,2,1]],[[2,2,0,1],[0,3,3,2],[2,2,3,1],[0,0,2,1]],[[1,1,3,1],[0,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,2],[0,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[0,2,2,3],[2,3,3,0],[0,1,2,1]],[[1,1,3,1],[0,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,2],[0,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[0,2,2,3],[2,3,3,0],[0,2,1,1]],[[1,1,3,1],[0,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,2],[0,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[0,2,2,3],[2,3,3,0],[1,0,2,1]],[[1,1,3,1],[0,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,2],[0,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[0,2,2,3],[2,3,3,0],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,3,0],[2,2,1,0]],[[1,2,0,1],[0,3,3,2],[3,2,3,0],[1,2,1,0]],[[1,1,3,1],[0,2,2,2],[2,3,3,1],[0,0,2,1]],[[1,1,2,2],[0,2,2,2],[2,3,3,1],[0,0,2,1]],[[1,1,2,1],[0,2,2,3],[2,3,3,1],[0,0,2,1]],[[1,1,3,1],[0,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,2],[0,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[0,2,2,3],[2,3,3,1],[0,1,1,1]],[[1,1,3,1],[0,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,2],[0,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[0,2,2,3],[2,3,3,1],[0,1,2,0]],[[1,1,3,1],[0,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,2],[0,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[0,2,2,3],[2,3,3,1],[0,2,0,1]],[[1,1,3,1],[0,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,2],[0,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[0,2,2,3],[2,3,3,1],[0,2,1,0]],[[1,1,3,1],[0,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,2],[0,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[0,2,2,3],[2,3,3,1],[1,0,1,1]],[[1,1,3,1],[0,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,2],[0,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[0,2,2,3],[2,3,3,1],[1,0,2,0]],[[1,1,3,1],[0,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,2],[0,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[0,2,2,3],[2,3,3,1],[1,1,0,1]],[[1,1,3,1],[0,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,2],[0,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[0,2,2,3],[2,3,3,1],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,4,0],[1,1,1,1]],[[1,2,0,1],[0,3,3,3],[2,2,3,0],[1,1,1,1]],[[1,2,0,1],[0,3,4,2],[2,2,3,0],[1,1,1,1]],[[1,2,0,1],[0,4,3,2],[2,2,3,0],[1,1,1,1]],[[1,2,0,2],[0,3,3,2],[2,2,3,0],[1,1,1,1]],[[1,3,0,1],[0,3,3,2],[2,2,3,0],[1,1,1,1]],[[2,2,0,1],[0,3,3,2],[2,2,3,0],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,2,3,0],[1,0,2,2]],[[1,2,0,1],[0,3,3,2],[2,2,3,0],[1,0,3,1]],[[1,2,0,1],[0,3,3,2],[2,2,4,0],[1,0,2,1]],[[1,2,0,1],[0,3,3,3],[2,2,3,0],[1,0,2,1]],[[1,2,0,1],[0,3,4,2],[2,2,3,0],[1,0,2,1]],[[1,2,0,1],[0,4,3,2],[2,2,3,0],[1,0,2,1]],[[1,2,0,2],[0,3,3,2],[2,2,3,0],[1,0,2,1]],[[1,3,0,1],[0,3,3,2],[2,2,3,0],[1,0,2,1]],[[2,2,0,1],[0,3,3,2],[2,2,3,0],[1,0,2,1]],[[1,2,0,1],[0,3,3,2],[2,2,4,0],[0,2,1,1]],[[1,2,0,1],[0,3,3,3],[2,2,3,0],[0,2,1,1]],[[1,2,0,1],[0,3,4,2],[2,2,3,0],[0,2,1,1]],[[1,2,0,1],[0,4,3,2],[2,2,3,0],[0,2,1,1]],[[1,1,3,1],[0,2,2,2],[2,3,3,2],[0,1,0,1]],[[1,1,2,2],[0,2,2,2],[2,3,3,2],[0,1,0,1]],[[1,1,2,1],[0,2,2,3],[2,3,3,2],[0,1,0,1]],[[1,1,2,1],[0,2,2,2],[2,3,3,3],[0,1,0,1]],[[1,2,0,2],[0,3,3,2],[2,2,3,0],[0,2,1,1]],[[1,3,0,1],[0,3,3,2],[2,2,3,0],[0,2,1,1]],[[2,2,0,1],[0,3,3,2],[2,2,3,0],[0,2,1,1]],[[1,2,0,1],[0,3,3,2],[2,2,3,0],[0,1,2,2]],[[1,2,0,1],[0,3,3,2],[2,2,3,0],[0,1,3,1]],[[1,2,0,1],[0,3,3,2],[2,2,4,0],[0,1,2,1]],[[1,2,0,1],[0,3,3,3],[2,2,3,0],[0,1,2,1]],[[1,2,0,1],[0,3,4,2],[2,2,3,0],[0,1,2,1]],[[1,2,0,1],[0,4,3,2],[2,2,3,0],[0,1,2,1]],[[1,2,0,2],[0,3,3,2],[2,2,3,0],[0,1,2,1]],[[1,3,0,1],[0,3,3,2],[2,2,3,0],[0,1,2,1]],[[2,2,0,1],[0,3,3,2],[2,2,3,0],[0,1,2,1]],[[1,1,3,1],[0,2,2,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,2],[0,2,2,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[0,2,2,3],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[0,2,2,2],[2,3,3,3],[1,0,0,1]],[[1,2,0,1],[0,3,3,2],[2,2,2,3],[1,1,1,0]],[[1,2,0,1],[0,3,3,3],[2,2,2,2],[1,1,1,0]],[[1,2,0,1],[0,3,4,2],[2,2,2,2],[1,1,1,0]],[[1,2,0,1],[0,4,3,2],[2,2,2,2],[1,1,1,0]],[[1,2,0,2],[0,3,3,2],[2,2,2,2],[1,1,1,0]],[[1,3,0,1],[0,3,3,2],[2,2,2,2],[1,1,1,0]],[[2,2,0,1],[0,3,3,2],[2,2,2,2],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,2,2],[1,1,0,2]],[[1,2,0,1],[0,3,3,2],[2,2,2,3],[1,1,0,1]],[[1,2,0,1],[0,3,3,3],[2,2,2,2],[1,1,0,1]],[[1,2,0,1],[0,3,4,2],[2,2,2,2],[1,1,0,1]],[[1,2,0,1],[0,4,3,2],[2,2,2,2],[1,1,0,1]],[[1,2,0,2],[0,3,3,2],[2,2,2,2],[1,1,0,1]],[[1,3,0,1],[0,3,3,2],[2,2,2,2],[1,1,0,1]],[[2,2,0,1],[0,3,3,2],[2,2,2,2],[1,1,0,1]],[[1,2,0,1],[0,3,3,2],[2,2,2,3],[1,0,2,0]],[[1,2,0,1],[0,3,3,3],[2,2,2,2],[1,0,2,0]],[[1,2,0,1],[0,3,4,2],[2,2,2,2],[1,0,2,0]],[[1,2,0,1],[0,4,3,2],[2,2,2,2],[1,0,2,0]],[[1,2,0,2],[0,3,3,2],[2,2,2,2],[1,0,2,0]],[[1,3,0,1],[0,3,3,2],[2,2,2,2],[1,0,2,0]],[[2,2,0,1],[0,3,3,2],[2,2,2,2],[1,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,2,2,2],[1,0,1,2]],[[1,2,0,1],[0,3,3,2],[2,2,2,3],[1,0,1,1]],[[1,2,0,1],[0,3,3,3],[2,2,2,2],[1,0,1,1]],[[1,2,0,1],[0,3,4,2],[2,2,2,2],[1,0,1,1]],[[1,2,0,1],[0,4,3,2],[2,2,2,2],[1,0,1,1]],[[1,2,0,2],[0,3,3,2],[2,2,2,2],[1,0,1,1]],[[1,3,0,1],[0,3,3,2],[2,2,2,2],[1,0,1,1]],[[2,2,0,1],[0,3,3,2],[2,2,2,2],[1,0,1,1]],[[1,2,0,1],[0,3,3,2],[2,2,2,3],[0,2,1,0]],[[1,2,0,1],[0,3,3,3],[2,2,2,2],[0,2,1,0]],[[1,2,0,1],[0,3,4,2],[2,2,2,2],[0,2,1,0]],[[1,2,0,1],[0,4,3,2],[2,2,2,2],[0,2,1,0]],[[1,2,0,2],[0,3,3,2],[2,2,2,2],[0,2,1,0]],[[1,3,0,1],[0,3,3,2],[2,2,2,2],[0,2,1,0]],[[2,2,0,1],[0,3,3,2],[2,2,2,2],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,2,2],[0,2,0,2]],[[1,2,0,1],[0,3,3,2],[2,2,2,3],[0,2,0,1]],[[1,2,0,1],[0,3,3,3],[2,2,2,2],[0,2,0,1]],[[1,2,0,1],[0,3,4,2],[2,2,2,2],[0,2,0,1]],[[1,2,0,1],[0,4,3,2],[2,2,2,2],[0,2,0,1]],[[1,2,0,2],[0,3,3,2],[2,2,2,2],[0,2,0,1]],[[1,3,0,1],[0,3,3,2],[2,2,2,2],[0,2,0,1]],[[2,2,0,1],[0,3,3,2],[2,2,2,2],[0,2,0,1]],[[1,1,2,1],[0,2,3,0],[0,2,3,3],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[0,2,3,2],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[0,2,3,2],[1,2,2,2]],[[1,1,2,1],[0,2,3,0],[0,3,2,3],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[0,3,2,2],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[0,3,2,2],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[0,3,2,2],[1,2,2,2]],[[1,1,3,1],[0,2,3,0],[0,3,3,1],[1,2,2,1]],[[1,1,2,2],[0,2,3,0],[0,3,3,1],[1,2,2,1]],[[1,1,2,1],[0,2,4,0],[0,3,3,1],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[0,3,4,1],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[0,3,3,1],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[0,3,3,1],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[0,3,3,1],[1,2,2,2]],[[1,1,3,1],[0,2,3,0],[0,3,3,2],[1,2,1,1]],[[1,1,2,2],[0,2,3,0],[0,3,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,4,0],[0,3,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[0,3,4,2],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[0,3,3,3],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[0,3,3,2],[1,2,1,2]],[[1,1,3,1],[0,2,3,0],[0,3,3,2],[1,2,2,0]],[[1,1,2,2],[0,2,3,0],[0,3,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,4,0],[0,3,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[0,3,4,2],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[0,3,3,3],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[0,3,3,2],[1,3,2,0]],[[1,1,2,1],[0,2,3,0],[0,3,3,2],[1,2,3,0]],[[1,1,2,1],[0,2,3,0],[1,1,3,3],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,1,3,2],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[1,1,3,2],[1,2,2,2]],[[1,1,2,1],[0,2,3,0],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[1,2,2,2],[1,2,2,2]],[[1,1,3,1],[0,2,3,0],[1,2,3,1],[1,2,2,1]],[[1,1,2,2],[0,2,3,0],[1,2,3,1],[1,2,2,1]],[[1,1,2,1],[0,2,4,0],[1,2,3,1],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[1,2,3,1],[1,2,2,2]],[[1,1,3,1],[0,2,3,0],[1,2,3,2],[1,2,1,1]],[[1,1,2,2],[0,2,3,0],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,4,0],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[1,2,3,2],[1,2,1,2]],[[1,1,3,1],[0,2,3,0],[1,2,3,2],[1,2,2,0]],[[1,1,2,2],[0,2,3,0],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,4,0],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[0,2,3,0],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[0,2,3,0],[1,2,3,2],[1,2,3,0]],[[1,1,2,1],[0,2,3,0],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,1,3],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[0,2,3,0],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[1,3,2,1],[1,2,2,2]],[[1,1,2,1],[0,2,3,0],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[0,2,3,0],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[0,2,3,0],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[0,2,3,0],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[0,2,3,0],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[0,2,3,0],[1,4,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,0],[2,2,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,0],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,0],[1,2,3,1]],[[1,1,3,1],[0,2,3,0],[1,3,3,1],[1,1,2,1]],[[1,1,2,2],[0,2,3,0],[1,3,3,1],[1,1,2,1]],[[1,1,2,1],[0,2,4,0],[1,3,3,1],[1,1,2,1]],[[1,1,2,1],[0,2,3,0],[1,4,3,1],[1,1,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,1],[1,1,2,2]],[[1,1,3,1],[0,2,3,0],[1,3,3,1],[1,2,1,1]],[[1,1,2,2],[0,2,3,0],[1,3,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,4,0],[1,3,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[1,3,4,1],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,1],[1,3,1,1]],[[1,1,3,1],[0,2,3,0],[1,3,3,2],[1,0,2,1]],[[1,1,2,2],[0,2,3,0],[1,3,3,2],[1,0,2,1]],[[1,1,2,1],[0,2,4,0],[1,3,3,2],[1,0,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,4,2],[1,0,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,3],[1,0,2,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,2],[1,0,2,2]],[[1,1,3,1],[0,2,3,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,2],[0,2,3,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[0,2,4,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[0,2,3,0],[1,4,3,2],[1,1,1,1]],[[1,1,2,1],[0,2,3,0],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,2],[1,1,1,2]],[[1,1,3,1],[0,2,3,0],[1,3,3,2],[1,1,2,0]],[[1,1,2,2],[0,2,3,0],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[0,2,4,0],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[0,2,3,0],[1,4,3,2],[1,1,2,0]],[[1,1,2,1],[0,2,3,0],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[0,2,3,0],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[0,2,3,0],[1,3,3,2],[1,1,3,0]],[[1,1,3,1],[0,2,3,0],[1,3,3,2],[1,2,0,1]],[[1,1,2,2],[0,2,3,0],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[0,2,4,0],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[0,2,3,0],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[0,2,3,0],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[0,2,3,0],[1,3,3,2],[1,2,0,2]],[[1,1,3,1],[0,2,3,0],[1,3,3,2],[1,2,1,0]],[[1,1,2,2],[0,2,3,0],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[0,2,4,0],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[0,2,3,0],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[0,2,3,0],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[0,2,3,0],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[0,2,3,0],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[0,2,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,2,3],[0,1,2,0]],[[1,2,0,1],[0,3,3,3],[2,2,2,2],[0,1,2,0]],[[1,2,0,1],[0,3,4,2],[2,2,2,2],[0,1,2,0]],[[1,2,0,1],[0,4,3,2],[2,2,2,2],[0,1,2,0]],[[1,2,0,2],[0,3,3,2],[2,2,2,2],[0,1,2,0]],[[1,3,0,1],[0,3,3,2],[2,2,2,2],[0,1,2,0]],[[2,2,0,1],[0,3,3,2],[2,2,2,2],[0,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,2,2,2],[0,1,1,2]],[[1,2,0,1],[0,3,3,2],[2,2,2,3],[0,1,1,1]],[[1,1,2,1],[0,2,3,0],[2,0,3,3],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,0,3,2],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[2,0,3,2],[1,2,2,2]],[[1,1,2,1],[0,2,3,0],[3,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[2,1,2,2],[1,2,2,2]],[[1,1,3,1],[0,2,3,0],[2,1,3,1],[1,2,2,1]],[[1,1,2,2],[0,2,3,0],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[0,2,4,0],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[3,1,3,1],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[2,1,3,1],[1,2,2,2]],[[1,1,2,1],[0,2,3,0],[2,1,3,3],[0,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,1,3,2],[0,2,3,1]],[[1,1,2,1],[0,2,3,0],[2,1,3,2],[0,2,2,2]],[[1,1,3,1],[0,2,3,0],[2,1,3,2],[1,2,1,1]],[[1,1,2,2],[0,2,3,0],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,4,0],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[2,1,3,2],[1,2,1,2]],[[1,1,3,1],[0,2,3,0],[2,1,3,2],[1,2,2,0]],[[1,1,2,2],[0,2,3,0],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,4,0],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[3,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[0,2,3,0],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[0,2,3,0],[2,1,3,2],[1,2,3,0]],[[1,1,2,1],[0,2,3,0],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,1,3],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[2,2,1,2],[1,2,2,2]],[[1,1,2,1],[0,2,3,0],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[0,2,3,0],[2,2,2,1],[1,2,2,2]],[[1,1,2,1],[0,2,3,0],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[0,2,3,0],[2,2,2,2],[0,2,2,2]],[[1,1,2,1],[0,2,3,0],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,3,0],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[0,2,3,0],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[0,2,3,0],[2,2,2,2],[1,2,3,0]],[[1,1,2,1],[0,2,3,0],[3,2,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,0],[2,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,0],[1,3,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,0],[1,2,3,1]],[[1,1,3,1],[0,2,3,0],[2,2,3,1],[0,2,2,1]],[[1,1,2,2],[0,2,3,0],[2,2,3,1],[0,2,2,1]],[[1,1,2,1],[0,2,4,0],[2,2,3,1],[0,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,1],[0,2,2,2]],[[1,1,2,1],[0,2,3,0],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,1],[1,3,1,1]],[[1,1,3,1],[0,2,3,0],[2,2,3,2],[0,2,1,1]],[[1,1,2,2],[0,2,3,0],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[0,2,4,0],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[0,2,3,0],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,2],[0,2,1,2]],[[1,1,3,1],[0,2,3,0],[2,2,3,2],[0,2,2,0]],[[1,1,2,2],[0,2,3,0],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[0,2,4,0],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[0,2,3,0],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[0,2,3,0],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[0,2,3,0],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[0,2,3,0],[2,2,3,2],[0,2,3,0]],[[1,1,2,1],[0,2,3,0],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[0,2,3,0],[2,2,3,2],[1,3,0,1]],[[1,1,2,1],[0,2,3,0],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[0,2,3,0],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[0,2,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[0,3,3,3],[2,2,2,2],[0,1,1,1]],[[1,2,0,1],[0,3,4,2],[2,2,2,2],[0,1,1,1]],[[1,2,0,1],[0,4,3,2],[2,2,2,2],[0,1,1,1]],[[1,2,0,2],[0,3,3,2],[2,2,2,2],[0,1,1,1]],[[1,3,0,1],[0,3,3,2],[2,2,2,2],[0,1,1,1]],[[2,2,0,1],[0,3,3,2],[2,2,2,2],[0,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,2,2,2],[0,0,2,2]],[[1,2,0,1],[0,3,3,2],[2,2,2,3],[0,0,2,1]],[[1,2,0,1],[0,3,3,3],[2,2,2,2],[0,0,2,1]],[[1,2,0,1],[0,3,4,2],[2,2,2,2],[0,0,2,1]],[[1,1,2,1],[0,2,3,0],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,1,3],[0,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[0,2,3,0],[2,3,1,2],[0,2,2,2]],[[1,1,2,1],[0,2,3,0],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[0,2,3,0],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,1,2],[2,1,2,1]],[[1,1,2,1],[0,2,3,0],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[0,2,3,0],[2,3,2,1],[0,2,2,2]],[[1,1,2,1],[0,2,3,0],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[0,2,3,0],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,2,1],[2,1,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[0,2,3,0],[2,3,2,2],[0,1,2,2]],[[1,1,2,1],[0,2,3,0],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[0,2,3,0],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[0,2,3,0],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[0,2,3,0],[2,3,2,2],[0,2,3,0]],[[1,1,2,1],[0,2,3,0],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[0,2,3,0],[2,3,2,2],[1,0,2,2]],[[1,1,2,1],[0,2,3,0],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,2,3,0],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[0,2,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[0,4,3,2],[2,2,2,2],[0,0,2,1]],[[1,2,0,2],[0,3,3,2],[2,2,2,2],[0,0,2,1]],[[1,3,0,1],[0,3,3,2],[2,2,2,2],[0,0,2,1]],[[2,2,0,1],[0,3,3,2],[2,2,2,2],[0,0,2,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,0],[0,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,4,3,0],[0,2,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,0],[0,3,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,0],[0,2,3,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,0],[1,1,2,1]],[[1,1,2,1],[0,2,3,0],[2,4,3,0],[1,1,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,0],[2,1,2,1]],[[1,1,3,1],[0,2,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,2],[0,2,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[0,2,4,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[0,2,3,0],[2,4,3,1],[0,1,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,1],[0,1,2,2]],[[1,1,3,1],[0,2,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,2],[0,2,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[0,2,4,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[0,2,3,0],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[0,2,3,0],[2,3,4,1],[0,2,1,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,1],[0,3,1,1]],[[1,1,3,1],[0,2,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,2],[0,2,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[0,2,4,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[0,2,3,0],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,1],[2,0,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,1],[1,0,2,2]],[[1,1,3,1],[0,2,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,2],[0,2,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,2,4,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,2,3,0],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[0,2,3,0],[2,3,4,1],[1,1,1,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,1],[2,1,1,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,1],[1,2,0,1]],[[1,1,2,1],[0,2,3,0],[2,4,3,1],[1,2,0,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[0,3,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,2,1],[2,2,1,0]],[[1,2,0,1],[0,3,3,2],[3,2,2,1],[1,2,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,2,1],[1,3,0,1]],[[1,2,0,1],[0,3,3,2],[2,2,2,1],[2,2,0,1]],[[1,2,0,1],[0,3,3,2],[3,2,2,1],[1,2,0,1]],[[1,1,3,1],[0,2,3,0],[2,3,3,2],[0,0,2,1]],[[1,1,2,2],[0,2,3,0],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[0,2,4,0],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[0,0,2,2]],[[1,1,3,1],[0,2,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,2],[0,2,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,2,4,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,2,3,0],[2,4,3,2],[0,1,1,1]],[[1,1,2,1],[0,2,3,0],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[0,1,1,2]],[[1,1,3,1],[0,2,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,2],[0,2,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,2,4,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,2,3,0],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,2,3,0],[2,4,3,2],[0,1,2,0]],[[1,1,2,1],[0,2,3,0],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[0,2,3,0],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[0,1,3,0]],[[1,1,3,1],[0,2,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,2],[0,2,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,2,4,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,2,3,0],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[0,2,3,0],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[0,3,0,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[0,2,0,2]],[[1,1,3,1],[0,2,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,2],[0,2,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,2,4,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,2,3,0],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,2,3,0],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[0,2,3,0],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[0,2,3,0],[2,3,3,3],[0,2,1,0]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,2,0],[1,3,1,1]],[[1,2,0,1],[0,3,3,2],[2,2,2,0],[2,2,1,1]],[[1,2,0,1],[0,3,3,2],[3,2,2,0],[1,2,1,1]],[[1,1,3,1],[0,2,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,2],[0,2,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,2,4,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,2,3,0],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[0,2,3,0],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[2,0,1,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[1,0,1,2]],[[1,1,3,1],[0,2,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,2],[0,2,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,2,4,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,2,3,0],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,2,3,0],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[0,2,3,0],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[0,2,3,0],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[1,0,3,0]],[[1,1,3,1],[0,2,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,2],[0,2,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,2,4,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,2,3,0],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[0,2,3,0],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[1,1,0,2]],[[1,1,3,1],[0,2,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,2],[0,2,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,2,4,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,2,3,0],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,2,3,0],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[0,2,3,0],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[0,2,3,0],[2,3,3,3],[1,1,1,0]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,1,2],[2,2,1,0]],[[1,2,0,1],[0,3,3,2],[3,2,1,2],[1,2,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,1,2],[1,3,0,1]],[[1,2,0,1],[0,3,3,2],[2,2,1,2],[2,2,0,1]],[[1,1,2,1],[0,2,3,0],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,2,3,0],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[0,2,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[0,3,3,2],[3,2,1,2],[1,2,0,1]],[[1,2,0,1],[0,3,3,2],[2,2,1,2],[1,0,2,2]],[[1,2,0,1],[0,3,3,2],[2,2,1,2],[1,0,3,1]],[[1,2,0,1],[0,3,3,2],[2,2,1,3],[1,0,2,1]],[[1,2,0,1],[0,3,3,3],[2,2,1,2],[1,0,2,1]],[[1,2,0,1],[0,3,4,2],[2,2,1,2],[1,0,2,1]],[[1,2,0,1],[0,4,3,2],[2,2,1,2],[1,0,2,1]],[[1,2,0,2],[0,3,3,2],[2,2,1,2],[1,0,2,1]],[[1,3,0,1],[0,3,3,2],[2,2,1,2],[1,0,2,1]],[[2,2,0,1],[0,3,3,2],[2,2,1,2],[1,0,2,1]],[[1,2,0,1],[0,3,3,2],[2,2,1,2],[0,1,2,2]],[[1,2,0,1],[0,3,3,2],[2,2,1,2],[0,1,3,1]],[[1,1,3,1],[0,2,3,1],[0,3,1,2],[1,2,2,1]],[[1,1,2,2],[0,2,3,1],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,4,1],[0,3,1,2],[1,2,2,1]],[[1,1,3,1],[0,2,3,1],[0,3,2,2],[1,2,1,1]],[[1,1,2,2],[0,2,3,1],[0,3,2,2],[1,2,1,1]],[[1,1,2,1],[0,2,4,1],[0,3,2,2],[1,2,1,1]],[[1,1,3,1],[0,2,3,1],[0,3,2,2],[1,2,2,0]],[[1,1,2,2],[0,2,3,1],[0,3,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,4,1],[0,3,2,2],[1,2,2,0]],[[1,1,3,1],[0,2,3,1],[0,3,3,0],[1,2,2,1]],[[1,1,2,2],[0,2,3,1],[0,3,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,4,1],[0,3,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,3,1],[0,3,4,0],[1,2,2,1]],[[1,1,2,1],[0,2,3,1],[0,3,3,0],[1,3,2,1]],[[1,1,2,1],[0,2,3,1],[0,3,3,0],[1,2,3,1]],[[1,1,2,1],[0,2,3,1],[0,3,3,0],[1,2,2,2]],[[1,1,3,1],[0,2,3,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,2],[0,2,3,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,4,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,3,1],[0,3,4,1],[1,2,1,1]],[[1,1,3,1],[0,2,3,1],[0,3,3,1],[1,2,2,0]],[[1,1,2,2],[0,2,3,1],[0,3,3,1],[1,2,2,0]],[[1,1,2,1],[0,2,4,1],[0,3,3,1],[1,2,2,0]],[[1,1,2,1],[0,2,3,1],[0,3,4,1],[1,2,2,0]],[[1,1,2,1],[0,2,3,1],[0,3,3,1],[1,3,2,0]],[[1,1,2,1],[0,2,3,1],[0,3,3,1],[1,2,3,0]],[[1,2,0,1],[0,3,3,2],[2,2,1,3],[0,1,2,1]],[[1,2,0,1],[0,3,3,3],[2,2,1,2],[0,1,2,1]],[[1,2,0,1],[0,3,4,2],[2,2,1,2],[0,1,2,1]],[[1,2,0,1],[0,4,3,2],[2,2,1,2],[0,1,2,1]],[[1,2,0,2],[0,3,3,2],[2,2,1,2],[0,1,2,1]],[[1,3,0,1],[0,3,3,2],[2,2,1,2],[0,1,2,1]],[[2,2,0,1],[0,3,3,2],[2,2,1,2],[0,1,2,1]],[[1,1,3,1],[0,2,3,1],[1,2,1,2],[1,2,2,1]],[[1,1,2,2],[0,2,3,1],[1,2,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,4,1],[1,2,1,2],[1,2,2,1]],[[1,1,3,1],[0,2,3,1],[1,2,2,2],[1,2,1,1]],[[1,1,2,2],[0,2,3,1],[1,2,2,2],[1,2,1,1]],[[1,1,2,1],[0,2,4,1],[1,2,2,2],[1,2,1,1]],[[1,1,3,1],[0,2,3,1],[1,2,2,2],[1,2,2,0]],[[1,1,2,2],[0,2,3,1],[1,2,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,4,1],[1,2,2,2],[1,2,2,0]],[[1,1,3,1],[0,2,3,1],[1,2,3,0],[1,2,2,1]],[[1,1,2,2],[0,2,3,1],[1,2,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,4,1],[1,2,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,3,1],[1,2,4,0],[1,2,2,1]],[[1,1,2,1],[0,2,3,1],[1,2,3,0],[2,2,2,1]],[[1,1,2,1],[0,2,3,1],[1,2,3,0],[1,3,2,1]],[[1,1,2,1],[0,2,3,1],[1,2,3,0],[1,2,3,1]],[[1,1,2,1],[0,2,3,1],[1,2,3,0],[1,2,2,2]],[[1,1,3,1],[0,2,3,1],[1,2,3,1],[1,2,1,1]],[[1,1,2,2],[0,2,3,1],[1,2,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,4,1],[1,2,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,3,1],[1,2,4,1],[1,2,1,1]],[[1,1,3,1],[0,2,3,1],[1,2,3,1],[1,2,2,0]],[[1,1,2,2],[0,2,3,1],[1,2,3,1],[1,2,2,0]],[[1,1,2,1],[0,2,4,1],[1,2,3,1],[1,2,2,0]],[[1,1,2,1],[0,2,3,1],[1,2,4,1],[1,2,2,0]],[[1,1,2,1],[0,2,3,1],[1,2,3,1],[2,2,2,0]],[[1,1,2,1],[0,2,3,1],[1,2,3,1],[1,3,2,0]],[[1,1,2,1],[0,2,3,1],[1,2,3,1],[1,2,3,0]],[[1,2,0,1],[0,3,3,2],[2,2,1,1],[1,2,3,0]],[[1,2,0,1],[0,3,3,2],[2,2,1,1],[1,3,2,0]],[[1,2,0,1],[0,3,3,2],[2,2,1,1],[2,2,2,0]],[[1,2,0,1],[0,3,3,2],[3,2,1,1],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,2,1,0],[1,2,2,2]],[[1,1,3,1],[0,2,3,1],[1,3,0,2],[1,2,2,1]],[[1,1,2,2],[0,2,3,1],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,2,4,1],[1,3,0,2],[1,2,2,1]],[[1,1,3,1],[0,2,3,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,2],[0,2,3,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[0,2,4,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[0,2,3,1],[1,4,2,0],[1,2,2,1]],[[1,1,2,1],[0,2,3,1],[1,3,2,0],[2,2,2,1]],[[1,1,2,1],[0,2,3,1],[1,3,2,0],[1,3,2,1]],[[1,1,2,1],[0,2,3,1],[1,3,2,0],[1,2,3,1]],[[1,1,2,1],[0,2,3,1],[1,3,2,0],[1,2,2,2]],[[1,1,2,1],[0,2,3,1],[1,4,2,1],[1,2,2,0]],[[1,1,2,1],[0,2,3,1],[1,3,2,1],[2,2,2,0]],[[1,1,2,1],[0,2,3,1],[1,3,2,1],[1,3,2,0]],[[1,1,2,1],[0,2,3,1],[1,3,2,1],[1,2,3,0]],[[1,1,3,1],[0,2,3,1],[1,3,2,2],[1,0,2,1]],[[1,1,2,2],[0,2,3,1],[1,3,2,2],[1,0,2,1]],[[1,1,2,1],[0,2,4,1],[1,3,2,2],[1,0,2,1]],[[1,1,3,1],[0,2,3,1],[1,3,2,2],[1,1,1,1]],[[1,1,2,2],[0,2,3,1],[1,3,2,2],[1,1,1,1]],[[1,1,2,1],[0,2,4,1],[1,3,2,2],[1,1,1,1]],[[1,1,3,1],[0,2,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,2],[0,2,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,2,4,1],[1,3,2,2],[1,1,2,0]],[[1,1,3,1],[0,2,3,1],[1,3,2,2],[1,2,0,1]],[[1,1,2,2],[0,2,3,1],[1,3,2,2],[1,2,0,1]],[[1,1,2,1],[0,2,4,1],[1,3,2,2],[1,2,0,1]],[[1,1,3,1],[0,2,3,1],[1,3,2,2],[1,2,1,0]],[[1,1,2,2],[0,2,3,1],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[0,2,4,1],[1,3,2,2],[1,2,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,1,0],[1,2,3,1]],[[1,2,0,1],[0,3,3,2],[2,2,1,0],[1,3,2,1]],[[1,2,0,1],[0,3,3,2],[2,2,1,0],[2,2,2,1]],[[1,2,0,1],[0,3,3,2],[3,2,1,0],[1,2,2,1]],[[1,1,3,1],[0,2,3,1],[1,3,3,0],[1,1,2,1]],[[1,1,2,2],[0,2,3,1],[1,3,3,0],[1,1,2,1]],[[1,1,2,1],[0,2,4,1],[1,3,3,0],[1,1,2,1]],[[1,1,2,1],[0,2,3,1],[1,4,3,0],[1,1,2,1]],[[1,1,2,1],[0,2,3,1],[1,3,4,0],[1,1,2,1]],[[1,1,2,1],[0,2,3,1],[1,3,3,0],[1,1,3,1]],[[1,1,2,1],[0,2,3,1],[1,3,3,0],[1,1,2,2]],[[1,1,3,1],[0,2,3,1],[1,3,3,0],[1,2,1,1]],[[1,1,2,2],[0,2,3,1],[1,3,3,0],[1,2,1,1]],[[1,1,2,1],[0,2,4,1],[1,3,3,0],[1,2,1,1]],[[1,1,2,1],[0,2,3,1],[1,4,3,0],[1,2,1,1]],[[1,1,2,1],[0,2,3,1],[1,3,4,0],[1,2,1,1]],[[1,1,2,1],[0,2,3,1],[1,3,3,0],[2,2,1,1]],[[1,1,2,1],[0,2,3,1],[1,3,3,0],[1,3,1,1]],[[1,1,3,1],[0,2,3,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,2],[0,2,3,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[0,2,4,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[0,2,3,1],[1,3,4,1],[1,0,2,1]],[[1,1,3,1],[0,2,3,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,2],[0,2,3,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,2,4,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,2,3,1],[1,4,3,1],[1,1,1,1]],[[1,1,2,1],[0,2,3,1],[1,3,4,1],[1,1,1,1]],[[1,1,3,1],[0,2,3,1],[1,3,3,1],[1,1,2,0]],[[1,1,2,2],[0,2,3,1],[1,3,3,1],[1,1,2,0]],[[1,1,2,1],[0,2,4,1],[1,3,3,1],[1,1,2,0]],[[1,1,2,1],[0,2,3,1],[1,4,3,1],[1,1,2,0]],[[1,1,2,1],[0,2,3,1],[1,3,4,1],[1,1,2,0]],[[1,1,2,1],[0,2,3,1],[1,3,3,1],[1,1,3,0]],[[1,1,3,1],[0,2,3,1],[1,3,3,1],[1,2,0,1]],[[1,1,2,2],[0,2,3,1],[1,3,3,1],[1,2,0,1]],[[1,1,2,1],[0,2,4,1],[1,3,3,1],[1,2,0,1]],[[1,1,2,1],[0,2,3,1],[1,4,3,1],[1,2,0,1]],[[1,1,2,1],[0,2,3,1],[1,3,4,1],[1,2,0,1]],[[1,1,2,1],[0,2,3,1],[1,3,3,1],[2,2,0,1]],[[1,1,2,1],[0,2,3,1],[1,3,3,1],[1,3,0,1]],[[1,1,3,1],[0,2,3,1],[1,3,3,1],[1,2,1,0]],[[1,1,2,2],[0,2,3,1],[1,3,3,1],[1,2,1,0]],[[1,1,2,1],[0,2,4,1],[1,3,3,1],[1,2,1,0]],[[1,1,2,1],[0,2,3,1],[1,4,3,1],[1,2,1,0]],[[1,1,2,1],[0,2,3,1],[1,3,4,1],[1,2,1,0]],[[1,1,2,1],[0,2,3,1],[1,3,3,1],[2,2,1,0]],[[1,1,2,1],[0,2,3,1],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[0,3,3,2],[2,2,0,2],[1,2,3,0]],[[1,2,0,1],[0,3,3,2],[2,2,0,2],[1,3,2,0]],[[1,1,3,1],[0,2,3,1],[1,3,3,2],[1,1,0,1]],[[1,1,2,2],[0,2,3,1],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,2,4,1],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,3,3,2],[2,2,0,2],[2,2,2,0]],[[1,2,0,1],[0,3,3,2],[3,2,0,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,2,0,2],[1,3,1,1]],[[1,2,0,1],[0,3,3,2],[2,2,0,2],[2,2,1,1]],[[1,2,0,1],[0,3,3,2],[3,2,0,2],[1,2,1,1]],[[1,2,0,1],[0,3,3,2],[2,2,0,2],[0,2,2,2]],[[1,2,0,1],[0,3,3,2],[2,2,0,2],[0,2,3,1]],[[1,2,0,1],[0,3,3,2],[2,2,0,2],[0,3,2,1]],[[1,2,0,1],[0,3,3,2],[2,2,0,3],[0,2,2,1]],[[1,2,0,1],[0,3,3,3],[2,2,0,2],[0,2,2,1]],[[1,2,0,1],[0,3,4,2],[2,2,0,2],[0,2,2,1]],[[1,2,0,1],[0,4,3,2],[2,2,0,2],[0,2,2,1]],[[1,2,0,2],[0,3,3,2],[2,2,0,2],[0,2,2,1]],[[1,3,0,1],[0,3,3,2],[2,2,0,2],[0,2,2,1]],[[2,2,0,1],[0,3,3,2],[2,2,0,2],[0,2,2,1]],[[1,2,0,1],[0,3,3,2],[2,2,0,1],[1,2,2,2]],[[1,2,0,1],[0,3,3,2],[2,2,0,1],[1,2,3,1]],[[1,2,0,1],[0,3,3,2],[2,2,0,1],[1,3,2,1]],[[1,2,0,1],[0,3,3,2],[2,2,0,1],[2,2,2,1]],[[1,2,0,1],[0,3,3,2],[3,2,0,1],[1,2,2,1]],[[1,2,0,1],[0,3,3,2],[2,1,3,3],[1,0,2,0]],[[1,2,0,1],[0,3,3,3],[2,1,3,2],[1,0,2,0]],[[1,1,3,1],[0,2,3,1],[2,1,1,2],[1,2,2,1]],[[1,1,2,2],[0,2,3,1],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[0,2,4,1],[2,1,1,2],[1,2,2,1]],[[1,1,3,1],[0,2,3,1],[2,1,2,2],[1,2,1,1]],[[1,1,2,2],[0,2,3,1],[2,1,2,2],[1,2,1,1]],[[1,1,2,1],[0,2,4,1],[2,1,2,2],[1,2,1,1]],[[1,1,3,1],[0,2,3,1],[2,1,2,2],[1,2,2,0]],[[1,1,2,2],[0,2,3,1],[2,1,2,2],[1,2,2,0]],[[1,1,2,1],[0,2,4,1],[2,1,2,2],[1,2,2,0]],[[1,1,3,1],[0,2,3,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,2],[0,2,3,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,4,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,3,1],[3,1,3,0],[1,2,2,1]],[[1,1,2,1],[0,2,3,1],[2,1,4,0],[1,2,2,1]],[[1,1,2,1],[0,2,3,1],[2,1,3,0],[2,2,2,1]],[[1,1,2,1],[0,2,3,1],[2,1,3,0],[1,3,2,1]],[[1,1,2,1],[0,2,3,1],[2,1,3,0],[1,2,3,1]],[[1,1,2,1],[0,2,3,1],[2,1,3,0],[1,2,2,2]],[[1,1,3,1],[0,2,3,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,2],[0,2,3,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,4,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,1],[0,2,3,1],[2,1,4,1],[1,2,1,1]],[[1,1,3,1],[0,2,3,1],[2,1,3,1],[1,2,2,0]],[[1,1,2,2],[0,2,3,1],[2,1,3,1],[1,2,2,0]],[[1,1,2,1],[0,2,4,1],[2,1,3,1],[1,2,2,0]],[[1,1,2,1],[0,2,3,1],[3,1,3,1],[1,2,2,0]],[[1,1,2,1],[0,2,3,1],[2,1,4,1],[1,2,2,0]],[[1,1,2,1],[0,2,3,1],[2,1,3,1],[2,2,2,0]],[[1,1,2,1],[0,2,3,1],[2,1,3,1],[1,3,2,0]],[[1,1,2,1],[0,2,3,1],[2,1,3,1],[1,2,3,0]],[[1,2,0,1],[0,3,4,2],[2,1,3,2],[1,0,2,0]],[[1,2,0,2],[0,3,3,2],[2,1,3,2],[1,0,2,0]],[[1,2,0,1],[0,3,3,2],[2,1,3,2],[1,0,1,2]],[[1,2,0,1],[0,3,3,2],[2,1,3,3],[1,0,1,1]],[[1,2,0,1],[0,3,3,3],[2,1,3,2],[1,0,1,1]],[[1,2,0,1],[0,3,4,2],[2,1,3,2],[1,0,1,1]],[[1,2,0,2],[0,3,3,2],[2,1,3,2],[1,0,1,1]],[[1,1,3,1],[0,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,1,2,2],[0,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,2,4,1],[2,2,0,2],[1,2,2,1]],[[1,1,3,1],[0,2,3,1],[2,2,1,2],[0,2,2,1]],[[1,1,2,2],[0,2,3,1],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[0,2,4,1],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[0,2,3,1],[3,2,2,0],[1,2,2,1]],[[1,1,2,1],[0,2,3,1],[2,2,2,0],[2,2,2,1]],[[1,1,2,1],[0,2,3,1],[2,2,2,0],[1,3,2,1]],[[1,1,2,1],[0,2,3,1],[2,2,2,0],[1,2,3,1]],[[1,1,2,1],[0,2,3,1],[2,2,2,0],[1,2,2,2]],[[1,1,2,1],[0,2,3,1],[3,2,2,1],[1,2,2,0]],[[1,1,2,1],[0,2,3,1],[2,2,2,1],[2,2,2,0]],[[1,1,2,1],[0,2,3,1],[2,2,2,1],[1,3,2,0]],[[1,1,2,1],[0,2,3,1],[2,2,2,1],[1,2,3,0]],[[1,1,3,1],[0,2,3,1],[2,2,2,2],[0,2,1,1]],[[1,1,2,2],[0,2,3,1],[2,2,2,2],[0,2,1,1]],[[1,1,2,1],[0,2,4,1],[2,2,2,2],[0,2,1,1]],[[1,1,3,1],[0,2,3,1],[2,2,2,2],[0,2,2,0]],[[1,1,2,2],[0,2,3,1],[2,2,2,2],[0,2,2,0]],[[1,1,2,1],[0,2,4,1],[2,2,2,2],[0,2,2,0]],[[1,1,3,1],[0,2,3,1],[2,2,3,0],[0,2,2,1]],[[1,1,2,2],[0,2,3,1],[2,2,3,0],[0,2,2,1]],[[1,1,2,1],[0,2,4,1],[2,2,3,0],[0,2,2,1]],[[1,1,2,1],[0,2,3,1],[2,2,4,0],[0,2,2,1]],[[1,1,2,1],[0,2,3,1],[2,2,3,0],[0,3,2,1]],[[1,1,2,1],[0,2,3,1],[2,2,3,0],[0,2,3,1]],[[1,1,2,1],[0,2,3,1],[2,2,3,0],[0,2,2,2]],[[1,1,2,1],[0,2,3,1],[3,2,3,0],[1,2,1,1]],[[1,1,2,1],[0,2,3,1],[2,2,3,0],[2,2,1,1]],[[1,1,2,1],[0,2,3,1],[2,2,3,0],[1,3,1,1]],[[1,1,3,1],[0,2,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,2],[0,2,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[0,2,4,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[0,2,3,1],[2,2,4,1],[0,2,1,1]],[[1,1,3,1],[0,2,3,1],[2,2,3,1],[0,2,2,0]],[[1,1,2,2],[0,2,3,1],[2,2,3,1],[0,2,2,0]],[[1,1,2,1],[0,2,4,1],[2,2,3,1],[0,2,2,0]],[[1,1,2,1],[0,2,3,1],[2,2,4,1],[0,2,2,0]],[[1,1,2,1],[0,2,3,1],[2,2,3,1],[0,3,2,0]],[[1,1,2,1],[0,2,3,1],[2,2,3,1],[0,2,3,0]],[[1,1,2,1],[0,2,3,1],[3,2,3,1],[1,2,0,1]],[[1,1,2,1],[0,2,3,1],[2,2,3,1],[2,2,0,1]],[[1,1,2,1],[0,2,3,1],[2,2,3,1],[1,3,0,1]],[[1,1,2,1],[0,2,3,1],[3,2,3,1],[1,2,1,0]],[[1,1,2,1],[0,2,3,1],[2,2,3,1],[2,2,1,0]],[[1,1,2,1],[0,2,3,1],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[0,3,3,2],[2,1,3,3],[0,1,2,0]],[[1,2,0,1],[0,3,3,3],[2,1,3,2],[0,1,2,0]],[[1,2,0,1],[0,3,4,2],[2,1,3,2],[0,1,2,0]],[[1,2,0,2],[0,3,3,2],[2,1,3,2],[0,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,1,3,2],[0,1,1,2]],[[1,2,0,1],[0,3,3,2],[2,1,3,3],[0,1,1,1]],[[1,2,0,1],[0,3,3,3],[2,1,3,2],[0,1,1,1]],[[1,2,0,1],[0,3,4,2],[2,1,3,2],[0,1,1,1]],[[1,2,0,2],[0,3,3,2],[2,1,3,2],[0,1,1,1]],[[1,2,0,1],[0,3,3,2],[2,1,3,2],[0,0,2,2]],[[1,2,0,1],[0,3,3,2],[2,1,3,3],[0,0,2,1]],[[1,2,0,1],[0,3,3,3],[2,1,3,2],[0,0,2,1]],[[1,2,0,1],[0,3,4,2],[2,1,3,2],[0,0,2,1]],[[1,2,0,2],[0,3,3,2],[2,1,3,2],[0,0,2,1]],[[1,1,3,1],[0,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,2],[0,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,2,4,1],[2,3,0,2],[0,2,2,1]],[[1,1,3,1],[0,2,3,1],[2,3,1,2],[0,1,2,1]],[[1,1,2,2],[0,2,3,1],[2,3,1,2],[0,1,2,1]],[[1,1,2,1],[0,2,4,1],[2,3,1,2],[0,1,2,1]],[[1,1,3,1],[0,2,3,1],[2,3,1,2],[1,0,2,1]],[[1,1,2,2],[0,2,3,1],[2,3,1,2],[1,0,2,1]],[[1,1,2,1],[0,2,4,1],[2,3,1,2],[1,0,2,1]],[[1,2,0,1],[0,3,3,2],[2,1,3,1],[0,2,3,0]],[[1,1,2,1],[0,2,3,1],[3,3,2,0],[0,2,2,1]],[[1,1,2,1],[0,2,3,1],[2,4,2,0],[0,2,2,1]],[[1,1,2,1],[0,2,3,1],[2,3,2,0],[0,3,2,1]],[[1,1,2,1],[0,2,3,1],[2,3,2,0],[0,2,3,1]],[[1,1,2,1],[0,2,3,1],[2,3,2,0],[0,2,2,2]],[[1,1,2,1],[0,2,3,1],[3,3,2,0],[1,1,2,1]],[[1,1,2,1],[0,2,3,1],[2,4,2,0],[1,1,2,1]],[[1,1,2,1],[0,2,3,1],[2,3,2,0],[2,1,2,1]],[[1,1,2,1],[0,2,3,1],[3,3,2,1],[0,2,2,0]],[[1,1,2,1],[0,2,3,1],[2,4,2,1],[0,2,2,0]],[[1,1,2,1],[0,2,3,1],[2,3,2,1],[0,3,2,0]],[[1,1,2,1],[0,2,3,1],[2,3,2,1],[0,2,3,0]],[[1,1,2,1],[0,2,3,1],[3,3,2,1],[1,1,2,0]],[[1,1,2,1],[0,2,3,1],[2,4,2,1],[1,1,2,0]],[[1,1,2,1],[0,2,3,1],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[0,3,3,2],[2,1,3,1],[0,3,2,0]],[[1,2,0,1],[0,3,3,2],[2,1,4,1],[0,2,2,0]],[[1,2,0,1],[0,3,3,3],[2,1,3,1],[0,2,2,0]],[[1,2,0,1],[0,3,4,2],[2,1,3,1],[0,2,2,0]],[[1,2,0,1],[0,4,3,2],[2,1,3,1],[0,2,2,0]],[[1,2,0,2],[0,3,3,2],[2,1,3,1],[0,2,2,0]],[[1,1,3,1],[0,2,3,1],[2,3,2,2],[0,0,2,1]],[[1,1,2,2],[0,2,3,1],[2,3,2,2],[0,0,2,1]],[[1,1,2,1],[0,2,4,1],[2,3,2,2],[0,0,2,1]],[[1,1,3,1],[0,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,2,2],[0,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[0,2,4,1],[2,3,2,2],[0,1,1,1]],[[1,1,3,1],[0,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,2,2],[0,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[0,2,4,1],[2,3,2,2],[0,1,2,0]],[[1,1,3,1],[0,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,2,2],[0,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[0,2,4,1],[2,3,2,2],[0,2,0,1]],[[1,1,3,1],[0,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,2,2],[0,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[0,2,4,1],[2,3,2,2],[0,2,1,0]],[[1,3,0,1],[0,3,3,2],[2,1,3,1],[0,2,2,0]],[[2,2,0,1],[0,3,3,2],[2,1,3,1],[0,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,1,4,1],[0,2,1,1]],[[1,2,0,1],[0,3,3,3],[2,1,3,1],[0,2,1,1]],[[1,2,0,1],[0,3,4,2],[2,1,3,1],[0,2,1,1]],[[1,2,0,1],[0,4,3,2],[2,1,3,1],[0,2,1,1]],[[1,2,0,2],[0,3,3,2],[2,1,3,1],[0,2,1,1]],[[1,3,0,1],[0,3,3,2],[2,1,3,1],[0,2,1,1]],[[2,2,0,1],[0,3,3,2],[2,1,3,1],[0,2,1,1]],[[1,1,3,1],[0,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,2,2],[0,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[0,2,4,1],[2,3,2,2],[1,0,1,1]],[[1,1,3,1],[0,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,2,2],[0,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[0,2,4,1],[2,3,2,2],[1,0,2,0]],[[1,1,3,1],[0,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,2,2],[0,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[0,2,4,1],[2,3,2,2],[1,1,0,1]],[[1,1,3,1],[0,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,2,2],[0,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[0,2,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[2,1,3,0],[0,2,2,2]],[[1,2,0,1],[0,3,3,2],[2,1,3,0],[0,2,3,1]],[[1,2,0,1],[0,3,3,2],[2,1,3,0],[0,3,2,1]],[[1,2,0,1],[0,3,3,2],[2,1,4,0],[0,2,2,1]],[[1,2,0,1],[0,3,3,3],[2,1,3,0],[0,2,2,1]],[[1,2,0,1],[0,3,4,2],[2,1,3,0],[0,2,2,1]],[[1,2,0,1],[0,4,3,2],[2,1,3,0],[0,2,2,1]],[[1,2,0,2],[0,3,3,2],[2,1,3,0],[0,2,2,1]],[[1,3,0,1],[0,3,3,2],[2,1,3,0],[0,2,2,1]],[[2,2,0,1],[0,3,3,2],[2,1,3,0],[0,2,2,1]],[[1,1,3,1],[0,2,3,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,2],[0,2,3,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[0,2,4,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[0,2,3,1],[3,3,3,0],[0,1,2,1]],[[1,1,2,1],[0,2,3,1],[2,4,3,0],[0,1,2,1]],[[1,1,2,1],[0,2,3,1],[2,3,4,0],[0,1,2,1]],[[1,1,2,1],[0,2,3,1],[2,3,3,0],[0,1,3,1]],[[1,1,2,1],[0,2,3,1],[2,3,3,0],[0,1,2,2]],[[1,1,3,1],[0,2,3,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,2],[0,2,3,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[0,2,4,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[0,2,3,1],[3,3,3,0],[0,2,1,1]],[[1,1,2,1],[0,2,3,1],[2,4,3,0],[0,2,1,1]],[[1,1,2,1],[0,2,3,1],[2,3,4,0],[0,2,1,1]],[[1,1,2,1],[0,2,3,1],[2,3,3,0],[0,3,1,1]],[[1,1,3,1],[0,2,3,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,2],[0,2,3,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[0,2,4,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[0,2,3,1],[3,3,3,0],[1,0,2,1]],[[1,1,2,1],[0,2,3,1],[2,4,3,0],[1,0,2,1]],[[1,1,2,1],[0,2,3,1],[2,3,4,0],[1,0,2,1]],[[1,1,2,1],[0,2,3,1],[2,3,3,0],[2,0,2,1]],[[1,1,2,1],[0,2,3,1],[2,3,3,0],[1,0,3,1]],[[1,1,2,1],[0,2,3,1],[2,3,3,0],[1,0,2,2]],[[1,1,3,1],[0,2,3,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,2],[0,2,3,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[0,2,4,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[0,2,3,1],[3,3,3,0],[1,1,1,1]],[[1,1,2,1],[0,2,3,1],[2,4,3,0],[1,1,1,1]],[[1,1,2,1],[0,2,3,1],[2,3,4,0],[1,1,1,1]],[[1,1,2,1],[0,2,3,1],[2,3,3,0],[2,1,1,1]],[[1,1,2,1],[0,2,3,1],[3,3,3,0],[1,2,0,1]],[[1,1,2,1],[0,2,3,1],[2,4,3,0],[1,2,0,1]],[[1,1,2,1],[0,2,3,1],[2,3,3,0],[2,2,0,1]],[[1,1,3,1],[0,2,3,1],[2,3,3,1],[0,0,2,1]],[[1,1,2,2],[0,2,3,1],[2,3,3,1],[0,0,2,1]],[[1,1,2,1],[0,2,4,1],[2,3,3,1],[0,0,2,1]],[[1,1,2,1],[0,2,3,1],[2,3,4,1],[0,0,2,1]],[[1,1,3,1],[0,2,3,1],[2,3,3,1],[0,1,1,1]],[[1,1,2,2],[0,2,3,1],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[0,2,4,1],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[0,2,3,1],[3,3,3,1],[0,1,1,1]],[[1,1,2,1],[0,2,3,1],[2,4,3,1],[0,1,1,1]],[[1,1,2,1],[0,2,3,1],[2,3,4,1],[0,1,1,1]],[[1,1,3,1],[0,2,3,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,2],[0,2,3,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[0,2,4,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[0,2,3,1],[3,3,3,1],[0,1,2,0]],[[1,1,2,1],[0,2,3,1],[2,4,3,1],[0,1,2,0]],[[1,1,2,1],[0,2,3,1],[2,3,4,1],[0,1,2,0]],[[1,1,2,1],[0,2,3,1],[2,3,3,1],[0,1,3,0]],[[1,1,3,1],[0,2,3,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,2],[0,2,3,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[0,2,4,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[0,2,3,1],[3,3,3,1],[0,2,0,1]],[[1,1,2,1],[0,2,3,1],[2,4,3,1],[0,2,0,1]],[[1,1,2,1],[0,2,3,1],[2,3,4,1],[0,2,0,1]],[[1,1,2,1],[0,2,3,1],[2,3,3,1],[0,3,0,1]],[[1,1,3,1],[0,2,3,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,2],[0,2,3,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[0,2,4,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[0,2,3,1],[3,3,3,1],[0,2,1,0]],[[1,1,2,1],[0,2,3,1],[2,4,3,1],[0,2,1,0]],[[1,1,2,1],[0,2,3,1],[2,3,4,1],[0,2,1,0]],[[1,1,2,1],[0,2,3,1],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[0,3,3,2],[2,1,2,3],[0,2,2,0]],[[1,2,0,1],[0,3,3,3],[2,1,2,2],[0,2,2,0]],[[1,1,3,1],[0,2,3,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,2],[0,2,3,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[0,2,4,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[0,2,3,1],[3,3,3,1],[1,0,1,1]],[[1,1,2,1],[0,2,3,1],[2,4,3,1],[1,0,1,1]],[[1,1,2,1],[0,2,3,1],[2,3,4,1],[1,0,1,1]],[[1,1,2,1],[0,2,3,1],[2,3,3,1],[2,0,1,1]],[[1,1,3,1],[0,2,3,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,2],[0,2,3,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[0,2,4,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[0,2,3,1],[3,3,3,1],[1,0,2,0]],[[1,1,2,1],[0,2,3,1],[2,4,3,1],[1,0,2,0]],[[1,1,2,1],[0,2,3,1],[2,3,4,1],[1,0,2,0]],[[1,1,2,1],[0,2,3,1],[2,3,3,1],[2,0,2,0]],[[1,1,2,1],[0,2,3,1],[2,3,3,1],[1,0,3,0]],[[1,1,3,1],[0,2,3,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,2],[0,2,3,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[0,2,4,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[0,2,3,1],[3,3,3,1],[1,1,0,1]],[[1,1,2,1],[0,2,3,1],[2,4,3,1],[1,1,0,1]],[[1,1,2,1],[0,2,3,1],[2,3,4,1],[1,1,0,1]],[[1,1,2,1],[0,2,3,1],[2,3,3,1],[2,1,0,1]],[[1,1,3,1],[0,2,3,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,2],[0,2,3,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[0,2,4,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[0,2,3,1],[3,3,3,1],[1,1,1,0]],[[1,1,2,1],[0,2,3,1],[2,4,3,1],[1,1,1,0]],[[1,1,2,1],[0,2,3,1],[2,3,4,1],[1,1,1,0]],[[1,1,2,1],[0,2,3,1],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[0,3,4,2],[2,1,2,2],[0,2,2,0]],[[1,2,0,1],[0,4,3,2],[2,1,2,2],[0,2,2,0]],[[1,2,0,2],[0,3,3,2],[2,1,2,2],[0,2,2,0]],[[1,3,0,1],[0,3,3,2],[2,1,2,2],[0,2,2,0]],[[2,2,0,1],[0,3,3,2],[2,1,2,2],[0,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,1,2,2],[0,2,1,2]],[[1,2,0,1],[0,3,3,2],[2,1,2,3],[0,2,1,1]],[[1,2,0,1],[0,3,3,3],[2,1,2,2],[0,2,1,1]],[[1,2,0,1],[0,3,4,2],[2,1,2,2],[0,2,1,1]],[[1,1,2,1],[0,2,3,1],[3,3,3,1],[1,2,0,0]],[[1,1,2,1],[0,2,3,1],[2,4,3,1],[1,2,0,0]],[[1,1,2,1],[0,2,3,1],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[0,4,3,2],[2,1,2,2],[0,2,1,1]],[[1,2,0,2],[0,3,3,2],[2,1,2,2],[0,2,1,1]],[[1,3,0,1],[0,3,3,2],[2,1,2,2],[0,2,1,1]],[[2,2,0,1],[0,3,3,2],[2,1,2,2],[0,2,1,1]],[[1,2,0,1],[0,3,3,2],[2,1,1,2],[0,2,2,2]],[[1,2,0,1],[0,3,3,2],[2,1,1,2],[0,2,3,1]],[[1,2,0,1],[0,3,3,2],[2,1,1,2],[0,3,2,1]],[[1,2,0,1],[0,3,3,2],[2,1,1,3],[0,2,2,1]],[[1,2,0,1],[0,3,3,3],[2,1,1,2],[0,2,2,1]],[[1,2,0,1],[0,3,4,2],[2,1,1,2],[0,2,2,1]],[[1,2,0,1],[0,4,3,2],[2,1,1,2],[0,2,2,1]],[[1,2,0,2],[0,3,3,2],[2,1,1,2],[0,2,2,1]],[[1,3,0,1],[0,3,3,2],[2,1,1,2],[0,2,2,1]],[[2,2,0,1],[0,3,3,2],[2,1,1,2],[0,2,2,1]],[[1,2,0,1],[0,3,3,2],[2,1,0,2],[1,2,2,2]],[[1,1,3,1],[0,2,3,1],[2,3,3,2],[0,1,0,1]],[[1,1,2,2],[0,2,3,1],[2,3,3,2],[0,1,0,1]],[[1,1,2,1],[0,2,4,1],[2,3,3,2],[0,1,0,1]],[[1,2,0,1],[0,3,3,2],[2,1,0,2],[1,2,3,1]],[[1,2,0,1],[0,3,3,2],[2,1,0,2],[1,3,2,1]],[[1,2,0,1],[0,3,3,2],[2,1,0,2],[2,2,2,1]],[[1,2,0,1],[0,3,3,2],[2,1,0,3],[1,2,2,1]],[[1,2,0,1],[0,3,3,2],[3,1,0,2],[1,2,2,1]],[[1,2,0,1],[0,3,3,3],[2,1,0,2],[1,2,2,1]],[[1,2,0,1],[0,3,4,2],[2,1,0,2],[1,2,2,1]],[[1,2,0,1],[0,4,3,2],[2,1,0,2],[1,2,2,1]],[[1,2,0,2],[0,3,3,2],[2,1,0,2],[1,2,2,1]],[[1,3,0,1],[0,3,3,2],[2,1,0,2],[1,2,2,1]],[[2,2,0,1],[0,3,3,2],[2,1,0,2],[1,2,2,1]],[[1,1,3,1],[0,2,3,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,2],[0,2,3,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[0,2,4,1],[2,3,3,2],[1,0,0,1]],[[1,2,0,1],[0,3,3,2],[2,0,3,3],[0,2,2,0]],[[1,2,0,1],[0,3,3,3],[2,0,3,2],[0,2,2,0]],[[1,2,0,1],[0,3,4,2],[2,0,3,2],[0,2,2,0]],[[1,2,0,2],[0,3,3,2],[2,0,3,2],[0,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,0,3,2],[0,2,1,2]],[[1,2,0,1],[0,3,3,2],[2,0,3,3],[0,2,1,1]],[[1,2,0,1],[0,3,3,3],[2,0,3,2],[0,2,1,1]],[[1,2,0,1],[0,3,4,2],[2,0,3,2],[0,2,1,1]],[[1,2,0,2],[0,3,3,2],[2,0,3,2],[0,2,1,1]],[[1,2,0,1],[0,3,3,2],[2,0,3,2],[0,1,2,2]],[[1,2,0,1],[0,3,3,2],[2,0,3,3],[0,1,2,1]],[[1,2,0,1],[0,3,3,3],[2,0,3,2],[0,1,2,1]],[[1,2,0,1],[0,3,4,2],[2,0,3,2],[0,1,2,1]],[[1,2,0,2],[0,3,3,2],[2,0,3,2],[0,1,2,1]],[[1,2,0,1],[0,3,3,2],[2,0,3,1],[1,2,3,0]],[[1,2,0,1],[0,3,3,2],[2,0,3,1],[1,3,2,0]],[[1,2,0,1],[0,3,3,2],[2,0,3,1],[2,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,0,4,1],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[3,0,3,1],[1,2,2,0]],[[1,2,0,1],[0,3,3,3],[2,0,3,1],[1,2,2,0]],[[1,2,0,1],[0,3,4,2],[2,0,3,1],[1,2,2,0]],[[1,2,0,1],[0,4,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,0,2],[0,3,3,2],[2,0,3,1],[1,2,2,0]],[[1,3,0,1],[0,3,3,2],[2,0,3,1],[1,2,2,0]],[[2,2,0,1],[0,3,3,2],[2,0,3,1],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,0,4,1],[1,2,1,1]],[[1,2,0,1],[0,3,3,3],[2,0,3,1],[1,2,1,1]],[[1,2,0,1],[0,3,4,2],[2,0,3,1],[1,2,1,1]],[[1,2,0,1],[0,4,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,0,2],[0,3,3,2],[2,0,3,1],[1,2,1,1]],[[1,3,0,1],[0,3,3,2],[2,0,3,1],[1,2,1,1]],[[2,2,0,1],[0,3,3,2],[2,0,3,1],[1,2,1,1]],[[1,2,0,1],[0,3,3,2],[2,0,3,0],[1,2,2,2]],[[1,2,0,1],[0,3,3,2],[2,0,3,0],[1,2,3,1]],[[1,2,0,1],[0,3,3,2],[2,0,3,0],[1,3,2,1]],[[1,2,0,1],[0,3,3,2],[2,0,3,0],[2,2,2,1]],[[1,2,0,1],[0,3,3,2],[2,0,4,0],[1,2,2,1]],[[1,2,0,1],[0,3,3,2],[3,0,3,0],[1,2,2,1]],[[1,2,0,1],[0,3,3,3],[2,0,3,0],[1,2,2,1]],[[1,2,0,1],[0,3,4,2],[2,0,3,0],[1,2,2,1]],[[1,2,0,1],[0,4,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,0,2],[0,3,3,2],[2,0,3,0],[1,2,2,1]],[[1,3,0,1],[0,3,3,2],[2,0,3,0],[1,2,2,1]],[[2,2,0,1],[0,3,3,2],[2,0,3,0],[1,2,2,1]],[[1,2,0,1],[0,3,3,2],[2,0,2,3],[1,2,2,0]],[[1,2,0,1],[0,3,3,3],[2,0,2,2],[1,2,2,0]],[[1,2,0,1],[0,3,4,2],[2,0,2,2],[1,2,2,0]],[[1,2,0,1],[0,4,3,2],[2,0,2,2],[1,2,2,0]],[[1,2,0,2],[0,3,3,2],[2,0,2,2],[1,2,2,0]],[[1,3,0,1],[0,3,3,2],[2,0,2,2],[1,2,2,0]],[[2,2,0,1],[0,3,3,2],[2,0,2,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[2,0,2,2],[1,2,1,2]],[[1,2,0,1],[0,3,3,2],[2,0,2,3],[1,2,1,1]],[[1,2,0,1],[0,3,3,3],[2,0,2,2],[1,2,1,1]],[[1,2,0,1],[0,3,4,2],[2,0,2,2],[1,2,1,1]],[[1,2,0,1],[0,4,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,0,2],[0,3,3,2],[2,0,2,2],[1,2,1,1]],[[1,3,0,1],[0,3,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,2],[0,2,3,2],[0,0,3,2],[1,2,2,1]],[[1,1,2,1],[0,2,3,3],[0,0,3,2],[1,2,2,1]],[[1,1,2,1],[0,2,3,2],[0,0,3,3],[1,2,2,1]],[[1,1,2,1],[0,2,3,2],[0,0,3,2],[1,2,3,1]],[[1,1,2,1],[0,2,3,2],[0,0,3,2],[1,2,2,2]],[[2,2,0,1],[0,3,3,2],[2,0,2,2],[1,2,1,1]],[[1,2,0,1],[0,3,3,2],[2,0,2,2],[0,2,2,2]],[[1,2,0,1],[0,3,3,2],[2,0,2,2],[0,2,3,1]],[[1,2,0,1],[0,3,3,2],[2,0,2,3],[0,2,2,1]],[[1,2,0,1],[0,3,3,3],[2,0,2,2],[0,2,2,1]],[[1,2,0,1],[0,3,4,2],[2,0,2,2],[0,2,2,1]],[[1,2,0,2],[0,3,3,2],[2,0,2,2],[0,2,2,1]],[[1,2,0,1],[0,3,3,2],[2,0,1,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,2],[2,0,1,2],[1,2,3,1]],[[1,2,0,1],[0,3,3,2],[2,0,1,2],[1,3,2,1]],[[1,2,0,1],[0,3,3,2],[2,0,1,2],[2,2,2,1]],[[1,2,0,1],[0,3,3,2],[2,0,1,3],[1,2,2,1]],[[1,2,0,1],[0,3,3,2],[3,0,1,2],[1,2,2,1]],[[1,1,3,1],[0,2,3,2],[0,3,3,0],[1,2,2,0]],[[1,1,2,2],[0,2,3,2],[0,3,3,0],[1,2,2,0]],[[1,1,2,1],[0,2,4,2],[0,3,3,0],[1,2,2,0]],[[1,2,0,1],[0,3,3,3],[2,0,1,2],[1,2,2,1]],[[1,2,0,1],[0,3,4,2],[2,0,1,2],[1,2,2,1]],[[1,2,0,1],[0,4,3,2],[2,0,1,2],[1,2,2,1]],[[1,2,0,2],[0,3,3,2],[2,0,1,2],[1,2,2,1]],[[1,3,0,1],[0,3,3,2],[2,0,1,2],[1,2,2,1]],[[2,2,0,1],[0,3,3,2],[2,0,1,2],[1,2,2,1]],[[1,2,0,1],[0,3,3,2],[1,4,3,1],[1,2,0,0]],[[1,2,0,1],[0,3,3,3],[1,3,3,1],[1,2,0,0]],[[1,2,0,1],[0,3,4,2],[1,3,3,1],[1,2,0,0]],[[1,2,0,1],[0,4,3,2],[1,3,3,1],[1,2,0,0]],[[1,2,0,2],[0,3,3,2],[1,3,3,1],[1,2,0,0]],[[1,3,0,1],[0,3,3,2],[1,3,3,1],[1,2,0,0]],[[2,2,0,1],[0,3,3,2],[1,3,3,1],[1,2,0,0]],[[1,1,3,1],[0,2,3,2],[1,2,3,0],[1,2,2,0]],[[1,1,2,2],[0,2,3,2],[1,2,3,0],[1,2,2,0]],[[1,1,2,1],[0,2,4,2],[1,2,3,0],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,0,1],[0,3,3,2],[1,3,3,0],[2,2,1,0]],[[1,2,0,1],[0,3,3,2],[1,4,3,0],[1,2,1,0]],[[1,2,0,1],[0,3,4,2],[1,3,3,0],[1,2,1,0]],[[1,2,0,1],[0,4,3,2],[1,3,3,0],[1,2,1,0]],[[1,3,0,1],[0,3,3,2],[1,3,3,0],[1,2,1,0]],[[2,2,0,1],[0,3,3,2],[1,3,3,0],[1,2,1,0]],[[1,2,0,1],[0,3,3,2],[1,4,3,0],[1,1,2,0]],[[1,2,0,1],[0,3,4,2],[1,3,3,0],[1,1,2,0]],[[1,2,0,1],[0,4,3,2],[1,3,3,0],[1,1,2,0]],[[1,3,0,1],[0,3,3,2],[1,3,3,0],[1,1,2,0]],[[2,2,0,1],[0,3,3,2],[1,3,3,0],[1,1,2,0]],[[1,1,3,1],[0,2,3,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,2],[0,2,3,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,1],[0,2,4,2],[1,3,3,0],[1,1,1,1]],[[1,1,3,1],[0,2,3,2],[1,3,3,0],[1,1,2,0]],[[1,1,2,2],[0,2,3,2],[1,3,3,0],[1,1,2,0]],[[1,1,2,1],[0,2,4,2],[1,3,3,0],[1,1,2,0]],[[1,1,3,1],[0,2,3,2],[1,3,3,0],[1,2,0,1]],[[1,1,2,2],[0,2,3,2],[1,3,3,0],[1,2,0,1]],[[1,1,2,1],[0,2,4,2],[1,3,3,0],[1,2,0,1]],[[1,1,3,1],[0,2,3,2],[1,3,3,0],[1,2,1,0]],[[1,1,2,2],[0,2,3,2],[1,3,3,0],[1,2,1,0]],[[1,1,2,1],[0,2,4,2],[1,3,3,0],[1,2,1,0]],[[1,2,0,1],[0,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,0,1],[0,3,3,2],[1,3,2,1],[2,2,1,0]],[[1,2,0,1],[0,3,3,2],[1,4,2,1],[1,2,1,0]],[[1,2,0,1],[0,3,3,3],[1,3,2,1],[1,2,1,0]],[[1,2,0,1],[0,3,4,2],[1,3,2,1],[1,2,1,0]],[[1,2,0,1],[0,4,3,2],[1,3,2,1],[1,2,1,0]],[[1,2,0,2],[0,3,3,2],[1,3,2,1],[1,2,1,0]],[[1,3,0,1],[0,3,3,2],[1,3,2,1],[1,2,1,0]],[[2,2,0,1],[0,3,3,2],[1,3,2,1],[1,2,1,0]],[[1,2,0,1],[0,3,3,2],[1,3,2,1],[1,3,0,1]],[[1,2,0,1],[0,3,3,2],[1,3,2,1],[2,2,0,1]],[[1,2,0,1],[0,3,3,2],[1,4,2,1],[1,2,0,1]],[[1,2,0,1],[0,3,3,3],[1,3,2,1],[1,2,0,1]],[[1,2,0,1],[0,3,4,2],[1,3,2,1],[1,2,0,1]],[[1,2,0,1],[0,4,3,2],[1,3,2,1],[1,2,0,1]],[[1,2,0,2],[0,3,3,2],[1,3,2,1],[1,2,0,1]],[[1,3,0,1],[0,3,3,2],[1,3,2,1],[1,2,0,1]],[[2,2,0,1],[0,3,3,2],[1,3,2,1],[1,2,0,1]],[[1,2,0,1],[0,3,3,2],[1,4,2,1],[1,1,2,0]],[[1,2,0,1],[0,3,3,3],[1,3,2,1],[1,1,2,0]],[[1,2,0,1],[0,3,4,2],[1,3,2,1],[1,1,2,0]],[[1,2,0,1],[0,4,3,2],[1,3,2,1],[1,1,2,0]],[[1,2,0,2],[0,3,3,2],[1,3,2,1],[1,1,2,0]],[[1,3,0,1],[0,3,3,2],[1,3,2,1],[1,1,2,0]],[[2,2,0,1],[0,3,3,2],[1,3,2,1],[1,1,2,0]],[[1,2,0,1],[0,3,3,2],[1,4,2,1],[1,1,1,1]],[[1,2,0,1],[0,3,3,3],[1,3,2,1],[1,1,1,1]],[[1,2,0,1],[0,3,4,2],[1,3,2,1],[1,1,1,1]],[[1,2,0,1],[0,4,3,2],[1,3,2,1],[1,1,1,1]],[[1,2,0,2],[0,3,3,2],[1,3,2,1],[1,1,1,1]],[[1,3,0,1],[0,3,3,2],[1,3,2,1],[1,1,1,1]],[[2,2,0,1],[0,3,3,2],[1,3,2,1],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[1,3,2,0],[1,3,1,1]],[[1,2,0,1],[0,3,3,2],[1,3,2,0],[2,2,1,1]],[[1,2,0,1],[0,3,3,2],[1,4,2,0],[1,2,1,1]],[[1,2,0,1],[0,3,3,3],[1,3,2,0],[1,2,1,1]],[[1,2,0,1],[0,3,4,2],[1,3,2,0],[1,2,1,1]],[[1,2,0,1],[0,4,3,2],[1,3,2,0],[1,2,1,1]],[[1,2,0,2],[0,3,3,2],[1,3,2,0],[1,2,1,1]],[[1,3,0,1],[0,3,3,2],[1,3,2,0],[1,2,1,1]],[[2,2,0,1],[0,3,3,2],[1,3,2,0],[1,2,1,1]],[[1,2,0,1],[0,3,3,2],[1,4,2,0],[1,1,2,1]],[[1,2,0,1],[0,3,3,3],[1,3,2,0],[1,1,2,1]],[[1,2,0,1],[0,3,4,2],[1,3,2,0],[1,1,2,1]],[[1,2,0,1],[0,4,3,2],[1,3,2,0],[1,1,2,1]],[[1,2,0,2],[0,3,3,2],[1,3,2,0],[1,1,2,1]],[[1,3,0,1],[0,3,3,2],[1,3,2,0],[1,1,2,1]],[[2,2,0,1],[0,3,3,2],[1,3,2,0],[1,1,2,1]],[[1,2,0,1],[0,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,0,1],[0,3,3,2],[1,3,1,2],[2,2,1,0]],[[1,2,0,1],[0,3,3,2],[1,3,1,3],[1,2,1,0]],[[1,2,0,1],[0,3,3,2],[1,4,1,2],[1,2,1,0]],[[1,2,0,1],[0,3,3,3],[1,3,1,2],[1,2,1,0]],[[1,2,0,1],[0,3,4,2],[1,3,1,2],[1,2,1,0]],[[1,2,0,1],[0,4,3,2],[1,3,1,2],[1,2,1,0]],[[1,2,0,2],[0,3,3,2],[1,3,1,2],[1,2,1,0]],[[1,3,0,1],[0,3,3,2],[1,3,1,2],[1,2,1,0]],[[2,2,0,1],[0,3,3,2],[1,3,1,2],[1,2,1,0]],[[1,2,0,1],[0,3,3,2],[1,3,1,2],[1,2,0,2]],[[1,2,0,1],[0,3,3,2],[1,3,1,2],[1,3,0,1]],[[1,2,0,1],[0,3,3,2],[1,3,1,2],[2,2,0,1]],[[1,2,0,1],[0,3,3,2],[1,3,1,3],[1,2,0,1]],[[1,2,0,1],[0,3,3,2],[1,4,1,2],[1,2,0,1]],[[1,2,0,1],[0,3,3,3],[1,3,1,2],[1,2,0,1]],[[1,1,3,1],[0,2,3,2],[2,1,3,0],[1,2,2,0]],[[1,1,2,2],[0,2,3,2],[2,1,3,0],[1,2,2,0]],[[1,1,2,1],[0,2,4,2],[2,1,3,0],[1,2,2,0]],[[1,2,0,1],[0,3,4,2],[1,3,1,2],[1,2,0,1]],[[1,2,0,1],[0,4,3,2],[1,3,1,2],[1,2,0,1]],[[1,2,0,2],[0,3,3,2],[1,3,1,2],[1,2,0,1]],[[1,3,0,1],[0,3,3,2],[1,3,1,2],[1,2,0,1]],[[2,2,0,1],[0,3,3,2],[1,3,1,2],[1,2,0,1]],[[1,2,0,1],[0,3,3,2],[1,3,1,3],[1,1,2,0]],[[1,2,0,1],[0,3,3,2],[1,4,1,2],[1,1,2,0]],[[1,2,0,1],[0,3,3,3],[1,3,1,2],[1,1,2,0]],[[1,2,0,1],[0,3,4,2],[1,3,1,2],[1,1,2,0]],[[1,2,0,1],[0,4,3,2],[1,3,1,2],[1,1,2,0]],[[1,2,0,2],[0,3,3,2],[1,3,1,2],[1,1,2,0]],[[1,3,0,1],[0,3,3,2],[1,3,1,2],[1,1,2,0]],[[2,2,0,1],[0,3,3,2],[1,3,1,2],[1,1,2,0]],[[1,2,0,1],[0,3,3,2],[1,3,1,2],[1,1,1,2]],[[1,2,0,1],[0,3,3,2],[1,3,1,3],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[1,4,1,2],[1,1,1,1]],[[1,2,0,1],[0,3,3,3],[1,3,1,2],[1,1,1,1]],[[1,2,0,1],[0,3,4,2],[1,3,1,2],[1,1,1,1]],[[1,2,0,1],[0,4,3,2],[1,3,1,2],[1,1,1,1]],[[1,2,0,2],[0,3,3,2],[1,3,1,2],[1,1,1,1]],[[1,3,0,1],[0,3,3,2],[1,3,1,2],[1,1,1,1]],[[2,2,0,1],[0,3,3,2],[1,3,1,2],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[1,3,1,1],[1,2,3,0]],[[1,2,0,1],[0,3,3,2],[1,3,1,1],[1,3,2,0]],[[1,2,0,1],[0,3,3,2],[1,3,1,1],[2,2,2,0]],[[1,2,0,1],[0,3,3,2],[1,4,1,1],[1,2,2,0]],[[1,2,0,1],[0,3,3,3],[1,3,1,1],[1,2,2,0]],[[1,2,0,1],[0,3,4,2],[1,3,1,1],[1,2,2,0]],[[1,2,0,1],[0,4,3,2],[1,3,1,1],[1,2,2,0]],[[1,2,0,2],[0,3,3,2],[1,3,1,1],[1,2,2,0]],[[1,3,0,1],[0,3,3,2],[1,3,1,1],[1,2,2,0]],[[2,2,0,1],[0,3,3,2],[1,3,1,1],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[1,3,1,0],[1,2,2,2]],[[1,2,0,1],[0,3,3,2],[1,3,1,0],[1,2,3,1]],[[1,2,0,1],[0,3,3,2],[1,3,1,0],[1,3,2,1]],[[1,2,0,1],[0,3,3,2],[1,3,1,0],[2,2,2,1]],[[1,2,0,1],[0,3,3,2],[1,4,1,0],[1,2,2,1]],[[1,2,0,1],[0,3,3,3],[1,3,1,0],[1,2,2,1]],[[1,2,0,1],[0,3,4,2],[1,3,1,0],[1,2,2,1]],[[1,2,0,1],[0,4,3,2],[1,3,1,0],[1,2,2,1]],[[1,2,0,2],[0,3,3,2],[1,3,1,0],[1,2,2,1]],[[1,3,0,1],[0,3,3,2],[1,3,1,0],[1,2,2,1]],[[2,2,0,1],[0,3,3,2],[1,3,1,0],[1,2,2,1]],[[1,2,0,1],[0,3,3,2],[1,3,0,2],[1,2,3,0]],[[1,2,0,1],[0,3,3,2],[1,3,0,2],[1,3,2,0]],[[1,2,0,1],[0,3,3,2],[1,3,0,2],[2,2,2,0]],[[1,2,0,1],[0,3,3,2],[1,3,0,3],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[1,4,0,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,3],[1,3,0,2],[1,2,2,0]],[[1,2,0,1],[0,3,4,2],[1,3,0,2],[1,2,2,0]],[[1,2,0,1],[0,4,3,2],[1,3,0,2],[1,2,2,0]],[[1,2,0,2],[0,3,3,2],[1,3,0,2],[1,2,2,0]],[[1,3,0,1],[0,3,3,2],[1,3,0,2],[1,2,2,0]],[[2,2,0,1],[0,3,3,2],[1,3,0,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[1,3,0,2],[1,2,1,2]],[[1,2,0,1],[0,3,3,2],[1,3,0,2],[1,3,1,1]],[[1,2,0,1],[0,3,3,2],[1,3,0,2],[2,2,1,1]],[[1,2,0,1],[0,3,3,2],[1,3,0,3],[1,2,1,1]],[[1,1,3,1],[0,2,3,2],[2,2,3,0],[0,2,2,0]],[[1,1,2,2],[0,2,3,2],[2,2,3,0],[0,2,2,0]],[[1,1,2,1],[0,2,4,2],[2,2,3,0],[0,2,2,0]],[[1,2,0,1],[0,3,3,2],[1,4,0,2],[1,2,1,1]],[[1,2,0,1],[0,3,3,3],[1,3,0,2],[1,2,1,1]],[[1,2,0,1],[0,3,4,2],[1,3,0,2],[1,2,1,1]],[[1,2,0,1],[0,4,3,2],[1,3,0,2],[1,2,1,1]],[[1,2,0,2],[0,3,3,2],[1,3,0,2],[1,2,1,1]],[[1,3,0,1],[0,3,3,2],[1,3,0,2],[1,2,1,1]],[[2,2,0,1],[0,3,3,2],[1,3,0,2],[1,2,1,1]],[[1,2,0,1],[0,3,3,2],[1,3,0,2],[1,1,2,2]],[[1,2,0,1],[0,3,3,2],[1,3,0,2],[1,1,3,1]],[[1,2,0,1],[0,3,3,2],[1,3,0,3],[1,1,2,1]],[[1,2,0,1],[0,3,3,2],[1,4,0,2],[1,1,2,1]],[[1,2,0,1],[0,3,3,3],[1,3,0,2],[1,1,2,1]],[[1,2,0,1],[0,3,4,2],[1,3,0,2],[1,1,2,1]],[[1,2,0,1],[0,4,3,2],[1,3,0,2],[1,1,2,1]],[[1,2,0,2],[0,3,3,2],[1,3,0,2],[1,1,2,1]],[[1,3,0,1],[0,3,3,2],[1,3,0,2],[1,1,2,1]],[[2,2,0,1],[0,3,3,2],[1,3,0,2],[1,1,2,1]],[[1,2,0,1],[0,3,3,2],[1,3,0,1],[1,2,2,2]],[[1,2,0,1],[0,3,3,2],[1,3,0,1],[1,2,3,1]],[[1,2,0,1],[0,3,3,2],[1,3,0,1],[1,3,2,1]],[[1,2,0,1],[0,3,3,2],[1,3,0,1],[2,2,2,1]],[[1,2,0,1],[0,3,3,2],[1,4,0,1],[1,2,2,1]],[[1,2,0,1],[0,3,3,3],[1,3,0,1],[1,2,2,1]],[[1,2,0,1],[0,3,4,2],[1,3,0,1],[1,2,2,1]],[[1,2,0,1],[0,4,3,2],[1,3,0,1],[1,2,2,1]],[[1,2,0,2],[0,3,3,2],[1,3,0,1],[1,2,2,1]],[[1,3,0,1],[0,3,3,2],[1,3,0,1],[1,2,2,1]],[[2,2,0,1],[0,3,3,2],[1,3,0,1],[1,2,2,1]],[[1,2,0,1],[0,3,3,2],[1,2,3,3],[1,1,0,1]],[[1,2,0,1],[0,3,3,3],[1,2,3,2],[1,1,0,1]],[[1,2,0,1],[0,3,4,2],[1,2,3,2],[1,1,0,1]],[[1,2,0,2],[0,3,3,2],[1,2,3,2],[1,1,0,1]],[[1,2,0,1],[0,3,3,2],[1,2,4,1],[1,2,1,0]],[[1,2,0,1],[0,3,3,3],[1,2,3,1],[1,2,1,0]],[[1,2,0,1],[0,3,4,2],[1,2,3,1],[1,2,1,0]],[[1,2,0,1],[0,4,3,2],[1,2,3,1],[1,2,1,0]],[[1,2,0,2],[0,3,3,2],[1,2,3,1],[1,2,1,0]],[[1,3,0,1],[0,3,3,2],[1,2,3,1],[1,2,1,0]],[[2,2,0,1],[0,3,3,2],[1,2,3,1],[1,2,1,0]],[[1,2,0,1],[0,3,3,2],[1,2,4,1],[1,2,0,1]],[[1,2,0,1],[0,3,3,3],[1,2,3,1],[1,2,0,1]],[[1,2,0,1],[0,3,4,2],[1,2,3,1],[1,2,0,1]],[[1,2,0,1],[0,4,3,2],[1,2,3,1],[1,2,0,1]],[[1,2,0,2],[0,3,3,2],[1,2,3,1],[1,2,0,1]],[[1,3,0,1],[0,3,3,2],[1,2,3,1],[1,2,0,1]],[[2,2,0,1],[0,3,3,2],[1,2,3,1],[1,2,0,1]],[[1,2,0,1],[0,3,3,2],[1,2,3,1],[1,1,3,0]],[[1,2,0,1],[0,3,3,2],[1,2,4,1],[1,1,2,0]],[[1,2,0,1],[0,3,3,3],[1,2,3,1],[1,1,2,0]],[[1,2,0,1],[0,3,4,2],[1,2,3,1],[1,1,2,0]],[[1,2,0,1],[0,4,3,2],[1,2,3,1],[1,1,2,0]],[[1,2,0,2],[0,3,3,2],[1,2,3,1],[1,1,2,0]],[[1,3,0,1],[0,3,3,2],[1,2,3,1],[1,1,2,0]],[[2,2,0,1],[0,3,3,2],[1,2,3,1],[1,1,2,0]],[[1,2,0,1],[0,3,3,2],[1,2,4,1],[1,1,1,1]],[[1,2,0,1],[0,3,3,3],[1,2,3,1],[1,1,1,1]],[[1,2,0,1],[0,3,4,2],[1,2,3,1],[1,1,1,1]],[[1,2,0,1],[0,4,3,2],[1,2,3,1],[1,1,1,1]],[[1,2,0,2],[0,3,3,2],[1,2,3,1],[1,1,1,1]],[[1,3,0,1],[0,3,3,2],[1,2,3,1],[1,1,1,1]],[[2,2,0,1],[0,3,3,2],[1,2,3,1],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[1,2,4,1],[1,0,2,1]],[[1,2,0,1],[0,3,3,3],[1,2,3,1],[1,0,2,1]],[[1,2,0,1],[0,3,4,2],[1,2,3,1],[1,0,2,1]],[[1,2,0,2],[0,3,3,2],[1,2,3,1],[1,0,2,1]],[[1,2,0,1],[0,3,3,2],[1,2,4,0],[1,2,1,1]],[[1,2,0,1],[0,3,3,3],[1,2,3,0],[1,2,1,1]],[[1,2,0,1],[0,3,4,2],[1,2,3,0],[1,2,1,1]],[[1,2,0,1],[0,4,3,2],[1,2,3,0],[1,2,1,1]],[[1,2,0,2],[0,3,3,2],[1,2,3,0],[1,2,1,1]],[[1,3,0,1],[0,3,3,2],[1,2,3,0],[1,2,1,1]],[[2,2,0,1],[0,3,3,2],[1,2,3,0],[1,2,1,1]],[[1,2,0,1],[0,3,3,2],[1,2,3,0],[1,1,2,2]],[[1,2,0,1],[0,3,3,2],[1,2,3,0],[1,1,3,1]],[[1,2,0,1],[0,3,3,2],[1,2,4,0],[1,1,2,1]],[[1,2,0,1],[0,3,3,3],[1,2,3,0],[1,1,2,1]],[[1,2,0,1],[0,3,4,2],[1,2,3,0],[1,1,2,1]],[[1,2,0,1],[0,4,3,2],[1,2,3,0],[1,1,2,1]],[[1,2,0,2],[0,3,3,2],[1,2,3,0],[1,1,2,1]],[[1,3,0,1],[0,3,3,2],[1,2,3,0],[1,1,2,1]],[[2,2,0,1],[0,3,3,2],[1,2,3,0],[1,1,2,1]],[[1,2,0,1],[0,3,3,2],[1,2,2,3],[1,2,1,0]],[[1,2,0,1],[0,3,3,3],[1,2,2,2],[1,2,1,0]],[[1,2,0,1],[0,3,4,2],[1,2,2,2],[1,2,1,0]],[[1,2,0,1],[0,4,3,2],[1,2,2,2],[1,2,1,0]],[[1,2,0,2],[0,3,3,2],[1,2,2,2],[1,2,1,0]],[[1,3,0,1],[0,3,3,2],[1,2,2,2],[1,2,1,0]],[[2,2,0,1],[0,3,3,2],[1,2,2,2],[1,2,1,0]],[[1,2,0,1],[0,3,3,2],[1,2,2,2],[1,2,0,2]],[[1,2,0,1],[0,3,3,2],[1,2,2,3],[1,2,0,1]],[[1,2,0,1],[0,3,3,3],[1,2,2,2],[1,2,0,1]],[[1,2,0,1],[0,3,4,2],[1,2,2,2],[1,2,0,1]],[[1,2,0,1],[0,4,3,2],[1,2,2,2],[1,2,0,1]],[[1,2,0,2],[0,3,3,2],[1,2,2,2],[1,2,0,1]],[[1,3,0,1],[0,3,3,2],[1,2,2,2],[1,2,0,1]],[[2,2,0,1],[0,3,3,2],[1,2,2,2],[1,2,0,1]],[[1,2,0,1],[0,3,3,2],[1,2,2,3],[1,1,2,0]],[[1,2,0,1],[0,3,3,3],[1,2,2,2],[1,1,2,0]],[[1,2,0,1],[0,3,4,2],[1,2,2,2],[1,1,2,0]],[[1,2,0,1],[0,4,3,2],[1,2,2,2],[1,1,2,0]],[[1,2,0,2],[0,3,3,2],[1,2,2,2],[1,1,2,0]],[[1,3,0,1],[0,3,3,2],[1,2,2,2],[1,1,2,0]],[[2,2,0,1],[0,3,3,2],[1,2,2,2],[1,1,2,0]],[[1,2,0,1],[0,3,3,2],[1,2,2,2],[1,1,1,2]],[[1,2,0,1],[0,3,3,2],[1,2,2,3],[1,1,1,1]],[[1,2,0,1],[0,3,3,3],[1,2,2,2],[1,1,1,1]],[[1,2,0,1],[0,3,4,2],[1,2,2,2],[1,1,1,1]],[[1,2,0,1],[0,4,3,2],[1,2,2,2],[1,1,1,1]],[[1,2,0,2],[0,3,3,2],[1,2,2,2],[1,1,1,1]],[[1,3,0,1],[0,3,3,2],[1,2,2,2],[1,1,1,1]],[[2,2,0,1],[0,3,3,2],[1,2,2,2],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[1,2,2,2],[1,0,2,2]],[[1,2,0,1],[0,3,3,2],[1,2,2,3],[1,0,2,1]],[[1,2,0,1],[0,3,3,3],[1,2,2,2],[1,0,2,1]],[[1,2,0,1],[0,3,4,2],[1,2,2,2],[1,0,2,1]],[[1,2,0,2],[0,3,3,2],[1,2,2,2],[1,0,2,1]],[[1,2,0,1],[0,3,3,2],[1,2,1,2],[1,1,2,2]],[[1,2,0,1],[0,3,3,2],[1,2,1,2],[1,1,3,1]],[[1,2,0,1],[0,3,3,2],[1,2,1,3],[1,1,2,1]],[[1,2,0,1],[0,3,3,3],[1,2,1,2],[1,1,2,1]],[[1,2,0,1],[0,3,4,2],[1,2,1,2],[1,1,2,1]],[[1,2,0,1],[0,4,3,2],[1,2,1,2],[1,1,2,1]],[[1,2,0,2],[0,3,3,2],[1,2,1,2],[1,1,2,1]],[[1,3,0,1],[0,3,3,2],[1,2,1,2],[1,1,2,1]],[[2,2,0,1],[0,3,3,2],[1,2,1,2],[1,1,2,1]],[[1,2,0,1],[0,3,3,2],[1,2,0,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,2],[1,2,0,2],[1,2,3,1]],[[1,2,0,1],[0,3,3,2],[1,2,0,2],[1,3,2,1]],[[1,2,0,1],[0,3,3,2],[1,2,0,2],[2,2,2,1]],[[1,2,0,1],[0,3,3,2],[1,2,0,3],[1,2,2,1]],[[1,2,0,1],[0,3,3,3],[1,2,0,2],[1,2,2,1]],[[1,2,0,1],[0,3,4,2],[1,2,0,2],[1,2,2,1]],[[1,2,0,1],[0,4,3,2],[1,2,0,2],[1,2,2,1]],[[1,2,0,2],[0,3,3,2],[1,2,0,2],[1,2,2,1]],[[1,3,0,1],[0,3,3,2],[1,2,0,2],[1,2,2,1]],[[2,2,0,1],[0,3,3,2],[1,2,0,2],[1,2,2,1]],[[1,1,3,1],[0,2,3,2],[2,3,3,0],[0,1,1,1]],[[1,1,2,2],[0,2,3,2],[2,3,3,0],[0,1,1,1]],[[1,1,2,1],[0,2,4,2],[2,3,3,0],[0,1,1,1]],[[1,1,3,1],[0,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,2,2],[0,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,2,1],[0,2,4,2],[2,3,3,0],[0,1,2,0]],[[1,1,3,1],[0,2,3,2],[2,3,3,0],[0,2,0,1]],[[1,1,2,2],[0,2,3,2],[2,3,3,0],[0,2,0,1]],[[1,1,2,1],[0,2,4,2],[2,3,3,0],[0,2,0,1]],[[1,1,3,1],[0,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,2,2],[0,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,2,1],[0,2,4,2],[2,3,3,0],[0,2,1,0]],[[1,2,0,1],[0,3,3,2],[1,1,3,3],[1,1,2,0]],[[1,2,0,1],[0,3,3,3],[1,1,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,4,2],[1,1,3,2],[1,1,2,0]],[[1,2,0,2],[0,3,3,2],[1,1,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,3,2],[1,1,3,2],[1,1,1,2]],[[1,2,0,1],[0,3,3,2],[1,1,3,3],[1,1,1,1]],[[1,2,0,1],[0,3,3,3],[1,1,3,2],[1,1,1,1]],[[1,2,0,1],[0,3,4,2],[1,1,3,2],[1,1,1,1]],[[1,2,0,2],[0,3,3,2],[1,1,3,2],[1,1,1,1]],[[1,2,0,1],[0,3,3,2],[1,1,3,2],[1,0,2,2]],[[1,1,3,1],[0,2,3,2],[2,3,3,0],[1,0,1,1]],[[1,1,2,2],[0,2,3,2],[2,3,3,0],[1,0,1,1]],[[1,1,2,1],[0,2,4,2],[2,3,3,0],[1,0,1,1]],[[1,1,3,1],[0,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,2,2],[0,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,2,1],[0,2,4,2],[2,3,3,0],[1,0,2,0]],[[1,1,3,1],[0,2,3,2],[2,3,3,0],[1,1,0,1]],[[1,1,2,2],[0,2,3,2],[2,3,3,0],[1,1,0,1]],[[1,1,2,1],[0,2,4,2],[2,3,3,0],[1,1,0,1]],[[1,1,3,1],[0,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,2,2],[0,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[0,2,4,2],[2,3,3,0],[1,1,1,0]],[[1,2,0,1],[0,3,3,2],[1,1,3,3],[1,0,2,1]],[[1,2,0,1],[0,3,3,3],[1,1,3,2],[1,0,2,1]],[[1,2,0,1],[0,3,4,2],[1,1,3,2],[1,0,2,1]],[[1,2,0,2],[0,3,3,2],[1,1,3,2],[1,0,2,1]],[[1,2,0,1],[0,3,3,2],[1,1,3,1],[1,2,3,0]],[[1,2,0,1],[0,3,3,2],[1,1,3,1],[1,3,2,0]],[[1,2,0,1],[0,3,3,2],[1,1,3,1],[2,2,2,0]],[[1,2,0,1],[0,3,3,2],[1,1,4,1],[1,2,2,0]],[[1,2,0,1],[0,3,3,3],[1,1,3,1],[1,2,2,0]],[[1,2,0,1],[0,3,4,2],[1,1,3,1],[1,2,2,0]],[[1,2,0,1],[0,4,3,2],[1,1,3,1],[1,2,2,0]],[[1,2,0,2],[0,3,3,2],[1,1,3,1],[1,2,2,0]],[[1,3,0,1],[0,3,3,2],[1,1,3,1],[1,2,2,0]],[[2,2,0,1],[0,3,3,2],[1,1,3,1],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[1,1,4,1],[1,2,1,1]],[[1,2,0,1],[0,3,3,3],[1,1,3,1],[1,2,1,1]],[[1,2,0,1],[0,3,4,2],[1,1,3,1],[1,2,1,1]],[[1,2,0,1],[0,4,3,2],[1,1,3,1],[1,2,1,1]],[[1,2,0,2],[0,3,3,2],[1,1,3,1],[1,2,1,1]],[[1,3,0,1],[0,3,3,2],[1,1,3,1],[1,2,1,1]],[[2,2,0,1],[0,3,3,2],[1,1,3,1],[1,2,1,1]],[[1,2,0,1],[0,3,3,2],[1,1,3,0],[1,2,2,2]],[[1,2,0,1],[0,3,3,2],[1,1,3,0],[1,2,3,1]],[[1,2,0,1],[0,3,3,2],[1,1,3,0],[1,3,2,1]],[[1,2,0,1],[0,3,3,2],[1,1,3,0],[2,2,2,1]],[[1,2,0,1],[0,3,3,2],[1,1,4,0],[1,2,2,1]],[[1,2,0,1],[0,3,3,3],[1,1,3,0],[1,2,2,1]],[[1,2,0,1],[0,3,4,2],[1,1,3,0],[1,2,2,1]],[[1,2,0,1],[0,4,3,2],[1,1,3,0],[1,2,2,1]],[[1,2,0,2],[0,3,3,2],[1,1,3,0],[1,2,2,1]],[[1,3,0,1],[0,3,3,2],[1,1,3,0],[1,2,2,1]],[[2,2,0,1],[0,3,3,2],[1,1,3,0],[1,2,2,1]],[[1,2,0,1],[0,3,3,2],[1,1,2,3],[1,2,2,0]],[[1,2,0,1],[0,3,3,3],[1,1,2,2],[1,2,2,0]],[[1,2,0,1],[0,3,4,2],[1,1,2,2],[1,2,2,0]],[[1,2,0,1],[0,4,3,2],[1,1,2,2],[1,2,2,0]],[[1,2,0,2],[0,3,3,2],[1,1,2,2],[1,2,2,0]],[[1,3,0,1],[0,3,3,2],[1,1,2,2],[1,2,2,0]],[[2,2,0,1],[0,3,3,2],[1,1,2,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[1,1,2,2],[1,2,1,2]],[[1,2,0,1],[0,3,3,2],[1,1,2,3],[1,2,1,1]],[[1,2,0,1],[0,3,3,3],[1,1,2,2],[1,2,1,1]],[[1,2,0,1],[0,3,4,2],[1,1,2,2],[1,2,1,1]],[[1,2,0,1],[0,4,3,2],[1,1,2,2],[1,2,1,1]],[[1,2,0,2],[0,3,3,2],[1,1,2,2],[1,2,1,1]],[[1,3,0,1],[0,3,3,2],[1,1,2,2],[1,2,1,1]],[[2,2,0,1],[0,3,3,2],[1,1,2,2],[1,2,1,1]],[[1,2,0,1],[0,3,3,2],[1,1,1,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,2],[1,1,1,2],[1,2,3,1]],[[1,2,0,1],[0,3,3,2],[1,1,1,2],[1,3,2,1]],[[1,2,0,1],[0,3,3,2],[1,1,1,2],[2,2,2,1]],[[1,2,0,1],[0,3,3,2],[1,1,1,3],[1,2,2,1]],[[1,2,0,1],[0,3,3,3],[1,1,1,2],[1,2,2,1]],[[1,2,0,1],[0,3,4,2],[1,1,1,2],[1,2,2,1]],[[1,2,0,1],[0,4,3,2],[1,1,1,2],[1,2,2,1]],[[1,2,0,2],[0,3,3,2],[1,1,1,2],[1,2,2,1]],[[1,3,0,1],[0,3,3,2],[1,1,1,2],[1,2,2,1]],[[2,2,0,1],[0,3,3,2],[1,1,1,2],[1,2,2,1]],[[1,2,0,1],[0,3,3,2],[1,0,3,3],[1,2,2,0]],[[1,2,0,1],[0,3,3,3],[1,0,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,4,2],[1,0,3,2],[1,2,2,0]],[[1,2,0,2],[0,3,3,2],[1,0,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,2],[1,0,3,2],[1,2,1,2]],[[1,2,0,1],[0,3,3,2],[1,0,3,3],[1,2,1,1]],[[1,2,0,1],[0,3,3,3],[1,0,3,2],[1,2,1,1]],[[1,2,0,1],[0,3,4,2],[1,0,3,2],[1,2,1,1]],[[1,2,0,2],[0,3,3,2],[1,0,3,2],[1,2,1,1]],[[1,2,0,1],[0,3,3,2],[1,0,3,2],[1,1,2,2]],[[1,2,0,1],[0,3,3,2],[1,0,3,3],[1,1,2,1]],[[1,2,0,1],[0,3,3,3],[1,0,3,2],[1,1,2,1]],[[1,2,0,1],[0,3,4,2],[1,0,3,2],[1,1,2,1]],[[1,2,0,2],[0,3,3,2],[1,0,3,2],[1,1,2,1]],[[1,2,0,1],[0,3,3,2],[1,0,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,2],[1,0,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,3,2],[1,0,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,3,3],[1,0,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,4,2],[1,0,2,2],[1,2,2,1]],[[1,2,0,2],[0,3,3,2],[1,0,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,0,1],[0,3,3,1],[2,4,3,2],[1,1,0,0]],[[1,2,0,1],[0,3,3,1],[3,3,3,2],[1,1,0,0]],[[1,2,0,1],[0,3,4,1],[2,3,3,2],[1,1,0,0]],[[1,2,0,1],[0,4,3,1],[2,3,3,2],[1,1,0,0]],[[1,3,0,1],[0,3,3,1],[2,3,3,2],[1,1,0,0]],[[2,2,0,1],[0,3,3,1],[2,3,3,2],[1,1,0,0]],[[1,2,0,1],[0,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,0,1],[0,3,3,1],[3,3,3,2],[0,2,0,0]],[[1,2,0,1],[0,3,4,1],[2,3,3,2],[0,2,0,0]],[[1,2,0,1],[0,4,3,1],[2,3,3,2],[0,2,0,0]],[[1,3,0,1],[0,3,3,1],[2,3,3,2],[0,2,0,0]],[[2,2,0,1],[0,3,3,1],[2,3,3,2],[0,2,0,0]],[[1,2,0,1],[0,3,3,1],[2,3,3,3],[0,0,2,0]],[[1,2,0,1],[0,3,3,1],[2,3,4,2],[0,0,2,0]],[[1,2,0,1],[0,3,4,1],[2,3,3,2],[0,0,2,0]],[[1,2,0,1],[0,4,3,1],[2,3,3,2],[0,0,2,0]],[[1,3,0,1],[0,3,3,1],[2,3,3,2],[0,0,2,0]],[[2,2,0,1],[0,3,3,1],[2,3,3,2],[0,0,2,0]],[[1,2,0,1],[0,3,3,1],[2,3,3,2],[0,0,1,2]],[[1,2,0,1],[0,3,3,1],[2,3,3,3],[0,0,1,1]],[[1,2,0,1],[0,3,3,1],[2,3,4,2],[0,0,1,1]],[[1,2,0,1],[0,3,4,1],[2,3,3,2],[0,0,1,1]],[[1,2,0,1],[0,4,3,1],[2,3,3,2],[0,0,1,1]],[[1,3,0,1],[0,3,3,1],[2,3,3,2],[0,0,1,1]],[[2,2,0,1],[0,3,3,1],[2,3,3,2],[0,0,1,1]],[[1,2,0,1],[0,3,3,1],[2,3,4,1],[0,0,2,1]],[[1,2,0,1],[0,3,4,1],[2,3,3,1],[0,0,2,1]],[[1,2,0,1],[0,4,3,1],[2,3,3,1],[0,0,2,1]],[[1,3,0,1],[0,3,3,1],[2,3,3,1],[0,0,2,1]],[[2,2,0,1],[0,3,3,1],[2,3,3,1],[0,0,2,1]],[[1,2,0,1],[0,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,0,1],[0,3,3,1],[2,4,2,2],[1,2,0,0]],[[1,2,0,1],[0,3,3,1],[3,3,2,2],[1,2,0,0]],[[1,2,0,1],[0,3,4,1],[2,3,2,2],[1,2,0,0]],[[1,2,0,1],[0,4,3,1],[2,3,2,2],[1,2,0,0]],[[1,3,0,1],[0,3,3,1],[2,3,2,2],[1,2,0,0]],[[2,2,0,1],[0,3,3,1],[2,3,2,2],[1,2,0,0]],[[1,2,0,1],[0,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,0,1],[0,3,3,1],[2,4,2,2],[1,1,1,0]],[[1,2,0,1],[0,3,3,1],[3,3,2,2],[1,1,1,0]],[[1,2,0,1],[0,3,4,1],[2,3,2,2],[1,1,1,0]],[[1,2,0,1],[0,4,3,1],[2,3,2,2],[1,1,1,0]],[[1,3,0,1],[0,3,3,1],[2,3,2,2],[1,1,1,0]],[[2,2,0,1],[0,3,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,0,1],[0,3,3,1],[2,3,2,2],[2,1,0,1]],[[1,2,0,1],[0,3,3,1],[2,4,2,2],[1,1,0,1]],[[1,2,0,1],[0,3,3,1],[3,3,2,2],[1,1,0,1]],[[1,2,0,1],[0,3,4,1],[2,3,2,2],[1,1,0,1]],[[1,2,0,1],[0,4,3,1],[2,3,2,2],[1,1,0,1]],[[1,3,0,1],[0,3,3,1],[2,3,2,2],[1,1,0,1]],[[2,2,0,1],[0,3,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,0,1],[0,3,3,1],[2,3,2,2],[2,0,2,0]],[[1,2,0,1],[0,3,3,1],[2,4,2,2],[1,0,2,0]],[[1,2,0,1],[0,3,3,1],[3,3,2,2],[1,0,2,0]],[[1,2,0,1],[0,3,4,1],[2,3,2,2],[1,0,2,0]],[[1,2,0,1],[0,4,3,1],[2,3,2,2],[1,0,2,0]],[[1,3,0,1],[0,3,3,1],[2,3,2,2],[1,0,2,0]],[[2,2,0,1],[0,3,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,0,1],[0,3,3,1],[2,3,2,2],[2,0,1,1]],[[1,2,0,1],[0,3,3,1],[2,4,2,2],[1,0,1,1]],[[1,1,2,1],[0,3,0,0],[2,4,3,1],[1,2,2,1]],[[1,1,2,1],[0,3,0,0],[2,3,3,1],[2,2,2,1]],[[1,1,2,1],[0,3,0,0],[2,3,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,0,0],[2,3,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,0,0],[2,3,3,1],[1,2,2,2]],[[1,1,2,1],[0,3,0,0],[2,4,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,0],[2,3,3,2],[2,2,2,0]],[[1,1,2,1],[0,3,0,0],[2,3,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,0,0],[2,3,3,2],[1,2,3,0]],[[1,1,2,1],[0,3,0,1],[2,4,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,1],[2,3,1,2],[2,2,2,1]],[[1,1,2,1],[0,3,0,1],[2,3,1,2],[1,3,2,1]],[[1,1,2,1],[0,3,0,1],[2,3,1,2],[1,2,3,1]],[[1,1,2,1],[0,3,0,1],[2,3,1,2],[1,2,2,2]],[[1,1,2,1],[0,3,0,1],[2,4,2,1],[1,2,2,1]],[[1,1,2,1],[0,3,0,1],[2,3,2,1],[2,2,2,1]],[[1,1,2,1],[0,3,0,1],[2,3,2,1],[1,3,2,1]],[[1,1,2,1],[0,3,0,1],[2,3,2,1],[1,2,3,1]],[[1,1,2,1],[0,3,0,1],[2,3,2,1],[1,2,2,2]],[[1,1,2,1],[0,3,0,1],[2,4,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,1],[2,3,2,2],[2,2,2,0]],[[1,1,2,1],[0,3,0,1],[2,3,2,2],[1,3,2,0]],[[1,1,2,1],[0,3,0,1],[2,3,2,2],[1,2,3,0]],[[1,1,2,1],[0,3,0,1],[2,4,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,0,1],[2,3,3,1],[2,2,1,1]],[[1,1,2,1],[0,3,0,1],[2,3,3,1],[1,3,1,1]],[[1,1,2,1],[0,3,0,1],[2,4,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,0,1],[2,3,3,2],[2,2,0,1]],[[1,1,2,1],[0,3,0,1],[2,3,3,2],[1,3,0,1]],[[1,1,2,1],[0,3,0,1],[2,4,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,0,1],[2,3,3,2],[2,2,1,0]],[[1,1,2,1],[0,3,0,1],[2,3,3,2],[1,3,1,0]],[[1,2,0,1],[0,3,3,1],[3,3,2,2],[1,0,1,1]],[[1,2,0,1],[0,3,4,1],[2,3,2,2],[1,0,1,1]],[[1,2,0,1],[0,4,3,1],[2,3,2,2],[1,0,1,1]],[[1,3,0,1],[0,3,3,1],[2,3,2,2],[1,0,1,1]],[[2,2,0,1],[0,3,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,3,1],[0,3,0,2],[0,3,2,2],[1,2,2,1]],[[1,1,2,2],[0,3,0,2],[0,3,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,3],[0,3,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[0,3,2,3],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[0,3,2,2],[1,3,2,1]],[[1,1,2,1],[0,3,0,2],[0,3,2,2],[1,2,3,1]],[[1,1,2,1],[0,3,0,2],[0,3,2,2],[1,2,2,2]],[[1,1,2,1],[0,3,0,2],[0,3,4,1],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[0,3,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,0,2],[0,3,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,0,2],[0,3,3,1],[1,2,2,2]],[[1,1,3,1],[0,3,0,2],[0,3,3,2],[1,2,1,1]],[[1,1,2,2],[0,3,0,2],[0,3,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,0,3],[0,3,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[0,3,4,2],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[0,3,3,3],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[0,3,3,2],[1,2,1,2]],[[1,1,3,1],[0,3,0,2],[0,3,3,2],[1,2,2,0]],[[1,1,2,2],[0,3,0,2],[0,3,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,3],[0,3,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[0,3,4,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[0,3,3,3],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[0,3,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,0,2],[0,3,3,2],[1,2,3,0]],[[1,1,3,1],[0,3,0,2],[1,2,2,2],[1,2,2,1]],[[1,1,2,2],[0,3,0,2],[1,2,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,3],[1,2,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[0,3,0,2],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[0,3,0,2],[1,2,2,2],[1,2,2,2]],[[1,1,2,1],[0,3,0,2],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,0,2],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,0,2],[1,2,3,1],[1,2,2,2]],[[1,1,3,1],[0,3,0,2],[1,2,3,2],[1,2,1,1]],[[1,1,2,2],[0,3,0,2],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,0,3],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[1,2,3,2],[1,2,1,2]],[[1,1,3,1],[0,3,0,2],[1,2,3,2],[1,2,2,0]],[[1,1,2,2],[0,3,0,2],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,3],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[0,3,0,2],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,0,2],[1,2,3,2],[1,2,3,0]],[[1,1,3,1],[0,3,0,2],[1,3,1,2],[1,2,2,1]],[[1,1,2,2],[0,3,0,2],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[0,4,0,2],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,3],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,1,3],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[0,3,0,2],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[0,4,0,2],[1,3,2,1],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[0,3,0,2],[1,3,2,1],[1,2,2,2]],[[1,1,3,1],[0,3,0,2],[1,3,2,2],[1,1,2,1]],[[1,1,2,2],[0,3,0,2],[1,3,2,2],[1,1,2,1]],[[1,1,2,1],[0,3,0,3],[1,3,2,2],[1,1,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[0,3,0,2],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[0,4,0,2],[1,3,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[0,3,0,2],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[0,3,0,2],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[0,4,0,2],[1,3,3,1],[1,1,2,1]],[[1,1,2,1],[0,3,0,2],[1,4,3,1],[1,1,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,1],[1,1,2,2]],[[1,1,2,1],[0,4,0,2],[1,3,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[1,3,4,1],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,1],[1,3,1,1]],[[1,1,3,1],[0,3,0,2],[1,3,3,2],[1,0,2,1]],[[1,1,2,2],[0,3,0,2],[1,3,3,2],[1,0,2,1]],[[1,1,2,1],[0,3,0,3],[1,3,3,2],[1,0,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,4,2],[1,0,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,3],[1,0,2,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,2],[1,0,2,2]],[[1,1,3,1],[0,3,0,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,2],[0,3,0,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[0,4,0,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,0,3],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,0,2],[1,4,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,0,2],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,2],[1,1,1,2]],[[1,1,3,1],[0,3,0,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,2],[0,3,0,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[0,4,0,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,0,3],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,0,2],[1,4,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,0,2],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[0,3,0,2],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[0,3,0,2],[1,3,3,2],[1,1,3,0]],[[1,1,3,1],[0,3,0,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,2],[0,3,0,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[0,4,0,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,0,3],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,0,2],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,0,2],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[0,3,0,2],[1,3,3,2],[1,2,0,2]],[[1,1,3,1],[0,3,0,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,2],[0,3,0,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[0,4,0,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,0,3],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,0,2],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,0,2],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[0,3,0,2],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[0,3,0,2],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[0,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,1,3,1],[0,3,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,2],[0,3,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,3],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[3,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[0,3,0,2],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[0,3,0,2],[2,1,2,2],[1,2,2,2]],[[1,1,2,1],[0,3,0,2],[3,1,3,1],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,0,2],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,0,2],[2,1,3,1],[1,2,2,2]],[[1,1,3,1],[0,3,0,2],[2,1,3,2],[1,2,1,1]],[[1,1,2,2],[0,3,0,2],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,0,3],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,1,3,2],[1,2,1,2]],[[1,1,3,1],[0,3,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,2],[0,3,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,3],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[3,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,0,2],[2,1,3,2],[1,2,3,0]],[[1,1,3,1],[0,3,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,2],[0,3,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,3],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,1,3],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[0,3,0,2],[2,2,1,2],[1,2,2,2]],[[1,1,2,1],[0,3,0,2],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[0,3,0,2],[2,2,2,1],[1,2,2,2]],[[1,1,3,1],[0,3,0,2],[2,2,2,2],[0,2,2,1]],[[1,1,2,2],[0,3,0,2],[2,2,2,2],[0,2,2,1]],[[1,1,2,1],[0,3,0,3],[2,2,2,2],[0,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[0,3,0,2],[2,2,2,2],[0,2,2,2]],[[1,1,2,1],[0,3,0,2],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[0,3,0,2],[2,2,2,2],[1,2,3,0]],[[1,1,2,1],[0,3,0,2],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[0,3,0,2],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[0,3,0,2],[2,2,3,1],[0,2,2,2]],[[1,1,2,1],[0,3,0,2],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,2,3,1],[1,3,1,1]],[[1,1,3,1],[0,3,0,2],[2,2,3,2],[0,2,1,1]],[[1,1,2,2],[0,3,0,2],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[0,3,0,3],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,2,3,2],[0,2,1,2]],[[1,1,3,1],[0,3,0,2],[2,2,3,2],[0,2,2,0]],[[1,1,2,2],[0,3,0,2],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[0,3,0,3],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[0,3,0,2],[2,2,3,2],[0,2,3,0]],[[1,1,2,1],[0,3,0,2],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,0,2],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[0,3,0,2],[2,2,3,2],[1,3,0,1]],[[1,1,2,1],[0,3,0,2],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,0,2],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[0,3,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[0,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,0,1],[0,3,3,1],[2,4,2,2],[0,2,1,0]],[[1,2,0,1],[0,3,3,1],[3,3,2,2],[0,2,1,0]],[[1,2,0,1],[0,3,4,1],[2,3,2,2],[0,2,1,0]],[[1,2,0,1],[0,4,3,1],[2,3,2,2],[0,2,1,0]],[[1,3,0,1],[0,3,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[0,3,0,2],[3,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,0,2],[2,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,0,2],[1,3,2,1]],[[1,1,3,1],[0,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,2],[0,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[0,4,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[0,3,0,3],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[0,3,0,2],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,1,3],[0,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[0,3,0,2],[2,3,1,2],[0,2,2,2]],[[1,1,2,1],[0,4,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[0,3,0,2],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[0,3,0,2],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,1,2],[2,1,2,1]],[[1,1,2,1],[0,3,0,2],[2,4,2,0],[1,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,0],[2,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,0],[1,3,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,0],[1,2,3,1]],[[1,1,2,1],[0,4,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[0,3,0,2],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,1],[0,2,2,2]],[[1,1,2,1],[0,4,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[0,3,0,2],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[0,3,0,2],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,1],[2,1,2,1]],[[1,1,2,1],[0,3,0,2],[2,4,2,1],[1,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,2,1],[2,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,2,1],[1,3,2,0]],[[1,1,3,1],[0,3,0,2],[2,3,2,2],[0,1,2,1]],[[1,1,2,2],[0,3,0,2],[2,3,2,2],[0,1,2,1]],[[1,1,2,1],[0,3,0,3],[2,3,2,2],[0,1,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,2],[0,1,2,2]],[[1,1,2,1],[0,4,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[0,3,0,2],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,2,2],[0,2,3,0]],[[1,1,3,1],[0,3,0,2],[2,3,2,2],[1,0,2,1]],[[1,1,2,2],[0,3,0,2],[2,3,2,2],[1,0,2,1]],[[1,1,2,1],[0,3,0,3],[2,3,2,2],[1,0,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[0,3,0,2],[2,3,2,2],[1,0,2,2]],[[1,1,2,1],[0,4,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,3,0,2],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,3,0,2],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,2,2],[2,1,2,0]],[[2,2,0,1],[0,3,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,0,1],[0,3,3,1],[2,3,2,2],[0,3,0,1]],[[1,2,0,1],[0,3,3,1],[2,4,2,2],[0,2,0,1]],[[1,2,0,1],[0,3,3,1],[3,3,2,2],[0,2,0,1]],[[1,2,0,1],[0,3,4,1],[2,3,2,2],[0,2,0,1]],[[1,2,0,1],[0,4,3,1],[2,3,2,2],[0,2,0,1]],[[1,3,0,1],[0,3,3,1],[2,3,2,2],[0,2,0,1]],[[2,2,0,1],[0,3,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[0,3,0,2],[2,4,3,0],[1,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,0],[2,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,0],[1,3,1,1]],[[1,1,2,1],[0,4,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[0,3,0,2],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[0,3,0,2],[2,4,3,1],[0,1,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,1],[0,1,2,2]],[[1,1,2,1],[0,4,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[0,3,0,2],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,4,1],[0,2,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,1],[0,3,1,1]],[[1,1,2,1],[0,4,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[0,3,0,2],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[0,3,0,2],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,1],[2,0,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,1],[1,0,2,2]],[[1,1,2,1],[0,4,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,0,2],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,0,2],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,4,1],[1,1,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,1],[2,1,1,1]],[[1,1,2,1],[0,3,0,2],[2,4,3,1],[1,2,1,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,1],[2,2,1,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,1],[1,3,1,0]],[[1,2,0,1],[0,3,3,1],[2,4,2,2],[0,1,2,0]],[[1,2,0,1],[0,3,3,1],[3,3,2,2],[0,1,2,0]],[[1,1,3,1],[0,3,0,2],[2,3,3,2],[0,0,2,1]],[[1,1,2,2],[0,3,0,2],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[0,3,0,3],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[0,0,2,2]],[[1,1,3,1],[0,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,2],[0,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,4,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,0,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,0,2],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,0,2],[2,4,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[0,1,1,2]],[[1,1,3,1],[0,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,2],[0,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,4,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,0,3],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,0,2],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,0,2],[2,4,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[0,1,3,0]],[[1,1,3,1],[0,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,2],[0,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,4,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,3,0,3],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,3,0,2],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,3,0,2],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[0,3,0,2],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[0,3,0,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[0,2,0,2]],[[1,1,3,1],[0,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,2],[0,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,4,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,3,0,3],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,3,0,2],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,3,0,2],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[0,3,0,2],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,3],[0,2,1,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[0,3,4,1],[2,3,2,2],[0,1,2,0]],[[1,2,0,1],[0,4,3,1],[2,3,2,2],[0,1,2,0]],[[1,3,0,1],[0,3,3,1],[2,3,2,2],[0,1,2,0]],[[2,2,0,1],[0,3,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,0,1],[0,3,3,1],[2,4,2,2],[0,1,1,1]],[[1,2,0,1],[0,3,3,1],[3,3,2,2],[0,1,1,1]],[[1,2,0,1],[0,3,4,1],[2,3,2,2],[0,1,1,1]],[[1,2,0,1],[0,4,3,1],[2,3,2,2],[0,1,1,1]],[[1,3,0,1],[0,3,3,1],[2,3,2,2],[0,1,1,1]],[[2,2,0,1],[0,3,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,3,1],[0,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,2],[0,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,4,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,0,3],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,0,2],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,0,2],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[2,0,1,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[1,0,1,2]],[[1,1,3,1],[0,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,2],[0,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,4,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,0,3],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,0,2],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,0,2],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[1,0,3,0]],[[1,1,3,1],[0,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,2],[0,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,4,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,0,3],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,0,2],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,0,2],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,0,2],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[1,1,0,2]],[[1,1,3,1],[0,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,2],[0,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,4,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,3,0,3],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,3,0,2],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,3,0,2],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[0,3,0,2],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,3],[1,1,1,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[0,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,2,0,1],[0,3,3,1],[2,4,2,1],[1,2,0,1]],[[1,2,0,1],[0,3,3,1],[3,3,2,1],[1,2,0,1]],[[1,2,0,1],[0,4,3,1],[2,3,2,1],[1,2,0,1]],[[1,1,2,1],[0,4,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,3,0,2],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,3,0,2],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[0,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[0,3,3,1],[2,3,2,1],[2,1,1,1]],[[1,2,0,1],[0,3,3,1],[2,4,2,1],[1,1,1,1]],[[1,2,0,1],[0,3,3,1],[3,3,2,1],[1,1,1,1]],[[1,2,0,1],[0,3,4,1],[2,3,2,1],[1,1,1,1]],[[1,2,0,1],[0,4,3,1],[2,3,2,1],[1,1,1,1]],[[1,3,0,1],[0,3,3,1],[2,3,2,1],[1,1,1,1]],[[2,2,0,1],[0,3,3,1],[2,3,2,1],[1,1,1,1]],[[1,2,0,1],[0,3,3,1],[2,3,2,1],[2,0,2,1]],[[1,2,0,1],[0,3,3,1],[2,4,2,1],[1,0,2,1]],[[1,2,0,1],[0,3,3,1],[3,3,2,1],[1,0,2,1]],[[1,2,0,1],[0,3,4,1],[2,3,2,1],[1,0,2,1]],[[1,2,0,1],[0,4,3,1],[2,3,2,1],[1,0,2,1]],[[1,3,0,1],[0,3,3,1],[2,3,2,1],[1,0,2,1]],[[2,2,0,1],[0,3,3,1],[2,3,2,1],[1,0,2,1]],[[1,2,0,1],[0,3,3,1],[2,3,2,1],[0,3,1,1]],[[1,2,0,1],[0,3,3,1],[2,4,2,1],[0,2,1,1]],[[1,2,0,1],[0,3,3,1],[3,3,2,1],[0,2,1,1]],[[1,2,0,1],[0,3,4,1],[2,3,2,1],[0,2,1,1]],[[1,1,2,1],[0,3,1,0],[1,4,3,1],[1,2,2,1]],[[1,1,2,1],[0,3,1,0],[1,3,3,1],[2,2,2,1]],[[1,1,2,1],[0,3,1,0],[1,3,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,1,0],[1,3,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,1,0],[1,3,3,1],[1,2,2,2]],[[1,1,2,1],[0,3,1,0],[1,4,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,1,0],[1,3,3,2],[2,2,2,0]],[[1,1,2,1],[0,3,1,0],[1,3,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,1,0],[1,3,3,2],[1,2,3,0]],[[1,1,2,1],[0,3,1,0],[2,4,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,0],[2,3,1,2],[2,2,2,1]],[[1,1,2,1],[0,3,1,0],[2,3,1,2],[1,3,2,1]],[[1,1,2,1],[0,3,1,0],[2,3,1,2],[1,2,3,1]],[[1,1,2,1],[0,3,1,0],[2,3,1,2],[1,2,2,2]],[[1,1,2,1],[0,3,1,0],[2,4,2,1],[1,2,2,1]],[[1,1,2,1],[0,3,1,0],[2,3,2,1],[2,2,2,1]],[[1,1,2,1],[0,3,1,0],[2,3,2,1],[1,3,2,1]],[[1,1,2,1],[0,3,1,0],[2,3,2,1],[1,2,3,1]],[[1,1,2,1],[0,3,1,0],[2,3,2,1],[1,2,2,2]],[[1,1,2,1],[0,3,1,0],[2,4,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,1,0],[2,3,2,2],[2,2,2,0]],[[1,1,2,1],[0,3,1,0],[2,3,2,2],[1,3,2,0]],[[1,1,2,1],[0,3,1,0],[2,3,2,2],[1,2,3,0]],[[1,1,2,1],[0,3,1,0],[2,4,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,1,0],[2,3,3,0],[2,2,2,1]],[[1,1,2,1],[0,3,1,0],[2,3,3,0],[1,3,2,1]],[[1,1,2,1],[0,3,1,0],[2,3,3,0],[1,2,3,1]],[[1,1,2,1],[0,3,1,0],[2,4,3,1],[0,2,2,1]],[[1,1,2,1],[0,3,1,0],[2,3,3,1],[0,3,2,1]],[[1,1,2,1],[0,3,1,0],[2,3,3,1],[0,2,3,1]],[[1,1,2,1],[0,3,1,0],[2,3,3,1],[0,2,2,2]],[[1,1,2,1],[0,3,1,0],[2,4,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,1,0],[2,3,3,1],[2,2,1,1]],[[1,1,2,1],[0,3,1,0],[2,3,3,1],[1,3,1,1]],[[1,1,2,1],[0,3,1,0],[2,4,3,2],[0,2,2,0]],[[1,1,2,1],[0,3,1,0],[2,3,3,2],[0,3,2,0]],[[1,1,2,1],[0,3,1,0],[2,3,3,2],[0,2,3,0]],[[1,1,2,1],[0,3,1,0],[2,4,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,1,0],[2,3,3,2],[2,2,0,1]],[[1,1,2,1],[0,3,1,0],[2,3,3,2],[1,3,0,1]],[[1,1,2,1],[0,3,1,0],[2,4,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,1,0],[2,3,3,2],[2,2,1,0]],[[1,1,2,1],[0,3,1,0],[2,3,3,2],[1,3,1,0]],[[1,2,0,1],[0,4,3,1],[2,3,2,1],[0,2,1,1]],[[1,3,0,1],[0,3,3,1],[2,3,2,1],[0,2,1,1]],[[2,2,0,1],[0,3,3,1],[2,3,2,1],[0,2,1,1]],[[1,2,0,1],[0,3,3,1],[2,4,2,1],[0,1,2,1]],[[1,2,0,1],[0,3,3,1],[3,3,2,1],[0,1,2,1]],[[1,2,0,1],[0,3,4,1],[2,3,2,1],[0,1,2,1]],[[1,2,0,1],[0,4,3,1],[2,3,2,1],[0,1,2,1]],[[1,3,0,1],[0,3,3,1],[2,3,2,1],[0,1,2,1]],[[2,2,0,1],[0,3,3,1],[2,3,2,1],[0,1,2,1]],[[1,1,2,1],[0,3,1,1],[2,4,2,0],[1,2,2,1]],[[1,1,2,1],[0,3,1,1],[2,3,2,0],[2,2,2,1]],[[1,1,2,1],[0,3,1,1],[2,3,2,0],[1,3,2,1]],[[1,1,2,1],[0,3,1,1],[2,3,2,0],[1,2,3,1]],[[1,1,2,1],[0,3,1,1],[2,4,2,1],[1,2,2,0]],[[1,1,2,1],[0,3,1,1],[2,3,2,1],[2,2,2,0]],[[1,1,2,1],[0,3,1,1],[2,3,2,1],[1,3,2,0]],[[1,1,2,1],[0,3,1,1],[2,4,3,0],[1,2,1,1]],[[1,1,2,1],[0,3,1,1],[2,3,3,0],[2,2,1,1]],[[1,1,2,1],[0,3,1,1],[2,3,3,0],[1,3,1,1]],[[1,1,2,1],[0,3,1,1],[2,4,3,1],[1,2,1,0]],[[1,1,2,1],[0,3,1,1],[2,3,3,1],[2,2,1,0]],[[1,1,2,1],[0,3,1,1],[2,3,3,1],[1,3,1,0]],[[1,2,0,1],[0,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,0,1],[0,3,3,1],[2,4,1,2],[1,1,2,0]],[[1,2,0,1],[0,3,3,1],[3,3,1,2],[1,1,2,0]],[[1,2,0,1],[0,3,4,1],[2,3,1,2],[1,1,2,0]],[[1,2,0,1],[0,4,3,1],[2,3,1,2],[1,1,2,0]],[[1,3,0,1],[0,3,3,1],[2,3,1,2],[1,1,2,0]],[[2,2,0,1],[0,3,3,1],[2,3,1,2],[1,1,2,0]],[[1,2,0,1],[0,3,3,1],[2,3,1,2],[0,2,3,0]],[[1,2,0,1],[0,3,3,1],[2,3,1,2],[0,3,2,0]],[[1,1,3,1],[0,3,1,2],[1,0,3,2],[1,2,2,1]],[[1,1,2,2],[0,3,1,2],[1,0,3,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,3],[1,0,3,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[1,0,3,3],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[1,0,3,2],[1,2,3,1]],[[1,1,2,1],[0,3,1,2],[1,0,3,2],[1,2,2,2]],[[1,1,3,1],[0,3,1,2],[1,1,2,2],[1,2,2,1]],[[1,1,2,2],[0,3,1,2],[1,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,3],[1,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[1,1,2,3],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[1,1,2,2],[2,2,2,1]],[[1,1,2,1],[0,3,1,2],[1,1,2,2],[1,3,2,1]],[[1,1,2,1],[0,3,1,2],[1,1,2,2],[1,2,3,1]],[[1,1,2,1],[0,3,1,2],[1,1,2,2],[1,2,2,2]],[[1,1,2,1],[0,3,1,2],[1,1,4,1],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[1,1,3,1],[2,2,2,1]],[[1,1,2,1],[0,3,1,2],[1,1,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,1,2],[1,1,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,1,2],[1,1,3,1],[1,2,2,2]],[[1,1,3,1],[0,3,1,2],[1,1,3,2],[1,2,1,1]],[[1,1,2,2],[0,3,1,2],[1,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,1,3],[1,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,1,2],[1,1,4,2],[1,2,1,1]],[[1,1,2,1],[0,3,1,2],[1,1,3,3],[1,2,1,1]],[[1,1,2,1],[0,3,1,2],[1,1,3,2],[1,2,1,2]],[[1,1,3,1],[0,3,1,2],[1,1,3,2],[1,2,2,0]],[[1,1,2,2],[0,3,1,2],[1,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,1,3],[1,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,1,2],[1,1,4,2],[1,2,2,0]],[[1,1,2,1],[0,3,1,2],[1,1,3,3],[1,2,2,0]],[[1,1,2,1],[0,3,1,2],[1,1,3,2],[2,2,2,0]],[[1,1,2,1],[0,3,1,2],[1,1,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,1,2],[1,1,3,2],[1,2,3,0]],[[1,1,3,1],[0,3,1,2],[1,2,2,2],[1,1,2,1]],[[1,1,2,2],[0,3,1,2],[1,2,2,2],[1,1,2,1]],[[1,1,2,1],[0,3,1,3],[1,2,2,2],[1,1,2,1]],[[1,1,2,1],[0,3,1,2],[1,2,2,3],[1,1,2,1]],[[1,1,2,1],[0,3,1,2],[1,2,2,2],[1,1,3,1]],[[1,1,2,1],[0,3,1,2],[1,2,2,2],[1,1,2,2]],[[1,1,2,1],[0,3,1,2],[1,2,4,1],[1,1,2,1]],[[1,1,2,1],[0,3,1,2],[1,2,3,1],[1,1,3,1]],[[1,1,2,1],[0,3,1,2],[1,2,3,1],[1,1,2,2]],[[1,1,3,1],[0,3,1,2],[1,2,3,2],[1,0,2,1]],[[1,1,2,2],[0,3,1,2],[1,2,3,2],[1,0,2,1]],[[1,1,2,1],[0,3,1,3],[1,2,3,2],[1,0,2,1]],[[1,1,2,1],[0,3,1,2],[1,2,4,2],[1,0,2,1]],[[1,1,2,1],[0,3,1,2],[1,2,3,3],[1,0,2,1]],[[1,1,2,1],[0,3,1,2],[1,2,3,2],[1,0,2,2]],[[1,1,3,1],[0,3,1,2],[1,2,3,2],[1,1,1,1]],[[1,1,2,2],[0,3,1,2],[1,2,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,1,3],[1,2,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,1,2],[1,2,4,2],[1,1,1,1]],[[1,1,2,1],[0,3,1,2],[1,2,3,3],[1,1,1,1]],[[1,1,2,1],[0,3,1,2],[1,2,3,2],[1,1,1,2]],[[1,1,3,1],[0,3,1,2],[1,2,3,2],[1,1,2,0]],[[1,1,2,2],[0,3,1,2],[1,2,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,1,3],[1,2,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,1,2],[1,2,4,2],[1,1,2,0]],[[1,1,2,1],[0,3,1,2],[1,2,3,3],[1,1,2,0]],[[1,1,2,1],[0,3,1,2],[1,2,3,2],[1,1,3,0]],[[1,1,3,1],[0,3,1,2],[1,2,3,2],[1,2,0,1]],[[1,1,2,2],[0,3,1,2],[1,2,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,1,3],[1,2,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,1,2],[1,2,4,2],[1,2,0,1]],[[1,1,2,1],[0,3,1,2],[1,2,3,3],[1,2,0,1]],[[1,1,2,1],[0,3,1,2],[1,2,3,2],[1,2,0,2]],[[1,1,3,1],[0,3,1,2],[1,2,3,2],[1,2,1,0]],[[1,1,2,2],[0,3,1,2],[1,2,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,1,3],[1,2,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,1,2],[1,2,4,2],[1,2,1,0]],[[1,1,2,1],[0,3,1,2],[1,2,3,3],[1,2,1,0]],[[1,2,0,1],[0,3,3,1],[2,4,1,2],[0,2,2,0]],[[1,2,0,1],[0,3,3,1],[3,3,1,2],[0,2,2,0]],[[1,2,0,1],[0,3,4,1],[2,3,1,2],[0,2,2,0]],[[1,2,0,1],[0,4,3,1],[2,3,1,2],[0,2,2,0]],[[1,3,0,1],[0,3,3,1],[2,3,1,2],[0,2,2,0]],[[2,2,0,1],[0,3,3,1],[2,3,1,2],[0,2,2,0]],[[1,1,3,1],[0,3,1,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,2],[0,3,1,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,4,1,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,3],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[1,4,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[1,3,0,3],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[1,3,0,2],[2,2,2,1]],[[1,1,2,1],[0,3,1,2],[1,3,0,2],[1,3,2,1]],[[1,1,2,1],[0,3,1,2],[1,3,0,2],[1,2,3,1]],[[1,1,2,1],[0,3,1,2],[1,3,0,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,1],[2,3,1,1],[2,1,2,1]],[[1,2,0,1],[0,3,3,1],[2,4,1,1],[1,1,2,1]],[[1,2,0,1],[0,3,3,1],[3,3,1,1],[1,1,2,1]],[[1,2,0,1],[0,3,4,1],[2,3,1,1],[1,1,2,1]],[[1,2,0,1],[0,4,3,1],[2,3,1,1],[1,1,2,1]],[[1,3,0,1],[0,3,3,1],[2,3,1,1],[1,1,2,1]],[[2,2,0,1],[0,3,3,1],[2,3,1,1],[1,1,2,1]],[[1,2,0,1],[0,3,3,1],[2,3,1,1],[0,2,2,2]],[[1,2,0,1],[0,3,3,1],[2,3,1,1],[0,2,3,1]],[[1,2,0,1],[0,3,3,1],[2,3,1,1],[0,3,2,1]],[[1,2,0,1],[0,3,3,1],[2,4,1,1],[0,2,2,1]],[[1,2,0,1],[0,3,3,1],[3,3,1,1],[0,2,2,1]],[[1,2,0,1],[0,3,4,1],[2,3,1,1],[0,2,2,1]],[[1,2,0,1],[0,4,3,1],[2,3,1,1],[0,2,2,1]],[[1,3,0,1],[0,3,3,1],[2,3,1,1],[0,2,2,1]],[[2,2,0,1],[0,3,3,1],[2,3,1,1],[0,2,2,1]],[[1,2,0,1],[0,3,3,1],[2,3,0,2],[1,3,2,0]],[[1,2,0,1],[0,3,3,1],[2,3,0,2],[2,2,2,0]],[[1,2,0,1],[0,3,3,1],[3,3,0,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,1],[2,3,0,2],[2,1,2,1]],[[1,2,0,1],[0,3,3,1],[2,4,0,2],[1,1,2,1]],[[1,2,0,1],[0,3,3,1],[3,3,0,2],[1,1,2,1]],[[1,2,0,1],[0,3,4,1],[2,3,0,2],[1,1,2,1]],[[1,2,0,1],[0,4,3,1],[2,3,0,2],[1,1,2,1]],[[1,3,0,1],[0,3,3,1],[2,3,0,2],[1,1,2,1]],[[2,2,0,1],[0,3,3,1],[2,3,0,2],[1,1,2,1]],[[1,2,0,1],[0,3,3,1],[2,3,0,2],[0,2,2,2]],[[1,2,0,1],[0,3,3,1],[2,3,0,2],[0,2,3,1]],[[1,2,0,1],[0,3,3,1],[2,3,0,2],[0,3,2,1]],[[1,2,0,1],[0,3,3,1],[2,3,0,3],[0,2,2,1]],[[1,2,0,1],[0,3,3,1],[2,4,0,2],[0,2,2,1]],[[1,2,0,1],[0,3,3,1],[3,3,0,2],[0,2,2,1]],[[1,2,0,1],[0,3,4,1],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[0,4,3,1],[2,3,0,2],[0,2,2,1]],[[1,3,0,1],[0,3,3,1],[2,3,0,2],[0,2,2,1]],[[2,2,0,1],[0,3,3,1],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[0,3,3,1],[2,3,0,1],[1,3,2,1]],[[1,2,0,1],[0,3,3,1],[2,3,0,1],[2,2,2,1]],[[1,2,0,1],[0,3,3,1],[3,3,0,1],[1,2,2,1]],[[1,1,3,1],[0,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,2],[0,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,3],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[3,0,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,0,2,3],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,0,2,2],[2,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,0,2,2],[1,3,2,1]],[[1,1,2,1],[0,3,1,2],[2,0,2,2],[1,2,3,1]],[[1,1,2,1],[0,3,1,2],[2,0,2,2],[1,2,2,2]],[[1,1,2,1],[0,3,1,2],[3,0,3,1],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,0,4,1],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,0,3,1],[2,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,0,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,1,2],[2,0,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,1,2],[2,0,3,1],[1,2,2,2]],[[1,1,3,1],[0,3,1,2],[2,0,3,2],[0,2,2,1]],[[1,1,2,2],[0,3,1,2],[2,0,3,2],[0,2,2,1]],[[1,1,2,1],[0,3,1,3],[2,0,3,2],[0,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,0,3,3],[0,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,0,3,2],[0,2,3,1]],[[1,1,2,1],[0,3,1,2],[2,0,3,2],[0,2,2,2]],[[1,1,3,1],[0,3,1,2],[2,0,3,2],[1,2,1,1]],[[1,1,2,2],[0,3,1,2],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,1,3],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,1,2],[2,0,4,2],[1,2,1,1]],[[1,1,2,1],[0,3,1,2],[2,0,3,3],[1,2,1,1]],[[1,1,2,1],[0,3,1,2],[2,0,3,2],[1,2,1,2]],[[1,1,3,1],[0,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,2],[0,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,1,3],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,1,2],[3,0,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,1,2],[2,0,4,2],[1,2,2,0]],[[1,1,2,1],[0,3,1,2],[2,0,3,3],[1,2,2,0]],[[1,1,2,1],[0,3,1,2],[2,0,3,2],[2,2,2,0]],[[1,1,2,1],[0,3,1,2],[2,0,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,1,2],[2,0,3,2],[1,2,3,0]],[[1,1,3,1],[0,3,1,2],[2,1,2,2],[0,2,2,1]],[[1,1,2,2],[0,3,1,2],[2,1,2,2],[0,2,2,1]],[[1,1,2,1],[0,3,1,3],[2,1,2,2],[0,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,1,2,3],[0,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,1,2,2],[0,3,2,1]],[[1,1,2,1],[0,3,1,2],[2,1,2,2],[0,2,3,1]],[[1,1,2,1],[0,3,1,2],[2,1,2,2],[0,2,2,2]],[[1,1,2,1],[0,3,1,2],[2,1,4,1],[0,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,1,3,1],[0,3,2,1]],[[1,1,2,1],[0,3,1,2],[2,1,3,1],[0,2,3,1]],[[1,1,2,1],[0,3,1,2],[2,1,3,1],[0,2,2,2]],[[1,1,3,1],[0,3,1,2],[2,1,3,2],[0,2,1,1]],[[1,1,2,2],[0,3,1,2],[2,1,3,2],[0,2,1,1]],[[1,1,2,1],[0,3,1,3],[2,1,3,2],[0,2,1,1]],[[1,1,2,1],[0,3,1,2],[2,1,4,2],[0,2,1,1]],[[1,1,2,1],[0,3,1,2],[2,1,3,3],[0,2,1,1]],[[1,1,2,1],[0,3,1,2],[2,1,3,2],[0,2,1,2]],[[1,1,3,1],[0,3,1,2],[2,1,3,2],[0,2,2,0]],[[1,1,2,2],[0,3,1,2],[2,1,3,2],[0,2,2,0]],[[1,1,2,1],[0,3,1,3],[2,1,3,2],[0,2,2,0]],[[1,1,2,1],[0,3,1,2],[2,1,4,2],[0,2,2,0]],[[1,1,2,1],[0,3,1,2],[2,1,3,3],[0,2,2,0]],[[1,1,2,1],[0,3,1,2],[2,1,3,2],[0,3,2,0]],[[1,1,2,1],[0,3,1,2],[2,1,3,2],[0,2,3,0]],[[1,1,3,1],[0,3,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,2],[0,3,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,3],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[3,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,0,3],[1,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,0,2],[2,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,0,2],[1,3,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,0,2],[1,2,3,1]],[[1,1,2,1],[0,3,1,2],[2,2,0,2],[1,2,2,2]],[[1,1,3,1],[0,3,1,2],[2,2,2,2],[0,1,2,1]],[[1,1,2,2],[0,3,1,2],[2,2,2,2],[0,1,2,1]],[[1,1,2,1],[0,3,1,3],[2,2,2,2],[0,1,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,2,3],[0,1,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,2,2],[0,1,3,1]],[[1,1,2,1],[0,3,1,2],[2,2,2,2],[0,1,2,2]],[[1,1,3,1],[0,3,1,2],[2,2,2,2],[1,0,2,1]],[[1,1,2,2],[0,3,1,2],[2,2,2,2],[1,0,2,1]],[[1,1,2,1],[0,3,1,3],[2,2,2,2],[1,0,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,2,3],[1,0,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,2,2],[1,0,3,1]],[[1,1,2,1],[0,3,1,2],[2,2,2,2],[1,0,2,2]],[[1,1,2,1],[0,3,1,2],[2,2,4,1],[0,1,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,1],[0,1,3,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,1],[0,1,2,2]],[[1,1,2,1],[0,3,1,2],[2,2,4,1],[1,0,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,1],[1,0,3,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,1],[1,0,2,2]],[[1,1,3,1],[0,3,1,2],[2,2,3,2],[0,0,2,1]],[[1,1,2,2],[0,3,1,2],[2,2,3,2],[0,0,2,1]],[[1,1,2,1],[0,3,1,3],[2,2,3,2],[0,0,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,4,2],[0,0,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,3],[0,0,2,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,2],[0,0,2,2]],[[1,1,3,1],[0,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,1,2,2],[0,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,1,3],[2,2,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,1,2],[2,2,4,2],[0,1,1,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,3],[0,1,1,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,2],[0,1,1,2]],[[1,1,3,1],[0,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,1,2,2],[0,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,1,3],[2,2,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,1,2],[2,2,4,2],[0,1,2,0]],[[1,1,2,1],[0,3,1,2],[2,2,3,3],[0,1,2,0]],[[1,1,2,1],[0,3,1,2],[2,2,3,2],[0,1,3,0]],[[1,1,3,1],[0,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,1,2,2],[0,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,1,2,1],[0,3,1,3],[2,2,3,2],[0,2,0,1]],[[1,1,2,1],[0,3,1,2],[2,2,4,2],[0,2,0,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,3],[0,2,0,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,2],[0,2,0,2]],[[1,1,3,1],[0,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,1,2,2],[0,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,1,2,1],[0,3,1,3],[2,2,3,2],[0,2,1,0]],[[1,1,2,1],[0,3,1,2],[2,2,4,2],[0,2,1,0]],[[1,1,2,1],[0,3,1,2],[2,2,3,3],[0,2,1,0]],[[1,1,3,1],[0,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,1,2,2],[0,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,1,3],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,1,2],[2,2,4,2],[1,0,1,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,3],[1,0,1,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,2],[1,0,1,2]],[[1,1,3,1],[0,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,1,2,2],[0,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,1,3],[2,2,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,1,2],[2,2,4,2],[1,0,2,0]],[[1,1,2,1],[0,3,1,2],[2,2,3,3],[1,0,2,0]],[[1,1,2,1],[0,3,1,2],[2,2,3,2],[1,0,3,0]],[[1,1,3,1],[0,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,1,2,2],[0,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,1,3],[2,2,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,1,2],[2,2,4,2],[1,1,0,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,3],[1,1,0,1]],[[1,1,2,1],[0,3,1,2],[2,2,3,2],[1,1,0,2]],[[1,1,3,1],[0,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,1,2,2],[0,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,1,2,1],[0,3,1,3],[2,2,3,2],[1,1,1,0]],[[1,1,2,1],[0,3,1,2],[2,2,4,2],[1,1,1,0]],[[1,1,2,1],[0,3,1,2],[2,2,3,3],[1,1,1,0]],[[1,2,0,1],[0,3,3,1],[2,2,3,3],[1,1,1,0]],[[1,2,0,1],[0,3,3,1],[2,2,4,2],[1,1,1,0]],[[1,2,0,1],[0,3,4,1],[2,2,3,2],[1,1,1,0]],[[1,2,0,1],[0,4,3,1],[2,2,3,2],[1,1,1,0]],[[1,3,0,1],[0,3,3,1],[2,2,3,2],[1,1,1,0]],[[2,2,0,1],[0,3,3,1],[2,2,3,2],[1,1,1,0]],[[1,2,0,1],[0,3,3,1],[2,2,3,2],[1,1,0,2]],[[1,2,0,1],[0,3,3,1],[2,2,3,3],[1,1,0,1]],[[1,2,0,1],[0,3,3,1],[2,2,4,2],[1,1,0,1]],[[1,2,0,1],[0,3,4,1],[2,2,3,2],[1,1,0,1]],[[1,2,0,1],[0,4,3,1],[2,2,3,2],[1,1,0,1]],[[1,3,0,1],[0,3,3,1],[2,2,3,2],[1,1,0,1]],[[2,2,0,1],[0,3,3,1],[2,2,3,2],[1,1,0,1]],[[1,2,0,1],[0,3,3,1],[2,2,3,2],[1,0,3,0]],[[1,2,0,1],[0,3,3,1],[2,2,3,3],[1,0,2,0]],[[1,2,0,1],[0,3,3,1],[2,2,4,2],[1,0,2,0]],[[1,2,0,1],[0,3,4,1],[2,2,3,2],[1,0,2,0]],[[1,2,0,1],[0,4,3,1],[2,2,3,2],[1,0,2,0]],[[1,3,0,1],[0,3,3,1],[2,2,3,2],[1,0,2,0]],[[2,2,0,1],[0,3,3,1],[2,2,3,2],[1,0,2,0]],[[1,2,0,1],[0,3,3,1],[2,2,3,2],[1,0,1,2]],[[1,2,0,1],[0,3,3,1],[2,2,3,3],[1,0,1,1]],[[1,2,0,1],[0,3,3,1],[2,2,4,2],[1,0,1,1]],[[1,2,0,1],[0,3,4,1],[2,2,3,2],[1,0,1,1]],[[1,2,0,1],[0,4,3,1],[2,2,3,2],[1,0,1,1]],[[1,3,0,1],[0,3,3,1],[2,2,3,2],[1,0,1,1]],[[2,2,0,1],[0,3,3,1],[2,2,3,2],[1,0,1,1]],[[1,1,3,1],[0,3,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,2],[0,3,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,4,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,1,3],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,1,2],[3,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,4,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,3,0,3],[0,2,2,1]],[[1,1,2,1],[0,3,1,2],[2,3,0,2],[0,3,2,1]],[[1,1,2,1],[0,3,1,2],[2,3,0,2],[0,2,3,1]],[[1,1,2,1],[0,3,1,2],[2,3,0,2],[0,2,2,2]],[[1,1,2,1],[0,4,1,2],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,1,2],[3,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,1,2],[2,4,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,1,2],[2,3,0,2],[2,1,2,1]],[[1,2,0,1],[0,3,3,1],[2,2,3,3],[0,2,1,0]],[[1,2,0,1],[0,3,3,1],[2,2,4,2],[0,2,1,0]],[[1,2,0,1],[0,3,4,1],[2,2,3,2],[0,2,1,0]],[[1,2,0,1],[0,4,3,1],[2,2,3,2],[0,2,1,0]],[[1,3,0,1],[0,3,3,1],[2,2,3,2],[0,2,1,0]],[[2,2,0,1],[0,3,3,1],[2,2,3,2],[0,2,1,0]],[[1,2,0,1],[0,3,3,1],[2,2,3,2],[0,2,0,2]],[[1,2,0,1],[0,3,3,1],[2,2,3,3],[0,2,0,1]],[[1,2,0,1],[0,3,3,1],[2,2,4,2],[0,2,0,1]],[[1,2,0,1],[0,3,4,1],[2,2,3,2],[0,2,0,1]],[[1,2,0,1],[0,4,3,1],[2,2,3,2],[0,2,0,1]],[[1,3,0,1],[0,3,3,1],[2,2,3,2],[0,2,0,1]],[[2,2,0,1],[0,3,3,1],[2,2,3,2],[0,2,0,1]],[[1,2,0,1],[0,3,3,1],[2,2,3,2],[0,1,3,0]],[[1,2,0,1],[0,3,3,1],[2,2,3,3],[0,1,2,0]],[[1,2,0,1],[0,3,3,1],[2,2,4,2],[0,1,2,0]],[[1,2,0,1],[0,3,4,1],[2,2,3,2],[0,1,2,0]],[[1,2,0,1],[0,4,3,1],[2,2,3,2],[0,1,2,0]],[[1,3,0,1],[0,3,3,1],[2,2,3,2],[0,1,2,0]],[[2,2,0,1],[0,3,3,1],[2,2,3,2],[0,1,2,0]],[[1,2,0,1],[0,3,3,1],[2,2,3,2],[0,1,1,2]],[[1,2,0,1],[0,3,3,1],[2,2,3,3],[0,1,1,1]],[[1,2,0,1],[0,3,3,1],[2,2,4,2],[0,1,1,1]],[[1,2,0,1],[0,3,4,1],[2,2,3,2],[0,1,1,1]],[[1,2,0,1],[0,4,3,1],[2,2,3,2],[0,1,1,1]],[[1,3,0,1],[0,3,3,1],[2,2,3,2],[0,1,1,1]],[[2,2,0,1],[0,3,3,1],[2,2,3,2],[0,1,1,1]],[[1,2,0,1],[0,3,3,1],[2,2,3,2],[0,0,2,2]],[[1,2,0,1],[0,3,3,1],[2,2,3,3],[0,0,2,1]],[[1,2,0,1],[0,3,3,1],[2,2,4,2],[0,0,2,1]],[[1,2,0,1],[0,3,4,1],[2,2,3,2],[0,0,2,1]],[[1,2,0,1],[0,4,3,1],[2,2,3,2],[0,0,2,1]],[[1,3,0,1],[0,3,3,1],[2,2,3,2],[0,0,2,1]],[[2,2,0,1],[0,3,3,1],[2,2,3,2],[0,0,2,1]],[[1,2,0,1],[0,3,3,1],[2,2,4,1],[1,1,1,1]],[[1,2,0,1],[0,3,4,1],[2,2,3,1],[1,1,1,1]],[[1,2,0,1],[0,4,3,1],[2,2,3,1],[1,1,1,1]],[[1,3,0,1],[0,3,3,1],[2,2,3,1],[1,1,1,1]],[[2,2,0,1],[0,3,3,1],[2,2,3,1],[1,1,1,1]],[[1,2,0,1],[0,3,3,1],[2,2,3,1],[1,0,2,2]],[[1,2,0,1],[0,3,3,1],[2,2,3,1],[1,0,3,1]],[[1,2,0,1],[0,3,3,1],[2,2,4,1],[1,0,2,1]],[[1,2,0,1],[0,3,4,1],[2,2,3,1],[1,0,2,1]],[[1,2,0,1],[0,4,3,1],[2,2,3,1],[1,0,2,1]],[[1,3,0,1],[0,3,3,1],[2,2,3,1],[1,0,2,1]],[[2,2,0,1],[0,3,3,1],[2,2,3,1],[1,0,2,1]],[[1,1,3,1],[0,3,1,2],[2,3,3,2],[0,0,1,1]],[[1,1,2,2],[0,3,1,2],[2,3,3,2],[0,0,1,1]],[[1,1,2,1],[0,3,1,3],[2,3,3,2],[0,0,1,1]],[[1,1,2,1],[0,3,1,2],[2,3,4,2],[0,0,1,1]],[[1,1,2,1],[0,3,1,2],[2,3,3,3],[0,0,1,1]],[[1,1,2,1],[0,3,1,2],[2,3,3,2],[0,0,1,2]],[[1,1,3,1],[0,3,1,2],[2,3,3,2],[0,0,2,0]],[[1,1,2,2],[0,3,1,2],[2,3,3,2],[0,0,2,0]],[[1,1,2,1],[0,3,1,3],[2,3,3,2],[0,0,2,0]],[[1,1,2,1],[0,3,1,2],[2,3,4,2],[0,0,2,0]],[[1,1,2,1],[0,3,1,2],[2,3,3,3],[0,0,2,0]],[[1,2,0,1],[0,3,3,1],[2,2,4,1],[0,2,1,1]],[[1,2,0,1],[0,3,4,1],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[0,4,3,1],[2,2,3,1],[0,2,1,1]],[[1,3,0,1],[0,3,3,1],[2,2,3,1],[0,2,1,1]],[[2,2,0,1],[0,3,3,1],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[0,3,3,1],[2,2,3,1],[0,1,2,2]],[[1,2,0,1],[0,3,3,1],[2,2,3,1],[0,1,3,1]],[[1,2,0,1],[0,3,3,1],[2,2,4,1],[0,1,2,1]],[[1,2,0,1],[0,3,4,1],[2,2,3,1],[0,1,2,1]],[[1,2,0,1],[0,4,3,1],[2,2,3,1],[0,1,2,1]],[[1,3,0,1],[0,3,3,1],[2,2,3,1],[0,1,2,1]],[[2,2,0,1],[0,3,3,1],[2,2,3,1],[0,1,2,1]],[[1,2,0,1],[0,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,0,1],[0,3,3,1],[2,2,2,2],[2,2,1,0]],[[1,2,0,1],[0,3,3,1],[3,2,2,2],[1,2,1,0]],[[1,2,0,1],[0,3,3,1],[2,2,2,2],[1,3,0,1]],[[1,2,0,1],[0,3,3,1],[2,2,2,2],[2,2,0,1]],[[1,2,0,1],[0,3,3,1],[3,2,2,2],[1,2,0,1]],[[1,2,0,1],[0,3,3,1],[2,2,2,2],[1,0,2,2]],[[1,2,0,1],[0,3,3,1],[2,2,2,2],[1,0,3,1]],[[1,2,0,1],[0,3,3,1],[2,2,2,3],[1,0,2,1]],[[1,2,0,1],[0,3,3,1],[2,2,2,2],[0,1,2,2]],[[1,2,0,1],[0,3,3,1],[2,2,2,2],[0,1,3,1]],[[1,2,0,1],[0,3,3,1],[2,2,2,3],[0,1,2,1]],[[1,2,0,1],[0,3,3,1],[2,2,2,1],[1,3,1,1]],[[1,2,0,1],[0,3,3,1],[2,2,2,1],[2,2,1,1]],[[1,2,0,1],[0,3,3,1],[3,2,2,1],[1,2,1,1]],[[1,2,0,1],[0,3,3,1],[2,2,1,2],[1,2,3,0]],[[1,2,0,1],[0,3,3,1],[2,2,1,2],[1,3,2,0]],[[1,2,0,1],[0,3,3,1],[2,2,1,2],[2,2,2,0]],[[1,2,0,1],[0,3,3,1],[3,2,1,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,1],[2,2,1,1],[1,2,2,2]],[[1,2,0,1],[0,3,3,1],[2,2,1,1],[1,2,3,1]],[[1,2,0,1],[0,3,3,1],[2,2,1,1],[1,3,2,1]],[[1,2,0,1],[0,3,3,1],[2,2,1,1],[2,2,2,1]],[[1,2,0,1],[0,3,3,1],[3,2,1,1],[1,2,2,1]],[[1,2,0,1],[0,3,3,1],[2,2,0,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,1],[2,2,0,2],[1,2,3,1]],[[1,2,0,1],[0,3,3,1],[2,2,0,2],[1,3,2,1]],[[1,2,0,1],[0,3,3,1],[2,2,0,2],[2,2,2,1]],[[1,2,0,1],[0,3,3,1],[2,2,0,3],[1,2,2,1]],[[1,2,0,1],[0,3,3,1],[3,2,0,2],[1,2,2,1]],[[1,2,0,1],[0,3,3,1],[2,1,3,2],[0,2,3,0]],[[1,2,0,1],[0,3,3,1],[2,1,3,2],[0,3,2,0]],[[1,2,0,1],[0,3,3,1],[2,1,3,3],[0,2,2,0]],[[1,2,0,1],[0,3,3,1],[2,1,4,2],[0,2,2,0]],[[1,2,0,1],[0,3,4,1],[2,1,3,2],[0,2,2,0]],[[1,2,0,1],[0,4,3,1],[2,1,3,2],[0,2,2,0]],[[1,3,0,1],[0,3,3,1],[2,1,3,2],[0,2,2,0]],[[2,2,0,1],[0,3,3,1],[2,1,3,2],[0,2,2,0]],[[1,2,0,1],[0,3,3,1],[2,1,3,2],[0,2,1,2]],[[1,2,0,1],[0,3,3,1],[2,1,3,3],[0,2,1,1]],[[1,2,0,1],[0,3,3,1],[2,1,4,2],[0,2,1,1]],[[1,2,0,1],[0,3,4,1],[2,1,3,2],[0,2,1,1]],[[1,2,0,1],[0,4,3,1],[2,1,3,2],[0,2,1,1]],[[1,3,0,1],[0,3,3,1],[2,1,3,2],[0,2,1,1]],[[2,2,0,1],[0,3,3,1],[2,1,3,2],[0,2,1,1]],[[1,2,0,1],[0,3,3,1],[2,1,3,1],[0,2,2,2]],[[1,2,0,1],[0,3,3,1],[2,1,3,1],[0,2,3,1]],[[1,2,0,1],[0,3,3,1],[2,1,3,1],[0,3,2,1]],[[1,2,0,1],[0,3,3,1],[2,1,4,1],[0,2,2,1]],[[1,2,0,1],[0,3,4,1],[2,1,3,1],[0,2,2,1]],[[1,2,0,1],[0,4,3,1],[2,1,3,1],[0,2,2,1]],[[1,3,0,1],[0,3,3,1],[2,1,3,1],[0,2,2,1]],[[2,2,0,1],[0,3,3,1],[2,1,3,1],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[0,3,2,3],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[0,3,2,2],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[0,3,2,2],[1,2,3,1]],[[1,1,2,1],[0,3,2,0],[0,3,2,2],[1,2,2,2]],[[1,1,2,1],[0,3,2,0],[0,3,4,1],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[0,3,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[0,3,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,2,0],[0,3,3,1],[1,2,2,2]],[[1,1,2,1],[0,3,2,0],[0,3,4,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,0],[0,3,3,3],[1,2,1,1]],[[1,1,2,1],[0,3,2,0],[0,3,3,2],[1,2,1,2]],[[1,1,2,1],[0,3,2,0],[0,3,4,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,0],[0,3,3,3],[1,2,2,0]],[[1,1,2,1],[0,3,2,0],[0,3,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,2,0],[0,3,3,2],[1,2,3,0]],[[1,1,2,1],[0,3,2,0],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[0,3,2,0],[1,2,2,2],[1,2,2,2]],[[1,1,2,1],[0,3,2,0],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,2,0],[1,2,3,1],[1,2,2,2]],[[1,1,2,1],[0,3,2,0],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,0],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[0,3,2,0],[1,2,3,2],[1,2,1,2]],[[1,1,2,1],[0,3,2,0],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,0],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[0,3,2,0],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[0,3,2,0],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,2,0],[1,2,3,2],[1,2,3,0]],[[1,1,2,1],[0,4,2,0],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,1,3],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[0,3,2,0],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[0,4,2,0],[1,3,2,1],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[0,3,2,0],[1,3,2,1],[1,2,2,2]],[[1,1,2,1],[0,3,2,0],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[0,3,2,0],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[0,4,2,0],[1,3,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,0],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,0],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[0,3,2,0],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[0,3,2,0],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[0,4,2,0],[1,3,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,4,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,0],[2,2,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,0],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,0],[1,2,3,1]],[[1,1,2,1],[0,4,2,0],[1,3,3,1],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[1,4,3,1],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,1],[1,1,2,2]],[[1,1,2,1],[0,4,2,0],[1,3,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,2,0],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,2,0],[1,3,4,1],[1,2,1,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,1],[1,3,1,1]],[[1,1,2,1],[0,3,2,0],[1,3,4,2],[1,0,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,3],[1,0,2,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,2],[1,0,2,2]],[[1,1,2,1],[0,4,2,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,2,0],[1,4,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,2,0],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,2],[1,1,1,2]],[[1,1,2,1],[0,4,2,0],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,0],[1,4,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,0],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,0],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[0,3,2,0],[1,3,3,2],[1,1,3,0]],[[1,1,2,1],[0,4,2,0],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,2,0],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,2,0],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[0,3,2,0],[1,3,3,2],[1,2,0,2]],[[1,1,2,1],[0,4,2,0],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,2,0],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,2,0],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[0,3,2,0],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[0,3,2,0],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[0,3,2,0],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[0,3,3,1],[2,1,2,2],[0,2,2,2]],[[1,2,0,1],[0,3,3,1],[2,1,2,2],[0,2,3,1]],[[1,2,0,1],[0,3,3,1],[2,1,2,2],[0,3,2,1]],[[1,2,0,1],[0,3,3,1],[2,1,2,3],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[3,1,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[0,3,2,0],[2,1,2,2],[1,2,2,2]],[[1,1,2,1],[0,3,2,0],[3,1,3,1],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,2,0],[2,1,3,1],[1,2,2,2]],[[1,1,2,1],[0,3,2,0],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,0],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[0,3,2,0],[2,1,3,2],[1,2,1,2]],[[1,1,2,1],[0,3,2,0],[3,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,0],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,0],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[0,3,2,0],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[0,3,2,0],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,2,0],[2,1,3,2],[1,2,3,0]],[[1,1,2,1],[0,3,2,0],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,1,3],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[0,3,2,0],[2,2,1,2],[1,2,2,2]],[[1,1,2,1],[0,3,2,0],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[0,3,2,0],[2,2,2,1],[1,2,2,2]],[[1,1,2,1],[0,3,2,0],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[0,3,2,0],[2,2,2,2],[0,2,2,2]],[[1,1,2,1],[0,3,2,0],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,0],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[0,3,2,0],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[0,3,2,0],[2,2,2,2],[1,2,3,0]],[[1,1,2,1],[0,3,2,0],[3,2,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,0],[2,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,0],[1,3,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,0],[1,2,3,1]],[[1,1,2,1],[0,3,2,0],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,1],[0,2,2,2]],[[1,1,2,1],[0,3,2,0],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,1],[1,3,1,1]],[[1,1,2,1],[0,3,2,0],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,2],[0,2,1,2]],[[1,1,2,1],[0,3,2,0],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[0,3,2,0],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[0,3,2,0],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[0,3,2,0],[2,2,3,2],[0,2,3,0]],[[1,1,2,1],[0,3,2,0],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[0,3,2,0],[2,2,3,2],[1,3,0,1]],[[1,1,2,1],[0,3,2,0],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,2,0],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[0,3,2,0],[2,2,3,2],[1,3,1,0]],[[1,1,2,1],[0,4,2,0],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,1,3],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[0,3,2,0],[2,3,1,2],[0,2,2,2]],[[1,1,2,1],[0,4,2,0],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,1,2],[2,1,2,1]],[[1,1,2,1],[0,4,2,0],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[0,3,2,0],[2,3,2,1],[0,2,2,2]],[[1,1,2,1],[0,4,2,0],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,2,1],[2,1,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[0,3,2,0],[2,3,2,2],[0,1,2,2]],[[1,1,2,1],[0,4,2,0],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[0,3,2,0],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[0,3,2,0],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[0,3,2,0],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[0,3,2,0],[2,3,2,2],[0,2,3,0]],[[1,1,2,1],[0,3,2,0],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[0,3,2,0],[2,3,2,2],[1,0,2,2]],[[1,1,2,1],[0,4,2,0],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,0],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,0],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[0,3,3,1],[2,0,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,3,1],[2,0,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,3,1],[2,0,3,2],[2,2,2,0]],[[1,2,0,1],[0,3,3,1],[2,0,3,3],[1,2,2,0]],[[1,2,0,1],[0,3,3,1],[2,0,4,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,1],[3,0,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,4,1],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[0,4,3,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[0,4,2,0],[2,3,3,0],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[3,3,3,0],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,4,3,0],[0,2,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,0],[0,3,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,0],[0,2,3,1]],[[1,1,2,1],[0,4,2,0],[2,3,3,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[3,3,3,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[2,4,3,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,0],[2,1,2,1]],[[1,1,2,1],[0,4,2,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[0,3,2,0],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[0,3,2,0],[2,4,3,1],[0,1,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,1],[0,1,2,2]],[[1,1,2,1],[0,4,2,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[0,3,2,0],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[0,3,2,0],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,4,1],[0,2,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,1],[0,3,1,1]],[[1,1,2,1],[0,4,2,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[0,3,2,0],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[0,3,2,0],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,1],[2,0,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,1],[1,0,2,2]],[[1,1,2,1],[0,4,2,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,2,0],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,2,0],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,4,1],[1,1,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,1],[2,1,1,1]],[[1,1,2,1],[0,4,2,0],[2,3,3,1],[1,2,0,1]],[[1,1,2,1],[0,3,2,0],[3,3,3,1],[1,2,0,1]],[[1,1,2,1],[0,3,2,0],[2,4,3,1],[1,2,0,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,1],[2,2,0,1]],[[1,3,0,1],[0,3,3,1],[2,0,3,2],[1,2,2,0]],[[2,2,0,1],[0,3,3,1],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,1],[2,0,3,2],[1,2,1,2]],[[1,2,0,1],[0,3,3,1],[2,0,3,3],[1,2,1,1]],[[1,2,0,1],[0,3,3,1],[2,0,4,2],[1,2,1,1]],[[1,2,0,1],[0,3,4,1],[2,0,3,2],[1,2,1,1]],[[1,2,0,1],[0,4,3,1],[2,0,3,2],[1,2,1,1]],[[1,3,0,1],[0,3,3,1],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[0,0,2,2]],[[1,1,2,1],[0,4,2,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,2,0],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,2,0],[2,4,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[0,1,1,2]],[[1,1,2,1],[0,4,2,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,2,0],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,2,0],[2,4,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,2,0],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[0,3,2,0],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[0,1,3,0]],[[1,1,2,1],[0,4,2,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,3,2,0],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[0,3,2,0],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[0,3,2,0],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[0,3,0,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[0,2,0,2]],[[1,1,2,1],[0,4,2,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,3,2,0],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[0,3,2,0],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[0,3,2,0],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[0,3,2,0],[2,3,3,3],[0,2,1,0]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[0,3,1,0]],[[2,2,0,1],[0,3,3,1],[2,0,3,2],[1,2,1,1]],[[1,2,0,1],[0,3,3,1],[2,0,3,2],[0,2,2,2]],[[1,2,0,1],[0,3,3,1],[2,0,3,2],[0,2,3,1]],[[1,2,0,1],[0,3,3,1],[2,0,3,3],[0,2,2,1]],[[1,2,0,1],[0,3,3,1],[2,0,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,3,1],[2,0,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,3,1],[2,0,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,3,1],[2,0,3,1],[2,2,2,1]],[[1,1,2,1],[0,4,2,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,2,0],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,2,0],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[2,0,1,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[1,0,1,2]],[[1,1,2,1],[0,4,2,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,2,0],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,2,0],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,2,0],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[0,3,2,0],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[1,0,3,0]],[[1,1,2,1],[0,4,2,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,2,0],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,2,0],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,2,0],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[1,1,0,2]],[[1,1,2,1],[0,4,2,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,3,2,0],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[0,3,2,0],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[0,3,2,0],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[0,3,2,0],[2,3,3,3],[1,1,1,0]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[0,3,3,1],[2,0,4,1],[1,2,2,1]],[[1,2,0,1],[0,3,3,1],[3,0,3,1],[1,2,2,1]],[[1,2,0,1],[0,3,4,1],[2,0,3,1],[1,2,2,1]],[[1,2,0,1],[0,4,3,1],[2,0,3,1],[1,2,2,1]],[[1,3,0,1],[0,3,3,1],[2,0,3,1],[1,2,2,1]],[[2,2,0,1],[0,3,3,1],[2,0,3,1],[1,2,2,1]],[[1,2,0,1],[0,3,3,1],[2,0,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,1],[2,0,2,2],[1,2,3,1]],[[1,1,2,1],[0,4,2,0],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,3,2,0],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,3,2,0],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[0,3,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[0,3,3,1],[2,0,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,3,1],[2,0,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,3,1],[2,0,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,3,1],[3,0,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,3,1],[1,4,3,2],[1,2,0,0]],[[1,2,0,1],[0,3,4,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,3,2,1],[0,3,4,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,1],[0,3,3,0],[1,3,2,1]],[[1,1,2,1],[0,3,2,1],[0,3,3,0],[1,2,3,1]],[[1,1,2,1],[0,3,2,1],[0,3,3,0],[1,2,2,2]],[[1,1,2,1],[0,3,2,1],[0,3,4,1],[1,2,2,0]],[[1,1,2,1],[0,3,2,1],[0,3,3,1],[1,3,2,0]],[[1,1,2,1],[0,3,2,1],[0,3,3,1],[1,2,3,0]],[[1,2,0,1],[0,4,3,1],[1,3,3,2],[1,2,0,0]],[[1,3,0,1],[0,3,3,1],[1,3,3,2],[1,2,0,0]],[[2,2,0,1],[0,3,3,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,3,2,1],[1,2,4,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,1],[1,2,3,0],[2,2,2,1]],[[1,1,2,1],[0,3,2,1],[1,2,3,0],[1,3,2,1]],[[1,1,2,1],[0,3,2,1],[1,2,3,0],[1,2,3,1]],[[1,1,2,1],[0,3,2,1],[1,2,3,0],[1,2,2,2]],[[1,1,2,1],[0,3,2,1],[1,2,4,1],[1,2,2,0]],[[1,1,2,1],[0,3,2,1],[1,2,3,1],[2,2,2,0]],[[1,1,2,1],[0,3,2,1],[1,2,3,1],[1,3,2,0]],[[1,1,2,1],[0,3,2,1],[1,2,3,1],[1,2,3,0]],[[1,1,2,1],[0,4,2,1],[1,3,2,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,1],[1,4,2,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,1],[1,3,2,0],[2,2,2,1]],[[1,1,2,1],[0,3,2,1],[1,3,2,0],[1,3,2,1]],[[1,1,2,1],[0,3,2,1],[1,3,2,0],[1,2,3,1]],[[1,1,2,1],[0,3,2,1],[1,3,2,0],[1,2,2,2]],[[1,1,2,1],[0,4,2,1],[1,3,2,1],[1,2,2,0]],[[1,1,2,1],[0,3,2,1],[1,4,2,1],[1,2,2,0]],[[1,1,2,1],[0,3,2,1],[1,3,2,1],[2,2,2,0]],[[1,1,2,1],[0,3,2,1],[1,3,2,1],[1,3,2,0]],[[1,1,2,1],[0,3,2,1],[1,3,2,1],[1,2,3,0]],[[1,1,2,1],[0,4,2,1],[1,3,3,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,1],[1,4,3,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,1],[1,3,4,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,1],[1,3,3,0],[1,1,3,1]],[[1,1,2,1],[0,3,2,1],[1,3,3,0],[1,1,2,2]],[[1,1,2,1],[0,4,2,1],[1,3,3,0],[1,2,1,1]],[[1,1,2,1],[0,3,2,1],[1,4,3,0],[1,2,1,1]],[[1,1,2,1],[0,3,2,1],[1,3,4,0],[1,2,1,1]],[[1,1,2,1],[0,3,2,1],[1,3,3,0],[2,2,1,1]],[[1,1,2,1],[0,3,2,1],[1,3,3,0],[1,3,1,1]],[[1,1,2,1],[0,4,2,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,2,1],[1,4,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,2,1],[1,3,4,1],[1,1,1,1]],[[1,1,2,1],[0,4,2,1],[1,3,3,1],[1,1,2,0]],[[1,1,2,1],[0,3,2,1],[1,4,3,1],[1,1,2,0]],[[1,1,2,1],[0,3,2,1],[1,3,4,1],[1,1,2,0]],[[1,1,2,1],[0,3,2,1],[1,3,3,1],[1,1,3,0]],[[1,1,2,1],[0,4,2,1],[1,3,3,1],[1,2,0,1]],[[1,1,2,1],[0,3,2,1],[1,4,3,1],[1,2,0,1]],[[1,1,2,1],[0,3,2,1],[1,3,4,1],[1,2,0,1]],[[1,1,2,1],[0,3,2,1],[1,3,3,1],[2,2,0,1]],[[1,1,2,1],[0,3,2,1],[1,3,3,1],[1,3,0,1]],[[1,1,2,1],[0,4,2,1],[1,3,3,1],[1,2,1,0]],[[1,1,2,1],[0,3,2,1],[1,4,3,1],[1,2,1,0]],[[1,1,2,1],[0,3,2,1],[1,3,4,1],[1,2,1,0]],[[1,1,2,1],[0,3,2,1],[1,3,3,1],[2,2,1,0]],[[1,1,2,1],[0,3,2,1],[1,3,3,1],[1,3,1,0]],[[1,1,2,1],[0,3,2,1],[3,1,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,1],[2,1,4,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,1],[2,1,3,0],[2,2,2,1]],[[1,1,2,1],[0,3,2,1],[2,1,3,0],[1,3,2,1]],[[1,1,2,1],[0,3,2,1],[2,1,3,0],[1,2,3,1]],[[1,1,2,1],[0,3,2,1],[2,1,3,0],[1,2,2,2]],[[1,1,2,1],[0,3,2,1],[3,1,3,1],[1,2,2,0]],[[1,1,2,1],[0,3,2,1],[2,1,4,1],[1,2,2,0]],[[1,1,2,1],[0,3,2,1],[2,1,3,1],[2,2,2,0]],[[1,1,2,1],[0,3,2,1],[2,1,3,1],[1,3,2,0]],[[1,1,2,1],[0,3,2,1],[2,1,3,1],[1,2,3,0]],[[1,2,0,1],[0,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,1,2,1],[0,3,2,1],[3,2,2,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,1],[2,2,2,0],[2,2,2,1]],[[1,1,2,1],[0,3,2,1],[2,2,2,0],[1,3,2,1]],[[1,1,2,1],[0,3,2,1],[2,2,2,0],[1,2,3,1]],[[1,1,2,1],[0,3,2,1],[2,2,2,0],[1,2,2,2]],[[1,1,2,1],[0,3,2,1],[3,2,2,1],[1,2,2,0]],[[1,1,2,1],[0,3,2,1],[2,2,2,1],[2,2,2,0]],[[1,1,2,1],[0,3,2,1],[2,2,2,1],[1,3,2,0]],[[1,1,2,1],[0,3,2,1],[2,2,2,1],[1,2,3,0]],[[1,2,0,1],[0,3,3,1],[1,3,2,2],[2,2,1,0]],[[1,2,0,1],[0,3,3,1],[1,4,2,2],[1,2,1,0]],[[1,2,0,1],[0,3,4,1],[1,3,2,2],[1,2,1,0]],[[1,2,0,1],[0,4,3,1],[1,3,2,2],[1,2,1,0]],[[1,3,0,1],[0,3,3,1],[1,3,2,2],[1,2,1,0]],[[2,2,0,1],[0,3,3,1],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[0,3,2,1],[2,2,4,0],[0,2,2,1]],[[1,1,2,1],[0,3,2,1],[2,2,3,0],[0,3,2,1]],[[1,1,2,1],[0,3,2,1],[2,2,3,0],[0,2,3,1]],[[1,1,2,1],[0,3,2,1],[2,2,3,0],[0,2,2,2]],[[1,1,2,1],[0,3,2,1],[3,2,3,0],[1,2,1,1]],[[1,1,2,1],[0,3,2,1],[2,2,3,0],[2,2,1,1]],[[1,1,2,1],[0,3,2,1],[2,2,3,0],[1,3,1,1]],[[1,1,2,1],[0,3,2,1],[2,2,4,1],[0,2,2,0]],[[1,1,2,1],[0,3,2,1],[2,2,3,1],[0,3,2,0]],[[1,1,2,1],[0,3,2,1],[2,2,3,1],[0,2,3,0]],[[1,1,2,1],[0,3,2,1],[3,2,3,1],[1,2,0,1]],[[1,1,2,1],[0,3,2,1],[2,2,3,1],[2,2,0,1]],[[1,1,2,1],[0,3,2,1],[2,2,3,1],[1,3,0,1]],[[1,1,2,1],[0,3,2,1],[3,2,3,1],[1,2,1,0]],[[1,1,2,1],[0,3,2,1],[2,2,3,1],[2,2,1,0]],[[1,1,2,1],[0,3,2,1],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[0,3,3,1],[1,3,2,2],[1,3,0,1]],[[1,2,0,1],[0,3,3,1],[1,3,2,2],[2,2,0,1]],[[1,2,0,1],[0,3,3,1],[1,4,2,2],[1,2,0,1]],[[1,2,0,1],[0,3,4,1],[1,3,2,2],[1,2,0,1]],[[1,2,0,1],[0,4,3,1],[1,3,2,2],[1,2,0,1]],[[1,3,0,1],[0,3,3,1],[1,3,2,2],[1,2,0,1]],[[2,2,0,1],[0,3,3,1],[1,3,2,2],[1,2,0,1]],[[1,2,0,1],[0,3,3,1],[1,4,2,2],[1,1,2,0]],[[1,2,0,1],[0,3,4,1],[1,3,2,2],[1,1,2,0]],[[1,2,0,1],[0,4,3,1],[1,3,2,2],[1,1,2,0]],[[1,3,0,1],[0,3,3,1],[1,3,2,2],[1,1,2,0]],[[2,2,0,1],[0,3,3,1],[1,3,2,2],[1,1,2,0]],[[1,2,0,1],[0,3,3,1],[1,4,2,2],[1,1,1,1]],[[1,2,0,1],[0,3,4,1],[1,3,2,2],[1,1,1,1]],[[1,2,0,1],[0,4,3,1],[1,3,2,2],[1,1,1,1]],[[1,3,0,1],[0,3,3,1],[1,3,2,2],[1,1,1,1]],[[2,2,0,1],[0,3,3,1],[1,3,2,2],[1,1,1,1]],[[1,2,0,1],[0,3,3,1],[1,3,2,1],[1,3,1,1]],[[1,2,0,1],[0,3,3,1],[1,3,2,1],[2,2,1,1]],[[1,2,0,1],[0,3,3,1],[1,4,2,1],[1,2,1,1]],[[1,2,0,1],[0,3,4,1],[1,3,2,1],[1,2,1,1]],[[1,1,2,1],[0,4,2,1],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[0,3,2,1],[3,3,2,0],[0,2,2,1]],[[1,1,2,1],[0,3,2,1],[2,4,2,0],[0,2,2,1]],[[1,1,2,1],[0,3,2,1],[2,3,2,0],[0,3,2,1]],[[1,1,2,1],[0,3,2,1],[2,3,2,0],[0,2,3,1]],[[1,1,2,1],[0,3,2,1],[2,3,2,0],[0,2,2,2]],[[1,1,2,1],[0,4,2,1],[2,3,2,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,1],[3,3,2,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,1],[2,4,2,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,1],[2,3,2,0],[2,1,2,1]],[[1,1,2,1],[0,4,2,1],[2,3,2,1],[0,2,2,0]],[[1,1,2,1],[0,3,2,1],[3,3,2,1],[0,2,2,0]],[[1,1,2,1],[0,3,2,1],[2,4,2,1],[0,2,2,0]],[[1,1,2,1],[0,3,2,1],[2,3,2,1],[0,3,2,0]],[[1,1,2,1],[0,3,2,1],[2,3,2,1],[0,2,3,0]],[[1,1,2,1],[0,4,2,1],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[0,3,2,1],[3,3,2,1],[1,1,2,0]],[[1,1,2,1],[0,3,2,1],[2,4,2,1],[1,1,2,0]],[[1,1,2,1],[0,3,2,1],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[0,4,3,1],[1,3,2,1],[1,2,1,1]],[[1,3,0,1],[0,3,3,1],[1,3,2,1],[1,2,1,1]],[[2,2,0,1],[0,3,3,1],[1,3,2,1],[1,2,1,1]],[[1,2,0,1],[0,3,3,1],[1,4,2,1],[1,1,2,1]],[[1,2,0,1],[0,3,4,1],[1,3,2,1],[1,1,2,1]],[[1,2,0,1],[0,4,3,1],[1,3,2,1],[1,1,2,1]],[[1,3,0,1],[0,3,3,1],[1,3,2,1],[1,1,2,1]],[[2,2,0,1],[0,3,3,1],[1,3,2,1],[1,1,2,1]],[[1,2,0,1],[0,3,3,1],[1,3,1,2],[1,2,3,0]],[[1,2,0,1],[0,3,3,1],[1,3,1,2],[1,3,2,0]],[[1,2,0,1],[0,3,3,1],[1,3,1,2],[2,2,2,0]],[[1,2,0,1],[0,3,3,1],[1,4,1,2],[1,2,2,0]],[[1,2,0,1],[0,3,4,1],[1,3,1,2],[1,2,2,0]],[[1,2,0,1],[0,4,3,1],[1,3,1,2],[1,2,2,0]],[[1,3,0,1],[0,3,3,1],[1,3,1,2],[1,2,2,0]],[[2,2,0,1],[0,3,3,1],[1,3,1,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,1],[1,3,1,1],[1,2,2,2]],[[1,2,0,1],[0,3,3,1],[1,3,1,1],[1,2,3,1]],[[1,2,0,1],[0,3,3,1],[1,3,1,1],[1,3,2,1]],[[1,2,0,1],[0,3,3,1],[1,3,1,1],[2,2,2,1]],[[1,2,0,1],[0,3,3,1],[1,4,1,1],[1,2,2,1]],[[1,2,0,1],[0,3,4,1],[1,3,1,1],[1,2,2,1]],[[1,2,0,1],[0,4,3,1],[1,3,1,1],[1,2,2,1]],[[1,3,0,1],[0,3,3,1],[1,3,1,1],[1,2,2,1]],[[2,2,0,1],[0,3,3,1],[1,3,1,1],[1,2,2,1]],[[1,1,2,1],[0,4,2,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[0,3,2,1],[3,3,3,0],[0,1,2,1]],[[1,1,2,1],[0,3,2,1],[2,4,3,0],[0,1,2,1]],[[1,1,2,1],[0,3,2,1],[2,3,4,0],[0,1,2,1]],[[1,1,2,1],[0,3,2,1],[2,3,3,0],[0,1,3,1]],[[1,1,2,1],[0,3,2,1],[2,3,3,0],[0,1,2,2]],[[1,1,2,1],[0,4,2,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[0,3,2,1],[3,3,3,0],[0,2,1,1]],[[1,1,2,1],[0,3,2,1],[2,4,3,0],[0,2,1,1]],[[1,1,2,1],[0,3,2,1],[2,3,4,0],[0,2,1,1]],[[1,1,2,1],[0,3,2,1],[2,3,3,0],[0,3,1,1]],[[1,1,2,1],[0,4,2,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[0,3,2,1],[3,3,3,0],[1,0,2,1]],[[1,1,2,1],[0,3,2,1],[2,4,3,0],[1,0,2,1]],[[1,1,2,1],[0,3,2,1],[2,3,4,0],[1,0,2,1]],[[1,1,2,1],[0,3,2,1],[2,3,3,0],[2,0,2,1]],[[1,1,2,1],[0,3,2,1],[2,3,3,0],[1,0,3,1]],[[1,1,2,1],[0,3,2,1],[2,3,3,0],[1,0,2,2]],[[1,1,2,1],[0,4,2,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[0,3,2,1],[3,3,3,0],[1,1,1,1]],[[1,1,2,1],[0,3,2,1],[2,4,3,0],[1,1,1,1]],[[1,1,2,1],[0,3,2,1],[2,3,4,0],[1,1,1,1]],[[1,1,2,1],[0,3,2,1],[2,3,3,0],[2,1,1,1]],[[1,1,2,1],[0,4,2,1],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[0,3,2,1],[3,3,3,0],[1,2,0,1]],[[1,1,2,1],[0,3,2,1],[2,4,3,0],[1,2,0,1]],[[1,1,2,1],[0,3,2,1],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[0,3,3,1],[1,3,0,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,1],[1,3,0,2],[1,2,3,1]],[[1,2,0,1],[0,3,3,1],[1,3,0,2],[1,3,2,1]],[[1,2,0,1],[0,3,3,1],[1,3,0,2],[2,2,2,1]],[[1,2,0,1],[0,3,3,1],[1,3,0,3],[1,2,2,1]],[[1,2,0,1],[0,3,3,1],[1,4,0,2],[1,2,2,1]],[[1,2,0,1],[0,3,4,1],[1,3,0,2],[1,2,2,1]],[[1,2,0,1],[0,4,3,1],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,4,2,1],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[0,3,2,1],[3,3,3,1],[0,1,1,1]],[[1,1,2,1],[0,3,2,1],[2,4,3,1],[0,1,1,1]],[[1,1,2,1],[0,3,2,1],[2,3,4,1],[0,1,1,1]],[[1,1,2,1],[0,4,2,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[0,3,2,1],[3,3,3,1],[0,1,2,0]],[[1,1,2,1],[0,3,2,1],[2,4,3,1],[0,1,2,0]],[[1,1,2,1],[0,3,2,1],[2,3,4,1],[0,1,2,0]],[[1,1,2,1],[0,3,2,1],[2,3,3,1],[0,1,3,0]],[[1,1,2,1],[0,4,2,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[0,3,2,1],[3,3,3,1],[0,2,0,1]],[[1,1,2,1],[0,3,2,1],[2,4,3,1],[0,2,0,1]],[[1,1,2,1],[0,3,2,1],[2,3,4,1],[0,2,0,1]],[[1,1,2,1],[0,3,2,1],[2,3,3,1],[0,3,0,1]],[[1,1,2,1],[0,4,2,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[0,3,2,1],[3,3,3,1],[0,2,1,0]],[[1,1,2,1],[0,3,2,1],[2,4,3,1],[0,2,1,0]],[[1,1,2,1],[0,3,2,1],[2,3,4,1],[0,2,1,0]],[[1,1,2,1],[0,3,2,1],[2,3,3,1],[0,3,1,0]],[[1,3,0,1],[0,3,3,1],[1,3,0,2],[1,2,2,1]],[[2,2,0,1],[0,3,3,1],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,4,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[0,3,2,1],[3,3,3,1],[1,0,1,1]],[[1,1,2,1],[0,3,2,1],[2,4,3,1],[1,0,1,1]],[[1,1,2,1],[0,3,2,1],[2,3,4,1],[1,0,1,1]],[[1,1,2,1],[0,3,2,1],[2,3,3,1],[2,0,1,1]],[[1,1,2,1],[0,4,2,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[0,3,2,1],[3,3,3,1],[1,0,2,0]],[[1,1,2,1],[0,3,2,1],[2,4,3,1],[1,0,2,0]],[[1,1,2,1],[0,3,2,1],[2,3,4,1],[1,0,2,0]],[[1,1,2,1],[0,3,2,1],[2,3,3,1],[2,0,2,0]],[[1,1,2,1],[0,3,2,1],[2,3,3,1],[1,0,3,0]],[[1,1,2,1],[0,4,2,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[0,3,2,1],[3,3,3,1],[1,1,0,1]],[[1,1,2,1],[0,3,2,1],[2,4,3,1],[1,1,0,1]],[[1,1,2,1],[0,3,2,1],[2,3,4,1],[1,1,0,1]],[[1,1,2,1],[0,3,2,1],[2,3,3,1],[2,1,0,1]],[[1,1,2,1],[0,4,2,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[0,3,2,1],[3,3,3,1],[1,1,1,0]],[[1,1,2,1],[0,3,2,1],[2,4,3,1],[1,1,1,0]],[[1,1,2,1],[0,3,2,1],[2,3,4,1],[1,1,1,0]],[[1,1,2,1],[0,3,2,1],[2,3,3,1],[2,1,1,0]],[[1,1,2,1],[0,4,2,1],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[0,3,2,1],[3,3,3,1],[1,2,0,0]],[[1,1,2,1],[0,3,2,1],[2,4,3,1],[1,2,0,0]],[[1,1,2,1],[0,3,2,1],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[0,3,3,1],[1,2,3,3],[1,2,1,0]],[[1,2,0,1],[0,3,3,1],[1,2,4,2],[1,2,1,0]],[[1,2,0,1],[0,3,4,1],[1,2,3,2],[1,2,1,0]],[[1,2,0,1],[0,4,3,1],[1,2,3,2],[1,2,1,0]],[[1,3,0,1],[0,3,3,1],[1,2,3,2],[1,2,1,0]],[[2,2,0,1],[0,3,3,1],[1,2,3,2],[1,2,1,0]],[[1,2,0,1],[0,3,3,1],[1,2,3,2],[1,2,0,2]],[[1,2,0,1],[0,3,3,1],[1,2,3,3],[1,2,0,1]],[[1,2,0,1],[0,3,3,1],[1,2,4,2],[1,2,0,1]],[[1,2,0,1],[0,3,4,1],[1,2,3,2],[1,2,0,1]],[[1,2,0,1],[0,4,3,1],[1,2,3,2],[1,2,0,1]],[[1,3,0,1],[0,3,3,1],[1,2,3,2],[1,2,0,1]],[[2,2,0,1],[0,3,3,1],[1,2,3,2],[1,2,0,1]],[[1,2,0,1],[0,3,3,1],[1,2,3,2],[1,1,3,0]],[[1,2,0,1],[0,3,3,1],[1,2,3,3],[1,1,2,0]],[[1,2,0,1],[0,3,3,1],[1,2,4,2],[1,1,2,0]],[[1,2,0,1],[0,3,4,1],[1,2,3,2],[1,1,2,0]],[[1,2,0,1],[0,4,3,1],[1,2,3,2],[1,1,2,0]],[[1,3,0,1],[0,3,3,1],[1,2,3,2],[1,1,2,0]],[[2,2,0,1],[0,3,3,1],[1,2,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,3,1],[1,2,3,2],[1,1,1,2]],[[1,2,0,1],[0,3,3,1],[1,2,3,3],[1,1,1,1]],[[1,2,0,1],[0,3,3,1],[1,2,4,2],[1,1,1,1]],[[1,2,0,1],[0,3,4,1],[1,2,3,2],[1,1,1,1]],[[1,2,0,1],[0,4,3,1],[1,2,3,2],[1,1,1,1]],[[1,3,0,1],[0,3,3,1],[1,2,3,2],[1,1,1,1]],[[2,2,0,1],[0,3,3,1],[1,2,3,2],[1,1,1,1]],[[1,2,0,1],[0,3,3,1],[1,2,3,2],[1,0,2,2]],[[1,2,0,1],[0,3,3,1],[1,2,3,3],[1,0,2,1]],[[1,2,0,1],[0,3,3,1],[1,2,4,2],[1,0,2,1]],[[1,2,0,1],[0,3,4,1],[1,2,3,2],[1,0,2,1]],[[1,2,0,1],[0,3,3,1],[1,2,4,1],[1,2,1,1]],[[1,2,0,1],[0,3,4,1],[1,2,3,1],[1,2,1,1]],[[1,2,0,1],[0,4,3,1],[1,2,3,1],[1,2,1,1]],[[1,3,0,1],[0,3,3,1],[1,2,3,1],[1,2,1,1]],[[2,2,0,1],[0,3,3,1],[1,2,3,1],[1,2,1,1]],[[1,2,0,1],[0,3,3,1],[1,2,3,1],[1,1,2,2]],[[1,2,0,1],[0,3,3,1],[1,2,3,1],[1,1,3,1]],[[1,2,0,1],[0,3,3,1],[1,2,4,1],[1,1,2,1]],[[1,2,0,1],[0,3,4,1],[1,2,3,1],[1,1,2,1]],[[1,2,0,1],[0,4,3,1],[1,2,3,1],[1,1,2,1]],[[1,3,0,1],[0,3,3,1],[1,2,3,1],[1,1,2,1]],[[2,2,0,1],[0,3,3,1],[1,2,3,1],[1,1,2,1]],[[1,2,0,1],[0,3,3,1],[1,2,2,2],[1,1,2,2]],[[1,2,0,1],[0,3,3,1],[1,2,2,2],[1,1,3,1]],[[1,2,0,1],[0,3,3,1],[1,2,2,3],[1,1,2,1]],[[1,2,0,1],[0,3,3,1],[1,1,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,3,1],[1,1,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,3,1],[1,1,3,2],[2,2,2,0]],[[1,2,0,1],[0,3,3,1],[1,1,3,3],[1,2,2,0]],[[1,2,0,1],[0,3,3,1],[1,1,4,2],[1,2,2,0]],[[1,2,0,1],[0,3,4,1],[1,1,3,2],[1,2,2,0]],[[1,2,0,1],[0,4,3,1],[1,1,3,2],[1,2,2,0]],[[1,3,0,1],[0,3,3,1],[1,1,3,2],[1,2,2,0]],[[2,2,0,1],[0,3,3,1],[1,1,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,3,1],[1,1,3,2],[1,2,1,2]],[[1,2,0,1],[0,3,3,1],[1,1,3,3],[1,2,1,1]],[[1,2,0,1],[0,3,3,1],[1,1,4,2],[1,2,1,1]],[[1,2,0,1],[0,3,4,1],[1,1,3,2],[1,2,1,1]],[[1,2,0,1],[0,4,3,1],[1,1,3,2],[1,2,1,1]],[[1,3,0,1],[0,3,3,1],[1,1,3,2],[1,2,1,1]],[[2,2,0,1],[0,3,3,1],[1,1,3,2],[1,2,1,1]],[[1,2,0,1],[0,3,3,1],[1,1,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,3,1],[1,1,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,3,1],[1,1,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,3,1],[1,1,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,3,1],[1,1,4,1],[1,2,2,1]],[[1,2,0,1],[0,3,4,1],[1,1,3,1],[1,2,2,1]],[[1,2,0,1],[0,4,3,1],[1,1,3,1],[1,2,2,1]],[[1,3,0,1],[0,3,3,1],[1,1,3,1],[1,2,2,1]],[[2,2,0,1],[0,3,3,1],[1,1,3,1],[1,2,2,1]],[[1,2,0,1],[0,3,3,1],[1,1,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,1],[1,1,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,3,1],[1,1,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,3,1],[1,1,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,3,1],[1,1,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,3,1],[1,0,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,1],[1,0,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,3,1],[1,0,3,3],[1,2,2,1]],[[1,1,3,1],[0,3,2,2],[1,0,2,2],[1,2,2,1]],[[1,1,2,2],[0,3,2,2],[1,0,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,3],[1,0,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[1,0,2,3],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[1,0,2,2],[1,2,3,1]],[[1,1,2,1],[0,3,2,2],[1,0,2,2],[1,2,2,2]],[[1,1,3,1],[0,3,2,2],[1,0,3,2],[1,1,2,1]],[[1,1,2,2],[0,3,2,2],[1,0,3,2],[1,1,2,1]],[[1,1,2,1],[0,3,2,3],[1,0,3,2],[1,1,2,1]],[[1,1,2,1],[0,3,2,2],[1,0,3,3],[1,1,2,1]],[[1,1,2,1],[0,3,2,2],[1,0,3,2],[1,1,2,2]],[[1,1,3,1],[0,3,2,2],[1,0,3,2],[1,2,1,1]],[[1,1,2,2],[0,3,2,2],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,3],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,2],[1,0,3,3],[1,2,1,1]],[[1,1,2,1],[0,3,2,2],[1,0,3,2],[1,2,1,2]],[[1,1,3,1],[0,3,2,2],[1,0,3,2],[1,2,2,0]],[[1,1,2,2],[0,3,2,2],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,3],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,2],[1,0,3,3],[1,2,2,0]],[[1,1,3,1],[0,3,2,2],[1,1,1,2],[1,2,2,1]],[[1,1,2,2],[0,3,2,2],[1,1,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,3],[1,1,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[1,1,1,3],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[1,1,1,2],[2,2,2,1]],[[1,1,2,1],[0,3,2,2],[1,1,1,2],[1,3,2,1]],[[1,1,2,1],[0,3,2,2],[1,1,1,2],[1,2,3,1]],[[1,1,2,1],[0,3,2,2],[1,1,1,2],[1,2,2,2]],[[1,1,3,1],[0,3,2,2],[1,1,2,2],[1,2,1,1]],[[1,1,2,2],[0,3,2,2],[1,1,2,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,3],[1,1,2,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,2],[1,1,2,3],[1,2,1,1]],[[1,1,2,1],[0,3,2,2],[1,1,2,2],[1,2,1,2]],[[1,1,3,1],[0,3,2,2],[1,1,2,2],[1,2,2,0]],[[1,1,2,2],[0,3,2,2],[1,1,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,3],[1,1,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,2],[1,1,2,3],[1,2,2,0]],[[1,1,3,1],[0,3,2,2],[1,1,3,0],[1,2,2,1]],[[1,1,2,2],[0,3,2,2],[1,1,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,3],[1,1,3,0],[1,2,2,1]],[[1,1,3,1],[0,3,2,2],[1,1,3,1],[1,2,1,1]],[[1,1,2,2],[0,3,2,2],[1,1,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,2,3],[1,1,3,1],[1,2,1,1]],[[1,1,3,1],[0,3,2,2],[1,1,3,1],[1,2,2,0]],[[1,1,2,2],[0,3,2,2],[1,1,3,1],[1,2,2,0]],[[1,1,2,1],[0,3,2,3],[1,1,3,1],[1,2,2,0]],[[1,1,3,1],[0,3,2,2],[1,1,3,2],[1,0,2,1]],[[1,1,2,2],[0,3,2,2],[1,1,3,2],[1,0,2,1]],[[1,1,2,1],[0,3,2,3],[1,1,3,2],[1,0,2,1]],[[1,1,2,1],[0,3,2,2],[1,1,3,3],[1,0,2,1]],[[1,1,2,1],[0,3,2,2],[1,1,3,2],[1,0,2,2]],[[1,1,3,1],[0,3,2,2],[1,1,3,2],[1,1,1,1]],[[1,1,2,2],[0,3,2,2],[1,1,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,2,3],[1,1,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,2,2],[1,1,3,3],[1,1,1,1]],[[1,1,2,1],[0,3,2,2],[1,1,3,2],[1,1,1,2]],[[1,1,3,1],[0,3,2,2],[1,1,3,2],[1,1,2,0]],[[1,1,2,2],[0,3,2,2],[1,1,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,3],[1,1,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,2],[1,1,3,3],[1,1,2,0]],[[1,1,3,1],[0,3,2,2],[1,2,0,2],[1,2,2,1]],[[1,1,2,2],[0,3,2,2],[1,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,3],[1,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[1,2,0,3],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[1,2,0,2],[2,2,2,1]],[[1,1,2,1],[0,3,2,2],[1,2,0,2],[1,3,2,1]],[[1,1,2,1],[0,3,2,2],[1,2,0,2],[1,2,3,1]],[[1,1,2,1],[0,3,2,2],[1,2,0,2],[1,2,2,2]],[[1,1,3,1],[0,3,2,2],[1,2,1,2],[1,1,2,1]],[[1,1,2,2],[0,3,2,2],[1,2,1,2],[1,1,2,1]],[[1,1,2,1],[0,3,2,3],[1,2,1,2],[1,1,2,1]],[[1,1,2,1],[0,3,2,2],[1,2,1,3],[1,1,2,1]],[[1,1,2,1],[0,3,2,2],[1,2,1,2],[1,1,3,1]],[[1,1,2,1],[0,3,2,2],[1,2,1,2],[1,1,2,2]],[[1,1,3,1],[0,3,2,2],[1,2,2,2],[1,0,2,1]],[[1,1,2,2],[0,3,2,2],[1,2,2,2],[1,0,2,1]],[[1,1,2,1],[0,3,2,3],[1,2,2,2],[1,0,2,1]],[[1,1,2,1],[0,3,2,2],[1,2,2,3],[1,0,2,1]],[[1,1,2,1],[0,3,2,2],[1,2,2,2],[1,0,2,2]],[[1,1,3,1],[0,3,2,2],[1,2,2,2],[1,1,1,1]],[[1,1,2,2],[0,3,2,2],[1,2,2,2],[1,1,1,1]],[[1,1,2,1],[0,3,2,3],[1,2,2,2],[1,1,1,1]],[[1,1,2,1],[0,3,2,2],[1,2,2,3],[1,1,1,1]],[[1,1,2,1],[0,3,2,2],[1,2,2,2],[1,1,1,2]],[[1,1,3,1],[0,3,2,2],[1,2,2,2],[1,1,2,0]],[[1,1,2,2],[0,3,2,2],[1,2,2,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,3],[1,2,2,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,2],[1,2,2,3],[1,1,2,0]],[[1,1,3,1],[0,3,2,2],[1,2,2,2],[1,2,0,1]],[[1,1,2,2],[0,3,2,2],[1,2,2,2],[1,2,0,1]],[[1,1,2,1],[0,3,2,3],[1,2,2,2],[1,2,0,1]],[[1,1,2,1],[0,3,2,2],[1,2,2,3],[1,2,0,1]],[[1,1,2,1],[0,3,2,2],[1,2,2,2],[1,2,0,2]],[[1,1,3,1],[0,3,2,2],[1,2,2,2],[1,2,1,0]],[[1,1,2,2],[0,3,2,2],[1,2,2,2],[1,2,1,0]],[[1,1,2,1],[0,3,2,3],[1,2,2,2],[1,2,1,0]],[[1,1,2,1],[0,3,2,2],[1,2,2,3],[1,2,1,0]],[[1,1,3,1],[0,3,2,2],[1,2,3,0],[1,1,2,1]],[[1,1,2,2],[0,3,2,2],[1,2,3,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,3],[1,2,3,0],[1,1,2,1]],[[1,1,3,1],[0,3,2,2],[1,2,3,0],[1,2,1,1]],[[1,1,2,2],[0,3,2,2],[1,2,3,0],[1,2,1,1]],[[1,1,2,1],[0,3,2,3],[1,2,3,0],[1,2,1,1]],[[1,1,3,1],[0,3,2,2],[1,2,3,1],[1,0,2,1]],[[1,1,2,2],[0,3,2,2],[1,2,3,1],[1,0,2,1]],[[1,1,2,1],[0,3,2,3],[1,2,3,1],[1,0,2,1]],[[1,1,3,1],[0,3,2,2],[1,2,3,1],[1,1,1,1]],[[1,1,2,2],[0,3,2,2],[1,2,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,2,3],[1,2,3,1],[1,1,1,1]],[[1,1,3,1],[0,3,2,2],[1,2,3,1],[1,1,2,0]],[[1,1,2,2],[0,3,2,2],[1,2,3,1],[1,1,2,0]],[[1,1,2,1],[0,3,2,3],[1,2,3,1],[1,1,2,0]],[[1,1,3,1],[0,3,2,2],[1,2,3,1],[1,2,0,1]],[[1,1,2,2],[0,3,2,2],[1,2,3,1],[1,2,0,1]],[[1,1,2,1],[0,3,2,3],[1,2,3,1],[1,2,0,1]],[[1,1,3,1],[0,3,2,2],[1,2,3,1],[1,2,1,0]],[[1,1,2,2],[0,3,2,2],[1,2,3,1],[1,2,1,0]],[[1,1,2,1],[0,3,2,3],[1,2,3,1],[1,2,1,0]],[[1,1,3,1],[0,3,2,2],[1,2,3,2],[1,1,0,1]],[[1,1,2,2],[0,3,2,2],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,2,3],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,2,2],[1,2,3,3],[1,1,0,1]],[[1,2,0,1],[0,3,3,0],[2,2,3,2],[1,0,2,2]],[[1,2,0,1],[0,3,3,0],[2,2,3,2],[1,0,3,1]],[[1,2,0,1],[0,3,3,0],[2,2,4,2],[1,0,2,1]],[[1,2,0,1],[0,3,3,0],[2,2,3,2],[0,1,2,2]],[[1,2,0,1],[0,3,3,0],[2,2,3,2],[0,1,3,1]],[[1,2,0,1],[0,3,3,0],[2,2,4,2],[0,1,2,1]],[[1,2,0,1],[0,3,3,0],[2,1,3,2],[0,2,2,2]],[[1,2,0,1],[0,3,3,0],[2,1,3,2],[0,2,3,1]],[[1,1,3,1],[0,3,2,2],[1,3,0,1],[1,2,2,1]],[[1,1,2,2],[0,3,2,2],[1,3,0,1],[1,2,2,1]],[[1,1,2,1],[0,3,2,3],[1,3,0,1],[1,2,2,1]],[[1,1,3,1],[0,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,1,2,2],[0,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,2,3],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,2,2],[1,3,0,3],[1,1,2,1]],[[1,1,2,1],[0,3,2,2],[1,3,0,2],[1,1,3,1]],[[1,1,2,1],[0,3,2,2],[1,3,0,2],[1,1,2,2]],[[1,1,3,1],[0,3,2,2],[1,3,0,2],[1,2,1,1]],[[1,1,2,2],[0,3,2,2],[1,3,0,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,3],[1,3,0,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,2],[1,3,0,3],[1,2,1,1]],[[1,1,2,1],[0,3,2,2],[1,3,0,2],[1,2,1,2]],[[1,1,3,1],[0,3,2,2],[1,3,0,2],[1,2,2,0]],[[1,1,2,2],[0,3,2,2],[1,3,0,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,3],[1,3,0,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,2],[1,3,0,3],[1,2,2,0]],[[1,1,3,1],[0,3,2,2],[1,3,1,0],[1,2,2,1]],[[1,1,2,2],[0,3,2,2],[1,3,1,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,3],[1,3,1,0],[1,2,2,1]],[[1,1,3,1],[0,3,2,2],[1,3,1,1],[1,2,2,0]],[[1,1,2,2],[0,3,2,2],[1,3,1,1],[1,2,2,0]],[[1,1,2,1],[0,3,2,3],[1,3,1,1],[1,2,2,0]],[[1,1,3,1],[0,3,2,2],[1,3,1,2],[1,1,1,1]],[[1,1,2,2],[0,3,2,2],[1,3,1,2],[1,1,1,1]],[[1,1,2,1],[0,3,2,3],[1,3,1,2],[1,1,1,1]],[[1,1,2,1],[0,3,2,2],[1,3,1,3],[1,1,1,1]],[[1,1,2,1],[0,3,2,2],[1,3,1,2],[1,1,1,2]],[[1,1,3,1],[0,3,2,2],[1,3,1,2],[1,1,2,0]],[[1,1,2,2],[0,3,2,2],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,3],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,2],[1,3,1,3],[1,1,2,0]],[[1,1,3,1],[0,3,2,2],[1,3,1,2],[1,2,0,1]],[[1,1,2,2],[0,3,2,2],[1,3,1,2],[1,2,0,1]],[[1,1,2,1],[0,3,2,3],[1,3,1,2],[1,2,0,1]],[[1,1,2,1],[0,3,2,2],[1,3,1,3],[1,2,0,1]],[[1,1,2,1],[0,3,2,2],[1,3,1,2],[1,2,0,2]],[[1,1,3,1],[0,3,2,2],[1,3,1,2],[1,2,1,0]],[[1,1,2,2],[0,3,2,2],[1,3,1,2],[1,2,1,0]],[[1,1,2,1],[0,3,2,3],[1,3,1,2],[1,2,1,0]],[[1,1,2,1],[0,3,2,2],[1,3,1,3],[1,2,1,0]],[[1,2,0,1],[0,3,3,0],[2,1,3,2],[0,3,2,1]],[[1,2,0,1],[0,3,3,0],[2,1,4,2],[0,2,2,1]],[[1,2,0,1],[0,3,3,0],[2,0,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,0],[2,0,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,3,0],[2,0,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,3,0],[2,0,3,2],[2,2,2,1]],[[1,2,0,1],[0,3,3,0],[2,0,4,2],[1,2,2,1]],[[1,2,0,1],[0,3,3,0],[3,0,3,2],[1,2,2,1]],[[1,1,3,1],[0,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,1,2,2],[0,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,3],[1,3,2,0],[1,1,2,1]],[[1,1,3,1],[0,3,2,2],[1,3,2,0],[1,2,1,1]],[[1,1,2,2],[0,3,2,2],[1,3,2,0],[1,2,1,1]],[[1,1,2,1],[0,3,2,3],[1,3,2,0],[1,2,1,1]],[[1,1,3,1],[0,3,2,2],[1,3,2,1],[1,1,1,1]],[[1,1,2,2],[0,3,2,2],[1,3,2,1],[1,1,1,1]],[[1,1,2,1],[0,3,2,3],[1,3,2,1],[1,1,1,1]],[[1,1,3,1],[0,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,1,2,2],[0,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,1,2,1],[0,3,2,3],[1,3,2,1],[1,1,2,0]],[[1,1,3,1],[0,3,2,2],[1,3,2,1],[1,2,0,1]],[[1,1,2,2],[0,3,2,2],[1,3,2,1],[1,2,0,1]],[[1,1,2,1],[0,3,2,3],[1,3,2,1],[1,2,0,1]],[[1,1,3,1],[0,3,2,2],[1,3,2,1],[1,2,1,0]],[[1,1,2,2],[0,3,2,2],[1,3,2,1],[1,2,1,0]],[[1,1,2,1],[0,3,2,3],[1,3,2,1],[1,2,1,0]],[[1,2,0,1],[0,3,3,0],[1,2,3,2],[1,1,2,2]],[[1,2,0,1],[0,3,3,0],[1,2,3,2],[1,1,3,1]],[[1,2,0,1],[0,3,3,0],[1,2,4,2],[1,1,2,1]],[[1,2,0,1],[0,3,3,0],[1,1,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,3,0],[1,1,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,3,0],[1,1,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,3,0],[1,1,3,2],[2,2,2,1]],[[1,2,0,1],[0,3,3,0],[1,1,4,2],[1,2,2,1]],[[1,1,3,1],[0,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,1,2,2],[0,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,1,2,1],[0,3,2,3],[1,3,3,1],[1,2,0,0]],[[1,2,0,1],[0,3,2,2],[2,3,3,3],[0,0,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,4,2],[0,0,2,0]],[[1,2,0,1],[0,3,2,3],[2,3,3,2],[0,0,2,0]],[[1,2,0,2],[0,3,2,2],[2,3,3,2],[0,0,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,3,2],[0,0,1,2]],[[1,2,0,1],[0,3,2,2],[2,3,3,3],[0,0,1,1]],[[1,2,0,1],[0,3,2,2],[2,3,4,2],[0,0,1,1]],[[1,2,0,1],[0,3,2,3],[2,3,3,2],[0,0,1,1]],[[1,2,0,2],[0,3,2,2],[2,3,3,2],[0,0,1,1]],[[1,2,0,1],[0,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[0,3,2,2],[2,4,3,1],[1,2,0,0]],[[1,2,0,1],[0,3,2,2],[3,3,3,1],[1,2,0,0]],[[1,2,0,1],[0,4,2,2],[2,3,3,1],[1,2,0,0]],[[1,3,0,1],[0,3,2,2],[2,3,3,1],[1,2,0,0]],[[2,2,0,1],[0,3,2,2],[2,3,3,1],[1,2,0,0]],[[1,1,3,1],[0,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,2],[0,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,3],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[3,0,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,0,1,3],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,0,1,2],[2,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,0,1,2],[1,3,2,1]],[[1,1,2,1],[0,3,2,2],[2,0,1,2],[1,2,3,1]],[[1,1,2,1],[0,3,2,2],[2,0,1,2],[1,2,2,2]],[[1,1,3,1],[0,3,2,2],[2,0,2,2],[0,2,2,1]],[[1,1,2,2],[0,3,2,2],[2,0,2,2],[0,2,2,1]],[[1,1,2,1],[0,3,2,3],[2,0,2,2],[0,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,0,2,3],[0,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,0,2,2],[0,2,3,1]],[[1,1,2,1],[0,3,2,2],[2,0,2,2],[0,2,2,2]],[[1,1,3,1],[0,3,2,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,2],[0,3,2,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,3],[2,0,2,2],[1,2,1,1]],[[1,1,2,1],[0,3,2,2],[2,0,2,3],[1,2,1,1]],[[1,1,2,1],[0,3,2,2],[2,0,2,2],[1,2,1,2]],[[1,1,3,1],[0,3,2,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,2],[0,3,2,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,3],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,2,2],[2,0,2,3],[1,2,2,0]],[[1,1,3,1],[0,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,2],[0,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,2,3],[2,0,3,0],[1,2,2,1]],[[1,1,3,1],[0,3,2,2],[2,0,3,1],[1,2,1,1]],[[1,1,2,2],[0,3,2,2],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,2,3],[2,0,3,1],[1,2,1,1]],[[1,1,3,1],[0,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,2],[0,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[0,3,2,3],[2,0,3,1],[1,2,2,0]],[[1,1,3,1],[0,3,2,2],[2,0,3,2],[0,1,2,1]],[[1,1,2,2],[0,3,2,2],[2,0,3,2],[0,1,2,1]],[[1,1,2,1],[0,3,2,3],[2,0,3,2],[0,1,2,1]],[[1,1,2,1],[0,3,2,2],[2,0,3,3],[0,1,2,1]],[[1,1,2,1],[0,3,2,2],[2,0,3,2],[0,1,2,2]],[[1,1,3,1],[0,3,2,2],[2,0,3,2],[0,2,1,1]],[[1,1,2,2],[0,3,2,2],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[0,3,2,3],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[0,3,2,2],[2,0,3,3],[0,2,1,1]],[[1,1,2,1],[0,3,2,2],[2,0,3,2],[0,2,1,2]],[[1,1,3,1],[0,3,2,2],[2,0,3,2],[0,2,2,0]],[[1,1,2,2],[0,3,2,2],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[0,3,2,3],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[0,3,2,2],[2,0,3,3],[0,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[0,3,2,2],[2,3,4,1],[1,1,1,0]],[[1,2,0,1],[0,3,2,2],[2,4,3,1],[1,1,1,0]],[[1,1,3,1],[0,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,2],[0,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,3],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[3,1,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,1,0,3],[1,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,1,0,2],[2,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,1,0,2],[1,3,2,1]],[[1,1,2,1],[0,3,2,2],[2,1,0,2],[1,2,3,1]],[[1,1,2,1],[0,3,2,2],[2,1,0,2],[1,2,2,2]],[[1,1,3,1],[0,3,2,2],[2,1,1,2],[0,2,2,1]],[[1,1,2,2],[0,3,2,2],[2,1,1,2],[0,2,2,1]],[[1,1,2,1],[0,3,2,3],[2,1,1,2],[0,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,1,1,3],[0,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,1,1,2],[0,3,2,1]],[[1,1,2,1],[0,3,2,2],[2,1,1,2],[0,2,3,1]],[[1,1,2,1],[0,3,2,2],[2,1,1,2],[0,2,2,2]],[[1,1,3,1],[0,3,2,2],[2,1,2,2],[0,2,1,1]],[[1,1,2,2],[0,3,2,2],[2,1,2,2],[0,2,1,1]],[[1,1,2,1],[0,3,2,3],[2,1,2,2],[0,2,1,1]],[[1,1,2,1],[0,3,2,2],[2,1,2,3],[0,2,1,1]],[[1,1,2,1],[0,3,2,2],[2,1,2,2],[0,2,1,2]],[[1,1,3,1],[0,3,2,2],[2,1,2,2],[0,2,2,0]],[[1,1,2,2],[0,3,2,2],[2,1,2,2],[0,2,2,0]],[[1,1,2,1],[0,3,2,3],[2,1,2,2],[0,2,2,0]],[[1,1,2,1],[0,3,2,2],[2,1,2,3],[0,2,2,0]],[[1,2,0,1],[0,3,2,2],[3,3,3,1],[1,1,1,0]],[[1,2,0,1],[0,4,2,2],[2,3,3,1],[1,1,1,0]],[[1,3,0,1],[0,3,2,2],[2,3,3,1],[1,1,1,0]],[[2,2,0,1],[0,3,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,0,1],[0,3,2,2],[2,3,3,1],[2,1,0,1]],[[1,2,0,1],[0,3,2,2],[2,3,4,1],[1,1,0,1]],[[1,2,0,1],[0,3,2,2],[2,4,3,1],[1,1,0,1]],[[1,2,0,1],[0,3,2,2],[3,3,3,1],[1,1,0,1]],[[1,2,0,1],[0,4,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,3,1],[0,3,2,2],[2,1,3,0],[0,2,2,1]],[[1,1,2,2],[0,3,2,2],[2,1,3,0],[0,2,2,1]],[[1,1,2,1],[0,3,2,3],[2,1,3,0],[0,2,2,1]],[[1,1,3,1],[0,3,2,2],[2,1,3,1],[0,2,1,1]],[[1,1,2,2],[0,3,2,2],[2,1,3,1],[0,2,1,1]],[[1,1,2,1],[0,3,2,3],[2,1,3,1],[0,2,1,1]],[[1,1,3,1],[0,3,2,2],[2,1,3,1],[0,2,2,0]],[[1,1,2,2],[0,3,2,2],[2,1,3,1],[0,2,2,0]],[[1,1,2,1],[0,3,2,3],[2,1,3,1],[0,2,2,0]],[[1,3,0,1],[0,3,2,2],[2,3,3,1],[1,1,0,1]],[[2,2,0,1],[0,3,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,3,1],[0,3,2,2],[2,1,3,2],[0,0,2,1]],[[1,1,2,2],[0,3,2,2],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[0,3,2,3],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[0,3,2,2],[2,1,3,3],[0,0,2,1]],[[1,1,2,1],[0,3,2,2],[2,1,3,2],[0,0,2,2]],[[1,1,3,1],[0,3,2,2],[2,1,3,2],[0,1,1,1]],[[1,1,2,2],[0,3,2,2],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,2,3],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,2,2],[2,1,3,3],[0,1,1,1]],[[1,1,2,1],[0,3,2,2],[2,1,3,2],[0,1,1,2]],[[1,1,3,1],[0,3,2,2],[2,1,3,2],[0,1,2,0]],[[1,1,2,2],[0,3,2,2],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,2,3],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,2,2],[2,1,3,3],[0,1,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,3,1],[1,0,3,0]],[[1,2,0,1],[0,3,2,2],[2,3,3,1],[2,0,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,4,1],[1,0,2,0]],[[1,2,0,1],[0,3,2,2],[2,4,3,1],[1,0,2,0]],[[1,2,0,1],[0,3,2,2],[3,3,3,1],[1,0,2,0]],[[1,2,0,1],[0,4,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,3,1],[0,3,2,2],[2,1,3,2],[1,0,1,1]],[[1,1,2,2],[0,3,2,2],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,2,3],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,2,2],[2,1,3,3],[1,0,1,1]],[[1,1,2,1],[0,3,2,2],[2,1,3,2],[1,0,1,2]],[[1,1,3,1],[0,3,2,2],[2,1,3,2],[1,0,2,0]],[[1,1,2,2],[0,3,2,2],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,2,3],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,2,2],[2,1,3,3],[1,0,2,0]],[[1,3,0,1],[0,3,2,2],[2,3,3,1],[1,0,2,0]],[[2,2,0,1],[0,3,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,3,1],[2,0,1,1]],[[1,2,0,1],[0,3,2,2],[2,3,4,1],[1,0,1,1]],[[1,2,0,1],[0,3,2,2],[2,4,3,1],[1,0,1,1]],[[1,2,0,1],[0,3,2,2],[3,3,3,1],[1,0,1,1]],[[1,2,0,1],[0,4,2,2],[2,3,3,1],[1,0,1,1]],[[1,3,0,1],[0,3,2,2],[2,3,3,1],[1,0,1,1]],[[2,2,0,1],[0,3,2,2],[2,3,3,1],[1,0,1,1]],[[1,2,0,1],[0,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[0,3,2,2],[2,3,4,1],[0,2,1,0]],[[1,2,0,1],[0,3,2,2],[2,4,3,1],[0,2,1,0]],[[1,2,0,1],[0,3,2,2],[3,3,3,1],[0,2,1,0]],[[1,2,0,1],[0,4,2,2],[2,3,3,1],[0,2,1,0]],[[1,3,0,1],[0,3,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,3,1],[0,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,1,2,2],[0,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,2,3],[2,2,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,2,0,3],[0,2,2,1]],[[1,1,2,1],[0,3,2,2],[2,2,0,2],[0,3,2,1]],[[1,1,2,1],[0,3,2,2],[2,2,0,2],[0,2,3,1]],[[1,1,2,1],[0,3,2,2],[2,2,0,2],[0,2,2,2]],[[1,1,3,1],[0,3,2,2],[2,2,1,2],[0,1,2,1]],[[1,1,2,2],[0,3,2,2],[2,2,1,2],[0,1,2,1]],[[1,1,2,1],[0,3,2,3],[2,2,1,2],[0,1,2,1]],[[1,1,2,1],[0,3,2,2],[2,2,1,3],[0,1,2,1]],[[1,1,2,1],[0,3,2,2],[2,2,1,2],[0,1,3,1]],[[1,1,2,1],[0,3,2,2],[2,2,1,2],[0,1,2,2]],[[1,1,3,1],[0,3,2,2],[2,2,1,2],[1,0,2,1]],[[1,1,2,2],[0,3,2,2],[2,2,1,2],[1,0,2,1]],[[1,1,2,1],[0,3,2,3],[2,2,1,2],[1,0,2,1]],[[1,1,2,1],[0,3,2,2],[2,2,1,3],[1,0,2,1]],[[1,1,2,1],[0,3,2,2],[2,2,1,2],[1,0,3,1]],[[1,1,2,1],[0,3,2,2],[2,2,1,2],[1,0,2,2]],[[2,2,0,1],[0,3,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,0,1],[0,3,2,2],[2,3,3,1],[0,3,0,1]],[[1,2,0,1],[0,3,2,2],[2,3,4,1],[0,2,0,1]],[[1,2,0,1],[0,3,2,2],[2,4,3,1],[0,2,0,1]],[[1,2,0,1],[0,3,2,2],[3,3,3,1],[0,2,0,1]],[[1,2,0,1],[0,4,2,2],[2,3,3,1],[0,2,0,1]],[[1,3,0,1],[0,3,2,2],[2,3,3,1],[0,2,0,1]],[[2,2,0,1],[0,3,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,3,1],[0,3,2,2],[2,2,2,2],[0,0,2,1]],[[1,1,2,2],[0,3,2,2],[2,2,2,2],[0,0,2,1]],[[1,1,2,1],[0,3,2,3],[2,2,2,2],[0,0,2,1]],[[1,1,2,1],[0,3,2,2],[2,2,2,3],[0,0,2,1]],[[1,1,2,1],[0,3,2,2],[2,2,2,2],[0,0,2,2]],[[1,1,3,1],[0,3,2,2],[2,2,2,2],[0,1,1,1]],[[1,1,2,2],[0,3,2,2],[2,2,2,2],[0,1,1,1]],[[1,1,2,1],[0,3,2,3],[2,2,2,2],[0,1,1,1]],[[1,1,2,1],[0,3,2,2],[2,2,2,3],[0,1,1,1]],[[1,1,2,1],[0,3,2,2],[2,2,2,2],[0,1,1,2]],[[1,1,3,1],[0,3,2,2],[2,2,2,2],[0,1,2,0]],[[1,1,2,2],[0,3,2,2],[2,2,2,2],[0,1,2,0]],[[1,1,2,1],[0,3,2,3],[2,2,2,2],[0,1,2,0]],[[1,1,2,1],[0,3,2,2],[2,2,2,3],[0,1,2,0]],[[1,1,3,1],[0,3,2,2],[2,2,2,2],[0,2,0,1]],[[1,1,2,2],[0,3,2,2],[2,2,2,2],[0,2,0,1]],[[1,1,2,1],[0,3,2,3],[2,2,2,2],[0,2,0,1]],[[1,1,2,1],[0,3,2,2],[2,2,2,3],[0,2,0,1]],[[1,1,2,1],[0,3,2,2],[2,2,2,2],[0,2,0,2]],[[1,1,3,1],[0,3,2,2],[2,2,2,2],[0,2,1,0]],[[1,1,2,2],[0,3,2,2],[2,2,2,2],[0,2,1,0]],[[1,1,2,1],[0,3,2,3],[2,2,2,2],[0,2,1,0]],[[1,1,2,1],[0,3,2,2],[2,2,2,3],[0,2,1,0]],[[1,2,0,1],[0,3,2,2],[2,3,3,1],[0,1,3,0]],[[1,2,0,1],[0,3,2,2],[2,3,4,1],[0,1,2,0]],[[1,2,0,1],[0,3,2,2],[2,4,3,1],[0,1,2,0]],[[1,2,0,1],[0,3,2,2],[3,3,3,1],[0,1,2,0]],[[1,2,0,1],[0,4,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,3,1],[0,3,2,2],[2,2,2,2],[1,0,1,1]],[[1,1,2,2],[0,3,2,2],[2,2,2,2],[1,0,1,1]],[[1,1,2,1],[0,3,2,3],[2,2,2,2],[1,0,1,1]],[[1,1,2,1],[0,3,2,2],[2,2,2,3],[1,0,1,1]],[[1,1,2,1],[0,3,2,2],[2,2,2,2],[1,0,1,2]],[[1,1,3,1],[0,3,2,2],[2,2,2,2],[1,0,2,0]],[[1,1,2,2],[0,3,2,2],[2,2,2,2],[1,0,2,0]],[[1,1,2,1],[0,3,2,3],[2,2,2,2],[1,0,2,0]],[[1,1,2,1],[0,3,2,2],[2,2,2,3],[1,0,2,0]],[[1,1,3,1],[0,3,2,2],[2,2,2,2],[1,1,0,1]],[[1,1,2,2],[0,3,2,2],[2,2,2,2],[1,1,0,1]],[[1,1,2,1],[0,3,2,3],[2,2,2,2],[1,1,0,1]],[[1,1,2,1],[0,3,2,2],[2,2,2,3],[1,1,0,1]],[[1,1,2,1],[0,3,2,2],[2,2,2,2],[1,1,0,2]],[[1,1,3,1],[0,3,2,2],[2,2,2,2],[1,1,1,0]],[[1,1,2,2],[0,3,2,2],[2,2,2,2],[1,1,1,0]],[[1,1,2,1],[0,3,2,3],[2,2,2,2],[1,1,1,0]],[[1,1,2,1],[0,3,2,2],[2,2,2,3],[1,1,1,0]],[[1,3,0,1],[0,3,2,2],[2,3,3,1],[0,1,2,0]],[[2,2,0,1],[0,3,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,4,1],[0,1,1,1]],[[1,2,0,1],[0,3,2,2],[2,4,3,1],[0,1,1,1]],[[1,2,0,1],[0,3,2,2],[3,3,3,1],[0,1,1,1]],[[1,2,0,1],[0,4,2,2],[2,3,3,1],[0,1,1,1]],[[1,3,0,1],[0,3,2,2],[2,3,3,1],[0,1,1,1]],[[2,2,0,1],[0,3,2,2],[2,3,3,1],[0,1,1,1]],[[1,2,0,1],[0,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[0,3,2,2],[2,4,3,0],[1,2,0,1]],[[1,2,0,1],[0,3,2,2],[3,3,3,0],[1,2,0,1]],[[1,2,0,1],[0,4,2,2],[2,3,3,0],[1,2,0,1]],[[1,3,0,1],[0,3,2,2],[2,3,3,0],[1,2,0,1]],[[2,2,0,1],[0,3,2,2],[2,3,3,0],[1,2,0,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,1,2,2],[0,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,1,2,1],[0,3,2,3],[2,2,3,0],[0,1,2,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,1,2,2],[0,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,1,2,1],[0,3,2,3],[2,2,3,0],[0,2,1,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,1,2,2],[0,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,1,2,1],[0,3,2,3],[2,2,3,0],[1,0,2,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,1,2,2],[0,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,1,2,1],[0,3,2,3],[2,2,3,0],[1,1,1,1]],[[1,2,0,1],[0,3,2,2],[2,3,3,0],[2,1,1,1]],[[1,2,0,1],[0,3,2,2],[2,3,4,0],[1,1,1,1]],[[1,2,0,1],[0,3,2,2],[2,4,3,0],[1,1,1,1]],[[1,2,0,1],[0,3,2,2],[3,3,3,0],[1,1,1,1]],[[1,2,0,1],[0,4,2,2],[2,3,3,0],[1,1,1,1]],[[1,3,0,1],[0,3,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,1],[0,0,2,1]],[[1,1,2,2],[0,3,2,2],[2,2,3,1],[0,0,2,1]],[[1,1,2,1],[0,3,2,3],[2,2,3,1],[0,0,2,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,1,2,2],[0,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,1,2,1],[0,3,2,3],[2,2,3,1],[0,1,1,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,1,2,2],[0,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,1,2,1],[0,3,2,3],[2,2,3,1],[0,1,2,0]],[[1,1,3,1],[0,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,1,2,2],[0,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,1,2,1],[0,3,2,3],[2,2,3,1],[0,2,0,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,1,2,2],[0,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,1,2,1],[0,3,2,3],[2,2,3,1],[0,2,1,0]],[[2,2,0,1],[0,3,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,0,1],[0,3,2,2],[2,3,3,0],[1,0,2,2]],[[1,2,0,1],[0,3,2,2],[2,3,3,0],[1,0,3,1]],[[1,2,0,1],[0,3,2,2],[2,3,3,0],[2,0,2,1]],[[1,2,0,1],[0,3,2,2],[2,3,4,0],[1,0,2,1]],[[1,2,0,1],[0,3,2,2],[2,4,3,0],[1,0,2,1]],[[1,2,0,1],[0,3,2,2],[3,3,3,0],[1,0,2,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,1,2,2],[0,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,1,2,1],[0,3,2,3],[2,2,3,1],[1,0,1,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,1,2,2],[0,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,1,2,1],[0,3,2,3],[2,2,3,1],[1,0,2,0]],[[1,1,3,1],[0,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,1,2,2],[0,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,1,2,1],[0,3,2,3],[2,2,3,1],[1,1,0,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,1,2,2],[0,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,1,2,1],[0,3,2,3],[2,2,3,1],[1,1,1,0]],[[1,2,0,1],[0,4,2,2],[2,3,3,0],[1,0,2,1]],[[1,3,0,1],[0,3,2,2],[2,3,3,0],[1,0,2,1]],[[2,2,0,1],[0,3,2,2],[2,3,3,0],[1,0,2,1]],[[1,2,0,1],[0,3,2,2],[2,3,3,0],[0,3,1,1]],[[1,2,0,1],[0,3,2,2],[2,3,4,0],[0,2,1,1]],[[1,2,0,1],[0,3,2,2],[2,4,3,0],[0,2,1,1]],[[1,2,0,1],[0,3,2,2],[3,3,3,0],[0,2,1,1]],[[1,2,0,1],[0,4,2,2],[2,3,3,0],[0,2,1,1]],[[1,3,0,1],[0,3,2,2],[2,3,3,0],[0,2,1,1]],[[2,2,0,1],[0,3,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,0,1],[0,3,2,2],[2,3,3,0],[0,1,2,2]],[[1,2,0,1],[0,3,2,2],[2,3,3,0],[0,1,3,1]],[[1,2,0,1],[0,3,2,2],[2,3,4,0],[0,1,2,1]],[[1,2,0,1],[0,3,2,2],[2,4,3,0],[0,1,2,1]],[[1,2,0,1],[0,3,2,2],[3,3,3,0],[0,1,2,1]],[[1,2,0,1],[0,4,2,2],[2,3,3,0],[0,1,2,1]],[[1,3,0,1],[0,3,2,2],[2,3,3,0],[0,1,2,1]],[[2,2,0,1],[0,3,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,2],[0,1,0,1]],[[1,1,2,2],[0,3,2,2],[2,2,3,2],[0,1,0,1]],[[1,1,2,1],[0,3,2,3],[2,2,3,2],[0,1,0,1]],[[1,1,2,1],[0,3,2,2],[2,2,3,3],[0,1,0,1]],[[1,1,3,1],[0,3,2,2],[2,2,3,2],[1,0,0,1]],[[1,1,2,2],[0,3,2,2],[2,2,3,2],[1,0,0,1]],[[1,1,2,1],[0,3,2,3],[2,2,3,2],[1,0,0,1]],[[1,1,2,1],[0,3,2,2],[2,2,3,3],[1,0,0,1]],[[1,2,0,1],[0,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[0,3,2,2],[2,4,2,1],[1,1,2,0]],[[1,2,0,1],[0,3,2,2],[3,3,2,1],[1,1,2,0]],[[1,2,0,1],[0,4,2,2],[2,3,2,1],[1,1,2,0]],[[1,3,0,1],[0,3,2,2],[2,3,2,1],[1,1,2,0]],[[2,2,0,1],[0,3,2,2],[2,3,2,1],[1,1,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,2,1],[0,2,3,0]],[[1,2,0,1],[0,3,2,2],[2,3,2,1],[0,3,2,0]],[[1,2,0,1],[0,3,2,2],[2,4,2,1],[0,2,2,0]],[[1,2,0,1],[0,3,2,2],[3,3,2,1],[0,2,2,0]],[[1,2,0,1],[0,4,2,2],[2,3,2,1],[0,2,2,0]],[[1,3,0,1],[0,3,2,2],[2,3,2,1],[0,2,2,0]],[[2,2,0,1],[0,3,2,2],[2,3,2,1],[0,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,2,0],[2,1,2,1]],[[1,2,0,1],[0,3,2,2],[2,4,2,0],[1,1,2,1]],[[1,2,0,1],[0,3,2,2],[3,3,2,0],[1,1,2,1]],[[1,2,0,1],[0,4,2,2],[2,3,2,0],[1,1,2,1]],[[1,3,0,1],[0,3,2,2],[2,3,2,0],[1,1,2,1]],[[2,2,0,1],[0,3,2,2],[2,3,2,0],[1,1,2,1]],[[1,2,0,1],[0,3,2,2],[2,3,2,0],[0,2,2,2]],[[1,2,0,1],[0,3,2,2],[2,3,2,0],[0,2,3,1]],[[1,2,0,1],[0,3,2,2],[2,3,2,0],[0,3,2,1]],[[1,2,0,1],[0,3,2,2],[2,4,2,0],[0,2,2,1]],[[1,2,0,1],[0,3,2,2],[3,3,2,0],[0,2,2,1]],[[1,2,0,1],[0,4,2,2],[2,3,2,0],[0,2,2,1]],[[1,3,0,1],[0,3,2,2],[2,3,2,0],[0,2,2,1]],[[2,2,0,1],[0,3,2,2],[2,3,2,0],[0,2,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,0,1],[0,2,2,1]],[[1,1,2,2],[0,3,2,2],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[0,3,2,3],[2,3,0,1],[0,2,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,0,1],[1,1,2,1]],[[1,1,2,2],[0,3,2,2],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[0,3,2,3],[2,3,0,1],[1,1,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,2],[0,3,2,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,1],[0,3,2,3],[2,3,0,2],[0,1,2,1]],[[1,1,2,1],[0,3,2,2],[2,3,0,3],[0,1,2,1]],[[1,1,2,1],[0,3,2,2],[2,3,0,2],[0,1,3,1]],[[1,1,2,1],[0,3,2,2],[2,3,0,2],[0,1,2,2]],[[1,1,3,1],[0,3,2,2],[2,3,0,2],[0,2,1,1]],[[1,1,2,2],[0,3,2,2],[2,3,0,2],[0,2,1,1]],[[1,1,2,1],[0,3,2,3],[2,3,0,2],[0,2,1,1]],[[1,1,2,1],[0,3,2,2],[2,3,0,3],[0,2,1,1]],[[1,1,2,1],[0,3,2,2],[2,3,0,2],[0,2,1,2]],[[1,1,3,1],[0,3,2,2],[2,3,0,2],[0,2,2,0]],[[1,1,2,2],[0,3,2,2],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[0,3,2,3],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[0,3,2,2],[2,3,0,3],[0,2,2,0]],[[1,1,3,1],[0,3,2,2],[2,3,0,2],[1,0,2,1]],[[1,1,2,2],[0,3,2,2],[2,3,0,2],[1,0,2,1]],[[1,1,2,1],[0,3,2,3],[2,3,0,2],[1,0,2,1]],[[1,1,2,1],[0,3,2,2],[2,3,0,3],[1,0,2,1]],[[1,1,2,1],[0,3,2,2],[2,3,0,2],[1,0,3,1]],[[1,1,2,1],[0,3,2,2],[2,3,0,2],[1,0,2,2]],[[1,1,3,1],[0,3,2,2],[2,3,0,2],[1,1,1,1]],[[1,1,2,2],[0,3,2,2],[2,3,0,2],[1,1,1,1]],[[1,1,2,1],[0,3,2,3],[2,3,0,2],[1,1,1,1]],[[1,1,2,1],[0,3,2,2],[2,3,0,3],[1,1,1,1]],[[1,1,2,1],[0,3,2,2],[2,3,0,2],[1,1,1,2]],[[1,1,3,1],[0,3,2,2],[2,3,0,2],[1,1,2,0]],[[1,1,2,2],[0,3,2,2],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,3],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[0,3,2,2],[2,3,0,3],[1,1,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,1,1],[2,2,2,0]],[[1,2,0,1],[0,3,2,2],[3,3,1,1],[1,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,3,1,0],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[2,3,1,0],[2,2,2,1]],[[1,2,0,1],[0,3,2,2],[3,3,1,0],[1,2,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,1,0],[0,2,2,1]],[[1,1,2,2],[0,3,2,2],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[0,3,2,3],[2,3,1,0],[0,2,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,1,0],[1,1,2,1]],[[1,1,2,2],[0,3,2,2],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[0,3,2,3],[2,3,1,0],[1,1,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,1,1],[0,2,2,0]],[[1,1,2,2],[0,3,2,2],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[0,3,2,3],[2,3,1,1],[0,2,2,0]],[[1,1,3,1],[0,3,2,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,2],[0,3,2,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[0,3,2,3],[2,3,1,1],[1,1,2,0]],[[1,1,3,1],[0,3,2,2],[2,3,1,2],[0,1,1,1]],[[1,1,2,2],[0,3,2,2],[2,3,1,2],[0,1,1,1]],[[1,1,2,1],[0,3,2,3],[2,3,1,2],[0,1,1,1]],[[1,1,2,1],[0,3,2,2],[2,3,1,3],[0,1,1,1]],[[1,1,2,1],[0,3,2,2],[2,3,1,2],[0,1,1,2]],[[1,1,3,1],[0,3,2,2],[2,3,1,2],[0,1,2,0]],[[1,1,2,2],[0,3,2,2],[2,3,1,2],[0,1,2,0]],[[1,1,2,1],[0,3,2,3],[2,3,1,2],[0,1,2,0]],[[1,1,2,1],[0,3,2,2],[2,3,1,3],[0,1,2,0]],[[1,1,3,1],[0,3,2,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,2],[0,3,2,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[0,3,2,3],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[0,3,2,2],[2,3,1,3],[0,2,0,1]],[[1,1,2,1],[0,3,2,2],[2,3,1,2],[0,2,0,2]],[[1,1,3,1],[0,3,2,2],[2,3,1,2],[0,2,1,0]],[[1,1,2,2],[0,3,2,2],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[0,3,2,3],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[0,3,2,2],[2,3,1,3],[0,2,1,0]],[[1,2,0,1],[0,3,2,2],[2,3,0,2],[2,1,2,1]],[[1,2,0,1],[0,3,2,2],[2,4,0,2],[1,1,2,1]],[[1,2,0,1],[0,3,2,2],[3,3,0,2],[1,1,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,2],[0,3,2,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[0,3,2,3],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[0,3,2,2],[2,3,1,3],[1,0,1,1]],[[1,1,2,1],[0,3,2,2],[2,3,1,2],[1,0,1,2]],[[1,1,3,1],[0,3,2,2],[2,3,1,2],[1,0,2,0]],[[1,1,2,2],[0,3,2,2],[2,3,1,2],[1,0,2,0]],[[1,1,2,1],[0,3,2,3],[2,3,1,2],[1,0,2,0]],[[1,1,2,1],[0,3,2,2],[2,3,1,3],[1,0,2,0]],[[1,1,3,1],[0,3,2,2],[2,3,1,2],[1,1,0,1]],[[1,1,2,2],[0,3,2,2],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[0,3,2,3],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[0,3,2,2],[2,3,1,3],[1,1,0,1]],[[1,1,2,1],[0,3,2,2],[2,3,1,2],[1,1,0,2]],[[1,1,3,1],[0,3,2,2],[2,3,1,2],[1,1,1,0]],[[1,1,2,2],[0,3,2,2],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[0,3,2,3],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[0,3,2,2],[2,3,1,3],[1,1,1,0]],[[1,2,0,1],[0,4,2,2],[2,3,0,2],[1,1,2,1]],[[1,3,0,1],[0,3,2,2],[2,3,0,2],[1,1,2,1]],[[2,2,0,1],[0,3,2,2],[2,3,0,2],[1,1,2,1]],[[1,2,0,1],[0,3,2,2],[2,3,0,2],[0,2,2,2]],[[1,2,0,1],[0,3,2,2],[2,3,0,2],[0,2,3,1]],[[1,2,0,1],[0,3,2,2],[2,3,0,2],[0,3,2,1]],[[1,2,0,1],[0,3,2,2],[2,3,0,3],[0,2,2,1]],[[1,2,0,1],[0,3,2,2],[2,4,0,2],[0,2,2,1]],[[1,2,0,1],[0,3,2,2],[3,3,0,2],[0,2,2,1]],[[1,2,0,1],[0,3,2,3],[2,3,0,2],[0,2,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,2],[0,3,2,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[0,3,2,3],[2,3,1,2],[1,2,0,0]],[[1,2,0,1],[0,4,2,2],[2,3,0,2],[0,2,2,1]],[[1,2,0,2],[0,3,2,2],[2,3,0,2],[0,2,2,1]],[[1,3,0,1],[0,3,2,2],[2,3,0,2],[0,2,2,1]],[[2,2,0,1],[0,3,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,2],[0,3,2,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[0,3,2,3],[2,3,2,0],[0,1,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,2,0],[0,2,1,1]],[[1,1,2,2],[0,3,2,2],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[0,3,2,3],[2,3,2,0],[0,2,1,1]],[[1,1,3,1],[0,3,2,2],[2,3,2,0],[1,0,2,1]],[[1,1,2,2],[0,3,2,2],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[0,3,2,3],[2,3,2,0],[1,0,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,2,0],[1,1,1,1]],[[1,1,2,2],[0,3,2,2],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[0,3,2,3],[2,3,2,0],[1,1,1,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,3],[1,1,1,0]],[[1,1,3,1],[0,3,2,2],[2,3,2,1],[0,1,1,1]],[[1,1,2,2],[0,3,2,2],[2,3,2,1],[0,1,1,1]],[[1,1,2,1],[0,3,2,3],[2,3,2,1],[0,1,1,1]],[[1,1,3,1],[0,3,2,2],[2,3,2,1],[0,1,2,0]],[[1,1,2,2],[0,3,2,2],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[0,3,2,3],[2,3,2,1],[0,1,2,0]],[[1,1,3,1],[0,3,2,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,2],[0,3,2,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[0,3,2,3],[2,3,2,1],[0,2,0,1]],[[1,1,3,1],[0,3,2,2],[2,3,2,1],[0,2,1,0]],[[1,1,2,2],[0,3,2,2],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[0,3,2,3],[2,3,2,1],[0,2,1,0]],[[1,2,0,1],[0,3,2,2],[2,2,4,2],[1,1,1,0]],[[1,2,0,1],[0,3,2,3],[2,2,3,2],[1,1,1,0]],[[1,2,0,2],[0,3,2,2],[2,2,3,2],[1,1,1,0]],[[1,2,0,1],[0,3,2,2],[2,2,3,2],[1,1,0,2]],[[1,2,0,1],[0,3,2,2],[2,2,3,3],[1,1,0,1]],[[1,2,0,1],[0,3,2,2],[2,2,4,2],[1,1,0,1]],[[1,2,0,1],[0,3,2,3],[2,2,3,2],[1,1,0,1]],[[1,2,0,2],[0,3,2,2],[2,2,3,2],[1,1,0,1]],[[1,1,3,1],[0,3,2,2],[2,3,2,1],[1,0,1,1]],[[1,1,2,2],[0,3,2,2],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[0,3,2,3],[2,3,2,1],[1,0,1,1]],[[1,1,3,1],[0,3,2,2],[2,3,2,1],[1,0,2,0]],[[1,1,2,2],[0,3,2,2],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[0,3,2,3],[2,3,2,1],[1,0,2,0]],[[1,1,3,1],[0,3,2,2],[2,3,2,1],[1,1,0,1]],[[1,1,2,2],[0,3,2,2],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[0,3,2,3],[2,3,2,1],[1,1,0,1]],[[1,1,3,1],[0,3,2,2],[2,3,2,1],[1,1,1,0]],[[1,1,2,2],[0,3,2,2],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[0,3,2,3],[2,3,2,1],[1,1,1,0]],[[1,2,0,1],[0,3,2,2],[2,2,3,2],[1,0,3,0]],[[1,2,0,1],[0,3,2,2],[2,2,3,3],[1,0,2,0]],[[1,1,3,1],[0,3,2,2],[2,3,2,1],[1,2,0,0]],[[1,1,2,2],[0,3,2,2],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[0,3,2,3],[2,3,2,1],[1,2,0,0]],[[1,2,0,1],[0,3,2,2],[2,2,4,2],[1,0,2,0]],[[1,2,0,1],[0,3,2,3],[2,2,3,2],[1,0,2,0]],[[1,2,0,2],[0,3,2,2],[2,2,3,2],[1,0,2,0]],[[1,2,0,1],[0,3,2,2],[2,2,3,2],[1,0,1,2]],[[1,2,0,1],[0,3,2,2],[2,2,3,3],[1,0,1,1]],[[1,2,0,1],[0,3,2,2],[2,2,4,2],[1,0,1,1]],[[1,2,0,1],[0,3,2,3],[2,2,3,2],[1,0,1,1]],[[1,2,0,2],[0,3,2,2],[2,2,3,2],[1,0,1,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,3],[0,2,1,0]],[[1,2,0,1],[0,3,2,2],[2,2,4,2],[0,2,1,0]],[[1,2,0,1],[0,3,2,3],[2,2,3,2],[0,2,1,0]],[[1,1,3,1],[0,3,2,2],[2,3,2,2],[0,0,1,1]],[[1,1,2,2],[0,3,2,2],[2,3,2,2],[0,0,1,1]],[[1,1,2,1],[0,3,2,3],[2,3,2,2],[0,0,1,1]],[[1,1,2,1],[0,3,2,2],[2,3,2,3],[0,0,1,1]],[[1,1,2,1],[0,3,2,2],[2,3,2,2],[0,0,1,2]],[[1,1,3,1],[0,3,2,2],[2,3,2,2],[0,0,2,0]],[[1,1,2,2],[0,3,2,2],[2,3,2,2],[0,0,2,0]],[[1,1,2,1],[0,3,2,3],[2,3,2,2],[0,0,2,0]],[[1,1,2,1],[0,3,2,2],[2,3,2,3],[0,0,2,0]],[[1,2,0,2],[0,3,2,2],[2,2,3,2],[0,2,1,0]],[[1,2,0,1],[0,3,2,2],[2,2,3,2],[0,2,0,2]],[[1,2,0,1],[0,3,2,2],[2,2,3,3],[0,2,0,1]],[[1,2,0,1],[0,3,2,2],[2,2,4,2],[0,2,0,1]],[[1,2,0,1],[0,3,2,3],[2,2,3,2],[0,2,0,1]],[[1,2,0,2],[0,3,2,2],[2,2,3,2],[0,2,0,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,2],[0,1,3,0]],[[1,2,0,1],[0,3,2,2],[2,2,3,3],[0,1,2,0]],[[1,2,0,1],[0,3,2,2],[2,2,4,2],[0,1,2,0]],[[1,2,0,1],[0,3,2,3],[2,2,3,2],[0,1,2,0]],[[1,2,0,2],[0,3,2,2],[2,2,3,2],[0,1,2,0]],[[1,2,0,1],[0,3,2,2],[2,2,3,2],[0,1,1,2]],[[1,2,0,1],[0,3,2,2],[2,2,3,3],[0,1,1,1]],[[1,2,0,1],[0,3,2,2],[2,2,4,2],[0,1,1,1]],[[1,2,0,1],[0,3,2,3],[2,2,3,2],[0,1,1,1]],[[1,2,0,2],[0,3,2,2],[2,2,3,2],[0,1,1,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,2],[0,0,2,2]],[[1,2,0,1],[0,3,2,2],[2,2,3,3],[0,0,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,4,2],[0,0,2,1]],[[1,2,0,1],[0,3,2,3],[2,2,3,2],[0,0,2,1]],[[1,2,0,2],[0,3,2,2],[2,2,3,2],[0,0,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[0,3,2,2],[2,2,3,1],[2,2,1,0]],[[1,2,0,1],[0,3,2,2],[3,2,3,1],[1,2,1,0]],[[1,2,0,1],[0,3,2,2],[2,2,3,1],[1,3,0,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,1],[2,2,0,1]],[[1,2,0,1],[0,3,2,2],[3,2,3,1],[1,2,0,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,1],[1,0,2,2]],[[1,2,0,1],[0,3,2,2],[2,2,3,1],[1,0,3,1]],[[1,2,0,1],[0,3,2,2],[2,2,4,1],[1,0,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,1],[0,2,3,0]],[[1,2,0,1],[0,3,2,2],[2,2,3,1],[0,3,2,0]],[[1,2,0,1],[0,3,2,2],[2,2,4,1],[0,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,2,3,1],[0,1,2,2]],[[1,2,0,1],[0,3,2,2],[2,2,3,1],[0,1,3,1]],[[1,2,0,1],[0,3,2,2],[2,2,4,1],[0,1,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,0],[1,3,1,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,0],[2,2,1,1]],[[1,2,0,1],[0,3,2,2],[3,2,3,0],[1,2,1,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,0],[0,2,2,2]],[[1,2,0,1],[0,3,2,2],[2,2,3,0],[0,2,3,1]],[[1,2,0,1],[0,3,2,2],[2,2,3,0],[0,3,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,4,0],[0,2,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,2,2],[1,0,2,2]],[[1,2,0,1],[0,3,2,2],[2,2,2,2],[1,0,3,1]],[[1,2,0,1],[0,3,2,2],[2,2,2,3],[1,0,2,1]],[[1,2,0,1],[0,3,2,3],[2,2,2,2],[1,0,2,1]],[[1,2,0,2],[0,3,2,2],[2,2,2,2],[1,0,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,2,2],[0,1,2,2]],[[1,2,0,1],[0,3,2,2],[2,2,2,2],[0,1,3,1]],[[1,2,0,1],[0,3,2,2],[2,2,2,3],[0,1,2,1]],[[1,2,0,1],[0,3,2,3],[2,2,2,2],[0,1,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,3,0],[0,0,2,1]],[[1,1,2,2],[0,3,2,2],[2,3,3,0],[0,0,2,1]],[[1,1,2,1],[0,3,2,3],[2,3,3,0],[0,0,2,1]],[[1,2,0,2],[0,3,2,2],[2,2,2,2],[0,1,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,0,1],[0,3,2,2],[2,2,2,1],[1,3,2,0]],[[1,2,0,1],[0,3,2,2],[2,2,2,1],[2,2,2,0]],[[1,2,0,1],[0,3,2,2],[3,2,2,1],[1,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,2,2,0],[1,2,2,2]],[[1,2,0,1],[0,3,2,2],[2,2,2,0],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[2,2,2,0],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,2,0],[2,2,2,1]],[[1,2,0,1],[0,3,2,2],[3,2,2,0],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,0,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,2],[2,2,0,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[2,2,0,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,0,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,2],[2,2,0,3],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[3,2,0,2],[1,2,2,1]],[[1,2,0,1],[0,3,2,3],[2,2,0,2],[1,2,2,1]],[[1,2,0,2],[0,3,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,3,1],[0,0,1,1]],[[1,1,2,2],[0,3,2,2],[2,3,3,1],[0,0,1,1]],[[1,1,2,1],[0,3,2,3],[2,3,3,1],[0,0,1,1]],[[1,1,3,1],[0,3,2,2],[2,3,3,1],[0,0,2,0]],[[1,1,2,2],[0,3,2,2],[2,3,3,1],[0,0,2,0]],[[1,1,2,1],[0,3,2,3],[2,3,3,1],[0,0,2,0]],[[1,1,3,1],[0,3,2,2],[2,3,3,1],[0,2,0,0]],[[1,1,2,2],[0,3,2,2],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[0,3,2,3],[2,3,3,1],[0,2,0,0]],[[1,2,0,1],[0,3,2,2],[2,1,3,2],[0,2,3,0]],[[1,2,0,1],[0,3,2,2],[2,1,3,2],[0,3,2,0]],[[1,2,0,1],[0,3,2,2],[2,1,3,3],[0,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,1,4,2],[0,2,2,0]],[[1,2,0,1],[0,3,2,3],[2,1,3,2],[0,2,2,0]],[[1,2,0,2],[0,3,2,2],[2,1,3,2],[0,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,1,3,2],[0,2,1,2]],[[1,2,0,1],[0,3,2,2],[2,1,3,3],[0,2,1,1]],[[1,2,0,1],[0,3,2,2],[2,1,4,2],[0,2,1,1]],[[1,2,0,1],[0,3,2,3],[2,1,3,2],[0,2,1,1]],[[1,2,0,2],[0,3,2,2],[2,1,3,2],[0,2,1,1]],[[1,2,0,1],[0,3,2,2],[2,1,3,1],[1,2,3,0]],[[1,2,0,1],[0,3,2,2],[2,1,3,1],[1,3,2,0]],[[1,2,0,1],[0,3,2,2],[2,1,3,1],[2,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,1,4,1],[1,2,2,0]],[[1,2,0,1],[0,3,2,2],[3,1,3,1],[1,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,1,3,1],[0,2,2,2]],[[1,2,0,1],[0,3,2,2],[2,1,3,1],[0,2,3,1]],[[1,2,0,1],[0,3,2,2],[2,1,3,1],[0,3,2,1]],[[1,2,0,1],[0,3,2,2],[2,1,4,1],[0,2,2,1]],[[1,2,0,1],[0,3,2,2],[2,1,3,0],[1,2,2,2]],[[1,2,0,1],[0,3,2,2],[2,1,3,0],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[2,1,3,0],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[2,1,3,0],[2,2,2,1]],[[1,2,0,1],[0,3,2,2],[2,1,4,0],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[3,1,3,0],[1,2,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,3,1],[1,1,0,0]],[[1,1,2,2],[0,3,2,2],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[0,3,2,3],[2,3,3,1],[1,1,0,0]],[[1,2,0,1],[0,3,2,2],[2,1,2,2],[0,2,2,2]],[[1,2,0,1],[0,3,2,2],[2,1,2,2],[0,2,3,1]],[[1,2,0,1],[0,3,2,2],[2,1,2,2],[0,3,2,1]],[[1,2,0,1],[0,3,2,2],[2,1,2,3],[0,2,2,1]],[[1,2,0,1],[0,3,2,3],[2,1,2,2],[0,2,2,1]],[[1,2,0,2],[0,3,2,2],[2,1,2,2],[0,2,2,1]],[[1,2,0,1],[0,3,2,2],[2,0,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,2,2],[2,0,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,2,2],[2,0,3,2],[2,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,0,3,3],[1,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,0,4,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,2],[3,0,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,3],[2,0,3,2],[1,2,2,0]],[[1,2,0,2],[0,3,2,2],[2,0,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,2],[2,0,3,2],[1,2,1,2]],[[1,2,0,1],[0,3,2,2],[2,0,3,3],[1,2,1,1]],[[1,2,0,1],[0,3,2,2],[2,0,4,2],[1,2,1,1]],[[1,2,0,1],[0,3,2,3],[2,0,3,2],[1,2,1,1]],[[1,2,0,2],[0,3,2,2],[2,0,3,2],[1,2,1,1]],[[1,2,0,1],[0,3,2,2],[2,0,3,2],[0,2,2,2]],[[1,2,0,1],[0,3,2,2],[2,0,3,2],[0,2,3,1]],[[1,2,0,1],[0,3,2,2],[2,0,3,3],[0,2,2,1]],[[1,2,0,1],[0,3,2,3],[2,0,3,2],[0,2,2,1]],[[1,2,0,2],[0,3,2,2],[2,0,3,2],[0,2,2,1]],[[1,2,0,1],[0,3,2,2],[2,0,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,2,2],[2,0,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[2,0,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[2,0,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,2,2],[2,0,4,1],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[3,0,3,1],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[2,0,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,2],[2,0,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[2,0,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[2,0,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,2],[2,0,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[3,0,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,2,3],[2,0,2,2],[1,2,2,1]],[[1,2,0,2],[0,3,2,2],[2,0,2,2],[1,2,2,1]],[[1,1,3,1],[0,3,2,2],[2,3,3,2],[0,0,0,1]],[[1,1,2,2],[0,3,2,2],[2,3,3,2],[0,0,0,1]],[[1,1,2,1],[0,3,2,3],[2,3,3,2],[0,0,0,1]],[[1,1,2,1],[0,3,2,2],[2,3,3,3],[0,0,0,1]],[[1,2,0,1],[0,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[0,3,2,2],[1,3,3,1],[2,2,1,0]],[[1,2,0,1],[0,3,2,2],[1,3,4,1],[1,2,1,0]],[[1,2,0,1],[0,3,2,2],[1,4,3,1],[1,2,1,0]],[[1,2,0,1],[0,4,2,2],[1,3,3,1],[1,2,1,0]],[[1,3,0,1],[0,3,2,2],[1,3,3,1],[1,2,1,0]],[[2,2,0,1],[0,3,2,2],[1,3,3,1],[1,2,1,0]],[[1,2,0,1],[0,3,2,2],[1,3,3,1],[1,3,0,1]],[[1,2,0,1],[0,3,2,2],[1,3,3,1],[2,2,0,1]],[[1,2,0,1],[0,3,2,2],[1,3,4,1],[1,2,0,1]],[[1,2,0,1],[0,3,2,2],[1,4,3,1],[1,2,0,1]],[[1,2,0,1],[0,4,2,2],[1,3,3,1],[1,2,0,1]],[[1,3,0,1],[0,3,2,2],[1,3,3,1],[1,2,0,1]],[[2,2,0,1],[0,3,2,2],[1,3,3,1],[1,2,0,1]],[[1,2,0,1],[0,3,2,2],[1,3,3,1],[1,1,3,0]],[[1,2,0,1],[0,3,2,2],[1,3,4,1],[1,1,2,0]],[[1,2,0,1],[0,3,2,2],[1,4,3,1],[1,1,2,0]],[[1,2,0,1],[0,4,2,2],[1,3,3,1],[1,1,2,0]],[[1,3,0,1],[0,3,2,2],[1,3,3,1],[1,1,2,0]],[[2,2,0,1],[0,3,2,2],[1,3,3,1],[1,1,2,0]],[[1,2,0,1],[0,3,2,2],[1,3,4,1],[1,1,1,1]],[[1,2,0,1],[0,3,2,2],[1,4,3,1],[1,1,1,1]],[[1,2,0,1],[0,4,2,2],[1,3,3,1],[1,1,1,1]],[[1,3,0,1],[0,3,2,2],[1,3,3,1],[1,1,1,1]],[[2,2,0,1],[0,3,2,2],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[0,3,2,2],[1,3,3,0],[1,3,1,1]],[[1,2,0,1],[0,3,2,2],[1,3,3,0],[2,2,1,1]],[[1,2,0,1],[0,3,2,2],[1,3,4,0],[1,2,1,1]],[[1,2,0,1],[0,3,2,2],[1,4,3,0],[1,2,1,1]],[[1,2,0,1],[0,4,2,2],[1,3,3,0],[1,2,1,1]],[[1,3,0,1],[0,3,2,2],[1,3,3,0],[1,2,1,1]],[[2,2,0,1],[0,3,2,2],[1,3,3,0],[1,2,1,1]],[[1,2,0,1],[0,3,2,2],[1,3,3,0],[1,1,2,2]],[[1,2,0,1],[0,3,2,2],[1,3,3,0],[1,1,3,1]],[[1,2,0,1],[0,3,2,2],[1,3,4,0],[1,1,2,1]],[[1,2,0,1],[0,3,2,2],[1,4,3,0],[1,1,2,1]],[[1,2,0,1],[0,4,2,2],[1,3,3,0],[1,1,2,1]],[[1,3,0,1],[0,3,2,2],[1,3,3,0],[1,1,2,1]],[[2,2,0,1],[0,3,2,2],[1,3,3,0],[1,1,2,1]],[[1,2,0,1],[0,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,0,1],[0,3,2,2],[1,3,2,1],[1,3,2,0]],[[1,2,0,1],[0,3,2,2],[1,3,2,1],[2,2,2,0]],[[1,2,0,1],[0,3,2,2],[1,4,2,1],[1,2,2,0]],[[1,2,0,1],[0,4,2,2],[1,3,2,1],[1,2,2,0]],[[1,3,0,1],[0,3,2,2],[1,3,2,1],[1,2,2,0]],[[2,2,0,1],[0,3,2,2],[1,3,2,1],[1,2,2,0]],[[1,2,0,1],[0,3,2,2],[1,3,2,0],[1,2,2,2]],[[1,2,0,1],[0,3,2,2],[1,3,2,0],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[1,3,2,0],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[1,3,2,0],[2,2,2,1]],[[1,2,0,1],[0,3,2,2],[1,4,2,0],[1,2,2,1]],[[1,2,0,1],[0,4,2,2],[1,3,2,0],[1,2,2,1]],[[1,3,0,1],[0,3,2,2],[1,3,2,0],[1,2,2,1]],[[2,2,0,1],[0,3,2,2],[1,3,2,0],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[1,3,0,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,2],[1,3,0,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[1,3,0,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[1,3,0,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,2],[1,3,0,3],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[1,4,0,2],[1,2,2,1]],[[1,2,0,1],[0,3,2,3],[1,3,0,2],[1,2,2,1]],[[1,2,0,1],[0,4,2,2],[1,3,0,2],[1,2,2,1]],[[1,2,0,2],[0,3,2,2],[1,3,0,2],[1,2,2,1]],[[1,3,0,1],[0,3,2,2],[1,3,0,2],[1,2,2,1]],[[2,2,0,1],[0,3,2,2],[1,3,0,2],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[1,2,3,3],[1,2,1,0]],[[1,2,0,1],[0,3,2,2],[1,2,4,2],[1,2,1,0]],[[1,2,0,1],[0,3,2,3],[1,2,3,2],[1,2,1,0]],[[1,2,0,2],[0,3,2,2],[1,2,3,2],[1,2,1,0]],[[1,2,0,1],[0,3,2,2],[1,2,3,2],[1,2,0,2]],[[1,2,0,1],[0,3,2,2],[1,2,3,3],[1,2,0,1]],[[1,2,0,1],[0,3,2,2],[1,2,4,2],[1,2,0,1]],[[1,2,0,1],[0,3,2,3],[1,2,3,2],[1,2,0,1]],[[1,2,0,2],[0,3,2,2],[1,2,3,2],[1,2,0,1]],[[1,2,0,1],[0,3,2,2],[1,2,3,2],[1,1,3,0]],[[1,2,0,1],[0,3,2,2],[1,2,3,3],[1,1,2,0]],[[1,2,0,1],[0,3,2,2],[1,2,4,2],[1,1,2,0]],[[1,2,0,1],[0,3,2,3],[1,2,3,2],[1,1,2,0]],[[1,2,0,2],[0,3,2,2],[1,2,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,2,2],[1,2,3,2],[1,1,1,2]],[[1,2,0,1],[0,3,2,2],[1,2,3,3],[1,1,1,1]],[[1,2,0,1],[0,3,2,2],[1,2,4,2],[1,1,1,1]],[[1,2,0,1],[0,3,2,3],[1,2,3,2],[1,1,1,1]],[[1,2,0,2],[0,3,2,2],[1,2,3,2],[1,1,1,1]],[[1,2,0,1],[0,3,2,2],[1,2,3,2],[1,0,2,2]],[[1,2,0,1],[0,3,2,2],[1,2,3,3],[1,0,2,1]],[[1,2,0,1],[0,3,2,2],[1,2,4,2],[1,0,2,1]],[[1,2,0,1],[0,3,2,3],[1,2,3,2],[1,0,2,1]],[[1,2,0,2],[0,3,2,2],[1,2,3,2],[1,0,2,1]],[[1,2,0,1],[0,3,2,2],[1,2,3,1],[1,2,3,0]],[[1,2,0,1],[0,3,2,2],[1,2,3,1],[1,3,2,0]],[[1,2,0,1],[0,3,2,2],[1,2,3,1],[2,2,2,0]],[[1,2,0,1],[0,3,2,2],[1,2,4,1],[1,2,2,0]],[[1,2,0,1],[0,3,2,2],[1,2,3,1],[1,1,2,2]],[[1,2,0,1],[0,3,2,2],[1,2,3,1],[1,1,3,1]],[[1,2,0,1],[0,3,2,2],[1,2,4,1],[1,1,2,1]],[[1,2,0,1],[0,3,2,2],[1,2,3,0],[1,2,2,2]],[[1,2,0,1],[0,3,2,2],[1,2,3,0],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[1,2,3,0],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[1,2,3,0],[2,2,2,1]],[[1,2,0,1],[0,3,2,2],[1,2,4,0],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[1,2,2,2],[1,1,2,2]],[[1,2,0,1],[0,3,2,2],[1,2,2,2],[1,1,3,1]],[[1,2,0,1],[0,3,2,2],[1,2,2,3],[1,1,2,1]],[[1,2,0,1],[0,3,2,3],[1,2,2,2],[1,1,2,1]],[[1,2,0,2],[0,3,2,2],[1,2,2,2],[1,1,2,1]],[[1,2,0,1],[0,3,2,2],[1,1,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,2,2],[1,1,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,2,2],[1,1,3,2],[2,2,2,0]],[[1,2,0,1],[0,3,2,2],[1,1,3,3],[1,2,2,0]],[[1,2,0,1],[0,3,2,2],[1,1,4,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,3],[1,1,3,2],[1,2,2,0]],[[1,2,0,2],[0,3,2,2],[1,1,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,2],[1,1,3,2],[1,2,1,2]],[[1,1,2,1],[0,3,3,0],[1,0,3,3],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,0,3,2],[1,2,3,1]],[[1,1,2,1],[0,3,3,0],[1,0,3,2],[1,2,2,2]],[[1,1,2,1],[0,3,3,0],[1,1,2,3],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,1,2,2],[2,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,1,2,2],[1,3,2,1]],[[1,1,2,1],[0,3,3,0],[1,1,2,2],[1,2,3,1]],[[1,1,2,1],[0,3,3,0],[1,1,2,2],[1,2,2,2]],[[1,1,3,1],[0,3,3,0],[1,1,3,1],[1,2,2,1]],[[1,1,2,2],[0,3,3,0],[1,1,3,1],[1,2,2,1]],[[1,1,2,1],[0,4,3,0],[1,1,3,1],[1,2,2,1]],[[1,1,2,1],[0,3,4,0],[1,1,3,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,1,4,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,1,3,1],[2,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,1,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,3,0],[1,1,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,3,0],[1,1,3,1],[1,2,2,2]],[[1,1,3,1],[0,3,3,0],[1,1,3,2],[1,2,1,1]],[[1,1,2,2],[0,3,3,0],[1,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,4,3,0],[1,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,4,0],[1,1,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,3,0],[1,1,4,2],[1,2,1,1]],[[1,1,2,1],[0,3,3,0],[1,1,3,3],[1,2,1,1]],[[1,1,2,1],[0,3,3,0],[1,1,3,2],[1,2,1,2]],[[1,1,3,1],[0,3,3,0],[1,1,3,2],[1,2,2,0]],[[1,1,2,2],[0,3,3,0],[1,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,4,3,0],[1,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,4,0],[1,1,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,0],[1,1,4,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,0],[1,1,3,3],[1,2,2,0]],[[1,1,2,1],[0,3,3,0],[1,1,3,2],[2,2,2,0]],[[1,1,2,1],[0,3,3,0],[1,1,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,3,0],[1,1,3,2],[1,2,3,0]],[[1,1,2,1],[0,3,3,0],[1,2,2,3],[1,1,2,1]],[[1,1,2,1],[0,3,3,0],[1,2,2,2],[1,1,3,1]],[[1,1,2,1],[0,3,3,0],[1,2,2,2],[1,1,2,2]],[[1,1,3,1],[0,3,3,0],[1,2,3,1],[1,1,2,1]],[[1,1,2,2],[0,3,3,0],[1,2,3,1],[1,1,2,1]],[[1,1,2,1],[0,4,3,0],[1,2,3,1],[1,1,2,1]],[[1,1,2,1],[0,3,4,0],[1,2,3,1],[1,1,2,1]],[[1,1,2,1],[0,3,3,0],[1,2,4,1],[1,1,2,1]],[[1,1,2,1],[0,3,3,0],[1,2,3,1],[1,1,3,1]],[[1,1,2,1],[0,3,3,0],[1,2,3,1],[1,1,2,2]],[[1,1,3,1],[0,3,3,0],[1,2,3,1],[1,2,1,1]],[[1,1,2,2],[0,3,3,0],[1,2,3,1],[1,2,1,1]],[[1,1,2,1],[0,4,3,0],[1,2,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,4,0],[1,2,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,3,0],[1,2,4,1],[1,2,1,1]],[[1,1,3,1],[0,3,3,0],[1,2,3,2],[1,0,2,1]],[[1,1,2,2],[0,3,3,0],[1,2,3,2],[1,0,2,1]],[[1,1,2,1],[0,3,4,0],[1,2,3,2],[1,0,2,1]],[[1,1,2,1],[0,3,3,0],[1,2,4,2],[1,0,2,1]],[[1,1,2,1],[0,3,3,0],[1,2,3,3],[1,0,2,1]],[[1,1,2,1],[0,3,3,0],[1,2,3,2],[1,0,2,2]],[[1,1,3,1],[0,3,3,0],[1,2,3,2],[1,1,1,1]],[[1,1,2,2],[0,3,3,0],[1,2,3,2],[1,1,1,1]],[[1,1,2,1],[0,4,3,0],[1,2,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,4,0],[1,2,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,3,0],[1,2,4,2],[1,1,1,1]],[[1,1,2,1],[0,3,3,0],[1,2,3,3],[1,1,1,1]],[[1,1,2,1],[0,3,3,0],[1,2,3,2],[1,1,1,2]],[[1,1,3,1],[0,3,3,0],[1,2,3,2],[1,1,2,0]],[[1,1,2,2],[0,3,3,0],[1,2,3,2],[1,1,2,0]],[[1,1,2,1],[0,4,3,0],[1,2,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,4,0],[1,2,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,0],[1,2,4,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,0],[1,2,3,3],[1,1,2,0]],[[1,1,2,1],[0,3,3,0],[1,2,3,2],[1,1,3,0]],[[1,1,3,1],[0,3,3,0],[1,2,3,2],[1,2,0,1]],[[1,1,2,2],[0,3,3,0],[1,2,3,2],[1,2,0,1]],[[1,1,2,1],[0,4,3,0],[1,2,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,4,0],[1,2,3,2],[1,2,0,1]],[[1,1,2,1],[0,3,3,0],[1,2,4,2],[1,2,0,1]],[[1,1,2,1],[0,3,3,0],[1,2,3,3],[1,2,0,1]],[[1,1,2,1],[0,3,3,0],[1,2,3,2],[1,2,0,2]],[[1,1,3,1],[0,3,3,0],[1,2,3,2],[1,2,1,0]],[[1,1,2,2],[0,3,3,0],[1,2,3,2],[1,2,1,0]],[[1,1,2,1],[0,4,3,0],[1,2,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,4,0],[1,2,3,2],[1,2,1,0]],[[1,1,2,1],[0,3,3,0],[1,2,4,2],[1,2,1,0]],[[1,1,2,1],[0,3,3,0],[1,2,3,3],[1,2,1,0]],[[1,2,0,1],[0,3,2,2],[1,1,3,3],[1,2,1,1]],[[1,2,0,1],[0,3,2,2],[1,1,4,2],[1,2,1,1]],[[1,2,0,1],[0,3,2,3],[1,1,3,2],[1,2,1,1]],[[1,2,0,2],[0,3,2,2],[1,1,3,2],[1,2,1,1]],[[1,2,0,1],[0,3,2,2],[1,1,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,2,2],[1,1,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[1,1,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[1,1,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,2,2],[1,1,4,1],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[1,1,2,2],[1,2,2,2]],[[1,1,3,1],[0,3,3,0],[1,3,0,2],[1,2,2,1]],[[1,1,2,2],[0,3,3,0],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,4,3,0],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,4,0],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,4,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,3,0,3],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,3,0,2],[2,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,3,0,2],[1,3,2,1]],[[1,1,2,1],[0,3,3,0],[1,3,0,2],[1,2,3,1]],[[1,1,2,1],[0,3,3,0],[1,3,0,2],[1,2,2,2]],[[1,1,3,1],[0,3,3,0],[1,3,1,1],[1,2,2,1]],[[1,1,2,2],[0,3,3,0],[1,3,1,1],[1,2,2,1]],[[1,1,2,1],[0,4,3,0],[1,3,1,1],[1,2,2,1]],[[1,1,2,1],[0,3,4,0],[1,3,1,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,4,1,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,3,1,1],[2,2,2,1]],[[1,1,2,1],[0,3,3,0],[1,3,1,1],[1,3,2,1]],[[1,1,2,1],[0,3,3,0],[1,3,1,1],[1,2,3,1]],[[1,1,2,1],[0,3,3,0],[1,3,1,1],[1,2,2,2]],[[1,1,3,1],[0,3,3,0],[1,3,1,2],[1,2,2,0]],[[1,1,2,2],[0,3,3,0],[1,3,1,2],[1,2,2,0]],[[1,1,2,1],[0,4,3,0],[1,3,1,2],[1,2,2,0]],[[1,1,2,1],[0,3,4,0],[1,3,1,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,0],[1,4,1,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,0],[1,3,1,2],[2,2,2,0]],[[1,1,2,1],[0,3,3,0],[1,3,1,2],[1,3,2,0]],[[1,1,2,1],[0,3,3,0],[1,3,1,2],[1,2,3,0]],[[1,1,3,1],[0,3,3,0],[1,3,2,1],[1,1,2,1]],[[1,1,2,2],[0,3,3,0],[1,3,2,1],[1,1,2,1]],[[1,1,2,1],[0,4,3,0],[1,3,2,1],[1,1,2,1]],[[1,1,2,1],[0,3,4,0],[1,3,2,1],[1,1,2,1]],[[1,1,2,1],[0,3,3,0],[1,4,2,1],[1,1,2,1]],[[1,1,3,1],[0,3,3,0],[1,3,2,1],[1,2,1,1]],[[1,1,2,2],[0,3,3,0],[1,3,2,1],[1,2,1,1]],[[1,1,2,1],[0,4,3,0],[1,3,2,1],[1,2,1,1]],[[1,1,2,1],[0,3,4,0],[1,3,2,1],[1,2,1,1]],[[1,1,2,1],[0,3,3,0],[1,4,2,1],[1,2,1,1]],[[1,1,2,1],[0,3,3,0],[1,3,2,1],[2,2,1,1]],[[1,1,2,1],[0,3,3,0],[1,3,2,1],[1,3,1,1]],[[1,1,3,1],[0,3,3,0],[1,3,2,2],[1,1,1,1]],[[1,1,2,2],[0,3,3,0],[1,3,2,2],[1,1,1,1]],[[1,1,2,1],[0,4,3,0],[1,3,2,2],[1,1,1,1]],[[1,1,2,1],[0,3,4,0],[1,3,2,2],[1,1,1,1]],[[1,1,2,1],[0,3,3,0],[1,4,2,2],[1,1,1,1]],[[1,1,3,1],[0,3,3,0],[1,3,2,2],[1,1,2,0]],[[1,1,2,2],[0,3,3,0],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,4,3,0],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,3,4,0],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,0],[1,4,2,2],[1,1,2,0]],[[1,1,3,1],[0,3,3,0],[1,3,2,2],[1,2,0,1]],[[1,1,2,2],[0,3,3,0],[1,3,2,2],[1,2,0,1]],[[1,1,2,1],[0,4,3,0],[1,3,2,2],[1,2,0,1]],[[1,1,2,1],[0,3,4,0],[1,3,2,2],[1,2,0,1]],[[1,1,2,1],[0,3,3,0],[1,4,2,2],[1,2,0,1]],[[1,1,2,1],[0,3,3,0],[1,3,2,2],[2,2,0,1]],[[1,1,2,1],[0,3,3,0],[1,3,2,2],[1,3,0,1]],[[1,1,3,1],[0,3,3,0],[1,3,2,2],[1,2,1,0]],[[1,1,2,2],[0,3,3,0],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[0,4,3,0],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[0,3,4,0],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[0,3,3,0],[1,4,2,2],[1,2,1,0]],[[1,1,2,1],[0,3,3,0],[1,3,2,2],[2,2,1,0]],[[1,1,2,1],[0,3,3,0],[1,3,2,2],[1,3,1,0]],[[1,2,0,1],[0,3,2,2],[1,1,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[1,1,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[1,1,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,2],[1,1,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,2,3],[1,1,2,2],[1,2,2,1]],[[1,2,0,2],[0,3,2,2],[1,1,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[1,0,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,2],[1,0,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[1,0,3,3],[1,2,2,1]],[[1,2,0,1],[0,3,2,3],[1,0,3,2],[1,2,2,1]],[[1,2,0,2],[0,3,2,2],[1,0,3,2],[1,2,2,1]],[[1,2,0,1],[0,3,2,2],[0,3,3,1],[1,2,3,0]],[[1,2,0,1],[0,3,2,2],[0,3,3,1],[1,3,2,0]],[[1,2,0,1],[0,3,2,2],[0,3,4,1],[1,2,2,0]],[[1,1,3,1],[0,3,3,0],[1,3,3,2],[1,2,0,0]],[[1,1,2,2],[0,3,3,0],[1,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,4,3,0],[1,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,3,4,0],[1,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,3,3,0],[1,4,3,2],[1,2,0,0]],[[1,2,0,1],[0,3,2,2],[0,3,3,0],[1,2,2,2]],[[1,2,0,1],[0,3,2,2],[0,3,3,0],[1,2,3,1]],[[1,2,0,1],[0,3,2,2],[0,3,3,0],[1,3,2,1]],[[1,2,0,1],[0,3,2,2],[0,3,4,0],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[3,0,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,0,2,3],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,0,2,2],[2,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,0,2,2],[1,3,2,1]],[[1,1,2,1],[0,3,3,0],[2,0,2,2],[1,2,3,1]],[[1,1,2,1],[0,3,3,0],[2,0,2,2],[1,2,2,2]],[[1,1,3,1],[0,3,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,2,2],[0,3,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[0,4,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[0,3,4,0],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[3,0,3,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,0,4,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,0,3,1],[2,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,0,3,1],[1,3,2,1]],[[1,1,2,1],[0,3,3,0],[2,0,3,1],[1,2,3,1]],[[1,1,2,1],[0,3,3,0],[2,0,3,1],[1,2,2,2]],[[1,1,2,1],[0,3,3,0],[2,0,3,3],[0,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,0,3,2],[0,2,3,1]],[[1,1,2,1],[0,3,3,0],[2,0,3,2],[0,2,2,2]],[[1,1,3,1],[0,3,3,0],[2,0,3,2],[1,2,1,1]],[[1,1,2,2],[0,3,3,0],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[0,4,3,0],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,4,0],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,3,0],[2,0,4,2],[1,2,1,1]],[[1,1,2,1],[0,3,3,0],[2,0,3,3],[1,2,1,1]],[[1,1,2,1],[0,3,3,0],[2,0,3,2],[1,2,1,2]],[[1,1,3,1],[0,3,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,2,2],[0,3,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[0,4,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,4,0],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,0],[3,0,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,0,4,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,0,3,3],[1,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,0,3,2],[2,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,0,3,2],[1,3,2,0]],[[1,1,2,1],[0,3,3,0],[2,0,3,2],[1,2,3,0]],[[1,1,2,1],[0,3,3,0],[2,1,2,3],[0,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,1,2,2],[0,3,2,1]],[[1,1,2,1],[0,3,3,0],[2,1,2,2],[0,2,3,1]],[[1,1,2,1],[0,3,3,0],[2,1,2,2],[0,2,2,2]],[[1,1,3,1],[0,3,3,0],[2,1,3,1],[0,2,2,1]],[[1,1,2,2],[0,3,3,0],[2,1,3,1],[0,2,2,1]],[[1,1,2,1],[0,4,3,0],[2,1,3,1],[0,2,2,1]],[[1,1,2,1],[0,3,4,0],[2,1,3,1],[0,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,1,4,1],[0,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,1,3,1],[0,3,2,1]],[[1,1,2,1],[0,3,3,0],[2,1,3,1],[0,2,3,1]],[[1,1,2,1],[0,3,3,0],[2,1,3,1],[0,2,2,2]],[[1,1,3,1],[0,3,3,0],[2,1,3,2],[0,2,1,1]],[[1,1,2,2],[0,3,3,0],[2,1,3,2],[0,2,1,1]],[[1,1,2,1],[0,4,3,0],[2,1,3,2],[0,2,1,1]],[[1,1,2,1],[0,3,4,0],[2,1,3,2],[0,2,1,1]],[[1,1,2,1],[0,3,3,0],[2,1,4,2],[0,2,1,1]],[[1,1,2,1],[0,3,3,0],[2,1,3,3],[0,2,1,1]],[[1,1,2,1],[0,3,3,0],[2,1,3,2],[0,2,1,2]],[[1,1,3,1],[0,3,3,0],[2,1,3,2],[0,2,2,0]],[[1,1,2,2],[0,3,3,0],[2,1,3,2],[0,2,2,0]],[[1,1,2,1],[0,4,3,0],[2,1,3,2],[0,2,2,0]],[[1,1,2,1],[0,3,4,0],[2,1,3,2],[0,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,1,4,2],[0,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,1,3,3],[0,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,1,3,2],[0,3,2,0]],[[1,1,2,1],[0,3,3,0],[2,1,3,2],[0,2,3,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[0,3,2,1],[2,4,3,2],[1,2,0,0]],[[1,2,0,1],[0,3,2,1],[3,3,3,2],[1,2,0,0]],[[1,2,0,1],[0,4,2,1],[2,3,3,2],[1,2,0,0]],[[1,3,0,1],[0,3,2,1],[2,3,3,2],[1,2,0,0]],[[2,2,0,1],[0,3,2,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[0,3,3,0],[3,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,0,3],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,0,2],[2,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,0,2],[1,3,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,0,2],[1,2,3,1]],[[1,1,2,1],[0,3,3,0],[2,2,0,2],[1,2,2,2]],[[1,1,2,1],[0,3,3,0],[3,2,1,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,1,1],[2,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,1,1],[1,3,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,1,1],[1,2,3,1]],[[1,1,2,1],[0,3,3,0],[2,2,1,1],[1,2,2,2]],[[1,1,2,1],[0,3,3,0],[3,2,1,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,2,1,2],[2,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,2,1,2],[1,3,2,0]],[[1,1,2,1],[0,3,3,0],[2,2,1,2],[1,2,3,0]],[[1,1,2,1],[0,3,3,0],[3,2,2,1],[1,2,1,1]],[[1,1,2,1],[0,3,3,0],[2,2,2,1],[2,2,1,1]],[[1,1,2,1],[0,3,3,0],[2,2,2,1],[1,3,1,1]],[[1,1,2,1],[0,3,3,0],[2,2,2,3],[0,1,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,2,2],[0,1,3,1]],[[1,1,2,1],[0,3,3,0],[2,2,2,2],[0,1,2,2]],[[1,1,2,1],[0,3,3,0],[2,2,2,3],[1,0,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,2,2],[1,0,3,1]],[[1,1,2,1],[0,3,3,0],[2,2,2,2],[1,0,2,2]],[[1,1,2,1],[0,3,3,0],[3,2,2,2],[1,2,0,1]],[[1,1,2,1],[0,3,3,0],[2,2,2,2],[2,2,0,1]],[[1,1,2,1],[0,3,3,0],[2,2,2,2],[1,3,0,1]],[[1,1,2,1],[0,3,3,0],[3,2,2,2],[1,2,1,0]],[[1,1,2,1],[0,3,3,0],[2,2,2,2],[2,2,1,0]],[[1,1,2,1],[0,3,3,0],[2,2,2,2],[1,3,1,0]],[[1,1,3,1],[0,3,3,0],[2,2,3,1],[0,1,2,1]],[[1,1,2,2],[0,3,3,0],[2,2,3,1],[0,1,2,1]],[[1,1,2,1],[0,4,3,0],[2,2,3,1],[0,1,2,1]],[[1,1,2,1],[0,3,4,0],[2,2,3,1],[0,1,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,4,1],[0,1,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,1],[0,1,3,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,1],[0,1,2,2]],[[1,1,3,1],[0,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,1,2,2],[0,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[0,4,3,0],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[0,3,4,0],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[0,3,3,0],[2,2,4,1],[0,2,1,1]],[[1,1,3,1],[0,3,3,0],[2,2,3,1],[1,0,2,1]],[[1,1,2,2],[0,3,3,0],[2,2,3,1],[1,0,2,1]],[[1,1,2,1],[0,4,3,0],[2,2,3,1],[1,0,2,1]],[[1,1,2,1],[0,3,4,0],[2,2,3,1],[1,0,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,4,1],[1,0,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,1],[1,0,3,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,1],[1,0,2,2]],[[1,1,3,1],[0,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,1,2,2],[0,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,1,2,1],[0,4,3,0],[2,2,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,4,0],[2,2,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,3,0],[2,2,4,1],[1,1,1,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,1,3,1],[0,3,3,0],[2,2,3,2],[0,0,2,1]],[[1,1,2,2],[0,3,3,0],[2,2,3,2],[0,0,2,1]],[[1,1,2,1],[0,4,3,0],[2,2,3,2],[0,0,2,1]],[[1,1,2,1],[0,3,4,0],[2,2,3,2],[0,0,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,4,2],[0,0,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,3],[0,0,2,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,2],[0,0,2,2]],[[1,1,3,1],[0,3,3,0],[2,2,3,2],[0,1,1,1]],[[1,1,2,2],[0,3,3,0],[2,2,3,2],[0,1,1,1]],[[1,1,2,1],[0,4,3,0],[2,2,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,4,0],[2,2,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,3,0],[2,2,4,2],[0,1,1,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,3],[0,1,1,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,2],[0,1,1,2]],[[1,1,3,1],[0,3,3,0],[2,2,3,2],[0,1,2,0]],[[1,1,2,2],[0,3,3,0],[2,2,3,2],[0,1,2,0]],[[1,1,2,1],[0,4,3,0],[2,2,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,4,0],[2,2,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,3,0],[2,2,4,2],[0,1,2,0]],[[1,1,2,1],[0,3,3,0],[2,2,3,3],[0,1,2,0]],[[1,1,2,1],[0,3,3,0],[2,2,3,2],[0,1,3,0]],[[1,1,3,1],[0,3,3,0],[2,2,3,2],[0,2,0,1]],[[1,1,2,2],[0,3,3,0],[2,2,3,2],[0,2,0,1]],[[1,1,2,1],[0,4,3,0],[2,2,3,2],[0,2,0,1]],[[1,1,2,1],[0,3,4,0],[2,2,3,2],[0,2,0,1]],[[1,1,2,1],[0,3,3,0],[2,2,4,2],[0,2,0,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,3],[0,2,0,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,2],[0,2,0,2]],[[1,1,3,1],[0,3,3,0],[2,2,3,2],[0,2,1,0]],[[1,1,2,2],[0,3,3,0],[2,2,3,2],[0,2,1,0]],[[1,1,2,1],[0,4,3,0],[2,2,3,2],[0,2,1,0]],[[1,1,2,1],[0,3,4,0],[2,2,3,2],[0,2,1,0]],[[1,1,2,1],[0,3,3,0],[2,2,4,2],[0,2,1,0]],[[1,1,2,1],[0,3,3,0],[2,2,3,3],[0,2,1,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,3],[1,1,1,0]],[[1,2,0,1],[0,3,2,1],[2,3,4,2],[1,1,1,0]],[[1,2,0,1],[0,3,2,1],[2,4,3,2],[1,1,1,0]],[[1,2,0,1],[0,3,2,1],[3,3,3,2],[1,1,1,0]],[[1,2,0,1],[0,4,2,1],[2,3,3,2],[1,1,1,0]],[[1,3,0,1],[0,3,2,1],[2,3,3,2],[1,1,1,0]],[[2,2,0,1],[0,3,2,1],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[1,1,0,2]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[2,1,0,1]],[[1,1,3,1],[0,3,3,0],[2,2,3,2],[1,0,1,1]],[[1,1,2,2],[0,3,3,0],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[0,4,3,0],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,4,0],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,3,0],[2,2,4,2],[1,0,1,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,3],[1,0,1,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,2],[1,0,1,2]],[[1,1,3,1],[0,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,1,2,2],[0,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,1,2,1],[0,4,3,0],[2,2,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,4,0],[2,2,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,3,0],[2,2,4,2],[1,0,2,0]],[[1,1,2,1],[0,3,3,0],[2,2,3,3],[1,0,2,0]],[[1,1,2,1],[0,3,3,0],[2,2,3,2],[1,0,3,0]],[[1,1,3,1],[0,3,3,0],[2,2,3,2],[1,1,0,1]],[[1,1,2,2],[0,3,3,0],[2,2,3,2],[1,1,0,1]],[[1,1,2,1],[0,4,3,0],[2,2,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,4,0],[2,2,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,3,0],[2,2,4,2],[1,1,0,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,3],[1,1,0,1]],[[1,1,2,1],[0,3,3,0],[2,2,3,2],[1,1,0,2]],[[1,1,3,1],[0,3,3,0],[2,2,3,2],[1,1,1,0]],[[1,1,2,2],[0,3,3,0],[2,2,3,2],[1,1,1,0]],[[1,1,2,1],[0,4,3,0],[2,2,3,2],[1,1,1,0]],[[1,1,2,1],[0,3,4,0],[2,2,3,2],[1,1,1,0]],[[1,1,2,1],[0,3,3,0],[2,2,4,2],[1,1,1,0]],[[1,1,2,1],[0,3,3,0],[2,2,3,3],[1,1,1,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,3],[1,1,0,1]],[[1,2,0,1],[0,3,2,1],[2,3,4,2],[1,1,0,1]],[[1,2,0,1],[0,3,2,1],[2,4,3,2],[1,1,0,1]],[[1,2,0,1],[0,3,2,1],[3,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,4,2,1],[2,3,3,2],[1,1,0,1]],[[1,3,0,1],[0,3,2,1],[2,3,3,2],[1,1,0,1]],[[2,2,0,1],[0,3,2,1],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[1,0,3,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[2,0,2,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,3],[1,0,2,0]],[[1,2,0,1],[0,3,2,1],[2,3,4,2],[1,0,2,0]],[[1,2,0,1],[0,3,2,1],[2,4,3,2],[1,0,2,0]],[[1,2,0,1],[0,3,2,1],[3,3,3,2],[1,0,2,0]],[[1,2,0,1],[0,4,2,1],[2,3,3,2],[1,0,2,0]],[[1,3,0,1],[0,3,2,1],[2,3,3,2],[1,0,2,0]],[[2,2,0,1],[0,3,2,1],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[1,0,1,2]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[2,0,1,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,3],[1,0,1,1]],[[1,2,0,1],[0,3,2,1],[2,3,4,2],[1,0,1,1]],[[1,2,0,1],[0,3,2,1],[2,4,3,2],[1,0,1,1]],[[1,2,0,1],[0,3,2,1],[3,3,3,2],[1,0,1,1]],[[1,2,0,1],[0,4,2,1],[2,3,3,2],[1,0,1,1]],[[1,3,0,1],[0,3,2,1],[2,3,3,2],[1,0,1,1]],[[2,2,0,1],[0,3,2,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,3,0],[3,3,0,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,3,0,1],[2,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,3,0,1],[1,3,2,1]],[[1,1,3,1],[0,3,3,0],[2,3,0,2],[0,2,2,1]],[[1,1,2,2],[0,3,3,0],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,4,3,0],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,4,0],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,3,0],[3,3,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,4,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,3,0,3],[0,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,3,0,2],[0,3,2,1]],[[1,1,2,1],[0,3,3,0],[2,3,0,2],[0,2,3,1]],[[1,1,2,1],[0,3,3,0],[2,3,0,2],[0,2,2,2]],[[1,1,3,1],[0,3,3,0],[2,3,0,2],[1,1,2,1]],[[1,1,2,2],[0,3,3,0],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,4,3,0],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,4,0],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,3,0],[3,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,3,0],[2,4,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,3,0],[2,3,0,2],[2,1,2,1]],[[1,1,2,1],[0,3,3,0],[3,3,0,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,3,0,2],[2,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,3,0,2],[1,3,2,0]],[[1,1,3,1],[0,3,3,0],[2,3,1,1],[0,2,2,1]],[[1,1,2,2],[0,3,3,0],[2,3,1,1],[0,2,2,1]],[[1,1,2,1],[0,4,3,0],[2,3,1,1],[0,2,2,1]],[[1,1,2,1],[0,3,4,0],[2,3,1,1],[0,2,2,1]],[[1,1,2,1],[0,3,3,0],[3,3,1,1],[0,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,4,1,1],[0,2,2,1]],[[1,1,2,1],[0,3,3,0],[2,3,1,1],[0,3,2,1]],[[1,1,2,1],[0,3,3,0],[2,3,1,1],[0,2,3,1]],[[1,1,2,1],[0,3,3,0],[2,3,1,1],[0,2,2,2]],[[1,1,3,1],[0,3,3,0],[2,3,1,1],[1,1,2,1]],[[1,1,2,2],[0,3,3,0],[2,3,1,1],[1,1,2,1]],[[1,1,2,1],[0,4,3,0],[2,3,1,1],[1,1,2,1]],[[1,1,2,1],[0,3,4,0],[2,3,1,1],[1,1,2,1]],[[1,1,2,1],[0,3,3,0],[3,3,1,1],[1,1,2,1]],[[1,1,2,1],[0,3,3,0],[2,4,1,1],[1,1,2,1]],[[1,1,2,1],[0,3,3,0],[2,3,1,1],[2,1,2,1]],[[1,1,3,1],[0,3,3,0],[2,3,1,2],[0,2,2,0]],[[1,1,2,2],[0,3,3,0],[2,3,1,2],[0,2,2,0]],[[1,1,2,1],[0,4,3,0],[2,3,1,2],[0,2,2,0]],[[1,1,2,1],[0,3,4,0],[2,3,1,2],[0,2,2,0]],[[1,1,2,1],[0,3,3,0],[3,3,1,2],[0,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,4,1,2],[0,2,2,0]],[[1,1,2,1],[0,3,3,0],[2,3,1,2],[0,3,2,0]],[[1,1,2,1],[0,3,3,0],[2,3,1,2],[0,2,3,0]],[[1,1,3,1],[0,3,3,0],[2,3,1,2],[1,1,2,0]],[[1,1,2,2],[0,3,3,0],[2,3,1,2],[1,1,2,0]],[[1,1,2,1],[0,4,3,0],[2,3,1,2],[1,1,2,0]],[[1,1,2,1],[0,3,4,0],[2,3,1,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,0],[3,3,1,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,0],[2,4,1,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,0],[2,3,1,2],[2,1,2,0]],[[1,1,3,1],[0,3,3,0],[2,3,2,1],[0,1,2,1]],[[1,1,2,2],[0,3,3,0],[2,3,2,1],[0,1,2,1]],[[1,1,2,1],[0,4,3,0],[2,3,2,1],[0,1,2,1]],[[1,1,2,1],[0,3,4,0],[2,3,2,1],[0,1,2,1]],[[1,1,2,1],[0,3,3,0],[3,3,2,1],[0,1,2,1]],[[1,1,2,1],[0,3,3,0],[2,4,2,1],[0,1,2,1]],[[1,1,3,1],[0,3,3,0],[2,3,2,1],[0,2,1,1]],[[1,1,2,2],[0,3,3,0],[2,3,2,1],[0,2,1,1]],[[1,1,2,1],[0,4,3,0],[2,3,2,1],[0,2,1,1]],[[1,1,2,1],[0,3,4,0],[2,3,2,1],[0,2,1,1]],[[1,1,2,1],[0,3,3,0],[3,3,2,1],[0,2,1,1]],[[1,1,2,1],[0,3,3,0],[2,4,2,1],[0,2,1,1]],[[1,1,2,1],[0,3,3,0],[2,3,2,1],[0,3,1,1]],[[1,1,3,1],[0,3,3,0],[2,3,2,1],[1,0,2,1]],[[1,1,2,2],[0,3,3,0],[2,3,2,1],[1,0,2,1]],[[1,1,2,1],[0,4,3,0],[2,3,2,1],[1,0,2,1]],[[1,1,2,1],[0,3,4,0],[2,3,2,1],[1,0,2,1]],[[1,1,2,1],[0,3,3,0],[3,3,2,1],[1,0,2,1]],[[1,1,2,1],[0,3,3,0],[2,4,2,1],[1,0,2,1]],[[1,1,2,1],[0,3,3,0],[2,3,2,1],[2,0,2,1]],[[1,1,3,1],[0,3,3,0],[2,3,2,1],[1,1,1,1]],[[1,1,2,2],[0,3,3,0],[2,3,2,1],[1,1,1,1]],[[1,1,2,1],[0,4,3,0],[2,3,2,1],[1,1,1,1]],[[1,1,2,1],[0,3,4,0],[2,3,2,1],[1,1,1,1]],[[1,1,2,1],[0,3,3,0],[3,3,2,1],[1,1,1,1]],[[1,1,2,1],[0,3,3,0],[2,4,2,1],[1,1,1,1]],[[1,1,2,1],[0,3,3,0],[2,3,2,1],[2,1,1,1]],[[1,1,2,1],[0,4,3,0],[2,3,2,1],[1,2,0,1]],[[1,1,2,1],[0,3,3,0],[3,3,2,1],[1,2,0,1]],[[1,1,2,1],[0,3,3,0],[2,4,2,1],[1,2,0,1]],[[1,1,2,1],[0,3,3,0],[2,3,2,1],[2,2,0,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,3],[0,2,1,0]],[[1,2,0,1],[0,3,2,1],[2,3,4,2],[0,2,1,0]],[[1,2,0,1],[0,3,2,1],[2,4,3,2],[0,2,1,0]],[[1,2,0,1],[0,3,2,1],[3,3,3,2],[0,2,1,0]],[[1,2,0,1],[0,4,2,1],[2,3,3,2],[0,2,1,0]],[[1,3,0,1],[0,3,2,1],[2,3,3,2],[0,2,1,0]],[[1,1,3,1],[0,3,3,0],[2,3,2,2],[0,1,1,1]],[[1,1,2,2],[0,3,3,0],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[0,4,3,0],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[0,3,4,0],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[0,3,3,0],[3,3,2,2],[0,1,1,1]],[[1,1,2,1],[0,3,3,0],[2,4,2,2],[0,1,1,1]],[[1,1,3,1],[0,3,3,0],[2,3,2,2],[0,1,2,0]],[[1,1,2,2],[0,3,3,0],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[0,4,3,0],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[0,3,4,0],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[0,3,3,0],[3,3,2,2],[0,1,2,0]],[[1,1,2,1],[0,3,3,0],[2,4,2,2],[0,1,2,0]],[[1,1,3,1],[0,3,3,0],[2,3,2,2],[0,2,0,1]],[[1,1,2,2],[0,3,3,0],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[0,4,3,0],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[0,3,4,0],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[0,3,3,0],[3,3,2,2],[0,2,0,1]],[[1,1,2,1],[0,3,3,0],[2,4,2,2],[0,2,0,1]],[[1,1,2,1],[0,3,3,0],[2,3,2,2],[0,3,0,1]],[[1,1,3,1],[0,3,3,0],[2,3,2,2],[0,2,1,0]],[[1,1,2,2],[0,3,3,0],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[0,4,3,0],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[0,3,4,0],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[0,3,3,0],[3,3,2,2],[0,2,1,0]],[[1,1,2,1],[0,3,3,0],[2,4,2,2],[0,2,1,0]],[[1,1,2,1],[0,3,3,0],[2,3,2,2],[0,3,1,0]],[[2,2,0,1],[0,3,2,1],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[0,2,0,2]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[0,3,0,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,3],[0,2,0,1]],[[1,2,0,1],[0,3,2,1],[2,3,4,2],[0,2,0,1]],[[1,2,0,1],[0,3,2,1],[2,4,3,2],[0,2,0,1]],[[1,2,0,1],[0,3,2,1],[3,3,3,2],[0,2,0,1]],[[1,2,0,1],[0,4,2,1],[2,3,3,2],[0,2,0,1]],[[1,3,0,1],[0,3,2,1],[2,3,3,2],[0,2,0,1]],[[2,2,0,1],[0,3,2,1],[2,3,3,2],[0,2,0,1]],[[1,1,3,1],[0,3,3,0],[2,3,2,2],[1,0,1,1]],[[1,1,2,2],[0,3,3,0],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[0,4,3,0],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[0,3,4,0],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[0,3,3,0],[3,3,2,2],[1,0,1,1]],[[1,1,2,1],[0,3,3,0],[2,4,2,2],[1,0,1,1]],[[1,1,2,1],[0,3,3,0],[2,3,2,2],[2,0,1,1]],[[1,1,3,1],[0,3,3,0],[2,3,2,2],[1,0,2,0]],[[1,1,2,2],[0,3,3,0],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[0,4,3,0],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[0,3,4,0],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[0,3,3,0],[3,3,2,2],[1,0,2,0]],[[1,1,2,1],[0,3,3,0],[2,4,2,2],[1,0,2,0]],[[1,1,2,1],[0,3,3,0],[2,3,2,2],[2,0,2,0]],[[1,1,3,1],[0,3,3,0],[2,3,2,2],[1,1,0,1]],[[1,1,2,2],[0,3,3,0],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[0,4,3,0],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[0,3,4,0],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[0,3,3,0],[3,3,2,2],[1,1,0,1]],[[1,1,2,1],[0,3,3,0],[2,4,2,2],[1,1,0,1]],[[1,1,2,1],[0,3,3,0],[2,3,2,2],[2,1,0,1]],[[1,1,3,1],[0,3,3,0],[2,3,2,2],[1,1,1,0]],[[1,1,2,2],[0,3,3,0],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[0,4,3,0],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[0,3,4,0],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[0,3,3,0],[3,3,2,2],[1,1,1,0]],[[1,1,2,1],[0,3,3,0],[2,4,2,2],[1,1,1,0]],[[1,1,2,1],[0,3,3,0],[2,3,2,2],[2,1,1,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[0,1,3,0]],[[1,1,3,1],[0,3,3,0],[2,3,2,2],[1,2,0,0]],[[1,1,2,2],[0,3,3,0],[2,3,2,2],[1,2,0,0]],[[1,1,2,1],[0,4,3,0],[2,3,2,2],[1,2,0,0]],[[1,1,2,1],[0,3,4,0],[2,3,2,2],[1,2,0,0]],[[1,1,2,1],[0,3,3,0],[3,3,2,2],[1,2,0,0]],[[1,1,2,1],[0,3,3,0],[2,4,2,2],[1,2,0,0]],[[1,1,2,1],[0,3,3,0],[2,3,2,2],[2,2,0,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,3],[0,1,2,0]],[[1,2,0,1],[0,3,2,1],[2,3,4,2],[0,1,2,0]],[[1,2,0,1],[0,3,2,1],[2,4,3,2],[0,1,2,0]],[[1,2,0,1],[0,3,2,1],[3,3,3,2],[0,1,2,0]],[[1,2,0,1],[0,4,2,1],[2,3,3,2],[0,1,2,0]],[[1,3,0,1],[0,3,2,1],[2,3,3,2],[0,1,2,0]],[[2,2,0,1],[0,3,2,1],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[0,1,1,2]],[[1,2,0,1],[0,3,2,1],[2,3,3,3],[0,1,1,1]],[[1,2,0,1],[0,3,2,1],[2,3,4,2],[0,1,1,1]],[[1,2,0,1],[0,3,2,1],[2,4,3,2],[0,1,1,1]],[[1,2,0,1],[0,3,2,1],[3,3,3,2],[0,1,1,1]],[[1,2,0,1],[0,4,2,1],[2,3,3,2],[0,1,1,1]],[[1,3,0,1],[0,3,2,1],[2,3,3,2],[0,1,1,1]],[[2,2,0,1],[0,3,2,1],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,2],[0,0,2,2]],[[1,2,0,1],[0,3,2,1],[2,3,3,3],[0,0,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,4,2],[0,0,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[0,3,2,1],[2,4,3,1],[1,2,0,1]],[[1,2,0,1],[0,3,2,1],[3,3,3,1],[1,2,0,1]],[[1,2,0,1],[0,4,2,1],[2,3,3,1],[1,2,0,1]],[[1,1,3,1],[0,3,3,0],[2,3,3,1],[0,0,2,1]],[[1,1,2,2],[0,3,3,0],[2,3,3,1],[0,0,2,1]],[[1,1,2,1],[0,4,3,0],[2,3,3,1],[0,0,2,1]],[[1,1,2,1],[0,3,4,0],[2,3,3,1],[0,0,2,1]],[[1,1,2,1],[0,3,3,0],[2,3,4,1],[0,0,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[0,3,2,1],[2,3,4,1],[1,1,1,1]],[[1,2,0,1],[0,3,2,1],[2,4,3,1],[1,1,1,1]],[[1,2,0,1],[0,3,2,1],[3,3,3,1],[1,1,1,1]],[[1,2,0,1],[0,4,2,1],[2,3,3,1],[1,1,1,1]],[[1,3,0,1],[0,3,2,1],[2,3,3,1],[1,1,1,1]],[[2,2,0,1],[0,3,2,1],[2,3,3,1],[1,1,1,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,1],[1,0,2,2]],[[1,2,0,1],[0,3,2,1],[2,3,3,1],[1,0,3,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,1],[2,0,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,4,1],[1,0,2,1]],[[1,2,0,1],[0,3,2,1],[2,4,3,1],[1,0,2,1]],[[1,2,0,1],[0,3,2,1],[3,3,3,1],[1,0,2,1]],[[1,2,0,1],[0,4,2,1],[2,3,3,1],[1,0,2,1]],[[1,3,0,1],[0,3,2,1],[2,3,3,1],[1,0,2,1]],[[2,2,0,1],[0,3,2,1],[2,3,3,1],[1,0,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,1],[0,3,1,1]],[[1,2,0,1],[0,3,2,1],[2,3,4,1],[0,2,1,1]],[[1,2,0,1],[0,3,2,1],[2,4,3,1],[0,2,1,1]],[[1,2,0,1],[0,3,2,1],[3,3,3,1],[0,2,1,1]],[[1,2,0,1],[0,4,2,1],[2,3,3,1],[0,2,1,1]],[[1,3,0,1],[0,3,2,1],[2,3,3,1],[0,2,1,1]],[[2,2,0,1],[0,3,2,1],[2,3,3,1],[0,2,1,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,1],[0,1,2,2]],[[1,2,0,1],[0,3,2,1],[2,3,3,1],[0,1,3,1]],[[1,2,0,1],[0,3,2,1],[2,3,4,1],[0,1,2,1]],[[1,1,3,1],[0,3,3,0],[2,3,3,2],[0,0,1,1]],[[1,1,2,2],[0,3,3,0],[2,3,3,2],[0,0,1,1]],[[1,1,2,1],[0,4,3,0],[2,3,3,2],[0,0,1,1]],[[1,1,2,1],[0,3,4,0],[2,3,3,2],[0,0,1,1]],[[1,1,2,1],[0,3,3,0],[2,3,4,2],[0,0,1,1]],[[1,1,2,1],[0,3,3,0],[2,3,3,3],[0,0,1,1]],[[1,1,2,1],[0,3,3,0],[2,3,3,2],[0,0,1,2]],[[1,1,3,1],[0,3,3,0],[2,3,3,2],[0,0,2,0]],[[1,1,2,2],[0,3,3,0],[2,3,3,2],[0,0,2,0]],[[1,1,2,1],[0,4,3,0],[2,3,3,2],[0,0,2,0]],[[1,1,2,1],[0,3,4,0],[2,3,3,2],[0,0,2,0]],[[1,1,2,1],[0,3,3,0],[2,3,4,2],[0,0,2,0]],[[1,1,2,1],[0,3,3,0],[2,3,3,3],[0,0,2,0]],[[1,2,0,1],[0,3,2,1],[2,4,3,1],[0,1,2,1]],[[1,2,0,1],[0,3,2,1],[3,3,3,1],[0,1,2,1]],[[1,2,0,1],[0,4,2,1],[2,3,3,1],[0,1,2,1]],[[1,3,0,1],[0,3,2,1],[2,3,3,1],[0,1,2,1]],[[2,2,0,1],[0,3,2,1],[2,3,3,1],[0,1,2,1]],[[1,1,3,1],[0,3,3,0],[2,3,3,2],[0,2,0,0]],[[1,1,2,2],[0,3,3,0],[2,3,3,2],[0,2,0,0]],[[1,1,2,1],[0,4,3,0],[2,3,3,2],[0,2,0,0]],[[1,1,2,1],[0,3,4,0],[2,3,3,2],[0,2,0,0]],[[1,1,2,1],[0,3,3,0],[3,3,3,2],[0,2,0,0]],[[1,1,2,1],[0,3,3,0],[2,4,3,2],[0,2,0,0]],[[1,2,0,1],[0,3,2,1],[2,3,3,0],[2,1,2,1]],[[1,2,0,1],[0,3,2,1],[2,4,3,0],[1,1,2,1]],[[1,2,0,1],[0,3,2,1],[3,3,3,0],[1,1,2,1]],[[1,2,0,1],[0,4,2,1],[2,3,3,0],[1,1,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,0],[0,2,3,1]],[[1,2,0,1],[0,3,2,1],[2,3,3,0],[0,3,2,1]],[[1,2,0,1],[0,3,2,1],[2,4,3,0],[0,2,2,1]],[[1,2,0,1],[0,3,2,1],[3,3,3,0],[0,2,2,1]],[[1,2,0,1],[0,4,2,1],[2,3,3,0],[0,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[0,3,2,1],[2,4,2,2],[1,1,2,0]],[[1,2,0,1],[0,3,2,1],[3,3,2,2],[1,1,2,0]],[[1,2,0,1],[0,4,2,1],[2,3,2,2],[1,1,2,0]],[[1,3,0,1],[0,3,2,1],[2,3,2,2],[1,1,2,0]],[[2,2,0,1],[0,3,2,1],[2,3,2,2],[1,1,2,0]],[[1,2,0,1],[0,3,2,1],[2,3,2,2],[1,0,2,2]],[[1,2,0,1],[0,3,2,1],[2,3,2,2],[1,0,3,1]],[[1,2,0,1],[0,3,2,1],[2,3,2,3],[1,0,2,1]],[[1,1,3,1],[0,3,3,0],[2,3,3,2],[1,1,0,0]],[[1,1,2,2],[0,3,3,0],[2,3,3,2],[1,1,0,0]],[[1,1,2,1],[0,4,3,0],[2,3,3,2],[1,1,0,0]],[[1,1,2,1],[0,3,4,0],[2,3,3,2],[1,1,0,0]],[[1,1,2,1],[0,3,3,0],[3,3,3,2],[1,1,0,0]],[[1,1,2,1],[0,3,3,0],[2,4,3,2],[1,1,0,0]],[[1,1,2,1],[0,3,3,0],[2,3,3,2],[2,1,0,0]],[[1,2,0,1],[0,3,2,1],[2,3,2,2],[0,2,3,0]],[[1,2,0,1],[0,3,2,1],[2,3,2,2],[0,3,2,0]],[[1,2,0,1],[0,3,2,1],[2,4,2,2],[0,2,2,0]],[[1,2,0,1],[0,3,2,1],[3,3,2,2],[0,2,2,0]],[[1,2,0,1],[0,4,2,1],[2,3,2,2],[0,2,2,0]],[[1,3,0,1],[0,3,2,1],[2,3,2,2],[0,2,2,0]],[[2,2,0,1],[0,3,2,1],[2,3,2,2],[0,2,2,0]],[[1,2,0,1],[0,3,2,1],[2,3,2,2],[0,1,2,2]],[[1,2,0,1],[0,3,2,1],[2,3,2,2],[0,1,3,1]],[[1,2,0,1],[0,3,2,1],[2,3,2,3],[0,1,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,2,1],[2,1,2,1]],[[1,2,0,1],[0,3,2,1],[2,4,2,1],[1,1,2,1]],[[1,2,0,1],[0,3,2,1],[3,3,2,1],[1,1,2,1]],[[1,2,0,1],[0,4,2,1],[2,3,2,1],[1,1,2,1]],[[1,3,0,1],[0,3,2,1],[2,3,2,1],[1,1,2,1]],[[2,2,0,1],[0,3,2,1],[2,3,2,1],[1,1,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,2,1],[0,2,2,2]],[[1,2,0,1],[0,3,2,1],[2,3,2,1],[0,2,3,1]],[[1,2,0,1],[0,3,2,1],[2,3,2,1],[0,3,2,1]],[[1,2,0,1],[0,3,2,1],[2,4,2,1],[0,2,2,1]],[[1,2,0,1],[0,3,2,1],[3,3,2,1],[0,2,2,1]],[[1,2,0,1],[0,4,2,1],[2,3,2,1],[0,2,2,1]],[[1,3,0,1],[0,3,2,1],[2,3,2,1],[0,2,2,1]],[[2,2,0,1],[0,3,2,1],[2,3,2,1],[0,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,1,2],[1,3,2,0]],[[1,2,0,1],[0,3,2,1],[2,3,1,2],[2,2,2,0]],[[1,2,0,1],[0,3,2,1],[3,3,1,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,1],[2,3,1,2],[2,1,2,1]],[[1,2,0,1],[0,3,2,1],[2,4,1,2],[1,1,2,1]],[[1,2,0,1],[0,3,2,1],[3,3,1,2],[1,1,2,1]],[[1,2,0,1],[0,4,2,1],[2,3,1,2],[1,1,2,1]],[[1,3,0,1],[0,3,2,1],[2,3,1,2],[1,1,2,1]],[[2,2,0,1],[0,3,2,1],[2,3,1,2],[1,1,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,1,2],[0,2,2,2]],[[1,2,0,1],[0,3,2,1],[2,3,1,2],[0,2,3,1]],[[1,2,0,1],[0,3,2,1],[2,3,1,2],[0,3,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,1,3],[0,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,4,1,2],[0,2,2,1]],[[1,2,0,1],[0,3,2,1],[3,3,1,2],[0,2,2,1]],[[1,2,0,1],[0,4,2,1],[2,3,1,2],[0,2,2,1]],[[1,3,0,1],[0,3,2,1],[2,3,1,2],[0,2,2,1]],[[2,2,0,1],[0,3,2,1],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,1,1],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,1,1],[2,2,2,1]],[[1,2,0,1],[0,3,2,1],[3,3,1,1],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,0,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[2,3,0,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,1],[3,3,0,2],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[0,3,2,1],[2,2,3,2],[2,2,1,0]],[[1,2,0,1],[0,3,2,1],[3,2,3,2],[1,2,1,0]],[[1,2,0,1],[0,3,2,1],[2,2,3,2],[1,3,0,1]],[[1,2,0,1],[0,3,2,1],[2,2,3,2],[2,2,0,1]],[[1,2,0,1],[0,3,2,1],[3,2,3,2],[1,2,0,1]],[[1,2,0,1],[0,3,2,1],[2,2,3,2],[0,2,3,0]],[[1,2,0,1],[0,3,2,1],[2,2,3,2],[0,3,2,0]],[[1,2,0,1],[0,3,2,1],[2,2,3,3],[0,2,2,0]],[[1,2,0,1],[0,3,2,1],[2,2,4,2],[0,2,2,0]],[[1,2,0,1],[0,3,2,1],[2,2,3,2],[0,2,1,2]],[[1,2,0,1],[0,3,2,1],[2,2,3,3],[0,2,1,1]],[[1,2,0,1],[0,3,2,1],[2,2,4,2],[0,2,1,1]],[[1,2,0,1],[0,3,2,1],[2,2,3,1],[1,3,1,1]],[[1,2,0,1],[0,3,2,1],[2,2,3,1],[2,2,1,1]],[[1,2,0,1],[0,3,2,1],[3,2,3,1],[1,2,1,1]],[[1,2,0,1],[0,3,2,1],[2,2,3,1],[0,2,2,2]],[[1,2,0,1],[0,3,2,1],[2,2,3,1],[0,2,3,1]],[[1,2,0,1],[0,3,2,1],[2,2,3,1],[0,3,2,1]],[[1,2,0,1],[0,3,2,1],[2,2,4,1],[0,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,2,3,0],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[2,2,3,0],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[2,2,3,0],[2,2,2,1]],[[1,2,0,1],[0,3,2,1],[3,2,3,0],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,2,2,2],[1,2,3,0]],[[1,1,3,1],[0,3,3,1],[1,0,2,2],[1,2,2,1]],[[1,1,2,2],[0,3,3,1],[1,0,2,2],[1,2,2,1]],[[1,1,2,1],[0,3,4,1],[1,0,2,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,1],[1,0,3,2],[1,1,2,1]],[[1,1,2,2],[0,3,3,1],[1,0,3,2],[1,1,2,1]],[[1,1,2,1],[0,3,4,1],[1,0,3,2],[1,1,2,1]],[[1,1,3,1],[0,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,2,2],[0,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[0,3,4,1],[1,0,3,2],[1,2,1,1]],[[1,1,3,1],[0,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,1,2,2],[0,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[0,3,4,1],[1,0,3,2],[1,2,2,0]],[[1,1,3,1],[0,3,3,1],[1,1,1,2],[1,2,2,1]],[[1,1,2,2],[0,3,3,1],[1,1,1,2],[1,2,2,1]],[[1,1,2,1],[0,4,3,1],[1,1,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,4,1],[1,1,1,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,1],[1,1,2,2],[1,2,1,1]],[[1,1,2,2],[0,3,3,1],[1,1,2,2],[1,2,1,1]],[[1,1,2,1],[0,4,3,1],[1,1,2,2],[1,2,1,1]],[[1,1,2,1],[0,3,4,1],[1,1,2,2],[1,2,1,1]],[[1,1,3,1],[0,3,3,1],[1,1,2,2],[1,2,2,0]],[[1,1,2,2],[0,3,3,1],[1,1,2,2],[1,2,2,0]],[[1,1,2,1],[0,4,3,1],[1,1,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,4,1],[1,1,2,2],[1,2,2,0]],[[1,1,3,1],[0,3,3,1],[1,1,3,0],[1,2,2,1]],[[1,1,2,2],[0,3,3,1],[1,1,3,0],[1,2,2,1]],[[1,1,2,1],[0,4,3,1],[1,1,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,4,1],[1,1,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[1,1,4,0],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[1,1,3,0],[2,2,2,1]],[[1,1,2,1],[0,3,3,1],[1,1,3,0],[1,3,2,1]],[[1,1,2,1],[0,3,3,1],[1,1,3,0],[1,2,3,1]],[[1,1,2,1],[0,3,3,1],[1,1,3,0],[1,2,2,2]],[[1,1,3,1],[0,3,3,1],[1,1,3,1],[1,2,1,1]],[[1,1,2,2],[0,3,3,1],[1,1,3,1],[1,2,1,1]],[[1,1,2,1],[0,4,3,1],[1,1,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,4,1],[1,1,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,3,1],[1,1,4,1],[1,2,1,1]],[[1,1,3,1],[0,3,3,1],[1,1,3,1],[1,2,2,0]],[[1,1,2,2],[0,3,3,1],[1,1,3,1],[1,2,2,0]],[[1,1,2,1],[0,4,3,1],[1,1,3,1],[1,2,2,0]],[[1,1,2,1],[0,3,4,1],[1,1,3,1],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[1,1,4,1],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[1,1,3,1],[2,2,2,0]],[[1,1,2,1],[0,3,3,1],[1,1,3,1],[1,3,2,0]],[[1,1,2,1],[0,3,3,1],[1,1,3,1],[1,2,3,0]],[[1,1,3,1],[0,3,3,1],[1,1,3,2],[1,0,2,1]],[[1,1,2,2],[0,3,3,1],[1,1,3,2],[1,0,2,1]],[[1,1,2,1],[0,3,4,1],[1,1,3,2],[1,0,2,1]],[[1,1,3,1],[0,3,3,1],[1,1,3,2],[1,1,1,1]],[[1,1,2,2],[0,3,3,1],[1,1,3,2],[1,1,1,1]],[[1,1,2,1],[0,3,4,1],[1,1,3,2],[1,1,1,1]],[[1,1,3,1],[0,3,3,1],[1,1,3,2],[1,1,2,0]],[[1,1,2,2],[0,3,3,1],[1,1,3,2],[1,1,2,0]],[[1,1,2,1],[0,3,4,1],[1,1,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,2,1],[2,2,2,2],[1,3,2,0]],[[1,2,0,1],[0,3,2,1],[2,2,2,2],[2,2,2,0]],[[1,2,0,1],[0,3,2,1],[3,2,2,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,1],[2,2,2,2],[0,2,2,2]],[[1,2,0,1],[0,3,2,1],[2,2,2,2],[0,2,3,1]],[[1,2,0,1],[0,3,2,1],[2,2,2,2],[0,3,2,1]],[[1,2,0,1],[0,3,2,1],[2,2,2,3],[0,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,2,2,1],[1,2,2,2]],[[1,2,0,1],[0,3,2,1],[2,2,2,1],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[2,2,2,1],[1,3,2,1]],[[1,1,3,1],[0,3,3,1],[1,2,0,2],[1,2,2,1]],[[1,1,2,2],[0,3,3,1],[1,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,4,3,1],[1,2,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,4,1],[1,2,0,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,1],[1,2,1,2],[1,1,2,1]],[[1,1,2,2],[0,3,3,1],[1,2,1,2],[1,1,2,1]],[[1,1,2,1],[0,4,3,1],[1,2,1,2],[1,1,2,1]],[[1,1,2,1],[0,3,4,1],[1,2,1,2],[1,1,2,1]],[[1,1,3,1],[0,3,3,1],[1,2,2,2],[1,0,2,1]],[[1,1,2,2],[0,3,3,1],[1,2,2,2],[1,0,2,1]],[[1,1,2,1],[0,3,4,1],[1,2,2,2],[1,0,2,1]],[[1,1,3,1],[0,3,3,1],[1,2,2,2],[1,1,1,1]],[[1,1,2,2],[0,3,3,1],[1,2,2,2],[1,1,1,1]],[[1,1,2,1],[0,4,3,1],[1,2,2,2],[1,1,1,1]],[[1,1,2,1],[0,3,4,1],[1,2,2,2],[1,1,1,1]],[[1,1,3,1],[0,3,3,1],[1,2,2,2],[1,1,2,0]],[[1,1,2,2],[0,3,3,1],[1,2,2,2],[1,1,2,0]],[[1,1,2,1],[0,4,3,1],[1,2,2,2],[1,1,2,0]],[[1,1,2,1],[0,3,4,1],[1,2,2,2],[1,1,2,0]],[[1,1,3,1],[0,3,3,1],[1,2,2,2],[1,2,0,1]],[[1,1,2,2],[0,3,3,1],[1,2,2,2],[1,2,0,1]],[[1,1,2,1],[0,4,3,1],[1,2,2,2],[1,2,0,1]],[[1,1,2,1],[0,3,4,1],[1,2,2,2],[1,2,0,1]],[[1,1,3,1],[0,3,3,1],[1,2,2,2],[1,2,1,0]],[[1,1,2,2],[0,3,3,1],[1,2,2,2],[1,2,1,0]],[[1,1,2,1],[0,4,3,1],[1,2,2,2],[1,2,1,0]],[[1,1,2,1],[0,3,4,1],[1,2,2,2],[1,2,1,0]],[[1,2,0,1],[0,3,2,1],[2,2,2,1],[2,2,2,1]],[[1,2,0,1],[0,3,2,1],[3,2,2,1],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,2,1,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,1],[2,2,1,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[2,2,1,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[2,2,1,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,2,1,3],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[3,2,1,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,1],[1,2,3,0],[1,1,2,1]],[[1,1,2,2],[0,3,3,1],[1,2,3,0],[1,1,2,1]],[[1,1,2,1],[0,4,3,1],[1,2,3,0],[1,1,2,1]],[[1,1,2,1],[0,3,4,1],[1,2,3,0],[1,1,2,1]],[[1,1,2,1],[0,3,3,1],[1,2,4,0],[1,1,2,1]],[[1,1,2,1],[0,3,3,1],[1,2,3,0],[1,1,3,1]],[[1,1,2,1],[0,3,3,1],[1,2,3,0],[1,1,2,2]],[[1,1,3,1],[0,3,3,1],[1,2,3,0],[1,2,1,1]],[[1,1,2,2],[0,3,3,1],[1,2,3,0],[1,2,1,1]],[[1,1,2,1],[0,4,3,1],[1,2,3,0],[1,2,1,1]],[[1,1,2,1],[0,3,4,1],[1,2,3,0],[1,2,1,1]],[[1,1,2,1],[0,3,3,1],[1,2,4,0],[1,2,1,1]],[[1,1,3,1],[0,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,1,2,2],[0,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,1,2,1],[0,3,4,1],[1,2,3,1],[1,0,2,1]],[[1,1,2,1],[0,3,3,1],[1,2,4,1],[1,0,2,1]],[[1,1,3,1],[0,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,1,2,2],[0,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,1,2,1],[0,4,3,1],[1,2,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,4,1],[1,2,3,1],[1,1,1,1]],[[1,1,2,1],[0,3,3,1],[1,2,4,1],[1,1,1,1]],[[1,1,3,1],[0,3,3,1],[1,2,3,1],[1,1,2,0]],[[1,1,2,2],[0,3,3,1],[1,2,3,1],[1,1,2,0]],[[1,1,2,1],[0,4,3,1],[1,2,3,1],[1,1,2,0]],[[1,1,2,1],[0,3,4,1],[1,2,3,1],[1,1,2,0]],[[1,1,2,1],[0,3,3,1],[1,2,4,1],[1,1,2,0]],[[1,1,2,1],[0,3,3,1],[1,2,3,1],[1,1,3,0]],[[1,1,3,1],[0,3,3,1],[1,2,3,1],[1,2,0,1]],[[1,1,2,2],[0,3,3,1],[1,2,3,1],[1,2,0,1]],[[1,1,2,1],[0,4,3,1],[1,2,3,1],[1,2,0,1]],[[1,1,2,1],[0,3,4,1],[1,2,3,1],[1,2,0,1]],[[1,1,2,1],[0,3,3,1],[1,2,4,1],[1,2,0,1]],[[1,1,3,1],[0,3,3,1],[1,2,3,1],[1,2,1,0]],[[1,1,2,2],[0,3,3,1],[1,2,3,1],[1,2,1,0]],[[1,1,2,1],[0,4,3,1],[1,2,3,1],[1,2,1,0]],[[1,1,2,1],[0,3,4,1],[1,2,3,1],[1,2,1,0]],[[1,1,2,1],[0,3,3,1],[1,2,4,1],[1,2,1,0]],[[1,2,0,1],[0,3,2,1],[2,1,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,2,1],[2,1,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,2,1],[2,1,3,2],[2,2,2,0]],[[1,1,3,1],[0,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,1,2,2],[0,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[0,3,4,1],[1,2,3,2],[1,1,0,1]],[[1,2,0,1],[0,3,2,1],[2,1,3,3],[1,2,2,0]],[[1,2,0,1],[0,3,2,1],[2,1,4,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,1],[3,1,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,1],[2,1,3,2],[1,2,1,2]],[[1,2,0,1],[0,3,2,1],[2,1,3,3],[1,2,1,1]],[[1,2,0,1],[0,3,2,1],[2,1,4,2],[1,2,1,1]],[[1,2,0,1],[0,3,2,1],[2,1,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,2,1],[2,1,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[2,1,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[2,1,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,1,4,1],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[3,1,3,1],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,1,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,1],[2,1,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[2,1,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[2,1,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,1],[2,1,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[3,1,2,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,1],[1,3,0,1],[1,2,2,1]],[[1,1,2,2],[0,3,3,1],[1,3,0,1],[1,2,2,1]],[[1,1,2,1],[0,4,3,1],[1,3,0,1],[1,2,2,1]],[[1,1,2,1],[0,3,4,1],[1,3,0,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[1,4,0,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[1,3,0,1],[2,2,2,1]],[[1,1,2,1],[0,3,3,1],[1,3,0,1],[1,3,2,1]],[[1,1,2,1],[0,3,3,1],[1,3,0,1],[1,2,3,1]],[[1,1,2,1],[0,3,3,1],[1,3,0,1],[1,2,2,2]],[[1,1,3,1],[0,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,2],[0,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,4,3,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,4,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,3,1],[1,4,0,2],[1,1,2,1]],[[1,1,3,1],[0,3,3,1],[1,3,0,2],[1,2,1,1]],[[1,1,2,2],[0,3,3,1],[1,3,0,2],[1,2,1,1]],[[1,1,2,1],[0,4,3,1],[1,3,0,2],[1,2,1,1]],[[1,1,2,1],[0,3,4,1],[1,3,0,2],[1,2,1,1]],[[1,1,2,1],[0,3,3,1],[1,4,0,2],[1,2,1,1]],[[1,1,2,1],[0,3,3,1],[1,3,0,2],[2,2,1,1]],[[1,1,2,1],[0,3,3,1],[1,3,0,2],[1,3,1,1]],[[1,1,3,1],[0,3,3,1],[1,3,0,2],[1,2,2,0]],[[1,1,2,2],[0,3,3,1],[1,3,0,2],[1,2,2,0]],[[1,1,2,1],[0,4,3,1],[1,3,0,2],[1,2,2,0]],[[1,1,2,1],[0,3,4,1],[1,3,0,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[1,4,0,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[1,3,0,2],[2,2,2,0]],[[1,1,2,1],[0,3,3,1],[1,3,0,2],[1,3,2,0]],[[1,1,2,1],[0,3,3,1],[1,3,0,2],[1,2,3,0]],[[1,1,3,1],[0,3,3,1],[1,3,1,0],[1,2,2,1]],[[1,1,2,2],[0,3,3,1],[1,3,1,0],[1,2,2,1]],[[1,1,2,1],[0,4,3,1],[1,3,1,0],[1,2,2,1]],[[1,1,2,1],[0,3,4,1],[1,3,1,0],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[1,4,1,0],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[1,3,1,0],[2,2,2,1]],[[1,1,2,1],[0,3,3,1],[1,3,1,0],[1,3,2,1]],[[1,1,2,1],[0,3,3,1],[1,3,1,0],[1,2,3,1]],[[1,1,2,1],[0,3,3,1],[1,3,1,0],[1,2,2,2]],[[1,1,3,1],[0,3,3,1],[1,3,1,1],[1,2,2,0]],[[1,1,2,2],[0,3,3,1],[1,3,1,1],[1,2,2,0]],[[1,1,2,1],[0,4,3,1],[1,3,1,1],[1,2,2,0]],[[1,1,2,1],[0,3,4,1],[1,3,1,1],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[1,4,1,1],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[1,3,1,1],[2,2,2,0]],[[1,1,2,1],[0,3,3,1],[1,3,1,1],[1,3,2,0]],[[1,1,2,1],[0,3,3,1],[1,3,1,1],[1,2,3,0]],[[1,1,3,1],[0,3,3,1],[1,3,1,2],[1,1,1,1]],[[1,1,2,2],[0,3,3,1],[1,3,1,2],[1,1,1,1]],[[1,1,2,1],[0,4,3,1],[1,3,1,2],[1,1,1,1]],[[1,1,2,1],[0,3,4,1],[1,3,1,2],[1,1,1,1]],[[1,1,2,1],[0,3,3,1],[1,4,1,2],[1,1,1,1]],[[1,1,3,1],[0,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,1,2,2],[0,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[0,4,3,1],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[0,3,4,1],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,1,3,1],[0,3,3,1],[1,3,1,2],[1,2,0,1]],[[1,1,2,2],[0,3,3,1],[1,3,1,2],[1,2,0,1]],[[1,1,2,1],[0,4,3,1],[1,3,1,2],[1,2,0,1]],[[1,1,2,1],[0,3,4,1],[1,3,1,2],[1,2,0,1]],[[1,1,2,1],[0,3,3,1],[1,4,1,2],[1,2,0,1]],[[1,1,2,1],[0,3,3,1],[1,3,1,2],[2,2,0,1]],[[1,1,2,1],[0,3,3,1],[1,3,1,2],[1,3,0,1]],[[1,1,3,1],[0,3,3,1],[1,3,1,2],[1,2,1,0]],[[1,1,2,2],[0,3,3,1],[1,3,1,2],[1,2,1,0]],[[1,1,2,1],[0,4,3,1],[1,3,1,2],[1,2,1,0]],[[1,1,2,1],[0,3,4,1],[1,3,1,2],[1,2,1,0]],[[1,1,2,1],[0,3,3,1],[1,4,1,2],[1,2,1,0]],[[1,1,2,1],[0,3,3,1],[1,3,1,2],[2,2,1,0]],[[1,1,2,1],[0,3,3,1],[1,3,1,2],[1,3,1,0]],[[1,2,0,1],[0,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[0,3,2,1],[1,3,3,2],[2,2,1,0]],[[1,2,0,1],[0,3,2,1],[1,3,3,3],[1,2,1,0]],[[1,2,0,1],[0,3,2,1],[1,3,4,2],[1,2,1,0]],[[1,2,0,1],[0,3,2,1],[1,4,3,2],[1,2,1,0]],[[1,2,0,1],[0,4,2,1],[1,3,3,2],[1,2,1,0]],[[1,3,0,1],[0,3,2,1],[1,3,3,2],[1,2,1,0]],[[2,2,0,1],[0,3,2,1],[1,3,3,2],[1,2,1,0]],[[1,1,3,1],[0,3,3,1],[1,3,2,0],[1,1,2,1]],[[1,1,2,2],[0,3,3,1],[1,3,2,0],[1,1,2,1]],[[1,1,2,1],[0,4,3,1],[1,3,2,0],[1,1,2,1]],[[1,1,2,1],[0,3,4,1],[1,3,2,0],[1,1,2,1]],[[1,1,2,1],[0,3,3,1],[1,4,2,0],[1,1,2,1]],[[1,1,3,1],[0,3,3,1],[1,3,2,0],[1,2,1,1]],[[1,1,2,2],[0,3,3,1],[1,3,2,0],[1,2,1,1]],[[1,1,2,1],[0,4,3,1],[1,3,2,0],[1,2,1,1]],[[1,1,2,1],[0,3,4,1],[1,3,2,0],[1,2,1,1]],[[1,1,2,1],[0,3,3,1],[1,4,2,0],[1,2,1,1]],[[1,1,2,1],[0,3,3,1],[1,3,2,0],[2,2,1,1]],[[1,1,2,1],[0,3,3,1],[1,3,2,0],[1,3,1,1]],[[1,1,3,1],[0,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,2,2],[0,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,2,1],[0,4,3,1],[1,3,2,1],[1,1,1,1]],[[1,1,2,1],[0,3,4,1],[1,3,2,1],[1,1,1,1]],[[1,1,2,1],[0,3,3,1],[1,4,2,1],[1,1,1,1]],[[1,1,3,1],[0,3,3,1],[1,3,2,1],[1,1,2,0]],[[1,1,2,2],[0,3,3,1],[1,3,2,1],[1,1,2,0]],[[1,1,2,1],[0,4,3,1],[1,3,2,1],[1,1,2,0]],[[1,1,2,1],[0,3,4,1],[1,3,2,1],[1,1,2,0]],[[1,1,2,1],[0,3,3,1],[1,4,2,1],[1,1,2,0]],[[1,1,3,1],[0,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,1,2,2],[0,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,1,2,1],[0,4,3,1],[1,3,2,1],[1,2,0,1]],[[1,1,2,1],[0,3,4,1],[1,3,2,1],[1,2,0,1]],[[1,1,2,1],[0,3,3,1],[1,4,2,1],[1,2,0,1]],[[1,1,2,1],[0,3,3,1],[1,3,2,1],[2,2,0,1]],[[1,1,2,1],[0,3,3,1],[1,3,2,1],[1,3,0,1]],[[1,1,3,1],[0,3,3,1],[1,3,2,1],[1,2,1,0]],[[1,1,2,2],[0,3,3,1],[1,3,2,1],[1,2,1,0]],[[1,1,2,1],[0,4,3,1],[1,3,2,1],[1,2,1,0]],[[1,1,2,1],[0,3,4,1],[1,3,2,1],[1,2,1,0]],[[1,1,2,1],[0,3,3,1],[1,4,2,1],[1,2,1,0]],[[1,1,2,1],[0,3,3,1],[1,3,2,1],[2,2,1,0]],[[1,1,2,1],[0,3,3,1],[1,3,2,1],[1,3,1,0]],[[1,2,0,1],[0,3,2,1],[1,3,3,2],[1,2,0,2]],[[1,2,0,1],[0,3,2,1],[1,3,3,2],[1,3,0,1]],[[1,2,0,1],[0,3,2,1],[1,3,3,2],[2,2,0,1]],[[1,2,0,1],[0,3,2,1],[1,3,3,3],[1,2,0,1]],[[1,2,0,1],[0,3,2,1],[1,3,4,2],[1,2,0,1]],[[1,2,0,1],[0,3,2,1],[1,4,3,2],[1,2,0,1]],[[1,2,0,1],[0,4,2,1],[1,3,3,2],[1,2,0,1]],[[1,3,0,1],[0,3,2,1],[1,3,3,2],[1,2,0,1]],[[2,2,0,1],[0,3,2,1],[1,3,3,2],[1,2,0,1]],[[1,2,0,1],[0,3,2,1],[1,3,3,2],[1,1,3,0]],[[1,2,0,1],[0,3,2,1],[1,3,3,3],[1,1,2,0]],[[1,2,0,1],[0,3,2,1],[1,3,4,2],[1,1,2,0]],[[1,2,0,1],[0,3,2,1],[1,4,3,2],[1,1,2,0]],[[1,2,0,1],[0,4,2,1],[1,3,3,2],[1,1,2,0]],[[1,3,0,1],[0,3,2,1],[1,3,3,2],[1,1,2,0]],[[2,2,0,1],[0,3,2,1],[1,3,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,2,1],[1,3,3,2],[1,1,1,2]],[[1,2,0,1],[0,3,2,1],[1,3,3,3],[1,1,1,1]],[[1,2,0,1],[0,3,2,1],[1,3,4,2],[1,1,1,1]],[[1,2,0,1],[0,3,2,1],[1,4,3,2],[1,1,1,1]],[[1,2,0,1],[0,4,2,1],[1,3,3,2],[1,1,1,1]],[[1,3,0,1],[0,3,2,1],[1,3,3,2],[1,1,1,1]],[[2,2,0,1],[0,3,2,1],[1,3,3,2],[1,1,1,1]],[[1,2,0,1],[0,3,2,1],[1,3,3,2],[1,0,2,2]],[[1,2,0,1],[0,3,2,1],[1,3,3,3],[1,0,2,1]],[[1,2,0,1],[0,3,2,1],[1,3,4,2],[1,0,2,1]],[[1,1,3,1],[0,3,3,1],[1,3,3,0],[1,1,2,0]],[[1,1,2,2],[0,3,3,1],[1,3,3,0],[1,1,2,0]],[[1,1,2,1],[0,4,3,1],[1,3,3,0],[1,1,2,0]],[[1,1,2,1],[0,3,4,1],[1,3,3,0],[1,1,2,0]],[[1,1,2,1],[0,3,3,1],[1,4,3,0],[1,1,2,0]],[[1,1,3,1],[0,3,3,1],[1,3,3,0],[1,2,1,0]],[[1,1,2,2],[0,3,3,1],[1,3,3,0],[1,2,1,0]],[[1,1,2,1],[0,4,3,1],[1,3,3,0],[1,2,1,0]],[[1,1,2,1],[0,3,4,1],[1,3,3,0],[1,2,1,0]],[[1,1,2,1],[0,3,3,1],[1,4,3,0],[1,2,1,0]],[[1,1,2,1],[0,3,3,1],[1,3,3,0],[2,2,1,0]],[[1,1,2,1],[0,3,3,1],[1,3,3,0],[1,3,1,0]],[[1,2,0,1],[0,3,2,1],[1,3,3,1],[1,3,1,1]],[[1,2,0,1],[0,3,2,1],[1,3,3,1],[2,2,1,1]],[[1,2,0,1],[0,3,2,1],[1,3,4,1],[1,2,1,1]],[[1,2,0,1],[0,3,2,1],[1,4,3,1],[1,2,1,1]],[[1,2,0,1],[0,4,2,1],[1,3,3,1],[1,2,1,1]],[[1,3,0,1],[0,3,2,1],[1,3,3,1],[1,2,1,1]],[[2,2,0,1],[0,3,2,1],[1,3,3,1],[1,2,1,1]],[[1,2,0,1],[0,3,2,1],[1,3,3,1],[1,1,2,2]],[[1,2,0,1],[0,3,2,1],[1,3,3,1],[1,1,3,1]],[[1,2,0,1],[0,3,2,1],[1,3,4,1],[1,1,2,1]],[[1,2,0,1],[0,3,2,1],[1,4,3,1],[1,1,2,1]],[[1,2,0,1],[0,4,2,1],[1,3,3,1],[1,1,2,1]],[[1,3,0,1],[0,3,2,1],[1,3,3,1],[1,1,2,1]],[[2,2,0,1],[0,3,2,1],[1,3,3,1],[1,1,2,1]],[[1,2,0,1],[0,3,2,1],[1,3,3,0],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[1,3,3,0],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[1,3,3,0],[2,2,2,1]],[[1,1,3,1],[0,3,3,1],[1,3,3,1],[1,2,0,0]],[[1,1,2,2],[0,3,3,1],[1,3,3,1],[1,2,0,0]],[[1,1,2,1],[0,4,3,1],[1,3,3,1],[1,2,0,0]],[[1,1,2,1],[0,3,4,1],[1,3,3,1],[1,2,0,0]],[[1,1,2,1],[0,3,3,1],[1,4,3,1],[1,2,0,0]],[[1,2,0,1],[0,3,2,1],[1,4,3,0],[1,2,2,1]],[[1,2,0,1],[0,4,2,1],[1,3,3,0],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[1,3,2,2],[1,2,3,0]],[[1,2,0,1],[0,3,2,1],[1,3,2,2],[1,3,2,0]],[[1,2,0,1],[0,3,2,1],[1,3,2,2],[2,2,2,0]],[[1,2,0,1],[0,3,2,1],[1,4,2,2],[1,2,2,0]],[[1,2,0,1],[0,4,2,1],[1,3,2,2],[1,2,2,0]],[[1,3,0,1],[0,3,2,1],[1,3,2,2],[1,2,2,0]],[[2,2,0,1],[0,3,2,1],[1,3,2,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,1],[1,3,2,2],[1,1,2,2]],[[1,2,0,1],[0,3,2,1],[1,3,2,2],[1,1,3,1]],[[1,2,0,1],[0,3,2,1],[1,3,2,3],[1,1,2,1]],[[1,2,0,1],[0,3,2,1],[1,3,2,1],[1,2,2,2]],[[1,2,0,1],[0,3,2,1],[1,3,2,1],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[1,3,2,1],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[1,3,2,1],[2,2,2,1]],[[1,2,0,1],[0,3,2,1],[1,4,2,1],[1,2,2,1]],[[1,2,0,1],[0,4,2,1],[1,3,2,1],[1,2,2,1]],[[1,3,0,1],[0,3,2,1],[1,3,2,1],[1,2,2,1]],[[2,2,0,1],[0,3,2,1],[1,3,2,1],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[1,3,1,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,1],[1,3,1,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[1,3,1,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[1,3,1,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,1],[1,3,1,3],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[1,4,1,2],[1,2,2,1]],[[1,2,0,1],[0,4,2,1],[1,3,1,2],[1,2,2,1]],[[1,3,0,1],[0,3,2,1],[1,3,1,2],[1,2,2,1]],[[2,2,0,1],[0,3,2,1],[1,3,1,2],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[1,2,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,2,1],[1,2,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,2,1],[1,2,3,2],[2,2,2,0]],[[1,2,0,1],[0,3,2,1],[1,2,3,3],[1,2,2,0]],[[1,2,0,1],[0,3,2,1],[1,2,4,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,1],[1,2,3,2],[1,2,1,2]],[[1,2,0,1],[0,3,2,1],[1,2,3,3],[1,2,1,1]],[[1,2,0,1],[0,3,2,1],[1,2,4,2],[1,2,1,1]],[[1,2,0,1],[0,3,2,1],[1,2,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,2,1],[1,2,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[1,2,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[1,2,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,2,1],[1,2,4,1],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[1,2,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,1],[1,2,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[1,2,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[1,2,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,1],[1,2,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[0,3,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,2,1],[0,3,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,2,1],[0,3,3,3],[1,2,2,0]],[[1,2,0,1],[0,3,2,1],[0,3,4,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,1],[0,3,3,2],[1,2,1,2]],[[1,2,0,1],[0,3,2,1],[0,3,3,3],[1,2,1,1]],[[1,2,0,1],[0,3,2,1],[0,3,4,2],[1,2,1,1]],[[1,2,0,1],[0,3,2,1],[0,3,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,2,1],[0,3,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[0,3,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[0,3,4,1],[1,2,2,1]],[[1,2,0,1],[0,3,2,1],[0,3,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,1],[0,3,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,1],[0,3,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,1],[0,3,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,2,0],[2,3,3,2],[1,3,1,0]],[[1,2,0,1],[0,3,2,0],[2,3,3,2],[2,2,1,0]],[[1,2,0,1],[0,3,2,0],[2,4,3,2],[1,2,1,0]],[[1,2,0,1],[0,3,2,0],[2,3,3,2],[2,1,1,1]],[[1,2,0,1],[0,3,2,0],[2,3,4,2],[1,1,1,1]],[[1,2,0,1],[0,3,2,0],[2,4,3,2],[1,1,1,1]],[[1,2,0,1],[0,3,2,0],[3,3,3,2],[1,1,1,1]],[[1,2,0,1],[0,4,2,0],[2,3,3,2],[1,1,1,1]],[[1,2,0,1],[0,3,2,0],[2,3,3,2],[1,0,2,2]],[[1,2,0,1],[0,3,2,0],[2,3,3,2],[1,0,3,1]],[[1,1,3,1],[0,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,2],[0,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[0,4,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[0,3,4,1],[2,0,1,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,1],[2,0,2,2],[0,2,2,1]],[[1,1,2,2],[0,3,3,1],[2,0,2,2],[0,2,2,1]],[[1,1,2,1],[0,3,4,1],[2,0,2,2],[0,2,2,1]],[[1,1,3,1],[0,3,3,1],[2,0,2,2],[1,2,1,1]],[[1,1,2,2],[0,3,3,1],[2,0,2,2],[1,2,1,1]],[[1,1,2,1],[0,4,3,1],[2,0,2,2],[1,2,1,1]],[[1,1,2,1],[0,3,4,1],[2,0,2,2],[1,2,1,1]],[[1,1,3,1],[0,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,2,2],[0,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[0,4,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[0,3,4,1],[2,0,2,2],[1,2,2,0]],[[1,1,3,1],[0,3,3,1],[2,0,3,0],[1,2,2,1]],[[1,1,2,2],[0,3,3,1],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[0,4,3,1],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,4,1],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[3,0,3,0],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,0,4,0],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,0,3,0],[2,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,0,3,0],[1,3,2,1]],[[1,1,2,1],[0,3,3,1],[2,0,3,0],[1,2,3,1]],[[1,1,2,1],[0,3,3,1],[2,0,3,0],[1,2,2,2]],[[1,1,3,1],[0,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,2],[0,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[0,4,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,4,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[0,3,3,1],[2,0,4,1],[1,2,1,1]],[[1,1,3,1],[0,3,3,1],[2,0,3,1],[1,2,2,0]],[[1,1,2,2],[0,3,3,1],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[0,4,3,1],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[0,3,4,1],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[3,0,3,1],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,0,4,1],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,0,3,1],[2,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,0,3,1],[1,3,2,0]],[[1,1,2,1],[0,3,3,1],[2,0,3,1],[1,2,3,0]],[[1,1,3,1],[0,3,3,1],[2,0,3,2],[0,1,2,1]],[[1,1,2,2],[0,3,3,1],[2,0,3,2],[0,1,2,1]],[[1,1,2,1],[0,3,4,1],[2,0,3,2],[0,1,2,1]],[[1,1,3,1],[0,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,2,2],[0,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[0,3,4,1],[2,0,3,2],[0,2,1,1]],[[1,1,3,1],[0,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,2,2],[0,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[0,3,4,1],[2,0,3,2],[0,2,2,0]],[[1,2,0,1],[0,3,2,0],[2,3,3,2],[2,0,2,1]],[[1,2,0,1],[0,3,2,0],[2,3,4,2],[1,0,2,1]],[[1,2,0,1],[0,3,2,0],[2,4,3,2],[1,0,2,1]],[[1,2,0,1],[0,3,2,0],[3,3,3,2],[1,0,2,1]],[[1,2,0,1],[0,4,2,0],[2,3,3,2],[1,0,2,1]],[[1,1,3,1],[0,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,2],[0,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[0,4,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,4,1],[2,1,0,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,1],[2,1,1,2],[0,2,2,1]],[[1,1,2,2],[0,3,3,1],[2,1,1,2],[0,2,2,1]],[[1,1,2,1],[0,4,3,1],[2,1,1,2],[0,2,2,1]],[[1,1,2,1],[0,3,4,1],[2,1,1,2],[0,2,2,1]],[[1,1,3,1],[0,3,3,1],[2,1,2,2],[0,2,1,1]],[[1,1,2,2],[0,3,3,1],[2,1,2,2],[0,2,1,1]],[[1,1,2,1],[0,4,3,1],[2,1,2,2],[0,2,1,1]],[[1,1,2,1],[0,3,4,1],[2,1,2,2],[0,2,1,1]],[[1,1,3,1],[0,3,3,1],[2,1,2,2],[0,2,2,0]],[[1,1,2,2],[0,3,3,1],[2,1,2,2],[0,2,2,0]],[[1,1,2,1],[0,4,3,1],[2,1,2,2],[0,2,2,0]],[[1,1,2,1],[0,3,4,1],[2,1,2,2],[0,2,2,0]],[[1,2,0,1],[0,3,2,0],[2,3,3,2],[0,3,1,1]],[[1,2,0,1],[0,3,2,0],[2,3,4,2],[0,2,1,1]],[[1,2,0,1],[0,3,2,0],[2,4,3,2],[0,2,1,1]],[[1,2,0,1],[0,3,2,0],[3,3,3,2],[0,2,1,1]],[[1,2,0,1],[0,4,2,0],[2,3,3,2],[0,2,1,1]],[[1,2,0,1],[0,3,2,0],[2,3,3,2],[0,1,2,2]],[[1,2,0,1],[0,3,2,0],[2,3,3,2],[0,1,3,1]],[[1,2,0,1],[0,3,2,0],[2,3,4,2],[0,1,2,1]],[[1,2,0,1],[0,3,2,0],[2,4,3,2],[0,1,2,1]],[[1,1,3,1],[0,3,3,1],[2,1,3,0],[0,2,2,1]],[[1,1,2,2],[0,3,3,1],[2,1,3,0],[0,2,2,1]],[[1,1,2,1],[0,4,3,1],[2,1,3,0],[0,2,2,1]],[[1,1,2,1],[0,3,4,1],[2,1,3,0],[0,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,1,4,0],[0,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,1,3,0],[0,3,2,1]],[[1,1,2,1],[0,3,3,1],[2,1,3,0],[0,2,3,1]],[[1,1,2,1],[0,3,3,1],[2,1,3,0],[0,2,2,2]],[[1,1,3,1],[0,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,1,2,2],[0,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,1,2,1],[0,4,3,1],[2,1,3,1],[0,2,1,1]],[[1,1,2,1],[0,3,4,1],[2,1,3,1],[0,2,1,1]],[[1,1,2,1],[0,3,3,1],[2,1,4,1],[0,2,1,1]],[[1,1,3,1],[0,3,3,1],[2,1,3,1],[0,2,2,0]],[[1,1,2,2],[0,3,3,1],[2,1,3,1],[0,2,2,0]],[[1,1,2,1],[0,4,3,1],[2,1,3,1],[0,2,2,0]],[[1,1,2,1],[0,3,4,1],[2,1,3,1],[0,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,1,4,1],[0,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,1,3,1],[0,3,2,0]],[[1,1,2,1],[0,3,3,1],[2,1,3,1],[0,2,3,0]],[[1,2,0,1],[0,3,2,0],[3,3,3,2],[0,1,2,1]],[[1,2,0,1],[0,4,2,0],[2,3,3,2],[0,1,2,1]],[[1,2,0,1],[0,3,2,0],[2,3,3,1],[1,3,1,1]],[[1,2,0,1],[0,3,2,0],[2,3,3,1],[2,2,1,1]],[[1,2,0,1],[0,3,2,0],[2,4,3,1],[1,2,1,1]],[[1,2,0,1],[0,3,2,0],[2,3,3,0],[1,2,3,1]],[[1,1,3,1],[0,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,1,2,2],[0,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[0,3,4,1],[2,1,3,2],[0,0,2,1]],[[1,1,3,1],[0,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,1,2,2],[0,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,4,1],[2,1,3,2],[0,1,1,1]],[[1,1,3,1],[0,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,1,2,2],[0,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[0,3,4,1],[2,1,3,2],[0,1,2,0]],[[1,2,0,1],[0,3,2,0],[2,3,3,0],[1,3,2,1]],[[1,2,0,1],[0,3,2,0],[2,3,3,0],[2,2,2,1]],[[1,2,0,1],[0,3,2,0],[2,4,3,0],[1,2,2,1]],[[1,1,3,1],[0,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,1,2,2],[0,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[0,3,4,1],[2,1,3,2],[1,0,1,1]],[[1,1,3,1],[0,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,1,2,2],[0,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[0,3,4,1],[2,1,3,2],[1,0,2,0]],[[1,2,0,1],[0,3,2,0],[2,3,2,2],[1,3,2,0]],[[1,2,0,1],[0,3,2,0],[2,3,2,2],[2,2,2,0]],[[1,2,0,1],[0,3,2,0],[2,4,2,2],[1,2,2,0]],[[1,2,0,1],[0,3,2,0],[2,3,2,2],[2,1,2,1]],[[1,2,0,1],[0,3,2,0],[2,4,2,2],[1,1,2,1]],[[1,2,0,1],[0,3,2,0],[3,3,2,2],[1,1,2,1]],[[1,2,0,1],[0,4,2,0],[2,3,2,2],[1,1,2,1]],[[1,2,0,1],[0,3,2,0],[2,3,2,2],[0,2,2,2]],[[1,2,0,1],[0,3,2,0],[2,3,2,2],[0,2,3,1]],[[1,2,0,1],[0,3,2,0],[2,3,2,2],[0,3,2,1]],[[1,2,0,1],[0,3,2,0],[2,4,2,2],[0,2,2,1]],[[1,2,0,1],[0,3,2,0],[3,3,2,2],[0,2,2,1]],[[1,2,0,1],[0,4,2,0],[2,3,2,2],[0,2,2,1]],[[1,2,0,1],[0,3,2,0],[2,3,2,1],[1,2,3,1]],[[1,2,0,1],[0,3,2,0],[2,3,2,1],[1,3,2,1]],[[1,2,0,1],[0,3,2,0],[2,3,2,1],[2,2,2,1]],[[1,2,0,1],[0,3,2,0],[2,4,2,1],[1,2,2,1]],[[1,2,0,1],[0,3,2,0],[2,2,3,2],[1,3,1,1]],[[1,2,0,1],[0,3,2,0],[2,2,3,2],[2,2,1,1]],[[1,2,0,1],[0,3,2,0],[3,2,3,2],[1,2,1,1]],[[1,2,0,1],[0,3,2,0],[2,2,3,2],[0,2,2,2]],[[1,2,0,1],[0,3,2,0],[2,2,3,2],[0,2,3,1]],[[1,2,0,1],[0,3,2,0],[2,2,3,2],[0,3,2,1]],[[1,2,0,1],[0,3,2,0],[2,2,4,2],[0,2,2,1]],[[1,1,2,1],[0,3,3,1],[3,2,0,1],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,2,0,1],[2,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,2,0,1],[1,3,2,1]],[[1,1,2,1],[0,3,3,1],[2,2,0,1],[1,2,3,1]],[[1,1,2,1],[0,3,3,1],[2,2,0,1],[1,2,2,2]],[[1,1,3,1],[0,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,2,2],[0,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,2,1],[0,4,3,1],[2,2,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,4,1],[2,2,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,3,1],[3,2,0,2],[1,2,1,1]],[[1,1,2,1],[0,3,3,1],[2,2,0,2],[2,2,1,1]],[[1,1,2,1],[0,3,3,1],[2,2,0,2],[1,3,1,1]],[[1,1,2,1],[0,3,3,1],[3,2,0,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,2,0,2],[2,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,2,0,2],[1,3,2,0]],[[1,1,2,1],[0,3,3,1],[2,2,0,2],[1,2,3,0]],[[1,1,2,1],[0,3,3,1],[3,2,1,0],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,2,1,0],[2,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,2,1,0],[1,3,2,1]],[[1,1,2,1],[0,3,3,1],[2,2,1,0],[1,2,3,1]],[[1,1,2,1],[0,3,3,1],[2,2,1,0],[1,2,2,2]],[[1,1,2,1],[0,3,3,1],[3,2,1,1],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,2,1,1],[2,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,2,1,1],[1,3,2,0]],[[1,1,2,1],[0,3,3,1],[2,2,1,1],[1,2,3,0]],[[1,1,3,1],[0,3,3,1],[2,2,1,2],[0,1,2,1]],[[1,1,2,2],[0,3,3,1],[2,2,1,2],[0,1,2,1]],[[1,1,2,1],[0,4,3,1],[2,2,1,2],[0,1,2,1]],[[1,1,2,1],[0,3,4,1],[2,2,1,2],[0,1,2,1]],[[1,1,3,1],[0,3,3,1],[2,2,1,2],[1,0,2,1]],[[1,1,2,2],[0,3,3,1],[2,2,1,2],[1,0,2,1]],[[1,1,2,1],[0,4,3,1],[2,2,1,2],[1,0,2,1]],[[1,1,2,1],[0,3,4,1],[2,2,1,2],[1,0,2,1]],[[1,1,2,1],[0,3,3,1],[3,2,1,2],[1,2,0,1]],[[1,1,2,1],[0,3,3,1],[2,2,1,2],[2,2,0,1]],[[1,1,2,1],[0,3,3,1],[2,2,1,2],[1,3,0,1]],[[1,1,2,1],[0,3,3,1],[3,2,1,2],[1,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,2,1,2],[2,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,2,1,2],[1,3,1,0]],[[1,2,0,1],[0,3,2,0],[2,2,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,0],[2,2,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,0],[2,2,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,0],[2,2,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,0],[3,2,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,2,0],[2,1,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,0],[2,1,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,0],[2,1,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,0],[2,1,3,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,0],[2,1,4,2],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[3,2,2,0],[1,2,1,1]],[[1,1,2,1],[0,3,3,1],[2,2,2,0],[2,2,1,1]],[[1,1,2,1],[0,3,3,1],[2,2,2,0],[1,3,1,1]],[[1,1,2,1],[0,3,3,1],[3,2,2,1],[1,2,0,1]],[[1,1,2,1],[0,3,3,1],[2,2,2,1],[2,2,0,1]],[[1,1,2,1],[0,3,3,1],[2,2,2,1],[1,3,0,1]],[[1,1,2,1],[0,3,3,1],[3,2,2,1],[1,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,2,2,1],[2,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,2,2,1],[1,3,1,0]],[[1,2,0,1],[0,3,2,0],[3,1,3,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,1],[2,2,2,2],[0,0,2,1]],[[1,1,2,2],[0,3,3,1],[2,2,2,2],[0,0,2,1]],[[1,1,2,1],[0,4,3,1],[2,2,2,2],[0,0,2,1]],[[1,1,2,1],[0,3,4,1],[2,2,2,2],[0,0,2,1]],[[1,1,3,1],[0,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,1,2,2],[0,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,1,2,1],[0,4,3,1],[2,2,2,2],[0,1,1,1]],[[1,1,2,1],[0,3,4,1],[2,2,2,2],[0,1,1,1]],[[1,1,3,1],[0,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,1,2,2],[0,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,1,2,1],[0,4,3,1],[2,2,2,2],[0,1,2,0]],[[1,1,2,1],[0,3,4,1],[2,2,2,2],[0,1,2,0]],[[1,1,3,1],[0,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,1,2,2],[0,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,1,2,1],[0,4,3,1],[2,2,2,2],[0,2,0,1]],[[1,1,2,1],[0,3,4,1],[2,2,2,2],[0,2,0,1]],[[1,1,3,1],[0,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,1,2,2],[0,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,1,2,1],[0,4,3,1],[2,2,2,2],[0,2,1,0]],[[1,1,2,1],[0,3,4,1],[2,2,2,2],[0,2,1,0]],[[1,2,0,1],[0,3,2,0],[1,3,3,2],[1,3,1,1]],[[1,2,0,1],[0,3,2,0],[1,3,3,2],[2,2,1,1]],[[1,2,0,1],[0,3,2,0],[1,3,4,2],[1,2,1,1]],[[1,2,0,1],[0,3,2,0],[1,4,3,2],[1,2,1,1]],[[1,2,0,1],[0,4,2,0],[1,3,3,2],[1,2,1,1]],[[1,1,3,1],[0,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,1,2,2],[0,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,1,2,1],[0,4,3,1],[2,2,2,2],[1,0,1,1]],[[1,1,2,1],[0,3,4,1],[2,2,2,2],[1,0,1,1]],[[1,1,3,1],[0,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,1,2,2],[0,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,1,2,1],[0,4,3,1],[2,2,2,2],[1,0,2,0]],[[1,1,2,1],[0,3,4,1],[2,2,2,2],[1,0,2,0]],[[1,1,3,1],[0,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,2,2],[0,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,2,1],[0,4,3,1],[2,2,2,2],[1,1,0,1]],[[1,1,2,1],[0,3,4,1],[2,2,2,2],[1,1,0,1]],[[1,1,3,1],[0,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,1,2,2],[0,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,1,2,1],[0,4,3,1],[2,2,2,2],[1,1,1,0]],[[1,1,2,1],[0,3,4,1],[2,2,2,2],[1,1,1,0]],[[1,2,0,1],[0,3,2,0],[1,3,3,2],[1,1,2,2]],[[1,2,0,1],[0,3,2,0],[1,3,3,2],[1,1,3,1]],[[1,2,0,1],[0,3,2,0],[1,3,4,2],[1,1,2,1]],[[1,2,0,1],[0,3,2,0],[1,4,3,2],[1,1,2,1]],[[1,2,0,1],[0,4,2,0],[1,3,3,2],[1,1,2,1]],[[1,2,0,1],[0,3,2,0],[1,3,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,0],[1,3,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,0],[1,3,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,0],[1,3,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,0],[1,4,2,2],[1,2,2,1]],[[1,2,0,1],[0,4,2,0],[1,3,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,2,0],[1,2,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,0],[1,2,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,0],[1,2,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,0],[1,2,3,2],[2,2,2,1]],[[1,2,0,1],[0,3,2,0],[1,2,4,2],[1,2,2,1]],[[1,2,0,1],[0,3,2,0],[0,3,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,2,0],[0,3,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,2,0],[0,3,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,2,0],[0,3,4,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,1],[2,2,3,0],[0,1,2,1]],[[1,1,2,2],[0,3,3,1],[2,2,3,0],[0,1,2,1]],[[1,1,2,1],[0,4,3,1],[2,2,3,0],[0,1,2,1]],[[1,1,2,1],[0,3,4,1],[2,2,3,0],[0,1,2,1]],[[1,1,2,1],[0,3,3,1],[2,2,4,0],[0,1,2,1]],[[1,1,2,1],[0,3,3,1],[2,2,3,0],[0,1,3,1]],[[1,1,2,1],[0,3,3,1],[2,2,3,0],[0,1,2,2]],[[1,1,3,1],[0,3,3,1],[2,2,3,0],[0,2,1,1]],[[1,1,2,2],[0,3,3,1],[2,2,3,0],[0,2,1,1]],[[1,1,2,1],[0,4,3,1],[2,2,3,0],[0,2,1,1]],[[1,1,2,1],[0,3,4,1],[2,2,3,0],[0,2,1,1]],[[1,1,2,1],[0,3,3,1],[2,2,4,0],[0,2,1,1]],[[1,1,3,1],[0,3,3,1],[2,2,3,0],[1,0,2,1]],[[1,1,2,2],[0,3,3,1],[2,2,3,0],[1,0,2,1]],[[1,1,2,1],[0,4,3,1],[2,2,3,0],[1,0,2,1]],[[1,1,2,1],[0,3,4,1],[2,2,3,0],[1,0,2,1]],[[1,1,2,1],[0,3,3,1],[2,2,4,0],[1,0,2,1]],[[1,1,2,1],[0,3,3,1],[2,2,3,0],[1,0,3,1]],[[1,1,2,1],[0,3,3,1],[2,2,3,0],[1,0,2,2]],[[1,1,3,1],[0,3,3,1],[2,2,3,0],[1,1,1,1]],[[1,1,2,2],[0,3,3,1],[2,2,3,0],[1,1,1,1]],[[1,1,2,1],[0,4,3,1],[2,2,3,0],[1,1,1,1]],[[1,1,2,1],[0,3,4,1],[2,2,3,0],[1,1,1,1]],[[1,1,2,1],[0,3,3,1],[2,2,4,0],[1,1,1,1]],[[1,1,2,1],[0,3,3,1],[3,2,3,0],[1,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,2,3,0],[2,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,2,3,0],[1,3,1,0]],[[1,1,3,1],[0,3,3,1],[2,2,3,1],[0,0,2,1]],[[1,1,2,2],[0,3,3,1],[2,2,3,1],[0,0,2,1]],[[1,1,2,1],[0,4,3,1],[2,2,3,1],[0,0,2,1]],[[1,1,2,1],[0,3,4,1],[2,2,3,1],[0,0,2,1]],[[1,1,2,1],[0,3,3,1],[2,2,4,1],[0,0,2,1]],[[1,1,3,1],[0,3,3,1],[2,2,3,1],[0,1,1,1]],[[1,1,2,2],[0,3,3,1],[2,2,3,1],[0,1,1,1]],[[1,1,2,1],[0,4,3,1],[2,2,3,1],[0,1,1,1]],[[1,1,2,1],[0,3,4,1],[2,2,3,1],[0,1,1,1]],[[1,1,2,1],[0,3,3,1],[2,2,4,1],[0,1,1,1]],[[1,1,3,1],[0,3,3,1],[2,2,3,1],[0,1,2,0]],[[1,1,2,2],[0,3,3,1],[2,2,3,1],[0,1,2,0]],[[1,1,2,1],[0,4,3,1],[2,2,3,1],[0,1,2,0]],[[1,1,2,1],[0,3,4,1],[2,2,3,1],[0,1,2,0]],[[1,1,2,1],[0,3,3,1],[2,2,4,1],[0,1,2,0]],[[1,1,2,1],[0,3,3,1],[2,2,3,1],[0,1,3,0]],[[1,1,3,1],[0,3,3,1],[2,2,3,1],[0,2,0,1]],[[1,1,2,2],[0,3,3,1],[2,2,3,1],[0,2,0,1]],[[1,1,2,1],[0,4,3,1],[2,2,3,1],[0,2,0,1]],[[1,1,2,1],[0,3,4,1],[2,2,3,1],[0,2,0,1]],[[1,1,2,1],[0,3,3,1],[2,2,4,1],[0,2,0,1]],[[1,1,3,1],[0,3,3,1],[2,2,3,1],[0,2,1,0]],[[1,1,2,2],[0,3,3,1],[2,2,3,1],[0,2,1,0]],[[1,1,2,1],[0,4,3,1],[2,2,3,1],[0,2,1,0]],[[1,1,2,1],[0,3,4,1],[2,2,3,1],[0,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,2,4,1],[0,2,1,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[0,3,1,2],[2,4,3,2],[1,2,0,0]],[[1,2,0,1],[0,3,1,2],[3,3,3,2],[1,2,0,0]],[[1,2,0,1],[0,4,1,2],[2,3,3,2],[1,2,0,0]],[[1,3,0,1],[0,3,1,2],[2,3,3,2],[1,2,0,0]],[[2,2,0,1],[0,3,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,3,1],[0,3,3,1],[2,2,3,1],[1,0,1,1]],[[1,1,2,2],[0,3,3,1],[2,2,3,1],[1,0,1,1]],[[1,1,2,1],[0,4,3,1],[2,2,3,1],[1,0,1,1]],[[1,1,2,1],[0,3,4,1],[2,2,3,1],[1,0,1,1]],[[1,1,2,1],[0,3,3,1],[2,2,4,1],[1,0,1,1]],[[1,1,3,1],[0,3,3,1],[2,2,3,1],[1,0,2,0]],[[1,1,2,2],[0,3,3,1],[2,2,3,1],[1,0,2,0]],[[1,1,2,1],[0,4,3,1],[2,2,3,1],[1,0,2,0]],[[1,1,2,1],[0,3,4,1],[2,2,3,1],[1,0,2,0]],[[1,1,2,1],[0,3,3,1],[2,2,4,1],[1,0,2,0]],[[1,1,2,1],[0,3,3,1],[2,2,3,1],[1,0,3,0]],[[1,1,3,1],[0,3,3,1],[2,2,3,1],[1,1,0,1]],[[1,1,2,2],[0,3,3,1],[2,2,3,1],[1,1,0,1]],[[1,1,2,1],[0,4,3,1],[2,2,3,1],[1,1,0,1]],[[1,1,2,1],[0,3,4,1],[2,2,3,1],[1,1,0,1]],[[1,1,2,1],[0,3,3,1],[2,2,4,1],[1,1,0,1]],[[1,1,3,1],[0,3,3,1],[2,2,3,1],[1,1,1,0]],[[1,1,2,2],[0,3,3,1],[2,2,3,1],[1,1,1,0]],[[1,1,2,1],[0,4,3,1],[2,2,3,1],[1,1,1,0]],[[1,1,2,1],[0,3,4,1],[2,2,3,1],[1,1,1,0]],[[1,1,2,1],[0,3,3,1],[2,2,4,1],[1,1,1,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,2,0,1],[0,3,1,2],[2,3,4,2],[1,1,1,0]],[[1,2,0,1],[0,3,1,2],[2,4,3,2],[1,1,1,0]],[[1,2,0,1],[0,3,1,2],[3,3,3,2],[1,1,1,0]],[[1,2,0,1],[0,3,1,3],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[0,4,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,0,2],[0,3,1,2],[2,3,3,2],[1,1,1,0]],[[1,3,0,1],[0,3,1,2],[2,3,3,2],[1,1,1,0]],[[2,2,0,1],[0,3,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[1,1,0,2]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[2,1,0,1]],[[1,2,0,1],[0,3,1,2],[2,3,3,3],[1,1,0,1]],[[1,1,3,1],[0,3,3,1],[2,2,3,2],[0,1,0,1]],[[1,1,2,2],[0,3,3,1],[2,2,3,2],[0,1,0,1]],[[1,1,2,1],[0,4,3,1],[2,2,3,2],[0,1,0,1]],[[1,1,2,1],[0,3,4,1],[2,2,3,2],[0,1,0,1]],[[1,2,0,1],[0,3,1,2],[2,3,4,2],[1,1,0,1]],[[1,2,0,1],[0,3,1,2],[2,4,3,2],[1,1,0,1]],[[1,2,0,1],[0,3,1,2],[3,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,3,1,3],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,4,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,0,2],[0,3,1,2],[2,3,3,2],[1,1,0,1]],[[1,3,0,1],[0,3,1,2],[2,3,3,2],[1,1,0,1]],[[2,2,0,1],[0,3,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[1,0,3,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[2,0,2,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,3],[1,0,2,0]],[[1,2,0,1],[0,3,1,2],[2,3,4,2],[1,0,2,0]],[[1,2,0,1],[0,3,1,2],[2,4,3,2],[1,0,2,0]],[[1,2,0,1],[0,3,1,2],[3,3,3,2],[1,0,2,0]],[[1,2,0,1],[0,3,1,3],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[0,4,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,0,2],[0,3,1,2],[2,3,3,2],[1,0,2,0]],[[1,3,0,1],[0,3,1,2],[2,3,3,2],[1,0,2,0]],[[2,2,0,1],[0,3,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[1,0,1,2]],[[1,1,3,1],[0,3,3,1],[2,2,3,2],[1,0,0,1]],[[1,1,2,2],[0,3,3,1],[2,2,3,2],[1,0,0,1]],[[1,1,2,1],[0,4,3,1],[2,2,3,2],[1,0,0,1]],[[1,1,2,1],[0,3,4,1],[2,2,3,2],[1,0,0,1]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[2,0,1,1]],[[1,2,0,1],[0,3,1,2],[2,3,3,3],[1,0,1,1]],[[1,2,0,1],[0,3,1,2],[2,3,4,2],[1,0,1,1]],[[1,2,0,1],[0,3,1,2],[2,4,3,2],[1,0,1,1]],[[1,2,0,1],[0,3,1,2],[3,3,3,2],[1,0,1,1]],[[1,2,0,1],[0,3,1,3],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[0,4,1,2],[2,3,3,2],[1,0,1,1]],[[1,2,0,2],[0,3,1,2],[2,3,3,2],[1,0,1,1]],[[1,3,0,1],[0,3,1,2],[2,3,3,2],[1,0,1,1]],[[2,2,0,1],[0,3,1,2],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,3],[0,2,1,0]],[[1,2,0,1],[0,3,1,2],[2,3,4,2],[0,2,1,0]],[[1,2,0,1],[0,3,1,2],[2,4,3,2],[0,2,1,0]],[[1,2,0,1],[0,3,1,2],[3,3,3,2],[0,2,1,0]],[[1,2,0,1],[0,3,1,3],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[0,4,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,0,2],[0,3,1,2],[2,3,3,2],[0,2,1,0]],[[1,3,0,1],[0,3,1,2],[2,3,3,2],[0,2,1,0]],[[2,2,0,1],[0,3,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[0,2,0,2]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[0,3,0,1]],[[1,2,0,1],[0,3,1,2],[2,3,3,3],[0,2,0,1]],[[1,2,0,1],[0,3,1,2],[2,3,4,2],[0,2,0,1]],[[1,2,0,1],[0,3,1,2],[2,4,3,2],[0,2,0,1]],[[1,2,0,1],[0,3,1,2],[3,3,3,2],[0,2,0,1]],[[1,2,0,1],[0,3,1,3],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[0,4,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,0,2],[0,3,1,2],[2,3,3,2],[0,2,0,1]],[[1,3,0,1],[0,3,1,2],[2,3,3,2],[0,2,0,1]],[[2,2,0,1],[0,3,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[0,1,3,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,3],[0,1,2,0]],[[1,2,0,1],[0,3,1,2],[2,3,4,2],[0,1,2,0]],[[1,2,0,1],[0,3,1,2],[2,4,3,2],[0,1,2,0]],[[1,2,0,1],[0,3,1,2],[3,3,3,2],[0,1,2,0]],[[1,2,0,1],[0,3,1,3],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[0,4,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,0,2],[0,3,1,2],[2,3,3,2],[0,1,2,0]],[[1,3,0,1],[0,3,1,2],[2,3,3,2],[0,1,2,0]],[[2,2,0,1],[0,3,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[0,1,1,2]],[[1,2,0,1],[0,3,1,2],[2,3,3,3],[0,1,1,1]],[[1,2,0,1],[0,3,1,2],[2,3,4,2],[0,1,1,1]],[[1,2,0,1],[0,3,1,2],[2,4,3,2],[0,1,1,1]],[[1,2,0,1],[0,3,1,2],[3,3,3,2],[0,1,1,1]],[[1,2,0,1],[0,3,1,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[0,3,3,1],[3,3,0,0],[1,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,3,0,0],[2,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,3,0,0],[1,3,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,2,2],[0,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[0,4,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[0,3,4,1],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[0,3,3,1],[3,3,0,1],[0,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,4,0,1],[0,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,3,0,1],[0,3,2,1]],[[1,1,2,1],[0,3,3,1],[2,3,0,1],[0,2,3,1]],[[1,1,2,1],[0,3,3,1],[2,3,0,1],[0,2,2,2]],[[1,1,3,1],[0,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,2,2],[0,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[0,4,3,1],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[0,3,4,1],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[0,3,3,1],[3,3,0,1],[1,1,2,1]],[[1,1,2,1],[0,3,3,1],[2,4,0,1],[1,1,2,1]],[[1,1,2,1],[0,3,3,1],[2,3,0,1],[2,1,2,1]],[[1,1,2,1],[0,3,3,1],[3,3,0,1],[1,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,0,1],[2,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,0,1],[1,3,2,0]],[[1,1,3,1],[0,3,3,1],[2,3,0,2],[0,1,2,1]],[[1,1,2,2],[0,3,3,1],[2,3,0,2],[0,1,2,1]],[[1,1,2,1],[0,4,3,1],[2,3,0,2],[0,1,2,1]],[[1,1,2,1],[0,3,4,1],[2,3,0,2],[0,1,2,1]],[[1,1,2,1],[0,3,3,1],[3,3,0,2],[0,1,2,1]],[[1,1,2,1],[0,3,3,1],[2,4,0,2],[0,1,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,0,2],[0,2,1,1]],[[1,1,2,2],[0,3,3,1],[2,3,0,2],[0,2,1,1]],[[1,1,2,1],[0,4,3,1],[2,3,0,2],[0,2,1,1]],[[1,1,2,1],[0,3,4,1],[2,3,0,2],[0,2,1,1]],[[1,1,2,1],[0,3,3,1],[3,3,0,2],[0,2,1,1]],[[1,1,2,1],[0,3,3,1],[2,4,0,2],[0,2,1,1]],[[1,1,2,1],[0,3,3,1],[2,3,0,2],[0,3,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[0,3,3,1],[3,3,0,2],[0,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,4,0,2],[0,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,0,2],[0,3,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,0,2],[0,2,3,0]],[[1,1,3,1],[0,3,3,1],[2,3,0,2],[1,0,2,1]],[[1,1,2,2],[0,3,3,1],[2,3,0,2],[1,0,2,1]],[[1,1,2,1],[0,4,3,1],[2,3,0,2],[1,0,2,1]],[[1,1,2,1],[0,3,4,1],[2,3,0,2],[1,0,2,1]],[[1,1,2,1],[0,3,3,1],[3,3,0,2],[1,0,2,1]],[[1,1,2,1],[0,3,3,1],[2,4,0,2],[1,0,2,1]],[[1,1,2,1],[0,3,3,1],[2,3,0,2],[2,0,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,0,2],[1,1,1,1]],[[1,1,2,2],[0,3,3,1],[2,3,0,2],[1,1,1,1]],[[1,1,2,1],[0,4,3,1],[2,3,0,2],[1,1,1,1]],[[1,1,2,1],[0,3,4,1],[2,3,0,2],[1,1,1,1]],[[1,1,2,1],[0,3,3,1],[3,3,0,2],[1,1,1,1]],[[1,1,2,1],[0,3,3,1],[2,4,0,2],[1,1,1,1]],[[1,1,2,1],[0,3,3,1],[2,3,0,2],[2,1,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,1],[3,3,0,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,1],[2,4,0,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,0,1],[0,4,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,0,2],[0,3,1,2],[2,3,3,2],[0,1,1,1]],[[1,3,0,1],[0,3,1,2],[2,3,3,2],[0,1,1,1]],[[2,2,0,1],[0,3,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[0,3,1,2],[2,3,3,2],[0,0,2,2]],[[1,2,0,1],[0,3,1,2],[2,3,3,3],[0,0,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,4,2],[0,0,2,1]],[[1,2,0,1],[0,3,1,3],[2,3,3,2],[0,0,2,1]],[[1,2,0,2],[0,3,1,2],[2,3,3,2],[0,0,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,1,0],[0,2,2,1]],[[1,1,2,2],[0,3,3,1],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[0,4,3,1],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[0,3,4,1],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[0,3,3,1],[3,3,1,0],[0,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,4,1,0],[0,2,2,1]],[[1,1,2,1],[0,3,3,1],[2,3,1,0],[0,3,2,1]],[[1,1,2,1],[0,3,3,1],[2,3,1,0],[0,2,3,1]],[[1,1,2,1],[0,3,3,1],[2,3,1,0],[0,2,2,2]],[[1,1,3,1],[0,3,3,1],[2,3,1,0],[1,1,2,1]],[[1,1,2,2],[0,3,3,1],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[0,4,3,1],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[0,3,4,1],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[0,3,3,1],[3,3,1,0],[1,1,2,1]],[[1,1,2,1],[0,3,3,1],[2,4,1,0],[1,1,2,1]],[[1,1,2,1],[0,3,3,1],[2,3,1,0],[2,1,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,1,1],[0,2,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[0,3,3,1],[3,3,1,1],[0,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,4,1,1],[0,2,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,1,1],[0,3,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,1,1],[0,2,3,0]],[[1,1,3,1],[0,3,3,1],[2,3,1,1],[1,1,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[0,3,3,1],[3,3,1,1],[1,1,2,0]],[[1,1,2,1],[0,3,3,1],[2,4,1,1],[1,1,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,1,1],[2,1,2,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[0,3,1,2],[2,4,3,1],[1,2,0,1]],[[1,2,0,1],[0,3,1,2],[3,3,3,1],[1,2,0,1]],[[1,1,3,1],[0,3,3,1],[2,3,1,2],[0,1,1,1]],[[1,1,2,2],[0,3,3,1],[2,3,1,2],[0,1,1,1]],[[1,1,2,1],[0,4,3,1],[2,3,1,2],[0,1,1,1]],[[1,1,2,1],[0,3,4,1],[2,3,1,2],[0,1,1,1]],[[1,1,2,1],[0,3,3,1],[3,3,1,2],[0,1,1,1]],[[1,1,2,1],[0,3,3,1],[2,4,1,2],[0,1,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,1,2],[0,1,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,1,2],[0,1,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,1,2],[0,1,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,1,2],[0,1,2,0]],[[1,1,2,1],[0,3,3,1],[3,3,1,2],[0,1,2,0]],[[1,1,2,1],[0,3,3,1],[2,4,1,2],[0,1,2,0]],[[1,1,3,1],[0,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,2,2],[0,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[0,4,3,1],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[0,3,4,1],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[0,3,3,1],[3,3,1,2],[0,2,0,1]],[[1,1,2,1],[0,3,3,1],[2,4,1,2],[0,2,0,1]],[[1,1,2,1],[0,3,3,1],[2,3,1,2],[0,3,0,1]],[[1,1,3,1],[0,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,2,2],[0,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[0,4,3,1],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[0,3,4,1],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[0,3,3,1],[3,3,1,2],[0,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,4,1,2],[0,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,3,1,2],[0,3,1,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[0,3,1,2],[2,3,4,1],[1,1,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,1,2],[1,0,1,1]],[[1,1,2,2],[0,3,3,1],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[0,4,3,1],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[0,3,4,1],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[0,3,3,1],[3,3,1,2],[1,0,1,1]],[[1,1,2,1],[0,3,3,1],[2,4,1,2],[1,0,1,1]],[[1,1,2,1],[0,3,3,1],[2,3,1,2],[2,0,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,1,2],[1,0,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,1,2],[1,0,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,1,2],[1,0,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,1,2],[1,0,2,0]],[[1,1,2,1],[0,3,3,1],[3,3,1,2],[1,0,2,0]],[[1,1,2,1],[0,3,3,1],[2,4,1,2],[1,0,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,1,2],[2,0,2,0]],[[1,1,3,1],[0,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,2,2],[0,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[0,4,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[0,3,4,1],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[0,3,3,1],[3,3,1,2],[1,1,0,1]],[[1,1,2,1],[0,3,3,1],[2,4,1,2],[1,1,0,1]],[[1,1,2,1],[0,3,3,1],[2,3,1,2],[2,1,0,1]],[[1,1,3,1],[0,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,2,2],[0,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[0,4,3,1],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[0,3,4,1],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[0,3,3,1],[3,3,1,2],[1,1,1,0]],[[1,1,2,1],[0,3,3,1],[2,4,1,2],[1,1,1,0]],[[1,1,2,1],[0,3,3,1],[2,3,1,2],[2,1,1,0]],[[1,2,0,1],[0,3,1,2],[2,4,3,1],[1,1,1,1]],[[1,2,0,1],[0,3,1,2],[3,3,3,1],[1,1,1,1]],[[1,2,0,1],[0,4,1,2],[2,3,3,1],[1,1,1,1]],[[1,3,0,1],[0,3,1,2],[2,3,3,1],[1,1,1,1]],[[2,2,0,1],[0,3,1,2],[2,3,3,1],[1,1,1,1]],[[1,2,0,1],[0,3,1,2],[2,3,3,1],[1,0,2,2]],[[1,2,0,1],[0,3,1,2],[2,3,3,1],[1,0,3,1]],[[1,1,3,1],[0,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,2,2],[0,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[0,4,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[0,3,4,1],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[0,3,3,1],[3,3,1,2],[1,2,0,0]],[[1,1,2,1],[0,3,3,1],[2,4,1,2],[1,2,0,0]],[[1,1,2,1],[0,3,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,0,1],[0,3,1,2],[2,3,3,1],[2,0,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,4,1],[1,0,2,1]],[[1,2,0,1],[0,3,1,2],[2,4,3,1],[1,0,2,1]],[[1,2,0,1],[0,3,1,2],[3,3,3,1],[1,0,2,1]],[[1,2,0,1],[0,4,1,2],[2,3,3,1],[1,0,2,1]],[[1,3,0,1],[0,3,1,2],[2,3,3,1],[1,0,2,1]],[[2,2,0,1],[0,3,1,2],[2,3,3,1],[1,0,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,3,1],[0,3,1,1]],[[1,2,0,1],[0,3,1,2],[2,3,4,1],[0,2,1,1]],[[1,2,0,1],[0,3,1,2],[2,4,3,1],[0,2,1,1]],[[1,2,0,1],[0,3,1,2],[3,3,3,1],[0,2,1,1]],[[1,2,0,1],[0,4,1,2],[2,3,3,1],[0,2,1,1]],[[1,3,0,1],[0,3,1,2],[2,3,3,1],[0,2,1,1]],[[2,2,0,1],[0,3,1,2],[2,3,3,1],[0,2,1,1]],[[1,2,0,1],[0,3,1,2],[2,3,3,1],[0,1,2,2]],[[1,2,0,1],[0,3,1,2],[2,3,3,1],[0,1,3,1]],[[1,2,0,1],[0,3,1,2],[2,3,4,1],[0,1,2,1]],[[1,2,0,1],[0,3,1,2],[2,4,3,1],[0,1,2,1]],[[1,2,0,1],[0,3,1,2],[3,3,3,1],[0,1,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,0],[0,1,2,1]],[[1,1,2,2],[0,3,3,1],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[0,4,3,1],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[0,3,4,1],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[0,3,3,1],[3,3,2,0],[0,1,2,1]],[[1,1,2,1],[0,3,3,1],[2,4,2,0],[0,1,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,0],[0,2,1,1]],[[1,1,2,2],[0,3,3,1],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[0,4,3,1],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[0,3,4,1],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[0,3,3,1],[3,3,2,0],[0,2,1,1]],[[1,1,2,1],[0,3,3,1],[2,4,2,0],[0,2,1,1]],[[1,1,2,1],[0,3,3,1],[2,3,2,0],[0,3,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,0],[1,0,2,1]],[[1,1,2,2],[0,3,3,1],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[0,4,3,1],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[0,3,4,1],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[0,3,3,1],[3,3,2,0],[1,0,2,1]],[[1,1,2,1],[0,3,3,1],[2,4,2,0],[1,0,2,1]],[[1,1,2,1],[0,3,3,1],[2,3,2,0],[2,0,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,0],[1,1,1,1]],[[1,1,2,2],[0,3,3,1],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[0,4,3,1],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[0,3,4,1],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[0,3,3,1],[3,3,2,0],[1,1,1,1]],[[1,1,2,1],[0,3,3,1],[2,4,2,0],[1,1,1,1]],[[1,1,2,1],[0,3,3,1],[2,3,2,0],[2,1,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,0],[1,2,0,1]],[[1,1,2,2],[0,3,3,1],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[0,4,3,1],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[0,3,4,1],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[0,3,3,1],[3,3,2,0],[1,2,0,1]],[[1,1,2,1],[0,3,3,1],[2,4,2,0],[1,2,0,1]],[[1,1,2,1],[0,3,3,1],[2,3,2,0],[2,2,0,1]],[[1,2,0,1],[0,4,1,2],[2,3,3,1],[0,1,2,1]],[[1,3,0,1],[0,3,1,2],[2,3,3,1],[0,1,2,1]],[[2,2,0,1],[0,3,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,1],[0,1,1,1]],[[1,1,2,2],[0,3,3,1],[2,3,2,1],[0,1,1,1]],[[1,1,2,1],[0,4,3,1],[2,3,2,1],[0,1,1,1]],[[1,1,2,1],[0,3,4,1],[2,3,2,1],[0,1,1,1]],[[1,1,2,1],[0,3,3,1],[3,3,2,1],[0,1,1,1]],[[1,1,2,1],[0,3,3,1],[2,4,2,1],[0,1,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,1],[0,1,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[0,3,3,1],[3,3,2,1],[0,1,2,0]],[[1,1,2,1],[0,3,3,1],[2,4,2,1],[0,1,2,0]],[[1,1,3,1],[0,3,3,1],[2,3,2,1],[0,2,0,1]],[[1,1,2,2],[0,3,3,1],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[0,4,3,1],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[0,3,4,1],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[0,3,3,1],[3,3,2,1],[0,2,0,1]],[[1,1,2,1],[0,3,3,1],[2,4,2,1],[0,2,0,1]],[[1,1,2,1],[0,3,3,1],[2,3,2,1],[0,3,0,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,1],[0,2,1,0]],[[1,1,2,2],[0,3,3,1],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[0,4,3,1],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[0,3,4,1],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[0,3,3,1],[3,3,2,1],[0,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,4,2,1],[0,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,3,2,1],[0,3,1,0]],[[1,1,3,1],[0,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,2,2],[0,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[0,4,3,1],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[0,3,4,1],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[0,3,3,1],[3,3,2,1],[1,0,1,1]],[[1,1,2,1],[0,3,3,1],[2,4,2,1],[1,0,1,1]],[[1,1,2,1],[0,3,3,1],[2,3,2,1],[2,0,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,1],[1,0,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[0,3,3,1],[3,3,2,1],[1,0,2,0]],[[1,1,2,1],[0,3,3,1],[2,4,2,1],[1,0,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,2,1],[2,0,2,0]],[[1,1,3,1],[0,3,3,1],[2,3,2,1],[1,1,0,1]],[[1,1,2,2],[0,3,3,1],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[0,4,3,1],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[0,3,4,1],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[0,3,3,1],[3,3,2,1],[1,1,0,1]],[[1,1,2,1],[0,3,3,1],[2,4,2,1],[1,1,0,1]],[[1,1,2,1],[0,3,3,1],[2,3,2,1],[2,1,0,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,1],[1,1,1,0]],[[1,1,2,2],[0,3,3,1],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[0,4,3,1],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[0,3,4,1],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[0,3,3,1],[3,3,2,1],[1,1,1,0]],[[1,1,2,1],[0,3,3,1],[2,4,2,1],[1,1,1,0]],[[1,1,2,1],[0,3,3,1],[2,3,2,1],[2,1,1,0]],[[1,2,0,1],[0,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[0,3,1,2],[2,4,2,2],[1,1,2,0]],[[1,2,0,1],[0,3,1,2],[3,3,2,2],[1,1,2,0]],[[1,2,0,1],[0,4,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,3,1],[0,3,3,1],[2,3,2,1],[1,2,0,0]],[[1,1,2,2],[0,3,3,1],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[0,4,3,1],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[0,3,4,1],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[0,3,3,1],[3,3,2,1],[1,2,0,0]],[[1,1,2,1],[0,3,3,1],[2,4,2,1],[1,2,0,0]],[[1,1,2,1],[0,3,3,1],[2,3,2,1],[2,2,0,0]],[[1,3,0,1],[0,3,1,2],[2,3,2,2],[1,1,2,0]],[[2,2,0,1],[0,3,1,2],[2,3,2,2],[1,1,2,0]],[[1,2,0,1],[0,3,1,2],[2,3,2,2],[1,0,2,2]],[[1,2,0,1],[0,3,1,2],[2,3,2,2],[1,0,3,1]],[[1,2,0,1],[0,3,1,2],[2,3,2,3],[1,0,2,1]],[[1,2,0,1],[0,3,1,3],[2,3,2,2],[1,0,2,1]],[[1,2,0,2],[0,3,1,2],[2,3,2,2],[1,0,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,2,2],[0,2,3,0]],[[1,2,0,1],[0,3,1,2],[2,3,2,2],[0,3,2,0]],[[1,2,0,1],[0,3,1,2],[2,4,2,2],[0,2,2,0]],[[1,2,0,1],[0,3,1,2],[3,3,2,2],[0,2,2,0]],[[1,2,0,1],[0,4,1,2],[2,3,2,2],[0,2,2,0]],[[1,3,0,1],[0,3,1,2],[2,3,2,2],[0,2,2,0]],[[2,2,0,1],[0,3,1,2],[2,3,2,2],[0,2,2,0]],[[1,2,0,1],[0,3,1,2],[2,3,2,2],[0,1,2,2]],[[1,2,0,1],[0,3,1,2],[2,3,2,2],[0,1,3,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,2],[0,0,1,1]],[[1,1,2,2],[0,3,3,1],[2,3,2,2],[0,0,1,1]],[[1,1,2,1],[0,4,3,1],[2,3,2,2],[0,0,1,1]],[[1,1,2,1],[0,3,4,1],[2,3,2,2],[0,0,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,2,2],[0,0,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,2,2],[0,0,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,2,2],[0,0,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,2,2],[0,0,2,0]],[[1,2,0,1],[0,3,1,2],[2,3,2,3],[0,1,2,1]],[[1,2,0,1],[0,3,1,3],[2,3,2,2],[0,1,2,1]],[[1,2,0,2],[0,3,1,2],[2,3,2,2],[0,1,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,2,1],[2,1,2,1]],[[1,2,0,1],[0,3,1,2],[2,4,2,1],[1,1,2,1]],[[1,2,0,1],[0,3,1,2],[3,3,2,1],[1,1,2,1]],[[1,2,0,1],[0,4,1,2],[2,3,2,1],[1,1,2,1]],[[1,3,0,1],[0,3,1,2],[2,3,2,1],[1,1,2,1]],[[2,2,0,1],[0,3,1,2],[2,3,2,1],[1,1,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,2,1],[0,2,2,2]],[[1,2,0,1],[0,3,1,2],[2,3,2,1],[0,2,3,1]],[[1,2,0,1],[0,3,1,2],[2,3,2,1],[0,3,2,1]],[[1,2,0,1],[0,3,1,2],[2,4,2,1],[0,2,2,1]],[[1,2,0,1],[0,3,1,2],[3,3,2,1],[0,2,2,1]],[[1,2,0,1],[0,4,1,2],[2,3,2,1],[0,2,2,1]],[[1,3,0,1],[0,3,1,2],[2,3,2,1],[0,2,2,1]],[[2,2,0,1],[0,3,1,2],[2,3,2,1],[0,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,1,2],[1,3,2,0]],[[1,2,0,1],[0,3,1,2],[2,3,1,2],[2,2,2,0]],[[1,2,0,1],[0,3,1,2],[3,3,1,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,2],[2,3,1,2],[2,1,2,1]],[[1,2,0,1],[0,3,1,2],[2,4,1,2],[1,1,2,1]],[[1,2,0,1],[0,3,1,2],[3,3,1,2],[1,1,2,1]],[[1,2,0,1],[0,4,1,2],[2,3,1,2],[1,1,2,1]],[[1,3,0,1],[0,3,1,2],[2,3,1,2],[1,1,2,1]],[[2,2,0,1],[0,3,1,2],[2,3,1,2],[1,1,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,1,2],[0,2,2,2]],[[1,2,0,1],[0,3,1,2],[2,3,1,2],[0,2,3,1]],[[1,2,0,1],[0,3,1,2],[2,3,1,2],[0,3,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,1,3],[0,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,4,1,2],[0,2,2,1]],[[1,2,0,1],[0,3,1,2],[3,3,1,2],[0,2,2,1]],[[1,2,0,1],[0,3,1,3],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[0,4,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,0,2],[0,3,1,2],[2,3,1,2],[0,2,2,1]],[[1,3,0,1],[0,3,1,2],[2,3,1,2],[0,2,2,1]],[[2,2,0,1],[0,3,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,1,1],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,1,1],[2,2,2,1]],[[1,2,0,1],[0,3,1,2],[3,3,1,1],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,0,2],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[2,3,0,2],[2,2,2,1]],[[1,2,0,1],[0,3,1,2],[3,3,0,2],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[0,3,1,2],[2,2,3,2],[2,2,1,0]],[[1,2,0,1],[0,3,1,2],[3,2,3,2],[1,2,1,0]],[[1,2,0,1],[0,3,1,2],[2,2,3,2],[1,3,0,1]],[[1,2,0,1],[0,3,1,2],[2,2,3,2],[2,2,0,1]],[[1,2,0,1],[0,3,1,2],[3,2,3,2],[1,2,0,1]],[[1,2,0,1],[0,3,1,2],[2,2,3,2],[0,2,3,0]],[[1,2,0,1],[0,3,1,2],[2,2,3,2],[0,3,2,0]],[[1,2,0,1],[0,3,1,2],[2,2,3,3],[0,2,2,0]],[[1,2,0,1],[0,3,1,2],[2,2,4,2],[0,2,2,0]],[[1,2,0,1],[0,3,1,3],[2,2,3,2],[0,2,2,0]],[[1,2,0,2],[0,3,1,2],[2,2,3,2],[0,2,2,0]],[[1,2,0,1],[0,3,1,2],[2,2,3,2],[0,2,1,2]],[[1,2,0,1],[0,3,1,2],[2,2,3,3],[0,2,1,1]],[[1,2,0,1],[0,3,1,2],[2,2,4,2],[0,2,1,1]],[[1,2,0,1],[0,3,1,3],[2,2,3,2],[0,2,1,1]],[[1,2,0,2],[0,3,1,2],[2,2,3,2],[0,2,1,1]],[[1,2,0,1],[0,3,1,2],[2,2,3,1],[1,3,1,1]],[[1,2,0,1],[0,3,1,2],[2,2,3,1],[2,2,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,3,0],[0,0,2,1]],[[1,1,2,2],[0,3,3,1],[2,3,3,0],[0,0,2,1]],[[1,1,2,1],[0,4,3,1],[2,3,3,0],[0,0,2,1]],[[1,1,2,1],[0,3,4,1],[2,3,3,0],[0,0,2,1]],[[1,1,2,1],[0,3,3,1],[2,3,4,0],[0,0,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,3,0],[0,1,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,3,0],[0,1,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,3,0],[0,1,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,3,0],[0,1,2,0]],[[1,1,2,1],[0,3,3,1],[3,3,3,0],[0,1,2,0]],[[1,1,2,1],[0,3,3,1],[2,4,3,0],[0,1,2,0]],[[1,1,3,1],[0,3,3,1],[2,3,3,0],[0,2,1,0]],[[1,1,2,2],[0,3,3,1],[2,3,3,0],[0,2,1,0]],[[1,1,2,1],[0,4,3,1],[2,3,3,0],[0,2,1,0]],[[1,1,2,1],[0,3,4,1],[2,3,3,0],[0,2,1,0]],[[1,1,2,1],[0,3,3,1],[3,3,3,0],[0,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,4,3,0],[0,2,1,0]],[[1,1,2,1],[0,3,3,1],[2,3,3,0],[0,3,1,0]],[[1,2,0,1],[0,3,1,2],[3,2,3,1],[1,2,1,1]],[[1,2,0,1],[0,3,1,2],[2,2,3,1],[0,2,2,2]],[[1,2,0,1],[0,3,1,2],[2,2,3,1],[0,2,3,1]],[[1,2,0,1],[0,3,1,2],[2,2,3,1],[0,3,2,1]],[[1,2,0,1],[0,3,1,2],[2,2,4,1],[0,2,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,3,0],[1,0,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,3,0],[1,0,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,3,0],[1,0,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,3,0],[1,0,2,0]],[[1,1,2,1],[0,3,3,1],[3,3,3,0],[1,0,2,0]],[[1,1,2,1],[0,3,3,1],[2,4,3,0],[1,0,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,3,0],[2,0,2,0]],[[1,1,3,1],[0,3,3,1],[2,3,3,0],[1,1,1,0]],[[1,1,2,2],[0,3,3,1],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[0,4,3,1],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[0,3,4,1],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[0,3,3,1],[3,3,3,0],[1,1,1,0]],[[1,1,2,1],[0,3,3,1],[2,4,3,0],[1,1,1,0]],[[1,1,2,1],[0,3,3,1],[2,3,3,0],[2,1,1,0]],[[1,2,0,1],[0,3,1,2],[2,2,2,2],[1,2,3,0]],[[1,2,0,1],[0,3,1,2],[2,2,2,2],[1,3,2,0]],[[1,2,0,1],[0,3,1,2],[2,2,2,2],[2,2,2,0]],[[1,2,0,1],[0,3,1,2],[3,2,2,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,2],[2,2,2,2],[0,2,2,2]],[[1,2,0,1],[0,3,1,2],[2,2,2,2],[0,2,3,1]],[[1,2,0,1],[0,3,1,2],[2,2,2,2],[0,3,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,3,0],[1,2,0,0]],[[1,1,2,2],[0,3,3,1],[2,3,3,0],[1,2,0,0]],[[1,1,2,1],[0,4,3,1],[2,3,3,0],[1,2,0,0]],[[1,1,2,1],[0,3,4,1],[2,3,3,0],[1,2,0,0]],[[1,1,2,1],[0,3,3,1],[3,3,3,0],[1,2,0,0]],[[1,1,2,1],[0,3,3,1],[2,4,3,0],[1,2,0,0]],[[1,1,2,1],[0,3,3,1],[2,3,3,0],[2,2,0,0]],[[1,2,0,1],[0,3,1,2],[2,2,2,3],[0,2,2,1]],[[1,2,0,1],[0,3,1,3],[2,2,2,2],[0,2,2,1]],[[1,2,0,2],[0,3,1,2],[2,2,2,2],[0,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,2,2,1],[1,2,2,2]],[[1,2,0,1],[0,3,1,2],[2,2,2,1],[1,2,3,1]],[[1,2,0,1],[0,3,1,2],[2,2,2,1],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[2,2,2,1],[2,2,2,1]],[[1,2,0,1],[0,3,1,2],[3,2,2,1],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,2,1,2],[1,2,2,2]],[[1,2,0,1],[0,3,1,2],[2,2,1,2],[1,2,3,1]],[[1,2,0,1],[0,3,1,2],[2,2,1,2],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[2,2,1,2],[2,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,2,1,3],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[3,2,1,2],[1,2,2,1]],[[1,2,0,1],[0,3,1,3],[2,2,1,2],[1,2,2,1]],[[1,2,0,2],[0,3,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,1,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,1,2],[2,1,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,1,2],[2,1,3,2],[2,2,2,0]],[[1,1,3,1],[0,3,3,1],[2,3,3,1],[0,0,1,1]],[[1,1,2,2],[0,3,3,1],[2,3,3,1],[0,0,1,1]],[[1,1,2,1],[0,4,3,1],[2,3,3,1],[0,0,1,1]],[[1,1,2,1],[0,3,4,1],[2,3,3,1],[0,0,1,1]],[[1,1,2,1],[0,3,3,1],[2,3,4,1],[0,0,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,3,1],[0,0,2,0]],[[1,1,2,2],[0,3,3,1],[2,3,3,1],[0,0,2,0]],[[1,1,2,1],[0,4,3,1],[2,3,3,1],[0,0,2,0]],[[1,1,2,1],[0,3,4,1],[2,3,3,1],[0,0,2,0]],[[1,1,2,1],[0,3,3,1],[2,3,4,1],[0,0,2,0]],[[1,2,0,1],[0,3,1,2],[2,1,3,3],[1,2,2,0]],[[1,2,0,1],[0,3,1,2],[2,1,4,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,2],[3,1,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,3],[2,1,3,2],[1,2,2,0]],[[1,2,0,2],[0,3,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,2],[2,1,3,2],[1,2,1,2]],[[1,2,0,1],[0,3,1,2],[2,1,3,3],[1,2,1,1]],[[1,2,0,1],[0,3,1,2],[2,1,4,2],[1,2,1,1]],[[1,2,0,1],[0,3,1,3],[2,1,3,2],[1,2,1,1]],[[1,1,3,1],[0,3,3,1],[2,3,3,1],[0,2,0,0]],[[1,1,2,2],[0,3,3,1],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[0,4,3,1],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[0,3,4,1],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[0,3,3,1],[3,3,3,1],[0,2,0,0]],[[1,1,2,1],[0,3,3,1],[2,4,3,1],[0,2,0,0]],[[1,2,0,2],[0,3,1,2],[2,1,3,2],[1,2,1,1]],[[1,2,0,1],[0,3,1,2],[2,1,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,1,2],[2,1,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,1,2],[2,1,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[2,1,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,1,4,1],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[3,1,3,1],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,1,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,1,2],[2,1,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,1,2],[2,1,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[2,1,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,1,2],[2,1,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[3,1,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,1,3],[2,1,2,2],[1,2,2,1]],[[1,2,0,2],[0,3,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,3,1],[1,1,0,0]],[[1,1,2,2],[0,3,3,1],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[0,4,3,1],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[0,3,4,1],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[0,3,3,1],[3,3,3,1],[1,1,0,0]],[[1,1,2,1],[0,3,3,1],[2,4,3,1],[1,1,0,0]],[[1,1,2,1],[0,3,3,1],[2,3,3,1],[2,1,0,0]],[[1,2,0,1],[0,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[0,3,1,2],[1,3,3,2],[2,2,1,0]],[[1,2,0,1],[0,3,1,2],[1,3,3,3],[1,2,1,0]],[[1,2,0,1],[0,3,1,2],[1,3,4,2],[1,2,1,0]],[[1,2,0,1],[0,3,1,2],[1,4,3,2],[1,2,1,0]],[[1,2,0,1],[0,3,1,3],[1,3,3,2],[1,2,1,0]],[[1,2,0,1],[0,4,1,2],[1,3,3,2],[1,2,1,0]],[[1,2,0,2],[0,3,1,2],[1,3,3,2],[1,2,1,0]],[[1,3,0,1],[0,3,1,2],[1,3,3,2],[1,2,1,0]],[[2,2,0,1],[0,3,1,2],[1,3,3,2],[1,2,1,0]],[[1,2,0,1],[0,3,1,2],[1,3,3,2],[1,2,0,2]],[[1,2,0,1],[0,3,1,2],[1,3,3,2],[1,3,0,1]],[[1,2,0,1],[0,3,1,2],[1,3,3,2],[2,2,0,1]],[[1,2,0,1],[0,3,1,2],[1,3,3,3],[1,2,0,1]],[[1,2,0,1],[0,3,1,2],[1,3,4,2],[1,2,0,1]],[[1,2,0,1],[0,3,1,2],[1,4,3,2],[1,2,0,1]],[[1,2,0,1],[0,3,1,3],[1,3,3,2],[1,2,0,1]],[[1,2,0,1],[0,4,1,2],[1,3,3,2],[1,2,0,1]],[[1,2,0,2],[0,3,1,2],[1,3,3,2],[1,2,0,1]],[[1,3,0,1],[0,3,1,2],[1,3,3,2],[1,2,0,1]],[[2,2,0,1],[0,3,1,2],[1,3,3,2],[1,2,0,1]],[[1,2,0,1],[0,3,1,2],[1,3,3,2],[1,1,3,0]],[[1,2,0,1],[0,3,1,2],[1,3,3,3],[1,1,2,0]],[[1,2,0,1],[0,3,1,2],[1,3,4,2],[1,1,2,0]],[[1,2,0,1],[0,3,1,2],[1,4,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,1,3],[1,3,3,2],[1,1,2,0]],[[1,2,0,1],[0,4,1,2],[1,3,3,2],[1,1,2,0]],[[1,2,0,2],[0,3,1,2],[1,3,3,2],[1,1,2,0]],[[1,3,0,1],[0,3,1,2],[1,3,3,2],[1,1,2,0]],[[2,2,0,1],[0,3,1,2],[1,3,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,1,2],[1,3,3,2],[1,1,1,2]],[[1,2,0,1],[0,3,1,2],[1,3,3,3],[1,1,1,1]],[[1,2,0,1],[0,3,1,2],[1,3,4,2],[1,1,1,1]],[[1,2,0,1],[0,3,1,2],[1,4,3,2],[1,1,1,1]],[[1,2,0,1],[0,3,1,3],[1,3,3,2],[1,1,1,1]],[[1,2,0,1],[0,4,1,2],[1,3,3,2],[1,1,1,1]],[[1,2,0,2],[0,3,1,2],[1,3,3,2],[1,1,1,1]],[[1,3,0,1],[0,3,1,2],[1,3,3,2],[1,1,1,1]],[[2,2,0,1],[0,3,1,2],[1,3,3,2],[1,1,1,1]],[[1,2,0,1],[0,3,1,2],[1,3,3,2],[1,0,2,2]],[[1,2,0,1],[0,3,1,2],[1,3,3,3],[1,0,2,1]],[[1,2,0,1],[0,3,1,2],[1,3,4,2],[1,0,2,1]],[[1,2,0,1],[0,3,1,3],[1,3,3,2],[1,0,2,1]],[[1,2,0,2],[0,3,1,2],[1,3,3,2],[1,0,2,1]],[[1,2,0,1],[0,3,1,2],[1,3,3,1],[1,3,1,1]],[[1,2,0,1],[0,3,1,2],[1,3,3,1],[2,2,1,1]],[[1,2,0,1],[0,3,1,2],[1,3,4,1],[1,2,1,1]],[[1,2,0,1],[0,3,1,2],[1,4,3,1],[1,2,1,1]],[[1,2,0,1],[0,4,1,2],[1,3,3,1],[1,2,1,1]],[[1,3,0,1],[0,3,1,2],[1,3,3,1],[1,2,1,1]],[[2,2,0,1],[0,3,1,2],[1,3,3,1],[1,2,1,1]],[[1,2,0,1],[0,3,1,2],[1,3,3,1],[1,1,2,2]],[[1,2,0,1],[0,3,1,2],[1,3,3,1],[1,1,3,1]],[[1,2,0,1],[0,3,1,2],[1,3,4,1],[1,1,2,1]],[[1,2,0,1],[0,3,1,2],[1,4,3,1],[1,1,2,1]],[[1,2,0,1],[0,4,1,2],[1,3,3,1],[1,1,2,1]],[[1,1,3,1],[0,3,3,1],[2,3,3,2],[0,0,0,1]],[[1,1,2,2],[0,3,3,1],[2,3,3,2],[0,0,0,1]],[[1,1,2,1],[0,4,3,1],[2,3,3,2],[0,0,0,1]],[[1,1,2,1],[0,3,4,1],[2,3,3,2],[0,0,0,1]],[[1,3,0,1],[0,3,1,2],[1,3,3,1],[1,1,2,1]],[[2,2,0,1],[0,3,1,2],[1,3,3,1],[1,1,2,1]],[[1,2,0,1],[0,3,1,2],[1,3,2,2],[1,2,3,0]],[[1,2,0,1],[0,3,1,2],[1,3,2,2],[1,3,2,0]],[[1,2,0,1],[0,3,1,2],[1,3,2,2],[2,2,2,0]],[[1,2,0,1],[0,3,1,2],[1,4,2,2],[1,2,2,0]],[[1,2,0,1],[0,4,1,2],[1,3,2,2],[1,2,2,0]],[[1,3,0,1],[0,3,1,2],[1,3,2,2],[1,2,2,0]],[[2,2,0,1],[0,3,1,2],[1,3,2,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,2],[1,3,2,2],[1,1,2,2]],[[1,2,0,1],[0,3,1,2],[1,3,2,2],[1,1,3,1]],[[1,2,0,1],[0,3,1,2],[1,3,2,3],[1,1,2,1]],[[1,2,0,1],[0,3,1,3],[1,3,2,2],[1,1,2,1]],[[1,2,0,2],[0,3,1,2],[1,3,2,2],[1,1,2,1]],[[1,2,0,1],[0,3,1,2],[1,3,2,1],[1,2,2,2]],[[1,2,0,1],[0,3,1,2],[1,3,2,1],[1,2,3,1]],[[1,2,0,1],[0,3,1,2],[1,3,2,1],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[1,3,2,1],[2,2,2,1]],[[1,2,0,1],[0,3,1,2],[1,4,2,1],[1,2,2,1]],[[1,2,0,1],[0,4,1,2],[1,3,2,1],[1,2,2,1]],[[1,3,0,1],[0,3,1,2],[1,3,2,1],[1,2,2,1]],[[2,2,0,1],[0,3,1,2],[1,3,2,1],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[1,3,1,2],[1,2,2,2]],[[1,2,0,1],[0,3,1,2],[1,3,1,2],[1,2,3,1]],[[1,2,0,1],[0,3,1,2],[1,3,1,2],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[1,3,1,2],[2,2,2,1]],[[1,2,0,1],[0,3,1,2],[1,3,1,3],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[1,4,1,2],[1,2,2,1]],[[1,2,0,1],[0,3,1,3],[1,3,1,2],[1,2,2,1]],[[1,2,0,1],[0,4,1,2],[1,3,1,2],[1,2,2,1]],[[1,2,0,2],[0,3,1,2],[1,3,1,2],[1,2,2,1]],[[1,3,0,1],[0,3,1,2],[1,3,1,2],[1,2,2,1]],[[2,2,0,1],[0,3,1,2],[1,3,1,2],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[1,2,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,1,2],[1,2,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,1,2],[1,2,3,2],[2,2,2,0]],[[1,2,0,1],[0,3,1,2],[1,2,3,3],[1,2,2,0]],[[1,2,0,1],[0,3,1,2],[1,2,4,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,3],[1,2,3,2],[1,2,2,0]],[[1,2,0,2],[0,3,1,2],[1,2,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,2],[1,2,3,2],[1,2,1,2]],[[1,2,0,1],[0,3,1,2],[1,2,3,3],[1,2,1,1]],[[1,2,0,1],[0,3,1,2],[1,2,4,2],[1,2,1,1]],[[1,2,0,1],[0,3,1,3],[1,2,3,2],[1,2,1,1]],[[1,2,0,2],[0,3,1,2],[1,2,3,2],[1,2,1,1]],[[1,2,0,1],[0,3,1,2],[1,2,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,1,2],[1,2,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,1,2],[1,2,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[1,2,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,1,2],[1,2,4,1],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[1,2,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,1,2],[1,2,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,1,2],[1,2,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[1,2,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,1,2],[1,2,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,1,3],[1,2,2,2],[1,2,2,1]],[[1,2,0,2],[0,3,1,2],[1,2,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[0,3,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,1,2],[0,3,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,1,2],[0,3,3,3],[1,2,2,0]],[[1,2,0,1],[0,3,1,2],[0,3,4,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,3],[0,3,3,2],[1,2,2,0]],[[1,2,0,2],[0,3,1,2],[0,3,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,2],[0,3,3,2],[1,2,1,2]],[[1,2,0,1],[0,3,1,2],[0,3,3,3],[1,2,1,1]],[[1,2,0,1],[0,3,1,2],[0,3,4,2],[1,2,1,1]],[[1,2,0,1],[0,3,1,3],[0,3,3,2],[1,2,1,1]],[[1,2,0,2],[0,3,1,2],[0,3,3,2],[1,2,1,1]],[[1,2,0,1],[0,3,1,2],[0,3,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,1,2],[0,3,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,1,2],[0,3,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[0,3,4,1],[1,2,2,1]],[[1,2,0,1],[0,3,1,2],[0,3,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,1,2],[0,3,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,1,2],[0,3,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,1,2],[0,3,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,1,3],[0,3,2,2],[1,2,2,1]],[[1,2,0,2],[0,3,1,2],[0,3,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,0,1],[0,3,1,1],[2,4,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,1,1],[3,3,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,1,1],[2,3,3,2],[0,2,3,0]],[[1,2,0,1],[0,3,1,1],[2,3,3,2],[0,3,2,0]],[[1,2,0,1],[0,3,1,1],[2,4,3,2],[0,2,2,0]],[[1,2,0,1],[0,3,1,1],[3,3,3,2],[0,2,2,0]],[[1,2,0,1],[0,3,1,1],[2,3,3,1],[2,1,2,1]],[[1,2,0,1],[0,3,1,1],[2,4,3,1],[1,1,2,1]],[[1,2,0,1],[0,3,1,1],[3,3,3,1],[1,1,2,1]],[[1,2,0,1],[0,3,1,1],[2,3,3,1],[0,2,2,2]],[[1,2,0,1],[0,3,1,1],[2,3,3,1],[0,2,3,1]],[[1,2,0,1],[0,3,1,1],[2,3,3,1],[0,3,2,1]],[[1,2,0,1],[0,3,1,1],[2,4,3,1],[0,2,2,1]],[[1,2,0,1],[0,3,1,1],[3,3,3,1],[0,2,2,1]],[[1,2,0,1],[0,3,1,1],[2,2,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,1,1],[2,2,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,1,1],[2,2,3,2],[2,2,2,0]],[[1,2,0,1],[0,3,1,1],[3,2,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,1],[2,2,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,1,1],[2,2,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,1,1],[2,2,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,1,1],[2,2,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,1,1],[3,2,3,1],[1,2,2,1]],[[1,2,0,1],[0,3,1,1],[1,3,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,1,1],[1,3,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,1,1],[1,3,3,2],[2,2,2,0]],[[1,2,0,1],[0,3,1,1],[1,4,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,1],[1,3,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,1,1],[1,3,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,1,1],[1,3,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,1,1],[1,3,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,1,1],[1,4,3,1],[1,2,2,1]],[[1,2,0,1],[0,3,1,0],[2,3,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,1,0],[2,3,3,2],[2,2,2,0]],[[1,2,0,1],[0,3,1,0],[2,4,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,1,0],[2,3,3,2],[2,1,2,1]],[[1,2,0,1],[0,3,1,0],[2,4,3,2],[1,1,2,1]],[[1,2,0,1],[0,3,1,0],[3,3,3,2],[1,1,2,1]],[[1,2,0,1],[0,3,1,0],[2,3,3,2],[0,2,2,2]],[[1,2,0,1],[0,3,1,0],[2,3,3,2],[0,2,3,1]],[[1,2,0,1],[0,3,1,0],[2,3,3,2],[0,3,2,1]],[[1,2,0,1],[0,3,1,0],[2,4,3,2],[0,2,2,1]],[[1,2,0,1],[0,3,1,0],[3,3,3,2],[0,2,2,1]],[[1,2,0,1],[0,3,1,0],[2,3,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,1,0],[2,3,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,1,0],[2,3,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,1,0],[2,4,3,1],[1,2,2,1]],[[1,2,0,1],[0,3,1,0],[2,2,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,1,0],[2,2,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,1,0],[2,2,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,1,0],[2,2,3,2],[2,2,2,1]],[[1,2,0,1],[0,3,1,0],[3,2,3,2],[1,2,2,1]],[[1,2,0,1],[0,3,1,0],[1,3,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,1,0],[1,3,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,1,0],[1,3,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,1,0],[1,3,3,2],[2,2,2,1]],[[1,2,0,1],[0,3,1,0],[1,4,3,2],[1,2,2,1]],[[1,2,0,1],[0,3,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,0,1],[0,3,0,2],[2,4,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,0,2],[3,3,3,2],[1,1,2,0]],[[1,2,0,1],[0,3,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,0,1],[0,3,0,2],[2,3,3,2],[1,0,3,1]],[[1,2,0,1],[0,3,0,2],[2,3,3,3],[1,0,2,1]],[[1,2,0,1],[0,3,0,2],[2,3,3,2],[0,2,3,0]],[[1,2,0,1],[0,3,0,2],[2,3,3,2],[0,3,2,0]],[[1,2,0,1],[0,3,0,2],[2,4,3,2],[0,2,2,0]],[[1,2,0,1],[0,3,0,2],[3,3,3,2],[0,2,2,0]],[[1,2,0,1],[0,3,0,2],[2,3,3,2],[0,1,2,2]],[[1,2,0,1],[0,3,0,2],[2,3,3,2],[0,1,3,1]],[[1,2,0,1],[0,3,0,2],[2,3,3,3],[0,1,2,1]],[[1,2,0,1],[0,3,0,2],[2,3,3,1],[2,1,2,1]],[[1,2,0,1],[0,3,0,2],[2,4,3,1],[1,1,2,1]],[[1,2,0,1],[0,3,0,2],[3,3,3,1],[1,1,2,1]],[[1,2,0,1],[0,3,0,2],[2,3,3,1],[0,2,2,2]],[[1,2,0,1],[0,3,0,2],[2,3,3,1],[0,2,3,1]],[[1,2,0,1],[0,3,0,2],[2,3,3,1],[0,3,2,1]],[[1,2,0,1],[0,3,0,2],[2,4,3,1],[0,2,2,1]],[[1,2,0,1],[0,3,0,2],[3,3,3,1],[0,2,2,1]],[[1,2,0,1],[0,3,0,2],[2,3,2,2],[2,1,2,1]],[[1,2,0,1],[0,3,0,2],[2,4,2,2],[1,1,2,1]],[[1,2,0,1],[0,3,0,2],[3,3,2,2],[1,1,2,1]],[[1,2,0,1],[0,3,0,2],[2,3,2,2],[0,2,2,2]],[[1,2,0,1],[0,3,0,2],[2,3,2,2],[0,2,3,1]],[[1,2,0,1],[0,3,0,2],[2,3,2,2],[0,3,2,1]],[[1,2,0,1],[0,3,0,2],[2,3,2,3],[0,2,2,1]],[[1,2,0,1],[0,3,0,2],[2,4,2,2],[0,2,2,1]],[[1,2,0,1],[0,3,0,2],[3,3,2,2],[0,2,2,1]],[[1,2,0,1],[0,3,0,2],[2,2,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,0,2],[2,2,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,0,2],[2,2,3,2],[2,2,2,0]],[[1,2,0,1],[0,3,0,2],[3,2,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,0,2],[2,2,3,2],[0,2,2,2]],[[1,2,0,1],[0,3,0,2],[2,2,3,2],[0,2,3,1]],[[1,2,0,1],[0,3,0,2],[2,2,3,2],[0,3,2,1]],[[1,2,0,1],[0,3,0,2],[2,2,3,3],[0,2,2,1]],[[1,2,0,1],[0,3,0,2],[2,2,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,0,2],[2,2,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,0,2],[2,2,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,0,2],[2,2,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,0,2],[3,2,3,1],[1,2,2,1]],[[1,2,0,1],[0,3,0,2],[2,2,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,0,2],[2,2,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,0,2],[2,2,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,0,2],[2,2,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,0,2],[2,2,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,0,2],[3,2,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,0,2],[2,1,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,0,2],[2,1,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,0,2],[2,1,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,0,2],[2,1,3,2],[2,2,2,1]],[[1,2,0,1],[0,3,0,2],[2,1,3,3],[1,2,2,1]],[[1,2,0,1],[0,3,0,2],[3,1,3,2],[1,2,2,1]],[[1,2,0,1],[0,3,0,2],[1,3,3,2],[1,2,3,0]],[[1,2,0,1],[0,3,0,2],[1,3,3,2],[1,3,2,0]],[[1,2,0,1],[0,3,0,2],[1,3,3,2],[2,2,2,0]],[[1,2,0,1],[0,3,0,2],[1,4,3,2],[1,2,2,0]],[[1,2,0,1],[0,3,0,2],[1,3,3,2],[1,1,2,2]],[[1,2,0,1],[0,3,0,2],[1,3,3,2],[1,1,3,1]],[[1,2,0,1],[0,3,0,2],[1,3,3,3],[1,1,2,1]],[[1,2,0,1],[0,3,0,2],[1,3,3,1],[1,2,2,2]],[[1,2,0,1],[0,3,0,2],[1,3,3,1],[1,2,3,1]],[[1,2,0,1],[0,3,0,2],[1,3,3,1],[1,3,2,1]],[[1,2,0,1],[0,3,0,2],[1,3,3,1],[2,2,2,1]],[[1,2,0,1],[0,3,0,2],[1,4,3,1],[1,2,2,1]],[[1,2,0,1],[0,3,0,2],[1,3,2,2],[1,2,2,2]],[[1,2,0,1],[0,3,0,2],[1,3,2,2],[1,2,3,1]],[[1,2,0,1],[0,3,0,2],[1,3,2,2],[1,3,2,1]],[[1,2,0,1],[0,3,0,2],[1,3,2,2],[2,2,2,1]],[[1,2,0,1],[0,3,0,2],[1,3,2,3],[1,2,2,1]],[[1,2,0,1],[0,3,0,2],[1,4,2,2],[1,2,2,1]],[[1,2,0,1],[0,3,0,2],[1,2,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,0,2],[1,2,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,0,2],[1,2,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,0,2],[1,2,3,2],[2,2,2,1]],[[1,2,0,1],[0,3,0,2],[1,2,3,3],[1,2,2,1]],[[1,2,0,1],[0,3,0,2],[0,3,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,0,2],[0,3,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,0,2],[0,3,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,0,2],[0,3,3,3],[1,2,2,1]],[[1,1,3,1],[0,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,2,2],[0,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,3,3],[1,1,0,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,2],[1,1,1,2],[1,2,1,1]],[[1,1,2,2],[0,3,3,2],[1,1,1,2],[1,2,1,1]],[[1,1,2,1],[0,3,3,3],[1,1,1,2],[1,2,1,1]],[[1,1,3,1],[0,3,3,2],[1,1,1,2],[1,2,2,0]],[[1,1,2,2],[0,3,3,2],[1,1,1,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,3],[1,1,1,2],[1,2,2,0]],[[1,2,0,1],[0,3,0,1],[2,3,3,2],[2,1,2,1]],[[1,2,0,1],[0,3,0,1],[2,4,3,2],[1,1,2,1]],[[1,2,0,1],[0,3,0,1],[3,3,3,2],[1,1,2,1]],[[1,2,0,1],[0,3,0,1],[2,3,3,2],[0,2,2,2]],[[1,2,0,1],[0,3,0,1],[2,3,3,2],[0,2,3,1]],[[1,2,0,1],[0,3,0,1],[2,3,3,2],[0,3,2,1]],[[1,2,0,1],[0,3,0,1],[2,4,3,2],[0,2,2,1]],[[1,1,3,1],[0,3,3,2],[1,1,3,0],[1,2,1,1]],[[1,1,2,2],[0,3,3,2],[1,1,3,0],[1,2,1,1]],[[1,1,2,1],[0,3,4,2],[1,1,3,0],[1,2,1,1]],[[1,1,3,1],[0,3,3,2],[1,1,3,0],[1,2,2,0]],[[1,1,2,2],[0,3,3,2],[1,1,3,0],[1,2,2,0]],[[1,1,2,1],[0,4,3,2],[1,1,3,0],[1,2,2,0]],[[1,1,2,1],[0,3,4,2],[1,1,3,0],[1,2,2,0]],[[1,2,0,1],[0,3,0,1],[3,3,3,2],[0,2,2,1]],[[1,2,0,1],[0,3,0,1],[2,2,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,0,1],[2,2,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,0,1],[2,2,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,0,1],[2,2,3,2],[2,2,2,1]],[[1,2,0,1],[0,3,0,1],[3,2,3,2],[1,2,2,1]],[[1,2,0,1],[0,3,0,1],[1,3,3,2],[1,2,2,2]],[[1,2,0,1],[0,3,0,1],[1,3,3,2],[1,2,3,1]],[[1,2,0,1],[0,3,0,1],[1,3,3,2],[1,3,2,1]],[[1,2,0,1],[0,3,0,1],[1,3,3,2],[2,2,2,1]],[[1,2,0,1],[0,3,0,1],[1,4,3,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,2],[1,2,0,2],[1,1,2,1]],[[1,1,2,2],[0,3,3,2],[1,2,0,2],[1,1,2,1]],[[1,1,2,1],[0,3,3,3],[1,2,0,2],[1,1,2,1]],[[1,1,3,1],[0,3,3,2],[1,2,1,2],[1,1,1,1]],[[1,1,2,2],[0,3,3,2],[1,2,1,2],[1,1,1,1]],[[1,1,2,1],[0,3,3,3],[1,2,1,2],[1,1,1,1]],[[1,1,3,1],[0,3,3,2],[1,2,1,2],[1,1,2,0]],[[1,1,2,2],[0,3,3,2],[1,2,1,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,3],[1,2,1,2],[1,1,2,0]],[[1,1,3,1],[0,3,3,2],[1,2,1,2],[1,2,0,1]],[[1,1,2,2],[0,3,3,2],[1,2,1,2],[1,2,0,1]],[[1,1,2,1],[0,3,3,3],[1,2,1,2],[1,2,0,1]],[[1,1,3,1],[0,3,3,2],[1,2,1,2],[1,2,1,0]],[[1,1,2,2],[0,3,3,2],[1,2,1,2],[1,2,1,0]],[[1,1,2,1],[0,3,3,3],[1,2,1,2],[1,2,1,0]],[[1,2,0,1],[0,2,3,2],[2,3,3,3],[1,0,0,1]],[[1,2,0,1],[0,2,3,3],[2,3,3,2],[1,0,0,1]],[[1,2,0,1],[0,2,4,2],[2,3,3,2],[1,0,0,1]],[[1,2,0,2],[0,2,3,2],[2,3,3,2],[1,0,0,1]],[[1,1,3,1],[0,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,2,2],[0,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,1,2,1],[0,3,4,2],[1,2,3,0],[1,1,1,1]],[[1,1,3,1],[0,3,3,2],[1,2,3,0],[1,1,2,0]],[[1,1,2,2],[0,3,3,2],[1,2,3,0],[1,1,2,0]],[[1,1,2,1],[0,4,3,2],[1,2,3,0],[1,1,2,0]],[[1,1,2,1],[0,3,4,2],[1,2,3,0],[1,1,2,0]],[[1,1,3,1],[0,3,3,2],[1,2,3,0],[1,2,0,1]],[[1,1,2,2],[0,3,3,2],[1,2,3,0],[1,2,0,1]],[[1,1,2,1],[0,4,3,2],[1,2,3,0],[1,2,0,1]],[[1,1,2,1],[0,3,4,2],[1,2,3,0],[1,2,0,1]],[[1,1,3,1],[0,3,3,2],[1,2,3,0],[1,2,1,0]],[[1,1,2,2],[0,3,3,2],[1,2,3,0],[1,2,1,0]],[[1,1,2,1],[0,4,3,2],[1,2,3,0],[1,2,1,0]],[[1,1,2,1],[0,3,4,2],[1,2,3,0],[1,2,1,0]],[[1,2,0,1],[0,2,3,2],[2,3,3,3],[0,1,0,1]],[[1,2,0,1],[0,2,3,3],[2,3,3,2],[0,1,0,1]],[[1,2,0,1],[0,2,4,2],[2,3,3,2],[0,1,0,1]],[[1,2,0,2],[0,2,3,2],[2,3,3,2],[0,1,0,1]],[[1,2,0,1],[0,2,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,1],[0,2,3,2],[2,4,3,1],[1,2,0,0]],[[1,2,0,1],[0,2,3,2],[3,3,3,1],[1,2,0,0]],[[1,2,0,1],[0,2,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,1],[0,2,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,0,1],[0,2,3,2],[2,4,3,1],[1,1,1,0]],[[1,2,0,1],[0,2,3,2],[3,3,3,1],[1,1,1,0]],[[1,2,0,1],[0,2,3,3],[2,3,3,1],[1,1,1,0]],[[1,2,0,1],[0,2,4,2],[2,3,3,1],[1,1,1,0]],[[1,2,0,2],[0,2,3,2],[2,3,3,1],[1,1,1,0]],[[1,2,0,1],[0,2,3,2],[2,3,3,1],[2,1,0,1]],[[1,2,0,1],[0,2,3,2],[2,3,4,1],[1,1,0,1]],[[1,2,0,1],[0,2,3,2],[2,4,3,1],[1,1,0,1]],[[1,2,0,1],[0,2,3,2],[3,3,3,1],[1,1,0,1]],[[1,2,0,1],[0,2,3,3],[2,3,3,1],[1,1,0,1]],[[1,2,0,1],[0,2,4,2],[2,3,3,1],[1,1,0,1]],[[1,2,0,2],[0,2,3,2],[2,3,3,1],[1,1,0,1]],[[1,2,0,1],[0,2,3,2],[2,3,3,1],[1,0,3,0]],[[1,2,0,1],[0,2,3,2],[2,3,3,1],[2,0,2,0]],[[1,2,0,1],[0,2,3,2],[2,3,4,1],[1,0,2,0]],[[1,2,0,1],[0,2,3,2],[2,4,3,1],[1,0,2,0]],[[1,2,0,1],[0,2,3,2],[3,3,3,1],[1,0,2,0]],[[1,2,0,1],[0,2,3,3],[2,3,3,1],[1,0,2,0]],[[1,2,0,1],[0,2,4,2],[2,3,3,1],[1,0,2,0]],[[1,2,0,2],[0,2,3,2],[2,3,3,1],[1,0,2,0]],[[1,2,0,1],[0,2,3,2],[2,3,3,1],[2,0,1,1]],[[1,2,0,1],[0,2,3,2],[2,3,4,1],[1,0,1,1]],[[1,2,0,1],[0,2,3,2],[2,4,3,1],[1,0,1,1]],[[1,2,0,1],[0,2,3,2],[3,3,3,1],[1,0,1,1]],[[1,2,0,1],[0,2,3,3],[2,3,3,1],[1,0,1,1]],[[1,2,0,1],[0,2,4,2],[2,3,3,1],[1,0,1,1]],[[1,2,0,2],[0,2,3,2],[2,3,3,1],[1,0,1,1]],[[1,2,0,1],[0,2,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,1],[0,2,3,2],[2,3,4,1],[0,2,1,0]],[[1,2,0,1],[0,2,3,2],[2,4,3,1],[0,2,1,0]],[[1,2,0,1],[0,2,3,2],[3,3,3,1],[0,2,1,0]],[[1,2,0,1],[0,2,3,3],[2,3,3,1],[0,2,1,0]],[[1,2,0,1],[0,2,4,2],[2,3,3,1],[0,2,1,0]],[[1,2,0,2],[0,2,3,2],[2,3,3,1],[0,2,1,0]],[[1,2,0,1],[0,2,3,2],[2,3,3,1],[0,3,0,1]],[[1,2,0,1],[0,2,3,2],[2,3,4,1],[0,2,0,1]],[[1,2,0,1],[0,2,3,2],[2,4,3,1],[0,2,0,1]],[[1,2,0,1],[0,2,3,2],[3,3,3,1],[0,2,0,1]],[[1,2,0,1],[0,2,3,3],[2,3,3,1],[0,2,0,1]],[[1,2,0,1],[0,2,4,2],[2,3,3,1],[0,2,0,1]],[[1,2,0,2],[0,2,3,2],[2,3,3,1],[0,2,0,1]],[[1,1,3,1],[0,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,2],[0,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,1],[0,3,3,3],[1,3,0,2],[1,1,1,1]],[[1,1,3,1],[0,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,2],[0,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,1],[0,3,3,3],[1,3,0,2],[1,1,2,0]],[[1,1,3,1],[0,3,3,2],[1,3,0,2],[1,2,0,1]],[[1,1,2,2],[0,3,3,2],[1,3,0,2],[1,2,0,1]],[[1,1,2,1],[0,3,3,3],[1,3,0,2],[1,2,0,1]],[[1,1,3,1],[0,3,3,2],[1,3,0,2],[1,2,1,0]],[[1,1,2,2],[0,3,3,2],[1,3,0,2],[1,2,1,0]],[[1,1,2,1],[0,3,3,3],[1,3,0,2],[1,2,1,0]],[[1,2,0,1],[0,2,3,2],[2,3,3,1],[0,1,3,0]],[[1,2,0,1],[0,2,3,2],[2,3,4,1],[0,1,2,0]],[[1,2,0,1],[0,2,3,2],[2,4,3,1],[0,1,2,0]],[[1,2,0,1],[0,2,3,2],[3,3,3,1],[0,1,2,0]],[[1,2,0,1],[0,2,3,3],[2,3,3,1],[0,1,2,0]],[[1,2,0,1],[0,2,4,2],[2,3,3,1],[0,1,2,0]],[[1,2,0,2],[0,2,3,2],[2,3,3,1],[0,1,2,0]],[[1,2,0,1],[0,2,3,2],[2,3,4,1],[0,1,1,1]],[[1,2,0,1],[0,2,3,2],[2,4,3,1],[0,1,1,1]],[[1,2,0,1],[0,2,3,2],[3,3,3,1],[0,1,1,1]],[[1,2,0,1],[0,2,3,3],[2,3,3,1],[0,1,1,1]],[[1,1,3,1],[0,3,3,2],[1,3,1,0],[1,2,2,0]],[[1,1,2,2],[0,3,3,2],[1,3,1,0],[1,2,2,0]],[[1,1,2,1],[0,4,3,2],[1,3,1,0],[1,2,2,0]],[[1,1,2,1],[0,3,4,2],[1,3,1,0],[1,2,2,0]],[[1,1,2,1],[0,3,3,2],[1,4,1,0],[1,2,2,0]],[[1,1,2,1],[0,3,3,2],[1,3,1,0],[2,2,2,0]],[[1,1,2,1],[0,3,3,2],[1,3,1,0],[1,3,2,0]],[[1,2,0,1],[0,2,4,2],[2,3,3,1],[0,1,1,1]],[[1,2,0,2],[0,2,3,2],[2,3,3,1],[0,1,1,1]],[[1,2,0,1],[0,2,3,2],[2,3,4,1],[0,0,2,1]],[[1,2,0,1],[0,2,3,3],[2,3,3,1],[0,0,2,1]],[[1,2,0,1],[0,2,4,2],[2,3,3,1],[0,0,2,1]],[[1,2,0,2],[0,2,3,2],[2,3,3,1],[0,0,2,1]],[[1,2,0,1],[0,2,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,0,1],[0,2,3,2],[2,4,3,0],[1,2,0,1]],[[1,2,0,1],[0,2,3,2],[3,3,3,0],[1,2,0,1]],[[1,2,0,1],[0,2,3,2],[2,3,3,0],[2,1,1,1]],[[1,2,0,1],[0,2,3,2],[2,3,4,0],[1,1,1,1]],[[1,2,0,1],[0,2,3,2],[2,4,3,0],[1,1,1,1]],[[1,2,0,1],[0,2,3,2],[3,3,3,0],[1,1,1,1]],[[1,2,0,1],[0,2,3,3],[2,3,3,0],[1,1,1,1]],[[1,2,0,1],[0,2,4,2],[2,3,3,0],[1,1,1,1]],[[1,2,0,2],[0,2,3,2],[2,3,3,0],[1,1,1,1]],[[1,2,0,1],[0,2,3,2],[2,3,3,0],[1,0,2,2]],[[1,2,0,1],[0,2,3,2],[2,3,3,0],[1,0,3,1]],[[1,2,0,1],[0,2,3,2],[2,3,3,0],[2,0,2,1]],[[1,2,0,1],[0,2,3,2],[2,3,4,0],[1,0,2,1]],[[1,2,0,1],[0,2,3,2],[2,4,3,0],[1,0,2,1]],[[1,2,0,1],[0,2,3,2],[3,3,3,0],[1,0,2,1]],[[1,2,0,1],[0,2,3,3],[2,3,3,0],[1,0,2,1]],[[1,2,0,1],[0,2,4,2],[2,3,3,0],[1,0,2,1]],[[1,2,0,2],[0,2,3,2],[2,3,3,0],[1,0,2,1]],[[1,1,3,1],[0,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,2],[0,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[0,3,4,2],[1,3,2,0],[1,1,1,1]],[[1,1,3,1],[0,3,3,2],[1,3,2,0],[1,1,2,0]],[[1,1,2,2],[0,3,3,2],[1,3,2,0],[1,1,2,0]],[[1,1,2,1],[0,4,3,2],[1,3,2,0],[1,1,2,0]],[[1,1,2,1],[0,3,4,2],[1,3,2,0],[1,1,2,0]],[[1,1,2,1],[0,3,3,2],[1,4,2,0],[1,1,2,0]],[[1,1,3,1],[0,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,2],[0,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[0,4,3,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[0,3,4,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[0,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,1,3,1],[0,3,3,2],[1,3,2,0],[1,2,1,0]],[[1,1,2,2],[0,3,3,2],[1,3,2,0],[1,2,1,0]],[[1,1,2,1],[0,4,3,2],[1,3,2,0],[1,2,1,0]],[[1,1,2,1],[0,3,4,2],[1,3,2,0],[1,2,1,0]],[[1,1,2,1],[0,3,3,2],[1,4,2,0],[1,2,1,0]],[[1,1,2,1],[0,3,3,2],[1,3,2,0],[2,2,1,0]],[[1,1,2,1],[0,3,3,2],[1,3,2,0],[1,3,1,0]],[[1,2,0,1],[0,2,3,2],[2,3,3,0],[0,3,1,1]],[[1,2,0,1],[0,2,3,2],[2,3,4,0],[0,2,1,1]],[[1,2,0,1],[0,2,3,2],[2,4,3,0],[0,2,1,1]],[[1,2,0,1],[0,2,3,2],[3,3,3,0],[0,2,1,1]],[[1,2,0,1],[0,2,3,3],[2,3,3,0],[0,2,1,1]],[[1,2,0,1],[0,2,4,2],[2,3,3,0],[0,2,1,1]],[[1,2,0,2],[0,2,3,2],[2,3,3,0],[0,2,1,1]],[[1,2,0,1],[0,2,3,2],[2,3,3,0],[0,1,2,2]],[[1,2,0,1],[0,2,3,2],[2,3,3,0],[0,1,3,1]],[[1,2,0,1],[0,2,3,2],[2,3,4,0],[0,1,2,1]],[[1,2,0,1],[0,2,3,2],[2,4,3,0],[0,1,2,1]],[[1,2,0,1],[0,2,3,2],[3,3,3,0],[0,1,2,1]],[[1,2,0,1],[0,2,3,3],[2,3,3,0],[0,1,2,1]],[[1,2,0,1],[0,2,4,2],[2,3,3,0],[0,1,2,1]],[[1,2,0,2],[0,2,3,2],[2,3,3,0],[0,1,2,1]],[[1,2,0,1],[0,2,3,2],[2,3,2,3],[1,1,1,0]],[[1,2,0,1],[0,2,3,3],[2,3,2,2],[1,1,1,0]],[[1,2,0,1],[0,2,4,2],[2,3,2,2],[1,1,1,0]],[[1,2,0,2],[0,2,3,2],[2,3,2,2],[1,1,1,0]],[[1,2,0,1],[0,2,3,2],[2,3,2,2],[1,1,0,2]],[[1,2,0,1],[0,2,3,2],[2,3,2,3],[1,1,0,1]],[[1,2,0,1],[0,2,3,3],[2,3,2,2],[1,1,0,1]],[[1,2,0,1],[0,2,4,2],[2,3,2,2],[1,1,0,1]],[[1,2,0,2],[0,2,3,2],[2,3,2,2],[1,1,0,1]],[[1,2,0,1],[0,2,3,2],[2,3,2,3],[1,0,2,0]],[[1,2,0,1],[0,2,3,3],[2,3,2,2],[1,0,2,0]],[[1,2,0,1],[0,2,4,2],[2,3,2,2],[1,0,2,0]],[[1,2,0,2],[0,2,3,2],[2,3,2,2],[1,0,2,0]],[[1,2,0,1],[0,2,3,2],[2,3,2,2],[1,0,1,2]],[[1,2,0,1],[0,2,3,2],[2,3,2,3],[1,0,1,1]],[[1,2,0,1],[0,2,3,3],[2,3,2,2],[1,0,1,1]],[[1,2,0,1],[0,2,4,2],[2,3,2,2],[1,0,1,1]],[[1,2,0,2],[0,2,3,2],[2,3,2,2],[1,0,1,1]],[[1,2,0,1],[0,2,3,2],[2,3,2,3],[0,2,1,0]],[[1,2,0,1],[0,2,3,3],[2,3,2,2],[0,2,1,0]],[[1,2,0,1],[0,2,4,2],[2,3,2,2],[0,2,1,0]],[[1,2,0,2],[0,2,3,2],[2,3,2,2],[0,2,1,0]],[[1,2,0,1],[0,2,3,2],[2,3,2,2],[0,2,0,2]],[[1,2,0,1],[0,2,3,2],[2,3,2,3],[0,2,0,1]],[[1,2,0,1],[0,2,3,3],[2,3,2,2],[0,2,0,1]],[[1,2,0,1],[0,2,4,2],[2,3,2,2],[0,2,0,1]],[[1,2,0,2],[0,2,3,2],[2,3,2,2],[0,2,0,1]],[[1,2,0,1],[0,2,3,2],[2,3,2,3],[0,1,2,0]],[[1,2,0,1],[0,2,3,3],[2,3,2,2],[0,1,2,0]],[[1,2,0,1],[0,2,4,2],[2,3,2,2],[0,1,2,0]],[[1,2,0,2],[0,2,3,2],[2,3,2,2],[0,1,2,0]],[[1,2,0,1],[0,2,3,2],[2,3,2,2],[0,1,1,2]],[[1,2,0,1],[0,2,3,2],[2,3,2,3],[0,1,1,1]],[[1,2,0,1],[0,2,3,3],[2,3,2,2],[0,1,1,1]],[[1,2,0,1],[0,2,4,2],[2,3,2,2],[0,1,1,1]],[[1,2,0,2],[0,2,3,2],[2,3,2,2],[0,1,1,1]],[[1,2,0,1],[0,2,3,2],[2,3,2,2],[0,0,2,2]],[[1,2,0,1],[0,2,3,2],[2,3,2,3],[0,0,2,1]],[[1,2,0,1],[0,2,3,3],[2,3,2,2],[0,0,2,1]],[[1,2,0,1],[0,2,4,2],[2,3,2,2],[0,0,2,1]],[[1,2,0,2],[0,2,3,2],[2,3,2,2],[0,0,2,1]],[[1,2,0,1],[0,2,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,1],[0,2,3,2],[2,4,2,1],[1,1,2,0]],[[1,2,0,1],[0,2,3,2],[3,3,2,1],[1,1,2,0]],[[1,2,0,1],[0,2,3,2],[2,3,2,1],[0,2,3,0]],[[1,2,0,1],[0,2,3,2],[2,3,2,1],[0,3,2,0]],[[1,2,0,1],[0,2,3,2],[2,4,2,1],[0,2,2,0]],[[1,2,0,1],[0,2,3,2],[3,3,2,1],[0,2,2,0]],[[1,2,0,1],[0,2,3,2],[2,3,2,0],[2,1,2,1]],[[1,2,0,1],[0,2,3,2],[2,4,2,0],[1,1,2,1]],[[1,2,0,1],[0,2,3,2],[3,3,2,0],[1,1,2,1]],[[1,1,3,1],[0,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,2,2],[0,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,2,1],[0,4,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,2,1],[0,3,4,2],[1,3,3,0],[1,2,0,0]],[[1,1,2,1],[0,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,0,1],[0,2,3,2],[2,3,2,0],[0,2,2,2]],[[1,2,0,1],[0,2,3,2],[2,3,2,0],[0,2,3,1]],[[1,2,0,1],[0,2,3,2],[2,3,2,0],[0,3,2,1]],[[1,2,0,1],[0,2,3,2],[2,4,2,0],[0,2,2,1]],[[1,2,0,1],[0,2,3,2],[3,3,2,0],[0,2,2,1]],[[1,2,0,1],[0,2,3,2],[2,3,1,2],[1,0,2,2]],[[1,2,0,1],[0,2,3,2],[2,3,1,2],[1,0,3,1]],[[1,2,0,1],[0,2,3,2],[2,3,1,3],[1,0,2,1]],[[1,2,0,1],[0,2,3,3],[2,3,1,2],[1,0,2,1]],[[1,2,0,1],[0,2,4,2],[2,3,1,2],[1,0,2,1]],[[1,2,0,2],[0,2,3,2],[2,3,1,2],[1,0,2,1]],[[1,2,0,1],[0,2,3,2],[2,3,1,2],[0,1,2,2]],[[1,2,0,1],[0,2,3,2],[2,3,1,2],[0,1,3,1]],[[1,2,0,1],[0,2,3,2],[2,3,1,3],[0,1,2,1]],[[1,2,0,1],[0,2,3,3],[2,3,1,2],[0,1,2,1]],[[1,2,0,1],[0,2,4,2],[2,3,1,2],[0,1,2,1]],[[1,2,0,2],[0,2,3,2],[2,3,1,2],[0,1,2,1]],[[1,2,0,1],[0,2,3,2],[2,3,0,2],[2,1,2,1]],[[1,2,0,1],[0,2,3,2],[2,4,0,2],[1,1,2,1]],[[1,2,0,1],[0,2,3,2],[3,3,0,2],[1,1,2,1]],[[1,2,0,1],[0,2,3,2],[2,3,0,2],[0,2,2,2]],[[1,2,0,1],[0,2,3,2],[2,3,0,2],[0,2,3,1]],[[1,2,0,1],[0,2,3,2],[2,3,0,2],[0,3,2,1]],[[1,2,0,1],[0,2,3,2],[2,3,0,3],[0,2,2,1]],[[1,2,0,1],[0,2,3,2],[2,4,0,2],[0,2,2,1]],[[1,2,0,1],[0,2,3,2],[3,3,0,2],[0,2,2,1]],[[1,2,0,1],[0,2,3,3],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[0,2,4,2],[2,3,0,2],[0,2,2,1]],[[1,2,0,2],[0,2,3,2],[2,3,0,2],[0,2,2,1]],[[1,2,0,1],[0,2,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,1],[0,2,3,2],[2,2,3,1],[2,2,1,0]],[[1,2,0,1],[0,2,3,2],[3,2,3,1],[1,2,1,0]],[[1,2,0,1],[0,2,3,2],[2,2,3,1],[1,3,0,1]],[[1,2,0,1],[0,2,3,2],[2,2,3,1],[2,2,0,1]],[[1,2,0,1],[0,2,3,2],[3,2,3,1],[1,2,0,1]],[[1,2,0,1],[0,2,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,0,1],[0,2,3,2],[2,2,3,1],[0,3,2,0]],[[1,2,0,1],[0,2,3,2],[2,2,4,1],[0,2,2,0]],[[1,2,0,1],[0,2,3,3],[2,2,3,1],[0,2,2,0]],[[1,2,0,1],[0,2,4,2],[2,2,3,1],[0,2,2,0]],[[1,2,0,2],[0,2,3,2],[2,2,3,1],[0,2,2,0]],[[1,2,0,1],[0,2,3,2],[2,2,4,1],[0,2,1,1]],[[1,2,0,1],[0,2,3,3],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[0,2,4,2],[2,2,3,1],[0,2,1,1]],[[1,2,0,2],[0,2,3,2],[2,2,3,1],[0,2,1,1]],[[1,2,0,1],[0,2,3,2],[2,2,3,0],[1,3,1,1]],[[1,2,0,1],[0,2,3,2],[2,2,3,0],[2,2,1,1]],[[1,2,0,1],[0,2,3,2],[3,2,3,0],[1,2,1,1]],[[1,2,0,1],[0,2,3,2],[2,2,3,0],[0,2,2,2]],[[1,2,0,1],[0,2,3,2],[2,2,3,0],[0,2,3,1]],[[1,2,0,1],[0,2,3,2],[2,2,3,0],[0,3,2,1]],[[1,2,0,1],[0,2,3,2],[2,2,4,0],[0,2,2,1]],[[1,2,0,1],[0,2,3,3],[2,2,3,0],[0,2,2,1]],[[1,2,0,1],[0,2,4,2],[2,2,3,0],[0,2,2,1]],[[1,2,0,2],[0,2,3,2],[2,2,3,0],[0,2,2,1]],[[1,2,0,1],[0,2,3,2],[2,2,2,3],[0,2,2,0]],[[1,2,0,1],[0,2,3,3],[2,2,2,2],[0,2,2,0]],[[1,2,0,1],[0,2,4,2],[2,2,2,2],[0,2,2,0]],[[1,2,0,2],[0,2,3,2],[2,2,2,2],[0,2,2,0]],[[1,2,0,1],[0,2,3,2],[2,2,2,2],[0,2,1,2]],[[1,2,0,1],[0,2,3,2],[2,2,2,3],[0,2,1,1]],[[1,2,0,1],[0,2,3,3],[2,2,2,2],[0,2,1,1]],[[1,2,0,1],[0,2,4,2],[2,2,2,2],[0,2,1,1]],[[1,2,0,2],[0,2,3,2],[2,2,2,2],[0,2,1,1]],[[1,2,0,1],[0,2,3,2],[2,2,2,1],[1,2,3,0]],[[1,2,0,1],[0,2,3,2],[2,2,2,1],[1,3,2,0]],[[1,2,0,1],[0,2,3,2],[2,2,2,1],[2,2,2,0]],[[1,2,0,1],[0,2,3,2],[3,2,2,1],[1,2,2,0]],[[1,2,0,1],[0,2,3,2],[2,2,2,0],[1,2,2,2]],[[1,2,0,1],[0,2,3,2],[2,2,2,0],[1,2,3,1]],[[1,2,0,1],[0,2,3,2],[2,2,2,0],[1,3,2,1]],[[1,2,0,1],[0,2,3,2],[2,2,2,0],[2,2,2,1]],[[1,2,0,1],[0,2,3,2],[3,2,2,0],[1,2,2,1]],[[1,2,0,1],[0,2,3,2],[2,2,1,2],[0,2,2,2]],[[1,2,0,1],[0,2,3,2],[2,2,1,2],[0,2,3,1]],[[1,2,0,1],[0,2,3,2],[2,2,1,2],[0,3,2,1]],[[1,2,0,1],[0,2,3,2],[2,2,1,3],[0,2,2,1]],[[1,2,0,1],[0,2,3,3],[2,2,1,2],[0,2,2,1]],[[1,2,0,1],[0,2,4,2],[2,2,1,2],[0,2,2,1]],[[1,2,0,2],[0,2,3,2],[2,2,1,2],[0,2,2,1]],[[1,2,0,1],[0,2,3,2],[2,2,0,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,2],[2,2,0,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,2],[2,2,0,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,2],[2,2,0,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,2],[2,2,0,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,2],[3,2,0,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,3],[2,2,0,2],[1,2,2,1]],[[1,2,0,1],[0,2,4,2],[2,2,0,2],[1,2,2,1]],[[1,2,0,2],[0,2,3,2],[2,2,0,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,2],[2,0,0,2],[1,2,2,1]],[[1,1,2,2],[0,3,3,2],[2,0,0,2],[1,2,2,1]],[[1,1,2,1],[0,3,3,3],[2,0,0,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,2],[0,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,1],[0,3,3,3],[2,0,1,2],[1,2,1,1]],[[1,1,3,1],[0,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,2],[0,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,1],[0,3,3,3],[2,0,1,2],[1,2,2,0]],[[1,1,3,1],[0,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,2],[0,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,1],[0,3,4,2],[2,0,3,0],[1,2,1,1]],[[1,1,3,1],[0,3,3,2],[2,0,3,0],[1,2,2,0]],[[1,1,2,2],[0,3,3,2],[2,0,3,0],[1,2,2,0]],[[1,1,2,1],[0,4,3,2],[2,0,3,0],[1,2,2,0]],[[1,1,2,1],[0,3,4,2],[2,0,3,0],[1,2,2,0]],[[1,2,0,1],[0,2,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,0,1],[0,2,3,2],[2,1,3,1],[1,3,2,0]],[[1,2,0,1],[0,2,3,2],[2,1,3,1],[2,2,2,0]],[[1,2,0,1],[0,2,3,2],[2,1,4,1],[1,2,2,0]],[[1,2,0,1],[0,2,3,2],[3,1,3,1],[1,2,2,0]],[[1,2,0,1],[0,2,3,3],[2,1,3,1],[1,2,2,0]],[[1,2,0,1],[0,2,4,2],[2,1,3,1],[1,2,2,0]],[[1,2,0,2],[0,2,3,2],[2,1,3,1],[1,2,2,0]],[[1,2,0,1],[0,2,3,2],[2,1,4,1],[1,2,1,1]],[[1,2,0,1],[0,2,3,3],[2,1,3,1],[1,2,1,1]],[[1,2,0,1],[0,2,4,2],[2,1,3,1],[1,2,1,1]],[[1,2,0,2],[0,2,3,2],[2,1,3,1],[1,2,1,1]],[[1,2,0,1],[0,2,3,2],[2,1,3,0],[1,2,2,2]],[[1,2,0,1],[0,2,3,2],[2,1,3,0],[1,2,3,1]],[[1,2,0,1],[0,2,3,2],[2,1,3,0],[1,3,2,1]],[[1,2,0,1],[0,2,3,2],[2,1,3,0],[2,2,2,1]],[[1,2,0,1],[0,2,3,2],[2,1,4,0],[1,2,2,1]],[[1,2,0,1],[0,2,3,2],[3,1,3,0],[1,2,2,1]],[[1,2,0,1],[0,2,3,3],[2,1,3,0],[1,2,2,1]],[[1,2,0,1],[0,2,4,2],[2,1,3,0],[1,2,2,1]],[[1,2,0,2],[0,2,3,2],[2,1,3,0],[1,2,2,1]],[[1,2,0,1],[0,2,3,2],[2,1,2,3],[1,2,2,0]],[[1,2,0,1],[0,2,3,3],[2,1,2,2],[1,2,2,0]],[[1,2,0,1],[0,2,4,2],[2,1,2,2],[1,2,2,0]],[[1,2,0,2],[0,2,3,2],[2,1,2,2],[1,2,2,0]],[[1,2,0,1],[0,2,3,2],[2,1,2,2],[1,2,1,2]],[[1,2,0,1],[0,2,3,2],[2,1,2,3],[1,2,1,1]],[[1,2,0,1],[0,2,3,3],[2,1,2,2],[1,2,1,1]],[[1,2,0,1],[0,2,4,2],[2,1,2,2],[1,2,1,1]],[[1,2,0,2],[0,2,3,2],[2,1,2,2],[1,2,1,1]],[[1,2,0,1],[0,2,3,2],[2,1,1,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,2],[2,1,1,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,2],[2,1,1,2],[1,3,2,1]],[[1,1,3,1],[0,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,2],[0,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,1],[0,3,3,3],[2,1,0,2],[0,2,2,1]],[[1,1,3,1],[0,3,3,2],[2,1,1,2],[0,2,1,1]],[[1,1,2,2],[0,3,3,2],[2,1,1,2],[0,2,1,1]],[[1,1,2,1],[0,3,3,3],[2,1,1,2],[0,2,1,1]],[[1,1,3,1],[0,3,3,2],[2,1,1,2],[0,2,2,0]],[[1,1,2,2],[0,3,3,2],[2,1,1,2],[0,2,2,0]],[[1,1,2,1],[0,3,3,3],[2,1,1,2],[0,2,2,0]],[[1,2,0,1],[0,2,3,2],[2,1,1,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,2],[2,1,1,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,2],[3,1,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,3],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,4,2],[2,1,1,2],[1,2,2,1]],[[1,2,0,2],[0,2,3,2],[2,1,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,2],[1,3,3,3],[1,1,0,1]],[[1,2,0,1],[0,2,3,3],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,2,4,2],[1,3,3,2],[1,1,0,1]],[[1,1,3,1],[0,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,2],[0,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,1],[0,3,4,2],[2,1,3,0],[0,2,1,1]],[[1,1,3,1],[0,3,3,2],[2,1,3,0],[0,2,2,0]],[[1,1,2,2],[0,3,3,2],[2,1,3,0],[0,2,2,0]],[[1,1,2,1],[0,4,3,2],[2,1,3,0],[0,2,2,0]],[[1,1,2,1],[0,3,4,2],[2,1,3,0],[0,2,2,0]],[[1,2,0,2],[0,2,3,2],[1,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,2,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,1],[0,2,3,2],[1,3,3,1],[2,2,1,0]],[[1,2,0,1],[0,2,3,2],[1,3,4,1],[1,2,1,0]],[[1,2,0,1],[0,2,3,2],[1,4,3,1],[1,2,1,0]],[[1,2,0,1],[0,2,3,3],[1,3,3,1],[1,2,1,0]],[[1,2,0,1],[0,2,4,2],[1,3,3,1],[1,2,1,0]],[[1,2,0,2],[0,2,3,2],[1,3,3,1],[1,2,1,0]],[[1,2,0,1],[0,2,3,2],[1,3,3,1],[1,3,0,1]],[[1,2,0,1],[0,2,3,2],[1,3,3,1],[2,2,0,1]],[[1,2,0,1],[0,2,3,2],[1,3,4,1],[1,2,0,1]],[[1,2,0,1],[0,2,3,2],[1,4,3,1],[1,2,0,1]],[[1,2,0,1],[0,2,3,3],[1,3,3,1],[1,2,0,1]],[[1,2,0,1],[0,2,4,2],[1,3,3,1],[1,2,0,1]],[[1,2,0,2],[0,2,3,2],[1,3,3,1],[1,2,0,1]],[[1,2,0,1],[0,2,3,2],[1,3,3,1],[1,1,3,0]],[[1,2,0,1],[0,2,3,2],[1,3,4,1],[1,1,2,0]],[[1,2,0,1],[0,2,3,2],[1,4,3,1],[1,1,2,0]],[[1,2,0,1],[0,2,3,3],[1,3,3,1],[1,1,2,0]],[[1,2,0,1],[0,2,4,2],[1,3,3,1],[1,1,2,0]],[[1,2,0,2],[0,2,3,2],[1,3,3,1],[1,1,2,0]],[[1,2,0,1],[0,2,3,2],[1,3,4,1],[1,1,1,1]],[[1,2,0,1],[0,2,3,2],[1,4,3,1],[1,1,1,1]],[[1,2,0,1],[0,2,3,3],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[0,2,4,2],[1,3,3,1],[1,1,1,1]],[[1,2,0,2],[0,2,3,2],[1,3,3,1],[1,1,1,1]],[[1,2,0,1],[0,2,3,2],[1,3,4,1],[1,0,2,1]],[[1,2,0,1],[0,2,3,3],[1,3,3,1],[1,0,2,1]],[[1,2,0,1],[0,2,4,2],[1,3,3,1],[1,0,2,1]],[[1,2,0,2],[0,2,3,2],[1,3,3,1],[1,0,2,1]],[[1,2,0,1],[0,2,3,2],[1,3,3,0],[1,3,1,1]],[[1,2,0,1],[0,2,3,2],[1,3,3,0],[2,2,1,1]],[[1,2,0,1],[0,2,3,2],[1,3,4,0],[1,2,1,1]],[[1,2,0,1],[0,2,3,2],[1,4,3,0],[1,2,1,1]],[[1,2,0,1],[0,2,3,3],[1,3,3,0],[1,2,1,1]],[[1,2,0,1],[0,2,4,2],[1,3,3,0],[1,2,1,1]],[[1,2,0,2],[0,2,3,2],[1,3,3,0],[1,2,1,1]],[[1,2,0,1],[0,2,3,2],[1,3,3,0],[1,1,2,2]],[[1,2,0,1],[0,2,3,2],[1,3,3,0],[1,1,3,1]],[[1,2,0,1],[0,2,3,2],[1,3,4,0],[1,1,2,1]],[[1,2,0,1],[0,2,3,2],[1,4,3,0],[1,1,2,1]],[[1,2,0,1],[0,2,3,3],[1,3,3,0],[1,1,2,1]],[[1,2,0,1],[0,2,4,2],[1,3,3,0],[1,1,2,1]],[[1,2,0,2],[0,2,3,2],[1,3,3,0],[1,1,2,1]],[[1,2,0,1],[0,2,3,2],[1,3,2,3],[1,2,1,0]],[[1,2,0,1],[0,2,3,3],[1,3,2,2],[1,2,1,0]],[[1,2,0,1],[0,2,4,2],[1,3,2,2],[1,2,1,0]],[[1,2,0,2],[0,2,3,2],[1,3,2,2],[1,2,1,0]],[[1,2,0,1],[0,2,3,2],[1,3,2,2],[1,2,0,2]],[[1,2,0,1],[0,2,3,2],[1,3,2,3],[1,2,0,1]],[[1,2,0,1],[0,2,3,3],[1,3,2,2],[1,2,0,1]],[[1,2,0,1],[0,2,4,2],[1,3,2,2],[1,2,0,1]],[[1,2,0,2],[0,2,3,2],[1,3,2,2],[1,2,0,1]],[[1,2,0,1],[0,2,3,2],[1,3,2,3],[1,1,2,0]],[[1,2,0,1],[0,2,3,3],[1,3,2,2],[1,1,2,0]],[[1,2,0,1],[0,2,4,2],[1,3,2,2],[1,1,2,0]],[[1,2,0,2],[0,2,3,2],[1,3,2,2],[1,1,2,0]],[[1,2,0,1],[0,2,3,2],[1,3,2,2],[1,1,1,2]],[[1,2,0,1],[0,2,3,2],[1,3,2,3],[1,1,1,1]],[[1,2,0,1],[0,2,3,3],[1,3,2,2],[1,1,1,1]],[[1,2,0,1],[0,2,4,2],[1,3,2,2],[1,1,1,1]],[[1,2,0,2],[0,2,3,2],[1,3,2,2],[1,1,1,1]],[[1,2,0,1],[0,2,3,2],[1,3,2,2],[1,0,2,2]],[[1,2,0,1],[0,2,3,2],[1,3,2,3],[1,0,2,1]],[[1,2,0,1],[0,2,3,3],[1,3,2,2],[1,0,2,1]],[[1,2,0,1],[0,2,4,2],[1,3,2,2],[1,0,2,1]],[[1,2,0,2],[0,2,3,2],[1,3,2,2],[1,0,2,1]],[[1,2,0,1],[0,2,3,2],[1,3,2,1],[1,2,3,0]],[[1,2,0,1],[0,2,3,2],[1,3,2,1],[1,3,2,0]],[[1,2,0,1],[0,2,3,2],[1,3,2,1],[2,2,2,0]],[[1,2,0,1],[0,2,3,2],[1,4,2,1],[1,2,2,0]],[[1,2,0,1],[0,2,3,2],[1,3,2,0],[1,2,2,2]],[[1,2,0,1],[0,2,3,2],[1,3,2,0],[1,2,3,1]],[[1,1,3,1],[0,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,2],[0,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,1],[0,3,3,3],[2,2,0,2],[0,1,2,1]],[[1,1,3,1],[0,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,2],[0,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,1],[0,3,3,3],[2,2,0,2],[1,0,2,1]],[[1,2,0,1],[0,2,3,2],[1,3,2,0],[1,3,2,1]],[[1,2,0,1],[0,2,3,2],[1,3,2,0],[2,2,2,1]],[[1,2,0,1],[0,2,3,2],[1,4,2,0],[1,2,2,1]],[[1,1,2,1],[0,3,3,2],[3,2,1,0],[1,2,2,0]],[[1,1,2,1],[0,3,3,2],[2,2,1,0],[2,2,2,0]],[[1,1,2,1],[0,3,3,2],[2,2,1,0],[1,3,2,0]],[[1,2,0,1],[0,2,3,2],[1,3,1,2],[1,1,2,2]],[[1,2,0,1],[0,2,3,2],[1,3,1,2],[1,1,3,1]],[[1,2,0,1],[0,2,3,2],[1,3,1,3],[1,1,2,1]],[[1,2,0,1],[0,2,3,3],[1,3,1,2],[1,1,2,1]],[[1,1,3,1],[0,3,3,2],[2,2,1,2],[0,0,2,1]],[[1,1,2,2],[0,3,3,2],[2,2,1,2],[0,0,2,1]],[[1,1,2,1],[0,3,3,3],[2,2,1,2],[0,0,2,1]],[[1,1,3,1],[0,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,2],[0,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,1],[0,3,3,3],[2,2,1,2],[0,1,1,1]],[[1,1,3,1],[0,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,2],[0,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,1],[0,3,3,3],[2,2,1,2],[0,1,2,0]],[[1,1,3,1],[0,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,2],[0,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,1],[0,3,3,3],[2,2,1,2],[0,2,0,1]],[[1,1,3,1],[0,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,2],[0,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,1],[0,3,3,3],[2,2,1,2],[0,2,1,0]],[[1,2,0,1],[0,2,4,2],[1,3,1,2],[1,1,2,1]],[[1,2,0,2],[0,2,3,2],[1,3,1,2],[1,1,2,1]],[[1,2,0,1],[0,2,3,2],[1,3,0,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,2],[1,3,0,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,2],[1,3,0,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,2],[1,3,0,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,2],[1,3,0,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,2],[1,4,0,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,3],[1,3,0,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,2],[0,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,1],[0,3,3,3],[2,2,1,2],[1,0,1,1]],[[1,1,3,1],[0,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,2],[0,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,1],[0,3,3,3],[2,2,1,2],[1,0,2,0]],[[1,1,3,1],[0,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,2],[0,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,1],[0,3,3,3],[2,2,1,2],[1,1,0,1]],[[1,1,3,1],[0,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,2],[0,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,1],[0,3,3,3],[2,2,1,2],[1,1,1,0]],[[1,2,0,1],[0,2,4,2],[1,3,0,2],[1,2,2,1]],[[1,2,0,2],[0,2,3,2],[1,3,0,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,0,1],[0,2,3,2],[1,2,3,1],[1,3,2,0]],[[1,2,0,1],[0,2,3,2],[1,2,3,1],[2,2,2,0]],[[1,2,0,1],[0,2,3,2],[1,2,4,1],[1,2,2,0]],[[1,2,0,1],[0,2,3,3],[1,2,3,1],[1,2,2,0]],[[1,2,0,1],[0,2,4,2],[1,2,3,1],[1,2,2,0]],[[1,2,0,2],[0,2,3,2],[1,2,3,1],[1,2,2,0]],[[1,2,0,1],[0,2,3,2],[1,2,4,1],[1,2,1,1]],[[1,1,2,1],[0,3,3,2],[3,2,2,0],[1,2,1,0]],[[1,1,2,1],[0,3,3,2],[2,2,2,0],[2,2,1,0]],[[1,1,2,1],[0,3,3,2],[2,2,2,0],[1,3,1,0]],[[1,2,0,1],[0,2,3,3],[1,2,3,1],[1,2,1,1]],[[1,2,0,1],[0,2,4,2],[1,2,3,1],[1,2,1,1]],[[1,2,0,2],[0,2,3,2],[1,2,3,1],[1,2,1,1]],[[1,2,0,1],[0,2,3,2],[1,2,3,0],[1,2,2,2]],[[1,2,0,1],[0,2,3,2],[1,2,3,0],[1,2,3,1]],[[1,2,0,1],[0,2,3,2],[1,2,3,0],[1,3,2,1]],[[1,2,0,1],[0,2,3,2],[1,2,3,0],[2,2,2,1]],[[1,2,0,1],[0,2,3,2],[1,2,4,0],[1,2,2,1]],[[1,2,0,1],[0,2,3,3],[1,2,3,0],[1,2,2,1]],[[1,2,0,1],[0,2,4,2],[1,2,3,0],[1,2,2,1]],[[1,2,0,2],[0,2,3,2],[1,2,3,0],[1,2,2,1]],[[1,1,3,1],[0,3,3,2],[2,2,2,2],[0,1,0,1]],[[1,1,2,2],[0,3,3,2],[2,2,2,2],[0,1,0,1]],[[1,1,2,1],[0,3,3,3],[2,2,2,2],[0,1,0,1]],[[1,2,0,1],[0,2,3,2],[1,2,2,3],[1,2,2,0]],[[1,2,0,1],[0,2,3,3],[1,2,2,2],[1,2,2,0]],[[1,2,0,1],[0,2,4,2],[1,2,2,2],[1,2,2,0]],[[1,2,0,2],[0,2,3,2],[1,2,2,2],[1,2,2,0]],[[1,2,0,1],[0,2,3,2],[1,2,2,2],[1,2,1,2]],[[1,2,0,1],[0,2,3,2],[1,2,2,3],[1,2,1,1]],[[1,2,0,1],[0,2,3,3],[1,2,2,2],[1,2,1,1]],[[1,2,0,1],[0,2,4,2],[1,2,2,2],[1,2,1,1]],[[1,2,0,2],[0,2,3,2],[1,2,2,2],[1,2,1,1]],[[1,2,0,1],[0,2,3,2],[1,2,1,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,2],[1,2,1,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,2],[1,2,1,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,2],[1,2,1,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,2],[1,2,1,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,3],[1,2,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,4,2],[1,2,1,2],[1,2,2,1]],[[1,2,0,2],[0,2,3,2],[1,2,1,2],[1,2,2,1]],[[1,1,3,1],[0,3,3,2],[2,2,2,2],[1,0,0,1]],[[1,1,2,2],[0,3,3,2],[2,2,2,2],[1,0,0,1]],[[1,1,2,1],[0,3,3,3],[2,2,2,2],[1,0,0,1]],[[1,2,0,1],[0,2,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,0,1],[0,2,3,2],[0,3,3,1],[1,3,2,0]],[[1,2,0,1],[0,2,3,2],[0,3,4,1],[1,2,2,0]],[[1,2,0,1],[0,2,3,3],[0,3,3,1],[1,2,2,0]],[[1,2,0,1],[0,2,4,2],[0,3,3,1],[1,2,2,0]],[[1,2,0,2],[0,2,3,2],[0,3,3,1],[1,2,2,0]],[[1,2,0,1],[0,2,3,2],[0,3,4,1],[1,2,1,1]],[[1,2,0,1],[0,2,3,3],[0,3,3,1],[1,2,1,1]],[[1,2,0,1],[0,2,4,2],[0,3,3,1],[1,2,1,1]],[[1,2,0,2],[0,2,3,2],[0,3,3,1],[1,2,1,1]],[[1,2,0,1],[0,2,3,2],[0,3,3,0],[1,2,2,2]],[[1,2,0,1],[0,2,3,2],[0,3,3,0],[1,2,3,1]],[[1,2,0,1],[0,2,3,2],[0,3,3,0],[1,3,2,1]],[[1,2,0,1],[0,2,3,2],[0,3,4,0],[1,2,2,1]],[[1,2,0,1],[0,2,3,3],[0,3,3,0],[1,2,2,1]],[[1,2,0,1],[0,2,4,2],[0,3,3,0],[1,2,2,1]],[[1,2,0,2],[0,2,3,2],[0,3,3,0],[1,2,2,1]],[[1,2,0,1],[0,2,3,2],[0,3,2,3],[1,2,2,0]],[[1,2,0,1],[0,2,3,3],[0,3,2,2],[1,2,2,0]],[[1,2,0,1],[0,2,4,2],[0,3,2,2],[1,2,2,0]],[[1,2,0,2],[0,2,3,2],[0,3,2,2],[1,2,2,0]],[[1,2,0,1],[0,2,3,2],[0,3,2,2],[1,2,1,2]],[[1,2,0,1],[0,2,3,2],[0,3,2,3],[1,2,1,1]],[[1,2,0,1],[0,2,3,3],[0,3,2,2],[1,2,1,1]],[[1,2,0,1],[0,2,4,2],[0,3,2,2],[1,2,1,1]],[[1,2,0,2],[0,2,3,2],[0,3,2,2],[1,2,1,1]],[[1,2,0,1],[0,2,3,2],[0,3,1,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,2],[0,3,1,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,2],[0,3,1,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,2],[0,3,1,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,3],[0,3,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,4,2],[0,3,1,2],[1,2,2,1]],[[1,2,0,2],[0,2,3,2],[0,3,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[0,2,3,1],[2,4,3,2],[1,2,0,0]],[[1,2,0,1],[0,2,3,1],[3,3,3,2],[1,2,0,0]],[[1,1,3,1],[0,3,3,2],[2,2,3,0],[0,0,2,1]],[[1,1,2,2],[0,3,3,2],[2,2,3,0],[0,0,2,1]],[[1,1,2,1],[0,3,4,2],[2,2,3,0],[0,0,2,1]],[[1,1,3,1],[0,3,3,2],[2,2,3,0],[0,1,1,1]],[[1,1,2,2],[0,3,3,2],[2,2,3,0],[0,1,1,1]],[[1,1,2,1],[0,4,3,2],[2,2,3,0],[0,1,1,1]],[[1,1,2,1],[0,3,4,2],[2,2,3,0],[0,1,1,1]],[[1,1,3,1],[0,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,2,2],[0,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,2,1],[0,4,3,2],[2,2,3,0],[0,1,2,0]],[[1,1,2,1],[0,3,4,2],[2,2,3,0],[0,1,2,0]],[[1,1,3,1],[0,3,3,2],[2,2,3,0],[0,2,0,1]],[[1,1,2,2],[0,3,3,2],[2,2,3,0],[0,2,0,1]],[[1,1,2,1],[0,4,3,2],[2,2,3,0],[0,2,0,1]],[[1,1,2,1],[0,3,4,2],[2,2,3,0],[0,2,0,1]],[[1,1,3,1],[0,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,2,2],[0,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,2,1],[0,4,3,2],[2,2,3,0],[0,2,1,0]],[[1,1,2,1],[0,3,4,2],[2,2,3,0],[0,2,1,0]],[[1,1,3,1],[0,3,3,2],[2,2,3,0],[1,0,1,1]],[[1,1,2,2],[0,3,3,2],[2,2,3,0],[1,0,1,1]],[[1,1,2,1],[0,4,3,2],[2,2,3,0],[1,0,1,1]],[[1,1,2,1],[0,3,4,2],[2,2,3,0],[1,0,1,1]],[[1,1,3,1],[0,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,2,2],[0,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,2,1],[0,4,3,2],[2,2,3,0],[1,0,2,0]],[[1,1,2,1],[0,3,4,2],[2,2,3,0],[1,0,2,0]],[[1,1,3,1],[0,3,3,2],[2,2,3,0],[1,1,0,1]],[[1,1,2,2],[0,3,3,2],[2,2,3,0],[1,1,0,1]],[[1,1,2,1],[0,4,3,2],[2,2,3,0],[1,1,0,1]],[[1,1,2,1],[0,3,4,2],[2,2,3,0],[1,1,0,1]],[[1,1,3,1],[0,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,2,2],[0,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,2,1],[0,4,3,2],[2,2,3,0],[1,1,1,0]],[[1,1,2,1],[0,3,4,2],[2,2,3,0],[1,1,1,0]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,0,1],[0,2,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,0,1],[0,2,3,1],[2,3,4,2],[1,1,1,0]],[[1,2,0,1],[0,2,3,1],[2,4,3,2],[1,1,1,0]],[[1,2,0,1],[0,2,3,1],[3,3,3,2],[1,1,1,0]],[[1,2,0,1],[0,2,4,1],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[1,1,0,2]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[2,1,0,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,3],[1,1,0,1]],[[1,2,0,1],[0,2,3,1],[2,3,4,2],[1,1,0,1]],[[1,2,0,1],[0,2,3,1],[2,4,3,2],[1,1,0,1]],[[1,2,0,1],[0,2,3,1],[3,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,2,4,1],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[1,0,3,0]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[2,0,2,0]],[[1,2,0,1],[0,2,3,1],[2,3,3,3],[1,0,2,0]],[[1,2,0,1],[0,2,3,1],[2,3,4,2],[1,0,2,0]],[[1,2,0,1],[0,2,3,1],[2,4,3,2],[1,0,2,0]],[[1,2,0,1],[0,2,3,1],[3,3,3,2],[1,0,2,0]],[[1,2,0,1],[0,2,4,1],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[1,0,1,2]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[2,0,1,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,3],[1,0,1,1]],[[1,2,0,1],[0,2,3,1],[2,3,4,2],[1,0,1,1]],[[1,2,0,1],[0,2,3,1],[2,4,3,2],[1,0,1,1]],[[1,2,0,1],[0,2,3,1],[3,3,3,2],[1,0,1,1]],[[1,2,0,1],[0,2,4,1],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[0,2,3,1],[2,3,3,3],[0,2,1,0]],[[1,2,0,1],[0,2,3,1],[2,3,4,2],[0,2,1,0]],[[1,2,0,1],[0,2,3,1],[2,4,3,2],[0,2,1,0]],[[1,2,0,1],[0,2,3,1],[3,3,3,2],[0,2,1,0]],[[1,2,0,1],[0,2,4,1],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[0,2,0,2]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[0,3,0,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,3],[0,2,0,1]],[[1,2,0,1],[0,2,3,1],[2,3,4,2],[0,2,0,1]],[[1,2,0,1],[0,2,3,1],[2,4,3,2],[0,2,0,1]],[[1,2,0,1],[0,2,3,1],[3,3,3,2],[0,2,0,1]],[[1,2,0,1],[0,2,4,1],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[0,1,3,0]],[[1,2,0,1],[0,2,3,1],[2,3,3,3],[0,1,2,0]],[[1,2,0,1],[0,2,3,1],[2,3,4,2],[0,1,2,0]],[[1,2,0,1],[0,2,3,1],[2,4,3,2],[0,1,2,0]],[[1,2,0,1],[0,2,3,1],[3,3,3,2],[0,1,2,0]],[[1,2,0,1],[0,2,4,1],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[0,1,1,2]],[[1,2,0,1],[0,2,3,1],[2,3,3,3],[0,1,1,1]],[[1,2,0,1],[0,2,3,1],[2,3,4,2],[0,1,1,1]],[[1,2,0,1],[0,2,3,1],[2,4,3,2],[0,1,1,1]],[[1,2,0,1],[0,2,3,1],[3,3,3,2],[0,1,1,1]],[[1,2,0,1],[0,2,4,1],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,2],[0,0,2,2]],[[1,2,0,1],[0,2,3,1],[2,3,3,3],[0,0,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,4,2],[0,0,2,1]],[[1,2,0,1],[0,2,4,1],[2,3,3,2],[0,0,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,0,1],[0,2,3,1],[2,4,3,1],[1,2,0,1]],[[1,2,0,1],[0,2,3,1],[3,3,3,1],[1,2,0,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[0,2,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,0,1],[0,2,3,1],[2,4,3,1],[1,1,1,1]],[[1,2,0,1],[0,2,3,1],[3,3,3,1],[1,1,1,1]],[[1,2,0,1],[0,2,4,1],[2,3,3,1],[1,1,1,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,1],[1,0,2,2]],[[1,2,0,1],[0,2,3,1],[2,3,3,1],[1,0,3,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,1],[2,0,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,4,1],[1,0,2,1]],[[1,2,0,1],[0,2,3,1],[2,4,3,1],[1,0,2,1]],[[1,2,0,1],[0,2,3,1],[3,3,3,1],[1,0,2,1]],[[1,2,0,1],[0,2,4,1],[2,3,3,1],[1,0,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,1],[0,3,1,1]],[[1,2,0,1],[0,2,3,1],[2,3,4,1],[0,2,1,1]],[[1,2,0,1],[0,2,3,1],[2,4,3,1],[0,2,1,1]],[[1,2,0,1],[0,2,3,1],[3,3,3,1],[0,2,1,1]],[[1,2,0,1],[0,2,4,1],[2,3,3,1],[0,2,1,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,1],[0,1,2,2]],[[1,2,0,1],[0,2,3,1],[2,3,3,1],[0,1,3,1]],[[1,2,0,1],[0,2,3,1],[2,3,4,1],[0,1,2,1]],[[1,2,0,1],[0,2,3,1],[2,4,3,1],[0,1,2,1]],[[1,2,0,1],[0,2,3,1],[3,3,3,1],[0,1,2,1]],[[1,2,0,1],[0,2,4,1],[2,3,3,1],[0,1,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,0],[2,1,2,1]],[[1,2,0,1],[0,2,3,1],[2,4,3,0],[1,1,2,1]],[[1,2,0,1],[0,2,3,1],[3,3,3,0],[1,1,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,0],[0,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,3,3,0],[0,3,2,1]],[[1,2,0,1],[0,2,3,1],[2,4,3,0],[0,2,2,1]],[[1,2,0,1],[0,2,3,1],[3,3,3,0],[0,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[0,2,3,1],[2,4,2,2],[1,1,2,0]],[[1,2,0,1],[0,2,3,1],[3,3,2,2],[1,1,2,0]],[[1,2,0,1],[0,2,3,1],[2,3,2,2],[1,0,2,2]],[[1,2,0,1],[0,2,3,1],[2,3,2,2],[1,0,3,1]],[[1,2,0,1],[0,2,3,1],[2,3,2,3],[1,0,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,2,2],[0,2,3,0]],[[1,2,0,1],[0,2,3,1],[2,3,2,2],[0,3,2,0]],[[1,2,0,1],[0,2,3,1],[2,4,2,2],[0,2,2,0]],[[1,2,0,1],[0,2,3,1],[3,3,2,2],[0,2,2,0]],[[1,2,0,1],[0,2,3,1],[2,3,2,2],[0,1,2,2]],[[1,2,0,1],[0,2,3,1],[2,3,2,2],[0,1,3,1]],[[1,2,0,1],[0,2,3,1],[2,3,2,3],[0,1,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,2,1],[2,1,2,1]],[[1,2,0,1],[0,2,3,1],[2,4,2,1],[1,1,2,1]],[[1,2,0,1],[0,2,3,1],[3,3,2,1],[1,1,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,2,1],[0,2,2,2]],[[1,2,0,1],[0,2,3,1],[2,3,2,1],[0,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,3,2,1],[0,3,2,1]],[[1,2,0,1],[0,2,3,1],[2,4,2,1],[0,2,2,1]],[[1,2,0,1],[0,2,3,1],[3,3,2,1],[0,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,1,2],[2,1,2,1]],[[1,2,0,1],[0,2,3,1],[2,4,1,2],[1,1,2,1]],[[1,2,0,1],[0,2,3,1],[3,3,1,2],[1,1,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,1,2],[0,2,2,2]],[[1,2,0,1],[0,2,3,1],[2,3,1,2],[0,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,3,1,2],[0,3,2,1]],[[1,2,0,1],[0,2,3,1],[2,3,1,3],[0,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,4,1,2],[0,2,2,1]],[[1,2,0,1],[0,2,3,1],[3,3,1,2],[0,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[0,2,3,1],[2,2,3,2],[2,2,1,0]],[[1,2,0,1],[0,2,3,1],[3,2,3,2],[1,2,1,0]],[[1,2,0,1],[0,2,3,1],[2,2,3,2],[1,3,0,1]],[[1,2,0,1],[0,2,3,1],[2,2,3,2],[2,2,0,1]],[[1,2,0,1],[0,2,3,1],[3,2,3,2],[1,2,0,1]],[[1,2,0,1],[0,2,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,0,1],[0,2,3,1],[2,2,3,2],[0,3,2,0]],[[1,2,0,1],[0,2,3,1],[2,2,3,3],[0,2,2,0]],[[1,2,0,1],[0,2,3,1],[2,2,4,2],[0,2,2,0]],[[1,2,0,1],[0,2,4,1],[2,2,3,2],[0,2,2,0]],[[1,2,0,1],[0,2,3,1],[2,2,3,2],[0,2,1,2]],[[1,2,0,1],[0,2,3,1],[2,2,3,3],[0,2,1,1]],[[1,2,0,1],[0,2,3,1],[2,2,4,2],[0,2,1,1]],[[1,2,0,1],[0,2,4,1],[2,2,3,2],[0,2,1,1]],[[1,2,0,1],[0,2,3,1],[2,2,3,1],[1,3,1,1]],[[1,2,0,1],[0,2,3,1],[2,2,3,1],[2,2,1,1]],[[1,2,0,1],[0,2,3,1],[3,2,3,1],[1,2,1,1]],[[1,2,0,1],[0,2,3,1],[2,2,3,1],[0,2,2,2]],[[1,2,0,1],[0,2,3,1],[2,2,3,1],[0,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,2,3,1],[0,3,2,1]],[[1,2,0,1],[0,2,3,1],[2,2,4,1],[0,2,2,1]],[[1,2,0,1],[0,2,4,1],[2,2,3,1],[0,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,2,3,0],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,2,3,0],[1,3,2,1]],[[1,2,0,1],[0,2,3,1],[2,2,3,0],[2,2,2,1]],[[1,2,0,1],[0,2,3,1],[3,2,3,0],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,2,2,2],[1,2,3,0]],[[1,2,0,1],[0,2,3,1],[2,2,2,2],[1,3,2,0]],[[1,2,0,1],[0,2,3,1],[2,2,2,2],[2,2,2,0]],[[1,2,0,1],[0,2,3,1],[3,2,2,2],[1,2,2,0]],[[1,2,0,1],[0,2,3,1],[2,2,2,2],[0,2,2,2]],[[1,2,0,1],[0,2,3,1],[2,2,2,2],[0,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,2,2,2],[0,3,2,1]],[[1,2,0,1],[0,2,3,1],[2,2,2,3],[0,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,2,2,1],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[2,2,2,1],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,2,2,1],[1,3,2,1]],[[1,2,0,1],[0,2,3,1],[2,2,2,1],[2,2,2,1]],[[1,2,0,1],[0,2,3,1],[3,2,2,1],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,2,1,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[2,2,1,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,2,1,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,1],[2,2,1,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,2,1,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[3,2,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,1,3,2],[1,2,3,0]],[[1,2,0,1],[0,2,3,1],[2,1,3,2],[1,3,2,0]],[[1,2,0,1],[0,2,3,1],[2,1,3,2],[2,2,2,0]],[[1,2,0,1],[0,2,3,1],[2,1,3,3],[1,2,2,0]],[[1,2,0,1],[0,2,3,1],[2,1,4,2],[1,2,2,0]],[[1,2,0,1],[0,2,3,1],[3,1,3,2],[1,2,2,0]],[[1,2,0,1],[0,2,4,1],[2,1,3,2],[1,2,2,0]],[[1,2,0,1],[0,2,3,1],[2,1,3,2],[1,2,1,2]],[[1,2,0,1],[0,2,3,1],[2,1,3,3],[1,2,1,1]],[[1,2,0,1],[0,2,3,1],[2,1,4,2],[1,2,1,1]],[[1,2,0,1],[0,2,4,1],[2,1,3,2],[1,2,1,1]],[[1,2,0,1],[0,2,3,1],[2,1,3,2],[0,2,2,2]],[[1,2,0,1],[0,2,3,1],[2,1,3,2],[0,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,1,3,3],[0,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,1,3,1],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[2,1,3,1],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,1,3,1],[1,3,2,1]],[[1,2,0,1],[0,2,3,1],[2,1,3,1],[2,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,1,4,1],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[3,1,3,1],[1,2,2,1]],[[1,2,0,1],[0,2,4,1],[2,1,3,1],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,1,2,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[2,1,2,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,1,2,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,1],[2,1,2,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,1,2,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[3,1,2,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[2,0,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[2,0,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[2,0,3,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[0,2,3,1],[1,3,3,2],[2,2,1,0]],[[1,2,0,1],[0,2,3,1],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[0,3,3,2],[3,3,0,0],[1,2,2,0]],[[1,1,2,1],[0,3,3,2],[2,3,0,0],[2,2,2,0]],[[1,1,2,1],[0,3,3,2],[2,3,0,0],[1,3,2,0]],[[1,2,0,1],[0,2,3,1],[1,3,4,2],[1,2,1,0]],[[1,2,0,1],[0,2,3,1],[1,4,3,2],[1,2,1,0]],[[1,2,0,1],[0,2,4,1],[1,3,3,2],[1,2,1,0]],[[1,2,0,1],[0,2,3,1],[1,3,3,2],[1,2,0,2]],[[1,2,0,1],[0,2,3,1],[1,3,3,2],[1,3,0,1]],[[1,2,0,1],[0,2,3,1],[1,3,3,2],[2,2,0,1]],[[1,2,0,1],[0,2,3,1],[1,3,3,3],[1,2,0,1]],[[1,2,0,1],[0,2,3,1],[1,3,4,2],[1,2,0,1]],[[1,2,0,1],[0,2,3,1],[1,4,3,2],[1,2,0,1]],[[1,2,0,1],[0,2,4,1],[1,3,3,2],[1,2,0,1]],[[1,1,3,1],[0,3,3,2],[2,3,0,2],[0,1,1,1]],[[1,1,2,2],[0,3,3,2],[2,3,0,2],[0,1,1,1]],[[1,1,2,1],[0,3,3,3],[2,3,0,2],[0,1,1,1]],[[1,1,3,1],[0,3,3,2],[2,3,0,2],[0,1,2,0]],[[1,1,2,2],[0,3,3,2],[2,3,0,2],[0,1,2,0]],[[1,1,2,1],[0,3,3,3],[2,3,0,2],[0,1,2,0]],[[1,1,3,1],[0,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,1,2,2],[0,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,1,2,1],[0,3,3,3],[2,3,0,2],[0,2,0,1]],[[1,1,3,1],[0,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,1,2,2],[0,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,1,2,1],[0,3,3,3],[2,3,0,2],[0,2,1,0]],[[1,2,0,1],[0,2,3,1],[1,3,3,2],[1,1,3,0]],[[1,2,0,1],[0,2,3,1],[1,3,3,3],[1,1,2,0]],[[1,2,0,1],[0,2,3,1],[1,3,4,2],[1,1,2,0]],[[1,2,0,1],[0,2,3,1],[1,4,3,2],[1,1,2,0]],[[1,2,0,1],[0,2,4,1],[1,3,3,2],[1,1,2,0]],[[1,2,0,1],[0,2,3,1],[1,3,3,2],[1,1,1,2]],[[1,1,3,1],[0,3,3,2],[2,3,0,2],[1,0,1,1]],[[1,1,2,2],[0,3,3,2],[2,3,0,2],[1,0,1,1]],[[1,1,2,1],[0,3,3,3],[2,3,0,2],[1,0,1,1]],[[1,1,3,1],[0,3,3,2],[2,3,0,2],[1,0,2,0]],[[1,1,2,2],[0,3,3,2],[2,3,0,2],[1,0,2,0]],[[1,1,2,1],[0,3,3,3],[2,3,0,2],[1,0,2,0]],[[1,1,3,1],[0,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,2,2],[0,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,1,2,1],[0,3,3,3],[2,3,0,2],[1,1,0,1]],[[1,1,3,1],[0,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,1,2,2],[0,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,1,2,1],[0,3,3,3],[2,3,0,2],[1,1,1,0]],[[1,2,0,1],[0,2,3,1],[1,3,3,3],[1,1,1,1]],[[1,2,0,1],[0,2,3,1],[1,3,4,2],[1,1,1,1]],[[1,2,0,1],[0,2,3,1],[1,4,3,2],[1,1,1,1]],[[1,2,0,1],[0,2,4,1],[1,3,3,2],[1,1,1,1]],[[1,2,0,1],[0,2,3,1],[1,3,3,2],[1,0,2,2]],[[1,2,0,1],[0,2,3,1],[1,3,3,3],[1,0,2,1]],[[1,2,0,1],[0,2,3,1],[1,3,4,2],[1,0,2,1]],[[1,2,0,1],[0,2,4,1],[1,3,3,2],[1,0,2,1]],[[1,1,3,1],[0,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,1,2,2],[0,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,1,2,1],[0,3,3,3],[2,3,0,2],[1,2,0,0]],[[1,2,0,1],[0,2,3,1],[1,3,3,1],[1,3,1,1]],[[1,2,0,1],[0,2,3,1],[1,3,3,1],[2,2,1,1]],[[1,2,0,1],[0,2,3,1],[1,3,4,1],[1,2,1,1]],[[1,2,0,1],[0,2,3,1],[1,4,3,1],[1,2,1,1]],[[1,2,0,1],[0,2,4,1],[1,3,3,1],[1,2,1,1]],[[1,2,0,1],[0,2,3,1],[1,3,3,1],[1,1,2,2]],[[1,2,0,1],[0,2,3,1],[1,3,3,1],[1,1,3,1]],[[1,2,0,1],[0,2,3,1],[1,3,4,1],[1,1,2,1]],[[1,2,0,1],[0,2,3,1],[1,4,3,1],[1,1,2,1]],[[1,2,0,1],[0,2,4,1],[1,3,3,1],[1,1,2,1]],[[1,2,0,1],[0,2,3,1],[1,3,3,0],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[1,3,3,0],[1,3,2,1]],[[1,2,0,1],[0,2,3,1],[1,3,3,0],[2,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,4,3,0],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,3,2,2],[1,2,3,0]],[[1,2,0,1],[0,2,3,1],[1,3,2,2],[1,3,2,0]],[[1,2,0,1],[0,2,3,1],[1,3,2,2],[2,2,2,0]],[[1,2,0,1],[0,2,3,1],[1,4,2,2],[1,2,2,0]],[[1,2,0,1],[0,2,3,1],[1,3,2,2],[1,1,2,2]],[[1,2,0,1],[0,2,3,1],[1,3,2,2],[1,1,3,1]],[[1,2,0,1],[0,2,3,1],[1,3,2,3],[1,1,2,1]],[[1,2,0,1],[0,2,3,1],[1,3,2,1],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[1,3,2,1],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[1,3,2,1],[1,3,2,1]],[[1,1,3,1],[0,3,3,2],[2,3,1,0],[0,2,2,0]],[[1,1,2,2],[0,3,3,2],[2,3,1,0],[0,2,2,0]],[[1,1,2,1],[0,4,3,2],[2,3,1,0],[0,2,2,0]],[[1,1,2,1],[0,3,4,2],[2,3,1,0],[0,2,2,0]],[[1,1,2,1],[0,3,3,2],[3,3,1,0],[0,2,2,0]],[[1,1,2,1],[0,3,3,2],[2,4,1,0],[0,2,2,0]],[[1,1,2,1],[0,3,3,2],[2,3,1,0],[0,3,2,0]],[[1,1,3,1],[0,3,3,2],[2,3,1,0],[1,1,2,0]],[[1,1,2,2],[0,3,3,2],[2,3,1,0],[1,1,2,0]],[[1,1,2,1],[0,4,3,2],[2,3,1,0],[1,1,2,0]],[[1,1,2,1],[0,3,4,2],[2,3,1,0],[1,1,2,0]],[[1,1,2,1],[0,3,3,2],[3,3,1,0],[1,1,2,0]],[[1,1,2,1],[0,3,3,2],[2,4,1,0],[1,1,2,0]],[[1,1,2,1],[0,3,3,2],[2,3,1,0],[2,1,2,0]],[[1,2,0,1],[0,2,3,1],[1,3,2,1],[2,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,4,2,1],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,3,1,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[1,3,1,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[1,3,1,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,1],[1,3,1,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,3,1,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,4,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,2,3,2],[1,2,3,0]],[[1,2,0,1],[0,2,3,1],[1,2,3,2],[1,3,2,0]],[[1,2,0,1],[0,2,3,1],[1,2,3,2],[2,2,2,0]],[[1,2,0,1],[0,2,3,1],[1,2,3,3],[1,2,2,0]],[[1,2,0,1],[0,2,3,1],[1,2,4,2],[1,2,2,0]],[[1,2,0,1],[0,2,4,1],[1,2,3,2],[1,2,2,0]],[[1,2,0,1],[0,2,3,1],[1,2,3,2],[1,2,1,2]],[[1,2,0,1],[0,2,3,1],[1,2,3,3],[1,2,1,1]],[[1,2,0,1],[0,2,3,1],[1,2,4,2],[1,2,1,1]],[[1,2,0,1],[0,2,4,1],[1,2,3,2],[1,2,1,1]],[[1,2,0,1],[0,2,3,1],[1,2,3,1],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[1,2,3,1],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[1,2,3,1],[1,3,2,1]],[[1,2,0,1],[0,2,3,1],[1,2,3,1],[2,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,2,4,1],[1,2,2,1]],[[1,2,0,1],[0,2,4,1],[1,2,3,1],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,2,2,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[1,2,2,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[1,2,2,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,1],[1,2,2,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,2,2,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[1,1,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[1,1,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[1,1,3,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[0,3,3,2],[1,2,3,0]],[[1,2,0,1],[0,2,3,1],[0,3,3,2],[1,3,2,0]],[[1,2,0,1],[0,2,3,1],[0,3,3,3],[1,2,2,0]],[[1,2,0,1],[0,2,3,1],[0,3,4,2],[1,2,2,0]],[[1,2,0,1],[0,2,4,1],[0,3,3,2],[1,2,2,0]],[[1,1,3,1],[0,3,3,2],[2,3,1,2],[0,0,1,1]],[[1,1,2,2],[0,3,3,2],[2,3,1,2],[0,0,1,1]],[[1,1,2,1],[0,3,3,3],[2,3,1,2],[0,0,1,1]],[[1,1,3,1],[0,3,3,2],[2,3,1,2],[0,0,2,0]],[[1,1,2,2],[0,3,3,2],[2,3,1,2],[0,0,2,0]],[[1,1,2,1],[0,3,3,3],[2,3,1,2],[0,0,2,0]],[[1,2,0,1],[0,2,3,1],[0,3,3,2],[1,2,1,2]],[[1,2,0,1],[0,2,3,1],[0,3,3,3],[1,2,1,1]],[[1,2,0,1],[0,2,3,1],[0,3,4,2],[1,2,1,1]],[[1,2,0,1],[0,2,4,1],[0,3,3,2],[1,2,1,1]],[[1,2,0,1],[0,2,3,1],[0,3,3,1],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[0,3,3,1],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[0,3,3,1],[1,3,2,1]],[[1,2,0,1],[0,2,3,1],[0,3,4,1],[1,2,2,1]],[[1,2,0,1],[0,2,4,1],[0,3,3,1],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[0,3,2,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[0,3,2,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[0,3,2,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,1],[0,3,2,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,1],[0,2,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,1],[0,2,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,1],[0,2,3,3],[1,2,2,1]],[[1,2,0,1],[0,2,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,0,1],[0,2,3,0],[2,3,4,2],[1,1,1,1]],[[1,2,0,1],[0,2,3,0],[2,4,3,2],[1,1,1,1]],[[1,2,0,1],[0,2,3,0],[3,3,3,2],[1,1,1,1]],[[1,2,0,1],[0,2,3,0],[2,3,3,2],[1,0,2,2]],[[1,2,0,1],[0,2,3,0],[2,3,3,2],[1,0,3,1]],[[1,2,0,1],[0,2,3,0],[2,3,3,2],[2,0,2,1]],[[1,2,0,1],[0,2,3,0],[2,3,4,2],[1,0,2,1]],[[1,2,0,1],[0,2,3,0],[2,4,3,2],[1,0,2,1]],[[1,2,0,1],[0,2,3,0],[3,3,3,2],[1,0,2,1]],[[1,2,0,1],[0,2,3,0],[2,3,3,2],[0,3,1,1]],[[1,2,0,1],[0,2,3,0],[2,3,4,2],[0,2,1,1]],[[1,2,0,1],[0,2,3,0],[2,4,3,2],[0,2,1,1]],[[1,2,0,1],[0,2,3,0],[3,3,3,2],[0,2,1,1]],[[1,2,0,1],[0,2,3,0],[2,3,3,2],[0,1,2,2]],[[1,2,0,1],[0,2,3,0],[2,3,3,2],[0,1,3,1]],[[1,2,0,1],[0,2,3,0],[2,3,4,2],[0,1,2,1]],[[1,2,0,1],[0,2,3,0],[2,4,3,2],[0,1,2,1]],[[1,2,0,1],[0,2,3,0],[3,3,3,2],[0,1,2,1]],[[1,2,0,1],[0,2,3,0],[2,3,2,2],[2,1,2,1]],[[1,2,0,1],[0,2,3,0],[2,4,2,2],[1,1,2,1]],[[1,2,0,1],[0,2,3,0],[3,3,2,2],[1,1,2,1]],[[1,2,0,1],[0,2,3,0],[2,3,2,2],[0,2,2,2]],[[1,2,0,1],[0,2,3,0],[2,3,2,2],[0,2,3,1]],[[1,2,0,1],[0,2,3,0],[2,3,2,2],[0,3,2,1]],[[1,2,0,1],[0,2,3,0],[2,4,2,2],[0,2,2,1]],[[1,2,0,1],[0,2,3,0],[3,3,2,2],[0,2,2,1]],[[1,2,0,1],[0,2,3,0],[2,2,3,2],[1,3,1,1]],[[1,2,0,1],[0,2,3,0],[2,2,3,2],[2,2,1,1]],[[1,2,0,1],[0,2,3,0],[3,2,3,2],[1,2,1,1]],[[1,2,0,1],[0,2,3,0],[2,2,3,2],[0,2,2,2]],[[1,2,0,1],[0,2,3,0],[2,2,3,2],[0,2,3,1]],[[1,2,0,1],[0,2,3,0],[2,2,3,2],[0,3,2,1]],[[1,2,0,1],[0,2,3,0],[2,2,4,2],[0,2,2,1]],[[1,2,0,1],[0,2,3,0],[2,2,2,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,0],[2,2,2,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,0],[2,2,2,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,0],[2,2,2,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,0],[3,2,2,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,0],[2,1,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,0],[2,1,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,0],[2,1,3,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,0],[2,1,3,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,0],[2,1,4,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,0],[3,1,3,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,0],[1,3,3,2],[1,3,1,1]],[[1,2,0,1],[0,2,3,0],[1,3,3,2],[2,2,1,1]],[[1,2,0,1],[0,2,3,0],[1,3,4,2],[1,2,1,1]],[[1,2,0,1],[0,2,3,0],[1,4,3,2],[1,2,1,1]],[[1,2,0,1],[0,2,3,0],[1,3,3,2],[1,1,2,2]],[[1,2,0,1],[0,2,3,0],[1,3,3,2],[1,1,3,1]],[[1,2,0,1],[0,2,3,0],[1,3,4,2],[1,1,2,1]],[[1,2,0,1],[0,2,3,0],[1,4,3,2],[1,1,2,1]],[[1,2,0,1],[0,2,3,0],[1,3,2,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,0],[1,3,2,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,0],[1,3,2,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,0],[1,3,2,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,0],[1,4,2,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,0],[1,2,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,0],[1,2,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,0],[1,2,3,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,0],[1,2,3,2],[2,2,2,1]],[[1,2,0,1],[0,2,3,0],[1,2,4,2],[1,2,2,1]],[[1,2,0,1],[0,2,3,0],[0,3,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,3,0],[0,3,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,3,0],[0,3,3,2],[1,3,2,1]],[[1,2,0,1],[0,2,3,0],[0,3,4,2],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[2,2,0,0]],[[1,2,0,1],[0,2,2,2],[2,4,3,2],[1,2,0,0]],[[1,1,3,1],[0,3,3,2],[2,3,2,0],[0,1,1,1]],[[1,1,2,2],[0,3,3,2],[2,3,2,0],[0,1,1,1]],[[1,1,2,1],[0,4,3,2],[2,3,2,0],[0,1,1,1]],[[1,1,2,1],[0,3,4,2],[2,3,2,0],[0,1,1,1]],[[1,1,3,1],[0,3,3,2],[2,3,2,0],[0,1,2,0]],[[1,1,2,2],[0,3,3,2],[2,3,2,0],[0,1,2,0]],[[1,1,2,1],[0,4,3,2],[2,3,2,0],[0,1,2,0]],[[1,1,2,1],[0,3,4,2],[2,3,2,0],[0,1,2,0]],[[1,1,2,1],[0,3,3,2],[3,3,2,0],[0,1,2,0]],[[1,1,2,1],[0,3,3,2],[2,4,2,0],[0,1,2,0]],[[1,1,3,1],[0,3,3,2],[2,3,2,0],[0,2,0,1]],[[1,1,2,2],[0,3,3,2],[2,3,2,0],[0,2,0,1]],[[1,1,2,1],[0,4,3,2],[2,3,2,0],[0,2,0,1]],[[1,1,2,1],[0,3,4,2],[2,3,2,0],[0,2,0,1]],[[1,1,2,1],[0,3,3,2],[3,3,2,0],[0,2,0,1]],[[1,1,2,1],[0,3,3,2],[2,4,2,0],[0,2,0,1]],[[1,1,3,1],[0,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,2,2],[0,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,2,1],[0,4,3,2],[2,3,2,0],[0,2,1,0]],[[1,1,2,1],[0,3,4,2],[2,3,2,0],[0,2,1,0]],[[1,1,2,1],[0,3,3,2],[3,3,2,0],[0,2,1,0]],[[1,1,2,1],[0,3,3,2],[2,4,2,0],[0,2,1,0]],[[1,1,2,1],[0,3,3,2],[2,3,2,0],[0,3,1,0]],[[1,2,0,1],[0,2,2,2],[3,3,3,2],[1,2,0,0]],[[1,1,3,1],[0,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,2,2],[0,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,2,1],[0,4,3,2],[2,3,2,0],[1,0,1,1]],[[1,1,2,1],[0,3,4,2],[2,3,2,0],[1,0,1,1]],[[1,1,3,1],[0,3,3,2],[2,3,2,0],[1,0,2,0]],[[1,1,2,2],[0,3,3,2],[2,3,2,0],[1,0,2,0]],[[1,1,2,1],[0,4,3,2],[2,3,2,0],[1,0,2,0]],[[1,1,2,1],[0,3,4,2],[2,3,2,0],[1,0,2,0]],[[1,1,2,1],[0,3,3,2],[3,3,2,0],[1,0,2,0]],[[1,1,2,1],[0,3,3,2],[2,4,2,0],[1,0,2,0]],[[1,1,2,1],[0,3,3,2],[2,3,2,0],[2,0,2,0]],[[1,1,3,1],[0,3,3,2],[2,3,2,0],[1,1,0,1]],[[1,1,2,2],[0,3,3,2],[2,3,2,0],[1,1,0,1]],[[1,1,2,1],[0,4,3,2],[2,3,2,0],[1,1,0,1]],[[1,1,2,1],[0,3,4,2],[2,3,2,0],[1,1,0,1]],[[1,1,2,1],[0,3,3,2],[3,3,2,0],[1,1,0,1]],[[1,1,2,1],[0,3,3,2],[2,4,2,0],[1,1,0,1]],[[1,1,2,1],[0,3,3,2],[2,3,2,0],[2,1,0,1]],[[1,1,3,1],[0,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,2,2],[0,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,2,1],[0,4,3,2],[2,3,2,0],[1,1,1,0]],[[1,1,2,1],[0,3,4,2],[2,3,2,0],[1,1,1,0]],[[1,1,2,1],[0,3,3,2],[3,3,2,0],[1,1,1,0]],[[1,1,2,1],[0,3,3,2],[2,4,2,0],[1,1,1,0]],[[1,1,2,1],[0,3,3,2],[2,3,2,0],[2,1,1,0]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[2,1,1,0]],[[1,1,3,1],[0,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,2,2],[0,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,2,1],[0,4,3,2],[2,3,2,0],[1,2,0,0]],[[1,1,2,1],[0,3,4,2],[2,3,2,0],[1,2,0,0]],[[1,1,2,1],[0,3,3,2],[3,3,2,0],[1,2,0,0]],[[1,1,2,1],[0,3,3,2],[2,4,2,0],[1,2,0,0]],[[1,1,2,1],[0,3,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,0,1],[0,2,2,2],[2,3,3,3],[1,1,1,0]],[[1,2,0,1],[0,2,2,2],[2,3,4,2],[1,1,1,0]],[[1,2,0,1],[0,2,2,2],[2,4,3,2],[1,1,1,0]],[[1,2,0,1],[0,2,2,2],[3,3,3,2],[1,1,1,0]],[[1,2,0,1],[0,2,2,3],[2,3,3,2],[1,1,1,0]],[[1,2,0,2],[0,2,2,2],[2,3,3,2],[1,1,1,0]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[1,1,0,2]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[2,1,0,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,3],[1,1,0,1]],[[1,2,0,1],[0,2,2,2],[2,3,4,2],[1,1,0,1]],[[1,2,0,1],[0,2,2,2],[2,4,3,2],[1,1,0,1]],[[1,2,0,1],[0,2,2,2],[3,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,2,2,3],[2,3,3,2],[1,1,0,1]],[[1,2,0,2],[0,2,2,2],[2,3,3,2],[1,1,0,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[1,0,3,0]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[2,0,2,0]],[[1,2,0,1],[0,2,2,2],[2,3,3,3],[1,0,2,0]],[[1,2,0,1],[0,2,2,2],[2,3,4,2],[1,0,2,0]],[[1,2,0,1],[0,2,2,2],[2,4,3,2],[1,0,2,0]],[[1,2,0,1],[0,2,2,2],[3,3,3,2],[1,0,2,0]],[[1,2,0,1],[0,2,2,3],[2,3,3,2],[1,0,2,0]],[[1,2,0,2],[0,2,2,2],[2,3,3,2],[1,0,2,0]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[1,0,1,2]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[2,0,1,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,3],[1,0,1,1]],[[1,2,0,1],[0,2,2,2],[2,3,4,2],[1,0,1,1]],[[1,2,0,1],[0,2,2,2],[2,4,3,2],[1,0,1,1]],[[1,2,0,1],[0,2,2,2],[3,3,3,2],[1,0,1,1]],[[1,2,0,1],[0,2,2,3],[2,3,3,2],[1,0,1,1]],[[1,2,0,2],[0,2,2,2],[2,3,3,2],[1,0,1,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[0,3,1,0]],[[1,2,0,1],[0,2,2,2],[2,3,3,3],[0,2,1,0]],[[1,2,0,1],[0,2,2,2],[2,3,4,2],[0,2,1,0]],[[1,2,0,1],[0,2,2,2],[2,4,3,2],[0,2,1,0]],[[1,2,0,1],[0,2,2,2],[3,3,3,2],[0,2,1,0]],[[1,2,0,1],[0,2,2,3],[2,3,3,2],[0,2,1,0]],[[1,2,0,2],[0,2,2,2],[2,3,3,2],[0,2,1,0]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[0,2,0,2]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[0,3,0,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,3],[0,2,0,1]],[[1,2,0,1],[0,2,2,2],[2,3,4,2],[0,2,0,1]],[[1,2,0,1],[0,2,2,2],[2,4,3,2],[0,2,0,1]],[[1,2,0,1],[0,2,2,2],[3,3,3,2],[0,2,0,1]],[[1,2,0,1],[0,2,2,3],[2,3,3,2],[0,2,0,1]],[[1,2,0,2],[0,2,2,2],[2,3,3,2],[0,2,0,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[0,1,3,0]],[[1,2,0,1],[0,2,2,2],[2,3,3,3],[0,1,2,0]],[[1,2,0,1],[0,2,2,2],[2,3,4,2],[0,1,2,0]],[[1,2,0,1],[0,2,2,2],[2,4,3,2],[0,1,2,0]],[[1,2,0,1],[0,2,2,2],[3,3,3,2],[0,1,2,0]],[[1,2,0,1],[0,2,2,3],[2,3,3,2],[0,1,2,0]],[[1,2,0,2],[0,2,2,2],[2,3,3,2],[0,1,2,0]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[0,1,1,2]],[[1,2,0,1],[0,2,2,2],[2,3,3,3],[0,1,1,1]],[[1,2,0,1],[0,2,2,2],[2,3,4,2],[0,1,1,1]],[[1,2,0,1],[0,2,2,2],[2,4,3,2],[0,1,1,1]],[[1,2,0,1],[0,2,2,2],[3,3,3,2],[0,1,1,1]],[[1,2,0,1],[0,2,2,3],[2,3,3,2],[0,1,1,1]],[[1,2,0,2],[0,2,2,2],[2,3,3,2],[0,1,1,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,2],[0,0,2,2]],[[1,2,0,1],[0,2,2,2],[2,3,3,3],[0,0,2,1]],[[1,2,0,1],[0,2,2,2],[2,3,4,2],[0,0,2,1]],[[1,2,0,1],[0,2,2,3],[2,3,3,2],[0,0,2,1]],[[1,2,0,2],[0,2,2,2],[2,3,3,2],[0,0,2,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,1],[2,1,1,1]],[[1,2,0,1],[0,2,2,2],[2,3,4,1],[1,1,1,1]],[[1,2,0,1],[0,2,2,2],[2,4,3,1],[1,1,1,1]],[[1,2,0,1],[0,2,2,2],[3,3,3,1],[1,1,1,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,1],[1,0,2,2]],[[1,2,0,1],[0,2,2,2],[2,3,3,1],[1,0,3,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,1],[2,0,2,1]],[[1,2,0,1],[0,2,2,2],[2,3,4,1],[1,0,2,1]],[[1,2,0,1],[0,2,2,2],[2,4,3,1],[1,0,2,1]],[[1,2,0,1],[0,2,2,2],[3,3,3,1],[1,0,2,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,1],[0,3,1,1]],[[1,2,0,1],[0,2,2,2],[2,3,4,1],[0,2,1,1]],[[1,2,0,1],[0,2,2,2],[2,4,3,1],[0,2,1,1]],[[1,2,0,1],[0,2,2,2],[3,3,3,1],[0,2,1,1]],[[1,2,0,1],[0,2,2,2],[2,3,3,1],[0,1,2,2]],[[1,2,0,1],[0,2,2,2],[2,3,3,1],[0,1,3,1]],[[1,2,0,1],[0,2,2,2],[2,3,4,1],[0,1,2,1]],[[1,2,0,1],[0,2,2,2],[2,4,3,1],[0,1,2,1]],[[1,2,0,1],[0,2,2,2],[3,3,3,1],[0,1,2,1]],[[1,1,3,1],[0,3,3,2],[2,3,2,2],[0,0,0,1]],[[1,1,2,2],[0,3,3,2],[2,3,2,2],[0,0,0,1]],[[1,1,2,1],[0,3,3,3],[2,3,2,2],[0,0,0,1]],[[1,2,0,1],[0,2,2,2],[2,3,2,2],[2,1,2,0]],[[1,2,0,1],[0,2,2,2],[2,4,2,2],[1,1,2,0]],[[1,2,0,1],[0,2,2,2],[3,3,2,2],[1,1,2,0]],[[1,2,0,1],[0,2,2,2],[2,3,2,2],[1,0,2,2]],[[1,2,0,1],[0,2,2,2],[2,3,2,2],[1,0,3,1]],[[1,2,0,1],[0,2,2,2],[2,3,2,3],[1,0,2,1]],[[1,2,0,1],[0,2,2,3],[2,3,2,2],[1,0,2,1]],[[1,2,0,2],[0,2,2,2],[2,3,2,2],[1,0,2,1]],[[1,2,0,1],[0,2,2,2],[2,3,2,2],[0,2,3,0]],[[1,2,0,1],[0,2,2,2],[2,3,2,2],[0,3,2,0]],[[1,2,0,1],[0,2,2,2],[2,4,2,2],[0,2,2,0]],[[1,2,0,1],[0,2,2,2],[3,3,2,2],[0,2,2,0]],[[1,2,0,1],[0,2,2,2],[2,3,2,2],[0,1,2,2]],[[1,2,0,1],[0,2,2,2],[2,3,2,2],[0,1,3,1]],[[1,2,0,1],[0,2,2,2],[2,3,2,3],[0,1,2,1]],[[1,2,0,1],[0,2,2,3],[2,3,2,2],[0,1,2,1]],[[1,2,0,2],[0,2,2,2],[2,3,2,2],[0,1,2,1]],[[1,2,0,1],[0,2,2,2],[2,3,2,1],[2,1,2,1]],[[1,2,0,1],[0,2,2,2],[2,4,2,1],[1,1,2,1]],[[1,2,0,1],[0,2,2,2],[3,3,2,1],[1,1,2,1]],[[1,2,0,1],[0,2,2,2],[2,3,2,1],[0,2,2,2]],[[1,2,0,1],[0,2,2,2],[2,3,2,1],[0,2,3,1]],[[1,2,0,1],[0,2,2,2],[2,3,2,1],[0,3,2,1]],[[1,2,0,1],[0,2,2,2],[2,4,2,1],[0,2,2,1]],[[1,2,0,1],[0,2,2,2],[3,3,2,1],[0,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,3,1,2],[2,1,2,1]],[[1,2,0,1],[0,2,2,2],[2,4,1,2],[1,1,2,1]],[[1,2,0,1],[0,2,2,2],[3,3,1,2],[1,1,2,1]],[[1,2,0,1],[0,2,2,2],[2,3,1,2],[0,2,2,2]],[[1,2,0,1],[0,2,2,2],[2,3,1,2],[0,2,3,1]],[[1,2,0,1],[0,2,2,2],[2,3,1,2],[0,3,2,1]],[[1,2,0,1],[0,2,2,2],[2,3,1,3],[0,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,4,1,2],[0,2,2,1]],[[1,2,0,1],[0,2,2,2],[3,3,1,2],[0,2,2,1]],[[1,2,0,1],[0,2,2,3],[2,3,1,2],[0,2,2,1]],[[1,2,0,2],[0,2,2,2],[2,3,1,2],[0,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,2,3,2],[1,3,1,0]],[[1,2,0,1],[0,2,2,2],[2,2,3,2],[2,2,1,0]],[[1,2,0,1],[0,2,2,2],[3,2,3,2],[1,2,1,0]],[[1,2,0,1],[0,2,2,2],[2,2,3,2],[1,3,0,1]],[[1,2,0,1],[0,2,2,2],[2,2,3,2],[2,2,0,1]],[[1,2,0,1],[0,2,2,2],[3,2,3,2],[1,2,0,1]],[[1,2,0,1],[0,2,2,2],[2,2,3,2],[0,2,3,0]],[[1,2,0,1],[0,2,2,2],[2,2,3,2],[0,3,2,0]],[[1,2,0,1],[0,2,2,2],[2,2,3,3],[0,2,2,0]],[[1,2,0,1],[0,2,2,2],[2,2,4,2],[0,2,2,0]],[[1,2,0,1],[0,2,2,3],[2,2,3,2],[0,2,2,0]],[[1,2,0,2],[0,2,2,2],[2,2,3,2],[0,2,2,0]],[[1,2,0,1],[0,2,2,2],[2,2,3,2],[0,2,1,2]],[[1,2,0,1],[0,2,2,2],[2,2,3,3],[0,2,1,1]],[[1,2,0,1],[0,2,2,2],[2,2,4,2],[0,2,1,1]],[[1,2,0,1],[0,2,2,3],[2,2,3,2],[0,2,1,1]],[[1,2,0,2],[0,2,2,2],[2,2,3,2],[0,2,1,1]],[[1,2,0,1],[0,2,2,2],[2,2,3,1],[1,3,1,1]],[[1,2,0,1],[0,2,2,2],[2,2,3,1],[2,2,1,1]],[[1,2,0,1],[0,2,2,2],[3,2,3,1],[1,2,1,1]],[[1,2,0,1],[0,2,2,2],[2,2,3,1],[0,2,2,2]],[[1,2,0,1],[0,2,2,2],[2,2,3,1],[0,2,3,1]],[[1,2,0,1],[0,2,2,2],[2,2,3,1],[0,3,2,1]],[[1,2,0,1],[0,2,2,2],[2,2,4,1],[0,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,2,2,2],[1,2,3,0]],[[1,2,0,1],[0,2,2,2],[2,2,2,2],[1,3,2,0]],[[1,2,0,1],[0,2,2,2],[2,2,2,2],[2,2,2,0]],[[1,2,0,1],[0,2,2,2],[3,2,2,2],[1,2,2,0]],[[1,2,0,1],[0,2,2,2],[2,2,2,2],[0,2,2,2]],[[1,2,0,1],[0,2,2,2],[2,2,2,2],[0,2,3,1]],[[1,2,0,1],[0,2,2,2],[2,2,2,2],[0,3,2,1]],[[1,2,0,1],[0,2,2,2],[2,2,2,3],[0,2,2,1]],[[1,2,0,1],[0,2,2,3],[2,2,2,2],[0,2,2,1]],[[1,2,0,2],[0,2,2,2],[2,2,2,2],[0,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,2,2,1],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[2,2,2,1],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[2,2,2,1],[1,3,2,1]],[[1,2,0,1],[0,2,2,2],[2,2,2,1],[2,2,2,1]],[[1,2,0,1],[0,2,2,2],[3,2,2,1],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,2,1,2],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[2,2,1,2],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[2,2,1,2],[1,3,2,1]],[[1,2,0,1],[0,2,2,2],[2,2,1,2],[2,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,2,1,3],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[3,2,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,2,3],[2,2,1,2],[1,2,2,1]],[[1,2,0,2],[0,2,2,2],[2,2,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,1,3,2],[1,2,3,0]],[[1,2,0,1],[0,2,2,2],[2,1,3,2],[1,3,2,0]],[[1,2,0,1],[0,2,2,2],[2,1,3,2],[2,2,2,0]],[[1,2,0,1],[0,2,2,2],[2,1,3,3],[1,2,2,0]],[[1,2,0,1],[0,2,2,2],[2,1,4,2],[1,2,2,0]],[[1,2,0,1],[0,2,2,2],[3,1,3,2],[1,2,2,0]],[[1,2,0,1],[0,2,2,3],[2,1,3,2],[1,2,2,0]],[[1,2,0,2],[0,2,2,2],[2,1,3,2],[1,2,2,0]],[[1,2,0,1],[0,2,2,2],[2,1,3,2],[1,2,1,2]],[[1,2,0,1],[0,2,2,2],[2,1,3,3],[1,2,1,1]],[[1,2,0,1],[0,2,2,2],[2,1,4,2],[1,2,1,1]],[[1,2,0,1],[0,2,2,3],[2,1,3,2],[1,2,1,1]],[[1,2,0,2],[0,2,2,2],[2,1,3,2],[1,2,1,1]],[[1,2,0,1],[0,2,2,2],[2,1,3,2],[0,2,2,2]],[[1,2,0,1],[0,2,2,2],[2,1,3,2],[0,2,3,1]],[[1,2,0,1],[0,2,2,2],[2,1,3,3],[0,2,2,1]],[[1,2,0,1],[0,2,2,3],[2,1,3,2],[0,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,1,3,1],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[2,1,3,1],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[2,1,3,1],[1,3,2,1]],[[1,2,0,1],[0,2,2,2],[2,1,3,1],[2,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,1,4,1],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[3,1,3,1],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,1,2,2],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[2,1,2,2],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[2,1,2,2],[1,3,2,1]],[[1,2,0,1],[0,2,2,2],[2,1,2,2],[2,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,1,2,3],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[3,1,2,2],[1,2,2,1]],[[1,2,0,1],[0,2,2,3],[2,1,2,2],[1,2,2,1]],[[1,2,0,2],[0,2,2,2],[2,1,2,2],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[2,0,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[2,0,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[2,0,3,3],[1,2,2,1]],[[1,2,0,1],[0,2,2,3],[2,0,3,2],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[1,3,3,2],[1,3,1,0]],[[1,2,0,1],[0,2,2,2],[1,3,3,2],[2,2,1,0]],[[1,2,0,1],[0,2,2,2],[1,3,3,3],[1,2,1,0]],[[1,2,0,1],[0,2,2,2],[1,3,4,2],[1,2,1,0]],[[1,2,0,1],[0,2,2,2],[1,4,3,2],[1,2,1,0]],[[1,2,0,1],[0,2,2,3],[1,3,3,2],[1,2,1,0]],[[1,2,0,2],[0,2,2,2],[1,3,3,2],[1,2,1,0]],[[1,2,0,1],[0,2,2,2],[1,3,3,2],[1,2,0,2]],[[1,2,0,1],[0,2,2,2],[1,3,3,2],[1,3,0,1]],[[1,2,0,1],[0,2,2,2],[1,3,3,2],[2,2,0,1]],[[1,2,0,1],[0,2,2,2],[1,3,3,3],[1,2,0,1]],[[1,2,0,1],[0,2,2,2],[1,3,4,2],[1,2,0,1]],[[1,2,0,1],[0,2,2,2],[1,4,3,2],[1,2,0,1]],[[1,2,0,1],[0,2,2,3],[1,3,3,2],[1,2,0,1]],[[1,2,0,2],[0,2,2,2],[1,3,3,2],[1,2,0,1]],[[1,1,3,1],[0,3,3,2],[2,3,3,0],[0,0,1,1]],[[1,1,2,2],[0,3,3,2],[2,3,3,0],[0,0,1,1]],[[1,1,2,1],[0,4,3,2],[2,3,3,0],[0,0,1,1]],[[1,1,2,1],[0,3,4,2],[2,3,3,0],[0,0,1,1]],[[1,1,3,1],[0,3,3,2],[2,3,3,0],[0,0,2,0]],[[1,1,2,2],[0,3,3,2],[2,3,3,0],[0,0,2,0]],[[1,1,2,1],[0,4,3,2],[2,3,3,0],[0,0,2,0]],[[1,1,2,1],[0,3,4,2],[2,3,3,0],[0,0,2,0]],[[1,2,0,1],[0,2,2,2],[1,3,3,2],[1,1,3,0]],[[1,2,0,1],[0,2,2,2],[1,3,3,3],[1,1,2,0]],[[1,2,0,1],[0,2,2,2],[1,3,4,2],[1,1,2,0]],[[1,2,0,1],[0,2,2,2],[1,4,3,2],[1,1,2,0]],[[1,2,0,1],[0,2,2,3],[1,3,3,2],[1,1,2,0]],[[1,2,0,2],[0,2,2,2],[1,3,3,2],[1,1,2,0]],[[1,2,0,1],[0,2,2,2],[1,3,3,2],[1,1,1,2]],[[1,1,3,1],[0,3,3,2],[2,3,3,0],[0,2,0,0]],[[1,1,2,2],[0,3,3,2],[2,3,3,0],[0,2,0,0]],[[1,1,2,1],[0,4,3,2],[2,3,3,0],[0,2,0,0]],[[1,1,2,1],[0,3,4,2],[2,3,3,0],[0,2,0,0]],[[1,1,2,1],[0,3,3,2],[3,3,3,0],[0,2,0,0]],[[1,1,2,1],[0,3,3,2],[2,4,3,0],[0,2,0,0]],[[1,2,0,1],[0,2,2,2],[1,3,3,3],[1,1,1,1]],[[1,2,0,1],[0,2,2,2],[1,3,4,2],[1,1,1,1]],[[1,2,0,1],[0,2,2,2],[1,4,3,2],[1,1,1,1]],[[1,2,0,1],[0,2,2,3],[1,3,3,2],[1,1,1,1]],[[1,2,0,2],[0,2,2,2],[1,3,3,2],[1,1,1,1]],[[1,2,0,1],[0,2,2,2],[1,3,3,2],[1,0,2,2]],[[1,2,0,1],[0,2,2,2],[1,3,3,3],[1,0,2,1]],[[1,2,0,1],[0,2,2,2],[1,3,4,2],[1,0,2,1]],[[1,2,0,1],[0,2,2,3],[1,3,3,2],[1,0,2,1]],[[1,2,0,2],[0,2,2,2],[1,3,3,2],[1,0,2,1]],[[1,2,0,1],[0,2,2,2],[1,3,3,1],[1,3,1,1]],[[1,2,0,1],[0,2,2,2],[1,3,3,1],[2,2,1,1]],[[1,2,0,1],[0,2,2,2],[1,3,4,1],[1,2,1,1]],[[1,2,0,1],[0,2,2,2],[1,4,3,1],[1,2,1,1]],[[1,2,0,1],[0,2,2,2],[1,3,3,1],[1,1,2,2]],[[1,2,0,1],[0,2,2,2],[1,3,3,1],[1,1,3,1]],[[1,2,0,1],[0,2,2,2],[1,3,4,1],[1,1,2,1]],[[1,2,0,1],[0,2,2,2],[1,4,3,1],[1,1,2,1]],[[1,2,0,1],[0,2,2,2],[1,3,2,2],[1,2,3,0]],[[1,2,0,1],[0,2,2,2],[1,3,2,2],[1,3,2,0]],[[1,2,0,1],[0,2,2,2],[1,3,2,2],[2,2,2,0]],[[1,2,0,1],[0,2,2,2],[1,4,2,2],[1,2,2,0]],[[1,2,0,1],[0,2,2,2],[1,3,2,2],[1,1,2,2]],[[1,2,0,1],[0,2,2,2],[1,3,2,2],[1,1,3,1]],[[1,1,3,1],[0,3,3,2],[2,3,3,0],[1,1,0,0]],[[1,1,2,2],[0,3,3,2],[2,3,3,0],[1,1,0,0]],[[1,1,2,1],[0,4,3,2],[2,3,3,0],[1,1,0,0]],[[1,1,2,1],[0,3,4,2],[2,3,3,0],[1,1,0,0]],[[1,1,2,1],[0,3,3,2],[3,3,3,0],[1,1,0,0]],[[1,1,2,1],[0,3,3,2],[2,4,3,0],[1,1,0,0]],[[1,1,2,1],[0,3,3,2],[2,3,3,0],[2,1,0,0]],[[1,2,0,1],[0,2,2,2],[1,3,2,3],[1,1,2,1]],[[1,2,0,1],[0,2,2,3],[1,3,2,2],[1,1,2,1]],[[1,2,0,2],[0,2,2,2],[1,3,2,2],[1,1,2,1]],[[1,2,0,1],[0,2,2,2],[1,3,2,1],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[1,3,2,1],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[1,3,2,1],[1,3,2,1]],[[1,2,0,1],[0,2,2,2],[1,3,2,1],[2,2,2,1]],[[1,2,0,1],[0,2,2,2],[1,4,2,1],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[1,3,1,2],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[1,3,1,2],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[1,3,1,2],[1,3,2,1]],[[1,2,0,1],[0,2,2,2],[1,3,1,2],[2,2,2,1]],[[1,2,0,1],[0,2,2,2],[1,3,1,3],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[1,4,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,2,3],[1,3,1,2],[1,2,2,1]],[[1,2,0,2],[0,2,2,2],[1,3,1,2],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[1,2,3,2],[1,2,3,0]],[[1,2,0,1],[0,2,2,2],[1,2,3,2],[1,3,2,0]],[[1,2,0,1],[0,2,2,2],[1,2,3,2],[2,2,2,0]],[[1,2,0,1],[0,2,2,2],[1,2,3,3],[1,2,2,0]],[[1,2,0,1],[0,2,2,2],[1,2,4,2],[1,2,2,0]],[[1,2,0,1],[0,2,2,3],[1,2,3,2],[1,2,2,0]],[[1,2,0,2],[0,2,2,2],[1,2,3,2],[1,2,2,0]],[[1,2,0,1],[0,2,2,2],[1,2,3,2],[1,2,1,2]],[[1,2,0,1],[0,2,2,2],[1,2,3,3],[1,2,1,1]],[[1,2,0,1],[0,2,2,2],[1,2,4,2],[1,2,1,1]],[[1,2,0,1],[0,2,2,3],[1,2,3,2],[1,2,1,1]],[[1,2,0,2],[0,2,2,2],[1,2,3,2],[1,2,1,1]],[[1,2,0,1],[0,2,2,2],[1,2,3,1],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[1,2,3,1],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[1,2,3,1],[1,3,2,1]],[[1,2,0,1],[0,2,2,2],[1,2,3,1],[2,2,2,1]],[[1,2,0,1],[0,2,2,2],[1,2,4,1],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[1,2,2,2],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[1,2,2,2],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[1,2,2,2],[1,3,2,1]],[[1,2,0,1],[0,2,2,2],[1,2,2,2],[2,2,2,1]],[[1,2,0,1],[0,2,2,2],[1,2,2,3],[1,2,2,1]],[[1,2,0,1],[0,2,2,3],[1,2,2,2],[1,2,2,1]],[[1,2,0,2],[0,2,2,2],[1,2,2,2],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[1,1,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[1,1,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[1,1,3,3],[1,2,2,1]],[[1,2,0,1],[0,2,2,3],[1,1,3,2],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[0,3,3,2],[1,2,3,0]],[[1,2,0,1],[0,2,2,2],[0,3,3,2],[1,3,2,0]],[[1,2,0,1],[0,2,2,2],[0,3,3,3],[1,2,2,0]],[[1,2,0,1],[0,2,2,2],[0,3,4,2],[1,2,2,0]],[[1,2,0,1],[0,2,2,3],[0,3,3,2],[1,2,2,0]],[[1,2,0,2],[0,2,2,2],[0,3,3,2],[1,2,2,0]],[[1,2,0,1],[0,2,2,2],[0,3,3,2],[1,2,1,2]],[[1,2,0,1],[0,2,2,2],[0,3,3,3],[1,2,1,1]],[[1,2,0,1],[0,2,2,2],[0,3,4,2],[1,2,1,1]],[[1,2,0,1],[0,2,2,3],[0,3,3,2],[1,2,1,1]],[[1,2,0,2],[0,2,2,2],[0,3,3,2],[1,2,1,1]],[[1,2,0,1],[0,2,2,2],[0,3,3,1],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[0,3,3,1],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[0,3,3,1],[1,3,2,1]],[[1,2,0,1],[0,2,2,2],[0,3,4,1],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[0,3,2,2],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[0,3,2,2],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[0,3,2,2],[1,3,2,1]],[[1,2,0,1],[0,2,2,2],[0,3,2,3],[1,2,2,1]],[[1,2,0,1],[0,2,2,3],[0,3,2,2],[1,2,2,1]],[[1,2,0,2],[0,2,2,2],[0,3,2,2],[1,2,2,1]],[[1,2,0,1],[0,2,2,2],[0,2,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,2,2],[0,2,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,2,2],[0,2,3,3],[1,2,2,1]],[[1,2,0,1],[0,2,2,3],[0,2,3,2],[1,2,2,1]],[[1,2,0,1],[0,2,1,2],[2,3,3,2],[1,0,2,2]],[[1,2,0,1],[0,2,1,2],[2,3,3,2],[1,0,3,1]],[[1,2,0,1],[0,2,1,2],[2,3,3,3],[1,0,2,1]],[[1,2,0,1],[0,2,1,2],[2,3,3,2],[0,1,2,2]],[[1,2,0,1],[0,2,1,2],[2,3,3,2],[0,1,3,1]],[[1,2,0,1],[0,2,1,2],[2,3,3,3],[0,1,2,1]],[[1,2,0,1],[0,2,1,2],[2,2,3,2],[0,2,2,2]],[[1,2,0,1],[0,2,1,2],[2,2,3,2],[0,2,3,1]],[[1,2,0,1],[0,2,1,2],[2,2,3,2],[0,3,2,1]],[[1,2,0,1],[0,2,1,2],[2,2,3,3],[0,2,2,1]],[[1,2,0,1],[0,2,1,2],[2,1,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,1,2],[2,1,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,1,2],[2,1,3,2],[1,3,2,1]],[[1,2,0,1],[0,2,1,2],[2,1,3,2],[2,2,2,1]],[[1,2,0,1],[0,2,1,2],[2,1,3,3],[1,2,2,1]],[[1,2,0,1],[0,2,1,2],[1,3,3,2],[1,1,2,2]],[[1,2,0,1],[0,2,1,2],[1,3,3,2],[1,1,3,1]],[[1,2,0,1],[0,2,1,2],[1,3,3,3],[1,1,2,1]],[[1,2,0,1],[0,2,1,2],[1,2,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,1,2],[1,2,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,1,2],[1,2,3,2],[1,3,2,1]],[[1,2,0,1],[0,2,1,2],[1,2,3,2],[2,2,2,1]],[[1,2,0,1],[0,2,1,2],[1,2,3,3],[1,2,2,1]],[[1,2,0,1],[0,2,1,2],[0,3,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,1,2],[0,3,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,1,2],[0,3,3,2],[1,3,2,1]],[[1,2,0,1],[0,2,1,2],[0,3,3,3],[1,2,2,1]],[[1,2,0,1],[0,2,0,2],[2,3,3,2],[0,2,2,2]],[[1,2,0,1],[0,2,0,2],[2,3,3,2],[0,2,3,1]],[[1,2,0,1],[0,2,0,2],[2,3,3,2],[0,3,2,1]],[[1,2,0,1],[0,2,0,2],[2,3,3,3],[0,2,2,1]],[[1,2,0,1],[0,2,0,2],[1,3,3,2],[1,2,2,2]],[[1,2,0,1],[0,2,0,2],[1,3,3,2],[1,2,3,1]],[[1,2,0,1],[0,2,0,2],[1,3,3,2],[1,3,2,1]],[[1,2,0,1],[0,2,0,2],[1,3,3,2],[2,2,2,1]],[[1,2,0,1],[0,2,0,2],[1,3,3,3],[1,2,2,1]],[[1,2,0,1],[0,1,3,2],[2,3,3,1],[0,2,3,0]],[[1,2,0,1],[0,1,3,2],[2,3,3,1],[0,3,2,0]],[[1,2,0,1],[0,1,3,2],[2,3,4,1],[0,2,2,0]],[[1,2,0,1],[0,1,3,2],[2,3,3,0],[0,2,2,2]],[[1,2,0,1],[0,1,3,2],[2,3,3,0],[0,2,3,1]],[[1,2,0,1],[0,1,3,2],[2,3,3,0],[0,3,2,1]],[[1,2,0,1],[0,1,3,2],[2,3,4,0],[0,2,2,1]],[[1,2,0,1],[0,1,3,2],[1,3,3,1],[1,2,3,0]],[[1,2,0,1],[0,1,3,2],[1,3,3,1],[1,3,2,0]],[[1,2,0,1],[0,1,3,2],[1,3,3,1],[2,2,2,0]],[[1,2,0,1],[0,1,3,2],[1,3,4,1],[1,2,2,0]],[[1,2,0,1],[0,1,3,2],[1,3,3,0],[1,2,2,2]],[[1,2,0,1],[0,1,3,2],[1,3,3,0],[1,2,3,1]],[[1,2,0,1],[0,1,3,2],[1,3,3,0],[1,3,2,1]],[[1,2,0,1],[0,1,3,2],[1,3,3,0],[2,2,2,1]],[[1,2,0,1],[0,1,3,2],[1,3,4,0],[1,2,2,1]],[[1,2,0,1],[0,1,3,1],[2,3,3,2],[0,2,3,0]],[[1,2,0,1],[0,1,3,1],[2,3,3,2],[0,3,2,0]],[[1,2,0,1],[0,1,3,1],[2,3,3,3],[0,2,2,0]],[[1,2,0,1],[0,1,3,1],[2,3,4,2],[0,2,2,0]],[[1,2,0,1],[0,1,3,1],[2,3,3,2],[0,2,1,2]],[[1,2,0,1],[0,1,3,1],[2,3,3,3],[0,2,1,1]],[[1,2,0,1],[0,1,3,1],[2,3,4,2],[0,2,1,1]],[[1,2,0,1],[0,1,3,1],[2,3,3,1],[0,2,2,2]],[[1,2,0,1],[0,1,3,1],[2,3,3,1],[0,2,3,1]],[[1,2,0,1],[0,1,3,1],[2,3,3,1],[0,3,2,1]],[[1,2,0,1],[0,1,3,1],[2,3,4,1],[0,2,2,1]],[[1,2,0,1],[0,1,3,1],[2,3,2,2],[0,2,2,2]],[[1,2,0,1],[0,1,3,1],[2,3,2,2],[0,2,3,1]],[[1,2,0,1],[0,1,3,1],[2,3,2,2],[0,3,2,1]],[[1,2,0,1],[0,1,3,1],[2,3,2,3],[0,2,2,1]],[[1,2,0,1],[0,1,3,1],[1,3,3,2],[1,2,3,0]],[[1,2,0,1],[0,1,3,1],[1,3,3,2],[1,3,2,0]],[[1,2,0,1],[0,1,3,1],[1,3,3,2],[2,2,2,0]],[[1,2,0,1],[0,1,3,1],[1,3,3,3],[1,2,2,0]],[[1,2,0,1],[0,1,3,1],[1,3,4,2],[1,2,2,0]],[[1,2,0,1],[0,1,3,1],[1,3,3,2],[1,2,1,2]],[[1,2,0,1],[0,1,3,1],[1,3,3,3],[1,2,1,1]],[[1,2,0,1],[0,1,3,1],[1,3,4,2],[1,2,1,1]],[[1,2,0,1],[0,1,3,1],[1,3,3,1],[1,2,2,2]],[[1,2,0,1],[0,1,3,1],[1,3,3,1],[1,2,3,1]],[[1,2,0,1],[0,1,3,1],[1,3,3,1],[1,3,2,1]],[[1,2,0,1],[0,1,3,1],[1,3,3,1],[2,2,2,1]],[[1,2,0,1],[0,1,3,1],[1,3,4,1],[1,2,2,1]],[[1,2,0,1],[0,1,3,1],[1,3,2,2],[1,2,2,2]],[[1,2,0,1],[0,1,3,1],[1,3,2,2],[1,2,3,1]],[[1,2,0,1],[0,1,3,1],[1,3,2,2],[1,3,2,1]],[[1,2,0,1],[0,1,3,1],[1,3,2,2],[2,2,2,1]],[[1,2,0,1],[0,1,3,1],[1,3,2,3],[1,2,2,1]],[[1,2,0,1],[0,1,3,0],[2,3,3,2],[0,2,2,2]],[[1,2,0,1],[0,1,3,0],[2,3,3,2],[0,2,3,1]],[[1,2,0,1],[0,1,3,0],[2,3,3,2],[0,3,2,1]],[[1,2,0,1],[0,1,3,0],[2,3,4,2],[0,2,2,1]],[[1,2,0,1],[0,1,3,0],[1,3,3,2],[1,2,2,2]],[[1,2,0,1],[0,1,3,0],[1,3,3,2],[1,2,3,1]],[[1,2,0,1],[0,1,3,0],[1,3,3,2],[1,3,2,1]],[[1,2,0,1],[0,1,3,0],[1,3,3,2],[2,2,2,1]],[[1,2,0,1],[0,1,3,0],[1,3,4,2],[1,2,2,1]],[[1,2,0,1],[0,1,2,2],[2,3,3,2],[0,2,3,0]],[[1,2,0,1],[0,1,2,2],[2,3,3,2],[0,3,2,0]],[[1,2,0,1],[0,1,2,2],[2,3,3,3],[0,2,2,0]],[[1,2,0,1],[0,1,2,2],[2,3,4,2],[0,2,2,0]],[[1,2,0,1],[0,1,2,3],[2,3,3,2],[0,2,2,0]],[[1,2,0,1],[0,1,2,2],[2,3,3,2],[0,2,1,2]],[[1,2,0,1],[0,1,2,2],[2,3,3,3],[0,2,1,1]],[[1,2,0,1],[0,1,2,2],[2,3,4,2],[0,2,1,1]],[[1,2,0,1],[0,1,2,3],[2,3,3,2],[0,2,1,1]],[[1,2,0,1],[0,1,2,2],[2,3,3,1],[0,2,2,2]],[[1,2,0,1],[0,1,2,2],[2,3,3,1],[0,2,3,1]],[[1,2,0,1],[0,1,2,2],[2,3,3,1],[0,3,2,1]],[[1,2,0,1],[0,1,2,2],[2,3,4,1],[0,2,2,1]],[[1,2,0,1],[0,1,2,2],[2,3,2,2],[0,2,2,2]],[[1,2,0,1],[0,1,2,2],[2,3,2,2],[0,2,3,1]],[[1,2,0,1],[0,1,2,2],[2,3,2,2],[0,3,2,1]],[[1,2,0,1],[0,1,2,2],[2,3,2,3],[0,2,2,1]],[[1,2,0,1],[0,1,2,3],[2,3,2,2],[0,2,2,1]],[[1,2,0,1],[0,1,2,2],[1,3,3,2],[1,2,3,0]],[[1,2,0,1],[0,1,2,2],[1,3,3,2],[1,3,2,0]],[[1,2,0,1],[0,1,2,2],[1,3,3,2],[2,2,2,0]],[[1,2,0,1],[0,1,2,2],[1,3,3,3],[1,2,2,0]],[[1,2,0,1],[0,1,2,2],[1,3,4,2],[1,2,2,0]],[[1,2,0,1],[0,1,2,3],[1,3,3,2],[1,2,2,0]],[[1,2,0,1],[0,1,2,2],[1,3,3,2],[1,2,1,2]],[[1,2,0,1],[0,1,2,2],[1,3,3,3],[1,2,1,1]],[[1,2,0,1],[0,1,2,2],[1,3,4,2],[1,2,1,1]],[[1,2,0,1],[0,1,2,3],[1,3,3,2],[1,2,1,1]],[[1,2,0,1],[0,1,2,2],[1,3,3,1],[1,2,2,2]],[[1,2,0,1],[0,1,2,2],[1,3,3,1],[1,2,3,1]],[[1,2,0,1],[0,1,2,2],[1,3,3,1],[1,3,2,1]],[[1,2,0,1],[0,1,2,2],[1,3,3,1],[2,2,2,1]],[[1,2,0,1],[0,1,2,2],[1,3,4,1],[1,2,2,1]],[[1,2,0,1],[0,1,2,2],[1,3,2,2],[1,2,2,2]],[[1,2,0,1],[0,1,2,2],[1,3,2,2],[1,2,3,1]],[[1,2,0,1],[0,1,2,2],[1,3,2,2],[1,3,2,1]],[[1,2,0,1],[0,1,2,2],[1,3,2,2],[2,2,2,1]],[[1,2,0,1],[0,1,2,2],[1,3,2,3],[1,2,2,1]],[[1,2,0,1],[0,1,2,3],[1,3,2,2],[1,2,2,1]],[[1,2,0,1],[0,1,1,2],[2,3,3,2],[0,2,2,2]],[[1,2,0,1],[0,1,1,2],[2,3,3,2],[0,2,3,1]],[[1,2,0,1],[0,1,1,2],[2,3,3,2],[0,3,2,1]],[[1,2,0,1],[0,1,1,2],[2,3,3,3],[0,2,2,1]],[[1,2,0,1],[0,1,1,2],[1,3,3,2],[1,2,2,2]],[[1,2,0,1],[0,1,1,2],[1,3,3,2],[1,2,3,1]],[[1,2,0,1],[0,1,1,2],[1,3,3,2],[1,3,2,1]],[[1,2,0,1],[0,1,1,2],[1,3,3,2],[2,2,2,1]],[[1,2,0,1],[0,1,1,2],[1,3,3,3],[1,2,2,1]],[[1,2,0,0],[2,3,3,2],[3,3,3,1],[1,0,0,0]],[[1,2,0,0],[2,4,3,2],[2,3,3,1],[1,0,0,0]],[[1,2,0,0],[3,3,3,2],[2,3,3,1],[1,0,0,0]],[[2,2,0,0],[2,3,3,2],[2,3,3,1],[1,0,0,0]],[[1,2,0,0],[2,3,3,2],[3,3,3,0],[1,0,1,0]],[[1,2,0,0],[2,4,3,2],[2,3,3,0],[1,0,1,0]],[[1,2,0,0],[3,3,3,2],[2,3,3,0],[1,0,1,0]],[[2,2,0,0],[2,3,3,2],[2,3,3,0],[1,0,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,2,1],[1,0,1,0]],[[1,2,0,0],[2,4,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,0,0],[3,3,3,2],[2,3,2,1],[1,0,1,0]],[[2,2,0,0],[2,3,3,2],[2,3,2,1],[1,0,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,2,1],[1,0,0,1]],[[1,2,0,0],[2,4,3,2],[2,3,2,1],[1,0,0,1]],[[1,2,0,0],[3,3,3,2],[2,3,2,1],[1,0,0,1]],[[2,2,0,0],[2,3,3,2],[2,3,2,1],[1,0,0,1]],[[1,2,0,0],[2,3,3,2],[2,3,2,0],[2,2,0,0]],[[1,2,0,0],[2,3,3,2],[3,3,2,0],[1,2,0,0]],[[1,2,0,0],[2,4,3,2],[2,3,2,0],[1,2,0,0]],[[1,2,0,0],[3,3,3,2],[2,3,2,0],[1,2,0,0]],[[2,2,0,0],[2,3,3,2],[2,3,2,0],[1,2,0,0]],[[1,2,0,0],[2,3,3,2],[2,3,2,0],[2,1,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,2,0],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[2,3,2,0],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[2,3,2,0],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[2,3,2,0],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,2,0],[1,0,1,1]],[[1,2,0,0],[2,4,3,2],[2,3,2,0],[1,0,1,1]],[[1,2,0,0],[3,3,3,2],[2,3,2,0],[1,0,1,1]],[[2,2,0,0],[2,3,3,2],[2,3,2,0],[1,0,1,1]],[[1,2,0,0],[2,3,3,2],[3,3,2,0],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,3,2,0],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,3,2,0],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,3,2,0],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,1,2],[1,0,1,0]],[[1,2,0,0],[2,4,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,0,0],[3,3,3,2],[2,3,1,2],[1,0,1,0]],[[2,2,0,0],[2,3,3,2],[2,3,1,2],[1,0,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,1,2],[1,0,0,1]],[[1,2,0,0],[2,4,3,2],[2,3,1,2],[1,0,0,1]],[[1,2,0,0],[3,3,3,2],[2,3,1,2],[1,0,0,1]],[[2,2,0,0],[2,3,3,2],[2,3,1,2],[1,0,0,1]],[[1,2,0,0],[2,3,3,2],[2,3,1,1],[2,2,0,0]],[[1,2,0,0],[2,3,3,2],[3,3,1,1],[1,2,0,0]],[[1,2,0,0],[2,4,3,2],[2,3,1,1],[1,2,0,0]],[[1,2,0,0],[3,3,3,2],[2,3,1,1],[1,2,0,0]],[[2,2,0,0],[2,3,3,2],[2,3,1,1],[1,2,0,0]],[[1,1,2,2],[1,0,3,2],[0,1,3,2],[1,2,2,1]],[[1,1,2,1],[1,0,3,3],[0,1,3,2],[1,2,2,1]],[[1,1,2,1],[1,0,3,2],[0,1,3,3],[1,2,2,1]],[[1,1,2,1],[1,0,3,2],[0,1,3,2],[1,2,3,1]],[[1,1,2,1],[1,0,3,2],[0,1,3,2],[1,2,2,2]],[[1,1,2,2],[1,0,3,2],[0,2,2,2],[1,2,2,1]],[[1,1,2,1],[1,0,3,3],[0,2,2,2],[1,2,2,1]],[[1,1,2,1],[1,0,3,2],[0,2,2,3],[1,2,2,1]],[[1,1,2,1],[1,0,3,2],[0,2,2,2],[1,3,2,1]],[[1,1,2,1],[1,0,3,2],[0,2,2,2],[1,2,3,1]],[[1,1,2,1],[1,0,3,2],[0,2,2,2],[1,2,2,2]],[[1,1,2,1],[1,0,3,2],[0,2,4,1],[1,2,2,1]],[[1,1,2,1],[1,0,3,2],[0,2,3,1],[1,3,2,1]],[[1,1,2,1],[1,0,3,2],[0,2,3,1],[1,2,3,1]],[[1,1,2,1],[1,0,3,2],[0,2,3,1],[1,2,2,2]],[[1,1,2,2],[1,0,3,2],[0,2,3,2],[1,2,1,1]],[[1,1,2,1],[1,0,3,3],[0,2,3,2],[1,2,1,1]],[[1,1,2,1],[1,0,3,2],[0,2,4,2],[1,2,1,1]],[[1,1,2,1],[1,0,3,2],[0,2,3,3],[1,2,1,1]],[[1,1,2,1],[1,0,3,2],[0,2,3,2],[1,2,1,2]],[[1,1,2,2],[1,0,3,2],[0,2,3,2],[1,2,2,0]],[[1,1,2,1],[1,0,3,3],[0,2,3,2],[1,2,2,0]],[[1,1,2,1],[1,0,3,2],[0,2,4,2],[1,2,2,0]],[[1,1,2,1],[1,0,3,2],[0,2,3,3],[1,2,2,0]],[[1,1,2,1],[1,0,3,2],[0,2,3,2],[1,3,2,0]],[[1,1,2,1],[1,0,3,2],[0,2,3,2],[1,2,3,0]],[[1,1,2,2],[1,0,3,2],[0,3,2,2],[1,1,2,1]],[[1,1,2,1],[1,0,3,3],[0,3,2,2],[1,1,2,1]],[[1,1,2,1],[1,0,3,2],[0,3,2,3],[1,1,2,1]],[[1,1,2,1],[1,0,3,2],[0,3,2,2],[1,1,3,1]],[[1,1,2,1],[1,0,3,2],[0,3,2,2],[1,1,2,2]],[[1,1,2,1],[1,0,3,2],[0,3,4,1],[1,1,2,1]],[[1,1,2,1],[1,0,3,2],[0,3,3,1],[1,1,3,1]],[[1,1,2,1],[1,0,3,2],[0,3,3,1],[1,1,2,2]],[[1,1,2,2],[1,0,3,2],[0,3,3,2],[1,0,2,1]],[[1,1,2,1],[1,0,3,3],[0,3,3,2],[1,0,2,1]],[[1,1,2,1],[1,0,3,2],[0,3,4,2],[1,0,2,1]],[[1,1,2,1],[1,0,3,2],[0,3,3,3],[1,0,2,1]],[[1,1,2,1],[1,0,3,2],[0,3,3,2],[1,0,2,2]],[[1,1,2,2],[1,0,3,2],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,0,3,3],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,0,3,2],[0,3,4,2],[1,1,1,1]],[[1,1,2,1],[1,0,3,2],[0,3,3,3],[1,1,1,1]],[[1,1,2,1],[1,0,3,2],[0,3,3,2],[1,1,1,2]],[[1,1,2,2],[1,0,3,2],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,0,3,3],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,0,3,2],[0,3,4,2],[1,1,2,0]],[[1,1,2,1],[1,0,3,2],[0,3,3,3],[1,1,2,0]],[[1,1,2,1],[1,0,3,2],[0,3,3,2],[1,1,3,0]],[[1,1,2,2],[1,0,3,2],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,0,3,3],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,0,3,2],[0,3,4,2],[1,2,0,1]],[[1,1,2,1],[1,0,3,2],[0,3,3,3],[1,2,0,1]],[[1,1,2,1],[1,0,3,2],[0,3,3,2],[1,2,0,2]],[[1,1,2,2],[1,0,3,2],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,0,3,3],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,0,3,2],[0,3,4,2],[1,2,1,0]],[[1,1,2,1],[1,0,3,2],[0,3,3,3],[1,2,1,0]],[[1,1,2,2],[1,0,3,2],[1,1,3,2],[0,2,2,1]],[[1,1,2,1],[1,0,3,3],[1,1,3,2],[0,2,2,1]],[[1,1,2,1],[1,0,3,2],[1,1,3,3],[0,2,2,1]],[[1,1,2,1],[1,0,3,2],[1,1,3,2],[0,2,3,1]],[[1,1,2,1],[1,0,3,2],[1,1,3,2],[0,2,2,2]],[[1,1,2,2],[1,0,3,2],[1,2,2,2],[0,2,2,1]],[[1,1,2,1],[1,0,3,3],[1,2,2,2],[0,2,2,1]],[[1,1,2,1],[1,0,3,2],[1,2,2,3],[0,2,2,1]],[[1,1,2,1],[1,0,3,2],[1,2,2,2],[0,2,3,1]],[[1,1,2,1],[1,0,3,2],[1,2,2,2],[0,2,2,2]],[[1,1,2,1],[1,0,3,2],[1,2,4,1],[0,2,2,1]],[[1,1,2,1],[1,0,3,2],[1,2,3,1],[0,2,3,1]],[[1,1,2,1],[1,0,3,2],[1,2,3,1],[0,2,2,2]],[[1,1,2,2],[1,0,3,2],[1,2,3,2],[0,2,1,1]],[[1,1,2,1],[1,0,3,3],[1,2,3,2],[0,2,1,1]],[[1,1,2,1],[1,0,3,2],[1,2,4,2],[0,2,1,1]],[[1,1,2,1],[1,0,3,2],[1,2,3,3],[0,2,1,1]],[[1,1,2,1],[1,0,3,2],[1,2,3,2],[0,2,1,2]],[[1,1,2,2],[1,0,3,2],[1,2,3,2],[0,2,2,0]],[[1,1,2,1],[1,0,3,3],[1,2,3,2],[0,2,2,0]],[[1,1,2,1],[1,0,3,2],[1,2,4,2],[0,2,2,0]],[[1,1,2,1],[1,0,3,2],[1,2,3,3],[0,2,2,0]],[[1,1,2,1],[1,0,3,2],[1,2,3,2],[0,2,3,0]],[[1,2,0,0],[2,3,3,2],[2,3,1,1],[2,1,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,1,1],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[2,3,1,1],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,1,2,2],[1,0,3,2],[1,3,2,2],[0,1,2,1]],[[1,1,2,1],[1,0,3,3],[1,3,2,2],[0,1,2,1]],[[1,1,2,1],[1,0,3,2],[1,3,2,3],[0,1,2,1]],[[1,1,2,1],[1,0,3,2],[1,3,2,2],[0,1,3,1]],[[1,1,2,1],[1,0,3,2],[1,3,2,2],[0,1,2,2]],[[2,2,0,0],[2,3,3,2],[2,3,1,1],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[2,3,1,1],[2,1,0,1]],[[1,2,0,0],[2,3,3,2],[3,3,1,1],[1,1,0,1]],[[1,2,0,0],[2,4,3,2],[2,3,1,1],[1,1,0,1]],[[1,2,0,0],[3,3,3,2],[2,3,1,1],[1,1,0,1]],[[2,2,0,0],[2,3,3,2],[2,3,1,1],[1,1,0,1]],[[1,1,2,1],[1,0,3,2],[1,3,4,1],[0,1,2,1]],[[1,1,2,1],[1,0,3,2],[1,3,3,1],[0,1,3,1]],[[1,1,2,1],[1,0,3,2],[1,3,3,1],[0,1,2,2]],[[1,1,2,2],[1,0,3,2],[1,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,0,3,3],[1,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,0,3,2],[1,3,4,2],[0,0,2,1]],[[1,1,2,1],[1,0,3,2],[1,3,3,3],[0,0,2,1]],[[1,1,2,1],[1,0,3,2],[1,3,3,2],[0,0,2,2]],[[1,1,2,2],[1,0,3,2],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,0,3,3],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,0,3,2],[1,3,4,2],[0,1,1,1]],[[1,1,2,1],[1,0,3,2],[1,3,3,3],[0,1,1,1]],[[1,1,2,1],[1,0,3,2],[1,3,3,2],[0,1,1,2]],[[1,1,2,2],[1,0,3,2],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,0,3,3],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,0,3,2],[1,3,4,2],[0,1,2,0]],[[1,1,2,1],[1,0,3,2],[1,3,3,3],[0,1,2,0]],[[1,1,2,1],[1,0,3,2],[1,3,3,2],[0,1,3,0]],[[1,1,2,2],[1,0,3,2],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,0,3,3],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,0,3,2],[1,3,4,2],[0,2,0,1]],[[1,1,2,1],[1,0,3,2],[1,3,3,3],[0,2,0,1]],[[1,1,2,1],[1,0,3,2],[1,3,3,2],[0,2,0,2]],[[1,1,2,2],[1,0,3,2],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,0,3,3],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,0,3,2],[1,3,4,2],[0,2,1,0]],[[1,1,2,1],[1,0,3,2],[1,3,3,3],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,1,1],[0,2,1,0]],[[1,1,2,2],[1,0,3,2],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,0,3,3],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,0,3,2],[1,3,4,2],[1,0,1,1]],[[1,1,2,1],[1,0,3,2],[1,3,3,3],[1,0,1,1]],[[1,1,2,1],[1,0,3,2],[1,3,3,2],[1,0,1,2]],[[1,1,2,2],[1,0,3,2],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,0,3,3],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,0,3,2],[1,3,4,2],[1,0,2,0]],[[1,1,2,1],[1,0,3,2],[1,3,3,3],[1,0,2,0]],[[1,2,0,0],[2,4,3,2],[2,3,1,1],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,3,1,1],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,3,1,1],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,1,1],[0,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,3,1,1],[0,2,0,1]],[[1,2,0,0],[3,3,3,2],[2,3,1,1],[0,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,3,1,1],[0,2,0,1]],[[1,2,0,0],[2,3,3,2],[2,3,1,0],[2,2,0,1]],[[1,2,0,0],[2,3,3,2],[3,3,1,0],[1,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,3,1,0],[1,2,0,1]],[[1,2,0,0],[3,3,3,2],[2,3,1,0],[1,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,3,1,0],[1,2,0,1]],[[1,2,0,0],[2,3,3,2],[2,3,1,0],[2,1,1,1]],[[1,2,0,0],[2,3,3,2],[3,3,1,0],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,3,1,0],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[2,3,1,0],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[2,3,1,0],[1,1,1,1]],[[1,2,0,0],[2,3,3,2],[3,3,1,0],[0,2,1,1]],[[1,2,0,0],[2,4,3,2],[2,3,1,0],[0,2,1,1]],[[1,2,0,0],[3,3,3,2],[2,3,1,0],[0,2,1,1]],[[2,2,0,0],[2,3,3,2],[2,3,1,0],[0,2,1,1]],[[1,2,0,0],[2,3,3,2],[2,3,0,2],[2,2,0,0]],[[1,2,0,0],[2,3,3,2],[3,3,0,2],[1,2,0,0]],[[1,2,0,0],[2,4,3,2],[2,3,0,2],[1,2,0,0]],[[1,2,0,0],[3,3,3,2],[2,3,0,2],[1,2,0,0]],[[2,2,0,0],[2,3,3,2],[2,3,0,2],[1,2,0,0]],[[1,2,0,0],[2,3,3,2],[2,3,0,2],[2,1,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,0,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[2,3,0,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[2,3,0,2],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[2,3,0,2],[2,1,0,1]],[[1,2,0,0],[2,3,3,2],[3,3,0,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,2],[2,3,0,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,2],[2,3,0,2],[1,1,0,1]],[[2,2,0,0],[2,3,3,2],[2,3,0,2],[1,1,0,1]],[[1,2,0,0],[2,3,3,2],[3,3,0,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,3,0,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,3,0,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,0,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,3,0,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,2],[2,3,0,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,3,0,2],[0,2,0,1]],[[1,2,0,0],[2,3,3,2],[2,3,0,1],[2,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,3,0,1],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,3,0,1],[1,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,3,0,1],[1,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,3,0,1],[1,2,1,0]],[[1,2,0,0],[2,3,3,2],[2,3,0,1],[2,1,2,0]],[[1,2,0,0],[2,3,3,2],[3,3,0,1],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[2,3,0,1],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[2,3,0,1],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[2,3,0,1],[1,1,2,0]],[[1,2,0,0],[2,3,3,2],[3,3,0,1],[0,2,2,0]],[[1,2,0,0],[2,4,3,2],[2,3,0,1],[0,2,2,0]],[[1,2,0,0],[3,3,3,2],[2,3,0,1],[0,2,2,0]],[[2,2,0,0],[2,3,3,2],[2,3,0,1],[0,2,2,0]],[[1,2,0,0],[2,3,3,2],[2,3,0,0],[2,2,2,0]],[[1,2,0,0],[2,3,3,2],[3,3,0,0],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[2,3,0,0],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[2,3,0,0],[1,2,2,0]],[[2,2,0,0],[2,3,3,2],[2,3,0,0],[1,2,2,0]],[[1,2,0,0],[2,3,3,2],[2,3,0,0],[2,2,1,1]],[[1,2,0,0],[2,3,3,2],[3,3,0,0],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[2,3,0,0],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[2,3,0,0],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[2,3,0,0],[1,2,1,1]],[[1,2,0,0],[2,3,3,2],[2,3,0,0],[2,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,3,0,0],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[2,3,0,0],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[2,3,0,0],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[2,3,0,0],[1,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,3,0,0],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[2,3,0,0],[0,2,2,1]],[[1,2,0,0],[3,3,3,2],[2,3,0,0],[0,2,2,1]],[[2,2,0,0],[2,3,3,2],[2,3,0,0],[0,2,2,1]],[[1,2,0,0],[2,3,3,2],[2,2,3,1],[2,1,0,0]],[[1,2,0,0],[2,3,3,2],[3,2,3,1],[1,1,0,0]],[[1,2,0,0],[2,4,3,2],[2,2,3,1],[1,1,0,0]],[[1,2,0,0],[3,3,3,2],[2,2,3,1],[1,1,0,0]],[[2,2,0,0],[2,3,3,2],[2,2,3,1],[1,1,0,0]],[[1,2,0,0],[2,3,3,2],[3,2,3,1],[0,2,0,0]],[[1,2,0,0],[2,4,3,2],[2,2,3,1],[0,2,0,0]],[[1,2,0,0],[3,3,3,2],[2,2,3,1],[0,2,0,0]],[[2,2,0,0],[2,3,3,2],[2,2,3,1],[0,2,0,0]],[[1,2,0,0],[2,3,3,2],[2,2,3,0],[2,2,0,0]],[[1,2,0,0],[2,3,3,2],[3,2,3,0],[1,2,0,0]],[[1,2,0,0],[2,4,3,2],[2,2,3,0],[1,2,0,0]],[[1,2,0,0],[3,3,3,2],[2,2,3,0],[1,2,0,0]],[[2,2,0,0],[2,3,3,2],[2,2,3,0],[1,2,0,0]],[[1,2,0,0],[2,3,3,2],[2,2,3,0],[2,1,1,0]],[[1,2,0,0],[2,3,3,2],[3,2,3,0],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[2,2,3,0],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[2,2,3,0],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[2,2,3,0],[2,0,2,0]],[[1,2,0,0],[2,3,3,2],[3,2,3,0],[1,0,2,0]],[[1,2,0,0],[2,4,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,0,0],[3,3,3,2],[2,2,3,0],[1,0,2,0]],[[2,2,0,0],[2,3,3,2],[2,2,3,0],[1,0,2,0]],[[1,2,0,0],[2,3,3,2],[3,2,3,0],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,2,3,0],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,2,3,0],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,2,3,0],[0,1,2,0]],[[1,2,0,0],[2,4,3,2],[2,2,3,0],[0,1,2,0]],[[1,2,0,0],[3,3,3,2],[2,2,3,0],[0,1,2,0]],[[2,2,0,0],[2,3,3,2],[2,2,3,0],[0,1,2,0]],[[1,2,0,0],[2,3,3,2],[2,2,2,1],[2,2,0,0]],[[1,2,0,0],[2,3,3,2],[3,2,2,1],[1,2,0,0]],[[1,2,0,0],[2,4,3,2],[2,2,2,1],[1,2,0,0]],[[1,2,0,0],[3,3,3,2],[2,2,2,1],[1,2,0,0]],[[2,2,0,0],[2,3,3,2],[2,2,2,1],[1,2,0,0]],[[1,2,0,0],[2,3,3,2],[2,2,2,1],[2,1,1,0]],[[1,2,0,0],[2,3,3,2],[3,2,2,1],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[2,2,2,1],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[2,2,2,1],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[2,2,2,1],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[2,2,2,1],[2,1,0,1]],[[1,2,0,0],[2,3,3,2],[3,2,2,1],[1,1,0,1]],[[1,2,0,0],[2,4,3,2],[2,2,2,1],[1,1,0,1]],[[1,2,0,0],[3,3,3,2],[2,2,2,1],[1,1,0,1]],[[2,2,0,0],[2,3,3,2],[2,2,2,1],[1,1,0,1]],[[1,2,0,0],[2,3,3,2],[2,2,2,1],[2,0,2,0]],[[1,2,0,0],[2,3,3,2],[3,2,2,1],[1,0,2,0]],[[1,2,0,0],[2,4,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,0,0],[3,3,3,2],[2,2,2,1],[1,0,2,0]],[[2,2,0,0],[2,3,3,2],[2,2,2,1],[1,0,2,0]],[[1,2,0,0],[2,3,3,2],[2,2,2,1],[2,0,1,1]],[[1,2,0,0],[2,3,3,2],[3,2,2,1],[1,0,1,1]],[[1,2,0,0],[2,4,3,2],[2,2,2,1],[1,0,1,1]],[[1,2,0,0],[3,3,3,2],[2,2,2,1],[1,0,1,1]],[[2,2,0,0],[2,3,3,2],[2,2,2,1],[1,0,1,1]],[[1,2,0,0],[2,3,3,2],[3,2,2,1],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,2,2,1],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,2,2,1],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,2,2,1],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,2,2,1],[0,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,2,2,1],[0,2,0,1]],[[1,2,0,0],[3,3,3,2],[2,2,2,1],[0,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,2,2,1],[0,2,0,1]],[[1,2,0,0],[2,3,3,2],[3,2,2,1],[0,1,2,0]],[[1,2,0,0],[2,4,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,0,0],[3,3,3,2],[2,2,2,1],[0,1,2,0]],[[2,2,0,0],[2,3,3,2],[2,2,2,1],[0,1,2,0]],[[1,2,0,0],[2,3,3,2],[3,2,2,1],[0,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,2,2,1],[0,1,1,1]],[[1,2,0,0],[3,3,3,2],[2,2,2,1],[0,1,1,1]],[[2,2,0,0],[2,3,3,2],[2,2,2,1],[0,1,1,1]],[[1,2,0,0],[2,3,3,2],[2,2,2,0],[2,2,0,1]],[[1,2,0,0],[2,3,3,2],[3,2,2,0],[1,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,2,2,0],[1,2,0,1]],[[1,2,0,0],[3,3,3,2],[2,2,2,0],[1,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,2,2,0],[1,2,0,1]],[[1,1,2,2],[1,1,3,2],[0,0,3,2],[1,2,2,1]],[[1,1,2,1],[1,1,3,3],[0,0,3,2],[1,2,2,1]],[[1,1,2,1],[1,1,3,2],[0,0,3,3],[1,2,2,1]],[[1,1,2,1],[1,1,3,2],[0,0,3,2],[1,2,3,1]],[[1,1,2,1],[1,1,3,2],[0,0,3,2],[1,2,2,2]],[[1,2,0,0],[2,3,3,2],[2,2,2,0],[2,1,1,1]],[[1,2,0,0],[2,3,3,2],[3,2,2,0],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[2,2,2,0],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[2,2,2,0],[1,1,1,1]],[[1,2,0,0],[2,3,3,2],[2,2,2,0],[2,0,2,1]],[[1,2,0,0],[2,3,3,2],[3,2,2,0],[1,0,2,1]],[[1,2,0,0],[2,4,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,0,0],[3,3,3,2],[2,2,2,0],[1,0,2,1]],[[2,2,0,0],[2,3,3,2],[2,2,2,0],[1,0,2,1]],[[1,2,0,0],[2,3,3,2],[3,2,2,0],[0,2,1,1]],[[1,2,0,0],[2,4,3,2],[2,2,2,0],[0,2,1,1]],[[1,2,0,0],[3,3,3,2],[2,2,2,0],[0,2,1,1]],[[2,2,0,0],[2,3,3,2],[2,2,2,0],[0,2,1,1]],[[1,2,0,0],[2,3,3,2],[3,2,2,0],[0,1,2,1]],[[1,2,0,0],[2,4,3,2],[2,2,2,0],[0,1,2,1]],[[1,2,0,0],[3,3,3,2],[2,2,2,0],[0,1,2,1]],[[2,2,0,0],[2,3,3,2],[2,2,2,0],[0,1,2,1]],[[1,2,0,0],[2,3,3,2],[2,2,1,2],[2,2,0,0]],[[1,2,0,0],[2,3,3,2],[3,2,1,2],[1,2,0,0]],[[1,1,2,2],[1,1,3,2],[1,0,3,2],[0,2,2,1]],[[1,1,2,1],[1,1,3,3],[1,0,3,2],[0,2,2,1]],[[1,1,2,1],[1,1,3,2],[1,0,3,3],[0,2,2,1]],[[1,1,2,1],[1,1,3,2],[1,0,3,2],[0,2,3,1]],[[1,1,2,1],[1,1,3,2],[1,0,3,2],[0,2,2,2]],[[1,2,0,0],[2,4,3,2],[2,2,1,2],[1,2,0,0]],[[1,2,0,0],[3,3,3,2],[2,2,1,2],[1,2,0,0]],[[2,2,0,0],[2,3,3,2],[2,2,1,2],[1,2,0,0]],[[1,2,0,0],[2,3,3,2],[2,2,1,2],[2,1,1,0]],[[1,2,0,0],[2,3,3,2],[3,2,1,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[2,2,1,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[2,2,1,2],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[2,2,1,2],[2,1,0,1]],[[1,2,0,0],[2,3,3,2],[3,2,1,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,2],[2,2,1,2],[1,1,0,1]],[[2,2,0,0],[2,3,3,2],[2,2,1,2],[1,1,0,1]],[[1,2,0,0],[2,3,3,2],[2,2,1,2],[2,0,2,0]],[[1,2,0,0],[2,3,3,2],[3,2,1,2],[1,0,2,0]],[[1,2,0,0],[2,4,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,0,0],[3,3,3,2],[2,2,1,2],[1,0,2,0]],[[2,2,0,0],[2,3,3,2],[2,2,1,2],[1,0,2,0]],[[1,2,0,0],[2,3,3,2],[2,2,1,2],[2,0,1,1]],[[1,2,0,0],[2,3,3,2],[3,2,1,2],[1,0,1,1]],[[1,2,0,0],[2,4,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,0,0],[3,3,3,2],[2,2,1,2],[1,0,1,1]],[[2,2,0,0],[2,3,3,2],[2,2,1,2],[1,0,1,1]],[[1,2,0,0],[2,3,3,2],[3,2,1,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,2,1,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,2,1,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,2,1,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,2],[2,2,1,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,2,1,2],[0,2,0,1]],[[1,2,0,0],[2,3,3,2],[3,2,1,2],[0,1,2,0]],[[1,2,0,0],[2,4,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,0,0],[3,3,3,2],[2,2,1,2],[0,1,2,0]],[[2,2,0,0],[2,3,3,2],[2,2,1,2],[0,1,2,0]],[[1,2,0,0],[2,3,3,2],[3,2,1,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,0,0],[3,3,3,2],[2,2,1,2],[0,1,1,1]],[[2,2,0,0],[2,3,3,2],[2,2,1,2],[0,1,1,1]],[[1,2,0,0],[2,3,3,2],[2,2,1,1],[2,1,2,0]],[[1,2,0,0],[2,3,3,2],[3,2,1,1],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[2,2,1,1],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[2,2,1,1],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[2,2,1,1],[1,1,2,0]],[[1,2,0,0],[2,3,3,2],[3,2,1,1],[0,2,2,0]],[[1,2,0,0],[2,4,3,2],[2,2,1,1],[0,2,2,0]],[[1,2,0,0],[3,3,3,2],[2,2,1,1],[0,2,2,0]],[[2,2,0,0],[2,3,3,2],[2,2,1,1],[0,2,2,0]],[[1,2,0,0],[2,3,3,2],[2,2,1,0],[2,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,2,1,0],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[2,2,1,0],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[2,2,1,0],[1,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,2,1,0],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[2,2,1,0],[0,2,2,1]],[[1,2,0,0],[3,3,3,2],[2,2,1,0],[0,2,2,1]],[[2,2,0,0],[2,3,3,2],[2,2,1,0],[0,2,2,1]],[[1,2,0,0],[2,3,3,2],[2,2,0,2],[2,1,2,0]],[[1,2,0,0],[2,3,3,2],[3,2,0,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[2,2,0,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[2,2,0,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,2],[2,2,0,2],[2,1,1,1]],[[1,2,0,0],[2,3,3,2],[3,2,0,2],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[2,2,0,2],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[2,2,0,2],[1,1,1,1]],[[1,2,0,0],[2,3,3,2],[2,2,0,2],[2,0,2,1]],[[1,2,0,0],[2,3,3,2],[3,2,0,2],[1,0,2,1]],[[1,2,0,0],[2,4,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,0,0],[3,3,3,2],[2,2,0,2],[1,0,2,1]],[[2,2,0,0],[2,3,3,2],[2,2,0,2],[1,0,2,1]],[[1,2,0,0],[2,3,3,2],[3,2,0,2],[0,2,2,0]],[[1,2,0,0],[2,4,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,0,0],[3,3,3,2],[2,2,0,2],[0,2,2,0]],[[2,2,0,0],[2,3,3,2],[2,2,0,2],[0,2,2,0]],[[1,2,0,0],[2,3,3,2],[3,2,0,2],[0,2,1,1]],[[1,2,0,0],[2,4,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,0,0],[3,3,3,2],[2,2,0,2],[0,2,1,1]],[[2,2,0,0],[2,3,3,2],[2,2,0,2],[0,2,1,1]],[[1,2,0,0],[2,3,3,2],[3,2,0,2],[0,1,2,1]],[[1,2,0,0],[2,4,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,0,0],[3,3,3,2],[2,2,0,2],[0,1,2,1]],[[2,2,0,0],[2,3,3,2],[2,2,0,2],[0,1,2,1]],[[1,2,0,0],[2,3,3,2],[2,2,0,1],[1,3,2,0]],[[1,2,0,0],[2,3,3,2],[2,2,0,1],[2,2,2,0]],[[1,2,0,0],[2,3,3,2],[3,2,0,1],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[2,2,0,1],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[2,2,0,1],[1,2,2,0]],[[2,2,0,0],[2,3,3,2],[2,2,0,1],[1,2,2,0]],[[1,2,0,0],[2,3,3,2],[2,2,0,1],[2,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,2,0,1],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[2,2,0,1],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[2,2,0,1],[1,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,2,0,1],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[2,2,0,1],[0,2,2,1]],[[1,2,0,0],[3,3,3,2],[2,2,0,1],[0,2,2,1]],[[2,2,0,0],[2,3,3,2],[2,2,0,1],[0,2,2,1]],[[1,2,0,0],[2,3,3,2],[2,2,0,0],[1,3,2,1]],[[1,2,0,0],[2,3,3,2],[2,2,0,0],[2,2,2,1]],[[1,2,0,0],[2,3,3,2],[3,2,0,0],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[2,2,0,0],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[2,2,0,0],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[2,2,0,0],[1,2,2,1]],[[1,2,0,0],[2,3,3,2],[3,1,3,2],[1,0,0,1]],[[1,2,0,0],[2,4,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,0,0],[3,3,3,2],[2,1,3,2],[1,0,0,1]],[[2,2,0,0],[2,3,3,2],[2,1,3,2],[1,0,0,1]],[[1,2,0,0],[2,4,3,2],[2,1,3,2],[0,1,0,1]],[[1,2,0,0],[3,3,3,2],[2,1,3,2],[0,1,0,1]],[[2,2,0,0],[2,3,3,2],[2,1,3,2],[0,1,0,1]],[[1,2,0,0],[2,3,3,2],[2,1,3,1],[2,1,1,0]],[[1,2,0,0],[2,3,3,2],[3,1,3,1],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[2,1,3,1],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[2,1,3,1],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[2,1,3,1],[2,1,0,1]],[[1,2,0,0],[2,3,3,2],[3,1,3,1],[1,1,0,1]],[[1,2,0,0],[2,4,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,0,0],[3,3,3,2],[2,1,3,1],[1,1,0,1]],[[2,2,0,0],[2,3,3,2],[2,1,3,1],[1,1,0,1]],[[1,2,0,0],[2,3,3,2],[2,1,3,1],[2,0,2,0]],[[1,2,0,0],[2,3,3,2],[3,1,3,1],[1,0,2,0]],[[1,2,0,0],[2,4,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,0,0],[3,3,3,2],[2,1,3,1],[1,0,2,0]],[[2,2,0,0],[2,3,3,2],[2,1,3,1],[1,0,2,0]],[[1,2,0,0],[2,3,3,2],[2,1,3,1],[2,0,1,1]],[[1,2,0,0],[2,3,3,2],[3,1,3,1],[1,0,1,1]],[[1,2,0,0],[2,4,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,0,0],[3,3,3,2],[2,1,3,1],[1,0,1,1]],[[2,2,0,0],[2,3,3,2],[2,1,3,1],[1,0,1,1]],[[1,2,0,0],[2,3,3,2],[3,1,3,1],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,1,3,1],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,1,3,1],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,1,3,1],[0,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,0,0],[3,3,3,2],[2,1,3,1],[0,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,1,3,1],[0,2,0,1]],[[1,2,0,0],[2,3,3,2],[3,1,3,1],[0,1,2,0]],[[1,2,0,0],[2,4,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,0,0],[3,3,3,2],[2,1,3,1],[0,1,2,0]],[[2,2,0,0],[2,3,3,2],[2,1,3,1],[0,1,2,0]],[[1,2,0,0],[2,3,3,2],[3,1,3,1],[0,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,0,0],[3,3,3,2],[2,1,3,1],[0,1,1,1]],[[2,2,0,0],[2,3,3,2],[2,1,3,1],[0,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,0,0],[3,3,3,2],[2,1,3,1],[0,0,2,1]],[[2,2,0,0],[2,3,3,2],[2,1,3,1],[0,0,2,1]],[[1,2,0,0],[2,3,3,2],[2,1,3,0],[1,3,1,0]],[[1,2,0,0],[2,3,3,2],[2,1,3,0],[2,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,1,3,0],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,1,3,0],[1,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,1,3,0],[1,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,1,3,0],[1,2,1,0]],[[1,2,0,0],[2,3,3,2],[2,1,3,0],[2,1,1,1]],[[1,2,0,0],[2,3,3,2],[3,1,3,0],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[2,1,3,0],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[2,1,3,0],[1,1,1,1]],[[1,2,0,0],[2,3,3,2],[2,1,3,0],[2,0,2,1]],[[1,2,0,0],[2,3,3,2],[3,1,3,0],[1,0,2,1]],[[1,2,0,0],[2,4,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,0,0],[3,3,3,2],[2,1,3,0],[1,0,2,1]],[[2,2,0,0],[2,3,3,2],[2,1,3,0],[1,0,2,1]],[[1,2,0,0],[2,3,3,2],[3,1,3,0],[0,2,1,1]],[[1,2,0,0],[2,4,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,0,0],[3,3,3,2],[2,1,3,0],[0,2,1,1]],[[2,2,0,0],[2,3,3,2],[2,1,3,0],[0,2,1,1]],[[1,2,0,0],[2,3,3,2],[3,1,3,0],[0,1,2,1]],[[1,2,0,0],[2,4,3,2],[2,1,3,0],[0,1,2,1]],[[1,2,0,0],[3,3,3,2],[2,1,3,0],[0,1,2,1]],[[2,2,0,0],[2,3,3,2],[2,1,3,0],[0,1,2,1]],[[1,2,0,0],[2,3,3,2],[2,1,2,2],[2,1,1,0]],[[1,2,0,0],[2,3,3,2],[3,1,2,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[2,1,2,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[2,1,2,2],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[2,1,2,2],[2,1,0,1]],[[1,2,0,0],[2,3,3,2],[3,1,2,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,2],[2,1,2,2],[1,1,0,1]],[[2,2,0,0],[2,3,3,2],[2,1,2,2],[1,1,0,1]],[[1,2,0,0],[2,3,3,2],[2,1,2,2],[2,0,2,0]],[[1,2,0,0],[2,3,3,2],[3,1,2,2],[1,0,2,0]],[[1,2,0,0],[2,4,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,0,0],[3,3,3,2],[2,1,2,2],[1,0,2,0]],[[2,2,0,0],[2,3,3,2],[2,1,2,2],[1,0,2,0]],[[1,2,0,0],[2,3,3,2],[2,1,2,2],[2,0,1,1]],[[1,2,0,0],[2,3,3,2],[3,1,2,2],[1,0,1,1]],[[1,2,0,0],[2,4,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,0,0],[3,3,3,2],[2,1,2,2],[1,0,1,1]],[[2,2,0,0],[2,3,3,2],[2,1,2,2],[1,0,1,1]],[[1,2,0,0],[2,3,3,2],[3,1,2,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,1,2,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,1,2,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,1,2,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,1,2,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,2],[2,1,2,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,1,2,2],[0,2,0,1]],[[1,2,0,0],[2,3,3,2],[3,1,2,2],[0,1,2,0]],[[1,2,0,0],[2,4,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,0,0],[3,3,3,2],[2,1,2,2],[0,1,2,0]],[[2,2,0,0],[2,3,3,2],[2,1,2,2],[0,1,2,0]],[[1,2,0,0],[2,3,3,2],[3,1,2,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,0,0],[3,3,3,2],[2,1,2,2],[0,1,1,1]],[[2,2,0,0],[2,3,3,2],[2,1,2,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,1,2,2],[0,0,2,1]],[[1,2,0,0],[3,3,3,2],[2,1,2,2],[0,0,2,1]],[[2,2,0,0],[2,3,3,2],[2,1,2,2],[0,0,2,1]],[[1,1,2,1],[1,2,0,2],[0,2,3,3],[1,2,2,1]],[[1,1,2,1],[1,2,0,2],[0,2,3,2],[1,3,2,1]],[[1,1,2,1],[1,2,0,2],[0,2,3,2],[1,2,3,1]],[[1,1,2,1],[1,2,0,2],[0,2,3,2],[1,2,2,2]],[[1,1,2,1],[1,2,0,2],[0,3,3,3],[1,1,2,1]],[[1,1,2,1],[1,2,0,2],[0,3,3,2],[1,1,3,1]],[[1,1,2,1],[1,2,0,2],[0,3,3,2],[1,1,2,2]],[[1,1,2,1],[1,2,0,2],[1,2,3,3],[0,2,2,1]],[[1,1,2,1],[1,2,0,2],[1,2,3,2],[0,2,3,1]],[[1,1,2,1],[1,2,0,2],[1,2,3,2],[0,2,2,2]],[[1,1,2,1],[1,2,0,2],[1,3,3,3],[0,1,2,1]],[[1,1,2,1],[1,2,0,2],[1,3,3,2],[0,1,3,1]],[[1,1,2,1],[1,2,0,2],[1,3,3,2],[0,1,2,2]],[[1,2,0,0],[2,3,3,2],[2,1,2,1],[1,3,1,0]],[[1,2,0,0],[2,3,3,2],[2,1,2,1],[2,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,1,2,1],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,1,2,1],[1,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,1,2,1],[1,2,1,0]],[[1,2,0,0],[2,3,3,2],[2,1,2,1],[1,3,0,1]],[[1,2,0,0],[2,3,3,2],[2,1,2,1],[2,2,0,1]],[[1,2,0,0],[2,3,3,2],[3,1,2,1],[1,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,2],[1,2,1,2],[0,1,3,2],[1,2,2,1]],[[1,1,2,1],[1,2,1,3],[0,1,3,2],[1,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,1,3,3],[1,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,1,3,2],[1,2,3,1]],[[1,1,2,1],[1,2,1,2],[0,1,3,2],[1,2,2,2]],[[1,1,3,1],[1,2,1,2],[0,2,2,2],[1,2,2,1]],[[1,1,2,2],[1,2,1,2],[0,2,2,2],[1,2,2,1]],[[1,1,2,1],[1,2,1,3],[0,2,2,2],[1,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,2,2,3],[1,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,2,2,2],[2,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,2,2,2],[1,3,2,1]],[[1,1,2,1],[1,2,1,2],[0,2,2,2],[1,2,3,1]],[[1,1,2,1],[1,2,1,2],[0,2,2,2],[1,2,2,2]],[[1,1,2,1],[1,2,1,2],[0,2,4,1],[1,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,2,3,1],[2,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,2,3,1],[1,3,2,1]],[[1,1,2,1],[1,2,1,2],[0,2,3,1],[1,2,3,1]],[[1,1,2,1],[1,2,1,2],[0,2,3,1],[1,2,2,2]],[[1,1,3,1],[1,2,1,2],[0,2,3,2],[1,2,1,1]],[[1,1,2,2],[1,2,1,2],[0,2,3,2],[1,2,1,1]],[[1,1,2,1],[1,2,1,3],[0,2,3,2],[1,2,1,1]],[[1,1,2,1],[1,2,1,2],[0,2,4,2],[1,2,1,1]],[[1,1,2,1],[1,2,1,2],[0,2,3,3],[1,2,1,1]],[[1,1,2,1],[1,2,1,2],[0,2,3,2],[1,2,1,2]],[[1,1,3,1],[1,2,1,2],[0,2,3,2],[1,2,2,0]],[[1,1,2,2],[1,2,1,2],[0,2,3,2],[1,2,2,0]],[[1,1,2,1],[1,2,1,3],[0,2,3,2],[1,2,2,0]],[[1,1,2,1],[1,2,1,2],[0,2,4,2],[1,2,2,0]],[[1,1,2,1],[1,2,1,2],[0,2,3,3],[1,2,2,0]],[[1,1,2,1],[1,2,1,2],[0,2,3,2],[2,2,2,0]],[[1,1,2,1],[1,2,1,2],[0,2,3,2],[1,3,2,0]],[[1,1,2,1],[1,2,1,2],[0,2,3,2],[1,2,3,0]],[[1,1,3,1],[1,2,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,2],[1,2,1,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[1,2,1,3],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,4,1,2],[1,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,1,3],[1,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,1,2],[2,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,1,2],[1,3,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,1,2],[1,2,3,1]],[[1,1,2,1],[1,2,1,2],[0,3,1,2],[1,2,2,2]],[[1,1,2,1],[1,2,1,2],[0,4,2,1],[1,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,2,1],[2,2,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,2,1],[1,3,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,2,1],[1,2,3,1]],[[1,1,2,1],[1,2,1,2],[0,3,2,1],[1,2,2,2]],[[1,1,3,1],[1,2,1,2],[0,3,2,2],[1,1,2,1]],[[1,1,2,2],[1,2,1,2],[0,3,2,2],[1,1,2,1]],[[1,1,2,1],[1,2,1,3],[0,3,2,2],[1,1,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,2,3],[1,1,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,2,2],[1,1,3,1]],[[1,1,2,1],[1,2,1,2],[0,3,2,2],[1,1,2,2]],[[1,1,2,1],[1,2,1,2],[0,4,2,2],[1,2,2,0]],[[1,1,2,1],[1,2,1,2],[0,3,2,2],[2,2,2,0]],[[1,1,2,1],[1,2,1,2],[0,3,2,2],[1,3,2,0]],[[1,1,2,1],[1,2,1,2],[0,3,2,2],[1,2,3,0]],[[1,1,2,1],[1,2,1,2],[0,4,3,1],[1,1,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,4,1],[1,1,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,1],[1,1,3,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,1],[1,1,2,2]],[[1,1,2,1],[1,2,1,2],[0,4,3,1],[1,2,1,1]],[[1,1,2,1],[1,2,1,2],[0,3,4,1],[1,2,1,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,1],[2,2,1,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,1],[1,3,1,1]],[[1,1,3,1],[1,2,1,2],[0,3,3,2],[1,0,2,1]],[[1,1,2,2],[1,2,1,2],[0,3,3,2],[1,0,2,1]],[[1,1,2,1],[1,2,1,3],[0,3,3,2],[1,0,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,4,2],[1,0,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,3],[1,0,2,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,2],[1,0,2,2]],[[1,1,3,1],[1,2,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,2,2],[1,2,1,2],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,2,1,3],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,2,1,2],[0,4,3,2],[1,1,1,1]],[[1,1,2,1],[1,2,1,2],[0,3,4,2],[1,1,1,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,3],[1,1,1,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,2],[1,1,1,2]],[[1,1,3,1],[1,2,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,2,2],[1,2,1,2],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,2,1,3],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,2,1,2],[0,4,3,2],[1,1,2,0]],[[1,1,2,1],[1,2,1,2],[0,3,4,2],[1,1,2,0]],[[1,1,2,1],[1,2,1,2],[0,3,3,3],[1,1,2,0]],[[1,1,2,1],[1,2,1,2],[0,3,3,2],[1,1,3,0]],[[1,1,3,1],[1,2,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,2,2],[1,2,1,2],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,2,1,3],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,2,1,2],[0,4,3,2],[1,2,0,1]],[[1,1,2,1],[1,2,1,2],[0,3,4,2],[1,2,0,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,3],[1,2,0,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,2],[2,2,0,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,2],[1,3,0,1]],[[1,1,2,1],[1,2,1,2],[0,3,3,2],[1,2,0,2]],[[1,1,3,1],[1,2,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,2,2],[1,2,1,2],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,2,1,3],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,2,1,2],[0,4,3,2],[1,2,1,0]],[[1,1,2,1],[1,2,1,2],[0,3,4,2],[1,2,1,0]],[[1,1,2,1],[1,2,1,2],[0,3,3,3],[1,2,1,0]],[[1,1,2,1],[1,2,1,2],[0,3,3,2],[2,2,1,0]],[[1,1,2,1],[1,2,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,0,0],[3,3,3,2],[2,1,2,1],[1,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,2],[1,2,1,2],[1,1,3,2],[0,2,2,1]],[[1,1,2,1],[1,2,1,3],[1,1,3,2],[0,2,2,1]],[[1,1,2,1],[1,2,1,2],[1,1,3,3],[0,2,2,1]],[[1,1,2,1],[1,2,1,2],[1,1,3,2],[0,2,3,1]],[[1,1,2,1],[1,2,1,2],[1,1,3,2],[0,2,2,2]],[[1,1,3,1],[1,2,1,2],[1,2,2,2],[0,2,2,1]],[[1,1,2,2],[1,2,1,2],[1,2,2,2],[0,2,2,1]],[[1,1,2,1],[1,2,1,3],[1,2,2,2],[0,2,2,1]],[[1,1,2,1],[1,2,1,2],[1,2,2,3],[0,2,2,1]],[[1,1,2,1],[1,2,1,2],[1,2,2,2],[0,3,2,1]],[[1,1,2,1],[1,2,1,2],[1,2,2,2],[0,2,3,1]],[[1,1,2,1],[1,2,1,2],[1,2,2,2],[0,2,2,2]],[[1,1,2,1],[1,2,1,2],[1,2,4,1],[0,2,2,1]],[[1,1,2,1],[1,2,1,2],[1,2,3,1],[0,3,2,1]],[[1,1,2,1],[1,2,1,2],[1,2,3,1],[0,2,3,1]],[[1,1,2,1],[1,2,1,2],[1,2,3,1],[0,2,2,2]],[[1,1,3,1],[1,2,1,2],[1,2,3,2],[0,2,1,1]],[[1,1,2,2],[1,2,1,2],[1,2,3,2],[0,2,1,1]],[[1,1,2,1],[1,2,1,3],[1,2,3,2],[0,2,1,1]],[[1,1,2,1],[1,2,1,2],[1,2,4,2],[0,2,1,1]],[[1,1,2,1],[1,2,1,2],[1,2,3,3],[0,2,1,1]],[[1,1,2,1],[1,2,1,2],[1,2,3,2],[0,2,1,2]],[[1,1,3,1],[1,2,1,2],[1,2,3,2],[0,2,2,0]],[[1,1,2,2],[1,2,1,2],[1,2,3,2],[0,2,2,0]],[[1,1,2,1],[1,2,1,3],[1,2,3,2],[0,2,2,0]],[[1,1,2,1],[1,2,1,2],[1,2,4,2],[0,2,2,0]],[[1,1,2,1],[1,2,1,2],[1,2,3,3],[0,2,2,0]],[[1,1,2,1],[1,2,1,2],[1,2,3,2],[0,3,2,0]],[[1,1,2,1],[1,2,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,0,0],[2,3,3,2],[2,1,2,0],[1,3,1,1]],[[1,2,0,0],[2,3,3,2],[2,1,2,0],[2,2,1,1]],[[1,2,0,0],[2,3,3,2],[3,1,2,0],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[2,1,2,0],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[2,1,2,0],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[2,1,2,0],[1,2,1,1]],[[1,1,3,1],[1,2,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,2,2],[1,2,1,2],[1,3,1,2],[0,2,2,1]],[[1,1,2,1],[1,2,1,3],[1,3,1,2],[0,2,2,1]],[[1,1,2,1],[1,2,1,2],[1,4,1,2],[0,2,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,1,3],[0,2,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,1,2],[0,3,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,1,2],[0,2,3,1]],[[1,1,2,1],[1,2,1,2],[1,3,1,2],[0,2,2,2]],[[1,1,2,1],[1,2,1,2],[1,4,2,1],[0,2,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,2,1],[0,3,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,2,1],[0,2,3,1]],[[1,1,2,1],[1,2,1,2],[1,3,2,1],[0,2,2,2]],[[1,1,3,1],[1,2,1,2],[1,3,2,2],[0,1,2,1]],[[1,1,2,2],[1,2,1,2],[1,3,2,2],[0,1,2,1]],[[1,1,2,1],[1,2,1,3],[1,3,2,2],[0,1,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,2,3],[0,1,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,2,2],[0,1,3,1]],[[1,1,2,1],[1,2,1,2],[1,3,2,2],[0,1,2,2]],[[1,1,2,1],[1,2,1,2],[1,4,2,2],[0,2,2,0]],[[1,1,2,1],[1,2,1,2],[1,3,2,2],[0,3,2,0]],[[1,1,2,1],[1,2,1,2],[1,3,2,2],[0,2,3,0]],[[1,1,3,1],[1,2,1,2],[1,3,2,2],[1,0,2,1]],[[1,1,2,2],[1,2,1,2],[1,3,2,2],[1,0,2,1]],[[1,1,2,1],[1,2,1,3],[1,3,2,2],[1,0,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,2,3],[1,0,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,2,2],[1,0,3,1]],[[1,1,2,1],[1,2,1,2],[1,3,2,2],[1,0,2,2]],[[1,1,2,1],[1,2,1,2],[1,4,3,1],[0,1,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,4,1],[0,1,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,1],[0,1,3,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,1],[0,1,2,2]],[[1,1,2,1],[1,2,1,2],[1,4,3,1],[0,2,1,1]],[[1,1,2,1],[1,2,1,2],[1,3,4,1],[0,2,1,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,1],[0,3,1,1]],[[1,1,2,1],[1,2,1,2],[1,4,3,1],[1,0,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,4,1],[1,0,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,1],[1,0,3,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,1],[1,0,2,2]],[[1,2,0,0],[2,3,3,2],[2,1,1,2],[1,3,1,0]],[[1,2,0,0],[2,3,3,2],[2,1,1,2],[2,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,1,1,2],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,1,3,1],[1,2,1,2],[1,3,3,2],[0,0,2,1]],[[1,1,2,2],[1,2,1,2],[1,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,2,1,3],[1,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,4,2],[0,0,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,3],[0,0,2,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,2],[0,0,2,2]],[[1,1,3,1],[1,2,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,2,2],[1,2,1,2],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,2,1,3],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,2,1,2],[1,4,3,2],[0,1,1,1]],[[1,1,2,1],[1,2,1,2],[1,3,4,2],[0,1,1,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,3],[0,1,1,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,2],[0,1,1,2]],[[1,1,3,1],[1,2,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,2,2],[1,2,1,2],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,2,1,3],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,2,1,2],[1,4,3,2],[0,1,2,0]],[[1,1,2,1],[1,2,1,2],[1,3,4,2],[0,1,2,0]],[[1,1,2,1],[1,2,1,2],[1,3,3,3],[0,1,2,0]],[[1,1,2,1],[1,2,1,2],[1,3,3,2],[0,1,3,0]],[[1,1,3,1],[1,2,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,2,2],[1,2,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,2,1,3],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,2,1,2],[1,4,3,2],[0,2,0,1]],[[1,1,2,1],[1,2,1,2],[1,3,4,2],[0,2,0,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,3],[0,2,0,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,2],[0,3,0,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,2],[0,2,0,2]],[[1,1,3,1],[1,2,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,2,2],[1,2,1,2],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,2,1,3],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,2,1,2],[1,4,3,2],[0,2,1,0]],[[1,1,2,1],[1,2,1,2],[1,3,4,2],[0,2,1,0]],[[1,1,2,1],[1,2,1,2],[1,3,3,3],[0,2,1,0]],[[1,1,2,1],[1,2,1,2],[1,3,3,2],[0,3,1,0]],[[2,2,0,0],[2,3,3,2],[2,1,1,2],[1,2,1,0]],[[1,2,0,0],[2,3,3,2],[2,1,1,2],[1,3,0,1]],[[1,2,0,0],[2,3,3,2],[2,1,1,2],[2,2,0,1]],[[1,2,0,0],[2,3,3,2],[3,1,1,2],[1,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,1,1,2],[1,2,0,1]],[[1,2,0,0],[3,3,3,2],[2,1,1,2],[1,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,1,1,2],[1,2,0,1]],[[1,1,3,1],[1,2,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,2,2],[1,2,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,2,1,3],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,2,1,2],[1,4,3,2],[1,0,1,1]],[[1,1,2,1],[1,2,1,2],[1,3,4,2],[1,0,1,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,3],[1,0,1,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,2],[1,0,1,2]],[[1,1,3,1],[1,2,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,2,2],[1,2,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,2,1,3],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,2,1,2],[1,4,3,2],[1,0,2,0]],[[1,1,2,1],[1,2,1,2],[1,3,4,2],[1,0,2,0]],[[1,1,2,1],[1,2,1,2],[1,3,3,3],[1,0,2,0]],[[1,1,2,1],[1,2,1,2],[1,3,3,2],[1,0,3,0]],[[1,1,3,1],[1,2,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,2],[1,2,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,2,1,3],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,2,1,2],[1,4,3,2],[1,1,0,1]],[[1,1,2,1],[1,2,1,2],[1,3,4,2],[1,1,0,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,3],[1,1,0,1]],[[1,1,2,1],[1,2,1,2],[1,3,3,2],[1,1,0,2]],[[1,1,3,1],[1,2,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,2,2],[1,2,1,2],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,2,1,3],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,2,1,2],[1,4,3,2],[1,1,1,0]],[[1,1,2,1],[1,2,1,2],[1,3,4,2],[1,1,1,0]],[[1,1,2,1],[1,2,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[2,1,1,2],[2,0,2,1]],[[1,2,0,0],[2,3,3,2],[3,1,1,2],[1,0,2,1]],[[1,2,0,0],[2,4,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,0,0],[3,3,3,2],[2,1,1,2],[1,0,2,1]],[[2,2,0,0],[2,3,3,2],[2,1,1,2],[1,0,2,1]],[[1,2,0,0],[2,3,3,2],[3,1,1,2],[0,1,2,1]],[[1,2,0,0],[2,4,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,0,0],[3,3,3,2],[2,1,1,2],[0,1,2,1]],[[2,2,0,0],[2,3,3,2],[2,1,1,2],[0,1,2,1]],[[1,2,0,0],[2,3,3,2],[2,1,1,1],[1,2,3,0]],[[1,2,0,0],[2,3,3,2],[2,1,1,1],[1,3,2,0]],[[1,2,0,0],[2,3,3,2],[2,1,1,1],[2,2,2,0]],[[1,2,0,0],[2,3,3,2],[3,1,1,1],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[2,1,1,1],[1,2,2,0]],[[2,2,0,0],[2,3,3,2],[2,1,1,1],[1,2,2,0]],[[1,2,0,0],[2,3,3,2],[2,1,1,0],[1,2,2,2]],[[1,2,0,0],[2,3,3,2],[2,1,1,0],[1,2,3,1]],[[1,2,0,0],[2,3,3,2],[2,1,1,0],[1,3,2,1]],[[1,2,0,0],[2,3,3,2],[2,1,1,0],[2,2,2,1]],[[1,2,0,0],[2,3,3,2],[3,1,1,0],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[2,1,1,0],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[2,1,1,0],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[2,1,1,0],[1,2,2,1]],[[1,2,0,0],[2,3,3,2],[2,1,0,2],[1,2,3,0]],[[1,2,0,0],[2,3,3,2],[2,1,0,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,2],[2,1,0,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,2],[3,1,0,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[2,1,0,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[2,1,0,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,2],[2,1,0,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,2],[2,1,0,2],[1,3,1,1]],[[1,2,0,0],[2,3,3,2],[2,1,0,2],[2,2,1,1]],[[1,2,0,0],[2,3,3,2],[3,1,0,2],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[2,1,0,2],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[2,1,0,2],[1,2,1,1]],[[1,2,0,0],[2,3,3,2],[2,1,0,2],[2,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,1,0,2],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[2,1,0,2],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[2,1,0,2],[1,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,1,0,2],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,0,0],[3,3,3,2],[2,1,0,2],[0,2,2,1]],[[2,2,0,0],[2,3,3,2],[2,1,0,2],[0,2,2,1]],[[1,2,0,0],[2,3,3,2],[2,1,0,1],[1,2,2,2]],[[1,2,0,0],[2,3,3,2],[2,1,0,1],[1,2,3,1]],[[1,2,0,0],[2,3,3,2],[2,1,0,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,2],[2,1,0,1],[2,2,2,1]],[[1,2,0,0],[2,3,3,2],[3,1,0,1],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[2,1,0,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[2,1,0,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[2,1,0,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,2],[2,0,3,1],[1,3,1,0]],[[1,2,0,0],[2,3,3,2],[2,0,3,1],[2,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,0,3,1],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,0,3,1],[1,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,0,3,1],[1,2,1,0]],[[1,2,0,0],[2,3,3,2],[2,0,3,1],[1,3,0,1]],[[1,2,0,0],[2,3,3,2],[2,0,3,1],[2,2,0,1]],[[1,2,0,0],[2,3,3,2],[3,0,3,1],[1,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,0,0],[3,3,3,2],[2,0,3,1],[1,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,0,3,1],[1,2,0,1]],[[1,2,0,0],[2,3,3,2],[2,0,3,1],[2,1,2,0]],[[1,2,0,0],[2,3,3,2],[3,0,3,1],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[2,0,3,1],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[2,0,3,1],[1,1,2,0]],[[1,2,0,0],[2,3,3,2],[2,0,3,1],[2,1,1,1]],[[1,2,0,0],[2,3,3,2],[3,0,3,1],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[2,0,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[2,0,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,3,2],[3,0,3,1],[0,2,2,0]],[[1,2,0,0],[2,4,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,0,0],[3,3,3,2],[2,0,3,1],[0,2,2,0]],[[2,2,0,0],[2,3,3,2],[2,0,3,1],[0,2,2,0]],[[1,2,0,0],[2,3,3,2],[3,0,3,1],[0,2,1,1]],[[1,2,0,0],[2,4,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,3,2],[2,0,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,3,2],[2,0,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,3,2],[2,0,3,0],[1,3,1,1]],[[1,2,0,0],[2,3,3,2],[2,0,3,0],[2,2,1,1]],[[1,2,0,0],[2,3,3,2],[3,0,3,0],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[2,0,3,0],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[2,0,3,0],[1,2,1,1]],[[1,2,0,0],[2,3,3,2],[2,0,3,0],[2,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,0,3,0],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[2,0,3,0],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[2,0,3,0],[1,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,0,3,0],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,0,0],[3,3,3,2],[2,0,3,0],[0,2,2,1]],[[2,2,0,0],[2,3,3,2],[2,0,3,0],[0,2,2,1]],[[1,2,0,0],[2,3,3,2],[2,0,2,2],[1,3,1,0]],[[1,2,0,0],[2,3,3,2],[2,0,2,2],[2,2,1,0]],[[1,2,0,0],[2,3,3,2],[3,0,2,2],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,0,0],[3,3,3,2],[2,0,2,2],[1,2,1,0]],[[2,2,0,0],[2,3,3,2],[2,0,2,2],[1,2,1,0]],[[1,2,0,0],[2,3,3,2],[2,0,2,2],[1,3,0,1]],[[1,2,0,0],[2,3,3,2],[2,0,2,2],[2,2,0,1]],[[1,2,0,0],[2,3,3,2],[3,0,2,2],[1,2,0,1]],[[1,2,0,0],[2,4,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,0,0],[3,3,3,2],[2,0,2,2],[1,2,0,1]],[[2,2,0,0],[2,3,3,2],[2,0,2,2],[1,2,0,1]],[[1,2,0,0],[2,3,3,2],[2,0,2,2],[2,1,2,0]],[[1,2,0,0],[2,3,3,2],[3,0,2,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[2,0,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[2,0,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,2],[2,0,2,2],[2,1,1,1]],[[1,2,0,0],[2,3,3,2],[3,0,2,2],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[2,0,2,2],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[2,0,2,2],[1,1,1,1]],[[1,2,0,0],[2,3,3,2],[3,0,2,2],[0,2,2,0]],[[1,2,0,0],[2,4,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,0,0],[3,3,3,2],[2,0,2,2],[0,2,2,0]],[[2,2,0,0],[2,3,3,2],[2,0,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,3,2],[3,0,2,2],[0,2,1,1]],[[1,2,0,0],[2,4,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,0,0],[3,3,3,2],[2,0,2,2],[0,2,1,1]],[[2,2,0,0],[2,3,3,2],[2,0,2,2],[0,2,1,1]],[[1,2,0,0],[2,3,3,2],[2,0,2,1],[1,2,3,0]],[[1,2,0,0],[2,3,3,2],[2,0,2,1],[1,3,2,0]],[[1,2,0,0],[2,3,3,2],[2,0,2,1],[2,2,2,0]],[[1,2,0,0],[2,3,3,2],[3,0,2,1],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[2,0,2,1],[1,2,2,0]],[[2,2,0,0],[2,3,3,2],[2,0,2,1],[1,2,2,0]],[[1,2,0,0],[2,3,3,2],[2,0,2,0],[1,2,2,2]],[[1,2,0,0],[2,3,3,2],[2,0,2,0],[1,2,3,1]],[[1,2,0,0],[2,3,3,2],[2,0,2,0],[1,3,2,1]],[[1,2,0,0],[2,3,3,2],[2,0,2,0],[2,2,2,1]],[[1,2,0,0],[2,3,3,2],[3,0,2,0],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[2,0,2,0],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[2,0,2,0],[1,2,2,1]],[[1,2,0,0],[2,3,3,2],[2,0,1,2],[1,2,3,0]],[[1,2,0,0],[2,3,3,2],[2,0,1,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,2],[2,0,1,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,2],[3,0,1,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[2,0,1,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,2],[2,0,1,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,2],[2,0,1,2],[1,3,1,1]],[[1,2,0,0],[2,3,3,2],[2,0,1,2],[2,2,1,1]],[[1,2,0,0],[2,3,3,2],[3,0,1,2],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[2,0,1,2],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[2,0,1,2],[1,2,1,1]],[[1,2,0,0],[2,3,3,2],[2,0,1,2],[2,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,0,1,2],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[2,0,1,2],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[2,0,1,2],[1,1,2,1]],[[1,2,0,0],[2,3,3,2],[3,0,1,2],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,0,0],[3,3,3,2],[2,0,1,2],[0,2,2,1]],[[2,2,0,0],[2,3,3,2],[2,0,1,2],[0,2,2,1]],[[1,2,0,0],[2,3,3,2],[2,0,1,1],[1,2,2,2]],[[1,2,0,0],[2,3,3,2],[2,0,1,1],[1,2,3,1]],[[1,2,0,0],[2,3,3,2],[2,0,1,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,2],[2,0,1,1],[2,2,2,1]],[[1,1,3,1],[1,2,2,2],[0,2,1,2],[1,2,2,1]],[[1,1,2,2],[1,2,2,2],[0,2,1,2],[1,2,2,1]],[[1,1,2,1],[1,2,2,3],[0,2,1,2],[1,2,2,1]],[[1,1,2,1],[1,2,2,2],[0,2,1,3],[1,2,2,1]],[[1,1,2,1],[1,2,2,2],[0,2,1,2],[2,2,2,1]],[[1,1,2,1],[1,2,2,2],[0,2,1,2],[1,3,2,1]],[[1,1,2,1],[1,2,2,2],[0,2,1,2],[1,2,3,1]],[[1,1,2,1],[1,2,2,2],[0,2,1,2],[1,2,2,2]],[[1,1,3,1],[1,2,2,2],[0,2,2,2],[1,2,1,1]],[[1,1,2,2],[1,2,2,2],[0,2,2,2],[1,2,1,1]],[[1,1,2,1],[1,2,2,3],[0,2,2,2],[1,2,1,1]],[[1,1,2,1],[1,2,2,2],[0,2,2,3],[1,2,1,1]],[[1,1,2,1],[1,2,2,2],[0,2,2,2],[1,2,1,2]],[[1,1,3,1],[1,2,2,2],[0,2,2,2],[1,2,2,0]],[[1,1,2,2],[1,2,2,2],[0,2,2,2],[1,2,2,0]],[[1,1,2,1],[1,2,2,3],[0,2,2,2],[1,2,2,0]],[[1,1,2,1],[1,2,2,2],[0,2,2,3],[1,2,2,0]],[[1,1,3,1],[1,2,2,2],[0,2,3,0],[1,2,2,1]],[[1,1,2,2],[1,2,2,2],[0,2,3,0],[1,2,2,1]],[[1,1,2,1],[1,2,2,3],[0,2,3,0],[1,2,2,1]],[[1,1,3,1],[1,2,2,2],[0,2,3,1],[1,2,1,1]],[[1,1,2,2],[1,2,2,2],[0,2,3,1],[1,2,1,1]],[[1,1,2,1],[1,2,2,3],[0,2,3,1],[1,2,1,1]],[[1,1,3,1],[1,2,2,2],[0,2,3,1],[1,2,2,0]],[[1,1,2,2],[1,2,2,2],[0,2,3,1],[1,2,2,0]],[[1,1,2,1],[1,2,2,3],[0,2,3,1],[1,2,2,0]],[[1,2,0,0],[2,3,3,2],[3,0,1,1],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[2,0,1,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[2,0,1,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[2,0,1,1],[1,2,2,1]],[[1,1,3,1],[1,2,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,2,2],[1,2,2,2],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,2,2,3],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,2,2,2],[0,4,0,2],[1,2,2,1]],[[1,1,2,1],[1,2,2,2],[0,3,0,3],[1,2,2,1]],[[1,1,2,1],[1,2,2,2],[0,3,0,2],[2,2,2,1]],[[1,1,2,1],[1,2,2,2],[0,3,0,2],[1,3,2,1]],[[1,1,2,1],[1,2,2,2],[0,3,0,2],[1,2,3,1]],[[1,1,2,1],[1,2,2,2],[0,3,0,2],[1,2,2,2]],[[1,1,3,1],[1,2,2,2],[0,3,1,2],[1,1,2,1]],[[1,1,2,2],[1,2,2,2],[0,3,1,2],[1,1,2,1]],[[1,1,2,1],[1,2,2,3],[0,3,1,2],[1,1,2,1]],[[1,1,2,1],[1,2,2,2],[0,3,1,3],[1,1,2,1]],[[1,1,2,1],[1,2,2,2],[0,3,1,2],[1,1,3,1]],[[1,1,2,1],[1,2,2,2],[0,3,1,2],[1,1,2,2]],[[1,1,3,1],[1,2,2,2],[0,3,2,2],[1,0,2,1]],[[1,1,2,2],[1,2,2,2],[0,3,2,2],[1,0,2,1]],[[1,1,2,1],[1,2,2,3],[0,3,2,2],[1,0,2,1]],[[1,1,2,1],[1,2,2,2],[0,3,2,3],[1,0,2,1]],[[1,1,2,1],[1,2,2,2],[0,3,2,2],[1,0,2,2]],[[1,1,3,1],[1,2,2,2],[0,3,2,2],[1,1,1,1]],[[1,1,2,2],[1,2,2,2],[0,3,2,2],[1,1,1,1]],[[1,1,2,1],[1,2,2,3],[0,3,2,2],[1,1,1,1]],[[1,1,2,1],[1,2,2,2],[0,3,2,3],[1,1,1,1]],[[1,1,2,1],[1,2,2,2],[0,3,2,2],[1,1,1,2]],[[1,1,3,1],[1,2,2,2],[0,3,2,2],[1,1,2,0]],[[1,1,2,2],[1,2,2,2],[0,3,2,2],[1,1,2,0]],[[1,1,2,1],[1,2,2,3],[0,3,2,2],[1,1,2,0]],[[1,1,2,1],[1,2,2,2],[0,3,2,3],[1,1,2,0]],[[1,1,3,1],[1,2,2,2],[0,3,2,2],[1,2,0,1]],[[1,1,2,2],[1,2,2,2],[0,3,2,2],[1,2,0,1]],[[1,1,2,1],[1,2,2,3],[0,3,2,2],[1,2,0,1]],[[1,1,2,1],[1,2,2,2],[0,3,2,3],[1,2,0,1]],[[1,1,2,1],[1,2,2,2],[0,3,2,2],[1,2,0,2]],[[1,1,3,1],[1,2,2,2],[0,3,2,2],[1,2,1,0]],[[1,1,2,2],[1,2,2,2],[0,3,2,2],[1,2,1,0]],[[1,1,2,1],[1,2,2,3],[0,3,2,2],[1,2,1,0]],[[1,1,2,1],[1,2,2,2],[0,3,2,3],[1,2,1,0]],[[1,1,3,1],[1,2,2,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,2],[1,2,2,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,1],[1,2,2,3],[0,3,3,0],[1,1,2,1]],[[1,1,3,1],[1,2,2,2],[0,3,3,0],[1,2,1,1]],[[1,1,2,2],[1,2,2,2],[0,3,3,0],[1,2,1,1]],[[1,1,2,1],[1,2,2,3],[0,3,3,0],[1,2,1,1]],[[1,1,3,1],[1,2,2,2],[0,3,3,1],[1,0,2,1]],[[1,1,2,2],[1,2,2,2],[0,3,3,1],[1,0,2,1]],[[1,1,2,1],[1,2,2,3],[0,3,3,1],[1,0,2,1]],[[1,1,3,1],[1,2,2,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,2],[1,2,2,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,2,2,3],[0,3,3,1],[1,1,1,1]],[[1,1,3,1],[1,2,2,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,2],[1,2,2,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,1],[1,2,2,3],[0,3,3,1],[1,1,2,0]],[[1,1,3,1],[1,2,2,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,2],[1,2,2,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,1],[1,2,2,3],[0,3,3,1],[1,2,0,1]],[[1,1,3,1],[1,2,2,2],[0,3,3,1],[1,2,1,0]],[[1,1,2,2],[1,2,2,2],[0,3,3,1],[1,2,1,0]],[[1,1,2,1],[1,2,2,3],[0,3,3,1],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[1,3,3,2],[0,0,0,1]],[[1,2,0,0],[3,3,3,2],[1,3,3,2],[0,0,0,1]],[[2,2,0,0],[2,3,3,2],[1,3,3,2],[0,0,0,1]],[[1,1,3,1],[1,2,2,2],[0,3,3,2],[1,1,0,1]],[[1,1,2,2],[1,2,2,2],[0,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,2,2,3],[0,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,2,2,2],[0,3,3,3],[1,1,0,1]],[[1,2,0,0],[2,3,3,2],[1,4,3,1],[1,1,0,0]],[[1,2,0,0],[2,4,3,2],[1,3,3,1],[1,1,0,0]],[[1,2,0,0],[3,3,3,2],[1,3,3,1],[1,1,0,0]],[[2,2,0,0],[2,3,3,2],[1,3,3,1],[1,1,0,0]],[[1,1,3,1],[1,2,2,2],[1,2,1,2],[0,2,2,1]],[[1,1,2,2],[1,2,2,2],[1,2,1,2],[0,2,2,1]],[[1,1,2,1],[1,2,2,3],[1,2,1,2],[0,2,2,1]],[[1,1,2,1],[1,2,2,2],[1,2,1,3],[0,2,2,1]],[[1,1,2,1],[1,2,2,2],[1,2,1,2],[0,3,2,1]],[[1,1,2,1],[1,2,2,2],[1,2,1,2],[0,2,3,1]],[[1,1,2,1],[1,2,2,2],[1,2,1,2],[0,2,2,2]],[[1,1,3,1],[1,2,2,2],[1,2,2,2],[0,2,1,1]],[[1,1,2,2],[1,2,2,2],[1,2,2,2],[0,2,1,1]],[[1,1,2,1],[1,2,2,3],[1,2,2,2],[0,2,1,1]],[[1,1,2,1],[1,2,2,2],[1,2,2,3],[0,2,1,1]],[[1,1,2,1],[1,2,2,2],[1,2,2,2],[0,2,1,2]],[[1,1,3,1],[1,2,2,2],[1,2,2,2],[0,2,2,0]],[[1,1,2,2],[1,2,2,2],[1,2,2,2],[0,2,2,0]],[[1,1,2,1],[1,2,2,3],[1,2,2,2],[0,2,2,0]],[[1,1,2,1],[1,2,2,2],[1,2,2,3],[0,2,2,0]],[[1,2,0,0],[2,3,3,2],[1,4,3,1],[0,2,0,0]],[[1,2,0,0],[2,4,3,2],[1,3,3,1],[0,2,0,0]],[[1,2,0,0],[3,3,3,2],[1,3,3,1],[0,2,0,0]],[[2,2,0,0],[2,3,3,2],[1,3,3,1],[0,2,0,0]],[[1,1,3,1],[1,2,2,2],[1,2,3,0],[0,2,2,1]],[[1,1,2,2],[1,2,2,2],[1,2,3,0],[0,2,2,1]],[[1,1,2,1],[1,2,2,3],[1,2,3,0],[0,2,2,1]],[[1,1,3,1],[1,2,2,2],[1,2,3,1],[0,2,1,1]],[[1,1,2,2],[1,2,2,2],[1,2,3,1],[0,2,1,1]],[[1,1,2,1],[1,2,2,3],[1,2,3,1],[0,2,1,1]],[[1,1,3,1],[1,2,2,2],[1,2,3,1],[0,2,2,0]],[[1,1,2,2],[1,2,2,2],[1,2,3,1],[0,2,2,0]],[[1,1,2,1],[1,2,2,3],[1,2,3,1],[0,2,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,0,0],[3,3,3,2],[1,3,3,1],[0,0,2,0]],[[2,2,0,0],[2,3,3,2],[1,3,3,1],[0,0,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,0,0],[3,3,3,2],[1,3,3,1],[0,0,1,1]],[[2,2,0,0],[2,3,3,2],[1,3,3,1],[0,0,1,1]],[[1,2,0,0],[2,3,3,2],[1,4,3,0],[1,2,0,0]],[[1,2,0,0],[2,4,3,2],[1,3,3,0],[1,2,0,0]],[[1,2,0,0],[3,3,3,2],[1,3,3,0],[1,2,0,0]],[[2,2,0,0],[2,3,3,2],[1,3,3,0],[1,2,0,0]],[[1,1,3,1],[1,2,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,2,2],[1,2,2,2],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,2,2,3],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,2,2,2],[1,4,0,2],[0,2,2,1]],[[1,1,2,1],[1,2,2,2],[1,3,0,3],[0,2,2,1]],[[1,1,2,1],[1,2,2,2],[1,3,0,2],[0,3,2,1]],[[1,1,2,1],[1,2,2,2],[1,3,0,2],[0,2,3,1]],[[1,1,2,1],[1,2,2,2],[1,3,0,2],[0,2,2,2]],[[1,1,3,1],[1,2,2,2],[1,3,1,2],[0,1,2,1]],[[1,1,2,2],[1,2,2,2],[1,3,1,2],[0,1,2,1]],[[1,1,2,1],[1,2,2,3],[1,3,1,2],[0,1,2,1]],[[1,1,2,1],[1,2,2,2],[1,3,1,3],[0,1,2,1]],[[1,1,2,1],[1,2,2,2],[1,3,1,2],[0,1,3,1]],[[1,1,2,1],[1,2,2,2],[1,3,1,2],[0,1,2,2]],[[1,1,3,1],[1,2,2,2],[1,3,1,2],[1,0,2,1]],[[1,1,2,2],[1,2,2,2],[1,3,1,2],[1,0,2,1]],[[1,1,2,1],[1,2,2,3],[1,3,1,2],[1,0,2,1]],[[1,1,2,1],[1,2,2,2],[1,3,1,3],[1,0,2,1]],[[1,1,2,1],[1,2,2,2],[1,3,1,2],[1,0,3,1]],[[1,1,2,1],[1,2,2,2],[1,3,1,2],[1,0,2,2]],[[1,2,0,0],[2,3,3,2],[1,4,3,0],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[1,3,3,0],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[1,3,3,0],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[1,4,3,0],[1,0,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,3,0],[1,0,2,0]],[[1,2,0,0],[3,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,3,1],[1,2,2,2],[1,3,2,2],[0,0,2,1]],[[1,1,2,2],[1,2,2,2],[1,3,2,2],[0,0,2,1]],[[1,1,2,1],[1,2,2,3],[1,3,2,2],[0,0,2,1]],[[1,1,2,1],[1,2,2,2],[1,3,2,3],[0,0,2,1]],[[1,1,2,1],[1,2,2,2],[1,3,2,2],[0,0,2,2]],[[1,1,3,1],[1,2,2,2],[1,3,2,2],[0,1,1,1]],[[1,1,2,2],[1,2,2,2],[1,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,2,2,3],[1,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,2,2,2],[1,3,2,3],[0,1,1,1]],[[1,1,2,1],[1,2,2,2],[1,3,2,2],[0,1,1,2]],[[1,1,3,1],[1,2,2,2],[1,3,2,2],[0,1,2,0]],[[1,1,2,2],[1,2,2,2],[1,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,2,2,3],[1,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,2,2,2],[1,3,2,3],[0,1,2,0]],[[1,1,3,1],[1,2,2,2],[1,3,2,2],[0,2,0,1]],[[1,1,2,2],[1,2,2,2],[1,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,2,2,3],[1,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,2,2,2],[1,3,2,3],[0,2,0,1]],[[1,1,2,1],[1,2,2,2],[1,3,2,2],[0,2,0,2]],[[1,1,3,1],[1,2,2,2],[1,3,2,2],[0,2,1,0]],[[1,1,2,2],[1,2,2,2],[1,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,2,2,3],[1,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,2,2,2],[1,3,2,3],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,3,1],[1,2,2,2],[1,3,2,2],[1,0,1,1]],[[1,1,2,2],[1,2,2,2],[1,3,2,2],[1,0,1,1]],[[1,1,2,1],[1,2,2,3],[1,3,2,2],[1,0,1,1]],[[1,1,2,1],[1,2,2,2],[1,3,2,3],[1,0,1,1]],[[1,1,2,1],[1,2,2,2],[1,3,2,2],[1,0,1,2]],[[1,1,3,1],[1,2,2,2],[1,3,2,2],[1,0,2,0]],[[1,1,2,2],[1,2,2,2],[1,3,2,2],[1,0,2,0]],[[1,1,2,1],[1,2,2,3],[1,3,2,2],[1,0,2,0]],[[1,1,2,1],[1,2,2,2],[1,3,2,3],[1,0,2,0]],[[1,1,3,1],[1,2,2,2],[1,3,2,2],[1,1,0,1]],[[1,1,2,2],[1,2,2,2],[1,3,2,2],[1,1,0,1]],[[1,1,2,1],[1,2,2,3],[1,3,2,2],[1,1,0,1]],[[1,1,2,1],[1,2,2,2],[1,3,2,3],[1,1,0,1]],[[1,1,2,1],[1,2,2,2],[1,3,2,2],[1,1,0,2]],[[1,1,3,1],[1,2,2,2],[1,3,2,2],[1,1,1,0]],[[1,1,2,2],[1,2,2,2],[1,3,2,2],[1,1,1,0]],[[1,1,2,1],[1,2,2,3],[1,3,2,2],[1,1,1,0]],[[1,1,2,1],[1,2,2,2],[1,3,2,3],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[1,3,3,0],[0,3,1,0]],[[1,2,0,0],[2,3,3,2],[1,4,3,0],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[1,3,3,0],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[1,3,3,0],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[1,4,3,0],[0,1,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,0,0],[3,3,3,2],[1,3,3,0],[0,1,2,0]],[[2,2,0,0],[2,3,3,2],[1,3,3,0],[0,1,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,3,0],[0,0,2,1]],[[1,2,0,0],[3,3,3,2],[1,3,3,0],[0,0,2,1]],[[2,2,0,0],[2,3,3,2],[1,3,3,0],[0,0,2,1]],[[1,1,3,1],[1,2,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,2,2],[1,2,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,2,2,3],[1,3,3,0],[0,1,2,1]],[[1,1,3,1],[1,2,2,2],[1,3,3,0],[0,2,1,1]],[[1,1,2,2],[1,2,2,2],[1,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,2,2,3],[1,3,3,0],[0,2,1,1]],[[1,1,3,1],[1,2,2,2],[1,3,3,0],[1,0,2,1]],[[1,1,2,2],[1,2,2,2],[1,3,3,0],[1,0,2,1]],[[1,1,2,1],[1,2,2,3],[1,3,3,0],[1,0,2,1]],[[1,1,3,1],[1,2,2,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,2],[1,2,2,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,1],[1,2,2,3],[1,3,3,0],[1,1,1,1]],[[1,1,3,1],[1,2,2,2],[1,3,3,1],[0,0,2,1]],[[1,1,2,2],[1,2,2,2],[1,3,3,1],[0,0,2,1]],[[1,1,2,1],[1,2,2,3],[1,3,3,1],[0,0,2,1]],[[1,1,3,1],[1,2,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,2,2],[1,2,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,2,2,3],[1,3,3,1],[0,1,1,1]],[[1,1,3,1],[1,2,2,2],[1,3,3,1],[0,1,2,0]],[[1,1,2,2],[1,2,2,2],[1,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,2,2,3],[1,3,3,1],[0,1,2,0]],[[1,1,3,1],[1,2,2,2],[1,3,3,1],[0,2,0,1]],[[1,1,2,2],[1,2,2,2],[1,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,2,2,3],[1,3,3,1],[0,2,0,1]],[[1,1,3,1],[1,2,2,2],[1,3,3,1],[0,2,1,0]],[[1,1,2,2],[1,2,2,2],[1,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,2,2,3],[1,3,3,1],[0,2,1,0]],[[1,1,3,1],[1,2,2,2],[1,3,3,1],[1,0,1,1]],[[1,1,2,2],[1,2,2,2],[1,3,3,1],[1,0,1,1]],[[1,1,2,1],[1,2,2,3],[1,3,3,1],[1,0,1,1]],[[1,1,3,1],[1,2,2,2],[1,3,3,1],[1,0,2,0]],[[1,1,2,2],[1,2,2,2],[1,3,3,1],[1,0,2,0]],[[1,1,2,1],[1,2,2,3],[1,3,3,1],[1,0,2,0]],[[1,1,3,1],[1,2,2,2],[1,3,3,1],[1,1,0,1]],[[1,1,2,2],[1,2,2,2],[1,3,3,1],[1,1,0,1]],[[1,1,2,1],[1,2,2,3],[1,3,3,1],[1,1,0,1]],[[1,1,3,1],[1,2,2,2],[1,3,3,1],[1,1,1,0]],[[1,1,2,2],[1,2,2,2],[1,3,3,1],[1,1,1,0]],[[1,1,2,1],[1,2,2,3],[1,3,3,1],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[1,3,2,2],[0,0,2,0]],[[1,1,3,1],[1,2,2,2],[1,3,3,2],[0,1,0,1]],[[1,1,2,2],[1,2,2,2],[1,3,3,2],[0,1,0,1]],[[1,1,2,1],[1,2,2,3],[1,3,3,2],[0,1,0,1]],[[1,1,2,1],[1,2,2,2],[1,3,3,3],[0,1,0,1]],[[1,2,0,0],[3,3,3,2],[1,3,2,2],[0,0,2,0]],[[2,2,0,0],[2,3,3,2],[1,3,2,2],[0,0,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,0,0],[3,3,3,2],[1,3,2,2],[0,0,1,1]],[[2,2,0,0],[2,3,3,2],[1,3,2,2],[0,0,1,1]],[[1,2,0,0],[2,3,3,2],[1,4,2,1],[1,2,0,0]],[[1,2,0,0],[2,4,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,0,0],[3,3,3,2],[1,3,2,1],[1,2,0,0]],[[2,2,0,0],[2,3,3,2],[1,3,2,1],[1,2,0,0]],[[1,2,0,0],[2,3,3,2],[1,4,2,1],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[1,3,2,1],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[1,3,2,1],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[1,3,2,1],[1,1,1,0]],[[1,1,3,1],[1,2,2,2],[1,3,3,2],[1,0,0,1]],[[1,1,2,2],[1,2,2,2],[1,3,3,2],[1,0,0,1]],[[1,1,2,1],[1,2,2,3],[1,3,3,2],[1,0,0,1]],[[1,1,2,1],[1,2,2,2],[1,3,3,3],[1,0,0,1]],[[1,2,0,0],[2,3,3,2],[1,4,2,1],[1,1,0,1]],[[1,2,0,0],[2,4,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,0,0],[3,3,3,2],[1,3,2,1],[1,1,0,1]],[[2,2,0,0],[2,3,3,2],[1,3,2,1],[1,1,0,1]],[[1,2,0,0],[2,3,3,2],[1,4,2,1],[1,0,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,0,0],[3,3,3,2],[1,3,2,1],[1,0,2,0]],[[2,2,0,0],[2,3,3,2],[1,3,2,1],[1,0,2,0]],[[1,2,0,0],[2,3,3,2],[1,4,2,1],[1,0,1,1]],[[1,2,0,0],[2,4,3,2],[1,3,2,1],[1,0,1,1]],[[1,2,0,0],[3,3,3,2],[1,3,2,1],[1,0,1,1]],[[2,2,0,0],[2,3,3,2],[1,3,2,1],[1,0,1,1]],[[1,2,0,0],[2,3,3,2],[1,3,2,1],[0,3,1,0]],[[1,2,0,0],[2,3,3,2],[1,4,2,1],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[1,3,2,1],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[1,3,2,1],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[1,3,2,1],[0,3,0,1]],[[1,2,0,0],[2,3,3,2],[1,4,2,1],[0,2,0,1]],[[1,2,0,0],[2,4,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,0,0],[3,3,3,2],[1,3,2,1],[0,2,0,1]],[[2,2,0,0],[2,3,3,2],[1,3,2,1],[0,2,0,1]],[[1,2,0,0],[2,3,3,2],[1,4,2,1],[0,1,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,0,0],[3,3,3,2],[1,3,2,1],[0,1,2,0]],[[2,2,0,0],[2,3,3,2],[1,3,2,1],[0,1,2,0]],[[1,2,0,0],[2,3,3,2],[1,4,2,1],[0,1,1,1]],[[1,2,0,0],[2,4,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,0,0],[3,3,3,2],[1,3,2,1],[0,1,1,1]],[[2,2,0,0],[2,3,3,2],[1,3,2,1],[0,1,1,1]],[[1,2,0,0],[2,3,3,2],[1,4,2,0],[1,2,0,1]],[[1,2,0,0],[2,4,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,0,0],[3,3,3,2],[1,3,2,0],[1,2,0,1]],[[2,2,0,0],[2,3,3,2],[1,3,2,0],[1,2,0,1]],[[1,2,0,0],[2,3,3,2],[1,4,2,0],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[1,3,2,0],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[1,3,2,0],[1,1,1,1]],[[1,2,0,0],[2,3,3,2],[1,4,2,0],[1,0,2,1]],[[1,2,0,0],[2,4,3,2],[1,3,2,0],[1,0,2,1]],[[1,2,0,0],[3,3,3,2],[1,3,2,0],[1,0,2,1]],[[2,2,0,0],[2,3,3,2],[1,3,2,0],[1,0,2,1]],[[1,2,0,0],[2,3,3,2],[1,3,2,0],[0,3,1,1]],[[1,2,0,0],[2,3,3,2],[1,4,2,0],[0,2,1,1]],[[1,2,0,0],[2,4,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,0,0],[3,3,3,2],[1,3,2,0],[0,2,1,1]],[[2,2,0,0],[2,3,3,2],[1,3,2,0],[0,2,1,1]],[[1,2,0,0],[2,3,3,2],[1,4,2,0],[0,1,2,1]],[[1,2,0,0],[2,4,3,2],[1,3,2,0],[0,1,2,1]],[[1,2,0,0],[3,3,3,2],[1,3,2,0],[0,1,2,1]],[[2,2,0,0],[2,3,3,2],[1,3,2,0],[0,1,2,1]],[[1,2,0,0],[2,3,3,2],[1,4,1,2],[1,2,0,0]],[[1,2,0,0],[2,4,3,2],[1,3,1,2],[1,2,0,0]],[[1,2,0,0],[3,3,3,2],[1,3,1,2],[1,2,0,0]],[[2,2,0,0],[2,3,3,2],[1,3,1,2],[1,2,0,0]],[[1,2,0,0],[2,3,3,2],[1,4,1,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[1,3,1,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[1,3,1,2],[1,1,1,0]],[[1,2,0,0],[2,3,3,2],[1,4,1,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,2],[1,3,1,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,2],[1,3,1,2],[1,1,0,1]],[[2,2,0,0],[2,3,3,2],[1,3,1,2],[1,1,0,1]],[[1,2,0,0],[2,3,3,2],[1,4,1,2],[1,0,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,0,0],[3,3,3,2],[1,3,1,2],[1,0,2,0]],[[2,2,0,0],[2,3,3,2],[1,3,1,2],[1,0,2,0]],[[1,2,0,0],[2,3,3,2],[1,4,1,2],[1,0,1,1]],[[1,2,0,0],[2,4,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,0,0],[3,3,3,2],[1,3,1,2],[1,0,1,1]],[[2,2,0,0],[2,3,3,2],[1,3,1,2],[1,0,1,1]],[[1,2,0,0],[2,3,3,2],[1,3,1,2],[0,3,1,0]],[[1,2,0,0],[2,3,3,2],[1,4,1,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[1,3,1,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[1,3,1,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,2],[1,3,1,2],[0,3,0,1]],[[1,2,0,0],[2,3,3,2],[1,4,1,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,2],[1,3,1,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,2],[1,3,1,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,2],[1,3,1,2],[0,2,0,1]],[[1,2,0,0],[2,3,3,2],[1,4,1,2],[0,1,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,0,0],[3,3,3,2],[1,3,1,2],[0,1,2,0]],[[2,2,0,0],[2,3,3,2],[1,3,1,2],[0,1,2,0]],[[1,2,0,0],[2,3,3,2],[1,4,1,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,2],[1,3,1,2],[0,1,1,1]],[[1,2,0,0],[3,3,3,2],[1,3,1,2],[0,1,1,1]],[[2,2,0,0],[2,3,3,2],[1,3,1,2],[0,1,1,1]],[[1,2,0,0],[2,3,3,2],[1,4,1,1],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,1,1],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[1,3,1,1],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[1,3,1,1],[1,1,2,0]],[[1,2,0,0],[2,3,3,2],[1,3,1,1],[0,2,3,0]],[[1,2,0,0],[2,3,3,2],[1,3,1,1],[0,3,2,0]],[[1,2,0,0],[2,3,3,2],[1,4,1,1],[0,2,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,0,0],[3,3,3,2],[1,3,1,1],[0,2,2,0]],[[2,2,0,0],[2,3,3,2],[1,3,1,1],[0,2,2,0]],[[1,2,0,0],[2,3,3,2],[1,4,1,0],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[1,3,1,0],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[1,3,1,0],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[1,3,1,0],[1,1,2,1]],[[1,2,0,0],[2,3,3,2],[1,3,1,0],[0,2,2,2]],[[1,2,0,0],[2,3,3,2],[1,3,1,0],[0,2,3,1]],[[1,2,0,0],[2,3,3,2],[1,3,1,0],[0,3,2,1]],[[1,2,0,0],[2,3,3,2],[1,4,1,0],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[1,3,1,0],[0,2,2,1]],[[1,2,0,0],[3,3,3,2],[1,3,1,0],[0,2,2,1]],[[2,2,0,0],[2,3,3,2],[1,3,1,0],[0,2,2,1]],[[1,2,0,0],[2,3,3,2],[1,4,0,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[1,3,0,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[1,3,0,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,2],[1,4,0,2],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[1,3,0,2],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[1,3,0,2],[1,1,1,1]],[[1,2,0,0],[2,3,3,2],[1,4,0,2],[1,0,2,1]],[[1,2,0,0],[2,4,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,0,0],[3,3,3,2],[1,3,0,2],[1,0,2,1]],[[2,2,0,0],[2,3,3,2],[1,3,0,2],[1,0,2,1]],[[1,2,0,0],[2,3,3,2],[1,3,0,2],[0,2,3,0]],[[1,2,0,0],[2,3,3,2],[1,3,0,2],[0,3,2,0]],[[1,2,0,0],[2,3,3,2],[1,4,0,2],[0,2,2,0]],[[1,2,0,0],[2,4,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,0,0],[3,3,3,2],[1,3,0,2],[0,2,2,0]],[[2,2,0,0],[2,3,3,2],[1,3,0,2],[0,2,2,0]],[[1,2,0,0],[2,3,3,2],[1,3,0,2],[0,3,1,1]],[[1,2,0,0],[2,3,3,2],[1,4,0,2],[0,2,1,1]],[[1,2,0,0],[2,4,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,0,0],[3,3,3,2],[1,3,0,2],[0,2,1,1]],[[2,2,0,0],[2,3,3,2],[1,3,0,2],[0,2,1,1]],[[1,2,0,0],[2,3,3,2],[1,4,0,2],[0,1,2,1]],[[1,2,0,0],[2,4,3,2],[1,3,0,2],[0,1,2,1]],[[1,2,0,0],[3,3,3,2],[1,3,0,2],[0,1,2,1]],[[2,2,0,0],[2,3,3,2],[1,3,0,2],[0,1,2,1]],[[1,2,0,0],[2,3,3,2],[1,4,0,1],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[1,3,0,1],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[1,3,0,1],[1,1,2,1]],[[1,2,0,0],[2,3,3,2],[1,3,0,1],[0,2,2,2]],[[1,2,0,0],[2,3,3,2],[1,3,0,1],[0,2,3,1]],[[1,2,0,0],[2,3,3,2],[1,3,0,1],[0,3,2,1]],[[1,2,0,0],[2,3,3,2],[1,4,0,1],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[1,3,0,1],[0,2,2,1]],[[1,2,0,0],[3,3,3,2],[1,3,0,1],[0,2,2,1]],[[2,2,0,0],[2,3,3,2],[1,3,0,1],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,0,0],[3,3,3,2],[1,2,3,2],[1,0,0,1]],[[2,2,0,0],[2,3,3,2],[1,2,3,2],[1,0,0,1]],[[1,2,0,0],[2,4,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,0,0],[3,3,3,2],[1,2,3,2],[0,1,0,1]],[[2,2,0,0],[2,3,3,2],[1,2,3,2],[0,1,0,1]],[[1,2,0,0],[2,4,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[1,2,3,1],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[1,2,3,1],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,0,0],[3,3,3,2],[1,2,3,1],[1,1,0,1]],[[2,2,0,0],[2,3,3,2],[1,2,3,1],[1,1,0,1]],[[1,2,0,0],[2,4,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,0,0],[3,3,3,2],[1,2,3,1],[1,0,2,0]],[[2,2,0,0],[2,3,3,2],[1,2,3,1],[1,0,2,0]],[[1,2,0,0],[2,4,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,0,0],[3,3,3,2],[1,2,3,1],[1,0,1,1]],[[2,2,0,0],[2,3,3,2],[1,2,3,1],[1,0,1,1]],[[1,2,0,0],[2,4,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[1,2,3,1],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[1,2,3,1],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,0,0],[3,3,3,2],[1,2,3,1],[0,2,0,1]],[[2,2,0,0],[2,3,3,2],[1,2,3,1],[0,2,0,1]],[[1,2,0,0],[2,4,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,0,0],[3,3,3,2],[1,2,3,1],[0,1,2,0]],[[2,2,0,0],[2,3,3,2],[1,2,3,1],[0,1,2,0]],[[1,2,0,0],[2,4,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,0,0],[3,3,3,2],[1,2,3,1],[0,1,1,1]],[[2,2,0,0],[2,3,3,2],[1,2,3,1],[0,1,1,1]],[[1,2,0,0],[2,4,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,0,0],[3,3,3,2],[1,2,3,1],[0,0,2,1]],[[2,2,0,0],[2,3,3,2],[1,2,3,1],[0,0,2,1]],[[1,2,0,0],[2,4,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[1,2,3,0],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[1,2,3,0],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,0,0],[3,3,3,2],[1,2,3,0],[1,0,2,1]],[[2,2,0,0],[2,3,3,2],[1,2,3,0],[1,0,2,1]],[[1,2,0,0],[2,4,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,0,0],[3,3,3,2],[1,2,3,0],[0,2,1,1]],[[2,2,0,0],[2,3,3,2],[1,2,3,0],[0,2,1,1]],[[1,2,0,0],[2,4,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,0,0],[3,3,3,2],[1,2,3,0],[0,1,2,1]],[[2,2,0,0],[2,3,3,2],[1,2,3,0],[0,1,2,1]],[[1,2,0,0],[2,4,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,2],[1,2,2,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[1,2,2,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,2],[1,2,2,2],[1,1,0,1]],[[2,2,0,0],[2,3,3,2],[1,2,2,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,0,0],[3,3,3,2],[1,2,2,2],[1,0,2,0]],[[2,2,0,0],[2,3,3,2],[1,2,2,2],[1,0,2,0]],[[1,2,0,0],[2,4,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,0,0],[3,3,3,2],[1,2,2,2],[1,0,1,1]],[[2,2,0,0],[2,3,3,2],[1,2,2,2],[1,0,1,1]],[[1,2,0,0],[2,4,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,2],[1,2,2,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,2],[1,2,2,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,2],[1,2,2,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,2],[1,2,2,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,0,0],[3,3,3,2],[1,2,2,2],[0,1,2,0]],[[2,2,0,0],[2,3,3,2],[1,2,2,2],[0,1,2,0]],[[1,2,0,0],[2,4,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,0,0],[3,3,3,2],[1,2,2,2],[0,1,1,1]],[[2,2,0,0],[2,3,3,2],[1,2,2,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,0,0],[3,3,3,2],[1,2,2,2],[0,0,2,1]],[[2,2,0,0],[2,3,3,2],[1,2,2,2],[0,0,2,1]],[[1,2,0,0],[2,4,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,0,0],[3,3,3,2],[1,2,1,2],[1,0,2,1]],[[2,2,0,0],[2,3,3,2],[1,2,1,2],[1,0,2,1]],[[1,2,0,0],[2,4,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,0,0],[3,3,3,2],[1,2,1,2],[0,1,2,1]],[[2,2,0,0],[2,3,3,2],[1,2,1,2],[0,1,2,1]],[[1,2,0,0],[2,4,3,2],[1,2,0,2],[0,2,2,1]],[[1,2,0,0],[3,3,3,2],[1,2,0,2],[0,2,2,1]],[[2,2,0,0],[2,3,3,2],[1,2,0,2],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,0,0],[3,3,3,2],[1,1,3,1],[0,2,2,0]],[[2,2,0,0],[2,3,3,2],[1,1,3,1],[0,2,2,0]],[[1,2,0,0],[2,4,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,3,2],[1,1,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,3,2],[1,1,3,1],[0,2,1,1]],[[1,2,0,0],[2,4,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,0,0],[3,3,3,2],[1,1,3,0],[0,2,2,1]],[[2,2,0,0],[2,3,3,2],[1,1,3,0],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,0,0],[3,3,3,2],[1,1,2,2],[0,2,2,0]],[[2,2,0,0],[2,3,3,2],[1,1,2,2],[0,2,2,0]],[[1,2,0,0],[2,4,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,0,0],[3,3,3,2],[1,1,2,2],[0,2,1,1]],[[2,2,0,0],[2,3,3,2],[1,1,2,2],[0,2,1,1]],[[1,2,0,0],[2,4,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,0,0],[3,3,3,2],[1,1,1,2],[0,2,2,1]],[[2,2,0,0],[2,3,3,2],[1,1,1,2],[0,2,2,1]],[[1,2,0,0],[2,4,3,2],[1,1,0,2],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[1,1,0,2],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[1,1,0,2],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[1,0,3,1],[1,2,2,0]],[[2,2,0,0],[2,3,3,2],[1,0,3,1],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[1,0,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[1,0,3,1],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[1,0,3,0],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[1,0,3,0],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[1,0,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,2],[1,0,2,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[1,0,2,2],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[1,0,2,2],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[1,0,1,2],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[1,0,1,2],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[1,0,1,2],[1,2,2,1]],[[1,2,0,0],[2,3,3,2],[0,4,3,1],[1,2,0,0]],[[1,2,0,0],[2,4,3,2],[0,3,3,1],[1,2,0,0]],[[1,2,0,0],[3,3,3,2],[0,3,3,1],[1,2,0,0]],[[2,2,0,0],[2,3,3,2],[0,3,3,1],[1,2,0,0]],[[1,2,0,0],[2,3,3,2],[0,3,3,0],[1,3,1,0]],[[1,2,0,0],[2,3,3,2],[0,3,3,0],[2,2,1,0]],[[1,2,0,0],[2,3,3,2],[0,4,3,0],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,0,0],[3,3,3,2],[0,3,3,0],[1,2,1,0]],[[2,2,0,0],[2,3,3,2],[0,3,3,0],[1,2,1,0]],[[1,2,0,0],[2,3,3,2],[0,4,3,0],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[0,3,3,0],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[0,3,3,0],[1,1,2,0]],[[1,2,0,0],[2,3,3,2],[0,3,2,1],[1,3,1,0]],[[1,2,0,0],[2,3,3,2],[0,3,2,1],[2,2,1,0]],[[1,2,0,0],[2,3,3,2],[0,4,2,1],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,0,0],[3,3,3,2],[0,3,2,1],[1,2,1,0]],[[2,2,0,0],[2,3,3,2],[0,3,2,1],[1,2,1,0]],[[1,2,0,0],[2,3,3,2],[0,3,2,1],[1,3,0,1]],[[1,2,0,0],[2,3,3,2],[0,3,2,1],[2,2,0,1]],[[1,2,0,0],[2,3,3,2],[0,4,2,1],[1,2,0,1]],[[1,2,0,0],[2,4,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,0,0],[3,3,3,2],[0,3,2,1],[1,2,0,1]],[[2,2,0,0],[2,3,3,2],[0,3,2,1],[1,2,0,1]],[[1,2,0,0],[2,3,3,2],[0,4,2,1],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[0,3,2,1],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[0,3,2,1],[1,1,2,0]],[[1,2,0,0],[2,3,3,2],[0,4,2,1],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[0,3,2,1],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[0,3,2,1],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[0,3,2,1],[1,1,1,1]],[[1,2,0,0],[2,3,3,2],[0,3,2,0],[1,3,1,1]],[[1,2,0,0],[2,3,3,2],[0,3,2,0],[2,2,1,1]],[[1,2,0,0],[2,3,3,2],[0,4,2,0],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[0,3,2,0],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[0,3,2,0],[1,2,1,1]],[[1,2,0,0],[2,3,3,2],[0,4,2,0],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[0,3,2,0],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[0,3,2,0],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,1],[1,2,3,0],[0,1,3,3],[1,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,1,3,2],[1,2,3,1]],[[1,1,2,1],[1,2,3,0],[0,1,3,2],[1,2,2,2]],[[1,1,2,1],[1,2,3,0],[0,2,2,3],[1,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,2,2,2],[2,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,2,2,2],[1,3,2,1]],[[1,1,2,1],[1,2,3,0],[0,2,2,2],[1,2,3,1]],[[1,1,2,1],[1,2,3,0],[0,2,2,2],[1,2,2,2]],[[1,1,3,1],[1,2,3,0],[0,2,3,1],[1,2,2,1]],[[1,1,2,2],[1,2,3,0],[0,2,3,1],[1,2,2,1]],[[1,1,2,1],[1,2,4,0],[0,2,3,1],[1,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,2,4,1],[1,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,2,3,1],[2,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,2,3,1],[1,3,2,1]],[[1,1,2,1],[1,2,3,0],[0,2,3,1],[1,2,3,1]],[[1,1,2,1],[1,2,3,0],[0,2,3,1],[1,2,2,2]],[[1,1,3,1],[1,2,3,0],[0,2,3,2],[1,2,1,1]],[[1,1,2,2],[1,2,3,0],[0,2,3,2],[1,2,1,1]],[[1,1,2,1],[1,2,4,0],[0,2,3,2],[1,2,1,1]],[[1,1,2,1],[1,2,3,0],[0,2,4,2],[1,2,1,1]],[[1,1,2,1],[1,2,3,0],[0,2,3,3],[1,2,1,1]],[[1,1,2,1],[1,2,3,0],[0,2,3,2],[1,2,1,2]],[[1,1,3,1],[1,2,3,0],[0,2,3,2],[1,2,2,0]],[[1,1,2,2],[1,2,3,0],[0,2,3,2],[1,2,2,0]],[[1,1,2,1],[1,2,4,0],[0,2,3,2],[1,2,2,0]],[[1,1,2,1],[1,2,3,0],[0,2,4,2],[1,2,2,0]],[[1,1,2,1],[1,2,3,0],[0,2,3,3],[1,2,2,0]],[[1,1,2,1],[1,2,3,0],[0,2,3,2],[2,2,2,0]],[[1,1,2,1],[1,2,3,0],[0,2,3,2],[1,3,2,0]],[[1,1,2,1],[1,2,3,0],[0,2,3,2],[1,2,3,0]],[[1,1,2,1],[1,2,3,0],[0,4,1,2],[1,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,1,3],[1,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,1,2],[2,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,1,2],[1,3,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,1,2],[1,2,3,1]],[[1,1,2,1],[1,2,3,0],[0,3,1,2],[1,2,2,2]],[[1,1,2,1],[1,2,3,0],[0,4,2,1],[1,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,2,1],[2,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,2,1],[1,3,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,2,1],[1,2,3,1]],[[1,1,2,1],[1,2,3,0],[0,3,2,1],[1,2,2,2]],[[1,1,2,1],[1,2,3,0],[0,3,2,3],[1,1,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,2,2],[1,1,3,1]],[[1,1,2,1],[1,2,3,0],[0,3,2,2],[1,1,2,2]],[[1,1,2,1],[1,2,3,0],[0,4,2,2],[1,2,2,0]],[[1,1,2,1],[1,2,3,0],[0,3,2,2],[2,2,2,0]],[[1,1,2,1],[1,2,3,0],[0,3,2,2],[1,3,2,0]],[[1,1,2,1],[1,2,3,0],[0,3,2,2],[1,2,3,0]],[[1,1,2,1],[1,2,3,0],[0,4,3,0],[1,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,0],[2,2,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,0],[1,3,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,0],[1,2,3,1]],[[1,1,3,1],[1,2,3,0],[0,3,3,1],[1,1,2,1]],[[1,1,2,2],[1,2,3,0],[0,3,3,1],[1,1,2,1]],[[1,1,2,1],[1,2,4,0],[0,3,3,1],[1,1,2,1]],[[1,1,2,1],[1,2,3,0],[0,4,3,1],[1,1,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,4,1],[1,1,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,1],[1,1,3,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,1],[1,1,2,2]],[[1,1,3,1],[1,2,3,0],[0,3,3,1],[1,2,1,1]],[[1,1,2,2],[1,2,3,0],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[1,2,4,0],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[1,2,3,0],[0,4,3,1],[1,2,1,1]],[[1,1,2,1],[1,2,3,0],[0,3,4,1],[1,2,1,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,1],[2,2,1,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,1],[1,3,1,1]],[[1,1,3,1],[1,2,3,0],[0,3,3,2],[1,0,2,1]],[[1,1,2,2],[1,2,3,0],[0,3,3,2],[1,0,2,1]],[[1,1,2,1],[1,2,4,0],[0,3,3,2],[1,0,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,4,2],[1,0,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,3],[1,0,2,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,2],[1,0,2,2]],[[1,1,3,1],[1,2,3,0],[0,3,3,2],[1,1,1,1]],[[1,1,2,2],[1,2,3,0],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,2,4,0],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,2,3,0],[0,4,3,2],[1,1,1,1]],[[1,1,2,1],[1,2,3,0],[0,3,4,2],[1,1,1,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,3],[1,1,1,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,2],[1,1,1,2]],[[1,1,3,1],[1,2,3,0],[0,3,3,2],[1,1,2,0]],[[1,1,2,2],[1,2,3,0],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,2,4,0],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,2,3,0],[0,4,3,2],[1,1,2,0]],[[1,1,2,1],[1,2,3,0],[0,3,4,2],[1,1,2,0]],[[1,1,2,1],[1,2,3,0],[0,3,3,3],[1,1,2,0]],[[1,1,2,1],[1,2,3,0],[0,3,3,2],[1,1,3,0]],[[1,1,3,1],[1,2,3,0],[0,3,3,2],[1,2,0,1]],[[1,1,2,2],[1,2,3,0],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,2,4,0],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,2,3,0],[0,4,3,2],[1,2,0,1]],[[1,1,2,1],[1,2,3,0],[0,3,4,2],[1,2,0,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,3],[1,2,0,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,2],[2,2,0,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,2],[1,3,0,1]],[[1,1,2,1],[1,2,3,0],[0,3,3,2],[1,2,0,2]],[[1,1,3,1],[1,2,3,0],[0,3,3,2],[1,2,1,0]],[[1,1,2,2],[1,2,3,0],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,2,4,0],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,2,3,0],[0,4,3,2],[1,2,1,0]],[[1,1,2,1],[1,2,3,0],[0,3,4,2],[1,2,1,0]],[[1,1,2,1],[1,2,3,0],[0,3,3,3],[1,2,1,0]],[[1,1,2,1],[1,2,3,0],[0,3,3,2],[2,2,1,0]],[[1,1,2,1],[1,2,3,0],[0,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,3,2],[0,3,1,2],[1,3,1,0]],[[1,2,0,0],[2,3,3,2],[0,3,1,2],[2,2,1,0]],[[1,2,0,0],[2,3,3,2],[0,4,1,2],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,0,0],[3,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,1,2,1],[1,2,3,0],[1,1,3,3],[0,2,2,1]],[[1,1,2,1],[1,2,3,0],[1,1,3,2],[0,2,3,1]],[[1,1,2,1],[1,2,3,0],[1,1,3,2],[0,2,2,2]],[[1,1,2,1],[1,2,3,0],[1,2,2,3],[0,2,2,1]],[[1,1,2,1],[1,2,3,0],[1,2,2,2],[0,3,2,1]],[[1,1,2,1],[1,2,3,0],[1,2,2,2],[0,2,3,1]],[[1,1,2,1],[1,2,3,0],[1,2,2,2],[0,2,2,2]],[[1,1,3,1],[1,2,3,0],[1,2,3,1],[0,2,2,1]],[[1,1,2,2],[1,2,3,0],[1,2,3,1],[0,2,2,1]],[[1,1,2,1],[1,2,4,0],[1,2,3,1],[0,2,2,1]],[[1,1,2,1],[1,2,3,0],[1,2,4,1],[0,2,2,1]],[[1,1,2,1],[1,2,3,0],[1,2,3,1],[0,3,2,1]],[[1,1,2,1],[1,2,3,0],[1,2,3,1],[0,2,3,1]],[[1,1,2,1],[1,2,3,0],[1,2,3,1],[0,2,2,2]],[[1,1,3,1],[1,2,3,0],[1,2,3,2],[0,2,1,1]],[[1,1,2,2],[1,2,3,0],[1,2,3,2],[0,2,1,1]],[[1,1,2,1],[1,2,4,0],[1,2,3,2],[0,2,1,1]],[[1,1,2,1],[1,2,3,0],[1,2,4,2],[0,2,1,1]],[[1,1,2,1],[1,2,3,0],[1,2,3,3],[0,2,1,1]],[[1,1,2,1],[1,2,3,0],[1,2,3,2],[0,2,1,2]],[[1,1,3,1],[1,2,3,0],[1,2,3,2],[0,2,2,0]],[[1,1,2,2],[1,2,3,0],[1,2,3,2],[0,2,2,0]],[[1,1,2,1],[1,2,4,0],[1,2,3,2],[0,2,2,0]],[[1,1,2,1],[1,2,3,0],[1,2,4,2],[0,2,2,0]],[[1,1,2,1],[1,2,3,0],[1,2,3,3],[0,2,2,0]],[[1,1,2,1],[1,2,3,0],[1,2,3,2],[0,3,2,0]],[[1,1,2,1],[1,2,3,0],[1,2,3,2],[0,2,3,0]],[[2,2,0,0],[2,3,3,2],[0,3,1,2],[1,2,1,0]],[[1,2,0,0],[2,3,3,2],[0,3,1,2],[1,3,0,1]],[[1,2,0,0],[2,3,3,2],[0,3,1,2],[2,2,0,1]],[[1,2,0,0],[2,3,3,2],[0,4,1,2],[1,2,0,1]],[[1,2,0,0],[2,4,3,2],[0,3,1,2],[1,2,0,1]],[[1,2,0,0],[3,3,3,2],[0,3,1,2],[1,2,0,1]],[[2,2,0,0],[2,3,3,2],[0,3,1,2],[1,2,0,1]],[[1,1,2,1],[1,2,3,0],[1,4,1,2],[0,2,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,1,3],[0,2,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,1,2],[0,3,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,1,2],[0,2,3,1]],[[1,1,2,1],[1,2,3,0],[1,3,1,2],[0,2,2,2]],[[1,1,2,1],[1,2,3,0],[1,4,2,1],[0,2,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,2,1],[0,3,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,2,1],[0,2,3,1]],[[1,1,2,1],[1,2,3,0],[1,3,2,1],[0,2,2,2]],[[1,1,2,1],[1,2,3,0],[1,3,2,3],[0,1,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,2,2],[0,1,3,1]],[[1,1,2,1],[1,2,3,0],[1,3,2,2],[0,1,2,2]],[[1,1,2,1],[1,2,3,0],[1,4,2,2],[0,2,2,0]],[[1,1,2,1],[1,2,3,0],[1,3,2,2],[0,3,2,0]],[[1,1,2,1],[1,2,3,0],[1,3,2,2],[0,2,3,0]],[[1,1,2,1],[1,2,3,0],[1,3,2,3],[1,0,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,2,2],[1,0,3,1]],[[1,1,2,1],[1,2,3,0],[1,3,2,2],[1,0,2,2]],[[1,2,0,0],[2,3,3,2],[0,4,1,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[0,3,1,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[0,3,1,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[0,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,2,3,0],[1,4,3,0],[0,2,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,0],[0,3,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,0],[0,2,3,1]],[[1,1,3,1],[1,2,3,0],[1,3,3,1],[0,1,2,1]],[[1,1,2,2],[1,2,3,0],[1,3,3,1],[0,1,2,1]],[[1,1,2,1],[1,2,4,0],[1,3,3,1],[0,1,2,1]],[[1,1,2,1],[1,2,3,0],[1,4,3,1],[0,1,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,4,1],[0,1,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,1],[0,1,3,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,1],[0,1,2,2]],[[1,1,3,1],[1,2,3,0],[1,3,3,1],[0,2,1,1]],[[1,1,2,2],[1,2,3,0],[1,3,3,1],[0,2,1,1]],[[1,1,2,1],[1,2,4,0],[1,3,3,1],[0,2,1,1]],[[1,1,2,1],[1,2,3,0],[1,4,3,1],[0,2,1,1]],[[1,1,2,1],[1,2,3,0],[1,3,4,1],[0,2,1,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,1],[0,3,1,1]],[[1,1,3,1],[1,2,3,0],[1,3,3,1],[1,0,2,1]],[[1,1,2,2],[1,2,3,0],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[1,2,4,0],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[1,2,3,0],[1,4,3,1],[1,0,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,4,1],[1,0,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,1],[1,0,3,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,1],[1,0,2,2]],[[1,1,3,1],[1,2,3,0],[1,3,3,1],[1,1,1,1]],[[1,1,2,2],[1,2,3,0],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,2,4,0],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,2,3,0],[1,4,3,1],[1,1,1,1]],[[1,1,2,1],[1,2,3,0],[1,3,4,1],[1,1,1,1]],[[1,2,0,0],[2,3,3,2],[0,4,1,2],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[0,3,1,2],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[0,3,1,2],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[0,3,1,2],[1,1,1,1]],[[1,1,3,1],[1,2,3,0],[1,3,3,2],[0,0,2,1]],[[1,1,2,2],[1,2,3,0],[1,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,2,4,0],[1,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,4,2],[0,0,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,3],[0,0,2,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,2],[0,0,2,2]],[[1,1,3,1],[1,2,3,0],[1,3,3,2],[0,1,1,1]],[[1,1,2,2],[1,2,3,0],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,2,4,0],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,2,3,0],[1,4,3,2],[0,1,1,1]],[[1,1,2,1],[1,2,3,0],[1,3,4,2],[0,1,1,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,3],[0,1,1,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,2],[0,1,1,2]],[[1,1,3,1],[1,2,3,0],[1,3,3,2],[0,1,2,0]],[[1,1,2,2],[1,2,3,0],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,2,4,0],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,2,3,0],[1,4,3,2],[0,1,2,0]],[[1,1,2,1],[1,2,3,0],[1,3,4,2],[0,1,2,0]],[[1,1,2,1],[1,2,3,0],[1,3,3,3],[0,1,2,0]],[[1,1,2,1],[1,2,3,0],[1,3,3,2],[0,1,3,0]],[[1,1,3,1],[1,2,3,0],[1,3,3,2],[0,2,0,1]],[[1,1,2,2],[1,2,3,0],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,2,4,0],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,2,3,0],[1,4,3,2],[0,2,0,1]],[[1,1,2,1],[1,2,3,0],[1,3,4,2],[0,2,0,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,3],[0,2,0,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,2],[0,3,0,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,2],[0,2,0,2]],[[1,1,3,1],[1,2,3,0],[1,3,3,2],[0,2,1,0]],[[1,1,2,2],[1,2,3,0],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,2,4,0],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,2,3,0],[1,4,3,2],[0,2,1,0]],[[1,1,2,1],[1,2,3,0],[1,3,4,2],[0,2,1,0]],[[1,1,2,1],[1,2,3,0],[1,3,3,3],[0,2,1,0]],[[1,1,2,1],[1,2,3,0],[1,3,3,2],[0,3,1,0]],[[1,2,0,0],[2,3,3,2],[0,3,1,1],[1,2,3,0]],[[1,2,0,0],[2,3,3,2],[0,3,1,1],[1,3,2,0]],[[1,2,0,0],[2,3,3,2],[0,3,1,1],[2,2,2,0]],[[1,2,0,0],[2,3,3,2],[0,4,1,1],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,1,3,1],[1,2,3,0],[1,3,3,2],[1,0,1,1]],[[1,1,2,2],[1,2,3,0],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,2,4,0],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,2,3,0],[1,4,3,2],[1,0,1,1]],[[1,1,2,1],[1,2,3,0],[1,3,4,2],[1,0,1,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,3],[1,0,1,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,2],[1,0,1,2]],[[1,1,3,1],[1,2,3,0],[1,3,3,2],[1,0,2,0]],[[1,1,2,2],[1,2,3,0],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,2,4,0],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,2,3,0],[1,4,3,2],[1,0,2,0]],[[1,1,2,1],[1,2,3,0],[1,3,4,2],[1,0,2,0]],[[1,1,2,1],[1,2,3,0],[1,3,3,3],[1,0,2,0]],[[1,1,2,1],[1,2,3,0],[1,3,3,2],[1,0,3,0]],[[1,1,3,1],[1,2,3,0],[1,3,3,2],[1,1,0,1]],[[1,1,2,2],[1,2,3,0],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,2,4,0],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,2,3,0],[1,4,3,2],[1,1,0,1]],[[1,1,2,1],[1,2,3,0],[1,3,4,2],[1,1,0,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,3],[1,1,0,1]],[[1,1,2,1],[1,2,3,0],[1,3,3,2],[1,1,0,2]],[[1,1,3,1],[1,2,3,0],[1,3,3,2],[1,1,1,0]],[[1,1,2,2],[1,2,3,0],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,2,4,0],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,2,3,0],[1,4,3,2],[1,1,1,0]],[[1,1,2,1],[1,2,3,0],[1,3,4,2],[1,1,1,0]],[[1,1,2,1],[1,2,3,0],[1,3,3,3],[1,1,1,0]],[[2,2,0,0],[2,3,3,2],[0,3,1,1],[1,2,2,0]],[[1,2,0,0],[2,3,3,2],[0,3,1,0],[1,2,2,2]],[[1,2,0,0],[2,3,3,2],[0,3,1,0],[1,2,3,1]],[[1,2,0,0],[2,3,3,2],[0,3,1,0],[1,3,2,1]],[[1,2,0,0],[2,3,3,2],[0,3,1,0],[2,2,2,1]],[[1,2,0,0],[2,3,3,2],[0,4,1,0],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[0,3,1,0],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[0,3,1,0],[1,2,2,1]],[[1,2,0,0],[2,3,3,2],[0,3,0,2],[1,2,3,0]],[[1,2,0,0],[2,3,3,2],[0,3,0,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,2],[0,3,0,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,2],[0,4,0,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[0,3,0,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,2],[0,3,0,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,2],[0,3,0,2],[1,3,1,1]],[[1,2,0,0],[2,3,3,2],[0,3,0,2],[2,2,1,1]],[[1,2,0,0],[2,3,3,2],[0,4,0,2],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[0,3,0,2],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[0,3,0,2],[1,2,1,1]],[[1,2,0,0],[2,3,3,2],[0,4,0,2],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[0,3,0,2],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[0,3,0,2],[1,1,2,1]],[[1,2,0,0],[2,3,3,2],[0,3,0,1],[1,2,2,2]],[[1,2,0,0],[2,3,3,2],[0,3,0,1],[1,2,3,1]],[[1,2,0,0],[2,3,3,2],[0,3,0,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,2],[0,3,0,1],[2,2,2,1]],[[1,2,0,0],[2,3,3,2],[0,4,0,1],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[0,3,0,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[0,3,0,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[0,3,0,1],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,0,0],[3,3,3,2],[0,2,3,1],[1,2,1,0]],[[2,2,0,0],[2,3,3,2],[0,2,3,1],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,0,0],[3,3,3,2],[0,2,3,1],[1,2,0,1]],[[2,2,0,0],[2,3,3,2],[0,2,3,1],[1,2,0,1]],[[1,2,0,0],[2,4,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[0,2,3,1],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[0,2,3,1],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[0,2,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[0,2,3,1],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[0,2,3,0],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[0,2,3,0],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[0,2,3,0],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[0,2,3,0],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,0,0],[3,3,3,2],[0,2,2,2],[1,2,1,0]],[[2,2,0,0],[2,3,3,2],[0,2,2,2],[1,2,1,0]],[[1,2,0,0],[2,4,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,0,0],[3,3,3,2],[0,2,2,2],[1,2,0,1]],[[2,2,0,0],[2,3,3,2],[0,2,2,2],[1,2,0,1]],[[1,2,0,0],[2,4,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,2],[0,2,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,2],[0,2,2,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,0,0],[3,3,3,2],[0,2,2,2],[1,1,1,1]],[[2,2,0,0],[2,3,3,2],[0,2,2,2],[1,1,1,1]],[[1,2,0,0],[2,4,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,0,0],[3,3,3,2],[0,2,1,2],[1,1,2,1]],[[2,2,0,0],[2,3,3,2],[0,2,1,2],[1,1,2,1]],[[1,2,0,0],[2,4,3,2],[0,2,0,2],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[0,2,0,2],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[0,2,0,2],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[0,1,3,1],[1,2,2,0]],[[2,2,0,0],[2,3,3,2],[0,1,3,1],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[0,1,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[0,1,3,1],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[0,1,3,0],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[0,1,3,0],[1,2,2,1]],[[1,2,0,0],[2,4,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,2],[0,1,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,2],[0,1,2,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,0,0],[3,3,3,2],[0,1,2,2],[1,2,1,1]],[[2,2,0,0],[2,3,3,2],[0,1,2,2],[1,2,1,1]],[[1,2,0,0],[2,4,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,0,0],[3,3,3,2],[0,1,1,2],[1,2,2,1]],[[2,2,0,0],[2,3,3,2],[0,1,1,2],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[3,3,3,2],[1,0,0,0]],[[1,2,0,0],[2,4,3,1],[2,3,3,2],[1,0,0,0]],[[1,2,0,0],[3,3,3,1],[2,3,3,2],[1,0,0,0]],[[2,2,0,0],[2,3,3,1],[2,3,3,2],[1,0,0,0]],[[1,2,0,0],[2,3,3,1],[3,3,2,2],[1,0,1,0]],[[1,2,0,0],[2,4,3,1],[2,3,2,2],[1,0,1,0]],[[1,2,0,0],[3,3,3,1],[2,3,2,2],[1,0,1,0]],[[2,2,0,0],[2,3,3,1],[2,3,2,2],[1,0,1,0]],[[1,2,0,0],[2,3,3,1],[3,3,2,2],[1,0,0,1]],[[1,2,0,0],[2,4,3,1],[2,3,2,2],[1,0,0,1]],[[1,2,0,0],[3,3,3,1],[2,3,2,2],[1,0,0,1]],[[2,2,0,0],[2,3,3,1],[2,3,2,2],[1,0,0,1]],[[1,2,0,0],[2,3,3,1],[3,3,2,1],[1,0,1,1]],[[1,2,0,0],[2,4,3,1],[2,3,2,1],[1,0,1,1]],[[1,2,0,0],[3,3,3,1],[2,3,2,1],[1,0,1,1]],[[2,2,0,0],[2,3,3,1],[2,3,2,1],[1,0,1,1]],[[1,2,0,0],[2,3,3,1],[2,3,1,2],[2,2,0,0]],[[1,2,0,0],[2,3,3,1],[3,3,1,2],[1,2,0,0]],[[1,2,0,0],[2,4,3,1],[2,3,1,2],[1,2,0,0]],[[1,2,0,0],[3,3,3,1],[2,3,1,2],[1,2,0,0]],[[2,2,0,0],[2,3,3,1],[2,3,1,2],[1,2,0,0]],[[1,1,3,1],[1,2,3,1],[0,2,1,2],[1,2,2,1]],[[1,1,2,2],[1,2,3,1],[0,2,1,2],[1,2,2,1]],[[1,1,2,1],[1,2,4,1],[0,2,1,2],[1,2,2,1]],[[1,1,3,1],[1,2,3,1],[0,2,2,2],[1,2,1,1]],[[1,1,2,2],[1,2,3,1],[0,2,2,2],[1,2,1,1]],[[1,1,2,1],[1,2,4,1],[0,2,2,2],[1,2,1,1]],[[1,1,3,1],[1,2,3,1],[0,2,2,2],[1,2,2,0]],[[1,1,2,2],[1,2,3,1],[0,2,2,2],[1,2,2,0]],[[1,1,2,1],[1,2,4,1],[0,2,2,2],[1,2,2,0]],[[1,1,3,1],[1,2,3,1],[0,2,3,0],[1,2,2,1]],[[1,1,2,2],[1,2,3,1],[0,2,3,0],[1,2,2,1]],[[1,1,2,1],[1,2,4,1],[0,2,3,0],[1,2,2,1]],[[1,1,2,1],[1,2,3,1],[0,2,4,0],[1,2,2,1]],[[1,1,2,1],[1,2,3,1],[0,2,3,0],[2,2,2,1]],[[1,1,2,1],[1,2,3,1],[0,2,3,0],[1,3,2,1]],[[1,1,2,1],[1,2,3,1],[0,2,3,0],[1,2,3,1]],[[1,1,2,1],[1,2,3,1],[0,2,3,0],[1,2,2,2]],[[1,1,3,1],[1,2,3,1],[0,2,3,1],[1,2,1,1]],[[1,1,2,2],[1,2,3,1],[0,2,3,1],[1,2,1,1]],[[1,1,2,1],[1,2,4,1],[0,2,3,1],[1,2,1,1]],[[1,1,2,1],[1,2,3,1],[0,2,4,1],[1,2,1,1]],[[1,1,3,1],[1,2,3,1],[0,2,3,1],[1,2,2,0]],[[1,1,2,2],[1,2,3,1],[0,2,3,1],[1,2,2,0]],[[1,1,2,1],[1,2,4,1],[0,2,3,1],[1,2,2,0]],[[1,1,2,1],[1,2,3,1],[0,2,4,1],[1,2,2,0]],[[1,1,2,1],[1,2,3,1],[0,2,3,1],[2,2,2,0]],[[1,1,2,1],[1,2,3,1],[0,2,3,1],[1,3,2,0]],[[1,1,2,1],[1,2,3,1],[0,2,3,1],[1,2,3,0]],[[1,1,3,1],[1,2,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,2,2],[1,2,3,1],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,2,4,1],[0,3,0,2],[1,2,2,1]],[[1,1,3,1],[1,2,3,1],[0,3,1,2],[1,1,2,1]],[[1,1,2,2],[1,2,3,1],[0,3,1,2],[1,1,2,1]],[[1,1,2,1],[1,2,4,1],[0,3,1,2],[1,1,2,1]],[[1,1,2,1],[1,2,3,1],[0,4,2,0],[1,2,2,1]],[[1,1,2,1],[1,2,3,1],[0,3,2,0],[2,2,2,1]],[[1,1,2,1],[1,2,3,1],[0,3,2,0],[1,3,2,1]],[[1,1,2,1],[1,2,3,1],[0,3,2,0],[1,2,3,1]],[[1,1,2,1],[1,2,3,1],[0,3,2,0],[1,2,2,2]],[[1,1,2,1],[1,2,3,1],[0,4,2,1],[1,2,2,0]],[[1,1,2,1],[1,2,3,1],[0,3,2,1],[2,2,2,0]],[[1,1,2,1],[1,2,3,1],[0,3,2,1],[1,3,2,0]],[[1,1,2,1],[1,2,3,1],[0,3,2,1],[1,2,3,0]],[[1,1,3,1],[1,2,3,1],[0,3,2,2],[1,0,2,1]],[[1,1,2,2],[1,2,3,1],[0,3,2,2],[1,0,2,1]],[[1,1,2,1],[1,2,4,1],[0,3,2,2],[1,0,2,1]],[[1,1,3,1],[1,2,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,2,2],[1,2,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,2,1],[1,2,4,1],[0,3,2,2],[1,1,1,1]],[[1,1,3,1],[1,2,3,1],[0,3,2,2],[1,1,2,0]],[[1,1,2,2],[1,2,3,1],[0,3,2,2],[1,1,2,0]],[[1,1,2,1],[1,2,4,1],[0,3,2,2],[1,1,2,0]],[[1,1,3,1],[1,2,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,2,2],[1,2,3,1],[0,3,2,2],[1,2,0,1]],[[1,1,2,1],[1,2,4,1],[0,3,2,2],[1,2,0,1]],[[1,1,3,1],[1,2,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,2,2],[1,2,3,1],[0,3,2,2],[1,2,1,0]],[[1,1,2,1],[1,2,4,1],[0,3,2,2],[1,2,1,0]],[[1,2,0,0],[2,3,3,1],[2,3,1,2],[2,1,1,0]],[[1,2,0,0],[2,3,3,1],[3,3,1,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,1],[2,3,1,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,1],[2,3,1,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,1],[2,3,1,2],[1,1,1,0]],[[1,2,0,0],[2,3,3,1],[2,3,1,2],[2,1,0,1]],[[1,2,0,0],[2,3,3,1],[3,3,1,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,1],[2,3,1,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,3,1],[1,2,3,1],[0,3,3,0],[1,1,2,1]],[[1,1,2,2],[1,2,3,1],[0,3,3,0],[1,1,2,1]],[[1,1,2,1],[1,2,4,1],[0,3,3,0],[1,1,2,1]],[[1,1,2,1],[1,2,3,1],[0,4,3,0],[1,1,2,1]],[[1,1,2,1],[1,2,3,1],[0,3,4,0],[1,1,2,1]],[[1,1,2,1],[1,2,3,1],[0,3,3,0],[1,1,3,1]],[[1,1,2,1],[1,2,3,1],[0,3,3,0],[1,1,2,2]],[[1,1,3,1],[1,2,3,1],[0,3,3,0],[1,2,1,1]],[[1,1,2,2],[1,2,3,1],[0,3,3,0],[1,2,1,1]],[[1,1,2,1],[1,2,4,1],[0,3,3,0],[1,2,1,1]],[[1,1,2,1],[1,2,3,1],[0,4,3,0],[1,2,1,1]],[[1,1,2,1],[1,2,3,1],[0,3,4,0],[1,2,1,1]],[[1,1,2,1],[1,2,3,1],[0,3,3,0],[2,2,1,1]],[[1,1,2,1],[1,2,3,1],[0,3,3,0],[1,3,1,1]],[[1,1,3,1],[1,2,3,1],[0,3,3,1],[1,0,2,1]],[[1,1,2,2],[1,2,3,1],[0,3,3,1],[1,0,2,1]],[[1,1,2,1],[1,2,4,1],[0,3,3,1],[1,0,2,1]],[[1,1,2,1],[1,2,3,1],[0,3,4,1],[1,0,2,1]],[[1,1,3,1],[1,2,3,1],[0,3,3,1],[1,1,1,1]],[[1,1,2,2],[1,2,3,1],[0,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,2,4,1],[0,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,2,3,1],[0,4,3,1],[1,1,1,1]],[[1,1,2,1],[1,2,3,1],[0,3,4,1],[1,1,1,1]],[[1,1,3,1],[1,2,3,1],[0,3,3,1],[1,1,2,0]],[[1,1,2,2],[1,2,3,1],[0,3,3,1],[1,1,2,0]],[[1,1,2,1],[1,2,4,1],[0,3,3,1],[1,1,2,0]],[[1,1,2,1],[1,2,3,1],[0,4,3,1],[1,1,2,0]],[[1,1,2,1],[1,2,3,1],[0,3,4,1],[1,1,2,0]],[[1,1,2,1],[1,2,3,1],[0,3,3,1],[1,1,3,0]],[[1,1,3,1],[1,2,3,1],[0,3,3,1],[1,2,0,1]],[[1,1,2,2],[1,2,3,1],[0,3,3,1],[1,2,0,1]],[[1,1,2,1],[1,2,4,1],[0,3,3,1],[1,2,0,1]],[[1,1,2,1],[1,2,3,1],[0,4,3,1],[1,2,0,1]],[[1,1,2,1],[1,2,3,1],[0,3,4,1],[1,2,0,1]],[[1,1,2,1],[1,2,3,1],[0,3,3,1],[2,2,0,1]],[[1,1,2,1],[1,2,3,1],[0,3,3,1],[1,3,0,1]],[[1,1,3,1],[1,2,3,1],[0,3,3,1],[1,2,1,0]],[[1,1,2,2],[1,2,3,1],[0,3,3,1],[1,2,1,0]],[[1,1,2,1],[1,2,4,1],[0,3,3,1],[1,2,1,0]],[[1,1,2,1],[1,2,3,1],[0,4,3,1],[1,2,1,0]],[[1,1,2,1],[1,2,3,1],[0,3,4,1],[1,2,1,0]],[[1,1,2,1],[1,2,3,1],[0,3,3,1],[2,2,1,0]],[[1,1,2,1],[1,2,3,1],[0,3,3,1],[1,3,1,0]],[[2,2,0,0],[2,3,3,1],[2,3,1,2],[1,1,0,1]],[[1,1,3,1],[1,2,3,1],[0,3,3,2],[1,1,0,1]],[[1,1,2,2],[1,2,3,1],[0,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,2,4,1],[0,3,3,2],[1,1,0,1]],[[1,2,0,0],[2,3,3,1],[3,3,1,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,1],[2,3,1,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,1],[2,3,1,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,1],[2,3,1,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,1],[3,3,1,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,1],[2,3,1,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,1],[2,3,1,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,1],[2,3,1,2],[0,2,0,1]],[[1,2,0,0],[2,3,3,1],[2,3,1,1],[2,2,0,1]],[[1,2,0,0],[2,3,3,1],[3,3,1,1],[1,2,0,1]],[[1,2,0,0],[2,4,3,1],[2,3,1,1],[1,2,0,1]],[[1,2,0,0],[3,3,3,1],[2,3,1,1],[1,2,0,1]],[[2,2,0,0],[2,3,3,1],[2,3,1,1],[1,2,0,1]],[[1,2,0,0],[2,3,3,1],[2,3,1,1],[2,1,1,1]],[[1,2,0,0],[2,3,3,1],[3,3,1,1],[1,1,1,1]],[[1,2,0,0],[2,4,3,1],[2,3,1,1],[1,1,1,1]],[[1,2,0,0],[3,3,3,1],[2,3,1,1],[1,1,1,1]],[[2,2,0,0],[2,3,3,1],[2,3,1,1],[1,1,1,1]],[[1,1,3,1],[1,2,3,1],[1,2,1,2],[0,2,2,1]],[[1,1,2,2],[1,2,3,1],[1,2,1,2],[0,2,2,1]],[[1,1,2,1],[1,2,4,1],[1,2,1,2],[0,2,2,1]],[[1,1,3,1],[1,2,3,1],[1,2,2,2],[0,2,1,1]],[[1,1,2,2],[1,2,3,1],[1,2,2,2],[0,2,1,1]],[[1,1,2,1],[1,2,4,1],[1,2,2,2],[0,2,1,1]],[[1,1,3,1],[1,2,3,1],[1,2,2,2],[0,2,2,0]],[[1,1,2,2],[1,2,3,1],[1,2,2,2],[0,2,2,0]],[[1,1,2,1],[1,2,4,1],[1,2,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,3,1],[3,3,1,1],[0,2,1,1]],[[1,2,0,0],[2,4,3,1],[2,3,1,1],[0,2,1,1]],[[1,2,0,0],[3,3,3,1],[2,3,1,1],[0,2,1,1]],[[2,2,0,0],[2,3,3,1],[2,3,1,1],[0,2,1,1]],[[1,1,3,1],[1,2,3,1],[1,2,3,0],[0,2,2,1]],[[1,1,2,2],[1,2,3,1],[1,2,3,0],[0,2,2,1]],[[1,1,2,1],[1,2,4,1],[1,2,3,0],[0,2,2,1]],[[1,1,2,1],[1,2,3,1],[1,2,4,0],[0,2,2,1]],[[1,1,2,1],[1,2,3,1],[1,2,3,0],[0,3,2,1]],[[1,1,2,1],[1,2,3,1],[1,2,3,0],[0,2,3,1]],[[1,1,2,1],[1,2,3,1],[1,2,3,0],[0,2,2,2]],[[1,1,3,1],[1,2,3,1],[1,2,3,1],[0,2,1,1]],[[1,1,2,2],[1,2,3,1],[1,2,3,1],[0,2,1,1]],[[1,1,2,1],[1,2,4,1],[1,2,3,1],[0,2,1,1]],[[1,1,2,1],[1,2,3,1],[1,2,4,1],[0,2,1,1]],[[1,1,3,1],[1,2,3,1],[1,2,3,1],[0,2,2,0]],[[1,1,2,2],[1,2,3,1],[1,2,3,1],[0,2,2,0]],[[1,1,2,1],[1,2,4,1],[1,2,3,1],[0,2,2,0]],[[1,1,2,1],[1,2,3,1],[1,2,4,1],[0,2,2,0]],[[1,1,2,1],[1,2,3,1],[1,2,3,1],[0,3,2,0]],[[1,1,2,1],[1,2,3,1],[1,2,3,1],[0,2,3,0]],[[1,2,0,0],[2,3,3,1],[2,3,0,2],[2,2,1,0]],[[1,2,0,0],[2,3,3,1],[3,3,0,2],[1,2,1,0]],[[1,2,0,0],[2,4,3,1],[2,3,0,2],[1,2,1,0]],[[1,2,0,0],[3,3,3,1],[2,3,0,2],[1,2,1,0]],[[2,2,0,0],[2,3,3,1],[2,3,0,2],[1,2,1,0]],[[1,2,0,0],[2,3,3,1],[2,3,0,2],[2,1,2,0]],[[1,2,0,0],[2,3,3,1],[3,3,0,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,1],[2,3,0,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,1],[2,3,0,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,1],[2,3,0,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,1],[3,3,0,2],[0,2,2,0]],[[1,1,3,1],[1,2,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,2,2],[1,2,3,1],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,2,4,1],[1,3,0,2],[0,2,2,1]],[[1,1,3,1],[1,2,3,1],[1,3,1,2],[0,1,2,1]],[[1,1,2,2],[1,2,3,1],[1,3,1,2],[0,1,2,1]],[[1,1,2,1],[1,2,4,1],[1,3,1,2],[0,1,2,1]],[[1,1,3,1],[1,2,3,1],[1,3,1,2],[1,0,2,1]],[[1,1,2,2],[1,2,3,1],[1,3,1,2],[1,0,2,1]],[[1,1,2,1],[1,2,4,1],[1,3,1,2],[1,0,2,1]],[[1,2,0,0],[2,4,3,1],[2,3,0,2],[0,2,2,0]],[[1,2,0,0],[3,3,3,1],[2,3,0,2],[0,2,2,0]],[[2,2,0,0],[2,3,3,1],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[1,2,3,1],[1,4,2,0],[0,2,2,1]],[[1,1,2,1],[1,2,3,1],[1,3,2,0],[0,3,2,1]],[[1,1,2,1],[1,2,3,1],[1,3,2,0],[0,2,3,1]],[[1,1,2,1],[1,2,3,1],[1,3,2,0],[0,2,2,2]],[[1,1,2,1],[1,2,3,1],[1,4,2,1],[0,2,2,0]],[[1,1,2,1],[1,2,3,1],[1,3,2,1],[0,3,2,0]],[[1,1,2,1],[1,2,3,1],[1,3,2,1],[0,2,3,0]],[[1,2,0,0],[2,3,3,1],[2,3,0,1],[2,2,1,1]],[[1,2,0,0],[2,3,3,1],[3,3,0,1],[1,2,1,1]],[[1,2,0,0],[2,4,3,1],[2,3,0,1],[1,2,1,1]],[[1,2,0,0],[3,3,3,1],[2,3,0,1],[1,2,1,1]],[[2,2,0,0],[2,3,3,1],[2,3,0,1],[1,2,1,1]],[[1,1,3,1],[1,2,3,1],[1,3,2,2],[0,0,2,1]],[[1,1,2,2],[1,2,3,1],[1,3,2,2],[0,0,2,1]],[[1,1,2,1],[1,2,4,1],[1,3,2,2],[0,0,2,1]],[[1,1,3,1],[1,2,3,1],[1,3,2,2],[0,1,1,1]],[[1,1,2,2],[1,2,3,1],[1,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,2,4,1],[1,3,2,2],[0,1,1,1]],[[1,1,3,1],[1,2,3,1],[1,3,2,2],[0,1,2,0]],[[1,1,2,2],[1,2,3,1],[1,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,2,4,1],[1,3,2,2],[0,1,2,0]],[[1,1,3,1],[1,2,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,2,2],[1,2,3,1],[1,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,2,4,1],[1,3,2,2],[0,2,0,1]],[[1,1,3,1],[1,2,3,1],[1,3,2,2],[0,2,1,0]],[[1,1,2,2],[1,2,3,1],[1,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,2,4,1],[1,3,2,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,1],[2,3,0,1],[2,1,2,1]],[[1,2,0,0],[2,3,3,1],[3,3,0,1],[1,1,2,1]],[[1,2,0,0],[2,4,3,1],[2,3,0,1],[1,1,2,1]],[[1,2,0,0],[3,3,3,1],[2,3,0,1],[1,1,2,1]],[[2,2,0,0],[2,3,3,1],[2,3,0,1],[1,1,2,1]],[[1,2,0,0],[2,3,3,1],[3,3,0,1],[0,2,2,1]],[[1,2,0,0],[2,4,3,1],[2,3,0,1],[0,2,2,1]],[[1,2,0,0],[3,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,1,3,1],[1,2,3,1],[1,3,2,2],[1,0,1,1]],[[1,1,2,2],[1,2,3,1],[1,3,2,2],[1,0,1,1]],[[1,1,2,1],[1,2,4,1],[1,3,2,2],[1,0,1,1]],[[1,1,3,1],[1,2,3,1],[1,3,2,2],[1,0,2,0]],[[1,1,2,2],[1,2,3,1],[1,3,2,2],[1,0,2,0]],[[1,1,2,1],[1,2,4,1],[1,3,2,2],[1,0,2,0]],[[1,1,3,1],[1,2,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,2,2],[1,2,3,1],[1,3,2,2],[1,1,0,1]],[[1,1,2,1],[1,2,4,1],[1,3,2,2],[1,1,0,1]],[[1,1,3,1],[1,2,3,1],[1,3,2,2],[1,1,1,0]],[[1,1,2,2],[1,2,3,1],[1,3,2,2],[1,1,1,0]],[[1,1,2,1],[1,2,4,1],[1,3,2,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,1],[2,3,0,1],[0,2,2,1]],[[1,2,0,0],[2,3,3,1],[2,3,0,0],[1,3,2,1]],[[1,2,0,0],[2,3,3,1],[2,3,0,0],[2,2,2,1]],[[1,2,0,0],[2,3,3,1],[3,3,0,0],[1,2,2,1]],[[1,2,0,0],[3,3,3,1],[2,3,0,0],[1,2,2,1]],[[2,2,0,0],[2,3,3,1],[2,3,0,0],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[2,2,3,2],[2,1,0,0]],[[1,2,0,0],[2,3,3,1],[3,2,3,2],[1,1,0,0]],[[1,2,0,0],[2,4,3,1],[2,2,3,2],[1,1,0,0]],[[1,2,0,0],[3,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,3,1],[1,2,3,1],[1,3,3,0],[0,1,2,1]],[[1,1,2,2],[1,2,3,1],[1,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,2,4,1],[1,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,2,3,1],[1,4,3,0],[0,1,2,1]],[[1,1,2,1],[1,2,3,1],[1,3,4,0],[0,1,2,1]],[[1,1,2,1],[1,2,3,1],[1,3,3,0],[0,1,3,1]],[[1,1,2,1],[1,2,3,1],[1,3,3,0],[0,1,2,2]],[[1,1,3,1],[1,2,3,1],[1,3,3,0],[0,2,1,1]],[[1,1,2,2],[1,2,3,1],[1,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,2,4,1],[1,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,2,3,1],[1,4,3,0],[0,2,1,1]],[[1,1,2,1],[1,2,3,1],[1,3,4,0],[0,2,1,1]],[[1,1,2,1],[1,2,3,1],[1,3,3,0],[0,3,1,1]],[[1,1,3,1],[1,2,3,1],[1,3,3,0],[1,0,2,1]],[[1,1,2,2],[1,2,3,1],[1,3,3,0],[1,0,2,1]],[[1,1,2,1],[1,2,4,1],[1,3,3,0],[1,0,2,1]],[[1,1,2,1],[1,2,3,1],[1,4,3,0],[1,0,2,1]],[[1,1,2,1],[1,2,3,1],[1,3,4,0],[1,0,2,1]],[[1,1,2,1],[1,2,3,1],[1,3,3,0],[1,0,3,1]],[[1,1,2,1],[1,2,3,1],[1,3,3,0],[1,0,2,2]],[[1,1,3,1],[1,2,3,1],[1,3,3,0],[1,1,1,1]],[[1,1,2,2],[1,2,3,1],[1,3,3,0],[1,1,1,1]],[[1,1,2,1],[1,2,4,1],[1,3,3,0],[1,1,1,1]],[[1,1,2,1],[1,2,3,1],[1,4,3,0],[1,1,1,1]],[[1,1,2,1],[1,2,3,1],[1,3,4,0],[1,1,1,1]],[[2,2,0,0],[2,3,3,1],[2,2,3,2],[1,1,0,0]],[[1,1,3,1],[1,2,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,2,2],[1,2,3,1],[1,3,3,1],[0,0,2,1]],[[1,1,2,1],[1,2,4,1],[1,3,3,1],[0,0,2,1]],[[1,1,2,1],[1,2,3,1],[1,3,4,1],[0,0,2,1]],[[1,1,3,1],[1,2,3,1],[1,3,3,1],[0,1,1,1]],[[1,1,2,2],[1,2,3,1],[1,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,2,4,1],[1,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,2,3,1],[1,4,3,1],[0,1,1,1]],[[1,1,2,1],[1,2,3,1],[1,3,4,1],[0,1,1,1]],[[1,1,3,1],[1,2,3,1],[1,3,3,1],[0,1,2,0]],[[1,1,2,2],[1,2,3,1],[1,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,2,4,1],[1,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,2,3,1],[1,4,3,1],[0,1,2,0]],[[1,1,2,1],[1,2,3,1],[1,3,4,1],[0,1,2,0]],[[1,1,2,1],[1,2,3,1],[1,3,3,1],[0,1,3,0]],[[1,1,3,1],[1,2,3,1],[1,3,3,1],[0,2,0,1]],[[1,1,2,2],[1,2,3,1],[1,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,2,4,1],[1,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,2,3,1],[1,4,3,1],[0,2,0,1]],[[1,1,2,1],[1,2,3,1],[1,3,4,1],[0,2,0,1]],[[1,1,2,1],[1,2,3,1],[1,3,3,1],[0,3,0,1]],[[1,1,3,1],[1,2,3,1],[1,3,3,1],[0,2,1,0]],[[1,1,2,2],[1,2,3,1],[1,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,2,4,1],[1,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,2,3,1],[1,4,3,1],[0,2,1,0]],[[1,1,2,1],[1,2,3,1],[1,3,4,1],[0,2,1,0]],[[1,1,2,1],[1,2,3,1],[1,3,3,1],[0,3,1,0]],[[1,1,3,1],[1,2,3,1],[1,3,3,1],[1,0,1,1]],[[1,1,2,2],[1,2,3,1],[1,3,3,1],[1,0,1,1]],[[1,1,2,1],[1,2,4,1],[1,3,3,1],[1,0,1,1]],[[1,1,2,1],[1,2,3,1],[1,4,3,1],[1,0,1,1]],[[1,1,2,1],[1,2,3,1],[1,3,4,1],[1,0,1,1]],[[1,1,3,1],[1,2,3,1],[1,3,3,1],[1,0,2,0]],[[1,1,2,2],[1,2,3,1],[1,3,3,1],[1,0,2,0]],[[1,1,2,1],[1,2,4,1],[1,3,3,1],[1,0,2,0]],[[1,1,2,1],[1,2,3,1],[1,4,3,1],[1,0,2,0]],[[1,1,2,1],[1,2,3,1],[1,3,4,1],[1,0,2,0]],[[1,1,2,1],[1,2,3,1],[1,3,3,1],[1,0,3,0]],[[1,1,3,1],[1,2,3,1],[1,3,3,1],[1,1,0,1]],[[1,1,2,2],[1,2,3,1],[1,3,3,1],[1,1,0,1]],[[1,1,2,1],[1,2,4,1],[1,3,3,1],[1,1,0,1]],[[1,1,2,1],[1,2,3,1],[1,4,3,1],[1,1,0,1]],[[1,1,2,1],[1,2,3,1],[1,3,4,1],[1,1,0,1]],[[1,1,3,1],[1,2,3,1],[1,3,3,1],[1,1,1,0]],[[1,1,2,2],[1,2,3,1],[1,3,3,1],[1,1,1,0]],[[1,1,2,1],[1,2,4,1],[1,3,3,1],[1,1,1,0]],[[1,1,2,1],[1,2,3,1],[1,4,3,1],[1,1,1,0]],[[1,1,2,1],[1,2,3,1],[1,3,4,1],[1,1,1,0]],[[1,2,0,0],[2,3,3,1],[3,2,3,2],[0,2,0,0]],[[1,2,0,0],[2,4,3,1],[2,2,3,2],[0,2,0,0]],[[1,2,0,0],[3,3,3,1],[2,2,3,2],[0,2,0,0]],[[2,2,0,0],[2,3,3,1],[2,2,3,2],[0,2,0,0]],[[1,1,3,1],[1,2,3,1],[1,3,3,2],[0,1,0,1]],[[1,1,2,2],[1,2,3,1],[1,3,3,2],[0,1,0,1]],[[1,1,2,1],[1,2,4,1],[1,3,3,2],[0,1,0,1]],[[1,2,0,0],[2,3,3,1],[2,2,2,2],[2,2,0,0]],[[1,2,0,0],[2,3,3,1],[3,2,2,2],[1,2,0,0]],[[1,2,0,0],[2,4,3,1],[2,2,2,2],[1,2,0,0]],[[1,1,3,1],[1,2,3,1],[1,3,3,2],[1,0,0,1]],[[1,1,2,2],[1,2,3,1],[1,3,3,2],[1,0,0,1]],[[1,1,2,1],[1,2,4,1],[1,3,3,2],[1,0,0,1]],[[1,2,0,0],[3,3,3,1],[2,2,2,2],[1,2,0,0]],[[2,2,0,0],[2,3,3,1],[2,2,2,2],[1,2,0,0]],[[1,2,0,0],[2,3,3,1],[2,2,2,2],[2,1,1,0]],[[1,2,0,0],[2,3,3,1],[3,2,2,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,1],[2,2,2,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,1],[2,2,2,2],[1,1,1,0]],[[1,2,0,0],[2,3,3,1],[2,2,2,2],[2,1,0,1]],[[1,2,0,0],[2,3,3,1],[3,2,2,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,1],[2,2,2,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,1],[2,2,2,2],[1,1,0,1]],[[2,2,0,0],[2,3,3,1],[2,2,2,2],[1,1,0,1]],[[1,2,0,0],[2,3,3,1],[2,2,2,2],[2,0,2,0]],[[1,2,0,0],[2,3,3,1],[3,2,2,2],[1,0,2,0]],[[1,2,0,0],[2,4,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,0,0],[3,3,3,1],[2,2,2,2],[1,0,2,0]],[[2,2,0,0],[2,3,3,1],[2,2,2,2],[1,0,2,0]],[[1,2,0,0],[2,3,3,1],[2,2,2,2],[2,0,1,1]],[[1,2,0,0],[2,3,3,1],[3,2,2,2],[1,0,1,1]],[[1,2,0,0],[2,4,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,0,0],[3,3,3,1],[2,2,2,2],[1,0,1,1]],[[2,2,0,0],[2,3,3,1],[2,2,2,2],[1,0,1,1]],[[1,2,0,0],[2,3,3,1],[3,2,2,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,1],[2,2,2,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,1],[2,2,2,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,1],[3,2,2,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,1],[2,2,2,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,1],[2,2,2,2],[0,2,0,1]],[[1,2,0,0],[2,3,3,1],[3,2,2,2],[0,1,2,0]],[[1,2,0,0],[2,4,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,0,0],[3,3,3,1],[2,2,2,2],[0,1,2,0]],[[2,2,0,0],[2,3,3,1],[2,2,2,2],[0,1,2,0]],[[1,2,0,0],[2,3,3,1],[3,2,2,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,0,0],[3,3,3,1],[2,2,2,2],[0,1,1,1]],[[2,2,0,0],[2,3,3,1],[2,2,2,2],[0,1,1,1]],[[1,2,0,0],[2,3,3,1],[2,2,2,1],[2,2,0,1]],[[1,2,0,0],[2,3,3,1],[3,2,2,1],[1,2,0,1]],[[1,2,0,0],[2,4,3,1],[2,2,2,1],[1,2,0,1]],[[1,2,0,0],[3,3,3,1],[2,2,2,1],[1,2,0,1]],[[2,2,0,0],[2,3,3,1],[2,2,2,1],[1,2,0,1]],[[1,2,0,0],[2,3,3,1],[2,2,2,1],[2,1,1,1]],[[1,2,0,0],[2,3,3,1],[3,2,2,1],[1,1,1,1]],[[1,2,0,0],[2,4,3,1],[2,2,2,1],[1,1,1,1]],[[1,2,0,0],[3,3,3,1],[2,2,2,1],[1,1,1,1]],[[2,2,0,0],[2,3,3,1],[2,2,2,1],[1,1,1,1]],[[1,2,0,0],[2,3,3,1],[2,2,2,1],[2,0,2,1]],[[1,2,0,0],[2,3,3,1],[3,2,2,1],[1,0,2,1]],[[1,2,0,0],[2,4,3,1],[2,2,2,1],[1,0,2,1]],[[1,2,0,0],[3,3,3,1],[2,2,2,1],[1,0,2,1]],[[2,2,0,0],[2,3,3,1],[2,2,2,1],[1,0,2,1]],[[1,2,0,0],[2,3,3,1],[3,2,2,1],[0,2,1,1]],[[1,2,0,0],[2,4,3,1],[2,2,2,1],[0,2,1,1]],[[1,2,0,0],[3,3,3,1],[2,2,2,1],[0,2,1,1]],[[2,2,0,0],[2,3,3,1],[2,2,2,1],[0,2,1,1]],[[1,2,0,0],[2,3,3,1],[3,2,2,1],[0,1,2,1]],[[1,2,0,0],[2,4,3,1],[2,2,2,1],[0,1,2,1]],[[1,2,0,0],[3,3,3,1],[2,2,2,1],[0,1,2,1]],[[2,2,0,0],[2,3,3,1],[2,2,2,1],[0,1,2,1]],[[1,2,0,0],[2,3,3,1],[2,2,1,2],[2,1,2,0]],[[1,2,0,0],[2,3,3,1],[3,2,1,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,1],[2,2,1,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,1],[2,2,1,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,1],[2,2,1,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,1],[3,2,1,2],[0,2,2,0]],[[1,2,0,0],[2,4,3,1],[2,2,1,2],[0,2,2,0]],[[1,2,0,0],[3,3,3,1],[2,2,1,2],[0,2,2,0]],[[2,2,0,0],[2,3,3,1],[2,2,1,2],[0,2,2,0]],[[1,2,0,0],[2,3,3,1],[2,2,1,1],[2,1,2,1]],[[1,2,0,0],[2,3,3,1],[3,2,1,1],[1,1,2,1]],[[1,2,0,0],[2,4,3,1],[2,2,1,1],[1,1,2,1]],[[1,2,0,0],[3,3,3,1],[2,2,1,1],[1,1,2,1]],[[2,2,0,0],[2,3,3,1],[2,2,1,1],[1,1,2,1]],[[1,2,0,0],[2,3,3,1],[3,2,1,1],[0,2,2,1]],[[1,2,0,0],[2,4,3,1],[2,2,1,1],[0,2,2,1]],[[1,2,0,0],[3,3,3,1],[2,2,1,1],[0,2,2,1]],[[2,2,0,0],[2,3,3,1],[2,2,1,1],[0,2,2,1]],[[1,2,0,0],[2,3,3,1],[2,2,0,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,1],[2,2,0,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,1],[3,2,0,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,1],[2,2,0,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,1],[2,2,0,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,1],[2,2,0,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,1],[2,2,0,2],[2,1,2,1]],[[1,2,0,0],[2,3,3,1],[3,2,0,2],[1,1,2,1]],[[1,2,0,0],[2,4,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,0,0],[3,3,3,1],[2,2,0,2],[1,1,2,1]],[[2,2,0,0],[2,3,3,1],[2,2,0,2],[1,1,2,1]],[[1,2,0,0],[2,3,3,1],[3,2,0,2],[0,2,2,1]],[[1,2,0,0],[2,4,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,0,0],[3,3,3,1],[2,2,0,2],[0,2,2,1]],[[2,2,0,0],[2,3,3,1],[2,2,0,2],[0,2,2,1]],[[1,2,0,0],[2,3,3,1],[2,2,0,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,1],[2,2,0,1],[2,2,2,1]],[[1,2,0,0],[2,3,3,1],[3,2,0,1],[1,2,2,1]],[[1,2,0,0],[2,4,3,1],[2,2,0,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,1],[2,2,0,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,1],[2,2,0,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[2,1,3,2],[2,1,1,0]],[[1,2,0,0],[2,3,3,1],[3,1,3,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,1],[2,1,3,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,1],[2,1,3,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,1],[2,1,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,3,1],[2,1,3,2],[2,1,0,1]],[[1,2,0,0],[2,3,3,1],[3,1,3,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,1],[2,1,3,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,1],[2,1,3,2],[1,1,0,1]],[[2,2,0,0],[2,3,3,1],[2,1,3,2],[1,1,0,1]],[[1,2,0,0],[2,3,3,1],[2,1,3,2],[2,0,2,0]],[[1,2,0,0],[2,3,3,1],[3,1,3,2],[1,0,2,0]],[[1,2,0,0],[2,4,3,1],[2,1,3,2],[1,0,2,0]],[[1,2,0,0],[3,3,3,1],[2,1,3,2],[1,0,2,0]],[[2,2,0,0],[2,3,3,1],[2,1,3,2],[1,0,2,0]],[[1,2,0,0],[2,3,3,1],[2,1,3,2],[2,0,1,1]],[[1,2,0,0],[2,3,3,1],[3,1,3,2],[1,0,1,1]],[[1,2,0,0],[2,4,3,1],[2,1,3,2],[1,0,1,1]],[[1,2,0,0],[3,3,3,1],[2,1,3,2],[1,0,1,1]],[[2,2,0,0],[2,3,3,1],[2,1,3,2],[1,0,1,1]],[[1,2,0,0],[2,3,3,1],[3,1,3,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,1],[2,1,3,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,1],[2,1,3,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,1],[2,1,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,1],[3,1,3,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,1],[2,1,3,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,1],[2,1,3,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,1],[2,1,3,2],[0,2,0,1]],[[1,2,0,0],[2,3,3,1],[3,1,3,2],[0,1,2,0]],[[1,2,0,0],[2,4,3,1],[2,1,3,2],[0,1,2,0]],[[1,2,0,0],[3,3,3,1],[2,1,3,2],[0,1,2,0]],[[2,2,0,0],[2,3,3,1],[2,1,3,2],[0,1,2,0]],[[1,2,0,0],[2,3,3,1],[3,1,3,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,1],[2,1,3,2],[0,1,1,1]],[[1,2,0,0],[3,3,3,1],[2,1,3,2],[0,1,1,1]],[[2,2,0,0],[2,3,3,1],[2,1,3,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,1],[2,1,3,2],[0,0,2,1]],[[1,2,0,0],[3,3,3,1],[2,1,3,2],[0,0,2,1]],[[2,2,0,0],[2,3,3,1],[2,1,3,2],[0,0,2,1]],[[1,2,0,0],[2,3,3,1],[2,1,3,1],[2,1,1,1]],[[1,2,0,0],[2,3,3,1],[3,1,3,1],[1,1,1,1]],[[1,2,0,0],[2,4,3,1],[2,1,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,3,1],[2,1,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,3,1],[2,1,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,3,1],[2,1,3,1],[2,0,2,1]],[[1,2,0,0],[2,3,3,1],[3,1,3,1],[1,0,2,1]],[[1,2,0,0],[2,4,3,1],[2,1,3,1],[1,0,2,1]],[[1,2,0,0],[3,3,3,1],[2,1,3,1],[1,0,2,1]],[[2,2,0,0],[2,3,3,1],[2,1,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,3,1],[3,1,3,1],[0,2,1,1]],[[1,2,0,0],[2,4,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,3,1],[2,1,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,3,1],[2,1,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,3,1],[3,1,3,1],[0,1,2,1]],[[1,2,0,0],[2,4,3,1],[2,1,3,1],[0,1,2,1]],[[1,2,0,0],[3,3,3,1],[2,1,3,1],[0,1,2,1]],[[2,2,0,0],[2,3,3,1],[2,1,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,3,1],[2,1,2,2],[1,3,1,0]],[[1,2,0,0],[2,3,3,1],[2,1,2,2],[2,2,1,0]],[[1,2,0,0],[2,3,3,1],[3,1,2,2],[1,2,1,0]],[[1,2,0,0],[2,4,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,0,0],[3,3,3,1],[2,1,2,2],[1,2,1,0]],[[2,2,0,0],[2,3,3,1],[2,1,2,2],[1,2,1,0]],[[1,2,0,0],[2,3,3,1],[2,1,2,2],[1,3,0,1]],[[1,2,0,0],[2,3,3,1],[2,1,2,2],[2,2,0,1]],[[1,2,0,0],[2,3,3,1],[3,1,2,2],[1,2,0,1]],[[1,2,0,0],[2,4,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,0,0],[3,3,3,1],[2,1,2,2],[1,2,0,1]],[[2,2,0,0],[2,3,3,1],[2,1,2,2],[1,2,0,1]],[[1,2,0,0],[2,3,3,1],[2,1,2,1],[1,3,1,1]],[[1,2,0,0],[2,3,3,1],[2,1,2,1],[2,2,1,1]],[[1,2,0,0],[2,3,3,1],[3,1,2,1],[1,2,1,1]],[[1,2,0,0],[2,4,3,1],[2,1,2,1],[1,2,1,1]],[[1,2,0,0],[3,3,3,1],[2,1,2,1],[1,2,1,1]],[[2,2,0,0],[2,3,3,1],[2,1,2,1],[1,2,1,1]],[[1,2,0,0],[2,3,3,1],[2,1,1,2],[1,2,3,0]],[[1,2,0,0],[2,3,3,1],[2,1,1,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,1],[2,1,1,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,1],[3,1,1,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,1],[2,1,1,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,1],[2,1,1,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,1],[2,1,1,1],[1,2,2,2]],[[1,2,0,0],[2,3,3,1],[2,1,1,1],[1,2,3,1]],[[1,2,0,0],[2,3,3,1],[2,1,1,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,1],[2,1,1,1],[2,2,2,1]],[[1,2,0,0],[2,3,3,1],[3,1,1,1],[1,2,2,1]],[[1,2,0,0],[2,4,3,1],[2,1,1,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,1],[2,1,1,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,1],[2,1,1,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[2,1,0,2],[1,2,2,2]],[[1,2,0,0],[2,3,3,1],[2,1,0,2],[1,2,3,1]],[[1,2,0,0],[2,3,3,1],[2,1,0,2],[1,3,2,1]],[[1,2,0,0],[2,3,3,1],[2,1,0,2],[2,2,2,1]],[[1,2,0,0],[2,3,3,1],[2,1,0,3],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[3,1,0,2],[1,2,2,1]],[[1,2,0,0],[2,4,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,0,0],[3,3,3,1],[2,1,0,2],[1,2,2,1]],[[2,2,0,0],[2,3,3,1],[2,1,0,2],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[2,0,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,3,1],[2,0,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,3,1],[3,0,3,2],[1,2,1,0]],[[1,2,0,0],[2,4,3,1],[2,0,3,2],[1,2,1,0]],[[1,2,0,0],[3,3,3,1],[2,0,3,2],[1,2,1,0]],[[2,2,0,0],[2,3,3,1],[2,0,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,3,1],[2,0,3,2],[1,3,0,1]],[[1,2,0,0],[2,3,3,1],[2,0,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,3,1],[3,0,3,2],[1,2,0,1]],[[1,2,0,0],[2,4,3,1],[2,0,3,2],[1,2,0,1]],[[1,2,0,0],[3,3,3,1],[2,0,3,2],[1,2,0,1]],[[2,2,0,0],[2,3,3,1],[2,0,3,2],[1,2,0,1]],[[1,2,0,0],[2,3,3,1],[2,0,3,2],[2,1,2,0]],[[1,2,0,0],[2,3,3,1],[3,0,3,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,1],[2,0,3,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,1],[2,0,3,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,1],[2,0,3,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,1],[2,0,3,2],[2,1,1,1]],[[1,2,0,0],[2,3,3,1],[3,0,3,2],[1,1,1,1]],[[1,2,0,0],[2,4,3,1],[2,0,3,2],[1,1,1,1]],[[1,2,0,0],[3,3,3,1],[2,0,3,2],[1,1,1,1]],[[2,2,0,0],[2,3,3,1],[2,0,3,2],[1,1,1,1]],[[1,2,0,0],[2,3,3,1],[3,0,3,2],[0,2,2,0]],[[1,2,0,0],[2,4,3,1],[2,0,3,2],[0,2,2,0]],[[1,2,0,0],[3,3,3,1],[2,0,3,2],[0,2,2,0]],[[2,2,0,0],[2,3,3,1],[2,0,3,2],[0,2,2,0]],[[1,2,0,0],[2,3,3,1],[3,0,3,2],[0,2,1,1]],[[1,2,0,0],[2,4,3,1],[2,0,3,2],[0,2,1,1]],[[1,2,0,0],[3,3,3,1],[2,0,3,2],[0,2,1,1]],[[2,2,0,0],[2,3,3,1],[2,0,3,2],[0,2,1,1]],[[1,2,0,0],[2,3,3,1],[2,0,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,3,1],[2,0,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,3,1],[3,0,3,1],[1,2,1,1]],[[1,2,0,0],[2,4,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,3,1],[2,0,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,3,1],[2,0,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,3,1],[2,0,3,1],[2,1,2,1]],[[1,2,0,0],[2,3,3,1],[3,0,3,1],[1,1,2,1]],[[1,2,0,0],[2,4,3,1],[2,0,3,1],[1,1,2,1]],[[1,2,0,0],[3,3,3,1],[2,0,3,1],[1,1,2,1]],[[2,2,0,0],[2,3,3,1],[2,0,3,1],[1,1,2,1]],[[1,2,0,0],[2,3,3,1],[3,0,3,1],[0,2,2,1]],[[1,2,0,0],[2,4,3,1],[2,0,3,1],[0,2,2,1]],[[1,2,0,0],[3,3,3,1],[2,0,3,1],[0,2,2,1]],[[2,2,0,0],[2,3,3,1],[2,0,3,1],[0,2,2,1]],[[1,2,0,0],[2,3,3,1],[2,0,2,2],[1,2,3,0]],[[1,2,0,0],[2,3,3,1],[2,0,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,1],[2,0,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,1],[3,0,2,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,1],[2,0,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,1],[2,0,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,1],[2,0,2,1],[1,2,2,2]],[[1,2,0,0],[2,3,3,1],[2,0,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,3,1],[2,0,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,1],[2,0,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,3,1],[3,0,2,1],[1,2,2,1]],[[1,2,0,0],[2,4,3,1],[2,0,2,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,1],[2,0,2,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,1],[2,0,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[2,0,1,2],[1,2,2,2]],[[1,2,0,0],[2,3,3,1],[2,0,1,2],[1,2,3,1]],[[1,2,0,0],[2,3,3,1],[2,0,1,2],[1,3,2,1]],[[1,2,0,0],[2,3,3,1],[2,0,1,2],[2,2,2,1]],[[1,2,0,0],[2,3,3,1],[2,0,1,3],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[3,0,1,2],[1,2,2,1]],[[1,2,0,0],[2,4,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,0,0],[3,3,3,1],[2,0,1,2],[1,2,2,1]],[[2,2,0,0],[2,3,3,1],[2,0,1,2],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[1,4,3,2],[1,1,0,0]],[[1,2,0,0],[2,4,3,1],[1,3,3,2],[1,1,0,0]],[[1,2,0,0],[3,3,3,1],[1,3,3,2],[1,1,0,0]],[[2,2,0,0],[2,3,3,1],[1,3,3,2],[1,1,0,0]],[[1,2,0,0],[2,3,3,1],[1,4,3,2],[0,2,0,0]],[[1,2,0,0],[2,4,3,1],[1,3,3,2],[0,2,0,0]],[[1,2,0,0],[3,3,3,1],[1,3,3,2],[0,2,0,0]],[[2,2,0,0],[2,3,3,1],[1,3,3,2],[0,2,0,0]],[[1,2,0,0],[2,4,3,1],[1,3,3,2],[0,0,2,0]],[[1,2,0,0],[3,3,3,1],[1,3,3,2],[0,0,2,0]],[[2,2,0,0],[2,3,3,1],[1,3,3,2],[0,0,2,0]],[[1,2,0,0],[2,4,3,1],[1,3,3,2],[0,0,1,1]],[[1,2,0,0],[3,3,3,1],[1,3,3,2],[0,0,1,1]],[[2,2,0,0],[2,3,3,1],[1,3,3,2],[0,0,1,1]],[[1,2,0,0],[2,4,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,0,0],[3,3,3,1],[1,3,3,1],[0,0,2,1]],[[2,2,0,0],[2,3,3,1],[1,3,3,1],[0,0,2,1]],[[1,2,0,0],[2,3,3,1],[1,4,2,2],[1,2,0,0]],[[1,2,0,0],[2,4,3,1],[1,3,2,2],[1,2,0,0]],[[1,2,0,0],[3,3,3,1],[1,3,2,2],[1,2,0,0]],[[2,2,0,0],[2,3,3,1],[1,3,2,2],[1,2,0,0]],[[1,2,0,0],[2,3,3,1],[1,4,2,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,1],[1,3,2,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,1],[1,3,2,2],[1,1,1,0]],[[1,2,0,0],[2,3,3,1],[1,4,2,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,1],[1,3,2,2],[1,1,0,1]],[[2,2,0,0],[2,3,3,1],[1,3,2,2],[1,1,0,1]],[[1,2,0,0],[2,3,3,1],[1,4,2,2],[1,0,2,0]],[[1,2,0,0],[2,4,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,0,0],[3,3,3,1],[1,3,2,2],[1,0,2,0]],[[2,2,0,0],[2,3,3,1],[1,3,2,2],[1,0,2,0]],[[1,2,0,0],[2,3,3,1],[1,4,2,2],[1,0,1,1]],[[1,2,0,0],[2,4,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,0,0],[3,3,3,1],[1,3,2,2],[1,0,1,1]],[[2,2,0,0],[2,3,3,1],[1,3,2,2],[1,0,1,1]],[[1,2,0,0],[2,3,3,1],[1,3,2,2],[0,3,1,0]],[[1,2,0,0],[2,3,3,1],[1,4,2,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,1],[1,3,2,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,1],[1,3,2,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,1],[1,3,2,2],[0,3,0,1]],[[1,2,0,0],[2,3,3,1],[1,4,2,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,1],[1,3,2,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,1],[1,3,2,2],[0,2,0,1]],[[1,2,0,0],[2,3,3,1],[1,4,2,2],[0,1,2,0]],[[1,2,0,0],[2,4,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,0,0],[3,3,3,1],[1,3,2,2],[0,1,2,0]],[[2,2,0,0],[2,3,3,1],[1,3,2,2],[0,1,2,0]],[[1,2,0,0],[2,3,3,1],[1,4,2,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,0,0],[3,3,3,1],[1,3,2,2],[0,1,1,1]],[[2,2,0,0],[2,3,3,1],[1,3,2,2],[0,1,1,1]],[[1,2,0,0],[2,3,3,1],[1,4,2,1],[1,2,0,1]],[[1,2,0,0],[2,4,3,1],[1,3,2,1],[1,2,0,1]],[[1,2,0,0],[3,3,3,1],[1,3,2,1],[1,2,0,1]],[[2,2,0,0],[2,3,3,1],[1,3,2,1],[1,2,0,1]],[[1,2,0,0],[2,3,3,1],[1,4,2,1],[1,1,1,1]],[[1,2,0,0],[2,4,3,1],[1,3,2,1],[1,1,1,1]],[[1,2,0,0],[3,3,3,1],[1,3,2,1],[1,1,1,1]],[[2,2,0,0],[2,3,3,1],[1,3,2,1],[1,1,1,1]],[[1,2,0,0],[2,3,3,1],[1,4,2,1],[1,0,2,1]],[[1,2,0,0],[2,4,3,1],[1,3,2,1],[1,0,2,1]],[[1,2,0,0],[3,3,3,1],[1,3,2,1],[1,0,2,1]],[[2,2,0,0],[2,3,3,1],[1,3,2,1],[1,0,2,1]],[[1,2,0,0],[2,3,3,1],[1,3,2,1],[0,3,1,1]],[[1,2,0,0],[2,3,3,1],[1,4,2,1],[0,2,1,1]],[[1,2,0,0],[2,4,3,1],[1,3,2,1],[0,2,1,1]],[[1,2,0,0],[3,3,3,1],[1,3,2,1],[0,2,1,1]],[[2,2,0,0],[2,3,3,1],[1,3,2,1],[0,2,1,1]],[[1,2,0,0],[2,3,3,1],[1,4,2,1],[0,1,2,1]],[[1,2,0,0],[2,4,3,1],[1,3,2,1],[0,1,2,1]],[[1,2,0,0],[3,3,3,1],[1,3,2,1],[0,1,2,1]],[[2,2,0,0],[2,3,3,1],[1,3,2,1],[0,1,2,1]],[[1,2,0,0],[2,3,3,1],[1,4,1,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,1],[1,3,1,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,1],[1,3,1,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,1],[1,3,1,2],[0,2,3,0]],[[1,2,0,0],[2,3,3,1],[1,3,1,2],[0,3,2,0]],[[1,2,0,0],[2,3,3,1],[1,4,1,2],[0,2,2,0]],[[1,1,3,1],[1,2,3,2],[0,2,3,0],[1,2,2,0]],[[1,1,2,2],[1,2,3,2],[0,2,3,0],[1,2,2,0]],[[1,1,2,1],[1,2,4,2],[0,2,3,0],[1,2,2,0]],[[1,2,0,0],[2,4,3,1],[1,3,1,2],[0,2,2,0]],[[1,2,0,0],[3,3,3,1],[1,3,1,2],[0,2,2,0]],[[2,2,0,0],[2,3,3,1],[1,3,1,2],[0,2,2,0]],[[1,2,0,0],[2,3,3,1],[1,4,1,1],[1,1,2,1]],[[1,2,0,0],[2,4,3,1],[1,3,1,1],[1,1,2,1]],[[1,2,0,0],[3,3,3,1],[1,3,1,1],[1,1,2,1]],[[2,2,0,0],[2,3,3,1],[1,3,1,1],[1,1,2,1]],[[1,2,0,0],[2,3,3,1],[1,3,1,1],[0,2,2,2]],[[1,2,0,0],[2,3,3,1],[1,3,1,1],[0,2,3,1]],[[1,2,0,0],[2,3,3,1],[1,3,1,1],[0,3,2,1]],[[1,2,0,0],[2,3,3,1],[1,4,1,1],[0,2,2,1]],[[1,2,0,0],[2,4,3,1],[1,3,1,1],[0,2,2,1]],[[1,2,0,0],[3,3,3,1],[1,3,1,1],[0,2,2,1]],[[2,2,0,0],[2,3,3,1],[1,3,1,1],[0,2,2,1]],[[1,2,0,0],[2,3,3,1],[1,4,0,2],[1,1,2,1]],[[1,2,0,0],[2,4,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,0,0],[3,3,3,1],[1,3,0,2],[1,1,2,1]],[[2,2,0,0],[2,3,3,1],[1,3,0,2],[1,1,2,1]],[[1,2,0,0],[2,3,3,1],[1,3,0,2],[0,2,2,2]],[[1,2,0,0],[2,3,3,1],[1,3,0,2],[0,2,3,1]],[[1,2,0,0],[2,3,3,1],[1,3,0,2],[0,3,2,1]],[[1,2,0,0],[2,3,3,1],[1,3,0,3],[0,2,2,1]],[[1,2,0,0],[2,3,3,1],[1,4,0,2],[0,2,2,1]],[[1,2,0,0],[2,4,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,0,0],[3,3,3,1],[1,3,0,2],[0,2,2,1]],[[2,2,0,0],[2,3,3,1],[1,3,0,2],[0,2,2,1]],[[1,2,0,0],[2,4,3,1],[1,2,3,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,1],[1,2,3,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,1],[1,2,3,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,1],[1,2,3,2],[1,1,0,1]],[[2,2,0,0],[2,3,3,1],[1,2,3,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,1],[1,2,3,2],[1,0,2,0]],[[1,2,0,0],[3,3,3,1],[1,2,3,2],[1,0,2,0]],[[2,2,0,0],[2,3,3,1],[1,2,3,2],[1,0,2,0]],[[1,2,0,0],[2,4,3,1],[1,2,3,2],[1,0,1,1]],[[1,2,0,0],[3,3,3,1],[1,2,3,2],[1,0,1,1]],[[2,2,0,0],[2,3,3,1],[1,2,3,2],[1,0,1,1]],[[1,1,3,1],[1,2,3,2],[0,3,3,0],[1,1,1,1]],[[1,1,2,2],[1,2,3,2],[0,3,3,0],[1,1,1,1]],[[1,1,2,1],[1,2,4,2],[0,3,3,0],[1,1,1,1]],[[1,1,3,1],[1,2,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,2,2],[1,2,3,2],[0,3,3,0],[1,1,2,0]],[[1,1,2,1],[1,2,4,2],[0,3,3,0],[1,1,2,0]],[[1,1,3,1],[1,2,3,2],[0,3,3,0],[1,2,0,1]],[[1,1,2,2],[1,2,3,2],[0,3,3,0],[1,2,0,1]],[[1,1,2,1],[1,2,4,2],[0,3,3,0],[1,2,0,1]],[[1,1,3,1],[1,2,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,2,2],[1,2,3,2],[0,3,3,0],[1,2,1,0]],[[1,1,2,1],[1,2,4,2],[0,3,3,0],[1,2,1,0]],[[1,2,0,0],[2,4,3,1],[1,2,3,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,1],[1,2,3,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,1],[1,2,3,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,1],[1,2,3,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,1],[1,2,3,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,1],[1,2,3,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,1],[1,2,3,2],[0,1,2,0]],[[1,2,0,0],[3,3,3,1],[1,2,3,2],[0,1,2,0]],[[2,2,0,0],[2,3,3,1],[1,2,3,2],[0,1,2,0]],[[1,2,0,0],[2,4,3,1],[1,2,3,2],[0,1,1,1]],[[1,2,0,0],[3,3,3,1],[1,2,3,2],[0,1,1,1]],[[2,2,0,0],[2,3,3,1],[1,2,3,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,1],[1,2,3,2],[0,0,2,1]],[[1,2,0,0],[3,3,3,1],[1,2,3,2],[0,0,2,1]],[[2,2,0,0],[2,3,3,1],[1,2,3,2],[0,0,2,1]],[[1,2,0,0],[2,4,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,3,1],[1,2,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,3,1],[1,2,3,1],[1,1,1,1]],[[1,2,0,0],[2,4,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,0,0],[3,3,3,1],[1,2,3,1],[1,0,2,1]],[[2,2,0,0],[2,3,3,1],[1,2,3,1],[1,0,2,1]],[[1,2,0,0],[2,4,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,3,1],[1,2,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,3,1],[1,2,3,1],[0,2,1,1]],[[1,2,0,0],[2,4,3,1],[1,2,3,1],[0,1,2,1]],[[1,2,0,0],[3,3,3,1],[1,2,3,1],[0,1,2,1]],[[2,2,0,0],[2,3,3,1],[1,2,3,1],[0,1,2,1]],[[1,2,0,0],[2,4,3,1],[1,1,3,2],[0,2,2,0]],[[1,2,0,0],[3,3,3,1],[1,1,3,2],[0,2,2,0]],[[2,2,0,0],[2,3,3,1],[1,1,3,2],[0,2,2,0]],[[1,2,0,0],[2,4,3,1],[1,1,3,2],[0,2,1,1]],[[1,2,0,0],[3,3,3,1],[1,1,3,2],[0,2,1,1]],[[2,2,0,0],[2,3,3,1],[1,1,3,2],[0,2,1,1]],[[1,2,0,0],[2,4,3,1],[1,1,3,1],[0,2,2,1]],[[1,2,0,0],[3,3,3,1],[1,1,3,1],[0,2,2,1]],[[2,2,0,0],[2,3,3,1],[1,1,3,1],[0,2,2,1]],[[1,2,0,0],[2,4,3,1],[1,0,3,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,1],[1,0,3,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,1],[1,0,3,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,1],[1,0,3,2],[1,2,1,1]],[[1,2,0,0],[3,3,3,1],[1,0,3,2],[1,2,1,1]],[[2,2,0,0],[2,3,3,1],[1,0,3,2],[1,2,1,1]],[[1,2,0,0],[2,4,3,1],[1,0,3,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,1],[1,0,3,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,1],[1,0,3,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[0,4,3,2],[1,2,0,0]],[[1,2,0,0],[2,4,3,1],[0,3,3,2],[1,2,0,0]],[[1,2,0,0],[3,3,3,1],[0,3,3,2],[1,2,0,0]],[[2,2,0,0],[2,3,3,1],[0,3,3,2],[1,2,0,0]],[[1,2,0,0],[2,3,3,1],[0,3,2,2],[1,3,1,0]],[[1,2,0,0],[2,3,3,1],[0,3,2,2],[2,2,1,0]],[[1,2,0,0],[2,3,3,1],[0,4,2,2],[1,2,1,0]],[[1,2,0,0],[2,4,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,0,0],[3,3,3,1],[0,3,2,2],[1,2,1,0]],[[2,2,0,0],[2,3,3,1],[0,3,2,2],[1,2,1,0]],[[1,2,0,0],[2,3,3,1],[0,3,2,2],[1,3,0,1]],[[1,2,0,0],[2,3,3,1],[0,3,2,2],[2,2,0,1]],[[1,2,0,0],[2,3,3,1],[0,4,2,2],[1,2,0,1]],[[1,2,0,0],[2,4,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,0,0],[3,3,3,1],[0,3,2,2],[1,2,0,1]],[[2,2,0,0],[2,3,3,1],[0,3,2,2],[1,2,0,1]],[[1,2,0,0],[2,3,3,1],[0,4,2,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,1],[0,3,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,1],[0,3,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,1],[0,4,2,2],[1,1,1,1]],[[1,2,0,0],[2,4,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,0,0],[3,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,1,3,1],[1,2,3,2],[1,2,3,0],[0,2,2,0]],[[1,1,2,2],[1,2,3,2],[1,2,3,0],[0,2,2,0]],[[1,1,2,1],[1,2,4,2],[1,2,3,0],[0,2,2,0]],[[2,2,0,0],[2,3,3,1],[0,3,2,2],[1,1,1,1]],[[1,2,0,0],[2,3,3,1],[0,3,2,1],[1,3,1,1]],[[1,2,0,0],[2,3,3,1],[0,3,2,1],[2,2,1,1]],[[1,2,0,0],[2,3,3,1],[0,4,2,1],[1,2,1,1]],[[1,2,0,0],[2,4,3,1],[0,3,2,1],[1,2,1,1]],[[1,2,0,0],[3,3,3,1],[0,3,2,1],[1,2,1,1]],[[2,2,0,0],[2,3,3,1],[0,3,2,1],[1,2,1,1]],[[1,2,0,0],[2,3,3,1],[0,4,2,1],[1,1,2,1]],[[1,2,0,0],[2,4,3,1],[0,3,2,1],[1,1,2,1]],[[1,2,0,0],[3,3,3,1],[0,3,2,1],[1,1,2,1]],[[2,2,0,0],[2,3,3,1],[0,3,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,3,1],[0,3,1,2],[1,2,3,0]],[[1,2,0,0],[2,3,3,1],[0,3,1,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,1],[0,3,1,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,1],[0,4,1,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,1],[0,3,1,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,1],[0,3,1,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,1],[0,3,1,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,1],[0,3,1,1],[1,2,2,2]],[[1,2,0,0],[2,3,3,1],[0,3,1,1],[1,2,3,1]],[[1,2,0,0],[2,3,3,1],[0,3,1,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,1],[0,3,1,1],[2,2,2,1]],[[1,2,0,0],[2,3,3,1],[0,4,1,1],[1,2,2,1]],[[1,2,0,0],[2,4,3,1],[0,3,1,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,1],[0,3,1,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,1],[0,3,1,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[0,3,0,2],[1,2,2,2]],[[1,2,0,0],[2,3,3,1],[0,3,0,2],[1,2,3,1]],[[1,2,0,0],[2,3,3,1],[0,3,0,2],[1,3,2,1]],[[1,2,0,0],[2,3,3,1],[0,3,0,2],[2,2,2,1]],[[1,2,0,0],[2,3,3,1],[0,3,0,3],[1,2,2,1]],[[1,2,0,0],[2,3,3,1],[0,4,0,2],[1,2,2,1]],[[1,2,0,0],[2,4,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,0,0],[3,3,3,1],[0,3,0,2],[1,2,2,1]],[[2,2,0,0],[2,3,3,1],[0,3,0,2],[1,2,2,1]],[[1,2,0,0],[2,4,3,1],[0,2,3,2],[1,2,1,0]],[[1,2,0,0],[3,3,3,1],[0,2,3,2],[1,2,1,0]],[[2,2,0,0],[2,3,3,1],[0,2,3,2],[1,2,1,0]],[[1,2,0,0],[2,4,3,1],[0,2,3,2],[1,2,0,1]],[[1,2,0,0],[3,3,3,1],[0,2,3,2],[1,2,0,1]],[[2,2,0,0],[2,3,3,1],[0,2,3,2],[1,2,0,1]],[[1,2,0,0],[2,4,3,1],[0,2,3,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,1],[0,2,3,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,1],[0,2,3,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,1],[0,2,3,2],[1,1,1,1]],[[1,2,0,0],[3,3,3,1],[0,2,3,2],[1,1,1,1]],[[2,2,0,0],[2,3,3,1],[0,2,3,2],[1,1,1,1]],[[1,2,0,0],[2,4,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,3,1],[0,2,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,3,1],[0,2,3,1],[1,2,1,1]],[[1,2,0,0],[2,4,3,1],[0,2,3,1],[1,1,2,1]],[[1,2,0,0],[3,3,3,1],[0,2,3,1],[1,1,2,1]],[[2,2,0,0],[2,3,3,1],[0,2,3,1],[1,1,2,1]],[[1,2,0,0],[2,4,3,1],[0,1,3,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,1],[0,1,3,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,1],[0,1,3,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,1],[0,1,3,2],[1,2,1,1]],[[1,2,0,0],[3,3,3,1],[0,1,3,2],[1,2,1,1]],[[2,2,0,0],[2,3,3,1],[0,1,3,2],[1,2,1,1]],[[1,2,0,0],[2,4,3,1],[0,1,3,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,1],[0,1,3,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,1],[0,1,3,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,0],[3,3,3,2],[1,0,1,0]],[[1,2,0,0],[2,4,3,0],[2,3,3,2],[1,0,1,0]],[[1,2,0,0],[3,3,3,0],[2,3,3,2],[1,0,1,0]],[[2,2,0,0],[2,3,3,0],[2,3,3,2],[1,0,1,0]],[[1,2,0,0],[2,3,3,0],[3,3,3,2],[1,0,0,1]],[[1,2,0,0],[2,4,3,0],[2,3,3,2],[1,0,0,1]],[[1,2,0,0],[3,3,3,0],[2,3,3,2],[1,0,0,1]],[[2,2,0,0],[2,3,3,0],[2,3,3,2],[1,0,0,1]],[[1,2,0,0],[2,3,3,0],[3,3,3,1],[1,0,1,1]],[[1,2,0,0],[2,4,3,0],[2,3,3,1],[1,0,1,1]],[[1,2,0,0],[3,3,3,0],[2,3,3,1],[1,0,1,1]],[[2,2,0,0],[2,3,3,0],[2,3,3,1],[1,0,1,1]],[[1,1,3,1],[1,2,3,2],[1,3,3,0],[0,1,1,1]],[[1,1,2,2],[1,2,3,2],[1,3,3,0],[0,1,1,1]],[[1,1,2,1],[1,2,4,2],[1,3,3,0],[0,1,1,1]],[[1,1,3,1],[1,2,3,2],[1,3,3,0],[0,1,2,0]],[[1,1,2,2],[1,2,3,2],[1,3,3,0],[0,1,2,0]],[[1,1,2,1],[1,2,4,2],[1,3,3,0],[0,1,2,0]],[[1,1,3,1],[1,2,3,2],[1,3,3,0],[0,2,0,1]],[[1,1,2,2],[1,2,3,2],[1,3,3,0],[0,2,0,1]],[[1,1,2,1],[1,2,4,2],[1,3,3,0],[0,2,0,1]],[[1,1,3,1],[1,2,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,2,2],[1,2,3,2],[1,3,3,0],[0,2,1,0]],[[1,1,2,1],[1,2,4,2],[1,3,3,0],[0,2,1,0]],[[1,1,3,1],[1,2,3,2],[1,3,3,0],[1,0,1,1]],[[1,1,2,2],[1,2,3,2],[1,3,3,0],[1,0,1,1]],[[1,1,2,1],[1,2,4,2],[1,3,3,0],[1,0,1,1]],[[1,1,3,1],[1,2,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,2,2],[1,2,3,2],[1,3,3,0],[1,0,2,0]],[[1,1,2,1],[1,2,4,2],[1,3,3,0],[1,0,2,0]],[[1,1,3,1],[1,2,3,2],[1,3,3,0],[1,1,0,1]],[[1,1,2,2],[1,2,3,2],[1,3,3,0],[1,1,0,1]],[[1,1,2,1],[1,2,4,2],[1,3,3,0],[1,1,0,1]],[[1,1,3,1],[1,2,3,2],[1,3,3,0],[1,1,1,0]],[[1,1,2,2],[1,2,3,2],[1,3,3,0],[1,1,1,0]],[[1,1,2,1],[1,2,4,2],[1,3,3,0],[1,1,1,0]],[[1,2,0,0],[2,3,3,0],[2,3,1,0],[1,3,2,1]],[[1,2,0,0],[2,3,3,0],[2,3,1,0],[2,2,2,1]],[[1,2,0,0],[2,3,3,0],[3,3,1,0],[1,2,2,1]],[[1,2,0,0],[3,3,3,0],[2,3,1,0],[1,2,2,1]],[[2,2,0,0],[2,3,3,0],[2,3,1,0],[1,2,2,1]],[[1,2,0,0],[2,3,3,0],[2,3,0,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,0],[2,3,0,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,0],[3,3,0,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,0],[2,3,0,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,0],[2,3,0,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,0],[2,3,0,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,0],[2,3,0,1],[2,2,2,1]],[[1,2,0,0],[2,3,3,0],[3,3,0,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,0],[2,3,0,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,0],[2,3,0,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,0],[2,2,3,2],[2,2,0,0]],[[1,2,0,0],[2,3,3,0],[3,2,3,2],[1,2,0,0]],[[1,2,0,0],[2,4,3,0],[2,2,3,2],[1,2,0,0]],[[1,2,0,0],[3,3,3,0],[2,2,3,2],[1,2,0,0]],[[2,2,0,0],[2,3,3,0],[2,2,3,2],[1,2,0,0]],[[1,2,0,0],[2,3,3,0],[2,2,3,2],[2,1,1,0]],[[1,2,0,0],[2,3,3,0],[3,2,3,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,0],[2,2,3,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,0],[2,2,3,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,0],[2,2,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,3,0],[2,2,3,2],[2,1,0,1]],[[1,2,0,0],[2,3,3,0],[3,2,3,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,0],[2,2,3,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,0],[2,2,3,2],[1,1,0,1]],[[2,2,0,0],[2,3,3,0],[2,2,3,2],[1,1,0,1]],[[1,2,0,0],[2,3,3,0],[2,2,3,2],[2,0,2,0]],[[1,2,0,0],[2,3,3,0],[3,2,3,2],[1,0,2,0]],[[1,2,0,0],[2,4,3,0],[2,2,3,2],[1,0,2,0]],[[1,2,0,0],[3,3,3,0],[2,2,3,2],[1,0,2,0]],[[2,2,0,0],[2,3,3,0],[2,2,3,2],[1,0,2,0]],[[1,2,0,0],[2,3,3,0],[2,2,3,2],[2,0,1,1]],[[1,2,0,0],[2,3,3,0],[3,2,3,2],[1,0,1,1]],[[1,2,0,0],[2,4,3,0],[2,2,3,2],[1,0,1,1]],[[1,2,0,0],[3,3,3,0],[2,2,3,2],[1,0,1,1]],[[2,2,0,0],[2,3,3,0],[2,2,3,2],[1,0,1,1]],[[1,2,0,0],[2,3,3,0],[3,2,3,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,0],[2,2,3,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,0],[2,2,3,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,0],[2,2,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,0],[3,2,3,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,0],[2,2,3,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,0],[2,2,3,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,0],[2,2,3,2],[0,2,0,1]],[[1,2,0,0],[2,3,3,0],[3,2,3,2],[0,1,2,0]],[[1,2,0,0],[2,4,3,0],[2,2,3,2],[0,1,2,0]],[[1,2,0,0],[3,3,3,0],[2,2,3,2],[0,1,2,0]],[[2,2,0,0],[2,3,3,0],[2,2,3,2],[0,1,2,0]],[[1,2,0,0],[2,3,3,0],[3,2,3,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,0],[2,2,3,2],[0,1,1,1]],[[1,2,0,0],[3,3,3,0],[2,2,3,2],[0,1,1,1]],[[2,2,0,0],[2,3,3,0],[2,2,3,2],[0,1,1,1]],[[1,2,0,0],[2,3,3,0],[2,2,3,1],[2,2,0,1]],[[1,2,0,0],[2,3,3,0],[3,2,3,1],[1,2,0,1]],[[1,2,0,0],[2,4,3,0],[2,2,3,1],[1,2,0,1]],[[1,2,0,0],[3,3,3,0],[2,2,3,1],[1,2,0,1]],[[2,2,0,0],[2,3,3,0],[2,2,3,1],[1,2,0,1]],[[1,2,0,0],[2,3,3,0],[2,2,3,1],[2,1,1,1]],[[1,2,0,0],[2,3,3,0],[3,2,3,1],[1,1,1,1]],[[1,2,0,0],[2,4,3,0],[2,2,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,3,0],[2,2,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,3,0],[2,2,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,3,0],[2,2,3,1],[2,0,2,1]],[[1,2,0,0],[2,3,3,0],[3,2,3,1],[1,0,2,1]],[[1,2,0,0],[2,4,3,0],[2,2,3,1],[1,0,2,1]],[[1,2,0,0],[3,3,3,0],[2,2,3,1],[1,0,2,1]],[[2,2,0,0],[2,3,3,0],[2,2,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,3,0],[3,2,3,1],[0,2,1,1]],[[1,2,0,0],[2,4,3,0],[2,2,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,3,0],[2,2,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,3,0],[2,2,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,3,0],[3,2,3,1],[0,1,2,1]],[[1,2,0,0],[2,4,3,0],[2,2,3,1],[0,1,2,1]],[[1,2,0,0],[3,3,3,0],[2,2,3,1],[0,1,2,1]],[[2,2,0,0],[2,3,3,0],[2,2,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,3,0],[2,2,3,0],[2,1,2,1]],[[1,2,0,0],[2,3,3,0],[3,2,3,0],[1,1,2,1]],[[1,2,0,0],[2,4,3,0],[2,2,3,0],[1,1,2,1]],[[1,2,0,0],[3,3,3,0],[2,2,3,0],[1,1,2,1]],[[2,2,0,0],[2,3,3,0],[2,2,3,0],[1,1,2,1]],[[1,2,0,0],[2,3,3,0],[3,2,3,0],[0,2,2,1]],[[1,2,0,0],[2,4,3,0],[2,2,3,0],[0,2,2,1]],[[1,2,0,0],[3,3,3,0],[2,2,3,0],[0,2,2,1]],[[2,2,0,0],[2,3,3,0],[2,2,3,0],[0,2,2,1]],[[1,2,0,0],[2,3,3,0],[2,2,2,2],[2,1,2,0]],[[1,2,0,0],[2,3,3,0],[3,2,2,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,0],[2,2,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,0],[2,2,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,0],[2,2,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,0],[3,2,2,2],[0,2,2,0]],[[1,2,0,0],[2,4,3,0],[2,2,2,2],[0,2,2,0]],[[1,2,0,0],[3,3,3,0],[2,2,2,2],[0,2,2,0]],[[2,2,0,0],[2,3,3,0],[2,2,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,3,0],[2,2,2,1],[2,1,2,1]],[[1,2,0,0],[2,3,3,0],[3,2,2,1],[1,1,2,1]],[[1,2,0,0],[2,4,3,0],[2,2,2,1],[1,1,2,1]],[[1,2,0,0],[3,3,3,0],[2,2,2,1],[1,1,2,1]],[[2,2,0,0],[2,3,3,0],[2,2,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,3,0],[3,2,2,1],[0,2,2,1]],[[1,2,0,0],[2,4,3,0],[2,2,2,1],[0,2,2,1]],[[1,2,0,0],[3,3,3,0],[2,2,2,1],[0,2,2,1]],[[2,2,0,0],[2,3,3,0],[2,2,2,1],[0,2,2,1]],[[1,2,0,0],[2,3,3,0],[2,1,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,3,0],[2,1,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,3,0],[3,1,3,2],[1,2,1,0]],[[1,2,0,0],[2,4,3,0],[2,1,3,2],[1,2,1,0]],[[1,2,0,0],[3,3,3,0],[2,1,3,2],[1,2,1,0]],[[2,2,0,0],[2,3,3,0],[2,1,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,3,0],[2,1,3,2],[1,3,0,1]],[[1,2,0,0],[2,3,3,0],[2,1,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,3,0],[3,1,3,2],[1,2,0,1]],[[1,2,0,0],[2,4,3,0],[2,1,3,2],[1,2,0,1]],[[1,2,0,0],[3,3,3,0],[2,1,3,2],[1,2,0,1]],[[2,2,0,0],[2,3,3,0],[2,1,3,2],[1,2,0,1]],[[1,2,0,0],[2,3,3,0],[2,1,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,3,0],[2,1,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,3,0],[3,1,3,1],[1,2,1,1]],[[1,2,0,0],[2,4,3,0],[2,1,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,3,0],[2,1,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,3,0],[2,1,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,3,0],[2,1,3,0],[1,2,3,1]],[[1,2,0,0],[2,3,3,0],[2,1,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,3,0],[2,1,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,3,0],[3,1,3,0],[1,2,2,1]],[[1,2,0,0],[2,4,3,0],[2,1,3,0],[1,2,2,1]],[[1,2,0,0],[3,3,3,0],[2,1,3,0],[1,2,2,1]],[[2,2,0,0],[2,3,3,0],[2,1,3,0],[1,2,2,1]],[[1,2,0,0],[2,3,3,0],[2,1,2,2],[1,2,3,0]],[[1,2,0,0],[2,3,3,0],[2,1,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,0],[2,1,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,0],[3,1,2,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,0],[2,1,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,0],[2,1,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,0],[2,1,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,0],[2,1,2,1],[1,2,2,2]],[[1,2,0,0],[2,3,3,0],[2,1,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,3,0],[2,1,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,0],[2,1,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,3,0],[3,1,2,1],[1,2,2,1]],[[1,2,0,0],[2,4,3,0],[2,1,2,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,0],[2,1,2,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,0],[2,1,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,0],[2,0,3,2],[1,2,3,0]],[[1,2,0,0],[2,3,3,0],[2,0,3,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,0],[2,0,3,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,0],[2,0,4,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,0],[3,0,3,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,0],[2,0,3,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,0],[2,0,3,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,0],[2,0,3,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,0],[2,0,3,1],[1,2,2,2]],[[1,2,0,0],[2,3,3,0],[2,0,3,1],[1,2,3,1]],[[1,2,0,0],[2,3,3,0],[2,0,3,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,0],[2,0,3,1],[2,2,2,1]],[[1,2,0,0],[2,3,3,0],[2,0,4,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,0],[3,0,3,1],[1,2,2,1]],[[1,2,0,0],[2,4,3,0],[2,0,3,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,0],[2,0,3,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,0],[2,0,3,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,2],[1,2,0,0]],[[1,2,0,0],[2,4,3,0],[1,3,3,2],[1,2,0,0]],[[1,2,0,0],[3,3,3,0],[1,3,3,2],[1,2,0,0]],[[2,2,0,0],[2,3,3,0],[1,3,3,2],[1,2,0,0]],[[1,2,0,0],[2,3,3,0],[1,3,4,2],[1,1,1,0]],[[1,2,0,0],[2,3,3,0],[1,4,3,2],[1,1,1,0]],[[1,2,0,0],[2,4,3,0],[1,3,3,2],[1,1,1,0]],[[1,2,0,0],[3,3,3,0],[1,3,3,2],[1,1,1,0]],[[2,2,0,0],[2,3,3,0],[1,3,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,3,0],[1,3,4,2],[1,1,0,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,2],[1,1,0,1]],[[1,2,0,0],[2,4,3,0],[1,3,3,2],[1,1,0,1]],[[1,2,0,0],[3,3,3,0],[1,3,3,2],[1,1,0,1]],[[2,2,0,0],[2,3,3,0],[1,3,3,2],[1,1,0,1]],[[1,2,0,0],[2,3,3,0],[1,3,3,2],[1,0,3,0]],[[1,2,0,0],[2,3,3,0],[1,3,4,2],[1,0,2,0]],[[1,2,0,0],[2,3,3,0],[1,4,3,2],[1,0,2,0]],[[1,2,0,0],[2,4,3,0],[1,3,3,2],[1,0,2,0]],[[1,2,0,0],[3,3,3,0],[1,3,3,2],[1,0,2,0]],[[2,2,0,0],[2,3,3,0],[1,3,3,2],[1,0,2,0]],[[1,2,0,0],[2,3,3,0],[1,3,4,2],[1,0,1,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,2],[1,0,1,1]],[[1,2,0,0],[2,4,3,0],[1,3,3,2],[1,0,1,1]],[[1,2,0,0],[3,3,3,0],[1,3,3,2],[1,0,1,1]],[[2,2,0,0],[2,3,3,0],[1,3,3,2],[1,0,1,1]],[[1,2,0,0],[2,3,3,0],[1,3,3,2],[0,3,1,0]],[[1,2,0,0],[2,3,3,0],[1,3,4,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,0],[1,4,3,2],[0,2,1,0]],[[1,2,0,0],[2,4,3,0],[1,3,3,2],[0,2,1,0]],[[1,2,0,0],[3,3,3,0],[1,3,3,2],[0,2,1,0]],[[2,2,0,0],[2,3,3,0],[1,3,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,3,0],[1,3,3,2],[0,3,0,1]],[[1,2,0,0],[2,3,3,0],[1,3,4,2],[0,2,0,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,2],[0,2,0,1]],[[1,2,0,0],[2,4,3,0],[1,3,3,2],[0,2,0,1]],[[1,2,0,0],[3,3,3,0],[1,3,3,2],[0,2,0,1]],[[2,2,0,0],[2,3,3,0],[1,3,3,2],[0,2,0,1]],[[1,2,0,0],[2,3,3,0],[1,3,3,2],[0,1,3,0]],[[1,2,0,0],[2,3,3,0],[1,3,4,2],[0,1,2,0]],[[1,2,0,0],[2,3,3,0],[1,4,3,2],[0,1,2,0]],[[1,2,0,0],[2,4,3,0],[1,3,3,2],[0,1,2,0]],[[1,2,0,0],[3,3,3,0],[1,3,3,2],[0,1,2,0]],[[2,2,0,0],[2,3,3,0],[1,3,3,2],[0,1,2,0]],[[1,2,0,0],[2,3,3,0],[1,3,4,2],[0,1,1,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,2],[0,1,1,1]],[[1,2,0,0],[2,4,3,0],[1,3,3,2],[0,1,1,1]],[[1,2,0,0],[3,3,3,0],[1,3,3,2],[0,1,1,1]],[[2,2,0,0],[2,3,3,0],[1,3,3,2],[0,1,1,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,1],[1,2,0,1]],[[1,2,0,0],[2,4,3,0],[1,3,3,1],[1,2,0,1]],[[1,2,0,0],[3,3,3,0],[1,3,3,1],[1,2,0,1]],[[2,2,0,0],[2,3,3,0],[1,3,3,1],[1,2,0,1]],[[1,2,0,0],[2,3,3,0],[1,3,4,1],[1,1,1,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,1],[1,1,1,1]],[[1,2,0,0],[2,4,3,0],[1,3,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,3,0],[1,3,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,3,0],[1,3,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,3,0],[1,3,3,1],[1,0,2,2]],[[1,2,0,0],[2,3,3,0],[1,3,3,1],[1,0,3,1]],[[1,2,0,0],[2,3,3,0],[1,3,4,1],[1,0,2,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,1],[1,0,2,1]],[[1,2,0,0],[2,4,3,0],[1,3,3,1],[1,0,2,1]],[[1,2,0,0],[3,3,3,0],[1,3,3,1],[1,0,2,1]],[[2,2,0,0],[2,3,3,0],[1,3,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,3,0],[1,3,3,1],[0,3,1,1]],[[1,2,0,0],[2,3,3,0],[1,3,4,1],[0,2,1,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,1],[0,2,1,1]],[[1,2,0,0],[2,4,3,0],[1,3,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,3,0],[1,3,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,3,0],[1,3,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,3,0],[1,3,3,1],[0,1,2,2]],[[1,2,0,0],[2,3,3,0],[1,3,3,1],[0,1,3,1]],[[1,2,0,0],[2,3,3,0],[1,3,4,1],[0,1,2,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,1],[0,1,2,1]],[[1,2,0,0],[2,4,3,0],[1,3,3,1],[0,1,2,1]],[[1,2,0,0],[3,3,3,0],[1,3,3,1],[0,1,2,1]],[[2,2,0,0],[2,3,3,0],[1,3,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,0],[1,1,2,1]],[[1,2,0,0],[2,4,3,0],[1,3,3,0],[1,1,2,1]],[[1,2,0,0],[3,3,3,0],[1,3,3,0],[1,1,2,1]],[[2,2,0,0],[2,3,3,0],[1,3,3,0],[1,1,2,1]],[[1,2,0,0],[2,3,3,0],[1,3,3,0],[0,2,3,1]],[[1,2,0,0],[2,3,3,0],[1,3,3,0],[0,3,2,1]],[[1,2,0,0],[2,3,3,0],[1,4,3,0],[0,2,2,1]],[[1,2,0,0],[2,4,3,0],[1,3,3,0],[0,2,2,1]],[[1,2,0,0],[3,3,3,0],[1,3,3,0],[0,2,2,1]],[[2,2,0,0],[2,3,3,0],[1,3,3,0],[0,2,2,1]],[[1,2,0,0],[2,3,3,0],[1,4,2,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,0],[1,3,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,0],[1,3,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,0],[1,3,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,0],[1,3,2,2],[0,2,3,0]],[[1,2,0,0],[2,3,3,0],[1,3,2,2],[0,3,2,0]],[[1,2,0,0],[2,3,3,0],[1,4,2,2],[0,2,2,0]],[[1,2,0,0],[2,4,3,0],[1,3,2,2],[0,2,2,0]],[[1,2,0,0],[3,3,3,0],[1,3,2,2],[0,2,2,0]],[[2,2,0,0],[2,3,3,0],[1,3,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,3,0],[1,4,2,1],[1,1,2,1]],[[1,2,0,0],[2,4,3,0],[1,3,2,1],[1,1,2,1]],[[1,2,0,0],[3,3,3,0],[1,3,2,1],[1,1,2,1]],[[2,2,0,0],[2,3,3,0],[1,3,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,3,0],[1,3,2,1],[0,2,2,2]],[[1,2,0,0],[2,3,3,0],[1,3,2,1],[0,2,3,1]],[[1,2,0,0],[2,3,3,0],[1,3,2,1],[0,3,2,1]],[[1,2,0,0],[2,3,3,0],[1,4,2,1],[0,2,2,1]],[[1,2,0,0],[2,4,3,0],[1,3,2,1],[0,2,2,1]],[[1,2,0,0],[3,3,3,0],[1,3,2,1],[0,2,2,1]],[[2,2,0,0],[2,3,3,0],[1,3,2,1],[0,2,2,1]],[[1,2,0,0],[2,3,3,0],[1,2,3,2],[0,2,3,0]],[[1,2,0,0],[2,3,3,0],[1,2,3,2],[0,3,2,0]],[[1,2,0,0],[2,3,3,0],[1,2,4,2],[0,2,2,0]],[[1,2,0,0],[2,3,3,0],[1,2,3,1],[0,2,2,2]],[[1,2,0,0],[2,3,3,0],[1,2,3,1],[0,2,3,1]],[[1,2,0,0],[2,3,3,0],[1,2,3,1],[0,3,2,1]],[[1,2,0,0],[2,3,3,0],[1,2,4,1],[0,2,2,1]],[[1,2,0,0],[2,3,3,0],[0,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,3,0],[0,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,3,0],[0,3,4,2],[1,2,1,0]],[[1,2,0,0],[2,3,3,0],[0,4,3,2],[1,2,1,0]],[[1,2,0,0],[2,4,3,0],[0,3,3,2],[1,2,1,0]],[[1,2,0,0],[3,3,3,0],[0,3,3,2],[1,2,1,0]],[[2,2,0,0],[2,3,3,0],[0,3,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,3,0],[0,3,3,2],[1,3,0,1]],[[1,2,0,0],[2,3,3,0],[0,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,3,0],[0,3,4,2],[1,2,0,1]],[[1,2,0,0],[2,3,3,0],[0,4,3,2],[1,2,0,1]],[[1,2,0,0],[2,4,3,0],[0,3,3,2],[1,2,0,1]],[[1,2,0,0],[3,3,3,0],[0,3,3,2],[1,2,0,1]],[[2,2,0,0],[2,3,3,0],[0,3,3,2],[1,2,0,1]],[[1,2,0,0],[2,3,3,0],[0,3,3,2],[1,1,3,0]],[[1,2,0,0],[2,3,3,0],[0,3,4,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,0],[0,4,3,2],[1,1,2,0]],[[1,2,0,0],[2,4,3,0],[0,3,3,2],[1,1,2,0]],[[1,2,0,0],[3,3,3,0],[0,3,3,2],[1,1,2,0]],[[2,2,0,0],[2,3,3,0],[0,3,3,2],[1,1,2,0]],[[1,2,0,0],[2,3,3,0],[0,3,4,2],[1,1,1,1]],[[1,2,0,0],[2,3,3,0],[0,4,3,2],[1,1,1,1]],[[1,2,0,0],[2,4,3,0],[0,3,3,2],[1,1,1,1]],[[1,2,0,0],[3,3,3,0],[0,3,3,2],[1,1,1,1]],[[2,2,0,0],[2,3,3,0],[0,3,3,2],[1,1,1,1]],[[1,2,0,0],[2,3,3,0],[0,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,3,0],[0,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,3,0],[0,3,4,1],[1,2,1,1]],[[1,2,0,0],[2,3,3,0],[0,4,3,1],[1,2,1,1]],[[1,2,0,0],[2,4,3,0],[0,3,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,3,0],[0,3,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,3,0],[0,3,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,3,0],[0,3,3,1],[1,1,2,2]],[[1,2,0,0],[2,3,3,0],[0,3,3,1],[1,1,3,1]],[[1,2,0,0],[2,3,3,0],[0,3,4,1],[1,1,2,1]],[[1,2,0,0],[2,3,3,0],[0,4,3,1],[1,1,2,1]],[[1,2,0,0],[2,4,3,0],[0,3,3,1],[1,1,2,1]],[[1,2,0,0],[3,3,3,0],[0,3,3,1],[1,1,2,1]],[[2,2,0,0],[2,3,3,0],[0,3,3,1],[1,1,2,1]],[[1,2,0,0],[2,3,3,0],[0,3,3,0],[1,2,3,1]],[[1,2,0,0],[2,3,3,0],[0,3,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,3,0],[0,3,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,3,0],[0,4,3,0],[1,2,2,1]],[[1,2,0,0],[2,4,3,0],[0,3,3,0],[1,2,2,1]],[[1,2,0,0],[3,3,3,0],[0,3,3,0],[1,2,2,1]],[[2,2,0,0],[2,3,3,0],[0,3,3,0],[1,2,2,1]],[[1,2,0,0],[2,3,3,0],[0,3,2,2],[1,2,3,0]],[[1,2,0,0],[2,3,3,0],[0,3,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,0],[0,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,0],[0,4,2,2],[1,2,2,0]],[[1,2,0,0],[2,4,3,0],[0,3,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,3,0],[0,3,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,3,0],[0,3,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,0],[0,3,2,1],[1,2,2,2]],[[1,2,0,0],[2,3,3,0],[0,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,3,0],[0,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,0],[0,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,3,0],[0,4,2,1],[1,2,2,1]],[[1,2,0,0],[2,4,3,0],[0,3,2,1],[1,2,2,1]],[[1,2,0,0],[3,3,3,0],[0,3,2,1],[1,2,2,1]],[[2,2,0,0],[2,3,3,0],[0,3,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,3,0],[0,2,3,2],[1,2,3,0]],[[1,2,0,0],[2,3,3,0],[0,2,3,2],[1,3,2,0]],[[1,2,0,0],[2,3,3,0],[0,2,3,2],[2,2,2,0]],[[1,2,0,0],[2,3,3,0],[0,2,4,2],[1,2,2,0]],[[1,2,0,0],[2,3,3,0],[0,2,3,1],[1,2,2,2]],[[1,2,0,0],[2,3,3,0],[0,2,3,1],[1,2,3,1]],[[1,2,0,0],[2,3,3,0],[0,2,3,1],[1,3,2,1]],[[1,2,0,0],[2,3,3,0],[0,2,3,1],[2,2,2,1]],[[1,2,0,0],[2,3,3,0],[0,2,4,1],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[3,3,3,1],[1,0,1,0]],[[1,2,0,0],[2,4,2,2],[2,3,3,1],[1,0,1,0]],[[1,2,0,0],[3,3,2,2],[2,3,3,1],[1,0,1,0]],[[2,2,0,0],[2,3,2,2],[2,3,3,1],[1,0,1,0]],[[1,2,0,0],[2,3,2,2],[3,3,3,1],[1,0,0,1]],[[1,2,0,0],[2,4,2,2],[2,3,3,1],[1,0,0,1]],[[1,2,0,0],[3,3,2,2],[2,3,3,1],[1,0,0,1]],[[2,2,0,0],[2,3,2,2],[2,3,3,1],[1,0,0,1]],[[1,2,0,0],[2,3,2,2],[3,3,3,0],[1,0,1,1]],[[1,2,0,0],[2,4,2,2],[2,3,3,0],[1,0,1,1]],[[1,2,0,0],[3,3,2,2],[2,3,3,0],[1,0,1,1]],[[2,2,0,0],[2,3,2,2],[2,3,3,0],[1,0,1,1]],[[1,2,0,0],[2,3,2,2],[2,3,0,1],[1,3,2,0]],[[1,2,0,0],[2,3,2,2],[2,3,0,1],[2,2,2,0]],[[1,2,0,0],[2,3,2,2],[3,3,0,1],[1,2,2,0]],[[1,2,0,0],[3,3,2,2],[2,3,0,1],[1,2,2,0]],[[2,2,0,0],[2,3,2,2],[2,3,0,1],[1,2,2,0]],[[1,2,0,0],[2,3,2,2],[2,3,0,0],[1,3,2,1]],[[1,2,0,0],[2,3,2,2],[2,3,0,0],[2,2,2,1]],[[1,2,0,0],[2,3,2,2],[3,3,0,0],[1,2,2,1]],[[1,2,0,0],[3,3,2,2],[2,3,0,0],[1,2,2,1]],[[2,2,0,0],[2,3,2,2],[2,3,0,0],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[2,2,3,1],[2,2,0,0]],[[1,2,0,0],[2,3,2,2],[3,2,3,1],[1,2,0,0]],[[1,2,0,0],[2,4,2,2],[2,2,3,1],[1,2,0,0]],[[1,2,0,0],[3,3,2,2],[2,2,3,1],[1,2,0,0]],[[2,2,0,0],[2,3,2,2],[2,2,3,1],[1,2,0,0]],[[1,2,0,0],[2,3,2,2],[2,2,3,1],[2,1,1,0]],[[1,2,0,0],[2,3,2,2],[3,2,3,1],[1,1,1,0]],[[1,2,0,0],[2,4,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,0,0],[3,3,2,2],[2,2,3,1],[1,1,1,0]],[[2,2,0,0],[2,3,2,2],[2,2,3,1],[1,1,1,0]],[[1,2,0,0],[2,3,2,2],[2,2,3,1],[2,1,0,1]],[[1,2,0,0],[2,3,2,2],[3,2,3,1],[1,1,0,1]],[[1,2,0,0],[2,4,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,0,0],[3,3,2,2],[2,2,3,1],[1,1,0,1]],[[2,2,0,0],[2,3,2,2],[2,2,3,1],[1,1,0,1]],[[1,2,0,0],[2,3,2,2],[2,2,3,1],[2,0,2,0]],[[1,2,0,0],[2,3,2,2],[3,2,3,1],[1,0,2,0]],[[1,2,0,0],[2,4,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,0,0],[3,3,2,2],[2,2,3,1],[1,0,2,0]],[[2,2,0,0],[2,3,2,2],[2,2,3,1],[1,0,2,0]],[[1,2,0,0],[2,3,2,2],[2,2,3,1],[2,0,1,1]],[[1,2,0,0],[2,3,2,2],[3,2,3,1],[1,0,1,1]],[[1,2,0,0],[2,4,2,2],[2,2,3,1],[1,0,1,1]],[[1,2,0,0],[3,3,2,2],[2,2,3,1],[1,0,1,1]],[[2,2,0,0],[2,3,2,2],[2,2,3,1],[1,0,1,1]],[[1,2,0,0],[2,3,2,2],[3,2,3,1],[0,2,1,0]],[[1,2,0,0],[2,4,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,0,0],[3,3,2,2],[2,2,3,1],[0,2,1,0]],[[2,2,0,0],[2,3,2,2],[2,2,3,1],[0,2,1,0]],[[1,2,0,0],[2,3,2,2],[3,2,3,1],[0,2,0,1]],[[1,2,0,0],[2,4,2,2],[2,2,3,1],[0,2,0,1]],[[1,2,0,0],[3,3,2,2],[2,2,3,1],[0,2,0,1]],[[2,2,0,0],[2,3,2,2],[2,2,3,1],[0,2,0,1]],[[1,2,0,0],[2,3,2,2],[3,2,3,1],[0,1,2,0]],[[1,2,0,0],[2,4,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,0,0],[3,3,2,2],[2,2,3,1],[0,1,2,0]],[[2,2,0,0],[2,3,2,2],[2,2,3,1],[0,1,2,0]],[[1,2,0,0],[2,3,2,2],[3,2,3,1],[0,1,1,1]],[[1,2,0,0],[2,4,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,0,0],[3,3,2,2],[2,2,3,1],[0,1,1,1]],[[2,2,0,0],[2,3,2,2],[2,2,3,1],[0,1,1,1]],[[1,2,0,0],[2,3,2,2],[2,2,3,0],[2,2,0,1]],[[1,2,0,0],[2,3,2,2],[3,2,3,0],[1,2,0,1]],[[1,2,0,0],[2,4,2,2],[2,2,3,0],[1,2,0,1]],[[1,2,0,0],[3,3,2,2],[2,2,3,0],[1,2,0,1]],[[2,2,0,0],[2,3,2,2],[2,2,3,0],[1,2,0,1]],[[1,2,0,0],[2,3,2,2],[2,2,3,0],[2,1,1,1]],[[1,2,0,0],[2,3,2,2],[3,2,3,0],[1,1,1,1]],[[1,2,0,0],[2,4,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,0,0],[3,3,2,2],[2,2,3,0],[1,1,1,1]],[[2,2,0,0],[2,3,2,2],[2,2,3,0],[1,1,1,1]],[[1,2,0,0],[2,3,2,2],[2,2,3,0],[2,0,2,1]],[[1,2,0,0],[2,3,2,2],[3,2,3,0],[1,0,2,1]],[[1,2,0,0],[2,4,2,2],[2,2,3,0],[1,0,2,1]],[[1,2,0,0],[3,3,2,2],[2,2,3,0],[1,0,2,1]],[[2,2,0,0],[2,3,2,2],[2,2,3,0],[1,0,2,1]],[[1,2,0,0],[2,3,2,2],[3,2,3,0],[0,2,1,1]],[[1,2,0,0],[2,4,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,0,0],[3,3,2,2],[2,2,3,0],[0,2,1,1]],[[2,2,0,0],[2,3,2,2],[2,2,3,0],[0,2,1,1]],[[1,2,0,0],[2,3,2,2],[3,2,3,0],[0,1,2,1]],[[1,2,0,0],[2,4,2,2],[2,2,3,0],[0,1,2,1]],[[1,2,0,0],[3,3,2,2],[2,2,3,0],[0,1,2,1]],[[2,2,0,0],[2,3,2,2],[2,2,3,0],[0,1,2,1]],[[1,2,0,0],[2,3,2,2],[2,2,2,1],[2,1,2,0]],[[1,2,0,0],[2,3,2,2],[3,2,2,1],[1,1,2,0]],[[1,2,0,0],[2,4,2,2],[2,2,2,1],[1,1,2,0]],[[1,2,0,0],[3,3,2,2],[2,2,2,1],[1,1,2,0]],[[2,2,0,0],[2,3,2,2],[2,2,2,1],[1,1,2,0]],[[1,2,0,0],[2,3,2,2],[3,2,2,1],[0,2,2,0]],[[1,2,0,0],[2,4,2,2],[2,2,2,1],[0,2,2,0]],[[1,2,0,0],[3,3,2,2],[2,2,2,1],[0,2,2,0]],[[2,2,0,0],[2,3,2,2],[2,2,2,1],[0,2,2,0]],[[1,2,0,0],[2,3,2,2],[2,2,2,0],[2,1,2,1]],[[1,2,0,0],[2,3,2,2],[3,2,2,0],[1,1,2,1]],[[1,2,0,0],[2,4,2,2],[2,2,2,0],[1,1,2,1]],[[1,2,0,0],[3,3,2,2],[2,2,2,0],[1,1,2,1]],[[2,2,0,0],[2,3,2,2],[2,2,2,0],[1,1,2,1]],[[1,2,0,0],[2,3,2,2],[3,2,2,0],[0,2,2,1]],[[1,2,0,0],[2,4,2,2],[2,2,2,0],[0,2,2,1]],[[1,2,0,0],[3,3,2,2],[2,2,2,0],[0,2,2,1]],[[2,2,0,0],[2,3,2,2],[2,2,2,0],[0,2,2,1]],[[1,2,0,0],[2,3,2,2],[2,2,0,2],[2,1,2,1]],[[1,2,0,0],[2,3,2,2],[3,2,0,2],[1,1,2,1]],[[1,2,0,0],[2,4,2,2],[2,2,0,2],[1,1,2,1]],[[1,2,0,0],[3,3,2,2],[2,2,0,2],[1,1,2,1]],[[2,2,0,0],[2,3,2,2],[2,2,0,2],[1,1,2,1]],[[1,2,0,0],[2,3,2,2],[3,2,0,2],[0,2,2,1]],[[1,2,0,0],[2,4,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,0,0],[3,3,2,2],[2,2,0,2],[0,2,2,1]],[[2,2,0,0],[2,3,2,2],[2,2,0,2],[0,2,2,1]],[[1,2,0,0],[2,3,2,2],[2,1,3,1],[1,3,1,0]],[[1,2,0,0],[2,3,2,2],[2,1,3,1],[2,2,1,0]],[[1,2,0,0],[2,3,2,2],[3,1,3,1],[1,2,1,0]],[[1,2,0,0],[2,4,2,2],[2,1,3,1],[1,2,1,0]],[[1,2,0,0],[3,3,2,2],[2,1,3,1],[1,2,1,0]],[[2,2,0,0],[2,3,2,2],[2,1,3,1],[1,2,1,0]],[[1,2,0,0],[2,3,2,2],[2,1,3,1],[1,3,0,1]],[[1,2,0,0],[2,3,2,2],[2,1,3,1],[2,2,0,1]],[[1,2,0,0],[2,3,2,2],[3,1,3,1],[1,2,0,1]],[[1,2,0,0],[2,4,2,2],[2,1,3,1],[1,2,0,1]],[[1,2,0,0],[3,3,2,2],[2,1,3,1],[1,2,0,1]],[[2,2,0,0],[2,3,2,2],[2,1,3,1],[1,2,0,1]],[[1,2,0,0],[2,3,2,2],[2,1,3,0],[1,3,1,1]],[[1,2,0,0],[2,3,2,2],[2,1,3,0],[2,2,1,1]],[[1,2,0,0],[2,3,2,2],[3,1,3,0],[1,2,1,1]],[[1,2,0,0],[2,4,2,2],[2,1,3,0],[1,2,1,1]],[[1,2,0,0],[3,3,2,2],[2,1,3,0],[1,2,1,1]],[[2,2,0,0],[2,3,2,2],[2,1,3,0],[1,2,1,1]],[[1,2,0,0],[2,3,2,2],[2,1,2,1],[1,2,3,0]],[[1,2,0,0],[2,3,2,2],[2,1,2,1],[1,3,2,0]],[[1,2,0,0],[2,3,2,2],[2,1,2,1],[2,2,2,0]],[[1,2,0,0],[2,3,2,2],[3,1,2,1],[1,2,2,0]],[[1,2,0,0],[2,4,2,2],[2,1,2,1],[1,2,2,0]],[[1,2,0,0],[3,3,2,2],[2,1,2,1],[1,2,2,0]],[[2,2,0,0],[2,3,2,2],[2,1,2,1],[1,2,2,0]],[[1,2,0,0],[2,3,2,2],[2,1,2,0],[1,2,2,2]],[[1,2,0,0],[2,3,2,2],[2,1,2,0],[1,2,3,1]],[[1,2,0,0],[2,3,2,2],[2,1,2,0],[1,3,2,1]],[[1,2,0,0],[2,3,2,2],[2,1,2,0],[2,2,2,1]],[[1,2,0,0],[2,3,2,2],[3,1,2,0],[1,2,2,1]],[[1,2,0,0],[2,4,2,2],[2,1,2,0],[1,2,2,1]],[[1,2,0,0],[3,3,2,2],[2,1,2,0],[1,2,2,1]],[[2,2,0,0],[2,3,2,2],[2,1,2,0],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[2,1,0,2],[1,2,2,2]],[[1,2,0,0],[2,3,2,2],[2,1,0,2],[1,2,3,1]],[[1,2,0,0],[2,3,2,2],[2,1,0,2],[1,3,2,1]],[[1,2,0,0],[2,3,2,2],[2,1,0,2],[2,2,2,1]],[[1,2,0,0],[2,3,2,2],[2,1,0,3],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[3,1,0,2],[1,2,2,1]],[[1,2,0,0],[2,4,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,0,0],[3,3,2,2],[2,1,0,2],[1,2,2,1]],[[2,2,0,0],[2,3,2,2],[2,1,0,2],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[2,0,3,1],[1,2,3,0]],[[1,2,0,0],[2,3,2,2],[2,0,3,1],[1,3,2,0]],[[1,2,0,0],[2,3,2,2],[2,0,3,1],[2,2,2,0]],[[1,2,0,0],[2,3,2,2],[2,0,4,1],[1,2,2,0]],[[1,2,0,0],[2,3,2,2],[3,0,3,1],[1,2,2,0]],[[1,2,0,0],[2,4,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,0,0],[3,3,2,2],[2,0,3,1],[1,2,2,0]],[[2,2,0,0],[2,3,2,2],[2,0,3,1],[1,2,2,0]],[[1,2,0,0],[2,3,2,2],[2,0,3,0],[1,2,2,2]],[[1,2,0,0],[2,3,2,2],[2,0,3,0],[1,2,3,1]],[[1,2,0,0],[2,3,2,2],[2,0,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,2,2],[2,0,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,2,2],[2,0,4,0],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[3,0,3,0],[1,2,2,1]],[[1,2,0,0],[2,4,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,0,0],[3,3,2,2],[2,0,3,0],[1,2,2,1]],[[2,2,0,0],[2,3,2,2],[2,0,3,0],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[2,0,1,2],[1,2,2,2]],[[1,2,0,0],[2,3,2,2],[2,0,1,2],[1,2,3,1]],[[1,2,0,0],[2,3,2,2],[2,0,1,2],[1,3,2,1]],[[1,2,0,0],[2,3,2,2],[2,0,1,2],[2,2,2,1]],[[1,2,0,0],[2,3,2,2],[2,0,1,3],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[3,0,1,2],[1,2,2,1]],[[1,2,0,0],[2,4,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,0,0],[3,3,2,2],[2,0,1,2],[1,2,2,1]],[[2,2,0,0],[2,3,2,2],[2,0,1,2],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[1,4,3,1],[1,2,0,0]],[[1,2,0,0],[2,4,2,2],[1,3,3,1],[1,2,0,0]],[[1,2,0,0],[3,3,2,2],[1,3,3,1],[1,2,0,0]],[[2,2,0,0],[2,3,2,2],[1,3,3,1],[1,2,0,0]],[[1,2,0,0],[2,3,2,2],[1,3,4,1],[1,1,1,0]],[[1,2,0,0],[2,3,2,2],[1,4,3,1],[1,1,1,0]],[[1,2,0,0],[2,4,2,2],[1,3,3,1],[1,1,1,0]],[[1,2,0,0],[3,3,2,2],[1,3,3,1],[1,1,1,0]],[[2,2,0,0],[2,3,2,2],[1,3,3,1],[1,1,1,0]],[[1,2,0,0],[2,3,2,2],[1,3,4,1],[1,1,0,1]],[[1,2,0,0],[2,3,2,2],[1,4,3,1],[1,1,0,1]],[[1,2,0,0],[2,4,2,2],[1,3,3,1],[1,1,0,1]],[[1,2,0,0],[3,3,2,2],[1,3,3,1],[1,1,0,1]],[[2,2,0,0],[2,3,2,2],[1,3,3,1],[1,1,0,1]],[[1,2,0,0],[2,3,2,2],[1,3,3,1],[1,0,3,0]],[[1,2,0,0],[2,3,2,2],[1,3,4,1],[1,0,2,0]],[[1,2,0,0],[2,3,2,2],[1,4,3,1],[1,0,2,0]],[[1,2,0,0],[2,4,2,2],[1,3,3,1],[1,0,2,0]],[[1,2,0,0],[3,3,2,2],[1,3,3,1],[1,0,2,0]],[[2,2,0,0],[2,3,2,2],[1,3,3,1],[1,0,2,0]],[[1,2,0,0],[2,3,2,2],[1,3,4,1],[1,0,1,1]],[[1,2,0,0],[2,3,2,2],[1,4,3,1],[1,0,1,1]],[[1,2,0,0],[2,4,2,2],[1,3,3,1],[1,0,1,1]],[[1,2,0,0],[3,3,2,2],[1,3,3,1],[1,0,1,1]],[[2,2,0,0],[2,3,2,2],[1,3,3,1],[1,0,1,1]],[[1,2,0,0],[2,3,2,2],[1,3,3,1],[0,3,1,0]],[[1,2,0,0],[2,3,2,2],[1,3,4,1],[0,2,1,0]],[[1,2,0,0],[2,3,2,2],[1,4,3,1],[0,2,1,0]],[[1,2,0,0],[2,4,2,2],[1,3,3,1],[0,2,1,0]],[[1,2,0,0],[3,3,2,2],[1,3,3,1],[0,2,1,0]],[[2,2,0,0],[2,3,2,2],[1,3,3,1],[0,2,1,0]],[[1,2,0,0],[2,3,2,2],[1,3,3,1],[0,3,0,1]],[[1,2,0,0],[2,3,2,2],[1,3,4,1],[0,2,0,1]],[[1,2,0,0],[2,3,2,2],[1,4,3,1],[0,2,0,1]],[[1,2,0,0],[2,4,2,2],[1,3,3,1],[0,2,0,1]],[[1,2,0,0],[3,3,2,2],[1,3,3,1],[0,2,0,1]],[[2,2,0,0],[2,3,2,2],[1,3,3,1],[0,2,0,1]],[[1,2,0,0],[2,3,2,2],[1,3,3,1],[0,1,3,0]],[[1,2,0,0],[2,3,2,2],[1,3,4,1],[0,1,2,0]],[[1,2,0,0],[2,3,2,2],[1,4,3,1],[0,1,2,0]],[[1,2,0,0],[2,4,2,2],[1,3,3,1],[0,1,2,0]],[[1,2,0,0],[3,3,2,2],[1,3,3,1],[0,1,2,0]],[[2,2,0,0],[2,3,2,2],[1,3,3,1],[0,1,2,0]],[[1,2,0,0],[2,3,2,2],[1,3,4,1],[0,1,1,1]],[[1,2,0,0],[2,3,2,2],[1,4,3,1],[0,1,1,1]],[[1,2,0,0],[2,4,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,0,0],[1,4,3,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,0],[1,3,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,0],[1,3,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,0,0],[1,3,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,0,0],[1,3,3,1],[1,2,2,2]],[[1,1,2,1],[1,3,0,0],[1,4,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,0],[1,3,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,0],[1,3,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,0,0],[1,3,3,2],[1,2,3,0]],[[1,1,2,1],[1,3,0,0],[3,2,3,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,0],[2,2,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,0],[2,2,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,0,0],[2,2,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,0,0],[2,2,3,1],[1,2,2,2]],[[1,1,2,1],[1,3,0,0],[3,2,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,0],[2,2,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,0],[2,2,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,0,0],[2,2,3,2],[1,2,3,0]],[[1,1,2,1],[1,3,0,0],[3,3,3,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,0],[2,4,3,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,0],[2,3,3,1],[0,3,2,1]],[[1,1,2,1],[1,3,0,0],[2,3,3,1],[0,2,3,1]],[[1,1,2,1],[1,3,0,0],[2,3,3,1],[0,2,2,2]],[[1,1,2,1],[1,3,0,0],[3,3,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,0],[2,4,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,0],[2,3,3,1],[2,1,2,1]],[[1,1,2,1],[1,3,0,0],[3,3,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,0],[2,4,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,0],[2,3,3,2],[0,3,2,0]],[[1,1,2,1],[1,3,0,0],[2,3,3,2],[0,2,3,0]],[[1,1,2,1],[1,3,0,0],[3,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,0],[2,4,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,0],[2,3,3,2],[2,1,2,0]],[[1,2,0,0],[3,3,2,2],[1,3,3,1],[0,1,1,1]],[[2,2,0,0],[2,3,2,2],[1,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,0,1],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[1,3,0,1],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[1,3,0,1],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[1,3,0,1],[1,2,2,2],[1,2,2,2]],[[1,1,2,1],[1,3,0,1],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,1],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,0,1],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,0,1],[1,2,3,1],[1,2,2,2]],[[1,1,2,1],[1,3,0,1],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[1,3,0,1],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[1,3,0,1],[1,2,3,2],[1,2,1,2]],[[1,1,2,1],[1,3,0,1],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,1],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[1,3,0,1],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,1],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,0,1],[1,2,3,2],[1,2,3,0]],[[1,1,2,1],[1,4,0,1],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[1,3,1,3],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[1,3,0,1],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[1,3,0,1],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[1,3,0,1],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[1,4,0,1],[1,3,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,1],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[1,3,0,1],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[1,3,0,1],[1,3,2,1],[1,2,2,2]],[[1,1,2,1],[1,3,0,1],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[1,3,0,1],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[1,3,0,1],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[1,4,0,1],[1,3,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,1],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,1],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,1],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[1,3,0,1],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[1,4,0,1],[1,3,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,1],[1,4,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,1],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,1],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[1,3,0,1],[1,3,3,1],[1,1,2,2]],[[1,1,2,1],[1,4,0,1],[1,3,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,0,1],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,0,1],[1,3,4,1],[1,2,1,1]],[[1,1,2,1],[1,3,0,1],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[1,3,0,1],[1,3,3,1],[1,3,1,1]],[[1,1,2,1],[1,4,0,1],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,0,1],[1,4,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,0,1],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[1,3,0,1],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[1,3,0,1],[1,3,3,2],[1,1,1,2]],[[1,1,2,1],[1,4,0,1],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,1],[1,4,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,1],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,1],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[1,3,0,1],[1,3,3,2],[1,1,3,0]],[[1,1,2,1],[1,4,0,1],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,0,1],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,0,1],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[1,3,0,1],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[1,3,0,1],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[1,3,0,1],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[1,3,0,1],[1,3,3,2],[1,2,0,2]],[[1,1,2,1],[1,4,0,1],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,0,1],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,0,1],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[1,3,0,1],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[1,3,0,1],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[1,3,0,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,2],[1,4,3,0],[1,2,0,1]],[[1,2,0,0],[2,4,2,2],[1,3,3,0],[1,2,0,1]],[[1,2,0,0],[3,3,2,2],[1,3,3,0],[1,2,0,1]],[[2,2,0,0],[2,3,2,2],[1,3,3,0],[1,2,0,1]],[[1,1,2,1],[1,3,0,1],[3,1,2,2],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[1,3,0,1],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[1,3,0,1],[2,1,2,2],[1,2,2,2]],[[1,1,2,1],[1,3,0,1],[3,1,3,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,0,1],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,0,1],[2,1,3,1],[1,2,2,2]],[[1,1,2,1],[1,3,0,1],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[1,3,0,1],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[1,3,0,1],[2,1,3,2],[1,2,1,2]],[[1,1,2,1],[1,3,0,1],[3,1,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,0,1],[2,1,3,2],[1,2,3,0]],[[1,1,2,1],[1,3,0,1],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,2,1,3],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[1,3,0,1],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[1,3,0,1],[2,2,1,2],[1,2,2,2]],[[1,1,2,1],[1,3,0,1],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[1,3,0,1],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[1,3,0,1],[2,2,2,1],[1,2,2,2]],[[1,1,2,1],[1,3,0,1],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[1,3,0,1],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[1,3,0,1],[2,2,2,2],[0,2,2,2]],[[1,1,2,1],[1,3,0,1],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[1,3,0,1],[2,2,2,2],[1,2,3,0]],[[1,1,2,1],[1,3,0,1],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[1,3,0,1],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[1,3,0,1],[2,2,3,1],[0,2,2,2]],[[1,1,2,1],[1,3,0,1],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,0,1],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[1,3,0,1],[2,2,3,1],[1,3,1,1]],[[1,1,2,1],[1,3,0,1],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[1,3,0,1],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[1,3,0,1],[2,2,3,2],[0,2,1,2]],[[1,1,2,1],[1,3,0,1],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[1,3,0,1],[2,2,3,2],[0,2,3,0]],[[1,1,2,1],[1,3,0,1],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,0,1],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[1,3,0,1],[2,2,3,2],[1,3,0,1]],[[1,1,2,1],[1,3,0,1],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,0,1],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[1,3,0,1],[2,2,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,2],[1,3,4,0],[1,1,1,1]],[[1,1,2,1],[1,3,0,1],[3,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,0,2],[2,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,0,2],[1,3,2,1]],[[1,1,2,1],[1,3,0,1],[3,3,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,1,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,1,1],[1,3,2,1]],[[1,1,2,1],[1,4,0,1],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,0,1],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,1,3],[0,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[1,3,0,1],[2,3,1,2],[0,2,2,2]],[[1,1,2,1],[1,4,0,1],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,0,1],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,0,1],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,1,2],[2,1,2,1]],[[1,1,2,1],[1,3,0,1],[3,3,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,1,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,1,2],[1,3,2,0]],[[1,1,2,1],[1,4,0,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,1],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[1,3,0,1],[2,3,2,1],[0,2,2,2]],[[1,1,2,1],[1,4,0,1],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,1],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,1],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,2,1],[2,1,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[1,3,0,1],[2,3,2,2],[0,1,2,2]],[[1,1,2,1],[1,4,0,1],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,1],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,2,2],[0,2,3,0]],[[1,1,2,1],[1,3,0,1],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[1,3,0,1],[2,3,2,2],[1,0,2,2]],[[1,1,2,1],[1,4,0,1],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,1],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,1],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,0],[2,3,2,2],[1,4,3,0],[1,1,1,1]],[[1,2,0,0],[2,4,2,2],[1,3,3,0],[1,1,1,1]],[[1,2,0,0],[3,3,2,2],[1,3,3,0],[1,1,1,1]],[[2,2,0,0],[2,3,2,2],[1,3,3,0],[1,1,1,1]],[[1,2,0,0],[2,3,2,2],[1,3,3,0],[1,0,2,2]],[[1,2,0,0],[2,3,2,2],[1,3,3,0],[1,0,3,1]],[[1,2,0,0],[2,3,2,2],[1,3,4,0],[1,0,2,1]],[[1,2,0,0],[2,3,2,2],[1,4,3,0],[1,0,2,1]],[[1,1,2,1],[1,4,0,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,0,1],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,0,1],[2,4,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,1],[0,1,2,2]],[[1,1,2,1],[1,4,0,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,0,1],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,0,1],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,0,1],[2,3,4,1],[0,2,1,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,1],[0,3,1,1]],[[1,1,2,1],[1,4,0,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,0,1],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,0,1],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,1],[2,0,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,1],[1,0,2,2]],[[1,1,2,1],[1,4,0,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,0,1],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,0,1],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,0,1],[2,3,4,1],[1,1,1,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,1],[2,1,1,1]],[[1,1,2,1],[1,3,0,1],[3,3,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,0,1],[2,4,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,1],[2,2,0,1]],[[1,2,0,0],[2,4,2,2],[1,3,3,0],[1,0,2,1]],[[1,2,0,0],[3,3,2,2],[1,3,3,0],[1,0,2,1]],[[2,2,0,0],[2,3,2,2],[1,3,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[0,0,2,2]],[[1,1,2,1],[1,4,0,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,0,1],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,0,1],[2,4,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,0,1],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[0,1,1,2]],[[1,1,2,1],[1,4,0,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,0,1],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,0,1],[2,4,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[0,1,3,0]],[[1,1,2,1],[1,4,0,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,0,1],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,0,1],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,0,1],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[0,3,0,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[0,2,0,2]],[[1,1,2,1],[1,4,0,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,0,1],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,0,1],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,0,1],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[1,3,0,1],[2,3,3,3],[0,2,1,0]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[0,3,1,0]],[[1,2,0,0],[2,3,2,2],[1,3,3,0],[0,3,1,1]],[[1,2,0,0],[2,3,2,2],[1,3,4,0],[0,2,1,1]],[[1,2,0,0],[2,3,2,2],[1,4,3,0],[0,2,1,1]],[[1,2,0,0],[2,4,2,2],[1,3,3,0],[0,2,1,1]],[[1,2,0,0],[3,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,4,0,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,0,1],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,0,1],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,0,1],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[2,0,1,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[1,0,1,2]],[[1,1,2,1],[1,4,0,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,0,1],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,0,1],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[1,0,3,0]],[[1,1,2,1],[1,4,0,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,0,1],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,0,1],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,0,1],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[1,1,0,2]],[[1,1,2,1],[1,4,0,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,0,1],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,0,1],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,0,1],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[1,3,0,1],[2,3,3,3],[1,1,1,0]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[2,1,1,0]],[[2,2,0,0],[2,3,2,2],[1,3,3,0],[0,2,1,1]],[[1,2,0,0],[2,3,2,2],[1,3,3,0],[0,1,2,2]],[[1,2,0,0],[2,3,2,2],[1,3,3,0],[0,1,3,1]],[[1,2,0,0],[2,3,2,2],[1,3,4,0],[0,1,2,1]],[[1,2,0,0],[2,3,2,2],[1,4,3,0],[0,1,2,1]],[[1,2,0,0],[2,4,2,2],[1,3,3,0],[0,1,2,1]],[[1,2,0,0],[3,3,2,2],[1,3,3,0],[0,1,2,1]],[[2,2,0,0],[2,3,2,2],[1,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,4,0,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,0,1],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,0,1],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,0,1],[2,3,3,2],[2,2,0,0]],[[1,1,3,1],[1,3,0,2],[0,2,2,2],[1,2,2,1]],[[1,1,2,2],[1,3,0,2],[0,2,2,2],[1,2,2,1]],[[1,1,2,1],[1,3,0,3],[0,2,2,2],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,2,2,3],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,2,2,2],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,2,2,2],[1,3,2,1]],[[1,1,2,1],[1,3,0,2],[0,2,2,2],[1,2,3,1]],[[1,1,2,1],[1,3,0,2],[0,2,2,2],[1,2,2,2]],[[1,1,2,1],[1,3,0,2],[0,2,4,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,2,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,2,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,0,2],[0,2,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,0,2],[0,2,3,1],[1,2,2,2]],[[1,1,3,1],[1,3,0,2],[0,2,3,2],[1,2,1,1]],[[1,1,2,2],[1,3,0,2],[0,2,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,0,3],[0,2,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[0,2,4,2],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[0,2,3,3],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[0,2,3,2],[1,2,1,2]],[[1,1,3,1],[1,3,0,2],[0,2,3,2],[1,2,2,0]],[[1,1,2,2],[1,3,0,2],[0,2,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,3],[0,2,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[0,2,4,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[0,2,3,3],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[0,2,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,2],[0,2,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,0,2],[0,2,3,2],[1,2,3,0]],[[1,1,3,1],[1,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,2],[1,3,0,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[1,4,0,2],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,0,3],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,4,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,1,3],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,1,2],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,1,2],[1,3,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,1,2],[1,2,3,1]],[[1,1,2,1],[1,3,0,2],[0,3,1,2],[1,2,2,2]],[[1,1,2,1],[1,4,0,2],[0,3,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,4,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,2,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,2,1],[1,3,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,2,1],[1,2,3,1]],[[1,1,2,1],[1,3,0,2],[0,3,2,1],[1,2,2,2]],[[1,1,3,1],[1,3,0,2],[0,3,2,2],[1,1,2,1]],[[1,1,2,2],[1,3,0,2],[0,3,2,2],[1,1,2,1]],[[1,1,2,1],[1,3,0,3],[0,3,2,2],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,2,3],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,2,2],[1,1,3,1]],[[1,1,2,1],[1,3,0,2],[0,3,2,2],[1,1,2,2]],[[1,1,2,1],[1,4,0,2],[0,3,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[0,4,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[0,3,2,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,2],[0,3,2,2],[1,3,2,0]],[[1,1,2,1],[1,3,0,2],[0,3,2,2],[1,2,3,0]],[[1,1,2,1],[1,4,0,2],[0,3,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[0,4,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,4,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,1],[1,1,3,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,1],[1,1,2,2]],[[1,1,2,1],[1,4,0,2],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[0,4,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[0,3,4,1],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,1],[2,2,1,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,1],[1,3,1,1]],[[1,1,3,1],[1,3,0,2],[0,3,3,2],[1,0,2,1]],[[1,1,2,2],[1,3,0,2],[0,3,3,2],[1,0,2,1]],[[1,1,2,1],[1,3,0,3],[0,3,3,2],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,4,2],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,3],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,2],[1,0,2,2]],[[1,1,3,1],[1,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,1,2,2],[1,3,0,2],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,4,0,2],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,0,3],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,0,2],[0,4,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,0,2],[0,3,4,2],[1,1,1,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,3],[1,1,1,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,2],[1,1,1,2]],[[1,1,3,1],[1,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,1,2,2],[1,3,0,2],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,4,0,2],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,3],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[0,4,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[0,3,4,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[0,3,3,3],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[0,3,3,2],[1,1,3,0]],[[1,1,3,1],[1,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,1,2,2],[1,3,0,2],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,4,0,2],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,0,3],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[0,4,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[0,3,4,2],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,3],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,2],[2,2,0,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,2],[1,3,0,1]],[[1,1,2,1],[1,3,0,2],[0,3,3,2],[1,2,0,2]],[[1,1,3,1],[1,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,1,2,2],[1,3,0,2],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,4,0,2],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,0,3],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,0,2],[0,4,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,0,2],[0,3,4,2],[1,2,1,0]],[[1,1,2,1],[1,3,0,2],[0,3,3,3],[1,2,1,0]],[[1,1,2,1],[1,3,0,2],[0,3,3,2],[2,2,1,0]],[[1,1,2,1],[1,3,0,2],[0,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,2],[1,4,2,1],[1,1,2,0]],[[1,2,0,0],[2,4,2,2],[1,3,2,1],[1,1,2,0]],[[1,2,0,0],[3,3,2,2],[1,3,2,1],[1,1,2,0]],[[2,2,0,0],[2,3,2,2],[1,3,2,1],[1,1,2,0]],[[1,1,3,1],[1,3,0,2],[1,2,2,2],[0,2,2,1]],[[1,1,2,2],[1,3,0,2],[1,2,2,2],[0,2,2,1]],[[1,1,2,1],[1,3,0,3],[1,2,2,2],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,2,2,3],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,2,2,2],[0,3,2,1]],[[1,1,2,1],[1,3,0,2],[1,2,2,2],[0,2,3,1]],[[1,1,2,1],[1,3,0,2],[1,2,2,2],[0,2,2,2]],[[1,1,2,1],[1,3,0,2],[1,2,4,0],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,2,3,0],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,2,3,0],[1,3,2,1]],[[1,1,2,1],[1,3,0,2],[1,2,3,0],[1,2,3,1]],[[1,1,2,1],[1,3,0,2],[1,2,3,0],[1,2,2,2]],[[1,1,2,1],[1,3,0,2],[1,2,4,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,2,3,1],[0,3,2,1]],[[1,1,2,1],[1,3,0,2],[1,2,3,1],[0,2,3,1]],[[1,1,2,1],[1,3,0,2],[1,2,3,1],[0,2,2,2]],[[1,1,2,1],[1,3,0,2],[1,2,4,1],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,2,3,1],[2,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,2,3,1],[1,3,2,0]],[[1,1,2,1],[1,3,0,2],[1,2,3,1],[1,2,3,0]],[[1,1,3,1],[1,3,0,2],[1,2,3,2],[0,2,1,1]],[[1,1,2,2],[1,3,0,2],[1,2,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,0,3],[1,2,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,2,4,2],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,2,3,3],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,2,3,2],[0,2,1,2]],[[1,1,3,1],[1,3,0,2],[1,2,3,2],[0,2,2,0]],[[1,1,2,2],[1,3,0,2],[1,2,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,3],[1,2,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,2,4,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,2,3,3],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,2,3,2],[0,3,2,0]],[[1,1,2,1],[1,3,0,2],[1,2,3,2],[0,2,3,0]],[[1,2,0,0],[2,3,2,2],[1,3,2,1],[0,2,3,0]],[[1,2,0,0],[2,3,2,2],[1,3,2,1],[0,3,2,0]],[[1,2,0,0],[2,3,2,2],[1,4,2,1],[0,2,2,0]],[[1,2,0,0],[2,4,2,2],[1,3,2,1],[0,2,2,0]],[[1,2,0,0],[3,3,2,2],[1,3,2,1],[0,2,2,0]],[[2,2,0,0],[2,3,2,2],[1,3,2,1],[0,2,2,0]],[[1,1,2,1],[1,4,0,2],[1,3,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,4,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,1,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,1,1],[1,3,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,1,1],[1,2,3,1]],[[1,1,2,1],[1,3,0,2],[1,3,1,1],[1,2,2,2]],[[1,1,3,1],[1,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,1,2,2],[1,3,0,2],[1,3,1,2],[0,2,2,1]],[[1,1,2,1],[1,4,0,2],[1,3,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,0,3],[1,3,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,4,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,1,3],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,1,2],[0,3,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,1,2],[0,2,3,1]],[[1,1,2,1],[1,3,0,2],[1,3,1,2],[0,2,2,2]],[[1,1,2,1],[1,4,0,2],[1,3,1,2],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,4,1,2],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,1,2],[2,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,1,2],[1,3,1,1]],[[1,1,2,1],[1,4,0,2],[1,3,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,4,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,1,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,1,2],[1,3,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,1,2],[1,2,3,0]],[[1,1,2,1],[1,4,0,2],[1,3,2,0],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,4,2,0],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,0],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,0],[1,3,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,0],[1,2,3,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,0],[1,2,2,2]],[[1,1,2,1],[1,4,0,2],[1,3,2,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,4,2,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,1],[0,3,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,1],[0,2,3,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,1],[0,2,2,2]],[[1,1,2,1],[1,4,0,2],[1,3,2,1],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,4,2,1],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,2,1],[2,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,2,1],[1,3,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,2,1],[1,2,3,0]],[[1,1,3,1],[1,3,0,2],[1,3,2,2],[0,1,2,1]],[[1,1,2,2],[1,3,0,2],[1,3,2,2],[0,1,2,1]],[[1,1,2,1],[1,3,0,3],[1,3,2,2],[0,1,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,3],[0,1,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,2],[0,1,3,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,2],[0,1,2,2]],[[1,1,2,1],[1,4,0,2],[1,3,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,4,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,2,2],[0,3,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,2,2],[0,2,3,0]],[[1,1,3,1],[1,3,0,2],[1,3,2,2],[1,0,2,1]],[[1,1,2,2],[1,3,0,2],[1,3,2,2],[1,0,2,1]],[[1,1,2,1],[1,3,0,3],[1,3,2,2],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,3],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,2],[1,0,3,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,2],[1,0,2,2]],[[1,1,2,1],[1,4,0,2],[1,3,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[1,4,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,2],[2,2,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,2,2],[1,3,0,1]],[[1,1,2,1],[1,4,0,2],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,0,2],[1,4,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,0,2],[1,3,2,2],[2,2,1,0]],[[1,1,2,1],[1,3,0,2],[1,3,2,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,2],[1,4,2,0],[1,1,2,1]],[[1,2,0,0],[2,4,2,2],[1,3,2,0],[1,1,2,1]],[[1,2,0,0],[3,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,1,2,1],[1,4,0,2],[1,3,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[1,4,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,4,0],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,0],[1,1,3,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,0],[1,1,2,2]],[[1,1,2,1],[1,4,0,2],[1,3,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,4,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,4,0],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,0],[2,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,0],[1,3,1,1]],[[1,1,2,1],[1,4,0,2],[1,3,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,0,2],[1,4,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,4,1],[0,1,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,1],[0,1,3,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,1],[0,1,2,2]],[[1,1,2,1],[1,4,0,2],[1,3,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,4,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,4,1],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,1],[0,3,1,1]],[[1,1,2,1],[1,4,0,2],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[1,4,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,4,1],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,1],[1,0,3,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,1],[1,0,2,2]],[[1,1,2,1],[1,4,0,2],[1,3,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[1,4,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,4,1],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,3,1],[1,1,3,0]],[[1,1,2,1],[1,4,0,2],[1,3,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[1,4,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,4,1],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,1],[2,2,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,1],[1,3,0,1]],[[1,1,2,1],[1,4,0,2],[1,3,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,0,2],[1,4,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,0,2],[1,3,4,1],[1,2,1,0]],[[1,1,2,1],[1,3,0,2],[1,3,3,1],[2,2,1,0]],[[1,1,2,1],[1,3,0,2],[1,3,3,1],[1,3,1,0]],[[2,2,0,0],[2,3,2,2],[1,3,2,0],[1,1,2,1]],[[1,2,0,0],[2,3,2,2],[1,3,2,0],[0,2,2,2]],[[1,2,0,0],[2,3,2,2],[1,3,2,0],[0,2,3,1]],[[1,2,0,0],[2,3,2,2],[1,3,2,0],[0,3,2,1]],[[1,2,0,0],[2,3,2,2],[1,4,2,0],[0,2,2,1]],[[1,2,0,0],[2,4,2,2],[1,3,2,0],[0,2,2,1]],[[1,2,0,0],[3,3,2,2],[1,3,2,0],[0,2,2,1]],[[1,1,3,1],[1,3,0,2],[1,3,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,0,2],[1,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,0,3],[1,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,4,2],[0,0,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,2],[0,0,2,2]],[[1,1,3,1],[1,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,0,2],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,4,0,2],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,0,3],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,0,2],[1,4,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,4,2],[0,1,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,2],[0,1,1,2]],[[1,1,3,1],[1,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,0,2],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,4,0,2],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,0,3],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,0,2],[1,4,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,4,2],[0,1,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,3,3],[0,1,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,3,2],[0,1,3,0]],[[1,1,3,1],[1,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,1,2,2],[1,3,0,2],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,4,0,2],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,0,3],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,0,2],[1,4,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,4,2],[0,2,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,3],[0,2,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,2],[0,3,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,2],[0,2,0,2]],[[1,1,3,1],[1,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,1,2,2],[1,3,0,2],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,4,0,2],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,0,3],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,0,2],[1,4,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,0,2],[1,3,4,2],[0,2,1,0]],[[1,1,2,1],[1,3,0,2],[1,3,3,3],[0,2,1,0]],[[1,1,2,1],[1,3,0,2],[1,3,3,2],[0,3,1,0]],[[2,2,0,0],[2,3,2,2],[1,3,2,0],[0,2,2,1]],[[1,1,3,1],[1,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,1,2,2],[1,3,0,2],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,4,0,2],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,0,3],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,0,2],[1,4,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,4,2],[1,0,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,3],[1,0,1,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,2],[1,0,1,2]],[[1,1,3,1],[1,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,1,2,2],[1,3,0,2],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,4,0,2],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,0,3],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,0,2],[1,4,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,4,2],[1,0,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,3,3],[1,0,2,0]],[[1,1,2,1],[1,3,0,2],[1,3,3,2],[1,0,3,0]],[[1,1,3,1],[1,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,2],[1,3,0,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,4,0,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,0,3],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,0,2],[1,4,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,4,2],[1,1,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,3],[1,1,0,1]],[[1,1,2,1],[1,3,0,2],[1,3,3,2],[1,1,0,2]],[[1,1,3,1],[1,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,1,2,2],[1,3,0,2],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,4,0,2],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,0,3],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,0,2],[1,4,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,0,2],[1,3,4,2],[1,1,1,0]],[[1,1,2,1],[1,3,0,2],[1,3,3,3],[1,1,1,0]],[[1,2,0,0],[2,3,2,2],[1,4,0,2],[1,1,2,1]],[[1,2,0,0],[2,4,2,2],[1,3,0,2],[1,1,2,1]],[[1,2,0,0],[3,3,2,2],[1,3,0,2],[1,1,2,1]],[[2,2,0,0],[2,3,2,2],[1,3,0,2],[1,1,2,1]],[[1,2,0,0],[2,3,2,2],[1,3,0,2],[0,2,2,2]],[[1,2,0,0],[2,3,2,2],[1,3,0,2],[0,2,3,1]],[[1,2,0,0],[2,3,2,2],[1,3,0,2],[0,3,2,1]],[[1,2,0,0],[2,3,2,2],[1,3,0,3],[0,2,2,1]],[[1,2,0,0],[2,3,2,2],[1,4,0,2],[0,2,2,1]],[[1,2,0,0],[2,4,2,2],[1,3,0,2],[0,2,2,1]],[[1,2,0,0],[3,3,2,2],[1,3,0,2],[0,2,2,1]],[[2,2,0,0],[2,3,2,2],[1,3,0,2],[0,2,2,1]],[[1,2,0,0],[2,3,2,2],[1,2,3,1],[0,2,3,0]],[[1,1,2,1],[1,3,0,2],[3,1,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,1,4,0],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,1,3,0],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,1,3,0],[1,3,2,1]],[[1,1,2,1],[1,3,0,2],[2,1,3,0],[1,2,3,1]],[[1,1,2,1],[1,3,0,2],[2,1,3,0],[1,2,2,2]],[[1,1,2,1],[1,3,0,2],[3,1,3,1],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,1,4,1],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,1,3,1],[2,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,1,3,1],[1,3,2,0]],[[1,1,2,1],[1,3,0,2],[2,1,3,1],[1,2,3,0]],[[1,2,0,0],[2,3,2,2],[1,2,3,1],[0,3,2,0]],[[1,2,0,0],[2,3,2,2],[1,2,4,1],[0,2,2,0]],[[1,2,0,0],[2,3,2,2],[1,2,3,0],[0,2,2,2]],[[1,2,0,0],[2,3,2,2],[1,2,3,0],[0,2,3,1]],[[1,2,0,0],[2,3,2,2],[1,2,3,0],[0,3,2,1]],[[1,1,2,1],[1,3,0,2],[3,2,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,2,1,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,2,1,1],[1,3,2,1]],[[1,1,2,1],[1,3,0,2],[2,2,1,1],[1,2,3,1]],[[1,1,2,1],[1,3,0,2],[2,2,1,1],[1,2,2,2]],[[1,1,2,1],[1,3,0,2],[3,2,1,2],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[2,2,1,2],[2,2,1,1]],[[1,1,2,1],[1,3,0,2],[2,2,1,2],[1,3,1,1]],[[1,1,2,1],[1,3,0,2],[3,2,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,2,1,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,2,1,2],[1,3,2,0]],[[1,1,2,1],[1,3,0,2],[2,2,1,2],[1,2,3,0]],[[1,1,2,1],[1,3,0,2],[3,2,2,0],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,2,2,0],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,2,2,0],[1,3,2,1]],[[1,1,2,1],[1,3,0,2],[2,2,2,0],[1,2,3,1]],[[1,1,2,1],[1,3,0,2],[2,2,2,0],[1,2,2,2]],[[1,1,2,1],[1,3,0,2],[3,2,2,1],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,2,2,1],[2,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,2,2,1],[1,3,2,0]],[[1,1,2,1],[1,3,0,2],[2,2,2,1],[1,2,3,0]],[[1,1,2,1],[1,3,0,2],[3,2,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[2,2,2,2],[2,2,0,1]],[[1,1,2,1],[1,3,0,2],[2,2,2,2],[1,3,0,1]],[[1,1,2,1],[1,3,0,2],[3,2,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,0,2],[2,2,2,2],[2,2,1,0]],[[1,1,2,1],[1,3,0,2],[2,2,2,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,2],[1,2,4,0],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,2,4,0],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,2,3,0],[0,3,2,1]],[[1,1,2,1],[1,3,0,2],[2,2,3,0],[0,2,3,1]],[[1,1,2,1],[1,3,0,2],[2,2,3,0],[0,2,2,2]],[[1,1,2,1],[1,3,0,2],[3,2,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[2,2,3,0],[2,2,1,1]],[[1,1,2,1],[1,3,0,2],[2,2,3,0],[1,3,1,1]],[[1,1,2,1],[1,3,0,2],[2,2,4,1],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,2,3,1],[0,3,2,0]],[[1,1,2,1],[1,3,0,2],[2,2,3,1],[0,2,3,0]],[[1,1,2,1],[1,3,0,2],[3,2,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[2,2,3,1],[2,2,0,1]],[[1,1,2,1],[1,3,0,2],[2,2,3,1],[1,3,0,1]],[[1,1,2,1],[1,3,0,2],[3,2,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,0,2],[2,2,3,1],[2,2,1,0]],[[1,1,2,1],[1,3,0,2],[2,2,3,1],[1,3,1,0]],[[1,1,2,1],[1,3,0,2],[3,3,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,0,1],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,0,1],[1,3,2,1]],[[1,1,2,1],[1,3,0,2],[3,3,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,0,2],[2,2,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,0,2],[1,3,1,1]],[[1,1,2,1],[1,3,0,2],[3,3,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,0,2],[2,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,0,2],[1,3,2,0]],[[1,1,2,1],[1,3,0,2],[3,3,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,1,0],[2,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,1,0],[1,3,2,1]],[[1,1,2,1],[1,4,0,2],[2,3,1,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[3,3,1,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,4,1,1],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,1,1],[0,3,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,1,1],[0,2,3,1]],[[1,1,2,1],[1,3,0,2],[2,3,1,1],[0,2,2,2]],[[1,1,2,1],[1,4,0,2],[2,3,1,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[3,3,1,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[2,4,1,1],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,1,1],[2,1,2,1]],[[1,1,2,1],[1,3,0,2],[3,3,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,1,1],[2,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,1,1],[1,3,2,0]],[[1,1,2,1],[1,4,0,2],[2,3,1,2],[0,1,2,1]],[[1,1,2,1],[1,3,0,2],[3,3,1,2],[0,1,2,1]],[[1,1,2,1],[1,3,0,2],[2,4,1,2],[0,1,2,1]],[[1,1,2,1],[1,4,0,2],[2,3,1,2],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[3,3,1,2],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[2,4,1,2],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,1,2],[0,3,1,1]],[[1,1,2,1],[1,4,0,2],[2,3,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[3,3,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,4,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,1,2],[0,3,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,1,2],[0,2,3,0]],[[1,1,2,1],[1,4,0,2],[2,3,1,2],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[3,3,1,2],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[2,4,1,2],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,1,2],[2,0,2,1]],[[1,1,2,1],[1,4,0,2],[2,3,1,2],[1,1,1,1]],[[1,1,2,1],[1,3,0,2],[3,3,1,2],[1,1,1,1]],[[1,1,2,1],[1,3,0,2],[2,4,1,2],[1,1,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,1,2],[2,1,1,1]],[[1,1,2,1],[1,4,0,2],[2,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[3,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[2,4,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,1,2],[2,1,2,0]],[[1,2,0,0],[2,3,2,2],[0,3,3,1],[1,3,1,0]],[[1,2,0,0],[2,3,2,2],[0,3,3,1],[2,2,1,0]],[[1,2,0,0],[2,3,2,2],[0,3,4,1],[1,2,1,0]],[[1,2,0,0],[2,3,2,2],[0,4,3,1],[1,2,1,0]],[[1,2,0,0],[2,4,2,2],[0,3,3,1],[1,2,1,0]],[[1,2,0,0],[3,3,2,2],[0,3,3,1],[1,2,1,0]],[[2,2,0,0],[2,3,2,2],[0,3,3,1],[1,2,1,0]],[[1,2,0,0],[2,3,2,2],[0,3,3,1],[1,3,0,1]],[[1,1,2,1],[1,4,0,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[3,3,2,0],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,4,2,0],[0,2,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,2,0],[0,3,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,2,0],[0,2,3,1]],[[1,1,2,1],[1,3,0,2],[2,3,2,0],[0,2,2,2]],[[1,1,2,1],[1,4,0,2],[2,3,2,0],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[3,3,2,0],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[2,4,2,0],[1,1,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,2,0],[2,1,2,1]],[[1,1,2,1],[1,4,0,2],[2,3,2,1],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[3,3,2,1],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,4,2,1],[0,2,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,2,1],[0,3,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,2,1],[0,2,3,0]],[[1,1,2,1],[1,4,0,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[3,3,2,1],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[2,4,2,1],[1,1,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,0],[2,3,2,2],[0,3,3,1],[2,2,0,1]],[[1,2,0,0],[2,3,2,2],[0,3,4,1],[1,2,0,1]],[[1,2,0,0],[2,3,2,2],[0,4,3,1],[1,2,0,1]],[[1,2,0,0],[2,4,2,2],[0,3,3,1],[1,2,0,1]],[[1,2,0,0],[3,3,2,2],[0,3,3,1],[1,2,0,1]],[[2,2,0,0],[2,3,2,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,1],[1,4,0,2],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,0,2],[3,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,0,2],[2,4,2,2],[0,1,1,1]],[[1,1,2,1],[1,4,0,2],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,0,2],[3,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,0,2],[2,4,2,2],[0,1,2,0]],[[1,1,2,1],[1,4,0,2],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,0,2],[3,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,0,2],[2,4,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,0,2],[2,3,2,2],[0,3,0,1]],[[1,1,2,1],[1,4,0,2],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,0,2],[3,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,0,2],[2,4,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,0,2],[2,3,2,2],[0,3,1,0]],[[1,2,0,0],[2,3,2,2],[0,3,3,1],[1,1,3,0]],[[1,2,0,0],[2,3,2,2],[0,3,4,1],[1,1,2,0]],[[1,2,0,0],[2,3,2,2],[0,4,3,1],[1,1,2,0]],[[1,2,0,0],[2,4,2,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,1],[1,4,0,2],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,0,2],[3,3,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,0,2],[2,4,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,2,2],[2,0,1,1]],[[1,1,2,1],[1,4,0,2],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,0,2],[3,3,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,0,2],[2,4,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,2,2],[2,0,2,0]],[[1,1,2,1],[1,4,0,2],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,0,2],[3,3,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,0,2],[2,4,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,0,2],[2,3,2,2],[2,1,0,1]],[[1,1,2,1],[1,4,0,2],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,0,2],[3,3,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,0,2],[2,4,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,0,2],[2,3,2,2],[2,1,1,0]],[[1,2,0,0],[3,3,2,2],[0,3,3,1],[1,1,2,0]],[[2,2,0,0],[2,3,2,2],[0,3,3,1],[1,1,2,0]],[[1,2,0,0],[2,3,2,2],[0,3,4,1],[1,1,1,1]],[[1,2,0,0],[2,3,2,2],[0,4,3,1],[1,1,1,1]],[[1,2,0,0],[2,4,2,2],[0,3,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,2,2],[0,3,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,2,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,4,0,2],[2,3,2,2],[1,2,0,0]],[[1,1,2,1],[1,3,0,2],[3,3,2,2],[1,2,0,0]],[[1,1,2,1],[1,3,0,2],[2,4,2,2],[1,2,0,0]],[[1,1,2,1],[1,3,0,2],[2,3,2,2],[2,2,0,0]],[[1,2,0,0],[2,3,2,2],[0,3,3,0],[1,3,1,1]],[[1,2,0,0],[2,3,2,2],[0,3,3,0],[2,2,1,1]],[[1,2,0,0],[2,3,2,2],[0,3,4,0],[1,2,1,1]],[[1,2,0,0],[2,3,2,2],[0,4,3,0],[1,2,1,1]],[[1,2,0,0],[2,4,2,2],[0,3,3,0],[1,2,1,1]],[[1,2,0,0],[3,3,2,2],[0,3,3,0],[1,2,1,1]],[[2,2,0,0],[2,3,2,2],[0,3,3,0],[1,2,1,1]],[[1,2,0,0],[2,3,2,2],[0,3,3,0],[1,1,2,2]],[[1,2,0,0],[2,3,2,2],[0,3,3,0],[1,1,3,1]],[[1,2,0,0],[2,3,2,2],[0,3,4,0],[1,1,2,1]],[[1,2,0,0],[2,3,2,2],[0,4,3,0],[1,1,2,1]],[[1,2,0,0],[2,4,2,2],[0,3,3,0],[1,1,2,1]],[[1,2,0,0],[3,3,2,2],[0,3,3,0],[1,1,2,1]],[[2,2,0,0],[2,3,2,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,1],[1,4,0,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,0,2],[3,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,0,2],[2,4,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,4,0],[0,1,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,3,0],[0,1,3,1]],[[1,1,2,1],[1,3,0,2],[2,3,3,0],[0,1,2,2]],[[1,1,2,1],[1,4,0,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[3,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[2,4,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,4,0],[0,2,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,3,0],[0,3,1,1]],[[1,1,2,1],[1,4,0,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[3,3,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[2,4,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,4,0],[1,0,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,3,0],[2,0,2,1]],[[1,1,2,1],[1,3,0,2],[2,3,3,0],[1,0,3,1]],[[1,1,2,1],[1,3,0,2],[2,3,3,0],[1,0,2,2]],[[1,1,2,1],[1,4,0,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,0,2],[3,3,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,0,2],[2,4,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,4,0],[1,1,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,3,0],[2,1,1,1]],[[1,1,2,1],[1,4,0,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[3,3,3,0],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[2,4,3,0],[1,2,0,1]],[[1,1,2,1],[1,3,0,2],[2,3,3,0],[2,2,0,1]],[[1,1,2,1],[1,4,0,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,0,2],[3,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,0,2],[2,4,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,4,1],[0,1,1,1]],[[1,1,2,1],[1,4,0,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,0,2],[3,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,0,2],[2,4,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,4,1],[0,1,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,3,1],[0,1,3,0]],[[1,1,2,1],[1,4,0,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,0,2],[3,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,0,2],[2,4,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,0,2],[2,3,4,1],[0,2,0,1]],[[1,1,2,1],[1,3,0,2],[2,3,3,1],[0,3,0,1]],[[1,1,2,1],[1,4,0,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,0,2],[3,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,0,2],[2,4,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,0,2],[2,3,4,1],[0,2,1,0]],[[1,1,2,1],[1,3,0,2],[2,3,3,1],[0,3,1,0]],[[1,1,2,1],[1,4,0,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,0,2],[3,3,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,0,2],[2,4,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,4,1],[1,0,1,1]],[[1,1,2,1],[1,3,0,2],[2,3,3,1],[2,0,1,1]],[[1,1,2,1],[1,4,0,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,0,2],[3,3,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,0,2],[2,4,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,4,1],[1,0,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,3,1],[2,0,2,0]],[[1,1,2,1],[1,3,0,2],[2,3,3,1],[1,0,3,0]],[[1,1,2,1],[1,4,0,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,0,2],[3,3,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,0,2],[2,4,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,0,2],[2,3,4,1],[1,1,0,1]],[[1,1,2,1],[1,3,0,2],[2,3,3,1],[2,1,0,1]],[[1,1,2,1],[1,4,0,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,0,2],[3,3,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,0,2],[2,4,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,0,2],[2,3,4,1],[1,1,1,0]],[[1,1,2,1],[1,3,0,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,0],[2,3,2,2],[0,3,2,1],[1,2,3,0]],[[1,2,0,0],[2,3,2,2],[0,3,2,1],[1,3,2,0]],[[1,2,0,0],[2,3,2,2],[0,3,2,1],[2,2,2,0]],[[1,2,0,0],[2,3,2,2],[0,4,2,1],[1,2,2,0]],[[1,2,0,0],[2,4,2,2],[0,3,2,1],[1,2,2,0]],[[1,2,0,0],[3,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,1,2,1],[1,4,0,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[1,3,0,2],[3,3,3,1],[1,2,0,0]],[[1,1,2,1],[1,3,0,2],[2,4,3,1],[1,2,0,0]],[[1,1,2,1],[1,3,0,2],[2,3,3,1],[2,2,0,0]],[[2,2,0,0],[2,3,2,2],[0,3,2,1],[1,2,2,0]],[[1,2,0,0],[2,3,2,2],[0,3,2,0],[1,2,2,2]],[[1,2,0,0],[2,3,2,2],[0,3,2,0],[1,2,3,1]],[[1,2,0,0],[2,3,2,2],[0,3,2,0],[1,3,2,1]],[[1,2,0,0],[2,3,2,2],[0,3,2,0],[2,2,2,1]],[[1,2,0,0],[2,3,2,2],[0,4,2,0],[1,2,2,1]],[[1,2,0,0],[2,4,2,2],[0,3,2,0],[1,2,2,1]],[[1,2,0,0],[3,3,2,2],[0,3,2,0],[1,2,2,1]],[[2,2,0,0],[2,3,2,2],[0,3,2,0],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[0,3,0,2],[1,2,2,2]],[[1,2,0,0],[2,3,2,2],[0,3,0,2],[1,2,3,1]],[[1,2,0,0],[2,3,2,2],[0,3,0,2],[1,3,2,1]],[[1,2,0,0],[2,3,2,2],[0,3,0,2],[2,2,2,1]],[[1,2,0,0],[2,3,2,2],[0,3,0,3],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[0,4,0,2],[1,2,2,1]],[[1,2,0,0],[2,4,2,2],[0,3,0,2],[1,2,2,1]],[[1,2,0,0],[3,3,2,2],[0,3,0,2],[1,2,2,1]],[[2,2,0,0],[2,3,2,2],[0,3,0,2],[1,2,2,1]],[[1,2,0,0],[2,3,2,2],[0,2,3,1],[1,2,3,0]],[[1,2,0,0],[2,3,2,2],[0,2,3,1],[1,3,2,0]],[[1,2,0,0],[2,3,2,2],[0,2,3,1],[2,2,2,0]],[[1,2,0,0],[2,3,2,2],[0,2,4,1],[1,2,2,0]],[[1,2,0,0],[2,3,2,2],[0,2,3,0],[1,2,2,2]],[[1,2,0,0],[2,3,2,2],[0,2,3,0],[1,2,3,1]],[[1,2,0,0],[2,3,2,2],[0,2,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,2,2],[0,2,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,2,2],[0,2,4,0],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[3,3,3,2],[1,0,1,0]],[[1,2,0,0],[2,4,2,1],[2,3,3,2],[1,0,1,0]],[[1,2,0,0],[3,3,2,1],[2,3,3,2],[1,0,1,0]],[[2,2,0,0],[2,3,2,1],[2,3,3,2],[1,0,1,0]],[[1,2,0,0],[2,3,2,1],[3,3,3,2],[1,0,0,1]],[[1,2,0,0],[2,4,2,1],[2,3,3,2],[1,0,0,1]],[[1,2,0,0],[3,3,2,1],[2,3,3,2],[1,0,0,1]],[[2,2,0,0],[2,3,2,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[1,3,1,0],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[1,3,1,0],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[1,3,1,0],[1,2,2,2],[1,2,2,2]],[[1,1,2,1],[1,3,1,0],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,1,0],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,1,0],[1,2,3,1],[1,2,2,2]],[[1,1,2,1],[1,3,1,0],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[1,3,1,0],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[1,3,1,0],[1,2,3,2],[1,2,1,2]],[[1,1,2,1],[1,3,1,0],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,0],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[1,3,1,0],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,1,0],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,1,0],[1,2,3,2],[1,2,3,0]],[[1,1,2,1],[1,4,1,0],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,1,3],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[1,3,1,0],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[1,4,1,0],[1,3,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[1,3,1,0],[1,3,2,1],[1,2,2,2]],[[1,1,2,1],[1,3,1,0],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[1,3,1,0],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[1,4,1,0],[1,3,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,0],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,0],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[1,3,1,0],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[1,3,1,0],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[1,4,1,0],[1,3,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,4,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,0],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,0],[1,3,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,0],[1,2,3,1]],[[1,1,2,1],[1,4,1,0],[1,3,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[1,4,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,1],[1,1,2,2]],[[1,1,2,1],[1,4,1,0],[1,3,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,1,0],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,1,0],[1,3,4,1],[1,2,1,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,1],[1,3,1,1]],[[1,1,2,1],[1,4,1,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,0],[1,4,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,0],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,2],[1,1,1,2]],[[1,1,2,1],[1,4,1,0],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,0],[1,4,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,0],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,0],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[1,3,1,0],[1,3,3,2],[1,1,3,0]],[[1,1,2,1],[1,4,1,0],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,0],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,0],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[1,3,1,0],[1,3,3,2],[1,2,0,2]],[[1,1,2,1],[1,4,1,0],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,0],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,0],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,0],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[1,3,1,0],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[1,3,1,0],[1,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,1],[3,3,3,1],[1,0,1,1]],[[1,2,0,0],[2,4,2,1],[2,3,3,1],[1,0,1,1]],[[1,2,0,0],[3,3,2,1],[2,3,3,1],[1,0,1,1]],[[2,2,0,0],[2,3,2,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,1,0],[3,1,2,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[1,3,1,0],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[1,3,1,0],[2,1,2,2],[1,2,2,2]],[[1,1,2,1],[1,3,1,0],[3,1,3,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,1,0],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,1,0],[2,1,3,1],[1,2,2,2]],[[1,1,2,1],[1,3,1,0],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[1,3,1,0],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[1,3,1,0],[2,1,3,2],[1,2,1,2]],[[1,1,2,1],[1,3,1,0],[3,1,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,1,0],[2,1,3,2],[1,2,3,0]],[[1,1,2,1],[1,3,1,0],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,1,3],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[1,3,1,0],[2,2,1,2],[1,2,2,2]],[[1,1,2,1],[1,3,1,0],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[1,3,1,0],[2,2,2,1],[1,2,2,2]],[[1,1,2,1],[1,3,1,0],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[1,3,1,0],[2,2,2,2],[0,2,2,2]],[[1,1,2,1],[1,3,1,0],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[1,3,1,0],[2,2,2,2],[1,2,3,0]],[[1,1,2,1],[1,3,1,0],[3,2,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,0],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,0],[1,3,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,0],[1,2,3,1]],[[1,1,2,1],[1,3,1,0],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,1],[0,2,2,2]],[[1,1,2,1],[1,3,1,0],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,1],[1,3,1,1]],[[1,1,2,1],[1,3,1,0],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,2],[0,2,1,2]],[[1,1,2,1],[1,3,1,0],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[1,3,1,0],[2,2,3,2],[0,2,3,0]],[[1,1,2,1],[1,3,1,0],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[1,3,1,0],[2,2,3,2],[1,3,0,1]],[[1,1,2,1],[1,3,1,0],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,0],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[1,3,1,0],[2,2,3,2],[1,3,1,0]],[[1,1,2,1],[1,3,1,0],[3,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,0,2],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,0,2],[1,3,2,1]],[[1,1,2,1],[1,3,1,0],[3,3,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,1,1],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,1,1],[1,3,2,1]],[[1,1,2,1],[1,4,1,0],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,1,3],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[1,3,1,0],[2,3,1,2],[0,2,2,2]],[[1,1,2,1],[1,4,1,0],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,1,2],[2,1,2,1]],[[1,1,2,1],[1,3,1,0],[3,3,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,1,2],[2,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,1,2],[1,3,2,0]],[[1,1,2,1],[1,3,1,0],[3,3,2,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,2,0],[2,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,2,0],[1,3,2,1]],[[1,1,2,1],[1,4,1,0],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[1,3,1,0],[2,3,2,1],[0,2,2,2]],[[1,1,2,1],[1,4,1,0],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,2,1],[2,1,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[1,3,1,0],[2,3,2,2],[0,1,2,2]],[[1,1,2,1],[1,4,1,0],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,0],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,2,2],[0,2,3,0]],[[1,1,2,1],[1,3,1,0],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[1,3,1,0],[2,3,2,2],[1,0,2,2]],[[1,1,2,1],[1,4,1,0],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,0],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,0],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,2,2],[2,1,2,0]],[[1,1,2,1],[1,4,1,0],[2,3,3,0],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[3,3,3,0],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,4,3,0],[0,2,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,0],[0,3,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,0],[0,2,3,1]],[[1,1,2,1],[1,4,1,0],[2,3,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[3,3,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[2,4,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,0],[2,1,2,1]],[[1,1,2,1],[1,4,1,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,1,0],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,1,0],[2,4,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,1],[0,1,2,2]],[[1,1,2,1],[1,4,1,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,1,0],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,1,0],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,1,0],[2,3,4,1],[0,2,1,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,1],[0,3,1,1]],[[1,1,2,1],[1,4,1,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,1,0],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,1,0],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,1],[2,0,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,1],[1,0,2,2]],[[1,1,2,1],[1,4,1,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,1,0],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,1,0],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,1,0],[2,3,4,1],[1,1,1,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,1],[2,1,1,1]],[[1,1,2,1],[1,4,1,0],[2,3,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,1,0],[3,3,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,1,0],[2,4,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,1],[2,2,0,1]],[[1,1,2,1],[1,3,1,0],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[0,0,2,2]],[[1,1,2,1],[1,4,1,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,0],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,0],[2,4,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,0],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[0,1,1,2]],[[1,1,2,1],[1,4,1,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,0],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,0],[2,4,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[0,1,3,0]],[[1,1,2,1],[1,4,1,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,0],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,0],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,0],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[0,3,0,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[0,2,0,2]],[[1,1,2,1],[1,4,1,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,0],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,0],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,0],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,0],[2,3,3,3],[0,2,1,0]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[0,3,1,0]],[[1,1,2,1],[1,4,1,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,0],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,0],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,0],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[2,0,1,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[1,0,1,2]],[[1,1,2,1],[1,4,1,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,0],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,0],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[1,0,3,0]],[[1,1,2,1],[1,4,1,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,0],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,0],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,0],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[1,1,0,2]],[[1,1,2,1],[1,4,1,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,0],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,0],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,0],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,0],[2,3,3,3],[1,1,1,0]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[2,1,1,0]],[[1,1,2,1],[1,4,1,0],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,1,0],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,1,0],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,1,0],[2,3,3,2],[2,2,0,0]],[[1,1,2,1],[1,3,1,1],[1,2,4,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[1,2,3,0],[2,2,2,1]],[[1,1,2,1],[1,3,1,1],[1,2,3,0],[1,3,2,1]],[[1,1,2,1],[1,3,1,1],[1,2,3,0],[1,2,3,1]],[[1,1,2,1],[1,3,1,1],[1,2,3,0],[1,2,2,2]],[[1,1,2,1],[1,3,1,1],[1,2,4,1],[1,2,2,0]],[[1,1,2,1],[1,3,1,1],[1,2,3,1],[2,2,2,0]],[[1,1,2,1],[1,3,1,1],[1,2,3,1],[1,3,2,0]],[[1,1,2,1],[1,3,1,1],[1,2,3,1],[1,2,3,0]],[[1,1,2,1],[1,4,1,1],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[1,4,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[1,3,0,3],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[1,3,0,2],[2,2,2,1]],[[1,1,2,1],[1,3,1,1],[1,3,0,2],[1,3,2,1]],[[1,1,2,1],[1,3,1,1],[1,3,0,2],[1,2,3,1]],[[1,1,2,1],[1,3,1,1],[1,3,0,2],[1,2,2,2]],[[1,1,2,1],[1,4,1,1],[1,3,2,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[1,4,2,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[1,3,2,0],[2,2,2,1]],[[1,1,2,1],[1,3,1,1],[1,3,2,0],[1,3,2,1]],[[1,1,2,1],[1,3,1,1],[1,3,2,0],[1,2,3,1]],[[1,1,2,1],[1,3,1,1],[1,3,2,0],[1,2,2,2]],[[1,1,2,1],[1,4,1,1],[1,3,2,1],[1,2,2,0]],[[1,1,2,1],[1,3,1,1],[1,4,2,1],[1,2,2,0]],[[1,1,2,1],[1,3,1,1],[1,3,2,1],[2,2,2,0]],[[1,1,2,1],[1,3,1,1],[1,3,2,1],[1,3,2,0]],[[1,1,2,1],[1,3,1,1],[1,3,2,1],[1,2,3,0]],[[1,1,2,1],[1,4,1,1],[1,3,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,1],[1,4,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,1],[1,3,4,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,1],[1,3,3,0],[1,1,3,1]],[[1,1,2,1],[1,3,1,1],[1,3,3,0],[1,1,2,2]],[[1,1,2,1],[1,4,1,1],[1,3,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,1,1],[1,4,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,1,1],[1,3,4,0],[1,2,1,1]],[[1,1,2,1],[1,3,1,1],[1,3,3,0],[2,2,1,1]],[[1,1,2,1],[1,3,1,1],[1,3,3,0],[1,3,1,1]],[[1,1,2,1],[1,4,1,1],[1,3,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,1,1],[1,4,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,1,1],[1,3,4,1],[1,1,2,0]],[[1,1,2,1],[1,3,1,1],[1,3,3,1],[1,1,3,0]],[[1,1,2,1],[1,4,1,1],[1,3,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,1,1],[1,4,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,1,1],[1,3,4,1],[1,2,0,1]],[[1,1,2,1],[1,3,1,1],[1,3,3,1],[2,2,0,1]],[[1,1,2,1],[1,3,1,1],[1,3,3,1],[1,3,0,1]],[[1,1,2,1],[1,4,1,1],[1,3,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,1,1],[1,4,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,1,1],[1,3,4,1],[1,2,1,0]],[[1,1,2,1],[1,3,1,1],[1,3,3,1],[2,2,1,0]],[[1,1,2,1],[1,3,1,1],[1,3,3,1],[1,3,1,0]],[[1,2,0,0],[2,3,2,1],[2,3,0,2],[1,3,2,0]],[[1,2,0,0],[2,3,2,1],[2,3,0,2],[2,2,2,0]],[[1,2,0,0],[2,3,2,1],[3,3,0,2],[1,2,2,0]],[[1,2,0,0],[3,3,2,1],[2,3,0,2],[1,2,2,0]],[[2,2,0,0],[2,3,2,1],[2,3,0,2],[1,2,2,0]],[[1,2,0,0],[2,3,2,1],[2,3,0,1],[1,3,2,1]],[[1,2,0,0],[2,3,2,1],[2,3,0,1],[2,2,2,1]],[[1,2,0,0],[2,3,2,1],[3,3,0,1],[1,2,2,1]],[[1,2,0,0],[3,3,2,1],[2,3,0,1],[1,2,2,1]],[[2,2,0,0],[2,3,2,1],[2,3,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[3,1,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,1,4,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,1,3,0],[2,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,1,3,0],[1,3,2,1]],[[1,1,2,1],[1,3,1,1],[2,1,3,0],[1,2,3,1]],[[1,1,2,1],[1,3,1,1],[2,1,3,0],[1,2,2,2]],[[1,1,2,1],[1,3,1,1],[3,1,3,1],[1,2,2,0]],[[1,1,2,1],[1,3,1,1],[2,1,4,1],[1,2,2,0]],[[1,1,2,1],[1,3,1,1],[2,1,3,1],[2,2,2,0]],[[1,1,2,1],[1,3,1,1],[2,1,3,1],[1,3,2,0]],[[1,1,2,1],[1,3,1,1],[2,1,3,1],[1,2,3,0]],[[1,2,0,0],[2,3,2,1],[2,2,3,2],[2,2,0,0]],[[1,2,0,0],[2,3,2,1],[3,2,3,2],[1,2,0,0]],[[1,2,0,0],[2,4,2,1],[2,2,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,1,1],[3,2,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,2,0,3],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,2,0,2],[2,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,2,0,2],[1,3,2,1]],[[1,1,2,1],[1,3,1,1],[2,2,0,2],[1,2,3,1]],[[1,1,2,1],[1,3,1,1],[2,2,0,2],[1,2,2,2]],[[1,1,2,1],[1,3,1,1],[3,2,2,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,2,2,0],[2,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,2,2,0],[1,3,2,1]],[[1,1,2,1],[1,3,1,1],[2,2,2,0],[1,2,3,1]],[[1,1,2,1],[1,3,1,1],[2,2,2,0],[1,2,2,2]],[[1,1,2,1],[1,3,1,1],[3,2,2,1],[1,2,2,0]],[[1,1,2,1],[1,3,1,1],[2,2,2,1],[2,2,2,0]],[[1,1,2,1],[1,3,1,1],[2,2,2,1],[1,3,2,0]],[[1,1,2,1],[1,3,1,1],[2,2,2,1],[1,2,3,0]],[[1,2,0,0],[3,3,2,1],[2,2,3,2],[1,2,0,0]],[[2,2,0,0],[2,3,2,1],[2,2,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,1,1],[2,2,4,0],[0,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,2,3,0],[0,3,2,1]],[[1,1,2,1],[1,3,1,1],[2,2,3,0],[0,2,3,1]],[[1,1,2,1],[1,3,1,1],[2,2,3,0],[0,2,2,2]],[[1,1,2,1],[1,3,1,1],[3,2,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,1,1],[2,2,3,0],[2,2,1,1]],[[1,1,2,1],[1,3,1,1],[2,2,3,0],[1,3,1,1]],[[1,1,2,1],[1,3,1,1],[2,2,4,1],[0,2,2,0]],[[1,1,2,1],[1,3,1,1],[2,2,3,1],[0,3,2,0]],[[1,1,2,1],[1,3,1,1],[2,2,3,1],[0,2,3,0]],[[1,1,2,1],[1,3,1,1],[3,2,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,1,1],[2,2,3,1],[2,2,0,1]],[[1,1,2,1],[1,3,1,1],[2,2,3,1],[1,3,0,1]],[[1,1,2,1],[1,3,1,1],[3,2,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,1,1],[2,2,3,1],[2,2,1,0]],[[1,1,2,1],[1,3,1,1],[2,2,3,1],[1,3,1,0]],[[1,2,0,0],[2,3,2,1],[2,2,3,2],[2,1,1,0]],[[1,2,0,0],[2,3,2,1],[3,2,3,2],[1,1,1,0]],[[1,2,0,0],[2,4,2,1],[2,2,3,2],[1,1,1,0]],[[1,2,0,0],[3,3,2,1],[2,2,3,2],[1,1,1,0]],[[2,2,0,0],[2,3,2,1],[2,2,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,2,1],[2,2,3,2],[2,1,0,1]],[[1,2,0,0],[2,3,2,1],[3,2,3,2],[1,1,0,1]],[[1,2,0,0],[2,4,2,1],[2,2,3,2],[1,1,0,1]],[[1,2,0,0],[3,3,2,1],[2,2,3,2],[1,1,0,1]],[[2,2,0,0],[2,3,2,1],[2,2,3,2],[1,1,0,1]],[[1,2,0,0],[2,3,2,1],[2,2,3,2],[2,0,2,0]],[[1,2,0,0],[2,3,2,1],[3,2,3,2],[1,0,2,0]],[[1,2,0,0],[2,4,2,1],[2,2,3,2],[1,0,2,0]],[[1,2,0,0],[3,3,2,1],[2,2,3,2],[1,0,2,0]],[[2,2,0,0],[2,3,2,1],[2,2,3,2],[1,0,2,0]],[[1,2,0,0],[2,3,2,1],[2,2,3,2],[2,0,1,1]],[[1,2,0,0],[2,3,2,1],[3,2,3,2],[1,0,1,1]],[[1,2,0,0],[2,4,2,1],[2,2,3,2],[1,0,1,1]],[[1,2,0,0],[3,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[1,4,1,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,1],[3,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,4,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,0,3],[0,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,0,2],[0,3,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,0,2],[0,2,3,1]],[[1,1,2,1],[1,3,1,1],[2,3,0,2],[0,2,2,2]],[[1,1,2,1],[1,4,1,1],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,1,1],[3,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,1,1],[2,4,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,0,2],[2,1,2,1]],[[1,1,2,1],[1,3,1,1],[3,3,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,1,0],[2,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,1,0],[1,3,2,1]],[[1,1,2,1],[1,3,1,1],[3,3,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,1,1],[2,3,1,1],[2,2,2,0]],[[1,1,2,1],[1,3,1,1],[2,3,1,1],[1,3,2,0]],[[2,2,0,0],[2,3,2,1],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[1,4,1,1],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[1,3,1,1],[3,3,2,0],[0,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,4,2,0],[0,2,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,2,0],[0,3,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,2,0],[0,2,3,1]],[[1,1,2,1],[1,3,1,1],[2,3,2,0],[0,2,2,2]],[[1,1,2,1],[1,4,1,1],[2,3,2,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,1],[3,3,2,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,1],[2,4,2,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,2,0],[2,1,2,1]],[[1,1,2,1],[1,4,1,1],[2,3,2,1],[0,2,2,0]],[[1,1,2,1],[1,3,1,1],[3,3,2,1],[0,2,2,0]],[[1,1,2,1],[1,3,1,1],[2,4,2,1],[0,2,2,0]],[[1,1,2,1],[1,3,1,1],[2,3,2,1],[0,3,2,0]],[[1,1,2,1],[1,3,1,1],[2,3,2,1],[0,2,3,0]],[[1,1,2,1],[1,4,1,1],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[1,3,1,1],[3,3,2,1],[1,1,2,0]],[[1,1,2,1],[1,3,1,1],[2,4,2,1],[1,1,2,0]],[[1,1,2,1],[1,3,1,1],[2,3,2,1],[2,1,2,0]],[[1,2,0,0],[2,3,2,1],[3,2,3,2],[0,2,1,0]],[[1,2,0,0],[2,4,2,1],[2,2,3,2],[0,2,1,0]],[[1,2,0,0],[3,3,2,1],[2,2,3,2],[0,2,1,0]],[[2,2,0,0],[2,3,2,1],[2,2,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,2,1],[3,2,3,2],[0,2,0,1]],[[1,2,0,0],[2,4,2,1],[2,2,3,2],[0,2,0,1]],[[1,2,0,0],[3,3,2,1],[2,2,3,2],[0,2,0,1]],[[2,2,0,0],[2,3,2,1],[2,2,3,2],[0,2,0,1]],[[1,2,0,0],[2,3,2,1],[3,2,3,2],[0,1,2,0]],[[1,2,0,0],[2,4,2,1],[2,2,3,2],[0,1,2,0]],[[1,2,0,0],[3,3,2,1],[2,2,3,2],[0,1,2,0]],[[2,2,0,0],[2,3,2,1],[2,2,3,2],[0,1,2,0]],[[1,2,0,0],[2,3,2,1],[3,2,3,2],[0,1,1,1]],[[1,2,0,0],[2,4,2,1],[2,2,3,2],[0,1,1,1]],[[1,2,0,0],[3,3,2,1],[2,2,3,2],[0,1,1,1]],[[2,2,0,0],[2,3,2,1],[2,2,3,2],[0,1,1,1]],[[1,2,0,0],[2,3,2,1],[2,2,3,1],[2,2,0,1]],[[1,1,2,1],[1,4,1,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,1,1],[3,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,1,1],[2,4,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,4,0],[0,1,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,3,0],[0,1,3,1]],[[1,1,2,1],[1,3,1,1],[2,3,3,0],[0,1,2,2]],[[1,1,2,1],[1,4,1,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,1,1],[3,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,1,1],[2,4,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,1,1],[2,3,4,0],[0,2,1,1]],[[1,1,2,1],[1,3,1,1],[2,3,3,0],[0,3,1,1]],[[1,1,2,1],[1,4,1,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,1,1],[3,3,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,1,1],[2,4,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,4,0],[1,0,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,3,0],[2,0,2,1]],[[1,1,2,1],[1,3,1,1],[2,3,3,0],[1,0,3,1]],[[1,1,2,1],[1,3,1,1],[2,3,3,0],[1,0,2,2]],[[1,1,2,1],[1,4,1,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,1,1],[3,3,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,1,1],[2,4,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,1,1],[2,3,4,0],[1,1,1,1]],[[1,1,2,1],[1,3,1,1],[2,3,3,0],[2,1,1,1]],[[1,1,2,1],[1,4,1,1],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[1,3,1,1],[3,3,3,0],[1,2,0,1]],[[1,1,2,1],[1,3,1,1],[2,4,3,0],[1,2,0,1]],[[1,1,2,1],[1,3,1,1],[2,3,3,0],[2,2,0,1]],[[1,2,0,0],[2,3,2,1],[3,2,3,1],[1,2,0,1]],[[1,2,0,0],[2,4,2,1],[2,2,3,1],[1,2,0,1]],[[1,2,0,0],[3,3,2,1],[2,2,3,1],[1,2,0,1]],[[2,2,0,0],[2,3,2,1],[2,2,3,1],[1,2,0,1]],[[1,1,2,1],[1,4,1,1],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,1,1],[3,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,1,1],[2,4,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,1,1],[2,3,4,1],[0,1,1,1]],[[1,1,2,1],[1,4,1,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,1,1],[3,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,1,1],[2,4,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,1,1],[2,3,4,1],[0,1,2,0]],[[1,1,2,1],[1,3,1,1],[2,3,3,1],[0,1,3,0]],[[1,1,2,1],[1,4,1,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,1,1],[3,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,1,1],[2,4,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,1,1],[2,3,4,1],[0,2,0,1]],[[1,1,2,1],[1,3,1,1],[2,3,3,1],[0,3,0,1]],[[1,1,2,1],[1,4,1,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,1,1],[3,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,1,1],[2,4,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,1,1],[2,3,4,1],[0,2,1,0]],[[1,1,2,1],[1,3,1,1],[2,3,3,1],[0,3,1,0]],[[1,2,0,0],[2,3,2,1],[2,2,3,1],[2,1,1,1]],[[1,2,0,0],[2,3,2,1],[3,2,3,1],[1,1,1,1]],[[1,2,0,0],[2,4,2,1],[2,2,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,2,1],[2,2,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,2,1],[2,2,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,2,1],[2,2,3,1],[2,0,2,1]],[[1,1,2,1],[1,4,1,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,1,1],[3,3,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,1,1],[2,4,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,1,1],[2,3,4,1],[1,0,1,1]],[[1,1,2,1],[1,3,1,1],[2,3,3,1],[2,0,1,1]],[[1,1,2,1],[1,4,1,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,1,1],[3,3,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,1,1],[2,4,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,1,1],[2,3,4,1],[1,0,2,0]],[[1,1,2,1],[1,3,1,1],[2,3,3,1],[2,0,2,0]],[[1,1,2,1],[1,3,1,1],[2,3,3,1],[1,0,3,0]],[[1,1,2,1],[1,4,1,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,1,1],[3,3,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,1,1],[2,4,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,1,1],[2,3,4,1],[1,1,0,1]],[[1,1,2,1],[1,3,1,1],[2,3,3,1],[2,1,0,1]],[[1,1,2,1],[1,4,1,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,1,1],[3,3,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,1,1],[2,4,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,1,1],[2,3,4,1],[1,1,1,0]],[[1,1,2,1],[1,3,1,1],[2,3,3,1],[2,1,1,0]],[[1,2,0,0],[2,3,2,1],[3,2,3,1],[1,0,2,1]],[[1,2,0,0],[2,4,2,1],[2,2,3,1],[1,0,2,1]],[[1,2,0,0],[3,3,2,1],[2,2,3,1],[1,0,2,1]],[[2,2,0,0],[2,3,2,1],[2,2,3,1],[1,0,2,1]],[[1,1,2,1],[1,4,1,1],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[1,3,1,1],[3,3,3,1],[1,2,0,0]],[[1,1,2,1],[1,3,1,1],[2,4,3,1],[1,2,0,0]],[[1,1,2,1],[1,3,1,1],[2,3,3,1],[2,2,0,0]],[[1,2,0,0],[2,3,2,1],[3,2,3,1],[0,2,1,1]],[[1,2,0,0],[2,4,2,1],[2,2,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,2,1],[2,2,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,2,1],[2,2,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,2,1],[3,2,3,1],[0,1,2,1]],[[1,2,0,0],[2,4,2,1],[2,2,3,1],[0,1,2,1]],[[1,2,0,0],[3,3,2,1],[2,2,3,1],[0,1,2,1]],[[2,2,0,0],[2,3,2,1],[2,2,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,2,1],[2,2,3,0],[2,1,2,1]],[[1,2,0,0],[2,3,2,1],[3,2,3,0],[1,1,2,1]],[[1,2,0,0],[2,4,2,1],[2,2,3,0],[1,1,2,1]],[[1,2,0,0],[3,3,2,1],[2,2,3,0],[1,1,2,1]],[[2,2,0,0],[2,3,2,1],[2,2,3,0],[1,1,2,1]],[[1,2,0,0],[2,3,2,1],[3,2,3,0],[0,2,2,1]],[[1,2,0,0],[2,4,2,1],[2,2,3,0],[0,2,2,1]],[[1,2,0,0],[3,3,2,1],[2,2,3,0],[0,2,2,1]],[[2,2,0,0],[2,3,2,1],[2,2,3,0],[0,2,2,1]],[[1,2,0,0],[2,3,2,1],[2,2,2,2],[2,1,2,0]],[[1,2,0,0],[2,3,2,1],[3,2,2,2],[1,1,2,0]],[[1,2,0,0],[2,4,2,1],[2,2,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,2,1],[2,2,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,2,1],[2,2,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,2,1],[3,2,2,2],[0,2,2,0]],[[1,2,0,0],[2,4,2,1],[2,2,2,2],[0,2,2,0]],[[1,2,0,0],[3,3,2,1],[2,2,2,2],[0,2,2,0]],[[2,2,0,0],[2,3,2,1],[2,2,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,2,1],[2,2,2,1],[2,1,2,1]],[[1,2,0,0],[2,3,2,1],[3,2,2,1],[1,1,2,1]],[[1,2,0,0],[2,4,2,1],[2,2,2,1],[1,1,2,1]],[[1,2,0,0],[3,3,2,1],[2,2,2,1],[1,1,2,1]],[[2,2,0,0],[2,3,2,1],[2,2,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,2,1],[3,2,2,1],[0,2,2,1]],[[1,2,0,0],[2,4,2,1],[2,2,2,1],[0,2,2,1]],[[1,2,0,0],[3,3,2,1],[2,2,2,1],[0,2,2,1]],[[2,2,0,0],[2,3,2,1],[2,2,2,1],[0,2,2,1]],[[1,2,0,0],[2,3,2,1],[2,2,1,2],[2,1,2,1]],[[1,2,0,0],[2,3,2,1],[3,2,1,2],[1,1,2,1]],[[1,2,0,0],[2,4,2,1],[2,2,1,2],[1,1,2,1]],[[1,2,0,0],[3,3,2,1],[2,2,1,2],[1,1,2,1]],[[2,2,0,0],[2,3,2,1],[2,2,1,2],[1,1,2,1]],[[1,2,0,0],[2,3,2,1],[3,2,1,2],[0,2,2,1]],[[1,2,0,0],[2,4,2,1],[2,2,1,2],[0,2,2,1]],[[1,2,0,0],[3,3,2,1],[2,2,1,2],[0,2,2,1]],[[2,2,0,0],[2,3,2,1],[2,2,1,2],[0,2,2,1]],[[1,2,0,0],[2,3,2,1],[2,1,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,1],[2,1,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,2,1],[3,1,3,2],[1,2,1,0]],[[1,2,0,0],[2,4,2,1],[2,1,3,2],[1,2,1,0]],[[1,2,0,0],[3,3,2,1],[2,1,3,2],[1,2,1,0]],[[2,2,0,0],[2,3,2,1],[2,1,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,2,1],[2,1,3,2],[1,3,0,1]],[[1,2,0,0],[2,3,2,1],[2,1,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,2,1],[3,1,3,2],[1,2,0,1]],[[1,1,3,1],[1,3,1,2],[0,0,3,2],[1,2,2,1]],[[1,1,2,2],[1,3,1,2],[0,0,3,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,3],[0,0,3,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[0,0,3,3],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[0,0,3,2],[1,2,3,1]],[[1,1,2,1],[1,3,1,2],[0,0,3,2],[1,2,2,2]],[[1,1,3,1],[1,3,1,2],[0,1,2,2],[1,2,2,1]],[[1,1,2,2],[1,3,1,2],[0,1,2,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,3],[0,1,2,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[0,1,2,3],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[0,1,2,2],[2,2,2,1]],[[1,1,2,1],[1,3,1,2],[0,1,2,2],[1,3,2,1]],[[1,1,2,1],[1,3,1,2],[0,1,2,2],[1,2,3,1]],[[1,1,2,1],[1,3,1,2],[0,1,2,2],[1,2,2,2]],[[1,1,2,1],[1,3,1,2],[0,1,4,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[0,1,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,1,2],[0,1,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,1,2],[0,1,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,1,2],[0,1,3,1],[1,2,2,2]],[[1,1,3,1],[1,3,1,2],[0,1,3,2],[1,2,1,1]],[[1,1,2,2],[1,3,1,2],[0,1,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,1,3],[0,1,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[0,1,4,2],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[0,1,3,3],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[0,1,3,2],[1,2,1,2]],[[1,1,3,1],[1,3,1,2],[0,1,3,2],[1,2,2,0]],[[1,1,2,2],[1,3,1,2],[0,1,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,3],[0,1,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[0,1,4,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[0,1,3,3],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[0,1,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,1,2],[0,1,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,1,2],[0,1,3,2],[1,2,3,0]],[[1,1,3,1],[1,3,1,2],[0,2,2,2],[1,1,2,1]],[[1,1,2,2],[1,3,1,2],[0,2,2,2],[1,1,2,1]],[[1,1,2,1],[1,3,1,3],[0,2,2,2],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[0,2,2,3],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[0,2,2,2],[1,1,3,1]],[[1,1,2,1],[1,3,1,2],[0,2,2,2],[1,1,2,2]],[[1,1,2,1],[1,3,1,2],[0,2,4,1],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[0,2,3,1],[1,1,3,1]],[[1,1,2,1],[1,3,1,2],[0,2,3,1],[1,1,2,2]],[[1,1,3,1],[1,3,1,2],[0,2,3,2],[1,0,2,1]],[[1,1,2,2],[1,3,1,2],[0,2,3,2],[1,0,2,1]],[[1,1,2,1],[1,3,1,3],[0,2,3,2],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[0,2,4,2],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[0,2,3,3],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[0,2,3,2],[1,0,2,2]],[[1,1,3,1],[1,3,1,2],[0,2,3,2],[1,1,1,1]],[[1,1,2,2],[1,3,1,2],[0,2,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,3],[0,2,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[0,2,4,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[0,2,3,3],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[0,2,3,2],[1,1,1,2]],[[1,1,3,1],[1,3,1,2],[0,2,3,2],[1,1,2,0]],[[1,1,2,2],[1,3,1,2],[0,2,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,3],[0,2,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[0,2,4,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[0,2,3,3],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[0,2,3,2],[1,1,3,0]],[[1,1,3,1],[1,3,1,2],[0,2,3,2],[1,2,0,1]],[[1,1,2,2],[1,3,1,2],[0,2,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,3],[0,2,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[0,2,4,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[0,2,3,3],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[0,2,3,2],[1,2,0,2]],[[1,1,3,1],[1,3,1,2],[0,2,3,2],[1,2,1,0]],[[1,1,2,2],[1,3,1,2],[0,2,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,3],[0,2,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,2],[0,2,4,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,2],[0,2,3,3],[1,2,1,0]],[[1,2,0,0],[2,4,2,1],[2,1,3,2],[1,2,0,1]],[[1,2,0,0],[3,3,2,1],[2,1,3,2],[1,2,0,1]],[[2,2,0,0],[2,3,2,1],[2,1,3,2],[1,2,0,1]],[[1,1,3,1],[1,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,1,2,2],[1,3,1,2],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,4,1,2],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,3],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[0,4,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[0,3,0,3],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[0,3,0,2],[2,2,2,1]],[[1,1,2,1],[1,3,1,2],[0,3,0,2],[1,3,2,1]],[[1,1,2,1],[1,3,1,2],[0,3,0,2],[1,2,3,1]],[[1,1,2,1],[1,3,1,2],[0,3,0,2],[1,2,2,2]],[[1,1,3,1],[1,3,1,2],[0,3,2,2],[0,1,2,1]],[[1,1,2,2],[1,3,1,2],[0,3,2,2],[0,1,2,1]],[[1,1,2,1],[1,3,1,3],[0,3,2,2],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[0,3,2,3],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[0,3,2,2],[0,1,3,1]],[[1,1,2,1],[1,3,1,2],[0,3,2,2],[0,1,2,2]],[[1,2,0,0],[2,3,2,1],[2,1,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,2,1],[2,1,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,2,1],[3,1,3,1],[1,2,1,1]],[[1,2,0,0],[2,4,2,1],[2,1,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,2,1],[2,1,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,2,1],[2,1,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,2,1],[2,1,3,0],[1,2,3,1]],[[1,1,2,1],[1,3,1,2],[0,3,4,1],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[0,3,3,1],[0,1,3,1]],[[1,1,2,1],[1,3,1,2],[0,3,3,1],[0,1,2,2]],[[1,2,0,0],[2,3,2,1],[2,1,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,2,1],[2,1,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,2,1],[3,1,3,0],[1,2,2,1]],[[1,2,0,0],[2,4,2,1],[2,1,3,0],[1,2,2,1]],[[1,2,0,0],[3,3,2,1],[2,1,3,0],[1,2,2,1]],[[2,2,0,0],[2,3,2,1],[2,1,3,0],[1,2,2,1]],[[1,1,3,1],[1,3,1,2],[0,3,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,1,2],[0,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,1,3],[0,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,1,2],[0,3,4,2],[0,0,2,1]],[[1,1,2,1],[1,3,1,2],[0,3,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,1,2],[0,3,3,2],[0,0,2,2]],[[1,1,3,1],[1,3,1,2],[0,3,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,1,2],[0,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,3],[0,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[0,3,4,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[0,3,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[0,3,3,2],[0,1,1,2]],[[1,1,3,1],[1,3,1,2],[0,3,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,1,2],[0,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,3],[0,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[0,3,4,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[0,3,3,3],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[0,3,3,2],[0,1,3,0]],[[1,1,3,1],[1,3,1,2],[0,3,3,2],[0,2,0,1]],[[1,1,2,2],[1,3,1,2],[0,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,3],[0,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[0,3,4,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[0,3,3,3],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[0,3,3,2],[0,2,0,2]],[[1,1,3,1],[1,3,1,2],[0,3,3,2],[0,2,1,0]],[[1,1,2,2],[1,3,1,2],[0,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,3],[0,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[0,3,4,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[0,3,3,3],[0,2,1,0]],[[1,2,0,0],[2,3,2,1],[2,1,2,2],[1,2,3,0]],[[1,2,0,0],[2,3,2,1],[2,1,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,2,1],[2,1,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,2,1],[3,1,2,2],[1,2,2,0]],[[1,2,0,0],[2,4,2,1],[2,1,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,2,1],[2,1,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,2,1],[2,1,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,2,1],[2,1,2,1],[1,2,2,2]],[[1,2,0,0],[2,3,2,1],[2,1,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,2,1],[2,1,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,2,1],[2,1,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,2,1],[3,1,2,1],[1,2,2,1]],[[1,2,0,0],[2,4,2,1],[2,1,2,1],[1,2,2,1]],[[1,2,0,0],[3,3,2,1],[2,1,2,1],[1,2,2,1]],[[2,2,0,0],[2,3,2,1],[2,1,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[2,1,1,2],[1,2,2,2]],[[1,2,0,0],[2,3,2,1],[2,1,1,2],[1,2,3,1]],[[1,2,0,0],[2,3,2,1],[2,1,1,2],[1,3,2,1]],[[1,2,0,0],[2,3,2,1],[2,1,1,2],[2,2,2,1]],[[1,2,0,0],[2,3,2,1],[2,1,1,3],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[3,1,1,2],[1,2,2,1]],[[1,2,0,0],[2,4,2,1],[2,1,1,2],[1,2,2,1]],[[1,2,0,0],[3,3,2,1],[2,1,1,2],[1,2,2,1]],[[2,2,0,0],[2,3,2,1],[2,1,1,2],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[2,0,3,2],[1,2,3,0]],[[1,2,0,0],[2,3,2,1],[2,0,3,2],[1,3,2,0]],[[1,2,0,0],[2,3,2,1],[2,0,3,2],[2,2,2,0]],[[1,2,0,0],[2,3,2,1],[2,0,3,3],[1,2,2,0]],[[1,2,0,0],[2,3,2,1],[2,0,4,2],[1,2,2,0]],[[1,1,3,1],[1,3,1,2],[1,0,2,2],[1,2,2,1]],[[1,1,2,2],[1,3,1,2],[1,0,2,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,3],[1,0,2,2],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,0,2,3],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,0,2,2],[2,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,0,2,2],[1,3,2,1]],[[1,1,2,1],[1,3,1,2],[1,0,2,2],[1,2,3,1]],[[1,1,2,1],[1,3,1,2],[1,0,2,2],[1,2,2,2]],[[1,1,2,1],[1,3,1,2],[1,0,4,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,0,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,0,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,1,2],[1,0,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,1,2],[1,0,3,1],[1,2,2,2]],[[1,1,3,1],[1,3,1,2],[1,0,3,2],[0,2,2,1]],[[1,1,2,2],[1,3,1,2],[1,0,3,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,3],[1,0,3,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,0,3,3],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,0,3,2],[0,2,3,1]],[[1,1,2,1],[1,3,1,2],[1,0,3,2],[0,2,2,2]],[[1,1,3,1],[1,3,1,2],[1,0,3,2],[1,2,1,1]],[[1,1,2,2],[1,3,1,2],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,1,3],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,0,4,2],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,0,3,3],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,0,3,2],[1,2,1,2]],[[1,1,3,1],[1,3,1,2],[1,0,3,2],[1,2,2,0]],[[1,1,2,2],[1,3,1,2],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,3],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,0,4,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,0,3,3],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,0,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,0,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,1,2],[1,0,3,2],[1,2,3,0]],[[1,1,3,1],[1,3,1,2],[1,1,2,2],[0,2,2,1]],[[1,1,2,2],[1,3,1,2],[1,1,2,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,3],[1,1,2,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,1,2,3],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,1,2,2],[0,3,2,1]],[[1,1,2,1],[1,3,1,2],[1,1,2,2],[0,2,3,1]],[[1,1,2,1],[1,3,1,2],[1,1,2,2],[0,2,2,2]],[[1,1,2,1],[1,3,1,2],[1,1,4,1],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,1,3,1],[0,3,2,1]],[[1,1,2,1],[1,3,1,2],[1,1,3,1],[0,2,3,1]],[[1,1,2,1],[1,3,1,2],[1,1,3,1],[0,2,2,2]],[[1,1,3,1],[1,3,1,2],[1,1,3,2],[0,2,1,1]],[[1,1,2,2],[1,3,1,2],[1,1,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,1,3],[1,1,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,1,4,2],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,1,3,3],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,1,3,2],[0,2,1,2]],[[1,1,3,1],[1,3,1,2],[1,1,3,2],[0,2,2,0]],[[1,1,2,2],[1,3,1,2],[1,1,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,3],[1,1,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,1,4,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,1,3,3],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,1,3,2],[0,3,2,0]],[[1,1,2,1],[1,3,1,2],[1,1,3,2],[0,2,3,0]],[[1,2,0,0],[2,3,2,1],[3,0,3,2],[1,2,2,0]],[[1,2,0,0],[2,4,2,1],[2,0,3,2],[1,2,2,0]],[[1,2,0,0],[3,3,2,1],[2,0,3,2],[1,2,2,0]],[[2,2,0,0],[2,3,2,1],[2,0,3,2],[1,2,2,0]],[[1,2,0,0],[2,3,2,1],[2,0,3,2],[1,2,1,2]],[[1,2,0,0],[2,3,2,1],[2,0,3,3],[1,2,1,1]],[[1,2,0,0],[2,3,2,1],[2,0,4,2],[1,2,1,1]],[[1,2,0,0],[2,3,2,1],[2,0,3,1],[1,2,2,2]],[[1,2,0,0],[2,3,2,1],[2,0,3,1],[1,2,3,1]],[[1,1,3,1],[1,3,1,2],[1,2,2,2],[0,1,2,1]],[[1,1,2,2],[1,3,1,2],[1,2,2,2],[0,1,2,1]],[[1,1,2,1],[1,3,1,3],[1,2,2,2],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[1,2,2,3],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[1,2,2,2],[0,1,3,1]],[[1,1,2,1],[1,3,1,2],[1,2,2,2],[0,1,2,2]],[[1,1,3,1],[1,3,1,2],[1,2,2,2],[1,0,2,1]],[[1,1,2,2],[1,3,1,2],[1,2,2,2],[1,0,2,1]],[[1,1,2,1],[1,3,1,3],[1,2,2,2],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[1,2,2,3],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[1,2,2,2],[1,0,3,1]],[[1,1,2,1],[1,3,1,2],[1,2,2,2],[1,0,2,2]],[[1,2,0,0],[2,3,2,1],[2,0,3,1],[1,3,2,1]],[[1,2,0,0],[2,3,2,1],[2,0,3,1],[2,2,2,1]],[[1,2,0,0],[2,3,2,1],[2,0,4,1],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[3,0,3,1],[1,2,2,1]],[[1,2,0,0],[2,4,2,1],[2,0,3,1],[1,2,2,1]],[[1,2,0,0],[3,3,2,1],[2,0,3,1],[1,2,2,1]],[[2,2,0,0],[2,3,2,1],[2,0,3,1],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[2,0,2,2],[1,2,2,2]],[[1,1,2,1],[1,3,1,2],[1,2,4,1],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,1],[0,1,3,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,1],[0,1,2,2]],[[1,1,2,1],[1,3,1,2],[1,2,4,1],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,1],[1,0,3,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,1],[1,0,2,2]],[[1,2,0,0],[2,3,2,1],[2,0,2,2],[1,2,3,1]],[[1,2,0,0],[2,3,2,1],[2,0,2,2],[1,3,2,1]],[[1,2,0,0],[2,3,2,1],[2,0,2,2],[2,2,2,1]],[[1,2,0,0],[2,3,2,1],[2,0,2,3],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[3,0,2,2],[1,2,2,1]],[[1,1,3,1],[1,3,1,2],[1,2,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,1,2],[1,2,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,1,3],[1,2,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,1,2],[1,2,4,2],[0,0,2,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,2],[0,0,2,2]],[[1,1,3,1],[1,3,1,2],[1,2,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,1,2],[1,2,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,3],[1,2,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[1,2,4,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,2],[0,1,1,2]],[[1,1,3,1],[1,3,1,2],[1,2,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,1,2],[1,2,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,3],[1,2,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[1,2,4,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[1,2,3,3],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[1,2,3,2],[0,1,3,0]],[[1,1,3,1],[1,3,1,2],[1,2,3,2],[0,2,0,1]],[[1,1,2,2],[1,3,1,2],[1,2,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,3],[1,2,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[1,2,4,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,3],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,2],[0,2,0,2]],[[1,1,3,1],[1,3,1,2],[1,2,3,2],[0,2,1,0]],[[1,1,2,2],[1,3,1,2],[1,2,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,3],[1,2,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[1,2,4,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[1,2,3,3],[0,2,1,0]],[[1,2,0,0],[2,4,2,1],[2,0,2,2],[1,2,2,1]],[[1,2,0,0],[3,3,2,1],[2,0,2,2],[1,2,2,1]],[[2,2,0,0],[2,3,2,1],[2,0,2,2],[1,2,2,1]],[[1,1,3,1],[1,3,1,2],[1,2,3,2],[1,0,1,1]],[[1,1,2,2],[1,3,1,2],[1,2,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,3],[1,2,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[1,2,4,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,3],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,2],[1,0,1,2]],[[1,1,3,1],[1,3,1,2],[1,2,3,2],[1,0,2,0]],[[1,1,2,2],[1,3,1,2],[1,2,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,3],[1,2,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[1,2,4,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[1,2,3,3],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[1,2,3,2],[1,0,3,0]],[[1,1,3,1],[1,3,1,2],[1,2,3,2],[1,1,0,1]],[[1,1,2,2],[1,3,1,2],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,3],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[1,2,4,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,3],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[1,2,3,2],[1,1,0,2]],[[1,1,3,1],[1,3,1,2],[1,2,3,2],[1,1,1,0]],[[1,1,2,2],[1,3,1,2],[1,2,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,3],[1,2,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,2],[1,2,4,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,2],[1,2,3,3],[1,1,1,0]],[[1,2,0,0],[2,3,2,1],[1,4,3,2],[1,2,0,0]],[[1,2,0,0],[2,4,2,1],[1,3,3,2],[1,2,0,0]],[[1,2,0,0],[3,3,2,1],[1,3,3,2],[1,2,0,0]],[[2,2,0,0],[2,3,2,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,1],[1,4,1,2],[1,3,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,4,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,3,0,1],[2,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,3,0,1],[1,3,2,1]],[[1,1,2,1],[1,3,1,2],[1,3,0,1],[1,2,3,1]],[[1,1,2,1],[1,3,1,2],[1,3,0,1],[1,2,2,2]],[[1,1,3,1],[1,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,1,2,2],[1,3,1,2],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,4,1,2],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,3],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,4,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,3,0,3],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,3,0,2],[0,3,2,1]],[[1,1,2,1],[1,3,1,2],[1,3,0,2],[0,2,3,1]],[[1,1,2,1],[1,3,1,2],[1,3,0,2],[0,2,2,2]],[[1,1,2,1],[1,4,1,2],[1,3,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,4,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,3,0,2],[2,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,3,0,2],[1,3,1,1]],[[1,1,2,1],[1,4,1,2],[1,3,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,4,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,3,0,2],[2,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,3,0,2],[1,3,2,0]],[[1,1,2,1],[1,3,1,2],[1,3,0,2],[1,2,3,0]],[[1,1,2,1],[1,4,1,2],[1,3,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,4,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,3,1,0],[2,2,2,1]],[[1,1,2,1],[1,3,1,2],[1,3,1,0],[1,3,2,1]],[[1,1,2,1],[1,3,1,2],[1,3,1,0],[1,2,3,1]],[[1,1,2,1],[1,3,1,2],[1,3,1,0],[1,2,2,2]],[[1,1,2,1],[1,4,1,2],[1,3,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,4,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,3,1,1],[2,2,2,0]],[[1,1,2,1],[1,3,1,2],[1,3,1,1],[1,3,2,0]],[[1,1,2,1],[1,3,1,2],[1,3,1,1],[1,2,3,0]],[[1,1,2,1],[1,4,1,2],[1,3,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[1,4,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[1,3,1,2],[2,2,0,1]],[[1,1,2,1],[1,3,1,2],[1,3,1,2],[1,3,0,1]],[[1,1,2,1],[1,4,1,2],[1,3,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,2],[1,4,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,2],[1,3,1,2],[2,2,1,0]],[[1,1,2,1],[1,3,1,2],[1,3,1,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,1],[1,3,3,3],[1,1,1,0]],[[1,2,0,0],[2,3,2,1],[1,3,4,2],[1,1,1,0]],[[1,2,0,0],[2,3,2,1],[1,4,3,2],[1,1,1,0]],[[1,2,0,0],[2,4,2,1],[1,3,3,2],[1,1,1,0]],[[1,2,0,0],[3,3,2,1],[1,3,3,2],[1,1,1,0]],[[2,2,0,0],[2,3,2,1],[1,3,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,2,1],[1,3,3,2],[1,1,0,2]],[[1,2,0,0],[2,3,2,1],[1,3,3,3],[1,1,0,1]],[[1,2,0,0],[2,3,2,1],[1,3,4,2],[1,1,0,1]],[[1,2,0,0],[2,3,2,1],[1,4,3,2],[1,1,0,1]],[[1,1,2,1],[1,4,1,2],[1,3,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,4,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,3,2,0],[2,2,1,1]],[[1,1,2,1],[1,3,1,2],[1,3,2,0],[1,3,1,1]],[[1,1,2,1],[1,4,1,2],[1,3,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[1,4,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[1,3,2,1],[2,2,0,1]],[[1,1,2,1],[1,3,1,2],[1,3,2,1],[1,3,0,1]],[[1,1,2,1],[1,4,1,2],[1,3,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,1,2],[1,4,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,1,2],[1,3,2,1],[2,2,1,0]],[[1,1,2,1],[1,3,1,2],[1,3,2,1],[1,3,1,0]],[[1,2,0,0],[2,4,2,1],[1,3,3,2],[1,1,0,1]],[[1,2,0,0],[3,3,2,1],[1,3,3,2],[1,1,0,1]],[[2,2,0,0],[2,3,2,1],[1,3,3,2],[1,1,0,1]],[[1,2,0,0],[2,3,2,1],[1,3,3,2],[1,0,3,0]],[[1,2,0,0],[2,3,2,1],[1,3,3,3],[1,0,2,0]],[[1,2,0,0],[2,3,2,1],[1,3,4,2],[1,0,2,0]],[[1,2,0,0],[2,3,2,1],[1,4,3,2],[1,0,2,0]],[[1,2,0,0],[2,4,2,1],[1,3,3,2],[1,0,2,0]],[[1,2,0,0],[3,3,2,1],[1,3,3,2],[1,0,2,0]],[[2,2,0,0],[2,3,2,1],[1,3,3,2],[1,0,2,0]],[[1,2,0,0],[2,3,2,1],[1,3,3,2],[1,0,1,2]],[[1,2,0,0],[2,3,2,1],[1,3,3,3],[1,0,1,1]],[[1,2,0,0],[2,3,2,1],[1,3,4,2],[1,0,1,1]],[[1,2,0,0],[2,3,2,1],[1,4,3,2],[1,0,1,1]],[[1,2,0,0],[2,4,2,1],[1,3,3,2],[1,0,1,1]],[[1,2,0,0],[3,3,2,1],[1,3,3,2],[1,0,1,1]],[[2,2,0,0],[2,3,2,1],[1,3,3,2],[1,0,1,1]],[[1,2,0,0],[2,3,2,1],[1,3,3,2],[0,3,1,0]],[[1,2,0,0],[2,3,2,1],[1,3,3,3],[0,2,1,0]],[[1,2,0,0],[2,3,2,1],[1,3,4,2],[0,2,1,0]],[[1,2,0,0],[2,3,2,1],[1,4,3,2],[0,2,1,0]],[[1,2,0,0],[2,4,2,1],[1,3,3,2],[0,2,1,0]],[[1,2,0,0],[3,3,2,1],[1,3,3,2],[0,2,1,0]],[[2,2,0,0],[2,3,2,1],[1,3,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,2,1],[1,3,3,2],[0,2,0,2]],[[1,2,0,0],[2,3,2,1],[1,3,3,2],[0,3,0,1]],[[1,2,0,0],[2,3,2,1],[1,3,3,3],[0,2,0,1]],[[1,2,0,0],[2,3,2,1],[1,3,4,2],[0,2,0,1]],[[1,2,0,0],[2,3,2,1],[1,4,3,2],[0,2,0,1]],[[1,2,0,0],[2,4,2,1],[1,3,3,2],[0,2,0,1]],[[1,2,0,0],[3,3,2,1],[1,3,3,2],[0,2,0,1]],[[2,2,0,0],[2,3,2,1],[1,3,3,2],[0,2,0,1]],[[1,2,0,0],[2,3,2,1],[1,3,3,2],[0,1,3,0]],[[1,2,0,0],[2,3,2,1],[1,3,3,3],[0,1,2,0]],[[1,2,0,0],[2,3,2,1],[1,3,4,2],[0,1,2,0]],[[1,2,0,0],[2,3,2,1],[1,4,3,2],[0,1,2,0]],[[1,2,0,0],[2,4,2,1],[1,3,3,2],[0,1,2,0]],[[1,2,0,0],[3,3,2,1],[1,3,3,2],[0,1,2,0]],[[2,2,0,0],[2,3,2,1],[1,3,3,2],[0,1,2,0]],[[1,2,0,0],[2,3,2,1],[1,3,3,2],[0,1,1,2]],[[1,2,0,0],[2,3,2,1],[1,3,3,3],[0,1,1,1]],[[1,2,0,0],[2,3,2,1],[1,3,4,2],[0,1,1,1]],[[1,2,0,0],[2,3,2,1],[1,4,3,2],[0,1,1,1]],[[1,2,0,0],[2,4,2,1],[1,3,3,2],[0,1,1,1]],[[1,1,3,1],[1,3,1,2],[1,3,3,2],[0,0,1,1]],[[1,1,2,2],[1,3,1,2],[1,3,3,2],[0,0,1,1]],[[1,1,2,1],[1,3,1,3],[1,3,3,2],[0,0,1,1]],[[1,1,2,1],[1,3,1,2],[1,3,4,2],[0,0,1,1]],[[1,1,2,1],[1,3,1,2],[1,3,3,3],[0,0,1,1]],[[1,1,2,1],[1,3,1,2],[1,3,3,2],[0,0,1,2]],[[1,1,3,1],[1,3,1,2],[1,3,3,2],[0,0,2,0]],[[1,1,2,2],[1,3,1,2],[1,3,3,2],[0,0,2,0]],[[1,1,2,1],[1,3,1,3],[1,3,3,2],[0,0,2,0]],[[1,1,2,1],[1,3,1,2],[1,3,4,2],[0,0,2,0]],[[1,1,2,1],[1,3,1,2],[1,3,3,3],[0,0,2,0]],[[1,2,0,0],[3,3,2,1],[1,3,3,2],[0,1,1,1]],[[2,2,0,0],[2,3,2,1],[1,3,3,2],[0,1,1,1]],[[1,2,0,0],[2,3,2,1],[1,3,3,2],[0,0,2,2]],[[1,2,0,0],[2,3,2,1],[1,3,3,3],[0,0,2,1]],[[1,2,0,0],[2,3,2,1],[1,3,4,2],[0,0,2,1]],[[1,2,0,0],[2,3,2,1],[1,4,3,1],[1,2,0,1]],[[1,2,0,0],[2,4,2,1],[1,3,3,1],[1,2,0,1]],[[1,2,0,0],[3,3,2,1],[1,3,3,1],[1,2,0,1]],[[2,2,0,0],[2,3,2,1],[1,3,3,1],[1,2,0,1]],[[1,2,0,0],[2,3,2,1],[1,3,4,1],[1,1,1,1]],[[1,2,0,0],[2,3,2,1],[1,4,3,1],[1,1,1,1]],[[1,2,0,0],[2,4,2,1],[1,3,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,2,1],[1,3,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,2,1],[1,3,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,2,1],[1,3,3,1],[1,0,2,2]],[[1,2,0,0],[2,3,2,1],[1,3,3,1],[1,0,3,1]],[[1,2,0,0],[2,3,2,1],[1,3,4,1],[1,0,2,1]],[[1,2,0,0],[2,3,2,1],[1,4,3,1],[1,0,2,1]],[[1,2,0,0],[2,4,2,1],[1,3,3,1],[1,0,2,1]],[[1,2,0,0],[3,3,2,1],[1,3,3,1],[1,0,2,1]],[[2,2,0,0],[2,3,2,1],[1,3,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,2,1],[1,3,3,1],[0,3,1,1]],[[1,2,0,0],[2,3,2,1],[1,3,4,1],[0,2,1,1]],[[1,2,0,0],[2,3,2,1],[1,4,3,1],[0,2,1,1]],[[1,2,0,0],[2,4,2,1],[1,3,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,2,1],[1,3,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,2,1],[1,3,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,2,1],[1,3,3,1],[0,1,2,2]],[[1,2,0,0],[2,3,2,1],[1,3,3,1],[0,1,3,1]],[[1,2,0,0],[2,3,2,1],[1,3,4,1],[0,1,2,1]],[[1,2,0,0],[2,3,2,1],[1,4,3,1],[0,1,2,1]],[[1,2,0,0],[2,4,2,1],[1,3,3,1],[0,1,2,1]],[[1,2,0,0],[3,3,2,1],[1,3,3,1],[0,1,2,1]],[[2,2,0,0],[2,3,2,1],[1,3,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,2,1],[1,4,3,0],[1,1,2,1]],[[1,2,0,0],[2,4,2,1],[1,3,3,0],[1,1,2,1]],[[1,2,0,0],[3,3,2,1],[1,3,3,0],[1,1,2,1]],[[2,2,0,0],[2,3,2,1],[1,3,3,0],[1,1,2,1]],[[1,2,0,0],[2,3,2,1],[1,3,3,0],[0,2,3,1]],[[1,2,0,0],[2,3,2,1],[1,3,3,0],[0,3,2,1]],[[1,2,0,0],[2,3,2,1],[1,4,3,0],[0,2,2,1]],[[1,2,0,0],[2,4,2,1],[1,3,3,0],[0,2,2,1]],[[1,2,0,0],[3,3,2,1],[1,3,3,0],[0,2,2,1]],[[2,2,0,0],[2,3,2,1],[1,3,3,0],[0,2,2,1]],[[1,2,0,0],[2,3,2,1],[1,4,2,2],[1,1,2,0]],[[1,2,0,0],[2,4,2,1],[1,3,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,2,1],[1,3,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,2,1],[1,3,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,2,1],[1,3,2,2],[1,0,2,2]],[[1,2,0,0],[2,3,2,1],[1,3,2,2],[1,0,3,1]],[[1,2,0,0],[2,3,2,1],[1,3,2,3],[1,0,2,1]],[[1,2,0,0],[2,3,2,1],[1,3,2,2],[0,2,3,0]],[[1,2,0,0],[2,3,2,1],[1,3,2,2],[0,3,2,0]],[[1,2,0,0],[2,3,2,1],[1,4,2,2],[0,2,2,0]],[[1,2,0,0],[2,4,2,1],[1,3,2,2],[0,2,2,0]],[[1,2,0,0],[3,3,2,1],[1,3,2,2],[0,2,2,0]],[[2,2,0,0],[2,3,2,1],[1,3,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,2,1],[1,3,2,2],[0,1,2,2]],[[1,2,0,0],[2,3,2,1],[1,3,2,2],[0,1,3,1]],[[1,2,0,0],[2,3,2,1],[1,3,2,3],[0,1,2,1]],[[1,2,0,0],[2,3,2,1],[1,4,2,1],[1,1,2,1]],[[1,2,0,0],[2,4,2,1],[1,3,2,1],[1,1,2,1]],[[1,1,3,1],[1,3,1,2],[2,0,2,2],[0,2,2,1]],[[1,1,2,2],[1,3,1,2],[2,0,2,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,3],[2,0,2,2],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,0,2,3],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,0,2,2],[0,3,2,1]],[[1,1,2,1],[1,3,1,2],[2,0,2,2],[0,2,3,1]],[[1,1,2,1],[1,3,1,2],[2,0,2,2],[0,2,2,2]],[[1,1,3,1],[1,3,1,2],[2,0,2,2],[1,1,2,1]],[[1,1,2,2],[1,3,1,2],[2,0,2,2],[1,1,2,1]],[[1,1,2,1],[1,3,1,3],[2,0,2,2],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,0,2,3],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,0,2,2],[1,1,3,1]],[[1,1,2,1],[1,3,1,2],[2,0,2,2],[1,1,2,2]],[[1,1,2,1],[1,3,1,2],[2,0,4,1],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,0,3,1],[0,3,2,1]],[[1,1,2,1],[1,3,1,2],[2,0,3,1],[0,2,3,1]],[[1,1,2,1],[1,3,1,2],[2,0,3,1],[0,2,2,2]],[[1,1,2,1],[1,3,1,2],[2,0,4,1],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,0,3,1],[1,1,3,1]],[[1,1,2,1],[1,3,1,2],[2,0,3,1],[1,1,2,2]],[[1,1,3,1],[1,3,1,2],[2,0,3,2],[0,2,1,1]],[[1,1,2,2],[1,3,1,2],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,1,3],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[2,0,4,2],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[2,0,3,3],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[2,0,3,2],[0,2,1,2]],[[1,1,3,1],[1,3,1,2],[2,0,3,2],[0,2,2,0]],[[1,1,2,2],[1,3,1,2],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,3],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,0,4,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,0,3,3],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,0,3,2],[0,3,2,0]],[[1,1,2,1],[1,3,1,2],[2,0,3,2],[0,2,3,0]],[[1,1,3,1],[1,3,1,2],[2,0,3,2],[1,1,1,1]],[[1,1,2,2],[1,3,1,2],[2,0,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,3],[2,0,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,0,4,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,0,3,3],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,0,3,2],[1,1,1,2]],[[1,1,3,1],[1,3,1,2],[2,0,3,2],[1,1,2,0]],[[1,1,2,2],[1,3,1,2],[2,0,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,3],[2,0,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,0,4,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,0,3,3],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,0,3,2],[1,1,3,0]],[[1,1,3,1],[1,3,1,2],[2,0,3,2],[1,2,0,1]],[[1,1,2,2],[1,3,1,2],[2,0,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,3],[2,0,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,0,4,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,0,3,3],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,0,3,2],[1,2,0,2]],[[1,1,3,1],[1,3,1,2],[2,0,3,2],[1,2,1,0]],[[1,1,2,2],[1,3,1,2],[2,0,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,3],[2,0,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,0,4,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,0,3,3],[1,2,1,0]],[[1,2,0,0],[3,3,2,1],[1,3,2,1],[1,1,2,1]],[[2,2,0,0],[2,3,2,1],[1,3,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,2,1],[1,3,2,1],[0,2,2,2]],[[1,2,0,0],[2,3,2,1],[1,3,2,1],[0,2,3,1]],[[1,2,0,0],[2,3,2,1],[1,3,2,1],[0,3,2,1]],[[1,2,0,0],[2,3,2,1],[1,4,2,1],[0,2,2,1]],[[1,2,0,0],[2,4,2,1],[1,3,2,1],[0,2,2,1]],[[1,2,0,0],[3,3,2,1],[1,3,2,1],[0,2,2,1]],[[2,2,0,0],[2,3,2,1],[1,3,2,1],[0,2,2,1]],[[1,1,3,1],[1,3,1,2],[2,1,2,2],[0,1,2,1]],[[1,1,2,2],[1,3,1,2],[2,1,2,2],[0,1,2,1]],[[1,1,2,1],[1,3,1,3],[2,1,2,2],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,1,2,3],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,1,2,2],[0,1,3,1]],[[1,1,2,1],[1,3,1,2],[2,1,2,2],[0,1,2,2]],[[1,1,3,1],[1,3,1,2],[2,1,2,2],[1,0,2,1]],[[1,1,2,2],[1,3,1,2],[2,1,2,2],[1,0,2,1]],[[1,1,2,1],[1,3,1,3],[2,1,2,2],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[2,1,2,3],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[2,1,2,2],[1,0,3,1]],[[1,1,2,1],[1,3,1,2],[2,1,2,2],[1,0,2,2]],[[1,2,0,0],[2,3,2,1],[1,4,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,1,4,1],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,1],[0,1,3,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,1],[0,1,2,2]],[[1,1,2,1],[1,3,1,2],[2,1,4,1],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,1],[1,0,3,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,1],[1,0,2,2]],[[1,2,0,0],[2,4,2,1],[1,3,1,2],[1,1,2,1]],[[1,2,0,0],[3,3,2,1],[1,3,1,2],[1,1,2,1]],[[2,2,0,0],[2,3,2,1],[1,3,1,2],[1,1,2,1]],[[1,2,0,0],[2,3,2,1],[1,3,1,2],[0,2,2,2]],[[1,2,0,0],[2,3,2,1],[1,3,1,2],[0,2,3,1]],[[1,2,0,0],[2,3,2,1],[1,3,1,2],[0,3,2,1]],[[1,1,3,1],[1,3,1,2],[2,1,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,1,2],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,1,3],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,1,2],[2,1,4,2],[0,0,2,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,2],[0,0,2,2]],[[1,1,3,1],[1,3,1,2],[2,1,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,1,2],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,3],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,1,4,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,2],[0,1,1,2]],[[1,1,3,1],[1,3,1,2],[2,1,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,1,2],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,3],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,1,4,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,1,3,3],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,1,3,2],[0,1,3,0]],[[1,1,3,1],[1,3,1,2],[2,1,3,2],[0,2,0,1]],[[1,1,2,2],[1,3,1,2],[2,1,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,3],[2,1,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,1,4,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,3],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,2],[0,2,0,2]],[[1,1,3,1],[1,3,1,2],[2,1,3,2],[0,2,1,0]],[[1,1,2,2],[1,3,1,2],[2,1,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,3],[2,1,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,1,4,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,1,3,3],[0,2,1,0]],[[1,2,0,0],[2,3,2,1],[1,3,1,3],[0,2,2,1]],[[1,2,0,0],[2,3,2,1],[1,4,1,2],[0,2,2,1]],[[1,2,0,0],[2,4,2,1],[1,3,1,2],[0,2,2,1]],[[1,2,0,0],[3,3,2,1],[1,3,1,2],[0,2,2,1]],[[2,2,0,0],[2,3,2,1],[1,3,1,2],[0,2,2,1]],[[1,1,3,1],[1,3,1,2],[2,1,3,2],[1,0,1,1]],[[1,1,2,2],[1,3,1,2],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,3],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[2,1,4,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,3],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,2],[1,0,1,2]],[[1,1,3,1],[1,3,1,2],[2,1,3,2],[1,0,2,0]],[[1,1,2,2],[1,3,1,2],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,3],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[2,1,4,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[2,1,3,3],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[2,1,3,2],[1,0,3,0]],[[1,1,3,1],[1,3,1,2],[2,1,3,2],[1,1,0,1]],[[1,1,2,2],[1,3,1,2],[2,1,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,3],[2,1,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[2,1,4,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,3],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[2,1,3,2],[1,1,0,2]],[[1,1,3,1],[1,3,1,2],[2,1,3,2],[1,1,1,0]],[[1,1,2,2],[1,3,1,2],[2,1,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,3],[2,1,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,2],[2,1,4,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,2],[2,1,3,3],[1,1,1,0]],[[1,2,0,0],[2,3,2,1],[1,2,3,2],[0,2,3,0]],[[1,2,0,0],[2,3,2,1],[1,2,3,2],[0,3,2,0]],[[1,2,0,0],[2,3,2,1],[1,2,3,3],[0,2,2,0]],[[1,2,0,0],[2,3,2,1],[1,2,4,2],[0,2,2,0]],[[1,2,0,0],[2,3,2,1],[1,2,3,2],[0,2,1,2]],[[1,2,0,0],[2,3,2,1],[1,2,3,3],[0,2,1,1]],[[1,2,0,0],[2,3,2,1],[1,2,4,2],[0,2,1,1]],[[1,2,0,0],[2,3,2,1],[1,2,3,1],[0,2,2,2]],[[1,2,0,0],[2,3,2,1],[1,2,3,1],[0,2,3,1]],[[1,2,0,0],[2,3,2,1],[1,2,3,1],[0,3,2,1]],[[1,2,0,0],[2,3,2,1],[1,2,4,1],[0,2,2,1]],[[1,2,0,0],[2,3,2,1],[1,2,2,2],[0,2,2,2]],[[1,1,2,1],[1,3,1,2],[3,2,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,2,0,1],[2,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,2,0,1],[1,3,2,1]],[[1,1,2,1],[1,3,1,2],[2,2,0,1],[1,2,3,1]],[[1,1,2,1],[1,3,1,2],[2,2,0,1],[1,2,2,2]],[[1,1,2,1],[1,3,1,2],[3,2,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[2,2,0,2],[2,2,1,1]],[[1,1,2,1],[1,3,1,2],[2,2,0,2],[1,3,1,1]],[[1,1,2,1],[1,3,1,2],[3,2,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,2,0,2],[2,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,2,0,2],[1,3,2,0]],[[1,1,2,1],[1,3,1,2],[2,2,0,2],[1,2,3,0]],[[1,1,2,1],[1,3,1,2],[3,2,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,2,1,0],[2,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,2,1,0],[1,3,2,1]],[[1,1,2,1],[1,3,1,2],[2,2,1,0],[1,2,3,1]],[[1,1,2,1],[1,3,1,2],[2,2,1,0],[1,2,2,2]],[[1,1,2,1],[1,3,1,2],[3,2,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,2,1,1],[2,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,2,1,1],[1,3,2,0]],[[1,1,2,1],[1,3,1,2],[2,2,1,1],[1,2,3,0]],[[1,1,2,1],[1,3,1,2],[3,2,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,2,1,2],[2,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,2,1,2],[1,3,0,1]],[[1,1,2,1],[1,3,1,2],[3,2,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,2,1,2],[2,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,2,1,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,1],[1,2,2,2],[0,2,3,1]],[[1,2,0,0],[2,3,2,1],[1,2,2,2],[0,3,2,1]],[[1,2,0,0],[2,3,2,1],[1,2,2,3],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[3,2,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,1,2],[2,2,2,0],[2,2,1,1]],[[1,1,2,1],[1,3,1,2],[2,2,2,0],[1,3,1,1]],[[1,1,2,1],[1,3,1,2],[3,2,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,2,2,1],[2,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,2,2,1],[1,3,0,1]],[[1,1,2,1],[1,3,1,2],[3,2,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,2,2,1],[2,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,2,2,1],[1,3,1,0]],[[1,2,0,0],[2,3,2,1],[0,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,1],[0,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,2,1],[0,3,3,3],[1,2,1,0]],[[1,2,0,0],[2,3,2,1],[0,3,4,2],[1,2,1,0]],[[1,2,0,0],[2,3,2,1],[0,4,3,2],[1,2,1,0]],[[1,2,0,0],[2,4,2,1],[0,3,3,2],[1,2,1,0]],[[1,2,0,0],[3,3,2,1],[0,3,3,2],[1,2,1,0]],[[2,2,0,0],[2,3,2,1],[0,3,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,2,1],[0,3,3,2],[1,2,0,2]],[[1,2,0,0],[2,3,2,1],[0,3,3,2],[1,3,0,1]],[[1,2,0,0],[2,3,2,1],[0,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,2,1],[0,3,3,3],[1,2,0,1]],[[1,2,0,0],[2,3,2,1],[0,3,4,2],[1,2,0,1]],[[1,2,0,0],[2,3,2,1],[0,4,3,2],[1,2,0,1]],[[1,2,0,0],[2,4,2,1],[0,3,3,2],[1,2,0,1]],[[1,2,0,0],[3,3,2,1],[0,3,3,2],[1,2,0,1]],[[2,2,0,0],[2,3,2,1],[0,3,3,2],[1,2,0,1]],[[1,2,0,0],[2,3,2,1],[0,3,3,2],[1,1,3,0]],[[1,2,0,0],[2,3,2,1],[0,3,3,3],[1,1,2,0]],[[1,2,0,0],[2,3,2,1],[0,3,4,2],[1,1,2,0]],[[1,2,0,0],[2,3,2,1],[0,4,3,2],[1,1,2,0]],[[1,2,0,0],[2,4,2,1],[0,3,3,2],[1,1,2,0]],[[1,2,0,0],[3,3,2,1],[0,3,3,2],[1,1,2,0]],[[2,2,0,0],[2,3,2,1],[0,3,3,2],[1,1,2,0]],[[1,2,0,0],[2,3,2,1],[0,3,3,2],[1,1,1,2]],[[1,2,0,0],[2,3,2,1],[0,3,3,3],[1,1,1,1]],[[1,2,0,0],[2,3,2,1],[0,3,4,2],[1,1,1,1]],[[1,2,0,0],[2,3,2,1],[0,4,3,2],[1,1,1,1]],[[1,2,0,0],[2,4,2,1],[0,3,3,2],[1,1,1,1]],[[1,2,0,0],[3,3,2,1],[0,3,3,2],[1,1,1,1]],[[2,2,0,0],[2,3,2,1],[0,3,3,2],[1,1,1,1]],[[1,2,0,0],[2,3,2,1],[0,3,3,2],[1,0,2,2]],[[1,2,0,0],[2,3,2,1],[0,3,3,3],[1,0,2,1]],[[1,2,0,0],[2,3,2,1],[0,3,4,2],[1,0,2,1]],[[1,2,0,0],[2,3,2,1],[0,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,2,1],[0,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,2,1],[0,3,4,1],[1,2,1,1]],[[1,2,0,0],[2,3,2,1],[0,4,3,1],[1,2,1,1]],[[1,2,0,0],[2,4,2,1],[0,3,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,2,1],[0,3,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,2,1],[0,3,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,2,1],[0,3,3,1],[1,1,2,2]],[[1,2,0,0],[2,3,2,1],[0,3,3,1],[1,1,3,1]],[[1,2,0,0],[2,3,2,1],[0,3,4,1],[1,1,2,1]],[[1,2,0,0],[2,3,2,1],[0,4,3,1],[1,1,2,1]],[[1,2,0,0],[2,4,2,1],[0,3,3,1],[1,1,2,1]],[[1,2,0,0],[3,3,2,1],[0,3,3,1],[1,1,2,1]],[[2,2,0,0],[2,3,2,1],[0,3,3,1],[1,1,2,1]],[[1,2,0,0],[2,3,2,1],[0,3,3,0],[1,2,3,1]],[[1,2,0,0],[2,3,2,1],[0,3,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,2,1],[0,3,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,2,1],[0,4,3,0],[1,2,2,1]],[[1,2,0,0],[2,4,2,1],[0,3,3,0],[1,2,2,1]],[[1,2,0,0],[3,3,2,1],[0,3,3,0],[1,2,2,1]],[[2,2,0,0],[2,3,2,1],[0,3,3,0],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[0,3,2,2],[1,2,3,0]],[[1,2,0,0],[2,3,2,1],[0,3,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,2,1],[0,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,2,1],[0,4,2,2],[1,2,2,0]],[[1,2,0,0],[2,4,2,1],[0,3,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,2,1],[0,3,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,2,1],[0,3,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,2,1],[0,3,2,2],[1,1,2,2]],[[1,2,0,0],[2,3,2,1],[0,3,2,2],[1,1,3,1]],[[1,2,0,0],[2,3,2,1],[0,3,2,3],[1,1,2,1]],[[1,2,0,0],[2,3,2,1],[0,3,2,1],[1,2,2,2]],[[1,2,0,0],[2,3,2,1],[0,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,2,1],[0,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,2,1],[0,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,2,1],[0,4,2,1],[1,2,2,1]],[[1,2,0,0],[2,4,2,1],[0,3,2,1],[1,2,2,1]],[[1,2,0,0],[3,3,2,1],[0,3,2,1],[1,2,2,1]],[[2,2,0,0],[2,3,2,1],[0,3,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[0,3,1,2],[1,2,2,2]],[[1,2,0,0],[2,3,2,1],[0,3,1,2],[1,2,3,1]],[[1,2,0,0],[2,3,2,1],[0,3,1,2],[1,3,2,1]],[[1,2,0,0],[2,3,2,1],[0,3,1,2],[2,2,2,1]],[[1,2,0,0],[2,3,2,1],[0,3,1,3],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[0,4,1,2],[1,2,2,1]],[[1,2,0,0],[2,4,2,1],[0,3,1,2],[1,2,2,1]],[[1,2,0,0],[3,3,2,1],[0,3,1,2],[1,2,2,1]],[[2,2,0,0],[2,3,2,1],[0,3,1,2],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[0,2,3,2],[1,2,3,0]],[[1,2,0,0],[2,3,2,1],[0,2,3,2],[1,3,2,0]],[[1,2,0,0],[2,3,2,1],[0,2,3,2],[2,2,2,0]],[[1,2,0,0],[2,3,2,1],[0,2,3,3],[1,2,2,0]],[[1,2,0,0],[2,3,2,1],[0,2,4,2],[1,2,2,0]],[[1,2,0,0],[2,3,2,1],[0,2,3,2],[1,2,1,2]],[[1,2,0,0],[2,3,2,1],[0,2,3,3],[1,2,1,1]],[[1,2,0,0],[2,3,2,1],[0,2,4,2],[1,2,1,1]],[[1,2,0,0],[2,3,2,1],[0,2,3,1],[1,2,2,2]],[[1,2,0,0],[2,3,2,1],[0,2,3,1],[1,2,3,1]],[[1,2,0,0],[2,3,2,1],[0,2,3,1],[1,3,2,1]],[[1,2,0,0],[2,3,2,1],[0,2,3,1],[2,2,2,1]],[[1,2,0,0],[2,3,2,1],[0,2,4,1],[1,2,2,1]],[[1,2,0,0],[2,3,2,1],[0,2,2,2],[1,2,2,2]],[[1,2,0,0],[2,3,2,1],[0,2,2,2],[1,2,3,1]],[[1,2,0,0],[2,3,2,1],[0,2,2,2],[1,3,2,1]],[[1,2,0,0],[2,3,2,1],[0,2,2,2],[2,2,2,1]],[[1,2,0,0],[2,3,2,1],[0,2,2,3],[1,2,2,1]],[[1,2,0,0],[2,3,2,0],[2,3,3,2],[2,2,0,0]],[[1,2,0,0],[2,3,2,0],[2,4,3,2],[1,2,0,0]],[[1,2,0,0],[2,3,2,0],[3,3,3,2],[1,2,0,0]],[[1,2,0,0],[3,3,2,0],[2,3,3,2],[1,2,0,0]],[[2,2,0,0],[2,3,2,0],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,1,2],[3,3,0,0],[1,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,3,0,0],[2,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,3,0,0],[1,3,2,1]],[[1,1,2,1],[1,4,1,2],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[3,3,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,4,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,3,0,1],[0,3,2,1]],[[1,1,2,1],[1,3,1,2],[2,3,0,1],[0,2,3,1]],[[1,1,2,1],[1,3,1,2],[2,3,0,1],[0,2,2,2]],[[1,1,2,1],[1,4,1,2],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[3,3,0,1],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,4,0,1],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,3,0,1],[2,1,2,1]],[[1,1,2,1],[1,3,1,2],[3,3,0,1],[1,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,3,0,1],[2,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,3,0,1],[1,3,2,0]],[[1,1,2,1],[1,4,1,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[3,3,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,4,0,2],[0,1,2,1]],[[1,1,2,1],[1,4,1,2],[2,3,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[3,3,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[2,4,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[2,3,0,2],[0,3,1,1]],[[1,1,2,1],[1,4,1,2],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[3,3,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,4,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,3,0,2],[0,3,2,0]],[[1,1,2,1],[1,3,1,2],[2,3,0,2],[0,2,3,0]],[[1,1,2,1],[1,4,1,2],[2,3,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[3,3,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[2,4,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[2,3,0,2],[2,0,2,1]],[[1,1,2,1],[1,4,1,2],[2,3,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[3,3,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,4,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,3,0,2],[2,1,1,1]],[[1,1,2,1],[1,4,1,2],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[3,3,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,4,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,3,0,2],[2,1,2,0]],[[1,1,2,1],[1,4,1,2],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[3,3,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,4,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,1,2],[2,3,1,0],[0,3,2,1]],[[1,1,2,1],[1,3,1,2],[2,3,1,0],[0,2,3,1]],[[1,1,2,1],[1,3,1,2],[2,3,1,0],[0,2,2,2]],[[1,1,2,1],[1,4,1,2],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[3,3,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,4,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,3,1,0],[2,1,2,1]],[[1,1,2,1],[1,4,1,2],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[3,3,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,4,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,1,2],[2,3,1,1],[0,3,2,0]],[[1,1,2,1],[1,3,1,2],[2,3,1,1],[0,2,3,0]],[[1,1,2,1],[1,4,1,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[3,3,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,4,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,3,1,1],[2,1,2,0]],[[1,2,0,0],[2,3,2,0],[2,3,3,2],[2,1,1,0]],[[1,2,0,0],[2,3,2,0],[2,4,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,2,0],[3,3,3,2],[1,1,1,0]],[[1,2,0,0],[3,3,2,0],[2,3,3,2],[1,1,1,0]],[[2,2,0,0],[2,3,2,0],[2,3,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,2,0],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[1,4,1,2],[2,3,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[3,3,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,4,1,2],[0,1,1,1]],[[1,1,2,1],[1,4,1,2],[2,3,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[3,3,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,4,1,2],[0,1,2,0]],[[1,1,2,1],[1,4,1,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[3,3,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,4,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,3,1,2],[0,3,0,1]],[[1,1,2,1],[1,4,1,2],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[3,3,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,4,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,3,1,2],[0,3,1,0]],[[1,2,0,0],[2,3,2,0],[2,4,3,2],[1,1,0,1]],[[1,2,0,0],[2,3,2,0],[3,3,3,2],[1,1,0,1]],[[1,2,0,0],[3,3,2,0],[2,3,3,2],[1,1,0,1]],[[2,2,0,0],[2,3,2,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,4,1,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[3,3,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[2,4,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[2,3,1,2],[2,0,1,1]],[[1,1,2,1],[1,4,1,2],[2,3,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[3,3,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[2,4,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[2,3,1,2],[2,0,2,0]],[[1,1,2,1],[1,4,1,2],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[3,3,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[2,4,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[2,3,1,2],[2,1,0,1]],[[1,1,2,1],[1,4,1,2],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,2],[3,3,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,2],[2,4,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,1,2],[2,3,1,2],[2,1,1,0]],[[1,2,0,0],[2,3,2,0],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[1,4,1,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[1,3,1,2],[3,3,1,2],[1,2,0,0]],[[1,1,2,1],[1,3,1,2],[2,4,1,2],[1,2,0,0]],[[1,1,2,1],[1,3,1,2],[2,3,1,2],[2,2,0,0]],[[1,2,0,0],[2,3,2,0],[2,4,3,2],[1,0,2,0]],[[1,2,0,0],[2,3,2,0],[3,3,3,2],[1,0,2,0]],[[1,2,0,0],[3,3,2,0],[2,3,3,2],[1,0,2,0]],[[2,2,0,0],[2,3,2,0],[2,3,3,2],[1,0,2,0]],[[1,2,0,0],[2,3,2,0],[2,3,3,2],[0,3,1,0]],[[1,2,0,0],[2,3,2,0],[2,4,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,2,0],[3,3,3,2],[0,2,1,0]],[[1,2,0,0],[3,3,2,0],[2,3,3,2],[0,2,1,0]],[[2,2,0,0],[2,3,2,0],[2,3,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,2,0],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[1,4,1,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[3,3,2,0],[0,1,2,1]],[[1,1,2,1],[1,3,1,2],[2,4,2,0],[0,1,2,1]],[[1,1,2,1],[1,4,1,2],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[3,3,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[2,4,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,1,2],[2,3,2,0],[0,3,1,1]],[[1,1,2,1],[1,4,1,2],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[3,3,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[2,4,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,1,2],[2,3,2,0],[2,0,2,1]],[[1,1,2,1],[1,4,1,2],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[3,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,4,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,3,2,0],[2,1,1,1]],[[1,1,2,1],[1,4,1,2],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[3,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,4,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,3,2,0],[2,2,0,1]],[[1,2,0,0],[2,3,2,0],[3,3,3,2],[0,2,0,1]],[[1,2,0,0],[3,3,2,0],[2,3,3,2],[0,2,0,1]],[[2,2,0,0],[2,3,2,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,4,1,2],[2,3,2,1],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[3,3,2,1],[0,1,1,1]],[[1,1,2,1],[1,3,1,2],[2,4,2,1],[0,1,1,1]],[[1,1,2,1],[1,4,1,2],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[3,3,2,1],[0,1,2,0]],[[1,1,2,1],[1,3,1,2],[2,4,2,1],[0,1,2,0]],[[1,1,2,1],[1,4,1,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[3,3,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,4,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,1,2],[2,3,2,1],[0,3,0,1]],[[1,1,2,1],[1,4,1,2],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[3,3,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,4,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,1,2],[2,3,2,1],[0,3,1,0]],[[1,2,0,0],[2,3,2,0],[2,4,3,2],[0,1,2,0]],[[1,2,0,0],[2,3,2,0],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,4,1,2],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[3,3,2,1],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[2,4,2,1],[1,0,1,1]],[[1,1,2,1],[1,3,1,2],[2,3,2,1],[2,0,1,1]],[[1,1,2,1],[1,4,1,2],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[3,3,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[2,4,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,1,2],[2,3,2,1],[2,0,2,0]],[[1,1,2,1],[1,4,1,2],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[3,3,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[2,4,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,1,2],[2,3,2,1],[2,1,0,1]],[[1,1,2,1],[1,4,1,2],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,1,2],[3,3,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,1,2],[2,4,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,1,2],[2,3,2,1],[2,1,1,0]],[[1,2,0,0],[3,3,2,0],[2,3,3,2],[0,1,2,0]],[[2,2,0,0],[2,3,2,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,4,1,2],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,1,2],[3,3,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,1,2],[2,4,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,1,2],[2,3,2,1],[2,2,0,0]],[[1,2,0,0],[2,3,2,0],[2,3,3,1],[2,2,0,1]],[[1,2,0,0],[2,3,2,0],[2,4,3,1],[1,2,0,1]],[[1,2,0,0],[2,3,2,0],[3,3,3,1],[1,2,0,1]],[[1,2,0,0],[3,3,2,0],[2,3,3,1],[1,2,0,1]],[[2,2,0,0],[2,3,2,0],[2,3,3,1],[1,2,0,1]],[[1,2,0,0],[2,3,2,0],[2,3,3,1],[2,1,1,1]],[[1,2,0,0],[2,3,2,0],[2,4,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,2,0],[3,3,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,2,0],[2,3,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,2,0],[2,3,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,2,0],[2,3,3,1],[2,0,2,1]],[[1,2,0,0],[2,3,2,0],[2,4,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,2,0],[3,3,3,1],[1,0,2,1]],[[1,2,0,0],[3,3,2,0],[2,3,3,1],[1,0,2,1]],[[2,2,0,0],[2,3,2,0],[2,3,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,2,0],[2,3,3,1],[0,3,1,1]],[[1,2,0,0],[2,3,2,0],[2,4,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,2,0],[3,3,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,2,0],[2,3,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,2,0],[2,3,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,2,0],[2,4,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,2,0],[3,3,3,1],[0,1,2,1]],[[1,2,0,0],[3,3,2,0],[2,3,3,1],[0,1,2,1]],[[2,2,0,0],[2,3,2,0],[2,3,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,2,0],[2,3,3,0],[2,1,2,1]],[[1,2,0,0],[2,3,2,0],[2,4,3,0],[1,1,2,1]],[[1,2,0,0],[2,3,2,0],[3,3,3,0],[1,1,2,1]],[[1,2,0,0],[3,3,2,0],[2,3,3,0],[1,1,2,1]],[[2,2,0,0],[2,3,2,0],[2,3,3,0],[1,1,2,1]],[[1,2,0,0],[2,3,2,0],[2,3,3,0],[0,2,3,1]],[[1,2,0,0],[2,3,2,0],[2,3,3,0],[0,3,2,1]],[[1,2,0,0],[2,3,2,0],[2,4,3,0],[0,2,2,1]],[[1,2,0,0],[2,3,2,0],[3,3,3,0],[0,2,2,1]],[[1,2,0,0],[3,3,2,0],[2,3,3,0],[0,2,2,1]],[[2,2,0,0],[2,3,2,0],[2,3,3,0],[0,2,2,1]],[[1,2,0,0],[2,3,2,0],[2,3,2,2],[2,1,2,0]],[[1,2,0,0],[2,3,2,0],[2,4,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,2,0],[3,3,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,2,0],[2,3,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,2,0],[2,3,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,2,0],[2,3,2,2],[0,3,2,0]],[[1,2,0,0],[2,3,2,0],[2,4,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,2,0],[3,3,2,2],[0,2,2,0]],[[1,2,0,0],[3,3,2,0],[2,3,2,2],[0,2,2,0]],[[2,2,0,0],[2,3,2,0],[2,3,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,2,0],[2,3,2,1],[2,1,2,1]],[[1,2,0,0],[2,3,2,0],[2,4,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,2,0],[3,3,2,1],[1,1,2,1]],[[1,2,0,0],[3,3,2,0],[2,3,2,1],[1,1,2,1]],[[2,2,0,0],[2,3,2,0],[2,3,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,2,0],[2,3,2,1],[0,2,3,1]],[[1,2,0,0],[2,3,2,0],[2,3,2,1],[0,3,2,1]],[[1,2,0,0],[2,3,2,0],[2,4,2,1],[0,2,2,1]],[[1,2,0,0],[2,3,2,0],[3,3,2,1],[0,2,2,1]],[[1,2,0,0],[3,3,2,0],[2,3,2,1],[0,2,2,1]],[[2,2,0,0],[2,3,2,0],[2,3,2,1],[0,2,2,1]],[[1,2,0,0],[2,3,2,0],[2,3,2,0],[1,3,2,1]],[[1,2,0,0],[2,3,2,0],[2,3,2,0],[2,2,2,1]],[[1,2,0,0],[2,3,2,0],[3,3,2,0],[1,2,2,1]],[[1,2,0,0],[3,3,2,0],[2,3,2,0],[1,2,2,1]],[[2,2,0,0],[2,3,2,0],[2,3,2,0],[1,2,2,1]],[[1,2,0,0],[2,3,2,0],[2,3,1,2],[1,3,2,0]],[[1,2,0,0],[2,3,2,0],[2,3,1,2],[2,2,2,0]],[[1,2,0,0],[2,3,2,0],[3,3,1,2],[1,2,2,0]],[[1,2,0,0],[3,3,2,0],[2,3,1,2],[1,2,2,0]],[[2,2,0,0],[2,3,2,0],[2,3,1,2],[1,2,2,0]],[[1,2,0,0],[2,3,2,0],[2,3,1,1],[1,3,2,1]],[[1,2,0,0],[2,3,2,0],[2,3,1,1],[2,2,2,1]],[[1,2,0,0],[2,3,2,0],[3,3,1,1],[1,2,2,1]],[[1,2,0,0],[3,3,2,0],[2,3,1,1],[1,2,2,1]],[[2,2,0,0],[2,3,2,0],[2,3,1,1],[1,2,2,1]],[[1,2,0,0],[2,3,2,0],[2,2,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,0],[2,2,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,2,0],[3,2,3,2],[1,2,1,0]],[[1,2,0,0],[3,3,2,0],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[1,4,1,2],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[1,3,1,2],[3,3,3,1],[0,2,0,0]],[[1,1,2,1],[1,3,1,2],[2,4,3,1],[0,2,0,0]],[[2,2,0,0],[2,3,2,0],[2,2,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,2,0],[2,2,3,2],[2,1,1,1]],[[1,2,0,0],[2,3,2,0],[3,2,3,2],[1,1,1,1]],[[1,2,0,0],[2,4,2,0],[2,2,3,2],[1,1,1,1]],[[1,2,0,0],[3,3,2,0],[2,2,3,2],[1,1,1,1]],[[2,2,0,0],[2,3,2,0],[2,2,3,2],[1,1,1,1]],[[1,2,0,0],[2,3,2,0],[2,2,3,2],[2,0,2,1]],[[1,2,0,0],[2,3,2,0],[3,2,3,2],[1,0,2,1]],[[1,2,0,0],[2,4,2,0],[2,2,3,2],[1,0,2,1]],[[1,2,0,0],[3,3,2,0],[2,2,3,2],[1,0,2,1]],[[2,2,0,0],[2,3,2,0],[2,2,3,2],[1,0,2,1]],[[1,2,0,0],[2,3,2,0],[3,2,3,2],[0,2,1,1]],[[1,1,2,1],[1,4,1,2],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,1,2],[3,3,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,1,2],[2,4,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,1,2],[2,3,3,1],[2,1,0,0]],[[1,2,0,0],[2,4,2,0],[2,2,3,2],[0,2,1,1]],[[1,2,0,0],[3,3,2,0],[2,2,3,2],[0,2,1,1]],[[2,2,0,0],[2,3,2,0],[2,2,3,2],[0,2,1,1]],[[1,2,0,0],[2,3,2,0],[3,2,3,2],[0,1,2,1]],[[1,2,0,0],[2,4,2,0],[2,2,3,2],[0,1,2,1]],[[1,2,0,0],[3,3,2,0],[2,2,3,2],[0,1,2,1]],[[2,2,0,0],[2,3,2,0],[2,2,3,2],[0,1,2,1]],[[1,2,0,0],[2,3,2,0],[2,2,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,2,0],[2,2,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,2,0],[3,2,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,2,0],[2,2,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,2,0],[2,2,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,2,0],[2,2,3,0],[1,2,3,1]],[[1,2,0,0],[2,3,2,0],[2,2,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,2,0],[2,2,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,2,0],[3,2,3,0],[1,2,2,1]],[[1,2,0,0],[3,3,2,0],[2,2,3,0],[1,2,2,1]],[[2,2,0,0],[2,3,2,0],[2,2,3,0],[1,2,2,1]],[[1,2,0,0],[2,3,2,0],[2,2,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,2,0],[2,2,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,2,0],[3,2,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,2,0],[2,2,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,2,0],[2,2,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,2,0],[2,2,2,2],[2,1,2,1]],[[1,2,0,0],[2,3,2,0],[3,2,2,2],[1,1,2,1]],[[1,2,0,0],[2,4,2,0],[2,2,2,2],[1,1,2,1]],[[1,2,0,0],[3,3,2,0],[2,2,2,2],[1,1,2,1]],[[2,2,0,0],[2,3,2,0],[2,2,2,2],[1,1,2,1]],[[1,2,0,0],[2,3,2,0],[3,2,2,2],[0,2,2,1]],[[1,2,0,0],[2,4,2,0],[2,2,2,2],[0,2,2,1]],[[1,2,0,0],[3,3,2,0],[2,2,2,2],[0,2,2,1]],[[2,2,0,0],[2,3,2,0],[2,2,2,2],[0,2,2,1]],[[1,2,0,0],[2,3,2,0],[2,2,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,2,0],[2,2,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,2,0],[2,2,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,2,0],[3,2,2,1],[1,2,2,1]],[[1,2,0,0],[3,3,2,0],[2,2,2,1],[1,2,2,1]],[[2,2,0,0],[2,3,2,0],[2,2,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,2,0],[2,1,3,2],[1,3,1,1]],[[1,2,0,0],[2,3,2,0],[2,1,3,2],[2,2,1,1]],[[1,2,0,0],[2,3,2,0],[3,1,3,2],[1,2,1,1]],[[1,2,0,0],[2,4,2,0],[2,1,3,2],[1,2,1,1]],[[1,2,0,0],[3,3,2,0],[2,1,3,2],[1,2,1,1]],[[2,2,0,0],[2,3,2,0],[2,1,3,2],[1,2,1,1]],[[1,2,0,0],[2,3,2,0],[2,1,2,2],[1,2,2,2]],[[1,2,0,0],[2,3,2,0],[2,1,2,2],[1,2,3,1]],[[1,2,0,0],[2,3,2,0],[2,1,2,2],[1,3,2,1]],[[1,2,0,0],[2,3,2,0],[2,1,2,2],[2,2,2,1]],[[1,2,0,0],[2,3,2,0],[3,1,2,2],[1,2,2,1]],[[1,2,0,0],[2,4,2,0],[2,1,2,2],[1,2,2,1]],[[1,2,0,0],[3,3,2,0],[2,1,2,2],[1,2,2,1]],[[2,2,0,0],[2,3,2,0],[2,1,2,2],[1,2,2,1]],[[1,2,0,0],[2,3,2,0],[2,0,3,2],[1,2,2,2]],[[1,2,0,0],[2,3,2,0],[2,0,3,2],[1,2,3,1]],[[1,2,0,0],[2,3,2,0],[2,0,3,2],[1,3,2,1]],[[1,2,0,0],[2,3,2,0],[2,0,3,2],[2,2,2,1]],[[1,2,0,0],[2,3,2,0],[2,0,4,2],[1,2,2,1]],[[1,2,0,0],[2,3,2,0],[3,0,3,2],[1,2,2,1]],[[1,2,0,0],[2,4,2,0],[2,0,3,2],[1,2,2,1]],[[1,2,0,0],[3,3,2,0],[2,0,3,2],[1,2,2,1]],[[2,2,0,0],[2,3,2,0],[2,0,3,2],[1,2,2,1]],[[1,2,0,0],[2,3,2,0],[1,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,2,0],[1,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,2,0],[1,4,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,2,0],[1,3,4,2],[1,1,1,1]],[[1,2,0,0],[2,3,2,0],[1,4,3,2],[1,1,1,1]],[[1,2,0,0],[2,4,2,0],[1,3,3,2],[1,1,1,1]],[[1,2,0,0],[3,3,2,0],[1,3,3,2],[1,1,1,1]],[[2,2,0,0],[2,3,2,0],[1,3,3,2],[1,1,1,1]],[[1,2,0,0],[2,3,2,0],[1,3,3,2],[1,0,2,2]],[[1,2,0,0],[2,3,2,0],[1,3,3,2],[1,0,3,1]],[[1,2,0,0],[2,3,2,0],[1,3,4,2],[1,0,2,1]],[[1,2,0,0],[2,3,2,0],[1,4,3,2],[1,0,2,1]],[[1,2,0,0],[2,4,2,0],[1,3,3,2],[1,0,2,1]],[[1,2,0,0],[3,3,2,0],[1,3,3,2],[1,0,2,1]],[[2,2,0,0],[2,3,2,0],[1,3,3,2],[1,0,2,1]],[[1,2,0,0],[2,3,2,0],[1,3,3,2],[0,3,1,1]],[[1,2,0,0],[2,3,2,0],[1,3,4,2],[0,2,1,1]],[[1,2,0,0],[2,3,2,0],[1,4,3,2],[0,2,1,1]],[[1,2,0,0],[2,4,2,0],[1,3,3,2],[0,2,1,1]],[[1,2,0,0],[3,3,2,0],[1,3,3,2],[0,2,1,1]],[[2,2,0,0],[2,3,2,0],[1,3,3,2],[0,2,1,1]],[[1,2,0,0],[2,3,2,0],[1,3,3,2],[0,1,2,2]],[[1,2,0,0],[2,3,2,0],[1,3,3,2],[0,1,3,1]],[[1,2,0,0],[2,3,2,0],[1,3,4,2],[0,1,2,1]],[[1,2,0,0],[2,3,2,0],[1,4,3,2],[0,1,2,1]],[[1,2,0,0],[2,4,2,0],[1,3,3,2],[0,1,2,1]],[[1,2,0,0],[3,3,2,0],[1,3,3,2],[0,1,2,1]],[[2,2,0,0],[2,3,2,0],[1,3,3,2],[0,1,2,1]],[[1,2,0,0],[2,3,2,0],[1,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,2,0],[1,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,2,0],[1,4,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,2,0],[1,3,3,0],[1,2,3,1]],[[1,2,0,0],[2,3,2,0],[1,3,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,2,0],[1,3,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,2,0],[1,4,3,0],[1,2,2,1]],[[1,2,0,0],[2,3,2,0],[1,3,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,2,0],[1,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,2,0],[1,4,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,2,0],[1,4,2,2],[1,1,2,1]],[[1,2,0,0],[2,4,2,0],[1,3,2,2],[1,1,2,1]],[[1,2,0,0],[3,3,2,0],[1,3,2,2],[1,1,2,1]],[[2,2,0,0],[2,3,2,0],[1,3,2,2],[1,1,2,1]],[[1,2,0,0],[2,3,2,0],[1,3,2,2],[0,2,2,2]],[[1,2,0,0],[2,3,2,0],[1,3,2,2],[0,2,3,1]],[[1,2,0,0],[2,3,2,0],[1,3,2,2],[0,3,2,1]],[[1,2,0,0],[2,3,2,0],[1,4,2,2],[0,2,2,1]],[[1,2,0,0],[2,4,2,0],[1,3,2,2],[0,2,2,1]],[[1,2,0,0],[3,3,2,0],[1,3,2,2],[0,2,2,1]],[[2,2,0,0],[2,3,2,0],[1,3,2,2],[0,2,2,1]],[[1,2,0,0],[2,3,2,0],[1,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,2,0],[1,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,2,0],[1,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,2,0],[1,4,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,2,0],[1,2,3,2],[0,2,2,2]],[[1,2,0,0],[2,3,2,0],[1,2,3,2],[0,2,3,1]],[[1,2,0,0],[2,3,2,0],[1,2,3,2],[0,3,2,1]],[[1,2,0,0],[2,3,2,0],[1,2,4,2],[0,2,2,1]],[[1,2,0,0],[2,3,2,0],[0,3,3,2],[1,3,1,1]],[[1,2,0,0],[2,3,2,0],[0,3,3,2],[2,2,1,1]],[[1,2,0,0],[2,3,2,0],[0,3,4,2],[1,2,1,1]],[[1,2,0,0],[2,3,2,0],[0,4,3,2],[1,2,1,1]],[[1,2,0,0],[2,4,2,0],[0,3,3,2],[1,2,1,1]],[[1,2,0,0],[3,3,2,0],[0,3,3,2],[1,2,1,1]],[[2,2,0,0],[2,3,2,0],[0,3,3,2],[1,2,1,1]],[[1,2,0,0],[2,3,2,0],[0,3,3,2],[1,1,2,2]],[[1,2,0,0],[2,3,2,0],[0,3,3,2],[1,1,3,1]],[[1,2,0,0],[2,3,2,0],[0,3,4,2],[1,1,2,1]],[[1,2,0,0],[2,3,2,0],[0,4,3,2],[1,1,2,1]],[[1,2,0,0],[2,4,2,0],[0,3,3,2],[1,1,2,1]],[[1,2,0,0],[3,3,2,0],[0,3,3,2],[1,1,2,1]],[[2,2,0,0],[2,3,2,0],[0,3,3,2],[1,1,2,1]],[[1,2,0,0],[2,3,2,0],[0,3,2,2],[1,2,2,2]],[[1,2,0,0],[2,3,2,0],[0,3,2,2],[1,2,3,1]],[[1,2,0,0],[2,3,2,0],[0,3,2,2],[1,3,2,1]],[[1,2,0,0],[2,3,2,0],[0,3,2,2],[2,2,2,1]],[[1,2,0,0],[2,3,2,0],[0,4,2,2],[1,2,2,1]],[[1,2,0,0],[2,4,2,0],[0,3,2,2],[1,2,2,1]],[[1,2,0,0],[3,3,2,0],[0,3,2,2],[1,2,2,1]],[[2,2,0,0],[2,3,2,0],[0,3,2,2],[1,2,2,1]],[[1,2,0,0],[2,3,2,0],[0,2,3,2],[1,2,2,2]],[[1,2,0,0],[2,3,2,0],[0,2,3,2],[1,2,3,1]],[[1,2,0,0],[2,3,2,0],[0,2,3,2],[1,3,2,1]],[[1,2,0,0],[2,3,2,0],[0,2,3,2],[2,2,2,1]],[[1,2,0,0],[2,3,2,0],[0,2,4,2],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[3,3,3,2],[1,0,1,0]],[[1,2,0,0],[2,4,1,2],[2,3,3,2],[1,0,1,0]],[[1,2,0,0],[3,3,1,2],[2,3,3,2],[1,0,1,0]],[[2,2,0,0],[2,3,1,2],[2,3,3,2],[1,0,1,0]],[[1,2,0,0],[2,3,1,2],[3,3,3,2],[1,0,0,1]],[[1,2,0,0],[2,4,1,2],[2,3,3,2],[1,0,0,1]],[[1,2,0,0],[3,3,1,2],[2,3,3,2],[1,0,0,1]],[[2,2,0,0],[2,3,1,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[1,3,2,0],[0,2,2,3],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,2,2,2],[2,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,2,2,2],[1,3,2,1]],[[1,1,2,1],[1,3,2,0],[0,2,2,2],[1,2,3,1]],[[1,1,2,1],[1,3,2,0],[0,2,2,2],[1,2,2,2]],[[1,1,2,1],[1,3,2,0],[0,2,4,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,2,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,2,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,2,0],[0,2,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,2,0],[0,2,3,1],[1,2,2,2]],[[1,1,2,1],[1,3,2,0],[0,2,4,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,0],[0,2,3,3],[1,2,1,1]],[[1,1,2,1],[1,3,2,0],[0,2,3,2],[1,2,1,2]],[[1,1,2,1],[1,3,2,0],[0,2,4,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,0],[0,2,3,3],[1,2,2,0]],[[1,1,2,1],[1,3,2,0],[0,2,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,2,0],[0,2,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,2,0],[0,2,3,2],[1,2,3,0]],[[1,1,2,1],[1,4,2,0],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,4,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,1,3],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,1,2],[2,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,1,2],[1,3,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,1,2],[1,2,3,1]],[[1,1,2,1],[1,3,2,0],[0,3,1,2],[1,2,2,2]],[[1,1,2,1],[1,4,2,0],[0,3,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,4,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,2,1],[2,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,2,1],[1,3,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,2,1],[1,2,3,1]],[[1,1,2,1],[1,3,2,0],[0,3,2,1],[1,2,2,2]],[[1,1,2,1],[1,3,2,0],[0,3,2,3],[1,1,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,2,2],[1,1,3,1]],[[1,1,2,1],[1,3,2,0],[0,3,2,2],[1,1,2,2]],[[1,1,2,1],[1,4,2,0],[0,3,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,0],[0,4,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,0],[0,3,2,2],[2,2,2,0]],[[1,1,2,1],[1,3,2,0],[0,3,2,2],[1,3,2,0]],[[1,1,2,1],[1,3,2,0],[0,3,2,2],[1,2,3,0]],[[1,1,2,1],[1,4,2,0],[0,3,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,4,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,0],[2,2,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,0],[1,3,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,0],[1,2,3,1]],[[1,1,2,1],[1,4,2,0],[0,3,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,2,0],[0,4,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,4,1],[1,1,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,1],[1,1,3,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,1],[1,1,2,2]],[[1,1,2,1],[1,4,2,0],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,2,0],[0,4,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,2,0],[0,3,4,1],[1,2,1,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,1],[2,2,1,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,1],[1,3,1,1]],[[1,1,2,1],[1,3,2,0],[0,3,4,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,3],[1,0,2,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,2],[1,0,2,2]],[[1,1,2,1],[1,4,2,0],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,0],[0,4,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,0],[0,3,4,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,3],[1,1,1,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,2],[1,1,1,2]],[[1,1,2,1],[1,4,2,0],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,0],[0,4,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,0],[0,3,4,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,0],[0,3,3,3],[1,1,2,0]],[[1,1,2,1],[1,3,2,0],[0,3,3,2],[1,1,3,0]],[[1,1,2,1],[1,4,2,0],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,0],[0,4,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,0],[0,3,4,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,3],[1,2,0,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,2],[2,2,0,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,2],[1,3,0,1]],[[1,1,2,1],[1,3,2,0],[0,3,3,2],[1,2,0,2]],[[1,1,2,1],[1,4,2,0],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,0],[0,4,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,0],[0,3,4,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,0],[0,3,3,3],[1,2,1,0]],[[1,1,2,1],[1,3,2,0],[0,3,3,2],[2,2,1,0]],[[1,1,2,1],[1,3,2,0],[0,3,3,2],[1,3,1,0]],[[1,1,2,1],[1,3,2,0],[1,2,2,3],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,2,2,2],[0,3,2,1]],[[1,1,2,1],[1,3,2,0],[1,2,2,2],[0,2,3,1]],[[1,1,2,1],[1,3,2,0],[1,2,2,2],[0,2,2,2]],[[1,1,2,1],[1,3,2,0],[1,2,4,1],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,2,3,1],[0,3,2,1]],[[1,1,2,1],[1,3,2,0],[1,2,3,1],[0,2,3,1]],[[1,1,2,1],[1,3,2,0],[1,2,3,1],[0,2,2,2]],[[1,1,2,1],[1,3,2,0],[1,2,4,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,0],[1,2,3,3],[0,2,1,1]],[[1,1,2,1],[1,3,2,0],[1,2,3,2],[0,2,1,2]],[[1,1,2,1],[1,3,2,0],[1,2,4,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,0],[1,2,3,3],[0,2,2,0]],[[1,1,2,1],[1,3,2,0],[1,2,3,2],[0,3,2,0]],[[1,1,2,1],[1,3,2,0],[1,2,3,2],[0,2,3,0]],[[1,1,2,1],[1,4,2,0],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,4,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,0,3],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,0,2],[2,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,0,2],[1,3,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,0,2],[1,2,3,1]],[[1,1,2,1],[1,3,2,0],[1,3,0,2],[1,2,2,2]],[[1,1,2,1],[1,4,2,0],[1,3,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,4,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,1,1],[2,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,1,1],[1,3,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,1,1],[1,2,3,1]],[[1,1,2,1],[1,3,2,0],[1,3,1,1],[1,2,2,2]],[[1,1,2,1],[1,4,2,0],[1,3,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,4,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,1,3],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,1,2],[0,3,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,1,2],[0,2,3,1]],[[1,1,2,1],[1,3,2,0],[1,3,1,2],[0,2,2,2]],[[1,1,2,1],[1,4,2,0],[1,3,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,0],[1,4,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,0],[1,3,1,2],[2,2,2,0]],[[1,1,2,1],[1,3,2,0],[1,3,1,2],[1,3,2,0]],[[1,1,2,1],[1,3,2,0],[1,3,1,2],[1,2,3,0]],[[1,1,2,1],[1,4,2,0],[1,3,2,1],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,4,2,1],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,1],[0,3,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,1],[0,2,3,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,1],[0,2,2,2]],[[1,1,2,1],[1,4,2,0],[1,3,2,1],[1,2,1,1]],[[1,1,2,1],[1,3,2,0],[1,4,2,1],[1,2,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,1],[2,2,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,1],[1,3,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,3],[0,1,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,2],[0,1,3,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,2],[0,1,2,2]],[[1,1,2,1],[1,4,2,0],[1,3,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,0],[1,4,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,0],[1,3,2,2],[0,3,2,0]],[[1,1,2,1],[1,3,2,0],[1,3,2,2],[0,2,3,0]],[[1,1,2,1],[1,3,2,0],[1,3,2,3],[1,0,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,2],[1,0,3,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,2],[1,0,2,2]],[[1,1,2,1],[1,4,2,0],[1,3,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,0],[1,4,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,2],[2,2,0,1]],[[1,1,2,1],[1,3,2,0],[1,3,2,2],[1,3,0,1]],[[1,1,2,1],[1,4,2,0],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,0],[1,4,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,0],[1,3,2,2],[2,2,1,0]],[[1,1,2,1],[1,3,2,0],[1,3,2,2],[1,3,1,0]],[[1,1,2,1],[1,4,2,0],[1,3,3,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,4,3,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,0],[0,3,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,0],[0,2,3,1]],[[1,1,2,1],[1,4,2,0],[1,3,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,2,0],[1,4,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,4,1],[0,1,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,1],[0,1,3,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,1],[0,1,2,2]],[[1,1,2,1],[1,4,2,0],[1,3,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,2,0],[1,4,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,4,1],[0,2,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,1],[0,3,1,1]],[[1,1,2,1],[1,4,2,0],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,2,0],[1,4,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,4,1],[1,0,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,1],[1,0,3,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,1],[1,0,2,2]],[[1,1,2,1],[1,4,2,0],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,2,0],[1,4,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,4,1],[1,1,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,4,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,2],[0,0,2,2]],[[1,1,2,1],[1,4,2,0],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,0],[1,4,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,4,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,2],[0,1,1,2]],[[1,1,2,1],[1,4,2,0],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,0],[1,4,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,0],[1,3,4,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,0],[1,3,3,3],[0,1,2,0]],[[1,1,2,1],[1,3,2,0],[1,3,3,2],[0,1,3,0]],[[1,1,2,1],[1,4,2,0],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,0],[1,4,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,0],[1,3,4,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,3],[0,2,0,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,2],[0,3,0,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,2],[0,2,0,2]],[[1,1,2,1],[1,4,2,0],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,0],[1,4,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,0],[1,3,4,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,0],[1,3,3,3],[0,2,1,0]],[[1,1,2,1],[1,3,2,0],[1,3,3,2],[0,3,1,0]],[[1,1,2,1],[1,4,2,0],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,0],[1,4,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,4,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,3],[1,0,1,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,2],[1,0,1,2]],[[1,1,2,1],[1,4,2,0],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,0],[1,4,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,0],[1,3,4,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,0],[1,3,3,3],[1,0,2,0]],[[1,1,2,1],[1,3,2,0],[1,3,3,2],[1,0,3,0]],[[1,1,2,1],[1,4,2,0],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,0],[1,4,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,0],[1,3,4,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,3],[1,1,0,1]],[[1,1,2,1],[1,3,2,0],[1,3,3,2],[1,1,0,2]],[[1,1,2,1],[1,4,2,0],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,0],[1,4,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,0],[1,3,4,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,0],[1,3,3,3],[1,1,1,0]],[[1,2,0,0],[2,3,1,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,0],[2,3,1,2],[2,4,3,1],[1,2,0,0]],[[1,2,0,0],[2,3,1,2],[3,3,3,1],[1,2,0,0]],[[1,2,0,0],[3,3,1,2],[2,3,3,1],[1,2,0,0]],[[2,2,0,0],[2,3,1,2],[2,3,3,1],[1,2,0,0]],[[1,2,0,0],[2,3,1,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,0],[2,3,1,2],[2,4,3,1],[1,1,1,0]],[[1,2,0,0],[2,3,1,2],[3,3,3,1],[1,1,1,0]],[[1,2,0,0],[3,3,1,2],[2,3,3,1],[1,1,1,0]],[[2,2,0,0],[2,3,1,2],[2,3,3,1],[1,1,1,0]],[[1,2,0,0],[2,3,1,2],[2,3,3,1],[2,1,0,1]],[[1,2,0,0],[2,3,1,2],[2,4,3,1],[1,1,0,1]],[[1,2,0,0],[2,3,1,2],[3,3,3,1],[1,1,0,1]],[[1,2,0,0],[3,3,1,2],[2,3,3,1],[1,1,0,1]],[[2,2,0,0],[2,3,1,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,2,0],[3,2,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,2,0,3],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,2,0,2],[2,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,2,0,2],[1,3,2,1]],[[1,1,2,1],[1,3,2,0],[2,2,0,2],[1,2,3,1]],[[1,1,2,1],[1,3,2,0],[2,2,0,2],[1,2,2,2]],[[1,1,2,1],[1,3,2,0],[3,2,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,2,1,1],[2,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,2,1,1],[1,3,2,1]],[[1,1,2,1],[1,3,2,0],[2,2,1,1],[1,2,3,1]],[[1,1,2,1],[1,3,2,0],[2,2,1,1],[1,2,2,2]],[[1,1,2,1],[1,3,2,0],[3,2,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,0],[2,2,1,2],[2,2,2,0]],[[1,1,2,1],[1,3,2,0],[2,2,1,2],[1,3,2,0]],[[1,1,2,1],[1,3,2,0],[2,2,1,2],[1,2,3,0]],[[1,1,2,1],[1,3,2,0],[3,2,2,1],[1,2,1,1]],[[1,1,2,1],[1,3,2,0],[2,2,2,1],[2,2,1,1]],[[1,1,2,1],[1,3,2,0],[2,2,2,1],[1,3,1,1]],[[1,1,2,1],[1,3,2,0],[3,2,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,0],[2,2,2,2],[2,2,0,1]],[[1,1,2,1],[1,3,2,0],[2,2,2,2],[1,3,0,1]],[[1,1,2,1],[1,3,2,0],[3,2,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,0],[2,2,2,2],[2,2,1,0]],[[1,1,2,1],[1,3,2,0],[2,2,2,2],[1,3,1,0]],[[1,2,0,0],[2,3,1,2],[2,3,3,1],[2,0,2,0]],[[1,2,0,0],[2,3,1,2],[2,4,3,1],[1,0,2,0]],[[1,2,0,0],[2,3,1,2],[3,3,3,1],[1,0,2,0]],[[1,2,0,0],[3,3,1,2],[2,3,3,1],[1,0,2,0]],[[2,2,0,0],[2,3,1,2],[2,3,3,1],[1,0,2,0]],[[1,2,0,0],[2,3,1,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,0],[2,3,1,2],[2,4,3,1],[0,2,1,0]],[[1,2,0,0],[2,3,1,2],[3,3,3,1],[0,2,1,0]],[[1,2,0,0],[3,3,1,2],[2,3,3,1],[0,2,1,0]],[[2,2,0,0],[2,3,1,2],[2,3,3,1],[0,2,1,0]],[[1,2,0,0],[2,3,1,2],[2,4,3,1],[0,2,0,1]],[[1,2,0,0],[2,3,1,2],[3,3,3,1],[0,2,0,1]],[[1,2,0,0],[3,3,1,2],[2,3,3,1],[0,2,0,1]],[[2,2,0,0],[2,3,1,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,0],[3,3,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,3,0,1],[2,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,3,0,1],[1,3,2,1]],[[1,1,2,1],[1,4,2,0],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[3,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,4,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,3,0,3],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,3,0,2],[0,3,2,1]],[[1,1,2,1],[1,3,2,0],[2,3,0,2],[0,2,3,1]],[[1,1,2,1],[1,3,2,0],[2,3,0,2],[0,2,2,2]],[[1,1,2,1],[1,4,2,0],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,0],[3,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,0],[2,4,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,0],[2,3,0,2],[2,1,2,1]],[[1,1,2,1],[1,3,2,0],[3,3,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,0],[2,3,0,2],[2,2,2,0]],[[1,1,2,1],[1,3,2,0],[2,3,0,2],[1,3,2,0]],[[1,1,2,1],[1,4,2,0],[2,3,1,1],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[3,3,1,1],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,4,1,1],[0,2,2,1]],[[1,1,2,1],[1,3,2,0],[2,3,1,1],[0,3,2,1]],[[1,1,2,1],[1,3,2,0],[2,3,1,1],[0,2,3,1]],[[1,1,2,1],[1,3,2,0],[2,3,1,1],[0,2,2,2]],[[1,1,2,1],[1,4,2,0],[2,3,1,1],[1,1,2,1]],[[1,1,2,1],[1,3,2,0],[3,3,1,1],[1,1,2,1]],[[1,1,2,1],[1,3,2,0],[2,4,1,1],[1,1,2,1]],[[1,1,2,1],[1,3,2,0],[2,3,1,1],[2,1,2,1]],[[1,1,2,1],[1,4,2,0],[2,3,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,0],[3,3,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,0],[2,4,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,0],[2,3,1,2],[0,3,2,0]],[[1,1,2,1],[1,3,2,0],[2,3,1,2],[0,2,3,0]],[[1,1,2,1],[1,4,2,0],[2,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,0],[3,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,0],[2,4,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,0],[2,3,1,2],[2,1,2,0]],[[1,2,0,0],[2,3,1,2],[2,4,3,1],[0,1,2,0]],[[1,2,0,0],[2,3,1,2],[3,3,3,1],[0,1,2,0]],[[1,2,0,0],[3,3,1,2],[2,3,3,1],[0,1,2,0]],[[2,2,0,0],[2,3,1,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,4,2,0],[2,3,2,1],[0,1,2,1]],[[1,1,2,1],[1,3,2,0],[3,3,2,1],[0,1,2,1]],[[1,1,2,1],[1,3,2,0],[2,4,2,1],[0,1,2,1]],[[1,1,2,1],[1,4,2,0],[2,3,2,1],[0,2,1,1]],[[1,1,2,1],[1,3,2,0],[3,3,2,1],[0,2,1,1]],[[1,1,2,1],[1,3,2,0],[2,4,2,1],[0,2,1,1]],[[1,1,2,1],[1,3,2,0],[2,3,2,1],[0,3,1,1]],[[1,1,2,1],[1,4,2,0],[2,3,2,1],[1,0,2,1]],[[1,1,2,1],[1,3,2,0],[3,3,2,1],[1,0,2,1]],[[1,1,2,1],[1,3,2,0],[2,4,2,1],[1,0,2,1]],[[1,1,2,1],[1,3,2,0],[2,3,2,1],[2,0,2,1]],[[1,1,2,1],[1,4,2,0],[2,3,2,1],[1,1,1,1]],[[1,1,2,1],[1,3,2,0],[3,3,2,1],[1,1,1,1]],[[1,1,2,1],[1,3,2,0],[2,4,2,1],[1,1,1,1]],[[1,1,2,1],[1,3,2,0],[2,3,2,1],[2,1,1,1]],[[1,1,2,1],[1,4,2,0],[2,3,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,0],[3,3,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,0],[2,4,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,0],[2,3,2,1],[2,2,0,1]],[[1,2,0,0],[2,3,1,2],[2,3,3,0],[2,2,0,1]],[[1,1,2,1],[1,4,2,0],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,0],[3,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,0],[2,4,2,2],[0,1,1,1]],[[1,1,2,1],[1,4,2,0],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,0],[3,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,0],[2,4,2,2],[0,1,2,0]],[[1,1,2,1],[1,4,2,0],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,0],[3,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,0],[2,4,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,0],[2,3,2,2],[0,3,0,1]],[[1,1,2,1],[1,4,2,0],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,0],[3,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,0],[2,4,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,0],[2,3,2,2],[0,3,1,0]],[[1,2,0,0],[2,3,1,2],[2,4,3,0],[1,2,0,1]],[[1,2,0,0],[2,3,1,2],[3,3,3,0],[1,2,0,1]],[[1,2,0,0],[3,3,1,2],[2,3,3,0],[1,2,0,1]],[[2,2,0,0],[2,3,1,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[1,4,2,0],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,0],[3,3,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,0],[2,4,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,0],[2,3,2,2],[2,0,1,1]],[[1,1,2,1],[1,4,2,0],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,0],[3,3,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,0],[2,4,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,0],[2,3,2,2],[2,0,2,0]],[[1,1,2,1],[1,4,2,0],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,0],[3,3,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,0],[2,4,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,0],[2,3,2,2],[2,1,0,1]],[[1,1,2,1],[1,4,2,0],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,0],[3,3,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,0],[2,4,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,0],[2,3,2,2],[2,1,1,0]],[[1,2,0,0],[2,3,1,2],[2,3,3,0],[2,1,1,1]],[[1,2,0,0],[2,3,1,2],[2,4,3,0],[1,1,1,1]],[[1,2,0,0],[2,3,1,2],[3,3,3,0],[1,1,1,1]],[[1,2,0,0],[3,3,1,2],[2,3,3,0],[1,1,1,1]],[[2,2,0,0],[2,3,1,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[1,4,2,0],[2,3,2,2],[1,2,0,0]],[[1,1,2,1],[1,3,2,0],[3,3,2,2],[1,2,0,0]],[[1,1,2,1],[1,3,2,0],[2,4,2,2],[1,2,0,0]],[[1,1,2,1],[1,3,2,0],[2,3,2,2],[2,2,0,0]],[[1,2,0,0],[2,3,1,2],[2,3,3,0],[2,0,2,1]],[[1,2,0,0],[2,3,1,2],[2,4,3,0],[1,0,2,1]],[[1,2,0,0],[2,3,1,2],[3,3,3,0],[1,0,2,1]],[[1,2,0,0],[3,3,1,2],[2,3,3,0],[1,0,2,1]],[[2,2,0,0],[2,3,1,2],[2,3,3,0],[1,0,2,1]],[[1,2,0,0],[2,3,1,2],[2,3,3,0],[0,3,1,1]],[[1,2,0,0],[2,3,1,2],[2,4,3,0],[0,2,1,1]],[[1,2,0,0],[2,3,1,2],[3,3,3,0],[0,2,1,1]],[[1,2,0,0],[3,3,1,2],[2,3,3,0],[0,2,1,1]],[[2,2,0,0],[2,3,1,2],[2,3,3,0],[0,2,1,1]],[[1,2,0,0],[2,3,1,2],[2,4,3,0],[0,1,2,1]],[[1,2,0,0],[2,3,1,2],[3,3,3,0],[0,1,2,1]],[[1,2,0,0],[3,3,1,2],[2,3,3,0],[0,1,2,1]],[[2,2,0,0],[2,3,1,2],[2,3,3,0],[0,1,2,1]],[[1,2,0,0],[2,3,1,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,0],[2,3,1,2],[2,4,2,1],[1,1,2,0]],[[1,2,0,0],[2,3,1,2],[3,3,2,1],[1,1,2,0]],[[1,2,0,0],[3,3,1,2],[2,3,2,1],[1,1,2,0]],[[2,2,0,0],[2,3,1,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[1,4,2,0],[2,3,3,2],[0,2,0,0]],[[1,1,2,1],[1,3,2,0],[3,3,3,2],[0,2,0,0]],[[1,1,2,1],[1,3,2,0],[2,4,3,2],[0,2,0,0]],[[1,2,0,0],[2,3,1,2],[2,3,2,1],[0,3,2,0]],[[1,2,0,0],[2,3,1,2],[2,4,2,1],[0,2,2,0]],[[1,2,0,0],[2,3,1,2],[3,3,2,1],[0,2,2,0]],[[1,2,0,0],[3,3,1,2],[2,3,2,1],[0,2,2,0]],[[2,2,0,0],[2,3,1,2],[2,3,2,1],[0,2,2,0]],[[1,2,0,0],[2,3,1,2],[2,3,2,0],[2,1,2,1]],[[1,2,0,0],[2,3,1,2],[2,4,2,0],[1,1,2,1]],[[1,2,0,0],[2,3,1,2],[3,3,2,0],[1,1,2,1]],[[1,2,0,0],[3,3,1,2],[2,3,2,0],[1,1,2,1]],[[2,2,0,0],[2,3,1,2],[2,3,2,0],[1,1,2,1]],[[1,2,0,0],[2,3,1,2],[2,3,2,0],[0,2,3,1]],[[1,2,0,0],[2,3,1,2],[2,3,2,0],[0,3,2,1]],[[1,2,0,0],[2,3,1,2],[2,4,2,0],[0,2,2,1]],[[1,2,0,0],[2,3,1,2],[3,3,2,0],[0,2,2,1]],[[1,2,0,0],[3,3,1,2],[2,3,2,0],[0,2,2,1]],[[2,2,0,0],[2,3,1,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[1,4,2,0],[2,3,3,2],[1,1,0,0]],[[1,1,2,1],[1,3,2,0],[3,3,3,2],[1,1,0,0]],[[1,1,2,1],[1,3,2,0],[2,4,3,2],[1,1,0,0]],[[1,1,2,1],[1,3,2,0],[2,3,3,2],[2,1,0,0]],[[1,2,0,0],[2,3,1,2],[2,3,1,1],[1,3,2,0]],[[1,2,0,0],[2,3,1,2],[2,3,1,1],[2,2,2,0]],[[1,2,0,0],[2,3,1,2],[3,3,1,1],[1,2,2,0]],[[1,2,0,0],[3,3,1,2],[2,3,1,1],[1,2,2,0]],[[2,2,0,0],[2,3,1,2],[2,3,1,1],[1,2,2,0]],[[1,2,0,0],[2,3,1,2],[2,3,1,0],[1,3,2,1]],[[1,2,0,0],[2,3,1,2],[2,3,1,0],[2,2,2,1]],[[1,2,0,0],[2,3,1,2],[3,3,1,0],[1,2,2,1]],[[1,2,0,0],[3,3,1,2],[2,3,1,0],[1,2,2,1]],[[2,2,0,0],[2,3,1,2],[2,3,1,0],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[2,2,3,2],[2,2,0,0]],[[1,2,0,0],[2,3,1,2],[3,2,3,2],[1,2,0,0]],[[1,2,0,0],[2,4,1,2],[2,2,3,2],[1,2,0,0]],[[1,2,0,0],[3,3,1,2],[2,2,3,2],[1,2,0,0]],[[2,2,0,0],[2,3,1,2],[2,2,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,2,1],[0,2,4,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,1],[0,2,3,0],[2,2,2,1]],[[1,1,2,1],[1,3,2,1],[0,2,3,0],[1,3,2,1]],[[1,1,2,1],[1,3,2,1],[0,2,3,0],[1,2,3,1]],[[1,1,2,1],[1,3,2,1],[0,2,3,0],[1,2,2,2]],[[1,1,2,1],[1,3,2,1],[0,2,4,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,1],[0,2,3,1],[2,2,2,0]],[[1,1,2,1],[1,3,2,1],[0,2,3,1],[1,3,2,0]],[[1,1,2,1],[1,3,2,1],[0,2,3,1],[1,2,3,0]],[[1,2,0,0],[2,3,1,2],[2,2,3,2],[2,1,1,0]],[[1,2,0,0],[2,3,1,2],[3,2,3,2],[1,1,1,0]],[[1,2,0,0],[2,4,1,2],[2,2,3,2],[1,1,1,0]],[[1,2,0,0],[3,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,1,2,1],[1,4,2,1],[0,3,2,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,1],[0,4,2,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,1],[0,3,2,0],[2,2,2,1]],[[1,1,2,1],[1,3,2,1],[0,3,2,0],[1,3,2,1]],[[1,1,2,1],[1,3,2,1],[0,3,2,0],[1,2,3,1]],[[1,1,2,1],[1,3,2,1],[0,3,2,0],[1,2,2,2]],[[1,1,2,1],[1,4,2,1],[0,3,2,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,1],[0,4,2,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,1],[0,3,2,1],[2,2,2,0]],[[1,1,2,1],[1,3,2,1],[0,3,2,1],[1,3,2,0]],[[1,1,2,1],[1,3,2,1],[0,3,2,1],[1,2,3,0]],[[2,2,0,0],[2,3,1,2],[2,2,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,1,2],[2,2,3,2],[2,1,0,1]],[[1,2,0,0],[2,3,1,2],[3,2,3,2],[1,1,0,1]],[[1,2,0,0],[2,4,1,2],[2,2,3,2],[1,1,0,1]],[[1,2,0,0],[3,3,1,2],[2,2,3,2],[1,1,0,1]],[[2,2,0,0],[2,3,1,2],[2,2,3,2],[1,1,0,1]],[[1,1,2,1],[1,4,2,1],[0,3,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,1],[0,4,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,1],[0,3,4,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,1],[0,3,3,0],[1,1,3,1]],[[1,1,2,1],[1,3,2,1],[0,3,3,0],[1,1,2,2]],[[1,1,2,1],[1,4,2,1],[0,3,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,2,1],[0,4,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,2,1],[0,3,4,0],[1,2,1,1]],[[1,1,2,1],[1,3,2,1],[0,3,3,0],[2,2,1,1]],[[1,1,2,1],[1,3,2,1],[0,3,3,0],[1,3,1,1]],[[1,1,2,1],[1,4,2,1],[0,3,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,2,1],[0,4,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,2,1],[0,3,4,1],[1,1,1,1]],[[1,1,2,1],[1,4,2,1],[0,3,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,2,1],[0,4,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,2,1],[0,3,4,1],[1,1,2,0]],[[1,1,2,1],[1,3,2,1],[0,3,3,1],[1,1,3,0]],[[1,1,2,1],[1,4,2,1],[0,3,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[0,4,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[0,3,4,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[0,3,3,1],[2,2,0,1]],[[1,1,2,1],[1,3,2,1],[0,3,3,1],[1,3,0,1]],[[1,1,2,1],[1,4,2,1],[0,3,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[0,4,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[0,3,4,1],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[0,3,3,1],[2,2,1,0]],[[1,1,2,1],[1,3,2,1],[0,3,3,1],[1,3,1,0]],[[1,2,0,0],[2,3,1,2],[2,2,3,2],[2,0,2,0]],[[1,2,0,0],[2,3,1,2],[3,2,3,2],[1,0,2,0]],[[1,2,0,0],[2,4,1,2],[2,2,3,2],[1,0,2,0]],[[1,2,0,0],[3,3,1,2],[2,2,3,2],[1,0,2,0]],[[2,2,0,0],[2,3,1,2],[2,2,3,2],[1,0,2,0]],[[1,2,0,0],[2,3,1,2],[2,2,3,2],[2,0,1,1]],[[1,2,0,0],[2,3,1,2],[3,2,3,2],[1,0,1,1]],[[1,2,0,0],[2,4,1,2],[2,2,3,2],[1,0,1,1]],[[1,2,0,0],[3,3,1,2],[2,2,3,2],[1,0,1,1]],[[2,2,0,0],[2,3,1,2],[2,2,3,2],[1,0,1,1]],[[1,2,0,0],[2,3,1,2],[3,2,3,2],[0,2,1,0]],[[1,2,0,0],[2,4,1,2],[2,2,3,2],[0,2,1,0]],[[1,2,0,0],[3,3,1,2],[2,2,3,2],[0,2,1,0]],[[2,2,0,0],[2,3,1,2],[2,2,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,1,2],[3,2,3,2],[0,2,0,1]],[[1,2,0,0],[2,4,1,2],[2,2,3,2],[0,2,0,1]],[[1,2,0,0],[3,3,1,2],[2,2,3,2],[0,2,0,1]],[[2,2,0,0],[2,3,1,2],[2,2,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,1],[1,2,4,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,1],[1,2,3,0],[0,3,2,1]],[[1,1,2,1],[1,3,2,1],[1,2,3,0],[0,2,3,1]],[[1,1,2,1],[1,3,2,1],[1,2,3,0],[0,2,2,2]],[[1,1,2,1],[1,3,2,1],[1,2,4,1],[0,2,2,0]],[[1,1,2,1],[1,3,2,1],[1,2,3,1],[0,3,2,0]],[[1,1,2,1],[1,3,2,1],[1,2,3,1],[0,2,3,0]],[[1,2,0,0],[2,3,1,2],[3,2,3,2],[0,1,2,0]],[[1,2,0,0],[2,4,1,2],[2,2,3,2],[0,1,2,0]],[[1,2,0,0],[3,3,1,2],[2,2,3,2],[0,1,2,0]],[[2,2,0,0],[2,3,1,2],[2,2,3,2],[0,1,2,0]],[[1,2,0,0],[2,3,1,2],[3,2,3,2],[0,1,1,1]],[[1,2,0,0],[2,4,1,2],[2,2,3,2],[0,1,1,1]],[[1,2,0,0],[3,3,1,2],[2,2,3,2],[0,1,1,1]],[[2,2,0,0],[2,3,1,2],[2,2,3,2],[0,1,1,1]],[[1,2,0,0],[2,3,1,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,0],[2,3,1,2],[2,2,3,1],[2,2,1,0]],[[1,2,0,0],[2,3,1,2],[3,2,3,1],[1,2,1,0]],[[1,2,0,0],[3,3,1,2],[2,2,3,1],[1,2,1,0]],[[1,1,2,1],[1,4,2,1],[1,3,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,1],[1,4,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,0,1],[2,2,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,0,1],[1,3,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,0,1],[1,2,3,1]],[[1,1,2,1],[1,3,2,1],[1,3,0,1],[1,2,2,2]],[[1,1,2,1],[1,4,2,1],[1,3,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,1],[1,4,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,1],[1,3,0,2],[2,2,1,1]],[[1,1,2,1],[1,3,2,1],[1,3,0,2],[1,3,1,1]],[[1,1,2,1],[1,4,2,1],[1,3,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,1],[1,4,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,0,2],[2,2,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,0,2],[1,3,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,0,2],[1,2,3,0]],[[1,1,2,1],[1,4,2,1],[1,3,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,1],[1,4,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,1,0],[2,2,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,1,0],[1,3,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,1,0],[1,2,3,1]],[[1,1,2,1],[1,3,2,1],[1,3,1,0],[1,2,2,2]],[[1,1,2,1],[1,4,2,1],[1,3,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,1],[1,4,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,1,1],[2,2,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,1,1],[1,3,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,1,1],[1,2,3,0]],[[1,1,2,1],[1,4,2,1],[1,3,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[1,4,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[1,3,1,2],[2,2,0,1]],[[1,1,2,1],[1,3,2,1],[1,3,1,2],[1,3,0,1]],[[1,1,2,1],[1,4,2,1],[1,3,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,4,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,3,1,2],[2,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,3,1,2],[1,3,1,0]],[[2,2,0,0],[2,3,1,2],[2,2,3,1],[1,2,1,0]],[[1,2,0,0],[2,3,1,2],[2,2,3,1],[2,1,1,1]],[[1,1,2,1],[1,4,2,1],[1,3,2,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,1],[1,4,2,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,2,0],[0,3,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,2,0],[0,2,3,1]],[[1,1,2,1],[1,3,2,1],[1,3,2,0],[0,2,2,2]],[[1,1,2,1],[1,4,2,1],[1,3,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,2,1],[1,4,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,2,1],[1,3,2,0],[2,2,1,1]],[[1,1,2,1],[1,3,2,1],[1,3,2,0],[1,3,1,1]],[[1,1,2,1],[1,4,2,1],[1,3,2,1],[0,2,2,0]],[[1,1,2,1],[1,3,2,1],[1,4,2,1],[0,2,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,2,1],[0,3,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,2,1],[0,2,3,0]],[[1,1,2,1],[1,4,2,1],[1,3,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[1,4,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[1,3,2,1],[2,2,0,1]],[[1,1,2,1],[1,3,2,1],[1,3,2,1],[1,3,0,1]],[[1,1,2,1],[1,4,2,1],[1,3,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,4,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,3,2,1],[2,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,3,2,1],[1,3,1,0]],[[1,2,0,0],[2,3,1,2],[3,2,3,1],[1,1,1,1]],[[1,2,0,0],[2,4,1,2],[2,2,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,1,2],[2,2,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,1,2],[2,2,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,1,2],[2,2,3,1],[2,0,2,1]],[[1,2,0,0],[2,3,1,2],[3,2,3,1],[1,0,2,1]],[[1,2,0,0],[2,4,1,2],[2,2,3,1],[1,0,2,1]],[[1,2,0,0],[3,3,1,2],[2,2,3,1],[1,0,2,1]],[[2,2,0,0],[2,3,1,2],[2,2,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,1,2],[3,2,3,1],[0,2,1,1]],[[1,2,0,0],[2,4,1,2],[2,2,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,1,2],[2,2,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,1,2],[2,2,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,1,2],[3,2,3,1],[0,1,2,1]],[[1,2,0,0],[2,4,1,2],[2,2,3,1],[0,1,2,1]],[[1,2,0,0],[3,3,1,2],[2,2,3,1],[0,1,2,1]],[[2,2,0,0],[2,3,1,2],[2,2,3,1],[0,1,2,1]],[[1,1,2,1],[1,4,2,1],[1,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,2,1],[1,4,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,4,0],[0,1,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,3,0],[0,1,3,1]],[[1,1,2,1],[1,3,2,1],[1,3,3,0],[0,1,2,2]],[[1,1,2,1],[1,4,2,1],[1,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,2,1],[1,4,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,2,1],[1,3,4,0],[0,2,1,1]],[[1,1,2,1],[1,3,2,1],[1,3,3,0],[0,3,1,1]],[[1,1,2,1],[1,4,2,1],[1,3,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,2,1],[1,4,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,4,0],[1,0,2,1]],[[1,1,2,1],[1,3,2,1],[1,3,3,0],[1,0,3,1]],[[1,1,2,1],[1,3,2,1],[1,3,3,0],[1,0,2,2]],[[1,1,2,1],[1,4,2,1],[1,3,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,2,1],[1,4,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,2,1],[1,3,4,0],[1,1,1,1]],[[1,1,2,1],[1,4,2,1],[1,3,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,4,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,3,3,0],[2,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,3,3,0],[1,3,1,0]],[[1,2,0,0],[2,3,1,2],[2,2,3,0],[1,3,1,1]],[[1,2,0,0],[2,3,1,2],[2,2,3,0],[2,2,1,1]],[[1,2,0,0],[2,3,1,2],[3,2,3,0],[1,2,1,1]],[[1,2,0,0],[3,3,1,2],[2,2,3,0],[1,2,1,1]],[[2,2,0,0],[2,3,1,2],[2,2,3,0],[1,2,1,1]],[[1,1,2,1],[1,4,2,1],[1,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,2,1],[1,4,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,2,1],[1,3,4,1],[0,1,1,1]],[[1,1,2,1],[1,4,2,1],[1,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,2,1],[1,4,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,4,1],[0,1,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,3,1],[0,1,3,0]],[[1,1,2,1],[1,4,2,1],[1,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,1],[1,4,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,1],[1,3,4,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,1],[1,3,3,1],[0,3,0,1]],[[1,1,2,1],[1,4,2,1],[1,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,4,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,3,4,1],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[1,3,3,1],[0,3,1,0]],[[1,1,2,1],[1,4,2,1],[1,3,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,2,1],[1,4,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,2,1],[1,3,4,1],[1,0,1,1]],[[1,1,2,1],[1,4,2,1],[1,3,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[1,4,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,4,1],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[1,3,3,1],[1,0,3,0]],[[1,1,2,1],[1,4,2,1],[1,3,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,2,1],[1,4,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,2,1],[1,3,4,1],[1,1,0,1]],[[1,1,2,1],[1,4,2,1],[1,3,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[1,4,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[1,3,4,1],[1,1,1,0]],[[1,2,0,0],[2,3,1,2],[2,2,2,2],[2,1,2,0]],[[1,2,0,0],[2,3,1,2],[3,2,2,2],[1,1,2,0]],[[1,2,0,0],[2,4,1,2],[2,2,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,1,2],[2,2,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,1,2],[2,2,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,1,2],[3,2,2,2],[0,2,2,0]],[[1,2,0,0],[2,4,1,2],[2,2,2,2],[0,2,2,0]],[[1,2,0,0],[3,3,1,2],[2,2,2,2],[0,2,2,0]],[[2,2,0,0],[2,3,1,2],[2,2,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,1,2],[2,2,2,1],[1,3,2,0]],[[1,2,0,0],[2,3,1,2],[2,2,2,1],[2,2,2,0]],[[1,2,0,0],[2,3,1,2],[3,2,2,1],[1,2,2,0]],[[1,2,0,0],[3,3,1,2],[2,2,2,1],[1,2,2,0]],[[2,2,0,0],[2,3,1,2],[2,2,2,1],[1,2,2,0]],[[1,2,0,0],[2,3,1,2],[2,2,2,1],[2,1,2,1]],[[1,2,0,0],[2,3,1,2],[3,2,2,1],[1,1,2,1]],[[1,2,0,0],[2,4,1,2],[2,2,2,1],[1,1,2,1]],[[1,2,0,0],[3,3,1,2],[2,2,2,1],[1,1,2,1]],[[2,2,0,0],[2,3,1,2],[2,2,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,1,2],[3,2,2,1],[0,2,2,1]],[[1,2,0,0],[2,4,1,2],[2,2,2,1],[0,2,2,1]],[[1,2,0,0],[3,3,1,2],[2,2,2,1],[0,2,2,1]],[[2,2,0,0],[2,3,1,2],[2,2,2,1],[0,2,2,1]],[[1,2,0,0],[2,3,1,2],[2,2,2,0],[1,2,3,1]],[[1,2,0,0],[2,3,1,2],[2,2,2,0],[1,3,2,1]],[[1,2,0,0],[2,3,1,2],[2,2,2,0],[2,2,2,1]],[[1,2,0,0],[2,3,1,2],[3,2,2,0],[1,2,2,1]],[[1,2,0,0],[3,3,1,2],[2,2,2,0],[1,2,2,1]],[[2,2,0,0],[2,3,1,2],[2,2,2,0],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[2,2,1,2],[2,1,2,1]],[[1,2,0,0],[2,3,1,2],[3,2,1,2],[1,1,2,1]],[[1,2,0,0],[2,4,1,2],[2,2,1,2],[1,1,2,1]],[[1,2,0,0],[3,3,1,2],[2,2,1,2],[1,1,2,1]],[[2,2,0,0],[2,3,1,2],[2,2,1,2],[1,1,2,1]],[[1,2,0,0],[2,3,1,2],[3,2,1,2],[0,2,2,1]],[[1,2,0,0],[2,4,1,2],[2,2,1,2],[0,2,2,1]],[[1,2,0,0],[3,3,1,2],[2,2,1,2],[0,2,2,1]],[[2,2,0,0],[2,3,1,2],[2,2,1,2],[0,2,2,1]],[[1,2,0,0],[2,3,1,2],[2,1,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,1,2],[2,1,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,1,2],[3,1,3,2],[1,2,1,0]],[[1,2,0,0],[2,4,1,2],[2,1,3,2],[1,2,1,0]],[[1,2,0,0],[3,3,1,2],[2,1,3,2],[1,2,1,0]],[[2,2,0,0],[2,3,1,2],[2,1,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,1,2],[2,1,3,2],[1,3,0,1]],[[1,2,0,0],[2,3,1,2],[2,1,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,1,2],[3,1,3,2],[1,2,0,1]],[[1,2,0,0],[2,4,1,2],[2,1,3,2],[1,2,0,1]],[[1,2,0,0],[3,3,1,2],[2,1,3,2],[1,2,0,1]],[[2,2,0,0],[2,3,1,2],[2,1,3,2],[1,2,0,1]],[[1,2,0,0],[2,3,1,2],[2,1,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,1,2],[2,1,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,1,2],[3,1,3,1],[1,2,1,1]],[[1,2,0,0],[2,4,1,2],[2,1,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,1,2],[2,1,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,1,2],[2,1,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,1,2],[2,1,2,2],[1,2,3,0]],[[1,2,0,0],[2,3,1,2],[2,1,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,1,2],[2,1,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,1,2],[3,1,2,2],[1,2,2,0]],[[1,2,0,0],[2,4,1,2],[2,1,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,1,2],[2,1,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,1,2],[2,1,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,1,2],[2,1,2,1],[1,2,2,2]],[[1,2,0,0],[2,3,1,2],[2,1,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,1,2],[2,1,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,1,2],[2,1,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,1,2],[3,1,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,1],[3,2,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,1],[2,2,0,1],[2,2,2,1]],[[1,1,2,1],[1,3,2,1],[2,2,0,1],[1,3,2,1]],[[1,1,2,1],[1,3,2,1],[2,2,0,1],[1,2,3,1]],[[1,1,2,1],[1,3,2,1],[2,2,0,1],[1,2,2,2]],[[1,1,2,1],[1,3,2,1],[3,2,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,1],[2,2,0,2],[2,2,1,1]],[[1,1,2,1],[1,3,2,1],[2,2,0,2],[1,3,1,1]],[[1,1,2,1],[1,3,2,1],[3,2,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,1],[2,2,0,2],[2,2,2,0]],[[1,1,2,1],[1,3,2,1],[2,2,0,2],[1,3,2,0]],[[1,1,2,1],[1,3,2,1],[2,2,0,2],[1,2,3,0]],[[1,1,2,1],[1,3,2,1],[3,2,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,1],[2,2,1,0],[2,2,2,1]],[[1,1,2,1],[1,3,2,1],[2,2,1,0],[1,3,2,1]],[[1,1,2,1],[1,3,2,1],[2,2,1,0],[1,2,3,1]],[[1,1,2,1],[1,3,2,1],[2,2,1,0],[1,2,2,2]],[[1,1,2,1],[1,3,2,1],[3,2,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,1],[2,2,1,1],[2,2,2,0]],[[1,1,2,1],[1,3,2,1],[2,2,1,1],[1,3,2,0]],[[1,1,2,1],[1,3,2,1],[2,2,1,1],[1,2,3,0]],[[1,1,2,1],[1,3,2,1],[3,2,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[2,2,1,2],[2,2,0,1]],[[1,1,2,1],[1,3,2,1],[2,2,1,2],[1,3,0,1]],[[1,1,2,1],[1,3,2,1],[3,2,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,2,1,2],[2,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,2,1,2],[1,3,1,0]],[[1,2,0,0],[2,4,1,2],[2,1,2,1],[1,2,2,1]],[[1,2,0,0],[3,3,1,2],[2,1,2,1],[1,2,2,1]],[[2,2,0,0],[2,3,1,2],[2,1,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[2,1,1,2],[1,2,2,2]],[[1,2,0,0],[2,3,1,2],[2,1,1,2],[1,2,3,1]],[[1,2,0,0],[2,3,1,2],[2,1,1,2],[1,3,2,1]],[[1,1,2,1],[1,3,2,1],[3,2,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,2,1],[2,2,2,0],[2,2,1,1]],[[1,1,2,1],[1,3,2,1],[2,2,2,0],[1,3,1,1]],[[1,1,2,1],[1,3,2,1],[3,2,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[2,2,2,1],[2,2,0,1]],[[1,1,2,1],[1,3,2,1],[2,2,2,1],[1,3,0,1]],[[1,1,2,1],[1,3,2,1],[3,2,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,2,2,1],[2,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,2,2,1],[1,3,1,0]],[[1,2,0,0],[2,3,1,2],[2,1,1,2],[2,2,2,1]],[[1,2,0,0],[2,3,1,2],[2,1,1,3],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[3,1,1,2],[1,2,2,1]],[[1,2,0,0],[2,4,1,2],[2,1,1,2],[1,2,2,1]],[[1,2,0,0],[3,3,1,2],[2,1,1,2],[1,2,2,1]],[[2,2,0,0],[2,3,1,2],[2,1,1,2],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[2,0,3,2],[1,2,3,0]],[[1,2,0,0],[2,3,1,2],[2,0,3,2],[1,3,2,0]],[[1,2,0,0],[2,3,1,2],[2,0,3,2],[2,2,2,0]],[[1,2,0,0],[2,3,1,2],[2,0,3,3],[1,2,2,0]],[[1,2,0,0],[2,3,1,2],[2,0,4,2],[1,2,2,0]],[[1,2,0,0],[2,3,1,2],[3,0,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,1],[3,2,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,2,3,0],[2,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,2,3,0],[1,3,1,0]],[[1,2,0,0],[2,4,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,0,0],[3,3,1,2],[2,0,3,2],[1,2,2,0]],[[2,2,0,0],[2,3,1,2],[2,0,3,2],[1,2,2,0]],[[1,2,0,0],[2,3,1,2],[2,0,3,2],[1,2,1,2]],[[1,2,0,0],[2,3,1,2],[2,0,3,3],[1,2,1,1]],[[1,2,0,0],[2,3,1,2],[2,0,4,2],[1,2,1,1]],[[1,2,0,0],[2,3,1,2],[2,0,3,1],[1,2,2,2]],[[1,2,0,0],[2,3,1,2],[2,0,3,1],[1,2,3,1]],[[1,2,0,0],[2,3,1,2],[2,0,3,1],[1,3,2,1]],[[1,2,0,0],[2,3,1,2],[2,0,3,1],[2,2,2,1]],[[1,2,0,0],[2,3,1,2],[2,0,4,1],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[3,0,3,1],[1,2,2,1]],[[1,2,0,0],[2,4,1,2],[2,0,3,1],[1,2,2,1]],[[1,2,0,0],[3,3,1,2],[2,0,3,1],[1,2,2,1]],[[2,2,0,0],[2,3,1,2],[2,0,3,1],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[2,0,2,2],[1,2,2,2]],[[1,2,0,0],[2,3,1,2],[2,0,2,2],[1,2,3,1]],[[1,2,0,0],[2,3,1,2],[2,0,2,2],[1,3,2,1]],[[1,2,0,0],[2,3,1,2],[2,0,2,2],[2,2,2,1]],[[1,2,0,0],[2,3,1,2],[2,0,2,3],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[3,0,2,2],[1,2,2,1]],[[1,2,0,0],[2,4,1,2],[2,0,2,2],[1,2,2,1]],[[1,2,0,0],[3,3,1,2],[2,0,2,2],[1,2,2,1]],[[2,2,0,0],[2,3,1,2],[2,0,2,2],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[1,4,3,2],[1,2,0,0]],[[1,2,0,0],[2,4,1,2],[1,3,3,2],[1,2,0,0]],[[1,2,0,0],[3,3,1,2],[1,3,3,2],[1,2,0,0]],[[2,2,0,0],[2,3,1,2],[1,3,3,2],[1,2,0,0]],[[1,2,0,0],[2,3,1,2],[1,3,3,3],[1,1,1,0]],[[1,2,0,0],[2,3,1,2],[1,3,4,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[3,3,0,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,1],[2,3,0,0],[2,2,2,1]],[[1,1,2,1],[1,3,2,1],[2,3,0,0],[1,3,2,1]],[[1,1,2,1],[1,4,2,1],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,2,1],[3,3,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,2,1],[2,4,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,2,1],[2,3,0,1],[0,3,2,1]],[[1,1,2,1],[1,3,2,1],[2,3,0,1],[0,2,3,1]],[[1,1,2,1],[1,3,2,1],[2,3,0,1],[0,2,2,2]],[[1,1,2,1],[1,4,2,1],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[1,3,2,1],[3,3,0,1],[1,1,2,1]],[[1,1,2,1],[1,3,2,1],[2,4,0,1],[1,1,2,1]],[[1,1,2,1],[1,3,2,1],[2,3,0,1],[2,1,2,1]],[[1,1,2,1],[1,3,2,1],[3,3,0,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,1],[2,3,0,1],[2,2,2,0]],[[1,1,2,1],[1,3,2,1],[2,3,0,1],[1,3,2,0]],[[1,1,2,1],[1,4,2,1],[2,3,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,1],[3,3,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,1],[2,4,0,2],[0,1,2,1]],[[1,1,2,1],[1,4,2,1],[2,3,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,1],[3,3,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,1],[2,4,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,1],[2,3,0,2],[0,3,1,1]],[[1,1,2,1],[1,4,2,1],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,1],[3,3,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,1],[2,4,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,1],[2,3,0,2],[0,3,2,0]],[[1,1,2,1],[1,3,2,1],[2,3,0,2],[0,2,3,0]],[[1,1,2,1],[1,4,2,1],[2,3,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,1],[3,3,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,1],[2,4,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,1],[2,3,0,2],[2,0,2,1]],[[1,1,2,1],[1,4,2,1],[2,3,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,1],[3,3,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,1],[2,4,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,1],[2,3,0,2],[2,1,1,1]],[[1,1,2,1],[1,4,2,1],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,1],[3,3,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,1],[2,4,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,1],[2,3,0,2],[2,1,2,0]],[[1,2,0,0],[2,3,1,2],[1,4,3,2],[1,1,1,0]],[[1,2,0,0],[2,4,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,0,0],[3,3,1,2],[1,3,3,2],[1,1,1,0]],[[2,2,0,0],[2,3,1,2],[1,3,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,1,2],[1,3,3,2],[1,1,0,2]],[[1,2,0,0],[2,3,1,2],[1,3,3,3],[1,1,0,1]],[[1,2,0,0],[2,3,1,2],[1,3,4,2],[1,1,0,1]],[[1,2,0,0],[2,3,1,2],[1,4,3,2],[1,1,0,1]],[[1,1,2,1],[1,4,2,1],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,1],[3,3,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,1],[2,4,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,1],[2,3,1,0],[0,3,2,1]],[[1,1,2,1],[1,3,2,1],[2,3,1,0],[0,2,3,1]],[[1,1,2,1],[1,3,2,1],[2,3,1,0],[0,2,2,2]],[[1,1,2,1],[1,4,2,1],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,1],[3,3,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,1],[2,4,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,1],[2,3,1,0],[2,1,2,1]],[[1,1,2,1],[1,4,2,1],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,2,1],[3,3,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,2,1],[2,4,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,2,1],[2,3,1,1],[0,3,2,0]],[[1,1,2,1],[1,3,2,1],[2,3,1,1],[0,2,3,0]],[[1,1,2,1],[1,4,2,1],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,2,1],[3,3,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,2,1],[2,4,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,2,1],[2,3,1,1],[2,1,2,0]],[[1,2,0,0],[2,4,1,2],[1,3,3,2],[1,1,0,1]],[[1,2,0,0],[3,3,1,2],[1,3,3,2],[1,1,0,1]],[[2,2,0,0],[2,3,1,2],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,4,2,1],[2,3,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,1],[3,3,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,1],[2,4,1,2],[0,1,1,1]],[[1,1,2,1],[1,4,2,1],[2,3,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,1],[3,3,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,1],[2,4,1,2],[0,1,2,0]],[[1,1,2,1],[1,4,2,1],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,1],[3,3,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,1],[2,4,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,1],[2,3,1,2],[0,3,0,1]],[[1,1,2,1],[1,4,2,1],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[3,3,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,4,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,3,1,2],[0,3,1,0]],[[1,2,0,0],[2,3,1,2],[1,3,3,2],[1,0,3,0]],[[1,2,0,0],[2,3,1,2],[1,3,3,3],[1,0,2,0]],[[1,2,0,0],[2,3,1,2],[1,3,4,2],[1,0,2,0]],[[1,1,2,1],[1,4,2,1],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,1],[3,3,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,1],[2,4,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,1],[2,3,1,2],[2,0,1,1]],[[1,1,2,1],[1,4,2,1],[2,3,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[3,3,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[2,4,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[2,3,1,2],[2,0,2,0]],[[1,1,2,1],[1,4,2,1],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,1],[3,3,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,1],[2,4,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,1],[2,3,1,2],[2,1,0,1]],[[1,1,2,1],[1,4,2,1],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[3,3,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[2,4,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[2,3,1,2],[2,1,1,0]],[[1,2,0,0],[2,3,1,2],[1,4,3,2],[1,0,2,0]],[[1,2,0,0],[2,4,1,2],[1,3,3,2],[1,0,2,0]],[[1,2,0,0],[3,3,1,2],[1,3,3,2],[1,0,2,0]],[[2,2,0,0],[2,3,1,2],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[1,4,2,1],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[1,3,2,1],[3,3,1,2],[1,2,0,0]],[[1,1,2,1],[1,3,2,1],[2,4,1,2],[1,2,0,0]],[[1,1,2,1],[1,3,2,1],[2,3,1,2],[2,2,0,0]],[[1,2,0,0],[2,3,1,2],[1,3,3,2],[1,0,1,2]],[[1,2,0,0],[2,3,1,2],[1,3,3,3],[1,0,1,1]],[[1,2,0,0],[2,3,1,2],[1,3,4,2],[1,0,1,1]],[[1,2,0,0],[2,3,1,2],[1,4,3,2],[1,0,1,1]],[[1,2,0,0],[2,4,1,2],[1,3,3,2],[1,0,1,1]],[[1,2,0,0],[3,3,1,2],[1,3,3,2],[1,0,1,1]],[[2,2,0,0],[2,3,1,2],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[1,4,2,1],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[1,3,2,1],[3,3,2,0],[0,1,2,1]],[[1,1,2,1],[1,3,2,1],[2,4,2,0],[0,1,2,1]],[[1,1,2,1],[1,4,2,1],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,2,1],[3,3,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,2,1],[2,4,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,2,1],[2,3,2,0],[0,3,1,1]],[[1,1,2,1],[1,4,2,1],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,2,1],[3,3,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,2,1],[2,4,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,2,1],[2,3,2,0],[2,0,2,1]],[[1,1,2,1],[1,4,2,1],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,2,1],[3,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,2,1],[2,4,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,2,1],[2,3,2,0],[2,1,1,1]],[[1,1,2,1],[1,4,2,1],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[3,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[2,4,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,2,1],[2,3,2,0],[2,2,0,1]],[[1,2,0,0],[2,3,1,2],[1,3,3,2],[0,3,1,0]],[[1,2,0,0],[2,3,1,2],[1,3,3,3],[0,2,1,0]],[[1,2,0,0],[2,3,1,2],[1,3,4,2],[0,2,1,0]],[[1,1,2,1],[1,4,2,1],[2,3,2,1],[0,1,1,1]],[[1,1,2,1],[1,3,2,1],[3,3,2,1],[0,1,1,1]],[[1,1,2,1],[1,3,2,1],[2,4,2,1],[0,1,1,1]],[[1,1,2,1],[1,4,2,1],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[1,3,2,1],[3,3,2,1],[0,1,2,0]],[[1,1,2,1],[1,3,2,1],[2,4,2,1],[0,1,2,0]],[[1,1,2,1],[1,4,2,1],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,1],[3,3,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,1],[2,4,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,1],[2,3,2,1],[0,3,0,1]],[[1,1,2,1],[1,4,2,1],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[3,3,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,4,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,3,2,1],[0,3,1,0]],[[1,2,0,0],[2,3,1,2],[1,4,3,2],[0,2,1,0]],[[1,2,0,0],[2,4,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,0,0],[3,3,1,2],[1,3,3,2],[0,2,1,0]],[[2,2,0,0],[2,3,1,2],[1,3,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,1,2],[1,3,3,2],[0,2,0,2]],[[1,2,0,0],[2,3,1,2],[1,3,3,2],[0,3,0,1]],[[1,1,2,1],[1,4,2,1],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[1,3,2,1],[3,3,2,1],[1,0,1,1]],[[1,1,2,1],[1,3,2,1],[2,4,2,1],[1,0,1,1]],[[1,1,2,1],[1,3,2,1],[2,3,2,1],[2,0,1,1]],[[1,1,2,1],[1,4,2,1],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[3,3,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[2,4,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[2,3,2,1],[2,0,2,0]],[[1,1,2,1],[1,4,2,1],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,2,1],[3,3,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,2,1],[2,4,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,2,1],[2,3,2,1],[2,1,0,1]],[[1,1,2,1],[1,4,2,1],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[3,3,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[2,4,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[2,3,2,1],[2,1,1,0]],[[1,2,0,0],[2,3,1,2],[1,3,3,3],[0,2,0,1]],[[1,2,0,0],[2,3,1,2],[1,3,4,2],[0,2,0,1]],[[1,2,0,0],[2,3,1,2],[1,4,3,2],[0,2,0,1]],[[1,2,0,0],[2,4,1,2],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,4,2,1],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,2,1],[3,3,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,2,1],[2,4,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,2,1],[2,3,2,1],[2,2,0,0]],[[1,2,0,0],[3,3,1,2],[1,3,3,2],[0,2,0,1]],[[2,2,0,0],[2,3,1,2],[1,3,3,2],[0,2,0,1]],[[1,2,0,0],[2,3,1,2],[1,3,3,2],[0,1,3,0]],[[1,2,0,0],[2,3,1,2],[1,3,3,3],[0,1,2,0]],[[1,2,0,0],[2,3,1,2],[1,3,4,2],[0,1,2,0]],[[1,2,0,0],[2,3,1,2],[1,4,3,2],[0,1,2,0]],[[1,2,0,0],[2,4,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,0,0],[3,3,1,2],[1,3,3,2],[0,1,2,0]],[[2,2,0,0],[2,3,1,2],[1,3,3,2],[0,1,2,0]],[[1,2,0,0],[2,3,1,2],[1,3,3,2],[0,1,1,2]],[[1,2,0,0],[2,3,1,2],[1,3,3,3],[0,1,1,1]],[[1,2,0,0],[2,3,1,2],[1,3,4,2],[0,1,1,1]],[[1,2,0,0],[2,3,1,2],[1,4,3,2],[0,1,1,1]],[[1,2,0,0],[2,4,1,2],[1,3,3,2],[0,1,1,1]],[[1,2,0,0],[3,3,1,2],[1,3,3,2],[0,1,1,1]],[[2,2,0,0],[2,3,1,2],[1,3,3,2],[0,1,1,1]],[[1,2,0,0],[2,3,1,2],[1,3,3,2],[0,0,2,2]],[[1,2,0,0],[2,3,1,2],[1,3,3,3],[0,0,2,1]],[[1,2,0,0],[2,3,1,2],[1,3,4,2],[0,0,2,1]],[[1,2,0,0],[2,3,1,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,0],[2,3,1,2],[1,3,3,1],[2,2,1,0]],[[1,2,0,0],[2,3,1,2],[1,4,3,1],[1,2,1,0]],[[1,2,0,0],[2,3,1,2],[1,3,4,1],[1,1,1,1]],[[1,2,0,0],[2,3,1,2],[1,4,3,1],[1,1,1,1]],[[1,2,0,0],[2,4,1,2],[1,3,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,1,2],[1,3,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,1,2],[1,3,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,1,2],[1,3,3,1],[1,0,2,2]],[[1,2,0,0],[2,3,1,2],[1,3,3,1],[1,0,3,1]],[[1,2,0,0],[2,3,1,2],[1,3,4,1],[1,0,2,1]],[[1,2,0,0],[2,3,1,2],[1,4,3,1],[1,0,2,1]],[[1,2,0,0],[2,4,1,2],[1,3,3,1],[1,0,2,1]],[[1,2,0,0],[3,3,1,2],[1,3,3,1],[1,0,2,1]],[[2,2,0,0],[2,3,1,2],[1,3,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,1,2],[1,3,3,1],[0,3,1,1]],[[1,2,0,0],[2,3,1,2],[1,3,4,1],[0,2,1,1]],[[1,2,0,0],[2,3,1,2],[1,4,3,1],[0,2,1,1]],[[1,2,0,0],[2,4,1,2],[1,3,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,1,2],[1,3,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,1,2],[1,3,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,1,2],[1,3,3,1],[0,1,2,2]],[[1,2,0,0],[2,3,1,2],[1,3,3,1],[0,1,3,1]],[[1,2,0,0],[2,3,1,2],[1,3,4,1],[0,1,2,1]],[[1,2,0,0],[2,3,1,2],[1,4,3,1],[0,1,2,1]],[[1,2,0,0],[2,4,1,2],[1,3,3,1],[0,1,2,1]],[[1,2,0,0],[3,3,1,2],[1,3,3,1],[0,1,2,1]],[[2,2,0,0],[2,3,1,2],[1,3,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,1,2],[1,3,3,0],[1,3,1,1]],[[1,2,0,0],[2,3,1,2],[1,3,3,0],[2,2,1,1]],[[1,2,0,0],[2,3,1,2],[1,4,3,0],[1,2,1,1]],[[1,1,2,1],[1,4,2,1],[2,3,3,0],[0,1,2,0]],[[1,1,2,1],[1,3,2,1],[3,3,3,0],[0,1,2,0]],[[1,1,2,1],[1,3,2,1],[2,4,3,0],[0,1,2,0]],[[1,1,2,1],[1,4,2,1],[2,3,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[3,3,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,4,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,2,1],[2,3,3,0],[0,3,1,0]],[[1,1,2,1],[1,4,2,1],[2,3,3,0],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[3,3,3,0],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[2,4,3,0],[1,0,2,0]],[[1,1,2,1],[1,3,2,1],[2,3,3,0],[2,0,2,0]],[[1,1,2,1],[1,4,2,1],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[3,3,3,0],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[2,4,3,0],[1,1,1,0]],[[1,1,2,1],[1,3,2,1],[2,3,3,0],[2,1,1,0]],[[1,2,0,0],[2,3,1,2],[1,4,2,2],[1,1,2,0]],[[1,2,0,0],[2,4,1,2],[1,3,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,1,2],[1,3,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,1,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[1,4,2,1],[2,3,3,0],[1,2,0,0]],[[1,1,2,1],[1,3,2,1],[3,3,3,0],[1,2,0,0]],[[1,1,2,1],[1,3,2,1],[2,4,3,0],[1,2,0,0]],[[1,1,2,1],[1,3,2,1],[2,3,3,0],[2,2,0,0]],[[1,2,0,0],[2,3,1,2],[1,3,2,2],[1,0,2,2]],[[1,2,0,0],[2,3,1,2],[1,3,2,2],[1,0,3,1]],[[1,2,0,0],[2,3,1,2],[1,3,2,3],[1,0,2,1]],[[1,2,0,0],[2,3,1,2],[1,3,2,2],[0,2,3,0]],[[1,2,0,0],[2,3,1,2],[1,3,2,2],[0,3,2,0]],[[1,2,0,0],[2,3,1,2],[1,4,2,2],[0,2,2,0]],[[1,2,0,0],[2,4,1,2],[1,3,2,2],[0,2,2,0]],[[1,2,0,0],[3,3,1,2],[1,3,2,2],[0,2,2,0]],[[2,2,0,0],[2,3,1,2],[1,3,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,1,2],[1,3,2,2],[0,1,2,2]],[[1,2,0,0],[2,3,1,2],[1,3,2,2],[0,1,3,1]],[[1,2,0,0],[2,3,1,2],[1,3,2,3],[0,1,2,1]],[[1,1,2,1],[1,4,2,1],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[1,3,2,1],[3,3,3,1],[0,2,0,0]],[[1,1,2,1],[1,3,2,1],[2,4,3,1],[0,2,0,0]],[[1,2,0,0],[2,3,1,2],[1,3,2,1],[1,3,2,0]],[[1,2,0,0],[2,3,1,2],[1,3,2,1],[2,2,2,0]],[[1,2,0,0],[2,3,1,2],[1,4,2,1],[1,2,2,0]],[[1,2,0,0],[2,3,1,2],[1,4,2,1],[1,1,2,1]],[[1,2,0,0],[2,4,1,2],[1,3,2,1],[1,1,2,1]],[[1,2,0,0],[3,3,1,2],[1,3,2,1],[1,1,2,1]],[[2,2,0,0],[2,3,1,2],[1,3,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,1,2],[1,3,2,1],[0,2,2,2]],[[1,2,0,0],[2,3,1,2],[1,3,2,1],[0,2,3,1]],[[1,2,0,0],[2,3,1,2],[1,3,2,1],[0,3,2,1]],[[1,2,0,0],[2,3,1,2],[1,4,2,1],[0,2,2,1]],[[1,2,0,0],[2,4,1,2],[1,3,2,1],[0,2,2,1]],[[1,2,0,0],[3,3,1,2],[1,3,2,1],[0,2,2,1]],[[2,2,0,0],[2,3,1,2],[1,3,2,1],[0,2,2,1]],[[1,2,0,0],[2,3,1,2],[1,3,2,0],[1,2,3,1]],[[1,2,0,0],[2,3,1,2],[1,3,2,0],[1,3,2,1]],[[1,2,0,0],[2,3,1,2],[1,3,2,0],[2,2,2,1]],[[1,2,0,0],[2,3,1,2],[1,4,2,0],[1,2,2,1]],[[1,1,2,1],[1,4,2,1],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,2,1],[3,3,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,2,1],[2,4,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,2,1],[2,3,3,1],[2,1,0,0]],[[1,2,0,0],[2,3,1,2],[1,4,1,2],[1,1,2,1]],[[1,2,0,0],[2,4,1,2],[1,3,1,2],[1,1,2,1]],[[1,2,0,0],[3,3,1,2],[1,3,1,2],[1,1,2,1]],[[2,2,0,0],[2,3,1,2],[1,3,1,2],[1,1,2,1]],[[1,2,0,0],[2,3,1,2],[1,3,1,2],[0,2,2,2]],[[1,2,0,0],[2,3,1,2],[1,3,1,2],[0,2,3,1]],[[1,2,0,0],[2,3,1,2],[1,3,1,2],[0,3,2,1]],[[1,2,0,0],[2,3,1,2],[1,3,1,3],[0,2,2,1]],[[1,2,0,0],[2,3,1,2],[1,4,1,2],[0,2,2,1]],[[1,2,0,0],[2,4,1,2],[1,3,1,2],[0,2,2,1]],[[1,2,0,0],[3,3,1,2],[1,3,1,2],[0,2,2,1]],[[2,2,0,0],[2,3,1,2],[1,3,1,2],[0,2,2,1]],[[1,2,0,0],[2,3,1,2],[1,2,3,2],[0,2,3,0]],[[1,2,0,0],[2,3,1,2],[1,2,3,2],[0,3,2,0]],[[1,2,0,0],[2,3,1,2],[1,2,3,3],[0,2,2,0]],[[1,2,0,0],[2,3,1,2],[1,2,4,2],[0,2,2,0]],[[1,2,0,0],[2,3,1,2],[1,2,3,2],[0,2,1,2]],[[1,2,0,0],[2,3,1,2],[1,2,3,3],[0,2,1,1]],[[1,2,0,0],[2,3,1,2],[1,2,4,2],[0,2,1,1]],[[1,2,0,0],[2,3,1,2],[1,2,3,1],[0,2,2,2]],[[1,2,0,0],[2,3,1,2],[1,2,3,1],[0,2,3,1]],[[1,2,0,0],[2,3,1,2],[1,2,3,1],[0,3,2,1]],[[1,2,0,0],[2,3,1,2],[1,2,4,1],[0,2,2,1]],[[1,2,0,0],[2,3,1,2],[1,2,2,2],[0,2,2,2]],[[1,2,0,0],[2,3,1,2],[1,2,2,2],[0,2,3,1]],[[1,2,0,0],[2,3,1,2],[1,2,2,2],[0,3,2,1]],[[1,2,0,0],[2,3,1,2],[1,2,2,3],[0,2,2,1]],[[1,2,0,0],[2,3,1,2],[0,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,1,2],[0,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,1,2],[0,3,3,3],[1,2,1,0]],[[1,2,0,0],[2,3,1,2],[0,3,4,2],[1,2,1,0]],[[1,2,0,0],[2,3,1,2],[0,4,3,2],[1,2,1,0]],[[1,2,0,0],[2,4,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,0,0],[3,3,1,2],[0,3,3,2],[1,2,1,0]],[[2,2,0,0],[2,3,1,2],[0,3,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,1,2],[0,3,3,2],[1,2,0,2]],[[1,2,0,0],[2,3,1,2],[0,3,3,2],[1,3,0,1]],[[1,2,0,0],[2,3,1,2],[0,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,1,2],[0,3,3,3],[1,2,0,1]],[[1,2,0,0],[2,3,1,2],[0,3,4,2],[1,2,0,1]],[[1,2,0,0],[2,3,1,2],[0,4,3,2],[1,2,0,1]],[[1,2,0,0],[2,4,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,0,0],[3,3,1,2],[0,3,3,2],[1,2,0,1]],[[2,2,0,0],[2,3,1,2],[0,3,3,2],[1,2,0,1]],[[1,2,0,0],[2,3,1,2],[0,3,3,2],[1,1,3,0]],[[1,2,0,0],[2,3,1,2],[0,3,3,3],[1,1,2,0]],[[1,2,0,0],[2,3,1,2],[0,3,4,2],[1,1,2,0]],[[1,2,0,0],[2,3,1,2],[0,4,3,2],[1,1,2,0]],[[1,2,0,0],[2,4,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,0,0],[3,3,1,2],[0,3,3,2],[1,1,2,0]],[[2,2,0,0],[2,3,1,2],[0,3,3,2],[1,1,2,0]],[[1,2,0,0],[2,3,1,2],[0,3,3,2],[1,1,1,2]],[[1,2,0,0],[2,3,1,2],[0,3,3,3],[1,1,1,1]],[[1,2,0,0],[2,3,1,2],[0,3,4,2],[1,1,1,1]],[[1,2,0,0],[2,3,1,2],[0,4,3,2],[1,1,1,1]],[[1,2,0,0],[2,4,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,0,0],[3,3,1,2],[0,3,3,2],[1,1,1,1]],[[2,2,0,0],[2,3,1,2],[0,3,3,2],[1,1,1,1]],[[1,2,0,0],[2,3,1,2],[0,3,3,2],[1,0,2,2]],[[1,2,0,0],[2,3,1,2],[0,3,3,3],[1,0,2,1]],[[1,2,0,0],[2,3,1,2],[0,3,4,2],[1,0,2,1]],[[1,2,0,0],[2,3,1,2],[0,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,1,2],[0,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,1,2],[0,3,4,1],[1,2,1,1]],[[1,2,0,0],[2,3,1,2],[0,4,3,1],[1,2,1,1]],[[1,2,0,0],[2,4,1,2],[0,3,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,1,2],[0,3,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,1,2],[0,3,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,1,2],[0,3,3,1],[1,1,2,2]],[[1,2,0,0],[2,3,1,2],[0,3,3,1],[1,1,3,1]],[[1,2,0,0],[2,3,1,2],[0,3,4,1],[1,1,2,1]],[[1,2,0,0],[2,3,1,2],[0,4,3,1],[1,1,2,1]],[[1,2,0,0],[2,4,1,2],[0,3,3,1],[1,1,2,1]],[[1,2,0,0],[3,3,1,2],[0,3,3,1],[1,1,2,1]],[[2,2,0,0],[2,3,1,2],[0,3,3,1],[1,1,2,1]],[[1,2,0,0],[2,3,1,2],[0,3,2,2],[1,2,3,0]],[[1,2,0,0],[2,3,1,2],[0,3,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,1,2],[0,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,1,2],[0,4,2,2],[1,2,2,0]],[[1,2,0,0],[2,4,1,2],[0,3,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,1,2],[0,3,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,1,2],[0,3,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,1,2],[0,3,2,2],[1,1,2,2]],[[1,2,0,0],[2,3,1,2],[0,3,2,2],[1,1,3,1]],[[1,2,0,0],[2,3,1,2],[0,3,2,3],[1,1,2,1]],[[1,2,0,0],[2,3,1,2],[0,3,2,1],[1,2,2,2]],[[1,2,0,0],[2,3,1,2],[0,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,1,2],[0,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,1,2],[0,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,1,2],[0,4,2,1],[1,2,2,1]],[[1,2,0,0],[2,4,1,2],[0,3,2,1],[1,2,2,1]],[[1,2,0,0],[3,3,1,2],[0,3,2,1],[1,2,2,1]],[[2,2,0,0],[2,3,1,2],[0,3,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[0,3,1,2],[1,2,2,2]],[[1,2,0,0],[2,3,1,2],[0,3,1,2],[1,2,3,1]],[[1,2,0,0],[2,3,1,2],[0,3,1,2],[1,3,2,1]],[[1,2,0,0],[2,3,1,2],[0,3,1,2],[2,2,2,1]],[[1,2,0,0],[2,3,1,2],[0,3,1,3],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[0,4,1,2],[1,2,2,1]],[[1,2,0,0],[2,4,1,2],[0,3,1,2],[1,2,2,1]],[[1,2,0,0],[3,3,1,2],[0,3,1,2],[1,2,2,1]],[[2,2,0,0],[2,3,1,2],[0,3,1,2],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[0,2,3,2],[1,2,3,0]],[[1,2,0,0],[2,3,1,2],[0,2,3,2],[1,3,2,0]],[[1,2,0,0],[2,3,1,2],[0,2,3,2],[2,2,2,0]],[[1,2,0,0],[2,3,1,2],[0,2,3,3],[1,2,2,0]],[[1,2,0,0],[2,3,1,2],[0,2,4,2],[1,2,2,0]],[[1,2,0,0],[2,3,1,2],[0,2,3,2],[1,2,1,2]],[[1,2,0,0],[2,3,1,2],[0,2,3,3],[1,2,1,1]],[[1,2,0,0],[2,3,1,2],[0,2,4,2],[1,2,1,1]],[[1,2,0,0],[2,3,1,2],[0,2,3,1],[1,2,2,2]],[[1,2,0,0],[2,3,1,2],[0,2,3,1],[1,2,3,1]],[[1,2,0,0],[2,3,1,2],[0,2,3,1],[1,3,2,1]],[[1,2,0,0],[2,3,1,2],[0,2,3,1],[2,2,2,1]],[[1,2,0,0],[2,3,1,2],[0,2,4,1],[1,2,2,1]],[[1,2,0,0],[2,3,1,2],[0,2,2,2],[1,2,2,2]],[[1,2,0,0],[2,3,1,2],[0,2,2,2],[1,2,3,1]],[[1,2,0,0],[2,3,1,2],[0,2,2,2],[1,3,2,1]],[[1,2,0,0],[2,3,1,2],[0,2,2,2],[2,2,2,1]],[[1,2,0,0],[2,3,1,2],[0,2,2,3],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[0,0,2,2],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[0,0,2,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[0,0,2,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,2],[0,0,2,3],[1,2,2,1]],[[1,1,2,1],[1,3,2,2],[0,0,2,2],[1,2,3,1]],[[1,1,2,1],[1,3,2,2],[0,0,2,2],[1,2,2,2]],[[1,1,3,1],[1,3,2,2],[0,0,3,2],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[0,0,3,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[0,0,3,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[0,0,3,3],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[0,0,3,2],[0,2,2,2]],[[1,1,3,1],[1,3,2,2],[0,0,3,2],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[0,0,3,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[0,0,3,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,2],[0,0,3,3],[1,1,2,1]],[[1,1,2,1],[1,3,2,2],[0,0,3,2],[1,1,2,2]],[[1,1,3,1],[1,3,2,2],[0,0,3,2],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[0,0,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[0,0,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[0,0,3,3],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[0,0,3,2],[1,2,1,2]],[[1,1,3,1],[1,3,2,2],[0,0,3,2],[1,2,2,0]],[[1,1,2,2],[1,3,2,2],[0,0,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,3],[0,0,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,2],[0,0,3,3],[1,2,2,0]],[[1,1,3,1],[1,3,2,2],[0,1,1,2],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[0,1,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[0,1,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,2],[0,1,1,3],[1,2,2,1]],[[1,1,2,1],[1,3,2,2],[0,1,1,2],[2,2,2,1]],[[1,1,2,1],[1,3,2,2],[0,1,1,2],[1,3,2,1]],[[1,1,2,1],[1,3,2,2],[0,1,1,2],[1,2,3,1]],[[1,1,2,1],[1,3,2,2],[0,1,1,2],[1,2,2,2]],[[1,1,3,1],[1,3,2,2],[0,1,2,2],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[0,1,2,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[0,1,2,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[0,1,2,3],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[0,1,2,2],[1,2,1,2]],[[1,1,3,1],[1,3,2,2],[0,1,2,2],[1,2,2,0]],[[1,1,2,2],[1,3,2,2],[0,1,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,3],[0,1,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,2],[0,1,2,3],[1,2,2,0]],[[1,1,3,1],[1,3,2,2],[0,1,3,0],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[0,1,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[0,1,3,0],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[0,1,3,1],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[0,1,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[0,1,3,1],[1,2,1,1]],[[1,1,3,1],[1,3,2,2],[0,1,3,1],[1,2,2,0]],[[1,1,2,2],[1,3,2,2],[0,1,3,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,3],[0,1,3,1],[1,2,2,0]],[[1,1,3,1],[1,3,2,2],[0,1,3,2],[1,0,2,1]],[[1,1,2,2],[1,3,2,2],[0,1,3,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,3],[0,1,3,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[0,1,3,3],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[0,1,3,2],[1,0,2,2]],[[1,1,3,1],[1,3,2,2],[0,1,3,2],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[0,1,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[0,1,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[0,1,3,3],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[0,1,3,2],[1,1,1,2]],[[1,1,3,1],[1,3,2,2],[0,1,3,2],[1,1,2,0]],[[1,1,2,2],[1,3,2,2],[0,1,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,3],[0,1,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,2],[0,1,3,3],[1,1,2,0]],[[1,2,0,0],[2,3,1,1],[2,3,3,2],[2,2,0,0]],[[1,2,0,0],[2,3,1,1],[2,4,3,2],[1,2,0,0]],[[1,2,0,0],[2,3,1,1],[3,3,3,2],[1,2,0,0]],[[1,2,0,0],[3,3,1,1],[2,3,3,2],[1,2,0,0]],[[2,2,0,0],[2,3,1,1],[2,3,3,2],[1,2,0,0]],[[1,1,3,1],[1,3,2,2],[0,2,0,2],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[0,2,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[0,2,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,2],[0,2,0,3],[1,2,2,1]],[[1,1,2,1],[1,3,2,2],[0,2,0,2],[2,2,2,1]],[[1,1,2,1],[1,3,2,2],[0,2,0,2],[1,3,2,1]],[[1,1,2,1],[1,3,2,2],[0,2,0,2],[1,2,3,1]],[[1,1,2,1],[1,3,2,2],[0,2,0,2],[1,2,2,2]],[[1,1,3,1],[1,3,2,2],[0,2,1,2],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[0,2,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[0,2,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,2],[0,2,1,3],[1,1,2,1]],[[1,1,2,1],[1,3,2,2],[0,2,1,2],[1,1,3,1]],[[1,1,2,1],[1,3,2,2],[0,2,1,2],[1,1,2,2]],[[1,1,3,1],[1,3,2,2],[0,2,2,2],[1,0,2,1]],[[1,1,2,2],[1,3,2,2],[0,2,2,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,3],[0,2,2,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[0,2,2,3],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[0,2,2,2],[1,0,2,2]],[[1,1,3,1],[1,3,2,2],[0,2,2,2],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[0,2,2,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[0,2,2,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[0,2,2,3],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[0,2,2,2],[1,1,1,2]],[[1,1,3,1],[1,3,2,2],[0,2,2,2],[1,1,2,0]],[[1,1,2,2],[1,3,2,2],[0,2,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,3],[0,2,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,2],[0,2,2,3],[1,1,2,0]],[[1,1,3,1],[1,3,2,2],[0,2,2,2],[1,2,0,1]],[[1,1,2,2],[1,3,2,2],[0,2,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,3],[0,2,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,2],[0,2,2,3],[1,2,0,1]],[[1,1,2,1],[1,3,2,2],[0,2,2,2],[1,2,0,2]],[[1,1,3,1],[1,3,2,2],[0,2,2,2],[1,2,1,0]],[[1,1,2,2],[1,3,2,2],[0,2,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,3],[0,2,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,2],[0,2,2,3],[1,2,1,0]],[[1,2,0,0],[2,3,1,1],[2,3,3,2],[2,1,1,0]],[[1,1,3,1],[1,3,2,2],[0,2,3,0],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[0,2,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[0,2,3,0],[1,1,2,1]],[[1,1,3,1],[1,3,2,2],[0,2,3,0],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[0,2,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[0,2,3,0],[1,2,1,1]],[[1,1,3,1],[1,3,2,2],[0,2,3,1],[1,0,2,1]],[[1,1,2,2],[1,3,2,2],[0,2,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,2,3],[0,2,3,1],[1,0,2,1]],[[1,1,3,1],[1,3,2,2],[0,2,3,1],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[0,2,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[0,2,3,1],[1,1,1,1]],[[1,1,3,1],[1,3,2,2],[0,2,3,1],[1,1,2,0]],[[1,1,2,2],[1,3,2,2],[0,2,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,2,3],[0,2,3,1],[1,1,2,0]],[[1,1,3,1],[1,3,2,2],[0,2,3,1],[1,2,0,1]],[[1,1,2,2],[1,3,2,2],[0,2,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,3],[0,2,3,1],[1,2,0,1]],[[1,1,3,1],[1,3,2,2],[0,2,3,1],[1,2,1,0]],[[1,1,2,2],[1,3,2,2],[0,2,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,2,3],[0,2,3,1],[1,2,1,0]],[[1,2,0,0],[2,3,1,1],[2,4,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,1,1],[3,3,3,2],[1,1,1,0]],[[1,2,0,0],[3,3,1,1],[2,3,3,2],[1,1,1,0]],[[2,2,0,0],[2,3,1,1],[2,3,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,1,1],[2,3,3,2],[2,1,0,1]],[[1,2,0,0],[2,3,1,1],[2,4,3,2],[1,1,0,1]],[[1,2,0,0],[2,3,1,1],[3,3,3,2],[1,1,0,1]],[[1,2,0,0],[3,3,1,1],[2,3,3,2],[1,1,0,1]],[[1,1,3,1],[1,3,2,2],[0,2,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,2,2],[0,2,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,3],[0,2,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[0,2,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[0,2,3,2],[0,0,2,2]],[[1,1,3,1],[1,3,2,2],[0,2,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[0,2,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[0,2,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[0,2,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[0,2,3,2],[0,1,1,2]],[[1,1,3,1],[1,3,2,2],[0,2,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[0,2,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[0,2,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,2],[0,2,3,3],[0,1,2,0]],[[2,2,0,0],[2,3,1,1],[2,3,3,2],[1,1,0,1]],[[1,1,3,1],[1,3,2,2],[0,2,3,2],[1,1,0,1]],[[1,1,2,2],[1,3,2,2],[0,2,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,3],[0,2,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[0,2,3,3],[1,1,0,1]],[[1,2,0,0],[2,3,1,1],[2,3,3,2],[2,0,2,0]],[[1,2,0,0],[2,3,1,1],[2,4,3,2],[1,0,2,0]],[[1,2,0,0],[2,3,1,1],[3,3,3,2],[1,0,2,0]],[[1,2,0,0],[3,3,1,1],[2,3,3,2],[1,0,2,0]],[[2,2,0,0],[2,3,1,1],[2,3,3,2],[1,0,2,0]],[[1,2,0,0],[2,3,1,1],[2,3,3,2],[2,0,1,1]],[[1,2,0,0],[2,3,1,1],[2,4,3,2],[1,0,1,1]],[[1,2,0,0],[2,3,1,1],[3,3,3,2],[1,0,1,1]],[[1,2,0,0],[3,3,1,1],[2,3,3,2],[1,0,1,1]],[[2,2,0,0],[2,3,1,1],[2,3,3,2],[1,0,1,1]],[[1,2,0,0],[2,3,1,1],[2,3,3,2],[0,3,1,0]],[[1,2,0,0],[2,3,1,1],[2,4,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,1,1],[3,3,3,2],[0,2,1,0]],[[1,2,0,0],[3,3,1,1],[2,3,3,2],[0,2,1,0]],[[2,2,0,0],[2,3,1,1],[2,3,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,1,1],[2,3,3,2],[0,3,0,1]],[[1,2,0,0],[2,3,1,1],[2,4,3,2],[0,2,0,1]],[[1,2,0,0],[2,3,1,1],[3,3,3,2],[0,2,0,1]],[[1,1,3,1],[1,3,2,2],[0,3,0,1],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[0,3,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[0,3,0,1],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[0,3,0,2],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[0,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[0,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,2],[0,3,0,3],[1,1,2,1]],[[1,1,2,1],[1,3,2,2],[0,3,0,2],[1,1,3,1]],[[1,1,2,1],[1,3,2,2],[0,3,0,2],[1,1,2,2]],[[1,1,3,1],[1,3,2,2],[0,3,0,2],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[0,3,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[0,3,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[0,3,0,3],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[0,3,0,2],[1,2,1,2]],[[1,1,3,1],[1,3,2,2],[0,3,0,2],[1,2,2,0]],[[1,1,2,2],[1,3,2,2],[0,3,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,3],[0,3,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,2],[0,3,0,3],[1,2,2,0]],[[1,1,3,1],[1,3,2,2],[0,3,1,0],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[0,3,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[0,3,1,0],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[0,3,1,1],[1,2,2,0]],[[1,1,2,2],[1,3,2,2],[0,3,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,3],[0,3,1,1],[1,2,2,0]],[[1,1,3,1],[1,3,2,2],[0,3,1,2],[0,1,2,1]],[[1,1,2,2],[1,3,2,2],[0,3,1,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,3],[0,3,1,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[0,3,1,3],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[0,3,1,2],[0,1,3,1]],[[1,1,2,1],[1,3,2,2],[0,3,1,2],[0,1,2,2]],[[1,1,3,1],[1,3,2,2],[0,3,1,2],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[0,3,1,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[0,3,1,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[0,3,1,3],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[0,3,1,2],[1,1,1,2]],[[1,1,3,1],[1,3,2,2],[0,3,1,2],[1,1,2,0]],[[1,1,2,2],[1,3,2,2],[0,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,3],[0,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,2],[0,3,1,3],[1,1,2,0]],[[1,1,3,1],[1,3,2,2],[0,3,1,2],[1,2,0,1]],[[1,1,2,2],[1,3,2,2],[0,3,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,3],[0,3,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,2],[0,3,1,3],[1,2,0,1]],[[1,1,2,1],[1,3,2,2],[0,3,1,2],[1,2,0,2]],[[1,1,3,1],[1,3,2,2],[0,3,1,2],[1,2,1,0]],[[1,1,2,2],[1,3,2,2],[0,3,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,3],[0,3,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,2],[0,3,1,3],[1,2,1,0]],[[1,2,0,0],[3,3,1,1],[2,3,3,2],[0,2,0,1]],[[2,2,0,0],[2,3,1,1],[2,3,3,2],[0,2,0,1]],[[1,2,0,0],[2,3,1,1],[2,4,3,2],[0,1,2,0]],[[1,2,0,0],[2,3,1,1],[3,3,3,2],[0,1,2,0]],[[1,2,0,0],[3,3,1,1],[2,3,3,2],[0,1,2,0]],[[2,2,0,0],[2,3,1,1],[2,3,3,2],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[0,3,2,0],[1,1,2,1]],[[1,1,3,1],[1,3,2,2],[0,3,2,0],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[0,3,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[0,3,2,0],[1,2,1,1]],[[1,1,3,1],[1,3,2,2],[0,3,2,1],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[0,3,2,1],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[0,3,2,1],[1,1,1,1]],[[1,1,3,1],[1,3,2,2],[0,3,2,1],[1,1,2,0]],[[1,1,2,2],[1,3,2,2],[0,3,2,1],[1,1,2,0]],[[1,1,2,1],[1,3,2,3],[0,3,2,1],[1,1,2,0]],[[1,1,3,1],[1,3,2,2],[0,3,2,1],[1,2,0,1]],[[1,1,2,2],[1,3,2,2],[0,3,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,3],[0,3,2,1],[1,2,0,1]],[[1,1,3,1],[1,3,2,2],[0,3,2,1],[1,2,1,0]],[[1,1,2,2],[1,3,2,2],[0,3,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,2,3],[0,3,2,1],[1,2,1,0]],[[1,2,0,0],[2,3,1,1],[2,4,3,2],[0,1,1,1]],[[1,2,0,0],[2,3,1,1],[3,3,3,2],[0,1,1,1]],[[1,2,0,0],[3,3,1,1],[2,3,3,2],[0,1,1,1]],[[2,2,0,0],[2,3,1,1],[2,3,3,2],[0,1,1,1]],[[1,1,3,1],[1,3,2,2],[0,3,2,2],[0,0,2,1]],[[1,1,2,2],[1,3,2,2],[0,3,2,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,3],[0,3,2,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[0,3,2,3],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[0,3,2,2],[0,0,2,2]],[[1,1,3,1],[1,3,2,2],[0,3,2,2],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[0,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[0,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[0,3,2,3],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[0,3,2,2],[0,1,1,2]],[[1,1,3,1],[1,3,2,2],[0,3,2,2],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[0,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[0,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,2],[0,3,2,3],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[0,3,2,2],[0,2,0,1]],[[1,1,2,2],[1,3,2,2],[0,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,3],[0,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[0,3,2,3],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[0,3,2,2],[0,2,0,2]],[[1,1,3,1],[1,3,2,2],[0,3,2,2],[0,2,1,0]],[[1,1,2,2],[1,3,2,2],[0,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,3],[0,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,2],[0,3,2,3],[0,2,1,0]],[[1,2,0,0],[2,3,1,1],[2,3,3,1],[2,2,0,1]],[[1,2,0,0],[2,3,1,1],[2,4,3,1],[1,2,0,1]],[[1,2,0,0],[2,3,1,1],[3,3,3,1],[1,2,0,1]],[[1,2,0,0],[3,3,1,1],[2,3,3,1],[1,2,0,1]],[[2,2,0,0],[2,3,1,1],[2,3,3,1],[1,2,0,1]],[[1,2,0,0],[2,3,1,1],[2,3,3,1],[2,1,1,1]],[[1,2,0,0],[2,3,1,1],[2,4,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,1,1],[3,3,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,1,1],[2,3,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,1,1],[2,3,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,1,1],[2,3,3,1],[2,0,2,1]],[[1,2,0,0],[2,3,1,1],[2,4,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,1,1],[3,3,3,1],[1,0,2,1]],[[1,2,0,0],[3,3,1,1],[2,3,3,1],[1,0,2,1]],[[2,2,0,0],[2,3,1,1],[2,3,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,3,1],[0,3,1,1]],[[1,2,0,0],[2,3,1,1],[2,4,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,1,1],[3,3,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,1,1],[2,3,3,1],[0,2,1,1]],[[2,2,0,0],[2,3,1,1],[2,3,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,1,1],[2,4,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,1,1],[3,3,3,1],[0,1,2,1]],[[1,2,0,0],[3,3,1,1],[2,3,3,1],[0,1,2,1]],[[1,1,3,1],[1,3,2,2],[0,3,3,0],[0,1,2,1]],[[1,1,2,2],[1,3,2,2],[0,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,2,3],[0,3,3,0],[0,1,2,1]],[[1,1,3,1],[1,3,2,2],[0,3,3,0],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[0,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[0,3,3,0],[0,2,1,1]],[[2,2,0,0],[2,3,1,1],[2,3,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,3,0],[2,1,2,1]],[[1,2,0,0],[2,3,1,1],[2,4,3,0],[1,1,2,1]],[[1,1,3,1],[1,3,2,2],[0,3,3,1],[0,0,2,1]],[[1,1,2,2],[1,3,2,2],[0,3,3,1],[0,0,2,1]],[[1,1,2,1],[1,3,2,3],[0,3,3,1],[0,0,2,1]],[[1,1,3,1],[1,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[0,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[0,3,3,1],[0,1,1,1]],[[1,1,3,1],[1,3,2,2],[0,3,3,1],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[0,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[0,3,3,1],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,1,2,2],[1,3,2,2],[0,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,3],[0,3,3,1],[0,2,0,1]],[[1,1,3,1],[1,3,2,2],[0,3,3,1],[0,2,1,0]],[[1,1,2,2],[1,3,2,2],[0,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,2,3],[0,3,3,1],[0,2,1,0]],[[1,2,0,0],[2,3,1,1],[3,3,3,0],[1,1,2,1]],[[1,2,0,0],[3,3,1,1],[2,3,3,0],[1,1,2,1]],[[2,2,0,0],[2,3,1,1],[2,3,3,0],[1,1,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,3,0],[0,2,3,1]],[[1,2,0,0],[2,3,1,1],[2,3,3,0],[0,3,2,1]],[[1,2,0,0],[2,3,1,1],[2,4,3,0],[0,2,2,1]],[[1,2,0,0],[2,3,1,1],[3,3,3,0],[0,2,2,1]],[[1,2,0,0],[3,3,1,1],[2,3,3,0],[0,2,2,1]],[[2,2,0,0],[2,3,1,1],[2,3,3,0],[0,2,2,1]],[[1,1,3,1],[1,3,2,2],[0,3,3,1],[1,2,0,0]],[[1,1,2,2],[1,3,2,2],[0,3,3,1],[1,2,0,0]],[[1,1,2,1],[1,3,2,3],[0,3,3,1],[1,2,0,0]],[[1,2,0,0],[2,3,1,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,0],[2,3,1,1],[2,4,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,1,1],[3,3,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,1,1],[2,3,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,1,1],[2,3,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,1,1],[2,3,2,2],[0,2,3,0]],[[1,2,0,0],[2,3,1,1],[2,3,2,2],[0,3,2,0]],[[1,2,0,0],[2,3,1,1],[2,4,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,1,1],[3,3,2,2],[0,2,2,0]],[[1,2,0,0],[3,3,1,1],[2,3,2,2],[0,2,2,0]],[[2,2,0,0],[2,3,1,1],[2,3,2,2],[0,2,2,0]],[[1,1,3,1],[1,3,2,2],[0,3,3,2],[0,1,0,1]],[[1,1,2,2],[1,3,2,2],[0,3,3,2],[0,1,0,1]],[[1,1,2,1],[1,3,2,3],[0,3,3,2],[0,1,0,1]],[[1,1,2,1],[1,3,2,2],[0,3,3,3],[0,1,0,1]],[[1,2,0,0],[2,3,1,1],[2,3,2,1],[2,1,2,1]],[[1,2,0,0],[2,3,1,1],[2,4,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,1,1],[3,3,2,1],[1,1,2,1]],[[1,2,0,0],[3,3,1,1],[2,3,2,1],[1,1,2,1]],[[2,2,0,0],[2,3,1,1],[2,3,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,2,1],[0,2,2,2]],[[1,2,0,0],[2,3,1,1],[2,3,2,1],[0,2,3,1]],[[1,2,0,0],[2,3,1,1],[2,3,2,1],[0,3,2,1]],[[1,2,0,0],[2,3,1,1],[2,4,2,1],[0,2,2,1]],[[1,2,0,0],[2,3,1,1],[3,3,2,1],[0,2,2,1]],[[1,2,0,0],[3,3,1,1],[2,3,2,1],[0,2,2,1]],[[2,2,0,0],[2,3,1,1],[2,3,2,1],[0,2,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,2,0],[1,3,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,2,0],[2,2,2,1]],[[1,2,0,0],[2,3,1,1],[3,3,2,0],[1,2,2,1]],[[1,2,0,0],[3,3,1,1],[2,3,2,0],[1,2,2,1]],[[2,2,0,0],[2,3,1,1],[2,3,2,0],[1,2,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,1,2],[1,3,2,0]],[[1,2,0,0],[2,3,1,1],[2,3,1,2],[2,2,2,0]],[[1,2,0,0],[2,3,1,1],[3,3,1,2],[1,2,2,0]],[[1,2,0,0],[3,3,1,1],[2,3,1,2],[1,2,2,0]],[[2,2,0,0],[2,3,1,1],[2,3,1,2],[1,2,2,0]],[[1,2,0,0],[2,3,1,1],[2,3,1,2],[2,1,2,1]],[[1,2,0,0],[2,3,1,1],[2,4,1,2],[1,1,2,1]],[[1,2,0,0],[2,3,1,1],[3,3,1,2],[1,1,2,1]],[[1,2,0,0],[3,3,1,1],[2,3,1,2],[1,1,2,1]],[[2,2,0,0],[2,3,1,1],[2,3,1,2],[1,1,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,1,2],[0,2,2,2]],[[1,2,0,0],[2,3,1,1],[2,3,1,2],[0,2,3,1]],[[1,2,0,0],[2,3,1,1],[2,3,1,2],[0,3,2,1]],[[1,2,0,0],[2,3,1,1],[2,4,1,2],[0,2,2,1]],[[1,2,0,0],[2,3,1,1],[3,3,1,2],[0,2,2,1]],[[1,2,0,0],[3,3,1,1],[2,3,1,2],[0,2,2,1]],[[2,2,0,0],[2,3,1,1],[2,3,1,2],[0,2,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,1,1],[1,3,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,1,1],[2,2,2,1]],[[1,2,0,0],[2,3,1,1],[3,3,1,1],[1,2,2,1]],[[1,2,0,0],[3,3,1,1],[2,3,1,1],[1,2,2,1]],[[2,2,0,0],[2,3,1,1],[2,3,1,1],[1,2,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,0,2],[1,3,2,1]],[[1,2,0,0],[2,3,1,1],[2,3,0,2],[2,2,2,1]],[[1,2,0,0],[2,3,1,1],[3,3,0,2],[1,2,2,1]],[[1,2,0,0],[3,3,1,1],[2,3,0,2],[1,2,2,1]],[[2,2,0,0],[2,3,1,1],[2,3,0,2],[1,2,2,1]],[[1,2,0,0],[2,3,1,1],[2,2,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,1,1],[2,2,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,1,1],[3,2,3,2],[1,2,1,0]],[[1,2,0,0],[3,3,1,1],[2,2,3,2],[1,2,1,0]],[[2,2,0,0],[2,3,1,1],[2,2,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,1,1],[2,2,3,2],[1,3,0,1]],[[1,2,0,0],[2,3,1,1],[2,2,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,1,1],[3,2,3,2],[1,2,0,1]],[[1,2,0,0],[3,3,1,1],[2,2,3,2],[1,2,0,1]],[[2,2,0,0],[2,3,1,1],[2,2,3,2],[1,2,0,1]],[[1,2,0,0],[2,3,1,1],[2,2,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,1,1],[2,2,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,1,1],[3,2,3,1],[1,2,1,1]],[[1,2,0,0],[3,3,1,1],[2,2,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,1,1],[2,2,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,1,1],[2,2,3,0],[1,2,3,1]],[[1,2,0,0],[2,3,1,1],[2,2,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,1,1],[2,2,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,1,1],[3,2,3,0],[1,2,2,1]],[[1,2,0,0],[3,3,1,1],[2,2,3,0],[1,2,2,1]],[[2,2,0,0],[2,3,1,1],[2,2,3,0],[1,2,2,1]],[[1,2,0,0],[2,3,1,1],[2,2,2,2],[1,2,3,0]],[[1,2,0,0],[2,3,1,1],[2,2,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,1,1],[2,2,2,2],[2,2,2,0]],[[1,1,3,1],[1,3,2,2],[1,0,1,2],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[1,0,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[1,0,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,0,1,3],[1,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,0,1,2],[2,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,0,1,2],[1,3,2,1]],[[1,1,2,1],[1,3,2,2],[1,0,1,2],[1,2,3,1]],[[1,1,2,1],[1,3,2,2],[1,0,1,2],[1,2,2,2]],[[1,1,3,1],[1,3,2,2],[1,0,2,2],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[1,0,2,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[1,0,2,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,0,2,3],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,0,2,2],[0,2,3,1]],[[1,1,2,1],[1,3,2,2],[1,0,2,2],[0,2,2,2]],[[1,1,3,1],[1,3,2,2],[1,0,2,2],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[1,0,2,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[1,0,2,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[1,0,2,3],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[1,0,2,2],[1,2,1,2]],[[1,1,3,1],[1,3,2,2],[1,0,2,2],[1,2,2,0]],[[1,1,2,2],[1,3,2,2],[1,0,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,3],[1,0,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,2],[1,0,2,3],[1,2,2,0]],[[1,1,3,1],[1,3,2,2],[1,0,3,0],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[1,0,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[1,0,3,0],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[1,0,3,1],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[1,0,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[1,0,3,1],[1,2,1,1]],[[1,1,3,1],[1,3,2,2],[1,0,3,1],[1,2,2,0]],[[1,1,2,2],[1,3,2,2],[1,0,3,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,3],[1,0,3,1],[1,2,2,0]],[[1,1,3,1],[1,3,2,2],[1,0,3,2],[0,1,2,1]],[[1,1,2,2],[1,3,2,2],[1,0,3,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,3],[1,0,3,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[1,0,3,3],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[1,0,3,2],[0,1,2,2]],[[1,1,3,1],[1,3,2,2],[1,0,3,2],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[1,0,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[1,0,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,2],[1,0,3,3],[0,2,1,1]],[[1,1,2,1],[1,3,2,2],[1,0,3,2],[0,2,1,2]],[[1,1,3,1],[1,3,2,2],[1,0,3,2],[0,2,2,0]],[[1,1,2,2],[1,3,2,2],[1,0,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,3],[1,0,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,2],[1,0,3,3],[0,2,2,0]],[[1,2,0,0],[2,3,1,1],[3,2,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,1,1],[2,2,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,1,1],[2,2,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,1,1],[2,2,2,1],[1,2,2,2]],[[1,2,0,0],[2,3,1,1],[2,2,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,1,1],[2,2,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,1,1],[2,2,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,1,1],[3,2,2,1],[1,2,2,1]],[[1,2,0,0],[3,3,1,1],[2,2,2,1],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[1,1,0,2],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[1,1,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[1,1,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,1,0,3],[1,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,1,0,2],[2,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,1,0,2],[1,3,2,1]],[[1,1,2,1],[1,3,2,2],[1,1,0,2],[1,2,3,1]],[[1,1,2,1],[1,3,2,2],[1,1,0,2],[1,2,2,2]],[[1,1,3,1],[1,3,2,2],[1,1,1,2],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[1,1,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[1,1,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,1,1,3],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,1,1,2],[0,3,2,1]],[[1,1,2,1],[1,3,2,2],[1,1,1,2],[0,2,3,1]],[[1,1,2,1],[1,3,2,2],[1,1,1,2],[0,2,2,2]],[[1,1,3,1],[1,3,2,2],[1,1,2,2],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[1,1,2,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[1,1,2,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,2],[1,1,2,3],[0,2,1,1]],[[1,1,2,1],[1,3,2,2],[1,1,2,2],[0,2,1,2]],[[1,1,3,1],[1,3,2,2],[1,1,2,2],[0,2,2,0]],[[1,1,2,2],[1,3,2,2],[1,1,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,3],[1,1,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,2],[1,1,2,3],[0,2,2,0]],[[2,2,0,0],[2,3,1,1],[2,2,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,1,1],[2,2,1,2],[1,2,2,2]],[[1,2,0,0],[2,3,1,1],[2,2,1,2],[1,2,3,1]],[[1,2,0,0],[2,3,1,1],[2,2,1,2],[1,3,2,1]],[[1,2,0,0],[2,3,1,1],[2,2,1,2],[2,2,2,1]],[[1,2,0,0],[2,3,1,1],[3,2,1,2],[1,2,2,1]],[[1,2,0,0],[3,3,1,1],[2,2,1,2],[1,2,2,1]],[[2,2,0,0],[2,3,1,1],[2,2,1,2],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[1,1,3,0],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[1,1,3,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[1,1,3,0],[0,2,2,1]],[[1,1,3,1],[1,3,2,2],[1,1,3,1],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[1,1,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[1,1,3,1],[0,2,1,1]],[[1,1,3,1],[1,3,2,2],[1,1,3,1],[0,2,2,0]],[[1,1,2,2],[1,3,2,2],[1,1,3,1],[0,2,2,0]],[[1,1,2,1],[1,3,2,3],[1,1,3,1],[0,2,2,0]],[[1,2,0,0],[2,3,1,1],[1,3,3,2],[1,3,1,0]],[[1,1,3,1],[1,3,2,2],[1,1,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,2,2],[1,1,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,3],[1,1,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[1,1,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[1,1,3,2],[0,0,2,2]],[[1,1,3,1],[1,3,2,2],[1,1,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[1,1,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[1,1,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[1,1,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[1,1,3,2],[0,1,1,2]],[[1,1,3,1],[1,3,2,2],[1,1,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[1,1,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[1,1,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,2],[1,1,3,3],[0,1,2,0]],[[1,2,0,0],[2,3,1,1],[1,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,1,1],[1,4,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,1,1],[1,3,3,2],[1,3,0,1]],[[1,2,0,0],[2,3,1,1],[1,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,1,1],[1,4,3,2],[1,2,0,1]],[[1,1,3,1],[1,3,2,2],[1,1,3,2],[1,0,1,1]],[[1,1,2,2],[1,3,2,2],[1,1,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,3],[1,1,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[1,1,3,3],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[1,1,3,2],[1,0,1,2]],[[1,1,3,1],[1,3,2,2],[1,1,3,2],[1,0,2,0]],[[1,1,2,2],[1,3,2,2],[1,1,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,3],[1,1,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,2],[1,1,3,3],[1,0,2,0]],[[1,2,0,0],[2,3,1,1],[1,3,3,2],[0,2,3,0]],[[1,2,0,0],[2,3,1,1],[1,3,3,2],[0,3,2,0]],[[1,2,0,0],[2,3,1,1],[1,4,3,2],[0,2,2,0]],[[1,2,0,0],[2,3,1,1],[1,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,1,1],[1,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,1,1],[1,4,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,1,1],[1,3,3,1],[0,2,2,2]],[[1,2,0,0],[2,3,1,1],[1,3,3,1],[0,2,3,1]],[[1,2,0,0],[2,3,1,1],[1,3,3,1],[0,3,2,1]],[[1,2,0,0],[2,3,1,1],[1,4,3,1],[0,2,2,1]],[[1,2,0,0],[2,3,1,1],[1,3,3,0],[1,2,3,1]],[[1,2,0,0],[2,3,1,1],[1,3,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,1,1],[1,3,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,1,1],[1,4,3,0],[1,2,2,1]],[[1,2,0,0],[2,3,1,1],[1,3,2,2],[1,2,3,0]],[[1,2,0,0],[2,3,1,1],[1,3,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,1,1],[1,3,2,2],[2,2,2,0]],[[1,1,3,1],[1,3,2,2],[1,2,0,2],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[1,2,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[1,2,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,2,0,3],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[1,2,0,2],[0,3,2,1]],[[1,1,2,1],[1,3,2,2],[1,2,0,2],[0,2,3,1]],[[1,1,2,1],[1,3,2,2],[1,2,0,2],[0,2,2,2]],[[1,1,3,1],[1,3,2,2],[1,2,1,2],[0,1,2,1]],[[1,1,2,2],[1,3,2,2],[1,2,1,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,3],[1,2,1,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[1,2,1,3],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[1,2,1,2],[0,1,3,1]],[[1,1,2,1],[1,3,2,2],[1,2,1,2],[0,1,2,2]],[[1,1,3,1],[1,3,2,2],[1,2,1,2],[1,0,2,1]],[[1,1,2,2],[1,3,2,2],[1,2,1,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,3],[1,2,1,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[1,2,1,3],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[1,2,1,2],[1,0,3,1]],[[1,1,2,1],[1,3,2,2],[1,2,1,2],[1,0,2,2]],[[1,2,0,0],[2,3,1,1],[1,4,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,1,1],[1,3,2,1],[1,2,2,2]],[[1,2,0,0],[2,3,1,1],[1,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,1,1],[1,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,1,1],[1,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,1,1],[1,4,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,1,1],[1,3,1,2],[1,2,2,2]],[[1,2,0,0],[2,3,1,1],[1,3,1,2],[1,2,3,1]],[[1,1,3,1],[1,3,2,2],[1,2,2,2],[0,0,2,1]],[[1,1,2,2],[1,3,2,2],[1,2,2,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,3],[1,2,2,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[1,2,2,3],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[1,2,2,2],[0,0,2,2]],[[1,1,3,1],[1,3,2,2],[1,2,2,2],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[1,2,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[1,2,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[1,2,2,3],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[1,2,2,2],[0,1,1,2]],[[1,1,3,1],[1,3,2,2],[1,2,2,2],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[1,2,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[1,2,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,2],[1,2,2,3],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[1,2,2,2],[0,2,0,1]],[[1,1,2,2],[1,3,2,2],[1,2,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,3],[1,2,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[1,2,2,3],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[1,2,2,2],[0,2,0,2]],[[1,1,3,1],[1,3,2,2],[1,2,2,2],[0,2,1,0]],[[1,1,2,2],[1,3,2,2],[1,2,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,3],[1,2,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,2],[1,2,2,3],[0,2,1,0]],[[1,2,0,0],[2,3,1,1],[1,3,1,2],[1,3,2,1]],[[1,2,0,0],[2,3,1,1],[1,3,1,2],[2,2,2,1]],[[1,2,0,0],[2,3,1,1],[1,4,1,2],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[1,2,2,2],[1,0,1,1]],[[1,1,2,2],[1,3,2,2],[1,2,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,3],[1,2,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[1,2,2,3],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[1,2,2,2],[1,0,1,2]],[[1,1,3,1],[1,3,2,2],[1,2,2,2],[1,0,2,0]],[[1,1,2,2],[1,3,2,2],[1,2,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,3],[1,2,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,2],[1,2,2,3],[1,0,2,0]],[[1,1,3,1],[1,3,2,2],[1,2,2,2],[1,1,0,1]],[[1,1,2,2],[1,3,2,2],[1,2,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,3],[1,2,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[1,2,2,3],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[1,2,2,2],[1,1,0,2]],[[1,1,3,1],[1,3,2,2],[1,2,2,2],[1,1,1,0]],[[1,1,2,2],[1,3,2,2],[1,2,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,3],[1,2,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,2],[1,2,2,3],[1,1,1,0]],[[1,2,0,0],[2,3,1,1],[0,3,3,2],[1,2,3,0]],[[1,2,0,0],[2,3,1,1],[0,3,3,2],[1,3,2,0]],[[1,2,0,0],[2,3,1,1],[0,3,3,2],[2,2,2,0]],[[1,2,0,0],[2,3,1,1],[0,4,3,2],[1,2,2,0]],[[1,2,0,0],[2,3,1,1],[0,3,3,1],[1,2,2,2]],[[1,2,0,0],[2,3,1,1],[0,3,3,1],[1,2,3,1]],[[1,2,0,0],[2,3,1,1],[0,3,3,1],[1,3,2,1]],[[1,2,0,0],[2,3,1,1],[0,3,3,1],[2,2,2,1]],[[1,2,0,0],[2,3,1,1],[0,4,3,1],[1,2,2,1]],[[1,2,0,0],[2,3,1,0],[2,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,1,0],[2,4,3,2],[1,2,0,1]],[[1,2,0,0],[2,3,1,0],[3,3,3,2],[1,2,0,1]],[[1,2,0,0],[3,3,1,0],[2,3,3,2],[1,2,0,1]],[[2,2,0,0],[2,3,1,0],[2,3,3,2],[1,2,0,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,0],[0,1,2,1]],[[1,1,2,2],[1,3,2,2],[1,2,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,2,3],[1,2,3,0],[0,1,2,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,0],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[1,2,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[1,2,3,0],[0,2,1,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,0],[1,0,2,1]],[[1,1,2,2],[1,3,2,2],[1,2,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,2,3],[1,2,3,0],[1,0,2,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,0],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[1,2,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[1,2,3,0],[1,1,1,1]],[[1,2,0,0],[2,3,1,0],[2,3,3,2],[2,1,1,1]],[[1,2,0,0],[2,3,1,0],[2,4,3,2],[1,1,1,1]],[[1,2,0,0],[2,3,1,0],[3,3,3,2],[1,1,1,1]],[[1,2,0,0],[3,3,1,0],[2,3,3,2],[1,1,1,1]],[[2,2,0,0],[2,3,1,0],[2,3,3,2],[1,1,1,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,1],[0,0,2,1]],[[1,1,2,2],[1,3,2,2],[1,2,3,1],[0,0,2,1]],[[1,1,2,1],[1,3,2,3],[1,2,3,1],[0,0,2,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,1],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[1,2,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[1,2,3,1],[0,1,1,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,1],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[1,2,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[1,2,3,1],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[1,2,3,1],[0,2,0,1]],[[1,1,2,2],[1,3,2,2],[1,2,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,3],[1,2,3,1],[0,2,0,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,1],[0,2,1,0]],[[1,1,2,2],[1,3,2,2],[1,2,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,2,3],[1,2,3,1],[0,2,1,0]],[[1,2,0,0],[2,3,1,0],[2,3,3,2],[2,0,2,1]],[[1,2,0,0],[2,3,1,0],[2,4,3,2],[1,0,2,1]],[[1,2,0,0],[2,3,1,0],[3,3,3,2],[1,0,2,1]],[[1,2,0,0],[3,3,1,0],[2,3,3,2],[1,0,2,1]],[[2,2,0,0],[2,3,1,0],[2,3,3,2],[1,0,2,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,1],[1,0,1,1]],[[1,1,2,2],[1,3,2,2],[1,2,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,2,3],[1,2,3,1],[1,0,1,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,1],[1,0,2,0]],[[1,1,2,2],[1,3,2,2],[1,2,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,2,3],[1,2,3,1],[1,0,2,0]],[[1,1,3,1],[1,3,2,2],[1,2,3,1],[1,1,0,1]],[[1,1,2,2],[1,3,2,2],[1,2,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,2,3],[1,2,3,1],[1,1,0,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,1],[1,1,1,0]],[[1,1,2,2],[1,3,2,2],[1,2,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,2,3],[1,2,3,1],[1,1,1,0]],[[1,2,0,0],[2,3,1,0],[2,3,3,2],[0,3,1,1]],[[1,2,0,0],[2,3,1,0],[2,4,3,2],[0,2,1,1]],[[1,2,0,0],[2,3,1,0],[3,3,3,2],[0,2,1,1]],[[1,2,0,0],[3,3,1,0],[2,3,3,2],[0,2,1,1]],[[2,2,0,0],[2,3,1,0],[2,3,3,2],[0,2,1,1]],[[1,2,0,0],[2,3,1,0],[2,4,3,2],[0,1,2,1]],[[1,2,0,0],[2,3,1,0],[3,3,3,2],[0,1,2,1]],[[1,2,0,0],[3,3,1,0],[2,3,3,2],[0,1,2,1]],[[2,2,0,0],[2,3,1,0],[2,3,3,2],[0,1,2,1]],[[1,2,0,0],[2,3,1,0],[2,3,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,1,0],[2,3,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,1,0],[3,3,3,0],[1,2,2,1]],[[1,2,0,0],[3,3,1,0],[2,3,3,0],[1,2,2,1]],[[2,2,0,0],[2,3,1,0],[2,3,3,0],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,2],[0,1,0,1]],[[1,1,2,2],[1,3,2,2],[1,2,3,2],[0,1,0,1]],[[1,1,2,1],[1,3,2,3],[1,2,3,2],[0,1,0,1]],[[1,1,2,1],[1,3,2,2],[1,2,3,3],[0,1,0,1]],[[1,2,0,0],[2,3,1,0],[2,3,2,2],[2,1,2,1]],[[1,2,0,0],[2,3,1,0],[2,4,2,2],[1,1,2,1]],[[1,2,0,0],[2,3,1,0],[3,3,2,2],[1,1,2,1]],[[1,2,0,0],[3,3,1,0],[2,3,2,2],[1,1,2,1]],[[2,2,0,0],[2,3,1,0],[2,3,2,2],[1,1,2,1]],[[1,2,0,0],[2,3,1,0],[2,3,2,2],[0,2,2,2]],[[1,2,0,0],[2,3,1,0],[2,3,2,2],[0,2,3,1]],[[1,2,0,0],[2,3,1,0],[2,3,2,2],[0,3,2,1]],[[1,2,0,0],[2,3,1,0],[2,4,2,2],[0,2,2,1]],[[1,2,0,0],[2,3,1,0],[3,3,2,2],[0,2,2,1]],[[1,2,0,0],[3,3,1,0],[2,3,2,2],[0,2,2,1]],[[2,2,0,0],[2,3,1,0],[2,3,2,2],[0,2,2,1]],[[1,2,0,0],[2,3,1,0],[2,3,1,2],[1,3,2,1]],[[1,2,0,0],[2,3,1,0],[2,3,1,2],[2,2,2,1]],[[1,2,0,0],[2,3,1,0],[3,3,1,2],[1,2,2,1]],[[1,2,0,0],[3,3,1,0],[2,3,1,2],[1,2,2,1]],[[2,2,0,0],[2,3,1,0],[2,3,1,2],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[1,2,3,2],[1,0,0,1]],[[1,1,2,2],[1,3,2,2],[1,2,3,2],[1,0,0,1]],[[1,1,2,1],[1,3,2,3],[1,2,3,2],[1,0,0,1]],[[1,1,2,1],[1,3,2,2],[1,2,3,3],[1,0,0,1]],[[1,2,0,0],[2,3,1,0],[2,2,3,2],[1,3,1,1]],[[1,2,0,0],[2,3,1,0],[2,2,3,2],[2,2,1,1]],[[1,2,0,0],[2,3,1,0],[3,2,3,2],[1,2,1,1]],[[1,2,0,0],[3,3,1,0],[2,2,3,2],[1,2,1,1]],[[2,2,0,0],[2,3,1,0],[2,2,3,2],[1,2,1,1]],[[1,2,0,0],[2,3,1,0],[2,2,2,2],[1,2,2,2]],[[1,2,0,0],[2,3,1,0],[2,2,2,2],[1,2,3,1]],[[1,2,0,0],[2,3,1,0],[2,2,2,2],[1,3,2,1]],[[1,2,0,0],[2,3,1,0],[2,2,2,2],[2,2,2,1]],[[1,2,0,0],[2,3,1,0],[3,2,2,2],[1,2,2,1]],[[1,2,0,0],[3,3,1,0],[2,2,2,2],[1,2,2,1]],[[2,2,0,0],[2,3,1,0],[2,2,2,2],[1,2,2,1]],[[1,2,0,0],[2,3,1,0],[1,3,3,2],[1,3,1,1]],[[1,2,0,0],[2,3,1,0],[1,3,3,2],[2,2,1,1]],[[1,2,0,0],[2,3,1,0],[1,4,3,2],[1,2,1,1]],[[1,2,0,0],[2,3,1,0],[1,3,3,2],[0,2,2,2]],[[1,2,0,0],[2,3,1,0],[1,3,3,2],[0,2,3,1]],[[1,2,0,0],[2,3,1,0],[1,3,3,2],[0,3,2,1]],[[1,2,0,0],[2,3,1,0],[1,4,3,2],[0,2,2,1]],[[1,2,0,0],[2,3,1,0],[1,3,2,2],[1,2,2,2]],[[1,2,0,0],[2,3,1,0],[1,3,2,2],[1,2,3,1]],[[1,2,0,0],[2,3,1,0],[1,3,2,2],[1,3,2,1]],[[1,2,0,0],[2,3,1,0],[1,3,2,2],[2,2,2,1]],[[1,2,0,0],[2,3,1,0],[1,4,2,2],[1,2,2,1]],[[1,2,0,0],[2,3,1,0],[0,3,3,2],[1,2,2,2]],[[1,2,0,0],[2,3,1,0],[0,3,3,2],[1,2,3,1]],[[1,2,0,0],[2,3,1,0],[0,3,3,2],[1,3,2,1]],[[1,2,0,0],[2,3,1,0],[0,3,3,2],[2,2,2,1]],[[1,2,0,0],[2,3,1,0],[0,4,3,2],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[2,3,3,2],[2,2,0,0]],[[1,2,0,0],[2,3,0,2],[2,4,3,2],[1,2,0,0]],[[1,2,0,0],[2,3,0,2],[3,3,3,2],[1,2,0,0]],[[1,2,0,0],[3,3,0,2],[2,3,3,2],[1,2,0,0]],[[2,2,0,0],[2,3,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,3,1],[1,3,2,2],[1,3,0,1],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[1,3,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[1,3,0,1],[0,2,2,1]],[[1,1,3,1],[1,3,2,2],[1,3,0,1],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[1,3,0,1],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[1,3,0,1],[1,1,2,1]],[[1,1,3,1],[1,3,2,2],[1,3,0,2],[0,1,2,1]],[[1,1,2,2],[1,3,2,2],[1,3,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,3],[1,3,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[1,3,0,3],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[1,3,0,2],[0,1,3,1]],[[1,1,2,1],[1,3,2,2],[1,3,0,2],[0,1,2,2]],[[1,1,3,1],[1,3,2,2],[1,3,0,2],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[1,3,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[1,3,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,2],[1,3,0,3],[0,2,1,1]],[[1,1,2,1],[1,3,2,2],[1,3,0,2],[0,2,1,2]],[[1,1,3,1],[1,3,2,2],[1,3,0,2],[0,2,2,0]],[[1,1,2,2],[1,3,2,2],[1,3,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,3],[1,3,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,2],[1,3,0,3],[0,2,2,0]],[[1,1,3,1],[1,3,2,2],[1,3,0,2],[1,0,2,1]],[[1,1,2,2],[1,3,2,2],[1,3,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,3],[1,3,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[1,3,0,3],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[1,3,0,2],[1,0,3,1]],[[1,1,2,1],[1,3,2,2],[1,3,0,2],[1,0,2,2]],[[1,1,3,1],[1,3,2,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[1,3,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[1,3,0,3],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[1,3,0,2],[1,1,1,2]],[[1,1,3,1],[1,3,2,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,2],[1,3,2,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,3],[1,3,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,2],[1,3,0,3],[1,1,2,0]],[[1,2,0,0],[2,3,0,2],[2,3,3,2],[2,1,1,0]],[[1,2,0,0],[2,3,0,2],[2,4,3,2],[1,1,1,0]],[[1,2,0,0],[2,3,0,2],[3,3,3,2],[1,1,1,0]],[[1,2,0,0],[3,3,0,2],[2,3,3,2],[1,1,1,0]],[[2,2,0,0],[2,3,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,3,1],[1,3,2,2],[1,3,1,0],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[1,3,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[1,3,1,0],[0,2,2,1]],[[1,1,3,1],[1,3,2,2],[1,3,1,0],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[1,3,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[1,3,1,0],[1,1,2,1]],[[1,1,2,1],[1,4,2,2],[1,3,1,0],[1,2,2,0]],[[1,1,2,1],[1,3,2,2],[1,4,1,0],[1,2,2,0]],[[1,1,2,1],[1,3,2,2],[1,3,1,0],[2,2,2,0]],[[1,1,2,1],[1,3,2,2],[1,3,1,0],[1,3,2,0]],[[1,1,3,1],[1,3,2,2],[1,3,1,1],[0,2,2,0]],[[1,1,2,2],[1,3,2,2],[1,3,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,2,3],[1,3,1,1],[0,2,2,0]],[[1,1,3,1],[1,3,2,2],[1,3,1,1],[1,1,2,0]],[[1,1,2,2],[1,3,2,2],[1,3,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,2,3],[1,3,1,1],[1,1,2,0]],[[1,2,0,0],[2,3,0,2],[2,3,3,2],[2,1,0,1]],[[1,2,0,0],[2,3,0,2],[2,4,3,2],[1,1,0,1]],[[1,2,0,0],[2,3,0,2],[3,3,3,2],[1,1,0,1]],[[1,2,0,0],[3,3,0,2],[2,3,3,2],[1,1,0,1]],[[2,2,0,0],[2,3,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,3,1],[1,3,2,2],[1,3,1,2],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[1,3,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[1,3,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[1,3,1,3],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[1,3,1,2],[0,1,1,2]],[[1,1,3,1],[1,3,2,2],[1,3,1,2],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[1,3,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[1,3,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,2],[1,3,1,3],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[1,3,1,2],[0,2,0,1]],[[1,1,2,2],[1,3,2,2],[1,3,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,3],[1,3,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[1,3,1,3],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[1,3,1,2],[0,2,0,2]],[[1,1,3,1],[1,3,2,2],[1,3,1,2],[0,2,1,0]],[[1,1,2,2],[1,3,2,2],[1,3,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,3],[1,3,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,2],[1,3,1,3],[0,2,1,0]],[[1,2,0,0],[2,3,0,2],[2,3,3,2],[2,0,2,0]],[[1,2,0,0],[2,3,0,2],[2,4,3,2],[1,0,2,0]],[[1,2,0,0],[2,3,0,2],[3,3,3,2],[1,0,2,0]],[[1,2,0,0],[3,3,0,2],[2,3,3,2],[1,0,2,0]],[[2,2,0,0],[2,3,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,3,1],[1,3,2,2],[1,3,1,2],[1,0,1,1]],[[1,1,2,2],[1,3,2,2],[1,3,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,3],[1,3,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[1,3,1,3],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[1,3,1,2],[1,0,1,2]],[[1,1,3,1],[1,3,2,2],[1,3,1,2],[1,0,2,0]],[[1,1,2,2],[1,3,2,2],[1,3,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,3],[1,3,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,2],[1,3,1,3],[1,0,2,0]],[[1,1,3,1],[1,3,2,2],[1,3,1,2],[1,1,0,1]],[[1,1,2,2],[1,3,2,2],[1,3,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,3],[1,3,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[1,3,1,3],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[1,3,1,2],[1,1,0,2]],[[1,1,3,1],[1,3,2,2],[1,3,1,2],[1,1,1,0]],[[1,1,2,2],[1,3,2,2],[1,3,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,3],[1,3,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,2],[1,3,1,3],[1,1,1,0]],[[1,2,0,0],[2,3,0,2],[2,3,3,2],[2,0,1,1]],[[1,2,0,0],[2,3,0,2],[2,4,3,2],[1,0,1,1]],[[1,2,0,0],[2,3,0,2],[3,3,3,2],[1,0,1,1]],[[1,2,0,0],[3,3,0,2],[2,3,3,2],[1,0,1,1]],[[2,2,0,0],[2,3,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,3,1],[1,3,2,2],[1,3,1,2],[1,2,0,0]],[[1,1,2,2],[1,3,2,2],[1,3,1,2],[1,2,0,0]],[[1,1,2,1],[1,3,2,3],[1,3,1,2],[1,2,0,0]],[[1,2,0,0],[2,3,0,2],[2,3,3,2],[0,3,1,0]],[[1,2,0,0],[2,3,0,2],[2,4,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,0,2],[3,3,3,2],[0,2,1,0]],[[1,2,0,0],[3,3,0,2],[2,3,3,2],[0,2,1,0]],[[2,2,0,0],[2,3,0,2],[2,3,3,2],[0,2,1,0]],[[1,2,0,0],[2,3,0,2],[2,3,3,2],[0,3,0,1]],[[1,2,0,0],[2,3,0,2],[2,4,3,2],[0,2,0,1]],[[1,2,0,0],[2,3,0,2],[3,3,3,2],[0,2,0,1]],[[1,2,0,0],[3,3,0,2],[2,3,3,2],[0,2,0,1]],[[2,2,0,0],[2,3,0,2],[2,3,3,2],[0,2,0,1]],[[1,2,0,0],[2,3,0,2],[2,4,3,2],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[1,3,2,0],[0,1,2,1]],[[1,1,2,2],[1,3,2,2],[1,3,2,0],[0,1,2,1]],[[1,1,2,1],[1,3,2,3],[1,3,2,0],[0,1,2,1]],[[1,1,3,1],[1,3,2,2],[1,3,2,0],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[1,3,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[1,3,2,0],[0,2,1,1]],[[1,1,3,1],[1,3,2,2],[1,3,2,0],[1,0,2,1]],[[1,1,2,2],[1,3,2,2],[1,3,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,2,3],[1,3,2,0],[1,0,2,1]],[[1,1,3,1],[1,3,2,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,4,2,2],[1,3,2,0],[1,2,1,0]],[[1,1,2,1],[1,3,2,2],[1,4,2,0],[1,2,1,0]],[[1,1,2,1],[1,3,2,2],[1,3,2,0],[2,2,1,0]],[[1,1,2,1],[1,3,2,2],[1,3,2,0],[1,3,1,0]],[[1,2,0,0],[2,3,0,2],[3,3,3,2],[0,1,2,0]],[[1,2,0,0],[3,3,0,2],[2,3,3,2],[0,1,2,0]],[[2,2,0,0],[2,3,0,2],[2,3,3,2],[0,1,2,0]],[[1,2,0,0],[2,3,0,2],[2,4,3,2],[0,1,1,1]],[[1,2,0,0],[2,3,0,2],[3,3,3,2],[0,1,1,1]],[[1,2,0,0],[3,3,0,2],[2,3,3,2],[0,1,1,1]],[[2,2,0,0],[2,3,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,3,1],[1,3,2,2],[1,3,2,1],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[1,3,2,1],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[1,3,2,1],[0,1,1,1]],[[1,1,3,1],[1,3,2,2],[1,3,2,1],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[1,3,2,1],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[1,3,2,1],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[1,3,2,1],[0,2,0,1]],[[1,1,2,2],[1,3,2,2],[1,3,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,3],[1,3,2,1],[0,2,0,1]],[[1,1,3,1],[1,3,2,2],[1,3,2,1],[0,2,1,0]],[[1,1,2,2],[1,3,2,2],[1,3,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,2,3],[1,3,2,1],[0,2,1,0]],[[1,2,0,0],[2,3,0,2],[2,3,3,1],[2,2,0,1]],[[1,2,0,0],[2,3,0,2],[2,4,3,1],[1,2,0,1]],[[1,2,0,0],[2,3,0,2],[3,3,3,1],[1,2,0,1]],[[1,2,0,0],[3,3,0,2],[2,3,3,1],[1,2,0,1]],[[1,1,3,1],[1,3,2,2],[1,3,2,1],[1,0,1,1]],[[1,1,2,2],[1,3,2,2],[1,3,2,1],[1,0,1,1]],[[1,1,2,1],[1,3,2,3],[1,3,2,1],[1,0,1,1]],[[1,1,3,1],[1,3,2,2],[1,3,2,1],[1,0,2,0]],[[1,1,2,2],[1,3,2,2],[1,3,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,2,3],[1,3,2,1],[1,0,2,0]],[[1,1,3,1],[1,3,2,2],[1,3,2,1],[1,1,0,1]],[[1,1,2,2],[1,3,2,2],[1,3,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,2,3],[1,3,2,1],[1,1,0,1]],[[1,1,3,1],[1,3,2,2],[1,3,2,1],[1,1,1,0]],[[1,1,2,2],[1,3,2,2],[1,3,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,2,3],[1,3,2,1],[1,1,1,0]],[[2,2,0,0],[2,3,0,2],[2,3,3,1],[1,2,0,1]],[[1,1,3,1],[1,3,2,2],[1,3,2,1],[1,2,0,0]],[[1,1,2,2],[1,3,2,2],[1,3,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,2,3],[1,3,2,1],[1,2,0,0]],[[1,2,0,0],[2,3,0,2],[2,3,3,1],[2,1,1,1]],[[1,2,0,0],[2,3,0,2],[2,4,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,0,2],[3,3,3,1],[1,1,1,1]],[[1,2,0,0],[3,3,0,2],[2,3,3,1],[1,1,1,1]],[[2,2,0,0],[2,3,0,2],[2,3,3,1],[1,1,1,1]],[[1,2,0,0],[2,3,0,2],[2,3,3,1],[2,0,2,1]],[[1,2,0,0],[2,3,0,2],[2,4,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,0,2],[3,3,3,1],[1,0,2,1]],[[1,2,0,0],[3,3,0,2],[2,3,3,1],[1,0,2,1]],[[2,2,0,0],[2,3,0,2],[2,3,3,1],[1,0,2,1]],[[1,2,0,0],[2,3,0,2],[2,3,3,1],[0,3,1,1]],[[1,2,0,0],[2,3,0,2],[2,4,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,0,2],[3,3,3,1],[0,2,1,1]],[[1,2,0,0],[3,3,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,3,1],[1,3,2,2],[1,3,2,2],[0,0,1,1]],[[1,1,2,2],[1,3,2,2],[1,3,2,2],[0,0,1,1]],[[1,1,2,1],[1,3,2,3],[1,3,2,2],[0,0,1,1]],[[1,1,2,1],[1,3,2,2],[1,3,2,3],[0,0,1,1]],[[1,1,2,1],[1,3,2,2],[1,3,2,2],[0,0,1,2]],[[1,1,3,1],[1,3,2,2],[1,3,2,2],[0,0,2,0]],[[1,1,2,2],[1,3,2,2],[1,3,2,2],[0,0,2,0]],[[1,1,2,1],[1,3,2,3],[1,3,2,2],[0,0,2,0]],[[1,1,2,1],[1,3,2,2],[1,3,2,3],[0,0,2,0]],[[2,2,0,0],[2,3,0,2],[2,3,3,1],[0,2,1,1]],[[1,2,0,0],[2,3,0,2],[2,4,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,0,2],[3,3,3,1],[0,1,2,1]],[[1,2,0,0],[3,3,0,2],[2,3,3,1],[0,1,2,1]],[[2,2,0,0],[2,3,0,2],[2,3,3,1],[0,1,2,1]],[[1,2,0,0],[2,3,0,2],[2,3,2,2],[2,1,2,0]],[[1,2,0,0],[2,3,0,2],[2,4,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,0,2],[3,3,2,2],[1,1,2,0]],[[1,2,0,0],[3,3,0,2],[2,3,2,2],[1,1,2,0]],[[2,2,0,0],[2,3,0,2],[2,3,2,2],[1,1,2,0]],[[1,2,0,0],[2,3,0,2],[2,3,2,2],[0,2,3,0]],[[1,2,0,0],[2,3,0,2],[2,3,2,2],[0,3,2,0]],[[1,2,0,0],[2,3,0,2],[2,4,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,0,2],[3,3,2,2],[0,2,2,0]],[[1,2,0,0],[3,3,0,2],[2,3,2,2],[0,2,2,0]],[[2,2,0,0],[2,3,0,2],[2,3,2,2],[0,2,2,0]],[[1,2,0,0],[2,3,0,2],[2,3,2,1],[2,1,2,1]],[[1,2,0,0],[2,3,0,2],[2,4,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,0,2],[3,3,2,1],[1,1,2,1]],[[1,2,0,0],[3,3,0,2],[2,3,2,1],[1,1,2,1]],[[2,2,0,0],[2,3,0,2],[2,3,2,1],[1,1,2,1]],[[1,2,0,0],[2,3,0,2],[2,3,2,1],[0,2,2,2]],[[1,2,0,0],[2,3,0,2],[2,3,2,1],[0,2,3,1]],[[1,2,0,0],[2,3,0,2],[2,3,2,1],[0,3,2,1]],[[1,2,0,0],[2,3,0,2],[2,4,2,1],[0,2,2,1]],[[1,2,0,0],[2,3,0,2],[3,3,2,1],[0,2,2,1]],[[1,2,0,0],[3,3,0,2],[2,3,2,1],[0,2,2,1]],[[2,2,0,0],[2,3,0,2],[2,3,2,1],[0,2,2,1]],[[1,2,0,0],[2,3,0,2],[2,3,1,2],[1,3,2,0]],[[1,2,0,0],[2,3,0,2],[2,3,1,2],[2,2,2,0]],[[1,2,0,0],[2,3,0,2],[3,3,1,2],[1,2,2,0]],[[1,2,0,0],[3,3,0,2],[2,3,1,2],[1,2,2,0]],[[2,2,0,0],[2,3,0,2],[2,3,1,2],[1,2,2,0]],[[1,2,0,0],[2,3,0,2],[2,3,1,2],[2,1,2,1]],[[1,2,0,0],[2,3,0,2],[2,4,1,2],[1,1,2,1]],[[1,2,0,0],[2,3,0,2],[3,3,1,2],[1,1,2,1]],[[1,2,0,0],[3,3,0,2],[2,3,1,2],[1,1,2,1]],[[2,2,0,0],[2,3,0,2],[2,3,1,2],[1,1,2,1]],[[1,2,0,0],[2,3,0,2],[2,3,1,2],[0,2,2,2]],[[1,2,0,0],[2,3,0,2],[2,3,1,2],[0,2,3,1]],[[1,2,0,0],[2,3,0,2],[2,3,1,2],[0,3,2,1]],[[1,2,0,0],[2,3,0,2],[2,3,1,3],[0,2,2,1]],[[1,2,0,0],[2,3,0,2],[2,4,1,2],[0,2,2,1]],[[1,2,0,0],[2,3,0,2],[3,3,1,2],[0,2,2,1]],[[1,2,0,0],[3,3,0,2],[2,3,1,2],[0,2,2,1]],[[2,2,0,0],[2,3,0,2],[2,3,1,2],[0,2,2,1]],[[1,2,0,0],[2,3,0,2],[2,3,1,1],[1,3,2,1]],[[1,2,0,0],[2,3,0,2],[2,3,1,1],[2,2,2,1]],[[1,2,0,0],[2,3,0,2],[3,3,1,1],[1,2,2,1]],[[1,2,0,0],[3,3,0,2],[2,3,1,1],[1,2,2,1]],[[2,2,0,0],[2,3,0,2],[2,3,1,1],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[2,3,0,2],[1,3,2,1]],[[1,1,3,1],[1,3,2,2],[1,3,3,0],[0,0,2,1]],[[1,1,2,2],[1,3,2,2],[1,3,3,0],[0,0,2,1]],[[1,1,2,1],[1,3,2,3],[1,3,3,0],[0,0,2,1]],[[1,2,0,0],[2,3,0,2],[2,3,0,2],[2,2,2,1]],[[1,2,0,0],[2,3,0,2],[3,3,0,2],[1,2,2,1]],[[1,2,0,0],[3,3,0,2],[2,3,0,2],[1,2,2,1]],[[2,2,0,0],[2,3,0,2],[2,3,0,2],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[2,2,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,0,2],[2,2,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,0,2],[3,2,3,2],[1,2,1,0]],[[1,2,0,0],[3,3,0,2],[2,2,3,2],[1,2,1,0]],[[2,2,0,0],[2,3,0,2],[2,2,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,0,2],[2,2,3,2],[1,3,0,1]],[[1,2,0,0],[2,3,0,2],[2,2,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,0,2],[3,2,3,2],[1,2,0,1]],[[1,2,0,0],[3,3,0,2],[2,2,3,2],[1,2,0,1]],[[2,2,0,0],[2,3,0,2],[2,2,3,2],[1,2,0,1]],[[1,2,0,0],[2,3,0,2],[2,2,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,0,2],[2,2,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,0,2],[3,2,3,1],[1,2,1,1]],[[1,1,3,1],[1,3,2,2],[1,3,3,1],[0,0,1,1]],[[1,1,2,2],[1,3,2,2],[1,3,3,1],[0,0,1,1]],[[1,1,2,1],[1,3,2,3],[1,3,3,1],[0,0,1,1]],[[1,1,3,1],[1,3,2,2],[1,3,3,1],[0,0,2,0]],[[1,1,2,2],[1,3,2,2],[1,3,3,1],[0,0,2,0]],[[1,1,2,1],[1,3,2,3],[1,3,3,1],[0,0,2,0]],[[1,2,0,0],[3,3,0,2],[2,2,3,1],[1,2,1,1]],[[2,2,0,0],[2,3,0,2],[2,2,3,1],[1,2,1,1]],[[1,1,3,1],[1,3,2,2],[1,3,3,1],[0,2,0,0]],[[1,1,2,2],[1,3,2,2],[1,3,3,1],[0,2,0,0]],[[1,1,2,1],[1,3,2,3],[1,3,3,1],[0,2,0,0]],[[1,2,0,0],[2,3,0,2],[2,2,2,2],[1,2,3,0]],[[1,2,0,0],[2,3,0,2],[2,2,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,0,2],[2,2,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,0,2],[3,2,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,0,2],[2,2,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,0,2],[2,2,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,0,2],[2,2,2,1],[1,2,2,2]],[[1,2,0,0],[2,3,0,2],[2,2,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,0,2],[2,2,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,0,2],[2,2,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,0,2],[3,2,2,1],[1,2,2,1]],[[1,2,0,0],[3,3,0,2],[2,2,2,1],[1,2,2,1]],[[2,2,0,0],[2,3,0,2],[2,2,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[2,2,1,2],[1,2,2,2]],[[1,2,0,0],[2,3,0,2],[2,2,1,2],[1,2,3,1]],[[1,2,0,0],[2,3,0,2],[2,2,1,2],[1,3,2,1]],[[1,2,0,0],[2,3,0,2],[2,2,1,2],[2,2,2,1]],[[1,2,0,0],[2,3,0,2],[2,2,1,3],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[3,2,1,2],[1,2,2,1]],[[1,2,0,0],[3,3,0,2],[2,2,1,2],[1,2,2,1]],[[2,2,0,0],[2,3,0,2],[2,2,1,2],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[2,0,3,2],[1,2,2,2]],[[1,1,3,1],[1,3,2,2],[1,3,3,1],[1,1,0,0]],[[1,1,2,2],[1,3,2,2],[1,3,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,2,3],[1,3,3,1],[1,1,0,0]],[[1,2,0,0],[2,3,0,2],[2,0,3,2],[1,2,3,1]],[[1,2,0,0],[2,3,0,2],[2,0,3,2],[1,3,2,1]],[[1,2,0,0],[2,3,0,2],[2,0,3,2],[2,2,2,1]],[[1,2,0,0],[2,3,0,2],[2,0,3,3],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[3,0,3,2],[1,2,2,1]],[[1,2,0,0],[3,3,0,2],[2,0,3,2],[1,2,2,1]],[[2,2,0,0],[2,3,0,2],[2,0,3,2],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[1,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,3,0,2],[1,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,3,0,2],[1,4,3,2],[1,2,1,0]],[[1,2,0,0],[2,3,0,2],[1,3,3,2],[1,3,0,1]],[[1,2,0,0],[2,3,0,2],[1,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,3,0,2],[1,4,3,2],[1,2,0,1]],[[1,2,0,0],[2,3,0,2],[1,3,3,2],[1,0,2,2]],[[1,2,0,0],[2,3,0,2],[1,3,3,2],[1,0,3,1]],[[1,2,0,0],[2,3,0,2],[1,3,3,3],[1,0,2,1]],[[1,2,0,0],[2,3,0,2],[1,3,3,2],[0,2,3,0]],[[1,2,0,0],[2,3,0,2],[1,3,3,2],[0,3,2,0]],[[1,2,0,0],[2,3,0,2],[1,4,3,2],[0,2,2,0]],[[1,2,0,0],[2,3,0,2],[1,3,3,2],[0,1,2,2]],[[1,2,0,0],[2,3,0,2],[1,3,3,2],[0,1,3,1]],[[1,2,0,0],[2,3,0,2],[1,3,3,3],[0,1,2,1]],[[1,2,0,0],[2,3,0,2],[1,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,3,0,2],[1,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,3,0,2],[1,4,3,1],[1,2,1,1]],[[1,2,0,0],[2,3,0,2],[1,3,3,1],[0,2,2,2]],[[1,2,0,0],[2,3,0,2],[1,3,3,1],[0,2,3,1]],[[1,2,0,0],[2,3,0,2],[1,3,3,1],[0,3,2,1]],[[1,2,0,0],[2,3,0,2],[1,4,3,1],[0,2,2,1]],[[1,2,0,0],[2,3,0,2],[1,3,2,2],[1,2,3,0]],[[1,2,0,0],[2,3,0,2],[1,3,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,0,2],[1,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,0,2],[1,4,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,0,2],[1,3,2,2],[0,2,2,2]],[[1,2,0,0],[2,3,0,2],[1,3,2,2],[0,2,3,1]],[[1,2,0,0],[2,3,0,2],[1,3,2,2],[0,3,2,1]],[[1,2,0,0],[2,3,0,2],[1,3,2,3],[0,2,2,1]],[[1,2,0,0],[2,3,0,2],[1,4,2,2],[0,2,2,1]],[[1,1,3,1],[1,3,2,2],[1,3,3,2],[0,0,0,1]],[[1,1,2,2],[1,3,2,2],[1,3,3,2],[0,0,0,1]],[[1,1,2,1],[1,3,2,3],[1,3,3,2],[0,0,0,1]],[[1,1,2,1],[1,3,2,2],[1,3,3,3],[0,0,0,1]],[[1,2,0,0],[2,3,0,2],[1,3,2,1],[1,2,2,2]],[[1,2,0,0],[2,3,0,2],[1,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,3,0,2],[1,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,0,2],[1,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,0,2],[1,4,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[1,3,1,2],[1,2,2,2]],[[1,2,0,0],[2,3,0,2],[1,3,1,2],[1,2,3,1]],[[1,2,0,0],[2,3,0,2],[1,3,1,2],[1,3,2,1]],[[1,2,0,0],[2,3,0,2],[1,3,1,2],[2,2,2,1]],[[1,2,0,0],[2,3,0,2],[1,3,1,3],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[1,4,1,2],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[1,2,3,2],[0,2,2,2]],[[1,2,0,0],[2,3,0,2],[1,2,3,2],[0,2,3,1]],[[1,2,0,0],[2,3,0,2],[1,2,3,2],[0,3,2,1]],[[1,2,0,0],[2,3,0,2],[1,2,3,3],[0,2,2,1]],[[1,2,0,0],[2,3,0,2],[0,3,3,2],[1,2,3,0]],[[1,2,0,0],[2,3,0,2],[0,3,3,2],[1,3,2,0]],[[1,2,0,0],[2,3,0,2],[0,3,3,2],[2,2,2,0]],[[1,2,0,0],[2,3,0,2],[0,4,3,2],[1,2,2,0]],[[1,2,0,0],[2,3,0,2],[0,3,3,2],[1,1,2,2]],[[1,2,0,0],[2,3,0,2],[0,3,3,2],[1,1,3,1]],[[1,2,0,0],[2,3,0,2],[0,3,3,3],[1,1,2,1]],[[1,2,0,0],[2,3,0,2],[0,3,3,1],[1,2,2,2]],[[1,2,0,0],[2,3,0,2],[0,3,3,1],[1,2,3,1]],[[1,2,0,0],[2,3,0,2],[0,3,3,1],[1,3,2,1]],[[1,2,0,0],[2,3,0,2],[0,3,3,1],[2,2,2,1]],[[1,2,0,0],[2,3,0,2],[0,4,3,1],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[0,3,2,2],[1,2,2,2]],[[1,2,0,0],[2,3,0,2],[0,3,2,2],[1,2,3,1]],[[1,2,0,0],[2,3,0,2],[0,3,2,2],[1,3,2,1]],[[1,2,0,0],[2,3,0,2],[0,3,2,2],[2,2,2,1]],[[1,2,0,0],[2,3,0,2],[0,3,2,3],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[0,4,2,2],[1,2,2,1]],[[1,2,0,0],[2,3,0,2],[0,2,3,2],[1,2,2,2]],[[1,2,0,0],[2,3,0,2],[0,2,3,2],[1,2,3,1]],[[1,2,0,0],[2,3,0,2],[0,2,3,2],[1,3,2,1]],[[1,2,0,0],[2,3,0,2],[0,2,3,2],[2,2,2,1]],[[1,2,0,0],[2,3,0,2],[0,2,3,3],[1,2,2,1]],[[1,2,0,0],[2,3,0,1],[2,3,3,2],[2,1,2,0]],[[1,2,0,0],[2,3,0,1],[2,4,3,2],[1,1,2,0]],[[1,2,0,0],[2,3,0,1],[3,3,3,2],[1,1,2,0]],[[1,2,0,0],[3,3,0,1],[2,3,3,2],[1,1,2,0]],[[2,2,0,0],[2,3,0,1],[2,3,3,2],[1,1,2,0]],[[1,2,0,0],[2,3,0,1],[2,3,3,2],[0,2,3,0]],[[1,2,0,0],[2,3,0,1],[2,3,3,2],[0,3,2,0]],[[1,2,0,0],[2,3,0,1],[2,4,3,2],[0,2,2,0]],[[1,2,0,0],[2,3,0,1],[3,3,3,2],[0,2,2,0]],[[1,2,0,0],[3,3,0,1],[2,3,3,2],[0,2,2,0]],[[2,2,0,0],[2,3,0,1],[2,3,3,2],[0,2,2,0]],[[1,2,0,0],[2,3,0,1],[2,3,3,1],[2,1,2,1]],[[1,2,0,0],[2,3,0,1],[2,4,3,1],[1,1,2,1]],[[1,2,0,0],[2,3,0,1],[3,3,3,1],[1,1,2,1]],[[1,2,0,0],[3,3,0,1],[2,3,3,1],[1,1,2,1]],[[2,2,0,0],[2,3,0,1],[2,3,3,1],[1,1,2,1]],[[1,2,0,0],[2,3,0,1],[2,3,3,1],[0,2,2,2]],[[1,2,0,0],[2,3,0,1],[2,3,3,1],[0,2,3,1]],[[1,2,0,0],[2,3,0,1],[2,3,3,1],[0,3,2,1]],[[1,2,0,0],[2,3,0,1],[2,4,3,1],[0,2,2,1]],[[1,2,0,0],[2,3,0,1],[3,3,3,1],[0,2,2,1]],[[1,2,0,0],[3,3,0,1],[2,3,3,1],[0,2,2,1]],[[2,2,0,0],[2,3,0,1],[2,3,3,1],[0,2,2,1]],[[1,2,0,0],[2,3,0,1],[2,3,3,0],[1,3,2,1]],[[1,2,0,0],[2,3,0,1],[2,3,3,0],[2,2,2,1]],[[1,2,0,0],[2,3,0,1],[3,3,3,0],[1,2,2,1]],[[1,2,0,0],[3,3,0,1],[2,3,3,0],[1,2,2,1]],[[2,2,0,0],[2,3,0,1],[2,3,3,0],[1,2,2,1]],[[1,2,0,0],[2,3,0,1],[2,3,2,2],[1,3,2,0]],[[1,2,0,0],[2,3,0,1],[2,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,3,0,1],[3,3,2,2],[1,2,2,0]],[[1,2,0,0],[3,3,0,1],[2,3,2,2],[1,2,2,0]],[[2,2,0,0],[2,3,0,1],[2,3,2,2],[1,2,2,0]],[[1,2,0,0],[2,3,0,1],[2,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,3,0,1],[2,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,3,0,1],[3,3,2,1],[1,2,2,1]],[[1,2,0,0],[3,3,0,1],[2,3,2,1],[1,2,2,1]],[[2,2,0,0],[2,3,0,1],[2,3,2,1],[1,2,2,1]],[[1,2,0,0],[2,3,0,1],[2,2,3,2],[1,2,3,0]],[[1,2,0,0],[2,3,0,1],[2,2,3,2],[1,3,2,0]],[[1,2,0,0],[2,3,0,1],[2,2,3,2],[2,2,2,0]],[[1,2,0,0],[2,3,0,1],[3,2,3,2],[1,2,2,0]],[[1,2,0,0],[3,3,0,1],[2,2,3,2],[1,2,2,0]],[[2,2,0,0],[2,3,0,1],[2,2,3,2],[1,2,2,0]],[[1,2,0,0],[2,3,0,1],[2,2,3,1],[1,2,2,2]],[[1,2,0,0],[2,3,0,1],[2,2,3,1],[1,2,3,1]],[[1,2,0,0],[2,3,0,1],[2,2,3,1],[1,3,2,1]],[[1,2,0,0],[2,3,0,1],[2,2,3,1],[2,2,2,1]],[[1,2,0,0],[2,3,0,1],[3,2,3,1],[1,2,2,1]],[[1,2,0,0],[3,3,0,1],[2,2,3,1],[1,2,2,1]],[[2,2,0,0],[2,3,0,1],[2,2,3,1],[1,2,2,1]],[[1,2,0,0],[2,3,0,1],[1,3,3,2],[1,2,3,0]],[[1,2,0,0],[2,3,0,1],[1,3,3,2],[1,3,2,0]],[[1,2,0,0],[2,3,0,1],[1,3,3,2],[2,2,2,0]],[[1,2,0,0],[2,3,0,1],[1,4,3,2],[1,2,2,0]],[[1,2,0,0],[2,3,0,1],[1,3,3,2],[0,2,2,2]],[[1,2,0,0],[2,3,0,1],[1,3,3,2],[0,2,3,1]],[[1,2,0,0],[2,3,0,1],[1,3,3,2],[0,3,2,1]],[[1,2,0,0],[2,3,0,1],[1,4,3,2],[0,2,2,1]],[[1,2,0,0],[2,3,0,1],[1,3,3,1],[1,2,2,2]],[[1,2,0,0],[2,3,0,1],[1,3,3,1],[1,2,3,1]],[[1,2,0,0],[2,3,0,1],[1,3,3,1],[1,3,2,1]],[[1,2,0,0],[2,3,0,1],[1,3,3,1],[2,2,2,1]],[[1,2,0,0],[2,3,0,1],[1,4,3,1],[1,2,2,1]],[[1,2,0,0],[2,3,0,1],[0,3,3,2],[1,2,2,2]],[[1,2,0,0],[2,3,0,1],[0,3,3,2],[1,2,3,1]],[[1,2,0,0],[2,3,0,1],[0,3,3,2],[1,3,2,1]],[[1,2,0,0],[2,3,0,1],[0,3,3,2],[2,2,2,1]],[[1,2,0,0],[2,3,0,1],[0,4,3,2],[1,2,2,1]],[[1,2,0,0],[2,3,0,0],[2,3,3,2],[2,1,2,1]],[[1,2,0,0],[2,3,0,0],[2,4,3,2],[1,1,2,1]],[[1,2,0,0],[2,3,0,0],[3,3,3,2],[1,1,2,1]],[[1,2,0,0],[3,3,0,0],[2,3,3,2],[1,1,2,1]],[[2,2,0,0],[2,3,0,0],[2,3,3,2],[1,1,2,1]],[[1,2,0,0],[2,3,0,0],[2,3,3,2],[0,2,2,2]],[[1,2,0,0],[2,3,0,0],[2,3,3,2],[0,2,3,1]],[[1,2,0,0],[2,3,0,0],[2,3,3,2],[0,3,2,1]],[[1,2,0,0],[2,3,0,0],[2,4,3,2],[0,2,2,1]],[[1,2,0,0],[2,3,0,0],[3,3,3,2],[0,2,2,1]],[[1,2,0,0],[3,3,0,0],[2,3,3,2],[0,2,2,1]],[[2,2,0,0],[2,3,0,0],[2,3,3,2],[0,2,2,1]],[[1,2,0,0],[2,3,0,0],[2,3,3,1],[1,3,2,1]],[[1,2,0,0],[2,3,0,0],[2,3,3,1],[2,2,2,1]],[[1,2,0,0],[2,3,0,0],[3,3,3,1],[1,2,2,1]],[[1,2,0,0],[3,3,0,0],[2,3,3,1],[1,2,2,1]],[[2,2,0,0],[2,3,0,0],[2,3,3,1],[1,2,2,1]],[[1,2,0,0],[2,3,0,0],[2,3,2,2],[1,3,2,1]],[[1,2,0,0],[2,3,0,0],[2,3,2,2],[2,2,2,1]],[[1,2,0,0],[2,3,0,0],[3,3,2,2],[1,2,2,1]],[[1,2,0,0],[3,3,0,0],[2,3,2,2],[1,2,2,1]],[[2,2,0,0],[2,3,0,0],[2,3,2,2],[1,2,2,1]],[[1,2,0,0],[2,3,0,0],[2,2,3,2],[1,2,2,2]],[[1,2,0,0],[2,3,0,0],[2,2,3,2],[1,2,3,1]],[[1,1,3,1],[1,3,2,2],[2,0,1,1],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[2,0,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[2,0,1,1],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[2,0,1,2],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[2,0,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[2,0,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[2,0,1,3],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[2,0,1,2],[0,3,2,1]],[[1,1,2,1],[1,3,2,2],[2,0,1,2],[0,2,3,1]],[[1,1,2,1],[1,3,2,2],[2,0,1,2],[0,2,2,2]],[[1,1,3,1],[1,3,2,2],[2,0,1,2],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[2,0,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[2,0,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,2],[2,0,1,3],[1,1,2,1]],[[1,1,2,1],[1,3,2,2],[2,0,1,2],[1,1,3,1]],[[1,1,2,1],[1,3,2,2],[2,0,1,2],[1,1,2,2]],[[1,1,3,1],[1,3,2,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[2,0,1,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[2,0,1,3],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[2,0,1,2],[1,2,1,2]],[[1,1,3,1],[1,3,2,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,2],[1,3,2,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,3],[2,0,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,2],[2,0,1,3],[1,2,2,0]],[[1,1,3,1],[1,3,2,2],[2,0,2,0],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[2,0,2,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[2,0,2,0],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[2,0,2,1],[1,2,2,0]],[[1,1,2,2],[1,3,2,2],[2,0,2,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,3],[2,0,2,1],[1,2,2,0]],[[1,1,3,1],[1,3,2,2],[2,0,2,2],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[2,0,2,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[2,0,2,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,2],[2,0,2,3],[0,2,1,1]],[[1,1,2,1],[1,3,2,2],[2,0,2,2],[0,2,1,2]],[[1,1,3,1],[1,3,2,2],[2,0,2,2],[0,2,2,0]],[[1,1,2,2],[1,3,2,2],[2,0,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,3],[2,0,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,2],[2,0,2,3],[0,2,2,0]],[[1,1,3,1],[1,3,2,2],[2,0,2,2],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[2,0,2,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[2,0,2,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[2,0,2,3],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[2,0,2,2],[1,1,1,2]],[[1,1,3,1],[1,3,2,2],[2,0,2,2],[1,1,2,0]],[[1,1,2,2],[1,3,2,2],[2,0,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,3],[2,0,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,2],[2,0,2,3],[1,1,2,0]],[[1,1,3,1],[1,3,2,2],[2,0,2,2],[1,2,0,1]],[[1,1,2,2],[1,3,2,2],[2,0,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,3],[2,0,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,2],[2,0,2,3],[1,2,0,1]],[[1,1,2,1],[1,3,2,2],[2,0,2,2],[1,2,0,2]],[[1,1,3,1],[1,3,2,2],[2,0,2,2],[1,2,1,0]],[[1,1,2,2],[1,3,2,2],[2,0,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,3],[2,0,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,2],[2,0,2,3],[1,2,1,0]],[[1,2,0,0],[2,3,0,0],[2,2,3,2],[1,3,2,1]],[[1,2,0,0],[2,3,0,0],[2,2,3,2],[2,2,2,1]],[[1,2,0,0],[2,3,0,0],[3,2,3,2],[1,2,2,1]],[[1,2,0,0],[3,3,0,0],[2,2,3,2],[1,2,2,1]],[[2,2,0,0],[2,3,0,0],[2,2,3,2],[1,2,2,1]],[[1,2,0,0],[2,3,0,0],[1,3,3,2],[1,2,2,2]],[[1,2,0,0],[2,3,0,0],[1,3,3,2],[1,2,3,1]],[[1,2,0,0],[2,3,0,0],[1,3,3,2],[1,3,2,1]],[[1,2,0,0],[2,3,0,0],[1,3,3,2],[2,2,2,1]],[[1,1,3,1],[1,3,2,2],[2,0,3,0],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[2,0,3,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[2,0,3,0],[0,2,2,1]],[[1,1,3,1],[1,3,2,2],[2,0,3,0],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[2,0,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[2,0,3,0],[1,1,2,1]],[[1,1,3,1],[1,3,2,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[2,0,3,0],[1,2,1,1]],[[1,1,3,1],[1,3,2,2],[2,0,3,1],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[2,0,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[2,0,3,1],[0,2,1,1]],[[1,1,3,1],[1,3,2,2],[2,0,3,1],[0,2,2,0]],[[1,1,2,2],[1,3,2,2],[2,0,3,1],[0,2,2,0]],[[1,1,2,1],[1,3,2,3],[2,0,3,1],[0,2,2,0]],[[1,1,3,1],[1,3,2,2],[2,0,3,1],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[2,0,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[2,0,3,1],[1,1,1,1]],[[1,1,3,1],[1,3,2,2],[2,0,3,1],[1,1,2,0]],[[1,1,2,2],[1,3,2,2],[2,0,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,2,3],[2,0,3,1],[1,1,2,0]],[[1,1,3,1],[1,3,2,2],[2,0,3,1],[1,2,0,1]],[[1,1,2,2],[1,3,2,2],[2,0,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,3],[2,0,3,1],[1,2,0,1]],[[1,1,3,1],[1,3,2,2],[2,0,3,1],[1,2,1,0]],[[1,1,2,2],[1,3,2,2],[2,0,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,2,3],[2,0,3,1],[1,2,1,0]],[[1,2,0,0],[2,3,0,0],[1,4,3,2],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[2,0,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,2,2],[2,0,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,3],[2,0,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[2,0,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[2,0,3,2],[0,0,2,2]],[[1,1,3,1],[1,3,2,2],[2,0,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[2,0,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[2,0,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[2,0,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[2,0,3,2],[0,1,1,2]],[[1,1,3,1],[1,3,2,2],[2,0,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[2,0,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[2,0,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,2],[2,0,3,3],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[2,0,3,2],[1,0,1,1]],[[1,1,2,2],[1,3,2,2],[2,0,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,3],[2,0,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[2,0,3,3],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[2,0,3,2],[1,0,1,2]],[[1,1,3,1],[1,3,2,2],[2,0,3,2],[1,0,2,0]],[[1,1,2,2],[1,3,2,2],[2,0,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,3],[2,0,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,2],[2,0,3,3],[1,0,2,0]],[[1,2,0,0],[2,2,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,0,0],[2,2,3,2],[2,4,3,1],[1,1,0,0]],[[1,2,0,0],[2,2,3,2],[3,3,3,1],[1,1,0,0]],[[1,2,0,0],[3,2,3,2],[2,3,3,1],[1,1,0,0]],[[2,2,0,0],[2,2,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,3,1],[1,3,2,2],[2,1,0,1],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[2,1,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[2,1,0,1],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[2,1,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[2,1,0,3],[0,2,2,1]],[[1,1,2,1],[1,3,2,2],[2,1,0,2],[0,3,2,1]],[[1,1,2,1],[1,3,2,2],[2,1,0,2],[0,2,3,1]],[[1,1,2,1],[1,3,2,2],[2,1,0,2],[0,2,2,2]],[[1,1,3,1],[1,3,2,2],[2,1,0,2],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[2,1,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[2,1,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,2,2],[2,1,0,3],[1,1,2,1]],[[1,1,2,1],[1,3,2,2],[2,1,0,2],[1,1,3,1]],[[1,1,2,1],[1,3,2,2],[2,1,0,2],[1,1,2,2]],[[1,1,3,1],[1,3,2,2],[2,1,0,2],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[2,1,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[2,1,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[2,1,0,3],[1,2,1,1]],[[1,1,2,1],[1,3,2,2],[2,1,0,2],[1,2,1,2]],[[1,1,3,1],[1,3,2,2],[2,1,0,2],[1,2,2,0]],[[1,1,2,2],[1,3,2,2],[2,1,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,3],[2,1,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,2,2],[2,1,0,3],[1,2,2,0]],[[1,1,3,1],[1,3,2,2],[2,1,1,0],[1,2,2,1]],[[1,1,2,2],[1,3,2,2],[2,1,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,3],[2,1,1,0],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[2,1,1,1],[1,2,2,0]],[[1,1,2,2],[1,3,2,2],[2,1,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,2,3],[2,1,1,1],[1,2,2,0]],[[1,1,3,1],[1,3,2,2],[2,1,1,2],[0,1,2,1]],[[1,1,2,2],[1,3,2,2],[2,1,1,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,3],[2,1,1,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[2,1,1,3],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[2,1,1,2],[0,1,3,1]],[[1,1,2,1],[1,3,2,2],[2,1,1,2],[0,1,2,2]],[[1,1,3,1],[1,3,2,2],[2,1,1,2],[1,0,2,1]],[[1,1,2,2],[1,3,2,2],[2,1,1,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,3],[2,1,1,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[2,1,1,3],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[2,1,1,2],[1,0,3,1]],[[1,1,2,1],[1,3,2,2],[2,1,1,2],[1,0,2,2]],[[1,1,3,1],[1,3,2,2],[2,1,1,2],[1,2,0,1]],[[1,1,2,2],[1,3,2,2],[2,1,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,3],[2,1,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,2,2],[2,1,1,3],[1,2,0,1]],[[1,1,2,1],[1,3,2,2],[2,1,1,2],[1,2,0,2]],[[1,1,3,1],[1,3,2,2],[2,1,1,2],[1,2,1,0]],[[1,1,2,2],[1,3,2,2],[2,1,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,3],[2,1,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,2,2],[2,1,1,3],[1,2,1,0]],[[1,2,0,0],[2,2,3,2],[2,4,3,1],[0,2,0,0]],[[1,1,3,1],[1,3,2,2],[2,1,2,0],[1,2,1,1]],[[1,1,2,2],[1,3,2,2],[2,1,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,2,3],[2,1,2,0],[1,2,1,1]],[[1,1,3,1],[1,3,2,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,2],[1,3,2,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,2,3],[2,1,2,1],[1,2,0,1]],[[1,1,3,1],[1,3,2,2],[2,1,2,1],[1,2,1,0]],[[1,1,2,2],[1,3,2,2],[2,1,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,2,3],[2,1,2,1],[1,2,1,0]],[[1,2,0,0],[2,2,3,2],[3,3,3,1],[0,2,0,0]],[[1,2,0,0],[3,2,3,2],[2,3,3,1],[0,2,0,0]],[[2,2,0,0],[2,2,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,3,1],[1,3,2,2],[2,1,2,2],[0,0,2,1]],[[1,1,2,2],[1,3,2,2],[2,1,2,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,3],[2,1,2,2],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[2,1,2,3],[0,0,2,1]],[[1,1,2,1],[1,3,2,2],[2,1,2,2],[0,0,2,2]],[[1,1,3,1],[1,3,2,2],[2,1,2,2],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[2,1,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[2,1,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[2,1,2,3],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[2,1,2,2],[0,1,1,2]],[[1,1,3,1],[1,3,2,2],[2,1,2,2],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[2,1,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[2,1,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,2],[2,1,2,3],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[2,1,2,2],[0,2,0,1]],[[1,1,2,2],[1,3,2,2],[2,1,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,3],[2,1,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[2,1,2,3],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[2,1,2,2],[0,2,0,2]],[[1,1,3,1],[1,3,2,2],[2,1,2,2],[0,2,1,0]],[[1,1,2,2],[1,3,2,2],[2,1,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,3],[2,1,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,2],[2,1,2,3],[0,2,1,0]],[[1,1,3,1],[1,3,2,2],[2,1,2,2],[1,0,1,1]],[[1,1,2,2],[1,3,2,2],[2,1,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,3],[2,1,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[2,1,2,3],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[2,1,2,2],[1,0,1,2]],[[1,1,3,1],[1,3,2,2],[2,1,2,2],[1,0,2,0]],[[1,1,2,2],[1,3,2,2],[2,1,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,3],[2,1,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,2],[2,1,2,3],[1,0,2,0]],[[1,1,3,1],[1,3,2,2],[2,1,2,2],[1,1,0,1]],[[1,1,2,2],[1,3,2,2],[2,1,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,3],[2,1,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[2,1,2,3],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[2,1,2,2],[1,1,0,2]],[[1,1,3,1],[1,3,2,2],[2,1,2,2],[1,1,1,0]],[[1,1,2,2],[1,3,2,2],[2,1,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,3],[2,1,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,2],[2,1,2,3],[1,1,1,0]],[[1,2,0,0],[2,2,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,0,0],[2,2,3,2],[2,4,3,0],[1,2,0,0]],[[1,2,0,0],[2,2,3,2],[3,3,3,0],[1,2,0,0]],[[1,2,0,0],[3,2,3,2],[2,3,3,0],[1,2,0,0]],[[2,2,0,0],[2,2,3,2],[2,3,3,0],[1,2,0,0]],[[1,1,3,1],[1,3,2,2],[2,1,3,0],[0,1,2,1]],[[1,1,2,2],[1,3,2,2],[2,1,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,2,3],[2,1,3,0],[0,1,2,1]],[[1,1,3,1],[1,3,2,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[2,1,3,0],[0,2,1,1]],[[1,1,3,1],[1,3,2,2],[2,1,3,0],[1,0,2,1]],[[1,1,2,2],[1,3,2,2],[2,1,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,2,3],[2,1,3,0],[1,0,2,1]],[[1,1,3,1],[1,3,2,2],[2,1,3,0],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[2,1,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[2,1,3,0],[1,1,1,1]],[[1,2,0,0],[2,2,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,0,0],[2,2,3,2],[2,4,3,0],[1,1,1,0]],[[1,1,3,1],[1,3,2,2],[2,1,3,1],[0,0,2,1]],[[1,1,2,2],[1,3,2,2],[2,1,3,1],[0,0,2,1]],[[1,1,2,1],[1,3,2,3],[2,1,3,1],[0,0,2,1]],[[1,1,3,1],[1,3,2,2],[2,1,3,1],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[2,1,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[2,1,3,1],[0,1,1,1]],[[1,1,3,1],[1,3,2,2],[2,1,3,1],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[2,1,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[2,1,3,1],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[2,1,3,1],[0,2,0,1]],[[1,1,2,2],[1,3,2,2],[2,1,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,3],[2,1,3,1],[0,2,0,1]],[[1,1,3,1],[1,3,2,2],[2,1,3,1],[0,2,1,0]],[[1,1,2,2],[1,3,2,2],[2,1,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,2,3],[2,1,3,1],[0,2,1,0]],[[1,2,0,0],[2,2,3,2],[3,3,3,0],[1,1,1,0]],[[1,2,0,0],[3,2,3,2],[2,3,3,0],[1,1,1,0]],[[2,2,0,0],[2,2,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,3,1],[1,3,2,2],[2,1,3,1],[1,0,1,1]],[[1,1,2,2],[1,3,2,2],[2,1,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,2,3],[2,1,3,1],[1,0,1,1]],[[1,1,3,1],[1,3,2,2],[2,1,3,1],[1,0,2,0]],[[1,1,2,2],[1,3,2,2],[2,1,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,2,3],[2,1,3,1],[1,0,2,0]],[[1,1,3,1],[1,3,2,2],[2,1,3,1],[1,1,0,1]],[[1,1,2,2],[1,3,2,2],[2,1,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,2,3],[2,1,3,1],[1,1,0,1]],[[1,1,3,1],[1,3,2,2],[2,1,3,1],[1,1,1,0]],[[1,1,2,2],[1,3,2,2],[2,1,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,2,3],[2,1,3,1],[1,1,1,0]],[[1,2,0,0],[2,2,3,2],[2,3,3,0],[2,0,2,0]],[[1,2,0,0],[2,2,3,2],[2,4,3,0],[1,0,2,0]],[[1,2,0,0],[2,2,3,2],[3,3,3,0],[1,0,2,0]],[[1,2,0,0],[3,2,3,2],[2,3,3,0],[1,0,2,0]],[[2,2,0,0],[2,2,3,2],[2,3,3,0],[1,0,2,0]],[[1,2,0,0],[2,2,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,0,0],[2,2,3,2],[2,4,3,0],[0,2,1,0]],[[1,2,0,0],[2,2,3,2],[3,3,3,0],[0,2,1,0]],[[1,2,0,0],[3,2,3,2],[2,3,3,0],[0,2,1,0]],[[2,2,0,0],[2,2,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,3,1],[1,3,2,2],[2,1,3,2],[0,1,0,1]],[[1,1,2,2],[1,3,2,2],[2,1,3,2],[0,1,0,1]],[[1,1,2,1],[1,3,2,3],[2,1,3,2],[0,1,0,1]],[[1,1,2,1],[1,3,2,2],[2,1,3,3],[0,1,0,1]],[[1,2,0,0],[2,2,3,2],[2,4,3,0],[0,1,2,0]],[[1,2,0,0],[2,2,3,2],[3,3,3,0],[0,1,2,0]],[[1,2,0,0],[3,2,3,2],[2,3,3,0],[0,1,2,0]],[[2,2,0,0],[2,2,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[2,1,3,2],[1,0,0,1]],[[1,1,2,2],[1,3,2,2],[2,1,3,2],[1,0,0,1]],[[1,1,2,1],[1,3,2,3],[2,1,3,2],[1,0,0,1]],[[1,1,2,1],[1,3,2,2],[2,1,3,3],[1,0,0,1]],[[1,2,0,0],[2,2,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,0,0],[2,2,3,2],[2,4,2,1],[1,2,0,0]],[[1,2,0,0],[2,2,3,2],[3,3,2,1],[1,2,0,0]],[[1,2,0,0],[3,2,3,2],[2,3,2,1],[1,2,0,0]],[[2,2,0,0],[2,2,3,2],[2,3,2,1],[1,2,0,0]],[[1,2,0,0],[2,2,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,0,0],[2,2,3,2],[2,4,2,1],[1,1,1,0]],[[1,2,0,0],[2,2,3,2],[3,3,2,1],[1,1,1,0]],[[1,2,0,0],[3,2,3,2],[2,3,2,1],[1,1,1,0]],[[2,2,0,0],[2,2,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,0,0],[2,2,3,2],[2,3,2,1],[2,1,0,1]],[[1,2,0,0],[2,2,3,2],[2,4,2,1],[1,1,0,1]],[[1,2,0,0],[2,2,3,2],[3,3,2,1],[1,1,0,1]],[[1,2,0,0],[3,2,3,2],[2,3,2,1],[1,1,0,1]],[[2,2,0,0],[2,2,3,2],[2,3,2,1],[1,1,0,1]],[[1,1,3,1],[1,3,2,2],[2,2,0,1],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[2,2,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[2,2,0,1],[0,2,2,1]],[[1,1,3,1],[1,3,2,2],[2,2,0,1],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[2,2,0,1],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[2,2,0,1],[1,1,2,1]],[[1,1,3,1],[1,3,2,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,2],[1,3,2,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,3],[2,2,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[2,2,0,3],[0,1,2,1]],[[1,1,2,1],[1,3,2,2],[2,2,0,2],[0,1,3,1]],[[1,1,2,1],[1,3,2,2],[2,2,0,2],[0,1,2,2]],[[1,1,3,1],[1,3,2,2],[2,2,0,2],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[2,2,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[2,2,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,2,2],[2,2,0,3],[0,2,1,1]],[[1,1,2,1],[1,3,2,2],[2,2,0,2],[0,2,1,2]],[[1,1,3,1],[1,3,2,2],[2,2,0,2],[0,2,2,0]],[[1,1,2,2],[1,3,2,2],[2,2,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,3],[2,2,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,2,2],[2,2,0,3],[0,2,2,0]],[[1,1,3,1],[1,3,2,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,2],[1,3,2,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,3],[2,2,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[2,2,0,3],[1,0,2,1]],[[1,1,2,1],[1,3,2,2],[2,2,0,2],[1,0,3,1]],[[1,1,2,1],[1,3,2,2],[2,2,0,2],[1,0,2,2]],[[1,1,3,1],[1,3,2,2],[2,2,0,2],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[2,2,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[2,2,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[2,2,0,3],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[2,2,0,2],[1,1,1,2]],[[1,1,3,1],[1,3,2,2],[2,2,0,2],[1,1,2,0]],[[1,1,2,2],[1,3,2,2],[2,2,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,3],[2,2,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,2,2],[2,2,0,3],[1,1,2,0]],[[1,2,0,0],[2,2,3,2],[2,3,2,1],[2,0,2,0]],[[1,2,0,0],[2,2,3,2],[2,4,2,1],[1,0,2,0]],[[1,2,0,0],[2,2,3,2],[3,3,2,1],[1,0,2,0]],[[1,2,0,0],[3,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,1,3,1],[1,3,2,2],[2,2,1,0],[0,2,2,1]],[[1,1,2,2],[1,3,2,2],[2,2,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,2,3],[2,2,1,0],[0,2,2,1]],[[1,1,3,1],[1,3,2,2],[2,2,1,0],[1,1,2,1]],[[1,1,2,2],[1,3,2,2],[2,2,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,3],[2,2,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,2,2],[3,2,1,0],[1,2,2,0]],[[1,1,2,1],[1,3,2,2],[2,2,1,0],[2,2,2,0]],[[1,1,2,1],[1,3,2,2],[2,2,1,0],[1,3,2,0]],[[1,1,3,1],[1,3,2,2],[2,2,1,1],[0,2,2,0]],[[1,1,2,2],[1,3,2,2],[2,2,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,2,3],[2,2,1,1],[0,2,2,0]],[[1,1,3,1],[1,3,2,2],[2,2,1,1],[1,1,2,0]],[[1,1,2,2],[1,3,2,2],[2,2,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,2,3],[2,2,1,1],[1,1,2,0]],[[2,2,0,0],[2,2,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,0,0],[2,2,3,2],[2,3,2,1],[2,0,1,1]],[[1,2,0,0],[2,2,3,2],[2,4,2,1],[1,0,1,1]],[[1,2,0,0],[2,2,3,2],[3,3,2,1],[1,0,1,1]],[[1,2,0,0],[3,2,3,2],[2,3,2,1],[1,0,1,1]],[[2,2,0,0],[2,2,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,3,1],[1,3,2,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[2,2,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[2,2,1,3],[0,1,1,1]],[[1,1,2,1],[1,3,2,2],[2,2,1,2],[0,1,1,2]],[[1,1,3,1],[1,3,2,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[2,2,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,2,2],[2,2,1,3],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,2],[1,3,2,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,3],[2,2,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[2,2,1,3],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[2,2,1,2],[0,2,0,2]],[[1,1,3,1],[1,3,2,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,2],[1,3,2,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,3],[2,2,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,2,2],[2,2,1,3],[0,2,1,0]],[[1,1,3,1],[1,3,2,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,2],[1,3,2,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,3],[2,2,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[2,2,1,3],[1,0,1,1]],[[1,1,2,1],[1,3,2,2],[2,2,1,2],[1,0,1,2]],[[1,1,3,1],[1,3,2,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,2],[1,3,2,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,3],[2,2,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,2,2],[2,2,1,3],[1,0,2,0]],[[1,1,3,1],[1,3,2,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,2],[1,3,2,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,3],[2,2,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[2,2,1,3],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[2,2,1,2],[1,1,0,2]],[[1,1,3,1],[1,3,2,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,2],[1,3,2,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,3],[2,2,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,2,2],[2,2,1,3],[1,1,1,0]],[[1,2,0,0],[2,2,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,0,0],[2,2,3,2],[2,4,2,1],[0,2,1,0]],[[1,2,0,0],[2,2,3,2],[3,3,2,1],[0,2,1,0]],[[1,2,0,0],[3,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,1,3,1],[1,3,2,2],[2,2,1,2],[1,2,0,0]],[[1,1,2,2],[1,3,2,2],[2,2,1,2],[1,2,0,0]],[[1,1,2,1],[1,3,2,3],[2,2,1,2],[1,2,0,0]],[[2,2,0,0],[2,2,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,0,0],[2,2,3,2],[2,3,2,1],[0,3,0,1]],[[1,2,0,0],[2,2,3,2],[2,4,2,1],[0,2,0,1]],[[1,2,0,0],[2,2,3,2],[3,3,2,1],[0,2,0,1]],[[1,2,0,0],[3,2,3,2],[2,3,2,1],[0,2,0,1]],[[2,2,0,0],[2,2,3,2],[2,3,2,1],[0,2,0,1]],[[1,2,0,0],[2,2,3,2],[2,4,2,1],[0,1,2,0]],[[1,2,0,0],[2,2,3,2],[3,3,2,1],[0,1,2,0]],[[1,2,0,0],[3,2,3,2],[2,3,2,1],[0,1,2,0]],[[2,2,0,0],[2,2,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,0,0],[2,2,3,2],[2,4,2,1],[0,1,1,1]],[[1,2,0,0],[2,2,3,2],[3,3,2,1],[0,1,1,1]],[[1,2,0,0],[3,2,3,2],[2,3,2,1],[0,1,1,1]],[[2,2,0,0],[2,2,3,2],[2,3,2,1],[0,1,1,1]],[[1,2,0,0],[2,2,3,2],[2,3,2,0],[2,2,0,1]],[[1,1,3,1],[1,3,2,2],[2,2,2,0],[0,1,2,1]],[[1,1,2,2],[1,3,2,2],[2,2,2,0],[0,1,2,1]],[[1,1,2,1],[1,3,2,3],[2,2,2,0],[0,1,2,1]],[[1,1,3,1],[1,3,2,2],[2,2,2,0],[0,2,1,1]],[[1,1,2,2],[1,3,2,2],[2,2,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,2,3],[2,2,2,0],[0,2,1,1]],[[1,1,3,1],[1,3,2,2],[2,2,2,0],[1,0,2,1]],[[1,1,2,2],[1,3,2,2],[2,2,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,2,3],[2,2,2,0],[1,0,2,1]],[[1,1,3,1],[1,3,2,2],[2,2,2,0],[1,1,1,1]],[[1,1,2,2],[1,3,2,2],[2,2,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,2,3],[2,2,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,2,2],[3,2,2,0],[1,2,1,0]],[[1,1,2,1],[1,3,2,2],[2,2,2,0],[2,2,1,0]],[[1,1,2,1],[1,3,2,2],[2,2,2,0],[1,3,1,0]],[[1,2,0,0],[2,2,3,2],[2,4,2,0],[1,2,0,1]],[[1,2,0,0],[2,2,3,2],[3,3,2,0],[1,2,0,1]],[[1,2,0,0],[3,2,3,2],[2,3,2,0],[1,2,0,1]],[[2,2,0,0],[2,2,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,3,1],[1,3,2,2],[2,2,2,1],[0,1,1,1]],[[1,1,2,2],[1,3,2,2],[2,2,2,1],[0,1,1,1]],[[1,1,2,1],[1,3,2,3],[2,2,2,1],[0,1,1,1]],[[1,1,3,1],[1,3,2,2],[2,2,2,1],[0,1,2,0]],[[1,1,2,2],[1,3,2,2],[2,2,2,1],[0,1,2,0]],[[1,1,2,1],[1,3,2,3],[2,2,2,1],[0,1,2,0]],[[1,1,3,1],[1,3,2,2],[2,2,2,1],[0,2,0,1]],[[1,1,2,2],[1,3,2,2],[2,2,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,2,3],[2,2,2,1],[0,2,0,1]],[[1,1,3,1],[1,3,2,2],[2,2,2,1],[0,2,1,0]],[[1,1,2,2],[1,3,2,2],[2,2,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,2,3],[2,2,2,1],[0,2,1,0]],[[1,2,0,0],[2,2,3,2],[2,3,2,0],[2,1,1,1]],[[1,2,0,0],[2,2,3,2],[2,4,2,0],[1,1,1,1]],[[1,1,3,1],[1,3,2,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,2],[1,3,2,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,1],[1,3,2,3],[2,2,2,1],[1,0,1,1]],[[1,1,3,1],[1,3,2,2],[2,2,2,1],[1,0,2,0]],[[1,1,2,2],[1,3,2,2],[2,2,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,2,3],[2,2,2,1],[1,0,2,0]],[[1,1,3,1],[1,3,2,2],[2,2,2,1],[1,1,0,1]],[[1,1,2,2],[1,3,2,2],[2,2,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,2,3],[2,2,2,1],[1,1,0,1]],[[1,1,3,1],[1,3,2,2],[2,2,2,1],[1,1,1,0]],[[1,1,2,2],[1,3,2,2],[2,2,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,2,3],[2,2,2,1],[1,1,1,0]],[[1,2,0,0],[2,2,3,2],[3,3,2,0],[1,1,1,1]],[[1,2,0,0],[3,2,3,2],[2,3,2,0],[1,1,1,1]],[[2,2,0,0],[2,2,3,2],[2,3,2,0],[1,1,1,1]],[[1,1,3,1],[1,3,2,2],[2,2,2,1],[1,2,0,0]],[[1,1,2,2],[1,3,2,2],[2,2,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,2,3],[2,2,2,1],[1,2,0,0]],[[1,2,0,0],[2,2,3,2],[2,3,2,0],[2,0,2,1]],[[1,2,0,0],[2,2,3,2],[2,4,2,0],[1,0,2,1]],[[1,2,0,0],[2,2,3,2],[3,3,2,0],[1,0,2,1]],[[1,2,0,0],[3,2,3,2],[2,3,2,0],[1,0,2,1]],[[2,2,0,0],[2,2,3,2],[2,3,2,0],[1,0,2,1]],[[1,2,0,0],[2,2,3,2],[2,3,2,0],[0,3,1,1]],[[1,2,0,0],[2,2,3,2],[2,4,2,0],[0,2,1,1]],[[1,2,0,0],[2,2,3,2],[3,3,2,0],[0,2,1,1]],[[1,2,0,0],[3,2,3,2],[2,3,2,0],[0,2,1,1]],[[2,2,0,0],[2,2,3,2],[2,3,2,0],[0,2,1,1]],[[1,2,0,0],[2,2,3,2],[2,4,2,0],[0,1,2,1]],[[1,2,0,0],[2,2,3,2],[3,3,2,0],[0,1,2,1]],[[1,2,0,0],[3,2,3,2],[2,3,2,0],[0,1,2,1]],[[2,2,0,0],[2,2,3,2],[2,3,2,0],[0,1,2,1]],[[1,2,0,0],[2,2,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,0,0],[2,2,3,2],[2,4,1,2],[1,2,0,0]],[[1,2,0,0],[2,2,3,2],[3,3,1,2],[1,2,0,0]],[[1,2,0,0],[3,2,3,2],[2,3,1,2],[1,2,0,0]],[[2,2,0,0],[2,2,3,2],[2,3,1,2],[1,2,0,0]],[[1,2,0,0],[2,2,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,0,0],[2,2,3,2],[2,4,1,2],[1,1,1,0]],[[1,2,0,0],[2,2,3,2],[3,3,1,2],[1,1,1,0]],[[1,2,0,0],[3,2,3,2],[2,3,1,2],[1,1,1,0]],[[2,2,0,0],[2,2,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,0,0],[2,2,3,2],[2,3,1,2],[2,1,0,1]],[[1,2,0,0],[2,2,3,2],[2,4,1,2],[1,1,0,1]],[[1,2,0,0],[2,2,3,2],[3,3,1,2],[1,1,0,1]],[[1,2,0,0],[3,2,3,2],[2,3,1,2],[1,1,0,1]],[[2,2,0,0],[2,2,3,2],[2,3,1,2],[1,1,0,1]],[[1,2,0,0],[2,2,3,2],[2,3,1,2],[2,0,2,0]],[[1,2,0,0],[2,2,3,2],[2,4,1,2],[1,0,2,0]],[[1,2,0,0],[2,2,3,2],[3,3,1,2],[1,0,2,0]],[[1,2,0,0],[3,2,3,2],[2,3,1,2],[1,0,2,0]],[[2,2,0,0],[2,2,3,2],[2,3,1,2],[1,0,2,0]],[[1,2,0,0],[2,2,3,2],[2,3,1,2],[2,0,1,1]],[[1,2,0,0],[2,2,3,2],[2,4,1,2],[1,0,1,1]],[[1,2,0,0],[2,2,3,2],[3,3,1,2],[1,0,1,1]],[[1,2,0,0],[3,2,3,2],[2,3,1,2],[1,0,1,1]],[[2,2,0,0],[2,2,3,2],[2,3,1,2],[1,0,1,1]],[[1,2,0,0],[2,2,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,0,0],[2,2,3,2],[2,4,1,2],[0,2,1,0]],[[1,2,0,0],[2,2,3,2],[3,3,1,2],[0,2,1,0]],[[1,2,0,0],[3,2,3,2],[2,3,1,2],[0,2,1,0]],[[2,2,0,0],[2,2,3,2],[2,3,1,2],[0,2,1,0]],[[1,2,0,0],[2,2,3,2],[2,3,1,2],[0,3,0,1]],[[1,2,0,0],[2,2,3,2],[2,4,1,2],[0,2,0,1]],[[1,2,0,0],[2,2,3,2],[3,3,1,2],[0,2,0,1]],[[1,2,0,0],[3,2,3,2],[2,3,1,2],[0,2,0,1]],[[2,2,0,0],[2,2,3,2],[2,3,1,2],[0,2,0,1]],[[1,2,0,0],[2,2,3,2],[2,4,1,2],[0,1,2,0]],[[1,2,0,0],[2,2,3,2],[3,3,1,2],[0,1,2,0]],[[1,2,0,0],[3,2,3,2],[2,3,1,2],[0,1,2,0]],[[2,2,0,0],[2,2,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,0,0],[2,2,3,2],[2,4,1,2],[0,1,1,1]],[[1,2,0,0],[2,2,3,2],[3,3,1,2],[0,1,1,1]],[[1,2,0,0],[3,2,3,2],[2,3,1,2],[0,1,1,1]],[[2,2,0,0],[2,2,3,2],[2,3,1,2],[0,1,1,1]],[[1,2,0,0],[2,2,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,0,0],[2,2,3,2],[2,4,1,1],[1,1,2,0]],[[1,2,0,0],[2,2,3,2],[3,3,1,1],[1,1,2,0]],[[1,2,0,0],[3,2,3,2],[2,3,1,1],[1,1,2,0]],[[2,2,0,0],[2,2,3,2],[2,3,1,1],[1,1,2,0]],[[1,2,0,0],[2,2,3,2],[2,3,1,1],[0,2,3,0]],[[1,2,0,0],[2,2,3,2],[2,3,1,1],[0,3,2,0]],[[1,2,0,0],[2,2,3,2],[2,4,1,1],[0,2,2,0]],[[1,2,0,0],[2,2,3,2],[3,3,1,1],[0,2,2,0]],[[1,2,0,0],[3,2,3,2],[2,3,1,1],[0,2,2,0]],[[2,2,0,0],[2,2,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,3,1],[1,3,2,2],[2,2,3,1],[0,2,0,0]],[[1,1,2,2],[1,3,2,2],[2,2,3,1],[0,2,0,0]],[[1,1,2,1],[1,3,2,3],[2,2,3,1],[0,2,0,0]],[[1,2,0,0],[2,2,3,2],[2,3,1,0],[2,1,2,1]],[[1,2,0,0],[2,2,3,2],[2,4,1,0],[1,1,2,1]],[[1,2,0,0],[2,2,3,2],[3,3,1,0],[1,1,2,1]],[[1,2,0,0],[3,2,3,2],[2,3,1,0],[1,1,2,1]],[[2,2,0,0],[2,2,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,0,0],[2,2,3,2],[2,3,1,0],[0,2,2,2]],[[1,2,0,0],[2,2,3,2],[2,3,1,0],[0,2,3,1]],[[1,2,0,0],[2,2,3,2],[2,3,1,0],[0,3,2,1]],[[1,2,0,0],[2,2,3,2],[2,4,1,0],[0,2,2,1]],[[1,2,0,0],[2,2,3,2],[3,3,1,0],[0,2,2,1]],[[1,2,0,0],[3,2,3,2],[2,3,1,0],[0,2,2,1]],[[2,2,0,0],[2,2,3,2],[2,3,1,0],[0,2,2,1]],[[1,1,3,1],[1,3,2,2],[2,2,3,1],[1,1,0,0]],[[1,1,2,2],[1,3,2,2],[2,2,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,2,3],[2,2,3,1],[1,1,0,0]],[[1,2,0,0],[2,2,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,0,0],[2,2,3,2],[2,4,0,2],[1,1,2,0]],[[1,2,0,0],[2,2,3,2],[3,3,0,2],[1,1,2,0]],[[1,2,0,0],[3,2,3,2],[2,3,0,2],[1,1,2,0]],[[2,2,0,0],[2,2,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,0,0],[2,2,3,2],[2,3,0,2],[2,1,1,1]],[[1,2,0,0],[2,2,3,2],[2,4,0,2],[1,1,1,1]],[[1,2,0,0],[2,2,3,2],[3,3,0,2],[1,1,1,1]],[[1,2,0,0],[3,2,3,2],[2,3,0,2],[1,1,1,1]],[[2,2,0,0],[2,2,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,0,0],[2,2,3,2],[2,3,0,2],[2,0,2,1]],[[1,2,0,0],[2,2,3,2],[2,4,0,2],[1,0,2,1]],[[1,2,0,0],[2,2,3,2],[3,3,0,2],[1,0,2,1]],[[1,2,0,0],[3,2,3,2],[2,3,0,2],[1,0,2,1]],[[2,2,0,0],[2,2,3,2],[2,3,0,2],[1,0,2,1]],[[1,2,0,0],[2,2,3,2],[2,3,0,2],[0,2,3,0]],[[1,2,0,0],[2,2,3,2],[2,3,0,2],[0,3,2,0]],[[1,2,0,0],[2,2,3,2],[2,4,0,2],[0,2,2,0]],[[1,2,0,0],[2,2,3,2],[3,3,0,2],[0,2,2,0]],[[1,2,0,0],[3,2,3,2],[2,3,0,2],[0,2,2,0]],[[2,2,0,0],[2,2,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,0,0],[2,2,3,2],[2,3,0,2],[0,3,1,1]],[[1,2,0,0],[2,2,3,2],[2,4,0,2],[0,2,1,1]],[[1,2,0,0],[2,2,3,2],[3,3,0,2],[0,2,1,1]],[[1,2,0,0],[3,2,3,2],[2,3,0,2],[0,2,1,1]],[[2,2,0,0],[2,2,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,0,0],[2,2,3,2],[2,4,0,2],[0,1,2,1]],[[1,2,0,0],[2,2,3,2],[3,3,0,2],[0,1,2,1]],[[1,2,0,0],[3,2,3,2],[2,3,0,2],[0,1,2,1]],[[2,2,0,0],[2,2,3,2],[2,3,0,2],[0,1,2,1]],[[1,2,0,0],[2,2,3,2],[2,3,0,1],[1,3,2,0]],[[1,2,0,0],[2,2,3,2],[2,3,0,1],[2,2,2,0]],[[1,2,0,0],[2,2,3,2],[3,3,0,1],[1,2,2,0]],[[1,2,0,0],[3,2,3,2],[2,3,0,1],[1,2,2,0]],[[2,2,0,0],[2,2,3,2],[2,3,0,1],[1,2,2,0]],[[1,2,0,0],[2,2,3,2],[2,3,0,1],[2,1,2,1]],[[1,2,0,0],[2,2,3,2],[2,4,0,1],[1,1,2,1]],[[1,2,0,0],[2,2,3,2],[3,3,0,1],[1,1,2,1]],[[1,2,0,0],[3,2,3,2],[2,3,0,1],[1,1,2,1]],[[2,2,0,0],[2,2,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,0,0],[2,2,3,2],[2,3,0,1],[0,2,2,2]],[[1,2,0,0],[2,2,3,2],[2,3,0,1],[0,2,3,1]],[[1,2,0,0],[2,2,3,2],[2,3,0,1],[0,3,2,1]],[[1,2,0,0],[2,2,3,2],[2,4,0,1],[0,2,2,1]],[[1,2,0,0],[2,2,3,2],[3,3,0,1],[0,2,2,1]],[[1,2,0,0],[3,2,3,2],[2,3,0,1],[0,2,2,1]],[[2,2,0,0],[2,2,3,2],[2,3,0,1],[0,2,2,1]],[[1,2,0,0],[2,2,3,2],[2,3,0,0],[1,3,2,1]],[[1,2,0,0],[2,2,3,2],[2,3,0,0],[2,2,2,1]],[[1,2,0,0],[2,2,3,2],[3,3,0,0],[1,2,2,1]],[[1,2,0,0],[3,2,3,2],[2,3,0,0],[1,2,2,1]],[[2,2,0,0],[2,2,3,2],[2,3,0,0],[1,2,2,1]],[[1,2,0,0],[2,2,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,0,0],[2,2,3,2],[2,2,3,0],[2,2,1,0]],[[1,2,0,0],[2,2,3,2],[3,2,3,0],[1,2,1,0]],[[1,2,0,0],[3,2,3,2],[2,2,3,0],[1,2,1,0]],[[2,2,0,0],[2,2,3,2],[2,2,3,0],[1,2,1,0]],[[1,2,0,0],[2,2,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,0,0],[2,2,3,2],[2,2,2,1],[2,2,1,0]],[[1,2,0,0],[2,2,3,2],[3,2,2,1],[1,2,1,0]],[[1,2,0,0],[3,2,3,2],[2,2,2,1],[1,2,1,0]],[[2,2,0,0],[2,2,3,2],[2,2,2,1],[1,2,1,0]],[[1,2,0,0],[2,2,3,2],[2,2,2,1],[1,3,0,1]],[[1,2,0,0],[2,2,3,2],[2,2,2,1],[2,2,0,1]],[[1,2,0,0],[2,2,3,2],[3,2,2,1],[1,2,0,1]],[[1,2,0,0],[3,2,3,2],[2,2,2,1],[1,2,0,1]],[[2,2,0,0],[2,2,3,2],[2,2,2,1],[1,2,0,1]],[[1,2,0,0],[2,2,3,2],[2,2,2,0],[1,3,1,1]],[[1,2,0,0],[2,2,3,2],[2,2,2,0],[2,2,1,1]],[[1,2,0,0],[2,2,3,2],[3,2,2,0],[1,2,1,1]],[[1,2,0,0],[3,2,3,2],[2,2,2,0],[1,2,1,1]],[[2,2,0,0],[2,2,3,2],[2,2,2,0],[1,2,1,1]],[[1,2,0,0],[2,2,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,0,0],[2,2,3,2],[2,2,1,2],[2,2,1,0]],[[1,2,0,0],[2,2,3,2],[3,2,1,2],[1,2,1,0]],[[1,2,0,0],[3,2,3,2],[2,2,1,2],[1,2,1,0]],[[2,2,0,0],[2,2,3,2],[2,2,1,2],[1,2,1,0]],[[1,2,0,0],[2,2,3,2],[2,2,1,2],[1,3,0,1]],[[1,2,0,0],[2,2,3,2],[2,2,1,2],[2,2,0,1]],[[1,2,0,0],[2,2,3,2],[3,2,1,2],[1,2,0,1]],[[1,2,0,0],[3,2,3,2],[2,2,1,2],[1,2,0,1]],[[2,2,0,0],[2,2,3,2],[2,2,1,2],[1,2,0,1]],[[1,2,0,0],[2,2,3,2],[2,2,1,1],[1,2,3,0]],[[1,2,0,0],[2,2,3,2],[2,2,1,1],[1,3,2,0]],[[1,2,0,0],[2,2,3,2],[2,2,1,1],[2,2,2,0]],[[1,2,0,0],[2,2,3,2],[3,2,1,1],[1,2,2,0]],[[1,2,0,0],[3,2,3,2],[2,2,1,1],[1,2,2,0]],[[2,2,0,0],[2,2,3,2],[2,2,1,1],[1,2,2,0]],[[1,2,0,0],[2,2,3,2],[2,2,1,0],[1,2,2,2]],[[1,2,0,0],[2,2,3,2],[2,2,1,0],[1,2,3,1]],[[1,2,0,0],[2,2,3,2],[2,2,1,0],[1,3,2,1]],[[1,2,0,0],[2,2,3,2],[2,2,1,0],[2,2,2,1]],[[1,2,0,0],[2,2,3,2],[3,2,1,0],[1,2,2,1]],[[1,2,0,0],[3,2,3,2],[2,2,1,0],[1,2,2,1]],[[2,2,0,0],[2,2,3,2],[2,2,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,2,2],[3,3,0,0],[1,2,2,0]],[[1,1,2,1],[1,3,2,2],[2,3,0,0],[2,2,2,0]],[[1,1,2,1],[1,3,2,2],[2,3,0,0],[1,3,2,0]],[[1,2,0,0],[2,2,3,2],[2,2,0,2],[1,2,3,0]],[[1,2,0,0],[2,2,3,2],[2,2,0,2],[1,3,2,0]],[[1,2,0,0],[2,2,3,2],[2,2,0,2],[2,2,2,0]],[[1,2,0,0],[2,2,3,2],[3,2,0,2],[1,2,2,0]],[[1,2,0,0],[3,2,3,2],[2,2,0,2],[1,2,2,0]],[[2,2,0,0],[2,2,3,2],[2,2,0,2],[1,2,2,0]],[[1,2,0,0],[2,2,3,2],[2,2,0,2],[1,3,1,1]],[[1,2,0,0],[2,2,3,2],[2,2,0,2],[2,2,1,1]],[[1,2,0,0],[2,2,3,2],[3,2,0,2],[1,2,1,1]],[[1,2,0,0],[3,2,3,2],[2,2,0,2],[1,2,1,1]],[[2,2,0,0],[2,2,3,2],[2,2,0,2],[1,2,1,1]],[[1,2,0,0],[2,2,3,2],[2,2,0,1],[1,2,2,2]],[[1,2,0,0],[2,2,3,2],[2,2,0,1],[1,2,3,1]],[[1,2,0,0],[2,2,3,2],[2,2,0,1],[1,3,2,1]],[[1,2,0,0],[2,2,3,2],[2,2,0,1],[2,2,2,1]],[[1,2,0,0],[2,2,3,2],[3,2,0,1],[1,2,2,1]],[[1,2,0,0],[3,2,3,2],[2,2,0,1],[1,2,2,1]],[[2,2,0,0],[2,2,3,2],[2,2,0,1],[1,2,2,1]],[[1,2,0,0],[2,2,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,0,0],[2,2,3,2],[1,3,3,0],[2,2,1,0]],[[1,2,0,0],[2,2,3,2],[1,4,3,0],[1,2,1,0]],[[1,1,2,1],[1,4,2,2],[2,3,1,0],[0,2,2,0]],[[1,1,2,1],[1,3,2,2],[3,3,1,0],[0,2,2,0]],[[1,1,2,1],[1,3,2,2],[2,4,1,0],[0,2,2,0]],[[1,1,2,1],[1,3,2,2],[2,3,1,0],[0,3,2,0]],[[1,1,2,1],[1,4,2,2],[2,3,1,0],[1,1,2,0]],[[1,1,2,1],[1,3,2,2],[3,3,1,0],[1,1,2,0]],[[1,1,2,1],[1,3,2,2],[2,4,1,0],[1,1,2,0]],[[1,1,2,1],[1,3,2,2],[2,3,1,0],[2,1,2,0]],[[1,2,0,0],[2,2,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,0,0],[2,2,3,2],[1,3,2,1],[2,2,1,0]],[[1,2,0,0],[2,2,3,2],[1,4,2,1],[1,2,1,0]],[[1,2,0,0],[2,2,3,2],[1,3,2,1],[1,3,0,1]],[[1,2,0,0],[2,2,3,2],[1,3,2,1],[2,2,0,1]],[[1,2,0,0],[2,2,3,2],[1,4,2,1],[1,2,0,1]],[[1,2,0,0],[2,2,3,2],[1,3,2,0],[1,3,1,1]],[[1,2,0,0],[2,2,3,2],[1,3,2,0],[2,2,1,1]],[[1,2,0,0],[2,2,3,2],[1,4,2,0],[1,2,1,1]],[[1,2,0,0],[2,2,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,0,0],[2,2,3,2],[1,3,1,2],[2,2,1,0]],[[1,2,0,0],[2,2,3,2],[1,4,1,2],[1,2,1,0]],[[1,2,0,0],[2,2,3,2],[1,3,1,2],[1,3,0,1]],[[1,2,0,0],[2,2,3,2],[1,3,1,2],[2,2,0,1]],[[1,2,0,0],[2,2,3,2],[1,4,1,2],[1,2,0,1]],[[1,2,0,0],[2,2,3,2],[1,3,1,1],[1,2,3,0]],[[1,2,0,0],[2,2,3,2],[1,3,1,1],[1,3,2,0]],[[1,2,0,0],[2,2,3,2],[1,3,1,1],[2,2,2,0]],[[1,2,0,0],[2,2,3,2],[1,4,1,1],[1,2,2,0]],[[1,2,0,0],[2,2,3,2],[1,3,1,0],[1,2,2,2]],[[1,2,0,0],[2,2,3,2],[1,3,1,0],[1,2,3,1]],[[1,2,0,0],[2,2,3,2],[1,3,1,0],[1,3,2,1]],[[1,2,0,0],[2,2,3,2],[1,3,1,0],[2,2,2,1]],[[1,2,0,0],[2,2,3,2],[1,4,1,0],[1,2,2,1]],[[1,2,0,0],[2,2,3,2],[1,3,0,2],[1,2,3,0]],[[1,2,0,0],[2,2,3,2],[1,3,0,2],[1,3,2,0]],[[1,2,0,0],[2,2,3,2],[1,3,0,2],[2,2,2,0]],[[1,2,0,0],[2,2,3,2],[1,4,0,2],[1,2,2,0]],[[1,2,0,0],[2,2,3,2],[1,3,0,2],[1,3,1,1]],[[1,2,0,0],[2,2,3,2],[1,3,0,2],[2,2,1,1]],[[1,2,0,0],[2,2,3,2],[1,4,0,2],[1,2,1,1]],[[1,2,0,0],[2,2,3,2],[1,3,0,1],[1,2,2,2]],[[1,2,0,0],[2,2,3,2],[1,3,0,1],[1,2,3,1]],[[1,2,0,0],[2,2,3,2],[1,3,0,1],[1,3,2,1]],[[1,2,0,0],[2,2,3,2],[1,3,0,1],[2,2,2,1]],[[1,2,0,0],[2,2,3,2],[1,4,0,1],[1,2,2,1]],[[1,1,3,1],[1,3,2,2],[2,3,1,2],[1,0,0,1]],[[1,1,2,2],[1,3,2,2],[2,3,1,2],[1,0,0,1]],[[1,1,2,1],[1,3,2,3],[2,3,1,2],[1,0,0,1]],[[1,1,2,1],[1,3,2,2],[2,3,1,3],[1,0,0,1]],[[1,1,3,1],[1,3,2,2],[2,3,1,2],[1,0,1,0]],[[1,1,2,2],[1,3,2,2],[2,3,1,2],[1,0,1,0]],[[1,1,2,1],[1,3,2,3],[2,3,1,2],[1,0,1,0]],[[1,2,0,0],[2,2,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,0,0],[2,2,3,1],[2,4,3,2],[1,1,0,0]],[[1,2,0,0],[2,2,3,1],[3,3,3,2],[1,1,0,0]],[[1,2,0,0],[3,2,3,1],[2,3,3,2],[1,1,0,0]],[[2,2,0,0],[2,2,3,1],[2,3,3,2],[1,1,0,0]],[[1,2,0,0],[2,2,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,0,0],[2,2,3,1],[3,3,3,2],[0,2,0,0]],[[1,2,0,0],[3,2,3,1],[2,3,3,2],[0,2,0,0]],[[2,2,0,0],[2,2,3,1],[2,3,3,2],[0,2,0,0]],[[1,1,2,1],[1,4,2,2],[2,3,2,0],[0,1,2,0]],[[1,1,2,1],[1,3,2,2],[3,3,2,0],[0,1,2,0]],[[1,1,2,1],[1,3,2,2],[2,4,2,0],[0,1,2,0]],[[1,1,2,1],[1,4,2,2],[2,3,2,0],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[3,3,2,0],[0,2,0,1]],[[1,1,2,1],[1,3,2,2],[2,4,2,0],[0,2,0,1]],[[1,1,2,1],[1,4,2,2],[2,3,2,0],[0,2,1,0]],[[1,1,2,1],[1,3,2,2],[3,3,2,0],[0,2,1,0]],[[1,1,2,1],[1,3,2,2],[2,4,2,0],[0,2,1,0]],[[1,1,2,1],[1,3,2,2],[2,3,2,0],[0,3,1,0]],[[1,1,2,1],[1,4,2,2],[2,3,2,0],[1,0,2,0]],[[1,1,2,1],[1,3,2,2],[3,3,2,0],[1,0,2,0]],[[1,1,2,1],[1,3,2,2],[2,4,2,0],[1,0,2,0]],[[1,1,2,1],[1,3,2,2],[2,3,2,0],[2,0,2,0]],[[1,1,2,1],[1,4,2,2],[2,3,2,0],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[3,3,2,0],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[2,4,2,0],[1,1,0,1]],[[1,1,2,1],[1,3,2,2],[2,3,2,0],[2,1,0,1]],[[1,1,2,1],[1,4,2,2],[2,3,2,0],[1,1,1,0]],[[1,1,2,1],[1,3,2,2],[3,3,2,0],[1,1,1,0]],[[1,1,2,1],[1,3,2,2],[2,4,2,0],[1,1,1,0]],[[1,1,2,1],[1,3,2,2],[2,3,2,0],[2,1,1,0]],[[1,1,2,1],[1,4,2,2],[2,3,2,0],[1,2,0,0]],[[1,1,2,1],[1,3,2,2],[3,3,2,0],[1,2,0,0]],[[1,1,2,1],[1,3,2,2],[2,4,2,0],[1,2,0,0]],[[1,1,2,1],[1,3,2,2],[2,3,2,0],[2,2,0,0]],[[1,2,0,0],[2,2,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,0,0],[2,2,3,1],[2,4,2,2],[1,2,0,0]],[[1,2,0,0],[2,2,3,1],[3,3,2,2],[1,2,0,0]],[[1,2,0,0],[3,2,3,1],[2,3,2,2],[1,2,0,0]],[[2,2,0,0],[2,2,3,1],[2,3,2,2],[1,2,0,0]],[[1,2,0,0],[2,2,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,0,0],[2,2,3,1],[2,4,2,2],[1,1,1,0]],[[1,2,0,0],[2,2,3,1],[3,3,2,2],[1,1,1,0]],[[1,2,0,0],[3,2,3,1],[2,3,2,2],[1,1,1,0]],[[2,2,0,0],[2,2,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,0,0],[2,2,3,1],[2,3,2,2],[2,1,0,1]],[[1,2,0,0],[2,2,3,1],[2,4,2,2],[1,1,0,1]],[[1,2,0,0],[2,2,3,1],[3,3,2,2],[1,1,0,1]],[[1,1,3,1],[1,3,2,2],[2,3,2,1],[1,0,0,1]],[[1,1,2,2],[1,3,2,2],[2,3,2,1],[1,0,0,1]],[[1,1,2,1],[1,3,2,3],[2,3,2,1],[1,0,0,1]],[[1,1,3,1],[1,3,2,2],[2,3,2,1],[1,0,1,0]],[[1,1,2,2],[1,3,2,2],[2,3,2,1],[1,0,1,0]],[[1,1,2,1],[1,3,2,3],[2,3,2,1],[1,0,1,0]],[[1,2,0,0],[3,2,3,1],[2,3,2,2],[1,1,0,1]],[[2,2,0,0],[2,2,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,0,0],[2,2,3,1],[2,3,2,2],[2,0,2,0]],[[1,2,0,0],[2,2,3,1],[2,4,2,2],[1,0,2,0]],[[1,2,0,0],[2,2,3,1],[3,3,2,2],[1,0,2,0]],[[1,2,0,0],[3,2,3,1],[2,3,2,2],[1,0,2,0]],[[2,2,0,0],[2,2,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,0,0],[2,2,3,1],[2,3,2,2],[2,0,1,1]],[[1,2,0,0],[2,2,3,1],[2,4,2,2],[1,0,1,1]],[[1,2,0,0],[2,2,3,1],[3,3,2,2],[1,0,1,1]],[[1,2,0,0],[3,2,3,1],[2,3,2,2],[1,0,1,1]],[[2,2,0,0],[2,2,3,1],[2,3,2,2],[1,0,1,1]],[[1,2,0,0],[2,2,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,0,0],[2,2,3,1],[2,4,2,2],[0,2,1,0]],[[1,2,0,0],[2,2,3,1],[3,3,2,2],[0,2,1,0]],[[1,2,0,0],[3,2,3,1],[2,3,2,2],[0,2,1,0]],[[2,2,0,0],[2,2,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,0,0],[2,2,3,1],[2,3,2,2],[0,3,0,1]],[[1,2,0,0],[2,2,3,1],[2,4,2,2],[0,2,0,1]],[[1,2,0,0],[2,2,3,1],[3,3,2,2],[0,2,0,1]],[[1,2,0,0],[3,2,3,1],[2,3,2,2],[0,2,0,1]],[[2,2,0,0],[2,2,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,0,0],[2,2,3,1],[2,4,2,2],[0,1,2,0]],[[1,2,0,0],[2,2,3,1],[3,3,2,2],[0,1,2,0]],[[1,2,0,0],[3,2,3,1],[2,3,2,2],[0,1,2,0]],[[2,2,0,0],[2,2,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,0,0],[2,2,3,1],[2,4,2,2],[0,1,1,1]],[[1,2,0,0],[2,2,3,1],[3,3,2,2],[0,1,1,1]],[[1,2,0,0],[3,2,3,1],[2,3,2,2],[0,1,1,1]],[[2,2,0,0],[2,2,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,0,0],[2,2,3,1],[2,3,2,1],[2,2,0,1]],[[1,2,0,0],[2,2,3,1],[2,4,2,1],[1,2,0,1]],[[1,2,0,0],[2,2,3,1],[3,3,2,1],[1,2,0,1]],[[1,2,0,0],[3,2,3,1],[2,3,2,1],[1,2,0,1]],[[2,2,0,0],[2,2,3,1],[2,3,2,1],[1,2,0,1]],[[1,2,0,0],[2,2,3,1],[2,3,2,1],[2,1,1,1]],[[1,2,0,0],[2,2,3,1],[2,4,2,1],[1,1,1,1]],[[1,2,0,0],[2,2,3,1],[3,3,2,1],[1,1,1,1]],[[1,2,0,0],[3,2,3,1],[2,3,2,1],[1,1,1,1]],[[2,2,0,0],[2,2,3,1],[2,3,2,1],[1,1,1,1]],[[1,2,0,0],[2,2,3,1],[2,3,2,1],[2,0,2,1]],[[1,2,0,0],[2,2,3,1],[2,4,2,1],[1,0,2,1]],[[1,2,0,0],[2,2,3,1],[3,3,2,1],[1,0,2,1]],[[1,2,0,0],[3,2,3,1],[2,3,2,1],[1,0,2,1]],[[2,2,0,0],[2,2,3,1],[2,3,2,1],[1,0,2,1]],[[1,2,0,0],[2,2,3,1],[2,3,2,1],[0,3,1,1]],[[1,2,0,0],[2,2,3,1],[2,4,2,1],[0,2,1,1]],[[1,2,0,0],[2,2,3,1],[3,3,2,1],[0,2,1,1]],[[1,2,0,0],[3,2,3,1],[2,3,2,1],[0,2,1,1]],[[2,2,0,0],[2,2,3,1],[2,3,2,1],[0,2,1,1]],[[1,2,0,0],[2,2,3,1],[2,4,2,1],[0,1,2,1]],[[1,2,0,0],[2,2,3,1],[3,3,2,1],[0,1,2,1]],[[1,2,0,0],[3,2,3,1],[2,3,2,1],[0,1,2,1]],[[2,2,0,0],[2,2,3,1],[2,3,2,1],[0,1,2,1]],[[1,2,0,0],[2,2,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,0,0],[2,2,3,1],[2,4,1,2],[1,1,2,0]],[[1,2,0,0],[2,2,3,1],[3,3,1,2],[1,1,2,0]],[[1,2,0,0],[3,2,3,1],[2,3,1,2],[1,1,2,0]],[[2,2,0,0],[2,2,3,1],[2,3,1,2],[1,1,2,0]],[[1,2,0,0],[2,2,3,1],[2,3,1,2],[0,2,3,0]],[[1,2,0,0],[2,2,3,1],[2,3,1,2],[0,3,2,0]],[[1,2,0,0],[2,2,3,1],[2,4,1,2],[0,2,2,0]],[[1,2,0,0],[2,2,3,1],[3,3,1,2],[0,2,2,0]],[[1,2,0,0],[3,2,3,1],[2,3,1,2],[0,2,2,0]],[[2,2,0,0],[2,2,3,1],[2,3,1,2],[0,2,2,0]],[[1,2,0,0],[2,2,3,1],[2,3,1,1],[2,1,2,1]],[[1,2,0,0],[2,2,3,1],[2,4,1,1],[1,1,2,1]],[[1,2,0,0],[2,2,3,1],[3,3,1,1],[1,1,2,1]],[[1,2,0,0],[3,2,3,1],[2,3,1,1],[1,1,2,1]],[[2,2,0,0],[2,2,3,1],[2,3,1,1],[1,1,2,1]],[[1,2,0,0],[2,2,3,1],[2,3,1,1],[0,2,2,2]],[[1,2,0,0],[2,2,3,1],[2,3,1,1],[0,2,3,1]],[[1,2,0,0],[2,2,3,1],[2,3,1,1],[0,3,2,1]],[[1,2,0,0],[2,2,3,1],[2,4,1,1],[0,2,2,1]],[[1,2,0,0],[2,2,3,1],[3,3,1,1],[0,2,2,1]],[[1,2,0,0],[3,2,3,1],[2,3,1,1],[0,2,2,1]],[[2,2,0,0],[2,2,3,1],[2,3,1,1],[0,2,2,1]],[[1,2,0,0],[2,2,3,1],[2,3,0,2],[1,3,2,0]],[[1,2,0,0],[2,2,3,1],[2,3,0,2],[2,2,2,0]],[[1,2,0,0],[2,2,3,1],[3,3,0,2],[1,2,2,0]],[[1,2,0,0],[3,2,3,1],[2,3,0,2],[1,2,2,0]],[[2,2,0,0],[2,2,3,1],[2,3,0,2],[1,2,2,0]],[[1,2,0,0],[2,2,3,1],[2,3,0,2],[2,1,2,1]],[[1,2,0,0],[2,2,3,1],[2,4,0,2],[1,1,2,1]],[[1,2,0,0],[2,2,3,1],[3,3,0,2],[1,1,2,1]],[[1,2,0,0],[3,2,3,1],[2,3,0,2],[1,1,2,1]],[[2,2,0,0],[2,2,3,1],[2,3,0,2],[1,1,2,1]],[[1,2,0,0],[2,2,3,1],[2,3,0,2],[0,2,2,2]],[[1,2,0,0],[2,2,3,1],[2,3,0,2],[0,2,3,1]],[[1,2,0,0],[2,2,3,1],[2,3,0,2],[0,3,2,1]],[[1,2,0,0],[2,2,3,1],[2,3,0,3],[0,2,2,1]],[[1,2,0,0],[2,2,3,1],[2,4,0,2],[0,2,2,1]],[[1,2,0,0],[2,2,3,1],[3,3,0,2],[0,2,2,1]],[[1,2,0,0],[3,2,3,1],[2,3,0,2],[0,2,2,1]],[[2,2,0,0],[2,2,3,1],[2,3,0,2],[0,2,2,1]],[[1,2,0,0],[2,2,3,1],[2,3,0,1],[1,3,2,1]],[[1,2,0,0],[2,2,3,1],[2,3,0,1],[2,2,2,1]],[[1,2,0,0],[2,2,3,1],[3,3,0,1],[1,2,2,1]],[[1,2,0,0],[3,2,3,1],[2,3,0,1],[1,2,2,1]],[[2,2,0,0],[2,2,3,1],[2,3,0,1],[1,2,2,1]],[[1,2,0,0],[2,2,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,0,0],[2,2,3,1],[2,2,2,2],[2,2,1,0]],[[1,2,0,0],[2,2,3,1],[3,2,2,2],[1,2,1,0]],[[1,2,0,0],[3,2,3,1],[2,2,2,2],[1,2,1,0]],[[2,2,0,0],[2,2,3,1],[2,2,2,2],[1,2,1,0]],[[1,2,0,0],[2,2,3,1],[2,2,2,2],[1,3,0,1]],[[1,2,0,0],[2,2,3,1],[2,2,2,2],[2,2,0,1]],[[1,2,0,0],[2,2,3,1],[3,2,2,2],[1,2,0,1]],[[1,2,0,0],[3,2,3,1],[2,2,2,2],[1,2,0,1]],[[2,2,0,0],[2,2,3,1],[2,2,2,2],[1,2,0,1]],[[1,2,0,0],[2,2,3,1],[2,2,2,1],[1,3,1,1]],[[1,2,0,0],[2,2,3,1],[2,2,2,1],[2,2,1,1]],[[1,2,0,0],[2,2,3,1],[3,2,2,1],[1,2,1,1]],[[1,2,0,0],[3,2,3,1],[2,2,2,1],[1,2,1,1]],[[2,2,0,0],[2,2,3,1],[2,2,2,1],[1,2,1,1]],[[1,2,0,0],[2,2,3,1],[2,2,1,2],[1,2,3,0]],[[1,2,0,0],[2,2,3,1],[2,2,1,2],[1,3,2,0]],[[1,2,0,0],[2,2,3,1],[2,2,1,2],[2,2,2,0]],[[1,2,0,0],[2,2,3,1],[3,2,1,2],[1,2,2,0]],[[1,2,0,0],[3,2,3,1],[2,2,1,2],[1,2,2,0]],[[2,2,0,0],[2,2,3,1],[2,2,1,2],[1,2,2,0]],[[1,2,0,0],[2,2,3,1],[2,2,1,1],[1,2,2,2]],[[1,2,0,0],[2,2,3,1],[2,2,1,1],[1,2,3,1]],[[1,2,0,0],[2,2,3,1],[2,2,1,1],[1,3,2,1]],[[1,2,0,0],[2,2,3,1],[2,2,1,1],[2,2,2,1]],[[1,2,0,0],[2,2,3,1],[3,2,1,1],[1,2,2,1]],[[1,2,0,0],[3,2,3,1],[2,2,1,1],[1,2,2,1]],[[2,2,0,0],[2,2,3,1],[2,2,1,1],[1,2,2,1]],[[1,2,0,0],[2,2,3,1],[2,2,0,2],[1,2,2,2]],[[1,2,0,0],[2,2,3,1],[2,2,0,2],[1,2,3,1]],[[1,2,0,0],[2,2,3,1],[2,2,0,2],[1,3,2,1]],[[1,2,0,0],[2,2,3,1],[2,2,0,2],[2,2,2,1]],[[1,2,0,0],[2,2,3,1],[2,2,0,3],[1,2,2,1]],[[1,2,0,0],[2,2,3,1],[3,2,0,2],[1,2,2,1]],[[1,1,2,1],[1,4,2,2],[2,3,3,0],[0,2,0,0]],[[1,1,2,1],[1,3,2,2],[3,3,3,0],[0,2,0,0]],[[1,1,2,1],[1,3,2,2],[2,4,3,0],[0,2,0,0]],[[1,2,0,0],[3,2,3,1],[2,2,0,2],[1,2,2,1]],[[2,2,0,0],[2,2,3,1],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[1,4,2,2],[2,3,3,0],[1,1,0,0]],[[1,1,2,1],[1,3,2,2],[3,3,3,0],[1,1,0,0]],[[1,1,2,1],[1,3,2,2],[2,4,3,0],[1,1,0,0]],[[1,1,2,1],[1,3,2,2],[2,3,3,0],[2,1,0,0]],[[1,2,0,0],[2,2,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,0,0],[2,2,3,1],[1,3,2,2],[2,2,1,0]],[[1,2,0,0],[2,2,3,1],[1,4,2,2],[1,2,1,0]],[[1,2,0,0],[2,2,3,1],[1,3,2,2],[1,3,0,1]],[[1,2,0,0],[2,2,3,1],[1,3,2,2],[2,2,0,1]],[[1,2,0,0],[2,2,3,1],[1,4,2,2],[1,2,0,1]],[[1,2,0,0],[2,2,3,1],[1,3,2,1],[1,3,1,1]],[[1,2,0,0],[2,2,3,1],[1,3,2,1],[2,2,1,1]],[[1,2,0,0],[2,2,3,1],[1,4,2,1],[1,2,1,1]],[[1,2,0,0],[2,2,3,1],[1,3,1,2],[1,2,3,0]],[[1,2,0,0],[2,2,3,1],[1,3,1,2],[1,3,2,0]],[[1,2,0,0],[2,2,3,1],[1,3,1,2],[2,2,2,0]],[[1,2,0,0],[2,2,3,1],[1,4,1,2],[1,2,2,0]],[[1,2,0,0],[2,2,3,1],[1,3,1,1],[1,2,2,2]],[[1,2,0,0],[2,2,3,1],[1,3,1,1],[1,2,3,1]],[[1,2,0,0],[2,2,3,1],[1,3,1,1],[1,3,2,1]],[[1,2,0,0],[2,2,3,1],[1,3,1,1],[2,2,2,1]],[[1,2,0,0],[2,2,3,1],[1,4,1,1],[1,2,2,1]],[[1,2,0,0],[2,2,3,1],[1,3,0,2],[1,2,2,2]],[[1,2,0,0],[2,2,3,1],[1,3,0,2],[1,2,3,1]],[[1,2,0,0],[2,2,3,1],[1,3,0,2],[1,3,2,1]],[[1,2,0,0],[2,2,3,1],[1,3,0,2],[2,2,2,1]],[[1,2,0,0],[2,2,3,1],[1,3,0,3],[1,2,2,1]],[[1,2,0,0],[2,2,3,1],[1,4,0,2],[1,2,2,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,0,0],[2,2,3,0],[2,4,3,2],[1,2,0,0]],[[1,2,0,0],[2,2,3,0],[3,3,3,2],[1,2,0,0]],[[1,2,0,0],[3,2,3,0],[2,3,3,2],[1,2,0,0]],[[2,2,0,0],[2,2,3,0],[2,3,3,2],[1,2,0,0]],[[1,2,0,0],[2,2,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,0,0],[2,2,3,0],[2,3,4,2],[1,1,1,0]],[[1,2,0,0],[2,2,3,0],[2,4,3,2],[1,1,1,0]],[[1,1,3,1],[1,3,2,2],[2,3,3,1],[1,0,0,0]],[[1,1,2,2],[1,3,2,2],[2,3,3,1],[1,0,0,0]],[[1,1,2,1],[1,3,2,3],[2,3,3,1],[1,0,0,0]],[[1,2,0,0],[2,2,3,0],[3,3,3,2],[1,1,1,0]],[[1,2,0,0],[3,2,3,0],[2,3,3,2],[1,1,1,0]],[[2,2,0,0],[2,2,3,0],[2,3,3,2],[1,1,1,0]],[[1,2,0,0],[2,2,3,0],[2,3,3,2],[2,1,0,1]],[[1,2,0,0],[2,2,3,0],[2,3,4,2],[1,1,0,1]],[[1,2,0,0],[2,2,3,0],[2,4,3,2],[1,1,0,1]],[[1,2,0,0],[2,2,3,0],[3,3,3,2],[1,1,0,1]],[[1,2,0,0],[3,2,3,0],[2,3,3,2],[1,1,0,1]],[[2,2,0,0],[2,2,3,0],[2,3,3,2],[1,1,0,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,2],[1,0,3,0]],[[1,2,0,0],[2,2,3,0],[2,3,3,2],[2,0,2,0]],[[1,2,0,0],[2,2,3,0],[2,3,4,2],[1,0,2,0]],[[1,2,0,0],[2,2,3,0],[2,4,3,2],[1,0,2,0]],[[1,2,0,0],[2,2,3,0],[3,3,3,2],[1,0,2,0]],[[1,2,0,0],[3,2,3,0],[2,3,3,2],[1,0,2,0]],[[2,2,0,0],[2,2,3,0],[2,3,3,2],[1,0,2,0]],[[1,2,0,0],[2,2,3,0],[2,3,3,2],[2,0,1,1]],[[1,2,0,0],[2,2,3,0],[2,3,4,2],[1,0,1,1]],[[1,2,0,0],[2,2,3,0],[2,4,3,2],[1,0,1,1]],[[1,2,0,0],[2,2,3,0],[3,3,3,2],[1,0,1,1]],[[1,2,0,0],[3,2,3,0],[2,3,3,2],[1,0,1,1]],[[2,2,0,0],[2,2,3,0],[2,3,3,2],[1,0,1,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,0,0],[2,2,3,0],[2,3,4,2],[0,2,1,0]],[[1,2,0,0],[2,2,3,0],[2,4,3,2],[0,2,1,0]],[[1,2,0,0],[2,2,3,0],[3,3,3,2],[0,2,1,0]],[[1,2,0,0],[3,2,3,0],[2,3,3,2],[0,2,1,0]],[[2,2,0,0],[2,2,3,0],[2,3,3,2],[0,2,1,0]],[[1,2,0,0],[2,2,3,0],[2,3,3,2],[0,3,0,1]],[[1,2,0,0],[2,2,3,0],[2,3,4,2],[0,2,0,1]],[[1,2,0,0],[2,2,3,0],[2,4,3,2],[0,2,0,1]],[[1,2,0,0],[2,2,3,0],[3,3,3,2],[0,2,0,1]],[[1,2,0,0],[3,2,3,0],[2,3,3,2],[0,2,0,1]],[[2,2,0,0],[2,2,3,0],[2,3,3,2],[0,2,0,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,2],[0,1,3,0]],[[1,2,0,0],[2,2,3,0],[2,3,4,2],[0,1,2,0]],[[1,2,0,0],[2,2,3,0],[2,4,3,2],[0,1,2,0]],[[1,2,0,0],[2,2,3,0],[3,3,3,2],[0,1,2,0]],[[1,2,0,0],[3,2,3,0],[2,3,3,2],[0,1,2,0]],[[2,2,0,0],[2,2,3,0],[2,3,3,2],[0,1,2,0]],[[1,2,0,0],[2,2,3,0],[2,3,4,2],[0,1,1,1]],[[1,2,0,0],[2,2,3,0],[2,4,3,2],[0,1,1,1]],[[1,2,0,0],[2,2,3,0],[3,3,3,2],[0,1,1,1]],[[1,2,0,0],[3,2,3,0],[2,3,3,2],[0,1,1,1]],[[2,2,0,0],[2,2,3,0],[2,3,3,2],[0,1,1,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,0,0],[2,2,3,0],[2,4,3,1],[1,2,0,1]],[[1,2,0,0],[2,2,3,0],[3,3,3,1],[1,2,0,1]],[[1,2,0,0],[3,2,3,0],[2,3,3,1],[1,2,0,1]],[[2,2,0,0],[2,2,3,0],[2,3,3,1],[1,2,0,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,1],[2,1,1,1]],[[1,2,0,0],[2,2,3,0],[2,3,4,1],[1,1,1,1]],[[1,2,0,0],[2,2,3,0],[2,4,3,1],[1,1,1,1]],[[1,2,0,0],[2,2,3,0],[3,3,3,1],[1,1,1,1]],[[1,2,0,0],[3,2,3,0],[2,3,3,1],[1,1,1,1]],[[2,2,0,0],[2,2,3,0],[2,3,3,1],[1,1,1,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,1],[1,0,2,2]],[[1,2,0,0],[2,2,3,0],[2,3,3,1],[1,0,3,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,1],[2,0,2,1]],[[1,2,0,0],[2,2,3,0],[2,3,4,1],[1,0,2,1]],[[1,2,0,0],[2,2,3,0],[2,4,3,1],[1,0,2,1]],[[1,2,0,0],[2,2,3,0],[3,3,3,1],[1,0,2,1]],[[1,2,0,0],[3,2,3,0],[2,3,3,1],[1,0,2,1]],[[2,2,0,0],[2,2,3,0],[2,3,3,1],[1,0,2,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,1],[0,3,1,1]],[[1,2,0,0],[2,2,3,0],[2,3,4,1],[0,2,1,1]],[[1,2,0,0],[2,2,3,0],[2,4,3,1],[0,2,1,1]],[[1,2,0,0],[2,2,3,0],[3,3,3,1],[0,2,1,1]],[[1,2,0,0],[3,2,3,0],[2,3,3,1],[0,2,1,1]],[[2,2,0,0],[2,2,3,0],[2,3,3,1],[0,2,1,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,1],[0,1,2,2]],[[1,2,0,0],[2,2,3,0],[2,3,3,1],[0,1,3,1]],[[1,2,0,0],[2,2,3,0],[2,3,4,1],[0,1,2,1]],[[1,2,0,0],[2,2,3,0],[2,4,3,1],[0,1,2,1]],[[1,2,0,0],[2,2,3,0],[3,3,3,1],[0,1,2,1]],[[1,2,0,0],[3,2,3,0],[2,3,3,1],[0,1,2,1]],[[2,2,0,0],[2,2,3,0],[2,3,3,1],[0,1,2,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,0],[2,1,2,1]],[[1,2,0,0],[2,2,3,0],[2,4,3,0],[1,1,2,1]],[[1,2,0,0],[2,2,3,0],[3,3,3,0],[1,1,2,1]],[[1,2,0,0],[3,2,3,0],[2,3,3,0],[1,1,2,1]],[[2,2,0,0],[2,2,3,0],[2,3,3,0],[1,1,2,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,0],[0,2,3,1]],[[1,2,0,0],[2,2,3,0],[2,3,3,0],[0,3,2,1]],[[1,2,0,0],[2,2,3,0],[2,4,3,0],[0,2,2,1]],[[1,2,0,0],[2,2,3,0],[3,3,3,0],[0,2,2,1]],[[1,2,0,0],[3,2,3,0],[2,3,3,0],[0,2,2,1]],[[2,2,0,0],[2,2,3,0],[2,3,3,0],[0,2,2,1]],[[1,2,0,0],[2,2,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,0,0],[2,2,3,0],[2,4,2,2],[1,1,2,0]],[[1,2,0,0],[2,2,3,0],[3,3,2,2],[1,1,2,0]],[[1,2,0,0],[3,2,3,0],[2,3,2,2],[1,1,2,0]],[[2,2,0,0],[2,2,3,0],[2,3,2,2],[1,1,2,0]],[[1,2,0,0],[2,2,3,0],[2,3,2,2],[0,2,3,0]],[[1,2,0,0],[2,2,3,0],[2,3,2,2],[0,3,2,0]],[[1,2,0,0],[2,2,3,0],[2,4,2,2],[0,2,2,0]],[[1,2,0,0],[2,2,3,0],[3,3,2,2],[0,2,2,0]],[[1,2,0,0],[3,2,3,0],[2,3,2,2],[0,2,2,0]],[[2,2,0,0],[2,2,3,0],[2,3,2,2],[0,2,2,0]],[[1,2,0,0],[2,2,3,0],[2,3,2,1],[2,1,2,1]],[[1,2,0,0],[2,2,3,0],[2,4,2,1],[1,1,2,1]],[[1,2,0,0],[2,2,3,0],[3,3,2,1],[1,1,2,1]],[[1,2,0,0],[3,2,3,0],[2,3,2,1],[1,1,2,1]],[[2,2,0,0],[2,2,3,0],[2,3,2,1],[1,1,2,1]],[[1,2,0,0],[2,2,3,0],[2,3,2,1],[0,2,2,2]],[[1,2,0,0],[2,2,3,0],[2,3,2,1],[0,2,3,1]],[[1,2,0,0],[2,2,3,0],[2,3,2,1],[0,3,2,1]],[[1,2,0,0],[2,2,3,0],[2,4,2,1],[0,2,2,1]],[[1,2,0,0],[2,2,3,0],[3,3,2,1],[0,2,2,1]],[[1,2,0,0],[3,2,3,0],[2,3,2,1],[0,2,2,1]],[[2,2,0,0],[2,2,3,0],[2,3,2,1],[0,2,2,1]],[[1,2,0,0],[2,2,3,0],[2,3,2,0],[1,3,2,1]],[[1,2,0,0],[2,2,3,0],[2,3,2,0],[2,2,2,1]],[[1,2,0,0],[2,2,3,0],[3,3,2,0],[1,2,2,1]],[[1,2,0,0],[3,2,3,0],[2,3,2,0],[1,2,2,1]],[[2,2,0,0],[2,2,3,0],[2,3,2,0],[1,2,2,1]],[[1,2,0,0],[2,2,3,0],[2,3,1,2],[1,3,2,0]],[[1,2,0,0],[2,2,3,0],[2,3,1,2],[2,2,2,0]],[[1,2,0,0],[2,2,3,0],[3,3,1,2],[1,2,2,0]],[[1,2,0,0],[3,2,3,0],[2,3,1,2],[1,2,2,0]],[[2,2,0,0],[2,2,3,0],[2,3,1,2],[1,2,2,0]],[[1,2,0,0],[2,2,3,0],[2,3,1,1],[1,3,2,1]],[[1,2,0,0],[2,2,3,0],[2,3,1,1],[2,2,2,1]],[[1,2,0,0],[2,2,3,0],[3,3,1,1],[1,2,2,1]],[[1,2,0,0],[3,2,3,0],[2,3,1,1],[1,2,2,1]],[[2,2,0,0],[2,2,3,0],[2,3,1,1],[1,2,2,1]],[[1,2,0,0],[2,2,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,0,0],[2,2,3,0],[2,2,3,2],[2,2,1,0]],[[1,2,0,0],[2,2,3,0],[3,2,3,2],[1,2,1,0]],[[1,2,0,0],[3,2,3,0],[2,2,3,2],[1,2,1,0]],[[2,2,0,0],[2,2,3,0],[2,2,3,2],[1,2,1,0]],[[1,2,0,0],[2,2,3,0],[2,2,3,2],[1,3,0,1]],[[1,2,0,0],[2,2,3,0],[2,2,3,2],[2,2,0,1]],[[1,2,0,0],[2,2,3,0],[3,2,3,2],[1,2,0,1]],[[1,2,0,0],[3,2,3,0],[2,2,3,2],[1,2,0,1]],[[2,2,0,0],[2,2,3,0],[2,2,3,2],[1,2,0,1]],[[1,2,0,0],[2,2,3,0],[2,2,3,2],[0,2,3,0]],[[1,2,0,0],[2,2,3,0],[2,2,3,2],[0,3,2,0]],[[1,2,0,0],[2,2,3,0],[2,2,4,2],[0,2,2,0]],[[1,2,0,0],[2,2,3,0],[2,2,3,1],[1,3,1,1]],[[1,2,0,0],[2,2,3,0],[2,2,3,1],[2,2,1,1]],[[1,2,0,0],[2,2,3,0],[3,2,3,1],[1,2,1,1]],[[1,2,0,0],[3,2,3,0],[2,2,3,1],[1,2,1,1]],[[2,2,0,0],[2,2,3,0],[2,2,3,1],[1,2,1,1]],[[1,2,0,0],[2,2,3,0],[2,2,3,1],[0,2,2,2]],[[1,2,0,0],[2,2,3,0],[2,2,3,1],[0,2,3,1]],[[1,2,0,0],[2,2,3,0],[2,2,3,1],[0,3,2,1]],[[1,2,0,0],[2,2,3,0],[2,2,4,1],[0,2,2,1]],[[1,2,0,0],[2,2,3,0],[2,2,3,0],[1,2,3,1]],[[1,2,0,0],[2,2,3,0],[2,2,3,0],[1,3,2,1]],[[1,2,0,0],[2,2,3,0],[2,2,3,0],[2,2,2,1]],[[1,2,0,0],[2,2,3,0],[3,2,3,0],[1,2,2,1]],[[1,2,0,0],[3,2,3,0],[2,2,3,0],[1,2,2,1]],[[2,2,0,0],[2,2,3,0],[2,2,3,0],[1,2,2,1]],[[1,2,0,0],[2,2,3,0],[2,2,2,2],[1,2,3,0]],[[1,2,0,0],[2,2,3,0],[2,2,2,2],[1,3,2,0]],[[1,2,0,0],[2,2,3,0],[2,2,2,2],[2,2,2,0]],[[1,2,0,0],[2,2,3,0],[3,2,2,2],[1,2,2,0]],[[1,2,0,0],[3,2,3,0],[2,2,2,2],[1,2,2,0]],[[2,2,0,0],[2,2,3,0],[2,2,2,2],[1,2,2,0]],[[1,2,0,0],[2,2,3,0],[2,2,2,1],[1,2,2,2]],[[1,2,0,0],[2,2,3,0],[2,2,2,1],[1,2,3,1]],[[1,2,0,0],[2,2,3,0],[2,2,2,1],[1,3,2,1]],[[1,2,0,0],[2,2,3,0],[2,2,2,1],[2,2,2,1]],[[1,2,0,0],[2,2,3,0],[3,2,2,1],[1,2,2,1]],[[1,2,0,0],[3,2,3,0],[2,2,2,1],[1,2,2,1]],[[2,2,0,0],[2,2,3,0],[2,2,2,1],[1,2,2,1]],[[1,2,0,0],[2,2,3,0],[2,1,3,2],[1,2,3,0]],[[1,2,0,0],[2,2,3,0],[2,1,3,2],[1,3,2,0]],[[1,2,0,0],[2,2,3,0],[2,1,3,2],[2,2,2,0]],[[1,2,0,0],[2,2,3,0],[2,1,4,2],[1,2,2,0]],[[1,2,0,0],[2,2,3,0],[3,1,3,2],[1,2,2,0]],[[1,2,0,0],[3,2,3,0],[2,1,3,2],[1,2,2,0]],[[2,2,0,0],[2,2,3,0],[2,1,3,2],[1,2,2,0]],[[1,2,0,0],[2,2,3,0],[2,1,3,1],[1,2,2,2]],[[1,2,0,0],[2,2,3,0],[2,1,3,1],[1,2,3,1]],[[1,2,0,0],[2,2,3,0],[2,1,3,1],[1,3,2,1]],[[1,2,0,0],[2,2,3,0],[2,1,3,1],[2,2,2,1]],[[1,2,0,0],[2,2,3,0],[2,1,4,1],[1,2,2,1]],[[1,2,0,0],[2,2,3,0],[3,1,3,1],[1,2,2,1]],[[1,2,0,0],[3,2,3,0],[2,1,3,1],[1,2,2,1]],[[2,2,0,0],[2,2,3,0],[2,1,3,1],[1,2,2,1]],[[1,2,0,0],[2,2,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,2,3,0],[1,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,2,3,0],[1,3,4,2],[1,2,1,0]],[[1,2,0,0],[2,2,3,0],[1,4,3,2],[1,2,1,0]],[[1,2,0,0],[2,2,3,0],[1,3,3,2],[1,3,0,1]],[[1,2,0,0],[2,2,3,0],[1,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,2,3,0],[1,3,4,2],[1,2,0,1]],[[1,2,0,0],[2,2,3,0],[1,4,3,2],[1,2,0,1]],[[1,2,0,0],[2,2,3,0],[1,3,3,2],[1,1,3,0]],[[1,2,0,0],[2,2,3,0],[1,3,4,2],[1,1,2,0]],[[1,2,0,0],[2,2,3,0],[1,4,3,2],[1,1,2,0]],[[1,2,0,0],[2,2,3,0],[1,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,2,3,0],[1,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,2,3,0],[1,3,4,1],[1,2,1,1]],[[1,2,0,0],[2,2,3,0],[1,4,3,1],[1,2,1,1]],[[1,2,0,0],[2,2,3,0],[1,3,3,1],[1,1,2,2]],[[1,2,0,0],[2,2,3,0],[1,3,3,1],[1,1,3,1]],[[1,2,0,0],[2,2,3,0],[1,3,4,1],[1,1,2,1]],[[1,2,0,0],[2,2,3,0],[1,4,3,1],[1,1,2,1]],[[1,2,0,0],[2,2,3,0],[1,3,3,0],[1,2,3,1]],[[1,2,0,0],[2,2,3,0],[1,3,3,0],[1,3,2,1]],[[1,2,0,0],[2,2,3,0],[1,3,3,0],[2,2,2,1]],[[1,2,0,0],[2,2,3,0],[1,4,3,0],[1,2,2,1]],[[1,2,0,0],[2,2,3,0],[1,3,2,2],[1,2,3,0]],[[1,2,0,0],[2,2,3,0],[1,3,2,2],[1,3,2,0]],[[1,2,0,0],[2,2,3,0],[1,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,2,3,0],[1,4,2,2],[1,2,2,0]],[[1,2,0,0],[2,2,3,0],[1,3,2,1],[1,2,2,2]],[[1,2,0,0],[2,2,3,0],[1,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,2,3,0],[1,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,2,3,0],[1,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,2,3,0],[1,4,2,1],[1,2,2,1]],[[1,2,0,0],[2,2,3,0],[1,2,3,2],[1,2,3,0]],[[1,2,0,0],[2,2,3,0],[1,2,3,2],[1,3,2,0]],[[1,2,0,0],[2,2,3,0],[1,2,3,2],[2,2,2,0]],[[1,2,0,0],[2,2,3,0],[1,2,4,2],[1,2,2,0]],[[1,2,0,0],[2,2,3,0],[1,2,3,1],[1,2,2,2]],[[1,2,0,0],[2,2,3,0],[1,2,3,1],[1,2,3,1]],[[1,2,0,0],[2,2,3,0],[1,2,3,1],[1,3,2,1]],[[1,2,0,0],[2,2,3,0],[1,2,3,1],[2,2,2,1]],[[1,2,0,0],[2,2,3,0],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,0,3,3],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,0,3,2],[1,2,3,1]],[[1,1,2,1],[1,3,3,0],[0,0,3,2],[1,2,2,2]],[[1,1,2,1],[1,3,3,0],[0,1,2,3],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,1,2,2],[2,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,1,2,2],[1,3,2,1]],[[1,1,2,1],[1,3,3,0],[0,1,2,2],[1,2,3,1]],[[1,1,2,1],[1,3,3,0],[0,1,2,2],[1,2,2,2]],[[1,1,3,1],[1,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,1,2,2],[1,3,3,0],[0,1,3,1],[1,2,2,1]],[[1,1,2,1],[1,4,3,0],[0,1,3,1],[1,2,2,1]],[[1,1,2,1],[1,3,4,0],[0,1,3,1],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,1,4,1],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,1,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,1,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,3,0],[0,1,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,3,0],[0,1,3,1],[1,2,2,2]],[[1,1,3,1],[1,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,1,2,2],[1,3,3,0],[0,1,3,2],[1,2,1,1]],[[1,1,2,1],[1,4,3,0],[0,1,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,4,0],[0,1,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[0,1,4,2],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[0,1,3,3],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[0,1,3,2],[1,2,1,2]],[[1,1,3,1],[1,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,0],[0,1,3,2],[1,2,2,0]],[[1,1,2,1],[1,4,3,0],[0,1,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,4,0],[0,1,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[0,1,4,2],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[0,1,3,3],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[0,1,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,3,0],[0,1,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,3,0],[0,1,3,2],[1,2,3,0]],[[1,1,2,1],[1,3,3,0],[0,2,2,3],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[0,2,2,2],[1,1,3,1]],[[1,1,2,1],[1,3,3,0],[0,2,2,2],[1,1,2,2]],[[1,1,3,1],[1,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,1,2,2],[1,3,3,0],[0,2,3,1],[1,1,2,1]],[[1,1,2,1],[1,4,3,0],[0,2,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,4,0],[0,2,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[0,2,4,1],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[0,2,3,1],[1,1,3,1]],[[1,1,2,1],[1,3,3,0],[0,2,3,1],[1,1,2,2]],[[1,1,3,1],[1,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,1,2,2],[1,3,3,0],[0,2,3,1],[1,2,1,1]],[[1,1,2,1],[1,4,3,0],[0,2,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,4,0],[0,2,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[0,2,4,1],[1,2,1,1]],[[1,1,3,1],[1,3,3,0],[0,2,3,2],[1,0,2,1]],[[1,1,2,2],[1,3,3,0],[0,2,3,2],[1,0,2,1]],[[1,1,2,1],[1,4,3,0],[0,2,3,2],[1,0,2,1]],[[1,1,2,1],[1,3,4,0],[0,2,3,2],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[0,2,4,2],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[0,2,3,3],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[0,2,3,2],[1,0,2,2]],[[1,1,3,1],[1,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,0],[0,2,3,2],[1,1,1,1]],[[1,1,2,1],[1,4,3,0],[0,2,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,4,0],[0,2,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[0,2,4,2],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[0,2,3,3],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[0,2,3,2],[1,1,1,2]],[[1,1,3,1],[1,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,0],[0,2,3,2],[1,1,2,0]],[[1,1,2,1],[1,4,3,0],[0,2,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,4,0],[0,2,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,3,0],[0,2,4,2],[1,1,2,0]],[[1,1,2,1],[1,3,3,0],[0,2,3,3],[1,1,2,0]],[[1,1,2,1],[1,3,3,0],[0,2,3,2],[1,1,3,0]],[[1,1,3,1],[1,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,0],[0,2,3,2],[1,2,0,1]],[[1,1,2,1],[1,4,3,0],[0,2,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,4,0],[0,2,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,0],[0,2,4,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,0],[0,2,3,3],[1,2,0,1]],[[1,1,2,1],[1,3,3,0],[0,2,3,2],[1,2,0,2]],[[1,1,3,1],[1,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,0],[0,2,3,2],[1,2,1,0]],[[1,1,2,1],[1,4,3,0],[0,2,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,4,0],[0,2,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[0,2,4,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[0,2,3,3],[1,2,1,0]],[[1,1,3,1],[1,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,1,2,2],[1,3,3,0],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,4,3,0],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,4,0],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,4,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,0,3],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,0,2],[2,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,0,2],[1,3,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,0,2],[1,2,3,1]],[[1,1,2,1],[1,3,3,0],[0,3,0,2],[1,2,2,2]],[[1,1,3,1],[1,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,1,2,2],[1,3,3,0],[0,3,1,1],[1,2,2,1]],[[1,1,2,1],[1,4,3,0],[0,3,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,4,0],[0,3,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,4,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,1,1],[2,2,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,1,1],[1,3,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,1,1],[1,2,3,1]],[[1,1,2,1],[1,3,3,0],[0,3,1,1],[1,2,2,2]],[[1,1,3,1],[1,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,0],[0,3,1,2],[1,2,2,0]],[[1,1,2,1],[1,4,3,0],[0,3,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,4,0],[0,3,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[0,4,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[0,3,1,2],[2,2,2,0]],[[1,1,2,1],[1,3,3,0],[0,3,1,2],[1,3,2,0]],[[1,1,2,1],[1,3,3,0],[0,3,1,2],[1,2,3,0]],[[1,1,3,1],[1,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,1,2,2],[1,3,3,0],[0,3,2,1],[1,1,2,1]],[[1,1,2,1],[1,4,3,0],[0,3,2,1],[1,1,2,1]],[[1,1,2,1],[1,3,4,0],[0,3,2,1],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[0,4,2,1],[1,1,2,1]],[[1,1,3,1],[1,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,1,2,2],[1,3,3,0],[0,3,2,1],[1,2,1,1]],[[1,1,2,1],[1,4,3,0],[0,3,2,1],[1,2,1,1]],[[1,1,2,1],[1,3,4,0],[0,3,2,1],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[0,4,2,1],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[0,3,2,1],[2,2,1,1]],[[1,1,2,1],[1,3,3,0],[0,3,2,1],[1,3,1,1]],[[1,1,2,1],[1,3,3,0],[0,3,2,3],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,2,2],[0,1,3,1]],[[1,1,2,1],[1,3,3,0],[0,3,2,2],[0,1,2,2]],[[1,1,3,1],[1,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,0],[0,3,2,2],[1,1,1,1]],[[1,1,2,1],[1,4,3,0],[0,3,2,2],[1,1,1,1]],[[1,1,2,1],[1,3,4,0],[0,3,2,2],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[0,4,2,2],[1,1,1,1]],[[1,1,3,1],[1,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,0],[0,3,2,2],[1,1,2,0]],[[1,1,2,1],[1,4,3,0],[0,3,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,4,0],[0,3,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,3,0],[0,4,2,2],[1,1,2,0]],[[1,1,3,1],[1,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,0],[0,3,2,2],[1,2,0,1]],[[1,1,2,1],[1,4,3,0],[0,3,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,4,0],[0,3,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,0],[0,4,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,0],[0,3,2,2],[2,2,0,1]],[[1,1,2,1],[1,3,3,0],[0,3,2,2],[1,3,0,1]],[[1,1,3,1],[1,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,0],[0,3,2,2],[1,2,1,0]],[[1,1,2,1],[1,4,3,0],[0,3,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,4,0],[0,3,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[0,4,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[0,3,2,2],[2,2,1,0]],[[1,1,2,1],[1,3,3,0],[0,3,2,2],[1,3,1,0]],[[1,1,3,1],[1,3,3,0],[0,3,3,1],[0,1,2,1]],[[1,1,2,2],[1,3,3,0],[0,3,3,1],[0,1,2,1]],[[1,1,2,1],[1,4,3,0],[0,3,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,4,0],[0,3,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,4,1],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,3,1],[0,1,3,1]],[[1,1,2,1],[1,3,3,0],[0,3,3,1],[0,1,2,2]],[[1,1,3,1],[1,3,3,0],[0,3,3,1],[0,2,1,1]],[[1,1,2,2],[1,3,3,0],[0,3,3,1],[0,2,1,1]],[[1,1,2,1],[1,4,3,0],[0,3,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,4,0],[0,3,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[0,3,4,1],[0,2,1,1]],[[1,1,3,1],[1,3,3,0],[0,3,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,0],[0,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,4,3,0],[0,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,4,0],[0,3,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,4,2],[0,0,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,3,0],[0,3,3,2],[0,0,2,2]],[[1,1,3,1],[1,3,3,0],[0,3,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,0],[0,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,4,3,0],[0,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,0],[0,3,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,0],[0,3,4,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,0],[0,3,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,3,0],[0,3,3,2],[0,1,1,2]],[[1,1,3,1],[1,3,3,0],[0,3,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,0],[0,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,4,3,0],[0,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,0],[0,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[0,3,4,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[0,3,3,3],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[0,3,3,2],[0,1,3,0]],[[1,1,3,1],[1,3,3,0],[0,3,3,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,0],[0,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,0],[0,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,4,0],[0,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[0,3,4,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[0,3,3,3],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[0,3,3,2],[0,2,0,2]],[[1,1,3,1],[1,3,3,0],[0,3,3,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,0],[0,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,4,3,0],[0,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,4,0],[0,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[0,3,4,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[0,3,3,3],[0,2,1,0]],[[1,1,3,1],[1,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,1,2,2],[1,3,3,0],[0,3,3,2],[1,2,0,0]],[[1,1,2,1],[1,4,3,0],[0,3,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,4,0],[0,3,3,2],[1,2,0,0]],[[1,1,2,1],[1,3,3,0],[0,4,3,2],[1,2,0,0]],[[1,2,0,0],[2,2,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,0],[2,2,2,2],[2,4,3,1],[1,2,0,0]],[[1,1,2,1],[1,3,3,0],[1,0,2,3],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,0,2,2],[2,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,0,2,2],[1,3,2,1]],[[1,1,2,1],[1,3,3,0],[1,0,2,2],[1,2,3,1]],[[1,1,2,1],[1,3,3,0],[1,0,2,2],[1,2,2,2]],[[1,1,3,1],[1,3,3,0],[1,0,3,1],[1,2,2,1]],[[1,1,2,2],[1,3,3,0],[1,0,3,1],[1,2,2,1]],[[1,1,2,1],[1,4,3,0],[1,0,3,1],[1,2,2,1]],[[1,1,2,1],[1,3,4,0],[1,0,3,1],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,0,4,1],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,0,3,1],[2,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,0,3,1],[1,3,2,1]],[[1,1,2,1],[1,3,3,0],[1,0,3,1],[1,2,3,1]],[[1,1,2,1],[1,3,3,0],[1,0,3,1],[1,2,2,2]],[[1,1,2,1],[1,3,3,0],[1,0,3,3],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,0,3,2],[0,2,3,1]],[[1,1,2,1],[1,3,3,0],[1,0,3,2],[0,2,2,2]],[[1,1,3,1],[1,3,3,0],[1,0,3,2],[1,2,1,1]],[[1,1,2,2],[1,3,3,0],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[1,4,3,0],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,4,0],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,0,4,2],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,0,3,3],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,0,3,2],[1,2,1,2]],[[1,1,3,1],[1,3,3,0],[1,0,3,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,0],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[1,4,3,0],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,4,0],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,0,4,2],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,0,3,3],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,0,3,2],[2,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,0,3,2],[1,3,2,0]],[[1,1,2,1],[1,3,3,0],[1,0,3,2],[1,2,3,0]],[[1,1,2,1],[1,3,3,0],[1,1,2,3],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,1,2,2],[0,3,2,1]],[[1,1,2,1],[1,3,3,0],[1,1,2,2],[0,2,3,1]],[[1,1,2,1],[1,3,3,0],[1,1,2,2],[0,2,2,2]],[[1,1,3,1],[1,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,1,2,2],[1,3,3,0],[1,1,3,1],[0,2,2,1]],[[1,1,2,1],[1,4,3,0],[1,1,3,1],[0,2,2,1]],[[1,1,2,1],[1,3,4,0],[1,1,3,1],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,1,4,1],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,1,3,1],[0,3,2,1]],[[1,1,2,1],[1,3,3,0],[1,1,3,1],[0,2,3,1]],[[1,1,2,1],[1,3,3,0],[1,1,3,1],[0,2,2,2]],[[1,1,3,1],[1,3,3,0],[1,1,3,2],[0,2,1,1]],[[1,1,2,2],[1,3,3,0],[1,1,3,2],[0,2,1,1]],[[1,1,2,1],[1,4,3,0],[1,1,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,4,0],[1,1,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,1,4,2],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,1,3,3],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,1,3,2],[0,2,1,2]],[[1,1,3,1],[1,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,1,2,2],[1,3,3,0],[1,1,3,2],[0,2,2,0]],[[1,1,2,1],[1,4,3,0],[1,1,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,4,0],[1,1,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,1,4,2],[0,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,1,3,3],[0,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,1,3,2],[0,3,2,0]],[[1,1,2,1],[1,3,3,0],[1,1,3,2],[0,2,3,0]],[[1,2,0,0],[2,2,2,2],[3,3,3,1],[1,2,0,0]],[[1,2,0,0],[3,2,2,2],[2,3,3,1],[1,2,0,0]],[[2,2,0,0],[2,2,2,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[1,3,3,0],[1,2,2,3],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[1,2,2,2],[0,1,3,1]],[[1,1,2,1],[1,3,3,0],[1,2,2,2],[0,1,2,2]],[[1,1,2,1],[1,3,3,0],[1,2,2,3],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[1,2,2,2],[1,0,3,1]],[[1,1,2,1],[1,3,3,0],[1,2,2,2],[1,0,2,2]],[[1,1,3,1],[1,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,1,2,2],[1,3,3,0],[1,2,3,1],[0,1,2,1]],[[1,1,2,1],[1,4,3,0],[1,2,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,4,0],[1,2,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[1,2,4,1],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,1],[0,1,3,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,1],[0,1,2,2]],[[1,1,3,1],[1,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,1,2,2],[1,3,3,0],[1,2,3,1],[0,2,1,1]],[[1,1,2,1],[1,4,3,0],[1,2,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,4,0],[1,2,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,2,4,1],[0,2,1,1]],[[1,1,3,1],[1,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,1,2,2],[1,3,3,0],[1,2,3,1],[1,0,2,1]],[[1,1,2,1],[1,4,3,0],[1,2,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,4,0],[1,2,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[1,2,4,1],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,1],[1,0,3,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,1],[1,0,2,2]],[[1,1,3,1],[1,3,3,0],[1,2,3,1],[1,1,1,1]],[[1,1,2,2],[1,3,3,0],[1,2,3,1],[1,1,1,1]],[[1,1,2,1],[1,4,3,0],[1,2,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,4,0],[1,2,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[1,2,4,1],[1,1,1,1]],[[1,2,0,0],[2,2,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,0],[2,2,2,2],[2,3,4,1],[1,1,1,0]],[[1,2,0,0],[2,2,2,2],[2,4,3,1],[1,1,1,0]],[[1,2,0,0],[2,2,2,2],[3,3,3,1],[1,1,1,0]],[[1,2,0,0],[3,2,2,2],[2,3,3,1],[1,1,1,0]],[[2,2,0,0],[2,2,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,0,0],[2,2,2,2],[2,3,3,1],[2,1,0,1]],[[1,2,0,0],[2,2,2,2],[2,3,4,1],[1,1,0,1]],[[1,1,3,1],[1,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,0],[1,2,3,2],[0,0,2,1]],[[1,1,2,1],[1,4,3,0],[1,2,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,4,0],[1,2,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,3,0],[1,2,4,2],[0,0,2,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,2],[0,0,2,2]],[[1,1,3,1],[1,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,0],[1,2,3,2],[0,1,1,1]],[[1,1,2,1],[1,4,3,0],[1,2,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,0],[1,2,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,0],[1,2,4,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,2],[0,1,1,2]],[[1,1,3,1],[1,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,0],[1,2,3,2],[0,1,2,0]],[[1,1,2,1],[1,4,3,0],[1,2,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,0],[1,2,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[1,2,4,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[1,2,3,3],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[1,2,3,2],[0,1,3,0]],[[1,1,3,1],[1,3,3,0],[1,2,3,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,0],[1,2,3,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,0],[1,2,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,4,0],[1,2,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[1,2,4,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,3],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,2],[0,2,0,2]],[[1,1,3,1],[1,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,0],[1,2,3,2],[0,2,1,0]],[[1,1,2,1],[1,4,3,0],[1,2,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,4,0],[1,2,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[1,2,4,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[1,2,3,3],[0,2,1,0]],[[1,2,0,0],[2,2,2,2],[2,4,3,1],[1,1,0,1]],[[1,2,0,0],[2,2,2,2],[3,3,3,1],[1,1,0,1]],[[1,2,0,0],[3,2,2,2],[2,3,3,1],[1,1,0,1]],[[2,2,0,0],[2,2,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,3,1],[1,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,0],[1,2,3,2],[1,0,1,1]],[[1,1,2,1],[1,4,3,0],[1,2,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,4,0],[1,2,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,3,0],[1,2,4,2],[1,0,1,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,3],[1,0,1,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,2],[1,0,1,2]],[[1,1,3,1],[1,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,0],[1,2,3,2],[1,0,2,0]],[[1,1,2,1],[1,4,3,0],[1,2,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,4,0],[1,2,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[1,2,4,2],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[1,2,3,3],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[1,2,3,2],[1,0,3,0]],[[1,1,3,1],[1,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,0],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[1,4,3,0],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,4,0],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,3,0],[1,2,4,2],[1,1,0,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,3],[1,1,0,1]],[[1,1,2,1],[1,3,3,0],[1,2,3,2],[1,1,0,2]],[[1,1,3,1],[1,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,0],[1,2,3,2],[1,1,1,0]],[[1,1,2,1],[1,4,3,0],[1,2,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,4,0],[1,2,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[1,2,4,2],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[1,2,3,3],[1,1,1,0]],[[1,2,0,0],[2,2,2,2],[2,3,3,1],[1,0,3,0]],[[1,2,0,0],[2,2,2,2],[2,3,3,1],[2,0,2,0]],[[1,2,0,0],[2,2,2,2],[2,3,4,1],[1,0,2,0]],[[1,2,0,0],[2,2,2,2],[2,4,3,1],[1,0,2,0]],[[1,2,0,0],[2,2,2,2],[3,3,3,1],[1,0,2,0]],[[1,2,0,0],[3,2,2,2],[2,3,3,1],[1,0,2,0]],[[2,2,0,0],[2,2,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,0,0],[2,2,2,2],[2,3,3,1],[2,0,1,1]],[[1,2,0,0],[2,2,2,2],[2,3,4,1],[1,0,1,1]],[[1,2,0,0],[2,2,2,2],[2,4,3,1],[1,0,1,1]],[[1,2,0,0],[2,2,2,2],[3,3,3,1],[1,0,1,1]],[[1,2,0,0],[3,2,2,2],[2,3,3,1],[1,0,1,1]],[[2,2,0,0],[2,2,2,2],[2,3,3,1],[1,0,1,1]],[[1,2,0,0],[2,2,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,0],[2,2,2,2],[2,3,4,1],[0,2,1,0]],[[1,2,0,0],[2,2,2,2],[2,4,3,1],[0,2,1,0]],[[1,2,0,0],[2,2,2,2],[3,3,3,1],[0,2,1,0]],[[1,2,0,0],[3,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,3,1],[1,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,1,2,2],[1,3,3,0],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,4,3,0],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,4,0],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,4,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,3,0,3],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,3,0,2],[0,3,2,1]],[[1,1,2,1],[1,3,3,0],[1,3,0,2],[0,2,3,1]],[[1,1,2,1],[1,3,3,0],[1,3,0,2],[0,2,2,2]],[[1,1,3,1],[1,3,3,0],[1,3,0,2],[1,1,2,1]],[[1,1,2,2],[1,3,3,0],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,4,3,0],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,4,0],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[1,4,0,2],[1,1,2,1]],[[1,1,2,1],[1,4,3,0],[1,3,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,4,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,3,1,0],[2,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,3,1,0],[1,3,2,1]],[[1,1,2,1],[1,3,3,0],[1,3,1,0],[1,2,3,1]],[[1,1,3,1],[1,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,1,2,2],[1,3,3,0],[1,3,1,1],[0,2,2,1]],[[1,1,2,1],[1,4,3,0],[1,3,1,1],[0,2,2,1]],[[1,1,2,1],[1,3,4,0],[1,3,1,1],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,4,1,1],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[1,3,1,1],[0,3,2,1]],[[1,1,2,1],[1,3,3,0],[1,3,1,1],[0,2,3,1]],[[1,1,2,1],[1,3,3,0],[1,3,1,1],[0,2,2,2]],[[1,1,3,1],[1,3,3,0],[1,3,1,1],[1,1,2,1]],[[1,1,2,2],[1,3,3,0],[1,3,1,1],[1,1,2,1]],[[1,1,2,1],[1,4,3,0],[1,3,1,1],[1,1,2,1]],[[1,1,2,1],[1,3,4,0],[1,3,1,1],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[1,4,1,1],[1,1,2,1]],[[1,1,2,1],[1,4,3,0],[1,3,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,4,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,3,1,1],[2,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,3,1,1],[1,3,2,0]],[[1,1,3,1],[1,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,1,2,2],[1,3,3,0],[1,3,1,2],[0,2,2,0]],[[1,1,2,1],[1,4,3,0],[1,3,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,4,0],[1,3,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,4,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,3,0],[1,3,1,2],[0,3,2,0]],[[1,1,2,1],[1,3,3,0],[1,3,1,2],[0,2,3,0]],[[1,1,3,1],[1,3,3,0],[1,3,1,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,0],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,4,3,0],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,4,0],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,3,0],[1,4,1,2],[1,1,2,0]],[[2,2,0,0],[2,2,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,0,0],[2,2,2,2],[2,3,3,1],[0,3,0,1]],[[1,2,0,0],[2,2,2,2],[2,3,4,1],[0,2,0,1]],[[1,2,0,0],[2,2,2,2],[2,4,3,1],[0,2,0,1]],[[1,2,0,0],[2,2,2,2],[3,3,3,1],[0,2,0,1]],[[1,2,0,0],[3,2,2,2],[2,3,3,1],[0,2,0,1]],[[2,2,0,0],[2,2,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,4,3,0],[1,3,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,4,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,3,2,0],[2,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,3,2,0],[1,3,1,1]],[[1,1,3,1],[1,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,1,2,2],[1,3,3,0],[1,3,2,1],[0,1,2,1]],[[1,1,2,1],[1,4,3,0],[1,3,2,1],[0,1,2,1]],[[1,1,2,1],[1,3,4,0],[1,3,2,1],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[1,4,2,1],[0,1,2,1]],[[1,1,3,1],[1,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,1,2,2],[1,3,3,0],[1,3,2,1],[0,2,1,1]],[[1,1,2,1],[1,4,3,0],[1,3,2,1],[0,2,1,1]],[[1,1,2,1],[1,3,4,0],[1,3,2,1],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,4,2,1],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[1,3,2,1],[0,3,1,1]],[[1,1,3,1],[1,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,1,2,2],[1,3,3,0],[1,3,2,1],[1,0,2,1]],[[1,1,2,1],[1,4,3,0],[1,3,2,1],[1,0,2,1]],[[1,1,2,1],[1,3,4,0],[1,3,2,1],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[1,4,2,1],[1,0,2,1]],[[1,1,3,1],[1,3,3,0],[1,3,2,1],[1,1,1,1]],[[1,1,2,2],[1,3,3,0],[1,3,2,1],[1,1,1,1]],[[1,1,2,1],[1,4,3,0],[1,3,2,1],[1,1,1,1]],[[1,1,2,1],[1,3,4,0],[1,3,2,1],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[1,4,2,1],[1,1,1,1]],[[1,1,2,1],[1,4,3,0],[1,3,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[1,4,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[1,3,2,1],[2,2,1,0]],[[1,1,2,1],[1,3,3,0],[1,3,2,1],[1,3,1,0]],[[1,2,0,0],[2,2,2,2],[2,3,3,1],[0,1,3,0]],[[1,2,0,0],[2,2,2,2],[2,3,4,1],[0,1,2,0]],[[1,2,0,0],[2,2,2,2],[2,4,3,1],[0,1,2,0]],[[1,2,0,0],[2,2,2,2],[3,3,3,1],[0,1,2,0]],[[1,2,0,0],[3,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,3,1],[1,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,0],[1,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,4,3,0],[1,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,0],[1,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,0],[1,4,2,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,0],[1,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,4,3,0],[1,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,0],[1,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[1,4,2,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,0],[1,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,0],[1,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,4,0],[1,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[1,4,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[1,3,2,2],[0,3,0,1]],[[1,1,3,1],[1,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,0],[1,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,4,3,0],[1,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,4,0],[1,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[1,4,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[1,3,2,2],[0,3,1,0]],[[2,2,0,0],[2,2,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,0,0],[2,2,2,2],[2,3,4,1],[0,1,1,1]],[[1,2,0,0],[2,2,2,2],[2,4,3,1],[0,1,1,1]],[[1,2,0,0],[2,2,2,2],[3,3,3,1],[0,1,1,1]],[[1,2,0,0],[3,2,2,2],[2,3,3,1],[0,1,1,1]],[[2,2,0,0],[2,2,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,3,1],[1,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,0],[1,3,2,2],[1,0,1,1]],[[1,1,2,1],[1,4,3,0],[1,3,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,4,0],[1,3,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,3,0],[1,4,2,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,0],[1,3,2,2],[1,0,2,0]],[[1,1,2,1],[1,4,3,0],[1,3,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,4,0],[1,3,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[1,4,2,2],[1,0,2,0]],[[1,1,3,1],[1,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,0],[1,3,2,2],[1,1,0,1]],[[1,1,2,1],[1,4,3,0],[1,3,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,4,0],[1,3,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,3,0],[1,4,2,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,0],[1,3,2,2],[1,1,1,0]],[[1,1,2,1],[1,4,3,0],[1,3,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,4,0],[1,3,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[1,4,2,2],[1,1,1,0]],[[1,2,0,0],[2,2,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,0,0],[2,2,2,2],[2,4,3,0],[1,2,0,1]],[[1,2,0,0],[2,2,2,2],[3,3,3,0],[1,2,0,1]],[[1,2,0,0],[3,2,2,2],[2,3,3,0],[1,2,0,1]],[[1,1,3,1],[1,3,3,0],[1,3,2,2],[1,2,0,0]],[[1,1,2,2],[1,3,3,0],[1,3,2,2],[1,2,0,0]],[[1,1,2,1],[1,4,3,0],[1,3,2,2],[1,2,0,0]],[[1,1,2,1],[1,3,4,0],[1,3,2,2],[1,2,0,0]],[[1,1,2,1],[1,3,3,0],[1,4,2,2],[1,2,0,0]],[[2,2,0,0],[2,2,2,2],[2,3,3,0],[1,2,0,1]],[[1,2,0,0],[2,2,2,2],[2,3,3,0],[2,1,1,1]],[[1,2,0,0],[2,2,2,2],[2,3,4,0],[1,1,1,1]],[[1,2,0,0],[2,2,2,2],[2,4,3,0],[1,1,1,1]],[[1,2,0,0],[2,2,2,2],[3,3,3,0],[1,1,1,1]],[[1,2,0,0],[3,2,2,2],[2,3,3,0],[1,1,1,1]],[[2,2,0,0],[2,2,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,0,0],[2,2,2,2],[2,3,3,0],[1,0,2,2]],[[1,2,0,0],[2,2,2,2],[2,3,3,0],[1,0,3,1]],[[1,2,0,0],[2,2,2,2],[2,3,3,0],[2,0,2,1]],[[1,2,0,0],[2,2,2,2],[2,3,4,0],[1,0,2,1]],[[1,2,0,0],[2,2,2,2],[2,4,3,0],[1,0,2,1]],[[1,2,0,0],[2,2,2,2],[3,3,3,0],[1,0,2,1]],[[1,2,0,0],[3,2,2,2],[2,3,3,0],[1,0,2,1]],[[2,2,0,0],[2,2,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[1,4,3,0],[1,3,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[1,4,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[1,3,3,0],[2,2,1,0]],[[1,1,2,1],[1,3,3,0],[1,3,3,0],[1,3,1,0]],[[1,1,3,1],[1,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,1,2,2],[1,3,3,0],[1,3,3,1],[0,0,2,1]],[[1,1,2,1],[1,4,3,0],[1,3,3,1],[0,0,2,1]],[[1,1,2,1],[1,3,4,0],[1,3,3,1],[0,0,2,1]],[[1,1,2,1],[1,3,3,0],[1,3,4,1],[0,0,2,1]],[[1,2,0,0],[2,2,2,2],[2,3,3,0],[0,3,1,1]],[[1,2,0,0],[2,2,2,2],[2,3,4,0],[0,2,1,1]],[[1,2,0,0],[2,2,2,2],[2,4,3,0],[0,2,1,1]],[[1,2,0,0],[2,2,2,2],[3,3,3,0],[0,2,1,1]],[[1,2,0,0],[3,2,2,2],[2,3,3,0],[0,2,1,1]],[[2,2,0,0],[2,2,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,0,0],[2,2,2,2],[2,3,3,0],[0,1,2,2]],[[1,2,0,0],[2,2,2,2],[2,3,3,0],[0,1,3,1]],[[1,2,0,0],[2,2,2,2],[2,3,4,0],[0,1,2,1]],[[1,2,0,0],[2,2,2,2],[2,4,3,0],[0,1,2,1]],[[1,2,0,0],[2,2,2,2],[3,3,3,0],[0,1,2,1]],[[1,2,0,0],[3,2,2,2],[2,3,3,0],[0,1,2,1]],[[2,2,0,0],[2,2,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,3,1],[1,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,1,2,2],[1,3,3,0],[1,3,3,2],[0,0,1,1]],[[1,1,2,1],[1,4,3,0],[1,3,3,2],[0,0,1,1]],[[1,1,2,1],[1,3,4,0],[1,3,3,2],[0,0,1,1]],[[1,1,2,1],[1,3,3,0],[1,3,4,2],[0,0,1,1]],[[1,1,2,1],[1,3,3,0],[1,3,3,3],[0,0,1,1]],[[1,1,2,1],[1,3,3,0],[1,3,3,2],[0,0,1,2]],[[1,1,3,1],[1,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,1,2,2],[1,3,3,0],[1,3,3,2],[0,0,2,0]],[[1,1,2,1],[1,4,3,0],[1,3,3,2],[0,0,2,0]],[[1,1,2,1],[1,3,4,0],[1,3,3,2],[0,0,2,0]],[[1,1,2,1],[1,3,3,0],[1,3,4,2],[0,0,2,0]],[[1,1,2,1],[1,3,3,0],[1,3,3,3],[0,0,2,0]],[[1,2,0,0],[2,2,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,0],[2,2,2,2],[2,4,2,1],[1,1,2,0]],[[1,2,0,0],[2,2,2,2],[3,3,2,1],[1,1,2,0]],[[1,2,0,0],[3,2,2,2],[2,3,2,1],[1,1,2,0]],[[2,2,0,0],[2,2,2,2],[2,3,2,1],[1,1,2,0]],[[1,1,3,1],[1,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,1,2,2],[1,3,3,0],[1,3,3,2],[0,2,0,0]],[[1,1,2,1],[1,4,3,0],[1,3,3,2],[0,2,0,0]],[[1,1,2,1],[1,3,4,0],[1,3,3,2],[0,2,0,0]],[[1,1,2,1],[1,3,3,0],[1,4,3,2],[0,2,0,0]],[[1,2,0,0],[2,2,2,2],[2,3,2,1],[0,2,3,0]],[[1,2,0,0],[2,2,2,2],[2,3,2,1],[0,3,2,0]],[[1,2,0,0],[2,2,2,2],[2,4,2,1],[0,2,2,0]],[[1,2,0,0],[2,2,2,2],[3,3,2,1],[0,2,2,0]],[[1,2,0,0],[3,2,2,2],[2,3,2,1],[0,2,2,0]],[[2,2,0,0],[2,2,2,2],[2,3,2,1],[0,2,2,0]],[[1,2,0,0],[2,2,2,2],[2,3,2,0],[2,1,2,1]],[[1,2,0,0],[2,2,2,2],[2,4,2,0],[1,1,2,1]],[[1,2,0,0],[2,2,2,2],[3,3,2,0],[1,1,2,1]],[[1,2,0,0],[3,2,2,2],[2,3,2,0],[1,1,2,1]],[[2,2,0,0],[2,2,2,2],[2,3,2,0],[1,1,2,1]],[[1,2,0,0],[2,2,2,2],[2,3,2,0],[0,2,2,2]],[[1,2,0,0],[2,2,2,2],[2,3,2,0],[0,2,3,1]],[[1,2,0,0],[2,2,2,2],[2,3,2,0],[0,3,2,1]],[[1,2,0,0],[2,2,2,2],[2,4,2,0],[0,2,2,1]],[[1,2,0,0],[2,2,2,2],[3,3,2,0],[0,2,2,1]],[[1,2,0,0],[3,2,2,2],[2,3,2,0],[0,2,2,1]],[[2,2,0,0],[2,2,2,2],[2,3,2,0],[0,2,2,1]],[[1,1,3,1],[1,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,1,2,2],[1,3,3,0],[1,3,3,2],[1,1,0,0]],[[1,1,2,1],[1,4,3,0],[1,3,3,2],[1,1,0,0]],[[1,1,2,1],[1,3,4,0],[1,3,3,2],[1,1,0,0]],[[1,1,2,1],[1,3,3,0],[1,4,3,2],[1,1,0,0]],[[1,2,0,0],[2,2,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,0,0],[2,2,2,2],[2,3,1,1],[2,2,2,0]],[[1,2,0,0],[2,2,2,2],[3,3,1,1],[1,2,2,0]],[[1,2,0,0],[3,2,2,2],[2,3,1,1],[1,2,2,0]],[[2,2,0,0],[2,2,2,2],[2,3,1,1],[1,2,2,0]],[[1,2,0,0],[2,2,2,2],[2,3,1,0],[1,3,2,1]],[[1,2,0,0],[2,2,2,2],[2,3,1,0],[2,2,2,1]],[[1,2,0,0],[2,2,2,2],[3,3,1,0],[1,2,2,1]],[[1,2,0,0],[3,2,2,2],[2,3,1,0],[1,2,2,1]],[[2,2,0,0],[2,2,2,2],[2,3,1,0],[1,2,2,1]],[[1,2,0,0],[2,2,2,2],[2,3,0,2],[2,1,2,1]],[[1,2,0,0],[2,2,2,2],[2,4,0,2],[1,1,2,1]],[[1,2,0,0],[2,2,2,2],[3,3,0,2],[1,1,2,1]],[[1,2,0,0],[3,2,2,2],[2,3,0,2],[1,1,2,1]],[[2,2,0,0],[2,2,2,2],[2,3,0,2],[1,1,2,1]],[[1,2,0,0],[2,2,2,2],[2,3,0,2],[0,2,2,2]],[[1,2,0,0],[2,2,2,2],[2,3,0,2],[0,2,3,1]],[[1,2,0,0],[2,2,2,2],[2,3,0,2],[0,3,2,1]],[[1,2,0,0],[2,2,2,2],[2,3,0,3],[0,2,2,1]],[[1,2,0,0],[2,2,2,2],[2,4,0,2],[0,2,2,1]],[[1,2,0,0],[2,2,2,2],[3,3,0,2],[0,2,2,1]],[[1,2,0,0],[3,2,2,2],[2,3,0,2],[0,2,2,1]],[[2,2,0,0],[2,2,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,0],[2,0,1,2],[1,2,2,1]],[[1,1,2,2],[1,3,3,0],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[1,4,3,0],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,4,0],[2,0,1,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,0],[2,0,2,1],[1,2,2,1]],[[1,1,2,2],[1,3,3,0],[2,0,2,1],[1,2,2,1]],[[1,1,2,1],[1,4,3,0],[2,0,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,4,0],[2,0,2,1],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[2,0,2,3],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[2,0,2,2],[0,3,2,1]],[[1,1,2,1],[1,3,3,0],[2,0,2,2],[0,2,3,1]],[[1,1,2,1],[1,3,3,0],[2,0,2,2],[0,2,2,2]],[[1,1,2,1],[1,3,3,0],[2,0,2,3],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[2,0,2,2],[1,1,3,1]],[[1,1,2,1],[1,3,3,0],[2,0,2,2],[1,1,2,2]],[[1,1,3,1],[1,3,3,0],[2,0,2,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,0],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[1,4,3,0],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,4,0],[2,0,2,2],[1,2,2,0]],[[1,1,3,1],[1,3,3,0],[2,0,3,1],[0,2,2,1]],[[1,1,2,2],[1,3,3,0],[2,0,3,1],[0,2,2,1]],[[1,1,2,1],[1,4,3,0],[2,0,3,1],[0,2,2,1]],[[1,1,2,1],[1,3,4,0],[2,0,3,1],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[2,0,4,1],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[2,0,3,1],[0,3,2,1]],[[1,1,2,1],[1,3,3,0],[2,0,3,1],[0,2,3,1]],[[1,1,2,1],[1,3,3,0],[2,0,3,1],[0,2,2,2]],[[1,1,3,1],[1,3,3,0],[2,0,3,1],[1,1,2,1]],[[1,1,2,2],[1,3,3,0],[2,0,3,1],[1,1,2,1]],[[1,1,2,1],[1,4,3,0],[2,0,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,4,0],[2,0,3,1],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[2,0,4,1],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[2,0,3,1],[1,1,3,1]],[[1,1,2,1],[1,3,3,0],[2,0,3,1],[1,1,2,2]],[[1,1,3,1],[1,3,3,0],[2,0,3,1],[1,2,1,1]],[[1,1,2,2],[1,3,3,0],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[1,4,3,0],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,4,0],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[2,0,4,1],[1,2,1,1]],[[1,1,3,1],[1,3,3,0],[2,0,3,2],[0,2,1,1]],[[1,1,2,2],[1,3,3,0],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[1,4,3,0],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,4,0],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[2,0,4,2],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[2,0,3,3],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[2,0,3,2],[0,2,1,2]],[[1,1,3,1],[1,3,3,0],[2,0,3,2],[0,2,2,0]],[[1,1,2,2],[1,3,3,0],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[1,4,3,0],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,4,0],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,3,0],[2,0,4,2],[0,2,2,0]],[[1,1,2,1],[1,3,3,0],[2,0,3,3],[0,2,2,0]],[[1,1,2,1],[1,3,3,0],[2,0,3,2],[0,3,2,0]],[[1,1,2,1],[1,3,3,0],[2,0,3,2],[0,2,3,0]],[[1,1,3,1],[1,3,3,0],[2,0,3,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,0],[2,0,3,2],[1,1,1,1]],[[1,1,2,1],[1,4,3,0],[2,0,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,4,0],[2,0,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[2,0,4,2],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[2,0,3,3],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[2,0,3,2],[1,1,1,2]],[[1,1,3,1],[1,3,3,0],[2,0,3,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,0],[2,0,3,2],[1,1,2,0]],[[1,1,2,1],[1,4,3,0],[2,0,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,4,0],[2,0,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,3,0],[2,0,4,2],[1,1,2,0]],[[1,1,2,1],[1,3,3,0],[2,0,3,3],[1,1,2,0]],[[1,1,2,1],[1,3,3,0],[2,0,3,2],[1,1,3,0]],[[1,1,3,1],[1,3,3,0],[2,0,3,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,0],[2,0,3,2],[1,2,0,1]],[[1,1,2,1],[1,4,3,0],[2,0,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,4,0],[2,0,3,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,0],[2,0,4,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,0],[2,0,3,3],[1,2,0,1]],[[1,1,2,1],[1,3,3,0],[2,0,3,2],[1,2,0,2]],[[1,1,3,1],[1,3,3,0],[2,0,3,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,0],[2,0,3,2],[1,2,1,0]],[[1,1,2,1],[1,4,3,0],[2,0,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,4,0],[2,0,3,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,0,4,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,0,3,3],[1,2,1,0]],[[1,2,0,0],[2,2,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,0],[2,2,2,2],[2,2,3,1],[2,2,1,0]],[[1,2,0,0],[2,2,2,2],[3,2,3,1],[1,2,1,0]],[[1,2,0,0],[3,2,2,2],[2,2,3,1],[1,2,1,0]],[[2,2,0,0],[2,2,2,2],[2,2,3,1],[1,2,1,0]],[[1,2,0,0],[2,2,2,2],[2,2,3,1],[1,3,0,1]],[[1,1,3,1],[1,3,3,0],[2,1,0,2],[1,2,2,1]],[[1,1,2,2],[1,3,3,0],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[1,4,3,0],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,4,0],[2,1,0,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,0],[2,1,1,1],[1,2,2,1]],[[1,1,2,2],[1,3,3,0],[2,1,1,1],[1,2,2,1]],[[1,1,2,1],[1,4,3,0],[2,1,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,4,0],[2,1,1,1],[1,2,2,1]],[[1,1,3,1],[1,3,3,0],[2,1,1,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,0],[2,1,1,2],[1,2,2,0]],[[1,1,2,1],[1,4,3,0],[2,1,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,4,0],[2,1,1,2],[1,2,2,0]],[[1,1,3,1],[1,3,3,0],[2,1,2,1],[1,2,1,1]],[[1,1,2,2],[1,3,3,0],[2,1,2,1],[1,2,1,1]],[[1,1,2,1],[1,4,3,0],[2,1,2,1],[1,2,1,1]],[[1,1,2,1],[1,3,4,0],[2,1,2,1],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[2,1,2,3],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[2,1,2,2],[0,1,3,1]],[[1,1,2,1],[1,3,3,0],[2,1,2,2],[0,1,2,2]],[[1,1,2,1],[1,3,3,0],[2,1,2,3],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[2,1,2,2],[1,0,3,1]],[[1,1,2,1],[1,3,3,0],[2,1,2,2],[1,0,2,2]],[[1,1,3,1],[1,3,3,0],[2,1,2,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,0],[2,1,2,2],[1,2,0,1]],[[1,1,2,1],[1,4,3,0],[2,1,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,4,0],[2,1,2,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,0],[2,1,2,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,0],[2,1,2,2],[1,2,1,0]],[[1,1,2,1],[1,4,3,0],[2,1,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,4,0],[2,1,2,2],[1,2,1,0]],[[1,2,0,0],[2,2,2,2],[2,2,3,1],[2,2,0,1]],[[1,2,0,0],[2,2,2,2],[3,2,3,1],[1,2,0,1]],[[1,2,0,0],[3,2,2,2],[2,2,3,1],[1,2,0,1]],[[2,2,0,0],[2,2,2,2],[2,2,3,1],[1,2,0,1]],[[1,2,0,0],[2,2,2,2],[2,2,3,1],[0,2,3,0]],[[1,2,0,0],[2,2,2,2],[2,2,3,1],[0,3,2,0]],[[1,1,3,1],[1,3,3,0],[2,1,3,1],[0,1,2,1]],[[1,1,2,2],[1,3,3,0],[2,1,3,1],[0,1,2,1]],[[1,1,2,1],[1,4,3,0],[2,1,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,4,0],[2,1,3,1],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[2,1,4,1],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,1],[0,1,3,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,1],[0,1,2,2]],[[1,1,3,1],[1,3,3,0],[2,1,3,1],[0,2,1,1]],[[1,1,2,2],[1,3,3,0],[2,1,3,1],[0,2,1,1]],[[1,1,2,1],[1,4,3,0],[2,1,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,4,0],[2,1,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[2,1,4,1],[0,2,1,1]],[[1,1,3,1],[1,3,3,0],[2,1,3,1],[1,0,2,1]],[[1,1,2,2],[1,3,3,0],[2,1,3,1],[1,0,2,1]],[[1,1,2,1],[1,4,3,0],[2,1,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,4,0],[2,1,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[2,1,4,1],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,1],[1,0,3,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,1],[1,0,2,2]],[[1,1,3,1],[1,3,3,0],[2,1,3,1],[1,1,1,1]],[[1,1,2,2],[1,3,3,0],[2,1,3,1],[1,1,1,1]],[[1,1,2,1],[1,4,3,0],[2,1,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,4,0],[2,1,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[2,1,4,1],[1,1,1,1]],[[1,2,0,0],[2,2,2,2],[2,2,4,1],[0,2,2,0]],[[1,2,0,0],[2,2,2,2],[2,2,3,0],[1,3,1,1]],[[1,1,3,1],[1,3,3,0],[2,1,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,0],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[1,4,3,0],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,4,0],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,3,0],[2,1,4,2],[0,0,2,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,3],[0,0,2,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,2],[0,0,2,2]],[[1,1,3,1],[1,3,3,0],[2,1,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,0],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[1,4,3,0],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,0],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,0],[2,1,4,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,3],[0,1,1,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,2],[0,1,1,2]],[[1,1,3,1],[1,3,3,0],[2,1,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,0],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[1,4,3,0],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,0],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[2,1,4,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[2,1,3,3],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[2,1,3,2],[0,1,3,0]],[[1,1,3,1],[1,3,3,0],[2,1,3,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,0],[2,1,3,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,0],[2,1,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,4,0],[2,1,3,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[2,1,4,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,3],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,2],[0,2,0,2]],[[1,1,3,1],[1,3,3,0],[2,1,3,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,0],[2,1,3,2],[0,2,1,0]],[[1,1,2,1],[1,4,3,0],[2,1,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,4,0],[2,1,3,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,1,4,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,1,3,3],[0,2,1,0]],[[1,2,0,0],[2,2,2,2],[2,2,3,0],[2,2,1,1]],[[1,2,0,0],[2,2,2,2],[3,2,3,0],[1,2,1,1]],[[1,2,0,0],[3,2,2,2],[2,2,3,0],[1,2,1,1]],[[2,2,0,0],[2,2,2,2],[2,2,3,0],[1,2,1,1]],[[1,2,0,0],[2,2,2,2],[2,2,3,0],[0,2,2,2]],[[1,2,0,0],[2,2,2,2],[2,2,3,0],[0,2,3,1]],[[1,2,0,0],[2,2,2,2],[2,2,3,0],[0,3,2,1]],[[1,2,0,0],[2,2,2,2],[2,2,4,0],[0,2,2,1]],[[1,1,3,1],[1,3,3,0],[2,1,3,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,0],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[1,4,3,0],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,4,0],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,3,0],[2,1,4,2],[1,0,1,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,3],[1,0,1,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,2],[1,0,1,2]],[[1,1,3,1],[1,3,3,0],[2,1,3,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,0],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[1,4,3,0],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,4,0],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[2,1,4,2],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[2,1,3,3],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[2,1,3,2],[1,0,3,0]],[[1,1,3,1],[1,3,3,0],[2,1,3,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,0],[2,1,3,2],[1,1,0,1]],[[1,1,2,1],[1,4,3,0],[2,1,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,4,0],[2,1,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,3,0],[2,1,4,2],[1,1,0,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,3],[1,1,0,1]],[[1,1,2,1],[1,3,3,0],[2,1,3,2],[1,1,0,2]],[[1,1,3,1],[1,3,3,0],[2,1,3,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,0],[2,1,3,2],[1,1,1,0]],[[1,1,2,1],[1,4,3,0],[2,1,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,4,0],[2,1,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[2,1,4,2],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[2,1,3,3],[1,1,1,0]],[[1,2,0,0],[2,2,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,0,0],[2,2,2,2],[2,2,2,1],[1,3,2,0]],[[1,2,0,0],[2,2,2,2],[2,2,2,1],[2,2,2,0]],[[1,2,0,0],[2,2,2,2],[3,2,2,1],[1,2,2,0]],[[1,2,0,0],[3,2,2,2],[2,2,2,1],[1,2,2,0]],[[2,2,0,0],[2,2,2,2],[2,2,2,1],[1,2,2,0]],[[1,2,0,0],[2,2,2,2],[2,2,2,0],[1,2,2,2]],[[1,2,0,0],[2,2,2,2],[2,2,2,0],[1,2,3,1]],[[1,2,0,0],[2,2,2,2],[2,2,2,0],[1,3,2,1]],[[1,2,0,0],[2,2,2,2],[2,2,2,0],[2,2,2,1]],[[1,2,0,0],[2,2,2,2],[3,2,2,0],[1,2,2,1]],[[1,2,0,0],[3,2,2,2],[2,2,2,0],[1,2,2,1]],[[2,2,0,0],[2,2,2,2],[2,2,2,0],[1,2,2,1]],[[1,1,3,1],[1,3,3,0],[2,2,0,2],[0,2,2,1]],[[1,1,2,2],[1,3,3,0],[2,2,0,2],[0,2,2,1]],[[1,1,2,1],[1,4,3,0],[2,2,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,4,0],[2,2,0,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,0],[2,2,0,2],[1,1,2,1]],[[1,1,2,2],[1,3,3,0],[2,2,0,2],[1,1,2,1]],[[1,1,2,1],[1,4,3,0],[2,2,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,4,0],[2,2,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[3,2,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[2,2,1,0],[2,2,2,1]],[[1,1,2,1],[1,3,3,0],[2,2,1,0],[1,3,2,1]],[[1,1,2,1],[1,3,3,0],[2,2,1,0],[1,2,3,1]],[[1,1,3,1],[1,3,3,0],[2,2,1,1],[0,2,2,1]],[[1,1,2,2],[1,3,3,0],[2,2,1,1],[0,2,2,1]],[[1,1,2,1],[1,4,3,0],[2,2,1,1],[0,2,2,1]],[[1,1,2,1],[1,3,4,0],[2,2,1,1],[0,2,2,1]],[[1,1,3,1],[1,3,3,0],[2,2,1,1],[1,1,2,1]],[[1,1,2,2],[1,3,3,0],[2,2,1,1],[1,1,2,1]],[[1,1,2,1],[1,4,3,0],[2,2,1,1],[1,1,2,1]],[[1,1,2,1],[1,3,4,0],[2,2,1,1],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[3,2,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[2,2,1,1],[2,2,2,0]],[[1,1,2,1],[1,3,3,0],[2,2,1,1],[1,3,2,0]],[[1,1,3,1],[1,3,3,0],[2,2,1,2],[0,2,2,0]],[[1,1,2,2],[1,3,3,0],[2,2,1,2],[0,2,2,0]],[[1,1,2,1],[1,4,3,0],[2,2,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,4,0],[2,2,1,2],[0,2,2,0]],[[1,1,3,1],[1,3,3,0],[2,2,1,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,0],[2,2,1,2],[1,1,2,0]],[[1,1,2,1],[1,4,3,0],[2,2,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,4,0],[2,2,1,2],[1,1,2,0]],[[1,2,0,0],[2,2,2,2],[2,2,0,2],[1,2,2,2]],[[1,2,0,0],[2,2,2,2],[2,2,0,2],[1,2,3,1]],[[1,2,0,0],[2,2,2,2],[2,2,0,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,2],[2,2,0,2],[2,2,2,1]],[[1,2,0,0],[2,2,2,2],[2,2,0,3],[1,2,2,1]],[[1,2,0,0],[2,2,2,2],[3,2,0,2],[1,2,2,1]],[[1,2,0,0],[3,2,2,2],[2,2,0,2],[1,2,2,1]],[[2,2,0,0],[2,2,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[3,2,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,3,0],[2,2,2,0],[2,2,1,1]],[[1,1,2,1],[1,3,3,0],[2,2,2,0],[1,3,1,1]],[[1,1,3,1],[1,3,3,0],[2,2,2,1],[0,1,2,1]],[[1,1,2,2],[1,3,3,0],[2,2,2,1],[0,1,2,1]],[[1,1,2,1],[1,4,3,0],[2,2,2,1],[0,1,2,1]],[[1,1,2,1],[1,3,4,0],[2,2,2,1],[0,1,2,1]],[[1,1,3,1],[1,3,3,0],[2,2,2,1],[0,2,1,1]],[[1,1,2,2],[1,3,3,0],[2,2,2,1],[0,2,1,1]],[[1,1,2,1],[1,4,3,0],[2,2,2,1],[0,2,1,1]],[[1,1,2,1],[1,3,4,0],[2,2,2,1],[0,2,1,1]],[[1,1,3,1],[1,3,3,0],[2,2,2,1],[1,0,2,1]],[[1,1,2,2],[1,3,3,0],[2,2,2,1],[1,0,2,1]],[[1,1,2,1],[1,4,3,0],[2,2,2,1],[1,0,2,1]],[[1,1,2,1],[1,3,4,0],[2,2,2,1],[1,0,2,1]],[[1,1,3,1],[1,3,3,0],[2,2,2,1],[1,1,1,1]],[[1,1,2,2],[1,3,3,0],[2,2,2,1],[1,1,1,1]],[[1,1,2,1],[1,4,3,0],[2,2,2,1],[1,1,1,1]],[[1,1,2,1],[1,3,4,0],[2,2,2,1],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[3,2,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,2,2,1],[2,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,2,2,1],[1,3,1,0]],[[1,1,3,1],[1,3,3,0],[2,2,2,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,0],[2,2,2,2],[0,1,1,1]],[[1,1,2,1],[1,4,3,0],[2,2,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,0],[2,2,2,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,0],[2,2,2,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,0],[2,2,2,2],[0,1,2,0]],[[1,1,2,1],[1,4,3,0],[2,2,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,0],[2,2,2,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,0],[2,2,2,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,0],[2,2,2,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,0],[2,2,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,4,0],[2,2,2,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,0],[2,2,2,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,0],[2,2,2,2],[0,2,1,0]],[[1,1,2,1],[1,4,3,0],[2,2,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,4,0],[2,2,2,2],[0,2,1,0]],[[1,1,3,1],[1,3,3,0],[2,2,2,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,0],[2,2,2,2],[1,0,1,1]],[[1,1,2,1],[1,4,3,0],[2,2,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,4,0],[2,2,2,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,0],[2,2,2,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,0],[2,2,2,2],[1,0,2,0]],[[1,1,2,1],[1,4,3,0],[2,2,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,4,0],[2,2,2,2],[1,0,2,0]],[[1,1,3,1],[1,3,3,0],[2,2,2,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,0],[2,2,2,2],[1,1,0,1]],[[1,1,2,1],[1,4,3,0],[2,2,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,4,0],[2,2,2,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,0],[2,2,2,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,0],[2,2,2,2],[1,1,1,0]],[[1,1,2,1],[1,4,3,0],[2,2,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,4,0],[2,2,2,2],[1,1,1,0]],[[1,2,0,0],[2,2,2,2],[2,1,3,1],[1,2,3,0]],[[1,2,0,0],[2,2,2,2],[2,1,3,1],[1,3,2,0]],[[1,2,0,0],[2,2,2,2],[2,1,3,1],[2,2,2,0]],[[1,2,0,0],[2,2,2,2],[2,1,4,1],[1,2,2,0]],[[1,2,0,0],[2,2,2,2],[3,1,3,1],[1,2,2,0]],[[1,2,0,0],[3,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,1,3,1],[1,3,3,0],[2,2,2,2],[1,2,0,0]],[[1,1,2,2],[1,3,3,0],[2,2,2,2],[1,2,0,0]],[[1,1,2,1],[1,4,3,0],[2,2,2,2],[1,2,0,0]],[[1,1,2,1],[1,3,4,0],[2,2,2,2],[1,2,0,0]],[[2,2,0,0],[2,2,2,2],[2,1,3,1],[1,2,2,0]],[[1,2,0,0],[2,2,2,2],[2,1,3,0],[1,2,2,2]],[[1,2,0,0],[2,2,2,2],[2,1,3,0],[1,2,3,1]],[[1,2,0,0],[2,2,2,2],[2,1,3,0],[1,3,2,1]],[[1,2,0,0],[2,2,2,2],[2,1,3,0],[2,2,2,1]],[[1,2,0,0],[2,2,2,2],[2,1,4,0],[1,2,2,1]],[[1,2,0,0],[2,2,2,2],[3,1,3,0],[1,2,2,1]],[[1,2,0,0],[3,2,2,2],[2,1,3,0],[1,2,2,1]],[[2,2,0,0],[2,2,2,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[3,2,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,2,3,0],[2,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,2,3,0],[1,3,1,0]],[[1,2,0,0],[2,2,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,0],[2,2,2,2],[1,3,3,1],[2,2,1,0]],[[1,2,0,0],[2,2,2,2],[1,3,4,1],[1,2,1,0]],[[1,2,0,0],[2,2,2,2],[1,4,3,1],[1,2,1,0]],[[1,2,0,0],[2,2,2,2],[1,3,3,1],[1,3,0,1]],[[1,2,0,0],[2,2,2,2],[1,3,3,1],[2,2,0,1]],[[1,2,0,0],[2,2,2,2],[1,3,4,1],[1,2,0,1]],[[1,2,0,0],[2,2,2,2],[1,4,3,1],[1,2,0,1]],[[1,2,0,0],[2,2,2,2],[1,3,3,1],[1,1,3,0]],[[1,2,0,0],[2,2,2,2],[1,3,4,1],[1,1,2,0]],[[1,2,0,0],[2,2,2,2],[1,4,3,1],[1,1,2,0]],[[1,2,0,0],[2,2,2,2],[1,3,3,0],[1,3,1,1]],[[1,2,0,0],[2,2,2,2],[1,3,3,0],[2,2,1,1]],[[1,2,0,0],[2,2,2,2],[1,3,4,0],[1,2,1,1]],[[1,2,0,0],[2,2,2,2],[1,4,3,0],[1,2,1,1]],[[1,2,0,0],[2,2,2,2],[1,3,3,0],[1,1,2,2]],[[1,2,0,0],[2,2,2,2],[1,3,3,0],[1,1,3,1]],[[1,2,0,0],[2,2,2,2],[1,3,4,0],[1,1,2,1]],[[1,1,3,1],[1,3,3,0],[2,2,3,2],[0,2,0,0]],[[1,1,2,2],[1,3,3,0],[2,2,3,2],[0,2,0,0]],[[1,1,2,1],[1,4,3,0],[2,2,3,2],[0,2,0,0]],[[1,1,2,1],[1,3,4,0],[2,2,3,2],[0,2,0,0]],[[1,2,0,0],[2,2,2,2],[1,4,3,0],[1,1,2,1]],[[1,2,0,0],[2,2,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,0,0],[2,2,2,2],[1,3,2,1],[1,3,2,0]],[[1,2,0,0],[2,2,2,2],[1,3,2,1],[2,2,2,0]],[[1,2,0,0],[2,2,2,2],[1,4,2,1],[1,2,2,0]],[[1,2,0,0],[2,2,2,2],[1,3,2,0],[1,2,2,2]],[[1,2,0,0],[2,2,2,2],[1,3,2,0],[1,2,3,1]],[[1,2,0,0],[2,2,2,2],[1,3,2,0],[1,3,2,1]],[[1,2,0,0],[2,2,2,2],[1,3,2,0],[2,2,2,1]],[[1,2,0,0],[2,2,2,2],[1,4,2,0],[1,2,2,1]],[[1,2,0,0],[2,2,2,2],[1,3,0,2],[1,2,2,2]],[[1,2,0,0],[2,2,2,2],[1,3,0,2],[1,2,3,1]],[[1,2,0,0],[2,2,2,2],[1,3,0,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,2],[1,3,0,2],[2,2,2,1]],[[1,1,3,1],[1,3,3,0],[2,2,3,2],[1,1,0,0]],[[1,1,2,2],[1,3,3,0],[2,2,3,2],[1,1,0,0]],[[1,1,2,1],[1,4,3,0],[2,2,3,2],[1,1,0,0]],[[1,1,2,1],[1,3,4,0],[2,2,3,2],[1,1,0,0]],[[1,2,0,0],[2,2,2,2],[1,3,0,3],[1,2,2,1]],[[1,2,0,0],[2,2,2,2],[1,4,0,2],[1,2,2,1]],[[1,2,0,0],[2,2,2,2],[1,2,3,1],[1,2,3,0]],[[1,2,0,0],[2,2,2,2],[1,2,3,1],[1,3,2,0]],[[1,2,0,0],[2,2,2,2],[1,2,3,1],[2,2,2,0]],[[1,2,0,0],[2,2,2,2],[1,2,4,1],[1,2,2,0]],[[1,2,0,0],[2,2,2,2],[1,2,3,0],[1,2,2,2]],[[1,2,0,0],[2,2,2,2],[1,2,3,0],[1,2,3,1]],[[1,2,0,0],[2,2,2,2],[1,2,3,0],[1,3,2,1]],[[1,2,0,0],[2,2,2,2],[1,2,3,0],[2,2,2,1]],[[1,2,0,0],[2,2,2,2],[1,2,4,0],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,0,0],[2,2,2,1],[2,4,3,2],[1,2,0,0]],[[1,2,0,0],[2,2,2,1],[3,3,3,2],[1,2,0,0]],[[1,2,0,0],[3,2,2,1],[2,3,3,2],[1,2,0,0]],[[2,2,0,0],[2,2,2,1],[2,3,3,2],[1,2,0,0]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,0,0],[2,2,2,1],[2,3,3,3],[1,1,1,0]],[[1,2,0,0],[2,2,2,1],[2,3,4,2],[1,1,1,0]],[[1,2,0,0],[2,2,2,1],[2,4,3,2],[1,1,1,0]],[[1,2,0,0],[2,2,2,1],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[3,3,0,0],[1,2,2,1]],[[1,1,2,1],[1,3,3,0],[2,3,0,0],[2,2,2,1]],[[1,1,2,1],[1,3,3,0],[2,3,0,0],[1,3,2,1]],[[1,1,2,1],[1,3,3,0],[3,3,0,1],[1,2,2,0]],[[1,1,2,1],[1,3,3,0],[2,3,0,1],[2,2,2,0]],[[1,1,2,1],[1,3,3,0],[2,3,0,1],[1,3,2,0]],[[1,2,0,0],[3,2,2,1],[2,3,3,2],[1,1,1,0]],[[2,2,0,0],[2,2,2,1],[2,3,3,2],[1,1,1,0]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[1,1,0,2]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[2,1,0,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,3],[1,1,0,1]],[[1,2,0,0],[2,2,2,1],[2,3,4,2],[1,1,0,1]],[[1,2,0,0],[2,2,2,1],[2,4,3,2],[1,1,0,1]],[[1,2,0,0],[2,2,2,1],[3,3,3,2],[1,1,0,1]],[[1,2,0,0],[3,2,2,1],[2,3,3,2],[1,1,0,1]],[[2,2,0,0],[2,2,2,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[1,4,3,0],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[3,3,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[2,4,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,3,0],[2,3,1,0],[0,3,2,1]],[[1,1,2,1],[1,3,3,0],[2,3,1,0],[0,2,3,1]],[[1,1,2,1],[1,4,3,0],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[3,3,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[2,4,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,3,0],[2,3,1,0],[2,1,2,1]],[[1,1,2,1],[1,4,3,0],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,3,0],[3,3,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,3,0],[2,4,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,3,0],[2,3,1,1],[0,3,2,0]],[[1,1,2,1],[1,4,3,0],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,3,0],[3,3,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,3,0],[2,4,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,3,0],[2,3,1,1],[2,1,2,0]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[1,0,3,0]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[2,0,2,0]],[[1,2,0,0],[2,2,2,1],[2,3,3,3],[1,0,2,0]],[[1,2,0,0],[2,2,2,1],[2,3,4,2],[1,0,2,0]],[[1,2,0,0],[2,2,2,1],[2,4,3,2],[1,0,2,0]],[[1,2,0,0],[2,2,2,1],[3,3,3,2],[1,0,2,0]],[[1,2,0,0],[3,2,2,1],[2,3,3,2],[1,0,2,0]],[[2,2,0,0],[2,2,2,1],[2,3,3,2],[1,0,2,0]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[1,0,1,2]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[2,0,1,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,3],[1,0,1,1]],[[1,2,0,0],[2,2,2,1],[2,3,4,2],[1,0,1,1]],[[1,2,0,0],[2,2,2,1],[2,4,3,2],[1,0,1,1]],[[1,2,0,0],[2,2,2,1],[3,3,3,2],[1,0,1,1]],[[1,2,0,0],[3,2,2,1],[2,3,3,2],[1,0,1,1]],[[2,2,0,0],[2,2,2,1],[2,3,3,2],[1,0,1,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,0,0],[2,2,2,1],[2,3,3,3],[0,2,1,0]],[[1,2,0,0],[2,2,2,1],[2,3,4,2],[0,2,1,0]],[[1,2,0,0],[2,2,2,1],[2,4,3,2],[0,2,1,0]],[[1,2,0,0],[2,2,2,1],[3,3,3,2],[0,2,1,0]],[[1,2,0,0],[3,2,2,1],[2,3,3,2],[0,2,1,0]],[[2,2,0,0],[2,2,2,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[1,4,3,0],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[3,3,2,0],[0,1,2,1]],[[1,1,2,1],[1,3,3,0],[2,4,2,0],[0,1,2,1]],[[1,1,2,1],[1,4,3,0],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[3,3,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[2,4,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,3,0],[2,3,2,0],[0,3,1,1]],[[1,1,2,1],[1,4,3,0],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[3,3,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[2,4,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,3,0],[2,3,2,0],[2,0,2,1]],[[1,1,2,1],[1,4,3,0],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[3,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[2,4,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,3,0],[2,3,2,0],[2,1,1,1]],[[1,1,2,1],[1,4,3,0],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,3,0],[3,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,3,0],[2,4,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,3,0],[2,3,2,0],[2,2,0,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[0,2,0,2]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[0,3,0,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,3],[0,2,0,1]],[[1,2,0,0],[2,2,2,1],[2,3,4,2],[0,2,0,1]],[[1,2,0,0],[2,2,2,1],[2,4,3,2],[0,2,0,1]],[[1,2,0,0],[2,2,2,1],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,0],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[3,3,2,1],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[2,4,2,1],[0,1,2,0]],[[1,1,2,1],[1,4,3,0],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[3,3,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,3,0],[2,4,2,1],[0,2,0,1]],[[1,1,2,1],[1,4,3,0],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[3,3,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,4,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,3,2,1],[0,3,1,0]],[[1,2,0,0],[3,2,2,1],[2,3,3,2],[0,2,0,1]],[[2,2,0,0],[2,2,2,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,0],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[3,3,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[2,4,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[2,3,2,1],[2,0,2,0]],[[1,1,2,1],[1,4,3,0],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,3,0],[3,3,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,3,0],[2,4,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,3,0],[2,3,2,1],[2,1,0,1]],[[1,1,2,1],[1,4,3,0],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[3,3,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[2,4,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[2,3,2,1],[2,1,1,0]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[0,1,3,0]],[[1,2,0,0],[2,2,2,1],[2,3,3,3],[0,1,2,0]],[[1,2,0,0],[2,2,2,1],[2,3,4,2],[0,1,2,0]],[[1,2,0,0],[2,2,2,1],[2,4,3,2],[0,1,2,0]],[[1,2,0,0],[2,2,2,1],[3,3,3,2],[0,1,2,0]],[[1,2,0,0],[3,2,2,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[1,4,3,0],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,3,0],[3,3,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,3,0],[2,4,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,3,0],[2,3,2,1],[2,2,0,0]],[[2,2,0,0],[2,2,2,1],[2,3,3,2],[0,1,2,0]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[0,1,1,2]],[[1,2,0,0],[2,2,2,1],[2,3,3,3],[0,1,1,1]],[[1,2,0,0],[2,2,2,1],[2,3,4,2],[0,1,1,1]],[[1,2,0,0],[2,2,2,1],[2,4,3,2],[0,1,1,1]],[[1,2,0,0],[2,2,2,1],[3,3,3,2],[0,1,1,1]],[[1,2,0,0],[3,2,2,1],[2,3,3,2],[0,1,1,1]],[[2,2,0,0],[2,2,2,1],[2,3,3,2],[0,1,1,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,2],[0,0,2,2]],[[1,2,0,0],[2,2,2,1],[2,3,3,3],[0,0,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,4,2],[0,0,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,1],[2,2,0,1]],[[1,2,0,0],[2,2,2,1],[2,4,3,1],[1,2,0,1]],[[1,2,0,0],[2,2,2,1],[3,3,3,1],[1,2,0,1]],[[1,2,0,0],[3,2,2,1],[2,3,3,1],[1,2,0,1]],[[2,2,0,0],[2,2,2,1],[2,3,3,1],[1,2,0,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,1],[2,1,1,1]],[[1,2,0,0],[2,2,2,1],[2,3,4,1],[1,1,1,1]],[[1,2,0,0],[2,2,2,1],[2,4,3,1],[1,1,1,1]],[[1,2,0,0],[2,2,2,1],[3,3,3,1],[1,1,1,1]],[[1,2,0,0],[3,2,2,1],[2,3,3,1],[1,1,1,1]],[[2,2,0,0],[2,2,2,1],[2,3,3,1],[1,1,1,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,1],[1,0,2,2]],[[1,2,0,0],[2,2,2,1],[2,3,3,1],[1,0,3,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,1],[2,0,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,4,1],[1,0,2,1]],[[1,2,0,0],[2,2,2,1],[2,4,3,1],[1,0,2,1]],[[1,2,0,0],[2,2,2,1],[3,3,3,1],[1,0,2,1]],[[1,2,0,0],[3,2,2,1],[2,3,3,1],[1,0,2,1]],[[2,2,0,0],[2,2,2,1],[2,3,3,1],[1,0,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,1],[0,3,1,1]],[[1,2,0,0],[2,2,2,1],[2,3,4,1],[0,2,1,1]],[[1,2,0,0],[2,2,2,1],[2,4,3,1],[0,2,1,1]],[[1,2,0,0],[2,2,2,1],[3,3,3,1],[0,2,1,1]],[[1,1,3,1],[1,3,3,0],[2,3,2,2],[1,0,0,1]],[[1,1,2,2],[1,3,3,0],[2,3,2,2],[1,0,0,1]],[[1,1,2,1],[1,4,3,0],[2,3,2,2],[1,0,0,1]],[[1,1,2,1],[1,3,4,0],[2,3,2,2],[1,0,0,1]],[[1,1,3,1],[1,3,3,0],[2,3,2,2],[1,0,1,0]],[[1,1,2,2],[1,3,3,0],[2,3,2,2],[1,0,1,0]],[[1,1,2,1],[1,4,3,0],[2,3,2,2],[1,0,1,0]],[[1,1,2,1],[1,3,4,0],[2,3,2,2],[1,0,1,0]],[[1,2,0,0],[3,2,2,1],[2,3,3,1],[0,2,1,1]],[[2,2,0,0],[2,2,2,1],[2,3,3,1],[0,2,1,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,1],[0,1,2,2]],[[1,2,0,0],[2,2,2,1],[2,3,3,1],[0,1,3,1]],[[1,2,0,0],[2,2,2,1],[2,3,4,1],[0,1,2,1]],[[1,2,0,0],[2,2,2,1],[2,4,3,1],[0,1,2,1]],[[1,2,0,0],[2,2,2,1],[3,3,3,1],[0,1,2,1]],[[1,2,0,0],[3,2,2,1],[2,3,3,1],[0,1,2,1]],[[2,2,0,0],[2,2,2,1],[2,3,3,1],[0,1,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,0],[2,1,2,1]],[[1,2,0,0],[2,2,2,1],[2,4,3,0],[1,1,2,1]],[[1,2,0,0],[2,2,2,1],[3,3,3,0],[1,1,2,1]],[[1,2,0,0],[3,2,2,1],[2,3,3,0],[1,1,2,1]],[[2,2,0,0],[2,2,2,1],[2,3,3,0],[1,1,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,0],[0,2,3,1]],[[1,2,0,0],[2,2,2,1],[2,3,3,0],[0,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,4,3,0],[0,2,2,1]],[[1,2,0,0],[2,2,2,1],[3,3,3,0],[0,2,2,1]],[[1,2,0,0],[3,2,2,1],[2,3,3,0],[0,2,2,1]],[[2,2,0,0],[2,2,2,1],[2,3,3,0],[0,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,0],[2,2,2,1],[2,4,2,2],[1,1,2,0]],[[1,2,0,0],[2,2,2,1],[3,3,2,2],[1,1,2,0]],[[1,2,0,0],[3,2,2,1],[2,3,2,2],[1,1,2,0]],[[2,2,0,0],[2,2,2,1],[2,3,2,2],[1,1,2,0]],[[1,2,0,0],[2,2,2,1],[2,3,2,2],[1,0,2,2]],[[1,2,0,0],[2,2,2,1],[2,3,2,2],[1,0,3,1]],[[1,2,0,0],[2,2,2,1],[2,3,2,3],[1,0,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,2,2],[0,2,3,0]],[[1,2,0,0],[2,2,2,1],[2,3,2,2],[0,3,2,0]],[[1,2,0,0],[2,2,2,1],[2,4,2,2],[0,2,2,0]],[[1,2,0,0],[2,2,2,1],[3,3,2,2],[0,2,2,0]],[[1,2,0,0],[3,2,2,1],[2,3,2,2],[0,2,2,0]],[[2,2,0,0],[2,2,2,1],[2,3,2,2],[0,2,2,0]],[[1,2,0,0],[2,2,2,1],[2,3,2,2],[0,1,2,2]],[[1,2,0,0],[2,2,2,1],[2,3,2,2],[0,1,3,1]],[[1,2,0,0],[2,2,2,1],[2,3,2,3],[0,1,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,2,1],[2,1,2,1]],[[1,2,0,0],[2,2,2,1],[2,4,2,1],[1,1,2,1]],[[1,2,0,0],[2,2,2,1],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[1,4,3,0],[2,3,3,0],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[3,3,3,0],[0,1,2,0]],[[1,1,2,1],[1,3,3,0],[2,4,3,0],[0,1,2,0]],[[1,1,2,1],[1,4,3,0],[2,3,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[3,3,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,4,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,3,0],[2,3,3,0],[0,3,1,0]],[[1,2,0,0],[3,2,2,1],[2,3,2,1],[1,1,2,1]],[[2,2,0,0],[2,2,2,1],[2,3,2,1],[1,1,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,2,1],[0,2,2,2]],[[1,2,0,0],[2,2,2,1],[2,3,2,1],[0,2,3,1]],[[1,2,0,0],[2,2,2,1],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[1,4,3,0],[2,3,3,0],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[3,3,3,0],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[2,4,3,0],[1,0,2,0]],[[1,1,2,1],[1,3,3,0],[2,3,3,0],[2,0,2,0]],[[1,1,2,1],[1,4,3,0],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[3,3,3,0],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[2,4,3,0],[1,1,1,0]],[[1,1,2,1],[1,3,3,0],[2,3,3,0],[2,1,1,0]],[[1,2,0,0],[2,2,2,1],[2,4,2,1],[0,2,2,1]],[[1,2,0,0],[2,2,2,1],[3,3,2,1],[0,2,2,1]],[[1,2,0,0],[3,2,2,1],[2,3,2,1],[0,2,2,1]],[[2,2,0,0],[2,2,2,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[1,4,3,0],[2,3,3,0],[1,2,0,0]],[[1,1,2,1],[1,3,3,0],[3,3,3,0],[1,2,0,0]],[[1,1,2,1],[1,3,3,0],[2,4,3,0],[1,2,0,0]],[[1,1,2,1],[1,3,3,0],[2,3,3,0],[2,2,0,0]],[[1,2,0,0],[2,2,2,1],[2,3,2,0],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,2,0],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[3,3,2,0],[1,2,2,1]],[[1,2,0,0],[3,2,2,1],[2,3,2,0],[1,2,2,1]],[[2,2,0,0],[2,2,2,1],[2,3,2,0],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,1,2],[1,3,2,0]],[[1,2,0,0],[2,2,2,1],[2,3,1,2],[2,2,2,0]],[[1,2,0,0],[2,2,2,1],[3,3,1,2],[1,2,2,0]],[[1,2,0,0],[3,2,2,1],[2,3,1,2],[1,2,2,0]],[[2,2,0,0],[2,2,2,1],[2,3,1,2],[1,2,2,0]],[[1,2,0,0],[2,2,2,1],[2,3,1,2],[2,1,2,1]],[[1,2,0,0],[2,2,2,1],[2,4,1,2],[1,1,2,1]],[[1,2,0,0],[2,2,2,1],[3,3,1,2],[1,1,2,1]],[[1,2,0,0],[3,2,2,1],[2,3,1,2],[1,1,2,1]],[[2,2,0,0],[2,2,2,1],[2,3,1,2],[1,1,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,1,2],[0,2,2,2]],[[1,1,2,1],[1,4,3,0],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[1,3,3,0],[3,3,3,1],[0,2,0,0]],[[1,1,2,1],[1,3,3,0],[2,4,3,1],[0,2,0,0]],[[1,2,0,0],[2,2,2,1],[2,3,1,2],[0,2,3,1]],[[1,2,0,0],[2,2,2,1],[2,3,1,2],[0,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,1,3],[0,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,4,1,2],[0,2,2,1]],[[1,2,0,0],[2,2,2,1],[3,3,1,2],[0,2,2,1]],[[1,2,0,0],[3,2,2,1],[2,3,1,2],[0,2,2,1]],[[2,2,0,0],[2,2,2,1],[2,3,1,2],[0,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,1,1],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,1,1],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[3,3,1,1],[1,2,2,1]],[[1,2,0,0],[3,2,2,1],[2,3,1,1],[1,2,2,1]],[[2,2,0,0],[2,2,2,1],[2,3,1,1],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,0,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,3,0,2],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[3,3,0,2],[1,2,2,1]],[[1,2,0,0],[3,2,2,1],[2,3,0,2],[1,2,2,1]],[[2,2,0,0],[2,2,2,1],[2,3,0,2],[1,2,2,1]],[[1,1,2,1],[1,4,3,0],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,3,0],[3,3,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,3,0],[2,4,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,3,0],[2,3,3,1],[2,1,0,0]],[[1,2,0,0],[2,2,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,0,0],[2,2,2,1],[2,2,3,2],[2,2,1,0]],[[1,2,0,0],[2,2,2,1],[3,2,3,2],[1,2,1,0]],[[1,2,0,0],[3,2,2,1],[2,2,3,2],[1,2,1,0]],[[2,2,0,0],[2,2,2,1],[2,2,3,2],[1,2,1,0]],[[1,2,0,0],[2,2,2,1],[2,2,3,2],[1,3,0,1]],[[1,2,0,0],[2,2,2,1],[2,2,3,2],[2,2,0,1]],[[1,2,0,0],[2,2,2,1],[3,2,3,2],[1,2,0,1]],[[1,2,0,0],[3,2,2,1],[2,2,3,2],[1,2,0,1]],[[2,2,0,0],[2,2,2,1],[2,2,3,2],[1,2,0,1]],[[1,2,0,0],[2,2,2,1],[2,2,3,2],[0,2,3,0]],[[1,2,0,0],[2,2,2,1],[2,2,3,2],[0,3,2,0]],[[1,2,0,0],[2,2,2,1],[2,2,3,3],[0,2,2,0]],[[1,2,0,0],[2,2,2,1],[2,2,4,2],[0,2,2,0]],[[1,2,0,0],[2,2,2,1],[2,2,3,2],[0,2,1,2]],[[1,2,0,0],[2,2,2,1],[2,2,3,3],[0,2,1,1]],[[1,2,0,0],[2,2,2,1],[2,2,4,2],[0,2,1,1]],[[1,2,0,0],[2,2,2,1],[2,2,3,1],[1,3,1,1]],[[1,2,0,0],[2,2,2,1],[2,2,3,1],[2,2,1,1]],[[1,2,0,0],[2,2,2,1],[3,2,3,1],[1,2,1,1]],[[1,2,0,0],[3,2,2,1],[2,2,3,1],[1,2,1,1]],[[2,2,0,0],[2,2,2,1],[2,2,3,1],[1,2,1,1]],[[1,2,0,0],[2,2,2,1],[2,2,3,1],[0,2,2,2]],[[1,2,0,0],[2,2,2,1],[2,2,3,1],[0,2,3,1]],[[1,2,0,0],[2,2,2,1],[2,2,3,1],[0,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,2,4,1],[0,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,2,3,0],[1,2,3,1]],[[1,2,0,0],[2,2,2,1],[2,2,3,0],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,2,3,0],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[3,2,3,0],[1,2,2,1]],[[1,2,0,0],[3,2,2,1],[2,2,3,0],[1,2,2,1]],[[2,2,0,0],[2,2,2,1],[2,2,3,0],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,2,2,2],[1,2,3,0]],[[1,2,0,0],[2,2,2,1],[2,2,2,2],[1,3,2,0]],[[1,2,0,0],[2,2,2,1],[2,2,2,2],[2,2,2,0]],[[1,2,0,0],[2,2,2,1],[3,2,2,2],[1,2,2,0]],[[1,2,0,0],[3,2,2,1],[2,2,2,2],[1,2,2,0]],[[2,2,0,0],[2,2,2,1],[2,2,2,2],[1,2,2,0]],[[1,2,0,0],[2,2,2,1],[2,2,2,2],[0,2,2,2]],[[1,2,0,0],[2,2,2,1],[2,2,2,2],[0,2,3,1]],[[1,2,0,0],[2,2,2,1],[2,2,2,2],[0,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,2,2,3],[0,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,2,2,1],[1,2,2,2]],[[1,2,0,0],[2,2,2,1],[2,2,2,1],[1,2,3,1]],[[1,2,0,0],[2,2,2,1],[2,2,2,1],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,2,2,1],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[3,2,2,1],[1,2,2,1]],[[1,2,0,0],[3,2,2,1],[2,2,2,1],[1,2,2,1]],[[2,2,0,0],[2,2,2,1],[2,2,2,1],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,2,1,2],[1,2,2,2]],[[1,2,0,0],[2,2,2,1],[2,2,1,2],[1,2,3,1]],[[1,2,0,0],[2,2,2,1],[2,2,1,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,2,1,2],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,2,1,3],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[3,2,1,2],[1,2,2,1]],[[1,2,0,0],[3,2,2,1],[2,2,1,2],[1,2,2,1]],[[2,2,0,0],[2,2,2,1],[2,2,1,2],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,1,3,2],[1,2,3,0]],[[1,2,0,0],[2,2,2,1],[2,1,3,2],[1,3,2,0]],[[1,2,0,0],[2,2,2,1],[2,1,3,2],[2,2,2,0]],[[1,2,0,0],[2,2,2,1],[2,1,3,3],[1,2,2,0]],[[1,2,0,0],[2,2,2,1],[2,1,4,2],[1,2,2,0]],[[1,2,0,0],[2,2,2,1],[3,1,3,2],[1,2,2,0]],[[1,2,0,0],[3,2,2,1],[2,1,3,2],[1,2,2,0]],[[2,2,0,0],[2,2,2,1],[2,1,3,2],[1,2,2,0]],[[1,2,0,0],[2,2,2,1],[2,1,3,2],[1,2,1,2]],[[1,2,0,0],[2,2,2,1],[2,1,3,3],[1,2,1,1]],[[1,2,0,0],[2,2,2,1],[2,1,4,2],[1,2,1,1]],[[1,2,0,0],[2,2,2,1],[2,1,3,1],[1,2,2,2]],[[1,2,0,0],[2,2,2,1],[2,1,3,1],[1,2,3,1]],[[1,2,0,0],[2,2,2,1],[2,1,3,1],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,1,3,1],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,1,4,1],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[3,1,3,1],[1,2,2,1]],[[1,2,0,0],[3,2,2,1],[2,1,3,1],[1,2,2,1]],[[2,2,0,0],[2,2,2,1],[2,1,3,1],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,1,2,2],[1,2,2,2]],[[1,2,0,0],[2,2,2,1],[2,1,2,2],[1,2,3,1]],[[1,2,0,0],[2,2,2,1],[2,1,2,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[2,1,2,2],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[2,1,2,3],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[3,1,2,2],[1,2,2,1]],[[1,2,0,0],[3,2,2,1],[2,1,2,2],[1,2,2,1]],[[2,2,0,0],[2,2,2,1],[2,1,2,2],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,2,2,1],[1,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,2,2,1],[1,3,3,3],[1,2,1,0]],[[1,2,0,0],[2,2,2,1],[1,3,4,2],[1,2,1,0]],[[1,2,0,0],[2,2,2,1],[1,4,3,2],[1,2,1,0]],[[1,2,0,0],[2,2,2,1],[1,3,3,2],[1,2,0,2]],[[1,2,0,0],[2,2,2,1],[1,3,3,2],[1,3,0,1]],[[1,2,0,0],[2,2,2,1],[1,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,2,2,1],[1,3,3,3],[1,2,0,1]],[[1,2,0,0],[2,2,2,1],[1,3,4,2],[1,2,0,1]],[[1,2,0,0],[2,2,2,1],[1,4,3,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,0],[2,3,3,2],[1,0,0,0]],[[1,1,2,2],[1,3,3,0],[2,3,3,2],[1,0,0,0]],[[1,1,2,1],[1,4,3,0],[2,3,3,2],[1,0,0,0]],[[1,1,2,1],[1,3,4,0],[2,3,3,2],[1,0,0,0]],[[1,2,0,0],[2,2,2,1],[1,3,3,2],[1,1,3,0]],[[1,2,0,0],[2,2,2,1],[1,3,3,3],[1,1,2,0]],[[1,2,0,0],[2,2,2,1],[1,3,4,2],[1,1,2,0]],[[1,2,0,0],[2,2,2,1],[1,4,3,2],[1,1,2,0]],[[1,2,0,0],[2,2,2,1],[1,3,3,2],[1,1,1,2]],[[1,2,0,0],[2,2,2,1],[1,3,3,3],[1,1,1,1]],[[1,2,0,0],[2,2,2,1],[1,3,4,2],[1,1,1,1]],[[1,2,0,0],[2,2,2,1],[1,4,3,2],[1,1,1,1]],[[1,2,0,0],[2,2,2,1],[1,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,2,2,1],[1,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,2,2,1],[1,3,4,1],[1,2,1,1]],[[1,2,0,0],[2,2,2,1],[1,4,3,1],[1,2,1,1]],[[1,2,0,0],[2,2,2,1],[1,3,3,1],[1,1,2,2]],[[1,2,0,0],[2,2,2,1],[1,3,3,1],[1,1,3,1]],[[1,2,0,0],[2,2,2,1],[1,3,4,1],[1,1,2,1]],[[1,2,0,0],[2,2,2,1],[1,4,3,1],[1,1,2,1]],[[1,2,0,0],[2,2,2,1],[1,3,3,0],[1,2,3,1]],[[1,2,0,0],[2,2,2,1],[1,3,3,0],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[1,3,3,0],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[1,4,3,0],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[1,3,2,2],[1,2,3,0]],[[1,2,0,0],[2,2,2,1],[1,3,2,2],[1,3,2,0]],[[1,2,0,0],[2,2,2,1],[1,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,2,2,1],[1,4,2,2],[1,2,2,0]],[[1,2,0,0],[2,2,2,1],[1,3,2,2],[1,1,2,2]],[[1,2,0,0],[2,2,2,1],[1,3,2,2],[1,1,3,1]],[[1,2,0,0],[2,2,2,1],[1,3,2,3],[1,1,2,1]],[[1,2,0,0],[2,2,2,1],[1,3,2,1],[1,2,2,2]],[[1,2,0,0],[2,2,2,1],[1,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,2,2,1],[1,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[1,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[1,4,2,1],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[1,3,1,2],[1,2,2,2]],[[1,2,0,0],[2,2,2,1],[1,3,1,2],[1,2,3,1]],[[1,2,0,0],[2,2,2,1],[1,3,1,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[1,3,1,2],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[1,3,1,3],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[1,4,1,2],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[1,2,3,2],[1,2,3,0]],[[1,2,0,0],[2,2,2,1],[1,2,3,2],[1,3,2,0]],[[1,2,0,0],[2,2,2,1],[1,2,3,2],[2,2,2,0]],[[1,2,0,0],[2,2,2,1],[1,2,3,3],[1,2,2,0]],[[1,2,0,0],[2,2,2,1],[1,2,4,2],[1,2,2,0]],[[1,2,0,0],[2,2,2,1],[1,2,3,2],[1,2,1,2]],[[1,2,0,0],[2,2,2,1],[1,2,3,3],[1,2,1,1]],[[1,2,0,0],[2,2,2,1],[1,2,4,2],[1,2,1,1]],[[1,2,0,0],[2,2,2,1],[1,2,3,1],[1,2,2,2]],[[1,2,0,0],[2,2,2,1],[1,2,3,1],[1,2,3,1]],[[1,2,0,0],[2,2,2,1],[1,2,3,1],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[1,2,3,1],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[1,2,4,1],[1,2,2,1]],[[1,2,0,0],[2,2,2,1],[1,2,2,2],[1,2,2,2]],[[1,2,0,0],[2,2,2,1],[1,2,2,2],[1,2,3,1]],[[1,2,0,0],[2,2,2,1],[1,2,2,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,1],[1,2,2,2],[2,2,2,1]],[[1,2,0,0],[2,2,2,1],[1,2,2,3],[1,2,2,1]],[[1,2,0,0],[2,2,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,2,2,0],[2,4,3,2],[1,2,0,1]],[[1,2,0,0],[2,2,2,0],[3,3,3,2],[1,2,0,1]],[[1,2,0,0],[3,2,2,0],[2,3,3,2],[1,2,0,1]],[[2,2,0,0],[2,2,2,0],[2,3,3,2],[1,2,0,1]],[[1,2,0,0],[2,2,2,0],[2,3,3,2],[2,1,1,1]],[[1,2,0,0],[2,2,2,0],[2,3,4,2],[1,1,1,1]],[[1,2,0,0],[2,2,2,0],[2,4,3,2],[1,1,1,1]],[[1,2,0,0],[2,2,2,0],[3,3,3,2],[1,1,1,1]],[[1,2,0,0],[3,2,2,0],[2,3,3,2],[1,1,1,1]],[[2,2,0,0],[2,2,2,0],[2,3,3,2],[1,1,1,1]],[[1,2,0,0],[2,2,2,0],[2,3,3,2],[1,0,2,2]],[[1,2,0,0],[2,2,2,0],[2,3,3,2],[1,0,3,1]],[[1,2,0,0],[2,2,2,0],[2,3,3,2],[2,0,2,1]],[[1,2,0,0],[2,2,2,0],[2,3,4,2],[1,0,2,1]],[[1,2,0,0],[2,2,2,0],[2,4,3,2],[1,0,2,1]],[[1,2,0,0],[2,2,2,0],[3,3,3,2],[1,0,2,1]],[[1,2,0,0],[3,2,2,0],[2,3,3,2],[1,0,2,1]],[[2,2,0,0],[2,2,2,0],[2,3,3,2],[1,0,2,1]],[[1,2,0,0],[2,2,2,0],[2,3,3,2],[0,3,1,1]],[[1,2,0,0],[2,2,2,0],[2,3,4,2],[0,2,1,1]],[[1,2,0,0],[2,2,2,0],[2,4,3,2],[0,2,1,1]],[[1,2,0,0],[2,2,2,0],[3,3,3,2],[0,2,1,1]],[[1,2,0,0],[3,2,2,0],[2,3,3,2],[0,2,1,1]],[[2,2,0,0],[2,2,2,0],[2,3,3,2],[0,2,1,1]],[[1,2,0,0],[2,2,2,0],[2,3,3,2],[0,1,2,2]],[[1,2,0,0],[2,2,2,0],[2,3,3,2],[0,1,3,1]],[[1,2,0,0],[2,2,2,0],[2,3,4,2],[0,1,2,1]],[[1,2,0,0],[2,2,2,0],[2,4,3,2],[0,1,2,1]],[[1,2,0,0],[2,2,2,0],[3,3,3,2],[0,1,2,1]],[[1,2,0,0],[3,2,2,0],[2,3,3,2],[0,1,2,1]],[[2,2,0,0],[2,2,2,0],[2,3,3,2],[0,1,2,1]],[[1,2,0,0],[2,2,2,0],[2,3,2,2],[2,1,2,1]],[[1,2,0,0],[2,2,2,0],[2,4,2,2],[1,1,2,1]],[[1,2,0,0],[2,2,2,0],[3,3,2,2],[1,1,2,1]],[[1,2,0,0],[3,2,2,0],[2,3,2,2],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[0,0,2,2],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[0,0,2,2],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[0,0,2,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[0,0,3,2],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[0,0,3,2],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[0,0,3,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[0,0,3,2],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[0,0,3,2],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[0,0,3,2],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[0,0,3,2],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[0,0,3,2],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[0,0,3,2],[1,2,1,1]],[[1,1,3,1],[1,3,3,1],[0,0,3,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,1],[0,0,3,2],[1,2,2,0]],[[1,1,2,1],[1,3,4,1],[0,0,3,2],[1,2,2,0]],[[1,1,3,1],[1,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[0,1,1,2],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[0,1,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[0,1,1,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[0,1,2,2],[1,2,1,1]],[[1,1,2,1],[1,4,3,1],[0,1,2,2],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[0,1,2,2],[1,2,1,1]],[[1,1,3,1],[1,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,1],[0,1,2,2],[1,2,2,0]],[[1,1,2,1],[1,4,3,1],[0,1,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,4,1],[0,1,2,2],[1,2,2,0]],[[1,1,3,1],[1,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[0,1,3,0],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[0,1,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[0,1,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,3,1],[0,1,4,0],[1,2,2,1]],[[1,1,2,1],[1,3,3,1],[0,1,3,0],[2,2,2,1]],[[1,1,2,1],[1,3,3,1],[0,1,3,0],[1,3,2,1]],[[1,1,2,1],[1,3,3,1],[0,1,3,0],[1,2,3,1]],[[1,1,2,1],[1,3,3,1],[0,1,3,0],[1,2,2,2]],[[1,1,3,1],[1,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[0,1,3,1],[1,2,1,1]],[[1,1,2,1],[1,4,3,1],[0,1,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[0,1,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,3,1],[0,1,4,1],[1,2,1,1]],[[1,1,3,1],[1,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,1,2,2],[1,3,3,1],[0,1,3,1],[1,2,2,0]],[[1,1,2,1],[1,4,3,1],[0,1,3,1],[1,2,2,0]],[[1,1,2,1],[1,3,4,1],[0,1,3,1],[1,2,2,0]],[[1,1,2,1],[1,3,3,1],[0,1,4,1],[1,2,2,0]],[[1,1,2,1],[1,3,3,1],[0,1,3,1],[2,2,2,0]],[[1,1,2,1],[1,3,3,1],[0,1,3,1],[1,3,2,0]],[[1,1,2,1],[1,3,3,1],[0,1,3,1],[1,2,3,0]],[[1,1,3,1],[1,3,3,1],[0,1,3,2],[1,0,2,1]],[[1,1,2,2],[1,3,3,1],[0,1,3,2],[1,0,2,1]],[[1,1,2,1],[1,3,4,1],[0,1,3,2],[1,0,2,1]],[[1,1,3,1],[1,3,3,1],[0,1,3,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[0,1,3,2],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[0,1,3,2],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[0,1,3,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[0,1,3,2],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[0,1,3,2],[1,1,2,0]],[[2,2,0,0],[2,2,2,0],[2,3,2,2],[1,1,2,1]],[[1,2,0,0],[2,2,2,0],[2,3,2,2],[0,2,2,2]],[[1,2,0,0],[2,2,2,0],[2,3,2,2],[0,2,3,1]],[[1,2,0,0],[2,2,2,0],[2,3,2,2],[0,3,2,1]],[[1,2,0,0],[2,2,2,0],[2,4,2,2],[0,2,2,1]],[[1,2,0,0],[2,2,2,0],[3,3,2,2],[0,2,2,1]],[[1,2,0,0],[3,2,2,0],[2,3,2,2],[0,2,2,1]],[[2,2,0,0],[2,2,2,0],[2,3,2,2],[0,2,2,1]],[[1,2,0,0],[2,2,2,0],[2,3,1,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,0],[2,3,1,2],[2,2,2,1]],[[1,1,3,1],[1,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[0,2,0,2],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[0,2,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[0,2,0,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[0,2,1,2],[1,1,2,1]],[[1,1,2,1],[1,4,3,1],[0,2,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[0,2,1,2],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[0,2,2,2],[1,0,2,1]],[[1,1,2,2],[1,3,3,1],[0,2,2,2],[1,0,2,1]],[[1,1,2,1],[1,4,3,1],[0,2,2,2],[1,0,2,1]],[[1,1,2,1],[1,3,4,1],[0,2,2,2],[1,0,2,1]],[[1,1,3,1],[1,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[0,2,2,2],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[0,2,2,2],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[0,2,2,2],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[0,2,2,2],[1,1,2,0]],[[1,1,2,1],[1,4,3,1],[0,2,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[0,2,2,2],[1,1,2,0]],[[1,1,3,1],[1,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,1],[0,2,2,2],[1,2,0,1]],[[1,1,2,1],[1,4,3,1],[0,2,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,4,1],[0,2,2,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,1],[0,2,2,2],[1,2,1,0]],[[1,1,2,1],[1,4,3,1],[0,2,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,4,1],[0,2,2,2],[1,2,1,0]],[[1,2,0,0],[2,2,2,0],[3,3,1,2],[1,2,2,1]],[[1,2,0,0],[3,2,2,0],[2,3,1,2],[1,2,2,1]],[[2,2,0,0],[2,2,2,0],[2,3,1,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[0,2,3,0],[1,1,2,1]],[[1,1,2,1],[1,4,3,1],[0,2,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[0,2,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,3,1],[0,2,4,0],[1,1,2,1]],[[1,1,2,1],[1,3,3,1],[0,2,3,0],[1,1,3,1]],[[1,1,2,1],[1,3,3,1],[0,2,3,0],[1,1,2,2]],[[1,1,3,1],[1,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[0,2,3,0],[1,2,1,1]],[[1,1,2,1],[1,4,3,1],[0,2,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[0,2,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,3,1],[0,2,4,0],[1,2,1,1]],[[1,1,3,1],[1,3,3,1],[0,2,3,1],[1,0,2,1]],[[1,1,2,2],[1,3,3,1],[0,2,3,1],[1,0,2,1]],[[1,1,2,1],[1,4,3,1],[0,2,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,4,1],[0,2,3,1],[1,0,2,1]],[[1,1,2,1],[1,3,3,1],[0,2,4,1],[1,0,2,1]],[[1,1,3,1],[1,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[0,2,3,1],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[0,2,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[0,2,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,3,1],[0,2,4,1],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[0,2,3,1],[1,1,2,0]],[[1,1,2,1],[1,4,3,1],[0,2,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[0,2,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,3,1],[0,2,4,1],[1,1,2,0]],[[1,1,2,1],[1,3,3,1],[0,2,3,1],[1,1,3,0]],[[1,1,3,1],[1,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,1,2,2],[1,3,3,1],[0,2,3,1],[1,2,0,1]],[[1,1,2,1],[1,4,3,1],[0,2,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,4,1],[0,2,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,3,1],[0,2,4,1],[1,2,0,1]],[[1,1,3,1],[1,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,1,2,2],[1,3,3,1],[0,2,3,1],[1,2,1,0]],[[1,1,2,1],[1,4,3,1],[0,2,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,4,1],[0,2,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,3,1],[0,2,4,1],[1,2,1,0]],[[1,2,0,0],[2,2,2,0],[2,2,3,2],[1,3,1,1]],[[1,2,0,0],[2,2,2,0],[2,2,3,2],[2,2,1,1]],[[1,2,0,0],[2,2,2,0],[3,2,3,2],[1,2,1,1]],[[1,2,0,0],[3,2,2,0],[2,2,3,2],[1,2,1,1]],[[2,2,0,0],[2,2,2,0],[2,2,3,2],[1,2,1,1]],[[1,2,0,0],[2,2,2,0],[2,2,3,2],[0,2,2,2]],[[1,2,0,0],[2,2,2,0],[2,2,3,2],[0,2,3,1]],[[1,1,3,1],[1,3,3,1],[0,2,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,1],[0,2,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,4,1],[0,2,3,2],[0,0,2,1]],[[1,1,3,1],[1,3,3,1],[0,2,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[0,2,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[0,2,3,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[0,2,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[0,2,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[0,2,3,2],[0,1,2,0]],[[1,2,0,0],[2,2,2,0],[2,2,3,2],[0,3,2,1]],[[1,2,0,0],[2,2,2,0],[2,2,4,2],[0,2,2,1]],[[1,2,0,0],[2,2,2,0],[2,2,2,2],[1,2,2,2]],[[1,1,3,1],[1,3,3,1],[0,2,3,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,1],[0,2,3,2],[1,1,0,1]],[[1,1,2,1],[1,4,3,1],[0,2,3,2],[1,1,0,1]],[[1,1,2,1],[1,3,4,1],[0,2,3,2],[1,1,0,1]],[[1,2,0,0],[2,2,2,0],[2,2,2,2],[1,2,3,1]],[[1,2,0,0],[2,2,2,0],[2,2,2,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,0],[2,2,2,2],[2,2,2,1]],[[1,2,0,0],[2,2,2,0],[3,2,2,2],[1,2,2,1]],[[1,2,0,0],[3,2,2,0],[2,2,2,2],[1,2,2,1]],[[2,2,0,0],[2,2,2,0],[2,2,2,2],[1,2,2,1]],[[1,2,0,0],[2,2,2,0],[2,1,3,2],[1,2,2,2]],[[1,2,0,0],[2,2,2,0],[2,1,3,2],[1,2,3,1]],[[1,2,0,0],[2,2,2,0],[2,1,3,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,0],[2,1,3,2],[2,2,2,1]],[[1,2,0,0],[2,2,2,0],[2,1,4,2],[1,2,2,1]],[[1,2,0,0],[2,2,2,0],[3,1,3,2],[1,2,2,1]],[[1,2,0,0],[3,2,2,0],[2,1,3,2],[1,2,2,1]],[[2,2,0,0],[2,2,2,0],[2,1,3,2],[1,2,2,1]],[[1,2,0,0],[2,2,2,0],[1,3,3,2],[1,3,1,1]],[[1,2,0,0],[2,2,2,0],[1,3,3,2],[2,2,1,1]],[[1,2,0,0],[2,2,2,0],[1,3,4,2],[1,2,1,1]],[[1,2,0,0],[2,2,2,0],[1,4,3,2],[1,2,1,1]],[[1,2,0,0],[2,2,2,0],[1,3,3,2],[1,1,2,2]],[[1,2,0,0],[2,2,2,0],[1,3,3,2],[1,1,3,1]],[[1,2,0,0],[2,2,2,0],[1,3,4,2],[1,1,2,1]],[[1,2,0,0],[2,2,2,0],[1,4,3,2],[1,1,2,1]],[[1,2,0,0],[2,2,2,0],[1,3,2,2],[1,2,2,2]],[[1,2,0,0],[2,2,2,0],[1,3,2,2],[1,2,3,1]],[[1,2,0,0],[2,2,2,0],[1,3,2,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,0],[1,3,2,2],[2,2,2,1]],[[1,2,0,0],[2,2,2,0],[1,4,2,2],[1,2,2,1]],[[1,2,0,0],[2,2,2,0],[1,2,3,2],[1,2,2,2]],[[1,1,3,1],[1,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[0,3,0,1],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[0,3,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[0,3,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,3,1],[0,4,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,3,1],[0,3,0,1],[2,2,2,1]],[[1,1,2,1],[1,3,3,1],[0,3,0,1],[1,3,2,1]],[[1,1,2,1],[1,3,3,1],[0,3,0,1],[1,2,3,1]],[[1,1,2,1],[1,3,3,1],[0,3,0,1],[1,2,2,2]],[[1,1,3,1],[1,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[0,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,4,3,1],[0,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[0,3,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,3,1],[0,4,0,2],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[0,3,0,2],[1,2,1,1]],[[1,1,2,1],[1,4,3,1],[0,3,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[0,3,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,3,1],[0,4,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,3,1],[0,3,0,2],[2,2,1,1]],[[1,1,2,1],[1,3,3,1],[0,3,0,2],[1,3,1,1]],[[1,1,3,1],[1,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,1],[0,3,0,2],[1,2,2,0]],[[1,1,2,1],[1,4,3,1],[0,3,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,4,1],[0,3,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,3,1],[0,4,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,3,1],[0,3,0,2],[2,2,2,0]],[[1,1,2,1],[1,3,3,1],[0,3,0,2],[1,3,2,0]],[[1,1,2,1],[1,3,3,1],[0,3,0,2],[1,2,3,0]],[[1,1,3,1],[1,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[0,3,1,0],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[0,3,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[0,3,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,3,1],[0,4,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,3,1],[0,3,1,0],[2,2,2,1]],[[1,1,2,1],[1,3,3,1],[0,3,1,0],[1,3,2,1]],[[1,1,2,1],[1,3,3,1],[0,3,1,0],[1,2,3,1]],[[1,1,2,1],[1,3,3,1],[0,3,1,0],[1,2,2,2]],[[1,1,3,1],[1,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,1,2,2],[1,3,3,1],[0,3,1,1],[1,2,2,0]],[[1,1,2,1],[1,4,3,1],[0,3,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,4,1],[0,3,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,3,1],[0,4,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,3,1],[0,3,1,1],[2,2,2,0]],[[1,1,2,1],[1,3,3,1],[0,3,1,1],[1,3,2,0]],[[1,1,2,1],[1,3,3,1],[0,3,1,1],[1,2,3,0]],[[1,1,3,1],[1,3,3,1],[0,3,1,2],[0,1,2,1]],[[1,1,2,2],[1,3,3,1],[0,3,1,2],[0,1,2,1]],[[1,1,2,1],[1,4,3,1],[0,3,1,2],[0,1,2,1]],[[1,1,2,1],[1,3,4,1],[0,3,1,2],[0,1,2,1]],[[1,1,3,1],[1,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[0,3,1,2],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[0,3,1,2],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[0,3,1,2],[1,1,1,1]],[[1,1,2,1],[1,3,3,1],[0,4,1,2],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[0,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,4,3,1],[0,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[0,3,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,3,1],[0,4,1,2],[1,1,2,0]],[[1,1,3,1],[1,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,1],[0,3,1,2],[1,2,0,1]],[[1,1,2,1],[1,4,3,1],[0,3,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,4,1],[0,3,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,1],[0,4,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,1],[0,3,1,2],[2,2,0,1]],[[1,1,2,1],[1,3,3,1],[0,3,1,2],[1,3,0,1]],[[1,1,3,1],[1,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,1],[0,3,1,2],[1,2,1,0]],[[1,1,2,1],[1,4,3,1],[0,3,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,4,1],[0,3,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,1],[0,4,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,1],[0,3,1,2],[2,2,1,0]],[[1,1,2,1],[1,3,3,1],[0,3,1,2],[1,3,1,0]],[[1,2,0,0],[2,2,2,0],[1,2,3,2],[1,2,3,1]],[[1,2,0,0],[2,2,2,0],[1,2,3,2],[1,3,2,1]],[[1,2,0,0],[2,2,2,0],[1,2,3,2],[2,2,2,1]],[[1,2,0,0],[2,2,2,0],[1,2,4,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[0,3,2,0],[1,1,2,1]],[[1,1,2,1],[1,4,3,1],[0,3,2,0],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[0,3,2,0],[1,1,2,1]],[[1,1,2,1],[1,3,3,1],[0,4,2,0],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[0,3,2,0],[1,2,1,1]],[[1,1,2,1],[1,4,3,1],[0,3,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[0,3,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,3,1],[0,4,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,3,1],[0,3,2,0],[2,2,1,1]],[[1,1,2,1],[1,3,3,1],[0,3,2,0],[1,3,1,1]],[[1,1,3,1],[1,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[0,3,2,1],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[0,3,2,1],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[0,3,2,1],[1,1,1,1]],[[1,1,2,1],[1,3,3,1],[0,4,2,1],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[0,3,2,1],[1,1,2,0]],[[1,1,2,1],[1,4,3,1],[0,3,2,1],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[0,3,2,1],[1,1,2,0]],[[1,1,2,1],[1,3,3,1],[0,4,2,1],[1,1,2,0]],[[1,1,3,1],[1,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,1,2,2],[1,3,3,1],[0,3,2,1],[1,2,0,1]],[[1,1,2,1],[1,4,3,1],[0,3,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,4,1],[0,3,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,3,1],[0,4,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,3,1],[0,3,2,1],[2,2,0,1]],[[1,1,2,1],[1,3,3,1],[0,3,2,1],[1,3,0,1]],[[1,1,3,1],[1,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,1,2,2],[1,3,3,1],[0,3,2,1],[1,2,1,0]],[[1,1,2,1],[1,4,3,1],[0,3,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,4,1],[0,3,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,3,1],[0,4,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,3,1],[0,3,2,1],[2,2,1,0]],[[1,1,2,1],[1,3,3,1],[0,3,2,1],[1,3,1,0]],[[1,1,3,1],[1,3,3,1],[0,3,2,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,1],[0,3,2,2],[0,0,2,1]],[[1,1,2,1],[1,4,3,1],[0,3,2,2],[0,0,2,1]],[[1,1,2,1],[1,3,4,1],[0,3,2,2],[0,0,2,1]],[[1,1,3,1],[1,3,3,1],[0,3,2,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[0,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,4,3,1],[0,3,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[0,3,2,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[0,3,2,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[0,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[0,3,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[0,3,2,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,1],[0,3,2,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,1],[0,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,1],[0,3,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,4,1],[0,3,2,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,1],[0,3,2,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[0,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[0,3,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[0,3,2,2],[0,2,1,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,0,0],[2,2,1,2],[2,4,3,2],[1,2,0,0]],[[1,2,0,0],[2,2,1,2],[3,3,3,2],[1,2,0,0]],[[1,2,0,0],[3,2,1,2],[2,3,3,2],[1,2,0,0]],[[2,2,0,0],[2,2,1,2],[2,3,3,2],[1,2,0,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,3],[1,1,1,0]],[[1,2,0,0],[2,2,1,2],[2,3,4,2],[1,1,1,0]],[[1,2,0,0],[2,2,1,2],[2,4,3,2],[1,1,1,0]],[[1,2,0,0],[2,2,1,2],[3,3,3,2],[1,1,1,0]],[[1,2,0,0],[3,2,1,2],[2,3,3,2],[1,1,1,0]],[[2,2,0,0],[2,2,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[1,1,0,2]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[2,1,0,1]],[[1,2,0,0],[2,2,1,2],[2,3,3,3],[1,1,0,1]],[[1,2,0,0],[2,2,1,2],[2,3,4,2],[1,1,0,1]],[[1,2,0,0],[2,2,1,2],[2,4,3,2],[1,1,0,1]],[[1,2,0,0],[2,2,1,2],[3,3,3,2],[1,1,0,1]],[[1,2,0,0],[3,2,1,2],[2,3,3,2],[1,1,0,1]],[[2,2,0,0],[2,2,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,1],[0,3,3,0],[0,1,2,1]],[[1,1,2,2],[1,3,3,1],[0,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,4,3,1],[0,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,4,1],[0,3,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,3,1],[0,3,4,0],[0,1,2,1]],[[1,1,2,1],[1,3,3,1],[0,3,3,0],[0,1,3,1]],[[1,1,2,1],[1,3,3,1],[0,3,3,0],[0,1,2,2]],[[1,1,3,1],[1,3,3,1],[0,3,3,0],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[0,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,4,3,1],[0,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[0,3,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,3,1],[0,3,4,0],[0,2,1,1]],[[1,1,3,1],[1,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[0,3,3,0],[1,1,2,0]],[[1,1,2,1],[1,4,3,1],[0,3,3,0],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[0,3,3,0],[1,1,2,0]],[[1,1,2,1],[1,3,3,1],[0,4,3,0],[1,1,2,0]],[[1,1,3,1],[1,3,3,1],[0,3,3,0],[1,2,1,0]],[[1,1,2,2],[1,3,3,1],[0,3,3,0],[1,2,1,0]],[[1,1,2,1],[1,4,3,1],[0,3,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,4,1],[0,3,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,3,1],[0,4,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,3,1],[0,3,3,0],[2,2,1,0]],[[1,1,2,1],[1,3,3,1],[0,3,3,0],[1,3,1,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[1,0,3,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[2,0,2,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,3],[1,0,2,0]],[[1,1,3,1],[1,3,3,1],[0,3,3,1],[0,0,2,1]],[[1,1,2,2],[1,3,3,1],[0,3,3,1],[0,0,2,1]],[[1,1,2,1],[1,4,3,1],[0,3,3,1],[0,0,2,1]],[[1,1,2,1],[1,3,4,1],[0,3,3,1],[0,0,2,1]],[[1,1,2,1],[1,3,3,1],[0,3,4,1],[0,0,2,1]],[[1,1,3,1],[1,3,3,1],[0,3,3,1],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[0,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,4,3,1],[0,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[0,3,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,3,1],[0,3,4,1],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[0,3,3,1],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[0,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[0,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[0,3,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,3,1],[0,3,4,1],[0,1,2,0]],[[1,1,2,1],[1,3,3,1],[0,3,3,1],[0,1,3,0]],[[1,1,3,1],[1,3,3,1],[0,3,3,1],[0,2,0,1]],[[1,1,2,2],[1,3,3,1],[0,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,4,3,1],[0,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,4,1],[0,3,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,3,1],[0,3,4,1],[0,2,0,1]],[[1,1,3,1],[1,3,3,1],[0,3,3,1],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[0,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[0,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[0,3,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,3,1],[0,3,4,1],[0,2,1,0]],[[1,2,0,0],[2,2,1,2],[2,3,4,2],[1,0,2,0]],[[1,2,0,0],[2,2,1,2],[2,4,3,2],[1,0,2,0]],[[1,2,0,0],[2,2,1,2],[3,3,3,2],[1,0,2,0]],[[1,2,0,0],[3,2,1,2],[2,3,3,2],[1,0,2,0]],[[2,2,0,0],[2,2,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[1,0,1,2]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[2,0,1,1]],[[1,2,0,0],[2,2,1,2],[2,3,3,3],[1,0,1,1]],[[1,2,0,0],[2,2,1,2],[2,3,4,2],[1,0,1,1]],[[1,2,0,0],[2,2,1,2],[2,4,3,2],[1,0,1,1]],[[1,2,0,0],[2,2,1,2],[3,3,3,2],[1,0,1,1]],[[1,2,0,0],[3,2,1,2],[2,3,3,2],[1,0,1,1]],[[2,2,0,0],[2,2,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[0,3,3,1],[1,2,0,0]],[[1,1,2,2],[1,3,3,1],[0,3,3,1],[1,2,0,0]],[[1,1,2,1],[1,4,3,1],[0,3,3,1],[1,2,0,0]],[[1,1,2,1],[1,3,4,1],[0,3,3,1],[1,2,0,0]],[[1,1,2,1],[1,3,3,1],[0,4,3,1],[1,2,0,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,3],[0,2,1,0]],[[1,2,0,0],[2,2,1,2],[2,3,4,2],[0,2,1,0]],[[1,2,0,0],[2,2,1,2],[2,4,3,2],[0,2,1,0]],[[1,2,0,0],[2,2,1,2],[3,3,3,2],[0,2,1,0]],[[1,2,0,0],[3,2,1,2],[2,3,3,2],[0,2,1,0]],[[2,2,0,0],[2,2,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[0,2,0,2]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[0,3,0,1]],[[1,2,0,0],[2,2,1,2],[2,3,3,3],[0,2,0,1]],[[1,2,0,0],[2,2,1,2],[2,3,4,2],[0,2,0,1]],[[1,2,0,0],[2,2,1,2],[2,4,3,2],[0,2,0,1]],[[1,2,0,0],[2,2,1,2],[3,3,3,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,1],[0,3,3,2],[0,1,0,1]],[[1,1,2,2],[1,3,3,1],[0,3,3,2],[0,1,0,1]],[[1,1,2,1],[1,4,3,1],[0,3,3,2],[0,1,0,1]],[[1,1,2,1],[1,3,4,1],[0,3,3,2],[0,1,0,1]],[[1,2,0,0],[3,2,1,2],[2,3,3,2],[0,2,0,1]],[[2,2,0,0],[2,2,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[0,1,3,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,3],[0,1,2,0]],[[1,2,0,0],[2,2,1,2],[2,3,4,2],[0,1,2,0]],[[1,2,0,0],[2,2,1,2],[2,4,3,2],[0,1,2,0]],[[1,2,0,0],[2,2,1,2],[3,3,3,2],[0,1,2,0]],[[1,2,0,0],[3,2,1,2],[2,3,3,2],[0,1,2,0]],[[2,2,0,0],[2,2,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[0,1,1,2]],[[1,2,0,0],[2,2,1,2],[2,3,3,3],[0,1,1,1]],[[1,2,0,0],[2,2,1,2],[2,3,4,2],[0,1,1,1]],[[1,2,0,0],[2,2,1,2],[2,4,3,2],[0,1,1,1]],[[1,2,0,0],[2,2,1,2],[3,3,3,2],[0,1,1,1]],[[1,2,0,0],[3,2,1,2],[2,3,3,2],[0,1,1,1]],[[2,2,0,0],[2,2,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,0,0],[2,2,1,2],[2,3,3,2],[0,0,2,2]],[[1,2,0,0],[2,2,1,2],[2,3,3,3],[0,0,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,4,2],[0,0,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,0,0],[2,2,1,2],[2,4,3,1],[1,2,0,1]],[[1,2,0,0],[2,2,1,2],[3,3,3,1],[1,2,0,1]],[[1,2,0,0],[3,2,1,2],[2,3,3,1],[1,2,0,1]],[[2,2,0,0],[2,2,1,2],[2,3,3,1],[1,2,0,1]],[[1,2,0,0],[2,2,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,0,0],[2,2,1,2],[2,3,4,1],[1,1,1,1]],[[1,2,0,0],[2,2,1,2],[2,4,3,1],[1,1,1,1]],[[1,2,0,0],[2,2,1,2],[3,3,3,1],[1,1,1,1]],[[1,2,0,0],[3,2,1,2],[2,3,3,1],[1,1,1,1]],[[2,2,0,0],[2,2,1,2],[2,3,3,1],[1,1,1,1]],[[1,2,0,0],[2,2,1,2],[2,3,3,1],[1,0,2,2]],[[1,2,0,0],[2,2,1,2],[2,3,3,1],[1,0,3,1]],[[1,2,0,0],[2,2,1,2],[2,3,3,1],[2,0,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,4,1],[1,0,2,1]],[[1,2,0,0],[2,2,1,2],[2,4,3,1],[1,0,2,1]],[[1,2,0,0],[2,2,1,2],[3,3,3,1],[1,0,2,1]],[[1,2,0,0],[3,2,1,2],[2,3,3,1],[1,0,2,1]],[[2,2,0,0],[2,2,1,2],[2,3,3,1],[1,0,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,3,1],[0,3,1,1]],[[1,2,0,0],[2,2,1,2],[2,3,4,1],[0,2,1,1]],[[1,2,0,0],[2,2,1,2],[2,4,3,1],[0,2,1,1]],[[1,2,0,0],[2,2,1,2],[3,3,3,1],[0,2,1,1]],[[1,2,0,0],[3,2,1,2],[2,3,3,1],[0,2,1,1]],[[2,2,0,0],[2,2,1,2],[2,3,3,1],[0,2,1,1]],[[1,2,0,0],[2,2,1,2],[2,3,3,1],[0,1,2,2]],[[1,2,0,0],[2,2,1,2],[2,3,3,1],[0,1,3,1]],[[1,2,0,0],[2,2,1,2],[2,3,4,1],[0,1,2,1]],[[1,2,0,0],[2,2,1,2],[2,4,3,1],[0,1,2,1]],[[1,2,0,0],[2,2,1,2],[3,3,3,1],[0,1,2,1]],[[1,2,0,0],[3,2,1,2],[2,3,3,1],[0,1,2,1]],[[2,2,0,0],[2,2,1,2],[2,3,3,1],[0,1,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,0,0],[2,2,1,2],[2,4,2,2],[1,1,2,0]],[[1,2,0,0],[2,2,1,2],[3,3,2,2],[1,1,2,0]],[[1,2,0,0],[3,2,1,2],[2,3,2,2],[1,1,2,0]],[[2,2,0,0],[2,2,1,2],[2,3,2,2],[1,1,2,0]],[[1,2,0,0],[2,2,1,2],[2,3,2,2],[1,0,2,2]],[[1,2,0,0],[2,2,1,2],[2,3,2,2],[1,0,3,1]],[[1,2,0,0],[2,2,1,2],[2,3,2,3],[1,0,2,1]],[[1,1,3,1],[1,3,3,1],[1,0,1,2],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[1,0,1,2],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[1,0,1,2],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[1,0,1,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,0,2,2],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[1,0,2,2],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[1,0,2,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,0,2,2],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[1,0,2,2],[1,2,1,1]],[[1,1,2,1],[1,4,3,1],[1,0,2,2],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[1,0,2,2],[1,2,1,1]],[[1,1,3,1],[1,3,3,1],[1,0,2,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,1],[1,0,2,2],[1,2,2,0]],[[1,1,2,1],[1,4,3,1],[1,0,2,2],[1,2,2,0]],[[1,1,2,1],[1,3,4,1],[1,0,2,2],[1,2,2,0]],[[1,1,3,1],[1,3,3,1],[1,0,3,0],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[1,0,3,0],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[1,0,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[1,0,3,0],[1,2,2,1]],[[1,1,2,1],[1,3,3,1],[1,0,4,0],[1,2,2,1]],[[1,1,2,1],[1,3,3,1],[1,0,3,0],[2,2,2,1]],[[1,1,2,1],[1,3,3,1],[1,0,3,0],[1,3,2,1]],[[1,1,2,1],[1,3,3,1],[1,0,3,0],[1,2,3,1]],[[1,1,2,1],[1,3,3,1],[1,0,3,0],[1,2,2,2]],[[1,1,3,1],[1,3,3,1],[1,0,3,1],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[1,0,3,1],[1,2,1,1]],[[1,1,2,1],[1,4,3,1],[1,0,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[1,0,3,1],[1,2,1,1]],[[1,1,2,1],[1,3,3,1],[1,0,4,1],[1,2,1,1]],[[1,1,3,1],[1,3,3,1],[1,0,3,1],[1,2,2,0]],[[1,1,2,2],[1,3,3,1],[1,0,3,1],[1,2,2,0]],[[1,1,2,1],[1,4,3,1],[1,0,3,1],[1,2,2,0]],[[1,1,2,1],[1,3,4,1],[1,0,3,1],[1,2,2,0]],[[1,1,2,1],[1,3,3,1],[1,0,4,1],[1,2,2,0]],[[1,1,2,1],[1,3,3,1],[1,0,3,1],[2,2,2,0]],[[1,1,2,1],[1,3,3,1],[1,0,3,1],[1,3,2,0]],[[1,1,2,1],[1,3,3,1],[1,0,3,1],[1,2,3,0]],[[1,1,3,1],[1,3,3,1],[1,0,3,2],[0,1,2,1]],[[1,1,2,2],[1,3,3,1],[1,0,3,2],[0,1,2,1]],[[1,1,2,1],[1,3,4,1],[1,0,3,2],[0,1,2,1]],[[1,1,3,1],[1,3,3,1],[1,0,3,2],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[1,0,3,2],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[1,0,3,2],[0,2,1,1]],[[1,1,3,1],[1,3,3,1],[1,0,3,2],[0,2,2,0]],[[1,1,2,2],[1,3,3,1],[1,0,3,2],[0,2,2,0]],[[1,1,2,1],[1,3,4,1],[1,0,3,2],[0,2,2,0]],[[1,2,0,0],[2,2,1,2],[2,3,2,2],[0,2,3,0]],[[1,2,0,0],[2,2,1,2],[2,3,2,2],[0,3,2,0]],[[1,2,0,0],[2,2,1,2],[2,4,2,2],[0,2,2,0]],[[1,2,0,0],[2,2,1,2],[3,3,2,2],[0,2,2,0]],[[1,2,0,0],[3,2,1,2],[2,3,2,2],[0,2,2,0]],[[2,2,0,0],[2,2,1,2],[2,3,2,2],[0,2,2,0]],[[1,2,0,0],[2,2,1,2],[2,3,2,2],[0,1,2,2]],[[1,2,0,0],[2,2,1,2],[2,3,2,2],[0,1,3,1]],[[1,2,0,0],[2,2,1,2],[2,3,2,3],[0,1,2,1]],[[1,1,3,1],[1,3,3,1],[1,1,0,2],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[1,1,0,2],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[1,1,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[1,1,0,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[1,1,1,2],[0,2,2,1]],[[1,1,2,1],[1,4,3,1],[1,1,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[1,1,1,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[1,1,2,2],[0,2,1,1]],[[1,1,2,1],[1,4,3,1],[1,1,2,2],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[1,1,2,2],[0,2,1,1]],[[1,1,3,1],[1,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,1,2,2],[1,3,3,1],[1,1,2,2],[0,2,2,0]],[[1,1,2,1],[1,4,3,1],[1,1,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,4,1],[1,1,2,2],[0,2,2,0]],[[1,2,0,0],[2,2,1,2],[2,3,2,1],[2,1,2,1]],[[1,1,3,1],[1,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[1,1,3,0],[0,2,2,1]],[[1,1,2,1],[1,4,3,1],[1,1,3,0],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[1,1,3,0],[0,2,2,1]],[[1,1,2,1],[1,3,3,1],[1,1,4,0],[0,2,2,1]],[[1,1,2,1],[1,3,3,1],[1,1,3,0],[0,3,2,1]],[[1,1,2,1],[1,3,3,1],[1,1,3,0],[0,2,3,1]],[[1,1,2,1],[1,3,3,1],[1,1,3,0],[0,2,2,2]],[[1,1,3,1],[1,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[1,1,3,1],[0,2,1,1]],[[1,1,2,1],[1,4,3,1],[1,1,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[1,1,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,3,1],[1,1,4,1],[0,2,1,1]],[[1,1,3,1],[1,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,1,2,2],[1,3,3,1],[1,1,3,1],[0,2,2,0]],[[1,1,2,1],[1,4,3,1],[1,1,3,1],[0,2,2,0]],[[1,1,2,1],[1,3,4,1],[1,1,3,1],[0,2,2,0]],[[1,1,2,1],[1,3,3,1],[1,1,4,1],[0,2,2,0]],[[1,1,2,1],[1,3,3,1],[1,1,3,1],[0,3,2,0]],[[1,1,2,1],[1,3,3,1],[1,1,3,1],[0,2,3,0]],[[1,2,0,0],[2,2,1,2],[2,4,2,1],[1,1,2,1]],[[1,2,0,0],[2,2,1,2],[3,3,2,1],[1,1,2,1]],[[1,2,0,0],[3,2,1,2],[2,3,2,1],[1,1,2,1]],[[2,2,0,0],[2,2,1,2],[2,3,2,1],[1,1,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,2,1],[0,2,2,2]],[[1,2,0,0],[2,2,1,2],[2,3,2,1],[0,2,3,1]],[[1,2,0,0],[2,2,1,2],[2,3,2,1],[0,3,2,1]],[[1,2,0,0],[2,2,1,2],[2,4,2,1],[0,2,2,1]],[[1,2,0,0],[2,2,1,2],[3,3,2,1],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,1,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,1],[1,1,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,4,1],[1,1,3,2],[0,0,2,1]],[[1,1,3,1],[1,3,3,1],[1,1,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[1,1,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[1,1,3,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[1,1,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[1,1,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[1,1,3,2],[0,1,2,0]],[[1,2,0,0],[3,2,1,2],[2,3,2,1],[0,2,2,1]],[[2,2,0,0],[2,2,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,1,3,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,1],[1,1,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,4,1],[1,1,3,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[1,1,3,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[1,1,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[1,1,3,2],[1,0,2,0]],[[1,2,0,0],[2,2,1,2],[2,3,1,2],[1,3,2,0]],[[1,2,0,0],[2,2,1,2],[2,3,1,2],[2,2,2,0]],[[1,2,0,0],[2,2,1,2],[3,3,1,2],[1,2,2,0]],[[1,2,0,0],[3,2,1,2],[2,3,1,2],[1,2,2,0]],[[2,2,0,0],[2,2,1,2],[2,3,1,2],[1,2,2,0]],[[1,2,0,0],[2,2,1,2],[2,3,1,2],[2,1,2,1]],[[1,2,0,0],[2,2,1,2],[2,4,1,2],[1,1,2,1]],[[1,2,0,0],[2,2,1,2],[3,3,1,2],[1,1,2,1]],[[1,2,0,0],[3,2,1,2],[2,3,1,2],[1,1,2,1]],[[2,2,0,0],[2,2,1,2],[2,3,1,2],[1,1,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,1,2],[0,2,2,2]],[[1,2,0,0],[2,2,1,2],[2,3,1,2],[0,2,3,1]],[[1,2,0,0],[2,2,1,2],[2,3,1,2],[0,3,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,1,3],[0,2,2,1]],[[1,2,0,0],[2,2,1,2],[2,4,1,2],[0,2,2,1]],[[1,2,0,0],[2,2,1,2],[3,3,1,2],[0,2,2,1]],[[1,2,0,0],[3,2,1,2],[2,3,1,2],[0,2,2,1]],[[2,2,0,0],[2,2,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,1,1],[1,3,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,1,1],[2,2,2,1]],[[1,2,0,0],[2,2,1,2],[3,3,1,1],[1,2,2,1]],[[1,2,0,0],[3,2,1,2],[2,3,1,1],[1,2,2,1]],[[2,2,0,0],[2,2,1,2],[2,3,1,1],[1,2,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,0,2],[1,3,2,1]],[[1,2,0,0],[2,2,1,2],[2,3,0,2],[2,2,2,1]],[[1,2,0,0],[2,2,1,2],[3,3,0,2],[1,2,2,1]],[[1,2,0,0],[3,2,1,2],[2,3,0,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[1,2,0,2],[0,2,2,1]],[[1,1,2,1],[1,4,3,1],[1,2,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[1,2,0,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,1,2,2],[1,3,3,1],[1,2,1,2],[0,1,2,1]],[[1,1,2,1],[1,4,3,1],[1,2,1,2],[0,1,2,1]],[[1,1,2,1],[1,3,4,1],[1,2,1,2],[0,1,2,1]],[[1,1,3,1],[1,3,3,1],[1,2,1,2],[1,0,2,1]],[[1,1,2,2],[1,3,3,1],[1,2,1,2],[1,0,2,1]],[[1,1,2,1],[1,4,3,1],[1,2,1,2],[1,0,2,1]],[[1,1,2,1],[1,3,4,1],[1,2,1,2],[1,0,2,1]],[[2,2,0,0],[2,2,1,2],[2,3,0,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,2,2,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,1],[1,2,2,2],[0,0,2,1]],[[1,1,2,1],[1,4,3,1],[1,2,2,2],[0,0,2,1]],[[1,1,2,1],[1,3,4,1],[1,2,2,2],[0,0,2,1]],[[1,1,3,1],[1,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[1,2,2,2],[0,1,1,1]],[[1,1,2,1],[1,4,3,1],[1,2,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[1,2,2,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[1,2,2,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[1,2,2,2],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[1,2,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[1,2,2,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,1],[1,2,2,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,1],[1,2,2,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,1],[1,2,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,4,1],[1,2,2,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[1,2,2,2],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[1,2,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[1,2,2,2],[0,2,1,0]],[[1,1,3,1],[1,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,1],[1,2,2,2],[1,0,1,1]],[[1,1,2,1],[1,4,3,1],[1,2,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,4,1],[1,2,2,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[1,2,2,2],[1,0,2,0]],[[1,1,2,1],[1,4,3,1],[1,2,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[1,2,2,2],[1,0,2,0]],[[1,1,3,1],[1,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,1],[1,2,2,2],[1,1,0,1]],[[1,1,2,1],[1,4,3,1],[1,2,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,4,1],[1,2,2,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,1],[1,2,2,2],[1,1,1,0]],[[1,1,2,1],[1,4,3,1],[1,2,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,4,1],[1,2,2,2],[1,1,1,0]],[[1,2,0,0],[2,2,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,0,0],[2,2,1,2],[2,2,3,2],[2,2,1,0]],[[1,2,0,0],[2,2,1,2],[3,2,3,2],[1,2,1,0]],[[1,2,0,0],[3,2,1,2],[2,2,3,2],[1,2,1,0]],[[2,2,0,0],[2,2,1,2],[2,2,3,2],[1,2,1,0]],[[1,2,0,0],[2,2,1,2],[2,2,3,2],[1,3,0,1]],[[1,2,0,0],[2,2,1,2],[2,2,3,2],[2,2,0,1]],[[1,2,0,0],[2,2,1,2],[3,2,3,2],[1,2,0,1]],[[1,2,0,0],[3,2,1,2],[2,2,3,2],[1,2,0,1]],[[2,2,0,0],[2,2,1,2],[2,2,3,2],[1,2,0,1]],[[1,2,0,0],[2,2,1,2],[2,2,3,2],[0,2,3,0]],[[1,2,0,0],[2,2,1,2],[2,2,3,2],[0,3,2,0]],[[1,2,0,0],[2,2,1,2],[2,2,3,3],[0,2,2,0]],[[1,2,0,0],[2,2,1,2],[2,2,4,2],[0,2,2,0]],[[1,1,3,1],[1,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,1,2,2],[1,3,3,1],[1,2,3,0],[0,1,2,1]],[[1,1,2,1],[1,4,3,1],[1,2,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,4,1],[1,2,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,3,1],[1,2,4,0],[0,1,2,1]],[[1,1,2,1],[1,3,3,1],[1,2,3,0],[0,1,3,1]],[[1,1,2,1],[1,3,3,1],[1,2,3,0],[0,1,2,2]],[[1,1,3,1],[1,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[1,2,3,0],[0,2,1,1]],[[1,1,2,1],[1,4,3,1],[1,2,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[1,2,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,3,1],[1,2,4,0],[0,2,1,1]],[[1,1,3,1],[1,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,1,2,2],[1,3,3,1],[1,2,3,0],[1,0,2,1]],[[1,1,2,1],[1,4,3,1],[1,2,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,4,1],[1,2,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,3,1],[1,2,4,0],[1,0,2,1]],[[1,1,2,1],[1,3,3,1],[1,2,3,0],[1,0,3,1]],[[1,1,2,1],[1,3,3,1],[1,2,3,0],[1,0,2,2]],[[1,1,3,1],[1,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[1,2,3,0],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[1,2,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[1,2,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,3,1],[1,2,4,0],[1,1,1,1]],[[1,2,0,0],[2,2,1,2],[2,2,3,2],[0,2,1,2]],[[1,2,0,0],[2,2,1,2],[2,2,3,3],[0,2,1,1]],[[1,2,0,0],[2,2,1,2],[2,2,4,2],[0,2,1,1]],[[1,1,3,1],[1,3,3,1],[1,2,3,1],[0,0,2,1]],[[1,1,2,2],[1,3,3,1],[1,2,3,1],[0,0,2,1]],[[1,1,2,1],[1,4,3,1],[1,2,3,1],[0,0,2,1]],[[1,1,2,1],[1,3,4,1],[1,2,3,1],[0,0,2,1]],[[1,1,2,1],[1,3,3,1],[1,2,4,1],[0,0,2,1]],[[1,1,3,1],[1,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[1,2,3,1],[0,1,1,1]],[[1,1,2,1],[1,4,3,1],[1,2,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[1,2,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,3,1],[1,2,4,1],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[1,2,3,1],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[1,2,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[1,2,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,3,1],[1,2,4,1],[0,1,2,0]],[[1,1,2,1],[1,3,3,1],[1,2,3,1],[0,1,3,0]],[[1,1,3,1],[1,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,1,2,2],[1,3,3,1],[1,2,3,1],[0,2,0,1]],[[1,1,2,1],[1,4,3,1],[1,2,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,4,1],[1,2,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,3,1],[1,2,4,1],[0,2,0,1]],[[1,1,3,1],[1,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[1,2,3,1],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[1,2,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[1,2,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,3,1],[1,2,4,1],[0,2,1,0]],[[1,2,0,0],[2,2,1,2],[2,2,3,1],[1,3,1,1]],[[1,2,0,0],[2,2,1,2],[2,2,3,1],[2,2,1,1]],[[1,2,0,0],[2,2,1,2],[3,2,3,1],[1,2,1,1]],[[1,2,0,0],[3,2,1,2],[2,2,3,1],[1,2,1,1]],[[2,2,0,0],[2,2,1,2],[2,2,3,1],[1,2,1,1]],[[1,2,0,0],[2,2,1,2],[2,2,3,1],[0,2,2,2]],[[1,1,3,1],[1,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,1,2,2],[1,3,3,1],[1,2,3,1],[1,0,1,1]],[[1,1,2,1],[1,4,3,1],[1,2,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,4,1],[1,2,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,3,1],[1,2,4,1],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[1,2,3,1],[1,0,2,0]],[[1,1,2,1],[1,4,3,1],[1,2,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[1,2,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,3,1],[1,2,4,1],[1,0,2,0]],[[1,1,2,1],[1,3,3,1],[1,2,3,1],[1,0,3,0]],[[1,1,3,1],[1,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,1,2,2],[1,3,3,1],[1,2,3,1],[1,1,0,1]],[[1,1,2,1],[1,4,3,1],[1,2,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,4,1],[1,2,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,3,1],[1,2,4,1],[1,1,0,1]],[[1,1,3,1],[1,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,1,2,2],[1,3,3,1],[1,2,3,1],[1,1,1,0]],[[1,1,2,1],[1,4,3,1],[1,2,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,4,1],[1,2,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,3,1],[1,2,4,1],[1,1,1,0]],[[1,2,0,0],[2,2,1,2],[2,2,3,1],[0,2,3,1]],[[1,2,0,0],[2,2,1,2],[2,2,3,1],[0,3,2,1]],[[1,2,0,0],[2,2,1,2],[2,2,4,1],[0,2,2,1]],[[1,2,0,0],[2,2,1,2],[2,2,2,2],[1,2,3,0]],[[1,2,0,0],[2,2,1,2],[2,2,2,2],[1,3,2,0]],[[1,2,0,0],[2,2,1,2],[2,2,2,2],[2,2,2,0]],[[1,2,0,0],[2,2,1,2],[3,2,2,2],[1,2,2,0]],[[1,2,0,0],[3,2,1,2],[2,2,2,2],[1,2,2,0]],[[2,2,0,0],[2,2,1,2],[2,2,2,2],[1,2,2,0]],[[1,2,0,0],[2,2,1,2],[2,2,2,2],[0,2,2,2]],[[1,2,0,0],[2,2,1,2],[2,2,2,2],[0,2,3,1]],[[1,2,0,0],[2,2,1,2],[2,2,2,2],[0,3,2,1]],[[1,2,0,0],[2,2,1,2],[2,2,2,3],[0,2,2,1]],[[1,2,0,0],[2,2,1,2],[2,2,2,1],[1,2,2,2]],[[1,2,0,0],[2,2,1,2],[2,2,2,1],[1,2,3,1]],[[1,2,0,0],[2,2,1,2],[2,2,2,1],[1,3,2,1]],[[1,2,0,0],[2,2,1,2],[2,2,2,1],[2,2,2,1]],[[1,2,0,0],[2,2,1,2],[3,2,2,1],[1,2,2,1]],[[1,2,0,0],[3,2,1,2],[2,2,2,1],[1,2,2,1]],[[2,2,0,0],[2,2,1,2],[2,2,2,1],[1,2,2,1]],[[1,2,0,0],[2,2,1,2],[2,2,1,2],[1,2,2,2]],[[1,1,3,1],[1,3,3,1],[1,2,3,2],[0,1,0,1]],[[1,1,2,2],[1,3,3,1],[1,2,3,2],[0,1,0,1]],[[1,1,2,1],[1,4,3,1],[1,2,3,2],[0,1,0,1]],[[1,1,2,1],[1,3,4,1],[1,2,3,2],[0,1,0,1]],[[1,2,0,0],[2,2,1,2],[2,2,1,2],[1,2,3,1]],[[1,2,0,0],[2,2,1,2],[2,2,1,2],[1,3,2,1]],[[1,2,0,0],[2,2,1,2],[2,2,1,2],[2,2,2,1]],[[1,2,0,0],[2,2,1,2],[2,2,1,3],[1,2,2,1]],[[1,2,0,0],[2,2,1,2],[3,2,1,2],[1,2,2,1]],[[1,2,0,0],[3,2,1,2],[2,2,1,2],[1,2,2,1]],[[2,2,0,0],[2,2,1,2],[2,2,1,2],[1,2,2,1]],[[1,2,0,0],[2,2,1,2],[2,1,3,2],[1,2,3,0]],[[1,2,0,0],[2,2,1,2],[2,1,3,2],[1,3,2,0]],[[1,2,0,0],[2,2,1,2],[2,1,3,2],[2,2,2,0]],[[1,2,0,0],[2,2,1,2],[2,1,3,3],[1,2,2,0]],[[1,2,0,0],[2,2,1,2],[2,1,4,2],[1,2,2,0]],[[1,2,0,0],[2,2,1,2],[3,1,3,2],[1,2,2,0]],[[1,2,0,0],[3,2,1,2],[2,1,3,2],[1,2,2,0]],[[2,2,0,0],[2,2,1,2],[2,1,3,2],[1,2,2,0]],[[1,2,0,0],[2,2,1,2],[2,1,3,2],[1,2,1,2]],[[1,2,0,0],[2,2,1,2],[2,1,3,3],[1,2,1,1]],[[1,2,0,0],[2,2,1,2],[2,1,4,2],[1,2,1,1]],[[1,2,0,0],[2,2,1,2],[2,1,3,1],[1,2,2,2]],[[1,2,0,0],[2,2,1,2],[2,1,3,1],[1,2,3,1]],[[1,2,0,0],[2,2,1,2],[2,1,3,1],[1,3,2,1]],[[1,2,0,0],[2,2,1,2],[2,1,3,1],[2,2,2,1]],[[1,2,0,0],[2,2,1,2],[2,1,4,1],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,2,3,2],[1,0,0,1]],[[1,1,2,2],[1,3,3,1],[1,2,3,2],[1,0,0,1]],[[1,1,2,1],[1,4,3,1],[1,2,3,2],[1,0,0,1]],[[1,1,2,1],[1,3,4,1],[1,2,3,2],[1,0,0,1]],[[1,2,0,0],[2,2,1,2],[3,1,3,1],[1,2,2,1]],[[1,2,0,0],[3,2,1,2],[2,1,3,1],[1,2,2,1]],[[2,2,0,0],[2,2,1,2],[2,1,3,1],[1,2,2,1]],[[1,2,0,0],[2,2,1,2],[2,1,2,2],[1,2,2,2]],[[1,2,0,0],[2,2,1,2],[2,1,2,2],[1,2,3,1]],[[1,2,0,0],[2,2,1,2],[2,1,2,2],[1,3,2,1]],[[1,2,0,0],[2,2,1,2],[2,1,2,2],[2,2,2,1]],[[1,2,0,0],[2,2,1,2],[2,1,2,3],[1,2,2,1]],[[1,2,0,0],[2,2,1,2],[3,1,2,2],[1,2,2,1]],[[1,2,0,0],[3,2,1,2],[2,1,2,2],[1,2,2,1]],[[2,2,0,0],[2,2,1,2],[2,1,2,2],[1,2,2,1]],[[1,2,0,0],[2,2,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,2,1,2],[1,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,2,1,2],[1,3,3,3],[1,2,1,0]],[[1,2,0,0],[2,2,1,2],[1,3,4,2],[1,2,1,0]],[[1,2,0,0],[2,2,1,2],[1,4,3,2],[1,2,1,0]],[[1,2,0,0],[2,2,1,2],[1,3,3,2],[1,2,0,2]],[[1,2,0,0],[2,2,1,2],[1,3,3,2],[1,3,0,1]],[[1,2,0,0],[2,2,1,2],[1,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,2,1,2],[1,3,3,3],[1,2,0,1]],[[1,2,0,0],[2,2,1,2],[1,3,4,2],[1,2,0,1]],[[1,2,0,0],[2,2,1,2],[1,4,3,2],[1,2,0,1]],[[1,2,0,0],[2,2,1,2],[1,3,3,2],[1,1,3,0]],[[1,2,0,0],[2,2,1,2],[1,3,3,3],[1,1,2,0]],[[1,2,0,0],[2,2,1,2],[1,3,4,2],[1,1,2,0]],[[1,2,0,0],[2,2,1,2],[1,4,3,2],[1,1,2,0]],[[1,2,0,0],[2,2,1,2],[1,3,3,2],[1,1,1,2]],[[1,2,0,0],[2,2,1,2],[1,3,3,3],[1,1,1,1]],[[1,2,0,0],[2,2,1,2],[1,3,4,2],[1,1,1,1]],[[1,2,0,0],[2,2,1,2],[1,4,3,2],[1,1,1,1]],[[1,2,0,0],[2,2,1,2],[1,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,2,1,2],[1,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,2,1,2],[1,3,4,1],[1,2,1,1]],[[1,2,0,0],[2,2,1,2],[1,4,3,1],[1,2,1,1]],[[1,2,0,0],[2,2,1,2],[1,3,3,1],[1,1,2,2]],[[1,2,0,0],[2,2,1,2],[1,3,3,1],[1,1,3,1]],[[1,2,0,0],[2,2,1,2],[1,3,4,1],[1,1,2,1]],[[1,2,0,0],[2,2,1,2],[1,4,3,1],[1,1,2,1]],[[1,2,0,0],[2,2,1,2],[1,3,2,2],[1,2,3,0]],[[1,2,0,0],[2,2,1,2],[1,3,2,2],[1,3,2,0]],[[1,1,3,1],[1,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[1,3,0,1],[0,2,2,1]],[[1,1,2,1],[1,4,3,1],[1,3,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[1,3,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,3,1],[1,4,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,3,1],[1,3,0,1],[0,3,2,1]],[[1,1,2,1],[1,3,3,1],[1,3,0,1],[0,2,3,1]],[[1,1,2,1],[1,3,3,1],[1,3,0,1],[0,2,2,2]],[[1,1,3,1],[1,3,3,1],[1,3,0,1],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[1,3,0,1],[1,1,2,1]],[[1,1,2,1],[1,4,3,1],[1,3,0,1],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[1,3,0,1],[1,1,2,1]],[[1,1,2,1],[1,3,3,1],[1,4,0,1],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,1,2,2],[1,3,3,1],[1,3,0,2],[0,1,2,1]],[[1,1,2,1],[1,4,3,1],[1,3,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,4,1],[1,3,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,3,1],[1,4,0,2],[0,1,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[1,3,0,2],[0,2,1,1]],[[1,1,2,1],[1,4,3,1],[1,3,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[1,3,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,3,1],[1,4,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,3,1],[1,3,0,2],[0,3,1,1]],[[1,1,3,1],[1,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,0,2],[0,2,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,3,1],[1,4,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,3,1],[1,3,0,2],[0,3,2,0]],[[1,1,2,1],[1,3,3,1],[1,3,0,2],[0,2,3,0]],[[1,1,3,1],[1,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,1,2,2],[1,3,3,1],[1,3,0,2],[1,0,2,1]],[[1,1,2,1],[1,4,3,1],[1,3,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,4,1],[1,3,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,3,1],[1,4,0,2],[1,0,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,0,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[1,3,0,2],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[1,3,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[1,3,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,3,1],[1,4,0,2],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[1,3,0,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,0,2],[1,1,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,3,1],[1,4,0,2],[1,1,2,0]],[[1,2,0,0],[2,2,1,2],[1,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,2,1,2],[1,4,2,2],[1,2,2,0]],[[1,2,0,0],[2,2,1,2],[1,3,2,2],[1,1,2,2]],[[1,2,0,0],[2,2,1,2],[1,3,2,2],[1,1,3,1]],[[1,2,0,0],[2,2,1,2],[1,3,2,3],[1,1,2,1]],[[1,2,0,0],[2,2,1,2],[1,3,2,1],[1,2,2,2]],[[1,2,0,0],[2,2,1,2],[1,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,2,1,2],[1,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,2,1,2],[1,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,2,1,2],[1,4,2,1],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[1,3,1,0],[0,2,2,1]],[[1,1,2,1],[1,4,3,1],[1,3,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[1,3,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,3,1],[1,4,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,3,1],[1,3,1,0],[0,3,2,1]],[[1,1,2,1],[1,3,3,1],[1,3,1,0],[0,2,3,1]],[[1,1,2,1],[1,3,3,1],[1,3,1,0],[0,2,2,2]],[[1,1,3,1],[1,3,3,1],[1,3,1,0],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[1,3,1,0],[1,1,2,1]],[[1,1,2,1],[1,4,3,1],[1,3,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[1,3,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,3,1],[1,4,1,0],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,1,1],[0,2,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,3,1],[1,4,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,3,1],[1,3,1,1],[0,3,2,0]],[[1,1,2,1],[1,3,3,1],[1,3,1,1],[0,2,3,0]],[[1,1,3,1],[1,3,3,1],[1,3,1,1],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,1,1],[1,1,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,3,1],[1,4,1,1],[1,1,2,0]],[[1,2,0,0],[2,2,1,2],[1,3,1,2],[1,2,2,2]],[[1,2,0,0],[2,2,1,2],[1,3,1,2],[1,2,3,1]],[[1,2,0,0],[2,2,1,2],[1,3,1,2],[1,3,2,1]],[[1,2,0,0],[2,2,1,2],[1,3,1,2],[2,2,2,1]],[[1,2,0,0],[2,2,1,2],[1,3,1,3],[1,2,2,1]],[[1,2,0,0],[2,2,1,2],[1,4,1,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[1,3,1,2],[0,1,1,1]],[[1,1,2,1],[1,4,3,1],[1,3,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[1,3,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,1],[1,4,1,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,1,2],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,1],[1,4,1,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,1],[1,3,1,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,1],[1,3,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,4,1],[1,3,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,1],[1,4,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,1],[1,3,1,2],[0,3,0,1]],[[1,1,3,1],[1,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[1,3,1,2],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[1,3,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[1,3,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,1],[1,4,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,1],[1,3,1,2],[0,3,1,0]],[[1,2,0,0],[2,2,1,2],[1,2,3,2],[1,2,3,0]],[[1,2,0,0],[2,2,1,2],[1,2,3,2],[1,3,2,0]],[[1,2,0,0],[2,2,1,2],[1,2,3,2],[2,2,2,0]],[[1,2,0,0],[2,2,1,2],[1,2,3,3],[1,2,2,0]],[[1,2,0,0],[2,2,1,2],[1,2,4,2],[1,2,2,0]],[[1,2,0,0],[2,2,1,2],[1,2,3,2],[1,2,1,2]],[[1,1,3,1],[1,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,1],[1,3,1,2],[1,0,1,1]],[[1,1,2,1],[1,4,3,1],[1,3,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,4,1],[1,3,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,3,1],[1,4,1,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,1,2],[1,0,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,3,1],[1,4,1,2],[1,0,2,0]],[[1,1,3,1],[1,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,1],[1,3,1,2],[1,1,0,1]],[[1,1,2,1],[1,4,3,1],[1,3,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,4,1],[1,3,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,3,1],[1,4,1,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,1],[1,3,1,2],[1,1,1,0]],[[1,1,2,1],[1,4,3,1],[1,3,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,4,1],[1,3,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,3,1],[1,4,1,2],[1,1,1,0]],[[1,2,0,0],[2,2,1,2],[1,2,3,3],[1,2,1,1]],[[1,2,0,0],[2,2,1,2],[1,2,4,2],[1,2,1,1]],[[1,2,0,0],[2,2,1,2],[1,2,3,1],[1,2,2,2]],[[1,2,0,0],[2,2,1,2],[1,2,3,1],[1,2,3,1]],[[1,2,0,0],[2,2,1,2],[1,2,3,1],[1,3,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,1,2],[1,2,0,0]],[[1,1,2,2],[1,3,3,1],[1,3,1,2],[1,2,0,0]],[[1,1,2,1],[1,4,3,1],[1,3,1,2],[1,2,0,0]],[[1,1,2,1],[1,3,4,1],[1,3,1,2],[1,2,0,0]],[[1,1,2,1],[1,3,3,1],[1,4,1,2],[1,2,0,0]],[[1,2,0,0],[2,2,1,2],[1,2,3,1],[2,2,2,1]],[[1,2,0,0],[2,2,1,2],[1,2,4,1],[1,2,2,1]],[[1,2,0,0],[2,2,1,2],[1,2,2,2],[1,2,2,2]],[[1,2,0,0],[2,2,1,2],[1,2,2,2],[1,2,3,1]],[[1,2,0,0],[2,2,1,2],[1,2,2,2],[1,3,2,1]],[[1,2,0,0],[2,2,1,2],[1,2,2,2],[2,2,2,1]],[[1,2,0,0],[2,2,1,2],[1,2,2,3],[1,2,2,1]],[[1,2,0,0],[2,2,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,0,0],[2,2,1,1],[2,4,3,2],[1,1,2,0]],[[1,2,0,0],[2,2,1,1],[3,3,3,2],[1,1,2,0]],[[1,2,0,0],[3,2,1,1],[2,3,3,2],[1,1,2,0]],[[2,2,0,0],[2,2,1,1],[2,3,3,2],[1,1,2,0]],[[1,1,3,1],[1,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,1,2,2],[1,3,3,1],[1,3,2,0],[0,1,2,1]],[[1,1,2,1],[1,4,3,1],[1,3,2,0],[0,1,2,1]],[[1,1,2,1],[1,3,4,1],[1,3,2,0],[0,1,2,1]],[[1,1,2,1],[1,3,3,1],[1,4,2,0],[0,1,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[1,3,2,0],[0,2,1,1]],[[1,1,2,1],[1,4,3,1],[1,3,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[1,3,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,3,1],[1,4,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,3,1],[1,3,2,0],[0,3,1,1]],[[1,1,3,1],[1,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,1,2,2],[1,3,3,1],[1,3,2,0],[1,0,2,1]],[[1,1,2,1],[1,4,3,1],[1,3,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,4,1],[1,3,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,3,1],[1,4,2,0],[1,0,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,3,1],[1,4,2,0],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[1,3,2,0],[1,2,0,1]],[[1,1,2,2],[1,3,3,1],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,4,3,1],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,4,1],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,3,1],[1,4,2,0],[1,2,0,1]],[[1,2,0,0],[2,2,1,1],[2,3,3,2],[0,2,3,0]],[[1,2,0,0],[2,2,1,1],[2,3,3,2],[0,3,2,0]],[[1,2,0,0],[2,2,1,1],[2,4,3,2],[0,2,2,0]],[[1,1,3,1],[1,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[1,3,2,1],[0,1,1,1]],[[1,1,2,1],[1,4,3,1],[1,3,2,1],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[1,3,2,1],[0,1,1,1]],[[1,1,2,1],[1,3,3,1],[1,4,2,1],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,2,1],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,2,1],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,2,1],[0,1,2,0]],[[1,1,2,1],[1,3,3,1],[1,4,2,1],[0,1,2,0]],[[1,1,3,1],[1,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,1,2,2],[1,3,3,1],[1,3,2,1],[0,2,0,1]],[[1,1,2,1],[1,4,3,1],[1,3,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,4,1],[1,3,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,3,1],[1,4,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,3,1],[1,3,2,1],[0,3,0,1]],[[1,1,3,1],[1,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[1,3,2,1],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[1,3,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[1,3,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,3,1],[1,4,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,3,1],[1,3,2,1],[0,3,1,0]],[[1,2,0,0],[2,2,1,1],[3,3,3,2],[0,2,2,0]],[[1,2,0,0],[3,2,1,1],[2,3,3,2],[0,2,2,0]],[[2,2,0,0],[2,2,1,1],[2,3,3,2],[0,2,2,0]],[[1,1,3,1],[1,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,1,2,2],[1,3,3,1],[1,3,2,1],[1,0,1,1]],[[1,1,2,1],[1,4,3,1],[1,3,2,1],[1,0,1,1]],[[1,1,2,1],[1,3,4,1],[1,3,2,1],[1,0,1,1]],[[1,1,2,1],[1,3,3,1],[1,4,2,1],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,2,1],[1,0,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,3,1],[1,4,2,1],[1,0,2,0]],[[1,1,3,1],[1,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,1,2,2],[1,3,3,1],[1,3,2,1],[1,1,0,1]],[[1,1,2,1],[1,4,3,1],[1,3,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,4,1],[1,3,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,3,1],[1,4,2,1],[1,1,0,1]],[[1,1,3,1],[1,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,1,2,2],[1,3,3,1],[1,3,2,1],[1,1,1,0]],[[1,1,2,1],[1,4,3,1],[1,3,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,4,1],[1,3,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,3,1],[1,4,2,1],[1,1,1,0]],[[1,2,0,0],[2,2,1,1],[2,3,3,1],[2,1,2,1]],[[1,2,0,0],[2,2,1,1],[2,4,3,1],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,2,1],[1,2,0,0]],[[1,1,2,2],[1,3,3,1],[1,3,2,1],[1,2,0,0]],[[1,1,2,1],[1,4,3,1],[1,3,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,4,1],[1,3,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,3,1],[1,4,2,1],[1,2,0,0]],[[1,2,0,0],[2,2,1,1],[3,3,3,1],[1,1,2,1]],[[1,2,0,0],[3,2,1,1],[2,3,3,1],[1,1,2,1]],[[2,2,0,0],[2,2,1,1],[2,3,3,1],[1,1,2,1]],[[1,2,0,0],[2,2,1,1],[2,3,3,1],[0,2,2,2]],[[1,2,0,0],[2,2,1,1],[2,3,3,1],[0,2,3,1]],[[1,2,0,0],[2,2,1,1],[2,3,3,1],[0,3,2,1]],[[1,2,0,0],[2,2,1,1],[2,4,3,1],[0,2,2,1]],[[1,2,0,0],[2,2,1,1],[3,3,3,1],[0,2,2,1]],[[1,2,0,0],[3,2,1,1],[2,3,3,1],[0,2,2,1]],[[2,2,0,0],[2,2,1,1],[2,3,3,1],[0,2,2,1]],[[1,2,0,0],[2,2,1,1],[2,2,3,2],[1,2,3,0]],[[1,2,0,0],[2,2,1,1],[2,2,3,2],[1,3,2,0]],[[1,2,0,0],[2,2,1,1],[2,2,3,2],[2,2,2,0]],[[1,2,0,0],[2,2,1,1],[3,2,3,2],[1,2,2,0]],[[1,2,0,0],[3,2,1,1],[2,2,3,2],[1,2,2,0]],[[2,2,0,0],[2,2,1,1],[2,2,3,2],[1,2,2,0]],[[1,2,0,0],[2,2,1,1],[2,2,3,1],[1,2,2,2]],[[1,1,3,1],[1,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,1,2,2],[1,3,3,1],[1,3,2,2],[0,0,1,1]],[[1,1,2,1],[1,4,3,1],[1,3,2,2],[0,0,1,1]],[[1,1,2,1],[1,3,4,1],[1,3,2,2],[0,0,1,1]],[[1,1,3,1],[1,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,2,2],[0,0,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,2,2],[0,0,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,2,2],[0,0,2,0]],[[1,2,0,0],[2,2,1,1],[2,2,3,1],[1,2,3,1]],[[1,2,0,0],[2,2,1,1],[2,2,3,1],[1,3,2,1]],[[1,2,0,0],[2,2,1,1],[2,2,3,1],[2,2,2,1]],[[1,2,0,0],[2,2,1,1],[3,2,3,1],[1,2,2,1]],[[1,2,0,0],[3,2,1,1],[2,2,3,1],[1,2,2,1]],[[2,2,0,0],[2,2,1,1],[2,2,3,1],[1,2,2,1]],[[1,2,0,0],[2,2,1,1],[1,3,3,2],[1,2,3,0]],[[1,2,0,0],[2,2,1,1],[1,3,3,2],[1,3,2,0]],[[1,2,0,0],[2,2,1,1],[1,3,3,2],[2,2,2,0]],[[1,2,0,0],[2,2,1,1],[1,4,3,2],[1,2,2,0]],[[1,2,0,0],[2,2,1,1],[1,3,3,1],[1,2,2,2]],[[1,2,0,0],[2,2,1,1],[1,3,3,1],[1,2,3,1]],[[1,2,0,0],[2,2,1,1],[1,3,3,1],[1,3,2,1]],[[1,2,0,0],[2,2,1,1],[1,3,3,1],[2,2,2,1]],[[1,2,0,0],[2,2,1,1],[1,4,3,1],[1,2,2,1]],[[1,2,0,0],[2,2,1,0],[2,3,3,2],[2,1,2,1]],[[1,2,0,0],[2,2,1,0],[2,4,3,2],[1,1,2,1]],[[1,2,0,0],[2,2,1,0],[3,3,3,2],[1,1,2,1]],[[1,2,0,0],[3,2,1,0],[2,3,3,2],[1,1,2,1]],[[2,2,0,0],[2,2,1,0],[2,3,3,2],[1,1,2,1]],[[1,2,0,0],[2,2,1,0],[2,3,3,2],[0,2,2,2]],[[1,2,0,0],[2,2,1,0],[2,3,3,2],[0,2,3,1]],[[1,2,0,0],[2,2,1,0],[2,3,3,2],[0,3,2,1]],[[1,2,0,0],[2,2,1,0],[2,4,3,2],[0,2,2,1]],[[1,2,0,0],[2,2,1,0],[3,3,3,2],[0,2,2,1]],[[1,2,0,0],[3,2,1,0],[2,3,3,2],[0,2,2,1]],[[2,2,0,0],[2,2,1,0],[2,3,3,2],[0,2,2,1]],[[1,2,0,0],[2,2,1,0],[2,2,3,2],[1,2,2,2]],[[1,2,0,0],[2,2,1,0],[2,2,3,2],[1,2,3,1]],[[1,2,0,0],[2,2,1,0],[2,2,3,2],[1,3,2,1]],[[1,2,0,0],[2,2,1,0],[2,2,3,2],[2,2,2,1]],[[1,2,0,0],[2,2,1,0],[3,2,3,2],[1,2,2,1]],[[1,2,0,0],[3,2,1,0],[2,2,3,2],[1,2,2,1]],[[2,2,0,0],[2,2,1,0],[2,2,3,2],[1,2,2,1]],[[1,2,0,0],[2,2,1,0],[1,3,3,2],[1,2,2,2]],[[1,2,0,0],[2,2,1,0],[1,3,3,2],[1,2,3,1]],[[1,2,0,0],[2,2,1,0],[1,3,3,2],[1,3,2,1]],[[1,2,0,0],[2,2,1,0],[1,3,3,2],[2,2,2,1]],[[1,2,0,0],[2,2,1,0],[1,4,3,2],[1,2,2,1]],[[1,2,0,0],[2,2,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,0,0],[2,2,0,2],[2,4,3,2],[1,1,2,0]],[[1,2,0,0],[2,2,0,2],[3,3,3,2],[1,1,2,0]],[[1,2,0,0],[3,2,0,2],[2,3,3,2],[1,1,2,0]],[[2,2,0,0],[2,2,0,2],[2,3,3,2],[1,1,2,0]],[[1,2,0,0],[2,2,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,0,0],[2,2,0,2],[2,3,3,2],[1,0,3,1]],[[1,2,0,0],[2,2,0,2],[2,3,3,3],[1,0,2,1]],[[1,2,0,0],[2,2,0,2],[2,3,3,2],[0,2,3,0]],[[1,2,0,0],[2,2,0,2],[2,3,3,2],[0,3,2,0]],[[1,2,0,0],[2,2,0,2],[2,4,3,2],[0,2,2,0]],[[1,2,0,0],[2,2,0,2],[3,3,3,2],[0,2,2,0]],[[1,2,0,0],[3,2,0,2],[2,3,3,2],[0,2,2,0]],[[2,2,0,0],[2,2,0,2],[2,3,3,2],[0,2,2,0]],[[1,2,0,0],[2,2,0,2],[2,3,3,2],[0,1,2,2]],[[1,2,0,0],[2,2,0,2],[2,3,3,2],[0,1,3,1]],[[1,2,0,0],[2,2,0,2],[2,3,3,3],[0,1,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,1,2,2],[1,3,3,1],[1,3,3,0],[0,0,2,1]],[[1,1,2,1],[1,4,3,1],[1,3,3,0],[0,0,2,1]],[[1,1,2,1],[1,3,4,1],[1,3,3,0],[0,0,2,1]],[[1,1,2,1],[1,3,3,1],[1,3,4,0],[0,0,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,3,0],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,3,0],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,3,0],[0,1,2,0]],[[1,1,2,1],[1,3,3,1],[1,4,3,0],[0,1,2,0]],[[1,1,3,1],[1,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[1,3,3,0],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[1,3,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[1,3,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,3,1],[1,4,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,3,1],[1,3,3,0],[0,3,1,0]],[[1,2,0,0],[2,2,0,2],[2,3,3,1],[2,1,2,1]],[[1,2,0,0],[2,2,0,2],[2,4,3,1],[1,1,2,1]],[[1,2,0,0],[2,2,0,2],[3,3,3,1],[1,1,2,1]],[[1,2,0,0],[3,2,0,2],[2,3,3,1],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,3,0],[1,0,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,3,0],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,3,0],[1,0,2,0]],[[1,1,2,1],[1,3,3,1],[1,4,3,0],[1,0,2,0]],[[1,1,3,1],[1,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,1,2,2],[1,3,3,1],[1,3,3,0],[1,1,1,0]],[[1,1,2,1],[1,4,3,1],[1,3,3,0],[1,1,1,0]],[[1,1,2,1],[1,3,4,1],[1,3,3,0],[1,1,1,0]],[[1,1,2,1],[1,3,3,1],[1,4,3,0],[1,1,1,0]],[[2,2,0,0],[2,2,0,2],[2,3,3,1],[1,1,2,1]],[[1,2,0,0],[2,2,0,2],[2,3,3,1],[0,2,2,2]],[[1,2,0,0],[2,2,0,2],[2,3,3,1],[0,2,3,1]],[[1,2,0,0],[2,2,0,2],[2,3,3,1],[0,3,2,1]],[[1,2,0,0],[2,2,0,2],[2,4,3,1],[0,2,2,1]],[[1,2,0,0],[2,2,0,2],[3,3,3,1],[0,2,2,1]],[[1,2,0,0],[3,2,0,2],[2,3,3,1],[0,2,2,1]],[[2,2,0,0],[2,2,0,2],[2,3,3,1],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,3,0],[1,2,0,0]],[[1,1,2,2],[1,3,3,1],[1,3,3,0],[1,2,0,0]],[[1,1,2,1],[1,4,3,1],[1,3,3,0],[1,2,0,0]],[[1,1,2,1],[1,3,4,1],[1,3,3,0],[1,2,0,0]],[[1,1,2,1],[1,3,3,1],[1,4,3,0],[1,2,0,0]],[[1,2,0,0],[2,2,0,2],[2,3,2,2],[2,1,2,1]],[[1,2,0,0],[2,2,0,2],[2,4,2,2],[1,1,2,1]],[[1,2,0,0],[2,2,0,2],[3,3,2,2],[1,1,2,1]],[[1,2,0,0],[3,2,0,2],[2,3,2,2],[1,1,2,1]],[[2,2,0,0],[2,2,0,2],[2,3,2,2],[1,1,2,1]],[[1,2,0,0],[2,2,0,2],[2,3,2,2],[0,2,2,2]],[[1,2,0,0],[2,2,0,2],[2,3,2,2],[0,2,3,1]],[[1,2,0,0],[2,2,0,2],[2,3,2,2],[0,3,2,1]],[[1,2,0,0],[2,2,0,2],[2,3,2,3],[0,2,2,1]],[[1,2,0,0],[2,2,0,2],[2,4,2,2],[0,2,2,1]],[[1,2,0,0],[2,2,0,2],[3,3,2,2],[0,2,2,1]],[[1,2,0,0],[3,2,0,2],[2,3,2,2],[0,2,2,1]],[[2,2,0,0],[2,2,0,2],[2,3,2,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,1,2,2],[1,3,3,1],[1,3,3,1],[0,0,1,1]],[[1,1,2,1],[1,4,3,1],[1,3,3,1],[0,0,1,1]],[[1,1,2,1],[1,3,4,1],[1,3,3,1],[0,0,1,1]],[[1,1,2,1],[1,3,3,1],[1,3,4,1],[0,0,1,1]],[[1,1,3,1],[1,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,1,2,2],[1,3,3,1],[1,3,3,1],[0,0,2,0]],[[1,1,2,1],[1,4,3,1],[1,3,3,1],[0,0,2,0]],[[1,1,2,1],[1,3,4,1],[1,3,3,1],[0,0,2,0]],[[1,1,2,1],[1,3,3,1],[1,3,4,1],[0,0,2,0]],[[1,2,0,0],[2,2,0,2],[2,2,3,2],[1,2,3,0]],[[1,2,0,0],[2,2,0,2],[2,2,3,2],[1,3,2,0]],[[1,2,0,0],[2,2,0,2],[2,2,3,2],[2,2,2,0]],[[1,1,3,1],[1,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,1,2,2],[1,3,3,1],[1,3,3,1],[0,2,0,0]],[[1,1,2,1],[1,4,3,1],[1,3,3,1],[0,2,0,0]],[[1,1,2,1],[1,3,4,1],[1,3,3,1],[0,2,0,0]],[[1,1,2,1],[1,3,3,1],[1,4,3,1],[0,2,0,0]],[[1,2,0,0],[2,2,0,2],[3,2,3,2],[1,2,2,0]],[[1,2,0,0],[3,2,0,2],[2,2,3,2],[1,2,2,0]],[[2,2,0,0],[2,2,0,2],[2,2,3,2],[1,2,2,0]],[[1,2,0,0],[2,2,0,2],[2,2,3,2],[0,2,2,2]],[[1,2,0,0],[2,2,0,2],[2,2,3,2],[0,2,3,1]],[[1,2,0,0],[2,2,0,2],[2,2,3,2],[0,3,2,1]],[[1,2,0,0],[2,2,0,2],[2,2,3,3],[0,2,2,1]],[[1,2,0,0],[2,2,0,2],[2,2,3,1],[1,2,2,2]],[[1,2,0,0],[2,2,0,2],[2,2,3,1],[1,2,3,1]],[[1,2,0,0],[2,2,0,2],[2,2,3,1],[1,3,2,1]],[[1,2,0,0],[2,2,0,2],[2,2,3,1],[2,2,2,1]],[[1,2,0,0],[2,2,0,2],[3,2,3,1],[1,2,2,1]],[[1,2,0,0],[3,2,0,2],[2,2,3,1],[1,2,2,1]],[[2,2,0,0],[2,2,0,2],[2,2,3,1],[1,2,2,1]],[[1,2,0,0],[2,2,0,2],[2,2,2,2],[1,2,2,2]],[[1,2,0,0],[2,2,0,2],[2,2,2,2],[1,2,3,1]],[[1,2,0,0],[2,2,0,2],[2,2,2,2],[1,3,2,1]],[[1,2,0,0],[2,2,0,2],[2,2,2,2],[2,2,2,1]],[[1,2,0,0],[2,2,0,2],[2,2,2,3],[1,2,2,1]],[[1,2,0,0],[2,2,0,2],[3,2,2,2],[1,2,2,1]],[[1,2,0,0],[3,2,0,2],[2,2,2,2],[1,2,2,1]],[[2,2,0,0],[2,2,0,2],[2,2,2,2],[1,2,2,1]],[[1,2,0,0],[2,2,0,2],[2,1,3,2],[1,2,2,2]],[[1,2,0,0],[2,2,0,2],[2,1,3,2],[1,2,3,1]],[[1,2,0,0],[2,2,0,2],[2,1,3,2],[1,3,2,1]],[[1,2,0,0],[2,2,0,2],[2,1,3,2],[2,2,2,1]],[[1,2,0,0],[2,2,0,2],[2,1,3,3],[1,2,2,1]],[[1,2,0,0],[2,2,0,2],[3,1,3,2],[1,2,2,1]],[[1,2,0,0],[3,2,0,2],[2,1,3,2],[1,2,2,1]],[[2,2,0,0],[2,2,0,2],[2,1,3,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,1,2,2],[1,3,3,1],[1,3,3,1],[1,1,0,0]],[[1,1,2,1],[1,4,3,1],[1,3,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,4,1],[1,3,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,3,1],[1,4,3,1],[1,1,0,0]],[[1,2,0,0],[2,2,0,2],[1,3,3,2],[1,2,3,0]],[[1,2,0,0],[2,2,0,2],[1,3,3,2],[1,3,2,0]],[[1,2,0,0],[2,2,0,2],[1,3,3,2],[2,2,2,0]],[[1,2,0,0],[2,2,0,2],[1,4,3,2],[1,2,2,0]],[[1,2,0,0],[2,2,0,2],[1,3,3,2],[1,1,2,2]],[[1,2,0,0],[2,2,0,2],[1,3,3,2],[1,1,3,1]],[[1,2,0,0],[2,2,0,2],[1,3,3,3],[1,1,2,1]],[[1,2,0,0],[2,2,0,2],[1,3,3,1],[1,2,2,2]],[[1,2,0,0],[2,2,0,2],[1,3,3,1],[1,2,3,1]],[[1,2,0,0],[2,2,0,2],[1,3,3,1],[1,3,2,1]],[[1,2,0,0],[2,2,0,2],[1,3,3,1],[2,2,2,1]],[[1,2,0,0],[2,2,0,2],[1,4,3,1],[1,2,2,1]],[[1,2,0,0],[2,2,0,2],[1,3,2,2],[1,2,2,2]],[[1,2,0,0],[2,2,0,2],[1,3,2,2],[1,2,3,1]],[[1,2,0,0],[2,2,0,2],[1,3,2,2],[1,3,2,1]],[[1,2,0,0],[2,2,0,2],[1,3,2,2],[2,2,2,1]],[[1,2,0,0],[2,2,0,2],[1,3,2,3],[1,2,2,1]],[[1,2,0,0],[2,2,0,2],[1,4,2,2],[1,2,2,1]],[[1,2,0,0],[2,2,0,2],[1,2,3,2],[1,2,2,2]],[[1,2,0,0],[2,2,0,2],[1,2,3,2],[1,2,3,1]],[[1,2,0,0],[2,2,0,2],[1,2,3,2],[1,3,2,1]],[[1,2,0,0],[2,2,0,2],[1,2,3,2],[2,2,2,1]],[[1,2,0,0],[2,2,0,2],[1,2,3,3],[1,2,2,1]],[[1,2,0,0],[2,2,0,1],[2,3,3,2],[1,3,2,0]],[[1,2,0,0],[2,2,0,1],[2,3,3,2],[2,2,2,0]],[[1,2,0,0],[2,2,0,1],[3,3,3,2],[1,2,2,0]],[[1,2,0,0],[2,2,0,1],[2,3,3,2],[2,1,2,1]],[[1,2,0,0],[2,2,0,1],[2,4,3,2],[1,1,2,1]],[[1,2,0,0],[2,2,0,1],[3,3,3,2],[1,1,2,1]],[[1,2,0,0],[3,2,0,1],[2,3,3,2],[1,1,2,1]],[[2,2,0,0],[2,2,0,1],[2,3,3,2],[1,1,2,1]],[[1,2,0,0],[2,2,0,1],[2,3,3,2],[0,2,2,2]],[[1,2,0,0],[2,2,0,1],[2,3,3,2],[0,2,3,1]],[[1,2,0,0],[2,2,0,1],[2,3,3,2],[0,3,2,1]],[[1,2,0,0],[2,2,0,1],[2,4,3,2],[0,2,2,1]],[[1,2,0,0],[2,2,0,1],[3,3,3,2],[0,2,2,1]],[[1,2,0,0],[3,2,0,1],[2,3,3,2],[0,2,2,1]],[[2,2,0,0],[2,2,0,1],[2,3,3,2],[0,2,2,1]],[[1,2,0,0],[2,2,0,1],[2,3,3,1],[1,2,3,1]],[[1,2,0,0],[2,2,0,1],[2,3,3,1],[1,3,2,1]],[[1,2,0,0],[2,2,0,1],[2,3,3,1],[2,2,2,1]],[[1,2,0,0],[2,2,0,1],[3,3,3,1],[1,2,2,1]],[[1,2,0,0],[2,2,0,1],[2,2,3,2],[1,2,2,2]],[[1,2,0,0],[2,2,0,1],[2,2,3,2],[1,2,3,1]],[[1,2,0,0],[2,2,0,1],[2,2,3,2],[1,3,2,1]],[[1,2,0,0],[2,2,0,1],[2,2,3,2],[2,2,2,1]],[[1,2,0,0],[2,2,0,1],[3,2,3,2],[1,2,2,1]],[[1,2,0,0],[3,2,0,1],[2,2,3,2],[1,2,2,1]],[[2,2,0,0],[2,2,0,1],[2,2,3,2],[1,2,2,1]],[[1,2,0,0],[2,2,0,1],[1,3,3,2],[1,2,2,2]],[[1,2,0,0],[2,2,0,1],[1,3,3,2],[1,2,3,1]],[[1,2,0,0],[2,2,0,1],[1,3,3,2],[1,3,2,1]],[[1,1,3,1],[1,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,1,2,2],[1,3,3,1],[1,3,3,2],[0,0,0,1]],[[1,1,2,1],[1,4,3,1],[1,3,3,2],[0,0,0,1]],[[1,1,2,1],[1,3,4,1],[1,3,3,2],[0,0,0,1]],[[1,2,0,0],[2,2,0,1],[1,3,3,2],[2,2,2,1]],[[1,2,0,0],[2,2,0,1],[1,4,3,2],[1,2,2,1]],[[1,2,0,0],[2,2,0,0],[2,3,3,2],[1,2,2,2]],[[1,2,0,0],[2,2,0,0],[2,3,3,2],[1,2,3,1]],[[1,2,0,0],[2,2,0,0],[2,3,3,2],[1,3,2,1]],[[1,2,0,0],[2,2,0,0],[2,3,3,2],[2,2,2,1]],[[1,2,0,0],[2,2,0,0],[3,3,3,2],[1,2,2,1]],[[1,2,0,0],[2,1,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,1,3,0],[2,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,1,3,0],[3,3,3,2],[1,2,1,0]],[[1,2,0,0],[2,1,3,0],[2,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,1,3,0],[2,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,1,3,0],[3,3,3,1],[1,2,1,1]],[[1,2,0,0],[2,1,3,0],[2,3,3,0],[1,2,3,1]],[[1,2,0,0],[2,1,3,0],[2,3,3,0],[1,3,2,1]],[[1,2,0,0],[2,1,3,0],[2,3,3,0],[2,2,2,1]],[[1,2,0,0],[2,1,3,0],[3,3,3,0],[1,2,2,1]],[[1,2,0,0],[2,1,3,0],[2,3,2,2],[1,3,2,0]],[[1,2,0,0],[2,1,3,0],[2,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,1,3,0],[3,3,2,2],[1,2,2,0]],[[1,2,0,0],[2,1,3,0],[2,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,1,3,0],[2,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,1,3,0],[2,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,1,3,0],[3,3,2,1],[1,2,2,1]],[[1,2,0,0],[2,1,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,0,0],[2,1,2,2],[2,3,3,1],[2,2,1,0]],[[1,2,0,0],[2,1,2,2],[3,3,3,1],[1,2,1,0]],[[1,2,0,0],[2,1,2,2],[2,3,3,0],[1,3,1,1]],[[1,2,0,0],[2,1,2,2],[2,3,3,0],[2,2,1,1]],[[1,2,0,0],[2,1,2,2],[3,3,3,0],[1,2,1,1]],[[1,2,0,0],[2,1,2,2],[2,3,2,1],[1,3,2,0]],[[1,2,0,0],[2,1,2,2],[2,3,2,1],[2,2,2,0]],[[1,2,0,0],[2,1,2,2],[3,3,2,1],[1,2,2,0]],[[1,2,0,0],[2,1,2,2],[2,3,2,0],[1,2,3,1]],[[1,2,0,0],[2,1,2,2],[2,3,2,0],[1,3,2,1]],[[1,2,0,0],[2,1,2,2],[2,3,2,0],[2,2,2,1]],[[1,2,0,0],[2,1,2,2],[3,3,2,0],[1,2,2,1]],[[1,2,0,0],[2,1,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,1,2,1],[2,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,1,2,1],[3,3,3,2],[1,2,1,0]],[[1,2,0,0],[2,1,2,1],[2,3,3,2],[1,3,0,1]],[[1,2,0,0],[2,1,2,1],[2,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,1,2,1],[3,3,3,2],[1,2,0,1]],[[1,2,0,0],[2,1,2,1],[2,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,1,2,1],[2,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,1,2,1],[3,3,3,1],[1,2,1,1]],[[1,2,0,0],[2,1,2,1],[2,3,3,0],[1,2,3,1]],[[1,2,0,0],[2,1,2,1],[2,3,3,0],[1,3,2,1]],[[1,2,0,0],[2,1,2,1],[2,3,3,0],[2,2,2,1]],[[1,2,0,0],[2,1,2,1],[3,3,3,0],[1,2,2,1]],[[1,2,0,0],[2,1,2,1],[2,3,2,2],[1,2,3,0]],[[1,2,0,0],[2,1,2,1],[2,3,2,2],[1,3,2,0]],[[1,2,0,0],[2,1,2,1],[2,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,1,2,1],[3,3,2,2],[1,2,2,0]],[[1,2,0,0],[2,1,2,1],[2,3,2,1],[1,2,2,2]],[[1,2,0,0],[2,1,2,1],[2,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,1,2,1],[2,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,1,2,1],[2,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,1,2,1],[3,3,2,1],[1,2,2,1]],[[1,2,0,0],[2,1,2,1],[2,3,1,2],[1,2,2,2]],[[1,2,0,0],[2,1,2,1],[2,3,1,2],[1,2,3,1]],[[1,2,0,0],[2,1,2,1],[2,3,1,2],[1,3,2,1]],[[1,2,0,0],[2,1,2,1],[2,3,1,2],[2,2,2,1]],[[1,2,0,0],[2,1,2,1],[3,3,1,2],[1,2,2,1]],[[1,2,0,0],[2,1,2,0],[2,3,3,2],[1,3,1,1]],[[1,2,0,0],[2,1,2,0],[2,3,3,2],[2,2,1,1]],[[1,2,0,0],[2,1,2,0],[3,3,3,2],[1,2,1,1]],[[1,2,0,0],[2,1,2,0],[2,3,2,2],[1,2,2,2]],[[1,2,0,0],[2,1,2,0],[2,3,2,2],[1,2,3,1]],[[1,2,0,0],[2,1,2,0],[2,3,2,2],[1,3,2,1]],[[1,2,0,0],[2,1,2,0],[2,3,2,2],[2,2,2,1]],[[1,2,0,0],[2,1,2,0],[3,3,2,2],[1,2,2,1]],[[1,2,0,0],[2,1,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,0,0],[2,1,1,2],[2,3,3,2],[2,2,1,0]],[[1,2,0,0],[2,1,1,2],[3,3,3,2],[1,2,1,0]],[[1,2,0,0],[2,1,1,2],[2,3,3,2],[1,3,0,1]],[[1,2,0,0],[2,1,1,2],[2,3,3,2],[2,2,0,1]],[[1,2,0,0],[2,1,1,2],[3,3,3,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,1],[2,0,1,1],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[2,0,1,1],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[2,0,1,1],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[2,0,1,1],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,0,1,2],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[2,0,1,2],[0,2,2,1]],[[1,1,2,1],[1,4,3,1],[2,0,1,2],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[2,0,1,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,0,1,2],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[2,0,1,2],[1,1,2,1]],[[1,1,2,1],[1,4,3,1],[2,0,1,2],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[2,0,1,2],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[2,0,1,2],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[2,0,1,2],[1,2,1,1]],[[1,1,2,1],[1,4,3,1],[2,0,1,2],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[2,0,1,2],[1,2,1,1]],[[1,1,3,1],[1,3,3,1],[2,0,1,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,1],[2,0,1,2],[1,2,2,0]],[[1,1,2,1],[1,4,3,1],[2,0,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,4,1],[2,0,1,2],[1,2,2,0]],[[1,1,3,1],[1,3,3,1],[2,0,2,0],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[2,0,2,0],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[2,0,2,0],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[2,0,2,0],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,0,2,1],[1,2,2,0]],[[1,1,2,2],[1,3,3,1],[2,0,2,1],[1,2,2,0]],[[1,1,2,1],[1,4,3,1],[2,0,2,1],[1,2,2,0]],[[1,1,2,1],[1,3,4,1],[2,0,2,1],[1,2,2,0]],[[1,1,3,1],[1,3,3,1],[2,0,2,2],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[2,0,2,2],[0,2,1,1]],[[1,1,2,1],[1,4,3,1],[2,0,2,2],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[2,0,2,2],[0,2,1,1]],[[1,1,3,1],[1,3,3,1],[2,0,2,2],[0,2,2,0]],[[1,1,2,2],[1,3,3,1],[2,0,2,2],[0,2,2,0]],[[1,1,2,1],[1,4,3,1],[2,0,2,2],[0,2,2,0]],[[1,1,2,1],[1,3,4,1],[2,0,2,2],[0,2,2,0]],[[1,1,3,1],[1,3,3,1],[2,0,2,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[2,0,2,2],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[2,0,2,2],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[2,0,2,2],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,0,2,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[2,0,2,2],[1,1,2,0]],[[1,1,2,1],[1,4,3,1],[2,0,2,2],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[2,0,2,2],[1,1,2,0]],[[1,1,3,1],[1,3,3,1],[2,0,2,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,1],[2,0,2,2],[1,2,0,1]],[[1,1,2,1],[1,4,3,1],[2,0,2,2],[1,2,0,1]],[[1,1,2,1],[1,3,4,1],[2,0,2,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,1],[2,0,2,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,1],[2,0,2,2],[1,2,1,0]],[[1,1,2,1],[1,4,3,1],[2,0,2,2],[1,2,1,0]],[[1,1,2,1],[1,3,4,1],[2,0,2,2],[1,2,1,0]],[[1,2,0,0],[2,1,1,2],[2,3,3,1],[1,3,1,1]],[[1,2,0,0],[2,1,1,2],[2,3,3,1],[2,2,1,1]],[[1,2,0,0],[2,1,1,2],[3,3,3,1],[1,2,1,1]],[[1,2,0,0],[2,1,1,2],[2,3,2,2],[1,2,3,0]],[[1,2,0,0],[2,1,1,2],[2,3,2,2],[1,3,2,0]],[[1,1,3,1],[1,3,3,1],[2,0,3,0],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[2,0,3,0],[0,2,2,1]],[[1,1,2,1],[1,4,3,1],[2,0,3,0],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[2,0,3,0],[0,2,2,1]],[[1,1,2,1],[1,3,3,1],[2,0,4,0],[0,2,2,1]],[[1,1,2,1],[1,3,3,1],[2,0,3,0],[0,3,2,1]],[[1,1,2,1],[1,3,3,1],[2,0,3,0],[0,2,3,1]],[[1,1,2,1],[1,3,3,1],[2,0,3,0],[0,2,2,2]],[[1,1,3,1],[1,3,3,1],[2,0,3,0],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[2,0,3,0],[1,1,2,1]],[[1,1,2,1],[1,4,3,1],[2,0,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[2,0,3,0],[1,1,2,1]],[[1,1,2,1],[1,3,3,1],[2,0,4,0],[1,1,2,1]],[[1,1,2,1],[1,3,3,1],[2,0,3,0],[1,1,3,1]],[[1,1,2,1],[1,3,3,1],[2,0,3,0],[1,1,2,2]],[[1,1,3,1],[1,3,3,1],[2,0,3,0],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[2,0,3,0],[1,2,1,1]],[[1,1,2,1],[1,4,3,1],[2,0,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[2,0,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,3,1],[2,0,4,0],[1,2,1,1]],[[1,1,3,1],[1,3,3,1],[2,0,3,1],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[2,0,3,1],[0,2,1,1]],[[1,1,2,1],[1,4,3,1],[2,0,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[2,0,3,1],[0,2,1,1]],[[1,1,2,1],[1,3,3,1],[2,0,4,1],[0,2,1,1]],[[1,1,3,1],[1,3,3,1],[2,0,3,1],[0,2,2,0]],[[1,1,2,2],[1,3,3,1],[2,0,3,1],[0,2,2,0]],[[1,1,2,1],[1,4,3,1],[2,0,3,1],[0,2,2,0]],[[1,1,2,1],[1,3,4,1],[2,0,3,1],[0,2,2,0]],[[1,1,2,1],[1,3,3,1],[2,0,4,1],[0,2,2,0]],[[1,1,2,1],[1,3,3,1],[2,0,3,1],[0,3,2,0]],[[1,1,2,1],[1,3,3,1],[2,0,3,1],[0,2,3,0]],[[1,1,3,1],[1,3,3,1],[2,0,3,1],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[2,0,3,1],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[2,0,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[2,0,3,1],[1,1,1,1]],[[1,1,2,1],[1,3,3,1],[2,0,4,1],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,0,3,1],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[2,0,3,1],[1,1,2,0]],[[1,1,2,1],[1,4,3,1],[2,0,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[2,0,3,1],[1,1,2,0]],[[1,1,2,1],[1,3,3,1],[2,0,4,1],[1,1,2,0]],[[1,1,2,1],[1,3,3,1],[2,0,3,1],[1,1,3,0]],[[1,1,3,1],[1,3,3,1],[2,0,3,1],[1,2,0,1]],[[1,1,2,2],[1,3,3,1],[2,0,3,1],[1,2,0,1]],[[1,1,2,1],[1,4,3,1],[2,0,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,4,1],[2,0,3,1],[1,2,0,1]],[[1,1,2,1],[1,3,3,1],[2,0,4,1],[1,2,0,1]],[[1,1,3,1],[1,3,3,1],[2,0,3,1],[1,2,1,0]],[[1,1,2,2],[1,3,3,1],[2,0,3,1],[1,2,1,0]],[[1,1,2,1],[1,4,3,1],[2,0,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,4,1],[2,0,3,1],[1,2,1,0]],[[1,1,2,1],[1,3,3,1],[2,0,4,1],[1,2,1,0]],[[1,2,0,0],[2,1,1,2],[2,3,2,2],[2,2,2,0]],[[1,2,0,0],[2,1,1,2],[3,3,2,2],[1,2,2,0]],[[1,2,0,0],[2,1,1,2],[2,3,2,1],[1,2,2,2]],[[1,2,0,0],[2,1,1,2],[2,3,2,1],[1,2,3,1]],[[1,2,0,0],[2,1,1,2],[2,3,2,1],[1,3,2,1]],[[1,2,0,0],[2,1,1,2],[2,3,2,1],[2,2,2,1]],[[1,2,0,0],[2,1,1,2],[3,3,2,1],[1,2,2,1]],[[1,2,0,0],[2,1,1,2],[2,3,1,2],[1,2,2,2]],[[1,2,0,0],[2,1,1,2],[2,3,1,2],[1,2,3,1]],[[1,2,0,0],[2,1,1,2],[2,3,1,2],[1,3,2,1]],[[1,1,3,1],[1,3,3,1],[2,0,3,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,1],[2,0,3,2],[0,0,2,1]],[[1,1,2,1],[1,3,4,1],[2,0,3,2],[0,0,2,1]],[[1,1,3,1],[1,3,3,1],[2,0,3,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[2,0,3,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[2,0,3,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,0,3,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[2,0,3,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[2,0,3,2],[0,1,2,0]],[[1,2,0,0],[2,1,1,2],[2,3,1,2],[2,2,2,1]],[[1,2,0,0],[2,1,1,2],[3,3,1,2],[1,2,2,1]],[[1,2,0,0],[2,1,1,1],[2,3,3,2],[1,2,3,0]],[[1,2,0,0],[2,1,1,1],[2,3,3,2],[1,3,2,0]],[[1,1,3,1],[1,3,3,1],[2,0,3,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,1],[2,0,3,2],[1,0,1,1]],[[1,1,2,1],[1,3,4,1],[2,0,3,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[2,0,3,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[2,0,3,2],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[2,0,3,2],[1,0,2,0]],[[1,2,0,0],[2,1,1,1],[2,3,3,2],[2,2,2,0]],[[1,2,0,0],[2,1,1,1],[3,3,3,2],[1,2,2,0]],[[1,2,0,0],[2,1,1,1],[2,3,3,1],[1,2,2,2]],[[1,2,0,0],[2,1,1,1],[2,3,3,1],[1,2,3,1]],[[1,2,0,0],[2,1,1,1],[2,3,3,1],[1,3,2,1]],[[1,2,0,0],[2,1,1,1],[2,3,3,1],[2,2,2,1]],[[1,2,0,0],[2,1,1,1],[3,3,3,1],[1,2,2,1]],[[1,2,0,0],[2,1,1,0],[2,3,3,2],[1,2,2,2]],[[1,2,0,0],[2,1,1,0],[2,3,3,2],[1,2,3,1]],[[1,2,0,0],[2,1,1,0],[2,3,3,2],[1,3,2,1]],[[1,2,0,0],[2,1,1,0],[2,3,3,2],[2,2,2,1]],[[1,2,0,0],[2,1,1,0],[3,3,3,2],[1,2,2,1]],[[1,2,0,0],[2,1,0,2],[2,3,3,2],[1,2,3,0]],[[1,2,0,0],[2,1,0,2],[2,3,3,2],[1,3,2,0]],[[1,2,0,0],[2,1,0,2],[2,3,3,2],[2,2,2,0]],[[1,2,0,0],[2,1,0,2],[3,3,3,2],[1,2,2,0]],[[1,2,0,0],[2,1,0,2],[2,3,3,1],[1,2,2,2]],[[1,2,0,0],[2,1,0,2],[2,3,3,1],[1,2,3,1]],[[1,2,0,0],[2,1,0,2],[2,3,3,1],[1,3,2,1]],[[1,2,0,0],[2,1,0,2],[2,3,3,1],[2,2,2,1]],[[1,2,0,0],[2,1,0,2],[3,3,3,1],[1,2,2,1]],[[1,2,0,0],[2,1,0,2],[2,3,2,2],[1,2,2,2]],[[1,2,0,0],[2,1,0,2],[2,3,2,2],[1,2,3,1]],[[1,2,0,0],[2,1,0,2],[2,3,2,2],[1,3,2,1]],[[1,2,0,0],[2,1,0,2],[2,3,2,2],[2,2,2,1]],[[1,2,0,0],[2,1,0,2],[3,3,2,2],[1,2,2,1]],[[1,2,0,0],[2,1,0,1],[2,3,3,2],[1,2,2,2]],[[1,2,0,0],[2,1,0,1],[2,3,3,2],[1,2,3,1]],[[1,2,0,0],[2,1,0,1],[2,3,3,2],[1,3,2,1]],[[1,2,0,0],[2,1,0,1],[2,3,3,2],[2,2,2,1]],[[1,2,0,0],[2,1,0,1],[3,3,3,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,1,0,1],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[2,1,0,1],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[2,1,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[2,1,0,1],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,1,0,2],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[2,1,0,2],[0,2,2,1]],[[1,1,2,1],[1,4,3,1],[2,1,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[2,1,0,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,1,0,2],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[2,1,0,2],[1,1,2,1]],[[1,1,2,1],[1,4,3,1],[2,1,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[2,1,0,2],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[2,1,0,2],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[2,1,0,2],[1,2,1,1]],[[1,1,2,1],[1,4,3,1],[2,1,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[2,1,0,2],[1,2,1,1]],[[1,1,3,1],[1,3,3,1],[2,1,0,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,1],[2,1,0,2],[1,2,2,0]],[[1,1,2,1],[1,4,3,1],[2,1,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,4,1],[2,1,0,2],[1,2,2,0]],[[1,1,3,1],[1,3,3,1],[2,1,1,0],[1,2,2,1]],[[1,1,2,2],[1,3,3,1],[2,1,1,0],[1,2,2,1]],[[1,1,2,1],[1,4,3,1],[2,1,1,0],[1,2,2,1]],[[1,1,2,1],[1,3,4,1],[2,1,1,0],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,1,1,1],[1,2,2,0]],[[1,1,2,2],[1,3,3,1],[2,1,1,1],[1,2,2,0]],[[1,1,2,1],[1,4,3,1],[2,1,1,1],[1,2,2,0]],[[1,1,2,1],[1,3,4,1],[2,1,1,1],[1,2,2,0]],[[1,1,3,1],[1,3,3,1],[2,1,1,2],[0,1,2,1]],[[1,1,2,2],[1,3,3,1],[2,1,1,2],[0,1,2,1]],[[1,1,2,1],[1,4,3,1],[2,1,1,2],[0,1,2,1]],[[1,1,2,1],[1,3,4,1],[2,1,1,2],[0,1,2,1]],[[1,1,3,1],[1,3,3,1],[2,1,1,2],[1,0,2,1]],[[1,1,2,2],[1,3,3,1],[2,1,1,2],[1,0,2,1]],[[1,1,2,1],[1,4,3,1],[2,1,1,2],[1,0,2,1]],[[1,1,2,1],[1,3,4,1],[2,1,1,2],[1,0,2,1]],[[1,1,3,1],[1,3,3,1],[2,1,1,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,1],[2,1,1,2],[1,2,0,1]],[[1,1,2,1],[1,4,3,1],[2,1,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,4,1],[2,1,1,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,1],[2,1,1,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,1],[2,1,1,2],[1,2,1,0]],[[1,1,2,1],[1,4,3,1],[2,1,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,4,1],[2,1,1,2],[1,2,1,0]],[[1,1,3,1],[1,3,3,1],[2,1,2,0],[1,2,1,1]],[[1,1,2,2],[1,3,3,1],[2,1,2,0],[1,2,1,1]],[[1,1,2,1],[1,4,3,1],[2,1,2,0],[1,2,1,1]],[[1,1,2,1],[1,3,4,1],[2,1,2,0],[1,2,1,1]],[[1,1,3,1],[1,3,3,1],[2,1,2,1],[1,2,0,1]],[[1,1,2,2],[1,3,3,1],[2,1,2,1],[1,2,0,1]],[[1,1,2,1],[1,4,3,1],[2,1,2,1],[1,2,0,1]],[[1,1,2,1],[1,3,4,1],[2,1,2,1],[1,2,0,1]],[[1,1,3,1],[1,3,3,1],[2,1,2,1],[1,2,1,0]],[[1,1,2,2],[1,3,3,1],[2,1,2,1],[1,2,1,0]],[[1,1,2,1],[1,4,3,1],[2,1,2,1],[1,2,1,0]],[[1,1,2,1],[1,3,4,1],[2,1,2,1],[1,2,1,0]],[[1,1,3,1],[1,3,3,1],[2,1,2,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,1],[2,1,2,2],[0,0,2,1]],[[1,1,2,1],[1,4,3,1],[2,1,2,2],[0,0,2,1]],[[1,1,2,1],[1,3,4,1],[2,1,2,2],[0,0,2,1]],[[1,1,3,1],[1,3,3,1],[2,1,2,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[2,1,2,2],[0,1,1,1]],[[1,1,2,1],[1,4,3,1],[2,1,2,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[2,1,2,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,1,2,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[2,1,2,2],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[2,1,2,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[2,1,2,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,1],[2,1,2,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,1],[2,1,2,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,1],[2,1,2,2],[0,2,0,1]],[[1,1,2,1],[1,3,4,1],[2,1,2,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,1],[2,1,2,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[2,1,2,2],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[2,1,2,2],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[2,1,2,2],[0,2,1,0]],[[1,1,3,1],[1,3,3,1],[2,1,2,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,1],[2,1,2,2],[1,0,1,1]],[[1,1,2,1],[1,4,3,1],[2,1,2,2],[1,0,1,1]],[[1,1,2,1],[1,3,4,1],[2,1,2,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[2,1,2,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[2,1,2,2],[1,0,2,0]],[[1,1,2,1],[1,4,3,1],[2,1,2,2],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[2,1,2,2],[1,0,2,0]],[[1,1,3,1],[1,3,3,1],[2,1,2,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,1],[2,1,2,2],[1,1,0,1]],[[1,1,2,1],[1,4,3,1],[2,1,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,4,1],[2,1,2,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,1],[2,1,2,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,1],[2,1,2,2],[1,1,1,0]],[[1,1,2,1],[1,4,3,1],[2,1,2,2],[1,1,1,0]],[[1,1,2,1],[1,3,4,1],[2,1,2,2],[1,1,1,0]],[[1,2,0,0],[2,0,0,2],[2,3,3,2],[1,2,2,2]],[[1,2,0,0],[2,0,0,2],[2,3,3,2],[1,2,3,1]],[[1,2,0,0],[2,0,0,2],[2,3,3,2],[1,3,2,1]],[[1,2,0,0],[2,0,0,2],[2,3,3,2],[2,2,2,1]],[[1,2,0,0],[2,0,0,2],[3,3,3,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,1,3,0],[0,1,2,1]],[[1,1,2,2],[1,3,3,1],[2,1,3,0],[0,1,2,1]],[[1,1,2,1],[1,4,3,1],[2,1,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,4,1],[2,1,3,0],[0,1,2,1]],[[1,1,2,1],[1,3,3,1],[2,1,4,0],[0,1,2,1]],[[1,1,2,1],[1,3,3,1],[2,1,3,0],[0,1,3,1]],[[1,1,2,1],[1,3,3,1],[2,1,3,0],[0,1,2,2]],[[1,1,3,1],[1,3,3,1],[2,1,3,0],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[2,1,3,0],[0,2,1,1]],[[1,1,2,1],[1,4,3,1],[2,1,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[2,1,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,3,1],[2,1,4,0],[0,2,1,1]],[[1,1,3,1],[1,3,3,1],[2,1,3,0],[1,0,2,1]],[[1,1,2,2],[1,3,3,1],[2,1,3,0],[1,0,2,1]],[[1,1,2,1],[1,4,3,1],[2,1,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,4,1],[2,1,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,3,1],[2,1,4,0],[1,0,2,1]],[[1,1,2,1],[1,3,3,1],[2,1,3,0],[1,0,3,1]],[[1,1,2,1],[1,3,3,1],[2,1,3,0],[1,0,2,2]],[[1,1,3,1],[1,3,3,1],[2,1,3,0],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[2,1,3,0],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[2,1,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[2,1,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,3,1],[2,1,4,0],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,1,3,0],[1,2,1,0]],[[1,1,2,2],[1,3,3,1],[2,1,3,0],[1,2,1,0]],[[1,1,2,1],[1,4,3,1],[2,1,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,4,1],[2,1,3,0],[1,2,1,0]],[[1,2,0,0],[1,3,3,2],[2,3,3,1],[2,1,0,0]],[[1,2,0,0],[1,3,3,2],[2,4,3,1],[1,1,0,0]],[[1,2,0,0],[1,3,3,2],[3,3,3,1],[1,1,0,0]],[[1,2,0,0],[1,4,3,2],[2,3,3,1],[1,1,0,0]],[[1,1,3,1],[1,3,3,1],[2,1,3,1],[0,0,2,1]],[[1,1,2,2],[1,3,3,1],[2,1,3,1],[0,0,2,1]],[[1,1,2,1],[1,4,3,1],[2,1,3,1],[0,0,2,1]],[[1,1,2,1],[1,3,4,1],[2,1,3,1],[0,0,2,1]],[[1,1,2,1],[1,3,3,1],[2,1,4,1],[0,0,2,1]],[[1,1,3,1],[1,3,3,1],[2,1,3,1],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[2,1,3,1],[0,1,1,1]],[[1,1,2,1],[1,4,3,1],[2,1,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[2,1,3,1],[0,1,1,1]],[[1,1,2,1],[1,3,3,1],[2,1,4,1],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,1,3,1],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[2,1,3,1],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[2,1,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[2,1,3,1],[0,1,2,0]],[[1,1,2,1],[1,3,3,1],[2,1,4,1],[0,1,2,0]],[[1,1,2,1],[1,3,3,1],[2,1,3,1],[0,1,3,0]],[[1,1,3,1],[1,3,3,1],[2,1,3,1],[0,2,0,1]],[[1,1,2,2],[1,3,3,1],[2,1,3,1],[0,2,0,1]],[[1,1,2,1],[1,4,3,1],[2,1,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,4,1],[2,1,3,1],[0,2,0,1]],[[1,1,2,1],[1,3,3,1],[2,1,4,1],[0,2,0,1]],[[1,1,3,1],[1,3,3,1],[2,1,3,1],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[2,1,3,1],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[2,1,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[2,1,3,1],[0,2,1,0]],[[1,1,2,1],[1,3,3,1],[2,1,4,1],[0,2,1,0]],[[1,1,3,1],[1,3,3,1],[2,1,3,1],[1,0,1,1]],[[1,1,2,2],[1,3,3,1],[2,1,3,1],[1,0,1,1]],[[1,1,2,1],[1,4,3,1],[2,1,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,4,1],[2,1,3,1],[1,0,1,1]],[[1,1,2,1],[1,3,3,1],[2,1,4,1],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[2,1,3,1],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[2,1,3,1],[1,0,2,0]],[[1,1,2,1],[1,4,3,1],[2,1,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[2,1,3,1],[1,0,2,0]],[[1,1,2,1],[1,3,3,1],[2,1,4,1],[1,0,2,0]],[[1,1,2,1],[1,3,3,1],[2,1,3,1],[1,0,3,0]],[[1,1,3,1],[1,3,3,1],[2,1,3,1],[1,1,0,1]],[[1,1,2,2],[1,3,3,1],[2,1,3,1],[1,1,0,1]],[[1,1,2,1],[1,4,3,1],[2,1,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,4,1],[2,1,3,1],[1,1,0,1]],[[1,1,2,1],[1,3,3,1],[2,1,4,1],[1,1,0,1]],[[1,1,3,1],[1,3,3,1],[2,1,3,1],[1,1,1,0]],[[1,1,2,2],[1,3,3,1],[2,1,3,1],[1,1,1,0]],[[1,1,2,1],[1,4,3,1],[2,1,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,4,1],[2,1,3,1],[1,1,1,0]],[[1,1,2,1],[1,3,3,1],[2,1,4,1],[1,1,1,0]],[[1,2,0,0],[1,3,3,2],[2,4,3,1],[0,2,0,0]],[[1,2,0,0],[1,3,3,2],[3,3,3,1],[0,2,0,0]],[[1,2,0,0],[1,4,3,2],[2,3,3,1],[0,2,0,0]],[[1,1,3,1],[1,3,3,1],[2,1,3,2],[0,1,0,1]],[[1,1,2,2],[1,3,3,1],[2,1,3,2],[0,1,0,1]],[[1,1,2,1],[1,4,3,1],[2,1,3,2],[0,1,0,1]],[[1,1,2,1],[1,3,4,1],[2,1,3,2],[0,1,0,1]],[[1,2,0,0],[1,3,3,2],[2,3,3,0],[2,2,0,0]],[[1,2,0,0],[1,3,3,2],[2,4,3,0],[1,2,0,0]],[[1,2,0,0],[1,3,3,2],[3,3,3,0],[1,2,0,0]],[[1,2,0,0],[1,4,3,2],[2,3,3,0],[1,2,0,0]],[[1,2,0,0],[1,3,3,2],[2,3,3,0],[2,1,1,0]],[[1,2,0,0],[1,3,3,2],[2,4,3,0],[1,1,1,0]],[[1,2,0,0],[1,3,3,2],[3,3,3,0],[1,1,1,0]],[[1,2,0,0],[1,4,3,2],[2,3,3,0],[1,1,1,0]],[[1,2,0,0],[1,3,3,2],[2,3,3,0],[2,0,2,0]],[[1,2,0,0],[1,3,3,2],[2,4,3,0],[1,0,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,3,0],[1,0,2,0]],[[1,2,0,0],[1,4,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,3,1],[1,3,3,1],[2,1,3,2],[1,0,0,1]],[[1,1,2,2],[1,3,3,1],[2,1,3,2],[1,0,0,1]],[[1,1,2,1],[1,4,3,1],[2,1,3,2],[1,0,0,1]],[[1,1,2,1],[1,3,4,1],[2,1,3,2],[1,0,0,1]],[[1,2,0,0],[1,3,3,2],[2,3,3,0],[0,3,1,0]],[[1,2,0,0],[1,3,3,2],[2,4,3,0],[0,2,1,0]],[[1,2,0,0],[1,3,3,2],[3,3,3,0],[0,2,1,0]],[[1,2,0,0],[1,4,3,2],[2,3,3,0],[0,2,1,0]],[[1,2,0,0],[1,3,3,2],[2,4,3,0],[0,1,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,3,0],[0,1,2,0]],[[1,2,0,0],[1,4,3,2],[2,3,3,0],[0,1,2,0]],[[1,2,0,0],[1,3,3,2],[2,3,2,1],[2,2,0,0]],[[1,2,0,0],[1,3,3,2],[2,4,2,1],[1,2,0,0]],[[1,2,0,0],[1,3,3,2],[3,3,2,1],[1,2,0,0]],[[1,2,0,0],[1,4,3,2],[2,3,2,1],[1,2,0,0]],[[1,1,3,1],[1,3,3,1],[2,2,0,1],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[2,2,0,1],[0,2,2,1]],[[1,1,2,1],[1,4,3,1],[2,2,0,1],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[2,2,0,1],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,0,1],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[2,2,0,1],[1,1,2,1]],[[1,1,2,1],[1,4,3,1],[2,2,0,1],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[2,2,0,1],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,0,2],[0,1,2,1]],[[1,1,2,2],[1,3,3,1],[2,2,0,2],[0,1,2,1]],[[1,1,2,1],[1,4,3,1],[2,2,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,4,1],[2,2,0,2],[0,1,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,0,2],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[2,2,0,2],[0,2,1,1]],[[1,1,2,1],[1,4,3,1],[2,2,0,2],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[2,2,0,2],[0,2,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,0,2],[0,2,2,0]],[[1,1,2,2],[1,3,3,1],[2,2,0,2],[0,2,2,0]],[[1,1,2,1],[1,4,3,1],[2,2,0,2],[0,2,2,0]],[[1,1,2,1],[1,3,4,1],[2,2,0,2],[0,2,2,0]],[[1,1,3,1],[1,3,3,1],[2,2,0,2],[1,0,2,1]],[[1,1,2,2],[1,3,3,1],[2,2,0,2],[1,0,2,1]],[[1,1,2,1],[1,4,3,1],[2,2,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,4,1],[2,2,0,2],[1,0,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,0,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[2,2,0,2],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[2,2,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[2,2,0,2],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,0,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[2,2,0,2],[1,1,2,0]],[[1,1,2,1],[1,4,3,1],[2,2,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[2,2,0,2],[1,1,2,0]],[[1,2,0,0],[1,3,3,2],[2,3,2,1],[2,1,1,0]],[[1,2,0,0],[1,3,3,2],[2,4,2,1],[1,1,1,0]],[[1,2,0,0],[1,3,3,2],[3,3,2,1],[1,1,1,0]],[[1,2,0,0],[1,4,3,2],[2,3,2,1],[1,1,1,0]],[[1,2,0,0],[1,3,3,2],[2,3,2,1],[2,1,0,1]],[[1,2,0,0],[1,3,3,2],[2,4,2,1],[1,1,0,1]],[[1,1,3,1],[1,3,3,1],[2,2,1,0],[0,2,2,1]],[[1,1,2,2],[1,3,3,1],[2,2,1,0],[0,2,2,1]],[[1,1,2,1],[1,4,3,1],[2,2,1,0],[0,2,2,1]],[[1,1,2,1],[1,3,4,1],[2,2,1,0],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,1,0],[1,1,2,1]],[[1,1,2,2],[1,3,3,1],[2,2,1,0],[1,1,2,1]],[[1,1,2,1],[1,4,3,1],[2,2,1,0],[1,1,2,1]],[[1,1,2,1],[1,3,4,1],[2,2,1,0],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,1,1],[0,2,2,0]],[[1,1,2,2],[1,3,3,1],[2,2,1,1],[0,2,2,0]],[[1,1,2,1],[1,4,3,1],[2,2,1,1],[0,2,2,0]],[[1,1,2,1],[1,3,4,1],[2,2,1,1],[0,2,2,0]],[[1,1,3,1],[1,3,3,1],[2,2,1,1],[1,1,2,0]],[[1,1,2,2],[1,3,3,1],[2,2,1,1],[1,1,2,0]],[[1,1,2,1],[1,4,3,1],[2,2,1,1],[1,1,2,0]],[[1,1,2,1],[1,3,4,1],[2,2,1,1],[1,1,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,2,1],[1,1,0,1]],[[1,2,0,0],[1,4,3,2],[2,3,2,1],[1,1,0,1]],[[1,2,0,0],[1,3,3,2],[2,3,2,1],[2,0,2,0]],[[1,2,0,0],[1,3,3,2],[2,4,2,1],[1,0,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,2,1],[1,0,2,0]],[[1,1,3,1],[1,3,3,1],[2,2,1,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[2,2,1,2],[0,1,1,1]],[[1,1,2,1],[1,4,3,1],[2,2,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[2,2,1,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,1,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[2,2,1,2],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[2,2,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[2,2,1,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,1],[2,2,1,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,1],[2,2,1,2],[0,2,0,1]],[[1,1,2,1],[1,4,3,1],[2,2,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,4,1],[2,2,1,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,1],[2,2,1,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[2,2,1,2],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[2,2,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[2,2,1,2],[0,2,1,0]],[[1,2,0,0],[1,4,3,2],[2,3,2,1],[1,0,2,0]],[[1,2,0,0],[1,3,3,2],[2,3,2,1],[2,0,1,1]],[[1,2,0,0],[1,3,3,2],[2,4,2,1],[1,0,1,1]],[[1,2,0,0],[1,3,3,2],[3,3,2,1],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,1,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,1],[2,2,1,2],[1,0,1,1]],[[1,1,2,1],[1,4,3,1],[2,2,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,4,1],[2,2,1,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,1,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[2,2,1,2],[1,0,2,0]],[[1,1,2,1],[1,4,3,1],[2,2,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[2,2,1,2],[1,0,2,0]],[[1,1,3,1],[1,3,3,1],[2,2,1,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,1],[2,2,1,2],[1,1,0,1]],[[1,1,2,1],[1,4,3,1],[2,2,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,4,1],[2,2,1,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,1],[2,2,1,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,1],[2,2,1,2],[1,1,1,0]],[[1,1,2,1],[1,4,3,1],[2,2,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,4,1],[2,2,1,2],[1,1,1,0]],[[1,2,0,0],[1,4,3,2],[2,3,2,1],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,1,2],[1,2,0,0]],[[1,1,2,2],[1,3,3,1],[2,2,1,2],[1,2,0,0]],[[1,1,2,1],[1,4,3,1],[2,2,1,2],[1,2,0,0]],[[1,1,2,1],[1,3,4,1],[2,2,1,2],[1,2,0,0]],[[1,2,0,0],[1,3,3,2],[2,3,2,1],[0,3,1,0]],[[1,2,0,0],[1,3,3,2],[2,4,2,1],[0,2,1,0]],[[1,2,0,0],[1,3,3,2],[3,3,2,1],[0,2,1,0]],[[1,2,0,0],[1,4,3,2],[2,3,2,1],[0,2,1,0]],[[1,2,0,0],[1,3,3,2],[2,3,2,1],[0,3,0,1]],[[1,2,0,0],[1,3,3,2],[2,4,2,1],[0,2,0,1]],[[1,2,0,0],[1,3,3,2],[3,3,2,1],[0,2,0,1]],[[1,2,0,0],[1,4,3,2],[2,3,2,1],[0,2,0,1]],[[1,2,0,0],[1,3,3,2],[2,4,2,1],[0,1,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,2,1],[0,1,2,0]],[[1,2,0,0],[1,4,3,2],[2,3,2,1],[0,1,2,0]],[[1,2,0,0],[1,3,3,2],[2,4,2,1],[0,1,1,1]],[[1,2,0,0],[1,3,3,2],[3,3,2,1],[0,1,1,1]],[[1,2,0,0],[1,4,3,2],[2,3,2,1],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,0],[0,1,2,1]],[[1,1,2,2],[1,3,3,1],[2,2,2,0],[0,1,2,1]],[[1,1,2,1],[1,4,3,1],[2,2,2,0],[0,1,2,1]],[[1,1,2,1],[1,3,4,1],[2,2,2,0],[0,1,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,0],[0,2,1,1]],[[1,1,2,2],[1,3,3,1],[2,2,2,0],[0,2,1,1]],[[1,1,2,1],[1,4,3,1],[2,2,2,0],[0,2,1,1]],[[1,1,2,1],[1,3,4,1],[2,2,2,0],[0,2,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,0],[1,0,2,1]],[[1,1,2,2],[1,3,3,1],[2,2,2,0],[1,0,2,1]],[[1,1,2,1],[1,4,3,1],[2,2,2,0],[1,0,2,1]],[[1,1,2,1],[1,3,4,1],[2,2,2,0],[1,0,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,0],[1,1,1,1]],[[1,1,2,2],[1,3,3,1],[2,2,2,0],[1,1,1,1]],[[1,1,2,1],[1,4,3,1],[2,2,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,4,1],[2,2,2,0],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,0],[1,2,0,1]],[[1,1,2,2],[1,3,3,1],[2,2,2,0],[1,2,0,1]],[[1,1,2,1],[1,4,3,1],[2,2,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,4,1],[2,2,2,0],[1,2,0,1]],[[1,2,0,0],[1,3,3,2],[2,3,2,0],[2,2,0,1]],[[1,2,0,0],[1,3,3,2],[2,4,2,0],[1,2,0,1]],[[1,2,0,0],[1,3,3,2],[3,3,2,0],[1,2,0,1]],[[1,2,0,0],[1,4,3,2],[2,3,2,0],[1,2,0,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,1],[0,1,1,1]],[[1,1,2,2],[1,3,3,1],[2,2,2,1],[0,1,1,1]],[[1,1,2,1],[1,4,3,1],[2,2,2,1],[0,1,1,1]],[[1,1,2,1],[1,3,4,1],[2,2,2,1],[0,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,1],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[2,2,2,1],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[2,2,2,1],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[2,2,2,1],[0,1,2,0]],[[1,1,3,1],[1,3,3,1],[2,2,2,1],[0,2,0,1]],[[1,1,2,2],[1,3,3,1],[2,2,2,1],[0,2,0,1]],[[1,1,2,1],[1,4,3,1],[2,2,2,1],[0,2,0,1]],[[1,1,2,1],[1,3,4,1],[2,2,2,1],[0,2,0,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,1],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[2,2,2,1],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[2,2,2,1],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[2,2,2,1],[0,2,1,0]],[[1,2,0,0],[1,3,3,2],[2,3,2,0],[2,1,1,1]],[[1,2,0,0],[1,3,3,2],[2,4,2,0],[1,1,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,1],[1,0,1,1]],[[1,1,2,2],[1,3,3,1],[2,2,2,1],[1,0,1,1]],[[1,1,2,1],[1,4,3,1],[2,2,2,1],[1,0,1,1]],[[1,1,2,1],[1,3,4,1],[2,2,2,1],[1,0,1,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,1],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[2,2,2,1],[1,0,2,0]],[[1,1,2,1],[1,4,3,1],[2,2,2,1],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[2,2,2,1],[1,0,2,0]],[[1,1,3,1],[1,3,3,1],[2,2,2,1],[1,1,0,1]],[[1,1,2,2],[1,3,3,1],[2,2,2,1],[1,1,0,1]],[[1,1,2,1],[1,4,3,1],[2,2,2,1],[1,1,0,1]],[[1,1,2,1],[1,3,4,1],[2,2,2,1],[1,1,0,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,1],[1,1,1,0]],[[1,1,2,2],[1,3,3,1],[2,2,2,1],[1,1,1,0]],[[1,1,2,1],[1,4,3,1],[2,2,2,1],[1,1,1,0]],[[1,1,2,1],[1,3,4,1],[2,2,2,1],[1,1,1,0]],[[1,2,0,0],[1,3,3,2],[3,3,2,0],[1,1,1,1]],[[1,2,0,0],[1,4,3,2],[2,3,2,0],[1,1,1,1]],[[1,2,0,0],[1,3,3,2],[2,3,2,0],[2,0,2,1]],[[1,2,0,0],[1,3,3,2],[2,4,2,0],[1,0,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,2,1],[1,2,0,0]],[[1,1,2,2],[1,3,3,1],[2,2,2,1],[1,2,0,0]],[[1,1,2,1],[1,4,3,1],[2,2,2,1],[1,2,0,0]],[[1,1,2,1],[1,3,4,1],[2,2,2,1],[1,2,0,0]],[[1,2,0,0],[1,3,3,2],[3,3,2,0],[1,0,2,1]],[[1,2,0,0],[1,4,3,2],[2,3,2,0],[1,0,2,1]],[[1,2,0,0],[1,3,3,2],[2,3,2,0],[0,3,1,1]],[[1,2,0,0],[1,3,3,2],[2,4,2,0],[0,2,1,1]],[[1,2,0,0],[1,3,3,2],[3,3,2,0],[0,2,1,1]],[[1,2,0,0],[1,4,3,2],[2,3,2,0],[0,2,1,1]],[[1,2,0,0],[1,3,3,2],[2,4,2,0],[0,1,2,1]],[[1,2,0,0],[1,3,3,2],[3,3,2,0],[0,1,2,1]],[[1,2,0,0],[1,4,3,2],[2,3,2,0],[0,1,2,1]],[[1,2,0,0],[1,3,3,2],[2,3,1,2],[2,2,0,0]],[[1,2,0,0],[1,3,3,2],[2,4,1,2],[1,2,0,0]],[[1,2,0,0],[1,3,3,2],[3,3,1,2],[1,2,0,0]],[[1,2,0,0],[1,4,3,2],[2,3,1,2],[1,2,0,0]],[[1,2,0,0],[1,3,3,2],[2,3,1,2],[2,1,1,0]],[[1,2,0,0],[1,3,3,2],[2,4,1,2],[1,1,1,0]],[[1,2,0,0],[1,3,3,2],[3,3,1,2],[1,1,1,0]],[[1,2,0,0],[1,4,3,2],[2,3,1,2],[1,1,1,0]],[[1,2,0,0],[1,3,3,2],[2,3,1,2],[2,1,0,1]],[[1,2,0,0],[1,3,3,2],[2,4,1,2],[1,1,0,1]],[[1,2,0,0],[1,3,3,2],[3,3,1,2],[1,1,0,1]],[[1,2,0,0],[1,4,3,2],[2,3,1,2],[1,1,0,1]],[[1,2,0,0],[1,3,3,2],[2,3,1,2],[2,0,2,0]],[[1,2,0,0],[1,3,3,2],[2,4,1,2],[1,0,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,1,2],[1,0,2,0]],[[1,2,0,0],[1,4,3,2],[2,3,1,2],[1,0,2,0]],[[1,2,0,0],[1,3,3,2],[2,3,1,2],[2,0,1,1]],[[1,2,0,0],[1,3,3,2],[2,4,1,2],[1,0,1,1]],[[1,2,0,0],[1,3,3,2],[3,3,1,2],[1,0,1,1]],[[1,2,0,0],[1,4,3,2],[2,3,1,2],[1,0,1,1]],[[1,2,0,0],[1,3,3,2],[2,3,1,2],[0,3,1,0]],[[1,2,0,0],[1,3,3,2],[2,4,1,2],[0,2,1,0]],[[1,2,0,0],[1,3,3,2],[3,3,1,2],[0,2,1,0]],[[1,2,0,0],[1,4,3,2],[2,3,1,2],[0,2,1,0]],[[1,2,0,0],[1,3,3,2],[2,3,1,2],[0,3,0,1]],[[1,2,0,0],[1,3,3,2],[2,4,1,2],[0,2,0,1]],[[1,2,0,0],[1,3,3,2],[3,3,1,2],[0,2,0,1]],[[1,2,0,0],[1,4,3,2],[2,3,1,2],[0,2,0,1]],[[1,2,0,0],[1,3,3,2],[2,4,1,2],[0,1,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,1,2],[0,1,2,0]],[[1,2,0,0],[1,4,3,2],[2,3,1,2],[0,1,2,0]],[[1,2,0,0],[1,3,3,2],[2,4,1,2],[0,1,1,1]],[[1,2,0,0],[1,3,3,2],[3,3,1,2],[0,1,1,1]],[[1,2,0,0],[1,4,3,2],[2,3,1,2],[0,1,1,1]],[[1,2,0,0],[1,3,3,2],[2,3,1,1],[2,1,2,0]],[[1,2,0,0],[1,3,3,2],[2,4,1,1],[1,1,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,1,1],[1,1,2,0]],[[1,2,0,0],[1,4,3,2],[2,3,1,1],[1,1,2,0]],[[1,2,0,0],[1,3,3,2],[2,3,1,1],[0,2,3,0]],[[1,2,0,0],[1,3,3,2],[2,3,1,1],[0,3,2,0]],[[1,2,0,0],[1,3,3,2],[2,4,1,1],[0,2,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,1,1],[0,2,2,0]],[[1,2,0,0],[1,4,3,2],[2,3,1,1],[0,2,2,0]],[[1,1,3,1],[1,3,3,1],[2,2,3,0],[0,1,2,0]],[[1,1,2,2],[1,3,3,1],[2,2,3,0],[0,1,2,0]],[[1,1,2,1],[1,4,3,1],[2,2,3,0],[0,1,2,0]],[[1,1,2,1],[1,3,4,1],[2,2,3,0],[0,1,2,0]],[[1,1,3,1],[1,3,3,1],[2,2,3,0],[0,2,1,0]],[[1,1,2,2],[1,3,3,1],[2,2,3,0],[0,2,1,0]],[[1,1,2,1],[1,4,3,1],[2,2,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,4,1],[2,2,3,0],[0,2,1,0]],[[1,2,0,0],[1,3,3,2],[2,3,1,0],[2,1,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,3,0],[1,0,2,0]],[[1,1,2,2],[1,3,3,1],[2,2,3,0],[1,0,2,0]],[[1,1,2,1],[1,4,3,1],[2,2,3,0],[1,0,2,0]],[[1,1,2,1],[1,3,4,1],[2,2,3,0],[1,0,2,0]],[[1,1,3,1],[1,3,3,1],[2,2,3,0],[1,1,1,0]],[[1,1,2,2],[1,3,3,1],[2,2,3,0],[1,1,1,0]],[[1,1,2,1],[1,4,3,1],[2,2,3,0],[1,1,1,0]],[[1,1,2,1],[1,3,4,1],[2,2,3,0],[1,1,1,0]],[[1,2,0,0],[1,3,3,2],[2,4,1,0],[1,1,2,1]],[[1,2,0,0],[1,3,3,2],[3,3,1,0],[1,1,2,1]],[[1,2,0,0],[1,4,3,2],[2,3,1,0],[1,1,2,1]],[[1,2,0,0],[1,3,3,2],[2,3,1,0],[0,2,2,2]],[[1,2,0,0],[1,3,3,2],[2,3,1,0],[0,2,3,1]],[[1,2,0,0],[1,3,3,2],[2,3,1,0],[0,3,2,1]],[[1,2,0,0],[1,3,3,2],[2,4,1,0],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,3,0],[1,2,0,0]],[[1,1,2,2],[1,3,3,1],[2,2,3,0],[1,2,0,0]],[[1,1,2,1],[1,4,3,1],[2,2,3,0],[1,2,0,0]],[[1,1,2,1],[1,3,4,1],[2,2,3,0],[1,2,0,0]],[[1,2,0,0],[1,3,3,2],[3,3,1,0],[0,2,2,1]],[[1,2,0,0],[1,4,3,2],[2,3,1,0],[0,2,2,1]],[[1,2,0,0],[1,3,3,2],[2,3,0,2],[2,1,2,0]],[[1,2,0,0],[1,3,3,2],[2,4,0,2],[1,1,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,0,2],[1,1,2,0]],[[1,2,0,0],[1,4,3,2],[2,3,0,2],[1,1,2,0]],[[1,2,0,0],[1,3,3,2],[2,3,0,2],[2,1,1,1]],[[1,2,0,0],[1,3,3,2],[2,4,0,2],[1,1,1,1]],[[1,2,0,0],[1,3,3,2],[3,3,0,2],[1,1,1,1]],[[1,2,0,0],[1,4,3,2],[2,3,0,2],[1,1,1,1]],[[1,2,0,0],[1,3,3,2],[2,3,0,2],[2,0,2,1]],[[1,2,0,0],[1,3,3,2],[2,4,0,2],[1,0,2,1]],[[1,2,0,0],[1,3,3,2],[3,3,0,2],[1,0,2,1]],[[1,2,0,0],[1,4,3,2],[2,3,0,2],[1,0,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,3,1],[0,2,0,0]],[[1,1,2,2],[1,3,3,1],[2,2,3,1],[0,2,0,0]],[[1,1,2,1],[1,4,3,1],[2,2,3,1],[0,2,0,0]],[[1,1,2,1],[1,3,4,1],[2,2,3,1],[0,2,0,0]],[[1,2,0,0],[1,3,3,2],[2,3,0,2],[0,2,3,0]],[[1,2,0,0],[1,3,3,2],[2,3,0,2],[0,3,2,0]],[[1,2,0,0],[1,3,3,2],[2,4,0,2],[0,2,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,0,2],[0,2,2,0]],[[1,2,0,0],[1,4,3,2],[2,3,0,2],[0,2,2,0]],[[1,2,0,0],[1,3,3,2],[2,3,0,2],[0,3,1,1]],[[1,2,0,0],[1,3,3,2],[2,4,0,2],[0,2,1,1]],[[1,2,0,0],[1,3,3,2],[3,3,0,2],[0,2,1,1]],[[1,2,0,0],[1,4,3,2],[2,3,0,2],[0,2,1,1]],[[1,2,0,0],[1,3,3,2],[2,4,0,2],[0,1,2,1]],[[1,2,0,0],[1,3,3,2],[3,3,0,2],[0,1,2,1]],[[1,2,0,0],[1,4,3,2],[2,3,0,2],[0,1,2,1]],[[1,2,0,0],[1,3,3,2],[2,3,0,1],[1,3,2,0]],[[1,2,0,0],[1,3,3,2],[2,3,0,1],[2,2,2,0]],[[1,2,0,0],[1,3,3,2],[3,3,0,1],[1,2,2,0]],[[1,2,0,0],[1,3,3,2],[2,3,0,1],[2,1,2,1]],[[1,1,3,1],[1,3,3,1],[2,2,3,1],[1,1,0,0]],[[1,1,2,2],[1,3,3,1],[2,2,3,1],[1,1,0,0]],[[1,1,2,1],[1,4,3,1],[2,2,3,1],[1,1,0,0]],[[1,1,2,1],[1,3,4,1],[2,2,3,1],[1,1,0,0]],[[1,2,0,0],[1,3,3,2],[2,4,0,1],[1,1,2,1]],[[1,2,0,0],[1,3,3,2],[3,3,0,1],[1,1,2,1]],[[1,2,0,0],[1,4,3,2],[2,3,0,1],[1,1,2,1]],[[1,2,0,0],[1,3,3,2],[2,3,0,1],[0,2,2,2]],[[1,2,0,0],[1,3,3,2],[2,3,0,1],[0,2,3,1]],[[1,2,0,0],[1,3,3,2],[2,3,0,1],[0,3,2,1]],[[1,2,0,0],[1,3,3,2],[2,4,0,1],[0,2,2,1]],[[1,2,0,0],[1,3,3,2],[3,3,0,1],[0,2,2,1]],[[1,2,0,0],[1,4,3,2],[2,3,0,1],[0,2,2,1]],[[1,2,0,0],[1,3,3,2],[2,3,0,0],[1,3,2,1]],[[1,2,0,0],[1,3,3,2],[2,3,0,0],[2,2,2,1]],[[1,2,0,0],[1,3,3,2],[3,3,0,0],[1,2,2,1]],[[1,2,0,0],[1,3,3,2],[2,2,3,0],[1,3,1,0]],[[1,2,0,0],[1,3,3,2],[2,2,3,0],[2,2,1,0]],[[1,2,0,0],[1,3,3,2],[3,2,3,0],[1,2,1,0]],[[1,2,0,0],[1,3,3,2],[2,2,2,1],[1,3,1,0]],[[1,2,0,0],[1,3,3,2],[2,2,2,1],[2,2,1,0]],[[1,2,0,0],[1,3,3,2],[3,2,2,1],[1,2,1,0]],[[1,2,0,0],[1,3,3,2],[2,2,2,1],[1,3,0,1]],[[1,2,0,0],[1,3,3,2],[2,2,2,1],[2,2,0,1]],[[1,2,0,0],[1,3,3,2],[3,2,2,1],[1,2,0,1]],[[1,2,0,0],[1,3,3,2],[2,2,2,0],[1,3,1,1]],[[1,2,0,0],[1,3,3,2],[2,2,2,0],[2,2,1,1]],[[1,2,0,0],[1,3,3,2],[3,2,2,0],[1,2,1,1]],[[1,2,0,0],[1,3,3,2],[2,2,1,2],[1,3,1,0]],[[1,2,0,0],[1,3,3,2],[2,2,1,2],[2,2,1,0]],[[1,2,0,0],[1,3,3,2],[3,2,1,2],[1,2,1,0]],[[1,2,0,0],[1,3,3,2],[2,2,1,2],[1,3,0,1]],[[1,2,0,0],[1,3,3,2],[2,2,1,2],[2,2,0,1]],[[1,2,0,0],[1,3,3,2],[3,2,1,2],[1,2,0,1]],[[1,2,0,0],[1,3,3,2],[2,2,1,1],[1,2,3,0]],[[1,2,0,0],[1,3,3,2],[2,2,1,1],[1,3,2,0]],[[1,2,0,0],[1,3,3,2],[2,2,1,1],[2,2,2,0]],[[1,2,0,0],[1,3,3,2],[3,2,1,1],[1,2,2,0]],[[1,2,0,0],[1,3,3,2],[2,2,1,0],[1,2,2,2]],[[1,2,0,0],[1,3,3,2],[2,2,1,0],[1,2,3,1]],[[1,2,0,0],[1,3,3,2],[2,2,1,0],[1,3,2,1]],[[1,2,0,0],[1,3,3,2],[2,2,1,0],[2,2,2,1]],[[1,2,0,0],[1,3,3,2],[3,2,1,0],[1,2,2,1]],[[1,2,0,0],[1,3,3,2],[2,2,0,2],[1,2,3,0]],[[1,2,0,0],[1,3,3,2],[2,2,0,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,2],[2,2,0,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,2],[3,2,0,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,2],[2,2,0,2],[1,3,1,1]],[[1,2,0,0],[1,3,3,2],[2,2,0,2],[2,2,1,1]],[[1,2,0,0],[1,3,3,2],[3,2,0,2],[1,2,1,1]],[[1,2,0,0],[1,3,3,2],[2,2,0,1],[1,2,2,2]],[[1,2,0,0],[1,3,3,2],[2,2,0,1],[1,2,3,1]],[[1,2,0,0],[1,3,3,2],[2,2,0,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,2],[2,2,0,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,2],[3,2,0,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,2],[1,3,4,1],[1,1,1,0]],[[1,2,0,0],[1,3,3,2],[1,4,3,1],[1,1,1,0]],[[1,2,0,0],[1,4,3,2],[1,3,3,1],[1,1,1,0]],[[1,2,0,0],[1,3,3,2],[1,3,4,1],[1,1,0,1]],[[1,2,0,0],[1,3,3,2],[1,4,3,1],[1,1,0,1]],[[1,2,0,0],[1,4,3,2],[1,3,3,1],[1,1,0,1]],[[1,2,0,0],[1,3,3,2],[1,3,3,1],[1,0,3,0]],[[1,2,0,0],[1,3,3,2],[1,3,4,1],[1,0,2,0]],[[1,2,0,0],[1,3,3,2],[1,4,3,1],[1,0,2,0]],[[1,2,0,0],[1,4,3,2],[1,3,3,1],[1,0,2,0]],[[1,2,0,0],[1,3,3,2],[1,3,4,1],[1,0,1,1]],[[1,2,0,0],[1,3,3,2],[1,4,3,1],[1,0,1,1]],[[1,2,0,0],[1,4,3,2],[1,3,3,1],[1,0,1,1]],[[1,2,0,0],[1,3,3,2],[1,3,3,1],[0,3,1,0]],[[1,2,0,0],[1,3,3,2],[1,3,4,1],[0,2,1,0]],[[1,2,0,0],[1,3,3,2],[1,4,3,1],[0,2,1,0]],[[1,2,0,0],[1,4,3,2],[1,3,3,1],[0,2,1,0]],[[1,2,0,0],[1,3,3,2],[1,3,3,1],[0,3,0,1]],[[1,2,0,0],[1,3,3,2],[1,3,4,1],[0,2,0,1]],[[1,2,0,0],[1,3,3,2],[1,4,3,1],[0,2,0,1]],[[1,2,0,0],[1,4,3,2],[1,3,3,1],[0,2,0,1]],[[1,2,0,0],[1,3,3,2],[1,3,3,1],[0,1,3,0]],[[1,2,0,0],[1,3,3,2],[1,3,4,1],[0,1,2,0]],[[1,2,0,0],[1,3,3,2],[1,4,3,1],[0,1,2,0]],[[1,2,0,0],[1,4,3,2],[1,3,3,1],[0,1,2,0]],[[1,2,0,0],[1,3,3,2],[1,3,4,1],[0,1,1,1]],[[1,2,0,0],[1,3,3,2],[1,4,3,1],[0,1,1,1]],[[1,2,0,0],[1,4,3,2],[1,3,3,1],[0,1,1,1]],[[1,2,0,0],[1,3,3,2],[1,3,3,0],[1,3,1,0]],[[1,2,0,0],[1,3,3,2],[1,3,3,0],[2,2,1,0]],[[1,2,0,0],[1,3,3,2],[1,4,3,0],[1,2,1,0]],[[1,2,0,0],[1,4,3,2],[1,3,3,0],[1,2,1,0]],[[1,2,0,0],[1,3,3,2],[1,3,4,0],[1,1,1,1]],[[1,2,0,0],[1,3,3,2],[1,4,3,0],[1,1,1,1]],[[1,2,0,0],[1,4,3,2],[1,3,3,0],[1,1,1,1]],[[1,2,0,0],[1,3,3,2],[1,3,3,0],[1,0,2,2]],[[1,2,0,0],[1,3,3,2],[1,3,3,0],[1,0,3,1]],[[1,2,0,0],[1,3,3,2],[1,3,4,0],[1,0,2,1]],[[1,2,0,0],[1,3,3,2],[1,4,3,0],[1,0,2,1]],[[1,2,0,0],[1,4,3,2],[1,3,3,0],[1,0,2,1]],[[1,2,0,0],[1,3,3,2],[1,3,3,0],[0,3,1,1]],[[1,2,0,0],[1,3,3,2],[1,3,4,0],[0,2,1,1]],[[1,2,0,0],[1,3,3,2],[1,4,3,0],[0,2,1,1]],[[1,2,0,0],[1,4,3,2],[1,3,3,0],[0,2,1,1]],[[1,2,0,0],[1,3,3,2],[1,3,3,0],[0,1,2,2]],[[1,2,0,0],[1,3,3,2],[1,3,3,0],[0,1,3,1]],[[1,2,0,0],[1,3,3,2],[1,3,4,0],[0,1,2,1]],[[1,2,0,0],[1,3,3,2],[1,4,3,0],[0,1,2,1]],[[1,2,0,0],[1,4,3,2],[1,3,3,0],[0,1,2,1]],[[1,2,0,0],[1,3,3,2],[1,3,2,1],[1,3,1,0]],[[1,2,0,0],[1,3,3,2],[1,3,2,1],[2,2,1,0]],[[1,2,0,0],[1,3,3,2],[1,4,2,1],[1,2,1,0]],[[1,2,0,0],[1,4,3,2],[1,3,2,1],[1,2,1,0]],[[1,2,0,0],[1,3,3,2],[1,3,2,1],[1,3,0,1]],[[1,2,0,0],[1,3,3,2],[1,3,2,1],[2,2,0,1]],[[1,2,0,0],[1,3,3,2],[1,4,2,1],[1,2,0,1]],[[1,2,0,0],[1,4,3,2],[1,3,2,1],[1,2,0,1]],[[1,2,0,0],[1,3,3,2],[1,3,2,1],[0,2,3,0]],[[1,2,0,0],[1,3,3,2],[1,3,2,1],[0,3,2,0]],[[1,2,0,0],[1,3,3,2],[1,4,2,1],[0,2,2,0]],[[1,2,0,0],[1,4,3,2],[1,3,2,1],[0,2,2,0]],[[1,2,0,0],[1,3,3,2],[1,3,2,0],[1,3,1,1]],[[1,2,0,0],[1,3,3,2],[1,3,2,0],[2,2,1,1]],[[1,2,0,0],[1,3,3,2],[1,4,2,0],[1,2,1,1]],[[1,2,0,0],[1,4,3,2],[1,3,2,0],[1,2,1,1]],[[1,2,0,0],[1,3,3,2],[1,3,2,0],[0,2,2,2]],[[1,2,0,0],[1,3,3,2],[1,3,2,0],[0,2,3,1]],[[1,2,0,0],[1,3,3,2],[1,3,2,0],[0,3,2,1]],[[1,2,0,0],[1,3,3,2],[1,4,2,0],[0,2,2,1]],[[1,2,0,0],[1,4,3,2],[1,3,2,0],[0,2,2,1]],[[1,2,0,0],[1,3,3,2],[1,3,1,2],[1,3,1,0]],[[1,2,0,0],[1,3,3,2],[1,3,1,2],[2,2,1,0]],[[1,2,0,0],[1,3,3,2],[1,4,1,2],[1,2,1,0]],[[1,2,0,0],[1,4,3,2],[1,3,1,2],[1,2,1,0]],[[1,2,0,0],[1,3,3,2],[1,3,1,2],[1,3,0,1]],[[1,2,0,0],[1,3,3,2],[1,3,1,2],[2,2,0,1]],[[1,2,0,0],[1,3,3,2],[1,4,1,2],[1,2,0,1]],[[1,2,0,0],[1,4,3,2],[1,3,1,2],[1,2,0,1]],[[1,2,0,0],[1,3,3,2],[1,3,1,1],[1,2,3,0]],[[1,2,0,0],[1,3,3,2],[1,3,1,1],[1,3,2,0]],[[1,2,0,0],[1,3,3,2],[1,3,1,1],[2,2,2,0]],[[1,2,0,0],[1,3,3,2],[1,4,1,1],[1,2,2,0]],[[1,2,0,0],[1,4,3,2],[1,3,1,1],[1,2,2,0]],[[1,2,0,0],[1,3,3,2],[1,3,1,0],[1,2,2,2]],[[1,2,0,0],[1,3,3,2],[1,3,1,0],[1,2,3,1]],[[1,2,0,0],[1,3,3,2],[1,3,1,0],[1,3,2,1]],[[1,2,0,0],[1,3,3,2],[1,3,1,0],[2,2,2,1]],[[1,2,0,0],[1,3,3,2],[1,4,1,0],[1,2,2,1]],[[1,2,0,0],[1,4,3,2],[1,3,1,0],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,3,1,2],[1,0,0,1]],[[1,1,2,2],[1,3,3,1],[2,3,1,2],[1,0,0,1]],[[1,1,2,1],[1,4,3,1],[2,3,1,2],[1,0,0,1]],[[1,1,2,1],[1,3,4,1],[2,3,1,2],[1,0,0,1]],[[1,1,3,1],[1,3,3,1],[2,3,1,2],[1,0,1,0]],[[1,1,2,2],[1,3,3,1],[2,3,1,2],[1,0,1,0]],[[1,1,2,1],[1,4,3,1],[2,3,1,2],[1,0,1,0]],[[1,1,2,1],[1,3,4,1],[2,3,1,2],[1,0,1,0]],[[1,2,0,0],[1,3,3,2],[1,3,0,2],[1,2,3,0]],[[1,2,0,0],[1,3,3,2],[1,3,0,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,2],[1,3,0,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,2],[1,4,0,2],[1,2,2,0]],[[1,2,0,0],[1,4,3,2],[1,3,0,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,2],[1,3,0,2],[1,3,1,1]],[[1,2,0,0],[1,3,3,2],[1,3,0,2],[2,2,1,1]],[[1,2,0,0],[1,3,3,2],[1,4,0,2],[1,2,1,1]],[[1,2,0,0],[1,4,3,2],[1,3,0,2],[1,2,1,1]],[[1,2,0,0],[1,3,3,2],[1,3,0,1],[1,2,2,2]],[[1,2,0,0],[1,3,3,2],[1,3,0,1],[1,2,3,1]],[[1,2,0,0],[1,3,3,2],[1,3,0,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,2],[1,3,0,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,2],[1,4,0,1],[1,2,2,1]],[[1,2,0,0],[1,4,3,2],[1,3,0,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,2],[1,2,3,1],[0,2,3,0]],[[1,2,0,0],[1,3,3,2],[1,2,3,1],[0,3,2,0]],[[1,2,0,0],[1,3,3,2],[1,2,4,1],[0,2,2,0]],[[1,2,0,0],[1,3,3,2],[1,2,3,0],[0,2,2,2]],[[1,2,0,0],[1,3,3,2],[1,2,3,0],[0,2,3,1]],[[1,2,0,0],[1,3,3,2],[1,2,3,0],[0,3,2,1]],[[1,2,0,0],[1,3,3,2],[1,2,4,0],[0,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,3,2,0],[1,0,1,1]],[[1,1,2,2],[1,3,3,1],[2,3,2,0],[1,0,1,1]],[[1,1,2,1],[1,4,3,1],[2,3,2,0],[1,0,1,1]],[[1,1,2,1],[1,3,4,1],[2,3,2,0],[1,0,1,1]],[[1,2,0,0],[1,3,3,2],[0,3,3,1],[1,3,1,0]],[[1,2,0,0],[1,3,3,2],[0,3,3,1],[2,2,1,0]],[[1,2,0,0],[1,3,3,2],[0,3,4,1],[1,2,1,0]],[[1,2,0,0],[1,3,3,2],[0,4,3,1],[1,2,1,0]],[[1,2,0,0],[1,4,3,2],[0,3,3,1],[1,2,1,0]],[[1,2,0,0],[1,3,3,2],[0,3,3,1],[1,3,0,1]],[[1,2,0,0],[1,3,3,2],[0,3,3,1],[2,2,0,1]],[[1,2,0,0],[1,3,3,2],[0,3,4,1],[1,2,0,1]],[[1,2,0,0],[1,3,3,2],[0,4,3,1],[1,2,0,1]],[[1,2,0,0],[1,4,3,2],[0,3,3,1],[1,2,0,1]],[[1,2,0,0],[1,3,3,2],[0,3,3,1],[1,1,3,0]],[[1,2,0,0],[1,3,3,2],[0,3,4,1],[1,1,2,0]],[[1,2,0,0],[1,3,3,2],[0,4,3,1],[1,1,2,0]],[[1,2,0,0],[1,4,3,2],[0,3,3,1],[1,1,2,0]],[[1,2,0,0],[1,3,3,2],[0,3,4,1],[1,1,1,1]],[[1,2,0,0],[1,3,3,2],[0,4,3,1],[1,1,1,1]],[[1,2,0,0],[1,4,3,2],[0,3,3,1],[1,1,1,1]],[[1,2,0,0],[1,3,3,2],[0,3,3,0],[1,3,1,1]],[[1,2,0,0],[1,3,3,2],[0,3,3,0],[2,2,1,1]],[[1,2,0,0],[1,3,3,2],[0,3,4,0],[1,2,1,1]],[[1,2,0,0],[1,3,3,2],[0,4,3,0],[1,2,1,1]],[[1,2,0,0],[1,4,3,2],[0,3,3,0],[1,2,1,1]],[[1,2,0,0],[1,3,3,2],[0,3,3,0],[1,1,2,2]],[[1,2,0,0],[1,3,3,2],[0,3,3,0],[1,1,3,1]],[[1,2,0,0],[1,3,3,2],[0,3,4,0],[1,1,2,1]],[[1,2,0,0],[1,3,3,2],[0,4,3,0],[1,1,2,1]],[[1,2,0,0],[1,4,3,2],[0,3,3,0],[1,1,2,1]],[[1,1,3,1],[1,3,3,1],[2,3,2,1],[1,0,0,1]],[[1,1,2,2],[1,3,3,1],[2,3,2,1],[1,0,0,1]],[[1,1,2,1],[1,4,3,1],[2,3,2,1],[1,0,0,1]],[[1,1,2,1],[1,3,4,1],[2,3,2,1],[1,0,0,1]],[[1,1,3,1],[1,3,3,1],[2,3,2,1],[1,0,1,0]],[[1,1,2,2],[1,3,3,1],[2,3,2,1],[1,0,1,0]],[[1,1,2,1],[1,4,3,1],[2,3,2,1],[1,0,1,0]],[[1,1,2,1],[1,3,4,1],[2,3,2,1],[1,0,1,0]],[[1,2,0,0],[1,3,3,2],[0,3,2,1],[1,2,3,0]],[[1,2,0,0],[1,3,3,2],[0,3,2,1],[1,3,2,0]],[[1,2,0,0],[1,3,3,2],[0,3,2,1],[2,2,2,0]],[[1,2,0,0],[1,3,3,2],[0,4,2,1],[1,2,2,0]],[[1,2,0,0],[1,4,3,2],[0,3,2,1],[1,2,2,0]],[[1,2,0,0],[1,3,3,2],[0,3,2,0],[1,2,2,2]],[[1,2,0,0],[1,3,3,2],[0,3,2,0],[1,2,3,1]],[[1,2,0,0],[1,3,3,2],[0,3,2,0],[1,3,2,1]],[[1,2,0,0],[1,3,3,2],[0,3,2,0],[2,2,2,1]],[[1,2,0,0],[1,3,3,2],[0,4,2,0],[1,2,2,1]],[[1,2,0,0],[1,4,3,2],[0,3,2,0],[1,2,2,1]],[[1,2,0,0],[1,3,3,2],[0,2,3,1],[1,2,3,0]],[[1,2,0,0],[1,3,3,2],[0,2,3,1],[1,3,2,0]],[[1,2,0,0],[1,3,3,2],[0,2,3,1],[2,2,2,0]],[[1,2,0,0],[1,3,3,2],[0,2,4,1],[1,2,2,0]],[[1,2,0,0],[1,3,3,2],[0,2,3,0],[1,2,2,2]],[[1,2,0,0],[1,3,3,2],[0,2,3,0],[1,2,3,1]],[[1,2,0,0],[1,3,3,2],[0,2,3,0],[1,3,2,1]],[[1,2,0,0],[1,3,3,2],[0,2,3,0],[2,2,2,1]],[[1,2,0,0],[1,3,3,2],[0,2,4,0],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[2,3,3,2],[2,1,0,0]],[[1,2,0,0],[1,3,3,1],[2,4,3,2],[1,1,0,0]],[[1,2,0,0],[1,3,3,1],[3,3,3,2],[1,1,0,0]],[[1,2,0,0],[1,4,3,1],[2,3,3,2],[1,1,0,0]],[[1,2,0,0],[1,3,3,1],[2,4,3,2],[0,2,0,0]],[[1,2,0,0],[1,3,3,1],[3,3,3,2],[0,2,0,0]],[[1,2,0,0],[1,4,3,1],[2,3,3,2],[0,2,0,0]],[[1,2,0,0],[1,3,3,1],[2,3,2,2],[2,2,0,0]],[[1,2,0,0],[1,3,3,1],[2,4,2,2],[1,2,0,0]],[[1,2,0,0],[1,3,3,1],[3,3,2,2],[1,2,0,0]],[[1,2,0,0],[1,4,3,1],[2,3,2,2],[1,2,0,0]],[[1,2,0,0],[1,3,3,1],[2,3,2,2],[2,1,1,0]],[[1,2,0,0],[1,3,3,1],[2,4,2,2],[1,1,1,0]],[[1,2,0,0],[1,3,3,1],[3,3,2,2],[1,1,1,0]],[[1,2,0,0],[1,4,3,1],[2,3,2,2],[1,1,1,0]],[[1,2,0,0],[1,3,3,1],[2,3,2,2],[2,1,0,1]],[[1,2,0,0],[1,3,3,1],[2,4,2,2],[1,1,0,1]],[[1,2,0,0],[1,3,3,1],[3,3,2,2],[1,1,0,1]],[[1,2,0,0],[1,4,3,1],[2,3,2,2],[1,1,0,1]],[[1,2,0,0],[1,3,3,1],[2,3,2,2],[2,0,2,0]],[[1,2,0,0],[1,3,3,1],[2,4,2,2],[1,0,2,0]],[[1,2,0,0],[1,3,3,1],[3,3,2,2],[1,0,2,0]],[[1,2,0,0],[1,4,3,1],[2,3,2,2],[1,0,2,0]],[[1,2,0,0],[1,3,3,1],[2,3,2,2],[2,0,1,1]],[[1,2,0,0],[1,3,3,1],[2,4,2,2],[1,0,1,1]],[[1,2,0,0],[1,3,3,1],[3,3,2,2],[1,0,1,1]],[[1,2,0,0],[1,4,3,1],[2,3,2,2],[1,0,1,1]],[[1,2,0,0],[1,3,3,1],[2,3,2,2],[0,3,1,0]],[[1,2,0,0],[1,3,3,1],[2,4,2,2],[0,2,1,0]],[[1,2,0,0],[1,3,3,1],[3,3,2,2],[0,2,1,0]],[[1,2,0,0],[1,4,3,1],[2,3,2,2],[0,2,1,0]],[[1,2,0,0],[1,3,3,1],[2,3,2,2],[0,3,0,1]],[[1,2,0,0],[1,3,3,1],[2,4,2,2],[0,2,0,1]],[[1,2,0,0],[1,3,3,1],[3,3,2,2],[0,2,0,1]],[[1,2,0,0],[1,4,3,1],[2,3,2,2],[0,2,0,1]],[[1,2,0,0],[1,3,3,1],[2,4,2,2],[0,1,2,0]],[[1,2,0,0],[1,3,3,1],[3,3,2,2],[0,1,2,0]],[[1,2,0,0],[1,4,3,1],[2,3,2,2],[0,1,2,0]],[[1,2,0,0],[1,3,3,1],[2,4,2,2],[0,1,1,1]],[[1,2,0,0],[1,3,3,1],[3,3,2,2],[0,1,1,1]],[[1,2,0,0],[1,4,3,1],[2,3,2,2],[0,1,1,1]],[[1,2,0,0],[1,3,3,1],[2,3,2,1],[2,2,0,1]],[[1,2,0,0],[1,3,3,1],[2,4,2,1],[1,2,0,1]],[[1,2,0,0],[1,3,3,1],[3,3,2,1],[1,2,0,1]],[[1,2,0,0],[1,4,3,1],[2,3,2,1],[1,2,0,1]],[[1,2,0,0],[1,3,3,1],[2,3,2,1],[2,1,1,1]],[[1,2,0,0],[1,3,3,1],[2,4,2,1],[1,1,1,1]],[[1,2,0,0],[1,3,3,1],[3,3,2,1],[1,1,1,1]],[[1,2,0,0],[1,4,3,1],[2,3,2,1],[1,1,1,1]],[[1,2,0,0],[1,3,3,1],[2,3,2,1],[2,0,2,1]],[[1,2,0,0],[1,3,3,1],[2,4,2,1],[1,0,2,1]],[[1,2,0,0],[1,3,3,1],[3,3,2,1],[1,0,2,1]],[[1,2,0,0],[1,4,3,1],[2,3,2,1],[1,0,2,1]],[[1,2,0,0],[1,3,3,1],[2,3,2,1],[0,3,1,1]],[[1,2,0,0],[1,3,3,1],[2,4,2,1],[0,2,1,1]],[[1,2,0,0],[1,3,3,1],[3,3,2,1],[0,2,1,1]],[[1,2,0,0],[1,4,3,1],[2,3,2,1],[0,2,1,1]],[[1,2,0,0],[1,3,3,1],[2,4,2,1],[0,1,2,1]],[[1,2,0,0],[1,3,3,1],[3,3,2,1],[0,1,2,1]],[[1,2,0,0],[1,4,3,1],[2,3,2,1],[0,1,2,1]],[[1,2,0,0],[1,3,3,1],[2,3,1,2],[2,1,2,0]],[[1,2,0,0],[1,3,3,1],[2,4,1,2],[1,1,2,0]],[[1,2,0,0],[1,3,3,1],[3,3,1,2],[1,1,2,0]],[[1,2,0,0],[1,4,3,1],[2,3,1,2],[1,1,2,0]],[[1,2,0,0],[1,3,3,1],[2,3,1,2],[0,2,3,0]],[[1,1,3,1],[1,3,3,1],[2,3,3,0],[1,0,1,0]],[[1,1,2,2],[1,3,3,1],[2,3,3,0],[1,0,1,0]],[[1,1,2,1],[1,4,3,1],[2,3,3,0],[1,0,1,0]],[[1,1,2,1],[1,3,4,1],[2,3,3,0],[1,0,1,0]],[[1,2,0,0],[1,3,3,1],[2,3,1,2],[0,3,2,0]],[[1,2,0,0],[1,3,3,1],[2,4,1,2],[0,2,2,0]],[[1,2,0,0],[1,3,3,1],[3,3,1,2],[0,2,2,0]],[[1,2,0,0],[1,4,3,1],[2,3,1,2],[0,2,2,0]],[[1,2,0,0],[1,3,3,1],[2,3,1,1],[2,1,2,1]],[[1,2,0,0],[1,3,3,1],[2,4,1,1],[1,1,2,1]],[[1,2,0,0],[1,3,3,1],[3,3,1,1],[1,1,2,1]],[[1,2,0,0],[1,4,3,1],[2,3,1,1],[1,1,2,1]],[[1,2,0,0],[1,3,3,1],[2,3,1,1],[0,2,2,2]],[[1,2,0,0],[1,3,3,1],[2,3,1,1],[0,2,3,1]],[[1,2,0,0],[1,3,3,1],[2,3,1,1],[0,3,2,1]],[[1,2,0,0],[1,3,3,1],[2,4,1,1],[0,2,2,1]],[[1,2,0,0],[1,3,3,1],[3,3,1,1],[0,2,2,1]],[[1,2,0,0],[1,4,3,1],[2,3,1,1],[0,2,2,1]],[[1,2,0,0],[1,3,3,1],[2,3,0,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,1],[2,3,0,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,1],[3,3,0,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,1],[2,3,0,2],[2,1,2,1]],[[1,2,0,0],[1,3,3,1],[2,4,0,2],[1,1,2,1]],[[1,2,0,0],[1,3,3,1],[3,3,0,2],[1,1,2,1]],[[1,2,0,0],[1,4,3,1],[2,3,0,2],[1,1,2,1]],[[1,2,0,0],[1,3,3,1],[2,3,0,2],[0,2,2,2]],[[1,2,0,0],[1,3,3,1],[2,3,0,2],[0,2,3,1]],[[1,2,0,0],[1,3,3,1],[2,3,0,2],[0,3,2,1]],[[1,2,0,0],[1,3,3,1],[2,3,0,3],[0,2,2,1]],[[1,2,0,0],[1,3,3,1],[2,4,0,2],[0,2,2,1]],[[1,2,0,0],[1,3,3,1],[3,3,0,2],[0,2,2,1]],[[1,2,0,0],[1,4,3,1],[2,3,0,2],[0,2,2,1]],[[1,2,0,0],[1,3,3,1],[2,3,0,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,1],[2,3,0,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,1],[3,3,0,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[2,2,2,2],[1,3,1,0]],[[1,2,0,0],[1,3,3,1],[2,2,2,2],[2,2,1,0]],[[1,2,0,0],[1,3,3,1],[3,2,2,2],[1,2,1,0]],[[1,2,0,0],[1,3,3,1],[2,2,2,2],[1,3,0,1]],[[1,2,0,0],[1,3,3,1],[2,2,2,2],[2,2,0,1]],[[1,2,0,0],[1,3,3,1],[3,2,2,2],[1,2,0,1]],[[1,2,0,0],[1,3,3,1],[2,2,2,1],[1,3,1,1]],[[1,2,0,0],[1,3,3,1],[2,2,2,1],[2,2,1,1]],[[1,2,0,0],[1,3,3,1],[3,2,2,1],[1,2,1,1]],[[1,2,0,0],[1,3,3,1],[2,2,1,2],[1,2,3,0]],[[1,2,0,0],[1,3,3,1],[2,2,1,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,1],[2,2,1,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,1],[3,2,1,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,1],[2,2,1,1],[1,2,2,2]],[[1,2,0,0],[1,3,3,1],[2,2,1,1],[1,2,3,1]],[[1,2,0,0],[1,3,3,1],[2,2,1,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,1],[2,2,1,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,1],[3,2,1,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[2,2,0,2],[1,2,2,2]],[[1,2,0,0],[1,3,3,1],[2,2,0,2],[1,2,3,1]],[[1,2,0,0],[1,3,3,1],[2,2,0,2],[1,3,2,1]],[[1,2,0,0],[1,3,3,1],[2,2,0,2],[2,2,2,1]],[[1,2,0,0],[1,3,3,1],[2,2,0,3],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[3,2,0,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,1],[2,3,3,1],[1,0,0,0]],[[1,1,2,2],[1,3,3,1],[2,3,3,1],[1,0,0,0]],[[1,1,2,1],[1,4,3,1],[2,3,3,1],[1,0,0,0]],[[1,1,2,1],[1,3,4,1],[2,3,3,1],[1,0,0,0]],[[1,2,0,0],[1,3,3,1],[1,3,3,3],[1,1,1,0]],[[1,2,0,0],[1,3,3,1],[1,3,4,2],[1,1,1,0]],[[1,2,0,0],[1,3,3,1],[1,4,3,2],[1,1,1,0]],[[1,2,0,0],[1,4,3,1],[1,3,3,2],[1,1,1,0]],[[1,2,0,0],[1,3,3,1],[1,3,3,2],[1,1,0,2]],[[1,2,0,0],[1,3,3,1],[1,3,3,3],[1,1,0,1]],[[1,2,0,0],[1,3,3,1],[1,3,4,2],[1,1,0,1]],[[1,2,0,0],[1,3,3,1],[1,4,3,2],[1,1,0,1]],[[1,2,0,0],[1,4,3,1],[1,3,3,2],[1,1,0,1]],[[1,2,0,0],[1,3,3,1],[1,3,3,2],[1,0,3,0]],[[1,2,0,0],[1,3,3,1],[1,3,3,3],[1,0,2,0]],[[1,2,0,0],[1,3,3,1],[1,3,4,2],[1,0,2,0]],[[1,2,0,0],[1,3,3,1],[1,4,3,2],[1,0,2,0]],[[1,2,0,0],[1,4,3,1],[1,3,3,2],[1,0,2,0]],[[1,2,0,0],[1,3,3,1],[1,3,3,2],[1,0,1,2]],[[1,2,0,0],[1,3,3,1],[1,3,3,3],[1,0,1,1]],[[1,2,0,0],[1,3,3,1],[1,3,4,2],[1,0,1,1]],[[1,2,0,0],[1,3,3,1],[1,4,3,2],[1,0,1,1]],[[1,2,0,0],[1,4,3,1],[1,3,3,2],[1,0,1,1]],[[1,2,0,0],[1,3,3,1],[1,3,3,2],[0,3,1,0]],[[1,2,0,0],[1,3,3,1],[1,3,3,3],[0,2,1,0]],[[1,2,0,0],[1,3,3,1],[1,3,4,2],[0,2,1,0]],[[1,2,0,0],[1,3,3,1],[1,4,3,2],[0,2,1,0]],[[1,2,0,0],[1,4,3,1],[1,3,3,2],[0,2,1,0]],[[1,2,0,0],[1,3,3,1],[1,3,3,2],[0,2,0,2]],[[1,2,0,0],[1,3,3,1],[1,3,3,2],[0,3,0,1]],[[1,2,0,0],[1,3,3,1],[1,3,3,3],[0,2,0,1]],[[1,2,0,0],[1,3,3,1],[1,3,4,2],[0,2,0,1]],[[1,2,0,0],[1,3,3,1],[1,4,3,2],[0,2,0,1]],[[1,2,0,0],[1,4,3,1],[1,3,3,2],[0,2,0,1]],[[1,2,0,0],[1,3,3,1],[1,3,3,2],[0,1,3,0]],[[1,2,0,0],[1,3,3,1],[1,3,3,3],[0,1,2,0]],[[1,2,0,0],[1,3,3,1],[1,3,4,2],[0,1,2,0]],[[1,2,0,0],[1,3,3,1],[1,4,3,2],[0,1,2,0]],[[1,2,0,0],[1,4,3,1],[1,3,3,2],[0,1,2,0]],[[1,2,0,0],[1,3,3,1],[1,3,3,2],[0,1,1,2]],[[1,2,0,0],[1,3,3,1],[1,3,3,3],[0,1,1,1]],[[1,2,0,0],[1,3,3,1],[1,3,4,2],[0,1,1,1]],[[1,2,0,0],[1,3,3,1],[1,4,3,2],[0,1,1,1]],[[1,2,0,0],[1,4,3,1],[1,3,3,2],[0,1,1,1]],[[1,2,0,0],[1,3,3,1],[1,3,3,2],[0,0,2,2]],[[1,2,0,0],[1,3,3,1],[1,3,3,3],[0,0,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,4,2],[0,0,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,4,1],[1,1,1,1]],[[1,2,0,0],[1,3,3,1],[1,4,3,1],[1,1,1,1]],[[1,2,0,0],[1,4,3,1],[1,3,3,1],[1,1,1,1]],[[1,2,0,0],[1,3,3,1],[1,3,3,1],[1,0,2,2]],[[1,2,0,0],[1,3,3,1],[1,3,3,1],[1,0,3,1]],[[1,2,0,0],[1,3,3,1],[1,3,4,1],[1,0,2,1]],[[1,2,0,0],[1,3,3,1],[1,4,3,1],[1,0,2,1]],[[1,2,0,0],[1,4,3,1],[1,3,3,1],[1,0,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,3,1],[0,3,1,1]],[[1,2,0,0],[1,3,3,1],[1,3,4,1],[0,2,1,1]],[[1,2,0,0],[1,3,3,1],[1,4,3,1],[0,2,1,1]],[[1,2,0,0],[1,4,3,1],[1,3,3,1],[0,2,1,1]],[[1,2,0,0],[1,3,3,1],[1,3,3,1],[0,1,2,2]],[[1,2,0,0],[1,3,3,1],[1,3,3,1],[0,1,3,1]],[[1,2,0,0],[1,3,3,1],[1,3,4,1],[0,1,2,1]],[[1,2,0,0],[1,3,3,1],[1,4,3,1],[0,1,2,1]],[[1,2,0,0],[1,4,3,1],[1,3,3,1],[0,1,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,3,0],[0,2,3,1]],[[1,2,0,0],[1,3,3,1],[1,3,3,0],[0,3,2,1]],[[1,2,0,0],[1,3,3,1],[1,4,3,0],[0,2,2,1]],[[1,2,0,0],[1,4,3,1],[1,3,3,0],[0,2,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,2,2],[1,3,1,0]],[[1,2,0,0],[1,3,3,1],[1,3,2,2],[2,2,1,0]],[[1,2,0,0],[1,3,3,1],[1,4,2,2],[1,2,1,0]],[[1,2,0,0],[1,4,3,1],[1,3,2,2],[1,2,1,0]],[[1,2,0,0],[1,3,3,1],[1,3,2,2],[1,3,0,1]],[[1,2,0,0],[1,3,3,1],[1,3,2,2],[2,2,0,1]],[[1,2,0,0],[1,3,3,1],[1,4,2,2],[1,2,0,1]],[[1,2,0,0],[1,4,3,1],[1,3,2,2],[1,2,0,1]],[[1,2,0,0],[1,3,3,1],[1,3,2,2],[1,0,2,2]],[[1,2,0,0],[1,3,3,1],[1,3,2,2],[1,0,3,1]],[[1,2,0,0],[1,3,3,1],[1,3,2,3],[1,0,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,2,2],[0,2,3,0]],[[1,2,0,0],[1,3,3,1],[1,3,2,2],[0,3,2,0]],[[1,2,0,0],[1,3,3,1],[1,4,2,2],[0,2,2,0]],[[1,2,0,0],[1,4,3,1],[1,3,2,2],[0,2,2,0]],[[1,2,0,0],[1,3,3,1],[1,3,2,2],[0,1,2,2]],[[1,2,0,0],[1,3,3,1],[1,3,2,2],[0,1,3,1]],[[1,2,0,0],[1,3,3,1],[1,3,2,3],[0,1,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,2,1],[1,3,1,1]],[[1,2,0,0],[1,3,3,1],[1,3,2,1],[2,2,1,1]],[[1,2,0,0],[1,3,3,1],[1,4,2,1],[1,2,1,1]],[[1,2,0,0],[1,4,3,1],[1,3,2,1],[1,2,1,1]],[[1,2,0,0],[1,3,3,1],[1,3,2,1],[0,2,2,2]],[[1,2,0,0],[1,3,3,1],[1,3,2,1],[0,2,3,1]],[[1,2,0,0],[1,3,3,1],[1,3,2,1],[0,3,2,1]],[[1,2,0,0],[1,3,3,1],[1,4,2,1],[0,2,2,1]],[[1,2,0,0],[1,4,3,1],[1,3,2,1],[0,2,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,1,2],[1,2,3,0]],[[1,2,0,0],[1,3,3,1],[1,3,1,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,1],[1,3,1,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,1],[1,4,1,2],[1,2,2,0]],[[1,2,0,0],[1,4,3,1],[1,3,1,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,1],[1,3,1,2],[0,2,2,2]],[[1,2,0,0],[1,3,3,1],[1,3,1,2],[0,2,3,1]],[[1,2,0,0],[1,3,3,1],[1,3,1,2],[0,3,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,1,3],[0,2,2,1]],[[1,2,0,0],[1,3,3,1],[1,4,1,2],[0,2,2,1]],[[1,2,0,0],[1,4,3,1],[1,3,1,2],[0,2,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,1,1],[1,2,2,2]],[[1,2,0,0],[1,3,3,1],[1,3,1,1],[1,2,3,1]],[[1,2,0,0],[1,3,3,1],[1,3,1,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,1,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,1],[1,4,1,1],[1,2,2,1]],[[1,2,0,0],[1,4,3,1],[1,3,1,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,0,2],[1,2,2,2]],[[1,2,0,0],[1,3,3,1],[1,3,0,2],[1,2,3,1]],[[1,2,0,0],[1,3,3,1],[1,3,0,2],[1,3,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,0,2],[2,2,2,1]],[[1,2,0,0],[1,3,3,1],[1,3,0,3],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[1,4,0,2],[1,2,2,1]],[[1,2,0,0],[1,4,3,1],[1,3,0,2],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[1,2,3,2],[0,2,3,0]],[[1,2,0,0],[1,3,3,1],[1,2,3,2],[0,3,2,0]],[[1,2,0,0],[1,3,3,1],[1,2,3,3],[0,2,2,0]],[[1,2,0,0],[1,3,3,1],[1,2,4,2],[0,2,2,0]],[[1,2,0,0],[1,3,3,1],[1,2,3,2],[0,2,1,2]],[[1,2,0,0],[1,3,3,1],[1,2,3,3],[0,2,1,1]],[[1,2,0,0],[1,3,3,1],[1,2,4,2],[0,2,1,1]],[[1,2,0,0],[1,3,3,1],[1,2,3,1],[0,2,2,2]],[[1,2,0,0],[1,3,3,1],[1,2,3,1],[0,2,3,1]],[[1,2,0,0],[1,3,3,1],[1,2,3,1],[0,3,2,1]],[[1,2,0,0],[1,3,3,1],[1,2,4,1],[0,2,2,1]],[[1,2,0,0],[1,3,3,1],[1,2,2,2],[0,2,2,2]],[[1,2,0,0],[1,3,3,1],[1,2,2,2],[0,2,3,1]],[[1,2,0,0],[1,3,3,1],[1,2,2,2],[0,3,2,1]],[[1,2,0,0],[1,3,3,1],[1,2,2,3],[0,2,2,1]],[[1,2,0,0],[1,3,3,1],[0,3,3,2],[1,3,1,0]],[[1,2,0,0],[1,3,3,1],[0,3,3,2],[2,2,1,0]],[[1,2,0,0],[1,3,3,1],[0,3,3,3],[1,2,1,0]],[[1,2,0,0],[1,3,3,1],[0,3,4,2],[1,2,1,0]],[[1,2,0,0],[1,3,3,1],[0,4,3,2],[1,2,1,0]],[[1,2,0,0],[1,4,3,1],[0,3,3,2],[1,2,1,0]],[[1,2,0,0],[1,3,3,1],[0,3,3,2],[1,2,0,2]],[[1,2,0,0],[1,3,3,1],[0,3,3,2],[1,3,0,1]],[[1,2,0,0],[1,3,3,1],[0,3,3,2],[2,2,0,1]],[[1,2,0,0],[1,3,3,1],[0,3,3,3],[1,2,0,1]],[[1,2,0,0],[1,3,3,1],[0,3,4,2],[1,2,0,1]],[[1,2,0,0],[1,3,3,1],[0,4,3,2],[1,2,0,1]],[[1,2,0,0],[1,4,3,1],[0,3,3,2],[1,2,0,1]],[[1,2,0,0],[1,3,3,1],[0,3,3,2],[1,1,3,0]],[[1,2,0,0],[1,3,3,1],[0,3,3,3],[1,1,2,0]],[[1,2,0,0],[1,3,3,1],[0,3,4,2],[1,1,2,0]],[[1,2,0,0],[1,3,3,1],[0,4,3,2],[1,1,2,0]],[[1,2,0,0],[1,4,3,1],[0,3,3,2],[1,1,2,0]],[[1,2,0,0],[1,3,3,1],[0,3,3,2],[1,1,1,2]],[[1,2,0,0],[1,3,3,1],[0,3,3,3],[1,1,1,1]],[[1,2,0,0],[1,3,3,1],[0,3,4,2],[1,1,1,1]],[[1,2,0,0],[1,3,3,1],[0,4,3,2],[1,1,1,1]],[[1,2,0,0],[1,4,3,1],[0,3,3,2],[1,1,1,1]],[[1,2,0,0],[1,3,3,1],[0,3,3,2],[1,0,2,2]],[[1,2,0,0],[1,3,3,1],[0,3,3,3],[1,0,2,1]],[[1,2,0,0],[1,3,3,1],[0,3,4,2],[1,0,2,1]],[[1,2,0,0],[1,3,3,1],[0,3,3,1],[1,3,1,1]],[[1,2,0,0],[1,3,3,1],[0,3,3,1],[2,2,1,1]],[[1,2,0,0],[1,3,3,1],[0,3,4,1],[1,2,1,1]],[[1,2,0,0],[1,3,3,1],[0,4,3,1],[1,2,1,1]],[[1,2,0,0],[1,4,3,1],[0,3,3,1],[1,2,1,1]],[[1,2,0,0],[1,3,3,1],[0,3,3,1],[1,1,2,2]],[[1,2,0,0],[1,3,3,1],[0,3,3,1],[1,1,3,1]],[[1,2,0,0],[1,3,3,1],[0,3,4,1],[1,1,2,1]],[[1,2,0,0],[1,3,3,1],[0,4,3,1],[1,1,2,1]],[[1,2,0,0],[1,4,3,1],[0,3,3,1],[1,1,2,1]],[[1,2,0,0],[1,3,3,1],[0,3,3,0],[1,2,3,1]],[[1,2,0,0],[1,3,3,1],[0,3,3,0],[1,3,2,1]],[[1,2,0,0],[1,3,3,1],[0,3,3,0],[2,2,2,1]],[[1,2,0,0],[1,3,3,1],[0,4,3,0],[1,2,2,1]],[[1,2,0,0],[1,4,3,1],[0,3,3,0],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[0,3,2,2],[1,2,3,0]],[[1,2,0,0],[1,3,3,1],[0,3,2,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,1],[0,3,2,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,1],[0,4,2,2],[1,2,2,0]],[[1,2,0,0],[1,4,3,1],[0,3,2,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,1],[0,3,2,2],[1,1,2,2]],[[1,2,0,0],[1,3,3,1],[0,3,2,2],[1,1,3,1]],[[1,2,0,0],[1,3,3,1],[0,3,2,3],[1,1,2,1]],[[1,2,0,0],[1,3,3,1],[0,3,2,1],[1,2,2,2]],[[1,2,0,0],[1,3,3,1],[0,3,2,1],[1,2,3,1]],[[1,2,0,0],[1,3,3,1],[0,3,2,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,1],[0,3,2,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,1],[0,4,2,1],[1,2,2,1]],[[1,2,0,0],[1,4,3,1],[0,3,2,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[0,3,1,2],[1,2,2,2]],[[1,2,0,0],[1,3,3,1],[0,3,1,2],[1,2,3,1]],[[1,2,0,0],[1,3,3,1],[0,3,1,2],[1,3,2,1]],[[1,2,0,0],[1,3,3,1],[0,3,1,2],[2,2,2,1]],[[1,2,0,0],[1,3,3,1],[0,3,1,3],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[0,4,1,2],[1,2,2,1]],[[1,2,0,0],[1,4,3,1],[0,3,1,2],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[0,2,3,2],[1,2,3,0]],[[1,2,0,0],[1,3,3,1],[0,2,3,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,1],[0,2,3,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,1],[0,2,3,3],[1,2,2,0]],[[1,2,0,0],[1,3,3,1],[0,2,4,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,1],[0,2,3,2],[1,2,1,2]],[[1,2,0,0],[1,3,3,1],[0,2,3,3],[1,2,1,1]],[[1,2,0,0],[1,3,3,1],[0,2,4,2],[1,2,1,1]],[[1,2,0,0],[1,3,3,1],[0,2,3,1],[1,2,2,2]],[[1,2,0,0],[1,3,3,1],[0,2,3,1],[1,2,3,1]],[[1,2,0,0],[1,3,3,1],[0,2,3,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,1],[0,2,3,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,1],[0,2,4,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,1],[0,2,2,2],[1,2,2,2]],[[1,2,0,0],[1,3,3,1],[0,2,2,2],[1,2,3,1]],[[1,2,0,0],[1,3,3,1],[0,2,2,2],[1,3,2,1]],[[1,2,0,0],[1,3,3,1],[0,2,2,2],[2,2,2,1]],[[1,2,0,0],[1,3,3,1],[0,2,2,3],[1,2,2,1]],[[1,2,0,0],[1,3,3,0],[2,3,3,2],[2,2,0,0]],[[1,2,0,0],[1,3,3,0],[2,4,3,2],[1,2,0,0]],[[1,2,0,0],[1,3,3,0],[3,3,3,2],[1,2,0,0]],[[1,2,0,0],[1,4,3,0],[2,3,3,2],[1,2,0,0]],[[1,2,0,0],[1,3,3,0],[2,3,3,2],[2,1,1,0]],[[1,2,0,0],[1,3,3,0],[2,3,4,2],[1,1,1,0]],[[1,2,0,0],[1,3,3,0],[2,4,3,2],[1,1,1,0]],[[1,2,0,0],[1,3,3,0],[3,3,3,2],[1,1,1,0]],[[1,2,0,0],[1,4,3,0],[2,3,3,2],[1,1,1,0]],[[1,2,0,0],[1,3,3,0],[2,3,3,2],[2,1,0,1]],[[1,2,0,0],[1,3,3,0],[2,3,4,2],[1,1,0,1]],[[1,2,0,0],[1,3,3,0],[2,4,3,2],[1,1,0,1]],[[1,2,0,0],[1,3,3,0],[3,3,3,2],[1,1,0,1]],[[1,2,0,0],[1,4,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,2],[0,1,0,2],[1,2,2,1]],[[1,1,2,2],[1,3,3,2],[0,1,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,3,3],[0,1,0,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[0,1,1,2],[1,2,1,1]],[[1,1,2,2],[1,3,3,2],[0,1,1,2],[1,2,1,1]],[[1,1,2,1],[1,3,3,3],[0,1,1,2],[1,2,1,1]],[[1,1,3,1],[1,3,3,2],[0,1,1,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,2],[0,1,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,3,3],[0,1,1,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,0],[2,3,3,2],[1,0,3,0]],[[1,2,0,0],[1,3,3,0],[2,3,3,2],[2,0,2,0]],[[1,2,0,0],[1,3,3,0],[2,3,4,2],[1,0,2,0]],[[1,2,0,0],[1,3,3,0],[2,4,3,2],[1,0,2,0]],[[1,2,0,0],[1,3,3,0],[3,3,3,2],[1,0,2,0]],[[1,1,3,1],[1,3,3,2],[0,1,3,0],[1,2,1,1]],[[1,1,2,2],[1,3,3,2],[0,1,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,4,2],[0,1,3,0],[1,2,1,1]],[[1,1,3,1],[1,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,1,2,2],[1,3,3,2],[0,1,3,0],[1,2,2,0]],[[1,1,2,1],[1,4,3,2],[0,1,3,0],[1,2,2,0]],[[1,1,2,1],[1,3,4,2],[0,1,3,0],[1,2,2,0]],[[1,2,0,0],[1,4,3,0],[2,3,3,2],[1,0,2,0]],[[1,2,0,0],[1,3,3,0],[2,3,3,2],[2,0,1,1]],[[1,2,0,0],[1,3,3,0],[2,3,4,2],[1,0,1,1]],[[1,2,0,0],[1,3,3,0],[2,4,3,2],[1,0,1,1]],[[1,2,0,0],[1,3,3,0],[3,3,3,2],[1,0,1,1]],[[1,2,0,0],[1,4,3,0],[2,3,3,2],[1,0,1,1]],[[1,2,0,0],[1,3,3,0],[2,3,3,2],[0,3,1,0]],[[1,2,0,0],[1,3,3,0],[2,3,4,2],[0,2,1,0]],[[1,2,0,0],[1,3,3,0],[2,4,3,2],[0,2,1,0]],[[1,2,0,0],[1,3,3,0],[3,3,3,2],[0,2,1,0]],[[1,2,0,0],[1,4,3,0],[2,3,3,2],[0,2,1,0]],[[1,2,0,0],[1,3,3,0],[2,3,3,2],[0,3,0,1]],[[1,2,0,0],[1,3,3,0],[2,3,4,2],[0,2,0,1]],[[1,2,0,0],[1,3,3,0],[2,4,3,2],[0,2,0,1]],[[1,2,0,0],[1,3,3,0],[3,3,3,2],[0,2,0,1]],[[1,2,0,0],[1,4,3,0],[2,3,3,2],[0,2,0,1]],[[1,2,0,0],[1,3,3,0],[2,3,3,2],[0,1,3,0]],[[1,2,0,0],[1,3,3,0],[2,3,4,2],[0,1,2,0]],[[1,2,0,0],[1,3,3,0],[2,4,3,2],[0,1,2,0]],[[1,2,0,0],[1,3,3,0],[3,3,3,2],[0,1,2,0]],[[1,2,0,0],[1,4,3,0],[2,3,3,2],[0,1,2,0]],[[1,2,0,0],[1,3,3,0],[2,3,4,2],[0,1,1,1]],[[1,2,0,0],[1,3,3,0],[2,4,3,2],[0,1,1,1]],[[1,2,0,0],[1,3,3,0],[3,3,3,2],[0,1,1,1]],[[1,2,0,0],[1,4,3,0],[2,3,3,2],[0,1,1,1]],[[1,2,0,0],[1,3,3,0],[2,3,3,1],[2,2,0,1]],[[1,2,0,0],[1,3,3,0],[2,4,3,1],[1,2,0,1]],[[1,2,0,0],[1,3,3,0],[3,3,3,1],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[0,2,0,2],[1,1,2,1]],[[1,1,2,2],[1,3,3,2],[0,2,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,3,3],[0,2,0,2],[1,1,2,1]],[[1,1,3,1],[1,3,3,2],[0,2,1,2],[1,0,2,1]],[[1,1,2,2],[1,3,3,2],[0,2,1,2],[1,0,2,1]],[[1,1,2,1],[1,3,3,3],[0,2,1,2],[1,0,2,1]],[[1,1,3,1],[1,3,3,2],[0,2,1,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,2],[0,2,1,2],[1,1,1,1]],[[1,1,2,1],[1,3,3,3],[0,2,1,2],[1,1,1,1]],[[1,1,3,1],[1,3,3,2],[0,2,1,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,2],[0,2,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,3,3],[0,2,1,2],[1,1,2,0]],[[1,1,3,1],[1,3,3,2],[0,2,1,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,2],[0,2,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,3],[0,2,1,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[0,2,1,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,2],[0,2,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,3],[0,2,1,2],[1,2,1,0]],[[1,2,0,0],[1,4,3,0],[2,3,3,1],[1,2,0,1]],[[1,2,0,0],[1,3,3,0],[2,3,3,1],[2,1,1,1]],[[1,2,0,0],[1,3,3,0],[2,3,4,1],[1,1,1,1]],[[1,1,3,1],[1,3,3,2],[0,2,2,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,2],[0,2,2,2],[1,1,0,1]],[[1,1,2,1],[1,3,3,3],[0,2,2,2],[1,1,0,1]],[[1,2,0,0],[1,3,3,0],[2,4,3,1],[1,1,1,1]],[[1,2,0,0],[1,3,3,0],[3,3,3,1],[1,1,1,1]],[[1,2,0,0],[1,4,3,0],[2,3,3,1],[1,1,1,1]],[[1,2,0,0],[1,3,3,0],[2,3,3,1],[1,0,2,2]],[[1,2,0,0],[1,3,3,0],[2,3,3,1],[1,0,3,1]],[[1,2,0,0],[1,3,3,0],[2,3,3,1],[2,0,2,1]],[[1,2,0,0],[1,3,3,0],[2,3,4,1],[1,0,2,1]],[[1,2,0,0],[1,3,3,0],[2,4,3,1],[1,0,2,1]],[[1,2,0,0],[1,3,3,0],[3,3,3,1],[1,0,2,1]],[[1,2,0,0],[1,4,3,0],[2,3,3,1],[1,0,2,1]],[[1,2,0,0],[1,3,3,0],[2,3,3,1],[0,3,1,1]],[[1,2,0,0],[1,3,3,0],[2,3,4,1],[0,2,1,1]],[[1,2,0,0],[1,3,3,0],[2,4,3,1],[0,2,1,1]],[[1,2,0,0],[1,3,3,0],[3,3,3,1],[0,2,1,1]],[[1,2,0,0],[1,4,3,0],[2,3,3,1],[0,2,1,1]],[[1,2,0,0],[1,3,3,0],[2,3,3,1],[0,1,2,2]],[[1,2,0,0],[1,3,3,0],[2,3,3,1],[0,1,3,1]],[[1,2,0,0],[1,3,3,0],[2,3,4,1],[0,1,2,1]],[[1,2,0,0],[1,3,3,0],[2,4,3,1],[0,1,2,1]],[[1,2,0,0],[1,3,3,0],[3,3,3,1],[0,1,2,1]],[[1,2,0,0],[1,4,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,3,1],[1,3,3,2],[0,2,3,0],[1,0,2,1]],[[1,1,2,2],[1,3,3,2],[0,2,3,0],[1,0,2,1]],[[1,1,2,1],[1,3,4,2],[0,2,3,0],[1,0,2,1]],[[1,1,3,1],[1,3,3,2],[0,2,3,0],[1,1,1,1]],[[1,1,2,2],[1,3,3,2],[0,2,3,0],[1,1,1,1]],[[1,1,2,1],[1,4,3,2],[0,2,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,4,2],[0,2,3,0],[1,1,1,1]],[[1,1,3,1],[1,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,1,2,2],[1,3,3,2],[0,2,3,0],[1,1,2,0]],[[1,1,2,1],[1,4,3,2],[0,2,3,0],[1,1,2,0]],[[1,1,2,1],[1,3,4,2],[0,2,3,0],[1,1,2,0]],[[1,1,3,1],[1,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,1,2,2],[1,3,3,2],[0,2,3,0],[1,2,0,1]],[[1,1,2,1],[1,4,3,2],[0,2,3,0],[1,2,0,1]],[[1,1,2,1],[1,3,4,2],[0,2,3,0],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,1,2,2],[1,3,3,2],[0,2,3,0],[1,2,1,0]],[[1,1,2,1],[1,4,3,2],[0,2,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,4,2],[0,2,3,0],[1,2,1,0]],[[1,2,0,0],[1,3,3,0],[2,3,3,0],[2,1,2,1]],[[1,2,0,0],[1,3,3,0],[2,4,3,0],[1,1,2,1]],[[1,2,0,0],[1,3,3,0],[3,3,3,0],[1,1,2,1]],[[1,2,0,0],[1,4,3,0],[2,3,3,0],[1,1,2,1]],[[1,2,0,0],[1,3,3,0],[2,3,3,0],[0,2,3,1]],[[1,2,0,0],[1,3,3,0],[2,3,3,0],[0,3,2,1]],[[1,2,0,0],[1,3,3,0],[2,4,3,0],[0,2,2,1]],[[1,2,0,0],[1,3,3,0],[3,3,3,0],[0,2,2,1]],[[1,2,0,0],[1,4,3,0],[2,3,3,0],[0,2,2,1]],[[1,2,0,0],[1,3,3,0],[2,3,2,2],[2,1,2,0]],[[1,2,0,0],[1,3,3,0],[2,4,2,2],[1,1,2,0]],[[1,2,0,0],[1,3,3,0],[3,3,2,2],[1,1,2,0]],[[1,2,0,0],[1,4,3,0],[2,3,2,2],[1,1,2,0]],[[1,2,0,0],[1,3,3,0],[2,3,2,2],[0,2,3,0]],[[1,2,0,0],[1,3,3,0],[2,3,2,2],[0,3,2,0]],[[1,2,0,0],[1,3,3,0],[2,4,2,2],[0,2,2,0]],[[1,2,0,0],[1,3,3,0],[3,3,2,2],[0,2,2,0]],[[1,2,0,0],[1,4,3,0],[2,3,2,2],[0,2,2,0]],[[1,2,0,0],[1,3,3,0],[2,3,2,1],[2,1,2,1]],[[1,2,0,0],[1,3,3,0],[2,4,2,1],[1,1,2,1]],[[1,2,0,0],[1,3,3,0],[3,3,2,1],[1,1,2,1]],[[1,2,0,0],[1,4,3,0],[2,3,2,1],[1,1,2,1]],[[1,2,0,0],[1,3,3,0],[2,3,2,1],[0,2,2,2]],[[1,2,0,0],[1,3,3,0],[2,3,2,1],[0,2,3,1]],[[1,2,0,0],[1,3,3,0],[2,3,2,1],[0,3,2,1]],[[1,2,0,0],[1,3,3,0],[2,4,2,1],[0,2,2,1]],[[1,2,0,0],[1,3,3,0],[3,3,2,1],[0,2,2,1]],[[1,2,0,0],[1,4,3,0],[2,3,2,1],[0,2,2,1]],[[1,2,0,0],[1,3,3,0],[2,3,2,0],[1,3,2,1]],[[1,2,0,0],[1,3,3,0],[2,3,2,0],[2,2,2,1]],[[1,2,0,0],[1,3,3,0],[3,3,2,0],[1,2,2,1]],[[1,2,0,0],[1,3,3,0],[2,3,1,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,0],[2,3,1,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,0],[3,3,1,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,0],[2,3,1,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,0],[2,3,1,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,0],[3,3,1,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,0],[2,2,3,2],[1,3,1,0]],[[1,2,0,0],[1,3,3,0],[2,2,3,2],[2,2,1,0]],[[1,2,0,0],[1,3,3,0],[3,2,3,2],[1,2,1,0]],[[1,2,0,0],[1,3,3,0],[2,2,3,2],[1,3,0,1]],[[1,2,0,0],[1,3,3,0],[2,2,3,2],[2,2,0,1]],[[1,2,0,0],[1,3,3,0],[3,2,3,2],[1,2,0,1]],[[1,2,0,0],[1,3,3,0],[2,2,3,2],[0,2,3,0]],[[1,2,0,0],[1,3,3,0],[2,2,3,2],[0,3,2,0]],[[1,2,0,0],[1,3,3,0],[2,2,4,2],[0,2,2,0]],[[1,2,0,0],[1,3,3,0],[2,2,3,1],[1,3,1,1]],[[1,2,0,0],[1,3,3,0],[2,2,3,1],[2,2,1,1]],[[1,2,0,0],[1,3,3,0],[3,2,3,1],[1,2,1,1]],[[1,2,0,0],[1,3,3,0],[2,2,3,1],[0,2,2,2]],[[1,2,0,0],[1,3,3,0],[2,2,3,1],[0,2,3,1]],[[1,2,0,0],[1,3,3,0],[2,2,3,1],[0,3,2,1]],[[1,2,0,0],[1,3,3,0],[2,2,4,1],[0,2,2,1]],[[1,2,0,0],[1,3,3,0],[2,2,3,0],[1,2,3,1]],[[1,2,0,0],[1,3,3,0],[2,2,3,0],[1,3,2,1]],[[1,2,0,0],[1,3,3,0],[2,2,3,0],[2,2,2,1]],[[1,2,0,0],[1,3,3,0],[3,2,3,0],[1,2,2,1]],[[1,2,0,0],[1,3,3,0],[2,2,2,2],[1,2,3,0]],[[1,2,0,0],[1,3,3,0],[2,2,2,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,0],[2,2,2,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,0],[3,2,2,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,0],[2,2,2,1],[1,2,2,2]],[[1,2,0,0],[1,3,3,0],[2,2,2,1],[1,2,3,1]],[[1,2,0,0],[1,3,3,0],[2,2,2,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,0],[2,2,2,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,0],[3,2,2,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,0],[2,1,3,2],[1,2,3,0]],[[1,2,0,0],[1,3,3,0],[2,1,3,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,0],[2,1,3,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,0],[2,1,4,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,0],[3,1,3,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,0],[2,1,3,1],[1,2,2,2]],[[1,2,0,0],[1,3,3,0],[2,1,3,1],[1,2,3,1]],[[1,2,0,0],[1,3,3,0],[2,1,3,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,0],[2,1,3,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,0],[2,1,4,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,0],[3,1,3,1],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[0,3,0,2],[0,1,2,1]],[[1,1,2,2],[1,3,3,2],[0,3,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,3,3],[0,3,0,2],[0,1,2,1]],[[1,1,3,1],[1,3,3,2],[0,3,0,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,2],[0,3,0,2],[1,1,1,1]],[[1,1,2,1],[1,3,3,3],[0,3,0,2],[1,1,1,1]],[[1,1,3,1],[1,3,3,2],[0,3,0,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,2],[0,3,0,2],[1,1,2,0]],[[1,1,2,1],[1,3,3,3],[0,3,0,2],[1,1,2,0]],[[1,1,3,1],[1,3,3,2],[0,3,0,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,2],[0,3,0,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,3],[0,3,0,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[0,3,0,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,2],[0,3,0,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,3],[0,3,0,2],[1,2,1,0]],[[1,2,0,0],[1,3,3,0],[1,3,3,2],[1,3,1,0]],[[1,2,0,0],[1,3,3,0],[1,3,3,2],[2,2,1,0]],[[1,2,0,0],[1,3,3,0],[1,3,4,2],[1,2,1,0]],[[1,2,0,0],[1,3,3,0],[1,4,3,2],[1,2,1,0]],[[1,2,0,0],[1,4,3,0],[1,3,3,2],[1,2,1,0]],[[1,2,0,0],[1,3,3,0],[1,3,3,2],[1,3,0,1]],[[1,2,0,0],[1,3,3,0],[1,3,3,2],[2,2,0,1]],[[1,2,0,0],[1,3,3,0],[1,3,4,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[0,3,1,0],[1,2,2,0]],[[1,1,2,2],[1,3,3,2],[0,3,1,0],[1,2,2,0]],[[1,1,2,1],[1,4,3,2],[0,3,1,0],[1,2,2,0]],[[1,1,2,1],[1,3,4,2],[0,3,1,0],[1,2,2,0]],[[1,1,2,1],[1,3,3,2],[0,4,1,0],[1,2,2,0]],[[1,1,2,1],[1,3,3,2],[0,3,1,0],[2,2,2,0]],[[1,1,2,1],[1,3,3,2],[0,3,1,0],[1,3,2,0]],[[1,2,0,0],[1,3,3,0],[1,4,3,2],[1,2,0,1]],[[1,2,0,0],[1,4,3,0],[1,3,3,2],[1,2,0,1]],[[1,2,0,0],[1,3,3,0],[1,3,3,2],[1,1,3,0]],[[1,2,0,0],[1,3,3,0],[1,3,4,2],[1,1,2,0]],[[1,2,0,0],[1,3,3,0],[1,4,3,2],[1,1,2,0]],[[1,1,3,1],[1,3,3,2],[0,3,1,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,2],[0,3,1,2],[0,0,2,1]],[[1,1,2,1],[1,3,3,3],[0,3,1,2],[0,0,2,1]],[[1,1,3,1],[1,3,3,2],[0,3,1,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,2],[0,3,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,3],[0,3,1,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,2],[0,3,1,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,2],[0,3,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,3],[0,3,1,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[0,3,1,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,2],[0,3,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,3],[0,3,1,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[0,3,1,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,2],[0,3,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,3],[0,3,1,2],[0,2,1,0]],[[1,2,0,0],[1,4,3,0],[1,3,3,2],[1,1,2,0]],[[1,2,0,0],[1,3,3,0],[1,3,3,2],[1,0,2,2]],[[1,2,0,0],[1,3,3,0],[1,3,3,2],[1,0,3,1]],[[1,2,0,0],[1,3,3,0],[1,3,4,2],[1,0,2,1]],[[1,2,0,0],[1,3,3,0],[1,4,3,2],[1,0,2,1]],[[1,2,0,0],[1,4,3,0],[1,3,3,2],[1,0,2,1]],[[1,2,0,0],[1,3,3,0],[1,3,3,2],[0,3,1,1]],[[1,2,0,0],[1,3,3,0],[1,3,4,2],[0,2,1,1]],[[1,2,0,0],[1,3,3,0],[1,4,3,2],[0,2,1,1]],[[1,2,0,0],[1,4,3,0],[1,3,3,2],[0,2,1,1]],[[1,2,0,0],[1,3,3,0],[1,3,3,2],[0,1,2,2]],[[1,2,0,0],[1,3,3,0],[1,3,3,2],[0,1,3,1]],[[1,2,0,0],[1,3,3,0],[1,3,4,2],[0,1,2,1]],[[1,2,0,0],[1,3,3,0],[1,4,3,2],[0,1,2,1]],[[1,2,0,0],[1,4,3,0],[1,3,3,2],[0,1,2,1]],[[1,2,0,0],[1,3,3,0],[1,3,3,1],[1,3,1,1]],[[1,2,0,0],[1,3,3,0],[1,3,3,1],[2,2,1,1]],[[1,2,0,0],[1,3,3,0],[1,3,4,1],[1,2,1,1]],[[1,2,0,0],[1,3,3,0],[1,4,3,1],[1,2,1,1]],[[1,2,0,0],[1,4,3,0],[1,3,3,1],[1,2,1,1]],[[1,2,0,0],[1,3,3,0],[1,3,3,1],[1,1,2,2]],[[1,2,0,0],[1,3,3,0],[1,3,3,1],[1,1,3,1]],[[1,2,0,0],[1,3,3,0],[1,3,4,1],[1,1,2,1]],[[1,2,0,0],[1,3,3,0],[1,4,3,1],[1,1,2,1]],[[1,2,0,0],[1,4,3,0],[1,3,3,1],[1,1,2,1]],[[1,2,0,0],[1,3,3,0],[1,3,3,0],[1,2,3,1]],[[1,2,0,0],[1,3,3,0],[1,3,3,0],[1,3,2,1]],[[1,2,0,0],[1,3,3,0],[1,3,3,0],[2,2,2,1]],[[1,2,0,0],[1,3,3,0],[1,4,3,0],[1,2,2,1]],[[1,2,0,0],[1,4,3,0],[1,3,3,0],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[0,3,2,0],[1,1,1,1]],[[1,1,2,2],[1,3,3,2],[0,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,4,3,2],[0,3,2,0],[1,1,1,1]],[[1,1,2,1],[1,3,4,2],[0,3,2,0],[1,1,1,1]],[[1,1,3,1],[1,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,1,2,2],[1,3,3,2],[0,3,2,0],[1,1,2,0]],[[1,1,2,1],[1,4,3,2],[0,3,2,0],[1,1,2,0]],[[1,1,2,1],[1,3,4,2],[0,3,2,0],[1,1,2,0]],[[1,1,2,1],[1,3,3,2],[0,4,2,0],[1,1,2,0]],[[1,1,3,1],[1,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,1,2,2],[1,3,3,2],[0,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,4,3,2],[0,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,4,2],[0,3,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,3,2],[0,4,2,0],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,1,2,2],[1,3,3,2],[0,3,2,0],[1,2,1,0]],[[1,1,2,1],[1,4,3,2],[0,3,2,0],[1,2,1,0]],[[1,1,2,1],[1,3,4,2],[0,3,2,0],[1,2,1,0]],[[1,1,2,1],[1,3,3,2],[0,4,2,0],[1,2,1,0]],[[1,1,2,1],[1,3,3,2],[0,3,2,0],[2,2,1,0]],[[1,1,2,1],[1,3,3,2],[0,3,2,0],[1,3,1,0]],[[1,2,0,0],[1,3,3,0],[1,3,2,2],[1,2,3,0]],[[1,2,0,0],[1,3,3,0],[1,3,2,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,0],[1,3,2,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,0],[1,4,2,2],[1,2,2,0]],[[1,2,0,0],[1,4,3,0],[1,3,2,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,0],[1,3,2,2],[0,2,2,2]],[[1,2,0,0],[1,3,3,0],[1,3,2,2],[0,2,3,1]],[[1,2,0,0],[1,3,3,0],[1,3,2,2],[0,3,2,1]],[[1,2,0,0],[1,3,3,0],[1,4,2,2],[0,2,2,1]],[[1,2,0,0],[1,4,3,0],[1,3,2,2],[0,2,2,1]],[[1,2,0,0],[1,3,3,0],[1,3,2,1],[1,2,2,2]],[[1,2,0,0],[1,3,3,0],[1,3,2,1],[1,2,3,1]],[[1,2,0,0],[1,3,3,0],[1,3,2,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,0],[1,3,2,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,0],[1,4,2,1],[1,2,2,1]],[[1,2,0,0],[1,4,3,0],[1,3,2,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,0],[1,2,3,2],[1,2,3,0]],[[1,2,0,0],[1,3,3,0],[1,2,3,2],[1,3,2,0]],[[1,2,0,0],[1,3,3,0],[1,2,3,2],[2,2,2,0]],[[1,2,0,0],[1,3,3,0],[1,2,4,2],[1,2,2,0]],[[1,2,0,0],[1,3,3,0],[1,2,3,2],[0,2,2,2]],[[1,2,0,0],[1,3,3,0],[1,2,3,2],[0,2,3,1]],[[1,2,0,0],[1,3,3,0],[1,2,3,2],[0,3,2,1]],[[1,2,0,0],[1,3,3,0],[1,2,4,2],[0,2,2,1]],[[1,2,0,0],[1,3,3,0],[1,2,3,1],[1,2,2,2]],[[1,2,0,0],[1,3,3,0],[1,2,3,1],[1,2,3,1]],[[1,2,0,0],[1,3,3,0],[1,2,3,1],[1,3,2,1]],[[1,2,0,0],[1,3,3,0],[1,2,3,1],[2,2,2,1]],[[1,2,0,0],[1,3,3,0],[1,2,4,1],[1,2,2,1]],[[1,2,0,0],[1,3,3,0],[0,3,3,2],[1,3,1,1]],[[1,1,3,1],[1,3,3,2],[0,3,2,2],[0,1,0,1]],[[1,1,2,2],[1,3,3,2],[0,3,2,2],[0,1,0,1]],[[1,1,2,1],[1,3,3,3],[0,3,2,2],[0,1,0,1]],[[1,2,0,0],[1,3,3,0],[0,3,3,2],[2,2,1,1]],[[1,2,0,0],[1,3,3,0],[0,3,4,2],[1,2,1,1]],[[1,2,0,0],[1,3,3,0],[0,4,3,2],[1,2,1,1]],[[1,2,0,0],[1,4,3,0],[0,3,3,2],[1,2,1,1]],[[1,2,0,0],[1,3,3,0],[0,3,3,2],[1,1,2,2]],[[1,2,0,0],[1,3,3,0],[0,3,3,2],[1,1,3,1]],[[1,2,0,0],[1,3,3,0],[0,3,4,2],[1,1,2,1]],[[1,2,0,0],[1,3,3,0],[0,4,3,2],[1,1,2,1]],[[1,2,0,0],[1,4,3,0],[0,3,3,2],[1,1,2,1]],[[1,2,0,0],[1,3,3,0],[0,3,2,2],[1,2,2,2]],[[1,2,0,0],[1,3,3,0],[0,3,2,2],[1,2,3,1]],[[1,2,0,0],[1,3,3,0],[0,3,2,2],[1,3,2,1]],[[1,2,0,0],[1,3,3,0],[0,3,2,2],[2,2,2,1]],[[1,2,0,0],[1,3,3,0],[0,4,2,2],[1,2,2,1]],[[1,2,0,0],[1,4,3,0],[0,3,2,2],[1,2,2,1]],[[1,2,0,0],[1,3,3,0],[0,2,3,2],[1,2,2,2]],[[1,2,0,0],[1,3,3,0],[0,2,3,2],[1,2,3,1]],[[1,2,0,0],[1,3,3,0],[0,2,3,2],[1,3,2,1]],[[1,2,0,0],[1,3,3,0],[0,2,3,2],[2,2,2,1]],[[1,2,0,0],[1,3,3,0],[0,2,4,2],[1,2,2,1]],[[1,2,0,0],[1,3,2,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,0],[1,3,2,2],[2,4,3,1],[1,2,0,0]],[[1,2,0,0],[1,3,2,2],[3,3,3,1],[1,2,0,0]],[[1,2,0,0],[1,4,2,2],[2,3,3,1],[1,2,0,0]],[[1,2,0,0],[1,3,2,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,0],[1,3,2,2],[2,3,4,1],[1,1,1,0]],[[1,2,0,0],[1,3,2,2],[2,4,3,1],[1,1,1,0]],[[1,2,0,0],[1,3,2,2],[3,3,3,1],[1,1,1,0]],[[1,1,3,1],[1,3,3,2],[0,3,3,0],[0,0,2,1]],[[1,1,2,2],[1,3,3,2],[0,3,3,0],[0,0,2,1]],[[1,1,2,1],[1,3,4,2],[0,3,3,0],[0,0,2,1]],[[1,1,3,1],[1,3,3,2],[0,3,3,0],[0,1,1,1]],[[1,1,2,2],[1,3,3,2],[0,3,3,0],[0,1,1,1]],[[1,1,2,1],[1,4,3,2],[0,3,3,0],[0,1,1,1]],[[1,1,2,1],[1,3,4,2],[0,3,3,0],[0,1,1,1]],[[1,1,3,1],[1,3,3,2],[0,3,3,0],[0,1,2,0]],[[1,1,2,2],[1,3,3,2],[0,3,3,0],[0,1,2,0]],[[1,1,2,1],[1,4,3,2],[0,3,3,0],[0,1,2,0]],[[1,1,2,1],[1,3,4,2],[0,3,3,0],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[0,3,3,0],[0,2,0,1]],[[1,1,2,2],[1,3,3,2],[0,3,3,0],[0,2,0,1]],[[1,1,2,1],[1,4,3,2],[0,3,3,0],[0,2,0,1]],[[1,1,2,1],[1,3,4,2],[0,3,3,0],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[0,3,3,0],[0,2,1,0]],[[1,1,2,2],[1,3,3,2],[0,3,3,0],[0,2,1,0]],[[1,1,2,1],[1,4,3,2],[0,3,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,4,2],[0,3,3,0],[0,2,1,0]],[[1,2,0,0],[1,4,2,2],[2,3,3,1],[1,1,1,0]],[[1,2,0,0],[1,3,2,2],[2,3,3,1],[2,1,0,1]],[[1,2,0,0],[1,3,2,2],[2,3,4,1],[1,1,0,1]],[[1,2,0,0],[1,3,2,2],[2,4,3,1],[1,1,0,1]],[[1,2,0,0],[1,3,2,2],[3,3,3,1],[1,1,0,1]],[[1,2,0,0],[1,4,2,2],[2,3,3,1],[1,1,0,1]],[[1,2,0,0],[1,3,2,2],[2,3,3,1],[1,0,3,0]],[[1,2,0,0],[1,3,2,2],[2,3,3,1],[2,0,2,0]],[[1,2,0,0],[1,3,2,2],[2,3,4,1],[1,0,2,0]],[[1,2,0,0],[1,3,2,2],[2,4,3,1],[1,0,2,0]],[[1,1,3,1],[1,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,1,2,2],[1,3,3,2],[0,3,3,0],[1,2,0,0]],[[1,1,2,1],[1,4,3,2],[0,3,3,0],[1,2,0,0]],[[1,1,2,1],[1,3,4,2],[0,3,3,0],[1,2,0,0]],[[1,1,2,1],[1,3,3,2],[0,4,3,0],[1,2,0,0]],[[1,2,0,0],[1,3,2,2],[3,3,3,1],[1,0,2,0]],[[1,2,0,0],[1,4,2,2],[2,3,3,1],[1,0,2,0]],[[1,2,0,0],[1,3,2,2],[2,3,3,1],[2,0,1,1]],[[1,2,0,0],[1,3,2,2],[2,3,4,1],[1,0,1,1]],[[1,2,0,0],[1,3,2,2],[2,4,3,1],[1,0,1,1]],[[1,2,0,0],[1,3,2,2],[3,3,3,1],[1,0,1,1]],[[1,2,0,0],[1,4,2,2],[2,3,3,1],[1,0,1,1]],[[1,2,0,0],[1,3,2,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,0],[1,3,2,2],[2,3,4,1],[0,2,1,0]],[[1,2,0,0],[1,3,2,2],[2,4,3,1],[0,2,1,0]],[[1,2,0,0],[1,3,2,2],[3,3,3,1],[0,2,1,0]],[[1,2,0,0],[1,4,2,2],[2,3,3,1],[0,2,1,0]],[[1,2,0,0],[1,3,2,2],[2,3,3,1],[0,3,0,1]],[[1,2,0,0],[1,3,2,2],[2,3,4,1],[0,2,0,1]],[[1,2,0,0],[1,3,2,2],[2,4,3,1],[0,2,0,1]],[[1,2,0,0],[1,3,2,2],[3,3,3,1],[0,2,0,1]],[[1,2,0,0],[1,4,2,2],[2,3,3,1],[0,2,0,1]],[[1,2,0,0],[1,3,2,2],[2,3,3,1],[0,1,3,0]],[[1,2,0,0],[1,3,2,2],[2,3,4,1],[0,1,2,0]],[[1,2,0,0],[1,3,2,2],[2,4,3,1],[0,1,2,0]],[[1,2,0,0],[1,3,2,2],[3,3,3,1],[0,1,2,0]],[[1,2,0,0],[1,4,2,2],[2,3,3,1],[0,1,2,0]],[[1,2,0,0],[1,3,2,2],[2,3,4,1],[0,1,1,1]],[[1,2,0,0],[1,3,2,2],[2,4,3,1],[0,1,1,1]],[[1,2,0,0],[1,3,2,2],[3,3,3,1],[0,1,1,1]],[[1,2,0,0],[1,4,2,2],[2,3,3,1],[0,1,1,1]],[[1,2,0,0],[1,3,2,2],[2,3,3,0],[2,2,0,1]],[[1,2,0,0],[1,3,2,2],[2,4,3,0],[1,2,0,1]],[[1,2,0,0],[1,3,2,2],[3,3,3,0],[1,2,0,1]],[[1,2,0,0],[1,4,2,2],[2,3,3,0],[1,2,0,1]],[[1,2,0,0],[1,3,2,2],[2,3,3,0],[2,1,1,1]],[[1,2,0,0],[1,3,2,2],[2,3,4,0],[1,1,1,1]],[[1,2,0,0],[1,3,2,2],[2,4,3,0],[1,1,1,1]],[[1,2,0,0],[1,3,2,2],[3,3,3,0],[1,1,1,1]],[[1,2,0,0],[1,4,2,2],[2,3,3,0],[1,1,1,1]],[[1,2,0,0],[1,3,2,2],[2,3,3,0],[1,0,2,2]],[[1,2,0,0],[1,3,2,2],[2,3,3,0],[1,0,3,1]],[[1,2,0,0],[1,3,2,2],[2,3,3,0],[2,0,2,1]],[[1,2,0,0],[1,3,2,2],[2,3,4,0],[1,0,2,1]],[[1,2,0,0],[1,3,2,2],[2,4,3,0],[1,0,2,1]],[[1,2,0,0],[1,3,2,2],[3,3,3,0],[1,0,2,1]],[[1,2,0,0],[1,4,2,2],[2,3,3,0],[1,0,2,1]],[[1,2,0,0],[1,3,2,2],[2,3,3,0],[0,3,1,1]],[[1,2,0,0],[1,3,2,2],[2,3,4,0],[0,2,1,1]],[[1,2,0,0],[1,3,2,2],[2,4,3,0],[0,2,1,1]],[[1,2,0,0],[1,3,2,2],[3,3,3,0],[0,2,1,1]],[[1,2,0,0],[1,4,2,2],[2,3,3,0],[0,2,1,1]],[[1,2,0,0],[1,3,2,2],[2,3,3,0],[0,1,2,2]],[[1,2,0,0],[1,3,2,2],[2,3,3,0],[0,1,3,1]],[[1,2,0,0],[1,3,2,2],[2,3,4,0],[0,1,2,1]],[[1,2,0,0],[1,3,2,2],[2,4,3,0],[0,1,2,1]],[[1,2,0,0],[1,3,2,2],[3,3,3,0],[0,1,2,1]],[[1,2,0,0],[1,4,2,2],[2,3,3,0],[0,1,2,1]],[[1,2,0,0],[1,3,2,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,0],[1,3,2,2],[2,4,2,1],[1,1,2,0]],[[1,2,0,0],[1,3,2,2],[3,3,2,1],[1,1,2,0]],[[1,2,0,0],[1,4,2,2],[2,3,2,1],[1,1,2,0]],[[1,2,0,0],[1,3,2,2],[2,3,2,1],[0,2,3,0]],[[1,2,0,0],[1,3,2,2],[2,3,2,1],[0,3,2,0]],[[1,2,0,0],[1,3,2,2],[2,4,2,1],[0,2,2,0]],[[1,2,0,0],[1,3,2,2],[3,3,2,1],[0,2,2,0]],[[1,2,0,0],[1,4,2,2],[2,3,2,1],[0,2,2,0]],[[1,2,0,0],[1,3,2,2],[2,3,2,0],[2,1,2,1]],[[1,2,0,0],[1,3,2,2],[2,4,2,0],[1,1,2,1]],[[1,2,0,0],[1,3,2,2],[3,3,2,0],[1,1,2,1]],[[1,2,0,0],[1,4,2,2],[2,3,2,0],[1,1,2,1]],[[1,2,0,0],[1,3,2,2],[2,3,2,0],[0,2,2,2]],[[1,2,0,0],[1,3,2,2],[2,3,2,0],[0,2,3,1]],[[1,2,0,0],[1,3,2,2],[2,3,2,0],[0,3,2,1]],[[1,2,0,0],[1,3,2,2],[2,4,2,0],[0,2,2,1]],[[1,2,0,0],[1,3,2,2],[3,3,2,0],[0,2,2,1]],[[1,2,0,0],[1,4,2,2],[2,3,2,0],[0,2,2,1]],[[1,2,0,0],[1,3,2,2],[2,3,1,1],[1,3,2,0]],[[1,2,0,0],[1,3,2,2],[2,3,1,1],[2,2,2,0]],[[1,2,0,0],[1,3,2,2],[3,3,1,1],[1,2,2,0]],[[1,2,0,0],[1,3,2,2],[2,3,1,0],[1,3,2,1]],[[1,2,0,0],[1,3,2,2],[2,3,1,0],[2,2,2,1]],[[1,2,0,0],[1,3,2,2],[3,3,1,0],[1,2,2,1]],[[1,2,0,0],[1,3,2,2],[2,3,0,2],[2,1,2,1]],[[1,2,0,0],[1,3,2,2],[2,4,0,2],[1,1,2,1]],[[1,2,0,0],[1,3,2,2],[3,3,0,2],[1,1,2,1]],[[1,2,0,0],[1,4,2,2],[2,3,0,2],[1,1,2,1]],[[1,2,0,0],[1,3,2,2],[2,3,0,2],[0,2,2,2]],[[1,2,0,0],[1,3,2,2],[2,3,0,2],[0,2,3,1]],[[1,2,0,0],[1,3,2,2],[2,3,0,2],[0,3,2,1]],[[1,2,0,0],[1,3,2,2],[2,3,0,3],[0,2,2,1]],[[1,2,0,0],[1,3,2,2],[2,4,0,2],[0,2,2,1]],[[1,2,0,0],[1,3,2,2],[3,3,0,2],[0,2,2,1]],[[1,2,0,0],[1,4,2,2],[2,3,0,2],[0,2,2,1]],[[1,2,0,0],[1,3,2,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,0],[1,3,2,2],[2,2,3,1],[2,2,1,0]],[[1,2,0,0],[1,3,2,2],[3,2,3,1],[1,2,1,0]],[[1,2,0,0],[1,3,2,2],[2,2,3,1],[1,3,0,1]],[[1,2,0,0],[1,3,2,2],[2,2,3,1],[2,2,0,1]],[[1,2,0,0],[1,3,2,2],[3,2,3,1],[1,2,0,1]],[[1,2,0,0],[1,3,2,2],[2,2,3,1],[0,2,3,0]],[[1,2,0,0],[1,3,2,2],[2,2,3,1],[0,3,2,0]],[[1,2,0,0],[1,3,2,2],[2,2,4,1],[0,2,2,0]],[[1,2,0,0],[1,3,2,2],[2,2,3,0],[1,3,1,1]],[[1,2,0,0],[1,3,2,2],[2,2,3,0],[2,2,1,1]],[[1,2,0,0],[1,3,2,2],[3,2,3,0],[1,2,1,1]],[[1,2,0,0],[1,3,2,2],[2,2,3,0],[0,2,2,2]],[[1,2,0,0],[1,3,2,2],[2,2,3,0],[0,2,3,1]],[[1,2,0,0],[1,3,2,2],[2,2,3,0],[0,3,2,1]],[[1,2,0,0],[1,3,2,2],[2,2,4,0],[0,2,2,1]],[[1,2,0,0],[1,3,2,2],[2,2,2,1],[1,2,3,0]],[[1,2,0,0],[1,3,2,2],[2,2,2,1],[1,3,2,0]],[[1,2,0,0],[1,3,2,2],[2,2,2,1],[2,2,2,0]],[[1,2,0,0],[1,3,2,2],[3,2,2,1],[1,2,2,0]],[[1,2,0,0],[1,3,2,2],[2,2,2,0],[1,2,2,2]],[[1,2,0,0],[1,3,2,2],[2,2,2,0],[1,2,3,1]],[[1,2,0,0],[1,3,2,2],[2,2,2,0],[1,3,2,1]],[[1,2,0,0],[1,3,2,2],[2,2,2,0],[2,2,2,1]],[[1,2,0,0],[1,3,2,2],[3,2,2,0],[1,2,2,1]],[[1,2,0,0],[1,3,2,2],[2,2,0,2],[1,2,2,2]],[[1,2,0,0],[1,3,2,2],[2,2,0,2],[1,2,3,1]],[[1,2,0,0],[1,3,2,2],[2,2,0,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,2],[2,2,0,2],[2,2,2,1]],[[1,2,0,0],[1,3,2,2],[2,2,0,3],[1,2,2,1]],[[1,2,0,0],[1,3,2,2],[3,2,0,2],[1,2,2,1]],[[1,2,0,0],[1,3,2,2],[2,1,3,1],[1,2,3,0]],[[1,2,0,0],[1,3,2,2],[2,1,3,1],[1,3,2,0]],[[1,2,0,0],[1,3,2,2],[2,1,3,1],[2,2,2,0]],[[1,2,0,0],[1,3,2,2],[2,1,4,1],[1,2,2,0]],[[1,2,0,0],[1,3,2,2],[3,1,3,1],[1,2,2,0]],[[1,2,0,0],[1,3,2,2],[2,1,3,0],[1,2,2,2]],[[1,2,0,0],[1,3,2,2],[2,1,3,0],[1,2,3,1]],[[1,2,0,0],[1,3,2,2],[2,1,3,0],[1,3,2,1]],[[1,2,0,0],[1,3,2,2],[2,1,3,0],[2,2,2,1]],[[1,2,0,0],[1,3,2,2],[2,1,4,0],[1,2,2,1]],[[1,2,0,0],[1,3,2,2],[3,1,3,0],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[1,0,0,2],[1,2,2,1]],[[1,1,2,2],[1,3,3,2],[1,0,0,2],[1,2,2,1]],[[1,1,2,1],[1,3,3,3],[1,0,0,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[1,0,1,2],[1,2,1,1]],[[1,1,2,2],[1,3,3,2],[1,0,1,2],[1,2,1,1]],[[1,1,2,1],[1,3,3,3],[1,0,1,2],[1,2,1,1]],[[1,1,3,1],[1,3,3,2],[1,0,1,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,2],[1,0,1,2],[1,2,2,0]],[[1,1,2,1],[1,3,3,3],[1,0,1,2],[1,2,2,0]],[[1,1,3,1],[1,3,3,2],[1,0,3,0],[1,2,1,1]],[[1,1,2,2],[1,3,3,2],[1,0,3,0],[1,2,1,1]],[[1,1,2,1],[1,3,4,2],[1,0,3,0],[1,2,1,1]],[[1,1,3,1],[1,3,3,2],[1,0,3,0],[1,2,2,0]],[[1,1,2,2],[1,3,3,2],[1,0,3,0],[1,2,2,0]],[[1,1,2,1],[1,4,3,2],[1,0,3,0],[1,2,2,0]],[[1,1,2,1],[1,3,4,2],[1,0,3,0],[1,2,2,0]],[[1,2,0,0],[1,3,2,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,0],[1,3,2,2],[1,3,3,1],[2,2,1,0]],[[1,2,0,0],[1,3,2,2],[1,3,4,1],[1,2,1,0]],[[1,2,0,0],[1,3,2,2],[1,4,3,1],[1,2,1,0]],[[1,2,0,0],[1,4,2,2],[1,3,3,1],[1,2,1,0]],[[1,2,0,0],[1,3,2,2],[1,3,3,1],[1,3,0,1]],[[1,2,0,0],[1,3,2,2],[1,3,3,1],[2,2,0,1]],[[1,2,0,0],[1,3,2,2],[1,3,4,1],[1,2,0,1]],[[1,2,0,0],[1,3,2,2],[1,4,3,1],[1,2,0,1]],[[1,2,0,0],[1,4,2,2],[1,3,3,1],[1,2,0,1]],[[1,2,0,0],[1,3,2,2],[1,3,3,1],[1,1,3,0]],[[1,2,0,0],[1,3,2,2],[1,3,4,1],[1,1,2,0]],[[1,2,0,0],[1,3,2,2],[1,4,3,1],[1,1,2,0]],[[1,2,0,0],[1,4,2,2],[1,3,3,1],[1,1,2,0]],[[1,2,0,0],[1,3,2,2],[1,3,3,0],[1,3,1,1]],[[1,2,0,0],[1,3,2,2],[1,3,3,0],[2,2,1,1]],[[1,2,0,0],[1,3,2,2],[1,3,4,0],[1,2,1,1]],[[1,2,0,0],[1,3,2,2],[1,4,3,0],[1,2,1,1]],[[1,2,0,0],[1,4,2,2],[1,3,3,0],[1,2,1,1]],[[1,2,0,0],[1,3,2,2],[1,3,3,0],[1,1,2,2]],[[1,2,0,0],[1,3,2,2],[1,3,3,0],[1,1,3,1]],[[1,2,0,0],[1,3,2,2],[1,3,4,0],[1,1,2,1]],[[1,2,0,0],[1,3,2,2],[1,4,3,0],[1,1,2,1]],[[1,2,0,0],[1,4,2,2],[1,3,3,0],[1,1,2,1]],[[1,1,3,1],[1,3,3,2],[1,1,0,2],[0,2,2,1]],[[1,1,2,2],[1,3,3,2],[1,1,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,3,3],[1,1,0,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,2],[1,1,1,2],[0,2,1,1]],[[1,1,2,2],[1,3,3,2],[1,1,1,2],[0,2,1,1]],[[1,1,2,1],[1,3,3,3],[1,1,1,2],[0,2,1,1]],[[1,1,3,1],[1,3,3,2],[1,1,1,2],[0,2,2,0]],[[1,1,2,2],[1,3,3,2],[1,1,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,3,3],[1,1,1,2],[0,2,2,0]],[[1,2,0,0],[1,3,2,2],[1,3,2,1],[1,2,3,0]],[[1,2,0,0],[1,3,2,2],[1,3,2,1],[1,3,2,0]],[[1,2,0,0],[1,3,2,2],[1,3,2,1],[2,2,2,0]],[[1,2,0,0],[1,3,2,2],[1,4,2,1],[1,2,2,0]],[[1,2,0,0],[1,4,2,2],[1,3,2,1],[1,2,2,0]],[[1,2,0,0],[1,3,2,2],[1,3,2,0],[1,2,2,2]],[[1,2,0,0],[1,3,2,2],[1,3,2,0],[1,2,3,1]],[[1,2,0,0],[1,3,2,2],[1,3,2,0],[1,3,2,1]],[[1,2,0,0],[1,3,2,2],[1,3,2,0],[2,2,2,1]],[[1,2,0,0],[1,3,2,2],[1,4,2,0],[1,2,2,1]],[[1,2,0,0],[1,4,2,2],[1,3,2,0],[1,2,2,1]],[[1,2,0,0],[1,3,2,2],[1,3,0,2],[1,2,2,2]],[[1,2,0,0],[1,3,2,2],[1,3,0,2],[1,2,3,1]],[[1,2,0,0],[1,3,2,2],[1,3,0,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,2],[1,3,0,2],[2,2,2,1]],[[1,2,0,0],[1,3,2,2],[1,3,0,3],[1,2,2,1]],[[1,2,0,0],[1,3,2,2],[1,4,0,2],[1,2,2,1]],[[1,2,0,0],[1,4,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[1,1,3,0],[0,2,1,1]],[[1,1,2,2],[1,3,3,2],[1,1,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,4,2],[1,1,3,0],[0,2,1,1]],[[1,1,3,1],[1,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,1,2,2],[1,3,3,2],[1,1,3,0],[0,2,2,0]],[[1,1,2,1],[1,4,3,2],[1,1,3,0],[0,2,2,0]],[[1,1,2,1],[1,3,4,2],[1,1,3,0],[0,2,2,0]],[[1,2,0,0],[1,3,2,2],[1,2,3,1],[1,2,3,0]],[[1,2,0,0],[1,3,2,2],[1,2,3,1],[1,3,2,0]],[[1,2,0,0],[1,3,2,2],[1,2,3,1],[2,2,2,0]],[[1,2,0,0],[1,3,2,2],[1,2,4,1],[1,2,2,0]],[[1,2,0,0],[1,3,2,2],[1,2,3,0],[1,2,2,2]],[[1,2,0,0],[1,3,2,2],[1,2,3,0],[1,2,3,1]],[[1,2,0,0],[1,3,2,2],[1,2,3,0],[1,3,2,1]],[[1,2,0,0],[1,3,2,2],[1,2,3,0],[2,2,2,1]],[[1,2,0,0],[1,3,2,2],[1,2,4,0],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[2,2,0,0]],[[1,2,0,0],[1,3,2,1],[2,4,3,2],[1,2,0,0]],[[1,2,0,0],[1,3,2,1],[3,3,3,2],[1,2,0,0]],[[1,2,0,0],[1,4,2,1],[2,3,3,2],[1,2,0,0]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[2,1,1,0]],[[1,2,0,0],[1,3,2,1],[2,3,3,3],[1,1,1,0]],[[1,2,0,0],[1,3,2,1],[2,3,4,2],[1,1,1,0]],[[1,2,0,0],[1,3,2,1],[2,4,3,2],[1,1,1,0]],[[1,2,0,0],[1,3,2,1],[3,3,3,2],[1,1,1,0]],[[1,2,0,0],[1,4,2,1],[2,3,3,2],[1,1,1,0]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[1,1,0,2]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[2,1,0,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,3],[1,1,0,1]],[[1,2,0,0],[1,3,2,1],[2,3,4,2],[1,1,0,1]],[[1,2,0,0],[1,3,2,1],[2,4,3,2],[1,1,0,1]],[[1,2,0,0],[1,3,2,1],[3,3,3,2],[1,1,0,1]],[[1,2,0,0],[1,4,2,1],[2,3,3,2],[1,1,0,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[1,0,3,0]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[2,0,2,0]],[[1,2,0,0],[1,3,2,1],[2,3,3,3],[1,0,2,0]],[[1,2,0,0],[1,3,2,1],[2,3,4,2],[1,0,2,0]],[[1,2,0,0],[1,3,2,1],[2,4,3,2],[1,0,2,0]],[[1,2,0,0],[1,3,2,1],[3,3,3,2],[1,0,2,0]],[[1,2,0,0],[1,4,2,1],[2,3,3,2],[1,0,2,0]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[1,0,1,2]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[2,0,1,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,3],[1,0,1,1]],[[1,2,0,0],[1,3,2,1],[2,3,4,2],[1,0,1,1]],[[1,2,0,0],[1,3,2,1],[2,4,3,2],[1,0,1,1]],[[1,2,0,0],[1,3,2,1],[3,3,3,2],[1,0,1,1]],[[1,2,0,0],[1,4,2,1],[2,3,3,2],[1,0,1,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[0,3,1,0]],[[1,2,0,0],[1,3,2,1],[2,3,3,3],[0,2,1,0]],[[1,2,0,0],[1,3,2,1],[2,3,4,2],[0,2,1,0]],[[1,2,0,0],[1,3,2,1],[2,4,3,2],[0,2,1,0]],[[1,2,0,0],[1,3,2,1],[3,3,3,2],[0,2,1,0]],[[1,2,0,0],[1,4,2,1],[2,3,3,2],[0,2,1,0]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[0,2,0,2]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[0,3,0,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,3],[0,2,0,1]],[[1,2,0,0],[1,3,2,1],[2,3,4,2],[0,2,0,1]],[[1,2,0,0],[1,3,2,1],[2,4,3,2],[0,2,0,1]],[[1,2,0,0],[1,3,2,1],[3,3,3,2],[0,2,0,1]],[[1,2,0,0],[1,4,2,1],[2,3,3,2],[0,2,0,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[0,1,3,0]],[[1,2,0,0],[1,3,2,1],[2,3,3,3],[0,1,2,0]],[[1,2,0,0],[1,3,2,1],[2,3,4,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[1,2,0,2],[0,1,2,1]],[[1,1,2,2],[1,3,3,2],[1,2,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,3,3],[1,2,0,2],[0,1,2,1]],[[1,1,3,1],[1,3,3,2],[1,2,0,2],[1,0,2,1]],[[1,1,2,2],[1,3,3,2],[1,2,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,3,3],[1,2,0,2],[1,0,2,1]],[[1,2,0,0],[1,3,2,1],[2,4,3,2],[0,1,2,0]],[[1,2,0,0],[1,3,2,1],[3,3,3,2],[0,1,2,0]],[[1,2,0,0],[1,4,2,1],[2,3,3,2],[0,1,2,0]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[0,1,1,2]],[[1,2,0,0],[1,3,2,1],[2,3,3,3],[0,1,1,1]],[[1,2,0,0],[1,3,2,1],[2,3,4,2],[0,1,1,1]],[[1,2,0,0],[1,3,2,1],[2,4,3,2],[0,1,1,1]],[[1,2,0,0],[1,3,2,1],[3,3,3,2],[0,1,1,1]],[[1,2,0,0],[1,4,2,1],[2,3,3,2],[0,1,1,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,2],[0,0,2,2]],[[1,1,3,1],[1,3,3,2],[1,2,1,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,2],[1,2,1,2],[0,0,2,1]],[[1,1,2,1],[1,3,3,3],[1,2,1,2],[0,0,2,1]],[[1,1,3,1],[1,3,3,2],[1,2,1,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,2],[1,2,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,3],[1,2,1,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,2],[1,2,1,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,2],[1,2,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,3],[1,2,1,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[1,2,1,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,2],[1,2,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,3],[1,2,1,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[1,2,1,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,2],[1,2,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,3],[1,2,1,2],[0,2,1,0]],[[1,2,0,0],[1,3,2,1],[2,3,3,3],[0,0,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,4,2],[0,0,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,1],[2,2,0,1]],[[1,1,3,1],[1,3,3,2],[1,2,1,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,2],[1,2,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,3,3],[1,2,1,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,2],[1,2,1,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,2],[1,2,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,3,3],[1,2,1,2],[1,0,2,0]],[[1,1,3,1],[1,3,3,2],[1,2,1,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,2],[1,2,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,3,3],[1,2,1,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,2],[1,2,1,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,2],[1,2,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,3,3],[1,2,1,2],[1,1,1,0]],[[1,2,0,0],[1,3,2,1],[2,4,3,1],[1,2,0,1]],[[1,2,0,0],[1,3,2,1],[3,3,3,1],[1,2,0,1]],[[1,2,0,0],[1,4,2,1],[2,3,3,1],[1,2,0,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,1],[2,1,1,1]],[[1,2,0,0],[1,3,2,1],[2,3,4,1],[1,1,1,1]],[[1,2,0,0],[1,3,2,1],[2,4,3,1],[1,1,1,1]],[[1,2,0,0],[1,3,2,1],[3,3,3,1],[1,1,1,1]],[[1,2,0,0],[1,4,2,1],[2,3,3,1],[1,1,1,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,1],[1,0,2,2]],[[1,2,0,0],[1,3,2,1],[2,3,3,1],[1,0,3,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,1],[2,0,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,4,1],[1,0,2,1]],[[1,2,0,0],[1,3,2,1],[2,4,3,1],[1,0,2,1]],[[1,2,0,0],[1,3,2,1],[3,3,3,1],[1,0,2,1]],[[1,2,0,0],[1,4,2,1],[2,3,3,1],[1,0,2,1]],[[1,1,3,1],[1,3,3,2],[1,2,2,2],[0,1,0,1]],[[1,1,2,2],[1,3,3,2],[1,2,2,2],[0,1,0,1]],[[1,1,2,1],[1,3,3,3],[1,2,2,2],[0,1,0,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,1],[0,3,1,1]],[[1,2,0,0],[1,3,2,1],[2,3,4,1],[0,2,1,1]],[[1,2,0,0],[1,3,2,1],[2,4,3,1],[0,2,1,1]],[[1,2,0,0],[1,3,2,1],[3,3,3,1],[0,2,1,1]],[[1,2,0,0],[1,4,2,1],[2,3,3,1],[0,2,1,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,1],[0,1,2,2]],[[1,2,0,0],[1,3,2,1],[2,3,3,1],[0,1,3,1]],[[1,2,0,0],[1,3,2,1],[2,3,4,1],[0,1,2,1]],[[1,2,0,0],[1,3,2,1],[2,4,3,1],[0,1,2,1]],[[1,2,0,0],[1,3,2,1],[3,3,3,1],[0,1,2,1]],[[1,2,0,0],[1,4,2,1],[2,3,3,1],[0,1,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,0],[2,1,2,1]],[[1,2,0,0],[1,3,2,1],[2,4,3,0],[1,1,2,1]],[[1,2,0,0],[1,3,2,1],[3,3,3,0],[1,1,2,1]],[[1,2,0,0],[1,4,2,1],[2,3,3,0],[1,1,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,0],[0,2,3,1]],[[1,2,0,0],[1,3,2,1],[2,3,3,0],[0,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,4,3,0],[0,2,2,1]],[[1,2,0,0],[1,3,2,1],[3,3,3,0],[0,2,2,1]],[[1,1,3,1],[1,3,3,2],[1,2,2,2],[1,0,0,1]],[[1,1,2,2],[1,3,3,2],[1,2,2,2],[1,0,0,1]],[[1,1,2,1],[1,3,3,3],[1,2,2,2],[1,0,0,1]],[[1,2,0,0],[1,4,2,1],[2,3,3,0],[0,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,0],[1,3,2,1],[2,4,2,2],[1,1,2,0]],[[1,2,0,0],[1,3,2,1],[3,3,2,2],[1,1,2,0]],[[1,2,0,0],[1,4,2,1],[2,3,2,2],[1,1,2,0]],[[1,2,0,0],[1,3,2,1],[2,3,2,2],[1,0,2,2]],[[1,2,0,0],[1,3,2,1],[2,3,2,2],[1,0,3,1]],[[1,2,0,0],[1,3,2,1],[2,3,2,3],[1,0,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,2,2],[0,2,3,0]],[[1,2,0,0],[1,3,2,1],[2,3,2,2],[0,3,2,0]],[[1,2,0,0],[1,3,2,1],[2,4,2,2],[0,2,2,0]],[[1,2,0,0],[1,3,2,1],[3,3,2,2],[0,2,2,0]],[[1,2,0,0],[1,4,2,1],[2,3,2,2],[0,2,2,0]],[[1,2,0,0],[1,3,2,1],[2,3,2,2],[0,1,2,2]],[[1,2,0,0],[1,3,2,1],[2,3,2,2],[0,1,3,1]],[[1,2,0,0],[1,3,2,1],[2,3,2,3],[0,1,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,2,1],[2,1,2,1]],[[1,2,0,0],[1,3,2,1],[2,4,2,1],[1,1,2,1]],[[1,2,0,0],[1,3,2,1],[3,3,2,1],[1,1,2,1]],[[1,2,0,0],[1,4,2,1],[2,3,2,1],[1,1,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,2,1],[0,2,2,2]],[[1,2,0,0],[1,3,2,1],[2,3,2,1],[0,2,3,1]],[[1,2,0,0],[1,3,2,1],[2,3,2,1],[0,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,4,2,1],[0,2,2,1]],[[1,2,0,0],[1,3,2,1],[3,3,2,1],[0,2,2,1]],[[1,2,0,0],[1,4,2,1],[2,3,2,1],[0,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,2,0],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,2,0],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[3,3,2,0],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,1,2],[1,3,2,0]],[[1,1,3,1],[1,3,3,2],[1,2,3,0],[0,0,2,1]],[[1,1,2,2],[1,3,3,2],[1,2,3,0],[0,0,2,1]],[[1,1,2,1],[1,3,4,2],[1,2,3,0],[0,0,2,1]],[[1,1,3,1],[1,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,1,2,2],[1,3,3,2],[1,2,3,0],[0,1,1,1]],[[1,1,2,1],[1,4,3,2],[1,2,3,0],[0,1,1,1]],[[1,1,2,1],[1,3,4,2],[1,2,3,0],[0,1,1,1]],[[1,1,3,1],[1,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,1,2,2],[1,3,3,2],[1,2,3,0],[0,1,2,0]],[[1,1,2,1],[1,4,3,2],[1,2,3,0],[0,1,2,0]],[[1,1,2,1],[1,3,4,2],[1,2,3,0],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,1,2,2],[1,3,3,2],[1,2,3,0],[0,2,0,1]],[[1,1,2,1],[1,4,3,2],[1,2,3,0],[0,2,0,1]],[[1,1,2,1],[1,3,4,2],[1,2,3,0],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,1,2,2],[1,3,3,2],[1,2,3,0],[0,2,1,0]],[[1,1,2,1],[1,4,3,2],[1,2,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,4,2],[1,2,3,0],[0,2,1,0]],[[1,2,0,0],[1,3,2,1],[2,3,1,2],[2,2,2,0]],[[1,2,0,0],[1,3,2,1],[3,3,1,2],[1,2,2,0]],[[1,2,0,0],[1,3,2,1],[2,3,1,2],[2,1,2,1]],[[1,2,0,0],[1,3,2,1],[2,4,1,2],[1,1,2,1]],[[1,2,0,0],[1,3,2,1],[3,3,1,2],[1,1,2,1]],[[1,2,0,0],[1,4,2,1],[2,3,1,2],[1,1,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,1,2],[0,2,2,2]],[[1,2,0,0],[1,3,2,1],[2,3,1,2],[0,2,3,1]],[[1,2,0,0],[1,3,2,1],[2,3,1,2],[0,3,2,1]],[[1,1,3,1],[1,3,3,2],[1,2,3,0],[1,0,1,1]],[[1,1,2,2],[1,3,3,2],[1,2,3,0],[1,0,1,1]],[[1,1,2,1],[1,4,3,2],[1,2,3,0],[1,0,1,1]],[[1,1,2,1],[1,3,4,2],[1,2,3,0],[1,0,1,1]],[[1,1,3,1],[1,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,1,2,2],[1,3,3,2],[1,2,3,0],[1,0,2,0]],[[1,1,2,1],[1,4,3,2],[1,2,3,0],[1,0,2,0]],[[1,1,2,1],[1,3,4,2],[1,2,3,0],[1,0,2,0]],[[1,1,3,1],[1,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,1,2,2],[1,3,3,2],[1,2,3,0],[1,1,0,1]],[[1,1,2,1],[1,4,3,2],[1,2,3,0],[1,1,0,1]],[[1,1,2,1],[1,3,4,2],[1,2,3,0],[1,1,0,1]],[[1,1,3,1],[1,3,3,2],[1,2,3,0],[1,1,1,0]],[[1,1,2,2],[1,3,3,2],[1,2,3,0],[1,1,1,0]],[[1,1,2,1],[1,4,3,2],[1,2,3,0],[1,1,1,0]],[[1,1,2,1],[1,3,4,2],[1,2,3,0],[1,1,1,0]],[[1,2,0,0],[1,3,2,1],[2,3,1,3],[0,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,4,1,2],[0,2,2,1]],[[1,2,0,0],[1,3,2,1],[3,3,1,2],[0,2,2,1]],[[1,2,0,0],[1,4,2,1],[2,3,1,2],[0,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,1,1],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,1,1],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[3,3,1,1],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,0,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,3,0,2],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[3,3,0,2],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,2,3,2],[1,3,1,0]],[[1,2,0,0],[1,3,2,1],[2,2,3,2],[2,2,1,0]],[[1,2,0,0],[1,3,2,1],[3,2,3,2],[1,2,1,0]],[[1,2,0,0],[1,3,2,1],[2,2,3,2],[1,3,0,1]],[[1,2,0,0],[1,3,2,1],[2,2,3,2],[2,2,0,1]],[[1,2,0,0],[1,3,2,1],[3,2,3,2],[1,2,0,1]],[[1,2,0,0],[1,3,2,1],[2,2,3,2],[0,2,3,0]],[[1,2,0,0],[1,3,2,1],[2,2,3,2],[0,3,2,0]],[[1,2,0,0],[1,3,2,1],[2,2,3,3],[0,2,2,0]],[[1,2,0,0],[1,3,2,1],[2,2,4,2],[0,2,2,0]],[[1,2,0,0],[1,3,2,1],[2,2,3,2],[0,2,1,2]],[[1,2,0,0],[1,3,2,1],[2,2,3,3],[0,2,1,1]],[[1,2,0,0],[1,3,2,1],[2,2,4,2],[0,2,1,1]],[[1,2,0,0],[1,3,2,1],[2,2,3,1],[1,3,1,1]],[[1,2,0,0],[1,3,2,1],[2,2,3,1],[2,2,1,1]],[[1,2,0,0],[1,3,2,1],[3,2,3,1],[1,2,1,1]],[[1,2,0,0],[1,3,2,1],[2,2,3,1],[0,2,2,2]],[[1,2,0,0],[1,3,2,1],[2,2,3,1],[0,2,3,1]],[[1,2,0,0],[1,3,2,1],[2,2,3,1],[0,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,2,4,1],[0,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,2,3,0],[1,2,3,1]],[[1,2,0,0],[1,3,2,1],[2,2,3,0],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,2,3,0],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[3,2,3,0],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,2,2,2],[1,2,3,0]],[[1,2,0,0],[1,3,2,1],[2,2,2,2],[1,3,2,0]],[[1,2,0,0],[1,3,2,1],[2,2,2,2],[2,2,2,0]],[[1,2,0,0],[1,3,2,1],[3,2,2,2],[1,2,2,0]],[[1,2,0,0],[1,3,2,1],[2,2,2,2],[0,2,2,2]],[[1,2,0,0],[1,3,2,1],[2,2,2,2],[0,2,3,1]],[[1,2,0,0],[1,3,2,1],[2,2,2,2],[0,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,2,2,3],[0,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,2,2,1],[1,2,2,2]],[[1,2,0,0],[1,3,2,1],[2,2,2,1],[1,2,3,1]],[[1,2,0,0],[1,3,2,1],[2,2,2,1],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,2,2,1],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[3,2,2,1],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,2,1,2],[1,2,2,2]],[[1,2,0,0],[1,3,2,1],[2,2,1,2],[1,2,3,1]],[[1,2,0,0],[1,3,2,1],[2,2,1,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,2,1,2],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,2,1,3],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[3,2,1,2],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,1,3,2],[1,2,3,0]],[[1,2,0,0],[1,3,2,1],[2,1,3,2],[1,3,2,0]],[[1,2,0,0],[1,3,2,1],[2,1,3,2],[2,2,2,0]],[[1,2,0,0],[1,3,2,1],[2,1,3,3],[1,2,2,0]],[[1,2,0,0],[1,3,2,1],[2,1,4,2],[1,2,2,0]],[[1,2,0,0],[1,3,2,1],[3,1,3,2],[1,2,2,0]],[[1,2,0,0],[1,3,2,1],[2,1,3,2],[1,2,1,2]],[[1,2,0,0],[1,3,2,1],[2,1,3,3],[1,2,1,1]],[[1,2,0,0],[1,3,2,1],[2,1,4,2],[1,2,1,1]],[[1,2,0,0],[1,3,2,1],[2,1,3,1],[1,2,2,2]],[[1,2,0,0],[1,3,2,1],[2,1,3,1],[1,2,3,1]],[[1,2,0,0],[1,3,2,1],[2,1,3,1],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,1,3,1],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,1,4,1],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[3,1,3,1],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,1,2,2],[1,2,2,2]],[[1,2,0,0],[1,3,2,1],[2,1,2,2],[1,2,3,1]],[[1,2,0,0],[1,3,2,1],[2,1,2,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[2,1,2,2],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[2,1,2,3],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[3,1,2,2],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,0],[1,3,2,1],[1,3,3,2],[2,2,1,0]],[[1,2,0,0],[1,3,2,1],[1,3,3,3],[1,2,1,0]],[[1,2,0,0],[1,3,2,1],[1,3,4,2],[1,2,1,0]],[[1,2,0,0],[1,3,2,1],[1,4,3,2],[1,2,1,0]],[[1,2,0,0],[1,4,2,1],[1,3,3,2],[1,2,1,0]],[[1,2,0,0],[1,3,2,1],[1,3,3,2],[1,2,0,2]],[[1,2,0,0],[1,3,2,1],[1,3,3,2],[1,3,0,1]],[[1,2,0,0],[1,3,2,1],[1,3,3,2],[2,2,0,1]],[[1,2,0,0],[1,3,2,1],[1,3,3,3],[1,2,0,1]],[[1,2,0,0],[1,3,2,1],[1,3,4,2],[1,2,0,1]],[[1,2,0,0],[1,3,2,1],[1,4,3,2],[1,2,0,1]],[[1,2,0,0],[1,4,2,1],[1,3,3,2],[1,2,0,1]],[[1,2,0,0],[1,3,2,1],[1,3,3,2],[1,1,3,0]],[[1,2,0,0],[1,3,2,1],[1,3,3,3],[1,1,2,0]],[[1,2,0,0],[1,3,2,1],[1,3,4,2],[1,1,2,0]],[[1,2,0,0],[1,3,2,1],[1,4,3,2],[1,1,2,0]],[[1,2,0,0],[1,4,2,1],[1,3,3,2],[1,1,2,0]],[[1,2,0,0],[1,3,2,1],[1,3,3,2],[1,1,1,2]],[[1,2,0,0],[1,3,2,1],[1,3,3,3],[1,1,1,1]],[[1,2,0,0],[1,3,2,1],[1,3,4,2],[1,1,1,1]],[[1,2,0,0],[1,3,2,1],[1,4,3,2],[1,1,1,1]],[[1,2,0,0],[1,4,2,1],[1,3,3,2],[1,1,1,1]],[[1,2,0,0],[1,3,2,1],[1,3,3,1],[1,3,1,1]],[[1,2,0,0],[1,3,2,1],[1,3,3,1],[2,2,1,1]],[[1,2,0,0],[1,3,2,1],[1,3,4,1],[1,2,1,1]],[[1,2,0,0],[1,3,2,1],[1,4,3,1],[1,2,1,1]],[[1,2,0,0],[1,4,2,1],[1,3,3,1],[1,2,1,1]],[[1,2,0,0],[1,3,2,1],[1,3,3,1],[1,1,2,2]],[[1,2,0,0],[1,3,2,1],[1,3,3,1],[1,1,3,1]],[[1,2,0,0],[1,3,2,1],[1,3,4,1],[1,1,2,1]],[[1,2,0,0],[1,3,2,1],[1,4,3,1],[1,1,2,1]],[[1,2,0,0],[1,4,2,1],[1,3,3,1],[1,1,2,1]],[[1,2,0,0],[1,3,2,1],[1,3,3,0],[1,2,3,1]],[[1,2,0,0],[1,3,2,1],[1,3,3,0],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[1,3,3,0],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[1,4,3,0],[1,2,2,1]],[[1,2,0,0],[1,4,2,1],[1,3,3,0],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[1,3,2,2],[1,2,3,0]],[[1,2,0,0],[1,3,2,1],[1,3,2,2],[1,3,2,0]],[[1,2,0,0],[1,3,2,1],[1,3,2,2],[2,2,2,0]],[[1,2,0,0],[1,3,2,1],[1,4,2,2],[1,2,2,0]],[[1,2,0,0],[1,4,2,1],[1,3,2,2],[1,2,2,0]],[[1,2,0,0],[1,3,2,1],[1,3,2,2],[1,1,2,2]],[[1,2,0,0],[1,3,2,1],[1,3,2,2],[1,1,3,1]],[[1,2,0,0],[1,3,2,1],[1,3,2,3],[1,1,2,1]],[[1,2,0,0],[1,3,2,1],[1,3,2,1],[1,2,2,2]],[[1,2,0,0],[1,3,2,1],[1,3,2,1],[1,2,3,1]],[[1,2,0,0],[1,3,2,1],[1,3,2,1],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[1,3,2,1],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[1,4,2,1],[1,2,2,1]],[[1,2,0,0],[1,4,2,1],[1,3,2,1],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[1,3,1,2],[1,2,2,2]],[[1,2,0,0],[1,3,2,1],[1,3,1,2],[1,2,3,1]],[[1,2,0,0],[1,3,2,1],[1,3,1,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[1,3,1,2],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[1,3,1,3],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[1,4,1,2],[1,2,2,1]],[[1,2,0,0],[1,4,2,1],[1,3,1,2],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[1,2,3,2],[1,2,3,0]],[[1,2,0,0],[1,3,2,1],[1,2,3,2],[1,3,2,0]],[[1,2,0,0],[1,3,2,1],[1,2,3,2],[2,2,2,0]],[[1,2,0,0],[1,3,2,1],[1,2,3,3],[1,2,2,0]],[[1,2,0,0],[1,3,2,1],[1,2,4,2],[1,2,2,0]],[[1,2,0,0],[1,3,2,1],[1,2,3,2],[1,2,1,2]],[[1,2,0,0],[1,3,2,1],[1,2,3,3],[1,2,1,1]],[[1,2,0,0],[1,3,2,1],[1,2,4,2],[1,2,1,1]],[[1,2,0,0],[1,3,2,1],[1,2,3,1],[1,2,2,2]],[[1,2,0,0],[1,3,2,1],[1,2,3,1],[1,2,3,1]],[[1,2,0,0],[1,3,2,1],[1,2,3,1],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[1,2,3,1],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[1,2,4,1],[1,2,2,1]],[[1,2,0,0],[1,3,2,1],[1,2,2,2],[1,2,2,2]],[[1,2,0,0],[1,3,2,1],[1,2,2,2],[1,2,3,1]],[[1,2,0,0],[1,3,2,1],[1,2,2,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,1],[1,2,2,2],[2,2,2,1]],[[1,2,0,0],[1,3,2,1],[1,2,2,3],[1,2,2,1]],[[1,2,0,0],[1,3,2,0],[2,3,3,2],[2,2,0,1]],[[1,2,0,0],[1,3,2,0],[2,4,3,2],[1,2,0,1]],[[1,2,0,0],[1,3,2,0],[3,3,3,2],[1,2,0,1]],[[1,2,0,0],[1,3,2,0],[2,3,3,2],[2,1,1,1]],[[1,2,0,0],[1,3,2,0],[2,3,4,2],[1,1,1,1]],[[1,2,0,0],[1,3,2,0],[2,4,3,2],[1,1,1,1]],[[1,2,0,0],[1,3,2,0],[3,3,3,2],[1,1,1,1]],[[1,2,0,0],[1,4,2,0],[2,3,3,2],[1,1,1,1]],[[1,2,0,0],[1,3,2,0],[2,3,3,2],[1,0,2,2]],[[1,2,0,0],[1,3,2,0],[2,3,3,2],[1,0,3,1]],[[1,2,0,0],[1,3,2,0],[2,3,3,2],[2,0,2,1]],[[1,2,0,0],[1,3,2,0],[2,3,4,2],[1,0,2,1]],[[1,2,0,0],[1,3,2,0],[2,4,3,2],[1,0,2,1]],[[1,2,0,0],[1,3,2,0],[3,3,3,2],[1,0,2,1]],[[1,2,0,0],[1,4,2,0],[2,3,3,2],[1,0,2,1]],[[1,2,0,0],[1,3,2,0],[2,3,3,2],[0,3,1,1]],[[1,2,0,0],[1,3,2,0],[2,3,4,2],[0,2,1,1]],[[1,2,0,0],[1,3,2,0],[2,4,3,2],[0,2,1,1]],[[1,2,0,0],[1,3,2,0],[3,3,3,2],[0,2,1,1]],[[1,2,0,0],[1,4,2,0],[2,3,3,2],[0,2,1,1]],[[1,2,0,0],[1,3,2,0],[2,3,3,2],[0,1,2,2]],[[1,2,0,0],[1,3,2,0],[2,3,3,2],[0,1,3,1]],[[1,2,0,0],[1,3,2,0],[2,3,4,2],[0,1,2,1]],[[1,2,0,0],[1,3,2,0],[2,4,3,2],[0,1,2,1]],[[1,2,0,0],[1,3,2,0],[3,3,3,2],[0,1,2,1]],[[1,2,0,0],[1,4,2,0],[2,3,3,2],[0,1,2,1]],[[1,2,0,0],[1,3,2,0],[2,3,2,2],[2,1,2,1]],[[1,2,0,0],[1,3,2,0],[2,4,2,2],[1,1,2,1]],[[1,2,0,0],[1,3,2,0],[3,3,2,2],[1,1,2,1]],[[1,2,0,0],[1,4,2,0],[2,3,2,2],[1,1,2,1]],[[1,2,0,0],[1,3,2,0],[2,3,2,2],[0,2,2,2]],[[1,2,0,0],[1,3,2,0],[2,3,2,2],[0,2,3,1]],[[1,2,0,0],[1,3,2,0],[2,3,2,2],[0,3,2,1]],[[1,2,0,0],[1,3,2,0],[2,4,2,2],[0,2,2,1]],[[1,2,0,0],[1,3,2,0],[3,3,2,2],[0,2,2,1]],[[1,2,0,0],[1,4,2,0],[2,3,2,2],[0,2,2,1]],[[1,2,0,0],[1,3,2,0],[2,3,1,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,0],[2,3,1,2],[2,2,2,1]],[[1,2,0,0],[1,3,2,0],[3,3,1,2],[1,2,2,1]],[[1,2,0,0],[1,3,2,0],[2,2,3,2],[1,3,1,1]],[[1,2,0,0],[1,3,2,0],[2,2,3,2],[2,2,1,1]],[[1,2,0,0],[1,3,2,0],[3,2,3,2],[1,2,1,1]],[[1,2,0,0],[1,3,2,0],[2,2,3,2],[0,2,2,2]],[[1,2,0,0],[1,3,2,0],[2,2,3,2],[0,2,3,1]],[[1,2,0,0],[1,3,2,0],[2,2,3,2],[0,3,2,1]],[[1,2,0,0],[1,3,2,0],[2,2,4,2],[0,2,2,1]],[[1,2,0,0],[1,3,2,0],[2,2,2,2],[1,2,2,2]],[[1,2,0,0],[1,3,2,0],[2,2,2,2],[1,2,3,1]],[[1,2,0,0],[1,3,2,0],[2,2,2,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,0],[2,2,2,2],[2,2,2,1]],[[1,2,0,0],[1,3,2,0],[3,2,2,2],[1,2,2,1]],[[1,2,0,0],[1,3,2,0],[2,1,3,2],[1,2,2,2]],[[1,2,0,0],[1,3,2,0],[2,1,3,2],[1,2,3,1]],[[1,2,0,0],[1,3,2,0],[2,1,3,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,0],[2,1,3,2],[2,2,2,1]],[[1,2,0,0],[1,3,2,0],[2,1,4,2],[1,2,2,1]],[[1,2,0,0],[1,3,2,0],[3,1,3,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[1,3,0,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,2],[1,3,0,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,3],[1,3,0,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,2],[1,3,0,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,2],[1,3,0,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,3],[1,3,0,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[1,3,0,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,2],[1,3,0,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,3],[1,3,0,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[1,3,0,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,2],[1,3,0,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,3],[1,3,0,2],[0,2,1,0]],[[1,2,0,0],[1,3,2,0],[1,3,3,2],[1,3,1,1]],[[1,2,0,0],[1,3,2,0],[1,3,3,2],[2,2,1,1]],[[1,2,0,0],[1,3,2,0],[1,3,4,2],[1,2,1,1]],[[1,2,0,0],[1,3,2,0],[1,4,3,2],[1,2,1,1]],[[1,2,0,0],[1,4,2,0],[1,3,3,2],[1,2,1,1]],[[1,1,3,1],[1,3,3,2],[1,3,0,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,2],[1,3,0,2],[1,0,1,1]],[[1,1,2,1],[1,3,3,3],[1,3,0,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,2],[1,3,0,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,2],[1,3,0,2],[1,0,2,0]],[[1,1,2,1],[1,3,3,3],[1,3,0,2],[1,0,2,0]],[[1,1,3,1],[1,3,3,2],[1,3,0,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,2],[1,3,0,2],[1,1,0,1]],[[1,1,2,1],[1,3,3,3],[1,3,0,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,2],[1,3,0,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,2],[1,3,0,2],[1,1,1,0]],[[1,1,2,1],[1,3,3,3],[1,3,0,2],[1,1,1,0]],[[1,2,0,0],[1,3,2,0],[1,3,3,2],[1,1,2,2]],[[1,2,0,0],[1,3,2,0],[1,3,3,2],[1,1,3,1]],[[1,2,0,0],[1,3,2,0],[1,3,4,2],[1,1,2,1]],[[1,2,0,0],[1,3,2,0],[1,4,3,2],[1,1,2,1]],[[1,2,0,0],[1,4,2,0],[1,3,3,2],[1,1,2,1]],[[1,2,0,0],[1,3,2,0],[1,3,2,2],[1,2,2,2]],[[1,2,0,0],[1,3,2,0],[1,3,2,2],[1,2,3,1]],[[1,2,0,0],[1,3,2,0],[1,3,2,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,0],[1,3,2,2],[2,2,2,1]],[[1,1,3,1],[1,3,3,2],[1,3,0,2],[1,2,0,0]],[[1,1,2,2],[1,3,3,2],[1,3,0,2],[1,2,0,0]],[[1,1,2,1],[1,3,3,3],[1,3,0,2],[1,2,0,0]],[[1,2,0,0],[1,3,2,0],[1,4,2,2],[1,2,2,1]],[[1,2,0,0],[1,4,2,0],[1,3,2,2],[1,2,2,1]],[[1,2,0,0],[1,3,2,0],[1,2,3,2],[1,2,2,2]],[[1,2,0,0],[1,3,2,0],[1,2,3,2],[1,2,3,1]],[[1,2,0,0],[1,3,2,0],[1,2,3,2],[1,3,2,1]],[[1,2,0,0],[1,3,2,0],[1,2,3,2],[2,2,2,1]],[[1,2,0,0],[1,3,2,0],[1,2,4,2],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[2,2,0,0]],[[1,2,0,0],[1,3,1,2],[2,4,3,2],[1,2,0,0]],[[1,2,0,0],[1,3,1,2],[3,3,3,2],[1,2,0,0]],[[1,2,0,0],[1,4,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,3,1],[1,3,3,2],[1,3,1,0],[0,2,2,0]],[[1,1,2,2],[1,3,3,2],[1,3,1,0],[0,2,2,0]],[[1,1,2,1],[1,4,3,2],[1,3,1,0],[0,2,2,0]],[[1,1,2,1],[1,3,4,2],[1,3,1,0],[0,2,2,0]],[[1,1,2,1],[1,3,3,2],[1,4,1,0],[0,2,2,0]],[[1,1,2,1],[1,3,3,2],[1,3,1,0],[0,3,2,0]],[[1,1,3,1],[1,3,3,2],[1,3,1,0],[1,1,2,0]],[[1,1,2,2],[1,3,3,2],[1,3,1,0],[1,1,2,0]],[[1,1,2,1],[1,4,3,2],[1,3,1,0],[1,1,2,0]],[[1,1,2,1],[1,3,4,2],[1,3,1,0],[1,1,2,0]],[[1,1,2,1],[1,3,3,2],[1,4,1,0],[1,1,2,0]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[2,1,1,0]],[[1,2,0,0],[1,3,1,2],[2,3,3,3],[1,1,1,0]],[[1,2,0,0],[1,3,1,2],[2,3,4,2],[1,1,1,0]],[[1,2,0,0],[1,3,1,2],[2,4,3,2],[1,1,1,0]],[[1,2,0,0],[1,3,1,2],[3,3,3,2],[1,1,1,0]],[[1,2,0,0],[1,4,1,2],[2,3,3,2],[1,1,1,0]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[1,1,0,2]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[2,1,0,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,3],[1,1,0,1]],[[1,2,0,0],[1,3,1,2],[2,3,4,2],[1,1,0,1]],[[1,2,0,0],[1,3,1,2],[2,4,3,2],[1,1,0,1]],[[1,2,0,0],[1,3,1,2],[3,3,3,2],[1,1,0,1]],[[1,2,0,0],[1,4,1,2],[2,3,3,2],[1,1,0,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[1,0,3,0]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[2,0,2,0]],[[1,2,0,0],[1,3,1,2],[2,3,3,3],[1,0,2,0]],[[1,2,0,0],[1,3,1,2],[2,3,4,2],[1,0,2,0]],[[1,2,0,0],[1,3,1,2],[2,4,3,2],[1,0,2,0]],[[1,2,0,0],[1,3,1,2],[3,3,3,2],[1,0,2,0]],[[1,2,0,0],[1,4,1,2],[2,3,3,2],[1,0,2,0]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[1,0,1,2]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[2,0,1,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,3],[1,0,1,1]],[[1,2,0,0],[1,3,1,2],[2,3,4,2],[1,0,1,1]],[[1,2,0,0],[1,3,1,2],[2,4,3,2],[1,0,1,1]],[[1,2,0,0],[1,3,1,2],[3,3,3,2],[1,0,1,1]],[[1,2,0,0],[1,4,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,2],[1,3,1,2],[0,0,1,1]],[[1,1,2,2],[1,3,3,2],[1,3,1,2],[0,0,1,1]],[[1,1,2,1],[1,3,3,3],[1,3,1,2],[0,0,1,1]],[[1,1,3,1],[1,3,3,2],[1,3,1,2],[0,0,2,0]],[[1,1,2,2],[1,3,3,2],[1,3,1,2],[0,0,2,0]],[[1,1,2,1],[1,3,3,3],[1,3,1,2],[0,0,2,0]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[0,3,1,0]],[[1,2,0,0],[1,3,1,2],[2,3,3,3],[0,2,1,0]],[[1,2,0,0],[1,3,1,2],[2,3,4,2],[0,2,1,0]],[[1,2,0,0],[1,3,1,2],[2,4,3,2],[0,2,1,0]],[[1,2,0,0],[1,3,1,2],[3,3,3,2],[0,2,1,0]],[[1,2,0,0],[1,4,1,2],[2,3,3,2],[0,2,1,0]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[0,2,0,2]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[0,3,0,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,3],[0,2,0,1]],[[1,2,0,0],[1,3,1,2],[2,3,4,2],[0,2,0,1]],[[1,2,0,0],[1,3,1,2],[2,4,3,2],[0,2,0,1]],[[1,2,0,0],[1,3,1,2],[3,3,3,2],[0,2,0,1]],[[1,2,0,0],[1,4,1,2],[2,3,3,2],[0,2,0,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[0,1,3,0]],[[1,2,0,0],[1,3,1,2],[2,3,3,3],[0,1,2,0]],[[1,2,0,0],[1,3,1,2],[2,3,4,2],[0,1,2,0]],[[1,2,0,0],[1,3,1,2],[2,4,3,2],[0,1,2,0]],[[1,2,0,0],[1,3,1,2],[3,3,3,2],[0,1,2,0]],[[1,2,0,0],[1,4,1,2],[2,3,3,2],[0,1,2,0]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[0,1,1,2]],[[1,2,0,0],[1,3,1,2],[2,3,3,3],[0,1,1,1]],[[1,2,0,0],[1,3,1,2],[2,3,4,2],[0,1,1,1]],[[1,2,0,0],[1,3,1,2],[2,4,3,2],[0,1,1,1]],[[1,2,0,0],[1,3,1,2],[3,3,3,2],[0,1,1,1]],[[1,2,0,0],[1,4,1,2],[2,3,3,2],[0,1,1,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,2],[0,0,2,2]],[[1,2,0,0],[1,3,1,2],[2,3,3,3],[0,0,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,4,2],[0,0,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,1],[2,2,0,1]],[[1,2,0,0],[1,3,1,2],[2,4,3,1],[1,2,0,1]],[[1,2,0,0],[1,3,1,2],[3,3,3,1],[1,2,0,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,1],[2,1,1,1]],[[1,2,0,0],[1,3,1,2],[2,3,4,1],[1,1,1,1]],[[1,2,0,0],[1,3,1,2],[2,4,3,1],[1,1,1,1]],[[1,2,0,0],[1,3,1,2],[3,3,3,1],[1,1,1,1]],[[1,2,0,0],[1,4,1,2],[2,3,3,1],[1,1,1,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,1],[1,0,2,2]],[[1,2,0,0],[1,3,1,2],[2,3,3,1],[1,0,3,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,1],[2,0,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,4,1],[1,0,2,1]],[[1,2,0,0],[1,3,1,2],[2,4,3,1],[1,0,2,1]],[[1,2,0,0],[1,3,1,2],[3,3,3,1],[1,0,2,1]],[[1,2,0,0],[1,4,1,2],[2,3,3,1],[1,0,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,1],[0,3,1,1]],[[1,2,0,0],[1,3,1,2],[2,3,4,1],[0,2,1,1]],[[1,2,0,0],[1,3,1,2],[2,4,3,1],[0,2,1,1]],[[1,2,0,0],[1,3,1,2],[3,3,3,1],[0,2,1,1]],[[1,2,0,0],[1,4,1,2],[2,3,3,1],[0,2,1,1]],[[1,2,0,0],[1,3,1,2],[2,3,3,1],[0,1,2,2]],[[1,2,0,0],[1,3,1,2],[2,3,3,1],[0,1,3,1]],[[1,2,0,0],[1,3,1,2],[2,3,4,1],[0,1,2,1]],[[1,2,0,0],[1,3,1,2],[2,4,3,1],[0,1,2,1]],[[1,2,0,0],[1,3,1,2],[3,3,3,1],[0,1,2,1]],[[1,2,0,0],[1,4,1,2],[2,3,3,1],[0,1,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,2,2],[2,1,2,0]],[[1,2,0,0],[1,3,1,2],[2,4,2,2],[1,1,2,0]],[[1,2,0,0],[1,3,1,2],[3,3,2,2],[1,1,2,0]],[[1,2,0,0],[1,4,1,2],[2,3,2,2],[1,1,2,0]],[[1,2,0,0],[1,3,1,2],[2,3,2,2],[1,0,2,2]],[[1,2,0,0],[1,3,1,2],[2,3,2,2],[1,0,3,1]],[[1,2,0,0],[1,3,1,2],[2,3,2,3],[1,0,2,1]],[[1,1,3,1],[1,3,3,2],[1,3,2,0],[0,1,1,1]],[[1,1,2,2],[1,3,3,2],[1,3,2,0],[0,1,1,1]],[[1,1,2,1],[1,4,3,2],[1,3,2,0],[0,1,1,1]],[[1,1,2,1],[1,3,4,2],[1,3,2,0],[0,1,1,1]],[[1,1,3,1],[1,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,1,2,2],[1,3,3,2],[1,3,2,0],[0,1,2,0]],[[1,1,2,1],[1,4,3,2],[1,3,2,0],[0,1,2,0]],[[1,1,2,1],[1,3,4,2],[1,3,2,0],[0,1,2,0]],[[1,1,2,1],[1,3,3,2],[1,4,2,0],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[1,3,2,0],[0,2,0,1]],[[1,1,2,2],[1,3,3,2],[1,3,2,0],[0,2,0,1]],[[1,1,2,1],[1,4,3,2],[1,3,2,0],[0,2,0,1]],[[1,1,2,1],[1,3,4,2],[1,3,2,0],[0,2,0,1]],[[1,1,2,1],[1,3,3,2],[1,4,2,0],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,1,2,2],[1,3,3,2],[1,3,2,0],[0,2,1,0]],[[1,1,2,1],[1,4,3,2],[1,3,2,0],[0,2,1,0]],[[1,1,2,1],[1,3,4,2],[1,3,2,0],[0,2,1,0]],[[1,1,2,1],[1,3,3,2],[1,4,2,0],[0,2,1,0]],[[1,1,2,1],[1,3,3,2],[1,3,2,0],[0,3,1,0]],[[1,2,0,0],[1,3,1,2],[2,3,2,2],[0,2,3,0]],[[1,2,0,0],[1,3,1,2],[2,3,2,2],[0,3,2,0]],[[1,2,0,0],[1,3,1,2],[2,4,2,2],[0,2,2,0]],[[1,2,0,0],[1,3,1,2],[3,3,2,2],[0,2,2,0]],[[1,2,0,0],[1,4,1,2],[2,3,2,2],[0,2,2,0]],[[1,2,0,0],[1,3,1,2],[2,3,2,2],[0,1,2,2]],[[1,2,0,0],[1,3,1,2],[2,3,2,2],[0,1,3,1]],[[1,1,3,1],[1,3,3,2],[1,3,2,0],[1,0,1,1]],[[1,1,2,2],[1,3,3,2],[1,3,2,0],[1,0,1,1]],[[1,1,2,1],[1,4,3,2],[1,3,2,0],[1,0,1,1]],[[1,1,2,1],[1,3,4,2],[1,3,2,0],[1,0,1,1]],[[1,1,3,1],[1,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,1,2,2],[1,3,3,2],[1,3,2,0],[1,0,2,0]],[[1,1,2,1],[1,4,3,2],[1,3,2,0],[1,0,2,0]],[[1,1,2,1],[1,3,4,2],[1,3,2,0],[1,0,2,0]],[[1,1,2,1],[1,3,3,2],[1,4,2,0],[1,0,2,0]],[[1,1,3,1],[1,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,1,2,2],[1,3,3,2],[1,3,2,0],[1,1,0,1]],[[1,1,2,1],[1,4,3,2],[1,3,2,0],[1,1,0,1]],[[1,1,2,1],[1,3,4,2],[1,3,2,0],[1,1,0,1]],[[1,1,2,1],[1,3,3,2],[1,4,2,0],[1,1,0,1]],[[1,1,3,1],[1,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,1,2,2],[1,3,3,2],[1,3,2,0],[1,1,1,0]],[[1,1,2,1],[1,4,3,2],[1,3,2,0],[1,1,1,0]],[[1,1,2,1],[1,3,4,2],[1,3,2,0],[1,1,1,0]],[[1,1,2,1],[1,3,3,2],[1,4,2,0],[1,1,1,0]],[[1,2,0,0],[1,3,1,2],[2,3,2,3],[0,1,2,1]],[[1,1,3,1],[1,3,3,2],[1,3,2,0],[1,2,0,0]],[[1,1,2,2],[1,3,3,2],[1,3,2,0],[1,2,0,0]],[[1,1,2,1],[1,4,3,2],[1,3,2,0],[1,2,0,0]],[[1,1,2,1],[1,3,4,2],[1,3,2,0],[1,2,0,0]],[[1,1,2,1],[1,3,3,2],[1,4,2,0],[1,2,0,0]],[[1,2,0,0],[1,3,1,2],[2,3,2,1],[2,1,2,1]],[[1,2,0,0],[1,3,1,2],[2,4,2,1],[1,1,2,1]],[[1,2,0,0],[1,3,1,2],[3,3,2,1],[1,1,2,1]],[[1,2,0,0],[1,4,1,2],[2,3,2,1],[1,1,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,2,1],[0,2,2,2]],[[1,2,0,0],[1,3,1,2],[2,3,2,1],[0,2,3,1]],[[1,2,0,0],[1,3,1,2],[2,3,2,1],[0,3,2,1]],[[1,2,0,0],[1,3,1,2],[2,4,2,1],[0,2,2,1]],[[1,2,0,0],[1,3,1,2],[3,3,2,1],[0,2,2,1]],[[1,2,0,0],[1,4,1,2],[2,3,2,1],[0,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,1,2],[1,3,2,0]],[[1,2,0,0],[1,3,1,2],[2,3,1,2],[2,2,2,0]],[[1,2,0,0],[1,3,1,2],[3,3,1,2],[1,2,2,0]],[[1,2,0,0],[1,3,1,2],[2,3,1,2],[2,1,2,1]],[[1,2,0,0],[1,3,1,2],[2,4,1,2],[1,1,2,1]],[[1,2,0,0],[1,3,1,2],[3,3,1,2],[1,1,2,1]],[[1,2,0,0],[1,4,1,2],[2,3,1,2],[1,1,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,1,2],[0,2,2,2]],[[1,2,0,0],[1,3,1,2],[2,3,1,2],[0,2,3,1]],[[1,2,0,0],[1,3,1,2],[2,3,1,2],[0,3,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,1,3],[0,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,4,1,2],[0,2,2,1]],[[1,2,0,0],[1,3,1,2],[3,3,1,2],[0,2,2,1]],[[1,2,0,0],[1,4,1,2],[2,3,1,2],[0,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,1,1],[1,3,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,1,1],[2,2,2,1]],[[1,2,0,0],[1,3,1,2],[3,3,1,1],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,0,2],[1,3,2,1]],[[1,2,0,0],[1,3,1,2],[2,3,0,2],[2,2,2,1]],[[1,2,0,0],[1,3,1,2],[3,3,0,2],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,2,3,2],[1,3,1,0]],[[1,2,0,0],[1,3,1,2],[2,2,3,2],[2,2,1,0]],[[1,2,0,0],[1,3,1,2],[3,2,3,2],[1,2,1,0]],[[1,2,0,0],[1,3,1,2],[2,2,3,2],[1,3,0,1]],[[1,2,0,0],[1,3,1,2],[2,2,3,2],[2,2,0,1]],[[1,2,0,0],[1,3,1,2],[3,2,3,2],[1,2,0,1]],[[1,2,0,0],[1,3,1,2],[2,2,3,2],[0,2,3,0]],[[1,2,0,0],[1,3,1,2],[2,2,3,2],[0,3,2,0]],[[1,2,0,0],[1,3,1,2],[2,2,3,3],[0,2,2,0]],[[1,2,0,0],[1,3,1,2],[2,2,4,2],[0,2,2,0]],[[1,2,0,0],[1,3,1,2],[2,2,3,2],[0,2,1,2]],[[1,2,0,0],[1,3,1,2],[2,2,3,3],[0,2,1,1]],[[1,2,0,0],[1,3,1,2],[2,2,4,2],[0,2,1,1]],[[1,2,0,0],[1,3,1,2],[2,2,3,1],[1,3,1,1]],[[1,2,0,0],[1,3,1,2],[2,2,3,1],[2,2,1,1]],[[1,2,0,0],[1,3,1,2],[3,2,3,1],[1,2,1,1]],[[1,2,0,0],[1,3,1,2],[2,2,3,1],[0,2,2,2]],[[1,2,0,0],[1,3,1,2],[2,2,3,1],[0,2,3,1]],[[1,2,0,0],[1,3,1,2],[2,2,3,1],[0,3,2,1]],[[1,2,0,0],[1,3,1,2],[2,2,4,1],[0,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,2,2,2],[1,2,3,0]],[[1,2,0,0],[1,3,1,2],[2,2,2,2],[1,3,2,0]],[[1,2,0,0],[1,3,1,2],[2,2,2,2],[2,2,2,0]],[[1,2,0,0],[1,3,1,2],[3,2,2,2],[1,2,2,0]],[[1,2,0,0],[1,3,1,2],[2,2,2,2],[0,2,2,2]],[[1,2,0,0],[1,3,1,2],[2,2,2,2],[0,2,3,1]],[[1,2,0,0],[1,3,1,2],[2,2,2,2],[0,3,2,1]],[[1,2,0,0],[1,3,1,2],[2,2,2,3],[0,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,2,2,1],[1,2,2,2]],[[1,2,0,0],[1,3,1,2],[2,2,2,1],[1,2,3,1]],[[1,2,0,0],[1,3,1,2],[2,2,2,1],[1,3,2,1]],[[1,2,0,0],[1,3,1,2],[2,2,2,1],[2,2,2,1]],[[1,2,0,0],[1,3,1,2],[3,2,2,1],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,2,1,2],[1,2,2,2]],[[1,2,0,0],[1,3,1,2],[2,2,1,2],[1,2,3,1]],[[1,2,0,0],[1,3,1,2],[2,2,1,2],[1,3,2,1]],[[1,2,0,0],[1,3,1,2],[2,2,1,2],[2,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,2,1,3],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[3,2,1,2],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,1,3,2],[1,2,3,0]],[[1,2,0,0],[1,3,1,2],[2,1,3,2],[1,3,2,0]],[[1,2,0,0],[1,3,1,2],[2,1,3,2],[2,2,2,0]],[[1,2,0,0],[1,3,1,2],[2,1,3,3],[1,2,2,0]],[[1,2,0,0],[1,3,1,2],[2,1,4,2],[1,2,2,0]],[[1,2,0,0],[1,3,1,2],[3,1,3,2],[1,2,2,0]],[[1,2,0,0],[1,3,1,2],[2,1,3,2],[1,2,1,2]],[[1,1,3,1],[1,3,3,2],[1,3,2,2],[0,0,0,1]],[[1,1,2,2],[1,3,3,2],[1,3,2,2],[0,0,0,1]],[[1,1,2,1],[1,3,3,3],[1,3,2,2],[0,0,0,1]],[[1,2,0,0],[1,3,1,2],[2,1,3,3],[1,2,1,1]],[[1,2,0,0],[1,3,1,2],[2,1,4,2],[1,2,1,1]],[[1,2,0,0],[1,3,1,2],[2,1,3,1],[1,2,2,2]],[[1,2,0,0],[1,3,1,2],[2,1,3,1],[1,2,3,1]],[[1,2,0,0],[1,3,1,2],[2,1,3,1],[1,3,2,1]],[[1,2,0,0],[1,3,1,2],[2,1,3,1],[2,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,1,4,1],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[3,1,3,1],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,1,2,2],[1,2,2,2]],[[1,2,0,0],[1,3,1,2],[2,1,2,2],[1,2,3,1]],[[1,2,0,0],[1,3,1,2],[2,1,2,2],[1,3,2,1]],[[1,2,0,0],[1,3,1,2],[2,1,2,2],[2,2,2,1]],[[1,2,0,0],[1,3,1,2],[2,1,2,3],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[3,1,2,2],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[1,3,3,2],[1,3,1,0]],[[1,2,0,0],[1,3,1,2],[1,3,3,2],[2,2,1,0]],[[1,2,0,0],[1,3,1,2],[1,3,3,3],[1,2,1,0]],[[1,2,0,0],[1,3,1,2],[1,3,4,2],[1,2,1,0]],[[1,2,0,0],[1,3,1,2],[1,4,3,2],[1,2,1,0]],[[1,2,0,0],[1,4,1,2],[1,3,3,2],[1,2,1,0]],[[1,2,0,0],[1,3,1,2],[1,3,3,2],[1,2,0,2]],[[1,2,0,0],[1,3,1,2],[1,3,3,2],[1,3,0,1]],[[1,2,0,0],[1,3,1,2],[1,3,3,2],[2,2,0,1]],[[1,2,0,0],[1,3,1,2],[1,3,3,3],[1,2,0,1]],[[1,2,0,0],[1,3,1,2],[1,3,4,2],[1,2,0,1]],[[1,2,0,0],[1,3,1,2],[1,4,3,2],[1,2,0,1]],[[1,2,0,0],[1,4,1,2],[1,3,3,2],[1,2,0,1]],[[1,2,0,0],[1,3,1,2],[1,3,3,2],[1,1,3,0]],[[1,2,0,0],[1,3,1,2],[1,3,3,3],[1,1,2,0]],[[1,2,0,0],[1,3,1,2],[1,3,4,2],[1,1,2,0]],[[1,2,0,0],[1,3,1,2],[1,4,3,2],[1,1,2,0]],[[1,2,0,0],[1,4,1,2],[1,3,3,2],[1,1,2,0]],[[1,2,0,0],[1,3,1,2],[1,3,3,2],[1,1,1,2]],[[1,2,0,0],[1,3,1,2],[1,3,3,3],[1,1,1,1]],[[1,2,0,0],[1,3,1,2],[1,3,4,2],[1,1,1,1]],[[1,2,0,0],[1,3,1,2],[1,4,3,2],[1,1,1,1]],[[1,2,0,0],[1,4,1,2],[1,3,3,2],[1,1,1,1]],[[1,2,0,0],[1,3,1,2],[1,3,3,1],[1,3,1,1]],[[1,2,0,0],[1,3,1,2],[1,3,3,1],[2,2,1,1]],[[1,2,0,0],[1,3,1,2],[1,3,4,1],[1,2,1,1]],[[1,2,0,0],[1,3,1,2],[1,4,3,1],[1,2,1,1]],[[1,2,0,0],[1,4,1,2],[1,3,3,1],[1,2,1,1]],[[1,2,0,0],[1,3,1,2],[1,3,3,1],[1,1,2,2]],[[1,2,0,0],[1,3,1,2],[1,3,3,1],[1,1,3,1]],[[1,2,0,0],[1,3,1,2],[1,3,4,1],[1,1,2,1]],[[1,2,0,0],[1,3,1,2],[1,4,3,1],[1,1,2,1]],[[1,2,0,0],[1,4,1,2],[1,3,3,1],[1,1,2,1]],[[1,2,0,0],[1,3,1,2],[1,3,2,2],[1,2,3,0]],[[1,2,0,0],[1,3,1,2],[1,3,2,2],[1,3,2,0]],[[1,2,0,0],[1,3,1,2],[1,3,2,2],[2,2,2,0]],[[1,2,0,0],[1,3,1,2],[1,4,2,2],[1,2,2,0]],[[1,2,0,0],[1,4,1,2],[1,3,2,2],[1,2,2,0]],[[1,2,0,0],[1,3,1,2],[1,3,2,2],[1,1,2,2]],[[1,2,0,0],[1,3,1,2],[1,3,2,2],[1,1,3,1]],[[1,2,0,0],[1,3,1,2],[1,3,2,3],[1,1,2,1]],[[1,2,0,0],[1,3,1,2],[1,3,2,1],[1,2,2,2]],[[1,2,0,0],[1,3,1,2],[1,3,2,1],[1,2,3,1]],[[1,2,0,0],[1,3,1,2],[1,3,2,1],[1,3,2,1]],[[1,2,0,0],[1,3,1,2],[1,3,2,1],[2,2,2,1]],[[1,2,0,0],[1,3,1,2],[1,4,2,1],[1,2,2,1]],[[1,2,0,0],[1,4,1,2],[1,3,2,1],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[1,3,1,2],[1,2,2,2]],[[1,2,0,0],[1,3,1,2],[1,3,1,2],[1,2,3,1]],[[1,2,0,0],[1,3,1,2],[1,3,1,2],[1,3,2,1]],[[1,2,0,0],[1,3,1,2],[1,3,1,2],[2,2,2,1]],[[1,2,0,0],[1,3,1,2],[1,3,1,3],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[1,4,1,2],[1,2,2,1]],[[1,2,0,0],[1,4,1,2],[1,3,1,2],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[1,2,3,2],[1,2,3,0]],[[1,2,0,0],[1,3,1,2],[1,2,3,2],[1,3,2,0]],[[1,2,0,0],[1,3,1,2],[1,2,3,2],[2,2,2,0]],[[1,2,0,0],[1,3,1,2],[1,2,3,3],[1,2,2,0]],[[1,2,0,0],[1,3,1,2],[1,2,4,2],[1,2,2,0]],[[1,2,0,0],[1,3,1,2],[1,2,3,2],[1,2,1,2]],[[1,2,0,0],[1,3,1,2],[1,2,3,3],[1,2,1,1]],[[1,2,0,0],[1,3,1,2],[1,2,4,2],[1,2,1,1]],[[1,2,0,0],[1,3,1,2],[1,2,3,1],[1,2,2,2]],[[1,2,0,0],[1,3,1,2],[1,2,3,1],[1,2,3,1]],[[1,2,0,0],[1,3,1,2],[1,2,3,1],[1,3,2,1]],[[1,2,0,0],[1,3,1,2],[1,2,3,1],[2,2,2,1]],[[1,2,0,0],[1,3,1,2],[1,2,4,1],[1,2,2,1]],[[1,2,0,0],[1,3,1,2],[1,2,2,2],[1,2,2,2]],[[1,2,0,0],[1,3,1,2],[1,2,2,2],[1,2,3,1]],[[1,2,0,0],[1,3,1,2],[1,2,2,2],[1,3,2,1]],[[1,2,0,0],[1,3,1,2],[1,2,2,2],[2,2,2,1]],[[1,2,0,0],[1,3,1,2],[1,2,2,3],[1,2,2,1]],[[1,2,0,0],[1,3,1,1],[2,3,3,2],[2,1,2,0]],[[1,2,0,0],[1,3,1,1],[2,4,3,2],[1,1,2,0]],[[1,2,0,0],[1,3,1,1],[3,3,3,2],[1,1,2,0]],[[1,2,0,0],[1,3,1,1],[2,3,3,2],[0,2,3,0]],[[1,2,0,0],[1,3,1,1],[2,3,3,2],[0,3,2,0]],[[1,2,0,0],[1,3,1,1],[2,4,3,2],[0,2,2,0]],[[1,2,0,0],[1,3,1,1],[3,3,3,2],[0,2,2,0]],[[1,2,0,0],[1,3,1,1],[2,3,3,1],[2,1,2,1]],[[1,2,0,0],[1,3,1,1],[2,4,3,1],[1,1,2,1]],[[1,2,0,0],[1,3,1,1],[3,3,3,1],[1,1,2,1]],[[1,2,0,0],[1,3,1,1],[2,3,3,1],[0,2,2,2]],[[1,2,0,0],[1,3,1,1],[2,3,3,1],[0,2,3,1]],[[1,2,0,0],[1,3,1,1],[2,3,3,1],[0,3,2,1]],[[1,2,0,0],[1,3,1,1],[2,4,3,1],[0,2,2,1]],[[1,2,0,0],[1,3,1,1],[3,3,3,1],[0,2,2,1]],[[1,2,0,0],[1,3,1,1],[2,2,3,2],[1,2,3,0]],[[1,2,0,0],[1,3,1,1],[2,2,3,2],[1,3,2,0]],[[1,2,0,0],[1,3,1,1],[2,2,3,2],[2,2,2,0]],[[1,2,0,0],[1,3,1,1],[3,2,3,2],[1,2,2,0]],[[1,2,0,0],[1,3,1,1],[2,2,3,1],[1,2,2,2]],[[1,2,0,0],[1,3,1,1],[2,2,3,1],[1,2,3,1]],[[1,2,0,0],[1,3,1,1],[2,2,3,1],[1,3,2,1]],[[1,2,0,0],[1,3,1,1],[2,2,3,1],[2,2,2,1]],[[1,2,0,0],[1,3,1,1],[3,2,3,1],[1,2,2,1]],[[1,2,0,0],[1,3,1,1],[1,3,3,2],[1,2,3,0]],[[1,2,0,0],[1,3,1,1],[1,3,3,2],[1,3,2,0]],[[1,2,0,0],[1,3,1,1],[1,3,3,2],[2,2,2,0]],[[1,2,0,0],[1,3,1,1],[1,4,3,2],[1,2,2,0]],[[1,2,0,0],[1,3,1,1],[1,3,3,1],[1,2,2,2]],[[1,2,0,0],[1,3,1,1],[1,3,3,1],[1,2,3,1]],[[1,2,0,0],[1,3,1,1],[1,3,3,1],[1,3,2,1]],[[1,2,0,0],[1,3,1,1],[1,3,3,1],[2,2,2,1]],[[1,2,0,0],[1,3,1,1],[1,4,3,1],[1,2,2,1]],[[1,2,0,0],[1,3,1,0],[2,3,3,2],[2,1,2,1]],[[1,1,3,1],[1,3,3,2],[1,3,3,0],[0,0,1,1]],[[1,1,2,2],[1,3,3,2],[1,3,3,0],[0,0,1,1]],[[1,1,2,1],[1,4,3,2],[1,3,3,0],[0,0,1,1]],[[1,1,2,1],[1,3,4,2],[1,3,3,0],[0,0,1,1]],[[1,1,3,1],[1,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,1,2,2],[1,3,3,2],[1,3,3,0],[0,0,2,0]],[[1,1,2,1],[1,4,3,2],[1,3,3,0],[0,0,2,0]],[[1,1,2,1],[1,3,4,2],[1,3,3,0],[0,0,2,0]],[[1,2,0,0],[1,3,1,0],[2,4,3,2],[1,1,2,1]],[[1,2,0,0],[1,3,1,0],[3,3,3,2],[1,1,2,1]],[[1,2,0,0],[1,3,1,0],[2,3,3,2],[0,2,2,2]],[[1,2,0,0],[1,3,1,0],[2,3,3,2],[0,2,3,1]],[[1,2,0,0],[1,3,1,0],[2,3,3,2],[0,3,2,1]],[[1,2,0,0],[1,3,1,0],[2,4,3,2],[0,2,2,1]],[[1,2,0,0],[1,3,1,0],[3,3,3,2],[0,2,2,1]],[[1,2,0,0],[1,3,1,0],[2,2,3,2],[1,2,2,2]],[[1,2,0,0],[1,3,1,0],[2,2,3,2],[1,2,3,1]],[[1,1,3,1],[1,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,1,2,2],[1,3,3,2],[1,3,3,0],[0,2,0,0]],[[1,1,2,1],[1,4,3,2],[1,3,3,0],[0,2,0,0]],[[1,1,2,1],[1,3,4,2],[1,3,3,0],[0,2,0,0]],[[1,1,2,1],[1,3,3,2],[1,4,3,0],[0,2,0,0]],[[1,2,0,0],[1,3,1,0],[2,2,3,2],[1,3,2,1]],[[1,2,0,0],[1,3,1,0],[2,2,3,2],[2,2,2,1]],[[1,2,0,0],[1,3,1,0],[3,2,3,2],[1,2,2,1]],[[1,2,0,0],[1,3,1,0],[1,3,3,2],[1,2,2,2]],[[1,2,0,0],[1,3,1,0],[1,3,3,2],[1,2,3,1]],[[1,2,0,0],[1,3,1,0],[1,3,3,2],[1,3,2,1]],[[1,2,0,0],[1,3,1,0],[1,3,3,2],[2,2,2,1]],[[1,2,0,0],[1,3,1,0],[1,4,3,2],[1,2,2,1]],[[1,2,0,0],[1,3,0,2],[2,3,3,2],[2,1,2,0]],[[1,2,0,0],[1,3,0,2],[2,4,3,2],[1,1,2,0]],[[1,2,0,0],[1,3,0,2],[3,3,3,2],[1,1,2,0]],[[1,2,0,0],[1,3,0,2],[2,3,3,2],[1,0,2,2]],[[1,2,0,0],[1,3,0,2],[2,3,3,2],[1,0,3,1]],[[1,2,0,0],[1,3,0,2],[2,3,3,3],[1,0,2,1]],[[1,2,0,0],[1,3,0,2],[2,3,3,2],[0,2,3,0]],[[1,2,0,0],[1,3,0,2],[2,3,3,2],[0,3,2,0]],[[1,1,3,1],[1,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,1,2,2],[1,3,3,2],[1,3,3,0],[1,1,0,0]],[[1,1,2,1],[1,4,3,2],[1,3,3,0],[1,1,0,0]],[[1,1,2,1],[1,3,4,2],[1,3,3,0],[1,1,0,0]],[[1,1,2,1],[1,3,3,2],[1,4,3,0],[1,1,0,0]],[[1,2,0,0],[1,3,0,2],[2,4,3,2],[0,2,2,0]],[[1,2,0,0],[1,3,0,2],[3,3,3,2],[0,2,2,0]],[[1,2,0,0],[1,3,0,2],[2,3,3,2],[0,1,2,2]],[[1,2,0,0],[1,3,0,2],[2,3,3,2],[0,1,3,1]],[[1,2,0,0],[1,3,0,2],[2,3,3,3],[0,1,2,1]],[[1,2,0,0],[1,3,0,2],[2,3,3,1],[2,1,2,1]],[[1,2,0,0],[1,3,0,2],[2,4,3,1],[1,1,2,1]],[[1,2,0,0],[1,3,0,2],[3,3,3,1],[1,1,2,1]],[[1,2,0,0],[1,3,0,2],[2,3,3,1],[0,2,2,2]],[[1,2,0,0],[1,3,0,2],[2,3,3,1],[0,2,3,1]],[[1,2,0,0],[1,3,0,2],[2,3,3,1],[0,3,2,1]],[[1,2,0,0],[1,3,0,2],[2,4,3,1],[0,2,2,1]],[[1,2,0,0],[1,3,0,2],[3,3,3,1],[0,2,2,1]],[[1,2,0,0],[1,3,0,2],[2,3,2,2],[2,1,2,1]],[[1,2,0,0],[1,3,0,2],[2,4,2,2],[1,1,2,1]],[[1,2,0,0],[1,3,0,2],[3,3,2,2],[1,1,2,1]],[[1,2,0,0],[1,3,0,2],[2,3,2,2],[0,2,2,2]],[[1,2,0,0],[1,3,0,2],[2,3,2,2],[0,2,3,1]],[[1,2,0,0],[1,3,0,2],[2,3,2,2],[0,3,2,1]],[[1,2,0,0],[1,3,0,2],[2,3,2,3],[0,2,2,1]],[[1,2,0,0],[1,3,0,2],[2,4,2,2],[0,2,2,1]],[[1,2,0,0],[1,3,0,2],[3,3,2,2],[0,2,2,1]],[[1,2,0,0],[1,3,0,2],[2,2,3,2],[1,2,3,0]],[[1,2,0,0],[1,3,0,2],[2,2,3,2],[1,3,2,0]],[[1,2,0,0],[1,3,0,2],[2,2,3,2],[2,2,2,0]],[[1,2,0,0],[1,3,0,2],[3,2,3,2],[1,2,2,0]],[[1,2,0,0],[1,3,0,2],[2,2,3,2],[0,2,2,2]],[[1,2,0,0],[1,3,0,2],[2,2,3,2],[0,2,3,1]],[[1,2,0,0],[1,3,0,2],[2,2,3,2],[0,3,2,1]],[[1,2,0,0],[1,3,0,2],[2,2,3,3],[0,2,2,1]],[[1,2,0,0],[1,3,0,2],[2,2,3,1],[1,2,2,2]],[[1,2,0,0],[1,3,0,2],[2,2,3,1],[1,2,3,1]],[[1,2,0,0],[1,3,0,2],[2,2,3,1],[1,3,2,1]],[[1,2,0,0],[1,3,0,2],[2,2,3,1],[2,2,2,1]],[[1,2,0,0],[1,3,0,2],[3,2,3,1],[1,2,2,1]],[[1,2,0,0],[1,3,0,2],[2,2,2,2],[1,2,2,2]],[[1,2,0,0],[1,3,0,2],[2,2,2,2],[1,2,3,1]],[[1,2,0,0],[1,3,0,2],[2,2,2,2],[1,3,2,1]],[[1,2,0,0],[1,3,0,2],[2,2,2,2],[2,2,2,1]],[[1,2,0,0],[1,3,0,2],[2,2,2,3],[1,2,2,1]],[[1,2,0,0],[1,3,0,2],[3,2,2,2],[1,2,2,1]],[[1,2,0,0],[1,3,0,2],[2,1,3,2],[1,2,2,2]],[[1,2,0,0],[1,3,0,2],[2,1,3,2],[1,2,3,1]],[[1,2,0,0],[1,3,0,2],[2,1,3,2],[1,3,2,1]],[[1,2,0,0],[1,3,0,2],[2,1,3,2],[2,2,2,1]],[[1,2,0,0],[1,3,0,2],[2,1,3,3],[1,2,2,1]],[[1,2,0,0],[1,3,0,2],[3,1,3,2],[1,2,2,1]],[[1,2,0,0],[1,3,0,2],[1,3,3,2],[1,2,3,0]],[[1,2,0,0],[1,3,0,2],[1,3,3,2],[1,3,2,0]],[[1,2,0,0],[1,3,0,2],[1,3,3,2],[2,2,2,0]],[[1,2,0,0],[1,3,0,2],[1,4,3,2],[1,2,2,0]],[[1,2,0,0],[1,3,0,2],[1,3,3,2],[1,1,2,2]],[[1,2,0,0],[1,3,0,2],[1,3,3,2],[1,1,3,1]],[[1,2,0,0],[1,3,0,2],[1,3,3,3],[1,1,2,1]],[[1,2,0,0],[1,3,0,2],[1,3,3,1],[1,2,2,2]],[[1,2,0,0],[1,3,0,2],[1,3,3,1],[1,2,3,1]],[[1,2,0,0],[1,3,0,2],[1,3,3,1],[1,3,2,1]],[[1,2,0,0],[1,3,0,2],[1,3,3,1],[2,2,2,1]],[[1,2,0,0],[1,3,0,2],[1,4,3,1],[1,2,2,1]],[[1,2,0,0],[1,3,0,2],[1,3,2,2],[1,2,2,2]],[[1,2,0,0],[1,3,0,2],[1,3,2,2],[1,2,3,1]],[[1,2,0,0],[1,3,0,2],[1,3,2,2],[1,3,2,1]],[[1,2,0,0],[1,3,0,2],[1,3,2,2],[2,2,2,1]],[[1,2,0,0],[1,3,0,2],[1,3,2,3],[1,2,2,1]],[[1,2,0,0],[1,3,0,2],[1,4,2,2],[1,2,2,1]],[[1,2,0,0],[1,3,0,2],[1,2,3,2],[1,2,2,2]],[[1,2,0,0],[1,3,0,2],[1,2,3,2],[1,2,3,1]],[[1,2,0,0],[1,3,0,2],[1,2,3,2],[1,3,2,1]],[[1,2,0,0],[1,3,0,2],[1,2,3,2],[2,2,2,1]],[[1,2,0,0],[1,3,0,2],[1,2,3,3],[1,2,2,1]],[[1,2,0,0],[1,3,0,1],[2,3,3,2],[2,1,2,1]],[[1,2,0,0],[1,3,0,1],[2,4,3,2],[1,1,2,1]],[[1,2,0,0],[1,3,0,1],[3,3,3,2],[1,1,2,1]],[[1,2,0,0],[1,3,0,1],[2,3,3,2],[0,2,2,2]],[[1,2,0,0],[1,3,0,1],[2,3,3,2],[0,2,3,1]],[[1,2,0,0],[1,3,0,1],[2,3,3,2],[0,3,2,1]],[[1,2,0,0],[1,3,0,1],[2,4,3,2],[0,2,2,1]],[[1,2,0,0],[1,3,0,1],[3,3,3,2],[0,2,2,1]],[[1,2,0,0],[1,3,0,1],[2,2,3,2],[1,2,2,2]],[[1,2,0,0],[1,3,0,1],[2,2,3,2],[1,2,3,1]],[[1,2,0,0],[1,3,0,1],[2,2,3,2],[1,3,2,1]],[[1,2,0,0],[1,3,0,1],[2,2,3,2],[2,2,2,1]],[[1,2,0,0],[1,3,0,1],[3,2,3,2],[1,2,2,1]],[[1,2,0,0],[1,3,0,1],[1,3,3,2],[1,2,2,2]],[[1,2,0,0],[1,3,0,1],[1,3,3,2],[1,2,3,1]],[[1,2,0,0],[1,3,0,1],[1,3,3,2],[1,3,2,1]],[[1,2,0,0],[1,3,0,1],[1,3,3,2],[2,2,2,1]],[[1,2,0,0],[1,3,0,1],[1,4,3,2],[1,2,2,1]],[[1,2,0,0],[0,3,3,2],[2,3,3,1],[2,2,0,0]],[[1,2,0,0],[0,3,3,2],[2,4,3,1],[1,2,0,0]],[[1,2,0,0],[0,3,3,2],[3,3,3,1],[1,2,0,0]],[[1,2,0,0],[0,4,3,2],[2,3,3,1],[1,2,0,0]],[[1,2,0,0],[0,3,3,2],[2,3,3,1],[2,1,1,0]],[[1,2,0,0],[0,3,3,2],[2,3,4,1],[1,1,1,0]],[[1,2,0,0],[0,3,3,2],[2,4,3,1],[1,1,1,0]],[[1,2,0,0],[0,3,3,2],[3,3,3,1],[1,1,1,0]],[[1,2,0,0],[0,4,3,2],[2,3,3,1],[1,1,1,0]],[[1,2,0,0],[0,3,3,2],[2,3,3,1],[2,1,0,1]],[[1,2,0,0],[0,3,3,2],[2,3,4,1],[1,1,0,1]],[[1,2,0,0],[0,3,3,2],[2,4,3,1],[1,1,0,1]],[[1,2,0,0],[0,3,3,2],[3,3,3,1],[1,1,0,1]],[[1,2,0,0],[0,4,3,2],[2,3,3,1],[1,1,0,1]],[[1,2,0,0],[0,3,3,2],[2,3,3,1],[1,0,3,0]],[[1,2,0,0],[0,3,3,2],[2,3,3,1],[2,0,2,0]],[[1,2,0,0],[0,3,3,2],[2,3,4,1],[1,0,2,0]],[[1,2,0,0],[0,3,3,2],[2,4,3,1],[1,0,2,0]],[[1,2,0,0],[0,3,3,2],[3,3,3,1],[1,0,2,0]],[[1,2,0,0],[0,4,3,2],[2,3,3,1],[1,0,2,0]],[[1,2,0,0],[0,3,3,2],[2,3,3,1],[2,0,1,1]],[[1,2,0,0],[0,3,3,2],[2,3,4,1],[1,0,1,1]],[[1,2,0,0],[0,3,3,2],[2,4,3,1],[1,0,1,1]],[[1,2,0,0],[0,3,3,2],[3,3,3,1],[1,0,1,1]],[[1,2,0,0],[0,4,3,2],[2,3,3,1],[1,0,1,1]],[[1,2,0,0],[0,3,3,2],[2,3,3,1],[0,3,1,0]],[[1,2,0,0],[0,3,3,2],[2,3,4,1],[0,2,1,0]],[[1,2,0,0],[0,3,3,2],[2,4,3,1],[0,2,1,0]],[[1,2,0,0],[0,3,3,2],[3,3,3,1],[0,2,1,0]],[[1,2,0,0],[0,4,3,2],[2,3,3,1],[0,2,1,0]],[[1,2,0,0],[0,3,3,2],[2,3,3,1],[0,3,0,1]],[[1,2,0,0],[0,3,3,2],[2,3,4,1],[0,2,0,1]],[[1,2,0,0],[0,3,3,2],[2,4,3,1],[0,2,0,1]],[[1,2,0,0],[0,3,3,2],[3,3,3,1],[0,2,0,1]],[[1,2,0,0],[0,4,3,2],[2,3,3,1],[0,2,0,1]],[[1,2,0,0],[0,3,3,2],[2,3,3,1],[0,1,3,0]],[[1,2,0,0],[0,3,3,2],[2,3,4,1],[0,1,2,0]],[[1,2,0,0],[0,3,3,2],[2,4,3,1],[0,1,2,0]],[[1,2,0,0],[0,3,3,2],[3,3,3,1],[0,1,2,0]],[[1,2,0,0],[0,4,3,2],[2,3,3,1],[0,1,2,0]],[[1,2,0,0],[0,3,3,2],[2,3,4,1],[0,1,1,1]],[[1,2,0,0],[0,3,3,2],[2,4,3,1],[0,1,1,1]],[[1,2,0,0],[0,3,3,2],[3,3,3,1],[0,1,1,1]],[[1,2,0,0],[0,4,3,2],[2,3,3,1],[0,1,1,1]],[[1,2,0,0],[0,3,3,2],[2,3,3,0],[2,2,0,1]],[[1,2,0,0],[0,3,3,2],[2,4,3,0],[1,2,0,1]],[[1,2,0,0],[0,3,3,2],[3,3,3,0],[1,2,0,1]],[[1,2,0,0],[0,4,3,2],[2,3,3,0],[1,2,0,1]],[[1,2,0,0],[0,3,3,2],[2,3,3,0],[2,1,1,1]],[[1,2,0,0],[0,3,3,2],[2,3,4,0],[1,1,1,1]],[[1,2,0,0],[0,3,3,2],[2,4,3,0],[1,1,1,1]],[[1,2,0,0],[0,3,3,2],[3,3,3,0],[1,1,1,1]],[[1,2,0,0],[0,4,3,2],[2,3,3,0],[1,1,1,1]],[[1,2,0,0],[0,3,3,2],[2,3,3,0],[1,0,2,2]],[[1,2,0,0],[0,3,3,2],[2,3,3,0],[1,0,3,1]],[[1,2,0,0],[0,3,3,2],[2,3,3,0],[2,0,2,1]],[[1,2,0,0],[0,3,3,2],[2,3,4,0],[1,0,2,1]],[[1,2,0,0],[0,3,3,2],[2,4,3,0],[1,0,2,1]],[[1,2,0,0],[0,3,3,2],[3,3,3,0],[1,0,2,1]],[[1,2,0,0],[0,4,3,2],[2,3,3,0],[1,0,2,1]],[[1,2,0,0],[0,3,3,2],[2,3,3,0],[0,3,1,1]],[[1,2,0,0],[0,3,3,2],[2,3,4,0],[0,2,1,1]],[[1,2,0,0],[0,3,3,2],[2,4,3,0],[0,2,1,1]],[[1,2,0,0],[0,3,3,2],[3,3,3,0],[0,2,1,1]],[[1,2,0,0],[0,4,3,2],[2,3,3,0],[0,2,1,1]],[[1,2,0,0],[0,3,3,2],[2,3,3,0],[0,1,2,2]],[[1,2,0,0],[0,3,3,2],[2,3,3,0],[0,1,3,1]],[[1,2,0,0],[0,3,3,2],[2,3,4,0],[0,1,2,1]],[[1,2,0,0],[0,3,3,2],[2,4,3,0],[0,1,2,1]],[[1,2,0,0],[0,3,3,2],[3,3,3,0],[0,1,2,1]],[[1,2,0,0],[0,4,3,2],[2,3,3,0],[0,1,2,1]],[[1,2,0,0],[0,3,3,2],[2,3,2,1],[2,1,2,0]],[[1,2,0,0],[0,3,3,2],[2,4,2,1],[1,1,2,0]],[[1,2,0,0],[0,3,3,2],[3,3,2,1],[1,1,2,0]],[[1,2,0,0],[0,4,3,2],[2,3,2,1],[1,1,2,0]],[[1,2,0,0],[0,3,3,2],[2,3,2,1],[0,2,3,0]],[[1,2,0,0],[0,3,3,2],[2,3,2,1],[0,3,2,0]],[[1,2,0,0],[0,3,3,2],[2,4,2,1],[0,2,2,0]],[[1,2,0,0],[0,3,3,2],[3,3,2,1],[0,2,2,0]],[[1,2,0,0],[0,4,3,2],[2,3,2,1],[0,2,2,0]],[[1,2,0,0],[0,3,3,2],[2,3,2,0],[2,1,2,1]],[[1,2,0,0],[0,3,3,2],[2,4,2,0],[1,1,2,1]],[[1,2,0,0],[0,3,3,2],[3,3,2,0],[1,1,2,1]],[[1,2,0,0],[0,4,3,2],[2,3,2,0],[1,1,2,1]],[[1,2,0,0],[0,3,3,2],[2,3,2,0],[0,2,2,2]],[[1,2,0,0],[0,3,3,2],[2,3,2,0],[0,2,3,1]],[[1,2,0,0],[0,3,3,2],[2,3,2,0],[0,3,2,1]],[[1,2,0,0],[0,3,3,2],[2,4,2,0],[0,2,2,1]],[[1,2,0,0],[0,3,3,2],[3,3,2,0],[0,2,2,1]],[[1,2,0,0],[0,4,3,2],[2,3,2,0],[0,2,2,1]],[[1,2,0,0],[0,3,3,2],[2,2,3,1],[1,3,1,0]],[[1,2,0,0],[0,3,3,2],[2,2,3,1],[2,2,1,0]],[[1,2,0,0],[0,3,3,2],[3,2,3,1],[1,2,1,0]],[[1,2,0,0],[0,3,3,2],[2,2,3,1],[1,3,0,1]],[[1,2,0,0],[0,3,3,2],[2,2,3,1],[2,2,0,1]],[[1,2,0,0],[0,3,3,2],[3,2,3,1],[1,2,0,1]],[[1,2,0,0],[0,3,3,2],[2,2,3,1],[0,2,3,0]],[[1,2,0,0],[0,3,3,2],[2,2,3,1],[0,3,2,0]],[[1,2,0,0],[0,3,3,2],[2,2,4,1],[0,2,2,0]],[[1,2,0,0],[0,3,3,2],[2,2,3,0],[1,3,1,1]],[[1,2,0,0],[0,3,3,2],[2,2,3,0],[2,2,1,1]],[[1,2,0,0],[0,3,3,2],[3,2,3,0],[1,2,1,1]],[[1,2,0,0],[0,3,3,2],[2,2,3,0],[0,2,2,2]],[[1,2,0,0],[0,3,3,2],[2,2,3,0],[0,2,3,1]],[[1,2,0,0],[0,3,3,2],[2,2,3,0],[0,3,2,1]],[[1,2,0,0],[0,3,3,2],[2,2,4,0],[0,2,2,1]],[[1,2,0,0],[0,3,3,2],[2,2,2,1],[1,2,3,0]],[[1,2,0,0],[0,3,3,2],[2,2,2,1],[1,3,2,0]],[[1,2,0,0],[0,3,3,2],[2,2,2,1],[2,2,2,0]],[[1,2,0,0],[0,3,3,2],[3,2,2,1],[1,2,2,0]],[[1,2,0,0],[0,3,3,2],[2,2,2,0],[1,2,2,2]],[[1,2,0,0],[0,3,3,2],[2,2,2,0],[1,2,3,1]],[[1,2,0,0],[0,3,3,2],[2,2,2,0],[1,3,2,1]],[[1,2,0,0],[0,3,3,2],[2,2,2,0],[2,2,2,1]],[[1,2,0,0],[0,3,3,2],[3,2,2,0],[1,2,2,1]],[[1,2,0,0],[0,3,3,2],[2,1,3,1],[1,2,3,0]],[[1,2,0,0],[0,3,3,2],[2,1,3,1],[1,3,2,0]],[[1,2,0,0],[0,3,3,2],[2,1,3,1],[2,2,2,0]],[[1,2,0,0],[0,3,3,2],[2,1,4,1],[1,2,2,0]],[[1,2,0,0],[0,3,3,2],[3,1,3,1],[1,2,2,0]],[[1,2,0,0],[0,3,3,2],[2,1,3,0],[1,2,2,2]],[[1,2,0,0],[0,3,3,2],[2,1,3,0],[1,2,3,1]],[[1,2,0,0],[0,3,3,2],[2,1,3,0],[1,3,2,1]],[[1,2,0,0],[0,3,3,2],[2,1,3,0],[2,2,2,1]],[[1,2,0,0],[0,3,3,2],[2,1,4,0],[1,2,2,1]],[[1,2,0,0],[0,3,3,2],[3,1,3,0],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[2,0,0,1],[1,2,2,1]],[[1,1,2,2],[1,3,3,2],[2,0,0,1],[1,2,2,1]],[[1,1,2,1],[1,3,3,3],[2,0,0,1],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[2,0,0,2],[0,2,2,1]],[[1,1,2,2],[1,3,3,2],[2,0,0,2],[0,2,2,1]],[[1,1,2,1],[1,3,3,3],[2,0,0,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,2],[2,0,0,2],[1,1,2,1]],[[1,1,2,2],[1,3,3,2],[2,0,0,2],[1,1,2,1]],[[1,1,2,1],[1,3,3,3],[2,0,0,2],[1,1,2,1]],[[1,1,3,1],[1,3,3,2],[2,0,0,2],[1,2,1,1]],[[1,1,2,2],[1,3,3,2],[2,0,0,2],[1,2,1,1]],[[1,1,2,1],[1,3,3,3],[2,0,0,2],[1,2,1,1]],[[1,1,3,1],[1,3,3,2],[2,0,0,2],[1,2,2,0]],[[1,1,2,2],[1,3,3,2],[2,0,0,2],[1,2,2,0]],[[1,1,2,1],[1,3,3,3],[2,0,0,2],[1,2,2,0]],[[1,1,3,1],[1,3,3,2],[2,0,1,2],[0,2,1,1]],[[1,1,2,2],[1,3,3,2],[2,0,1,2],[0,2,1,1]],[[1,1,2,1],[1,3,3,3],[2,0,1,2],[0,2,1,1]],[[1,1,3,1],[1,3,3,2],[2,0,1,2],[0,2,2,0]],[[1,1,2,2],[1,3,3,2],[2,0,1,2],[0,2,2,0]],[[1,1,2,1],[1,3,3,3],[2,0,1,2],[0,2,2,0]],[[1,1,3,1],[1,3,3,2],[2,0,1,2],[1,1,1,1]],[[1,1,2,2],[1,3,3,2],[2,0,1,2],[1,1,1,1]],[[1,1,2,1],[1,3,3,3],[2,0,1,2],[1,1,1,1]],[[1,1,3,1],[1,3,3,2],[2,0,1,2],[1,1,2,0]],[[1,1,2,2],[1,3,3,2],[2,0,1,2],[1,1,2,0]],[[1,1,2,1],[1,3,3,3],[2,0,1,2],[1,1,2,0]],[[1,1,3,1],[1,3,3,2],[2,0,1,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,2],[2,0,1,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,3],[2,0,1,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,0,1,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,2],[2,0,1,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,3],[2,0,1,2],[1,2,1,0]],[[1,1,3,1],[1,3,3,2],[2,0,2,0],[1,2,2,0]],[[1,1,2,2],[1,3,3,2],[2,0,2,0],[1,2,2,0]],[[1,1,2,1],[1,4,3,2],[2,0,2,0],[1,2,2,0]],[[1,1,2,1],[1,3,4,2],[2,0,2,0],[1,2,2,0]],[[1,2,0,0],[0,3,3,2],[1,3,3,1],[1,3,1,0]],[[1,2,0,0],[0,3,3,2],[1,3,3,1],[2,2,1,0]],[[1,2,0,0],[0,3,3,2],[1,3,4,1],[1,2,1,0]],[[1,2,0,0],[0,3,3,2],[1,4,3,1],[1,2,1,0]],[[1,2,0,0],[0,4,3,2],[1,3,3,1],[1,2,1,0]],[[1,2,0,0],[0,3,3,2],[1,3,3,1],[1,3,0,1]],[[1,2,0,0],[0,3,3,2],[1,3,3,1],[2,2,0,1]],[[1,2,0,0],[0,3,3,2],[1,3,4,1],[1,2,0,1]],[[1,2,0,0],[0,3,3,2],[1,4,3,1],[1,2,0,1]],[[1,2,0,0],[0,4,3,2],[1,3,3,1],[1,2,0,1]],[[1,2,0,0],[0,3,3,2],[1,3,3,1],[1,1,3,0]],[[1,2,0,0],[0,3,3,2],[1,3,4,1],[1,1,2,0]],[[1,2,0,0],[0,3,3,2],[1,4,3,1],[1,1,2,0]],[[1,2,0,0],[0,4,3,2],[1,3,3,1],[1,1,2,0]],[[1,2,0,0],[0,3,3,2],[1,3,4,1],[1,1,1,1]],[[1,2,0,0],[0,3,3,2],[1,4,3,1],[1,1,1,1]],[[1,2,0,0],[0,4,3,2],[1,3,3,1],[1,1,1,1]],[[1,2,0,0],[0,3,3,2],[1,3,3,0],[1,3,1,1]],[[1,2,0,0],[0,3,3,2],[1,3,3,0],[2,2,1,1]],[[1,2,0,0],[0,3,3,2],[1,3,4,0],[1,2,1,1]],[[1,2,0,0],[0,3,3,2],[1,4,3,0],[1,2,1,1]],[[1,2,0,0],[0,4,3,2],[1,3,3,0],[1,2,1,1]],[[1,2,0,0],[0,3,3,2],[1,3,3,0],[1,1,2,2]],[[1,2,0,0],[0,3,3,2],[1,3,3,0],[1,1,3,1]],[[1,2,0,0],[0,3,3,2],[1,3,4,0],[1,1,2,1]],[[1,1,3,1],[1,3,3,2],[2,0,3,0],[0,2,1,1]],[[1,1,2,2],[1,3,3,2],[2,0,3,0],[0,2,1,1]],[[1,1,2,1],[1,3,4,2],[2,0,3,0],[0,2,1,1]],[[1,1,3,1],[1,3,3,2],[2,0,3,0],[0,2,2,0]],[[1,1,2,2],[1,3,3,2],[2,0,3,0],[0,2,2,0]],[[1,1,2,1],[1,4,3,2],[2,0,3,0],[0,2,2,0]],[[1,1,2,1],[1,3,4,2],[2,0,3,0],[0,2,2,0]],[[1,1,3,1],[1,3,3,2],[2,0,3,0],[1,1,1,1]],[[1,1,2,2],[1,3,3,2],[2,0,3,0],[1,1,1,1]],[[1,1,2,1],[1,3,4,2],[2,0,3,0],[1,1,1,1]],[[1,1,3,1],[1,3,3,2],[2,0,3,0],[1,1,2,0]],[[1,1,2,2],[1,3,3,2],[2,0,3,0],[1,1,2,0]],[[1,1,2,1],[1,4,3,2],[2,0,3,0],[1,1,2,0]],[[1,1,2,1],[1,3,4,2],[2,0,3,0],[1,1,2,0]],[[1,1,3,1],[1,3,3,2],[2,0,3,0],[1,2,0,1]],[[1,1,2,2],[1,3,3,2],[2,0,3,0],[1,2,0,1]],[[1,1,2,1],[1,4,3,2],[2,0,3,0],[1,2,0,1]],[[1,1,2,1],[1,3,4,2],[2,0,3,0],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,0,3,0],[1,2,1,0]],[[1,1,2,2],[1,3,3,2],[2,0,3,0],[1,2,1,0]],[[1,1,2,1],[1,4,3,2],[2,0,3,0],[1,2,1,0]],[[1,1,2,1],[1,3,4,2],[2,0,3,0],[1,2,1,0]],[[1,2,0,0],[0,3,3,2],[1,4,3,0],[1,1,2,1]],[[1,2,0,0],[0,4,3,2],[1,3,3,0],[1,1,2,1]],[[1,2,0,0],[0,3,3,2],[1,3,2,1],[1,2,3,0]],[[1,2,0,0],[0,3,3,2],[1,3,2,1],[1,3,2,0]],[[1,2,0,0],[0,3,3,2],[1,3,2,1],[2,2,2,0]],[[1,2,0,0],[0,3,3,2],[1,4,2,1],[1,2,2,0]],[[1,2,0,0],[0,4,3,2],[1,3,2,1],[1,2,2,0]],[[1,2,0,0],[0,3,3,2],[1,3,2,0],[1,2,2,2]],[[1,2,0,0],[0,3,3,2],[1,3,2,0],[1,2,3,1]],[[1,2,0,0],[0,3,3,2],[1,3,2,0],[1,3,2,1]],[[1,2,0,0],[0,3,3,2],[1,3,2,0],[2,2,2,1]],[[1,2,0,0],[0,3,3,2],[1,4,2,0],[1,2,2,1]],[[1,2,0,0],[0,4,3,2],[1,3,2,0],[1,2,2,1]],[[1,2,0,0],[0,3,3,2],[1,2,3,1],[1,2,3,0]],[[1,2,0,0],[0,3,3,2],[1,2,3,1],[1,3,2,0]],[[1,2,0,0],[0,3,3,2],[1,2,3,1],[2,2,2,0]],[[1,2,0,0],[0,3,3,2],[1,2,4,1],[1,2,2,0]],[[1,2,0,0],[0,3,3,2],[1,2,3,0],[1,2,2,2]],[[1,2,0,0],[0,3,3,2],[1,2,3,0],[1,2,3,1]],[[1,2,0,0],[0,3,3,2],[1,2,3,0],[1,3,2,1]],[[1,2,0,0],[0,3,3,2],[1,2,3,0],[2,2,2,1]],[[1,2,0,0],[0,3,3,2],[1,2,4,0],[1,2,2,1]],[[1,2,0,0],[0,3,3,2],[0,3,3,1],[1,2,3,0]],[[1,2,0,0],[0,3,3,2],[0,3,3,1],[1,3,2,0]],[[1,2,0,0],[0,3,3,2],[0,3,4,1],[1,2,2,0]],[[1,2,0,0],[0,3,3,2],[0,3,3,0],[1,2,2,2]],[[1,2,0,0],[0,3,3,2],[0,3,3,0],[1,2,3,1]],[[1,2,0,0],[0,3,3,2],[0,3,3,0],[1,3,2,1]],[[1,2,0,0],[0,3,3,2],[0,3,4,0],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[2,2,0,0]],[[1,2,0,0],[0,3,3,1],[2,4,3,2],[1,2,0,0]],[[1,2,0,0],[0,3,3,1],[3,3,3,2],[1,2,0,0]],[[1,2,0,0],[0,4,3,1],[2,3,3,2],[1,2,0,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[2,1,1,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,3],[1,1,1,0]],[[1,2,0,0],[0,3,3,1],[2,3,4,2],[1,1,1,0]],[[1,2,0,0],[0,3,3,1],[2,4,3,2],[1,1,1,0]],[[1,2,0,0],[0,3,3,1],[3,3,3,2],[1,1,1,0]],[[1,2,0,0],[0,4,3,1],[2,3,3,2],[1,1,1,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[1,1,0,2]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[2,1,0,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,3],[1,1,0,1]],[[1,2,0,0],[0,3,3,1],[2,3,4,2],[1,1,0,1]],[[1,2,0,0],[0,3,3,1],[2,4,3,2],[1,1,0,1]],[[1,2,0,0],[0,3,3,1],[3,3,3,2],[1,1,0,1]],[[1,2,0,0],[0,4,3,1],[2,3,3,2],[1,1,0,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[1,0,3,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[2,0,2,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,3],[1,0,2,0]],[[1,2,0,0],[0,3,3,1],[2,3,4,2],[1,0,2,0]],[[1,2,0,0],[0,3,3,1],[2,4,3,2],[1,0,2,0]],[[1,2,0,0],[0,3,3,1],[3,3,3,2],[1,0,2,0]],[[1,2,0,0],[0,4,3,1],[2,3,3,2],[1,0,2,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[1,0,1,2]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[2,0,1,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,3],[1,0,1,1]],[[1,2,0,0],[0,3,3,1],[2,3,4,2],[1,0,1,1]],[[1,2,0,0],[0,3,3,1],[2,4,3,2],[1,0,1,1]],[[1,2,0,0],[0,3,3,1],[3,3,3,2],[1,0,1,1]],[[1,2,0,0],[0,4,3,1],[2,3,3,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,2],[2,1,0,2],[0,1,2,1]],[[1,1,2,2],[1,3,3,2],[2,1,0,2],[0,1,2,1]],[[1,1,2,1],[1,3,3,3],[2,1,0,2],[0,1,2,1]],[[1,1,3,1],[1,3,3,2],[2,1,0,2],[1,0,2,1]],[[1,1,2,2],[1,3,3,2],[2,1,0,2],[1,0,2,1]],[[1,1,2,1],[1,3,3,3],[2,1,0,2],[1,0,2,1]],[[1,1,3,1],[1,3,3,2],[2,1,0,2],[1,2,0,1]],[[1,1,2,2],[1,3,3,2],[2,1,0,2],[1,2,0,1]],[[1,1,2,1],[1,3,3,3],[2,1,0,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,1,0,2],[1,2,1,0]],[[1,1,2,2],[1,3,3,2],[2,1,0,2],[1,2,1,0]],[[1,1,2,1],[1,3,3,3],[2,1,0,2],[1,2,1,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[0,3,1,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,3],[0,2,1,0]],[[1,2,0,0],[0,3,3,1],[2,3,4,2],[0,2,1,0]],[[1,2,0,0],[0,3,3,1],[2,4,3,2],[0,2,1,0]],[[1,2,0,0],[0,3,3,1],[3,3,3,2],[0,2,1,0]],[[1,2,0,0],[0,4,3,1],[2,3,3,2],[0,2,1,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[0,2,0,2]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[0,3,0,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,3],[0,2,0,1]],[[1,2,0,0],[0,3,3,1],[2,3,4,2],[0,2,0,1]],[[1,2,0,0],[0,3,3,1],[2,4,3,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,1,1,0],[1,2,2,0]],[[1,1,2,2],[1,3,3,2],[2,1,1,0],[1,2,2,0]],[[1,1,2,1],[1,4,3,2],[2,1,1,0],[1,2,2,0]],[[1,1,2,1],[1,3,4,2],[2,1,1,0],[1,2,2,0]],[[1,2,0,0],[0,3,3,1],[3,3,3,2],[0,2,0,1]],[[1,2,0,0],[0,4,3,1],[2,3,3,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,1,1,2],[0,0,2,1]],[[1,1,2,2],[1,3,3,2],[2,1,1,2],[0,0,2,1]],[[1,1,2,1],[1,3,3,3],[2,1,1,2],[0,0,2,1]],[[1,1,3,1],[1,3,3,2],[2,1,1,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,2],[2,1,1,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,3],[2,1,1,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,2],[2,1,1,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,2],[2,1,1,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,3],[2,1,1,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[2,1,1,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,2],[2,1,1,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,3],[2,1,1,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,1,1,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,2],[2,1,1,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,3],[2,1,1,2],[0,2,1,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[0,1,3,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,3],[0,1,2,0]],[[1,2,0,0],[0,3,3,1],[2,3,4,2],[0,1,2,0]],[[1,2,0,0],[0,3,3,1],[2,4,3,2],[0,1,2,0]],[[1,2,0,0],[0,3,3,1],[3,3,3,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[2,1,1,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,2],[2,1,1,2],[1,0,1,1]],[[1,1,2,1],[1,3,3,3],[2,1,1,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,2],[2,1,1,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,2],[2,1,1,2],[1,0,2,0]],[[1,1,2,1],[1,3,3,3],[2,1,1,2],[1,0,2,0]],[[1,1,3,1],[1,3,3,2],[2,1,1,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,2],[2,1,1,2],[1,1,0,1]],[[1,1,2,1],[1,3,3,3],[2,1,1,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,2],[2,1,1,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,2],[2,1,1,2],[1,1,1,0]],[[1,1,2,1],[1,3,3,3],[2,1,1,2],[1,1,1,0]],[[1,2,0,0],[0,4,3,1],[2,3,3,2],[0,1,2,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[0,1,1,2]],[[1,2,0,0],[0,3,3,1],[2,3,3,3],[0,1,1,1]],[[1,2,0,0],[0,3,3,1],[2,3,4,2],[0,1,1,1]],[[1,2,0,0],[0,3,3,1],[2,4,3,2],[0,1,1,1]],[[1,2,0,0],[0,3,3,1],[3,3,3,2],[0,1,1,1]],[[1,2,0,0],[0,4,3,1],[2,3,3,2],[0,1,1,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,2],[0,0,2,2]],[[1,2,0,0],[0,3,3,1],[2,3,3,3],[0,0,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,4,2],[0,0,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,1],[2,2,0,1]],[[1,2,0,0],[0,3,3,1],[2,4,3,1],[1,2,0,1]],[[1,2,0,0],[0,3,3,1],[3,3,3,1],[1,2,0,1]],[[1,2,0,0],[0,4,3,1],[2,3,3,1],[1,2,0,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,1],[2,1,1,1]],[[1,2,0,0],[0,3,3,1],[2,3,4,1],[1,1,1,1]],[[1,2,0,0],[0,3,3,1],[2,4,3,1],[1,1,1,1]],[[1,2,0,0],[0,3,3,1],[3,3,3,1],[1,1,1,1]],[[1,2,0,0],[0,4,3,1],[2,3,3,1],[1,1,1,1]],[[1,1,3,1],[1,3,3,2],[2,1,2,0],[1,2,0,1]],[[1,1,2,2],[1,3,3,2],[2,1,2,0],[1,2,0,1]],[[1,1,2,1],[1,4,3,2],[2,1,2,0],[1,2,0,1]],[[1,1,2,1],[1,3,4,2],[2,1,2,0],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,1,2,0],[1,2,1,0]],[[1,1,2,2],[1,3,3,2],[2,1,2,0],[1,2,1,0]],[[1,1,2,1],[1,4,3,2],[2,1,2,0],[1,2,1,0]],[[1,1,2,1],[1,3,4,2],[2,1,2,0],[1,2,1,0]],[[1,2,0,0],[0,3,3,1],[2,3,3,1],[1,0,2,2]],[[1,2,0,0],[0,3,3,1],[2,3,3,1],[1,0,3,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,1],[2,0,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,4,1],[1,0,2,1]],[[1,2,0,0],[0,3,3,1],[2,4,3,1],[1,0,2,1]],[[1,2,0,0],[0,3,3,1],[3,3,3,1],[1,0,2,1]],[[1,2,0,0],[0,4,3,1],[2,3,3,1],[1,0,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,1],[0,3,1,1]],[[1,2,0,0],[0,3,3,1],[2,3,4,1],[0,2,1,1]],[[1,2,0,0],[0,3,3,1],[2,4,3,1],[0,2,1,1]],[[1,2,0,0],[0,3,3,1],[3,3,3,1],[0,2,1,1]],[[1,2,0,0],[0,4,3,1],[2,3,3,1],[0,2,1,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,1],[0,1,2,2]],[[1,1,3,1],[1,3,3,2],[2,1,2,2],[0,1,0,1]],[[1,1,2,2],[1,3,3,2],[2,1,2,2],[0,1,0,1]],[[1,1,2,1],[1,3,3,3],[2,1,2,2],[0,1,0,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,1],[0,1,3,1]],[[1,2,0,0],[0,3,3,1],[2,3,4,1],[0,1,2,1]],[[1,2,0,0],[0,3,3,1],[2,4,3,1],[0,1,2,1]],[[1,2,0,0],[0,3,3,1],[3,3,3,1],[0,1,2,1]],[[1,2,0,0],[0,4,3,1],[2,3,3,1],[0,1,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,0],[2,1,2,1]],[[1,2,0,0],[0,3,3,1],[2,4,3,0],[1,1,2,1]],[[1,2,0,0],[0,3,3,1],[3,3,3,0],[1,1,2,1]],[[1,2,0,0],[0,4,3,1],[2,3,3,0],[1,1,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,0],[0,2,3,1]],[[1,2,0,0],[0,3,3,1],[2,3,3,0],[0,3,2,1]],[[1,2,0,0],[0,3,3,1],[2,4,3,0],[0,2,2,1]],[[1,2,0,0],[0,3,3,1],[3,3,3,0],[0,2,2,1]],[[1,2,0,0],[0,4,3,1],[2,3,3,0],[0,2,2,1]],[[1,1,3,1],[1,3,3,2],[2,1,2,2],[1,0,0,1]],[[1,1,2,2],[1,3,3,2],[2,1,2,2],[1,0,0,1]],[[1,1,2,1],[1,3,3,3],[2,1,2,2],[1,0,0,1]],[[1,2,0,0],[0,3,3,1],[2,3,2,2],[2,1,2,0]],[[1,2,0,0],[0,3,3,1],[2,4,2,2],[1,1,2,0]],[[1,2,0,0],[0,3,3,1],[3,3,2,2],[1,1,2,0]],[[1,2,0,0],[0,4,3,1],[2,3,2,2],[1,1,2,0]],[[1,2,0,0],[0,3,3,1],[2,3,2,2],[1,0,2,2]],[[1,2,0,0],[0,3,3,1],[2,3,2,2],[1,0,3,1]],[[1,2,0,0],[0,3,3,1],[2,3,2,3],[1,0,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,2,2],[0,2,3,0]],[[1,2,0,0],[0,3,3,1],[2,3,2,2],[0,3,2,0]],[[1,2,0,0],[0,3,3,1],[2,4,2,2],[0,2,2,0]],[[1,2,0,0],[0,3,3,1],[3,3,2,2],[0,2,2,0]],[[1,2,0,0],[0,4,3,1],[2,3,2,2],[0,2,2,0]],[[1,2,0,0],[0,3,3,1],[2,3,2,2],[0,1,2,2]],[[1,2,0,0],[0,3,3,1],[2,3,2,2],[0,1,3,1]],[[1,2,0,0],[0,3,3,1],[2,3,2,3],[0,1,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,2,1],[2,1,2,1]],[[1,2,0,0],[0,3,3,1],[2,4,2,1],[1,1,2,1]],[[1,2,0,0],[0,3,3,1],[3,3,2,1],[1,1,2,1]],[[1,2,0,0],[0,4,3,1],[2,3,2,1],[1,1,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,2,1],[0,2,2,2]],[[1,2,0,0],[0,3,3,1],[2,3,2,1],[0,2,3,1]],[[1,2,0,0],[0,3,3,1],[2,3,2,1],[0,3,2,1]],[[1,2,0,0],[0,3,3,1],[2,4,2,1],[0,2,2,1]],[[1,2,0,0],[0,3,3,1],[3,3,2,1],[0,2,2,1]],[[1,2,0,0],[0,4,3,1],[2,3,2,1],[0,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,1,2],[2,1,2,1]],[[1,2,0,0],[0,3,3,1],[2,4,1,2],[1,1,2,1]],[[1,2,0,0],[0,3,3,1],[3,3,1,2],[1,1,2,1]],[[1,2,0,0],[0,4,3,1],[2,3,1,2],[1,1,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,1,2],[0,2,2,2]],[[1,2,0,0],[0,3,3,1],[2,3,1,2],[0,2,3,1]],[[1,2,0,0],[0,3,3,1],[2,3,1,2],[0,3,2,1]],[[1,2,0,0],[0,3,3,1],[2,3,1,3],[0,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,4,1,2],[0,2,2,1]],[[1,2,0,0],[0,3,3,1],[3,3,1,2],[0,2,2,1]],[[1,2,0,0],[0,4,3,1],[2,3,1,2],[0,2,2,1]],[[1,1,3,1],[1,3,3,2],[2,1,3,0],[0,0,2,1]],[[1,1,2,2],[1,3,3,2],[2,1,3,0],[0,0,2,1]],[[1,1,2,1],[1,3,4,2],[2,1,3,0],[0,0,2,1]],[[1,1,3,1],[1,3,3,2],[2,1,3,0],[0,1,1,1]],[[1,1,2,2],[1,3,3,2],[2,1,3,0],[0,1,1,1]],[[1,1,2,1],[1,4,3,2],[2,1,3,0],[0,1,1,1]],[[1,1,2,1],[1,3,4,2],[2,1,3,0],[0,1,1,1]],[[1,1,3,1],[1,3,3,2],[2,1,3,0],[0,1,2,0]],[[1,1,2,2],[1,3,3,2],[2,1,3,0],[0,1,2,0]],[[1,1,2,1],[1,4,3,2],[2,1,3,0],[0,1,2,0]],[[1,1,2,1],[1,3,4,2],[2,1,3,0],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[2,1,3,0],[0,2,0,1]],[[1,1,2,2],[1,3,3,2],[2,1,3,0],[0,2,0,1]],[[1,1,2,1],[1,4,3,2],[2,1,3,0],[0,2,0,1]],[[1,1,2,1],[1,3,4,2],[2,1,3,0],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,1,3,0],[0,2,1,0]],[[1,1,2,2],[1,3,3,2],[2,1,3,0],[0,2,1,0]],[[1,1,2,1],[1,4,3,2],[2,1,3,0],[0,2,1,0]],[[1,1,2,1],[1,3,4,2],[2,1,3,0],[0,2,1,0]],[[1,2,0,0],[0,3,3,1],[2,2,3,2],[1,3,1,0]],[[1,2,0,0],[0,3,3,1],[2,2,3,2],[2,2,1,0]],[[1,1,3,1],[1,3,3,2],[2,1,3,0],[1,0,1,1]],[[1,1,2,2],[1,3,3,2],[2,1,3,0],[1,0,1,1]],[[1,1,2,1],[1,4,3,2],[2,1,3,0],[1,0,1,1]],[[1,1,2,1],[1,3,4,2],[2,1,3,0],[1,0,1,1]],[[1,1,3,1],[1,3,3,2],[2,1,3,0],[1,0,2,0]],[[1,1,2,2],[1,3,3,2],[2,1,3,0],[1,0,2,0]],[[1,1,2,1],[1,4,3,2],[2,1,3,0],[1,0,2,0]],[[1,1,2,1],[1,3,4,2],[2,1,3,0],[1,0,2,0]],[[1,1,3,1],[1,3,3,2],[2,1,3,0],[1,1,0,1]],[[1,1,2,2],[1,3,3,2],[2,1,3,0],[1,1,0,1]],[[1,1,2,1],[1,4,3,2],[2,1,3,0],[1,1,0,1]],[[1,1,2,1],[1,3,4,2],[2,1,3,0],[1,1,0,1]],[[1,1,3,1],[1,3,3,2],[2,1,3,0],[1,1,1,0]],[[1,1,2,2],[1,3,3,2],[2,1,3,0],[1,1,1,0]],[[1,1,2,1],[1,4,3,2],[2,1,3,0],[1,1,1,0]],[[1,1,2,1],[1,3,4,2],[2,1,3,0],[1,1,1,0]],[[1,2,0,0],[0,3,3,1],[3,2,3,2],[1,2,1,0]],[[1,2,0,0],[0,3,3,1],[2,2,3,2],[1,3,0,1]],[[1,2,0,0],[0,3,3,1],[2,2,3,2],[2,2,0,1]],[[1,2,0,0],[0,3,3,1],[3,2,3,2],[1,2,0,1]],[[1,2,0,0],[0,3,3,1],[2,2,3,2],[0,2,3,0]],[[1,2,0,0],[0,3,3,1],[2,2,3,2],[0,3,2,0]],[[1,2,0,0],[0,3,3,1],[2,2,3,3],[0,2,2,0]],[[1,2,0,0],[0,3,3,1],[2,2,4,2],[0,2,2,0]],[[1,2,0,0],[0,3,3,1],[2,2,3,2],[0,2,1,2]],[[1,2,0,0],[0,3,3,1],[2,2,3,3],[0,2,1,1]],[[1,2,0,0],[0,3,3,1],[2,2,4,2],[0,2,1,1]],[[1,2,0,0],[0,3,3,1],[2,2,3,1],[1,3,1,1]],[[1,2,0,0],[0,3,3,1],[2,2,3,1],[2,2,1,1]],[[1,2,0,0],[0,3,3,1],[3,2,3,1],[1,2,1,1]],[[1,2,0,0],[0,3,3,1],[2,2,3,1],[0,2,2,2]],[[1,2,0,0],[0,3,3,1],[2,2,3,1],[0,2,3,1]],[[1,2,0,0],[0,3,3,1],[2,2,3,1],[0,3,2,1]],[[1,2,0,0],[0,3,3,1],[2,2,4,1],[0,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,2,3,0],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[2,2,3,0],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[2,2,3,0],[2,2,2,1]],[[1,2,0,0],[0,3,3,1],[3,2,3,0],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,2,2,2],[1,2,3,0]],[[1,2,0,0],[0,3,3,1],[2,2,2,2],[1,3,2,0]],[[1,2,0,0],[0,3,3,1],[2,2,2,2],[2,2,2,0]],[[1,2,0,0],[0,3,3,1],[3,2,2,2],[1,2,2,0]],[[1,2,0,0],[0,3,3,1],[2,2,2,2],[0,2,2,2]],[[1,2,0,0],[0,3,3,1],[2,2,2,2],[0,2,3,1]],[[1,2,0,0],[0,3,3,1],[2,2,2,2],[0,3,2,1]],[[1,2,0,0],[0,3,3,1],[2,2,2,3],[0,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,2,2,1],[1,2,2,2]],[[1,2,0,0],[0,3,3,1],[2,2,2,1],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[2,2,2,1],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[2,2,2,1],[2,2,2,1]],[[1,2,0,0],[0,3,3,1],[3,2,2,1],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,2,1,2],[1,2,2,2]],[[1,2,0,0],[0,3,3,1],[2,2,1,2],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[2,2,1,2],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[2,2,1,2],[2,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,2,1,3],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[3,2,1,2],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,1,3,2],[1,2,3,0]],[[1,2,0,0],[0,3,3,1],[2,1,3,2],[1,3,2,0]],[[1,2,0,0],[0,3,3,1],[2,1,3,2],[2,2,2,0]],[[1,2,0,0],[0,3,3,1],[2,1,3,3],[1,2,2,0]],[[1,2,0,0],[0,3,3,1],[2,1,4,2],[1,2,2,0]],[[1,2,0,0],[0,3,3,1],[3,1,3,2],[1,2,2,0]],[[1,2,0,0],[0,3,3,1],[2,1,3,2],[1,2,1,2]],[[1,2,0,0],[0,3,3,1],[2,1,3,3],[1,2,1,1]],[[1,2,0,0],[0,3,3,1],[2,1,4,2],[1,2,1,1]],[[1,2,0,0],[0,3,3,1],[2,1,3,1],[1,2,2,2]],[[1,2,0,0],[0,3,3,1],[2,1,3,1],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[2,1,3,1],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[2,1,3,1],[2,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,1,4,1],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[3,1,3,1],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,1,2,2],[1,2,2,2]],[[1,2,0,0],[0,3,3,1],[2,1,2,2],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[2,1,2,2],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[2,1,2,2],[2,2,2,1]],[[1,2,0,0],[0,3,3,1],[2,1,2,3],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[3,1,2,2],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[1,3,3,2],[1,3,1,0]],[[1,2,0,0],[0,3,3,1],[1,3,3,2],[2,2,1,0]],[[1,2,0,0],[0,3,3,1],[1,3,3,3],[1,2,1,0]],[[1,2,0,0],[0,3,3,1],[1,3,4,2],[1,2,1,0]],[[1,2,0,0],[0,3,3,1],[1,4,3,2],[1,2,1,0]],[[1,2,0,0],[0,4,3,1],[1,3,3,2],[1,2,1,0]],[[1,2,0,0],[0,3,3,1],[1,3,3,2],[1,2,0,2]],[[1,2,0,0],[0,3,3,1],[1,3,3,2],[1,3,0,1]],[[1,2,0,0],[0,3,3,1],[1,3,3,2],[2,2,0,1]],[[1,2,0,0],[0,3,3,1],[1,3,3,3],[1,2,0,1]],[[1,2,0,0],[0,3,3,1],[1,3,4,2],[1,2,0,1]],[[1,2,0,0],[0,3,3,1],[1,4,3,2],[1,2,0,1]],[[1,2,0,0],[0,4,3,1],[1,3,3,2],[1,2,0,1]],[[1,2,0,0],[0,3,3,1],[1,3,3,2],[1,1,3,0]],[[1,2,0,0],[0,3,3,1],[1,3,3,3],[1,1,2,0]],[[1,2,0,0],[0,3,3,1],[1,3,4,2],[1,1,2,0]],[[1,2,0,0],[0,3,3,1],[1,4,3,2],[1,1,2,0]],[[1,2,0,0],[0,4,3,1],[1,3,3,2],[1,1,2,0]],[[1,2,0,0],[0,3,3,1],[1,3,3,2],[1,1,1,2]],[[1,2,0,0],[0,3,3,1],[1,3,3,3],[1,1,1,1]],[[1,2,0,0],[0,3,3,1],[1,3,4,2],[1,1,1,1]],[[1,2,0,0],[0,3,3,1],[1,4,3,2],[1,1,1,1]],[[1,2,0,0],[0,4,3,1],[1,3,3,2],[1,1,1,1]],[[1,2,0,0],[0,3,3,1],[1,3,3,2],[1,0,2,2]],[[1,2,0,0],[0,3,3,1],[1,3,3,3],[1,0,2,1]],[[1,2,0,0],[0,3,3,1],[1,3,4,2],[1,0,2,1]],[[1,2,0,0],[0,3,3,1],[1,3,3,1],[1,3,1,1]],[[1,2,0,0],[0,3,3,1],[1,3,3,1],[2,2,1,1]],[[1,2,0,0],[0,3,3,1],[1,3,4,1],[1,2,1,1]],[[1,2,0,0],[0,3,3,1],[1,4,3,1],[1,2,1,1]],[[1,2,0,0],[0,4,3,1],[1,3,3,1],[1,2,1,1]],[[1,2,0,0],[0,3,3,1],[1,3,3,1],[1,1,2,2]],[[1,2,0,0],[0,3,3,1],[1,3,3,1],[1,1,3,1]],[[1,2,0,0],[0,3,3,1],[1,3,4,1],[1,1,2,1]],[[1,2,0,0],[0,3,3,1],[1,4,3,1],[1,1,2,1]],[[1,2,0,0],[0,4,3,1],[1,3,3,1],[1,1,2,1]],[[1,2,0,0],[0,3,3,1],[1,3,3,0],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[1,3,3,0],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[1,3,3,0],[2,2,2,1]],[[1,2,0,0],[0,3,3,1],[1,4,3,0],[1,2,2,1]],[[1,2,0,0],[0,4,3,1],[1,3,3,0],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[1,3,2,2],[1,2,3,0]],[[1,2,0,0],[0,3,3,1],[1,3,2,2],[1,3,2,0]],[[1,2,0,0],[0,3,3,1],[1,3,2,2],[2,2,2,0]],[[1,2,0,0],[0,3,3,1],[1,4,2,2],[1,2,2,0]],[[1,2,0,0],[0,4,3,1],[1,3,2,2],[1,2,2,0]],[[1,2,0,0],[0,3,3,1],[1,3,2,2],[1,1,2,2]],[[1,2,0,0],[0,3,3,1],[1,3,2,2],[1,1,3,1]],[[1,2,0,0],[0,3,3,1],[1,3,2,3],[1,1,2,1]],[[1,2,0,0],[0,3,3,1],[1,3,2,1],[1,2,2,2]],[[1,2,0,0],[0,3,3,1],[1,3,2,1],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[1,3,2,1],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[1,3,2,1],[2,2,2,1]],[[1,2,0,0],[0,3,3,1],[1,4,2,1],[1,2,2,1]],[[1,2,0,0],[0,4,3,1],[1,3,2,1],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[1,3,1,2],[1,2,2,2]],[[1,2,0,0],[0,3,3,1],[1,3,1,2],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[1,3,1,2],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[1,3,1,2],[2,2,2,1]],[[1,2,0,0],[0,3,3,1],[1,3,1,3],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[1,4,1,2],[1,2,2,1]],[[1,2,0,0],[0,4,3,1],[1,3,1,2],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[1,2,3,2],[1,2,3,0]],[[1,2,0,0],[0,3,3,1],[1,2,3,2],[1,3,2,0]],[[1,2,0,0],[0,3,3,1],[1,2,3,2],[2,2,2,0]],[[1,2,0,0],[0,3,3,1],[1,2,3,3],[1,2,2,0]],[[1,2,0,0],[0,3,3,1],[1,2,4,2],[1,2,2,0]],[[1,2,0,0],[0,3,3,1],[1,2,3,2],[1,2,1,2]],[[1,2,0,0],[0,3,3,1],[1,2,3,3],[1,2,1,1]],[[1,2,0,0],[0,3,3,1],[1,2,4,2],[1,2,1,1]],[[1,2,0,0],[0,3,3,1],[1,2,3,1],[1,2,2,2]],[[1,2,0,0],[0,3,3,1],[1,2,3,1],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[1,2,3,1],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[1,2,3,1],[2,2,2,1]],[[1,2,0,0],[0,3,3,1],[1,2,4,1],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[1,2,2,2],[1,2,2,2]],[[1,2,0,0],[0,3,3,1],[1,2,2,2],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[1,2,2,2],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[1,2,2,2],[2,2,2,1]],[[1,2,0,0],[0,3,3,1],[1,2,2,3],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[0,3,3,2],[1,2,3,0]],[[1,2,0,0],[0,3,3,1],[0,3,3,2],[1,3,2,0]],[[1,2,0,0],[0,3,3,1],[0,3,3,3],[1,2,2,0]],[[1,2,0,0],[0,3,3,1],[0,3,4,2],[1,2,2,0]],[[1,2,0,0],[0,3,3,1],[0,3,3,2],[1,2,1,2]],[[1,2,0,0],[0,3,3,1],[0,3,3,3],[1,2,1,1]],[[1,2,0,0],[0,3,3,1],[0,3,4,2],[1,2,1,1]],[[1,2,0,0],[0,3,3,1],[0,3,3,1],[1,2,2,2]],[[1,2,0,0],[0,3,3,1],[0,3,3,1],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[0,3,3,1],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[0,3,4,1],[1,2,2,1]],[[1,2,0,0],[0,3,3,1],[0,3,2,2],[1,2,2,2]],[[1,2,0,0],[0,3,3,1],[0,3,2,2],[1,2,3,1]],[[1,2,0,0],[0,3,3,1],[0,3,2,2],[1,3,2,1]],[[1,2,0,0],[0,3,3,1],[0,3,2,3],[1,2,2,1]],[[1,2,0,0],[0,3,3,0],[2,3,3,2],[1,3,1,0]],[[1,2,0,0],[0,3,3,0],[2,3,3,2],[2,2,1,0]],[[1,2,0,0],[0,3,3,0],[2,4,3,2],[1,2,1,0]],[[1,2,0,0],[0,3,3,0],[2,3,3,2],[2,1,1,1]],[[1,2,0,0],[0,3,3,0],[2,3,4,2],[1,1,1,1]],[[1,2,0,0],[0,3,3,0],[2,4,3,2],[1,1,1,1]],[[1,2,0,0],[0,3,3,0],[3,3,3,2],[1,1,1,1]],[[1,2,0,0],[0,4,3,0],[2,3,3,2],[1,1,1,1]],[[1,2,0,0],[0,3,3,0],[2,3,3,2],[1,0,2,2]],[[1,2,0,0],[0,3,3,0],[2,3,3,2],[1,0,3,1]],[[1,2,0,0],[0,3,3,0],[2,3,3,2],[2,0,2,1]],[[1,2,0,0],[0,3,3,0],[2,3,4,2],[1,0,2,1]],[[1,2,0,0],[0,3,3,0],[2,4,3,2],[1,0,2,1]],[[1,2,0,0],[0,3,3,0],[3,3,3,2],[1,0,2,1]],[[1,2,0,0],[0,4,3,0],[2,3,3,2],[1,0,2,1]],[[1,2,0,0],[0,3,3,0],[2,3,3,2],[0,3,1,1]],[[1,2,0,0],[0,3,3,0],[2,3,4,2],[0,2,1,1]],[[1,2,0,0],[0,3,3,0],[2,4,3,2],[0,2,1,1]],[[1,2,0,0],[0,3,3,0],[3,3,3,2],[0,2,1,1]],[[1,2,0,0],[0,4,3,0],[2,3,3,2],[0,2,1,1]],[[1,2,0,0],[0,3,3,0],[2,3,3,2],[0,1,2,2]],[[1,2,0,0],[0,3,3,0],[2,3,3,2],[0,1,3,1]],[[1,2,0,0],[0,3,3,0],[2,3,4,2],[0,1,2,1]],[[1,2,0,0],[0,3,3,0],[2,4,3,2],[0,1,2,1]],[[1,2,0,0],[0,3,3,0],[3,3,3,2],[0,1,2,1]],[[1,2,0,0],[0,4,3,0],[2,3,3,2],[0,1,2,1]],[[1,2,0,0],[0,3,3,0],[2,3,3,1],[1,3,1,1]],[[1,2,0,0],[0,3,3,0],[2,3,3,1],[2,2,1,1]],[[1,2,0,0],[0,3,3,0],[2,4,3,1],[1,2,1,1]],[[1,2,0,0],[0,3,3,0],[2,3,3,0],[1,2,3,1]],[[1,2,0,0],[0,3,3,0],[2,3,3,0],[1,3,2,1]],[[1,2,0,0],[0,3,3,0],[2,3,3,0],[2,2,2,1]],[[1,2,0,0],[0,3,3,0],[2,4,3,0],[1,2,2,1]],[[1,2,0,0],[0,3,3,0],[2,3,2,2],[1,3,2,0]],[[1,2,0,0],[0,3,3,0],[2,3,2,2],[2,2,2,0]],[[1,2,0,0],[0,3,3,0],[2,4,2,2],[1,2,2,0]],[[1,2,0,0],[0,3,3,0],[2,3,2,2],[2,1,2,1]],[[1,2,0,0],[0,3,3,0],[2,4,2,2],[1,1,2,1]],[[1,2,0,0],[0,3,3,0],[3,3,2,2],[1,1,2,1]],[[1,2,0,0],[0,4,3,0],[2,3,2,2],[1,1,2,1]],[[1,2,0,0],[0,3,3,0],[2,3,2,2],[0,2,2,2]],[[1,2,0,0],[0,3,3,0],[2,3,2,2],[0,2,3,1]],[[1,2,0,0],[0,3,3,0],[2,3,2,2],[0,3,2,1]],[[1,2,0,0],[0,3,3,0],[2,4,2,2],[0,2,2,1]],[[1,2,0,0],[0,3,3,0],[3,3,2,2],[0,2,2,1]],[[1,2,0,0],[0,4,3,0],[2,3,2,2],[0,2,2,1]],[[1,2,0,0],[0,3,3,0],[2,3,2,1],[1,2,3,1]],[[1,2,0,0],[0,3,3,0],[2,3,2,1],[1,3,2,1]],[[1,2,0,0],[0,3,3,0],[2,3,2,1],[2,2,2,1]],[[1,2,0,0],[0,3,3,0],[2,4,2,1],[1,2,2,1]],[[1,2,0,0],[0,3,3,0],[2,2,3,2],[1,3,1,1]],[[1,2,0,0],[0,3,3,0],[2,2,3,2],[2,2,1,1]],[[1,2,0,0],[0,3,3,0],[3,2,3,2],[1,2,1,1]],[[1,2,0,0],[0,3,3,0],[2,2,3,2],[0,2,2,2]],[[1,2,0,0],[0,3,3,0],[2,2,3,2],[0,2,3,1]],[[1,2,0,0],[0,3,3,0],[2,2,3,2],[0,3,2,1]],[[1,2,0,0],[0,3,3,0],[2,2,4,2],[0,2,2,1]],[[1,2,0,0],[0,3,3,0],[2,2,2,2],[1,2,2,2]],[[1,1,3,1],[1,3,3,2],[2,2,0,2],[0,1,1,1]],[[1,1,2,2],[1,3,3,2],[2,2,0,2],[0,1,1,1]],[[1,1,2,1],[1,3,3,3],[2,2,0,2],[0,1,1,1]],[[1,1,3,1],[1,3,3,2],[2,2,0,2],[0,1,2,0]],[[1,1,2,2],[1,3,3,2],[2,2,0,2],[0,1,2,0]],[[1,1,2,1],[1,3,3,3],[2,2,0,2],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[2,2,0,2],[0,2,0,1]],[[1,1,2,2],[1,3,3,2],[2,2,0,2],[0,2,0,1]],[[1,1,2,1],[1,3,3,3],[2,2,0,2],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,2,0,2],[0,2,1,0]],[[1,1,2,2],[1,3,3,2],[2,2,0,2],[0,2,1,0]],[[1,1,2,1],[1,3,3,3],[2,2,0,2],[0,2,1,0]],[[1,2,0,0],[0,3,3,0],[2,2,2,2],[1,2,3,1]],[[1,2,0,0],[0,3,3,0],[2,2,2,2],[1,3,2,1]],[[1,2,0,0],[0,3,3,0],[2,2,2,2],[2,2,2,1]],[[1,2,0,0],[0,3,3,0],[3,2,2,2],[1,2,2,1]],[[1,2,0,0],[0,3,3,0],[2,1,3,2],[1,2,2,2]],[[1,2,0,0],[0,3,3,0],[2,1,3,2],[1,2,3,1]],[[1,2,0,0],[0,3,3,0],[2,1,3,2],[1,3,2,1]],[[1,2,0,0],[0,3,3,0],[2,1,3,2],[2,2,2,1]],[[1,2,0,0],[0,3,3,0],[2,1,4,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[2,2,0,2],[1,0,1,1]],[[1,1,2,2],[1,3,3,2],[2,2,0,2],[1,0,1,1]],[[1,1,2,1],[1,3,3,3],[2,2,0,2],[1,0,1,1]],[[1,1,3,1],[1,3,3,2],[2,2,0,2],[1,0,2,0]],[[1,1,2,2],[1,3,3,2],[2,2,0,2],[1,0,2,0]],[[1,1,2,1],[1,3,3,3],[2,2,0,2],[1,0,2,0]],[[1,1,3,1],[1,3,3,2],[2,2,0,2],[1,1,0,1]],[[1,1,2,2],[1,3,3,2],[2,2,0,2],[1,1,0,1]],[[1,1,2,1],[1,3,3,3],[2,2,0,2],[1,1,0,1]],[[1,1,3,1],[1,3,3,2],[2,2,0,2],[1,1,1,0]],[[1,1,2,2],[1,3,3,2],[2,2,0,2],[1,1,1,0]],[[1,1,2,1],[1,3,3,3],[2,2,0,2],[1,1,1,0]],[[1,2,0,0],[0,3,3,0],[3,1,3,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[2,2,0,2],[1,2,0,0]],[[1,1,2,2],[1,3,3,2],[2,2,0,2],[1,2,0,0]],[[1,1,2,1],[1,3,3,3],[2,2,0,2],[1,2,0,0]],[[1,2,0,0],[0,3,3,0],[1,3,3,2],[1,3,1,1]],[[1,2,0,0],[0,3,3,0],[1,3,3,2],[2,2,1,1]],[[1,2,0,0],[0,3,3,0],[1,3,4,2],[1,2,1,1]],[[1,2,0,0],[0,3,3,0],[1,4,3,2],[1,2,1,1]],[[1,2,0,0],[0,4,3,0],[1,3,3,2],[1,2,1,1]],[[1,2,0,0],[0,3,3,0],[1,3,3,2],[1,1,2,2]],[[1,2,0,0],[0,3,3,0],[1,3,3,2],[1,1,3,1]],[[1,2,0,0],[0,3,3,0],[1,3,4,2],[1,1,2,1]],[[1,2,0,0],[0,3,3,0],[1,4,3,2],[1,1,2,1]],[[1,2,0,0],[0,4,3,0],[1,3,3,2],[1,1,2,1]],[[1,2,0,0],[0,3,3,0],[1,3,2,2],[1,2,2,2]],[[1,2,0,0],[0,3,3,0],[1,3,2,2],[1,2,3,1]],[[1,2,0,0],[0,3,3,0],[1,3,2,2],[1,3,2,1]],[[1,2,0,0],[0,3,3,0],[1,3,2,2],[2,2,2,1]],[[1,2,0,0],[0,3,3,0],[1,4,2,2],[1,2,2,1]],[[1,2,0,0],[0,4,3,0],[1,3,2,2],[1,2,2,1]],[[1,2,0,0],[0,3,3,0],[1,2,3,2],[1,2,2,2]],[[1,2,0,0],[0,3,3,0],[1,2,3,2],[1,2,3,1]],[[1,2,0,0],[0,3,3,0],[1,2,3,2],[1,3,2,1]],[[1,2,0,0],[0,3,3,0],[1,2,3,2],[2,2,2,1]],[[1,2,0,0],[0,3,3,0],[1,2,4,2],[1,2,2,1]],[[1,2,0,0],[0,3,3,0],[0,3,3,2],[1,2,2,2]],[[1,2,0,0],[0,3,3,0],[0,3,3,2],[1,2,3,1]],[[1,2,0,0],[0,3,3,0],[0,3,3,2],[1,3,2,1]],[[1,2,0,0],[0,3,3,0],[0,3,4,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[2,2,1,0],[0,2,2,0]],[[1,1,2,2],[1,3,3,2],[2,2,1,0],[0,2,2,0]],[[1,1,2,1],[1,4,3,2],[2,2,1,0],[0,2,2,0]],[[1,1,2,1],[1,3,4,2],[2,2,1,0],[0,2,2,0]],[[1,1,3,1],[1,3,3,2],[2,2,1,0],[1,1,2,0]],[[1,1,2,2],[1,3,3,2],[2,2,1,0],[1,1,2,0]],[[1,1,2,1],[1,4,3,2],[2,2,1,0],[1,1,2,0]],[[1,1,2,1],[1,3,4,2],[2,2,1,0],[1,1,2,0]],[[1,2,0,0],[0,3,2,2],[2,3,3,1],[1,3,1,0]],[[1,2,0,0],[0,3,2,2],[2,3,3,1],[2,2,1,0]],[[1,2,0,0],[0,3,2,2],[2,4,3,1],[1,2,1,0]],[[1,2,0,0],[0,3,2,2],[2,3,3,0],[1,3,1,1]],[[1,2,0,0],[0,3,2,2],[2,3,3,0],[2,2,1,1]],[[1,2,0,0],[0,3,2,2],[2,4,3,0],[1,2,1,1]],[[1,2,0,0],[0,3,2,2],[2,3,2,1],[1,3,2,0]],[[1,2,0,0],[0,3,2,2],[2,3,2,1],[2,2,2,0]],[[1,2,0,0],[0,3,2,2],[2,4,2,1],[1,2,2,0]],[[1,2,0,0],[0,3,2,2],[2,3,2,0],[1,2,3,1]],[[1,2,0,0],[0,3,2,2],[2,3,2,0],[1,3,2,1]],[[1,2,0,0],[0,3,2,2],[2,3,2,0],[2,2,2,1]],[[1,2,0,0],[0,3,2,2],[2,4,2,0],[1,2,2,1]],[[1,2,0,0],[0,3,2,1],[2,3,3,2],[1,3,1,0]],[[1,2,0,0],[0,3,2,1],[2,3,3,2],[2,2,1,0]],[[1,2,0,0],[0,3,2,1],[2,4,3,2],[1,2,1,0]],[[1,2,0,0],[0,3,2,1],[2,3,3,2],[1,3,0,1]],[[1,2,0,0],[0,3,2,1],[2,3,3,2],[2,2,0,1]],[[1,2,0,0],[0,3,2,1],[2,4,3,2],[1,2,0,1]],[[1,2,0,0],[0,3,2,1],[2,3,3,2],[0,2,3,0]],[[1,2,0,0],[0,3,2,1],[2,3,3,2],[0,3,2,0]],[[1,2,0,0],[0,3,2,1],[2,4,3,2],[0,2,2,0]],[[1,2,0,0],[0,3,2,1],[2,3,3,1],[1,3,1,1]],[[1,2,0,0],[0,3,2,1],[2,3,3,1],[2,2,1,1]],[[1,2,0,0],[0,3,2,1],[2,4,3,1],[1,2,1,1]],[[1,2,0,0],[0,3,2,1],[2,3,3,1],[0,2,2,2]],[[1,2,0,0],[0,3,2,1],[2,3,3,1],[0,2,3,1]],[[1,2,0,0],[0,3,2,1],[2,3,3,1],[0,3,2,1]],[[1,2,0,0],[0,3,2,1],[2,4,3,1],[0,2,2,1]],[[1,2,0,0],[0,3,2,1],[2,3,3,0],[1,2,3,1]],[[1,2,0,0],[0,3,2,1],[2,3,3,0],[1,3,2,1]],[[1,2,0,0],[0,3,2,1],[2,3,3,0],[2,2,2,1]],[[1,2,0,0],[0,3,2,1],[2,4,3,0],[1,2,2,1]],[[1,2,0,0],[0,3,2,1],[2,3,2,2],[1,2,3,0]],[[1,2,0,0],[0,3,2,1],[2,3,2,2],[1,3,2,0]],[[1,2,0,0],[0,3,2,1],[2,3,2,2],[2,2,2,0]],[[1,2,0,0],[0,3,2,1],[2,4,2,2],[1,2,2,0]],[[1,2,0,0],[0,3,2,1],[2,3,2,1],[1,2,2,2]],[[1,2,0,0],[0,3,2,1],[2,3,2,1],[1,2,3,1]],[[1,2,0,0],[0,3,2,1],[2,3,2,1],[1,3,2,1]],[[1,2,0,0],[0,3,2,1],[2,3,2,1],[2,2,2,1]],[[1,2,0,0],[0,3,2,1],[2,4,2,1],[1,2,2,1]],[[1,2,0,0],[0,3,2,1],[2,3,1,2],[1,2,2,2]],[[1,2,0,0],[0,3,2,1],[2,3,1,2],[1,2,3,1]],[[1,2,0,0],[0,3,2,1],[2,3,1,2],[1,3,2,1]],[[1,2,0,0],[0,3,2,1],[2,3,1,2],[2,2,2,1]],[[1,2,0,0],[0,3,2,1],[2,4,1,2],[1,2,2,1]],[[1,2,0,0],[0,3,2,1],[1,3,3,2],[1,2,3,0]],[[1,2,0,0],[0,3,2,1],[1,3,3,2],[1,3,2,0]],[[1,2,0,0],[0,3,2,1],[1,3,3,2],[2,2,2,0]],[[1,2,0,0],[0,3,2,1],[1,4,3,2],[1,2,2,0]],[[1,2,0,0],[0,3,2,1],[1,3,3,1],[1,2,2,2]],[[1,2,0,0],[0,3,2,1],[1,3,3,1],[1,2,3,1]],[[1,2,0,0],[0,3,2,1],[1,3,3,1],[1,3,2,1]],[[1,2,0,0],[0,3,2,1],[1,3,3,1],[2,2,2,1]],[[1,2,0,0],[0,3,2,1],[1,4,3,1],[1,2,2,1]],[[1,2,0,0],[0,3,2,0],[2,3,3,2],[1,3,1,1]],[[1,2,0,0],[0,3,2,0],[2,3,3,2],[2,2,1,1]],[[1,2,0,0],[0,3,2,0],[2,4,3,2],[1,2,1,1]],[[1,2,0,0],[0,3,2,0],[2,3,3,2],[0,2,2,2]],[[1,2,0,0],[0,3,2,0],[2,3,3,2],[0,2,3,1]],[[1,2,0,0],[0,3,2,0],[2,3,3,2],[0,3,2,1]],[[1,2,0,0],[0,3,2,0],[2,4,3,2],[0,2,2,1]],[[1,2,0,0],[0,3,2,0],[2,3,2,2],[1,2,2,2]],[[1,2,0,0],[0,3,2,0],[2,3,2,2],[1,2,3,1]],[[1,2,0,0],[0,3,2,0],[2,3,2,2],[1,3,2,1]],[[1,2,0,0],[0,3,2,0],[2,3,2,2],[2,2,2,1]],[[1,2,0,0],[0,3,2,0],[2,4,2,2],[1,2,2,1]],[[1,2,0,0],[0,3,2,0],[1,3,3,2],[1,2,2,2]],[[1,2,0,0],[0,3,2,0],[1,3,3,2],[1,2,3,1]],[[1,2,0,0],[0,3,2,0],[1,3,3,2],[1,3,2,1]],[[1,2,0,0],[0,3,2,0],[1,3,3,2],[2,2,2,1]],[[1,2,0,0],[0,3,2,0],[1,4,3,2],[1,2,2,1]],[[1,1,3,1],[1,3,3,2],[2,2,2,0],[0,1,1,1]],[[1,1,2,2],[1,3,3,2],[2,2,2,0],[0,1,1,1]],[[1,1,2,1],[1,4,3,2],[2,2,2,0],[0,1,1,1]],[[1,1,2,1],[1,3,4,2],[2,2,2,0],[0,1,1,1]],[[1,1,3,1],[1,3,3,2],[2,2,2,0],[0,1,2,0]],[[1,1,2,2],[1,3,3,2],[2,2,2,0],[0,1,2,0]],[[1,1,2,1],[1,4,3,2],[2,2,2,0],[0,1,2,0]],[[1,1,2,1],[1,3,4,2],[2,2,2,0],[0,1,2,0]],[[1,1,3,1],[1,3,3,2],[2,2,2,0],[0,2,0,1]],[[1,1,2,2],[1,3,3,2],[2,2,2,0],[0,2,0,1]],[[1,1,2,1],[1,4,3,2],[2,2,2,0],[0,2,0,1]],[[1,1,2,1],[1,3,4,2],[2,2,2,0],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,2,2,0],[0,2,1,0]],[[1,1,2,2],[1,3,3,2],[2,2,2,0],[0,2,1,0]],[[1,1,2,1],[1,4,3,2],[2,2,2,0],[0,2,1,0]],[[1,1,2,1],[1,3,4,2],[2,2,2,0],[0,2,1,0]],[[1,2,0,0],[0,3,1,2],[2,3,3,2],[1,3,1,0]],[[1,2,0,0],[0,3,1,2],[2,3,3,2],[2,2,1,0]],[[1,1,3,1],[1,3,3,2],[2,2,2,0],[1,0,1,1]],[[1,1,2,2],[1,3,3,2],[2,2,2,0],[1,0,1,1]],[[1,1,2,1],[1,4,3,2],[2,2,2,0],[1,0,1,1]],[[1,1,2,1],[1,3,4,2],[2,2,2,0],[1,0,1,1]],[[1,1,3,1],[1,3,3,2],[2,2,2,0],[1,0,2,0]],[[1,1,2,2],[1,3,3,2],[2,2,2,0],[1,0,2,0]],[[1,1,2,1],[1,4,3,2],[2,2,2,0],[1,0,2,0]],[[1,1,2,1],[1,3,4,2],[2,2,2,0],[1,0,2,0]],[[1,1,3,1],[1,3,3,2],[2,2,2,0],[1,1,0,1]],[[1,1,2,2],[1,3,3,2],[2,2,2,0],[1,1,0,1]],[[1,1,2,1],[1,4,3,2],[2,2,2,0],[1,1,0,1]],[[1,1,2,1],[1,3,4,2],[2,2,2,0],[1,1,0,1]],[[1,1,3,1],[1,3,3,2],[2,2,2,0],[1,1,1,0]],[[1,1,2,2],[1,3,3,2],[2,2,2,0],[1,1,1,0]],[[1,1,2,1],[1,4,3,2],[2,2,2,0],[1,1,1,0]],[[1,1,2,1],[1,3,4,2],[2,2,2,0],[1,1,1,0]],[[1,2,0,0],[0,3,1,2],[2,4,3,2],[1,2,1,0]],[[1,2,0,0],[0,3,1,2],[2,3,3,2],[1,3,0,1]],[[1,2,0,0],[0,3,1,2],[2,3,3,2],[2,2,0,1]],[[1,2,0,0],[0,3,1,2],[2,4,3,2],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,2,2,0],[1,2,0,0]],[[1,1,2,2],[1,3,3,2],[2,2,2,0],[1,2,0,0]],[[1,1,2,1],[1,4,3,2],[2,2,2,0],[1,2,0,0]],[[1,1,2,1],[1,3,4,2],[2,2,2,0],[1,2,0,0]],[[1,2,0,0],[0,3,1,2],[2,3,3,1],[1,3,1,1]],[[1,2,0,0],[0,3,1,2],[2,3,3,1],[2,2,1,1]],[[1,2,0,0],[0,3,1,2],[2,4,3,1],[1,2,1,1]],[[1,2,0,0],[0,3,1,2],[2,3,2,2],[1,2,3,0]],[[1,2,0,0],[0,3,1,2],[2,3,2,2],[1,3,2,0]],[[1,2,0,0],[0,3,1,2],[2,3,2,2],[2,2,2,0]],[[1,2,0,0],[0,3,1,2],[2,4,2,2],[1,2,2,0]],[[1,2,0,0],[0,3,1,2],[2,3,2,1],[1,2,2,2]],[[1,2,0,0],[0,3,1,2],[2,3,2,1],[1,2,3,1]],[[1,2,0,0],[0,3,1,2],[2,3,2,1],[1,3,2,1]],[[1,2,0,0],[0,3,1,2],[2,3,2,1],[2,2,2,1]],[[1,2,0,0],[0,3,1,2],[2,4,2,1],[1,2,2,1]],[[1,2,0,0],[0,3,1,2],[2,3,1,2],[1,2,2,2]],[[1,2,0,0],[0,3,1,2],[2,3,1,2],[1,2,3,1]],[[1,2,0,0],[0,3,1,2],[2,3,1,2],[1,3,2,1]],[[1,2,0,0],[0,3,1,2],[2,3,1,2],[2,2,2,1]],[[1,2,0,0],[0,3,1,2],[2,4,1,2],[1,2,2,1]],[[1,2,0,0],[0,3,1,1],[2,3,3,2],[1,2,3,0]],[[1,2,0,0],[0,3,1,1],[2,3,3,2],[1,3,2,0]],[[1,2,0,0],[0,3,1,1],[2,3,3,2],[2,2,2,0]],[[1,2,0,0],[0,3,1,1],[2,4,3,2],[1,2,2,0]],[[1,2,0,0],[0,3,1,1],[2,3,3,1],[1,2,2,2]],[[1,2,0,0],[0,3,1,1],[2,3,3,1],[1,2,3,1]],[[1,2,0,0],[0,3,1,1],[2,3,3,1],[1,3,2,1]],[[1,2,0,0],[0,3,1,1],[2,3,3,1],[2,2,2,1]],[[1,2,0,0],[0,3,1,1],[2,4,3,1],[1,2,2,1]],[[1,2,0,0],[0,3,1,0],[2,3,3,2],[1,2,2,2]],[[1,2,0,0],[0,3,1,0],[2,3,3,2],[1,2,3,1]],[[1,2,0,0],[0,3,1,0],[2,3,3,2],[1,3,2,1]],[[1,2,0,0],[0,3,1,0],[2,3,3,2],[2,2,2,1]],[[1,2,0,0],[0,3,1,0],[2,4,3,2],[1,2,2,1]],[[1,2,0,0],[0,3,0,2],[2,3,3,2],[1,2,3,0]],[[1,2,0,0],[0,3,0,2],[2,3,3,2],[1,3,2,0]],[[1,2,0,0],[0,3,0,2],[2,3,3,2],[2,2,2,0]],[[1,2,0,0],[0,3,0,2],[2,4,3,2],[1,2,2,0]],[[1,2,0,0],[0,3,0,2],[2,3,3,2],[0,2,2,2]],[[1,2,0,0],[0,3,0,2],[2,3,3,2],[0,2,3,1]],[[1,2,0,0],[0,3,0,2],[2,3,3,2],[0,3,2,1]],[[1,2,0,0],[0,3,0,2],[2,4,3,2],[0,2,2,1]],[[1,2,0,0],[0,3,0,2],[2,3,3,1],[1,2,2,2]],[[1,2,0,0],[0,3,0,2],[2,3,3,1],[1,2,3,1]],[[1,2,0,0],[0,3,0,2],[2,3,3,1],[1,3,2,1]],[[1,2,0,0],[0,3,0,2],[2,3,3,1],[2,2,2,1]],[[1,2,0,0],[0,3,0,2],[2,4,3,1],[1,2,2,1]],[[1,2,0,0],[0,3,0,2],[2,3,2,2],[1,2,2,2]],[[1,2,0,0],[0,3,0,2],[2,3,2,2],[1,2,3,1]],[[1,2,0,0],[0,3,0,2],[2,3,2,2],[1,3,2,1]],[[1,2,0,0],[0,3,0,2],[2,3,2,2],[2,2,2,1]],[[1,2,0,0],[0,3,0,2],[2,4,2,2],[1,2,2,1]],[[1,2,0,0],[0,3,0,2],[1,3,3,2],[1,2,2,2]],[[1,2,0,0],[0,3,0,2],[1,3,3,2],[1,2,3,1]],[[1,2,0,0],[0,3,0,2],[1,3,3,2],[1,3,2,1]],[[1,2,0,0],[0,3,0,2],[1,3,3,2],[2,2,2,1]],[[1,2,0,0],[0,3,0,2],[1,4,3,2],[1,2,2,1]],[[1,2,0,0],[0,3,0,1],[2,3,3,2],[1,2,2,2]],[[1,2,0,0],[0,3,0,1],[2,3,3,2],[1,2,3,1]],[[1,2,0,0],[0,3,0,1],[2,3,3,2],[1,3,2,1]],[[1,2,0,0],[0,3,0,1],[2,3,3,2],[2,2,2,1]],[[1,2,0,0],[0,3,0,1],[2,4,3,2],[1,2,2,1]],[[1,1,2,1],[2,3,3,2],[3,3,2,0],[1,0,0,0]],[[1,1,2,1],[2,4,3,2],[2,3,2,0],[1,0,0,0]],[[1,1,2,1],[3,3,3,2],[2,3,2,0],[1,0,0,0]],[[2,1,2,1],[2,3,3,2],[2,3,2,0],[1,0,0,0]],[[1,1,2,1],[2,3,3,2],[3,3,1,0],[1,0,1,0]],[[1,1,2,1],[2,4,3,2],[2,3,1,0],[1,0,1,0]],[[1,1,2,1],[3,3,3,2],[2,3,1,0],[1,0,1,0]],[[2,1,2,1],[2,3,3,2],[2,3,1,0],[1,0,1,0]],[[1,1,2,1],[2,3,3,2],[3,3,1,0],[1,0,0,1]],[[1,1,2,1],[2,4,3,2],[2,3,1,0],[1,0,0,1]],[[1,1,2,1],[3,3,3,2],[2,3,1,0],[1,0,0,1]],[[2,1,2,1],[2,3,3,2],[2,3,1,0],[1,0,0,1]],[[1,1,2,1],[2,3,3,2],[3,3,0,2],[1,0,0,0]],[[1,1,2,1],[2,4,3,2],[2,3,0,2],[1,0,0,0]],[[1,1,2,1],[3,3,3,2],[2,3,0,2],[1,0,0,0]],[[2,1,2,1],[2,3,3,2],[2,3,0,2],[1,0,0,0]],[[1,1,2,1],[2,3,3,2],[3,3,0,1],[1,0,1,0]],[[1,1,2,1],[2,4,3,2],[2,3,0,1],[1,0,1,0]],[[1,1,2,1],[3,3,3,2],[2,3,0,1],[1,0,1,0]],[[2,1,2,1],[2,3,3,2],[2,3,0,1],[1,0,1,0]],[[1,1,2,1],[2,3,3,2],[3,3,0,1],[1,0,0,1]],[[1,1,2,1],[2,4,3,2],[2,3,0,1],[1,0,0,1]],[[1,1,2,1],[3,3,3,2],[2,3,0,1],[1,0,0,1]],[[2,1,2,1],[2,3,3,2],[2,3,0,1],[1,0,0,1]],[[1,1,2,1],[2,3,3,2],[2,3,0,0],[2,2,0,0]],[[1,1,2,1],[2,3,3,2],[3,3,0,0],[1,2,0,0]],[[1,1,2,1],[2,4,3,2],[2,3,0,0],[1,2,0,0]],[[1,1,2,1],[3,3,3,2],[2,3,0,0],[1,2,0,0]],[[2,1,2,1],[2,3,3,2],[2,3,0,0],[1,2,0,0]],[[1,1,2,1],[2,3,3,2],[2,3,0,0],[2,1,1,0]],[[1,1,2,1],[2,3,3,2],[3,3,0,0],[1,1,1,0]],[[1,1,2,1],[2,4,3,2],[2,3,0,0],[1,1,1,0]],[[1,1,2,1],[3,3,3,2],[2,3,0,0],[1,1,1,0]],[[2,1,2,1],[2,3,3,2],[2,3,0,0],[1,1,1,0]],[[1,1,2,1],[2,3,3,2],[2,3,0,0],[2,1,0,1]],[[1,1,2,1],[2,3,3,2],[3,3,0,0],[1,1,0,1]],[[1,1,2,1],[2,4,3,2],[2,3,0,0],[1,1,0,1]],[[1,1,2,1],[3,3,3,2],[2,3,0,0],[1,1,0,1]],[[2,1,2,1],[2,3,3,2],[2,3,0,0],[1,1,0,1]],[[1,1,3,1],[1,3,3,2],[2,2,3,0],[0,2,0,0]],[[1,1,2,2],[1,3,3,2],[2,2,3,0],[0,2,0,0]],[[1,1,2,1],[1,4,3,2],[2,2,3,0],[0,2,0,0]],[[1,1,2,1],[1,3,4,2],[2,2,3,0],[0,2,0,0]],[[1,1,2,1],[2,3,3,2],[3,3,0,0],[0,2,1,0]],[[1,1,2,1],[2,4,3,2],[2,3,0,0],[0,2,1,0]],[[1,1,2,1],[3,3,3,2],[2,3,0,0],[0,2,1,0]],[[2,1,2,1],[2,3,3,2],[2,3,0,0],[0,2,1,0]],[[1,1,2,1],[2,3,3,2],[3,3,0,0],[0,2,0,1]],[[1,1,2,1],[2,4,3,2],[2,3,0,0],[0,2,0,1]],[[1,1,2,1],[3,3,3,2],[2,3,0,0],[0,2,0,1]],[[2,1,2,1],[2,3,3,2],[2,3,0,0],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,2,3,0],[1,1,0,0]],[[1,1,2,2],[1,3,3,2],[2,2,3,0],[1,1,0,0]],[[1,1,2,1],[1,4,3,2],[2,2,3,0],[1,1,0,0]],[[1,1,2,1],[1,3,4,2],[2,2,3,0],[1,1,0,0]],[[1,1,2,1],[2,3,3,2],[3,2,2,0],[1,1,0,0]],[[1,1,2,1],[2,4,3,2],[2,2,2,0],[1,1,0,0]],[[1,1,2,1],[3,3,3,2],[2,2,2,0],[1,1,0,0]],[[2,1,2,1],[2,3,3,2],[2,2,2,0],[1,1,0,0]],[[1,1,2,1],[2,4,3,2],[2,2,2,0],[0,2,0,0]],[[1,1,2,1],[3,3,3,2],[2,2,2,0],[0,2,0,0]],[[2,1,2,1],[2,3,3,2],[2,2,2,0],[0,2,0,0]],[[1,1,2,1],[2,3,3,2],[2,2,1,0],[2,2,0,0]],[[1,1,2,1],[2,3,3,2],[3,2,1,0],[1,2,0,0]],[[1,1,2,1],[2,4,3,2],[2,2,1,0],[1,2,0,0]],[[1,1,2,1],[3,3,3,2],[2,2,1,0],[1,2,0,0]],[[2,1,2,1],[2,3,3,2],[2,2,1,0],[1,2,0,0]],[[1,1,2,1],[2,3,3,2],[2,2,1,0],[2,1,1,0]],[[1,1,2,1],[2,3,3,2],[3,2,1,0],[1,1,1,0]],[[1,1,2,1],[2,4,3,2],[2,2,1,0],[1,1,1,0]],[[1,1,2,1],[3,3,3,2],[2,2,1,0],[1,1,1,0]],[[2,1,2,1],[2,3,3,2],[2,2,1,0],[1,1,1,0]],[[1,1,2,1],[2,3,3,2],[2,2,1,0],[2,1,0,1]],[[1,1,2,1],[2,3,3,2],[3,2,1,0],[1,1,0,1]],[[1,1,2,1],[2,4,3,2],[2,2,1,0],[1,1,0,1]],[[1,1,2,1],[3,3,3,2],[2,2,1,0],[1,1,0,1]],[[2,1,2,1],[2,3,3,2],[2,2,1,0],[1,1,0,1]],[[1,1,2,1],[2,3,3,2],[3,2,1,0],[1,0,2,0]],[[1,1,2,1],[2,4,3,2],[2,2,1,0],[1,0,2,0]],[[1,1,2,1],[3,3,3,2],[2,2,1,0],[1,0,2,0]],[[2,1,2,1],[2,3,3,2],[2,2,1,0],[1,0,2,0]],[[1,1,2,1],[2,3,3,2],[3,2,1,0],[1,0,1,1]],[[1,1,2,1],[2,4,3,2],[2,2,1,0],[1,0,1,1]],[[1,1,2,1],[3,3,3,2],[2,2,1,0],[1,0,1,1]],[[2,1,2,1],[2,3,3,2],[2,2,1,0],[1,0,1,1]],[[1,1,2,1],[2,3,3,2],[3,2,1,0],[0,2,1,0]],[[1,1,2,1],[2,4,3,2],[2,2,1,0],[0,2,1,0]],[[1,1,2,1],[3,3,3,2],[2,2,1,0],[0,2,1,0]],[[2,1,2,1],[2,3,3,2],[2,2,1,0],[0,2,1,0]],[[1,1,2,1],[2,3,3,2],[3,2,1,0],[0,2,0,1]],[[1,1,2,1],[2,4,3,2],[2,2,1,0],[0,2,0,1]],[[1,1,2,1],[3,3,3,2],[2,2,1,0],[0,2,0,1]],[[2,1,2,1],[2,3,3,2],[2,2,1,0],[0,2,0,1]],[[1,1,2,1],[2,4,3,2],[2,2,1,0],[0,1,2,0]],[[1,1,2,1],[3,3,3,2],[2,2,1,0],[0,1,2,0]],[[2,1,2,1],[2,3,3,2],[2,2,1,0],[0,1,2,0]],[[1,1,2,1],[2,4,3,2],[2,2,1,0],[0,1,1,1]],[[1,1,2,1],[3,3,3,2],[2,2,1,0],[0,1,1,1]],[[2,1,2,1],[2,3,3,2],[2,2,1,0],[0,1,1,1]],[[1,1,2,1],[2,3,3,2],[3,2,0,2],[1,1,0,0]],[[1,1,2,1],[2,4,3,2],[2,2,0,2],[1,1,0,0]],[[1,1,2,1],[3,3,3,2],[2,2,0,2],[1,1,0,0]],[[2,1,2,1],[2,3,3,2],[2,2,0,2],[1,1,0,0]],[[1,1,2,1],[2,4,3,2],[2,2,0,2],[0,2,0,0]],[[1,1,2,1],[3,3,3,2],[2,2,0,2],[0,2,0,0]],[[2,1,2,1],[2,3,3,2],[2,2,0,2],[0,2,0,0]],[[1,1,2,1],[2,3,3,2],[2,2,0,1],[2,2,0,0]],[[1,1,2,1],[2,3,3,2],[3,2,0,1],[1,2,0,0]],[[1,1,2,1],[2,4,3,2],[2,2,0,1],[1,2,0,0]],[[1,1,2,1],[3,3,3,2],[2,2,0,1],[1,2,0,0]],[[2,1,2,1],[2,3,3,2],[2,2,0,1],[1,2,0,0]],[[1,1,2,1],[2,3,3,2],[2,2,0,1],[2,1,1,0]],[[1,1,2,1],[2,3,3,2],[3,2,0,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,2],[2,2,0,1],[1,1,1,0]],[[1,1,2,1],[3,3,3,2],[2,2,0,1],[1,1,1,0]],[[2,1,2,1],[2,3,3,2],[2,2,0,1],[1,1,1,0]],[[1,1,2,1],[2,3,3,2],[2,2,0,1],[2,1,0,1]],[[1,1,2,1],[2,3,3,2],[3,2,0,1],[1,1,0,1]],[[1,1,2,1],[2,4,3,2],[2,2,0,1],[1,1,0,1]],[[1,1,2,1],[3,3,3,2],[2,2,0,1],[1,1,0,1]],[[2,1,2,1],[2,3,3,2],[2,2,0,1],[1,1,0,1]],[[1,1,2,1],[2,3,3,2],[3,2,0,1],[1,0,2,0]],[[1,1,2,1],[2,4,3,2],[2,2,0,1],[1,0,2,0]],[[1,1,2,1],[3,3,3,2],[2,2,0,1],[1,0,2,0]],[[2,1,2,1],[2,3,3,2],[2,2,0,1],[1,0,2,0]],[[1,1,2,1],[2,3,3,2],[3,2,0,1],[1,0,1,1]],[[1,1,2,1],[2,4,3,2],[2,2,0,1],[1,0,1,1]],[[1,1,2,1],[3,3,3,2],[2,2,0,1],[1,0,1,1]],[[2,1,2,1],[2,3,3,2],[2,2,0,1],[1,0,1,1]],[[1,1,2,1],[2,3,3,2],[3,2,0,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,2],[2,2,0,1],[0,2,1,0]],[[1,1,2,1],[3,3,3,2],[2,2,0,1],[0,2,1,0]],[[2,1,2,1],[2,3,3,2],[2,2,0,1],[0,2,1,0]],[[1,1,2,1],[2,3,3,2],[3,2,0,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,2],[2,2,0,1],[0,2,0,1]],[[1,1,2,1],[3,3,3,2],[2,2,0,1],[0,2,0,1]],[[2,1,2,1],[2,3,3,2],[2,2,0,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,2],[2,2,0,1],[0,1,2,0]],[[1,1,2,1],[3,3,3,2],[2,2,0,1],[0,1,2,0]],[[2,1,2,1],[2,3,3,2],[2,2,0,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,2],[2,2,0,1],[0,1,1,1]],[[1,1,2,1],[3,3,3,2],[2,2,0,1],[0,1,1,1]],[[2,1,2,1],[2,3,3,2],[2,2,0,1],[0,1,1,1]],[[1,1,2,1],[2,3,3,2],[2,2,0,0],[2,1,2,0]],[[1,1,2,1],[2,3,3,2],[3,2,0,0],[1,1,2,0]],[[1,1,2,1],[2,4,3,2],[2,2,0,0],[1,1,2,0]],[[1,1,2,1],[3,3,3,2],[2,2,0,0],[1,1,2,0]],[[2,1,2,1],[2,3,3,2],[2,2,0,0],[1,1,2,0]],[[1,1,2,1],[2,3,3,2],[3,2,0,0],[0,2,2,0]],[[1,1,2,1],[2,4,3,2],[2,2,0,0],[0,2,2,0]],[[1,1,2,1],[3,3,3,2],[2,2,0,0],[0,2,2,0]],[[2,1,2,1],[2,3,3,2],[2,2,0,0],[0,2,2,0]],[[1,1,2,1],[2,3,3,2],[2,1,1,0],[2,2,1,0]],[[1,1,2,1],[2,3,3,2],[3,1,1,0],[1,2,1,0]],[[1,1,2,1],[2,4,3,2],[2,1,1,0],[1,2,1,0]],[[1,1,2,1],[3,3,3,2],[2,1,1,0],[1,2,1,0]],[[2,1,2,1],[2,3,3,2],[2,1,1,0],[1,2,1,0]],[[1,1,2,1],[2,3,3,2],[2,1,1,0],[2,2,0,1]],[[1,1,2,1],[2,3,3,2],[3,1,1,0],[1,2,0,1]],[[1,1,2,1],[2,4,3,2],[2,1,1,0],[1,2,0,1]],[[1,1,2,1],[3,3,3,2],[2,1,1,0],[1,2,0,1]],[[2,1,2,1],[2,3,3,2],[2,1,1,0],[1,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,3,0,2],[1,0,0,1]],[[1,1,2,2],[1,3,3,2],[2,3,0,2],[1,0,0,1]],[[1,1,2,1],[1,3,3,3],[2,3,0,2],[1,0,0,1]],[[1,1,3,1],[1,3,3,2],[2,3,0,2],[1,0,1,0]],[[1,1,2,2],[1,3,3,2],[2,3,0,2],[1,0,1,0]],[[1,1,2,1],[1,3,3,3],[2,3,0,2],[1,0,1,0]],[[1,1,2,1],[2,3,3,2],[2,1,0,1],[2,2,1,0]],[[1,1,2,1],[2,3,3,2],[3,1,0,1],[1,2,1,0]],[[1,1,2,1],[2,4,3,2],[2,1,0,1],[1,2,1,0]],[[1,1,2,1],[3,3,3,2],[2,1,0,1],[1,2,1,0]],[[2,1,2,1],[2,3,3,2],[2,1,0,1],[1,2,1,0]],[[1,1,2,1],[2,3,3,2],[2,1,0,1],[2,2,0,1]],[[1,1,2,1],[2,3,3,2],[3,1,0,1],[1,2,0,1]],[[1,1,2,1],[2,4,3,2],[2,1,0,1],[1,2,0,1]],[[1,1,2,1],[3,3,3,2],[2,1,0,1],[1,2,0,1]],[[2,1,2,1],[2,3,3,2],[2,1,0,1],[1,2,0,1]],[[1,1,2,1],[2,3,3,2],[2,1,0,0],[1,3,2,0]],[[1,1,2,1],[2,3,3,2],[2,1,0,0],[2,2,2,0]],[[1,1,2,1],[2,3,3,2],[3,1,0,0],[1,2,2,0]],[[1,1,2,1],[2,4,3,2],[2,1,0,0],[1,2,2,0]],[[1,1,2,1],[3,3,3,2],[2,1,0,0],[1,2,2,0]],[[2,1,2,1],[2,3,3,2],[2,1,0,0],[1,2,2,0]],[[1,1,2,1],[2,4,3,2],[1,3,2,0],[1,1,0,0]],[[1,1,2,1],[3,3,3,2],[1,3,2,0],[1,1,0,0]],[[2,1,2,1],[2,3,3,2],[1,3,2,0],[1,1,0,0]],[[1,1,2,1],[2,4,3,2],[1,3,2,0],[0,2,0,0]],[[1,1,2,1],[3,3,3,2],[1,3,2,0],[0,2,0,0]],[[2,1,2,1],[2,3,3,2],[1,3,2,0],[0,2,0,0]],[[1,1,2,1],[2,4,3,2],[1,3,1,0],[1,2,0,0]],[[1,1,2,1],[3,3,3,2],[1,3,1,0],[1,2,0,0]],[[2,1,2,1],[2,3,3,2],[1,3,1,0],[1,2,0,0]],[[1,1,2,1],[2,4,3,2],[1,3,1,0],[1,1,1,0]],[[1,1,2,1],[3,3,3,2],[1,3,1,0],[1,1,1,0]],[[2,1,2,1],[2,3,3,2],[1,3,1,0],[1,1,1,0]],[[1,1,2,1],[2,4,3,2],[1,3,1,0],[1,1,0,1]],[[1,1,2,1],[3,3,3,2],[1,3,1,0],[1,1,0,1]],[[2,1,2,1],[2,3,3,2],[1,3,1,0],[1,1,0,1]],[[1,1,2,1],[2,4,3,2],[1,3,1,0],[1,0,2,0]],[[1,1,2,1],[3,3,3,2],[1,3,1,0],[1,0,2,0]],[[2,1,2,1],[2,3,3,2],[1,3,1,0],[1,0,2,0]],[[1,1,2,1],[2,4,3,2],[1,3,1,0],[1,0,1,1]],[[1,1,2,1],[3,3,3,2],[1,3,1,0],[1,0,1,1]],[[2,1,2,1],[2,3,3,2],[1,3,1,0],[1,0,1,1]],[[1,1,2,1],[2,4,3,2],[1,3,1,0],[0,2,1,0]],[[1,1,2,1],[3,3,3,2],[1,3,1,0],[0,2,1,0]],[[2,1,2,1],[2,3,3,2],[1,3,1,0],[0,2,1,0]],[[1,1,2,1],[2,4,3,2],[1,3,1,0],[0,2,0,1]],[[1,1,2,1],[3,3,3,2],[1,3,1,0],[0,2,0,1]],[[2,1,2,1],[2,3,3,2],[1,3,1,0],[0,2,0,1]],[[1,1,2,1],[2,4,3,2],[1,3,1,0],[0,1,2,0]],[[1,1,2,1],[3,3,3,2],[1,3,1,0],[0,1,2,0]],[[2,1,2,1],[2,3,3,2],[1,3,1,0],[0,1,2,0]],[[1,1,2,1],[2,4,3,2],[1,3,1,0],[0,1,1,1]],[[1,1,2,1],[3,3,3,2],[1,3,1,0],[0,1,1,1]],[[2,1,2,1],[2,3,3,2],[1,3,1,0],[0,1,1,1]],[[1,1,2,1],[2,4,3,2],[1,3,0,2],[1,1,0,0]],[[1,1,2,1],[3,3,3,2],[1,3,0,2],[1,1,0,0]],[[2,1,2,1],[2,3,3,2],[1,3,0,2],[1,1,0,0]],[[1,1,2,1],[2,4,3,2],[1,3,0,2],[0,2,0,0]],[[1,1,2,1],[3,3,3,2],[1,3,0,2],[0,2,0,0]],[[2,1,2,1],[2,3,3,2],[1,3,0,2],[0,2,0,0]],[[1,1,2,1],[2,4,3,2],[1,3,0,1],[1,2,0,0]],[[1,1,2,1],[3,3,3,2],[1,3,0,1],[1,2,0,0]],[[2,1,2,1],[2,3,3,2],[1,3,0,1],[1,2,0,0]],[[1,1,2,1],[2,4,3,2],[1,3,0,1],[1,1,1,0]],[[1,1,2,1],[3,3,3,2],[1,3,0,1],[1,1,1,0]],[[2,1,2,1],[2,3,3,2],[1,3,0,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,2],[1,3,0,1],[1,1,0,1]],[[1,1,2,1],[3,3,3,2],[1,3,0,1],[1,1,0,1]],[[2,1,2,1],[2,3,3,2],[1,3,0,1],[1,1,0,1]],[[1,1,2,1],[2,4,3,2],[1,3,0,1],[1,0,2,0]],[[1,1,2,1],[3,3,3,2],[1,3,0,1],[1,0,2,0]],[[2,1,2,1],[2,3,3,2],[1,3,0,1],[1,0,2,0]],[[1,1,2,1],[2,4,3,2],[1,3,0,1],[1,0,1,1]],[[1,1,2,1],[3,3,3,2],[1,3,0,1],[1,0,1,1]],[[2,1,2,1],[2,3,3,2],[1,3,0,1],[1,0,1,1]],[[1,1,2,1],[2,4,3,2],[1,3,0,1],[0,2,1,0]],[[1,1,2,1],[3,3,3,2],[1,3,0,1],[0,2,1,0]],[[2,1,2,1],[2,3,3,2],[1,3,0,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,2],[1,3,0,1],[0,2,0,1]],[[1,1,3,1],[1,3,3,2],[2,3,2,0],[1,0,0,1]],[[1,1,2,2],[1,3,3,2],[2,3,2,0],[1,0,0,1]],[[1,1,2,1],[1,4,3,2],[2,3,2,0],[1,0,0,1]],[[1,1,2,1],[1,3,4,2],[2,3,2,0],[1,0,0,1]],[[1,1,3,1],[1,3,3,2],[2,3,2,0],[1,0,1,0]],[[1,1,2,2],[1,3,3,2],[2,3,2,0],[1,0,1,0]],[[1,1,2,1],[1,4,3,2],[2,3,2,0],[1,0,1,0]],[[1,1,2,1],[1,3,4,2],[2,3,2,0],[1,0,1,0]],[[1,1,2,1],[3,3,3,2],[1,3,0,1],[0,2,0,1]],[[2,1,2,1],[2,3,3,2],[1,3,0,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,2],[1,3,0,1],[0,1,2,0]],[[1,1,2,1],[3,3,3,2],[1,3,0,1],[0,1,2,0]],[[2,1,2,1],[2,3,3,2],[1,3,0,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,2],[1,3,0,1],[0,1,1,1]],[[1,1,2,1],[3,3,3,2],[1,3,0,1],[0,1,1,1]],[[2,1,2,1],[2,3,3,2],[1,3,0,1],[0,1,1,1]],[[1,1,2,1],[2,4,3,2],[1,3,0,0],[1,1,2,0]],[[1,1,2,1],[3,3,3,2],[1,3,0,0],[1,1,2,0]],[[2,1,2,1],[2,3,3,2],[1,3,0,0],[1,1,2,0]],[[1,1,2,1],[2,4,3,2],[1,3,0,0],[0,2,2,0]],[[1,1,2,1],[3,3,3,2],[1,3,0,0],[0,2,2,0]],[[2,1,2,1],[2,3,3,2],[1,3,0,0],[0,2,2,0]],[[1,1,2,1],[2,3,4,2],[0,3,3,0],[1,1,0,0]],[[1,1,2,1],[2,4,3,2],[0,3,3,0],[1,1,0,0]],[[1,1,2,2],[2,3,3,2],[0,3,3,0],[1,1,0,0]],[[1,1,3,1],[2,3,3,2],[0,3,3,0],[1,1,0,0]],[[1,1,2,1],[2,3,4,2],[0,3,3,0],[0,2,0,0]],[[1,1,2,1],[2,4,3,2],[0,3,3,0],[0,2,0,0]],[[1,1,2,2],[2,3,3,2],[0,3,3,0],[0,2,0,0]],[[1,1,3,1],[2,3,3,2],[0,3,3,0],[0,2,0,0]],[[1,1,2,1],[2,3,4,2],[0,3,3,0],[0,0,2,0]],[[1,1,2,1],[2,4,3,2],[0,3,3,0],[0,0,2,0]],[[1,1,2,2],[2,3,3,2],[0,3,3,0],[0,0,2,0]],[[1,1,3,1],[2,3,3,2],[0,3,3,0],[0,0,2,0]],[[1,1,2,1],[2,3,4,2],[0,3,3,0],[0,0,1,1]],[[1,1,2,1],[2,4,3,2],[0,3,3,0],[0,0,1,1]],[[1,1,2,2],[2,3,3,2],[0,3,3,0],[0,0,1,1]],[[1,1,3,1],[2,3,3,2],[0,3,3,0],[0,0,1,1]],[[1,1,2,1],[2,3,3,3],[0,3,2,2],[0,0,0,1]],[[1,1,2,2],[2,3,3,2],[0,3,2,2],[0,0,0,1]],[[1,1,3,1],[2,3,3,2],[0,3,2,2],[0,0,0,1]],[[1,1,2,1],[2,3,4,2],[0,3,2,0],[1,1,1,0]],[[1,1,2,1],[2,4,3,2],[0,3,2,0],[1,1,1,0]],[[1,1,2,2],[2,3,3,2],[0,3,2,0],[1,1,1,0]],[[1,1,3,1],[2,3,3,2],[0,3,2,0],[1,1,1,0]],[[1,1,2,1],[2,3,4,2],[0,3,2,0],[1,1,0,1]],[[1,1,2,1],[2,4,3,2],[0,3,2,0],[1,1,0,1]],[[1,1,2,2],[2,3,3,2],[0,3,2,0],[1,1,0,1]],[[1,1,3,1],[2,3,3,2],[0,3,2,0],[1,1,0,1]],[[1,1,2,1],[2,3,4,2],[0,3,2,0],[1,0,2,0]],[[1,1,2,1],[2,4,3,2],[0,3,2,0],[1,0,2,0]],[[1,1,2,2],[2,3,3,2],[0,3,2,0],[1,0,2,0]],[[1,1,3,1],[2,3,3,2],[0,3,2,0],[1,0,2,0]],[[1,1,2,1],[2,3,4,2],[0,3,2,0],[1,0,1,1]],[[1,1,2,1],[2,4,3,2],[0,3,2,0],[1,0,1,1]],[[1,1,2,2],[2,3,3,2],[0,3,2,0],[1,0,1,1]],[[1,1,3,1],[2,3,3,2],[0,3,2,0],[1,0,1,1]],[[1,1,2,1],[2,3,4,2],[0,3,2,0],[0,2,1,0]],[[1,1,2,1],[2,4,3,2],[0,3,2,0],[0,2,1,0]],[[1,1,2,2],[2,3,3,2],[0,3,2,0],[0,2,1,0]],[[1,1,3,1],[2,3,3,2],[0,3,2,0],[0,2,1,0]],[[1,1,2,1],[2,3,4,2],[0,3,2,0],[0,2,0,1]],[[1,1,2,1],[2,4,3,2],[0,3,2,0],[0,2,0,1]],[[1,1,2,2],[2,3,3,2],[0,3,2,0],[0,2,0,1]],[[1,1,3,1],[2,3,3,2],[0,3,2,0],[0,2,0,1]],[[1,1,2,1],[2,3,4,2],[0,3,2,0],[0,1,2,0]],[[1,1,2,1],[2,4,3,2],[0,3,2,0],[0,1,2,0]],[[1,1,2,2],[2,3,3,2],[0,3,2,0],[0,1,2,0]],[[1,1,3,1],[2,3,3,2],[0,3,2,0],[0,1,2,0]],[[1,1,2,1],[2,3,4,2],[0,3,2,0],[0,1,1,1]],[[1,1,2,1],[2,4,3,2],[0,3,2,0],[0,1,1,1]],[[1,1,2,2],[2,3,3,2],[0,3,2,0],[0,1,1,1]],[[1,1,3,1],[2,3,3,2],[0,3,2,0],[0,1,1,1]],[[1,1,2,1],[2,3,3,3],[0,3,1,2],[0,0,2,0]],[[1,1,2,2],[2,3,3,2],[0,3,1,2],[0,0,2,0]],[[1,1,3,1],[2,3,3,2],[0,3,1,2],[0,0,2,0]],[[1,1,2,1],[2,3,3,3],[0,3,1,2],[0,0,1,1]],[[1,1,2,2],[2,3,3,2],[0,3,1,2],[0,0,1,1]],[[1,1,3,1],[2,3,3,2],[0,3,1,2],[0,0,1,1]],[[1,1,2,1],[2,4,3,2],[0,3,1,0],[1,2,1,0]],[[1,1,2,1],[3,3,3,2],[0,3,1,0],[1,2,1,0]],[[2,1,2,1],[2,3,3,2],[0,3,1,0],[1,2,1,0]],[[1,1,2,1],[2,4,3,2],[0,3,1,0],[1,2,0,1]],[[1,1,2,1],[3,3,3,2],[0,3,1,0],[1,2,0,1]],[[2,1,2,1],[2,3,3,2],[0,3,1,0],[1,2,0,1]],[[1,1,2,1],[2,3,4,2],[0,3,1,0],[0,2,2,0]],[[1,1,2,1],[2,4,3,2],[0,3,1,0],[0,2,2,0]],[[1,1,2,2],[2,3,3,2],[0,3,1,0],[0,2,2,0]],[[1,1,3,1],[2,3,3,2],[0,3,1,0],[0,2,2,0]],[[1,1,2,1],[2,3,3,3],[0,3,0,2],[1,1,1,0]],[[1,1,2,2],[2,3,3,2],[0,3,0,2],[1,1,1,0]],[[1,1,3,1],[2,3,3,2],[0,3,0,2],[1,1,1,0]],[[1,1,2,1],[2,3,3,3],[0,3,0,2],[1,1,0,1]],[[1,1,2,2],[2,3,3,2],[0,3,0,2],[1,1,0,1]],[[1,1,3,1],[2,3,3,2],[0,3,0,2],[1,1,0,1]],[[1,1,2,1],[2,3,3,3],[0,3,0,2],[1,0,2,0]],[[1,1,2,2],[2,3,3,2],[0,3,0,2],[1,0,2,0]],[[1,1,3,1],[2,3,3,2],[0,3,0,2],[1,0,2,0]],[[1,1,2,1],[2,3,3,3],[0,3,0,2],[1,0,1,1]],[[1,1,2,2],[2,3,3,2],[0,3,0,2],[1,0,1,1]],[[1,1,3,1],[2,3,3,2],[0,3,0,2],[1,0,1,1]],[[1,1,2,1],[2,3,3,3],[0,3,0,2],[0,2,1,0]],[[1,1,2,2],[2,3,3,2],[0,3,0,2],[0,2,1,0]],[[1,1,3,1],[2,3,3,2],[0,3,0,2],[0,2,1,0]],[[1,1,2,1],[2,3,3,3],[0,3,0,2],[0,2,0,1]],[[1,1,2,2],[2,3,3,2],[0,3,0,2],[0,2,0,1]],[[1,1,3,1],[2,3,3,2],[0,3,0,2],[0,2,0,1]],[[1,1,2,1],[2,3,3,3],[0,3,0,2],[0,1,2,0]],[[1,1,2,2],[2,3,3,2],[0,3,0,2],[0,1,2,0]],[[1,1,3,1],[2,3,3,2],[0,3,0,2],[0,1,2,0]],[[1,1,2,1],[2,3,3,3],[0,3,0,2],[0,1,1,1]],[[1,1,2,2],[2,3,3,2],[0,3,0,2],[0,1,1,1]],[[1,1,3,1],[2,3,3,2],[0,3,0,2],[0,1,1,1]],[[1,1,2,1],[2,4,3,2],[0,3,0,1],[1,2,1,0]],[[1,1,2,1],[3,3,3,2],[0,3,0,1],[1,2,1,0]],[[2,1,2,1],[2,3,3,2],[0,3,0,1],[1,2,1,0]],[[1,1,2,1],[2,4,3,2],[0,3,0,1],[1,2,0,1]],[[1,1,2,1],[3,3,3,2],[0,3,0,1],[1,2,0,1]],[[2,1,2,1],[2,3,3,2],[0,3,0,1],[1,2,0,1]],[[1,1,2,1],[2,4,3,2],[0,3,0,0],[1,2,2,0]],[[1,1,2,1],[3,3,3,2],[0,3,0,0],[1,2,2,0]],[[2,1,2,1],[2,3,3,2],[0,3,0,0],[1,2,2,0]],[[1,1,3,1],[1,3,3,2],[2,3,3,0],[1,0,0,0]],[[1,1,2,2],[1,3,3,2],[2,3,3,0],[1,0,0,0]],[[1,1,2,1],[1,4,3,2],[2,3,3,0],[1,0,0,0]],[[1,1,2,1],[1,3,4,2],[2,3,3,0],[1,0,0,0]],[[1,1,2,1],[2,3,4,2],[0,2,3,0],[1,1,1,0]],[[1,1,2,1],[2,4,3,2],[0,2,3,0],[1,1,1,0]],[[1,1,2,2],[2,3,3,2],[0,2,3,0],[1,1,1,0]],[[1,1,3,1],[2,3,3,2],[0,2,3,0],[1,1,1,0]],[[1,1,2,1],[2,3,4,2],[0,2,3,0],[1,1,0,1]],[[1,1,2,1],[2,4,3,2],[0,2,3,0],[1,1,0,1]],[[1,1,2,2],[2,3,3,2],[0,2,3,0],[1,1,0,1]],[[1,1,3,1],[2,3,3,2],[0,2,3,0],[1,1,0,1]],[[1,1,2,1],[2,3,4,2],[0,2,3,0],[1,0,2,0]],[[1,1,2,1],[2,4,3,2],[0,2,3,0],[1,0,2,0]],[[1,1,2,2],[2,3,3,2],[0,2,3,0],[1,0,2,0]],[[1,1,3,1],[2,3,3,2],[0,2,3,0],[1,0,2,0]],[[1,1,2,1],[2,3,4,2],[0,2,3,0],[1,0,1,1]],[[1,1,2,1],[2,4,3,2],[0,2,3,0],[1,0,1,1]],[[1,1,2,2],[2,3,3,2],[0,2,3,0],[1,0,1,1]],[[1,1,3,1],[2,3,3,2],[0,2,3,0],[1,0,1,1]],[[1,1,2,1],[2,3,4,2],[0,2,3,0],[0,2,1,0]],[[1,1,2,1],[2,4,3,2],[0,2,3,0],[0,2,1,0]],[[1,1,2,2],[2,3,3,2],[0,2,3,0],[0,2,1,0]],[[1,1,3,1],[2,3,3,2],[0,2,3,0],[0,2,1,0]],[[1,1,2,1],[2,3,4,2],[0,2,3,0],[0,2,0,1]],[[1,1,2,1],[2,4,3,2],[0,2,3,0],[0,2,0,1]],[[1,1,2,2],[2,3,3,2],[0,2,3,0],[0,2,0,1]],[[1,1,3,1],[2,3,3,2],[0,2,3,0],[0,2,0,1]],[[1,1,2,1],[2,3,4,2],[0,2,3,0],[0,1,2,0]],[[1,1,2,1],[2,4,3,2],[0,2,3,0],[0,1,2,0]],[[1,1,2,2],[2,3,3,2],[0,2,3,0],[0,1,2,0]],[[1,1,3,1],[2,3,3,2],[0,2,3,0],[0,1,2,0]],[[1,1,2,1],[2,3,4,2],[0,2,3,0],[0,1,1,1]],[[1,1,2,1],[2,4,3,2],[0,2,3,0],[0,1,1,1]],[[1,1,2,2],[2,3,3,2],[0,2,3,0],[0,1,1,1]],[[1,1,3,1],[2,3,3,2],[0,2,3,0],[0,1,1,1]],[[1,1,2,1],[2,3,4,2],[0,2,3,0],[0,0,2,1]],[[1,1,2,2],[2,3,3,2],[0,2,3,0],[0,0,2,1]],[[1,1,3,1],[2,3,3,2],[0,2,3,0],[0,0,2,1]],[[1,1,2,1],[2,3,3,3],[0,2,2,2],[1,0,0,1]],[[1,1,2,2],[2,3,3,2],[0,2,2,2],[1,0,0,1]],[[1,1,3,1],[2,3,3,2],[0,2,2,2],[1,0,0,1]],[[1,1,2,1],[2,3,3,3],[0,2,2,2],[0,1,0,1]],[[1,1,2,2],[2,3,3,2],[0,2,2,2],[0,1,0,1]],[[1,1,3,1],[2,3,3,2],[0,2,2,2],[0,1,0,1]],[[1,1,2,1],[2,3,3,3],[0,2,1,2],[1,1,1,0]],[[1,1,2,2],[2,3,3,2],[0,2,1,2],[1,1,1,0]],[[1,1,3,1],[2,3,3,2],[0,2,1,2],[1,1,1,0]],[[1,1,2,1],[2,3,3,3],[0,2,1,2],[1,1,0,1]],[[1,1,2,2],[2,3,3,2],[0,2,1,2],[1,1,0,1]],[[1,1,3,1],[2,3,3,2],[0,2,1,2],[1,1,0,1]],[[1,1,2,1],[2,3,3,3],[0,2,1,2],[1,0,2,0]],[[1,1,2,2],[2,3,3,2],[0,2,1,2],[1,0,2,0]],[[1,1,3,1],[2,3,3,2],[0,2,1,2],[1,0,2,0]],[[1,1,2,1],[2,3,3,3],[0,2,1,2],[1,0,1,1]],[[1,1,2,2],[2,3,3,2],[0,2,1,2],[1,0,1,1]],[[1,1,3,1],[2,3,3,2],[0,2,1,2],[1,0,1,1]],[[1,1,2,1],[2,3,3,3],[0,2,1,2],[0,2,1,0]],[[1,1,2,2],[2,3,3,2],[0,2,1,2],[0,2,1,0]],[[1,1,3,1],[2,3,3,2],[0,2,1,2],[0,2,1,0]],[[1,1,2,1],[2,3,3,3],[0,2,1,2],[0,2,0,1]],[[1,1,2,2],[2,3,3,2],[0,2,1,2],[0,2,0,1]],[[1,1,3,1],[2,3,3,2],[0,2,1,2],[0,2,0,1]],[[1,1,2,1],[2,3,3,3],[0,2,1,2],[0,1,2,0]],[[1,1,2,2],[2,3,3,2],[0,2,1,2],[0,1,2,0]],[[1,1,3,1],[2,3,3,2],[0,2,1,2],[0,1,2,0]],[[1,1,2,1],[2,3,3,3],[0,2,1,2],[0,1,1,1]],[[1,1,2,2],[2,3,3,2],[0,2,1,2],[0,1,1,1]],[[1,1,3,1],[2,3,3,2],[0,2,1,2],[0,1,1,1]],[[1,1,2,1],[2,3,3,3],[0,2,1,2],[0,0,2,1]],[[1,1,2,2],[2,3,3,2],[0,2,1,2],[0,0,2,1]],[[1,1,3,1],[2,3,3,2],[0,2,1,2],[0,0,2,1]],[[1,1,2,1],[2,3,3,3],[0,2,0,2],[1,0,2,1]],[[1,1,2,2],[2,3,3,2],[0,2,0,2],[1,0,2,1]],[[1,1,3,1],[2,3,3,2],[0,2,0,2],[1,0,2,1]],[[1,1,2,1],[2,3,3,3],[0,2,0,2],[0,1,2,1]],[[1,1,2,2],[2,3,3,2],[0,2,0,2],[0,1,2,1]],[[1,1,3,1],[2,3,3,2],[0,2,0,2],[0,1,2,1]],[[1,1,2,1],[2,3,4,2],[0,1,3,0],[0,2,2,0]],[[1,1,2,1],[2,4,3,2],[0,1,3,0],[0,2,2,0]],[[1,1,2,2],[2,3,3,2],[0,1,3,0],[0,2,2,0]],[[1,1,3,1],[2,3,3,2],[0,1,3,0],[0,2,2,0]],[[1,1,2,1],[2,3,4,2],[0,1,3,0],[0,2,1,1]],[[1,1,2,2],[2,3,3,2],[0,1,3,0],[0,2,1,1]],[[1,1,3,1],[2,3,3,2],[0,1,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,3,3],[0,1,1,2],[0,2,2,0]],[[1,1,2,2],[2,3,3,2],[0,1,1,2],[0,2,2,0]],[[1,1,3,1],[2,3,3,2],[0,1,1,2],[0,2,2,0]],[[1,1,2,1],[2,3,3,3],[0,1,1,2],[0,2,1,1]],[[1,1,2,2],[2,3,3,2],[0,1,1,2],[0,2,1,1]],[[1,1,3,1],[2,3,3,2],[0,1,1,2],[0,2,1,1]],[[1,1,2,1],[2,3,3,3],[0,1,0,2],[0,2,2,1]],[[1,1,2,2],[2,3,3,2],[0,1,0,2],[0,2,2,1]],[[1,1,3,1],[2,3,3,2],[0,1,0,2],[0,2,2,1]],[[1,1,2,1],[2,3,3,1],[3,3,2,1],[1,0,0,0]],[[1,1,2,1],[2,4,3,1],[2,3,2,1],[1,0,0,0]],[[1,1,2,1],[3,3,3,1],[2,3,2,1],[1,0,0,0]],[[2,1,2,1],[2,3,3,1],[2,3,2,1],[1,0,0,0]],[[1,1,2,1],[2,3,3,1],[3,3,1,1],[1,0,1,0]],[[1,1,2,1],[2,4,3,1],[2,3,1,1],[1,0,1,0]],[[1,1,2,1],[3,3,3,1],[2,3,1,1],[1,0,1,0]],[[2,1,2,1],[2,3,3,1],[2,3,1,1],[1,0,1,0]],[[1,1,2,1],[2,3,3,1],[3,3,1,1],[1,0,0,1]],[[1,1,2,1],[2,4,3,1],[2,3,1,1],[1,0,0,1]],[[1,1,2,1],[3,3,3,1],[2,3,1,1],[1,0,0,1]],[[2,1,2,1],[2,3,3,1],[2,3,1,1],[1,0,0,1]],[[1,1,2,1],[2,3,3,1],[3,3,1,0],[1,0,1,1]],[[1,1,2,1],[2,4,3,1],[2,3,1,0],[1,0,1,1]],[[1,1,2,1],[3,3,3,1],[2,3,1,0],[1,0,1,1]],[[2,1,2,1],[2,3,3,1],[2,3,1,0],[1,0,1,1]],[[1,1,2,1],[2,3,3,1],[3,3,0,2],[1,0,1,0]],[[1,1,2,1],[2,4,3,1],[2,3,0,2],[1,0,1,0]],[[1,1,2,1],[3,3,3,1],[2,3,0,2],[1,0,1,0]],[[2,1,2,1],[2,3,3,1],[2,3,0,2],[1,0,1,0]],[[1,1,2,1],[2,3,3,1],[3,3,0,2],[1,0,0,1]],[[1,1,2,1],[2,4,3,1],[2,3,0,2],[1,0,0,1]],[[1,1,2,1],[3,3,3,1],[2,3,0,2],[1,0,0,1]],[[2,1,2,1],[2,3,3,1],[2,3,0,2],[1,0,0,1]],[[1,1,2,1],[2,3,3,1],[2,3,0,1],[2,2,0,0]],[[1,1,2,1],[2,3,3,1],[3,3,0,1],[1,2,0,0]],[[1,1,2,1],[2,4,3,1],[2,3,0,1],[1,2,0,0]],[[1,1,2,1],[3,3,3,1],[2,3,0,1],[1,2,0,0]],[[2,1,2,1],[2,3,3,1],[2,3,0,1],[1,2,0,0]],[[1,1,2,1],[2,3,3,1],[2,3,0,1],[2,1,1,0]],[[1,1,2,1],[2,3,3,1],[3,3,0,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,1],[2,3,0,1],[1,1,1,0]],[[1,1,2,1],[3,3,3,1],[2,3,0,1],[1,1,1,0]],[[2,1,2,1],[2,3,3,1],[2,3,0,1],[1,1,1,0]],[[1,1,2,1],[2,3,3,1],[2,3,0,1],[2,1,0,1]],[[1,1,2,1],[2,3,3,1],[3,3,0,1],[1,1,0,1]],[[1,1,2,1],[2,4,3,1],[2,3,0,1],[1,1,0,1]],[[1,1,2,1],[3,3,3,1],[2,3,0,1],[1,1,0,1]],[[2,1,2,1],[2,3,3,1],[2,3,0,1],[1,1,0,1]],[[1,1,2,1],[2,3,3,1],[3,3,0,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,1],[2,3,0,1],[0,2,1,0]],[[1,1,2,1],[3,3,3,1],[2,3,0,1],[0,2,1,0]],[[2,1,2,1],[2,3,3,1],[2,3,0,1],[0,2,1,0]],[[1,1,2,1],[2,3,3,1],[3,3,0,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,1],[2,3,0,1],[0,2,0,1]],[[1,1,2,1],[3,3,3,1],[2,3,0,1],[0,2,0,1]],[[2,1,2,1],[2,3,3,1],[2,3,0,1],[0,2,0,1]],[[1,1,2,1],[2,3,3,1],[2,3,0,0],[2,2,0,1]],[[1,1,2,1],[2,3,3,1],[3,3,0,0],[1,2,0,1]],[[1,1,2,1],[2,4,3,1],[2,3,0,0],[1,2,0,1]],[[1,1,2,1],[3,3,3,1],[2,3,0,0],[1,2,0,1]],[[2,1,2,1],[2,3,3,1],[2,3,0,0],[1,2,0,1]],[[1,1,2,1],[2,3,3,1],[2,3,0,0],[2,1,1,1]],[[1,1,2,1],[2,3,3,1],[3,3,0,0],[1,1,1,1]],[[1,1,2,1],[2,4,3,1],[2,3,0,0],[1,1,1,1]],[[1,1,2,1],[3,3,3,1],[2,3,0,0],[1,1,1,1]],[[2,1,2,1],[2,3,3,1],[2,3,0,0],[1,1,1,1]],[[1,1,2,1],[2,0,0,2],[1,2,3,3],[1,2,2,1]],[[1,1,2,1],[2,0,0,2],[1,2,3,2],[2,2,2,1]],[[1,1,2,1],[2,0,0,2],[1,2,3,2],[1,3,2,1]],[[1,1,2,1],[2,0,0,2],[1,2,3,2],[1,2,3,1]],[[1,1,2,1],[2,0,0,2],[1,2,3,2],[1,2,2,2]],[[1,1,2,1],[2,0,0,2],[1,3,3,3],[1,1,2,1]],[[1,1,2,1],[2,0,0,2],[1,3,3,2],[1,1,3,1]],[[1,1,2,1],[2,0,0,2],[1,3,3,2],[1,1,2,2]],[[1,1,2,1],[2,0,0,2],[3,1,3,2],[1,2,2,1]],[[1,1,2,1],[2,0,0,2],[2,1,3,3],[1,2,2,1]],[[1,1,2,1],[2,0,0,2],[2,1,3,2],[2,2,2,1]],[[1,1,2,1],[2,0,0,2],[2,1,3,2],[1,3,2,1]],[[1,1,2,1],[2,0,0,2],[2,1,3,2],[1,2,3,1]],[[1,1,2,1],[2,0,0,2],[2,1,3,2],[1,2,2,2]],[[1,1,2,1],[2,0,0,2],[2,2,3,3],[0,2,2,1]],[[1,1,2,1],[2,0,0,2],[2,2,3,2],[0,3,2,1]],[[1,1,2,1],[2,0,0,2],[2,2,3,2],[0,2,3,1]],[[1,1,2,1],[2,0,0,2],[2,2,3,2],[0,2,2,2]],[[1,1,2,1],[2,0,0,2],[3,3,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,0,2],[2,3,1,3],[1,2,2,1]],[[1,1,2,1],[2,0,0,2],[2,3,1,2],[2,2,2,1]],[[1,1,2,1],[2,0,0,2],[2,3,1,2],[1,3,2,1]],[[1,1,2,1],[2,0,0,2],[2,3,1,2],[1,2,3,1]],[[1,1,2,1],[2,0,0,2],[2,3,1,2],[1,2,2,2]],[[1,1,2,1],[2,0,0,2],[3,3,2,1],[1,2,2,1]],[[1,1,2,1],[2,0,0,2],[2,3,2,1],[2,2,2,1]],[[1,1,2,1],[2,0,0,2],[2,3,2,1],[1,3,2,1]],[[1,1,2,1],[2,0,0,2],[2,3,2,1],[1,2,3,1]],[[1,1,2,1],[2,0,0,2],[2,3,2,1],[1,2,2,2]],[[1,1,2,1],[2,0,0,2],[3,3,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,0,2],[2,3,2,2],[2,2,2,0]],[[1,1,2,1],[2,0,0,2],[2,3,2,2],[1,3,2,0]],[[1,1,2,1],[2,0,0,2],[2,3,2,2],[1,2,3,0]],[[1,1,2,1],[2,0,0,2],[3,3,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,0,2],[2,3,3,1],[2,2,1,1]],[[1,1,2,1],[2,0,0,2],[2,3,3,1],[1,3,1,1]],[[1,1,2,1],[2,0,0,2],[2,3,3,3],[0,1,2,1]],[[1,1,2,1],[2,0,0,2],[2,3,3,2],[0,1,3,1]],[[1,1,2,1],[2,0,0,2],[2,3,3,2],[0,1,2,2]],[[1,1,2,1],[2,0,0,2],[2,3,3,3],[1,0,2,1]],[[1,1,2,1],[2,0,0,2],[2,3,3,2],[1,0,3,1]],[[1,1,2,1],[2,0,0,2],[2,3,3,2],[1,0,2,2]],[[1,1,2,1],[2,0,0,2],[3,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,0,0,2],[2,3,3,2],[2,2,0,1]],[[1,1,2,1],[2,0,0,2],[2,3,3,2],[1,3,0,1]],[[1,1,2,1],[2,0,0,2],[3,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,0,0,2],[2,3,3,2],[2,2,1,0]],[[1,1,2,1],[2,0,0,2],[2,3,3,2],[1,3,1,0]],[[1,1,2,1],[2,3,3,1],[3,3,0,0],[0,2,1,1]],[[1,1,2,1],[2,4,3,1],[2,3,0,0],[0,2,1,1]],[[1,1,2,1],[3,3,3,1],[2,3,0,0],[0,2,1,1]],[[2,1,2,1],[2,3,3,1],[2,3,0,0],[0,2,1,1]],[[1,1,2,2],[2,0,1,2],[1,1,3,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,3],[1,1,3,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,1,3,3],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,1,3,2],[1,2,3,1]],[[1,1,2,1],[2,0,1,2],[1,1,3,2],[1,2,2,2]],[[1,1,3,1],[2,0,1,2],[1,2,2,2],[1,2,2,1]],[[1,1,2,2],[2,0,1,2],[1,2,2,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,3],[1,2,2,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[2,0,1,2],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[2,0,1,2],[1,2,2,2],[1,2,2,2]],[[1,1,2,1],[2,0,1,2],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[2,0,1,2],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[2,0,1,2],[1,2,3,1],[1,2,2,2]],[[1,1,3,1],[2,0,1,2],[1,2,3,2],[1,2,1,1]],[[1,1,2,2],[2,0,1,2],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[2,0,1,3],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[2,0,1,2],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[2,0,1,2],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[2,0,1,2],[1,2,3,2],[1,2,1,2]],[[1,1,3,1],[2,0,1,2],[1,2,3,2],[1,2,2,0]],[[1,1,2,2],[2,0,1,2],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[2,0,1,3],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[2,0,1,2],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[2,0,1,2],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[2,0,1,2],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[2,0,1,2],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[2,0,1,2],[1,2,3,2],[1,2,3,0]],[[1,1,3,1],[2,0,1,2],[1,3,1,2],[1,2,2,1]],[[1,1,2,2],[2,0,1,2],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,3],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,1,3],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[2,0,1,2],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[2,0,1,2],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[2,0,1,2],[1,3,2,1],[1,2,2,2]],[[1,1,3,1],[2,0,1,2],[1,3,2,2],[1,1,2,1]],[[1,1,2,2],[2,0,1,2],[1,3,2,2],[1,1,2,1]],[[1,1,2,1],[2,0,1,3],[1,3,2,2],[1,1,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[2,0,1,2],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[2,0,1,2],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,1,2],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[2,0,1,2],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[2,0,1,2],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[2,0,1,2],[1,4,3,1],[1,1,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,1],[1,1,2,2]],[[1,1,2,1],[2,0,1,2],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,1,2],[1,3,4,1],[1,2,1,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,1],[1,3,1,1]],[[1,1,2,2],[2,0,1,2],[1,3,3,2],[1,0,2,1]],[[1,1,2,1],[2,0,1,3],[1,3,3,2],[1,0,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,4,2],[1,0,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,3],[1,0,2,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,2],[1,0,2,2]],[[1,1,3,1],[2,0,1,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,2],[2,0,1,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[2,0,1,3],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[2,0,1,2],[1,4,3,2],[1,1,1,1]],[[1,1,2,1],[2,0,1,2],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,2],[1,1,1,2]],[[1,1,3,1],[2,0,1,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,2],[2,0,1,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[2,0,1,3],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[2,0,1,2],[1,4,3,2],[1,1,2,0]],[[1,1,2,1],[2,0,1,2],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[2,0,1,2],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[2,0,1,2],[1,3,3,2],[1,1,3,0]],[[1,1,3,1],[2,0,1,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,2],[2,0,1,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,0,1,3],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,0,1,2],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[2,0,1,2],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[2,0,1,2],[1,3,3,2],[1,2,0,2]],[[1,1,3,1],[2,0,1,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,2],[2,0,1,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,0,1,3],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,0,1,2],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[2,0,1,2],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[2,0,1,2],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[2,0,1,2],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[2,0,1,2],[1,3,3,2],[1,3,1,0]],[[1,1,3,1],[2,0,1,2],[2,0,3,2],[1,2,2,1]],[[1,1,2,2],[2,0,1,2],[2,0,3,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,3],[2,0,3,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,0,3,3],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,0,3,2],[1,2,3,1]],[[1,1,2,1],[2,0,1,2],[2,0,3,2],[1,2,2,2]],[[2,1,2,1],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,3,1],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,2],[2,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[3,0,1,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,3],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[3,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[2,0,1,2],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[2,0,1,2],[2,1,2,2],[1,2,2,2]],[[2,1,2,1],[2,0,1,2],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[3,0,1,2],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[3,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[2,0,1,2],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[2,0,1,2],[2,1,3,1],[1,2,2,2]],[[1,1,2,2],[2,0,1,2],[2,1,3,2],[0,2,2,1]],[[1,1,2,1],[2,0,1,3],[2,1,3,2],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,1,3,3],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,1,3,2],[0,2,3,1]],[[1,1,2,1],[2,0,1,2],[2,1,3,2],[0,2,2,2]],[[1,1,3,1],[2,0,1,2],[2,1,3,2],[1,2,1,1]],[[1,1,2,2],[2,0,1,2],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[2,0,1,3],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[2,0,1,2],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[2,0,1,2],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[2,0,1,2],[2,1,3,2],[1,2,1,2]],[[2,1,2,1],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,3,1],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,2],[2,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[3,0,1,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,0,1,3],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,0,1,2],[3,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,0,1,2],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[2,0,1,2],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[2,0,1,2],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[2,0,1,2],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[2,0,1,2],[2,1,3,2],[1,2,3,0]],[[2,1,2,1],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,3,1],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,2],[2,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[3,0,1,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,3],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,1,3],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[2,0,1,2],[2,2,1,2],[1,2,2,2]],[[2,1,2,1],[2,0,1,2],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[3,0,1,2],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[2,0,1,2],[2,2,2,1],[1,2,2,2]],[[1,1,3,1],[2,0,1,2],[2,2,2,2],[0,2,2,1]],[[1,1,2,2],[2,0,1,2],[2,2,2,2],[0,2,2,1]],[[1,1,2,1],[2,0,1,3],[2,2,2,2],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[2,0,1,2],[2,2,2,2],[0,2,2,2]],[[2,1,2,1],[2,0,1,2],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[3,0,1,2],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,1,2],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,1,2],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[2,0,1,2],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[2,0,1,2],[2,2,2,2],[1,2,3,0]],[[1,1,2,1],[2,0,1,2],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[2,0,1,2],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[2,0,1,2],[2,2,3,1],[0,2,2,2]],[[2,1,2,1],[2,0,1,2],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[3,0,1,2],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,1,2],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,1,2],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[2,0,1,2],[2,2,3,1],[1,3,1,1]],[[1,1,3,1],[2,0,1,2],[2,2,3,2],[0,2,1,1]],[[1,1,2,2],[2,0,1,2],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[2,0,1,3],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[2,0,1,2],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[2,0,1,2],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[2,0,1,2],[2,2,3,2],[0,2,1,2]],[[1,1,3,1],[2,0,1,2],[2,2,3,2],[0,2,2,0]],[[1,1,2,2],[2,0,1,2],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[2,0,1,3],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[2,0,1,2],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[2,0,1,2],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[2,0,1,2],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[2,0,1,2],[2,2,3,2],[0,2,3,0]],[[2,1,2,1],[2,0,1,2],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[3,0,1,2],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,0,1,2],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,0,1,2],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[2,0,1,2],[2,2,3,2],[1,3,0,1]],[[2,1,2,1],[2,0,1,2],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[3,0,1,2],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,0,1,2],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,0,1,2],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[2,0,1,2],[2,2,3,2],[1,3,1,0]],[[2,1,2,1],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,3,1],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,2],[2,0,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[3,0,1,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,0,1,3],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,1,3],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[2,0,1,2],[2,3,1,2],[0,2,2,2]],[[2,1,2,1],[2,0,1,2],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[3,0,1,2],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,0,1,2],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,0,1,2],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,1,2],[2,1,2,1]],[[2,1,2,1],[2,0,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[3,0,1,2],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[2,0,1,2],[2,3,2,1],[0,2,2,2]],[[2,1,2,1],[2,0,1,2],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[3,0,1,2],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,0,1,2],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,0,1,2],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,2,1],[2,1,2,1]],[[1,1,3,1],[2,0,1,2],[2,3,2,2],[0,1,2,1]],[[1,1,2,2],[2,0,1,2],[2,3,2,2],[0,1,2,1]],[[1,1,2,1],[2,0,1,3],[2,3,2,2],[0,1,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[2,0,1,2],[2,3,2,2],[0,1,2,2]],[[2,1,2,1],[2,0,1,2],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[3,0,1,2],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,0,1,2],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,0,1,2],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[2,0,1,2],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[2,0,1,2],[2,3,2,2],[0,2,3,0]],[[1,1,3,1],[2,0,1,2],[2,3,2,2],[1,0,2,1]],[[1,1,2,2],[2,0,1,2],[2,3,2,2],[1,0,2,1]],[[1,1,2,1],[2,0,1,3],[2,3,2,2],[1,0,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[2,0,1,2],[2,3,2,2],[1,0,2,2]],[[2,1,2,1],[2,0,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[3,0,1,2],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,0,1,2],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,0,1,2],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[2,0,1,2],[2,3,2,2],[2,1,2,0]],[[2,1,2,1],[2,0,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[3,0,1,2],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,0,1,2],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,0,1,2],[2,4,3,1],[0,1,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,1],[0,1,2,2]],[[2,1,2,1],[2,0,1,2],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[3,0,1,2],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,0,1,2],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,0,1,2],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[2,0,1,2],[2,3,4,1],[0,2,1,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,1],[0,3,1,1]],[[2,1,2,1],[2,0,1,2],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[3,0,1,2],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,0,1,2],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,0,1,2],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,1],[2,0,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,1],[1,0,2,2]],[[2,1,2,1],[2,0,1,2],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[3,0,1,2],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,0,1,2],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,0,1,2],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[2,0,1,2],[2,3,4,1],[1,1,1,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,1],[2,1,1,1]],[[1,1,3,1],[2,0,1,2],[2,3,3,2],[0,0,2,1]],[[1,1,2,2],[2,0,1,2],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[2,0,1,3],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[0,0,2,2]],[[2,1,2,1],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,3,1],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,2],[2,0,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[3,0,1,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,0,1,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,0,1,2],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,0,1,2],[2,4,3,2],[0,1,1,1]],[[1,1,2,1],[2,0,1,2],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[0,1,1,2]],[[2,1,2,1],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,3,1],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,2],[2,0,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[3,0,1,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,0,1,3],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,0,1,2],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,0,1,2],[2,4,3,2],[0,1,2,0]],[[1,1,2,1],[2,0,1,2],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[2,0,1,2],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[0,1,3,0]],[[2,1,2,1],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,3,1],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,2],[2,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[3,0,1,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,0,1,3],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,0,1,2],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,0,1,2],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[2,0,1,2],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[0,3,0,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[0,2,0,2]],[[2,1,2,1],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,3,1],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,2],[2,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[3,0,1,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,0,1,3],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,0,1,2],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,0,1,2],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[2,0,1,2],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[2,0,1,2],[2,3,3,3],[0,2,1,0]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[0,3,1,0]],[[2,1,2,1],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,3,1],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,2],[2,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[3,0,1,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,0,1,3],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,0,1,2],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,0,1,2],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[2,0,1,2],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[2,0,1,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[1,0,1,2]],[[2,1,2,1],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,3,1],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,2],[2,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[3,0,1,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,0,1,3],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,0,1,2],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,0,1,2],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[2,0,1,2],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[2,0,1,2],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[1,0,3,0]],[[2,1,2,1],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,3,1],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,2],[2,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[3,0,1,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,0,1,3],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,0,1,2],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,0,1,2],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[2,0,1,2],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[1,1,0,2]],[[2,1,2,1],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,3,1],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,2],[2,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[3,0,1,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,0,1,3],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,0,1,2],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,0,1,2],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[2,0,1,2],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[2,0,1,2],[2,3,3,3],[1,1,1,0]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[2,1,1,0]],[[2,1,2,1],[2,0,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[3,0,1,2],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,0,1,2],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,0,1,2],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[2,0,1,2],[2,3,3,2],[2,2,0,0]],[[1,1,2,1],[2,3,3,1],[3,2,2,1],[1,1,0,0]],[[1,1,2,1],[2,4,3,1],[2,2,2,1],[1,1,0,0]],[[1,1,2,1],[3,3,3,1],[2,2,2,1],[1,1,0,0]],[[2,1,2,1],[2,3,3,1],[2,2,2,1],[1,1,0,0]],[[1,1,2,1],[2,4,3,1],[2,2,2,1],[0,2,0,0]],[[1,1,2,1],[3,3,3,1],[2,2,2,1],[0,2,0,0]],[[2,1,2,1],[2,3,3,1],[2,2,2,1],[0,2,0,0]],[[1,1,3,1],[2,0,2,2],[1,2,1,2],[1,2,2,1]],[[1,1,2,2],[2,0,2,2],[1,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,2,3],[1,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,2,2],[1,2,1,3],[1,2,2,1]],[[1,1,2,1],[2,0,2,2],[1,2,1,2],[2,2,2,1]],[[1,1,2,1],[2,0,2,2],[1,2,1,2],[1,3,2,1]],[[1,1,2,1],[2,0,2,2],[1,2,1,2],[1,2,3,1]],[[1,1,2,1],[2,0,2,2],[1,2,1,2],[1,2,2,2]],[[1,1,3,1],[2,0,2,2],[1,2,2,2],[1,2,1,1]],[[1,1,2,2],[2,0,2,2],[1,2,2,2],[1,2,1,1]],[[1,1,2,1],[2,0,2,3],[1,2,2,2],[1,2,1,1]],[[1,1,2,1],[2,0,2,2],[1,2,2,3],[1,2,1,1]],[[1,1,2,1],[2,0,2,2],[1,2,2,2],[1,2,1,2]],[[1,1,3,1],[2,0,2,2],[1,2,2,2],[1,2,2,0]],[[1,1,2,2],[2,0,2,2],[1,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,2,3],[1,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,2,2],[1,2,2,3],[1,2,2,0]],[[1,1,3,1],[2,0,2,2],[1,2,3,0],[1,2,2,1]],[[1,1,2,2],[2,0,2,2],[1,2,3,0],[1,2,2,1]],[[1,1,2,1],[2,0,2,3],[1,2,3,0],[1,2,2,1]],[[1,1,3,1],[2,0,2,2],[1,2,3,1],[1,2,1,1]],[[1,1,2,2],[2,0,2,2],[1,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,2,3],[1,2,3,1],[1,2,1,1]],[[1,1,3,1],[2,0,2,2],[1,2,3,1],[1,2,2,0]],[[1,1,2,2],[2,0,2,2],[1,2,3,1],[1,2,2,0]],[[1,1,2,1],[2,0,2,3],[1,2,3,1],[1,2,2,0]],[[1,1,3,1],[2,0,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,2],[2,0,2,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,0,2,3],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,0,2,2],[1,4,0,2],[1,2,2,1]],[[1,1,2,1],[2,0,2,2],[1,3,0,3],[1,2,2,1]],[[1,1,2,1],[2,0,2,2],[1,3,0,2],[2,2,2,1]],[[1,1,2,1],[2,0,2,2],[1,3,0,2],[1,3,2,1]],[[1,1,2,1],[2,0,2,2],[1,3,0,2],[1,2,3,1]],[[1,1,2,1],[2,0,2,2],[1,3,0,2],[1,2,2,2]],[[1,1,3,1],[2,0,2,2],[1,3,1,2],[1,1,2,1]],[[1,1,2,2],[2,0,2,2],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,0,2,3],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,0,2,2],[1,3,1,3],[1,1,2,1]],[[1,1,2,1],[2,0,2,2],[1,3,1,2],[1,1,3,1]],[[1,1,2,1],[2,0,2,2],[1,3,1,2],[1,1,2,2]],[[1,1,3,1],[2,0,2,2],[1,3,2,2],[1,1,1,1]],[[1,1,2,2],[2,0,2,2],[1,3,2,2],[1,1,1,1]],[[1,1,2,1],[2,0,2,3],[1,3,2,2],[1,1,1,1]],[[1,1,2,1],[2,0,2,2],[1,3,2,3],[1,1,1,1]],[[1,1,2,1],[2,0,2,2],[1,3,2,2],[1,1,1,2]],[[1,1,3,1],[2,0,2,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,2],[2,0,2,2],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,0,2,3],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,0,2,2],[1,3,2,3],[1,1,2,0]],[[1,1,3,1],[2,0,2,2],[1,3,2,2],[1,2,0,1]],[[1,1,2,2],[2,0,2,2],[1,3,2,2],[1,2,0,1]],[[1,1,2,1],[2,0,2,3],[1,3,2,2],[1,2,0,1]],[[1,1,2,1],[2,0,2,2],[1,3,2,3],[1,2,0,1]],[[1,1,2,1],[2,0,2,2],[1,3,2,2],[1,2,0,2]],[[1,1,3,1],[2,0,2,2],[1,3,2,2],[1,2,1,0]],[[1,1,2,2],[2,0,2,2],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[2,0,2,3],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[2,0,2,2],[1,3,2,3],[1,2,1,0]],[[1,1,3,1],[2,0,2,2],[1,3,3,0],[1,1,2,1]],[[1,1,2,2],[2,0,2,2],[1,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,0,2,3],[1,3,3,0],[1,1,2,1]],[[1,1,3,1],[2,0,2,2],[1,3,3,0],[1,2,1,1]],[[1,1,2,2],[2,0,2,2],[1,3,3,0],[1,2,1,1]],[[1,1,2,1],[2,0,2,3],[1,3,3,0],[1,2,1,1]],[[1,1,3,1],[2,0,2,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,2],[2,0,2,2],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,0,2,3],[1,3,3,1],[1,1,1,1]],[[1,1,3,1],[2,0,2,2],[1,3,3,1],[1,1,2,0]],[[1,1,2,2],[2,0,2,2],[1,3,3,1],[1,1,2,0]],[[1,1,2,1],[2,0,2,3],[1,3,3,1],[1,1,2,0]],[[1,1,3,1],[2,0,2,2],[1,3,3,1],[1,2,0,1]],[[1,1,2,2],[2,0,2,2],[1,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,0,2,3],[1,3,3,1],[1,2,0,1]],[[1,1,3,1],[2,0,2,2],[1,3,3,1],[1,2,1,0]],[[1,1,2,2],[2,0,2,2],[1,3,3,1],[1,2,1,0]],[[1,1,2,1],[2,0,2,3],[1,3,3,1],[1,2,1,0]],[[2,1,2,1],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,1,3,1],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,2],[2,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[3,0,2,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,2,3],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,2,2],[3,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,2,2],[2,1,1,3],[1,2,2,1]],[[1,1,2,1],[2,0,2,2],[2,1,1,2],[2,2,2,1]],[[1,1,2,1],[2,0,2,2],[2,1,1,2],[1,3,2,1]],[[1,1,2,1],[2,0,2,2],[2,1,1,2],[1,2,3,1]],[[1,1,2,1],[2,0,2,2],[2,1,1,2],[1,2,2,2]],[[1,1,3,1],[2,0,2,2],[2,1,2,2],[1,2,1,1]],[[1,1,2,2],[2,0,2,2],[2,1,2,2],[1,2,1,1]],[[1,1,2,1],[2,0,2,3],[2,1,2,2],[1,2,1,1]],[[1,1,2,1],[2,0,2,2],[2,1,2,3],[1,2,1,1]],[[1,1,2,1],[2,0,2,2],[2,1,2,2],[1,2,1,2]],[[1,1,3,1],[2,0,2,2],[2,1,2,2],[1,2,2,0]],[[1,1,2,2],[2,0,2,2],[2,1,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,2,3],[2,1,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,2,2],[2,1,2,3],[1,2,2,0]],[[1,1,3,1],[2,0,2,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,2],[2,0,2,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,0,2,3],[2,1,3,0],[1,2,2,1]],[[1,1,3,1],[2,0,2,2],[2,1,3,1],[1,2,1,1]],[[1,1,2,2],[2,0,2,2],[2,1,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,2,3],[2,1,3,1],[1,2,1,1]],[[1,1,3,1],[2,0,2,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,2],[2,0,2,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,1],[2,0,2,3],[2,1,3,1],[1,2,2,0]],[[2,1,2,1],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,3,1],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,2],[2,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[3,0,2,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,0,2,3],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,0,2,2],[3,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,0,2,2],[2,2,0,3],[1,2,2,1]],[[1,1,2,1],[2,0,2,2],[2,2,0,2],[2,2,2,1]],[[1,1,2,1],[2,0,2,2],[2,2,0,2],[1,3,2,1]],[[1,1,2,1],[2,0,2,2],[2,2,0,2],[1,2,3,1]],[[1,1,2,1],[2,0,2,2],[2,2,0,2],[1,2,2,2]],[[1,1,3,1],[2,0,2,2],[2,2,1,2],[0,2,2,1]],[[1,1,2,2],[2,0,2,2],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[2,0,2,3],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[2,0,2,2],[2,2,1,3],[0,2,2,1]],[[1,1,2,1],[2,0,2,2],[2,2,1,2],[0,3,2,1]],[[1,1,2,1],[2,0,2,2],[2,2,1,2],[0,2,3,1]],[[1,1,2,1],[2,0,2,2],[2,2,1,2],[0,2,2,2]],[[1,1,3,1],[2,0,2,2],[2,2,2,2],[0,2,1,1]],[[1,1,2,2],[2,0,2,2],[2,2,2,2],[0,2,1,1]],[[1,1,2,1],[2,0,2,3],[2,2,2,2],[0,2,1,1]],[[1,1,2,1],[2,0,2,2],[2,2,2,3],[0,2,1,1]],[[1,1,2,1],[2,0,2,2],[2,2,2,2],[0,2,1,2]],[[1,1,3,1],[2,0,2,2],[2,2,2,2],[0,2,2,0]],[[1,1,2,2],[2,0,2,2],[2,2,2,2],[0,2,2,0]],[[1,1,2,1],[2,0,2,3],[2,2,2,2],[0,2,2,0]],[[1,1,2,1],[2,0,2,2],[2,2,2,3],[0,2,2,0]],[[1,1,3,1],[2,0,2,2],[2,2,3,0],[0,2,2,1]],[[1,1,2,2],[2,0,2,2],[2,2,3,0],[0,2,2,1]],[[1,1,2,1],[2,0,2,3],[2,2,3,0],[0,2,2,1]],[[1,1,3,1],[2,0,2,2],[2,2,3,1],[0,2,1,1]],[[1,1,2,2],[2,0,2,2],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[2,0,2,3],[2,2,3,1],[0,2,1,1]],[[1,1,3,1],[2,0,2,2],[2,2,3,1],[0,2,2,0]],[[1,1,2,2],[2,0,2,2],[2,2,3,1],[0,2,2,0]],[[1,1,2,1],[2,0,2,3],[2,2,3,1],[0,2,2,0]],[[1,1,2,1],[2,3,3,1],[2,2,1,1],[2,2,0,0]],[[1,1,2,1],[2,3,3,1],[3,2,1,1],[1,2,0,0]],[[1,1,2,1],[2,4,3,1],[2,2,1,1],[1,2,0,0]],[[1,1,2,1],[3,3,3,1],[2,2,1,1],[1,2,0,0]],[[2,1,2,1],[2,3,3,1],[2,2,1,1],[1,2,0,0]],[[2,1,2,1],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,3,1],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,2],[2,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[3,0,2,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,0,2,3],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,0,2,2],[3,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,0,2,2],[2,4,0,2],[0,2,2,1]],[[1,1,2,1],[2,0,2,2],[2,3,0,3],[0,2,2,1]],[[1,1,2,1],[2,0,2,2],[2,3,0,2],[0,3,2,1]],[[1,1,2,1],[2,0,2,2],[2,3,0,2],[0,2,3,1]],[[1,1,2,1],[2,0,2,2],[2,3,0,2],[0,2,2,2]],[[2,1,2,1],[2,0,2,2],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[3,0,2,2],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,0,2,2],[3,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,0,2,2],[2,4,0,2],[1,1,2,1]],[[1,1,2,1],[2,0,2,2],[2,3,0,2],[2,1,2,1]],[[1,1,3,1],[2,0,2,2],[2,3,1,2],[0,1,2,1]],[[1,1,2,2],[2,0,2,2],[2,3,1,2],[0,1,2,1]],[[1,1,2,1],[2,0,2,3],[2,3,1,2],[0,1,2,1]],[[1,1,2,1],[2,0,2,2],[2,3,1,3],[0,1,2,1]],[[1,1,2,1],[2,0,2,2],[2,3,1,2],[0,1,3,1]],[[1,1,2,1],[2,0,2,2],[2,3,1,2],[0,1,2,2]],[[1,1,3,1],[2,0,2,2],[2,3,1,2],[1,0,2,1]],[[1,1,2,2],[2,0,2,2],[2,3,1,2],[1,0,2,1]],[[1,1,2,1],[2,0,2,3],[2,3,1,2],[1,0,2,1]],[[1,1,2,1],[2,0,2,2],[2,3,1,3],[1,0,2,1]],[[1,1,2,1],[2,0,2,2],[2,3,1,2],[1,0,3,1]],[[1,1,2,1],[2,0,2,2],[2,3,1,2],[1,0,2,2]],[[1,1,2,1],[2,3,3,1],[2,2,1,1],[2,1,1,0]],[[1,1,2,1],[2,3,3,1],[3,2,1,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,1],[2,2,1,1],[1,1,1,0]],[[1,1,2,1],[3,3,3,1],[2,2,1,1],[1,1,1,0]],[[2,1,2,1],[2,3,3,1],[2,2,1,1],[1,1,1,0]],[[1,1,2,1],[2,3,3,1],[2,2,1,1],[2,1,0,1]],[[1,1,2,1],[2,3,3,1],[3,2,1,1],[1,1,0,1]],[[1,1,2,1],[2,4,3,1],[2,2,1,1],[1,1,0,1]],[[1,1,2,1],[3,3,3,1],[2,2,1,1],[1,1,0,1]],[[2,1,2,1],[2,3,3,1],[2,2,1,1],[1,1,0,1]],[[1,1,2,1],[2,3,3,1],[3,2,1,1],[1,0,2,0]],[[1,1,2,1],[2,4,3,1],[2,2,1,1],[1,0,2,0]],[[1,1,2,1],[3,3,3,1],[2,2,1,1],[1,0,2,0]],[[2,1,2,1],[2,3,3,1],[2,2,1,1],[1,0,2,0]],[[1,1,2,1],[2,3,3,1],[3,2,1,1],[1,0,1,1]],[[1,1,2,1],[2,4,3,1],[2,2,1,1],[1,0,1,1]],[[1,1,3,1],[2,0,2,2],[2,3,2,2],[0,0,2,1]],[[1,1,2,2],[2,0,2,2],[2,3,2,2],[0,0,2,1]],[[1,1,2,1],[2,0,2,3],[2,3,2,2],[0,0,2,1]],[[1,1,2,1],[2,0,2,2],[2,3,2,3],[0,0,2,1]],[[1,1,2,1],[2,0,2,2],[2,3,2,2],[0,0,2,2]],[[1,1,3,1],[2,0,2,2],[2,3,2,2],[0,1,1,1]],[[1,1,2,2],[2,0,2,2],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[2,0,2,3],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[2,0,2,2],[2,3,2,3],[0,1,1,1]],[[1,1,2,1],[2,0,2,2],[2,3,2,2],[0,1,1,2]],[[1,1,3,1],[2,0,2,2],[2,3,2,2],[0,1,2,0]],[[1,1,2,2],[2,0,2,2],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[2,0,2,3],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[2,0,2,2],[2,3,2,3],[0,1,2,0]],[[1,1,3,1],[2,0,2,2],[2,3,2,2],[0,2,0,1]],[[1,1,2,2],[2,0,2,2],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[2,0,2,3],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[2,0,2,2],[2,3,2,3],[0,2,0,1]],[[1,1,2,1],[2,0,2,2],[2,3,2,2],[0,2,0,2]],[[1,1,3,1],[2,0,2,2],[2,3,2,2],[0,2,1,0]],[[1,1,2,2],[2,0,2,2],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[2,0,2,3],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[2,0,2,2],[2,3,2,3],[0,2,1,0]],[[1,1,2,1],[3,3,3,1],[2,2,1,1],[1,0,1,1]],[[2,1,2,1],[2,3,3,1],[2,2,1,1],[1,0,1,1]],[[1,1,3,1],[2,0,2,2],[2,3,2,2],[1,0,1,1]],[[1,1,2,2],[2,0,2,2],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[2,0,2,3],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[2,0,2,2],[2,3,2,3],[1,0,1,1]],[[1,1,2,1],[2,0,2,2],[2,3,2,2],[1,0,1,2]],[[1,1,3,1],[2,0,2,2],[2,3,2,2],[1,0,2,0]],[[1,1,2,2],[2,0,2,2],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[2,0,2,3],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[2,0,2,2],[2,3,2,3],[1,0,2,0]],[[1,1,3,1],[2,0,2,2],[2,3,2,2],[1,1,0,1]],[[1,1,2,2],[2,0,2,2],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[2,0,2,3],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[2,0,2,2],[2,3,2,3],[1,1,0,1]],[[1,1,2,1],[2,0,2,2],[2,3,2,2],[1,1,0,2]],[[1,1,3,1],[2,0,2,2],[2,3,2,2],[1,1,1,0]],[[1,1,2,2],[2,0,2,2],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,0,2,3],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,0,2,2],[2,3,2,3],[1,1,1,0]],[[1,1,2,1],[2,3,3,1],[3,2,1,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,1],[2,2,1,1],[0,2,1,0]],[[1,1,2,1],[3,3,3,1],[2,2,1,1],[0,2,1,0]],[[2,1,2,1],[2,3,3,1],[2,2,1,1],[0,2,1,0]],[[1,1,2,1],[2,3,3,1],[3,2,1,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,1],[2,2,1,1],[0,2,0,1]],[[1,1,2,1],[3,3,3,1],[2,2,1,1],[0,2,0,1]],[[2,1,2,1],[2,3,3,1],[2,2,1,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,1],[2,2,1,1],[0,1,2,0]],[[1,1,2,1],[3,3,3,1],[2,2,1,1],[0,1,2,0]],[[2,1,2,1],[2,3,3,1],[2,2,1,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,1],[2,2,1,1],[0,1,1,1]],[[1,1,2,1],[3,3,3,1],[2,2,1,1],[0,1,1,1]],[[2,1,2,1],[2,3,3,1],[2,2,1,1],[0,1,1,1]],[[1,1,2,1],[2,3,3,1],[2,2,1,0],[2,2,0,1]],[[1,1,2,1],[2,3,3,1],[3,2,1,0],[1,2,0,1]],[[1,1,2,1],[2,4,3,1],[2,2,1,0],[1,2,0,1]],[[1,1,2,1],[3,3,3,1],[2,2,1,0],[1,2,0,1]],[[2,1,2,1],[2,3,3,1],[2,2,1,0],[1,2,0,1]],[[1,1,2,1],[2,3,3,1],[2,2,1,0],[2,1,1,1]],[[1,1,2,1],[2,3,3,1],[3,2,1,0],[1,1,1,1]],[[1,1,3,1],[2,0,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,2],[2,0,2,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,0,2,3],[2,3,3,0],[0,1,2,1]],[[1,1,3,1],[2,0,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,2],[2,0,2,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,0,2,3],[2,3,3,0],[0,2,1,1]],[[1,1,3,1],[2,0,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,2],[2,0,2,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,0,2,3],[2,3,3,0],[1,0,2,1]],[[1,1,3,1],[2,0,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,2],[2,0,2,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,0,2,3],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,3,1],[2,2,1,0],[1,1,1,1]],[[1,1,2,1],[3,3,3,1],[2,2,1,0],[1,1,1,1]],[[2,1,2,1],[2,3,3,1],[2,2,1,0],[1,1,1,1]],[[1,1,3,1],[2,0,2,2],[2,3,3,1],[0,0,2,1]],[[1,1,2,2],[2,0,2,2],[2,3,3,1],[0,0,2,1]],[[1,1,2,1],[2,0,2,3],[2,3,3,1],[0,0,2,1]],[[1,1,3,1],[2,0,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,2],[2,0,2,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[2,0,2,3],[2,3,3,1],[0,1,1,1]],[[1,1,3,1],[2,0,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,2],[2,0,2,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,0,2,3],[2,3,3,1],[0,1,2,0]],[[1,1,3,1],[2,0,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,2],[2,0,2,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,0,2,3],[2,3,3,1],[0,2,0,1]],[[1,1,3,1],[2,0,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,2],[2,0,2,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,0,2,3],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,3,1],[3,2,1,0],[1,0,2,1]],[[1,1,2,1],[2,4,3,1],[2,2,1,0],[1,0,2,1]],[[1,1,2,1],[3,3,3,1],[2,2,1,0],[1,0,2,1]],[[2,1,2,1],[2,3,3,1],[2,2,1,0],[1,0,2,1]],[[1,1,3,1],[2,0,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,2],[2,0,2,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,0,2,3],[2,3,3,1],[1,0,1,1]],[[1,1,3,1],[2,0,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,2],[2,0,2,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,0,2,3],[2,3,3,1],[1,0,2,0]],[[1,1,3,1],[2,0,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,2],[2,0,2,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[2,0,2,3],[2,3,3,1],[1,1,0,1]],[[1,1,3,1],[2,0,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,2],[2,0,2,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,0,2,3],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,3,1],[3,2,1,0],[0,2,1,1]],[[1,1,2,1],[2,4,3,1],[2,2,1,0],[0,2,1,1]],[[1,1,2,1],[3,3,3,1],[2,2,1,0],[0,2,1,1]],[[2,1,2,1],[2,3,3,1],[2,2,1,0],[0,2,1,1]],[[1,1,2,1],[2,4,3,1],[2,2,1,0],[0,1,2,1]],[[1,1,2,1],[3,3,3,1],[2,2,1,0],[0,1,2,1]],[[2,1,2,1],[2,3,3,1],[2,2,1,0],[0,1,2,1]],[[1,1,2,1],[2,3,3,1],[2,2,0,2],[2,2,0,0]],[[1,1,2,1],[2,3,3,1],[3,2,0,2],[1,2,0,0]],[[1,1,2,1],[2,4,3,1],[2,2,0,2],[1,2,0,0]],[[1,1,2,1],[3,3,3,1],[2,2,0,2],[1,2,0,0]],[[2,1,2,1],[2,3,3,1],[2,2,0,2],[1,2,0,0]],[[1,1,3,1],[2,0,2,2],[2,3,3,2],[0,1,0,1]],[[1,1,2,2],[2,0,2,2],[2,3,3,2],[0,1,0,1]],[[1,1,2,1],[2,0,2,3],[2,3,3,2],[0,1,0,1]],[[1,1,2,1],[2,0,2,2],[2,3,3,3],[0,1,0,1]],[[1,1,2,1],[2,3,3,1],[2,2,0,2],[2,1,1,0]],[[1,1,2,1],[2,3,3,1],[3,2,0,2],[1,1,1,0]],[[1,1,2,1],[2,4,3,1],[2,2,0,2],[1,1,1,0]],[[1,1,2,1],[3,3,3,1],[2,2,0,2],[1,1,1,0]],[[2,1,2,1],[2,3,3,1],[2,2,0,2],[1,1,1,0]],[[1,1,2,1],[2,3,3,1],[2,2,0,2],[2,1,0,1]],[[1,1,2,1],[2,3,3,1],[3,2,0,2],[1,1,0,1]],[[1,1,2,1],[2,4,3,1],[2,2,0,2],[1,1,0,1]],[[1,1,2,1],[3,3,3,1],[2,2,0,2],[1,1,0,1]],[[2,1,2,1],[2,3,3,1],[2,2,0,2],[1,1,0,1]],[[1,1,2,1],[2,3,3,1],[3,2,0,2],[1,0,2,0]],[[1,1,2,1],[2,4,3,1],[2,2,0,2],[1,0,2,0]],[[1,1,2,1],[3,3,3,1],[2,2,0,2],[1,0,2,0]],[[2,1,2,1],[2,3,3,1],[2,2,0,2],[1,0,2,0]],[[1,1,2,1],[2,3,3,1],[3,2,0,2],[1,0,1,1]],[[1,1,2,1],[2,4,3,1],[2,2,0,2],[1,0,1,1]],[[1,1,2,1],[3,3,3,1],[2,2,0,2],[1,0,1,1]],[[2,1,2,1],[2,3,3,1],[2,2,0,2],[1,0,1,1]],[[1,1,2,1],[2,3,3,1],[3,2,0,2],[0,2,1,0]],[[1,1,2,1],[2,4,3,1],[2,2,0,2],[0,2,1,0]],[[1,1,2,1],[3,3,3,1],[2,2,0,2],[0,2,1,0]],[[1,1,3,1],[2,0,2,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,2],[2,0,2,2],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[2,0,2,3],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[2,0,2,2],[2,3,3,3],[1,0,0,1]],[[2,1,2,1],[2,3,3,1],[2,2,0,2],[0,2,1,0]],[[1,1,2,1],[2,3,3,1],[3,2,0,2],[0,2,0,1]],[[1,1,2,1],[2,4,3,1],[2,2,0,2],[0,2,0,1]],[[1,1,2,1],[3,3,3,1],[2,2,0,2],[0,2,0,1]],[[2,1,2,1],[2,3,3,1],[2,2,0,2],[0,2,0,1]],[[1,1,2,1],[2,4,3,1],[2,2,0,2],[0,1,2,0]],[[1,1,2,1],[3,3,3,1],[2,2,0,2],[0,1,2,0]],[[2,1,2,1],[2,3,3,1],[2,2,0,2],[0,1,2,0]],[[1,1,2,1],[2,4,3,1],[2,2,0,2],[0,1,1,1]],[[1,1,2,1],[3,3,3,1],[2,2,0,2],[0,1,1,1]],[[2,1,2,1],[2,3,3,1],[2,2,0,2],[0,1,1,1]],[[1,1,2,1],[2,3,3,1],[2,2,0,1],[2,1,2,0]],[[1,1,2,1],[2,3,3,1],[3,2,0,1],[1,1,2,0]],[[1,1,2,1],[2,4,3,1],[2,2,0,1],[1,1,2,0]],[[1,1,2,1],[3,3,3,1],[2,2,0,1],[1,1,2,0]],[[2,1,2,1],[2,3,3,1],[2,2,0,1],[1,1,2,0]],[[1,1,2,1],[2,3,3,1],[3,2,0,1],[0,2,2,0]],[[1,1,2,1],[2,4,3,1],[2,2,0,1],[0,2,2,0]],[[1,1,2,1],[3,3,3,1],[2,2,0,1],[0,2,2,0]],[[2,1,2,1],[2,3,3,1],[2,2,0,1],[0,2,2,0]],[[1,1,2,1],[2,3,3,1],[2,2,0,0],[2,1,2,1]],[[1,1,2,1],[2,3,3,1],[3,2,0,0],[1,1,2,1]],[[1,1,2,1],[2,4,3,1],[2,2,0,0],[1,1,2,1]],[[1,1,2,1],[3,3,3,1],[2,2,0,0],[1,1,2,1]],[[2,1,2,1],[2,3,3,1],[2,2,0,0],[1,1,2,1]],[[1,1,2,1],[2,3,3,1],[3,2,0,0],[0,2,2,1]],[[1,1,2,1],[2,4,3,1],[2,2,0,0],[0,2,2,1]],[[1,1,2,1],[3,3,3,1],[2,2,0,0],[0,2,2,1]],[[2,1,2,1],[2,3,3,1],[2,2,0,0],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,1,3,3],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,1,3,2],[1,2,3,1]],[[1,1,2,1],[2,0,3,0],[1,1,3,2],[1,2,2,2]],[[1,1,2,1],[2,0,3,0],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[2,0,3,0],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[2,0,3,0],[1,2,2,2],[1,2,2,2]],[[1,1,3,1],[2,0,3,0],[1,2,3,1],[1,2,2,1]],[[1,1,2,2],[2,0,3,0],[1,2,3,1],[1,2,2,1]],[[1,1,2,1],[2,0,4,0],[1,2,3,1],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[2,0,3,0],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[2,0,3,0],[1,2,3,1],[1,2,2,2]],[[1,1,3,1],[2,0,3,0],[1,2,3,2],[1,2,1,1]],[[1,1,2,2],[2,0,3,0],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[2,0,4,0],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[2,0,3,0],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[2,0,3,0],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[2,0,3,0],[1,2,3,2],[1,2,1,2]],[[1,1,3,1],[2,0,3,0],[1,2,3,2],[1,2,2,0]],[[1,1,2,2],[2,0,3,0],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[2,0,4,0],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[2,0,3,0],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[2,0,3,0],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[2,0,3,0],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[2,0,3,0],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[2,0,3,0],[1,2,3,2],[1,2,3,0]],[[1,1,2,1],[2,0,3,0],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,1,3],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[2,0,3,0],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[2,0,3,0],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[2,0,3,0],[1,3,2,1],[1,2,2,2]],[[1,1,2,1],[2,0,3,0],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[2,0,3,0],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[2,0,3,0],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,3,0],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[2,0,3,0],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[2,0,3,0],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[2,0,3,0],[1,4,3,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,0],[2,2,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,0],[1,3,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,0],[1,2,3,1]],[[1,1,3,1],[2,0,3,0],[1,3,3,1],[1,1,2,1]],[[1,1,2,2],[2,0,3,0],[1,3,3,1],[1,1,2,1]],[[1,1,2,1],[2,0,4,0],[1,3,3,1],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[1,4,3,1],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,1],[1,1,2,2]],[[1,1,3,1],[2,0,3,0],[1,3,3,1],[1,2,1,1]],[[1,1,2,2],[2,0,3,0],[1,3,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,4,0],[1,3,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,3,0],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,3,0],[1,3,4,1],[1,2,1,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,1],[1,3,1,1]],[[1,1,2,1],[2,0,3,0],[1,3,4,2],[1,0,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,3],[1,0,2,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,2],[1,0,2,2]],[[1,1,3,1],[2,0,3,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,2],[2,0,3,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[2,0,4,0],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[2,0,3,0],[1,4,3,2],[1,1,1,1]],[[1,1,2,1],[2,0,3,0],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,2],[1,1,1,2]],[[1,1,3,1],[2,0,3,0],[1,3,3,2],[1,1,2,0]],[[1,1,2,2],[2,0,3,0],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[2,0,4,0],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[2,0,3,0],[1,4,3,2],[1,1,2,0]],[[1,1,2,1],[2,0,3,0],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[2,0,3,0],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[2,0,3,0],[1,3,3,2],[1,1,3,0]],[[1,1,3,1],[2,0,3,0],[1,3,3,2],[1,2,0,1]],[[1,1,2,2],[2,0,3,0],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,0,4,0],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,0,3,0],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[2,0,3,0],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[2,0,3,0],[1,3,3,2],[1,2,0,2]],[[1,1,3,1],[2,0,3,0],[1,3,3,2],[1,2,1,0]],[[1,1,2,2],[2,0,3,0],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,0,4,0],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,0,3,0],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[2,0,3,0],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[2,0,3,0],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[2,0,3,0],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[2,0,3,0],[1,3,3,2],[1,3,1,0]],[[1,1,2,1],[2,0,3,0],[2,0,3,3],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,0,3,2],[1,2,3,1]],[[1,1,2,1],[2,0,3,0],[2,0,3,2],[1,2,2,2]],[[2,1,2,1],[2,0,3,0],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[3,0,3,0],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[3,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[2,0,3,0],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[2,0,3,0],[2,1,2,2],[1,2,2,2]],[[2,1,2,1],[2,0,3,0],[2,1,3,1],[1,2,2,1]],[[1,1,3,1],[2,0,3,0],[2,1,3,1],[1,2,2,1]],[[1,1,2,2],[2,0,3,0],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[3,0,3,0],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,0,4,0],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[3,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[2,0,3,0],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[2,0,3,0],[2,1,3,1],[1,2,2,2]],[[1,1,2,1],[2,0,3,0],[2,1,3,3],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,1,3,2],[0,2,3,1]],[[1,1,2,1],[2,0,3,0],[2,1,3,2],[0,2,2,2]],[[1,1,3,1],[2,0,3,0],[2,1,3,2],[1,2,1,1]],[[1,1,2,2],[2,0,3,0],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[2,0,4,0],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[2,0,3,0],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[2,0,3,0],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[2,0,3,0],[2,1,3,2],[1,2,1,2]],[[2,1,2,1],[2,0,3,0],[2,1,3,2],[1,2,2,0]],[[1,1,3,1],[2,0,3,0],[2,1,3,2],[1,2,2,0]],[[1,1,2,2],[2,0,3,0],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[3,0,3,0],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,0,4,0],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,0,3,0],[3,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,0,3,0],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[2,0,3,0],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[2,0,3,0],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[2,0,3,0],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[2,0,3,0],[2,1,3,2],[1,2,3,0]],[[2,1,2,1],[2,0,3,0],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[3,0,3,0],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,1,3],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[2,0,3,0],[2,2,1,2],[1,2,2,2]],[[2,1,2,1],[2,0,3,0],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[3,0,3,0],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[2,0,3,0],[2,2,2,1],[1,2,2,2]],[[1,1,2,1],[2,0,3,0],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[2,0,3,0],[2,2,2,2],[0,2,2,2]],[[2,1,2,1],[2,0,3,0],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[3,0,3,0],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,3,0],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,3,0],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[2,0,3,0],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[2,0,3,0],[2,2,2,2],[1,2,3,0]],[[2,1,2,1],[2,0,3,0],[2,2,3,0],[1,2,2,1]],[[1,1,2,1],[3,0,3,0],[2,2,3,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[3,2,3,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,0],[2,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,0],[1,3,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,0],[1,2,3,1]],[[1,1,3,1],[2,0,3,0],[2,2,3,1],[0,2,2,1]],[[1,1,2,2],[2,0,3,0],[2,2,3,1],[0,2,2,1]],[[1,1,2,1],[2,0,4,0],[2,2,3,1],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,1],[0,2,2,2]],[[2,1,2,1],[2,0,3,0],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[3,0,3,0],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,3,0],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,1],[1,3,1,1]],[[1,1,3,1],[2,0,3,0],[2,2,3,2],[0,2,1,1]],[[1,1,2,2],[2,0,3,0],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[2,0,4,0],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[2,0,3,0],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,2],[0,2,1,2]],[[1,1,3,1],[2,0,3,0],[2,2,3,2],[0,2,2,0]],[[1,1,2,2],[2,0,3,0],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[2,0,4,0],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[2,0,3,0],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[2,0,3,0],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[2,0,3,0],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[2,0,3,0],[2,2,3,2],[0,2,3,0]],[[2,1,2,1],[2,0,3,0],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[3,0,3,0],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,0,3,0],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[2,0,3,0],[2,2,3,2],[1,3,0,1]],[[2,1,2,1],[2,0,3,0],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[3,0,3,0],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,0,3,0],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,0,3,0],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[2,0,3,0],[2,2,3,2],[1,3,1,0]],[[2,1,2,1],[2,0,3,0],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[3,0,3,0],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,1,3],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[2,0,3,0],[2,3,1,2],[0,2,2,2]],[[2,1,2,1],[2,0,3,0],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[3,0,3,0],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,1,2],[2,1,2,1]],[[2,1,2,1],[2,0,3,0],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[3,0,3,0],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[2,0,3,0],[2,3,2,1],[0,2,2,2]],[[2,1,2,1],[2,0,3,0],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[3,0,3,0],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,2,1],[2,1,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[2,0,3,0],[2,3,2,2],[0,1,2,2]],[[2,1,2,1],[2,0,3,0],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[3,0,3,0],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,0,3,0],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,0,3,0],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[2,0,3,0],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[2,0,3,0],[2,3,2,2],[0,2,3,0]],[[1,1,2,1],[2,0,3,0],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[2,0,3,0],[2,3,2,2],[1,0,2,2]],[[2,1,2,1],[2,0,3,0],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[3,0,3,0],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,0,3,0],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,0,3,0],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[2,0,3,0],[2,3,2,2],[2,1,2,0]],[[2,1,2,1],[2,0,3,0],[2,3,3,0],[0,2,2,1]],[[1,1,2,1],[3,0,3,0],[2,3,3,0],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[3,3,3,0],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,4,3,0],[0,2,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,0],[0,3,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,0],[0,2,3,1]],[[2,1,2,1],[2,0,3,0],[2,3,3,0],[1,1,2,1]],[[1,1,2,1],[3,0,3,0],[2,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[3,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[2,4,3,0],[1,1,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,0],[2,1,2,1]],[[2,1,2,1],[2,0,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,3,1],[2,0,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,2],[2,0,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[3,0,3,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,0,4,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,0,3,0],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,0,3,0],[2,4,3,1],[0,1,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,1],[0,1,2,2]],[[2,1,2,1],[2,0,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,3,1],[2,0,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,2],[2,0,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[3,0,3,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,0,4,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,0,3,0],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,0,3,0],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[2,0,3,0],[2,3,4,1],[0,2,1,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,1],[0,3,1,1]],[[2,1,2,1],[2,0,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,3,1],[2,0,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,2],[2,0,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[3,0,3,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,0,4,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,0,3,0],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,0,3,0],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,1],[2,0,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,1],[1,0,2,2]],[[2,1,2,1],[2,0,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,3,1],[2,0,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,2],[2,0,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[3,0,3,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,0,4,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,0,3,0],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,0,3,0],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[2,0,3,0],[2,3,4,1],[1,1,1,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,1],[2,1,1,1]],[[2,1,2,1],[2,0,3,0],[2,3,3,1],[1,2,0,1]],[[1,1,2,1],[3,0,3,0],[2,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,0,3,0],[3,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,0,3,0],[2,4,3,1],[1,2,0,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,1],[2,2,0,1]],[[1,1,3,1],[2,0,3,0],[2,3,3,2],[0,0,2,1]],[[1,1,2,2],[2,0,3,0],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[2,0,4,0],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[0,0,2,2]],[[2,1,2,1],[2,0,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,3,1],[2,0,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,2],[2,0,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[3,0,3,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,0,4,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,0,3,0],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,0,3,0],[2,4,3,2],[0,1,1,1]],[[1,1,2,1],[2,0,3,0],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[0,1,1,2]],[[2,1,2,1],[2,0,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,3,1],[2,0,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,2],[2,0,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[3,0,3,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,0,4,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,0,3,0],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,0,3,0],[2,4,3,2],[0,1,2,0]],[[1,1,2,1],[2,0,3,0],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[2,0,3,0],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[0,1,3,0]],[[2,1,2,1],[2,0,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,3,1],[2,0,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,2],[2,0,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[3,0,3,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,0,4,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,0,3,0],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,0,3,0],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[2,0,3,0],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[0,3,0,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[0,2,0,2]],[[2,1,2,1],[2,0,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,3,1],[2,0,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,2],[2,0,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[3,0,3,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,0,4,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,0,3,0],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,0,3,0],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[2,0,3,0],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[2,0,3,0],[2,3,3,3],[0,2,1,0]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[0,3,1,0]],[[2,1,2,1],[2,0,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,3,1],[2,0,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,2],[2,0,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[3,0,3,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,0,4,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,0,3,0],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,0,3,0],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[2,0,3,0],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[2,0,1,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[1,0,1,2]],[[2,1,2,1],[2,0,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,3,1],[2,0,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,2],[2,0,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[3,0,3,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,0,4,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,0,3,0],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,0,3,0],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[2,0,3,0],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[2,0,3,0],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[1,0,3,0]],[[2,1,2,1],[2,0,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,3,1],[2,0,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,2],[2,0,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[3,0,3,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,0,4,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,0,3,0],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,0,3,0],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[2,0,3,0],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[1,1,0,2]],[[2,1,2,1],[2,0,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,3,1],[2,0,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,2],[2,0,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[3,0,3,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,0,4,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,0,3,0],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,0,3,0],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[2,0,3,0],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[2,0,3,0],[2,3,3,3],[1,1,1,0]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[2,1,1,0]],[[2,1,2,1],[2,0,3,0],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[3,0,3,0],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,0,3,0],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,0,3,0],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[2,0,3,0],[2,3,3,2],[2,2,0,0]],[[1,1,3,1],[2,0,3,1],[1,2,1,2],[1,2,2,1]],[[1,1,2,2],[2,0,3,1],[1,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,4,1],[1,2,1,2],[1,2,2,1]],[[1,1,3,1],[2,0,3,1],[1,2,2,2],[1,2,1,1]],[[1,1,2,2],[2,0,3,1],[1,2,2,2],[1,2,1,1]],[[1,1,2,1],[2,0,4,1],[1,2,2,2],[1,2,1,1]],[[1,1,3,1],[2,0,3,1],[1,2,2,2],[1,2,2,0]],[[1,1,2,2],[2,0,3,1],[1,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,4,1],[1,2,2,2],[1,2,2,0]],[[1,1,3,1],[2,0,3,1],[1,2,3,0],[1,2,2,1]],[[1,1,2,2],[2,0,3,1],[1,2,3,0],[1,2,2,1]],[[1,1,2,1],[2,0,4,1],[1,2,3,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,1],[1,2,4,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,1],[1,2,3,0],[2,2,2,1]],[[1,1,2,1],[2,0,3,1],[1,2,3,0],[1,3,2,1]],[[1,1,2,1],[2,0,3,1],[1,2,3,0],[1,2,3,1]],[[1,1,2,1],[2,0,3,1],[1,2,3,0],[1,2,2,2]],[[1,1,3,1],[2,0,3,1],[1,2,3,1],[1,2,1,1]],[[1,1,2,2],[2,0,3,1],[1,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,4,1],[1,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,3,1],[1,2,4,1],[1,2,1,1]],[[1,1,3,1],[2,0,3,1],[1,2,3,1],[1,2,2,0]],[[1,1,2,2],[2,0,3,1],[1,2,3,1],[1,2,2,0]],[[1,1,2,1],[2,0,4,1],[1,2,3,1],[1,2,2,0]],[[1,1,2,1],[2,0,3,1],[1,2,4,1],[1,2,2,0]],[[1,1,2,1],[2,0,3,1],[1,2,3,1],[2,2,2,0]],[[1,1,2,1],[2,0,3,1],[1,2,3,1],[1,3,2,0]],[[1,1,2,1],[2,0,3,1],[1,2,3,1],[1,2,3,0]],[[1,1,3,1],[2,0,3,1],[1,3,0,2],[1,2,2,1]],[[1,1,2,2],[2,0,3,1],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,0,4,1],[1,3,0,2],[1,2,2,1]],[[1,1,3,1],[2,0,3,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,2],[2,0,3,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,0,4,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,0,3,1],[1,4,2,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,1],[1,3,2,0],[2,2,2,1]],[[1,1,2,1],[2,0,3,1],[1,3,2,0],[1,3,2,1]],[[1,1,2,1],[2,0,3,1],[1,3,2,0],[1,2,3,1]],[[1,1,2,1],[2,0,3,1],[1,3,2,0],[1,2,2,2]],[[1,1,2,1],[2,0,3,1],[1,4,2,1],[1,2,2,0]],[[1,1,2,1],[2,0,3,1],[1,3,2,1],[2,2,2,0]],[[1,1,2,1],[2,0,3,1],[1,3,2,1],[1,3,2,0]],[[1,1,2,1],[2,0,3,1],[1,3,2,1],[1,2,3,0]],[[1,1,3,1],[2,0,3,1],[1,3,2,2],[1,1,1,1]],[[1,1,2,2],[2,0,3,1],[1,3,2,2],[1,1,1,1]],[[1,1,2,1],[2,0,4,1],[1,3,2,2],[1,1,1,1]],[[1,1,3,1],[2,0,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,2],[2,0,3,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,0,4,1],[1,3,2,2],[1,1,2,0]],[[1,1,3,1],[2,0,3,1],[1,3,2,2],[1,2,0,1]],[[1,1,2,2],[2,0,3,1],[1,3,2,2],[1,2,0,1]],[[1,1,2,1],[2,0,4,1],[1,3,2,2],[1,2,0,1]],[[1,1,3,1],[2,0,3,1],[1,3,2,2],[1,2,1,0]],[[1,1,2,2],[2,0,3,1],[1,3,2,2],[1,2,1,0]],[[1,1,2,1],[2,0,4,1],[1,3,2,2],[1,2,1,0]],[[1,1,3,1],[2,0,3,1],[1,3,3,0],[1,1,2,1]],[[1,1,2,2],[2,0,3,1],[1,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,0,4,1],[1,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,0,3,1],[1,4,3,0],[1,1,2,1]],[[1,1,2,1],[2,0,3,1],[1,3,4,0],[1,1,2,1]],[[1,1,2,1],[2,0,3,1],[1,3,3,0],[1,1,3,1]],[[1,1,2,1],[2,0,3,1],[1,3,3,0],[1,1,2,2]],[[1,1,3,1],[2,0,3,1],[1,3,3,0],[1,2,1,1]],[[1,1,2,2],[2,0,3,1],[1,3,3,0],[1,2,1,1]],[[1,1,2,1],[2,0,4,1],[1,3,3,0],[1,2,1,1]],[[1,1,2,1],[2,0,3,1],[1,4,3,0],[1,2,1,1]],[[1,1,2,1],[2,0,3,1],[1,3,4,0],[1,2,1,1]],[[1,1,2,1],[2,0,3,1],[1,3,3,0],[2,2,1,1]],[[1,1,2,1],[2,0,3,1],[1,3,3,0],[1,3,1,1]],[[1,1,3,1],[2,0,3,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,2],[2,0,3,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,0,4,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,0,3,1],[1,4,3,1],[1,1,1,1]],[[1,1,2,1],[2,0,3,1],[1,3,4,1],[1,1,1,1]],[[1,1,3,1],[2,0,3,1],[1,3,3,1],[1,1,2,0]],[[1,1,2,2],[2,0,3,1],[1,3,3,1],[1,1,2,0]],[[1,1,2,1],[2,0,4,1],[1,3,3,1],[1,1,2,0]],[[1,1,2,1],[2,0,3,1],[1,4,3,1],[1,1,2,0]],[[1,1,2,1],[2,0,3,1],[1,3,4,1],[1,1,2,0]],[[1,1,2,1],[2,0,3,1],[1,3,3,1],[1,1,3,0]],[[1,1,3,1],[2,0,3,1],[1,3,3,1],[1,2,0,1]],[[1,1,2,2],[2,0,3,1],[1,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,0,4,1],[1,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,0,3,1],[1,4,3,1],[1,2,0,1]],[[1,1,2,1],[2,0,3,1],[1,3,4,1],[1,2,0,1]],[[1,1,2,1],[2,0,3,1],[1,3,3,1],[2,2,0,1]],[[1,1,2,1],[2,0,3,1],[1,3,3,1],[1,3,0,1]],[[1,1,3,1],[2,0,3,1],[1,3,3,1],[1,2,1,0]],[[1,1,2,2],[2,0,3,1],[1,3,3,1],[1,2,1,0]],[[1,1,2,1],[2,0,4,1],[1,3,3,1],[1,2,1,0]],[[1,1,2,1],[2,0,3,1],[1,4,3,1],[1,2,1,0]],[[1,1,2,1],[2,0,3,1],[1,3,4,1],[1,2,1,0]],[[1,1,2,1],[2,0,3,1],[1,3,3,1],[2,2,1,0]],[[1,1,2,1],[2,0,3,1],[1,3,3,1],[1,3,1,0]],[[1,1,3,1],[2,0,3,1],[2,1,1,2],[1,2,2,1]],[[1,1,2,2],[2,0,3,1],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,4,1],[2,1,1,2],[1,2,2,1]],[[1,1,3,1],[2,0,3,1],[2,1,2,2],[1,2,1,1]],[[1,1,2,2],[2,0,3,1],[2,1,2,2],[1,2,1,1]],[[1,1,2,1],[2,0,4,1],[2,1,2,2],[1,2,1,1]],[[1,1,3,1],[2,0,3,1],[2,1,2,2],[1,2,2,0]],[[1,1,2,2],[2,0,3,1],[2,1,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,4,1],[2,1,2,2],[1,2,2,0]],[[2,1,2,1],[2,0,3,1],[2,1,3,0],[1,2,2,1]],[[1,1,3,1],[2,0,3,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,2],[2,0,3,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[3,0,3,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,0,4,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,1],[3,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,1],[2,1,4,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,1],[2,1,3,0],[2,2,2,1]],[[1,1,2,1],[2,0,3,1],[2,1,3,0],[1,3,2,1]],[[1,1,2,1],[2,0,3,1],[2,1,3,0],[1,2,3,1]],[[1,1,2,1],[2,0,3,1],[2,1,3,0],[1,2,2,2]],[[1,1,3,1],[2,0,3,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,2],[2,0,3,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,4,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,3,1],[2,1,4,1],[1,2,1,1]],[[2,1,2,1],[2,0,3,1],[2,1,3,1],[1,2,2,0]],[[1,1,3,1],[2,0,3,1],[2,1,3,1],[1,2,2,0]],[[1,1,2,2],[2,0,3,1],[2,1,3,1],[1,2,2,0]],[[1,1,2,1],[3,0,3,1],[2,1,3,1],[1,2,2,0]],[[1,1,2,1],[2,0,4,1],[2,1,3,1],[1,2,2,0]],[[1,1,2,1],[2,0,3,1],[3,1,3,1],[1,2,2,0]],[[1,1,2,1],[2,0,3,1],[2,1,4,1],[1,2,2,0]],[[1,1,2,1],[2,0,3,1],[2,1,3,1],[2,2,2,0]],[[1,1,2,1],[2,0,3,1],[2,1,3,1],[1,3,2,0]],[[1,1,2,1],[2,0,3,1],[2,1,3,1],[1,2,3,0]],[[1,1,3,1],[2,0,3,1],[2,2,0,2],[1,2,2,1]],[[1,1,2,2],[2,0,3,1],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,0,4,1],[2,2,0,2],[1,2,2,1]],[[1,1,3,1],[2,0,3,1],[2,2,1,2],[0,2,2,1]],[[1,1,2,2],[2,0,3,1],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[2,0,4,1],[2,2,1,2],[0,2,2,1]],[[2,1,2,1],[2,0,3,1],[2,2,2,0],[1,2,2,1]],[[1,1,2,1],[3,0,3,1],[2,2,2,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,1],[3,2,2,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,1],[2,2,2,0],[2,2,2,1]],[[1,1,2,1],[2,0,3,1],[2,2,2,0],[1,3,2,1]],[[1,1,2,1],[2,0,3,1],[2,2,2,0],[1,2,3,1]],[[1,1,2,1],[2,0,3,1],[2,2,2,0],[1,2,2,2]],[[2,1,2,1],[2,0,3,1],[2,2,2,1],[1,2,2,0]],[[1,1,2,1],[3,0,3,1],[2,2,2,1],[1,2,2,0]],[[1,1,2,1],[2,0,3,1],[3,2,2,1],[1,2,2,0]],[[1,1,2,1],[2,0,3,1],[2,2,2,1],[2,2,2,0]],[[1,1,2,1],[2,0,3,1],[2,2,2,1],[1,3,2,0]],[[1,1,2,1],[2,0,3,1],[2,2,2,1],[1,2,3,0]],[[1,1,3,1],[2,0,3,1],[2,2,2,2],[0,2,1,1]],[[1,1,2,2],[2,0,3,1],[2,2,2,2],[0,2,1,1]],[[1,1,2,1],[2,0,4,1],[2,2,2,2],[0,2,1,1]],[[1,1,3,1],[2,0,3,1],[2,2,2,2],[0,2,2,0]],[[1,1,2,2],[2,0,3,1],[2,2,2,2],[0,2,2,0]],[[1,1,2,1],[2,0,4,1],[2,2,2,2],[0,2,2,0]],[[1,1,3,1],[2,0,3,1],[2,2,3,0],[0,2,2,1]],[[1,1,2,2],[2,0,3,1],[2,2,3,0],[0,2,2,1]],[[1,1,2,1],[2,0,4,1],[2,2,3,0],[0,2,2,1]],[[1,1,2,1],[2,0,3,1],[2,2,4,0],[0,2,2,1]],[[1,1,2,1],[2,0,3,1],[2,2,3,0],[0,3,2,1]],[[1,1,2,1],[2,0,3,1],[2,2,3,0],[0,2,3,1]],[[1,1,2,1],[2,0,3,1],[2,2,3,0],[0,2,2,2]],[[2,1,2,1],[2,0,3,1],[2,2,3,0],[1,2,1,1]],[[1,1,2,1],[3,0,3,1],[2,2,3,0],[1,2,1,1]],[[1,1,2,1],[2,0,3,1],[3,2,3,0],[1,2,1,1]],[[1,1,2,1],[2,0,3,1],[2,2,3,0],[2,2,1,1]],[[1,1,2,1],[2,0,3,1],[2,2,3,0],[1,3,1,1]],[[1,1,3,1],[2,0,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,2],[2,0,3,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[2,0,4,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[2,0,3,1],[2,2,4,1],[0,2,1,1]],[[1,1,3,1],[2,0,3,1],[2,2,3,1],[0,2,2,0]],[[1,1,2,2],[2,0,3,1],[2,2,3,1],[0,2,2,0]],[[1,1,2,1],[2,0,4,1],[2,2,3,1],[0,2,2,0]],[[1,1,2,1],[2,0,3,1],[2,2,4,1],[0,2,2,0]],[[1,1,2,1],[2,0,3,1],[2,2,3,1],[0,3,2,0]],[[1,1,2,1],[2,0,3,1],[2,2,3,1],[0,2,3,0]],[[2,1,2,1],[2,0,3,1],[2,2,3,1],[1,2,0,1]],[[1,1,2,1],[3,0,3,1],[2,2,3,1],[1,2,0,1]],[[1,1,2,1],[2,0,3,1],[3,2,3,1],[1,2,0,1]],[[1,1,2,1],[2,0,3,1],[2,2,3,1],[2,2,0,1]],[[1,1,2,1],[2,0,3,1],[2,2,3,1],[1,3,0,1]],[[2,1,2,1],[2,0,3,1],[2,2,3,1],[1,2,1,0]],[[1,1,2,1],[3,0,3,1],[2,2,3,1],[1,2,1,0]],[[1,1,2,1],[2,0,3,1],[3,2,3,1],[1,2,1,0]],[[1,1,2,1],[2,0,3,1],[2,2,3,1],[2,2,1,0]],[[1,1,2,1],[2,0,3,1],[2,2,3,1],[1,3,1,0]],[[1,1,2,1],[2,3,3,1],[2,1,1,1],[2,2,1,0]],[[1,1,2,1],[2,3,3,1],[3,1,1,1],[1,2,1,0]],[[1,1,2,1],[2,4,3,1],[2,1,1,1],[1,2,1,0]],[[1,1,2,1],[3,3,3,1],[2,1,1,1],[1,2,1,0]],[[2,1,2,1],[2,3,3,1],[2,1,1,1],[1,2,1,0]],[[1,1,2,1],[2,3,3,1],[2,1,1,1],[2,2,0,1]],[[1,1,2,1],[2,3,3,1],[3,1,1,1],[1,2,0,1]],[[1,1,2,1],[2,4,3,1],[2,1,1,1],[1,2,0,1]],[[1,1,3,1],[2,0,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,2],[2,0,3,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,0,4,1],[2,3,0,2],[0,2,2,1]],[[1,1,3,1],[2,0,3,1],[2,3,1,2],[0,1,2,1]],[[1,1,2,2],[2,0,3,1],[2,3,1,2],[0,1,2,1]],[[1,1,2,1],[2,0,4,1],[2,3,1,2],[0,1,2,1]],[[1,1,3,1],[2,0,3,1],[2,3,1,2],[1,0,2,1]],[[1,1,2,2],[2,0,3,1],[2,3,1,2],[1,0,2,1]],[[1,1,2,1],[2,0,4,1],[2,3,1,2],[1,0,2,1]],[[1,1,2,1],[3,3,3,1],[2,1,1,1],[1,2,0,1]],[[2,1,2,1],[2,3,3,1],[2,1,1,1],[1,2,0,1]],[[2,1,2,1],[2,0,3,1],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[3,0,3,1],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[2,0,3,1],[3,3,2,0],[0,2,2,1]],[[1,1,2,1],[2,0,3,1],[2,4,2,0],[0,2,2,1]],[[1,1,2,1],[2,0,3,1],[2,3,2,0],[0,3,2,1]],[[1,1,2,1],[2,0,3,1],[2,3,2,0],[0,2,3,1]],[[1,1,2,1],[2,0,3,1],[2,3,2,0],[0,2,2,2]],[[2,1,2,1],[2,0,3,1],[2,3,2,0],[1,1,2,1]],[[1,1,2,1],[3,0,3,1],[2,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,0,3,1],[3,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,0,3,1],[2,4,2,0],[1,1,2,1]],[[1,1,2,1],[2,0,3,1],[2,3,2,0],[2,1,2,1]],[[2,1,2,1],[2,0,3,1],[2,3,2,1],[0,2,2,0]],[[1,1,2,1],[3,0,3,1],[2,3,2,1],[0,2,2,0]],[[1,1,2,1],[2,0,3,1],[3,3,2,1],[0,2,2,0]],[[1,1,2,1],[2,0,3,1],[2,4,2,1],[0,2,2,0]],[[1,1,2,1],[2,0,3,1],[2,3,2,1],[0,3,2,0]],[[1,1,2,1],[2,0,3,1],[2,3,2,1],[0,2,3,0]],[[2,1,2,1],[2,0,3,1],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[3,0,3,1],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,0,3,1],[3,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,0,3,1],[2,4,2,1],[1,1,2,0]],[[1,1,2,1],[2,0,3,1],[2,3,2,1],[2,1,2,0]],[[1,1,2,1],[2,3,3,1],[2,1,1,0],[2,2,1,1]],[[1,1,2,1],[2,3,3,1],[3,1,1,0],[1,2,1,1]],[[1,1,2,1],[2,4,3,1],[2,1,1,0],[1,2,1,1]],[[1,1,2,1],[3,3,3,1],[2,1,1,0],[1,2,1,1]],[[2,1,2,1],[2,3,3,1],[2,1,1,0],[1,2,1,1]],[[1,1,3,1],[2,0,3,1],[2,3,2,2],[0,0,2,1]],[[1,1,2,2],[2,0,3,1],[2,3,2,2],[0,0,2,1]],[[1,1,2,1],[2,0,4,1],[2,3,2,2],[0,0,2,1]],[[1,1,3,1],[2,0,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,2,2],[2,0,3,1],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[2,0,4,1],[2,3,2,2],[0,1,1,1]],[[1,1,3,1],[2,0,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,2,2],[2,0,3,1],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[2,0,4,1],[2,3,2,2],[0,1,2,0]],[[1,1,3,1],[2,0,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,2,2],[2,0,3,1],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[2,0,4,1],[2,3,2,2],[0,2,0,1]],[[1,1,3,1],[2,0,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,2,2],[2,0,3,1],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[2,0,4,1],[2,3,2,2],[0,2,1,0]],[[1,1,3,1],[2,0,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,2,2],[2,0,3,1],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[2,0,4,1],[2,3,2,2],[1,0,1,1]],[[1,1,3,1],[2,0,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,2,2],[2,0,3,1],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[2,0,4,1],[2,3,2,2],[1,0,2,0]],[[1,1,3,1],[2,0,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,2,2],[2,0,3,1],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[2,0,4,1],[2,3,2,2],[1,1,0,1]],[[1,1,3,1],[2,0,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,2,2],[2,0,3,1],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,0,4,1],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,3,3,1],[2,1,0,2],[2,2,1,0]],[[1,1,2,1],[2,3,3,1],[3,1,0,2],[1,2,1,0]],[[1,1,2,1],[2,4,3,1],[2,1,0,2],[1,2,1,0]],[[1,1,2,1],[3,3,3,1],[2,1,0,2],[1,2,1,0]],[[2,1,2,1],[2,3,3,1],[2,1,0,2],[1,2,1,0]],[[1,1,2,1],[2,3,3,1],[2,1,0,2],[2,2,0,1]],[[1,1,2,1],[2,3,3,1],[3,1,0,2],[1,2,0,1]],[[1,1,2,1],[2,4,3,1],[2,1,0,2],[1,2,0,1]],[[1,1,2,1],[3,3,3,1],[2,1,0,2],[1,2,0,1]],[[2,1,2,1],[2,3,3,1],[2,1,0,2],[1,2,0,1]],[[2,1,2,1],[2,0,3,1],[2,3,3,0],[0,1,2,1]],[[1,1,3,1],[2,0,3,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,2],[2,0,3,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[3,0,3,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,0,4,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,0,3,1],[3,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,0,3,1],[2,4,3,0],[0,1,2,1]],[[1,1,2,1],[2,0,3,1],[2,3,4,0],[0,1,2,1]],[[1,1,2,1],[2,0,3,1],[2,3,3,0],[0,1,3,1]],[[1,1,2,1],[2,0,3,1],[2,3,3,0],[0,1,2,2]],[[2,1,2,1],[2,0,3,1],[2,3,3,0],[0,2,1,1]],[[1,1,3,1],[2,0,3,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,2],[2,0,3,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[3,0,3,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,0,4,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,0,3,1],[3,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,0,3,1],[2,4,3,0],[0,2,1,1]],[[1,1,2,1],[2,0,3,1],[2,3,4,0],[0,2,1,1]],[[1,1,2,1],[2,0,3,1],[2,3,3,0],[0,3,1,1]],[[2,1,2,1],[2,0,3,1],[2,3,3,0],[1,0,2,1]],[[1,1,3,1],[2,0,3,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,2],[2,0,3,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[3,0,3,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,0,4,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,0,3,1],[3,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,0,3,1],[2,4,3,0],[1,0,2,1]],[[1,1,2,1],[2,0,3,1],[2,3,4,0],[1,0,2,1]],[[1,1,2,1],[2,0,3,1],[2,3,3,0],[2,0,2,1]],[[1,1,2,1],[2,0,3,1],[2,3,3,0],[1,0,3,1]],[[1,1,2,1],[2,0,3,1],[2,3,3,0],[1,0,2,2]],[[2,1,2,1],[2,0,3,1],[2,3,3,0],[1,1,1,1]],[[1,1,3,1],[2,0,3,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,2],[2,0,3,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[3,0,3,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,0,4,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,0,3,1],[3,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,0,3,1],[2,4,3,0],[1,1,1,1]],[[1,1,2,1],[2,0,3,1],[2,3,4,0],[1,1,1,1]],[[1,1,2,1],[2,0,3,1],[2,3,3,0],[2,1,1,1]],[[2,1,2,1],[2,0,3,1],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[3,0,3,1],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[2,0,3,1],[3,3,3,0],[1,2,0,1]],[[1,1,2,1],[2,0,3,1],[2,4,3,0],[1,2,0,1]],[[1,1,2,1],[2,0,3,1],[2,3,3,0],[2,2,0,1]],[[1,1,2,1],[2,3,3,1],[2,1,0,1],[1,3,2,0]],[[1,1,2,1],[2,3,3,1],[2,1,0,1],[2,2,2,0]],[[1,1,2,1],[2,3,3,1],[3,1,0,1],[1,2,2,0]],[[1,1,2,1],[2,4,3,1],[2,1,0,1],[1,2,2,0]],[[1,1,2,1],[3,3,3,1],[2,1,0,1],[1,2,2,0]],[[2,1,2,1],[2,3,3,1],[2,1,0,1],[1,2,2,0]],[[1,1,3,1],[2,0,3,1],[2,3,3,1],[0,0,2,1]],[[1,1,2,2],[2,0,3,1],[2,3,3,1],[0,0,2,1]],[[1,1,2,1],[2,0,4,1],[2,3,3,1],[0,0,2,1]],[[1,1,2,1],[2,0,3,1],[2,3,4,1],[0,0,2,1]],[[2,1,2,1],[2,0,3,1],[2,3,3,1],[0,1,1,1]],[[1,1,3,1],[2,0,3,1],[2,3,3,1],[0,1,1,1]],[[1,1,2,2],[2,0,3,1],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[3,0,3,1],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[2,0,4,1],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[2,0,3,1],[3,3,3,1],[0,1,1,1]],[[1,1,2,1],[2,0,3,1],[2,4,3,1],[0,1,1,1]],[[1,1,2,1],[2,0,3,1],[2,3,4,1],[0,1,1,1]],[[2,1,2,1],[2,0,3,1],[2,3,3,1],[0,1,2,0]],[[1,1,3,1],[2,0,3,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,2],[2,0,3,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[3,0,3,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,0,4,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,0,3,1],[3,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,0,3,1],[2,4,3,1],[0,1,2,0]],[[1,1,2,1],[2,0,3,1],[2,3,4,1],[0,1,2,0]],[[1,1,2,1],[2,0,3,1],[2,3,3,1],[0,1,3,0]],[[2,1,2,1],[2,0,3,1],[2,3,3,1],[0,2,0,1]],[[1,1,3,1],[2,0,3,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,2],[2,0,3,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[3,0,3,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,0,4,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,0,3,1],[3,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,0,3,1],[2,4,3,1],[0,2,0,1]],[[1,1,2,1],[2,0,3,1],[2,3,4,1],[0,2,0,1]],[[1,1,2,1],[2,0,3,1],[2,3,3,1],[0,3,0,1]],[[2,1,2,1],[2,0,3,1],[2,3,3,1],[0,2,1,0]],[[1,1,3,1],[2,0,3,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,2],[2,0,3,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[3,0,3,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,0,4,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,0,3,1],[3,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,0,3,1],[2,4,3,1],[0,2,1,0]],[[1,1,2,1],[2,0,3,1],[2,3,4,1],[0,2,1,0]],[[1,1,2,1],[2,0,3,1],[2,3,3,1],[0,3,1,0]],[[1,1,2,1],[2,3,3,1],[2,1,0,0],[1,3,2,1]],[[1,1,2,1],[2,3,3,1],[2,1,0,0],[2,2,2,1]],[[1,1,2,1],[2,3,3,1],[3,1,0,0],[1,2,2,1]],[[1,1,2,1],[2,4,3,1],[2,1,0,0],[1,2,2,1]],[[1,1,2,1],[3,3,3,1],[2,1,0,0],[1,2,2,1]],[[2,1,2,1],[2,3,3,1],[2,1,0,0],[1,2,2,1]],[[2,1,2,1],[2,0,3,1],[2,3,3,1],[1,0,1,1]],[[1,1,3,1],[2,0,3,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,2],[2,0,3,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[3,0,3,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,0,4,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,0,3,1],[3,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,0,3,1],[2,4,3,1],[1,0,1,1]],[[1,1,2,1],[2,0,3,1],[2,3,4,1],[1,0,1,1]],[[1,1,2,1],[2,0,3,1],[2,3,3,1],[2,0,1,1]],[[2,1,2,1],[2,0,3,1],[2,3,3,1],[1,0,2,0]],[[1,1,3,1],[2,0,3,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,2],[2,0,3,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[3,0,3,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,0,4,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,0,3,1],[3,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,0,3,1],[2,4,3,1],[1,0,2,0]],[[1,1,2,1],[2,0,3,1],[2,3,4,1],[1,0,2,0]],[[1,1,2,1],[2,0,3,1],[2,3,3,1],[2,0,2,0]],[[1,1,2,1],[2,0,3,1],[2,3,3,1],[1,0,3,0]],[[2,1,2,1],[2,0,3,1],[2,3,3,1],[1,1,0,1]],[[1,1,3,1],[2,0,3,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,2],[2,0,3,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[3,0,3,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[2,0,4,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[2,0,3,1],[3,3,3,1],[1,1,0,1]],[[1,1,2,1],[2,0,3,1],[2,4,3,1],[1,1,0,1]],[[1,1,2,1],[2,0,3,1],[2,3,4,1],[1,1,0,1]],[[1,1,2,1],[2,0,3,1],[2,3,3,1],[2,1,0,1]],[[2,1,2,1],[2,0,3,1],[2,3,3,1],[1,1,1,0]],[[1,1,3,1],[2,0,3,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,2],[2,0,3,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[3,0,3,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,0,4,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,0,3,1],[3,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,0,3,1],[2,4,3,1],[1,1,1,0]],[[1,1,2,1],[2,0,3,1],[2,3,4,1],[1,1,1,0]],[[1,1,2,1],[2,0,3,1],[2,3,3,1],[2,1,1,0]],[[2,1,2,1],[2,0,3,1],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[3,0,3,1],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,0,3,1],[3,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,0,3,1],[2,4,3,1],[1,2,0,0]],[[1,1,2,1],[2,0,3,1],[2,3,3,1],[2,2,0,0]],[[1,1,3,1],[2,0,3,1],[2,3,3,2],[0,1,0,1]],[[1,1,2,2],[2,0,3,1],[2,3,3,2],[0,1,0,1]],[[1,1,2,1],[2,0,4,1],[2,3,3,2],[0,1,0,1]],[[1,1,3,1],[2,0,3,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,2],[2,0,3,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[2,0,4,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,2],[2,0,3,2],[0,0,3,2],[1,2,2,1]],[[1,1,2,1],[2,0,3,3],[0,0,3,2],[1,2,2,1]],[[1,1,2,1],[2,0,3,2],[0,0,3,3],[1,2,2,1]],[[1,1,2,1],[2,0,3,2],[0,0,3,2],[1,2,3,1]],[[1,1,2,1],[2,0,3,2],[0,0,3,2],[1,2,2,2]],[[1,1,2,2],[2,0,3,2],[1,0,3,2],[0,2,2,1]],[[1,1,2,1],[2,0,3,3],[1,0,3,2],[0,2,2,1]],[[1,1,2,1],[2,0,3,2],[1,0,3,3],[0,2,2,1]],[[1,1,2,1],[2,0,3,2],[1,0,3,2],[0,2,3,1]],[[1,1,2,1],[2,0,3,2],[1,0,3,2],[0,2,2,2]],[[1,1,3,1],[2,0,3,2],[1,2,3,0],[1,2,2,0]],[[1,1,2,2],[2,0,3,2],[1,2,3,0],[1,2,2,0]],[[1,1,2,1],[2,0,4,2],[1,2,3,0],[1,2,2,0]],[[1,1,2,1],[2,4,3,1],[1,3,2,1],[1,1,0,0]],[[1,1,2,1],[3,3,3,1],[1,3,2,1],[1,1,0,0]],[[2,1,2,1],[2,3,3,1],[1,3,2,1],[1,1,0,0]],[[1,1,3,1],[2,0,3,2],[1,3,3,0],[1,1,2,0]],[[1,1,2,2],[2,0,3,2],[1,3,3,0],[1,1,2,0]],[[1,1,2,1],[2,0,4,2],[1,3,3,0],[1,1,2,0]],[[1,1,3,1],[2,0,3,2],[1,3,3,0],[1,2,0,1]],[[1,1,2,2],[2,0,3,2],[1,3,3,0],[1,2,0,1]],[[1,1,2,1],[2,0,4,2],[1,3,3,0],[1,2,0,1]],[[1,1,3,1],[2,0,3,2],[1,3,3,0],[1,2,1,0]],[[1,1,2,2],[2,0,3,2],[1,3,3,0],[1,2,1,0]],[[1,1,2,1],[2,0,4,2],[1,3,3,0],[1,2,1,0]],[[1,1,2,1],[2,4,3,1],[1,3,2,1],[0,2,0,0]],[[1,1,2,1],[3,3,3,1],[1,3,2,1],[0,2,0,0]],[[2,1,2,1],[2,3,3,1],[1,3,2,1],[0,2,0,0]],[[1,1,2,1],[2,4,3,1],[1,3,1,1],[1,2,0,0]],[[1,1,2,1],[3,3,3,1],[1,3,1,1],[1,2,0,0]],[[2,1,2,1],[2,3,3,1],[1,3,1,1],[1,2,0,0]],[[1,1,3,1],[2,0,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,2],[2,0,3,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,3,3],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,0,3,2],[2,0,1,3],[1,2,2,1]],[[1,1,2,1],[2,0,3,2],[2,0,1,2],[1,2,3,1]],[[1,1,2,1],[2,0,3,2],[2,0,1,2],[1,2,2,2]],[[1,1,3,1],[2,0,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,2],[2,0,3,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,1],[2,0,3,3],[2,0,2,2],[1,2,1,1]],[[1,1,2,1],[2,0,3,2],[2,0,2,3],[1,2,1,1]],[[1,1,2,1],[2,0,3,2],[2,0,2,2],[1,2,1,2]],[[1,1,3,1],[2,0,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,2],[2,0,3,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,3,3],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[2,0,3,2],[2,0,2,3],[1,2,2,0]],[[1,1,3,1],[2,0,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,2],[2,0,3,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[2,0,3,3],[2,0,3,0],[1,2,2,1]],[[1,1,3,1],[2,0,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,2,2],[2,0,3,2],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[2,0,3,3],[2,0,3,1],[1,2,1,1]],[[1,1,3,1],[2,0,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,2],[2,0,3,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,0,3,3],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,4,3,1],[1,3,1,1],[1,1,1,0]],[[1,1,2,1],[3,3,3,1],[1,3,1,1],[1,1,1,0]],[[2,1,2,1],[2,3,3,1],[1,3,1,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,1],[1,3,1,1],[1,1,0,1]],[[1,1,2,1],[3,3,3,1],[1,3,1,1],[1,1,0,1]],[[2,1,2,1],[2,3,3,1],[1,3,1,1],[1,1,0,1]],[[1,1,2,1],[2,4,3,1],[1,3,1,1],[1,0,2,0]],[[1,1,2,1],[3,3,3,1],[1,3,1,1],[1,0,2,0]],[[2,1,2,1],[2,3,3,1],[1,3,1,1],[1,0,2,0]],[[1,1,3,1],[2,0,3,2],[2,1,3,0],[1,2,2,0]],[[1,1,2,2],[2,0,3,2],[2,1,3,0],[1,2,2,0]],[[1,1,2,1],[2,0,4,2],[2,1,3,0],[1,2,2,0]],[[1,1,2,1],[2,4,3,1],[1,3,1,1],[1,0,1,1]],[[1,1,2,1],[3,3,3,1],[1,3,1,1],[1,0,1,1]],[[2,1,2,1],[2,3,3,1],[1,3,1,1],[1,0,1,1]],[[1,1,2,1],[2,4,3,1],[1,3,1,1],[0,2,1,0]],[[1,1,2,1],[3,3,3,1],[1,3,1,1],[0,2,1,0]],[[2,1,2,1],[2,3,3,1],[1,3,1,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,1],[1,3,1,1],[0,2,0,1]],[[1,1,2,1],[3,3,3,1],[1,3,1,1],[0,2,0,1]],[[2,1,2,1],[2,3,3,1],[1,3,1,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,1],[1,3,1,1],[0,1,2,0]],[[1,1,2,1],[3,3,3,1],[1,3,1,1],[0,1,2,0]],[[2,1,2,1],[2,3,3,1],[1,3,1,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,1],[1,3,1,1],[0,1,1,1]],[[1,1,2,1],[3,3,3,1],[1,3,1,1],[0,1,1,1]],[[2,1,2,1],[2,3,3,1],[1,3,1,1],[0,1,1,1]],[[1,1,2,1],[2,4,3,1],[1,3,1,0],[1,2,0,1]],[[1,1,2,1],[3,3,3,1],[1,3,1,0],[1,2,0,1]],[[2,1,2,1],[2,3,3,1],[1,3,1,0],[1,2,0,1]],[[1,1,2,1],[2,4,3,1],[1,3,1,0],[1,1,1,1]],[[1,1,2,1],[3,3,3,1],[1,3,1,0],[1,1,1,1]],[[2,1,2,1],[2,3,3,1],[1,3,1,0],[1,1,1,1]],[[1,1,2,1],[2,4,3,1],[1,3,1,0],[1,0,2,1]],[[1,1,2,1],[3,3,3,1],[1,3,1,0],[1,0,2,1]],[[2,1,2,1],[2,3,3,1],[1,3,1,0],[1,0,2,1]],[[1,1,2,1],[2,4,3,1],[1,3,1,0],[0,2,1,1]],[[1,1,2,1],[3,3,3,1],[1,3,1,0],[0,2,1,1]],[[2,1,2,1],[2,3,3,1],[1,3,1,0],[0,2,1,1]],[[1,1,2,1],[2,4,3,1],[1,3,1,0],[0,1,2,1]],[[1,1,2,1],[3,3,3,1],[1,3,1,0],[0,1,2,1]],[[2,1,2,1],[2,3,3,1],[1,3,1,0],[0,1,2,1]],[[1,1,2,1],[2,4,3,1],[1,3,0,2],[1,2,0,0]],[[1,1,2,1],[3,3,3,1],[1,3,0,2],[1,2,0,0]],[[2,1,2,1],[2,3,3,1],[1,3,0,2],[1,2,0,0]],[[1,1,2,1],[2,4,3,1],[1,3,0,2],[1,1,1,0]],[[1,1,2,1],[3,3,3,1],[1,3,0,2],[1,1,1,0]],[[2,1,2,1],[2,3,3,1],[1,3,0,2],[1,1,1,0]],[[1,1,2,1],[2,4,3,1],[1,3,0,2],[1,1,0,1]],[[1,1,2,1],[3,3,3,1],[1,3,0,2],[1,1,0,1]],[[2,1,2,1],[2,3,3,1],[1,3,0,2],[1,1,0,1]],[[1,1,2,1],[2,4,3,1],[1,3,0,2],[1,0,2,0]],[[1,1,2,1],[3,3,3,1],[1,3,0,2],[1,0,2,0]],[[2,1,2,1],[2,3,3,1],[1,3,0,2],[1,0,2,0]],[[1,1,2,1],[2,4,3,1],[1,3,0,2],[1,0,1,1]],[[1,1,3,1],[2,0,3,2],[2,2,3,0],[0,2,2,0]],[[1,1,2,2],[2,0,3,2],[2,2,3,0],[0,2,2,0]],[[1,1,2,1],[2,0,4,2],[2,2,3,0],[0,2,2,0]],[[1,1,2,1],[3,3,3,1],[1,3,0,2],[1,0,1,1]],[[2,1,2,1],[2,3,3,1],[1,3,0,2],[1,0,1,1]],[[1,1,2,1],[2,4,3,1],[1,3,0,2],[0,2,1,0]],[[1,1,2,1],[3,3,3,1],[1,3,0,2],[0,2,1,0]],[[2,1,2,1],[2,3,3,1],[1,3,0,2],[0,2,1,0]],[[1,1,2,1],[2,4,3,1],[1,3,0,2],[0,2,0,1]],[[1,1,2,1],[3,3,3,1],[1,3,0,2],[0,2,0,1]],[[2,1,2,1],[2,3,3,1],[1,3,0,2],[0,2,0,1]],[[1,1,2,1],[2,4,3,1],[1,3,0,2],[0,1,2,0]],[[1,1,2,1],[3,3,3,1],[1,3,0,2],[0,1,2,0]],[[2,1,2,1],[2,3,3,1],[1,3,0,2],[0,1,2,0]],[[1,1,2,1],[2,4,3,1],[1,3,0,2],[0,1,1,1]],[[1,1,2,1],[3,3,3,1],[1,3,0,2],[0,1,1,1]],[[2,1,2,1],[2,3,3,1],[1,3,0,2],[0,1,1,1]],[[1,1,2,1],[2,4,3,1],[1,3,0,1],[1,1,2,0]],[[1,1,2,1],[3,3,3,1],[1,3,0,1],[1,1,2,0]],[[2,1,2,1],[2,3,3,1],[1,3,0,1],[1,1,2,0]],[[1,1,2,1],[2,4,3,1],[1,3,0,1],[0,2,2,0]],[[1,1,2,1],[3,3,3,1],[1,3,0,1],[0,2,2,0]],[[2,1,2,1],[2,3,3,1],[1,3,0,1],[0,2,2,0]],[[1,1,2,1],[2,4,3,1],[1,3,0,0],[1,1,2,1]],[[1,1,2,1],[3,3,3,1],[1,3,0,0],[1,1,2,1]],[[2,1,2,1],[2,3,3,1],[1,3,0,0],[1,1,2,1]],[[1,1,2,1],[2,4,3,1],[1,3,0,0],[0,2,2,1]],[[1,1,2,1],[3,3,3,1],[1,3,0,0],[0,2,2,1]],[[2,1,2,1],[2,3,3,1],[1,3,0,0],[0,2,2,1]],[[1,1,3,1],[2,0,3,2],[2,3,3,0],[0,1,1,1]],[[1,1,2,2],[2,0,3,2],[2,3,3,0],[0,1,1,1]],[[1,1,2,1],[2,0,4,2],[2,3,3,0],[0,1,1,1]],[[1,1,3,1],[2,0,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,2,2],[2,0,3,2],[2,3,3,0],[0,1,2,0]],[[1,1,2,1],[2,0,4,2],[2,3,3,0],[0,1,2,0]],[[1,1,3,1],[2,0,3,2],[2,3,3,0],[0,2,0,1]],[[1,1,2,2],[2,0,3,2],[2,3,3,0],[0,2,0,1]],[[1,1,2,1],[2,0,4,2],[2,3,3,0],[0,2,0,1]],[[1,1,3,1],[2,0,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,2,2],[2,0,3,2],[2,3,3,0],[0,2,1,0]],[[1,1,2,1],[2,0,4,2],[2,3,3,0],[0,2,1,0]],[[1,1,3,1],[2,0,3,2],[2,3,3,0],[1,0,1,1]],[[1,1,2,2],[2,0,3,2],[2,3,3,0],[1,0,1,1]],[[1,1,2,1],[2,0,4,2],[2,3,3,0],[1,0,1,1]],[[1,1,3,1],[2,0,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,2,2],[2,0,3,2],[2,3,3,0],[1,0,2,0]],[[1,1,2,1],[2,0,4,2],[2,3,3,0],[1,0,2,0]],[[1,1,3,1],[2,0,3,2],[2,3,3,0],[1,1,0,1]],[[1,1,2,2],[2,0,3,2],[2,3,3,0],[1,1,0,1]],[[1,1,2,1],[2,0,4,2],[2,3,3,0],[1,1,0,1]],[[1,1,3,1],[2,0,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,2,2],[2,0,3,2],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[2,0,4,2],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[2,3,4,1],[0,3,3,2],[0,0,0,1]],[[1,1,2,1],[2,4,3,1],[0,3,3,2],[0,0,0,1]],[[1,1,2,2],[2,3,3,1],[0,3,3,2],[0,0,0,1]],[[1,1,3,1],[2,3,3,1],[0,3,3,2],[0,0,0,1]],[[1,1,2,1],[2,3,4,1],[0,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,4,3,1],[0,3,3,1],[1,1,0,0]],[[1,1,2,2],[2,3,3,1],[0,3,3,1],[1,1,0,0]],[[1,1,3,1],[2,3,3,1],[0,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,3,4,1],[0,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,4,3,1],[0,3,3,1],[0,2,0,0]],[[1,1,2,2],[2,3,3,1],[0,3,3,1],[0,2,0,0]],[[1,1,3,1],[2,3,3,1],[0,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,3,3,1],[0,3,4,1],[0,0,2,0]],[[1,1,2,1],[2,3,4,1],[0,3,3,1],[0,0,2,0]],[[1,1,2,1],[2,4,3,1],[0,3,3,1],[0,0,2,0]],[[1,1,2,2],[2,3,3,1],[0,3,3,1],[0,0,2,0]],[[1,1,3,1],[2,3,3,1],[0,3,3,1],[0,0,2,0]],[[1,1,2,1],[2,3,3,1],[0,3,4,1],[0,0,1,1]],[[1,1,2,1],[2,3,4,1],[0,3,3,1],[0,0,1,1]],[[1,1,2,1],[2,4,3,1],[0,3,3,1],[0,0,1,1]],[[1,1,2,2],[2,3,3,1],[0,3,3,1],[0,0,1,1]],[[1,1,3,1],[2,3,3,1],[0,3,3,1],[0,0,1,1]],[[1,1,2,1],[2,3,4,1],[0,3,3,0],[1,1,1,0]],[[1,1,2,1],[2,4,3,1],[0,3,3,0],[1,1,1,0]],[[1,1,2,2],[2,3,3,1],[0,3,3,0],[1,1,1,0]],[[1,1,3,1],[2,3,3,1],[0,3,3,0],[1,1,1,0]],[[1,1,2,1],[2,3,4,1],[0,3,3,0],[1,0,2,0]],[[1,1,2,1],[2,4,3,1],[0,3,3,0],[1,0,2,0]],[[1,1,2,2],[2,3,3,1],[0,3,3,0],[1,0,2,0]],[[1,1,3,1],[2,3,3,1],[0,3,3,0],[1,0,2,0]],[[1,1,2,1],[2,3,4,1],[0,3,3,0],[0,2,1,0]],[[1,1,2,1],[2,4,3,1],[0,3,3,0],[0,2,1,0]],[[1,1,2,2],[2,3,3,1],[0,3,3,0],[0,2,1,0]],[[1,1,3,1],[2,3,3,1],[0,3,3,0],[0,2,1,0]],[[1,1,2,1],[2,3,4,1],[0,3,3,0],[0,1,2,0]],[[1,1,2,1],[2,4,3,1],[0,3,3,0],[0,1,2,0]],[[1,1,2,2],[2,3,3,1],[0,3,3,0],[0,1,2,0]],[[1,1,3,1],[2,3,3,1],[0,3,3,0],[0,1,2,0]],[[1,1,2,1],[2,3,3,1],[0,3,4,0],[0,0,2,1]],[[1,1,2,1],[2,3,4,1],[0,3,3,0],[0,0,2,1]],[[1,1,2,1],[2,4,3,1],[0,3,3,0],[0,0,2,1]],[[1,1,2,2],[2,3,3,1],[0,3,3,0],[0,0,2,1]],[[1,1,3,1],[2,3,3,1],[0,3,3,0],[0,0,2,1]],[[1,1,2,1],[2,3,4,1],[0,3,2,2],[0,0,2,0]],[[1,1,2,1],[2,4,3,1],[0,3,2,2],[0,0,2,0]],[[1,1,2,2],[2,3,3,1],[0,3,2,2],[0,0,2,0]],[[1,1,3,1],[2,3,3,1],[0,3,2,2],[0,0,2,0]],[[1,1,2,1],[2,3,4,1],[0,3,2,2],[0,0,1,1]],[[1,1,2,1],[2,4,3,1],[0,3,2,2],[0,0,1,1]],[[1,1,2,2],[2,3,3,1],[0,3,2,2],[0,0,1,1]],[[1,1,3,1],[2,3,3,1],[0,3,2,2],[0,0,1,1]],[[1,1,2,1],[2,3,4,1],[0,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,1],[0,3,2,1],[1,1,1,0]],[[1,1,2,2],[2,3,3,1],[0,3,2,1],[1,1,1,0]],[[1,1,3,1],[2,3,3,1],[0,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,3,4,1],[0,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,4,3,1],[0,3,2,1],[1,1,0,1]],[[1,1,2,2],[2,3,3,1],[0,3,2,1],[1,1,0,1]],[[1,1,3,1],[2,3,3,1],[0,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,3,4,1],[0,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,4,3,1],[0,3,2,1],[1,0,2,0]],[[1,1,2,2],[2,3,3,1],[0,3,2,1],[1,0,2,0]],[[1,1,3,1],[2,3,3,1],[0,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,3,4,1],[0,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,4,3,1],[0,3,2,1],[1,0,1,1]],[[1,1,2,2],[2,3,3,1],[0,3,2,1],[1,0,1,1]],[[1,1,3,1],[2,3,3,1],[0,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,3,4,1],[0,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,1],[0,3,2,1],[0,2,1,0]],[[1,1,2,2],[2,3,3,1],[0,3,2,1],[0,2,1,0]],[[1,1,3,1],[2,3,3,1],[0,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,3,4,1],[0,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,1],[0,3,2,1],[0,2,0,1]],[[1,1,2,2],[2,3,3,1],[0,3,2,1],[0,2,0,1]],[[1,1,3,1],[2,3,3,1],[0,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,3,4,1],[0,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,1],[0,3,2,1],[0,1,2,0]],[[1,1,2,2],[2,3,3,1],[0,3,2,1],[0,1,2,0]],[[1,1,3,1],[2,3,3,1],[0,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,3,4,1],[0,3,2,1],[0,1,1,1]],[[1,1,2,1],[2,4,3,1],[0,3,2,1],[0,1,1,1]],[[1,1,2,2],[2,3,3,1],[0,3,2,1],[0,1,1,1]],[[1,1,3,1],[2,3,3,1],[0,3,2,1],[0,1,1,1]],[[1,1,2,1],[2,3,4,1],[0,3,2,0],[1,1,1,1]],[[1,1,2,1],[2,4,3,1],[0,3,2,0],[1,1,1,1]],[[1,1,2,2],[2,3,3,1],[0,3,2,0],[1,1,1,1]],[[1,1,3,1],[2,3,3,1],[0,3,2,0],[1,1,1,1]],[[1,1,2,1],[2,3,4,1],[0,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,4,3,1],[0,3,2,0],[1,0,2,1]],[[1,1,2,2],[2,3,3,1],[0,3,2,0],[1,0,2,1]],[[1,1,3,1],[2,3,3,1],[0,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,3,4,1],[0,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,4,3,1],[0,3,2,0],[0,2,1,1]],[[1,1,2,2],[2,3,3,1],[0,3,2,0],[0,2,1,1]],[[1,1,3,1],[2,3,3,1],[0,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,3,4,1],[0,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,4,3,1],[0,3,2,0],[0,1,2,1]],[[1,1,2,2],[2,3,3,1],[0,3,2,0],[0,1,2,1]],[[1,1,3,1],[2,3,3,1],[0,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,3,4,1],[0,3,1,2],[1,1,1,0]],[[1,1,2,1],[2,4,3,1],[0,3,1,2],[1,1,1,0]],[[1,1,2,2],[2,3,3,1],[0,3,1,2],[1,1,1,0]],[[1,1,3,1],[2,3,3,1],[0,3,1,2],[1,1,1,0]],[[1,1,2,1],[2,3,4,1],[0,3,1,2],[1,1,0,1]],[[1,1,2,1],[2,4,3,1],[0,3,1,2],[1,1,0,1]],[[1,1,2,2],[2,3,3,1],[0,3,1,2],[1,1,0,1]],[[1,1,3,1],[2,3,3,1],[0,3,1,2],[1,1,0,1]],[[1,1,2,1],[2,3,4,1],[0,3,1,2],[1,0,2,0]],[[1,1,2,1],[2,4,3,1],[0,3,1,2],[1,0,2,0]],[[1,1,2,2],[2,3,3,1],[0,3,1,2],[1,0,2,0]],[[1,1,3,1],[2,3,3,1],[0,3,1,2],[1,0,2,0]],[[1,1,2,1],[2,3,4,1],[0,3,1,2],[1,0,1,1]],[[1,1,2,1],[2,4,3,1],[0,3,1,2],[1,0,1,1]],[[1,1,2,2],[2,3,3,1],[0,3,1,2],[1,0,1,1]],[[1,1,3,1],[2,3,3,1],[0,3,1,2],[1,0,1,1]],[[1,1,2,1],[2,3,4,1],[0,3,1,2],[0,2,1,0]],[[1,1,2,1],[2,4,3,1],[0,3,1,2],[0,2,1,0]],[[1,1,2,2],[2,3,3,1],[0,3,1,2],[0,2,1,0]],[[1,1,3,1],[2,3,3,1],[0,3,1,2],[0,2,1,0]],[[1,1,2,1],[2,3,4,1],[0,3,1,2],[0,2,0,1]],[[1,1,2,1],[2,4,3,1],[0,3,1,2],[0,2,0,1]],[[1,1,2,2],[2,3,3,1],[0,3,1,2],[0,2,0,1]],[[1,1,3,1],[2,3,3,1],[0,3,1,2],[0,2,0,1]],[[1,1,2,1],[2,3,4,1],[0,3,1,2],[0,1,2,0]],[[1,1,2,1],[2,4,3,1],[0,3,1,2],[0,1,2,0]],[[1,1,2,2],[2,3,3,1],[0,3,1,2],[0,1,2,0]],[[1,1,3,1],[2,3,3,1],[0,3,1,2],[0,1,2,0]],[[1,1,2,1],[2,3,4,1],[0,3,1,2],[0,1,1,1]],[[1,1,2,1],[2,4,3,1],[0,3,1,2],[0,1,1,1]],[[1,1,2,2],[2,3,3,1],[0,3,1,2],[0,1,1,1]],[[1,1,3,1],[2,3,3,1],[0,3,1,2],[0,1,1,1]],[[1,1,2,1],[2,1,0,0],[3,3,3,1],[1,2,2,1]],[[1,1,2,1],[2,1,0,0],[2,3,3,1],[2,2,2,1]],[[1,1,2,1],[2,1,0,0],[2,3,3,1],[1,3,2,1]],[[1,1,2,1],[2,1,0,0],[2,3,3,1],[1,2,3,1]],[[1,1,2,1],[2,1,0,0],[2,3,3,1],[1,2,2,2]],[[1,1,2,1],[2,1,0,0],[3,3,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,0],[2,3,3,2],[2,2,2,0]],[[1,1,2,1],[2,1,0,0],[2,3,3,2],[1,3,2,0]],[[1,1,2,1],[2,1,0,0],[2,3,3,2],[1,2,3,0]],[[1,1,2,1],[2,1,0,1],[3,3,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,1],[2,3,1,2],[2,2,2,1]],[[1,1,2,1],[2,1,0,1],[2,3,1,2],[1,3,2,1]],[[1,1,2,1],[2,1,0,1],[2,3,1,2],[1,2,3,1]],[[1,1,2,1],[2,1,0,1],[2,3,1,2],[1,2,2,2]],[[1,1,2,1],[2,1,0,1],[3,3,2,1],[1,2,2,1]],[[1,1,2,1],[2,1,0,1],[2,3,2,1],[2,2,2,1]],[[1,1,2,1],[2,1,0,1],[2,3,2,1],[1,3,2,1]],[[1,1,2,1],[2,1,0,1],[2,3,2,1],[1,2,3,1]],[[1,1,2,1],[2,1,0,1],[2,3,2,1],[1,2,2,2]],[[1,1,2,1],[2,1,0,1],[3,3,2,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,1],[2,3,2,2],[2,2,2,0]],[[1,1,2,1],[2,1,0,1],[2,3,2,2],[1,3,2,0]],[[1,1,2,1],[2,1,0,1],[2,3,2,2],[1,2,3,0]],[[1,1,2,1],[2,1,0,1],[3,3,3,1],[1,2,1,1]],[[1,1,2,1],[2,1,0,1],[2,3,3,1],[2,2,1,1]],[[1,1,2,1],[2,1,0,1],[2,3,3,1],[1,3,1,1]],[[1,1,2,1],[2,1,0,1],[3,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,1,0,1],[2,3,3,2],[2,2,0,1]],[[1,1,2,1],[2,1,0,1],[2,3,3,2],[1,3,0,1]],[[1,1,2,1],[2,1,0,1],[3,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,1,0,1],[2,3,3,2],[2,2,1,0]],[[1,1,2,1],[2,1,0,1],[2,3,3,2],[1,3,1,0]],[[1,1,3,1],[2,1,0,2],[1,2,2,2],[1,2,2,1]],[[1,1,2,2],[2,1,0,2],[1,2,2,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,3],[1,2,2,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[2,1,0,2],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[2,1,0,2],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[2,1,0,2],[1,2,2,2],[1,2,2,2]],[[1,1,2,1],[2,1,0,2],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[2,1,0,2],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[2,1,0,2],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[2,1,0,2],[1,2,3,1],[1,2,2,2]],[[1,1,3,1],[2,1,0,2],[1,2,3,2],[1,2,1,1]],[[1,1,2,2],[2,1,0,2],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[2,1,0,3],[1,2,3,2],[1,2,1,1]],[[1,1,2,1],[2,1,0,2],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[2,1,0,2],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[2,1,0,2],[1,2,3,2],[1,2,1,2]],[[1,1,3,1],[2,1,0,2],[1,2,3,2],[1,2,2,0]],[[1,1,2,2],[2,1,0,2],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,3],[1,2,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,2],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,2],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[2,1,0,2],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[2,1,0,2],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[2,1,0,2],[1,2,3,2],[1,2,3,0]],[[1,1,3,1],[2,1,0,2],[1,3,1,2],[1,2,2,1]],[[1,1,2,2],[2,1,0,2],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,3],[1,3,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[1,3,1,3],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[2,1,0,2],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[2,1,0,2],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[2,1,0,2],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[2,1,0,2],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[2,1,0,2],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[2,1,0,2],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[2,1,0,2],[1,3,2,1],[1,2,2,2]],[[1,1,3,1],[2,1,0,2],[1,3,2,2],[1,1,2,1]],[[1,1,2,2],[2,1,0,2],[1,3,2,2],[1,1,2,1]],[[1,1,2,1],[2,1,0,3],[1,3,2,2],[1,1,2,1]],[[1,1,2,1],[2,1,0,2],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[2,1,0,2],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[2,1,0,2],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[2,1,0,2],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,2],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[2,1,0,2],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[2,1,0,2],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[2,1,0,2],[1,4,3,1],[1,1,2,1]],[[1,1,2,1],[2,1,0,2],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[2,1,0,2],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[2,1,0,2],[1,3,3,1],[1,1,2,2]],[[1,1,2,1],[2,1,0,2],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[2,1,0,2],[1,3,4,1],[1,2,1,1]],[[1,1,2,1],[2,1,0,2],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[2,1,0,2],[1,3,3,1],[1,3,1,1]],[[1,1,3,1],[2,1,0,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,2],[2,1,0,2],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[2,1,0,3],[1,3,3,2],[1,1,1,1]],[[1,1,2,1],[2,1,0,2],[1,4,3,2],[1,1,1,1]],[[1,1,2,1],[2,1,0,2],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[2,1,0,2],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[2,1,0,2],[1,3,3,2],[1,1,1,2]],[[1,1,3,1],[2,1,0,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,2],[2,1,0,2],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[2,1,0,3],[1,3,3,2],[1,1,2,0]],[[1,1,2,1],[2,1,0,2],[1,4,3,2],[1,1,2,0]],[[1,1,2,1],[2,1,0,2],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[2,1,0,2],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[2,1,0,2],[1,3,3,2],[1,1,3,0]],[[1,1,3,1],[2,1,0,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,2],[2,1,0,2],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,1,0,3],[1,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,1,0,2],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[2,1,0,2],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[2,1,0,2],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[2,1,0,2],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[2,1,0,2],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[2,1,0,2],[1,3,3,2],[1,2,0,2]],[[1,1,3,1],[2,1,0,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,2],[2,1,0,2],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,1,0,3],[1,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,1,0,2],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[2,1,0,2],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[2,1,0,2],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[2,1,0,2],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[2,1,0,2],[1,3,3,2],[1,3,1,0]],[[1,1,2,1],[2,4,3,1],[0,3,1,1],[1,2,1,0]],[[1,1,2,1],[3,3,3,1],[0,3,1,1],[1,2,1,0]],[[2,1,2,1],[2,3,3,1],[0,3,1,1],[1,2,1,0]],[[1,1,2,1],[2,4,3,1],[0,3,1,1],[1,2,0,1]],[[1,1,2,1],[3,3,3,1],[0,3,1,1],[1,2,0,1]],[[2,1,2,1],[2,3,3,1],[0,3,1,1],[1,2,0,1]],[[2,1,2,1],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,3,1],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,2],[2,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[3,1,0,2],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,3],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[3,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[2,1,0,2],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[2,1,0,2],[2,1,2,2],[1,2,2,2]],[[2,1,2,1],[2,1,0,2],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[3,1,0,2],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[3,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[2,1,0,2],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[2,1,0,2],[2,1,3,1],[1,2,2,2]],[[1,1,3,1],[2,1,0,2],[2,1,3,2],[1,2,1,1]],[[1,1,2,2],[2,1,0,2],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[2,1,0,3],[2,1,3,2],[1,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,1,3,2],[1,2,1,2]],[[2,1,2,1],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,3,1],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,2],[2,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[3,1,0,2],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,3],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,2],[3,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[2,1,0,2],[2,1,3,2],[1,2,3,0]],[[2,1,2,1],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,3,1],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,2],[2,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[3,1,0,2],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,3],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,1,3],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[2,1,0,2],[2,2,1,2],[1,2,2,2]],[[2,1,2,1],[2,1,0,2],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[3,1,0,2],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[2,1,0,2],[2,2,2,1],[1,2,2,2]],[[1,1,3,1],[2,1,0,2],[2,2,2,2],[0,2,2,1]],[[1,1,2,2],[2,1,0,2],[2,2,2,2],[0,2,2,1]],[[1,1,2,1],[2,1,0,3],[2,2,2,2],[0,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[2,1,0,2],[2,2,2,2],[0,2,2,2]],[[2,1,2,1],[2,1,0,2],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[3,1,0,2],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,2],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[2,1,0,2],[2,2,2,2],[1,2,3,0]],[[1,1,2,1],[2,1,0,2],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[2,1,0,2],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[2,1,0,2],[2,2,3,1],[0,2,2,2]],[[2,1,2,1],[2,1,0,2],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[3,1,0,2],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,1,0,2],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,2,3,1],[1,3,1,1]],[[1,1,3,1],[2,1,0,2],[2,2,3,2],[0,2,1,1]],[[1,1,2,2],[2,1,0,2],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[2,1,0,3],[2,2,3,2],[0,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,2,3,2],[0,2,1,2]],[[1,1,3,1],[2,1,0,2],[2,2,3,2],[0,2,2,0]],[[1,1,2,2],[2,1,0,2],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[2,1,0,3],[2,2,3,2],[0,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[2,1,0,2],[2,2,3,2],[0,2,3,0]],[[2,1,2,1],[2,1,0,2],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[3,1,0,2],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,1,0,2],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,1,0,2],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[2,1,0,2],[2,2,3,2],[1,3,0,1]],[[2,1,2,1],[2,1,0,2],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[3,1,0,2],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,1,0,2],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,1,0,2],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[2,1,0,2],[2,2,3,2],[1,3,1,0]],[[1,1,2,1],[2,3,4,1],[0,3,1,1],[0,2,2,0]],[[1,1,2,1],[2,4,3,1],[0,3,1,1],[0,2,2,0]],[[1,1,2,2],[2,3,3,1],[0,3,1,1],[0,2,2,0]],[[1,1,3,1],[2,3,3,1],[0,3,1,1],[0,2,2,0]],[[2,1,2,1],[2,1,0,2],[2,3,0,2],[1,2,2,1]],[[1,1,2,1],[3,1,0,2],[2,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[3,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,0,2],[2,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,0,2],[1,3,2,1]],[[2,1,2,1],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,3,1],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,2],[2,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[3,1,0,2],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,1,0,3],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,1,0,2],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,1,3],[0,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[2,1,0,2],[2,3,1,2],[0,2,2,2]],[[2,1,2,1],[2,1,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[3,1,0,2],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,1,0,2],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,1,0,2],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,1,2],[2,1,2,1]],[[1,1,2,1],[2,1,0,2],[3,3,2,0],[1,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,0],[2,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,0],[1,3,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,0],[1,2,3,1]],[[2,1,2,1],[2,1,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[3,1,0,2],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,1,0,2],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,1],[0,2,2,2]],[[2,1,2,1],[2,1,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[3,1,0,2],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,1,0,2],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,1,0,2],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,1],[2,1,2,1]],[[1,1,2,1],[2,1,0,2],[3,3,2,1],[1,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,2,1],[2,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,2,1],[1,3,2,0]],[[1,1,3,1],[2,1,0,2],[2,3,2,2],[0,1,2,1]],[[1,1,2,2],[2,1,0,2],[2,3,2,2],[0,1,2,1]],[[1,1,2,1],[2,1,0,3],[2,3,2,2],[0,1,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,2],[0,1,2,2]],[[2,1,2,1],[2,1,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[3,1,0,2],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,1,0,2],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,2,2],[0,2,3,0]],[[1,1,3,1],[2,1,0,2],[2,3,2,2],[1,0,2,1]],[[1,1,2,2],[2,1,0,2],[2,3,2,2],[1,0,2,1]],[[1,1,2,1],[2,1,0,3],[2,3,2,2],[1,0,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[2,1,0,2],[2,3,2,2],[1,0,2,2]],[[2,1,2,1],[2,1,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[3,1,0,2],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,1,0,2],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,1,0,2],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,2,2],[2,1,2,0]],[[1,1,2,1],[2,4,3,1],[0,3,1,0],[1,2,1,1]],[[1,1,2,1],[3,3,3,1],[0,3,1,0],[1,2,1,1]],[[2,1,2,1],[2,3,3,1],[0,3,1,0],[1,2,1,1]],[[1,1,2,1],[2,3,4,1],[0,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,4,3,1],[0,3,1,0],[0,2,2,1]],[[1,1,2,2],[2,3,3,1],[0,3,1,0],[0,2,2,1]],[[1,1,3,1],[2,3,3,1],[0,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,1,0,2],[3,3,3,0],[1,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,0],[2,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,0],[1,3,1,1]],[[2,1,2,1],[2,1,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[3,1,0,2],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,1,0,2],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,1,0,2],[2,4,3,1],[0,1,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,1],[0,1,2,2]],[[2,1,2,1],[2,1,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[3,1,0,2],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,1,0,2],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,4,1],[0,2,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,1],[0,3,1,1]],[[2,1,2,1],[2,1,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[3,1,0,2],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,1,0,2],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,1,0,2],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,1],[2,0,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,1],[1,0,2,2]],[[2,1,2,1],[2,1,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[3,1,0,2],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,1,0,2],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,1,0,2],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,4,1],[1,1,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,1],[2,1,1,1]],[[1,1,2,1],[2,1,0,2],[3,3,3,1],[1,2,1,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,1],[2,2,1,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,1],[1,3,1,0]],[[1,1,3,1],[2,1,0,2],[2,3,3,2],[0,0,2,1]],[[1,1,2,2],[2,1,0,2],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[2,1,0,3],[2,3,3,2],[0,0,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[0,0,2,2]],[[2,1,2,1],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,3,1],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,2],[2,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[3,1,0,2],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,1,0,3],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,1,0,2],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,1,0,2],[2,4,3,2],[0,1,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[0,1,1,2]],[[2,1,2,1],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,3,1],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,2],[2,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[3,1,0,2],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,1,0,3],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,1,0,2],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,1,0,2],[2,4,3,2],[0,1,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[0,1,3,0]],[[2,1,2,1],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,3,1],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,2],[2,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[3,1,0,2],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,1,0,3],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,1,0,2],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,1,0,2],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[2,1,0,2],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[0,3,0,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[0,2,0,2]],[[2,1,2,1],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,3,1],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,2],[2,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[3,1,0,2],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,1,0,3],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,1,0,2],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,1,0,2],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[2,1,0,2],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,3],[0,2,1,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[0,3,1,0]],[[1,1,2,1],[2,4,3,1],[0,3,0,2],[1,2,1,0]],[[1,1,2,1],[3,3,3,1],[0,3,0,2],[1,2,1,0]],[[2,1,2,1],[2,3,3,1],[0,3,0,2],[1,2,1,0]],[[2,1,2,1],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,3,1],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,2],[2,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[3,1,0,2],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,1,0,3],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,1,0,2],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,1,0,2],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[2,0,1,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[1,0,1,2]],[[2,1,2,1],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,3,1],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,2],[2,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[3,1,0,2],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,1,0,3],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,1,0,2],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,1,0,2],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[1,0,3,0]],[[2,1,2,1],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,3,1],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,2],[2,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[3,1,0,2],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,1,0,3],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,1,0,2],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,1,0,2],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[2,1,0,2],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[1,1,0,2]],[[2,1,2,1],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,3,1],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,2],[2,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[3,1,0,2],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,1,0,3],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,1,0,2],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,1,0,2],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[2,1,0,2],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,3],[1,1,1,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[2,1,1,0]],[[1,1,2,1],[2,4,3,1],[0,3,0,2],[1,2,0,1]],[[1,1,2,1],[3,3,3,1],[0,3,0,2],[1,2,0,1]],[[2,1,2,1],[2,3,3,1],[0,3,0,2],[1,2,0,1]],[[1,1,2,1],[2,3,4,1],[0,3,0,2],[1,0,2,1]],[[1,1,2,1],[2,4,3,1],[0,3,0,2],[1,0,2,1]],[[2,1,2,1],[2,1,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[3,1,0,2],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,1,0,2],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,1,0,2],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[2,1,0,2],[2,3,3,2],[2,2,0,0]],[[1,1,2,2],[2,3,3,1],[0,3,0,2],[1,0,2,1]],[[1,1,3,1],[2,3,3,1],[0,3,0,2],[1,0,2,1]],[[1,1,2,1],[2,3,4,1],[0,3,0,2],[0,2,2,0]],[[1,1,2,1],[2,4,3,1],[0,3,0,2],[0,2,2,0]],[[1,1,2,2],[2,3,3,1],[0,3,0,2],[0,2,2,0]],[[1,1,3,1],[2,3,3,1],[0,3,0,2],[0,2,2,0]],[[1,1,2,1],[2,3,4,1],[0,3,0,2],[0,2,1,1]],[[1,1,2,1],[2,4,3,1],[0,3,0,2],[0,2,1,1]],[[1,1,2,2],[2,3,3,1],[0,3,0,2],[0,2,1,1]],[[1,1,3,1],[2,3,3,1],[0,3,0,2],[0,2,1,1]],[[1,1,2,1],[2,3,4,1],[0,3,0,2],[0,1,2,1]],[[1,1,2,1],[2,4,3,1],[0,3,0,2],[0,1,2,1]],[[1,1,2,2],[2,3,3,1],[0,3,0,2],[0,1,2,1]],[[1,1,3,1],[2,3,3,1],[0,3,0,2],[0,1,2,1]],[[1,1,2,1],[2,4,3,1],[0,3,0,1],[1,2,2,0]],[[1,1,2,1],[3,3,3,1],[0,3,0,1],[1,2,2,0]],[[2,1,2,1],[2,3,3,1],[0,3,0,1],[1,2,2,0]],[[1,1,2,1],[2,3,4,1],[0,3,0,1],[0,2,2,1]],[[1,1,2,1],[2,4,3,1],[0,3,0,1],[0,2,2,1]],[[1,1,2,2],[2,3,3,1],[0,3,0,1],[0,2,2,1]],[[1,1,3,1],[2,3,3,1],[0,3,0,1],[0,2,2,1]],[[1,1,2,1],[2,4,3,1],[0,3,0,0],[1,2,2,1]],[[1,1,2,1],[2,1,1,0],[3,3,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,1,0],[2,3,1,2],[2,2,2,1]],[[1,1,2,1],[2,1,1,0],[2,3,1,2],[1,3,2,1]],[[1,1,2,1],[2,1,1,0],[2,3,1,2],[1,2,3,1]],[[1,1,2,1],[2,1,1,0],[2,3,1,2],[1,2,2,2]],[[1,1,2,1],[2,1,1,0],[3,3,2,1],[1,2,2,1]],[[1,1,2,1],[2,1,1,0],[2,3,2,1],[2,2,2,1]],[[1,1,2,1],[2,1,1,0],[2,3,2,1],[1,3,2,1]],[[1,1,2,1],[2,1,1,0],[2,3,2,1],[1,2,3,1]],[[1,1,2,1],[2,1,1,0],[2,3,2,1],[1,2,2,2]],[[1,1,2,1],[2,1,1,0],[3,3,2,2],[1,2,2,0]],[[1,1,2,1],[2,1,1,0],[2,3,2,2],[2,2,2,0]],[[1,1,2,1],[2,1,1,0],[2,3,2,2],[1,3,2,0]],[[1,1,2,1],[2,1,1,0],[2,3,2,2],[1,2,3,0]],[[1,1,2,1],[2,1,1,0],[3,3,3,0],[1,2,2,1]],[[1,1,2,1],[2,1,1,0],[2,3,3,0],[2,2,2,1]],[[1,1,2,1],[2,1,1,0],[2,3,3,0],[1,3,2,1]],[[1,1,2,1],[2,1,1,0],[2,3,3,0],[1,2,3,1]],[[1,1,2,1],[2,1,1,0],[3,3,3,1],[1,2,1,1]],[[1,1,2,1],[2,1,1,0],[2,3,3,1],[2,2,1,1]],[[1,1,2,1],[2,1,1,0],[2,3,3,1],[1,3,1,1]],[[1,1,2,1],[2,1,1,0],[3,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,1,1,0],[2,3,3,2],[2,2,0,1]],[[1,1,2,1],[2,1,1,0],[2,3,3,2],[1,3,0,1]],[[1,1,2,1],[2,1,1,0],[3,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,1,1,0],[2,3,3,2],[2,2,1,0]],[[1,1,2,1],[2,1,1,0],[2,3,3,2],[1,3,1,0]],[[1,1,2,1],[3,3,3,1],[0,3,0,0],[1,2,2,1]],[[2,1,2,1],[2,3,3,1],[0,3,0,0],[1,2,2,1]],[[1,1,2,1],[2,1,1,1],[3,3,2,0],[1,2,2,1]],[[1,1,2,1],[2,1,1,1],[2,3,2,0],[2,2,2,1]],[[1,1,2,1],[2,1,1,1],[2,3,2,0],[1,3,2,1]],[[1,1,2,1],[2,1,1,1],[2,3,2,0],[1,2,3,1]],[[1,1,2,1],[2,1,1,1],[3,3,2,1],[1,2,2,0]],[[1,1,2,1],[2,1,1,1],[2,3,2,1],[2,2,2,0]],[[1,1,2,1],[2,1,1,1],[2,3,2,1],[1,3,2,0]],[[1,1,2,1],[2,1,1,1],[3,3,3,0],[1,2,1,1]],[[1,1,2,1],[2,1,1,1],[2,3,3,0],[2,2,1,1]],[[1,1,2,1],[2,1,1,1],[2,3,3,0],[1,3,1,1]],[[1,1,2,1],[2,1,1,1],[3,3,3,1],[1,2,1,0]],[[1,1,2,1],[2,1,1,1],[2,3,3,1],[2,2,1,0]],[[1,1,2,1],[2,1,1,1],[2,3,3,1],[1,3,1,0]],[[1,1,2,1],[2,3,4,1],[0,2,3,2],[1,0,0,1]],[[1,1,2,1],[2,4,3,1],[0,2,3,2],[1,0,0,1]],[[1,1,2,2],[2,3,3,1],[0,2,3,2],[1,0,0,1]],[[1,1,3,1],[2,3,3,1],[0,2,3,2],[1,0,0,1]],[[1,1,3,1],[2,1,1,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,2],[2,1,1,2],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,1,3],[1,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[1,4,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[1,3,0,3],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[1,3,0,2],[2,2,2,1]],[[1,1,2,1],[2,1,1,2],[1,3,0,2],[1,3,2,1]],[[1,1,2,1],[2,1,1,2],[1,3,0,2],[1,2,3,1]],[[1,1,2,1],[2,1,1,2],[1,3,0,2],[1,2,2,2]],[[1,1,2,1],[2,3,4,1],[0,2,3,2],[0,1,0,1]],[[1,1,2,1],[2,4,3,1],[0,2,3,2],[0,1,0,1]],[[1,1,2,2],[2,3,3,1],[0,2,3,2],[0,1,0,1]],[[1,1,3,1],[2,3,3,1],[0,2,3,2],[0,1,0,1]],[[2,1,2,1],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,3,1],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,2],[2,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[3,1,1,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,1,1,3],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[3,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,0,2,3],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,0,2,2],[2,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,0,2,2],[1,3,2,1]],[[1,1,2,1],[2,1,1,2],[2,0,2,2],[1,2,3,1]],[[1,1,2,1],[2,1,1,2],[2,0,2,2],[1,2,2,2]],[[2,1,2,1],[2,1,1,2],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[3,1,1,2],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[3,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,0,4,1],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,0,3,1],[2,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,0,3,1],[1,3,2,1]],[[1,1,2,1],[2,1,1,2],[2,0,3,1],[1,2,3,1]],[[1,1,2,1],[2,1,1,2],[2,0,3,1],[1,2,2,2]],[[1,1,3,1],[2,1,1,2],[2,0,3,2],[1,2,1,1]],[[1,1,2,2],[2,1,1,2],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[2,1,1,3],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[2,1,1,2],[2,0,4,2],[1,2,1,1]],[[1,1,2,1],[2,1,1,2],[2,0,3,3],[1,2,1,1]],[[1,1,2,1],[2,1,1,2],[2,0,3,2],[1,2,1,2]],[[2,1,2,1],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,3,1],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,2],[2,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[3,1,1,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,1,3],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,1,2],[3,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,1,2],[2,0,4,2],[1,2,2,0]],[[1,1,2,1],[2,1,1,2],[2,0,3,3],[1,2,2,0]],[[1,1,2,1],[2,1,1,2],[2,0,3,2],[2,2,2,0]],[[1,1,2,1],[2,1,1,2],[2,0,3,2],[1,3,2,0]],[[1,1,2,1],[2,1,1,2],[2,0,3,2],[1,2,3,0]],[[1,1,2,1],[2,3,4,1],[0,2,3,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,1],[0,2,3,1],[1,1,1,0]],[[1,1,2,2],[2,3,3,1],[0,2,3,1],[1,1,1,0]],[[1,1,3,1],[2,3,3,1],[0,2,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,4,1],[0,2,3,1],[1,1,0,1]],[[2,1,2,1],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,3,1],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,2],[2,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[3,1,1,2],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,1,3],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[3,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,2,0,3],[1,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,2,0,2],[2,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,2,0,2],[1,3,2,1]],[[1,1,2,1],[2,1,1,2],[2,2,0,2],[1,2,3,1]],[[1,1,2,1],[2,1,1,2],[2,2,0,2],[1,2,2,2]],[[1,1,2,1],[2,4,3,1],[0,2,3,1],[1,1,0,1]],[[1,1,2,2],[2,3,3,1],[0,2,3,1],[1,1,0,1]],[[1,1,3,1],[2,3,3,1],[0,2,3,1],[1,1,0,1]],[[1,1,2,1],[2,3,3,1],[0,2,4,1],[1,0,2,0]],[[1,1,2,1],[2,3,4,1],[0,2,3,1],[1,0,2,0]],[[1,1,2,1],[2,4,3,1],[0,2,3,1],[1,0,2,0]],[[1,1,2,2],[2,3,3,1],[0,2,3,1],[1,0,2,0]],[[1,1,3,1],[2,3,3,1],[0,2,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,3,1],[0,2,4,1],[1,0,1,1]],[[1,1,2,1],[2,3,4,1],[0,2,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,3,1],[0,2,3,1],[1,0,1,1]],[[1,1,2,2],[2,3,3,1],[0,2,3,1],[1,0,1,1]],[[1,1,3,1],[2,3,3,1],[0,2,3,1],[1,0,1,1]],[[1,1,2,1],[2,3,3,1],[0,2,4,1],[0,2,1,0]],[[1,1,2,1],[2,3,4,1],[0,2,3,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,1],[0,2,3,1],[0,2,1,0]],[[1,1,2,2],[2,3,3,1],[0,2,3,1],[0,2,1,0]],[[1,1,3,1],[2,3,3,1],[0,2,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,3,1],[0,2,4,1],[0,2,0,1]],[[1,1,2,1],[2,3,4,1],[0,2,3,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,1],[0,2,3,1],[0,2,0,1]],[[1,1,2,2],[2,3,3,1],[0,2,3,1],[0,2,0,1]],[[1,1,3,1],[2,3,3,1],[0,2,3,1],[0,2,0,1]],[[1,1,2,1],[2,3,3,1],[0,2,3,1],[0,1,3,0]],[[1,1,2,1],[2,3,3,1],[0,2,4,1],[0,1,2,0]],[[1,1,2,1],[2,3,4,1],[0,2,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,1],[0,2,3,1],[0,1,2,0]],[[1,1,2,2],[2,3,3,1],[0,2,3,1],[0,1,2,0]],[[1,1,3,1],[2,3,3,1],[0,2,3,1],[0,1,2,0]],[[1,1,2,1],[2,3,3,1],[0,2,4,1],[0,1,1,1]],[[1,1,2,1],[2,3,4,1],[0,2,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,3,1],[0,2,3,1],[0,1,1,1]],[[1,1,2,2],[2,3,3,1],[0,2,3,1],[0,1,1,1]],[[1,1,3,1],[2,3,3,1],[0,2,3,1],[0,1,1,1]],[[1,1,2,1],[2,3,3,1],[0,2,4,1],[0,0,2,1]],[[1,1,2,1],[2,3,4,1],[0,2,3,1],[0,0,2,1]],[[1,1,2,1],[2,4,3,1],[0,2,3,1],[0,0,2,1]],[[1,1,2,2],[2,3,3,1],[0,2,3,1],[0,0,2,1]],[[2,1,2,1],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,3,1],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,2],[2,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[3,1,1,2],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,1,1,3],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,1,1,2],[3,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,4,0,2],[0,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,3,0,3],[0,2,2,1]],[[1,1,2,1],[2,1,1,2],[2,3,0,2],[0,3,2,1]],[[1,1,2,1],[2,1,1,2],[2,3,0,2],[0,2,3,1]],[[1,1,2,1],[2,1,1,2],[2,3,0,2],[0,2,2,2]],[[2,1,2,1],[2,1,1,2],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[3,1,1,2],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,1,1,2],[3,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,1,1,2],[2,4,0,2],[1,1,2,1]],[[1,1,2,1],[2,1,1,2],[2,3,0,2],[2,1,2,1]],[[1,1,3,1],[2,3,3,1],[0,2,3,1],[0,0,2,1]],[[1,1,2,1],[2,3,4,1],[0,2,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,3,1],[0,2,3,0],[1,1,1,1]],[[1,1,2,2],[2,3,3,1],[0,2,3,0],[1,1,1,1]],[[1,1,3,1],[2,3,3,1],[0,2,3,0],[1,1,1,1]],[[1,1,2,1],[2,3,3,1],[0,2,4,0],[1,0,2,1]],[[1,1,2,1],[2,3,4,1],[0,2,3,0],[1,0,2,1]],[[1,1,2,1],[2,4,3,1],[0,2,3,0],[1,0,2,1]],[[1,1,2,2],[2,3,3,1],[0,2,3,0],[1,0,2,1]],[[1,1,3,1],[2,3,3,1],[0,2,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,3,1],[0,2,4,0],[0,2,1,1]],[[1,1,2,1],[2,3,4,1],[0,2,3,0],[0,2,1,1]],[[1,1,2,1],[2,4,3,1],[0,2,3,0],[0,2,1,1]],[[1,1,2,2],[2,3,3,1],[0,2,3,0],[0,2,1,1]],[[1,1,3,1],[2,3,3,1],[0,2,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,3,1],[0,2,3,0],[0,1,2,2]],[[1,1,2,1],[2,3,3,1],[0,2,3,0],[0,1,3,1]],[[1,1,2,1],[2,3,3,1],[0,2,4,0],[0,1,2,1]],[[1,1,2,1],[2,3,4,1],[0,2,3,0],[0,1,2,1]],[[1,1,2,1],[2,4,3,1],[0,2,3,0],[0,1,2,1]],[[1,1,2,2],[2,3,3,1],[0,2,3,0],[0,1,2,1]],[[1,1,3,1],[2,3,3,1],[0,2,3,0],[0,1,2,1]],[[1,1,2,1],[2,3,4,1],[0,2,2,2],[1,1,1,0]],[[1,1,2,1],[2,4,3,1],[0,2,2,2],[1,1,1,0]],[[1,1,2,2],[2,3,3,1],[0,2,2,2],[1,1,1,0]],[[1,1,3,1],[2,3,3,1],[0,2,2,2],[1,1,1,0]],[[1,1,2,1],[2,3,4,1],[0,2,2,2],[1,1,0,1]],[[1,1,2,1],[2,4,3,1],[0,2,2,2],[1,1,0,1]],[[1,1,2,2],[2,3,3,1],[0,2,2,2],[1,1,0,1]],[[1,1,3,1],[2,3,3,1],[0,2,2,2],[1,1,0,1]],[[1,1,2,1],[2,3,4,1],[0,2,2,2],[1,0,2,0]],[[1,1,2,1],[2,4,3,1],[0,2,2,2],[1,0,2,0]],[[1,1,2,2],[2,3,3,1],[0,2,2,2],[1,0,2,0]],[[1,1,3,1],[2,3,3,1],[0,2,2,2],[1,0,2,0]],[[1,1,2,1],[2,3,4,1],[0,2,2,2],[1,0,1,1]],[[1,1,2,1],[2,4,3,1],[0,2,2,2],[1,0,1,1]],[[1,1,2,2],[2,3,3,1],[0,2,2,2],[1,0,1,1]],[[1,1,3,1],[2,3,3,1],[0,2,2,2],[1,0,1,1]],[[1,1,2,1],[2,3,4,1],[0,2,2,2],[0,2,1,0]],[[1,1,2,1],[2,4,3,1],[0,2,2,2],[0,2,1,0]],[[1,1,2,2],[2,3,3,1],[0,2,2,2],[0,2,1,0]],[[1,1,3,1],[2,3,3,1],[0,2,2,2],[0,2,1,0]],[[1,1,2,1],[2,3,4,1],[0,2,2,2],[0,2,0,1]],[[1,1,2,1],[2,4,3,1],[0,2,2,2],[0,2,0,1]],[[1,1,2,2],[2,3,3,1],[0,2,2,2],[0,2,0,1]],[[1,1,3,1],[2,3,3,1],[0,2,2,2],[0,2,0,1]],[[1,1,2,1],[2,3,4,1],[0,2,2,2],[0,1,2,0]],[[1,1,2,1],[2,4,3,1],[0,2,2,2],[0,1,2,0]],[[1,1,2,2],[2,3,3,1],[0,2,2,2],[0,1,2,0]],[[1,1,3,1],[2,3,3,1],[0,2,2,2],[0,1,2,0]],[[1,1,2,1],[2,3,4,1],[0,2,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,3,1],[0,2,2,2],[0,1,1,1]],[[1,1,2,2],[2,3,3,1],[0,2,2,2],[0,1,1,1]],[[1,1,3,1],[2,3,3,1],[0,2,2,2],[0,1,1,1]],[[1,1,2,1],[2,3,4,1],[0,2,2,2],[0,0,2,1]],[[1,1,2,1],[2,4,3,1],[0,2,2,2],[0,0,2,1]],[[1,1,2,2],[2,3,3,1],[0,2,2,2],[0,0,2,1]],[[1,1,3,1],[2,3,3,1],[0,2,2,2],[0,0,2,1]],[[1,1,2,1],[2,3,4,1],[0,2,1,2],[1,0,2,1]],[[1,1,2,1],[2,4,3,1],[0,2,1,2],[1,0,2,1]],[[1,1,2,2],[2,3,3,1],[0,2,1,2],[1,0,2,1]],[[1,1,3,1],[2,3,3,1],[0,2,1,2],[1,0,2,1]],[[1,1,2,1],[2,3,4,1],[0,2,1,2],[0,1,2,1]],[[1,1,2,1],[2,4,3,1],[0,2,1,2],[0,1,2,1]],[[1,1,2,2],[2,3,3,1],[0,2,1,2],[0,1,2,1]],[[1,1,3,1],[2,3,3,1],[0,2,1,2],[0,1,2,1]],[[1,1,2,1],[2,3,4,1],[0,2,0,2],[0,2,2,1]],[[1,1,2,1],[2,4,3,1],[0,2,0,2],[0,2,2,1]],[[1,1,2,2],[2,3,3,1],[0,2,0,2],[0,2,2,1]],[[1,1,3,1],[2,3,3,1],[0,2,0,2],[0,2,2,1]],[[1,1,2,1],[2,3,4,1],[0,1,3,2],[1,0,2,0]],[[1,1,2,2],[2,3,3,1],[0,1,3,2],[1,0,2,0]],[[1,1,3,1],[2,3,3,1],[0,1,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,4,1],[0,1,3,2],[1,0,1,1]],[[1,1,2,2],[2,3,3,1],[0,1,3,2],[1,0,1,1]],[[1,1,3,1],[2,3,3,1],[0,1,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,4,1],[0,1,3,2],[0,1,2,0]],[[1,1,2,2],[2,3,3,1],[0,1,3,2],[0,1,2,0]],[[1,1,3,1],[2,3,3,1],[0,1,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,4,1],[0,1,3,2],[0,1,1,1]],[[1,1,2,2],[2,3,3,1],[0,1,3,2],[0,1,1,1]],[[1,1,3,1],[2,3,3,1],[0,1,3,2],[0,1,1,1]],[[1,1,2,1],[2,3,4,1],[0,1,3,2],[0,0,2,1]],[[1,1,2,2],[2,3,3,1],[0,1,3,2],[0,0,2,1]],[[1,1,3,1],[2,3,3,1],[0,1,3,2],[0,0,2,1]],[[1,1,2,1],[2,3,3,1],[0,1,3,1],[0,2,3,0]],[[1,1,2,1],[2,3,3,1],[0,1,4,1],[0,2,2,0]],[[1,1,2,1],[2,3,4,1],[0,1,3,1],[0,2,2,0]],[[1,1,2,1],[2,4,3,1],[0,1,3,1],[0,2,2,0]],[[1,1,2,2],[2,3,3,1],[0,1,3,1],[0,2,2,0]],[[1,1,3,1],[2,3,3,1],[0,1,3,1],[0,2,2,0]],[[1,1,2,1],[2,3,3,1],[0,1,4,1],[0,2,1,1]],[[1,1,2,1],[2,3,4,1],[0,1,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,3,1],[0,1,3,1],[0,2,1,1]],[[1,1,2,2],[2,3,3,1],[0,1,3,1],[0,2,1,1]],[[1,1,3,1],[2,3,3,1],[0,1,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,3,1],[0,1,3,0],[0,2,2,2]],[[1,1,2,1],[2,3,3,1],[0,1,3,0],[0,2,3,1]],[[1,1,2,1],[2,3,3,1],[0,1,4,0],[0,2,2,1]],[[1,1,2,1],[2,3,4,1],[0,1,3,0],[0,2,2,1]],[[1,1,2,1],[2,4,3,1],[0,1,3,0],[0,2,2,1]],[[1,1,2,2],[2,3,3,1],[0,1,3,0],[0,2,2,1]],[[1,1,3,1],[2,3,3,1],[0,1,3,0],[0,2,2,1]],[[1,1,2,1],[2,3,4,1],[0,1,2,2],[0,2,2,0]],[[1,1,2,1],[2,4,3,1],[0,1,2,2],[0,2,2,0]],[[1,1,2,2],[2,3,3,1],[0,1,2,2],[0,2,2,0]],[[1,1,3,1],[2,3,3,1],[0,1,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,4,1],[0,1,2,2],[0,2,1,1]],[[1,1,2,1],[2,4,3,1],[0,1,2,2],[0,2,1,1]],[[1,1,2,2],[2,3,3,1],[0,1,2,2],[0,2,1,1]],[[1,1,3,1],[2,3,3,1],[0,1,2,2],[0,2,1,1]],[[1,1,2,1],[2,3,4,1],[0,1,1,2],[0,2,2,1]],[[1,1,2,1],[2,4,3,1],[0,1,1,2],[0,2,2,1]],[[1,1,2,2],[2,3,3,1],[0,1,1,2],[0,2,2,1]],[[1,1,3,1],[2,3,3,1],[0,1,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,4,1],[0,0,3,2],[0,2,2,0]],[[1,1,2,2],[2,3,3,1],[0,0,3,2],[0,2,2,0]],[[1,1,3,1],[2,3,3,1],[0,0,3,2],[0,2,2,0]],[[1,1,2,1],[2,3,4,1],[0,0,3,2],[0,2,1,1]],[[1,1,2,2],[2,3,3,1],[0,0,3,2],[0,2,1,1]],[[1,1,3,1],[2,3,3,1],[0,0,3,2],[0,2,1,1]],[[1,1,2,1],[2,3,4,1],[0,0,3,2],[0,1,2,1]],[[1,1,2,2],[2,3,3,1],[0,0,3,2],[0,1,2,1]],[[1,1,3,1],[2,3,3,1],[0,0,3,2],[0,1,2,1]],[[1,1,2,1],[2,3,4,1],[0,0,2,2],[0,2,2,1]],[[1,1,2,2],[2,3,3,1],[0,0,2,2],[0,2,2,1]],[[1,1,3,1],[2,3,3,1],[0,0,2,2],[0,2,2,1]],[[1,1,2,1],[2,3,3,0],[3,3,3,1],[1,0,0,0]],[[1,1,2,1],[2,4,3,0],[2,3,3,1],[1,0,0,0]],[[1,1,2,1],[3,3,3,0],[2,3,3,1],[1,0,0,0]],[[2,1,2,1],[2,3,3,0],[2,3,3,1],[1,0,0,0]],[[1,1,2,1],[2,3,3,0],[3,3,3,0],[1,0,1,0]],[[1,1,2,1],[2,4,3,0],[2,3,3,0],[1,0,1,0]],[[1,1,2,1],[3,3,3,0],[2,3,3,0],[1,0,1,0]],[[2,1,2,1],[2,3,3,0],[2,3,3,0],[1,0,1,0]],[[1,1,2,1],[2,3,3,0],[3,3,2,1],[1,0,1,0]],[[1,1,2,1],[2,4,3,0],[2,3,2,1],[1,0,1,0]],[[1,1,2,1],[3,3,3,0],[2,3,2,1],[1,0,1,0]],[[2,1,2,1],[2,3,3,0],[2,3,2,1],[1,0,1,0]],[[1,1,2,1],[2,3,3,0],[3,3,2,1],[1,0,0,1]],[[1,1,2,1],[2,4,3,0],[2,3,2,1],[1,0,0,1]],[[1,1,2,1],[3,3,3,0],[2,3,2,1],[1,0,0,1]],[[2,1,2,1],[2,3,3,0],[2,3,2,1],[1,0,0,1]],[[1,1,2,1],[2,3,3,0],[2,3,2,0],[2,2,0,0]],[[1,1,2,1],[2,3,3,0],[3,3,2,0],[1,2,0,0]],[[1,1,2,1],[2,4,3,0],[2,3,2,0],[1,2,0,0]],[[1,1,2,1],[3,3,3,0],[2,3,2,0],[1,2,0,0]],[[2,1,2,1],[2,3,3,0],[2,3,2,0],[1,2,0,0]],[[1,1,2,1],[2,3,3,0],[2,3,2,0],[2,1,1,0]],[[1,1,2,1],[2,3,3,0],[3,3,2,0],[1,1,1,0]],[[1,1,2,1],[2,4,3,0],[2,3,2,0],[1,1,1,0]],[[1,1,2,1],[3,3,3,0],[2,3,2,0],[1,1,1,0]],[[2,1,2,1],[2,3,3,0],[2,3,2,0],[1,1,1,0]],[[1,1,2,1],[2,3,3,0],[3,3,2,0],[1,0,1,1]],[[1,1,2,1],[2,4,3,0],[2,3,2,0],[1,0,1,1]],[[1,1,2,1],[3,3,3,0],[2,3,2,0],[1,0,1,1]],[[2,1,2,1],[2,3,3,0],[2,3,2,0],[1,0,1,1]],[[1,1,2,1],[2,3,3,0],[3,3,2,0],[0,2,1,0]],[[1,1,2,1],[2,4,3,0],[2,3,2,0],[0,2,1,0]],[[2,1,2,1],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,3,1],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,2],[2,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[3,1,2,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,2,3],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,2,2],[3,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,2,2],[2,0,1,3],[1,2,2,1]],[[1,1,2,1],[2,1,2,2],[2,0,1,2],[2,2,2,1]],[[1,1,2,1],[2,1,2,2],[2,0,1,2],[1,3,2,1]],[[1,1,2,1],[2,1,2,2],[2,0,1,2],[1,2,3,1]],[[1,1,2,1],[2,1,2,2],[2,0,1,2],[1,2,2,2]],[[1,1,3,1],[2,1,2,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,2],[2,1,2,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,1],[2,1,2,3],[2,0,2,2],[1,2,1,1]],[[1,1,2,1],[2,1,2,2],[2,0,2,3],[1,2,1,1]],[[1,1,2,1],[2,1,2,2],[2,0,2,2],[1,2,1,2]],[[1,1,3,1],[2,1,2,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,2],[2,1,2,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[2,1,2,3],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[2,1,2,2],[2,0,2,3],[1,2,2,0]],[[1,1,3,1],[2,1,2,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,2],[2,1,2,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[2,1,2,3],[2,0,3,0],[1,2,2,1]],[[1,1,3,1],[2,1,2,2],[2,0,3,1],[1,2,1,1]],[[1,1,2,2],[2,1,2,2],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[2,1,2,3],[2,0,3,1],[1,2,1,1]],[[1,1,3,1],[2,1,2,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,2],[2,1,2,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,1,2,3],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[3,3,3,0],[2,3,2,0],[0,2,1,0]],[[2,1,2,1],[2,3,3,0],[2,3,2,0],[0,2,1,0]],[[2,1,2,1],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,3,1],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,2],[2,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[3,1,2,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,2,3],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,2,2],[3,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,2,2],[2,1,0,3],[1,2,2,1]],[[1,1,2,1],[2,1,2,2],[2,1,0,2],[2,2,2,1]],[[1,1,2,1],[2,1,2,2],[2,1,0,2],[1,3,2,1]],[[1,1,2,1],[2,1,2,2],[2,1,0,2],[1,2,3,1]],[[1,1,2,1],[2,1,2,2],[2,1,0,2],[1,2,2,2]],[[1,1,2,1],[2,3,3,0],[2,3,1,1],[2,2,0,0]],[[1,1,2,1],[2,3,3,0],[3,3,1,1],[1,2,0,0]],[[1,1,2,1],[2,4,3,0],[2,3,1,1],[1,2,0,0]],[[1,1,2,1],[3,3,3,0],[2,3,1,1],[1,2,0,0]],[[2,1,2,1],[2,3,3,0],[2,3,1,1],[1,2,0,0]],[[1,1,2,1],[2,3,3,0],[2,3,1,1],[2,1,1,0]],[[1,1,2,1],[2,3,3,0],[3,3,1,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,0],[2,3,1,1],[1,1,1,0]],[[1,1,2,1],[3,3,3,0],[2,3,1,1],[1,1,1,0]],[[2,1,2,1],[2,3,3,0],[2,3,1,1],[1,1,1,0]],[[1,1,2,1],[2,3,3,0],[2,3,1,1],[2,1,0,1]],[[1,1,2,1],[2,3,3,0],[3,3,1,1],[1,1,0,1]],[[1,1,2,1],[2,4,3,0],[2,3,1,1],[1,1,0,1]],[[1,1,2,1],[3,3,3,0],[2,3,1,1],[1,1,0,1]],[[2,1,2,1],[2,3,3,0],[2,3,1,1],[1,1,0,1]],[[1,1,2,1],[2,3,3,0],[3,3,1,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,0],[2,3,1,1],[0,2,1,0]],[[1,1,2,1],[3,3,3,0],[2,3,1,1],[0,2,1,0]],[[2,1,2,1],[2,3,3,0],[2,3,1,1],[0,2,1,0]],[[1,1,2,1],[2,3,3,0],[3,3,1,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,0],[2,3,1,1],[0,2,0,1]],[[1,1,2,1],[3,3,3,0],[2,3,1,1],[0,2,0,1]],[[2,1,2,1],[2,3,3,0],[2,3,1,1],[0,2,0,1]],[[1,1,2,1],[2,3,3,0],[2,3,1,0],[2,2,0,1]],[[1,1,2,1],[2,3,3,0],[3,3,1,0],[1,2,0,1]],[[1,1,2,1],[2,4,3,0],[2,3,1,0],[1,2,0,1]],[[1,1,2,1],[3,3,3,0],[2,3,1,0],[1,2,0,1]],[[2,1,2,1],[2,3,3,0],[2,3,1,0],[1,2,0,1]],[[1,1,2,1],[2,3,3,0],[2,3,1,0],[2,1,1,1]],[[1,1,2,1],[2,3,3,0],[3,3,1,0],[1,1,1,1]],[[1,1,2,1],[2,4,3,0],[2,3,1,0],[1,1,1,1]],[[1,1,2,1],[3,3,3,0],[2,3,1,0],[1,1,1,1]],[[2,1,2,1],[2,3,3,0],[2,3,1,0],[1,1,1,1]],[[1,1,2,1],[2,3,3,0],[3,3,1,0],[0,2,1,1]],[[1,1,2,1],[2,4,3,0],[2,3,1,0],[0,2,1,1]],[[1,1,2,1],[3,3,3,0],[2,3,1,0],[0,2,1,1]],[[2,1,2,1],[2,3,3,0],[2,3,1,0],[0,2,1,1]],[[1,1,2,1],[2,3,3,0],[2,3,0,1],[2,2,1,0]],[[1,1,2,1],[2,3,3,0],[3,3,0,1],[1,2,1,0]],[[1,1,2,1],[2,4,3,0],[2,3,0,1],[1,2,1,0]],[[1,1,2,1],[3,3,3,0],[2,3,0,1],[1,2,1,0]],[[2,1,2,1],[2,3,3,0],[2,3,0,1],[1,2,1,0]],[[1,1,2,1],[2,3,3,0],[2,3,0,1],[2,1,2,0]],[[1,1,2,1],[2,3,3,0],[3,3,0,1],[1,1,2,0]],[[1,1,2,1],[2,4,3,0],[2,3,0,1],[1,1,2,0]],[[1,1,2,1],[3,3,3,0],[2,3,0,1],[1,1,2,0]],[[2,1,2,1],[2,3,3,0],[2,3,0,1],[1,1,2,0]],[[1,1,2,1],[2,3,3,0],[3,3,0,1],[0,2,2,0]],[[1,1,2,1],[2,4,3,0],[2,3,0,1],[0,2,2,0]],[[1,1,2,1],[3,3,3,0],[2,3,0,1],[0,2,2,0]],[[2,1,2,1],[2,3,3,0],[2,3,0,1],[0,2,2,0]],[[1,1,2,1],[2,3,3,0],[2,3,0,0],[2,2,2,0]],[[1,1,2,1],[2,3,3,0],[3,3,0,0],[1,2,2,0]],[[1,1,2,1],[2,4,3,0],[2,3,0,0],[1,2,2,0]],[[1,1,2,1],[3,3,3,0],[2,3,0,0],[1,2,2,0]],[[2,1,2,1],[2,3,3,0],[2,3,0,0],[1,2,2,0]],[[1,1,2,1],[2,3,3,0],[2,3,0,0],[2,2,1,1]],[[1,1,2,1],[2,3,3,0],[3,3,0,0],[1,2,1,1]],[[1,1,2,1],[2,4,3,0],[2,3,0,0],[1,2,1,1]],[[1,1,2,1],[3,3,3,0],[2,3,0,0],[1,2,1,1]],[[2,1,2,1],[2,3,3,0],[2,3,0,0],[1,2,1,1]],[[1,1,2,1],[2,3,3,0],[2,3,0,0],[2,1,2,1]],[[1,1,2,1],[2,3,3,0],[3,3,0,0],[1,1,2,1]],[[1,1,2,1],[2,4,3,0],[2,3,0,0],[1,1,2,1]],[[1,1,2,1],[3,3,3,0],[2,3,0,0],[1,1,2,1]],[[2,1,2,1],[2,3,3,0],[2,3,0,0],[1,1,2,1]],[[1,1,2,1],[2,3,3,0],[3,3,0,0],[0,2,2,1]],[[1,1,2,1],[2,4,3,0],[2,3,0,0],[0,2,2,1]],[[1,1,2,1],[3,3,3,0],[2,3,0,0],[0,2,2,1]],[[2,1,2,1],[2,3,3,0],[2,3,0,0],[0,2,2,1]],[[1,1,2,1],[2,3,3,0],[2,2,3,1],[2,1,0,0]],[[1,1,2,1],[2,3,3,0],[3,2,3,1],[1,1,0,0]],[[1,1,2,1],[2,4,3,0],[2,2,3,1],[1,1,0,0]],[[1,1,2,1],[3,3,3,0],[2,2,3,1],[1,1,0,0]],[[2,1,2,1],[2,3,3,0],[2,2,3,1],[1,1,0,0]],[[1,1,2,1],[2,3,3,0],[3,2,3,1],[0,2,0,0]],[[1,1,2,1],[2,4,3,0],[2,2,3,1],[0,2,0,0]],[[1,1,2,1],[3,3,3,0],[2,2,3,1],[0,2,0,0]],[[2,1,2,1],[2,3,3,0],[2,2,3,1],[0,2,0,0]],[[1,1,2,1],[2,3,3,0],[2,2,3,0],[2,2,0,0]],[[1,1,2,1],[2,3,3,0],[3,2,3,0],[1,2,0,0]],[[1,1,2,1],[2,4,3,0],[2,2,3,0],[1,2,0,0]],[[1,1,2,1],[3,3,3,0],[2,2,3,0],[1,2,0,0]],[[2,1,2,1],[2,3,3,0],[2,2,3,0],[1,2,0,0]],[[1,1,2,1],[2,3,3,0],[2,2,3,0],[2,1,1,0]],[[1,1,2,1],[2,3,3,0],[3,2,3,0],[1,1,1,0]],[[1,1,2,1],[2,4,3,0],[2,2,3,0],[1,1,1,0]],[[1,1,2,1],[3,3,3,0],[2,2,3,0],[1,1,1,0]],[[2,1,2,1],[2,3,3,0],[2,2,3,0],[1,1,1,0]],[[1,1,2,1],[2,3,3,0],[2,2,3,0],[2,0,2,0]],[[1,1,2,1],[2,3,3,0],[3,2,3,0],[1,0,2,0]],[[1,1,2,1],[2,4,3,0],[2,2,3,0],[1,0,2,0]],[[1,1,2,1],[3,3,3,0],[2,2,3,0],[1,0,2,0]],[[2,1,2,1],[2,3,3,0],[2,2,3,0],[1,0,2,0]],[[1,1,2,1],[2,3,3,0],[3,2,3,0],[0,2,1,0]],[[1,1,2,1],[2,4,3,0],[2,2,3,0],[0,2,1,0]],[[1,1,2,1],[3,3,3,0],[2,2,3,0],[0,2,1,0]],[[2,1,2,1],[2,3,3,0],[2,2,3,0],[0,2,1,0]],[[1,1,2,1],[2,3,3,0],[3,2,3,0],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[2,2,3,0],[0,1,2,0]],[[1,1,2,1],[3,3,3,0],[2,2,3,0],[0,1,2,0]],[[2,1,2,1],[2,3,3,0],[2,2,3,0],[0,1,2,0]],[[1,1,2,1],[2,3,3,0],[2,2,2,1],[2,2,0,0]],[[1,1,2,1],[2,3,3,0],[3,2,2,1],[1,2,0,0]],[[1,1,2,1],[2,4,3,0],[2,2,2,1],[1,2,0,0]],[[1,1,2,1],[3,3,3,0],[2,2,2,1],[1,2,0,0]],[[2,1,2,1],[2,3,3,0],[2,2,2,1],[1,2,0,0]],[[1,1,2,1],[2,3,3,0],[2,2,2,1],[2,1,1,0]],[[1,1,2,1],[2,3,3,0],[3,2,2,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,0],[2,2,2,1],[1,1,1,0]],[[1,1,2,1],[3,3,3,0],[2,2,2,1],[1,1,1,0]],[[2,1,2,1],[2,3,3,0],[2,2,2,1],[1,1,1,0]],[[1,1,2,1],[2,3,3,0],[2,2,2,1],[2,1,0,1]],[[1,1,2,1],[2,3,3,0],[3,2,2,1],[1,1,0,1]],[[1,1,2,1],[2,4,3,0],[2,2,2,1],[1,1,0,1]],[[1,1,2,1],[3,3,3,0],[2,2,2,1],[1,1,0,1]],[[2,1,2,1],[2,3,3,0],[2,2,2,1],[1,1,0,1]],[[1,1,2,1],[2,3,3,0],[2,2,2,1],[2,0,2,0]],[[1,1,2,1],[2,3,3,0],[3,2,2,1],[1,0,2,0]],[[1,1,2,1],[2,4,3,0],[2,2,2,1],[1,0,2,0]],[[1,1,2,1],[3,3,3,0],[2,2,2,1],[1,0,2,0]],[[2,1,2,1],[2,3,3,0],[2,2,2,1],[1,0,2,0]],[[1,1,2,1],[2,3,3,0],[3,2,2,1],[1,0,1,1]],[[1,1,2,1],[2,4,3,0],[2,2,2,1],[1,0,1,1]],[[1,1,2,1],[3,3,3,0],[2,2,2,1],[1,0,1,1]],[[2,1,2,1],[2,3,3,0],[2,2,2,1],[1,0,1,1]],[[1,1,2,1],[2,3,3,0],[3,2,2,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,0],[2,2,2,1],[0,2,1,0]],[[1,1,2,1],[3,3,3,0],[2,2,2,1],[0,2,1,0]],[[2,1,2,1],[2,3,3,0],[2,2,2,1],[0,2,1,0]],[[1,1,2,1],[2,3,3,0],[3,2,2,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,0],[2,2,2,1],[0,2,0,1]],[[1,1,2,1],[3,3,3,0],[2,2,2,1],[0,2,0,1]],[[2,1,2,1],[2,3,3,0],[2,2,2,1],[0,2,0,1]],[[1,1,2,1],[2,3,3,0],[3,2,2,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[2,2,2,1],[0,1,2,0]],[[1,1,2,1],[3,3,3,0],[2,2,2,1],[0,1,2,0]],[[2,1,2,1],[2,3,3,0],[2,2,2,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[2,2,2,1],[0,1,1,1]],[[1,1,2,1],[3,3,3,0],[2,2,2,1],[0,1,1,1]],[[2,1,2,1],[2,3,3,0],[2,2,2,1],[0,1,1,1]],[[1,1,2,1],[2,3,3,0],[2,2,2,0],[2,2,0,1]],[[1,1,2,1],[2,3,3,0],[3,2,2,0],[1,2,0,1]],[[1,1,2,1],[2,4,3,0],[2,2,2,0],[1,2,0,1]],[[1,1,2,1],[3,3,3,0],[2,2,2,0],[1,2,0,1]],[[2,1,2,1],[2,3,3,0],[2,2,2,0],[1,2,0,1]],[[1,1,2,1],[2,3,3,0],[2,2,2,0],[2,1,1,1]],[[1,1,2,1],[2,3,3,0],[3,2,2,0],[1,1,1,1]],[[1,1,2,1],[2,4,3,0],[2,2,2,0],[1,1,1,1]],[[1,1,2,1],[3,3,3,0],[2,2,2,0],[1,1,1,1]],[[2,1,2,1],[2,3,3,0],[2,2,2,0],[1,1,1,1]],[[1,1,2,1],[2,3,3,0],[2,2,2,0],[2,0,2,1]],[[1,1,2,1],[2,3,3,0],[3,2,2,0],[1,0,2,1]],[[1,1,2,1],[2,4,3,0],[2,2,2,0],[1,0,2,1]],[[1,1,2,1],[3,3,3,0],[2,2,2,0],[1,0,2,1]],[[2,1,2,1],[2,3,3,0],[2,2,2,0],[1,0,2,1]],[[1,1,2,1],[2,3,3,0],[3,2,2,0],[0,2,1,1]],[[1,1,2,1],[2,4,3,0],[2,2,2,0],[0,2,1,1]],[[1,1,2,1],[3,3,3,0],[2,2,2,0],[0,2,1,1]],[[2,1,2,1],[2,3,3,0],[2,2,2,0],[0,2,1,1]],[[1,1,2,1],[2,3,3,0],[3,2,2,0],[0,1,2,1]],[[1,1,2,1],[2,4,3,0],[2,2,2,0],[0,1,2,1]],[[1,1,2,1],[3,3,3,0],[2,2,2,0],[0,1,2,1]],[[2,1,2,1],[2,3,3,0],[2,2,2,0],[0,1,2,1]],[[1,1,2,1],[2,3,3,0],[2,2,1,1],[2,1,2,0]],[[1,1,2,1],[2,3,3,0],[3,2,1,1],[1,1,2,0]],[[1,1,2,1],[2,4,3,0],[2,2,1,1],[1,1,2,0]],[[1,1,2,1],[3,3,3,0],[2,2,1,1],[1,1,2,0]],[[2,1,2,1],[2,3,3,0],[2,2,1,1],[1,1,2,0]],[[1,1,2,1],[2,3,3,0],[3,2,1,1],[0,2,2,0]],[[1,1,2,1],[2,4,3,0],[2,2,1,1],[0,2,2,0]],[[1,1,2,1],[3,3,3,0],[2,2,1,1],[0,2,2,0]],[[2,1,2,1],[2,3,3,0],[2,2,1,1],[0,2,2,0]],[[1,1,2,1],[2,3,3,0],[2,2,1,0],[2,1,2,1]],[[1,1,2,1],[2,3,3,0],[3,2,1,0],[1,1,2,1]],[[1,1,2,1],[2,4,3,0],[2,2,1,0],[1,1,2,1]],[[1,1,2,1],[3,3,3,0],[2,2,1,0],[1,1,2,1]],[[2,1,2,1],[2,3,3,0],[2,2,1,0],[1,1,2,1]],[[1,1,2,1],[2,3,3,0],[3,2,1,0],[0,2,2,1]],[[1,1,2,1],[2,4,3,0],[2,2,1,0],[0,2,2,1]],[[1,1,2,1],[3,3,3,0],[2,2,1,0],[0,2,2,1]],[[2,1,2,1],[2,3,3,0],[2,2,1,0],[0,2,2,1]],[[1,1,2,1],[2,3,3,0],[2,2,0,1],[1,3,2,0]],[[1,1,2,1],[2,3,3,0],[2,2,0,1],[2,2,2,0]],[[1,1,2,1],[2,3,3,0],[3,2,0,1],[1,2,2,0]],[[1,1,2,1],[2,4,3,0],[2,2,0,1],[1,2,2,0]],[[1,1,2,1],[3,3,3,0],[2,2,0,1],[1,2,2,0]],[[2,1,2,1],[2,3,3,0],[2,2,0,1],[1,2,2,0]],[[1,1,2,1],[2,3,3,0],[2,2,0,0],[1,3,2,1]],[[1,1,2,1],[2,3,3,0],[2,2,0,0],[2,2,2,1]],[[1,1,2,1],[2,3,3,0],[3,2,0,0],[1,2,2,1]],[[1,1,2,1],[2,4,3,0],[2,2,0,0],[1,2,2,1]],[[1,1,2,1],[3,3,3,0],[2,2,0,0],[1,2,2,1]],[[2,1,2,1],[2,3,3,0],[2,2,0,0],[1,2,2,1]],[[1,1,2,1],[2,3,3,0],[2,1,3,1],[2,1,1,0]],[[1,1,2,1],[2,3,3,0],[3,1,3,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,0],[2,1,3,1],[1,1,1,0]],[[1,1,2,1],[3,3,3,0],[2,1,3,1],[1,1,1,0]],[[2,1,2,1],[2,3,3,0],[2,1,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,3,0],[2,1,3,1],[2,1,0,1]],[[1,1,2,1],[2,3,3,0],[3,1,3,1],[1,1,0,1]],[[1,1,2,1],[2,4,3,0],[2,1,3,1],[1,1,0,1]],[[1,1,2,1],[3,3,3,0],[2,1,3,1],[1,1,0,1]],[[2,1,2,1],[2,3,3,0],[2,1,3,1],[1,1,0,1]],[[1,1,2,1],[2,3,3,0],[2,1,3,1],[2,0,2,0]],[[1,1,2,1],[2,3,3,0],[3,1,3,1],[1,0,2,0]],[[1,1,2,1],[2,4,3,0],[2,1,3,1],[1,0,2,0]],[[1,1,2,1],[3,3,3,0],[2,1,3,1],[1,0,2,0]],[[2,1,2,1],[2,3,3,0],[2,1,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,3,0],[3,1,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,3,0],[2,1,3,1],[1,0,1,1]],[[1,1,2,1],[3,3,3,0],[2,1,3,1],[1,0,1,1]],[[2,1,2,1],[2,3,3,0],[2,1,3,1],[1,0,1,1]],[[1,1,2,1],[2,3,3,0],[3,1,3,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,0],[2,1,3,1],[0,2,1,0]],[[1,1,2,1],[3,3,3,0],[2,1,3,1],[0,2,1,0]],[[2,1,2,1],[2,3,3,0],[2,1,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,3,0],[3,1,3,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,0],[2,1,3,1],[0,2,0,1]],[[1,1,2,1],[3,3,3,0],[2,1,3,1],[0,2,0,1]],[[2,1,2,1],[2,3,3,0],[2,1,3,1],[0,2,0,1]],[[1,1,2,1],[2,3,3,0],[3,1,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[2,1,3,1],[0,1,2,0]],[[1,1,2,1],[3,3,3,0],[2,1,3,1],[0,1,2,0]],[[2,1,2,1],[2,3,3,0],[2,1,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[2,1,3,1],[0,1,1,1]],[[1,1,2,1],[3,3,3,0],[2,1,3,1],[0,1,1,1]],[[2,1,2,1],[2,3,3,0],[2,1,3,1],[0,1,1,1]],[[1,1,2,1],[2,3,3,0],[2,1,3,0],[1,3,1,0]],[[1,1,2,1],[2,3,3,0],[2,1,3,0],[2,2,1,0]],[[1,1,2,1],[2,3,3,0],[3,1,3,0],[1,2,1,0]],[[1,1,2,1],[2,4,3,0],[2,1,3,0],[1,2,1,0]],[[1,1,2,1],[3,3,3,0],[2,1,3,0],[1,2,1,0]],[[2,1,2,1],[2,3,3,0],[2,1,3,0],[1,2,1,0]],[[2,1,2,1],[2,1,3,0],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[3,1,3,0],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,1,3,0],[3,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,1,3,0],[2,0,2,3],[1,2,2,1]],[[1,1,2,1],[2,1,3,0],[2,0,2,2],[2,2,2,1]],[[1,1,2,1],[2,1,3,0],[2,0,2,2],[1,3,2,1]],[[1,1,2,1],[2,1,3,0],[2,0,2,2],[1,2,3,1]],[[1,1,2,1],[2,1,3,0],[2,0,2,2],[1,2,2,2]],[[2,1,2,1],[2,1,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,3,1],[2,1,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,2,2],[2,1,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[3,1,3,0],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,1,4,0],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,1,3,0],[3,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,1,3,0],[2,0,4,1],[1,2,2,1]],[[1,1,2,1],[2,1,3,0],[2,0,3,1],[2,2,2,1]],[[1,1,2,1],[2,1,3,0],[2,0,3,1],[1,3,2,1]],[[1,1,2,1],[2,1,3,0],[2,0,3,1],[1,2,3,1]],[[1,1,2,1],[2,1,3,0],[2,0,3,1],[1,2,2,2]],[[1,1,3,1],[2,1,3,0],[2,0,3,2],[1,2,1,1]],[[1,1,2,2],[2,1,3,0],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[2,1,4,0],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[2,1,3,0],[2,0,4,2],[1,2,1,1]],[[1,1,2,1],[2,1,3,0],[2,0,3,3],[1,2,1,1]],[[1,1,2,1],[2,1,3,0],[2,0,3,2],[1,2,1,2]],[[2,1,2,1],[2,1,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,3,1],[2,1,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,2,2],[2,1,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[3,1,3,0],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,4,0],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,3,0],[3,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,1,3,0],[2,0,4,2],[1,2,2,0]],[[1,1,2,1],[2,1,3,0],[2,0,3,3],[1,2,2,0]],[[1,1,2,1],[2,1,3,0],[2,0,3,2],[2,2,2,0]],[[1,1,2,1],[2,1,3,0],[2,0,3,2],[1,3,2,0]],[[1,1,2,1],[2,1,3,0],[2,0,3,2],[1,2,3,0]],[[1,1,2,1],[2,3,3,0],[2,1,3,0],[2,1,1,1]],[[1,1,2,1],[2,3,3,0],[3,1,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,3,0],[2,1,3,0],[1,1,1,1]],[[1,1,2,1],[3,3,3,0],[2,1,3,0],[1,1,1,1]],[[2,1,2,1],[2,3,3,0],[2,1,3,0],[1,1,1,1]],[[1,1,2,1],[2,3,3,0],[2,1,3,0],[2,0,2,1]],[[1,1,2,1],[2,3,3,0],[3,1,3,0],[1,0,2,1]],[[1,1,2,1],[2,4,3,0],[2,1,3,0],[1,0,2,1]],[[1,1,2,1],[3,3,3,0],[2,1,3,0],[1,0,2,1]],[[2,1,2,1],[2,3,3,0],[2,1,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,3,0],[3,1,3,0],[0,2,1,1]],[[1,1,2,1],[2,4,3,0],[2,1,3,0],[0,2,1,1]],[[1,1,2,1],[3,3,3,0],[2,1,3,0],[0,2,1,1]],[[2,1,2,1],[2,3,3,0],[2,1,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,3,0],[3,1,3,0],[0,1,2,1]],[[1,1,2,1],[2,4,3,0],[2,1,3,0],[0,1,2,1]],[[1,1,2,1],[3,3,3,0],[2,1,3,0],[0,1,2,1]],[[2,1,2,1],[2,3,3,0],[2,1,3,0],[0,1,2,1]],[[1,1,2,1],[2,3,3,0],[2,1,2,1],[1,3,1,0]],[[1,1,2,1],[2,3,3,0],[2,1,2,1],[2,2,1,0]],[[1,1,2,1],[2,3,3,0],[3,1,2,1],[1,2,1,0]],[[1,1,2,1],[2,4,3,0],[2,1,2,1],[1,2,1,0]],[[1,1,2,1],[3,3,3,0],[2,1,2,1],[1,2,1,0]],[[2,1,2,1],[2,3,3,0],[2,1,2,1],[1,2,1,0]],[[1,1,2,1],[2,3,3,0],[2,1,2,1],[2,2,0,1]],[[1,1,2,1],[2,3,3,0],[3,1,2,1],[1,2,0,1]],[[1,1,2,1],[2,4,3,0],[2,1,2,1],[1,2,0,1]],[[1,1,2,1],[3,3,3,0],[2,1,2,1],[1,2,0,1]],[[2,1,2,1],[2,3,3,0],[2,1,2,1],[1,2,0,1]],[[1,1,2,1],[2,3,3,0],[2,1,2,0],[1,3,1,1]],[[1,1,2,1],[2,3,3,0],[2,1,2,0],[2,2,1,1]],[[1,1,2,1],[2,3,3,0],[3,1,2,0],[1,2,1,1]],[[1,1,2,1],[2,4,3,0],[2,1,2,0],[1,2,1,1]],[[1,1,2,1],[3,3,3,0],[2,1,2,0],[1,2,1,1]],[[2,1,2,1],[2,3,3,0],[2,1,2,0],[1,2,1,1]],[[1,1,2,1],[2,3,3,0],[2,1,1,1],[1,3,2,0]],[[1,1,2,1],[2,3,3,0],[2,1,1,1],[2,2,2,0]],[[1,1,2,1],[2,3,3,0],[3,1,1,1],[1,2,2,0]],[[1,1,2,1],[2,4,3,0],[2,1,1,1],[1,2,2,0]],[[1,1,2,1],[3,3,3,0],[2,1,1,1],[1,2,2,0]],[[2,1,2,1],[2,3,3,0],[2,1,1,1],[1,2,2,0]],[[1,1,2,1],[2,3,3,0],[2,1,1,0],[1,2,3,1]],[[1,1,2,1],[2,3,3,0],[2,1,1,0],[1,3,2,1]],[[1,1,2,1],[2,3,3,0],[2,1,1,0],[2,2,2,1]],[[1,1,2,1],[2,3,3,0],[3,1,1,0],[1,2,2,1]],[[1,1,2,1],[2,4,3,0],[2,1,1,0],[1,2,2,1]],[[1,1,2,1],[3,3,3,0],[2,1,1,0],[1,2,2,1]],[[2,1,2,1],[2,3,3,0],[2,1,1,0],[1,2,2,1]],[[1,1,2,1],[2,3,3,0],[2,0,3,1],[1,3,1,0]],[[1,1,2,1],[2,3,3,0],[2,0,3,1],[2,2,1,0]],[[1,1,2,1],[2,3,3,0],[3,0,3,1],[1,2,1,0]],[[1,1,2,1],[2,4,3,0],[2,0,3,1],[1,2,1,0]],[[1,1,2,1],[3,3,3,0],[2,0,3,1],[1,2,1,0]],[[2,1,2,1],[2,3,3,0],[2,0,3,1],[1,2,1,0]],[[1,1,2,1],[2,3,3,0],[2,0,3,1],[2,2,0,1]],[[1,1,2,1],[2,3,3,0],[3,0,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,3,0],[2,0,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,3,0],[2,0,3,1],[1,2,0,1]],[[2,1,2,1],[2,3,3,0],[2,0,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,3,0],[2,0,3,1],[2,1,2,0]],[[1,1,2,1],[2,3,3,0],[3,0,3,1],[1,1,2,0]],[[1,1,2,1],[2,4,3,0],[2,0,3,1],[1,1,2,0]],[[1,1,2,1],[3,3,3,0],[2,0,3,1],[1,1,2,0]],[[2,1,2,1],[2,3,3,0],[2,0,3,1],[1,1,2,0]],[[1,1,2,1],[2,3,3,0],[3,0,3,1],[0,2,2,0]],[[1,1,2,1],[2,4,3,0],[2,0,3,1],[0,2,2,0]],[[1,1,2,1],[3,3,3,0],[2,0,3,1],[0,2,2,0]],[[2,1,2,1],[2,3,3,0],[2,0,3,1],[0,2,2,0]],[[1,1,2,1],[2,3,3,0],[2,0,3,0],[1,3,1,1]],[[1,1,2,1],[2,3,3,0],[2,0,3,0],[2,2,1,1]],[[1,1,2,1],[2,3,3,0],[3,0,3,0],[1,2,1,1]],[[1,1,2,1],[2,4,3,0],[2,0,3,0],[1,2,1,1]],[[1,1,2,1],[3,3,3,0],[2,0,3,0],[1,2,1,1]],[[2,1,2,1],[2,3,3,0],[2,0,3,0],[1,2,1,1]],[[1,1,2,1],[2,3,3,0],[2,0,3,0],[2,1,2,1]],[[1,1,2,1],[2,3,3,0],[3,0,3,0],[1,1,2,1]],[[1,1,2,1],[2,4,3,0],[2,0,3,0],[1,1,2,1]],[[1,1,2,1],[3,3,3,0],[2,0,3,0],[1,1,2,1]],[[2,1,2,1],[2,3,3,0],[2,0,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,3,0],[3,0,3,0],[0,2,2,1]],[[1,1,2,1],[2,4,3,0],[2,0,3,0],[0,2,2,1]],[[1,1,2,1],[3,3,3,0],[2,0,3,0],[0,2,2,1]],[[2,1,2,1],[2,3,3,0],[2,0,3,0],[0,2,2,1]],[[1,1,2,1],[2,3,3,0],[2,0,2,1],[1,3,2,0]],[[1,1,2,1],[2,3,3,0],[2,0,2,1],[2,2,2,0]],[[1,1,2,1],[2,3,3,0],[3,0,2,1],[1,2,2,0]],[[1,1,2,1],[2,4,3,0],[2,0,2,1],[1,2,2,0]],[[1,1,2,1],[3,3,3,0],[2,0,2,1],[1,2,2,0]],[[2,1,2,1],[2,3,3,0],[2,0,2,1],[1,2,2,0]],[[1,1,2,1],[2,3,3,0],[2,0,2,0],[1,2,3,1]],[[1,1,2,1],[2,3,3,0],[2,0,2,0],[1,3,2,1]],[[1,1,2,1],[2,3,3,0],[2,0,2,0],[2,2,2,1]],[[1,1,2,1],[2,3,3,0],[3,0,2,0],[1,2,2,1]],[[1,1,2,1],[2,4,3,0],[2,0,2,0],[1,2,2,1]],[[1,1,2,1],[3,3,3,0],[2,0,2,0],[1,2,2,1]],[[2,1,2,1],[2,3,3,0],[2,0,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,3,0],[1,4,3,1],[1,1,0,0]],[[1,1,2,1],[2,4,3,0],[1,3,3,1],[1,1,0,0]],[[1,1,2,1],[3,3,3,0],[1,3,3,1],[1,1,0,0]],[[2,1,2,1],[2,3,3,0],[1,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,3,3,0],[1,4,3,1],[0,2,0,0]],[[1,1,2,1],[2,4,3,0],[1,3,3,1],[0,2,0,0]],[[1,1,2,1],[3,3,3,0],[1,3,3,1],[0,2,0,0]],[[2,1,2,1],[2,3,3,0],[1,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,4,3,0],[1,3,3,1],[0,0,2,0]],[[1,1,2,1],[3,3,3,0],[1,3,3,1],[0,0,2,0]],[[2,1,2,1],[2,3,3,0],[1,3,3,1],[0,0,2,0]],[[1,1,2,1],[2,4,3,0],[1,3,3,1],[0,0,1,1]],[[1,1,2,1],[3,3,3,0],[1,3,3,1],[0,0,1,1]],[[2,1,2,1],[2,3,3,0],[1,3,3,1],[0,0,1,1]],[[1,1,2,1],[2,3,3,0],[1,4,3,0],[1,2,0,0]],[[1,1,2,1],[2,4,3,0],[1,3,3,0],[1,2,0,0]],[[1,1,2,1],[3,3,3,0],[1,3,3,0],[1,2,0,0]],[[2,1,2,1],[2,3,3,0],[1,3,3,0],[1,2,0,0]],[[1,1,2,1],[2,3,3,0],[1,4,3,0],[1,1,1,0]],[[1,1,2,1],[2,4,3,0],[1,3,3,0],[1,1,1,0]],[[1,1,2,1],[3,3,3,0],[1,3,3,0],[1,1,1,0]],[[2,1,2,1],[2,3,3,0],[1,3,3,0],[1,1,1,0]],[[1,1,2,1],[2,3,3,0],[1,4,3,0],[1,0,2,0]],[[1,1,2,1],[2,4,3,0],[1,3,3,0],[1,0,2,0]],[[1,1,2,1],[3,3,3,0],[1,3,3,0],[1,0,2,0]],[[2,1,2,1],[2,3,3,0],[1,3,3,0],[1,0,2,0]],[[1,1,2,1],[2,3,3,0],[1,3,3,0],[0,3,1,0]],[[1,1,2,1],[2,3,3,0],[1,4,3,0],[0,2,1,0]],[[1,1,2,1],[2,4,3,0],[1,3,3,0],[0,2,1,0]],[[1,1,2,1],[3,3,3,0],[1,3,3,0],[0,2,1,0]],[[2,1,2,1],[2,3,3,0],[1,3,3,0],[0,2,1,0]],[[1,1,2,1],[2,3,3,0],[1,4,3,0],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[1,3,3,0],[0,1,2,0]],[[1,1,2,1],[3,3,3,0],[1,3,3,0],[0,1,2,0]],[[2,1,2,1],[2,3,3,0],[1,3,3,0],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[1,3,3,0],[0,0,2,1]],[[1,1,2,1],[3,3,3,0],[1,3,3,0],[0,0,2,1]],[[2,1,2,1],[2,3,3,0],[1,3,3,0],[0,0,2,1]],[[1,1,3,1],[2,1,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,2],[2,1,3,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,1,4,1],[2,0,1,2],[1,2,2,1]],[[1,1,3,1],[2,1,3,1],[2,0,2,2],[1,2,1,1]],[[1,1,2,2],[2,1,3,1],[2,0,2,2],[1,2,1,1]],[[1,1,2,1],[2,1,4,1],[2,0,2,2],[1,2,1,1]],[[1,1,3,1],[2,1,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,2,2],[2,1,3,1],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[2,1,4,1],[2,0,2,2],[1,2,2,0]],[[2,1,2,1],[2,1,3,1],[2,0,3,0],[1,2,2,1]],[[1,1,3,1],[2,1,3,1],[2,0,3,0],[1,2,2,1]],[[1,1,2,2],[2,1,3,1],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[3,1,3,1],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[2,1,4,1],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[2,1,3,1],[3,0,3,0],[1,2,2,1]],[[1,1,2,1],[2,1,3,1],[2,0,4,0],[1,2,2,1]],[[1,1,2,1],[2,1,3,1],[2,0,3,0],[2,2,2,1]],[[1,1,2,1],[2,1,3,1],[2,0,3,0],[1,3,2,1]],[[1,1,2,1],[2,1,3,1],[2,0,3,0],[1,2,3,1]],[[1,1,2,1],[2,1,3,1],[2,0,3,0],[1,2,2,2]],[[1,1,3,1],[2,1,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,2],[2,1,3,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[2,1,4,1],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[2,1,3,1],[2,0,4,1],[1,2,1,1]],[[2,1,2,1],[2,1,3,1],[2,0,3,1],[1,2,2,0]],[[1,1,3,1],[2,1,3,1],[2,0,3,1],[1,2,2,0]],[[1,1,2,2],[2,1,3,1],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[3,1,3,1],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,1,4,1],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,1,3,1],[3,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,1,3,1],[2,0,4,1],[1,2,2,0]],[[1,1,2,1],[2,1,3,1],[2,0,3,1],[2,2,2,0]],[[1,1,2,1],[2,1,3,1],[2,0,3,1],[1,3,2,0]],[[1,1,2,1],[2,1,3,1],[2,0,3,1],[1,2,3,0]],[[1,1,3,1],[2,1,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,2],[2,1,3,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,4,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,3,3,0],[1,4,2,1],[1,2,0,0]],[[1,1,2,1],[2,4,3,0],[1,3,2,1],[1,2,0,0]],[[1,1,2,1],[3,3,3,0],[1,3,2,1],[1,2,0,0]],[[2,1,2,1],[2,3,3,0],[1,3,2,1],[1,2,0,0]],[[1,1,2,1],[2,3,3,0],[1,4,2,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,0],[1,3,2,1],[1,1,1,0]],[[1,1,2,1],[3,3,3,0],[1,3,2,1],[1,1,1,0]],[[2,1,2,1],[2,3,3,0],[1,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,3,3,0],[1,4,2,1],[1,1,0,1]],[[1,1,2,1],[2,4,3,0],[1,3,2,1],[1,1,0,1]],[[1,1,2,1],[3,3,3,0],[1,3,2,1],[1,1,0,1]],[[2,1,2,1],[2,3,3,0],[1,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,3,3,0],[1,4,2,1],[1,0,2,0]],[[1,1,2,1],[2,4,3,0],[1,3,2,1],[1,0,2,0]],[[1,1,2,1],[3,3,3,0],[1,3,2,1],[1,0,2,0]],[[2,1,2,1],[2,3,3,0],[1,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,4,3,0],[1,3,2,1],[1,0,1,1]],[[1,1,2,1],[3,3,3,0],[1,3,2,1],[1,0,1,1]],[[2,1,2,1],[2,3,3,0],[1,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,3,3,0],[1,3,2,1],[0,3,1,0]],[[1,1,2,1],[2,3,3,0],[1,4,2,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,0],[1,3,2,1],[0,2,1,0]],[[1,1,2,1],[3,3,3,0],[1,3,2,1],[0,2,1,0]],[[2,1,2,1],[2,3,3,0],[1,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,3,3,0],[1,4,2,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,0],[1,3,2,1],[0,2,0,1]],[[1,1,2,1],[3,3,3,0],[1,3,2,1],[0,2,0,1]],[[2,1,2,1],[2,3,3,0],[1,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,3,3,0],[1,4,2,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[1,3,2,1],[0,1,2,0]],[[1,1,2,1],[3,3,3,0],[1,3,2,1],[0,1,2,0]],[[2,1,2,1],[2,3,3,0],[1,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[1,3,2,1],[0,1,1,1]],[[1,1,2,1],[3,3,3,0],[1,3,2,1],[0,1,1,1]],[[2,1,2,1],[2,3,3,0],[1,3,2,1],[0,1,1,1]],[[1,1,2,1],[2,3,3,0],[1,4,2,0],[1,2,0,1]],[[1,1,2,1],[2,4,3,0],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[3,3,3,0],[1,3,2,0],[1,2,0,1]],[[2,1,2,1],[2,3,3,0],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[2,3,3,0],[1,4,2,0],[1,1,1,1]],[[1,1,2,1],[2,4,3,0],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[3,3,3,0],[1,3,2,0],[1,1,1,1]],[[2,1,2,1],[2,3,3,0],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[2,3,3,0],[1,4,2,0],[1,0,2,1]],[[1,1,2,1],[2,4,3,0],[1,3,2,0],[1,0,2,1]],[[1,1,2,1],[3,3,3,0],[1,3,2,0],[1,0,2,1]],[[2,1,2,1],[2,3,3,0],[1,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,3,3,0],[1,3,2,0],[0,3,1,1]],[[1,1,2,1],[2,3,3,0],[1,4,2,0],[0,2,1,1]],[[1,1,2,1],[2,4,3,0],[1,3,2,0],[0,2,1,1]],[[1,1,2,1],[3,3,3,0],[1,3,2,0],[0,2,1,1]],[[2,1,2,1],[2,3,3,0],[1,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,3,3,0],[1,4,2,0],[0,1,2,1]],[[1,1,2,1],[2,4,3,0],[1,3,2,0],[0,1,2,1]],[[1,1,2,1],[3,3,3,0],[1,3,2,0],[0,1,2,1]],[[2,1,2,1],[2,3,3,0],[1,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,3,3,0],[1,4,1,1],[1,1,2,0]],[[1,1,2,1],[2,4,3,0],[1,3,1,1],[1,1,2,0]],[[1,1,2,1],[3,3,3,0],[1,3,1,1],[1,1,2,0]],[[2,1,2,1],[2,3,3,0],[1,3,1,1],[1,1,2,0]],[[1,1,2,1],[2,3,3,0],[1,3,1,1],[0,3,2,0]],[[1,1,2,1],[2,3,3,0],[1,4,1,1],[0,2,2,0]],[[1,1,2,1],[2,4,3,0],[1,3,1,1],[0,2,2,0]],[[1,1,2,1],[3,3,3,0],[1,3,1,1],[0,2,2,0]],[[2,1,2,1],[2,3,3,0],[1,3,1,1],[0,2,2,0]],[[1,1,2,1],[2,3,3,0],[1,4,1,0],[1,1,2,1]],[[1,1,2,1],[2,4,3,0],[1,3,1,0],[1,1,2,1]],[[1,1,2,1],[3,3,3,0],[1,3,1,0],[1,1,2,1]],[[2,1,2,1],[2,3,3,0],[1,3,1,0],[1,1,2,1]],[[1,1,2,1],[2,3,3,0],[1,3,1,0],[0,2,3,1]],[[1,1,2,1],[2,3,3,0],[1,3,1,0],[0,3,2,1]],[[1,1,2,1],[2,3,3,0],[1,4,1,0],[0,2,2,1]],[[1,1,2,1],[2,4,3,0],[1,3,1,0],[0,2,2,1]],[[1,1,2,1],[3,3,3,0],[1,3,1,0],[0,2,2,1]],[[2,1,2,1],[2,3,3,0],[1,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,4,3,0],[1,2,3,1],[1,1,1,0]],[[1,1,2,1],[3,3,3,0],[1,2,3,1],[1,1,1,0]],[[2,1,2,1],[2,3,3,0],[1,2,3,1],[1,1,1,0]],[[1,1,2,1],[2,4,3,0],[1,2,3,1],[1,1,0,1]],[[1,1,2,1],[3,3,3,0],[1,2,3,1],[1,1,0,1]],[[2,1,2,1],[2,3,3,0],[1,2,3,1],[1,1,0,1]],[[1,1,2,1],[2,4,3,0],[1,2,3,1],[1,0,2,0]],[[1,1,2,1],[3,3,3,0],[1,2,3,1],[1,0,2,0]],[[2,1,2,1],[2,3,3,0],[1,2,3,1],[1,0,2,0]],[[1,1,2,1],[2,4,3,0],[1,2,3,1],[1,0,1,1]],[[1,1,2,1],[3,3,3,0],[1,2,3,1],[1,0,1,1]],[[2,1,2,1],[2,3,3,0],[1,2,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,3,0],[1,2,3,1],[0,2,1,0]],[[1,1,2,1],[3,3,3,0],[1,2,3,1],[0,2,1,0]],[[2,1,2,1],[2,3,3,0],[1,2,3,1],[0,2,1,0]],[[1,1,2,1],[2,4,3,0],[1,2,3,1],[0,2,0,1]],[[1,1,2,1],[3,3,3,0],[1,2,3,1],[0,2,0,1]],[[2,1,2,1],[2,3,3,0],[1,2,3,1],[0,2,0,1]],[[1,1,2,1],[2,4,3,0],[1,2,3,1],[0,1,2,0]],[[1,1,2,1],[3,3,3,0],[1,2,3,1],[0,1,2,0]],[[2,1,2,1],[2,3,3,0],[1,2,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[1,2,3,1],[0,1,1,1]],[[1,1,2,1],[3,3,3,0],[1,2,3,1],[0,1,1,1]],[[2,1,2,1],[2,3,3,0],[1,2,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,3,0],[1,2,3,0],[1,1,1,1]],[[1,1,2,1],[3,3,3,0],[1,2,3,0],[1,1,1,1]],[[2,1,2,1],[2,3,3,0],[1,2,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,3,0],[1,2,3,0],[1,0,2,1]],[[1,1,2,1],[3,3,3,0],[1,2,3,0],[1,0,2,1]],[[2,1,2,1],[2,3,3,0],[1,2,3,0],[1,0,2,1]],[[1,1,2,1],[2,4,3,0],[1,2,3,0],[0,2,1,1]],[[1,1,2,1],[3,3,3,0],[1,2,3,0],[0,2,1,1]],[[2,1,2,1],[2,3,3,0],[1,2,3,0],[0,2,1,1]],[[1,1,2,1],[2,4,3,0],[1,2,3,0],[0,1,2,1]],[[1,1,2,1],[3,3,3,0],[1,2,3,0],[0,1,2,1]],[[2,1,2,1],[2,3,3,0],[1,2,3,0],[0,1,2,1]],[[1,1,2,1],[2,4,3,0],[1,1,3,1],[0,2,2,0]],[[1,1,2,1],[3,3,3,0],[1,1,3,1],[0,2,2,0]],[[2,1,2,1],[2,3,3,0],[1,1,3,1],[0,2,2,0]],[[1,1,2,1],[2,4,3,0],[1,1,3,0],[0,2,2,1]],[[1,1,2,1],[3,3,3,0],[1,1,3,0],[0,2,2,1]],[[2,1,2,1],[2,3,3,0],[1,1,3,0],[0,2,2,1]],[[1,1,2,1],[2,4,3,0],[1,0,3,1],[1,2,2,0]],[[1,1,2,1],[3,3,3,0],[1,0,3,1],[1,2,2,0]],[[2,1,2,1],[2,3,3,0],[1,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,4,3,0],[1,0,3,0],[1,2,2,1]],[[1,1,2,1],[3,3,3,0],[1,0,3,0],[1,2,2,1]],[[2,1,2,1],[2,3,3,0],[1,0,3,0],[1,2,2,1]],[[1,1,2,1],[2,3,4,0],[0,3,3,2],[1,1,0,0]],[[1,1,2,1],[2,4,3,0],[0,3,3,2],[1,1,0,0]],[[1,1,2,2],[2,3,3,0],[0,3,3,2],[1,1,0,0]],[[1,1,3,1],[2,3,3,0],[0,3,3,2],[1,1,0,0]],[[1,1,2,1],[2,3,4,0],[0,3,3,2],[0,2,0,0]],[[1,1,2,1],[2,4,3,0],[0,3,3,2],[0,2,0,0]],[[1,1,2,2],[2,3,3,0],[0,3,3,2],[0,2,0,0]],[[1,1,3,1],[2,3,3,0],[0,3,3,2],[0,2,0,0]],[[1,1,2,1],[2,3,3,0],[0,3,3,3],[0,0,2,0]],[[1,1,2,1],[2,3,3,0],[0,3,4,2],[0,0,2,0]],[[1,1,2,1],[2,3,4,0],[0,3,3,2],[0,0,2,0]],[[1,1,2,1],[2,4,3,0],[0,3,3,2],[0,0,2,0]],[[1,1,2,2],[2,3,3,0],[0,3,3,2],[0,0,2,0]],[[1,1,3,1],[2,3,3,0],[0,3,3,2],[0,0,2,0]],[[1,1,2,1],[2,3,3,0],[0,3,3,2],[0,0,1,2]],[[1,1,2,1],[2,3,3,0],[0,3,3,3],[0,0,1,1]],[[1,1,2,1],[2,3,3,0],[0,3,4,2],[0,0,1,1]],[[1,1,2,1],[2,3,4,0],[0,3,3,2],[0,0,1,1]],[[1,1,2,1],[2,4,3,0],[0,3,3,2],[0,0,1,1]],[[1,1,2,2],[2,3,3,0],[0,3,3,2],[0,0,1,1]],[[1,1,3,1],[2,3,3,0],[0,3,3,2],[0,0,1,1]],[[1,1,2,1],[2,3,3,0],[0,4,3,1],[1,2,0,0]],[[1,1,2,1],[2,4,3,0],[0,3,3,1],[1,2,0,0]],[[1,1,2,1],[3,3,3,0],[0,3,3,1],[1,2,0,0]],[[2,1,2,1],[2,3,3,0],[0,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,3,3,0],[0,3,4,1],[0,0,2,1]],[[1,1,2,1],[2,3,4,0],[0,3,3,1],[0,0,2,1]],[[1,1,2,1],[2,4,3,0],[0,3,3,1],[0,0,2,1]],[[1,1,2,2],[2,3,3,0],[0,3,3,1],[0,0,2,1]],[[1,1,3,1],[2,3,3,0],[0,3,3,1],[0,0,2,1]],[[1,1,2,1],[2,3,3,0],[0,3,3,0],[1,3,1,0]],[[1,1,2,1],[2,3,3,0],[0,3,3,0],[2,2,1,0]],[[1,1,2,1],[2,3,3,0],[0,4,3,0],[1,2,1,0]],[[1,1,2,1],[2,4,3,0],[0,3,3,0],[1,2,1,0]],[[1,1,2,1],[3,3,3,0],[0,3,3,0],[1,2,1,0]],[[2,1,2,1],[2,3,3,0],[0,3,3,0],[1,2,1,0]],[[1,1,2,1],[2,3,3,0],[0,4,3,0],[1,1,2,0]],[[1,1,2,1],[2,4,3,0],[0,3,3,0],[1,1,2,0]],[[1,1,2,1],[3,3,3,0],[0,3,3,0],[1,1,2,0]],[[2,1,2,1],[2,3,3,0],[0,3,3,0],[1,1,2,0]],[[1,1,2,1],[2,3,4,0],[0,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,4,3,0],[0,3,2,2],[1,1,1,0]],[[1,1,2,2],[2,3,3,0],[0,3,2,2],[1,1,1,0]],[[1,1,3,1],[2,3,3,0],[0,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,3,4,0],[0,3,2,2],[1,1,0,1]],[[1,1,2,1],[2,4,3,0],[0,3,2,2],[1,1,0,1]],[[1,1,2,2],[2,3,3,0],[0,3,2,2],[1,1,0,1]],[[1,1,3,1],[2,3,3,0],[0,3,2,2],[1,1,0,1]],[[1,1,2,1],[2,3,4,0],[0,3,2,2],[1,0,2,0]],[[1,1,2,1],[2,4,3,0],[0,3,2,2],[1,0,2,0]],[[1,1,2,2],[2,3,3,0],[0,3,2,2],[1,0,2,0]],[[1,1,3,1],[2,3,3,0],[0,3,2,2],[1,0,2,0]],[[1,1,2,1],[2,3,4,0],[0,3,2,2],[1,0,1,1]],[[1,1,2,1],[2,4,3,0],[0,3,2,2],[1,0,1,1]],[[1,1,2,2],[2,3,3,0],[0,3,2,2],[1,0,1,1]],[[1,1,3,1],[2,3,3,0],[0,3,2,2],[1,0,1,1]],[[1,1,2,1],[2,3,4,0],[0,3,2,2],[0,2,1,0]],[[1,1,2,1],[2,4,3,0],[0,3,2,2],[0,2,1,0]],[[1,1,2,2],[2,3,3,0],[0,3,2,2],[0,2,1,0]],[[1,1,3,1],[2,3,3,0],[0,3,2,2],[0,2,1,0]],[[1,1,2,1],[2,3,4,0],[0,3,2,2],[0,2,0,1]],[[1,1,2,1],[2,4,3,0],[0,3,2,2],[0,2,0,1]],[[1,1,2,2],[2,3,3,0],[0,3,2,2],[0,2,0,1]],[[1,1,3,1],[2,3,3,0],[0,3,2,2],[0,2,0,1]],[[1,1,2,1],[2,3,4,0],[0,3,2,2],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[0,3,2,2],[0,1,2,0]],[[1,1,2,2],[2,3,3,0],[0,3,2,2],[0,1,2,0]],[[1,1,3,1],[2,3,3,0],[0,3,2,2],[0,1,2,0]],[[1,1,2,1],[2,3,4,0],[0,3,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,3,0],[0,3,2,2],[0,1,1,1]],[[1,1,2,2],[2,3,3,0],[0,3,2,2],[0,1,1,1]],[[1,1,3,1],[2,3,3,0],[0,3,2,2],[0,1,1,1]],[[1,1,2,1],[2,3,3,0],[0,3,2,1],[1,3,1,0]],[[1,1,2,1],[2,3,3,0],[0,3,2,1],[2,2,1,0]],[[1,1,2,1],[2,3,3,0],[0,4,2,1],[1,2,1,0]],[[1,1,2,1],[2,4,3,0],[0,3,2,1],[1,2,1,0]],[[1,1,2,1],[3,3,3,0],[0,3,2,1],[1,2,1,0]],[[2,1,2,1],[2,3,3,0],[0,3,2,1],[1,2,1,0]],[[1,1,2,1],[2,3,3,0],[0,4,2,1],[1,2,0,1]],[[1,1,2,1],[2,4,3,0],[0,3,2,1],[1,2,0,1]],[[1,1,2,1],[3,3,3,0],[0,3,2,1],[1,2,0,1]],[[2,1,2,1],[2,3,3,0],[0,3,2,1],[1,2,0,1]],[[1,1,2,1],[2,3,3,0],[0,4,2,1],[1,1,2,0]],[[1,1,2,1],[2,4,3,0],[0,3,2,1],[1,1,2,0]],[[1,1,2,1],[3,3,3,0],[0,3,2,1],[1,1,2,0]],[[2,1,2,1],[2,3,3,0],[0,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,3,4,0],[0,3,2,1],[1,0,2,1]],[[1,1,2,1],[2,4,3,0],[0,3,2,1],[1,0,2,1]],[[1,1,2,2],[2,3,3,0],[0,3,2,1],[1,0,2,1]],[[1,1,3,1],[2,3,3,0],[0,3,2,1],[1,0,2,1]],[[1,1,2,1],[2,3,4,0],[0,3,2,1],[0,2,1,1]],[[1,1,2,1],[2,4,3,0],[0,3,2,1],[0,2,1,1]],[[1,1,2,2],[2,3,3,0],[0,3,2,1],[0,2,1,1]],[[1,1,3,1],[2,3,3,0],[0,3,2,1],[0,2,1,1]],[[1,1,2,1],[2,3,4,0],[0,3,2,1],[0,1,2,1]],[[1,1,2,1],[2,4,3,0],[0,3,2,1],[0,1,2,1]],[[1,1,2,2],[2,3,3,0],[0,3,2,1],[0,1,2,1]],[[1,1,3,1],[2,3,3,0],[0,3,2,1],[0,1,2,1]],[[1,1,2,1],[2,3,3,0],[0,3,2,0],[1,3,1,1]],[[1,1,2,1],[2,3,3,0],[0,3,2,0],[2,2,1,1]],[[1,1,2,1],[2,3,3,0],[0,4,2,0],[1,2,1,1]],[[1,1,2,1],[2,4,3,0],[0,3,2,0],[1,2,1,1]],[[1,1,2,1],[3,3,3,0],[0,3,2,0],[1,2,1,1]],[[2,1,2,1],[2,3,3,0],[0,3,2,0],[1,2,1,1]],[[1,1,2,1],[2,3,3,0],[0,4,2,0],[1,1,2,1]],[[1,1,2,1],[2,4,3,0],[0,3,2,0],[1,1,2,1]],[[1,1,2,1],[3,3,3,0],[0,3,2,0],[1,1,2,1]],[[2,1,2,1],[2,3,3,0],[0,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,3,4,0],[0,3,1,2],[0,2,2,0]],[[1,1,2,1],[2,4,3,0],[0,3,1,2],[0,2,2,0]],[[1,1,2,2],[2,3,3,0],[0,3,1,2],[0,2,2,0]],[[1,1,3,1],[2,3,3,0],[0,3,1,2],[0,2,2,0]],[[1,1,2,1],[2,3,3,0],[0,3,1,1],[1,3,2,0]],[[1,1,2,1],[2,3,3,0],[0,3,1,1],[2,2,2,0]],[[1,1,2,1],[2,3,3,0],[0,4,1,1],[1,2,2,0]],[[1,1,2,1],[2,4,3,0],[0,3,1,1],[1,2,2,0]],[[1,1,2,1],[3,3,3,0],[0,3,1,1],[1,2,2,0]],[[2,1,2,1],[2,3,3,0],[0,3,1,1],[1,2,2,0]],[[1,1,2,1],[2,3,4,0],[0,3,1,1],[0,2,2,1]],[[1,1,2,1],[2,4,3,0],[0,3,1,1],[0,2,2,1]],[[1,1,2,2],[2,3,3,0],[0,3,1,1],[0,2,2,1]],[[1,1,3,1],[2,3,3,0],[0,3,1,1],[0,2,2,1]],[[1,1,2,1],[2,3,3,0],[0,3,1,0],[1,2,3,1]],[[1,1,2,1],[2,3,3,0],[0,3,1,0],[1,3,2,1]],[[1,1,2,1],[2,3,3,0],[0,3,1,0],[2,2,2,1]],[[1,1,2,1],[2,3,3,0],[0,4,1,0],[1,2,2,1]],[[1,1,2,1],[2,4,3,0],[0,3,1,0],[1,2,2,1]],[[1,1,2,1],[3,3,3,0],[0,3,1,0],[1,2,2,1]],[[2,1,2,1],[2,3,3,0],[0,3,1,0],[1,2,2,1]],[[1,1,2,1],[2,3,4,0],[0,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,4,3,0],[0,3,0,2],[0,2,2,1]],[[1,1,2,2],[2,3,3,0],[0,3,0,2],[0,2,2,1]],[[1,1,3,1],[2,3,3,0],[0,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,3,4,0],[0,2,3,2],[1,1,1,0]],[[1,1,2,1],[2,4,3,0],[0,2,3,2],[1,1,1,0]],[[1,1,2,2],[2,3,3,0],[0,2,3,2],[1,1,1,0]],[[1,1,3,1],[2,3,3,0],[0,2,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,4,0],[0,2,3,2],[1,1,0,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,2],[1,1,0,1]],[[1,1,2,2],[2,3,3,0],[0,2,3,2],[1,1,0,1]],[[1,1,3,1],[2,3,3,0],[0,2,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,3,0],[0,2,3,3],[1,0,2,0]],[[1,1,2,1],[2,3,3,0],[0,2,4,2],[1,0,2,0]],[[1,1,2,1],[2,3,4,0],[0,2,3,2],[1,0,2,0]],[[1,1,2,1],[2,4,3,0],[0,2,3,2],[1,0,2,0]],[[1,1,2,2],[2,3,3,0],[0,2,3,2],[1,0,2,0]],[[1,1,3,1],[2,3,3,0],[0,2,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,3,0],[0,2,3,2],[1,0,1,2]],[[1,1,2,1],[2,3,3,0],[0,2,3,3],[1,0,1,1]],[[1,1,2,1],[2,3,3,0],[0,2,4,2],[1,0,1,1]],[[1,1,2,1],[2,3,4,0],[0,2,3,2],[1,0,1,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,2],[1,0,1,1]],[[1,1,2,2],[2,3,3,0],[0,2,3,2],[1,0,1,1]],[[1,1,3,1],[2,3,3,0],[0,2,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,3,0],[0,2,3,3],[0,2,1,0]],[[1,1,2,1],[2,3,3,0],[0,2,4,2],[0,2,1,0]],[[1,1,2,1],[2,3,4,0],[0,2,3,2],[0,2,1,0]],[[1,1,2,1],[2,4,3,0],[0,2,3,2],[0,2,1,0]],[[1,1,2,2],[2,3,3,0],[0,2,3,2],[0,2,1,0]],[[1,1,3,1],[2,3,3,0],[0,2,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,3,0],[0,2,3,2],[0,2,0,2]],[[1,1,2,1],[2,3,3,0],[0,2,3,3],[0,2,0,1]],[[1,1,2,1],[2,3,3,0],[0,2,4,2],[0,2,0,1]],[[1,1,2,1],[2,3,4,0],[0,2,3,2],[0,2,0,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,2],[0,2,0,1]],[[1,1,2,2],[2,3,3,0],[0,2,3,2],[0,2,0,1]],[[1,1,3,1],[2,3,3,0],[0,2,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,3,0],[0,2,3,2],[0,1,3,0]],[[1,1,2,1],[2,3,3,0],[0,2,3,3],[0,1,2,0]],[[1,1,2,1],[2,3,3,0],[0,2,4,2],[0,1,2,0]],[[1,1,2,1],[2,3,4,0],[0,2,3,2],[0,1,2,0]],[[1,1,2,1],[2,4,3,0],[0,2,3,2],[0,1,2,0]],[[1,1,2,2],[2,3,3,0],[0,2,3,2],[0,1,2,0]],[[1,1,3,1],[2,3,3,0],[0,2,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,3,0],[0,2,3,2],[0,1,1,2]],[[1,1,2,1],[2,3,3,0],[0,2,3,3],[0,1,1,1]],[[1,1,2,1],[2,3,3,0],[0,2,4,2],[0,1,1,1]],[[1,1,2,1],[2,3,4,0],[0,2,3,2],[0,1,1,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,2],[0,1,1,1]],[[1,1,2,2],[2,3,3,0],[0,2,3,2],[0,1,1,1]],[[1,1,3,1],[2,3,3,0],[0,2,3,2],[0,1,1,1]],[[1,1,2,1],[2,3,3,0],[0,2,3,2],[0,0,2,2]],[[1,1,2,1],[2,3,3,0],[0,2,3,3],[0,0,2,1]],[[1,1,2,1],[2,3,3,0],[0,2,4,2],[0,0,2,1]],[[1,1,2,1],[2,3,4,0],[0,2,3,2],[0,0,2,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,2],[0,0,2,1]],[[1,1,2,2],[2,3,3,0],[0,2,3,2],[0,0,2,1]],[[1,1,3,1],[2,3,3,0],[0,2,3,2],[0,0,2,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,1],[1,2,1,0]],[[1,1,2,1],[3,3,3,0],[0,2,3,1],[1,2,1,0]],[[2,1,2,1],[2,3,3,0],[0,2,3,1],[1,2,1,0]],[[1,1,2,1],[2,4,3,0],[0,2,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,3,0],[0,2,3,1],[1,2,0,1]],[[2,1,2,1],[2,3,3,0],[0,2,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,1],[1,1,2,0]],[[1,1,2,1],[3,3,3,0],[0,2,3,1],[1,1,2,0]],[[2,1,2,1],[2,3,3,0],[0,2,3,1],[1,1,2,0]],[[1,1,2,1],[2,3,3,0],[0,2,4,1],[1,0,2,1]],[[1,1,2,1],[2,3,4,0],[0,2,3,1],[1,0,2,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,1],[1,0,2,1]],[[1,1,2,2],[2,3,3,0],[0,2,3,1],[1,0,2,1]],[[1,1,3,1],[2,3,3,0],[0,2,3,1],[1,0,2,1]],[[1,1,2,1],[2,3,3,0],[0,2,4,1],[0,2,1,1]],[[1,1,2,1],[2,3,4,0],[0,2,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,1],[0,2,1,1]],[[1,1,2,2],[2,3,3,0],[0,2,3,1],[0,2,1,1]],[[1,1,3,1],[2,3,3,0],[0,2,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,3,0],[0,2,3,1],[0,1,2,2]],[[1,1,2,1],[2,3,3,0],[0,2,3,1],[0,1,3,1]],[[1,1,2,1],[2,3,3,0],[0,2,4,1],[0,1,2,1]],[[1,1,2,1],[2,3,4,0],[0,2,3,1],[0,1,2,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,1],[0,1,2,1]],[[1,1,2,2],[2,3,3,0],[0,2,3,1],[0,1,2,1]],[[1,1,3,1],[2,3,3,0],[0,2,3,1],[0,1,2,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,0],[1,2,1,1]],[[1,1,2,1],[3,3,3,0],[0,2,3,0],[1,2,1,1]],[[2,1,2,1],[2,3,3,0],[0,2,3,0],[1,2,1,1]],[[1,1,2,1],[2,4,3,0],[0,2,3,0],[1,1,2,1]],[[1,1,2,1],[3,3,3,0],[0,2,3,0],[1,1,2,1]],[[2,1,2,1],[2,3,3,0],[0,2,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,3,0],[0,2,2,2],[0,1,2,2]],[[1,1,2,1],[2,3,3,0],[0,2,2,2],[0,1,3,1]],[[1,1,2,1],[2,3,3,0],[0,2,2,3],[0,1,2,1]],[[1,1,2,1],[2,3,3,0],[0,1,3,2],[0,2,3,0]],[[1,1,2,1],[2,3,3,0],[0,1,3,3],[0,2,2,0]],[[1,1,2,1],[2,3,3,0],[0,1,4,2],[0,2,2,0]],[[1,1,2,1],[2,3,4,0],[0,1,3,2],[0,2,2,0]],[[1,1,2,1],[2,4,3,0],[0,1,3,2],[0,2,2,0]],[[1,1,2,2],[2,3,3,0],[0,1,3,2],[0,2,2,0]],[[1,1,3,1],[2,3,3,0],[0,1,3,2],[0,2,2,0]],[[1,1,2,1],[2,3,3,0],[0,1,3,2],[0,2,1,2]],[[1,1,2,1],[2,3,3,0],[0,1,3,3],[0,2,1,1]],[[1,1,2,1],[2,3,3,0],[0,1,4,2],[0,2,1,1]],[[1,1,2,1],[2,3,4,0],[0,1,3,2],[0,2,1,1]],[[1,1,2,1],[2,4,3,0],[0,1,3,2],[0,2,1,1]],[[1,1,2,2],[2,3,3,0],[0,1,3,2],[0,2,1,1]],[[1,1,3,1],[2,3,3,0],[0,1,3,2],[0,2,1,1]],[[1,1,2,1],[2,4,3,0],[0,1,3,1],[1,2,2,0]],[[1,1,2,1],[3,3,3,0],[0,1,3,1],[1,2,2,0]],[[2,1,2,1],[2,3,3,0],[0,1,3,1],[1,2,2,0]],[[1,1,2,1],[2,3,3,0],[0,1,3,1],[0,2,2,2]],[[1,1,2,1],[2,3,3,0],[0,1,3,1],[0,2,3,1]],[[1,1,2,1],[2,3,3,0],[0,1,4,1],[0,2,2,1]],[[1,1,2,1],[2,3,4,0],[0,1,3,1],[0,2,2,1]],[[1,1,2,1],[2,4,3,0],[0,1,3,1],[0,2,2,1]],[[1,1,2,2],[2,3,3,0],[0,1,3,1],[0,2,2,1]],[[1,1,3,1],[2,3,3,0],[0,1,3,1],[0,2,2,1]],[[1,1,2,1],[2,4,3,0],[0,1,3,0],[1,2,2,1]],[[1,1,2,1],[3,3,3,0],[0,1,3,0],[1,2,2,1]],[[2,1,2,1],[2,3,3,0],[0,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,3,3,0],[0,1,2,2],[0,2,2,2]],[[1,1,2,1],[2,3,3,0],[0,1,2,2],[0,2,3,1]],[[1,1,2,1],[2,3,3,0],[0,1,2,3],[0,2,2,1]],[[1,1,2,1],[2,3,3,0],[0,0,3,2],[0,2,2,2]],[[1,1,2,1],[2,3,3,0],[0,0,3,2],[0,2,3,1]],[[1,1,2,1],[2,3,3,0],[0,0,3,3],[0,2,2,1]],[[1,1,2,1],[2,3,2,2],[3,3,3,0],[1,0,0,0]],[[1,1,2,1],[2,4,2,2],[2,3,3,0],[1,0,0,0]],[[1,1,2,1],[3,3,2,2],[2,3,3,0],[1,0,0,0]],[[2,1,2,1],[2,3,2,2],[2,3,3,0],[1,0,0,0]],[[1,1,2,1],[2,3,2,2],[3,3,2,0],[1,0,1,0]],[[1,1,2,1],[2,4,2,2],[2,3,2,0],[1,0,1,0]],[[1,1,2,1],[3,3,2,2],[2,3,2,0],[1,0,1,0]],[[2,1,2,1],[2,3,2,2],[2,3,2,0],[1,0,1,0]],[[1,1,2,1],[2,3,2,2],[3,3,2,0],[1,0,0,1]],[[1,1,2,1],[2,4,2,2],[2,3,2,0],[1,0,0,1]],[[1,1,2,1],[3,3,2,2],[2,3,2,0],[1,0,0,1]],[[2,1,2,1],[2,3,2,2],[2,3,2,0],[1,0,0,1]],[[1,1,2,1],[2,3,2,2],[2,3,1,0],[2,2,0,0]],[[1,1,2,1],[2,3,2,2],[3,3,1,0],[1,2,0,0]],[[1,1,2,1],[2,4,2,2],[2,3,1,0],[1,2,0,0]],[[1,1,2,1],[3,3,2,2],[2,3,1,0],[1,2,0,0]],[[2,1,2,1],[2,3,2,2],[2,3,1,0],[1,2,0,0]],[[1,1,2,1],[2,3,2,2],[2,3,1,0],[2,1,1,0]],[[1,1,2,1],[2,3,2,2],[3,3,1,0],[1,1,1,0]],[[1,1,2,1],[2,4,2,2],[2,3,1,0],[1,1,1,0]],[[1,1,2,1],[3,3,2,2],[2,3,1,0],[1,1,1,0]],[[2,1,2,1],[2,3,2,2],[2,3,1,0],[1,1,1,0]],[[1,1,2,1],[2,3,2,2],[2,3,1,0],[2,1,0,1]],[[1,1,2,1],[2,3,2,2],[3,3,1,0],[1,1,0,1]],[[1,1,2,1],[2,4,2,2],[2,3,1,0],[1,1,0,1]],[[1,1,2,1],[3,3,2,2],[2,3,1,0],[1,1,0,1]],[[2,1,2,1],[2,3,2,2],[2,3,1,0],[1,1,0,1]],[[1,1,2,1],[2,3,2,2],[3,3,1,0],[0,2,1,0]],[[1,1,2,1],[2,4,2,2],[2,3,1,0],[0,2,1,0]],[[1,1,2,1],[3,3,2,2],[2,3,1,0],[0,2,1,0]],[[2,1,2,1],[2,3,2,2],[2,3,1,0],[0,2,1,0]],[[1,1,2,1],[2,3,2,2],[3,3,1,0],[0,2,0,1]],[[1,1,2,1],[2,4,2,2],[2,3,1,0],[0,2,0,1]],[[1,1,2,1],[3,3,2,2],[2,3,1,0],[0,2,0,1]],[[2,1,2,1],[2,3,2,2],[2,3,1,0],[0,2,0,1]],[[1,1,2,1],[2,3,2,2],[3,3,0,2],[1,0,1,0]],[[1,1,2,1],[2,4,2,2],[2,3,0,2],[1,0,1,0]],[[1,1,2,1],[3,3,2,2],[2,3,0,2],[1,0,1,0]],[[2,1,2,1],[2,3,2,2],[2,3,0,2],[1,0,1,0]],[[1,1,2,1],[2,3,2,2],[3,3,0,2],[1,0,0,1]],[[1,1,2,1],[2,4,2,2],[2,3,0,2],[1,0,0,1]],[[1,1,2,1],[3,3,2,2],[2,3,0,2],[1,0,0,1]],[[2,1,2,1],[2,3,2,2],[2,3,0,2],[1,0,0,1]],[[1,1,3,1],[2,1,3,2],[2,0,0,2],[1,2,2,1]],[[1,1,2,2],[2,1,3,2],[2,0,0,2],[1,2,2,1]],[[1,1,2,1],[2,1,3,3],[2,0,0,2],[1,2,2,1]],[[1,1,3,1],[2,1,3,2],[2,0,3,0],[1,2,2,0]],[[1,1,2,2],[2,1,3,2],[2,0,3,0],[1,2,2,0]],[[1,1,2,1],[2,1,4,2],[2,0,3,0],[1,2,2,0]],[[1,1,2,1],[2,3,2,2],[2,3,0,0],[2,2,1,0]],[[1,1,2,1],[2,3,2,2],[3,3,0,0],[1,2,1,0]],[[1,1,2,1],[2,4,2,2],[2,3,0,0],[1,2,1,0]],[[1,1,2,1],[3,3,2,2],[2,3,0,0],[1,2,1,0]],[[2,1,2,1],[2,3,2,2],[2,3,0,0],[1,2,1,0]],[[1,1,2,1],[2,3,2,2],[2,3,0,0],[2,1,2,0]],[[1,1,2,1],[2,3,2,2],[3,3,0,0],[1,1,2,0]],[[1,1,2,1],[2,4,2,2],[2,3,0,0],[1,1,2,0]],[[1,1,2,1],[3,3,2,2],[2,3,0,0],[1,1,2,0]],[[2,1,2,1],[2,3,2,2],[2,3,0,0],[1,1,2,0]],[[1,1,2,1],[2,3,2,2],[3,3,0,0],[0,2,2,0]],[[1,1,2,1],[2,4,2,2],[2,3,0,0],[0,2,2,0]],[[1,1,2,1],[3,3,2,2],[2,3,0,0],[0,2,2,0]],[[2,1,2,1],[2,3,2,2],[2,3,0,0],[0,2,2,0]],[[1,1,2,1],[2,3,2,2],[2,2,3,0],[2,1,0,0]],[[1,1,2,1],[2,3,2,2],[3,2,3,0],[1,1,0,0]],[[1,1,2,1],[2,4,2,2],[2,2,3,0],[1,1,0,0]],[[1,1,2,1],[3,3,2,2],[2,2,3,0],[1,1,0,0]],[[2,1,2,1],[2,3,2,2],[2,2,3,0],[1,1,0,0]],[[1,1,2,1],[2,3,2,2],[3,2,3,0],[0,2,0,0]],[[1,1,2,1],[2,4,2,2],[2,2,3,0],[0,2,0,0]],[[1,1,2,1],[3,3,2,2],[2,2,3,0],[0,2,0,0]],[[2,1,2,1],[2,3,2,2],[2,2,3,0],[0,2,0,0]],[[1,1,2,1],[2,3,2,2],[2,2,2,0],[2,2,0,0]],[[1,1,2,1],[2,3,2,2],[3,2,2,0],[1,2,0,0]],[[1,1,2,1],[2,4,2,2],[2,2,2,0],[1,2,0,0]],[[1,1,2,1],[3,3,2,2],[2,2,2,0],[1,2,0,0]],[[2,1,2,1],[2,3,2,2],[2,2,2,0],[1,2,0,0]],[[1,1,2,1],[2,3,2,2],[2,2,2,0],[2,1,1,0]],[[1,1,2,1],[2,3,2,2],[3,2,2,0],[1,1,1,0]],[[1,1,2,1],[2,4,2,2],[2,2,2,0],[1,1,1,0]],[[1,1,2,1],[3,3,2,2],[2,2,2,0],[1,1,1,0]],[[2,1,2,1],[2,3,2,2],[2,2,2,0],[1,1,1,0]],[[1,1,2,1],[2,3,2,2],[2,2,2,0],[2,1,0,1]],[[1,1,2,1],[2,3,2,2],[3,2,2,0],[1,1,0,1]],[[1,1,2,1],[2,4,2,2],[2,2,2,0],[1,1,0,1]],[[1,1,2,1],[3,3,2,2],[2,2,2,0],[1,1,0,1]],[[2,1,2,1],[2,3,2,2],[2,2,2,0],[1,1,0,1]],[[1,1,2,1],[2,3,2,2],[2,2,2,0],[2,0,2,0]],[[1,1,2,1],[2,3,2,2],[3,2,2,0],[1,0,2,0]],[[1,1,2,1],[2,4,2,2],[2,2,2,0],[1,0,2,0]],[[1,1,2,1],[3,3,2,2],[2,2,2,0],[1,0,2,0]],[[2,1,2,1],[2,3,2,2],[2,2,2,0],[1,0,2,0]],[[1,1,2,1],[2,3,2,2],[3,2,2,0],[1,0,1,1]],[[1,1,2,1],[2,4,2,2],[2,2,2,0],[1,0,1,1]],[[1,1,2,1],[3,3,2,2],[2,2,2,0],[1,0,1,1]],[[2,1,2,1],[2,3,2,2],[2,2,2,0],[1,0,1,1]],[[1,1,2,1],[2,3,2,2],[3,2,2,0],[0,2,1,0]],[[1,1,2,1],[2,4,2,2],[2,2,2,0],[0,2,1,0]],[[1,1,2,1],[3,3,2,2],[2,2,2,0],[0,2,1,0]],[[2,1,2,1],[2,3,2,2],[2,2,2,0],[0,2,1,0]],[[1,1,2,1],[2,3,2,2],[3,2,2,0],[0,2,0,1]],[[1,1,2,1],[2,4,2,2],[2,2,2,0],[0,2,0,1]],[[1,1,2,1],[3,3,2,2],[2,2,2,0],[0,2,0,1]],[[2,1,2,1],[2,3,2,2],[2,2,2,0],[0,2,0,1]],[[1,1,2,1],[2,3,2,2],[3,2,2,0],[0,1,2,0]],[[1,1,2,1],[2,4,2,2],[2,2,2,0],[0,1,2,0]],[[1,1,2,1],[3,3,2,2],[2,2,2,0],[0,1,2,0]],[[2,1,2,1],[2,3,2,2],[2,2,2,0],[0,1,2,0]],[[1,1,2,1],[2,4,2,2],[2,2,2,0],[0,1,1,1]],[[1,1,2,1],[3,3,2,2],[2,2,2,0],[0,1,1,1]],[[2,1,2,1],[2,3,2,2],[2,2,2,0],[0,1,1,1]],[[1,1,2,1],[2,3,2,2],[2,2,1,0],[2,1,2,0]],[[1,1,2,1],[2,3,2,2],[3,2,1,0],[1,1,2,0]],[[1,1,2,1],[2,4,2,2],[2,2,1,0],[1,1,2,0]],[[1,1,2,1],[3,3,2,2],[2,2,1,0],[1,1,2,0]],[[2,1,2,1],[2,3,2,2],[2,2,1,0],[1,1,2,0]],[[1,1,2,1],[2,3,2,2],[3,2,1,0],[0,2,2,0]],[[1,1,2,1],[2,4,2,2],[2,2,1,0],[0,2,2,0]],[[1,1,2,1],[3,3,2,2],[2,2,1,0],[0,2,2,0]],[[2,1,2,1],[2,3,2,2],[2,2,1,0],[0,2,2,0]],[[1,1,2,1],[2,3,2,2],[2,2,0,2],[2,2,0,0]],[[1,1,2,1],[2,3,2,2],[3,2,0,2],[1,2,0,0]],[[1,1,2,1],[2,4,2,2],[2,2,0,2],[1,2,0,0]],[[1,1,2,1],[3,3,2,2],[2,2,0,2],[1,2,0,0]],[[2,1,2,1],[2,3,2,2],[2,2,0,2],[1,2,0,0]],[[1,1,2,1],[2,3,2,2],[2,2,0,2],[2,1,1,0]],[[1,1,2,1],[2,3,2,2],[3,2,0,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,2],[2,2,0,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,2],[2,2,0,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,2],[2,2,0,2],[1,1,1,0]],[[1,1,2,1],[2,3,2,2],[2,2,0,2],[2,1,0,1]],[[1,1,2,1],[2,3,2,2],[3,2,0,2],[1,1,0,1]],[[1,1,2,1],[2,4,2,2],[2,2,0,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,2],[2,2,0,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,2],[2,2,0,2],[1,1,0,1]],[[1,1,2,1],[2,3,2,2],[3,2,0,2],[1,0,2,0]],[[1,1,2,1],[2,4,2,2],[2,2,0,2],[1,0,2,0]],[[1,1,2,1],[3,3,2,2],[2,2,0,2],[1,0,2,0]],[[2,1,2,1],[2,3,2,2],[2,2,0,2],[1,0,2,0]],[[1,1,2,1],[2,3,2,2],[3,2,0,2],[1,0,1,1]],[[1,1,2,1],[2,4,2,2],[2,2,0,2],[1,0,1,1]],[[1,1,2,1],[3,3,2,2],[2,2,0,2],[1,0,1,1]],[[2,1,2,1],[2,3,2,2],[2,2,0,2],[1,0,1,1]],[[1,1,2,1],[2,3,2,2],[3,2,0,2],[0,2,1,0]],[[1,1,2,1],[2,4,2,2],[2,2,0,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,2],[2,2,0,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,2],[2,2,0,2],[0,2,1,0]],[[1,1,2,1],[2,3,2,2],[3,2,0,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,2],[2,2,0,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,2],[2,2,0,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,2],[2,2,0,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,2],[2,2,0,2],[0,1,2,0]],[[1,1,2,1],[3,3,2,2],[2,2,0,2],[0,1,2,0]],[[2,1,2,1],[2,3,2,2],[2,2,0,2],[0,1,2,0]],[[1,1,2,1],[2,4,2,2],[2,2,0,2],[0,1,1,1]],[[1,1,2,1],[3,3,2,2],[2,2,0,2],[0,1,1,1]],[[2,1,2,1],[2,3,2,2],[2,2,0,2],[0,1,1,1]],[[1,1,2,1],[2,3,2,2],[2,2,0,0],[1,3,2,0]],[[1,1,2,1],[2,3,2,2],[2,2,0,0],[2,2,2,0]],[[1,1,2,1],[2,3,2,2],[3,2,0,0],[1,2,2,0]],[[1,1,2,1],[2,4,2,2],[2,2,0,0],[1,2,2,0]],[[1,1,2,1],[3,3,2,2],[2,2,0,0],[1,2,2,0]],[[2,1,2,1],[2,3,2,2],[2,2,0,0],[1,2,2,0]],[[1,1,2,1],[2,3,2,2],[2,1,3,0],[2,1,1,0]],[[1,1,2,1],[2,3,2,2],[3,1,3,0],[1,1,1,0]],[[1,1,2,1],[2,4,2,2],[2,1,3,0],[1,1,1,0]],[[1,1,2,1],[3,3,2,2],[2,1,3,0],[1,1,1,0]],[[2,1,2,1],[2,3,2,2],[2,1,3,0],[1,1,1,0]],[[1,1,2,1],[2,3,2,2],[2,1,3,0],[2,1,0,1]],[[1,1,2,1],[2,3,2,2],[3,1,3,0],[1,1,0,1]],[[1,1,2,1],[2,4,2,2],[2,1,3,0],[1,1,0,1]],[[1,1,2,1],[3,3,2,2],[2,1,3,0],[1,1,0,1]],[[2,1,2,1],[2,3,2,2],[2,1,3,0],[1,1,0,1]],[[1,1,2,1],[2,3,2,2],[2,1,3,0],[2,0,2,0]],[[1,1,2,1],[2,3,2,2],[3,1,3,0],[1,0,2,0]],[[1,1,2,1],[2,4,2,2],[2,1,3,0],[1,0,2,0]],[[1,1,2,1],[3,3,2,2],[2,1,3,0],[1,0,2,0]],[[2,1,2,1],[2,3,2,2],[2,1,3,0],[1,0,2,0]],[[1,1,2,1],[2,3,2,2],[3,1,3,0],[1,0,1,1]],[[1,1,2,1],[2,4,2,2],[2,1,3,0],[1,0,1,1]],[[1,1,2,1],[3,3,2,2],[2,1,3,0],[1,0,1,1]],[[2,1,2,1],[2,3,2,2],[2,1,3,0],[1,0,1,1]],[[1,1,2,1],[2,3,2,2],[3,1,3,0],[0,2,1,0]],[[1,1,2,1],[2,4,2,2],[2,1,3,0],[0,2,1,0]],[[1,1,2,1],[3,3,2,2],[2,1,3,0],[0,2,1,0]],[[2,1,2,1],[2,3,2,2],[2,1,3,0],[0,2,1,0]],[[1,1,2,1],[2,3,2,2],[3,1,3,0],[0,2,0,1]],[[1,1,2,1],[2,4,2,2],[2,1,3,0],[0,2,0,1]],[[1,1,2,1],[3,3,2,2],[2,1,3,0],[0,2,0,1]],[[2,1,2,1],[2,3,2,2],[2,1,3,0],[0,2,0,1]],[[1,1,2,1],[2,3,2,2],[3,1,3,0],[0,1,2,0]],[[1,1,2,1],[2,4,2,2],[2,1,3,0],[0,1,2,0]],[[1,1,2,1],[3,3,2,2],[2,1,3,0],[0,1,2,0]],[[2,1,2,1],[2,3,2,2],[2,1,3,0],[0,1,2,0]],[[1,1,2,1],[2,4,2,2],[2,1,3,0],[0,1,1,1]],[[1,1,2,1],[3,3,2,2],[2,1,3,0],[0,1,1,1]],[[2,1,2,1],[2,3,2,2],[2,1,3,0],[0,1,1,1]],[[1,1,2,1],[2,3,2,2],[2,1,2,0],[1,3,1,0]],[[1,1,2,1],[2,3,2,2],[2,1,2,0],[2,2,1,0]],[[1,1,2,1],[2,3,2,2],[3,1,2,0],[1,2,1,0]],[[1,1,2,1],[2,4,2,2],[2,1,2,0],[1,2,1,0]],[[1,1,2,1],[3,3,2,2],[2,1,2,0],[1,2,1,0]],[[2,1,2,1],[2,3,2,2],[2,1,2,0],[1,2,1,0]],[[1,1,2,1],[2,3,2,2],[2,1,2,0],[2,2,0,1]],[[1,1,2,1],[2,3,2,2],[3,1,2,0],[1,2,0,1]],[[1,1,2,1],[2,4,2,2],[2,1,2,0],[1,2,0,1]],[[1,1,2,1],[3,3,2,2],[2,1,2,0],[1,2,0,1]],[[2,1,2,1],[2,3,2,2],[2,1,2,0],[1,2,0,1]],[[1,1,2,1],[2,3,2,2],[2,1,1,0],[1,3,2,0]],[[1,1,2,1],[2,3,2,2],[2,1,1,0],[2,2,2,0]],[[1,1,2,1],[2,3,2,2],[3,1,1,0],[1,2,2,0]],[[1,1,2,1],[2,4,2,2],[2,1,1,0],[1,2,2,0]],[[1,1,2,1],[3,3,2,2],[2,1,1,0],[1,2,2,0]],[[2,1,2,1],[2,3,2,2],[2,1,1,0],[1,2,2,0]],[[1,1,2,1],[2,3,2,2],[2,1,0,2],[2,2,1,0]],[[1,1,2,1],[2,3,2,2],[3,1,0,2],[1,2,1,0]],[[1,1,2,1],[2,4,2,2],[2,1,0,2],[1,2,1,0]],[[1,1,2,1],[3,3,2,2],[2,1,0,2],[1,2,1,0]],[[2,1,2,1],[2,3,2,2],[2,1,0,2],[1,2,1,0]],[[1,1,2,1],[2,3,2,2],[2,1,0,2],[2,2,0,1]],[[1,1,2,1],[2,3,2,2],[3,1,0,2],[1,2,0,1]],[[1,1,2,1],[2,4,2,2],[2,1,0,2],[1,2,0,1]],[[1,1,2,1],[3,3,2,2],[2,1,0,2],[1,2,0,1]],[[2,1,2,1],[2,3,2,2],[2,1,0,2],[1,2,0,1]],[[1,1,2,1],[2,3,2,2],[2,0,3,0],[1,3,1,0]],[[1,1,2,1],[2,3,2,2],[2,0,3,0],[2,2,1,0]],[[1,1,2,1],[2,3,2,2],[3,0,3,0],[1,2,1,0]],[[1,1,2,1],[2,4,2,2],[2,0,3,0],[1,2,1,0]],[[1,1,2,1],[3,3,2,2],[2,0,3,0],[1,2,1,0]],[[2,1,2,1],[2,3,2,2],[2,0,3,0],[1,2,1,0]],[[1,1,2,1],[2,3,2,2],[2,0,3,0],[2,2,0,1]],[[1,1,2,1],[2,3,2,2],[3,0,3,0],[1,2,0,1]],[[1,1,2,1],[2,4,2,2],[2,0,3,0],[1,2,0,1]],[[1,1,2,1],[3,3,2,2],[2,0,3,0],[1,2,0,1]],[[2,1,2,1],[2,3,2,2],[2,0,3,0],[1,2,0,1]],[[1,1,2,1],[2,3,2,2],[2,0,3,0],[2,1,2,0]],[[1,1,2,1],[2,3,2,2],[3,0,3,0],[1,1,2,0]],[[1,1,2,1],[2,4,2,2],[2,0,3,0],[1,1,2,0]],[[1,1,2,1],[3,3,2,2],[2,0,3,0],[1,1,2,0]],[[2,1,2,1],[2,3,2,2],[2,0,3,0],[1,1,2,0]],[[1,1,2,1],[2,3,2,2],[3,0,3,0],[0,2,2,0]],[[1,1,2,1],[2,4,2,2],[2,0,3,0],[0,2,2,0]],[[1,1,2,1],[3,3,2,2],[2,0,3,0],[0,2,2,0]],[[2,1,2,1],[2,3,2,2],[2,0,3,0],[0,2,2,0]],[[1,1,2,1],[2,3,2,2],[2,0,2,0],[1,3,2,0]],[[1,1,2,1],[2,3,2,2],[2,0,2,0],[2,2,2,0]],[[1,1,2,1],[2,3,2,2],[3,0,2,0],[1,2,2,0]],[[1,1,2,1],[2,4,2,2],[2,0,2,0],[1,2,2,0]],[[1,1,2,1],[3,3,2,2],[2,0,2,0],[1,2,2,0]],[[2,1,2,1],[2,3,2,2],[2,0,2,0],[1,2,2,0]],[[1,1,2,1],[2,3,2,2],[1,4,3,0],[1,1,0,0]],[[1,1,2,1],[2,4,2,2],[1,3,3,0],[1,1,0,0]],[[1,1,2,1],[3,3,2,2],[1,3,3,0],[1,1,0,0]],[[2,1,2,1],[2,3,2,2],[1,3,3,0],[1,1,0,0]],[[1,1,2,1],[2,3,2,2],[1,4,3,0],[0,2,0,0]],[[1,1,2,1],[2,4,2,2],[1,3,3,0],[0,2,0,0]],[[1,1,2,1],[3,3,2,2],[1,3,3,0],[0,2,0,0]],[[2,1,2,1],[2,3,2,2],[1,3,3,0],[0,2,0,0]],[[1,1,2,1],[2,4,2,2],[1,3,3,0],[0,0,2,0]],[[1,1,2,1],[3,3,2,2],[1,3,3,0],[0,0,2,0]],[[2,1,2,1],[2,3,2,2],[1,3,3,0],[0,0,2,0]],[[1,1,2,1],[2,4,2,2],[1,3,3,0],[0,0,1,1]],[[1,1,2,1],[3,3,2,2],[1,3,3,0],[0,0,1,1]],[[2,1,2,1],[2,3,2,2],[1,3,3,0],[0,0,1,1]],[[1,1,2,1],[2,2,0,0],[1,4,3,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,0],[1,3,3,1],[2,2,2,1]],[[1,1,2,1],[2,2,0,0],[1,3,3,1],[1,3,2,1]],[[1,1,2,1],[2,2,0,0],[1,3,3,1],[1,2,3,1]],[[1,1,2,1],[2,2,0,0],[1,3,3,1],[1,2,2,2]],[[1,1,2,1],[2,2,0,0],[1,4,3,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,0],[1,3,3,2],[2,2,2,0]],[[1,1,2,1],[2,2,0,0],[1,3,3,2],[1,3,2,0]],[[1,1,2,1],[2,2,0,0],[1,3,3,2],[1,2,3,0]],[[2,1,2,1],[2,2,0,0],[2,2,3,1],[1,2,2,1]],[[1,1,2,1],[3,2,0,0],[2,2,3,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,0],[3,2,3,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,0],[2,2,3,1],[2,2,2,1]],[[1,1,2,1],[2,2,0,0],[2,2,3,1],[1,3,2,1]],[[1,1,2,1],[2,2,0,0],[2,2,3,1],[1,2,3,1]],[[1,1,2,1],[2,2,0,0],[2,2,3,1],[1,2,2,2]],[[2,1,2,1],[2,2,0,0],[2,2,3,2],[1,2,2,0]],[[1,1,2,1],[3,2,0,0],[2,2,3,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,0],[3,2,3,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,0],[2,2,3,2],[2,2,2,0]],[[1,1,2,1],[2,2,0,0],[2,2,3,2],[1,3,2,0]],[[1,1,2,1],[2,2,0,0],[2,2,3,2],[1,2,3,0]],[[2,1,2,1],[2,2,0,0],[2,3,3,1],[0,2,2,1]],[[1,1,2,1],[3,2,0,0],[2,3,3,1],[0,2,2,1]],[[1,1,2,1],[2,2,0,0],[3,3,3,1],[0,2,2,1]],[[1,1,2,1],[2,2,0,0],[2,4,3,1],[0,2,2,1]],[[1,1,2,1],[2,2,0,0],[2,3,3,1],[0,3,2,1]],[[1,1,2,1],[2,2,0,0],[2,3,3,1],[0,2,3,1]],[[1,1,2,1],[2,2,0,0],[2,3,3,1],[0,2,2,2]],[[2,1,2,1],[2,2,0,0],[2,3,3,1],[1,1,2,1]],[[1,1,2,1],[3,2,0,0],[2,3,3,1],[1,1,2,1]],[[1,1,2,1],[2,2,0,0],[3,3,3,1],[1,1,2,1]],[[1,1,2,1],[2,2,0,0],[2,4,3,1],[1,1,2,1]],[[1,1,2,1],[2,2,0,0],[2,3,3,1],[2,1,2,1]],[[2,1,2,1],[2,2,0,0],[2,3,3,2],[0,2,2,0]],[[1,1,2,1],[3,2,0,0],[2,3,3,2],[0,2,2,0]],[[1,1,2,1],[2,2,0,0],[3,3,3,2],[0,2,2,0]],[[1,1,2,1],[2,2,0,0],[2,4,3,2],[0,2,2,0]],[[1,1,2,1],[2,2,0,0],[2,3,3,2],[0,3,2,0]],[[1,1,2,1],[2,2,0,0],[2,3,3,2],[0,2,3,0]],[[2,1,2,1],[2,2,0,0],[2,3,3,2],[1,1,2,0]],[[1,1,2,1],[3,2,0,0],[2,3,3,2],[1,1,2,0]],[[1,1,2,1],[2,2,0,0],[3,3,3,2],[1,1,2,0]],[[1,1,2,1],[2,2,0,0],[2,4,3,2],[1,1,2,0]],[[1,1,2,1],[2,2,0,0],[2,3,3,2],[2,1,2,0]],[[1,1,2,1],[2,2,0,1],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[2,2,0,1],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[2,2,0,1],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[2,2,0,1],[1,2,2,2],[1,2,2,2]],[[1,1,2,1],[2,2,0,1],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[2,2,0,1],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[2,2,0,1],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[2,2,0,1],[1,2,3,1],[1,2,2,2]],[[1,1,2,1],[2,2,0,1],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[2,2,0,1],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[2,2,0,1],[1,2,3,2],[1,2,1,2]],[[1,1,2,1],[2,2,0,1],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,1],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[2,2,0,1],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[2,2,0,1],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[2,2,0,1],[1,2,3,2],[1,2,3,0]],[[1,1,2,1],[2,2,0,1],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[1,3,1,3],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[2,2,0,1],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[2,2,0,1],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[2,2,0,1],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[2,2,0,1],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[2,2,0,1],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[2,2,0,1],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[2,2,0,1],[1,3,2,1],[1,2,2,2]],[[1,1,2,1],[2,2,0,1],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[2,2,0,1],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[2,2,0,1],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[2,2,0,1],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,1],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[2,2,0,1],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[2,2,0,1],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[2,2,0,1],[1,4,3,1],[1,1,2,1]],[[1,1,2,1],[2,2,0,1],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[2,2,0,1],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[2,2,0,1],[1,3,3,1],[1,1,2,2]],[[1,1,2,1],[2,2,0,1],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[2,2,0,1],[1,3,4,1],[1,2,1,1]],[[1,1,2,1],[2,2,0,1],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[2,2,0,1],[1,3,3,1],[1,3,1,1]],[[1,1,2,1],[2,2,0,1],[1,4,3,2],[1,1,1,1]],[[1,1,2,1],[2,2,0,1],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[2,2,0,1],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[2,2,0,1],[1,3,3,2],[1,1,1,2]],[[1,1,2,1],[2,2,0,1],[1,4,3,2],[1,1,2,0]],[[1,1,2,1],[2,2,0,1],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[2,2,0,1],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[2,2,0,1],[1,3,3,2],[1,1,3,0]],[[1,1,2,1],[2,2,0,1],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[2,2,0,1],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[2,2,0,1],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[2,2,0,1],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[2,2,0,1],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[2,2,0,1],[1,3,3,2],[1,2,0,2]],[[1,1,2,1],[2,2,0,1],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[2,2,0,1],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[2,2,0,1],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[2,2,0,1],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[2,2,0,1],[1,3,3,2],[1,3,1,0]],[[2,1,2,1],[2,2,0,1],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[3,2,0,1],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[3,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[2,2,0,1],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[2,2,0,1],[2,1,2,2],[1,2,2,2]],[[2,1,2,1],[2,2,0,1],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[3,2,0,1],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[3,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[2,2,0,1],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[2,2,0,1],[2,1,3,1],[1,2,2,2]],[[1,1,2,1],[2,2,0,1],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[2,2,0,1],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[2,2,0,1],[2,1,3,2],[1,2,1,2]],[[2,1,2,1],[2,2,0,1],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[3,2,0,1],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,1],[3,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[2,2,0,1],[2,1,3,2],[1,2,3,0]],[[2,1,2,1],[2,2,0,1],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[3,2,0,1],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,2,1,3],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[2,2,0,1],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[2,2,0,1],[2,2,1,2],[1,2,2,2]],[[2,1,2,1],[2,2,0,1],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[3,2,0,1],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[2,2,0,1],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[2,2,0,1],[2,2,2,1],[1,2,2,2]],[[1,1,2,1],[2,2,0,1],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[2,2,0,1],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[2,2,0,1],[2,2,2,2],[0,2,2,2]],[[2,1,2,1],[2,2,0,1],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[3,2,0,1],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,1],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[2,2,0,1],[2,2,2,2],[1,2,3,0]],[[1,1,2,1],[2,2,0,1],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[2,2,0,1],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[2,2,0,1],[2,2,3,1],[0,2,2,2]],[[2,1,2,1],[2,2,0,1],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[3,2,0,1],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,2,0,1],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,2,0,1],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[2,2,0,1],[2,2,3,1],[1,3,1,1]],[[1,1,2,1],[2,2,0,1],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[2,2,0,1],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[2,2,0,1],[2,2,3,2],[0,2,1,2]],[[1,1,2,1],[2,2,0,1],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[2,2,0,1],[2,2,3,2],[0,2,3,0]],[[2,1,2,1],[2,2,0,1],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[3,2,0,1],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,2,0,1],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,2,0,1],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[2,2,0,1],[2,2,3,2],[1,3,0,1]],[[2,1,2,1],[2,2,0,1],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[3,2,0,1],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,2,0,1],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,2,0,1],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[2,2,0,1],[2,2,3,2],[1,3,1,0]],[[2,1,2,1],[2,2,0,1],[2,3,0,2],[1,2,2,1]],[[1,1,2,1],[3,2,0,1],[2,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[3,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,0,2],[2,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,0,2],[1,3,2,1]],[[2,1,2,1],[2,2,0,1],[2,3,1,1],[1,2,2,1]],[[1,1,2,1],[3,2,0,1],[2,3,1,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[3,3,1,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,1,1],[2,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,1,1],[1,3,2,1]],[[2,1,2,1],[2,2,0,1],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[3,2,0,1],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,2,0,1],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,1,3],[0,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[2,2,0,1],[2,3,1,2],[0,2,2,2]],[[2,1,2,1],[2,2,0,1],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[3,2,0,1],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,2,0,1],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,2,0,1],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,1,2],[2,1,2,1]],[[2,1,2,1],[2,2,0,1],[2,3,1,2],[1,2,2,0]],[[1,1,2,1],[3,2,0,1],[2,3,1,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,1],[3,3,1,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,1,2],[2,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,1,2],[1,3,2,0]],[[2,1,2,1],[2,2,0,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[3,2,0,1],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,2,0,1],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[2,2,0,1],[2,3,2,1],[0,2,2,2]],[[2,1,2,1],[2,2,0,1],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[3,2,0,1],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,2,0,1],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,2,0,1],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,2,1],[2,1,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[2,2,0,1],[2,3,2,2],[0,1,2,2]],[[2,1,2,1],[2,2,0,1],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[3,2,0,1],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,2,0,1],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,2,2],[0,2,3,0]],[[1,1,2,1],[2,2,0,1],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[2,2,0,1],[2,3,2,2],[1,0,2,2]],[[2,1,2,1],[2,2,0,1],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[3,2,0,1],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,2,0,1],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,2,0,1],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,2,2],[2,1,2,0]],[[1,1,2,1],[2,3,2,2],[1,4,2,0],[1,2,0,0]],[[1,1,2,1],[2,4,2,2],[1,3,2,0],[1,2,0,0]],[[1,1,2,1],[3,3,2,2],[1,3,2,0],[1,2,0,0]],[[2,1,2,1],[2,3,2,2],[1,3,2,0],[1,2,0,0]],[[2,1,2,1],[2,2,0,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[3,2,0,1],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,2,0,1],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,2,0,1],[2,4,3,1],[0,1,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,1],[0,1,2,2]],[[2,1,2,1],[2,2,0,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[3,2,0,1],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,2,0,1],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,2,0,1],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[2,2,0,1],[2,3,4,1],[0,2,1,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,1],[0,3,1,1]],[[2,1,2,1],[2,2,0,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[3,2,0,1],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,2,0,1],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,2,0,1],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,1],[2,0,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,1],[1,0,2,2]],[[2,1,2,1],[2,2,0,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[3,2,0,1],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,2,0,1],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,2,0,1],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[2,2,0,1],[2,3,4,1],[1,1,1,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,1],[2,1,1,1]],[[2,1,2,1],[2,2,0,1],[2,3,3,1],[1,2,0,1]],[[1,1,2,1],[3,2,0,1],[2,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,0,1],[3,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,0,1],[2,4,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,1],[2,2,0,1]],[[1,1,2,1],[2,3,2,2],[1,4,2,0],[1,1,1,0]],[[1,1,2,1],[2,2,0,1],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[0,0,2,2]],[[2,1,2,1],[2,2,0,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[3,2,0,1],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,2,0,1],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,2,0,1],[2,4,3,2],[0,1,1,1]],[[1,1,2,1],[2,2,0,1],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[0,1,1,2]],[[2,1,2,1],[2,2,0,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[3,2,0,1],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,2,0,1],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,2,0,1],[2,4,3,2],[0,1,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[0,1,3,0]],[[2,1,2,1],[2,2,0,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[3,2,0,1],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,2,0,1],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,2,0,1],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[2,2,0,1],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[0,3,0,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[0,2,0,2]],[[2,1,2,1],[2,2,0,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[3,2,0,1],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,2,0,1],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,2,0,1],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[2,2,0,1],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[2,2,0,1],[2,3,3,3],[0,2,1,0]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[0,3,1,0]],[[1,1,2,1],[2,4,2,2],[1,3,2,0],[1,1,1,0]],[[1,1,2,1],[3,3,2,2],[1,3,2,0],[1,1,1,0]],[[2,1,2,1],[2,3,2,2],[1,3,2,0],[1,1,1,0]],[[1,1,2,1],[2,3,2,2],[1,4,2,0],[1,1,0,1]],[[1,1,2,1],[2,4,2,2],[1,3,2,0],[1,1,0,1]],[[1,1,2,1],[3,3,2,2],[1,3,2,0],[1,1,0,1]],[[2,1,2,1],[2,3,2,2],[1,3,2,0],[1,1,0,1]],[[2,1,2,1],[2,2,0,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[3,2,0,1],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,2,0,1],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,2,0,1],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[2,2,0,1],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[2,0,1,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[1,0,1,2]],[[2,1,2,1],[2,2,0,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[3,2,0,1],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,2,0,1],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,2,0,1],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[1,0,3,0]],[[2,1,2,1],[2,2,0,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[3,2,0,1],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,2,0,1],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,2,0,1],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[2,2,0,1],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[1,1,0,2]],[[2,1,2,1],[2,2,0,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[3,2,0,1],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,2,0,1],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,2,0,1],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[2,2,0,1],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[2,2,0,1],[2,3,3,3],[1,1,1,0]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[2,1,1,0]],[[1,1,2,1],[2,3,2,2],[1,4,2,0],[1,0,2,0]],[[1,1,2,1],[2,4,2,2],[1,3,2,0],[1,0,2,0]],[[1,1,2,1],[3,3,2,2],[1,3,2,0],[1,0,2,0]],[[2,1,2,1],[2,3,2,2],[1,3,2,0],[1,0,2,0]],[[2,1,2,1],[2,2,0,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[3,2,0,1],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,2,0,1],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,2,0,1],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[2,2,0,1],[2,3,3,2],[2,2,0,0]],[[1,1,2,1],[2,4,2,2],[1,3,2,0],[1,0,1,1]],[[1,1,2,1],[3,3,2,2],[1,3,2,0],[1,0,1,1]],[[2,1,2,1],[2,3,2,2],[1,3,2,0],[1,0,1,1]],[[1,1,2,1],[2,3,2,2],[1,3,2,0],[0,3,1,0]],[[1,1,2,1],[2,3,2,2],[1,4,2,0],[0,2,1,0]],[[1,1,2,1],[2,4,2,2],[1,3,2,0],[0,2,1,0]],[[1,1,2,1],[3,3,2,2],[1,3,2,0],[0,2,1,0]],[[2,1,2,1],[2,3,2,2],[1,3,2,0],[0,2,1,0]],[[1,1,2,1],[2,3,2,2],[1,4,2,0],[0,2,0,1]],[[1,1,2,1],[2,4,2,2],[1,3,2,0],[0,2,0,1]],[[1,1,2,1],[3,3,2,2],[1,3,2,0],[0,2,0,1]],[[2,1,2,1],[2,3,2,2],[1,3,2,0],[0,2,0,1]],[[1,1,2,1],[2,2,0,2],[1,2,4,0],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[1,2,3,0],[2,2,2,1]],[[1,1,2,1],[2,2,0,2],[1,2,3,0],[1,3,2,1]],[[1,1,2,1],[2,2,0,2],[1,2,3,0],[1,2,3,1]],[[1,1,2,1],[2,2,0,2],[1,2,3,0],[1,2,2,2]],[[1,1,2,1],[2,2,0,2],[1,2,4,1],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[1,2,3,1],[2,2,2,0]],[[1,1,2,1],[2,2,0,2],[1,2,3,1],[1,3,2,0]],[[1,1,2,1],[2,2,0,2],[1,2,3,1],[1,2,3,0]],[[1,1,2,1],[2,3,2,2],[1,4,2,0],[0,1,2,0]],[[1,1,2,1],[2,4,2,2],[1,3,2,0],[0,1,2,0]],[[1,1,2,1],[3,3,2,2],[1,3,2,0],[0,1,2,0]],[[2,1,2,1],[2,3,2,2],[1,3,2,0],[0,1,2,0]],[[1,1,2,1],[2,4,2,2],[1,3,2,0],[0,1,1,1]],[[1,1,2,1],[3,3,2,2],[1,3,2,0],[0,1,1,1]],[[2,1,2,1],[2,3,2,2],[1,3,2,0],[0,1,1,1]],[[1,1,2,1],[2,2,0,2],[1,4,1,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[1,3,1,1],[2,2,2,1]],[[1,1,2,1],[2,2,0,2],[1,3,1,1],[1,3,2,1]],[[1,1,2,1],[2,2,0,2],[1,3,1,1],[1,2,3,1]],[[1,1,2,1],[2,2,0,2],[1,3,1,1],[1,2,2,2]],[[1,1,2,1],[2,2,0,2],[1,4,1,2],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[1,3,1,2],[2,2,1,1]],[[1,1,2,1],[2,2,0,2],[1,3,1,2],[1,3,1,1]],[[1,1,2,1],[2,2,0,2],[1,4,1,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[1,3,1,2],[2,2,2,0]],[[1,1,2,1],[2,2,0,2],[1,3,1,2],[1,3,2,0]],[[1,1,2,1],[2,2,0,2],[1,3,1,2],[1,2,3,0]],[[1,1,2,1],[2,2,0,2],[1,4,2,0],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[1,3,2,0],[2,2,2,1]],[[1,1,2,1],[2,2,0,2],[1,3,2,0],[1,3,2,1]],[[1,1,2,1],[2,2,0,2],[1,3,2,0],[1,2,3,1]],[[1,1,2,1],[2,2,0,2],[1,3,2,0],[1,2,2,2]],[[1,1,2,1],[2,2,0,2],[1,4,2,1],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[1,3,2,1],[2,2,2,0]],[[1,1,2,1],[2,2,0,2],[1,3,2,1],[1,3,2,0]],[[1,1,2,1],[2,2,0,2],[1,3,2,1],[1,2,3,0]],[[1,1,2,1],[2,2,0,2],[1,4,2,2],[1,2,0,1]],[[1,1,2,1],[2,2,0,2],[1,3,2,2],[2,2,0,1]],[[1,1,2,1],[2,2,0,2],[1,3,2,2],[1,3,0,1]],[[1,1,2,1],[2,2,0,2],[1,4,2,2],[1,2,1,0]],[[1,1,2,1],[2,2,0,2],[1,3,2,2],[2,2,1,0]],[[1,1,2,1],[2,2,0,2],[1,3,2,2],[1,3,1,0]],[[1,1,2,1],[2,2,0,2],[1,4,3,0],[1,1,2,1]],[[1,1,2,1],[2,2,0,2],[1,3,4,0],[1,1,2,1]],[[1,1,2,1],[2,2,0,2],[1,3,3,0],[1,1,3,1]],[[1,1,2,1],[2,2,0,2],[1,3,3,0],[1,1,2,2]],[[1,1,2,1],[2,2,0,2],[1,4,3,0],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[1,3,4,0],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[1,3,3,0],[2,2,1,1]],[[1,1,2,1],[2,2,0,2],[1,3,3,0],[1,3,1,1]],[[1,1,2,1],[2,2,0,2],[1,4,3,1],[1,1,2,0]],[[1,1,2,1],[2,2,0,2],[1,3,4,1],[1,1,2,0]],[[1,1,2,1],[2,2,0,2],[1,3,3,1],[1,1,3,0]],[[1,1,2,1],[2,2,0,2],[1,4,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,0,2],[1,3,4,1],[1,2,0,1]],[[1,1,2,1],[2,2,0,2],[1,3,3,1],[2,2,0,1]],[[1,1,2,1],[2,2,0,2],[1,3,3,1],[1,3,0,1]],[[1,1,2,1],[2,2,0,2],[1,4,3,1],[1,2,1,0]],[[1,1,2,1],[2,2,0,2],[1,3,4,1],[1,2,1,0]],[[1,1,2,1],[2,2,0,2],[1,3,3,1],[2,2,1,0]],[[1,1,2,1],[2,2,0,2],[1,3,3,1],[1,3,1,0]],[[2,1,2,1],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,1,3,1],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,2],[2,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[3,2,0,2],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,3],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[3,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,0,2,3],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,0,2,2],[2,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,0,2,2],[1,3,2,1]],[[1,1,2,1],[2,2,0,2],[2,0,2,2],[1,2,3,1]],[[1,1,2,1],[2,2,0,2],[2,0,2,2],[1,2,2,2]],[[2,1,2,1],[2,2,0,2],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[3,2,0,2],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[3,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,0,4,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,0,3,1],[2,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,0,3,1],[1,3,2,1]],[[1,1,2,1],[2,2,0,2],[2,0,3,1],[1,2,3,1]],[[1,1,2,1],[2,2,0,2],[2,0,3,1],[1,2,2,2]],[[1,1,3,1],[2,2,0,2],[2,0,3,2],[1,2,1,1]],[[1,1,2,2],[2,2,0,2],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[2,2,0,3],[2,0,3,2],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,0,4,2],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,0,3,3],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,0,3,2],[1,2,1,2]],[[2,1,2,1],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,1,3,1],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,2],[2,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[3,2,0,2],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,3],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[3,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,0,4,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,0,3,3],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,0,3,2],[2,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,0,3,2],[1,3,2,0]],[[1,1,2,1],[2,2,0,2],[2,0,3,2],[1,2,3,0]],[[2,1,2,1],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,1,3,1],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,2],[2,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[3,2,0,2],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,3],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[3,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,1,1,3],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,1,1,2],[2,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,1,1,2],[1,3,2,1]],[[1,1,2,1],[2,2,0,2],[2,1,1,2],[1,2,3,1]],[[1,1,2,1],[2,2,0,2],[2,1,1,2],[1,2,2,2]],[[2,1,2,1],[2,2,0,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[3,2,0,2],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[3,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,1,4,0],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,1,3,0],[2,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,1,3,0],[1,3,2,1]],[[1,1,2,1],[2,2,0,2],[2,1,3,0],[1,2,3,1]],[[1,1,2,1],[2,2,0,2],[2,1,3,0],[1,2,2,2]],[[2,1,2,1],[2,2,0,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,1],[3,2,0,2],[2,1,3,1],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[3,1,3,1],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,1,4,1],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,1,3,1],[2,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,1,3,1],[1,3,2,0]],[[1,1,2,1],[2,2,0,2],[2,1,3,1],[1,2,3,0]],[[2,1,2,1],[2,2,0,2],[2,2,1,1],[1,2,2,1]],[[1,1,2,1],[3,2,0,2],[2,2,1,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[3,2,1,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,2,1,1],[2,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,2,1,1],[1,3,2,1]],[[1,1,2,1],[2,2,0,2],[2,2,1,1],[1,2,3,1]],[[1,1,2,1],[2,2,0,2],[2,2,1,1],[1,2,2,2]],[[2,1,2,1],[2,2,0,2],[2,2,1,2],[1,2,1,1]],[[1,1,2,1],[3,2,0,2],[2,2,1,2],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[3,2,1,2],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,2,1,2],[2,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,2,1,2],[1,3,1,1]],[[2,1,2,1],[2,2,0,2],[2,2,1,2],[1,2,2,0]],[[1,1,2,1],[3,2,0,2],[2,2,1,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[3,2,1,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,2,1,2],[2,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,2,1,2],[1,3,2,0]],[[1,1,2,1],[2,2,0,2],[2,2,1,2],[1,2,3,0]],[[2,1,2,1],[2,2,0,2],[2,2,2,0],[1,2,2,1]],[[1,1,2,1],[3,2,0,2],[2,2,2,0],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[3,2,2,0],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,2,2,0],[2,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,2,2,0],[1,3,2,1]],[[1,1,2,1],[2,2,0,2],[2,2,2,0],[1,2,3,1]],[[1,1,2,1],[2,2,0,2],[2,2,2,0],[1,2,2,2]],[[2,1,2,1],[2,2,0,2],[2,2,2,1],[1,2,2,0]],[[1,1,2,1],[3,2,0,2],[2,2,2,1],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[3,2,2,1],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,2,2,1],[2,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,2,2,1],[1,3,2,0]],[[1,1,2,1],[2,2,0,2],[2,2,2,1],[1,2,3,0]],[[2,1,2,1],[2,2,0,2],[2,2,2,2],[1,2,0,1]],[[1,1,2,1],[3,2,0,2],[2,2,2,2],[1,2,0,1]],[[1,1,2,1],[2,2,0,2],[3,2,2,2],[1,2,0,1]],[[1,1,2,1],[2,2,0,2],[2,2,2,2],[2,2,0,1]],[[1,1,2,1],[2,2,0,2],[2,2,2,2],[1,3,0,1]],[[2,1,2,1],[2,2,0,2],[2,2,2,2],[1,2,1,0]],[[1,1,2,1],[3,2,0,2],[2,2,2,2],[1,2,1,0]],[[1,1,2,1],[2,2,0,2],[3,2,2,2],[1,2,1,0]],[[1,1,2,1],[2,2,0,2],[2,2,2,2],[2,2,1,0]],[[1,1,2,1],[2,2,0,2],[2,2,2,2],[1,3,1,0]],[[1,1,2,1],[2,2,0,2],[2,2,4,0],[0,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,2,3,0],[0,3,2,1]],[[1,1,2,1],[2,2,0,2],[2,2,3,0],[0,2,3,1]],[[1,1,2,1],[2,2,0,2],[2,2,3,0],[0,2,2,2]],[[2,1,2,1],[2,2,0,2],[2,2,3,0],[1,2,1,1]],[[1,1,2,1],[3,2,0,2],[2,2,3,0],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[3,2,3,0],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,2,3,0],[2,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,2,3,0],[1,3,1,1]],[[1,1,2,1],[2,2,0,2],[2,2,4,1],[0,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,2,3,1],[0,3,2,0]],[[1,1,2,1],[2,2,0,2],[2,2,3,1],[0,2,3,0]],[[2,1,2,1],[2,2,0,2],[2,2,3,1],[1,2,0,1]],[[1,1,2,1],[3,2,0,2],[2,2,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,0,2],[3,2,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,0,2],[2,2,3,1],[2,2,0,1]],[[1,1,2,1],[2,2,0,2],[2,2,3,1],[1,3,0,1]],[[2,1,2,1],[2,2,0,2],[2,2,3,1],[1,2,1,0]],[[1,1,2,1],[3,2,0,2],[2,2,3,1],[1,2,1,0]],[[1,1,2,1],[2,2,0,2],[3,2,3,1],[1,2,1,0]],[[1,1,2,1],[2,2,0,2],[2,2,3,1],[2,2,1,0]],[[1,1,2,1],[2,2,0,2],[2,2,3,1],[1,3,1,0]],[[1,1,2,1],[2,3,2,2],[1,4,1,0],[1,1,2,0]],[[1,1,2,1],[2,4,2,2],[1,3,1,0],[1,1,2,0]],[[1,1,2,1],[3,3,2,2],[1,3,1,0],[1,1,2,0]],[[2,1,2,1],[2,3,2,2],[1,3,1,0],[1,1,2,0]],[[1,1,2,1],[2,3,2,2],[1,3,1,0],[0,3,2,0]],[[1,1,2,1],[2,3,2,2],[1,4,1,0],[0,2,2,0]],[[1,1,2,1],[2,4,2,2],[1,3,1,0],[0,2,2,0]],[[1,1,2,1],[3,3,2,2],[1,3,1,0],[0,2,2,0]],[[2,1,2,1],[2,3,2,2],[1,3,1,0],[0,2,2,0]],[[2,1,2,1],[2,2,0,2],[2,3,0,1],[1,2,2,1]],[[1,1,2,1],[3,2,0,2],[2,3,0,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[3,3,0,1],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,0,1],[2,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,0,1],[1,3,2,1]],[[2,1,2,1],[2,2,0,2],[2,3,0,2],[1,2,1,1]],[[1,1,2,1],[3,2,0,2],[2,3,0,2],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[3,3,0,2],[1,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,0,2],[2,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,0,2],[1,3,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,0,2],[1,2,2,0]],[[1,1,2,1],[3,2,0,2],[2,3,0,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[3,3,0,2],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,0,2],[2,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,0,2],[1,3,2,0]],[[2,1,2,1],[2,2,0,2],[2,3,1,0],[1,2,2,1]],[[1,1,2,1],[3,2,0,2],[2,3,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[3,3,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,1,0],[2,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,1,0],[1,3,2,1]],[[2,1,2,1],[2,2,0,2],[2,3,1,1],[0,2,2,1]],[[1,1,2,1],[3,2,0,2],[2,3,1,1],[0,2,2,1]],[[1,1,2,1],[2,2,0,2],[3,3,1,1],[0,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,4,1,1],[0,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,1,1],[0,3,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,1,1],[0,2,3,1]],[[1,1,2,1],[2,2,0,2],[2,3,1,1],[0,2,2,2]],[[2,1,2,1],[2,2,0,2],[2,3,1,1],[1,1,2,1]],[[1,1,2,1],[3,2,0,2],[2,3,1,1],[1,1,2,1]],[[1,1,2,1],[2,2,0,2],[3,3,1,1],[1,1,2,1]],[[1,1,2,1],[2,2,0,2],[2,4,1,1],[1,1,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,1,1],[2,1,2,1]],[[2,1,2,1],[2,2,0,2],[2,3,1,1],[1,2,2,0]],[[1,1,2,1],[3,2,0,2],[2,3,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[3,3,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,1,1],[2,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,1,1],[1,3,2,0]],[[2,1,2,1],[2,2,0,2],[2,3,1,2],[0,1,2,1]],[[1,1,2,1],[3,2,0,2],[2,3,1,2],[0,1,2,1]],[[1,1,2,1],[2,2,0,2],[3,3,1,2],[0,1,2,1]],[[1,1,2,1],[2,2,0,2],[2,4,1,2],[0,1,2,1]],[[2,1,2,1],[2,2,0,2],[2,3,1,2],[0,2,1,1]],[[1,1,2,1],[3,2,0,2],[2,3,1,2],[0,2,1,1]],[[1,1,2,1],[2,2,0,2],[3,3,1,2],[0,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,4,1,2],[0,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,1,2],[0,3,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,1,2],[0,2,2,0]],[[1,1,2,1],[3,2,0,2],[2,3,1,2],[0,2,2,0]],[[1,1,2,1],[2,2,0,2],[3,3,1,2],[0,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,4,1,2],[0,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,1,2],[0,3,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,1,2],[0,2,3,0]],[[2,1,2,1],[2,2,0,2],[2,3,1,2],[1,0,2,1]],[[1,1,2,1],[3,2,0,2],[2,3,1,2],[1,0,2,1]],[[1,1,2,1],[2,2,0,2],[3,3,1,2],[1,0,2,1]],[[1,1,2,1],[2,2,0,2],[2,4,1,2],[1,0,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,1,2],[2,0,2,1]],[[2,1,2,1],[2,2,0,2],[2,3,1,2],[1,1,1,1]],[[1,1,2,1],[3,2,0,2],[2,3,1,2],[1,1,1,1]],[[1,1,2,1],[2,2,0,2],[3,3,1,2],[1,1,1,1]],[[1,1,2,1],[2,2,0,2],[2,4,1,2],[1,1,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,1,2],[2,1,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,1,2],[1,1,2,0]],[[1,1,2,1],[3,2,0,2],[2,3,1,2],[1,1,2,0]],[[1,1,2,1],[2,2,0,2],[3,3,1,2],[1,1,2,0]],[[1,1,2,1],[2,2,0,2],[2,4,1,2],[1,1,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,1,2],[2,1,2,0]],[[1,1,2,1],[2,4,2,2],[1,3,0,2],[1,2,0,0]],[[1,1,2,1],[3,3,2,2],[1,3,0,2],[1,2,0,0]],[[2,1,2,1],[2,3,2,2],[1,3,0,2],[1,2,0,0]],[[2,1,2,1],[2,2,0,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[3,2,0,2],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[2,2,0,2],[3,3,2,0],[0,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,4,2,0],[0,2,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,2,0],[0,3,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,2,0],[0,2,3,1]],[[1,1,2,1],[2,2,0,2],[2,3,2,0],[0,2,2,2]],[[2,1,2,1],[2,2,0,2],[2,3,2,0],[1,1,2,1]],[[1,1,2,1],[3,2,0,2],[2,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,2,0,2],[3,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,2,0,2],[2,4,2,0],[1,1,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,2,0],[2,1,2,1]],[[2,1,2,1],[2,2,0,2],[2,3,2,1],[0,2,2,0]],[[1,1,2,1],[3,2,0,2],[2,3,2,1],[0,2,2,0]],[[1,1,2,1],[2,2,0,2],[3,3,2,1],[0,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,4,2,1],[0,2,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,2,1],[0,3,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,2,1],[0,2,3,0]],[[2,1,2,1],[2,2,0,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[3,2,0,2],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,2,0,2],[3,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,2,0,2],[2,4,2,1],[1,1,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,2,1],[2,1,2,0]],[[2,1,2,1],[2,2,0,2],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[3,2,0,2],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[2,2,0,2],[3,3,2,2],[0,1,1,1]],[[1,1,2,1],[2,2,0,2],[2,4,2,2],[0,1,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[3,2,0,2],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[2,2,0,2],[3,3,2,2],[0,1,2,0]],[[1,1,2,1],[2,2,0,2],[2,4,2,2],[0,1,2,0]],[[2,1,2,1],[2,2,0,2],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[3,2,0,2],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[2,2,0,2],[3,3,2,2],[0,2,0,1]],[[1,1,2,1],[2,2,0,2],[2,4,2,2],[0,2,0,1]],[[1,1,2,1],[2,2,0,2],[2,3,2,2],[0,3,0,1]],[[2,1,2,1],[2,2,0,2],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[3,2,0,2],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[2,2,0,2],[3,3,2,2],[0,2,1,0]],[[1,1,2,1],[2,2,0,2],[2,4,2,2],[0,2,1,0]],[[1,1,2,1],[2,2,0,2],[2,3,2,2],[0,3,1,0]],[[1,1,2,1],[2,4,2,2],[1,3,0,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,2],[1,3,0,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,2],[1,3,0,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,2],[1,3,0,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,2],[1,3,0,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,2],[1,3,0,2],[1,1,0,1]],[[2,1,2,1],[2,2,0,2],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[3,2,0,2],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[2,2,0,2],[3,3,2,2],[1,0,1,1]],[[1,1,2,1],[2,2,0,2],[2,4,2,2],[1,0,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,2,2],[2,0,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[3,2,0,2],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[2,2,0,2],[3,3,2,2],[1,0,2,0]],[[1,1,2,1],[2,2,0,2],[2,4,2,2],[1,0,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,2,2],[2,0,2,0]],[[2,1,2,1],[2,2,0,2],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[3,2,0,2],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[2,2,0,2],[3,3,2,2],[1,1,0,1]],[[1,1,2,1],[2,2,0,2],[2,4,2,2],[1,1,0,1]],[[1,1,2,1],[2,2,0,2],[2,3,2,2],[2,1,0,1]],[[2,1,2,1],[2,2,0,2],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[3,2,0,2],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,2,0,2],[3,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,2,0,2],[2,4,2,2],[1,1,1,0]],[[1,1,2,1],[2,2,0,2],[2,3,2,2],[2,1,1,0]],[[1,1,2,1],[2,4,2,2],[1,3,0,2],[1,0,2,0]],[[1,1,2,1],[3,3,2,2],[1,3,0,2],[1,0,2,0]],[[2,1,2,1],[2,3,2,2],[1,3,0,2],[1,0,2,0]],[[1,1,2,1],[2,4,2,2],[1,3,0,2],[1,0,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,2,2],[1,2,0,0]],[[1,1,2,1],[3,2,0,2],[2,3,2,2],[1,2,0,0]],[[1,1,2,1],[2,2,0,2],[3,3,2,2],[1,2,0,0]],[[1,1,2,1],[2,2,0,2],[2,4,2,2],[1,2,0,0]],[[1,1,2,1],[2,2,0,2],[2,3,2,2],[2,2,0,0]],[[1,1,2,1],[3,3,2,2],[1,3,0,2],[1,0,1,1]],[[2,1,2,1],[2,3,2,2],[1,3,0,2],[1,0,1,1]],[[1,1,2,1],[2,4,2,2],[1,3,0,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,2],[1,3,0,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,2],[1,3,0,2],[0,2,1,0]],[[2,1,2,1],[2,2,0,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[3,2,0,2],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,2,0,2],[3,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,2,0,2],[2,4,3,0],[0,1,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,4,0],[0,1,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,3,0],[0,1,3,1]],[[1,1,2,1],[2,2,0,2],[2,3,3,0],[0,1,2,2]],[[2,1,2,1],[2,2,0,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[3,2,0,2],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,2,0,2],[3,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,4,3,0],[0,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,4,0],[0,2,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,3,0],[0,3,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[3,2,0,2],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,2,0,2],[3,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,2,0,2],[2,4,3,0],[1,0,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,4,0],[1,0,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,3,0],[2,0,2,1]],[[1,1,2,1],[2,2,0,2],[2,3,3,0],[1,0,3,1]],[[1,1,2,1],[2,2,0,2],[2,3,3,0],[1,0,2,2]],[[2,1,2,1],[2,2,0,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[3,2,0,2],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,2,0,2],[3,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,2,0,2],[2,4,3,0],[1,1,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,4,0],[1,1,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,3,0],[2,1,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[3,2,0,2],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[2,2,0,2],[3,3,3,0],[1,2,0,1]],[[1,1,2,1],[2,2,0,2],[2,4,3,0],[1,2,0,1]],[[1,1,2,1],[2,2,0,2],[2,3,3,0],[2,2,0,1]],[[1,1,2,1],[2,4,2,2],[1,3,0,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,2],[1,3,0,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,2],[1,3,0,2],[0,2,0,1]],[[2,1,2,1],[2,2,0,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[3,2,0,2],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[2,2,0,2],[3,3,3,1],[0,1,1,1]],[[1,1,2,1],[2,2,0,2],[2,4,3,1],[0,1,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,4,1],[0,1,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[3,2,0,2],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,2,0,2],[3,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,2,0,2],[2,4,3,1],[0,1,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,4,1],[0,1,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,3,1],[0,1,3,0]],[[2,1,2,1],[2,2,0,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[3,2,0,2],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,2,0,2],[3,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,2,0,2],[2,4,3,1],[0,2,0,1]],[[1,1,2,1],[2,2,0,2],[2,3,4,1],[0,2,0,1]],[[1,1,2,1],[2,2,0,2],[2,3,3,1],[0,3,0,1]],[[2,1,2,1],[2,2,0,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[3,2,0,2],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,2,0,2],[3,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,2,0,2],[2,4,3,1],[0,2,1,0]],[[1,1,2,1],[2,2,0,2],[2,3,4,1],[0,2,1,0]],[[1,1,2,1],[2,2,0,2],[2,3,3,1],[0,3,1,0]],[[1,1,2,1],[2,4,2,2],[1,3,0,2],[0,1,2,0]],[[1,1,2,1],[3,3,2,2],[1,3,0,2],[0,1,2,0]],[[2,1,2,1],[2,3,2,2],[1,3,0,2],[0,1,2,0]],[[1,1,2,1],[2,4,2,2],[1,3,0,2],[0,1,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[3,2,0,2],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,2,0,2],[3,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,2,0,2],[2,4,3,1],[1,0,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,4,1],[1,0,1,1]],[[1,1,2,1],[2,2,0,2],[2,3,3,1],[2,0,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[3,2,0,2],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,2,0,2],[3,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,2,0,2],[2,4,3,1],[1,0,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,4,1],[1,0,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,3,1],[2,0,2,0]],[[1,1,2,1],[2,2,0,2],[2,3,3,1],[1,0,3,0]],[[2,1,2,1],[2,2,0,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[3,2,0,2],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[2,2,0,2],[3,3,3,1],[1,1,0,1]],[[1,1,2,1],[2,2,0,2],[2,4,3,1],[1,1,0,1]],[[1,1,2,1],[2,2,0,2],[2,3,4,1],[1,1,0,1]],[[1,1,2,1],[2,2,0,2],[2,3,3,1],[2,1,0,1]],[[2,1,2,1],[2,2,0,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[3,2,0,2],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,2,0,2],[3,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,2,0,2],[2,4,3,1],[1,1,1,0]],[[1,1,2,1],[2,2,0,2],[2,3,4,1],[1,1,1,0]],[[1,1,2,1],[2,2,0,2],[2,3,3,1],[2,1,1,0]],[[1,1,2,1],[3,3,2,2],[1,3,0,2],[0,1,1,1]],[[2,1,2,1],[2,3,2,2],[1,3,0,2],[0,1,1,1]],[[2,1,2,1],[2,2,0,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[3,2,0,2],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,2,0,2],[3,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,2,0,2],[2,4,3,1],[1,2,0,0]],[[1,1,2,1],[2,2,0,2],[2,3,3,1],[2,2,0,0]],[[1,1,2,1],[2,4,2,2],[1,2,3,0],[1,1,1,0]],[[1,1,2,1],[3,3,2,2],[1,2,3,0],[1,1,1,0]],[[2,1,2,1],[2,3,2,2],[1,2,3,0],[1,1,1,0]],[[1,1,2,1],[2,4,2,2],[1,2,3,0],[1,1,0,1]],[[1,1,2,1],[3,3,2,2],[1,2,3,0],[1,1,0,1]],[[2,1,2,1],[2,3,2,2],[1,2,3,0],[1,1,0,1]],[[1,1,2,1],[2,4,2,2],[1,2,3,0],[1,0,2,0]],[[1,1,2,1],[3,3,2,2],[1,2,3,0],[1,0,2,0]],[[2,1,2,1],[2,3,2,2],[1,2,3,0],[1,0,2,0]],[[1,1,2,1],[2,4,2,2],[1,2,3,0],[1,0,1,1]],[[1,1,2,1],[3,3,2,2],[1,2,3,0],[1,0,1,1]],[[2,1,2,1],[2,3,2,2],[1,2,3,0],[1,0,1,1]],[[1,1,2,1],[2,4,2,2],[1,2,3,0],[0,2,1,0]],[[1,1,2,1],[3,3,2,2],[1,2,3,0],[0,2,1,0]],[[2,1,2,1],[2,3,2,2],[1,2,3,0],[0,2,1,0]],[[1,1,2,1],[2,4,2,2],[1,2,3,0],[0,2,0,1]],[[1,1,2,1],[3,3,2,2],[1,2,3,0],[0,2,0,1]],[[2,1,2,1],[2,3,2,2],[1,2,3,0],[0,2,0,1]],[[1,1,2,1],[2,4,2,2],[1,2,3,0],[0,1,2,0]],[[1,1,2,1],[3,3,2,2],[1,2,3,0],[0,1,2,0]],[[2,1,2,1],[2,3,2,2],[1,2,3,0],[0,1,2,0]],[[1,1,2,1],[2,4,2,2],[1,2,3,0],[0,1,1,1]],[[1,1,2,1],[3,3,2,2],[1,2,3,0],[0,1,1,1]],[[2,1,2,1],[2,3,2,2],[1,2,3,0],[0,1,1,1]],[[1,1,2,1],[2,2,1,0],[1,2,2,3],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[1,2,2,2],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[1,2,2,2],[1,3,2,1]],[[1,1,2,1],[2,2,1,0],[1,2,2,2],[1,2,3,1]],[[1,1,2,1],[2,2,1,0],[1,2,2,2],[1,2,2,2]],[[1,1,2,1],[2,2,1,0],[1,2,4,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[1,2,3,1],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[1,2,3,1],[1,3,2,1]],[[1,1,2,1],[2,2,1,0],[1,2,3,1],[1,2,3,1]],[[1,1,2,1],[2,2,1,0],[1,2,3,1],[1,2,2,2]],[[1,1,2,1],[2,2,1,0],[1,2,4,2],[1,2,1,1]],[[1,1,2,1],[2,2,1,0],[1,2,3,3],[1,2,1,1]],[[1,1,2,1],[2,2,1,0],[1,2,3,2],[1,2,1,2]],[[1,1,2,1],[2,2,1,0],[1,2,4,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,0],[1,2,3,3],[1,2,2,0]],[[1,1,2,1],[2,2,1,0],[1,2,3,2],[2,2,2,0]],[[1,1,2,1],[2,2,1,0],[1,2,3,2],[1,3,2,0]],[[1,1,2,1],[2,2,1,0],[1,2,3,2],[1,2,3,0]],[[1,1,2,1],[2,2,1,0],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,1,3],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[2,2,1,0],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[2,2,1,0],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[2,2,1,0],[1,3,2,1],[1,2,2,2]],[[1,1,2,1],[2,2,1,0],[1,3,2,3],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,2,2],[1,1,3,1]],[[1,1,2,1],[2,2,1,0],[1,3,2,2],[1,1,2,2]],[[1,1,2,1],[2,2,1,0],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,0],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[2,2,1,0],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[2,2,1,0],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[2,2,1,0],[1,4,3,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,0],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,0],[1,3,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,0],[1,2,3,1]],[[1,1,2,1],[2,2,1,0],[1,4,3,1],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,4,1],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,1],[1,1,3,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,1],[1,1,2,2]],[[1,1,2,1],[2,2,1,0],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[2,2,1,0],[1,3,4,1],[1,2,1,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,1],[1,3,1,1]],[[1,1,2,1],[2,2,1,0],[1,4,3,2],[1,1,1,1]],[[1,1,2,1],[2,2,1,0],[1,3,4,2],[1,1,1,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,3],[1,1,1,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,2],[1,1,1,2]],[[1,1,2,1],[2,2,1,0],[1,4,3,2],[1,1,2,0]],[[1,1,2,1],[2,2,1,0],[1,3,4,2],[1,1,2,0]],[[1,1,2,1],[2,2,1,0],[1,3,3,3],[1,1,2,0]],[[1,1,2,1],[2,2,1,0],[1,3,3,2],[1,1,3,0]],[[1,1,2,1],[2,2,1,0],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[2,2,1,0],[1,3,4,2],[1,2,0,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,3],[1,2,0,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[2,2,1,0],[1,3,3,2],[1,2,0,2]],[[1,1,2,1],[2,2,1,0],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[2,2,1,0],[1,3,4,2],[1,2,1,0]],[[1,1,2,1],[2,2,1,0],[1,3,3,3],[1,2,1,0]],[[1,1,2,1],[2,2,1,0],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[2,2,1,0],[1,3,3,2],[1,3,1,0]],[[2,1,2,1],[2,2,1,0],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[3,2,1,0],[2,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[3,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,1,2,3],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,1,2,2],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,1,2,2],[1,3,2,1]],[[1,1,2,1],[2,2,1,0],[2,1,2,2],[1,2,3,1]],[[1,1,2,1],[2,2,1,0],[2,1,2,2],[1,2,2,2]],[[2,1,2,1],[2,2,1,0],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[3,2,1,0],[2,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[3,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,1,4,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,1,3,1],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,1,3,1],[1,3,2,1]],[[1,1,2,1],[2,2,1,0],[2,1,3,1],[1,2,3,1]],[[1,1,2,1],[2,2,1,0],[2,1,3,1],[1,2,2,2]],[[1,1,2,1],[2,2,1,0],[2,1,4,2],[1,2,1,1]],[[1,1,2,1],[2,2,1,0],[2,1,3,3],[1,2,1,1]],[[1,1,2,1],[2,2,1,0],[2,1,3,2],[1,2,1,2]],[[2,1,2,1],[2,2,1,0],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[3,2,1,0],[2,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,0],[3,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,1,4,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,1,3,3],[1,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,1,3,2],[2,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,1,3,2],[1,3,2,0]],[[1,1,2,1],[2,2,1,0],[2,1,3,2],[1,2,3,0]],[[2,1,2,1],[2,2,1,0],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[3,2,1,0],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,1,3],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[2,2,1,0],[2,2,1,2],[1,2,2,2]],[[2,1,2,1],[2,2,1,0],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[3,2,1,0],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[2,2,1,0],[2,2,2,1],[1,2,2,2]],[[1,1,2,1],[2,2,1,0],[2,2,2,3],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,2,2],[0,3,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,2,2],[0,2,3,1]],[[1,1,2,1],[2,2,1,0],[2,2,2,2],[0,2,2,2]],[[2,1,2,1],[2,2,1,0],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[3,2,1,0],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,0],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[2,2,1,0],[2,2,2,2],[1,2,3,0]],[[2,1,2,1],[2,2,1,0],[2,2,3,0],[1,2,2,1]],[[1,1,2,1],[3,2,1,0],[2,2,3,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[3,2,3,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,0],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,0],[1,3,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,0],[1,2,3,1]],[[1,1,2,1],[2,2,1,0],[2,2,4,1],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,1],[0,3,2,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,1],[0,2,3,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,1],[0,2,2,2]],[[2,1,2,1],[2,2,1,0],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[3,2,1,0],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,2,1,0],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,1],[1,3,1,1]],[[1,1,2,1],[2,2,1,0],[2,2,4,2],[0,2,1,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,3],[0,2,1,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,2],[0,2,1,2]],[[1,1,2,1],[2,2,1,0],[2,2,4,2],[0,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,2,3,3],[0,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,2,3,2],[0,3,2,0]],[[1,1,2,1],[2,2,1,0],[2,2,3,2],[0,2,3,0]],[[2,1,2,1],[2,2,1,0],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[3,2,1,0],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,2,1,0],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[2,2,1,0],[2,2,3,2],[1,3,0,1]],[[2,1,2,1],[2,2,1,0],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[3,2,1,0],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,2,1,0],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,2,1,0],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[2,2,1,0],[2,2,3,2],[1,3,1,0]],[[2,1,2,1],[2,2,1,0],[2,3,0,2],[1,2,2,1]],[[1,1,2,1],[3,2,1,0],[2,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[3,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,0,2],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,0,2],[1,3,2,1]],[[2,1,2,1],[2,2,1,0],[2,3,1,1],[1,2,2,1]],[[1,1,2,1],[3,2,1,0],[2,3,1,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[3,3,1,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,1,1],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,1,1],[1,3,2,1]],[[2,1,2,1],[2,2,1,0],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[3,2,1,0],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,1,3],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[2,2,1,0],[2,3,1,2],[0,2,2,2]],[[2,1,2,1],[2,2,1,0],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[3,2,1,0],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,1,2],[2,1,2,1]],[[2,1,2,1],[2,2,1,0],[2,3,1,2],[1,2,2,0]],[[1,1,2,1],[3,2,1,0],[2,3,1,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,0],[3,3,1,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,1,2],[2,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,1,2],[1,3,2,0]],[[2,1,2,1],[2,2,1,0],[2,3,2,0],[1,2,2,1]],[[1,1,2,1],[3,2,1,0],[2,3,2,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[3,3,2,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,2,0],[2,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,2,0],[1,3,2,1]],[[2,1,2,1],[2,2,1,0],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[3,2,1,0],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[2,2,1,0],[2,3,2,1],[0,2,2,2]],[[2,1,2,1],[2,2,1,0],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[3,2,1,0],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,2,1],[2,1,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,2,3],[0,1,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,2,2],[0,1,3,1]],[[1,1,2,1],[2,2,1,0],[2,3,2,2],[0,1,2,2]],[[2,1,2,1],[2,2,1,0],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[3,2,1,0],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,2,1,0],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,2,2],[0,2,3,0]],[[1,1,2,1],[2,2,1,0],[2,3,2,3],[1,0,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,2,2],[1,0,3,1]],[[1,1,2,1],[2,2,1,0],[2,3,2,2],[1,0,2,2]],[[2,1,2,1],[2,2,1,0],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[3,2,1,0],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,2,1,0],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,2,1,0],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,2,2],[2,1,2,0]],[[2,1,2,1],[2,2,1,0],[2,3,3,0],[0,2,2,1]],[[1,1,2,1],[3,2,1,0],[2,3,3,0],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[3,3,3,0],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,4,3,0],[0,2,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,0],[0,3,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,0],[0,2,3,1]],[[2,1,2,1],[2,2,1,0],[2,3,3,0],[1,1,2,1]],[[1,1,2,1],[3,2,1,0],[2,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[3,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[2,4,3,0],[1,1,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,0],[2,1,2,1]],[[2,1,2,1],[2,2,1,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[3,2,1,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,2,1,0],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,2,1,0],[2,4,3,1],[0,1,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,4,1],[0,1,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,1],[0,1,3,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,1],[0,1,2,2]],[[2,1,2,1],[2,2,1,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[3,2,1,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,2,1,0],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,2,1,0],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[2,2,1,0],[2,3,4,1],[0,2,1,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,1],[0,3,1,1]],[[2,1,2,1],[2,2,1,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[3,2,1,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,2,1,0],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,2,1,0],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,4,1],[1,0,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,1],[2,0,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,1],[1,0,3,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,1],[1,0,2,2]],[[2,1,2,1],[2,2,1,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[3,2,1,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,2,1,0],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,2,1,0],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[2,2,1,0],[2,3,4,1],[1,1,1,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,1],[2,1,1,1]],[[2,1,2,1],[2,2,1,0],[2,3,3,1],[1,2,0,1]],[[1,1,2,1],[3,2,1,0],[2,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,1,0],[3,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,1,0],[2,4,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,1],[2,2,0,1]],[[1,1,2,1],[2,2,1,0],[2,3,4,2],[0,0,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,3],[0,0,2,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[0,0,2,2]],[[2,1,2,1],[2,2,1,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[3,2,1,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,2,1,0],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,2,1,0],[2,4,3,2],[0,1,1,1]],[[1,1,2,1],[2,2,1,0],[2,3,4,2],[0,1,1,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,3],[0,1,1,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[0,1,1,2]],[[2,1,2,1],[2,2,1,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[3,2,1,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,2,1,0],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,2,1,0],[2,4,3,2],[0,1,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,4,2],[0,1,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,3,3],[0,1,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[0,1,3,0]],[[2,1,2,1],[2,2,1,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[3,2,1,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,2,1,0],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,2,1,0],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[2,2,1,0],[2,3,4,2],[0,2,0,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,3],[0,2,0,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[0,3,0,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[0,2,0,2]],[[2,1,2,1],[2,2,1,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[3,2,1,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,2,1,0],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,2,1,0],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[2,2,1,0],[2,3,4,2],[0,2,1,0]],[[1,1,2,1],[2,2,1,0],[2,3,3,3],[0,2,1,0]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[0,3,1,0]],[[2,1,2,1],[2,2,1,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[3,2,1,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,2,1,0],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,2,1,0],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[2,2,1,0],[2,3,4,2],[1,0,1,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,3],[1,0,1,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[2,0,1,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[1,0,1,2]],[[2,1,2,1],[2,2,1,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[3,2,1,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,2,1,0],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,2,1,0],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,4,2],[1,0,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,3,3],[1,0,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[2,0,2,0]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[1,0,3,0]],[[2,1,2,1],[2,2,1,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[3,2,1,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,2,1,0],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,2,1,0],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[2,2,1,0],[2,3,4,2],[1,1,0,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,3],[1,1,0,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[2,1,0,1]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[1,1,0,2]],[[2,1,2,1],[2,2,1,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[3,2,1,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,2,1,0],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,2,1,0],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[2,2,1,0],[2,3,4,2],[1,1,1,0]],[[1,1,2,1],[2,2,1,0],[2,3,3,3],[1,1,1,0]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[2,1,1,0]],[[2,1,2,1],[2,2,1,0],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[3,2,1,0],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,2,1,0],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,2,1,0],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[2,2,1,0],[2,3,3,2],[2,2,0,0]],[[1,1,2,1],[2,2,1,1],[1,2,4,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[1,2,3,0],[2,2,2,1]],[[1,1,2,1],[2,2,1,1],[1,2,3,0],[1,3,2,1]],[[1,1,2,1],[2,2,1,1],[1,2,3,0],[1,2,3,1]],[[1,1,2,1],[2,2,1,1],[1,2,3,0],[1,2,2,2]],[[1,1,2,1],[2,2,1,1],[1,2,4,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,1],[1,2,3,1],[2,2,2,0]],[[1,1,2,1],[2,2,1,1],[1,2,3,1],[1,3,2,0]],[[1,1,2,1],[2,2,1,1],[1,2,3,1],[1,2,3,0]],[[1,1,2,1],[2,2,1,1],[1,4,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[1,3,0,3],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[1,3,0,2],[2,2,2,1]],[[1,1,2,1],[2,2,1,1],[1,3,0,2],[1,3,2,1]],[[1,1,2,1],[2,2,1,1],[1,3,0,2],[1,2,3,1]],[[1,1,2,1],[2,2,1,1],[1,3,0,2],[1,2,2,2]],[[1,1,2,1],[2,2,1,1],[1,4,2,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[1,3,2,0],[2,2,2,1]],[[1,1,2,1],[2,2,1,1],[1,3,2,0],[1,3,2,1]],[[1,1,2,1],[2,2,1,1],[1,3,2,0],[1,2,3,1]],[[1,1,2,1],[2,2,1,1],[1,3,2,0],[1,2,2,2]],[[1,1,2,1],[2,2,1,1],[1,4,2,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,1],[1,3,2,1],[2,2,2,0]],[[1,1,2,1],[2,2,1,1],[1,3,2,1],[1,3,2,0]],[[1,1,2,1],[2,2,1,1],[1,3,2,1],[1,2,3,0]],[[1,1,2,1],[2,2,1,1],[1,4,3,0],[1,1,2,1]],[[1,1,2,1],[2,2,1,1],[1,3,4,0],[1,1,2,1]],[[1,1,2,1],[2,2,1,1],[1,3,3,0],[1,1,3,1]],[[1,1,2,1],[2,2,1,1],[1,3,3,0],[1,1,2,2]],[[1,1,2,1],[2,2,1,1],[1,4,3,0],[1,2,1,1]],[[1,1,2,1],[2,2,1,1],[1,3,4,0],[1,2,1,1]],[[1,1,2,1],[2,2,1,1],[1,3,3,0],[2,2,1,1]],[[1,1,2,1],[2,2,1,1],[1,3,3,0],[1,3,1,1]],[[1,1,2,1],[2,2,1,1],[1,4,3,1],[1,1,2,0]],[[1,1,2,1],[2,2,1,1],[1,3,4,1],[1,1,2,0]],[[1,1,2,1],[2,2,1,1],[1,3,3,1],[1,1,3,0]],[[1,1,2,1],[2,2,1,1],[1,4,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,1,1],[1,3,4,1],[1,2,0,1]],[[1,1,2,1],[2,2,1,1],[1,3,3,1],[2,2,0,1]],[[1,1,2,1],[2,2,1,1],[1,3,3,1],[1,3,0,1]],[[1,1,2,1],[2,2,1,1],[1,4,3,1],[1,2,1,0]],[[1,1,2,1],[2,2,1,1],[1,3,4,1],[1,2,1,0]],[[1,1,2,1],[2,2,1,1],[1,3,3,1],[2,2,1,0]],[[1,1,2,1],[2,2,1,1],[1,3,3,1],[1,3,1,0]],[[1,1,2,1],[2,4,2,2],[1,1,3,0],[0,2,2,0]],[[1,1,2,1],[3,3,2,2],[1,1,3,0],[0,2,2,0]],[[2,1,2,1],[2,3,2,2],[1,1,3,0],[0,2,2,0]],[[2,1,2,1],[2,2,1,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[3,2,1,1],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[3,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,1,4,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,1,3,0],[2,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,1,3,0],[1,3,2,1]],[[1,1,2,1],[2,2,1,1],[2,1,3,0],[1,2,3,1]],[[1,1,2,1],[2,2,1,1],[2,1,3,0],[1,2,2,2]],[[2,1,2,1],[2,2,1,1],[2,1,3,1],[1,2,2,0]],[[1,1,2,1],[3,2,1,1],[2,1,3,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,1],[3,1,3,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,1],[2,1,4,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,1],[2,1,3,1],[2,2,2,0]],[[1,1,2,1],[2,2,1,1],[2,1,3,1],[1,3,2,0]],[[1,1,2,1],[2,2,1,1],[2,1,3,1],[1,2,3,0]],[[2,1,2,1],[2,2,1,1],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[3,2,1,1],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[3,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,2,0,3],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,2,0,2],[2,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,2,0,2],[1,3,2,1]],[[1,1,2,1],[2,2,1,1],[2,2,0,2],[1,2,3,1]],[[1,1,2,1],[2,2,1,1],[2,2,0,2],[1,2,2,2]],[[2,1,2,1],[2,2,1,1],[2,2,2,0],[1,2,2,1]],[[1,1,2,1],[3,2,1,1],[2,2,2,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[3,2,2,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,2,2,0],[2,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,2,2,0],[1,3,2,1]],[[1,1,2,1],[2,2,1,1],[2,2,2,0],[1,2,3,1]],[[1,1,2,1],[2,2,1,1],[2,2,2,0],[1,2,2,2]],[[2,1,2,1],[2,2,1,1],[2,2,2,1],[1,2,2,0]],[[1,1,2,1],[3,2,1,1],[2,2,2,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,1],[3,2,2,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,1],[2,2,2,1],[2,2,2,0]],[[1,1,2,1],[2,2,1,1],[2,2,2,1],[1,3,2,0]],[[1,1,2,1],[2,2,1,1],[2,2,2,1],[1,2,3,0]],[[1,1,2,1],[2,2,1,1],[2,2,4,0],[0,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,2,3,0],[0,3,2,1]],[[1,1,2,1],[2,2,1,1],[2,2,3,0],[0,2,3,1]],[[1,1,2,1],[2,2,1,1],[2,2,3,0],[0,2,2,2]],[[2,1,2,1],[2,2,1,1],[2,2,3,0],[1,2,1,1]],[[1,1,2,1],[3,2,1,1],[2,2,3,0],[1,2,1,1]],[[1,1,2,1],[2,2,1,1],[3,2,3,0],[1,2,1,1]],[[1,1,2,1],[2,2,1,1],[2,2,3,0],[2,2,1,1]],[[1,1,2,1],[2,2,1,1],[2,2,3,0],[1,3,1,1]],[[1,1,2,1],[2,2,1,1],[2,2,4,1],[0,2,2,0]],[[1,1,2,1],[2,2,1,1],[2,2,3,1],[0,3,2,0]],[[1,1,2,1],[2,2,1,1],[2,2,3,1],[0,2,3,0]],[[2,1,2,1],[2,2,1,1],[2,2,3,1],[1,2,0,1]],[[1,1,2,1],[3,2,1,1],[2,2,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,1,1],[3,2,3,1],[1,2,0,1]],[[1,1,2,1],[2,2,1,1],[2,2,3,1],[2,2,0,1]],[[1,1,2,1],[2,2,1,1],[2,2,3,1],[1,3,0,1]],[[2,1,2,1],[2,2,1,1],[2,2,3,1],[1,2,1,0]],[[1,1,2,1],[3,2,1,1],[2,2,3,1],[1,2,1,0]],[[1,1,2,1],[2,2,1,1],[3,2,3,1],[1,2,1,0]],[[1,1,2,1],[2,2,1,1],[2,2,3,1],[2,2,1,0]],[[1,1,2,1],[2,2,1,1],[2,2,3,1],[1,3,1,0]],[[1,1,2,1],[2,4,2,2],[1,0,3,0],[1,2,2,0]],[[1,1,2,1],[3,3,2,2],[1,0,3,0],[1,2,2,0]],[[2,1,2,1],[2,2,1,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[3,2,1,1],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,2,1,1],[3,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,4,0,2],[0,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,0,3],[0,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,0,2],[0,3,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,0,2],[0,2,3,1]],[[1,1,2,1],[2,2,1,1],[2,3,0,2],[0,2,2,2]],[[2,1,2,1],[2,2,1,1],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[3,2,1,1],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,2,1,1],[3,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,2,1,1],[2,4,0,2],[1,1,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,0,2],[2,1,2,1]],[[2,1,2,1],[2,2,1,1],[2,3,1,0],[1,2,2,1]],[[1,1,2,1],[3,2,1,1],[2,3,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[3,3,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,1,0],[2,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,1,0],[1,3,2,1]],[[2,1,2,1],[2,2,1,1],[2,3,1,1],[1,2,2,0]],[[1,1,2,1],[3,2,1,1],[2,3,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,1],[3,3,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,1],[2,3,1,1],[2,2,2,0]],[[1,1,2,1],[2,2,1,1],[2,3,1,1],[1,3,2,0]],[[2,1,2,1],[2,3,2,2],[1,0,3,0],[1,2,2,0]],[[2,1,2,1],[2,2,1,1],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[3,2,1,1],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[2,2,1,1],[3,3,2,0],[0,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,4,2,0],[0,2,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,2,0],[0,3,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,2,0],[0,2,3,1]],[[1,1,2,1],[2,2,1,1],[2,3,2,0],[0,2,2,2]],[[2,1,2,1],[2,2,1,1],[2,3,2,0],[1,1,2,1]],[[1,1,2,1],[3,2,1,1],[2,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,2,1,1],[3,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,2,1,1],[2,4,2,0],[1,1,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,2,0],[2,1,2,1]],[[2,1,2,1],[2,2,1,1],[2,3,2,1],[0,2,2,0]],[[1,1,2,1],[3,2,1,1],[2,3,2,1],[0,2,2,0]],[[1,1,2,1],[2,2,1,1],[3,3,2,1],[0,2,2,0]],[[1,1,2,1],[2,2,1,1],[2,4,2,1],[0,2,2,0]],[[1,1,2,1],[2,2,1,1],[2,3,2,1],[0,3,2,0]],[[1,1,2,1],[2,2,1,1],[2,3,2,1],[0,2,3,0]],[[2,1,2,1],[2,2,1,1],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[3,2,1,1],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,2,1,1],[3,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,2,1,1],[2,4,2,1],[1,1,2,0]],[[1,1,2,1],[2,2,1,1],[2,3,2,1],[2,1,2,0]],[[2,1,2,1],[2,2,1,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[3,2,1,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,2,1,1],[3,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,2,1,1],[2,4,3,0],[0,1,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,4,0],[0,1,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,3,0],[0,1,3,1]],[[1,1,2,1],[2,2,1,1],[2,3,3,0],[0,1,2,2]],[[2,1,2,1],[2,2,1,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[3,2,1,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,2,1,1],[3,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,2,1,1],[2,4,3,0],[0,2,1,1]],[[1,1,2,1],[2,2,1,1],[2,3,4,0],[0,2,1,1]],[[1,1,2,1],[2,2,1,1],[2,3,3,0],[0,3,1,1]],[[2,1,2,1],[2,2,1,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[3,2,1,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,2,1,1],[3,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,2,1,1],[2,4,3,0],[1,0,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,4,0],[1,0,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,3,0],[2,0,2,1]],[[1,1,2,1],[2,2,1,1],[2,3,3,0],[1,0,3,1]],[[1,1,2,1],[2,2,1,1],[2,3,3,0],[1,0,2,2]],[[2,1,2,1],[2,2,1,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[3,2,1,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,2,1,1],[3,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,2,1,1],[2,4,3,0],[1,1,1,1]],[[1,1,2,1],[2,2,1,1],[2,3,4,0],[1,1,1,1]],[[1,1,2,1],[2,2,1,1],[2,3,3,0],[2,1,1,1]],[[2,1,2,1],[2,2,1,1],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[3,2,1,1],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[2,2,1,1],[3,3,3,0],[1,2,0,1]],[[1,1,2,1],[2,2,1,1],[2,4,3,0],[1,2,0,1]],[[1,1,2,1],[2,2,1,1],[2,3,3,0],[2,2,0,1]],[[2,1,2,1],[2,2,1,1],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[3,2,1,1],[2,3,3,1],[0,1,1,1]],[[1,1,2,1],[2,2,1,1],[3,3,3,1],[0,1,1,1]],[[1,1,2,1],[2,2,1,1],[2,4,3,1],[0,1,1,1]],[[1,1,2,1],[2,2,1,1],[2,3,4,1],[0,1,1,1]],[[2,1,2,1],[2,2,1,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[3,2,1,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,2,1,1],[3,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,2,1,1],[2,4,3,1],[0,1,2,0]],[[1,1,2,1],[2,2,1,1],[2,3,4,1],[0,1,2,0]],[[1,1,2,1],[2,2,1,1],[2,3,3,1],[0,1,3,0]],[[2,1,2,1],[2,2,1,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[3,2,1,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,2,1,1],[3,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,2,1,1],[2,4,3,1],[0,2,0,1]],[[1,1,2,1],[2,2,1,1],[2,3,4,1],[0,2,0,1]],[[1,1,2,1],[2,2,1,1],[2,3,3,1],[0,3,0,1]],[[2,1,2,1],[2,2,1,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[3,2,1,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,2,1,1],[3,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,2,1,1],[2,4,3,1],[0,2,1,0]],[[1,1,2,1],[2,2,1,1],[2,3,4,1],[0,2,1,0]],[[1,1,2,1],[2,2,1,1],[2,3,3,1],[0,3,1,0]],[[1,1,2,1],[2,3,2,2],[0,3,3,3],[0,0,0,1]],[[1,1,2,1],[2,3,2,3],[0,3,3,2],[0,0,0,1]],[[1,1,2,2],[2,3,2,2],[0,3,3,2],[0,0,0,1]],[[1,1,3,1],[2,3,2,2],[0,3,3,2],[0,0,0,1]],[[2,1,2,1],[2,2,1,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[3,2,1,1],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,2,1,1],[3,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,2,1,1],[2,4,3,1],[1,0,1,1]],[[1,1,2,1],[2,2,1,1],[2,3,4,1],[1,0,1,1]],[[1,1,2,1],[2,2,1,1],[2,3,3,1],[2,0,1,1]],[[2,1,2,1],[2,2,1,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[3,2,1,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,2,1,1],[3,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,2,1,1],[2,4,3,1],[1,0,2,0]],[[1,1,2,1],[2,2,1,1],[2,3,4,1],[1,0,2,0]],[[1,1,2,1],[2,2,1,1],[2,3,3,1],[2,0,2,0]],[[1,1,2,1],[2,2,1,1],[2,3,3,1],[1,0,3,0]],[[2,1,2,1],[2,2,1,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[3,2,1,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[2,2,1,1],[3,3,3,1],[1,1,0,1]],[[1,1,2,1],[2,2,1,1],[2,4,3,1],[1,1,0,1]],[[1,1,2,1],[2,2,1,1],[2,3,4,1],[1,1,0,1]],[[1,1,2,1],[2,2,1,1],[2,3,3,1],[2,1,0,1]],[[2,1,2,1],[2,2,1,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[3,2,1,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,2,1,1],[3,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,2,1,1],[2,4,3,1],[1,1,1,0]],[[1,1,2,1],[2,2,1,1],[2,3,4,1],[1,1,1,0]],[[1,1,2,1],[2,2,1,1],[2,3,3,1],[2,1,1,0]],[[2,1,2,1],[2,2,1,1],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[3,2,1,1],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,2,1,1],[3,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,2,1,1],[2,4,3,1],[1,2,0,0]],[[1,1,2,1],[2,2,1,1],[2,3,3,1],[2,2,0,0]],[[1,1,2,1],[2,3,2,3],[0,3,3,1],[1,1,0,0]],[[1,1,2,2],[2,3,2,2],[0,3,3,1],[1,1,0,0]],[[1,1,3,1],[2,3,2,2],[0,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,3,2,3],[0,3,3,1],[0,2,0,0]],[[1,1,2,2],[2,3,2,2],[0,3,3,1],[0,2,0,0]],[[1,1,3,1],[2,3,2,2],[0,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,3,2,3],[0,3,3,1],[0,0,2,0]],[[1,1,2,2],[2,3,2,2],[0,3,3,1],[0,0,2,0]],[[1,1,3,1],[2,3,2,2],[0,3,3,1],[0,0,2,0]],[[1,1,2,1],[2,3,2,3],[0,3,3,1],[0,0,1,1]],[[1,1,2,2],[2,3,2,2],[0,3,3,1],[0,0,1,1]],[[1,1,3,1],[2,3,2,2],[0,3,3,1],[0,0,1,1]],[[1,1,2,1],[2,3,2,2],[0,4,3,0],[1,2,0,0]],[[1,1,2,1],[2,4,2,2],[0,3,3,0],[1,2,0,0]],[[1,1,2,1],[3,3,2,2],[0,3,3,0],[1,2,0,0]],[[2,1,2,1],[2,3,2,2],[0,3,3,0],[1,2,0,0]],[[1,1,2,1],[2,3,2,3],[0,3,3,0],[0,0,2,1]],[[1,1,2,2],[2,3,2,2],[0,3,3,0],[0,0,2,1]],[[1,1,3,1],[2,3,2,2],[0,3,3,0],[0,0,2,1]],[[1,1,2,1],[2,3,2,2],[0,3,2,3],[0,0,2,0]],[[1,1,2,1],[2,3,2,3],[0,3,2,2],[0,0,2,0]],[[1,1,2,2],[2,3,2,2],[0,3,2,2],[0,0,2,0]],[[1,1,3,1],[2,3,2,2],[0,3,2,2],[0,0,2,0]],[[1,1,2,1],[2,3,2,2],[0,3,2,2],[0,0,1,2]],[[1,1,2,1],[2,3,2,2],[0,3,2,3],[0,0,1,1]],[[1,1,2,1],[2,3,2,3],[0,3,2,2],[0,0,1,1]],[[1,1,2,2],[2,3,2,2],[0,3,2,2],[0,0,1,1]],[[1,1,3,1],[2,3,2,2],[0,3,2,2],[0,0,1,1]],[[1,1,2,1],[2,3,2,3],[0,3,2,1],[1,1,1,0]],[[1,1,2,2],[2,3,2,2],[0,3,2,1],[1,1,1,0]],[[1,1,3,1],[2,3,2,2],[0,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,3,2,3],[0,3,2,1],[1,1,0,1]],[[1,1,2,2],[2,3,2,2],[0,3,2,1],[1,1,0,1]],[[1,1,3,1],[2,3,2,2],[0,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,3,2,3],[0,3,2,1],[1,0,2,0]],[[1,1,2,2],[2,3,2,2],[0,3,2,1],[1,0,2,0]],[[1,1,3,1],[2,3,2,2],[0,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,3,2,3],[0,3,2,1],[1,0,1,1]],[[1,1,2,2],[2,3,2,2],[0,3,2,1],[1,0,1,1]],[[1,1,3,1],[2,3,2,2],[0,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,3,2,3],[0,3,2,1],[0,2,1,0]],[[1,1,2,2],[2,3,2,2],[0,3,2,1],[0,2,1,0]],[[1,1,3,1],[2,3,2,2],[0,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,3,2,3],[0,3,2,1],[0,2,0,1]],[[1,1,2,2],[2,3,2,2],[0,3,2,1],[0,2,0,1]],[[1,1,3,1],[2,3,2,2],[0,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,3,2,3],[0,3,2,1],[0,1,2,0]],[[1,1,2,2],[2,3,2,2],[0,3,2,1],[0,1,2,0]],[[1,1,3,1],[2,3,2,2],[0,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,3,2,3],[0,3,2,1],[0,1,1,1]],[[1,1,2,2],[2,3,2,2],[0,3,2,1],[0,1,1,1]],[[1,1,3,1],[2,3,2,2],[0,3,2,1],[0,1,1,1]],[[1,1,2,1],[2,3,2,2],[0,3,2,0],[1,3,1,0]],[[1,1,2,1],[2,3,2,2],[0,3,2,0],[2,2,1,0]],[[1,1,2,1],[2,3,2,2],[0,4,2,0],[1,2,1,0]],[[1,1,2,1],[2,4,2,2],[0,3,2,0],[1,2,1,0]],[[1,1,2,1],[3,3,2,2],[0,3,2,0],[1,2,1,0]],[[2,1,2,1],[2,3,2,2],[0,3,2,0],[1,2,1,0]],[[1,1,2,1],[2,3,2,2],[0,4,2,0],[1,2,0,1]],[[1,1,2,1],[2,4,2,2],[0,3,2,0],[1,2,0,1]],[[1,1,2,1],[3,3,2,2],[0,3,2,0],[1,2,0,1]],[[2,1,2,1],[2,3,2,2],[0,3,2,0],[1,2,0,1]],[[1,1,2,1],[2,3,2,2],[0,4,2,0],[1,1,2,0]],[[1,1,2,1],[2,4,2,2],[0,3,2,0],[1,1,2,0]],[[1,1,2,1],[3,3,2,2],[0,3,2,0],[1,1,2,0]],[[2,1,2,1],[2,3,2,2],[0,3,2,0],[1,1,2,0]],[[1,1,2,1],[2,3,2,3],[0,3,2,0],[1,0,2,1]],[[1,1,2,2],[2,3,2,2],[0,3,2,0],[1,0,2,1]],[[1,1,3,1],[2,3,2,2],[0,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,3,2,3],[0,3,2,0],[0,2,1,1]],[[1,1,2,2],[2,3,2,2],[0,3,2,0],[0,2,1,1]],[[1,1,3,1],[2,3,2,2],[0,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,3,2,3],[0,3,2,0],[0,1,2,1]],[[1,1,2,2],[2,3,2,2],[0,3,2,0],[0,1,2,1]],[[1,1,3,1],[2,3,2,2],[0,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,2,1,2],[1,4,0,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[1,3,0,1],[2,2,2,1]],[[1,1,2,1],[2,2,1,2],[1,3,0,1],[1,3,2,1]],[[1,1,2,1],[2,2,1,2],[1,3,0,1],[1,2,3,1]],[[1,1,2,1],[2,2,1,2],[1,3,0,1],[1,2,2,2]],[[1,1,2,1],[2,2,1,2],[1,4,0,2],[1,2,1,1]],[[1,1,2,1],[2,2,1,2],[1,3,0,2],[2,2,1,1]],[[1,1,2,1],[2,2,1,2],[1,3,0,2],[1,3,1,1]],[[1,1,2,1],[2,2,1,2],[1,4,0,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,2],[1,3,0,2],[2,2,2,0]],[[1,1,2,1],[2,2,1,2],[1,3,0,2],[1,3,2,0]],[[1,1,2,1],[2,2,1,2],[1,3,0,2],[1,2,3,0]],[[1,1,2,1],[2,2,1,2],[1,4,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[1,3,1,0],[2,2,2,1]],[[1,1,2,1],[2,2,1,2],[1,3,1,0],[1,3,2,1]],[[1,1,2,1],[2,2,1,2],[1,3,1,0],[1,2,3,1]],[[1,1,2,1],[2,2,1,2],[1,3,1,0],[1,2,2,2]],[[1,1,2,1],[2,2,1,2],[1,4,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,2],[1,3,1,1],[2,2,2,0]],[[1,1,2,1],[2,2,1,2],[1,3,1,1],[1,3,2,0]],[[1,1,2,1],[2,2,1,2],[1,3,1,1],[1,2,3,0]],[[1,1,2,1],[2,2,1,2],[1,4,1,2],[1,2,0,1]],[[1,1,2,1],[2,2,1,2],[1,3,1,2],[2,2,0,1]],[[1,1,2,1],[2,2,1,2],[1,3,1,2],[1,3,0,1]],[[1,1,2,1],[2,2,1,2],[1,4,1,2],[1,2,1,0]],[[1,1,2,1],[2,2,1,2],[1,3,1,2],[2,2,1,0]],[[1,1,2,1],[2,2,1,2],[1,3,1,2],[1,3,1,0]],[[1,1,2,1],[2,2,1,2],[1,4,2,0],[1,2,1,1]],[[1,1,2,1],[2,2,1,2],[1,3,2,0],[2,2,1,1]],[[1,1,2,1],[2,2,1,2],[1,3,2,0],[1,3,1,1]],[[1,1,2,1],[2,2,1,2],[1,4,2,1],[1,2,0,1]],[[1,1,2,1],[2,2,1,2],[1,3,2,1],[2,2,0,1]],[[1,1,2,1],[2,2,1,2],[1,3,2,1],[1,3,0,1]],[[1,1,2,1],[2,2,1,2],[1,4,2,1],[1,2,1,0]],[[1,1,2,1],[2,2,1,2],[1,3,2,1],[2,2,1,0]],[[1,1,2,1],[2,2,1,2],[1,3,2,1],[1,3,1,0]],[[1,1,2,1],[2,3,2,3],[0,3,1,2],[1,1,1,0]],[[1,1,2,2],[2,3,2,2],[0,3,1,2],[1,1,1,0]],[[1,1,3,1],[2,3,2,2],[0,3,1,2],[1,1,1,0]],[[1,1,2,1],[2,3,2,2],[0,3,1,3],[1,1,0,1]],[[1,1,2,1],[2,3,2,3],[0,3,1,2],[1,1,0,1]],[[1,1,2,2],[2,3,2,2],[0,3,1,2],[1,1,0,1]],[[1,1,3,1],[2,3,2,2],[0,3,1,2],[1,1,0,1]],[[1,1,2,1],[2,3,2,2],[0,3,1,3],[1,0,2,0]],[[1,1,2,1],[2,3,2,3],[0,3,1,2],[1,0,2,0]],[[1,1,2,2],[2,3,2,2],[0,3,1,2],[1,0,2,0]],[[1,1,3,1],[2,3,2,2],[0,3,1,2],[1,0,2,0]],[[1,1,2,1],[2,3,2,2],[0,3,1,2],[1,0,1,2]],[[1,1,2,1],[2,3,2,2],[0,3,1,3],[1,0,1,1]],[[1,1,2,1],[2,3,2,3],[0,3,1,2],[1,0,1,1]],[[1,1,2,2],[2,3,2,2],[0,3,1,2],[1,0,1,1]],[[1,1,3,1],[2,3,2,2],[0,3,1,2],[1,0,1,1]],[[1,1,2,1],[2,3,2,2],[0,3,1,3],[0,2,1,0]],[[1,1,2,1],[2,3,2,3],[0,3,1,2],[0,2,1,0]],[[1,1,2,2],[2,3,2,2],[0,3,1,2],[0,2,1,0]],[[1,1,3,1],[2,3,2,2],[0,3,1,2],[0,2,1,0]],[[1,1,2,1],[2,3,2,2],[0,3,1,2],[0,2,0,2]],[[1,1,2,1],[2,3,2,2],[0,3,1,3],[0,2,0,1]],[[1,1,2,1],[2,3,2,3],[0,3,1,2],[0,2,0,1]],[[1,1,2,2],[2,3,2,2],[0,3,1,2],[0,2,0,1]],[[1,1,3,1],[2,3,2,2],[0,3,1,2],[0,2,0,1]],[[1,1,2,1],[2,3,2,2],[0,3,1,3],[0,1,2,0]],[[1,1,2,1],[2,3,2,3],[0,3,1,2],[0,1,2,0]],[[1,1,2,2],[2,3,2,2],[0,3,1,2],[0,1,2,0]],[[1,1,3,1],[2,3,2,2],[0,3,1,2],[0,1,2,0]],[[1,1,2,1],[2,3,2,2],[0,3,1,2],[0,1,1,2]],[[1,1,2,1],[2,3,2,2],[0,3,1,3],[0,1,1,1]],[[1,1,2,1],[2,3,2,3],[0,3,1,2],[0,1,1,1]],[[1,1,2,2],[2,3,2,2],[0,3,1,2],[0,1,1,1]],[[1,1,3,1],[2,3,2,2],[0,3,1,2],[0,1,1,1]],[[1,1,2,1],[2,3,2,3],[0,3,1,1],[0,2,2,0]],[[1,1,2,2],[2,3,2,2],[0,3,1,1],[0,2,2,0]],[[1,1,3,1],[2,3,2,2],[0,3,1,1],[0,2,2,0]],[[1,1,2,1],[2,3,2,2],[0,3,1,0],[1,3,2,0]],[[1,1,2,1],[2,3,2,2],[0,3,1,0],[2,2,2,0]],[[1,1,2,1],[2,3,2,2],[0,4,1,0],[1,2,2,0]],[[1,1,2,1],[2,4,2,2],[0,3,1,0],[1,2,2,0]],[[1,1,2,1],[3,3,2,2],[0,3,1,0],[1,2,2,0]],[[2,1,2,1],[2,3,2,2],[0,3,1,0],[1,2,2,0]],[[1,1,2,1],[2,3,2,3],[0,3,1,0],[0,2,2,1]],[[1,1,2,2],[2,3,2,2],[0,3,1,0],[0,2,2,1]],[[1,1,3,1],[2,3,2,2],[0,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,4,2,2],[0,3,0,2],[1,2,1,0]],[[1,1,2,1],[3,3,2,2],[0,3,0,2],[1,2,1,0]],[[2,1,2,1],[2,3,2,2],[0,3,0,2],[1,2,1,0]],[[1,1,2,1],[2,4,2,2],[0,3,0,2],[1,2,0,1]],[[1,1,2,1],[3,3,2,2],[0,3,0,2],[1,2,0,1]],[[2,1,2,1],[2,3,2,2],[0,3,0,2],[1,2,0,1]],[[1,1,2,1],[2,3,2,2],[0,3,0,2],[1,0,2,2]],[[1,1,2,1],[2,3,2,2],[0,3,0,3],[1,0,2,1]],[[1,1,2,1],[2,3,2,3],[0,3,0,2],[1,0,2,1]],[[1,1,2,2],[2,3,2,2],[0,3,0,2],[1,0,2,1]],[[1,1,3,1],[2,3,2,2],[0,3,0,2],[1,0,2,1]],[[1,1,2,1],[2,3,2,2],[0,3,0,3],[0,2,2,0]],[[1,1,2,1],[2,3,2,3],[0,3,0,2],[0,2,2,0]],[[1,1,2,2],[2,3,2,2],[0,3,0,2],[0,2,2,0]],[[1,1,3,1],[2,3,2,2],[0,3,0,2],[0,2,2,0]],[[1,1,2,1],[2,3,2,2],[0,3,0,2],[0,2,1,2]],[[1,1,2,1],[2,3,2,2],[0,3,0,3],[0,2,1,1]],[[1,1,2,1],[2,3,2,3],[0,3,0,2],[0,2,1,1]],[[1,1,2,2],[2,3,2,2],[0,3,0,2],[0,2,1,1]],[[1,1,3,1],[2,3,2,2],[0,3,0,2],[0,2,1,1]],[[1,1,2,1],[2,3,2,2],[0,3,0,2],[0,1,2,2]],[[1,1,2,1],[2,3,2,2],[0,3,0,2],[0,1,3,1]],[[1,1,2,1],[2,3,2,2],[0,3,0,3],[0,1,2,1]],[[1,1,2,1],[2,3,2,3],[0,3,0,2],[0,1,2,1]],[[1,1,2,2],[2,3,2,2],[0,3,0,2],[0,1,2,1]],[[1,1,3,1],[2,3,2,2],[0,3,0,2],[0,1,2,1]],[[2,1,2,1],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[1,1,3,1],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,2],[2,2,1,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[3,2,1,2],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,3],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[3,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,0,1,3],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,0,1,2],[2,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,0,1,2],[1,3,2,1]],[[1,1,2,1],[2,2,1,2],[2,0,1,2],[1,2,3,1]],[[1,1,2,1],[2,2,1,2],[2,0,1,2],[1,2,2,2]],[[1,1,2,1],[2,3,2,3],[0,3,0,1],[0,2,2,1]],[[1,1,2,2],[2,3,2,2],[0,3,0,1],[0,2,2,1]],[[1,1,3,1],[2,3,2,2],[0,3,0,1],[0,2,2,1]],[[2,1,2,1],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[1,1,3,1],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,2],[2,2,1,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[3,2,1,2],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,3],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[3,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,1,0,3],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,1,0,2],[2,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,1,0,2],[1,3,2,1]],[[1,1,2,1],[2,2,1,2],[2,1,0,2],[1,2,3,1]],[[1,1,2,1],[2,2,1,2],[2,1,0,2],[1,2,2,2]],[[1,1,2,1],[2,3,2,2],[0,2,3,3],[1,0,0,1]],[[1,1,2,1],[2,3,2,3],[0,2,3,2],[1,0,0,1]],[[1,1,2,2],[2,3,2,2],[0,2,3,2],[1,0,0,1]],[[1,1,3,1],[2,3,2,2],[0,2,3,2],[1,0,0,1]],[[1,1,2,1],[2,3,2,2],[0,2,3,3],[0,1,0,1]],[[1,1,2,1],[2,3,2,3],[0,2,3,2],[0,1,0,1]],[[1,1,2,2],[2,3,2,2],[0,2,3,2],[0,1,0,1]],[[1,1,3,1],[2,3,2,2],[0,2,3,2],[0,1,0,1]],[[2,1,2,1],[2,2,1,2],[2,2,0,1],[1,2,2,1]],[[1,1,2,1],[3,2,1,2],[2,2,0,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[3,2,0,1],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,2,0,1],[2,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,2,0,1],[1,3,2,1]],[[1,1,2,1],[2,2,1,2],[2,2,0,1],[1,2,3,1]],[[1,1,2,1],[2,2,1,2],[2,2,0,1],[1,2,2,2]],[[2,1,2,1],[2,2,1,2],[2,2,0,2],[1,2,1,1]],[[1,1,2,1],[3,2,1,2],[2,2,0,2],[1,2,1,1]],[[1,1,2,1],[2,2,1,2],[3,2,0,2],[1,2,1,1]],[[1,1,2,1],[2,2,1,2],[2,2,0,2],[2,2,1,1]],[[1,1,2,1],[2,2,1,2],[2,2,0,2],[1,3,1,1]],[[2,1,2,1],[2,2,1,2],[2,2,0,2],[1,2,2,0]],[[1,1,2,1],[3,2,1,2],[2,2,0,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,2],[3,2,0,2],[1,2,2,0]],[[1,1,2,1],[2,2,1,2],[2,2,0,2],[2,2,2,0]],[[1,1,2,1],[2,2,1,2],[2,2,0,2],[1,3,2,0]],[[1,1,2,1],[2,2,1,2],[2,2,0,2],[1,2,3,0]],[[2,1,2,1],[2,2,1,2],[2,2,1,0],[1,2,2,1]],[[1,1,2,1],[3,2,1,2],[2,2,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[3,2,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,2,1,0],[2,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,2,1,0],[1,3,2,1]],[[1,1,2,1],[2,2,1,2],[2,2,1,0],[1,2,3,1]],[[1,1,2,1],[2,2,1,2],[2,2,1,0],[1,2,2,2]],[[2,1,2,1],[2,2,1,2],[2,2,1,1],[1,2,2,0]],[[1,1,2,1],[3,2,1,2],[2,2,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,2],[3,2,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,2],[2,2,1,1],[2,2,2,0]],[[1,1,2,1],[2,2,1,2],[2,2,1,1],[1,3,2,0]],[[1,1,2,1],[2,2,1,2],[2,2,1,1],[1,2,3,0]],[[2,1,2,1],[2,2,1,2],[2,2,1,2],[1,2,0,1]],[[1,1,2,1],[3,2,1,2],[2,2,1,2],[1,2,0,1]],[[1,1,2,1],[2,2,1,2],[3,2,1,2],[1,2,0,1]],[[1,1,2,1],[2,2,1,2],[2,2,1,2],[2,2,0,1]],[[1,1,2,1],[2,2,1,2],[2,2,1,2],[1,3,0,1]],[[2,1,2,1],[2,2,1,2],[2,2,1,2],[1,2,1,0]],[[1,1,2,1],[3,2,1,2],[2,2,1,2],[1,2,1,0]],[[1,1,2,1],[2,2,1,2],[3,2,1,2],[1,2,1,0]],[[1,1,2,1],[2,2,1,2],[2,2,1,2],[2,2,1,0]],[[1,1,2,1],[2,2,1,2],[2,2,1,2],[1,3,1,0]],[[2,1,2,1],[2,2,1,2],[2,2,2,0],[1,2,1,1]],[[1,1,2,1],[3,2,1,2],[2,2,2,0],[1,2,1,1]],[[1,1,2,1],[2,2,1,2],[3,2,2,0],[1,2,1,1]],[[1,1,2,1],[2,2,1,2],[2,2,2,0],[2,2,1,1]],[[1,1,2,1],[2,2,1,2],[2,2,2,0],[1,3,1,1]],[[2,1,2,1],[2,2,1,2],[2,2,2,1],[1,2,0,1]],[[1,1,2,1],[3,2,1,2],[2,2,2,1],[1,2,0,1]],[[1,1,2,1],[2,2,1,2],[3,2,2,1],[1,2,0,1]],[[1,1,2,1],[2,2,1,2],[2,2,2,1],[2,2,0,1]],[[1,1,2,1],[2,2,1,2],[2,2,2,1],[1,3,0,1]],[[2,1,2,1],[2,2,1,2],[2,2,2,1],[1,2,1,0]],[[1,1,2,1],[3,2,1,2],[2,2,2,1],[1,2,1,0]],[[1,1,2,1],[2,2,1,2],[3,2,2,1],[1,2,1,0]],[[1,1,2,1],[2,2,1,2],[2,2,2,1],[2,2,1,0]],[[1,1,2,1],[2,2,1,2],[2,2,2,1],[1,3,1,0]],[[1,1,2,1],[2,3,2,3],[0,2,3,1],[1,1,1,0]],[[1,1,2,2],[2,3,2,2],[0,2,3,1],[1,1,1,0]],[[1,1,3,1],[2,3,2,2],[0,2,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,2,3],[0,2,3,1],[1,1,0,1]],[[1,1,2,2],[2,3,2,2],[0,2,3,1],[1,1,0,1]],[[1,1,3,1],[2,3,2,2],[0,2,3,1],[1,1,0,1]],[[1,1,2,1],[2,3,2,3],[0,2,3,1],[1,0,2,0]],[[1,1,2,2],[2,3,2,2],[0,2,3,1],[1,0,2,0]],[[1,1,3,1],[2,3,2,2],[0,2,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,2,3],[0,2,3,1],[1,0,1,1]],[[1,1,2,2],[2,3,2,2],[0,2,3,1],[1,0,1,1]],[[1,1,3,1],[2,3,2,2],[0,2,3,1],[1,0,1,1]],[[1,1,2,1],[2,3,2,3],[0,2,3,1],[0,2,1,0]],[[1,1,2,2],[2,3,2,2],[0,2,3,1],[0,2,1,0]],[[1,1,3,1],[2,3,2,2],[0,2,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,2,3],[0,2,3,1],[0,2,0,1]],[[1,1,2,2],[2,3,2,2],[0,2,3,1],[0,2,0,1]],[[1,1,3,1],[2,3,2,2],[0,2,3,1],[0,2,0,1]],[[1,1,2,1],[2,3,2,3],[0,2,3,1],[0,1,2,0]],[[1,1,2,2],[2,3,2,2],[0,2,3,1],[0,1,2,0]],[[1,1,3,1],[2,3,2,2],[0,2,3,1],[0,1,2,0]],[[1,1,2,1],[2,3,2,3],[0,2,3,1],[0,1,1,1]],[[1,1,2,2],[2,3,2,2],[0,2,3,1],[0,1,1,1]],[[1,1,3,1],[2,3,2,2],[0,2,3,1],[0,1,1,1]],[[1,1,2,1],[2,3,2,3],[0,2,3,1],[0,0,2,1]],[[1,1,2,2],[2,3,2,2],[0,2,3,1],[0,0,2,1]],[[1,1,3,1],[2,3,2,2],[0,2,3,1],[0,0,2,1]],[[1,1,2,1],[2,4,2,2],[0,2,3,0],[1,2,1,0]],[[1,1,2,1],[3,3,2,2],[0,2,3,0],[1,2,1,0]],[[2,1,2,1],[2,3,2,2],[0,2,3,0],[1,2,1,0]],[[1,1,2,1],[2,4,2,2],[0,2,3,0],[1,2,0,1]],[[1,1,2,1],[3,3,2,2],[0,2,3,0],[1,2,0,1]],[[2,1,2,1],[2,3,2,2],[0,2,3,0],[1,2,0,1]],[[1,1,2,1],[2,4,2,2],[0,2,3,0],[1,1,2,0]],[[1,1,2,1],[3,3,2,2],[0,2,3,0],[1,1,2,0]],[[2,1,2,1],[2,3,2,2],[0,2,3,0],[1,1,2,0]],[[1,1,2,1],[2,3,2,3],[0,2,3,0],[1,0,2,1]],[[1,1,2,2],[2,3,2,2],[0,2,3,0],[1,0,2,1]],[[1,1,3,1],[2,3,2,2],[0,2,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,2,3],[0,2,3,0],[0,2,1,1]],[[1,1,2,2],[2,3,2,2],[0,2,3,0],[0,2,1,1]],[[1,1,3,1],[2,3,2,2],[0,2,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,2,3],[0,2,3,0],[0,1,2,1]],[[1,1,2,2],[2,3,2,2],[0,2,3,0],[0,1,2,1]],[[1,1,3,1],[2,3,2,2],[0,2,3,0],[0,1,2,1]],[[1,1,2,1],[2,3,2,3],[0,2,2,2],[1,1,1,0]],[[1,1,2,2],[2,3,2,2],[0,2,2,2],[1,1,1,0]],[[1,1,3,1],[2,3,2,2],[0,2,2,2],[1,1,1,0]],[[1,1,2,1],[2,3,2,2],[0,2,2,3],[1,1,0,1]],[[1,1,2,1],[2,3,2,3],[0,2,2,2],[1,1,0,1]],[[1,1,2,2],[2,3,2,2],[0,2,2,2],[1,1,0,1]],[[1,1,3,1],[2,3,2,2],[0,2,2,2],[1,1,0,1]],[[1,1,2,1],[2,3,2,2],[0,2,2,3],[1,0,2,0]],[[1,1,2,1],[2,3,2,3],[0,2,2,2],[1,0,2,0]],[[1,1,2,2],[2,3,2,2],[0,2,2,2],[1,0,2,0]],[[2,1,2,1],[2,2,1,2],[2,3,0,0],[1,2,2,1]],[[1,1,2,1],[3,2,1,2],[2,3,0,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[3,3,0,0],[1,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,3,0,0],[2,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,3,0,0],[1,3,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[3,2,1,2],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[2,2,1,2],[3,3,0,1],[0,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,4,0,1],[0,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,3,0,1],[0,3,2,1]],[[1,1,2,1],[2,2,1,2],[2,3,0,1],[0,2,3,1]],[[1,1,2,1],[2,2,1,2],[2,3,0,1],[0,2,2,2]],[[2,1,2,1],[2,2,1,2],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[3,2,1,2],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[2,2,1,2],[3,3,0,1],[1,1,2,1]],[[1,1,2,1],[2,2,1,2],[2,4,0,1],[1,1,2,1]],[[1,1,2,1],[2,2,1,2],[2,3,0,1],[2,1,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,0,1],[1,2,2,0]],[[1,1,2,1],[3,2,1,2],[2,3,0,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,2],[3,3,0,1],[1,2,2,0]],[[1,1,2,1],[2,2,1,2],[2,3,0,1],[2,2,2,0]],[[1,1,2,1],[2,2,1,2],[2,3,0,1],[1,3,2,0]],[[2,1,2,1],[2,2,1,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,1],[3,2,1,2],[2,3,0,2],[0,1,2,1]],[[1,1,2,1],[2,2,1,2],[3,3,0,2],[0,1,2,1]],[[1,1,2,1],[2,2,1,2],[2,4,0,2],[0,1,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,0,2],[0,2,1,1]],[[1,1,2,1],[3,2,1,2],[2,3,0,2],[0,2,1,1]],[[1,1,2,1],[2,2,1,2],[3,3,0,2],[0,2,1,1]],[[1,1,2,1],[2,2,1,2],[2,4,0,2],[0,2,1,1]],[[1,1,2,1],[2,2,1,2],[2,3,0,2],[0,3,1,1]],[[2,1,2,1],[2,2,1,2],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[3,2,1,2],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[2,2,1,2],[3,3,0,2],[0,2,2,0]],[[1,1,2,1],[2,2,1,2],[2,4,0,2],[0,2,2,0]],[[1,1,2,1],[2,2,1,2],[2,3,0,2],[0,3,2,0]],[[1,1,2,1],[2,2,1,2],[2,3,0,2],[0,2,3,0]],[[2,1,2,1],[2,2,1,2],[2,3,0,2],[1,0,2,1]],[[1,1,2,1],[3,2,1,2],[2,3,0,2],[1,0,2,1]],[[1,1,2,1],[2,2,1,2],[3,3,0,2],[1,0,2,1]],[[1,1,2,1],[2,2,1,2],[2,4,0,2],[1,0,2,1]],[[1,1,2,1],[2,2,1,2],[2,3,0,2],[2,0,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,0,2],[1,1,1,1]],[[1,1,2,1],[3,2,1,2],[2,3,0,2],[1,1,1,1]],[[1,1,2,1],[2,2,1,2],[3,3,0,2],[1,1,1,1]],[[1,1,2,1],[2,2,1,2],[2,4,0,2],[1,1,1,1]],[[1,1,2,1],[2,2,1,2],[2,3,0,2],[2,1,1,1]],[[2,1,2,1],[2,2,1,2],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[3,2,1,2],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[2,2,1,2],[3,3,0,2],[1,1,2,0]],[[1,1,2,1],[2,2,1,2],[2,4,0,2],[1,1,2,0]],[[1,1,2,1],[2,2,1,2],[2,3,0,2],[2,1,2,0]],[[1,1,3,1],[2,3,2,2],[0,2,2,2],[1,0,2,0]],[[1,1,2,1],[2,3,2,2],[0,2,2,2],[1,0,1,2]],[[1,1,2,1],[2,3,2,2],[0,2,2,3],[1,0,1,1]],[[1,1,2,1],[2,3,2,3],[0,2,2,2],[1,0,1,1]],[[1,1,2,2],[2,3,2,2],[0,2,2,2],[1,0,1,1]],[[1,1,3,1],[2,3,2,2],[0,2,2,2],[1,0,1,1]],[[2,1,2,1],[2,2,1,2],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[3,2,1,2],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,2,1,2],[3,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,4,1,0],[0,2,2,1]],[[1,1,2,1],[2,2,1,2],[2,3,1,0],[0,3,2,1]],[[1,1,2,1],[2,2,1,2],[2,3,1,0],[0,2,3,1]],[[1,1,2,1],[2,2,1,2],[2,3,1,0],[0,2,2,2]],[[2,1,2,1],[2,2,1,2],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[3,2,1,2],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[2,2,1,2],[3,3,1,0],[1,1,2,1]],[[1,1,2,1],[2,2,1,2],[2,4,1,0],[1,1,2,1]],[[1,1,2,1],[2,2,1,2],[2,3,1,0],[2,1,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[3,2,1,2],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[2,2,1,2],[3,3,1,1],[0,2,2,0]],[[1,1,2,1],[2,2,1,2],[2,4,1,1],[0,2,2,0]],[[1,1,2,1],[2,2,1,2],[2,3,1,1],[0,3,2,0]],[[1,1,2,1],[2,2,1,2],[2,3,1,1],[0,2,3,0]],[[2,1,2,1],[2,2,1,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[3,2,1,2],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[2,2,1,2],[3,3,1,1],[1,1,2,0]],[[1,1,2,1],[2,2,1,2],[2,4,1,1],[1,1,2,0]],[[1,1,2,1],[2,2,1,2],[2,3,1,1],[2,1,2,0]],[[1,1,2,1],[2,3,2,2],[0,2,2,3],[0,2,1,0]],[[1,1,2,1],[2,3,2,3],[0,2,2,2],[0,2,1,0]],[[1,1,2,2],[2,3,2,2],[0,2,2,2],[0,2,1,0]],[[1,1,3,1],[2,3,2,2],[0,2,2,2],[0,2,1,0]],[[1,1,2,1],[2,3,2,2],[0,2,2,2],[0,2,0,2]],[[2,1,2,1],[2,2,1,2],[2,3,1,2],[0,1,1,1]],[[1,1,2,1],[3,2,1,2],[2,3,1,2],[0,1,1,1]],[[1,1,2,1],[2,2,1,2],[3,3,1,2],[0,1,1,1]],[[1,1,2,1],[2,2,1,2],[2,4,1,2],[0,1,1,1]],[[2,1,2,1],[2,2,1,2],[2,3,1,2],[0,1,2,0]],[[1,1,2,1],[3,2,1,2],[2,3,1,2],[0,1,2,0]],[[1,1,2,1],[2,2,1,2],[3,3,1,2],[0,1,2,0]],[[1,1,2,1],[2,2,1,2],[2,4,1,2],[0,1,2,0]],[[2,1,2,1],[2,2,1,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[3,2,1,2],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[2,2,1,2],[3,3,1,2],[0,2,0,1]],[[1,1,2,1],[2,2,1,2],[2,4,1,2],[0,2,0,1]],[[1,1,2,1],[2,2,1,2],[2,3,1,2],[0,3,0,1]],[[2,1,2,1],[2,2,1,2],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[3,2,1,2],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[2,2,1,2],[3,3,1,2],[0,2,1,0]],[[1,1,2,1],[2,2,1,2],[2,4,1,2],[0,2,1,0]],[[1,1,2,1],[2,2,1,2],[2,3,1,2],[0,3,1,0]],[[1,1,2,1],[2,3,2,2],[0,2,2,3],[0,2,0,1]],[[1,1,2,1],[2,3,2,3],[0,2,2,2],[0,2,0,1]],[[1,1,2,2],[2,3,2,2],[0,2,2,2],[0,2,0,1]],[[1,1,3,1],[2,3,2,2],[0,2,2,2],[0,2,0,1]],[[1,1,2,1],[2,3,2,2],[0,2,2,3],[0,1,2,0]],[[2,1,2,1],[2,2,1,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[3,2,1,2],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[2,2,1,2],[3,3,1,2],[1,0,1,1]],[[1,1,2,1],[2,2,1,2],[2,4,1,2],[1,0,1,1]],[[1,1,2,1],[2,2,1,2],[2,3,1,2],[2,0,1,1]],[[2,1,2,1],[2,2,1,2],[2,3,1,2],[1,0,2,0]],[[1,1,2,1],[3,2,1,2],[2,3,1,2],[1,0,2,0]],[[1,1,2,1],[2,2,1,2],[3,3,1,2],[1,0,2,0]],[[1,1,2,1],[2,2,1,2],[2,4,1,2],[1,0,2,0]],[[1,1,2,1],[2,2,1,2],[2,3,1,2],[2,0,2,0]],[[2,1,2,1],[2,2,1,2],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[3,2,1,2],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[2,2,1,2],[3,3,1,2],[1,1,0,1]],[[1,1,2,1],[2,2,1,2],[2,4,1,2],[1,1,0,1]],[[1,1,2,1],[2,2,1,2],[2,3,1,2],[2,1,0,1]],[[2,1,2,1],[2,2,1,2],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[3,2,1,2],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[2,2,1,2],[3,3,1,2],[1,1,1,0]],[[1,1,2,1],[2,2,1,2],[2,4,1,2],[1,1,1,0]],[[1,1,2,1],[2,2,1,2],[2,3,1,2],[2,1,1,0]],[[1,1,2,1],[2,3,2,3],[0,2,2,2],[0,1,2,0]],[[1,1,2,2],[2,3,2,2],[0,2,2,2],[0,1,2,0]],[[1,1,3,1],[2,3,2,2],[0,2,2,2],[0,1,2,0]],[[1,1,2,1],[2,3,2,2],[0,2,2,2],[0,1,1,2]],[[1,1,2,1],[2,3,2,2],[0,2,2,3],[0,1,1,1]],[[2,1,2,1],[2,2,1,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[3,2,1,2],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[2,2,1,2],[3,3,1,2],[1,2,0,0]],[[1,1,2,1],[2,2,1,2],[2,4,1,2],[1,2,0,0]],[[1,1,2,1],[2,2,1,2],[2,3,1,2],[2,2,0,0]],[[1,1,2,1],[2,3,2,3],[0,2,2,2],[0,1,1,1]],[[1,1,2,2],[2,3,2,2],[0,2,2,2],[0,1,1,1]],[[1,1,3,1],[2,3,2,2],[0,2,2,2],[0,1,1,1]],[[1,1,2,1],[2,3,2,2],[0,2,2,2],[0,0,2,2]],[[1,1,2,1],[2,3,2,2],[0,2,2,3],[0,0,2,1]],[[1,1,2,1],[2,3,2,3],[0,2,2,2],[0,0,2,1]],[[1,1,2,2],[2,3,2,2],[0,2,2,2],[0,0,2,1]],[[1,1,3,1],[2,3,2,2],[0,2,2,2],[0,0,2,1]],[[1,1,2,1],[2,3,2,2],[0,2,1,2],[1,0,2,2]],[[1,1,2,1],[2,3,2,2],[0,2,1,3],[1,0,2,1]],[[1,1,2,1],[2,3,2,3],[0,2,1,2],[1,0,2,1]],[[1,1,2,2],[2,3,2,2],[0,2,1,2],[1,0,2,1]],[[1,1,3,1],[2,3,2,2],[0,2,1,2],[1,0,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[3,2,1,2],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,2,1,2],[3,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,2,1,2],[2,4,2,0],[0,1,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[3,2,1,2],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,2,1,2],[3,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,2,1,2],[2,4,2,0],[0,2,1,1]],[[1,1,2,1],[2,2,1,2],[2,3,2,0],[0,3,1,1]],[[2,1,2,1],[2,2,1,2],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[3,2,1,2],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,2,1,2],[3,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,2,1,2],[2,4,2,0],[1,0,2,1]],[[1,1,2,1],[2,2,1,2],[2,3,2,0],[2,0,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[3,2,1,2],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[2,2,1,2],[3,3,2,0],[1,1,1,1]],[[1,1,2,1],[2,2,1,2],[2,4,2,0],[1,1,1,1]],[[1,1,2,1],[2,2,1,2],[2,3,2,0],[2,1,1,1]],[[2,1,2,1],[2,2,1,2],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[3,2,1,2],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[2,2,1,2],[3,3,2,0],[1,2,0,1]],[[1,1,2,1],[2,2,1,2],[2,4,2,0],[1,2,0,1]],[[1,1,2,1],[2,2,1,2],[2,3,2,0],[2,2,0,1]],[[1,1,2,1],[2,3,2,2],[0,2,1,2],[0,1,2,2]],[[1,1,2,1],[2,3,2,2],[0,2,1,2],[0,1,3,1]],[[1,1,2,1],[2,3,2,2],[0,2,1,3],[0,1,2,1]],[[1,1,2,1],[2,3,2,3],[0,2,1,2],[0,1,2,1]],[[1,1,2,2],[2,3,2,2],[0,2,1,2],[0,1,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,2,1],[0,1,1,1]],[[1,1,2,1],[3,2,1,2],[2,3,2,1],[0,1,1,1]],[[1,1,2,1],[2,2,1,2],[3,3,2,1],[0,1,1,1]],[[1,1,2,1],[2,2,1,2],[2,4,2,1],[0,1,1,1]],[[2,1,2,1],[2,2,1,2],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[3,2,1,2],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,2,1,2],[3,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,2,1,2],[2,4,2,1],[0,1,2,0]],[[2,1,2,1],[2,2,1,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[3,2,1,2],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,2,1,2],[3,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,2,1,2],[2,4,2,1],[0,2,0,1]],[[1,1,2,1],[2,2,1,2],[2,3,2,1],[0,3,0,1]],[[2,1,2,1],[2,2,1,2],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[3,2,1,2],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,2,1,2],[3,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,2,1,2],[2,4,2,1],[0,2,1,0]],[[1,1,2,1],[2,2,1,2],[2,3,2,1],[0,3,1,0]],[[1,1,3,1],[2,3,2,2],[0,2,1,2],[0,1,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[3,2,1,2],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,2,1,2],[3,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,2,1,2],[2,4,2,1],[1,0,1,1]],[[1,1,2,1],[2,2,1,2],[2,3,2,1],[2,0,1,1]],[[2,1,2,1],[2,2,1,2],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[3,2,1,2],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,2,1,2],[3,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,2,1,2],[2,4,2,1],[1,0,2,0]],[[1,1,2,1],[2,2,1,2],[2,3,2,1],[2,0,2,0]],[[2,1,2,1],[2,2,1,2],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[3,2,1,2],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,2,1,2],[3,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,2,1,2],[2,4,2,1],[1,1,0,1]],[[1,1,2,1],[2,2,1,2],[2,3,2,1],[2,1,0,1]],[[2,1,2,1],[2,2,1,2],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[3,2,1,2],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,2,1,2],[3,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,2,1,2],[2,4,2,1],[1,1,1,0]],[[1,1,2,1],[2,2,1,2],[2,3,2,1],[2,1,1,0]],[[2,1,2,1],[2,2,1,2],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[3,2,1,2],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[2,2,1,2],[3,3,2,1],[1,2,0,0]],[[1,1,2,1],[2,2,1,2],[2,4,2,1],[1,2,0,0]],[[1,1,2,1],[2,2,1,2],[2,3,2,1],[2,2,0,0]],[[1,1,2,1],[2,3,2,2],[0,2,0,2],[0,2,2,2]],[[1,1,2,1],[2,3,2,2],[0,2,0,2],[0,2,3,1]],[[1,1,2,1],[2,3,2,2],[0,2,0,3],[0,2,2,1]],[[1,1,2,1],[2,3,2,3],[0,2,0,2],[0,2,2,1]],[[1,1,2,2],[2,3,2,2],[0,2,0,2],[0,2,2,1]],[[1,1,3,1],[2,3,2,2],[0,2,0,2],[0,2,2,1]],[[1,1,2,1],[2,3,2,2],[0,1,3,3],[1,0,2,0]],[[1,1,2,1],[2,3,2,3],[0,1,3,2],[1,0,2,0]],[[1,1,2,2],[2,3,2,2],[0,1,3,2],[1,0,2,0]],[[1,1,3,1],[2,3,2,2],[0,1,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,2,2],[0,1,3,2],[1,0,1,2]],[[1,1,2,1],[2,3,2,2],[0,1,3,3],[1,0,1,1]],[[1,1,2,1],[2,3,2,3],[0,1,3,2],[1,0,1,1]],[[1,1,2,2],[2,3,2,2],[0,1,3,2],[1,0,1,1]],[[1,1,3,1],[2,3,2,2],[0,1,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,2,2],[0,1,3,3],[0,1,2,0]],[[1,1,2,1],[2,3,2,3],[0,1,3,2],[0,1,2,0]],[[1,1,2,2],[2,3,2,2],[0,1,3,2],[0,1,2,0]],[[1,1,3,1],[2,3,2,2],[0,1,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,2,2],[0,1,3,2],[0,1,1,2]],[[1,1,2,1],[2,3,2,2],[0,1,3,3],[0,1,1,1]],[[1,1,2,1],[2,3,2,3],[0,1,3,2],[0,1,1,1]],[[1,1,2,2],[2,3,2,2],[0,1,3,2],[0,1,1,1]],[[1,1,3,1],[2,3,2,2],[0,1,3,2],[0,1,1,1]],[[1,1,2,1],[2,3,2,2],[0,1,3,2],[0,0,2,2]],[[1,1,2,1],[2,3,2,2],[0,1,3,3],[0,0,2,1]],[[1,1,2,1],[2,3,2,3],[0,1,3,2],[0,0,2,1]],[[1,1,2,2],[2,3,2,2],[0,1,3,2],[0,0,2,1]],[[1,1,3,1],[2,3,2,2],[0,1,3,2],[0,0,2,1]],[[1,1,2,1],[2,3,2,3],[0,1,3,1],[0,2,2,0]],[[1,1,2,2],[2,3,2,2],[0,1,3,1],[0,2,2,0]],[[1,1,3,1],[2,3,2,2],[0,1,3,1],[0,2,2,0]],[[1,1,2,1],[2,3,2,3],[0,1,3,1],[0,2,1,1]],[[1,1,2,2],[2,3,2,2],[0,1,3,1],[0,2,1,1]],[[1,1,3,1],[2,3,2,2],[0,1,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,2,2],[0,1,3,0],[1,2,2,0]],[[1,1,2,1],[3,3,2,2],[0,1,3,0],[1,2,2,0]],[[2,1,2,1],[2,3,2,2],[0,1,3,0],[1,2,2,0]],[[1,1,2,1],[2,3,2,3],[0,1,3,0],[0,2,2,1]],[[1,1,2,2],[2,3,2,2],[0,1,3,0],[0,2,2,1]],[[1,1,3,1],[2,3,2,2],[0,1,3,0],[0,2,2,1]],[[1,1,2,1],[2,3,2,2],[0,1,2,3],[0,2,2,0]],[[1,1,2,1],[2,3,2,3],[0,1,2,2],[0,2,2,0]],[[1,1,2,2],[2,3,2,2],[0,1,2,2],[0,2,2,0]],[[1,1,3,1],[2,3,2,2],[0,1,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,2,2],[0,1,2,2],[0,2,1,2]],[[1,1,2,1],[2,3,2,2],[0,1,2,3],[0,2,1,1]],[[1,1,2,1],[2,3,2,3],[0,1,2,2],[0,2,1,1]],[[1,1,2,2],[2,3,2,2],[0,1,2,2],[0,2,1,1]],[[1,1,3,1],[2,3,2,2],[0,1,2,2],[0,2,1,1]],[[1,1,2,1],[2,3,2,2],[0,1,1,2],[0,2,2,2]],[[1,1,2,1],[2,3,2,2],[0,1,1,2],[0,2,3,1]],[[1,1,2,1],[2,3,2,2],[0,1,1,3],[0,2,2,1]],[[1,1,2,1],[2,3,2,3],[0,1,1,2],[0,2,2,1]],[[1,1,2,2],[2,3,2,2],[0,1,1,2],[0,2,2,1]],[[1,1,3,1],[2,3,2,2],[0,1,1,2],[0,2,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[3,2,1,2],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,2,1,2],[3,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,2,1,2],[2,4,3,1],[0,2,0,0]],[[1,1,2,1],[2,3,2,2],[0,0,3,3],[0,2,2,0]],[[1,1,2,1],[2,3,2,3],[0,0,3,2],[0,2,2,0]],[[1,1,2,2],[2,3,2,2],[0,0,3,2],[0,2,2,0]],[[1,1,3,1],[2,3,2,2],[0,0,3,2],[0,2,2,0]],[[1,1,2,1],[2,3,2,2],[0,0,3,2],[0,2,1,2]],[[1,1,2,1],[2,3,2,2],[0,0,3,3],[0,2,1,1]],[[1,1,2,1],[2,3,2,3],[0,0,3,2],[0,2,1,1]],[[1,1,2,2],[2,3,2,2],[0,0,3,2],[0,2,1,1]],[[1,1,3,1],[2,3,2,2],[0,0,3,2],[0,2,1,1]],[[1,1,2,1],[2,3,2,2],[0,0,3,2],[0,1,2,2]],[[1,1,2,1],[2,3,2,2],[0,0,3,3],[0,1,2,1]],[[1,1,2,1],[2,3,2,3],[0,0,3,2],[0,1,2,1]],[[1,1,2,2],[2,3,2,2],[0,0,3,2],[0,1,2,1]],[[1,1,3,1],[2,3,2,2],[0,0,3,2],[0,1,2,1]],[[1,1,2,1],[2,3,2,2],[0,0,2,2],[0,2,2,2]],[[1,1,2,1],[2,3,2,2],[0,0,2,2],[0,2,3,1]],[[1,1,2,1],[2,3,2,2],[0,0,2,3],[0,2,2,1]],[[1,1,2,1],[2,3,2,3],[0,0,2,2],[0,2,2,1]],[[1,1,2,2],[2,3,2,2],[0,0,2,2],[0,2,2,1]],[[1,1,3,1],[2,3,2,2],[0,0,2,2],[0,2,2,1]],[[2,1,2,1],[2,2,1,2],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[3,2,1,2],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,2,1,2],[3,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,2,1,2],[2,4,3,1],[1,1,0,0]],[[1,1,2,1],[2,2,1,2],[2,3,3,1],[2,1,0,0]],[[1,1,2,1],[2,3,2,1],[3,3,3,1],[1,0,0,0]],[[1,1,2,1],[2,4,2,1],[2,3,3,1],[1,0,0,0]],[[1,1,2,1],[3,3,2,1],[2,3,3,1],[1,0,0,0]],[[2,1,2,1],[2,3,2,1],[2,3,3,1],[1,0,0,0]],[[1,1,2,1],[2,3,2,1],[3,3,3,0],[1,0,1,0]],[[1,1,2,1],[2,4,2,1],[2,3,3,0],[1,0,1,0]],[[1,1,2,1],[3,3,2,1],[2,3,3,0],[1,0,1,0]],[[2,1,2,1],[2,3,2,1],[2,3,3,0],[1,0,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,2,1],[1,0,1,0]],[[1,1,2,1],[2,4,2,1],[2,3,2,1],[1,0,1,0]],[[1,1,2,1],[3,3,2,1],[2,3,2,1],[1,0,1,0]],[[2,1,2,1],[2,3,2,1],[2,3,2,1],[1,0,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,2,1],[1,0,0,1]],[[1,1,2,1],[2,4,2,1],[2,3,2,1],[1,0,0,1]],[[1,1,2,1],[3,3,2,1],[2,3,2,1],[1,0,0,1]],[[2,1,2,1],[2,3,2,1],[2,3,2,1],[1,0,0,1]],[[1,1,2,1],[2,3,2,1],[2,3,2,0],[2,2,0,0]],[[1,1,2,1],[2,3,2,1],[3,3,2,0],[1,2,0,0]],[[1,1,2,1],[2,4,2,1],[2,3,2,0],[1,2,0,0]],[[1,1,2,1],[3,3,2,1],[2,3,2,0],[1,2,0,0]],[[2,1,2,1],[2,3,2,1],[2,3,2,0],[1,2,0,0]],[[1,1,2,1],[2,3,2,1],[2,3,2,0],[2,1,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,2,0],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[2,3,2,0],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[2,3,2,0],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[2,3,2,0],[1,1,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,2,0],[1,0,1,1]],[[1,1,2,1],[2,4,2,1],[2,3,2,0],[1,0,1,1]],[[1,1,2,1],[3,3,2,1],[2,3,2,0],[1,0,1,1]],[[2,1,2,1],[2,3,2,1],[2,3,2,0],[1,0,1,1]],[[1,1,2,1],[2,3,2,1],[3,3,2,0],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,3,2,0],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,3,2,0],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,3,2,0],[0,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,1,2],[1,0,1,0]],[[1,1,2,1],[2,4,2,1],[2,3,1,2],[1,0,1,0]],[[1,1,2,1],[3,3,2,1],[2,3,1,2],[1,0,1,0]],[[2,1,2,1],[2,3,2,1],[2,3,1,2],[1,0,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,1,2],[1,0,0,1]],[[1,1,2,1],[2,4,2,1],[2,3,1,2],[1,0,0,1]],[[1,1,2,1],[3,3,2,1],[2,3,1,2],[1,0,0,1]],[[2,1,2,1],[2,3,2,1],[2,3,1,2],[1,0,0,1]],[[1,1,2,1],[2,3,2,1],[2,3,1,1],[2,2,0,0]],[[1,1,2,1],[2,3,2,1],[3,3,1,1],[1,2,0,0]],[[1,1,2,1],[2,4,2,1],[2,3,1,1],[1,2,0,0]],[[1,1,2,1],[3,3,2,1],[2,3,1,1],[1,2,0,0]],[[2,1,2,1],[2,3,2,1],[2,3,1,1],[1,2,0,0]],[[1,1,2,1],[2,3,2,1],[2,3,1,1],[2,1,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,1,1],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[2,3,1,1],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[2,3,1,1],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[2,3,1,1],[1,1,1,0]],[[1,1,2,1],[2,3,2,1],[2,3,1,1],[2,1,0,1]],[[1,1,2,1],[2,3,2,1],[3,3,1,1],[1,1,0,1]],[[1,1,2,1],[2,4,2,1],[2,3,1,1],[1,1,0,1]],[[1,1,2,1],[3,3,2,1],[2,3,1,1],[1,1,0,1]],[[2,1,2,1],[2,3,2,1],[2,3,1,1],[1,1,0,1]],[[1,1,2,1],[2,2,2,0],[1,4,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,2,0],[1,3,0,3],[1,2,2,1]],[[1,1,2,1],[2,2,2,0],[1,3,0,2],[2,2,2,1]],[[1,1,2,1],[2,2,2,0],[1,3,0,2],[1,3,2,1]],[[1,1,2,1],[2,2,2,0],[1,3,0,2],[1,2,3,1]],[[1,1,2,1],[2,2,2,0],[1,3,0,2],[1,2,2,2]],[[1,1,2,1],[2,2,2,0],[1,4,1,1],[1,2,2,1]],[[1,1,2,1],[2,2,2,0],[1,3,1,1],[2,2,2,1]],[[1,1,2,1],[2,2,2,0],[1,3,1,1],[1,3,2,1]],[[1,1,2,1],[2,2,2,0],[1,3,1,1],[1,2,3,1]],[[1,1,2,1],[2,2,2,0],[1,3,1,1],[1,2,2,2]],[[1,1,2,1],[2,2,2,0],[1,4,1,2],[1,2,2,0]],[[1,1,2,1],[2,2,2,0],[1,3,1,2],[2,2,2,0]],[[1,1,2,1],[2,2,2,0],[1,3,1,2],[1,3,2,0]],[[1,1,2,1],[2,2,2,0],[1,3,1,2],[1,2,3,0]],[[1,1,2,1],[2,2,2,0],[1,4,2,1],[1,2,1,1]],[[1,1,2,1],[2,2,2,0],[1,3,2,1],[2,2,1,1]],[[1,1,2,1],[2,2,2,0],[1,3,2,1],[1,3,1,1]],[[1,1,2,1],[2,2,2,0],[1,4,2,2],[1,2,0,1]],[[1,1,2,1],[2,2,2,0],[1,3,2,2],[2,2,0,1]],[[1,1,2,1],[2,2,2,0],[1,3,2,2],[1,3,0,1]],[[1,1,2,1],[2,2,2,0],[1,4,2,2],[1,2,1,0]],[[1,1,2,1],[2,2,2,0],[1,3,2,2],[2,2,1,0]],[[1,1,2,1],[2,2,2,0],[1,3,2,2],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,1,1],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,3,1,1],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,3,1,1],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,3,1,1],[0,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,1,1],[0,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,3,1,1],[0,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,3,1,1],[0,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,3,1,1],[0,2,0,1]],[[1,1,2,1],[2,3,2,1],[2,3,1,0],[2,2,0,1]],[[1,1,2,1],[2,3,2,1],[3,3,1,0],[1,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,3,1,0],[1,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,3,1,0],[1,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,3,1,0],[1,2,0,1]],[[1,1,2,1],[2,3,2,1],[2,3,1,0],[2,1,1,1]],[[1,1,2,1],[2,3,2,1],[3,3,1,0],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,3,1,0],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[2,3,1,0],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[2,3,1,0],[1,1,1,1]],[[2,1,2,1],[2,2,2,0],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[3,2,2,0],[2,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,2,0],[3,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,2,0,3],[1,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,2,0,2],[2,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,2,0,2],[1,3,2,1]],[[1,1,2,1],[2,2,2,0],[2,2,0,2],[1,2,3,1]],[[1,1,2,1],[2,2,2,0],[2,2,0,2],[1,2,2,2]],[[2,1,2,1],[2,2,2,0],[2,2,1,1],[1,2,2,1]],[[1,1,2,1],[3,2,2,0],[2,2,1,1],[1,2,2,1]],[[1,1,2,1],[2,2,2,0],[3,2,1,1],[1,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,2,1,1],[2,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,2,1,1],[1,3,2,1]],[[1,1,2,1],[2,2,2,0],[2,2,1,1],[1,2,3,1]],[[1,1,2,1],[2,2,2,0],[2,2,1,1],[1,2,2,2]],[[2,1,2,1],[2,2,2,0],[2,2,1,2],[1,2,2,0]],[[1,1,2,1],[3,2,2,0],[2,2,1,2],[1,2,2,0]],[[1,1,2,1],[2,2,2,0],[3,2,1,2],[1,2,2,0]],[[1,1,2,1],[2,2,2,0],[2,2,1,2],[2,2,2,0]],[[1,1,2,1],[2,2,2,0],[2,2,1,2],[1,3,2,0]],[[1,1,2,1],[2,2,2,0],[2,2,1,2],[1,2,3,0]],[[2,1,2,1],[2,2,2,0],[2,2,2,1],[1,2,1,1]],[[1,1,2,1],[3,2,2,0],[2,2,2,1],[1,2,1,1]],[[1,1,2,1],[2,2,2,0],[3,2,2,1],[1,2,1,1]],[[1,1,2,1],[2,2,2,0],[2,2,2,1],[2,2,1,1]],[[1,1,2,1],[2,2,2,0],[2,2,2,1],[1,3,1,1]],[[2,1,2,1],[2,2,2,0],[2,2,2,2],[1,2,0,1]],[[1,1,2,1],[3,2,2,0],[2,2,2,2],[1,2,0,1]],[[1,1,2,1],[2,2,2,0],[3,2,2,2],[1,2,0,1]],[[1,1,2,1],[2,2,2,0],[2,2,2,2],[2,2,0,1]],[[1,1,2,1],[2,2,2,0],[2,2,2,2],[1,3,0,1]],[[2,1,2,1],[2,2,2,0],[2,2,2,2],[1,2,1,0]],[[1,1,2,1],[3,2,2,0],[2,2,2,2],[1,2,1,0]],[[1,1,2,1],[2,2,2,0],[3,2,2,2],[1,2,1,0]],[[1,1,2,1],[2,2,2,0],[2,2,2,2],[2,2,1,0]],[[1,1,2,1],[2,2,2,0],[2,2,2,2],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,1,0],[0,2,1,1]],[[1,1,2,1],[2,4,2,1],[2,3,1,0],[0,2,1,1]],[[1,1,2,1],[3,3,2,1],[2,3,1,0],[0,2,1,1]],[[2,1,2,1],[2,3,2,1],[2,3,1,0],[0,2,1,1]],[[1,1,2,1],[2,3,2,1],[2,3,0,2],[2,2,0,0]],[[1,1,2,1],[2,3,2,1],[3,3,0,2],[1,2,0,0]],[[1,1,2,1],[2,4,2,1],[2,3,0,2],[1,2,0,0]],[[1,1,2,1],[3,3,2,1],[2,3,0,2],[1,2,0,0]],[[2,1,2,1],[2,3,2,1],[2,3,0,2],[1,2,0,0]],[[1,1,2,1],[2,3,2,1],[2,3,0,2],[2,1,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,0,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[2,3,0,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[2,3,0,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[2,3,0,2],[1,1,1,0]],[[1,1,2,1],[2,3,2,1],[2,3,0,2],[2,1,0,1]],[[1,1,2,1],[2,3,2,1],[3,3,0,2],[1,1,0,1]],[[1,1,2,1],[2,4,2,1],[2,3,0,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,1],[2,3,0,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,1],[2,3,0,2],[1,1,0,1]],[[2,1,2,1],[2,2,2,0],[2,3,0,1],[1,2,2,1]],[[1,1,2,1],[3,2,2,0],[2,3,0,1],[1,2,2,1]],[[1,1,2,1],[2,2,2,0],[3,3,0,1],[1,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,3,0,1],[2,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,3,0,1],[1,3,2,1]],[[2,1,2,1],[2,2,2,0],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[3,2,2,0],[2,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,2,2,0],[3,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,4,0,2],[0,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,3,0,3],[0,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,3,0,2],[0,3,2,1]],[[1,1,2,1],[2,2,2,0],[2,3,0,2],[0,2,3,1]],[[1,1,2,1],[2,2,2,0],[2,3,0,2],[0,2,2,2]],[[2,1,2,1],[2,2,2,0],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[3,2,2,0],[2,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,2,2,0],[3,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,2,2,0],[2,4,0,2],[1,1,2,1]],[[1,1,2,1],[2,2,2,0],[2,3,0,2],[2,1,2,1]],[[2,1,2,1],[2,2,2,0],[2,3,0,2],[1,2,2,0]],[[1,1,2,1],[3,2,2,0],[2,3,0,2],[1,2,2,0]],[[1,1,2,1],[2,2,2,0],[3,3,0,2],[1,2,2,0]],[[1,1,2,1],[2,2,2,0],[2,3,0,2],[2,2,2,0]],[[1,1,2,1],[2,2,2,0],[2,3,0,2],[1,3,2,0]],[[2,1,2,1],[2,2,2,0],[2,3,1,1],[0,2,2,1]],[[1,1,2,1],[3,2,2,0],[2,3,1,1],[0,2,2,1]],[[1,1,2,1],[2,2,2,0],[3,3,1,1],[0,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,4,1,1],[0,2,2,1]],[[1,1,2,1],[2,2,2,0],[2,3,1,1],[0,3,2,1]],[[1,1,2,1],[2,2,2,0],[2,3,1,1],[0,2,3,1]],[[1,1,2,1],[2,2,2,0],[2,3,1,1],[0,2,2,2]],[[2,1,2,1],[2,2,2,0],[2,3,1,1],[1,1,2,1]],[[1,1,2,1],[3,2,2,0],[2,3,1,1],[1,1,2,1]],[[1,1,2,1],[2,2,2,0],[3,3,1,1],[1,1,2,1]],[[1,1,2,1],[2,2,2,0],[2,4,1,1],[1,1,2,1]],[[1,1,2,1],[2,2,2,0],[2,3,1,1],[2,1,2,1]],[[2,1,2,1],[2,2,2,0],[2,3,1,2],[0,2,2,0]],[[1,1,2,1],[3,2,2,0],[2,3,1,2],[0,2,2,0]],[[1,1,2,1],[2,2,2,0],[3,3,1,2],[0,2,2,0]],[[1,1,2,1],[2,2,2,0],[2,4,1,2],[0,2,2,0]],[[1,1,2,1],[2,2,2,0],[2,3,1,2],[0,3,2,0]],[[1,1,2,1],[2,2,2,0],[2,3,1,2],[0,2,3,0]],[[2,1,2,1],[2,2,2,0],[2,3,1,2],[1,1,2,0]],[[1,1,2,1],[3,2,2,0],[2,3,1,2],[1,1,2,0]],[[1,1,2,1],[2,2,2,0],[3,3,1,2],[1,1,2,0]],[[1,1,2,1],[2,2,2,0],[2,4,1,2],[1,1,2,0]],[[1,1,2,1],[2,2,2,0],[2,3,1,2],[2,1,2,0]],[[2,1,2,1],[2,2,2,0],[2,3,2,1],[0,1,2,1]],[[1,1,2,1],[3,2,2,0],[2,3,2,1],[0,1,2,1]],[[1,1,2,1],[2,2,2,0],[3,3,2,1],[0,1,2,1]],[[1,1,2,1],[2,2,2,0],[2,4,2,1],[0,1,2,1]],[[2,1,2,1],[2,2,2,0],[2,3,2,1],[0,2,1,1]],[[1,1,2,1],[3,2,2,0],[2,3,2,1],[0,2,1,1]],[[1,1,2,1],[2,2,2,0],[3,3,2,1],[0,2,1,1]],[[1,1,2,1],[2,2,2,0],[2,4,2,1],[0,2,1,1]],[[1,1,2,1],[2,2,2,0],[2,3,2,1],[0,3,1,1]],[[2,1,2,1],[2,2,2,0],[2,3,2,1],[1,0,2,1]],[[1,1,2,1],[3,2,2,0],[2,3,2,1],[1,0,2,1]],[[1,1,2,1],[2,2,2,0],[3,3,2,1],[1,0,2,1]],[[1,1,2,1],[2,2,2,0],[2,4,2,1],[1,0,2,1]],[[1,1,2,1],[2,2,2,0],[2,3,2,1],[2,0,2,1]],[[2,1,2,1],[2,2,2,0],[2,3,2,1],[1,1,1,1]],[[1,1,2,1],[3,2,2,0],[2,3,2,1],[1,1,1,1]],[[1,1,2,1],[2,2,2,0],[3,3,2,1],[1,1,1,1]],[[1,1,2,1],[2,2,2,0],[2,4,2,1],[1,1,1,1]],[[1,1,2,1],[2,2,2,0],[2,3,2,1],[2,1,1,1]],[[2,1,2,1],[2,2,2,0],[2,3,2,1],[1,2,0,1]],[[1,1,2,1],[3,2,2,0],[2,3,2,1],[1,2,0,1]],[[1,1,2,1],[2,2,2,0],[3,3,2,1],[1,2,0,1]],[[1,1,2,1],[2,2,2,0],[2,4,2,1],[1,2,0,1]],[[1,1,2,1],[2,2,2,0],[2,3,2,1],[2,2,0,1]],[[2,1,2,1],[2,2,2,0],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[3,2,2,0],[2,3,2,2],[0,1,1,1]],[[1,1,2,1],[2,2,2,0],[3,3,2,2],[0,1,1,1]],[[1,1,2,1],[2,2,2,0],[2,4,2,2],[0,1,1,1]],[[2,1,2,1],[2,2,2,0],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[3,2,2,0],[2,3,2,2],[0,1,2,0]],[[1,1,2,1],[2,2,2,0],[3,3,2,2],[0,1,2,0]],[[1,1,2,1],[2,2,2,0],[2,4,2,2],[0,1,2,0]],[[2,1,2,1],[2,2,2,0],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[3,2,2,0],[2,3,2,2],[0,2,0,1]],[[1,1,2,1],[2,2,2,0],[3,3,2,2],[0,2,0,1]],[[1,1,2,1],[2,2,2,0],[2,4,2,2],[0,2,0,1]],[[1,1,2,1],[2,2,2,0],[2,3,2,2],[0,3,0,1]],[[2,1,2,1],[2,2,2,0],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[3,2,2,0],[2,3,2,2],[0,2,1,0]],[[1,1,2,1],[2,2,2,0],[3,3,2,2],[0,2,1,0]],[[1,1,2,1],[2,2,2,0],[2,4,2,2],[0,2,1,0]],[[1,1,2,1],[2,2,2,0],[2,3,2,2],[0,3,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,0,2],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,3,0,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,3,0,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,3,0,2],[0,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,0,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,3,0,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,3,0,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,3,0,2],[0,2,0,1]],[[2,1,2,1],[2,2,2,0],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[3,2,2,0],[2,3,2,2],[1,0,1,1]],[[1,1,2,1],[2,2,2,0],[3,3,2,2],[1,0,1,1]],[[1,1,2,1],[2,2,2,0],[2,4,2,2],[1,0,1,1]],[[1,1,2,1],[2,2,2,0],[2,3,2,2],[2,0,1,1]],[[2,1,2,1],[2,2,2,0],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[3,2,2,0],[2,3,2,2],[1,0,2,0]],[[1,1,2,1],[2,2,2,0],[3,3,2,2],[1,0,2,0]],[[1,1,2,1],[2,2,2,0],[2,4,2,2],[1,0,2,0]],[[1,1,2,1],[2,2,2,0],[2,3,2,2],[2,0,2,0]],[[2,1,2,1],[2,2,2,0],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[3,2,2,0],[2,3,2,2],[1,1,0,1]],[[1,1,2,1],[2,2,2,0],[3,3,2,2],[1,1,0,1]],[[1,1,2,1],[2,2,2,0],[2,4,2,2],[1,1,0,1]],[[1,1,2,1],[2,2,2,0],[2,3,2,2],[2,1,0,1]],[[2,1,2,1],[2,2,2,0],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[3,2,2,0],[2,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,2,2,0],[3,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,2,2,0],[2,4,2,2],[1,1,1,0]],[[1,1,2,1],[2,2,2,0],[2,3,2,2],[2,1,1,0]],[[2,1,2,1],[2,2,2,0],[2,3,2,2],[1,2,0,0]],[[1,1,2,1],[3,2,2,0],[2,3,2,2],[1,2,0,0]],[[1,1,2,1],[2,2,2,0],[3,3,2,2],[1,2,0,0]],[[1,1,2,1],[2,2,2,0],[2,4,2,2],[1,2,0,0]],[[1,1,2,1],[2,2,2,0],[2,3,2,2],[2,2,0,0]],[[1,1,2,1],[2,3,2,1],[2,3,0,1],[2,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,3,0,1],[1,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,3,0,1],[1,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,3,0,1],[1,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,3,0,1],[1,2,1,0]],[[1,1,2,1],[2,3,2,1],[2,3,0,1],[2,1,2,0]],[[1,1,2,1],[2,3,2,1],[3,3,0,1],[1,1,2,0]],[[1,1,2,1],[2,4,2,1],[2,3,0,1],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[2,3,0,1],[1,1,2,0]],[[2,1,2,1],[2,3,2,1],[2,3,0,1],[1,1,2,0]],[[1,1,2,1],[2,3,2,1],[3,3,0,1],[0,2,2,0]],[[1,1,2,1],[2,4,2,1],[2,3,0,1],[0,2,2,0]],[[1,1,2,1],[3,3,2,1],[2,3,0,1],[0,2,2,0]],[[2,1,2,1],[2,3,2,1],[2,3,0,1],[0,2,2,0]],[[1,1,2,1],[2,3,2,1],[2,3,0,0],[2,2,2,0]],[[1,1,2,1],[2,3,2,1],[3,3,0,0],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[2,3,0,0],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[2,3,0,0],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[2,3,0,0],[1,2,2,0]],[[1,1,2,1],[2,3,2,1],[2,3,0,0],[2,2,1,1]],[[1,1,2,1],[2,3,2,1],[3,3,0,0],[1,2,1,1]],[[1,1,2,1],[2,4,2,1],[2,3,0,0],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[2,3,0,0],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[2,3,0,0],[1,2,1,1]],[[1,1,2,1],[2,3,2,1],[2,3,0,0],[2,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,3,0,0],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[2,3,0,0],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[2,3,0,0],[1,1,2,1]],[[2,1,2,1],[2,3,2,1],[2,3,0,0],[1,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,3,0,0],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[2,3,0,0],[0,2,2,1]],[[1,1,2,1],[3,3,2,1],[2,3,0,0],[0,2,2,1]],[[2,1,2,1],[2,3,2,1],[2,3,0,0],[0,2,2,1]],[[2,1,2,1],[2,2,2,0],[2,3,3,2],[0,2,0,0]],[[1,1,2,1],[3,2,2,0],[2,3,3,2],[0,2,0,0]],[[1,1,2,1],[2,2,2,0],[3,3,3,2],[0,2,0,0]],[[1,1,2,1],[2,2,2,0],[2,4,3,2],[0,2,0,0]],[[1,1,2,1],[2,3,2,1],[2,2,3,1],[2,1,0,0]],[[1,1,2,1],[2,3,2,1],[3,2,3,1],[1,1,0,0]],[[1,1,2,1],[2,4,2,1],[2,2,3,1],[1,1,0,0]],[[1,1,2,1],[3,3,2,1],[2,2,3,1],[1,1,0,0]],[[2,1,2,1],[2,3,2,1],[2,2,3,1],[1,1,0,0]],[[2,1,2,1],[2,2,2,0],[2,3,3,2],[1,1,0,0]],[[1,1,2,1],[3,2,2,0],[2,3,3,2],[1,1,0,0]],[[1,1,2,1],[2,2,2,0],[3,3,3,2],[1,1,0,0]],[[1,1,2,1],[2,2,2,0],[2,4,3,2],[1,1,0,0]],[[1,1,2,1],[2,2,2,0],[2,3,3,2],[2,1,0,0]],[[1,1,2,1],[2,3,2,1],[3,2,3,1],[0,2,0,0]],[[1,1,2,1],[2,4,2,1],[2,2,3,1],[0,2,0,0]],[[1,1,2,1],[3,3,2,1],[2,2,3,1],[0,2,0,0]],[[2,1,2,1],[2,3,2,1],[2,2,3,1],[0,2,0,0]],[[1,1,2,1],[2,3,2,1],[2,2,3,0],[2,2,0,0]],[[1,1,2,1],[2,3,2,1],[3,2,3,0],[1,2,0,0]],[[1,1,2,1],[2,4,2,1],[2,2,3,0],[1,2,0,0]],[[1,1,2,1],[3,3,2,1],[2,2,3,0],[1,2,0,0]],[[2,1,2,1],[2,3,2,1],[2,2,3,0],[1,2,0,0]],[[1,1,2,1],[2,3,2,1],[2,2,3,0],[2,1,1,0]],[[1,1,2,1],[2,3,2,1],[3,2,3,0],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[2,2,3,0],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[2,2,3,0],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[2,2,3,0],[1,1,1,0]],[[1,1,2,1],[2,3,2,1],[2,2,3,0],[2,0,2,0]],[[1,1,2,1],[2,3,2,1],[3,2,3,0],[1,0,2,0]],[[1,1,2,1],[2,4,2,1],[2,2,3,0],[1,0,2,0]],[[1,1,2,1],[3,3,2,1],[2,2,3,0],[1,0,2,0]],[[2,1,2,1],[2,3,2,1],[2,2,3,0],[1,0,2,0]],[[1,1,2,1],[2,3,2,1],[3,2,3,0],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,2,3,0],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,2,3,0],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,2,3,0],[0,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,2,3,0],[0,1,2,0]],[[1,1,2,1],[2,4,2,1],[2,2,3,0],[0,1,2,0]],[[1,1,2,1],[3,3,2,1],[2,2,3,0],[0,1,2,0]],[[2,1,2,1],[2,3,2,1],[2,2,3,0],[0,1,2,0]],[[1,1,2,1],[2,2,2,1],[1,4,0,1],[1,2,2,1]],[[1,1,2,1],[2,2,2,1],[1,3,0,1],[2,2,2,1]],[[1,1,2,1],[2,2,2,1],[1,3,0,1],[1,3,2,1]],[[1,1,2,1],[2,2,2,1],[1,3,0,1],[1,2,3,1]],[[1,1,2,1],[2,2,2,1],[1,3,0,1],[1,2,2,2]],[[1,1,2,1],[2,2,2,1],[1,4,0,2],[1,2,1,1]],[[1,1,2,1],[2,2,2,1],[1,3,0,2],[2,2,1,1]],[[1,1,2,1],[2,2,2,1],[1,3,0,2],[1,3,1,1]],[[1,1,2,1],[2,2,2,1],[1,4,0,2],[1,2,2,0]],[[1,1,2,1],[2,2,2,1],[1,3,0,2],[2,2,2,0]],[[1,1,2,1],[2,2,2,1],[1,3,0,2],[1,3,2,0]],[[1,1,2,1],[2,2,2,1],[1,3,0,2],[1,2,3,0]],[[1,1,2,1],[2,2,2,1],[1,4,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,2,1],[1,3,1,0],[2,2,2,1]],[[1,1,2,1],[2,2,2,1],[1,3,1,0],[1,3,2,1]],[[1,1,2,1],[2,2,2,1],[1,3,1,0],[1,2,3,1]],[[1,1,2,1],[2,2,2,1],[1,3,1,0],[1,2,2,2]],[[1,1,2,1],[2,2,2,1],[1,4,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,2,1],[1,3,1,1],[2,2,2,0]],[[1,1,2,1],[2,2,2,1],[1,3,1,1],[1,3,2,0]],[[1,1,2,1],[2,2,2,1],[1,3,1,1],[1,2,3,0]],[[1,1,2,1],[2,2,2,1],[1,4,1,2],[1,2,0,1]],[[1,1,2,1],[2,2,2,1],[1,3,1,2],[2,2,0,1]],[[1,1,2,1],[2,2,2,1],[1,3,1,2],[1,3,0,1]],[[1,1,2,1],[2,2,2,1],[1,4,1,2],[1,2,1,0]],[[1,1,2,1],[2,2,2,1],[1,3,1,2],[2,2,1,0]],[[1,1,2,1],[2,2,2,1],[1,3,1,2],[1,3,1,0]],[[1,1,2,1],[2,2,2,1],[1,4,2,0],[1,2,1,1]],[[1,1,2,1],[2,2,2,1],[1,3,2,0],[2,2,1,1]],[[1,1,2,1],[2,2,2,1],[1,3,2,0],[1,3,1,1]],[[1,1,2,1],[2,2,2,1],[1,4,2,1],[1,2,0,1]],[[1,1,2,1],[2,2,2,1],[1,3,2,1],[2,2,0,1]],[[1,1,2,1],[2,2,2,1],[1,3,2,1],[1,3,0,1]],[[1,1,2,1],[2,2,2,1],[1,4,2,1],[1,2,1,0]],[[1,1,2,1],[2,2,2,1],[1,3,2,1],[2,2,1,0]],[[1,1,2,1],[2,2,2,1],[1,3,2,1],[1,3,1,0]],[[1,1,2,1],[2,2,2,1],[1,4,3,0],[1,2,1,0]],[[1,1,2,1],[2,2,2,1],[1,3,3,0],[2,2,1,0]],[[1,1,2,1],[2,2,2,1],[1,3,3,0],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[2,2,2,1],[2,2,0,0]],[[1,1,2,1],[2,3,2,1],[3,2,2,1],[1,2,0,0]],[[1,1,2,1],[2,4,2,1],[2,2,2,1],[1,2,0,0]],[[1,1,2,1],[3,3,2,1],[2,2,2,1],[1,2,0,0]],[[2,1,2,1],[2,3,2,1],[2,2,2,1],[1,2,0,0]],[[1,1,2,1],[2,3,2,1],[2,2,2,1],[2,1,1,0]],[[1,1,2,1],[2,3,2,1],[3,2,2,1],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[2,2,2,1],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[2,2,2,1],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[2,2,2,1],[1,1,1,0]],[[1,1,2,1],[2,3,2,1],[2,2,2,1],[2,1,0,1]],[[1,1,2,1],[2,3,2,1],[3,2,2,1],[1,1,0,1]],[[1,1,2,1],[2,4,2,1],[2,2,2,1],[1,1,0,1]],[[1,1,2,1],[3,3,2,1],[2,2,2,1],[1,1,0,1]],[[2,1,2,1],[2,3,2,1],[2,2,2,1],[1,1,0,1]],[[1,1,2,1],[2,3,2,1],[2,2,2,1],[2,0,2,0]],[[1,1,2,1],[2,3,2,1],[3,2,2,1],[1,0,2,0]],[[1,1,2,1],[2,4,2,1],[2,2,2,1],[1,0,2,0]],[[1,1,2,1],[3,3,2,1],[2,2,2,1],[1,0,2,0]],[[2,1,2,1],[2,3,2,1],[2,2,2,1],[1,0,2,0]],[[1,1,2,1],[2,3,2,1],[2,2,2,1],[2,0,1,1]],[[1,1,2,1],[2,3,2,1],[3,2,2,1],[1,0,1,1]],[[1,1,2,1],[2,4,2,1],[2,2,2,1],[1,0,1,1]],[[1,1,2,1],[3,3,2,1],[2,2,2,1],[1,0,1,1]],[[2,1,2,1],[2,3,2,1],[2,2,2,1],[1,0,1,1]],[[1,1,2,1],[2,3,2,1],[3,2,2,1],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,2,2,1],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,2,2,1],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,2,2,1],[0,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,2,2,1],[0,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,2,2,1],[0,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,2,2,1],[0,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,2,2,1],[0,2,0,1]],[[1,1,2,1],[2,3,2,1],[3,2,2,1],[0,1,2,0]],[[1,1,2,1],[2,4,2,1],[2,2,2,1],[0,1,2,0]],[[1,1,2,1],[3,3,2,1],[2,2,2,1],[0,1,2,0]],[[2,1,2,1],[2,3,2,1],[2,2,2,1],[0,1,2,0]],[[1,1,2,1],[2,3,2,1],[3,2,2,1],[0,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,2,2,1],[0,1,1,1]],[[1,1,2,1],[3,3,2,1],[2,2,2,1],[0,1,1,1]],[[2,1,2,1],[2,3,2,1],[2,2,2,1],[0,1,1,1]],[[1,1,2,1],[2,3,2,1],[2,2,2,0],[2,2,0,1]],[[1,1,2,1],[2,3,2,1],[3,2,2,0],[1,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,2,2,0],[1,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,2,2,0],[1,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,2,2,0],[1,2,0,1]],[[2,1,2,1],[2,2,2,1],[2,2,0,1],[1,2,2,1]],[[1,1,2,1],[3,2,2,1],[2,2,0,1],[1,2,2,1]],[[1,1,2,1],[2,2,2,1],[3,2,0,1],[1,2,2,1]],[[1,1,2,1],[2,2,2,1],[2,2,0,1],[2,2,2,1]],[[1,1,2,1],[2,2,2,1],[2,2,0,1],[1,3,2,1]],[[1,1,2,1],[2,2,2,1],[2,2,0,1],[1,2,3,1]],[[1,1,2,1],[2,2,2,1],[2,2,0,1],[1,2,2,2]],[[2,1,2,1],[2,2,2,1],[2,2,0,2],[1,2,1,1]],[[1,1,2,1],[3,2,2,1],[2,2,0,2],[1,2,1,1]],[[1,1,2,1],[2,2,2,1],[3,2,0,2],[1,2,1,1]],[[1,1,2,1],[2,2,2,1],[2,2,0,2],[2,2,1,1]],[[1,1,2,1],[2,2,2,1],[2,2,0,2],[1,3,1,1]],[[2,1,2,1],[2,2,2,1],[2,2,0,2],[1,2,2,0]],[[1,1,2,1],[3,2,2,1],[2,2,0,2],[1,2,2,0]],[[1,1,2,1],[2,2,2,1],[3,2,0,2],[1,2,2,0]],[[1,1,2,1],[2,2,2,1],[2,2,0,2],[2,2,2,0]],[[1,1,2,1],[2,2,2,1],[2,2,0,2],[1,3,2,0]],[[1,1,2,1],[2,2,2,1],[2,2,0,2],[1,2,3,0]],[[2,1,2,1],[2,2,2,1],[2,2,1,0],[1,2,2,1]],[[1,1,2,1],[3,2,2,1],[2,2,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,2,1],[3,2,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,2,1],[2,2,1,0],[2,2,2,1]],[[1,1,2,1],[2,2,2,1],[2,2,1,0],[1,3,2,1]],[[1,1,2,1],[2,2,2,1],[2,2,1,0],[1,2,3,1]],[[1,1,2,1],[2,2,2,1],[2,2,1,0],[1,2,2,2]],[[2,1,2,1],[2,2,2,1],[2,2,1,1],[1,2,2,0]],[[1,1,2,1],[3,2,2,1],[2,2,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,2,1],[3,2,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,2,1],[2,2,1,1],[2,2,2,0]],[[1,1,2,1],[2,2,2,1],[2,2,1,1],[1,3,2,0]],[[1,1,2,1],[2,2,2,1],[2,2,1,1],[1,2,3,0]],[[2,1,2,1],[2,2,2,1],[2,2,1,2],[1,2,0,1]],[[1,1,2,1],[3,2,2,1],[2,2,1,2],[1,2,0,1]],[[1,1,2,1],[2,2,2,1],[3,2,1,2],[1,2,0,1]],[[1,1,2,1],[2,2,2,1],[2,2,1,2],[2,2,0,1]],[[1,1,2,1],[2,2,2,1],[2,2,1,2],[1,3,0,1]],[[2,1,2,1],[2,2,2,1],[2,2,1,2],[1,2,1,0]],[[1,1,2,1],[3,2,2,1],[2,2,1,2],[1,2,1,0]],[[1,1,2,1],[2,2,2,1],[3,2,1,2],[1,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,2,1,2],[2,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,2,1,2],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[2,2,2,0],[2,1,1,1]],[[1,1,2,1],[2,3,2,1],[3,2,2,0],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,2,2,0],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[2,2,2,0],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[2,2,2,0],[1,1,1,1]],[[2,1,2,1],[2,2,2,1],[2,2,2,0],[1,2,1,1]],[[1,1,2,1],[3,2,2,1],[2,2,2,0],[1,2,1,1]],[[1,1,2,1],[2,2,2,1],[3,2,2,0],[1,2,1,1]],[[1,1,2,1],[2,2,2,1],[2,2,2,0],[2,2,1,1]],[[1,1,2,1],[2,2,2,1],[2,2,2,0],[1,3,1,1]],[[2,1,2,1],[2,2,2,1],[2,2,2,1],[1,2,0,1]],[[1,1,2,1],[3,2,2,1],[2,2,2,1],[1,2,0,1]],[[1,1,2,1],[2,2,2,1],[3,2,2,1],[1,2,0,1]],[[1,1,2,1],[2,2,2,1],[2,2,2,1],[2,2,0,1]],[[1,1,2,1],[2,2,2,1],[2,2,2,1],[1,3,0,1]],[[2,1,2,1],[2,2,2,1],[2,2,2,1],[1,2,1,0]],[[1,1,2,1],[3,2,2,1],[2,2,2,1],[1,2,1,0]],[[1,1,2,1],[2,2,2,1],[3,2,2,1],[1,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,2,2,1],[2,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,2,2,1],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[2,2,2,0],[2,0,2,1]],[[1,1,2,1],[2,3,2,1],[3,2,2,0],[1,0,2,1]],[[1,1,2,1],[2,4,2,1],[2,2,2,0],[1,0,2,1]],[[1,1,2,1],[3,3,2,1],[2,2,2,0],[1,0,2,1]],[[2,1,2,1],[2,3,2,1],[2,2,2,0],[1,0,2,1]],[[1,1,2,1],[2,3,2,1],[3,2,2,0],[0,2,1,1]],[[1,1,2,1],[2,4,2,1],[2,2,2,0],[0,2,1,1]],[[1,1,2,1],[3,3,2,1],[2,2,2,0],[0,2,1,1]],[[2,1,2,1],[2,3,2,1],[2,2,2,0],[0,2,1,1]],[[1,1,2,1],[2,3,2,1],[3,2,2,0],[0,1,2,1]],[[1,1,2,1],[2,4,2,1],[2,2,2,0],[0,1,2,1]],[[1,1,2,1],[3,3,2,1],[2,2,2,0],[0,1,2,1]],[[2,1,2,1],[2,3,2,1],[2,2,2,0],[0,1,2,1]],[[1,1,2,1],[2,3,2,1],[2,2,1,2],[2,2,0,0]],[[2,1,2,1],[2,2,2,1],[2,2,3,0],[1,2,1,0]],[[1,1,2,1],[3,2,2,1],[2,2,3,0],[1,2,1,0]],[[1,1,2,1],[2,2,2,1],[3,2,3,0],[1,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,2,3,0],[2,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,2,3,0],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[3,2,1,2],[1,2,0,0]],[[1,1,2,1],[2,4,2,1],[2,2,1,2],[1,2,0,0]],[[1,1,2,1],[3,3,2,1],[2,2,1,2],[1,2,0,0]],[[2,1,2,1],[2,3,2,1],[2,2,1,2],[1,2,0,0]],[[1,1,2,1],[2,3,2,1],[2,2,1,2],[2,1,1,0]],[[1,1,2,1],[2,3,2,1],[3,2,1,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[2,2,1,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[2,2,1,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[2,2,1,2],[1,1,1,0]],[[1,1,2,1],[2,3,2,1],[2,2,1,2],[2,1,0,1]],[[1,1,2,1],[2,3,2,1],[3,2,1,2],[1,1,0,1]],[[1,1,2,1],[2,4,2,1],[2,2,1,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,1],[2,2,1,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,1],[2,2,1,2],[1,1,0,1]],[[1,1,2,1],[2,3,2,1],[2,2,1,2],[2,0,2,0]],[[1,1,2,1],[2,3,2,1],[3,2,1,2],[1,0,2,0]],[[1,1,2,1],[2,4,2,1],[2,2,1,2],[1,0,2,0]],[[1,1,2,1],[3,3,2,1],[2,2,1,2],[1,0,2,0]],[[2,1,2,1],[2,3,2,1],[2,2,1,2],[1,0,2,0]],[[1,1,2,1],[2,3,2,1],[2,2,1,2],[2,0,1,1]],[[1,1,2,1],[2,3,2,1],[3,2,1,2],[1,0,1,1]],[[1,1,2,1],[2,4,2,1],[2,2,1,2],[1,0,1,1]],[[1,1,2,1],[3,3,2,1],[2,2,1,2],[1,0,1,1]],[[2,1,2,1],[2,3,2,1],[2,2,1,2],[1,0,1,1]],[[1,1,2,1],[2,3,2,1],[3,2,1,2],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,2,1,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,2,1,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,2,1,2],[0,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,2,1,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,2,1,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,2,1,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,2,1,2],[0,2,0,1]],[[1,1,2,1],[2,3,2,1],[3,2,1,2],[0,1,2,0]],[[1,1,2,1],[2,4,2,1],[2,2,1,2],[0,1,2,0]],[[1,1,2,1],[3,3,2,1],[2,2,1,2],[0,1,2,0]],[[2,1,2,1],[2,3,2,1],[2,2,1,2],[0,1,2,0]],[[1,1,2,1],[2,3,2,1],[3,2,1,2],[0,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,2,1,2],[0,1,1,1]],[[1,1,2,1],[3,3,2,1],[2,2,1,2],[0,1,1,1]],[[2,1,2,1],[2,3,2,1],[2,2,1,2],[0,1,1,1]],[[2,1,2,1],[2,2,2,1],[2,3,0,0],[1,2,2,1]],[[1,1,2,1],[3,2,2,1],[2,3,0,0],[1,2,2,1]],[[1,1,2,1],[2,2,2,1],[3,3,0,0],[1,2,2,1]],[[1,1,2,1],[2,2,2,1],[2,3,0,0],[2,2,2,1]],[[1,1,2,1],[2,2,2,1],[2,3,0,0],[1,3,2,1]],[[2,1,2,1],[2,2,2,1],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[3,2,2,1],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[2,2,2,1],[3,3,0,1],[0,2,2,1]],[[1,1,2,1],[2,2,2,1],[2,4,0,1],[0,2,2,1]],[[1,1,2,1],[2,2,2,1],[2,3,0,1],[0,3,2,1]],[[1,1,2,1],[2,2,2,1],[2,3,0,1],[0,2,3,1]],[[1,1,2,1],[2,2,2,1],[2,3,0,1],[0,2,2,2]],[[2,1,2,1],[2,2,2,1],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[3,2,2,1],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[2,2,2,1],[3,3,0,1],[1,1,2,1]],[[1,1,2,1],[2,2,2,1],[2,4,0,1],[1,1,2,1]],[[1,1,2,1],[2,2,2,1],[2,3,0,1],[2,1,2,1]],[[2,1,2,1],[2,2,2,1],[2,3,0,1],[1,2,2,0]],[[1,1,2,1],[3,2,2,1],[2,3,0,1],[1,2,2,0]],[[1,1,2,1],[2,2,2,1],[3,3,0,1],[1,2,2,0]],[[1,1,2,1],[2,2,2,1],[2,3,0,1],[2,2,2,0]],[[1,1,2,1],[2,2,2,1],[2,3,0,1],[1,3,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,0,2],[0,1,2,1]],[[1,1,2,1],[3,2,2,1],[2,3,0,2],[0,1,2,1]],[[1,1,2,1],[2,2,2,1],[3,3,0,2],[0,1,2,1]],[[1,1,2,1],[2,2,2,1],[2,4,0,2],[0,1,2,1]],[[2,1,2,1],[2,2,2,1],[2,3,0,2],[0,2,1,1]],[[1,1,2,1],[3,2,2,1],[2,3,0,2],[0,2,1,1]],[[1,1,2,1],[2,2,2,1],[3,3,0,2],[0,2,1,1]],[[1,1,2,1],[2,2,2,1],[2,4,0,2],[0,2,1,1]],[[1,1,2,1],[2,2,2,1],[2,3,0,2],[0,3,1,1]],[[2,1,2,1],[2,2,2,1],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[3,2,2,1],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[2,2,2,1],[3,3,0,2],[0,2,2,0]],[[1,1,2,1],[2,2,2,1],[2,4,0,2],[0,2,2,0]],[[1,1,2,1],[2,2,2,1],[2,3,0,2],[0,3,2,0]],[[1,1,2,1],[2,2,2,1],[2,3,0,2],[0,2,3,0]],[[2,1,2,1],[2,2,2,1],[2,3,0,2],[1,0,2,1]],[[1,1,2,1],[3,2,2,1],[2,3,0,2],[1,0,2,1]],[[1,1,2,1],[2,2,2,1],[3,3,0,2],[1,0,2,1]],[[1,1,2,1],[2,2,2,1],[2,4,0,2],[1,0,2,1]],[[1,1,2,1],[2,2,2,1],[2,3,0,2],[2,0,2,1]],[[2,1,2,1],[2,2,2,1],[2,3,0,2],[1,1,1,1]],[[1,1,2,1],[3,2,2,1],[2,3,0,2],[1,1,1,1]],[[1,1,2,1],[2,2,2,1],[3,3,0,2],[1,1,1,1]],[[1,1,2,1],[2,2,2,1],[2,4,0,2],[1,1,1,1]],[[1,1,2,1],[2,2,2,1],[2,3,0,2],[2,1,1,1]],[[2,1,2,1],[2,2,2,1],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[3,2,2,1],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[2,2,2,1],[3,3,0,2],[1,1,2,0]],[[1,1,2,1],[2,2,2,1],[2,4,0,2],[1,1,2,0]],[[1,1,2,1],[2,2,2,1],[2,3,0,2],[2,1,2,0]],[[1,1,2,1],[2,3,2,1],[2,2,1,1],[2,1,2,0]],[[1,1,2,1],[2,3,2,1],[3,2,1,1],[1,1,2,0]],[[1,1,2,1],[2,4,2,1],[2,2,1,1],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[2,2,1,1],[1,1,2,0]],[[2,1,2,1],[2,3,2,1],[2,2,1,1],[1,1,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[3,2,2,1],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,2,2,1],[3,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,2,2,1],[2,4,1,0],[0,2,2,1]],[[1,1,2,1],[2,2,2,1],[2,3,1,0],[0,3,2,1]],[[1,1,2,1],[2,2,2,1],[2,3,1,0],[0,2,3,1]],[[1,1,2,1],[2,2,2,1],[2,3,1,0],[0,2,2,2]],[[2,1,2,1],[2,2,2,1],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[3,2,2,1],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[2,2,2,1],[3,3,1,0],[1,1,2,1]],[[1,1,2,1],[2,2,2,1],[2,4,1,0],[1,1,2,1]],[[1,1,2,1],[2,2,2,1],[2,3,1,0],[2,1,2,1]],[[2,1,2,1],[2,2,2,1],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[3,2,2,1],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[2,2,2,1],[3,3,1,1],[0,2,2,0]],[[1,1,2,1],[2,2,2,1],[2,4,1,1],[0,2,2,0]],[[1,1,2,1],[2,2,2,1],[2,3,1,1],[0,3,2,0]],[[1,1,2,1],[2,2,2,1],[2,3,1,1],[0,2,3,0]],[[2,1,2,1],[2,2,2,1],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[3,2,2,1],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[2,2,2,1],[3,3,1,1],[1,1,2,0]],[[1,1,2,1],[2,2,2,1],[2,4,1,1],[1,1,2,0]],[[1,1,2,1],[2,2,2,1],[2,3,1,1],[2,1,2,0]],[[1,1,2,1],[2,3,2,1],[3,2,1,1],[0,2,2,0]],[[1,1,2,1],[2,4,2,1],[2,2,1,1],[0,2,2,0]],[[1,1,2,1],[3,3,2,1],[2,2,1,1],[0,2,2,0]],[[2,1,2,1],[2,3,2,1],[2,2,1,1],[0,2,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,1,2],[0,1,1,1]],[[1,1,2,1],[3,2,2,1],[2,3,1,2],[0,1,1,1]],[[1,1,2,1],[2,2,2,1],[3,3,1,2],[0,1,1,1]],[[1,1,2,1],[2,2,2,1],[2,4,1,2],[0,1,1,1]],[[2,1,2,1],[2,2,2,1],[2,3,1,2],[0,1,2,0]],[[1,1,2,1],[3,2,2,1],[2,3,1,2],[0,1,2,0]],[[1,1,2,1],[2,2,2,1],[3,3,1,2],[0,1,2,0]],[[1,1,2,1],[2,2,2,1],[2,4,1,2],[0,1,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[3,2,2,1],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[2,2,2,1],[3,3,1,2],[0,2,0,1]],[[1,1,2,1],[2,2,2,1],[2,4,1,2],[0,2,0,1]],[[1,1,2,1],[2,2,2,1],[2,3,1,2],[0,3,0,1]],[[2,1,2,1],[2,2,2,1],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[3,2,2,1],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[2,2,2,1],[3,3,1,2],[0,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,4,1,2],[0,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,3,1,2],[0,3,1,0]],[[1,1,2,1],[2,3,2,1],[2,2,1,0],[2,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,2,1,0],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[2,2,1,0],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[2,2,1,0],[1,1,2,1]],[[2,1,2,1],[2,2,2,1],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[3,2,2,1],[2,3,1,2],[1,0,1,1]],[[1,1,2,1],[2,2,2,1],[3,3,1,2],[1,0,1,1]],[[1,1,2,1],[2,2,2,1],[2,4,1,2],[1,0,1,1]],[[1,1,2,1],[2,2,2,1],[2,3,1,2],[2,0,1,1]],[[2,1,2,1],[2,2,2,1],[2,3,1,2],[1,0,2,0]],[[1,1,2,1],[3,2,2,1],[2,3,1,2],[1,0,2,0]],[[1,1,2,1],[2,2,2,1],[3,3,1,2],[1,0,2,0]],[[1,1,2,1],[2,2,2,1],[2,4,1,2],[1,0,2,0]],[[1,1,2,1],[2,2,2,1],[2,3,1,2],[2,0,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[3,2,2,1],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[2,2,2,1],[3,3,1,2],[1,1,0,1]],[[1,1,2,1],[2,2,2,1],[2,4,1,2],[1,1,0,1]],[[1,1,2,1],[2,2,2,1],[2,3,1,2],[2,1,0,1]],[[2,1,2,1],[2,2,2,1],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[3,2,2,1],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[2,2,2,1],[3,3,1,2],[1,1,1,0]],[[1,1,2,1],[2,2,2,1],[2,4,1,2],[1,1,1,0]],[[1,1,2,1],[2,2,2,1],[2,3,1,2],[2,1,1,0]],[[2,1,2,1],[2,3,2,1],[2,2,1,0],[1,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,2,1,0],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[2,2,1,0],[0,2,2,1]],[[1,1,2,1],[3,3,2,1],[2,2,1,0],[0,2,2,1]],[[2,1,2,1],[2,3,2,1],[2,2,1,0],[0,2,2,1]],[[2,1,2,1],[2,2,2,1],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[3,2,2,1],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[2,2,2,1],[3,3,1,2],[1,2,0,0]],[[1,1,2,1],[2,2,2,1],[2,4,1,2],[1,2,0,0]],[[1,1,2,1],[2,2,2,1],[2,3,1,2],[2,2,0,0]],[[1,1,2,1],[2,3,2,1],[2,2,0,2],[2,1,2,0]],[[1,1,2,1],[2,3,2,1],[3,2,0,2],[1,1,2,0]],[[1,1,2,1],[2,4,2,1],[2,2,0,2],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[2,2,0,2],[1,1,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[3,2,2,1],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,2,2,1],[3,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,2,2,1],[2,4,2,0],[0,1,2,1]],[[2,1,2,1],[2,2,2,1],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[3,2,2,1],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,2,2,1],[3,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,2,2,1],[2,4,2,0],[0,2,1,1]],[[1,1,2,1],[2,2,2,1],[2,3,2,0],[0,3,1,1]],[[2,1,2,1],[2,2,2,1],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[3,2,2,1],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,2,2,1],[3,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,2,2,1],[2,4,2,0],[1,0,2,1]],[[1,1,2,1],[2,2,2,1],[2,3,2,0],[2,0,2,1]],[[2,1,2,1],[2,2,2,1],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[3,2,2,1],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[2,2,2,1],[3,3,2,0],[1,1,1,1]],[[1,1,2,1],[2,2,2,1],[2,4,2,0],[1,1,1,1]],[[1,1,2,1],[2,2,2,1],[2,3,2,0],[2,1,1,1]],[[2,1,2,1],[2,2,2,1],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[3,2,2,1],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[2,2,2,1],[3,3,2,0],[1,2,0,1]],[[1,1,2,1],[2,2,2,1],[2,4,2,0],[1,2,0,1]],[[1,1,2,1],[2,2,2,1],[2,3,2,0],[2,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,2,0,2],[1,1,2,0]],[[1,1,2,1],[2,3,2,1],[2,2,0,2],[2,1,1,1]],[[1,1,2,1],[2,3,2,1],[3,2,0,2],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,2,0,2],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[2,2,0,2],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[2,2,0,2],[1,1,1,1]],[[1,1,2,1],[2,3,2,1],[2,2,0,2],[2,0,2,1]],[[1,1,2,1],[2,3,2,1],[3,2,0,2],[1,0,2,1]],[[2,1,2,1],[2,2,2,1],[2,3,2,1],[0,1,1,1]],[[1,1,2,1],[3,2,2,1],[2,3,2,1],[0,1,1,1]],[[1,1,2,1],[2,2,2,1],[3,3,2,1],[0,1,1,1]],[[1,1,2,1],[2,2,2,1],[2,4,2,1],[0,1,1,1]],[[2,1,2,1],[2,2,2,1],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[3,2,2,1],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,2,2,1],[3,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,2,2,1],[2,4,2,1],[0,1,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[3,2,2,1],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,2,2,1],[3,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,2,2,1],[2,4,2,1],[0,2,0,1]],[[1,1,2,1],[2,2,2,1],[2,3,2,1],[0,3,0,1]],[[2,1,2,1],[2,2,2,1],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[3,2,2,1],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,2,2,1],[3,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,4,2,1],[0,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,3,2,1],[0,3,1,0]],[[1,1,2,1],[2,4,2,1],[2,2,0,2],[1,0,2,1]],[[1,1,2,1],[3,3,2,1],[2,2,0,2],[1,0,2,1]],[[2,1,2,1],[2,3,2,1],[2,2,0,2],[1,0,2,1]],[[2,1,2,1],[2,2,2,1],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[3,2,2,1],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,2,2,1],[3,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,2,2,1],[2,4,2,1],[1,0,1,1]],[[1,1,2,1],[2,2,2,1],[2,3,2,1],[2,0,1,1]],[[2,1,2,1],[2,2,2,1],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[3,2,2,1],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,2,2,1],[3,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,2,2,1],[2,4,2,1],[1,0,2,0]],[[1,1,2,1],[2,2,2,1],[2,3,2,1],[2,0,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[3,2,2,1],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,2,2,1],[3,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,2,2,1],[2,4,2,1],[1,1,0,1]],[[1,1,2,1],[2,2,2,1],[2,3,2,1],[2,1,0,1]],[[2,1,2,1],[2,2,2,1],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[3,2,2,1],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,2,2,1],[3,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,2,2,1],[2,4,2,1],[1,1,1,0]],[[1,1,2,1],[2,2,2,1],[2,3,2,1],[2,1,1,0]],[[1,1,2,1],[2,3,2,1],[3,2,0,2],[0,2,2,0]],[[1,1,2,1],[2,4,2,1],[2,2,0,2],[0,2,2,0]],[[1,1,2,1],[3,3,2,1],[2,2,0,2],[0,2,2,0]],[[2,1,2,1],[2,3,2,1],[2,2,0,2],[0,2,2,0]],[[1,1,2,1],[2,3,2,1],[3,2,0,2],[0,2,1,1]],[[2,1,2,1],[2,2,2,1],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[3,2,2,1],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[2,2,2,1],[3,3,2,1],[1,2,0,0]],[[1,1,2,1],[2,2,2,1],[2,4,2,1],[1,2,0,0]],[[1,1,2,1],[2,2,2,1],[2,3,2,1],[2,2,0,0]],[[1,1,2,1],[2,4,2,1],[2,2,0,2],[0,2,1,1]],[[1,1,2,1],[3,3,2,1],[2,2,0,2],[0,2,1,1]],[[2,1,2,1],[2,3,2,1],[2,2,0,2],[0,2,1,1]],[[1,1,2,1],[2,3,2,1],[3,2,0,2],[0,1,2,1]],[[1,1,2,1],[2,4,2,1],[2,2,0,2],[0,1,2,1]],[[1,1,2,1],[3,3,2,1],[2,2,0,2],[0,1,2,1]],[[2,1,2,1],[2,3,2,1],[2,2,0,2],[0,1,2,1]],[[1,1,2,1],[2,3,2,1],[2,2,0,1],[1,3,2,0]],[[1,1,2,1],[2,3,2,1],[2,2,0,1],[2,2,2,0]],[[1,1,2,1],[2,3,2,1],[3,2,0,1],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[2,2,0,1],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[2,2,0,1],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[2,2,0,1],[1,2,2,0]],[[1,1,2,1],[2,3,2,1],[2,2,0,1],[2,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,2,0,1],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[2,2,0,1],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[2,2,0,1],[1,1,2,1]],[[2,1,2,1],[2,3,2,1],[2,2,0,1],[1,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,2,0,1],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[2,2,0,1],[0,2,2,1]],[[1,1,2,1],[3,3,2,1],[2,2,0,1],[0,2,2,1]],[[2,1,2,1],[2,3,2,1],[2,2,0,1],[0,2,2,1]],[[1,1,2,1],[2,3,2,1],[2,2,0,0],[1,3,2,1]],[[1,1,2,1],[2,3,2,1],[2,2,0,0],[2,2,2,1]],[[1,1,2,1],[2,3,2,1],[3,2,0,0],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[2,2,0,0],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[2,2,0,0],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[2,2,0,0],[1,2,2,1]],[[1,1,2,1],[2,3,2,1],[3,1,3,2],[1,0,0,1]],[[1,1,2,1],[2,4,2,1],[2,1,3,2],[1,0,0,1]],[[1,1,2,1],[3,3,2,1],[2,1,3,2],[1,0,0,1]],[[2,1,2,1],[2,3,2,1],[2,1,3,2],[1,0,0,1]],[[1,1,2,1],[2,4,2,1],[2,1,3,2],[0,1,0,1]],[[1,1,2,1],[3,3,2,1],[2,1,3,2],[0,1,0,1]],[[2,1,2,1],[2,3,2,1],[2,1,3,2],[0,1,0,1]],[[1,1,2,1],[2,3,2,1],[2,1,3,1],[2,1,1,0]],[[1,1,2,1],[2,3,2,1],[3,1,3,1],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[2,1,3,1],[1,1,1,0]],[[2,1,2,1],[2,2,2,1],[2,3,3,0],[0,1,2,0]],[[1,1,2,1],[3,2,2,1],[2,3,3,0],[0,1,2,0]],[[1,1,2,1],[2,2,2,1],[3,3,3,0],[0,1,2,0]],[[1,1,2,1],[2,2,2,1],[2,4,3,0],[0,1,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,3,0],[0,2,1,0]],[[1,1,2,1],[3,2,2,1],[2,3,3,0],[0,2,1,0]],[[1,1,2,1],[2,2,2,1],[3,3,3,0],[0,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,4,3,0],[0,2,1,0]],[[1,1,2,1],[2,2,2,1],[2,3,3,0],[0,3,1,0]],[[1,1,2,1],[3,3,2,1],[2,1,3,1],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[2,1,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,2,1],[2,1,3,1],[2,1,0,1]],[[1,1,2,1],[2,3,2,1],[3,1,3,1],[1,1,0,1]],[[1,1,2,1],[2,4,2,1],[2,1,3,1],[1,1,0,1]],[[1,1,2,1],[3,3,2,1],[2,1,3,1],[1,1,0,1]],[[2,1,2,1],[2,3,2,1],[2,1,3,1],[1,1,0,1]],[[2,1,2,1],[2,2,2,1],[2,3,3,0],[1,0,2,0]],[[1,1,2,1],[3,2,2,1],[2,3,3,0],[1,0,2,0]],[[1,1,2,1],[2,2,2,1],[3,3,3,0],[1,0,2,0]],[[1,1,2,1],[2,2,2,1],[2,4,3,0],[1,0,2,0]],[[1,1,2,1],[2,2,2,1],[2,3,3,0],[2,0,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[3,2,2,1],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[2,2,2,1],[3,3,3,0],[1,1,1,0]],[[1,1,2,1],[2,2,2,1],[2,4,3,0],[1,1,1,0]],[[1,1,2,1],[2,2,2,1],[2,3,3,0],[2,1,1,0]],[[1,1,2,1],[2,3,2,1],[2,1,3,1],[2,0,2,0]],[[1,1,2,1],[2,3,2,1],[3,1,3,1],[1,0,2,0]],[[1,1,2,1],[2,4,2,1],[2,1,3,1],[1,0,2,0]],[[1,1,2,1],[3,3,2,1],[2,1,3,1],[1,0,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,3,0],[1,2,0,0]],[[1,1,2,1],[3,2,2,1],[2,3,3,0],[1,2,0,0]],[[1,1,2,1],[2,2,2,1],[3,3,3,0],[1,2,0,0]],[[1,1,2,1],[2,2,2,1],[2,4,3,0],[1,2,0,0]],[[1,1,2,1],[2,2,2,1],[2,3,3,0],[2,2,0,0]],[[2,1,2,1],[2,3,2,1],[2,1,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,2,1],[2,1,3,1],[2,0,1,1]],[[1,1,2,1],[2,3,2,1],[3,1,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,2,1],[2,1,3,1],[1,0,1,1]],[[1,1,2,1],[3,3,2,1],[2,1,3,1],[1,0,1,1]],[[2,1,2,1],[2,3,2,1],[2,1,3,1],[1,0,1,1]],[[1,1,2,1],[2,3,2,1],[3,1,3,1],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,1,3,1],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,1,3,1],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,1,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,1,3,1],[0,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,1,3,1],[0,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,1,3,1],[0,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,1,3,1],[0,2,0,1]],[[1,1,2,1],[2,3,2,1],[3,1,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,2,1],[2,1,3,1],[0,1,2,0]],[[1,1,2,1],[3,3,2,1],[2,1,3,1],[0,1,2,0]],[[2,1,2,1],[2,2,2,1],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[3,2,2,1],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,2,2,1],[3,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,2,2,1],[2,4,3,1],[0,2,0,0]],[[2,1,2,1],[2,3,2,1],[2,1,3,1],[0,1,2,0]],[[1,1,2,1],[2,3,2,1],[3,1,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,1,3,1],[0,1,1,1]],[[1,1,2,1],[3,3,2,1],[2,1,3,1],[0,1,1,1]],[[2,1,2,1],[2,3,2,1],[2,1,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,1,3,1],[0,0,2,1]],[[1,1,2,1],[3,3,2,1],[2,1,3,1],[0,0,2,1]],[[2,1,2,1],[2,3,2,1],[2,1,3,1],[0,0,2,1]],[[1,1,2,1],[2,3,2,1],[2,1,3,0],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[2,1,3,0],[2,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,1,3,0],[1,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,1,3,0],[1,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,1,3,0],[1,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,1,3,0],[1,2,1,0]],[[2,1,2,1],[2,2,2,1],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[3,2,2,1],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,2,2,1],[3,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,2,2,1],[2,4,3,1],[1,1,0,0]],[[1,1,2,1],[2,2,2,1],[2,3,3,1],[2,1,0,0]],[[1,1,2,1],[2,3,2,1],[2,1,3,0],[2,1,1,1]],[[1,1,2,1],[2,3,2,1],[3,1,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,1,3,0],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[2,1,3,0],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[2,1,3,0],[1,1,1,1]],[[1,1,2,1],[2,3,2,1],[2,1,3,0],[2,0,2,1]],[[1,1,2,1],[2,3,2,1],[3,1,3,0],[1,0,2,1]],[[1,1,2,1],[2,4,2,1],[2,1,3,0],[1,0,2,1]],[[1,1,2,1],[3,3,2,1],[2,1,3,0],[1,0,2,1]],[[2,1,2,1],[2,3,2,1],[2,1,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,2,1],[3,1,3,0],[0,2,1,1]],[[1,1,2,1],[2,4,2,1],[2,1,3,0],[0,2,1,1]],[[1,1,2,1],[3,3,2,1],[2,1,3,0],[0,2,1,1]],[[2,1,2,1],[2,3,2,1],[2,1,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,2,1],[3,1,3,0],[0,1,2,1]],[[1,1,2,1],[2,4,2,1],[2,1,3,0],[0,1,2,1]],[[1,1,2,1],[3,3,2,1],[2,1,3,0],[0,1,2,1]],[[2,1,2,1],[2,3,2,1],[2,1,3,0],[0,1,2,1]],[[1,1,2,1],[2,3,2,1],[2,1,2,2],[2,1,1,0]],[[1,1,2,1],[2,3,2,1],[3,1,2,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[2,1,2,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[2,1,2,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[2,1,2,2],[1,1,1,0]],[[1,1,2,1],[2,3,2,1],[2,1,2,2],[2,1,0,1]],[[1,1,2,1],[2,3,2,1],[3,1,2,2],[1,1,0,1]],[[1,1,2,1],[2,4,2,1],[2,1,2,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,1],[2,1,2,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,1],[2,1,2,2],[1,1,0,1]],[[1,1,2,1],[2,3,2,1],[2,1,2,2],[2,0,2,0]],[[1,1,2,1],[2,3,2,1],[3,1,2,2],[1,0,2,0]],[[1,1,2,1],[2,4,2,1],[2,1,2,2],[1,0,2,0]],[[1,1,2,1],[3,3,2,1],[2,1,2,2],[1,0,2,0]],[[2,1,2,1],[2,3,2,1],[2,1,2,2],[1,0,2,0]],[[1,1,2,1],[2,3,2,1],[2,1,2,2],[2,0,1,1]],[[1,1,2,1],[2,3,2,1],[3,1,2,2],[1,0,1,1]],[[1,1,2,1],[2,4,2,1],[2,1,2,2],[1,0,1,1]],[[1,1,2,1],[3,3,2,1],[2,1,2,2],[1,0,1,1]],[[2,1,2,1],[2,3,2,1],[2,1,2,2],[1,0,1,1]],[[1,1,2,1],[2,3,2,1],[3,1,2,2],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,1,2,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,1,2,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,1,2,2],[0,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,1,2,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,1,2,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,1,2,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,1,2,2],[0,2,0,1]],[[1,1,2,1],[2,3,2,1],[3,1,2,2],[0,1,2,0]],[[1,1,2,1],[2,4,2,1],[2,1,2,2],[0,1,2,0]],[[1,1,2,1],[3,3,2,1],[2,1,2,2],[0,1,2,0]],[[2,1,2,1],[2,3,2,1],[2,1,2,2],[0,1,2,0]],[[1,1,2,1],[2,3,2,1],[3,1,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,1,2,2],[0,1,1,1]],[[1,1,2,1],[3,3,2,1],[2,1,2,2],[0,1,1,1]],[[2,1,2,1],[2,3,2,1],[2,1,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,1,2,2],[0,0,2,1]],[[1,1,2,1],[3,3,2,1],[2,1,2,2],[0,0,2,1]],[[2,1,2,1],[2,3,2,1],[2,1,2,2],[0,0,2,1]],[[1,1,2,1],[2,3,2,1],[2,1,2,1],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[2,1,2,1],[2,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,1,2,1],[1,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,1,2,1],[1,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,1,2,1],[1,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,1,2,1],[1,2,1,0]],[[1,1,2,1],[2,3,2,1],[2,1,2,1],[1,3,0,1]],[[1,1,2,1],[2,3,2,1],[2,1,2,1],[2,2,0,1]],[[1,1,2,1],[2,3,2,1],[3,1,2,1],[1,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,1,2,1],[1,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,1,2,1],[1,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,1,2,1],[1,2,0,1]],[[1,1,2,1],[2,3,2,1],[2,1,2,0],[1,3,1,1]],[[1,1,2,1],[2,3,2,1],[2,1,2,0],[2,2,1,1]],[[1,1,2,1],[2,3,2,1],[3,1,2,0],[1,2,1,1]],[[1,1,2,1],[2,4,2,1],[2,1,2,0],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[2,1,2,0],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[2,1,2,0],[1,2,1,1]],[[1,1,2,1],[2,3,2,1],[2,1,1,2],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[2,1,1,2],[2,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,1,1,2],[1,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,1,1,2],[1,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,1,1,2],[1,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,1,1,2],[1,2,1,0]],[[1,1,2,1],[2,3,2,1],[2,1,1,2],[1,3,0,1]],[[1,1,2,1],[2,3,2,1],[2,1,1,2],[2,2,0,1]],[[1,1,2,1],[2,3,2,1],[3,1,1,2],[1,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,1,1,2],[1,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,1,1,2],[1,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,1,1,2],[1,2,0,1]],[[1,1,2,1],[2,3,2,1],[2,1,1,2],[2,0,2,1]],[[1,1,2,1],[2,3,2,1],[3,1,1,2],[1,0,2,1]],[[1,1,2,1],[2,4,2,1],[2,1,1,2],[1,0,2,1]],[[1,1,2,1],[3,3,2,1],[2,1,1,2],[1,0,2,1]],[[2,1,2,1],[2,3,2,1],[2,1,1,2],[1,0,2,1]],[[1,1,2,1],[2,3,2,1],[3,1,1,2],[0,1,2,1]],[[1,1,2,1],[2,4,2,1],[2,1,1,2],[0,1,2,1]],[[1,1,2,1],[3,3,2,1],[2,1,1,2],[0,1,2,1]],[[2,1,2,1],[2,3,2,1],[2,1,1,2],[0,1,2,1]],[[1,1,2,1],[2,3,2,1],[2,1,1,1],[1,2,3,0]],[[1,1,2,1],[2,3,2,1],[2,1,1,1],[1,3,2,0]],[[1,1,2,1],[2,3,2,1],[2,1,1,1],[2,2,2,0]],[[1,1,2,1],[2,3,2,1],[3,1,1,1],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[2,1,1,1],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[2,1,1,1],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[2,1,1,1],[1,2,2,0]],[[1,1,2,1],[2,3,2,1],[2,1,1,0],[1,2,2,2]],[[1,1,2,1],[2,3,2,1],[2,1,1,0],[1,2,3,1]],[[1,1,2,1],[2,3,2,1],[2,1,1,0],[1,3,2,1]],[[1,1,2,1],[2,3,2,1],[2,1,1,0],[2,2,2,1]],[[1,1,2,1],[2,3,2,1],[3,1,1,0],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[2,1,1,0],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[2,1,1,0],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[2,1,1,0],[1,2,2,1]],[[1,1,2,1],[2,3,2,1],[2,1,0,2],[1,2,3,0]],[[1,1,2,1],[2,3,2,1],[2,1,0,2],[1,3,2,0]],[[1,1,2,1],[2,3,2,1],[2,1,0,2],[2,2,2,0]],[[1,1,2,1],[2,3,2,1],[3,1,0,2],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[2,1,0,2],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[2,1,0,2],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[2,1,0,2],[1,2,2,0]],[[1,1,2,1],[2,3,2,1],[2,1,0,2],[1,3,1,1]],[[1,1,2,1],[2,3,2,1],[2,1,0,2],[2,2,1,1]],[[1,1,2,1],[2,3,2,1],[3,1,0,2],[1,2,1,1]],[[1,1,2,1],[2,4,2,1],[2,1,0,2],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[2,1,0,2],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[2,1,0,2],[1,2,1,1]],[[1,1,2,1],[2,3,2,1],[2,1,0,2],[2,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,1,0,2],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[2,1,0,2],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[2,1,0,2],[1,1,2,1]],[[2,1,2,1],[2,3,2,1],[2,1,0,2],[1,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,1,0,2],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[2,1,0,2],[0,2,2,1]],[[1,1,2,1],[3,3,2,1],[2,1,0,2],[0,2,2,1]],[[2,1,2,1],[2,3,2,1],[2,1,0,2],[0,2,2,1]],[[1,1,2,1],[2,3,2,1],[2,1,0,1],[1,2,2,2]],[[1,1,2,1],[2,3,2,1],[2,1,0,1],[1,2,3,1]],[[1,1,2,1],[2,3,2,1],[2,1,0,1],[1,3,2,1]],[[1,1,2,1],[2,3,2,1],[2,1,0,1],[2,2,2,1]],[[1,1,2,1],[2,3,2,1],[3,1,0,1],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[2,1,0,1],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[2,1,0,1],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[2,1,0,1],[1,2,2,1]],[[1,1,2,1],[2,3,2,1],[2,0,3,1],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[2,0,3,1],[2,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,0,3,1],[1,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,0,3,1],[1,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,0,3,1],[1,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,0,3,1],[1,2,1,0]],[[1,1,2,1],[2,3,2,1],[2,0,3,1],[1,3,0,1]],[[1,1,2,1],[2,3,2,1],[2,0,3,1],[2,2,0,1]],[[1,1,2,1],[2,3,2,1],[3,0,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,0,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,0,3,1],[1,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,0,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,2,1],[2,0,3,1],[2,1,2,0]],[[1,1,2,1],[2,3,2,1],[3,0,3,1],[1,1,2,0]],[[1,1,2,1],[2,4,2,1],[2,0,3,1],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[2,0,3,1],[1,1,2,0]],[[2,1,2,1],[2,3,2,1],[2,0,3,1],[1,1,2,0]],[[1,1,2,1],[2,3,2,1],[2,0,3,1],[2,1,1,1]],[[1,1,2,1],[2,3,2,1],[3,0,3,1],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,0,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[2,0,3,1],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[2,0,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,2,1],[3,0,3,1],[0,2,2,0]],[[1,1,2,1],[2,4,2,1],[2,0,3,1],[0,2,2,0]],[[1,1,2,1],[3,3,2,1],[2,0,3,1],[0,2,2,0]],[[2,1,2,1],[2,3,2,1],[2,0,3,1],[0,2,2,0]],[[1,1,2,1],[2,3,2,1],[3,0,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,2,1],[2,0,3,1],[0,2,1,1]],[[1,1,2,1],[3,3,2,1],[2,0,3,1],[0,2,1,1]],[[2,1,2,1],[2,3,2,1],[2,0,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,2,1],[2,0,3,0],[1,3,1,1]],[[1,1,2,1],[2,3,2,1],[2,0,3,0],[2,2,1,1]],[[1,1,2,1],[2,3,2,1],[3,0,3,0],[1,2,1,1]],[[1,1,2,1],[2,4,2,1],[2,0,3,0],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[2,0,3,0],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[2,0,3,0],[1,2,1,1]],[[1,1,2,1],[2,3,2,1],[2,0,3,0],[2,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,0,3,0],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[2,0,3,0],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[2,0,3,0],[1,1,2,1]],[[2,1,2,1],[2,3,2,1],[2,0,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,0,3,0],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[2,0,3,0],[0,2,2,1]],[[1,1,2,1],[3,3,2,1],[2,0,3,0],[0,2,2,1]],[[2,1,2,1],[2,3,2,1],[2,0,3,0],[0,2,2,1]],[[1,1,2,1],[2,3,2,1],[2,0,2,2],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[2,0,2,2],[2,2,1,0]],[[1,1,2,1],[2,3,2,1],[3,0,2,2],[1,2,1,0]],[[1,1,2,1],[2,4,2,1],[2,0,2,2],[1,2,1,0]],[[1,1,2,1],[3,3,2,1],[2,0,2,2],[1,2,1,0]],[[2,1,2,1],[2,3,2,1],[2,0,2,2],[1,2,1,0]],[[1,1,2,1],[2,3,2,1],[2,0,2,2],[1,3,0,1]],[[1,1,2,1],[2,3,2,1],[2,0,2,2],[2,2,0,1]],[[1,1,2,1],[2,3,2,1],[3,0,2,2],[1,2,0,1]],[[1,1,2,1],[2,4,2,1],[2,0,2,2],[1,2,0,1]],[[1,1,2,1],[3,3,2,1],[2,0,2,2],[1,2,0,1]],[[2,1,2,1],[2,3,2,1],[2,0,2,2],[1,2,0,1]],[[1,1,2,1],[2,3,2,1],[2,0,2,2],[2,1,2,0]],[[1,1,2,1],[2,3,2,1],[3,0,2,2],[1,1,2,0]],[[1,1,2,1],[2,4,2,1],[2,0,2,2],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[2,0,2,2],[1,1,2,0]],[[2,1,2,1],[2,3,2,1],[2,0,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,2,1],[2,0,2,2],[2,1,1,1]],[[1,1,2,1],[2,3,2,1],[3,0,2,2],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[2,0,2,2],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[2,0,2,2],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[2,0,2,2],[1,1,1,1]],[[1,1,2,1],[2,3,2,1],[3,0,2,2],[0,2,2,0]],[[1,1,2,1],[2,4,2,1],[2,0,2,2],[0,2,2,0]],[[1,1,2,1],[3,3,2,1],[2,0,2,2],[0,2,2,0]],[[2,1,2,1],[2,3,2,1],[2,0,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,2,1],[3,0,2,2],[0,2,1,1]],[[1,1,2,1],[2,4,2,1],[2,0,2,2],[0,2,1,1]],[[1,1,2,1],[3,3,2,1],[2,0,2,2],[0,2,1,1]],[[2,1,2,1],[2,3,2,1],[2,0,2,2],[0,2,1,1]],[[1,1,2,1],[2,3,2,1],[2,0,2,1],[1,2,3,0]],[[1,1,2,1],[2,3,2,1],[2,0,2,1],[1,3,2,0]],[[1,1,2,1],[2,3,2,1],[2,0,2,1],[2,2,2,0]],[[1,1,2,1],[2,3,2,1],[3,0,2,1],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[2,0,2,1],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[2,0,2,1],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[2,0,2,1],[1,2,2,0]],[[1,1,2,1],[2,3,2,1],[2,0,2,0],[1,2,2,2]],[[1,1,2,1],[2,3,2,1],[2,0,2,0],[1,2,3,1]],[[1,1,2,1],[2,3,2,1],[2,0,2,0],[1,3,2,1]],[[1,1,2,1],[2,3,2,1],[2,0,2,0],[2,2,2,1]],[[1,1,2,1],[2,3,2,1],[3,0,2,0],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[2,0,2,0],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[2,0,2,0],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[2,0,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,2,1],[2,0,1,2],[1,2,3,0]],[[1,1,2,1],[2,3,2,1],[2,0,1,2],[1,3,2,0]],[[1,1,2,1],[2,3,2,1],[2,0,1,2],[2,2,2,0]],[[1,1,2,1],[2,3,2,1],[3,0,1,2],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[2,0,1,2],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[2,0,1,2],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[2,0,1,2],[1,2,2,0]],[[1,1,2,1],[2,3,2,1],[2,0,1,2],[1,3,1,1]],[[1,1,2,1],[2,3,2,1],[2,0,1,2],[2,2,1,1]],[[1,1,2,1],[2,3,2,1],[3,0,1,2],[1,2,1,1]],[[1,1,2,1],[2,4,2,1],[2,0,1,2],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[2,0,1,2],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[2,0,1,2],[1,2,1,1]],[[1,1,2,1],[2,3,2,1],[2,0,1,2],[2,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,0,1,2],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[2,0,1,2],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[2,0,1,2],[1,1,2,1]],[[2,1,2,1],[2,3,2,1],[2,0,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,2,1],[3,0,1,2],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[2,0,1,2],[0,2,2,1]],[[1,1,2,1],[3,3,2,1],[2,0,1,2],[0,2,2,1]],[[2,1,2,1],[2,3,2,1],[2,0,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,2,1],[2,0,1,1],[1,2,2,2]],[[1,1,2,1],[2,3,2,1],[2,0,1,1],[1,2,3,1]],[[1,1,2,1],[2,3,2,1],[2,0,1,1],[1,3,2,1]],[[1,1,2,1],[2,3,2,1],[2,0,1,1],[2,2,2,1]],[[1,1,2,1],[2,3,2,1],[3,0,1,1],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[2,0,1,1],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[2,0,1,1],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[2,0,1,1],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[1,3,3,2],[0,0,0,1]],[[1,1,2,1],[3,3,2,1],[1,3,3,2],[0,0,0,1]],[[2,1,2,1],[2,3,2,1],[1,3,3,2],[0,0,0,1]],[[1,1,2,1],[2,3,2,1],[1,4,3,1],[1,1,0,0]],[[1,1,2,1],[2,4,2,1],[1,3,3,1],[1,1,0,0]],[[1,1,2,1],[3,3,2,1],[1,3,3,1],[1,1,0,0]],[[2,1,2,1],[2,3,2,1],[1,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,3,2,1],[1,4,3,1],[0,2,0,0]],[[1,1,2,1],[2,4,2,1],[1,3,3,1],[0,2,0,0]],[[1,1,2,1],[3,3,2,1],[1,3,3,1],[0,2,0,0]],[[2,1,2,1],[2,3,2,1],[1,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,4,2,1],[1,3,3,1],[0,0,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,3,1],[0,0,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,3,1],[0,0,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,3,1],[0,0,1,1]],[[1,1,2,1],[3,3,2,1],[1,3,3,1],[0,0,1,1]],[[2,1,2,1],[2,3,2,1],[1,3,3,1],[0,0,1,1]],[[1,1,2,1],[2,2,2,2],[1,4,1,0],[1,2,2,0]],[[1,1,2,1],[2,2,2,2],[1,3,1,0],[2,2,2,0]],[[1,1,2,1],[2,2,2,2],[1,3,1,0],[1,3,2,0]],[[1,1,2,1],[2,3,2,1],[1,4,3,0],[1,2,0,0]],[[1,1,2,1],[2,4,2,1],[1,3,3,0],[1,2,0,0]],[[1,1,2,1],[3,3,2,1],[1,3,3,0],[1,2,0,0]],[[2,1,2,1],[2,3,2,1],[1,3,3,0],[1,2,0,0]],[[1,1,2,1],[2,3,2,1],[1,4,3,0],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[1,3,3,0],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[1,3,3,0],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[1,3,3,0],[1,1,1,0]],[[1,1,2,1],[2,3,2,1],[1,4,3,0],[1,0,2,0]],[[1,1,2,1],[2,2,2,2],[1,4,2,0],[1,2,1,0]],[[1,1,2,1],[2,2,2,2],[1,3,2,0],[2,2,1,0]],[[1,1,2,1],[2,2,2,2],[1,3,2,0],[1,3,1,0]],[[1,1,2,1],[2,4,2,1],[1,3,3,0],[1,0,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,3,0],[1,0,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,3,0],[1,0,2,0]],[[1,1,2,1],[2,3,2,1],[1,3,3,0],[0,3,1,0]],[[1,1,2,1],[2,3,2,1],[1,4,3,0],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[1,3,3,0],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[1,3,3,0],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[1,3,3,0],[0,2,1,0]],[[1,1,2,1],[2,3,2,1],[1,4,3,0],[0,1,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,3,0],[0,1,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,3,0],[0,1,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,3,0],[0,1,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,3,0],[0,0,2,1]],[[1,1,2,1],[3,3,2,1],[1,3,3,0],[0,0,2,1]],[[2,1,2,1],[2,3,2,1],[1,3,3,0],[0,0,2,1]],[[1,1,2,1],[2,4,2,1],[1,3,2,2],[0,0,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,2,2],[0,0,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,2,2],[0,0,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,2,2],[0,0,1,1]],[[1,1,2,1],[3,3,2,1],[1,3,2,2],[0,0,1,1]],[[2,1,2,1],[2,3,2,1],[1,3,2,2],[0,0,1,1]],[[1,1,2,1],[2,3,2,1],[1,4,2,1],[1,2,0,0]],[[1,1,2,1],[2,4,2,1],[1,3,2,1],[1,2,0,0]],[[1,1,2,1],[3,3,2,1],[1,3,2,1],[1,2,0,0]],[[2,1,2,1],[2,3,2,1],[1,3,2,1],[1,2,0,0]],[[1,1,2,1],[2,3,2,1],[1,4,2,1],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[1,3,2,1],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[1,3,2,1],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[1,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,3,2,1],[1,4,2,1],[1,1,0,1]],[[1,1,2,1],[2,4,2,1],[1,3,2,1],[1,1,0,1]],[[1,1,2,1],[3,3,2,1],[1,3,2,1],[1,1,0,1]],[[2,1,2,1],[2,3,2,1],[1,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,3,2,1],[1,4,2,1],[1,0,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,2,1],[1,0,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,2,1],[1,0,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,3,2,1],[1,4,2,1],[1,0,1,1]],[[1,1,2,1],[2,4,2,1],[1,3,2,1],[1,0,1,1]],[[1,1,2,1],[3,3,2,1],[1,3,2,1],[1,0,1,1]],[[2,1,2,1],[2,3,2,1],[1,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,3,2,1],[1,3,2,1],[0,3,1,0]],[[1,1,2,1],[2,3,2,1],[1,4,2,1],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[1,3,2,1],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[1,3,2,1],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[1,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,3,2,1],[1,3,2,1],[0,3,0,1]],[[1,1,2,1],[2,3,2,1],[1,4,2,1],[0,2,0,1]],[[1,1,2,1],[2,4,2,1],[1,3,2,1],[0,2,0,1]],[[1,1,2,1],[3,3,2,1],[1,3,2,1],[0,2,0,1]],[[2,1,2,1],[2,3,2,1],[1,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,3,2,1],[1,4,2,1],[0,1,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,2,1],[0,1,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,2,1],[0,1,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,3,2,1],[1,4,2,1],[0,1,1,1]],[[1,1,2,1],[2,4,2,1],[1,3,2,1],[0,1,1,1]],[[1,1,2,1],[3,3,2,1],[1,3,2,1],[0,1,1,1]],[[2,1,2,1],[2,3,2,1],[1,3,2,1],[0,1,1,1]],[[1,1,2,1],[2,3,2,1],[1,4,2,0],[1,2,0,1]],[[1,1,2,1],[2,4,2,1],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[3,3,2,1],[1,3,2,0],[1,2,0,1]],[[2,1,2,1],[2,3,2,1],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[2,3,2,1],[1,4,2,0],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[1,3,2,0],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[2,3,2,1],[1,4,2,0],[1,0,2,1]],[[1,1,2,1],[2,4,2,1],[1,3,2,0],[1,0,2,1]],[[1,1,2,1],[3,3,2,1],[1,3,2,0],[1,0,2,1]],[[2,1,2,1],[2,3,2,1],[1,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,3,2,1],[1,3,2,0],[0,3,1,1]],[[1,1,2,1],[2,3,2,1],[1,4,2,0],[0,2,1,1]],[[1,1,2,1],[2,4,2,1],[1,3,2,0],[0,2,1,1]],[[1,1,2,1],[3,3,2,1],[1,3,2,0],[0,2,1,1]],[[2,1,2,1],[2,3,2,1],[1,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,3,2,1],[1,4,2,0],[0,1,2,1]],[[1,1,2,1],[2,4,2,1],[1,3,2,0],[0,1,2,1]],[[1,1,2,1],[3,3,2,1],[1,3,2,0],[0,1,2,1]],[[2,1,2,1],[2,3,2,1],[1,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,3,2,1],[1,4,1,2],[1,2,0,0]],[[1,1,2,1],[2,4,2,1],[1,3,1,2],[1,2,0,0]],[[1,1,2,1],[3,3,2,1],[1,3,1,2],[1,2,0,0]],[[2,1,2,1],[2,3,2,1],[1,3,1,2],[1,2,0,0]],[[1,1,2,1],[2,3,2,1],[1,4,1,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[1,3,1,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[1,3,1,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[1,3,1,2],[1,1,1,0]],[[1,1,2,1],[2,3,2,1],[1,4,1,2],[1,1,0,1]],[[1,1,2,1],[2,4,2,1],[1,3,1,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,1],[1,3,1,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,1],[1,3,1,2],[1,1,0,1]],[[1,1,2,1],[2,3,2,1],[1,4,1,2],[1,0,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,1,2],[1,0,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,1,2],[1,0,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,1,2],[1,0,2,0]],[[1,1,2,1],[2,3,2,1],[1,4,1,2],[1,0,1,1]],[[1,1,2,1],[2,4,2,1],[1,3,1,2],[1,0,1,1]],[[1,1,2,1],[3,3,2,1],[1,3,1,2],[1,0,1,1]],[[2,1,2,1],[2,3,2,1],[1,3,1,2],[1,0,1,1]],[[1,1,2,1],[2,3,2,1],[1,3,1,2],[0,3,1,0]],[[1,1,2,1],[2,3,2,1],[1,4,1,2],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[1,3,1,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[1,3,1,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[1,3,1,2],[0,2,1,0]],[[1,1,2,1],[2,3,2,1],[1,3,1,2],[0,3,0,1]],[[1,1,2,1],[2,3,2,1],[1,4,1,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,1],[1,3,1,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,1],[1,3,1,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,1],[1,3,1,2],[0,2,0,1]],[[1,1,2,1],[2,3,2,1],[1,4,1,2],[0,1,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,1,2],[0,1,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,1,2],[0,1,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,1,2],[0,1,2,0]],[[1,1,2,1],[2,3,2,1],[1,4,1,2],[0,1,1,1]],[[1,1,2,1],[2,4,2,1],[1,3,1,2],[0,1,1,1]],[[1,1,2,1],[3,3,2,1],[1,3,1,2],[0,1,1,1]],[[2,1,2,1],[2,3,2,1],[1,3,1,2],[0,1,1,1]],[[1,1,2,1],[2,3,2,1],[1,4,1,1],[1,1,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,1,1],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,1,1],[1,1,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,1,1],[1,1,2,0]],[[1,1,2,1],[2,3,2,1],[1,3,1,1],[0,2,3,0]],[[1,1,2,1],[2,3,2,1],[1,3,1,1],[0,3,2,0]],[[1,1,2,1],[2,3,2,1],[1,4,1,1],[0,2,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,1,1],[0,2,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,1,1],[0,2,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,1,1],[0,2,2,0]],[[1,1,2,1],[2,3,2,1],[1,4,1,0],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[1,3,1,0],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[1,3,1,0],[1,1,2,1]],[[2,1,2,1],[2,3,2,1],[1,3,1,0],[1,1,2,1]],[[1,1,2,1],[2,3,2,1],[1,3,1,0],[0,2,2,2]],[[1,1,2,1],[2,3,2,1],[1,3,1,0],[0,2,3,1]],[[1,1,2,1],[2,3,2,1],[1,3,1,0],[0,3,2,1]],[[1,1,2,1],[2,3,2,1],[1,4,1,0],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[1,3,1,0],[0,2,2,1]],[[1,1,2,1],[3,3,2,1],[1,3,1,0],[0,2,2,1]],[[2,1,2,1],[2,3,2,1],[1,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,3,2,1],[1,4,0,2],[1,1,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,0,2],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,0,2],[1,1,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,0,2],[1,1,2,0]],[[1,1,2,1],[2,3,2,1],[1,4,0,2],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[1,3,0,2],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[1,3,0,2],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[1,3,0,2],[1,1,1,1]],[[1,1,2,1],[2,3,2,1],[1,4,0,2],[1,0,2,1]],[[1,1,2,1],[2,4,2,1],[1,3,0,2],[1,0,2,1]],[[1,1,2,1],[3,3,2,1],[1,3,0,2],[1,0,2,1]],[[2,1,2,1],[2,3,2,1],[1,3,0,2],[1,0,2,1]],[[1,1,2,1],[2,3,2,1],[1,3,0,2],[0,2,3,0]],[[1,1,2,1],[2,3,2,1],[1,3,0,2],[0,3,2,0]],[[1,1,2,1],[2,3,2,1],[1,4,0,2],[0,2,2,0]],[[1,1,2,1],[2,4,2,1],[1,3,0,2],[0,2,2,0]],[[1,1,2,1],[3,3,2,1],[1,3,0,2],[0,2,2,0]],[[2,1,2,1],[2,3,2,1],[1,3,0,2],[0,2,2,0]],[[1,1,2,1],[2,3,2,1],[1,3,0,2],[0,3,1,1]],[[1,1,2,1],[2,3,2,1],[1,4,0,2],[0,2,1,1]],[[1,1,2,1],[2,4,2,1],[1,3,0,2],[0,2,1,1]],[[1,1,2,1],[3,3,2,1],[1,3,0,2],[0,2,1,1]],[[2,1,2,1],[2,3,2,1],[1,3,0,2],[0,2,1,1]],[[1,1,2,1],[2,3,2,1],[1,4,0,2],[0,1,2,1]],[[1,1,2,1],[2,4,2,1],[1,3,0,2],[0,1,2,1]],[[1,1,2,1],[3,3,2,1],[1,3,0,2],[0,1,2,1]],[[2,1,2,1],[2,3,2,1],[1,3,0,2],[0,1,2,1]],[[1,1,2,1],[2,3,2,1],[1,4,0,1],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[1,3,0,1],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[1,3,0,1],[1,1,2,1]],[[2,1,2,1],[2,3,2,1],[1,3,0,1],[1,1,2,1]],[[1,1,2,1],[2,3,2,1],[1,3,0,1],[0,2,2,2]],[[1,1,2,1],[2,3,2,1],[1,3,0,1],[0,2,3,1]],[[1,1,2,1],[2,3,2,1],[1,3,0,1],[0,3,2,1]],[[1,1,2,1],[2,3,2,1],[1,4,0,1],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[1,3,0,1],[0,2,2,1]],[[1,1,2,1],[3,3,2,1],[1,3,0,1],[0,2,2,1]],[[2,1,2,1],[2,3,2,1],[1,3,0,1],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[1,2,3,2],[1,0,0,1]],[[1,1,2,1],[3,3,2,1],[1,2,3,2],[1,0,0,1]],[[2,1,2,1],[2,3,2,1],[1,2,3,2],[1,0,0,1]],[[1,1,2,1],[2,4,2,1],[1,2,3,2],[0,1,0,1]],[[1,1,2,1],[3,3,2,1],[1,2,3,2],[0,1,0,1]],[[2,1,2,1],[2,3,2,1],[1,2,3,2],[0,1,0,1]],[[1,1,2,1],[2,4,2,1],[1,2,3,1],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[1,2,3,1],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[1,2,3,1],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[1,2,3,1],[1,1,0,1]],[[1,1,2,1],[3,3,2,1],[1,2,3,1],[1,1,0,1]],[[2,1,2,1],[2,3,2,1],[1,2,3,1],[1,1,0,1]],[[1,1,2,1],[2,4,2,1],[1,2,3,1],[1,0,2,0]],[[1,1,2,1],[3,3,2,1],[1,2,3,1],[1,0,2,0]],[[2,1,2,1],[2,3,2,1],[1,2,3,1],[1,0,2,0]],[[1,1,2,1],[2,4,2,1],[1,2,3,1],[1,0,1,1]],[[1,1,2,1],[3,3,2,1],[1,2,3,1],[1,0,1,1]],[[2,1,2,1],[2,3,2,1],[1,2,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,2,1],[1,2,3,1],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[1,2,3,1],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[1,2,3,1],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[1,2,3,1],[0,2,0,1]],[[1,1,2,1],[3,3,2,1],[1,2,3,1],[0,2,0,1]],[[2,1,2,1],[2,3,2,1],[1,2,3,1],[0,2,0,1]],[[1,1,2,1],[2,4,2,1],[1,2,3,1],[0,1,2,0]],[[1,1,2,1],[3,3,2,1],[1,2,3,1],[0,1,2,0]],[[2,1,2,1],[2,3,2,1],[1,2,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,2,1],[1,2,3,1],[0,1,1,1]],[[1,1,2,1],[3,3,2,1],[1,2,3,1],[0,1,1,1]],[[2,1,2,1],[2,3,2,1],[1,2,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,2,1],[1,2,3,1],[0,0,2,1]],[[1,1,2,1],[3,3,2,1],[1,2,3,1],[0,0,2,1]],[[2,1,2,1],[2,3,2,1],[1,2,3,1],[0,0,2,1]],[[1,1,2,1],[2,4,2,1],[1,2,3,0],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[1,2,3,0],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[1,2,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[1,2,3,0],[1,0,2,1]],[[1,1,2,1],[3,3,2,1],[1,2,3,0],[1,0,2,1]],[[2,1,2,1],[2,3,2,1],[1,2,3,0],[1,0,2,1]],[[1,1,2,1],[2,4,2,1],[1,2,3,0],[0,2,1,1]],[[1,1,2,1],[3,3,2,1],[1,2,3,0],[0,2,1,1]],[[2,1,2,1],[2,3,2,1],[1,2,3,0],[0,2,1,1]],[[1,1,2,1],[2,4,2,1],[1,2,3,0],[0,1,2,1]],[[1,1,2,1],[3,3,2,1],[1,2,3,0],[0,1,2,1]],[[2,1,2,1],[2,3,2,1],[1,2,3,0],[0,1,2,1]],[[1,1,2,1],[2,4,2,1],[1,2,2,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,1],[1,2,2,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,1],[1,2,2,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,1],[1,2,2,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,1],[1,2,2,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,1],[1,2,2,2],[1,1,0,1]],[[1,1,2,1],[2,4,2,1],[1,2,2,2],[1,0,2,0]],[[1,1,2,1],[3,3,2,1],[1,2,2,2],[1,0,2,0]],[[2,1,2,1],[2,3,2,1],[1,2,2,2],[1,0,2,0]],[[1,1,2,1],[2,4,2,1],[1,2,2,2],[1,0,1,1]],[[1,1,2,1],[3,3,2,1],[1,2,2,2],[1,0,1,1]],[[2,1,2,1],[2,3,2,1],[1,2,2,2],[1,0,1,1]],[[1,1,2,1],[2,4,2,1],[1,2,2,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,1],[1,2,2,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,1],[1,2,2,2],[0,2,1,0]],[[1,1,2,1],[2,4,2,1],[1,2,2,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,1],[1,2,2,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,1],[1,2,2,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,1],[1,2,2,2],[0,1,2,0]],[[1,1,2,1],[3,3,2,1],[1,2,2,2],[0,1,2,0]],[[2,1,2,1],[2,3,2,1],[1,2,2,2],[0,1,2,0]],[[1,1,2,1],[2,4,2,1],[1,2,2,2],[0,1,1,1]],[[1,1,2,1],[3,3,2,1],[1,2,2,2],[0,1,1,1]],[[2,1,2,1],[2,3,2,1],[1,2,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,2,1],[1,2,2,2],[0,0,2,1]],[[1,1,2,1],[3,3,2,1],[1,2,2,2],[0,0,2,1]],[[2,1,2,1],[2,3,2,1],[1,2,2,2],[0,0,2,1]],[[2,1,2,1],[2,2,2,2],[2,2,1,0],[1,2,2,0]],[[1,1,2,1],[3,2,2,2],[2,2,1,0],[1,2,2,0]],[[1,1,2,1],[2,2,2,2],[3,2,1,0],[1,2,2,0]],[[1,1,2,1],[2,2,2,2],[2,2,1,0],[2,2,2,0]],[[1,1,2,1],[2,2,2,2],[2,2,1,0],[1,3,2,0]],[[1,1,2,1],[2,4,2,1],[1,2,1,2],[1,0,2,1]],[[1,1,2,1],[3,3,2,1],[1,2,1,2],[1,0,2,1]],[[2,1,2,1],[2,3,2,1],[1,2,1,2],[1,0,2,1]],[[1,1,2,1],[2,4,2,1],[1,2,1,2],[0,1,2,1]],[[1,1,2,1],[3,3,2,1],[1,2,1,2],[0,1,2,1]],[[2,1,2,1],[2,3,2,1],[1,2,1,2],[0,1,2,1]],[[1,1,2,1],[2,4,2,1],[1,2,0,2],[0,2,2,1]],[[1,1,2,1],[3,3,2,1],[1,2,0,2],[0,2,2,1]],[[2,1,2,1],[2,3,2,1],[1,2,0,2],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[1,1,3,1],[0,2,2,0]],[[1,1,2,1],[3,3,2,1],[1,1,3,1],[0,2,2,0]],[[2,1,2,1],[2,3,2,1],[1,1,3,1],[0,2,2,0]],[[1,1,2,1],[2,4,2,1],[1,1,3,1],[0,2,1,1]],[[2,1,2,1],[2,2,2,2],[2,2,2,0],[1,2,1,0]],[[1,1,2,1],[3,2,2,2],[2,2,2,0],[1,2,1,0]],[[1,1,2,1],[2,2,2,2],[3,2,2,0],[1,2,1,0]],[[1,1,2,1],[2,2,2,2],[2,2,2,0],[2,2,1,0]],[[1,1,2,1],[2,2,2,2],[2,2,2,0],[1,3,1,0]],[[1,1,2,1],[3,3,2,1],[1,1,3,1],[0,2,1,1]],[[2,1,2,1],[2,3,2,1],[1,1,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,2,1],[1,1,3,0],[0,2,2,1]],[[1,1,2,1],[3,3,2,1],[1,1,3,0],[0,2,2,1]],[[2,1,2,1],[2,3,2,1],[1,1,3,0],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[1,1,2,2],[0,2,2,0]],[[1,1,2,1],[3,3,2,1],[1,1,2,2],[0,2,2,0]],[[2,1,2,1],[2,3,2,1],[1,1,2,2],[0,2,2,0]],[[1,1,2,1],[2,4,2,1],[1,1,2,2],[0,2,1,1]],[[1,1,2,1],[3,3,2,1],[1,1,2,2],[0,2,1,1]],[[2,1,2,1],[2,3,2,1],[1,1,2,2],[0,2,1,1]],[[1,1,2,1],[2,4,2,1],[1,1,1,2],[0,2,2,1]],[[1,1,2,1],[3,3,2,1],[1,1,1,2],[0,2,2,1]],[[2,1,2,1],[2,3,2,1],[1,1,1,2],[0,2,2,1]],[[1,1,2,1],[2,4,2,1],[1,1,0,2],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[1,1,0,2],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[1,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[1,0,3,1],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[1,0,3,1],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[1,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[1,0,3,1],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[1,0,3,1],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[1,0,3,1],[1,2,1,1]],[[1,1,2,1],[2,4,2,1],[1,0,3,0],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[1,0,3,0],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[1,0,3,0],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[1,0,2,2],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[1,0,2,2],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[1,0,2,2],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[1,0,2,2],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[1,0,2,2],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[1,0,2,2],[1,2,1,1]],[[1,1,2,1],[2,4,2,1],[1,0,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[1,0,1,2],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[1,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,2,1],[0,4,3,1],[1,2,0,0]],[[1,1,2,1],[2,4,2,1],[0,3,3,1],[1,2,0,0]],[[1,1,2,1],[3,3,2,1],[0,3,3,1],[1,2,0,0]],[[2,1,2,1],[2,3,2,1],[0,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,3,2,1],[0,3,3,0],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[0,3,3,0],[2,2,1,0]],[[1,1,2,1],[2,3,2,1],[0,4,3,0],[1,2,1,0]],[[1,1,2,1],[2,4,2,1],[0,3,3,0],[1,2,1,0]],[[1,1,2,1],[3,3,2,1],[0,3,3,0],[1,2,1,0]],[[2,1,2,1],[2,3,2,1],[0,3,3,0],[1,2,1,0]],[[1,1,2,1],[2,3,2,1],[0,4,3,0],[1,1,2,0]],[[1,1,2,1],[2,4,2,1],[0,3,3,0],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[0,3,3,0],[1,1,2,0]],[[2,1,2,1],[2,3,2,1],[0,3,3,0],[1,1,2,0]],[[1,1,2,1],[2,3,2,1],[0,3,2,1],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[0,3,2,1],[2,2,1,0]],[[1,1,2,1],[2,3,2,1],[0,4,2,1],[1,2,1,0]],[[1,1,2,1],[2,4,2,1],[0,3,2,1],[1,2,1,0]],[[1,1,2,1],[3,3,2,1],[0,3,2,1],[1,2,1,0]],[[2,1,2,1],[2,3,2,1],[0,3,2,1],[1,2,1,0]],[[1,1,2,1],[2,3,2,1],[0,3,2,1],[1,3,0,1]],[[1,1,2,1],[2,3,2,1],[0,3,2,1],[2,2,0,1]],[[1,1,2,1],[2,3,2,1],[0,4,2,1],[1,2,0,1]],[[1,1,2,1],[2,4,2,1],[0,3,2,1],[1,2,0,1]],[[1,1,2,1],[3,3,2,1],[0,3,2,1],[1,2,0,1]],[[2,1,2,1],[2,3,2,1],[0,3,2,1],[1,2,0,1]],[[1,1,2,1],[2,3,2,1],[0,4,2,1],[1,1,2,0]],[[1,1,2,1],[2,4,2,1],[0,3,2,1],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[0,3,2,1],[1,1,2,0]],[[2,1,2,1],[2,3,2,1],[0,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,3,2,1],[0,4,2,1],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[0,3,2,1],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[0,3,2,1],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[0,3,2,1],[1,1,1,1]],[[1,1,2,1],[2,3,2,1],[0,3,2,0],[1,3,1,1]],[[1,1,2,1],[2,3,2,1],[0,3,2,0],[2,2,1,1]],[[1,1,2,1],[2,3,2,1],[0,4,2,0],[1,2,1,1]],[[1,1,2,1],[2,4,2,1],[0,3,2,0],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[0,3,2,0],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[0,3,2,0],[1,2,1,1]],[[1,1,2,1],[2,3,2,1],[0,4,2,0],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[0,3,2,0],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[0,3,2,0],[1,1,2,1]],[[2,1,2,1],[2,3,2,1],[0,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,3,2,1],[0,3,1,2],[1,3,1,0]],[[1,1,2,1],[2,3,2,1],[0,3,1,2],[2,2,1,0]],[[1,1,2,1],[2,3,2,1],[0,4,1,2],[1,2,1,0]],[[1,1,2,1],[2,4,2,1],[0,3,1,2],[1,2,1,0]],[[1,1,2,1],[3,3,2,1],[0,3,1,2],[1,2,1,0]],[[2,1,2,1],[2,3,2,1],[0,3,1,2],[1,2,1,0]],[[1,1,2,1],[2,3,2,1],[0,3,1,2],[1,3,0,1]],[[1,1,2,1],[2,3,2,1],[0,3,1,2],[2,2,0,1]],[[1,1,2,1],[2,3,2,1],[0,4,1,2],[1,2,0,1]],[[1,1,2,1],[2,4,2,1],[0,3,1,2],[1,2,0,1]],[[1,1,2,1],[3,3,2,1],[0,3,1,2],[1,2,0,1]],[[2,1,2,1],[2,3,2,1],[0,3,1,2],[1,2,0,1]],[[1,1,2,1],[2,3,2,1],[0,4,1,2],[1,1,2,0]],[[2,1,2,1],[2,2,2,2],[2,3,0,0],[1,2,2,0]],[[1,1,2,1],[3,2,2,2],[2,3,0,0],[1,2,2,0]],[[1,1,2,1],[2,2,2,2],[3,3,0,0],[1,2,2,0]],[[1,1,2,1],[2,2,2,2],[2,3,0,0],[2,2,2,0]],[[1,1,2,1],[2,2,2,2],[2,3,0,0],[1,3,2,0]],[[1,1,2,1],[2,4,2,1],[0,3,1,2],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[0,3,1,2],[1,1,2,0]],[[2,1,2,1],[2,3,2,1],[0,3,1,2],[1,1,2,0]],[[1,1,2,1],[2,3,2,1],[0,4,1,2],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[0,3,1,2],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[0,3,1,2],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[0,3,1,2],[1,1,1,1]],[[1,1,2,1],[2,3,2,1],[0,3,1,1],[1,2,3,0]],[[1,1,2,1],[2,3,2,1],[0,3,1,1],[1,3,2,0]],[[1,1,2,1],[2,3,2,1],[0,3,1,1],[2,2,2,0]],[[1,1,2,1],[2,3,2,1],[0,4,1,1],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[0,3,1,1],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[0,3,1,1],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[0,3,1,1],[1,2,2,0]],[[1,1,2,1],[2,3,2,1],[0,3,1,0],[1,2,2,2]],[[1,1,2,1],[2,3,2,1],[0,3,1,0],[1,2,3,1]],[[1,1,2,1],[2,3,2,1],[0,3,1,0],[1,3,2,1]],[[1,1,2,1],[2,3,2,1],[0,3,1,0],[2,2,2,1]],[[1,1,2,1],[2,3,2,1],[0,4,1,0],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[0,3,1,0],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[0,3,1,0],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[0,3,1,0],[1,2,2,1]],[[1,1,2,1],[2,3,2,1],[0,3,0,2],[1,2,3,0]],[[1,1,2,1],[2,3,2,1],[0,3,0,2],[1,3,2,0]],[[1,1,2,1],[2,3,2,1],[0,3,0,2],[2,2,2,0]],[[1,1,2,1],[2,3,2,1],[0,4,0,2],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[0,3,0,2],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[0,3,0,2],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[0,3,0,2],[1,2,2,0]],[[1,1,2,1],[2,3,2,1],[0,3,0,2],[1,3,1,1]],[[1,1,2,1],[2,3,2,1],[0,3,0,2],[2,2,1,1]],[[1,1,2,1],[2,3,2,1],[0,4,0,2],[1,2,1,1]],[[2,1,2,1],[2,2,2,2],[2,3,1,0],[0,2,2,0]],[[1,1,2,1],[3,2,2,2],[2,3,1,0],[0,2,2,0]],[[1,1,2,1],[2,2,2,2],[3,3,1,0],[0,2,2,0]],[[1,1,2,1],[2,2,2,2],[2,4,1,0],[0,2,2,0]],[[1,1,2,1],[2,2,2,2],[2,3,1,0],[0,3,2,0]],[[2,1,2,1],[2,2,2,2],[2,3,1,0],[1,1,2,0]],[[1,1,2,1],[3,2,2,2],[2,3,1,0],[1,1,2,0]],[[1,1,2,1],[2,2,2,2],[3,3,1,0],[1,1,2,0]],[[1,1,2,1],[2,2,2,2],[2,4,1,0],[1,1,2,0]],[[1,1,2,1],[2,2,2,2],[2,3,1,0],[2,1,2,0]],[[1,1,2,1],[2,4,2,1],[0,3,0,2],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[0,3,0,2],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[0,3,0,2],[1,2,1,1]],[[1,1,2,1],[2,3,2,1],[0,4,0,2],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[0,3,0,2],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[0,3,0,2],[1,1,2,1]],[[2,1,2,1],[2,3,2,1],[0,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,3,2,1],[0,3,0,1],[1,2,2,2]],[[1,1,2,1],[2,3,2,1],[0,3,0,1],[1,2,3,1]],[[1,1,2,1],[2,3,2,1],[0,3,0,1],[1,3,2,1]],[[1,1,2,1],[2,3,2,1],[0,3,0,1],[2,2,2,1]],[[1,1,2,1],[2,3,2,1],[0,4,0,1],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[0,3,0,1],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[0,3,0,1],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[0,3,0,1],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[0,2,3,1],[1,2,1,0]],[[1,1,2,1],[3,3,2,1],[0,2,3,1],[1,2,1,0]],[[2,1,2,1],[2,3,2,1],[0,2,3,1],[1,2,1,0]],[[1,1,2,1],[2,4,2,1],[0,2,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,2,1],[0,2,3,1],[1,2,0,1]],[[2,1,2,1],[2,3,2,1],[0,2,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,2,1],[0,2,3,1],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[0,2,3,1],[1,1,2,0]],[[2,1,2,1],[2,3,2,1],[0,2,3,1],[1,1,2,0]],[[1,1,2,1],[2,4,2,1],[0,2,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[0,2,3,1],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[0,2,3,1],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[0,2,3,0],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[0,2,3,0],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[0,2,3,0],[1,2,1,1]],[[1,1,2,1],[2,4,2,1],[0,2,3,0],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[0,2,3,0],[1,1,2,1]],[[2,1,2,1],[2,3,2,1],[0,2,3,0],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[0,2,2,2],[1,2,1,0]],[[1,1,2,1],[3,3,2,1],[0,2,2,2],[1,2,1,0]],[[2,1,2,1],[2,3,2,1],[0,2,2,2],[1,2,1,0]],[[1,1,2,1],[2,4,2,1],[0,2,2,2],[1,2,0,1]],[[1,1,2,1],[3,3,2,1],[0,2,2,2],[1,2,0,1]],[[2,1,2,1],[2,3,2,1],[0,2,2,2],[1,2,0,1]],[[1,1,2,1],[2,4,2,1],[0,2,2,2],[1,1,2,0]],[[1,1,2,1],[3,3,2,1],[0,2,2,2],[1,1,2,0]],[[2,1,2,1],[2,3,2,1],[0,2,2,2],[1,1,2,0]],[[1,1,2,1],[2,4,2,1],[0,2,2,2],[1,1,1,1]],[[1,1,2,1],[3,3,2,1],[0,2,2,2],[1,1,1,1]],[[2,1,2,1],[2,3,2,1],[0,2,2,2],[1,1,1,1]],[[1,1,2,1],[2,4,2,1],[0,2,1,2],[1,1,2,1]],[[1,1,2,1],[3,3,2,1],[0,2,1,2],[1,1,2,1]],[[2,1,2,1],[2,3,2,1],[0,2,1,2],[1,1,2,1]],[[1,1,2,1],[2,4,2,1],[0,2,0,2],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[0,2,0,2],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[0,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[0,1,3,1],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[0,1,3,1],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[0,1,3,1],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[0,1,3,1],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[0,1,3,1],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[0,1,3,1],[1,2,1,1]],[[1,1,2,1],[2,4,2,1],[0,1,3,0],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[0,1,3,0],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[0,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,4,2,1],[0,1,2,2],[1,2,2,0]],[[1,1,2,1],[3,3,2,1],[0,1,2,2],[1,2,2,0]],[[2,1,2,1],[2,3,2,1],[0,1,2,2],[1,2,2,0]],[[1,1,2,1],[2,4,2,1],[0,1,2,2],[1,2,1,1]],[[1,1,2,1],[3,3,2,1],[0,1,2,2],[1,2,1,1]],[[2,1,2,1],[2,3,2,1],[0,1,2,2],[1,2,1,1]],[[1,1,2,1],[2,4,2,1],[0,1,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,2,1],[0,1,1,2],[1,2,2,1]],[[2,1,2,1],[2,3,2,1],[0,1,1,2],[1,2,2,1]],[[2,1,2,1],[2,2,2,2],[2,3,2,0],[0,1,2,0]],[[1,1,2,1],[3,2,2,2],[2,3,2,0],[0,1,2,0]],[[1,1,2,1],[2,2,2,2],[3,3,2,0],[0,1,2,0]],[[1,1,2,1],[2,2,2,2],[2,4,2,0],[0,1,2,0]],[[2,1,2,1],[2,2,2,2],[2,3,2,0],[0,2,0,1]],[[1,1,2,1],[3,2,2,2],[2,3,2,0],[0,2,0,1]],[[1,1,2,1],[2,2,2,2],[3,3,2,0],[0,2,0,1]],[[1,1,2,1],[2,2,2,2],[2,4,2,0],[0,2,0,1]],[[2,1,2,1],[2,2,2,2],[2,3,2,0],[0,2,1,0]],[[1,1,2,1],[3,2,2,2],[2,3,2,0],[0,2,1,0]],[[1,1,2,1],[2,2,2,2],[3,3,2,0],[0,2,1,0]],[[1,1,2,1],[2,2,2,2],[2,4,2,0],[0,2,1,0]],[[1,1,2,1],[2,2,2,2],[2,3,2,0],[0,3,1,0]],[[1,1,2,1],[2,3,2,0],[3,3,3,2],[1,0,0,0]],[[1,1,2,1],[2,4,2,0],[2,3,3,2],[1,0,0,0]],[[1,1,2,1],[3,3,2,0],[2,3,3,2],[1,0,0,0]],[[2,1,2,1],[2,2,2,2],[2,3,2,0],[1,0,2,0]],[[1,1,2,1],[3,2,2,2],[2,3,2,0],[1,0,2,0]],[[1,1,2,1],[2,2,2,2],[3,3,2,0],[1,0,2,0]],[[1,1,2,1],[2,2,2,2],[2,4,2,0],[1,0,2,0]],[[1,1,2,1],[2,2,2,2],[2,3,2,0],[2,0,2,0]],[[2,1,2,1],[2,2,2,2],[2,3,2,0],[1,1,0,1]],[[1,1,2,1],[3,2,2,2],[2,3,2,0],[1,1,0,1]],[[1,1,2,1],[2,2,2,2],[3,3,2,0],[1,1,0,1]],[[1,1,2,1],[2,2,2,2],[2,4,2,0],[1,1,0,1]],[[1,1,2,1],[2,2,2,2],[2,3,2,0],[2,1,0,1]],[[2,1,2,1],[2,2,2,2],[2,3,2,0],[1,1,1,0]],[[1,1,2,1],[3,2,2,2],[2,3,2,0],[1,1,1,0]],[[1,1,2,1],[2,2,2,2],[3,3,2,0],[1,1,1,0]],[[1,1,2,1],[2,2,2,2],[2,4,2,0],[1,1,1,0]],[[1,1,2,1],[2,2,2,2],[2,3,2,0],[2,1,1,0]],[[2,1,2,1],[2,3,2,0],[2,3,3,2],[1,0,0,0]],[[2,1,2,1],[2,2,2,2],[2,3,2,0],[1,2,0,0]],[[1,1,2,1],[3,2,2,2],[2,3,2,0],[1,2,0,0]],[[1,1,2,1],[2,2,2,2],[3,3,2,0],[1,2,0,0]],[[1,1,2,1],[2,2,2,2],[2,4,2,0],[1,2,0,0]],[[1,1,2,1],[2,2,2,2],[2,3,2,0],[2,2,0,0]],[[1,1,2,1],[2,3,2,0],[3,3,2,2],[1,0,1,0]],[[1,1,2,1],[2,4,2,0],[2,3,2,2],[1,0,1,0]],[[1,1,2,1],[3,3,2,0],[2,3,2,2],[1,0,1,0]],[[2,1,2,1],[2,3,2,0],[2,3,2,2],[1,0,1,0]],[[1,1,2,1],[2,3,2,0],[3,3,2,2],[1,0,0,1]],[[1,1,2,1],[2,4,2,0],[2,3,2,2],[1,0,0,1]],[[1,1,2,1],[3,3,2,0],[2,3,2,2],[1,0,0,1]],[[2,1,2,1],[2,3,2,0],[2,3,2,2],[1,0,0,1]],[[1,1,2,1],[2,3,2,0],[3,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,4,2,0],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[3,3,2,0],[2,3,2,1],[1,0,1,1]],[[2,1,2,1],[2,3,2,0],[2,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,3,2,0],[2,3,1,2],[2,2,0,0]],[[1,1,2,1],[2,3,2,0],[3,3,1,2],[1,2,0,0]],[[1,1,2,1],[2,4,2,0],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[3,3,2,0],[2,3,1,2],[1,2,0,0]],[[2,1,2,1],[2,3,2,0],[2,3,1,2],[1,2,0,0]],[[1,1,2,1],[2,3,2,0],[2,3,1,2],[2,1,1,0]],[[1,1,2,1],[2,3,2,0],[3,3,1,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,0],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,0],[2,3,1,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,0],[2,3,1,2],[1,1,1,0]],[[1,1,2,1],[2,3,2,0],[2,3,1,2],[2,1,0,1]],[[1,1,2,1],[2,3,2,0],[3,3,1,2],[1,1,0,1]],[[1,1,2,1],[2,4,2,0],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,0],[2,3,1,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,0],[2,3,1,2],[1,1,0,1]],[[1,1,2,1],[2,3,2,0],[3,3,1,2],[0,2,1,0]],[[1,1,2,1],[2,4,2,0],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,0],[2,3,1,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,0],[2,3,1,2],[0,2,1,0]],[[1,1,2,1],[2,3,2,0],[3,3,1,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,0],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,0],[2,3,1,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,0],[2,3,1,2],[0,2,0,1]],[[1,1,2,1],[2,3,2,0],[2,3,1,1],[2,2,0,1]],[[1,1,2,1],[2,3,2,0],[3,3,1,1],[1,2,0,1]],[[1,1,2,1],[2,4,2,0],[2,3,1,1],[1,2,0,1]],[[1,1,2,1],[3,3,2,0],[2,3,1,1],[1,2,0,1]],[[2,1,2,1],[2,3,2,0],[2,3,1,1],[1,2,0,1]],[[1,1,2,1],[2,3,2,0],[2,3,1,1],[2,1,1,1]],[[1,1,2,1],[2,3,2,0],[3,3,1,1],[1,1,1,1]],[[1,1,2,1],[2,4,2,0],[2,3,1,1],[1,1,1,1]],[[1,1,2,1],[3,3,2,0],[2,3,1,1],[1,1,1,1]],[[2,1,2,1],[2,3,2,0],[2,3,1,1],[1,1,1,1]],[[1,1,2,1],[2,3,2,0],[3,3,1,1],[0,2,1,1]],[[1,1,2,1],[2,4,2,0],[2,3,1,1],[0,2,1,1]],[[1,1,2,1],[3,3,2,0],[2,3,1,1],[0,2,1,1]],[[2,1,2,1],[2,3,2,0],[2,3,1,1],[0,2,1,1]],[[1,1,2,1],[2,3,2,0],[2,3,0,2],[2,2,1,0]],[[1,1,2,1],[2,3,2,0],[3,3,0,2],[1,2,1,0]],[[1,1,2,1],[2,4,2,0],[2,3,0,2],[1,2,1,0]],[[1,1,2,1],[3,3,2,0],[2,3,0,2],[1,2,1,0]],[[2,1,2,1],[2,3,2,0],[2,3,0,2],[1,2,1,0]],[[1,1,2,1],[2,3,2,0],[2,3,0,2],[2,1,2,0]],[[1,1,2,1],[2,3,2,0],[3,3,0,2],[1,1,2,0]],[[1,1,2,1],[2,4,2,0],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[3,3,2,0],[2,3,0,2],[1,1,2,0]],[[2,1,2,1],[2,3,2,0],[2,3,0,2],[1,1,2,0]],[[1,1,2,1],[2,3,2,0],[3,3,0,2],[0,2,2,0]],[[1,1,2,1],[2,4,2,0],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[3,3,2,0],[2,3,0,2],[0,2,2,0]],[[2,1,2,1],[2,3,2,0],[2,3,0,2],[0,2,2,0]],[[1,1,2,1],[2,3,2,0],[2,3,0,1],[2,2,1,1]],[[1,1,2,1],[2,3,2,0],[3,3,0,1],[1,2,1,1]],[[1,1,2,1],[2,4,2,0],[2,3,0,1],[1,2,1,1]],[[1,1,2,1],[3,3,2,0],[2,3,0,1],[1,2,1,1]],[[2,1,2,1],[2,3,2,0],[2,3,0,1],[1,2,1,1]],[[1,1,2,1],[2,3,2,0],[2,3,0,1],[2,1,2,1]],[[1,1,2,1],[2,3,2,0],[3,3,0,1],[1,1,2,1]],[[1,1,2,1],[2,4,2,0],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[3,3,2,0],[2,3,0,1],[1,1,2,1]],[[2,1,2,1],[2,3,2,0],[2,3,0,1],[1,1,2,1]],[[1,1,2,1],[2,3,2,0],[3,3,0,1],[0,2,2,1]],[[1,1,2,1],[2,4,2,0],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[3,3,2,0],[2,3,0,1],[0,2,2,1]],[[2,1,2,1],[2,3,2,0],[2,3,0,1],[0,2,2,1]],[[1,1,2,1],[2,3,2,0],[2,3,0,0],[1,3,2,1]],[[1,1,2,1],[2,3,2,0],[2,3,0,0],[2,2,2,1]],[[1,1,2,1],[2,3,2,0],[3,3,0,0],[1,2,2,1]],[[1,1,2,1],[3,3,2,0],[2,3,0,0],[1,2,2,1]],[[2,1,2,1],[2,3,2,0],[2,3,0,0],[1,2,2,1]],[[1,1,2,1],[2,3,2,0],[2,2,3,2],[2,1,0,0]],[[1,1,2,1],[2,3,2,0],[3,2,3,2],[1,1,0,0]],[[1,1,2,1],[2,4,2,0],[2,2,3,2],[1,1,0,0]],[[1,1,2,1],[3,3,2,0],[2,2,3,2],[1,1,0,0]],[[2,1,2,1],[2,3,2,0],[2,2,3,2],[1,1,0,0]],[[1,1,2,1],[2,3,2,0],[3,2,3,2],[0,2,0,0]],[[1,1,2,1],[2,4,2,0],[2,2,3,2],[0,2,0,0]],[[1,1,2,1],[3,3,2,0],[2,2,3,2],[0,2,0,0]],[[2,1,2,1],[2,3,2,0],[2,2,3,2],[0,2,0,0]],[[2,1,2,1],[2,2,2,2],[2,3,3,0],[0,2,0,0]],[[1,1,2,1],[3,2,2,2],[2,3,3,0],[0,2,0,0]],[[1,1,2,1],[2,2,2,2],[3,3,3,0],[0,2,0,0]],[[1,1,2,1],[2,2,2,2],[2,4,3,0],[0,2,0,0]],[[2,1,2,1],[2,2,2,2],[2,3,3,0],[1,1,0,0]],[[1,1,2,1],[3,2,2,2],[2,3,3,0],[1,1,0,0]],[[1,1,2,1],[2,2,2,2],[3,3,3,0],[1,1,0,0]],[[1,1,2,1],[2,2,2,2],[2,4,3,0],[1,1,0,0]],[[1,1,2,1],[2,2,2,2],[2,3,3,0],[2,1,0,0]],[[1,1,2,1],[2,3,2,0],[2,2,2,2],[2,2,0,0]],[[1,1,2,1],[2,3,2,0],[3,2,2,2],[1,2,0,0]],[[1,1,2,1],[2,4,2,0],[2,2,2,2],[1,2,0,0]],[[1,1,2,1],[3,3,2,0],[2,2,2,2],[1,2,0,0]],[[2,1,2,1],[2,3,2,0],[2,2,2,2],[1,2,0,0]],[[1,1,2,1],[2,3,2,0],[2,2,2,2],[2,1,1,0]],[[1,1,2,1],[2,3,2,0],[3,2,2,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,0],[2,2,2,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,0],[2,2,2,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,0],[2,2,2,2],[1,1,1,0]],[[1,1,2,1],[2,3,2,0],[2,2,2,2],[2,1,0,1]],[[1,1,2,1],[2,3,2,0],[3,2,2,2],[1,1,0,1]],[[1,1,2,1],[2,4,2,0],[2,2,2,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,0],[2,2,2,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,0],[2,2,2,2],[1,1,0,1]],[[1,1,2,1],[2,3,2,0],[2,2,2,2],[2,0,2,0]],[[1,1,2,1],[2,3,2,0],[3,2,2,2],[1,0,2,0]],[[1,1,2,1],[2,4,2,0],[2,2,2,2],[1,0,2,0]],[[1,1,2,1],[3,3,2,0],[2,2,2,2],[1,0,2,0]],[[2,1,2,1],[2,3,2,0],[2,2,2,2],[1,0,2,0]],[[1,1,2,1],[2,3,2,0],[2,2,2,2],[2,0,1,1]],[[1,1,2,1],[2,3,2,0],[3,2,2,2],[1,0,1,1]],[[1,1,2,1],[2,4,2,0],[2,2,2,2],[1,0,1,1]],[[1,1,2,1],[3,3,2,0],[2,2,2,2],[1,0,1,1]],[[2,1,2,1],[2,3,2,0],[2,2,2,2],[1,0,1,1]],[[1,1,2,1],[2,3,2,0],[3,2,2,2],[0,2,1,0]],[[1,1,2,1],[2,4,2,0],[2,2,2,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,0],[2,2,2,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,0],[2,2,2,2],[0,2,1,0]],[[1,1,2,1],[2,3,2,0],[3,2,2,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,0],[2,2,2,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,0],[2,2,2,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,0],[2,2,2,2],[0,2,0,1]],[[1,1,2,1],[2,3,2,0],[3,2,2,2],[0,1,2,0]],[[1,1,2,1],[2,4,2,0],[2,2,2,2],[0,1,2,0]],[[1,1,2,1],[3,3,2,0],[2,2,2,2],[0,1,2,0]],[[2,1,2,1],[2,3,2,0],[2,2,2,2],[0,1,2,0]],[[1,1,2,1],[2,3,2,0],[3,2,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,2,0],[2,2,2,2],[0,1,1,1]],[[1,1,2,1],[3,3,2,0],[2,2,2,2],[0,1,1,1]],[[2,1,2,1],[2,3,2,0],[2,2,2,2],[0,1,1,1]],[[1,1,2,1],[2,3,2,0],[2,2,2,1],[2,2,0,1]],[[1,1,2,1],[2,3,2,0],[3,2,2,1],[1,2,0,1]],[[1,1,2,1],[2,4,2,0],[2,2,2,1],[1,2,0,1]],[[1,1,2,1],[3,3,2,0],[2,2,2,1],[1,2,0,1]],[[2,1,2,1],[2,3,2,0],[2,2,2,1],[1,2,0,1]],[[1,1,2,1],[2,3,2,0],[2,2,2,1],[2,1,1,1]],[[1,1,2,1],[2,3,2,0],[3,2,2,1],[1,1,1,1]],[[1,1,2,1],[2,4,2,0],[2,2,2,1],[1,1,1,1]],[[1,1,2,1],[3,3,2,0],[2,2,2,1],[1,1,1,1]],[[2,1,2,1],[2,3,2,0],[2,2,2,1],[1,1,1,1]],[[1,1,2,1],[2,3,2,0],[2,2,2,1],[2,0,2,1]],[[1,1,2,1],[2,3,2,0],[3,2,2,1],[1,0,2,1]],[[1,1,2,1],[2,4,2,0],[2,2,2,1],[1,0,2,1]],[[1,1,2,1],[3,3,2,0],[2,2,2,1],[1,0,2,1]],[[2,1,2,1],[2,3,2,0],[2,2,2,1],[1,0,2,1]],[[1,1,2,1],[2,3,2,0],[3,2,2,1],[0,2,1,1]],[[1,1,2,1],[2,4,2,0],[2,2,2,1],[0,2,1,1]],[[1,1,2,1],[3,3,2,0],[2,2,2,1],[0,2,1,1]],[[2,1,2,1],[2,3,2,0],[2,2,2,1],[0,2,1,1]],[[1,1,2,1],[2,3,2,0],[3,2,2,1],[0,1,2,1]],[[1,1,2,1],[2,4,2,0],[2,2,2,1],[0,1,2,1]],[[1,1,2,1],[3,3,2,0],[2,2,2,1],[0,1,2,1]],[[2,1,2,1],[2,3,2,0],[2,2,2,1],[0,1,2,1]],[[1,1,2,1],[2,3,2,0],[2,2,1,2],[2,1,2,0]],[[1,1,2,1],[2,3,2,0],[3,2,1,2],[1,1,2,0]],[[1,1,2,1],[2,4,2,0],[2,2,1,2],[1,1,2,0]],[[1,1,2,1],[3,3,2,0],[2,2,1,2],[1,1,2,0]],[[2,1,2,1],[2,3,2,0],[2,2,1,2],[1,1,2,0]],[[1,1,2,1],[2,3,2,0],[3,2,1,2],[0,2,2,0]],[[1,1,2,1],[2,4,2,0],[2,2,1,2],[0,2,2,0]],[[1,1,2,1],[3,3,2,0],[2,2,1,2],[0,2,2,0]],[[2,1,2,1],[2,3,2,0],[2,2,1,2],[0,2,2,0]],[[1,1,2,1],[2,3,2,0],[2,2,1,1],[2,1,2,1]],[[1,1,2,1],[2,3,2,0],[3,2,1,1],[1,1,2,1]],[[1,1,2,1],[2,4,2,0],[2,2,1,1],[1,1,2,1]],[[1,1,2,1],[3,3,2,0],[2,2,1,1],[1,1,2,1]],[[2,1,2,1],[2,3,2,0],[2,2,1,1],[1,1,2,1]],[[1,1,2,1],[2,3,2,0],[3,2,1,1],[0,2,2,1]],[[1,1,2,1],[2,4,2,0],[2,2,1,1],[0,2,2,1]],[[1,1,2,1],[3,3,2,0],[2,2,1,1],[0,2,2,1]],[[2,1,2,1],[2,3,2,0],[2,2,1,1],[0,2,2,1]],[[1,1,2,1],[2,3,2,0],[2,2,0,2],[1,3,2,0]],[[1,1,2,1],[2,3,2,0],[2,2,0,2],[2,2,2,0]],[[1,1,2,1],[2,3,2,0],[3,2,0,2],[1,2,2,0]],[[1,1,2,1],[2,4,2,0],[2,2,0,2],[1,2,2,0]],[[1,1,2,1],[3,3,2,0],[2,2,0,2],[1,2,2,0]],[[2,1,2,1],[2,3,2,0],[2,2,0,2],[1,2,2,0]],[[1,1,2,1],[2,3,2,0],[2,2,0,2],[2,1,2,1]],[[1,1,2,1],[2,3,2,0],[3,2,0,2],[1,1,2,1]],[[1,1,2,1],[2,4,2,0],[2,2,0,2],[1,1,2,1]],[[1,1,2,1],[3,3,2,0],[2,2,0,2],[1,1,2,1]],[[2,1,2,1],[2,3,2,0],[2,2,0,2],[1,1,2,1]],[[1,1,2,1],[2,3,2,0],[3,2,0,2],[0,2,2,1]],[[1,1,2,1],[2,4,2,0],[2,2,0,2],[0,2,2,1]],[[1,1,2,1],[3,3,2,0],[2,2,0,2],[0,2,2,1]],[[2,1,2,1],[2,3,2,0],[2,2,0,2],[0,2,2,1]],[[1,1,2,1],[2,3,2,0],[2,2,0,1],[1,3,2,1]],[[1,1,2,1],[2,3,2,0],[2,2,0,1],[2,2,2,1]],[[1,1,2,1],[2,3,2,0],[3,2,0,1],[1,2,2,1]],[[1,1,2,1],[2,4,2,0],[2,2,0,1],[1,2,2,1]],[[1,1,2,1],[3,3,2,0],[2,2,0,1],[1,2,2,1]],[[2,1,2,1],[2,3,2,0],[2,2,0,1],[1,2,2,1]],[[1,1,2,1],[2,3,2,0],[2,1,3,2],[2,1,1,0]],[[1,1,2,1],[2,3,2,0],[3,1,3,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,0],[2,1,3,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,0],[2,1,3,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,0],[2,1,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,2,0],[2,1,3,2],[2,1,0,1]],[[1,1,2,1],[2,3,2,0],[3,1,3,2],[1,1,0,1]],[[1,1,2,1],[2,4,2,0],[2,1,3,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,0],[2,1,3,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,0],[2,1,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,2,0],[2,1,3,2],[2,0,2,0]],[[1,1,2,1],[2,3,2,0],[3,1,3,2],[1,0,2,0]],[[1,1,2,1],[2,4,2,0],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[3,3,2,0],[2,1,3,2],[1,0,2,0]],[[2,1,2,1],[2,3,2,0],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,2,0],[2,1,3,2],[2,0,1,1]],[[1,1,2,1],[2,3,2,0],[3,1,3,2],[1,0,1,1]],[[1,1,2,1],[2,4,2,0],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[3,3,2,0],[2,1,3,2],[1,0,1,1]],[[2,1,2,1],[2,3,2,0],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,2,0],[3,1,3,2],[0,2,1,0]],[[1,1,2,1],[2,4,2,0],[2,1,3,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,0],[2,1,3,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,0],[2,1,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,2,0],[3,1,3,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,0],[2,1,3,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,0],[2,1,3,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,0],[2,1,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,2,0],[3,1,3,2],[0,1,2,0]],[[1,1,2,1],[2,4,2,0],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[3,3,2,0],[2,1,3,2],[0,1,2,0]],[[2,1,2,1],[2,3,2,0],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,2,0],[3,1,3,2],[0,1,1,1]],[[1,1,2,1],[2,4,2,0],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[3,3,2,0],[2,1,3,2],[0,1,1,1]],[[2,1,2,1],[2,3,2,0],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[2,4,2,0],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[3,3,2,0],[2,1,3,2],[0,0,2,1]],[[2,1,2,1],[2,3,2,0],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[2,3,2,0],[2,1,3,1],[2,1,1,1]],[[1,1,2,1],[2,3,2,0],[3,1,3,1],[1,1,1,1]],[[1,1,2,1],[2,4,2,0],[2,1,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,2,0],[2,1,3,1],[1,1,1,1]],[[2,1,2,1],[2,3,2,0],[2,1,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,2,0],[2,1,3,1],[2,0,2,1]],[[1,1,2,1],[2,3,2,0],[3,1,3,1],[1,0,2,1]],[[1,1,2,1],[2,4,2,0],[2,1,3,1],[1,0,2,1]],[[1,1,2,1],[3,3,2,0],[2,1,3,1],[1,0,2,1]],[[2,1,2,1],[2,3,2,0],[2,1,3,1],[1,0,2,1]],[[1,1,2,1],[2,3,2,0],[3,1,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,2,0],[2,1,3,1],[0,2,1,1]],[[1,1,2,1],[3,3,2,0],[2,1,3,1],[0,2,1,1]],[[2,1,2,1],[2,3,2,0],[2,1,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,2,0],[3,1,3,1],[0,1,2,1]],[[1,1,2,1],[2,4,2,0],[2,1,3,1],[0,1,2,1]],[[1,1,2,1],[3,3,2,0],[2,1,3,1],[0,1,2,1]],[[2,1,2,1],[2,3,2,0],[2,1,3,1],[0,1,2,1]],[[1,1,2,1],[2,3,2,0],[2,1,2,2],[1,3,1,0]],[[1,1,2,1],[2,3,2,0],[2,1,2,2],[2,2,1,0]],[[1,1,2,1],[2,3,2,0],[3,1,2,2],[1,2,1,0]],[[1,1,2,1],[2,4,2,0],[2,1,2,2],[1,2,1,0]],[[1,1,2,1],[3,3,2,0],[2,1,2,2],[1,2,1,0]],[[2,1,2,1],[2,3,2,0],[2,1,2,2],[1,2,1,0]],[[1,1,2,1],[2,3,2,0],[2,1,2,2],[1,3,0,1]],[[1,1,2,1],[2,3,2,0],[2,1,2,2],[2,2,0,1]],[[1,1,2,1],[2,3,2,0],[3,1,2,2],[1,2,0,1]],[[1,1,2,1],[2,4,2,0],[2,1,2,2],[1,2,0,1]],[[1,1,2,1],[3,3,2,0],[2,1,2,2],[1,2,0,1]],[[2,1,2,1],[2,3,2,0],[2,1,2,2],[1,2,0,1]],[[1,1,2,1],[2,3,2,0],[2,1,2,1],[1,3,1,1]],[[1,1,2,1],[2,3,2,0],[2,1,2,1],[2,2,1,1]],[[1,1,2,1],[2,3,2,0],[3,1,2,1],[1,2,1,1]],[[1,1,2,1],[2,4,2,0],[2,1,2,1],[1,2,1,1]],[[1,1,2,1],[3,3,2,0],[2,1,2,1],[1,2,1,1]],[[2,1,2,1],[2,3,2,0],[2,1,2,1],[1,2,1,1]],[[1,1,2,1],[2,3,2,0],[2,1,1,2],[1,2,3,0]],[[1,1,2,1],[2,3,2,0],[2,1,1,2],[1,3,2,0]],[[1,1,2,1],[2,3,2,0],[2,1,1,2],[2,2,2,0]],[[1,1,2,1],[2,3,2,0],[3,1,1,2],[1,2,2,0]],[[1,1,2,1],[2,4,2,0],[2,1,1,2],[1,2,2,0]],[[1,1,2,1],[3,3,2,0],[2,1,1,2],[1,2,2,0]],[[2,1,2,1],[2,3,2,0],[2,1,1,2],[1,2,2,0]],[[1,1,2,1],[2,3,2,0],[2,1,1,1],[1,2,2,2]],[[1,1,2,1],[2,3,2,0],[2,1,1,1],[1,2,3,1]],[[1,1,2,1],[2,3,2,0],[2,1,1,1],[1,3,2,1]],[[1,1,2,1],[2,3,2,0],[2,1,1,1],[2,2,2,1]],[[1,1,2,1],[2,3,2,0],[3,1,1,1],[1,2,2,1]],[[1,1,2,1],[2,4,2,0],[2,1,1,1],[1,2,2,1]],[[1,1,2,1],[3,3,2,0],[2,1,1,1],[1,2,2,1]],[[2,1,2,1],[2,3,2,0],[2,1,1,1],[1,2,2,1]],[[1,1,2,1],[2,3,2,0],[2,1,0,2],[1,2,2,2]],[[1,1,2,1],[2,3,2,0],[2,1,0,2],[1,2,3,1]],[[1,1,2,1],[2,3,2,0],[2,1,0,2],[1,3,2,1]],[[1,1,2,1],[2,3,2,0],[2,1,0,2],[2,2,2,1]],[[1,1,2,1],[2,3,2,0],[2,1,0,3],[1,2,2,1]],[[1,1,2,1],[2,3,2,0],[3,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,4,2,0],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[3,3,2,0],[2,1,0,2],[1,2,2,1]],[[2,1,2,1],[2,3,2,0],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,3,2,0],[2,0,3,2],[1,3,1,0]],[[1,1,2,1],[2,3,2,0],[2,0,3,2],[2,2,1,0]],[[1,1,2,1],[2,3,2,0],[3,0,3,2],[1,2,1,0]],[[1,1,2,1],[2,4,2,0],[2,0,3,2],[1,2,1,0]],[[1,1,2,1],[3,3,2,0],[2,0,3,2],[1,2,1,0]],[[2,1,2,1],[2,3,2,0],[2,0,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,2,0],[2,0,3,2],[1,3,0,1]],[[1,1,2,1],[2,3,2,0],[2,0,3,2],[2,2,0,1]],[[1,1,2,1],[2,3,2,0],[3,0,3,2],[1,2,0,1]],[[1,1,2,1],[2,4,2,0],[2,0,3,2],[1,2,0,1]],[[1,1,2,1],[3,3,2,0],[2,0,3,2],[1,2,0,1]],[[2,1,2,1],[2,3,2,0],[2,0,3,2],[1,2,0,1]],[[1,1,2,1],[2,3,2,0],[2,0,3,2],[2,1,2,0]],[[1,1,2,1],[2,3,2,0],[3,0,3,2],[1,1,2,0]],[[1,1,2,1],[2,4,2,0],[2,0,3,2],[1,1,2,0]],[[1,1,2,1],[3,3,2,0],[2,0,3,2],[1,1,2,0]],[[2,1,2,1],[2,3,2,0],[2,0,3,2],[1,1,2,0]],[[1,1,2,1],[2,3,2,0],[2,0,3,2],[2,1,1,1]],[[1,1,2,1],[2,3,2,0],[3,0,3,2],[1,1,1,1]],[[1,1,2,1],[2,4,2,0],[2,0,3,2],[1,1,1,1]],[[1,1,2,1],[3,3,2,0],[2,0,3,2],[1,1,1,1]],[[2,1,2,1],[2,3,2,0],[2,0,3,2],[1,1,1,1]],[[1,1,2,1],[2,3,2,0],[3,0,3,2],[0,2,2,0]],[[1,1,2,1],[2,4,2,0],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[3,3,2,0],[2,0,3,2],[0,2,2,0]],[[2,1,2,1],[2,3,2,0],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[2,3,2,0],[3,0,3,2],[0,2,1,1]],[[1,1,2,1],[2,4,2,0],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[3,3,2,0],[2,0,3,2],[0,2,1,1]],[[2,1,2,1],[2,3,2,0],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[2,3,2,0],[2,0,3,1],[1,3,1,1]],[[1,1,2,1],[2,3,2,0],[2,0,3,1],[2,2,1,1]],[[1,1,2,1],[2,3,2,0],[3,0,3,1],[1,2,1,1]],[[1,1,2,1],[2,4,2,0],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[3,3,2,0],[2,0,3,1],[1,2,1,1]],[[2,1,2,1],[2,3,2,0],[2,0,3,1],[1,2,1,1]],[[1,1,2,1],[2,3,2,0],[2,0,3,1],[2,1,2,1]],[[1,1,2,1],[2,3,2,0],[3,0,3,1],[1,1,2,1]],[[1,1,2,1],[2,4,2,0],[2,0,3,1],[1,1,2,1]],[[1,1,2,1],[3,3,2,0],[2,0,3,1],[1,1,2,1]],[[2,1,2,1],[2,3,2,0],[2,0,3,1],[1,1,2,1]],[[1,1,2,1],[2,3,2,0],[3,0,3,1],[0,2,2,1]],[[1,1,2,1],[2,4,2,0],[2,0,3,1],[0,2,2,1]],[[1,1,2,1],[3,3,2,0],[2,0,3,1],[0,2,2,1]],[[2,1,2,1],[2,3,2,0],[2,0,3,1],[0,2,2,1]],[[1,1,2,1],[2,3,2,0],[2,0,2,2],[1,2,3,0]],[[1,1,2,1],[2,3,2,0],[2,0,2,2],[1,3,2,0]],[[1,1,2,1],[2,3,2,0],[2,0,2,2],[2,2,2,0]],[[1,1,2,1],[2,3,2,0],[3,0,2,2],[1,2,2,0]],[[1,1,2,1],[2,4,2,0],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[3,3,2,0],[2,0,2,2],[1,2,2,0]],[[2,1,2,1],[2,3,2,0],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[2,3,2,0],[2,0,2,1],[1,2,2,2]],[[1,1,2,1],[2,3,2,0],[2,0,2,1],[1,2,3,1]],[[1,1,2,1],[2,3,2,0],[2,0,2,1],[1,3,2,1]],[[1,1,2,1],[2,3,2,0],[2,0,2,1],[2,2,2,1]],[[1,1,2,1],[2,3,2,0],[3,0,2,1],[1,2,2,1]],[[1,1,2,1],[2,4,2,0],[2,0,2,1],[1,2,2,1]],[[1,1,2,1],[3,3,2,0],[2,0,2,1],[1,2,2,1]],[[2,1,2,1],[2,3,2,0],[2,0,2,1],[1,2,2,1]],[[1,1,2,1],[2,3,2,0],[2,0,1,2],[1,2,2,2]],[[1,1,2,1],[2,3,2,0],[2,0,1,2],[1,2,3,1]],[[1,1,2,1],[2,3,2,0],[2,0,1,2],[1,3,2,1]],[[1,1,2,1],[2,3,2,0],[2,0,1,2],[2,2,2,1]],[[1,1,2,1],[2,3,2,0],[2,0,1,3],[1,2,2,1]],[[1,1,2,1],[2,3,2,0],[3,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,4,2,0],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,2,0],[2,0,1,2],[1,2,2,1]],[[2,1,2,1],[2,3,2,0],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,2,0],[1,4,3,2],[1,1,0,0]],[[1,1,2,1],[2,4,2,0],[1,3,3,2],[1,1,0,0]],[[1,1,2,1],[3,3,2,0],[1,3,3,2],[1,1,0,0]],[[2,1,2,1],[2,3,2,0],[1,3,3,2],[1,1,0,0]],[[1,1,2,1],[2,3,2,0],[1,4,3,2],[0,2,0,0]],[[1,1,2,1],[2,4,2,0],[1,3,3,2],[0,2,0,0]],[[1,1,2,1],[3,3,2,0],[1,3,3,2],[0,2,0,0]],[[2,1,2,1],[2,3,2,0],[1,3,3,2],[0,2,0,0]],[[1,1,2,1],[2,4,2,0],[1,3,3,2],[0,0,2,0]],[[1,1,2,1],[3,3,2,0],[1,3,3,2],[0,0,2,0]],[[2,1,2,1],[2,3,2,0],[1,3,3,2],[0,0,2,0]],[[1,1,2,1],[2,4,2,0],[1,3,3,2],[0,0,1,1]],[[1,1,2,1],[3,3,2,0],[1,3,3,2],[0,0,1,1]],[[2,1,2,1],[2,3,2,0],[1,3,3,2],[0,0,1,1]],[[1,1,2,1],[2,4,2,0],[1,3,3,1],[0,0,2,1]],[[1,1,2,1],[3,3,2,0],[1,3,3,1],[0,0,2,1]],[[2,1,2,1],[2,3,2,0],[1,3,3,1],[0,0,2,1]],[[1,1,2,1],[2,3,2,0],[1,4,2,2],[1,2,0,0]],[[1,1,2,1],[2,4,2,0],[1,3,2,2],[1,2,0,0]],[[1,1,2,1],[3,3,2,0],[1,3,2,2],[1,2,0,0]],[[2,1,2,1],[2,3,2,0],[1,3,2,2],[1,2,0,0]],[[1,1,2,1],[2,3,2,0],[1,4,2,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,0],[1,3,2,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,0],[1,3,2,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,0],[1,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,3,2,0],[1,4,2,2],[1,1,0,1]],[[1,1,2,1],[2,4,2,0],[1,3,2,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,0],[1,3,2,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,0],[1,3,2,2],[1,1,0,1]],[[1,1,2,1],[2,3,2,0],[1,4,2,2],[1,0,2,0]],[[1,1,2,1],[2,4,2,0],[1,3,2,2],[1,0,2,0]],[[1,1,2,1],[3,3,2,0],[1,3,2,2],[1,0,2,0]],[[2,1,2,1],[2,3,2,0],[1,3,2,2],[1,0,2,0]],[[1,1,2,1],[2,3,2,0],[1,4,2,2],[1,0,1,1]],[[1,1,2,1],[2,2,3,0],[1,4,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,3,0],[1,3,1,0],[2,2,2,1]],[[1,1,2,1],[2,2,3,0],[1,3,1,0],[1,3,2,1]],[[1,1,2,1],[2,2,3,0],[1,3,1,0],[1,2,3,1]],[[1,1,2,1],[2,2,3,0],[1,4,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,3,0],[1,3,1,1],[2,2,2,0]],[[1,1,2,1],[2,2,3,0],[1,3,1,1],[1,3,2,0]],[[1,1,2,1],[2,4,2,0],[1,3,2,2],[1,0,1,1]],[[1,1,2,1],[3,3,2,0],[1,3,2,2],[1,0,1,1]],[[2,1,2,1],[2,3,2,0],[1,3,2,2],[1,0,1,1]],[[1,1,2,1],[2,2,3,0],[1,4,2,0],[1,2,1,1]],[[1,1,2,1],[2,2,3,0],[1,3,2,0],[2,2,1,1]],[[1,1,2,1],[2,2,3,0],[1,3,2,0],[1,3,1,1]],[[1,1,2,1],[2,2,3,0],[1,4,2,1],[1,2,1,0]],[[1,1,2,1],[2,2,3,0],[1,3,2,1],[2,2,1,0]],[[1,1,2,1],[2,2,3,0],[1,3,2,1],[1,3,1,0]],[[1,1,2,1],[2,3,2,0],[1,3,2,2],[0,3,1,0]],[[1,1,2,1],[2,3,2,0],[1,4,2,2],[0,2,1,0]],[[1,1,2,1],[2,4,2,0],[1,3,2,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,0],[1,3,2,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,0],[1,3,2,2],[0,2,1,0]],[[1,1,2,1],[2,3,2,0],[1,3,2,2],[0,3,0,1]],[[1,1,2,1],[2,3,2,0],[1,4,2,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,0],[1,3,2,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,0],[1,3,2,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,0],[1,3,2,2],[0,2,0,1]],[[1,1,2,1],[2,3,2,0],[1,4,2,2],[0,1,2,0]],[[1,1,2,1],[2,2,3,0],[1,4,3,0],[1,2,1,0]],[[1,1,2,1],[2,2,3,0],[1,3,3,0],[2,2,1,0]],[[1,1,2,1],[2,2,3,0],[1,3,3,0],[1,3,1,0]],[[1,1,2,1],[2,4,2,0],[1,3,2,2],[0,1,2,0]],[[1,1,2,1],[3,3,2,0],[1,3,2,2],[0,1,2,0]],[[2,1,2,1],[2,3,2,0],[1,3,2,2],[0,1,2,0]],[[1,1,2,1],[2,3,2,0],[1,4,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,2,0],[1,3,2,2],[0,1,1,1]],[[1,1,2,1],[3,3,2,0],[1,3,2,2],[0,1,1,1]],[[2,1,2,1],[2,3,2,0],[1,3,2,2],[0,1,1,1]],[[1,1,2,1],[2,3,2,0],[1,4,2,1],[1,2,0,1]],[[1,1,2,1],[2,4,2,0],[1,3,2,1],[1,2,0,1]],[[1,1,2,1],[3,3,2,0],[1,3,2,1],[1,2,0,1]],[[2,1,2,1],[2,3,2,0],[1,3,2,1],[1,2,0,1]],[[1,1,2,1],[2,3,2,0],[1,4,2,1],[1,1,1,1]],[[1,1,2,1],[2,4,2,0],[1,3,2,1],[1,1,1,1]],[[1,1,2,1],[3,3,2,0],[1,3,2,1],[1,1,1,1]],[[2,1,2,1],[2,3,2,0],[1,3,2,1],[1,1,1,1]],[[1,1,2,1],[2,3,2,0],[1,4,2,1],[1,0,2,1]],[[1,1,2,1],[2,4,2,0],[1,3,2,1],[1,0,2,1]],[[1,1,2,1],[3,3,2,0],[1,3,2,1],[1,0,2,1]],[[2,1,2,1],[2,3,2,0],[1,3,2,1],[1,0,2,1]],[[1,1,2,1],[2,3,2,0],[1,3,2,1],[0,3,1,1]],[[1,1,2,1],[2,3,2,0],[1,4,2,1],[0,2,1,1]],[[1,1,2,1],[2,4,2,0],[1,3,2,1],[0,2,1,1]],[[1,1,2,1],[3,3,2,0],[1,3,2,1],[0,2,1,1]],[[2,1,2,1],[2,3,2,0],[1,3,2,1],[0,2,1,1]],[[1,1,2,1],[2,3,2,0],[1,4,2,1],[0,1,2,1]],[[1,1,2,1],[2,4,2,0],[1,3,2,1],[0,1,2,1]],[[1,1,2,1],[3,3,2,0],[1,3,2,1],[0,1,2,1]],[[2,1,2,1],[2,3,2,0],[1,3,2,1],[0,1,2,1]],[[1,1,2,1],[2,3,2,0],[1,4,1,2],[1,1,2,0]],[[1,1,2,1],[2,4,2,0],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[3,3,2,0],[1,3,1,2],[1,1,2,0]],[[2,1,2,1],[2,3,2,0],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[2,3,2,0],[1,3,1,2],[0,2,3,0]],[[1,1,2,1],[2,3,2,0],[1,3,1,2],[0,3,2,0]],[[1,1,2,1],[2,3,2,0],[1,4,1,2],[0,2,2,0]],[[1,1,2,1],[2,4,2,0],[1,3,1,2],[0,2,2,0]],[[1,1,2,1],[3,3,2,0],[1,3,1,2],[0,2,2,0]],[[2,1,2,1],[2,3,2,0],[1,3,1,2],[0,2,2,0]],[[1,1,2,1],[2,3,2,0],[1,4,1,1],[1,1,2,1]],[[1,1,2,1],[2,4,2,0],[1,3,1,1],[1,1,2,1]],[[1,1,2,1],[3,3,2,0],[1,3,1,1],[1,1,2,1]],[[2,1,2,1],[2,3,2,0],[1,3,1,1],[1,1,2,1]],[[1,1,2,1],[2,3,2,0],[1,3,1,1],[0,2,2,2]],[[1,1,2,1],[2,3,2,0],[1,3,1,1],[0,2,3,1]],[[1,1,2,1],[2,3,2,0],[1,3,1,1],[0,3,2,1]],[[1,1,2,1],[2,3,2,0],[1,4,1,1],[0,2,2,1]],[[1,1,2,1],[2,4,2,0],[1,3,1,1],[0,2,2,1]],[[1,1,2,1],[3,3,2,0],[1,3,1,1],[0,2,2,1]],[[2,1,2,1],[2,3,2,0],[1,3,1,1],[0,2,2,1]],[[1,1,2,1],[2,3,2,0],[1,4,0,2],[1,1,2,1]],[[1,1,2,1],[2,4,2,0],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[3,3,2,0],[1,3,0,2],[1,1,2,1]],[[2,1,2,1],[2,3,2,0],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,3,2,0],[1,3,0,2],[0,2,2,2]],[[1,1,2,1],[2,3,2,0],[1,3,0,2],[0,2,3,1]],[[1,1,2,1],[2,3,2,0],[1,3,0,2],[0,3,2,1]],[[1,1,2,1],[2,3,2,0],[1,3,0,3],[0,2,2,1]],[[1,1,2,1],[2,3,2,0],[1,4,0,2],[0,2,2,1]],[[1,1,2,1],[2,4,2,0],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[3,3,2,0],[1,3,0,2],[0,2,2,1]],[[2,1,2,1],[2,3,2,0],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,4,2,0],[1,2,3,2],[1,1,1,0]],[[1,1,2,1],[3,3,2,0],[1,2,3,2],[1,1,1,0]],[[2,1,2,1],[2,3,2,0],[1,2,3,2],[1,1,1,0]],[[1,1,2,1],[2,4,2,0],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[3,3,2,0],[1,2,3,2],[1,1,0,1]],[[2,1,2,1],[2,3,2,0],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[2,4,2,0],[1,2,3,2],[1,0,2,0]],[[1,1,2,1],[3,3,2,0],[1,2,3,2],[1,0,2,0]],[[2,1,2,1],[2,3,2,0],[1,2,3,2],[1,0,2,0]],[[1,1,2,1],[2,4,2,0],[1,2,3,2],[1,0,1,1]],[[1,1,2,1],[3,3,2,0],[1,2,3,2],[1,0,1,1]],[[2,1,2,1],[2,3,2,0],[1,2,3,2],[1,0,1,1]],[[1,1,2,1],[2,4,2,0],[1,2,3,2],[0,2,1,0]],[[1,1,2,1],[3,3,2,0],[1,2,3,2],[0,2,1,0]],[[2,1,2,1],[2,3,2,0],[1,2,3,2],[0,2,1,0]],[[1,1,2,1],[2,4,2,0],[1,2,3,2],[0,2,0,1]],[[1,1,2,1],[3,3,2,0],[1,2,3,2],[0,2,0,1]],[[2,1,2,1],[2,3,2,0],[1,2,3,2],[0,2,0,1]],[[1,1,2,1],[2,4,2,0],[1,2,3,2],[0,1,2,0]],[[1,1,2,1],[3,3,2,0],[1,2,3,2],[0,1,2,0]],[[2,1,2,1],[2,3,2,0],[1,2,3,2],[0,1,2,0]],[[1,1,2,1],[2,4,2,0],[1,2,3,2],[0,1,1,1]],[[1,1,2,1],[3,3,2,0],[1,2,3,2],[0,1,1,1]],[[2,1,2,1],[2,3,2,0],[1,2,3,2],[0,1,1,1]],[[1,1,2,1],[2,4,2,0],[1,2,3,2],[0,0,2,1]],[[1,1,2,1],[3,3,2,0],[1,2,3,2],[0,0,2,1]],[[2,1,2,1],[2,3,2,0],[1,2,3,2],[0,0,2,1]],[[1,1,2,1],[2,4,2,0],[1,2,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,2,0],[1,2,3,1],[1,1,1,1]],[[2,1,2,1],[2,3,2,0],[1,2,3,1],[1,1,1,1]],[[1,1,2,1],[2,4,2,0],[1,2,3,1],[1,0,2,1]],[[1,1,2,1],[3,3,2,0],[1,2,3,1],[1,0,2,1]],[[2,1,2,1],[2,3,2,0],[1,2,3,1],[1,0,2,1]],[[1,1,2,1],[2,4,2,0],[1,2,3,1],[0,2,1,1]],[[1,1,2,1],[3,3,2,0],[1,2,3,1],[0,2,1,1]],[[2,1,2,1],[2,3,2,0],[1,2,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,2,0],[1,2,3,1],[0,1,2,1]],[[1,1,2,1],[3,3,2,0],[1,2,3,1],[0,1,2,1]],[[2,1,2,1],[2,3,2,0],[1,2,3,1],[0,1,2,1]],[[2,1,2,1],[2,2,3,0],[2,2,1,0],[1,2,2,1]],[[1,1,2,1],[3,2,3,0],[2,2,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,3,0],[3,2,1,0],[1,2,2,1]],[[1,1,2,1],[2,2,3,0],[2,2,1,0],[2,2,2,1]],[[1,1,2,1],[2,2,3,0],[2,2,1,0],[1,3,2,1]],[[1,1,2,1],[2,2,3,0],[2,2,1,0],[1,2,3,1]],[[2,1,2,1],[2,2,3,0],[2,2,1,1],[1,2,2,0]],[[1,1,2,1],[3,2,3,0],[2,2,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,3,0],[3,2,1,1],[1,2,2,0]],[[1,1,2,1],[2,2,3,0],[2,2,1,1],[2,2,2,0]],[[1,1,2,1],[2,2,3,0],[2,2,1,1],[1,3,2,0]],[[1,1,2,1],[2,4,2,0],[1,1,3,2],[0,2,2,0]],[[1,1,2,1],[3,3,2,0],[1,1,3,2],[0,2,2,0]],[[2,1,2,1],[2,3,2,0],[1,1,3,2],[0,2,2,0]],[[1,1,2,1],[2,4,2,0],[1,1,3,2],[0,2,1,1]],[[1,1,2,1],[3,3,2,0],[1,1,3,2],[0,2,1,1]],[[2,1,2,1],[2,3,2,0],[1,1,3,2],[0,2,1,1]],[[2,1,2,1],[2,2,3,0],[2,2,2,0],[1,2,1,1]],[[1,1,2,1],[3,2,3,0],[2,2,2,0],[1,2,1,1]],[[1,1,2,1],[2,2,3,0],[3,2,2,0],[1,2,1,1]],[[1,1,2,1],[2,2,3,0],[2,2,2,0],[2,2,1,1]],[[1,1,2,1],[2,2,3,0],[2,2,2,0],[1,3,1,1]],[[2,1,2,1],[2,2,3,0],[2,2,2,1],[1,2,1,0]],[[1,1,2,1],[3,2,3,0],[2,2,2,1],[1,2,1,0]],[[1,1,2,1],[2,2,3,0],[3,2,2,1],[1,2,1,0]],[[1,1,2,1],[2,2,3,0],[2,2,2,1],[2,2,1,0]],[[1,1,2,1],[2,2,3,0],[2,2,2,1],[1,3,1,0]],[[1,1,2,1],[2,4,2,0],[1,1,3,1],[0,2,2,1]],[[1,1,2,1],[3,3,2,0],[1,1,3,1],[0,2,2,1]],[[2,1,2,1],[2,3,2,0],[1,1,3,1],[0,2,2,1]],[[1,1,2,1],[2,4,2,0],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[3,3,2,0],[1,0,3,2],[1,2,2,0]],[[2,1,2,1],[2,3,2,0],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,4,2,0],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[3,3,2,0],[1,0,3,2],[1,2,1,1]],[[2,1,2,1],[2,3,2,0],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[2,4,2,0],[1,0,3,1],[1,2,2,1]],[[1,1,2,1],[3,3,2,0],[1,0,3,1],[1,2,2,1]],[[2,1,2,1],[2,3,2,0],[1,0,3,1],[1,2,2,1]],[[2,1,2,1],[2,2,3,0],[2,2,3,0],[1,2,1,0]],[[1,1,2,1],[3,2,3,0],[2,2,3,0],[1,2,1,0]],[[1,1,2,1],[2,2,3,0],[3,2,3,0],[1,2,1,0]],[[1,1,2,1],[2,2,3,0],[2,2,3,0],[2,2,1,0]],[[1,1,2,1],[2,2,3,0],[2,2,3,0],[1,3,1,0]],[[1,1,2,1],[2,3,2,0],[0,4,3,2],[1,2,0,0]],[[1,1,2,1],[2,4,2,0],[0,3,3,2],[1,2,0,0]],[[1,1,2,1],[3,3,2,0],[0,3,3,2],[1,2,0,0]],[[2,1,2,1],[2,3,2,0],[0,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,3,2,0],[0,3,2,2],[1,3,1,0]],[[1,1,2,1],[2,3,2,0],[0,3,2,2],[2,2,1,0]],[[1,1,2,1],[2,3,2,0],[0,4,2,2],[1,2,1,0]],[[1,1,2,1],[2,4,2,0],[0,3,2,2],[1,2,1,0]],[[1,1,2,1],[3,3,2,0],[0,3,2,2],[1,2,1,0]],[[2,1,2,1],[2,3,2,0],[0,3,2,2],[1,2,1,0]],[[1,1,2,1],[2,3,2,0],[0,3,2,2],[1,3,0,1]],[[1,1,2,1],[2,3,2,0],[0,3,2,2],[2,2,0,1]],[[1,1,2,1],[2,3,2,0],[0,4,2,2],[1,2,0,1]],[[1,1,2,1],[2,4,2,0],[0,3,2,2],[1,2,0,1]],[[1,1,2,1],[3,3,2,0],[0,3,2,2],[1,2,0,1]],[[2,1,2,1],[2,3,2,0],[0,3,2,2],[1,2,0,1]],[[1,1,2,1],[2,3,2,0],[0,4,2,2],[1,1,2,0]],[[1,1,2,1],[2,4,2,0],[0,3,2,2],[1,1,2,0]],[[1,1,2,1],[3,3,2,0],[0,3,2,2],[1,1,2,0]],[[2,1,2,1],[2,3,2,0],[0,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,2,0],[0,4,2,2],[1,1,1,1]],[[1,1,2,1],[2,4,2,0],[0,3,2,2],[1,1,1,1]],[[1,1,2,1],[3,3,2,0],[0,3,2,2],[1,1,1,1]],[[2,1,2,1],[2,3,2,0],[0,3,2,2],[1,1,1,1]],[[1,1,2,1],[2,3,2,0],[0,3,2,1],[1,3,1,1]],[[1,1,2,1],[2,3,2,0],[0,3,2,1],[2,2,1,1]],[[1,1,2,1],[2,3,2,0],[0,4,2,1],[1,2,1,1]],[[1,1,2,1],[2,4,2,0],[0,3,2,1],[1,2,1,1]],[[1,1,2,1],[3,3,2,0],[0,3,2,1],[1,2,1,1]],[[2,1,2,1],[2,2,3,0],[2,3,0,0],[1,2,2,1]],[[1,1,2,1],[3,2,3,0],[2,3,0,0],[1,2,2,1]],[[1,1,2,1],[2,2,3,0],[3,3,0,0],[1,2,2,1]],[[1,1,2,1],[2,2,3,0],[2,3,0,0],[2,2,2,1]],[[1,1,2,1],[2,2,3,0],[2,3,0,0],[1,3,2,1]],[[2,1,2,1],[2,2,3,0],[2,3,0,1],[1,2,2,0]],[[1,1,2,1],[3,2,3,0],[2,3,0,1],[1,2,2,0]],[[1,1,2,1],[2,2,3,0],[3,3,0,1],[1,2,2,0]],[[1,1,2,1],[2,2,3,0],[2,3,0,1],[2,2,2,0]],[[1,1,2,1],[2,2,3,0],[2,3,0,1],[1,3,2,0]],[[2,1,2,1],[2,3,2,0],[0,3,2,1],[1,2,1,1]],[[1,1,2,1],[2,3,2,0],[0,4,2,1],[1,1,2,1]],[[1,1,2,1],[2,4,2,0],[0,3,2,1],[1,1,2,1]],[[1,1,2,1],[3,3,2,0],[0,3,2,1],[1,1,2,1]],[[2,1,2,1],[2,3,2,0],[0,3,2,1],[1,1,2,1]],[[2,1,2,1],[2,2,3,0],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[3,2,3,0],[2,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,2,3,0],[3,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,2,3,0],[2,4,1,0],[0,2,2,1]],[[1,1,2,1],[2,2,3,0],[2,3,1,0],[0,3,2,1]],[[1,1,2,1],[2,2,3,0],[2,3,1,0],[0,2,3,1]],[[2,1,2,1],[2,2,3,0],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[3,2,3,0],[2,3,1,0],[1,1,2,1]],[[1,1,2,1],[2,2,3,0],[3,3,1,0],[1,1,2,1]],[[1,1,2,1],[2,2,3,0],[2,4,1,0],[1,1,2,1]],[[1,1,2,1],[2,2,3,0],[2,3,1,0],[2,1,2,1]],[[2,1,2,1],[2,2,3,0],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[3,2,3,0],[2,3,1,1],[0,2,2,0]],[[1,1,2,1],[2,2,3,0],[3,3,1,1],[0,2,2,0]],[[1,1,2,1],[2,2,3,0],[2,4,1,1],[0,2,2,0]],[[1,1,2,1],[2,2,3,0],[2,3,1,1],[0,3,2,0]],[[2,1,2,1],[2,2,3,0],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[3,2,3,0],[2,3,1,1],[1,1,2,0]],[[1,1,2,1],[2,2,3,0],[3,3,1,1],[1,1,2,0]],[[1,1,2,1],[2,2,3,0],[2,4,1,1],[1,1,2,0]],[[1,1,2,1],[2,2,3,0],[2,3,1,1],[2,1,2,0]],[[1,1,2,1],[2,3,2,0],[0,3,1,2],[1,2,3,0]],[[1,1,2,1],[2,3,2,0],[0,3,1,2],[1,3,2,0]],[[1,1,2,1],[2,3,2,0],[0,3,1,2],[2,2,2,0]],[[1,1,2,1],[2,3,2,0],[0,4,1,2],[1,2,2,0]],[[1,1,2,1],[2,4,2,0],[0,3,1,2],[1,2,2,0]],[[1,1,2,1],[3,3,2,0],[0,3,1,2],[1,2,2,0]],[[2,1,2,1],[2,3,2,0],[0,3,1,2],[1,2,2,0]],[[1,1,2,1],[2,3,2,0],[0,3,1,1],[1,2,2,2]],[[1,1,2,1],[2,3,2,0],[0,3,1,1],[1,2,3,1]],[[1,1,2,1],[2,3,2,0],[0,3,1,1],[1,3,2,1]],[[1,1,2,1],[2,3,2,0],[0,3,1,1],[2,2,2,1]],[[1,1,2,1],[2,3,2,0],[0,4,1,1],[1,2,2,1]],[[1,1,2,1],[2,4,2,0],[0,3,1,1],[1,2,2,1]],[[1,1,2,1],[3,3,2,0],[0,3,1,1],[1,2,2,1]],[[2,1,2,1],[2,3,2,0],[0,3,1,1],[1,2,2,1]],[[1,1,2,1],[2,3,2,0],[0,3,0,2],[1,2,2,2]],[[1,1,2,1],[2,3,2,0],[0,3,0,2],[1,2,3,1]],[[1,1,2,1],[2,3,2,0],[0,3,0,2],[1,3,2,1]],[[1,1,2,1],[2,3,2,0],[0,3,0,2],[2,2,2,1]],[[1,1,2,1],[2,3,2,0],[0,3,0,3],[1,2,2,1]],[[1,1,2,1],[2,3,2,0],[0,4,0,2],[1,2,2,1]],[[1,1,2,1],[2,4,2,0],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[3,3,2,0],[0,3,0,2],[1,2,2,1]],[[2,1,2,1],[2,3,2,0],[0,3,0,2],[1,2,2,1]],[[2,1,2,1],[2,2,3,0],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[3,2,3,0],[2,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,2,3,0],[3,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,2,3,0],[2,4,2,0],[0,1,2,1]],[[2,1,2,1],[2,2,3,0],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[3,2,3,0],[2,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,2,3,0],[3,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,2,3,0],[2,4,2,0],[0,2,1,1]],[[1,1,2,1],[2,2,3,0],[2,3,2,0],[0,3,1,1]],[[2,1,2,1],[2,2,3,0],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[3,2,3,0],[2,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,2,3,0],[3,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,2,3,0],[2,4,2,0],[1,0,2,1]],[[1,1,2,1],[2,2,3,0],[2,3,2,0],[2,0,2,1]],[[2,1,2,1],[2,2,3,0],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[3,2,3,0],[2,3,2,0],[1,1,1,1]],[[1,1,2,1],[2,2,3,0],[3,3,2,0],[1,1,1,1]],[[1,1,2,1],[2,2,3,0],[2,4,2,0],[1,1,1,1]],[[1,1,2,1],[2,2,3,0],[2,3,2,0],[2,1,1,1]],[[2,1,2,1],[2,2,3,0],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[3,2,3,0],[2,3,2,0],[1,2,0,1]],[[1,1,2,1],[2,2,3,0],[3,3,2,0],[1,2,0,1]],[[1,1,2,1],[2,2,3,0],[2,4,2,0],[1,2,0,1]],[[1,1,2,1],[2,2,3,0],[2,3,2,0],[2,2,0,1]],[[1,1,2,1],[2,4,2,0],[0,2,3,2],[1,2,1,0]],[[2,1,2,1],[2,2,3,0],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[3,2,3,0],[2,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,2,3,0],[3,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,2,3,0],[2,4,2,1],[0,1,2,0]],[[2,1,2,1],[2,2,3,0],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[3,2,3,0],[2,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,2,3,0],[3,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,2,3,0],[2,4,2,1],[0,2,0,1]],[[2,1,2,1],[2,2,3,0],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[3,2,3,0],[2,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,2,3,0],[3,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,2,3,0],[2,4,2,1],[0,2,1,0]],[[1,1,2,1],[2,2,3,0],[2,3,2,1],[0,3,1,0]],[[1,1,2,1],[3,3,2,0],[0,2,3,2],[1,2,1,0]],[[2,1,2,1],[2,3,2,0],[0,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,4,2,0],[0,2,3,2],[1,2,0,1]],[[1,1,2,1],[3,3,2,0],[0,2,3,2],[1,2,0,1]],[[2,1,2,1],[2,3,2,0],[0,2,3,2],[1,2,0,1]],[[2,1,2,1],[2,2,3,0],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[3,2,3,0],[2,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,2,3,0],[3,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,2,3,0],[2,4,2,1],[1,0,2,0]],[[1,1,2,1],[2,2,3,0],[2,3,2,1],[2,0,2,0]],[[2,1,2,1],[2,2,3,0],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[3,2,3,0],[2,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,2,3,0],[3,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,2,3,0],[2,4,2,1],[1,1,0,1]],[[1,1,2,1],[2,2,3,0],[2,3,2,1],[2,1,0,1]],[[2,1,2,1],[2,2,3,0],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[3,2,3,0],[2,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,2,3,0],[3,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,2,3,0],[2,4,2,1],[1,1,1,0]],[[1,1,2,1],[2,2,3,0],[2,3,2,1],[2,1,1,0]],[[1,1,2,1],[2,4,2,0],[0,2,3,2],[1,1,2,0]],[[1,1,2,1],[3,3,2,0],[0,2,3,2],[1,1,2,0]],[[2,1,2,1],[2,3,2,0],[0,2,3,2],[1,1,2,0]],[[1,1,2,1],[2,4,2,0],[0,2,3,2],[1,1,1,1]],[[2,1,2,1],[2,2,3,0],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[3,2,3,0],[2,3,2,1],[1,2,0,0]],[[1,1,2,1],[2,2,3,0],[3,3,2,1],[1,2,0,0]],[[1,1,2,1],[2,2,3,0],[2,4,2,1],[1,2,0,0]],[[1,1,2,1],[2,2,3,0],[2,3,2,1],[2,2,0,0]],[[1,1,2,1],[3,3,2,0],[0,2,3,2],[1,1,1,1]],[[2,1,2,1],[2,3,2,0],[0,2,3,2],[1,1,1,1]],[[1,1,2,1],[2,4,2,0],[0,2,3,1],[1,2,1,1]],[[1,1,2,1],[3,3,2,0],[0,2,3,1],[1,2,1,1]],[[2,1,2,1],[2,3,2,0],[0,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,4,2,0],[0,2,3,1],[1,1,2,1]],[[1,1,2,1],[3,3,2,0],[0,2,3,1],[1,1,2,1]],[[2,1,2,1],[2,3,2,0],[0,2,3,1],[1,1,2,1]],[[1,1,2,1],[2,4,2,0],[0,1,3,2],[1,2,2,0]],[[1,1,2,1],[3,3,2,0],[0,1,3,2],[1,2,2,0]],[[2,1,2,1],[2,3,2,0],[0,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,4,2,0],[0,1,3,2],[1,2,1,1]],[[1,1,2,1],[3,3,2,0],[0,1,3,2],[1,2,1,1]],[[2,1,2,1],[2,3,2,0],[0,1,3,2],[1,2,1,1]],[[1,1,2,1],[2,4,2,0],[0,1,3,1],[1,2,2,1]],[[1,1,2,1],[3,3,2,0],[0,1,3,1],[1,2,2,1]],[[2,1,2,1],[2,3,2,0],[0,1,3,1],[1,2,2,1]],[[1,1,2,1],[2,3,1,2],[3,3,3,1],[1,0,0,0]],[[1,1,2,1],[2,4,1,2],[2,3,3,1],[1,0,0,0]],[[1,1,2,1],[3,3,1,2],[2,3,3,1],[1,0,0,0]],[[2,1,2,1],[2,3,1,2],[2,3,3,1],[1,0,0,0]],[[2,1,2,1],[2,2,3,0],[2,3,3,0],[0,1,2,0]],[[1,1,2,1],[3,2,3,0],[2,3,3,0],[0,1,2,0]],[[1,1,2,1],[2,2,3,0],[3,3,3,0],[0,1,2,0]],[[1,1,2,1],[2,2,3,0],[2,4,3,0],[0,1,2,0]],[[2,1,2,1],[2,2,3,0],[2,3,3,0],[0,2,1,0]],[[1,1,2,1],[3,2,3,0],[2,3,3,0],[0,2,1,0]],[[1,1,2,1],[2,2,3,0],[3,3,3,0],[0,2,1,0]],[[1,1,2,1],[2,2,3,0],[2,4,3,0],[0,2,1,0]],[[1,1,2,1],[2,2,3,0],[2,3,3,0],[0,3,1,0]],[[2,1,2,1],[2,2,3,0],[2,3,3,0],[1,0,2,0]],[[1,1,2,1],[3,2,3,0],[2,3,3,0],[1,0,2,0]],[[1,1,2,1],[2,2,3,0],[3,3,3,0],[1,0,2,0]],[[1,1,2,1],[2,2,3,0],[2,4,3,0],[1,0,2,0]],[[1,1,2,1],[2,2,3,0],[2,3,3,0],[2,0,2,0]],[[2,1,2,1],[2,2,3,0],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[3,2,3,0],[2,3,3,0],[1,1,1,0]],[[1,1,2,1],[2,2,3,0],[3,3,3,0],[1,1,1,0]],[[1,1,2,1],[2,2,3,0],[2,4,3,0],[1,1,1,0]],[[1,1,2,1],[2,2,3,0],[2,3,3,0],[2,1,1,0]],[[2,1,2,1],[2,2,3,0],[2,3,3,0],[1,2,0,0]],[[1,1,2,1],[3,2,3,0],[2,3,3,0],[1,2,0,0]],[[1,1,2,1],[2,2,3,0],[3,3,3,0],[1,2,0,0]],[[1,1,2,1],[2,2,3,0],[2,4,3,0],[1,2,0,0]],[[1,1,2,1],[2,2,3,0],[2,3,3,0],[2,2,0,0]],[[1,1,2,1],[2,3,1,2],[3,3,2,1],[1,0,1,0]],[[1,1,2,1],[2,4,1,2],[2,3,2,1],[1,0,1,0]],[[1,1,2,1],[3,3,1,2],[2,3,2,1],[1,0,1,0]],[[2,1,2,1],[2,3,1,2],[2,3,2,1],[1,0,1,0]],[[1,1,2,1],[2,3,1,2],[3,3,2,1],[1,0,0,1]],[[1,1,2,1],[2,4,1,2],[2,3,2,1],[1,0,0,1]],[[1,1,2,1],[3,3,1,2],[2,3,2,1],[1,0,0,1]],[[2,1,2,1],[2,3,1,2],[2,3,2,1],[1,0,0,1]],[[2,1,2,1],[2,2,3,0],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[3,2,3,0],[2,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,2,3,0],[3,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,2,3,0],[2,4,3,1],[0,2,0,0]],[[1,1,2,1],[2,3,1,2],[3,3,2,0],[1,0,1,1]],[[1,1,2,1],[2,4,1,2],[2,3,2,0],[1,0,1,1]],[[1,1,2,1],[3,3,1,2],[2,3,2,0],[1,0,1,1]],[[2,1,2,1],[2,3,1,2],[2,3,2,0],[1,0,1,1]],[[2,1,2,1],[2,2,3,0],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[3,2,3,0],[2,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,2,3,0],[3,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,2,3,0],[2,4,3,1],[1,1,0,0]],[[1,1,2,1],[2,2,3,0],[2,3,3,1],[2,1,0,0]],[[1,1,2,1],[2,3,1,2],[3,3,1,2],[1,0,1,0]],[[1,1,2,1],[2,4,1,2],[2,3,1,2],[1,0,1,0]],[[1,1,2,1],[3,3,1,2],[2,3,1,2],[1,0,1,0]],[[2,1,2,1],[2,3,1,2],[2,3,1,2],[1,0,1,0]],[[1,1,2,1],[2,3,1,2],[3,3,1,2],[1,0,0,1]],[[1,1,2,1],[2,4,1,2],[2,3,1,2],[1,0,0,1]],[[1,1,2,1],[3,3,1,2],[2,3,1,2],[1,0,0,1]],[[2,1,2,1],[2,3,1,2],[2,3,1,2],[1,0,0,1]],[[1,1,2,1],[2,3,1,2],[2,3,1,1],[2,2,0,0]],[[1,1,2,1],[2,3,1,2],[3,3,1,1],[1,2,0,0]],[[1,1,2,1],[2,4,1,2],[2,3,1,1],[1,2,0,0]],[[1,1,2,1],[3,3,1,2],[2,3,1,1],[1,2,0,0]],[[2,1,2,1],[2,3,1,2],[2,3,1,1],[1,2,0,0]],[[1,1,2,1],[2,3,1,2],[2,3,1,1],[2,1,1,0]],[[1,1,2,1],[2,3,1,2],[3,3,1,1],[1,1,1,0]],[[1,1,2,1],[2,4,1,2],[2,3,1,1],[1,1,1,0]],[[1,1,2,1],[3,3,1,2],[2,3,1,1],[1,1,1,0]],[[2,1,2,1],[2,3,1,2],[2,3,1,1],[1,1,1,0]],[[1,1,2,1],[2,3,1,2],[2,3,1,1],[2,1,0,1]],[[1,1,2,1],[2,3,1,2],[3,3,1,1],[1,1,0,1]],[[1,1,2,1],[2,4,1,2],[2,3,1,1],[1,1,0,1]],[[1,1,2,1],[3,3,1,2],[2,3,1,1],[1,1,0,1]],[[2,1,2,1],[2,3,1,2],[2,3,1,1],[1,1,0,1]],[[1,1,2,1],[2,3,1,2],[3,3,1,1],[0,2,1,0]],[[1,1,2,1],[2,4,1,2],[2,3,1,1],[0,2,1,0]],[[1,1,2,1],[3,3,1,2],[2,3,1,1],[0,2,1,0]],[[2,1,2,1],[2,3,1,2],[2,3,1,1],[0,2,1,0]],[[1,1,2,1],[2,3,1,2],[3,3,1,1],[0,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,3,1,1],[0,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,3,1,1],[0,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,3,1,1],[0,2,0,1]],[[1,1,2,1],[2,3,1,2],[2,3,1,0],[2,2,0,1]],[[1,1,2,1],[2,3,1,2],[3,3,1,0],[1,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,3,1,0],[1,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,3,1,0],[1,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,3,1,0],[1,2,0,1]],[[1,1,2,1],[2,3,1,2],[2,3,1,0],[2,1,1,1]],[[1,1,2,1],[2,3,1,2],[3,3,1,0],[1,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,3,1,0],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[2,3,1,0],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[2,3,1,0],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[3,3,1,0],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[2,3,1,0],[0,2,1,1]],[[1,1,2,1],[3,3,1,2],[2,3,1,0],[0,2,1,1]],[[2,1,2,1],[2,3,1,2],[2,3,1,0],[0,2,1,1]],[[1,1,2,1],[2,3,1,2],[2,3,0,2],[2,2,0,0]],[[1,1,2,1],[2,3,1,2],[3,3,0,2],[1,2,0,0]],[[1,1,2,1],[2,4,1,2],[2,3,0,2],[1,2,0,0]],[[1,1,2,1],[3,3,1,2],[2,3,0,2],[1,2,0,0]],[[2,1,2,1],[2,3,1,2],[2,3,0,2],[1,2,0,0]],[[1,1,2,1],[2,3,1,2],[2,3,0,2],[2,1,1,0]],[[1,1,2,1],[2,3,1,2],[3,3,0,2],[1,1,1,0]],[[1,1,2,1],[2,4,1,2],[2,3,0,2],[1,1,1,0]],[[1,1,2,1],[3,3,1,2],[2,3,0,2],[1,1,1,0]],[[2,1,2,1],[2,3,1,2],[2,3,0,2],[1,1,1,0]],[[1,1,2,1],[2,3,1,2],[2,3,0,2],[2,1,0,1]],[[1,1,2,1],[2,3,1,2],[3,3,0,2],[1,1,0,1]],[[1,1,2,1],[2,4,1,2],[2,3,0,2],[1,1,0,1]],[[1,1,2,1],[3,3,1,2],[2,3,0,2],[1,1,0,1]],[[2,1,2,1],[2,3,1,2],[2,3,0,2],[1,1,0,1]],[[1,1,2,1],[2,3,1,2],[3,3,0,2],[0,2,1,0]],[[1,1,2,1],[2,4,1,2],[2,3,0,2],[0,2,1,0]],[[1,1,2,1],[3,3,1,2],[2,3,0,2],[0,2,1,0]],[[2,1,2,1],[2,3,1,2],[2,3,0,2],[0,2,1,0]],[[1,1,2,1],[2,3,1,2],[3,3,0,2],[0,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,3,0,2],[0,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,3,0,2],[0,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,3,0,2],[0,2,0,1]],[[1,1,2,1],[2,3,1,2],[2,3,0,1],[2,2,1,0]],[[1,1,2,1],[2,3,1,2],[3,3,0,1],[1,2,1,0]],[[1,1,2,1],[2,4,1,2],[2,3,0,1],[1,2,1,0]],[[1,1,2,1],[3,3,1,2],[2,3,0,1],[1,2,1,0]],[[2,1,2,1],[2,3,1,2],[2,3,0,1],[1,2,1,0]],[[1,1,2,1],[2,3,1,2],[2,3,0,1],[2,1,2,0]],[[1,1,2,1],[2,3,1,2],[3,3,0,1],[1,1,2,0]],[[1,1,2,1],[2,4,1,2],[2,3,0,1],[1,1,2,0]],[[1,1,2,1],[3,3,1,2],[2,3,0,1],[1,1,2,0]],[[2,1,2,1],[2,3,1,2],[2,3,0,1],[1,1,2,0]],[[1,1,2,1],[2,3,1,2],[3,3,0,1],[0,2,2,0]],[[1,1,2,1],[2,4,1,2],[2,3,0,1],[0,2,2,0]],[[1,1,2,1],[3,3,1,2],[2,3,0,1],[0,2,2,0]],[[2,1,2,1],[2,3,1,2],[2,3,0,1],[0,2,2,0]],[[1,1,2,1],[2,3,1,2],[2,3,0,0],[2,2,1,1]],[[1,1,2,1],[2,3,1,2],[3,3,0,0],[1,2,1,1]],[[1,1,2,1],[2,4,1,2],[2,3,0,0],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[2,3,0,0],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[2,3,0,0],[1,2,1,1]],[[1,1,2,1],[2,3,1,2],[2,3,0,0],[2,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,3,0,0],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[2,3,0,0],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[2,3,0,0],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[2,3,0,0],[1,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,3,0,0],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[2,3,0,0],[0,2,2,1]],[[1,1,2,1],[3,3,1,2],[2,3,0,0],[0,2,2,1]],[[2,1,2,1],[2,3,1,2],[2,3,0,0],[0,2,2,1]],[[1,1,2,1],[2,3,1,2],[2,2,3,1],[2,1,0,0]],[[1,1,2,1],[2,3,1,2],[3,2,3,1],[1,1,0,0]],[[1,1,2,1],[2,4,1,2],[2,2,3,1],[1,1,0,0]],[[1,1,2,1],[3,3,1,2],[2,2,3,1],[1,1,0,0]],[[2,1,2,1],[2,3,1,2],[2,2,3,1],[1,1,0,0]],[[1,1,2,1],[2,3,1,2],[3,2,3,1],[0,2,0,0]],[[1,1,2,1],[2,4,1,2],[2,2,3,1],[0,2,0,0]],[[1,1,2,1],[3,3,1,2],[2,2,3,1],[0,2,0,0]],[[2,1,2,1],[2,3,1,2],[2,2,3,1],[0,2,0,0]],[[1,1,2,1],[2,3,1,2],[2,2,2,1],[2,2,0,0]],[[1,1,2,1],[2,3,1,2],[3,2,2,1],[1,2,0,0]],[[1,1,2,1],[2,4,1,2],[2,2,2,1],[1,2,0,0]],[[1,1,2,1],[3,3,1,2],[2,2,2,1],[1,2,0,0]],[[2,1,2,1],[2,3,1,2],[2,2,2,1],[1,2,0,0]],[[1,1,2,1],[2,3,1,2],[2,2,2,1],[2,1,1,0]],[[1,1,2,1],[2,3,1,2],[3,2,2,1],[1,1,1,0]],[[1,1,2,1],[2,4,1,2],[2,2,2,1],[1,1,1,0]],[[1,1,2,1],[3,3,1,2],[2,2,2,1],[1,1,1,0]],[[2,1,2,1],[2,3,1,2],[2,2,2,1],[1,1,1,0]],[[1,1,2,1],[2,3,1,2],[2,2,2,1],[2,1,0,1]],[[1,1,2,1],[2,3,1,2],[3,2,2,1],[1,1,0,1]],[[1,1,2,1],[2,4,1,2],[2,2,2,1],[1,1,0,1]],[[1,1,2,1],[3,3,1,2],[2,2,2,1],[1,1,0,1]],[[2,1,2,1],[2,3,1,2],[2,2,2,1],[1,1,0,1]],[[1,1,2,1],[2,3,1,2],[2,2,2,1],[2,0,2,0]],[[1,1,2,1],[2,3,1,2],[3,2,2,1],[1,0,2,0]],[[1,1,2,1],[2,4,1,2],[2,2,2,1],[1,0,2,0]],[[1,1,2,1],[3,3,1,2],[2,2,2,1],[1,0,2,0]],[[2,1,2,1],[2,3,1,2],[2,2,2,1],[1,0,2,0]],[[1,1,2,1],[2,3,1,2],[2,2,2,1],[2,0,1,1]],[[1,1,2,1],[2,3,1,2],[3,2,2,1],[1,0,1,1]],[[1,1,2,1],[2,4,1,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,1],[3,3,1,2],[2,2,2,1],[1,0,1,1]],[[2,1,2,1],[2,3,1,2],[2,2,2,1],[1,0,1,1]],[[1,1,2,1],[2,3,1,2],[3,2,2,1],[0,2,1,0]],[[1,1,2,1],[2,4,1,2],[2,2,2,1],[0,2,1,0]],[[1,1,2,1],[3,3,1,2],[2,2,2,1],[0,2,1,0]],[[2,1,2,1],[2,3,1,2],[2,2,2,1],[0,2,1,0]],[[1,1,2,1],[2,3,1,2],[3,2,2,1],[0,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,2,2,1],[0,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,2,2,1],[0,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,2,2,1],[0,2,0,1]],[[1,1,2,1],[2,3,1,2],[3,2,2,1],[0,1,2,0]],[[1,1,2,1],[2,4,1,2],[2,2,2,1],[0,1,2,0]],[[1,1,2,1],[3,3,1,2],[2,2,2,1],[0,1,2,0]],[[2,1,2,1],[2,3,1,2],[2,2,2,1],[0,1,2,0]],[[1,1,2,1],[2,3,1,2],[3,2,2,1],[0,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,2,2,1],[0,1,1,1]],[[1,1,2,1],[3,3,1,2],[2,2,2,1],[0,1,1,1]],[[2,1,2,1],[2,3,1,2],[2,2,2,1],[0,1,1,1]],[[1,1,2,1],[2,3,1,2],[2,2,2,0],[2,2,0,1]],[[1,1,2,1],[2,3,1,2],[3,2,2,0],[1,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,2,2,0],[1,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,2,2,0],[1,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,2,2,0],[1,2,0,1]],[[1,1,2,1],[2,3,1,2],[2,2,2,0],[2,1,1,1]],[[1,1,2,1],[2,3,1,2],[3,2,2,0],[1,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,2,2,0],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[2,2,2,0],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[2,2,2,0],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[2,2,2,0],[2,0,2,1]],[[1,1,2,1],[2,3,1,2],[3,2,2,0],[1,0,2,1]],[[1,1,2,1],[2,4,1,2],[2,2,2,0],[1,0,2,1]],[[1,1,2,1],[3,3,1,2],[2,2,2,0],[1,0,2,1]],[[2,1,2,1],[2,3,1,2],[2,2,2,0],[1,0,2,1]],[[1,1,2,1],[2,3,1,2],[3,2,2,0],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[2,2,2,0],[0,2,1,1]],[[1,1,2,1],[3,3,1,2],[2,2,2,0],[0,2,1,1]],[[2,1,2,1],[2,3,1,2],[2,2,2,0],[0,2,1,1]],[[1,1,2,1],[2,3,1,2],[3,2,2,0],[0,1,2,1]],[[1,1,2,1],[2,4,1,2],[2,2,2,0],[0,1,2,1]],[[1,1,2,1],[3,3,1,2],[2,2,2,0],[0,1,2,1]],[[2,1,2,1],[2,3,1,2],[2,2,2,0],[0,1,2,1]],[[1,1,2,1],[2,3,1,2],[2,2,1,2],[2,2,0,0]],[[1,1,2,1],[2,3,1,2],[3,2,1,2],[1,2,0,0]],[[1,1,2,1],[2,4,1,2],[2,2,1,2],[1,2,0,0]],[[1,1,2,1],[3,3,1,2],[2,2,1,2],[1,2,0,0]],[[2,1,2,1],[2,3,1,2],[2,2,1,2],[1,2,0,0]],[[1,1,2,1],[2,3,1,2],[2,2,1,2],[2,1,1,0]],[[1,1,2,1],[2,3,1,2],[3,2,1,2],[1,1,1,0]],[[1,1,2,1],[2,4,1,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,1],[3,3,1,2],[2,2,1,2],[1,1,1,0]],[[2,1,2,1],[2,3,1,2],[2,2,1,2],[1,1,1,0]],[[1,1,2,1],[2,3,1,2],[2,2,1,2],[2,1,0,1]],[[1,1,2,1],[2,3,1,2],[3,2,1,2],[1,1,0,1]],[[1,1,2,1],[2,4,1,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,1],[3,3,1,2],[2,2,1,2],[1,1,0,1]],[[2,1,2,1],[2,3,1,2],[2,2,1,2],[1,1,0,1]],[[1,1,2,1],[2,3,1,2],[2,2,1,2],[2,0,2,0]],[[1,1,2,1],[2,3,1,2],[3,2,1,2],[1,0,2,0]],[[1,1,2,1],[2,4,1,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,1],[3,3,1,2],[2,2,1,2],[1,0,2,0]],[[2,1,2,1],[2,3,1,2],[2,2,1,2],[1,0,2,0]],[[1,1,2,1],[2,3,1,2],[2,2,1,2],[2,0,1,1]],[[1,1,2,1],[2,3,1,2],[3,2,1,2],[1,0,1,1]],[[1,1,2,1],[2,4,1,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,1],[3,3,1,2],[2,2,1,2],[1,0,1,1]],[[2,1,2,1],[2,3,1,2],[2,2,1,2],[1,0,1,1]],[[1,1,2,1],[2,3,1,2],[3,2,1,2],[0,2,1,0]],[[1,1,2,1],[2,4,1,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,1],[3,3,1,2],[2,2,1,2],[0,2,1,0]],[[2,1,2,1],[2,3,1,2],[2,2,1,2],[0,2,1,0]],[[1,1,2,1],[2,3,1,2],[3,2,1,2],[0,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,2,1,2],[0,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,2,1,2],[0,2,0,1]],[[1,1,2,1],[2,3,1,2],[3,2,1,2],[0,1,2,0]],[[1,1,2,1],[2,4,1,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,1],[3,3,1,2],[2,2,1,2],[0,1,2,0]],[[2,1,2,1],[2,3,1,2],[2,2,1,2],[0,1,2,0]],[[1,1,2,1],[2,3,1,2],[3,2,1,2],[0,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,1],[3,3,1,2],[2,2,1,2],[0,1,1,1]],[[2,1,2,1],[2,3,1,2],[2,2,1,2],[0,1,1,1]],[[1,1,2,1],[2,3,1,2],[2,2,1,1],[2,1,2,0]],[[1,1,2,1],[2,3,1,2],[3,2,1,1],[1,1,2,0]],[[1,1,2,1],[2,4,1,2],[2,2,1,1],[1,1,2,0]],[[1,1,2,1],[3,3,1,2],[2,2,1,1],[1,1,2,0]],[[2,1,2,1],[2,3,1,2],[2,2,1,1],[1,1,2,0]],[[1,1,2,1],[2,3,1,2],[3,2,1,1],[0,2,2,0]],[[1,1,2,1],[2,4,1,2],[2,2,1,1],[0,2,2,0]],[[1,1,2,1],[3,3,1,2],[2,2,1,1],[0,2,2,0]],[[2,1,2,1],[2,3,1,2],[2,2,1,1],[0,2,2,0]],[[1,1,2,1],[2,3,1,2],[2,2,1,0],[2,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,2,1,0],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[2,2,1,0],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[2,2,1,0],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[2,2,1,0],[1,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,2,1,0],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[2,2,1,0],[0,2,2,1]],[[1,1,2,1],[3,3,1,2],[2,2,1,0],[0,2,2,1]],[[2,1,2,1],[2,3,1,2],[2,2,1,0],[0,2,2,1]],[[1,1,2,1],[2,3,1,2],[2,2,0,2],[2,1,2,0]],[[1,1,2,1],[2,3,1,2],[3,2,0,2],[1,1,2,0]],[[1,1,2,1],[2,4,1,2],[2,2,0,2],[1,1,2,0]],[[1,1,2,1],[3,3,1,2],[2,2,0,2],[1,1,2,0]],[[2,1,2,1],[2,3,1,2],[2,2,0,2],[1,1,2,0]],[[1,1,2,1],[2,3,1,2],[2,2,0,2],[2,1,1,1]],[[1,1,2,1],[2,3,1,2],[3,2,0,2],[1,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,2,0,2],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[2,2,0,2],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[2,2,0,2],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[2,2,0,2],[2,0,2,1]],[[1,1,2,1],[2,3,1,2],[3,2,0,2],[1,0,2,1]],[[1,1,2,1],[2,4,1,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,1],[3,3,1,2],[2,2,0,2],[1,0,2,1]],[[2,1,2,1],[2,3,1,2],[2,2,0,2],[1,0,2,1]],[[1,1,2,1],[2,3,1,2],[3,2,0,2],[0,2,2,0]],[[1,1,2,1],[2,4,1,2],[2,2,0,2],[0,2,2,0]],[[1,1,2,1],[3,3,1,2],[2,2,0,2],[0,2,2,0]],[[2,1,2,1],[2,3,1,2],[2,2,0,2],[0,2,2,0]],[[1,1,2,1],[2,3,1,2],[3,2,0,2],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[2,2,0,2],[0,2,1,1]],[[1,1,2,1],[3,3,1,2],[2,2,0,2],[0,2,1,1]],[[2,1,2,1],[2,3,1,2],[2,2,0,2],[0,2,1,1]],[[1,1,2,1],[2,3,1,2],[3,2,0,2],[0,1,2,1]],[[1,1,2,1],[2,4,1,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,1],[3,3,1,2],[2,2,0,2],[0,1,2,1]],[[2,1,2,1],[2,3,1,2],[2,2,0,2],[0,1,2,1]],[[1,1,2,1],[2,3,1,2],[2,2,0,1],[1,3,2,0]],[[1,1,2,1],[2,3,1,2],[2,2,0,1],[2,2,2,0]],[[1,1,2,1],[2,3,1,2],[3,2,0,1],[1,2,2,0]],[[1,1,2,1],[2,4,1,2],[2,2,0,1],[1,2,2,0]],[[1,1,2,1],[3,3,1,2],[2,2,0,1],[1,2,2,0]],[[2,1,2,1],[2,3,1,2],[2,2,0,1],[1,2,2,0]],[[1,1,2,1],[2,3,1,2],[2,2,0,1],[2,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,2,0,1],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[2,2,0,1],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[2,2,0,1],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[2,2,0,1],[1,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,2,0,1],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[2,2,0,1],[0,2,2,1]],[[1,1,2,1],[3,3,1,2],[2,2,0,1],[0,2,2,1]],[[2,1,2,1],[2,3,1,2],[2,2,0,1],[0,2,2,1]],[[1,1,2,1],[2,3,1,2],[2,2,0,0],[1,3,2,1]],[[1,1,2,1],[2,3,1,2],[2,2,0,0],[2,2,2,1]],[[1,1,2,1],[2,3,1,2],[3,2,0,0],[1,2,2,1]],[[1,1,2,1],[2,4,1,2],[2,2,0,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[2,2,0,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[2,2,0,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,2],[3,1,3,2],[1,0,0,1]],[[1,1,2,1],[2,4,1,2],[2,1,3,2],[1,0,0,1]],[[1,1,2,1],[3,3,1,2],[2,1,3,2],[1,0,0,1]],[[2,1,2,1],[2,3,1,2],[2,1,3,2],[1,0,0,1]],[[1,1,2,1],[2,4,1,2],[2,1,3,2],[0,1,0,1]],[[1,1,2,1],[3,3,1,2],[2,1,3,2],[0,1,0,1]],[[2,1,2,1],[2,3,1,2],[2,1,3,2],[0,1,0,1]],[[1,1,2,1],[2,3,1,2],[2,1,3,1],[2,1,1,0]],[[1,1,2,1],[2,3,1,2],[3,1,3,1],[1,1,1,0]],[[1,1,2,1],[2,4,1,2],[2,1,3,1],[1,1,1,0]],[[1,1,2,1],[3,3,1,2],[2,1,3,1],[1,1,1,0]],[[2,1,2,1],[2,3,1,2],[2,1,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,1,2],[2,1,3,1],[2,1,0,1]],[[1,1,2,1],[2,3,1,2],[3,1,3,1],[1,1,0,1]],[[1,1,2,1],[2,4,1,2],[2,1,3,1],[1,1,0,1]],[[1,1,2,1],[3,3,1,2],[2,1,3,1],[1,1,0,1]],[[2,1,2,1],[2,3,1,2],[2,1,3,1],[1,1,0,1]],[[1,1,2,1],[2,3,1,2],[2,1,3,1],[2,0,2,0]],[[1,1,2,1],[2,3,1,2],[3,1,3,1],[1,0,2,0]],[[1,1,2,1],[2,4,1,2],[2,1,3,1],[1,0,2,0]],[[1,1,2,1],[3,3,1,2],[2,1,3,1],[1,0,2,0]],[[2,1,2,1],[2,3,1,2],[2,1,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,1,2],[2,1,3,1],[2,0,1,1]],[[1,1,2,1],[2,3,1,2],[3,1,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,1,2],[2,1,3,1],[1,0,1,1]],[[1,1,2,1],[3,3,1,2],[2,1,3,1],[1,0,1,1]],[[2,1,2,1],[2,3,1,2],[2,1,3,1],[1,0,1,1]],[[1,1,2,1],[2,3,1,2],[3,1,3,1],[0,2,1,0]],[[1,1,2,1],[2,4,1,2],[2,1,3,1],[0,2,1,0]],[[1,1,2,1],[3,3,1,2],[2,1,3,1],[0,2,1,0]],[[2,1,2,1],[2,3,1,2],[2,1,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,1,2],[3,1,3,1],[0,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,1,3,1],[0,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,1,3,1],[0,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,1,3,1],[0,2,0,1]],[[1,1,2,1],[2,3,1,2],[3,1,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,1,2],[2,1,3,1],[0,1,2,0]],[[1,1,2,1],[3,3,1,2],[2,1,3,1],[0,1,2,0]],[[2,1,2,1],[2,3,1,2],[2,1,3,1],[0,1,2,0]],[[1,1,2,1],[2,3,1,2],[3,1,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,1,3,1],[0,1,1,1]],[[1,1,2,1],[3,3,1,2],[2,1,3,1],[0,1,1,1]],[[2,1,2,1],[2,3,1,2],[2,1,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,1,3,1],[0,0,2,1]],[[1,1,2,1],[3,3,1,2],[2,1,3,1],[0,0,2,1]],[[2,1,2,1],[2,3,1,2],[2,1,3,1],[0,0,2,1]],[[1,1,2,1],[2,3,1,2],[2,1,3,0],[2,1,1,1]],[[1,1,2,1],[2,3,1,2],[3,1,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,1,3,0],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[2,1,3,0],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[2,1,3,0],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[2,1,3,0],[2,0,2,1]],[[1,1,2,1],[2,3,1,2],[3,1,3,0],[1,0,2,1]],[[1,1,2,1],[2,4,1,2],[2,1,3,0],[1,0,2,1]],[[1,1,2,1],[3,3,1,2],[2,1,3,0],[1,0,2,1]],[[2,1,2,1],[2,3,1,2],[2,1,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,1,2],[3,1,3,0],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,1],[3,3,1,2],[2,1,3,0],[0,2,1,1]],[[2,1,2,1],[2,3,1,2],[2,1,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,1,2],[3,1,3,0],[0,1,2,1]],[[1,1,2,1],[2,4,1,2],[2,1,3,0],[0,1,2,1]],[[1,1,2,1],[3,3,1,2],[2,1,3,0],[0,1,2,1]],[[2,1,2,1],[2,3,1,2],[2,1,3,0],[0,1,2,1]],[[1,1,2,1],[2,3,1,2],[2,1,2,2],[2,1,1,0]],[[1,1,2,1],[2,3,1,2],[3,1,2,2],[1,1,1,0]],[[1,1,2,1],[2,4,1,2],[2,1,2,2],[1,1,1,0]],[[1,1,2,1],[3,3,1,2],[2,1,2,2],[1,1,1,0]],[[2,1,2,1],[2,3,1,2],[2,1,2,2],[1,1,1,0]],[[1,1,2,1],[2,3,1,2],[2,1,2,2],[2,1,0,1]],[[1,1,2,1],[2,3,1,2],[3,1,2,2],[1,1,0,1]],[[1,1,2,1],[2,4,1,2],[2,1,2,2],[1,1,0,1]],[[1,1,2,1],[3,3,1,2],[2,1,2,2],[1,1,0,1]],[[2,1,2,1],[2,3,1,2],[2,1,2,2],[1,1,0,1]],[[1,1,2,1],[2,3,1,2],[2,1,2,2],[2,0,2,0]],[[1,1,2,1],[2,3,1,2],[3,1,2,2],[1,0,2,0]],[[1,1,2,1],[2,4,1,2],[2,1,2,2],[1,0,2,0]],[[1,1,2,1],[3,3,1,2],[2,1,2,2],[1,0,2,0]],[[2,1,2,1],[2,3,1,2],[2,1,2,2],[1,0,2,0]],[[1,1,2,1],[2,3,1,2],[2,1,2,2],[2,0,1,1]],[[1,1,2,1],[2,3,1,2],[3,1,2,2],[1,0,1,1]],[[1,1,2,1],[2,4,1,2],[2,1,2,2],[1,0,1,1]],[[1,1,2,1],[3,3,1,2],[2,1,2,2],[1,0,1,1]],[[2,1,2,1],[2,3,1,2],[2,1,2,2],[1,0,1,1]],[[1,1,2,1],[2,3,1,2],[3,1,2,2],[0,2,1,0]],[[1,1,2,1],[2,4,1,2],[2,1,2,2],[0,2,1,0]],[[1,1,2,1],[3,3,1,2],[2,1,2,2],[0,2,1,0]],[[2,1,2,1],[2,3,1,2],[2,1,2,2],[0,2,1,0]],[[1,1,2,1],[2,3,1,2],[3,1,2,2],[0,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,1,2,2],[0,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,1,2,2],[0,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,1,2,2],[0,2,0,1]],[[1,1,2,1],[2,3,1,2],[3,1,2,2],[0,1,2,0]],[[1,1,2,1],[2,4,1,2],[2,1,2,2],[0,1,2,0]],[[1,1,2,1],[3,3,1,2],[2,1,2,2],[0,1,2,0]],[[2,1,2,1],[2,3,1,2],[2,1,2,2],[0,1,2,0]],[[1,1,2,1],[2,3,1,2],[3,1,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,1,2,2],[0,1,1,1]],[[1,1,2,1],[3,3,1,2],[2,1,2,2],[0,1,1,1]],[[2,1,2,1],[2,3,1,2],[2,1,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,1,2,2],[0,0,2,1]],[[1,1,2,1],[3,3,1,2],[2,1,2,2],[0,0,2,1]],[[2,1,2,1],[2,3,1,2],[2,1,2,2],[0,0,2,1]],[[1,1,2,1],[2,3,1,2],[2,1,2,1],[1,3,1,0]],[[1,1,2,1],[2,3,1,2],[2,1,2,1],[2,2,1,0]],[[1,1,2,1],[2,3,1,2],[3,1,2,1],[1,2,1,0]],[[1,1,2,1],[2,4,1,2],[2,1,2,1],[1,2,1,0]],[[1,1,2,1],[3,3,1,2],[2,1,2,1],[1,2,1,0]],[[2,1,2,1],[2,3,1,2],[2,1,2,1],[1,2,1,0]],[[1,1,2,1],[2,3,1,2],[2,1,2,1],[1,3,0,1]],[[1,1,2,1],[2,3,1,2],[2,1,2,1],[2,2,0,1]],[[1,1,2,1],[2,3,1,2],[3,1,2,1],[1,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,1,2,1],[1,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,1,2,1],[1,2,0,1]],[[1,1,2,1],[2,3,1,2],[2,1,2,0],[1,3,1,1]],[[1,1,2,1],[2,3,1,2],[2,1,2,0],[2,2,1,1]],[[1,1,2,1],[2,3,1,2],[3,1,2,0],[1,2,1,1]],[[1,1,2,1],[2,4,1,2],[2,1,2,0],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[2,1,2,0],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[2,1,2,0],[1,2,1,1]],[[1,1,2,1],[2,3,1,2],[2,1,1,2],[1,3,1,0]],[[1,1,2,1],[2,3,1,2],[2,1,1,2],[2,2,1,0]],[[1,1,2,1],[2,3,1,2],[3,1,1,2],[1,2,1,0]],[[1,1,2,1],[2,4,1,2],[2,1,1,2],[1,2,1,0]],[[1,1,2,1],[3,3,1,2],[2,1,1,2],[1,2,1,0]],[[2,1,2,1],[2,3,1,2],[2,1,1,2],[1,2,1,0]],[[1,1,2,1],[2,3,1,2],[2,1,1,2],[1,3,0,1]],[[1,1,2,1],[2,3,1,2],[2,1,1,2],[2,2,0,1]],[[1,1,2,1],[2,3,1,2],[3,1,1,2],[1,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,1,1,2],[1,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,1,1,2],[1,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,1,1,2],[1,2,0,1]],[[1,1,2,1],[2,3,1,2],[2,1,1,2],[2,0,2,1]],[[1,1,2,1],[2,3,1,2],[3,1,1,2],[1,0,2,1]],[[1,1,2,1],[2,4,1,2],[2,1,1,2],[1,0,2,1]],[[1,1,2,1],[3,3,1,2],[2,1,1,2],[1,0,2,1]],[[2,1,2,1],[2,3,1,2],[2,1,1,2],[1,0,2,1]],[[1,1,2,1],[2,3,1,2],[3,1,1,2],[0,1,2,1]],[[1,1,2,1],[2,4,1,2],[2,1,1,2],[0,1,2,1]],[[1,1,2,1],[3,3,1,2],[2,1,1,2],[0,1,2,1]],[[2,1,2,1],[2,3,1,2],[2,1,1,2],[0,1,2,1]],[[1,1,2,1],[2,3,1,2],[2,1,1,1],[1,2,3,0]],[[1,1,2,1],[2,3,1,2],[2,1,1,1],[1,3,2,0]],[[1,1,2,1],[2,3,1,2],[2,1,1,1],[2,2,2,0]],[[1,1,2,1],[2,3,1,2],[3,1,1,1],[1,2,2,0]],[[1,1,2,1],[2,4,1,2],[2,1,1,1],[1,2,2,0]],[[1,1,2,1],[3,3,1,2],[2,1,1,1],[1,2,2,0]],[[2,1,2,1],[2,3,1,2],[2,1,1,1],[1,2,2,0]],[[1,1,2,1],[2,3,1,2],[2,1,1,0],[1,2,2,2]],[[1,1,2,1],[2,3,1,2],[2,1,1,0],[1,2,3,1]],[[1,1,2,1],[2,3,1,2],[2,1,1,0],[1,3,2,1]],[[1,1,2,1],[2,3,1,2],[2,1,1,0],[2,2,2,1]],[[1,1,2,1],[2,3,1,2],[3,1,1,0],[1,2,2,1]],[[1,1,2,1],[2,4,1,2],[2,1,1,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[2,1,1,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[2,1,1,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,2],[2,1,0,2],[1,2,3,0]],[[1,1,2,1],[2,3,1,2],[2,1,0,2],[1,3,2,0]],[[1,1,2,1],[2,3,1,2],[2,1,0,2],[2,2,2,0]],[[1,1,2,1],[2,3,1,2],[3,1,0,2],[1,2,2,0]],[[1,1,2,1],[2,4,1,2],[2,1,0,2],[1,2,2,0]],[[1,1,2,1],[3,3,1,2],[2,1,0,2],[1,2,2,0]],[[2,1,2,1],[2,3,1,2],[2,1,0,2],[1,2,2,0]],[[1,1,2,1],[2,3,1,2],[2,1,0,2],[1,3,1,1]],[[1,1,2,1],[2,3,1,2],[2,1,0,2],[2,2,1,1]],[[1,1,2,1],[2,3,1,2],[3,1,0,2],[1,2,1,1]],[[1,1,2,1],[2,4,1,2],[2,1,0,2],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[2,1,0,2],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[2,1,0,2],[1,2,1,1]],[[1,1,2,1],[2,3,1,2],[2,1,0,2],[2,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,1,0,2],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[2,1,0,2],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[2,1,0,2],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[2,1,0,2],[1,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,1,0,2],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,1],[3,3,1,2],[2,1,0,2],[0,2,2,1]],[[2,1,2,1],[2,3,1,2],[2,1,0,2],[0,2,2,1]],[[1,1,2,1],[2,3,1,2],[2,1,0,1],[1,2,2,2]],[[1,1,2,1],[2,3,1,2],[2,1,0,1],[1,2,3,1]],[[1,1,2,1],[2,3,1,2],[2,1,0,1],[1,3,2,1]],[[1,1,2,1],[2,3,1,2],[2,1,0,1],[2,2,2,1]],[[1,1,2,1],[2,3,1,2],[3,1,0,1],[1,2,2,1]],[[1,1,2,1],[2,4,1,2],[2,1,0,1],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[2,1,0,1],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[2,1,0,1],[1,2,2,1]],[[1,1,2,1],[2,3,1,2],[2,0,3,1],[1,3,1,0]],[[1,1,2,1],[2,3,1,2],[2,0,3,1],[2,2,1,0]],[[1,1,2,1],[2,3,1,2],[3,0,3,1],[1,2,1,0]],[[1,1,2,1],[2,4,1,2],[2,0,3,1],[1,2,1,0]],[[1,1,2,1],[3,3,1,2],[2,0,3,1],[1,2,1,0]],[[2,1,2,1],[2,3,1,2],[2,0,3,1],[1,2,1,0]],[[1,1,2,1],[2,3,1,2],[2,0,3,1],[1,3,0,1]],[[1,1,2,1],[2,3,1,2],[2,0,3,1],[2,2,0,1]],[[1,1,2,1],[2,3,1,2],[3,0,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,0,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,0,3,1],[1,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,0,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,1,2],[2,0,3,1],[2,1,2,0]],[[1,1,2,1],[2,3,1,2],[3,0,3,1],[1,1,2,0]],[[1,1,2,1],[2,4,1,2],[2,0,3,1],[1,1,2,0]],[[1,1,2,1],[3,3,1,2],[2,0,3,1],[1,1,2,0]],[[2,1,2,1],[2,3,1,2],[2,0,3,1],[1,1,2,0]],[[1,1,2,1],[2,3,1,2],[2,0,3,1],[2,1,1,1]],[[1,1,2,1],[2,3,1,2],[3,0,3,1],[1,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,0,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[2,0,3,1],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[2,0,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[3,0,3,1],[0,2,2,0]],[[1,1,2,1],[2,4,1,2],[2,0,3,1],[0,2,2,0]],[[1,1,2,1],[3,3,1,2],[2,0,3,1],[0,2,2,0]],[[2,1,2,1],[2,3,1,2],[2,0,3,1],[0,2,2,0]],[[1,1,2,1],[2,3,1,2],[3,0,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[2,0,3,1],[0,2,1,1]],[[1,1,2,1],[3,3,1,2],[2,0,3,1],[0,2,1,1]],[[2,1,2,1],[2,3,1,2],[2,0,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,1,2],[2,0,3,0],[1,3,1,1]],[[1,1,2,1],[2,3,1,2],[2,0,3,0],[2,2,1,1]],[[1,1,2,1],[2,3,1,2],[3,0,3,0],[1,2,1,1]],[[1,1,2,1],[2,4,1,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[2,0,3,0],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[2,0,3,0],[1,2,1,1]],[[1,1,2,1],[2,3,1,2],[2,0,3,0],[2,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,0,3,0],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[2,0,3,0],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[2,0,3,0],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[2,0,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,0,3,0],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[2,0,3,0],[0,2,2,1]],[[1,1,2,1],[3,3,1,2],[2,0,3,0],[0,2,2,1]],[[2,1,2,1],[2,3,1,2],[2,0,3,0],[0,2,2,1]],[[1,1,2,1],[2,3,1,2],[2,0,2,2],[1,3,1,0]],[[1,1,2,1],[2,3,1,2],[2,0,2,2],[2,2,1,0]],[[1,1,2,1],[2,3,1,2],[3,0,2,2],[1,2,1,0]],[[1,1,2,1],[2,4,1,2],[2,0,2,2],[1,2,1,0]],[[1,1,2,1],[3,3,1,2],[2,0,2,2],[1,2,1,0]],[[2,1,2,1],[2,3,1,2],[2,0,2,2],[1,2,1,0]],[[1,1,2,1],[2,3,1,2],[2,0,2,2],[1,3,0,1]],[[1,1,2,1],[2,3,1,2],[2,0,2,2],[2,2,0,1]],[[1,1,2,1],[2,3,1,2],[3,0,2,2],[1,2,0,1]],[[1,1,2,1],[2,4,1,2],[2,0,2,2],[1,2,0,1]],[[1,1,2,1],[3,3,1,2],[2,0,2,2],[1,2,0,1]],[[2,1,2,1],[2,3,1,2],[2,0,2,2],[1,2,0,1]],[[1,1,2,1],[2,3,1,2],[2,0,2,2],[2,1,2,0]],[[1,1,2,1],[2,3,1,2],[3,0,2,2],[1,1,2,0]],[[1,1,2,1],[2,4,1,2],[2,0,2,2],[1,1,2,0]],[[1,1,2,1],[3,3,1,2],[2,0,2,2],[1,1,2,0]],[[2,1,2,1],[2,3,1,2],[2,0,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,1,2],[2,0,2,2],[2,1,1,1]],[[1,1,2,1],[2,3,1,2],[3,0,2,2],[1,1,1,1]],[[1,1,2,1],[2,4,1,2],[2,0,2,2],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[2,0,2,2],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[2,0,2,2],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[3,0,2,2],[0,2,2,0]],[[1,1,2,1],[2,4,1,2],[2,0,2,2],[0,2,2,0]],[[1,1,2,1],[3,3,1,2],[2,0,2,2],[0,2,2,0]],[[2,1,2,1],[2,3,1,2],[2,0,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,1,2],[3,0,2,2],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[2,0,2,2],[0,2,1,1]],[[1,1,2,1],[3,3,1,2],[2,0,2,2],[0,2,1,1]],[[2,1,2,1],[2,3,1,2],[2,0,2,2],[0,2,1,1]],[[1,1,2,1],[2,3,1,2],[2,0,2,1],[1,2,3,0]],[[1,1,2,1],[2,3,1,2],[2,0,2,1],[1,3,2,0]],[[1,1,2,1],[2,3,1,2],[2,0,2,1],[2,2,2,0]],[[1,1,2,1],[2,3,1,2],[3,0,2,1],[1,2,2,0]],[[1,1,2,1],[2,4,1,2],[2,0,2,1],[1,2,2,0]],[[1,1,2,1],[3,3,1,2],[2,0,2,1],[1,2,2,0]],[[2,1,2,1],[2,3,1,2],[2,0,2,1],[1,2,2,0]],[[1,1,2,1],[2,3,1,2],[2,0,2,0],[1,2,2,2]],[[1,1,2,1],[2,3,1,2],[2,0,2,0],[1,2,3,1]],[[1,1,2,1],[2,3,1,2],[2,0,2,0],[1,3,2,1]],[[1,1,2,1],[2,3,1,2],[2,0,2,0],[2,2,2,1]],[[1,1,2,1],[2,3,1,2],[3,0,2,0],[1,2,2,1]],[[1,1,2,1],[2,4,1,2],[2,0,2,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[2,0,2,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[2,0,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,2],[2,0,1,2],[1,2,3,0]],[[1,1,2,1],[2,3,1,2],[2,0,1,2],[1,3,2,0]],[[1,1,2,1],[2,3,1,2],[2,0,1,2],[2,2,2,0]],[[1,1,2,1],[2,3,1,2],[3,0,1,2],[1,2,2,0]],[[1,1,2,1],[2,4,1,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,1],[3,3,1,2],[2,0,1,2],[1,2,2,0]],[[2,1,2,1],[2,3,1,2],[2,0,1,2],[1,2,2,0]],[[1,1,2,1],[2,3,1,2],[2,0,1,2],[1,3,1,1]],[[1,1,2,1],[2,3,1,2],[2,0,1,2],[2,2,1,1]],[[1,1,2,1],[2,3,1,2],[3,0,1,2],[1,2,1,1]],[[1,1,2,1],[2,4,1,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[2,0,1,2],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[2,0,1,2],[1,2,1,1]],[[1,1,2,1],[2,3,1,2],[2,0,1,2],[2,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,0,1,2],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[2,0,1,2],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[2,0,1,2],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[2,0,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,1,2],[3,0,1,2],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[2,0,1,2],[0,2,2,1]],[[1,1,2,1],[3,3,1,2],[2,0,1,2],[0,2,2,1]],[[2,1,2,1],[2,3,1,2],[2,0,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,1,2],[2,0,1,1],[1,2,2,2]],[[1,1,2,1],[2,3,1,2],[2,0,1,1],[1,2,3,1]],[[1,1,2,1],[2,3,1,2],[2,0,1,1],[1,3,2,1]],[[1,1,2,1],[2,3,1,2],[2,0,1,1],[2,2,2,1]],[[1,1,2,1],[2,3,1,2],[3,0,1,1],[1,2,2,1]],[[1,1,2,1],[2,4,1,2],[2,0,1,1],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[2,0,1,1],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[2,0,1,1],[1,2,2,1]],[[1,1,2,1],[2,4,1,2],[1,3,3,2],[0,0,0,1]],[[1,1,2,1],[3,3,1,2],[1,3,3,2],[0,0,0,1]],[[2,1,2,1],[2,3,1,2],[1,3,3,2],[0,0,0,1]],[[1,1,2,1],[2,3,1,2],[1,4,3,1],[1,1,0,0]],[[1,1,2,1],[2,4,1,2],[1,3,3,1],[1,1,0,0]],[[1,1,2,1],[3,3,1,2],[1,3,3,1],[1,1,0,0]],[[2,1,2,1],[2,3,1,2],[1,3,3,1],[1,1,0,0]],[[1,1,2,1],[2,3,1,2],[1,4,3,1],[0,2,0,0]],[[1,1,2,1],[2,4,1,2],[1,3,3,1],[0,2,0,0]],[[1,1,2,1],[3,3,1,2],[1,3,3,1],[0,2,0,0]],[[2,1,2,1],[2,3,1,2],[1,3,3,1],[0,2,0,0]],[[1,1,2,1],[2,4,1,2],[1,3,3,1],[0,0,2,0]],[[1,1,2,1],[3,3,1,2],[1,3,3,1],[0,0,2,0]],[[2,1,2,1],[2,3,1,2],[1,3,3,1],[0,0,2,0]],[[1,1,2,1],[2,4,1,2],[1,3,3,1],[0,0,1,1]],[[1,1,2,1],[3,3,1,2],[1,3,3,1],[0,0,1,1]],[[2,1,2,1],[2,3,1,2],[1,3,3,1],[0,0,1,1]],[[1,1,2,1],[2,4,1,2],[1,3,3,0],[0,0,2,1]],[[1,1,2,1],[3,3,1,2],[1,3,3,0],[0,0,2,1]],[[2,1,2,1],[2,3,1,2],[1,3,3,0],[0,0,2,1]],[[1,1,2,1],[2,4,1,2],[1,3,2,2],[0,0,2,0]],[[1,1,2,1],[3,3,1,2],[1,3,2,2],[0,0,2,0]],[[2,1,2,1],[2,3,1,2],[1,3,2,2],[0,0,2,0]],[[1,1,2,1],[2,4,1,2],[1,3,2,2],[0,0,1,1]],[[1,1,2,1],[3,3,1,2],[1,3,2,2],[0,0,1,1]],[[2,1,2,1],[2,3,1,2],[1,3,2,2],[0,0,1,1]],[[1,1,2,1],[2,3,1,2],[1,4,2,1],[1,2,0,0]],[[1,1,2,1],[2,4,1,2],[1,3,2,1],[1,2,0,0]],[[1,1,2,1],[3,3,1,2],[1,3,2,1],[1,2,0,0]],[[2,1,2,1],[2,3,1,2],[1,3,2,1],[1,2,0,0]],[[1,1,2,1],[2,3,1,2],[1,4,2,1],[1,1,1,0]],[[1,1,2,1],[2,4,1,2],[1,3,2,1],[1,1,1,0]],[[1,1,2,1],[3,3,1,2],[1,3,2,1],[1,1,1,0]],[[2,1,2,1],[2,3,1,2],[1,3,2,1],[1,1,1,0]],[[1,1,2,1],[2,3,1,2],[1,4,2,1],[1,1,0,1]],[[1,1,2,1],[2,4,1,2],[1,3,2,1],[1,1,0,1]],[[1,1,2,1],[3,3,1,2],[1,3,2,1],[1,1,0,1]],[[2,1,2,1],[2,3,1,2],[1,3,2,1],[1,1,0,1]],[[1,1,2,1],[2,3,1,2],[1,4,2,1],[1,0,2,0]],[[1,1,2,1],[2,4,1,2],[1,3,2,1],[1,0,2,0]],[[1,1,2,1],[3,3,1,2],[1,3,2,1],[1,0,2,0]],[[2,1,2,1],[2,3,1,2],[1,3,2,1],[1,0,2,0]],[[1,1,2,1],[2,3,1,2],[1,4,2,1],[1,0,1,1]],[[1,1,2,1],[2,4,1,2],[1,3,2,1],[1,0,1,1]],[[1,1,2,1],[3,3,1,2],[1,3,2,1],[1,0,1,1]],[[2,1,2,1],[2,3,1,2],[1,3,2,1],[1,0,1,1]],[[1,1,2,1],[2,3,1,2],[1,3,2,1],[0,3,1,0]],[[1,1,2,1],[2,3,1,2],[1,4,2,1],[0,2,1,0]],[[1,1,2,1],[2,4,1,2],[1,3,2,1],[0,2,1,0]],[[1,1,2,1],[3,3,1,2],[1,3,2,1],[0,2,1,0]],[[2,1,2,1],[2,3,1,2],[1,3,2,1],[0,2,1,0]],[[1,1,2,1],[2,3,1,2],[1,3,2,1],[0,3,0,1]],[[1,1,2,1],[2,3,1,2],[1,4,2,1],[0,2,0,1]],[[1,1,2,1],[2,4,1,2],[1,3,2,1],[0,2,0,1]],[[1,1,2,1],[3,3,1,2],[1,3,2,1],[0,2,0,1]],[[2,1,2,1],[2,3,1,2],[1,3,2,1],[0,2,0,1]],[[1,1,2,1],[2,3,1,2],[1,4,2,1],[0,1,2,0]],[[1,1,2,1],[2,4,1,2],[1,3,2,1],[0,1,2,0]],[[1,1,2,1],[3,3,1,2],[1,3,2,1],[0,1,2,0]],[[2,1,2,1],[2,3,1,2],[1,3,2,1],[0,1,2,0]],[[1,1,2,1],[2,3,1,2],[1,4,2,1],[0,1,1,1]],[[1,1,2,1],[2,4,1,2],[1,3,2,1],[0,1,1,1]],[[1,1,2,1],[3,3,1,2],[1,3,2,1],[0,1,1,1]],[[2,1,2,1],[2,3,1,2],[1,3,2,1],[0,1,1,1]],[[1,1,2,1],[2,3,1,2],[1,4,2,0],[1,2,0,1]],[[1,1,2,1],[2,4,1,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[3,3,1,2],[1,3,2,0],[1,2,0,1]],[[2,1,2,1],[2,3,1,2],[1,3,2,0],[1,2,0,1]],[[1,1,2,1],[2,3,1,2],[1,4,2,0],[1,1,1,1]],[[1,1,2,1],[2,4,1,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[1,3,2,0],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[1,3,2,0],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[1,4,2,0],[1,0,2,1]],[[1,1,2,1],[2,4,1,2],[1,3,2,0],[1,0,2,1]],[[1,1,2,1],[3,3,1,2],[1,3,2,0],[1,0,2,1]],[[2,1,2,1],[2,3,1,2],[1,3,2,0],[1,0,2,1]],[[1,1,2,1],[2,3,1,2],[1,3,2,0],[0,3,1,1]],[[1,1,2,1],[2,3,1,2],[1,4,2,0],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[1,3,2,0],[0,2,1,1]],[[1,1,2,1],[3,3,1,2],[1,3,2,0],[0,2,1,1]],[[2,1,2,1],[2,3,1,2],[1,3,2,0],[0,2,1,1]],[[1,1,2,1],[2,3,1,2],[1,4,2,0],[0,1,2,1]],[[1,1,2,1],[2,4,1,2],[1,3,2,0],[0,1,2,1]],[[1,1,2,1],[3,3,1,2],[1,3,2,0],[0,1,2,1]],[[2,1,2,1],[2,3,1,2],[1,3,2,0],[0,1,2,1]],[[1,1,2,1],[2,3,1,2],[1,4,1,2],[1,2,0,0]],[[1,1,2,1],[2,4,1,2],[1,3,1,2],[1,2,0,0]],[[1,1,2,1],[3,3,1,2],[1,3,1,2],[1,2,0,0]],[[2,1,2,1],[2,3,1,2],[1,3,1,2],[1,2,0,0]],[[1,1,2,1],[2,3,1,2],[1,4,1,2],[1,1,1,0]],[[1,1,2,1],[2,4,1,2],[1,3,1,2],[1,1,1,0]],[[1,1,2,1],[3,3,1,2],[1,3,1,2],[1,1,1,0]],[[2,1,2,1],[2,3,1,2],[1,3,1,2],[1,1,1,0]],[[1,1,2,1],[2,3,1,2],[1,4,1,2],[1,1,0,1]],[[1,1,2,1],[2,4,1,2],[1,3,1,2],[1,1,0,1]],[[1,1,2,1],[3,3,1,2],[1,3,1,2],[1,1,0,1]],[[2,1,2,1],[2,3,1,2],[1,3,1,2],[1,1,0,1]],[[1,1,2,1],[2,3,1,2],[1,4,1,2],[1,0,2,0]],[[1,1,2,1],[2,4,1,2],[1,3,1,2],[1,0,2,0]],[[1,1,2,1],[3,3,1,2],[1,3,1,2],[1,0,2,0]],[[2,1,2,1],[2,3,1,2],[1,3,1,2],[1,0,2,0]],[[1,1,2,1],[2,3,1,2],[1,4,1,2],[1,0,1,1]],[[1,1,2,1],[2,4,1,2],[1,3,1,2],[1,0,1,1]],[[1,1,2,1],[3,3,1,2],[1,3,1,2],[1,0,1,1]],[[2,1,2,1],[2,3,1,2],[1,3,1,2],[1,0,1,1]],[[1,1,2,1],[2,3,1,2],[1,3,1,2],[0,3,1,0]],[[1,1,2,1],[2,3,1,2],[1,4,1,2],[0,2,1,0]],[[1,1,2,1],[2,4,1,2],[1,3,1,2],[0,2,1,0]],[[1,1,2,1],[3,3,1,2],[1,3,1,2],[0,2,1,0]],[[2,1,2,1],[2,3,1,2],[1,3,1,2],[0,2,1,0]],[[1,1,2,1],[2,3,1,2],[1,3,1,2],[0,3,0,1]],[[1,1,2,1],[2,3,1,2],[1,4,1,2],[0,2,0,1]],[[1,1,2,1],[2,4,1,2],[1,3,1,2],[0,2,0,1]],[[1,1,2,1],[3,3,1,2],[1,3,1,2],[0,2,0,1]],[[2,1,2,1],[2,3,1,2],[1,3,1,2],[0,2,0,1]],[[1,1,2,1],[2,3,1,2],[1,4,1,2],[0,1,2,0]],[[1,1,2,1],[2,4,1,2],[1,3,1,2],[0,1,2,0]],[[1,1,2,1],[3,3,1,2],[1,3,1,2],[0,1,2,0]],[[2,1,2,1],[2,3,1,2],[1,3,1,2],[0,1,2,0]],[[1,1,2,1],[2,3,1,2],[1,4,1,2],[0,1,1,1]],[[1,1,2,1],[2,4,1,2],[1,3,1,2],[0,1,1,1]],[[1,1,2,1],[3,3,1,2],[1,3,1,2],[0,1,1,1]],[[2,1,2,1],[2,3,1,2],[1,3,1,2],[0,1,1,1]],[[1,1,2,1],[2,3,1,2],[1,4,1,1],[1,1,2,0]],[[1,1,2,1],[2,4,1,2],[1,3,1,1],[1,1,2,0]],[[1,1,2,1],[3,3,1,2],[1,3,1,1],[1,1,2,0]],[[2,1,2,1],[2,3,1,2],[1,3,1,1],[1,1,2,0]],[[1,1,2,1],[2,3,1,2],[1,3,1,1],[0,2,3,0]],[[1,1,2,1],[2,3,1,2],[1,3,1,1],[0,3,2,0]],[[1,1,2,1],[2,3,1,2],[1,4,1,1],[0,2,2,0]],[[1,1,2,1],[2,4,1,2],[1,3,1,1],[0,2,2,0]],[[1,1,2,1],[3,3,1,2],[1,3,1,1],[0,2,2,0]],[[2,1,2,1],[2,3,1,2],[1,3,1,1],[0,2,2,0]],[[1,1,2,1],[2,3,1,2],[1,4,1,0],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[1,3,1,0],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[1,3,1,0],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[1,3,1,0],[1,1,2,1]],[[1,1,2,1],[2,3,1,2],[1,3,1,0],[0,2,2,2]],[[1,1,2,1],[2,3,1,2],[1,3,1,0],[0,2,3,1]],[[1,1,2,1],[2,3,1,2],[1,3,1,0],[0,3,2,1]],[[1,1,2,1],[2,3,1,2],[1,4,1,0],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[1,3,1,0],[0,2,2,1]],[[1,1,2,1],[3,3,1,2],[1,3,1,0],[0,2,2,1]],[[2,1,2,1],[2,3,1,2],[1,3,1,0],[0,2,2,1]],[[1,1,2,1],[2,3,1,2],[1,4,0,2],[1,1,2,0]],[[1,1,2,1],[2,4,1,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,1],[3,3,1,2],[1,3,0,2],[1,1,2,0]],[[2,1,2,1],[2,3,1,2],[1,3,0,2],[1,1,2,0]],[[1,1,2,1],[2,3,1,2],[1,4,0,2],[1,1,1,1]],[[1,1,2,1],[2,4,1,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[1,3,0,2],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[1,3,0,2],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[1,4,0,2],[1,0,2,1]],[[1,1,2,1],[2,4,1,2],[1,3,0,2],[1,0,2,1]],[[1,1,2,1],[3,3,1,2],[1,3,0,2],[1,0,2,1]],[[2,1,2,1],[2,3,1,2],[1,3,0,2],[1,0,2,1]],[[1,1,2,1],[2,3,1,2],[1,3,0,2],[0,2,3,0]],[[1,1,2,1],[2,3,1,2],[1,3,0,2],[0,3,2,0]],[[1,1,2,1],[2,3,1,2],[1,4,0,2],[0,2,2,0]],[[1,1,2,1],[2,4,1,2],[1,3,0,2],[0,2,2,0]],[[1,1,2,1],[3,3,1,2],[1,3,0,2],[0,2,2,0]],[[2,1,2,1],[2,3,1,2],[1,3,0,2],[0,2,2,0]],[[1,1,2,1],[2,3,1,2],[1,3,0,2],[0,3,1,1]],[[1,1,2,1],[2,3,1,2],[1,4,0,2],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[1,3,0,2],[0,2,1,1]],[[1,1,2,1],[3,3,1,2],[1,3,0,2],[0,2,1,1]],[[2,1,2,1],[2,3,1,2],[1,3,0,2],[0,2,1,1]],[[1,1,2,1],[2,3,1,2],[1,4,0,2],[0,1,2,1]],[[1,1,2,1],[2,4,1,2],[1,3,0,2],[0,1,2,1]],[[1,1,2,1],[3,3,1,2],[1,3,0,2],[0,1,2,1]],[[2,1,2,1],[2,3,1,2],[1,3,0,2],[0,1,2,1]],[[1,1,2,1],[2,3,1,2],[1,4,0,1],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[1,3,0,1],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[1,3,0,1],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[1,3,0,1],[1,1,2,1]],[[1,1,2,1],[2,3,1,2],[1,3,0,1],[0,2,2,2]],[[1,1,2,1],[2,3,1,2],[1,3,0,1],[0,2,3,1]],[[1,1,2,1],[2,3,1,2],[1,3,0,1],[0,3,2,1]],[[1,1,2,1],[2,3,1,2],[1,4,0,1],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[1,3,0,1],[0,2,2,1]],[[1,1,2,1],[3,3,1,2],[1,3,0,1],[0,2,2,1]],[[2,1,2,1],[2,3,1,2],[1,3,0,1],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[1,2,3,2],[1,0,0,1]],[[1,1,2,1],[3,3,1,2],[1,2,3,2],[1,0,0,1]],[[2,1,2,1],[2,3,1,2],[1,2,3,2],[1,0,0,1]],[[1,1,2,1],[2,4,1,2],[1,2,3,2],[0,1,0,1]],[[1,1,2,1],[3,3,1,2],[1,2,3,2],[0,1,0,1]],[[2,1,2,1],[2,3,1,2],[1,2,3,2],[0,1,0,1]],[[1,1,2,1],[2,4,1,2],[1,2,3,1],[1,1,1,0]],[[1,1,2,1],[3,3,1,2],[1,2,3,1],[1,1,1,0]],[[2,1,2,1],[2,3,1,2],[1,2,3,1],[1,1,1,0]],[[1,1,2,1],[2,4,1,2],[1,2,3,1],[1,1,0,1]],[[1,1,2,1],[3,3,1,2],[1,2,3,1],[1,1,0,1]],[[2,1,2,1],[2,3,1,2],[1,2,3,1],[1,1,0,1]],[[1,1,2,1],[2,4,1,2],[1,2,3,1],[1,0,2,0]],[[1,1,2,1],[3,3,1,2],[1,2,3,1],[1,0,2,0]],[[2,1,2,1],[2,3,1,2],[1,2,3,1],[1,0,2,0]],[[1,1,2,1],[2,4,1,2],[1,2,3,1],[1,0,1,1]],[[1,1,2,1],[3,3,1,2],[1,2,3,1],[1,0,1,1]],[[2,1,2,1],[2,3,1,2],[1,2,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,1,2],[1,2,3,1],[0,2,1,0]],[[1,1,2,1],[3,3,1,2],[1,2,3,1],[0,2,1,0]],[[2,1,2,1],[2,3,1,2],[1,2,3,1],[0,2,1,0]],[[1,1,2,1],[2,4,1,2],[1,2,3,1],[0,2,0,1]],[[1,1,2,1],[3,3,1,2],[1,2,3,1],[0,2,0,1]],[[2,1,2,1],[2,3,1,2],[1,2,3,1],[0,2,0,1]],[[1,1,2,1],[2,4,1,2],[1,2,3,1],[0,1,2,0]],[[1,1,2,1],[3,3,1,2],[1,2,3,1],[0,1,2,0]],[[2,1,2,1],[2,3,1,2],[1,2,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,1,2],[1,2,3,1],[0,1,1,1]],[[1,1,2,1],[3,3,1,2],[1,2,3,1],[0,1,1,1]],[[2,1,2,1],[2,3,1,2],[1,2,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,1,2],[1,2,3,1],[0,0,2,1]],[[1,1,2,1],[3,3,1,2],[1,2,3,1],[0,0,2,1]],[[2,1,2,1],[2,3,1,2],[1,2,3,1],[0,0,2,1]],[[1,1,2,1],[2,4,1,2],[1,2,3,0],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[1,2,3,0],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[1,2,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,1,2],[1,2,3,0],[1,0,2,1]],[[1,1,2,1],[3,3,1,2],[1,2,3,0],[1,0,2,1]],[[2,1,2,1],[2,3,1,2],[1,2,3,0],[1,0,2,1]],[[1,1,2,1],[2,4,1,2],[1,2,3,0],[0,2,1,1]],[[1,1,2,1],[3,3,1,2],[1,2,3,0],[0,2,1,1]],[[2,1,2,1],[2,3,1,2],[1,2,3,0],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[1,2,3,0],[0,1,2,1]],[[1,1,2,1],[3,3,1,2],[1,2,3,0],[0,1,2,1]],[[2,1,2,1],[2,3,1,2],[1,2,3,0],[0,1,2,1]],[[1,1,2,1],[2,4,1,2],[1,2,2,2],[1,1,1,0]],[[1,1,2,1],[3,3,1,2],[1,2,2,2],[1,1,1,0]],[[2,1,2,1],[2,3,1,2],[1,2,2,2],[1,1,1,0]],[[1,1,2,1],[2,4,1,2],[1,2,2,2],[1,1,0,1]],[[1,1,2,1],[3,3,1,2],[1,2,2,2],[1,1,0,1]],[[2,1,2,1],[2,3,1,2],[1,2,2,2],[1,1,0,1]],[[1,1,2,1],[2,4,1,2],[1,2,2,2],[1,0,2,0]],[[1,1,2,1],[3,3,1,2],[1,2,2,2],[1,0,2,0]],[[2,1,2,1],[2,3,1,2],[1,2,2,2],[1,0,2,0]],[[1,1,2,1],[2,4,1,2],[1,2,2,2],[1,0,1,1]],[[1,1,2,1],[3,3,1,2],[1,2,2,2],[1,0,1,1]],[[2,1,2,1],[2,3,1,2],[1,2,2,2],[1,0,1,1]],[[1,1,2,1],[2,4,1,2],[1,2,2,2],[0,2,1,0]],[[1,1,2,1],[3,3,1,2],[1,2,2,2],[0,2,1,0]],[[2,1,2,1],[2,3,1,2],[1,2,2,2],[0,2,1,0]],[[1,1,2,1],[2,4,1,2],[1,2,2,2],[0,2,0,1]],[[1,1,2,1],[3,3,1,2],[1,2,2,2],[0,2,0,1]],[[2,1,2,1],[2,3,1,2],[1,2,2,2],[0,2,0,1]],[[1,1,2,1],[2,4,1,2],[1,2,2,2],[0,1,2,0]],[[1,1,2,1],[3,3,1,2],[1,2,2,2],[0,1,2,0]],[[2,1,2,1],[2,3,1,2],[1,2,2,2],[0,1,2,0]],[[1,1,2,1],[2,4,1,2],[1,2,2,2],[0,1,1,1]],[[1,1,2,1],[3,3,1,2],[1,2,2,2],[0,1,1,1]],[[2,1,2,1],[2,3,1,2],[1,2,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,1,2],[1,2,2,2],[0,0,2,1]],[[1,1,2,1],[3,3,1,2],[1,2,2,2],[0,0,2,1]],[[2,1,2,1],[2,3,1,2],[1,2,2,2],[0,0,2,1]],[[1,1,2,1],[2,4,1,2],[1,2,1,2],[1,0,2,1]],[[1,1,2,1],[3,3,1,2],[1,2,1,2],[1,0,2,1]],[[2,1,2,1],[2,3,1,2],[1,2,1,2],[1,0,2,1]],[[1,1,2,1],[2,4,1,2],[1,2,1,2],[0,1,2,1]],[[1,1,2,1],[3,3,1,2],[1,2,1,2],[0,1,2,1]],[[2,1,2,1],[2,3,1,2],[1,2,1,2],[0,1,2,1]],[[1,1,2,1],[2,4,1,2],[1,2,0,2],[0,2,2,1]],[[1,1,2,1],[3,3,1,2],[1,2,0,2],[0,2,2,1]],[[2,1,2,1],[2,3,1,2],[1,2,0,2],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[1,1,3,1],[0,2,2,0]],[[1,1,2,1],[3,3,1,2],[1,1,3,1],[0,2,2,0]],[[2,1,2,1],[2,3,1,2],[1,1,3,1],[0,2,2,0]],[[1,1,2,1],[2,4,1,2],[1,1,3,1],[0,2,1,1]],[[1,1,2,1],[3,3,1,2],[1,1,3,1],[0,2,1,1]],[[2,1,2,1],[2,3,1,2],[1,1,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[1,1,3,0],[0,2,2,1]],[[1,1,2,1],[3,3,1,2],[1,1,3,0],[0,2,2,1]],[[2,1,2,1],[2,3,1,2],[1,1,3,0],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[1,1,2,2],[0,2,2,0]],[[1,1,2,1],[3,3,1,2],[1,1,2,2],[0,2,2,0]],[[2,1,2,1],[2,3,1,2],[1,1,2,2],[0,2,2,0]],[[1,1,2,1],[2,4,1,2],[1,1,2,2],[0,2,1,1]],[[1,1,2,1],[3,3,1,2],[1,1,2,2],[0,2,1,1]],[[2,1,2,1],[2,3,1,2],[1,1,2,2],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[1,1,1,2],[0,2,2,1]],[[1,1,2,1],[3,3,1,2],[1,1,1,2],[0,2,2,1]],[[2,1,2,1],[2,3,1,2],[1,1,1,2],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[1,1,0,2],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[1,1,0,2],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[1,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,4,1,2],[1,0,3,1],[1,2,2,0]],[[1,1,2,1],[3,3,1,2],[1,0,3,1],[1,2,2,0]],[[2,1,2,1],[2,3,1,2],[1,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,4,1,2],[1,0,3,1],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[1,0,3,1],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[1,0,3,1],[1,2,1,1]],[[1,1,2,1],[2,4,1,2],[1,0,3,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[1,0,3,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[1,0,3,0],[1,2,2,1]],[[1,1,2,1],[2,4,1,2],[1,0,2,2],[1,2,2,0]],[[1,1,2,1],[3,3,1,2],[1,0,2,2],[1,2,2,0]],[[2,1,2,1],[2,3,1,2],[1,0,2,2],[1,2,2,0]],[[1,1,2,1],[2,4,1,2],[1,0,2,2],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[1,0,2,2],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[1,0,2,2],[1,2,1,1]],[[1,1,2,1],[2,4,1,2],[1,0,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[1,0,1,2],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[1,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,1,2],[0,3,3,3],[0,0,2,0]],[[1,1,2,1],[2,3,1,2],[0,3,4,2],[0,0,2,0]],[[1,1,2,1],[2,3,1,3],[0,3,3,2],[0,0,2,0]],[[1,1,2,2],[2,3,1,2],[0,3,3,2],[0,0,2,0]],[[1,1,3,1],[2,3,1,2],[0,3,3,2],[0,0,2,0]],[[1,1,2,1],[2,3,1,2],[0,3,3,2],[0,0,1,2]],[[1,1,2,1],[2,3,1,2],[0,3,3,3],[0,0,1,1]],[[1,1,2,1],[2,3,1,2],[0,3,4,2],[0,0,1,1]],[[1,1,2,1],[2,3,1,3],[0,3,3,2],[0,0,1,1]],[[1,1,2,2],[2,3,1,2],[0,3,3,2],[0,0,1,1]],[[1,1,3,1],[2,3,1,2],[0,3,3,2],[0,0,1,1]],[[1,1,2,1],[2,3,1,2],[0,4,3,1],[1,2,0,0]],[[1,1,2,1],[2,4,1,2],[0,3,3,1],[1,2,0,0]],[[1,1,2,1],[3,3,1,2],[0,3,3,1],[1,2,0,0]],[[2,1,2,1],[2,3,1,2],[0,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,3,1,2],[0,3,2,1],[1,3,1,0]],[[1,1,2,1],[2,3,1,2],[0,3,2,1],[2,2,1,0]],[[1,1,2,1],[2,3,1,2],[0,4,2,1],[1,2,1,0]],[[1,1,2,1],[2,4,1,2],[0,3,2,1],[1,2,1,0]],[[1,1,2,1],[3,3,1,2],[0,3,2,1],[1,2,1,0]],[[2,1,2,1],[2,3,1,2],[0,3,2,1],[1,2,1,0]],[[1,1,2,1],[2,3,1,2],[0,3,2,1],[1,3,0,1]],[[1,1,2,1],[2,3,1,2],[0,3,2,1],[2,2,0,1]],[[1,1,2,1],[2,3,1,2],[0,4,2,1],[1,2,0,1]],[[1,1,2,1],[2,4,1,2],[0,3,2,1],[1,2,0,1]],[[1,1,2,1],[3,3,1,2],[0,3,2,1],[1,2,0,1]],[[2,1,2,1],[2,3,1,2],[0,3,2,1],[1,2,0,1]],[[1,1,2,1],[2,3,1,2],[0,4,2,1],[1,1,2,0]],[[1,1,2,1],[2,4,1,2],[0,3,2,1],[1,1,2,0]],[[1,1,2,1],[3,3,1,2],[0,3,2,1],[1,1,2,0]],[[2,1,2,1],[2,3,1,2],[0,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,3,1,2],[0,4,2,1],[1,1,1,1]],[[1,1,2,1],[2,4,1,2],[0,3,2,1],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[0,3,2,1],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[0,3,2,1],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[0,3,2,0],[1,3,1,1]],[[1,1,2,1],[2,3,1,2],[0,3,2,0],[2,2,1,1]],[[1,1,2,1],[2,3,1,2],[0,4,2,0],[1,2,1,1]],[[1,1,2,1],[2,4,1,2],[0,3,2,0],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[0,3,2,0],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[0,3,2,0],[1,2,1,1]],[[1,1,2,1],[2,3,1,2],[0,4,2,0],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[0,3,2,0],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[0,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,3,1,2],[0,3,1,2],[1,3,1,0]],[[1,1,2,1],[2,3,1,2],[0,3,1,2],[2,2,1,0]],[[1,1,2,1],[2,3,1,2],[0,4,1,2],[1,2,1,0]],[[1,1,2,1],[2,4,1,2],[0,3,1,2],[1,2,1,0]],[[1,1,2,1],[3,3,1,2],[0,3,1,2],[1,2,1,0]],[[2,1,2,1],[2,3,1,2],[0,3,1,2],[1,2,1,0]],[[1,1,2,1],[2,3,1,2],[0,3,1,2],[1,3,0,1]],[[1,1,2,1],[2,3,1,2],[0,3,1,2],[2,2,0,1]],[[1,1,2,1],[2,3,1,2],[0,4,1,2],[1,2,0,1]],[[1,1,2,1],[2,4,1,2],[0,3,1,2],[1,2,0,1]],[[1,1,2,1],[3,3,1,2],[0,3,1,2],[1,2,0,1]],[[2,1,2,1],[2,3,1,2],[0,3,1,2],[1,2,0,1]],[[1,1,2,1],[2,3,1,2],[0,4,1,2],[1,1,2,0]],[[1,1,2,1],[2,4,1,2],[0,3,1,2],[1,1,2,0]],[[1,1,2,1],[3,3,1,2],[0,3,1,2],[1,1,2,0]],[[2,1,2,1],[2,3,1,2],[0,3,1,2],[1,1,2,0]],[[1,1,2,1],[2,3,1,2],[0,4,1,2],[1,1,1,1]],[[1,1,2,1],[2,4,1,2],[0,3,1,2],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[0,3,1,2],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[0,3,1,2],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[0,3,1,1],[1,2,3,0]],[[1,1,2,1],[2,3,1,2],[0,3,1,1],[1,3,2,0]],[[1,1,2,1],[2,3,1,2],[0,3,1,1],[2,2,2,0]],[[1,1,2,1],[2,3,1,2],[0,4,1,1],[1,2,2,0]],[[1,1,2,1],[2,4,1,2],[0,3,1,1],[1,2,2,0]],[[1,1,2,1],[3,3,1,2],[0,3,1,1],[1,2,2,0]],[[2,1,2,1],[2,3,1,2],[0,3,1,1],[1,2,2,0]],[[1,1,2,1],[2,3,1,2],[0,3,1,0],[1,2,2,2]],[[1,1,2,1],[2,3,1,2],[0,3,1,0],[1,2,3,1]],[[1,1,2,1],[2,3,1,2],[0,3,1,0],[1,3,2,1]],[[1,1,2,1],[2,3,1,2],[0,3,1,0],[2,2,2,1]],[[1,1,2,1],[2,3,1,2],[0,4,1,0],[1,2,2,1]],[[1,1,2,1],[2,4,1,2],[0,3,1,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[0,3,1,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[0,3,1,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,2],[0,3,0,2],[1,2,3,0]],[[1,1,2,1],[2,3,1,2],[0,3,0,2],[1,3,2,0]],[[1,1,2,1],[2,3,1,2],[0,3,0,2],[2,2,2,0]],[[1,1,2,1],[2,3,1,2],[0,4,0,2],[1,2,2,0]],[[1,1,2,1],[2,4,1,2],[0,3,0,2],[1,2,2,0]],[[1,1,2,1],[3,3,1,2],[0,3,0,2],[1,2,2,0]],[[2,1,2,1],[2,3,1,2],[0,3,0,2],[1,2,2,0]],[[1,1,2,1],[2,3,1,2],[0,3,0,2],[1,3,1,1]],[[1,1,2,1],[2,3,1,2],[0,3,0,2],[2,2,1,1]],[[1,1,2,1],[2,3,1,2],[0,4,0,2],[1,2,1,1]],[[1,1,2,1],[2,4,1,2],[0,3,0,2],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[0,3,0,2],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[0,3,0,2],[1,2,1,1]],[[1,1,2,1],[2,3,1,2],[0,4,0,2],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[0,3,0,2],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[0,3,0,2],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[0,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,3,1,2],[0,3,0,1],[1,2,2,2]],[[1,1,2,1],[2,3,1,2],[0,3,0,1],[1,2,3,1]],[[1,1,2,1],[2,3,1,2],[0,3,0,1],[1,3,2,1]],[[1,1,2,1],[2,3,1,2],[0,3,0,1],[2,2,2,1]],[[1,1,2,1],[2,3,1,2],[0,4,0,1],[1,2,2,1]],[[1,1,2,1],[2,4,1,2],[0,3,0,1],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[0,3,0,1],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[0,3,0,1],[1,2,2,1]],[[1,1,2,1],[2,3,1,2],[0,2,3,3],[1,0,2,0]],[[1,1,2,1],[2,3,1,2],[0,2,4,2],[1,0,2,0]],[[1,1,2,1],[2,3,1,3],[0,2,3,2],[1,0,2,0]],[[1,1,2,2],[2,3,1,2],[0,2,3,2],[1,0,2,0]],[[1,1,3,1],[2,3,1,2],[0,2,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,1,2],[0,2,3,2],[1,0,1,2]],[[1,1,2,1],[2,3,1,2],[0,2,3,3],[1,0,1,1]],[[1,1,2,1],[2,3,1,2],[0,2,4,2],[1,0,1,1]],[[1,1,2,1],[2,3,1,3],[0,2,3,2],[1,0,1,1]],[[1,1,2,2],[2,3,1,2],[0,2,3,2],[1,0,1,1]],[[1,1,3,1],[2,3,1,2],[0,2,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,1,2],[0,2,3,3],[0,2,1,0]],[[1,1,2,1],[2,3,1,2],[0,2,4,2],[0,2,1,0]],[[1,1,2,1],[2,3,1,3],[0,2,3,2],[0,2,1,0]],[[1,1,2,2],[2,3,1,2],[0,2,3,2],[0,2,1,0]],[[1,1,3,1],[2,3,1,2],[0,2,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,1,2],[0,2,3,2],[0,2,0,2]],[[1,1,2,1],[2,3,1,2],[0,2,3,3],[0,2,0,1]],[[1,1,2,1],[2,3,1,2],[0,2,4,2],[0,2,0,1]],[[1,1,2,1],[2,3,1,3],[0,2,3,2],[0,2,0,1]],[[1,1,2,2],[2,3,1,2],[0,2,3,2],[0,2,0,1]],[[1,1,3,1],[2,3,1,2],[0,2,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,1,2],[0,2,3,2],[0,1,3,0]],[[1,1,2,1],[2,3,1,2],[0,2,3,3],[0,1,2,0]],[[1,1,2,1],[2,3,1,2],[0,2,4,2],[0,1,2,0]],[[1,1,2,1],[2,3,1,3],[0,2,3,2],[0,1,2,0]],[[1,1,2,2],[2,3,1,2],[0,2,3,2],[0,1,2,0]],[[1,1,3,1],[2,3,1,2],[0,2,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,1,2],[0,2,3,2],[0,1,1,2]],[[1,1,2,1],[2,3,1,2],[0,2,3,3],[0,1,1,1]],[[1,1,2,1],[2,3,1,2],[0,2,4,2],[0,1,1,1]],[[1,1,2,1],[2,3,1,3],[0,2,3,2],[0,1,1,1]],[[1,1,2,2],[2,3,1,2],[0,2,3,2],[0,1,1,1]],[[1,1,3,1],[2,3,1,2],[0,2,3,2],[0,1,1,1]],[[1,1,2,1],[2,3,1,2],[0,2,3,2],[0,0,2,2]],[[1,1,2,1],[2,3,1,2],[0,2,3,3],[0,0,2,1]],[[1,1,2,1],[2,3,1,2],[0,2,4,2],[0,0,2,1]],[[1,1,2,1],[2,3,1,3],[0,2,3,2],[0,0,2,1]],[[1,1,2,2],[2,3,1,2],[0,2,3,2],[0,0,2,1]],[[1,1,3,1],[2,3,1,2],[0,2,3,2],[0,0,2,1]],[[1,1,2,1],[2,4,1,2],[0,2,3,1],[1,2,1,0]],[[1,1,2,1],[3,3,1,2],[0,2,3,1],[1,2,1,0]],[[2,1,2,1],[2,3,1,2],[0,2,3,1],[1,2,1,0]],[[1,1,2,1],[2,4,1,2],[0,2,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,1,2],[0,2,3,1],[1,2,0,1]],[[2,1,2,1],[2,3,1,2],[0,2,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,1,2],[0,2,3,1],[1,1,2,0]],[[1,1,2,1],[3,3,1,2],[0,2,3,1],[1,1,2,0]],[[2,1,2,1],[2,3,1,2],[0,2,3,1],[1,1,2,0]],[[1,1,2,1],[2,4,1,2],[0,2,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[0,2,3,1],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[0,2,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[0,2,3,1],[0,1,2,2]],[[1,1,2,1],[2,3,1,2],[0,2,3,1],[0,1,3,1]],[[1,1,2,1],[2,3,1,2],[0,2,4,1],[0,1,2,1]],[[1,1,2,1],[2,4,1,2],[0,2,3,0],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[0,2,3,0],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[0,2,3,0],[1,2,1,1]],[[1,1,2,1],[2,4,1,2],[0,2,3,0],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[0,2,3,0],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[0,2,3,0],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[0,2,2,2],[1,2,1,0]],[[1,1,2,1],[3,3,1,2],[0,2,2,2],[1,2,1,0]],[[2,1,2,1],[2,3,1,2],[0,2,2,2],[1,2,1,0]],[[1,1,2,1],[2,4,1,2],[0,2,2,2],[1,2,0,1]],[[1,1,2,1],[3,3,1,2],[0,2,2,2],[1,2,0,1]],[[2,1,2,1],[2,3,1,2],[0,2,2,2],[1,2,0,1]],[[1,1,2,1],[2,4,1,2],[0,2,2,2],[1,1,2,0]],[[1,1,2,1],[3,3,1,2],[0,2,2,2],[1,1,2,0]],[[2,1,2,1],[2,3,1,2],[0,2,2,2],[1,1,2,0]],[[1,1,2,1],[2,4,1,2],[0,2,2,2],[1,1,1,1]],[[1,1,2,1],[3,3,1,2],[0,2,2,2],[1,1,1,1]],[[2,1,2,1],[2,3,1,2],[0,2,2,2],[1,1,1,1]],[[1,1,2,1],[2,3,1,2],[0,2,2,2],[0,1,2,2]],[[1,1,2,1],[2,3,1,2],[0,2,2,2],[0,1,3,1]],[[1,1,2,1],[2,3,1,2],[0,2,2,3],[0,1,2,1]],[[1,1,2,1],[2,3,1,3],[0,2,2,2],[0,1,2,1]],[[1,1,2,2],[2,3,1,2],[0,2,2,2],[0,1,2,1]],[[1,1,3,1],[2,3,1,2],[0,2,2,2],[0,1,2,1]],[[1,1,2,1],[2,4,1,2],[0,2,1,2],[1,1,2,1]],[[1,1,2,1],[3,3,1,2],[0,2,1,2],[1,1,2,1]],[[2,1,2,1],[2,3,1,2],[0,2,1,2],[1,1,2,1]],[[1,1,2,1],[2,4,1,2],[0,2,0,2],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[0,2,0,2],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[0,2,0,2],[1,2,2,1]],[[1,1,2,1],[2,3,1,2],[0,1,3,2],[0,2,3,0]],[[1,1,2,1],[2,3,1,2],[0,1,3,3],[0,2,2,0]],[[1,1,2,1],[2,3,1,2],[0,1,4,2],[0,2,2,0]],[[1,1,2,1],[2,3,1,3],[0,1,3,2],[0,2,2,0]],[[1,1,2,2],[2,3,1,2],[0,1,3,2],[0,2,2,0]],[[1,1,3,1],[2,3,1,2],[0,1,3,2],[0,2,2,0]],[[1,1,2,1],[2,3,1,2],[0,1,3,2],[0,2,1,2]],[[1,1,2,1],[2,3,1,2],[0,1,3,3],[0,2,1,1]],[[1,1,2,1],[2,3,1,2],[0,1,4,2],[0,2,1,1]],[[1,1,2,1],[2,3,1,3],[0,1,3,2],[0,2,1,1]],[[1,1,2,2],[2,3,1,2],[0,1,3,2],[0,2,1,1]],[[1,1,3,1],[2,3,1,2],[0,1,3,2],[0,2,1,1]],[[1,1,2,1],[2,4,1,2],[0,1,3,1],[1,2,2,0]],[[1,1,2,1],[3,3,1,2],[0,1,3,1],[1,2,2,0]],[[2,1,2,1],[2,3,1,2],[0,1,3,1],[1,2,2,0]],[[1,1,2,1],[2,4,1,2],[0,1,3,1],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[0,1,3,1],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[0,1,3,1],[1,2,1,1]],[[1,1,2,1],[2,3,1,2],[0,1,3,1],[0,2,2,2]],[[1,1,2,1],[2,3,1,2],[0,1,3,1],[0,2,3,1]],[[1,1,2,1],[2,3,1,2],[0,1,4,1],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[0,1,3,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[0,1,3,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[0,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,4,1,2],[0,1,2,2],[1,2,2,0]],[[1,1,2,1],[3,3,1,2],[0,1,2,2],[1,2,2,0]],[[2,1,2,1],[2,3,1,2],[0,1,2,2],[1,2,2,0]],[[1,1,2,1],[2,4,1,2],[0,1,2,2],[1,2,1,1]],[[1,1,2,1],[3,3,1,2],[0,1,2,2],[1,2,1,1]],[[2,1,2,1],[2,3,1,2],[0,1,2,2],[1,2,1,1]],[[1,1,2,1],[2,3,1,2],[0,1,2,2],[0,2,2,2]],[[1,1,2,1],[2,3,1,2],[0,1,2,2],[0,2,3,1]],[[1,1,2,1],[2,3,1,2],[0,1,2,3],[0,2,2,1]],[[1,1,2,1],[2,3,1,3],[0,1,2,2],[0,2,2,1]],[[1,1,2,2],[2,3,1,2],[0,1,2,2],[0,2,2,1]],[[1,1,3,1],[2,3,1,2],[0,1,2,2],[0,2,2,1]],[[1,1,2,1],[2,4,1,2],[0,1,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,1,2],[0,1,1,2],[1,2,2,1]],[[2,1,2,1],[2,3,1,2],[0,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,1,2],[0,0,3,2],[0,2,2,2]],[[1,1,2,1],[2,3,1,2],[0,0,3,2],[0,2,3,1]],[[1,1,2,1],[2,3,1,2],[0,0,3,3],[0,2,2,1]],[[1,1,2,1],[2,3,1,3],[0,0,3,2],[0,2,2,1]],[[1,1,2,2],[2,3,1,2],[0,0,3,2],[0,2,2,1]],[[1,1,3,1],[2,3,1,2],[0,0,3,2],[0,2,2,1]],[[1,1,2,1],[2,3,1,1],[3,3,3,1],[1,0,1,0]],[[1,1,2,1],[2,4,1,1],[2,3,3,1],[1,0,1,0]],[[1,1,2,1],[3,3,1,1],[2,3,3,1],[1,0,1,0]],[[2,1,2,1],[2,3,1,1],[2,3,3,1],[1,0,1,0]],[[1,1,2,1],[2,3,1,1],[3,3,3,1],[1,0,0,1]],[[1,1,2,1],[2,4,1,1],[2,3,3,1],[1,0,0,1]],[[1,1,2,1],[3,3,1,1],[2,3,3,1],[1,0,0,1]],[[2,1,2,1],[2,3,1,1],[2,3,3,1],[1,0,0,1]],[[1,1,2,1],[2,3,1,1],[3,3,3,0],[1,0,1,1]],[[1,1,2,1],[2,4,1,1],[2,3,3,0],[1,0,1,1]],[[1,1,2,1],[3,3,1,1],[2,3,3,0],[1,0,1,1]],[[2,1,2,1],[2,3,1,1],[2,3,3,0],[1,0,1,1]],[[1,1,2,1],[2,3,1,1],[2,3,0,1],[1,3,2,0]],[[1,1,2,1],[2,3,1,1],[2,3,0,1],[2,2,2,0]],[[1,1,2,1],[2,3,1,1],[3,3,0,1],[1,2,2,0]],[[1,1,2,1],[3,3,1,1],[2,3,0,1],[1,2,2,0]],[[2,1,2,1],[2,3,1,1],[2,3,0,1],[1,2,2,0]],[[1,1,2,1],[2,3,1,1],[2,3,0,0],[1,3,2,1]],[[1,1,2,1],[2,3,1,1],[2,3,0,0],[2,2,2,1]],[[1,1,2,1],[2,3,1,1],[3,3,0,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,1],[2,3,0,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,1],[2,3,0,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,1],[2,2,3,1],[2,2,0,0]],[[1,1,2,1],[2,3,1,1],[3,2,3,1],[1,2,0,0]],[[1,1,2,1],[2,4,1,1],[2,2,3,1],[1,2,0,0]],[[1,1,2,1],[3,3,1,1],[2,2,3,1],[1,2,0,0]],[[2,1,2,1],[2,3,1,1],[2,2,3,1],[1,2,0,0]],[[1,1,2,1],[2,3,1,1],[2,2,3,1],[2,1,1,0]],[[1,1,2,1],[2,3,1,1],[3,2,3,1],[1,1,1,0]],[[1,1,2,1],[2,4,1,1],[2,2,3,1],[1,1,1,0]],[[1,1,2,1],[3,3,1,1],[2,2,3,1],[1,1,1,0]],[[2,1,2,1],[2,3,1,1],[2,2,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,1,1],[2,2,3,1],[2,1,0,1]],[[1,1,2,1],[2,3,1,1],[3,2,3,1],[1,1,0,1]],[[1,1,2,1],[2,4,1,1],[2,2,3,1],[1,1,0,1]],[[1,1,2,1],[3,3,1,1],[2,2,3,1],[1,1,0,1]],[[2,1,2,1],[2,3,1,1],[2,2,3,1],[1,1,0,1]],[[1,1,2,1],[2,3,1,1],[2,2,3,1],[2,0,2,0]],[[1,1,2,1],[2,3,1,1],[3,2,3,1],[1,0,2,0]],[[1,1,2,1],[2,4,1,1],[2,2,3,1],[1,0,2,0]],[[1,1,2,1],[3,3,1,1],[2,2,3,1],[1,0,2,0]],[[2,1,2,1],[2,3,1,1],[2,2,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,1,1],[2,2,3,1],[2,0,1,1]],[[1,1,2,1],[2,3,1,1],[3,2,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,1,1],[2,2,3,1],[1,0,1,1]],[[1,1,2,1],[3,3,1,1],[2,2,3,1],[1,0,1,1]],[[2,1,2,1],[2,3,1,1],[2,2,3,1],[1,0,1,1]],[[1,1,2,1],[2,3,1,1],[3,2,3,1],[0,2,1,0]],[[1,1,2,1],[2,4,1,1],[2,2,3,1],[0,2,1,0]],[[1,1,2,1],[3,3,1,1],[2,2,3,1],[0,2,1,0]],[[2,1,2,1],[2,3,1,1],[2,2,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,1,1],[3,2,3,1],[0,2,0,1]],[[1,1,2,1],[2,4,1,1],[2,2,3,1],[0,2,0,1]],[[1,1,2,1],[3,3,1,1],[2,2,3,1],[0,2,0,1]],[[2,1,2,1],[2,3,1,1],[2,2,3,1],[0,2,0,1]],[[1,1,2,1],[2,3,1,1],[3,2,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,1,1],[2,2,3,1],[0,1,2,0]],[[1,1,2,1],[3,3,1,1],[2,2,3,1],[0,1,2,0]],[[2,1,2,1],[2,3,1,1],[2,2,3,1],[0,1,2,0]],[[1,1,2,1],[2,3,1,1],[3,2,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,1,1],[2,2,3,1],[0,1,1,1]],[[1,1,2,1],[3,3,1,1],[2,2,3,1],[0,1,1,1]],[[2,1,2,1],[2,3,1,1],[2,2,3,1],[0,1,1,1]],[[1,1,2,1],[2,3,1,1],[2,2,3,0],[2,2,0,1]],[[1,1,2,1],[2,3,1,1],[3,2,3,0],[1,2,0,1]],[[1,1,2,1],[2,4,1,1],[2,2,3,0],[1,2,0,1]],[[1,1,2,1],[3,3,1,1],[2,2,3,0],[1,2,0,1]],[[2,1,2,1],[2,3,1,1],[2,2,3,0],[1,2,0,1]],[[1,1,2,1],[2,3,1,1],[2,2,3,0],[2,1,1,1]],[[1,1,2,1],[2,3,1,1],[3,2,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,1,1],[2,2,3,0],[1,1,1,1]],[[1,1,2,1],[3,3,1,1],[2,2,3,0],[1,1,1,1]],[[2,1,2,1],[2,3,1,1],[2,2,3,0],[1,1,1,1]],[[1,1,2,1],[2,3,1,1],[2,2,3,0],[2,0,2,1]],[[1,1,2,1],[2,3,1,1],[3,2,3,0],[1,0,2,1]],[[1,1,2,1],[2,4,1,1],[2,2,3,0],[1,0,2,1]],[[1,1,2,1],[3,3,1,1],[2,2,3,0],[1,0,2,1]],[[2,1,2,1],[2,3,1,1],[2,2,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,1,1],[3,2,3,0],[0,2,1,1]],[[1,1,2,1],[2,4,1,1],[2,2,3,0],[0,2,1,1]],[[1,1,2,1],[3,3,1,1],[2,2,3,0],[0,2,1,1]],[[2,1,2,1],[2,3,1,1],[2,2,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,1,1],[3,2,3,0],[0,1,2,1]],[[1,1,2,1],[2,4,1,1],[2,2,3,0],[0,1,2,1]],[[1,1,2,1],[3,3,1,1],[2,2,3,0],[0,1,2,1]],[[2,1,2,1],[2,3,1,1],[2,2,3,0],[0,1,2,1]],[[1,1,2,1],[2,3,1,1],[2,2,2,1],[2,1,2,0]],[[1,1,2,1],[2,3,1,1],[3,2,2,1],[1,1,2,0]],[[1,1,2,1],[2,4,1,1],[2,2,2,1],[1,1,2,0]],[[1,1,2,1],[3,3,1,1],[2,2,2,1],[1,1,2,0]],[[2,1,2,1],[2,3,1,1],[2,2,2,1],[1,1,2,0]],[[1,1,2,1],[2,3,1,1],[3,2,2,1],[0,2,2,0]],[[1,1,2,1],[2,4,1,1],[2,2,2,1],[0,2,2,0]],[[1,1,2,1],[3,3,1,1],[2,2,2,1],[0,2,2,0]],[[2,1,2,1],[2,3,1,1],[2,2,2,1],[0,2,2,0]],[[1,1,2,1],[2,3,1,1],[2,2,2,0],[2,1,2,1]],[[1,1,2,1],[2,3,1,1],[3,2,2,0],[1,1,2,1]],[[1,1,2,1],[2,4,1,1],[2,2,2,0],[1,1,2,1]],[[1,1,2,1],[3,3,1,1],[2,2,2,0],[1,1,2,1]],[[2,1,2,1],[2,3,1,1],[2,2,2,0],[1,1,2,1]],[[1,1,2,1],[2,3,1,1],[3,2,2,0],[0,2,2,1]],[[1,1,2,1],[2,4,1,1],[2,2,2,0],[0,2,2,1]],[[1,1,2,1],[3,3,1,1],[2,2,2,0],[0,2,2,1]],[[2,1,2,1],[2,3,1,1],[2,2,2,0],[0,2,2,1]],[[1,1,2,1],[2,3,1,1],[2,2,0,2],[2,1,2,1]],[[1,1,2,1],[2,3,1,1],[3,2,0,2],[1,1,2,1]],[[1,1,2,1],[2,4,1,1],[2,2,0,2],[1,1,2,1]],[[1,1,2,1],[3,3,1,1],[2,2,0,2],[1,1,2,1]],[[2,1,2,1],[2,3,1,1],[2,2,0,2],[1,1,2,1]],[[1,1,2,1],[2,3,1,1],[3,2,0,2],[0,2,2,1]],[[1,1,2,1],[2,4,1,1],[2,2,0,2],[0,2,2,1]],[[1,1,2,1],[3,3,1,1],[2,2,0,2],[0,2,2,1]],[[2,1,2,1],[2,3,1,1],[2,2,0,2],[0,2,2,1]],[[1,1,2,1],[2,3,1,1],[2,1,3,1],[1,3,1,0]],[[1,1,2,1],[2,3,1,1],[2,1,3,1],[2,2,1,0]],[[1,1,2,1],[2,3,1,1],[3,1,3,1],[1,2,1,0]],[[1,1,2,1],[2,4,1,1],[2,1,3,1],[1,2,1,0]],[[1,1,2,1],[3,3,1,1],[2,1,3,1],[1,2,1,0]],[[2,1,2,1],[2,3,1,1],[2,1,3,1],[1,2,1,0]],[[1,1,2,1],[2,3,1,1],[2,1,3,1],[1,3,0,1]],[[1,1,2,1],[2,3,1,1],[2,1,3,1],[2,2,0,1]],[[1,1,2,1],[2,3,1,1],[3,1,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,1,1],[2,1,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,1,1],[2,1,3,1],[1,2,0,1]],[[2,1,2,1],[2,3,1,1],[2,1,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,1,1],[2,1,3,0],[1,3,1,1]],[[1,1,2,1],[2,3,1,1],[2,1,3,0],[2,2,1,1]],[[1,1,2,1],[2,3,1,1],[3,1,3,0],[1,2,1,1]],[[1,1,2,1],[2,4,1,1],[2,1,3,0],[1,2,1,1]],[[1,1,2,1],[3,3,1,1],[2,1,3,0],[1,2,1,1]],[[2,1,2,1],[2,3,1,1],[2,1,3,0],[1,2,1,1]],[[1,1,2,1],[2,3,1,1],[2,1,2,1],[1,2,3,0]],[[1,1,2,1],[2,3,1,1],[2,1,2,1],[1,3,2,0]],[[1,1,2,1],[2,3,1,1],[2,1,2,1],[2,2,2,0]],[[1,1,2,1],[2,3,1,1],[3,1,2,1],[1,2,2,0]],[[1,1,2,1],[2,4,1,1],[2,1,2,1],[1,2,2,0]],[[1,1,2,1],[3,3,1,1],[2,1,2,1],[1,2,2,0]],[[2,1,2,1],[2,3,1,1],[2,1,2,1],[1,2,2,0]],[[1,1,2,1],[2,3,1,1],[2,1,2,0],[1,2,2,2]],[[1,1,2,1],[2,3,1,1],[2,1,2,0],[1,2,3,1]],[[1,1,2,1],[2,3,1,1],[2,1,2,0],[1,3,2,1]],[[1,1,2,1],[2,3,1,1],[2,1,2,0],[2,2,2,1]],[[1,1,2,1],[2,3,1,1],[3,1,2,0],[1,2,2,1]],[[1,1,2,1],[2,4,1,1],[2,1,2,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,1],[2,1,2,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,1],[2,1,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,1],[2,1,0,2],[1,2,2,2]],[[1,1,2,1],[2,3,1,1],[2,1,0,2],[1,2,3,1]],[[1,1,2,1],[2,3,1,1],[2,1,0,2],[1,3,2,1]],[[1,1,2,1],[2,3,1,1],[2,1,0,2],[2,2,2,1]],[[1,1,2,1],[2,3,1,1],[2,1,0,3],[1,2,2,1]],[[1,1,2,1],[2,3,1,1],[3,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,4,1,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[3,3,1,1],[2,1,0,2],[1,2,2,1]],[[2,1,2,1],[2,3,1,1],[2,1,0,2],[1,2,2,1]],[[1,1,2,1],[2,3,1,1],[2,0,3,1],[1,2,3,0]],[[1,1,2,1],[2,3,1,1],[2,0,3,1],[1,3,2,0]],[[1,1,2,1],[2,3,1,1],[2,0,3,1],[2,2,2,0]],[[1,1,2,1],[2,3,1,1],[2,0,4,1],[1,2,2,0]],[[1,1,2,1],[2,3,1,1],[3,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,4,1,1],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[3,3,1,1],[2,0,3,1],[1,2,2,0]],[[2,1,2,1],[2,3,1,1],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,3,1,1],[2,0,3,0],[1,2,2,2]],[[1,1,2,1],[2,3,1,1],[2,0,3,0],[1,2,3,1]],[[1,1,2,1],[2,3,1,1],[2,0,3,0],[1,3,2,1]],[[1,1,2,1],[2,3,1,1],[2,0,3,0],[2,2,2,1]],[[1,1,2,1],[2,3,1,1],[2,0,4,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,1],[3,0,3,0],[1,2,2,1]],[[1,1,2,1],[2,4,1,1],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,1],[2,0,3,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,1],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,1],[2,0,1,2],[1,2,2,2]],[[1,1,2,1],[2,3,1,1],[2,0,1,2],[1,2,3,1]],[[1,1,2,1],[2,3,1,1],[2,0,1,2],[1,3,2,1]],[[1,1,2,1],[2,3,1,1],[2,0,1,2],[2,2,2,1]],[[1,1,2,1],[2,3,1,1],[2,0,1,3],[1,2,2,1]],[[1,1,2,1],[2,3,1,1],[3,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,4,1,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,1,1],[2,0,1,2],[1,2,2,1]],[[2,1,2,1],[2,3,1,1],[2,0,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,1,1],[1,4,3,1],[1,2,0,0]],[[1,1,2,1],[2,4,1,1],[1,3,3,1],[1,2,0,0]],[[1,1,2,1],[3,3,1,1],[1,3,3,1],[1,2,0,0]],[[2,1,2,1],[2,3,1,1],[1,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,3,1,1],[1,3,4,1],[1,1,1,0]],[[1,1,2,1],[2,3,1,1],[1,4,3,1],[1,1,1,0]],[[1,1,2,1],[2,4,1,1],[1,3,3,1],[1,1,1,0]],[[1,1,2,1],[3,3,1,1],[1,3,3,1],[1,1,1,0]],[[2,1,2,1],[2,3,1,1],[1,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,1,1],[1,3,4,1],[1,1,0,1]],[[1,1,2,1],[2,3,1,1],[1,4,3,1],[1,1,0,1]],[[1,1,2,1],[2,4,1,1],[1,3,3,1],[1,1,0,1]],[[1,1,2,1],[3,3,1,1],[1,3,3,1],[1,1,0,1]],[[2,1,2,1],[2,3,1,1],[1,3,3,1],[1,1,0,1]],[[1,1,2,1],[2,3,1,1],[1,3,3,1],[1,0,3,0]],[[1,1,2,1],[2,3,1,1],[1,3,4,1],[1,0,2,0]],[[1,1,2,1],[2,3,1,1],[1,4,3,1],[1,0,2,0]],[[1,1,2,1],[2,4,1,1],[1,3,3,1],[1,0,2,0]],[[1,1,2,1],[3,3,1,1],[1,3,3,1],[1,0,2,0]],[[2,1,2,1],[2,3,1,1],[1,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,1,1],[1,3,4,1],[1,0,1,1]],[[1,1,2,1],[2,3,1,1],[1,4,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,1,1],[1,3,3,1],[1,0,1,1]],[[1,1,2,1],[3,3,1,1],[1,3,3,1],[1,0,1,1]],[[2,1,2,1],[2,3,1,1],[1,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,3,1,1],[1,3,3,1],[0,3,1,0]],[[1,1,2,1],[2,3,1,1],[1,3,4,1],[0,2,1,0]],[[1,1,2,1],[2,3,1,1],[1,4,3,1],[0,2,1,0]],[[1,1,2,1],[2,4,1,1],[1,3,3,1],[0,2,1,0]],[[1,1,2,1],[3,3,1,1],[1,3,3,1],[0,2,1,0]],[[2,1,2,1],[2,3,1,1],[1,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,1,1],[1,3,3,1],[0,3,0,1]],[[1,1,2,1],[2,3,1,1],[1,3,4,1],[0,2,0,1]],[[1,1,2,1],[2,3,1,1],[1,4,3,1],[0,2,0,1]],[[1,1,2,1],[2,4,1,1],[1,3,3,1],[0,2,0,1]],[[1,1,2,1],[3,3,1,1],[1,3,3,1],[0,2,0,1]],[[2,1,2,1],[2,3,1,1],[1,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,3,1,1],[1,3,3,1],[0,1,3,0]],[[1,1,2,1],[2,3,1,1],[1,3,4,1],[0,1,2,0]],[[1,1,2,1],[2,3,1,1],[1,4,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,1,1],[1,3,3,1],[0,1,2,0]],[[1,1,2,1],[3,3,1,1],[1,3,3,1],[0,1,2,0]],[[2,1,2,1],[2,3,1,1],[1,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,3,1,1],[1,3,4,1],[0,1,1,1]],[[1,1,2,1],[2,3,1,1],[1,4,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,1,1],[1,3,3,1],[0,1,1,1]],[[1,1,2,1],[3,3,1,1],[1,3,3,1],[0,1,1,1]],[[2,1,2,1],[2,3,1,1],[1,3,3,1],[0,1,1,1]],[[1,1,2,1],[2,3,1,1],[1,4,3,0],[1,2,0,1]],[[1,1,2,1],[2,4,1,1],[1,3,3,0],[1,2,0,1]],[[1,1,2,1],[3,3,1,1],[1,3,3,0],[1,2,0,1]],[[2,1,2,1],[2,3,1,1],[1,3,3,0],[1,2,0,1]],[[1,1,2,1],[2,3,1,1],[1,3,4,0],[1,1,1,1]],[[1,1,2,1],[2,3,1,1],[1,4,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,1,1],[1,3,3,0],[1,1,1,1]],[[1,1,2,1],[3,3,1,1],[1,3,3,0],[1,1,1,1]],[[2,1,2,1],[2,3,1,1],[1,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,3,1,1],[1,3,3,0],[1,0,2,2]],[[1,1,2,1],[2,3,1,1],[1,3,3,0],[1,0,3,1]],[[1,1,2,1],[2,3,1,1],[1,3,4,0],[1,0,2,1]],[[1,1,2,1],[2,3,1,1],[1,4,3,0],[1,0,2,1]],[[1,1,2,1],[2,4,1,1],[1,3,3,0],[1,0,2,1]],[[1,1,2,1],[3,3,1,1],[1,3,3,0],[1,0,2,1]],[[2,1,2,1],[2,3,1,1],[1,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,1,1],[1,3,3,0],[0,3,1,1]],[[1,1,2,1],[2,3,1,1],[1,3,4,0],[0,2,1,1]],[[1,1,2,1],[2,3,1,1],[1,4,3,0],[0,2,1,1]],[[1,1,2,1],[2,4,1,1],[1,3,3,0],[0,2,1,1]],[[1,1,2,1],[3,3,1,1],[1,3,3,0],[0,2,1,1]],[[2,1,2,1],[2,3,1,1],[1,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,1,1],[1,3,3,0],[0,1,2,2]],[[1,1,2,1],[2,3,1,1],[1,3,3,0],[0,1,3,1]],[[1,1,2,1],[2,3,1,1],[1,3,4,0],[0,1,2,1]],[[1,1,2,1],[2,3,1,1],[1,4,3,0],[0,1,2,1]],[[1,1,2,1],[2,4,1,1],[1,3,3,0],[0,1,2,1]],[[1,1,2,1],[3,3,1,1],[1,3,3,0],[0,1,2,1]],[[2,1,2,1],[2,3,1,1],[1,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,3,1,1],[1,4,2,1],[1,1,2,0]],[[1,1,2,1],[2,4,1,1],[1,3,2,1],[1,1,2,0]],[[1,1,2,1],[3,3,1,1],[1,3,2,1],[1,1,2,0]],[[2,1,2,1],[2,3,1,1],[1,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,3,1,1],[1,3,2,1],[0,2,3,0]],[[1,1,2,1],[2,3,1,1],[1,3,2,1],[0,3,2,0]],[[1,1,2,1],[2,3,1,1],[1,4,2,1],[0,2,2,0]],[[1,1,2,1],[2,4,1,1],[1,3,2,1],[0,2,2,0]],[[1,1,2,1],[3,3,1,1],[1,3,2,1],[0,2,2,0]],[[2,1,2,1],[2,3,1,1],[1,3,2,1],[0,2,2,0]],[[1,1,2,1],[2,3,1,1],[1,4,2,0],[1,1,2,1]],[[1,1,2,1],[2,4,1,1],[1,3,2,0],[1,1,2,1]],[[1,1,2,1],[3,3,1,1],[1,3,2,0],[1,1,2,1]],[[2,1,2,1],[2,3,1,1],[1,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,3,1,1],[1,3,2,0],[0,2,2,2]],[[1,1,2,1],[2,3,1,1],[1,3,2,0],[0,2,3,1]],[[1,1,2,1],[2,3,1,1],[1,3,2,0],[0,3,2,1]],[[1,1,2,1],[2,3,1,1],[1,4,2,0],[0,2,2,1]],[[1,1,2,1],[2,4,1,1],[1,3,2,0],[0,2,2,1]],[[1,1,2,1],[3,3,1,1],[1,3,2,0],[0,2,2,1]],[[2,1,2,1],[2,3,1,1],[1,3,2,0],[0,2,2,1]],[[1,1,2,1],[2,3,1,1],[1,4,0,2],[1,1,2,1]],[[1,1,2,1],[2,4,1,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[3,3,1,1],[1,3,0,2],[1,1,2,1]],[[2,1,2,1],[2,3,1,1],[1,3,0,2],[1,1,2,1]],[[1,1,2,1],[2,3,1,1],[1,3,0,2],[0,2,2,2]],[[1,1,2,1],[2,3,1,1],[1,3,0,2],[0,2,3,1]],[[1,1,2,1],[2,3,1,1],[1,3,0,2],[0,3,2,1]],[[1,1,2,1],[2,3,1,1],[1,3,0,3],[0,2,2,1]],[[1,1,2,1],[2,3,1,1],[1,4,0,2],[0,2,2,1]],[[1,1,2,1],[2,4,1,1],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[3,3,1,1],[1,3,0,2],[0,2,2,1]],[[2,1,2,1],[2,3,1,1],[1,3,0,2],[0,2,2,1]],[[1,1,2,1],[2,3,1,1],[1,2,3,1],[0,2,3,0]],[[1,1,2,1],[2,3,1,1],[1,2,3,1],[0,3,2,0]],[[1,1,2,1],[2,3,1,1],[1,2,4,1],[0,2,2,0]],[[1,1,2,1],[2,3,1,1],[1,2,3,0],[0,2,2,2]],[[1,1,2,1],[2,3,1,1],[1,2,3,0],[0,2,3,1]],[[1,1,2,1],[2,3,1,1],[1,2,3,0],[0,3,2,1]],[[1,1,2,1],[2,3,1,1],[1,2,4,0],[0,2,2,1]],[[1,1,2,1],[2,3,1,1],[0,3,3,1],[1,3,1,0]],[[1,1,2,1],[2,3,1,1],[0,3,3,1],[2,2,1,0]],[[1,1,2,1],[2,3,1,1],[0,3,4,1],[1,2,1,0]],[[1,1,2,1],[2,3,1,1],[0,4,3,1],[1,2,1,0]],[[1,1,2,1],[2,4,1,1],[0,3,3,1],[1,2,1,0]],[[1,1,2,1],[3,3,1,1],[0,3,3,1],[1,2,1,0]],[[2,1,2,1],[2,3,1,1],[0,3,3,1],[1,2,1,0]],[[1,1,2,1],[2,3,1,1],[0,3,3,1],[1,3,0,1]],[[1,1,2,1],[2,3,1,1],[0,3,3,1],[2,2,0,1]],[[1,1,2,1],[2,3,1,1],[0,3,4,1],[1,2,0,1]],[[1,1,2,1],[2,3,1,1],[0,4,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,1,1],[0,3,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,1,1],[0,3,3,1],[1,2,0,1]],[[2,1,2,1],[2,3,1,1],[0,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,1,1],[0,3,3,1],[1,1,3,0]],[[1,1,2,1],[2,3,1,1],[0,3,4,1],[1,1,2,0]],[[1,1,2,1],[2,3,1,1],[0,4,3,1],[1,1,2,0]],[[1,1,2,1],[2,4,1,1],[0,3,3,1],[1,1,2,0]],[[1,1,2,1],[3,3,1,1],[0,3,3,1],[1,1,2,0]],[[2,1,2,1],[2,3,1,1],[0,3,3,1],[1,1,2,0]],[[1,1,2,1],[2,3,1,1],[0,3,4,1],[1,1,1,1]],[[1,1,2,1],[2,3,1,1],[0,4,3,1],[1,1,1,1]],[[1,1,2,1],[2,4,1,1],[0,3,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,1,1],[0,3,3,1],[1,1,1,1]],[[2,1,2,1],[2,3,1,1],[0,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,1,1],[0,3,3,0],[1,3,1,1]],[[1,1,2,1],[2,3,1,1],[0,3,3,0],[2,2,1,1]],[[1,1,2,1],[2,3,1,1],[0,3,4,0],[1,2,1,1]],[[1,1,2,1],[2,3,1,1],[0,4,3,0],[1,2,1,1]],[[1,1,2,1],[2,4,1,1],[0,3,3,0],[1,2,1,1]],[[1,1,2,1],[3,3,1,1],[0,3,3,0],[1,2,1,1]],[[2,1,2,1],[2,3,1,1],[0,3,3,0],[1,2,1,1]],[[1,1,2,1],[2,3,1,1],[0,3,3,0],[1,1,2,2]],[[1,1,2,1],[2,3,1,1],[0,3,3,0],[1,1,3,1]],[[1,1,2,1],[2,3,1,1],[0,3,4,0],[1,1,2,1]],[[1,1,2,1],[2,3,1,1],[0,4,3,0],[1,1,2,1]],[[1,1,2,1],[2,4,1,1],[0,3,3,0],[1,1,2,1]],[[1,1,2,1],[3,3,1,1],[0,3,3,0],[1,1,2,1]],[[2,1,2,1],[2,3,1,1],[0,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,1,1],[0,3,2,1],[1,2,3,0]],[[1,1,2,1],[2,3,1,1],[0,3,2,1],[1,3,2,0]],[[1,1,2,1],[2,3,1,1],[0,3,2,1],[2,2,2,0]],[[1,1,2,1],[2,3,1,1],[0,4,2,1],[1,2,2,0]],[[1,1,2,1],[2,4,1,1],[0,3,2,1],[1,2,2,0]],[[1,1,2,1],[3,3,1,1],[0,3,2,1],[1,2,2,0]],[[2,1,2,1],[2,3,1,1],[0,3,2,1],[1,2,2,0]],[[1,1,2,1],[2,3,1,1],[0,3,2,0],[1,2,2,2]],[[1,1,2,1],[2,3,1,1],[0,3,2,0],[1,2,3,1]],[[1,1,2,1],[2,3,1,1],[0,3,2,0],[1,3,2,1]],[[1,1,2,1],[2,3,1,1],[0,3,2,0],[2,2,2,1]],[[1,1,2,1],[2,3,1,1],[0,4,2,0],[1,2,2,1]],[[1,1,2,1],[2,4,1,1],[0,3,2,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,1],[0,3,2,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,1],[0,3,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,1],[0,3,0,2],[1,2,2,2]],[[1,1,2,1],[2,3,1,1],[0,3,0,2],[1,2,3,1]],[[1,1,2,1],[2,3,1,1],[0,3,0,2],[1,3,2,1]],[[1,1,2,1],[2,3,1,1],[0,3,0,2],[2,2,2,1]],[[1,1,2,1],[2,3,1,1],[0,3,0,3],[1,2,2,1]],[[1,1,2,1],[2,3,1,1],[0,4,0,2],[1,2,2,1]],[[1,1,2,1],[2,4,1,1],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[3,3,1,1],[0,3,0,2],[1,2,2,1]],[[2,1,2,1],[2,3,1,1],[0,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,3,1,1],[0,2,3,1],[1,2,3,0]],[[1,1,2,1],[2,3,1,1],[0,2,3,1],[1,3,2,0]],[[1,1,2,1],[2,3,1,1],[0,2,3,1],[2,2,2,0]],[[1,1,2,1],[2,3,1,1],[0,2,4,1],[1,2,2,0]],[[1,1,2,1],[2,3,1,1],[0,2,3,0],[1,2,2,2]],[[1,1,2,1],[2,3,1,1],[0,2,3,0],[1,2,3,1]],[[1,1,2,1],[2,3,1,1],[0,2,3,0],[1,3,2,1]],[[1,1,2,1],[2,3,1,1],[0,2,3,0],[2,2,2,1]],[[1,1,2,1],[2,3,1,1],[0,2,4,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[3,3,3,2],[1,0,1,0]],[[1,1,2,1],[2,4,1,0],[2,3,3,2],[1,0,1,0]],[[1,1,2,1],[3,3,1,0],[2,3,3,2],[1,0,1,0]],[[2,1,2,1],[2,3,1,0],[2,3,3,2],[1,0,1,0]],[[1,1,2,1],[2,3,1,0],[3,3,3,2],[1,0,0,1]],[[1,1,2,1],[2,4,1,0],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[3,3,1,0],[2,3,3,2],[1,0,0,1]],[[2,1,2,1],[2,3,1,0],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[2,3,1,0],[3,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,1,0],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[3,3,1,0],[2,3,3,1],[1,0,1,1]],[[2,1,2,1],[2,3,1,0],[2,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,3,1,0],[2,3,0,2],[1,3,2,0]],[[1,1,2,1],[2,3,1,0],[2,3,0,2],[2,2,2,0]],[[1,1,2,1],[2,3,1,0],[3,3,0,2],[1,2,2,0]],[[1,1,2,1],[3,3,1,0],[2,3,0,2],[1,2,2,0]],[[2,1,2,1],[2,3,1,0],[2,3,0,2],[1,2,2,0]],[[1,1,2,1],[2,3,1,0],[2,3,0,1],[1,3,2,1]],[[1,1,2,1],[2,3,1,0],[2,3,0,1],[2,2,2,1]],[[1,1,2,1],[2,3,1,0],[3,3,0,1],[1,2,2,1]],[[1,1,2,1],[3,3,1,0],[2,3,0,1],[1,2,2,1]],[[2,1,2,1],[2,3,1,0],[2,3,0,1],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[2,2,3,2],[2,2,0,0]],[[1,1,2,1],[2,3,1,0],[3,2,3,2],[1,2,0,0]],[[1,1,2,1],[2,4,1,0],[2,2,3,2],[1,2,0,0]],[[1,1,2,1],[3,3,1,0],[2,2,3,2],[1,2,0,0]],[[2,1,2,1],[2,3,1,0],[2,2,3,2],[1,2,0,0]],[[1,1,2,1],[2,3,1,0],[2,2,3,2],[2,1,1,0]],[[1,1,2,1],[2,3,1,0],[3,2,3,2],[1,1,1,0]],[[1,1,2,1],[2,4,1,0],[2,2,3,2],[1,1,1,0]],[[1,1,2,1],[3,3,1,0],[2,2,3,2],[1,1,1,0]],[[2,1,2,1],[2,3,1,0],[2,2,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,1,0],[2,2,3,2],[2,1,0,1]],[[1,1,2,1],[2,3,1,0],[3,2,3,2],[1,1,0,1]],[[1,1,2,1],[2,4,1,0],[2,2,3,2],[1,1,0,1]],[[1,1,2,1],[3,3,1,0],[2,2,3,2],[1,1,0,1]],[[2,1,2,1],[2,3,1,0],[2,2,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,1,0],[2,2,3,2],[2,0,2,0]],[[1,1,2,1],[2,3,1,0],[3,2,3,2],[1,0,2,0]],[[1,1,2,1],[2,4,1,0],[2,2,3,2],[1,0,2,0]],[[1,1,2,1],[3,3,1,0],[2,2,3,2],[1,0,2,0]],[[2,1,2,1],[2,3,1,0],[2,2,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,1,0],[2,2,3,2],[2,0,1,1]],[[1,1,2,1],[2,3,1,0],[3,2,3,2],[1,0,1,1]],[[1,1,2,1],[2,4,1,0],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[3,3,1,0],[2,2,3,2],[1,0,1,1]],[[2,1,2,1],[2,3,1,0],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,1,0],[3,2,3,2],[0,2,1,0]],[[1,1,2,1],[2,4,1,0],[2,2,3,2],[0,2,1,0]],[[1,1,2,1],[3,3,1,0],[2,2,3,2],[0,2,1,0]],[[2,1,2,1],[2,3,1,0],[2,2,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,1,0],[3,2,3,2],[0,2,0,1]],[[1,1,2,1],[2,4,1,0],[2,2,3,2],[0,2,0,1]],[[1,1,2,1],[3,3,1,0],[2,2,3,2],[0,2,0,1]],[[2,1,2,1],[2,3,1,0],[2,2,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,1,0],[3,2,3,2],[0,1,2,0]],[[1,1,2,1],[2,4,1,0],[2,2,3,2],[0,1,2,0]],[[1,1,2,1],[3,3,1,0],[2,2,3,2],[0,1,2,0]],[[2,1,2,1],[2,3,1,0],[2,2,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,1,0],[3,2,3,2],[0,1,1,1]],[[1,1,2,1],[2,4,1,0],[2,2,3,2],[0,1,1,1]],[[1,1,2,1],[3,3,1,0],[2,2,3,2],[0,1,1,1]],[[2,1,2,1],[2,3,1,0],[2,2,3,2],[0,1,1,1]],[[1,1,2,1],[2,3,1,0],[2,2,3,1],[2,2,0,1]],[[1,1,2,1],[2,3,1,0],[3,2,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,1,0],[2,2,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,1,0],[2,2,3,1],[1,2,0,1]],[[2,1,2,1],[2,3,1,0],[2,2,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,1,0],[2,2,3,1],[2,1,1,1]],[[1,1,2,1],[2,3,1,0],[3,2,3,1],[1,1,1,1]],[[1,1,2,1],[2,4,1,0],[2,2,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,1,0],[2,2,3,1],[1,1,1,1]],[[2,1,2,1],[2,3,1,0],[2,2,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,1,0],[2,2,3,1],[2,0,2,1]],[[1,1,2,1],[2,3,1,0],[3,2,3,1],[1,0,2,1]],[[1,1,2,1],[2,4,1,0],[2,2,3,1],[1,0,2,1]],[[1,1,2,1],[3,3,1,0],[2,2,3,1],[1,0,2,1]],[[2,1,2,1],[2,3,1,0],[2,2,3,1],[1,0,2,1]],[[1,1,2,1],[2,3,1,0],[3,2,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,1,0],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[3,3,1,0],[2,2,3,1],[0,2,1,1]],[[2,1,2,1],[2,3,1,0],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,1,0],[3,2,3,1],[0,1,2,1]],[[1,1,2,1],[2,4,1,0],[2,2,3,1],[0,1,2,1]],[[1,1,2,1],[3,3,1,0],[2,2,3,1],[0,1,2,1]],[[2,1,2,1],[2,3,1,0],[2,2,3,1],[0,1,2,1]],[[1,1,2,1],[2,3,1,0],[2,2,3,0],[2,1,2,1]],[[1,1,2,1],[2,3,1,0],[3,2,3,0],[1,1,2,1]],[[1,1,2,1],[2,4,1,0],[2,2,3,0],[1,1,2,1]],[[1,1,2,1],[3,3,1,0],[2,2,3,0],[1,1,2,1]],[[2,1,2,1],[2,3,1,0],[2,2,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,1,0],[3,2,3,0],[0,2,2,1]],[[1,1,2,1],[2,4,1,0],[2,2,3,0],[0,2,2,1]],[[1,1,2,1],[3,3,1,0],[2,2,3,0],[0,2,2,1]],[[2,1,2,1],[2,3,1,0],[2,2,3,0],[0,2,2,1]],[[1,1,2,1],[2,3,1,0],[2,2,2,2],[2,1,2,0]],[[1,1,2,1],[2,3,1,0],[3,2,2,2],[1,1,2,0]],[[1,1,2,1],[2,4,1,0],[2,2,2,2],[1,1,2,0]],[[1,1,2,1],[3,3,1,0],[2,2,2,2],[1,1,2,0]],[[2,1,2,1],[2,3,1,0],[2,2,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,1,0],[3,2,2,2],[0,2,2,0]],[[1,1,2,1],[2,4,1,0],[2,2,2,2],[0,2,2,0]],[[1,1,2,1],[3,3,1,0],[2,2,2,2],[0,2,2,0]],[[2,1,2,1],[2,3,1,0],[2,2,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,1,0],[2,2,2,1],[2,1,2,1]],[[1,1,2,1],[2,3,1,0],[3,2,2,1],[1,1,2,1]],[[1,1,2,1],[2,4,1,0],[2,2,2,1],[1,1,2,1]],[[1,1,2,1],[3,3,1,0],[2,2,2,1],[1,1,2,1]],[[2,1,2,1],[2,3,1,0],[2,2,2,1],[1,1,2,1]],[[1,1,2,1],[2,3,1,0],[3,2,2,1],[0,2,2,1]],[[1,1,2,1],[2,4,1,0],[2,2,2,1],[0,2,2,1]],[[1,1,2,1],[3,3,1,0],[2,2,2,1],[0,2,2,1]],[[2,1,2,1],[2,3,1,0],[2,2,2,1],[0,2,2,1]],[[1,1,2,1],[2,3,1,0],[2,2,1,2],[2,1,2,1]],[[1,1,2,1],[2,3,1,0],[3,2,1,2],[1,1,2,1]],[[1,1,2,1],[2,4,1,0],[2,2,1,2],[1,1,2,1]],[[1,1,2,1],[3,3,1,0],[2,2,1,2],[1,1,2,1]],[[2,1,2,1],[2,3,1,0],[2,2,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,1,0],[3,2,1,2],[0,2,2,1]],[[1,1,2,1],[2,4,1,0],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[3,3,1,0],[2,2,1,2],[0,2,2,1]],[[2,1,2,1],[2,3,1,0],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,1,0],[2,1,3,2],[1,3,1,0]],[[1,1,2,1],[2,3,1,0],[2,1,3,2],[2,2,1,0]],[[1,1,2,1],[2,3,1,0],[3,1,3,2],[1,2,1,0]],[[1,1,2,1],[2,4,1,0],[2,1,3,2],[1,2,1,0]],[[1,1,2,1],[3,3,1,0],[2,1,3,2],[1,2,1,0]],[[2,1,2,1],[2,3,1,0],[2,1,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,1,0],[2,1,3,2],[1,3,0,1]],[[1,1,2,1],[2,3,1,0],[2,1,3,2],[2,2,0,1]],[[1,1,2,1],[2,3,1,0],[3,1,3,2],[1,2,0,1]],[[1,1,2,1],[2,4,1,0],[2,1,3,2],[1,2,0,1]],[[1,1,2,1],[3,3,1,0],[2,1,3,2],[1,2,0,1]],[[2,1,2,1],[2,3,1,0],[2,1,3,2],[1,2,0,1]],[[1,1,2,1],[2,3,1,0],[2,1,3,1],[1,3,1,1]],[[1,1,2,1],[2,3,1,0],[2,1,3,1],[2,2,1,1]],[[1,1,2,1],[2,3,1,0],[3,1,3,1],[1,2,1,1]],[[1,1,2,1],[2,4,1,0],[2,1,3,1],[1,2,1,1]],[[1,1,2,1],[3,3,1,0],[2,1,3,1],[1,2,1,1]],[[2,1,2,1],[2,3,1,0],[2,1,3,1],[1,2,1,1]],[[1,1,2,1],[2,3,1,0],[2,1,3,0],[1,2,3,1]],[[1,1,2,1],[2,3,1,0],[2,1,3,0],[1,3,2,1]],[[1,1,2,1],[2,3,1,0],[2,1,3,0],[2,2,2,1]],[[1,1,2,1],[2,3,1,0],[3,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,4,1,0],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,0],[2,1,3,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,0],[2,1,3,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[2,1,2,2],[1,2,3,0]],[[1,1,2,1],[2,3,1,0],[2,1,2,2],[1,3,2,0]],[[1,1,2,1],[2,3,1,0],[2,1,2,2],[2,2,2,0]],[[1,1,2,1],[2,3,1,0],[3,1,2,2],[1,2,2,0]],[[1,1,2,1],[2,4,1,0],[2,1,2,2],[1,2,2,0]],[[1,1,2,1],[3,3,1,0],[2,1,2,2],[1,2,2,0]],[[2,1,2,1],[2,3,1,0],[2,1,2,2],[1,2,2,0]],[[1,1,2,1],[2,3,1,0],[2,1,2,1],[1,2,2,2]],[[1,1,2,1],[2,3,1,0],[2,1,2,1],[1,2,3,1]],[[1,1,2,1],[2,3,1,0],[2,1,2,1],[1,3,2,1]],[[1,1,2,1],[2,3,1,0],[2,1,2,1],[2,2,2,1]],[[1,1,2,1],[2,3,1,0],[3,1,2,1],[1,2,2,1]],[[1,1,2,1],[2,4,1,0],[2,1,2,1],[1,2,2,1]],[[1,1,2,1],[3,3,1,0],[2,1,2,1],[1,2,2,1]],[[2,1,2,1],[2,3,1,0],[2,1,2,1],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[2,1,1,2],[1,2,2,2]],[[1,1,2,1],[2,3,1,0],[2,1,1,2],[1,2,3,1]],[[1,1,2,1],[2,3,1,0],[2,1,1,2],[1,3,2,1]],[[1,1,2,1],[2,3,1,0],[2,1,1,2],[2,2,2,1]],[[1,1,2,1],[2,3,1,0],[2,1,1,3],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[3,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,4,1,0],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,1,0],[2,1,1,2],[1,2,2,1]],[[2,1,2,1],[2,3,1,0],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[2,0,3,2],[1,2,3,0]],[[1,1,2,1],[2,3,1,0],[2,0,3,2],[1,3,2,0]],[[1,1,2,1],[2,3,1,0],[2,0,3,2],[2,2,2,0]],[[1,1,2,1],[2,3,1,0],[2,0,3,3],[1,2,2,0]],[[1,1,2,1],[2,3,1,0],[2,0,4,2],[1,2,2,0]],[[1,1,2,1],[2,3,1,0],[3,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,4,1,0],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[3,3,1,0],[2,0,3,2],[1,2,2,0]],[[2,1,2,1],[2,3,1,0],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,3,1,0],[2,0,3,2],[1,2,1,2]],[[1,1,2,1],[2,3,1,0],[2,0,3,3],[1,2,1,1]],[[1,1,2,1],[2,3,1,0],[2,0,4,2],[1,2,1,1]],[[1,1,2,1],[2,3,1,0],[2,0,3,1],[1,2,2,2]],[[1,1,2,1],[2,3,1,0],[2,0,3,1],[1,2,3,1]],[[1,1,2,1],[2,3,1,0],[2,0,3,1],[1,3,2,1]],[[1,1,2,1],[2,3,1,0],[2,0,3,1],[2,2,2,1]],[[1,1,2,1],[2,3,1,0],[2,0,4,1],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[3,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,4,1,0],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[3,3,1,0],[2,0,3,1],[1,2,2,1]],[[2,1,2,1],[2,3,1,0],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[2,0,2,2],[1,2,2,2]],[[1,1,2,1],[2,3,1,0],[2,0,2,2],[1,2,3,1]],[[1,1,2,1],[2,3,1,0],[2,0,2,2],[1,3,2,1]],[[1,1,2,1],[2,3,1,0],[2,0,2,2],[2,2,2,1]],[[1,1,2,1],[2,3,1,0],[2,0,2,3],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[3,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,4,1,0],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[3,3,1,0],[2,0,2,2],[1,2,2,1]],[[2,1,2,1],[2,3,1,0],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,2],[1,2,0,0]],[[1,1,2,1],[2,4,1,0],[1,3,3,2],[1,2,0,0]],[[1,1,2,1],[3,3,1,0],[1,3,3,2],[1,2,0,0]],[[2,1,2,1],[2,3,1,0],[1,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,3,1,0],[1,3,3,3],[1,1,1,0]],[[1,1,2,1],[2,3,1,0],[1,3,4,2],[1,1,1,0]],[[1,1,2,1],[2,3,1,0],[1,4,3,2],[1,1,1,0]],[[1,1,2,1],[2,4,1,0],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[3,3,1,0],[1,3,3,2],[1,1,1,0]],[[2,1,2,1],[2,3,1,0],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,1,0],[1,3,3,2],[1,1,0,2]],[[1,1,2,1],[2,3,1,0],[1,3,3,3],[1,1,0,1]],[[1,1,2,1],[2,3,1,0],[1,3,4,2],[1,1,0,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,2],[1,1,0,1]],[[1,1,2,1],[2,4,1,0],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[3,3,1,0],[1,3,3,2],[1,1,0,1]],[[2,1,2,1],[2,3,1,0],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,1,0],[1,3,3,2],[1,0,3,0]],[[1,1,2,1],[2,3,1,0],[1,3,3,3],[1,0,2,0]],[[1,1,2,1],[2,3,1,0],[1,3,4,2],[1,0,2,0]],[[1,1,2,1],[2,3,1,0],[1,4,3,2],[1,0,2,0]],[[1,1,2,1],[2,4,1,0],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[3,3,1,0],[1,3,3,2],[1,0,2,0]],[[2,1,2,1],[2,3,1,0],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,1,0],[1,3,3,2],[1,0,1,2]],[[1,1,2,1],[2,3,1,0],[1,3,3,3],[1,0,1,1]],[[1,1,2,1],[2,3,1,0],[1,3,4,2],[1,0,1,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,2],[1,0,1,1]],[[1,1,2,1],[2,4,1,0],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[3,3,1,0],[1,3,3,2],[1,0,1,1]],[[2,1,2,1],[2,3,1,0],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,1,0],[1,3,3,2],[0,3,1,0]],[[1,1,2,1],[2,3,1,0],[1,3,3,3],[0,2,1,0]],[[1,1,2,1],[2,3,1,0],[1,3,4,2],[0,2,1,0]],[[1,1,2,1],[2,3,1,0],[1,4,3,2],[0,2,1,0]],[[1,1,2,1],[2,4,1,0],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[3,3,1,0],[1,3,3,2],[0,2,1,0]],[[2,1,2,1],[2,3,1,0],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,1,0],[1,3,3,2],[0,2,0,2]],[[1,1,2,1],[2,3,1,0],[1,3,3,2],[0,3,0,1]],[[1,1,2,1],[2,3,1,0],[1,3,3,3],[0,2,0,1]],[[1,1,2,1],[2,3,1,0],[1,3,4,2],[0,2,0,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,2],[0,2,0,1]],[[1,1,2,1],[2,4,1,0],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[3,3,1,0],[1,3,3,2],[0,2,0,1]],[[2,1,2,1],[2,3,1,0],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,1,0],[1,3,3,2],[0,1,3,0]],[[1,1,2,1],[2,3,1,0],[1,3,3,3],[0,1,2,0]],[[1,1,2,1],[2,3,1,0],[1,3,4,2],[0,1,2,0]],[[1,1,2,1],[2,3,1,0],[1,4,3,2],[0,1,2,0]],[[1,1,2,1],[2,4,1,0],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[3,3,1,0],[1,3,3,2],[0,1,2,0]],[[2,1,2,1],[2,3,1,0],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,1,0],[1,3,3,2],[0,1,1,2]],[[1,1,2,1],[2,3,1,0],[1,3,3,3],[0,1,1,1]],[[1,1,2,1],[2,3,1,0],[1,3,4,2],[0,1,1,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,2],[0,1,1,1]],[[1,1,2,1],[2,4,1,0],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[3,3,1,0],[1,3,3,2],[0,1,1,1]],[[2,1,2,1],[2,3,1,0],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,3,1,0],[1,3,3,2],[0,0,2,2]],[[1,1,2,1],[2,3,1,0],[1,3,3,3],[0,0,2,1]],[[1,1,2,1],[2,3,1,0],[1,3,4,2],[0,0,2,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,1,0],[1,3,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,1,0],[1,3,3,1],[1,2,0,1]],[[2,1,2,1],[2,3,1,0],[1,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,1,0],[1,3,4,1],[1,1,1,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,1],[1,1,1,1]],[[1,1,2,1],[2,4,1,0],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,1,0],[1,3,3,1],[1,1,1,1]],[[2,1,2,1],[2,3,1,0],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,1,0],[1,3,3,1],[1,0,2,2]],[[1,1,2,1],[2,3,1,0],[1,3,3,1],[1,0,3,1]],[[1,1,2,1],[2,3,1,0],[1,3,4,1],[1,0,2,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,1],[1,0,2,1]],[[1,1,2,1],[2,4,1,0],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[3,3,1,0],[1,3,3,1],[1,0,2,1]],[[2,1,2,1],[2,3,1,0],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,3,1,0],[1,3,3,1],[0,3,1,1]],[[1,1,2,1],[2,3,1,0],[1,3,4,1],[0,2,1,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,1,0],[1,3,3,1],[0,2,1,1]],[[1,1,2,1],[3,3,1,0],[1,3,3,1],[0,2,1,1]],[[2,1,2,1],[2,3,1,0],[1,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,1,0],[1,3,3,1],[0,1,2,2]],[[1,1,2,1],[2,3,1,0],[1,3,3,1],[0,1,3,1]],[[1,1,2,1],[2,3,1,0],[1,3,4,1],[0,1,2,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,1],[0,1,2,1]],[[1,1,2,1],[2,4,1,0],[1,3,3,1],[0,1,2,1]],[[1,1,2,1],[3,3,1,0],[1,3,3,1],[0,1,2,1]],[[2,1,2,1],[2,3,1,0],[1,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,0],[1,1,2,1]],[[1,1,2,1],[2,4,1,0],[1,3,3,0],[1,1,2,1]],[[1,1,2,1],[3,3,1,0],[1,3,3,0],[1,1,2,1]],[[2,1,2,1],[2,3,1,0],[1,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,1,0],[1,3,3,0],[0,2,3,1]],[[1,1,2,1],[2,3,1,0],[1,3,3,0],[0,3,2,1]],[[1,1,2,1],[2,3,1,0],[1,4,3,0],[0,2,2,1]],[[1,1,2,1],[2,4,1,0],[1,3,3,0],[0,2,2,1]],[[1,1,2,1],[3,3,1,0],[1,3,3,0],[0,2,2,1]],[[2,1,2,1],[2,3,1,0],[1,3,3,0],[0,2,2,1]],[[1,1,2,1],[2,3,1,0],[1,4,2,2],[1,1,2,0]],[[1,1,2,1],[2,4,1,0],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[3,3,1,0],[1,3,2,2],[1,1,2,0]],[[2,1,2,1],[2,3,1,0],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,1,0],[1,3,2,2],[1,0,2,2]],[[1,1,2,1],[2,3,1,0],[1,3,2,2],[1,0,3,1]],[[1,1,2,1],[2,3,1,0],[1,3,2,3],[1,0,2,1]],[[1,1,2,1],[2,3,1,0],[1,3,2,2],[0,2,3,0]],[[1,1,2,1],[2,3,1,0],[1,3,2,2],[0,3,2,0]],[[1,1,2,1],[2,3,1,0],[1,4,2,2],[0,2,2,0]],[[1,1,2,1],[2,4,1,0],[1,3,2,2],[0,2,2,0]],[[1,1,2,1],[3,3,1,0],[1,3,2,2],[0,2,2,0]],[[2,1,2,1],[2,3,1,0],[1,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,1,0],[1,3,2,2],[0,1,2,2]],[[1,1,2,1],[2,3,1,0],[1,3,2,2],[0,1,3,1]],[[1,1,2,1],[2,3,1,0],[1,3,2,3],[0,1,2,1]],[[1,1,2,1],[2,3,1,0],[1,4,2,1],[1,1,2,1]],[[1,1,2,1],[2,4,1,0],[1,3,2,1],[1,1,2,1]],[[1,1,2,1],[3,3,1,0],[1,3,2,1],[1,1,2,1]],[[2,1,2,1],[2,3,1,0],[1,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,3,1,0],[1,3,2,1],[0,2,2,2]],[[1,1,2,1],[2,3,1,0],[1,3,2,1],[0,2,3,1]],[[1,1,2,1],[2,3,1,0],[1,3,2,1],[0,3,2,1]],[[1,1,2,1],[2,3,1,0],[1,4,2,1],[0,2,2,1]],[[1,1,2,1],[2,4,1,0],[1,3,2,1],[0,2,2,1]],[[1,1,2,1],[3,3,1,0],[1,3,2,1],[0,2,2,1]],[[2,1,2,1],[2,3,1,0],[1,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,3,1,0],[1,4,1,2],[1,1,2,1]],[[1,1,2,1],[2,4,1,0],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[3,3,1,0],[1,3,1,2],[1,1,2,1]],[[2,1,2,1],[2,3,1,0],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,1,0],[1,3,1,2],[0,2,2,2]],[[1,1,2,1],[2,3,1,0],[1,3,1,2],[0,2,3,1]],[[1,1,2,1],[2,3,1,0],[1,3,1,2],[0,3,2,1]],[[1,1,2,1],[2,3,1,0],[1,3,1,3],[0,2,2,1]],[[1,1,2,1],[2,3,1,0],[1,4,1,2],[0,2,2,1]],[[1,1,2,1],[2,4,1,0],[1,3,1,2],[0,2,2,1]],[[1,1,2,1],[3,3,1,0],[1,3,1,2],[0,2,2,1]],[[2,1,2,1],[2,3,1,0],[1,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,1,0],[1,2,3,2],[0,2,3,0]],[[1,1,2,1],[2,3,1,0],[1,2,3,2],[0,3,2,0]],[[1,1,2,1],[2,3,1,0],[1,2,3,3],[0,2,2,0]],[[1,1,2,1],[2,3,1,0],[1,2,4,2],[0,2,2,0]],[[1,1,2,1],[2,3,1,0],[1,2,3,2],[0,2,1,2]],[[1,1,2,1],[2,3,1,0],[1,2,3,3],[0,2,1,1]],[[1,1,2,1],[2,3,1,0],[1,2,4,2],[0,2,1,1]],[[1,1,2,1],[2,3,1,0],[1,2,3,1],[0,2,2,2]],[[1,1,2,1],[2,3,1,0],[1,2,3,1],[0,2,3,1]],[[1,1,2,1],[2,3,1,0],[1,2,3,1],[0,3,2,1]],[[1,1,2,1],[2,3,1,0],[1,2,4,1],[0,2,2,1]],[[1,1,2,1],[2,3,1,0],[1,2,2,2],[0,2,2,2]],[[1,1,2,1],[2,3,1,0],[1,2,2,2],[0,2,3,1]],[[1,1,2,1],[2,3,1,0],[1,2,2,2],[0,3,2,1]],[[1,1,2,1],[2,3,1,0],[1,2,2,3],[0,2,2,1]],[[1,1,2,1],[2,3,1,0],[0,3,3,2],[1,3,1,0]],[[1,1,2,1],[2,3,1,0],[0,3,3,2],[2,2,1,0]],[[1,1,2,1],[2,3,1,0],[0,3,3,3],[1,2,1,0]],[[1,1,2,1],[2,3,1,0],[0,3,4,2],[1,2,1,0]],[[1,1,2,1],[2,3,1,0],[0,4,3,2],[1,2,1,0]],[[1,1,2,1],[2,4,1,0],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[3,3,1,0],[0,3,3,2],[1,2,1,0]],[[2,1,2,1],[2,3,1,0],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,1,0],[0,3,3,2],[1,2,0,2]],[[1,1,2,1],[2,3,1,0],[0,3,3,2],[1,3,0,1]],[[1,1,2,1],[2,3,1,0],[0,3,3,2],[2,2,0,1]],[[1,1,2,1],[2,3,1,0],[0,3,3,3],[1,2,0,1]],[[1,1,2,1],[2,3,1,0],[0,3,4,2],[1,2,0,1]],[[1,1,2,1],[2,3,1,0],[0,4,3,2],[1,2,0,1]],[[1,1,2,1],[2,4,1,0],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[3,3,1,0],[0,3,3,2],[1,2,0,1]],[[2,1,2,1],[2,3,1,0],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,3,1,0],[0,3,3,2],[1,1,3,0]],[[1,1,2,1],[2,3,1,0],[0,3,3,3],[1,1,2,0]],[[1,1,2,1],[2,3,1,0],[0,3,4,2],[1,1,2,0]],[[1,1,2,1],[2,3,1,0],[0,4,3,2],[1,1,2,0]],[[1,1,2,1],[2,4,1,0],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[3,3,1,0],[0,3,3,2],[1,1,2,0]],[[2,1,2,1],[2,3,1,0],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[2,3,1,0],[0,3,3,2],[1,1,1,2]],[[1,1,2,1],[2,3,1,0],[0,3,3,3],[1,1,1,1]],[[1,1,2,1],[2,3,1,0],[0,3,4,2],[1,1,1,1]],[[1,1,2,1],[2,3,1,0],[0,4,3,2],[1,1,1,1]],[[1,1,2,1],[2,4,1,0],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[3,3,1,0],[0,3,3,2],[1,1,1,1]],[[2,1,2,1],[2,3,1,0],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[2,3,1,0],[0,3,3,2],[1,0,2,2]],[[1,1,2,1],[2,3,1,0],[0,3,3,3],[1,0,2,1]],[[1,1,2,1],[2,3,1,0],[0,3,4,2],[1,0,2,1]],[[1,1,2,1],[2,3,1,0],[0,3,3,1],[1,3,1,1]],[[1,1,2,1],[2,3,1,0],[0,3,3,1],[2,2,1,1]],[[1,1,2,1],[2,3,1,0],[0,3,4,1],[1,2,1,1]],[[1,1,2,1],[2,3,1,0],[0,4,3,1],[1,2,1,1]],[[1,1,2,1],[2,4,1,0],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[3,3,1,0],[0,3,3,1],[1,2,1,1]],[[2,1,2,1],[2,3,1,0],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[2,3,1,0],[0,3,3,1],[1,1,2,2]],[[1,1,2,1],[2,3,1,0],[0,3,3,1],[1,1,3,1]],[[1,1,2,1],[2,3,1,0],[0,3,4,1],[1,1,2,1]],[[1,1,2,1],[2,3,1,0],[0,4,3,1],[1,1,2,1]],[[1,1,2,1],[2,4,1,0],[0,3,3,1],[1,1,2,1]],[[1,1,2,1],[3,3,1,0],[0,3,3,1],[1,1,2,1]],[[2,1,2,1],[2,3,1,0],[0,3,3,1],[1,1,2,1]],[[1,1,2,1],[2,3,1,0],[0,3,3,0],[1,2,3,1]],[[1,1,2,1],[2,3,1,0],[0,3,3,0],[1,3,2,1]],[[1,1,2,1],[2,3,1,0],[0,3,3,0],[2,2,2,1]],[[1,1,2,1],[2,3,1,0],[0,4,3,0],[1,2,2,1]],[[1,1,2,1],[2,4,1,0],[0,3,3,0],[1,2,2,1]],[[1,1,2,1],[3,3,1,0],[0,3,3,0],[1,2,2,1]],[[2,1,2,1],[2,3,1,0],[0,3,3,0],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[0,3,2,2],[1,2,3,0]],[[1,1,2,1],[2,3,1,0],[0,3,2,2],[1,3,2,0]],[[1,1,2,1],[2,3,1,0],[0,3,2,2],[2,2,2,0]],[[1,1,2,1],[2,3,1,0],[0,4,2,2],[1,2,2,0]],[[1,1,2,1],[2,4,1,0],[0,3,2,2],[1,2,2,0]],[[1,1,2,1],[3,3,1,0],[0,3,2,2],[1,2,2,0]],[[2,1,2,1],[2,3,1,0],[0,3,2,2],[1,2,2,0]],[[1,1,2,1],[2,3,1,0],[0,3,2,2],[1,1,2,2]],[[1,1,2,1],[2,3,1,0],[0,3,2,2],[1,1,3,1]],[[1,1,2,1],[2,3,1,0],[0,3,2,3],[1,1,2,1]],[[1,1,2,1],[2,3,1,0],[0,3,2,1],[1,2,2,2]],[[1,1,2,1],[2,3,1,0],[0,3,2,1],[1,2,3,1]],[[1,1,2,1],[2,3,1,0],[0,3,2,1],[1,3,2,1]],[[1,1,2,1],[2,3,1,0],[0,3,2,1],[2,2,2,1]],[[1,1,2,1],[2,3,1,0],[0,4,2,1],[1,2,2,1]],[[1,1,2,1],[2,4,1,0],[0,3,2,1],[1,2,2,1]],[[1,1,2,1],[3,3,1,0],[0,3,2,1],[1,2,2,1]],[[2,1,2,1],[2,3,1,0],[0,3,2,1],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[0,3,1,2],[1,2,2,2]],[[1,1,2,1],[2,3,1,0],[0,3,1,2],[1,2,3,1]],[[1,1,2,1],[2,3,1,0],[0,3,1,2],[1,3,2,1]],[[1,1,2,1],[2,3,1,0],[0,3,1,2],[2,2,2,1]],[[1,1,2,1],[2,3,1,0],[0,3,1,3],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[0,4,1,2],[1,2,2,1]],[[1,1,2,1],[2,4,1,0],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,1,0],[0,3,1,2],[1,2,2,1]],[[2,1,2,1],[2,3,1,0],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[0,2,3,2],[1,2,3,0]],[[1,1,2,1],[2,3,1,0],[0,2,3,2],[1,3,2,0]],[[1,1,2,1],[2,3,1,0],[0,2,3,2],[2,2,2,0]],[[1,1,2,1],[2,3,1,0],[0,2,3,3],[1,2,2,0]],[[1,1,2,1],[2,3,1,0],[0,2,4,2],[1,2,2,0]],[[1,1,2,1],[2,3,1,0],[0,2,3,2],[1,2,1,2]],[[1,1,2,1],[2,3,1,0],[0,2,3,3],[1,2,1,1]],[[1,1,2,1],[2,3,1,0],[0,2,4,2],[1,2,1,1]],[[1,1,2,1],[2,3,1,0],[0,2,3,1],[1,2,2,2]],[[1,1,2,1],[2,3,1,0],[0,2,3,1],[1,2,3,1]],[[1,1,2,1],[2,3,1,0],[0,2,3,1],[1,3,2,1]],[[1,1,2,1],[2,3,1,0],[0,2,3,1],[2,2,2,1]],[[1,1,2,1],[2,3,1,0],[0,2,4,1],[1,2,2,1]],[[1,1,2,1],[2,3,1,0],[0,2,2,2],[1,2,2,2]],[[1,1,2,1],[2,3,1,0],[0,2,2,2],[1,2,3,1]],[[1,1,2,1],[2,3,1,0],[0,2,2,2],[1,3,2,1]],[[1,1,2,1],[2,3,1,0],[0,2,2,2],[2,2,2,1]],[[1,1,2,1],[2,3,1,0],[0,2,2,3],[1,2,2,1]],[[1,1,2,1],[2,3,0,2],[3,3,3,1],[1,0,1,0]],[[1,1,2,1],[2,4,0,2],[2,3,3,1],[1,0,1,0]],[[1,1,2,1],[3,3,0,2],[2,3,3,1],[1,0,1,0]],[[2,1,2,1],[2,3,0,2],[2,3,3,1],[1,0,1,0]],[[1,1,2,1],[2,3,0,2],[3,3,3,1],[1,0,0,1]],[[1,1,2,1],[2,4,0,2],[2,3,3,1],[1,0,0,1]],[[1,1,2,1],[3,3,0,2],[2,3,3,1],[1,0,0,1]],[[2,1,2,1],[2,3,0,2],[2,3,3,1],[1,0,0,1]],[[1,1,2,1],[2,3,0,2],[3,3,3,0],[1,0,1,1]],[[1,1,2,1],[2,4,0,2],[2,3,3,0],[1,0,1,1]],[[1,1,2,1],[3,3,0,2],[2,3,3,0],[1,0,1,1]],[[2,1,2,1],[2,3,0,2],[2,3,3,0],[1,0,1,1]],[[1,1,2,1],[2,3,0,2],[3,3,2,2],[1,0,1,0]],[[1,1,2,1],[2,4,0,2],[2,3,2,2],[1,0,1,0]],[[1,1,2,1],[3,3,0,2],[2,3,2,2],[1,0,1,0]],[[2,1,2,1],[2,3,0,2],[2,3,2,2],[1,0,1,0]],[[1,1,2,1],[2,3,0,2],[3,3,2,2],[1,0,0,1]],[[1,1,2,1],[2,4,0,2],[2,3,2,2],[1,0,0,1]],[[1,1,2,1],[3,3,0,2],[2,3,2,2],[1,0,0,1]],[[2,1,2,1],[2,3,0,2],[2,3,2,2],[1,0,0,1]],[[1,1,2,1],[2,3,0,2],[2,3,0,1],[1,3,2,0]],[[1,1,2,1],[2,3,0,2],[2,3,0,1],[2,2,2,0]],[[1,1,2,1],[2,3,0,2],[3,3,0,1],[1,2,2,0]],[[1,1,2,1],[3,3,0,2],[2,3,0,1],[1,2,2,0]],[[2,1,2,1],[2,3,0,2],[2,3,0,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,2],[2,3,0,0],[1,3,2,1]],[[1,1,2,1],[2,3,0,2],[2,3,0,0],[2,2,2,1]],[[1,1,2,1],[2,3,0,2],[3,3,0,0],[1,2,2,1]],[[1,1,2,1],[3,3,0,2],[2,3,0,0],[1,2,2,1]],[[2,1,2,1],[2,3,0,2],[2,3,0,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,2],[2,2,3,1],[2,2,0,0]],[[1,1,2,1],[2,3,0,2],[3,2,3,1],[1,2,0,0]],[[1,1,2,1],[2,4,0,2],[2,2,3,1],[1,2,0,0]],[[1,1,2,1],[3,3,0,2],[2,2,3,1],[1,2,0,0]],[[2,1,2,1],[2,3,0,2],[2,2,3,1],[1,2,0,0]],[[1,1,2,1],[2,3,0,2],[2,2,3,1],[2,1,1,0]],[[1,1,2,1],[2,3,0,2],[3,2,3,1],[1,1,1,0]],[[1,1,2,1],[2,4,0,2],[2,2,3,1],[1,1,1,0]],[[1,1,2,1],[3,3,0,2],[2,2,3,1],[1,1,1,0]],[[2,1,2,1],[2,3,0,2],[2,2,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,0,2],[2,2,3,1],[2,1,0,1]],[[1,1,2,1],[2,3,0,2],[3,2,3,1],[1,1,0,1]],[[1,1,2,1],[2,4,0,2],[2,2,3,1],[1,1,0,1]],[[1,1,2,1],[3,3,0,2],[2,2,3,1],[1,1,0,1]],[[2,1,2,1],[2,3,0,2],[2,2,3,1],[1,1,0,1]],[[1,1,2,1],[2,3,0,2],[2,2,3,1],[2,0,2,0]],[[1,1,2,1],[2,3,0,2],[3,2,3,1],[1,0,2,0]],[[1,1,2,1],[2,4,0,2],[2,2,3,1],[1,0,2,0]],[[1,1,2,1],[3,3,0,2],[2,2,3,1],[1,0,2,0]],[[2,1,2,1],[2,3,0,2],[2,2,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,0,2],[2,2,3,1],[2,0,1,1]],[[1,1,2,1],[2,3,0,2],[3,2,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,0,2],[2,2,3,1],[1,0,1,1]],[[1,1,2,1],[3,3,0,2],[2,2,3,1],[1,0,1,1]],[[2,1,2,1],[2,3,0,2],[2,2,3,1],[1,0,1,1]],[[1,1,2,1],[2,3,0,2],[3,2,3,1],[0,2,1,0]],[[1,1,2,1],[2,4,0,2],[2,2,3,1],[0,2,1,0]],[[1,1,2,1],[3,3,0,2],[2,2,3,1],[0,2,1,0]],[[2,1,2,1],[2,3,0,2],[2,2,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,0,2],[3,2,3,1],[0,2,0,1]],[[1,1,2,1],[2,4,0,2],[2,2,3,1],[0,2,0,1]],[[1,1,2,1],[3,3,0,2],[2,2,3,1],[0,2,0,1]],[[2,1,2,1],[2,3,0,2],[2,2,3,1],[0,2,0,1]],[[1,1,2,1],[2,3,0,2],[3,2,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,0,2],[2,2,3,1],[0,1,2,0]],[[1,1,2,1],[3,3,0,2],[2,2,3,1],[0,1,2,0]],[[2,1,2,1],[2,3,0,2],[2,2,3,1],[0,1,2,0]],[[1,1,2,1],[2,3,0,2],[3,2,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,0,2],[2,2,3,1],[0,1,1,1]],[[1,1,2,1],[3,3,0,2],[2,2,3,1],[0,1,1,1]],[[2,1,2,1],[2,3,0,2],[2,2,3,1],[0,1,1,1]],[[1,1,2,1],[2,3,0,2],[2,2,3,0],[2,2,0,1]],[[1,1,2,1],[2,3,0,2],[3,2,3,0],[1,2,0,1]],[[1,1,2,1],[2,4,0,2],[2,2,3,0],[1,2,0,1]],[[1,1,2,1],[3,3,0,2],[2,2,3,0],[1,2,0,1]],[[2,1,2,1],[2,3,0,2],[2,2,3,0],[1,2,0,1]],[[1,1,2,1],[2,3,0,2],[2,2,3,0],[2,1,1,1]],[[1,1,2,1],[2,3,0,2],[3,2,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,0,2],[2,2,3,0],[1,1,1,1]],[[1,1,2,1],[3,3,0,2],[2,2,3,0],[1,1,1,1]],[[2,1,2,1],[2,3,0,2],[2,2,3,0],[1,1,1,1]],[[1,1,2,1],[2,3,0,2],[2,2,3,0],[2,0,2,1]],[[1,1,2,1],[2,3,0,2],[3,2,3,0],[1,0,2,1]],[[1,1,2,1],[2,4,0,2],[2,2,3,0],[1,0,2,1]],[[1,1,2,1],[3,3,0,2],[2,2,3,0],[1,0,2,1]],[[2,1,2,1],[2,3,0,2],[2,2,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,0,2],[3,2,3,0],[0,2,1,1]],[[1,1,2,1],[2,4,0,2],[2,2,3,0],[0,2,1,1]],[[1,1,2,1],[3,3,0,2],[2,2,3,0],[0,2,1,1]],[[2,1,2,1],[2,3,0,2],[2,2,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,0,2],[3,2,3,0],[0,1,2,1]],[[1,1,2,1],[2,4,0,2],[2,2,3,0],[0,1,2,1]],[[1,1,2,1],[3,3,0,2],[2,2,3,0],[0,1,2,1]],[[2,1,2,1],[2,3,0,2],[2,2,3,0],[0,1,2,1]],[[1,1,2,1],[2,3,0,2],[2,2,2,2],[2,2,0,0]],[[1,1,2,1],[2,3,0,2],[3,2,2,2],[1,2,0,0]],[[1,1,2,1],[2,4,0,2],[2,2,2,2],[1,2,0,0]],[[1,1,2,1],[3,3,0,2],[2,2,2,2],[1,2,0,0]],[[2,1,2,1],[2,3,0,2],[2,2,2,2],[1,2,0,0]],[[1,1,2,1],[2,3,0,2],[2,2,2,2],[2,1,1,0]],[[1,1,2,1],[2,3,0,2],[3,2,2,2],[1,1,1,0]],[[1,1,2,1],[2,4,0,2],[2,2,2,2],[1,1,1,0]],[[1,1,2,1],[3,3,0,2],[2,2,2,2],[1,1,1,0]],[[2,1,2,1],[2,3,0,2],[2,2,2,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,2],[2,2,2,2],[2,1,0,1]],[[1,1,2,1],[2,3,0,2],[3,2,2,2],[1,1,0,1]],[[1,1,2,1],[2,4,0,2],[2,2,2,2],[1,1,0,1]],[[1,1,2,1],[3,3,0,2],[2,2,2,2],[1,1,0,1]],[[2,1,2,1],[2,3,0,2],[2,2,2,2],[1,1,0,1]],[[1,1,2,1],[2,3,0,2],[2,2,2,2],[2,0,2,0]],[[1,1,2,1],[2,3,0,2],[3,2,2,2],[1,0,2,0]],[[1,1,2,1],[2,4,0,2],[2,2,2,2],[1,0,2,0]],[[1,1,2,1],[3,3,0,2],[2,2,2,2],[1,0,2,0]],[[2,1,2,1],[2,3,0,2],[2,2,2,2],[1,0,2,0]],[[1,1,2,1],[2,3,0,2],[2,2,2,2],[2,0,1,1]],[[1,1,2,1],[2,3,0,2],[3,2,2,2],[1,0,1,1]],[[1,1,2,1],[2,4,0,2],[2,2,2,2],[1,0,1,1]],[[1,1,2,1],[3,3,0,2],[2,2,2,2],[1,0,1,1]],[[2,1,2,1],[2,3,0,2],[2,2,2,2],[1,0,1,1]],[[1,1,2,1],[2,3,0,2],[3,2,2,2],[0,2,1,0]],[[1,1,2,1],[2,4,0,2],[2,2,2,2],[0,2,1,0]],[[1,1,2,1],[3,3,0,2],[2,2,2,2],[0,2,1,0]],[[2,1,2,1],[2,3,0,2],[2,2,2,2],[0,2,1,0]],[[1,1,2,1],[2,3,0,2],[3,2,2,2],[0,2,0,1]],[[1,1,2,1],[2,4,0,2],[2,2,2,2],[0,2,0,1]],[[1,1,2,1],[3,3,0,2],[2,2,2,2],[0,2,0,1]],[[2,1,2,1],[2,3,0,2],[2,2,2,2],[0,2,0,1]],[[1,1,2,1],[2,3,0,2],[3,2,2,2],[0,1,2,0]],[[1,1,2,1],[2,4,0,2],[2,2,2,2],[0,1,2,0]],[[1,1,2,1],[3,3,0,2],[2,2,2,2],[0,1,2,0]],[[2,1,2,1],[2,3,0,2],[2,2,2,2],[0,1,2,0]],[[1,1,2,1],[2,3,0,2],[3,2,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,0,2],[2,2,2,2],[0,1,1,1]],[[1,1,2,1],[3,3,0,2],[2,2,2,2],[0,1,1,1]],[[2,1,2,1],[2,3,0,2],[2,2,2,2],[0,1,1,1]],[[1,1,2,1],[2,3,0,2],[2,2,2,1],[2,1,2,0]],[[1,1,2,1],[2,3,0,2],[3,2,2,1],[1,1,2,0]],[[1,1,2,1],[2,4,0,2],[2,2,2,1],[1,1,2,0]],[[1,1,2,1],[3,3,0,2],[2,2,2,1],[1,1,2,0]],[[2,1,2,1],[2,3,0,2],[2,2,2,1],[1,1,2,0]],[[1,1,2,1],[2,3,0,2],[3,2,2,1],[0,2,2,0]],[[1,1,2,1],[2,4,0,2],[2,2,2,1],[0,2,2,0]],[[1,1,2,1],[3,3,0,2],[2,2,2,1],[0,2,2,0]],[[2,1,2,1],[2,3,0,2],[2,2,2,1],[0,2,2,0]],[[1,1,2,1],[2,3,0,2],[2,2,2,0],[2,1,2,1]],[[1,1,2,1],[2,3,0,2],[3,2,2,0],[1,1,2,1]],[[1,1,2,1],[2,4,0,2],[2,2,2,0],[1,1,2,1]],[[1,1,2,1],[3,3,0,2],[2,2,2,0],[1,1,2,1]],[[2,1,2,1],[2,3,0,2],[2,2,2,0],[1,1,2,1]],[[1,1,2,1],[2,3,0,2],[3,2,2,0],[0,2,2,1]],[[1,1,2,1],[2,4,0,2],[2,2,2,0],[0,2,2,1]],[[1,1,2,1],[3,3,0,2],[2,2,2,0],[0,2,2,1]],[[2,1,2,1],[2,3,0,2],[2,2,2,0],[0,2,2,1]],[[1,1,2,1],[2,3,0,2],[2,2,1,2],[2,1,2,0]],[[1,1,2,1],[2,3,0,2],[3,2,1,2],[1,1,2,0]],[[1,1,2,1],[2,4,0,2],[2,2,1,2],[1,1,2,0]],[[1,1,2,1],[3,3,0,2],[2,2,1,2],[1,1,2,0]],[[2,1,2,1],[2,3,0,2],[2,2,1,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,2],[2,2,1,2],[2,1,1,1]],[[1,1,2,1],[2,3,0,2],[3,2,1,2],[1,1,1,1]],[[1,1,2,1],[2,4,0,2],[2,2,1,2],[1,1,1,1]],[[1,1,2,1],[3,3,0,2],[2,2,1,2],[1,1,1,1]],[[2,1,2,1],[2,3,0,2],[2,2,1,2],[1,1,1,1]],[[1,1,2,1],[2,3,0,2],[2,2,1,2],[2,0,2,1]],[[1,1,2,1],[2,3,0,2],[3,2,1,2],[1,0,2,1]],[[1,1,2,1],[2,4,0,2],[2,2,1,2],[1,0,2,1]],[[1,1,2,1],[3,3,0,2],[2,2,1,2],[1,0,2,1]],[[2,1,2,1],[2,3,0,2],[2,2,1,2],[1,0,2,1]],[[1,1,2,1],[2,3,0,2],[3,2,1,2],[0,2,2,0]],[[1,1,2,1],[2,4,0,2],[2,2,1,2],[0,2,2,0]],[[1,1,2,1],[3,3,0,2],[2,2,1,2],[0,2,2,0]],[[2,1,2,1],[2,3,0,2],[2,2,1,2],[0,2,2,0]],[[1,1,2,1],[2,3,0,2],[3,2,1,2],[0,2,1,1]],[[1,1,2,1],[2,4,0,2],[2,2,1,2],[0,2,1,1]],[[1,1,2,1],[3,3,0,2],[2,2,1,2],[0,2,1,1]],[[2,1,2,1],[2,3,0,2],[2,2,1,2],[0,2,1,1]],[[1,1,2,1],[2,3,0,2],[3,2,1,2],[0,1,2,1]],[[1,1,2,1],[2,4,0,2],[2,2,1,2],[0,1,2,1]],[[1,1,2,1],[3,3,0,2],[2,2,1,2],[0,1,2,1]],[[2,1,2,1],[2,3,0,2],[2,2,1,2],[0,1,2,1]],[[1,1,2,1],[2,3,0,2],[2,2,1,1],[2,1,2,1]],[[1,1,2,1],[2,3,0,2],[3,2,1,1],[1,1,2,1]],[[1,1,2,1],[2,4,0,2],[2,2,1,1],[1,1,2,1]],[[1,1,2,1],[3,3,0,2],[2,2,1,1],[1,1,2,1]],[[2,1,2,1],[2,3,0,2],[2,2,1,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,2],[3,2,1,1],[0,2,2,1]],[[1,1,2,1],[2,4,0,2],[2,2,1,1],[0,2,2,1]],[[1,1,2,1],[3,3,0,2],[2,2,1,1],[0,2,2,1]],[[2,1,2,1],[2,3,0,2],[2,2,1,1],[0,2,2,1]],[[1,1,2,1],[2,3,0,2],[2,1,3,2],[2,1,1,0]],[[1,1,2,1],[2,3,0,2],[3,1,3,2],[1,1,1,0]],[[1,1,2,1],[2,4,0,2],[2,1,3,2],[1,1,1,0]],[[1,1,2,1],[3,3,0,2],[2,1,3,2],[1,1,1,0]],[[2,1,2,1],[2,3,0,2],[2,1,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,2],[2,1,3,2],[2,1,0,1]],[[1,1,2,1],[2,3,0,2],[3,1,3,2],[1,1,0,1]],[[1,1,2,1],[2,4,0,2],[2,1,3,2],[1,1,0,1]],[[1,1,2,1],[3,3,0,2],[2,1,3,2],[1,1,0,1]],[[2,1,2,1],[2,3,0,2],[2,1,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,0,2],[2,1,3,2],[2,0,2,0]],[[1,1,2,1],[2,3,0,2],[3,1,3,2],[1,0,2,0]],[[1,1,2,1],[2,4,0,2],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[3,3,0,2],[2,1,3,2],[1,0,2,0]],[[2,1,2,1],[2,3,0,2],[2,1,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,0,2],[2,1,3,2],[2,0,1,1]],[[1,1,2,1],[2,3,0,2],[3,1,3,2],[1,0,1,1]],[[1,1,2,1],[2,4,0,2],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[3,3,0,2],[2,1,3,2],[1,0,1,1]],[[2,1,2,1],[2,3,0,2],[2,1,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,0,2],[3,1,3,2],[0,2,1,0]],[[1,1,2,1],[2,4,0,2],[2,1,3,2],[0,2,1,0]],[[1,1,2,1],[3,3,0,2],[2,1,3,2],[0,2,1,0]],[[2,1,2,1],[2,3,0,2],[2,1,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,0,2],[3,1,3,2],[0,2,0,1]],[[1,1,2,1],[2,4,0,2],[2,1,3,2],[0,2,0,1]],[[1,1,2,1],[3,3,0,2],[2,1,3,2],[0,2,0,1]],[[2,1,2,1],[2,3,0,2],[2,1,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,0,2],[3,1,3,2],[0,1,2,0]],[[1,1,2,1],[2,4,0,2],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[3,3,0,2],[2,1,3,2],[0,1,2,0]],[[2,1,2,1],[2,3,0,2],[2,1,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,0,2],[3,1,3,2],[0,1,1,1]],[[1,1,2,1],[2,4,0,2],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[3,3,0,2],[2,1,3,2],[0,1,1,1]],[[2,1,2,1],[2,3,0,2],[2,1,3,2],[0,1,1,1]],[[1,1,2,1],[2,4,0,2],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[3,3,0,2],[2,1,3,2],[0,0,2,1]],[[2,1,2,1],[2,3,0,2],[2,1,3,2],[0,0,2,1]],[[1,1,2,1],[2,3,0,2],[2,1,3,1],[1,3,1,0]],[[1,1,2,1],[2,3,0,2],[2,1,3,1],[2,2,1,0]],[[1,1,2,1],[2,3,0,2],[3,1,3,1],[1,2,1,0]],[[1,1,2,1],[2,4,0,2],[2,1,3,1],[1,2,1,0]],[[1,1,2,1],[3,3,0,2],[2,1,3,1],[1,2,1,0]],[[2,1,2,1],[2,3,0,2],[2,1,3,1],[1,2,1,0]],[[1,1,2,1],[2,3,0,2],[2,1,3,1],[1,3,0,1]],[[1,1,2,1],[2,3,0,2],[2,1,3,1],[2,2,0,1]],[[1,1,2,1],[2,3,0,2],[3,1,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,0,2],[2,1,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,0,2],[2,1,3,1],[1,2,0,1]],[[2,1,2,1],[2,3,0,2],[2,1,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,0,2],[2,1,3,0],[1,3,1,1]],[[1,1,2,1],[2,3,0,2],[2,1,3,0],[2,2,1,1]],[[1,1,2,1],[2,3,0,2],[3,1,3,0],[1,2,1,1]],[[1,1,2,1],[2,4,0,2],[2,1,3,0],[1,2,1,1]],[[1,1,2,1],[3,3,0,2],[2,1,3,0],[1,2,1,1]],[[2,1,2,1],[2,3,0,2],[2,1,3,0],[1,2,1,1]],[[1,1,2,1],[2,3,0,2],[2,1,2,2],[1,3,1,0]],[[1,1,2,1],[2,3,0,2],[2,1,2,2],[2,2,1,0]],[[1,1,2,1],[2,3,0,2],[3,1,2,2],[1,2,1,0]],[[1,1,2,1],[2,4,0,2],[2,1,2,2],[1,2,1,0]],[[1,1,2,1],[3,3,0,2],[2,1,2,2],[1,2,1,0]],[[2,1,2,1],[2,3,0,2],[2,1,2,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,2],[2,1,2,2],[1,3,0,1]],[[1,1,2,1],[2,3,0,2],[2,1,2,2],[2,2,0,1]],[[1,1,2,1],[2,3,0,2],[3,1,2,2],[1,2,0,1]],[[1,1,2,1],[2,4,0,2],[2,1,2,2],[1,2,0,1]],[[1,1,2,1],[3,3,0,2],[2,1,2,2],[1,2,0,1]],[[2,1,2,1],[2,3,0,2],[2,1,2,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,2],[2,1,2,2],[2,0,2,1]],[[1,1,2,1],[2,3,0,2],[3,1,2,2],[1,0,2,1]],[[1,1,2,1],[2,4,0,2],[2,1,2,2],[1,0,2,1]],[[1,1,2,1],[3,3,0,2],[2,1,2,2],[1,0,2,1]],[[2,1,2,1],[2,3,0,2],[2,1,2,2],[1,0,2,1]],[[1,1,2,1],[2,3,0,2],[3,1,2,2],[0,1,2,1]],[[1,1,2,1],[2,4,0,2],[2,1,2,2],[0,1,2,1]],[[1,1,2,1],[3,3,0,2],[2,1,2,2],[0,1,2,1]],[[2,1,2,1],[2,3,0,2],[2,1,2,2],[0,1,2,1]],[[1,1,2,1],[2,3,0,2],[2,1,2,1],[1,2,3,0]],[[1,1,2,1],[2,3,0,2],[2,1,2,1],[1,3,2,0]],[[1,1,2,1],[2,3,0,2],[2,1,2,1],[2,2,2,0]],[[1,1,2,1],[2,3,0,2],[3,1,2,1],[1,2,2,0]],[[1,1,2,1],[2,4,0,2],[2,1,2,1],[1,2,2,0]],[[1,1,2,1],[3,3,0,2],[2,1,2,1],[1,2,2,0]],[[2,1,2,1],[2,3,0,2],[2,1,2,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,2],[2,1,2,0],[1,2,2,2]],[[1,1,2,1],[2,3,0,2],[2,1,2,0],[1,2,3,1]],[[1,1,2,1],[2,3,0,2],[2,1,2,0],[1,3,2,1]],[[1,1,2,1],[2,3,0,2],[2,1,2,0],[2,2,2,1]],[[1,1,2,1],[2,3,0,2],[3,1,2,0],[1,2,2,1]],[[1,1,2,1],[2,4,0,2],[2,1,2,0],[1,2,2,1]],[[1,1,2,1],[3,3,0,2],[2,1,2,0],[1,2,2,1]],[[2,1,2,1],[2,3,0,2],[2,1,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,2],[2,1,1,2],[1,2,3,0]],[[1,1,2,1],[2,3,0,2],[2,1,1,2],[1,3,2,0]],[[1,1,2,1],[2,3,0,2],[2,1,1,2],[2,2,2,0]],[[1,1,2,1],[2,3,0,2],[3,1,1,2],[1,2,2,0]],[[1,1,2,1],[2,4,0,2],[2,1,1,2],[1,2,2,0]],[[1,1,2,1],[3,3,0,2],[2,1,1,2],[1,2,2,0]],[[2,1,2,1],[2,3,0,2],[2,1,1,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,2],[2,1,1,2],[1,3,1,1]],[[1,1,2,1],[2,3,0,2],[2,1,1,2],[2,2,1,1]],[[1,1,2,1],[2,3,0,0],[0,4,3,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[0,3,3,1],[2,2,2,1]],[[1,1,2,1],[2,3,0,0],[0,3,3,1],[1,3,2,1]],[[1,1,2,1],[2,3,0,0],[0,3,3,1],[1,2,3,1]],[[1,1,2,1],[2,3,0,0],[0,3,3,1],[1,2,2,2]],[[1,1,2,1],[2,3,0,0],[0,4,3,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,0],[0,3,3,2],[2,2,2,0]],[[1,1,2,1],[2,3,0,0],[0,3,3,2],[1,3,2,0]],[[1,1,2,1],[2,3,0,0],[0,3,3,2],[1,2,3,0]],[[1,1,2,1],[2,3,0,0],[1,4,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[1,3,1,2],[2,2,2,1]],[[1,1,2,1],[2,3,0,0],[1,3,1,2],[1,3,2,1]],[[1,1,2,1],[2,3,0,0],[1,3,1,2],[1,2,3,1]],[[1,1,2,1],[2,3,0,0],[1,3,1,2],[1,2,2,2]],[[1,1,2,1],[2,3,0,0],[1,4,2,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[1,3,2,1],[2,2,2,1]],[[1,1,2,1],[2,3,0,0],[1,3,2,1],[1,3,2,1]],[[1,1,2,1],[2,3,0,0],[1,3,2,1],[1,2,3,1]],[[1,1,2,1],[2,3,0,0],[1,3,2,1],[1,2,2,2]],[[1,1,2,1],[2,3,0,0],[1,4,2,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,0],[1,3,2,2],[2,2,2,0]],[[1,1,2,1],[2,3,0,0],[1,3,2,2],[1,3,2,0]],[[1,1,2,1],[2,3,0,0],[1,3,2,2],[1,2,3,0]],[[1,1,2,1],[2,3,0,0],[1,4,3,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[1,3,3,0],[2,2,2,1]],[[1,1,2,1],[2,3,0,0],[1,3,3,0],[1,3,2,1]],[[1,1,2,1],[2,3,0,0],[1,3,3,0],[1,2,3,1]],[[1,1,2,1],[2,3,0,0],[1,4,3,1],[0,2,2,1]],[[1,1,2,1],[2,3,0,0],[1,3,3,1],[0,3,2,1]],[[1,1,2,1],[2,3,0,0],[1,3,3,1],[0,2,3,1]],[[1,1,2,1],[2,3,0,0],[1,3,3,1],[0,2,2,2]],[[1,1,2,1],[2,3,0,0],[1,4,3,1],[1,2,1,1]],[[1,1,2,1],[2,3,0,0],[1,3,3,1],[2,2,1,1]],[[1,1,2,1],[2,3,0,0],[1,3,3,1],[1,3,1,1]],[[1,1,2,1],[2,3,0,0],[1,4,3,2],[0,2,2,0]],[[1,1,2,1],[2,3,0,0],[1,3,3,2],[0,3,2,0]],[[1,1,2,1],[2,3,0,0],[1,3,3,2],[0,2,3,0]],[[1,1,2,1],[2,3,0,0],[1,4,3,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,0],[1,3,3,2],[2,2,0,1]],[[1,1,2,1],[2,3,0,0],[1,3,3,2],[1,3,0,1]],[[1,1,2,1],[2,3,0,0],[1,4,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,0],[1,3,3,2],[2,2,1,0]],[[1,1,2,1],[2,3,0,0],[1,3,3,2],[1,3,1,0]],[[1,1,2,1],[2,3,0,2],[3,1,1,2],[1,2,1,1]],[[1,1,2,1],[2,4,0,2],[2,1,1,2],[1,2,1,1]],[[1,1,2,1],[3,3,0,2],[2,1,1,2],[1,2,1,1]],[[2,1,2,1],[2,3,0,2],[2,1,1,2],[1,2,1,1]],[[1,1,2,1],[2,3,0,2],[2,1,1,2],[2,1,2,1]],[[2,1,2,1],[2,3,0,0],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,0,0],[2,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[3,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,2,1,2],[2,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,2,1,2],[1,3,2,1]],[[1,1,2,1],[2,3,0,0],[2,2,1,2],[1,2,3,1]],[[1,1,2,1],[2,3,0,0],[2,2,1,2],[1,2,2,2]],[[2,1,2,1],[2,3,0,0],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[3,3,0,0],[2,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[3,2,2,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,2,2,1],[2,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,2,2,1],[1,3,2,1]],[[1,1,2,1],[2,3,0,0],[2,2,2,1],[1,2,3,1]],[[1,1,2,1],[2,3,0,0],[2,2,2,1],[1,2,2,2]],[[2,1,2,1],[2,3,0,0],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[3,3,0,0],[2,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,0],[3,2,2,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,0],[2,2,2,2],[2,2,2,0]],[[1,1,2,1],[2,3,0,0],[2,2,2,2],[1,3,2,0]],[[1,1,2,1],[2,3,0,0],[2,2,2,2],[1,2,3,0]],[[2,1,2,1],[2,3,0,0],[2,2,3,0],[1,2,2,1]],[[1,1,2,1],[3,3,0,0],[2,2,3,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[3,2,3,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,2,3,0],[2,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,2,3,0],[1,3,2,1]],[[1,1,2,1],[2,3,0,0],[2,2,3,0],[1,2,3,1]],[[2,1,2,1],[2,3,0,0],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[3,3,0,0],[2,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,3,0,0],[3,2,3,1],[1,2,1,1]],[[1,1,2,1],[2,3,0,0],[2,2,3,1],[2,2,1,1]],[[1,1,2,1],[2,3,0,0],[2,2,3,1],[1,3,1,1]],[[2,1,2,1],[2,3,0,0],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[3,3,0,0],[2,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,0],[3,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,0],[2,2,3,2],[2,2,0,1]],[[1,1,2,1],[2,3,0,0],[2,2,3,2],[1,3,0,1]],[[2,1,2,1],[2,3,0,0],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[3,3,0,0],[2,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,0],[3,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,0],[2,2,3,2],[2,2,1,0]],[[1,1,2,1],[2,3,0,0],[2,2,3,2],[1,3,1,0]],[[1,1,2,1],[2,3,0,2],[3,1,1,2],[1,1,2,1]],[[1,1,2,1],[2,4,0,2],[2,1,1,2],[1,1,2,1]],[[1,1,2,1],[3,3,0,2],[2,1,1,2],[1,1,2,1]],[[2,1,2,1],[2,3,0,2],[2,1,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,0,2],[3,1,1,2],[0,2,2,1]],[[1,1,2,1],[2,4,0,2],[2,1,1,2],[0,2,2,1]],[[1,1,2,1],[3,3,0,2],[2,1,1,2],[0,2,2,1]],[[2,1,2,1],[2,3,0,0],[2,3,0,2],[1,2,2,1]],[[1,1,2,1],[3,3,0,0],[2,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[3,3,0,2],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,0,2],[2,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,0,2],[1,3,2,1]],[[2,1,2,1],[2,3,0,0],[2,3,1,1],[1,2,2,1]],[[1,1,2,1],[3,3,0,0],[2,3,1,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[3,3,1,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,1,1],[2,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,1,1],[1,3,2,1]],[[2,1,2,1],[2,3,0,0],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[3,3,0,0],[2,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,0,0],[3,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,4,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,1,2],[0,3,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,1,2],[0,2,3,1]],[[1,1,2,1],[2,3,0,0],[2,3,1,2],[0,2,2,2]],[[2,1,2,1],[2,3,0,0],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[3,3,0,0],[2,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,0,0],[3,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,0,0],[2,4,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,1,2],[2,1,2,1]],[[2,1,2,1],[2,3,0,0],[2,3,1,2],[1,2,2,0]],[[1,1,2,1],[3,3,0,0],[2,3,1,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,0],[3,3,1,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,0],[2,3,1,2],[2,2,2,0]],[[1,1,2,1],[2,3,0,0],[2,3,1,2],[1,3,2,0]],[[2,1,2,1],[2,3,0,0],[2,3,2,0],[1,2,2,1]],[[1,1,2,1],[3,3,0,0],[2,3,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[3,3,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,2,0],[2,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,2,0],[1,3,2,1]],[[2,1,2,1],[2,3,0,0],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[3,3,0,0],[2,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,3,0,0],[3,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,4,2,1],[0,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,2,1],[0,3,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,2,1],[0,2,3,1]],[[1,1,2,1],[2,3,0,0],[2,3,2,1],[0,2,2,2]],[[2,1,2,1],[2,3,0,0],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[3,3,0,0],[2,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,0],[3,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,0],[2,4,2,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,2,1],[2,1,2,1]],[[2,1,2,1],[2,3,0,0],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[3,3,0,0],[2,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,0,0],[3,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,0,0],[2,4,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,0,0],[2,3,2,2],[0,3,2,0]],[[1,1,2,1],[2,3,0,0],[2,3,2,2],[0,2,3,0]],[[2,1,2,1],[2,3,0,0],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[3,3,0,0],[2,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,0],[3,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,0],[2,4,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,0],[2,3,2,2],[2,1,2,0]],[[2,1,2,1],[2,3,0,2],[2,1,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,0,2],[2,1,1,1],[1,2,2,2]],[[1,1,2,1],[2,3,0,2],[2,1,1,1],[1,2,3,1]],[[1,1,2,1],[2,3,0,2],[2,1,1,1],[1,3,2,1]],[[1,1,2,1],[2,3,0,2],[2,1,1,1],[2,2,2,1]],[[1,1,2,1],[2,3,0,2],[3,1,1,1],[1,2,2,1]],[[1,1,2,1],[2,4,0,2],[2,1,1,1],[1,2,2,1]],[[1,1,2,1],[3,3,0,2],[2,1,1,1],[1,2,2,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,0],[0,2,2,1]],[[1,1,2,1],[3,3,0,0],[2,3,3,0],[0,2,2,1]],[[1,1,2,1],[2,3,0,0],[3,3,3,0],[0,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,4,3,0],[0,2,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,3,0],[0,3,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,3,0],[0,2,3,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,0],[1,1,2,1]],[[1,1,2,1],[3,3,0,0],[2,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,0,0],[3,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,0,0],[2,4,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,3,0],[2,1,2,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[3,3,0,0],[2,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,3,0,0],[3,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,3,0,0],[2,4,3,1],[0,1,2,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[3,3,0,0],[2,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,0,0],[3,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,0,0],[2,4,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,0,0],[2,3,3,1],[0,3,1,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[3,3,0,0],[2,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,3,0,0],[3,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,3,0,0],[2,4,3,1],[1,0,2,1]],[[1,1,2,1],[2,3,0,0],[2,3,3,1],[2,0,2,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,0,0],[2,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,0,0],[3,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,0,0],[2,4,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,0,0],[2,3,3,1],[2,1,1,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,0,0],[2,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,0,0],[3,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,0,0],[2,4,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,0,0],[2,3,3,1],[2,2,0,1]],[[2,1,2,1],[2,3,0,2],[2,1,1,1],[1,2,2,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[3,3,0,0],[2,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,3,0,0],[3,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,3,0,0],[2,4,3,2],[0,1,1,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[3,3,0,0],[2,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,0,0],[3,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,0,0],[2,4,3,2],[0,1,2,0]],[[2,1,2,1],[2,3,0,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[3,3,0,0],[2,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,0,0],[3,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,0,0],[2,4,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,0,0],[2,3,3,2],[0,3,0,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[3,3,0,0],[2,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,0,0],[3,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,0,0],[2,4,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,0,0],[2,3,3,2],[0,3,1,0]],[[2,1,2,1],[2,3,0,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[3,3,0,0],[2,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,0,0],[3,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,0,0],[2,4,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,0,0],[2,3,3,2],[2,0,1,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[3,3,0,0],[2,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,0,0],[3,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,0,0],[2,4,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,0,0],[2,3,3,2],[2,0,2,0]],[[2,1,2,1],[2,3,0,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[3,3,0,0],[2,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,0,0],[3,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,0,0],[2,4,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,0,0],[2,3,3,2],[2,1,0,1]],[[2,1,2,1],[2,3,0,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[3,3,0,0],[2,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,0],[3,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,0],[2,4,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,0],[2,3,3,2],[2,1,1,0]],[[2,1,2,1],[2,3,0,0],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[3,3,0,0],[2,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,3,0,0],[3,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,3,0,0],[2,4,3,2],[1,2,0,0]],[[1,1,2,1],[2,3,0,0],[2,3,3,2],[2,2,0,0]],[[1,1,2,1],[2,3,0,2],[2,0,3,2],[1,3,1,0]],[[1,1,2,1],[2,3,0,2],[2,0,3,2],[2,2,1,0]],[[1,1,2,1],[2,3,0,2],[3,0,3,2],[1,2,1,0]],[[1,1,2,1],[2,4,0,2],[2,0,3,2],[1,2,1,0]],[[1,1,2,1],[3,3,0,2],[2,0,3,2],[1,2,1,0]],[[2,1,2,1],[2,3,0,2],[2,0,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,2],[2,0,3,2],[1,3,0,1]],[[1,1,2,1],[2,3,0,2],[2,0,3,2],[2,2,0,1]],[[1,1,2,1],[2,3,0,2],[3,0,3,2],[1,2,0,1]],[[1,1,2,1],[2,4,0,2],[2,0,3,2],[1,2,0,1]],[[1,1,2,1],[3,3,0,2],[2,0,3,2],[1,2,0,1]],[[2,1,2,1],[2,3,0,2],[2,0,3,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,1],[0,2,2,3],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[0,2,2,2],[2,2,2,1]],[[1,1,2,1],[2,3,0,1],[0,2,2,2],[1,3,2,1]],[[1,1,2,1],[2,3,0,1],[0,2,2,2],[1,2,3,1]],[[1,1,2,1],[2,3,0,1],[0,2,2,2],[1,2,2,2]],[[1,1,2,1],[2,3,0,1],[0,2,4,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[0,2,3,1],[2,2,2,1]],[[1,1,2,1],[2,3,0,1],[0,2,3,1],[1,3,2,1]],[[1,1,2,1],[2,3,0,1],[0,2,3,1],[1,2,3,1]],[[1,1,2,1],[2,3,0,1],[0,2,3,1],[1,2,2,2]],[[1,1,2,1],[2,3,0,1],[0,2,4,2],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[0,2,3,3],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[0,2,3,2],[1,2,1,2]],[[1,1,2,1],[2,3,0,1],[0,2,4,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[0,2,3,3],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[0,2,3,2],[2,2,2,0]],[[1,1,2,1],[2,3,0,1],[0,2,3,2],[1,3,2,0]],[[1,1,2,1],[2,3,0,1],[0,2,3,2],[1,2,3,0]],[[2,1,2,1],[2,3,0,1],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,0,1],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[2,4,0,1],[0,3,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[0,4,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,1,3],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,1,2],[2,2,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,1,2],[1,3,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,1,2],[1,2,3,1]],[[1,1,2,1],[2,3,0,1],[0,3,1,2],[1,2,2,2]],[[2,1,2,1],[2,3,0,1],[0,3,2,1],[1,2,2,1]],[[1,1,2,1],[3,3,0,1],[0,3,2,1],[1,2,2,1]],[[1,1,2,1],[2,4,0,1],[0,3,2,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[0,4,2,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,2,1],[2,2,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,2,1],[1,3,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,2,1],[1,2,3,1]],[[1,1,2,1],[2,3,0,1],[0,3,2,1],[1,2,2,2]],[[1,1,2,1],[2,3,0,1],[0,3,2,3],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,2,2],[1,1,3,1]],[[1,1,2,1],[2,3,0,1],[0,3,2,2],[1,1,2,2]],[[2,1,2,1],[2,3,0,1],[0,3,2,2],[1,2,2,0]],[[1,1,2,1],[3,3,0,1],[0,3,2,2],[1,2,2,0]],[[1,1,2,1],[2,4,0,1],[0,3,2,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[0,4,2,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[0,3,2,2],[2,2,2,0]],[[1,1,2,1],[2,3,0,1],[0,3,2,2],[1,3,2,0]],[[1,1,2,1],[2,3,0,1],[0,3,2,2],[1,2,3,0]],[[2,1,2,1],[2,3,0,1],[0,3,3,1],[1,1,2,1]],[[1,1,2,1],[3,3,0,1],[0,3,3,1],[1,1,2,1]],[[1,1,2,1],[2,4,0,1],[0,3,3,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[0,4,3,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,4,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,1],[1,1,3,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,1],[1,1,2,2]],[[2,1,2,1],[2,3,0,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[3,3,0,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[2,4,0,1],[0,3,3,1],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[0,4,3,1],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[0,3,4,1],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,1],[2,2,1,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,1],[1,3,1,1]],[[1,1,2,1],[2,3,0,1],[0,3,4,2],[1,0,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,3],[1,0,2,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,2],[1,0,2,2]],[[2,1,2,1],[2,3,0,1],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[3,3,0,1],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[2,4,0,1],[0,3,3,2],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[0,4,3,2],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[0,3,4,2],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,3],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,2],[1,1,1,2]],[[2,1,2,1],[2,3,0,1],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[3,3,0,1],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[2,4,0,1],[0,3,3,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,1],[0,4,3,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,1],[0,3,4,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,1],[0,3,3,3],[1,1,2,0]],[[1,1,2,1],[2,3,0,1],[0,3,3,2],[1,1,3,0]],[[2,1,2,1],[2,3,0,1],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[3,3,0,1],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,4,0,1],[0,3,3,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,1],[0,4,3,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,1],[0,3,4,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,3],[1,2,0,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,2],[2,2,0,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,2],[1,3,0,1]],[[1,1,2,1],[2,3,0,1],[0,3,3,2],[1,2,0,2]],[[2,1,2,1],[2,3,0,1],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[3,3,0,1],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,4,0,1],[0,3,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,1],[0,4,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,1],[0,3,4,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,1],[0,3,3,3],[1,2,1,0]],[[1,1,2,1],[2,3,0,1],[0,3,3,2],[2,2,1,0]],[[1,1,2,1],[2,3,0,1],[0,3,3,2],[1,3,1,0]],[[1,1,2,1],[2,3,0,2],[2,0,3,2],[2,1,2,0]],[[1,1,2,1],[2,3,0,2],[3,0,3,2],[1,1,2,0]],[[1,1,2,1],[2,4,0,2],[2,0,3,2],[1,1,2,0]],[[1,1,2,1],[3,3,0,2],[2,0,3,2],[1,1,2,0]],[[2,1,2,1],[2,3,0,2],[2,0,3,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,2],[2,0,3,2],[2,1,1,1]],[[1,1,2,1],[2,3,0,2],[3,0,3,2],[1,1,1,1]],[[1,1,2,1],[2,4,0,2],[2,0,3,2],[1,1,1,1]],[[1,1,2,1],[3,3,0,2],[2,0,3,2],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[1,2,2,3],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[1,2,2,2],[0,3,2,1]],[[1,1,2,1],[2,3,0,1],[1,2,2,2],[0,2,3,1]],[[1,1,2,1],[2,3,0,1],[1,2,2,2],[0,2,2,2]],[[1,1,2,1],[2,3,0,1],[1,2,4,1],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[1,2,3,1],[0,3,2,1]],[[1,1,2,1],[2,3,0,1],[1,2,3,1],[0,2,3,1]],[[1,1,2,1],[2,3,0,1],[1,2,3,1],[0,2,2,2]],[[1,1,2,1],[2,3,0,1],[1,2,4,2],[0,2,1,1]],[[1,1,2,1],[2,3,0,1],[1,2,3,3],[0,2,1,1]],[[1,1,2,1],[2,3,0,1],[1,2,3,2],[0,2,1,2]],[[1,1,2,1],[2,3,0,1],[1,2,4,2],[0,2,2,0]],[[1,1,2,1],[2,3,0,1],[1,2,3,3],[0,2,2,0]],[[1,1,2,1],[2,3,0,1],[1,2,3,2],[0,3,2,0]],[[1,1,2,1],[2,3,0,1],[1,2,3,2],[0,2,3,0]],[[2,1,2,1],[2,3,0,2],[2,0,3,2],[1,1,1,1]],[[1,1,2,1],[2,3,0,2],[3,0,3,2],[0,2,2,0]],[[2,1,2,1],[2,3,0,1],[1,3,1,2],[0,2,2,1]],[[1,1,2,1],[3,3,0,1],[1,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,4,0,1],[1,3,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[1,4,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,1,3],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,1,2],[0,3,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,1,2],[0,2,3,1]],[[1,1,2,1],[2,3,0,1],[1,3,1,2],[0,2,2,2]],[[2,1,2,1],[2,3,0,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[3,3,0,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,4,0,1],[1,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[1,4,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[1,4,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,2,0],[2,2,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,2,0],[1,3,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,2,0],[1,2,3,1]],[[2,1,2,1],[2,3,0,1],[1,3,2,1],[0,2,2,1]],[[1,1,2,1],[3,3,0,1],[1,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,4,0,1],[1,3,2,1],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[1,4,2,1],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,2,1],[0,3,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,2,1],[0,2,3,1]],[[1,1,2,1],[2,3,0,1],[1,3,2,1],[0,2,2,2]],[[2,1,2,1],[2,3,0,1],[1,3,2,1],[1,1,2,1]],[[1,1,2,1],[3,3,0,1],[1,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,4,0,1],[1,3,2,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[1,4,2,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[1,4,2,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,2,1],[2,2,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,2,1],[1,3,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,2,3],[0,1,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,2,2],[0,1,3,1]],[[1,1,2,1],[2,3,0,1],[1,3,2,2],[0,1,2,2]],[[2,1,2,1],[2,3,0,1],[1,3,2,2],[0,2,2,0]],[[1,1,2,1],[3,3,0,1],[1,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,4,0,1],[1,3,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,0,1],[1,4,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,2,2],[0,3,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,2,2],[0,2,3,0]],[[1,1,2,1],[2,3,0,1],[1,3,2,3],[1,0,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,2,2],[1,0,3,1]],[[1,1,2,1],[2,3,0,1],[1,3,2,2],[1,0,2,2]],[[2,1,2,1],[2,3,0,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[3,3,0,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,4,0,1],[1,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,1],[1,4,2,2],[1,1,2,0]],[[1,1,2,1],[2,4,0,2],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[3,3,0,2],[2,0,3,2],[0,2,2,0]],[[2,1,2,1],[2,3,0,2],[2,0,3,2],[0,2,2,0]],[[1,1,2,1],[2,3,0,2],[3,0,3,2],[0,2,1,1]],[[1,1,2,1],[2,4,0,2],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[3,3,0,2],[2,0,3,2],[0,2,1,1]],[[2,1,2,1],[2,3,0,2],[2,0,3,2],[0,2,1,1]],[[1,1,2,1],[2,3,0,1],[1,4,3,0],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,0],[2,2,1,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,0],[1,3,1,1]],[[2,1,2,1],[2,3,0,1],[1,3,3,1],[0,1,2,1]],[[1,1,2,1],[3,3,0,1],[1,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,4,0,1],[1,3,3,1],[0,1,2,1]],[[1,1,2,1],[2,3,0,1],[1,4,3,1],[0,1,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,4,1],[0,1,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,1],[0,1,3,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,1],[0,1,2,2]],[[2,1,2,1],[2,3,0,1],[1,3,3,1],[0,2,1,1]],[[1,1,2,1],[3,3,0,1],[1,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,0,1],[1,3,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,0,1],[1,4,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,0,1],[1,3,4,1],[0,2,1,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,1],[0,3,1,1]],[[2,1,2,1],[2,3,0,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[3,3,0,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,4,0,1],[1,3,3,1],[1,0,2,1]],[[1,1,2,1],[2,3,0,1],[1,4,3,1],[1,0,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,4,1],[1,0,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,1],[1,0,3,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,1],[1,0,2,2]],[[2,1,2,1],[2,3,0,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,0,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,4,0,1],[1,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[1,4,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[1,3,4,1],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[1,4,3,1],[1,2,1,0]],[[1,1,2,1],[2,3,0,1],[1,3,3,1],[2,2,1,0]],[[1,1,2,1],[2,3,0,1],[1,3,3,1],[1,3,1,0]],[[1,1,2,1],[2,3,0,2],[2,0,3,1],[1,2,3,0]],[[1,1,2,1],[2,3,0,2],[2,0,3,1],[1,3,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,4,2],[0,0,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,3],[0,0,2,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,2],[0,0,2,2]],[[2,1,2,1],[2,3,0,1],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[3,3,0,1],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,4,0,1],[1,3,3,2],[0,1,1,1]],[[1,1,2,1],[2,3,0,1],[1,4,3,2],[0,1,1,1]],[[1,1,2,1],[2,3,0,1],[1,3,4,2],[0,1,1,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,3],[0,1,1,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,2],[0,1,1,2]],[[2,1,2,1],[2,3,0,1],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[3,3,0,1],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,4,0,1],[1,3,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,0,1],[1,4,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,4,2],[0,1,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,3,3],[0,1,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,3,2],[0,1,3,0]],[[2,1,2,1],[2,3,0,1],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[3,3,0,1],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,4,0,1],[1,3,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,0,1],[1,4,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,0,1],[1,3,4,2],[0,2,0,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,3],[0,2,0,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,2],[0,3,0,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,2],[0,2,0,2]],[[2,1,2,1],[2,3,0,1],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[3,3,0,1],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,4,0,1],[1,3,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,0,1],[1,4,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,0,1],[1,3,4,2],[0,2,1,0]],[[1,1,2,1],[2,3,0,1],[1,3,3,3],[0,2,1,0]],[[1,1,2,1],[2,3,0,1],[1,3,3,2],[0,3,1,0]],[[1,1,2,1],[2,3,0,2],[2,0,3,1],[2,2,2,0]],[[1,1,2,1],[2,3,0,2],[2,0,4,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,2],[3,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,4,0,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[3,3,0,2],[2,0,3,1],[1,2,2,0]],[[2,1,2,1],[2,3,0,2],[2,0,3,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,2],[2,0,3,0],[1,2,2,2]],[[1,1,2,1],[2,3,0,2],[2,0,3,0],[1,2,3,1]],[[1,1,2,1],[2,3,0,2],[2,0,3,0],[1,3,2,1]],[[2,1,2,1],[2,3,0,1],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[3,3,0,1],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,4,0,1],[1,3,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,0,1],[1,4,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,0,1],[1,3,4,2],[1,0,1,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,3],[1,0,1,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,2],[1,0,1,2]],[[2,1,2,1],[2,3,0,1],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[3,3,0,1],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,4,0,1],[1,3,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,0,1],[1,4,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,4,2],[1,0,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,3,3],[1,0,2,0]],[[1,1,2,1],[2,3,0,1],[1,3,3,2],[1,0,3,0]],[[2,1,2,1],[2,3,0,1],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[3,3,0,1],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,4,0,1],[1,3,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,0,1],[1,4,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,0,1],[1,3,4,2],[1,1,0,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,3],[1,1,0,1]],[[1,1,2,1],[2,3,0,1],[1,3,3,2],[1,1,0,2]],[[2,1,2,1],[2,3,0,1],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[3,3,0,1],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,4,0,1],[1,3,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,1],[1,4,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,1],[1,3,4,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,1],[1,3,3,3],[1,1,1,0]],[[1,1,2,1],[2,3,0,2],[2,0,3,0],[2,2,2,1]],[[1,1,2,1],[2,3,0,2],[2,0,4,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,2],[3,0,3,0],[1,2,2,1]],[[1,1,2,1],[2,4,0,2],[2,0,3,0],[1,2,2,1]],[[1,1,2,1],[3,3,0,2],[2,0,3,0],[1,2,2,1]],[[2,1,2,1],[2,3,0,2],[2,0,3,0],[1,2,2,1]],[[2,1,2,1],[2,3,0,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,1],[3,3,0,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,4,0,1],[1,3,3,2],[1,2,0,0]],[[1,1,2,1],[2,3,0,1],[1,4,3,2],[1,2,0,0]],[[1,1,2,1],[2,3,0,2],[2,0,2,2],[1,2,3,0]],[[1,1,2,1],[2,3,0,2],[2,0,2,2],[1,3,2,0]],[[1,1,2,1],[2,3,0,2],[2,0,2,2],[2,2,2,0]],[[1,1,2,1],[2,3,0,2],[3,0,2,2],[1,2,2,0]],[[1,1,2,1],[2,4,0,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[3,3,0,2],[2,0,2,2],[1,2,2,0]],[[2,1,2,1],[2,3,0,2],[2,0,2,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,2],[2,0,2,2],[1,3,1,1]],[[1,1,2,1],[2,3,0,2],[2,0,2,2],[2,2,1,1]],[[1,1,2,1],[2,3,0,2],[3,0,2,2],[1,2,1,1]],[[1,1,2,1],[2,4,0,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,1],[3,3,0,2],[2,0,2,2],[1,2,1,1]],[[2,1,2,1],[2,3,0,2],[2,0,2,2],[1,2,1,1]],[[1,1,2,1],[2,3,0,2],[2,0,2,2],[2,1,2,1]],[[1,1,2,1],[2,3,0,2],[3,0,2,2],[1,1,2,1]],[[1,1,2,1],[2,4,0,2],[2,0,2,2],[1,1,2,1]],[[1,1,2,1],[3,3,0,2],[2,0,2,2],[1,1,2,1]],[[2,1,2,1],[2,3,0,2],[2,0,2,2],[1,1,2,1]],[[2,1,2,1],[2,3,0,1],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[3,3,0,1],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,4,0,1],[2,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[3,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,0,2,3],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,0,2,2],[2,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,0,2,2],[1,3,2,1]],[[1,1,2,1],[2,3,0,1],[2,0,2,2],[1,2,3,1]],[[1,1,2,1],[2,3,0,1],[2,0,2,2],[1,2,2,2]],[[2,1,2,1],[2,3,0,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[3,3,0,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,4,0,1],[2,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[3,0,3,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,0,4,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,0,3,1],[2,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,0,3,1],[1,3,2,1]],[[1,1,2,1],[2,3,0,1],[2,0,3,1],[1,2,3,1]],[[1,1,2,1],[2,3,0,1],[2,0,3,1],[1,2,2,2]],[[1,1,2,1],[2,3,0,1],[2,0,4,2],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[2,0,3,3],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[2,0,3,2],[1,2,1,2]],[[2,1,2,1],[2,3,0,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[3,3,0,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,4,0,1],[2,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[3,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,0,4,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,0,3,3],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,0,3,2],[2,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,0,3,2],[1,3,2,0]],[[1,1,2,1],[2,3,0,1],[2,0,3,2],[1,2,3,0]],[[2,1,2,1],[2,3,0,1],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,0,1],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,4,0,1],[2,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[3,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,1,1,3],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,1,1,2],[2,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,1,1,2],[1,3,2,1]],[[1,1,2,1],[2,3,0,1],[2,1,1,2],[1,2,3,1]],[[1,1,2,1],[2,3,0,1],[2,1,1,2],[1,2,2,2]],[[2,1,2,1],[2,3,0,1],[2,1,2,1],[1,2,2,1]],[[1,1,2,1],[3,3,0,1],[2,1,2,1],[1,2,2,1]],[[1,1,2,1],[2,4,0,1],[2,1,2,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[3,1,2,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,1,2,1],[2,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,1,2,1],[1,3,2,1]],[[1,1,2,1],[2,3,0,1],[2,1,2,1],[1,2,3,1]],[[1,1,2,1],[2,3,0,1],[2,1,2,1],[1,2,2,2]],[[2,1,2,1],[2,3,0,1],[2,1,2,2],[1,2,2,0]],[[1,1,2,1],[3,3,0,1],[2,1,2,2],[1,2,2,0]],[[1,1,2,1],[2,4,0,1],[2,1,2,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[3,1,2,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,1,2,2],[2,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,1,2,2],[1,3,2,0]],[[1,1,2,1],[2,3,0,1],[2,1,2,2],[1,2,3,0]],[[2,1,2,1],[2,3,0,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,1],[3,3,0,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,1],[2,4,0,1],[2,1,3,1],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[3,1,3,1],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[2,1,3,1],[2,2,1,1]],[[1,1,2,1],[2,3,0,1],[2,1,3,1],[1,3,1,1]],[[2,1,2,1],[2,3,0,1],[2,1,3,2],[1,2,0,1]],[[1,1,2,1],[3,3,0,1],[2,1,3,2],[1,2,0,1]],[[1,1,2,1],[2,4,0,1],[2,1,3,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,1],[3,1,3,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,1],[2,1,3,2],[2,2,0,1]],[[1,1,2,1],[2,3,0,1],[2,1,3,2],[1,3,0,1]],[[2,1,2,1],[2,3,0,1],[2,1,3,2],[1,2,1,0]],[[1,1,2,1],[3,3,0,1],[2,1,3,2],[1,2,1,0]],[[1,1,2,1],[2,4,0,1],[2,1,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,1],[3,1,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,1],[2,1,3,2],[2,2,1,0]],[[1,1,2,1],[2,3,0,1],[2,1,3,2],[1,3,1,0]],[[1,1,2,1],[2,3,0,2],[3,0,2,2],[0,2,2,1]],[[1,1,2,1],[2,4,0,2],[2,0,2,2],[0,2,2,1]],[[1,1,2,1],[3,3,0,2],[2,0,2,2],[0,2,2,1]],[[2,1,2,1],[2,3,0,2],[2,0,2,2],[0,2,2,1]],[[1,1,2,1],[2,3,0,2],[2,0,2,1],[1,2,2,2]],[[1,1,2,1],[2,3,0,2],[2,0,2,1],[1,2,3,1]],[[1,1,2,1],[2,3,0,2],[2,0,2,1],[1,3,2,1]],[[1,1,2,1],[2,3,0,2],[2,0,2,1],[2,2,2,1]],[[1,1,2,1],[2,3,0,2],[3,0,2,1],[1,2,2,1]],[[1,1,2,1],[2,4,0,2],[2,0,2,1],[1,2,2,1]],[[2,1,2,1],[2,3,0,1],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[3,3,0,1],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[2,4,0,1],[2,2,1,2],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[3,2,1,2],[0,2,2,1]],[[2,1,2,1],[2,3,0,1],[2,2,1,2],[1,1,2,1]],[[1,1,2,1],[3,3,0,1],[2,2,1,2],[1,1,2,1]],[[1,1,2,1],[2,4,0,1],[2,2,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[3,2,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[2,2,1,2],[2,1,2,1]],[[2,1,2,1],[2,3,0,1],[2,2,2,0],[1,2,2,1]],[[1,1,2,1],[3,3,0,1],[2,2,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[3,2,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,2,2,0],[2,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,2,2,0],[1,3,2,1]],[[1,1,2,1],[2,3,0,1],[2,2,2,0],[1,2,3,1]],[[2,1,2,1],[2,3,0,1],[2,2,2,1],[0,2,2,1]],[[1,1,2,1],[3,3,0,1],[2,2,2,1],[0,2,2,1]],[[1,1,2,1],[2,4,0,1],[2,2,2,1],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[3,2,2,1],[0,2,2,1]],[[2,1,2,1],[2,3,0,1],[2,2,2,1],[1,1,2,1]],[[1,1,2,1],[3,3,0,1],[2,2,2,1],[1,1,2,1]],[[1,1,2,1],[2,4,0,1],[2,2,2,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[3,2,2,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[2,2,2,1],[2,1,2,1]],[[2,1,2,1],[2,3,0,1],[2,2,2,1],[1,2,2,0]],[[1,1,2,1],[3,3,0,1],[2,2,2,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[3,2,2,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,2,2,1],[2,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,2,2,1],[1,3,2,0]],[[2,1,2,1],[2,3,0,1],[2,2,2,2],[0,2,2,0]],[[1,1,2,1],[3,3,0,1],[2,2,2,2],[0,2,2,0]],[[1,1,2,1],[2,4,0,1],[2,2,2,2],[0,2,2,0]],[[1,1,2,1],[2,3,0,1],[3,2,2,2],[0,2,2,0]],[[2,1,2,1],[2,3,0,1],[2,2,2,2],[1,1,2,0]],[[1,1,2,1],[3,3,0,1],[2,2,2,2],[1,1,2,0]],[[1,1,2,1],[2,4,0,1],[2,2,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,1],[3,2,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,1],[2,2,2,2],[2,1,2,0]],[[1,1,2,1],[3,3,0,2],[2,0,2,1],[1,2,2,1]],[[2,1,2,1],[2,3,0,2],[2,0,2,1],[1,2,2,1]],[[2,1,2,1],[2,3,0,1],[2,2,3,0],[1,2,1,1]],[[1,1,2,1],[3,3,0,1],[2,2,3,0],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[3,2,3,0],[1,2,1,1]],[[1,1,2,1],[2,3,0,1],[2,2,3,0],[2,2,1,1]],[[1,1,2,1],[2,3,0,1],[2,2,3,0],[1,3,1,1]],[[2,1,2,1],[2,3,0,1],[2,2,3,1],[0,1,2,1]],[[1,1,2,1],[3,3,0,1],[2,2,3,1],[0,1,2,1]],[[1,1,2,1],[2,4,0,1],[2,2,3,1],[0,1,2,1]],[[1,1,2,1],[2,3,0,1],[3,2,3,1],[0,1,2,1]],[[2,1,2,1],[2,3,0,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[3,3,0,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[2,4,0,1],[2,2,3,1],[0,2,1,1]],[[1,1,2,1],[2,3,0,1],[3,2,3,1],[0,2,1,1]],[[2,1,2,1],[2,3,0,1],[2,2,3,1],[1,0,2,1]],[[1,1,2,1],[3,3,0,1],[2,2,3,1],[1,0,2,1]],[[1,1,2,1],[2,4,0,1],[2,2,3,1],[1,0,2,1]],[[1,1,2,1],[2,3,0,1],[3,2,3,1],[1,0,2,1]],[[1,1,2,1],[2,3,0,1],[2,2,3,1],[2,0,2,1]],[[2,1,2,1],[2,3,0,1],[2,2,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,0,1],[2,2,3,1],[1,1,1,1]],[[1,1,2,1],[2,4,0,1],[2,2,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[3,2,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[2,2,3,1],[2,1,1,1]],[[2,1,2,1],[2,3,0,1],[2,2,3,1],[1,2,1,0]],[[1,1,2,1],[3,3,0,1],[2,2,3,1],[1,2,1,0]],[[1,1,2,1],[2,3,0,1],[3,2,3,1],[1,2,1,0]],[[1,1,2,1],[2,3,0,1],[2,2,3,1],[2,2,1,0]],[[1,1,2,1],[2,3,0,1],[2,2,3,1],[1,3,1,0]],[[2,1,2,1],[2,3,0,1],[2,2,3,2],[0,1,1,1]],[[1,1,2,1],[3,3,0,1],[2,2,3,2],[0,1,1,1]],[[1,1,2,1],[2,4,0,1],[2,2,3,2],[0,1,1,1]],[[1,1,2,1],[2,3,0,1],[3,2,3,2],[0,1,1,1]],[[2,1,2,1],[2,3,0,1],[2,2,3,2],[0,1,2,0]],[[1,1,2,1],[3,3,0,1],[2,2,3,2],[0,1,2,0]],[[1,1,2,1],[2,4,0,1],[2,2,3,2],[0,1,2,0]],[[1,1,2,1],[2,3,0,1],[3,2,3,2],[0,1,2,0]],[[2,1,2,1],[2,3,0,1],[2,2,3,2],[0,2,0,1]],[[1,1,2,1],[3,3,0,1],[2,2,3,2],[0,2,0,1]],[[1,1,2,1],[2,4,0,1],[2,2,3,2],[0,2,0,1]],[[1,1,2,1],[2,3,0,1],[3,2,3,2],[0,2,0,1]],[[2,1,2,1],[2,3,0,1],[2,2,3,2],[0,2,1,0]],[[1,1,2,1],[3,3,0,1],[2,2,3,2],[0,2,1,0]],[[1,1,2,1],[2,4,0,1],[2,2,3,2],[0,2,1,0]],[[1,1,2,1],[2,3,0,1],[3,2,3,2],[0,2,1,0]],[[2,1,2,1],[2,3,0,1],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[3,3,0,1],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[2,4,0,1],[2,2,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,0,1],[3,2,3,2],[1,0,1,1]],[[1,1,2,1],[2,3,0,1],[2,2,3,2],[2,0,1,1]],[[2,1,2,1],[2,3,0,1],[2,2,3,2],[1,0,2,0]],[[1,1,2,1],[3,3,0,1],[2,2,3,2],[1,0,2,0]],[[1,1,2,1],[2,4,0,1],[2,2,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,0,1],[3,2,3,2],[1,0,2,0]],[[1,1,2,1],[2,3,0,1],[2,2,3,2],[2,0,2,0]],[[2,1,2,1],[2,3,0,1],[2,2,3,2],[1,1,0,1]],[[1,1,2,1],[3,3,0,1],[2,2,3,2],[1,1,0,1]],[[1,1,2,1],[2,4,0,1],[2,2,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,0,1],[3,2,3,2],[1,1,0,1]],[[1,1,2,1],[2,3,0,1],[2,2,3,2],[2,1,0,1]],[[2,1,2,1],[2,3,0,1],[2,2,3,2],[1,1,1,0]],[[1,1,2,1],[3,3,0,1],[2,2,3,2],[1,1,1,0]],[[1,1,2,1],[2,4,0,1],[2,2,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,1],[3,2,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,1],[2,2,3,2],[2,1,1,0]],[[2,1,2,1],[2,3,0,1],[2,2,3,2],[1,2,0,0]],[[1,1,2,1],[3,3,0,1],[2,2,3,2],[1,2,0,0]],[[1,1,2,1],[2,4,0,1],[2,2,3,2],[1,2,0,0]],[[1,1,2,1],[2,3,0,1],[3,2,3,2],[1,2,0,0]],[[1,1,2,1],[2,3,0,1],[2,2,3,2],[2,2,0,0]],[[2,1,2,1],[2,3,0,1],[2,3,1,0],[1,2,2,1]],[[1,1,2,1],[3,3,0,1],[2,3,1,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[3,3,1,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,3,1,0],[2,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,3,1,0],[1,3,2,1]],[[2,1,2,1],[2,3,0,1],[2,3,1,1],[1,2,2,0]],[[1,1,2,1],[3,3,0,1],[2,3,1,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[3,3,1,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,3,1,1],[2,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,3,1,1],[1,3,2,0]],[[2,1,2,1],[2,3,0,1],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[3,3,0,1],[2,3,2,0],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[3,3,2,0],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,4,2,0],[0,2,2,1]],[[1,1,2,1],[2,3,0,1],[2,3,2,0],[0,3,2,1]],[[1,1,2,1],[2,3,0,1],[2,3,2,0],[0,2,3,1]],[[2,1,2,1],[2,3,0,1],[2,3,2,0],[1,1,2,1]],[[1,1,2,1],[3,3,0,1],[2,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[3,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[2,4,2,0],[1,1,2,1]],[[1,1,2,1],[2,3,0,1],[2,3,2,0],[2,1,2,1]],[[2,1,2,1],[2,3,0,1],[2,3,2,1],[0,2,2,0]],[[1,1,2,1],[3,3,0,1],[2,3,2,1],[0,2,2,0]],[[1,1,2,1],[2,3,0,1],[3,3,2,1],[0,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,4,2,1],[0,2,2,0]],[[1,1,2,1],[2,3,0,1],[2,3,2,1],[0,3,2,0]],[[2,1,2,1],[2,3,0,1],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[3,3,0,1],[2,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,3,0,1],[3,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,3,0,1],[2,4,2,1],[1,1,2,0]],[[1,1,2,1],[2,3,0,1],[2,3,2,1],[2,1,2,0]],[[1,1,2,1],[2,4,0,2],[1,3,3,2],[0,0,2,0]],[[1,1,2,1],[3,3,0,2],[1,3,3,2],[0,0,2,0]],[[2,1,2,1],[2,3,0,2],[1,3,3,2],[0,0,2,0]],[[1,1,2,1],[2,4,0,2],[1,3,3,2],[0,0,1,1]],[[1,1,2,1],[3,3,0,2],[1,3,3,2],[0,0,1,1]],[[2,1,2,1],[2,3,0,2],[1,3,3,2],[0,0,1,1]],[[2,1,2,1],[2,3,0,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[3,3,0,1],[2,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,3,0,1],[3,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,3,0,1],[2,4,3,0],[0,1,2,1]],[[2,1,2,1],[2,3,0,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[3,3,0,1],[2,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,0,1],[3,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,0,1],[2,4,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,0,1],[2,3,3,0],[0,3,1,1]],[[2,1,2,1],[2,3,0,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[3,3,0,1],[2,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,0,1],[3,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,0,1],[2,4,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,0,1],[2,3,3,0],[2,0,2,1]],[[2,1,2,1],[2,3,0,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[3,3,0,1],[2,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[3,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[2,4,3,0],[1,1,1,1]],[[1,1,2,1],[2,3,0,1],[2,3,3,0],[2,1,1,1]],[[2,1,2,1],[2,3,0,1],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[3,3,0,1],[2,3,3,0],[1,2,0,1]],[[1,1,2,1],[2,3,0,1],[3,3,3,0],[1,2,0,1]],[[1,1,2,1],[2,3,0,1],[2,4,3,0],[1,2,0,1]],[[1,1,2,1],[2,3,0,1],[2,3,3,0],[2,2,0,1]],[[1,1,2,1],[2,3,0,2],[1,4,3,1],[1,2,0,0]],[[1,1,2,1],[2,4,0,2],[1,3,3,1],[1,2,0,0]],[[1,1,2,1],[3,3,0,2],[1,3,3,1],[1,2,0,0]],[[2,1,2,1],[2,3,0,2],[1,3,3,1],[1,2,0,0]],[[2,1,2,1],[2,3,0,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[3,3,0,1],[2,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,3,0,1],[3,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,3,0,1],[2,4,3,1],[0,1,2,0]],[[2,1,2,1],[2,3,0,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[3,3,0,1],[2,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,3,0,1],[3,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,3,0,1],[2,4,3,1],[0,2,0,1]],[[2,1,2,1],[2,3,0,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[3,3,0,1],[2,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,0,1],[3,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,0,1],[2,4,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,0,1],[2,3,3,1],[0,3,1,0]],[[1,1,2,1],[2,3,0,2],[1,3,4,1],[1,1,1,0]],[[2,1,2,1],[2,3,0,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[3,3,0,1],[2,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,0,1],[3,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,0,1],[2,4,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,0,1],[2,3,3,1],[2,0,2,0]],[[2,1,2,1],[2,3,0,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[3,3,0,1],[2,3,3,1],[1,1,0,1]],[[1,1,2,1],[2,3,0,1],[3,3,3,1],[1,1,0,1]],[[1,1,2,1],[2,3,0,1],[2,4,3,1],[1,1,0,1]],[[1,1,2,1],[2,3,0,1],[2,3,3,1],[2,1,0,1]],[[2,1,2,1],[2,3,0,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[3,3,0,1],[2,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,0,1],[3,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,0,1],[2,4,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,0,1],[2,3,3,1],[2,1,1,0]],[[1,1,2,1],[2,3,0,2],[1,4,3,1],[1,1,1,0]],[[1,1,2,1],[2,4,0,2],[1,3,3,1],[1,1,1,0]],[[1,1,2,1],[3,3,0,2],[1,3,3,1],[1,1,1,0]],[[2,1,2,1],[2,3,0,2],[1,3,3,1],[1,1,1,0]],[[1,1,2,1],[2,3,0,2],[1,3,4,1],[1,1,0,1]],[[1,1,2,1],[2,3,0,2],[1,4,3,1],[1,1,0,1]],[[1,1,2,1],[2,4,0,2],[1,3,3,1],[1,1,0,1]],[[1,1,2,1],[3,3,0,2],[1,3,3,1],[1,1,0,1]],[[2,1,2,1],[2,3,0,2],[1,3,3,1],[1,1,0,1]],[[2,1,2,1],[2,3,0,1],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[3,3,0,1],[2,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,3,0,1],[3,3,3,1],[1,2,0,0]],[[1,1,2,1],[2,3,0,1],[2,4,3,1],[1,2,0,0]],[[1,1,2,1],[2,3,0,1],[2,3,3,1],[2,2,0,0]],[[1,1,2,1],[2,3,0,2],[1,3,3,1],[1,0,3,0]],[[1,1,2,1],[2,3,0,2],[1,3,4,1],[1,0,2,0]],[[1,1,2,1],[2,3,0,2],[1,4,3,1],[1,0,2,0]],[[1,1,2,1],[2,4,0,2],[1,3,3,1],[1,0,2,0]],[[1,1,2,1],[3,3,0,2],[1,3,3,1],[1,0,2,0]],[[2,1,2,1],[2,3,0,2],[1,3,3,1],[1,0,2,0]],[[1,1,2,1],[2,3,0,2],[1,3,4,1],[1,0,1,1]],[[1,1,2,1],[2,3,0,2],[1,4,3,1],[1,0,1,1]],[[1,1,2,1],[2,4,0,2],[1,3,3,1],[1,0,1,1]],[[1,1,2,1],[3,3,0,2],[1,3,3,1],[1,0,1,1]],[[2,1,2,1],[2,3,0,2],[1,3,3,1],[1,0,1,1]],[[1,1,2,1],[2,3,0,2],[1,3,3,1],[0,3,1,0]],[[1,1,2,1],[2,3,0,2],[1,3,4,1],[0,2,1,0]],[[1,1,2,1],[2,3,0,2],[1,4,3,1],[0,2,1,0]],[[1,1,2,1],[2,4,0,2],[1,3,3,1],[0,2,1,0]],[[1,1,2,1],[3,3,0,2],[1,3,3,1],[0,2,1,0]],[[2,1,2,1],[2,3,0,2],[1,3,3,1],[0,2,1,0]],[[1,1,2,1],[2,3,0,2],[1,3,3,1],[0,3,0,1]],[[1,1,2,1],[2,3,0,2],[1,3,4,1],[0,2,0,1]],[[1,1,2,1],[2,3,0,2],[1,4,3,1],[0,2,0,1]],[[1,1,2,1],[2,4,0,2],[1,3,3,1],[0,2,0,1]],[[1,1,2,1],[3,3,0,2],[1,3,3,1],[0,2,0,1]],[[2,1,2,1],[2,3,0,2],[1,3,3,1],[0,2,0,1]],[[1,1,2,1],[2,3,0,2],[1,3,3,1],[0,1,3,0]],[[1,1,2,1],[2,3,0,2],[1,3,4,1],[0,1,2,0]],[[1,1,2,1],[2,3,0,2],[1,4,3,1],[0,1,2,0]],[[1,1,2,1],[2,4,0,2],[1,3,3,1],[0,1,2,0]],[[1,1,2,1],[3,3,0,2],[1,3,3,1],[0,1,2,0]],[[2,1,2,1],[2,3,0,2],[1,3,3,1],[0,1,2,0]],[[1,1,2,1],[2,3,0,2],[1,3,4,1],[0,1,1,1]],[[1,1,2,1],[2,3,0,2],[1,4,3,1],[0,1,1,1]],[[1,1,2,1],[2,4,0,2],[1,3,3,1],[0,1,1,1]],[[1,1,2,1],[3,3,0,2],[1,3,3,1],[0,1,1,1]],[[2,1,2,1],[2,3,0,2],[1,3,3,1],[0,1,1,1]],[[2,1,2,1],[2,3,0,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[3,3,0,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[2,4,0,1],[2,3,3,2],[1,0,0,1]],[[1,1,2,1],[2,3,0,1],[3,3,3,2],[1,0,0,1]],[[2,1,2,1],[2,3,0,1],[2,3,3,2],[1,0,1,0]],[[1,1,2,1],[3,3,0,1],[2,3,3,2],[1,0,1,0]],[[1,1,2,1],[2,4,0,1],[2,3,3,2],[1,0,1,0]],[[1,1,2,1],[2,3,0,1],[3,3,3,2],[1,0,1,0]],[[1,1,2,1],[2,3,0,2],[1,4,3,0],[1,2,0,1]],[[1,1,2,1],[2,4,0,2],[1,3,3,0],[1,2,0,1]],[[1,1,2,1],[3,3,0,2],[1,3,3,0],[1,2,0,1]],[[2,1,2,1],[2,3,0,2],[1,3,3,0],[1,2,0,1]],[[1,1,2,1],[2,3,0,2],[1,3,4,0],[1,1,1,1]],[[1,1,2,1],[2,3,0,2],[1,4,3,0],[1,1,1,1]],[[1,1,2,1],[2,4,0,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,1],[3,3,0,2],[1,3,3,0],[1,1,1,1]],[[2,1,2,1],[2,3,0,2],[1,3,3,0],[1,1,1,1]],[[1,1,2,1],[2,3,0,2],[1,3,3,0],[1,0,2,2]],[[1,1,2,1],[2,3,0,2],[1,3,3,0],[1,0,3,1]],[[1,1,2,1],[2,3,0,2],[1,3,4,0],[1,0,2,1]],[[1,1,2,1],[2,3,0,2],[1,4,3,0],[1,0,2,1]],[[1,1,2,1],[2,4,0,2],[1,3,3,0],[1,0,2,1]],[[1,1,2,1],[3,3,0,2],[1,3,3,0],[1,0,2,1]],[[2,1,2,1],[2,3,0,2],[1,3,3,0],[1,0,2,1]],[[1,1,2,1],[2,3,0,2],[1,3,3,0],[0,3,1,1]],[[1,1,2,1],[2,3,0,2],[1,3,4,0],[0,2,1,1]],[[1,1,2,1],[2,3,0,2],[1,4,3,0],[0,2,1,1]],[[1,1,2,1],[2,4,0,2],[1,3,3,0],[0,2,1,1]],[[1,1,2,1],[3,3,0,2],[1,3,3,0],[0,2,1,1]],[[2,1,2,1],[2,3,0,2],[1,3,3,0],[0,2,1,1]],[[1,1,2,1],[2,3,0,2],[1,3,3,0],[0,1,2,2]],[[1,1,2,1],[2,3,0,2],[1,3,3,0],[0,1,3,1]],[[1,1,2,1],[2,3,0,2],[1,3,4,0],[0,1,2,1]],[[1,1,2,1],[2,3,0,2],[1,4,3,0],[0,1,2,1]],[[1,1,2,1],[2,4,0,2],[1,3,3,0],[0,1,2,1]],[[1,1,2,1],[3,3,0,2],[1,3,3,0],[0,1,2,1]],[[2,1,2,1],[2,3,0,2],[1,3,3,0],[0,1,2,1]],[[1,1,2,1],[2,3,0,2],[1,4,2,2],[1,2,0,0]],[[1,1,2,1],[2,4,0,2],[1,3,2,2],[1,2,0,0]],[[1,1,2,1],[3,3,0,2],[1,3,2,2],[1,2,0,0]],[[2,1,2,1],[2,3,0,2],[1,3,2,2],[1,2,0,0]],[[1,1,2,1],[2,3,0,2],[1,4,2,2],[1,1,1,0]],[[1,1,2,1],[2,4,0,2],[1,3,2,2],[1,1,1,0]],[[1,1,2,1],[3,3,0,2],[1,3,2,2],[1,1,1,0]],[[2,1,2,1],[2,3,0,2],[1,3,2,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,2],[1,4,2,2],[1,1,0,1]],[[1,1,2,1],[2,4,0,2],[1,3,2,2],[1,1,0,1]],[[1,1,2,1],[3,3,0,2],[1,3,2,2],[1,1,0,1]],[[2,1,2,1],[2,3,0,2],[1,3,2,2],[1,1,0,1]],[[2,1,2,1],[2,3,0,2],[0,1,2,2],[1,2,2,1]],[[1,1,2,1],[3,3,0,2],[0,1,2,2],[1,2,2,1]],[[1,1,2,1],[2,4,0,2],[0,1,2,2],[1,2,2,1]],[[2,1,2,1],[2,3,0,2],[0,1,3,2],[1,2,1,1]],[[1,1,2,1],[3,3,0,2],[0,1,3,2],[1,2,1,1]],[[1,1,2,1],[2,4,0,2],[0,1,3,2],[1,2,1,1]],[[2,1,2,1],[2,3,0,2],[0,1,3,2],[1,2,2,0]],[[1,1,2,1],[3,3,0,2],[0,1,3,2],[1,2,2,0]],[[1,1,2,1],[2,4,0,2],[0,1,3,2],[1,2,2,0]],[[2,1,2,1],[2,3,0,2],[0,2,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,0,2],[0,2,1,2],[1,2,2,1]],[[1,1,2,1],[2,4,0,2],[0,2,1,2],[1,2,2,1]],[[2,1,2,1],[2,3,0,2],[0,2,2,2],[1,1,2,1]],[[1,1,2,1],[3,3,0,2],[0,2,2,2],[1,1,2,1]],[[1,1,2,1],[2,4,0,2],[0,2,2,2],[1,1,2,1]],[[1,1,2,1],[2,3,0,2],[0,2,4,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,2],[0,2,3,0],[2,2,2,1]],[[1,1,2,1],[2,3,0,2],[0,2,3,0],[1,3,2,1]],[[1,1,2,1],[2,3,0,2],[0,2,3,0],[1,2,3,1]],[[1,1,2,1],[2,3,0,2],[0,2,3,0],[1,2,2,2]],[[1,1,2,1],[2,3,0,2],[0,2,4,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,2],[0,2,3,1],[2,2,2,0]],[[1,1,2,1],[2,3,0,2],[0,2,3,1],[1,3,2,0]],[[1,1,2,1],[2,3,0,2],[0,2,3,1],[1,2,3,0]],[[2,1,2,1],[2,3,0,2],[0,2,3,2],[1,1,1,1]],[[1,1,2,1],[3,3,0,2],[0,2,3,2],[1,1,1,1]],[[1,1,2,1],[2,4,0,2],[0,2,3,2],[1,1,1,1]],[[2,1,2,1],[2,3,0,2],[0,2,3,2],[1,1,2,0]],[[1,1,2,1],[3,3,0,2],[0,2,3,2],[1,1,2,0]],[[1,1,2,1],[2,4,0,2],[0,2,3,2],[1,1,2,0]],[[2,1,2,1],[2,3,0,2],[0,2,3,2],[1,2,0,1]],[[1,1,2,1],[3,3,0,2],[0,2,3,2],[1,2,0,1]],[[1,1,2,1],[2,4,0,2],[0,2,3,2],[1,2,0,1]],[[2,1,2,1],[2,3,0,2],[0,2,3,2],[1,2,1,0]],[[1,1,2,1],[3,3,0,2],[0,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,4,0,2],[0,2,3,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,2],[1,4,2,2],[1,0,2,0]],[[1,1,2,1],[2,4,0,2],[1,3,2,2],[1,0,2,0]],[[1,1,2,1],[3,3,0,2],[1,3,2,2],[1,0,2,0]],[[2,1,2,1],[2,3,0,2],[1,3,2,2],[1,0,2,0]],[[1,1,2,1],[2,3,0,2],[1,4,2,2],[1,0,1,1]],[[1,1,2,1],[2,4,0,2],[1,3,2,2],[1,0,1,1]],[[1,1,2,1],[3,3,0,2],[1,3,2,2],[1,0,1,1]],[[2,1,2,1],[2,3,0,2],[0,3,1,1],[1,2,2,1]],[[1,1,2,1],[3,3,0,2],[0,3,1,1],[1,2,2,1]],[[1,1,2,1],[2,4,0,2],[0,3,1,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,2],[0,4,1,1],[1,2,2,1]],[[1,1,2,1],[2,3,0,2],[0,3,1,1],[2,2,2,1]],[[1,1,2,1],[2,3,0,2],[0,3,1,1],[1,3,2,1]],[[1,1,2,1],[2,3,0,2],[0,3,1,1],[1,2,3,1]],[[1,1,2,1],[2,3,0,2],[0,3,1,1],[1,2,2,2]],[[2,1,2,1],[2,3,0,2],[0,3,1,2],[1,1,2,1]],[[1,1,2,1],[3,3,0,2],[0,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,4,0,2],[0,3,1,2],[1,1,2,1]],[[1,1,2,1],[2,3,0,2],[0,4,1,2],[1,1,2,1]],[[2,1,2,1],[2,3,0,2],[0,3,1,2],[1,2,1,1]],[[1,1,2,1],[3,3,0,2],[0,3,1,2],[1,2,1,1]],[[1,1,2,1],[2,4,0,2],[0,3,1,2],[1,2,1,1]],[[1,1,2,1],[2,3,0,2],[0,4,1,2],[1,2,1,1]],[[1,1,2,1],[2,3,0,2],[0,3,1,2],[2,2,1,1]],[[1,1,2,1],[2,3,0,2],[0,3,1,2],[1,3,1,1]],[[2,1,2,1],[2,3,0,2],[0,3,1,2],[1,2,2,0]],[[1,1,2,1],[3,3,0,2],[0,3,1,2],[1,2,2,0]],[[1,1,2,1],[2,4,0,2],[0,3,1,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,2],[0,4,1,2],[1,2,2,0]],[[1,1,2,1],[2,3,0,2],[0,3,1,2],[2,2,2,0]],[[1,1,2,1],[2,3,0,2],[0,3,1,2],[1,3,2,0]],[[1,1,2,1],[2,3,0,2],[0,3,1,2],[1,2,3,0]],[[2,1,2,1],[2,3,0,2],[0,3,2,0],[1,2,2,1]],[[1,1,2,1],[3,3,0,2],[0,3,2,0],[1,2,2,1]],[[1,1,2,1],[2,4,0,2],[0,3,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,2],[0,4,2,0],[1,2,2,1]],[[1,1,2,1],[2,3,0,2],[0,3,2,0],[2,2,2,1]],[[1,1,2,1],[2,3,0,2],[0,3,2,0],[1,3,2,1]],[[1,1,2,1],[2,3,0,2],[0,3,2,0],[1,2,3,1]],[[1,1,2,1],[2,3,0,2],[0,3,2,0],[1,2,2,2]],[[2,1,2,1],[2,3,0,2],[0,3,2,1],[1,2,2,0]],[[1,1,2,1],[3,3,0,2],[0,3,2,1],[1,2,2,0]],[[1,1,2,1],[2,4,0,2],[0,3,2,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,2],[0,4,2,1],[1,2,2,0]],[[1,1,2,1],[2,3,0,2],[0,3,2,1],[2,2,2,0]],[[1,1,2,1],[2,3,0,2],[0,3,2,1],[1,3,2,0]],[[1,1,2,1],[2,3,0,2],[0,3,2,1],[1,2,3,0]],[[2,1,2,1],[2,3,0,2],[0,3,2,2],[1,1,1,1]],[[1,1,2,1],[3,3,0,2],[0,3,2,2],[1,1,1,1]],[[1,1,2,1],[2,4,0,2],[0,3,2,2],[1,1,1,1]],[[1,1,2,1],[2,3,0,2],[0,4,2,2],[1,1,1,1]],[[2,1,2,1],[2,3,0,2],[0,3,2,2],[1,1,2,0]],[[1,1,2,1],[3,3,0,2],[0,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,4,0,2],[0,3,2,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,2],[0,4,2,2],[1,1,2,0]],[[2,1,2,1],[2,3,0,2],[0,3,2,2],[1,2,0,1]],[[1,1,2,1],[3,3,0,2],[0,3,2,2],[1,2,0,1]],[[1,1,2,1],[2,4,0,2],[0,3,2,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,2],[0,4,2,2],[1,2,0,1]],[[1,1,2,1],[2,3,0,2],[0,3,2,2],[2,2,0,1]],[[1,1,2,1],[2,3,0,2],[0,3,2,2],[1,3,0,1]],[[2,1,2,1],[2,3,0,2],[0,3,2,2],[1,2,1,0]],[[1,1,2,1],[3,3,0,2],[0,3,2,2],[1,2,1,0]],[[1,1,2,1],[2,4,0,2],[0,3,2,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,2],[0,4,2,2],[1,2,1,0]],[[1,1,2,1],[2,3,0,2],[0,3,2,2],[2,2,1,0]],[[1,1,2,1],[2,3,0,2],[0,3,2,2],[1,3,1,0]],[[2,1,2,1],[2,3,0,2],[1,3,2,2],[1,0,1,1]],[[2,1,2,1],[2,3,0,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,1],[3,3,0,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,4,0,2],[0,3,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,0,2],[0,4,3,0],[1,1,2,1]],[[1,1,2,1],[2,3,0,2],[0,3,4,0],[1,1,2,1]],[[1,1,2,1],[2,3,0,2],[0,3,3,0],[1,1,3,1]],[[1,1,2,1],[2,3,0,2],[0,3,3,0],[1,1,2,2]],[[2,1,2,1],[2,3,0,2],[0,3,3,0],[1,2,1,1]],[[1,1,2,1],[3,3,0,2],[0,3,3,0],[1,2,1,1]],[[1,1,2,1],[2,4,0,2],[0,3,3,0],[1,2,1,1]],[[1,1,2,1],[2,3,0,2],[0,4,3,0],[1,2,1,1]],[[1,1,2,1],[2,3,0,2],[0,3,4,0],[1,2,1,1]],[[1,1,2,1],[2,3,0,2],[0,3,3,0],[2,2,1,1]],[[1,1,2,1],[2,3,0,2],[0,3,3,0],[1,3,1,1]],[[2,1,2,1],[2,3,0,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,1],[3,3,0,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,4,0,2],[0,3,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,0,2],[0,4,3,1],[1,1,1,1]],[[1,1,2,1],[2,3,0,2],[0,3,4,1],[1,1,1,1]],[[2,1,2,1],[2,3,0,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,1],[3,3,0,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,1],[2,4,0,2],[0,3,3,1],[1,1,2,0]],[[1,1,2,1],[2,3,0,2],[0,4,3,1],[1,1,2,0]],[[1,1,2,1],[2,3,0,2],[0,3,4,1],[1,1,2,0]],[[1,1,2,1],[2,3,0,2],[0,3,3,1],[1,1,3,0]],[[2,1,2,1],[2,3,0,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,1],[3,3,0,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,4,0,2],[0,3,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,0,2],[0,4,3,1],[1,2,0,1]],[[1,1,2,1],[2,3,0,2],[0,3,4,1],[1,2,0,1]],[[1,1,2,1],[2,3,0,2],[0,3,3,1],[2,2,0,1]],[[1,1,2,1],[2,3,0,2],[0,3,3,1],[1,3,0,1]],[[2,1,2,1],[2,3,0,2],[0,3,3,1],[1,2,1,0]],[[1,1,2,1],[3,3,0,2],[0,3,3,1],[1,2,1,0]],[[1,1,2,1],[2,4,0,2],[0,3,3,1],[1,2,1,0]],[[1,1,2,1],[2,3,0,2],[0,4,3,1],[1,2,1,0]],[[1,1,2,1],[2,3,0,2],[0,3,4,1],[1,2,1,0]],[[1,1,2,1],[2,3,0,2],[0,3,3,1],[2,2,1,0]],[[1,1,2,1],[2,3,0,2],[0,3,3,1],[1,3,1,0]],[[1,1,2,1],[2,3,0,2],[1,3,2,2],[0,3,1,0]],[[1,1,2,1],[2,3,0,2],[1,4,2,2],[0,2,1,0]],[[1,1,2,1],[2,4,0,2],[1,3,2,2],[0,2,1,0]],[[1,1,2,1],[3,3,0,2],[1,3,2,2],[0,2,1,0]],[[2,1,2,1],[2,3,0,2],[1,3,2,2],[0,2,1,0]],[[1,1,2,1],[2,3,0,2],[1,3,2,2],[0,3,0,1]],[[1,1,2,1],[2,3,0,2],[1,4,2,2],[0,2,0,1]],[[1,1,2,1],[2,4,0,2],[1,3,2,2],[0,2,0,1]],[[1,1,2,1],[3,3,0,2],[1,3,2,2],[0,2,0,1]],[[2,1,2,1],[2,3,0,2],[1,3,2,2],[0,2,0,1]],[[1,1,2,1],[2,3,0,2],[1,4,2,2],[0,1,2,0]],[[1,1,2,1],[2,4,0,2],[1,3,2,2],[0,1,2,0]],[[1,1,2,1],[3,3,0,2],[1,3,2,2],[0,1,2,0]],[[2,1,2,1],[2,3,0,2],[1,3,2,2],[0,1,2,0]],[[1,1,2,1],[2,3,0,2],[1,4,2,2],[0,1,1,1]],[[1,1,2,1],[2,4,0,2],[1,3,2,2],[0,1,1,1]],[[1,1,2,1],[3,3,0,2],[1,3,2,2],[0,1,1,1]],[[2,1,2,1],[2,3,0,2],[1,3,2,2],[0,1,1,1]],[[1,1,2,1],[2,3,0,2],[1,4,2,1],[1,1,2,0]],[[1,1,2,1],[2,4,0,2],[1,3,2,1],[1,1,2,0]],[[1,1,2,1],[3,3,0,2],[1,3,2,1],[1,1,2,0]],[[2,1,2,1],[2,3,0,2],[1,3,2,1],[1,1,2,0]],[[1,1,2,1],[2,3,0,2],[1,3,2,1],[0,2,3,0]],[[1,1,2,1],[2,3,0,2],[1,3,2,1],[0,3,2,0]],[[1,1,2,1],[2,3,0,2],[1,4,2,1],[0,2,2,0]],[[1,1,2,1],[2,4,0,2],[1,3,2,1],[0,2,2,0]],[[1,1,2,1],[3,3,0,2],[1,3,2,1],[0,2,2,0]],[[2,1,2,1],[2,3,0,2],[1,3,2,1],[0,2,2,0]],[[2,1,2,1],[2,3,0,2],[1,0,2,2],[1,2,2,1]],[[1,1,2,1],[3,3,0,2],[1,0,2,2],[1,2,2,1]],[[1,1,2,1],[2,4,0,2],[1,0,2,2],[1,2,2,1]],[[2,1,2,1],[2,3,0,2],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[3,3,0,2],[1,0,3,2],[1,2,1,1]],[[1,1,2,1],[2,4,0,2],[1,0,3,2],[1,2,1,1]],[[2,1,2,1],[2,3,0,2],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[3,3,0,2],[1,0,3,2],[1,2,2,0]],[[1,1,2,1],[2,4,0,2],[1,0,3,2],[1,2,2,0]],[[2,1,2,1],[2,3,0,2],[1,1,1,2],[1,2,2,1]],[[1,1,2,1],[3,3,0,2],[1,1,1,2],[1,2,2,1]],[[1,1,2,1],[2,4,0,2],[1,1,1,2],[1,2,2,1]],[[2,1,2,1],[2,3,0,2],[1,1,2,2],[0,2,2,1]],[[1,1,2,1],[3,3,0,2],[1,1,2,2],[0,2,2,1]],[[1,1,2,1],[2,4,0,2],[1,1,2,2],[0,2,2,1]],[[2,1,2,1],[2,3,0,2],[1,1,3,2],[0,2,1,1]],[[1,1,2,1],[3,3,0,2],[1,1,3,2],[0,2,1,1]],[[1,1,2,1],[2,4,0,2],[1,1,3,2],[0,2,1,1]],[[2,1,2,1],[2,3,0,2],[1,1,3,2],[0,2,2,0]],[[1,1,2,1],[3,3,0,2],[1,1,3,2],[0,2,2,0]],[[1,1,2,1],[2,4,0,2],[1,1,3,2],[0,2,2,0]],[[2,1,2,1],[2,3,0,2],[1,2,1,2],[0,2,2,1]],[[1,1,2,1],[3,3,0,2],[1,2,1,2],[0,2,2,1]],[[1,1,2,1],[2,4,0,2],[1,2,1,2],[0,2,2,1]],[[2,1,2,1],[2,3,0,2],[1,2,2,2],[0,1,2,1]],[[1,1,2,1],[3,3,0,2],[1,2,2,2],[0,1,2,1]],[[1,1,2,1],[2,4,0,2],[1,2,2,2],[0,1,2,1]],[[2,1,2,1],[2,3,0,2],[1,2,2,2],[1,0,2,1]],[[1,1,2,1],[3,3,0,2],[1,2,2,2],[1,0,2,1]],[[1,1,2,1],[2,4,0,2],[1,2,2,2],[1,0,2,1]],[[1,1,2,1],[2,3,0,2],[1,4,2,0],[1,1,2,1]],[[1,1,2,1],[2,4,0,2],[1,3,2,0],[1,1,2,1]],[[1,1,2,1],[3,3,0,2],[1,3,2,0],[1,1,2,1]],[[2,1,2,1],[2,3,0,2],[1,3,2,0],[1,1,2,1]],[[1,1,2,1],[2,3,0,2],[1,3,2,0],[0,2,2,2]],[[1,1,2,1],[2,3,0,2],[1,3,2,0],[0,2,3,1]],[[1,1,2,1],[2,3,0,2],[1,3,2,0],[0,3,2,1]],[[1,1,2,1],[2,3,0,2],[1,2,4,0],[0,2,2,1]],[[1,1,2,1],[2,3,0,2],[1,2,3,0],[0,3,2,1]],[[1,1,2,1],[2,3,0,2],[1,2,3,0],[0,2,3,1]],[[1,1,2,1],[2,3,0,2],[1,2,3,0],[0,2,2,2]],[[1,1,2,1],[2,3,0,2],[1,2,4,1],[0,2,2,0]],[[1,1,2,1],[2,3,0,2],[1,2,3,1],[0,3,2,0]],[[1,1,2,1],[2,3,0,2],[1,2,3,1],[0,2,3,0]],[[1,1,2,1],[2,3,0,2],[1,4,2,0],[0,2,2,1]],[[1,1,2,1],[2,4,0,2],[1,3,2,0],[0,2,2,1]],[[1,1,2,1],[3,3,0,2],[1,3,2,0],[0,2,2,1]],[[2,1,2,1],[2,3,0,2],[1,3,2,0],[0,2,2,1]],[[2,1,2,1],[2,3,0,2],[1,2,3,2],[0,0,2,1]],[[1,1,2,1],[3,3,0,2],[1,2,3,2],[0,0,2,1]],[[1,1,2,1],[2,4,0,2],[1,2,3,2],[0,0,2,1]],[[2,1,2,1],[2,3,0,2],[1,2,3,2],[0,1,1,1]],[[1,1,2,1],[3,3,0,2],[1,2,3,2],[0,1,1,1]],[[1,1,2,1],[2,4,0,2],[1,2,3,2],[0,1,1,1]],[[2,1,2,1],[2,3,0,2],[1,2,3,2],[0,1,2,0]],[[1,1,2,1],[3,3,0,2],[1,2,3,2],[0,1,2,0]],[[1,1,2,1],[2,4,0,2],[1,2,3,2],[0,1,2,0]],[[2,1,2,1],[2,3,0,2],[1,2,3,2],[0,2,0,1]],[[1,1,2,1],[3,3,0,2],[1,2,3,2],[0,2,0,1]],[[1,1,2,1],[2,4,0,2],[1,2,3,2],[0,2,0,1]],[[2,1,2,1],[2,3,0,2],[1,2,3,2],[0,2,1,0]],[[1,1,2,1],[3,3,0,2],[1,2,3,2],[0,2,1,0]],[[1,1,2,1],[2,4,0,2],[1,2,3,2],[0,2,1,0]],[[2,1,2,1],[2,3,0,2],[1,2,3,2],[1,0,1,1]],[[1,1,2,1],[3,3,0,2],[1,2,3,2],[1,0,1,1]],[[1,1,2,1],[2,4,0,2],[1,2,3,2],[1,0,1,1]],[[2,1,2,1],[2,3,0,2],[1,2,3,2],[1,0,2,0]],[[1,1,2,1],[3,3,0,2],[1,2,3,2],[1,0,2,0]],[[1,1,2,1],[2,4,0,2],[1,2,3,2],[1,0,2,0]],[[2,1,2,1],[2,3,0,2],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[3,3,0,2],[1,2,3,2],[1,1,0,1]],[[1,1,2,1],[2,4,0,2],[1,2,3,2],[1,1,0,1]],[[2,1,2,1],[2,3,0,2],[1,2,3,2],[1,1,1,0]],[[1,1,2,1],[3,3,0,2],[1,2,3,2],[1,1,1,0]],[[1,1,2,1],[2,4,0,2],[1,2,3,2],[1,1,1,0]],[[1,1,2,1],[2,3,0,2],[1,4,1,2],[1,1,2,0]],[[1,1,2,1],[2,4,0,2],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[3,3,0,2],[1,3,1,2],[1,1,2,0]],[[2,1,2,1],[2,3,0,2],[1,3,1,2],[1,1,2,0]],[[1,1,2,1],[2,3,0,2],[1,4,1,2],[1,1,1,1]],[[1,1,2,1],[2,4,0,2],[1,3,1,2],[1,1,1,1]],[[1,1,2,1],[3,3,0,2],[1,3,1,2],[1,1,1,1]],[[2,1,2,1],[2,3,0,2],[1,3,1,2],[1,1,1,1]],[[1,1,2,1],[2,3,0,2],[1,4,1,2],[1,0,2,1]],[[1,1,2,1],[2,4,0,2],[1,3,1,2],[1,0,2,1]],[[1,1,2,1],[3,3,0,2],[1,3,1,2],[1,0,2,1]],[[2,1,2,1],[2,3,0,2],[1,3,1,2],[1,0,2,1]],[[1,1,2,1],[2,3,0,2],[1,3,1,2],[0,2,3,0]],[[1,1,2,1],[2,3,0,2],[1,3,1,2],[0,3,2,0]],[[1,1,2,1],[2,3,0,2],[1,4,1,2],[0,2,2,0]],[[1,1,2,1],[2,4,0,2],[1,3,1,2],[0,2,2,0]],[[1,1,2,1],[3,3,0,2],[1,3,1,2],[0,2,2,0]],[[2,1,2,1],[2,3,0,2],[1,3,1,2],[0,2,2,0]],[[1,1,2,1],[2,3,0,2],[1,3,1,2],[0,3,1,1]],[[2,1,2,1],[2,3,0,2],[1,3,1,1],[0,2,2,1]],[[1,1,2,1],[3,3,0,2],[1,3,1,1],[0,2,2,1]],[[1,1,2,1],[2,4,0,2],[1,3,1,1],[0,2,2,1]],[[1,1,2,1],[2,3,0,2],[1,4,1,1],[0,2,2,1]],[[1,1,2,1],[2,3,0,2],[1,3,1,1],[0,3,2,1]],[[1,1,2,1],[2,3,0,2],[1,3,1,1],[0,2,3,1]],[[1,1,2,1],[2,3,0,2],[1,3,1,1],[0,2,2,2]],[[2,1,2,1],[2,3,0,2],[1,3,1,1],[1,1,2,1]],[[1,1,2,1],[3,3,0,2],[1,3,1,1],[1,1,2,1]],[[1,1,2,1],[2,4,0,2],[1,3,1,1],[1,1,2,1]],[[1,1,2,1],[2,3,0,2],[1,4,1,1],[1,1,2,1]],[[2,1,2,1],[2,3,0,2],[1,3,1,2],[0,1,2,1]],[[1,1,2,1],[3,3,0,2],[1,3,1,2],[0,1,2,1]],[[1,1,2,1],[2,4,0,2],[1,3,1,2],[0,1,2,1]],[[1,1,2,1],[2,3,0,2],[1,4,1,2],[0,1,2,1]],[[2,1,2,1],[2,3,0,2],[1,3,1,2],[0,2,1,1]],[[1,1,2,1],[3,3,0,2],[1,3,1,2],[0,2,1,1]],[[1,1,2,1],[2,4,0,2],[1,3,1,2],[0,2,1,1]],[[1,1,2,1],[2,3,0,2],[1,4,1,2],[0,2,1,1]]] \ No newline at end of file diff --git a/manager.cpp b/manager.cpp new file mode 100644 index 0000000..1d9bf96 --- /dev/null +++ b/manager.cpp @@ -0,0 +1,199 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "common.h" //for NPLAYERS + +using namespace std; + +const int NMATCHES=10,TIMEOUT=30000; + +const char *ignoredfiles[]={"caiaio","caiaio.exe","manager","manager.exe","referee","referee.exe","competition.sh","playerlogs","refereelogs","javascript"}; +const int nignoredfiles=sizeof(ignoredfiles)/sizeof(ignoredfiles[0]); + + +vector findplayers(void){ + vector fnames; + DIR *dir; + struct dirent *ent; + int i; + if((dir=opendir("."))==NULL){ + perror("opendir"); + exit(1); + } + while((ent=readdir(dir))!=NULL){ + for(i=0;id_name)==0)break; + } + if(id_name); + } + closedir(dir); + return fnames; +} + +vector parseplayers(const char *arg){ + vector fnames; + const char *found; + int idx,cursor=0; + while(true){ + found=strchr(arg+cursor,','); + if(found==NULL){ + if(arg[cursor]!='\0')fnames.push_back(arg+cursor); + break; + } + idx=found-arg; + fnames.push_back(string(arg+cursor,idx-cursor)); + cursor=idx+1; + } + return fnames; +} + +template +class Combinations{ + vector v; + int N; +public: + template + class Combination_it{ + const vector v; + const unsigned int vsz; + int N; //-1 means end iterator + vector indices; + public: + Combination_it(void):vsz(0),N(-1){} + Combination_it(vector &_v,int _N):v(_v),vsz(v.size()),N(_N){ + indices.resize(N); + for(int i=0;i=0;i--){ + if(++indices[i] operator*(void){ //dereference, get value of iterator + vector res; + if(N<0)throw invalid_argument("Combinations::end iterator dereference"); + res.reserve(N); + for(int idx : indices)res.push_back(v[idx]); + return res; + } + }; + + Combinations(vector &_v,int _N):v(_v),N(_N){} + + Combination_it begin(void){return Combination_it(v,N);} + + Combination_it end(void){return Combination_it();} +}; + +//returns {scores,statuses} +pair,vector> playmatch(const vector &fnames,int matchidx){ + const int np=fnames.size(); + int i,j; + cout<<"I number_players "< playeridcs; + playeridcs.resize(nfn); + iota(playeridcs.begin(),playeridcs.end(),0); + int i,j; + for(const vector indices : Combinations(playeridcs,NPLAYERS)){ + vector players; + players.reserve(NPLAYERS); + for(i=0;i,vector> res=playmatch(players,i+1); + for(j=0;j> ranking; + ranking.reserve(nfn); + for(i=0;i &a,const pair &b) ->bool{return a.second>b.second;}); + for(i=0;i (http://tomsmeding.com)", - "license": "MIT", - "dependencies": { - "express": "^4.13.3", - "socket.io": "^1.3.7" - } -} diff --git a/player_d1.cpp b/player_d1.cpp new file mode 100644 index 0000000..cf1e6e9 --- /dev/null +++ b/player_d1.cpp @@ -0,0 +1,46 @@ +#include +#include +#include +#include "common.h" + +using namespace std; + +Move calcmove(Board &bd,int me){ + int i; + int count,maxcount=-1,maxat=0; + for(i=0;imaxcount){ + maxcount=count; + maxat=i; + } + } + return Move(maxat%WID,maxat/WID); +} + +int main(void){ + struct timeval tv; + gettimeofday(&tv,NULL); + srand(tv.tv_sec*1000000+tv.tv_usec); + + Board bd; + char c; + Move mv; + cin>>c; cin.ignore(1024,'\n'); + int me=c-'A'; + int x,y,i; + while(true){ + c=cin.peek(); + if(c=='q'||c=='Q')break; + for(i=me+1;i%NPLAYERS!=me;i++){ + cin>>x>>y; + if(x!=-1&&y!=-1)bd.put(x,y,i%NPLAYERS); + } + cin.ignore(1024,'\n'); + mv=calcmove(bd,me); + cout< +#include +#include +#include "common.h" + +using namespace std; + +const int NPLAYOUTS=300; + +//returns +turns if `me` wins, -turns if an opponent wins +int mcplayout(Board &bd,int me){ + bool lost[NPLAYERS]; + memset(lost,0,NPLAYERS*sizeof(bool)); + int nlost=0; + int win; + int turnidx; + for(turnidx=1;;turnidx++){ //turnidx=1: one after `me` + const int onturn=(me+turnidx)%NPLAYERS; + if(lost[onturn])continue; + if(bd.ballcount(onturn)==0){ + lost[onturn]=true; + nlost++; + if(nlost==NPLAYERS)break; //? someone would have won... + continue; + } + bd.put(randommove(bd,onturn).idx(),onturn); + win=bd.checkwin(); + if(win!=-1)break; + } + if(win==-1)return 0; //? + if(win==me)return turnidx; + else return -turnidx; +} + +Move calcmove(Board &bd,int me){ + int i,j; + int score,maxscore=INT_MIN,maxat=0; + for(i=0;imaxscore){ + maxscore=score; + maxat=i; + } + } + return Move(maxat%WID,maxat/WID); +} + +int main(void){ + struct timeval tv; + gettimeofday(&tv,NULL); + srand(tv.tv_sec*1000000+tv.tv_usec); + + Board bd; + char c; + Move mv; + cin>>c; cin.ignore(1024,'\n'); + int me=c-'A'; + int x,y,i; + while(true){ + c=cin.peek(); + if(c=='q'||c=='Q')break; + for(i=me+1;i%NPLAYERS!=me;i++){ + cin>>x>>y; + if(x!=-1&&y!=-1)bd.put(x,y,i%NPLAYERS); + } + cin.ignore(1024,'\n'); + mv=calcmove(bd,me); + cout< +#include +#include +#include "common.h" + +#define INFINITY (2100000000) + +using namespace std; + +const int MMDEPTH=2; + +void search(int *best,Board &bd,int me,int win,int depth=MMDEPTH){ + int i; + if(win!=-1||depth<=0){ + for(i=0;ibest[me]){ + memcpy(best,res,NPLAYERS*sizeof(int)); + } + } +} + +#if 1 +Move calcmove(Board &bd,int me){ + int i; + int score,maxscore=INT_MIN,maxat=-1; + int res[NPLAYERS]; + for(i=0;imaxscore){ + maxscore=score; + maxat=i; + } + } + return Move(maxat); +} +#else +Move calcmove(Board &bd,int me){ + if(bd.totalballcount()<2*NPLAYERS){ + if(bd.getballs(0)==0)return 0; + if(bd.getballs(WID-1)==0)return WID-1; + if(bd.getballs(WID*(HEI-1))==0)return WID*(HEI-1); + if(bd.getballs(WID*HEI-1)==0)return WID*HEI-1; + } + struct Item{ + Board bd; + int score,i; + }; + Item items[WID*HEI]; + int i; + for(i=0;ibool{ + return i1.score>i2.score; + }); + int res[NPLAYERS]; + int maxscore=-1,maxat=-1; + for(i=0;items[i].score>=items[0].score*9/10&&imaxscore){ + maxscore=res[me]; + maxat=items[i].i; + } + } + return Move(maxat); +} +#endif + +int main(void){ + struct timeval tv; + gettimeofday(&tv,NULL); + srand(tv.tv_sec*1000000+tv.tv_usec); + + Board bd; + char c; + Move mv; + cin>>c; cin.ignore(1024,'\n'); + int me=c-'A'; + int x,y,i; + while(true){ + c=cin.peek(); + if(c=='q'||c=='Q')break; + for(i=me+1;i%NPLAYERS!=me;i++){ + cin>>x>>y; + if(x!=-1&&y!=-1)bd.put(x,y,i%NPLAYERS); + } + cin.ignore(1024,'\n'); + mv=calcmove(bd,me); + cout< +#include +#include +#include +#include +#include "common.h" + +#define INFINITY (2100000000) + +using namespace std; + +const int MMDEPTH=2; + +int takeperc=0; + +void search(int *best,Board &bd,int me,int win,int depth=MMDEPTH){ + int i; + if(win!=-1||depth<=0){ + for(i=0;ibest[me]){ + memcpy(best,res,NPLAYERS*sizeof(int)); + } + } +} + +Move calcmove(Board &bd,int me){ + int i; + int res[NPLAYERS]; + struct Item{ + int i,score; + }; + Item scores[WID*HEI]; + int nposs=0; + for(i=0;ib.score;}); //descending sort + return Move(scores[(nposs-1)*takeperc/100].i); +} + +int main(int,char **argv){ + struct timeval tv; + gettimeofday(&tv,NULL); + srand(tv.tv_sec*1000000+tv.tv_usec); + { + const int len=strlen(argv[0]); + const char *p=argv[0]+len-1; + while(isdigit(*p))p--; + p++; + takeperc=strtol(p,NULL,10); + } + + Board bd; + char c; + Move mv; + cin>>c; cin.ignore(1024,'\n'); + int me=c-'A'; + int x,y,i; + while(true){ + c=cin.peek(); + if(c=='q'||c=='Q')break; + for(i=me+1;i%NPLAYERS!=me;i++){ + cin>>x>>y; + if(x!=-1&&y!=-1)bd.put(x,y,i%NPLAYERS); + } + cin.ignore(1024,'\n'); + mv=calcmove(bd,me); + cout< +#include +#include +#include "common.h" + +using namespace std; + +int main(void){ + struct timeval tv; + gettimeofday(&tv,NULL); + srand(tv.tv_sec*1000000+tv.tv_usec); + + Board bd; + char c; + Move mv; + cin>>c; cin.ignore(1024,'\n'); + int me=c-'A'; + int x,y,i; + for(int turnidx=me;;turnidx+=NPLAYERS){ + c=cin.peek(); + if(c=='q'||c=='Q')break; + for(i=me+1;i%NPLAYERS!=me;i++){ + cin>>x>>y; + if(x!=-1&&y!=-1)bd.put(x,y,i%NPLAYERS); + } + cin.ignore(1024,'\n'); + mv=randommove(bd,me); + bd.put(mv.idx(),me); + cout< +#include +#include +#include +//#define NDEBUG +#include +#include +#include +#include "common.h" + +using namespace std; + +int main(int argc,char **argv){ + struct timeval tv; + gettimeofday(&tv,NULL); + srand(tv.tv_sec*1000000+tv.tv_usec); + + bool uselogfile=argc!=1; + ofstream logfile,htmlfile; + if(uselogfile){ + logfile.open(argv[1]); + if(!logfile){ + cerr<>x>>y; + if(!bd.putq(x,y,turnmodn)){ + disqual[turnmodn]=true; + status[turnmodn]+="_invalid_move"; + lastmove[turnmodn]=randommove(bd,turnmodn); + cout<=NPLAYERS){ + win=bd.checkwin(); + if(win!=-1){ + status[win]+="_won"; + break; + } + if(bd.ballcount(turnmodn)==0){ + lost[turnmodn]=true; + status[turnmodn]+="_lost"; + } + } + for(i=0;i